diff --git a/.gitignore b/.gitignore index 1230031e..9e7f9578 100755 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .vscode .mypy_cache docker-stack.yml +.dir-locals.el diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d2e6b348..b7d17bd6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: tiangolo/docker-with-compose +image: tiangolo/docker-with-compose:2021-09-18 before_script: - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY @@ -26,7 +26,7 @@ build-stag: tags: - build - test - + build-prod: stage: build script: @@ -41,14 +41,14 @@ deploy-stag: stage: deploy script: - > - DOMAIN=stag.collide.com - TRAEFIK_TAG=stag.collide.com - STACK_NAME=stag-collide-com + DOMAIN=stag.lobbyradar.io + TRAEFIK_TAG=stag.lobbyradar.io + STACK_NAME=stag-lobbyradar-io TAG=stag sh ./scripts/deploy.sh environment: name: staging - url: https://stag.collide.com + url: https://stag.lobbyradar.io only: - master tags: @@ -59,14 +59,14 @@ deploy-prod: stage: deploy script: - > - DOMAIN=collide.com - TRAEFIK_TAG=collide.com - STACK_NAME=collide-com + DOMAIN=lobbyradar.io + TRAEFIK_TAG=lobbyradar.io + STACK_NAME=lobbyradar-io TAG=prod sh ./scripts/deploy.sh environment: name: production - url: https://collide.com + url: https://lobbyradar.io only: - production tags: diff --git a/README.md b/README.md index b0798b8f..d7b81b8c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# collide +# lobbyradar ## Backend Requirements @@ -307,36 +307,36 @@ Check all the corresponding available URLs in the section at the end. If you are running Docker in an IP address different than `127.0.0.1` (`localhost`) and `192.168.99.100` (the default of Docker Toolbox), you will need to perform some additional steps. That will be the case if you are running a custom Virtual Machine, a secondary Docker Toolbox or your Docker is located in a different machine in your network. -In that case, you will need to use a fake local domain (`dev.collide.com`) and make your computer think that the domain is is served by the custom IP (e.g. `192.168.99.150`). +In that case, you will need to use a fake local domain (`dev.lobbyradar.io`) and make your computer think that the domain is is served by the custom IP (e.g. `192.168.99.150`). -If you used the default CORS enabled domains, `dev.collide.com` was configured to be allowed. If you want a custom one, you need to add it to the list in the variable `BACKEND_CORS_ORIGINS` in the `.env` file. +If you used the default CORS enabled domains, `dev.lobbyradar.io` was configured to be allowed. If you want a custom one, you need to add it to the list in the variable `BACKEND_CORS_ORIGINS` in the `.env` file. * Open your `hosts` file with administrative privileges using a text editor: * **Note for Windows**: If you are in Windows, open the main Windows menu, search for "notepad", right click on it, and select the option "open as Administrator" or similar. Then click the "File" menu, "Open file", go to the directory `c:\Windows\System32\Drivers\etc\`, select the option to show "All files" instead of only "Text (.txt) files", and open the `hosts` file. * **Note for Mac and Linux**: Your `hosts` file is probably located at `/etc/hosts`, you can edit it in a terminal running `sudo nano /etc/hosts`. -* Additional to the contents it might have, add a new line with the custom IP (e.g. `192.168.99.150`) a space character, and your fake local domain: `dev.collide.com`. +* Additional to the contents it might have, add a new line with the custom IP (e.g. `192.168.99.150`) a space character, and your fake local domain: `dev.lobbyradar.io`. The new line might look like: ``` -192.168.99.100 dev.collide.com +192.168.99.100 dev.lobbyradar.io ``` * Save the file. * **Note for Windows**: Make sure you save the file as "All files", without an extension of `.txt`. By default, Windows tries to add the extension. Make sure the file is saved as is, without extension. -...that will make your computer think that the fake local domain is served by that custom IP, and when you open that URL in your browser, it will talk directly to your locally running server when it is asked to go to `dev.collide.com` and think that it is a remote server while it is actually running in your computer. +...that will make your computer think that the fake local domain is served by that custom IP, and when you open that URL in your browser, it will talk directly to your locally running server when it is asked to go to `dev.lobbyradar.io` and think that it is a remote server while it is actually running in your computer. -To configure it in your stack, follow the section **Change the development "domain"** below, using the domain `dev.collide.com`. +To configure it in your stack, follow the section **Change the development "domain"** below, using the domain `dev.lobbyradar.io`. -After performing those steps you should be able to open: http://dev.collide.com and it will be server by your stack in `localhost`. +After performing those steps you should be able to open: http://dev.lobbyradar.io and it will be server by your stack in `localhost`. Check all the corresponding available URLs in the section at the end. ### Change the development "domain" -If you need to use your local stack with a different domain than `localhost`, you need to make sure the domain you use points to the IP where your stack is set up. See the different ways to achieve that in the sections above (i.e. using Docker Toolbox with `local.dockertoolbox.tiangolo.com`, using `localhost.tiangolo.com` or using `dev.collide.com`). +If you need to use your local stack with a different domain than `localhost`, you need to make sure the domain you use points to the IP where your stack is set up. See the different ways to achieve that in the sections above (i.e. using Docker Toolbox with `local.dockertoolbox.tiangolo.com`, using `localhost.tiangolo.com` or using `dev.lobbyradar.io`). To simplify your Docker Compose setup, for example, so that the API docs (Swagger UI) knows where is your API, you should let it know you are using that domain for development. You will need to edit 1 line in 2 files. @@ -475,7 +475,7 @@ Then you need to have those constraints in your `docker-compose.yml` file for th To be able to use different environments, like `prod` and `stag`, you should pass the name of the stack as an environment variable. Like: ```bash -STACK_NAME=stag-collide-com sh ./scripts/deploy.sh +STACK_NAME=stag-lobbyradar-io sh ./scripts/deploy.sh ``` To use and expand that environment variable inside the `docker-compose.yml` files you can add the constraints to the services like: @@ -503,7 +503,7 @@ services: deploy: placement: constraints: - - node.labels.collide-com.app-db-data == true + - node.labels.lobbyradar-io.app-db-data == true ``` **Note**: The `${STACK_NAME?Variable not set}` means "use the environment variable `STACK_NAME`, but if it is not set, show an error `Variable not set`". @@ -555,13 +555,13 @@ then chose a node from the list. For example, `dog.example.com`. * Add the label to that node. Use as label the name of the stack you are deploying followed by a dot (`.`) followed by the named volume, and as value, just `true`, e.g.: ```bash -docker node update --label-add collide-com.app-db-data=true dog.example.com +docker node update --label-add lobbyradar-io.app-db-data=true dog.example.com ``` * Then you need to do the same for each stack version you have. For example, for staging you could do: ```bash -docker node update --label-add stag-collide-com.app-db-data=true cat.example.com +docker node update --label-add stag-lobbyradar-io.app-db-data=true cat.example.com ``` ### Deploy to a Docker Swarm mode cluster @@ -605,16 +605,16 @@ TAG=prod FRONTEND_ENV=production bash ./scripts/build-push.sh 3. **Deploy your stack** * Set these environment variables: - * `DOMAIN=collide.com` - * `TRAEFIK_TAG=collide.com` - * `STACK_NAME=collide-com` + * `DOMAIN=lobbyradar.io` + * `TRAEFIK_TAG=lobbyradar.io` + * `STACK_NAME=lobbyradar-io` * `TAG=prod` * Use the provided `scripts/deploy.sh` file with those environment variables: ```bash -DOMAIN=collide.com \ -TRAEFIK_TAG=collide.com \ -STACK_NAME=collide-com \ +DOMAIN=lobbyradar.io \ +TRAEFIK_TAG=lobbyradar.io \ +STACK_NAME=lobbyradar-io \ TAG=prod \ bash ./scripts/deploy.sh ``` @@ -703,33 +703,33 @@ These are the URLs that will be used and generated by the project. Production URLs, from the branch `production`. -Frontend: https://collide.com +Frontend: https://lobbyradar.io -Backend: https://collide.com/api/ +Backend: https://lobbyradar.io/api/ -Automatic Interactive Docs (Swagger UI): https://collide.com/docs +Automatic Interactive Docs (Swagger UI): https://lobbyradar.io/docs -Automatic Alternative Docs (ReDoc): https://collide.com/redoc +Automatic Alternative Docs (ReDoc): https://lobbyradar.io/redoc -PGAdmin: https://pgadmin.collide.com +PGAdmin: https://pgadmin.lobbyradar.io -Flower: https://flower.collide.com +Flower: https://flower.lobbyradar.io ### Staging URLs Staging URLs, from the branch `master`. -Frontend: https://stag.collide.com +Frontend: https://stag.lobbyradar.io -Backend: https://stag.collide.com/api/ +Backend: https://stag.lobbyradar.io/api/ -Automatic Interactive Docs (Swagger UI): https://stag.collide.com/docs +Automatic Interactive Docs (Swagger UI): https://stag.lobbyradar.io/docs -Automatic Alternative Docs (ReDoc): https://stag.collide.com/redoc +Automatic Alternative Docs (ReDoc): https://stag.lobbyradar.io/redoc -PGAdmin: https://pgadmin.stag.collide.com +PGAdmin: https://pgadmin.stag.lobbyradar.io -Flower: https://flower.stag.collide.com +Flower: https://flower.stag.lobbyradar.io ### Development URLs @@ -771,19 +771,19 @@ Traefik UI: http://local.dockertoolbox.tiangolo.com:8090 Development URLs, for local development. -Frontend: http://dev.collide.com +Frontend: http://dev.lobbyradar.io -Backend: http://dev.collide.com/api/ +Backend: http://dev.lobbyradar.io/api/ -Automatic Interactive Docs (Swagger UI): https://dev.collide.com/docs +Automatic Interactive Docs (Swagger UI): https://dev.lobbyradar.io/docs -Automatic Alternative Docs (ReDoc): https://dev.collide.com/redoc +Automatic Alternative Docs (ReDoc): https://dev.lobbyradar.io/redoc -PGAdmin: http://dev.collide.com:5050 +PGAdmin: http://dev.lobbyradar.io:5050 -Flower: http://dev.collide.com:5555 +Flower: http://dev.lobbyradar.io:5555 -Traefik UI: http://dev.collide.com:8090 +Traefik UI: http://dev.lobbyradar.io:8090 ### Development in localhost with a custom domain URLs diff --git a/backend/app/.gitignore b/backend/app/.gitignore index f5116830..b06d5448 100644 --- a/backend/app/.gitignore +++ b/backend/app/.gitignore @@ -1,3 +1,4 @@ .mypy_cache .coverage htmlcov +search.ipynb \ No newline at end of file diff --git a/backend/app/app/api/api_v1/api.py b/backend/app/app/api/api_v1/api.py index 21630172..d93ae63c 100644 --- a/backend/app/app/api/api_v1/api.py +++ b/backend/app/app/api/api_v1/api.py @@ -1,9 +1,35 @@ from fastapi import APIRouter -from app.api.api_v1.endpoints import items, login, users, utils +# from app.api.api_v1.endpoints import items, resfresh +from app.api.api_v1.endpoints import resfresh +from app.core.users import auth_backend, fastapi_users +from app.schemas.user import UserCreate, UserRead, UserUpdate api_router = APIRouter() -api_router.include_router(login.router, tags=["login"]) -api_router.include_router(users.router, prefix="/users", tags=["users"]) -api_router.include_router(utils.router, prefix="/utils", tags=["utils"]) -api_router.include_router(items.router, prefix="/items", tags=["items"]) +api_router.include_router(resfresh.router, prefix="/auth", tags=["auth"]) + +api_router.include_router( + fastapi_users.get_auth_router(auth_backend), prefix="/auth/jwt", tags=["auth"] +) +api_router.include_router( + fastapi_users.get_register_router(UserRead, UserCreate), + prefix="/auth", + tags=["auth"], +) +api_router.include_router( + fastapi_users.get_reset_password_router(), + prefix="/auth", + tags=["auth"], +) +api_router.include_router( + fastapi_users.get_verify_router(UserRead), + prefix="/auth", + tags=["auth"], +) +api_router.include_router( + fastapi_users.get_users_router(UserRead, UserUpdate), + prefix="/users", + tags=["users"], +) + +# api_router.include_router(items.router, prefix="/items", tags=["items"]) diff --git a/backend/app/app/api/api_v1/endpoints/items.py b/backend/app/app/api/api_v1/endpoints/items.py index e88885cd..79f706f9 100644 --- a/backend/app/app/api/api_v1/endpoints/items.py +++ b/backend/app/app/api/api_v1/endpoints/items.py @@ -9,6 +9,7 @@ router = APIRouter() + @router.get("/", response_model=List[schemas.Item]) def read_items( db: Session = Depends(deps.get_db), diff --git a/backend/app/app/api/api_v1/endpoints/login.py b/backend/app/app/api/api_v1/endpoints/login.py deleted file mode 100644 index 4dc3a9b2..00000000 --- a/backend/app/app/api/api_v1/endpoints/login.py +++ /dev/null @@ -1,96 +0,0 @@ -from datetime import timedelta -from typing import Any - -from fastapi import APIRouter, Body, Depends, HTTPException -from fastapi.security import OAuth2PasswordRequestForm -from sqlalchemy.orm import Session - -from app import crud, models, schemas -from app.api import deps -from app.core import security -from app.core.config import settings -from app.core.security import get_password_hash -from app.utils import ( - generate_password_reset_token, - send_reset_password_email, - verify_password_reset_token, -) - -router = APIRouter() - - -@router.post("/login/access-token", response_model=schemas.Token) -def login_access_token( - db: Session = Depends(deps.get_db), form_data: OAuth2PasswordRequestForm = Depends() -) -> Any: - """ - OAuth2 compatible token login, get an access token for future requests - """ - user = crud.user.authenticate( - db, email=form_data.username, password=form_data.password - ) - if not user: - raise HTTPException(status_code=400, detail="Incorrect email or password") - elif not crud.user.is_active(user): - raise HTTPException(status_code=400, detail="Inactive user") - access_token_expires = timedelta(minutes=settings.ACCESS_TOKEN_EXPIRE_MINUTES) - return { - "access_token": security.create_access_token( - user.id, expires_delta=access_token_expires - ), - "token_type": "bearer", - } - - -@router.post("/login/test-token", response_model=schemas.User) -def test_token(current_user: models.User = Depends(deps.get_current_user)) -> Any: - """ - Test access token - """ - return current_user - - -@router.post("/password-recovery/{email}", response_model=schemas.Msg) -def recover_password(email: str, db: Session = Depends(deps.get_db)) -> Any: - """ - Password Recovery - """ - user = crud.user.get_by_email(db, email=email) - - if not user: - raise HTTPException( - status_code=404, - detail="The user with this username does not exist in the system.", - ) - password_reset_token = generate_password_reset_token(email=email) - send_reset_password_email( - email_to=user.email, email=email, token=password_reset_token - ) - return {"msg": "Password recovery email sent"} - - -@router.post("/reset-password/", response_model=schemas.Msg) -def reset_password( - token: str = Body(...), - new_password: str = Body(...), - db: Session = Depends(deps.get_db), -) -> Any: - """ - Reset password - """ - email = verify_password_reset_token(token) - if not email: - raise HTTPException(status_code=400, detail="Invalid token") - user = crud.user.get_by_email(db, email=email) - if not user: - raise HTTPException( - status_code=404, - detail="The user with this username does not exist in the system.", - ) - elif not crud.user.is_active(user): - raise HTTPException(status_code=400, detail="Inactive user") - hashed_password = get_password_hash(new_password) - user.hashed_password = hashed_password - db.add(user) - db.commit() - return {"msg": "Password updated successfully"} diff --git a/backend/app/app/api/api_v1/endpoints/resfresh.py b/backend/app/app/api/api_v1/endpoints/resfresh.py new file mode 100644 index 00000000..a1e57299 --- /dev/null +++ b/backend/app/app/api/api_v1/endpoints/resfresh.py @@ -0,0 +1,16 @@ +from typing import Any, List + +from fastapi import APIRouter, Depends, Response + +from app.core.users import JWTStrategy, auth_backend, fastapi_users, get_jwt_strategy + +router = APIRouter() + + +# @router.post("/jwt/refresh", tags=["auth"]) +# async def refresh_jwt( +# response: Response, +# jwt_strategy: JWTStrategy = Depends(get_jwt_strategy), +# user=Depends(fastapi_users.current_user(active=True)), +# ): +# return await auth_backend.login(jwt_strategy, user, response) diff --git a/backend/app/app/api/api_v1/endpoints/users.py b/backend/app/app/api/api_v1/endpoints/users.py deleted file mode 100644 index c8f89b63..00000000 --- a/backend/app/app/api/api_v1/endpoints/users.py +++ /dev/null @@ -1,153 +0,0 @@ -from typing import Any, List - -from fastapi import APIRouter, Body, Depends, HTTPException -from fastapi.encoders import jsonable_encoder -from pydantic.networks import EmailStr -from sqlalchemy.orm import Session - -from app import crud, models, schemas -from app.api import deps -from app.core.config import settings -from app.utils import send_new_account_email - -router = APIRouter() - - -@router.get("/", response_model=List[schemas.User]) -def read_users( - db: Session = Depends(deps.get_db), - skip: int = 0, - limit: int = 100, - current_user: models.User = Depends(deps.get_current_active_superuser), -) -> Any: - """ - Retrieve users. - """ - users = crud.user.get_multi(db, skip=skip, limit=limit) - return users - - -@router.post("/", response_model=schemas.User) -def create_user( - *, - db: Session = Depends(deps.get_db), - user_in: schemas.UserCreate, - current_user: models.User = Depends(deps.get_current_active_superuser), -) -> Any: - """ - Create new user. - """ - user = crud.user.get_by_email(db, email=user_in.email) - if user: - raise HTTPException( - status_code=400, - detail="The user with this username already exists in the system.", - ) - user = crud.user.create(db, obj_in=user_in) - if settings.EMAILS_ENABLED and user_in.email: - send_new_account_email( - email_to=user_in.email, username=user_in.email, password=user_in.password - ) - return user - - -@router.put("/me", response_model=schemas.User) -def update_user_me( - *, - db: Session = Depends(deps.get_db), - password: str = Body(None), - full_name: str = Body(None), - email: EmailStr = Body(None), - current_user: models.User = Depends(deps.get_current_active_user), -) -> Any: - """ - Update own user. - """ - current_user_data = jsonable_encoder(current_user) - user_in = schemas.UserUpdate(**current_user_data) - if password is not None: - user_in.password = password - if full_name is not None: - user_in.full_name = full_name - if email is not None: - user_in.email = email - user = crud.user.update(db, db_obj=current_user, obj_in=user_in) - return user - - -@router.get("/me", response_model=schemas.User) -def read_user_me( - db: Session = Depends(deps.get_db), - current_user: models.User = Depends(deps.get_current_active_user), -) -> Any: - """ - Get current user. - """ - return current_user - - -@router.post("/open", response_model=schemas.User) -def create_user_open( - *, - db: Session = Depends(deps.get_db), - password: str = Body(...), - email: EmailStr = Body(...), - full_name: str = Body(None), -) -> Any: - """ - Create new user without the need to be logged in. - """ - if not settings.USERS_OPEN_REGISTRATION: - raise HTTPException( - status_code=403, - detail="Open user registration is forbidden on this server", - ) - user = crud.user.get_by_email(db, email=email) - if user: - raise HTTPException( - status_code=400, - detail="The user with this username already exists in the system", - ) - user_in = schemas.UserCreate(password=password, email=email, full_name=full_name) - user = crud.user.create(db, obj_in=user_in) - return user - - -@router.get("/{user_id}", response_model=schemas.User) -def read_user_by_id( - user_id: int, - current_user: models.User = Depends(deps.get_current_active_user), - db: Session = Depends(deps.get_db), -) -> Any: - """ - Get a specific user by id. - """ - user = crud.user.get(db, id=user_id) - if user == current_user: - return user - if not crud.user.is_superuser(current_user): - raise HTTPException( - status_code=400, detail="The user doesn't have enough privileges" - ) - return user - - -@router.put("/{user_id}", response_model=schemas.User) -def update_user( - *, - db: Session = Depends(deps.get_db), - user_id: int, - user_in: schemas.UserUpdate, - current_user: models.User = Depends(deps.get_current_active_superuser), -) -> Any: - """ - Update a user. - """ - user = crud.user.get(db, id=user_id) - if not user: - raise HTTPException( - status_code=404, - detail="The user with this username does not exist in the system", - ) - user = crud.user.update(db, db_obj=user, obj_in=user_in) - return user diff --git a/backend/app/app/api/api_v1/endpoints/utils.py b/backend/app/app/api/api_v1/endpoints/utils.py deleted file mode 100644 index 71fe68d0..00000000 --- a/backend/app/app/api/api_v1/endpoints/utils.py +++ /dev/null @@ -1,35 +0,0 @@ -from typing import Any - -from fastapi import APIRouter, Depends -from pydantic.networks import EmailStr - -from app import models, schemas -from app.api import deps -from app.core.celery_app import celery_app -from app.utils import send_test_email - -router = APIRouter() - - -@router.post("/test-celery/", response_model=schemas.Msg, status_code=201) -def test_celery( - msg: schemas.Msg, - current_user: models.User = Depends(deps.get_current_active_superuser), -) -> Any: - """ - Test Celery worker. - """ - celery_app.send_task("app.worker.test_celery", args=[msg.msg]) - return {"msg": "Word received"} - - -@router.post("/test-email/", response_model=schemas.Msg, status_code=201) -def test_email( - email_to: EmailStr, - current_user: models.User = Depends(deps.get_current_active_superuser), -) -> Any: - """ - Test emails. - """ - send_test_email(email_to=email_to) - return {"msg": "Test email sent"} diff --git a/backend/app/app/api/deps.py b/backend/app/app/api/deps.py index a0109afe..bdd950df 100644 --- a/backend/app/app/api/deps.py +++ b/backend/app/app/api/deps.py @@ -4,58 +4,40 @@ from fastapi.security import OAuth2PasswordBearer from jose import jwt from pydantic import ValidationError -from sqlalchemy.orm import Session +from sqlalchemy import create_engine +from sqlalchemy.orm import Session, sessionmaker from app import crud, models, schemas from app.core import security from app.core.config import settings -from app.db.session import SessionLocal +from app.core.users import current_active_superuser, current_active_user + +# from app.db.session import SessionLocal + +uri = "postgresql://postgres:changethis@db:5432/app" +engine = create_engine(uri, pool_pre_ping=True) +SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine) reusable_oauth2 = OAuth2PasswordBearer( tokenUrl=f"{settings.API_V1_STR}/login/access-token" ) -def get_db() -> Generator: - try: - db = SessionLocal() - yield db - finally: - db.close() +# def get_db() -> Generator: +# try: +# db = SessionLocal() +# yield db +# finally: +# db.close() -def get_current_user( - db: Session = Depends(get_db), token: str = Depends(reusable_oauth2) -) -> models.User: - try: - payload = jwt.decode( - token, settings.SECRET_KEY, algorithms=[security.ALGORITHM] - ) - token_data = schemas.TokenPayload(**payload) - except (jwt.JWTError, ValidationError): - raise HTTPException( - status_code=status.HTTP_403_FORBIDDEN, - detail="Could not validate credentials", - ) - user = crud.user.get(db, id=token_data.sub) - if not user: - raise HTTPException(status_code=404, detail="User not found") - return user def get_current_active_user( - current_user: models.User = Depends(get_current_user), ) -> models.User: - if not crud.user.is_active(current_user): - raise HTTPException(status_code=400, detail="Inactive user") - return current_user + return current_active_user def get_current_active_superuser( - current_user: models.User = Depends(get_current_user), ) -> models.User: - if not crud.user.is_superuser(current_user): - raise HTTPException( - status_code=400, detail="The user doesn't have enough privileges" - ) - return current_user + return current_active_superuser diff --git a/backend/app/app/backend_pre_start.py b/backend/app/app/backend_pre_start.py index 3363a415..f7889441 100644 --- a/backend/app/app/backend_pre_start.py +++ b/backend/app/app/backend_pre_start.py @@ -1,8 +1,14 @@ import logging +from sqlalchemy import create_engine from tenacity import after_log, before_log, retry, stop_after_attempt, wait_fixed -from app.db.session import SessionLocal +from app.core.config import settings + +# use sync engine for checking db is awake +# TODO move to settings +uri = "postgresql://postgres:changethis@db:5432/app" +engine = create_engine(uri, pool_pre_ping=True) logging.basicConfig(level=logging.INFO) logger = logging.getLogger(__name__) @@ -11,6 +17,15 @@ wait_seconds = 1 +def check_postgres() -> None: + logger.info("Checking DB is awake") + con = engine.connect() + con.execute("SELECT 1") + logger.info("DB is awake") + con.close() + + + @retry( stop=stop_after_attempt(max_tries), wait=wait_fixed(wait_seconds), @@ -19,16 +34,13 @@ ) def init() -> None: try: - db = SessionLocal() - # Try to create session to check if DB is awake - db.execute("SELECT 1") + check_postgres() except Exception as e: logger.error(e) raise e def main() -> None: - logger.info("Initializing service") init() logger.info("Service finished initializing") diff --git a/backend/app/app/core/config.py b/backend/app/app/core/config.py index 8b07276d..864d62e3 100644 --- a/backend/app/app/core/config.py +++ b/backend/app/app/core/config.py @@ -7,10 +7,10 @@ class Settings(BaseSettings): API_V1_STR: str = "/api/v1" SECRET_KEY: str = secrets.token_urlsafe(32) - # 60 minutes * 24 hours * 8 days = 8 days - ACCESS_TOKEN_EXPIRE_MINUTES: int = 60 * 24 * 8 - SERVER_NAME: str - SERVER_HOST: AnyHttpUrl + # 60 minutes * 60 seconds = 1 hour + ACCESS_TOKEN_EXPIRE_SECONDS: int = 60 * 60 + SERVER_NAME: str = "example" + SERVER_HOST: AnyHttpUrl = "http://localhost" # BACKEND_CORS_ORIGINS is a JSON-formatted list of origins # e.g: '["http://localhost", "http://localhost:4200", "http://localhost:3000", \ # "http://localhost:8080", "http://local.dockertoolbox.tiangolo.com"]' @@ -24,8 +24,8 @@ def assemble_cors_origins(cls, v: Union[str, List[str]]) -> Union[List[str], str return v raise ValueError(v) - PROJECT_NAME: str - SENTRY_DSN: Optional[HttpUrl] = None + PROJECT_NAME: str = "collide" + SENTRY_DSN: Optional[HttpUrl] = "http://0.0.0.0" @validator("SENTRY_DSN", pre=True) def sentry_dsn_can_be_blank(cls, v: str) -> Optional[str]: @@ -44,7 +44,7 @@ def assemble_db_connection(cls, v: Optional[str], values: Dict[str, Any]) -> Any if isinstance(v, str): return v return PostgresDsn.build( - scheme="postgresql", + scheme="postgresql+asyncpg", user=values.get("POSTGRES_USER"), password=values.get("POSTGRES_PASSWORD"), host=values.get("POSTGRES_SERVER"), @@ -77,11 +77,14 @@ def get_emails_enabled(cls, v: bool, values: Dict[str, Any]) -> bool: and values.get("EMAILS_FROM_EMAIL") ) - EMAIL_TEST_USER: EmailStr = "test@example.com" # type: ignore - FIRST_SUPERUSER: EmailStr - FIRST_SUPERUSER_PASSWORD: str + EMAIL_TEST_USER: EmailStr = "test@example.com" + FIRST_SUPERUSER: EmailStr # type: ignore + FIRST_SUPERUSER_PASSWORD: str # See .env file USERS_OPEN_REGISTRATION: bool = False + MEMGRAPH_HOST: str + MEMGRAPH_PORT: int + class Config: case_sensitive = True diff --git a/backend/app/app/core/security.py b/backend/app/app/core/security.py index 6c6ee8bc..de25ed2c 100644 --- a/backend/app/app/core/security.py +++ b/backend/app/app/core/security.py @@ -1,5 +1,5 @@ from datetime import datetime, timedelta -from typing import Any, Union +from typing import Any, List, Union from jose import jwt from passlib.context import CryptContext @@ -13,7 +13,7 @@ def create_access_token( - subject: Union[str, Any], expires_delta: timedelta = None + subject: Union[str, Any], roles: List[str], expires_delta: Union[timedelta, None] = None ) -> str: if expires_delta: expire = datetime.utcnow() + expires_delta @@ -21,10 +21,22 @@ def create_access_token( expire = datetime.utcnow() + timedelta( minutes=settings.ACCESS_TOKEN_EXPIRE_MINUTES ) - to_encode = {"exp": expire, "sub": str(subject)} + to_encode = {"exp": expire, "sub": str(subject), "roles": roles} encoded_jwt = jwt.encode(to_encode, settings.SECRET_KEY, algorithm=ALGORITHM) return encoded_jwt +def create_refresh_token( + subject: Union[str, Any], roles: List[str], expires_delta: Union[timedelta, None] = None +) -> str: + if expires_delta: + expire = datetime.utcnow() + expires_delta + else: + expire = datetime.utcnow() + timedelta( + minutes=settings.REFRESH_TOKEN_EXPIRE_MINUTES + ) + to_encode = {"exp": expire, "sub": str(subject), "roles": roles} + encoded_jwt = jwt.encode(to_encode, settings.SECRET_KEY, algorithm=ALGORITHM) + return encoded_jwt def verify_password(plain_password: str, hashed_password: str) -> bool: return pwd_context.verify(plain_password, hashed_password) diff --git a/backend/app/app/core/users.py b/backend/app/app/core/users.py new file mode 100644 index 00000000..b29b6109 --- /dev/null +++ b/backend/app/app/core/users.py @@ -0,0 +1,108 @@ +import logging +import uuid +from typing import Optional + +from fastapi import Depends, Request +from fastapi_users import BaseUserManager, FastAPIUsers, UUIDIDMixin +from fastapi_users.authentication import ( + AuthenticationBackend, + BearerTransport, + CookieTransport, + JWTStrategy, +) +from fastapi_users.authentication.strategy.db import ( + AccessTokenDatabase, + DatabaseStrategy, +) +from fastapi_users.db import SQLAlchemyUserDatabase +from pydantic import BaseModel, EmailStr + +from app.db.session import get_access_token_db, get_user_db +from app.models import User +from app.models.token import AccessToken +from app.schemas.emails import EmailValidation +from app.utils import ( + send_email_validation_email, + send_new_account_email, + send_reset_password_email, +) + +from .config import settings + +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger(__name__) + + +class UserManager(UUIDIDMixin, BaseUserManager[User, uuid.UUID]): + reset_password_token_secret = settings.SECRET_KEY + verification_token_secret = settings.SECRET_KEY + + async def on_after_register( + self, user: User, token: str, request: Optional[Request] = None + ): + logger.info("User %s has registered with email %s.", user.id, user.email) + # check not superuser to avoid crash on first super user creation in init_db + # will still crash if any non aws verfied email is used + # TODO wrap in try block? + if not user.is_superuser: + + await send_email_validation_email( + email_to=user.email, + token=token, + ) + # await send_new_account_email(email_to=user.email) + + logger.info( + f"Verification requested for user {user.id}. Verification token: {token}" + ) + # logger.info("New user email sent to %s", user.email, ) + + async def on_after_forgot_password( + self, user: User, token: str, request: Optional[Request] = None + ): + logger.info(f"User {user.id} has forgot their password. Reset token: {token}") + await send_reset_password_email( + email_to=user.email, + token=token, + ) + logger.info("Reset token email sent to user: %s", user.email) + + async def on_after_request_verify( + self, user: User, token: str, request: Optional[Request] = None + ): + + logger.info( + f"Verification requested for user {user.id}. Verification token: {token}" + ) + + +async def get_user_manager(user_db: SQLAlchemyUserDatabase = Depends(get_user_db)): + yield UserManager(user_db) + + +bearer_transport = BearerTransport(tokenUrl="auth/jwt/login") +# cookie_transport = CookieTransport(cookie_max_age=3600, cookie_httponly=True) + + +def get_jwt_strategy() -> JWTStrategy: + return JWTStrategy(secret=settings.SECRET_KEY, lifetime_seconds=3600) + + +def get_database_strategy( + access_token_db: AccessTokenDatabase[AccessToken] = Depends(get_access_token_db), +) -> DatabaseStrategy: + return DatabaseStrategy( + access_token_db, lifetime_seconds=settings.ACCESS_TOKEN_EXPIRE_SECONDS + ) + + +auth_backend = AuthenticationBackend( + name="jwt", + transport=bearer_transport, + get_strategy=get_database_strategy, +) + +fastapi_users = FastAPIUsers[User, uuid.UUID](get_user_manager, [auth_backend]) + +current_active_user = fastapi_users.current_user(active=True) +current_active_superuser = fastapi_users.current_user(active=True, superuser=True) diff --git a/backend/app/app/crud/__init__.py b/backend/app/app/crud/__init__.py index 40e2c673..18fb3d04 100644 --- a/backend/app/app/crud/__init__.py +++ b/backend/app/app/crud/__init__.py @@ -1,6 +1,8 @@ from .crud_item import item from .crud_user import user +# from .memgraph_make_graph import graph_search_options, memgraph_query_and_aggregate + # For a new basic set of CRUD operations you could just do # from .base import CRUDBase diff --git a/backend/app/app/crud/crud_user.py b/backend/app/app/crud/crud_user.py index 14525d32..0ecdffa8 100644 --- a/backend/app/app/crud/crud_user.py +++ b/backend/app/app/crud/crud_user.py @@ -49,7 +49,12 @@ def is_active(self, user: User) -> bool: return user.is_active def is_superuser(self, user: User) -> bool: - return user.is_superuser + + return True + # return user.is_superuser + + + user = CRUDUser(User) diff --git a/backend/app/app/data/bloc.json b/backend/app/app/data/bloc.json new file mode 100644 index 00000000..b47cc393 --- /dev/null +++ b/backend/app/app/data/bloc.json @@ -0,0 +1,36558 @@ +{ + "nodes": [ + { + "id": "ericrancourt", + "name": "Eric Rancourt", + "type": "Person", + "val": 3 + }, + { + "id": "pierregrenier", + "name": "Pierre Grenier", + "type": "Person", + "val": 3 + }, + { + "id": "louisepoirier", + "name": "Louise Poirier", + "type": "Person", + "val": 3 + }, + { + "id": "martinlapointe", + "name": "Martin Lapointe", + "type": "Person", + "val": 3 + }, + { + "id": "industryandtechnologycommittee", + "name": "Industry and Technology - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "sebastienlemire", + "name": "S\u00e9bastien Lemire", + "type": "Person", + "val": 3 + }, + { + "id": "sylvainlefebvre", + "name": "Sylvain Lefebvre", + "type": "Person", + "val": 3 + }, + { + "id": "gnlquebec", + "name": "GNL Qu\u00e9bec", + "type": "Organization", + "val": 8 + }, + { + "id": "laprairiefederalriding", + "name": "La Prairie - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "subcommitteeonprivatemembersbusinesscommittee", + "name": "Subcommittee on Private Members' Business - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "nationaldefencecommittee", + "name": "National Defence - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "saintjeanfederalriding", + "name": "Saint-Jean - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "mariechantalesimard", + "name": "Marie-Chantale Simard", + "type": "Person", + "val": 3 + }, + { + "id": "paulgauthier", + "name": "Paul Gauthier", + "type": "Person", + "val": 3 + }, + { + "id": "robervallacsaintjeanfederalriding", + "name": "Roberval\u2014Lac-Saint-Jean - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "davidpage", + "name": "David Pag\u00e9", + "type": "Person", + "val": 3 + }, + { + "id": "michelvincent", + "name": "Michel Vincent", + "type": "Person", + "val": 3 + }, + { + "id": "julievignola", + "name": "Julie Vignola", + "type": "Person", + "val": 3 + }, + { + "id": "patrickstjacques", + "name": "Patrick St-Jacques", + "type": "Person", + "val": 3 + }, + { + "id": "naturalresourcescommittee", + "name": "Natural Resources - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "avignonlamitismatanematapediafederalriding", + "name": "Avignon\u2014La Mitis\u2014Matane\u2014Matap\u00e9dia - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "fisheriesandoceanscommittee", + "name": "Fisheries and Oceans - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "beauportcotedebeaupreiledorleanscharlevoixfederalriding", + "name": "Beauport\u2014C\u00f4te-de-Beaupr\u00e9\u2014\u00cele d'Orl\u00e9ans\u2014Charlevoix - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "rogerarbour", + "name": "Roger Arbour", + "type": "Person", + "val": 3 + }, + { + "id": "davidrompre", + "name": "David Rompr\u00e9", + "type": "Person", + "val": 3 + }, + { + "id": "canadianheritagepch", + "name": "Canadian Heritage (PCH)", + "type": "Organization", + "val": 8 + }, + { + "id": "canadianheritagecommittee", + "name": "Canadian Heritage - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "alainbouchard", + "name": "Alain Bouchard", + "type": "Person", + "val": 3 + }, + { + "id": "davidclark", + "name": "David Clark", + "type": "Person", + "val": 3 + }, + { + "id": "philippeclair", + "name": "Philippe Clair", + "type": "Person", + "val": 3 + }, + { + "id": "scienceandresearchcommittee", + "name": "Science and Research - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "afghanistancommittee", + "name": "Afghanistan - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "lacsaintjeanfederalriding", + "name": "Lac-Saint-Jean - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "lucienduval", + "name": "Lucien Duval", + "type": "Person", + "val": 3 + }, + { + "id": "servicecanadaservcan", + "name": "Service Canada (ServCan)", + "type": "Organization", + "val": 8 + }, + { + "id": "pascalkarelmatte", + "name": "Pascal Karel Matte", + "type": "Person", + "val": 3 + }, + { + "id": "christinelegault", + "name": "Christine Legault", + "type": "Person", + "val": 3 + }, + { + "id": "bombardiertransportationcapitalcanadainc", + "name": "Bombardier Transportation (Capital) Canada Inc.", + "type": "Organization", + "val": 8 + }, + { + "id": "bombardiertransportationcanadainc", + "name": "BOMBARDIER TRANSPORTATION CANADA INC.", + "type": "Organization", + "val": 8 + }, + { + "id": "marcbernier", + "name": "Marc Bernier", + "type": "Person", + "val": 3 + }, + { + "id": "juliehebert", + "name": "Julie H\u00e9bert", + "type": "Person", + "val": 3 + }, + { + "id": "danybergeron", + "name": "Dany Bergeron", + "type": "Person", + "val": 3 + }, + { + "id": "luclacasse", + "name": "Luc Lacasse", + "type": "Person", + "val": 3 + }, + { + "id": "louismartin", + "name": "Louis Martin", + "type": "Person", + "val": 3 + }, + { + "id": "louisbernard", + "name": "Louis Bernard", + "type": "Person", + "val": 3 + }, + { + "id": "foreignaffairsandinternationaldevelopmentcommittee", + "name": "Foreign Affairs and International Development - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "canadachinarelationscommittee", + "name": "Canada-China Relations - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "citizenshipandimmigrationcommittee", + "name": "Citizenship and Immigration - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "subcommitteeoninternationalhumanrightscommittee", + "name": "Subcommittee on International Human Rights - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "marcbouchard", + "name": "Marc Bouchard", + "type": "Person", + "val": 3 + }, + { + "id": "suzannelabbe", + "name": "Suzanne Labb\u00e9", + "type": "Person", + "val": 3 + }, + { + "id": "internationaltradecommittee", + "name": "International Trade - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "benoitsavard", + "name": "Beno\u00eet Savard", + "type": "Person", + "val": 3 + }, + { + "id": "employmentandsocialdevelopmentcanadaesdc", + "name": "Employment and Social Development Canada (ESDC)", + "type": "Organization", + "val": 8 + }, + { + "id": "humanresourcesskillsandsocialdevelopmentandthestatusofpersonswithdisabilitiescommittee", + "name": "Human Resources, Skills and Social Development and the Status of Persons with Disabilities - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "theresedeblainvillefederalriding", + "name": "Th\u00e9r\u00e8se-De Blainville - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "louisechabot", + "name": "Louise Chabot", + "type": "Person", + "val": 3 + }, + { + "id": "transcontinentalinc", + "name": "TRANSCONTINENTAL INC.", + "type": "Organization", + "val": 8 + }, + { + "id": "yvesleduc", + "name": "Yves Leduc", + "type": "Person", + "val": 3 + }, + { + "id": "leadersdebatescommission", + "name": "Leaders\u2019 Debates Commission", + "type": "Organization", + "val": 8 + }, + { + "id": "michelcormier", + "name": "Michel Cormier", + "type": "Person", + "val": 3 + }, + { + "id": "innovationscienceandeconomicdevelopmentcanadaised", + "name": "Innovation, Science and Economic Development Canada (ISED)", + "type": "Organization", + "val": 8 + }, + { + "id": "michelletourneau", + "name": "Michel Letourneau", + "type": "Person", + "val": 3 + }, + { + "id": "villemarielesudouestiledessoeursfederalgreenpartyassociation", + "name": "Ville-Marie--Le Sud-Ouest--\u00cele-des-Soeurs Federal Green Party Association", + "type": "Organization", + "val": 8 + }, + { + "id": "jicilauzon", + "name": "JiCi Lauzon", + "type": "Person", + "val": 3 + }, + { + "id": "raymondbrodeur", + "name": "Raymond Brodeur", + "type": "Person", + "val": 3 + }, + { + "id": "statusofwomencommittee", + "name": "Status of Women - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "robertsavoie", + "name": "Robert Savoie", + "type": "Person", + "val": 3 + }, + { + "id": "andreannelarouche", + "name": "Andr\u00e9anne Larouche", + "type": "Person", + "val": 3 + }, + { + "id": "pierrerichard", + "name": "Pierre Richard", + "type": "Person", + "val": 3 + }, + { + "id": "jeanluclandry", + "name": "Jean-Luc Landry", + "type": "Person", + "val": 3 + }, + { + "id": "pierrepare", + "name": "Pierre Par\u00e9", + "type": "Person", + "val": 3 + }, + { + "id": "reneasselin", + "name": "Ren\u00e9 Asselin", + "type": "Person", + "val": 3 + }, + { + "id": "claudedebellefeuille", + "name": "Claude DeBellefeuille", + "type": "Person", + "val": 3 + }, + { + "id": "florencebeaudet", + "name": "Florence Beaudet", + "type": "Person", + "val": 3 + }, + { + "id": "airbusdefencespacecanadainc", + "name": "Airbus Defence & Space Canada, Inc.", + "type": "Organization", + "val": 8 + }, + { + "id": "simonjacques", + "name": "Simon Jacques", + "type": "Person", + "val": 3 + }, + { + "id": "williammorales", + "name": "William MORALES", + "type": "Person", + "val": 3 + }, + { + "id": "lacsaintjeansaguenayfederalriding", + "name": "Lac-Saint-Jean\u2014Saguenay - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "stephantremblay", + "name": "St\u00e9phan Tremblay", + "type": "Person", + "val": 3 + }, + { + "id": "globalaffairscanadagac", + "name": "Global Affairs Canada (GAC)", + "type": "Organization", + "val": 8 + }, + { + "id": "veteransaffairscommittee", + "name": "Veterans Affairs - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "erictremblay", + "name": "Eric Tremblay", + "type": "Person", + "val": 3 + }, + { + "id": "pierregagnon", + "name": "Pierre Gagnon", + "type": "Person", + "val": 3 + }, + { + "id": "onilarcand", + "name": "Onil Arcand", + "type": "Person", + "val": 3 + }, + { + "id": "catherinefournier", + "name": "Catherine Fournier", + "type": "Person", + "val": 3 + }, + { + "id": "clauderochon", + "name": "Claude Rochon", + "type": "Person", + "val": 3 + }, + { + "id": "beauportlimoiloufederalriding", + "name": "Beauport\u2014Limoilou - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "ericdube", + "name": "\u00c9ric Dub\u00e9", + "type": "Person", + "val": 3 + }, + { + "id": "publicsafetyandnationalsecuritycommittee", + "name": "Public Safety and National Security - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "bertrandjodoin", + "name": "Bertrand Jodoin", + "type": "Person", + "val": 3 + }, + { + "id": "gillesdonaldson", + "name": "Gilles Donaldson", + "type": "Person", + "val": 3 + }, + { + "id": "tfiinternationalinc", + "name": "TFI International Inc.", + "type": "Organization", + "val": 8 + }, + { + "id": "jeanrobitaille", + "name": "Jean Robitaille", + "type": "Person", + "val": 3 + }, + { + "id": "pierrelapointe", + "name": "Pierre LAPOINTE", + "type": "Person", + "val": 3 + }, + { + "id": "danielbeaulieu", + "name": "Daniel Beaulieu", + "type": "Person", + "val": 3 + }, + { + "id": "robertgladu", + "name": "Robert Gladu", + "type": "Person", + "val": 3 + }, + { + "id": "denislafontaine", + "name": "Denis Lafontaine", + "type": "Person", + "val": 3 + }, + { + "id": "jeanmarcelduval", + "name": "Jean-Marcel Duval", + "type": "Person", + "val": 3 + }, + { + "id": "levisetchutesdelachaudierefederalriding", + "name": "L\u00e9vis-et-Chutes-de-la-Chaudi\u00e8re - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "denisbergeron", + "name": "Denis Bergeron", + "type": "Person", + "val": 3 + }, + { + "id": "agricultureandagrifoodcommittee", + "name": "Agriculture and Agri-Food - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "berthiermaskinongefederalriding", + "name": "Berthier\u2014Maskinong\u00e9 - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "martinperreault", + "name": "Martin Perreault", + "type": "Person", + "val": 3 + }, + { + "id": "perlebouchard", + "name": "Perle Bouchard", + "type": "Person", + "val": 3 + }, + { + "id": "gestionmtrhpinc", + "name": "Gestion MTRHP inc.", + "type": "Organization", + "val": 8 + }, + { + "id": "quebecormediainc", + "name": "Qu\u00e9becor M\u00e9dia inc.", + "type": "Organization", + "val": 8 + }, + { + "id": "medicalassistanceindyingcommittee", + "name": "Medical Assistance in Dying - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "andrebreton", + "name": "Andr\u00e9 Breton", + "type": "Person", + "val": 3 + }, + { + "id": "terrebonnefederalriding", + "name": "Terrebonne - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "mathieulebel", + "name": "Mathieu Lebel", + "type": "Person", + "val": 3 + }, + { + "id": "laurencejuneau", + "name": "Laurence Juneau", + "type": "Person", + "val": 3 + }, + { + "id": "indigenousandnorthernaffairscommittee", + "name": "Indigenous and Northern Affairs - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "justiceandhumanrightscommittee", + "name": "Justice and Human Rights - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "rivieredunordfederalriding", + "name": "Rivi\u00e8re-du-Nord - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "pierrekarlpeladeau", + "name": "Pierre Karl P\u00e9ladeau", + "type": "Person", + "val": 3 + }, + { + "id": "financecommittee", + "name": "Finance - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "joliettefederalriding", + "name": "Joliette - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "oliviergendreau", + "name": "Olivier Gendreau", + "type": "Person", + "val": 3 + }, + { + "id": "infrastructurecanadainfc", + "name": "Infrastructure Canada (INFC)", + "type": "Organization", + "val": 8 + }, + { + "id": "environmentandsustainabledevelopmentcommittee", + "name": "Environment and Sustainable Development - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "yolandebrunelle", + "name": "Yolande Brunelle", + "type": "Person", + "val": 3 + }, + { + "id": "blocquebecoismontcalm", + "name": "Bloc Qu\u00e9b\u00e9cois Montcalm", + "type": "Organization", + "val": 8 + }, + { + "id": "gilbertarcand", + "name": "Gilbert Arcand", + "type": "Person", + "val": 3 + }, + { + "id": "associationnpdmarcaurelefortin", + "name": "Association NPD Marc-Aur\u00e8le-Fortin", + "type": "Organization", + "val": 8 + }, + { + "id": "francoisgendron", + "name": "Fran\u00e7ois Gendron", + "type": "Person", + "val": 3 + }, + { + "id": "avignonlamitismatanematapediafederalliberalassociation", + "name": "Avignon--La Mitis--Matane--Matap\u00e9dia Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "ndpridingassociationoflauriersaintemarie", + "name": "NDP Riding Association of Laurier--Sainte-Marie", + "type": "Organization", + "val": 8 + }, + { + "id": "micheldicaireacosta", + "name": "Michel Dicaire Acosta", + "type": "Person", + "val": 3 + }, + { + "id": "robertmailhot", + "name": "Robert Mailhot", + "type": "Person", + "val": 3 + }, + { + "id": "sabingaudreault", + "name": "Sabin Gaudreault", + "type": "Person", + "val": 3 + }, + { + "id": "montarvillefederalliberalassociation", + "name": "Montarville Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "associationliberalefederaledelapointedelile", + "name": "Association lib\u00e9rale f\u00e9d\u00e9rale de La Pointe-de-l'\u00cele", + "type": "Organization", + "val": 8 + }, + { + "id": "longueuilpierreboucherconservativeassociation", + "name": "Longueuil--Pierre-Boucher Conservative Association", + "type": "Organization", + "val": 8 + }, + { + "id": "andredesjardins", + "name": "Andr\u00e9 Desjardins", + "type": "Person", + "val": 3 + }, + { + "id": "pierrepilon", + "name": "Pierre Pilon", + "type": "Person", + "val": 3 + }, + { + "id": "beacheseastyorkfederalliberalassociation", + "name": "Beaches--East York Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "philipperuel", + "name": "Philippe Ruel", + "type": "Person", + "val": 3 + }, + { + "id": "sebastienpelaez", + "name": "S\u00e9bastien Pelaez", + "type": "Person", + "val": 3 + }, + { + "id": "lucbachand", + "name": "Luc Bachand", + "type": "Person", + "val": 3 + }, + { + "id": "associationdublocquebecoisdejeanneleber", + "name": "Association du Bloc Qu\u00e9b\u00e9cois de Jeanne-Le Ber", + "type": "Organization", + "val": 8 + }, + { + "id": "mauricebrossard", + "name": "Maurice Brossard", + "type": "Person", + "val": 3 + }, + { + "id": "partipourlindependanceduquebec", + "name": "Parti pour l'Ind\u00e9pendance du Qu\u00e9bec", + "type": "Organization", + "val": 8 + }, + { + "id": "rogerfrappier", + "name": "Roger Frappier", + "type": "Person", + "val": 3 + }, + { + "id": "lassociationdublocquebecoisdahuntsic", + "name": "L'Association du Bloc Qu\u00e9b\u00e9cois d'Ahuntsic", + "type": "Organization", + "val": 8 + }, + { + "id": "marieclaudecarriere", + "name": "Marie-Claude Carriere", + "type": "Person", + "val": 3 + }, + { + "id": "patrickclune", + "name": "Patrick Clune", + "type": "Person", + "val": 3 + }, + { + "id": "foreignaffairsandinternationaltradecanadadfaitc", + "name": "Foreign Affairs and International Trade Canada (DFAITC)", + "type": "Organization", + "val": 8 + }, + { + "id": "joseehamel", + "name": "Jos\u00e9e Hamel", + "type": "Person", + "val": 3 + }, + { + "id": "luclambert", + "name": "Luc Lambert", + "type": "Person", + "val": 3 + }, + { + "id": "paulineguertinduval", + "name": "Pauline Guertin-Duval", + "type": "Person", + "val": 3 + }, + { + "id": "rivieredesmilleilesfederalriding", + "name": "Rivi\u00e8re-des-Mille-\u00celes - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "pierreboucher", + "name": "Pierre Boucher", + "type": "Person", + "val": 3 + }, + { + "id": "yvanloubier", + "name": "Yvan Loubier", + "type": "Person", + "val": 3 + }, + { + "id": "abitibitemiscaminguefederalriding", + "name": "Abitibi\u2014T\u00e9miscamingue - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "lyneboisvert", + "name": "Lyne Boisvert", + "type": "Person", + "val": 3 + }, + { + "id": "canadianradiotelevisionandtelecommunicationscommissioncrtc", + "name": "Canadian Radio-television and Telecommunications Commission (CRTC)", + "type": "Organization", + "val": 8 + }, + { + "id": "christinenormandin", + "name": "Christine Normandin", + "type": "Person", + "val": 3 + }, + { + "id": "kristinamichaud", + "name": "Kristina Michaud", + "type": "Person", + "val": 3 + }, + { + "id": "christiansimard", + "name": "Christian Simard", + "type": "Person", + "val": 3 + }, + { + "id": "christianpicard", + "name": "Christian Picard", + "type": "Person", + "val": 3 + }, + { + "id": "christianpaquin", + "name": "Christian Paquin", + "type": "Person", + "val": 3 + }, + { + "id": "membersofthehouseofcommons", + "name": "Members of the House of Commons", + "type": "Organization", + "val": 8 + }, + { + "id": "moniqueguay", + "name": "Monique Guay", + "type": "Person", + "val": 3 + }, + { + "id": "martinchampoux", + "name": "Martin Champoux", + "type": "Person", + "val": 3 + }, + { + "id": "procedureandhouseaffairscommittee", + "name": "Procedure and House Affairs - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "senateofcanada", + "name": "Senate of Canada", + "type": "Organization", + "val": 8 + }, + { + "id": "alexandrabarsalouduval", + "name": "Alexandra Barsalou-Duval", + "type": "Person", + "val": 3 + }, + { + "id": "ghislaineboucher", + "name": "Ghislaine Boucher", + "type": "Person", + "val": 3 + }, + { + "id": "associationdublocquebecoisdargenteuilpapineaumirabel", + "name": "Association du Bloc Qu\u00e9b\u00e9cois d'Argenteuil--Papineau--Mirabel", + "type": "Organization", + "val": 8 + }, + { + "id": "reseauquebecormediainc", + "name": "R\u00c9SEAU QU\u00c9BECOR M\u00c9DIA INC.", + "type": "Organization", + "val": 8 + }, + { + "id": "reallapierre", + "name": "R\u00e9al Lapierre", + "type": "Person", + "val": 3 + }, + { + "id": "guycote", + "name": "Guy C\u00f4t\u00e9", + "type": "Person", + "val": 3 + }, + { + "id": "faizarguibakalogerakis", + "name": "Faiza R'Guiba-Kalogerakis", + "type": "Person", + "val": 3 + }, + { + "id": "jeanyvesroy", + "name": "Jean-Yves Roy", + "type": "Person", + "val": 3 + }, + { + "id": "jeanmauricematte", + "name": "Jean-Maurice Matte", + "type": "Person", + "val": 3 + }, + { + "id": "troisrivieresfederalriding", + "name": "Trois-Rivi\u00e8res - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "richardrainville", + "name": "Richard Rainville", + "type": "Person", + "val": 3 + }, + { + "id": "stephanebergeron", + "name": "St\u00e9phane Bergeron", + "type": "Person", + "val": 3 + }, + { + "id": "yvesbellefeuille", + "name": "Yves Bellefeuille", + "type": "Person", + "val": 3 + }, + { + "id": "montcalmfederalriding", + "name": "Montcalm - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "martinbeaudry", + "name": "Martin Beaudry", + "type": "Person", + "val": 3 + }, + { + "id": "louisecharbonneau", + "name": "Louise Charbonneau", + "type": "Person", + "val": 3 + }, + { + "id": "yvesperron", + "name": "Yves Perron", + "type": "Person", + "val": 3 + }, + { + "id": "yveslessard", + "name": "Yves Lessard", + "type": "Person", + "val": 3 + }, + { + "id": "claudebaril", + "name": "Claude Baril", + "type": "Person", + "val": 3 + }, + { + "id": "danielpaille", + "name": "Daniel Paill\u00e9", + "type": "Person", + "val": 3 + }, + { + "id": "brunopiercourchesne", + "name": "Bruno-Pier COURCHESNE", + "type": "Person", + "val": 3 + }, + { + "id": "robertkeithrae", + "name": "Robert Keith Rae", + "type": "Person", + "val": 3 + }, + { + "id": "robertmainville", + "name": "Robert Mainville", + "type": "Person", + "val": 3 + }, + { + "id": "chicoutimilefjordfederalliberalassociation", + "name": "Chicoutimi--Le Fjord Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "louisplamondon", + "name": "Louis Plamondon", + "type": "Person", + "val": 3 + }, + { + "id": "associationdublocquebecoisdecharlesbourghautesaintcharles", + "name": "Association du Bloc Qu\u00e9b\u00e9cois de Charlesbourg--Haute-Saint-Charles", + "type": "Organization", + "val": 8 + }, + { + "id": "martincauchon", + "name": "Martin Cauchon", + "type": "Person", + "val": 3 + }, + { + "id": "sylvaingauthier", + "name": "Sylvain Gauthier", + "type": "Person", + "val": 3 + }, + { + "id": "simonmarcil", + "name": "Simon Marcil", + "type": "Person", + "val": 3 + }, + { + "id": "luctheriault", + "name": "Luc Th\u00e9riault", + "type": "Person", + "val": 3 + }, + { + "id": "associationliberalefederaledechamblyborduas", + "name": "Association lib\u00e9rale f\u00e9d\u00e9rale de Chambly--Borduas", + "type": "Organization", + "val": 8 + }, + { + "id": "charleseugeneblier", + "name": "Charles -Eugene Blier", + "type": "Person", + "val": 3 + }, + { + "id": "jeanfortier", + "name": "Jean Fortier", + "type": "Person", + "val": 3 + }, + { + "id": "chamblyborduasfederalriding", + "name": "Chambly\u2014Borduas - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "madeleinearcand", + "name": "Madeleine Arcand", + "type": "Person", + "val": 3 + }, + { + "id": "turankalfa", + "name": "Turan Kalfa", + "type": "Person", + "val": 3 + }, + { + "id": "conservativepartyofcanadafrederictonelectoraldistrictassociation", + "name": "Conservative Party of Canada Fredericton Electoral District Association", + "type": "Organization", + "val": 8 + }, + { + "id": "houseofcommonssenate", + "name": "HOUSE OF COMMONS, SENATE", + "type": "Organization", + "val": 8 + }, + { + "id": "lucienbeaupre", + "name": "Lucien Beaupr\u00e9", + "type": "Person", + "val": 3 + }, + { + "id": "independent", + "name": "Independent", + "type": "Organization", + "val": 8 + }, + { + "id": "marilenegill", + "name": "Maril\u00e8ne Gill", + "type": "Person", + "val": 3 + }, + { + "id": "daveturcotte", + "name": "Dave Turcotte", + "type": "Person", + "val": 3 + }, + { + "id": "lacsaintjeanfederalliberalassociation", + "name": "Lac-Saint-Jean Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "claudebachand", + "name": "Claude Bachand", + "type": "Person", + "val": 3 + }, + { + "id": "blocquebecoisdesainthyacinthebagot", + "name": "Bloc Qu\u00e9b\u00e9cois de Saint-Hyacinthe--Bagot", + "type": "Organization", + "val": 8 + }, + { + "id": "sylvainboyer", + "name": "Sylvain Boyer", + "type": "Person", + "val": 3 + }, + { + "id": "vivianbarbot", + "name": "Vivian Barbot", + "type": "Person", + "val": 3 + }, + { + "id": "michaelchong", + "name": "Michael Chong", + "type": "Person", + "val": 3 + }, + { + "id": "industrycanada", + "name": "Industry Canada", + "type": "Organization", + "val": 8 + }, + { + "id": "guycormier", + "name": "Guy Cormier", + "type": "Person", + "val": 3 + }, + { + "id": "beloeilchamblyfederalriding", + "name": "Beloeil\u2014Chambly - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "moniquepauze", + "name": "Monique Pauz\u00e9", + "type": "Person", + "val": 3 + }, + { + "id": "rogerclavet", + "name": "Roger Clavet", + "type": "Person", + "val": 3 + }, + { + "id": "francoisrebello", + "name": "Fran\u00e7ois Rebello", + "type": "Person", + "val": 3 + }, + { + "id": "francoisduquette", + "name": "Francois Duquette", + "type": "Person", + "val": 3 + }, + { + "id": "denisgauvreau", + "name": "Denis Gauvreau", + "type": "Person", + "val": 3 + }, + { + "id": "johannedeschamps", + "name": "Johanne Deschamps", + "type": "Person", + "val": 3 + }, + { + "id": "maximepeloquin", + "name": "Maxime P\u00e9loquin", + "type": "Person", + "val": 3 + }, + { + "id": "jacqueslarcheveque", + "name": "Jacques l'Archev\u00eaque", + "type": "Person", + "val": 3 + }, + { + "id": "keithashfield", + "name": "Keith Ashfield", + "type": "Person", + "val": 3 + }, + { + "id": "hullaylmerfederalliberalassociation", + "name": "Hull--Aylmer Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "lauriersaintemariefederalriding", + "name": "Laurier\u2014Sainte-Marie - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "laprairiefederalliberalassociation", + "name": "La Prairie Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "jamilcheaib", + "name": "Jamil Cheaib", + "type": "Person", + "val": 3 + }, + { + "id": "denistrottier", + "name": "Denis Trottier", + "type": "Person", + "val": 3 + }, + { + "id": "alaintherrien", + "name": "Alain Therrien", + "type": "Person", + "val": 3 + }, + { + "id": "stephanedion", + "name": "St\u00e9phane Dion", + "type": "Person", + "val": 3 + }, + { + "id": "andrerichard", + "name": "Andr\u00e9 Richard", + "type": "Person", + "val": 3 + }, + { + "id": "juliebourgeois", + "name": "Julie Bourgeois", + "type": "Person", + "val": 3 + }, + { + "id": "bromemissisquoifederalriding", + "name": "Brome\u2014Missisquoi - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "hochelagafederalriding", + "name": "Hochelaga - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "robertpare", + "name": "Robert Par\u00e9", + "type": "Person", + "val": 3 + }, + { + "id": "canadagermanyinterparliamentarygroup", + "name": "Canada-Germany Interparliamentary Group", + "type": "Organization", + "val": 8 + }, + { + "id": "mariehelenegaudreau", + "name": "Marie-H\u00e9l\u00e8ne Gaudreau", + "type": "Person", + "val": 3 + }, + { + "id": "jeanparadis", + "name": "Jean Paradis", + "type": "Person", + "val": 3 + }, + { + "id": "associationduparticonservateurlauriersaintemarie", + "name": "Association du Parti conservateur Laurier--Sainte-Marie", + "type": "Organization", + "val": 8 + }, + { + "id": "transportinfrastructureandcommunitiescommittee", + "name": "Transport, Infrastructure and Communities - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "marcellussier", + "name": "Marcel Lussier", + "type": "Person", + "val": 3 + }, + { + "id": "bombardiertransportationcanadaparticipationinc", + "name": "BOMBARDIER TRANSPORTATION CANADA PARTICIPATION INC.", + "type": "Organization", + "val": 8 + }, + { + "id": "martinecarriere", + "name": "Martine Carri\u00e8re", + "type": "Person", + "val": 3 + }, + { + "id": "brianillick", + "name": "Brian Illick", + "type": "Person", + "val": 3 + }, + { + "id": "ottawaorleansfederalliberalassociation", + "name": "Ottawa--Orl\u00e9ans Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "laurentideslabellefederalriding", + "name": "Laurentides\u2014Labelle - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "pierrefondsdollardconservativeassociation", + "name": "Pierrefonds--Dollard Conservative Association", + "type": "Organization", + "val": 8 + }, + { + "id": "outremontconservativeassociation", + "name": "Outremont Conservative Association", + "type": "Organization", + "val": 8 + }, + { + "id": "richmondarthabaskafederalriding", + "name": "Richmond\u2014Arthabaska - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "associationdublocquebecoisdechamblyborduas", + "name": "Association du Bloc Qu\u00e9b\u00e9cois de Chambly--Borduas", + "type": "Organization", + "val": 8 + }, + { + "id": "josephvolpe", + "name": "Joseph Volpe", + "type": "Person", + "val": 3 + }, + { + "id": "associationdublocquebecoisdabitibibaiejamesnunavikeeyou", + "name": "Association du Bloc Qu\u00e9b\u00e9cois d'Abitibi--Baie-James--Nunavik--Eeyou", + "type": "Organization", + "val": 8 + }, + { + "id": "associationdublocquebecoislaurentideslabelle", + "name": "Association du Bloc Qu\u00e9b\u00e9cois Laurentides--Labelle", + "type": "Organization", + "val": 8 + }, + { + "id": "maximepaquincharbonneau", + "name": "Maxime Paquin-Charbonneau", + "type": "Person", + "val": 3 + }, + { + "id": "claudeguimond", + "name": "Claude Guimond", + "type": "Person", + "val": 3 + }, + { + "id": "agopevereklian", + "name": "Agop Evereklian", + "type": "Person", + "val": 3 + }, + { + "id": "blocquebecoisderepentigny", + "name": "Bloc Qu\u00e9b\u00e9cois de Repentigny", + "type": "Organization", + "val": 8 + }, + { + "id": "saintlambertfederalriding", + "name": "Saint-Lambert - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "johannelang", + "name": "Johanne Lang", + "type": "Person", + "val": 3 + }, + { + "id": "gatineaufederalriding", + "name": "Gatineau - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "associationduparticonservateurterrebonneblainville", + "name": "Association du Parti conservateur Terrebonne--Blainville", + "type": "Organization", + "val": 8 + }, + { + "id": "rochouellet", + "name": "Roch Ouellet", + "type": "Person", + "val": 3 + }, + { + "id": "saadtohme", + "name": "Saad Tohme", + "type": "Person", + "val": 3 + }, + { + "id": "rogerpomerleau", + "name": "Roger Pomerleau", + "type": "Person", + "val": 3 + }, + { + "id": "michaelignatieff", + "name": "Michael Ignatieff", + "type": "Person", + "val": 3 + }, + { + "id": "blocquebecoisdemarcaurelefortin", + "name": "Bloc Qu\u00e9b\u00e9cois de Marc-Aur\u00e8le-Fortin", + "type": "Organization", + "val": 8 + }, + { + "id": "gustavolabrador", + "name": "Gustavo Labrador", + "type": "Person", + "val": 3 + }, + { + "id": "francinegingras", + "name": "Francine Gingras", + "type": "Person", + "val": 3 + }, + { + "id": "pierrepettigrew", + "name": "Pierre Pettigrew", + "type": "Person", + "val": 3 + }, + { + "id": "paulforseth", + "name": "Paul Forseth", + "type": "Person", + "val": 3 + }, + { + "id": "hanighossoub", + "name": "Hani Ghossoub", + "type": "Person", + "val": 3 + }, + { + "id": "mauricelemieux", + "name": "Maurice Lemieux", + "type": "Person", + "val": 3 + }, + { + "id": "marcelproulx", + "name": "Marcel Proulx", + "type": "Person", + "val": 3 + }, + { + "id": "nancygagnon", + "name": "Nancy Gagnon", + "type": "Person", + "val": 3 + }, + { + "id": "associationdublocquebecoisdechateauguaysaintconstant", + "name": "Association du Bloc Qu\u00e9b\u00e9cois de Ch\u00e2teauguay--Saint-Constant", + "type": "Organization", + "val": 8 + }, + { + "id": "thomasmulcair", + "name": "Thomas Mulcair", + "type": "Person", + "val": 3 + }, + { + "id": "subcommitteeonagendaandprocedurecommittee", + "name": "Subcommittee on Agenda and Procedure - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "vaudreuilsoulangesconservativeassociation", + "name": "Vaudreuil-Soulanges Conservative Association", + "type": "Organization", + "val": 8 + }, + { + "id": "gillesaube", + "name": "Gilles Aube", + "type": "Person", + "val": 3 + }, + { + "id": "bernardvalcourt", + "name": "Bernard Valcourt", + "type": "Person", + "val": 3 + }, + { + "id": "hamidsleiman", + "name": "Hamid Sleiman", + "type": "Person", + "val": 3 + }, + { + "id": "dianebourgeois", + "name": "Diane Bourgeois", + "type": "Person", + "val": 3 + }, + { + "id": "blocquebecoisahuntsiccartierville", + "name": "Bloc Qu\u00e9b\u00e9cois Ahuntsic-Cartierville", + "type": "Organization", + "val": 8 + }, + { + "id": "pierrepaquette", + "name": "Pierre Paquette", + "type": "Person", + "val": 3 + }, + { + "id": "louisebourgault", + "name": "Louise Bourgault", + "type": "Person", + "val": 3 + }, + { + "id": "westmountvillemarieconservativeassociation", + "name": "Westmount--Ville-Marie Conservative Association", + "type": "Organization", + "val": 8 + }, + { + "id": "jocelynegirardbujold", + "name": "Jocelyne Girard-Bujold", + "type": "Person", + "val": 3 + }, + { + "id": "alvinsegal", + "name": "Alvin Segal", + "type": "Person", + "val": 3 + }, + { + "id": "andrewscheer", + "name": "Andrew Scheer", + "type": "Person", + "val": 3 + }, + { + "id": "helenechalifourscherrer", + "name": "H\u00e9l\u00e8ne Chalifour Scherrer", + "type": "Person", + "val": 3 + }, + { + "id": "abitibibaiejamesnunavikeeyoufederalriding", + "name": "Abitibi\u2014Baie-James\u2014Nunavik\u2014Eeyou - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "blocquebecoishochelaga", + "name": "Bloc Qu\u00e9b\u00e9cois Hochelaga", + "type": "Organization", + "val": 8 + }, + { + "id": "gerardkennedy", + "name": "Gerard Kennedy", + "type": "Person", + "val": 3 + }, + { + "id": "ahuntsicfederalriding", + "name": "Ahuntsic - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "jeanhoule", + "name": "Jean Houle", + "type": "Person", + "val": 3 + }, + { + "id": "associationdublocquebecoisdemontmorencycharlevoixhautecotenord", + "name": "Association du Bloc Qu\u00e9b\u00e9cois de Montmorency--Charlevoix--Haute-C\u00f4te-Nord", + "type": "Organization", + "val": 8 + }, + { + "id": "fisheriesandoceanscanadadfo", + "name": "Fisheries and Oceans Canada (DFO)", + "type": "Organization", + "val": 8 + }, + { + "id": "governmentoperationsandestimatescommittee", + "name": "Government Operations and Estimates - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "michelguimond", + "name": "Michel Guimond", + "type": "Person", + "val": 3 + }, + { + "id": "joelsegal", + "name": "Joel Segal", + "type": "Person", + "val": 3 + }, + { + "id": "claudepatry", + "name": "Claude Patry", + "type": "Person", + "val": 3 + }, + { + "id": "contributionsof200orlesscontributionsde200oumoins", + "name": "Contributions of $200 or less/contributions de 200 $ ou moins", + "type": "Organization", + "val": 8 + }, + { + "id": "joseebeaudin", + "name": "Jos\u00e9e Beaudin", + "type": "Person", + "val": 3 + }, + { + "id": "pascalpierrepaille", + "name": "Pascal-Pierre Paill\u00e9", + "type": "Person", + "val": 3 + }, + { + "id": "blocquebecoisdebromemissisquoi", + "name": "Bloc Qu\u00e9b\u00e9cois de Brome--Missisquoi", + "type": "Organization", + "val": 8 + }, + { + "id": "danielgauthier", + "name": "Daniel Gauthier", + "type": "Person", + "val": 3 + }, + { + "id": "canadianfoodinspectionagencycfia", + "name": "Canadian Food Inspection Agency (CFIA)", + "type": "Organization", + "val": 8 + }, + { + "id": "christianouellet", + "name": "Christian Ouellet", + "type": "Person", + "val": 3 + }, + { + "id": "martinlambert", + "name": "Martin Lambert", + "type": "Person", + "val": 3 + }, + { + "id": "lavallesilesconservativeassociation", + "name": "Laval--Les \u00celes Conservative Association", + "type": "Organization", + "val": 8 + }, + { + "id": "estellecote", + "name": "Estelle C\u00f4t\u00e9", + "type": "Person", + "val": 3 + }, + { + "id": "lavalfederalriding", + "name": "Laval - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "yvesdufour", + "name": "Yves Dufour", + "type": "Person", + "val": 3 + }, + { + "id": "evanassif", + "name": "Eva Nassif", + "type": "Person", + "val": 3 + }, + { + "id": "longueuilpierreboucherfederalriding", + "name": "Longueuil\u2014Pierre-Boucher - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "drummondfederalriding", + "name": "Drummond - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "agricultureandagrifoodcanadaaafc", + "name": "Agriculture and Agri-Food Canada (AAFC)", + "type": "Organization", + "val": 8 + }, + { + "id": "rimouskineigettetemiscouatalesbasquesfederalriding", + "name": "Rimouski-Neigette\u2014T\u00e9miscouata\u2014Les Basques - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "associationliberalefederaledemontmagnylisletkamouraskariviereduloup", + "name": "Association lib\u00e9rale f\u00e9d\u00e9rale de Montmagny--L'Islet--Kamouraska--Rivi\u00e8re-du-Loup", + "type": "Organization", + "val": 8 + }, + { + "id": "blocquebecoisdemanicouagan", + "name": "Bloc Qu\u00e9b\u00e9cois de Manicouagan", + "type": "Organization", + "val": 8 + }, + { + "id": "blocquebecoisdabitibibaiejamesnunavikeeyou", + "name": "Bloc Qu\u00e9b\u00e9cois d'Abitibi--Baie-James--Nunavik--Eeyou", + "type": "Organization", + "val": 8 + }, + { + "id": "mariamourani", + "name": "Maria Mourani", + "type": "Person", + "val": 3 + }, + { + "id": "gatineauconservativeassociation", + "name": "Gatineau Conservative Association", + "type": "Organization", + "val": 8 + }, + { + "id": "rockcloutier", + "name": "Rock Cloutier", + "type": "Person", + "val": 3 + }, + { + "id": "pierredesavoye", + "name": "Pierre De Savoye", + "type": "Person", + "val": 3 + }, + { + "id": "denisepoirierrivard", + "name": "Denise Poirier-Rivard", + "type": "Person", + "val": 3 + }, + { + "id": "benoithoude", + "name": "Benoit Houde", + "type": "Person", + "val": 3 + }, + { + "id": "dongillis", + "name": "Don Gillis", + "type": "Person", + "val": 3 + }, + { + "id": "blocquebecoissainthyacinthebagot", + "name": "Bloc Qu\u00e9b\u00e9cois Saint-Hyacinthe--Bagot", + "type": "Organization", + "val": 8 + }, + { + "id": "northvancouverconservativeassociation", + "name": "North Vancouver Conservative Association", + "type": "Organization", + "val": 8 + }, + { + "id": "louismassicotte", + "name": "Louis Massicotte", + "type": "Person", + "val": 3 + }, + { + "id": "philippeturcq", + "name": "Philippe Turcq", + "type": "Person", + "val": 3 + }, + { + "id": "canadaisraelinterparliamentarygroup", + "name": "Canada-Israel Interparliamentary Group", + "type": "Organization", + "val": 8 + }, + { + "id": "greenpartyofcanada", + "name": "Green Party of Canada", + "type": "Organization", + "val": 8 + }, + { + "id": "raymondgravel", + "name": "Raymond Gravel", + "type": "Person", + "val": 3 + }, + { + "id": "liberalpartyofcanada", + "name": "Liberal Party of Canada", + "type": "Organization", + "val": 8 + }, + { + "id": "louisfournier", + "name": "Louis Fournier", + "type": "Person", + "val": 3 + }, + { + "id": "makakotto", + "name": "Maka Kotto", + "type": "Person", + "val": 3 + }, + { + "id": "mariobeaulieu", + "name": "Mario Beaulieu", + "type": "Person", + "val": 3 + }, + { + "id": "healthcommittee", + "name": "Health - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "marcaurelefortinfederalriding", + "name": "Marc-Aur\u00e8le-Fortin - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "blocquebecoisdelouishebert", + "name": "Bloc Qu\u00e9b\u00e9cois de Louis-H\u00e9bert", + "type": "Organization", + "val": 8 + }, + { + "id": "humanresourcesandsocialdevelopmentcanadahrsdc", + "name": "Human Resources and Social Development Canada (HRSDC)", + "type": "Organization", + "val": 8 + }, + { + "id": "associationduparticonservateurargenteuilpapineaumirabel", + "name": "Association du Parti conservateur Argenteuil--Papineau--Mirabel", + "type": "Organization", + "val": 8 + }, + { + "id": "glengarryprescottrussellconservativeassociation", + "name": "Glengarry--Prescott--Russell Conservative Association", + "type": "Organization", + "val": 8 + }, + { + "id": "blocquebecoisdelongueuilpierreboucher", + "name": "Bloc Qu\u00e9b\u00e9cois de Longueuil--Pierre-Boucher", + "type": "Organization", + "val": 8 + }, + { + "id": "robertvincent", + "name": "Robert Vincent", + "type": "Person", + "val": 3 + }, + { + "id": "robertcharbonneau", + "name": "Robert Charbonneau", + "type": "Person", + "val": 3 + }, + { + "id": "npdmarcaurelefortin", + "name": "NPD Marc-Aur\u00e8le-Fortin", + "type": "Organization", + "val": 8 + }, + { + "id": "christianegagnon", + "name": "Christiane Gagnon", + "type": "Person", + "val": 3 + }, + { + "id": "associationdublocquebecoisverchereslespatriotes", + "name": "Association du Bloc Qu\u00e9b\u00e9cois Verch\u00e8res--Les Patriotes", + "type": "Organization", + "val": 8 + }, + { + "id": "alfredpellanfederalriding", + "name": "Alfred-Pellan - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "jeanpierrebelanger", + "name": "Jean-Pierre B\u00e9langer", + "type": "Person", + "val": 3 + }, + { + "id": "manicouaganfederalriding", + "name": "Manicouagan - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "denisguindon", + "name": "Denis Guindon", + "type": "Person", + "val": 3 + }, + { + "id": "ronliepert", + "name": "Ron Liepert", + "type": "Person", + "val": 3 + }, + { + "id": "assaaddargham", + "name": "Assaad Dargham", + "type": "Person", + "val": 3 + }, + { + "id": "jeanfrancoisbarbe", + "name": "Jean-Fran\u00e7ois Barbe", + "type": "Person", + "val": 3 + }, + { + "id": "benoitcyr", + "name": "Benoit Cyr", + "type": "Person", + "val": 3 + }, + { + "id": "verchereslespatriotesfederalriding", + "name": "Verch\u00e8res\u2014Les Patriotes - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "privycouncilofficepco", + "name": "Privy Council Office (PCO)", + "type": "Organization", + "val": 8 + }, + { + "id": "lorrainebeliveau", + "name": "Lorraine B\u00e9liveau", + "type": "Person", + "val": 3 + }, + { + "id": "blocquebecoispierreboucherlespatriotesvercheres", + "name": "Bloc Qu\u00e9b\u00e9cois Pierre-Boucher--Les Patriotes--Verch\u00e8res", + "type": "Organization", + "val": 8 + }, + { + "id": "dominiclabrie", + "name": "Dominic LABRIE", + "type": "Person", + "val": 3 + }, + { + "id": "blocquebecoisdemontmagnylisletkamouraskariviereduloup", + "name": "Bloc Qu\u00e9b\u00e9cois de Montmagny--L'Islet--Kamouraska--Rivi\u00e8re-du-Loup", + "type": "Organization", + "val": 8 + }, + { + "id": "repentignyfederalriding", + "name": "Repentigny - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "associationliberalefederalededrummond", + "name": "Association lib\u00e9rale f\u00e9d\u00e9rale de Drummond", + "type": "Organization", + "val": 8 + }, + { + "id": "andreechampagne", + "name": "Andr\u00e9e Champagne", + "type": "Person", + "val": 3 + }, + { + "id": "yvesfrancoisblanchet", + "name": "Yves-Fran\u00e7ois Blanchet", + "type": "Person", + "val": 3 + }, + { + "id": "louisphilippebourgeois", + "name": "Louis-Philippe Bourgeois", + "type": "Person", + "val": 3 + }, + { + "id": "associationliberalefederaledemeganticlerable", + "name": "Association lib\u00e9rale f\u00e9d\u00e9rale de M\u00e9gantic--L'\u00c9rable", + "type": "Organization", + "val": 8 + }, + { + "id": "quebecfederalriding", + "name": "Qu\u00e9bec - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "barbarabank", + "name": "Barbara Bank", + "type": "Person", + "val": 3 + }, + { + "id": "rivieredesmilleilesconservativeassociation", + "name": "Rivi\u00e8re-des-Mille-\u00celes Conservative Association", + "type": "Organization", + "val": 8 + }, + { + "id": "jeanfrancoisfortin", + "name": "Jean-Fran\u00e7ois Fortin", + "type": "Person", + "val": 3 + }, + { + "id": "associationdublocquebecoisdelacirconscriptiondetroisrivieres", + "name": "Association du Bloc Qu\u00e9b\u00e9cois de la circonscription de Trois-Rivi\u00e8res", + "type": "Organization", + "val": 8 + }, + { + "id": "danysevigny", + "name": "Dany S\u00c9VIGNY", + "type": "Person", + "val": 3 + }, + { + "id": "ottawavanierfederalliberalassociation", + "name": "Ottawa--Vanier Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "blocquebecoisdesaintjean", + "name": "Bloc Qu\u00e9b\u00e9cois de Saint-Jean", + "type": "Organization", + "val": 8 + }, + { + "id": "andrebellavance", + "name": "Andr\u00e9 Bellavance", + "type": "Person", + "val": 3 + }, + { + "id": "philippegagnon", + "name": "Philippe GAGNON", + "type": "Person", + "val": 3 + }, + { + "id": "jameslunney", + "name": "James Lunney", + "type": "Person", + "val": 3 + }, + { + "id": "clauderoy", + "name": "Claude Roy", + "type": "Person", + "val": 3 + }, + { + "id": "nationaldefencednd", + "name": "National Defence (DND)", + "type": "Organization", + "val": 8 + }, + { + "id": "canadafranceinterparliamentaryassociation", + "name": "Canada-France Inter-Parliamentary Association", + "type": "Organization", + "val": 8 + }, + { + "id": "pierrehoule", + "name": "Pierre Houle", + "type": "Person", + "val": 3 + }, + { + "id": "johannebeaulieu", + "name": "Johanne Beaulieu", + "type": "Person", + "val": 3 + }, + { + "id": "henrywolfond", + "name": "Henry Wolfond", + "type": "Person", + "val": 3 + }, + { + "id": "pierrelachance", + "name": "Pierre Lachance", + "type": "Person", + "val": 3 + }, + { + "id": "groupemondialenergiesrenouvelableswreginc", + "name": "GROUPE MONDIAL ENERGIES RENOUVELABLES (WREG INC.)", + "type": "Organization", + "val": 8 + }, + { + "id": "blocquebecoisdeterrebonneblainville", + "name": "Bloc Qu\u00e9b\u00e9cois de Terrebonne--Blainville", + "type": "Organization", + "val": 8 + }, + { + "id": "marcandrecantin", + "name": "Marc - Andre Cantin", + "type": "Person", + "val": 3 + }, + { + "id": "associationduparticonservateurmeganticlerable", + "name": "Association du Parti conservateur M\u00e9gantic--L'\u00c9rable", + "type": "Organization", + "val": 8 + }, + { + "id": "danielfournier", + "name": "Daniel Fournier", + "type": "Person", + "val": 3 + }, + { + "id": "nancontributionsof200orlesscontributionsde200oumoins", + "name": "Nan Contributions of $200 or Less/Contributions De 200 $ Ou Moins", + "type": "Person", + "val": 3 + }, + { + "id": "vaudreuilsoulangesfederalriding", + "name": "Vaudreuil-Soulanges - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "reneroy", + "name": "Rene Roy", + "type": "Person", + "val": 3 + }, + { + "id": "michaelbrewster", + "name": "Michael Brewster", + "type": "Person", + "val": 3 + }, + { + "id": "associationdublocquebecoisderosemontlapetitepatrie", + "name": "Association du Bloc Qu\u00e9b\u00e9cois de Rosemont--La Petite-Patrie", + "type": "Organization", + "val": 8 + }, + { + "id": "stevenblaney", + "name": "Steven Blaney", + "type": "Person", + "val": 3 + }, + { + "id": "associationduparticonservateurjonquierealma", + "name": "Association du Parti conservateur Jonqui\u00e8re--Alma", + "type": "Organization", + "val": 8 + }, + { + "id": "justintrudeau", + "name": "Justin Trudeau", + "type": "Person", + "val": 3 + }, + { + "id": "michelgervais", + "name": "Michel Gervais", + "type": "Person", + "val": 3 + }, + { + "id": "yolainesavignac", + "name": "Yolaine Savignac", + "type": "Person", + "val": 3 + }, + { + "id": "gillesaperron", + "name": "Gilles-A. Perron", + "type": "Person", + "val": 3 + }, + { + "id": "houseofcommons", + "name": "House of Commons", + "type": "Organization", + "val": 8 + }, + { + "id": "declarationofemergencycommittee", + "name": "Declaration of Emergency - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "blocquebecois", + "name": "Bloc qu\u00e9b\u00e9cois", + "type": "Organization", + "val": 8 + }, + { + "id": "jeandorion", + "name": "Jean Dorion", + "type": "Person", + "val": 3 + }, + { + "id": "blocquebecoisrobervallacsaintjean", + "name": "Bloc Qu\u00e9b\u00e9cois Roberval--Lac-Saint-Jean", + "type": "Organization", + "val": 8 + }, + { + "id": "oakvillenorthburlingtonconservativeassociation", + "name": "Oakville North--Burlington Conservative Association", + "type": "Organization", + "val": 8 + }, + { + "id": "pierrepaulroy", + "name": "Pierre-Paul Roy", + "type": "Person", + "val": 3 + }, + { + "id": "gillesduceppe", + "name": "Gilles Duceppe", + "type": "Person", + "val": 3 + }, + { + "id": "ottawasouthfederalliberalassociation", + "name": "Ottawa South Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "terrebonneblainvillefederalriding", + "name": "Terrebonne\u2014Blainville - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "federalliberalassociationofbrossardlaprairie", + "name": "Federal Liberal Association of Brossard--La Prairie", + "type": "Organization", + "val": 8 + }, + { + "id": "pauldewar", + "name": "Paul Dewar", + "type": "Person", + "val": 3 + }, + { + "id": "membersofparliament", + "name": "Members of Parliament", + "type": "Organization", + "val": 8 + }, + { + "id": "jonquierealmafederalriding", + "name": "Jonqui\u00e8re\u2014Alma - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "andreeboisvert", + "name": "Andree Boisvert", + "type": "Person", + "val": 3 + }, + { + "id": "chrisfrantz", + "name": "Chris Frantz", + "type": "Person", + "val": 3 + }, + { + "id": "forcesetdemocratie", + "name": "Forces et D\u00e9mocratie", + "type": "Organization", + "val": 8 + }, + { + "id": "danielblanchet", + "name": "Daniel Blanchet", + "type": "Person", + "val": 3 + }, + { + "id": "alexisbrunelleduceppe", + "name": "Alexis Brunelle-Duceppe", + "type": "Person", + "val": 3 + }, + { + "id": "martinthibault", + "name": "Martin Thibault", + "type": "Person", + "val": 3 + }, + { + "id": "blocquebecoisdelaval", + "name": "Bloc Qu\u00e9b\u00e9cois de Laval", + "type": "Organization", + "val": 8 + }, + { + "id": "blocquebecoisdelavallesiles", + "name": "Bloc Qu\u00e9b\u00e9cois de Laval--Les \u00celes", + "type": "Organization", + "val": 8 + }, + { + "id": "veroniquesoucy", + "name": "V\u00e9ronique Soucy", + "type": "Person", + "val": 3 + }, + { + "id": "associationdecirconscriptiondublocquebecoisdegatineau", + "name": "Association de circonscription du Bloc Qu\u00e9b\u00e9cois de Gatineau", + "type": "Organization", + "val": 8 + }, + { + "id": "michelgauthier", + "name": "Michel Gauthier", + "type": "Person", + "val": 3 + }, + { + "id": "argenteuillapetitenationfederalliberalassociation", + "name": "Argenteuil--La Petite-Nation Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "canadaeuropeparliamentaryassociation", + "name": "Canada-Europe Parliamentary Association", + "type": "Organization", + "val": 8 + }, + { + "id": "associationliberalefederaledesaintlaurentcartierville", + "name": "Association lib\u00e9rale f\u00e9d\u00e9rale de Saint-Laurent--Cartierville", + "type": "Organization", + "val": 8 + }, + { + "id": "associationdublocquebecoisdelauriersaintemarie", + "name": "Association du Bloc Qu\u00e9b\u00e9cois de Laurier--Sainte-Marie", + "type": "Organization", + "val": 8 + }, + { + "id": "rosemontlapetitepatriefederalndpridingassociation", + "name": "Rosemont--La Petite-Patrie Federal NDP Riding Association", + "type": "Organization", + "val": 8 + }, + { + "id": "longueuilsainthubertfederalriding", + "name": "Longueuil\u2014Saint-Hubert - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "claudedesrosiers", + "name": "Claude Desrosiers", + "type": "Person", + "val": 3 + }, + { + "id": "alfredpellanfederalliberalassociation", + "name": "Alfred-Pellan Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "normandbrunelle", + "name": "Normand Brunelle", + "type": "Person", + "val": 3 + }, + { + "id": "blocquebecoiscaucus", + "name": "Bloc Qu\u00e9b\u00e9cois - Caucus", + "type": "Organization", + "val": 8 + }, + { + "id": "yvonlevesque", + "name": "Yvon L\u00e9vesque", + "type": "Person", + "val": 3 + }, + { + "id": "denisgrenier", + "name": "Denis Grenier", + "type": "Person", + "val": 3 + }, + { + "id": "blocquebecoisbecancournicoletsaurel", + "name": "Bloc Qu\u00e9b\u00e9cois B\u00e9cancour--Nicolet--Saurel", + "type": "Organization", + "val": 8 + }, + { + "id": "associationdecirconscriptiondublocquebecoismontcalm", + "name": "Association de circonscription du Bloc Qu\u00e9b\u00e9cois Montcalm", + "type": "Organization", + "val": 8 + }, + { + "id": "standingcommitteeonfinancefina", + "name": "Standing Committee on Finance (FINA)", + "type": "Organization", + "val": 8 + }, + { + "id": "micheltaillefer", + "name": "Michel Taillefer", + "type": "Person", + "val": 3 + }, + { + "id": "lapointedelilefederalriding", + "name": "La Pointe-de-l'\u00cele - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "salaberrysuroitfederalliberalassociation", + "name": "Salaberry--Suro\u00eet Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "montmorencycharlevoixhautecotenordfederalriding", + "name": "Montmorency\u2014Charlevoix\u2014Haute-C\u00f4te-Nord - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "blocquebecoisrivieredesmilleiles", + "name": "Bloc Qu\u00e9b\u00e9cois Rivi\u00e8re des Mille-\u00celes", + "type": "Organization", + "val": 8 + }, + { + "id": "massimopacetti", + "name": "Massimo Pacetti", + "type": "Person", + "val": 3 + }, + { + "id": "francebonsant", + "name": "France Bonsant", + "type": "Person", + "val": 3 + }, + { + "id": "evemarythaithilac", + "name": "\u00c8ve-Mary Tha\u00ef Thi Lac", + "type": "Person", + "val": 3 + }, + { + "id": "danielsarrazin", + "name": "Daniel Sarrazin", + "type": "Person", + "val": 3 + }, + { + "id": "bourassafederalliberalassociation", + "name": "Bourassa Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "becancournicoletsaurelfederalriding", + "name": "B\u00e9cancour\u2014Nicolet\u2014Saurel - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "federationdescaissesdesjardinsduquebec", + "name": "F\u00c9D\u00c9RATION DES CAISSES DESJARDINS DU QU\u00c9BEC", + "type": "Organization", + "val": 8 + }, + { + "id": "gerardasselin", + "name": "G\u00e9rard Asselin", + "type": "Person", + "val": 3 + }, + { + "id": "raymondchenier", + "name": "Raymond Ch\u00e9nier", + "type": "Person", + "val": 3 + }, + { + "id": "myriamtaschereau", + "name": "Myriam Taschereau", + "type": "Person", + "val": 3 + }, + { + "id": "blocquebecoisvaudreuilsoulanges", + "name": "Bloc Qu\u00e9b\u00e9cois Vaudreuil-Soulanges", + "type": "Organization", + "val": 8 + }, + { + "id": "richardkurland", + "name": "Richard Kurland", + "type": "Person", + "val": 3 + }, + { + "id": "francinelalonde", + "name": "Francine Lalonde", + "type": "Person", + "val": 3 + }, + { + "id": "blocquebecoisdebasrichelieunicoletbecancour", + "name": "Bloc Qu\u00e9b\u00e9cois de Bas-Richelieu--Nicolet--B\u00e9cancour", + "type": "Organization", + "val": 8 + }, + { + "id": "pierrevalois", + "name": "Pierre Valois", + "type": "Person", + "val": 3 + }, + { + "id": "marietheresebigras", + "name": "Marie-Th\u00e9r\u00e8se Bigras", + "type": "Person", + "val": 3 + }, + { + "id": "larrysmith", + "name": "Larry Smith", + "type": "Person", + "val": 3 + }, + { + "id": "luctremblay", + "name": "Luc Tremblay", + "type": "Person", + "val": 3 + }, + { + "id": "michelineroussel", + "name": "Micheline Roussel", + "type": "Person", + "val": 3 + }, + { + "id": "sharafsharafeldin", + "name": "Sharaf Sharafeldin", + "type": "Person", + "val": 3 + }, + { + "id": "sergemenard", + "name": "Serge M\u00e9nard", + "type": "Person", + "val": 3 + }, + { + "id": "mariosimard", + "name": "Mario Simard", + "type": "Person", + "val": 3 + }, + { + "id": "florentmichaud", + "name": "Florent Michaud", + "type": "Person", + "val": 3 + }, + { + "id": "lassociationdublocquebecoisdesaintlambert", + "name": "L'Association du Bloc Qu\u00e9b\u00e9cois de Saint-Lambert", + "type": "Organization", + "val": 8 + }, + { + "id": "jeanpierrebelisle", + "name": "Jean-Pierre B\u00e9lisle", + "type": "Person", + "val": 3 + }, + { + "id": "michellepage", + "name": "Michel Lepage", + "type": "Person", + "val": 3 + }, + { + "id": "lavalfederalliberalassociation", + "name": "Laval Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "canadairelandinterparliamentarygroup", + "name": "Canada-Ireland Interparliamentary Group", + "type": "Organization", + "val": 8 + }, + { + "id": "torontodanforthfederalndpridingassociation", + "name": "Toronto--Danforth Federal NDP Riding Association", + "type": "Organization", + "val": 8 + }, + { + "id": "conservativepartyofcanada", + "name": "Conservative Party of Canada", + "type": "Organization", + "val": 8 + }, + { + "id": "associationdublocquebecoisdeshefford", + "name": "Association du Bloc Qu\u00e9b\u00e9cois de Shefford", + "type": "Organization", + "val": 8 + }, + { + "id": "canadiangroupoftheinterparliamentaryunion", + "name": "Canadian Group of the Inter-Parliamentary Union", + "type": "Organization", + "val": 8 + }, + { + "id": "ndpridingassociationofahuntsiccartierville", + "name": "NDP Riding Association of Ahuntsic-Cartierville", + "type": "Organization", + "val": 8 + }, + { + "id": "richardnadeau", + "name": "Richard Nadeau", + "type": "Person", + "val": 3 + }, + { + "id": "brossardlaprairiefederalriding", + "name": "Brossard\u2014La Prairie - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "ahmadsbeiti", + "name": "Ahmad Sbeiti", + "type": "Person", + "val": 3 + }, + { + "id": "papineaufederalriding", + "name": "Papineau - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "blocquebecoisrimouskineigettetemiscouatalesbasques", + "name": "Bloc Qu\u00e9b\u00e9cois Rimouski-Neigette--T\u00e9miscouata--Les Basques", + "type": "Organization", + "val": 8 + }, + { + "id": "francoisbeaudoin", + "name": "Fran\u00e7ois Beaudoin", + "type": "Person", + "val": 3 + }, + { + "id": "xavierbarsalouduval", + "name": "Xavier Barsalou-Duval", + "type": "Person", + "val": 3 + }, + { + "id": "newdemocraticparty", + "name": "New Democratic Party", + "type": "Organization", + "val": 8 + }, + { + "id": "luciennerobillard", + "name": "Lucienne Robillard", + "type": "Person", + "val": 3 + }, + { + "id": "bernardjrbigras", + "name": "Bernard Jr. Bigras", + "type": "Person", + "val": 3 + }, + { + "id": "junerussell", + "name": "June Russell", + "type": "Person", + "val": 3 + }, + { + "id": "jacquesbeausejour", + "name": "Jacques Beaus\u00e9jour", + "type": "Person", + "val": 3 + }, + { + "id": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "name": "Canadian Branch of the Assembl\u00e9e parlementaire de la Francophonie", + "type": "Organization", + "val": 8 + }, + { + "id": "anniedesnoyers", + "name": "Annie Desnoyers", + "type": "Person", + "val": 3 + }, + { + "id": "joseeverner", + "name": "Jos\u00e9e Verner", + "type": "Person", + "val": 3 + }, + { + "id": "associationliberalefederaledesaintbrunosainthubert", + "name": "Association lib\u00e9rale f\u00e9d\u00e9rale de Saint-Bruno--Saint-Hubert", + "type": "Organization", + "val": 8 + }, + { + "id": "danyleblanc", + "name": "Dany Leblanc", + "type": "Person", + "val": 3 + }, + { + "id": "associationliberalefederaledoutremont", + "name": "Association lib\u00e9rale f\u00e9d\u00e9rale d'Outremont", + "type": "Organization", + "val": 8 + }, + { + "id": "officiallanguagescommittee", + "name": "Official Languages - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "lucienrichard", + "name": "Lucien Richard", + "type": "Person", + "val": 3 + }, + { + "id": "jeanclaudepoissant", + "name": "Jean-Claude Poissant", + "type": "Person", + "val": 3 + }, + { + "id": "guycaron", + "name": "Guy Caron", + "type": "Person", + "val": 3 + }, + { + "id": "rhealfortin", + "name": "Rh\u00e9al Fortin", + "type": "Person", + "val": 3 + }, + { + "id": "louishebertconservativeassociation", + "name": "Louis-H\u00e9bert Conservative Association", + "type": "Organization", + "val": 8 + }, + { + "id": "westmountvillemariefederalliberalassociation", + "name": "Westmount--Ville-Marie Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "notredamedegracelachinefederalliberalassociation", + "name": "Notre-Dame-de-Gr\u00e2ce--Lachine Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "imprimeriequebecormedia2015inc", + "name": "IMPRIMERIE QU\u00c9BECOR M\u00c9DIA (2015) INC.", + "type": "Organization", + "val": 8 + }, + { + "id": "nicoledemers", + "name": "Nicole Demers", + "type": "Person", + "val": 3 + }, + { + "id": "lacsaintjeanconservativeassociation", + "name": "Lac-Saint-Jean Conservative Association", + "type": "Organization", + "val": 8 + }, + { + "id": "sebastiengagnon", + "name": "S\u00e9bastien Gagnon", + "type": "Person", + "val": 3 + }, + { + "id": "outremontfederalndpridingassociation", + "name": "Outremont Federal NDP Riding Association", + "type": "Organization", + "val": 8 + }, + { + "id": "paulinepicard", + "name": "Pauline Picard", + "type": "Person", + "val": 3 + }, + { + "id": "glengarryprescottrussellfederalliberalassociation", + "name": "Glengarry--Prescott--Russell Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "sheffordfederalriding", + "name": "Shefford - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "mississaugastreetsvillefederalndpridingassociation", + "name": "Mississauga--Streetsville Federal NDP Riding Association", + "type": "Organization", + "val": 8 + }, + { + "id": "blocquebecoismeganticlerable", + "name": "Bloc Qu\u00e9b\u00e9cois M\u00e9gantic--L'\u00c9rable", + "type": "Organization", + "val": 8 + }, + { + "id": "associationliberalefederaledepapineau", + "name": "Association lib\u00e9rale f\u00e9d\u00e9rale de Papineau", + "type": "Organization", + "val": 8 + }, + { + "id": "jeanneleberfederalliberalassociation", + "name": "Jeanne-Le Ber Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "carolelavallee", + "name": "Carole Lavall\u00e9e", + "type": "Person", + "val": 3 + }, + { + "id": "thierrystcyr", + "name": "Thierry St-Cyr", + "type": "Person", + "val": 3 + }, + { + "id": "saintbrunosainthubertfederalriding", + "name": "Saint-Bruno\u2014Saint-Hubert - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "farmproductscouncilofcanadafpcc", + "name": "Farm Products Council of Canada (FPCC)", + "type": "Organization", + "val": 8 + }, + { + "id": "blocquebecoisdesaintbrunosainthubert", + "name": "Bloc Qu\u00e9b\u00e9cois de Saint-Bruno--Saint-Hubert", + "type": "Organization", + "val": 8 + }, + { + "id": "fredericlepage", + "name": "Fr\u00e9d\u00e9ric Lepage", + "type": "Person", + "val": 3 + }, + { + "id": "pierreforest", + "name": "Pierre Forest", + "type": "Person", + "val": 3 + }, + { + "id": "stephanelauzon", + "name": "St\u00e9phane Lauzon", + "type": "Person", + "val": 3 + }, + { + "id": "associationblocquebecoislouissaintlaurent", + "name": "Association Bloc Qu\u00e9b\u00e9cois Louis-Saint-Laurent", + "type": "Organization", + "val": 8 + }, + { + "id": "mariellefleurent", + "name": "Marielle Fleurent", + "type": "Person", + "val": 3 + }, + { + "id": "primeministersofficepmo", + "name": "Prime Minister's Office (PMO)", + "type": "Organization", + "val": 8 + }, + { + "id": "lavallesilesfederalliberalassociation", + "name": "Laval--Les \u00celes Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "gilbertpaquette", + "name": "Gilbert Paquette", + "type": "Person", + "val": 3 + }, + { + "id": "libraryofparliamentcommittee", + "name": "Library of Parliament - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "raymondboudreau", + "name": "Raymond Boudreau", + "type": "Person", + "val": 3 + }, + { + "id": "saintmauricechamplainfederalliberalassociation", + "name": "Saint-Maurice--Champlain Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "realgrondin", + "name": "R\u00e9al Grondin", + "type": "Person", + "val": 3 + }, + { + "id": "richmondarthabaskaconservativeassociation", + "name": "Richmond--Arthabaska Conservative Association", + "type": "Organization", + "val": 8 + }, + { + "id": "gastonpinard", + "name": "Gaston Pinard", + "type": "Person", + "val": 3 + }, + { + "id": "claudepilote", + "name": "Claude Pilote", + "type": "Person", + "val": 3 + }, + { + "id": "vimyfederalliberalassociation", + "name": "Vimy Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "stormontdundassouthglengarryfederalliberalassociation", + "name": "Stormont--Dundas--South Glengarry Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "jacquesbinette", + "name": "Jacques Binette", + "type": "Person", + "val": 3 + }, + { + "id": "lisebarry", + "name": "Lise Barry", + "type": "Person", + "val": 3 + }, + { + "id": "andreparizeau", + "name": "Andr\u00e9 PARIZEAU", + "type": "Person", + "val": 3 + }, + { + "id": "madawaskarestigoucheconservativeassociation", + "name": "Madawaska--Restigouche Conservative Association", + "type": "Organization", + "val": 8 + }, + { + "id": "scottbrison", + "name": "Scott Brison", + "type": "Person", + "val": 3 + }, + { + "id": "celinacaesarchvannes", + "name": "Celina Caesar-Chvannes", + "type": "Person", + "val": 3 + }, + { + "id": "marclabelle", + "name": "Marc Labelle", + "type": "Person", + "val": 3 + }, + { + "id": "marcboulianne", + "name": "Marc Boulianne", + "type": "Person", + "val": 3 + }, + { + "id": "marlenejennings", + "name": "Marlene Jennings", + "type": "Person", + "val": 3 + }, + { + "id": "blocquebecoisdrummond", + "name": "Bloc Qu\u00e9b\u00e9cois Drummond", + "type": "Organization", + "val": 8 + }, + { + "id": "louisethibault", + "name": "Louise Thibault", + "type": "Person", + "val": 3 + }, + { + "id": "jonathangoldbloom", + "name": "Jonathan Goldbloom", + "type": "Person", + "val": 3 + }, + { + "id": "snclavalingroupinc", + "name": "SNC-LAVALIN GROUP INC.", + "type": "Organization", + "val": 8 + }, + { + "id": "deniscoderre", + "name": "Denis Coderre", + "type": "Person", + "val": 3 + }, + { + "id": "ahuntsicfederalndpridingassociation", + "name": "Ahuntsic Federal NDP Riding Association", + "type": "Organization", + "val": 8 + }, + { + "id": "mariolaframboise", + "name": "Mario Laframboise", + "type": "Person", + "val": 3 + }, + { + "id": "maximebernier", + "name": "Maxime Bernier", + "type": "Person", + "val": 3 + }, + { + "id": "hautegaspesielamitismatanematapediafederalriding", + "name": "Haute-Gasp\u00e9sie\u2014La Mitis\u2014Matane\u2014Matap\u00e9dia - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "marclussier", + "name": "Marc Lussier", + "type": "Person", + "val": 3 + }, + { + "id": "transportcanadatc", + "name": "Transport Canada (TC)", + "type": "Organization", + "val": 8 + }, + { + "id": "simonpierresavardtremblay", + "name": "Simon-Pierre Savard-Tremblay", + "type": "Person", + "val": 3 + }, + { + "id": "sylvieberube", + "name": "Sylvie B\u00e9rub\u00e9", + "type": "Person", + "val": 3 + }, + { + "id": "louisebarsalou", + "name": "Louise Barsalou", + "type": "Person", + "val": 3 + }, + { + "id": "salaberrysuroitfederalriding", + "name": "Salaberry\u2014Suro\u00eet - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "canadaitalyinterparliamentarygroup", + "name": "Canada-Italy Interparliamentary Group", + "type": "Organization", + "val": 8 + }, + { + "id": "nicolasdufour", + "name": "Nicolas Dufour", + "type": "Person", + "val": 3 + }, + { + "id": "andreveronneau", + "name": "Andr\u00e9 V\u00e9ronneau", + "type": "Person", + "val": 3 + }, + { + "id": "lucdesilets", + "name": "Luc Desilets", + "type": "Person", + "val": 3 + }, + { + "id": "pontiacconservativeassociation", + "name": "Pontiac Conservative Association", + "type": "Organization", + "val": 8 + }, + { + "id": "lucdesnoyers", + "name": "Luc Desnoyers", + "type": "Person", + "val": 3 + }, + { + "id": "claudesoucy", + "name": "Claude Soucy", + "type": "Person", + "val": 3 + }, + { + "id": "danielbeaudin", + "name": "Daniel Beaudin", + "type": "Person", + "val": 3 + }, + { + "id": "guyandre", + "name": "Guy Andr\u00e9", + "type": "Person", + "val": 3 + }, + { + "id": "carolefreeman", + "name": "Carole Freeman", + "type": "Person", + "val": 3 + }, + { + "id": "jeannecharlebois", + "name": "Jeanne Charlebois", + "type": "Person", + "val": 3 + }, + { + "id": "andrepaquin", + "name": "Andr\u00e9 Paquin", + "type": "Person", + "val": 3 + }, + { + "id": "fpinnovations", + "name": "FPInnovations", + "type": "Organization", + "val": 8 + }, + { + "id": "martineouellet", + "name": "Martine Ouellet", + "type": "Person", + "val": 3 + }, + { + "id": "francoiseboivin", + "name": "Fran\u00e7oise Boivin", + "type": "Person", + "val": 3 + }, + { + "id": "lucmalo", + "name": "Luc Malo", + "type": "Person", + "val": 3 + }, + { + "id": "barekkaddouri", + "name": "Barek Kaddouri", + "type": "Person", + "val": 3 + }, + { + "id": "denislebel", + "name": "Denis Lebel", + "type": "Person", + "val": 3 + }, + { + "id": "johanneregimbald", + "name": "Johanne R\u00e9gimbald", + "type": "Person", + "val": 3 + }, + { + "id": "jacqueschouinard", + "name": "Jacques Chouinard", + "type": "Person", + "val": 3 + }, + { + "id": "robertbouchard", + "name": "Robert Bouchard", + "type": "Person", + "val": 3 + }, + { + "id": "associationdecirconscriptiondublocquebecoisdequebec", + "name": "Association de circonscription du Bloc Qu\u00e9b\u00e9cois de Qu\u00e9bec", + "type": "Organization", + "val": 8 + }, + { + "id": "helenecantin", + "name": "Helene Cantin", + "type": "Person", + "val": 3 + }, + { + "id": "associationblocquebecoisshefford", + "name": "Association Bloc Qu\u00e9b\u00e9cois Shefford", + "type": "Organization", + "val": 8 + }, + { + "id": "lawrencecannon", + "name": "Lawrence Cannon", + "type": "Person", + "val": 3 + }, + { + "id": "bernardlamarre", + "name": "Bernard Lamarre", + "type": "Person", + "val": 3 + }, + { + "id": "mauricedunberry", + "name": "Maurice Dunberry", + "type": "Person", + "val": 3 + }, + { + "id": "sylvielavallee", + "name": "Sylvie Lavall\u00e9e", + "type": "Person", + "val": 3 + }, + { + "id": "associationliberalefederaledeportneufjacquescartier", + "name": "Association lib\u00e9rale f\u00e9d\u00e9rale de Portneuf--Jacques-Cartier", + "type": "Organization", + "val": 8 + }, + { + "id": "hilarygellergeller", + "name": "Hilary Geller Geller", + "type": "Person", + "val": 3 + }, + { + "id": "elliotlifson", + "name": "Elliot Lifson", + "type": "Person", + "val": 3 + }, + { + "id": "jeromelandry", + "name": "J\u00e9r\u00f4me Landry", + "type": "Person", + "val": 3 + }, + { + "id": "associationdublocquebecoisdehautegaspesielamitismatanematapedia", + "name": "Association du Bloc Qu\u00e9b\u00e9cois de Haute-Gasp\u00e9sie--La Mitis--Matane--Matap\u00e9dia", + "type": "Organization", + "val": 8 + }, + { + "id": "pierreboucherlespatriotesvercheresfederalriding", + "name": "Pierre-Boucher\u2014Les Patriotes\u2014Verch\u00e8res - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "richardguay", + "name": "Richard Guay", + "type": "Person", + "val": 3 + }, + { + "id": "marclemay", + "name": "Marc Lemay", + "type": "Person", + "val": 3 + }, + { + "id": "blocquebecoislapointedelile", + "name": "Bloc Qu\u00e9b\u00e9cois La Pointe-de-l'\u00cele", + "type": "Organization", + "val": 8 + }, + { + "id": "claudemanigat", + "name": "Claude Manigat", + "type": "Person", + "val": 3 + }, + { + "id": "jacqueselemond", + "name": "Jacques Elemond", + "type": "Person", + "val": 3 + }, + { + "id": "associationliberalefederaledargenteuilpapineaumirabel", + "name": "Association lib\u00e9rale f\u00e9d\u00e9rale d'Argenteuil--Papineau--Mirabel", + "type": "Organization", + "val": 8 + }, + { + "id": "cecilevanier", + "name": "C\u00e9cile Vanier", + "type": "Person", + "val": 3 + }, + { + "id": "louishebertfederalriding", + "name": "Louis-H\u00e9bert - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "blocquebecoissalaberrysuroit", + "name": "Bloc Qu\u00e9b\u00e9cois Salaberry--Suro\u00eet", + "type": "Organization", + "val": 8 + }, + { + "id": "gailshea", + "name": "Gail Shea", + "type": "Person", + "val": 3 + }, + { + "id": "antonigilbert", + "name": "Antoni Gilbert", + "type": "Person", + "val": 3 + }, + { + "id": "marcmaltais", + "name": "Marc Maltais", + "type": "Person", + "val": 3 + }, + { + "id": "mariejoseetalbot", + "name": "Marie-Jos\u00e9e Talbot", + "type": "Person", + "val": 3 + }, + { + "id": "ruthpotvin", + "name": "Ruth Potvin", + "type": "Person", + "val": 3 + }, + { + "id": "jeanyveslaforest", + "name": "Jean-Yves Laforest", + "type": "Person", + "val": 3 + }, + { + "id": "christianlabrie", + "name": "Christian Labrie", + "type": "Person", + "val": 3 + }, + { + "id": "gerardheroux", + "name": "G\u00e9rard H\u00e9roux", + "type": "Person", + "val": 3 + }, + { + "id": "rogergaudet", + "name": "Roger Gaudet", + "type": "Person", + "val": 3 + }, + { + "id": "meilifaille", + "name": "Meili Faille", + "type": "Person", + "val": 3 + }, + { + "id": "saintjeanconservativeassociation", + "name": "Saint-Jean Conservative Association", + "type": "Organization", + "val": 8 + }, + { + "id": "blocquebecoisrichmondarthabaska", + "name": "Bloc Qu\u00e9b\u00e9cois Richmond--Arthabaska", + "type": "Organization", + "val": 8 + }, + { + "id": "robertcarrier", + "name": "Robert Carrier", + "type": "Person", + "val": 3 + }, + { + "id": "pablorodriguez", + "name": "Pablo Rodriguez", + "type": "Person", + "val": 3 + }, + { + "id": "associationdublocquebecoisdehullaylmer", + "name": "Association du Bloc Qu\u00e9b\u00e9cois de Hull--Aylmer", + "type": "Organization", + "val": 8 + }, + { + "id": "jacquestremblay", + "name": "Jacques Tremblay", + "type": "Person", + "val": 3 + }, + { + "id": "claudecarriere", + "name": "Claude Carriere", + "type": "Person", + "val": 3 + }, + { + "id": "claudedurand", + "name": "Claude Durand", + "type": "Person", + "val": 3 + }, + { + "id": "associationduparticonservateurrobervallacsaintjean", + "name": "Association du Parti conservateur Roberval--Lac-Saint-Jean", + "type": "Organization", + "val": 8 + }, + { + "id": "blocquebecoisderivieredunord", + "name": "Bloc Qu\u00e9b\u00e9cois de Rivi\u00e8re-du-Nord", + "type": "Organization", + "val": 8 + }, + { + "id": "alexandredesmarais", + "name": "Alexandre Desmarais", + "type": "Person", + "val": 3 + }, + { + "id": "nancontributionsof20orlesscontributionsde20oumoins", + "name": "Nan Contributions of $20 or Less/Contributions De 20 $ Ou Moins", + "type": "Person", + "val": 3 + }, + { + "id": "antoinedube", + "name": "Antoine Dub\u00e9", + "type": "Person", + "val": 3 + }, + { + "id": "yvanpatry", + "name": "Yvan Patry", + "type": "Person", + "val": 3 + }, + { + "id": "jeanphilippecote", + "name": "Jean-Philippe C\u00f4t\u00e9", + "type": "Person", + "val": 3 + }, + { + "id": "albertdemartin", + "name": "Albert De Martin", + "type": "Person", + "val": 3 + }, + { + "id": "healthcanadahc", + "name": "Health Canada (HC)", + "type": "Organization", + "val": 8 + }, + { + "id": "associationliberalefederaledesaintjean", + "name": "Association lib\u00e9rale f\u00e9d\u00e9rale de Saint-Jean", + "type": "Organization", + "val": 8 + }, + { + "id": "bernadetteclement", + "name": "Bernadette Clement", + "type": "Person", + "val": 3 + }, + { + "id": "bertrandmenard", + "name": "Bertrand M\u00e9nard", + "type": "Person", + "val": 3 + }, + { + "id": "tonywalsh", + "name": "Tony Walsh", + "type": "Person", + "val": 3 + }, + { + "id": "denistrudel", + "name": "Denis Trudel", + "type": "Person", + "val": 3 + }, + { + "id": "andreannecorriveau", + "name": "Andr\u00e9anne Corriveau", + "type": "Person", + "val": 3 + }, + { + "id": "jonquierefederalriding", + "name": "Jonqui\u00e8re - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "rivieredesmilleilesfederalliberalassociation", + "name": "Rivi\u00e8re-des-Mille-\u00celes Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "maximeblanchettejoncas", + "name": "Maxime Blanchette-Joncas", + "type": "Person", + "val": 3 + }, + { + "id": "michelgagnon", + "name": "Michel Gagnon", + "type": "Person", + "val": 3 + }, + { + "id": "villemarielesudouestiledessoeursfederalliberalassociation", + "name": "Ville-Marie--Le Sud-Ouest--\u00cele-des-Soeurs Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "bellechasselesetcheminslevisfederalliberalassociation", + "name": "Bellechasse--Les Etchemins--L\u00e9vis Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "michelboudrias", + "name": "Michel Boudrias", + "type": "Person", + "val": 3 + }, + { + "id": "heleneguillemette", + "name": "H\u00e9l\u00e8ne Guillemette", + "type": "Person", + "val": 3 + }, + { + "id": "louisgagnon", + "name": "Louis GAGNON", + "type": "Person", + "val": 3 + }, + { + "id": "carolinedesbiens", + "name": "Caroline Desbiens", + "type": "Person", + "val": 3 + }, + { + "id": "blocquebecoisdejoliette", + "name": "Bloc Qu\u00e9b\u00e9cois de Joliette", + "type": "Organization", + "val": 8 + }, + { + "id": "beausejourfederalliberalassociation", + "name": "Beaus\u00e9jour Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "isabellebergeron", + "name": "Isabelle BERGERON", + "type": "Person", + "val": 3 + }, + { + "id": "alexclark", + "name": "Alex CLARK", + "type": "Person", + "val": 3 + }, + { + "id": "gabrielstemarie", + "name": "Gabriel Ste-Marie", + "type": "Person", + "val": 3 + }, + { + "id": "yvessamson", + "name": "Yves Samson", + "type": "Person", + "val": 3 + }, + { + "id": "corporationevenementsdhiverdequebec", + "name": "Corporation \u00e9v\u00e9nements d'hiver de Qu\u00e9bec", + "type": "Organization", + "val": 8 + }, + { + "id": "marjolaindufour", + "name": "Marjolain Dufour", + "type": "Person", + "val": 3 + }, + { + "id": "gilleslalonde", + "name": "Gilles Lalonde", + "type": "Person", + "val": 3 + }, + { + "id": "marceldesrosiers", + "name": "Marcel Desrosiers", + "type": "Person", + "val": 3 + }, + { + "id": "jeanneleberfederalriding", + "name": "Jeanne-Le Ber - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "name": "Canadian Delegation to the Organization for Security and Co-operation in Europe Parliamentary Assembly", + "type": "Organization", + "val": 8 + }, + { + "id": "sainthyacinthebagotfederalriding", + "name": "Saint-Hyacinthe\u2014Bagot - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "rodrigomichea", + "name": "Rodrigo Michea", + "type": "Person", + "val": 3 + }, + { + "id": "yvonfaille", + "name": "Yvon Faille", + "type": "Person", + "val": 3 + }, + { + "id": "portneuffederalriding", + "name": "Portneuf - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "davebatters", + "name": "Dave Batters", + "type": "Person", + "val": 3 + }, + { + "id": "montarvillefederalriding", + "name": "Montarville - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "pierrebreton", + "name": "Pierre Breton", + "type": "Person", + "val": 3 + }, + { + "id": "associationduparticonservateurportneufjacquescartier", + "name": "Association du Parti conservateur Portneuf--Jacques-Cartier", + "type": "Organization", + "val": 8 + }, + { + "id": "associationliberalefederaledesaintmauricechamplain", + "name": "Association lib\u00e9rale f\u00e9d\u00e9rale de Saint-Maurice--Champlain", + "type": "Organization", + "val": 8 + }, + { + "id": "ghislaindionne", + "name": "Ghislain Dionne", + "type": "Person", + "val": 3 + }, + { + "id": "michaelstephenson", + "name": "Michael Stephenson", + "type": "Person", + "val": 3 + }, + { + "id": "heleneduceppe", + "name": "H\u00e9l\u00e8ne Duceppe", + "type": "Person", + "val": 3 + }, + { + "id": "jasonreid", + "name": "Jason Reid", + "type": "Person", + "val": 3 + }, + { + "id": "sauliezajdel", + "name": "Saulie Zajdel", + "type": "Person", + "val": 3 + }, + { + "id": "christopermartinchan", + "name": "Christoper Martin-Chan", + "type": "Person", + "val": 3 + }, + { + "id": "nathaliepardiac", + "name": "Nathalie Pardiac", + "type": "Person", + "val": 3 + }, + { + "id": "andreleduc", + "name": "Andr\u00e9 Leduc", + "type": "Person", + "val": 3 + }, + { + "id": "michelgouault", + "name": "Michel Gouault", + "type": "Person", + "val": 3 + }, + { + "id": "jacquesplante", + "name": "Jacques Plante", + "type": "Person", + "val": 3 + }, + { + "id": "daniellaurendeau", + "name": "Daniel Laurendeau", + "type": "Person", + "val": 3 + }, + { + "id": "patrickboulanger", + "name": "Patrick Boulanger", + "type": "Person", + "val": 3 + }, + { + "id": "gordbrown", + "name": "Gord Brown", + "type": "Person", + "val": 3 + }, + { + "id": "associationliberalefederaledelouissaintlaurent", + "name": "Association lib\u00e9rale f\u00e9d\u00e9rale de Louis-Saint-Laurent", + "type": "Organization", + "val": 8 + }, + { + "id": "levisbellechassefederalliberalassociation", + "name": "L\u00e9vis--Bellechasse Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "charlesbourghautesaintcharlesconservativeassociation", + "name": "Charlesbourg--Haute-Saint-Charles Conservative Association", + "type": "Organization", + "val": 8 + }, + { + "id": "serrestoundrainc", + "name": "Serres Toundra inc.", + "type": "Organization", + "val": 8 + }, + { + "id": "francoisplourde", + "name": "Fran\u00e7ois Plourde", + "type": "Person", + "val": 3 + }, + { + "id": "ajaxpickeringfederalliberalassociation", + "name": "Ajax--Pickering Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "annamiepaul", + "name": "Annamie Paul", + "type": "Person", + "val": 3 + }, + { + "id": "pierrerivard", + "name": "Pierre Rivard", + "type": "Person", + "val": 3 + }, + { + "id": "associationduparticonservateurdebeauce", + "name": "Association du Parti conservateur de Beauce", + "type": "Organization", + "val": 8 + }, + { + "id": "beauharnoissalaberryfederalliberalassociation", + "name": "Beauharnois--Salaberry Federal Liberal Association", + "type": "Organization", + "val": 8 + }, + { + "id": "blocquebecoisabitibitemiscamingue", + "name": "Bloc Qu\u00e9b\u00e9cois Abitibi--T\u00e9miscamingue", + "type": "Organization", + "val": 8 + }, + { + "id": "gratiennolet", + "name": "Gratien Nolet", + "type": "Person", + "val": 3 + }, + { + "id": "andrelevesque", + "name": "Andre Levesque", + "type": "Person", + "val": 3 + }, + { + "id": "sergecote", + "name": "Serge C\u00f4t\u00e9", + "type": "Person", + "val": 3 + }, + { + "id": "davidhenderson", + "name": "David Henderson", + "type": "Person", + "val": 3 + }, + { + "id": "marceltheberge", + "name": "Marcel Theberge", + "type": "Person", + "val": 3 + }, + { + "id": "centralnovagreenpartyassociation", + "name": "Central Nova Green Party Association", + "type": "Organization", + "val": 8 + }, + { + "id": "jacquesleonard", + "name": "Jacques L\u00e9onard", + "type": "Person", + "val": 3 + }, + { + "id": "glennakamura", + "name": "Glen Nakamura", + "type": "Person", + "val": 3 + }, + { + "id": "jeanneleberconservativepartyridingassociation", + "name": "Jeanne-Le Ber Conservative Party Riding Association", + "type": "Organization", + "val": 8 + }, + { + "id": "joshbennett", + "name": "Josh BENNETT", + "type": "Person", + "val": 3 + }, + { + "id": "blocquebecois_FUNDS_agg", + "name": "Misc Donors (128)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "michelgauthier_FUNDS_agg", + "name": "Misc Donors (3)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "davidpage_FUNDS_agg", + "name": "Misc Donors (1)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "kristinamichaud_FUNDS_agg", + "name": "Misc Donors (1)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "sylvieberube_FUNDS_agg", + "name": "Misc Donors (1)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "stephanebergeron_FUNDS_agg", + "name": "Misc Donors (13)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "jeanparadis_FUNDS_agg", + "name": "Misc Donors (2)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "yvanpatry_FUNDS_agg", + "name": "Misc Donors (5)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "martinecarriere_FUNDS_agg", + "name": "Misc Donors (9)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "luctheriault_FUNDS_agg", + "name": "Misc Donors (10)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "marilenegill_FUNDS_agg", + "name": "Misc Donors (1)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "rhealfortin_FUNDS_agg", + "name": "Misc Donors (2)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "maximeblanchettejoncas_FUNDS_agg", + "name": "Misc Donors (2)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "alexisbrunelleduceppe_FUNDS_agg", + "name": "Misc Donors (1)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "michelboudrias_FUNDS_agg", + "name": "Misc Donors (6)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "johanneregimbald_FUNDS_agg", + "name": "Misc Donors (2)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "philippegagnon_FUNDS_agg", + "name": "Misc Donors (4)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "michelguimond_FUNDS_agg", + "name": "Misc Donors (4)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "mariamourani_FUNDS_agg", + "name": "Misc Donors (19)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "denisgauvreau_FUNDS_agg", + "name": "Misc Donors (58)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "alaintherrien_FUNDS_agg", + "name": "Misc Donors (1)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "francinelalonde_FUNDS_agg", + "name": "Misc Donors (8)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "reneroy_FUNDS_agg", + "name": "Misc Donors (1)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "meilifaille_FUNDS_agg", + "name": "Misc Donors (45)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "yvonlevesque_FUNDS_agg", + "name": "Misc Donors (14)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "pierrebreton_FUNDS_agg", + "name": "Misc Donors (29)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "andrebellavance_FUNDS_agg", + "name": "Misc Donors (7)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "mariobeaulieu_FUNDS_agg", + "name": "Misc Donors (1)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "dianebourgeois_FUNDS_agg", + "name": "Misc Donors (3)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "christianouellet_FUNDS_agg", + "name": "Misc Donors (4)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "richardnadeau_FUNDS_agg", + "name": "Misc Donors (2)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "jeanfrancoisfortin_FUNDS_agg", + "name": "Misc Donors (2)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "claudedebellefeuille_FUNDS_agg", + "name": "Misc Donors (1)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "christianegagnon_FUNDS_agg", + "name": "Misc Donors (1)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "gerardasselin_FUNDS_agg", + "name": "Misc Donors (7)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "gillesaperron_FUNDS_agg", + "name": "Misc Donors (6)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "sergemenard_FUNDS_agg", + "name": "Misc Donors (7)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "carolinedesbiens_FUNDS_agg", + "name": "Misc Donors (2)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "marcellussier_FUNDS_agg", + "name": "Misc Donors (3)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "jeanfrancoisbarbe_FUNDS_agg", + "name": "Misc Donors (1)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "yvesfrancoisblanchet_FUNDS_agg", + "name": "Misc Donors (1)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "simonpierresavardtremblay_FUNDS_agg", + "name": "Misc Donors (2)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "louisgagnon_FUNDS_agg", + "name": "Misc Donors (2)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "danielpaille_FUNDS_agg", + "name": "Misc Donors (1)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "xavierbarsalouduval_FUNDS_agg", + "name": "Misc Donors (1)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "paulebrunelle", + "name": "Paule Brunelle", + "type": "Person", + "val": 3 + }, + { + "id": "odinadesrochers", + "name": "Odina Desrochers", + "type": "Person", + "val": 3 + }, + { + "id": "sergecardin", + "name": "Serge Cardin", + "type": "Person", + "val": 3 + }, + { + "id": "foreignaffairstradeanddevelopmentcanada", + "name": "Foreign Affairs, Trade and Development Canada", + "type": "Organization", + "val": 8 + }, + { + "id": "memberofparliament", + "name": "Member of Parliament", + "type": "Organization", + "val": 8 + }, + { + "id": "nathaliesinclairdesgagne", + "name": "Nathalie Sinclair-Desgagn\u00e9", + "type": "Person", + "val": 3 + }, + { + "id": "argenteuilpapineaumirabelfederalriding", + "name": "Argenteuil\u2014Papineau\u2014Mirabel - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "membersofthehouseofparliament", + "name": "Members of the House of Parliament", + "type": "Organization", + "val": 8 + }, + { + "id": "canadacouncilforthearts", + "name": "Canada Council for the Arts", + "type": "Organization", + "val": 8 + }, + { + "id": "canadiandairycommissioncdc", + "name": "Canadian Dairy Commission (CDC)", + "type": "Organization", + "val": 8 + }, + { + "id": "doorspec", + "name": "Doorspec", + "type": "Organization", + "val": 8 + }, + { + "id": "jeandenisgaron", + "name": "Jean-Denis Garon", + "type": "Person", + "val": 3 + }, + { + "id": "charlesbourghautesaintcharlesfederalriding", + "name": "Charlesbourg\u2014Haute-Saint-Charles - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "mirabelfederalriding", + "name": "Mirabel - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "lotbinierechutesdelachaudierefederalriding", + "name": "Lotbini\u00e8re\u2014Chutes-de-la-Chaudi\u00e8re - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "comptonstansteadfederalriding", + "name": "Compton\u2014Stanstead - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "levisbellechassefederalriding", + "name": "L\u00e9vis\u2014Bellechasse - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "meganticlerablefederalriding", + "name": "M\u00e9gantic\u2014L'\u00c9rable - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "chicoutimilefjordfederalriding", + "name": "Chicoutimi\u2014Le Fjord - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "chateauguaysaintconstantfederalriding", + "name": "Ch\u00e2teauguay\u2014Saint-Constant - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "publicaccountscommittee", + "name": "Public Accounts - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "nationalopticsinstituteino", + "name": "National Optics Institute (INO)", + "type": "Organization", + "val": 8 + }, + { + "id": "ghislainfournier", + "name": "Ghislain Fournier", + "type": "Person", + "val": 3 + }, + { + "id": "federalgovernmentofcanada", + "name": "Federal Government of Canada", + "type": "Organization", + "val": 8 + }, + { + "id": "canadarevenueagencycra", + "name": "Canada Revenue Agency (CRA)", + "type": "Organization", + "val": 8 + }, + { + "id": "scrutinyofregulationscommittee", + "name": "Scrutiny of Regulations - Committee", + "type": "Organization", + "val": 8 + }, + { + "id": "portneufjacquescartierfederalriding", + "name": "Portneuf\u2014Jacques-Cartier - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "marctessier", + "name": "Marc Tessier", + "type": "Person", + "val": 3 + }, + { + "id": "richardmarceau", + "name": "Richard Marceau", + "type": "Person", + "val": 3 + }, + { + "id": "saintmauricechamplainfederalriding", + "name": "Saint-Maurice\u2014Champlain - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "sherbrookefederalriding", + "name": "Sherbrooke - Federal Riding", + "type": "Organization", + "val": 8 + }, + { + "id": "francoisboileau", + "name": "Francois Boileau", + "type": "Person", + "val": 3 + }, + { + "id": "federalgovernmentofcanada_MEMBERSHIP_agg", + "name": "Other Members (476)", + "type": "MGPerson", + "val": 3 + }, + { + "id": "850034995100751970_agg", + "name": "Other Parties (8)", + "type": "Person", + "val": 3 + }, + { + "id": "-4795702613996934394_agg", + "name": "Other Parties (7)", + "type": "Person", + "val": 3 + }, + { + "id": "1943127127267296056_agg", + "name": "Other Parties (20)", + "type": "Person", + "val": 3 + }, + { + "id": "5935051427687482356_agg", + "name": "Other Parties (8)", + "type": "Person", + "val": 3 + }, + { + "id": "5861849729916613649_agg", + "name": "Other Orgs (1489)", + "type": "Organization", + "val": 8 + }, + { + "id": "8445634091922891947_agg", + "name": "Other Parties (8)", + "type": "Person", + "val": 3 + }, + { + "id": "118599530576325986_agg", + "name": "Other Parties (6)", + "type": "Person", + "val": 3 + }, + { + "id": "8393289518414020481_agg", + "name": "Other Parties (9)", + "type": "Person", + "val": 3 + }, + { + "id": "-3252578206501676884_agg", + "name": "Other Orgs (428)", + "type": "Organization", + "val": 8 + }, + { + "id": "218235677312250090_agg", + "name": "Other Orgs (8)", + "type": "Organization", + "val": 8 + }, + { + "id": "-2190736592288561385_agg", + "name": "Other Orgs (6)", + "type": "Organization", + "val": 8 + } + ], + "links": [ + { + "source": "ericrancourt", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "ericrancourt", + "target": "newdemocraticparty", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1130 + }, + { + "source": "pierregrenier", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "pierregrenier", + "target": "rosemontlapetitepatriefederalndpridingassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 530 + }, + { + "source": "pierregrenier", + "target": "newdemocraticparty", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2080 + }, + { + "source": "louisepoirier", + "target": "glennakamura", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "louisepoirier", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 650 + }, + { + "source": "louisepoirier", + "target": "canadianradiotelevisionandtelecommunicationscommissioncrtc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinlapointe", + "target": "michaelignatieff", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "martinlapointe", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 600 + }, + { + "source": "martinlapointe", + "target": "associationduparticonservateurlauriersaintemarie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 700 + }, + { + "source": "industryandtechnologycommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "industryandtechnologycommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1300 + }, + { + "source": "sebastienlemire", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "abitibitemiscaminguefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "abitibitemiscaminguefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "sebastienlemire", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5000 + }, + { + "source": "sebastienlemire", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "industryandtechnologycommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "sebastienlemire", + "target": "industryandtechnologycommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastienlemire", + "target": "industryandtechnologycommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvainlefebvre", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "sylvainlefebvre", + "target": "associationliberalefederaledechamblyborduas", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 877 + }, + { + "source": "sylvainlefebvre", + "target": "associationduparticonservateurlauriersaintemarie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 700 + }, + { + "source": "laprairiefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "laprairiefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "subcommitteeonprivatemembersbusinesscommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "subcommitteeonprivatemembersbusinesscommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nationaldefencecommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nationaldefencecommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "saintjeanfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "saintjeanfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "paulgauthier", + "target": "avignonlamitismatanematapediafederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "paulgauthier", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "paulgauthier", + "target": "claudedurand", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "paulgauthier", + "target": "newdemocraticparty", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "paulgauthier", + "target": "torontodanforthfederalndpridingassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "robervallacsaintjeanfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "robervallacsaintjeanfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "davidpage", + "target": "independent", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "davidpage", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "davidpage", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1625 + }, + { + "source": "davidpage", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1098 + }, + { + "source": "davidpage", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2000 + }, + { + "source": "davidpage", + "target": "associationdublocquebecoislaurentideslabelle", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "michelvincent", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 750 + }, + { + "source": "michelvincent", + "target": "agricultureandagrifoodcanadaaafc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1625 + }, + { + "source": "julievignola", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "beauportlimoiloufederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "beauportlimoiloufederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "healthcanadahc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "healthcanadahc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "julievignola", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5000 + }, + { + "source": "julievignola", + "target": "governmentoperationsandestimatescommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "julievignola", + "target": "governmentoperationsandestimatescommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "julievignola", + "target": "governmentoperationsandestimatescommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "patrickstjacques", + "target": "associationdublocquebecoisdecharlesbourghautesaintcharles", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "patrickstjacques", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "patrickstjacques", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "naturalresourcescommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "naturalresourcescommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "avignonlamitismatanematapediafederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "avignonlamitismatanematapediafederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "fisheriesandoceanscommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "fisheriesandoceanscommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "beauportcotedebeaupreiledorleanscharlevoixfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "beauportcotedebeaupreiledorleanscharlevoixfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rogerarbour", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1039 + }, + { + "source": "rogerarbour", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "rogerarbour", + "target": "beacheseastyorkfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 838 + }, + { + "source": "davidrompre", + "target": "christopermartinchan", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "davidrompre", + "target": "corporationevenementsdhiverdequebec", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "davidrompre", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 710 + }, + { + "source": "canadianheritagepch", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "canadianheritagecommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "canadianheritagecommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alainbouchard", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "alainbouchard", + "target": "vaudreuilsoulangesconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "davidclark", + "target": "alexclark", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1400 + }, + { + "source": "davidclark", + "target": "keithashfield", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "davidclark", + "target": "gailshea", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "davidclark", + "target": "dongillis", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "davidclark", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "davidclark", + "target": "davebatters", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "davidclark", + "target": "conservativepartyofcanadafrederictonelectoraldistrictassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "philippeclair", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "philippeclair", + "target": "montarvillefederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1575 + }, + { + "source": "scienceandresearchcommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "scienceandresearchcommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "afghanistancommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "afghanistancommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lacsaintjeanfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lacsaintjeanfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucienduval", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "lucienduval", + "target": "blocquebecoispierreboucherlespatriotesvercheres", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1995 + }, + { + "source": "servicecanadaservcan", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pascalkarelmatte", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1625 + }, + { + "source": "pascalkarelmatte", + "target": "sylvieberube", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1600 + }, + { + "source": "christinelegault", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1625 + }, + { + "source": "christinelegault", + "target": "sylvieberube", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1600 + }, + { + "source": "marcbernier", + "target": "bombardiertransportationcanadaparticipationinc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marcbernier", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "marcbernier", + "target": "bombardiertransportationcapitalcanadainc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marcbernier", + "target": "bombardiertransportationcanadainc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marcbernier", + "target": "sylvieberube", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1600 + }, + { + "source": "juliehebert", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "juliehebert", + "target": "mauricebrossard", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "danybergeron", + "target": "associationduparticonservateurterrebonneblainville", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "danybergeron", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 735 + }, + { + "source": "luclacasse", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "luclacasse", + "target": "associationdublocquebecoislaurentideslabelle", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3000 + }, + { + "source": "louismartin", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "louismartin", + "target": "newdemocraticparty", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "louisbernard", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "louisbernard", + "target": "albertdemartin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "foreignaffairsandinternationaldevelopmentcommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "foreignaffairsandinternationaldevelopmentcommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "canadachinarelationscommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "canadachinarelationscommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "citizenshipandimmigrationcommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "citizenshipandimmigrationcommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "subcommitteeoninternationalhumanrightscommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "subcommitteeoninternationalhumanrightscommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marcbouchard", + "target": "blocquebecoisdelaval", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 900 + }, + { + "source": "marcbouchard", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "suzannelabbe", + "target": "rivieredesmilleilesfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "suzannelabbe", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "internationaltradecommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "internationaltradecommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "benoitsavard", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1625 + }, + { + "source": "benoitsavard", + "target": "simonpierresavardtremblay", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3250 + }, + { + "source": "employmentandsocialdevelopmentcanadaesdc", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "humanresourcesskillsandsocialdevelopmentandthestatusofpersonswithdisabilitiescommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "humanresourcesskillsandsocialdevelopmentandthestatusofpersonswithdisabilitiescommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "theresedeblainvillefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "theresedeblainvillefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2000 + }, + { + "source": "louisechabot", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "employmentandsocialdevelopmentcanadaesdc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "employmentandsocialdevelopmentcanadaesdc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "louisechabot", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2000 + }, + { + "source": "louisechabot", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "theresedeblainvillefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "theresedeblainvillefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "farmproductscouncilofcanadafpcc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "farmproductscouncilofcanadafpcc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "humanresourcesskillsandsocialdevelopmentandthestatusofpersonswithdisabilitiescommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "louisechabot", + "target": "humanresourcesskillsandsocialdevelopmentandthestatusofpersonswithdisabilitiescommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisechabot", + "target": "humanresourcesskillsandsocialdevelopmentandthestatusofpersonswithdisabilitiescommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesleduc", + "target": "transcontinentalinc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesleduc", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "michelcormier", + "target": "justintrudeau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "michelcormier", + "target": "leadersdebatescommission", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelcormier", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "michelcormier", + "target": "stephanedion", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 966 + }, + { + "source": "michelcormier", + "target": "beausejourfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "michelcormier", + "target": "madawaskarestigoucheconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "michelcormier", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "michelletourneau", + "target": "associationliberalefederaledelouissaintlaurent", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 808 + }, + { + "source": "michelletourneau", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "raymondbrodeur", + "target": "faizarguibakalogerakis", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 750 + }, + { + "source": "raymondbrodeur", + "target": "jicilauzon", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 750 + }, + { + "source": "raymondbrodeur", + "target": "villemarielesudouestiledessoeursfederalgreenpartyassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "raymondbrodeur", + "target": "greenpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2600 + }, + { + "source": "raymondbrodeur", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3225 + }, + { + "source": "statusofwomencommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "statusofwomencommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "robertsavoie", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "robertsavoie", + "target": "associationnpdmarcaurelefortin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "robertsavoie", + "target": "conservativepartyofcanadafrederictonelectoraldistrictassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 900 + }, + { + "source": "robertsavoie", + "target": "npdmarcaurelefortin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 544 + }, + { + "source": "robertsavoie", + "target": "newdemocraticparty", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4960 + }, + { + "source": "andreannelarouche", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3025 + }, + { + "source": "andreannelarouche", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "andreannelarouche", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5000 + }, + { + "source": "andreannelarouche", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "sheffordfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "sheffordfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "statusofwomencommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "andreannelarouche", + "target": "statusofwomencommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannelarouche", + "target": "statusofwomencommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pierrerichard", + "target": "associationliberalefederalededrummond", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "pierrerichard", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "pierrerichard", + "target": "newdemocraticparty", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1125 + }, + { + "source": "jeanluclandry", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "jeanluclandry", + "target": "associationdublocquebecoisdargenteuilpapineaumirabel", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "pierrepare", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "pierrepare", + "target": "associationliberalefederaledesaintjean", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2406 + }, + { + "source": "reneasselin", + "target": "ndpridingassociationoflauriersaintemarie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "reneasselin", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "claudedebellefeuille", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudedebellefeuille", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1200 + }, + { + "source": "claudedebellefeuille", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudedebellefeuille", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudedebellefeuille", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudedebellefeuille", + "target": "claudedebellefeuille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4700 + }, + { + "source": "claudedebellefeuille", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudedebellefeuille", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudedebellefeuille", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudedebellefeuille", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudedebellefeuille", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudedebellefeuille", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudedebellefeuille", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudedebellefeuille", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudedebellefeuille", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudedebellefeuille", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudedebellefeuille", + "target": "salaberrysuroitfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudedebellefeuille", + "target": "salaberrysuroitfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudedebellefeuille", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudedebellefeuille", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudedebellefeuille", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudedebellefeuille", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "florencebeaudet", + "target": "simonpierresavardtremblay", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1650 + }, + { + "source": "florencebeaudet", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2125 + }, + { + "source": "simonjacques", + "target": "airbusdefencespacecanadainc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonjacques", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "stephantremblay", + "target": "lacsaintjeansaguenayfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephantremblay", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "globalaffairscanadagac", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "veteransaffairscommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "veteransaffairscommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "erictremblay", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "erictremblay", + "target": "nationaldefencednd", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pierregagnon", + "target": "lacsaintjeanfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "pierregagnon", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "pierregagnon", + "target": "bourassafederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "onilarcand", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "onilarcand", + "target": "blocquebecoisabitibitemiscamingue", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4297 + }, + { + "source": "catherinefournier", + "target": "montarvillefederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "catherinefournier", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "catherinefournier", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2002 + }, + { + "source": "clauderochon", + "target": "associationdecirconscriptiondublocquebecoisdegatineau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "clauderochon", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2915 + }, + { + "source": "beauportlimoiloufederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "beauportlimoiloufederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "ericdube", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "ericdube", + "target": "denislebel", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "ericdube", + "target": "serrestoundrainc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "publicsafetyandnationalsecuritycommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "publicsafetyandnationalsecuritycommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "bertrandjodoin", + "target": "blocquebecoissainthyacinthebagot", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "bertrandjodoin", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "bertrandjodoin", + "target": "blocquebecoisdesainthyacinthebagot", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "gillesdonaldson", + "target": "associationdublocquebecoisdelacirconscriptiondetroisrivieres", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "gillesdonaldson", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "jeanrobitaille", + "target": "helenechalifourscherrer", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "jeanrobitaille", + "target": "federalliberalassociationofbrossardlaprairie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 800 + }, + { + "source": "jeanrobitaille", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "pierrelapointe", + "target": "michaelignatieff", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "pierrelapointe", + "target": "stevenblaney", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "pierrelapointe", + "target": "yolainesavignac", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "pierrelapointe", + "target": "johanneregimbald", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "pierrelapointe", + "target": "associationliberalefederaledechamblyborduas", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 877 + }, + { + "source": "pierrelapointe", + "target": "fpinnovations", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pierrelapointe", + "target": "justintrudeau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "pierrelapointe", + "target": "michaelbrewster", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "pierrelapointe", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2000 + }, + { + "source": "pierrelapointe", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2064 + }, + { + "source": "pierrelapointe", + "target": "associationliberalefederaledepapineau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1126 + }, + { + "source": "pierrelapointe", + "target": "villemarielesudouestiledessoeursfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2525 + }, + { + "source": "danielbeaulieu", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "danielbeaulieu", + "target": "associationliberalefederaledemontmagnylisletkamouraskariviereduloup", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "danielbeaulieu", + "target": "rivieredesmilleilesfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 700 + }, + { + "source": "denislafontaine", + "target": "robertgladu", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "denislafontaine", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "jeanmarcelduval", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3575 + }, + { + "source": "jeanmarcelduval", + "target": "blocquebecoispierreboucherlespatriotesvercheres", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1995 + }, + { + "source": "levisetchutesdelachaudierefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "levisetchutesdelachaudierefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denisbergeron", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "denisbergeron", + "target": "martincauchon", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "denisbergeron", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5640 + }, + { + "source": "agricultureandagrifoodcommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "agricultureandagrifoodcommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "berthiermaskinongefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "berthiermaskinongefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinperreault", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1200 + }, + { + "source": "martinperreault", + "target": "martincauchon", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1200 + }, + { + "source": "martinperreault", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3875 + }, + { + "source": "medicalassistanceindyingcommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "medicalassistanceindyingcommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andrebreton", + "target": "beauharnoissalaberryfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "andrebreton", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "andrebreton", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5250 + }, + { + "source": "terrebonnefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "terrebonnefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mathieulebel", + "target": "michelboudrias", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1600 + }, + { + "source": "mathieulebel", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 600 + }, + { + "source": "mathieulebel", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 900 + }, + { + "source": "mathieulebel", + "target": "fisheriesandoceanscanadadfo", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mathieulebel", + "target": "michaelstephenson", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "laurencejuneau", + "target": "marcmaltais", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 600 + }, + { + "source": "laurencejuneau", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "laurencejuneau", + "target": "martineouellet", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "indigenousandnorthernaffairscommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "indigenousandnorthernaffairscommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "justiceandhumanrightscommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "justiceandhumanrightscommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rivieredunordfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rivieredunordfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pierrekarlpeladeau", + "target": "perlebouchard", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "pierrekarlpeladeau", + "target": "gestionmtrhpinc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pierrekarlpeladeau", + "target": "imprimeriequebecormedia2015inc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pierrekarlpeladeau", + "target": "quebecormediainc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pierrekarlpeladeau", + "target": "reseauquebecormediainc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pierrekarlpeladeau", + "target": "vaudreuilsoulangesconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "pierrekarlpeladeau", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7850 + }, + { + "source": "pierrekarlpeladeau", + "target": "rhealfortin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3250 + }, + { + "source": "financecommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "financecommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "joliettefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "joliettefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "oliviergendreau", + "target": "yvesfrancoisblanchet", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1600 + }, + { + "source": "oliviergendreau", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3225 + }, + { + "source": "environmentandsustainabledevelopmentcommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "environmentandsustainabledevelopmentcommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yolandebrunelle", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3125 + }, + { + "source": "yolandebrunelle", + "target": "alexisbrunelleduceppe", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3100 + }, + { + "source": "gilbertarcand", + "target": "blocquebecoisabitibitemiscamingue", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "gilbertarcand", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "francoisgendron", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "francoisgendron", + "target": "marclemay", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1300 + }, + { + "source": "francoisgendron", + "target": "blocquebecoisabitibitemiscamingue", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1060 + }, + { + "source": "micheldicaireacosta", + "target": "simonmarcil", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "micheldicaireacosta", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2700 + }, + { + "source": "robertmailhot", + "target": "alaintherrien", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 750 + }, + { + "source": "robertmailhot", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "sabingaudreault", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "sabingaudreault", + "target": "alexisbrunelleduceppe", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "andredesjardins", + "target": "rivieredesmilleilesconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "andredesjardins", + "target": "centralnovagreenpartyassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "andredesjardins", + "target": "associationduparticonservateurlauriersaintemarie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 850 + }, + { + "source": "andredesjardins", + "target": "associationliberalefederaledechamblyborduas", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 877 + }, + { + "source": "andredesjardins", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "andredesjardins", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1962 + }, + { + "source": "pierrepilon", + "target": "johanneregimbald", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "pierrepilon", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "philipperuel", + "target": "levisbellechassefederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "philipperuel", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3500 + }, + { + "source": "philipperuel", + "target": "bellechasselesetcheminslevisfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1439 + }, + { + "source": "sebastienpelaez", + "target": "michelboudrias", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1600 + }, + { + "source": "sebastienpelaez", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "lucbachand", + "target": "associationliberalefederaledechamblyborduas", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "lucbachand", + "target": "justintrudeau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1200 + }, + { + "source": "lucbachand", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "lucbachand", + "target": "blocquebecoishochelaga", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "lucbachand", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7014 + }, + { + "source": "rogerfrappier", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "rogerfrappier", + "target": "vaudreuilsoulangesconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "marieclaudecarriere", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 750 + }, + { + "source": "marieclaudecarriere", + "target": "associationdublocquebecoisdejeanneleber", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1850 + }, + { + "source": "foreignaffairsandinternationaltradecanadadfaitc", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "joseehamel", + "target": "richmondarthabaskaconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "joseehamel", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "luclambert", + "target": "lucienrichard", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "luclambert", + "target": "guyandre", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "luclambert", + "target": "associationliberalefederaledesaintbrunosainthubert", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "luclambert", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4600 + }, + { + "source": "paulineguertinduval", + "target": "blocquebecoispierreboucherlespatriotesvercheres", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 995 + }, + { + "source": "paulineguertinduval", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "rivieredesmilleilesfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rivieredesmilleilesfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pierreboucher", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "pierreboucher", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "yvanloubier", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvanloubier", + "target": "sainthyacinthebagotfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "abitibitemiscaminguefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "abitibitemiscaminguefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "christinenormandin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5000 + }, + { + "source": "christinenormandin", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1600 + }, + { + "source": "christinenormandin", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "saintjeanfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "saintjeanfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "nationaldefencecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "christinenormandin", + "target": "nationaldefencecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christinenormandin", + "target": "nationaldefencecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "avignonlamitismatanematapediafederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "avignonlamitismatanematapediafederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1205 + }, + { + "source": "kristinamichaud", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "publicsafetyandnationalsecuritycommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "kristinamichaud", + "target": "publicsafetyandnationalsecuritycommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "kristinamichaud", + "target": "publicsafetyandnationalsecuritycommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christiansimard", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christiansimard", + "target": "beauportlimoiloufederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christianpicard", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christianpicard", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christianpaquin", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "christianpaquin", + "target": "andrebellavance", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "christianpaquin", + "target": "blocquebecoisrichmondarthabaska", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1495 + }, + { + "source": "membersofthehouseofcommons", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "moniqueguay", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "moniqueguay", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "moniqueguay", + "target": "rivieredunordfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "moniqueguay", + "target": "blocquebecoisderivieredunord", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3500 + }, + { + "source": "martinchampoux", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1625 + }, + { + "source": "martinchampoux", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "martinchampoux", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5000 + }, + { + "source": "martinchampoux", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "drummondfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "drummondfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "canadianheritagepch", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "canadianheritagepch", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "canadianheritagecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "martinchampoux", + "target": "canadianheritagecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinchampoux", + "target": "canadianheritagecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "procedureandhouseaffairscommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "procedureandhouseaffairscommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexandrabarsalouduval", + "target": "blocquebecoispierreboucherlespatriotesvercheres", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "alexandrabarsalouduval", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3160 + }, + { + "source": "ghislaineboucher", + "target": "hullaylmerfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "ghislaineboucher", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "reallapierre", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "reallapierre", + "target": "levisbellechassefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "guycote", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "guycote", + "target": "portneufjacquescartierfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeanyvesroy", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeanyvesroy", + "target": "hautegaspesielamitismatanematapediafederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeanyvesroy", + "target": "nationalopticsinstituteino", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "troisrivieresfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "troisrivieresfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "richardrainville", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3800 + }, + { + "source": "richardrainville", + "target": "associationblocquebecoisshefford", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1995 + }, + { + "source": "stephanebergeron", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "stephanebergeron", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "montarvillefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "montarvillefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "associationduparticonservateurlauriersaintemarie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "stephanebergeron", + "target": "associationdublocquebecoisverchereslespatriotes", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5615 + }, + { + "source": "stephanebergeron", + "target": "stephanebergeron", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 12859 + }, + { + "source": "stephanebergeron", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "stephanebergeron", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "canadachinarelationscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "stephanebergeron", + "target": "canadachinarelationscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "canadachinarelationscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "foreignaffairsandinternationaldevelopmentcommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "stephanebergeron", + "target": "foreignaffairsandinternationaldevelopmentcommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "stephanebergeron", + "target": "foreignaffairsandinternationaldevelopmentcommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesbellefeuille", + "target": "pauldewar", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 525 + }, + { + "source": "yvesbellefeuille", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3045 + }, + { + "source": "yvesbellefeuille", + "target": "newdemocraticparty", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2195 + }, + { + "source": "montcalmfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "montcalmfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinbeaudry", + "target": "blocquebecoisderepentigny", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 800 + }, + { + "source": "martinbeaudry", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2000 + }, + { + "source": "louisecharbonneau", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisecharbonneau", + "target": "troisrivieresfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisecharbonneau", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1300 + }, + { + "source": "yvesperron", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4535 + }, + { + "source": "yvesperron", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "berthiermaskinongefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "berthiermaskinongefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "agricultureandagrifoodcanadaaafc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "agricultureandagrifoodcanadaaafc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "yvesperron", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5000 + }, + { + "source": "yvesperron", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "agricultureandagrifoodcommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "yvesperron", + "target": "agricultureandagrifoodcommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesperron", + "target": "agricultureandagrifoodcommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yveslessard", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yveslessard", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yveslessard", + "target": "chamblyborduasfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yveslessard", + "target": "chamblyborduasfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yveslessard", + "target": "houseofcommonssenate", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yveslessard", + "target": "houseofcommonssenate", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yveslessard", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yveslessard", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "yveslessard", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yveslessard", + "target": "associationduparticonservateurlauriersaintemarie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 666 + }, + { + "source": "yveslessard", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yveslessard", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yveslessard", + "target": "associationdublocquebecoisdechamblyborduas", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7140 + }, + { + "source": "yveslessard", + "target": "yveslessard", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2000 + }, + { + "source": "claudebaril", + "target": "brunopiercourchesne", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "claudebaril", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "claudebaril", + "target": "saintmauricechamplainfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2000 + }, + { + "source": "danielpaille", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "danielpaille", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3400 + }, + { + "source": "danielpaille", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "danielpaille", + "target": "hochelagafederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "danielpaille", + "target": "hochelagafederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "danielpaille", + "target": "blocquebecoishochelaga", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "danielpaille", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "danielpaille", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "danielpaille", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "danielpaille", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "danielpaille", + "target": "danielpaille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1200 + }, + { + "source": "danielpaille", + "target": "andrebellavance", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 600 + }, + { + "source": "robertmainville", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 530 + }, + { + "source": "robertmainville", + "target": "outremontconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 700 + }, + { + "source": "robertmainville", + "target": "luciennerobillard", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "robertmainville", + "target": "federalliberalassociationofbrossardlaprairie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2000 + }, + { + "source": "robertmainville", + "target": "associationduparticonservateurlauriersaintemarie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 850 + }, + { + "source": "robertmainville", + "target": "associationduparticonservateurargenteuilpapineaumirabel", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 600 + }, + { + "source": "robertmainville", + "target": "jeanpierrebelisle", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "robertmainville", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3100 + }, + { + "source": "louisplamondon", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5720 + }, + { + "source": "louisplamondon", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "primeministersofficepmo", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "primeministersofficepmo", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "libraryofparliamentcommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "libraryofparliamentcommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "becancournicoletsaurelfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "becancournicoletsaurelfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisplamondon", + "target": "andrebellavance", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1200 + }, + { + "source": "louisplamondon", + "target": "blocquebecoisbecancournicoletsaurel", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5925 + }, + { + "source": "louisplamondon", + "target": "louisplamondon", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5500 + }, + { + "source": "louisplamondon", + "target": "blocquebecoisdebasrichelieunicoletbecancour", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 11900 + }, + { + "source": "sylvaingauthier", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 820 + }, + { + "source": "sylvaingauthier", + "target": "mariechantalesimard", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1200 + }, + { + "source": "simonmarcil", + "target": "mirabelfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonmarcil", + "target": "canadiandairycommissioncdc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonmarcil", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonmarcil", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3325 + }, + { + "source": "luctheriault", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "blocquebecoismontcalm", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "luctheriault", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "luctheriault", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5000 + }, + { + "source": "luctheriault", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "montcalmfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "montcalmfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "medicalassistanceindyingcommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "luctheriault", + "target": "medicalassistanceindyingcommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "medicalassistanceindyingcommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "healthcommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "luctheriault", + "target": "healthcommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "healthcommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "luctheriault", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctheriault", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "charleseugeneblier", + "target": "blocquebecoisdelongueuilpierreboucher", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "charleseugeneblier", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "chamblyborduasfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "madeleinearcand", + "target": "blocquebecoisabitibitemiscamingue", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "madeleinearcand", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 750 + }, + { + "source": "turankalfa", + "target": "ndpridingassociationofahuntsiccartierville", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "turankalfa", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2000 + }, + { + "source": "turankalfa", + "target": "mariamourani", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "houseofcommonssenate", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucienbeaupre", + "target": "blocquebecoisdebasrichelieunicoletbecancour", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "lucienbeaupre", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1600 + }, + { + "source": "marilenegill", + "target": "glennakamura", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "marilenegill", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 8135 + }, + { + "source": "marilenegill", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "manicouaganfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "manicouaganfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "martineouellet", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1525 + }, + { + "source": "marilenegill", + "target": "marilenegill", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 8000 + }, + { + "source": "marilenegill", + "target": "blocquebecoisdemanicouagan", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2025 + }, + { + "source": "marilenegill", + "target": "indigenousandnorthernaffairscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "marilenegill", + "target": "indigenousandnorthernaffairscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marilenegill", + "target": "indigenousandnorthernaffairscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "daveturcotte", + "target": "agricultureandagrifoodcanadaaafc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "daveturcotte", + "target": "blocquebecoisdesaintjean", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "daveturcotte", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "daveturcotte", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "claudebachand", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudebachand", + "target": "nationaldefencednd", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudebachand", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudebachand", + "target": "saintjeanfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudebachand", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvainboyer", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvainboyer", + "target": "associationdublocquebecoisdehullaylmer", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 900 + }, + { + "source": "sylvainboyer", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3475 + }, + { + "source": "vivianbarbot", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "vivianbarbot", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 900 + }, + { + "source": "vivianbarbot", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "vivianbarbot", + "target": "papineaufederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "vivianbarbot", + "target": "papineaufederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "guycormier", + "target": "stephanedion", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 966 + }, + { + "source": "guycormier", + "target": "madawaskarestigoucheconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 750 + }, + { + "source": "guycormier", + "target": "justintrudeau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "guycormier", + "target": "federationdescaissesdesjardinsduquebec", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "guycormier", + "target": "celinacaesarchvannes", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 700 + }, + { + "source": "guycormier", + "target": "bernardvalcourt", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 750 + }, + { + "source": "guycormier", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2651 + }, + { + "source": "guycormier", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "beloeilchamblyfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "beloeilchamblyfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "moniquepauze", + "target": "senateofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "moniquepauze", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "moniquepauze", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "moniquepauze", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "moniquepauze", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "moniquepauze", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "moniquepauze", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "moniquepauze", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "moniquepauze", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "moniquepauze", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "moniquepauze", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "moniquepauze", + "target": "repentignyfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "moniquepauze", + "target": "infrastructurecanadainfc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "moniquepauze", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "moniquepauze", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "moniquepauze", + "target": "marcmaltais", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "moniquepauze", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 9690 + }, + { + "source": "moniquepauze", + "target": "environmentandsustainabledevelopmentcommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "rogerclavet", + "target": "louishebertfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rogerclavet", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "francoisrebello", + "target": "doorspec", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "francoisrebello", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "francoisduquette", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "francoisduquette", + "target": "associationliberalefederaledoutremont", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "denisgauvreau", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "denisgauvreau", + "target": "liberalpartyofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denisgauvreau", + "target": "associationdublocquebecoisdechateauguaysaintconstant", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "johannedeschamps", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "johannedeschamps", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "johannedeschamps", + "target": "laurentideslabellefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "johannedeschamps", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "johannedeschamps", + "target": "associationdublocquebecoislaurentideslabelle", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3600 + }, + { + "source": "maximepeloquin", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 650 + }, + { + "source": "maximepeloquin", + "target": "blocquebecoisbecancournicoletsaurel", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "jacqueslarcheveque", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "jacqueslarcheveque", + "target": "blocquebecoisdelavallesiles", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 635 + }, + { + "source": "lauriersaintemariefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lauriersaintemariefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jamilcheaib", + "target": "lavalfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "jamilcheaib", + "target": "ahuntsicfederalndpridingassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1200 + }, + { + "source": "jamilcheaib", + "target": "agopevereklian", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "jamilcheaib", + "target": "lavallesilesfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "jamilcheaib", + "target": "ndpridingassociationofahuntsiccartierville", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "jamilcheaib", + "target": "lassociationdublocquebecoisdahuntsic", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "jamilcheaib", + "target": "pierrefondsdollardconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "jamilcheaib", + "target": "vimyfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4500 + }, + { + "source": "jamilcheaib", + "target": "mariamourani", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3200 + }, + { + "source": "jamilcheaib", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3400 + }, + { + "source": "jamilcheaib", + "target": "lavallesilesconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2320 + }, + { + "source": "denistrottier", + "target": "globalaffairscanadagac", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrottier", + "target": "transportcanadatc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrottier", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "denistrottier", + "target": "jasonreid", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "denistrottier", + "target": "carolelavallee", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "alaintherrien", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alaintherrien", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alaintherrien", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1625 + }, + { + "source": "alaintherrien", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alaintherrien", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alaintherrien", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alaintherrien", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alaintherrien", + "target": "laprairiefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alaintherrien", + "target": "laprairiefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andrerichard", + "target": "stephanedion", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 966 + }, + { + "source": "andrerichard", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 800 + }, + { + "source": "andrerichard", + "target": "beausejourfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2520 + }, + { + "source": "bromemissisquoifederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "bromemissisquoifederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "hochelagafederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "hochelagafederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "robertpare", + "target": "luciennerobillard", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "robertpare", + "target": "deniscoderre", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "robertpare", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "robertpare", + "target": "sylvielavallee", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "robertpare", + "target": "stephanedion", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 750 + }, + { + "source": "robertpare", + "target": "blocquebecoishochelaga", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "robertpare", + "target": "snclavalingroupinc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "robertpare", + "target": "patrickclune", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 950 + }, + { + "source": "robertpare", + "target": "justintrudeau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "robertpare", + "target": "danielpaille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "robertpare", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1250 + }, + { + "source": "canadagermanyinterparliamentarygroup", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "canadagermanyinterparliamentarygroup", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1225 + }, + { + "source": "mariehelenegaudreau", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "subcommitteeonprivatemembersbusinesscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "subcommitteeonprivatemembersbusinesscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "laurentideslabellefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "laurentideslabellefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "mariehelenegaudreau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 10000 + }, + { + "source": "mariehelenegaudreau", + "target": "procedureandhouseaffairscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "mariehelenegaudreau", + "target": "procedureandhouseaffairscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariehelenegaudreau", + "target": "procedureandhouseaffairscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeanparadis", + "target": "independent", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeanparadis", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "transportinfrastructureandcommunitiescommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "transportinfrastructureandcommunitiescommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marcellussier", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marcellussier", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "marcellussier", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marcellussier", + "target": "brossardlaprairiefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marcellussier", + "target": "brossardlaprairiefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinecarriere", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "martinecarriere", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "brianillick", + "target": "bourassafederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 972 + }, + { + "source": "brianillick", + "target": "williammorales", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "brianillick", + "target": "mariejoseetalbot", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "brianillick", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "brianillick", + "target": "associationliberalefederalededrummond", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 700 + }, + { + "source": "laurentideslabellefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "laurentideslabellefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "richmondarthabaskafederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "richmondarthabaskafederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximepaquincharbonneau", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3625 + }, + { + "source": "maximepaquincharbonneau", + "target": "associationdublocquebecoislaurentideslabelle", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2050 + }, + { + "source": "claudeguimond", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudeguimond", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "claudeguimond", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudeguimond", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudeguimond", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudeguimond", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudeguimond", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudeguimond", + "target": "rimouskineigettetemiscouatalesbasquesfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudeguimond", + "target": "rimouskineigettetemiscouatalesbasquesfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudeguimond", + "target": "danielpaille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "claudeguimond", + "target": "blocquebecoisrimouskineigettetemiscouatalesbasques", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "claudeguimond", + "target": "claudeguimond", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1750 + }, + { + "source": "saintlambertfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "saintlambertfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "johannelang", + "target": "blocquebecoisrobervallacsaintjean", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2706 + }, + { + "source": "johannelang", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2000 + }, + { + "source": "gatineaufederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gatineaufederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rochouellet", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "rochouellet", + "target": "martineouellet", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "saadtohme", + "target": "lavalfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "saadtohme", + "target": "mariamourani", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "saadtohme", + "target": "lassociationdublocquebecoisdahuntsic", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "saadtohme", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2000 + }, + { + "source": "rogerpomerleau", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rogerpomerleau", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "rogerpomerleau", + "target": "drummondfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rogerpomerleau", + "target": "blocquebecoisdrummond", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3380 + }, + { + "source": "francinegingras", + "target": "laprairiefederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "francinegingras", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "francinegingras", + "target": "jeanclaudepoissant", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1400 + }, + { + "source": "hanighossoub", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "hanighossoub", + "target": "pierrefondsdollardconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "hanighossoub", + "target": "mariamourani", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "mauricelemieux", + "target": "glengarryprescottrussellfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "mauricelemieux", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "nancygagnon", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 600 + }, + { + "source": "nancygagnon", + "target": "blocquebecoisdejoliette", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "subcommitteeonagendaandprocedurecommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "subcommitteeonagendaandprocedurecommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gillesaube", + "target": "associationdublocquebecoisdehullaylmer", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 750 + }, + { + "source": "gillesaube", + "target": "richardnadeau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "gillesaube", + "target": "associationdecirconscriptiondublocquebecoisdegatineau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3500 + }, + { + "source": "gillesaube", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6100 + }, + { + "source": "hamidsleiman", + "target": "evanassif", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "hamidsleiman", + "target": "ahuntsicfederalndpridingassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1200 + }, + { + "source": "hamidsleiman", + "target": "mariamourani", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1200 + }, + { + "source": "hamidsleiman", + "target": "ndpridingassociationofahuntsiccartierville", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "hamidsleiman", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1700 + }, + { + "source": "dianebourgeois", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "dianebourgeois", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "dianebourgeois", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "dianebourgeois", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4900 + }, + { + "source": "dianebourgeois", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "dianebourgeois", + "target": "andrebellavance", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "dianebourgeois", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "dianebourgeois", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "dianebourgeois", + "target": "terrebonneblainvillefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "dianebourgeois", + "target": "terrebonneblainvillefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "dianebourgeois", + "target": "danielpaille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "dianebourgeois", + "target": "dianebourgeois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3519 + }, + { + "source": "dianebourgeois", + "target": "blocquebecoisdeterrebonneblainville", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6585 + }, + { + "source": "dianebourgeois", + "target": "blocquebecoisdrummond", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "pierrepaquette", + "target": "memberofparliament", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pierrepaquette", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pierrepaquette", + "target": "joliettefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pierrepaquette", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pierrepaquette", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisebourgault", + "target": "newdemocraticparty", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "louisebourgault", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6825 + }, + { + "source": "jocelynegirardbujold", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jocelynegirardbujold", + "target": "independent", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jocelynegirardbujold", + "target": "jonquierefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alvinsegal", + "target": "notredamedegracelachinefederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "alvinsegal", + "target": "associationdublocquebecoisdecharlesbourghautesaintcharles", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "alvinsegal", + "target": "robertkeithrae", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "alvinsegal", + "target": "scottbrison", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "alvinsegal", + "target": "justintrudeau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1200 + }, + { + "source": "alvinsegal", + "target": "blocquebecoishochelaga", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "alvinsegal", + "target": "danielpaille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "alvinsegal", + "target": "associationdublocquebecoisdemontmorencycharlevoixhautecotenord", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "alvinsegal", + "target": "gerardkennedy", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "alvinsegal", + "target": "sauliezajdel", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "alvinsegal", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "alvinsegal", + "target": "larrysmith", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "alvinsegal", + "target": "francoiseboivin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "alvinsegal", + "target": "pontiacconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 904 + }, + { + "source": "alvinsegal", + "target": "associationliberalefederaledargenteuilpapineaumirabel", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "alvinsegal", + "target": "vaudreuilsoulangesconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "alvinsegal", + "target": "danielfournier", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5000 + }, + { + "source": "alvinsegal", + "target": "thomasmulcair", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "alvinsegal", + "target": "westmountvillemariefederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "alvinsegal", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7894 + }, + { + "source": "alvinsegal", + "target": "newdemocraticparty", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "alvinsegal", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7300 + }, + { + "source": "abitibibaiejamesnunavikeeyoufederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "ahuntsicfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "ahuntsicfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeanhoule", + "target": "richmondarthabaskaconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "jeanhoule", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "jeanhoule", + "target": "andrebellavance", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "fisheriesandoceanscanadadfo", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "governmentoperationsandestimatescommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "governmentoperationsandestimatescommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelguimond", + "target": "associationdublocquebecoisdemontmorencycharlevoixhautecotenord", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1290 + }, + { + "source": "michelguimond", + "target": "montmorencycharlevoixhautecotenordfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelguimond", + "target": "montmorencycharlevoixhautecotenordfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelguimond", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelguimond", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelguimond", + "target": "michelguimond", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1800 + }, + { + "source": "michelguimond", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelguimond", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "michelguimond", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelguimond", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelguimond", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "joelsegal", + "target": "pierrepettigrew", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 586 + }, + { + "source": "joelsegal", + "target": "gerardkennedy", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "joelsegal", + "target": "marlenejennings", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "joelsegal", + "target": "greenpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 750 + }, + { + "source": "joelsegal", + "target": "pontiacconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 904 + }, + { + "source": "joelsegal", + "target": "guycaron", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "joelsegal", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "joelsegal", + "target": "andrewscheer", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "joelsegal", + "target": "agopevereklian", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "joelsegal", + "target": "annamiepaul", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 750 + }, + { + "source": "joelsegal", + "target": "rhealfortin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "joelsegal", + "target": "jameslunney", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "joelsegal", + "target": "justintrudeau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1200 + }, + { + "source": "joelsegal", + "target": "jonathangoldbloom", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 600 + }, + { + "source": "joelsegal", + "target": "notredamedegracelachinefederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "joelsegal", + "target": "danielpaille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "joelsegal", + "target": "thomasmulcair", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "joelsegal", + "target": "westmountvillemariefederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "joelsegal", + "target": "sauliezajdel", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "joelsegal", + "target": "newdemocraticparty", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "joelsegal", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 12035 + }, + { + "source": "joelsegal", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6200 + }, + { + "source": "claudepatry", + "target": "associationduparticonservateurargenteuilpapineaumirabel", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "claudepatry", + "target": "andrebellavance", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "claudepatry", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudepatry", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudepatry", + "target": "jonquierealmafederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudepatry", + "target": "thomasmulcair", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "claudepatry", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "claudepatry", + "target": "humanresourcesandsocialdevelopmentcanadahrsdc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudepatry", + "target": "newdemocraticparty", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1700 + }, + { + "source": "contributionsof200orlesscontributionsde200oumoins", + "target": "stephanebergeron", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1300 + }, + { + "source": "contributionsof200orlesscontributionsde200oumoins", + "target": "christianouellet", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "contributionsof200orlesscontributionsde200oumoins", + "target": "mariamourani", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 598 + }, + { + "source": "contributionsof200orlesscontributionsde200oumoins", + "target": "michelgauthier", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3124 + }, + { + "source": "contributionsof200orlesscontributionsde200oumoins", + "target": "andrebellavance", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2090 + }, + { + "source": "joseebeaudin", + "target": "saintlambertfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "joseebeaudin", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "joseebeaudin", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "joseebeaudin", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pascalpierrepaille", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pascalpierrepaille", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1700 + }, + { + "source": "pascalpierrepaille", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pascalpierrepaille", + "target": "louishebertfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pascalpierrepaille", + "target": "louishebertfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pascalpierrepaille", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pascalpierrepaille", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pascalpierrepaille", + "target": "danielpaille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "pascalpierrepaille", + "target": "blocquebecoisdelouishebert", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1820 + }, + { + "source": "danielgauthier", + "target": "michelguimond", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "danielgauthier", + "target": "carolelavallee", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "christianouellet", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christianouellet", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4646 + }, + { + "source": "christianouellet", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christianouellet", + "target": "christianouellet", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1200 + }, + { + "source": "christianouellet", + "target": "mariamourani", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "christianouellet", + "target": "bromemissisquoifederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christianouellet", + "target": "bromemissisquoifederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christianouellet", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christianouellet", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christianouellet", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christianouellet", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christianouellet", + "target": "blocquebecoisdebromemissisquoi", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1400 + }, + { + "source": "martinlambert", + "target": "ronliepert", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "martinlambert", + "target": "blocquebecoisrivieredesmilleiles", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "martinlambert", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2625 + }, + { + "source": "martinlambert", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "estellecote", + "target": "christianouellet", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1200 + }, + { + "source": "estellecote", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1630 + }, + { + "source": "lavalfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lavalfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesdufour", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "yvesdufour", + "target": "blocquebecoisderepentigny", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "longueuilpierreboucherfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "longueuilpierreboucherfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "drummondfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "drummondfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "agricultureandagrifoodcanadaaafc", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rimouskineigettetemiscouatalesbasquesfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rimouskineigettetemiscouatalesbasquesfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariamourani", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariamourani", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariamourani", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariamourani", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "mariamourani", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariamourani", + "target": "ahuntsicfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariamourani", + "target": "ahuntsicfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariamourani", + "target": "newdemocraticparty", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariamourani", + "target": "newdemocraticparty", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariamourani", + "target": "ndpridingassociationofahuntsiccartierville", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "rockcloutier", + "target": "robertkeithrae", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "rockcloutier", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "rockcloutier", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "pierredesavoye", + "target": "portneuffederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pierredesavoye", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "denisepoirierrivard", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denisepoirierrivard", + "target": "chateauguaysaintconstantfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "benoithoude", + "target": "blocquebecoisdebasrichelieunicoletbecancour", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5610 + }, + { + "source": "benoithoude", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2200 + }, + { + "source": "louismassicotte", + "target": "pablorodriguez", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5000 + }, + { + "source": "louismassicotte", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "philippeturcq", + "target": "blocquebecoisdesaintjean", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "philippeturcq", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2940 + }, + { + "source": "canadaisraelinterparliamentarygroup", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "canadaisraelinterparliamentarygroup", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "raymondgravel", + "target": "blocquebecoisderepentigny", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 835 + }, + { + "source": "raymondgravel", + "target": "repentignyfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "raymondgravel", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "louisfournier", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "louisfournier", + "target": "ajaxpickeringfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "makakotto", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "makakotto", + "target": "saintlambertfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 10330 + }, + { + "source": "mariobeaulieu", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "lapointedelilefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "lapointedelilefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "martineouellet", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "mariobeaulieu", + "target": "mariobeaulieu", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6650 + }, + { + "source": "mariobeaulieu", + "target": "officiallanguagescommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "mariobeaulieu", + "target": "officiallanguagescommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariobeaulieu", + "target": "officiallanguagescommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "healthcommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "healthcommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marcaurelefortinfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marcaurelefortinfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "robertvincent", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "robertvincent", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "robertvincent", + "target": "sheffordfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "robertvincent", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "robertcharbonneau", + "target": "ottawavanierfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "robertcharbonneau", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 700 + }, + { + "source": "robertcharbonneau", + "target": "jeannecharlebois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "robertcharbonneau", + "target": "glengarryprescottrussellconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "robertcharbonneau", + "target": "oakvillenorthburlingtonconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "christianegagnon", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christianegagnon", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3700 + }, + { + "source": "christianegagnon", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christianegagnon", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christianegagnon", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christianegagnon", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christianegagnon", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christianegagnon", + "target": "quebecfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christianegagnon", + "target": "quebecfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christianegagnon", + "target": "associationdecirconscriptiondublocquebecoisdequebec", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3400 + }, + { + "source": "alfredpellanfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alfredpellanfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "manicouaganfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "manicouaganfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denisguindon", + "target": "blocquebecoisderivieredunord", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "denisguindon", + "target": "sergemenard", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "denisguindon", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "denisguindon", + "target": "blocquebecoisderepentigny", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "denisguindon", + "target": "transportcanadatc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denisguindon", + "target": "blocquebecoisdemarcaurelefortin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3000 + }, + { + "source": "assaaddargham", + "target": "ahuntsicfederalndpridingassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "assaaddargham", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "assaaddargham", + "target": "ndpridingassociationofahuntsiccartierville", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "assaaddargham", + "target": "mariamourani", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "assaaddargham", + "target": "lavallesilesfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2161 + }, + { + "source": "jeanfrancoisbarbe", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeanfrancoisbarbe", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2600 + }, + { + "source": "jeanfrancoisbarbe", + "target": "jeanfrancoisbarbe", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1010 + }, + { + "source": "benoitcyr", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "benoitcyr", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 650 + }, + { + "source": "verchereslespatriotesfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "verchereslespatriotesfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lorrainebeliveau", + "target": "simonpierresavardtremblay", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 553 + }, + { + "source": "lorrainebeliveau", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2600 + }, + { + "source": "dominiclabrie", + "target": "senateofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "dominiclabrie", + "target": "michaelstephenson", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "dominiclabrie", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "dominiclabrie", + "target": "blocquebecoisdejoliette", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1200 + }, + { + "source": "repentignyfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "repentignyfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3775 + }, + { + "source": "yvesfrancoisblanchet", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "beloeilchamblyfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "beloeilchamblyfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvesfrancoisblanchet", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisphilippebourgeois", + "target": "danielpaille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1180 + }, + { + "source": "louisphilippebourgeois", + "target": "associationliberalefederaledechamblyborduas", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 877 + }, + { + "source": "louisphilippebourgeois", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1180 + }, + { + "source": "quebecfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "quebecfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "barbarabank", + "target": "michelguimond", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 550 + }, + { + "source": "barbarabank", + "target": "evemarythaithilac", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 550 + }, + { + "source": "jeanfrancoisfortin", + "target": "jeanfrancoisfortin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "jeanfrancoisfortin", + "target": "hautegaspesielamitismatanematapediafederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeanfrancoisfortin", + "target": "hautegaspesielamitismatanematapediafederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeanfrancoisfortin", + "target": "andrebellavance", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "jeanfrancoisfortin", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeanfrancoisfortin", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2000 + }, + { + "source": "jeanfrancoisfortin", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeanfrancoisfortin", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeanfrancoisfortin", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeanfrancoisfortin", + "target": "forcesetdemocratie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeanfrancoisfortin", + "target": "forcesetdemocratie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeanfrancoisfortin", + "target": "associationdublocquebecoisdehautegaspesielamitismatanematapedia", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2100 + }, + { + "source": "andrebellavance", + "target": "richmondarthabaskafederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andrebellavance", + "target": "richmondarthabaskafederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andrebellavance", + "target": "danielpaille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "andrebellavance", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andrebellavance", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andrebellavance", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andrebellavance", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1700 + }, + { + "source": "andrebellavance", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andrebellavance", + "target": "agricultureandagrifoodcanadaaafc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andrebellavance", + "target": "agricultureandagrifoodcanadaaafc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andrebellavance", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andrebellavance", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andrebellavance", + "target": "andrebellavance", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1200 + }, + { + "source": "andrebellavance", + "target": "blocquebecoisrichmondarthabaska", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2400 + }, + { + "source": "philippegagnon", + "target": "conservativepartyofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "philippegagnon", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1995 + }, + { + "source": "clauderoy", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "clauderoy", + "target": "blocquebecoisdemarcaurelefortin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "clauderoy", + "target": "associationduparticonservateurjonquierealma", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 850 + }, + { + "source": "nationaldefencednd", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "canadafranceinterparliamentaryassociation", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "canadafranceinterparliamentaryassociation", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pierrehoule", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "pierrehoule", + "target": "andrebellavance", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "johannebeaulieu", + "target": "mariobeaulieu", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "johannebeaulieu", + "target": "canadianfoodinspectionagencycfia", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "johannebeaulieu", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "henrywolfond", + "target": "michelguimond", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 550 + }, + { + "source": "henrywolfond", + "target": "evemarythaithilac", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 550 + }, + { + "source": "pierrelachance", + "target": "martineouellet", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "pierrelachance", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4200 + }, + { + "source": "marcandrecantin", + "target": "associationblocquebecoislouissaintlaurent", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "marcandrecantin", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 750 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "mississaugastreetsvillefederalndpridingassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5330 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationduparticonservateurargenteuilpapineaumirabel", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 600 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoissalaberrysuroit", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 9640 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "jeanpierrebelisle", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 630 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "stephanelauzon", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2260 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "bernadetteclement", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 12095 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "marcmaltais", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1725 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "yveslessard", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3940 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "yvesperron", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2274 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "barekkaddouri", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4140 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "mariejoseetalbot", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1646 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "jeanparadis", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 534 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "lacsaintjeanfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2197 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationnpdmarcaurelefortin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2039 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "evanassif", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1143 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "danielbeaudin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2833 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "marcboulianne", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4370 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "yvanloubier", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 935 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "pierrepaquette", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3770 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "christiansimard", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1191 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "martinecarriere", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1725 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "raymondchenier", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2160 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "denisepoirierrivard", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 8988 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "helenechalifourscherrer", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2335 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "danielfournier", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2085 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationliberalefederaledelapointedelile", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 570 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "michelguimond", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 925 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "yvonlevesque", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2500 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "simonmarcil", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1505 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "nicoledemers", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1317 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "richardnadeau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3390 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "philippegagnon", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 700 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "guycote", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2055 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "denisgauvreau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1900 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "jeanphilippecote", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3400 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "albertdemartin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 900 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "pierreforest", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1676 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "jeanfrancoisbarbe", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3120 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "pascalpierrepaille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 902 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "larrysmith", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1250 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "christianpicard", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1675 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "yolainesavignac", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3300 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "sergemenard", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 800 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "jeandorion", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3590 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "stephanebergeron", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7570 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "christianegagnon", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 800 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "johanneregimbald", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1596 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "gillesduceppe", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7390 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "marclemay", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3540 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "claudedurand", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 543 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "denistrudel", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 9505 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "myriamtaschereau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2950 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "veroniquesoucy", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2150 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "robertcarrier", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2106 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "gillesaperron", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 800 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "carolefreeman", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3030 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "pierrebreton", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 800 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "gerardasselin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 585 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "sauliezajdel", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 940 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "jeromelandry", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 882 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "lawrencecannon", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7000 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "claudepilote", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3350 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "mariolaframboise", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4340 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "maximeblanchettejoncas", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1780 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "francoisrebello", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 12366 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "jacquesbinette", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 750 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "alexclark", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2880 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "danysevigny", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "carolelavallee", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6796 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "jeanfortier", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 520 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "robertbouchard", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1270 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "gustavolabrador", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1170 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "pierrepettigrew", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2865 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "reneroy", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "jeanyvesroy", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1275 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "ndpridingassociationofahuntsiccartierville", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7007 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "dongillis", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7171 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "rogergaudet", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1050 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "jocelynegirardbujold", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4003 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "lyneboisvert", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3072 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "lucienrichard", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 625 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "jonathangoldbloom", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3962 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "alexisbrunelleduceppe", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5720 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "andreparizeau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1030 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "joshbennett", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3320 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "kristinamichaud", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1300 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "marilenegill", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2420 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "michelboudrias", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2055 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "alaintherrien", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3750 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "luctheriault", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1750 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "louisgagnon", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1845 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "annamiepaul", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 13037 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "carolinedesbiens", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2707 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "sylvieberube", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3241 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "isabellebergeron", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "gabrielstemarie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1220 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "rhealfortin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 570 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "jeannecharlebois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4370 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "beauharnoissalaberryfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1650 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "greenpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 13778327 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5277494 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "newdemocraticparty", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 26165140 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 44459472 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 95524151 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "glengarryprescottrussellconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 254837 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "outremontfederalndpridingassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 73860 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "beacheseastyorkfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 86200 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisbecancournicoletsaurel", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 52045 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoismontcalm", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 11230 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "bellechasselesetcheminslevisfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 13755 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "glengarryprescottrussellfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 135170 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "charlesbourghautesaintcharlesconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 25609 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "torontodanforthfederalndpridingassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 190354 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "northvancouverconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 248643 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "avignonlamitismatanematapediafederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 26179 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "hullaylmerfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 75264 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "argenteuillapetitenationfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 15489 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "louishebertconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 28870 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "montarvillefederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 11474 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "stormontdundassouthglengarryfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 98076 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisdelavallesiles", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 15498 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "saintmauricechamplainfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 14061 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "bourassafederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 156555 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisdabitibibaiejamesnunavikeeyou", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7510 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisrivieredesmilleiles", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 31427 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationblocquebecoisshefford", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4365 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisdrummond", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 30752 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationduparticonservateurportneufjacquescartier", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 73325 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "ndpridingassociationoflauriersaintemarie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6770 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisdebromemissisquoi", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 64786 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationliberalefederaledeportneufjacquescartier", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 9940 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "rivieredesmilleilesfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 50969 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "lavallesilesfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 76789 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "oakvillenorthburlingtonconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 21850 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "pontiacconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 18803 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "vimyfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 36909 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "conservativepartyofcanadafrederictonelectoraldistrictassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 15859 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "laprairiefederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 10807 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationliberalefederalededrummond", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 33053 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationduparticonservateurdebeauce", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 375382 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "npdmarcaurelefortin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3077 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoislapointedelile", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 43524 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "longueuilpierreboucherconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3035 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationduparticonservateurjonquierealma", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 68036 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisdejoliette", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 46658 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "levisbellechassefederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 10354 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "lavallesilesconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 14187 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationdublocquebecoisdabitibibaiejamesnunavikeeyou", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 43017 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationdecirconscriptiondublocquebecoismontcalm", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 103512 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisdebasrichelieunicoletbecancour", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 181484 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationdublocquebecoisdehautegaspesielamitismatanematapedia", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 29956 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationliberalefederaledepapineau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 88501 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationliberalefederaledoutremont", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 51254 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationdublocquebecoisdejeanneleber", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 27489 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "jeanneleberfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 11306 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationdublocquebecoisdehullaylmer", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 28231 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoishochelaga", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 54607 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationdecirconscriptiondublocquebecoisdegatineau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 57242 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "ottawaorleansfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 118583 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisdelaval", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 42229 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationduparticonservateurlauriersaintemarie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 60739 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationliberalefederaledargenteuilpapineaumirabel", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 30949 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationdublocquebecoisdemontmorencycharlevoixhautecotenord", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 76469 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationdublocquebecoisdargenteuilpapineaumirabel", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 80107 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "ahuntsicfederalndpridingassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1342 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationdublocquebecoisdechamblyborduas", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 59707 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationliberalefederaledechamblyborduas", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 9166 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "madawaskarestigoucheconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 18138 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisdesaintbrunosainthubert", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 62301 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "beausejourfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 234815 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationdublocquebecoisderosemontlapetitepatrie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 69715 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "rosemontlapetitepatriefederalndpridingassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 54332 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisderivieredunord", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 57284 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationliberalefederaledesaintlaurentcartierville", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 48646 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationliberalefederaledemontmagnylisletkamouraskariviereduloup", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 12694 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationliberalefederaledesaintbrunosainthubert", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6995 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisrobervallacsaintjean", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 31986 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisdemontmagnylisletkamouraskariviereduloup", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 42516 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationliberalefederaledesaintjean", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 41691 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisdemanicouagan", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 49714 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationliberalefederaledelouissaintlaurent", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 9416 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationblocquebecoislouissaintlaurent", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 47751 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisdesainthyacinthebagot", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 38513 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisrichmondarthabaska", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 61563 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationdublocquebecoisdechateauguaysaintconstant", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 55110 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "ottawavanierfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 324411 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "lassociationdublocquebecoisdesaintlambert", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 17918 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "notredamedegracelachinefederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 33138 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationdublocquebecoisdecharlesbourghautesaintcharles", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 78089 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationduparticonservateurmeganticlerable", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 73040 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisdemarcaurelefortin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 13975 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "federalliberalassociationofbrossardlaprairie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 43778 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationdecirconscriptiondublocquebecoisdequebec", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 34392 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "alfredpellanfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 101585 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "westmountvillemariefederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 68193 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationdublocquebecoisverchereslespatriotes", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 58671 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationdublocquebecoisdelacirconscriptiondetroisrivieres", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 95885 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisdeterrebonneblainville", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 47378 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationdublocquebecoisdelauriersaintemarie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 43980 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "jeanneleberconservativepartyridingassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7090 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "villemarielesudouestiledessoeursfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 67847 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisdelongueuilpierreboucher", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 32364 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "ajaxpickeringfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 66932 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisabitibitemiscamingue", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 58109 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "saintjeanconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4660 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisdesaintjean", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 72413 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisderepentigny", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 64805 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisdelouishebert", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 20591 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationdublocquebecoisdeshefford", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 26825 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationliberalefederaledesaintmauricechamplain", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 10202 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "lavalfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7835 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationdublocquebecoislaurentideslabelle", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 46359 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "gatineauconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6825 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "ottawasouthfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 212761 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationduparticonservateurrobervallacsaintjean", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7893 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisrimouskineigettetemiscouatalesbasques", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 51522 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "salaberrysuroitfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 11328 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "lacsaintjeanconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1997 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "westmountvillemarieconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 24126 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "lassociationdublocquebecoisdahuntsic", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 13251 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoisvaudreuilsoulanges", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 12730 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "vaudreuilsoulangesconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 30477 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "pierrefondsdollardconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 15775 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "jameslunney", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 39205 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "michaelignatieff", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 13423 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "thomasmulcair", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 16253 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "marlenejennings", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 20488 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "centralnovagreenpartyassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6706 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "agopevereklian", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 8130 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "jeanyveslaforest", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7833 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "stevenblaney", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 10380 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "scottbrison", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 47424 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoissainthyacinthebagot", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2215 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "andrewscheer", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 52012 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "maximebernier", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 30987 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "francoiseboivin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4300 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "mariobeaulieu", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3195 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "keithashfield", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 21169 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "paulforseth", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 19364 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "ronliepert", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 37357 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "stephanedion", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2744 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "louisethibault", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6385 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "claudebachand", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 11045 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "bernardvalcourt", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 19290 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "tonywalsh", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2213 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "richmondarthabaskaconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 10222 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "juliebourgeois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 22650 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "gordbrown", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 53987 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "gailshea", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 11624 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "pauldewar", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 129313 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "chicoutimilefjordfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4090 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoispierreboucherlespatriotesvercheres", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 18468 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "justintrudeau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 33026 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "mauricebrossard", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6414 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "blocquebecoismeganticlerable", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 37860 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "rivieredesmilleilesconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4760 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "denislebel", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 9720 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "francebonsant", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3260 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "marcelproulx", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1649 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "sylvielavallee", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2135 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "guyandre", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3355 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "gerardkennedy", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 13399 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "michaelchong", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 37600 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "jeanmauricematte", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3490 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "robertvincent", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 8830 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "luciennerobillard", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1375 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "josephvolpe", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6635 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "michelgauthier", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 8256 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "sebastiengagnon", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 10186 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "reallapierre", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7372 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "patrickclune", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3232 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "evemarythaithilac", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7631 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "pablorodriguez", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3800 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "andrebellavance", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 17660 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationduparticonservateurterrebonneblainville", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6082 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "christianouellet", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3369 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "outremontconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 8016 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "meilifaille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5709 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "davebatters", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 31143 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "marcellussier", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 22293 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "dianebourgeois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3878 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "makakotto", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 9431 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "mariamourani", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 9257 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "associationliberalefederaledemeganticlerable", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 13451 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "francinelalonde", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 12590 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "simonpierresavardtremblay", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4361 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "joseeverner", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6653 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "rogerclavet", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 11731 + }, + { + "source": "nancontributionsof200orlesscontributionsde200oumoins", + "target": "guycaron", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2087 + }, + { + "source": "vaudreuilsoulangesfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "vaudreuilsoulangesfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "reneroy", + "target": "danysevigny", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 750 + }, + { + "source": "reneroy", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "reneroy", + "target": "liberalpartyofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "reneroy", + "target": "associationliberalefederaledemeganticlerable", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 526 + }, + { + "source": "reneroy", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 525 + }, + { + "source": "reneroy", + "target": "raymondchenier", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1225 + }, + { + "source": "reneroy", + "target": "associationdublocquebecoisdelauriersaintemarie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1172 + }, + { + "source": "michelgervais", + "target": "isabellebergeron", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "michelgervais", + "target": "jeanmauricematte", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 600 + }, + { + "source": "michelgervais", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "gillesaperron", + "target": "rivieredesmilleilesfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gillesaperron", + "target": "rivieredesmilleilesfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gillesaperron", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gillesaperron", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "gillesaperron", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gillesaperron", + "target": "blocquebecoisrivieredesmilleiles", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3000 + }, + { + "source": "houseofcommons", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "declarationofemergencycommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "declarationofemergencycommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "blocquebecois", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeandorion", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeandorion", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeandorion", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeandorion", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4200 + }, + { + "source": "jeandorion", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeandorion", + "target": "longueuilpierreboucherfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeandorion", + "target": "longueuilpierreboucherfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeandorion", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeandorion", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pierrepaulroy", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pierrepaulroy", + "target": "gillesduceppe", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 999 + }, + { + "source": "pierrepaulroy", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "pierrepaulroy", + "target": "associationdublocquebecoisdelauriersaintemarie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2864 + }, + { + "source": "gillesduceppe", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gillesduceppe", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7013 + }, + { + "source": "gillesduceppe", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gillesduceppe", + "target": "nationaldefencednd", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gillesduceppe", + "target": "nationaldefencednd", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gillesduceppe", + "target": "groupemondialenergiesrenouvelableswreginc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gillesduceppe", + "target": "groupemondialenergiesrenouvelableswreginc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gillesduceppe", + "target": "gillesduceppe", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "gillesduceppe", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gillesduceppe", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gillesduceppe", + "target": "lauriersaintemariefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gillesduceppe", + "target": "lauriersaintemariefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gillesduceppe", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gillesduceppe", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gillesduceppe", + "target": "alexisbrunelleduceppe", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3000 + }, + { + "source": "gillesduceppe", + "target": "associationdublocquebecoisdelauriersaintemarie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4300 + }, + { + "source": "terrebonneblainvillefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "terrebonneblainvillefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "membersofparliament", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jonquierealmafederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jonquierealmafederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreeboisvert", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2600 + }, + { + "source": "andreeboisvert", + "target": "blocquebecoisdrummond", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "chrisfrantz", + "target": "blocquebecoisvaudreuilsoulanges", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "chrisfrantz", + "target": "marcelproulx", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "chrisfrantz", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "chrisfrantz", + "target": "ottawaorleansfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 840 + }, + { + "source": "chrisfrantz", + "target": "ottawasouthfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1645 + }, + { + "source": "danielblanchet", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 600 + }, + { + "source": "danielblanchet", + "target": "blocquebecoisdemontmagnylisletkamouraskariviereduloup", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2345 + }, + { + "source": "alexisbrunelleduceppe", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1625 + }, + { + "source": "alexisbrunelleduceppe", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "afghanistancommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "afghanistancommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "lacsaintjeanfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "lacsaintjeanfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "alexisbrunelleduceppe", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7500 + }, + { + "source": "alexisbrunelleduceppe", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "alexisbrunelleduceppe", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "subcommitteeoninternationalhumanrightscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "alexisbrunelleduceppe", + "target": "subcommitteeoninternationalhumanrightscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "subcommitteeoninternationalhumanrightscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "citizenshipandimmigrationcommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "alexisbrunelleduceppe", + "target": "citizenshipandimmigrationcommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "alexisbrunelleduceppe", + "target": "citizenshipandimmigrationcommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martinthibault", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "martinthibault", + "target": "michaelignatieff", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "michelgauthier", + "target": "hilarygellergeller", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 898 + }, + { + "source": "michelgauthier", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "michelgauthier", + "target": "blocquebecoisrobervallacsaintjean", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "michelgauthier", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 900 + }, + { + "source": "michelgauthier", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelgauthier", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelgauthier", + "target": "robervallacsaintjeanfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelgauthier", + "target": "robervallacsaintjeanfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelgauthier", + "target": "associationliberalefederaledesaintmauricechamplain", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "michelgauthier", + "target": "saintmauricechamplainfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3000 + }, + { + "source": "canadaeuropeparliamentaryassociation", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "canadaeuropeparliamentaryassociation", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "longueuilsainthubertfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "longueuilsainthubertfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudedesrosiers", + "target": "lassociationdublocquebecoisdahuntsic", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "claudedesrosiers", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "claudedesrosiers", + "target": "blocquebecoisvaudreuilsoulanges", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2100 + }, + { + "source": "claudedesrosiers", + "target": "associationdecirconscriptiondublocquebecoismontcalm", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "claudedesrosiers", + "target": "meilifaille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1700 + }, + { + "source": "normandbrunelle", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "normandbrunelle", + "target": "blocquebecoisdrummond", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "yvonlevesque", + "target": "blocquebecoisdabitibibaiejamesnunavikeeyou", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1270 + }, + { + "source": "yvonlevesque", + "target": "associationduparticonservateurrobervallacsaintjean", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 656 + }, + { + "source": "yvonlevesque", + "target": "associationduparticonservateurjonquierealma", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 850 + }, + { + "source": "yvonlevesque", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvonlevesque", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvonlevesque", + "target": "membersofparliament", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvonlevesque", + "target": "membersofparliament", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvonlevesque", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvonlevesque", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvonlevesque", + "target": "abitibibaiejamesnunavikeeyoufederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvonlevesque", + "target": "abitibibaiejamesnunavikeeyoufederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvonlevesque", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvonlevesque", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 950 + }, + { + "source": "yvonlevesque", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvonlevesque", + "target": "associationdublocquebecoisdabitibibaiejamesnunavikeeyou", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7200 + }, + { + "source": "yvonlevesque", + "target": "gordbrown", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "yvonlevesque", + "target": "yvonlevesque", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1845 + }, + { + "source": "denisgrenier", + "target": "associationduparticonservateurlauriersaintemarie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 666 + }, + { + "source": "denisgrenier", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3258 + }, + { + "source": "standingcommitteeonfinancefina", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "micheltaillefer", + "target": "blocquebecoisderepentigny", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "micheltaillefer", + "target": "vaudreuilsoulangesconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "micheltaillefer", + "target": "associationdecirconscriptiondublocquebecoismontcalm", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "micheltaillefer", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "micheltaillefer", + "target": "westmountvillemarieconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "micheltaillefer", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 984 + }, + { + "source": "lapointedelilefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lapointedelilefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "montmorencycharlevoixhautecotenordfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "montmorencycharlevoixhautecotenordfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "francebonsant", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "francebonsant", + "target": "membersofthehouseofparliament", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "francebonsant", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "francebonsant", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "francebonsant", + "target": "healthcanadahc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "francebonsant", + "target": "comptonstansteadfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "evemarythaithilac", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "evemarythaithilac", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2625 + }, + { + "source": "evemarythaithilac", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "evemarythaithilac", + "target": "sainthyacinthebagotfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "evemarythaithilac", + "target": "sainthyacinthebagotfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "evemarythaithilac", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "evemarythaithilac", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "evemarythaithilac", + "target": "danielpaille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "danielsarrazin", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "danielsarrazin", + "target": "associationliberalefederaledelapointedelile", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "becancournicoletsaurelfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "becancournicoletsaurelfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gerardasselin", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gerardasselin", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gerardasselin", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "gerardasselin", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gerardasselin", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gerardasselin", + "target": "manicouaganfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gerardasselin", + "target": "manicouaganfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gerardasselin", + "target": "blocquebecoisdemanicouagan", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7956 + }, + { + "source": "richardkurland", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "richardkurland", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1700 + }, + { + "source": "richardkurland", + "target": "northvancouverconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2000 + }, + { + "source": "francinelalonde", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "francinelalonde", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3000 + }, + { + "source": "francinelalonde", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "francinelalonde", + "target": "blocquebecoisdemontmagnylisletkamouraskariviereduloup", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "francinelalonde", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "francinelalonde", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "francinelalonde", + "target": "lapointedelilefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "francinelalonde", + "target": "lapointedelilefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "francinelalonde", + "target": "blocquebecoislapointedelile", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 8200 + }, + { + "source": "francinelalonde", + "target": "francinelalonde", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6275 + }, + { + "source": "pierrevalois", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "pierrevalois", + "target": "blocquebecoishochelaga", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 600 + }, + { + "source": "marietheresebigras", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "marietheresebigras", + "target": "associationdublocquebecoisderosemontlapetitepatrie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "luctremblay", + "target": "nationaldefencednd", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctremblay", + "target": "associationduparticonservateurrobervallacsaintjean", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 820 + }, + { + "source": "luctremblay", + "target": "lassociationdublocquebecoisdesaintlambert", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "luctremblay", + "target": "transportcanadatc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "luctremblay", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3500 + }, + { + "source": "luctremblay", + "target": "denislebel", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3000 + }, + { + "source": "michelineroussel", + "target": "blocquebecoisdabitibibaiejamesnunavikeeyou", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1265 + }, + { + "source": "michelineroussel", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1550 + }, + { + "source": "michelineroussel", + "target": "associationdublocquebecoisdabitibibaiejamesnunavikeeyou", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4600 + }, + { + "source": "sharafsharafeldin", + "target": "mississaugastreetsvillefederalndpridingassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "sharafsharafeldin", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "sharafsharafeldin", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3300 + }, + { + "source": "sharafsharafeldin", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2050 + }, + { + "source": "sergemenard", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sergemenard", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sergemenard", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sergemenard", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 8385 + }, + { + "source": "sergemenard", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sergemenard", + "target": "associationliberalefederalededrummond", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "sergemenard", + "target": "marcaurelefortinfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sergemenard", + "target": "marcaurelefortinfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sergemenard", + "target": "jeanpierrebelanger", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "sergemenard", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 910 + }, + { + "source": "sergemenard", + "target": "mariobeaulieu", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1200 + }, + { + "source": "sergemenard", + "target": "danielpaille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1200 + }, + { + "source": "sergemenard", + "target": "blocquebecoisdemarcaurelefortin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 10475 + }, + { + "source": "mariosimard", + "target": "mariosimard", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5000 + }, + { + "source": "mariosimard", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "mariosimard", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "jonquierefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "jonquierefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "naturalresourcescommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "mariosimard", + "target": "naturalresourcescommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariosimard", + "target": "naturalresourcescommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "florentmichaud", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1625 + }, + { + "source": "florentmichaud", + "target": "kristinamichaud", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "michellepage", + "target": "barekkaddouri", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 750 + }, + { + "source": "michellepage", + "target": "tonywalsh", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "michellepage", + "target": "associationdublocquebecoisdechamblyborduas", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 695 + }, + { + "source": "michellepage", + "target": "yveslessard", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "michellepage", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1400 + }, + { + "source": "canadairelandinterparliamentarygroup", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "canadairelandinterparliamentarygroup", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "canadiangroupoftheinterparliamentaryunion", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "canadiangroupoftheinterparliamentaryunion", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "richardnadeau", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "richardnadeau", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "richardnadeau", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "richardnadeau", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7525 + }, + { + "source": "richardnadeau", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "richardnadeau", + "target": "gustavolabrador", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 600 + }, + { + "source": "richardnadeau", + "target": "blocquebecoispierreboucherlespatriotesvercheres", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "richardnadeau", + "target": "fisheriesandoceanscanadadfo", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "richardnadeau", + "target": "fisheriesandoceanscanadadfo", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "richardnadeau", + "target": "gatineaufederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "richardnadeau", + "target": "gatineaufederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "richardnadeau", + "target": "blocquebecoissalaberrysuroit", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "richardnadeau", + "target": "richardnadeau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "richardnadeau", + "target": "associationdecirconscriptiondublocquebecoisdegatineau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 9183 + }, + { + "source": "richardnadeau", + "target": "associationliberalefederaledeportneufjacquescartier", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1800 + }, + { + "source": "brossardlaprairiefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "brossardlaprairiefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "ahmadsbeiti", + "target": "mariamourani", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "ahmadsbeiti", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "ahmadsbeiti", + "target": "ndpridingassociationofahuntsiccartierville", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "papineaufederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "papineaufederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "francoisbeaudoin", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "francoisbeaudoin", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3100 + }, + { + "source": "francoisbeaudoin", + "target": "blocquebecoisdrummond", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4170 + }, + { + "source": "xavierbarsalouduval", + "target": "martineouellet", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1525 + }, + { + "source": "xavierbarsalouduval", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 9900 + }, + { + "source": "xavierbarsalouduval", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "pierreboucherlespatriotesvercheresfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "pierreboucherlespatriotesvercheresfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "blocquebecoisdelongueuilpierreboucher", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "xavierbarsalouduval", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "xavierbarsalouduval", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3500 + }, + { + "source": "xavierbarsalouduval", + "target": "blocquebecoispierreboucherlespatriotesvercheres", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3040 + }, + { + "source": "xavierbarsalouduval", + "target": "transportinfrastructureandcommunitiescommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "xavierbarsalouduval", + "target": "transportinfrastructureandcommunitiescommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "xavierbarsalouduval", + "target": "transportinfrastructureandcommunitiescommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "bernardjrbigras", + "target": "associationdublocquebecoisderosemontlapetitepatrie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "bernardjrbigras", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "junerussell", + "target": "newdemocraticparty", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "junerussell", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "junerussell", + "target": "greenpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5700 + }, + { + "source": "jacquesbeausejour", + "target": "simonpierresavardtremblay", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1553 + }, + { + "source": "jacquesbeausejour", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3225 + }, + { + "source": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "anniedesnoyers", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1200 + }, + { + "source": "anniedesnoyers", + "target": "andrebellavance", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1200 + }, + { + "source": "danyleblanc", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 600 + }, + { + "source": "danyleblanc", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "danyleblanc", + "target": "associationliberalefederaledoutremont", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "danyleblanc", + "target": "michaelignatieff", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 600 + }, + { + "source": "officiallanguagescommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "officiallanguagescommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 10460 + }, + { + "source": "rhealfortin", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "blocquebecoisderivieredunord", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 518 + }, + { + "source": "rhealfortin", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "rivieredunordfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "rivieredunordfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "rhealfortin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3250 + }, + { + "source": "rhealfortin", + "target": "justiceandhumanrightscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "rhealfortin", + "target": "justiceandhumanrightscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "justiceandhumanrightscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "declarationofemergencycommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "rhealfortin", + "target": "declarationofemergencycommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rhealfortin", + "target": "declarationofemergencycommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nicoledemers", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nicoledemers", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1600 + }, + { + "source": "nicoledemers", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nicoledemers", + "target": "robertvincent", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 800 + }, + { + "source": "nicoledemers", + "target": "associationdublocquebecoisdeshefford", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "nicoledemers", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nicoledemers", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nicoledemers", + "target": "lavalfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nicoledemers", + "target": "lavalfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nicoledemers", + "target": "houseofcommonssenate", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nicoledemers", + "target": "houseofcommonssenate", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nicoledemers", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nicoledemers", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nicoledemers", + "target": "jeanfrancoisfortin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 600 + }, + { + "source": "nicoledemers", + "target": "blocquebecoisdelaval", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1800 + }, + { + "source": "sebastiengagnon", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sebastiengagnon", + "target": "jonquierealmafederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "paulinepicard", + "target": "drummondfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "paulinepicard", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sheffordfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sheffordfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolelavallee", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolelavallee", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolelavallee", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "carolelavallee", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolelavallee", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolelavallee", + "target": "carolelavallee", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 935 + }, + { + "source": "carolelavallee", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolelavallee", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolelavallee", + "target": "saintbrunosainthubertfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolelavallee", + "target": "saintbrunosainthubertfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolelavallee", + "target": "blocquebecoisdesaintbrunosainthubert", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5100 + }, + { + "source": "thierrystcyr", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "thierrystcyr", + "target": "jeanneleberfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "thierrystcyr", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "thierrystcyr", + "target": "associationdublocquebecoisdejeanneleber", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3343 + }, + { + "source": "thierrystcyr", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2850 + }, + { + "source": "saintbrunosainthubertfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "saintbrunosainthubertfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "farmproductscouncilofcanadafpcc", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "fredericlepage", + "target": "denislebel", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "fredericlepage", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 700 + }, + { + "source": "pierreforest", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pierreforest", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "mariellefleurent", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "mariellefleurent", + "target": "blocquebecoisdesaintbrunosainthubert", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2550 + }, + { + "source": "primeministersofficepmo", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gilbertpaquette", + "target": "gilbertpaquette", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5000 + }, + { + "source": "gilbertpaquette", + "target": "mariobeaulieu", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "gilbertpaquette", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gilbertpaquette", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "libraryofparliamentcommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "libraryofparliamentcommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "raymondboudreau", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 685 + }, + { + "source": "raymondboudreau", + "target": "lassociationdublocquebecoisdesaintlambert", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "realgrondin", + "target": "blocquebecoismeganticlerable", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "realgrondin", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3750 + }, + { + "source": "gastonpinard", + "target": "blocquebecoisdrummond", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "gastonpinard", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "claudepilote", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "claudepilote", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudepilote", + "target": "claudepilote", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "claudepilote", + "target": "alexisbrunelleduceppe", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "claudepilote", + "target": "blocquebecoisrobervallacsaintjean", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1600 + }, + { + "source": "jacquesbinette", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jacquesbinette", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2300 + }, + { + "source": "jacquesbinette", + "target": "blocquebecoisdrummond", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 750 + }, + { + "source": "jacquesbinette", + "target": "jacquesbinette", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 600 + }, + { + "source": "lisebarry", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 984 + }, + { + "source": "lisebarry", + "target": "blocquebecoisderepentigny", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "marclabelle", + "target": "partipourlindependanceduquebec", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1600 + }, + { + "source": "marclabelle", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2500 + }, + { + "source": "marcboulianne", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marcboulianne", + "target": "meganticlerablefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisethibault", + "target": "rimouskineigettetemiscouatalesbasquesfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisethibault", + "target": "independent", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louisethibault", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariolaframboise", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariolaframboise", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariolaframboise", + "target": "argenteuilpapineaumirabelfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mariolaframboise", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "hautegaspesielamitismatanematapediafederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "hautegaspesielamitismatanematapediafederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marclussier", + "target": "marcellussier", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "marclussier", + "target": "denisgauvreau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "marclussier", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "simonpierresavardtremblay", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3110 + }, + { + "source": "simonpierresavardtremblay", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "simonpierresavardtremblay", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5000 + }, + { + "source": "simonpierresavardtremblay", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "sainthyacinthebagotfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "sainthyacinthebagotfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "internationaltradecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "simonpierresavardtremblay", + "target": "internationaltradecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "simonpierresavardtremblay", + "target": "internationaltradecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1625 + }, + { + "source": "sylvieberube", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "abitibibaiejamesnunavikeeyoufederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "abitibibaiejamesnunavikeeyoufederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "servicecanadaservcan", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "servicecanadaservcan", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sylvieberube", + "target": "sylvieberube", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6600 + }, + { + "source": "louisebarsalou", + "target": "blocquebecoispierreboucherlespatriotesvercheres", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3025 + }, + { + "source": "louisebarsalou", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2400 + }, + { + "source": "salaberrysuroitfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "salaberrysuroitfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "canadaitalyinterparliamentarygroup", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "canadaitalyinterparliamentarygroup", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nicolasdufour", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nicolasdufour", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5500 + }, + { + "source": "nicolasdufour", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nicolasdufour", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nicolasdufour", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nicolasdufour", + "target": "repentignyfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nicolasdufour", + "target": "repentignyfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nicolasdufour", + "target": "nicolasdufour", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "nicolasdufour", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nicolasdufour", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreveronneau", + "target": "blocquebecoisahuntsiccartierville", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "andreveronneau", + "target": "mariamourani", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1200 + }, + { + "source": "andreveronneau", + "target": "andreparizeau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "andreveronneau", + "target": "mariobeaulieu", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "andreveronneau", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2450 + }, + { + "source": "lucdesilets", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesilets", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2125 + }, + { + "source": "lucdesilets", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesilets", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesilets", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesilets", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesilets", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesilets", + "target": "rivieredesmilleilesfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesilets", + "target": "rivieredesmilleilesfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesilets", + "target": "lucdesilets", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "lucdesilets", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesilets", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesilets", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesilets", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesilets", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesilets", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesilets", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesilets", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesilets", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesilets", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesilets", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesilets", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesilets", + "target": "veteransaffairscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "lucdesilets", + "target": "veteransaffairscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesilets", + "target": "veteransaffairscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesnoyers", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 501 + }, + { + "source": "lucdesnoyers", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesnoyers", + "target": "rivieredesmilleilesfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesnoyers", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucdesnoyers", + "target": "blocquebecoisrivieredesmilleiles", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3900 + }, + { + "source": "claudesoucy", + "target": "veroniquesoucy", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "claudesoucy", + "target": "juliebourgeois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "claudesoucy", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "guyandre", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "guyandre", + "target": "berthiermaskinongefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "guyandre", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolefreeman", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolefreeman", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolefreeman", + "target": "houseofcommonssenate", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolefreeman", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolefreeman", + "target": "chateauguaysaintconstantfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andrepaquin", + "target": "lyneboisvert", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 600 + }, + { + "source": "andrepaquin", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "andrepaquin", + "target": "associationdublocquebecoisdechamblyborduas", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1530 + }, + { + "source": "martineouellet", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5000 + }, + { + "source": "martineouellet", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "martineouellet", + "target": "martineouellet", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5000 + }, + { + "source": "lucmalo", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucmalo", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1600 + }, + { + "source": "lucmalo", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucmalo", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucmalo", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucmalo", + "target": "verchereslespatriotesfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucmalo", + "target": "verchereslespatriotesfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucmalo", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucmalo", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lucmalo", + "target": "lucmalo", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2000 + }, + { + "source": "lucmalo", + "target": "associationdublocquebecoisverchereslespatriotes", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2275 + }, + { + "source": "johanneregimbald", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "johanneregimbald", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2450 + }, + { + "source": "jacqueschouinard", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 962 + }, + { + "source": "jacqueschouinard", + "target": "alfredpellanfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "jacqueschouinard", + "target": "associationduparticonservateurjonquierealma", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 782 + }, + { + "source": "jacqueschouinard", + "target": "associationduparticonservateurlauriersaintemarie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 850 + }, + { + "source": "jacqueschouinard", + "target": "chicoutimilefjordfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "jacqueschouinard", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2500 + }, + { + "source": "jacqueschouinard", + "target": "associationliberalefederaledoutremont", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3000 + }, + { + "source": "robertbouchard", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "robertbouchard", + "target": "chicoutimilefjordfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "robertbouchard", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "robertbouchard", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "helenecantin", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 900 + }, + { + "source": "helenecantin", + "target": "christianegagnon", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "bernardlamarre", + "target": "stephanedion", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "bernardlamarre", + "target": "andreechampagne", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "bernardlamarre", + "target": "associationduparticonservateurjonquierealma", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 826 + }, + { + "source": "bernardlamarre", + "target": "associationduparticonservateurmeganticlerable", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "bernardlamarre", + "target": "vaudreuilsoulangesconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "bernardlamarre", + "target": "michaelignatieff", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "bernardlamarre", + "target": "jeanfortier", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "bernardlamarre", + "target": "associationliberalefederaledepapineau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "bernardlamarre", + "target": "associationduparticonservateurlauriersaintemarie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 850 + }, + { + "source": "bernardlamarre", + "target": "robertkeithrae", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2000 + }, + { + "source": "bernardlamarre", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 8640 + }, + { + "source": "bernardlamarre", + "target": "associationliberalefederaledechamblyborduas", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "bernardlamarre", + "target": "jeanneleberfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2000 + }, + { + "source": "bernardlamarre", + "target": "jeanphilippecote", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5000 + }, + { + "source": "bernardlamarre", + "target": "associationliberalefederaledoutremont", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3000 + }, + { + "source": "bernardlamarre", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3500 + }, + { + "source": "bernardlamarre", + "target": "westmountvillemariefederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "bernardlamarre", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "mauricedunberry", + "target": "claudedebellefeuille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 630 + }, + { + "source": "mauricedunberry", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1625 + }, + { + "source": "elliotlifson", + "target": "josephvolpe", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "elliotlifson", + "target": "lawrencecannon", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3000 + }, + { + "source": "elliotlifson", + "target": "associationdublocquebecoisdecharlesbourghautesaintcharles", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "elliotlifson", + "target": "associationdublocquebecoisdemontmorencycharlevoixhautecotenord", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "elliotlifson", + "target": "paulforseth", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "elliotlifson", + "target": "notredamedegracelachinefederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "elliotlifson", + "target": "rhealfortin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "elliotlifson", + "target": "thomasmulcair", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "elliotlifson", + "target": "robertkeithrae", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "elliotlifson", + "target": "jameslunney", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "elliotlifson", + "target": "pierrefondsdollardconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "elliotlifson", + "target": "danielpaille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "elliotlifson", + "target": "pontiacconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 904 + }, + { + "source": "elliotlifson", + "target": "guycaron", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "elliotlifson", + "target": "francoiseboivin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "elliotlifson", + "target": "associationdublocquebecoisdelauriersaintemarie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1386 + }, + { + "source": "elliotlifson", + "target": "associationliberalefederaledargenteuilpapineaumirabel", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "elliotlifson", + "target": "blocquebecoisdejoliette", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "elliotlifson", + "target": "lacsaintjeanconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "elliotlifson", + "target": "outremontfederalndpridingassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "elliotlifson", + "target": "blocquebecoisdemontmagnylisletkamouraskariviereduloup", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "elliotlifson", + "target": "louishebertconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "elliotlifson", + "target": "scottbrison", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "elliotlifson", + "target": "westmountvillemariefederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "elliotlifson", + "target": "danielfournier", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "elliotlifson", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 10781 + }, + { + "source": "elliotlifson", + "target": "newdemocraticparty", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "elliotlifson", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 8300 + }, + { + "source": "elliotlifson", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1600 + }, + { + "source": "elliotlifson", + "target": "westmountvillemarieconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "jeromelandry", + "target": "conservativepartyofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeromelandry", + "target": "blocquebecoisdejoliette", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "jeromelandry", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 9975 + }, + { + "source": "pierreboucherlespatriotesvercheresfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "richardguay", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "richardguay", + "target": "tfiinternationalinc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marclemay", + "target": "foreignaffairsandinternationaltradecanadadfaitc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marclemay", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marclemay", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marclemay", + "target": "abitibitemiscaminguefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marclemay", + "target": "foreignaffairstradeanddevelopmentcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marclemay", + "target": "canadianheritagepch", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudemanigat", + "target": "vivianbarbot", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "claudemanigat", + "target": "stormontdundassouthglengarryfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "claudemanigat", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "claudemanigat", + "target": "bernadetteclement", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "claudemanigat", + "target": "bourassafederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1770 + }, + { + "source": "jacqueselemond", + "target": "paulinepicard", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "jacqueselemond", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "cecilevanier", + "target": "blocquebecoisdelaval", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "cecilevanier", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "louishebertfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "louishebertfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "antonigilbert", + "target": "marilenegill", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 800 + }, + { + "source": "antonigilbert", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1600 + }, + { + "source": "ruthpotvin", + "target": "blocquebecoisdebromemissisquoi", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "ruthpotvin", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2400 + }, + { + "source": "jeanyveslaforest", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeanyveslaforest", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeanyveslaforest", + "target": "saintmauricechamplainfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeanyveslaforest", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeanyveslaforest", + "target": "standingcommitteeonfinancefina", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "christianlabrie", + "target": "newdemocraticparty", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 760 + }, + { + "source": "christianlabrie", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "gerardheroux", + "target": "jeanfrancoisfortin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 600 + }, + { + "source": "gerardheroux", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1700 + }, + { + "source": "rogergaudet", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rogergaudet", + "target": "canadianheritagepch", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rogergaudet", + "target": "montcalmfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rogergaudet", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rogergaudet", + "target": "canadacouncilforthearts", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rogergaudet", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "meilifaille", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "meilifaille", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "meilifaille", + "target": "membersofparliament", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "meilifaille", + "target": "membersofparliament", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "meilifaille", + "target": "blocquebecoisvaudreuilsoulanges", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1041 + }, + { + "source": "meilifaille", + "target": "vaudreuilsoulangesfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "meilifaille", + "target": "vaudreuilsoulangesfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "meilifaille", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 600 + }, + { + "source": "meilifaille", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "meilifaille", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "meilifaille", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "meilifaille", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "meilifaille", + "target": "meilifaille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6739 + }, + { + "source": "robertcarrier", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "robertcarrier", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "robertcarrier", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "robertcarrier", + "target": "alfredpellanfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "robertcarrier", + "target": "alfredpellanfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "robertcarrier", + "target": "standingcommitteeonfinancefina", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "robertcarrier", + "target": "standingcommitteeonfinancefina", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "robertcarrier", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "robertcarrier", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "robertcarrier", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "robertcarrier", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "robertcarrier", + "target": "salaberrysuroitfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "jacquestremblay", + "target": "danielbeaudin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 587 + }, + { + "source": "jacquestremblay", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jacquestremblay", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jacquestremblay", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 640 + }, + { + "source": "jacquestremblay", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jacquestremblay", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jacquestremblay", + "target": "associationduparticonservateurlauriersaintemarie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 666 + }, + { + "source": "jacquestremblay", + "target": "jacquestremblay", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "jacquestremblay", + "target": "saintjeanconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1200 + }, + { + "source": "jacquestremblay", + "target": "michaelchong", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "jacquestremblay", + "target": "jeanneleberconservativepartyridingassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 830 + }, + { + "source": "jacquestremblay", + "target": "longueuilpierreboucherconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "jacquestremblay", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 10025 + }, + { + "source": "claudecarriere", + "target": "primeministersofficepmo", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudecarriere", + "target": "privycouncilofficepco", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudecarriere", + "target": "agricultureandagrifoodcanadaaafc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "claudecarriere", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 800 + }, + { + "source": "alexandredesmarais", + "target": "blocquebecoispierreboucherlespatriotesvercheres", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "alexandredesmarais", + "target": "martineouellet", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "alexandredesmarais", + "target": "mariobeaulieu", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "alexandredesmarais", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2000 + }, + { + "source": "nancontributionsof20orlesscontributionsde20oumoins", + "target": "mariobeaulieu", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 788 + }, + { + "source": "nancontributionsof20orlesscontributionsde20oumoins", + "target": "pascalpierrepaille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 605 + }, + { + "source": "nancontributionsof20orlesscontributionsde20oumoins", + "target": "jeanfrancoisfortin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 640 + }, + { + "source": "antoinedube", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 800 + }, + { + "source": "antoinedube", + "target": "levisetchutesdelachaudierefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvanpatry", + "target": "conservativepartyofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvanpatry", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 600 + }, + { + "source": "yvanpatry", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "healthcanadahc", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "bertrandmenard", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1625 + }, + { + "source": "bertrandmenard", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "bertrandmenard", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 550 + }, + { + "source": "denistrudel", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "longueuilsainthubertfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "longueuilsainthubertfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "denistrudel", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "denistrudel", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreannecorriveau", + "target": "michelboudrias", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "andreannecorriveau", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "jonquierefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jonquierefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1625 + }, + { + "source": "maximeblanchettejoncas", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "rimouskineigettetemiscouatalesbasquesfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "rimouskineigettetemiscouatalesbasquesfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "maximeblanchettejoncas", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5000 + }, + { + "source": "maximeblanchettejoncas", + "target": "scienceandresearchcommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "maximeblanchettejoncas", + "target": "scienceandresearchcommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "maximeblanchettejoncas", + "target": "scienceandresearchcommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelgagnon", + "target": "gnlquebec", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelgagnon", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "michelgagnon", + "target": "joseeverner", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "michelgagnon", + "target": "globalaffairscanadagac", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelgagnon", + "target": "associationdublocquebecoisdechamblyborduas", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "michelboudrias", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelboudrias", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7310 + }, + { + "source": "michelboudrias", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelboudrias", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelboudrias", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelboudrias", + "target": "healthcanadahc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelboudrias", + "target": "healthcanadahc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelboudrias", + "target": "terrebonnefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelboudrias", + "target": "terrebonnefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "michelboudrias", + "target": "martineouellet", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1525 + }, + { + "source": "michelboudrias", + "target": "michelboudrias", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4800 + }, + { + "source": "heleneguillemette", + "target": "blocquebecoisdelouishebert", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "heleneguillemette", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "heleneguillemette", + "target": "danielpaille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "louisgagnon", + "target": "jeanneleberfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "louisgagnon", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 700 + }, + { + "source": "louisgagnon", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1600 + }, + { + "source": "carolinedesbiens", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "beauportcotedebeaupreiledorleanscharlevoixfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "beauportcotedebeaupreiledorleanscharlevoixfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "carolinedesbiens", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 8000 + }, + { + "source": "carolinedesbiens", + "target": "fisheriesandoceanscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "carolinedesbiens", + "target": "fisheriesandoceanscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "carolinedesbiens", + "target": "fisheriesandoceanscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6783 + }, + { + "source": "gabrielstemarie", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "joliettefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "joliettefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "martineouellet", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "gabrielstemarie", + "target": "financecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 2 + }, + { + "source": "gabrielstemarie", + "target": "financecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "gabrielstemarie", + "target": "financecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "yvessamson", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5000 + }, + { + "source": "yvessamson", + "target": "blocquebecoisdrummond", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5700 + }, + { + "source": "marjolaindufour", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1250 + }, + { + "source": "marjolaindufour", + "target": "blocquebecoisdemanicouagan", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1180 + }, + { + "source": "gilleslalonde", + "target": "argenteuillapetitenationfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "gilleslalonde", + "target": "gatineauconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "gilleslalonde", + "target": "hullaylmerfederalliberalassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 945 + }, + { + "source": "gilleslalonde", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1260 + }, + { + "source": "gilleslalonde", + "target": "stephanelauzon", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2250 + }, + { + "source": "marceldesrosiers", + "target": "meilifaille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 800 + }, + { + "source": "marceldesrosiers", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "jeanneleberfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeanneleberfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sainthyacinthebagotfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sainthyacinthebagotfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "rodrigomichea", + "target": "newdemocraticparty", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "rodrigomichea", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "rodrigomichea", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 8289 + }, + { + "source": "yvonfaille", + "target": "blocquebecoisvaudreuilsoulanges", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1780 + }, + { + "source": "yvonfaille", + "target": "meilifaille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3050 + }, + { + "source": "yvonfaille", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1350 + }, + { + "source": "portneuffederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "portneuffederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "montarvillefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "montarvillefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pierrebreton", + "target": "associationduparticonservateurlauriersaintemarie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 666 + }, + { + "source": "pierrebreton", + "target": "conservativepartyofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pierrebreton", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6425 + }, + { + "source": "pierrebreton", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "pierrebreton", + "target": "sheffordfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pierrebreton", + "target": "pierrebreton", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1050 + }, + { + "source": "pierrebreton", + "target": "associationdublocquebecoisderosemontlapetitepatrie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "pierrebreton", + "target": "liberalpartyofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "pierrebreton", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "ghislaindionne", + "target": "associationduparticonservateurmeganticlerable", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 615 + }, + { + "source": "ghislaindionne", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1700 + }, + { + "source": "ghislaindionne", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1125 + }, + { + "source": "heleneduceppe", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "heleneduceppe", + "target": "gillesduceppe", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "nathaliepardiac", + "target": "blocquebecoisdemanicouagan", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6950 + }, + { + "source": "nathaliepardiac", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2780 + }, + { + "source": "nathaliepardiac", + "target": "gerardasselin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1225 + }, + { + "source": "andreleduc", + "target": "innovationscienceandeconomicdevelopmentcanadaised", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreleduc", + "target": "industrycanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "andreleduc", + "target": "associationduparticonservateurlauriersaintemarie", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "andreleduc", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 600 + }, + { + "source": "michelgouault", + "target": "blocquebecoisdebromemissisquoi", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2500 + }, + { + "source": "michelgouault", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2000 + }, + { + "source": "jacquesplante", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "jacquesplante", + "target": "myriamtaschereau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "daniellaurendeau", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 750 + }, + { + "source": "daniellaurendeau", + "target": "blocquebecoisabitibitemiscamingue", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2070 + }, + { + "source": "patrickboulanger", + "target": "foreignaffairsandinternationaltradecanadadfaitc", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "patrickboulanger", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "francoisplourde", + "target": "rivieredesmilleilesconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "francoisplourde", + "target": "sergemenard", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3000 + }, + { + "source": "francoisplourde", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "francoisplourde", + "target": "blocquebecoisdemarcaurelefortin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4700 + }, + { + "source": "pierrerivard", + "target": "associationduparticonservateurdebeauce", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "pierrerivard", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "pierrerivard", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1550 + }, + { + "source": "pierrerivard", + "target": "associationduparticonservateurportneufjacquescartier", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "pierrerivard", + "target": "associationdublocquebecoislaurentideslabelle", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2095 + }, + { + "source": "pierrerivard", + "target": "maximebernier", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3075 + }, + { + "source": "pierrerivard", + "target": "charlesbourghautesaintcharlesconservativeassociation", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "gratiennolet", + "target": "joseeverner", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "gratiennolet", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "andrelevesque", + "target": "sylvieberube", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "andrelevesque", + "target": "yvonlevesque", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1266 + }, + { + "source": "sergecote", + "target": "kristinamichaud", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 600 + }, + { + "source": "sergecote", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1550 + }, + { + "source": "davidhenderson", + "target": "joshbennett", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "davidhenderson", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 550 + }, + { + "source": "davidhenderson", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 8525 + }, + { + "source": "davidhenderson", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "marceltheberge", + "target": "associationliberalefederaledechamblyborduas", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 877 + }, + { + "source": "marceltheberge", + "target": "massimopacetti", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 809 + }, + { + "source": "marceltheberge", + "target": "associationliberalefederaledesaintlaurentcartierville", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "marceltheberge", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "marceltheberge", + "target": "blocquebecoisdemarcaurelefortin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3600 + }, + { + "source": "marceltheberge", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2750 + }, + { + "source": "jacquesleonard", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "jacquesleonard", + "target": "johanneregimbald", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "blocquebecois_FUNDS_agg", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 289880 + }, + { + "source": "michelgauthier_FUNDS_agg", + "target": "michelgauthier", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1885 + }, + { + "source": "davidpage_FUNDS_agg", + "target": "davidpage", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "kristinamichaud_FUNDS_agg", + "target": "kristinamichaud", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "sylvieberube_FUNDS_agg", + "target": "sylvieberube", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1600 + }, + { + "source": "stephanebergeron_FUNDS_agg", + "target": "stephanebergeron", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 11900 + }, + { + "source": "jeanparadis_FUNDS_agg", + "target": "jeanparadis", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1750 + }, + { + "source": "yvanpatry_FUNDS_agg", + "target": "yvanpatry", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5000 + }, + { + "source": "martinecarriere_FUNDS_agg", + "target": "martinecarriere", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 15470 + }, + { + "source": "luctheriault_FUNDS_agg", + "target": "luctheriault", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 13500 + }, + { + "source": "marilenegill_FUNDS_agg", + "target": "marilenegill", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "rhealfortin_FUNDS_agg", + "target": "rhealfortin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "maximeblanchettejoncas_FUNDS_agg", + "target": "maximeblanchettejoncas", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2020 + }, + { + "source": "alexisbrunelleduceppe_FUNDS_agg", + "target": "alexisbrunelleduceppe", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "michelboudrias_FUNDS_agg", + "target": "michelboudrias", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6660 + }, + { + "source": "johanneregimbald_FUNDS_agg", + "target": "johanneregimbald", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1100 + }, + { + "source": "philippegagnon_FUNDS_agg", + "target": "philippegagnon", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4900 + }, + { + "source": "michelguimond_FUNDS_agg", + "target": "michelguimond", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4000 + }, + { + "source": "mariamourani_FUNDS_agg", + "target": "mariamourani", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 17450 + }, + { + "source": "denisgauvreau_FUNDS_agg", + "target": "denisgauvreau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 51652 + }, + { + "source": "alaintherrien_FUNDS_agg", + "target": "alaintherrien", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "francinelalonde_FUNDS_agg", + "target": "francinelalonde", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 10040 + }, + { + "source": "reneroy_FUNDS_agg", + "target": "reneroy", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 600 + }, + { + "source": "meilifaille_FUNDS_agg", + "target": "meilifaille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 49610 + }, + { + "source": "yvonlevesque_FUNDS_agg", + "target": "yvonlevesque", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 12347 + }, + { + "source": "pierrebreton_FUNDS_agg", + "target": "pierrebreton", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 17160 + }, + { + "source": "andrebellavance_FUNDS_agg", + "target": "andrebellavance", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6000 + }, + { + "source": "mariobeaulieu_FUNDS_agg", + "target": "mariobeaulieu", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "dianebourgeois_FUNDS_agg", + "target": "dianebourgeois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1590 + }, + { + "source": "christianouellet_FUNDS_agg", + "target": "christianouellet", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2900 + }, + { + "source": "richardnadeau_FUNDS_agg", + "target": "richardnadeau", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1650 + }, + { + "source": "jeanfrancoisfortin_FUNDS_agg", + "target": "jeanfrancoisfortin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3000 + }, + { + "source": "claudedebellefeuille_FUNDS_agg", + "target": "claudedebellefeuille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1320 + }, + { + "source": "christianegagnon_FUNDS_agg", + "target": "christianegagnon", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "gerardasselin_FUNDS_agg", + "target": "gerardasselin", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7175 + }, + { + "source": "gillesaperron_FUNDS_agg", + "target": "gillesaperron", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 3010 + }, + { + "source": "sergemenard_FUNDS_agg", + "target": "sergemenard", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 8000 + }, + { + "source": "carolinedesbiens_FUNDS_agg", + "target": "carolinedesbiens", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2600 + }, + { + "source": "marcellussier_FUNDS_agg", + "target": "marcellussier", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 2883 + }, + { + "source": "jeanfrancoisbarbe_FUNDS_agg", + "target": "jeanfrancoisbarbe", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 500 + }, + { + "source": "yvesfrancoisblanchet_FUNDS_agg", + "target": "yvesfrancoisblanchet", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "simonpierresavardtremblay_FUNDS_agg", + "target": "simonpierresavardtremblay", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "louisgagnon_FUNDS_agg", + "target": "louisgagnon", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1300 + }, + { + "source": "danielpaille_FUNDS_agg", + "target": "danielpaille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1000 + }, + { + "source": "xavierbarsalouduval_FUNDS_agg", + "target": "xavierbarsalouduval", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 1500 + }, + { + "source": "paulebrunelle", + "target": "troisrivieresfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "paulebrunelle", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "paulebrunelle", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "paulebrunelle", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "odinadesrochers", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "odinadesrochers", + "target": "lotbinierechutesdelachaudierefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sergecardin", + "target": "membersofthehouseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sergecardin", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sergecardin", + "target": "sherbrookefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sergecardin", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "foreignaffairstradeanddevelopmentcanada", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "memberofparliament", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nathaliesinclairdesgagne", + "target": "subcommitteeonagendaandprocedurecommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nathaliesinclairdesgagne", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nathaliesinclairdesgagne", + "target": "publicaccountscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nathaliesinclairdesgagne", + "target": "publicaccountscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nathaliesinclairdesgagne", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nathaliesinclairdesgagne", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nathaliesinclairdesgagne", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nathaliesinclairdesgagne", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nathaliesinclairdesgagne", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nathaliesinclairdesgagne", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nathaliesinclairdesgagne", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nathaliesinclairdesgagne", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nathaliesinclairdesgagne", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nathaliesinclairdesgagne", + "target": "terrebonnefederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nathaliesinclairdesgagne", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "nathaliesinclairdesgagne", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "argenteuilpapineaumirabelfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "argenteuilpapineaumirabelfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "membersofthehouseofparliament", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "canadacouncilforthearts", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "canadiandairycommissioncdc", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeandenisgaron", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeandenisgaron", + "target": "scrutinyofregulationscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeandenisgaron", + "target": "scrutinyofregulationscommittee", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeandenisgaron", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeandenisgaron", + "target": "mirabelfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeandenisgaron", + "target": "blocquebecoiscaucus", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeandenisgaron", + "target": "canadaeuropeparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeandenisgaron", + "target": "canadafranceinterparliamentaryassociation", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeandenisgaron", + "target": "canadagermanyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeandenisgaron", + "target": "canadairelandinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeandenisgaron", + "target": "canadaisraelinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeandenisgaron", + "target": "canadaitalyinterparliamentarygroup", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeandenisgaron", + "target": "canadianbranchoftheassembleeparlementairedelafrancophonie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeandenisgaron", + "target": "canadiandelegationtotheorganizationforsecurityandcooperationineuropeparliamentaryassembly", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "jeandenisgaron", + "target": "canadiangroupoftheinterparliamentaryunion", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "charlesbourghautesaintcharlesfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "charlesbourghautesaintcharlesfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mirabelfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "mirabelfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lotbinierechutesdelachaudierefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "lotbinierechutesdelachaudierefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "comptonstansteadfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "comptonstansteadfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "levisbellechassefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "levisbellechassefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "meganticlerablefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "meganticlerablefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "chicoutimilefjordfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "chicoutimilefjordfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "chateauguaysaintconstantfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "chateauguaysaintconstantfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "publicaccountscommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "publicaccountscommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "ghislainfournier", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "ghislainfournier", + "target": "manicouaganfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "canadarevenueagencycra", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "scrutinyofregulationscommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "scrutinyofregulationscommittee", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "portneufjacquescartierfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "portneufjacquescartierfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marctessier", + "target": "newdemocraticparty", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marctessier", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "marctessier", + "target": "globalaffairscanadagac", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "richardmarceau", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "richardmarceau", + "target": "charlesbourghautesaintcharlesfederalriding", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "saintmauricechamplainfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "saintmauricechamplainfederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sherbrookefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "sherbrookefederalriding", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "francoisboileau", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "francoisboileau", + "target": "blocquebecois", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "francoisboileau", + "target": "canadarevenueagencycra", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 1 + }, + { + "source": "federalgovernmentofcanada_MEMBERSHIP_agg", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 476 + }, + { + "source": "850034995100751970_agg", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 29900 + }, + { + "source": "850034995100751970_agg", + "target": "mariobeaulieu", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6350 + }, + { + "source": "-4795702613996934394_agg", + "target": "liberalpartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 11120 + }, + { + "source": "-4795702613996934394_agg", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4800 + }, + { + "source": "1943127127267296056_agg", + "target": "houseofcommons", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 20 + }, + { + "source": "1943127127267296056_agg", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 32451 + }, + { + "source": "5935051427687482356_agg", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 7800 + }, + { + "source": "5935051427687482356_agg", + "target": "danielpaille", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6600 + }, + { + "source": "5861849729916613649_agg", + "target": "nancontributionsof200orlesscontributionsde200oumoins", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 21340534 + }, + { + "source": "5861849729916613649_agg", + "target": "nancontributionsof200orlesscontributionsde200oumoins", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 54856252 + }, + { + "source": "8445634091922891947_agg", + "target": "mariamourani", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 8600 + }, + { + "source": "8445634091922891947_agg", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 9470 + }, + { + "source": "118599530576325986_agg", + "target": "associationdublocquebecoisdechamblyborduas", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 5300 + }, + { + "source": "118599530576325986_agg", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 4975 + }, + { + "source": "8393289518414020481_agg", + "target": "conservativepartyofcanada", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 6307 + }, + { + "source": "8393289518414020481_agg", + "target": "blocquebecois", + "type": "FUNDS", + "color": "green", + "dash": [ + 2, + 3 + ], + "amount": 10325 + }, + { + "source": "-3252578206501676884_agg", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 856 + }, + { + "source": "218235677312250090_agg", + "target": "mariobeaulieu", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "nathaliesinclairdesgagne", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 8 + }, + { + "source": "218235677312250090_agg", + "target": "mariehelenegaudreau", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "gabrielstemarie", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "sylvieberube", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "kristinamichaud", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "carolinedesbiens", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "federalgovernmentofcanada", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "sebastienlemire", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "moniquepauze", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 8 + }, + { + "source": "218235677312250090_agg", + "target": "luctheriault", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "lucdesilets", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "mariosimard", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "yvesfrancoisblanchet", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "yvesperron", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "simonpierresavardtremblay", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "julievignola", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "stephanebergeron", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "alexisbrunelleduceppe", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "louisechabot", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "christinenormandin", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "xavierbarsalouduval", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "maximeblanchettejoncas", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "marilenegill", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "andreannelarouche", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "martinchampoux", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "denistrudel", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "jeandenisgaron", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 8 + }, + { + "source": "218235677312250090_agg", + "target": "louisplamondon", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "218235677312250090_agg", + "target": "rhealfortin", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 16 + }, + { + "source": "-2190736592288561385_agg", + "target": "pierreboucher", + "type": "MEMBERSHIP", + "color": "black", + "dash": [ + 0, + 0 + ], + "amount": 6 + } + ] +} \ No newline at end of file diff --git a/backend/app/app/data/Communication_DpohExport.csv b/backend/app/app/data/lobby_comms/Communication_DpohExport.csv similarity index 100% rename from backend/app/app/data/Communication_DpohExport.csv rename to backend/app/app/data/lobby_comms/Communication_DpohExport.csv diff --git a/backend/app/app/data/Communication_PrimaryExport.csv b/backend/app/app/data/lobby_comms/Communication_PrimaryExport.csv similarity index 99% rename from backend/app/app/data/Communication_PrimaryExport.csv rename to backend/app/app/data/lobby_comms/Communication_PrimaryExport.csv index 7cda0905..fcacca35 100644 --- a/backend/app/app/data/Communication_PrimaryExport.csv +++ b/backend/app/app/data/lobby_comms/Communication_PrimaryExport.csv @@ -10227,7 +10227,7 @@ 152798,354,BIOTECANADA,null,779416,BRENDERS,PETER,2010-07-07,3,2010-07-28,2010-08-16,null 152799,231201,Marathon Oil Canada Corporation,null,719634,Reynish,Steve,2010-07-14,2,2010-07-28,2010-07-28,null 152800,269404,Carleton University,null,733557,Runte,Roseann,2010-07-15,3,2010-07-28,2010-07-30,null -152801,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +152801,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",778343,WHITNEY,STEPHEN,2010-07-27,3,2010-07-28,2010-07-28,null 152803,15599,Novartis Pharmaceuticals Canada Inc.,null,765434,Rossi,Tom,2010-06-01,2,2010-07-28,2010-07-28,null 152804,15599,Novartis Pharmaceuticals Canada Inc.,null,765434,Rossi,Tom,2010-06-01,2,2010-07-28,2010-07-28,null @@ -15733,7 +15733,7 @@ DANS LES FRUITS ET LÉGUMES",778343,WHITNEY,STEPHEN,2010-07-27,3,2010-07-28,2010 167075,259082,The Financial Advisors Association of Canada,L'Assocation Des Conseillers En Finance Du Canada,759234,Pollock,Greg,2011-02-16,3,2011-03-01,2011-03-16,null 167076,16637,Shell Canada Limited,null,759294,Mitchelmore,Lorraine,2010-08-25,2,2011-03-01,2011-03-01,null 167077,890,TRANSPORT NANUK INC.,null,777690,SCHILLER,FRANCIS,2011-02-16,1,2011-03-01,2011-03-01,null -167078,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +167078,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",778343,WHITNEY,STEPHEN,2011-02-17,3,2011-03-01,2011-03-01,null 167079,890,TRANSPORT NANUK INC.,null,777690,SCHILLER,FRANCIS,2011-02-16,1,2011-03-01,2011-03-15,null 167080,256363,StoreFinancial Services of Canada Co.,null,728594,LeBlanc,Jeff,2011-02-08,1,2011-03-01,2011-03-16,null @@ -21368,9 +21368,9 @@ DANS LES FRUITS ET LÉGUMES",778343,WHITNEY,STEPHEN,2011-02-17,3,2011-03-01,2011 181824,13608,Canadian Steel Producers Association,L'Association canadienne des producteurs d'acier,781164,Watkins,Ron,2011-08-24,3,2011-08-26,2011-09-16,null 181864,15617,Raytheon International Incorporated,null,782155,Culligan,Thomas M.,2011-08-25,2,2011-08-26,2011-08-26,null 181884,548,Canadian Generic Pharmaceutical Association (CGPA),L'Association canadienne du médicament générique (ACMG),776966,KEON,JAMES,2011-08-26,3,2011-08-26,2011-09-16,null -181964,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +181964,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",778343,WHITNEY,STEPHEN,2011-07-14,3,2011-08-26,2011-08-26,null -181984,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +181984,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",778343,WHITNEY,STEPHEN,2011-06-28,3,2011-08-26,2011-08-26,181904 182004,223201,Frontier Duty Free Association,Association Frontiere Hors Taxes,710274,Karson,Laurie,2011-07-26,3,2011-08-29,2011-08-29,null 182024,223201,Frontier Duty Free Association,Association Frontiere Hors Taxes,710274,Karson,Laurie,2011-08-25,3,2011-08-29,2011-08-29,null @@ -28826,13 +28826,13 @@ DANS LES FRUITS ET LÉGUMES",778343,WHITNEY,STEPHEN,2011-06-28,3,2011-08-26,2011 157889,273423,Canadian MedicAlert Foundation,Fondation canadienne MedicAlert,785814,Legrove,Deborah,2010-10-25,1,2010-10-26,2010-12-14,null 157890,230703,Denali - The Alaska Gas Pipeline,null,781707,Seekings,Dan,2010-10-25,1,2010-10-26,2010-11-16,null 157891,230703,Denali - The Alaska Gas Pipeline,null,781707,Seekings,Dan,2010-10-25,1,2010-10-26,2010-11-16,null -157892,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +157892,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",778343,WHITNEY,STEPHEN,2010-10-25,3,2010-10-26,2010-10-26,null -157893,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +157893,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",778343,WHITNEY,STEPHEN,2010-10-25,3,2010-10-26,2010-10-26,null -157894,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +157894,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",778343,WHITNEY,STEPHEN,2010-10-25,3,2010-10-26,2010-10-26,null -157895,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +157895,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",778343,WHITNEY,STEPHEN,2010-10-25,3,2010-10-26,2010-10-26,null 157908,240721,Canadian Agri-Food Policy Institute,Institut canadien des politiques agro-alimentaires,776978,MCINNES,DAVID,2010-10-26,3,2010-10-27,2010-11-16,null 157928,4903,Rogers Communications Inc.,null,753555,Mohamed,Nadir,2010-10-26,2,2010-10-27,2010-11-16,null @@ -29921,7 +29921,7 @@ DANS LES FRUITS ET LÉGUMES",778343,WHITNEY,STEPHEN,2010-10-25,3,2010-10-26,2010 217785,15647,York University,null,782179,Shoukri,Mamdouh,2012-03-28,3,2012-04-13,2012-04-13,null 217786,5916,Dalhousie University,null,778157,Traves,Tom,2012-03-21,3,2012-04-13,2012-04-13,null 217787,16783,Canadian Egg Marketing Agency COB Egg Farmers of Canada,Office Canadien De Commercialisation Des Oeufs COB Les Producteurs D'Oeufs Du Canada,782882,Lambert,Tim,2012-03-21,3,2012-04-13,2012-04-13,null -217788,287044,"University of Ontario Institute of Technology +217788,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2012-03-29,3,2012-04-13,2012-04-13,null 217807,514,Business Council of Canada,Conseil canadien des affaires,777849,MANLEY,JOHN,2012-03-22,3,2012-04-13,2012-04-16,null 217808,14937,Multiple Sclerosis Society of Canada,Societe canadienne de la sclerose en plaques,779752,Savoie,Yves,2012-03-28,3,2012-04-13,2012-04-13,null @@ -31486,9 +31486,9 @@ DANS LES FRUITS ET LÉGUMES",778343,WHITNEY,STEPHEN,2010-10-25,3,2010-10-26,2010 148636,15240,AIR LINE PILOTS ASSOCIATION INTERNATIONAL,null,782053,ogilvie,allister,2010-05-11,3,2010-06-01,2010-06-16,null 148637,242401,Gairdner Foundation,null,782656,Dirks,John,2009-06-02,3,2010-05-20,2010-05-20,null 148638,242401,Gairdner Foundation,null,782656,Dirks,John,2009-09-02,3,2010-05-20,2010-05-20,null -148640,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +148640,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",778343,WHITNEY,STEPHEN,2010-04-19,3,2010-05-20,2010-05-20,null -148641,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +148641,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",778343,WHITNEY,STEPHEN,2010-05-18,3,2010-05-20,2010-05-20,null 148642,47,Canada's Building Trades Unions,,778331,BLAKELY,ROBERT,2010-05-12,3,2010-05-20,2010-06-16,null 148643,47,Canada's Building Trades Unions,,778331,BLAKELY,ROBERT,2010-05-12,3,2010-05-20,2010-06-16,null @@ -35644,7 +35644,7 @@ DANS LES FRUITS ET LÉGUMES",778343,WHITNEY,STEPHEN,2010-05-18,3,2010-05-20,2010 259211,16281,Renewable Industries Canada,Industries Renouvelables Canada,778206,Thurlow,Scott,2013-01-14,3,2013-02-14,2013-02-14,null 259212,16963,FÉDÉRATION DES CAISSES DESJARDINS DU QUÉBEC,null,783206,Leroux,Monique F.,2013-01-23,2,2013-02-14,2013-02-15,null 259214,16963,FÉDÉRATION DES CAISSES DESJARDINS DU QUÉBEC,null,783206,Leroux,Monique F.,2013-01-24,2,2013-02-14,2013-02-15,null -259229,287044,"University of Ontario Institute of Technology +259229,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2013-01-21,3,2013-02-15,2013-02-15,null 259230,452,Apotex Inc.,null,776481,KAY,JACK,2013-01-17,2,2013-02-14,2013-02-15,null 259249,566,Canadian Cattle Association,Association canadienne des bovins,777063,LAYCRAFT,DENNIS,2013-02-09,3,2013-02-14,2013-03-15,null @@ -35912,7 +35912,7 @@ DANS LES FRUITS ET LÉGUMES",778343,WHITNEY,STEPHEN,2010-05-18,3,2010-05-20,2010 259890,223484,Nova Scotia Power Incorporated,null,707134,Bennett,Robert,2012-12-11,2,2013-02-18,2013-02-18,null 259929,11842,BC Dairy Association,null,846452,Eto,David,2013-02-05,3,2013-02-18,2013-02-18,null 259949,15575,Canadian Life and Health Insurance Association Inc.,Association canadienne des compagnies d'assurances de personnes inc.,782227,Swedlove,Frank,2013-01-10,3,2013-02-19,2013-02-19,null -259950,287044,"University of Ontario Institute of Technology +259950,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2013-01-21,3,2013-02-19,2013-02-19,259213 259969,5798,cae inc.,null,755354,Parent,Marc,2013-01-30,2,2013-02-19,2013-02-19,null 259970,5798,cae inc.,null,755354,Parent,Marc,2013-01-30,2,2013-02-19,2013-02-19,null @@ -36459,7 +36459,7 @@ DANS LES FRUITS ET LÉGUMES",778343,WHITNEY,STEPHEN,2010-05-18,3,2010-05-20,2010 202780,282004,Strateco Resources Inc.,null,776708,SENÉCAL,JOHANNE,2011-10-25,1,2012-01-13,2012-01-13,192050 202781,15307,Canadian Bankers Association,Association des Banquiers Canadiens,792162,Campbell,Terry,2011-12-14,3,2012-01-13,2012-01-13,null 202782,278564,Intuit Inc.,null,777599,SLEMKO,KEN,2011-12-08,1,2012-01-13,2012-01-16,null -202783,287044,"University of Ontario Institute of Technology +202783,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2011-11-28,3,2012-01-13,2012-01-13,null 202784,282004,Strateco Resources Inc.,null,776708,SENÉCAL,JOHANNE,2011-10-20,1,2012-01-13,2012-01-13,192048 202785,278564,Intuit Inc.,null,777599,SLEMKO,KEN,2011-12-07,1,2012-01-13,2012-01-16,null @@ -36473,7 +36473,7 @@ DANS LES FRUITS ET LÉGUMES",778343,WHITNEY,STEPHEN,2010-05-18,3,2010-05-20,2010 202793,15307,Canadian Bankers Association,Association des Banquiers Canadiens,792162,Campbell,Terry,2011-12-19,3,2012-01-13,2012-01-13,null 202794,5312,Sanofi Pasteur,null,777519,METCALFE,HERB,2011-12-08,1,2012-01-13,2012-01-16,null 202795,15791,Alliance of Manufacturers & Exporters Canada (CME),Alliance des manufacturiers et des exportateurs du Canada (MEC),782413,Myers,Jayson,2011-12-12,3,2012-01-13,2012-01-13,null -202796,287044,"University of Ontario Institute of Technology +202796,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2011-12-21,3,2012-01-13,2012-01-13,null 202797,5312,Sanofi Pasteur,null,777519,METCALFE,HERB,2011-12-08,1,2012-01-13,2012-01-16,null 202798,15708,Shaw Communications,null,797926,Shaw,Brad,2011-12-16,2,2012-01-13,2012-01-13,null @@ -49571,9 +49571,9 @@ DANS LES FRUITS ET LÉGUMES",778343,WHITNEY,STEPHEN,2010-05-18,3,2010-05-20,2010 254629,318,Canadian Blood Services,Societe Canadienne du Sang,778641,SHER,GRAHAM,2012-12-19,3,2013-01-16,2013-01-16,null 254630,318,Canadian Blood Services,Societe Canadienne du Sang,778641,SHER,GRAHAM,2012-09-25,3,2013-01-16,2013-01-16,null 254650,223983,Law Society Ontario,Barreau de l'Ontario,825051,Lapper,Robert,2012-12-12,3,2013-01-16,2013-01-16,null -254669,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +254669,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2012-11-20,3,2013-01-16,2013-01-16,null -254670,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +254670,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2012-11-20,3,2013-01-16,2013-01-16,null 254689,555,Canadian Construction Association,Association canadienne de la construction,777048,ATKINSON,MICHAEL,2013-01-16,3,2013-01-16,2013-01-16,null 254709,17112,Canadian Wildlife Federation (CWF),Fédération canadienne de la faune (FCF),781520,Mackenzie,Michelle,2013-01-10,1,2013-01-17,2013-02-15,null @@ -50276,9 +50276,9 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2012-11-20,3,2013-01-16,2013-01- 305209,258842,Canadian Beverage Association,Association canadienne des boissons,782487,Goetz,Jim,2013-10-09,3,2013-11-18,2013-11-18,null 305210,258842,Canadian Beverage Association,Association canadienne des boissons,782487,Goetz,Jim,2013-10-09,3,2013-11-18,2013-11-18,null 305211,15009,Air Canada,null,776513,ROVINESCU,CALIN,2013-10-21,2,2013-11-18,2013-11-18,null -305229,287044,"University of Ontario Institute of Technology +305229,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2013-09-13,3,2013-11-18,2013-11-18,null -305230,287044,"University of Ontario Institute of Technology +305230,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2013-11-08,3,2013-11-18,2013-12-15,null 305249,15647,York University,null,782179,Shoukri,Mamdouh,2013-10-11,3,2013-11-19,2013-11-19,null 305250,15647,York University,null,782179,Shoukri,Mamdouh,2013-10-11,3,2013-11-19,2013-11-19,null @@ -51091,11 +51091,11 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2012-11-20,3,2013-01-16,2013-01- 299491,229581,General Dynamics Ordnance and Tactical Systems - Canada Inc.,General Dynamics Produits de défense et Systèmes tactiques - Canada Inc.,718394,Falardeau,André,2013-10-09,2,2013-10-30,2013-10-30,null 299493,229581,General Dynamics Ordnance and Tactical Systems - Canada Inc.,General Dynamics Produits de défense et Systèmes tactiques - Canada Inc.,718394,Falardeau,André,2013-10-22,2,2013-10-30,2013-10-30,null 299496,229581,General Dynamics Ordnance and Tactical Systems - Canada Inc.,General Dynamics Produits de défense et Systèmes tactiques - Canada Inc.,718394,Falardeau,André,2013-10-25,2,2013-10-30,2013-10-30,null -299498,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +299498,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2013-09-23,3,2013-10-30,2013-10-30,299494 -299499,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +299499,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2013-10-04,3,2013-10-30,2013-10-30,299497 -299500,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +299500,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2013-08-27,3,2013-10-30,2013-10-30,299495 299509,306386,Amalgamated Transit Union - Canada,Syndicat Uni du Transport,847032,Noble,Wendy,2013-10-24,1,2013-10-30,2013-11-15,null 299511,306386,Amalgamated Transit Union - Canada,Syndicat Uni du Transport,847032,Noble,Wendy,2013-10-29,1,2013-10-30,2013-11-15,299510 @@ -52629,11 +52629,11 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2013-08-27,3,2013-10-30,2013-10- 276531,237081,Mitacs Inc.,null,782774,Gupta,Arvind,2013-05-28,3,2013-06-11,2013-06-11,null 276532,237081,Mitacs Inc.,null,782774,Gupta,Arvind,2013-05-29,3,2013-06-11,2013-06-11,null 276533,14940,Oxfam-Québec,null,781688,Véronneau,Pierre,2013-04-04,3,2013-06-11,2013-06-11,null -276534,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +276534,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2013-04-15,3,2013-06-11,2013-06-11,null 276535,237081,Mitacs Inc.,null,782774,Gupta,Arvind,2013-05-29,3,2013-06-11,2013-06-11,null 276536,308265,Northwestel Inc.,null,788208,Carson,Lee,2013-05-03,1,2013-06-13,2013-06-13,null -276537,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +276537,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2013-04-02,3,2013-06-11,2013-06-11,null 276538,308126,Candu Energy Inc.,null,790541,Goodman,Brian,2013-05-23,1,2013-06-11,2013-06-15,null 276539,423,Universities Canada,Universités Canada,738814,Davidson,Paul,2013-05-23,3,2013-06-11,2013-06-11,null @@ -52708,7 +52708,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2013-04-02,3,2013-06-11,2013-06- 276651,17019,World Society for the Protection of Animals,Société Mondiale pour la Protection des Animaux,828111,Kitson,Josey,2013-05-28,3,2013-06-11,2013-06-15,null 276652,17019,World Society for the Protection of Animals,Société Mondiale pour la Protection des Animaux,828111,Kitson,Josey,2013-05-28,3,2013-06-11,2013-06-15,null 276653,224822,Vale Canada Limited,null,815551,Poppinga,Peter,2013-05-22,2,2013-06-11,2013-06-11,null -276654,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +276654,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2013-05-31,3,2013-06-11,2013-06-11,null 276655,224822,Vale Canada Limited,null,815551,Poppinga,Peter,2013-05-24,2,2013-06-11,2013-06-11,null 276656,17019,World Society for the Protection of Animals,Société Mondiale pour la Protection des Animaux,828111,Kitson,Josey,2013-05-28,3,2013-06-11,2013-06-15,null @@ -53640,14 +53640,14 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2013-05-31,3,2013-06-11,2013-06- 310469,295105,Statoil Canada Ltd.,null,841032,Tungesvik,Ståle,2013-11-19,2,2013-12-13,2013-12-15,null 310470,270204,Teck Resources Limited,null,771175,Lindsay,Donald,2013-11-19,2,2013-12-13,2013-12-13,310431 310471,227341,Canadian Medical Association,Association médicale canadienne,742754,Cloutier,Paul-Émile,2013-11-07,3,2013-12-13,2013-12-13,null -310472,287044,"University of Ontario Institute of Technology +310472,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2013-10-22,3,2013-12-13,2013-12-13,300309 310473,4590,Canadian Federation of Independent Business (CFIB),Fédération canadienne de l’entreprise indépendante (FCEI),832352,Kelly,Daniel,2013-11-08,3,2013-12-13,2013-12-13,null 310474,295105,Statoil Canada Ltd.,null,841032,Tungesvik,Ståle,2013-11-20,2,2013-12-13,2013-12-15,null 310475,5466,Winnipeg Airports Authority Inc.,null,778203,Rempel,Barry,2013-11-06,2,2013-12-13,2013-12-13,null 310476,4590,Canadian Federation of Independent Business (CFIB),Fédération canadienne de l’entreprise indépendante (FCEI),832352,Kelly,Daniel,2013-11-12,3,2013-12-13,2013-12-13,null 310477,295105,Statoil Canada Ltd.,null,841032,Tungesvik,Ståle,2013-11-20,2,2013-12-13,2013-12-13,null -310479,287044,"University of Ontario Institute of Technology +310479,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2013-10-22,3,2013-12-13,2013-12-13,299692 310480,270204,Teck Resources Limited,null,771175,Lindsay,Donald,2013-11-19,2,2013-12-13,2013-12-13,310448 310481,5009,University of Calgary,null,775128,Cannon,Elizabeth,2013-11-01,3,2013-12-13,2013-12-15,null @@ -54480,20 +54480,20 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2013-05-31,3,2013-06-11,2013-06- 315182,311105,Farmers of North America,null,856133,Mann,James,2014-01-24,2,2014-02-10,2014-02-10,null 315183,12991,Polytechnics Canada,Polytechnics Canada,775805,ROBINSON,NOBINA,2014-01-29,3,2014-02-10,2014-02-15,null 315189,296345,Salesforce.com,null,771754,Munnoch,Scott,2014-01-22,1,2014-02-10,2014-02-15,null -315209,287044,"University of Ontario Institute of Technology +315209,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2014-01-08,3,2014-02-10,2014-02-15,null -315210,287044,"University of Ontario Institute of Technology +315210,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2014-01-08,3,2014-02-10,2014-02-15,null -315211,287044,"University of Ontario Institute of Technology +315211,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2014-01-08,3,2014-02-10,2014-02-15,null 315212,306386,Amalgamated Transit Union - Canada,Syndicat Uni du Transport,847032,Noble,Wendy,2014-02-10,1,2014-02-10,2014-02-12,null -315213,287044,"University of Ontario Institute of Technology +315213,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2014-01-08,3,2014-02-10,2014-02-15,null -315214,287044,"University of Ontario Institute of Technology +315214,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2014-01-08,3,2014-02-10,2014-02-10,null -315215,287044,"University of Ontario Institute of Technology +315215,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2014-01-09,3,2014-02-10,2014-02-15,null -315216,287044,"University of Ontario Institute of Technology +315216,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2014-01-09,3,2014-02-10,2014-02-15,null 315217,5260,The Canadian National Railway Company,La Compagnie des chemins de fer nationaux du Canada,760994,Mongeau,Claude,2014-01-21,2,2014-02-10,2014-02-15,null 315218,5260,The Canadian National Railway Company,La Compagnie des chemins de fer nationaux du Canada,760994,Mongeau,Claude,2014-01-10,2,2014-02-10,2014-02-15,null @@ -54511,9 +54511,9 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2013-05-31,3,2013-06-11,2013-06- 315230,323685,Canada Grains Council,null,779762,Phillips,Richard,2014-02-10,3,2014-02-10,2014-02-10,null 315231,609,Canadian Shipowners Association,Association des armateurs canadiens,839213,LEWIS-MANNING,ROBERT,2014-01-29,3,2014-02-10,2014-02-10,null 315232,609,Canadian Shipowners Association,Association des armateurs canadiens,839213,LEWIS-MANNING,ROBERT,2014-01-29,3,2014-02-10,2014-02-10,null -315233,287044,"University of Ontario Institute of Technology +315233,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2014-01-16,3,2014-02-10,2014-02-15,null -315234,287044,"University of Ontario Institute of Technology +315234,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2014-01-30,3,2014-02-10,2014-02-15,null 315249,5329,The Toronto-Dominion Bank,null,777535,Clark,W. Edmund,2014-01-31,2,2014-02-10,2014-02-15,null 315250,5329,The Toronto-Dominion Bank,null,777535,Clark,W. Edmund,2014-01-07,2,2014-02-10,2014-02-15,null @@ -57256,7 +57256,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2013-05-31,3,2013-06-11,2013-06- 279551,14315,Prospectors and Developers Association of Canada,Association canadienne des prospecteurs et entrepreneurs,807676,Gallinger,Ross,2013-06-12,3,2013-07-02,2013-07-02,null 279552,14315,Prospectors and Developers Association of Canada,Association canadienne des prospecteurs et entrepreneurs,807676,Gallinger,Ross,2013-06-13,3,2013-07-02,2013-07-02,null 279553,14315,Prospectors and Developers Association of Canada,Association canadienne des prospecteurs et entrepreneurs,807676,Gallinger,Ross,2013-06-13,3,2013-07-02,2013-07-02,null -279569,287044,"University of Ontario Institute of Technology +279569,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2013-04-15,3,2013-07-02,2013-07-02,null 279610,281784,Merit Canada,null,778795,Oakey,Terrance,2013-06-18,3,2013-07-02,2013-07-02,null 279611,281784,Merit Canada,null,778795,Oakey,Terrance,2013-06-17,3,2013-07-02,2013-07-02,279609 @@ -57879,7 +57879,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2013-05-31,3,2013-06-11,2013-06- 324436,251422,Canadian Psychological Association,Societe canadienne de psychologie,742674,Cohen,Karen,2014-05-06,3,2014-05-13,2014-05-13,null 324438,297745,U.S. Television Coalition,null,777690,SCHILLER,FRANCIS,2014-05-13,1,2014-05-13,2014-06-15,null 324439,251422,Canadian Psychological Association,Societe canadienne de psychologie,742674,Cohen,Karen,2014-05-06,3,2014-05-13,2014-05-13,324173 -318855,287044,"University of Ontario Institute of Technology +318855,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2014-02-12,3,2014-03-12,2014-03-15,null 318856,323426,RGA Life Reinsurance Company of Canada,null,777730,BROCK,DANIEL,2014-03-06,1,2014-03-12,2014-03-12,null 318857,323426,RGA Life Reinsurance Company of Canada,null,777730,BROCK,DANIEL,2014-02-07,1,2014-03-12,2014-03-12,null @@ -59109,7 +59109,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2013-05-31,3,2013-06-11,2013-06- 320538,312905,Canada World Youth,Jeunesse Canada Monde,777875,Karakas,Rita,2013-12-13,3,2014-03-28,2014-03-28,null 320539,312905,Canada World Youth,Jeunesse Canada Monde,777875,Karakas,Rita,2014-01-30,3,2014-03-28,2014-03-28,null 320549,222781,Great-West Lifeco Inc.,null,871793,Mahon,Paul,2014-03-11,2,2014-03-31,2014-03-31,null -320569,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +320569,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2014-03-28,3,2014-03-31,2014-03-31,null 320570,6419,The Canadian Chiropractic Association,L'Association Chiropratique Canadienne,842912,Dantas,Alison,2014-02-04,3,2014-03-31,2014-03-31,null 320571,6419,The Canadian Chiropractic Association,L'Association Chiropratique Canadienne,842912,Dantas,Alison,2014-02-04,3,2014-03-31,2014-03-31,null @@ -60311,11 +60311,11 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2014-03-28,3,2014-03-31,2014-03- 331969,289945,Shaw Communications Inc.,null,779032,STEIN,KEN,2014-08-07,1,2014-08-20,2014-09-15,null 331970,289945,Shaw Communications Inc.,null,779032,STEIN,KEN,2014-08-07,1,2014-08-20,2014-09-15,null 331971,289945,Shaw Communications Inc.,null,779032,STEIN,KEN,2014-08-07,1,2014-08-20,2014-09-15,null -331972,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +331972,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2014-07-31,3,2014-08-20,2014-08-20,null -331973,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +331973,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2014-05-24,3,2014-08-20,2014-08-20,null -331974,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +331974,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2014-08-14,3,2014-08-20,2014-08-20,null 331975,13608,Canadian Steel Producers Association,L'Association canadienne des producteurs d'acier,781164,Watkins,Ron,2014-08-20,3,2014-08-20,2014-09-15,null 331989,13495,Canadian AIDS Society,Société canadienne du sida,781223,Doolittle-Romas,Monique,2014-08-05,3,2014-08-20,2014-08-20,null @@ -61288,7 +61288,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2014-08-14,3,2014-08-20,2014-08- 321654,14937,Multiple Sclerosis Society of Canada,Societe canadienne de la sclerose en plaques,779752,Savoie,Yves,2014-03-27,3,2014-04-15,2014-04-15,null 321670,15787,Canadian Chamber of Commerce,La Chambre de commerce du Canada,782298,Beatty,Perrin,2014-03-27,3,2014-04-11,2014-04-11,320702 321671,16168,Magellan Aerospace Corporation,null,782396,Butyniec,James,2014-03-26,2,2014-04-10,2014-04-15,null -321672,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +321672,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2014-04-10,3,2014-04-10,2014-04-10,null 321673,235321,Teva Canada Limited,Teva Canada Limitee,887274,Sommerville,Douglas,2014-03-12,2,2014-04-10,2014-04-15,null 321674,16637,Shell Canada Limited,null,759294,Mitchelmore,Lorraine,2014-03-31,2,2014-04-10,2014-04-15,null @@ -63308,16 +63308,16 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2014-04-10,3,2014-04-10,2014-04- 333205,319385,Terra International (Canada) Inc.,,870252,Holowachuk,Russell,2014-09-04,2,2014-09-10,2014-10-15,null 333206,16168,Magellan Aerospace Corporation,null,782396,Butyniec,James,2014-08-21,2,2014-09-10,2014-09-15,null 333207,16168,Magellan Aerospace Corporation,null,782396,Butyniec,James,2014-09-05,2,2014-09-10,2014-10-15,null -333209,287044,"University of Ontario Institute of Technology +333209,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2014-08-06,3,2014-09-10,2014-09-15,null 333211,16209,Council of Ontario Universities,null,765514,Patterson,Bonnie,2014-08-11,3,2014-09-10,2014-09-10,null 333212,226821,"Ford Motor Company of Canada, Ltd.",null,812751,Craig,Dianne,2014-08-08,2,2014-09-10,2014-09-15,null 333213,226821,"Ford Motor Company of Canada, Ltd.",null,812751,Craig,Dianne,2014-08-20,2,2014-09-10,2014-09-15,null 333214,226821,"Ford Motor Company of Canada, Ltd.",null,812751,Craig,Dianne,2014-08-21,2,2014-09-10,2014-09-15,null 333215,226821,"Ford Motor Company of Canada, Ltd.",null,812751,Craig,Dianne,2014-08-21,2,2014-09-10,2014-09-15,null -333216,287044,"University of Ontario Institute of Technology +333216,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2014-08-13,3,2014-09-10,2014-09-15,null -333217,287044,"University of Ontario Institute of Technology +333217,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2014-08-26,3,2014-09-10,2014-09-15,null 333218,226821,"Ford Motor Company of Canada, Ltd.",null,812751,Craig,Dianne,2014-08-22,2,2014-09-10,2014-09-15,null 333219,226821,"Ford Motor Company of Canada, Ltd.",null,812751,Craig,Dianne,2014-08-24,2,2014-09-10,2014-09-15,null @@ -63686,7 +63686,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2014-04-10,3,2014-04-10,2014-04- 333809,13267,University of Victoria,null,868812,Cassels,Jamie,2014-08-28,3,2014-09-16,2014-09-16,null 333810,13267,University of Victoria,null,868812,Cassels,Jamie,2014-08-29,3,2014-09-16,2014-09-16,null 333830,5466,Winnipeg Airports Authority Inc.,null,778203,Rempel,Barry,2014-08-11,2,2014-09-16,2014-09-16,null -333831,287044,"University of Ontario Institute of Technology +333831,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2014-08-12,3,2014-09-16,2014-09-16,333210 333832,16891,The Arthritis Society,La Société d'Arthrite,775691,YALE,JANET,2014-06-16,3,2014-09-16,2014-09-16,null 333833,16891,The Arthritis Society,La Société d'Arthrite,775691,YALE,JANET,2014-06-17,3,2014-09-16,2014-09-16,null @@ -64221,7 +64221,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2014-04-10,3,2014-04-10,2014-04- 338360,514,Business Council of Canada,Conseil canadien des affaires,777849,MANLEY,JOHN,2014-10-31,3,2014-11-13,2014-11-15,null 338361,15791,Alliance of Manufacturers & Exporters Canada (CME),Alliance des manufacturiers et des exportateurs du Canada (MEC),782413,Myers,Jayson,2014-10-07,3,2014-11-13,2014-11-13,null 338362,15307,Canadian Bankers Association,Association des Banquiers Canadiens,792162,Campbell,Terry,2014-10-02,3,2014-11-13,2014-11-13,null -338363,287044,"University of Ontario Institute of Technology +338363,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2014-10-23,3,2014-11-13,2014-11-15,null 338364,15791,Alliance of Manufacturers & Exporters Canada (CME),Alliance des manufacturiers et des exportateurs du Canada (MEC),782413,Myers,Jayson,2014-10-07,3,2014-11-13,2014-11-13,null 338365,15307,Canadian Bankers Association,Association des Banquiers Canadiens,792162,Campbell,Terry,2014-10-02,3,2014-11-13,2014-11-13,null @@ -65160,7 +65160,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2014-04-10,3,2014-04-10,2014-04- 343800,339586,County of Renfrew,null,781562,Maheux,Line,2014-12-11,1,2015-01-14,2015-01-15,null 343801,339586,County of Renfrew,null,781562,Maheux,Line,2014-12-17,1,2015-01-14,2015-01-15,null 343802,13726,Vancouver International Airport Authority,null,868852,Richmond,Craig,2014-12-18,2,2015-01-14,2015-01-14,null -343803,287044,"University of Ontario Institute of Technology +343803,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2014-12-10,3,2015-01-14,2015-01-15,null 343804,283064,Royal Life Saving Society Canada,Société royale de Sauvetage du Canada,802550,Chalifour,Yvan,2014-12-03,3,2015-01-14,2015-01-15,null 343805,14940,Oxfam-Québec,null,870773,Byrnes,Denise,2014-12-17,3,2015-01-14,2015-01-14,null @@ -66661,14 +66661,14 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2014-04-10,3,2014-04-10,2014-04- 340954,12699,The Mining Association of Canada (MAC),L'association minière du Canada (AMC),779221,GRATTON,PIERRE,2014-11-18,3,2014-12-11,2014-12-11,null 335319,15307,Canadian Bankers Association,Association des Banquiers Canadiens,792162,Campbell,Terry,2014-09-04,3,2014-10-10,2014-10-10,null 335320,235601,TELUS Corporation,null,781813,Entwistle,Darren,2014-09-30,2,2014-10-10,2014-10-10,null -335321,287044,"University of Ontario Institute of Technology +335321,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2014-09-05,3,2014-10-10,2014-10-15,null 335322,15307,Canadian Bankers Association,Association des Banquiers Canadiens,792162,Campbell,Terry,2014-09-11,3,2014-10-10,2014-10-10,null 335323,235601,TELUS Corporation,null,781813,Entwistle,Darren,2014-09-17,2,2014-10-10,2014-10-15,null 335324,235601,TELUS Corporation,null,781813,Entwistle,Darren,2014-09-08,2,2014-10-10,2014-10-15,null 335325,235601,TELUS Corporation,null,781813,Entwistle,Darren,2014-09-09,2,2014-10-10,2014-10-15,null 335326,235601,TELUS Corporation,null,781813,Entwistle,Darren,2014-09-23,2,2014-10-10,2014-10-15,null -335327,287044,"University of Ontario Institute of Technology +335327,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2014-09-22,3,2014-10-10,2014-10-15,null 335328,14804,Indspire,null,777733,Jamieson,Roberta ,2014-06-02,3,2014-10-10,2014-10-10,null 335329,235601,TELUS Corporation,null,781813,Entwistle,Darren,2014-09-30,2,2014-10-10,2014-10-15,null @@ -67954,14 +67954,14 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2014-04-10,3,2014-04-10,2014-04- 347295,16637,Shell Canada Limited,null,759294,Mitchelmore,Lorraine,2015-01-23,2,2015-02-13,2015-02-16,null 347296,16637,Shell Canada Limited,null,759294,Mitchelmore,Lorraine,2015-01-07,2,2015-02-13,2015-02-16,null 347297,16637,Shell Canada Limited,null,759294,Mitchelmore,Lorraine,2015-01-27,2,2015-02-13,2015-02-16,null -347298,287044,"University of Ontario Institute of Technology +347298,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2015-01-27,3,2015-02-13,2015-02-16,null 347299,16168,Magellan Aerospace Corporation,null,906563,Underwood,Phillip,2015-02-11,2,2015-02-13,2015-03-16,null 347300,119,Heart and Stroke Foundation of Canada,Fondation des maladies du coeur et de l’AVC,807710,Sculthorpe,David,2015-01-07,3,2015-02-13,2015-02-13,null -347301,287044,"University of Ontario Institute of Technology +347301,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2015-01-22,3,2015-02-13,2015-02-16,null 347302,5064,CANADIAN IMPERIAL BANK OF COMMERCE ( CIBC),null,905360,Dodig,Victor,2015-01-22,2,2015-02-13,2015-02-16,null -347303,287044,"University of Ontario Institute of Technology +347303,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2015-01-22,3,2015-02-13,2015-02-16,null 347304,119,Heart and Stroke Foundation of Canada,Fondation des maladies du coeur et de l’AVC,807710,Sculthorpe,David,2015-01-16,3,2015-02-13,2015-02-13,null 347305,5064,CANADIAN IMPERIAL BANK OF COMMERCE ( CIBC),null,905360,Dodig,Victor,2015-01-27,2,2015-02-13,2015-02-13,null @@ -68273,15 +68273,15 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2014-04-10,3,2014-04-10,2014-04- 347897,246422,Canadian Automobile Dealers Association,Corporation des associations de détaillants d'automobiles,720396,Hatch,Michael,2015-02-24,1,2015-02-24,2015-02-24,null 347898,136,Forest Products Association of Canada,Association des produits forestiers du Canada,839552,Lindsay,David,2015-02-24,3,2015-02-24,2015-03-16,null 347899,236,Canadian Police Association,Association canadienne des policiers,796902,Stamatakis,Tom,2015-02-17,3,2015-02-24,2015-02-24,null -347900,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +347900,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-01-06,3,2015-02-24,2015-02-24,null -347901,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +347901,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-02-20,3,2015-02-24,2015-02-24,null -347903,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +347903,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-02-20,3,2015-02-24,2015-02-24,347902 -347904,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +347904,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-02-20,3,2015-02-24,2015-02-24,null -347905,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +347905,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-02-20,3,2015-02-24,2015-02-24,null 347907,290605,Canadian Association of Professional Employees,Association canadienne des employés professionnels,727615,Poirier,Claude,2015-02-17,3,2015-02-24,2015-02-24,null 347908,15817,Rick Hansen Foundation,null,834912,Ehling,Doramy,2015-02-05,3,2015-02-24,2015-02-24,null @@ -68816,7 +68816,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-02-20,3,2015-02-24,2015-02- 337092,289785,Adobe Systems Inc.,null,783260,Hunter,Gordon,2014-10-28,1,2014-10-30,2014-10-30,null 337093,289785,Adobe Systems Inc.,null,783260,Hunter,Gordon,2014-10-28,1,2014-10-30,2014-10-30,null 337094,14148,Entrust Datacard,null,777274,LITTLE,W.E.ROBERT,2014-10-23,1,2014-10-30,2014-11-15,null -337095,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +337095,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2014-10-15,3,2014-10-30,2014-10-30,null 337096,16105,"Deans Council - Agriculture, Food & Veterinary Medicine, (Deans Council AFVM)","Conseil des Doyens - Agriculture, Alimentation & Médecine Vétérinaire, (Conseil des Doyens AAMV)",884213,Haverson,Clarence,2014-10-07,3,2014-10-30,2014-10-30,null 337109,305606,BCE Inc.,null,781020,Boudria,Don,2014-10-30,1,2014-10-31,2014-10-31,null @@ -72821,7 +72821,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2014-10-15,3,2014-10-30,2014-10- 338073,258842,Canadian Beverage Association,Association canadienne des boissons,782487,Goetz,Jim,2014-10-30,3,2014-11-12,2014-11-15,null 338075,258842,Canadian Beverage Association,Association canadienne des boissons,782487,Goetz,Jim,2014-10-30,3,2014-11-12,2014-11-12,338074 338076,258842,Canadian Beverage Association,Association canadienne des boissons,782487,Goetz,Jim,2014-10-30,3,2014-11-12,2014-11-15,null -338077,287044,"University of Ontario Institute of Technology +338077,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2014-10-03,3,2014-11-13,2014-11-15,null 338078,258842,Canadian Beverage Association,Association canadienne des boissons,782487,Goetz,Jim,2014-10-30,3,2014-11-12,2014-11-15,null 338079,4978,GENERAL ELECTRIC CANADA,null,777636,Allan,Elyse,2014-10-17,2,2014-11-12,2014-11-15,null @@ -73831,7 +73831,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2014-10-15,3,2014-10-30,2014-10- 382328,5381,Genome Canada,null,776612,LEPAGE,MARC,2016-07-27,3,2016-08-12,2016-08-15,null 382329,240241,null,Enerkem Inc.,725514,Chornet,Vincent,2016-07-28,2,2016-08-12,2016-08-12,null 382331,240241,null,Enerkem Inc.,725514,Chornet,Vincent,2016-07-28,2,2016-08-12,2016-08-12,null -382334,287044,"University of Ontario Institute of Technology +382334,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2016-07-04,3,2016-08-12,2016-08-15,null 382336,240241,null,Enerkem Inc.,725514,Chornet,Vincent,2016-07-14,2,2016-08-12,2016-08-12,null 382337,358202,TESLA Motors,TESLA Motors,881114,Johnson,Marie-Claude,2016-08-09,1,2016-08-12,2016-08-12,null @@ -74106,7 +74106,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2014-10-15,3,2014-10-30,2014-10- 400732,359740,Canadian Music Publishers Association d/b/a Music Publishers Canada,,788182,Chisick,Casey,2017-04-03,1,2017-05-15,2017-05-15,null 400733,358078,Nature United,,914368,Pimblett,Jim,2017-04-26,1,2017-05-15,2017-05-15,null 400735,15521,Canadian Agri-Food Trade Alliance,Alliance Canadienne du Commerce Agroalimentaire,898359,Citeau,Claire,2017-04-12,3,2017-05-15,2017-05-15,null -400736,287044,"University of Ontario Institute of Technology +400736,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2017-04-10,3,2017-05-15,2017-05-15,null 400737,358078,Nature United,,914368,Pimblett,Jim,2017-04-26,1,2017-05-15,2017-05-15,null 400738,4971,Bell Canada,,713274,Cope,George,2017-04-12,2,2017-05-15,2017-05-15,null @@ -76692,7 +76692,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2014-10-15,3,2014-10-30,2014-10- 353290,47,Canada's Building Trades Unions,,778331,BLAKELY,ROBERT,2015-04-30,3,2015-05-11,2015-05-15,null 353292,47,Canada's Building Trades Unions,,778331,BLAKELY,ROBERT,2015-05-05,3,2015-05-11,2015-05-11,null 353293,47,Canada's Building Trades Unions,,778331,BLAKELY,ROBERT,2015-05-05,3,2015-05-11,2015-06-15,null -353294,287044,"University of Ontario Institute of Technology +353294,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2015-04-23,3,2015-05-11,2015-05-15,null 401646,359495,Canadian Federal Pilots Association,Association des pilotes fédéraux du Canada,930807,Thompson,Trevor,2017-05-01,1,2017-05-31,2017-05-31,null 401647,359495,Canadian Federal Pilots Association,Association des pilotes fédéraux du Canada,930807,Thompson,Trevor,2017-05-02,1,2017-05-31,2017-05-31,null @@ -81406,7 +81406,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2014-10-15,3,2014-10-30,2014-10- 403288,12699,The Mining Association of Canada (MAC),L'association minière du Canada (AMC),779221,GRATTON,PIERRE,2017-05-04,3,2017-06-14,2017-06-14,null 403289,359409,Newmont North America,Newmont North America,930765,Scarr,Latitia,2017-05-03,1,2017-06-14,2017-06-14,null 403290,16086,Repsol Oil & Gas Canada Inc.,null,914102,Cabra Dueñas,Luis,2017-05-09,2,2017-06-14,2017-06-14,null -403291,287044,"University of Ontario Institute of Technology +403291,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2017-05-24,3,2017-06-14,2017-06-15,null 403292,360109,TransCanada Pipelines Limited,,776557,ROWE,EDWARD,2017-05-11,1,2017-06-14,2017-06-23,null 403293,5009,University of Calgary,null,775128,Cannon,Elizabeth,2017-05-10,3,2017-06-14,2017-06-15,null @@ -82741,20 +82741,20 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2014-10-15,3,2014-10-30,2014-10- 419800,235601,TELUS Corporation,null,781813,Entwistle,Darren,2018-01-29,2,2018-02-14,2018-02-15,null 419801,16977,Ontario Teachers' Pension Plan Board,null,887033,Mock,Ronald,2018-02-13,2,2018-02-14,2018-03-15,null 419802,235601,TELUS Corporation,null,781813,Entwistle,Darren,2018-01-29,2,2018-02-14,2018-02-15,null -419804,287044,"University of Ontario Institute of Technology +419804,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,936438,Bailey,Robert,2018-01-15,3,2018-02-14,2018-02-15,null 419806,235601,TELUS Corporation,null,781813,Entwistle,Darren,2018-01-30,2,2018-02-14,2018-02-15,null 419807,235601,TELUS Corporation,null,781813,Entwistle,Darren,2018-01-31,2,2018-02-14,2018-02-15,null 419808,13608,Canadian Steel Producers Association,L'Association canadienne des producteurs d'acier,776208,GALIMBERTI,JOSEPH,2018-01-29,3,2018-02-14,2018-02-14,null 419809,16977,Ontario Teachers' Pension Plan Board,null,887033,Mock,Ronald,2018-02-13,2,2018-02-14,2018-03-15,null -419810,287044,"University of Ontario Institute of Technology +419810,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,936438,Bailey,Robert,2018-01-15,3,2018-02-14,2018-02-15,null 419811,354506,null,Université de Montréal,922108,Breton,Guy,2018-01-18,3,2018-03-02,2018-03-02,null -419813,287044,"University of Ontario Institute of Technology +419813,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,936438,Bailey,Robert,2018-01-15,3,2018-02-14,2018-02-15,null 419815,13608,Canadian Steel Producers Association,L'Association canadienne des producteurs d'acier,776208,GALIMBERTI,JOSEPH,2018-01-30,3,2018-02-14,2018-02-14,null 419816,360909,Arterra Wines Canada Inc.,Vins Arterra Canada,782544,Mahoney,Richard ,2018-01-30,1,2018-02-14,2018-02-15,null -419817,287044,"University of Ontario Institute of Technology +419817,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,936438,Bailey,Robert,2018-01-15,3,2018-02-14,2018-02-15,null 419818,278067,Writers Guild of Canada,null,935530,Parker,Maureen,2018-01-17,3,2018-02-14,2018-02-15,null 419819,361498,Inuit Tapiriit Kanatami,,870953,Purdy,Shay,2018-01-25,1,2018-02-14,2018-02-14,null @@ -88416,7 +88416,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2014-10-15,3,2014-10-30,2014-10- 355643,5215,Suncor Energy Inc.,Suncor Énergie Inc.,827951,Williams,Steven,2015-05-26,2,2015-06-09,2015-06-15,null 355644,5215,Suncor Energy Inc.,Suncor Énergie Inc.,827951,Williams,Steven,2015-05-26,2,2015-06-09,2015-06-15,null 355645,5215,Suncor Energy Inc.,Suncor Énergie Inc.,827951,Williams,Steven,2015-05-26,2,2015-06-09,2015-06-15,null -355646,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS +355646,85,FRUIT & VEGETABLE DISPUTE RESOLUTION CORPORATION,"CORPORATION DE RÈGLEMENTS DES DIFFÉRENDS DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-05-26,3,2015-06-09,2015-06-09,null 355647,5145,University of Alberta,null,777832,Samarasekera,Indira,2015-05-06,3,2015-06-09,2015-06-15,null 355648,277129,TMX Group Limited,null,780798,ROSCOE,ELIZABETH,2015-05-12,1,2015-06-09,2015-06-15,null @@ -88916,7 +88916,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-05-26,3,2015-06-09,2015-06- 356348,247202,Freedom Mobile Inc.,,815973,Krstajic,Alek,2015-05-28,2,2015-06-15,2015-06-15,null 356349,337187,Tenaris S.A.,null,900039,Movat,Ginny,2015-06-12,1,2015-06-15,2015-06-15,null 356350,4971,Bell Canada,,713274,Cope,George,2015-05-26,2,2015-06-15,2015-06-15,null -356351,287044,"University of Ontario Institute of Technology +356351,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2015-05-05,3,2015-06-15,2015-06-15,null 356352,15036,Cosmetics Alliance Canada,L'alliance de l'indrustrie cosmétique du Canada,781421,Praznik,Darren,2015-05-05,3,2015-06-15,2015-06-15,null 356353,247202,Freedom Mobile Inc.,,815973,Krstajic,Alek,2015-05-28,2,2015-06-15,2015-06-15,null @@ -89702,7 +89702,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-05-26,3,2015-06-09,2015-06- 387827,13533,Cooperation Canada,Coopération Canada,806330,Sánchez,Julia,2016-10-17,3,2016-11-14,2016-11-14,null 387829,226041,World Wildlife Fund Canada,Le fonds mondial pour la nature,872932,Miller,David,2016-10-05,3,2016-11-14,2016-11-15,null 387830,353272,Vancouver Aquarium,null,777037,DRUMMOND,MIKE,2016-10-24,1,2016-11-14,2016-11-15,null -387831,287044,"University of Ontario Institute of Technology +387831,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2016-10-07,3,2016-11-14,2016-11-15,null 387832,13533,Cooperation Canada,Coopération Canada,806330,Sánchez,Julia,2016-10-18,3,2016-11-14,2016-11-14,null 387836,306985,Rio Tinto Canada Management Inc,null,778468,DICKERSON,BLAIR,2016-10-04,2,2016-11-15,2016-11-15,null @@ -89991,11 +89991,11 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-05-26,3,2015-06-09,2015-06- 387938,270204,Teck Resources Limited,null,771175,Lindsay,Donald,2016-10-24,2,2016-11-14,2016-11-14,null 387940,348186,Gay Lea Foods Co-operative Ltd,null,913636,Barrett,Michael,2016-10-26,2,2016-11-14,2016-11-14,null 387941,348186,Gay Lea Foods Co-operative Ltd,null,913636,Barrett,Michael,2016-11-07,2,2016-11-14,2016-11-14,null -387942,287044,"University of Ontario Institute of Technology +387942,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2016-10-12,3,2016-11-14,2016-11-15,null -387943,287044,"University of Ontario Institute of Technology +387943,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2016-10-10,3,2016-11-14,2016-11-15,null -387944,287044,"University of Ontario Institute of Technology +387944,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2016-10-10,3,2016-11-14,2016-11-15,null 387945,358583,Canadian Cardiovascular Society,Société canadienne de cardiologie,778465,DEMPSTER,WILLIAM,2016-10-19,1,2016-11-14,2016-11-14,null 387946,358583,Canadian Cardiovascular Society,Société canadienne de cardiologie,778465,DEMPSTER,WILLIAM,2016-10-19,1,2016-11-14,2016-11-14,null @@ -96288,12 +96288,12 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-05-26,3,2015-06-09,2015-06- 423886,361272,Optiv Canada,,929055,Ringuelet,Julian,2018-03-16,1,2018-04-13,2018-04-16,null 423887,226641,Canadian Association of Petroleum Producers,Association Canadienne des Producteurs Pétroliers,906514,McMillan,Tim,2018-03-27,3,2018-04-13,2018-04-13,null 423888,191,Canadian Gas Association,Association canadienne du gaz,776064,EGAN,TIMOTHY,2018-03-02,3,2018-04-13,2018-04-16,null -423889,287044,"University of Ontario Institute of Technology +423889,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,937451,Murphy,Steven,2018-03-07,3,2018-04-13,2018-04-16,null 423890,191,Canadian Gas Association,Association canadienne du gaz,776064,EGAN,TIMOTHY,2018-03-22,3,2018-04-13,2018-04-16,null 423891,5311,University of Waterloo,null,785899,Hamdullahpur,Feridun,2018-03-07,3,2018-04-13,2018-04-13,null 423892,361272,Optiv Canada,,929055,Ringuelet,Julian,2018-03-16,1,2018-04-13,2018-04-16,null -423893,287044,"University of Ontario Institute of Technology +423893,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,937451,Murphy,Steven,2018-03-07,3,2018-04-13,2018-04-16,null 423894,360281,The Powell Group,,929055,Ringuelet,Julian,2018-03-29,1,2018-04-13,2018-04-16,null 423895,226641,Canadian Association of Petroleum Producers,Association Canadienne des Producteurs Pétroliers,906514,McMillan,Tim,2018-03-27,3,2018-04-13,2018-04-13,null @@ -96301,11 +96301,11 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-05-26,3,2015-06-09,2015-06- 423897,354,BIOTECANADA,null,836594,CASEY,ANDREW,2018-03-08,3,2018-04-13,2018-04-13,null 423898,226641,Canadian Association of Petroleum Producers,Association Canadienne des Producteurs Pétroliers,906514,McMillan,Tim,2018-03-28,3,2018-04-13,2018-04-13,null 423899,234661,AltaGas Ltd.,null,927571,Harris,David,2018-03-22,2,2018-04-13,2018-04-13,null -423900,287044,"University of Ontario Institute of Technology +423900,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,937451,Murphy,Steven,2018-03-09,3,2018-04-13,2018-04-16,null 423901,234661,AltaGas Ltd.,null,927571,Harris,David,2018-03-22,2,2018-04-13,2018-04-13,null 423902,226641,Canadian Association of Petroleum Producers,Association Canadienne des Producteurs Pétroliers,906514,McMillan,Tim,2018-03-29,3,2018-04-13,2018-04-13,null -423903,287044,"University of Ontario Institute of Technology +423903,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,937451,Murphy,Steven,2018-03-29,3,2018-04-13,2018-04-16,null 423904,234661,AltaGas Ltd.,null,927571,Harris,David,2018-03-22,2,2018-04-13,2018-04-13,null 423905,234661,AltaGas Ltd.,null,927571,Harris,David,2018-03-22,2,2018-04-13,2018-04-13,null @@ -98870,9 +98870,9 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-05-26,3,2015-06-09,2015-06- 408867,357342,The Professional Institute for the Public Service of Canada,L'institut professionel de la fonction publique du Canada,925281,Daviau,Debi,2017-06-21,3,2017-10-06,2017-10-06,null 408868,4695,The Canadian Copyright Licensing Agency,null,777223,Levy,Roanie,2017-09-25,3,2017-10-06,2017-10-16,null 408869,357342,The Professional Institute for the Public Service of Canada,L'institut professionel de la fonction publique du Canada,925281,Daviau,Debi,2017-07-31,3,2017-10-06,2017-10-06,null -408870,287044,"University of Ontario Institute of Technology +408870,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2017-09-21,3,2017-10-06,2017-10-16,null -408871,287044,"University of Ontario Institute of Technology +408871,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2017-09-21,3,2017-10-06,2017-10-16,null 408873,360324,Tensor Machinery Ltd.,Machinerie Tensor Ltee,777573,Woods,Michael,2017-09-27,1,2017-10-06,2017-10-06,null 408874,360324,Tensor Machinery Ltd.,Machinerie Tensor Ltee,777573,Woods,Michael,2017-09-28,1,2017-10-06,2017-10-06,null @@ -103698,9 +103698,9 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-05-26,3,2015-06-09,2015-06- 359365,4543,Enbridge Inc.,null,845552,Monaco,Al,2015-08-05,2,2015-08-07,2015-09-15,null 359382,418,L'UNION DES PRODUCTEURS AGRICOLES,null,722894,Gosselin,Guylaine,2015-07-27,3,2015-08-10,2015-08-10,null 359402,325466,Canadian Federation of Forest Owners,Federation Canadienne de Propriétaires Forestiers,881453,Lee,Christopher,2015-07-29,1,2015-08-10,2015-08-10,null -359422,287044,"University of Ontario Institute of Technology +359422,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2015-07-07,3,2015-08-10,2015-08-15,null -359423,287044,"University of Ontario Institute of Technology +359423,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2015-06-30,3,2015-08-10,2015-08-10,null 359424,339606,Sunshine Village Corporation,null,893895,Solberg,Monte,2015-07-10,1,2015-08-10,2015-08-10,null 359425,343530,Nutrition International,,907285,Spicer,Joel,2015-06-12,3,2015-08-10,2015-08-10,null @@ -107248,7 +107248,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-05-26,3,2015-06-09,2015-06- 362179,5260,The Canadian National Railway Company,La Compagnie des chemins de fer nationaux du Canada,760994,Mongeau,Claude,2015-09-14,2,2015-10-14,2015-10-15,null 362181,282528,Lundbeck Canada Inc.,null,739694,Cashman,Patrick,2015-09-16,2,2015-10-14,2015-10-14,null 362183,13726,Vancouver International Airport Authority,null,868852,Richmond,Craig,2015-09-22,2,2015-10-14,2015-10-14,null -362184,287044,"University of Ontario Institute of Technology +362184,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2015-09-15,3,2015-10-14,2015-10-15,null 362185,13726,Vancouver International Airport Authority,null,868852,Richmond,Craig,2015-09-28,2,2015-10-14,2015-10-14,null 362202,13088,Microsoft Canada Inc.,null,880534,Kennedy,Janet,2015-09-16,2,2015-10-14,2015-10-14,null @@ -110637,7 +110637,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-05-26,3,2015-06-09,2015-06- 364886,3622,Aboriginal Peoples Television Network,null,778389,METCALFE,ISABEL,2015-12-09,1,2015-12-11,2015-12-11,null 364887,3622,Aboriginal Peoples Television Network,null,778389,METCALFE,ISABEL,2015-11-10,1,2015-12-11,2015-12-11,null 364888,3622,Aboriginal Peoples Television Network,null,778389,METCALFE,ISABEL,2015-11-10,1,2015-12-11,2015-12-11,null -364889,287044,"University of Ontario Institute of Technology +364889,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2015-11-03,3,2015-12-11,2015-12-15,null 364890,2942,Northrop Grumman International Trading Inc Maritime Systems,,778399,FRITSCH,BRIAN,2015-12-09,1,2015-12-11,2015-12-11,null 364891,13771,Tourism Industry Association of Canada,L’Association de l’industrie touristique du Canada,904704,Bell,Charlotte,2015-11-03,3,2015-12-11,2015-12-11,null @@ -112888,11 +112888,11 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-05-26,3,2015-06-09,2015-06- 428790,226641,Canadian Association of Petroleum Producers,Association Canadienne des Producteurs Pétroliers,906514,McMillan,Tim,2018-05-07,3,2018-06-14,2018-06-14,null 428791,361626,Bruce Power L.P.,,936668,Théorêt,Hugues,2018-06-13,1,2018-06-14,2018-06-14,null 428792,226641,Canadian Association of Petroleum Producers,Association Canadienne des Producteurs Pétroliers,906514,McMillan,Tim,2018-05-16,3,2018-06-14,2018-06-14,null -428793,287044,"University of Ontario Institute of Technology +428793,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,937451,Murphy,Steven,2018-05-04,3,2018-06-14,2018-06-15,null 428796,226641,Canadian Association of Petroleum Producers,Association Canadienne des Producteurs Pétroliers,906514,McMillan,Tim,2018-05-23,3,2018-06-14,2018-06-14,null 428797,361626,Bruce Power L.P.,,936668,Théorêt,Hugues,2018-06-13,1,2018-06-14,2018-06-14,null -428798,287044,"University of Ontario Institute of Technology +428798,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,937451,Murphy,Steven,2018-05-10,3,2018-06-14,2018-06-15,null 428799,358216,Canadian Alliance to End Homelessness,L’Alliance canadienne pour mettre fin à l’itinérance,778636,RICHTER,TIM,2018-05-23,3,2018-06-14,2018-06-14,null 428800,361626,Bruce Power L.P.,,936668,Théorêt,Hugues,2018-06-13,1,2018-06-14,2018-06-14,null @@ -117459,7 +117459,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-05-26,3,2015-06-09,2015-06- 396783,6262,Retail Council of Canada,Conseil canadien du commerce de detail,779111,Brisebois,Diane J.,2017-02-01,3,2017-03-15,2017-03-15,null 396784,12070,UNITED PARCEL SERVICE CANADA LTD.,null,923727,Atz,Christoph,2017-02-24,2,2017-03-15,2017-03-15,null 396785,15787,Canadian Chamber of Commerce,La Chambre de commerce du Canada,782298,Beatty,Perrin,2017-02-27,3,2017-03-15,2017-03-15,null -396786,287044,"University of Ontario Institute of Technology +396786,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2017-02-06,3,2017-03-15,2017-03-15,null 396787,358096,TNC Canada,,786955,Leffler,Johanna,2017-02-28,1,2017-03-15,2017-03-15,null 396788,111,The Centre for Israel and Jewish Affairs,Le Centre consultatif des relations juives et israéliennes,775667,FOGEL,SHIMON,2017-02-08,3,2017-03-15,2017-03-15,null @@ -121292,7 +121292,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-05-26,3,2015-06-09,2015-06- 416170,15708,Shaw Communications,null,797926,Shaw,Brad,2017-11-28,2,2017-12-14,2017-12-15,null 416171,490,Canadian Produce Marketing Association,Association canadienne de la distribution de fruits et légumes,797124,Lemaire,Ron,2017-11-08,3,2017-12-14,2017-12-14,null 416172,12241,Merck Canada Inc.,null,901580,Guindo,Chirfi,2017-10-10,2,2017-12-14,2017-12-14,null -416174,287044,"University of Ontario Institute of Technology +416174,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2017-11-29,3,2017-12-14,2017-12-15,null 416175,490,Canadian Produce Marketing Association,Association canadienne de la distribution de fruits et légumes,797124,Lemaire,Ron,2017-11-08,3,2017-12-14,2017-12-14,null 416176,12241,Merck Canada Inc.,null,901580,Guindo,Chirfi,2017-10-30,2,2017-12-14,2017-12-14,null @@ -122318,9 +122318,9 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-05-26,3,2015-06-09,2015-06- 366789,13533,Cooperation Canada,Coopération Canada,806330,Sánchez,Julia,2015-12-10,3,2016-01-15,2016-01-15,null 366790,13533,Cooperation Canada,Coopération Canada,806330,Sánchez,Julia,2015-12-11,3,2016-01-15,2016-01-15,null 366791,13533,Cooperation Canada,Coopération Canada,806330,Sánchez,Julia,2015-12-11,3,2016-01-15,2016-01-15,null -366792,287044,"University of Ontario Institute of Technology +366792,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2015-12-16,3,2016-01-15,2016-01-15,null -366793,287044,"University of Ontario Institute of Technology +366793,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2015-12-22,3,2016-01-15,2016-01-15,null 366802,15634,McMaster University,null,783820,Deane,Patrick,2015-12-16,3,2016-01-15,2016-01-15,null 366804,222961,Canadian Energy Pipeline Association,association canadienne de pipelines d'energie,922523,Bloomer,Chris,2015-12-17,3,2016-01-15,2016-01-15,null @@ -128684,14 +128684,14 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-05-26,3,2015-06-09,2015-06- 369075,16503,Canadian Parks and Wilderness Society,Société pour la nature et les parcs du Canada,736054,Hébert-Daly,Éric,2016-01-20,3,2016-02-12,2016-02-12,null 369077,5311,University of Waterloo,null,785899,Hamdullahpur,Feridun,2016-01-28,3,2016-02-12,2016-02-12,null 369078,5522,UNIVERSITY OF TORONTO,null,880813,Gertler,Meric,2014-01-23,3,2016-02-12,2016-02-12,369076 -369079,287044,"University of Ontario Institute of Technology +369079,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2016-01-11,3,2016-02-12,2016-02-15,null 369080,16503,Canadian Parks and Wilderness Society,Société pour la nature et les parcs du Canada,736054,Hébert-Daly,Éric,2016-01-28,3,2016-02-12,2016-02-12,null 369081,352147,Doctors without Borders (MSF) Canada,Médecins sans Frontières (MSF) Canada,920046,Cornish,Stephen,2016-01-04,3,2016-02-12,2016-02-15,null 369082,356507,Agnico Eagle Mines Limited,Les Mines Agnico Eagle ltee,893394,Boyd,Sean,2016-01-27,2,2016-02-12,2016-03-02,null -369083,287044,"University of Ontario Institute of Technology +369083,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2016-01-26,3,2016-02-12,2016-02-15,null -369084,287044,"University of Ontario Institute of Technology +369084,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2016-01-26,3,2016-02-12,2016-02-15,null 369085,5522,UNIVERSITY OF TORONTO,null,880813,Gertler,Meric,2014-01-23,3,2016-02-12,2016-02-12,null 369087,14928,Canadian Federation of Agriculture,La Fédération canadienne de l'agriculture,781877,Bonnett,Ron,2016-02-03,1,2016-02-12,2016-02-12,null @@ -154890,7 +154890,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-05-26,3,2015-06-09,2015-06- 464906,357469,International Boreal Conservation Campaign (via contract with Ducks Unlimited Canada),Campagne Internationale pour la Conservation Boreale (via contrat avec Canards Illimites Canada),926266,Courtois,Valérie,2020-01-29,1,2020-02-14,2020-02-14,null 464907,5311,University of Waterloo,null,785899,Hamdullahpur,Feridun,2020-01-15,3,2020-02-14,2020-02-15,null 464908,357469,International Boreal Conservation Campaign (via contract with Ducks Unlimited Canada),Campagne Internationale pour la Conservation Boreale (via contrat avec Canards Illimites Canada),926266,Courtois,Valérie,2020-01-30,1,2020-02-14,2020-02-14,null -464909,287044,"University of Ontario Institute of Technology +464909,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,937451,Murphy,Steven,2020-01-02,3,2020-02-14,2020-02-15,null 464910,5311,University of Waterloo,null,785899,Hamdullahpur,Feridun,2020-01-10,3,2020-02-14,2020-02-15,null 464911,357469,International Boreal Conservation Campaign (via contract with Ducks Unlimited Canada),Campagne Internationale pour la Conservation Boreale (via contrat avec Canards Illimites Canada),926266,Courtois,Valérie,2020-01-30,1,2020-02-14,2020-02-14,null @@ -167800,7 +167800,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-05-26,3,2015-06-09,2015-06- 374668,13267,University of Victoria,null,868812,Cassels,Jamie,2016-03-23,3,2016-04-14,2016-04-15,null 374669,191,Canadian Gas Association,Association canadienne du gaz,776064,EGAN,TIMOTHY,2016-03-30,3,2016-04-14,2016-04-15,null 374670,15984,HIV Legal Network,Réseau juridique VIH,782129,Elliott,Richard,2016-03-30,3,2016-04-14,2016-04-14,null -374671,287044,"University of Ontario Institute of Technology +374671,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2016-03-30,3,2016-04-14,2016-04-15,null 374672,15984,HIV Legal Network,Réseau juridique VIH,782129,Elliott,Richard,2016-03-15,3,2016-04-14,2016-04-14,null 374673,13267,University of Victoria,null,868812,Cassels,Jamie,2016-03-24,3,2016-04-14,2016-04-15,null @@ -183383,31 +183383,31 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-05-26,3,2015-06-09,2015-06- 376961,340046,Canpotex Ltd.,null,776310,SMITH,JEFF,2016-05-12,1,2016-05-13,2016-05-13,null 376962,13682,Chartered Professional Accountants of Canada (CPA Canada),Comptables professionnels agréés du Canada (CPA Canada),748234,Thomas,Joy,2016-04-21,3,2016-05-13,2016-05-13,null 376963,340046,Canpotex Ltd.,null,776310,SMITH,JEFF,2016-05-12,1,2016-05-13,2016-05-13,null -376964,287044,"University of Ontario Institute of Technology +376964,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2016-04-05,3,2016-05-13,2016-05-16,null 376965,5662,"Society of Composers, Authors & Music Publishers of Canada / Société canadienne des auteurs, compositeurs et éditeurs de musique (SOCAN)",null,771639,Baptiste,Eric,2016-05-04,3,2016-05-13,2016-05-13,null 376966,191,Canadian Gas Association,Association canadienne du gaz,776064,EGAN,TIMOTHY,2016-04-21,3,2016-05-13,2016-05-16,null 376967,356427,Luminato Festival / Festival Luminato,null,739474,Dewan,Philip,2016-04-18,1,2016-05-13,2016-05-13,null 376968,13682,Chartered Professional Accountants of Canada (CPA Canada),Comptables professionnels agréés du Canada (CPA Canada),748234,Thomas,Joy,2016-04-22,3,2016-05-13,2016-05-13,null -376969,287044,"University of Ontario Institute of Technology +376969,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2016-04-05,3,2016-05-13,2016-05-16,null 376970,340046,Canpotex Ltd.,null,776310,SMITH,JEFF,2016-05-12,1,2016-05-13,2016-05-13,null 376971,191,Canadian Gas Association,Association canadienne du gaz,776064,EGAN,TIMOTHY,2016-04-21,3,2016-05-13,2016-05-16,null -376972,287044,"University of Ontario Institute of Technology +376972,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2016-04-05,3,2016-05-13,2016-05-16,null 376973,356730,Luminato Festival / Festival Luminato,null,783294,Lopinski,Bob ,2016-04-11,1,2016-05-13,2016-05-13,null 376975,356730,Luminato Festival / Festival Luminato,null,783294,Lopinski,Bob ,2016-04-18,1,2016-05-13,2016-05-13,null 376976,340046,Canpotex Ltd.,null,776310,SMITH,JEFF,2016-05-12,1,2016-05-13,2016-05-13,null -376977,287044,"University of Ontario Institute of Technology +376977,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2016-04-28,3,2016-05-13,2016-05-16,null 376978,356730,Luminato Festival / Festival Luminato,null,783294,Lopinski,Bob ,2016-04-08,1,2016-05-13,2016-05-13,null 376979,16637,Shell Canada Limited,null,923362,Crothers,Michael,2016-04-06,2,2016-05-13,2016-05-13,null 376980,356730,Luminato Festival / Festival Luminato,null,783294,Lopinski,Bob ,2016-04-01,1,2016-05-13,2016-05-13,null 376981,191,Canadian Gas Association,Association canadienne du gaz,776064,EGAN,TIMOTHY,2016-04-26,3,2016-05-13,2016-05-16,null -376982,287044,"University of Ontario Institute of Technology +376982,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2016-04-04,3,2016-05-13,2016-05-16,null 376983,5662,"Society of Composers, Authors & Music Publishers of Canada / Société canadienne des auteurs, compositeurs et éditeurs de musique (SOCAN)",null,771639,Baptiste,Eric,2016-05-04,3,2016-05-13,2016-05-13,null -376984,287044,"University of Ontario Institute of Technology +376984,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,807410,McTiernan,Tim,2016-04-20,3,2016-05-13,2016-05-16,null 376985,191,Canadian Gas Association,Association canadienne du gaz,776064,EGAN,TIMOTHY,2016-04-27,3,2016-05-13,2016-05-16,null 376986,14868,BMO Financial Group,BMO Groupe financier,781732,Downe,William,2016-04-21,2,2016-05-13,2016-05-16,null @@ -202324,7 +202324,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-05-26,3,2015-06-09,2015-06- 499354,5260,The Canadian National Railway Company,La Compagnie des chemins de fer nationaux du Canada,937179,Ruest,Jean-Jacques,2021-02-19,2,2021-03-15,2021-03-15,null 499355,17205,Canadian Federation of Students,Fédération canadienne des étudiantes et étudiants,945657,Picton,Nicole,2021-02-17,3,2021-03-15,2021-03-15,null 499356,47,Canada's Building Trades Unions,,946509,Strickland,Sean,2021-03-09,3,2021-03-15,2021-04-15,null -499357,287044,"University of Ontario Institute of Technology +499357,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,937451,Murphy,Steven,2021-02-26,3,2021-03-15,2021-03-15,null 499358,360400,PETRONAS Energy Canada Ltd.,,932635,Fitzgerald,Mark,2021-02-16,2,2021-03-15,2021-03-15,null 499359,17205,Canadian Federation of Students,Fédération canadienne des étudiantes et étudiants,945657,Picton,Nicole,2021-02-17,3,2021-03-15,2021-03-15,null @@ -209763,7 +209763,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-05-26,3,2015-06-09,2015-06- 502524,16500,David Suzuki Foundation,Fondation David Suzuki,947590,Bruce,Ian,2021-03-09,3,2021-04-15,2021-04-15,null 502525,16500,David Suzuki Foundation,Fondation David Suzuki,947590,Bruce,Ian,2021-03-12,3,2021-04-15,2021-04-15,null 502526,16500,David Suzuki Foundation,Fondation David Suzuki,947590,Bruce,Ian,2021-03-15,3,2021-04-15,2021-04-15,null -502527,287044,"University of Ontario Institute of Technology +502527,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,937451,Murphy,Steven,2021-03-16,3,2021-04-15,2021-04-15,null 502528,16500,David Suzuki Foundation,Fondation David Suzuki,947590,Bruce,Ian,2021-03-16,3,2021-04-15,2021-04-15,null 502529,16500,David Suzuki Foundation,Fondation David Suzuki,947590,Bruce,Ian,2021-03-16,3,2021-04-15,2021-04-15,null @@ -231459,7 +231459,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-05-26,3,2015-06-09,2015-06- 534531,364727,Canadian Dental Association,Association dentaire canadienne,943845,Sullivan,Michael,2022-05-09,1,2022-06-14,2022-06-14,null 534532,13945,Irving Shipbuilding Inc.,null,779327,irving,james,2022-05-09,2,2022-06-14,2022-06-14,null 534533,16924,National Marine Manufacturers Association (NMMA) Canada,null,778780,ANGHEL,SARA,2022-06-07,3,2022-06-14,2022-06-14,null -534534,287044,"University of Ontario Institute of Technology +534534,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,937451,Murphy,Steven,2022-05-26,3,2022-06-14,2022-06-15,null 534535,16924,National Marine Manufacturers Association (NMMA) Canada,null,778780,ANGHEL,SARA,2022-06-07,3,2022-06-14,2022-06-14,null 534536,364727,Canadian Dental Association,Association dentaire canadienne,943845,Sullivan,Michael,2022-05-10,1,2022-06-14,2022-06-14,null @@ -234826,7 +234826,7 @@ DANS LES FRUITS ET LÉGUMES",814282,Webber,Fred,2015-05-26,3,2015-06-09,2015-06- 538175,568,Chemistry Industry Association of Canada,Association canadienne de l'industrie de la chimie,921646,Masterson,Bob,2022-06-01,3,2022-07-15,2022-07-15,null 538176,365071,United Way Centraide Canada,Centraide United Way Canada,944240,Clement,Dan,2022-06-16,3,2022-07-15,2022-07-15,null 538177,5262,University of Saskatchewan,null,922868,Stoicheff,Peter,2022-06-06,3,2022-07-15,2022-07-15,null -538178,287044,"University of Ontario Institute of Technology +538178,287044,"University of Ontario Institute of Technology (operating as Ontario Tech University)",,937451,Murphy,Steven,2022-06-30,3,2022-07-15,2022-07-15,null 538180,5262,University of Saskatchewan,null,922868,Stoicheff,Peter,2022-06-14,3,2022-07-15,2022-07-15,null 538181,5262,University of Saskatchewan,null,922868,Stoicheff,Peter,2022-06-10,3,2022-07-15,2022-07-15,null diff --git a/backend/app/app/data/lobby_comms/Communication_SubjectMattersExport.csv b/backend/app/app/data/lobby_comms/Communication_SubjectMattersExport.csv new file mode 100644 index 00000000..a4123840 --- /dev/null +++ b/backend/app/app/data/lobby_comms/Communication_SubjectMattersExport.csv @@ -0,0 +1,489050 @@ +COMLOG_ID,SUBJ_MATTER_OBJET,OTHER_SUBJ_MATTER_AUTRE_OBJET +324289,Financial Institutions,Financial Institutions +445959,Industry,Industry +533982,International Trade,International Trade +463526,Small Business,Small Business +410697,Taxation and Finance,Taxation and Finance +503190,International Trade,International Trade +164485,Taxation and Finance,Taxation and Finance +445958,Industry,Industry +445895,Industry,Industry +410698,Industry,Industry +407224,Industry,Industry +399459,Industry,Industry +399458,Industry,Industry +399456,Industry,Industry +392175,Industry,Industry +392174,Industry,Industry +384823,Industry,Industry +384822,Industry,Industry +378228,Industry,Industry +375836,Industry,Industry +375835,Industry,Industry +324290,Industry,Industry +324289,Industry,Industry +543703,Industry,Industry +543695,Industry,Industry +538723,Industry,Industry +538721,Industry,Industry +533989,Industry,Industry +533982,Industry,Industry +493916,Industry,Industry +474437,Industry,Industry +460253,Industry,Industry +533987,International Trade,International Trade +493916,Regional Development,Regional Development +485621,Regional Development,Regional Development +240490,Regional Development,Regional Development +483276,Regional Development,Regional Development +460253,Small Business,Small Business +538723,Small Business,Small Business +410698,Small Business,Small Business +410697,Small Business,Small Business +407224,Small Business,Small Business +399459,Small Business,Small Business +399458,Small Business,Small Business +399456,Small Business,Small Business +392174,Small Business,Small Business +384823,Small Business,Small Business +384822,Small Business,Small Business +519098,Small Business,Small Business +519096,Small Business,Small Business +506325,Small Business,Small Business +500460,Small Business,Small Business +497716,Small Business,Small Business +496852,Small Business,Small Business +496851,Small Business,Small Business +495178,Small Business,Small Business +494311,Small Business,Small Business +494310,Small Business,Small Business +494309,Small Business,Small Business +494307,Small Business,Small Business +494305,Small Business,Small Business +494304,Small Business,Small Business +493997,Small Business,Small Business +493918,Small Business,Small Business +493917,Small Business,Small Business +485623,Small Business,Small Business +485622,Small Business,Small Business +485621,Small Business,Small Business +485501,Small Business,Small Business +485500,Small Business,Small Business +483276,Small Business,Small Business +483275,Small Business,Small Business +481523,Small Business,Small Business +481521,Small Business,Small Business +480982,Small Business,Small Business +477502,Small Business,Small Business +474438,Small Business,Small Business +474437,Small Business,Small Business +474436,Small Business,Small Business +474432,Small Business,Small Business +469644,Small Business,Small Business +466693,Small Business,Small Business +466692,Small Business,Small Business +466691,Small Business,Small Business +463778,Small Business,Small Business +463528,Small Business,Small Business +463527,Small Business,Small Business +533979,Taxation and Finance,Taxation and Finance +392175,Taxation and Finance,Taxation and Finance +389109,Taxation and Finance,Taxation and Finance +378228,Taxation and Finance,Taxation and Finance +375836,Taxation and Finance,Taxation and Finance +370793,Taxation and Finance,Taxation and Finance +367530,Taxation and Finance,Taxation and Finance +324289,Taxation and Finance,Taxation and Finance +296529,Taxation and Finance,Taxation and Finance +469644,Taxation and Finance,Taxation and Finance +466693,Taxation and Finance,Taxation and Finance +466692,Taxation and Finance,Taxation and Finance +466691,Taxation and Finance,Taxation and Finance +463528,Taxation and Finance,Taxation and Finance +463527,Taxation and Finance,Taxation and Finance +446805,Taxation and Finance,Taxation and Finance +425620,Taxation and Finance,Taxation and Finance +420596,Taxation and Finance,Taxation and Finance +420565,Taxation and Finance,Taxation and Finance +420413,Taxation and Finance,Taxation and Finance +420412,Taxation and Finance,Taxation and Finance +418417,Taxation and Finance,Taxation and Finance +500051,International Trade,International Trade +497978,International Trade,International Trade +164484,International Trade,International Trade +156590,International Trade,International Trade +156589,International Trade,International Trade +153164,International Trade,International Trade +192808,International Trade,International Trade +192807,International Trade,International Trade +192806,International Trade,International Trade +192805,International Trade,International Trade +192755,International Trade,International Trade +192751,International Trade,International Trade +176146,International Trade,International Trade +176145,International Trade,International Trade +176144,International Trade,International Trade +348591,International Trade,International Trade +348590,International Trade,International Trade +317189,International Trade,International Trade +262113,International Trade,International Trade +262112,International Trade,International Trade +262111,International Trade,International Trade +236636,International Trade,International Trade +227238,International Trade,International Trade +227229,International Trade,International Trade +457624,International Trade,International Trade +411170,International Trade,International Trade +407707,International Trade,International Trade +399406,International Trade,International Trade +391827,International Trade,International Trade +383947,International Trade,International Trade +370099,International Trade,International Trade +370094,International Trade,International Trade +537680,International Trade,International Trade +526852,International Trade,International Trade +156590,Taxation and Finance,Taxation and Finance +383724,Taxation and Finance,Taxation and Finance +370100,Taxation and Finance,Taxation and Finance +348590,Taxation and Finance,Taxation and Finance +348577,Taxation and Finance,Taxation and Finance +123914,Health,Health +494101,Intellectual Property,Intellectual Property +173744,Education,Education +469078,Government Procurement,Government Procurement +425293,Agriculture,Agriculture +230322,Agriculture,Agriculture +410917,Industry,Industry +421663,Consumer Issues,Consumer Issues +374469,Government Procurement,Government Procurement +374469,Infrastructure,Infrastructure +374469,Transportation,Transportation +129143,Agriculture,Agriculture +533359,Financial Institutions,Financial Institutions +506403,Small Business,Small Business +506403,Taxation and Finance,Taxation and Finance +516223,Consumer Issues,Consumer Issues +494099,Intellectual Property,Intellectual Property +458958,Intellectual Property,Intellectual Property +317330,Intellectual Property,Intellectual Property +317309,Intellectual Property,Intellectual Property +294349,Intellectual Property,Intellectual Property +292250,Intellectual Property,Intellectual Property +265109,Intellectual Property,Intellectual Property +260912,Intellectual Property,Intellectual Property +196552,Intellectual Property,Intellectual Property +196551,Intellectual Property,Intellectual Property +196550,Intellectual Property,Intellectual Property +196549,Intellectual Property,Intellectual Property +196548,Intellectual Property,Intellectual Property +196547,Intellectual Property,Intellectual Property +173443,Intellectual Property,Intellectual Property +173442,Intellectual Property,Intellectual Property +389149,Intellectual Property,Intellectual Property +389148,Intellectual Property,Intellectual Property +389147,Intellectual Property,Intellectual Property +389146,Intellectual Property,Intellectual Property +389145,Intellectual Property,Intellectual Property +389144,Intellectual Property,Intellectual Property +389143,Intellectual Property,Intellectual Property +389134,Intellectual Property,Intellectual Property +389120,Intellectual Property,Intellectual Property +440372,Intellectual Property,Intellectual Property +440371,Intellectual Property,Intellectual Property +440370,Intellectual Property,Intellectual Property +440369,Intellectual Property,Intellectual Property +422931,Intellectual Property,Intellectual Property +416220,Intellectual Property,Intellectual Property +416218,Intellectual Property,Intellectual Property +416216,Intellectual Property,Intellectual Property +416213,Intellectual Property,Intellectual Property +416210,Intellectual Property,Intellectual Property +416203,Intellectual Property,Intellectual Property +416202,Intellectual Property,Intellectual Property +416199,Intellectual Property,Intellectual Property +416198,Intellectual Property,Intellectual Property +416197,Intellectual Property,Intellectual Property +416194,Intellectual Property,Intellectual Property +416193,Intellectual Property,Intellectual Property +416191,Intellectual Property,Intellectual Property +416189,Intellectual Property,Intellectual Property +416187,Intellectual Property,Intellectual Property +416182,Intellectual Property,Intellectual Property +401803,Intellectual Property,Intellectual Property +536283,Intellectual Property,Intellectual Property +536282,Intellectual Property,Intellectual Property +530938,Intellectual Property,Intellectual Property +530936,Intellectual Property,Intellectual Property +530935,Intellectual Property,Intellectual Property +530934,Intellectual Property,Intellectual Property +526896,Intellectual Property,Intellectual Property +520755,Intellectual Property,Intellectual Property +516451,Intellectual Property,Intellectual Property +512024,Intellectual Property,Intellectual Property +507959,Intellectual Property,Intellectual Property +503287,Intellectual Property,Intellectual Property +494104,Intellectual Property,Intellectual Property +425288,Agriculture,Agriculture +425287,Agriculture,Agriculture +380666,Agriculture,Agriculture +376002,Agriculture,Agriculture +376001,Agriculture,Agriculture +376000,Agriculture,Agriculture +375997,Agriculture,Agriculture +370431,Agriculture,Agriculture +320733,Agriculture,Agriculture +422763,Agriculture,Agriculture +420760,Agriculture,Agriculture +420099,Agriculture,Agriculture +420091,Agriculture,Agriculture +420081,Agriculture,Agriculture +411556,Agriculture,Agriculture +411554,Agriculture,Agriculture +400067,Agriculture,Agriculture +400065,Agriculture,Agriculture +400064,Agriculture,Agriculture +400061,Agriculture,Agriculture +400059,Agriculture,Agriculture +400057,Agriculture,Agriculture +400052,Agriculture,Agriculture +399787,Agriculture,Agriculture +397204,Agriculture,Agriculture +394764,Agriculture,Agriculture +387724,Agriculture,Agriculture +384640,Agriculture,Agriculture +429766,Agriculture,Agriculture +428052,Agriculture,Agriculture +428051,Agriculture,Agriculture +427053,Agriculture,Agriculture +425295,Agriculture,Agriculture +230321,Agriculture,Agriculture +230317,Agriculture,Agriculture +230323,Agriculture,Agriculture +404675,Industry,Industry +395065,Industry,Industry +392979,Industry,Industry +392978,Industry,Industry +377912,Industry,Industry +434716,Industry,Industry +434709,Industry,Industry +434706,Industry,Industry +433048,Industry,Industry +433046,Industry,Industry +433044,Industry,Industry +433043,Industry,Industry +432765,Industry,Industry +432763,Industry,Industry +432757,Industry,Industry +432756,Industry,Industry +432755,Industry,Industry +432754,Industry,Industry +432753,Industry,Industry +431017,Industry,Industry +431016,Industry,Industry +424520,Industry,Industry +424519,Industry,Industry +424518,Industry,Industry +424517,Industry,Industry +424516,Industry,Industry +421676,Industry,Industry +421673,Industry,Industry +421669,Industry,Industry +421663,Industry,Industry +421656,Industry,Industry +421652,Industry,Industry +419741,Industry,Industry +419732,Industry,Industry +415769,Industry,Industry +415767,Industry,Industry +415766,Industry,Industry +415765,Industry,Industry +415763,Industry,Industry +415760,Industry,Industry +415759,Industry,Industry +415758,Industry,Industry +415757,Industry,Industry +415749,Industry,Industry +415744,Industry,Industry +415742,Industry,Industry +415741,Industry,Industry +410919,Industry,Industry +410918,Industry,Industry +421656,Consumer Issues,Consumer Issues +421652,Consumer Issues,Consumer Issues +419741,Consumer Issues,Consumer Issues +419732,Consumer Issues,Consumer Issues +415769,Consumer Issues,Consumer Issues +415767,Consumer Issues,Consumer Issues +415766,Consumer Issues,Consumer Issues +415765,Consumer Issues,Consumer Issues +415763,Consumer Issues,Consumer Issues +415760,Consumer Issues,Consumer Issues +415759,Consumer Issues,Consumer Issues +415758,Consumer Issues,Consumer Issues +415757,Consumer Issues,Consumer Issues +415749,Consumer Issues,Consumer Issues +415744,Consumer Issues,Consumer Issues +415742,Consumer Issues,Consumer Issues +415741,Consumer Issues,Consumer Issues +410919,Consumer Issues,Consumer Issues +410918,Consumer Issues,Consumer Issues +410917,Consumer Issues,Consumer Issues +404675,Consumer Issues,Consumer Issues +401351,Consumer Issues,Consumer Issues +401348,Consumer Issues,Consumer Issues +395065,Consumer Issues,Consumer Issues +392979,Consumer Issues,Consumer Issues +434716,Consumer Issues,Consumer Issues +434709,Consumer Issues,Consumer Issues +434706,Consumer Issues,Consumer Issues +433048,Consumer Issues,Consumer Issues +433046,Consumer Issues,Consumer Issues +433044,Consumer Issues,Consumer Issues +433043,Consumer Issues,Consumer Issues +432765,Consumer Issues,Consumer Issues +432763,Consumer Issues,Consumer Issues +432757,Consumer Issues,Consumer Issues +432756,Consumer Issues,Consumer Issues +432755,Consumer Issues,Consumer Issues +432754,Consumer Issues,Consumer Issues +432753,Consumer Issues,Consumer Issues +431017,Consumer Issues,Consumer Issues +431016,Consumer Issues,Consumer Issues +424520,Consumer Issues,Consumer Issues +424519,Consumer Issues,Consumer Issues +424518,Consumer Issues,Consumer Issues +424517,Consumer Issues,Consumer Issues +424516,Consumer Issues,Consumer Issues +421676,Consumer Issues,Consumer Issues +421673,Consumer Issues,Consumer Issues +421669,Consumer Issues,Consumer Issues +341581,Infrastructure,Infrastructure +341577,Infrastructure,Infrastructure +533353,Financial Institutions,Financial Institutions +516223,Financial Institutions,Financial Institutions +535998,Financial Institutions,Financial Institutions +535997,Financial Institutions,Financial Institutions +535996,Financial Institutions,Financial Institutions +506402,Small Business,Small Business +497267,Small Business,Small Business +516223,Small Business,Small Business +506405,Small Business,Small Business +506404,Small Business,Small Business +506402,Taxation and Finance,Taxation and Finance +506401,Taxation and Finance,Taxation and Finance +506405,Taxation and Finance,Taxation and Finance +506404,Taxation and Finance,Taxation and Finance +362173,Employment and Training,Employment and Training +362169,Employment and Training,Employment and Training +152262,Employment and Training,Employment and Training +458556,Intellectual Property,Intellectual Property +458555,Intellectual Property,Intellectual Property +160390,Intellectual Property,Intellectual Property +160389,Intellectual Property,Intellectual Property +160388,Intellectual Property,Intellectual Property +430888,Intellectual Property,Intellectual Property +430881,Intellectual Property,Intellectual Property +430873,Intellectual Property,Intellectual Property +430871,Intellectual Property,Intellectual Property +430869,Intellectual Property,Intellectual Property +430860,Intellectual Property,Intellectual Property +430857,Intellectual Property,Intellectual Property +423327,Intellectual Property,Intellectual Property +536784,Intellectual Property,Intellectual Property +533685,Intellectual Property,Intellectual Property +533684,Intellectual Property,Intellectual Property +533683,Intellectual Property,Intellectual Property +531580,Intellectual Property,Intellectual Property +531579,Intellectual Property,Intellectual Property +531578,Intellectual Property,Intellectual Property +531577,Intellectual Property,Intellectual Property +531575,Intellectual Property,Intellectual Property +531574,Intellectual Property,Intellectual Property +528597,Intellectual Property,Intellectual Property +528595,Intellectual Property,Intellectual Property +528593,Intellectual Property,Intellectual Property +528592,Intellectual Property,Intellectual Property +528590,Intellectual Property,Intellectual Property +528587,Intellectual Property,Intellectual Property +528585,Intellectual Property,Intellectual Property +528583,Intellectual Property,Intellectual Property +528581,Intellectual Property,Intellectual Property +528578,Intellectual Property,Intellectual Property +524816,Intellectual Property,Intellectual Property +524815,Intellectual Property,Intellectual Property +524814,Intellectual Property,Intellectual Property +521726,Intellectual Property,Intellectual Property +521725,Intellectual Property,Intellectual Property +521724,Intellectual Property,Intellectual Property +521723,Intellectual Property,Intellectual Property +521720,Intellectual Property,Intellectual Property +401236,International Trade,International Trade +462716,International Trade,International Trade +319013,International Trade,International Trade +436640,International Trade,International Trade +436637,International Trade,International Trade +433991,International Trade,International Trade +425547,International Trade,International Trade +425546,International Trade,International Trade +424684,International Trade,International Trade +418673,International Trade,International Trade +418672,International Trade,International Trade +418671,International Trade,International Trade +418670,International Trade,International Trade +418669,International Trade,International Trade +418668,International Trade,International Trade +418620,International Trade,International Trade +418619,International Trade,International Trade +418618,International Trade,International Trade +418617,International Trade,International Trade +418611,International Trade,International Trade +418610,International Trade,International Trade +418609,International Trade,International Trade +418608,International Trade,International Trade +418607,International Trade,International Trade +418606,International Trade,International Trade +418605,International Trade,International Trade +418604,International Trade,International Trade +418603,International Trade,International Trade +414422,International Trade,International Trade +414421,International Trade,International Trade +414420,International Trade,International Trade +408583,Taxation and Finance,Taxation and Finance +408582,Taxation and Finance,Taxation and Finance +93653,Taxation and Finance,Taxation and Finance +93652,Taxation and Finance,Taxation and Finance +93645,Taxation and Finance,Taxation and Finance +93623,Taxation and Finance,Taxation and Finance +93614,Taxation and Finance,Taxation and Finance +87815,Taxation and Finance,Taxation and Finance +154900,Taxation and Finance,Taxation and Finance +151017,Taxation and Finance,Taxation and Finance +150898,Taxation and Finance,Taxation and Finance +148116,Taxation and Finance,Taxation and Finance +106106,Taxation and Finance,Taxation and Finance +101169,Taxation and Finance,Taxation and Finance +96134,Taxation and Finance,Taxation and Finance +96114,Taxation and Finance,Taxation and Finance +93671,Taxation and Finance,Taxation and Finance +93667,Taxation and Finance,Taxation and Finance +93661,Taxation and Finance,Taxation and Finance +93659,Taxation and Finance,Taxation and Finance +93658,Taxation and Finance,Taxation and Finance +93656,Taxation and Finance,Taxation and Finance +93655,Taxation and Finance,Taxation and Finance +93654,Taxation and Finance,Taxation and Finance +189107,Taxation and Finance,Taxation and Finance +401244,Taxation and Finance,Taxation and Finance +393614,Taxation and Finance,Taxation and Finance +393573,Taxation and Finance,Taxation and Finance +393572,Taxation and Finance,Taxation and Finance +393571,Taxation and Finance,Taxation and Finance +393570,Taxation and Finance,Taxation and Finance +393569,Taxation and Finance,Taxation and Finance +393568,Taxation and Finance,Taxation and Finance +393567,Taxation and Finance,Taxation and Finance +393566,Taxation and Finance,Taxation and Finance +393565,Taxation and Finance,Taxation and Finance +393564,Taxation and Finance,Taxation and Finance +393563,Taxation and Finance,Taxation and Finance +393562,Taxation and Finance,Taxation and Finance +393561,Taxation and Finance,Taxation and Finance +393560,Taxation and Finance,Taxation and Finance +393559,Taxation and Finance,Taxation and Finance +393558,Taxation and Finance,Taxation and Finance +393557,Taxation and Finance,Taxation and Finance +393556,Taxation and Finance,Taxation and Finance +393555,Taxation and Finance,Taxation and Finance +393554,Taxation and Finance,Taxation and Finance +153382,Employment and Training,Employment and Training +521718,Intellectual Property,Intellectual Property +413432,International Trade,International Trade +418603,Taxation and Finance,Taxation and Finance +165471,Financial Institutions,Financial Institutions +118635,Justice and Law Enforcement,Justice and Law Enforcement +448395,Health,Health +394694,Environment,Environment +386038,Forestry,Forestry +149220,Energy,Energy +149220,Environment,Environment +149216,Industry,Industry +161123,Taxation and Finance,Taxation and Finance +479424,Infrastructure,Infrastructure +255189,Agriculture,Agriculture +217209,Consumer Issues,Consumer Issues +442149,Financial Institutions,Financial Institutions +217209,Small Business,Small Business +95014,Agriculture,Agriculture +169467,Environment,Environment +169467,Fisheries,Fisheries +514368,Government Procurement,Government Procurement +226857,Health,Health +453998,Employment and Training,Employment and Training +327524,Health,Health +374736,Energy,Energy +147800,Industry,Industry +147800,Intellectual Property,Intellectual Property +370651,Health,Health +153117,Government Procurement,Government Procurement +363191,Industry,Industry +363191,Transportation,Transportation +363191,Consumer Issues,Consumer Issues +333050,Transportation,Transportation +516641,Environment,Environment +521534,Health,Health +446124,Agriculture,Agriculture +521188,International Trade,International Trade +408405,Financial Institutions,Financial Institutions +224188,Employment and Training,Employment and Training +427122,Health,Health +165756,International Relations,International Relations +444379,Transportation,Transportation +446581,Consumer Issues,Consumer Issues +393553,Taxation and Finance,Taxation and Finance +383229,Taxation and Finance,Taxation and Finance +376402,Taxation and Finance,Taxation and Finance +376399,Taxation and Finance,Taxation and Finance +376393,Taxation and Finance,Taxation and Finance +349202,Taxation and Finance,Taxation and Finance +349197,Taxation and Finance,Taxation and Finance +508923,Taxation and Finance,Taxation and Finance +493358,Taxation and Finance,Taxation and Finance +479882,Taxation and Finance,Taxation and Finance +478707,Taxation and Finance,Taxation and Finance +478642,Taxation and Finance,Taxation and Finance +478019,Taxation and Finance,Taxation and Finance +478013,Taxation and Finance,Taxation and Finance +478010,Taxation and Finance,Taxation and Finance +478005,Taxation and Finance,Taxation and Finance +475699,Taxation and Finance,Taxation and Finance +475693,Taxation and Finance,Taxation and Finance +475692,Taxation and Finance,Taxation and Finance +475684,Taxation and Finance,Taxation and Finance +465363,Taxation and Finance,Taxation and Finance +463379,Taxation and Finance,Taxation and Finance +434158,Taxation and Finance,Taxation and Finance +433462,Taxation and Finance,Taxation and Finance +418673,Taxation and Finance,Taxation and Finance +418672,Taxation and Finance,Taxation and Finance +418671,Taxation and Finance,Taxation and Finance +418670,Taxation and Finance,Taxation and Finance +418669,Taxation and Finance,Taxation and Finance +418668,Taxation and Finance,Taxation and Finance +418620,Taxation and Finance,Taxation and Finance +418619,Taxation and Finance,Taxation and Finance +418618,Taxation and Finance,Taxation and Finance +418617,Taxation and Finance,Taxation and Finance +418611,Taxation and Finance,Taxation and Finance +418610,Taxation and Finance,Taxation and Finance +418609,Taxation and Finance,Taxation and Finance +418607,Taxation and Finance,Taxation and Finance +418606,Taxation and Finance,Taxation and Finance +418605,Taxation and Finance,Taxation and Finance +418604,Taxation and Finance,Taxation and Finance +154922,Financial Institutions,Financial Institutions +99775,Justice and Law Enforcement,Justice and Law Enforcement +147514,Justice and Law Enforcement,Justice and Law Enforcement +448394,Health,Health +448393,Health,Health +268433,Health,Health +268432,Health,Health +268429,Health,Health +372336,Health,Health +372334,Health,Health +372333,Health,Health +372078,Health,Health +372070,Health,Health +372060,Health,Health +372049,Health,Health +372036,Health,Health +368791,Health,Health +368786,Health,Health +367402,Health,Health +360723,Health,Health +352601,Health,Health +350306,Health,Health +350305,Health,Health +350303,Health,Health +342417,Health,Health +340019,Health,Health +331304,Health,Health +324231,Health,Health +324230,Health,Health +324229,Health,Health +318417,Health,Health +318416,Health,Health +318415,Health,Health +318414,Health,Health +312275,Health,Health +309512,Health,Health +309511,Health,Health +301550,Health,Health +301549,Health,Health +280649,Health,Health +276489,Health,Health +272359,Health,Health +272345,Health,Health +272344,Health,Health +272343,Health,Health +272342,Health,Health +272341,Health,Health +272340,Health,Health +272339,Health,Health +272338,Health,Health +272337,Health,Health +272336,Health,Health +272335,Health,Health +272334,Health,Health +272333,Health,Health +272332,Health,Health +272330,Health,Health +272329,Health,Health +437779,Health,Health +437778,Health,Health +437583,Health,Health +437582,Health,Health +437581,Health,Health +433010,Health,Health +430440,Health,Health +430001,Health,Health +430000,Health,Health +427802,Health,Health +419260,Health,Health +417047,Health,Health +414580,Health,Health +414579,Health,Health +414033,Health,Health +412507,Health,Health +412506,Health,Health +412505,Health,Health +412504,Health,Health +406853,Health,Health +399303,Health,Health +397125,Health,Health +394867,Health,Health +394866,Health,Health +394865,Health,Health +394864,Health,Health +394863,Health,Health +394862,Health,Health +394861,Health,Health +394860,Health,Health +394859,Health,Health +394858,Health,Health +394857,Health,Health +394856,Health,Health +394854,Health,Health +394853,Health,Health +393267,Health,Health +392227,Health,Health +391962,Health,Health +391757,Health,Health +386568,Health,Health +385915,Health,Health +385914,Health,Health +385913,Health,Health +542955,Health,Health +540551,Health,Health +539121,Health,Health +532712,Health,Health +530512,Health,Health +530483,Health,Health +530482,Health,Health +530481,Health,Health +530480,Health,Health +521406,Health,Health +520807,Health,Health +520806,Health,Health +518492,Health,Health +503530,Health,Health +500010,Health,Health +498378,Health,Health +497283,Health,Health +497281,Health,Health +497279,Health,Health +497276,Health,Health +497275,Health,Health +497274,Health,Health +497273,Health,Health +497272,Health,Health +497271,Health,Health +497270,Health,Health +497269,Health,Health +497268,Health,Health +497266,Health,Health +497265,Health,Health +497264,Health,Health +491904,Health,Health +488939,Health,Health +486979,Health,Health +486185,Health,Health +485967,Health,Health +480622,Health,Health +479311,Health,Health +474078,Health,Health +471550,Health,Health +465537,Health,Health +465531,Health,Health +465530,Health,Health +465529,Health,Health +465528,Health,Health +465527,Health,Health +465526,Health,Health +465525,Health,Health +465219,Health,Health +465217,Health,Health +463240,Health,Health +462186,Health,Health +461875,Health,Health +457851,Health,Health +454542,Health,Health +454540,Health,Health +454539,Health,Health +454538,Health,Health +450700,Health,Health +450699,Health,Health +448419,Health,Health +448418,Health,Health +448417,Health,Health +448415,Health,Health +448413,Health,Health +448411,Health,Health +448407,Health,Health +448406,Health,Health +448404,Health,Health +448403,Health,Health +448402,Health,Health +448401,Health,Health +448400,Health,Health +448399,Health,Health +448398,Health,Health +448397,Health,Health +448396,Health,Health +394692,Environment,Environment +394691,Environment,Environment +149218,Energy,Energy +149216,Energy,Energy +161124,Energy,Energy +161123,Energy,Energy +149216,Environment,Environment +161124,Industry,Industry +161123,Industry,Industry +149220,Industry,Industry +149218,Industry,Industry +149220,Taxation and Finance,Taxation and Finance +149218,Taxation and Finance,Taxation and Finance +161124,Taxation and Finance,Taxation and Finance +479423,Infrastructure,Infrastructure +479421,Infrastructure,Infrastructure +479435,Infrastructure,Infrastructure +479433,Infrastructure,Infrastructure +217207,Consumer Issues,Consumer Issues +202225,Consumer Issues,Consumer Issues +439459,Financial Institutions,Financial Institutions +439455,Financial Institutions,Financial Institutions +217209,Financial Institutions,Financial Institutions +217207,Financial Institutions,Financial Institutions +202225,Financial Institutions,Financial Institutions +217207,Small Business,Small Business +202225,Small Business,Small Business +169466,Environment,Environment +169465,Environment,Environment +169466,Fisheries,Fisheries +169465,Fisheries,Fisheries +513584,Government Procurement,Government Procurement +509527,Government Procurement,Government Procurement +368156,Government Procurement,Government Procurement +350314,Government Procurement,Government Procurement +347743,Government Procurement,Government Procurement +347741,Government Procurement,Government Procurement +340971,Government Procurement,Government Procurement +340968,Government Procurement,Government Procurement +340967,Government Procurement,Government Procurement +338486,Government Procurement,Government Procurement +338485,Government Procurement,Government Procurement +338484,Government Procurement,Government Procurement +338482,Government Procurement,Government Procurement +338480,Government Procurement,Government Procurement +335166,Government Procurement,Government Procurement +335165,Government Procurement,Government Procurement +335163,Government Procurement,Government Procurement +335162,Government Procurement,Government Procurement +335160,Government Procurement,Government Procurement +395981,Government Procurement,Government Procurement +384938,Government Procurement,Government Procurement +383454,Government Procurement,Government Procurement +382007,Government Procurement,Government Procurement +478091,Government Procurement,Government Procurement +467920,Government Procurement,Government Procurement +464898,Government Procurement,Government Procurement +464892,Government Procurement,Government Procurement +464883,Government Procurement,Government Procurement +462715,Government Procurement,Government Procurement +447592,Government Procurement,Government Procurement +432369,Government Procurement,Government Procurement +542487,Government Procurement,Government Procurement +540656,Government Procurement,Government Procurement +533004,Government Procurement,Government Procurement +533002,Government Procurement,Government Procurement +530976,Government Procurement,Government Procurement +530380,Government Procurement,Government Procurement +530372,Government Procurement,Government Procurement +527331,Government Procurement,Government Procurement +516290,Government Procurement,Government Procurement +324160,Health,Health +330789,Health,Health +515001,Environment,Environment +496552,Environment,Environment +206248,Environment,Environment +165581,Environment,Environment +261193,Environment,Environment +261192,Environment,Environment +261190,Environment,Environment +261189,Environment,Environment +261187,Environment,Environment +261186,Environment,Environment +261185,Environment,Environment +261183,Environment,Environment +261182,Environment,Environment +261181,Environment,Environment +261180,Environment,Environment +261179,Environment,Environment +261178,Environment,Environment +261177,Environment,Environment +261176,Environment,Environment +261175,Environment,Environment +261174,Environment,Environment +261173,Environment,Environment +261172,Environment,Environment +261129,Environment,Environment +259929,Environment,Environment +259170,Environment,Environment +463578,Environment,Environment +521537,Environment,Environment +521535,Environment,Environment +521534,Environment,Environment +521533,Environment,Environment +521205,Environment,Environment +521204,Environment,Environment +521203,Environment,Environment +521202,Environment,Environment +521201,Environment,Environment +521200,Environment,Environment +521199,Environment,Environment +521198,Environment,Environment +521196,Environment,Environment +521195,Environment,Environment +521193,Environment,Environment +521192,Environment,Environment +521188,Environment,Environment +516643,Environment,Environment +521533,Health,Health +521193,Health,Health +165581,Health,Health +261193,Health,Health +261192,Health,Health +261190,Health,Health +261189,Health,Health +261187,Health,Health +261186,Health,Health +261185,Health,Health +261183,Health,Health +261182,Health,Health +261181,Health,Health +261180,Health,Health +261179,Health,Health +261178,Health,Health +261177,Health,Health +261176,Health,Health +261175,Health,Health +261174,Health,Health +261173,Health,Health +261172,Health,Health +261129,Health,Health +259929,Health,Health +259170,Health,Health +463578,Health,Health +463577,Health,Health +463576,Health,Health +463575,Health,Health +463574,Health,Health +463573,Health,Health +463572,Health,Health +463571,Health,Health +463570,Health,Health +463569,Health,Health +446237,Health,Health +446236,Health,Health +446235,Health,Health +446234,Health,Health +446233,Health,Health +446232,Health,Health +446125,Health,Health +446124,Health,Health +446123,Health,Health +446122,Health,Health +521537,Health,Health +521535,Health,Health +446123,Agriculture,Agriculture +446122,Agriculture,Agriculture +206248,Agriculture,Agriculture +165581,Agriculture,Agriculture +319894,Agriculture,Agriculture +261193,Agriculture,Agriculture +261192,Agriculture,Agriculture +261190,Agriculture,Agriculture +261189,Agriculture,Agriculture +261187,Agriculture,Agriculture +261186,Agriculture,Agriculture +261185,Agriculture,Agriculture +261183,Agriculture,Agriculture +261182,Agriculture,Agriculture +261181,Agriculture,Agriculture +261180,Agriculture,Agriculture +261179,Agriculture,Agriculture +261178,Agriculture,Agriculture +261177,Agriculture,Agriculture +261176,Agriculture,Agriculture +261175,Agriculture,Agriculture +261174,Agriculture,Agriculture +261173,Agriculture,Agriculture +261172,Agriculture,Agriculture +261129,Agriculture,Agriculture +259929,Agriculture,Agriculture +259170,Agriculture,Agriculture +421352,Agriculture,Agriculture +421351,Agriculture,Agriculture +421350,Agriculture,Agriculture +421349,Agriculture,Agriculture +421348,Agriculture,Agriculture +421345,Agriculture,Agriculture +421344,Agriculture,Agriculture +421342,Agriculture,Agriculture +396729,Agriculture,Agriculture +396728,Agriculture,Agriculture +396727,Agriculture,Agriculture +396724,Agriculture,Agriculture +396723,Agriculture,Agriculture +396717,Agriculture,Agriculture +396714,Agriculture,Agriculture +380615,Agriculture,Agriculture +372612,Agriculture,Agriculture +372605,Agriculture,Agriculture +372604,Agriculture,Agriculture +372603,Agriculture,Agriculture +372169,Agriculture,Agriculture +372166,Agriculture,Agriculture +372163,Agriculture,Agriculture +372160,Agriculture,Agriculture +372158,Agriculture,Agriculture +352500,Agriculture,Agriculture +350086,Agriculture,Agriculture +350085,Agriculture,Agriculture +350084,Agriculture,Agriculture +350083,Agriculture,Agriculture +350082,Agriculture,Agriculture +350081,Agriculture,Agriculture +350080,Agriculture,Agriculture +350079,Agriculture,Agriculture +350078,Agriculture,Agriculture +350077,Agriculture,Agriculture +521537,Agriculture,Agriculture +521535,Agriculture,Agriculture +521534,Agriculture,Agriculture +521533,Agriculture,Agriculture +521205,Agriculture,Agriculture +521204,Agriculture,Agriculture +521203,Agriculture,Agriculture +521202,Agriculture,Agriculture +521201,Agriculture,Agriculture +521200,Agriculture,Agriculture +521199,Agriculture,Agriculture +521198,Agriculture,Agriculture +521196,Agriculture,Agriculture +521195,Agriculture,Agriculture +521193,Agriculture,Agriculture +521192,Agriculture,Agriculture +521188,Agriculture,Agriculture +516643,Agriculture,Agriculture +516641,Agriculture,Agriculture +515001,Agriculture,Agriculture +514424,Agriculture,Agriculture +513854,Agriculture,Agriculture +512058,Agriculture,Agriculture +497476,Agriculture,Agriculture +496782,Agriculture,Agriculture +496781,Agriculture,Agriculture +496617,Agriculture,Agriculture +496554,Agriculture,Agriculture +496553,Agriculture,Agriculture +496552,Agriculture,Agriculture +496551,Agriculture,Agriculture +496549,Agriculture,Agriculture +496548,Agriculture,Agriculture +496547,Agriculture,Agriculture +496546,Agriculture,Agriculture +496545,Agriculture,Agriculture +496544,Agriculture,Agriculture +496543,Agriculture,Agriculture +496542,Agriculture,Agriculture +496540,Agriculture,Agriculture +489210,Agriculture,Agriculture +488553,Agriculture,Agriculture +463578,Agriculture,Agriculture +463577,Agriculture,Agriculture +463576,Agriculture,Agriculture +463575,Agriculture,Agriculture +463574,Agriculture,Agriculture +463573,Agriculture,Agriculture +463572,Agriculture,Agriculture +463571,Agriculture,Agriculture +463570,Agriculture,Agriculture +463569,Agriculture,Agriculture +458164,Agriculture,Agriculture +458159,Agriculture,Agriculture +446237,Agriculture,Agriculture +446236,Agriculture,Agriculture +446235,Agriculture,Agriculture +446234,Agriculture,Agriculture +446233,Agriculture,Agriculture +446232,Agriculture,Agriculture +446125,Agriculture,Agriculture +516643,International Trade,International Trade +514424,International Trade,International Trade +206248,International Trade,International Trade +165581,International Trade,International Trade +261193,International Trade,International Trade +261192,International Trade,International Trade +261190,International Trade,International Trade +261189,International Trade,International Trade +261187,International Trade,International Trade +261186,International Trade,International Trade +261185,International Trade,International Trade +261183,International Trade,International Trade +261182,International Trade,International Trade +261181,International Trade,International Trade +261180,International Trade,International Trade +261179,International Trade,International Trade +261178,International Trade,International Trade +261177,International Trade,International Trade +261176,International Trade,International Trade +261175,International Trade,International Trade +261174,International Trade,International Trade +261173,International Trade,International Trade +261172,International Trade,International Trade +261129,International Trade,International Trade +259929,International Trade,International Trade +259170,International Trade,International Trade +396729,International Trade,International Trade +396728,International Trade,International Trade +396727,International Trade,International Trade +396724,International Trade,International Trade +396723,International Trade,International Trade +396717,International Trade,International Trade +396714,International Trade,International Trade +380615,International Trade,International Trade +372612,International Trade,International Trade +372605,International Trade,International Trade +372604,International Trade,International Trade +372603,International Trade,International Trade +372169,International Trade,International Trade +372166,International Trade,International Trade +372163,International Trade,International Trade +372158,International Trade,International Trade +350086,International Trade,International Trade +350085,International Trade,International Trade +350084,International Trade,International Trade +350083,International Trade,International Trade +350082,International Trade,International Trade +350081,International Trade,International Trade +350080,International Trade,International Trade +350079,International Trade,International Trade +350078,International Trade,International Trade +350077,International Trade,International Trade +319894,International Trade,International Trade +497476,International Trade,International Trade +496782,International Trade,International Trade +496781,International Trade,International Trade +496617,International Trade,International Trade +496554,International Trade,International Trade +496553,International Trade,International Trade +496551,International Trade,International Trade +496549,International Trade,International Trade +496548,International Trade,International Trade +496547,International Trade,International Trade +496546,International Trade,International Trade +496545,International Trade,International Trade +496544,International Trade,International Trade +496543,International Trade,International Trade +496542,International Trade,International Trade +496540,International Trade,International Trade +463578,International Trade,International Trade +463577,International Trade,International Trade +463576,International Trade,International Trade +463575,International Trade,International Trade +463574,International Trade,International Trade +463573,International Trade,International Trade +463571,International Trade,International Trade +463570,International Trade,International Trade +463569,International Trade,International Trade +458164,International Trade,International Trade +458159,International Trade,International Trade +446237,International Trade,International Trade +446236,International Trade,International Trade +446235,International Trade,International Trade +446234,International Trade,International Trade +446233,International Trade,International Trade +446232,International Trade,International Trade +446125,International Trade,International Trade +446124,International Trade,International Trade +446123,International Trade,International Trade +446122,International Trade,International Trade +421352,International Trade,International Trade +421351,International Trade,International Trade +421350,International Trade,International Trade +421348,International Trade,International Trade +421345,International Trade,International Trade +421344,International Trade,International Trade +421342,International Trade,International Trade +521537,International Trade,International Trade +521535,International Trade,International Trade +521534,International Trade,International Trade +521533,International Trade,International Trade +521205,International Trade,International Trade +521204,International Trade,International Trade +521203,International Trade,International Trade +521202,International Trade,International Trade +521201,International Trade,International Trade +521200,International Trade,International Trade +521199,International Trade,International Trade +521198,International Trade,International Trade +521196,International Trade,International Trade +521195,International Trade,International Trade +521192,International Trade,International Trade +405958,Financial Institutions,Financial Institutions +542562,Financial Institutions,Financial Institutions +533460,Financial Institutions,Financial Institutions +524014,Financial Institutions,Financial Institutions +514336,Financial Institutions,Financial Institutions +514287,Financial Institutions,Financial Institutions +500999,Financial Institutions,Financial Institutions +500101,Financial Institutions,Financial Institutions +471892,Financial Institutions,Financial Institutions +471891,Financial Institutions,Financial Institutions +471888,Financial Institutions,Financial Institutions +471887,Financial Institutions,Financial Institutions +471885,Financial Institutions,Financial Institutions +471356,Financial Institutions,Financial Institutions +462372,Financial Institutions,Financial Institutions +462312,Financial Institutions,Financial Institutions +460638,Financial Institutions,Financial Institutions +452325,Financial Institutions,Financial Institutions +444529,Financial Institutions,Financial Institutions +444381,Financial Institutions,Financial Institutions +444380,Financial Institutions,Financial Institutions +437611,Financial Institutions,Financial Institutions +437080,Financial Institutions,Financial Institutions +434964,Financial Institutions,Financial Institutions +431734,Financial Institutions,Financial Institutions +431733,Financial Institutions,Financial Institutions +424101,Financial Institutions,Financial Institutions +418654,Financial Institutions,Financial Institutions +418653,Financial Institutions,Financial Institutions +417279,Financial Institutions,Financial Institutions +414298,Financial Institutions,Financial Institutions +414204,Financial Institutions,Financial Institutions +408407,Financial Institutions,Financial Institutions +408406,Financial Institutions,Financial Institutions +224187,Employment and Training,Employment and Training +434019,Employment and Training,Employment and Training +224651,Employment and Training,Employment and Training +427121,Health,Health +427120,Health,Health +179644,Health,Health +175070,Health,Health +175068,Health,Health +170126,Health,Health +170125,Health,Health +170124,Health,Health +170039,Health,Health +165745,Health,Health +224189,Health,Health +427134,Health,Health +427133,Health,Health +427132,Health,Health +427131,Health,Health +427130,Health,Health +427129,Health,Health +427128,Health,Health +427127,Health,Health +427126,Health,Health +427125,Health,Health +427124,Health,Health +427123,Health,Health +540592,Transportation,Transportation +446580,Consumer Issues,Consumer Issues +446579,Consumer Issues,Consumer Issues +170127,Consumer Issues,Consumer Issues +224651,Consumer Issues,Consumer Issues +224650,Consumer Issues,Consumer Issues +224649,Consumer Issues,Consumer Issues +224648,Consumer Issues,Consumer Issues +224190,Consumer Issues,Consumer Issues +224189,Consumer Issues,Consumer Issues +224188,Consumer Issues,Consumer Issues +224187,Consumer Issues,Consumer Issues +194650,Consumer Issues,Consumer Issues +310244,Consumer Issues,Consumer Issues +310240,Consumer Issues,Consumer Issues +310236,Consumer Issues,Consumer Issues +310221,Consumer Issues,Consumer Issues +310217,Consumer Issues,Consumer Issues +310214,Consumer Issues,Consumer Issues +310209,Consumer Issues,Consumer Issues +310204,Consumer Issues,Consumer Issues +310199,Consumer Issues,Consumer Issues +310188,Consumer Issues,Consumer Issues +267029,Consumer Issues,Consumer Issues +262051,Consumer Issues,Consumer Issues +262050,Consumer Issues,Consumer Issues +262049,Consumer Issues,Consumer Issues +260031,Consumer Issues,Consumer Issues +255529,Consumer Issues,Consumer Issues +255429,Consumer Issues,Consumer Issues +255049,Consumer Issues,Consumer Issues +254129,Consumer Issues,Consumer Issues +253430,Consumer Issues,Consumer Issues +253429,Consumer Issues,Consumer Issues +253069,Consumer Issues,Consumer Issues +250509,Consumer Issues,Consumer Issues +248629,Consumer Issues,Consumer Issues +247833,Consumer Issues,Consumer Issues +247392,Consumer Issues,Consumer Issues +247391,Consumer Issues,Consumer Issues +247390,Consumer Issues,Consumer Issues +246152,Consumer Issues,Consumer Issues +246151,Consumer Issues,Consumer Issues +246150,Consumer Issues,Consumer Issues +246149,Consumer Issues,Consumer Issues +242929,Consumer Issues,Consumer Issues +242609,Consumer Issues,Consumer Issues +242590,Consumer Issues,Consumer Issues +241020,Consumer Issues,Consumer Issues +241017,Consumer Issues,Consumer Issues +234689,Consumer Issues,Consumer Issues +234289,Consumer Issues,Consumer Issues +231930,Consumer Issues,Consumer Issues +231929,Consumer Issues,Consumer Issues +445069,Consumer Issues,Consumer Issues +444822,Consumer Issues,Consumer Issues +444379,Consumer Issues,Consumer Issues +440712,Consumer Issues,Consumer Issues +437630,Consumer Issues,Consumer Issues +437389,Consumer Issues,Consumer Issues +436851,Consumer Issues,Consumer Issues +436542,Consumer Issues,Consumer Issues +436541,Consumer Issues,Consumer Issues +436540,Consumer Issues,Consumer Issues +436538,Consumer Issues,Consumer Issues +436537,Consumer Issues,Consumer Issues +436536,Consumer Issues,Consumer Issues +436535,Consumer Issues,Consumer Issues +436534,Consumer Issues,Consumer Issues +436533,Consumer Issues,Consumer Issues +436532,Consumer Issues,Consumer Issues +436531,Consumer Issues,Consumer Issues +436530,Consumer Issues,Consumer Issues +436246,Consumer Issues,Consumer Issues +434020,Consumer Issues,Consumer Issues +434019,Consumer Issues,Consumer Issues +429645,Consumer Issues,Consumer Issues +427502,Consumer Issues,Consumer Issues +427501,Consumer Issues,Consumer Issues +427500,Consumer Issues,Consumer Issues +427499,Consumer Issues,Consumer Issues +427498,Consumer Issues,Consumer Issues +427497,Consumer Issues,Consumer Issues +427134,Consumer Issues,Consumer Issues +427133,Consumer Issues,Consumer Issues +427132,Consumer Issues,Consumer Issues +427131,Consumer Issues,Consumer Issues +427130,Consumer Issues,Consumer Issues +427129,Consumer Issues,Consumer Issues +427128,Consumer Issues,Consumer Issues +427127,Consumer Issues,Consumer Issues +427126,Consumer Issues,Consumer Issues +427125,Consumer Issues,Consumer Issues +427124,Consumer Issues,Consumer Issues +427123,Consumer Issues,Consumer Issues +427122,Consumer Issues,Consumer Issues +427121,Consumer Issues,Consumer Issues +427120,Consumer Issues,Consumer Issues +422756,Consumer Issues,Consumer Issues +422755,Consumer Issues,Consumer Issues +422754,Consumer Issues,Consumer Issues +422753,Consumer Issues,Consumer Issues +421073,Consumer Issues,Consumer Issues +421068,Consumer Issues,Consumer Issues +421066,Consumer Issues,Consumer Issues +420434,Consumer Issues,Consumer Issues +420433,Consumer Issues,Consumer Issues +420432,Consumer Issues,Consumer Issues +419561,Consumer Issues,Consumer Issues +419553,Consumer Issues,Consumer Issues +419550,Consumer Issues,Consumer Issues +419548,Consumer Issues,Consumer Issues +419546,Consumer Issues,Consumer Issues +416130,Consumer Issues,Consumer Issues +414789,Consumer Issues,Consumer Issues +414748,Consumer Issues,Consumer Issues +414384,Consumer Issues,Consumer Issues +411086,Consumer Issues,Consumer Issues +410419,Consumer Issues,Consumer Issues +408488,Consumer Issues,Consumer Issues +408487,Consumer Issues,Consumer Issues +400079,Consumer Issues,Consumer Issues +400076,Consumer Issues,Consumer Issues +397789,Consumer Issues,Consumer Issues +394521,Consumer Issues,Consumer Issues +394518,Consumer Issues,Consumer Issues +394515,Consumer Issues,Consumer Issues +394511,Consumer Issues,Consumer Issues +394509,Consumer Issues,Consumer Issues +391264,Consumer Issues,Consumer Issues +391252,Consumer Issues,Consumer Issues +386126,Consumer Issues,Consumer Issues +386125,Consumer Issues,Consumer Issues +379108,Consumer Issues,Consumer Issues +367522,Consumer Issues,Consumer Issues +364762,Consumer Issues,Consumer Issues +341559,Consumer Issues,Consumer Issues +341557,Consumer Issues,Consumer Issues +341552,Consumer Issues,Consumer Issues +338597,Consumer Issues,Consumer Issues +338596,Consumer Issues,Consumer Issues +338593,Consumer Issues,Consumer Issues +338591,Consumer Issues,Consumer Issues +335777,Consumer Issues,Consumer Issues +335775,Consumer Issues,Consumer Issues +335771,Consumer Issues,Consumer Issues +335770,Consumer Issues,Consumer Issues +335768,Consumer Issues,Consumer Issues +320829,Consumer Issues,Consumer Issues +317169,Consumer Issues,Consumer Issues +313023,Consumer Issues,Consumer Issues +313021,Consumer Issues,Consumer Issues +540819,Consumer Issues,Consumer Issues +540593,Consumer Issues,Consumer Issues +536143,Consumer Issues,Consumer Issues +530302,Consumer Issues,Consumer Issues +530301,Consumer Issues,Consumer Issues +530018,Consumer Issues,Consumer Issues +524688,Consumer Issues,Consumer Issues +524685,Consumer Issues,Consumer Issues +524684,Consumer Issues,Consumer Issues +509501,Consumer Issues,Consumer Issues +508491,Consumer Issues,Consumer Issues +508487,Consumer Issues,Consumer Issues +508482,Consumer Issues,Consumer Issues +508477,Consumer Issues,Consumer Issues +508475,Consumer Issues,Consumer Issues +506084,Consumer Issues,Consumer Issues +506083,Consumer Issues,Consumer Issues +506082,Consumer Issues,Consumer Issues +506081,Consumer Issues,Consumer Issues +498755,Consumer Issues,Consumer Issues +492303,Consumer Issues,Consumer Issues +487997,Consumer Issues,Consumer Issues +487992,Consumer Issues,Consumer Issues +481308,Consumer Issues,Consumer Issues +480723,Consumer Issues,Consumer Issues +478536,Consumer Issues,Consumer Issues +474378,Consumer Issues,Consumer Issues +474377,Consumer Issues,Consumer Issues +474376,Consumer Issues,Consumer Issues +474375,Consumer Issues,Consumer Issues +465875,Consumer Issues,Consumer Issues +462988,Consumer Issues,Consumer Issues +462987,Consumer Issues,Consumer Issues +462958,Consumer Issues,Consumer Issues +453566,Consumer Issues,Consumer Issues +453565,Consumer Issues,Consumer Issues +453526,Consumer Issues,Consumer Issues +453523,Consumer Issues,Consumer Issues +453522,Consumer Issues,Consumer Issues +451097,Consumer Issues,Consumer Issues +451096,Consumer Issues,Consumer Issues +451095,Consumer Issues,Consumer Issues +448435,Consumer Issues,Consumer Issues +446582,Consumer Issues,Consumer Issues +464764,Environment,Environment +464763,Environment,Environment +380211,Environment,Environment +495622,Environment,Environment +491770,Environment,Environment +491758,Environment,Environment +485206,Environment,Environment +485203,Environment,Environment +380204,Financial Institutions,Financial Institutions +471159,Financial Institutions,Financial Institutions +382793,Financial Institutions,Financial Institutions +381676,Financial Institutions,Financial Institutions +381294,Financial Institutions,Financial Institutions +380216,Financial Institutions,Financial Institutions +380215,Financial Institutions,Financial Institutions +380213,Financial Institutions,Financial Institutions +380212,Financial Institutions,Financial Institutions +380210,Financial Institutions,Financial Institutions +380209,Financial Institutions,Financial Institutions +380208,Financial Institutions,Financial Institutions +473809,Industry,Industry +473808,Industry,Industry +380206,Industry,Industry +478228,Environment,Environment +380207,Financial Institutions,Financial Institutions +475757,Industry,Industry +445289,International Trade,International Trade +462097,Taxation and Finance,Taxation and Finance +498219,Transportation,Transportation +351171,Employment and Training,Employment and Training +174405,Health,Health +347043,Industry,Industry +347043,Labour,Labour +347043,Education,Education +323158,Environment,Environment +329051,Health,Health +329057,International Trade,International Trade +224688,Environment,Environment +397319,International Trade,International Trade +224689,Mining,Mining +106717,Consumer Issues,Consumer Issues +106717,Industry,Industry +90535,Transportation,Transportation +185966,Industry,Industry +474948,Health,Health +341639,Education,Education +341576,Industry,Industry +88026,Financial Institutions,Financial Institutions +450325,Education,Education +437968,Employment and Training,Employment and Training +391906,Energy,Energy +391904,Environment,Environment +526113,Health,Health +374904,Immigration,Immigration +419659,Industry,Industry +456981,Infrastructure,Infrastructure +445237,Intellectual Property,Intellectual Property +217127,International Relations,International Relations +526113,Regional Development,Regional Development +400586,Health,Health +381944,Agriculture,Agriculture +371495,Transportation,Transportation +477812,Employment and Training,Employment and Training +476251,Mining,Mining +121835,Tourism,Tourism +121854,Transportation,Transportation +197551,Agriculture,Agriculture +205808,Consumer Issues,Consumer Issues +197549,Environment,Environment +197567,International Trade,International Trade +86514,Intellectual Property,Intellectual Property +86514,International Relations,International Relations +486505,Energy,Energy +481370,Environment,Environment +498374,Industry,Industry +492002,International Trade,International Trade +484037,Mining,Mining +484040,Transportation,Transportation +494284,Health,Health +501855,Justice and Law Enforcement,Justice and Law Enforcement +155709,Labour,Labour +202800,Government Procurement,Government Procurement +100821,Health,Health +330193,Industry,Industry +180408,Intellectual Property,Intellectual Property +109077,Health,Health +106371,Energy,Energy +99115,Infrastructure,Infrastructure +338864,Environment,Environment +228409,Education,Education +169327,Health,Health +450379,Justice and Law Enforcement,Justice and Law Enforcement +162521,Agriculture,Agriculture +160677,Energy,Energy +160683,Environment,Environment +160682,Taxation and Finance,Taxation and Finance +87235,Energy,Energy +87235,Environment,Environment +87235,Financial Institutions,Financial Institutions +150522,Infrastructure,Infrastructure +448227,Industry,Industry +448226,Industry,Industry +433885,Industry,Industry +433877,Industry,Industry +433876,Industry,Industry +478052,Industry,Industry +478046,Industry,Industry +475769,Industry,Industry +475765,Industry,Industry +475760,Industry,Industry +431238,International Trade,International Trade +431232,International Trade,International Trade +410184,Taxation and Finance,Taxation and Finance +382793,Taxation and Finance,Taxation and Finance +475754,Taxation and Finance,Taxation and Finance +462098,Taxation and Finance,Taxation and Finance +497088,Transportation,Transportation +478237,Transportation,Transportation +381676,Transportation,Transportation +381294,Transportation,Transportation +380216,Transportation,Transportation +380215,Transportation,Transportation +380214,Transportation,Transportation +380213,Transportation,Transportation +380212,Transportation,Transportation +380211,Transportation,Transportation +380210,Transportation,Transportation +380209,Transportation,Transportation +380208,Transportation,Transportation +380207,Transportation,Transportation +464763,Transportation,Transportation +448228,Transportation,Transportation +410187,Transportation,Transportation +410186,Transportation,Transportation +410185,Transportation,Transportation +410183,Transportation,Transportation +410182,Transportation,Transportation +396719,Transportation,Transportation +396678,Transportation,Transportation +396663,Transportation,Transportation +396659,Transportation,Transportation +396653,Transportation,Transportation +396649,Transportation,Transportation +396645,Transportation,Transportation +396618,Transportation,Transportation +382793,Transportation,Transportation +542334,Transportation,Transportation +535102,Transportation,Transportation +530726,Transportation,Transportation +530720,Transportation,Transportation +524253,Transportation,Transportation +507174,Transportation,Transportation +500779,Transportation,Transportation +500731,Transportation,Transportation +349807,Employment and Training,Employment and Training +347775,Employment and Training,Employment and Training +347774,Employment and Training,Employment and Training +347773,Employment and Training,Employment and Training +347772,Employment and Training,Employment and Training +347767,Employment and Training,Employment and Training +347764,Employment and Training,Employment and Training +347045,Employment and Training,Employment and Training +347044,Employment and Training,Employment and Training +347043,Employment and Training,Employment and Training +347042,Employment and Training,Employment and Training +347041,Employment and Training,Employment and Training +172687,Employment and Training,Employment and Training +352026,Employment and Training,Employment and Training +351175,Employment and Training,Employment and Training +174404,Health,Health +172687,Health,Health +174428,Health,Health +174427,Health,Health +174426,Health,Health +174425,Health,Health +174424,Health,Health +174410,Health,Health +174409,Health,Health +174408,Health,Health +174407,Health,Health +174406,Health,Health +347042,Industry,Industry +347041,Industry,Industry +351175,Industry,Industry +351171,Industry,Industry +349807,Industry,Industry +347775,Industry,Industry +347774,Industry,Industry +347773,Industry,Industry +347772,Industry,Industry +347767,Industry,Industry +347764,Industry,Industry +347045,Industry,Industry +347044,Industry,Industry +347042,Labour,Labour +347041,Labour,Labour +351175,Labour,Labour +351171,Labour,Labour +349807,Labour,Labour +347775,Labour,Labour +347774,Labour,Labour +347773,Labour,Labour +347772,Labour,Labour +347767,Labour,Labour +347764,Labour,Labour +347045,Labour,Labour +347044,Labour,Labour +347042,Education,Education +347041,Education,Education +351175,Education,Education +351171,Education,Education +349807,Education,Education +347775,Education,Education +347774,Education,Education +347773,Education,Education +347772,Education,Education +347767,Education,Education +347764,Education,Education +347045,Education,Education +347044,Education,Education +329050,Health,Health +329049,Health,Health +323159,Health,Health +224687,Environment,Environment +373041,Environment,Environment +383088,International Trade,International Trade +482972,International Trade,International Trade +224688,International Trade,International Trade +224687,International Trade,International Trade +450678,International Trade,International Trade +431459,International Trade,International Trade +431452,International Trade,International Trade +431451,International Trade,International Trade +224688,Mining,Mining +224687,Mining,Mining +158322,Mining,Mining +158321,Mining,Mining +158319,Mining,Mining +302310,Mining,Mining +224690,Mining,Mining +90534,Transportation,Transportation +90531,Transportation,Transportation +474947,Health,Health +471366,Health,Health +469456,Health,Health +452103,Health,Health +539143,Health,Health +530658,Health,Health +527712,Health,Health +527711,Health,Health +527707,Health,Health +527706,Health,Health +524022,Health,Health +507142,Health,Health +476811,Health,Health +474949,Health,Health +341621,Education,Education +341576,Education,Education +341648,Education,Education +341644,Education,Education +88008,Financial Institutions,Financial Institutions +448424,Education,Education +447985,Education,Education +162248,Education,Education +162234,Education,Education +354092,Education,Education +351701,Education,Education +347153,Education,Education +347152,Education,Education +347151,Education,Education +343842,Education,Education +343836,Education,Education +338160,Education,Education +338151,Education,Education +327369,Education,Education +304290,Education,Education +304273,Education,Education +304264,Education,Education +296907,Education,Education +282353,Education,Education +282349,Education,Education +282334,Education,Education +282292,Education,Education +264189,Education,Education +202761,Education,Education +175254,Education,Education +447979,Education,Education +447975,Education,Education +447965,Education,Education +447962,Education,Education +447942,Education,Education +447930,Education,Education +445237,Education,Education +445228,Education,Education +437969,Education,Education +437968,Education,Education +434030,Education,Education +428257,Education,Education +426304,Education,Education +426298,Education,Education +426289,Education,Education +425990,Education,Education +422551,Education,Education +419737,Education,Education +419719,Education,Education +419717,Education,Education +419715,Education,Education +419653,Education,Education +418259,Education,Education +415788,Education,Education +415764,Education,Education +415756,Education,Education +415754,Education,Education +400862,Education,Education +399204,Education,Education +399196,Education,Education +399194,Education,Education +397149,Education,Education +397142,Education,Education +397140,Education,Education +397138,Education,Education +397134,Education,Education +397133,Education,Education +397132,Education,Education +394281,Education,Education +394277,Education,Education +394275,Education,Education +394273,Education,Education +394264,Education,Education +392911,Education,Education +392910,Education,Education +392909,Education,Education +392905,Education,Education +388270,Education,Education +388252,Education,Education +378313,Education,Education +376613,Education,Education +374912,Education,Education +374908,Education,Education +374904,Education,Education +373165,Education,Education +373163,Education,Education +369074,Education,Education +369072,Education,Education +369064,Education,Education +369062,Education,Education +369059,Education,Education +369005,Education,Education +366746,Education,Education +362369,Education,Education +362366,Education,Education +362363,Education,Education +362355,Education,Education +362352,Education,Education +361213,Education,Education +361205,Education,Education +361204,Education,Education +356418,Education,Education +472750,Education,Education +472719,Education,Education +470745,Education,Education +470224,Education,Education +470223,Education,Education +470217,Education,Education +464770,Education,Education +458469,Education,Education +452836,Education,Education +452833,Education,Education +450328,Education,Education +415756,Employment and Training,Employment and Training +415754,Employment and Training,Employment and Training +162248,Employment and Training,Employment and Training +202761,Employment and Training,Employment and Training +175254,Employment and Training,Employment and Training +397133,Employment and Training,Employment and Training +394277,Employment and Training,Employment and Training +394275,Employment and Training,Employment and Training +394273,Employment and Training,Employment and Training +394264,Employment and Training,Employment and Training +391858,Employment and Training,Employment and Training +296907,Employment and Training,Employment and Training +264189,Employment and Training,Employment and Training +540851,Employment and Training,Employment and Training +538667,Employment and Training,Employment and Training +503893,Employment and Training,Employment and Training +500706,Employment and Training,Employment and Training +472718,Employment and Training,Employment and Training +470745,Employment and Training,Employment and Training +470224,Employment and Training,Employment and Training +470223,Employment and Training,Employment and Training +470217,Employment and Training,Employment and Training +464770,Employment and Training,Employment and Training +450328,Employment and Training,Employment and Training +450325,Employment and Training,Employment and Training +447965,Employment and Training,Employment and Training +447962,Employment and Training,Employment and Training +447955,Employment and Training,Employment and Training +445237,Employment and Training,Employment and Training +445228,Employment and Training,Employment and Training +437969,Employment and Training,Employment and Training +391904,Energy,Energy +362355,Energy,Energy +388159,Environment,Environment +507443,Environment,Environment +86855,Environment,Environment +86854,Environment,Environment +121494,Environment,Environment +296970,Environment,Environment +162243,Environment,Environment +162240,Environment,Environment +162232,Environment,Environment +162230,Environment,Environment +485894,Environment,Environment +485891,Environment,Environment +458464,Environment,Environment +426304,Environment,Environment +426298,Environment,Environment +426289,Environment,Environment +419719,Environment,Environment +419717,Environment,Environment +419715,Environment,Environment +419710,Environment,Environment +401257,Environment,Environment +397140,Environment,Environment +391906,Environment,Environment +516623,Health,Health +510240,Health,Health +162234,Health,Health +381518,Health,Health +282292,Health,Health +454754,Health,Health +450328,Health,Health +426298,Health,Health +426289,Health,Health +423875,Health,Health +397140,Health,Health +544024,Health,Health +540851,Health,Health +362355,Immigration,Immigration +338160,Immigration,Immigration +437966,Immigration,Immigration +437956,Immigration,Immigration +388267,Immigration,Immigration +382546,Immigration,Immigration +414134,Industry,Industry +414133,Industry,Industry +410378,Industry,Industry +410376,Industry,Industry +410375,Industry,Industry +408249,Industry,Industry +408248,Industry,Industry +403482,Industry,Industry +403478,Industry,Industry +403477,Industry,Industry +403474,Industry,Industry +400866,Industry,Industry +400856,Industry,Industry +399191,Industry,Industry +397145,Industry,Industry +397142,Industry,Industry +397138,Industry,Industry +397133,Industry,Industry +397132,Industry,Industry +394275,Industry,Industry +392911,Industry,Industry +392910,Industry,Industry +392909,Industry,Industry +392908,Industry,Industry +392905,Industry,Industry +391893,Industry,Industry +391858,Industry,Industry +388277,Industry,Industry +378323,Industry,Industry +374908,Industry,Industry +369059,Industry,Industry +362352,Industry,Industry +347151,Industry,Industry +296907,Industry,Industry +544024,Industry,Industry +526124,Industry,Industry +526113,Industry,Industry +516623,Industry,Industry +456975,Industry,Industry +442332,Industry,Industry +442216,Industry,Industry +442212,Industry,Industry +442207,Industry,Industry +437961,Industry,Industry +434043,Industry,Industry +434038,Industry,Industry +434024,Industry,Industry +425990,Industry,Industry +425989,Industry,Industry +425988,Industry,Industry +425974,Industry,Industry +423870,Industry,Industry +422547,Industry,Industry +422523,Industry,Industry +448424,Infrastructure,Infrastructure +447949,Infrastructure,Infrastructure +79614,Infrastructure,Infrastructure +78539,Infrastructure,Infrastructure +78536,Infrastructure,Infrastructure +77367,Infrastructure,Infrastructure +77361,Infrastructure,Infrastructure +327372,Infrastructure,Infrastructure +207595,Infrastructure,Infrastructure +207582,Infrastructure,Infrastructure +425989,Infrastructure,Infrastructure +425986,Infrastructure,Infrastructure +425985,Infrastructure,Infrastructure +422521,Infrastructure,Infrastructure +394277,Infrastructure,Infrastructure +394275,Infrastructure,Infrastructure +394273,Infrastructure,Infrastructure +394264,Infrastructure,Infrastructure +392910,Infrastructure,Infrastructure +392909,Infrastructure,Infrastructure +391858,Infrastructure,Infrastructure +388283,Infrastructure,Infrastructure +388277,Infrastructure,Infrastructure +388270,Infrastructure,Infrastructure +388259,Infrastructure,Infrastructure +388252,Infrastructure,Infrastructure +385691,Infrastructure,Infrastructure +385418,Infrastructure,Infrastructure +384075,Infrastructure,Infrastructure +384074,Infrastructure,Infrastructure +378313,Infrastructure,Infrastructure +378308,Infrastructure,Infrastructure +378307,Infrastructure,Infrastructure +378306,Infrastructure,Infrastructure +376691,Infrastructure,Infrastructure +376613,Infrastructure,Infrastructure +376611,Infrastructure,Infrastructure +376610,Infrastructure,Infrastructure +376608,Infrastructure,Infrastructure +376606,Infrastructure,Infrastructure +376604,Infrastructure,Infrastructure +376599,Infrastructure,Infrastructure +376584,Infrastructure,Infrastructure +376581,Infrastructure,Infrastructure +374919,Infrastructure,Infrastructure +374908,Infrastructure,Infrastructure +374904,Infrastructure,Infrastructure +373165,Infrastructure,Infrastructure +373162,Infrastructure,Infrastructure +369192,Infrastructure,Infrastructure +369074,Infrastructure,Infrastructure +369072,Infrastructure,Infrastructure +369064,Infrastructure,Infrastructure +369059,Infrastructure,Infrastructure +369005,Infrastructure,Infrastructure +366745,Infrastructure,Infrastructure +356418,Infrastructure,Infrastructure +354092,Infrastructure,Infrastructure +343836,Infrastructure,Infrastructure +512579,Infrastructure,Infrastructure +460111,Infrastructure,Infrastructure +458464,Infrastructure,Infrastructure +445233,Intellectual Property,Intellectual Property +391858,Intellectual Property,Intellectual Property +217129,Intellectual Property,Intellectual Property +374908,Intellectual Property,Intellectual Property +516623,Intellectual Property,Intellectual Property +510239,Intellectual Property,Intellectual Property +510236,Intellectual Property,Intellectual Property +510235,Intellectual Property,Intellectual Property +454753,Intellectual Property,Intellectual Property +448424,Intellectual Property,Intellectual Property +447949,Intellectual Property,Intellectual Property +445238,Intellectual Property,Intellectual Property +217107,International Relations,International Relations +435226,International Relations,International Relations +207595,International Relations,International Relations +207582,International Relations,International Relations +362355,International Relations,International Relations +349208,International Relations,International Relations +338160,International Relations,International Relations +264189,International Relations,International Relations +217129,International Relations,International Relations +217128,International Relations,International Relations +500705,Regional Development,Regional Development +499784,Regional Development,Regional Development +207595,Regional Development,Regional Development +207582,Regional Development,Regional Development +207578,Regional Development,Regional Development +189069,Regional Development,Regional Development +162254,Regional Development,Regional Development +162248,Regional Development,Regional Development +162247,Regional Development,Regional Development +162243,Regional Development,Regional Development +162240,Regional Development,Regional Development +162234,Regional Development,Regional Development +162232,Regional Development,Regional Development +162230,Regional Development,Regional Development +162228,Regional Development,Regional Development +162227,Regional Development,Regional Development +162225,Regional Development,Regional Development +374908,Regional Development,Regional Development +369072,Regional Development,Regional Development +362355,Regional Development,Regional Development +356418,Regional Development,Regional Development +354092,Regional Development,Regional Development +343840,Regional Development,Regional Development +335820,Regional Development,Regional Development +327369,Regional Development,Regional Development +327366,Regional Development,Regional Development +310530,Regional Development,Regional Development +310527,Regional Development,Regional Development +310524,Regional Development,Regional Development +296970,Regional Development,Regional Development +296907,Regional Development,Regional Development +217128,Regional Development,Regional Development +217107,Regional Development,Regional Development +464771,Regional Development,Regional Development +461507,Regional Development,Regional Development +454754,Regional Development,Regional Development +447949,Regional Development,Regional Development +428257,Regional Development,Regional Development +425989,Regional Development,Regional Development +424661,Regional Development,Regional Development +424660,Regional Development,Regional Development +424652,Regional Development,Regional Development +423891,Regional Development,Regional Development +423870,Regional Development,Regional Development +422560,Regional Development,Regional Development +422556,Regional Development,Regional Development +422553,Regional Development,Regional Development +422547,Regional Development,Regional Development +419659,Regional Development,Regional Development +418259,Regional Development,Regional Development +415788,Regional Development,Regional Development +410378,Regional Development,Regional Development +408251,Regional Development,Regional Development +406897,Regional Development,Regional Development +406893,Regional Development,Regional Development +406886,Regional Development,Regional Development +405831,Regional Development,Regional Development +399204,Regional Development,Regional Development +399199,Regional Development,Regional Development +399192,Regional Development,Regional Development +399191,Regional Development,Regional Development +397149,Regional Development,Regional Development +397148,Regional Development,Regional Development +397146,Regional Development,Regional Development +397142,Regional Development,Regional Development +397138,Regional Development,Regional Development +397134,Regional Development,Regional Development +397133,Regional Development,Regional Development +397132,Regional Development,Regional Development +394281,Regional Development,Regional Development +394277,Regional Development,Regional Development +394275,Regional Development,Regional Development +394273,Regional Development,Regional Development +394264,Regional Development,Regional Development +392910,Regional Development,Regional Development +392909,Regional Development,Regional Development +391893,Regional Development,Regional Development +391858,Regional Development,Regional Development +391857,Regional Development,Regional Development +388277,Regional Development,Regional Development +385691,Regional Development,Regional Development +526124,Regional Development,Regional Development +381943,Agriculture,Agriculture +381942,Agriculture,Agriculture +371499,Agriculture,Agriculture +371497,Agriculture,Agriculture +371495,Agriculture,Agriculture +371445,Agriculture,Agriculture +360142,Agriculture,Agriculture +357277,Agriculture,Agriculture +357276,Agriculture,Agriculture +381946,Agriculture,Agriculture +381945,Agriculture,Agriculture +357277,Transportation,Transportation +357276,Transportation,Transportation +381946,Transportation,Transportation +381945,Transportation,Transportation +381944,Transportation,Transportation +381943,Transportation,Transportation +381942,Transportation,Transportation +371499,Transportation,Transportation +371497,Transportation,Transportation +121834,Tourism,Tourism +122574,Tourism,Tourism +122074,Tourism,Tourism +121854,Tourism,Tourism +121835,Transportation,Transportation +197550,Agriculture,Agriculture +197549,Agriculture,Agriculture +197548,Agriculture,Agriculture +197547,Agriculture,Agriculture +184724,Agriculture,Agriculture +167967,Agriculture,Agriculture +167912,Agriculture,Agriculture +167911,Agriculture,Agriculture +167910,Agriculture,Agriculture +167909,Agriculture,Agriculture +167908,Agriculture,Agriculture +165668,Agriculture,Agriculture +161078,Agriculture,Agriculture +156753,Agriculture,Agriculture +156750,Agriculture,Agriculture +154268,Agriculture,Agriculture +154267,Agriculture,Agriculture +296573,Agriculture,Agriculture +268470,Agriculture,Agriculture +268469,Agriculture,Agriculture +264233,Agriculture,Agriculture +264232,Agriculture,Agriculture +264231,Agriculture,Agriculture +264230,Agriculture,Agriculture +264229,Agriculture,Agriculture +249369,Agriculture,Agriculture +249349,Agriculture,Agriculture +215667,Agriculture,Agriculture +205818,Agriculture,Agriculture +205815,Agriculture,Agriculture +205808,Agriculture,Agriculture +205807,Agriculture,Agriculture +197591,Agriculture,Agriculture +197567,Agriculture,Agriculture +197552,Agriculture,Agriculture +205807,Consumer Issues,Consumer Issues +197548,Environment,Environment +197547,Environment,Environment +205808,Environment,Environment +197552,Environment,Environment +197551,Environment,Environment +197550,Environment,Environment +154268,International Trade,International Trade +296573,International Trade,International Trade +268470,International Trade,International Trade +268469,International Trade,International Trade +264233,International Trade,International Trade +264232,International Trade,International Trade +264231,International Trade,International Trade +264230,International Trade,International Trade +264229,International Trade,International Trade +249369,International Trade,International Trade +249349,International Trade,International Trade +215667,International Trade,International Trade +205808,International Trade,International Trade +205807,International Trade,International Trade +486504,Energy,Energy +474759,Energy,Energy +498374,Energy,Energy +492002,Energy,Energy +491999,Energy,Energy +486506,Energy,Energy +481369,Environment,Environment +474759,Environment,Environment +498374,Environment,Environment +492002,Environment,Environment +489724,Environment,Environment +486506,Environment,Environment +486505,Environment,Environment +486504,Environment,Environment +484042,Environment,Environment +484041,Environment,Environment +484040,Environment,Environment +484038,Environment,Environment +484037,Environment,Environment +492002,Industry,Industry +491999,International Trade,International Trade +484041,International Trade,International Trade +481370,Mining,Mining +481369,Mining,Mining +498374,Mining,Mining +492002,Mining,Mining +491999,Mining,Mining +489724,Mining,Mining +486506,Mining,Mining +486505,Mining,Mining +486504,Mining,Mining +484042,Mining,Mining +484041,Mining,Mining +484040,Mining,Mining +484038,Mining,Mining +494284,Justice and Law Enforcement,Justice and Law Enforcement +545202,Justice and Law Enforcement,Justice and Law Enforcement +173390,Justice and Law Enforcement,Justice and Law Enforcement +173389,Justice and Law Enforcement,Justice and Law Enforcement +173388,Justice and Law Enforcement,Justice and Law Enforcement +173387,Justice and Law Enforcement,Justice and Law Enforcement +172693,Justice and Law Enforcement,Justice and Law Enforcement +167385,Justice and Law Enforcement,Justice and Law Enforcement +155709,Justice and Law Enforcement,Justice and Law Enforcement +155708,Justice and Law Enforcement,Justice and Law Enforcement +155707,Justice and Law Enforcement,Justice and Law Enforcement +155706,Justice and Law Enforcement,Justice and Law Enforcement +322175,Justice and Law Enforcement,Justice and Law Enforcement +305110,Justice and Law Enforcement,Justice and Law Enforcement +305109,Justice and Law Enforcement,Justice and Law Enforcement +259750,Justice and Law Enforcement,Justice and Law Enforcement +259749,Justice and Law Enforcement,Justice and Law Enforcement +195845,Justice and Law Enforcement,Justice and Law Enforcement +180684,Justice and Law Enforcement,Justice and Law Enforcement +456519,Justice and Law Enforcement,Justice and Law Enforcement +443317,Justice and Law Enforcement,Justice and Law Enforcement +435158,Justice and Law Enforcement,Justice and Law Enforcement +428059,Justice and Law Enforcement,Justice and Law Enforcement +428057,Justice and Law Enforcement,Justice and Law Enforcement +428056,Justice and Law Enforcement,Justice and Law Enforcement +428054,Justice and Law Enforcement,Justice and Law Enforcement +407607,Justice and Law Enforcement,Justice and Law Enforcement +404225,Justice and Law Enforcement,Justice and Law Enforcement +401541,Justice and Law Enforcement,Justice and Law Enforcement +395564,Justice and Law Enforcement,Justice and Law Enforcement +395561,Justice and Law Enforcement,Justice and Law Enforcement +395560,Justice and Law Enforcement,Justice and Law Enforcement +386942,Justice and Law Enforcement,Justice and Law Enforcement +382933,Justice and Law Enforcement,Justice and Law Enforcement +374770,Justice and Law Enforcement,Justice and Law Enforcement +368317,Justice and Law Enforcement,Justice and Law Enforcement +365862,Justice and Law Enforcement,Justice and Law Enforcement +349882,Justice and Law Enforcement,Justice and Law Enforcement +347899,Justice and Law Enforcement,Justice and Law Enforcement +518209,Justice and Law Enforcement,Justice and Law Enforcement +517426,Justice and Law Enforcement,Justice and Law Enforcement +516317,Justice and Law Enforcement,Justice and Law Enforcement +155708,Labour,Labour +155707,Labour,Labour +155706,Labour,Labour +401541,Labour,Labour +395561,Labour,Labour +382933,Labour,Labour +374770,Labour,Labour +368317,Labour,Labour +365862,Labour,Labour +305110,Labour,Labour +195845,Labour,Labour +180684,Labour,Labour +173388,Labour,Labour +173387,Labour,Labour +172693,Labour,Labour +202797,Government Procurement,Government Procurement +202794,Government Procurement,Government Procurement +189564,Government Procurement,Government Procurement +189562,Government Procurement,Government Procurement +189560,Government Procurement,Government Procurement +189558,Government Procurement,Government Procurement +180408,Government Procurement,Government Procurement +180399,Government Procurement,Government Procurement +173410,Government Procurement,Government Procurement +171949,Government Procurement,Government Procurement +170675,Government Procurement,Government Procurement +168822,Government Procurement,Government Procurement +163871,Government Procurement,Government Procurement +163867,Government Procurement,Government Procurement +315996,Industry,Industry +315994,Industry,Industry +227329,Industry,Industry +227325,Industry,Industry +202800,Industry,Industry +202797,Industry,Industry +202794,Industry,Industry +173410,Industry,Industry +359568,Industry,Industry +333570,Industry,Industry +331596,Industry,Industry +101099,Energy,Energy +101096,Energy,Energy +94574,Energy,Energy +150303,Energy,Energy +135038,Energy,Energy +132456,Energy,Energy +128299,Energy,Energy +302089,Environment,Environment +448229,Environment,Environment +223571,Environment,Environment +168051,Environment,Environment +163772,Environment,Environment +163769,Environment,Environment +213647,Education,Education +334882,Education,Education +228411,Education,Education +228410,Education,Education +169326,Health,Health +169325,Health,Health +160676,Energy,Energy +165914,Energy,Energy +162521,Energy,Energy +162516,Energy,Energy +162502,Energy,Energy +160683,Energy,Energy +160682,Energy,Energy +160681,Energy,Energy +160680,Energy,Energy +160679,Energy,Energy +160681,Environment,Environment +160679,Environment,Environment +165914,Environment,Environment +162521,Environment,Environment +162516,Environment,Environment +162502,Environment,Environment +160680,Taxation and Finance,Taxation and Finance +75154,Energy,Energy +75154,Environment,Environment +75154,Financial Institutions,Financial Institutions +496880,Employment and Training,Employment and Training +496879,Employment and Training,Employment and Training +494429,Employment and Training,Employment and Training +494428,Employment and Training,Employment and Training +462963,Employment and Training,Employment and Training +460941,Employment and Training,Employment and Training +444393,Employment and Training,Employment and Training +444330,Employment and Training,Employment and Training +444327,Employment and Training,Employment and Training +444326,Employment and Training,Employment and Training +444325,Employment and Training,Employment and Training +444323,Employment and Training,Employment and Training +442874,Employment and Training,Employment and Training +440331,Employment and Training,Employment and Training +420135,Employment and Training,Employment and Training +394556,Employment and Training,Employment and Training +504886,Energy,Energy +446055,Energy,Energy +444332,Energy,Energy +444330,Energy,Energy +444329,Energy,Energy +444328,Energy,Energy +442874,Immigration,Immigration +494429,Immigration,Immigration +420131,Infrastructure,Infrastructure +420126,Infrastructure,Infrastructure +397923,Infrastructure,Infrastructure +396542,Infrastructure,Infrastructure +396528,Infrastructure,Infrastructure +396495,Infrastructure,Infrastructure +394556,Infrastructure,Infrastructure +530317,Infrastructure,Infrastructure +512214,Infrastructure,Infrastructure +512213,Infrastructure,Infrastructure +512212,Infrastructure,Infrastructure +512211,Infrastructure,Infrastructure +512121,Infrastructure,Infrastructure +509611,Infrastructure,Infrastructure +504886,Infrastructure,Infrastructure +492445,Infrastructure,Infrastructure +488786,Infrastructure,Infrastructure +486571,Infrastructure,Infrastructure +486557,Infrastructure,Infrastructure +486074,Infrastructure,Infrastructure +476335,Infrastructure,Infrastructure +446055,Infrastructure,Infrastructure +444393,Infrastructure,Infrastructure +444332,Infrastructure,Infrastructure +444330,Infrastructure,Infrastructure +444329,Infrastructure,Infrastructure +444328,Infrastructure,Infrastructure +444327,Infrastructure,Infrastructure +442872,Infrastructure,Infrastructure +442871,Infrastructure,Infrastructure +440332,Infrastructure,Infrastructure +440331,Infrastructure,Infrastructure +440330,Infrastructure,Infrastructure +440298,Infrastructure,Infrastructure +420229,Infrastructure,Infrastructure +420199,Infrastructure,Infrastructure +440299,International Trade,International Trade +424177,International Trade,International Trade +397206,International Trade,International Trade +396612,International Trade,International Trade +396537,International Trade,International Trade +394556,International Trade,International Trade +527622,International Trade,International Trade +527621,International Trade,International Trade +527620,International Trade,International Trade +527619,International Trade,International Trade +527415,International Trade,International Trade +527414,International Trade,International Trade +526114,International Trade,International Trade +515587,International Trade,International Trade +509309,International Trade,International Trade +507198,International Trade,International Trade +506761,International Trade,International Trade +486198,International Trade,International Trade +486079,International Trade,International Trade +482767,International Trade,International Trade +462964,International Trade,International Trade +460944,International Trade,International Trade +444392,International Trade,International Trade +444391,International Trade,International Trade +444328,International Trade,International Trade +444325,Labour,Labour +444323,Labour,Labour +462963,Labour,Labour +444327,Labour,Labour +446055,Transportation,Transportation +444393,Transportation,Transportation +442871,Transportation,Transportation +440330,Transportation,Transportation +440298,Transportation,Transportation +424168,Transportation,Transportation +420795,Transportation,Transportation +420229,Transportation,Transportation +512126,Employment and Training,Employment and Training +394556,Energy,Energy +444393,Immigration,Immigration +420143,Infrastructure,Infrastructure +440331,International Trade,International Trade +444326,Labour,Labour +462920,Transportation,Transportation +132738,Education,Education +132738,Employment and Training,Employment and Training +88228,Energy,Energy +88228,Industry,Industry +88228,Mining,Mining +86538,Financial Institutions,Financial Institutions +229331,Transportation,Transportation +330684,Education,Education +149416,Other,"Research, Innovation and Commercialization" +129160,Consumer Issues,Consumer Issues +129160,Taxation and Finance,Taxation and Finance +129162,Tourism,Tourism +129162,Transportation,Transportation +162031,Agriculture,Agriculture +379505,Health,Health +75134,Environment,Environment +275901,Agriculture,Agriculture +84899,Agriculture,Agriculture +103095,Agriculture,Agriculture +276736,International Trade,International Trade +355185,Agriculture,Agriculture +379507,Health,Health +276111,International Trade,International Trade +147705,Agriculture,Agriculture +169864,Health,Health +276182,International Trade,International Trade +144196,Intellectual Property,Intellectual Property +144196,International Trade,International Trade +162077,Agriculture,Agriculture +162084,Health,Health +329617,International Trade,International Trade +169614,Agriculture,Agriculture +225593,International Trade,International Trade +171010,Government Procurement,Government Procurement +124595,Health,Health +121117,Industry,Industry +88219,Health,Health +93274,Infrastructure,Infrastructure +392123,Agriculture,Agriculture +383736,Internal Trade,Internal Trade +383736,International Trade,International Trade +392124,Transportation,Transportation +354893,Agriculture,Agriculture +378776,Health,Health +373301,International Trade,International Trade +396349,Intellectual Property,Intellectual Property +84881,Agriculture,Agriculture +96014,Energy,Energy +96014,Environment,Environment +84896,Agriculture,Agriculture +532875,Agriculture,Agriculture +532873,Health,Health +277211,International Trade,International Trade +93253,Regional Development,Regional Development +84880,Health,Health +310790,Employment and Training,Employment and Training +502381,Health,Health +320030,Justice and Law Enforcement,Justice and Law Enforcement +304779,Labour,Labour +187804,Energy,Energy +187804,Environment,Environment +172368,Health,Health +145440,Agriculture,Agriculture +123314,Fisheries,Fisheries +140874,Industry,Industry +94150,Infrastructure,Infrastructure +430423,Intellectual Property,Intellectual Property +382991,International Relations,International Relations +131636,Intellectual Property,Intellectual Property +249889,Energy,Energy +249889,Government Procurement,Government Procurement +121994,Energy,Energy +121994,Environment,Environment +150158,Mining,Mining +169286,Health,Health +481170,Taxation and Finance,Taxation and Finance +420199,Transportation,Transportation +420143,Transportation,Transportation +420094,Transportation,Transportation +396495,Transportation,Transportation +394556,Transportation,Transportation +542799,Transportation,Transportation +533850,Transportation,Transportation +533849,Transportation,Transportation +532931,Transportation,Transportation +526114,Transportation,Transportation +515588,Transportation,Transportation +503819,Transportation,Transportation +503341,Transportation,Transportation +502995,Transportation,Transportation +500410,Transportation,Transportation +488786,Transportation,Transportation +486571,Transportation,Transportation +476335,Transportation,Transportation +229330,Transportation,Transportation +516579,Education,Education +453759,Education,Education +157604,Education,Education +294449,Education,Education +261195,Education,Education +261184,Education,Education +250575,Education,Education +236070,Education,Education +204854,Education,Education +204853,Education,Education +204850,Education,Education +183284,Education,Education +400119,Education,Education +388818,Education,Education +377773,Education,Education +369699,Education,Education +369692,Education,Education +369691,Education,Education +369236,Education,Education +369232,Education,Education +369222,Education,Education +369217,Education,Education +369215,Education,Education +369071,Education,Education +369041,Education,Education +369040,Education,Education +369039,Education,Education +369038,Education,Education +369035,Education,Education +369033,Education,Education +369030,Education,Education +338022,Education,Education +335778,Education,Education +335776,Education,Education +335774,Education,Education +334163,Education,Education +334162,Education,Education +140334,Other,"Research, Innovation and Commercialization" +129160,Tourism,Tourism +129160,Transportation,Transportation +252314,Agriculture,Agriculture +225647,Agriculture,Agriculture +84895,Agriculture,Agriculture +379504,Health,Health +379503,Health,Health +75114,Environment,Environment +75096,Environment,Environment +75799,Environment,Environment +75798,Environment,Environment +276735,International Trade,International Trade +276734,International Trade,International Trade +103095,International Trade,International Trade +276738,International Trade,International Trade +276737,International Trade,International Trade +355183,Agriculture,Agriculture +355182,Agriculture,Agriculture +355186,Agriculture,Agriculture +379506,Health,Health +276110,International Trade,International Trade +276109,International Trade,International Trade +379507,International Trade,International Trade +379506,International Trade,International Trade +355186,International Trade,International Trade +355185,International Trade,International Trade +355183,International Trade,International Trade +355182,International Trade,International Trade +326911,International Trade,International Trade +326910,International Trade,International Trade +326907,International Trade,International Trade +326905,International Trade,International Trade +326902,International Trade,International Trade +326899,International Trade,International Trade +308632,International Trade,International Trade +308631,International Trade,International Trade +147704,Agriculture,Agriculture +84879,Agriculture,Agriculture +276181,International Trade,International Trade +276117,International Trade,International Trade +169864,International Trade,International Trade +152839,International Trade,International Trade +308650,International Trade,International Trade +276183,International Trade,International Trade +132516,Intellectual Property,Intellectual Property +162071,Agriculture,Agriculture +169612,Agriculture,Agriculture +103096,Agriculture,Agriculture +84900,Agriculture,Agriculture +162087,Agriculture,Agriculture +162084,Agriculture,Agriculture +162081,Agriculture,Agriculture +162081,Health,Health +162077,Health,Health +329616,International Trade,International Trade +329249,International Trade,International Trade +103096,International Trade,International Trade +169611,International Trade,International Trade +163104,International Trade,International Trade +162087,International Trade,International Trade +162084,International Trade,International Trade +162081,International Trade,International Trade +329619,International Trade,International Trade +329618,International Trade,International Trade +169613,Agriculture,Agriculture +225593,Agriculture,Agriculture +121118,Health,Health +121117,Health,Health +392122,Agriculture,Agriculture +392096,Agriculture,Agriculture +395256,Agriculture,Agriculture +392125,Agriculture,Agriculture +392124,Agriculture,Agriculture +354892,Agriculture,Agriculture +354891,Agriculture,Agriculture +84876,Agriculture,Agriculture +308356,Agriculture,Agriculture +308350,Agriculture,Agriculture +308349,Agriculture,Agriculture +252311,Agriculture,Agriculture +252310,Agriculture,Agriculture +252309,Agriculture,Agriculture +227068,Agriculture,Agriculture +214588,Agriculture,Agriculture +381985,Agriculture,Agriculture +370638,Agriculture,Agriculture +378773,Health,Health +378769,Health,Health +308356,Health,Health +379480,Health,Health +370638,International Trade,International Trade +370633,International Trade,International Trade +204947,International Trade,International Trade +169857,International Trade,International Trade +365149,International Trade,International Trade +365148,International Trade,International Trade +362331,International Trade,International Trade +362330,International Trade,International Trade +362328,International Trade,International Trade +362326,International Trade,International Trade +362324,International Trade,International Trade +358728,International Trade,International Trade +354893,International Trade,International Trade +354892,International Trade,International Trade +354891,International Trade,International Trade +330577,International Trade,International Trade +328679,International Trade,International Trade +328678,International Trade,International Trade +327277,International Trade,International Trade +315050,International Trade,International Trade +311455,International Trade,International Trade +311454,International Trade,International Trade +308356,International Trade,International Trade +308355,International Trade,International Trade +308353,International Trade,International Trade +308352,International Trade,International Trade +308351,International Trade,International Trade +308350,International Trade,International Trade +308349,International Trade,International Trade +302393,International Trade,International Trade +285650,International Trade,International Trade +276743,International Trade,International Trade +276742,International Trade,International Trade +276741,International Trade,International Trade +276740,International Trade,International Trade +276739,International Trade,International Trade +252311,International Trade,International Trade +252310,International Trade,International Trade +252309,International Trade,International Trade +227068,International Trade,International Trade +381985,International Trade,International Trade +379480,International Trade,International Trade +378776,International Trade,International Trade +378773,International Trade,International Trade +378769,International Trade,International Trade +467683,Intellectual Property,Intellectual Property +462567,Intellectual Property,Intellectual Property +163895,Intellectual Property,Intellectual Property +163893,Intellectual Property,Intellectual Property +163892,Intellectual Property,Intellectual Property +163891,Intellectual Property,Intellectual Property +162161,Intellectual Property,Intellectual Property +162160,Intellectual Property,Intellectual Property +162159,Intellectual Property,Intellectual Property +162157,Intellectual Property,Intellectual Property +162154,Intellectual Property,Intellectual Property +157078,Intellectual Property,Intellectual Property +245233,Intellectual Property,Intellectual Property +240985,Intellectual Property,Intellectual Property +223371,Intellectual Property,Intellectual Property +217388,Intellectual Property,Intellectual Property +217387,Intellectual Property,Intellectual Property +202712,Intellectual Property,Intellectual Property +199962,Intellectual Property,Intellectual Property +193804,Intellectual Property,Intellectual Property +189924,Intellectual Property,Intellectual Property +185371,Intellectual Property,Intellectual Property +175110,Intellectual Property,Intellectual Property +433762,Intellectual Property,Intellectual Property +76034,Energy,Energy +76034,Environment,Environment +532874,Agriculture,Agriculture +532873,Agriculture,Agriculture +225648,Agriculture,Agriculture +355181,Agriculture,Agriculture +355180,Agriculture,Agriculture +355179,Agriculture,Agriculture +434362,Agriculture,Agriculture +429655,Agriculture,Agriculture +429654,Agriculture,Agriculture +401922,Agriculture,Agriculture +401920,Agriculture,Agriculture +505458,Agriculture,Agriculture +467611,Agriculture,Agriculture +454526,Agriculture,Agriculture +454471,Agriculture,Agriculture +434362,Health,Health +429656,Health,Health +379502,Health,Health +379501,Health,Health +379500,Health,Health +532874,Health,Health +505458,International Trade,International Trade +467611,International Trade,International Trade +276429,International Trade,International Trade +276417,International Trade,International Trade +276416,International Trade,International Trade +276415,International Trade,International Trade +225648,International Trade,International Trade +454526,International Trade,International Trade +454471,International Trade,International Trade +429654,International Trade,International Trade +429653,International Trade,International Trade +401922,International Trade,International Trade +401920,International Trade,International Trade +379502,International Trade,International Trade +379501,International Trade,International Trade +379500,International Trade,International Trade +355181,International Trade,International Trade +355180,International Trade,International Trade +355179,International Trade,International Trade +93240,Regional Development,Regional Development +154394,Health,Health +154393,Health,Health +310788,Employment and Training,Employment and Training +518203,Employment and Training,Employment and Training +502379,Health,Health +499057,Health,Health +276813,Health,Health +273513,Health,Health +353944,Health,Health +353943,Health,Health +353942,Health,Health +353941,Health,Health +353939,Health,Health +351020,Health,Health +351019,Health,Health +347590,Health,Health +339149,Health,Health +339143,Health,Health +339141,Health,Health +330103,Health,Health +327263,Health,Health +327262,Health,Health +327261,Health,Health +327260,Health,Health +327259,Health,Health +327258,Health,Health +327257,Health,Health +327256,Health,Health +327255,Health,Health +327254,Health,Health +327249,Health,Health +496292,Health,Health +491851,Health,Health +491849,Health,Health +486267,Health,Health +486265,Health,Health +486264,Health,Health +486262,Health,Health +486260,Health,Health +486259,Health,Health +538819,Health,Health +538072,Health,Health +538065,Health,Health +535390,Health,Health +535388,Health,Health +535385,Health,Health +535383,Health,Health +535380,Health,Health +535378,Health,Health +535377,Health,Health +535376,Health,Health +535374,Health,Health +535371,Health,Health +535369,Health,Health +531745,Health,Health +531744,Health,Health +531742,Health,Health +531740,Health,Health +529910,Health,Health +529909,Health,Health +529908,Health,Health +529907,Health,Health +522796,Health,Health +522794,Health,Health +522787,Health,Health +522783,Health,Health +519712,Health,Health +519711,Health,Health +519709,Health,Health +518205,Health,Health +518203,Health,Health +518202,Health,Health +518201,Health,Health +518199,Health,Health +518198,Health,Health +515703,Health,Health +514837,Health,Health +513273,Health,Health +513272,Health,Health +513266,Health,Health +510860,Health,Health +508801,Health,Health +508798,Health,Health +508796,Health,Health +504729,Health,Health +504724,Health,Health +310789,Justice and Law Enforcement,Justice and Law Enforcement +273515,Justice and Law Enforcement,Justice and Law Enforcement +94150,Fisheries,Fisheries +131217,Fisheries,Fisheries +123314,Industry,Industry +423413,Intellectual Property,Intellectual Property +423408,Intellectual Property,Intellectual Property +415226,Intellectual Property,Intellectual Property +415225,Intellectual Property,Intellectual Property +382991,Intellectual Property,Intellectual Property +380534,Intellectual Property,Intellectual Property +367872,Intellectual Property,Intellectual Property +367871,Intellectual Property,Intellectual Property +497254,Intellectual Property,Intellectual Property +446520,Intellectual Property,Intellectual Property +443067,Intellectual Property,Intellectual Property +443066,Intellectual Property,Intellectual Property +437419,Intellectual Property,Intellectual Property +434340,Intellectual Property,Intellectual Property +434338,Intellectual Property,Intellectual Property +433332,Intellectual Property,Intellectual Property +432127,Intellectual Property,Intellectual Property +367872,International Relations,International Relations +367871,International Relations,International Relations +446520,International Relations,International Relations +437419,International Relations,International Relations +434340,International Relations,International Relations +434338,International Relations,International Relations +432127,International Relations,International Relations +430423,International Relations,International Relations +423413,International Relations,International Relations +411479,International Relations,International Relations +194004,Intellectual Property,Intellectual Property +185318,Intellectual Property,Intellectual Property +185317,Intellectual Property,Intellectual Property +131637,Intellectual Property,Intellectual Property +383082,Energy,Energy +381852,Energy,Energy +381851,Energy,Energy +150157,Mining,Mining +107943,Mining,Mining +107942,Mining,Mining +107937,Mining,Mining +107934,Mining,Mining +83035,Mining,Mining +81061,Mining,Mining +81057,Mining,Mining +76757,Mining,Mining +76756,Mining,Mining +168575,Mining,Mining +150169,Mining,Mining +150167,Mining,Mining +150166,Mining,Mining +150165,Mining,Mining +150163,Mining,Mining +150161,Mining,Mining +169285,Health,Health +481169,Taxation and Finance,Taxation and Finance +481168,Taxation and Finance,Taxation and Finance +437143,Taxation and Finance,Taxation and Finance +433074,Taxation and Finance,Taxation and Finance +432767,Taxation and Finance,Taxation and Finance +432253,Taxation and Finance,Taxation and Finance +431942,Taxation and Finance,Taxation and Finance +431941,Taxation and Finance,Taxation and Finance +431940,Taxation and Finance,Taxation and Finance +431939,Taxation and Finance,Taxation and Finance +431938,Taxation and Finance,Taxation and Finance +431937,Taxation and Finance,Taxation and Finance +431936,Taxation and Finance,Taxation and Finance +430146,Taxation and Finance,Taxation and Finance +430144,Taxation and Finance,Taxation and Finance +425569,Taxation and Finance,Taxation and Finance +425568,Taxation and Finance,Taxation and Finance +423283,Taxation and Finance,Taxation and Finance +423277,Taxation and Finance,Taxation and Finance +421133,Taxation and Finance,Taxation and Finance +421131,Taxation and Finance,Taxation and Finance +419405,Taxation and Finance,Taxation and Finance +419404,Taxation and Finance,Taxation and Finance +419402,Taxation and Finance,Taxation and Finance +419401,Taxation and Finance,Taxation and Finance +419319,Taxation and Finance,Taxation and Finance +419318,Taxation and Finance,Taxation and Finance +544827,Taxation and Finance,Taxation and Finance +544826,Taxation and Finance,Taxation and Finance +542938,Taxation and Finance,Taxation and Finance +542936,Taxation and Finance,Taxation and Finance +542932,Taxation and Finance,Taxation and Finance +542930,Taxation and Finance,Taxation and Finance +542928,Taxation and Finance,Taxation and Finance +538878,Taxation and Finance,Taxation and Finance +538876,Taxation and Finance,Taxation and Finance +533176,Taxation and Finance,Taxation and Finance +527435,Taxation and Finance,Taxation and Finance +527434,Taxation and Finance,Taxation and Finance +527432,Taxation and Finance,Taxation and Finance +527429,Taxation and Finance,Taxation and Finance +527428,Taxation and Finance,Taxation and Finance +527427,Taxation and Finance,Taxation and Finance +527426,Taxation and Finance,Taxation and Finance +523916,Taxation and Finance,Taxation and Finance +523914,Taxation and Finance,Taxation and Finance +523912,Taxation and Finance,Taxation and Finance +519262,Taxation and Finance,Taxation and Finance +494367,Taxation and Finance,Taxation and Finance +481171,Taxation and Finance,Taxation and Finance +154386,Health,Health +78194,Health,Health +324166,Health,Health +324155,Health,Health +415842,Constitutional Issues,Constitutional Issues +405163,Constitutional Issues,Constitutional Issues +342036,Constitutional Issues,Constitutional Issues +335986,Constitutional Issues,Constitutional Issues +330224,Constitutional Issues,Constitutional Issues +296736,Constitutional Issues,Constitutional Issues +273597,Constitutional Issues,Constitutional Issues +241187,Constitutional Issues,Constitutional Issues +237109,Constitutional Issues,Constitutional Issues +223929,Constitutional Issues,Constitutional Issues +515620,Employment and Training,Employment and Training +498761,Employment and Training,Employment and Training +376893,Employment and Training,Employment and Training +376890,Employment and Training,Employment and Training +376884,Employment and Training,Employment and Training +374564,Employment and Training,Employment and Training +438180,Employment and Training,Employment and Training +428474,Employment and Training,Employment and Training +519518,Employment and Training,Employment and Training +498758,Financial Institutions,Financial Institutions +498754,Financial Institutions,Financial Institutions +152319,Financial Institutions,Financial Institutions +152318,Financial Institutions,Financial Institutions +146136,Financial Institutions,Financial Institutions +146135,Financial Institutions,Financial Institutions +203114,Financial Institutions,Financial Institutions +203113,Financial Institutions,Financial Institutions +203111,Financial Institutions,Financial Institutions +200527,Financial Institutions,Financial Institutions +195244,Financial Institutions,Financial Institutions +189634,Financial Institutions,Financial Institutions +189630,Financial Institutions,Financial Institutions +175649,Financial Institutions,Financial Institutions +170998,Financial Institutions,Financial Institutions +170995,Financial Institutions,Financial Institutions +168960,Financial Institutions,Financial Institutions +168959,Financial Institutions,Financial Institutions +168958,Financial Institutions,Financial Institutions +168957,Financial Institutions,Financial Institutions +168954,Financial Institutions,Financial Institutions +168952,Financial Institutions,Financial Institutions +168949,Financial Institutions,Financial Institutions +162590,Financial Institutions,Financial Institutions +310929,Financial Institutions,Financial Institutions +304477,Financial Institutions,Financial Institutions +296743,Financial Institutions,Financial Institutions +296741,Financial Institutions,Financial Institutions +296739,Financial Institutions,Financial Institutions +296738,Financial Institutions,Financial Institutions +296736,Financial Institutions,Financial Institutions +280398,Financial Institutions,Financial Institutions +277559,Financial Institutions,Financial Institutions +277558,Financial Institutions,Financial Institutions +273640,Financial Institutions,Financial Institutions +273638,Financial Institutions,Financial Institutions +273632,Financial Institutions,Financial Institutions +273612,Financial Institutions,Financial Institutions +273597,Financial Institutions,Financial Institutions +273594,Financial Institutions,Financial Institutions +273592,Financial Institutions,Financial Institutions +273591,Financial Institutions,Financial Institutions +270090,Financial Institutions,Financial Institutions +270089,Financial Institutions,Financial Institutions +254498,Financial Institutions,Financial Institutions +254367,Financial Institutions,Financial Institutions +254366,Financial Institutions,Financial Institutions +246809,Financial Institutions,Financial Institutions +244931,Financial Institutions,Financial Institutions +241187,Financial Institutions,Financial Institutions +237109,Financial Institutions,Financial Institutions +237106,Financial Institutions,Financial Institutions +237104,Financial Institutions,Financial Institutions +232329,Financial Institutions,Financial Institutions +232069,Financial Institutions,Financial Institutions +230448,Financial Institutions,Financial Institutions +227225,Financial Institutions,Financial Institutions +227224,Financial Institutions,Financial Institutions +227222,Financial Institutions,Financial Institutions +223934,Financial Institutions,Financial Institutions +223933,Financial Institutions,Financial Institutions +223930,Financial Institutions,Financial Institutions +223929,Financial Institutions,Financial Institutions +223927,Financial Institutions,Financial Institutions +218267,Financial Institutions,Financial Institutions +212560,Financial Institutions,Financial Institutions +207635,Financial Institutions,Financial Institutions +207631,Financial Institutions,Financial Institutions +207627,Financial Institutions,Financial Institutions +203119,Financial Institutions,Financial Institutions +203118,Financial Institutions,Financial Institutions +203117,Financial Institutions,Financial Institutions +203116,Financial Institutions,Financial Institutions +203115,Financial Institutions,Financial Institutions +374600,Financial Institutions,Financial Institutions +374595,Financial Institutions,Financial Institutions +374564,Financial Institutions,Financial Institutions +372156,Financial Institutions,Financial Institutions +372151,Financial Institutions,Financial Institutions +372144,Financial Institutions,Financial Institutions +372140,Financial Institutions,Financial Institutions +372137,Financial Institutions,Financial Institutions +369169,Financial Institutions,Financial Institutions +369166,Financial Institutions,Financial Institutions +369161,Financial Institutions,Financial Institutions +366701,Financial Institutions,Financial Institutions +366698,Financial Institutions,Financial Institutions +366692,Financial Institutions,Financial Institutions +365235,Financial Institutions,Financial Institutions +365234,Financial Institutions,Financial Institutions +365232,Financial Institutions,Financial Institutions +362318,Financial Institutions,Financial Institutions +362317,Financial Institutions,Financial Institutions +362305,Financial Institutions,Financial Institutions +362304,Financial Institutions,Financial Institutions +362303,Financial Institutions,Financial Institutions +362302,Financial Institutions,Financial Institutions +361183,Financial Institutions,Financial Institutions +359878,Financial Institutions,Financial Institutions +359877,Financial Institutions,Financial Institutions +358150,Financial Institutions,Financial Institutions +353828,Financial Institutions,Financial Institutions +349306,Financial Institutions,Financial Institutions +349305,Financial Institutions,Financial Institutions +349304,Financial Institutions,Financial Institutions +349302,Financial Institutions,Financial Institutions +347424,Financial Institutions,Financial Institutions +343906,Financial Institutions,Financial Institutions +343905,Financial Institutions,Financial Institutions +343904,Financial Institutions,Financial Institutions +343902,Financial Institutions,Financial Institutions +342040,Financial Institutions,Financial Institutions +342036,Financial Institutions,Financial Institutions +342033,Financial Institutions,Financial Institutions +342030,Financial Institutions,Financial Institutions +342025,Financial Institutions,Financial Institutions +338429,Financial Institutions,Financial Institutions +335986,Financial Institutions,Financial Institutions +335983,Financial Institutions,Financial Institutions +335980,Financial Institutions,Financial Institutions +335979,Financial Institutions,Financial Institutions +335977,Financial Institutions,Financial Institutions +335976,Financial Institutions,Financial Institutions +331466,Financial Institutions,Financial Institutions +331465,Financial Institutions,Financial Institutions +330224,Financial Institutions,Financial Institutions +330223,Financial Institutions,Financial Institutions +325024,Financial Institutions,Financial Institutions +325023,Financial Institutions,Financial Institutions +325021,Financial Institutions,Financial Institutions +325020,Financial Institutions,Financial Institutions +325019,Financial Institutions,Financial Institutions +325017,Financial Institutions,Financial Institutions +325016,Financial Institutions,Financial Institutions +325012,Financial Institutions,Financial Institutions +325011,Financial Institutions,Financial Institutions +325010,Financial Institutions,Financial Institutions +322356,Financial Institutions,Financial Institutions +319189,Financial Institutions,Financial Institutions +319187,Financial Institutions,Financial Institutions +319182,Financial Institutions,Financial Institutions +316103,Financial Institutions,Financial Institutions +316102,Financial Institutions,Financial Institutions +316100,Financial Institutions,Financial Institutions +316099,Financial Institutions,Financial Institutions +316098,Financial Institutions,Financial Institutions +316097,Financial Institutions,Financial Institutions +316096,Financial Institutions,Financial Institutions +316095,Financial Institutions,Financial Institutions +316094,Financial Institutions,Financial Institutions +316093,Financial Institutions,Financial Institutions +316092,Financial Institutions,Financial Institutions +313143,Financial Institutions,Financial Institutions +313139,Financial Institutions,Financial Institutions +493173,Financial Institutions,Financial Institutions +490416,Financial Institutions,Financial Institutions +490413,Financial Institutions,Financial Institutions +487540,Financial Institutions,Financial Institutions +487532,Financial Institutions,Financial Institutions +482260,Financial Institutions,Financial Institutions +476962,Financial Institutions,Financial Institutions +473173,Financial Institutions,Financial Institutions +473170,Financial Institutions,Financial Institutions +473167,Financial Institutions,Financial Institutions +473164,Financial Institutions,Financial Institutions +470737,Financial Institutions,Financial Institutions +470732,Financial Institutions,Financial Institutions +468458,Financial Institutions,Financial Institutions +468250,Financial Institutions,Financial Institutions +468249,Financial Institutions,Financial Institutions +468247,Financial Institutions,Financial Institutions +468245,Financial Institutions,Financial Institutions +465003,Financial Institutions,Financial Institutions +464046,Financial Institutions,Financial Institutions +464045,Financial Institutions,Financial Institutions +464043,Financial Institutions,Financial Institutions +461689,Financial Institutions,Financial Institutions +460224,Financial Institutions,Financial Institutions +458548,Financial Institutions,Financial Institutions +458547,Financial Institutions,Financial Institutions +458546,Financial Institutions,Financial Institutions +458542,Financial Institutions,Financial Institutions +455483,Financial Institutions,Financial Institutions +455481,Financial Institutions,Financial Institutions +455474,Financial Institutions,Financial Institutions +455467,Financial Institutions,Financial Institutions +455463,Financial Institutions,Financial Institutions +452678,Financial Institutions,Financial Institutions +452677,Financial Institutions,Financial Institutions +450003,Financial Institutions,Financial Institutions +448096,Financial Institutions,Financial Institutions +445732,Financial Institutions,Financial Institutions +445729,Financial Institutions,Financial Institutions +442622,Financial Institutions,Financial Institutions +438740,Financial Institutions,Financial Institutions +435087,Financial Institutions,Financial Institutions +435086,Financial Institutions,Financial Institutions +435085,Financial Institutions,Financial Institutions +435084,Financial Institutions,Financial Institutions +432209,Financial Institutions,Financial Institutions +430505,Financial Institutions,Financial Institutions +430192,Financial Institutions,Financial Institutions +430038,Financial Institutions,Financial Institutions +428780,Financial Institutions,Financial Institutions +428779,Financial Institutions,Financial Institutions +428777,Financial Institutions,Financial Institutions +428495,Financial Institutions,Financial Institutions +428492,Financial Institutions,Financial Institutions +428491,Financial Institutions,Financial Institutions +428488,Financial Institutions,Financial Institutions +428484,Financial Institutions,Financial Institutions +428482,Financial Institutions,Financial Institutions +428479,Financial Institutions,Financial Institutions +428478,Financial Institutions,Financial Institutions +428474,Financial Institutions,Financial Institutions +428470,Financial Institutions,Financial Institutions +428396,Financial Institutions,Financial Institutions +428393,Financial Institutions,Financial Institutions +426481,Financial Institutions,Financial Institutions +426479,Financial Institutions,Financial Institutions +424042,Financial Institutions,Financial Institutions +424033,Financial Institutions,Financial Institutions +424031,Financial Institutions,Financial Institutions +423962,Financial Institutions,Financial Institutions +419913,Financial Institutions,Financial Institutions +415842,Financial Institutions,Financial Institutions +411735,Financial Institutions,Financial Institutions +411734,Financial Institutions,Financial Institutions +411732,Financial Institutions,Financial Institutions +411731,Financial Institutions,Financial Institutions +411730,Financial Institutions,Financial Institutions +411727,Financial Institutions,Financial Institutions +411719,Financial Institutions,Financial Institutions +409247,Financial Institutions,Financial Institutions +409244,Financial Institutions,Financial Institutions +409242,Financial Institutions,Financial Institutions +406721,Financial Institutions,Financial Institutions +405166,Financial Institutions,Financial Institutions +405163,Financial Institutions,Financial Institutions +403361,Financial Institutions,Financial Institutions +403360,Financial Institutions,Financial Institutions +403354,Financial Institutions,Financial Institutions +400295,Financial Institutions,Financial Institutions +400293,Financial Institutions,Financial Institutions +400290,Financial Institutions,Financial Institutions +400289,Financial Institutions,Financial Institutions +400288,Financial Institutions,Financial Institutions +400287,Financial Institutions,Financial Institutions +394587,Financial Institutions,Financial Institutions +391349,Financial Institutions,Financial Institutions +391348,Financial Institutions,Financial Institutions +391343,Financial Institutions,Financial Institutions +391338,Financial Institutions,Financial Institutions +387872,Financial Institutions,Financial Institutions +387868,Financial Institutions,Financial Institutions +387865,Financial Institutions,Financial Institutions +387864,Financial Institutions,Financial Institutions +385441,Financial Institutions,Financial Institutions +385439,Financial Institutions,Financial Institutions +385431,Financial Institutions,Financial Institutions +385427,Financial Institutions,Financial Institutions +385422,Financial Institutions,Financial Institutions +385415,Financial Institutions,Financial Institutions +385410,Financial Institutions,Financial Institutions +382227,Financial Institutions,Financial Institutions +382225,Financial Institutions,Financial Institutions +382224,Financial Institutions,Financial Institutions +382223,Financial Institutions,Financial Institutions +381332,Financial Institutions,Financial Institutions +381331,Financial Institutions,Financial Institutions +379425,Financial Institutions,Financial Institutions +379422,Financial Institutions,Financial Institutions +379421,Financial Institutions,Financial Institutions +379409,Financial Institutions,Financial Institutions +379404,Financial Institutions,Financial Institutions +379401,Financial Institutions,Financial Institutions +379400,Financial Institutions,Financial Institutions +379393,Financial Institutions,Financial Institutions +379388,Financial Institutions,Financial Institutions +379386,Financial Institutions,Financial Institutions +379368,Financial Institutions,Financial Institutions +376937,Financial Institutions,Financial Institutions +376936,Financial Institutions,Financial Institutions +376929,Financial Institutions,Financial Institutions +376922,Financial Institutions,Financial Institutions +376917,Financial Institutions,Financial Institutions +376900,Financial Institutions,Financial Institutions +376896,Financial Institutions,Financial Institutions +376893,Financial Institutions,Financial Institutions +376890,Financial Institutions,Financial Institutions +376884,Financial Institutions,Financial Institutions +544412,Financial Institutions,Financial Institutions +544408,Financial Institutions,Financial Institutions +544406,Financial Institutions,Financial Institutions +540445,Financial Institutions,Financial Institutions +538147,Financial Institutions,Financial Institutions +538136,Financial Institutions,Financial Institutions +535232,Financial Institutions,Financial Institutions +535230,Financial Institutions,Financial Institutions +528903,Financial Institutions,Financial Institutions +528900,Financial Institutions,Financial Institutions +528898,Financial Institutions,Financial Institutions +522654,Financial Institutions,Financial Institutions +522652,Financial Institutions,Financial Institutions +522651,Financial Institutions,Financial Institutions +519522,Financial Institutions,Financial Institutions +519520,Financial Institutions,Financial Institutions +517233,Financial Institutions,Financial Institutions +515626,Financial Institutions,Financial Institutions +515625,Financial Institutions,Financial Institutions +515623,Financial Institutions,Financial Institutions +515621,Financial Institutions,Financial Institutions +508684,Financial Institutions,Financial Institutions +381332,International Relations,International Relations +381331,International Relations,International Relations +349306,International Relations,International Relations +349305,International Relations,International Relations +349302,International Relations,International Relations +342030,International Relations,International Relations +331466,International Relations,International Relations +316098,International Relations,International Relations +316095,International Relations,International Relations +316093,International Relations,International Relations +254498,International Relations,International Relations +254367,International Relations,International Relations +473164,Small Business,Small Business +428470,Small Business,Small Business +335986,Small Business,Small Business +522651,Taxation and Finance,Taxation and Finance +517233,Taxation and Finance,Taxation and Finance +93804,Taxation and Finance,Taxation and Finance +88218,Taxation and Finance,Taxation and Finance +152317,Taxation and Finance,Taxation and Finance +132940,Taxation and Finance,Taxation and Finance +109782,Taxation and Finance,Taxation and Finance +400293,Taxation and Finance,Taxation and Finance +391349,Taxation and Finance,Taxation and Finance +382225,Taxation and Finance,Taxation and Finance +382223,Taxation and Finance,Taxation and Finance +379401,Taxation and Finance,Taxation and Finance +376937,Taxation and Finance,Taxation and Finance +376936,Taxation and Finance,Taxation and Finance +372144,Taxation and Finance,Taxation and Finance +372120,Taxation and Finance,Taxation and Finance +362317,Taxation and Finance,Taxation and Finance +362305,Taxation and Finance,Taxation and Finance +362304,Taxation and Finance,Taxation and Finance +362303,Taxation and Finance,Taxation and Finance +362302,Taxation and Finance,Taxation and Finance +273612,Taxation and Finance,Taxation and Finance +254498,Taxation and Finance,Taxation and Finance +207630,Taxation and Finance,Taxation and Finance +452677,Taxation and Finance,Taxation and Finance +428498,Taxation and Finance,Taxation and Finance +428474,Taxation and Finance,Taxation and Finance +428470,Taxation and Finance,Taxation and Finance +403363,Taxation and Finance,Taxation and Finance +544412,Taxation and Finance,Taxation and Finance +538139,Taxation and Finance,Taxation and Finance +538138,Taxation and Finance,Taxation and Finance +476073,Employment and Training,Employment and Training +476066,Employment and Training,Employment and Training +526109,Employment and Training,Employment and Training +482545,Employment and Training,Employment and Training +522019,Taxation and Finance,Taxation and Finance +522018,Taxation and Finance,Taxation and Finance +160750,Taxation and Finance,Taxation and Finance +203853,Taxation and Finance,Taxation and Finance +500209,Taxation and Finance,Taxation and Finance +490162,Taxation and Finance,Taxation and Finance +490155,Taxation and Finance,Taxation and Finance +483944,Taxation and Finance,Taxation and Finance +483929,Taxation and Finance,Taxation and Finance +453368,Taxation and Finance,Taxation and Finance +512911,Industry,Industry +507927,Industry,Industry +406328,Industry,Industry +505646,Industry,Industry +505644,Industry,Industry +505643,Industry,Industry +501339,Industry,Industry +500209,Industry,Industry +500206,Industry,Industry +500205,Industry,Industry +497024,Industry,Industry +490162,Industry,Industry +490161,Industry,Industry +490160,Industry,Industry +490158,Industry,Industry +490157,Industry,Industry +490156,Industry,Industry +490155,Industry,Industry +490154,Industry,Industry +490153,Industry,Industry +487673,Industry,Industry +487672,Industry,Industry +487671,Industry,Industry +487669,Industry,Industry +483949,Industry,Industry +483944,Industry,Industry +483929,Industry,Industry +483928,Industry,Industry +483927,Industry,Industry +483926,Industry,Industry +482922,Industry,Industry +482921,Industry,Industry +482920,Industry,Industry +481111,Industry,Industry +481110,Industry,Industry +481109,Industry,Industry +481108,Industry,Industry +480666,Industry,Industry +480665,Industry,Industry +480664,Industry,Industry +480663,Industry,Industry +480662,Industry,Industry +478589,Industry,Industry +478587,Industry,Industry +478586,Industry,Industry +468788,Industry,Industry +468787,Industry,Industry +463738,Industry,Industry +463505,Industry,Industry +459840,Industry,Industry +457887,Industry,Industry +154387,Health,Health +80624,Employment and Training,Employment and Training +80624,Health,Health +324167,Health,Health +435087,Constitutional Issues,Constitutional Issues +519513,Employment and Training,Employment and Training +505467,Financial Institutions,Financial Institutions +185981,International Relations,International Relations +254498,Small Business,Small Business +535124,Taxation and Finance,Taxation and Finance +77479,Health,Health +77512,Industry,Industry +77512,Intellectual Property,Intellectual Property +478422,Employment and Training,Employment and Training +453367,Taxation and Finance,Taxation and Finance +512912,Industry,Industry +203851,Financial Institutions,Financial Institutions +343197,Justice and Law Enforcement,Justice and Law Enforcement +482920,Intellectual Property,Intellectual Property +160750,International Relations,International Relations +101102,Health,Health +357446,Industry,Industry +135877,Taxation and Finance,Taxation and Finance +349129,Constitutional Issues,Constitutional Issues +396805,Consumer Issues,Consumer Issues +470771,Employment and Training,Employment and Training +484982,Financial Institutions,Financial Institutions +430784,Health,Health +392558,Industry,Industry +479872,Internal Trade,Internal Trade +477899,International Relations,International Relations +472305,Taxation and Finance,Taxation and Finance +521802,International Relations,International Relations +526332,Justice and Law Enforcement,Justice and Law Enforcement +223485,Government Procurement,Government Procurement +423766,Industry,Industry +441812,Intellectual Property,Intellectual Property +435650,International Trade,International Trade +391816,Taxation and Finance,Taxation and Finance +465069,Intellectual Property,Intellectual Property +442786,Environment,Environment +448621,Agriculture,Agriculture +448618,Environment,Environment +471610,Health,Health +484570,Industry,Industry +367504,Infrastructure,Infrastructure +375402,Internal Trade,Internal Trade +367545,Regional Development,Regional Development +375420,Small Business,Small Business +367555,Taxation and Finance,Taxation and Finance +169280,Health,Health +456641,Industry,Industry +453368,Industry,Industry +453367,Industry,Industry +453366,Industry,Industry +453365,Industry,Industry +444764,Industry,Industry +444763,Industry,Industry +435566,Industry,Industry +435564,Industry,Industry +435561,Industry,Industry +541025,Industry,Industry +541024,Industry,Industry +541023,Industry,Industry +534365,Industry,Industry +534363,Industry,Industry +534361,Industry,Industry +525230,Industry,Industry +525229,Industry,Industry +522021,Industry,Industry +522019,Industry,Industry +522018,Industry,Industry +522017,Industry,Industry +517832,Industry,Industry +517823,Industry,Industry +517811,Industry,Industry +512917,Industry,Industry +512916,Industry,Industry +512915,Industry,Industry +512913,Industry,Industry +468788,Intellectual Property,Intellectual Property +468787,Intellectual Property,Intellectual Property +214827,Intellectual Property,Intellectual Property +203851,Intellectual Property,Intellectual Property +160752,Intellectual Property,Intellectual Property +160751,Intellectual Property,Intellectual Property +160750,Intellectual Property,Intellectual Property +453368,Intellectual Property,Intellectual Property +453367,Intellectual Property,Intellectual Property +453366,Intellectual Property,Intellectual Property +432181,Intellectual Property,Intellectual Property +534365,Intellectual Property,Intellectual Property +534363,Intellectual Property,Intellectual Property +525230,Intellectual Property,Intellectual Property +525229,Intellectual Property,Intellectual Property +522021,Intellectual Property,Intellectual Property +522017,Intellectual Property,Intellectual Property +517832,Intellectual Property,Intellectual Property +517819,Intellectual Property,Intellectual Property +517816,Intellectual Property,Intellectual Property +512918,Intellectual Property,Intellectual Property +512917,Intellectual Property,Intellectual Property +512916,Intellectual Property,Intellectual Property +512915,Intellectual Property,Intellectual Property +512914,Intellectual Property,Intellectual Property +512913,Intellectual Property,Intellectual Property +512912,Intellectual Property,Intellectual Property +505644,Intellectual Property,Intellectual Property +505643,Intellectual Property,Intellectual Property +500206,Intellectual Property,Intellectual Property +500205,Intellectual Property,Intellectual Property +500204,Intellectual Property,Intellectual Property +500203,Intellectual Property,Intellectual Property +490161,Intellectual Property,Intellectual Property +490154,Intellectual Property,Intellectual Property +483949,Intellectual Property,Intellectual Property +483945,Intellectual Property,Intellectual Property +483944,Intellectual Property,Intellectual Property +483929,Intellectual Property,Intellectual Property +483928,Intellectual Property,Intellectual Property +482922,Intellectual Property,Intellectual Property +482921,Intellectual Property,Intellectual Property +457887,International Relations,International Relations +435566,International Relations,International Relations +203852,International Relations,International Relations +357440,Industry,Industry +135876,Taxation and Finance,Taxation and Finance +389957,Consumer Issues,Consumer Issues +386941,Consumer Issues,Consumer Issues +358427,Consumer Issues,Consumer Issues +349129,Consumer Issues,Consumer Issues +344379,Consumer Issues,Consumer Issues +342013,Consumer Issues,Consumer Issues +342008,Consumer Issues,Consumer Issues +470766,Employment and Training,Employment and Training +470763,Employment and Training,Employment and Training +472307,Employment and Training,Employment and Training +472305,Employment and Training,Employment and Training +472301,Employment and Training,Employment and Training +477899,Financial Institutions,Financial Institutions +475601,Financial Institutions,Financial Institutions +101267,Financial Institutions,Financial Institutions +101263,Financial Institutions,Financial Institutions +101244,Financial Institutions,Financial Institutions +88225,Financial Institutions,Financial Institutions +88223,Financial Institutions,Financial Institutions +88215,Financial Institutions,Financial Institutions +173570,Financial Institutions,Financial Institutions +173566,Financial Institutions,Financial Institutions +151938,Financial Institutions,Financial Institutions +151934,Financial Institutions,Financial Institutions +381599,Financial Institutions,Financial Institutions +376778,Financial Institutions,Financial Institutions +364606,Financial Institutions,Financial Institutions +363686,Financial Institutions,Financial Institutions +363684,Financial Institutions,Financial Institutions +349129,Financial Institutions,Financial Institutions +349127,Financial Institutions,Financial Institutions +347320,Financial Institutions,Financial Institutions +347314,Financial Institutions,Financial Institutions +344379,Financial Institutions,Financial Institutions +343926,Financial Institutions,Financial Institutions +342013,Financial Institutions,Financial Institutions +342008,Financial Institutions,Financial Institutions +330279,Financial Institutions,Financial Institutions +324982,Financial Institutions,Financial Institutions +322014,Financial Institutions,Financial Institutions +321987,Financial Institutions,Financial Institutions +319149,Financial Institutions,Financial Institutions +302550,Financial Institutions,Financial Institutions +286832,Financial Institutions,Financial Institutions +286829,Financial Institutions,Financial Institutions +286813,Financial Institutions,Financial Institutions +273372,Financial Institutions,Financial Institutions +273371,Financial Institutions,Financial Institutions +273370,Financial Institutions,Financial Institutions +267751,Financial Institutions,Financial Institutions +267690,Financial Institutions,Financial Institutions +250320,Financial Institutions,Financial Institutions +245551,Financial Institutions,Financial Institutions +245104,Financial Institutions,Financial Institutions +223636,Financial Institutions,Financial Institutions +217730,Financial Institutions,Financial Institutions +215427,Financial Institutions,Financial Institutions +207576,Financial Institutions,Financial Institutions +202369,Financial Institutions,Financial Institutions +199458,Financial Institutions,Financial Institutions +199457,Financial Institutions,Financial Institutions +190584,Financial Institutions,Financial Institutions +173574,Financial Institutions,Financial Institutions +470771,Financial Institutions,Financial Institutions +470766,Financial Institutions,Financial Institutions +470763,Financial Institutions,Financial Institutions +456294,Financial Institutions,Financial Institutions +455704,Financial Institutions,Financial Institutions +452278,Financial Institutions,Financial Institutions +452275,Financial Institutions,Financial Institutions +443343,Financial Institutions,Financial Institutions +438070,Financial Institutions,Financial Institutions +438054,Financial Institutions,Financial Institutions +435666,Financial Institutions,Financial Institutions +432519,Financial Institutions,Financial Institutions +432512,Financial Institutions,Financial Institutions +407582,Financial Institutions,Financial Institutions +402034,Financial Institutions,Financial Institutions +399732,Financial Institutions,Financial Institutions +399731,Financial Institutions,Financial Institutions +399730,Financial Institutions,Financial Institutions +398936,Financial Institutions,Financial Institutions +389954,Financial Institutions,Financial Institutions +389949,Financial Institutions,Financial Institutions +386941,Financial Institutions,Financial Institutions +539791,Financial Institutions,Financial Institutions +535460,Financial Institutions,Financial Institutions +517952,Financial Institutions,Financial Institutions +512955,Financial Institutions,Financial Institutions +491218,Financial Institutions,Financial Institutions +535467,Health,Health +535452,Health,Health +425125,Health,Health +399732,Health,Health +396805,Health,Health +389957,Health,Health +493568,Health,Health +491213,Health,Health +461709,Health,Health +455704,Health,Health +452301,Health,Health +452278,Health,Health +381602,Industry,Industry +376894,Industry,Industry +475601,Industry,Industry +396818,Internal Trade,Internal Trade +472301,Taxation and Finance,Taxation and Finance +432632,Taxation and Finance,Taxation and Finance +398936,Taxation and Finance,Taxation and Finance +396809,Taxation and Finance,Taxation and Finance +376894,Taxation and Finance,Taxation and Finance +376778,Taxation and Finance,Taxation and Finance +347320,Taxation and Finance,Taxation and Finance +343926,Taxation and Finance,Taxation and Finance +342013,Taxation and Finance,Taxation and Finance +528147,Taxation and Finance,Taxation and Finance +517952,Taxation and Finance,Taxation and Finance +505066,Taxation and Finance,Taxation and Finance +472307,Taxation and Finance,Taxation and Finance +521801,International Relations,International Relations +517011,International Relations,International Relations +373013,International Relations,International Relations +373012,International Relations,International Relations +373011,International Relations,International Relations +424488,International Relations,International Relations +424487,International Relations,International Relations +424486,International Relations,International Relations +424485,International Relations,International Relations +400184,International Relations,International Relations +400183,International Relations,International Relations +463406,International Relations,International Relations +463403,International Relations,International Relations +537762,International Relations,International Relations +537757,International Relations,International Relations +534998,International Relations,International Relations +531287,International Relations,International Relations +528345,International Relations,International Relations +528343,International Relations,International Relations +528342,International Relations,International Relations +528341,International Relations,International Relations +526339,International Relations,International Relations +526336,International Relations,International Relations +526328,Justice and Law Enforcement,Justice and Law Enforcement +517011,Justice and Law Enforcement,Justice and Law Enforcement +400182,Justice and Law Enforcement,Justice and Law Enforcement +400179,Justice and Law Enforcement,Justice and Law Enforcement +400168,Justice and Law Enforcement,Justice and Law Enforcement +373012,Justice and Law Enforcement,Justice and Law Enforcement +373011,Justice and Law Enforcement,Justice and Law Enforcement +540139,Justice and Law Enforcement,Justice and Law Enforcement +534448,Justice and Law Enforcement,Justice and Law Enforcement +534447,Justice and Law Enforcement,Justice and Law Enforcement +534445,Justice and Law Enforcement,Justice and Law Enforcement +534443,Justice and Law Enforcement,Justice and Law Enforcement +531289,Justice and Law Enforcement,Justice and Law Enforcement +528340,Justice and Law Enforcement,Justice and Law Enforcement +527061,Justice and Law Enforcement,Justice and Law Enforcement +526372,Justice and Law Enforcement,Justice and Law Enforcement +526369,Justice and Law Enforcement,Justice and Law Enforcement +526367,Justice and Law Enforcement,Justice and Law Enforcement +534684,Government Procurement,Government Procurement +422624,Industry,Industry +529128,Industry,Industry +273636,Industry,Industry +347307,Industry,Industry +467778,Industry,Industry +459596,Industry,Industry +459594,Industry,Industry +458585,Industry,Industry +447846,Industry,Industry +445556,Industry,Industry +432418,Industry,Industry +432416,Industry,Industry +432414,Industry,Industry +441807,Intellectual Property,Intellectual Property +200370,Intellectual Property,Intellectual Property +241168,Intellectual Property,Intellectual Property +241160,Intellectual Property,Intellectual Property +229270,Intellectual Property,Intellectual Property +223479,Intellectual Property,Intellectual Property +211803,Intellectual Property,Intellectual Property +211802,Intellectual Property,Intellectual Property +211800,Intellectual Property,Intellectual Property +211798,Intellectual Property,Intellectual Property +211797,Intellectual Property,Intellectual Property +207598,Intellectual Property,Intellectual Property +207597,Intellectual Property,Intellectual Property +202582,Intellectual Property,Intellectual Property +202581,Intellectual Property,Intellectual Property +202579,Intellectual Property,Intellectual Property +202578,Intellectual Property,Intellectual Property +202576,Intellectual Property,Intellectual Property +200373,Intellectual Property,Intellectual Property +392395,Intellectual Property,Intellectual Property +493609,Taxation and Finance,Taxation and Finance +484864,Taxation and Finance,Taxation and Finance +380721,Taxation and Finance,Taxation and Finance +458586,Taxation and Finance,Taxation and Finance +454931,Taxation and Finance,Taxation and Finance +443830,Taxation and Finance,Taxation and Finance +398416,Taxation and Finance,Taxation and Finance +459085,Intellectual Property,Intellectual Property +459084,Intellectual Property,Intellectual Property +97795,Intellectual Property,Intellectual Property +197031,Intellectual Property,Intellectual Property +194657,Intellectual Property,Intellectual Property +194656,Intellectual Property,Intellectual Property +181205,Intellectual Property,Intellectual Property +181204,Intellectual Property,Intellectual Property +169846,Intellectual Property,Intellectual Property +158915,Intellectual Property,Intellectual Property +158913,Intellectual Property,Intellectual Property +158911,Intellectual Property,Intellectual Property +158908,Intellectual Property,Intellectual Property +145416,Intellectual Property,Intellectual Property +132321,Intellectual Property,Intellectual Property +126535,Intellectual Property,Intellectual Property +393645,Intellectual Property,Intellectual Property +393644,Intellectual Property,Intellectual Property +384840,Intellectual Property,Intellectual Property +384839,Intellectual Property,Intellectual Property +384838,Intellectual Property,Intellectual Property +384836,Intellectual Property,Intellectual Property +371089,Intellectual Property,Intellectual Property +371088,Intellectual Property,Intellectual Property +348779,Intellectual Property,Intellectual Property +348777,Intellectual Property,Intellectual Property +299809,Intellectual Property,Intellectual Property +299790,Intellectual Property,Intellectual Property +299789,Intellectual Property,Intellectual Property +244998,Intellectual Property,Intellectual Property +244997,Intellectual Property,Intellectual Property +239049,Intellectual Property,Intellectual Property +227552,Intellectual Property,Intellectual Property +223533,Intellectual Property,Intellectual Property +455348,Intellectual Property,Intellectual Property +455347,Intellectual Property,Intellectual Property +455346,Intellectual Property,Intellectual Property +455344,Intellectual Property,Intellectual Property +455341,Intellectual Property,Intellectual Property +455339,Intellectual Property,Intellectual Property +455338,Intellectual Property,Intellectual Property +455337,Intellectual Property,Intellectual Property +449359,Intellectual Property,Intellectual Property +449357,Intellectual Property,Intellectual Property +449356,Intellectual Property,Intellectual Property +445727,Intellectual Property,Intellectual Property +445725,Intellectual Property,Intellectual Property +443174,Intellectual Property,Intellectual Property +443173,Intellectual Property,Intellectual Property +443172,Intellectual Property,Intellectual Property +443170,Intellectual Property,Intellectual Property +443169,Intellectual Property,Intellectual Property +438809,Intellectual Property,Intellectual Property +438808,Intellectual Property,Intellectual Property +438807,Intellectual Property,Intellectual Property +438804,Intellectual Property,Intellectual Property +438803,Intellectual Property,Intellectual Property +438730,Intellectual Property,Intellectual Property +438551,Intellectual Property,Intellectual Property +434653,Intellectual Property,Intellectual Property +429806,Intellectual Property,Intellectual Property +427805,Intellectual Property,Intellectual Property +427804,Intellectual Property,Intellectual Property +427803,Intellectual Property,Intellectual Property +427801,Intellectual Property,Intellectual Property +419001,Intellectual Property,Intellectual Property +419000,Intellectual Property,Intellectual Property +418999,Intellectual Property,Intellectual Property +415990,Intellectual Property,Intellectual Property +415979,Intellectual Property,Intellectual Property +415977,Intellectual Property,Intellectual Property +415972,Intellectual Property,Intellectual Property +415967,Intellectual Property,Intellectual Property +415966,Intellectual Property,Intellectual Property +415964,Intellectual Property,Intellectual Property +415885,Intellectual Property,Intellectual Property +415878,Intellectual Property,Intellectual Property +408818,Intellectual Property,Intellectual Property +408816,Intellectual Property,Intellectual Property +408814,Intellectual Property,Intellectual Property +407447,Intellectual Property,Intellectual Property +401758,Intellectual Property,Intellectual Property +401757,Intellectual Property,Intellectual Property +401756,Intellectual Property,Intellectual Property +401755,Intellectual Property,Intellectual Property +401752,Intellectual Property,Intellectual Property +401751,Intellectual Property,Intellectual Property +401749,Intellectual Property,Intellectual Property +400991,Intellectual Property,Intellectual Property +397577,Intellectual Property,Intellectual Property +536330,Intellectual Property,Intellectual Property +533283,Intellectual Property,Intellectual Property +533282,Intellectual Property,Intellectual Property +533281,Intellectual Property,Intellectual Property +525895,Intellectual Property,Intellectual Property +525894,Intellectual Property,Intellectual Property +525893,Intellectual Property,Intellectual Property +525890,Intellectual Property,Intellectual Property +523369,Intellectual Property,Intellectual Property +522906,Intellectual Property,Intellectual Property +522904,Intellectual Property,Intellectual Property +522902,Intellectual Property,Intellectual Property +522899,Intellectual Property,Intellectual Property +520018,Intellectual Property,Intellectual Property +513648,Intellectual Property,Intellectual Property +511097,Intellectual Property,Intellectual Property +511092,Intellectual Property,Intellectual Property +509092,Intellectual Property,Intellectual Property +509091,Intellectual Property,Intellectual Property +497528,Intellectual Property,Intellectual Property +494319,Intellectual Property,Intellectual Property +492132,Intellectual Property,Intellectual Property +490628,Intellectual Property,Intellectual Property +490620,Intellectual Property,Intellectual Property +485920,Intellectual Property,Intellectual Property +481028,Intellectual Property,Intellectual Property +472040,Intellectual Property,Intellectual Property +472039,Intellectual Property,Intellectual Property +472038,Intellectual Property,Intellectual Property +472033,Intellectual Property,Intellectual Property +469590,Intellectual Property,Intellectual Property +467037,Intellectual Property,Intellectual Property +465075,Intellectual Property,Intellectual Property +465074,Intellectual Property,Intellectual Property +465073,Intellectual Property,Intellectual Property +465072,Intellectual Property,Intellectual Property +465071,Intellectual Property,Intellectual Property +465070,Intellectual Property,Intellectual Property +442785,Environment,Environment +438370,Environment,Environment +97446,Environment,Environment +97435,Environment,Environment +97431,Environment,Environment +92495,Environment,Environment +92494,Environment,Environment +81059,Environment,Environment +156576,Environment,Environment +153163,Environment,Environment +138294,Environment,Environment +121554,Environment,Environment +116955,Environment,Environment +114033,Environment,Environment +101265,Environment,Environment +320169,Environment,Environment +310038,Environment,Environment +310035,Environment,Environment +310033,Environment,Environment +304358,Environment,Environment +296829,Environment,Environment +296816,Environment,Environment +280451,Environment,Environment +264137,Environment,Environment +217631,Environment,Environment +210551,Environment,Environment +202828,Environment,Environment +197456,Environment,Environment +192894,Environment,Environment +177345,Environment,Environment +175397,Environment,Environment +171806,Environment,Environment +165922,Environment,Environment +430838,Environment,Environment +430800,Environment,Environment +426089,Environment,Environment +413913,Environment,Environment +409606,Environment,Environment +409593,Environment,Environment +404655,Environment,Environment +398594,Environment,Environment +395460,Environment,Environment +384713,Environment,Environment +384711,Environment,Environment +382146,Environment,Environment +378990,Environment,Environment +369052,Environment,Environment +366675,Environment,Environment +359556,Environment,Environment +359552,Environment,Environment +359550,Environment,Environment +357617,Environment,Environment +353463,Environment,Environment +350982,Environment,Environment +335531,Environment,Environment +329879,Environment,Environment +329864,Environment,Environment +323954,Environment,Environment +542837,Environment,Environment +542836,Environment,Environment +542835,Environment,Environment +542834,Environment,Environment +542832,Environment,Environment +539019,Environment,Environment +533361,Environment,Environment +531516,Environment,Environment +531513,Environment,Environment +531099,Environment,Environment +527759,Environment,Environment +527756,Environment,Environment +527754,Environment,Environment +527753,Environment,Environment +527752,Environment,Environment +527751,Environment,Environment +527750,Environment,Environment +527748,Environment,Environment +527746,Environment,Environment +524012,Environment,Environment +523975,Environment,Environment +520898,Environment,Environment +520897,Environment,Environment +520895,Environment,Environment +519444,Environment,Environment +516673,Environment,Environment +516670,Environment,Environment +516669,Environment,Environment +515381,Environment,Environment +514414,Environment,Environment +513974,Environment,Environment +512343,Environment,Environment +512327,Environment,Environment +512326,Environment,Environment +509770,Environment,Environment +509768,Environment,Environment +507058,Environment,Environment +507055,Environment,Environment +507051,Environment,Environment +507050,Environment,Environment +507045,Environment,Environment +507039,Environment,Environment +504544,Environment,Environment +503639,Environment,Environment +500675,Environment,Environment +500671,Environment,Environment +498063,Environment,Environment +498051,Environment,Environment +498047,Environment,Environment +498044,Environment,Environment +498042,Environment,Environment +498041,Environment,Environment +498040,Environment,Environment +498039,Environment,Environment +498024,Environment,Environment +498005,Environment,Environment +498000,Environment,Environment +495855,Environment,Environment +494548,Environment,Environment +494536,Environment,Environment +491778,Environment,Environment +489121,Environment,Environment +489120,Environment,Environment +489118,Environment,Environment +489111,Environment,Environment +489106,Environment,Environment +489041,Environment,Environment +486884,Environment,Environment +486859,Environment,Environment +485946,Environment,Environment +485945,Environment,Environment +484031,Environment,Environment +478909,Environment,Environment +476619,Environment,Environment +476608,Environment,Environment +470607,Environment,Environment +465958,Environment,Environment +464259,Environment,Environment +464258,Environment,Environment +464253,Environment,Environment +464252,Environment,Environment +464251,Environment,Environment +462262,Environment,Environment +462261,Environment,Environment +462259,Environment,Environment +462258,Environment,Environment +462257,Environment,Environment +461697,Environment,Environment +457191,Environment,Environment +457190,Environment,Environment +457188,Environment,Environment +457185,Environment,Environment +457184,Environment,Environment +455276,Environment,Environment +451444,Environment,Environment +446608,Environment,Environment +446607,Environment,Environment +446606,Environment,Environment +442792,Environment,Environment +442788,Environment,Environment +442787,Environment,Environment +448619,Agriculture,Agriculture +448618,Agriculture,Agriculture +375420,Agriculture,Agriculture +375402,Agriculture,Agriculture +375401,Agriculture,Agriculture +375394,Agriculture,Agriculture +367646,Agriculture,Agriculture +367563,Agriculture,Agriculture +367562,Agriculture,Agriculture +367561,Agriculture,Agriculture +367560,Agriculture,Agriculture +367555,Agriculture,Agriculture +367545,Agriculture,Agriculture +367504,Agriculture,Agriculture +448625,Agriculture,Agriculture +448624,Agriculture,Agriculture +448622,Agriculture,Agriculture +448617,Environment,Environment +448616,Environment,Environment +375420,Environment,Environment +375402,Environment,Environment +375401,Environment,Environment +375394,Environment,Environment +367646,Environment,Environment +367563,Environment,Environment +367562,Environment,Environment +367561,Environment,Environment +367560,Environment,Environment +367555,Environment,Environment +367545,Environment,Environment +367504,Environment,Environment +448625,Environment,Environment +448624,Environment,Environment +448622,Environment,Environment +448621,Environment,Environment +471470,Health,Health +471469,Health,Health +216308,Health,Health +216307,Health,Health +216216,Health,Health +210709,Health,Health +233056,Health,Health +230370,Health,Health +469076,Health,Health +469075,Health,Health +469074,Health,Health +459170,Health,Health +459004,Health,Health +455000,Health,Health +448625,Health,Health +448624,Health,Health +448622,Health,Health +448621,Health,Health +448619,Health,Health +448618,Health,Health +448617,Health,Health +448616,Health,Health +433654,Health,Health +408674,Health,Health +394770,Health,Health +375420,Health,Health +375402,Health,Health +375401,Health,Health +375394,Health,Health +367646,Health,Health +367563,Health,Health +367562,Health,Health +367561,Health,Health +367560,Health,Health +367555,Health,Health +367545,Health,Health +367504,Health,Health +513656,Health,Health +512066,Health,Health +506775,Health,Health +504069,Health,Health +504056,Health,Health +504054,Health,Health +504052,Health,Health +504049,Health,Health +504033,Health,Health +504020,Health,Health +504019,Health,Health +504018,Health,Health +504017,Health,Health +504013,Health,Health +504010,Health,Health +504008,Health,Health +504006,Health,Health +504003,Health,Health +503928,Health,Health +503927,Health,Health +503926,Health,Health +503902,Health,Health +503901,Health,Health +503878,Health,Health +500665,Health,Health +500664,Health,Health +500663,Health,Health +500662,Health,Health +500661,Health,Health +500660,Health,Health +500658,Health,Health +500657,Health,Health +500656,Health,Health +500654,Health,Health +500652,Health,Health +500610,Health,Health +500599,Health,Health +500596,Health,Health +500595,Health,Health +500594,Health,Health +500593,Health,Health +497222,Health,Health +497221,Health,Health +497167,Health,Health +497166,Health,Health +497165,Health,Health +497162,Health,Health +497156,Health,Health +497145,Health,Health +497141,Health,Health +497140,Health,Health +497099,Health,Health +497094,Health,Health +496749,Health,Health +496740,Health,Health +494569,Health,Health +494568,Health,Health +494567,Health,Health +494566,Health,Health +494565,Health,Health +494553,Health,Health +492919,Health,Health +492444,Health,Health +492443,Health,Health +492442,Health,Health +492441,Health,Health +492440,Health,Health +492438,Health,Health +492436,Health,Health +492399,Health,Health +492397,Health,Health +492395,Health,Health +492387,Health,Health +492386,Health,Health +492384,Health,Health +492382,Health,Health +492381,Health,Health +492380,Health,Health +492378,Health,Health +492376,Health,Health +492375,Health,Health +492371,Health,Health +492357,Health,Health +489276,Health,Health +489275,Health,Health +489274,Health,Health +489272,Health,Health +489251,Health,Health +486217,Health,Health +486216,Health,Health +486215,Health,Health +486214,Health,Health +486213,Health,Health +486212,Health,Health +486166,Health,Health +484582,Health,Health +484578,Health,Health +484570,Health,Health +471612,Health,Health +483063,Industry,Industry +211307,Industry,Industry +375420,Industry,Industry +375402,Industry,Industry +375401,Industry,Industry +375394,Industry,Industry +367646,Industry,Industry +367563,Industry,Industry +367562,Industry,Industry +367561,Industry,Industry +367560,Industry,Industry +367555,Industry,Industry +367545,Industry,Industry +367504,Industry,Industry +469076,Industry,Industry +469075,Industry,Industry +469074,Industry,Industry +448617,Industry,Industry +512066,Industry,Industry +506775,Industry,Industry +496740,Industry,Industry +492919,Industry,Industry +492357,Industry,Industry +489276,Industry,Industry +489275,Industry,Industry +489274,Industry,Industry +489272,Industry,Industry +489251,Industry,Industry +486217,Industry,Industry +486216,Industry,Industry +486215,Industry,Industry +486214,Industry,Industry +486213,Industry,Industry +486212,Industry,Industry +486166,Industry,Industry +484582,Industry,Industry +484578,Industry,Industry +433654,Infrastructure,Infrastructure +432985,Infrastructure,Infrastructure +375420,Infrastructure,Infrastructure +375402,Infrastructure,Infrastructure +375401,Infrastructure,Infrastructure +375394,Infrastructure,Infrastructure +367646,Infrastructure,Infrastructure +367563,Infrastructure,Infrastructure +367562,Infrastructure,Infrastructure +367561,Infrastructure,Infrastructure +367560,Infrastructure,Infrastructure +367555,Infrastructure,Infrastructure +367545,Infrastructure,Infrastructure +375401,Internal Trade,Internal Trade +375394,Internal Trade,Internal Trade +375420,Internal Trade,Internal Trade +367504,Regional Development,Regional Development +483063,Regional Development,Regional Development +433654,Regional Development,Regional Development +375420,Regional Development,Regional Development +375402,Regional Development,Regional Development +375401,Regional Development,Regional Development +375394,Regional Development,Regional Development +367646,Regional Development,Regional Development +367563,Regional Development,Regional Development +367562,Regional Development,Regional Development +367561,Regional Development,Regional Development +367560,Regional Development,Regional Development +367555,Regional Development,Regional Development +375402,Small Business,Small Business +375401,Small Business,Small Business +375394,Small Business,Small Business +367545,Taxation and Finance,Taxation and Finance +367504,Taxation and Finance,Taxation and Finance +408674,Taxation and Finance,Taxation and Finance +375420,Taxation and Finance,Taxation and Finance +375402,Taxation and Finance,Taxation and Finance +375401,Taxation and Finance,Taxation and Finance +375394,Taxation and Finance,Taxation and Finance +367646,Taxation and Finance,Taxation and Finance +367563,Taxation and Finance,Taxation and Finance +367562,Taxation and Finance,Taxation and Finance +367561,Taxation and Finance,Taxation and Finance +367560,Taxation and Finance,Taxation and Finance +169279,Health,Health +169278,Health,Health +276681,Health,Health +276680,Health,Health +361422,Health,Health +340518,Health,Health +142075,Health,Health +508675,Agriculture,Agriculture +508665,Agriculture,Agriculture +150047,Agriculture,Agriculture +150046,Agriculture,Agriculture +200432,Agriculture,Agriculture +175640,Agriculture,Agriculture +167994,Agriculture,Agriculture +165847,Agriculture,Agriculture +163951,Agriculture,Agriculture +159804,Agriculture,Agriculture +310467,Agriculture,Agriculture +304449,Agriculture,Agriculture +304439,Agriculture,Agriculture +304438,Agriculture,Agriculture +304437,Agriculture,Agriculture +282529,Agriculture,Agriculture +282515,Agriculture,Agriculture +282514,Agriculture,Agriculture +278149,Agriculture,Agriculture +269598,Agriculture,Agriculture +269596,Agriculture,Agriculture +237035,Agriculture,Agriculture +223602,Agriculture,Agriculture +223599,Agriculture,Agriculture +223596,Agriculture,Agriculture +217629,Agriculture,Agriculture +381550,Agriculture,Agriculture +374796,Agriculture,Agriculture +374794,Agriculture,Agriculture +374788,Agriculture,Agriculture +374771,Agriculture,Agriculture +374768,Agriculture,Agriculture +358058,Agriculture,Agriculture +358054,Agriculture,Agriculture +335996,Agriculture,Agriculture +335995,Agriculture,Agriculture +335994,Agriculture,Agriculture +335992,Agriculture,Agriculture +330218,Agriculture,Agriculture +330217,Agriculture,Agriculture +330216,Agriculture,Agriculture +330215,Agriculture,Agriculture +330195,Agriculture,Agriculture +313191,Agriculture,Agriculture +508649,Agriculture,Agriculture +505866,Agriculture,Agriculture +495279,Agriculture,Agriculture +424348,Agriculture,Agriculture +528416,Agriculture,Agriculture +520054,Agriculture,Agriculture +520050,Agriculture,Agriculture +512936,Agriculture,Agriculture +518122,Consumer Issues,Consumer Issues +516775,Consumer Issues,Consumer Issues +394327,Consumer Issues,Consumer Issues +391176,Consumer Issues,Consumer Issues +385355,Consumer Issues,Consumer Issues +383637,Consumer Issues,Consumer Issues +379691,Consumer Issues,Consumer Issues +374848,Consumer Issues,Consumer Issues +365005,Consumer Issues,Consumer Issues +338381,Consumer Issues,Consumer Issues +325105,Consumer Issues,Consumer Issues +443301,Consumer Issues,Consumer Issues +433627,Consumer Issues,Consumer Issues +432444,Consumer Issues,Consumer Issues +419866,Consumer Issues,Consumer Issues +538726,Consumer Issues,Consumer Issues +538725,Consumer Issues,Consumer Issues +538724,Consumer Issues,Consumer Issues +535905,Consumer Issues,Consumer Issues +532074,Consumer Issues,Consumer Issues +528398,Consumer Issues,Consumer Issues +528396,Consumer Issues,Consumer Issues +528030,Consumer Issues,Consumer Issues +526337,Consumer Issues,Consumer Issues +526331,Consumer Issues,Consumer Issues +276684,Health,Health +370327,Health,Health +106734,Infrastructure,Infrastructure +511147,Agriculture,Agriculture +518124,Consumer Issues,Consumer Issues +435528,Education,Education +462470,Employment and Training,Employment and Training +526160,Energy,Energy +127574,Energy,Energy +127574,Environment,Environment +159924,Employment and Training,Employment and Training +159924,Environment,Environment +159924,Fisheries,Fisheries +159924,Industry,Industry +159924,Infrastructure,Infrastructure +159924,International Trade,International Trade +250297,Mining,Mining +209631,Health,Health +209631,Small Business,Small Business +148194,Regional Development,Regional Development +159924,Small Business,Small Business +250297,Taxation and Finance,Taxation and Finance +169863,Agriculture,Agriculture +152837,International Trade,International Trade +84894,Agriculture,Agriculture +252316,Consumer Issues,Consumer Issues +174769,Health,Health +277218,International Trade,International Trade +90593,Other,INFORMATION TECHNOLOGY +379507,Consumer Issues,Consumer Issues +311060,Energy,Energy +311060,Industry,Industry +210027,Transportation,Transportation +100511,Energy,Energy +97673,Environment,Environment +97673,Industry,Industry +93284,Energy,Energy +93284,Environment,Environment +93284,Industry,Industry +157013,Energy,Energy +192046,Industry,Industry +84897,Agriculture,Agriculture +76395,Government Procurement,Government Procurement +137136,Industry,Industry +88222,Industry,Industry +526326,Consumer Issues,Consumer Issues +526324,Consumer Issues,Consumer Issues +526320,Consumer Issues,Consumer Issues +526163,Consumer Issues,Consumer Issues +526160,Consumer Issues,Consumer Issues +526157,Consumer Issues,Consumer Issues +526145,Consumer Issues,Consumer Issues +520054,Consumer Issues,Consumer Issues +520052,Consumer Issues,Consumer Issues +520051,Consumer Issues,Consumer Issues +520050,Consumer Issues,Consumer Issues +520044,Consumer Issues,Consumer Issues +520042,Consumer Issues,Consumer Issues +520036,Consumer Issues,Consumer Issues +520028,Consumer Issues,Consumer Issues +520019,Consumer Issues,Consumer Issues +518197,Consumer Issues,Consumer Issues +518195,Consumer Issues,Consumer Issues +518182,Consumer Issues,Consumer Issues +518170,Consumer Issues,Consumer Issues +518168,Consumer Issues,Consumer Issues +518159,Consumer Issues,Consumer Issues +518154,Consumer Issues,Consumer Issues +518146,Consumer Issues,Consumer Issues +518138,Consumer Issues,Consumer Issues +518130,Consumer Issues,Consumer Issues +518128,Consumer Issues,Consumer Issues +518127,Consumer Issues,Consumer Issues +518126,Consumer Issues,Consumer Issues +518125,Consumer Issues,Consumer Issues +391128,Education,Education +455503,Employment and Training,Employment and Training +452020,Employment and Training,Employment and Training +141481,Employment and Training,Employment and Training +137535,Employment and Training,Employment and Training +76901,Employment and Training,Employment and Training +180414,Employment and Training,Employment and Training +180413,Employment and Training,Employment and Training +180412,Employment and Training,Employment and Training +167990,Employment and Training,Employment and Training +165843,Employment and Training,Employment and Training +159801,Employment and Training,Employment and Training +156899,Employment and Training,Employment and Training +156693,Employment and Training,Employment and Training +156691,Employment and Training,Employment and Training +156690,Employment and Training,Employment and Training +156689,Employment and Training,Employment and Training +156681,Employment and Training,Employment and Training +156680,Employment and Training,Employment and Training +156678,Employment and Training,Employment and Training +156675,Employment and Training,Employment and Training +154645,Employment and Training,Employment and Training +152060,Employment and Training,Employment and Training +152056,Employment and Training,Employment and Training +333658,Employment and Training,Employment and Training +331588,Employment and Training,Employment and Training +331587,Employment and Training,Employment and Training +331586,Employment and Training,Employment and Training +331573,Employment and Training,Employment and Training +325096,Employment and Training,Employment and Training +325090,Employment and Training,Employment and Training +322306,Employment and Training,Employment and Training +322288,Employment and Training,Employment and Training +322258,Employment and Training,Employment and Training +322256,Employment and Training,Employment and Training +322255,Employment and Training,Employment and Training +322241,Employment and Training,Employment and Training +316022,Employment and Training,Employment and Training +316021,Employment and Training,Employment and Training +310488,Employment and Training,Employment and Training +304481,Employment and Training,Employment and Training +291190,Employment and Training,Employment and Training +291148,Employment and Training,Employment and Training +291138,Employment and Training,Employment and Training +286969,Employment and Training,Employment and Training +286950,Employment and Training,Employment and Training +282530,Employment and Training,Employment and Training +282513,Employment and Training,Employment and Training +277169,Employment and Training,Employment and Training +277162,Employment and Training,Employment and Training +273190,Employment and Training,Employment and Training +269593,Employment and Training,Employment and Training +245491,Employment and Training,Employment and Training +240819,Employment and Training,Employment and Training +234090,Employment and Training,Employment and Training +230154,Employment and Training,Employment and Training +230149,Employment and Training,Employment and Training +226896,Employment and Training,Employment and Training +217600,Employment and Training,Employment and Training +200476,Employment and Training,Employment and Training +200458,Employment and Training,Employment and Training +200457,Employment and Training,Employment and Training +194906,Employment and Training,Employment and Training +189090,Employment and Training,Employment and Training +189072,Employment and Training,Employment and Training +447288,Employment and Training,Employment and Training +447285,Employment and Training,Employment and Training +445332,Employment and Training,Employment and Training +432447,Employment and Training,Employment and Training +424114,Employment and Training,Employment and Training +424099,Employment and Training,Employment and Training +421612,Employment and Training,Employment and Training +417923,Employment and Training,Employment and Training +416723,Employment and Training,Employment and Training +416679,Employment and Training,Employment and Training +416667,Employment and Training,Employment and Training +416647,Employment and Training,Employment and Training +416629,Employment and Training,Employment and Training +413187,Employment and Training,Employment and Training +413156,Employment and Training,Employment and Training +409821,Employment and Training,Employment and Training +409791,Employment and Training,Employment and Training +405169,Employment and Training,Employment and Training +400637,Employment and Training,Employment and Training +394268,Employment and Training,Employment and Training +391163,Employment and Training,Employment and Training +385364,Employment and Training,Employment and Training +374846,Employment and Training,Employment and Training +374784,Employment and Training,Employment and Training +372923,Employment and Training,Employment and Training +372922,Employment and Training,Employment and Training +372917,Employment and Training,Employment and Training +370095,Employment and Training,Employment and Training +367362,Employment and Training,Employment and Training +361198,Employment and Training,Employment and Training +354073,Employment and Training,Employment and Training +351535,Employment and Training,Employment and Training +344045,Employment and Training,Employment and Training +344038,Employment and Training,Employment and Training +338391,Employment and Training,Employment and Training +335984,Employment and Training,Employment and Training +333678,Employment and Training,Employment and Training +333677,Employment and Training,Employment and Training +333676,Employment and Training,Employment and Training +333673,Employment and Training,Employment and Training +333672,Employment and Training,Employment and Training +333667,Employment and Training,Employment and Training +333664,Employment and Training,Employment and Training +333660,Employment and Training,Employment and Training +544001,Employment and Training,Employment and Training +541720,Employment and Training,Employment and Training +541706,Employment and Training,Employment and Training +541704,Employment and Training,Employment and Training +528032,Employment and Training,Employment and Training +522841,Employment and Training,Employment and Training +520033,Employment and Training,Employment and Training +520015,Employment and Training,Employment and Training +520013,Employment and Training,Employment and Training +520010,Employment and Training,Employment and Training +518195,Employment and Training,Employment and Training +516773,Employment and Training,Employment and Training +512943,Employment and Training,Employment and Training +512941,Employment and Training,Employment and Training +511167,Employment and Training,Employment and Training +508668,Employment and Training,Employment and Training +508661,Employment and Training,Employment and Training +508660,Employment and Training,Employment and Training +508652,Employment and Training,Employment and Training +505856,Employment and Training,Employment and Training +502630,Employment and Training,Employment and Training +502604,Employment and Training,Employment and Training +499094,Employment and Training,Employment and Training +493421,Employment and Training,Employment and Training +493417,Employment and Training,Employment and Training +471018,Employment and Training,Employment and Training +463976,Employment and Training,Employment and Training +463975,Employment and Training,Employment and Training +118814,Environment,Environment +148194,Employment and Training,Employment and Training +148194,Environment,Environment +148194,Industry,Industry +250296,Mining,Mining +215509,Mining,Mining +109643,Mining,Mining +170666,Mining,Mining +170665,Mining,Mining +170664,Mining,Mining +170663,Mining,Mining +157195,Mining,Mining +154889,Mining,Mining +148194,Mining,Mining +254254,Mining,Mining +250298,Mining,Mining +209630,Health,Health +227593,Health,Health +209632,Health,Health +209630,Small Business,Small Business +227593,Small Business,Small Business +209632,Small Business,Small Business +250296,Taxation and Finance,Taxation and Finance +159924,Taxation and Finance,Taxation and Finance +109643,Taxation and Finance,Taxation and Finance +250298,Taxation and Finance,Taxation and Finance +169862,Agriculture,Agriculture +169861,Agriculture,Agriculture +88047,Agriculture,Agriculture +158000,Agriculture,Agriculture +157999,Agriculture,Agriculture +157995,Agriculture,Agriculture +157993,Agriculture,Agriculture +157992,Agriculture,Agriculture +147703,Agriculture,Agriculture +147702,Agriculture,Agriculture +132520,Agriculture,Agriculture +132518,Agriculture,Agriculture +117560,Agriculture,Agriculture +177044,Agriculture,Agriculture +145395,International Trade,International Trade +204687,International Trade,International Trade +132513,International Trade,International Trade +97199,International Trade,International Trade +97186,International Trade,International Trade +88047,International Trade,International Trade +195509,International Trade,International Trade +195508,International Trade,International Trade +195507,International Trade,International Trade +177044,International Trade,International Trade +160536,International Trade,International Trade +160535,International Trade,International Trade +160493,International Trade,International Trade +160492,International Trade,International Trade +158000,International Trade,International Trade +157999,International Trade,International Trade +157995,International Trade,International Trade +157993,International Trade,International Trade +157992,International Trade,International Trade +117570,Agriculture,Agriculture +252316,Agriculture,Agriculture +252315,Agriculture,Agriculture +225624,Agriculture,Agriculture +225623,Agriculture,Agriculture +225621,Agriculture,Agriculture +174770,Agriculture,Agriculture +174769,Agriculture,Agriculture +174768,Agriculture,Agriculture +174767,Agriculture,Agriculture +277217,International Trade,International Trade +277213,International Trade,International Trade +252316,International Trade,International Trade +225624,International Trade,International Trade +225623,International Trade,International Trade +225621,International Trade,International Trade +204948,International Trade,International Trade +174770,International Trade,International Trade +174769,International Trade,International Trade +174768,International Trade,International Trade +174767,International Trade,International Trade +308692,International Trade,International Trade +308691,International Trade,International Trade +308690,International Trade,International Trade +308689,International Trade,International Trade +277221,International Trade,International Trade +88211,Other,INFORMATION TECHNOLOGY +379506,Consumer Issues,Consumer Issues +210027,Energy,Energy +210027,Industry,Industry +100496,Energy,Energy +100495,Energy,Energy +97673,Energy,Energy +93263,Energy,Energy +77696,Energy,Energy +156978,Energy,Energy +147917,Energy,Energy +128664,Energy,Energy +119876,Energy,Energy +93252,Environment,Environment +93235,Environment,Environment +93263,Industry,Industry +156978,Industry,Industry +119876,Industry,Industry +157012,Energy,Energy +151480,Energy,Energy +192046,Energy,Energy +157013,Industry,Industry +157012,Industry,Industry +84980,Industry,Industry +83128,Industry,Industry +396596,Government Procurement,Government Procurement +396185,Government Procurement,Government Procurement +230369,Government Procurement,Government Procurement +226347,Government Procurement,Government Procurement +244933,Government Procurement,Government Procurement +163691,Agriculture,Agriculture +163689,Agriculture,Agriculture +136335,Agriculture,Agriculture +110616,Agriculture,Agriculture +101552,Agriculture,Agriculture +99675,Agriculture,Agriculture +99394,Agriculture,Agriculture +506950,Energy,Energy +443175,Energy,Energy +167375,Energy,Energy +167105,Energy,Energy +312689,Energy,Energy +191130,Energy,Energy +191128,Energy,Energy +190084,Energy,Energy +190045,Energy,Energy +175318,Energy,Energy +175317,Energy,Energy +175316,Energy,Energy +175314,Energy,Energy +167379,Energy,Energy +167376,Energy,Energy +419751,Energy,Energy +416672,Energy,Energy +416648,Energy,Energy +416643,Energy,Energy +416631,Energy,Energy +416622,Energy,Energy +416579,Energy,Energy +416541,Energy,Energy +416533,Energy,Energy +416530,Energy,Energy +416527,Energy,Energy +404725,Energy,Energy +404724,Energy,Energy +404706,Energy,Energy +404703,Energy,Energy +404702,Energy,Energy +404700,Energy,Energy +381250,Energy,Energy +351002,Energy,Energy +351001,Energy,Energy +351000,Energy,Energy +350998,Energy,Energy +350997,Energy,Energy +350996,Energy,Energy +350995,Energy,Energy +350994,Energy,Energy +340681,Energy,Energy +340679,Energy,Energy +335936,Energy,Energy +498144,Environment,Environment +498143,Environment,Environment +191130,Environment,Environment +191128,Environment,Environment +190084,Environment,Environment +190045,Environment,Environment +186664,Environment,Environment +175505,Environment,Environment +175318,Environment,Environment +175317,Environment,Environment +175316,Environment,Environment +175314,Environment,Environment +167380,Environment,Environment +167379,Environment,Environment +167376,Environment,Environment +167375,Environment,Environment +167374,Environment,Environment +167105,Environment,Environment +340687,Environment,Environment +340684,Environment,Environment +340682,Environment,Environment +340675,Environment,Environment +340673,Environment,Environment +340668,Environment,Environment +310085,Environment,Environment +382005,Environment,Environment +382004,Environment,Environment +381847,Environment,Environment +381846,Environment,Environment +381441,Environment,Environment +381438,Environment,Environment +381437,Environment,Environment +381250,Environment,Environment +381126,Environment,Environment +381119,Environment,Environment +381117,Environment,Environment +378038,Environment,Environment +374936,Environment,Environment +374085,Environment,Environment +374081,Environment,Environment +373591,Environment,Environment +373248,Environment,Environment +373247,Environment,Environment +373246,Environment,Environment +373245,Environment,Environment +373244,Environment,Environment +373243,Environment,Environment +373242,Environment,Environment +373241,Environment,Environment +373240,Environment,Environment +373239,Environment,Environment +373237,Environment,Environment +367900,Environment,Environment +367899,Environment,Environment +367898,Environment,Environment +367897,Environment,Environment +367896,Environment,Environment +367895,Environment,Environment +367894,Environment,Environment +367893,Environment,Environment +367890,Environment,Environment +367889,Environment,Environment +367887,Environment,Environment +367878,Environment,Environment +362368,Environment,Environment +362365,Environment,Environment +362362,Environment,Environment +362360,Environment,Environment +350993,Environment,Environment +350992,Environment,Environment +350991,Environment,Environment +347724,Environment,Environment +347723,Environment,Environment +421278,Environment,Environment +421277,Environment,Environment +421275,Environment,Environment +421273,Environment,Environment +421272,Environment,Environment +421271,Environment,Environment +421270,Environment,Environment +419756,Environment,Environment +419755,Environment,Environment +419751,Environment,Environment +416672,Environment,Environment +416666,Environment,Environment +416662,Environment,Environment +416661,Environment,Environment +416658,Environment,Environment +416653,Environment,Environment +416648,Environment,Environment +416643,Environment,Environment +416631,Environment,Environment +416622,Environment,Environment +416607,Environment,Environment +416605,Environment,Environment +416600,Environment,Environment +416594,Environment,Environment +416590,Environment,Environment +416583,Environment,Environment +416579,Environment,Environment +416541,Environment,Environment +416533,Environment,Environment +416530,Environment,Environment +416527,Environment,Environment +412167,Environment,Environment +412163,Environment,Environment +412160,Environment,Environment +412157,Environment,Environment +412152,Environment,Environment +410374,Environment,Environment +410372,Environment,Environment +410371,Environment,Environment +410370,Environment,Environment +410369,Environment,Environment +406814,Environment,Environment +406812,Environment,Environment +406806,Environment,Environment +406803,Environment,Environment +406802,Environment,Environment +406801,Environment,Environment +406799,Environment,Environment +404725,Environment,Environment +404724,Environment,Environment +404706,Environment,Environment +404703,Environment,Environment +404702,Environment,Environment +404700,Environment,Environment +404699,Environment,Environment +404698,Environment,Environment +404697,Environment,Environment +404696,Environment,Environment +403552,Environment,Environment +402737,Environment,Environment +402734,Environment,Environment +402723,Environment,Environment +402720,Environment,Environment +402719,Environment,Environment +402716,Environment,Environment +400259,Environment,Environment +400258,Environment,Environment +399965,Environment,Environment +399964,Environment,Environment +399958,Environment,Environment +399957,Environment,Environment +398375,Environment,Environment +398301,Environment,Environment +398300,Environment,Environment +398299,Environment,Environment +398297,Environment,Environment +398296,Environment,Environment +398295,Environment,Environment +398294,Environment,Environment +398293,Environment,Environment +398292,Environment,Environment +398290,Environment,Environment +398282,Environment,Environment +398279,Environment,Environment +398278,Environment,Environment +395698,Environment,Environment +395593,Environment,Environment +395592,Environment,Environment +395591,Environment,Environment +395590,Environment,Environment +395498,Environment,Environment +395488,Environment,Environment +395405,Environment,Environment +393220,Environment,Environment +393219,Environment,Environment +392411,Environment,Environment +392406,Environment,Environment +389658,Environment,Environment +389656,Environment,Environment +389653,Environment,Environment +389652,Environment,Environment +389651,Environment,Environment +389650,Environment,Environment +389649,Environment,Environment +386518,Environment,Environment +386517,Environment,Environment +386516,Environment,Environment +386515,Environment,Environment +386514,Environment,Environment +386513,Environment,Environment +386512,Environment,Environment +386511,Environment,Environment +386510,Environment,Environment +384523,Environment,Environment +384522,Environment,Environment +384518,Environment,Environment +384517,Environment,Environment +382950,Environment,Environment +382949,Environment,Environment +382948,Environment,Environment +382084,Environment,Environment +494969,Environment,Environment +494968,Environment,Environment +494963,Environment,Environment +494953,Environment,Environment +494948,Environment,Environment +493484,Environment,Environment +492499,Environment,Environment +492498,Environment,Environment +489784,Environment,Environment +489727,Environment,Environment +489726,Environment,Environment +489721,Environment,Environment +489719,Environment,Environment +489716,Environment,Environment +487609,Environment,Environment +487608,Environment,Environment +487607,Environment,Environment +487606,Environment,Environment +486593,Environment,Environment +486587,Environment,Environment +486585,Environment,Environment +483601,Environment,Environment +483585,Environment,Environment +483575,Environment,Environment +483574,Environment,Environment +481872,Environment,Environment +481869,Environment,Environment +481867,Environment,Environment +481864,Environment,Environment +480489,Environment,Environment +480488,Environment,Environment +480486,Environment,Environment +479657,Environment,Environment +479654,Environment,Environment +479651,Environment,Environment +479649,Environment,Environment +479634,Environment,Environment +479618,Environment,Environment +479612,Environment,Environment +479607,Environment,Environment +479602,Environment,Environment +479581,Environment,Environment +478728,Environment,Environment +478727,Environment,Environment +476865,Environment,Environment +476864,Environment,Environment +476863,Environment,Environment +476862,Environment,Environment +476861,Environment,Environment +476858,Environment,Environment +474828,Environment,Environment +474749,Environment,Environment +474747,Environment,Environment +474745,Environment,Environment +474744,Environment,Environment +474581,Environment,Environment +474580,Environment,Environment +474478,Environment,Environment +474475,Environment,Environment +472260,Environment,Environment +472259,Environment,Environment +472258,Environment,Environment +472257,Environment,Environment +472256,Environment,Environment +472117,Environment,Environment +472114,Environment,Environment +472112,Environment,Environment +472110,Environment,Environment +470818,Environment,Environment +470816,Environment,Environment +470812,Environment,Environment +470807,Environment,Environment +470803,Environment,Environment +470793,Environment,Environment +470784,Environment,Environment +470779,Environment,Environment +470670,Environment,Environment +470668,Environment,Environment +470663,Environment,Environment +470660,Environment,Environment +470657,Environment,Environment +470652,Environment,Environment +470649,Environment,Environment +470641,Environment,Environment +470634,Environment,Environment +466413,Environment,Environment +466406,Environment,Environment +466405,Environment,Environment +466399,Environment,Environment +466398,Environment,Environment +466395,Environment,Environment +466392,Environment,Environment +466391,Environment,Environment +466390,Environment,Environment +466388,Environment,Environment +466386,Environment,Environment +466383,Environment,Environment +466382,Environment,Environment +464245,Environment,Environment +464244,Environment,Environment +464242,Environment,Environment +463864,Environment,Environment +463863,Environment,Environment +463862,Environment,Environment +463861,Environment,Environment +463859,Environment,Environment +462939,Environment,Environment +462938,Environment,Environment +462937,Environment,Environment +462936,Environment,Environment +462935,Environment,Environment +462934,Environment,Environment +462932,Environment,Environment +462931,Environment,Environment +461282,Environment,Environment +461279,Environment,Environment +461278,Environment,Environment +461196,Environment,Environment +461136,Environment,Environment +461135,Environment,Environment +461123,Environment,Environment +461122,Environment,Environment +459927,Environment,Environment +459127,Environment,Environment +458383,Environment,Environment +458286,Environment,Environment +458285,Environment,Environment +458282,Environment,Environment +458280,Environment,Environment +458279,Environment,Environment +458278,Environment,Environment +458270,Environment,Environment +458269,Environment,Environment +457165,Environment,Environment +457164,Environment,Environment +457161,Environment,Environment +457158,Environment,Environment +457157,Environment,Environment +457154,Environment,Environment +456479,Environment,Environment +456282,Environment,Environment +454782,Environment,Environment +454780,Environment,Environment +454779,Environment,Environment +454778,Environment,Environment +454777,Environment,Environment +454776,Environment,Environment +454775,Environment,Environment +454773,Environment,Environment +454536,Environment,Environment +454535,Environment,Environment +454534,Environment,Environment +454533,Environment,Environment +454532,Environment,Environment +454528,Environment,Environment +454527,Environment,Environment +454525,Environment,Environment +454524,Environment,Environment +454522,Environment,Environment +454520,Environment,Environment +454518,Environment,Environment +454516,Environment,Environment +454513,Environment,Environment +452114,Environment,Environment +452113,Environment,Environment +452112,Environment,Environment +452111,Environment,Environment +452110,Environment,Environment +452108,Environment,Environment +450134,Environment,Environment +448346,Environment,Environment +448345,Environment,Environment +448344,Environment,Environment +448343,Environment,Environment +444614,Environment,Environment +444613,Environment,Environment +443380,Environment,Environment +443378,Environment,Environment +441615,Environment,Environment +441472,Environment,Environment +441470,Environment,Environment +441469,Environment,Environment +441468,Environment,Environment +441455,Environment,Environment +439743,Environment,Environment +438153,Environment,Environment +438147,Environment,Environment +438146,Environment,Environment +438145,Environment,Environment +438140,Environment,Environment +438139,Environment,Environment +438136,Environment,Environment +435333,Environment,Environment +435328,Environment,Environment +435326,Environment,Environment +435325,Environment,Environment +435324,Environment,Environment +434831,Environment,Environment +433663,Environment,Environment +433662,Environment,Environment +433660,Environment,Environment +432822,Environment,Environment +432821,Environment,Environment +432820,Environment,Environment +432032,Environment,Environment +431928,Environment,Environment +431927,Environment,Environment +431923,Environment,Environment +431922,Environment,Environment +431921,Environment,Environment +430701,Environment,Environment +430700,Environment,Environment +430699,Environment,Environment +430697,Environment,Environment +430685,Environment,Environment +430676,Environment,Environment +429124,Environment,Environment +429037,Environment,Environment +428199,Environment,Environment +428185,Environment,Environment +428184,Environment,Environment +428183,Environment,Environment +427628,Environment,Environment +427627,Environment,Environment +426190,Environment,Environment +426189,Environment,Environment +426188,Environment,Environment +426187,Environment,Environment +426186,Environment,Environment +423885,Environment,Environment +423692,Environment,Environment +423691,Environment,Environment +423690,Environment,Environment +423689,Environment,Environment +423454,Environment,Environment +423452,Environment,Environment +423451,Environment,Environment +423450,Environment,Environment +423449,Environment,Environment +422625,Environment,Environment +422137,Environment,Environment +544468,Environment,Environment +544467,Environment,Environment +543062,Environment,Environment +543060,Environment,Environment +543056,Environment,Environment +543052,Environment,Environment +543043,Environment,Environment +543039,Environment,Environment +543033,Environment,Environment +543031,Environment,Environment +542859,Environment,Environment +542852,Environment,Environment +542851,Environment,Environment +542847,Environment,Environment +542846,Environment,Environment +541146,Environment,Environment +541145,Environment,Environment +541144,Environment,Environment +541142,Environment,Environment +541141,Environment,Environment +541140,Environment,Environment +541139,Environment,Environment +541134,Environment,Environment +541132,Environment,Environment +541131,Environment,Environment +541130,Environment,Environment +541129,Environment,Environment +541127,Environment,Environment +539456,Environment,Environment +539454,Environment,Environment +539453,Environment,Environment +539451,Environment,Environment +539450,Environment,Environment +539449,Environment,Environment +539448,Environment,Environment +538823,Environment,Environment +536593,Environment,Environment +536589,Environment,Environment +536587,Environment,Environment +536586,Environment,Environment +536585,Environment,Environment +536584,Environment,Environment +534326,Environment,Environment +534325,Environment,Environment +534324,Environment,Environment +534323,Environment,Environment +534322,Environment,Environment +531857,Environment,Environment +531856,Environment,Environment +531855,Environment,Environment +531854,Environment,Environment +531853,Environment,Environment +531852,Environment,Environment +531850,Environment,Environment +531847,Environment,Environment +531846,Environment,Environment +531845,Environment,Environment +531842,Environment,Environment +531841,Environment,Environment +531840,Environment,Environment +528688,Environment,Environment +527902,Environment,Environment +527899,Environment,Environment +527898,Environment,Environment +527897,Environment,Environment +527896,Environment,Environment +527895,Environment,Environment +527887,Environment,Environment +527886,Environment,Environment +527885,Environment,Environment +527884,Environment,Environment +527870,Environment,Environment +527254,Environment,Environment +527251,Environment,Environment +525045,Environment,Environment +525036,Environment,Environment +525030,Environment,Environment +525024,Environment,Environment +525022,Environment,Environment +525018,Environment,Environment +525012,Environment,Environment +525009,Environment,Environment +525006,Environment,Environment +525002,Environment,Environment +524998,Environment,Environment +521995,Environment,Environment +521994,Environment,Environment +521992,Environment,Environment +521986,Environment,Environment +521984,Environment,Environment +521982,Environment,Environment +521978,Environment,Environment +521976,Environment,Environment +521971,Environment,Environment +521965,Environment,Environment +520108,Environment,Environment +520107,Environment,Environment +520106,Environment,Environment +520105,Environment,Environment +520101,Environment,Environment +517076,Environment,Environment +517075,Environment,Environment +517074,Environment,Environment +517068,Environment,Environment +517065,Environment,Environment +517061,Environment,Environment +517059,Environment,Environment +516328,Environment,Environment +515274,Environment,Environment +515263,Environment,Environment +515262,Environment,Environment +515260,Environment,Environment +515259,Environment,Environment +515257,Environment,Environment +515256,Environment,Environment +512446,Environment,Environment +512443,Environment,Environment +512441,Environment,Environment +512440,Environment,Environment +509810,Environment,Environment +509704,Environment,Environment +509703,Environment,Environment +509702,Environment,Environment +509699,Environment,Environment +509694,Environment,Environment +506950,Environment,Environment +506864,Environment,Environment +506863,Environment,Environment +506862,Environment,Environment +506861,Environment,Environment +506860,Environment,Environment +506859,Environment,Environment +406548,Agriculture,Agriculture +244932,Government Procurement,Government Procurement +97340,Agriculture,Agriculture +312690,Energy,Energy +498145,Environment,Environment +506950,Fisheries,Fisheries +175505,Health,Health +393217,Infrastructure,Infrastructure +527893,Taxation and Finance,Taxation and Finance +83496,Defence,Defence +88014,Government Procurement,Government Procurement +109671,Health,Health +532470,Health,Health +352250,Industry,Industry +341782,International Trade,International Trade +337195,Consumer Issues,Consumer Issues +212029,Environment,Environment +125299,Financial Institutions,Financial Institutions +370080,Industry,Industry +413643,International Trade,International Trade +161779,Transportation,Transportation +276184,Consumer Issues,Consumer Issues +379505,Consumer Issues,Consumer Issues +378776,Consumer Issues,Consumer Issues +530226,Health,Health +169727,International Trade,International Trade +170244,Education,Education +261231,Infrastructure,Infrastructure +169128,Health,Health +80621,Employment and Training,Employment and Training +80621,Health,Health +89944,Defence,Defence +89938,Fisheries,Fisheries +113651,Government Procurement,Government Procurement +121295,Industry,Industry +173204,International Trade,International Trade +89935,Transportation,Transportation +87114,Energy,Energy +119654,Energy,Energy +119654,Environment,Environment +506858,Environment,Environment +504288,Environment,Environment +503963,Environment,Environment +503961,Environment,Environment +503960,Environment,Environment +503959,Environment,Environment +503958,Environment,Environment +503957,Environment,Environment +503956,Environment,Environment +503955,Environment,Environment +503954,Environment,Environment +501058,Environment,Environment +501057,Environment,Environment +500935,Environment,Environment +500926,Environment,Environment +500925,Environment,Environment +500924,Environment,Environment +500922,Environment,Environment +500917,Environment,Environment +500915,Environment,Environment +500914,Environment,Environment +500292,Environment,Environment +499433,Environment,Environment +499432,Environment,Environment +498146,Environment,Environment +398290,Health,Health +398282,Health,Health +398279,Health,Health +398278,Health,Health +374088,Health,Health +527254,Health,Health +527252,Health,Health +498146,Health,Health +494948,Health,Health +483585,Health,Health +479581,Health,Health +476865,Health,Health +476864,Health,Health +472117,Health,Health +466385,Health,Health +464242,Health,Health +456282,Health,Health +454782,Health,Health +454780,Health,Health +454779,Health,Health +454778,Health,Health +444614,Health,Health +443380,Health,Health +437907,Health,Health +428199,Health,Health +428185,Health,Health +418197,Health,Health +416672,Health,Health +416653,Health,Health +416648,Health,Health +416643,Health,Health +416631,Health,Health +416622,Health,Health +416607,Health,Health +416605,Health,Health +416600,Health,Health +416594,Health,Health +416590,Health,Health +416583,Health,Health +412157,Health,Health +412152,Health,Health +407828,Health,Health +406806,Health,Health +406803,Health,Health +406802,Health,Health +406801,Health,Health +406799,Health,Health +381250,Infrastructure,Infrastructure +527890,Taxation and Finance,Taxation and Finance +527888,Taxation and Finance,Taxation and Finance +167374,Taxation and Finance,Taxation and Finance +423451,Taxation and Finance,Taxation and Finance +423450,Taxation and Finance,Taxation and Finance +423449,Taxation and Finance,Taxation and Finance +419751,Taxation and Finance,Taxation and Finance +407827,Taxation and Finance,Taxation and Finance +407826,Taxation and Finance,Taxation and Finance +406798,Taxation and Finance,Taxation and Finance +406797,Taxation and Finance,Taxation and Finance +404695,Taxation and Finance,Taxation and Finance +402726,Taxation and Finance,Taxation and Finance +399968,Taxation and Finance,Taxation and Finance +399966,Taxation and Finance,Taxation and Finance +399963,Taxation and Finance,Taxation and Finance +398277,Taxation and Finance,Taxation and Finance +398275,Taxation and Finance,Taxation and Finance +398273,Taxation and Finance,Taxation and Finance +395410,Taxation and Finance,Taxation and Finance +395408,Taxation and Finance,Taxation and Finance +393530,Taxation and Finance,Taxation and Finance +384515,Taxation and Finance,Taxation and Finance +384513,Taxation and Finance,Taxation and Finance +381845,Taxation and Finance,Taxation and Finance +371214,Taxation and Finance,Taxation and Finance +340659,Taxation and Finance,Taxation and Finance +340656,Taxation and Finance,Taxation and Finance +433724,Taxation and Finance,Taxation and Finance +430580,Taxation and Finance,Taxation and Finance +428190,Taxation and Finance,Taxation and Finance +428188,Taxation and Finance,Taxation and Finance +427628,Taxation and Finance,Taxation and Finance +426186,Taxation and Finance,Taxation and Finance +423454,Taxation and Finance,Taxation and Finance +423452,Taxation and Finance,Taxation and Finance +542852,Taxation and Finance,Taxation and Finance +539449,Taxation and Finance,Taxation and Finance +539448,Taxation and Finance,Taxation and Finance +537345,Taxation and Finance,Taxation and Finance +537343,Taxation and Finance,Taxation and Finance +537342,Taxation and Finance,Taxation and Finance +537339,Taxation and Finance,Taxation and Finance +537336,Taxation and Finance,Taxation and Finance +537334,Taxation and Finance,Taxation and Finance +534326,Taxation and Finance,Taxation and Finance +531857,Taxation and Finance,Taxation and Finance +531856,Taxation and Finance,Taxation and Finance +531855,Taxation and Finance,Taxation and Finance +532468,Health,Health +524860,Health,Health +91634,Health,Health +163611,Health,Health +157014,Health,Health +157010,Health,Health +371871,Health,Health +361862,Health,Health +352251,Health,Health +352248,Health,Health +341815,Health,Health +341812,Health,Health +335667,Health,Health +335665,Health,Health +329412,Health,Health +329411,Health,Health +326339,Health,Health +311489,Health,Health +309824,Health,Health +309820,Health,Health +278471,Health,Health +278470,Health,Health +278469,Health,Health +260469,Health,Health +483977,Health,Health +476155,Health,Health +476154,Health,Health +460271,Health,Health +444851,Health,Health +444849,Health,Health +444847,Health,Health +444844,Health,Health +441747,Health,Health +441744,Health,Health +441741,Health,Health +441734,Health,Health +441731,Health,Health +441728,Health,Health +441726,Health,Health +441724,Health,Health +438089,Health,Health +545306,Health,Health +545246,Health,Health +545245,Health,Health +542376,Health,Health +539739,Health,Health +341807,Industry,Industry +341780,Industry,Industry +163611,Industry,Industry +157014,Industry,Industry +329410,International Trade,International Trade +439845,International Trade,International Trade +337194,Consumer Issues,Consumer Issues +305849,Consumer Issues,Consumer Issues +230810,Consumer Issues,Consumer Issues +393199,Consumer Issues,Consumer Issues +387283,Consumer Issues,Consumer Issues +344121,Consumer Issues,Consumer Issues +337692,Consumer Issues,Consumer Issues +337691,Consumer Issues,Consumer Issues +337690,Consumer Issues,Consumer Issues +337689,Consumer Issues,Consumer Issues +337198,Consumer Issues,Consumer Issues +337197,Consumer Issues,Consumer Issues +337196,Consumer Issues,Consumer Issues +212026,Environment,Environment +147758,Environment,Environment +239489,Environment,Environment +212030,Environment,Environment +318589,Financial Institutions,Financial Institutions +317952,Financial Institutions,Financial Institutions +370077,Industry,Industry +370076,Industry,Industry +230810,Industry,Industry +344124,Industry,Industry +344123,Industry,Industry +332290,Industry,Industry +332289,Industry,Industry +318597,Industry,Industry +305850,Industry,Industry +373685,Industry,Industry +413635,International Trade,International Trade +387283,International Trade,International Trade +266269,International Trade,International Trade +332291,International Trade,International Trade +332290,International Trade,International Trade +332289,International Trade,International Trade +161778,Transportation,Transportation +332291,Transportation,Transportation +168109,Transportation,Transportation +168107,Transportation,Transportation +168105,Transportation,Transportation +168104,Transportation,Transportation +168103,Transportation,Transportation +168095,Transportation,Transportation +168093,Transportation,Transportation +168091,Transportation,Transportation +163699,Transportation,Transportation +163269,Transportation,Transportation +163268,Transportation,Transportation +161780,Transportation,Transportation +379504,Consumer Issues,Consumer Issues +379503,Consumer Issues,Consumer Issues +378773,Consumer Issues,Consumer Issues +378769,Consumer Issues,Consumer Issues +379480,Consumer Issues,Consumer Issues +515973,Health,Health +506837,Health,Health +474567,Health,Health +474566,Health,Health +472023,Health,Health +462203,Health,Health +542256,Health,Health +542255,Health,Health +538633,Health,Health +538632,Health,Health +530231,Health,Health +530230,Health,Health +530227,Health,Health +197487,Education,Education +167798,Health,Health +162724,Health,Health +169133,Health,Health +169132,Health,Health +169131,Health,Health +169130,Health,Health +169129,Health,Health +80318,Employment and Training,Employment and Training +80318,Health,Health +89943,Defence,Defence +89934,Defence,Defence +158973,Government Procurement,Government Procurement +158972,Government Procurement,Government Procurement +138915,Government Procurement,Government Procurement +129296,Government Procurement,Government Procurement +117256,Government Procurement,Government Procurement +89916,Industry,Industry +84983,Industry,Industry +418040,Financial Institutions,Financial Institutions +458142,Financial Institutions,Financial Institutions +226272,Financial Institutions,Financial Institutions +423931,Financial Institutions,Financial Institutions +419534,Financial Institutions,Financial Institutions +439858,Employment and Training,Employment and Training +439857,Employment and Training,Employment and Training +439858,Industry,Industry +474379,Industry,Industry +434152,International Trade,International Trade +429744,International Trade,International Trade +439858,International Trade,International Trade +439858,Taxation and Finance,Taxation and Finance +439857,Taxation and Finance,Taxation and Finance +265457,Transportation,Transportation +265450,Transportation,Transportation +213727,Transportation,Transportation +100355,Infrastructure,Infrastructure +100354,Infrastructure,Infrastructure +97550,Infrastructure,Infrastructure +87762,Infrastructure,Infrastructure +388394,Health,Health +383643,Health,Health +164025,Health,Health +164020,Health,Health +164018,Health,Health +164015,Health,Health +164013,Health,Health +160142,Health,Health +376952,Health,Health +375066,Health,Health +369980,Health,Health +339370,Health,Health +339368,Health,Health +339367,Health,Health +335978,Health,Health +448338,Health,Health +439482,Health,Health +423959,Health,Health +423953,Health,Health +408057,Health,Health +400424,Health,Health +392641,Health,Health +391438,Health,Health +391420,Health,Health +391416,Health,Health +391409,Health,Health +391406,Health,Health +391405,Health,Health +353844,Immigration,Immigration +353841,Immigration,Immigration +138080,Immigration,Immigration +168745,Immigration,Immigration +163997,Immigration,Immigration +530148,Justice and Law Enforcement,Justice and Law Enforcement +496322,Justice and Law Enforcement,Justice and Law Enforcement +163960,Justice and Law Enforcement,Justice and Law Enforcement +163958,Justice and Law Enforcement,Justice and Law Enforcement +160139,Justice and Law Enforcement,Justice and Law Enforcement +157235,Justice and Law Enforcement,Justice and Law Enforcement +157112,Justice and Law Enforcement,Justice and Law Enforcement +313174,Justice and Law Enforcement,Justice and Law Enforcement +311008,Justice and Law Enforcement,Justice and Law Enforcement +304510,Justice and Law Enforcement,Justice and Law Enforcement +304508,Justice and Law Enforcement,Justice and Law Enforcement +304507,Justice and Law Enforcement,Justice and Law Enforcement +304503,Justice and Law Enforcement,Justice and Law Enforcement +304501,Justice and Law Enforcement,Justice and Law Enforcement +304497,Justice and Law Enforcement,Justice and Law Enforcement +304475,Justice and Law Enforcement,Justice and Law Enforcement +296851,Justice and Law Enforcement,Justice and Law Enforcement +296843,Justice and Law Enforcement,Justice and Law Enforcement +277522,Justice and Law Enforcement,Justice and Law Enforcement +227382,Justice and Law Enforcement,Justice and Law Enforcement +224053,Justice and Law Enforcement,Justice and Law Enforcement +215791,Justice and Law Enforcement,Justice and Law Enforcement +215790,Justice and Law Enforcement,Justice and Law Enforcement +215789,Justice and Law Enforcement,Justice and Law Enforcement +215788,Justice and Law Enforcement,Justice and Law Enforcement +208587,Justice and Law Enforcement,Justice and Law Enforcement +208527,Justice and Law Enforcement,Justice and Law Enforcement +207363,Justice and Law Enforcement,Justice and Law Enforcement +203707,Justice and Law Enforcement,Justice and Law Enforcement +201114,Justice and Law Enforcement,Justice and Law Enforcement +201112,Justice and Law Enforcement,Justice and Law Enforcement +201111,Justice and Law Enforcement,Justice and Law Enforcement +171176,Justice and Law Enforcement,Justice and Law Enforcement +168805,Justice and Law Enforcement,Justice and Law Enforcement +168783,Justice and Law Enforcement,Justice and Law Enforcement +164011,Justice and Law Enforcement,Justice and Law Enforcement +164010,Justice and Law Enforcement,Justice and Law Enforcement +164009,Justice and Law Enforcement,Justice and Law Enforcement +164006,Justice and Law Enforcement,Justice and Law Enforcement +164004,Justice and Law Enforcement,Justice and Law Enforcement +163997,Justice and Law Enforcement,Justice and Law Enforcement +163995,Justice and Law Enforcement,Justice and Law Enforcement +163993,Justice and Law Enforcement,Justice and Law Enforcement +163986,Justice and Law Enforcement,Justice and Law Enforcement +163981,Justice and Law Enforcement,Justice and Law Enforcement +163979,Justice and Law Enforcement,Justice and Law Enforcement +163975,Justice and Law Enforcement,Justice and Law Enforcement +380916,Justice and Law Enforcement,Justice and Law Enforcement +380913,Justice and Law Enforcement,Justice and Law Enforcement +377933,Justice and Law Enforcement,Justice and Law Enforcement +376951,Justice and Law Enforcement,Justice and Law Enforcement +369988,Justice and Law Enforcement,Justice and Law Enforcement +369984,Justice and Law Enforcement,Justice and Law Enforcement +365219,Justice and Law Enforcement,Justice and Law Enforcement +339368,Justice and Law Enforcement,Justice and Law Enforcement +339367,Justice and Law Enforcement,Justice and Law Enforcement +335978,Justice and Law Enforcement,Justice and Law Enforcement +333889,Justice and Law Enforcement,Justice and Law Enforcement +330165,Justice and Law Enforcement,Justice and Law Enforcement +330164,Justice and Law Enforcement,Justice and Law Enforcement +330163,Justice and Law Enforcement,Justice and Law Enforcement +330162,Justice and Law Enforcement,Justice and Law Enforcement +330161,Justice and Law Enforcement,Justice and Law Enforcement +322420,Justice and Law Enforcement,Justice and Law Enforcement +318985,Justice and Law Enforcement,Justice and Law Enforcement +318984,Justice and Law Enforcement,Justice and Law Enforcement +318983,Justice and Law Enforcement,Justice and Law Enforcement +318982,Justice and Law Enforcement,Justice and Law Enforcement +318981,Justice and Law Enforcement,Justice and Law Enforcement +316510,Justice and Law Enforcement,Justice and Law Enforcement +316509,Justice and Law Enforcement,Justice and Law Enforcement +313190,Justice and Law Enforcement,Justice and Law Enforcement +313186,Justice and Law Enforcement,Justice and Law Enforcement +313184,Justice and Law Enforcement,Justice and Law Enforcement +313182,Justice and Law Enforcement,Justice and Law Enforcement +313181,Justice and Law Enforcement,Justice and Law Enforcement +471060,Justice and Law Enforcement,Justice and Law Enforcement +471057,Justice and Law Enforcement,Justice and Law Enforcement +467644,Justice and Law Enforcement,Justice and Law Enforcement +461528,Justice and Law Enforcement,Justice and Law Enforcement +460897,Justice and Law Enforcement,Justice and Law Enforcement +460479,Justice and Law Enforcement,Justice and Law Enforcement +455325,Justice and Law Enforcement,Justice and Law Enforcement +439482,Justice and Law Enforcement,Justice and Law Enforcement +423953,Justice and Law Enforcement,Justice and Law Enforcement +410460,Justice and Law Enforcement,Justice and Law Enforcement +487703,Agriculture,Agriculture +487702,Agriculture,Agriculture +380378,Agriculture,Agriculture +380275,Agriculture,Agriculture +380274,Agriculture,Agriculture +380133,Agriculture,Agriculture +376488,Agriculture,Agriculture +376485,Agriculture,Agriculture +376484,Agriculture,Agriculture +376482,Agriculture,Agriculture +376479,Agriculture,Agriculture +376476,Agriculture,Agriculture +376475,Agriculture,Agriculture +373209,Agriculture,Agriculture +373208,Agriculture,Agriculture +373207,Agriculture,Agriculture +373206,Agriculture,Agriculture +373205,Agriculture,Agriculture +371466,Agriculture,Agriculture +371223,Agriculture,Agriculture +370948,Agriculture,Agriculture +370835,Agriculture,Agriculture +370833,Agriculture,Agriculture +370830,Agriculture,Agriculture +370828,Agriculture,Agriculture +370826,Agriculture,Agriculture +370204,Agriculture,Agriculture +370203,Agriculture,Agriculture +370160,Agriculture,Agriculture +369983,Agriculture,Agriculture +369402,Agriculture,Agriculture +369016,Agriculture,Agriculture +368865,Agriculture,Agriculture +366925,Agriculture,Agriculture +365564,Agriculture,Agriculture +363466,Agriculture,Agriculture +363445,Agriculture,Agriculture +362269,Agriculture,Agriculture +362268,Agriculture,Agriculture +362267,Agriculture,Agriculture +359488,Agriculture,Agriculture +359487,Agriculture,Agriculture +359485,Agriculture,Agriculture +359484,Agriculture,Agriculture +359483,Agriculture,Agriculture +359482,Agriculture,Agriculture +357178,Agriculture,Agriculture +355427,Agriculture,Agriculture +355426,Agriculture,Agriculture +355425,Agriculture,Agriculture +355424,Agriculture,Agriculture +355423,Agriculture,Agriculture +352841,Agriculture,Agriculture +352431,Agriculture,Agriculture +352430,Agriculture,Agriculture +352429,Agriculture,Agriculture +352428,Agriculture,Agriculture +352427,Agriculture,Agriculture +352426,Agriculture,Agriculture +351375,Agriculture,Agriculture +351374,Agriculture,Agriculture +351373,Agriculture,Agriculture +344549,Agriculture,Agriculture +344548,Agriculture,Agriculture +344546,Agriculture,Agriculture +344545,Agriculture,Agriculture +344544,Agriculture,Agriculture +344542,Agriculture,Agriculture +344540,Agriculture,Agriculture +343620,Agriculture,Agriculture +340438,Agriculture,Agriculture +340437,Agriculture,Agriculture +339596,Agriculture,Agriculture +339463,Agriculture,Agriculture +339457,Agriculture,Agriculture +339442,Agriculture,Agriculture +339441,Agriculture,Agriculture +339440,Agriculture,Agriculture +339439,Agriculture,Agriculture +339438,Agriculture,Agriculture +339437,Agriculture,Agriculture +339435,Agriculture,Agriculture +335354,Agriculture,Agriculture +335352,Agriculture,Agriculture +335349,Agriculture,Agriculture +487701,Agriculture,Agriculture +484219,Agriculture,Agriculture +484218,Agriculture,Agriculture +484215,Agriculture,Agriculture +480869,Agriculture,Agriculture +480868,Agriculture,Agriculture +479236,Agriculture,Agriculture +479235,Agriculture,Agriculture +479234,Agriculture,Agriculture +477900,Agriculture,Agriculture +477897,Agriculture,Agriculture +477893,Agriculture,Agriculture +477891,Agriculture,Agriculture +477889,Agriculture,Agriculture +477885,Agriculture,Agriculture +477884,Agriculture,Agriculture +477883,Agriculture,Agriculture +477881,Agriculture,Agriculture +474113,Agriculture,Agriculture +470514,Agriculture,Agriculture +470209,Agriculture,Agriculture +468008,Agriculture,Agriculture +468007,Agriculture,Agriculture +468006,Agriculture,Agriculture +464810,Agriculture,Agriculture +464808,Agriculture,Agriculture +464807,Agriculture,Agriculture +464806,Agriculture,Agriculture +464805,Agriculture,Agriculture +464801,Agriculture,Agriculture +464797,Agriculture,Agriculture +464796,Agriculture,Agriculture +464794,Agriculture,Agriculture +464791,Agriculture,Agriculture +464789,Agriculture,Agriculture +464786,Agriculture,Agriculture +464784,Agriculture,Agriculture +462666,Agriculture,Agriculture +462665,Agriculture,Agriculture +462664,Agriculture,Agriculture +462663,Agriculture,Agriculture +462662,Agriculture,Agriculture +460881,Agriculture,Agriculture +458021,Agriculture,Agriculture +453834,Agriculture,Agriculture +453832,Agriculture,Agriculture +453831,Agriculture,Agriculture +448615,Agriculture,Agriculture +444618,Agriculture,Agriculture +436328,Agriculture,Agriculture +436326,Agriculture,Agriculture +436325,Agriculture,Agriculture +436324,Agriculture,Agriculture +434412,Agriculture,Agriculture +434411,Agriculture,Agriculture +434410,Agriculture,Agriculture +434409,Agriculture,Agriculture +434408,Agriculture,Agriculture +434407,Agriculture,Agriculture +434406,Agriculture,Agriculture +434405,Agriculture,Agriculture +434404,Agriculture,Agriculture +434403,Agriculture,Agriculture +434402,Agriculture,Agriculture +434401,Agriculture,Agriculture +434400,Agriculture,Agriculture +434398,Agriculture,Agriculture +434397,Agriculture,Agriculture +434396,Agriculture,Agriculture +432538,Agriculture,Agriculture +432535,Agriculture,Agriculture +428764,Agriculture,Agriculture +428763,Agriculture,Agriculture +428761,Agriculture,Agriculture +428757,Agriculture,Agriculture +428755,Agriculture,Agriculture +428753,Agriculture,Agriculture +428752,Agriculture,Agriculture +428751,Agriculture,Agriculture +428750,Agriculture,Agriculture +428749,Agriculture,Agriculture +428748,Agriculture,Agriculture +428747,Agriculture,Agriculture +428746,Agriculture,Agriculture +428745,Agriculture,Agriculture +428744,Agriculture,Agriculture +428743,Agriculture,Agriculture +428742,Agriculture,Agriculture +425933,Agriculture,Agriculture +420590,Agriculture,Agriculture +420588,Agriculture,Agriculture +419689,Agriculture,Agriculture +419687,Agriculture,Agriculture +419248,Agriculture,Agriculture +419247,Agriculture,Agriculture +419245,Agriculture,Agriculture +419244,Agriculture,Agriculture +419242,Agriculture,Agriculture +419241,Agriculture,Agriculture +419238,Agriculture,Agriculture +419237,Agriculture,Agriculture +419236,Agriculture,Agriculture +418599,Agriculture,Agriculture +418512,Agriculture,Agriculture +418511,Agriculture,Agriculture +418510,Agriculture,Agriculture +418509,Agriculture,Agriculture +418508,Agriculture,Agriculture +417103,Agriculture,Agriculture +417102,Agriculture,Agriculture +415340,Agriculture,Agriculture +415339,Agriculture,Agriculture +415338,Agriculture,Agriculture +415044,Agriculture,Agriculture +414447,Agriculture,Agriculture +414402,Agriculture,Agriculture +414401,Agriculture,Agriculture +414284,Agriculture,Agriculture +414136,Agriculture,Agriculture +413112,Agriculture,Agriculture +413110,Agriculture,Agriculture +413104,Agriculture,Agriculture +413102,Agriculture,Agriculture +413101,Agriculture,Agriculture +413096,Agriculture,Agriculture +413088,Agriculture,Agriculture +413086,Agriculture,Agriculture +413074,Agriculture,Agriculture +409167,Agriculture,Agriculture +409166,Agriculture,Agriculture +409164,Agriculture,Agriculture +409162,Agriculture,Agriculture +400735,Agriculture,Agriculture +400730,Agriculture,Agriculture +397948,Agriculture,Agriculture +397583,Agriculture,Agriculture +397582,Agriculture,Agriculture +397579,Agriculture,Agriculture +397576,Agriculture,Agriculture +395936,Agriculture,Agriculture +395933,Agriculture,Agriculture +395932,Agriculture,Agriculture +394878,Agriculture,Agriculture +394877,Agriculture,Agriculture +394876,Agriculture,Agriculture +394875,Agriculture,Agriculture +394753,Agriculture,Agriculture +394752,Agriculture,Agriculture +394751,Agriculture,Agriculture +394750,Agriculture,Agriculture +394749,Agriculture,Agriculture +394748,Agriculture,Agriculture +394747,Agriculture,Agriculture +392140,Agriculture,Agriculture +384379,Agriculture,Agriculture +384378,Agriculture,Agriculture +384377,Agriculture,Agriculture +384376,Agriculture,Agriculture +384375,Agriculture,Agriculture +384374,Agriculture,Agriculture +382883,Agriculture,Agriculture +382882,Agriculture,Agriculture +382881,Agriculture,Agriculture +544310,Agriculture,Agriculture +544309,Agriculture,Agriculture +544307,Agriculture,Agriculture +544303,Agriculture,Agriculture +538021,Agriculture,Agriculture +538020,Agriculture,Agriculture +538019,Agriculture,Agriculture +538018,Agriculture,Agriculture +538016,Agriculture,Agriculture +538015,Agriculture,Agriculture +538013,Agriculture,Agriculture +534997,Agriculture,Agriculture +534901,Agriculture,Agriculture +534900,Agriculture,Agriculture +534898,Agriculture,Agriculture +534894,Agriculture,Agriculture +534891,Agriculture,Agriculture +531530,Agriculture,Agriculture +531529,Agriculture,Agriculture +531525,Agriculture,Agriculture +531523,Agriculture,Agriculture +529962,Agriculture,Agriculture +529960,Agriculture,Agriculture +529959,Agriculture,Agriculture +529957,Agriculture,Agriculture +529956,Agriculture,Agriculture +529955,Agriculture,Agriculture +529954,Agriculture,Agriculture +526207,Agriculture,Agriculture +526206,Agriculture,Agriculture +526204,Agriculture,Agriculture +526202,Agriculture,Agriculture +526201,Agriculture,Agriculture +522252,Agriculture,Agriculture +522250,Agriculture,Agriculture +522249,Agriculture,Agriculture +522247,Agriculture,Agriculture +508601,Agriculture,Agriculture +508315,Agriculture,Agriculture +508308,Agriculture,Agriculture +508304,Agriculture,Agriculture +508298,Agriculture,Agriculture +508296,Agriculture,Agriculture +505410,Agriculture,Agriculture +505400,Agriculture,Agriculture +502062,Agriculture,Agriculture +502061,Agriculture,Agriculture +502060,Agriculture,Agriculture +502059,Agriculture,Agriculture +502058,Agriculture,Agriculture +502057,Agriculture,Agriculture +502056,Agriculture,Agriculture +502055,Agriculture,Agriculture +502054,Agriculture,Agriculture +502053,Agriculture,Agriculture +502052,Agriculture,Agriculture +502051,Agriculture,Agriculture +502049,Agriculture,Agriculture +502048,Agriculture,Agriculture +498728,Agriculture,Agriculture +498726,Agriculture,Agriculture +498724,Agriculture,Agriculture +498723,Agriculture,Agriculture +495924,Agriculture,Agriculture +495917,Agriculture,Agriculture +495872,Agriculture,Agriculture +493308,Agriculture,Agriculture +493307,Agriculture,Agriculture +493306,Agriculture,Agriculture +493305,Agriculture,Agriculture +493304,Agriculture,Agriculture +493303,Agriculture,Agriculture +493302,Agriculture,Agriculture +493301,Agriculture,Agriculture +493300,Agriculture,Agriculture +493299,Agriculture,Agriculture +493298,Agriculture,Agriculture +493297,Agriculture,Agriculture +490539,Agriculture,Agriculture +490537,Agriculture,Agriculture +490534,Agriculture,Agriculture +487707,Agriculture,Agriculture +487706,Agriculture,Agriculture +493299,International Trade,International Trade +493298,International Trade,International Trade +382883,International Trade,International Trade +382882,International Trade,International Trade +382881,International Trade,International Trade +380378,International Trade,International Trade +380275,International Trade,International Trade +380274,International Trade,International Trade +380133,International Trade,International Trade +376488,International Trade,International Trade +376485,International Trade,International Trade +376484,International Trade,International Trade +376482,International Trade,International Trade +376479,International Trade,International Trade +376476,International Trade,International Trade +376475,International Trade,International Trade +373209,International Trade,International Trade +373208,International Trade,International Trade +373207,International Trade,International Trade +373206,International Trade,International Trade +373205,International Trade,International Trade +371466,International Trade,International Trade +371223,International Trade,International Trade +370948,International Trade,International Trade +370835,International Trade,International Trade +370833,International Trade,International Trade +370830,International Trade,International Trade +370828,International Trade,International Trade +370826,International Trade,International Trade +370204,International Trade,International Trade +370203,International Trade,International Trade +370160,International Trade,International Trade +369983,International Trade,International Trade +369402,International Trade,International Trade +369016,International Trade,International Trade +368865,International Trade,International Trade +366925,International Trade,International Trade +365564,International Trade,International Trade +363466,International Trade,International Trade +363445,International Trade,International Trade +362269,International Trade,International Trade +362268,International Trade,International Trade +362267,International Trade,International Trade +359488,International Trade,International Trade +359487,International Trade,International Trade +359485,International Trade,International Trade +359484,International Trade,International Trade +359483,International Trade,International Trade +359482,International Trade,International Trade +357178,International Trade,International Trade +355427,International Trade,International Trade +355426,International Trade,International Trade +355425,International Trade,International Trade +355424,International Trade,International Trade +355423,International Trade,International Trade +352841,International Trade,International Trade +352431,International Trade,International Trade +352430,International Trade,International Trade +352429,International Trade,International Trade +352428,International Trade,International Trade +352427,International Trade,International Trade +352426,International Trade,International Trade +351375,International Trade,International Trade +351374,International Trade,International Trade +351373,International Trade,International Trade +344549,International Trade,International Trade +344548,International Trade,International Trade +344546,International Trade,International Trade +344545,International Trade,International Trade +344544,International Trade,International Trade +344542,International Trade,International Trade +344540,International Trade,International Trade +343620,International Trade,International Trade +340438,International Trade,International Trade +340437,International Trade,International Trade +339596,International Trade,International Trade +339463,International Trade,International Trade +339457,International Trade,International Trade +339442,International Trade,International Trade +339441,International Trade,International Trade +339440,International Trade,International Trade +339439,International Trade,International Trade +339438,International Trade,International Trade +339437,International Trade,International Trade +339435,International Trade,International Trade +335354,International Trade,International Trade +335352,International Trade,International Trade +335349,International Trade,International Trade +493297,International Trade,International Trade +490539,International Trade,International Trade +490537,International Trade,International Trade +490534,International Trade,International Trade +487707,International Trade,International Trade +487706,International Trade,International Trade +487705,International Trade,International Trade +487703,International Trade,International Trade +487702,International Trade,International Trade +487701,International Trade,International Trade +484219,International Trade,International Trade +484218,International Trade,International Trade +484215,International Trade,International Trade +480869,International Trade,International Trade +480868,International Trade,International Trade +479236,International Trade,International Trade +479235,International Trade,International Trade +479234,International Trade,International Trade +477900,International Trade,International Trade +477897,International Trade,International Trade +477893,International Trade,International Trade +477891,International Trade,International Trade +477889,International Trade,International Trade +477885,International Trade,International Trade +477884,International Trade,International Trade +477883,International Trade,International Trade +477881,International Trade,International Trade +474113,International Trade,International Trade +470514,International Trade,International Trade +470209,International Trade,International Trade +468008,International Trade,International Trade +468007,International Trade,International Trade +468006,International Trade,International Trade +464810,International Trade,International Trade +464808,International Trade,International Trade +464807,International Trade,International Trade +464806,International Trade,International Trade +464805,International Trade,International Trade +464801,International Trade,International Trade +464797,International Trade,International Trade +464796,International Trade,International Trade +464794,International Trade,International Trade +464791,International Trade,International Trade +464789,International Trade,International Trade +464786,International Trade,International Trade +464784,International Trade,International Trade +462666,International Trade,International Trade +462665,International Trade,International Trade +462664,International Trade,International Trade +462663,International Trade,International Trade +462662,International Trade,International Trade +460881,International Trade,International Trade +458021,International Trade,International Trade +453834,International Trade,International Trade +453832,International Trade,International Trade +453831,International Trade,International Trade +448615,International Trade,International Trade +444618,International Trade,International Trade +436328,International Trade,International Trade +436326,International Trade,International Trade +436325,International Trade,International Trade +436324,International Trade,International Trade +434412,International Trade,International Trade +434411,International Trade,International Trade +434410,International Trade,International Trade +434409,International Trade,International Trade +434408,International Trade,International Trade +434407,International Trade,International Trade +434406,International Trade,International Trade +434405,International Trade,International Trade +434404,International Trade,International Trade +434403,International Trade,International Trade +434402,International Trade,International Trade +434401,International Trade,International Trade +434400,International Trade,International Trade +434398,International Trade,International Trade +434397,International Trade,International Trade +434396,International Trade,International Trade +432538,International Trade,International Trade +432535,International Trade,International Trade +428764,International Trade,International Trade +334192,Consumer Issues,Consumer Issues +418043,Financial Institutions,Financial Institutions +458142,Health,Health +382956,Industry,Industry +196044,Agriculture,Agriculture +196044,Health,Health +153202,Employment and Training,Employment and Training +153202,Industry,Industry +439857,International Trade,International Trade +265462,Taxation and Finance,Taxation and Finance +195797,Transportation,Transportation +87762,Education,Education +100356,Infrastructure,Infrastructure +87762,Regional Development,Regional Development +76758,Mining,Mining +325229,Environment,Environment +391400,Health,Health +353861,Immigration,Immigration +530149,Justice and Law Enforcement,Justice and Law Enforcement +471023,Taxation and Finance,Taxation and Finance +487705,Agriculture,Agriculture +493300,International Trade,International Trade +80618,Employment and Training,Employment and Training +80618,Health,Health +161295,Health,Health +276702,Health,Health +189006,Taxation and Finance,Taxation and Finance +533776,Fisheries,Fisheries +369965,Agriculture,Agriculture +158209,Environment,Environment +448462,Health,Health +211930,Industry,Industry +360484,International Trade,International Trade +369773,Small Business,Small Business +378893,Transportation,Transportation +111235,Other,Public Safety and Emergency Preparedness +91938,Employment and Training,Employment and Training +169276,Health,Health +80622,Employment and Training,Employment and Training +80320,Health,Health +511336,Taxation and Finance,Taxation and Finance +77219,Labour,Labour +77219,Transportation,Transportation +319777,Consumer Issues,Consumer Issues +254491,Financial Institutions,Financial Institutions +254489,Internal Trade,Internal Trade +319777,International Relations,International Relations +319777,Small Business,Small Business +319777,Taxation and Finance,Taxation and Finance +79715,Consumer Issues,Consumer Issues +120914,Energy,Energy +90914,Health,Health +159962,Defence,Defence +86275,Health,Health +86275,Industry,Industry +266149,Agriculture,Agriculture +192183,International Trade,International Trade +169297,Health,Health +169142,Health,Health +428763,International Trade,International Trade +428761,International Trade,International Trade +428757,International Trade,International Trade +428755,International Trade,International Trade +428753,International Trade,International Trade +428752,International Trade,International Trade +428751,International Trade,International Trade +428750,International Trade,International Trade +428749,International Trade,International Trade +428748,International Trade,International Trade +428747,International Trade,International Trade +428746,International Trade,International Trade +428745,International Trade,International Trade +428744,International Trade,International Trade +428743,International Trade,International Trade +428742,International Trade,International Trade +425933,International Trade,International Trade +420590,International Trade,International Trade +420588,International Trade,International Trade +419689,International Trade,International Trade +419687,International Trade,International Trade +419248,International Trade,International Trade +419247,International Trade,International Trade +419245,International Trade,International Trade +419244,International Trade,International Trade +419242,International Trade,International Trade +419241,International Trade,International Trade +419238,International Trade,International Trade +419237,International Trade,International Trade +419236,International Trade,International Trade +418599,International Trade,International Trade +418512,International Trade,International Trade +418511,International Trade,International Trade +418510,International Trade,International Trade +418509,International Trade,International Trade +418508,International Trade,International Trade +417103,International Trade,International Trade +417102,International Trade,International Trade +415340,International Trade,International Trade +415339,International Trade,International Trade +415338,International Trade,International Trade +415044,International Trade,International Trade +414447,International Trade,International Trade +414402,International Trade,International Trade +414401,International Trade,International Trade +414284,International Trade,International Trade +414136,International Trade,International Trade +413112,International Trade,International Trade +413110,International Trade,International Trade +413104,International Trade,International Trade +413102,International Trade,International Trade +413101,International Trade,International Trade +413096,International Trade,International Trade +413088,International Trade,International Trade +413086,International Trade,International Trade +413074,International Trade,International Trade +409167,International Trade,International Trade +409166,International Trade,International Trade +409164,International Trade,International Trade +409162,International Trade,International Trade +400735,International Trade,International Trade +400730,International Trade,International Trade +397948,International Trade,International Trade +397583,International Trade,International Trade +397582,International Trade,International Trade +397579,International Trade,International Trade +397576,International Trade,International Trade +395936,International Trade,International Trade +395933,International Trade,International Trade +395932,International Trade,International Trade +394878,International Trade,International Trade +394877,International Trade,International Trade +394876,International Trade,International Trade +394875,International Trade,International Trade +394753,International Trade,International Trade +394752,International Trade,International Trade +394751,International Trade,International Trade +394750,International Trade,International Trade +394749,International Trade,International Trade +394748,International Trade,International Trade +394747,International Trade,International Trade +392140,International Trade,International Trade +384379,International Trade,International Trade +384378,International Trade,International Trade +384377,International Trade,International Trade +384376,International Trade,International Trade +384375,International Trade,International Trade +384374,International Trade,International Trade +544310,International Trade,International Trade +544309,International Trade,International Trade +544307,International Trade,International Trade +544303,International Trade,International Trade +538021,International Trade,International Trade +538020,International Trade,International Trade +538019,International Trade,International Trade +538018,International Trade,International Trade +538016,International Trade,International Trade +538015,International Trade,International Trade +538013,International Trade,International Trade +534997,International Trade,International Trade +534901,International Trade,International Trade +534900,International Trade,International Trade +534898,International Trade,International Trade +534894,International Trade,International Trade +534891,International Trade,International Trade +531530,International Trade,International Trade +531529,International Trade,International Trade +531525,International Trade,International Trade +531523,International Trade,International Trade +529962,International Trade,International Trade +529960,International Trade,International Trade +529959,International Trade,International Trade +529957,International Trade,International Trade +529956,International Trade,International Trade +529955,International Trade,International Trade +529954,International Trade,International Trade +526207,International Trade,International Trade +526206,International Trade,International Trade +526204,International Trade,International Trade +526202,International Trade,International Trade +526201,International Trade,International Trade +522252,International Trade,International Trade +522250,International Trade,International Trade +522249,International Trade,International Trade +522247,International Trade,International Trade +508601,International Trade,International Trade +508315,International Trade,International Trade +508308,International Trade,International Trade +508304,International Trade,International Trade +508298,International Trade,International Trade +508296,International Trade,International Trade +505410,International Trade,International Trade +505400,International Trade,International Trade +502062,International Trade,International Trade +502061,International Trade,International Trade +502060,International Trade,International Trade +502059,International Trade,International Trade +502058,International Trade,International Trade +502057,International Trade,International Trade +502056,International Trade,International Trade +502055,International Trade,International Trade +502054,International Trade,International Trade +502053,International Trade,International Trade +502052,International Trade,International Trade +502051,International Trade,International Trade +502049,International Trade,International Trade +502048,International Trade,International Trade +498728,International Trade,International Trade +498726,International Trade,International Trade +498724,International Trade,International Trade +498723,International Trade,International Trade +495924,International Trade,International Trade +495917,International Trade,International Trade +495872,International Trade,International Trade +493308,International Trade,International Trade +493307,International Trade,International Trade +493306,International Trade,International Trade +493305,International Trade,International Trade +493304,International Trade,International Trade +493303,International Trade,International Trade +493302,International Trade,International Trade +493301,International Trade,International Trade +80314,Employment and Training,Employment and Training +80314,Health,Health +154389,Health,Health +154388,Health,Health +290668,Health,Health +276715,Health,Health +276713,Health,Health +169249,Health,Health +169231,Health,Health +169229,Health,Health +169228,Health,Health +276699,Health,Health +230712,Health,Health +207508,Health,Health +202940,Health,Health +202936,Health,Health +171527,Health,Health +169253,Health,Health +169252,Health,Health +169251,Health,Health +169250,Health,Health +161294,Health,Health +290665,Health,Health +276703,Health,Health +189004,Taxation and Finance,Taxation and Finance +185264,Taxation and Finance,Taxation and Finance +79358,Taxation and Finance,Taxation and Finance +79357,Taxation and Finance,Taxation and Finance +79356,Taxation and Finance,Taxation and Finance +79354,Taxation and Finance,Taxation and Finance +77404,Taxation and Finance,Taxation and Finance +77400,Taxation and Finance,Taxation and Finance +77387,Taxation and Finance,Taxation and Finance +76760,Taxation and Finance,Taxation and Finance +76759,Taxation and Finance,Taxation and Finance +76755,Taxation and Finance,Taxation and Finance +76754,Taxation and Finance,Taxation and Finance +76710,Taxation and Finance,Taxation and Finance +124034,Taxation and Finance,Taxation and Finance +119774,Taxation and Finance,Taxation and Finance +104294,Taxation and Finance,Taxation and Finance +97701,Taxation and Finance,Taxation and Finance +97700,Taxation and Finance,Taxation and Finance +93498,Taxation and Finance,Taxation and Finance +93497,Taxation and Finance,Taxation and Finance +93496,Taxation and Finance,Taxation and Finance +87015,Taxation and Finance,Taxation and Finance +87014,Taxation and Finance,Taxation and Finance +85054,Taxation and Finance,Taxation and Finance +82174,Taxation and Finance,Taxation and Finance +170134,Taxation and Finance,Taxation and Finance +170133,Taxation and Finance,Taxation and Finance +170132,Taxation and Finance,Taxation and Finance +170131,Taxation and Finance,Taxation and Finance +170130,Taxation and Finance,Taxation and Finance +168955,Taxation and Finance,Taxation and Finance +168953,Taxation and Finance,Taxation and Finance +168951,Taxation and Finance,Taxation and Finance +165344,Taxation and Finance,Taxation and Finance +163609,Taxation and Finance,Taxation and Finance +161654,Taxation and Finance,Taxation and Finance +156487,Taxation and Finance,Taxation and Finance +156486,Taxation and Finance,Taxation and Finance +153238,Taxation and Finance,Taxation and Finance +151720,Taxation and Finance,Taxation and Finance +151719,Taxation and Finance,Taxation and Finance +151718,Taxation and Finance,Taxation and Finance +147117,Taxation and Finance,Taxation and Finance +147116,Taxation and Finance,Taxation and Finance +147115,Taxation and Finance,Taxation and Finance +147094,Taxation and Finance,Taxation and Finance +137674,Taxation and Finance,Taxation and Finance +249650,Taxation and Finance,Taxation and Finance +241309,Taxation and Finance,Taxation and Finance +227210,Taxation and Finance,Taxation and Finance +227207,Taxation and Finance,Taxation and Finance +227199,Taxation and Finance,Taxation and Finance +218387,Taxation and Finance,Taxation and Finance +212564,Taxation and Finance,Taxation and Finance +202269,Taxation and Finance,Taxation and Finance +202268,Taxation and Finance,Taxation and Finance +202267,Taxation and Finance,Taxation and Finance +533377,Fisheries,Fisheries +532503,Fisheries,Fisheries +537422,Fisheries,Fisheries +537418,Fisheries,Fisheries +533778,Fisheries,Fisheries +533777,Fisheries,Fisheries +369772,Agriculture,Agriculture +488701,Agriculture,Agriculture +99414,Agriculture,Agriculture +153064,Environment,Environment +448359,Health,Health +444298,Health,Health +120755,Health,Health +100833,Health,Health +100828,Health,Health +369965,Health,Health +360494,Health,Health +360492,Health,Health +360491,Health,Health +397883,Health,Health +506372,Health,Health +500810,Health,Health +448463,Health,Health +397883,Industry,Industry +375551,Industry,Industry +111239,Industry,Industry +104134,Industry,Industry +201534,Industry,Industry +201533,Industry,Industry +201532,Industry,Industry +201508,Industry,Industry +192032,Industry,Industry +158209,Industry,Industry +118835,Industry,Industry +369773,Industry,Industry +360496,Industry,Industry +222589,Industry,Industry +222587,Industry,Industry +220567,Industry,Industry +211936,Industry,Industry +211933,Industry,Industry +360483,International Trade,International Trade +400507,International Trade,International Trade +397883,International Trade,International Trade +397882,International Trade,International Trade +371467,International Trade,International Trade +371465,International Trade,International Trade +371464,International Trade,International Trade +371461,International Trade,International Trade +371459,International Trade,International Trade +371454,International Trade,International Trade +369965,International Trade,International Trade +369964,International Trade,International Trade +369963,International Trade,International Trade +369961,International Trade,International Trade +369956,International Trade,International Trade +369868,International Trade,International Trade +369866,International Trade,International Trade +369848,International Trade,International Trade +369847,International Trade,International Trade +369845,International Trade,International Trade +369779,International Trade,International Trade +369778,International Trade,International Trade +369771,International Trade,International Trade +368884,International Trade,International Trade +367164,International Trade,International Trade +360495,International Trade,International Trade +360493,International Trade,International Trade +360490,International Trade,International Trade +360489,International Trade,International Trade +360487,International Trade,International Trade +360486,International Trade,International Trade +360485,International Trade,International Trade +368884,Small Business,Small Business +486092,Small Business,Small Business +378894,Small Business,Small Business +375551,Small Business,Small Business +369961,Small Business,Small Business +369847,Small Business,Small Business +371465,Transportation,Transportation +360488,Transportation,Transportation +169275,Health,Health +80320,Employment and Training,Employment and Training +154391,Health,Health +154390,Health,Health +100505,Health,Health +93784,Health,Health +93781,Health,Health +93778,Health,Health +93776,Health,Health +93774,Health,Health +80622,Health,Health +511335,Taxation and Finance,Taxation and Finance +499861,Taxation and Finance,Taxation and Finance +511338,Taxation and Finance,Taxation and Finance +511337,Taxation and Finance,Taxation and Finance +254491,Consumer Issues,Consumer Issues +254489,Consumer Issues,Consumer Issues +254489,Financial Institutions,Financial Institutions +319777,Financial Institutions,Financial Institutions +254491,International Relations,International Relations +254489,International Relations,International Relations +254491,Small Business,Small Business +254489,Small Business,Small Business +254489,Taxation and Finance,Taxation and Finance +96514,Energy,Energy +77358,Energy,Energy +159957,Defence,Defence +159952,Defence,Defence +81195,Defence,Defence +81194,Defence,Defence +77364,Defence,Defence +77363,Defence,Defence +86274,Health,Health +266130,Agriculture,Agriculture +420599,Agriculture,Agriculture +161465,Agriculture,Agriculture +161464,Agriculture,Agriculture +161463,Agriculture,Agriculture +161462,Agriculture,Agriculture +161461,Agriculture,Agriculture +156418,Agriculture,Agriculture +156417,Agriculture,Agriculture +156415,Agriculture,Agriculture +156413,Agriculture,Agriculture +192175,International Trade,International Trade +311769,International Trade,International Trade +101356,International Trade,International Trade +89794,International Trade,International Trade +87094,International Trade,International Trade +161465,International Trade,International Trade +161464,International Trade,International Trade +161463,International Trade,International Trade +161462,International Trade,International Trade +161461,International Trade,International Trade +156418,International Trade,International Trade +156417,International Trade,International Trade +156415,International Trade,International Trade +156413,International Trade,International Trade +156411,International Trade,International Trade +156408,International Trade,International Trade +156359,International Trade,International Trade +266129,International Trade,International Trade +260569,International Trade,International Trade +256229,International Trade,International Trade +201907,International Trade,International Trade +169296,Health,Health +169295,Health,Health +169360,Health,Health +169141,Health,Health +169140,Health,Health +169139,Health,Health +169138,Health,Health +544114,Government Procurement,Government Procurement +528746,Government Procurement,Government Procurement +254365,Government Procurement,Government Procurement +370996,Government Procurement,Government Procurement +370980,Government Procurement,Government Procurement +370973,Government Procurement,Government Procurement +363516,Government Procurement,Government Procurement +361157,Government Procurement,Government Procurement +361156,Government Procurement,Government Procurement +343459,Government Procurement,Government Procurement +277910,Government Procurement,Government Procurement +277909,Government Procurement,Government Procurement +269909,Government Procurement,Government Procurement +260790,Government Procurement,Government Procurement +416935,Government Procurement,Government Procurement +459629,Government Procurement,Government Procurement +456056,Government Procurement,Government Procurement +447862,Government Procurement,Government Procurement +445742,Government Procurement,Government Procurement +445741,Government Procurement,Government Procurement +445740,Government Procurement,Government Procurement +445739,Government Procurement,Government Procurement +445738,Government Procurement,Government Procurement +445737,Government Procurement,Government Procurement +444058,Government Procurement,Government Procurement +444057,Government Procurement,Government Procurement +444056,Government Procurement,Government Procurement +444055,Government Procurement,Government Procurement +444054,Government Procurement,Government Procurement +444053,Government Procurement,Government Procurement +444052,Government Procurement,Government Procurement +442650,Government Procurement,Government Procurement +442649,Government Procurement,Government Procurement +442648,Government Procurement,Government Procurement +442647,Government Procurement,Government Procurement +442644,Government Procurement,Government Procurement +442638,Government Procurement,Government Procurement +442633,Government Procurement,Government Procurement +439011,Government Procurement,Government Procurement +439009,Government Procurement,Government Procurement +439007,Government Procurement,Government Procurement +439006,Government Procurement,Government Procurement +439004,Government Procurement,Government Procurement +439003,Government Procurement,Government Procurement +439000,Government Procurement,Government Procurement +438956,Government Procurement,Government Procurement +442668,Industry,Industry +442659,Industry,Industry +114480,Industry,Industry +114479,Industry,Industry +114478,Industry,Industry +114475,Industry,Industry +114462,Industry,Industry +114461,Industry,Industry +114458,Industry,Industry +110239,Industry,Industry +90655,Industry,Industry +77735,Industry,Industry +202939,Industry,Industry +202933,Industry,Industry +180427,Industry,Industry +163974,Industry,Industry +163972,Industry,Industry +163970,Industry,Industry +157211,Industry,Industry +157206,Industry,Industry +152599,Industry,Industry +152399,Industry,Industry +148538,Industry,Industry +145975,Industry,Industry +135955,Industry,Industry +135954,Industry,Industry +129934,Industry,Industry +349256,Industry,Industry +349249,Industry,Industry +346880,Industry,Industry +346878,Industry,Industry +340296,Industry,Industry +336006,Industry,Industry +329470,Industry,Industry +308537,Industry,Industry +308536,Industry,Industry +308532,Industry,Industry +308510,Industry,Industry +273829,Industry,Industry +260789,Industry,Industry +254363,Industry,Industry +254345,Industry,Industry +212967,Industry,Industry +433614,Industry,Industry +433612,Industry,Industry +431240,Industry,Industry +431228,Industry,Industry +431226,Industry,Industry +431223,Industry,Industry +431221,Industry,Industry +429446,Industry,Industry +429429,Industry,Industry +429423,Industry,Industry +429372,Industry,Industry +429369,Industry,Industry +426628,Industry,Industry +424256,Industry,Industry +420165,Industry,Industry +420161,Industry,Industry +416947,Industry,Industry +416944,Industry,Industry +416937,Industry,Industry +413615,Industry,Industry +413607,Industry,Industry +413604,Industry,Industry +413597,Industry,Industry +409896,Industry,Industry +409890,Industry,Industry +406724,Industry,Industry +405557,Industry,Industry +405556,Industry,Industry +403959,Industry,Industry +403957,Industry,Industry +403948,Industry,Industry +403941,Industry,Industry +403939,Industry,Industry +403935,Industry,Industry +403928,Industry,Industry +400993,Industry,Industry +400983,Industry,Industry +400941,Industry,Industry +400935,Industry,Industry +396470,Industry,Industry +396461,Industry,Industry +396443,Industry,Industry +396439,Industry,Industry +396434,Industry,Industry +396432,Industry,Industry +394110,Industry,Industry +394109,Industry,Industry +394107,Industry,Industry +385424,Industry,Industry +385412,Industry,Industry +382517,Industry,Industry +382511,Industry,Industry +382092,Industry,Industry +381563,Industry,Industry +371768,Industry,Industry +353486,Industry,Industry +351369,Industry,Industry +351364,Industry,Industry +535282,Industry,Industry +535277,Industry,Industry +523255,Industry,Industry +520055,Industry,Industry +508063,Industry,Industry +508061,Industry,Industry +508051,Industry,Industry +505210,Industry,Industry +502632,Industry,Industry +502625,Industry,Industry +502622,Industry,Industry +502583,Industry,Industry +499343,Industry,Industry +499336,Industry,Industry +499267,Industry,Industry +496320,Industry,Industry +496319,Industry,Industry +490934,Industry,Industry +487598,Industry,Industry +487593,Industry,Industry +485215,Industry,Industry +482436,Industry,Industry +482433,Industry,Industry +479325,Industry,Industry +479322,Industry,Industry +479318,Industry,Industry +465014,Industry,Industry +465013,Industry,Industry +465009,Industry,Industry +457693,Industry,Industry +448225,Industry,Industry +107214,Intellectual Property,Intellectual Property +101308,Intellectual Property,Intellectual Property +163968,Intellectual Property,Intellectual Property +114457,Intellectual Property,Intellectual Property +114456,Intellectual Property,Intellectual Property +363500,Justice and Law Enforcement,Justice and Law Enforcement +353484,Justice and Law Enforcement,Justice and Law Enforcement +81454,Justice and Law Enforcement,Justice and Law Enforcement +530907,Employment and Training,Employment and Training +506812,Employment and Training,Employment and Training +376117,Employment and Training,Employment and Training +376115,Employment and Training,Employment and Training +492503,Employment and Training,Employment and Training +455784,Employment and Training,Employment and Training +455782,Employment and Training,Employment and Training +425361,Employment and Training,Employment and Training +425360,Employment and Training,Employment and Training +425358,Employment and Training,Employment and Training +530910,Employment and Training,Employment and Training +486815,Employment and Training,Employment and Training +486784,Employment and Training,Employment and Training +85284,Employment and Training,Employment and Training +145781,Employment and Training,Employment and Training +188510,Employment and Training,Employment and Training +188508,Employment and Training,Employment and Training +175524,Employment and Training,Employment and Training +175342,Employment and Training,Employment and Training +174103,Employment and Training,Employment and Training +169067,Employment and Training,Employment and Training +169065,Employment and Training,Employment and Training +169063,Employment and Training,Employment and Training +169060,Employment and Training,Employment and Training +169058,Employment and Training,Employment and Training +169057,Employment and Training,Employment and Training +169056,Employment and Training,Employment and Training +169055,Employment and Training,Employment and Training +169052,Employment and Training,Employment and Training +166007,Employment and Training,Employment and Training +366324,Employment and Training,Employment and Training +363525,Employment and Training,Employment and Training +363517,Employment and Training,Employment and Training +363514,Employment and Training,Employment and Training +363513,Employment and Training,Employment and Training +359558,Employment and Training,Employment and Training +357927,Employment and Training,Employment and Training +357924,Employment and Training,Employment and Training +355828,Employment and Training,Employment and Training +355827,Employment and Training,Employment and Training +355826,Employment and Training,Employment and Training +353746,Employment and Training,Employment and Training +353730,Employment and Training,Employment and Training +334957,Employment and Training,Employment and Training +333178,Employment and Training,Employment and Training +329872,Employment and Training,Employment and Training +222747,Employment and Training,Employment and Training +211468,Employment and Training,Employment and Training +211449,Employment and Training,Employment and Training +207375,Employment and Training,Employment and Training +205269,Employment and Training,Employment and Training +201947,Employment and Training,Employment and Training +201927,Employment and Training,Employment and Training +483710,Employment and Training,Employment and Training +483688,Employment and Training,Employment and Training +483685,Employment and Training,Employment and Training +483677,Employment and Training,Employment and Training +481285,Employment and Training,Employment and Training +479367,Employment and Training,Employment and Training +479363,Employment and Training,Employment and Training +477007,Employment and Training,Employment and Training +477003,Employment and Training,Employment and Training +476847,Employment and Training,Employment and Training +475111,Employment and Training,Employment and Training +475086,Employment and Training,Employment and Training +475079,Employment and Training,Employment and Training +475036,Employment and Training,Employment and Training +475003,Employment and Training,Employment and Training +472569,Employment and Training,Employment and Training +472567,Employment and Training,Employment and Training +470361,Employment and Training,Employment and Training +467925,Employment and Training,Employment and Training +467917,Employment and Training,Employment and Training +467904,Employment and Training,Employment and Training +467902,Employment and Training,Employment and Training +467892,Employment and Training,Employment and Training +467877,Employment and Training,Employment and Training +467869,Employment and Training,Employment and Training +467863,Employment and Training,Employment and Training +467719,Employment and Training,Employment and Training +464387,Employment and Training,Employment and Training +460444,Employment and Training,Employment and Training +459997,Employment and Training,Employment and Training +459995,Employment and Training,Employment and Training +459496,Employment and Training,Employment and Training +459495,Employment and Training,Employment and Training +459494,Employment and Training,Employment and Training +458403,Employment and Training,Employment and Training +458401,Employment and Training,Employment and Training +458399,Employment and Training,Employment and Training +458398,Employment and Training,Employment and Training +458397,Employment and Training,Employment and Training +456890,Employment and Training,Employment and Training +456887,Employment and Training,Employment and Training +456884,Employment and Training,Employment and Training +454453,Employment and Training,Employment and Training +454447,Employment and Training,Employment and Training +454443,Employment and Training,Employment and Training +451734,Employment and Training,Employment and Training +451731,Employment and Training,Employment and Training +451728,Employment and Training,Employment and Training +451723,Employment and Training,Employment and Training +451719,Employment and Training,Employment and Training +449535,Employment and Training,Employment and Training +449516,Employment and Training,Employment and Training +449513,Employment and Training,Employment and Training +449512,Employment and Training,Employment and Training +447469,Employment and Training,Employment and Training +447468,Employment and Training,Employment and Training +447464,Employment and Training,Employment and Training +447462,Employment and Training,Employment and Training +444961,Employment and Training,Employment and Training +444934,Employment and Training,Employment and Training +444932,Employment and Training,Employment and Training +443613,Employment and Training,Employment and Training +443607,Employment and Training,Employment and Training +441315,Employment and Training,Employment and Training +441303,Employment and Training,Employment and Training +441301,Employment and Training,Employment and Training +441298,Employment and Training,Employment and Training +441281,Employment and Training,Employment and Training +441279,Employment and Training,Employment and Training +441273,Employment and Training,Employment and Training +441083,Employment and Training,Employment and Training +437829,Employment and Training,Employment and Training +437828,Employment and Training,Employment and Training +437825,Employment and Training,Employment and Training +437824,Employment and Training,Employment and Training +437823,Employment and Training,Employment and Training +437822,Employment and Training,Employment and Training +437815,Employment and Training,Employment and Training +437813,Employment and Training,Employment and Training +437808,Employment and Training,Employment and Training +437802,Employment and Training,Employment and Training +437794,Employment and Training,Employment and Training +437789,Employment and Training,Employment and Training +437785,Employment and Training,Employment and Training +437782,Employment and Training,Employment and Training +434806,Employment and Training,Employment and Training +433526,Employment and Training,Employment and Training +433498,Employment and Training,Employment and Training +433497,Employment and Training,Employment and Training +433480,Employment and Training,Employment and Training +430954,Employment and Training,Employment and Training +430944,Employment and Training,Employment and Training +430941,Employment and Training,Employment and Training +430936,Employment and Training,Employment and Training +430933,Employment and Training,Employment and Training +430919,Employment and Training,Employment and Training +428431,Employment and Training,Employment and Training +428424,Employment and Training,Employment and Training +424109,Employment and Training,Employment and Training +424102,Employment and Training,Employment and Training +424085,Employment and Training,Employment and Training +418064,Employment and Training,Employment and Training +415944,Employment and Training,Employment and Training +413498,Employment and Training,Employment and Training +413494,Employment and Training,Employment and Training +413490,Employment and Training,Employment and Training +413487,Employment and Training,Employment and Training +413484,Employment and Training,Employment and Training +409802,Employment and Training,Employment and Training +409799,Employment and Training,Employment and Training +409795,Employment and Training,Employment and Training +409787,Employment and Training,Employment and Training +407836,Employment and Training,Employment and Training +403826,Employment and Training,Employment and Training +398587,Employment and Training,Employment and Training +392421,Employment and Training,Employment and Training +390092,Employment and Training,Employment and Training +389316,Employment and Training,Employment and Training +387603,Employment and Training,Employment and Training +387602,Employment and Training,Employment and Training +387317,Employment and Training,Employment and Training +385102,Employment and Training,Employment and Training +385096,Employment and Training,Employment and Training +385083,Employment and Training,Employment and Training +383340,Employment and Training,Employment and Training +383339,Employment and Training,Employment and Training +380897,Employment and Training,Employment and Training +380895,Employment and Training,Employment and Training +378286,Employment and Training,Employment and Training +378284,Employment and Training,Employment and Training +378277,Employment and Training,Employment and Training +378273,Employment and Training,Employment and Training +376058,Employment and Training,Employment and Training +376051,Employment and Training,Employment and Training +376048,Employment and Training,Employment and Training +376036,Employment and Training,Employment and Training +376012,Employment and Training,Employment and Training +374271,Employment and Training,Employment and Training +374270,Employment and Training,Employment and Training +370739,Employment and Training,Employment and Training +370735,Employment and Training,Employment and Training +370734,Employment and Training,Employment and Training +370733,Employment and Training,Employment and Training +370732,Employment and Training,Employment and Training +370730,Employment and Training,Employment and Training +368398,Employment and Training,Employment and Training +368391,Employment and Training,Employment and Training +368390,Employment and Training,Employment and Training +368382,Employment and Training,Employment and Training +543616,Employment and Training,Employment and Training +541089,Employment and Training,Employment and Training +539675,Employment and Training,Employment and Training +531360,Employment and Training,Employment and Training +531359,Employment and Training,Employment and Training +528455,Employment and Training,Employment and Training +524892,Employment and Training,Employment and Training +524882,Employment and Training,Employment and Training +521864,Employment and Training,Employment and Training +521863,Employment and Training,Employment and Training +521831,Employment and Training,Employment and Training +521825,Employment and Training,Employment and Training +519306,Employment and Training,Employment and Training +519303,Employment and Training,Employment and Training +519296,Employment and Training,Employment and Training +517205,Employment and Training,Employment and Training +517179,Employment and Training,Employment and Training +515480,Employment and Training,Employment and Training +512656,Employment and Training,Employment and Training +512643,Employment and Training,Employment and Training +512631,Employment and Training,Employment and Training +512627,Employment and Training,Employment and Training +504291,Employment and Training,Employment and Training +501459,Employment and Training,Employment and Training +501458,Employment and Training,Employment and Training +501457,Employment and Training,Employment and Training +501447,Employment and Training,Employment and Training +495164,Employment and Training,Employment and Training +494910,Employment and Training,Employment and Training +494905,Employment and Training,Employment and Training +494904,Employment and Training,Employment and Training +494901,Employment and Training,Employment and Training +492735,Employment and Training,Employment and Training +492729,Employment and Training,Employment and Training +492706,Employment and Training,Employment and Training +489522,Employment and Training,Employment and Training +489515,Employment and Training,Employment and Training +489497,Employment and Training,Employment and Training +489479,Employment and Training,Employment and Training +489473,Employment and Training,Employment and Training +489469,Employment and Training,Employment and Training +489465,Employment and Training,Employment and Training +489463,Employment and Training,Employment and Training +489455,Employment and Training,Employment and Training +489452,Employment and Training,Employment and Training +486831,Employment and Training,Employment and Training +486824,Employment and Training,Employment and Training +441274,Immigration,Immigration +437808,Immigration,Immigration +94147,Immigration,Immigration +90360,Immigration,Immigration +88061,Immigration,Immigration +85285,Immigration,Immigration +85279,Immigration,Immigration +85277,Immigration,Immigration +180804,Immigration,Immigration +163399,Immigration,Immigration +156847,Immigration,Immigration +131655,Immigration,Immigration +124850,Immigration,Immigration +120674,Immigration,Immigration +109511,Immigration,Immigration +109507,Immigration,Immigration +301170,Immigration,Immigration +289589,Immigration,Immigration +288990,Immigration,Immigration +288989,Immigration,Immigration +258690,Immigration,Immigration +244337,Immigration,Immigration +229103,Immigration,Immigration +207365,Immigration,Immigration +434813,Immigration,Immigration +433531,Immigration,Immigration +432228,Immigration,Immigration +426155,Immigration,Immigration +419379,Immigration,Immigration +413127,Immigration,Immigration +400902,Immigration,Immigration +400850,Immigration,Immigration +400847,Immigration,Immigration +396521,Immigration,Immigration +387608,Immigration,Immigration +387320,Immigration,Immigration +387318,Immigration,Immigration +382125,Immigration,Immigration +376054,Immigration,Immigration +374271,Immigration,Immigration +370733,Immigration,Immigration +368391,Immigration,Immigration +363514,Immigration,Immigration +363513,Immigration,Immigration +334963,Immigration,Immigration +334961,Immigration,Immigration +543616,Immigration,Immigration +541089,Immigration,Immigration +541085,Immigration,Immigration +541084,Immigration,Immigration +539675,Immigration,Immigration +537139,Immigration,Immigration +533764,Immigration,Immigration +533756,Immigration,Immigration +531362,Immigration,Immigration +531357,Immigration,Immigration +531356,Immigration,Immigration +528644,Immigration,Immigration +528491,Immigration,Immigration +528484,Immigration,Immigration +521858,Immigration,Immigration +521851,Immigration,Immigration +521842,Immigration,Immigration +521828,Immigration,Immigration +521826,Immigration,Immigration +519306,Immigration,Immigration +519305,Immigration,Immigration +519304,Immigration,Immigration +519294,Immigration,Immigration +517200,Immigration,Immigration +517191,Immigration,Immigration +517183,Immigration,Immigration +515466,Immigration,Immigration +515460,Immigration,Immigration +515452,Immigration,Immigration +515447,Immigration,Immigration +514453,Immigration,Immigration +513922,Immigration,Immigration +513920,Immigration,Immigration +512629,Immigration,Immigration +512624,Immigration,Immigration +512615,Immigration,Immigration +510288,Immigration,Immigration +510280,Immigration,Immigration +510278,Immigration,Immigration +510275,Immigration,Immigration +510261,Immigration,Immigration +510255,Immigration,Immigration +507191,Immigration,Immigration +504319,Immigration,Immigration +504318,Immigration,Immigration +504315,Immigration,Immigration +504308,Immigration,Immigration +504294,Immigration,Immigration +504289,Immigration,Immigration +501476,Immigration,Immigration +501471,Immigration,Immigration +501470,Immigration,Immigration +501462,Immigration,Immigration +501459,Immigration,Immigration +501441,Immigration,Immigration +498256,Immigration,Immigration +498064,Immigration,Immigration +498061,Immigration,Immigration +498060,Immigration,Immigration +498056,Immigration,Immigration +498055,Immigration,Immigration +498050,Immigration,Immigration +492745,Immigration,Immigration +492722,Immigration,Immigration +489703,Immigration,Immigration +489534,Immigration,Immigration +489528,Immigration,Immigration +489522,Immigration,Immigration +486915,Immigration,Immigration +486913,Immigration,Immigration +486909,Immigration,Immigration +486862,Immigration,Immigration +486857,Immigration,Immigration +486855,Immigration,Immigration +486835,Immigration,Immigration +486782,Immigration,Immigration +486780,Immigration,Immigration +486776,Immigration,Immigration +483717,Immigration,Immigration +483709,Immigration,Immigration +483707,Immigration,Immigration +483706,Immigration,Immigration +483697,Immigration,Immigration +483696,Immigration,Immigration +483695,Immigration,Immigration +483694,Immigration,Immigration +483686,Immigration,Immigration +483680,Immigration,Immigration +481312,Immigration,Immigration +481286,Immigration,Immigration +481285,Immigration,Immigration +481284,Immigration,Immigration +481283,Immigration,Immigration +481278,Immigration,Immigration +481272,Immigration,Immigration +481271,Immigration,Immigration +481270,Immigration,Immigration +481267,Immigration,Immigration +481253,Immigration,Immigration +481252,Immigration,Immigration +481251,Immigration,Immigration +481247,Immigration,Immigration +481246,Immigration,Immigration +481245,Immigration,Immigration +481234,Immigration,Immigration +479375,Immigration,Immigration +479374,Immigration,Immigration +479373,Immigration,Immigration +479372,Immigration,Immigration +479371,Immigration,Immigration +479367,Immigration,Immigration +479366,Immigration,Immigration +479359,Immigration,Immigration +476980,Immigration,Immigration +476857,Immigration,Immigration +476854,Immigration,Immigration +476850,Immigration,Immigration +476842,Immigration,Immigration +476830,Immigration,Immigration +475103,Immigration,Immigration +475031,Immigration,Immigration +475003,Immigration,Immigration +472566,Immigration,Immigration +470368,Immigration,Immigration +467899,Immigration,Immigration +467875,Immigration,Immigration +467872,Immigration,Immigration +460439,Immigration,Immigration +459998,Immigration,Immigration +459493,Immigration,Immigration +458398,Immigration,Immigration +451711,Immigration,Immigration +475090,Infrastructure,Infrastructure +475055,Infrastructure,Infrastructure +94146,Infrastructure,Infrastructure +94145,Infrastructure,Infrastructure +94144,Infrastructure,Infrastructure +94142,Infrastructure,Infrastructure +94139,Infrastructure,Infrastructure +94138,Infrastructure,Infrastructure +94136,Infrastructure,Infrastructure +90370,Infrastructure,Infrastructure +90368,Infrastructure,Infrastructure +90359,Infrastructure,Infrastructure +152358,Infrastructure,Infrastructure +150325,Infrastructure,Infrastructure +145775,Infrastructure,Infrastructure +145769,Infrastructure,Infrastructure +145767,Infrastructure,Infrastructure +137154,Infrastructure,Infrastructure +137095,Infrastructure,Infrastructure +137094,Infrastructure,Infrastructure +137074,Infrastructure,Infrastructure +128127,Infrastructure,Infrastructure +128126,Infrastructure,Infrastructure +128121,Infrastructure,Infrastructure +124852,Infrastructure,Infrastructure +124847,Infrastructure,Infrastructure +124845,Infrastructure,Infrastructure +113911,Infrastructure,Infrastructure +109520,Infrastructure,Infrastructure +101149,Infrastructure,Infrastructure +101147,Infrastructure,Infrastructure +101144,Infrastructure,Infrastructure +97780,Infrastructure,Infrastructure +97775,Infrastructure,Infrastructure +97774,Infrastructure,Infrastructure +97773,Infrastructure,Infrastructure +97772,Infrastructure,Infrastructure +97764,Infrastructure,Infrastructure +97760,Infrastructure,Infrastructure +97759,Infrastructure,Infrastructure +97758,Infrastructure,Infrastructure +201927,Infrastructure,Infrastructure +199670,Infrastructure,Infrastructure +188511,Infrastructure,Infrastructure +185354,Infrastructure,Infrastructure +180591,Infrastructure,Infrastructure +159607,Infrastructure,Infrastructure +159603,Infrastructure,Infrastructure +159602,Infrastructure,Infrastructure +159601,Infrastructure,Infrastructure +159595,Infrastructure,Infrastructure +159593,Infrastructure,Infrastructure +159569,Infrastructure,Infrastructure +156848,Infrastructure,Infrastructure +153179,Infrastructure,Infrastructure +475051,Infrastructure,Infrastructure +475045,Infrastructure,Infrastructure +467912,Infrastructure,Infrastructure +467908,Infrastructure,Infrastructure +467904,Infrastructure,Infrastructure +467896,Infrastructure,Infrastructure +467892,Infrastructure,Infrastructure +467889,Infrastructure,Infrastructure +467885,Infrastructure,Infrastructure +467881,Infrastructure,Infrastructure +467774,Infrastructure,Infrastructure +467737,Infrastructure,Infrastructure +458403,Infrastructure,Infrastructure +456890,Infrastructure,Infrastructure +454446,Infrastructure,Infrastructure +454443,Infrastructure,Infrastructure +451723,Infrastructure,Infrastructure +447460,Infrastructure,Infrastructure +444956,Infrastructure,Infrastructure +444944,Infrastructure,Infrastructure +444930,Infrastructure,Infrastructure +387605,Infrastructure,Infrastructure +383346,Infrastructure,Infrastructure +378271,Infrastructure,Infrastructure +376325,Infrastructure,Infrastructure +376324,Infrastructure,Infrastructure +376063,Infrastructure,Infrastructure +374271,Infrastructure,Infrastructure +370733,Infrastructure,Infrastructure +368391,Infrastructure,Infrastructure +368374,Infrastructure,Infrastructure +288690,Infrastructure,Infrastructure +539675,Infrastructure,Infrastructure +533762,Infrastructure,Infrastructure +528644,Infrastructure,Infrastructure +528495,Infrastructure,Infrastructure +524878,Infrastructure,Infrastructure +517181,Infrastructure,Infrastructure +517178,Infrastructure,Infrastructure +515479,Infrastructure,Infrastructure +512634,Infrastructure,Infrastructure +512627,Infrastructure,Infrastructure +510253,Infrastructure,Infrastructure +504297,Infrastructure,Infrastructure +501483,Infrastructure,Infrastructure +501466,Infrastructure,Infrastructure +501457,Infrastructure,Infrastructure +501454,Infrastructure,Infrastructure +494905,Infrastructure,Infrastructure +492735,Infrastructure,Infrastructure +492729,Infrastructure,Infrastructure +492722,Infrastructure,Infrastructure +492718,Infrastructure,Infrastructure +492706,Infrastructure,Infrastructure +489542,Infrastructure,Infrastructure +489515,Infrastructure,Infrastructure +489497,Infrastructure,Infrastructure +489479,Infrastructure,Infrastructure +489471,Infrastructure,Infrastructure +489469,Infrastructure,Infrastructure +489463,Infrastructure,Infrastructure +489460,Infrastructure,Infrastructure +489455,Infrastructure,Infrastructure +486838,Infrastructure,Infrastructure +486835,Infrastructure,Infrastructure +486831,Infrastructure,Infrastructure +486826,Infrastructure,Infrastructure +486819,Infrastructure,Infrastructure +486815,Infrastructure,Infrastructure +486784,Infrastructure,Infrastructure +483710,Infrastructure,Infrastructure +483692,Infrastructure,Infrastructure +483690,Infrastructure,Infrastructure +483688,Infrastructure,Infrastructure +483686,Infrastructure,Infrastructure +483685,Infrastructure,Infrastructure +483684,Infrastructure,Infrastructure +483683,Infrastructure,Infrastructure +483677,Infrastructure,Infrastructure +479367,Infrastructure,Infrastructure +477074,Infrastructure,Infrastructure +528499,International Relations,International Relations +524878,International Relations,International Relations +150328,International Relations,International Relations +150325,International Relations,International Relations +148118,International Relations,International Relations +145773,International Relations,International Relations +131655,International Relations,International Relations +124850,International Relations,International Relations +90360,International Relations,International Relations +174103,International Relations,International Relations +174102,International Relations,International Relations +174101,International Relations,International Relations +173491,International Relations,International Relations +173489,International Relations,International Relations +169060,International Relations,International Relations +169058,International Relations,International Relations +169056,International Relations,International Relations +163395,International Relations,International Relations +162673,International Relations,International Relations +162671,International Relations,International Relations +159624,International Relations,International Relations +159619,International Relations,International Relations +159613,International Relations,International Relations +159609,International Relations,International Relations +159602,International Relations,International Relations +159595,International Relations,International Relations +159588,International Relations,International Relations +159579,International Relations,International Relations +156851,International Relations,International Relations +156848,International Relations,International Relations +154872,International Relations,International Relations +153180,International Relations,International Relations +244409,International Relations,International Relations +244408,International Relations,International Relations +244407,International Relations,International Relations +244405,International Relations,International Relations +244404,International Relations,International Relations +244402,International Relations,International Relations +244401,International Relations,International Relations +244399,International Relations,International Relations +244398,International Relations,International Relations +244396,International Relations,International Relations +244395,International Relations,International Relations +244393,International Relations,International Relations +244392,International Relations,International Relations +244391,International Relations,International Relations +244390,International Relations,International Relations +244389,International Relations,International Relations +244386,International Relations,International Relations +244384,International Relations,International Relations +244383,International Relations,International Relations +244382,International Relations,International Relations +244351,International Relations,International Relations +244350,International Relations,International Relations +244349,International Relations,International Relations +244348,International Relations,International Relations +244346,International Relations,International Relations +244345,International Relations,International Relations +244344,International Relations,International Relations +244211,International Relations,International Relations +236729,International Relations,International Relations +229104,International Relations,International Relations +229103,International Relations,International Relations +229102,International Relations,International Relations +229101,International Relations,International Relations +229096,International Relations,International Relations +229095,International Relations,International Relations +225612,International Relations,International Relations +225610,International Relations,International Relations +225547,International Relations,International Relations +223092,International Relations,International Relations +222751,International Relations,International Relations +222750,International Relations,International Relations +222749,International Relations,International Relations +222747,International Relations,International Relations +221788,International Relations,International Relations +221787,International Relations,International Relations +216508,International Relations,International Relations +210648,International Relations,International Relations +210570,International Relations,International Relations +207370,International Relations,International Relations +207368,International Relations,International Relations +207365,International Relations,International Relations +197189,International Relations,International Relations +189011,International Relations,International Relations +188511,International Relations,International Relations +188508,International Relations,International Relations +188506,International Relations,International Relations +180804,International Relations,International Relations +175484,International Relations,International Relations +175464,International Relations,International Relations +398583,International Relations,International Relations +398579,International Relations,International Relations +398575,International Relations,International Relations +396619,International Relations,International Relations +396605,International Relations,International Relations +396584,International Relations,International Relations +396579,International Relations,International Relations +396564,International Relations,International Relations +393912,International Relations,International Relations +393911,International Relations,International Relations +393909,International Relations,International Relations +393908,International Relations,International Relations +393906,International Relations,International Relations +393904,International Relations,International Relations +393903,International Relations,International Relations +392422,International Relations,International Relations +392417,International Relations,International Relations +390094,International Relations,International Relations +390084,International Relations,International Relations +390081,International Relations,International Relations +387615,International Relations,International Relations +387604,International Relations,International Relations +385072,International Relations,International Relations +383350,International Relations,International Relations +383340,International Relations,International Relations +383339,International Relations,International Relations +380904,International Relations,International Relations +380903,International Relations,International Relations +376014,International Relations,International Relations +374271,International Relations,International Relations +370733,International Relations,International Relations +368642,International Relations,International Relations +368391,International Relations,International Relations +351197,International Relations,International Relations +351195,International Relations,International Relations +350301,International Relations,International Relations +348166,International Relations,International Relations +347285,International Relations,International Relations +343584,International Relations,International Relations +340174,International Relations,International Relations +326318,International Relations,International Relations +321540,International Relations,International Relations +315153,International Relations,International Relations +315150,International Relations,International Relations +301813,International Relations,International Relations +284511,International Relations,International Relations +284475,International Relations,International Relations +284471,International Relations,International Relations +278911,International Relations,International Relations +276539,International Relations,International Relations +275609,International Relations,International Relations +267453,International Relations,International Relations +263971,International Relations,International Relations +263970,International Relations,International Relations +263969,International Relations,International Relations +263962,International Relations,International Relations +263961,International Relations,International Relations +263957,International Relations,International Relations +263952,International Relations,International Relations +263951,International Relations,International Relations +258631,International Relations,International Relations +258629,International Relations,International Relations +258609,International Relations,International Relations +253654,International Relations,International Relations +253653,International Relations,International Relations +253650,International Relations,International Relations +249790,International Relations,International Relations +249770,International Relations,International Relations +249769,International Relations,International Relations +244899,International Relations,International Relations +244627,International Relations,International Relations +244626,International Relations,International Relations +244625,International Relations,International Relations +244623,International Relations,International Relations +244622,International Relations,International Relations +244417,International Relations,International Relations +244414,International Relations,International Relations +244413,International Relations,International Relations +244410,International Relations,International Relations +521845,International Relations,International Relations +519306,International Relations,International Relations +519305,International Relations,International Relations +517181,International Relations,International Relations +517179,International Relations,International Relations +512655,International Relations,International Relations +512610,International Relations,International Relations +510259,International Relations,International Relations +510249,International Relations,International Relations +501487,International Relations,International Relations +501446,International Relations,International Relations +501430,International Relations,International Relations +498067,International Relations,International Relations +498064,International Relations,International Relations +498061,International Relations,International Relations +498055,International Relations,International Relations +498053,International Relations,International Relations +492747,International Relations,International Relations +492745,International Relations,International Relations +489703,International Relations,International Relations +489539,International Relations,International Relations +489529,International Relations,International Relations +489515,International Relations,International Relations +486911,International Relations,International Relations +486835,International Relations,International Relations +479378,International Relations,International Relations +476855,International Relations,International Relations +476854,International Relations,International Relations +476837,International Relations,International Relations +476831,International Relations,International Relations +476823,International Relations,International Relations +475143,International Relations,International Relations +475093,International Relations,International Relations +475047,International Relations,International Relations +475031,International Relations,International Relations +472568,International Relations,International Relations +472565,International Relations,International Relations +470369,International Relations,International Relations +470368,International Relations,International Relations +470366,International Relations,International Relations +470359,International Relations,International Relations +470353,International Relations,International Relations +470348,International Relations,International Relations +470341,International Relations,International Relations +470338,International Relations,International Relations +470337,International Relations,International Relations +470335,International Relations,International Relations +467855,International Relations,International Relations +462443,International Relations,International Relations +460444,International Relations,International Relations +460439,International Relations,International Relations +460002,International Relations,International Relations +460000,International Relations,International Relations +459998,International Relations,International Relations +459993,International Relations,International Relations +459495,International Relations,International Relations +459494,International Relations,International Relations +458397,International Relations,International Relations +454455,International Relations,International Relations +454443,International Relations,International Relations +451734,International Relations,International Relations +451723,International Relations,International Relations +451713,International Relations,International Relations +451711,International Relations,International Relations +449541,International Relations,International Relations +449529,International Relations,International Relations +449516,International Relations,International Relations +449512,International Relations,International Relations +447475,International Relations,International Relations +447469,International Relations,International Relations +447468,International Relations,International Relations +447464,International Relations,International Relations +447462,International Relations,International Relations +444961,International Relations,International Relations +444960,International Relations,International Relations +444958,International Relations,International Relations +444934,International Relations,International Relations +443618,International Relations,International Relations +443616,International Relations,International Relations +443613,International Relations,International Relations +443607,International Relations,International Relations +443604,International Relations,International Relations +443602,International Relations,International Relations +441316,International Relations,International Relations +441315,International Relations,International Relations +441303,International Relations,International Relations +441301,International Relations,International Relations +441296,International Relations,International Relations +441286,International Relations,International Relations +441279,International Relations,International Relations +441273,International Relations,International Relations +437831,International Relations,International Relations +437828,International Relations,International Relations +437802,International Relations,International Relations +437794,International Relations,International Relations +437789,International Relations,International Relations +437782,International Relations,International Relations +434818,International Relations,International Relations +434816,International Relations,International Relations +434806,International Relations,International Relations +434796,International Relations,International Relations +433526,International Relations,International Relations +433498,International Relations,International Relations +433497,International Relations,International Relations +430941,International Relations,International Relations +430936,International Relations,International Relations +430919,International Relations,International Relations +428460,International Relations,International Relations +428453,International Relations,International Relations +428446,International Relations,International Relations +428443,International Relations,International Relations +428442,International Relations,International Relations +428440,International Relations,International Relations +428438,International Relations,International Relations +426155,International Relations,International Relations +424109,International Relations,International Relations +424082,International Relations,International Relations +418051,International Relations,International Relations +415926,International Relations,International Relations +415918,International Relations,International Relations +413534,International Relations,International Relations +413480,International Relations,International Relations +413472,International Relations,International Relations +413205,International Relations,International Relations +413175,International Relations,International Relations +413170,International Relations,International Relations +409793,International Relations,International Relations +409787,International Relations,International Relations +409747,International Relations,International Relations +409742,International Relations,International Relations +409738,International Relations,International Relations +409734,International Relations,International Relations +407848,International Relations,International Relations +406849,International Relations,International Relations +405199,International Relations,International Relations +403803,International Relations,International Relations +543617,International Relations,International Relations +543614,International Relations,International Relations +537145,International Relations,International Relations +533760,International Relations,International Relations +533756,International Relations,International Relations +528644,International Relations,International Relations +528484,International Trade,International Trade +528448,International Trade,International Trade +109511,International Trade,International Trade +109507,International Trade,International Trade +170879,International Trade,International Trade +169056,International Trade,International Trade +165976,International Trade,International Trade +159579,International Trade,International Trade +145769,International Trade,International Trade +131655,International Trade,International Trade +128115,International Trade,International Trade +124850,International Trade,International Trade +124847,International Trade,International Trade +263950,International Trade,International Trade +244416,International Trade,International Trade +244412,International Trade,International Trade +236835,International Trade,International Trade +229104,International Trade,International Trade +229102,International Trade,International Trade +229101,International Trade,International Trade +229096,International Trade,International Trade +229095,International Trade,International Trade +225728,International Trade,International Trade +225727,International Trade,International Trade +225614,International Trade,International Trade +225547,International Trade,International Trade +223092,International Trade,International Trade +222751,International Trade,International Trade +222750,International Trade,International Trade +222749,International Trade,International Trade +222747,International Trade,International Trade +221788,International Trade,International Trade +216508,International Trade,International Trade +210648,International Trade,International Trade +210572,International Trade,International Trade +210570,International Trade,International Trade +207370,International Trade,International Trade +207368,International Trade,International Trade +207365,International Trade,International Trade +207353,International Trade,International Trade +205311,International Trade,International Trade +205310,International Trade,International Trade +205268,International Trade,International Trade +205267,International Trade,International Trade +205190,International Trade,International Trade +205189,International Trade,International Trade +205188,International Trade,International Trade +201947,International Trade,International Trade +197189,International Trade,International Trade +193693,International Trade,International Trade +193572,International Trade,International Trade +189011,International Trade,International Trade +188513,International Trade,International Trade +188511,International Trade,International Trade +188506,International Trade,International Trade +187028,International Trade,International Trade +185665,International Trade,International Trade +180804,International Trade,International Trade +175484,International Trade,International Trade +173491,International Trade,International Trade +170896,International Trade,International Trade +170893,International Trade,International Trade +447475,International Trade,International Trade +447469,International Trade,International Trade +447468,International Trade,International Trade +447464,International Trade,International Trade +447462,International Trade,International Trade +444961,International Trade,International Trade +443602,International Trade,International Trade +443592,International Trade,International Trade +441303,International Trade,International Trade +441301,International Trade,International Trade +441279,International Trade,International Trade +437831,International Trade,International Trade +437824,International Trade,International Trade +437823,International Trade,International Trade +437813,International Trade,International Trade +437808,International Trade,International Trade +437794,International Trade,International Trade +434819,International Trade,International Trade +434818,International Trade,International Trade +434816,International Trade,International Trade +434804,International Trade,International Trade +433495,International Trade,International Trade +430954,International Trade,International Trade +418051,International Trade,International Trade +413461,International Trade,International Trade +413170,International Trade,International Trade +406849,International Trade,International Trade +403797,International Trade,International Trade +398583,International Trade,International Trade +398578,International Trade,International Trade +390081,International Trade,International Trade +387320,International Trade,International Trade +378271,International Trade,International Trade +524888,International Trade,International Trade +524878,International Trade,International Trade +521840,International Trade,International Trade +517165,International Trade,International Trade +515471,International Trade,International Trade +515460,International Trade,International Trade +515447,International Trade,International Trade +514459,International Trade,International Trade +514452,International Trade,International Trade +510262,International Trade,International Trade +510259,International Trade,International Trade +483691,International Trade,International Trade +476831,International Trade,International Trade +475090,International Trade,International Trade +475055,International Trade,International Trade +475051,International Trade,International Trade +467919,International Trade,International Trade +459995,International Trade,International Trade +459495,International Trade,International Trade +459494,International Trade,International Trade +458398,International Trade,International Trade +449512,International Trade,International Trade +124838,Other,University Research +124836,Other,University Research +90370,Other,University Research +90368,Other,University Research +90365,Other,University Research +90359,Other,University Research +85284,Other,University Research +85283,Other,University Research +82780,Other,University Research +82779,Other,University Research +120678,Other,University Research +120676,Other,University Research +120675,Other,University Research +113914,Other,University Research +113906,Other,University Research +113904,Other,University Research +109514,Other,University Research +109512,Other,University Research +109505,Other,University Research +109455,Other,University Research +106064,Other,University Research +106061,Other,University Research +106060,Other,University Research +106059,Other,University Research +94146,Other,University Research +94145,Other,University Research +94142,Other,University Research +94136,Other,University Research +142440,Other,University Research +142439,Other,University Research +142436,Other,University Research +142423,Other,University Research +138935,Other,University Research +138934,Other,University Research +137142,Other,University Research +135616,Other,University Research +135614,Other,University Research +131662,Other,University Research +131659,Other,University Research +131658,Other,University Research +131657,Other,University Research +131654,Other,University Research +128130,Other,University Research +128129,Other,University Research +128127,Other,University Research +128126,Other,University Research +128124,Other,University Research +128123,Other,University Research +128122,Other,University Research +128121,Other,University Research +128120,Other,University Research +128119,Other,University Research +128118,Other,University Research +128116,Other,University Research +128114,Other,University Research +124855,Other,University Research +124852,Other,University Research +124850,Other,University Research +124847,Other,University Research +124845,Other,University Research +124841,Other,University Research +469633,Financial Institutions,Financial Institutions +469632,Financial Institutions,Financial Institutions +378071,Financial Institutions,Financial Institutions +378070,Financial Institutions,Financial Institutions +382291,Infrastructure,Infrastructure +356271,Infrastructure,Infrastructure +353456,Infrastructure,Infrastructure +459055,International Trade,International Trade +406521,International Trade,International Trade +469627,International Trade,International Trade +467931,International Trade,International Trade +459879,International Trade,International Trade +459057,International Trade,International Trade +340014,Taxation and Finance,Taxation and Finance +500862,Taxation and Finance,Taxation and Finance +151845,Taxation and Finance,Taxation and Finance +147764,Taxation and Finance,Taxation and Finance +147759,Taxation and Finance,Taxation and Finance +145294,Taxation and Finance,Taxation and Finance +141195,Taxation and Finance,Taxation and Finance +192931,Taxation and Finance,Taxation and Finance +189485,Taxation and Finance,Taxation and Finance +185551,Taxation and Finance,Taxation and Finance +177524,Taxation and Finance,Taxation and Finance +173146,Taxation and Finance,Taxation and Finance +170264,Taxation and Finance,Taxation and Finance +229994,Taxation and Finance,Taxation and Finance +120896,Other,Pension regulation +155781,Environment,Environment +146495,Environment,Environment +102727,Environment,Environment +167038,Environment,Environment +155785,Environment,Environment +155784,Environment,Environment +366530,Agriculture,Agriculture +340827,Agriculture,Agriculture +145835,Agriculture,Agriculture +135596,Agriculture,Agriculture +128257,Agriculture,Agriculture +124605,Agriculture,Agriculture +124604,Agriculture,Agriculture +103936,Agriculture,Agriculture +277350,Agriculture,Agriculture +277346,Agriculture,Agriculture +272957,Agriculture,Agriculture +240604,Agriculture,Agriculture +199816,Agriculture,Agriculture +189070,Agriculture,Agriculture +175160,Agriculture,Agriculture +157434,Agriculture,Agriculture +152006,Agriculture,Agriculture +152001,Agriculture,Agriculture +150236,Agriculture,Agriculture +411805,Agriculture,Agriculture +383380,Agriculture,Agriculture +378554,Agriculture,Agriculture +395640,Constitutional Issues,Constitutional Issues +395637,Constitutional Issues,Constitutional Issues +75474,Constitutional Issues,Constitutional Issues +223065,Constitutional Issues,Constitutional Issues +211772,Constitutional Issues,Constitutional Issues +206812,Constitutional Issues,Constitutional Issues +189081,Constitutional Issues,Constitutional Issues +189080,Constitutional Issues,Constitutional Issues +189074,Constitutional Issues,Constitutional Issues +189066,Constitutional Issues,Constitutional Issues +180004,Constitutional Issues,Constitutional Issues +179984,Constitutional Issues,Constitutional Issues +179964,Constitutional Issues,Constitutional Issues +179944,Constitutional Issues,Constitutional Issues +179904,Constitutional Issues,Constitutional Issues +179844,Constitutional Issues,Constitutional Issues +312920,Constitutional Issues,Constitutional Issues +312911,Constitutional Issues,Constitutional Issues +309956,Constitutional Issues,Constitutional Issues +303373,Constitutional Issues,Constitutional Issues +296129,Constitutional Issues,Constitutional Issues +291055,Constitutional Issues,Constitutional Issues +291051,Constitutional Issues,Constitutional Issues +286333,Constitutional Issues,Constitutional Issues +286332,Constitutional Issues,Constitutional Issues +281015,Constitutional Issues,Constitutional Issues +281014,Constitutional Issues,Constitutional Issues +277363,Constitutional Issues,Constitutional Issues +277356,Constitutional Issues,Constitutional Issues +277350,Constitutional Issues,Constitutional Issues +272956,Constitutional Issues,Constitutional Issues +272953,Constitutional Issues,Constitutional Issues +272949,Constitutional Issues,Constitutional Issues +263458,Constitutional Issues,Constitutional Issues +263431,Constitutional Issues,Constitutional Issues +253393,Constitutional Issues,Constitutional Issues +253391,Constitutional Issues,Constitutional Issues +253390,Constitutional Issues,Constitutional Issues +244821,Constitutional Issues,Constitutional Issues +244819,Constitutional Issues,Constitutional Issues +244815,Constitutional Issues,Constitutional Issues +244813,Constitutional Issues,Constitutional Issues +244805,Constitutional Issues,Constitutional Issues +244801,Constitutional Issues,Constitutional Issues +244787,Constitutional Issues,Constitutional Issues +240613,Constitutional Issues,Constitutional Issues +240610,Constitutional Issues,Constitutional Issues +240608,Constitutional Issues,Constitutional Issues +240603,Constitutional Issues,Constitutional Issues +240602,Constitutional Issues,Constitutional Issues +240598,Constitutional Issues,Constitutional Issues +240595,Constitutional Issues,Constitutional Issues +240593,Constitutional Issues,Constitutional Issues +236867,Constitutional Issues,Constitutional Issues +236866,Constitutional Issues,Constitutional Issues +236864,Constitutional Issues,Constitutional Issues +236861,Constitutional Issues,Constitutional Issues +393725,Constitutional Issues,Constitutional Issues +393721,Constitutional Issues,Constitutional Issues +393720,Constitutional Issues,Constitutional Issues +392299,Constitutional Issues,Constitutional Issues +392297,Constitutional Issues,Constitutional Issues +392296,Constitutional Issues,Constitutional Issues +392293,Constitutional Issues,Constitutional Issues +392292,Constitutional Issues,Constitutional Issues +392291,Constitutional Issues,Constitutional Issues +392289,Constitutional Issues,Constitutional Issues +390014,Constitutional Issues,Constitutional Issues +390012,Constitutional Issues,Constitutional Issues +390011,Constitutional Issues,Constitutional Issues +389999,Constitutional Issues,Constitutional Issues +387174,Constitutional Issues,Constitutional Issues +387173,Constitutional Issues,Constitutional Issues +387171,Constitutional Issues,Constitutional Issues +384970,Constitutional Issues,Constitutional Issues +383394,Constitutional Issues,Constitutional Issues +383374,Constitutional Issues,Constitutional Issues +381130,Constitutional Issues,Constitutional Issues +376344,Constitutional Issues,Constitutional Issues +376333,Constitutional Issues,Constitutional Issues +376320,Constitutional Issues,Constitutional Issues +374055,Constitutional Issues,Constitutional Issues +371574,Constitutional Issues,Constitutional Issues +371562,Constitutional Issues,Constitutional Issues +368878,Constitutional Issues,Constitutional Issues +368871,Constitutional Issues,Constitutional Issues +368870,Constitutional Issues,Constitutional Issues +366529,Constitutional Issues,Constitutional Issues +364990,Constitutional Issues,Constitutional Issues +361067,Constitutional Issues,Constitutional Issues +355841,Constitutional Issues,Constitutional Issues +353665,Constitutional Issues,Constitutional Issues +353660,Constitutional Issues,Constitutional Issues +351259,Constitutional Issues,Constitutional Issues +348878,Constitutional Issues,Constitutional Issues +347105,Constitutional Issues,Constitutional Issues +343603,Constitutional Issues,Constitutional Issues +340822,Constitutional Issues,Constitutional Issues +340820,Constitutional Issues,Constitutional Issues +340817,Constitutional Issues,Constitutional Issues +340809,Constitutional Issues,Constitutional Issues +338371,Constitutional Issues,Constitutional Issues +338369,Constitutional Issues,Constitutional Issues +338368,Constitutional Issues,Constitutional Issues +338365,Constitutional Issues,Constitutional Issues +338362,Constitutional Issues,Constitutional Issues +335332,Constitutional Issues,Constitutional Issues +335322,Constitutional Issues,Constitutional Issues +335319,Constitutional Issues,Constitutional Issues +333337,Constitutional Issues,Constitutional Issues +333336,Constitutional Issues,Constitutional Issues +331287,Constitutional Issues,Constitutional Issues +331286,Constitutional Issues,Constitutional Issues +331284,Constitutional Issues,Constitutional Issues +330097,Constitutional Issues,Constitutional Issues +330094,Constitutional Issues,Constitutional Issues +330093,Constitutional Issues,Constitutional Issues +327246,Constitutional Issues,Constitutional Issues +327234,Constitutional Issues,Constitutional Issues +324682,Constitutional Issues,Constitutional Issues +324667,Constitutional Issues,Constitutional Issues +324666,Constitutional Issues,Constitutional Issues +324663,Constitutional Issues,Constitutional Issues +321872,Constitutional Issues,Constitutional Issues +321871,Constitutional Issues,Constitutional Issues +528470,Constitutional Issues,Constitutional Issues +466910,Constitutional Issues,Constitutional Issues +441531,Constitutional Issues,Constitutional Issues +435000,Constitutional Issues,Constitutional Issues +434992,Constitutional Issues,Constitutional Issues +425938,Constitutional Issues,Constitutional Issues +421400,Constitutional Issues,Constitutional Issues +415669,Constitutional Issues,Constitutional Issues +411808,Constitutional Issues,Constitutional Issues +405016,Constitutional Issues,Constitutional Issues +405014,Constitutional Issues,Constitutional Issues +402882,Constitutional Issues,Constitutional Issues +402868,Constitutional Issues,Constitutional Issues +400154,Constitutional Issues,Constitutional Issues +400153,Constitutional Issues,Constitutional Issues +400129,Constitutional Issues,Constitutional Issues +398776,Constitutional Issues,Constitutional Issues +315754,Consumer Issues,Consumer Issues +315751,Consumer Issues,Consumer Issues +87545,Consumer Issues,Consumer Issues +87542,Consumer Issues,Consumer Issues +84989,Consumer Issues,Consumer Issues +84987,Consumer Issues,Consumer Issues +82514,Consumer Issues,Consumer Issues +80216,Consumer Issues,Consumer Issues +80214,Consumer Issues,Consumer Issues +168048,Consumer Issues,Consumer Issues +168031,Consumer Issues,Consumer Issues +168017,Consumer Issues,Consumer Issues +168015,Consumer Issues,Consumer Issues +168010,Consumer Issues,Consumer Issues +168004,Consumer Issues,Consumer Issues +168000,Consumer Issues,Consumer Issues +165597,Consumer Issues,Consumer Issues +163788,Consumer Issues,Consumer Issues +163787,Consumer Issues,Consumer Issues +163785,Consumer Issues,Consumer Issues +163784,Consumer Issues,Consumer Issues +159149,Consumer Issues,Consumer Issues +155852,Consumer Issues,Consumer Issues +154426,Consumer Issues,Consumer Issues +145859,Consumer Issues,Consumer Issues +145843,Consumer Issues,Consumer Issues +223067,Consumer Issues,Consumer Issues +223066,Consumer Issues,Consumer Issues +223065,Consumer Issues,Consumer Issues +223063,Consumer Issues,Consumer Issues +223062,Consumer Issues,Consumer Issues +223061,Consumer Issues,Consumer Issues +223060,Consumer Issues,Consumer Issues +223055,Consumer Issues,Consumer Issues +223053,Consumer Issues,Consumer Issues +216927,Consumer Issues,Consumer Issues +216907,Consumer Issues,Consumer Issues +216889,Consumer Issues,Consumer Issues +216888,Consumer Issues,Consumer Issues +216887,Consumer Issues,Consumer Issues +216867,Consumer Issues,Consumer Issues +216849,Consumer Issues,Consumer Issues +216847,Consumer Issues,Consumer Issues +216809,Consumer Issues,Consumer Issues +216807,Consumer Issues,Consumer Issues +216789,Consumer Issues,Consumer Issues +216788,Consumer Issues,Consumer Issues +216768,Consumer Issues,Consumer Issues +216748,Consumer Issues,Consumer Issues +211789,Consumer Issues,Consumer Issues +211784,Consumer Issues,Consumer Issues +211780,Consumer Issues,Consumer Issues +211778,Consumer Issues,Consumer Issues +211777,Consumer Issues,Consumer Issues +211776,Consumer Issues,Consumer Issues +211773,Consumer Issues,Consumer Issues +211772,Consumer Issues,Consumer Issues +206829,Consumer Issues,Consumer Issues +206828,Consumer Issues,Consumer Issues +206822,Consumer Issues,Consumer Issues +206821,Consumer Issues,Consumer Issues +206816,Consumer Issues,Consumer Issues +206812,Consumer Issues,Consumer Issues +202793,Consumer Issues,Consumer Issues +202760,Consumer Issues,Consumer Issues +202757,Consumer Issues,Consumer Issues +202756,Consumer Issues,Consumer Issues +199814,Consumer Issues,Consumer Issues +199799,Consumer Issues,Consumer Issues +199797,Consumer Issues,Consumer Issues +193052,Consumer Issues,Consumer Issues +193051,Consumer Issues,Consumer Issues +193044,Consumer Issues,Consumer Issues +189077,Consumer Issues,Consumer Issues +189076,Consumer Issues,Consumer Issues +185307,Consumer Issues,Consumer Issues +185306,Consumer Issues,Consumer Issues +185305,Consumer Issues,Consumer Issues +180004,Consumer Issues,Consumer Issues +175176,Consumer Issues,Consumer Issues +175172,Consumer Issues,Consumer Issues +175159,Consumer Issues,Consumer Issues +175158,Consumer Issues,Consumer Issues +175155,Consumer Issues,Consumer Issues +173178,Consumer Issues,Consumer Issues +170438,Consumer Issues,Consumer Issues +170427,Consumer Issues,Consumer Issues +312937,Consumer Issues,Consumer Issues +312936,Consumer Issues,Consumer Issues +312935,Consumer Issues,Consumer Issues +312934,Consumer Issues,Consumer Issues +312928,Consumer Issues,Consumer Issues +312926,Consumer Issues,Consumer Issues +312923,Consumer Issues,Consumer Issues +312920,Consumer Issues,Consumer Issues +312916,Consumer Issues,Consumer Issues +312915,Consumer Issues,Consumer Issues +312913,Consumer Issues,Consumer Issues +312912,Consumer Issues,Consumer Issues +312911,Consumer Issues,Consumer Issues +309962,Consumer Issues,Consumer Issues +309958,Consumer Issues,Consumer Issues +309956,Consumer Issues,Consumer Issues +309949,Consumer Issues,Consumer Issues +309947,Consumer Issues,Consumer Issues +309945,Consumer Issues,Consumer Issues +303374,Consumer Issues,Consumer Issues +303373,Consumer Issues,Consumer Issues +303371,Consumer Issues,Consumer Issues +303370,Consumer Issues,Consumer Issues +303361,Consumer Issues,Consumer Issues +303351,Consumer Issues,Consumer Issues +296134,Consumer Issues,Consumer Issues +296133,Consumer Issues,Consumer Issues +296129,Consumer Issues,Consumer Issues +296115,Consumer Issues,Consumer Issues +296113,Consumer Issues,Consumer Issues +296112,Consumer Issues,Consumer Issues +291057,Consumer Issues,Consumer Issues +291055,Consumer Issues,Consumer Issues +291053,Consumer Issues,Consumer Issues +291051,Consumer Issues,Consumer Issues +286332,Consumer Issues,Consumer Issues +286331,Consumer Issues,Consumer Issues +277360,Consumer Issues,Consumer Issues +277357,Consumer Issues,Consumer Issues +277356,Consumer Issues,Consumer Issues +277351,Consumer Issues,Consumer Issues +277350,Consumer Issues,Consumer Issues +272971,Consumer Issues,Consumer Issues +272969,Consumer Issues,Consumer Issues +272956,Consumer Issues,Consumer Issues +272954,Consumer Issues,Consumer Issues +272953,Consumer Issues,Consumer Issues +272952,Consumer Issues,Consumer Issues +272951,Consumer Issues,Consumer Issues +272949,Consumer Issues,Consumer Issues +269093,Consumer Issues,Consumer Issues +269091,Consumer Issues,Consumer Issues +269074,Consumer Issues,Consumer Issues +269070,Consumer Issues,Consumer Issues +263459,Consumer Issues,Consumer Issues +263458,Consumer Issues,Consumer Issues +263457,Consumer Issues,Consumer Issues +263456,Consumer Issues,Consumer Issues +263455,Consumer Issues,Consumer Issues +263454,Consumer Issues,Consumer Issues +263452,Consumer Issues,Consumer Issues +263451,Consumer Issues,Consumer Issues +263433,Consumer Issues,Consumer Issues +263432,Consumer Issues,Consumer Issues +263431,Consumer Issues,Consumer Issues +263430,Consumer Issues,Consumer Issues +258472,Consumer Issues,Consumer Issues +258470,Consumer Issues,Consumer Issues +258469,Consumer Issues,Consumer Issues +258454,Consumer Issues,Consumer Issues +258453,Consumer Issues,Consumer Issues +258451,Consumer Issues,Consumer Issues +258450,Consumer Issues,Consumer Issues +253393,Consumer Issues,Consumer Issues +253391,Consumer Issues,Consumer Issues +253390,Consumer Issues,Consumer Issues +249720,Consumer Issues,Consumer Issues +249718,Consumer Issues,Consumer Issues +249708,Consumer Issues,Consumer Issues +249690,Consumer Issues,Consumer Issues +249689,Consumer Issues,Consumer Issues +249685,Consumer Issues,Consumer Issues +249679,Consumer Issues,Consumer Issues +249653,Consumer Issues,Consumer Issues +249651,Consumer Issues,Consumer Issues +244819,Consumer Issues,Consumer Issues +244814,Consumer Issues,Consumer Issues +244805,Consumer Issues,Consumer Issues +244792,Consumer Issues,Consumer Issues +244787,Consumer Issues,Consumer Issues +240613,Consumer Issues,Consumer Issues +240612,Consumer Issues,Consumer Issues +240610,Consumer Issues,Consumer Issues +240609,Consumer Issues,Consumer Issues +240607,Consumer Issues,Consumer Issues +240606,Consumer Issues,Consumer Issues +240605,Consumer Issues,Consumer Issues +240603,Consumer Issues,Consumer Issues +240597,Consumer Issues,Consumer Issues +240595,Consumer Issues,Consumer Issues +236867,Consumer Issues,Consumer Issues +236866,Consumer Issues,Consumer Issues +236864,Consumer Issues,Consumer Issues +236860,Consumer Issues,Consumer Issues +233218,Consumer Issues,Consumer Issues +233215,Consumer Issues,Consumer Issues +233214,Consumer Issues,Consumer Issues +230238,Consumer Issues,Consumer Issues +230236,Consumer Issues,Consumer Issues +230235,Consumer Issues,Consumer Issues +230234,Consumer Issues,Consumer Issues +230233,Consumer Issues,Consumer Issues +230226,Consumer Issues,Consumer Issues +230222,Consumer Issues,Consumer Issues +230218,Consumer Issues,Consumer Issues +230215,Consumer Issues,Consumer Issues +227012,Consumer Issues,Consumer Issues +227007,Consumer Issues,Consumer Issues +227001,Consumer Issues,Consumer Issues +226997,Consumer Issues,Consumer Issues +226995,Consumer Issues,Consumer Issues +226994,Consumer Issues,Consumer Issues +226989,Consumer Issues,Consumer Issues +226972,Consumer Issues,Consumer Issues +226969,Consumer Issues,Consumer Issues +498139,Consumer Issues,Consumer Issues +498135,Consumer Issues,Consumer Issues +498130,Consumer Issues,Consumer Issues +498128,Consumer Issues,Consumer Issues +492908,Consumer Issues,Consumer Issues +492904,Consumer Issues,Consumer Issues +469903,Consumer Issues,Consumer Issues +466900,Consumer Issues,Consumer Issues +463924,Consumer Issues,Consumer Issues +463922,Consumer Issues,Consumer Issues +463920,Consumer Issues,Consumer Issues +463919,Consumer Issues,Consumer Issues +463917,Consumer Issues,Consumer Issues +463904,Consumer Issues,Consumer Issues +463901,Consumer Issues,Consumer Issues +463900,Consumer Issues,Consumer Issues +463899,Consumer Issues,Consumer Issues +454665,Consumer Issues,Consumer Issues +398772,Consumer Issues,Consumer Issues +398770,Consumer Issues,Consumer Issues +398746,Consumer Issues,Consumer Issues +398742,Consumer Issues,Consumer Issues +371568,Consumer Issues,Consumer Issues +371567,Consumer Issues,Consumer Issues +371562,Consumer Issues,Consumer Issues +368870,Consumer Issues,Consumer Issues +364996,Consumer Issues,Consumer Issues +357875,Consumer Issues,Consumer Issues +355845,Consumer Issues,Consumer Issues +355841,Consumer Issues,Consumer Issues +355839,Consumer Issues,Consumer Issues +353662,Consumer Issues,Consumer Issues +353659,Consumer Issues,Consumer Issues +351257,Consumer Issues,Consumer Issues +351253,Consumer Issues,Consumer Issues +348882,Consumer Issues,Consumer Issues +347109,Consumer Issues,Consumer Issues +338372,Consumer Issues,Consumer Issues +338367,Consumer Issues,Consumer Issues +335322,Consumer Issues,Consumer Issues +335319,Consumer Issues,Consumer Issues +333337,Consumer Issues,Consumer Issues +331287,Consumer Issues,Consumer Issues +331284,Consumer Issues,Consumer Issues +330097,Consumer Issues,Consumer Issues +327246,Consumer Issues,Consumer Issues +327244,Consumer Issues,Consumer Issues +327239,Consumer Issues,Consumer Issues +327237,Consumer Issues,Consumer Issues +327234,Consumer Issues,Consumer Issues +324675,Consumer Issues,Consumer Issues +324670,Consumer Issues,Consumer Issues +324668,Consumer Issues,Consumer Issues +324666,Consumer Issues,Consumer Issues +324665,Consumer Issues,Consumer Issues +324664,Consumer Issues,Consumer Issues +324663,Consumer Issues,Consumer Issues +321879,Consumer Issues,Consumer Issues +321875,Consumer Issues,Consumer Issues +321874,Consumer Issues,Consumer Issues +318801,Consumer Issues,Consumer Issues +318800,Consumer Issues,Consumer Issues +318798,Consumer Issues,Consumer Issues +317530,Consumer Issues,Consumer Issues +315760,Consumer Issues,Consumer Issues +315759,Consumer Issues,Consumer Issues +315758,Consumer Issues,Consumer Issues +315757,Consumer Issues,Consumer Issues +315756,Consumer Issues,Consumer Issues +507353,Employment and Training,Employment and Training +504396,Employment and Training,Employment and Training +236860,Employment and Training,Employment and Training +392288,Employment and Training,Employment and Training +519342,Employment and Training,Employment and Training +519339,Employment and Training,Employment and Training +519338,Employment and Training,Employment and Training +519336,Employment and Training,Employment and Training +517133,Employment and Training,Employment and Training +517128,Employment and Training,Employment and Training +515347,Employment and Training,Employment and Training +515346,Employment and Training,Employment and Training +513847,Employment and Training,Employment and Training +510003,Employment and Training,Employment and Training +510002,Employment and Training,Employment and Training +509996,Employment and Training,Employment and Training +509994,Employment and Training,Employment and Training +531347,Financial Institutions,Financial Institutions +531346,Financial Institutions,Financial Institutions +90093,Financial Institutions,Financial Institutions +84988,Financial Institutions,Financial Institutions +84986,Financial Institutions,Financial Institutions +84982,Financial Institutions,Financial Institutions +84858,Financial Institutions,Financial Institutions +80216,Financial Institutions,Financial Institutions +80215,Financial Institutions,Financial Institutions +76708,Financial Institutions,Financial Institutions +76707,Financial Institutions,Financial Institutions +76706,Financial Institutions,Financial Institutions +128258,Financial Institutions,Financial Institutions +128255,Financial Institutions,Financial Institutions +128254,Financial Institutions,Financial Institutions +128252,Financial Institutions,Financial Institutions +128249,Financial Institutions,Financial Institutions +128240,Financial Institutions,Financial Institutions +124603,Financial Institutions,Financial Institutions +124602,Financial Institutions,Financial Institutions +124601,Financial Institutions,Financial Institutions +124594,Financial Institutions,Financial Institutions +124574,Financial Institutions,Financial Institutions +120414,Financial Institutions,Financial Institutions +119555,Financial Institutions,Financial Institutions +116874,Financial Institutions,Financial Institutions +112916,Financial Institutions,Financial Institutions +112897,Financial Institutions,Financial Institutions +112896,Financial Institutions,Financial Institutions +109258,Financial Institutions,Financial Institutions +103935,Financial Institutions,Financial Institutions +103934,Financial Institutions,Financial Institutions +100804,Financial Institutions,Financial Institutions +100802,Financial Institutions,Financial Institutions +100795,Financial Institutions,Financial Institutions +93243,Financial Institutions,Financial Institutions +93238,Financial Institutions,Financial Institutions +93236,Financial Institutions,Financial Institutions +90119,Financial Institutions,Financial Institutions +168015,Financial Institutions,Financial Institutions +168010,Financial Institutions,Financial Institutions +168008,Financial Institutions,Financial Institutions +168007,Financial Institutions,Financial Institutions +168004,Financial Institutions,Financial Institutions +168002,Financial Institutions,Financial Institutions +168001,Financial Institutions,Financial Institutions +168000,Financial Institutions,Financial Institutions +167998,Financial Institutions,Financial Institutions +165597,Financial Institutions,Financial Institutions +163787,Financial Institutions,Financial Institutions +163786,Financial Institutions,Financial Institutions +163784,Financial Institutions,Financial Institutions +163782,Financial Institutions,Financial Institutions +163781,Financial Institutions,Financial Institutions +161720,Financial Institutions,Financial Institutions +161718,Financial Institutions,Financial Institutions +161717,Financial Institutions,Financial Institutions +161714,Financial Institutions,Financial Institutions +161713,Financial Institutions,Financial Institutions +161710,Financial Institutions,Financial Institutions +161706,Financial Institutions,Financial Institutions +161264,Financial Institutions,Financial Institutions +159156,Financial Institutions,Financial Institutions +159154,Financial Institutions,Financial Institutions +159153,Financial Institutions,Financial Institutions +159151,Financial Institutions,Financial Institutions +159150,Financial Institutions,Financial Institutions +159149,Financial Institutions,Financial Institutions +159144,Financial Institutions,Financial Institutions +157438,Financial Institutions,Financial Institutions +157437,Financial Institutions,Financial Institutions +157436,Financial Institutions,Financial Institutions +157435,Financial Institutions,Financial Institutions +155852,Financial Institutions,Financial Institutions +154426,Financial Institutions,Financial Institutions +153205,Financial Institutions,Financial Institutions +152004,Financial Institutions,Financial Institutions +152002,Financial Institutions,Financial Institutions +151997,Financial Institutions,Financial Institutions +150239,Financial Institutions,Financial Institutions +150234,Financial Institutions,Financial Institutions +148107,Financial Institutions,Financial Institutions +148106,Financial Institutions,Financial Institutions +148105,Financial Institutions,Financial Institutions +145859,Financial Institutions,Financial Institutions +145843,Financial Institutions,Financial Institutions +145842,Financial Institutions,Financial Institutions +145836,Financial Institutions,Financial Institutions +142524,Financial Institutions,Financial Institutions +142520,Financial Institutions,Financial Institutions +138695,Financial Institutions,Financial Institutions +138686,Financial Institutions,Financial Institutions +135598,Financial Institutions,Financial Institutions +135597,Financial Institutions,Financial Institutions +132342,Financial Institutions,Financial Institutions +132340,Financial Institutions,Financial Institutions +132338,Financial Institutions,Financial Institutions +132337,Financial Institutions,Financial Institutions +226999,Financial Institutions,Financial Institutions +226997,Financial Institutions,Financial Institutions +226995,Financial Institutions,Financial Institutions +226994,Financial Institutions,Financial Institutions +226989,Financial Institutions,Financial Institutions +226972,Financial Institutions,Financial Institutions +226969,Financial Institutions,Financial Institutions +226955,Financial Institutions,Financial Institutions +223067,Financial Institutions,Financial Institutions +223066,Financial Institutions,Financial Institutions +223065,Financial Institutions,Financial Institutions +223063,Financial Institutions,Financial Institutions +223062,Financial Institutions,Financial Institutions +223061,Financial Institutions,Financial Institutions +223060,Financial Institutions,Financial Institutions +223059,Financial Institutions,Financial Institutions +223058,Financial Institutions,Financial Institutions +223055,Financial Institutions,Financial Institutions +223054,Financial Institutions,Financial Institutions +223053,Financial Institutions,Financial Institutions +223052,Financial Institutions,Financial Institutions +223051,Financial Institutions,Financial Institutions +216927,Financial Institutions,Financial Institutions +216907,Financial Institutions,Financial Institutions +216889,Financial Institutions,Financial Institutions +216888,Financial Institutions,Financial Institutions +216887,Financial Institutions,Financial Institutions +216868,Financial Institutions,Financial Institutions +216867,Financial Institutions,Financial Institutions +216849,Financial Institutions,Financial Institutions +216847,Financial Institutions,Financial Institutions +216809,Financial Institutions,Financial Institutions +216807,Financial Institutions,Financial Institutions +216789,Financial Institutions,Financial Institutions +216788,Financial Institutions,Financial Institutions +216787,Financial Institutions,Financial Institutions +216768,Financial Institutions,Financial Institutions +216767,Financial Institutions,Financial Institutions +216748,Financial Institutions,Financial Institutions +211789,Financial Institutions,Financial Institutions +211784,Financial Institutions,Financial Institutions +211780,Financial Institutions,Financial Institutions +211778,Financial Institutions,Financial Institutions +211777,Financial Institutions,Financial Institutions +211776,Financial Institutions,Financial Institutions +211774,Financial Institutions,Financial Institutions +211773,Financial Institutions,Financial Institutions +211772,Financial Institutions,Financial Institutions +206829,Financial Institutions,Financial Institutions +206828,Financial Institutions,Financial Institutions +206826,Financial Institutions,Financial Institutions +206825,Financial Institutions,Financial Institutions +206823,Financial Institutions,Financial Institutions +206822,Financial Institutions,Financial Institutions +206821,Financial Institutions,Financial Institutions +206820,Financial Institutions,Financial Institutions +206819,Financial Institutions,Financial Institutions +206817,Financial Institutions,Financial Institutions +206816,Financial Institutions,Financial Institutions +206814,Financial Institutions,Financial Institutions +206813,Financial Institutions,Financial Institutions +206812,Financial Institutions,Financial Institutions +202781,Financial Institutions,Financial Institutions +202777,Financial Institutions,Financial Institutions +202773,Financial Institutions,Financial Institutions +202760,Financial Institutions,Financial Institutions +202757,Financial Institutions,Financial Institutions +202756,Financial Institutions,Financial Institutions +202747,Financial Institutions,Financial Institutions +202743,Financial Institutions,Financial Institutions +199838,Financial Institutions,Financial Institutions +199832,Financial Institutions,Financial Institutions +199828,Financial Institutions,Financial Institutions +199824,Financial Institutions,Financial Institutions +199816,Financial Institutions,Financial Institutions +199800,Financial Institutions,Financial Institutions +199799,Financial Institutions,Financial Institutions +199797,Financial Institutions,Financial Institutions +193053,Financial Institutions,Financial Institutions +193052,Financial Institutions,Financial Institutions +193051,Financial Institutions,Financial Institutions +193050,Financial Institutions,Financial Institutions +193049,Financial Institutions,Financial Institutions +193048,Financial Institutions,Financial Institutions +193047,Financial Institutions,Financial Institutions +193044,Financial Institutions,Financial Institutions +193026,Financial Institutions,Financial Institutions +189081,Financial Institutions,Financial Institutions +189080,Financial Institutions,Financial Institutions +189079,Financial Institutions,Financial Institutions +189076,Financial Institutions,Financial Institutions +189075,Financial Institutions,Financial Institutions +189074,Financial Institutions,Financial Institutions +189068,Financial Institutions,Financial Institutions +189066,Financial Institutions,Financial Institutions +185307,Financial Institutions,Financial Institutions +185306,Financial Institutions,Financial Institutions +185305,Financial Institutions,Financial Institutions +185304,Financial Institutions,Financial Institutions +180124,Financial Institutions,Financial Institutions +180104,Financial Institutions,Financial Institutions +180084,Financial Institutions,Financial Institutions +180044,Financial Institutions,Financial Institutions +180024,Financial Institutions,Financial Institutions +180004,Financial Institutions,Financial Institutions +179984,Financial Institutions,Financial Institutions +179964,Financial Institutions,Financial Institutions +179944,Financial Institutions,Financial Institutions +179904,Financial Institutions,Financial Institutions +179885,Financial Institutions,Financial Institutions +179844,Financial Institutions,Financial Institutions +175177,Financial Institutions,Financial Institutions +175176,Financial Institutions,Financial Institutions +175172,Financial Institutions,Financial Institutions +175161,Financial Institutions,Financial Institutions +175159,Financial Institutions,Financial Institutions +175158,Financial Institutions,Financial Institutions +175155,Financial Institutions,Financial Institutions +173178,Financial Institutions,Financial Institutions +173176,Financial Institutions,Financial Institutions +173175,Financial Institutions,Financial Institutions +173173,Financial Institutions,Financial Institutions +172810,Financial Institutions,Financial Institutions +171829,Financial Institutions,Financial Institutions +170439,Financial Institutions,Financial Institutions +170438,Financial Institutions,Financial Institutions +170437,Financial Institutions,Financial Institutions +170436,Financial Institutions,Financial Institutions +170428,Financial Institutions,Financial Institutions +170427,Financial Institutions,Financial Institutions +170426,Financial Institutions,Financial Institutions +168048,Financial Institutions,Financial Institutions +168032,Financial Institutions,Financial Institutions +168030,Financial Institutions,Financial Institutions +168017,Financial Institutions,Financial Institutions +348878,Financial Institutions,Financial Institutions +347108,Financial Institutions,Financial Institutions +347106,Financial Institutions,Financial Institutions +347105,Financial Institutions,Financial Institutions +343608,Financial Institutions,Financial Institutions +343607,Financial Institutions,Financial Institutions +343605,Financial Institutions,Financial Institutions +343604,Financial Institutions,Financial Institutions +343603,Financial Institutions,Financial Institutions +340827,Financial Institutions,Financial Institutions +340824,Financial Institutions,Financial Institutions +340822,Financial Institutions,Financial Institutions +340820,Financial Institutions,Financial Institutions +340817,Financial Institutions,Financial Institutions +340812,Financial Institutions,Financial Institutions +340809,Financial Institutions,Financial Institutions +338374,Financial Institutions,Financial Institutions +338372,Financial Institutions,Financial Institutions +338371,Financial Institutions,Financial Institutions +338370,Financial Institutions,Financial Institutions +338369,Financial Institutions,Financial Institutions +338368,Financial Institutions,Financial Institutions +338367,Financial Institutions,Financial Institutions +338365,Financial Institutions,Financial Institutions +338362,Financial Institutions,Financial Institutions +335335,Financial Institutions,Financial Institutions +335332,Financial Institutions,Financial Institutions +335322,Financial Institutions,Financial Institutions +335319,Financial Institutions,Financial Institutions +335318,Financial Institutions,Financial Institutions +333337,Financial Institutions,Financial Institutions +333336,Financial Institutions,Financial Institutions +333335,Financial Institutions,Financial Institutions +333334,Financial Institutions,Financial Institutions +331290,Financial Institutions,Financial Institutions +331289,Financial Institutions,Financial Institutions +331288,Financial Institutions,Financial Institutions +331287,Financial Institutions,Financial Institutions +331286,Financial Institutions,Financial Institutions +331284,Financial Institutions,Financial Institutions +330097,Financial Institutions,Financial Institutions +330094,Financial Institutions,Financial Institutions +330093,Financial Institutions,Financial Institutions +327246,Financial Institutions,Financial Institutions +327245,Financial Institutions,Financial Institutions +327244,Financial Institutions,Financial Institutions +327241,Financial Institutions,Financial Institutions +327239,Financial Institutions,Financial Institutions +327237,Financial Institutions,Financial Institutions +327234,Financial Institutions,Financial Institutions +324684,Financial Institutions,Financial Institutions +324682,Financial Institutions,Financial Institutions +324675,Financial Institutions,Financial Institutions +324671,Financial Institutions,Financial Institutions +324670,Financial Institutions,Financial Institutions +324668,Financial Institutions,Financial Institutions +324667,Financial Institutions,Financial Institutions +324666,Financial Institutions,Financial Institutions +324665,Financial Institutions,Financial Institutions +324664,Financial Institutions,Financial Institutions +324663,Financial Institutions,Financial Institutions +321879,Financial Institutions,Financial Institutions +321878,Financial Institutions,Financial Institutions +321877,Financial Institutions,Financial Institutions +321875,Financial Institutions,Financial Institutions +321874,Financial Institutions,Financial Institutions +321872,Financial Institutions,Financial Institutions +321871,Financial Institutions,Financial Institutions +318801,Financial Institutions,Financial Institutions +318800,Financial Institutions,Financial Institutions +318798,Financial Institutions,Financial Institutions +317530,Financial Institutions,Financial Institutions +315762,Financial Institutions,Financial Institutions +315760,Financial Institutions,Financial Institutions +315759,Financial Institutions,Financial Institutions +315758,Financial Institutions,Financial Institutions +315755,Financial Institutions,Financial Institutions +315752,Financial Institutions,Financial Institutions +315751,Financial Institutions,Financial Institutions +315750,Financial Institutions,Financial Institutions +312937,Financial Institutions,Financial Institutions +312936,Financial Institutions,Financial Institutions +312935,Financial Institutions,Financial Institutions +312934,Financial Institutions,Financial Institutions +312932,Financial Institutions,Financial Institutions +312931,Financial Institutions,Financial Institutions +312930,Financial Institutions,Financial Institutions +312928,Financial Institutions,Financial Institutions +312926,Financial Institutions,Financial Institutions +312923,Financial Institutions,Financial Institutions +312920,Financial Institutions,Financial Institutions +312916,Financial Institutions,Financial Institutions +312915,Financial Institutions,Financial Institutions +312913,Financial Institutions,Financial Institutions +312912,Financial Institutions,Financial Institutions +312911,Financial Institutions,Financial Institutions +309962,Financial Institutions,Financial Institutions +309961,Financial Institutions,Financial Institutions +309958,Financial Institutions,Financial Institutions +309957,Financial Institutions,Financial Institutions +309956,Financial Institutions,Financial Institutions +309949,Financial Institutions,Financial Institutions +309947,Financial Institutions,Financial Institutions +309945,Financial Institutions,Financial Institutions +303377,Financial Institutions,Financial Institutions +303375,Financial Institutions,Financial Institutions +303374,Financial Institutions,Financial Institutions +303373,Financial Institutions,Financial Institutions +303371,Financial Institutions,Financial Institutions +303370,Financial Institutions,Financial Institutions +303369,Financial Institutions,Financial Institutions +303361,Financial Institutions,Financial Institutions +303351,Financial Institutions,Financial Institutions +296134,Financial Institutions,Financial Institutions +296133,Financial Institutions,Financial Institutions +296129,Financial Institutions,Financial Institutions +296116,Financial Institutions,Financial Institutions +296115,Financial Institutions,Financial Institutions +296114,Financial Institutions,Financial Institutions +296113,Financial Institutions,Financial Institutions +296112,Financial Institutions,Financial Institutions +296110,Financial Institutions,Financial Institutions +291057,Financial Institutions,Financial Institutions +291055,Financial Institutions,Financial Institutions +291053,Financial Institutions,Financial Institutions +291051,Financial Institutions,Financial Institutions +286333,Financial Institutions,Financial Institutions +286332,Financial Institutions,Financial Institutions +286331,Financial Institutions,Financial Institutions +281015,Financial Institutions,Financial Institutions +281014,Financial Institutions,Financial Institutions +277363,Financial Institutions,Financial Institutions +277360,Financial Institutions,Financial Institutions +277357,Financial Institutions,Financial Institutions +277356,Financial Institutions,Financial Institutions +277354,Financial Institutions,Financial Institutions +277351,Financial Institutions,Financial Institutions +277350,Financial Institutions,Financial Institutions +277349,Financial Institutions,Financial Institutions +277346,Financial Institutions,Financial Institutions +277343,Financial Institutions,Financial Institutions +272971,Financial Institutions,Financial Institutions +272970,Financial Institutions,Financial Institutions +272969,Financial Institutions,Financial Institutions +272957,Financial Institutions,Financial Institutions +272956,Financial Institutions,Financial Institutions +272954,Financial Institutions,Financial Institutions +272953,Financial Institutions,Financial Institutions +272952,Financial Institutions,Financial Institutions +272951,Financial Institutions,Financial Institutions +272949,Financial Institutions,Financial Institutions +269093,Financial Institutions,Financial Institutions +269091,Financial Institutions,Financial Institutions +269074,Financial Institutions,Financial Institutions +269070,Financial Institutions,Financial Institutions +263459,Financial Institutions,Financial Institutions +263458,Financial Institutions,Financial Institutions +263457,Financial Institutions,Financial Institutions +263456,Financial Institutions,Financial Institutions +263455,Financial Institutions,Financial Institutions +263454,Financial Institutions,Financial Institutions +263453,Financial Institutions,Financial Institutions +263452,Financial Institutions,Financial Institutions +263451,Financial Institutions,Financial Institutions +263433,Financial Institutions,Financial Institutions +263432,Financial Institutions,Financial Institutions +263431,Financial Institutions,Financial Institutions +263430,Financial Institutions,Financial Institutions +258472,Financial Institutions,Financial Institutions +258470,Financial Institutions,Financial Institutions +258469,Financial Institutions,Financial Institutions +258454,Financial Institutions,Financial Institutions +258453,Financial Institutions,Financial Institutions +258451,Financial Institutions,Financial Institutions +258450,Financial Institutions,Financial Institutions +253393,Financial Institutions,Financial Institutions +253392,Financial Institutions,Financial Institutions +253391,Financial Institutions,Financial Institutions +253390,Financial Institutions,Financial Institutions +253389,Financial Institutions,Financial Institutions +249720,Financial Institutions,Financial Institutions +249718,Financial Institutions,Financial Institutions +249716,Financial Institutions,Financial Institutions +249714,Financial Institutions,Financial Institutions +249712,Financial Institutions,Financial Institutions +249710,Financial Institutions,Financial Institutions +249708,Financial Institutions,Financial Institutions +249705,Financial Institutions,Financial Institutions +249703,Financial Institutions,Financial Institutions +249702,Financial Institutions,Financial Institutions +249698,Financial Institutions,Financial Institutions +249693,Financial Institutions,Financial Institutions +249692,Financial Institutions,Financial Institutions +249690,Financial Institutions,Financial Institutions +249689,Financial Institutions,Financial Institutions +249688,Financial Institutions,Financial Institutions +249687,Financial Institutions,Financial Institutions +249686,Financial Institutions,Financial Institutions +249685,Financial Institutions,Financial Institutions +249683,Financial Institutions,Financial Institutions +249679,Financial Institutions,Financial Institutions +249667,Financial Institutions,Financial Institutions +249666,Financial Institutions,Financial Institutions +249665,Financial Institutions,Financial Institutions +249664,Financial Institutions,Financial Institutions +249663,Financial Institutions,Financial Institutions +249661,Financial Institutions,Financial Institutions +249658,Financial Institutions,Financial Institutions +249657,Financial Institutions,Financial Institutions +249655,Financial Institutions,Financial Institutions +249653,Financial Institutions,Financial Institutions +249651,Financial Institutions,Financial Institutions +244823,Financial Institutions,Financial Institutions +244821,Financial Institutions,Financial Institutions +244819,Financial Institutions,Financial Institutions +244816,Financial Institutions,Financial Institutions +244815,Financial Institutions,Financial Institutions +244811,Financial Institutions,Financial Institutions +244808,Financial Institutions,Financial Institutions +244805,Financial Institutions,Financial Institutions +244803,Financial Institutions,Financial Institutions +244797,Financial Institutions,Financial Institutions +244792,Financial Institutions,Financial Institutions +244787,Financial Institutions,Financial Institutions +244781,Financial Institutions,Financial Institutions +240613,Financial Institutions,Financial Institutions +240612,Financial Institutions,Financial Institutions +240609,Financial Institutions,Financial Institutions +240607,Financial Institutions,Financial Institutions +240606,Financial Institutions,Financial Institutions +240605,Financial Institutions,Financial Institutions +240604,Financial Institutions,Financial Institutions +240603,Financial Institutions,Financial Institutions +240598,Financial Institutions,Financial Institutions +240596,Financial Institutions,Financial Institutions +240595,Financial Institutions,Financial Institutions +240594,Financial Institutions,Financial Institutions +240593,Financial Institutions,Financial Institutions +236867,Financial Institutions,Financial Institutions +236866,Financial Institutions,Financial Institutions +236864,Financial Institutions,Financial Institutions +236862,Financial Institutions,Financial Institutions +236861,Financial Institutions,Financial Institutions +236860,Financial Institutions,Financial Institutions +233218,Financial Institutions,Financial Institutions +233217,Financial Institutions,Financial Institutions +233215,Financial Institutions,Financial Institutions +233213,Financial Institutions,Financial Institutions +233212,Financial Institutions,Financial Institutions +230238,Financial Institutions,Financial Institutions +230236,Financial Institutions,Financial Institutions +230235,Financial Institutions,Financial Institutions +230234,Financial Institutions,Financial Institutions +230233,Financial Institutions,Financial Institutions +230226,Financial Institutions,Financial Institutions +230223,Financial Institutions,Financial Institutions +230222,Financial Institutions,Financial Institutions +230218,Financial Institutions,Financial Institutions +230215,Financial Institutions,Financial Institutions +227012,Financial Institutions,Financial Institutions +227010,Financial Institutions,Financial Institutions +227005,Financial Institutions,Financial Institutions +227001,Financial Institutions,Financial Institutions +227000,Financial Institutions,Financial Institutions +531345,Financial Institutions,Financial Institutions +528477,Financial Institutions,Financial Institutions +528470,Financial Institutions,Financial Institutions +528467,Financial Institutions,Financial Institutions +528462,Financial Institutions,Financial Institutions +528457,Financial Institutions,Financial Institutions +528450,Financial Institutions,Financial Institutions +525934,Financial Institutions,Financial Institutions +522222,Financial Institutions,Financial Institutions +522217,Financial Institutions,Financial Institutions +522214,Financial Institutions,Financial Institutions +522212,Financial Institutions,Financial Institutions +522210,Financial Institutions,Financial Institutions +519340,Financial Institutions,Financial Institutions +519334,Financial Institutions,Financial Institutions +517132,Financial Institutions,Financial Institutions +517131,Financial Institutions,Financial Institutions +517130,Financial Institutions,Financial Institutions +515351,Financial Institutions,Financial Institutions +515349,Financial Institutions,Financial Institutions +515348,Financial Institutions,Financial Institutions +514601,Financial Institutions,Financial Institutions +514600,Financial Institutions,Financial Institutions +513849,Financial Institutions,Financial Institutions +513848,Financial Institutions,Financial Institutions +512393,Financial Institutions,Financial Institutions +512392,Financial Institutions,Financial Institutions +510001,Financial Institutions,Financial Institutions +509998,Financial Institutions,Financial Institutions +509995,Financial Institutions,Financial Institutions +507366,Financial Institutions,Financial Institutions +507365,Financial Institutions,Financial Institutions +507364,Financial Institutions,Financial Institutions +507362,Financial Institutions,Financial Institutions +507360,Financial Institutions,Financial Institutions +507358,Financial Institutions,Financial Institutions +507357,Financial Institutions,Financial Institutions +507355,Financial Institutions,Financial Institutions +507354,Financial Institutions,Financial Institutions +507352,Financial Institutions,Financial Institutions +504397,Financial Institutions,Financial Institutions +504394,Financial Institutions,Financial Institutions +504393,Financial Institutions,Financial Institutions +504392,Financial Institutions,Financial Institutions +504391,Financial Institutions,Financial Institutions +501566,Financial Institutions,Financial Institutions +501565,Financial Institutions,Financial Institutions +501563,Financial Institutions,Financial Institutions +501562,Financial Institutions,Financial Institutions +498140,Financial Institutions,Financial Institutions +498139,Financial Institutions,Financial Institutions +498138,Financial Institutions,Financial Institutions +498135,Financial Institutions,Financial Institutions +498132,Financial Institutions,Financial Institutions +498130,Financial Institutions,Financial Institutions +498128,Financial Institutions,Financial Institutions +495390,Financial Institutions,Financial Institutions +495388,Financial Institutions,Financial Institutions +492912,Financial Institutions,Financial Institutions +492911,Financial Institutions,Financial Institutions +492908,Financial Institutions,Financial Institutions +492907,Financial Institutions,Financial Institutions +489844,Financial Institutions,Financial Institutions +489843,Financial Institutions,Financial Institutions +487636,Financial Institutions,Financial Institutions +487635,Financial Institutions,Financial Institutions +487633,Financial Institutions,Financial Institutions +487632,Financial Institutions,Financial Institutions +487629,Financial Institutions,Financial Institutions +487628,Financial Institutions,Financial Institutions +487627,Financial Institutions,Financial Institutions +487625,Financial Institutions,Financial Institutions +484242,Financial Institutions,Financial Institutions +484241,Financial Institutions,Financial Institutions +484239,Financial Institutions,Financial Institutions +484238,Financial Institutions,Financial Institutions +481667,Financial Institutions,Financial Institutions +481666,Financial Institutions,Financial Institutions +476871,Financial Institutions,Financial Institutions +476870,Financial Institutions,Financial Institutions +476869,Financial Institutions,Financial Institutions +474902,Financial Institutions,Financial Institutions +474901,Financial Institutions,Financial Institutions +472510,Financial Institutions,Financial Institutions +472509,Financial Institutions,Financial Institutions +472507,Financial Institutions,Financial Institutions +472505,Financial Institutions,Financial Institutions +472503,Financial Institutions,Financial Institutions +472499,Financial Institutions,Financial Institutions +472498,Financial Institutions,Financial Institutions +472496,Financial Institutions,Financial Institutions +472491,Financial Institutions,Financial Institutions +472486,Financial Institutions,Financial Institutions +472484,Financial Institutions,Financial Institutions +469972,Financial Institutions,Financial Institutions +469967,Financial Institutions,Financial Institutions +469959,Financial Institutions,Financial Institutions +469954,Financial Institutions,Financial Institutions +469952,Financial Institutions,Financial Institutions +469950,Financial Institutions,Financial Institutions +469948,Financial Institutions,Financial Institutions +469918,Financial Institutions,Financial Institutions +469914,Financial Institutions,Financial Institutions +469912,Financial Institutions,Financial Institutions +469908,Financial Institutions,Financial Institutions +469906,Financial Institutions,Financial Institutions +469904,Financial Institutions,Financial Institutions +469903,Financial Institutions,Financial Institutions +467504,Financial Institutions,Financial Institutions +466921,Financial Institutions,Financial Institutions +466920,Financial Institutions,Financial Institutions +466919,Financial Institutions,Financial Institutions +466918,Financial Institutions,Financial Institutions +466916,Financial Institutions,Financial Institutions +466915,Financial Institutions,Financial Institutions +466911,Financial Institutions,Financial Institutions +466910,Financial Institutions,Financial Institutions +466901,Financial Institutions,Financial Institutions +466900,Financial Institutions,Financial Institutions +466899,Financial Institutions,Financial Institutions +466895,Financial Institutions,Financial Institutions +466892,Financial Institutions,Financial Institutions +463924,Financial Institutions,Financial Institutions +463923,Financial Institutions,Financial Institutions +463922,Financial Institutions,Financial Institutions +463920,Financial Institutions,Financial Institutions +463919,Financial Institutions,Financial Institutions +463917,Financial Institutions,Financial Institutions +463904,Financial Institutions,Financial Institutions +463901,Financial Institutions,Financial Institutions +463900,Financial Institutions,Financial Institutions +463899,Financial Institutions,Financial Institutions +461462,Financial Institutions,Financial Institutions +461460,Financial Institutions,Financial Institutions +460047,Financial Institutions,Financial Institutions +458563,Financial Institutions,Financial Institutions +458562,Financial Institutions,Financial Institutions +457065,Financial Institutions,Financial Institutions +457064,Financial Institutions,Financial Institutions +457063,Financial Institutions,Financial Institutions +457062,Financial Institutions,Financial Institutions +457061,Financial Institutions,Financial Institutions +457060,Financial Institutions,Financial Institutions +454665,Financial Institutions,Financial Institutions +454664,Financial Institutions,Financial Institutions +454662,Financial Institutions,Financial Institutions +454661,Financial Institutions,Financial Institutions +454660,Financial Institutions,Financial Institutions +454655,Financial Institutions,Financial Institutions +451679,Financial Institutions,Financial Institutions +451678,Financial Institutions,Financial Institutions +451677,Financial Institutions,Financial Institutions +449509,Financial Institutions,Financial Institutions +449504,Financial Institutions,Financial Institutions +449503,Financial Institutions,Financial Institutions +447392,Financial Institutions,Financial Institutions +447391,Financial Institutions,Financial Institutions +447389,Financial Institutions,Financial Institutions +445159,Financial Institutions,Financial Institutions +445158,Financial Institutions,Financial Institutions +445157,Financial Institutions,Financial Institutions +445156,Financial Institutions,Financial Institutions +445155,Financial Institutions,Financial Institutions +441532,Financial Institutions,Financial Institutions +441531,Financial Institutions,Financial Institutions +441529,Financial Institutions,Financial Institutions +441528,Financial Institutions,Financial Institutions +441527,Financial Institutions,Financial Institutions +441526,Financial Institutions,Financial Institutions +441525,Financial Institutions,Financial Institutions +441524,Financial Institutions,Financial Institutions +441522,Financial Institutions,Financial Institutions +441519,Financial Institutions,Financial Institutions +441518,Financial Institutions,Financial Institutions +438067,Financial Institutions,Financial Institutions +438064,Financial Institutions,Financial Institutions +438062,Financial Institutions,Financial Institutions +438061,Financial Institutions,Financial Institutions +438060,Financial Institutions,Financial Institutions +438059,Financial Institutions,Financial Institutions +438058,Financial Institutions,Financial Institutions +435000,Financial Institutions,Financial Institutions +434998,Financial Institutions,Financial Institutions +434997,Financial Institutions,Financial Institutions +434995,Financial Institutions,Financial Institutions +434994,Financial Institutions,Financial Institutions +434992,Financial Institutions,Financial Institutions +434990,Financial Institutions,Financial Institutions +433403,Financial Institutions,Financial Institutions +433402,Financial Institutions,Financial Institutions +432207,Financial Institutions,Financial Institutions +432205,Financial Institutions,Financial Institutions +430390,Financial Institutions,Financial Institutions +430388,Financial Institutions,Financial Institutions +430386,Financial Institutions,Financial Institutions +430385,Financial Institutions,Financial Institutions +430383,Financial Institutions,Financial Institutions +428620,Financial Institutions,Financial Institutions +428617,Financial Institutions,Financial Institutions +428614,Financial Institutions,Financial Institutions +428613,Financial Institutions,Financial Institutions +428611,Financial Institutions,Financial Institutions +428610,Financial Institutions,Financial Institutions +428607,Financial Institutions,Financial Institutions +428606,Financial Institutions,Financial Institutions +428605,Financial Institutions,Financial Institutions +428603,Financial Institutions,Financial Institutions +428600,Financial Institutions,Financial Institutions +428597,Financial Institutions,Financial Institutions +428594,Financial Institutions,Financial Institutions +428593,Financial Institutions,Financial Institutions +428592,Financial Institutions,Financial Institutions +428590,Financial Institutions,Financial Institutions +428588,Financial Institutions,Financial Institutions +428587,Financial Institutions,Financial Institutions +428585,Financial Institutions,Financial Institutions +428584,Financial Institutions,Financial Institutions +425938,Financial Institutions,Financial Institutions +425923,Financial Institutions,Financial Institutions +425920,Financial Institutions,Financial Institutions +425918,Financial Institutions,Financial Institutions +425914,Financial Institutions,Financial Institutions +425911,Financial Institutions,Financial Institutions +423437,Financial Institutions,Financial Institutions +423436,Financial Institutions,Financial Institutions +423435,Financial Institutions,Financial Institutions +421413,Financial Institutions,Financial Institutions +421412,Financial Institutions,Financial Institutions +421409,Financial Institutions,Financial Institutions +421406,Financial Institutions,Financial Institutions +421405,Financial Institutions,Financial Institutions +421403,Financial Institutions,Financial Institutions +421400,Financial Institutions,Financial Institutions +421398,Financial Institutions,Financial Institutions +421394,Financial Institutions,Financial Institutions +421393,Financial Institutions,Financial Institutions +421390,Financial Institutions,Financial Institutions +421389,Financial Institutions,Financial Institutions +419463,Financial Institutions,Financial Institutions +419462,Financial Institutions,Financial Institutions +419459,Financial Institutions,Financial Institutions +419455,Financial Institutions,Financial Institutions +419453,Financial Institutions,Financial Institutions +419452,Financial Institutions,Financial Institutions +415669,Financial Institutions,Financial Institutions +415668,Financial Institutions,Financial Institutions +415667,Financial Institutions,Financial Institutions +415666,Financial Institutions,Financial Institutions +415665,Financial Institutions,Financial Institutions +411811,Financial Institutions,Financial Institutions +411810,Financial Institutions,Financial Institutions +411809,Financial Institutions,Financial Institutions +411808,Financial Institutions,Financial Institutions +411807,Financial Institutions,Financial Institutions +411805,Financial Institutions,Financial Institutions +409299,Financial Institutions,Financial Institutions +409296,Financial Institutions,Financial Institutions +409293,Financial Institutions,Financial Institutions +409286,Financial Institutions,Financial Institutions +409285,Financial Institutions,Financial Institutions +409284,Financial Institutions,Financial Institutions +409281,Financial Institutions,Financial Institutions +409280,Financial Institutions,Financial Institutions +409279,Financial Institutions,Financial Institutions +407739,Financial Institutions,Financial Institutions +407734,Financial Institutions,Financial Institutions +406569,Financial Institutions,Financial Institutions +406568,Financial Institutions,Financial Institutions +406567,Financial Institutions,Financial Institutions +405025,Financial Institutions,Financial Institutions +405021,Financial Institutions,Financial Institutions +405019,Financial Institutions,Financial Institutions +405016,Financial Institutions,Financial Institutions +405014,Financial Institutions,Financial Institutions +402882,Financial Institutions,Financial Institutions +402880,Financial Institutions,Financial Institutions +402878,Financial Institutions,Financial Institutions +402877,Financial Institutions,Financial Institutions +402870,Financial Institutions,Financial Institutions +402868,Financial Institutions,Financial Institutions +402865,Financial Institutions,Financial Institutions +402856,Financial Institutions,Financial Institutions +402840,Financial Institutions,Financial Institutions +400162,Financial Institutions,Financial Institutions +400160,Financial Institutions,Financial Institutions +400157,Financial Institutions,Financial Institutions +400154,Financial Institutions,Financial Institutions +400153,Financial Institutions,Financial Institutions +400148,Financial Institutions,Financial Institutions +400142,Financial Institutions,Financial Institutions +400140,Financial Institutions,Financial Institutions +400135,Financial Institutions,Financial Institutions +400134,Financial Institutions,Financial Institutions +400130,Financial Institutions,Financial Institutions +400129,Financial Institutions,Financial Institutions +400128,Financial Institutions,Financial Institutions +398778,Financial Institutions,Financial Institutions +398776,Financial Institutions,Financial Institutions +398773,Financial Institutions,Financial Institutions +398772,Financial Institutions,Financial Institutions +398770,Financial Institutions,Financial Institutions +398768,Financial Institutions,Financial Institutions +398760,Financial Institutions,Financial Institutions +398758,Financial Institutions,Financial Institutions +398746,Financial Institutions,Financial Institutions +398742,Financial Institutions,Financial Institutions +398736,Financial Institutions,Financial Institutions +395655,Financial Institutions,Financial Institutions +395653,Financial Institutions,Financial Institutions +395652,Financial Institutions,Financial Institutions +395651,Financial Institutions,Financial Institutions +395640,Financial Institutions,Financial Institutions +395637,Financial Institutions,Financial Institutions +395635,Financial Institutions,Financial Institutions +393727,Financial Institutions,Financial Institutions +393725,Financial Institutions,Financial Institutions +393721,Financial Institutions,Financial Institutions +392300,Financial Institutions,Financial Institutions +392299,Financial Institutions,Financial Institutions +392298,Financial Institutions,Financial Institutions +392297,Financial Institutions,Financial Institutions +392295,Financial Institutions,Financial Institutions +392294,Financial Institutions,Financial Institutions +392291,Financial Institutions,Financial Institutions +392290,Financial Institutions,Financial Institutions +392289,Financial Institutions,Financial Institutions +390014,Financial Institutions,Financial Institutions +390013,Financial Institutions,Financial Institutions +390012,Financial Institutions,Financial Institutions +390011,Financial Institutions,Financial Institutions +390006,Financial Institutions,Financial Institutions +390002,Financial Institutions,Financial Institutions +389999,Financial Institutions,Financial Institutions +389998,Financial Institutions,Financial Institutions +387174,Financial Institutions,Financial Institutions +387173,Financial Institutions,Financial Institutions +387171,Financial Institutions,Financial Institutions +387168,Financial Institutions,Financial Institutions +384983,Financial Institutions,Financial Institutions +384981,Financial Institutions,Financial Institutions +384979,Financial Institutions,Financial Institutions +384977,Financial Institutions,Financial Institutions +384976,Financial Institutions,Financial Institutions +384975,Financial Institutions,Financial Institutions +384974,Financial Institutions,Financial Institutions +384972,Financial Institutions,Financial Institutions +384971,Financial Institutions,Financial Institutions +384970,Financial Institutions,Financial Institutions +384965,Financial Institutions,Financial Institutions +383394,Financial Institutions,Financial Institutions +383387,Financial Institutions,Financial Institutions +383386,Financial Institutions,Financial Institutions +383380,Financial Institutions,Financial Institutions +383377,Financial Institutions,Financial Institutions +383374,Financial Institutions,Financial Institutions +381132,Financial Institutions,Financial Institutions +381131,Financial Institutions,Financial Institutions +381130,Financial Institutions,Financial Institutions +381129,Financial Institutions,Financial Institutions +381127,Financial Institutions,Financial Institutions +381125,Financial Institutions,Financial Institutions +378566,Financial Institutions,Financial Institutions +378564,Financial Institutions,Financial Institutions +378562,Financial Institutions,Financial Institutions +378561,Financial Institutions,Financial Institutions +378559,Financial Institutions,Financial Institutions +378558,Financial Institutions,Financial Institutions +378557,Financial Institutions,Financial Institutions +378555,Financial Institutions,Financial Institutions +378554,Financial Institutions,Financial Institutions +378553,Financial Institutions,Financial Institutions +378552,Financial Institutions,Financial Institutions +378551,Financial Institutions,Financial Institutions +378542,Financial Institutions,Financial Institutions +378536,Financial Institutions,Financial Institutions +378535,Financial Institutions,Financial Institutions +376351,Financial Institutions,Financial Institutions +376350,Financial Institutions,Financial Institutions +376349,Financial Institutions,Financial Institutions +376345,Financial Institutions,Financial Institutions +376344,Financial Institutions,Financial Institutions +376342,Financial Institutions,Financial Institutions +376340,Financial Institutions,Financial Institutions +376338,Financial Institutions,Financial Institutions +376337,Financial Institutions,Financial Institutions +376333,Financial Institutions,Financial Institutions +376320,Financial Institutions,Financial Institutions +374067,Financial Institutions,Financial Institutions +374062,Financial Institutions,Financial Institutions +374059,Financial Institutions,Financial Institutions +374058,Financial Institutions,Financial Institutions +374057,Financial Institutions,Financial Institutions +371574,Financial Institutions,Financial Institutions +371573,Financial Institutions,Financial Institutions +371570,Financial Institutions,Financial Institutions +371569,Financial Institutions,Financial Institutions +371568,Financial Institutions,Financial Institutions +371567,Financial Institutions,Financial Institutions +371566,Financial Institutions,Financial Institutions +371565,Financial Institutions,Financial Institutions +371564,Financial Institutions,Financial Institutions +371563,Financial Institutions,Financial Institutions +371562,Financial Institutions,Financial Institutions +371561,Financial Institutions,Financial Institutions +371559,Financial Institutions,Financial Institutions +368877,Financial Institutions,Financial Institutions +368875,Financial Institutions,Financial Institutions +368874,Financial Institutions,Financial Institutions +368871,Financial Institutions,Financial Institutions +368870,Financial Institutions,Financial Institutions +366528,Financial Institutions,Financial Institutions +365010,Financial Institutions,Financial Institutions +364990,Financial Institutions,Financial Institutions +364986,Financial Institutions,Financial Institutions +363454,Financial Institutions,Financial Institutions +363452,Financial Institutions,Financial Institutions +363449,Financial Institutions,Financial Institutions +362165,Financial Institutions,Financial Institutions +361067,Financial Institutions,Financial Institutions +361066,Financial Institutions,Financial Institutions +359586,Financial Institutions,Financial Institutions +357877,Financial Institutions,Financial Institutions +357874,Financial Institutions,Financial Institutions +357873,Financial Institutions,Financial Institutions +357872,Financial Institutions,Financial Institutions +355845,Financial Institutions,Financial Institutions +355842,Financial Institutions,Financial Institutions +355841,Financial Institutions,Financial Institutions +355839,Financial Institutions,Financial Institutions +353826,Financial Institutions,Financial Institutions +353666,Financial Institutions,Financial Institutions +353665,Financial Institutions,Financial Institutions +353662,Financial Institutions,Financial Institutions +353660,Financial Institutions,Financial Institutions +353659,Financial Institutions,Financial Institutions +353654,Financial Institutions,Financial Institutions +353653,Financial Institutions,Financial Institutions +351259,Financial Institutions,Financial Institutions +351257,Financial Institutions,Financial Institutions +351256,Financial Institutions,Financial Institutions +351253,Financial Institutions,Financial Institutions +351252,Financial Institutions,Financial Institutions +351248,Financial Institutions,Financial Institutions +348882,Financial Institutions,Financial Institutions +348881,Financial Institutions,Financial Institutions +543579,Financial Institutions,Financial Institutions +543578,Financial Institutions,Financial Institutions +543576,Financial Institutions,Financial Institutions +543574,Financial Institutions,Financial Institutions +543573,Financial Institutions,Financial Institutions +543572,Financial Institutions,Financial Institutions +541249,Financial Institutions,Financial Institutions +541248,Financial Institutions,Financial Institutions +541245,Financial Institutions,Financial Institutions +541244,Financial Institutions,Financial Institutions +541243,Financial Institutions,Financial Institutions +541242,Financial Institutions,Financial Institutions +541241,Financial Institutions,Financial Institutions +541240,Financial Institutions,Financial Institutions +539509,Financial Institutions,Financial Institutions +536804,Financial Institutions,Financial Institutions +536802,Financial Institutions,Financial Institutions +536800,Financial Institutions,Financial Institutions +536799,Financial Institutions,Financial Institutions +533743,Financial Institutions,Financial Institutions +533742,Financial Institutions,Financial Institutions +533741,Financial Institutions,Financial Institutions +533737,Financial Institutions,Financial Institutions +533736,Financial Institutions,Financial Institutions +531351,Financial Institutions,Financial Institutions +507361,Industry,Industry +145833,Industry,Industry +142518,Industry,Industry +142515,Industry,Industry +199799,Industry,Industry +193491,Industry,Industry +395637,International Trade,International Trade +531349,International Trade,International Trade +84858,International Trade,International Trade +185306,International Trade,International Trade +171829,International Trade,International Trade +324668,International Trade,International Trade +277360,International Trade,International Trade +272954,International Trade,International Trade +236866,International Trade,International Trade +441519,International Trade,International Trade +428592,International Trade,International Trade +428597,Justice and Law Enforcement,Justice and Law Enforcement +428587,Justice and Law Enforcement,Justice and Law Enforcement +150232,Justice and Law Enforcement,Justice and Law Enforcement +135598,Justice and Law Enforcement,Justice and Law Enforcement +132342,Justice and Law Enforcement,Justice and Law Enforcement +112895,Justice and Law Enforcement,Justice and Law Enforcement +97332,Justice and Law Enforcement,Justice and Law Enforcement +249653,Justice and Law Enforcement,Justice and Law Enforcement +244821,Justice and Law Enforcement,Justice and Law Enforcement +244817,Justice and Law Enforcement,Justice and Law Enforcement +244805,Justice and Law Enforcement,Justice and Law Enforcement +236864,Justice and Law Enforcement,Justice and Law Enforcement +233216,Justice and Law Enforcement,Justice and Law Enforcement +233214,Justice and Law Enforcement,Justice and Law Enforcement +216787,Justice and Law Enforcement,Justice and Law Enforcement +211784,Justice and Law Enforcement,Justice and Law Enforcement +202768,Justice and Law Enforcement,Justice and Law Enforcement +199846,Justice and Law Enforcement,Justice and Law Enforcement +193044,Justice and Law Enforcement,Justice and Law Enforcement +189078,Justice and Law Enforcement,Justice and Law Enforcement +189071,Justice and Law Enforcement,Justice and Law Enforcement +180064,Justice and Law Enforcement,Justice and Law Enforcement +180004,Justice and Law Enforcement,Justice and Law Enforcement +405025,Justice and Law Enforcement,Justice and Law Enforcement +405014,Justice and Law Enforcement,Justice and Law Enforcement +402877,Justice and Law Enforcement,Justice and Law Enforcement +402870,Justice and Law Enforcement,Justice and Law Enforcement +402840,Justice and Law Enforcement,Justice and Law Enforcement +400157,Justice and Law Enforcement,Justice and Law Enforcement +400135,Justice and Law Enforcement,Justice and Law Enforcement +400130,Justice and Law Enforcement,Justice and Law Enforcement +398778,Justice and Law Enforcement,Justice and Law Enforcement +398768,Justice and Law Enforcement,Justice and Law Enforcement +398758,Justice and Law Enforcement,Justice and Law Enforcement +395652,Justice and Law Enforcement,Justice and Law Enforcement +392291,Justice and Law Enforcement,Justice and Law Enforcement +392290,Justice and Law Enforcement,Justice and Law Enforcement +340809,Justice and Law Enforcement,Justice and Law Enforcement +333337,Justice and Law Enforcement,Justice and Law Enforcement +331284,Justice and Law Enforcement,Justice and Law Enforcement +327237,Justice and Law Enforcement,Justice and Law Enforcement +324671,Justice and Law Enforcement,Justice and Law Enforcement +324670,Justice and Law Enforcement,Justice and Law Enforcement +324663,Justice and Law Enforcement,Justice and Law Enforcement +321879,Justice and Law Enforcement,Justice and Law Enforcement +321875,Justice and Law Enforcement,Justice and Law Enforcement +321874,Justice and Law Enforcement,Justice and Law Enforcement +318802,Justice and Law Enforcement,Justice and Law Enforcement +318799,Justice and Law Enforcement,Justice and Law Enforcement +315757,Justice and Law Enforcement,Justice and Law Enforcement +315756,Justice and Law Enforcement,Justice and Law Enforcement +315754,Justice and Law Enforcement,Justice and Law Enforcement +312934,Justice and Law Enforcement,Justice and Law Enforcement +312931,Justice and Law Enforcement,Justice and Law Enforcement +312923,Justice and Law Enforcement,Justice and Law Enforcement +312913,Justice and Law Enforcement,Justice and Law Enforcement +309961,Justice and Law Enforcement,Justice and Law Enforcement +309956,Justice and Law Enforcement,Justice and Law Enforcement +309949,Justice and Law Enforcement,Justice and Law Enforcement +309945,Justice and Law Enforcement,Justice and Law Enforcement +303377,Justice and Law Enforcement,Justice and Law Enforcement +303373,Justice and Law Enforcement,Justice and Law Enforcement +303371,Justice and Law Enforcement,Justice and Law Enforcement +296134,Justice and Law Enforcement,Justice and Law Enforcement +296110,Justice and Law Enforcement,Justice and Law Enforcement +291055,Justice and Law Enforcement,Justice and Law Enforcement +291053,Justice and Law Enforcement,Justice and Law Enforcement +272956,Justice and Law Enforcement,Justice and Law Enforcement +272952,Justice and Law Enforcement,Justice and Law Enforcement +263455,Justice and Law Enforcement,Justice and Law Enforcement +263431,Justice and Law Enforcement,Justice and Law Enforcement +253391,Justice and Law Enforcement,Justice and Law Enforcement +249690,Justice and Law Enforcement,Justice and Law Enforcement +543578,Justice and Law Enforcement,Justice and Law Enforcement +543572,Justice and Law Enforcement,Justice and Law Enforcement +541249,Justice and Law Enforcement,Justice and Law Enforcement +536804,Justice and Law Enforcement,Justice and Law Enforcement +536799,Justice and Law Enforcement,Justice and Law Enforcement +533737,Justice and Law Enforcement,Justice and Law Enforcement +531347,Justice and Law Enforcement,Justice and Law Enforcement +531346,Justice and Law Enforcement,Justice and Law Enforcement +528467,Justice and Law Enforcement,Justice and Law Enforcement +528457,Justice and Law Enforcement,Justice and Law Enforcement +515349,Justice and Law Enforcement,Justice and Law Enforcement +509998,Justice and Law Enforcement,Justice and Law Enforcement +501562,Justice and Law Enforcement,Justice and Law Enforcement +495390,Justice and Law Enforcement,Justice and Law Enforcement +489844,Justice and Law Enforcement,Justice and Law Enforcement +484238,Justice and Law Enforcement,Justice and Law Enforcement +481666,Justice and Law Enforcement,Justice and Law Enforcement +476871,Justice and Law Enforcement,Justice and Law Enforcement +474901,Justice and Law Enforcement,Justice and Law Enforcement +463923,Justice and Law Enforcement,Justice and Law Enforcement +463920,Justice and Law Enforcement,Justice and Law Enforcement +461460,Justice and Law Enforcement,Justice and Law Enforcement +457065,Justice and Law Enforcement,Justice and Law Enforcement +457061,Justice and Law Enforcement,Justice and Law Enforcement +454661,Justice and Law Enforcement,Justice and Law Enforcement +441522,Justice and Law Enforcement,Justice and Law Enforcement +438060,Justice and Law Enforcement,Justice and Law Enforcement +435000,Justice and Law Enforcement,Justice and Law Enforcement +434998,Justice and Law Enforcement,Justice and Law Enforcement +434997,Justice and Law Enforcement,Justice and Law Enforcement +409283,Labour,Labour +406569,Labour,Labour +132341,Labour,Labour +112900,Labour,Labour +348880,Labour,Labour +296116,Labour,Labour +296114,Labour,Labour +230231,Labour,Labour +226957,Labour,Labour +398731,Labour,Labour +395655,Labour,Labour +395653,Labour,Labour +395651,Labour,Labour +392288,Labour,Labour +390009,Labour,Labour +382221,Labour,Labour +382220,Labour,Labour +381123,Labour,Labour +498231,Labour,Labour +489840,Labour,Labour +466921,Labour,Labour +466910,Labour,Labour +441525,Labour,Labour +438069,Labour,Labour +438062,Labour,Labour +434991,Labour,Labour +428592,Labour,Labour +528477,Small Business,Small Business +528462,Small Business,Small Business +90116,Small Business,Small Business +90102,Small Business,Small Business +87541,Small Business,Small Business +74854,Small Business,Small Business +135598,Small Business,Small Business +132342,Small Business,Small Business +103916,Small Business,Small Business +185305,Small Business,Small Business +161264,Small Business,Small Business +384975,Small Business,Small Business +376347,Small Business,Small Business +366530,Small Business,Small Business +335322,Small Business,Small Business +263459,Small Business,Small Business +263430,Small Business,Small Business +230223,Small Business,Small Business +498138,Small Business,Small Business +472509,Small Business,Small Business +472507,Small Business,Small Business +472503,Small Business,Small Business +472491,Small Business,Small Business +472486,Small Business,Small Business +469908,Small Business,Small Business +469906,Small Business,Small Business +466918,Small Business,Small Business +466899,Small Business,Small Business +441527,Small Business,Small Business +428590,Small Business,Small Business +398736,Small Business,Small Business +428592,Taxation and Finance,Taxation and Finance +428590,Taxation and Finance,Taxation and Finance +103915,Taxation and Finance,Taxation and Finance +100796,Taxation and Finance,Taxation and Finance +97343,Taxation and Finance,Taxation and Finance +93244,Taxation and Finance,Taxation and Finance +93241,Taxation and Finance,Taxation and Finance +93238,Taxation and Finance,Taxation and Finance +90094,Taxation and Finance,Taxation and Finance +87543,Taxation and Finance,Taxation and Finance +87536,Taxation and Finance,Taxation and Finance +84977,Taxation and Finance,Taxation and Finance +80218,Taxation and Finance,Taxation and Finance +76706,Taxation and Finance,Taxation and Finance +216768,Taxation and Finance,Taxation and Finance +206815,Taxation and Finance,Taxation and Finance +202760,Taxation and Finance,Taxation and Finance +189077,Taxation and Finance,Taxation and Finance +173178,Taxation and Finance,Taxation and Finance +168027,Taxation and Finance,Taxation and Finance +145847,Taxation and Finance,Taxation and Finance +145844,Taxation and Finance,Taxation and Finance +142522,Taxation and Finance,Taxation and Finance +142520,Taxation and Finance,Taxation and Finance +138699,Taxation and Finance,Taxation and Finance +138697,Taxation and Finance,Taxation and Finance +138686,Taxation and Finance,Taxation and Finance +135598,Taxation and Finance,Taxation and Finance +116876,Taxation and Finance,Taxation and Finance +409299,Taxation and Finance,Taxation and Finance +409284,Taxation and Finance,Taxation and Finance +402881,Taxation and Finance,Taxation and Finance +400140,Taxation and Finance,Taxation and Finance +384970,Taxation and Finance,Taxation and Finance +384969,Taxation and Finance,Taxation and Finance +384968,Taxation and Finance,Taxation and Finance +384962,Taxation and Finance,Taxation and Finance +383389,Taxation and Finance,Taxation and Finance +383382,Taxation and Finance,Taxation and Finance +378536,Taxation and Finance,Taxation and Finance +368870,Taxation and Finance,Taxation and Finance +362165,Taxation and Finance,Taxation and Finance +359587,Taxation and Finance,Taxation and Finance +353662,Taxation and Finance,Taxation and Finance +333334,Taxation and Finance,Taxation and Finance +321878,Taxation and Finance,Taxation and Finance +309958,Taxation and Finance,Taxation and Finance +272954,Taxation and Finance,Taxation and Finance +263451,Taxation and Finance,Taxation and Finance +240607,Taxation and Finance,Taxation and Finance +223056,Taxation and Finance,Taxation and Finance +543579,Taxation and Finance,Taxation and Finance +541242,Taxation and Finance,Taxation and Finance +536803,Taxation and Finance,Taxation and Finance +536799,Taxation and Finance,Taxation and Finance +536798,Taxation and Finance,Taxation and Finance +533775,Taxation and Finance,Taxation and Finance +533741,Taxation and Finance,Taxation and Finance +533738,Taxation and Finance,Taxation and Finance +533735,Taxation and Finance,Taxation and Finance +528477,Taxation and Finance,Taxation and Finance +528467,Taxation and Finance,Taxation and Finance +528462,Taxation and Finance,Taxation and Finance +528447,Taxation and Finance,Taxation and Finance +525934,Taxation and Finance,Taxation and Finance +522222,Taxation and Finance,Taxation and Finance +522214,Taxation and Finance,Taxation and Finance +517130,Taxation and Finance,Taxation and Finance +515350,Taxation and Finance,Taxation and Finance +514601,Taxation and Finance,Taxation and Finance +509997,Taxation and Finance,Taxation and Finance +498132,Taxation and Finance,Taxation and Finance +469906,Taxation and Finance,Taxation and Finance +458565,Taxation and Finance,Taxation and Finance +458564,Taxation and Finance,Taxation and Finance +451677,Taxation and Finance,Taxation and Finance +449508,Taxation and Finance,Taxation and Finance +434992,Taxation and Finance,Taxation and Finance +118254,Government Procurement,Government Procurement +221248,Government Procurement,Government Procurement +159005,Government Procurement,Government Procurement +159004,Government Procurement,Government Procurement +159001,Government Procurement,Government Procurement +159000,Government Procurement,Government Procurement +379501,Consumer Issues,Consumer Issues +379500,Consumer Issues,Consumer Issues +454526,Consumer Issues,Consumer Issues +429656,Consumer Issues,Consumer Issues +146178,Consumer Issues,Consumer Issues +212301,Consumer Issues,Consumer Issues +146178,Education,Education +212301,Industry,Industry +403029,Energy,Energy +522770,Energy,Energy +85341,Energy,Energy +85338,Energy,Energy +162245,Energy,Energy +162239,Energy,Energy +162229,Energy,Energy +159129,Energy,Energy +154641,Energy,Energy +152005,Energy,Energy +148260,Energy,Energy +148253,Energy,Energy +130154,Energy,Energy +245389,Energy,Energy +245371,Energy,Energy +245368,Energy,Energy +236951,Energy,Energy +236950,Energy,Energy +236949,Energy,Energy +194995,Energy,Energy +194991,Energy,Energy +450289,Energy,Energy +403040,Energy,Energy +403038,Energy,Energy +403037,Energy,Energy +403036,Energy,Energy +535411,Environment,Environment +535405,Environment,Environment +160314,Environment,Environment +160313,Environment,Environment +156923,Environment,Environment +138654,Environment,Environment +129615,Environment,Environment +121342,Environment,Environment +101186,Environment,Environment +245444,Environment,Environment +245366,Environment,Environment +245365,Environment,Environment +240591,Environment,Environment +212317,Environment,Environment +195301,Environment,Environment +194968,Environment,Environment +194931,Environment,Environment +189447,Environment,Environment +160316,Environment,Environment +383751,Environment,Environment +383561,Environment,Environment +383560,Environment,Environment +383559,Environment,Environment +383556,Environment,Environment +372564,Environment,Environment +330006,Environment,Environment +322214,Environment,Environment +304229,Environment,Environment +282871,Environment,Environment +525888,Environment,Environment +525886,Environment,Environment +522770,Environment,Environment +520511,Environment,Environment +520509,Environment,Environment +519567,Environment,Environment +513775,Environment,Environment +507890,Environment,Environment +507883,Environment,Environment +507877,Environment,Environment +505998,Environment,Environment +505997,Environment,Environment +505993,Environment,Environment +505988,Environment,Environment +505985,Environment,Environment +502094,Environment,Environment +499238,Environment,Environment +499231,Environment,Environment +490959,Environment,Environment +490956,Environment,Environment +488114,Environment,Environment +488113,Environment,Environment +488111,Environment,Environment +488109,Environment,Environment +488107,Environment,Environment +488105,Environment,Environment +488104,Environment,Environment +488067,Environment,Environment +477727,Environment,Environment +470320,Environment,Environment +452471,Environment,Environment +447456,Environment,Environment +439556,Environment,Environment +439554,Environment,Environment +424360,Environment,Environment +424354,Environment,Environment +424353,Environment,Environment +422501,Environment,Environment +421978,Environment,Environment +535445,Environment,Environment +535443,Environment,Environment +535421,Environment,Environment +522734,Industry,Industry +520511,Industry,Industry +144474,Industry,Industry +128735,Industry,Industry +124626,Industry,Industry +98334,Industry,Industry +97441,Industry,Industry +93635,Industry,Industry +85340,Industry,Industry +76394,Industry,Industry +168077,Industry,Industry +168075,Industry,Industry +168069,Industry,Industry +160316,Industry,Industry +160314,Industry,Industry +159132,Industry,Industry +159130,Industry,Industry +159129,Industry,Industry +159128,Industry,Industry +264373,Industry,Industry +254145,Industry,Industry +254142,Industry,Industry +254141,Industry,Industry +254139,Industry,Industry +254138,Industry,Industry +251453,Industry,Industry +250909,Industry,Industry +245371,Industry,Industry +245368,Industry,Industry +195034,Industry,Industry +195008,Industry,Industry +194998,Industry,Industry +194995,Industry,Industry +194993,Industry,Industry +194947,Industry,Industry +194934,Industry,Industry +374120,Industry,Industry +372791,Industry,Industry +372790,Industry,Industry +372789,Industry,Industry +372788,Industry,Industry +372787,Industry,Industry +372564,Industry,Industry +369570,Industry,Industry +338397,Industry,Industry +338394,Industry,Industry +330006,Industry,Industry +322219,Industry,Industry +304267,Industry,Industry +304263,Industry,Industry +304258,Industry,Industry +282849,Industry,Industry +282809,Industry,Industry +282730,Industry,Industry +282710,Industry,Industry +520509,Industry,Industry +513775,Industry,Industry +507890,Industry,Industry +505998,Industry,Industry +505997,Industry,Industry +505993,Industry,Industry +505988,Industry,Industry +502094,Industry,Industry +499260,Industry,Industry +499253,Industry,Industry +499238,Industry,Industry +490959,Industry,Industry +490956,Industry,Industry +485745,Industry,Industry +477727,Industry,Industry +477726,Industry,Industry +475146,Industry,Industry +475131,Industry,Industry +472968,Industry,Industry +472965,Industry,Industry +472963,Industry,Industry +472959,Industry,Industry +472957,Industry,Industry +472956,Industry,Industry +472948,Industry,Industry +468511,Industry,Industry +467679,Industry,Industry +450289,Industry,Industry +447456,Industry,Industry +432352,Industry,Industry +432350,Industry,Industry +420234,Industry,Industry +416168,Industry,Industry +416156,Industry,Industry +413998,Industry,Industry +403043,Industry,Industry +403042,Industry,Industry +403041,Industry,Industry +403040,Industry,Industry +403038,Industry,Industry +403037,Industry,Industry +403036,Industry,Industry +403033,Industry,Industry +403029,Industry,Industry +398955,Industry,Industry +395752,Industry,Industry +395751,Industry,Industry +392477,Industry,Industry +383751,Industry,Industry +383561,Industry,Industry +383560,Industry,Industry +383559,Industry,Industry +383556,Industry,Industry +535445,Industry,Industry +535443,Industry,Industry +535421,Industry,Industry +535418,Industry,Industry +535411,Industry,Industry +535405,Industry,Industry +525888,Industry,Industry +450296,International Trade,International Trade +450289,International Trade,International Trade +330006,International Trade,International Trade +403038,International Trade,International Trade +227295,Labour,Labour +461124,Labour,Labour +461124,Transportation,Transportation +457840,Transportation,Transportation +402994,Transportation,Transportation +338394,Transportation,Transportation +330006,Transportation,Transportation +318836,Transportation,Transportation +254148,Transportation,Transportation +254146,Transportation,Transportation +245449,Transportation,Transportation +468511,Transportation,Transportation +406843,Employment and Training,Employment and Training +103060,Employment and Training,Employment and Training +232030,Employment and Training,Employment and Training +221928,Employment and Training,Employment and Training +221911,Employment and Training,Employment and Training +188627,Employment and Training,Employment and Training +188626,Employment and Training,Employment and Training +464241,Employment and Training,Employment and Training +464240,Employment and Training,Employment and Training +435817,Employment and Training,Employment and Training +435812,Employment and Training,Employment and Training +433697,Employment and Training,Employment and Training +433684,Employment and Training,Employment and Training +433680,Employment and Training,Employment and Training +417573,Employment and Training,Employment and Training +417572,Employment and Training,Employment and Training +417571,Employment and Training,Employment and Training +408011,Employment and Training,Employment and Training +435801,Energy,Energy +433739,Energy,Energy +97472,Energy,Energy +97467,Energy,Energy +97465,Energy,Energy +97450,Energy,Energy +97438,Energy,Energy +97375,Energy,Energy +97361,Energy,Energy +96516,Energy,Energy +96515,Energy,Energy +90237,Energy,Energy +84761,Energy,Energy +82555,Energy,Energy +147257,Energy,Energy +133934,Energy,Energy +132314,Energy,Energy +121238,Energy,Energy +116376,Energy,Energy +116375,Energy,Energy +116374,Energy,Energy +103059,Energy,Energy +103057,Energy,Energy +103056,Energy,Energy +103038,Energy,Energy +103037,Energy,Energy +103036,Energy,Energy +103035,Energy,Energy +100421,Energy,Energy +100419,Energy,Energy +100418,Energy,Energy +100416,Energy,Energy +97482,Energy,Energy +97479,Energy,Energy +97476,Energy,Energy +197430,Energy,Energy +192997,Energy,Energy +192996,Energy,Energy +192994,Energy,Energy +192992,Energy,Energy +192991,Energy,Energy +192990,Energy,Energy +188627,Energy,Energy +188626,Energy,Energy +170334,Energy,Energy +170333,Energy,Energy +170332,Energy,Energy +170331,Energy,Energy +170330,Energy,Energy +168094,Energy,Energy +168092,Energy,Energy +168089,Energy,Energy +168088,Energy,Energy +168087,Energy,Energy +168081,Energy,Energy +168080,Energy,Energy +168079,Energy,Energy +168078,Energy,Energy +168074,Energy,Energy +168073,Energy,Energy +168072,Energy,Energy +165087,Energy,Energy +163928,Energy,Energy +163926,Energy,Energy +163924,Energy,Energy +163923,Energy,Energy +163921,Energy,Energy +163917,Energy,Energy +163914,Energy,Energy +163911,Energy,Energy +163910,Energy,Energy +161724,Energy,Energy +161722,Energy,Energy +161719,Energy,Energy +161716,Energy,Energy +158887,Energy,Energy +156278,Energy,Energy +156274,Energy,Energy +155992,Energy,Energy +155991,Energy,Energy +155569,Energy,Energy +147261,Energy,Energy +147260,Energy,Energy +147259,Energy,Energy +147258,Energy,Energy +359364,Energy,Energy +359363,Energy,Energy +359362,Energy,Energy +358802,Energy,Energy +357017,Energy,Energy +357016,Energy,Energy +355516,Energy,Energy +355514,Energy,Energy +355512,Energy,Energy +355040,Energy,Energy +355022,Energy,Energy +354904,Energy,Energy +354903,Energy,Energy +349931,Energy,Energy +346746,Energy,Energy +346745,Energy,Energy +343305,Energy,Energy +339979,Energy,Energy +339606,Energy,Energy +339605,Energy,Energy +339604,Energy,Energy +339603,Energy,Energy +339602,Energy,Energy +339601,Energy,Energy +339443,Energy,Energy +337151,Energy,Energy +336712,Energy,Energy +336711,Energy,Energy +336710,Energy,Energy +336709,Energy,Energy +335931,Energy,Energy +335930,Energy,Energy +334475,Energy,Energy +334474,Energy,Energy +333736,Energy,Energy +331774,Energy,Energy +331192,Energy,Energy +331124,Energy,Energy +331104,Energy,Energy +331103,Energy,Energy +331102,Energy,Energy +331101,Energy,Energy +331100,Energy,Energy +330268,Energy,Energy +330267,Energy,Energy +330266,Energy,Energy +330004,Energy,Energy +330003,Energy,Energy +330002,Energy,Energy +330001,Energy,Energy +325071,Energy,Energy +309973,Energy,Energy +309429,Energy,Energy +309409,Energy,Energy +307089,Energy,Energy +305776,Energy,Energy +305775,Energy,Energy +305774,Energy,Energy +305773,Energy,Energy +305772,Energy,Energy +305771,Energy,Energy +305770,Energy,Energy +305769,Energy,Energy +298893,Energy,Energy +298892,Energy,Energy +298891,Energy,Energy +298890,Energy,Energy +298889,Energy,Energy +294729,Energy,Energy +294609,Energy,Energy +293489,Energy,Energy +293430,Energy,Energy +291229,Energy,Energy +289680,Energy,Energy +289679,Energy,Energy +289678,Energy,Energy +289677,Energy,Energy +289676,Energy,Energy +289674,Energy,Energy +289671,Energy,Energy +289670,Energy,Energy +283390,Energy,Energy +283389,Energy,Energy +273368,Energy,Energy +269630,Energy,Energy +250883,Energy,Energy +250867,Energy,Energy +250859,Energy,Energy +248197,Energy,Energy +248196,Energy,Energy +248195,Energy,Energy +248194,Energy,Energy +248193,Energy,Energy +248192,Energy,Energy +248191,Energy,Energy +248190,Energy,Energy +248189,Energy,Energy +244694,Energy,Energy +244686,Energy,Energy +235749,Energy,Energy +232030,Energy,Energy +232029,Energy,Energy +221911,Energy,Energy +221909,Energy,Energy +221907,Energy,Energy +221889,Energy,Energy +209148,Energy,Energy +202540,Energy,Energy +202538,Energy,Energy +202535,Energy,Energy +202533,Energy,Energy +202532,Energy,Energy +202530,Energy,Energy +202529,Energy,Energy +202527,Energy,Energy +202526,Energy,Energy +197432,Energy,Energy +197431,Energy,Energy +433731,Energy,Energy +433728,Energy,Energy +433726,Energy,Energy +433723,Energy,Energy +433717,Energy,Energy +433715,Energy,Energy +433714,Energy,Energy +433713,Energy,Energy +433712,Energy,Energy +433710,Energy,Energy +433709,Energy,Energy +433707,Energy,Energy +433706,Energy,Energy +433705,Energy,Energy +433703,Energy,Energy +433697,Energy,Energy +433684,Energy,Energy +433682,Energy,Energy +433680,Energy,Energy +432537,Energy,Energy +432533,Energy,Energy +432529,Energy,Energy +432527,Energy,Energy +432523,Energy,Energy +432522,Energy,Energy +432521,Energy,Energy +432517,Energy,Energy +431272,Energy,Energy +431266,Energy,Energy +431264,Energy,Energy +431256,Energy,Energy +431254,Energy,Energy +431252,Energy,Energy +431245,Energy,Energy +431244,Energy,Energy +431241,Energy,Energy +431233,Energy,Energy +431218,Energy,Energy +431211,Energy,Energy +431209,Energy,Energy +429360,Energy,Energy +429277,Energy,Energy +429258,Energy,Energy +429255,Energy,Energy +429250,Energy,Energy +429243,Energy,Energy +429239,Energy,Energy +429236,Energy,Energy +429234,Energy,Energy +429230,Energy,Energy +429227,Energy,Energy +426464,Energy,Energy +426461,Energy,Energy +426460,Energy,Energy +426458,Energy,Energy +426455,Energy,Energy +426452,Energy,Energy +426450,Energy,Energy +426447,Energy,Energy +426437,Energy,Energy +426433,Energy,Energy +426432,Energy,Energy +424445,Energy,Energy +424393,Energy,Energy +424390,Energy,Energy +424389,Energy,Energy +424387,Energy,Energy +424385,Energy,Energy +424384,Energy,Energy +424383,Energy,Energy +424382,Energy,Energy +424381,Energy,Energy +424379,Energy,Energy +423846,Energy,Energy +423843,Energy,Energy +422229,Energy,Energy +422228,Energy,Energy +422213,Energy,Energy +422210,Energy,Energy +419948,Energy,Energy +419935,Energy,Energy +417573,Energy,Energy +417572,Energy,Energy +415708,Energy,Energy +413718,Energy,Energy +413709,Energy,Energy +413362,Energy,Energy +413355,Energy,Energy +413349,Energy,Energy +413343,Energy,Energy +413339,Energy,Energy +413330,Energy,Energy +409842,Energy,Energy +409838,Energy,Energy +409837,Energy,Energy +409833,Energy,Energy +409830,Energy,Energy +409780,Energy,Energy +409772,Energy,Energy +409758,Energy,Energy +408078,Energy,Energy +408075,Energy,Energy +408072,Energy,Energy +408011,Energy,Energy +406845,Energy,Energy +406843,Energy,Energy +406115,Energy,Energy +406114,Energy,Energy +406113,Energy,Energy +406112,Energy,Energy +406109,Energy,Energy +393452,Energy,Energy +393451,Energy,Energy +393450,Energy,Energy +393449,Energy,Energy +388809,Energy,Energy +386796,Energy,Energy +386794,Energy,Energy +386792,Energy,Energy +386395,Energy,Energy +386394,Energy,Energy +386393,Energy,Energy +386392,Energy,Energy +386391,Energy,Energy +386390,Energy,Energy +386190,Energy,Energy +386189,Energy,Energy +386188,Energy,Energy +386023,Energy,Energy +385979,Energy,Energy +385978,Energy,Energy +385977,Energy,Energy +384471,Energy,Energy +384346,Energy,Energy +384197,Energy,Energy +384012,Energy,Energy +384011,Energy,Energy +384010,Energy,Energy +384009,Energy,Energy +384008,Energy,Energy +384007,Energy,Energy +384006,Energy,Energy +384005,Energy,Energy +383115,Energy,Energy +383114,Energy,Energy +383113,Energy,Energy +383112,Energy,Energy +383111,Energy,Energy +383110,Energy,Energy +383058,Energy,Energy +383057,Energy,Energy +383055,Energy,Energy +382845,Energy,Energy +382254,Energy,Energy +382253,Energy,Energy +382207,Energy,Energy +382200,Energy,Energy +382199,Energy,Energy +382198,Energy,Energy +380641,Energy,Energy +380272,Energy,Energy +379668,Energy,Energy +379664,Energy,Energy +379660,Energy,Energy +379659,Energy,Energy +378577,Energy,Energy +378576,Energy,Energy +378571,Energy,Energy +378569,Energy,Energy +378568,Energy,Energy +375151,Energy,Energy +375150,Energy,Energy +373645,Energy,Energy +373644,Energy,Energy +370432,Energy,Energy +369998,Energy,Energy +369996,Energy,Energy +369994,Energy,Energy +369028,Energy,Energy +369027,Energy,Energy +369023,Energy,Energy +368311,Energy,Energy +368309,Energy,Energy +368308,Energy,Energy +367166,Energy,Energy +367165,Energy,Energy +365483,Energy,Energy +365430,Energy,Energy +365429,Energy,Energy +364064,Energy,Energy +362642,Energy,Energy +362223,Energy,Energy +362221,Energy,Energy +359365,Energy,Energy +543558,Energy,Energy +543522,Energy,Energy +541079,Energy,Energy +541078,Energy,Energy +541077,Energy,Energy +541076,Energy,Energy +541075,Energy,Energy +541074,Energy,Energy +539635,Energy,Energy +539634,Energy,Energy +539633,Energy,Energy +537551,Energy,Energy +537550,Energy,Energy +537549,Energy,Energy +537547,Energy,Energy +537546,Energy,Energy +534964,Energy,Energy +534962,Energy,Energy +534961,Energy,Energy +534959,Energy,Energy +534957,Energy,Energy +534955,Energy,Energy +531748,Energy,Energy +531746,Energy,Energy +531741,Energy,Energy +531739,Energy,Energy +529590,Energy,Energy +529589,Energy,Energy +529588,Energy,Energy +529587,Energy,Energy +529586,Energy,Energy +526573,Energy,Energy +526572,Energy,Energy +522838,Energy,Energy +522825,Energy,Energy +522824,Energy,Energy +522819,Energy,Energy +519991,Energy,Energy +519989,Energy,Energy +519985,Energy,Energy +519983,Energy,Energy +519976,Energy,Energy +517002,Energy,Energy +517001,Energy,Energy +517000,Energy,Energy +516950,Energy,Energy +515329,Energy,Energy +514589,Energy,Energy +514588,Energy,Energy +514586,Energy,Energy +514585,Energy,Energy +514584,Energy,Energy +514583,Energy,Energy +514582,Energy,Energy +513918,Energy,Energy +513917,Energy,Energy +512238,Energy,Energy +512237,Energy,Energy +512235,Energy,Energy +512234,Energy,Energy +512232,Energy,Energy +512230,Energy,Energy +512229,Energy,Energy +509591,Energy,Energy +509590,Energy,Energy +509589,Energy,Energy +509588,Energy,Energy +509586,Energy,Energy +509585,Energy,Energy +509584,Energy,Energy +509582,Energy,Energy +509581,Energy,Energy +506553,Energy,Energy +506551,Energy,Energy +506550,Energy,Energy +506548,Energy,Energy +506546,Energy,Energy +506544,Energy,Energy +506542,Energy,Energy +506539,Energy,Energy +504616,Energy,Energy +504615,Energy,Energy +504613,Energy,Energy +504612,Energy,Energy +504611,Energy,Energy +504610,Energy,Energy +504609,Energy,Energy +504605,Energy,Energy +504601,Energy,Energy +500858,Energy,Energy +500857,Energy,Energy +500845,Energy,Energy +500841,Energy,Energy +500835,Energy,Energy +500833,Energy,Energy +500832,Energy,Energy +500831,Energy,Energy +500830,Energy,Energy +500828,Energy,Energy +500827,Energy,Energy +500825,Energy,Energy +500823,Energy,Energy +500822,Energy,Energy +500819,Energy,Energy +500818,Energy,Energy +497627,Energy,Energy +497625,Energy,Energy +497623,Energy,Energy +497620,Energy,Energy +497618,Energy,Energy +497615,Energy,Energy +497612,Energy,Energy +497610,Energy,Energy +497607,Energy,Energy +497605,Energy,Energy +497603,Energy,Energy +497600,Energy,Energy +494776,Energy,Energy +494775,Energy,Energy +494773,Energy,Energy +494772,Energy,Energy +494770,Energy,Energy +494767,Energy,Energy +494766,Energy,Energy +494765,Energy,Energy +494764,Energy,Energy +492620,Energy,Energy +492619,Energy,Energy +492618,Energy,Energy +492617,Energy,Energy +489430,Energy,Energy +489429,Energy,Energy +489428,Energy,Energy +487427,Energy,Energy +487423,Energy,Energy +483950,Energy,Energy +483948,Energy,Energy +483946,Energy,Energy +482139,Energy,Energy +479108,Energy,Energy +479107,Energy,Energy +477260,Energy,Energy +477259,Energy,Energy +477255,Energy,Energy +477253,Energy,Energy +477252,Energy,Energy +477250,Energy,Energy +477249,Energy,Energy +477248,Energy,Energy +477247,Energy,Energy +477242,Energy,Energy +474748,Energy,Energy +474746,Energy,Energy +474743,Energy,Energy +474741,Energy,Energy +472434,Energy,Energy +472433,Energy,Energy +472432,Energy,Energy +472431,Energy,Energy +472430,Energy,Energy +472429,Energy,Energy +471272,Energy,Energy +467913,Energy,Energy +467909,Energy,Energy +467907,Energy,Energy +467894,Energy,Energy +467887,Energy,Energy +467883,Energy,Energy +467703,Energy,Energy +464241,Energy,Energy +464240,Energy,Energy +464239,Energy,Energy +462193,Energy,Energy +462192,Energy,Energy +461419,Energy,Energy +461417,Energy,Energy +461414,Energy,Energy +461411,Energy,Energy +461410,Energy,Energy +459490,Energy,Energy +458788,Energy,Energy +458786,Energy,Energy +458784,Energy,Energy +458783,Energy,Energy +458782,Energy,Energy +457268,Energy,Energy +457267,Energy,Energy +457265,Energy,Energy +457264,Energy,Energy +457261,Energy,Energy +457256,Energy,Energy +457254,Energy,Energy +457251,Energy,Energy +455848,Energy,Energy +455846,Energy,Energy +455845,Energy,Energy +455844,Energy,Energy +455843,Energy,Energy +455839,Energy,Energy +455836,Energy,Energy +455831,Energy,Energy +452597,Energy,Energy +449821,Energy,Energy +449820,Energy,Energy +449819,Energy,Energy +449818,Energy,Energy +449817,Energy,Energy +449816,Energy,Energy +449815,Energy,Energy +449814,Energy,Energy +449813,Energy,Energy +449812,Energy,Energy +449808,Energy,Energy +447931,Energy,Energy +447925,Energy,Energy +447921,Energy,Energy +447916,Energy,Energy +445412,Energy,Energy +445411,Energy,Energy +445410,Energy,Energy +445409,Energy,Energy +445408,Energy,Energy +445407,Energy,Energy +445405,Energy,Energy +445404,Energy,Energy +445403,Energy,Energy +445402,Energy,Energy +445401,Energy,Energy +445400,Energy,Energy +445399,Energy,Energy +445398,Energy,Energy +443871,Energy,Energy +443870,Energy,Energy +443869,Energy,Energy +443868,Energy,Energy +443865,Energy,Energy +443862,Energy,Energy +443860,Energy,Energy +442495,Energy,Energy +442490,Energy,Energy +442489,Energy,Energy +442485,Energy,Energy +442482,Energy,Energy +442480,Energy,Energy +442474,Energy,Energy +442471,Energy,Energy +442467,Energy,Energy +442460,Energy,Energy +442444,Energy,Energy +442440,Energy,Energy +442436,Energy,Energy +442432,Energy,Energy +442422,Energy,Energy +442416,Energy,Energy +442411,Energy,Energy +442407,Energy,Energy +442402,Energy,Energy +442396,Energy,Energy +439478,Energy,Energy +439475,Energy,Energy +439473,Energy,Energy +439470,Energy,Energy +439468,Energy,Energy +439454,Energy,Energy +439449,Energy,Energy +439435,Energy,Energy +439429,Energy,Energy +439426,Energy,Energy +439424,Energy,Energy +439419,Energy,Energy +439416,Energy,Energy +439412,Energy,Energy +439411,Energy,Energy +439410,Energy,Energy +439408,Energy,Energy +439407,Energy,Energy +439402,Energy,Energy +439401,Energy,Energy +439398,Energy,Energy +439395,Energy,Energy +439387,Energy,Energy +439383,Energy,Energy +435822,Energy,Energy +435817,Energy,Energy +435814,Energy,Energy +435812,Energy,Energy +449817,Environment,Environment +449816,Environment,Environment +97472,Environment,Environment +97467,Environment,Environment +97465,Environment,Environment +97450,Environment,Environment +97438,Environment,Environment +97375,Environment,Environment +97361,Environment,Environment +96516,Environment,Environment +96515,Environment,Environment +90237,Environment,Environment +84761,Environment,Environment +147257,Environment,Environment +133934,Environment,Environment +132314,Environment,Environment +121238,Environment,Environment +116376,Environment,Environment +116375,Environment,Environment +116374,Environment,Environment +103059,Environment,Environment +103038,Environment,Environment +103037,Environment,Environment +103036,Environment,Environment +103035,Environment,Environment +100421,Environment,Environment +100419,Environment,Environment +100418,Environment,Environment +100416,Environment,Environment +97482,Environment,Environment +97479,Environment,Environment +97476,Environment,Environment +244686,Environment,Environment +232029,Environment,Environment +221909,Environment,Environment +221907,Environment,Environment +221889,Environment,Environment +209148,Environment,Environment +202530,Environment,Environment +202527,Environment,Environment +202526,Environment,Environment +197432,Environment,Environment +197431,Environment,Environment +197430,Environment,Environment +192997,Environment,Environment +192996,Environment,Environment +192994,Environment,Environment +192992,Environment,Environment +192991,Environment,Environment +192990,Environment,Environment +170334,Environment,Environment +170333,Environment,Environment +170332,Environment,Environment +170331,Environment,Environment +170330,Environment,Environment +168094,Environment,Environment +168092,Environment,Environment +168089,Environment,Environment +168088,Environment,Environment +168087,Environment,Environment +168081,Environment,Environment +168080,Environment,Environment +168079,Environment,Environment +168078,Environment,Environment +168074,Environment,Environment +168073,Environment,Environment +168072,Environment,Environment +163928,Environment,Environment +163926,Environment,Environment +163924,Environment,Environment +163923,Environment,Environment +163921,Environment,Environment +163917,Environment,Environment +163914,Environment,Environment +163911,Environment,Environment +163910,Environment,Environment +161724,Environment,Environment +161722,Environment,Environment +161719,Environment,Environment +158887,Environment,Environment +156278,Environment,Environment +156274,Environment,Environment +155992,Environment,Environment +155991,Environment,Environment +155569,Environment,Environment +147261,Environment,Environment +147259,Environment,Environment +368309,Environment,Environment +368308,Environment,Environment +367166,Environment,Environment +367165,Environment,Environment +365483,Environment,Environment +365430,Environment,Environment +365429,Environment,Environment +364064,Environment,Environment +362642,Environment,Environment +362223,Environment,Environment +362221,Environment,Environment +359365,Environment,Environment +359364,Environment,Environment +359363,Environment,Environment +359362,Environment,Environment +358802,Environment,Environment +357017,Environment,Environment +357016,Environment,Environment +355516,Environment,Environment +355514,Environment,Environment +355512,Environment,Environment +355040,Environment,Environment +355022,Environment,Environment +354904,Environment,Environment +354903,Environment,Environment +349931,Environment,Environment +346746,Environment,Environment +346745,Environment,Environment +343305,Environment,Environment +339979,Environment,Environment +339606,Environment,Environment +339605,Environment,Environment +339604,Environment,Environment +339603,Environment,Environment +339602,Environment,Environment +339601,Environment,Environment +339443,Environment,Environment +337151,Environment,Environment +336712,Environment,Environment +336711,Environment,Environment +336710,Environment,Environment +336709,Environment,Environment +335931,Environment,Environment +335930,Environment,Environment +334475,Environment,Environment +334474,Environment,Environment +333736,Environment,Environment +331774,Environment,Environment +331192,Environment,Environment +331124,Environment,Environment +331104,Environment,Environment +331103,Environment,Environment +331102,Environment,Environment +331101,Environment,Environment +331100,Environment,Environment +330268,Environment,Environment +330267,Environment,Environment +330266,Environment,Environment +330004,Environment,Environment +330003,Environment,Environment +330002,Environment,Environment +330001,Environment,Environment +325071,Environment,Environment +309973,Environment,Environment +309429,Environment,Environment +309409,Environment,Environment +307089,Environment,Environment +305776,Environment,Environment +305775,Environment,Environment +305774,Environment,Environment +305773,Environment,Environment +305772,Environment,Environment +305771,Environment,Environment +305770,Environment,Environment +305769,Environment,Environment +298893,Environment,Environment +298892,Environment,Environment +298891,Environment,Environment +298890,Environment,Environment +298889,Environment,Environment +295150,Environment,Environment +295149,Environment,Environment +294729,Environment,Environment +294609,Environment,Environment +293489,Environment,Environment +293430,Environment,Environment +293429,Environment,Environment +291229,Environment,Environment +289680,Environment,Environment +289679,Environment,Environment +289678,Environment,Environment +289677,Environment,Environment +289675,Environment,Environment +289674,Environment,Environment +289671,Environment,Environment +289670,Environment,Environment +273368,Environment,Environment +269630,Environment,Environment +254099,Environment,Environment +250859,Environment,Environment +248196,Environment,Environment +248195,Environment,Environment +248194,Environment,Environment +248193,Environment,Environment +248192,Environment,Environment +248191,Environment,Environment +248190,Environment,Environment +248189,Environment,Environment +244694,Environment,Environment +449815,Environment,Environment +449814,Environment,Environment +449813,Environment,Environment +449812,Environment,Environment +449808,Environment,Environment +447931,Environment,Environment +447925,Environment,Environment +447921,Environment,Environment +447916,Environment,Environment +445404,Environment,Environment +445403,Environment,Environment +445402,Environment,Environment +445401,Environment,Environment +445400,Environment,Environment +445399,Environment,Environment +445398,Environment,Environment +443871,Environment,Environment +443870,Environment,Environment +443869,Environment,Environment +443868,Environment,Environment +443865,Environment,Environment +443862,Environment,Environment +442495,Environment,Environment +442490,Environment,Environment +442489,Environment,Environment +442485,Environment,Environment +442482,Environment,Environment +442480,Environment,Environment +442444,Environment,Environment +442440,Environment,Environment +442436,Environment,Environment +442422,Environment,Environment +442416,Environment,Environment +439478,Environment,Environment +439475,Environment,Environment +439473,Environment,Environment +439470,Environment,Environment +439468,Environment,Environment +439454,Environment,Environment +439449,Environment,Environment +439435,Environment,Environment +439429,Environment,Environment +439426,Environment,Environment +439424,Environment,Environment +439419,Environment,Environment +439416,Environment,Environment +439412,Environment,Environment +439411,Environment,Environment +439410,Environment,Environment +439408,Environment,Environment +439407,Environment,Environment +439402,Environment,Environment +439401,Environment,Environment +439398,Environment,Environment +439395,Environment,Environment +439387,Environment,Environment +439383,Environment,Environment +435822,Environment,Environment +435812,Environment,Environment +435809,Environment,Environment +435801,Environment,Environment +433739,Environment,Environment +433731,Environment,Environment +433728,Environment,Environment +433726,Environment,Environment +433723,Environment,Environment +433717,Environment,Environment +433715,Environment,Environment +433714,Environment,Environment +433713,Environment,Environment +433712,Environment,Environment +433710,Environment,Environment +433709,Environment,Environment +433707,Environment,Environment +433706,Environment,Environment +433705,Environment,Environment +433703,Environment,Environment +433697,Environment,Environment +433682,Environment,Environment +433680,Environment,Environment +432537,Environment,Environment +432533,Environment,Environment +432529,Environment,Environment +432527,Environment,Environment +432523,Environment,Environment +432522,Environment,Environment +432521,Environment,Environment +432517,Environment,Environment +431211,Environment,Environment +431209,Environment,Environment +429360,Environment,Environment +429277,Environment,Environment +429258,Environment,Environment +429255,Environment,Environment +429250,Environment,Environment +429236,Environment,Environment +429234,Environment,Environment +429227,Environment,Environment +426464,Environment,Environment +426461,Environment,Environment +426458,Environment,Environment +426437,Environment,Environment +424445,Environment,Environment +424393,Environment,Environment +424390,Environment,Environment +424389,Environment,Environment +424387,Environment,Environment +424385,Environment,Environment +424384,Environment,Environment +424383,Environment,Environment +424382,Environment,Environment +424381,Environment,Environment +424379,Environment,Environment +423843,Environment,Environment +422229,Environment,Environment +422228,Environment,Environment +422210,Environment,Environment +419935,Environment,Environment +417572,Environment,Environment +415708,Environment,Environment +413709,Environment,Environment +413362,Environment,Environment +413355,Environment,Environment +413349,Environment,Environment +413339,Environment,Environment +409842,Environment,Environment +409838,Environment,Environment +408011,Environment,Environment +406845,Environment,Environment +406843,Environment,Environment +406115,Environment,Environment +406114,Environment,Environment +406113,Environment,Environment +406112,Environment,Environment +406109,Environment,Environment +393452,Environment,Environment +393451,Environment,Environment +393450,Environment,Environment +393449,Environment,Environment +388809,Environment,Environment +386796,Environment,Environment +386794,Environment,Environment +386792,Environment,Environment +386395,Environment,Environment +386394,Environment,Environment +386393,Environment,Environment +386392,Environment,Environment +386391,Environment,Environment +386390,Environment,Environment +386190,Environment,Environment +386189,Environment,Environment +386188,Environment,Environment +386023,Environment,Environment +385979,Environment,Environment +385978,Environment,Environment +385977,Environment,Environment +384471,Environment,Environment +384346,Environment,Environment +384197,Environment,Environment +384012,Environment,Environment +384011,Environment,Environment +384010,Environment,Environment +384009,Environment,Environment +384008,Environment,Environment +384007,Environment,Environment +384006,Environment,Environment +384005,Environment,Environment +383115,Environment,Environment +383114,Environment,Environment +383113,Environment,Environment +383112,Environment,Environment +383111,Environment,Environment +383110,Environment,Environment +383058,Environment,Environment +383057,Environment,Environment +383055,Environment,Environment +382845,Environment,Environment +382254,Environment,Environment +382253,Environment,Environment +382207,Environment,Environment +382200,Environment,Environment +382199,Environment,Environment +382198,Environment,Environment +380641,Environment,Environment +380272,Environment,Environment +379668,Environment,Environment +379664,Environment,Environment +379660,Environment,Environment +379659,Environment,Environment +378577,Environment,Environment +378576,Environment,Environment +378571,Environment,Environment +378569,Environment,Environment +378568,Environment,Environment +375151,Environment,Environment +375150,Environment,Environment +373645,Environment,Environment +373644,Environment,Environment +370432,Environment,Environment +369998,Environment,Environment +369996,Environment,Environment +369994,Environment,Environment +369028,Environment,Environment +369027,Environment,Environment +369023,Environment,Environment +368311,Environment,Environment +509588,Environment,Environment +509586,Environment,Environment +506553,Environment,Environment +506551,Environment,Environment +506550,Environment,Environment +506546,Environment,Environment +506539,Environment,Environment +504615,Environment,Environment +504605,Environment,Environment +500835,Environment,Environment +500833,Environment,Environment +500830,Environment,Environment +500827,Environment,Environment +500825,Environment,Environment +500818,Environment,Environment +497610,Environment,Environment +494766,Environment,Environment +494765,Environment,Environment +492618,Environment,Environment +489430,Environment,Environment +489429,Environment,Environment +489428,Environment,Environment +483950,Environment,Environment +483948,Environment,Environment +483946,Environment,Environment +482139,Environment,Environment +477252,Environment,Environment +477248,Environment,Environment +474748,Environment,Environment +474746,Environment,Environment +474743,Environment,Environment +474741,Environment,Environment +472434,Environment,Environment +472433,Environment,Environment +472431,Environment,Environment +471272,Environment,Environment +467913,Environment,Environment +467907,Environment,Environment +467905,Environment,Environment +467887,Environment,Environment +467883,Environment,Environment +464241,Environment,Environment +464240,Environment,Environment +464239,Environment,Environment +462193,Environment,Environment +462192,Environment,Environment +461419,Environment,Environment +461417,Environment,Environment +461414,Environment,Environment +461411,Environment,Environment +461410,Environment,Environment +458788,Environment,Environment +458786,Environment,Environment +457267,Environment,Environment +457265,Environment,Environment +457261,Environment,Environment +457256,Environment,Environment +457254,Environment,Environment +457251,Environment,Environment +455854,Environment,Environment +455850,Environment,Environment +455849,Environment,Environment +455848,Environment,Environment +455847,Environment,Environment +455846,Environment,Environment +455845,Environment,Environment +455844,Environment,Environment +455839,Environment,Environment +455836,Environment,Environment +455831,Environment,Environment +543525,Industry,Industry +541075,Industry,Industry +248197,Industry,Industry +339443,Industry,Industry +307089,Industry,Industry +298893,Industry,Industry +298892,Industry,Industry +298891,Industry,Industry +298890,Industry,Industry +298889,Industry,Industry +431244,Industry,Industry +431241,Industry,Industry +431233,Industry,Industry +431218,Industry,Industry +431215,Industry,Industry +431214,Industry,Industry +431213,Industry,Industry +431211,Industry,Industry +431209,Industry,Industry +429360,Industry,Industry +429236,Industry,Industry +429230,Industry,Industry +426464,Industry,Industry +426461,Industry,Industry +426458,Industry,Industry +426452,Industry,Industry +426450,Industry,Industry +426447,Industry,Industry +422229,Industry,Industry +422228,Industry,Industry +422210,Industry,Industry +419948,Industry,Industry +417573,Industry,Industry +417572,Industry,Industry +417571,Industry,Industry +413362,Industry,Industry +413339,Industry,Industry +413330,Industry,Industry +509585,Industry,Industry +504615,Industry,Industry +497610,Industry,Industry +494764,Industry,Industry +489430,Industry,Industry +483950,Industry,Industry +483948,Industry,Industry +482139,Industry,Industry +477255,Industry,Industry +477249,Industry,Industry +477248,Industry,Industry +477247,Industry,Industry +477242,Industry,Industry +474750,Industry,Industry +474748,Industry,Industry +474746,Industry,Industry +474743,Industry,Industry +474742,Industry,Industry +474741,Industry,Industry +472434,Industry,Industry +472433,Industry,Industry +472432,Industry,Industry +472431,Industry,Industry +472430,Industry,Industry +472429,Industry,Industry +467907,Industry,Industry +464241,Industry,Industry +464240,Industry,Industry +464239,Industry,Industry +462193,Industry,Industry +462192,Industry,Industry +459490,Industry,Industry +458788,Industry,Industry +458786,Industry,Industry +457267,Industry,Industry +457265,Industry,Industry +457264,Industry,Industry +457261,Industry,Industry +457256,Industry,Industry +457254,Industry,Industry +457251,Industry,Industry +455854,Industry,Industry +455850,Industry,Industry +455849,Industry,Industry +455848,Industry,Industry +455847,Industry,Industry +455846,Industry,Industry +455845,Industry,Industry +455844,Industry,Industry +455839,Industry,Industry +455836,Industry,Industry +455831,Industry,Industry +452599,Industry,Industry +452597,Industry,Industry +452596,Industry,Industry +452595,Industry,Industry +449821,Industry,Industry +449820,Industry,Industry +449819,Industry,Industry +449816,Industry,Industry +449815,Industry,Industry +449814,Industry,Industry +449813,Industry,Industry +449812,Industry,Industry +449808,Industry,Industry +447931,Industry,Industry +447925,Industry,Industry +447921,Industry,Industry +447916,Industry,Industry +445411,Industry,Industry +445410,Industry,Industry +445409,Industry,Industry +443871,Industry,Industry +443870,Industry,Industry +443869,Industry,Industry +443868,Industry,Industry +443865,Industry,Industry +443862,Industry,Industry +443860,Industry,Industry +442495,Industry,Industry +442490,Industry,Industry +442489,Industry,Industry +442485,Industry,Industry +442482,Industry,Industry +442480,Industry,Industry +442474,Industry,Industry +442471,Industry,Industry +442467,Industry,Industry +442460,Industry,Industry +442444,Industry,Industry +442440,Industry,Industry +442436,Industry,Industry +442432,Industry,Industry +442422,Industry,Industry +442416,Industry,Industry +442411,Industry,Industry +442407,Industry,Industry +442402,Industry,Industry +442396,Industry,Industry +439478,Industry,Industry +439473,Industry,Industry +439470,Industry,Industry +439468,Industry,Industry +439449,Industry,Industry +439435,Industry,Industry +439429,Industry,Industry +439426,Industry,Industry +439424,Industry,Industry +439419,Industry,Industry +439416,Industry,Industry +439412,Industry,Industry +439411,Industry,Industry +439410,Industry,Industry +439408,Industry,Industry +439407,Industry,Industry +439402,Industry,Industry +439401,Industry,Industry +439398,Industry,Industry +439395,Industry,Industry +439387,Industry,Industry +439383,Industry,Industry +435822,Industry,Industry +435814,Industry,Industry +435809,Industry,Industry +433739,Industry,Industry +433731,Industry,Industry +433728,Industry,Industry +433726,Industry,Industry +433723,Industry,Industry +433714,Industry,Industry +433712,Industry,Industry +433709,Industry,Industry +433707,Industry,Industry +433703,Industry,Industry +432533,Industry,Industry +432523,Industry,Industry +431272,Industry,Industry +431266,Industry,Industry +431264,Industry,Industry +431256,Industry,Industry +431254,Industry,Industry +431252,Industry,Industry +477247,Infrastructure,Infrastructure +477242,Infrastructure,Infrastructure +155992,Infrastructure,Infrastructure +133934,Infrastructure,Infrastructure +125133,Infrastructure,Infrastructure +121238,Infrastructure,Infrastructure +283390,Infrastructure,Infrastructure +283389,Infrastructure,Infrastructure +248189,Infrastructure,Infrastructure +235749,Infrastructure,Infrastructure +221928,Infrastructure,Infrastructure +221911,Infrastructure,Infrastructure +221907,Infrastructure,Infrastructure +221889,Infrastructure,Infrastructure +209148,Infrastructure,Infrastructure +202540,Infrastructure,Infrastructure +202535,Infrastructure,Infrastructure +202533,Infrastructure,Infrastructure +202532,Infrastructure,Infrastructure +202530,Infrastructure,Infrastructure +202527,Infrastructure,Infrastructure +202526,Infrastructure,Infrastructure +197432,Infrastructure,Infrastructure +192997,Infrastructure,Infrastructure +192996,Infrastructure,Infrastructure +192994,Infrastructure,Infrastructure +192992,Infrastructure,Infrastructure +192990,Infrastructure,Infrastructure +156274,Infrastructure,Infrastructure +433715,Infrastructure,Infrastructure +433713,Infrastructure,Infrastructure +433710,Infrastructure,Infrastructure +433707,Infrastructure,Infrastructure +433706,Infrastructure,Infrastructure +433705,Infrastructure,Infrastructure +433684,Infrastructure,Infrastructure +433682,Infrastructure,Infrastructure +432537,Infrastructure,Infrastructure +432529,Infrastructure,Infrastructure +432527,Infrastructure,Infrastructure +432522,Infrastructure,Infrastructure +432521,Infrastructure,Infrastructure +432517,Infrastructure,Infrastructure +431233,Infrastructure,Infrastructure +431218,Infrastructure,Infrastructure +429277,Infrastructure,Infrastructure +429258,Infrastructure,Infrastructure +429255,Infrastructure,Infrastructure +429250,Infrastructure,Infrastructure +429230,Infrastructure,Infrastructure +426464,Infrastructure,Infrastructure +426461,Infrastructure,Infrastructure +426460,Infrastructure,Infrastructure +426437,Infrastructure,Infrastructure +426433,Infrastructure,Infrastructure +426432,Infrastructure,Infrastructure +424390,Infrastructure,Infrastructure +424387,Infrastructure,Infrastructure +424385,Infrastructure,Infrastructure +424382,Infrastructure,Infrastructure +424381,Infrastructure,Infrastructure +423846,Infrastructure,Infrastructure +422229,Infrastructure,Infrastructure +419935,Infrastructure,Infrastructure +417573,Infrastructure,Infrastructure +417572,Infrastructure,Infrastructure +417571,Infrastructure,Infrastructure +415708,Infrastructure,Infrastructure +413362,Infrastructure,Infrastructure +413355,Infrastructure,Infrastructure +413343,Infrastructure,Infrastructure +408078,Infrastructure,Infrastructure +406845,Infrastructure,Infrastructure +406843,Infrastructure,Infrastructure +474748,Infrastructure,Infrastructure +474746,Infrastructure,Infrastructure +474743,Infrastructure,Infrastructure +474741,Infrastructure,Infrastructure +472434,Infrastructure,Infrastructure +472433,Infrastructure,Infrastructure +472432,Infrastructure,Infrastructure +472431,Infrastructure,Infrastructure +472429,Infrastructure,Infrastructure +471272,Infrastructure,Infrastructure +467913,Infrastructure,Infrastructure +467909,Infrastructure,Infrastructure +467907,Infrastructure,Infrastructure +467905,Infrastructure,Infrastructure +467894,Infrastructure,Infrastructure +467887,Infrastructure,Infrastructure +467883,Infrastructure,Infrastructure +467703,Infrastructure,Infrastructure +464241,Infrastructure,Infrastructure +464240,Infrastructure,Infrastructure +464239,Infrastructure,Infrastructure +462194,Infrastructure,Infrastructure +462193,Infrastructure,Infrastructure +462192,Infrastructure,Infrastructure +461419,Infrastructure,Infrastructure +461417,Infrastructure,Infrastructure +461414,Infrastructure,Infrastructure +461411,Infrastructure,Infrastructure +461410,Infrastructure,Infrastructure +459490,Infrastructure,Infrastructure +458788,Infrastructure,Infrastructure +458786,Infrastructure,Infrastructure +457268,Infrastructure,Infrastructure +457267,Infrastructure,Infrastructure +457265,Infrastructure,Infrastructure +457264,Infrastructure,Infrastructure +457261,Infrastructure,Infrastructure +457256,Infrastructure,Infrastructure +457254,Infrastructure,Infrastructure +457251,Infrastructure,Infrastructure +455848,Infrastructure,Infrastructure +455846,Infrastructure,Infrastructure +455845,Infrastructure,Infrastructure +455844,Infrastructure,Infrastructure +455843,Infrastructure,Infrastructure +455836,Infrastructure,Infrastructure +452599,Infrastructure,Infrastructure +452597,Infrastructure,Infrastructure +452596,Infrastructure,Infrastructure +452595,Infrastructure,Infrastructure +449821,Infrastructure,Infrastructure +449820,Infrastructure,Infrastructure +449819,Infrastructure,Infrastructure +449818,Infrastructure,Infrastructure +449817,Infrastructure,Infrastructure +449816,Infrastructure,Infrastructure +449815,Infrastructure,Infrastructure +449814,Infrastructure,Infrastructure +449813,Infrastructure,Infrastructure +449812,Infrastructure,Infrastructure +447931,Infrastructure,Infrastructure +447925,Infrastructure,Infrastructure +447921,Infrastructure,Infrastructure +447916,Infrastructure,Infrastructure +445412,Infrastructure,Infrastructure +445411,Infrastructure,Infrastructure +445410,Infrastructure,Infrastructure +445409,Infrastructure,Infrastructure +445408,Infrastructure,Infrastructure +445407,Infrastructure,Infrastructure +445406,Infrastructure,Infrastructure +445405,Infrastructure,Infrastructure +445404,Infrastructure,Infrastructure +445403,Infrastructure,Infrastructure +445402,Infrastructure,Infrastructure +445401,Infrastructure,Infrastructure +445400,Infrastructure,Infrastructure +445399,Infrastructure,Infrastructure +445398,Infrastructure,Infrastructure +443871,Infrastructure,Infrastructure +443870,Infrastructure,Infrastructure +443869,Infrastructure,Infrastructure +443868,Infrastructure,Infrastructure +443865,Infrastructure,Infrastructure +443862,Infrastructure,Infrastructure +443860,Infrastructure,Infrastructure +442495,Infrastructure,Infrastructure +442490,Infrastructure,Infrastructure +442489,Infrastructure,Infrastructure +442485,Infrastructure,Infrastructure +442482,Infrastructure,Infrastructure +442480,Infrastructure,Infrastructure +442474,Infrastructure,Infrastructure +442471,Infrastructure,Infrastructure +442467,Infrastructure,Infrastructure +442460,Infrastructure,Infrastructure +442444,Infrastructure,Infrastructure +442440,Infrastructure,Infrastructure +442436,Infrastructure,Infrastructure +442432,Infrastructure,Infrastructure +442416,Infrastructure,Infrastructure +442411,Infrastructure,Infrastructure +442407,Infrastructure,Infrastructure +442402,Infrastructure,Infrastructure +442396,Infrastructure,Infrastructure +439473,Infrastructure,Infrastructure +439470,Infrastructure,Infrastructure +435822,Infrastructure,Infrastructure +435801,Infrastructure,Infrastructure +433731,Infrastructure,Infrastructure +433728,Infrastructure,Infrastructure +433726,Infrastructure,Infrastructure +433717,Infrastructure,Infrastructure +541079,Infrastructure,Infrastructure +541078,Infrastructure,Infrastructure +541077,Infrastructure,Infrastructure +517002,Infrastructure,Infrastructure +517001,Infrastructure,Infrastructure +517000,Infrastructure,Infrastructure +516950,Infrastructure,Infrastructure +515329,Infrastructure,Infrastructure +514589,Infrastructure,Infrastructure +514588,Infrastructure,Infrastructure +514586,Infrastructure,Infrastructure +514585,Infrastructure,Infrastructure +514584,Infrastructure,Infrastructure +514583,Infrastructure,Infrastructure +514582,Infrastructure,Infrastructure +513918,Infrastructure,Infrastructure +513917,Infrastructure,Infrastructure +512238,Infrastructure,Infrastructure +512237,Infrastructure,Infrastructure +512235,Infrastructure,Infrastructure +512234,Infrastructure,Infrastructure +512232,Infrastructure,Infrastructure +512230,Infrastructure,Infrastructure +512229,Infrastructure,Infrastructure +509591,Infrastructure,Infrastructure +509590,Infrastructure,Infrastructure +509589,Infrastructure,Infrastructure +509588,Infrastructure,Infrastructure +509586,Infrastructure,Infrastructure +509585,Infrastructure,Infrastructure +509584,Infrastructure,Infrastructure +509582,Infrastructure,Infrastructure +509581,Infrastructure,Infrastructure +506553,Infrastructure,Infrastructure +506551,Infrastructure,Infrastructure +506550,Infrastructure,Infrastructure +506548,Infrastructure,Infrastructure +506546,Infrastructure,Infrastructure +506544,Infrastructure,Infrastructure +506542,Infrastructure,Infrastructure +506539,Infrastructure,Infrastructure +504616,Infrastructure,Infrastructure +504615,Infrastructure,Infrastructure +504613,Infrastructure,Infrastructure +504612,Infrastructure,Infrastructure +504611,Infrastructure,Infrastructure +504610,Infrastructure,Infrastructure +504609,Infrastructure,Infrastructure +504605,Infrastructure,Infrastructure +504601,Infrastructure,Infrastructure +500858,Infrastructure,Infrastructure +500857,Infrastructure,Infrastructure +500845,Infrastructure,Infrastructure +500841,Infrastructure,Infrastructure +500832,Infrastructure,Infrastructure +500830,Infrastructure,Infrastructure +500828,Infrastructure,Infrastructure +500827,Infrastructure,Infrastructure +500823,Infrastructure,Infrastructure +500822,Infrastructure,Infrastructure +500819,Infrastructure,Infrastructure +497627,Infrastructure,Infrastructure +497625,Infrastructure,Infrastructure +497623,Infrastructure,Infrastructure +497620,Infrastructure,Infrastructure +497618,Infrastructure,Infrastructure +497615,Infrastructure,Infrastructure +497612,Infrastructure,Infrastructure +497607,Infrastructure,Infrastructure +497605,Infrastructure,Infrastructure +497603,Infrastructure,Infrastructure +497600,Infrastructure,Infrastructure +494776,Infrastructure,Infrastructure +494775,Infrastructure,Infrastructure +494773,Infrastructure,Infrastructure +494772,Infrastructure,Infrastructure +494770,Infrastructure,Infrastructure +494767,Infrastructure,Infrastructure +494766,Infrastructure,Infrastructure +494765,Infrastructure,Infrastructure +494764,Infrastructure,Infrastructure +492620,Infrastructure,Infrastructure +492619,Infrastructure,Infrastructure +492618,Infrastructure,Infrastructure +492617,Infrastructure,Infrastructure +489430,Infrastructure,Infrastructure +489429,Infrastructure,Infrastructure +489428,Infrastructure,Infrastructure +487427,Infrastructure,Infrastructure +487423,Infrastructure,Infrastructure +483950,Infrastructure,Infrastructure +483948,Infrastructure,Infrastructure +483946,Infrastructure,Infrastructure +482139,Infrastructure,Infrastructure +479108,Infrastructure,Infrastructure +479107,Infrastructure,Infrastructure +477260,Infrastructure,Infrastructure +477259,Infrastructure,Infrastructure +477255,Infrastructure,Infrastructure +477253,Infrastructure,Infrastructure +477252,Infrastructure,Infrastructure +477250,Infrastructure,Infrastructure +477249,Infrastructure,Infrastructure +541074,International Trade,International Trade +539634,International Trade,International Trade +165087,International Trade,International Trade +163928,International Trade,International Trade +163926,International Trade,International Trade +163921,International Trade,International Trade +163917,International Trade,International Trade +163914,International Trade,International Trade +163911,International Trade,International Trade +163910,International Trade,International Trade +250859,International Trade,International Trade +248197,International Trade,International Trade +248196,International Trade,International Trade +248194,International Trade,International Trade +248193,International Trade,International Trade +248192,International Trade,International Trade +248191,International Trade,International Trade +248190,International Trade,International Trade +248189,International Trade,International Trade +235749,International Trade,International Trade +202540,International Trade,International Trade +202535,International Trade,International Trade +202533,International Trade,International Trade +202532,International Trade,International Trade +202529,International Trade,International Trade +192997,International Trade,International Trade +192996,International Trade,International Trade +192994,International Trade,International Trade +192992,International Trade,International Trade +192991,International Trade,International Trade +192990,International Trade,International Trade +170334,International Trade,International Trade +170333,International Trade,International Trade +170332,International Trade,International Trade +170331,International Trade,International Trade +170330,International Trade,International Trade +168094,International Trade,International Trade +168092,International Trade,International Trade +168089,International Trade,International Trade +168088,International Trade,International Trade +168087,International Trade,International Trade +168081,International Trade,International Trade +168080,International Trade,International Trade +168079,International Trade,International Trade +168078,International Trade,International Trade +168074,International Trade,International Trade +168073,International Trade,International Trade +168072,International Trade,International Trade +429230,International Trade,International Trade +426460,International Trade,International Trade +426452,International Trade,International Trade +426450,International Trade,International Trade +426447,International Trade,International Trade +424444,International Trade,International Trade +422213,International Trade,International Trade +413718,International Trade,International Trade +409837,International Trade,International Trade +408075,International Trade,International Trade +408072,International Trade,International Trade +406115,International Trade,International Trade +406114,International Trade,International Trade +406113,International Trade,International Trade +406112,International Trade,International Trade +406109,International Trade,International Trade +534971,International Trade,International Trade +534970,International Trade,International Trade +534969,International Trade,International Trade +534968,International Trade,International Trade +534966,International Trade,International Trade +519985,International Trade,International Trade +519976,International Trade,International Trade +517002,International Trade,International Trade +517001,International Trade,International Trade +515329,International Trade,International Trade +514589,International Trade,International Trade +514588,International Trade,International Trade +514586,International Trade,International Trade +514585,International Trade,International Trade +514584,International Trade,International Trade +514583,International Trade,International Trade +514582,International Trade,International Trade +513918,International Trade,International Trade +513917,International Trade,International Trade +512238,International Trade,International Trade +512237,International Trade,International Trade +512235,International Trade,International Trade +512234,International Trade,International Trade +512232,International Trade,International Trade +512230,International Trade,International Trade +512229,International Trade,International Trade +509591,International Trade,International Trade +509589,International Trade,International Trade +509585,International Trade,International Trade +509584,International Trade,International Trade +509582,International Trade,International Trade +509581,International Trade,International Trade +506553,International Trade,International Trade +506546,International Trade,International Trade +506544,International Trade,International Trade +506542,International Trade,International Trade +504616,International Trade,International Trade +504613,International Trade,International Trade +504612,International Trade,International Trade +504611,International Trade,International Trade +504610,International Trade,International Trade +504609,International Trade,International Trade +500858,International Trade,International Trade +500857,International Trade,International Trade +500845,International Trade,International Trade +500841,International Trade,International Trade +500835,International Trade,International Trade +500833,International Trade,International Trade +500832,International Trade,International Trade +500828,International Trade,International Trade +500827,International Trade,International Trade +500825,International Trade,International Trade +500823,International Trade,International Trade +500822,International Trade,International Trade +500819,International Trade,International Trade +500818,International Trade,International Trade +497627,International Trade,International Trade +497625,International Trade,International Trade +497623,International Trade,International Trade +497620,International Trade,International Trade +497618,International Trade,International Trade +497615,International Trade,International Trade +497612,International Trade,International Trade +497607,International Trade,International Trade +497605,International Trade,International Trade +497603,International Trade,International Trade +497600,International Trade,International Trade +494776,International Trade,International Trade +494775,International Trade,International Trade +494773,International Trade,International Trade +494772,International Trade,International Trade +494770,International Trade,International Trade +494767,International Trade,International Trade +494764,International Trade,International Trade +474746,International Trade,International Trade +467913,International Trade,International Trade +467905,International Trade,International Trade +467894,International Trade,International Trade +464241,International Trade,International Trade +464240,International Trade,International Trade +464239,International Trade,International Trade +462194,International Trade,International Trade +462193,International Trade,International Trade +462192,International Trade,International Trade +457267,International Trade,International Trade +457265,International Trade,International Trade +457264,International Trade,International Trade +457254,International Trade,International Trade +452599,International Trade,International Trade +452597,International Trade,International Trade +452596,International Trade,International Trade +452595,International Trade,International Trade +449821,International Trade,International Trade +449820,International Trade,International Trade +449819,International Trade,International Trade +442480,International Trade,International Trade +84114,Health,Health +544123,Government Procurement,Government Procurement +443780,Industry,Industry +107215,Intellectual Property,Intellectual Property +370959,Justice and Law Enforcement,Justice and Law Enforcement +530908,Employment and Training,Employment and Training +486819,Employment and Training,Employment and Training +447468,Immigration,Immigration +476844,Infrastructure,Infrastructure +528505,International Relations,International Relations +531362,International Trade,International Trade +124839,Other,University Research +86275,Intellectual Property,Intellectual Property +469634,Financial Institutions,Financial Institutions +401943,Infrastructure,Infrastructure +459056,International Trade,International Trade +450810,Taxation and Finance,Taxation and Finance +124715,Other,Pension regulation +155783,Environment,Environment +366532,Agriculture,Agriculture +398773,Constitutional Issues,Constitutional Issues +315755,Consumer Issues,Consumer Issues +507356,Employment and Training,Employment and Training +531349,Financial Institutions,Financial Institutions +507363,Industry,Industry +324668,Internal Trade,Internal Trade +402881,International Trade,International Trade +428611,Justice and Law Enforcement,Justice and Law Enforcement +419454,Labour,Labour +531349,Small Business,Small Business +428620,Taxation and Finance,Taxation and Finance +118255,Government Procurement,Government Procurement +174386,International Trade,International Trade +225593,Consumer Issues,Consumer Issues +379502,Consumer Issues,Consumer Issues +160121,Consumer Issues,Consumer Issues +160121,Education,Education +160121,Industry,Industry +414037,Intellectual Property,Intellectual Property +403033,Energy,Energy +535418,Environment,Environment +525886,Industry,Industry +171861,International Relations,International Relations +475131,International Trade,International Trade +227298,Labour,Labour +467679,Transportation,Transportation +406845,Employment and Training,Employment and Training +435809,Energy,Energy +449818,Environment,Environment +431245,Industry,Industry +477248,Infrastructure,Infrastructure +435814,International Trade,International Trade +125133,Regional Development,Regional Development +155569,Transportation,Transportation +90237,Other,Energy Transportation / pipelines +151598,Environment,Environment +151598,Transportation,Transportation +76514,Industry,Industry +102721,Environment,Environment +102721,Health,Health +422744,Agriculture,Agriculture +429822,Environment,Environment +457847,Health,Health +424695,International Trade,International Trade +424986,Small Business,Small Business +380168,Taxation and Finance,Taxation and Finance +405825,Health,Health +188828,Industry,Industry +407419,Intellectual Property,Intellectual Property +188831,Taxation and Finance,Taxation and Finance +202530,Regional Development,Regional Development +84765,Other,Energy Transportation / pipelines +84764,Other,Energy Transportation / pipelines +84763,Other,Energy Transportation / pipelines +84762,Other,Energy Transportation / pipelines +84761,Other,Energy Transportation / pipelines +84758,Other,Energy Transportation / pipelines +82976,Other,Energy Transportation / pipelines +82975,Other,Energy Transportation / pipelines +82974,Other,Energy Transportation / pipelines +77228,Other,Energy Transportation / pipelines +74635,Other,Energy Transportation / pipelines +103060,Other,Energy Transportation / pipelines +103059,Other,Energy Transportation / pipelines +103058,Other,Energy Transportation / pipelines +103057,Other,Energy Transportation / pipelines +103056,Other,Energy Transportation / pipelines +100419,Other,Energy Transportation / pipelines +100418,Other,Energy Transportation / pipelines +100416,Other,Energy Transportation / pipelines +137274,Environment,Environment +422743,Agriculture,Agriculture +516020,Agriculture,Agriculture +89913,Agriculture,Agriculture +380169,Agriculture,Agriculture +445880,Agriculture,Agriculture +432744,Agriculture,Agriculture +427799,Agriculture,Agriculture +422752,Agriculture,Agriculture +422750,Agriculture,Agriculture +422749,Agriculture,Agriculture +422748,Agriculture,Agriculture +422747,Agriculture,Agriculture +422745,Agriculture,Agriculture +427799,Environment,Environment +427363,Environment,Environment +478955,Environment,Environment +446535,Environment,Environment +445880,Environment,Environment +440617,Environment,Environment +440616,Environment,Environment +440614,Environment,Environment +434127,Environment,Environment +434126,Environment,Environment +432744,Environment,Environment +456249,Health,Health +456248,Health,Health +115137,Health,Health +115136,Health,Health +115135,Health,Health +82795,Health,Health +186906,Health,Health +186905,Health,Health +186904,Health,Health +175833,Health,Health +173809,Health,Health +173808,Health,Health +173807,Health,Health +173788,Health,Health +173787,Health,Health +173786,Health,Health +173785,Health,Health +173784,Health,Health +168039,Health,Health +168037,Health,Health +168036,Health,Health +168034,Health,Health +168033,Health,Health +166210,Health,Health +166207,Health,Health +163712,Health,Health +163711,Health,Health +160501,Health,Health +160499,Health,Health +160498,Health,Health +260052,Health,Health +260050,Health,Health +260049,Health,Health +260033,Health,Health +260032,Health,Health +260030,Health,Health +252075,Health,Health +246049,Health,Health +246048,Health,Health +246047,Health,Health +246046,Health,Health +246045,Health,Health +246044,Health,Health +246043,Health,Health +246042,Health,Health +246041,Health,Health +246040,Health,Health +246039,Health,Health +246038,Health,Health +238971,Health,Health +238970,Health,Health +238969,Health,Health +229290,Health,Health +226961,Health,Health +226960,Health,Health +226958,Health,Health +226956,Health,Health +226954,Health,Health +224060,Health,Health +224058,Health,Health +224056,Health,Health +220428,Health,Health +220427,Health,Health +220407,Health,Health +217630,Health,Health +211555,Health,Health +211554,Health,Health +211552,Health,Health +211551,Health,Health +211550,Health,Health +211549,Health,Health +211548,Health,Health +207088,Health,Health +207087,Health,Health +203330,Health,Health +199663,Health,Health +195463,Health,Health +195364,Health,Health +195346,Health,Health +195345,Health,Health +195344,Health,Health +191324,Health,Health +186908,Health,Health +186907,Health,Health +370388,Health,Health +370387,Health,Health +370381,Health,Health +370380,Health,Health +370379,Health,Health +370377,Health,Health +370376,Health,Health +370375,Health,Health +370373,Health,Health +368313,Health,Health +366511,Health,Health +366425,Health,Health +365213,Health,Health +365212,Health,Health +365211,Health,Health +365210,Health,Health +365208,Health,Health +357677,Health,Health +356898,Health,Health +355222,Health,Health +355221,Health,Health +352535,Health,Health +351669,Health,Health +346907,Health,Health +346903,Health,Health +346899,Health,Health +344339,Health,Health +340191,Health,Health +337896,Health,Health +337895,Health,Health +337893,Health,Health +337892,Health,Health +337891,Health,Health +337890,Health,Health +337888,Health,Health +337887,Health,Health +337886,Health,Health +337884,Health,Health +337882,Health,Health +337880,Health,Health +337864,Health,Health +333541,Health,Health +333540,Health,Health +331749,Health,Health +328102,Health,Health +328100,Health,Health +328099,Health,Health +328098,Health,Health +327338,Health,Health +325985,Health,Health +322669,Health,Health +320391,Health,Health +320390,Health,Health +320389,Health,Health +310032,Health,Health +308969,Health,Health +301760,Health,Health +301759,Health,Health +301758,Health,Health +301757,Health,Health +301755,Health,Health +301754,Health,Health +301752,Health,Health +301751,Health,Health +301750,Health,Health +301749,Health,Health +301733,Health,Health +298609,Health,Health +295590,Health,Health +283769,Health,Health +271091,Health,Health +271090,Health,Health +271089,Health,Health +262121,Health,Health +262120,Health,Health +262118,Health,Health +262117,Health,Health +454376,Health,Health +453038,Health,Health +450904,Health,Health +450903,Health,Health +450902,Health,Health +450900,Health,Health +450899,Health,Health +450897,Health,Health +448754,Health,Health +446536,Health,Health +446535,Health,Health +446534,Health,Health +445880,Health,Health +440617,Health,Health +440616,Health,Health +440615,Health,Health +440614,Health,Health +439843,Health,Health +438031,Health,Health +437304,Health,Health +437283,Health,Health +437281,Health,Health +437275,Health,Health +437274,Health,Health +437271,Health,Health +437269,Health,Health +437267,Health,Health +437266,Health,Health +437264,Health,Health +437261,Health,Health +437256,Health,Health +437255,Health,Health +437252,Health,Health +434127,Health,Health +434126,Health,Health +431497,Health,Health +429822,Health,Health +427799,Health,Health +427417,Health,Health +427367,Health,Health +427366,Health,Health +427365,Health,Health +427364,Health,Health +427363,Health,Health +424986,Health,Health +424735,Health,Health +424696,Health,Health +424695,Health,Health +424694,Health,Health +424638,Health,Health +424636,Health,Health +424634,Health,Health +424633,Health,Health +424632,Health,Health +424631,Health,Health +424629,Health,Health +424627,Health,Health +423013,Health,Health +422752,Health,Health +422750,Health,Health +422749,Health,Health +422748,Health,Health +422747,Health,Health +422746,Health,Health +422745,Health,Health +422743,Health,Health +421103,Health,Health +417682,Health,Health +416780,Health,Health +416779,Health,Health +416770,Health,Health +414017,Health,Health +414016,Health,Health +414015,Health,Health +414014,Health,Health +414013,Health,Health +414012,Health,Health +414011,Health,Health +414010,Health,Health +414008,Health,Health +414007,Health,Health +414006,Health,Health +414005,Health,Health +414004,Health,Health +410488,Health,Health +410486,Health,Health +406324,Health,Health +403448,Health,Health +403447,Health,Health +400323,Health,Health +400321,Health,Health +400318,Health,Health +400317,Health,Health +400315,Health,Health +400313,Health,Health +400310,Health,Health +397322,Health,Health +397321,Health,Health +397320,Health,Health +394689,Health,Health +394230,Health,Health +389060,Health,Health +389059,Health,Health +389058,Health,Health +386839,Health,Health +386838,Health,Health +386837,Health,Health +386836,Health,Health +386835,Health,Health +386834,Health,Health +386833,Health,Health +386832,Health,Health +386830,Health,Health +386829,Health,Health +386826,Health,Health +386824,Health,Health +386093,Health,Health +386092,Health,Health +386091,Health,Health +386083,Health,Health +385280,Health,Health +385279,Health,Health +385278,Health,Health +384399,Health,Health +384393,Health,Health +384392,Health,Health +384390,Health,Health +384389,Health,Health +384387,Health,Health +383986,Health,Health +382693,Health,Health +382532,Health,Health +380612,Health,Health +380174,Health,Health +380173,Health,Health +380172,Health,Health +380171,Health,Health +380170,Health,Health +380169,Health,Health +380168,Health,Health +377483,Health,Health +377482,Health,Health +375117,Health,Health +375116,Health,Health +373121,Health,Health +370691,Health,Health +545307,Health,Health +536997,Health,Health +523623,Health,Health +522143,Health,Health +516840,Health,Health +509427,Health,Health +505987,Health,Health +503728,Health,Health +503133,Health,Health +502250,Health,Health +502247,Health,Health +500884,Health,Health +500883,Health,Health +500473,Health,Health +500441,Health,Health +500241,Health,Health +500240,Health,Health +497040,Health,Health +496698,Health,Health +489296,Health,Health +488824,Health,Health +486158,Health,Health +486151,Health,Health +485643,Health,Health +482105,Health,Health +482027,Health,Health +482025,Health,Health +482023,Health,Health +482022,Health,Health +482021,Health,Health +480765,Health,Health +480764,Health,Health +480763,Health,Health +480761,Health,Health +480760,Health,Health +480759,Health,Health +480758,Health,Health +480757,Health,Health +480755,Health,Health +479769,Health,Health +478955,Health,Health +465356,Health,Health +465237,Health,Health +463737,Health,Health +462901,Health,Health +462361,Health,Health +460956,Health,Health +460820,Health,Health +424634,International Trade,International Trade +424631,International Trade,International Trade +380174,International Trade,International Trade +380173,International Trade,International Trade +380172,International Trade,International Trade +521378,International Trade,International Trade +465356,International Trade,International Trade +450903,International Trade,International Trade +446534,International Trade,International Trade +437266,International Trade,International Trade +431497,International Trade,International Trade +427365,International Trade,International Trade +424696,International Trade,International Trade +424735,Small Business,Small Business +424696,Small Business,Small Business +238971,Small Business,Small Business +238970,Small Business,Small Business +238969,Small Business,Small Business +224060,Small Business,Small Business +220428,Small Business,Small Business +220407,Small Business,Small Business +217630,Small Business,Small Business +207088,Small Business,Small Business +207087,Small Business,Small Business +357677,Small Business,Small Business +356898,Small Business,Small Business +355222,Small Business,Small Business +355221,Small Business,Small Business +352535,Small Business,Small Business +351669,Small Business,Small Business +346907,Small Business,Small Business +346903,Small Business,Small Business +346899,Small Business,Small Business +344339,Small Business,Small Business +340191,Small Business,Small Business +337896,Small Business,Small Business +337895,Small Business,Small Business +337893,Small Business,Small Business +337892,Small Business,Small Business +337891,Small Business,Small Business +337890,Small Business,Small Business +337888,Small Business,Small Business +337887,Small Business,Small Business +337886,Small Business,Small Business +337884,Small Business,Small Business +337882,Small Business,Small Business +337880,Small Business,Small Business +337864,Small Business,Small Business +333541,Small Business,Small Business +333540,Small Business,Small Business +331749,Small Business,Small Business +328102,Small Business,Small Business +328100,Small Business,Small Business +328099,Small Business,Small Business +328098,Small Business,Small Business +327338,Small Business,Small Business +325985,Small Business,Small Business +322669,Small Business,Small Business +320391,Small Business,Small Business +320390,Small Business,Small Business +320389,Small Business,Small Business +310032,Small Business,Small Business +308969,Small Business,Small Business +301760,Small Business,Small Business +301759,Small Business,Small Business +301758,Small Business,Small Business +301757,Small Business,Small Business +301755,Small Business,Small Business +301754,Small Business,Small Business +301752,Small Business,Small Business +301751,Small Business,Small Business +301750,Small Business,Small Business +301749,Small Business,Small Business +301733,Small Business,Small Business +298609,Small Business,Small Business +295590,Small Business,Small Business +283769,Small Business,Small Business +271091,Small Business,Small Business +271089,Small Business,Small Business +260050,Small Business,Small Business +260049,Small Business,Small Business +260033,Small Business,Small Business +260032,Small Business,Small Business +260030,Small Business,Small Business +246048,Small Business,Small Business +424634,Small Business,Small Business +424633,Small Business,Small Business +424632,Small Business,Small Business +424627,Small Business,Small Business +423014,Small Business,Small Business +423013,Small Business,Small Business +422750,Small Business,Small Business +422744,Small Business,Small Business +422743,Small Business,Small Business +421103,Small Business,Small Business +417682,Small Business,Small Business +416780,Small Business,Small Business +416779,Small Business,Small Business +416770,Small Business,Small Business +414017,Small Business,Small Business +414016,Small Business,Small Business +414015,Small Business,Small Business +414014,Small Business,Small Business +414013,Small Business,Small Business +414012,Small Business,Small Business +414011,Small Business,Small Business +414010,Small Business,Small Business +414008,Small Business,Small Business +414007,Small Business,Small Business +414006,Small Business,Small Business +414005,Small Business,Small Business +414004,Small Business,Small Business +410488,Small Business,Small Business +410486,Small Business,Small Business +406324,Small Business,Small Business +403448,Small Business,Small Business +403447,Small Business,Small Business +400323,Small Business,Small Business +400321,Small Business,Small Business +400318,Small Business,Small Business +400317,Small Business,Small Business +400315,Small Business,Small Business +400313,Small Business,Small Business +400310,Small Business,Small Business +397322,Small Business,Small Business +397321,Small Business,Small Business +397320,Small Business,Small Business +394689,Small Business,Small Business +394230,Small Business,Small Business +389060,Small Business,Small Business +389059,Small Business,Small Business +389058,Small Business,Small Business +386839,Small Business,Small Business +386838,Small Business,Small Business +386837,Small Business,Small Business +386836,Small Business,Small Business +386835,Small Business,Small Business +386834,Small Business,Small Business +386833,Small Business,Small Business +386832,Small Business,Small Business +386830,Small Business,Small Business +386829,Small Business,Small Business +386826,Small Business,Small Business +386824,Small Business,Small Business +386093,Small Business,Small Business +386092,Small Business,Small Business +386091,Small Business,Small Business +386083,Small Business,Small Business +385280,Small Business,Small Business +385279,Small Business,Small Business +385278,Small Business,Small Business +384399,Small Business,Small Business +384393,Small Business,Small Business +384392,Small Business,Small Business +384390,Small Business,Small Business +384389,Small Business,Small Business +384387,Small Business,Small Business +383986,Small Business,Small Business +382693,Small Business,Small Business +382532,Small Business,Small Business +380612,Small Business,Small Business +377483,Small Business,Small Business +377482,Small Business,Small Business +375117,Small Business,Small Business +375116,Small Business,Small Business +373121,Small Business,Small Business +370691,Small Business,Small Business +370388,Small Business,Small Business +370387,Small Business,Small Business +370381,Small Business,Small Business +370380,Small Business,Small Business +370379,Small Business,Small Business +370377,Small Business,Small Business +370376,Small Business,Small Business +370375,Small Business,Small Business +370373,Small Business,Small Business +368313,Small Business,Small Business +366511,Small Business,Small Business +366425,Small Business,Small Business +365213,Small Business,Small Business +365212,Small Business,Small Business +365211,Small Business,Small Business +365210,Small Business,Small Business +365208,Small Business,Small Business +545307,Small Business,Small Business +523623,Small Business,Small Business +505987,Small Business,Small Business +503728,Small Business,Small Business +503133,Small Business,Small Business +502250,Small Business,Small Business +502247,Small Business,Small Business +500884,Small Business,Small Business +500473,Small Business,Small Business +500441,Small Business,Small Business +500241,Small Business,Small Business +500240,Small Business,Small Business +497040,Small Business,Small Business +496698,Small Business,Small Business +489296,Small Business,Small Business +488824,Small Business,Small Business +486744,Small Business,Small Business +486151,Small Business,Small Business +485643,Small Business,Small Business +482105,Small Business,Small Business +482027,Small Business,Small Business +482025,Small Business,Small Business +482022,Small Business,Small Business +482021,Small Business,Small Business +480765,Small Business,Small Business +480764,Small Business,Small Business +480763,Small Business,Small Business +480761,Small Business,Small Business +480760,Small Business,Small Business +480759,Small Business,Small Business +480758,Small Business,Small Business +480757,Small Business,Small Business +480755,Small Business,Small Business +479769,Small Business,Small Business +478955,Small Business,Small Business +465356,Small Business,Small Business +463737,Small Business,Small Business +462901,Small Business,Small Business +462361,Small Business,Small Business +460820,Small Business,Small Business +457847,Small Business,Small Business +456249,Small Business,Small Business +456248,Small Business,Small Business +454376,Small Business,Small Business +453038,Small Business,Small Business +450904,Small Business,Small Business +450903,Small Business,Small Business +450902,Small Business,Small Business +450900,Small Business,Small Business +450899,Small Business,Small Business +450897,Small Business,Small Business +446536,Small Business,Small Business +446535,Small Business,Small Business +446534,Small Business,Small Business +445880,Small Business,Small Business +440617,Small Business,Small Business +439843,Small Business,Small Business +437304,Small Business,Small Business +437271,Small Business,Small Business +437267,Small Business,Small Business +437266,Small Business,Small Business +437261,Small Business,Small Business +437255,Small Business,Small Business +437252,Small Business,Small Business +434127,Small Business,Small Business +434126,Small Business,Small Business +432744,Small Business,Small Business +431497,Small Business,Small Business +429822,Small Business,Small Business +427366,Small Business,Small Business +427365,Small Business,Small Business +427364,Small Business,Small Business +427363,Small Business,Small Business +380171,Taxation and Finance,Taxation and Finance +405824,Health,Health +405823,Health,Health +149777,Health,Health +188830,Health,Health +188829,Health,Health +158988,Health,Health +396421,Health,Health +387618,Health,Health +385100,Health,Health +382843,Health,Health +380125,Health,Health +376353,Health,Health +376352,Health,Health +362043,Health,Health +359911,Health,Health +359910,Health,Health +359909,Health,Health +336015,Health,Health +336012,Health,Health +302992,Health,Health +258049,Health,Health +229969,Health,Health +518360,Health,Health +518357,Health,Health +511282,Health,Health +504732,Health,Health +468243,Health,Health +468240,Health,Health +468238,Health,Health +468235,Health,Health +465033,Health,Health +437066,Health,Health +432057,Health,Health +432056,Health,Health +421609,Health,Health +421608,Health,Health +421607,Health,Health +418295,Health,Health +418294,Health,Health +414871,Health,Health +414870,Health,Health +414869,Health,Health +414868,Health,Health +414867,Health,Health +413001,Health,Health +413000,Health,Health +410288,Health,Health +410286,Health,Health +410285,Health,Health +410284,Health,Health +410283,Health,Health +372368,Industry,Industry +504732,Industry,Industry +100718,Industry,Industry +100717,Industry,Industry +100716,Industry,Industry +100714,Industry,Industry +175807,Industry,Industry +175805,Industry,Industry +160657,Industry,Industry +149777,Industry,Industry +100719,Industry,Industry +359911,Industry,Industry +359910,Industry,Industry +359909,Industry,Industry +336015,Industry,Industry +336012,Industry,Industry +302992,Industry,Industry +287189,Industry,Industry +215835,Industry,Industry +193112,Industry,Industry +193111,Industry,Industry +193110,Industry,Industry +193109,Industry,Industry +193108,Industry,Industry +193107,Industry,Industry +193106,Industry,Industry +193101,Industry,Industry +193099,Industry,Industry +188831,Industry,Industry +396421,Intellectual Property,Intellectual Property +376352,Intellectual Property,Intellectual Property +161725,Intellectual Property,Intellectual Property +160657,Intellectual Property,Intellectual Property +149777,Intellectual Property,Intellectual Property +211168,Intellectual Property,Intellectual Property +211167,Intellectual Property,Intellectual Property +202027,Intellectual Property,Intellectual Property +197429,Intellectual Property,Intellectual Property +197409,Intellectual Property,Intellectual Property +197408,Intellectual Property,Intellectual Property +197407,Intellectual Property,Intellectual Property +193112,Intellectual Property,Intellectual Property +193111,Intellectual Property,Intellectual Property +193110,Intellectual Property,Intellectual Property +193109,Intellectual Property,Intellectual Property +193108,Intellectual Property,Intellectual Property +193107,Intellectual Property,Intellectual Property +193106,Intellectual Property,Intellectual Property +193101,Intellectual Property,Intellectual Property +193099,Intellectual Property,Intellectual Property +175807,Intellectual Property,Intellectual Property +175805,Intellectual Property,Intellectual Property +327761,Intellectual Property,Intellectual Property +327760,Intellectual Property,Intellectual Property +327759,Intellectual Property,Intellectual Property +327757,Intellectual Property,Intellectual Property +327756,Intellectual Property,Intellectual Property +327755,Intellectual Property,Intellectual Property +277773,Intellectual Property,Intellectual Property +258049,Intellectual Property,Intellectual Property +244312,Intellectual Property,Intellectual Property +244311,Intellectual Property,Intellectual Property +244310,Intellectual Property,Intellectual Property +244309,Intellectual Property,Intellectual Property +229970,Intellectual Property,Intellectual Property +222709,Intellectual Property,Intellectual Property +222708,Intellectual Property,Intellectual Property +222707,Intellectual Property,Intellectual Property +215834,Intellectual Property,Intellectual Property +215833,Intellectual Property,Intellectual Property +359911,Intellectual Property,Intellectual Property +359910,Intellectual Property,Intellectual Property +504732,Intellectual Property,Intellectual Property +465033,Intellectual Property,Intellectual Property +437066,Intellectual Property,Intellectual Property +432057,Intellectual Property,Intellectual Property +432056,Intellectual Property,Intellectual Property +418295,Intellectual Property,Intellectual Property +418294,Intellectual Property,Intellectual Property +414871,Intellectual Property,Intellectual Property +414870,Intellectual Property,Intellectual Property +414869,Intellectual Property,Intellectual Property +414868,Intellectual Property,Intellectual Property +414867,Intellectual Property,Intellectual Property +413001,Intellectual Property,Intellectual Property +413000,Intellectual Property,Intellectual Property +410288,Intellectual Property,Intellectual Property +410286,Intellectual Property,Intellectual Property +410285,Intellectual Property,Intellectual Property +410284,Intellectual Property,Intellectual Property +410283,Intellectual Property,Intellectual Property +410282,Intellectual Property,Intellectual Property +324158,Health,Health +415532,Environment,Environment +415529,Environment,Environment +148006,Environment,Environment +148005,Environment,Environment +148004,Environment,Environment +148003,Environment,Environment +177065,Environment,Environment +175099,Environment,Environment +175098,Environment,Environment +175097,Environment,Environment +171190,Environment,Environment +171189,Environment,Environment +171188,Environment,Environment +171187,Environment,Environment +171186,Environment,Environment +163830,Environment,Environment +163829,Environment,Environment +163828,Environment,Environment +163827,Environment,Environment +163826,Environment,Environment +163825,Environment,Environment +163824,Environment,Environment +161880,Environment,Environment +161871,Environment,Environment +161869,Environment,Environment +161867,Environment,Environment +161866,Environment,Environment +161864,Environment,Environment +161851,Environment,Environment +161848,Environment,Environment +161845,Environment,Environment +161844,Environment,Environment +161843,Environment,Environment +161842,Environment,Environment +161841,Environment,Environment +161840,Environment,Environment +161839,Environment,Environment +161838,Environment,Environment +161837,Environment,Environment +161836,Environment,Environment +161835,Environment,Environment +161833,Environment,Environment +156867,Environment,Environment +151181,Environment,Environment +151180,Environment,Environment +151179,Environment,Environment +151178,Environment,Environment +148008,Environment,Environment +148007,Environment,Environment +207126,Environment,Environment +203667,Environment,Environment +202763,Environment,Environment +200290,Environment,Environment +200287,Environment,Environment +200283,Environment,Environment +200281,Environment,Environment +200278,Environment,Environment +200276,Environment,Environment +200274,Environment,Environment +200272,Environment,Environment +200270,Environment,Environment +200265,Environment,Environment +200264,Environment,Environment +200261,Environment,Environment +200259,Environment,Environment +200258,Environment,Environment +200249,Environment,Environment +200247,Environment,Environment +200246,Environment,Environment +200242,Environment,Environment +200240,Environment,Environment +200238,Environment,Environment +200235,Environment,Environment +200234,Environment,Environment +200232,Environment,Environment +200231,Environment,Environment +200229,Environment,Environment +200225,Environment,Environment +200224,Environment,Environment +200222,Environment,Environment +200220,Environment,Environment +200218,Environment,Environment +200217,Environment,Environment +200215,Environment,Environment +200214,Environment,Environment +200212,Environment,Environment +200211,Environment,Environment +200210,Environment,Environment +200208,Environment,Environment +200207,Environment,Environment +200206,Environment,Environment +200205,Environment,Environment +200204,Environment,Environment +200201,Environment,Environment +200200,Environment,Environment +200199,Environment,Environment +200198,Environment,Environment +200197,Environment,Environment +200194,Environment,Environment +200193,Environment,Environment +200192,Environment,Environment +200191,Environment,Environment +200190,Environment,Environment +200188,Environment,Environment +200187,Environment,Environment +200186,Environment,Environment +200185,Environment,Environment +200184,Environment,Environment +200183,Environment,Environment +200182,Environment,Environment +200181,Environment,Environment +200180,Environment,Environment +200178,Environment,Environment +200174,Environment,Environment +200173,Environment,Environment +200172,Environment,Environment +200171,Environment,Environment +200170,Environment,Environment +200168,Environment,Environment +199851,Environment,Environment +199849,Environment,Environment +199847,Environment,Environment +199845,Environment,Environment +199843,Environment,Environment +199841,Environment,Environment +199835,Environment,Environment +199831,Environment,Environment +199822,Environment,Environment +199796,Environment,Environment +199795,Environment,Environment +199793,Environment,Environment +199792,Environment,Environment +199791,Environment,Environment +305182,Environment,Environment +305181,Environment,Environment +305180,Environment,Environment +305179,Environment,Environment +305178,Environment,Environment +305177,Environment,Environment +305176,Environment,Environment +305175,Environment,Environment +305174,Environment,Environment +305173,Environment,Environment +305172,Environment,Environment +305171,Environment,Environment +305170,Environment,Environment +305169,Environment,Environment +305166,Environment,Environment +305165,Environment,Environment +305163,Environment,Environment +305162,Environment,Environment +305161,Environment,Environment +305160,Environment,Environment +305159,Environment,Environment +305158,Environment,Environment +305157,Environment,Environment +305155,Environment,Environment +305154,Environment,Environment +305153,Environment,Environment +305152,Environment,Environment +305151,Environment,Environment +305150,Environment,Environment +305149,Environment,Environment +305147,Environment,Environment +305146,Environment,Environment +305145,Environment,Environment +305144,Environment,Environment +305143,Environment,Environment +305142,Environment,Environment +305141,Environment,Environment +305140,Environment,Environment +305139,Environment,Environment +305138,Environment,Environment +305137,Environment,Environment +305136,Environment,Environment +305135,Environment,Environment +305134,Environment,Environment +305133,Environment,Environment +305132,Environment,Environment +305131,Environment,Environment +305130,Environment,Environment +305129,Environment,Environment +305128,Environment,Environment +305127,Environment,Environment +305126,Environment,Environment +305125,Environment,Environment +305124,Environment,Environment +305123,Environment,Environment +305122,Environment,Environment +305121,Environment,Environment +305120,Environment,Environment +305119,Environment,Environment +305118,Environment,Environment +305117,Environment,Environment +305116,Environment,Environment +305115,Environment,Environment +305113,Environment,Environment +296636,Environment,Environment +296634,Environment,Environment +280880,Environment,Environment +280879,Environment,Environment +280878,Environment,Environment +280877,Environment,Environment +278010,Environment,Environment +278009,Environment,Environment +273585,Environment,Environment +273582,Environment,Environment +273581,Environment,Environment +273580,Environment,Environment +273578,Environment,Environment +269351,Environment,Environment +269349,Environment,Environment +269338,Environment,Environment +269337,Environment,Environment +269335,Environment,Environment +255689,Environment,Environment +250268,Environment,Environment +250266,Environment,Environment +250265,Environment,Environment +250262,Environment,Environment +250261,Environment,Environment +250260,Environment,Environment +250258,Environment,Environment +250257,Environment,Environment +250255,Environment,Environment +250254,Environment,Environment +250251,Environment,Environment +250247,Environment,Environment +250245,Environment,Environment +250243,Environment,Environment +250242,Environment,Environment +250241,Environment,Environment +250240,Environment,Environment +250239,Environment,Environment +250238,Environment,Environment +250237,Environment,Environment +250236,Environment,Environment +250235,Environment,Environment +250232,Environment,Environment +250171,Environment,Environment +250169,Environment,Environment +250152,Environment,Environment +250151,Environment,Environment +250150,Environment,Environment +250149,Environment,Environment +250131,Environment,Environment +250130,Environment,Environment +250129,Environment,Environment +249543,Environment,Environment +249542,Environment,Environment +249541,Environment,Environment +249540,Environment,Environment +249539,Environment,Environment +249538,Environment,Environment +249537,Environment,Environment +249536,Environment,Environment +249534,Environment,Environment +249533,Environment,Environment +249532,Environment,Environment +249531,Environment,Environment +249529,Environment,Environment +249528,Environment,Environment +249527,Environment,Environment +249525,Environment,Environment +249524,Environment,Environment +249521,Environment,Environment +249519,Environment,Environment +249518,Environment,Environment +249516,Environment,Environment +249515,Environment,Environment +249514,Environment,Environment +249512,Environment,Environment +249511,Environment,Environment +249510,Environment,Environment +249509,Environment,Environment +249508,Environment,Environment +249506,Environment,Environment +249504,Environment,Environment +249503,Environment,Environment +249502,Environment,Environment +249501,Environment,Environment +249500,Environment,Environment +249499,Environment,Environment +249498,Environment,Environment +249496,Environment,Environment +249495,Environment,Environment +249494,Environment,Environment +249491,Environment,Environment +249228,Environment,Environment +249226,Environment,Environment +249225,Environment,Environment +249224,Environment,Environment +249223,Environment,Environment +249220,Environment,Environment +249219,Environment,Environment +249218,Environment,Environment +249216,Environment,Environment +249215,Environment,Environment +249213,Environment,Environment +249212,Environment,Environment +249211,Environment,Environment +249210,Environment,Environment +244875,Environment,Environment +244873,Environment,Environment +235970,Environment,Environment +235969,Environment,Environment +223081,Environment,Environment +223077,Environment,Environment +223074,Environment,Environment +212279,Environment,Environment +212277,Environment,Environment +207127,Environment,Environment +415528,Environment,Environment +415527,Environment,Environment +415526,Environment,Environment +415524,Environment,Environment +415523,Environment,Environment +415522,Environment,Environment +415521,Environment,Environment +409714,Environment,Environment +409712,Environment,Environment +409711,Environment,Environment +409710,Environment,Environment +409709,Environment,Environment +406749,Environment,Environment +405405,Environment,Environment +405403,Environment,Environment +405401,Environment,Environment +405397,Environment,Environment +405394,Environment,Environment +405389,Environment,Environment +405387,Environment,Environment +405382,Environment,Environment +405376,Environment,Environment +398844,Environment,Environment +398843,Environment,Environment +396762,Environment,Environment +394186,Environment,Environment +394185,Environment,Environment +394183,Environment,Environment +392631,Environment,Environment +391483,Environment,Environment +391481,Environment,Environment +391479,Environment,Environment +391477,Environment,Environment +391474,Environment,Environment +391472,Environment,Environment +391471,Environment,Environment +391470,Environment,Environment +391468,Environment,Environment +391466,Environment,Environment +391464,Environment,Environment +391462,Environment,Environment +391460,Environment,Environment +391457,Environment,Environment +391166,Environment,Environment +391164,Environment,Environment +391161,Environment,Environment +391158,Environment,Environment +391156,Environment,Environment +391153,Environment,Environment +391152,Environment,Environment +391143,Environment,Environment +391142,Environment,Environment +391141,Environment,Environment +391140,Environment,Environment +391136,Environment,Environment +391135,Environment,Environment +391134,Environment,Environment +391132,Environment,Environment +390870,Environment,Environment +390869,Environment,Environment +390866,Environment,Environment +390864,Environment,Environment +390862,Environment,Environment +390861,Environment,Environment +390858,Environment,Environment +390856,Environment,Environment +390853,Environment,Environment +390851,Environment,Environment +390849,Environment,Environment +390846,Environment,Environment +390842,Environment,Environment +390840,Environment,Environment +390836,Environment,Environment +390832,Environment,Environment +390829,Environment,Environment +390826,Environment,Environment +390821,Environment,Environment +390818,Environment,Environment +390816,Environment,Environment +390812,Environment,Environment +390810,Environment,Environment +390808,Environment,Environment +390806,Environment,Environment +390804,Environment,Environment +390802,Environment,Environment +390798,Environment,Environment +390797,Environment,Environment +390794,Environment,Environment +390791,Environment,Environment +390789,Environment,Environment +390788,Environment,Environment +390785,Environment,Environment +390784,Environment,Environment +390782,Environment,Environment +390780,Environment,Environment +390778,Environment,Environment +390776,Environment,Environment +390774,Environment,Environment +390773,Environment,Environment +390772,Environment,Environment +390771,Environment,Environment +390770,Environment,Environment +390769,Environment,Environment +390767,Environment,Environment +385599,Environment,Environment +385595,Environment,Environment +385585,Environment,Environment +379801,Environment,Environment +379799,Environment,Environment +377131,Environment,Environment +377130,Environment,Environment +377129,Environment,Environment +377128,Environment,Environment +377127,Environment,Environment +377126,Environment,Environment +377125,Environment,Environment +377124,Environment,Environment +375226,Environment,Environment +375225,Environment,Environment +375224,Environment,Environment +375223,Environment,Environment +372943,Environment,Environment +372942,Environment,Environment +372940,Environment,Environment +372938,Environment,Environment +372937,Environment,Environment +372936,Environment,Environment +372935,Environment,Environment +372933,Environment,Environment +372932,Environment,Environment +372930,Environment,Environment +372928,Environment,Environment +372926,Environment,Environment +369080,Environment,Environment +369075,Environment,Environment +369069,Environment,Environment +369068,Environment,Environment +369067,Environment,Environment +369066,Environment,Environment +369065,Environment,Environment +366521,Environment,Environment +366520,Environment,Environment +366519,Environment,Environment +366515,Environment,Environment +365001,Environment,Environment +365000,Environment,Environment +364999,Environment,Environment +364998,Environment,Environment +364997,Environment,Environment +363521,Environment,Environment +359813,Environment,Environment +358154,Environment,Environment +358153,Environment,Environment +356277,Environment,Environment +353565,Environment,Environment +353563,Environment,Environment +353562,Environment,Environment +353561,Environment,Environment +348877,Environment,Environment +348876,Environment,Environment +347266,Environment,Environment +347263,Environment,Environment +341973,Environment,Environment +341970,Environment,Environment +341967,Environment,Environment +341962,Environment,Environment +341958,Environment,Environment +341954,Environment,Environment +341948,Environment,Environment +341944,Environment,Environment +341938,Environment,Environment +341932,Environment,Environment +341927,Environment,Environment +341924,Environment,Environment +341891,Environment,Environment +341890,Environment,Environment +341887,Environment,Environment +341886,Environment,Environment +341884,Environment,Environment +341881,Environment,Environment +341880,Environment,Environment +341877,Environment,Environment +341876,Environment,Environment +341875,Environment,Environment +341873,Environment,Environment +341872,Environment,Environment +341869,Environment,Environment +341867,Environment,Environment +341866,Environment,Environment +341865,Environment,Environment +341863,Environment,Environment +341861,Environment,Environment +341859,Environment,Environment +341858,Environment,Environment +341856,Environment,Environment +341855,Environment,Environment +341853,Environment,Environment +341852,Environment,Environment +341851,Environment,Environment +341850,Environment,Environment +341849,Environment,Environment +341848,Environment,Environment +341846,Environment,Environment +341844,Environment,Environment +341842,Environment,Environment +341841,Environment,Environment +341839,Environment,Environment +341837,Environment,Environment +341836,Environment,Environment +341833,Environment,Environment +341832,Environment,Environment +341830,Environment,Environment +341826,Environment,Environment +341824,Environment,Environment +341823,Environment,Environment +341822,Environment,Environment +341820,Environment,Environment +341817,Environment,Environment +341813,Environment,Environment +341811,Environment,Environment +341810,Environment,Environment +341808,Environment,Environment +341806,Environment,Environment +341805,Environment,Environment +341803,Environment,Environment +341801,Environment,Environment +341799,Environment,Environment +341798,Environment,Environment +341797,Environment,Environment +341795,Environment,Environment +341794,Environment,Environment +341793,Environment,Environment +341791,Environment,Environment +338293,Environment,Environment +338291,Environment,Environment +338288,Environment,Environment +338287,Environment,Environment +338286,Environment,Environment +338283,Environment,Environment +338281,Environment,Environment +338276,Environment,Environment +338273,Environment,Environment +338271,Environment,Environment +338270,Environment,Environment +338267,Environment,Environment +332791,Environment,Environment +330085,Environment,Environment +329871,Environment,Environment +320493,Environment,Environment +320492,Environment,Environment +320491,Environment,Environment +318894,Environment,Environment +317889,Environment,Environment +312672,Environment,Environment +312671,Environment,Environment +311325,Environment,Environment +311324,Environment,Environment +311323,Environment,Environment +311322,Environment,Environment +311321,Environment,Environment +311320,Environment,Environment +311315,Environment,Environment +311314,Environment,Environment +311312,Environment,Environment +311311,Environment,Environment +311310,Environment,Environment +311307,Environment,Environment +311306,Environment,Environment +311304,Environment,Environment +311303,Environment,Environment +311302,Environment,Environment +311301,Environment,Environment +311300,Environment,Environment +311299,Environment,Environment +311298,Environment,Environment +311297,Environment,Environment +311296,Environment,Environment +311295,Environment,Environment +311294,Environment,Environment +311293,Environment,Environment +311292,Environment,Environment +311291,Environment,Environment +311290,Environment,Environment +311289,Environment,Environment +310175,Environment,Environment +305188,Environment,Environment +305187,Environment,Environment +305186,Environment,Environment +305185,Environment,Environment +305184,Environment,Environment +305183,Environment,Environment +541269,Environment,Environment +541268,Environment,Environment +538771,Environment,Environment +528720,Environment,Environment +528717,Environment,Environment +528706,Environment,Environment +528701,Environment,Environment +528695,Environment,Environment +528690,Environment,Environment +523338,Environment,Environment +522425,Environment,Environment +522422,Environment,Environment +520487,Environment,Environment +520408,Environment,Environment +520406,Environment,Environment +520404,Environment,Environment +520400,Environment,Environment +520399,Environment,Environment +516935,Environment,Environment +516934,Environment,Environment +507510,Environment,Environment +507508,Environment,Environment +507506,Environment,Environment +507504,Environment,Environment +504887,Environment,Environment +504885,Environment,Environment +502320,Environment,Environment +502315,Environment,Environment +502309,Environment,Environment +502305,Environment,Environment +499172,Environment,Environment +499163,Environment,Environment +499151,Environment,Environment +499147,Environment,Environment +499145,Environment,Environment +499134,Environment,Environment +494927,Environment,Environment +494926,Environment,Environment +494925,Environment,Environment +493409,Environment,Environment +493408,Environment,Environment +493407,Environment,Environment +493404,Environment,Environment +490430,Environment,Environment +490429,Environment,Environment +490426,Environment,Environment +488138,Environment,Environment +488053,Environment,Environment +488052,Environment,Environment +488029,Environment,Environment +487447,Environment,Environment +470841,Environment,Environment +462738,Environment,Environment +462736,Environment,Environment +459392,Environment,Environment +455612,Environment,Environment +455609,Environment,Environment +455607,Environment,Environment +449312,Environment,Environment +447941,Environment,Environment +447939,Environment,Environment +447933,Environment,Environment +442154,Environment,Environment +442153,Environment,Environment +442152,Environment,Environment +442151,Environment,Environment +442150,Environment,Environment +442148,Environment,Environment +442147,Environment,Environment +442146,Environment,Environment +442144,Environment,Environment +442143,Environment,Environment +442142,Environment,Environment +442141,Environment,Environment +442140,Environment,Environment +442139,Environment,Environment +442138,Environment,Environment +442137,Environment,Environment +442136,Environment,Environment +442134,Environment,Environment +442132,Environment,Environment +442131,Environment,Environment +442129,Environment,Environment +442128,Environment,Environment +442125,Environment,Environment +430729,Environment,Environment +425886,Environment,Environment +423814,Environment,Environment +423811,Environment,Environment +423809,Environment,Environment +417247,Environment,Environment +417246,Environment,Environment +417245,Environment,Environment +417243,Environment,Environment +417242,Environment,Environment +417241,Environment,Environment +417240,Environment,Environment +417239,Environment,Environment +417237,Environment,Environment +417236,Environment,Environment +417235,Environment,Environment +417234,Environment,Environment +417233,Environment,Environment +416406,Environment,Environment +416400,Environment,Environment +416396,Environment,Environment +416391,Environment,Environment +416385,Environment,Environment +416380,Environment,Environment +415621,Environment,Environment +415620,Environment,Environment +415618,Environment,Environment +415616,Environment,Environment +415615,Environment,Environment +415613,Environment,Environment +415610,Environment,Environment +415609,Environment,Environment +415607,Environment,Environment +415604,Environment,Environment +415602,Environment,Environment +415599,Environment,Environment +415595,Environment,Environment +415591,Environment,Environment +415588,Environment,Environment +415585,Environment,Environment +415581,Environment,Environment +415579,Environment,Environment +415572,Environment,Environment +415571,Environment,Environment +415570,Environment,Environment +415568,Environment,Environment +415567,Environment,Environment +415566,Environment,Environment +415563,Environment,Environment +415557,Environment,Environment +415556,Environment,Environment +415555,Environment,Environment +415553,Environment,Environment +415551,Environment,Environment +415550,Environment,Environment +415548,Environment,Environment +415546,Environment,Environment +415544,Environment,Environment +415542,Environment,Environment +415540,Environment,Environment +415539,Environment,Environment +415538,Environment,Environment +415537,Environment,Environment +415536,Environment,Environment +415535,Environment,Environment +415534,Environment,Environment +447939,Fisheries,Fisheries +447933,Fisheries,Fisheries +199822,Fisheries,Fisheries +199795,Fisheries,Fisheries +490426,Forestry,Forestry +459865,Industry,Industry +459864,Industry,Industry +145432,Industry,Industry +145431,Industry,Industry +134276,Industry,Industry +124814,Industry,Industry +88082,Industry,Industry +182404,Industry,Industry +174787,Industry,Industry +174786,Industry,Industry +174785,Industry,Industry +169485,Industry,Industry +169484,Industry,Industry +164905,Industry,Industry +164904,Industry,Industry +164464,Industry,Industry +162022,Industry,Industry +159011,Industry,Industry +159010,Industry,Industry +159009,Industry,Industry +159008,Industry,Industry +158187,Industry,Industry +156040,Industry,Industry +268569,Industry,Industry +264030,Industry,Industry +259572,Industry,Industry +259571,Industry,Industry +254749,Industry,Industry +250592,Industry,Industry +249752,Industry,Industry +245542,Industry,Industry +245254,Industry,Industry +241216,Industry,Industry +240656,Industry,Industry +236856,Industry,Industry +236853,Industry,Industry +226920,Industry,Industry +224707,Industry,Industry +202889,Industry,Industry +202496,Industry,Industry +202494,Industry,Industry +194924,Industry,Industry +194921,Industry,Industry +194915,Industry,Industry +188894,Industry,Industry +188892,Industry,Industry +182584,Industry,Industry +182544,Industry,Industry +182444,Industry,Industry +182424,Industry,Industry +365954,Industry,Industry +362429,Industry,Industry +359874,Industry,Industry +355863,Industry,Industry +354260,Industry,Industry +349058,Industry,Industry +348950,Industry,Industry +348947,Industry,Industry +348946,Industry,Industry +348944,Industry,Industry +348935,Industry,Industry +348931,Industry,Industry +347290,Industry,Industry +343299,Industry,Industry +341217,Industry,Industry +341193,Industry,Industry +338691,Industry,Industry +338682,Industry,Industry +335929,Industry,Industry +335927,Industry,Industry +335926,Industry,Industry +335920,Industry,Industry +335918,Industry,Industry +335190,Industry,Industry +335169,Industry,Industry +331339,Industry,Industry +329822,Industry,Industry +329821,Industry,Industry +327333,Industry,Industry +319137,Industry,Industry +310272,Industry,Industry +310271,Industry,Industry +303090,Industry,Industry +303089,Industry,Industry +296451,Industry,Industry +296450,Industry,Industry +291330,Industry,Industry +291329,Industry,Industry +287056,Industry,Industry +287055,Industry,Industry +280396,Industry,Industry +280395,Industry,Industry +280393,Industry,Industry +277447,Industry,Industry +277444,Industry,Industry +277443,Industry,Industry +277441,Industry,Industry +277438,Industry,Industry +457869,Industry,Industry +456834,Industry,Industry +456833,Industry,Industry +456832,Industry,Industry +456831,Industry,Industry +456830,Industry,Industry +454444,Industry,Industry +454438,Industry,Industry +454436,Industry,Industry +454435,Industry,Industry +454434,Industry,Industry +452302,Industry,Industry +447524,Industry,Industry +447519,Industry,Industry +443278,Industry,Industry +442339,Industry,Industry +437923,Industry,Industry +437915,Industry,Industry +437914,Industry,Industry +437913,Industry,Industry +437903,Industry,Industry +437901,Industry,Industry +436335,Industry,Industry +436334,Industry,Industry +435820,Industry,Industry +435811,Industry,Industry +435806,Industry,Industry +435804,Industry,Industry +435803,Industry,Industry +435797,Industry,Industry +435796,Industry,Industry +435794,Industry,Industry +435755,Industry,Industry +435743,Industry,Industry +433767,Industry,Industry +432435,Industry,Industry +432434,Industry,Industry +431084,Industry,Industry +431082,Industry,Industry +431074,Industry,Industry +431068,Industry,Industry +429499,Industry,Industry +429152,Industry,Industry +428833,Industry,Industry +428816,Industry,Industry +428804,Industry,Industry +426165,Industry,Industry +425747,Industry,Industry +425742,Industry,Industry +425720,Industry,Industry +425717,Industry,Industry +422295,Industry,Industry +422276,Industry,Industry +422078,Industry,Industry +422077,Industry,Industry +422076,Industry,Industry +422008,Industry,Industry +422002,Industry,Industry +422000,Industry,Industry +421998,Industry,Industry +421995,Industry,Industry +421991,Industry,Industry +421988,Industry,Industry +421986,Industry,Industry +421274,Industry,Industry +421267,Industry,Industry +421265,Industry,Industry +418697,Industry,Industry +418685,Industry,Industry +418684,Industry,Industry +418680,Industry,Industry +418676,Industry,Industry +417866,Industry,Industry +417839,Industry,Industry +417568,Industry,Industry +416678,Industry,Industry +415179,Industry,Industry +415129,Industry,Industry +415128,Industry,Industry +415126,Industry,Industry +414699,Industry,Industry +414211,Industry,Industry +414208,Industry,Industry +414110,Industry,Industry +414029,Industry,Industry +413563,Industry,Industry +413559,Industry,Industry +413536,Industry,Industry +413296,Industry,Industry +413092,Industry,Industry +413084,Industry,Industry +413080,Industry,Industry +412824,Industry,Industry +412804,Industry,Industry +412792,Industry,Industry +412778,Industry,Industry +412747,Industry,Industry +412703,Industry,Industry +412696,Industry,Industry +411920,Industry,Industry +411210,Industry,Industry +404191,Industry,Industry +404189,Industry,Industry +403681,Industry,Industry +399573,Industry,Industry +399572,Industry,Industry +396930,Industry,Industry +396920,Industry,Industry +396909,Industry,Industry +396896,Industry,Industry +393222,Industry,Industry +393177,Industry,Industry +389371,Industry,Industry +389224,Industry,Industry +388598,Industry,Industry +388594,Industry,Industry +384475,Industry,Industry +384474,Industry,Industry +384473,Industry,Industry +384472,Industry,Industry +383239,Industry,Industry +380180,Industry,Industry +377163,Industry,Industry +374242,Industry,Industry +374240,Industry,Industry +370357,Industry,Industry +370248,Industry,Industry +370247,Industry,Industry +370246,Industry,Industry +544627,Industry,Industry +543222,Industry,Industry +543221,Industry,Industry +541401,Industry,Industry +541397,Industry,Industry +539583,Industry,Industry +539480,Industry,Industry +539479,Industry,Industry +536658,Industry,Industry +536654,Industry,Industry +536652,Industry,Industry +536642,Industry,Industry +78294,Environment,Environment +324180,Health,Health +405379,Energy,Energy +415533,Environment,Environment +447941,Fisheries,Fisheries +490430,Forestry,Forestry +96578,Taxation and Finance,Taxation and Finance +96578,Other,Commercial transactions and securities regulation +459870,Industry,Industry +124140,Defence,Defence +220820,Government Procurement,Government Procurement +80319,Environment,Environment +85254,Energy,Energy +85254,Environment,Environment +109460,Intellectual Property,Intellectual Property +115077,Intellectual Property,Intellectual Property +246162,Health,Health +246162,Industry,Industry +194800,Intellectual Property,Intellectual Property +533041,Agriculture,Agriculture +167905,Consumer Issues,Consumer Issues +394730,Environment,Environment +442973,Health,Health +424285,International Trade,International Trade +99516,Agriculture,Agriculture +99516,Consumer Issues,Consumer Issues +78095,International Trade,International Trade +480865,Consumer Issues,Consumer Issues +416081,Financial Institutions,Financial Institutions +191265,Industry,Industry +445425,Taxation and Finance,Taxation and Finance +137657,Other,Housing Finance +533682,Industry,Industry +533681,Industry,Industry +533679,Industry,Industry +533406,Industry,Industry +533405,Industry,Industry +533404,Industry,Industry +533403,Industry,Industry +533401,Industry,Industry +533400,Industry,Industry +533398,Industry,Industry +531263,Industry,Industry +527566,Industry,Industry +527565,Industry,Industry +527561,Industry,Industry +521257,Industry,Industry +521255,Industry,Industry +521254,Industry,Industry +521252,Industry,Industry +521250,Industry,Industry +519196,Industry,Industry +518463,Industry,Industry +516752,Industry,Industry +516208,Industry,Industry +516207,Industry,Industry +516206,Industry,Industry +515160,Industry,Industry +515159,Industry,Industry +515158,Industry,Industry +514852,Industry,Industry +512270,Industry,Industry +512269,Industry,Industry +511894,Industry,Industry +511893,Industry,Industry +511889,Industry,Industry +511688,Industry,Industry +511662,Industry,Industry +509775,Industry,Industry +509773,Industry,Industry +509405,Industry,Industry +509109,Industry,Industry +507119,Industry,Industry +506925,Industry,Industry +506924,Industry,Industry +506343,Industry,Industry +506021,Industry,Industry +506020,Industry,Industry +506007,Industry,Industry +504946,Industry,Industry +504944,Industry,Industry +504940,Industry,Industry +503623,Industry,Industry +503519,Industry,Industry +503277,Industry,Industry +503276,Industry,Industry +503115,Industry,Industry +503114,Industry,Industry +503113,Industry,Industry +500697,Industry,Industry +500098,Industry,Industry +499928,Industry,Industry +499319,Industry,Industry +497768,Industry,Industry +497741,Industry,Industry +497551,Industry,Industry +497298,Industry,Industry +497230,Industry,Industry +497229,Industry,Industry +496929,Industry,Industry +496928,Industry,Industry +496665,Industry,Industry +496313,Industry,Industry +495210,Industry,Industry +495208,Industry,Industry +495207,Industry,Industry +494344,Industry,Industry +494046,Industry,Industry +494045,Industry,Industry +489273,Industry,Industry +488586,Industry,Industry +488579,Industry,Industry +488578,Industry,Industry +488577,Industry,Industry +488576,Industry,Industry +486235,Industry,Industry +485724,Industry,Industry +485713,Industry,Industry +485712,Industry,Industry +485509,Industry,Industry +485508,Industry,Industry +485506,Industry,Industry +485505,Industry,Industry +483117,Industry,Industry +482804,Industry,Industry +482699,Industry,Industry +481706,Industry,Industry +481187,Industry,Industry +480911,Industry,Industry +480593,Industry,Industry +478444,Industry,Industry +478436,Industry,Industry +478430,Industry,Industry +478428,Industry,Industry +478427,Industry,Industry +478426,Industry,Industry +470252,Industry,Industry +470250,Industry,Industry +470247,Industry,Industry +470244,Industry,Industry +466884,Industry,Industry +465865,Industry,Industry +465860,Industry,Industry +465858,Industry,Industry +465851,Industry,Industry +463767,Industry,Industry +463751,Industry,Industry +463750,Industry,Industry +462136,Industry,Industry +462135,Industry,Industry +462134,Industry,Industry +462133,Industry,Industry +462132,Industry,Industry +461035,Industry,Industry +461030,Industry,Industry +461028,Industry,Industry +460398,Industry,Industry +459899,Industry,Industry +459871,Industry,Industry +92835,Defence,Defence +81934,Defence,Defence +157564,Government Procurement,Government Procurement +157558,Government Procurement,Government Procurement +157548,Government Procurement,Government Procurement +80743,Energy,Energy +105705,Intellectual Property,Intellectual Property +246161,Health,Health +194800,Health,Health +132600,Health,Health +113818,Health,Health +89095,Health,Health +156646,Health,Health +154934,Health,Health +154930,Health,Health +246163,Health,Health +246161,Industry,Industry +194800,Industry,Industry +156647,Industry,Industry +156646,Industry,Industry +154934,Industry,Industry +154930,Industry,Industry +132600,Industry,Industry +246163,Industry,Industry +448736,Agriculture,Agriculture +442973,Agriculture,Agriculture +115814,Agriculture,Agriculture +200791,Agriculture,Agriculture +167905,Agriculture,Agriculture +167904,Agriculture,Agriculture +424285,Agriculture,Agriculture +394731,Agriculture,Agriculture +394730,Agriculture,Agriculture +366483,Agriculture,Agriculture +349301,Agriculture,Agriculture +319373,Agriculture,Agriculture +257510,Agriculture,Agriculture +257509,Agriculture,Agriculture +545082,Agriculture,Agriculture +394731,Consumer Issues,Consumer Issues +448736,Consumer Issues,Consumer Issues +167904,Consumer Issues,Consumer Issues +257510,Consumer Issues,Consumer Issues +200791,Consumer Issues,Consumer Issues +349301,Environment,Environment +448736,Environment,Environment +115814,Environment,Environment +200791,Environment,Environment +167905,Environment,Environment +167904,Environment,Environment +237549,Environment,Environment +394731,Environment,Environment +424285,Health,Health +394731,International Trade,International Trade +394730,International Trade,International Trade +115814,International Trade,International Trade +167905,International Trade,International Trade +167904,International Trade,International Trade +349301,International Trade,International Trade +319373,International Trade,International Trade +257510,International Trade,International Trade +257509,International Trade,International Trade +200791,International Trade,International Trade +448736,International Trade,International Trade +442973,International Trade,International Trade +99515,Agriculture,Agriculture +78094,Agriculture,Agriculture +99515,Consumer Issues,Consumer Issues +78094,Consumer Issues,Consumer Issues +467561,Consumer Issues,Consumer Issues +460696,Consumer Issues,Consumer Issues +187005,Consumer Issues,Consumer Issues +176824,Consumer Issues,Consumer Issues +175076,Consumer Issues,Consumer Issues +171704,Consumer Issues,Consumer Issues +165867,Consumer Issues,Consumer Issues +165406,Consumer Issues,Consumer Issues +165405,Consumer Issues,Consumer Issues +165404,Consumer Issues,Consumer Issues +382434,Consumer Issues,Consumer Issues +382432,Consumer Issues,Consumer Issues +382426,Consumer Issues,Consumer Issues +382423,Consumer Issues,Consumer Issues +380175,Consumer Issues,Consumer Issues +368153,Consumer Issues,Consumer Issues +368152,Consumer Issues,Consumer Issues +368151,Consumer Issues,Consumer Issues +368149,Consumer Issues,Consumer Issues +368148,Consumer Issues,Consumer Issues +358232,Consumer Issues,Consumer Issues +358230,Consumer Issues,Consumer Issues +358229,Consumer Issues,Consumer Issues +358228,Consumer Issues,Consumer Issues +358226,Consumer Issues,Consumer Issues +344157,Consumer Issues,Consumer Issues +340358,Consumer Issues,Consumer Issues +340357,Consumer Issues,Consumer Issues +340355,Consumer Issues,Consumer Issues +340354,Consumer Issues,Consumer Issues +331485,Consumer Issues,Consumer Issues +331484,Consumer Issues,Consumer Issues +319038,Consumer Issues,Consumer Issues +319036,Consumer Issues,Consumer Issues +311246,Consumer Issues,Consumer Issues +311242,Consumer Issues,Consumer Issues +311241,Consumer Issues,Consumer Issues +311240,Consumer Issues,Consumer Issues +311239,Consumer Issues,Consumer Issues +311238,Consumer Issues,Consumer Issues +311237,Consumer Issues,Consumer Issues +299014,Consumer Issues,Consumer Issues +299013,Consumer Issues,Consumer Issues +299012,Consumer Issues,Consumer Issues +299011,Consumer Issues,Consumer Issues +283351,Consumer Issues,Consumer Issues +266449,Consumer Issues,Consumer Issues +261205,Consumer Issues,Consumer Issues +261204,Consumer Issues,Consumer Issues +261202,Consumer Issues,Consumer Issues +261201,Consumer Issues,Consumer Issues +261200,Consumer Issues,Consumer Issues +243000,Consumer Issues,Consumer Issues +242998,Consumer Issues,Consumer Issues +242997,Consumer Issues,Consumer Issues +242996,Consumer Issues,Consumer Issues +223299,Consumer Issues,Consumer Issues +458701,Consumer Issues,Consumer Issues +458697,Consumer Issues,Consumer Issues +455793,Consumer Issues,Consumer Issues +454932,Consumer Issues,Consumer Issues +454922,Consumer Issues,Consumer Issues +454921,Consumer Issues,Consumer Issues +454919,Consumer Issues,Consumer Issues +454918,Consumer Issues,Consumer Issues +454917,Consumer Issues,Consumer Issues +446911,Consumer Issues,Consumer Issues +446910,Consumer Issues,Consumer Issues +446909,Consumer Issues,Consumer Issues +446908,Consumer Issues,Consumer Issues +446907,Consumer Issues,Consumer Issues +440171,Consumer Issues,Consumer Issues +440170,Consumer Issues,Consumer Issues +440169,Consumer Issues,Consumer Issues +433216,Consumer Issues,Consumer Issues +433214,Consumer Issues,Consumer Issues +433212,Consumer Issues,Consumer Issues +431838,Consumer Issues,Consumer Issues +429675,Consumer Issues,Consumer Issues +429674,Consumer Issues,Consumer Issues +422724,Consumer Issues,Consumer Issues +422723,Consumer Issues,Consumer Issues +422722,Consumer Issues,Consumer Issues +419932,Consumer Issues,Consumer Issues +416089,Consumer Issues,Consumer Issues +416086,Consumer Issues,Consumer Issues +416084,Consumer Issues,Consumer Issues +416081,Consumer Issues,Consumer Issues +416079,Consumer Issues,Consumer Issues +416074,Consumer Issues,Consumer Issues +412582,Consumer Issues,Consumer Issues +403569,Consumer Issues,Consumer Issues +403568,Consumer Issues,Consumer Issues +403564,Consumer Issues,Consumer Issues +403541,Consumer Issues,Consumer Issues +400833,Consumer Issues,Consumer Issues +400832,Consumer Issues,Consumer Issues +399417,Consumer Issues,Consumer Issues +393759,Consumer Issues,Consumer Issues +393758,Consumer Issues,Consumer Issues +393756,Consumer Issues,Consumer Issues +393755,Consumer Issues,Consumer Issues +392043,Consumer Issues,Consumer Issues +392004,Consumer Issues,Consumer Issues +416079,Financial Institutions,Financial Institutions +416074,Financial Institutions,Financial Institutions +223299,Financial Institutions,Financial Institutions +210047,Financial Institutions,Financial Institutions +335356,Financial Institutions,Financial Institutions +331485,Financial Institutions,Financial Institutions +327720,Financial Institutions,Financial Institutions +327718,Financial Institutions,Financial Institutions +327716,Financial Institutions,Financial Institutions +327714,Financial Institutions,Financial Institutions +327710,Financial Institutions,Financial Institutions +327706,Financial Institutions,Financial Institutions +319038,Financial Institutions,Financial Institutions +311246,Financial Institutions,Financial Institutions +311242,Financial Institutions,Financial Institutions +311241,Financial Institutions,Financial Institutions +311240,Financial Institutions,Financial Institutions +311239,Financial Institutions,Financial Institutions +311238,Financial Institutions,Financial Institutions +311237,Financial Institutions,Financial Institutions +299014,Financial Institutions,Financial Institutions +299013,Financial Institutions,Financial Institutions +299012,Financial Institutions,Financial Institutions +299011,Financial Institutions,Financial Institutions +299009,Financial Institutions,Financial Institutions +283351,Financial Institutions,Financial Institutions +283350,Financial Institutions,Financial Institutions +266449,Financial Institutions,Financial Institutions +261205,Financial Institutions,Financial Institutions +261204,Financial Institutions,Financial Institutions +261202,Financial Institutions,Financial Institutions +261201,Financial Institutions,Financial Institutions +261200,Financial Institutions,Financial Institutions +258351,Financial Institutions,Financial Institutions +243000,Financial Institutions,Financial Institutions +242999,Financial Institutions,Financial Institutions +242998,Financial Institutions,Financial Institutions +242997,Financial Institutions,Financial Institutions +242996,Financial Institutions,Financial Institutions +412582,Financial Institutions,Financial Institutions +403569,Financial Institutions,Financial Institutions +403568,Financial Institutions,Financial Institutions +403564,Financial Institutions,Financial Institutions +403541,Financial Institutions,Financial Institutions +400833,Financial Institutions,Financial Institutions +400832,Financial Institutions,Financial Institutions +399417,Financial Institutions,Financial Institutions +393759,Financial Institutions,Financial Institutions +393758,Financial Institutions,Financial Institutions +393756,Financial Institutions,Financial Institutions +393755,Financial Institutions,Financial Institutions +392043,Financial Institutions,Financial Institutions +392004,Financial Institutions,Financial Institutions +382432,Financial Institutions,Financial Institutions +382423,Financial Institutions,Financial Institutions +380175,Financial Institutions,Financial Institutions +377453,Financial Institutions,Financial Institutions +377452,Financial Institutions,Financial Institutions +377451,Financial Institutions,Financial Institutions +377448,Financial Institutions,Financial Institutions +377447,Financial Institutions,Financial Institutions +377446,Financial Institutions,Financial Institutions +377445,Financial Institutions,Financial Institutions +377444,Financial Institutions,Financial Institutions +368152,Financial Institutions,Financial Institutions +368151,Financial Institutions,Financial Institutions +368150,Financial Institutions,Financial Institutions +368149,Financial Institutions,Financial Institutions +368148,Financial Institutions,Financial Institutions +366703,Financial Institutions,Financial Institutions +364385,Financial Institutions,Financial Institutions +364384,Financial Institutions,Financial Institutions +364383,Financial Institutions,Financial Institutions +364382,Financial Institutions,Financial Institutions +358232,Financial Institutions,Financial Institutions +358230,Financial Institutions,Financial Institutions +358229,Financial Institutions,Financial Institutions +358228,Financial Institutions,Financial Institutions +358226,Financial Institutions,Financial Institutions +358222,Financial Institutions,Financial Institutions +356296,Financial Institutions,Financial Institutions +356295,Financial Institutions,Financial Institutions +356294,Financial Institutions,Financial Institutions +356292,Financial Institutions,Financial Institutions +356289,Financial Institutions,Financial Institutions +356286,Financial Institutions,Financial Institutions +356283,Financial Institutions,Financial Institutions +351448,Financial Institutions,Financial Institutions +351442,Financial Institutions,Financial Institutions +351440,Financial Institutions,Financial Institutions +344158,Financial Institutions,Financial Institutions +340358,Financial Institutions,Financial Institutions +340355,Financial Institutions,Financial Institutions +340354,Financial Institutions,Financial Institutions +335361,Financial Institutions,Financial Institutions +335359,Financial Institutions,Financial Institutions +335358,Financial Institutions,Financial Institutions +491234,Financial Institutions,Financial Institutions +480865,Financial Institutions,Financial Institutions +460696,Financial Institutions,Financial Institutions +458701,Financial Institutions,Financial Institutions +458697,Financial Institutions,Financial Institutions +458696,Financial Institutions,Financial Institutions +455793,Financial Institutions,Financial Institutions +454932,Financial Institutions,Financial Institutions +454922,Financial Institutions,Financial Institutions +454921,Financial Institutions,Financial Institutions +454920,Financial Institutions,Financial Institutions +454919,Financial Institutions,Financial Institutions +454918,Financial Institutions,Financial Institutions +454917,Financial Institutions,Financial Institutions +445428,Financial Institutions,Financial Institutions +445427,Financial Institutions,Financial Institutions +445425,Financial Institutions,Financial Institutions +440171,Financial Institutions,Financial Institutions +440170,Financial Institutions,Financial Institutions +440169,Financial Institutions,Financial Institutions +433216,Financial Institutions,Financial Institutions +433214,Financial Institutions,Financial Institutions +433212,Financial Institutions,Financial Institutions +431838,Financial Institutions,Financial Institutions +429675,Financial Institutions,Financial Institutions +429674,Financial Institutions,Financial Institutions +422724,Financial Institutions,Financial Institutions +422723,Financial Institutions,Financial Institutions +422722,Financial Institutions,Financial Institutions +419932,Financial Institutions,Financial Institutions +416089,Financial Institutions,Financial Institutions +416086,Financial Institutions,Financial Institutions +416084,Financial Institutions,Financial Institutions +191264,Industry,Industry +191347,Industry,Industry +191266,Industry,Industry +467561,Taxation and Finance,Taxation and Finance +467554,Taxation and Finance,Taxation and Finance +311246,Taxation and Finance,Taxation and Finance +165867,Taxation and Finance,Taxation and Finance +165406,Taxation and Finance,Taxation and Finance +165405,Taxation and Finance,Taxation and Finance +165404,Taxation and Finance,Taxation and Finance +445428,Taxation and Finance,Taxation and Finance +445427,Taxation and Finance,Taxation and Finance +134895,Other,Housing Finance +128536,Other,Housing Finance +153630,Education,Education +153629,Education,Education +482864,Government Procurement,Government Procurement +482863,Government Procurement,Government Procurement +156932,Government Procurement,Government Procurement +156931,Government Procurement,Government Procurement +156930,Government Procurement,Government Procurement +180430,Government Procurement,Government Procurement +180426,Government Procurement,Government Procurement +180392,Government Procurement,Government Procurement +180390,Government Procurement,Government Procurement +180387,Government Procurement,Government Procurement +173551,Government Procurement,Government Procurement +173549,Government Procurement,Government Procurement +173547,Government Procurement,Government Procurement +172005,Government Procurement,Government Procurement +170857,Government Procurement,Government Procurement +170846,Government Procurement,Government Procurement +168980,Government Procurement,Government Procurement +168977,Government Procurement,Government Procurement +166169,Government Procurement,Government Procurement +162637,Government Procurement,Government Procurement +162636,Government Procurement,Government Procurement +162634,Government Procurement,Government Procurement +202852,Government Procurement,Government Procurement +202850,Government Procurement,Government Procurement +199451,Government Procurement,Government Procurement +198967,Government Procurement,Government Procurement +195406,Government Procurement,Government Procurement +189800,Government Procurement,Government Procurement +189799,Government Procurement,Government Procurement +189798,Government Procurement,Government Procurement +189797,Government Procurement,Government Procurement +189796,Government Procurement,Government Procurement +180431,Government Procurement,Government Procurement +484196,Government Procurement,Government Procurement +482871,Government Procurement,Government Procurement +482868,Government Procurement,Government Procurement +482867,Government Procurement,Government Procurement +482866,Government Procurement,Government Procurement +358382,Health,Health +356320,Health,Health +94596,Health,Health +157193,Health,Health +157190,Health,Health +157184,Health,Health +157170,Health,Health +157165,Health,Health +157160,Health,Health +157158,Health,Health +157115,Health,Health +157105,Health,Health +156934,Health,Health +156933,Health,Health +156932,Health,Health +156931,Health,Health +156930,Health,Health +153479,Health,Health +207603,Health,Health +202852,Health,Health +199449,Health,Health +195406,Health,Health +189800,Health,Health +189799,Health,Health +189798,Health,Health +189797,Health,Health +189796,Health,Health +173551,Health,Health +173549,Health,Health +173547,Health,Health +166169,Health,Health +163994,Health,Health +163989,Health,Health +331330,Health,Health +297489,Health,Health +244835,Health,Health +244834,Health,Health +241299,Health,Health +233865,Health,Health +233863,Health,Health +233857,Health,Health +227388,Health,Health +227387,Health,Health +419765,Health,Health +392586,Health,Health +383998,Health,Health +379492,Health,Health +377077,Health,Health +374594,Health,Health +374593,Health,Health +365362,Health,Health +363282,Health,Health +419765,Industry,Industry +383998,Industry,Industry +202854,Industry,Industry +199449,Industry,Industry +157193,Industry,Industry +157190,Industry,Industry +157184,Industry,Industry +157170,Industry,Industry +153479,Industry,Industry +382056,Industry,Industry +374594,Industry,Industry +374593,Industry,Industry +365362,Industry,Industry +363282,Industry,Industry +360019,Industry,Industry +358382,Industry,Industry +356320,Industry,Industry +339413,Industry,Industry +335957,Industry,Industry +333631,Industry,Industry +331328,Industry,Industry +331327,Industry,Industry +331326,Industry,Industry +330171,Industry,Industry +328189,Industry,Industry +315617,Industry,Industry +315608,Industry,Industry +241299,Industry,Industry +233865,Industry,Industry +233863,Industry,Industry +233857,Industry,Industry +212675,Industry,Industry +207610,Industry,Industry +207603,Industry,Industry +544018,Industry,Industry +541587,Industry,Industry +502147,Industry,Industry +500061,Industry,Industry +153470,Intellectual Property,Intellectual Property +356320,Intellectual Property,Intellectual Property +451761,Defence,Defence +450357,Defence,Defence +160954,Defence,Defence +160583,Defence,Defence +158899,Defence,Defence +154649,Defence,Defence +354321,Defence,Defence +344590,Defence,Defence +336176,Defence,Defence +332113,Defence,Defence +324234,Defence,Defence +323135,Defence,Defence +295511,Defence,Defence +278016,Defence,Defence +238469,Defence,Defence +218788,Defence,Defence +199664,Defence,Defence +196091,Defence,Defence +190524,Defence,Defence +190505,Defence,Defence +190504,Defence,Defence +188244,Defence,Defence +188243,Defence,Defence +188241,Defence,Defence +188237,Defence,Defence +188229,Defence,Defence +188223,Defence,Defence +188221,Defence,Defence +185942,Defence,Defence +185940,Defence,Defence +181864,Defence,Defence +174605,Defence,Defence +173154,Defence,Defence +446097,Defence,Defence +441775,Defence,Defence +431681,Defence,Defence +431680,Defence,Defence +398609,Defence,Defence +387314,Defence,Defence +382307,Defence,Defence +381409,Defence,Defence +378118,Defence,Defence +378117,Defence,Defence +378116,Defence,Defence +378115,Defence,Defence +378114,Defence,Defence +378113,Defence,Defence +378112,Defence,Defence +377934,Defence,Defence +377928,Defence,Defence +542961,Defence,Defence +541347,Defence,Defence +538955,Defence,Defence +538954,Defence,Defence +538953,Defence,Defence +531050,Defence,Defence +530456,Defence,Defence +530455,Defence,Defence +528029,Defence,Defence +521465,Defence,Defence +516352,Defence,Defence +514933,Defence,Defence +513686,Defence,Defence +512097,Defence,Defence +512096,Defence,Defence +512095,Defence,Defence +509650,Defence,Defence +503841,Defence,Defence +500605,Defence,Defence +492482,Defence,Defence +492481,Defence,Defence +485968,Defence,Defence +485966,Defence,Defence +469248,Defence,Defence +466606,Defence,Defence +466605,Defence,Defence +463518,Defence,Defence +463517,Defence,Defence +463516,Defence,Defence +463515,Defence,Defence +462123,Defence,Defence +462122,Defence,Defence +462121,Defence,Defence +461084,Defence,Defence +461083,Defence,Defence +459880,Defence,Defence +459264,Defence,Defence +458147,Defence,Defence +458145,Defence,Defence +458144,Defence,Defence +451761,Government Procurement,Government Procurement +446097,Government Procurement,Government Procurement +173154,Government Procurement,Government Procurement +238469,Government Procurement,Government Procurement +218788,Government Procurement,Government Procurement +199664,Government Procurement,Government Procurement +196091,Government Procurement,Government Procurement +190524,Government Procurement,Government Procurement +190505,Government Procurement,Government Procurement +190504,Government Procurement,Government Procurement +188244,Government Procurement,Government Procurement +188243,Government Procurement,Government Procurement +188241,Government Procurement,Government Procurement +188237,Government Procurement,Government Procurement +188229,Government Procurement,Government Procurement +188223,Government Procurement,Government Procurement +188221,Government Procurement,Government Procurement +181864,Government Procurement,Government Procurement +181244,Government Procurement,Government Procurement +389738,Government Procurement,Government Procurement +378118,Government Procurement,Government Procurement +378117,Government Procurement,Government Procurement +378116,Government Procurement,Government Procurement +378115,Government Procurement,Government Procurement +378114,Government Procurement,Government Procurement +378113,Government Procurement,Government Procurement +378112,Government Procurement,Government Procurement +377934,Government Procurement,Government Procurement +377928,Government Procurement,Government Procurement +344590,Government Procurement,Government Procurement +343214,Government Procurement,Government Procurement +332113,Government Procurement,Government Procurement +538955,Government Procurement,Government Procurement +538954,Government Procurement,Government Procurement +538953,Government Procurement,Government Procurement +535969,Government Procurement,Government Procurement +516352,Government Procurement,Government Procurement +514933,Government Procurement,Government Procurement +513686,Government Procurement,Government Procurement +509650,Government Procurement,Government Procurement +500605,Government Procurement,Government Procurement +458143,Government Procurement,Government Procurement +454640,Government Procurement,Government Procurement +294949,Industry,Industry +125734,Industry,Industry +458146,Industry,Industry +459262,Agriculture,Agriculture +458007,Agriculture,Agriculture +330526,Agriculture,Agriculture +330525,Agriculture,Agriculture +323561,Agriculture,Agriculture +315331,Agriculture,Agriculture +315329,Agriculture,Agriculture +293191,Agriculture,Agriculture +293189,Agriculture,Agriculture +269811,Agriculture,Agriculture +269810,Agriculture,Agriculture +269789,Agriculture,Agriculture +245733,Agriculture,Agriculture +231554,Agriculture,Agriculture +231553,Agriculture,Agriculture +231552,Agriculture,Agriculture +231551,Agriculture,Agriculture +231550,Agriculture,Agriculture +231549,Agriculture,Agriculture +212787,Agriculture,Agriculture +210151,Agriculture,Agriculture +209507,Agriculture,Agriculture +209488,Agriculture,Agriculture +209487,Agriculture,Agriculture +393723,Agriculture,Agriculture +393719,Agriculture,Agriculture +393718,Agriculture,Agriculture +393717,Agriculture,Agriculture +393716,Agriculture,Agriculture +393481,Agriculture,Agriculture +393480,Agriculture,Agriculture +393479,Agriculture,Agriculture +393478,Agriculture,Agriculture +393410,Agriculture,Agriculture +393409,Agriculture,Agriculture +393408,Agriculture,Agriculture +393407,Agriculture,Agriculture +393403,Agriculture,Agriculture +393402,Agriculture,Agriculture +393400,Agriculture,Agriculture +393398,Agriculture,Agriculture +393392,Agriculture,Agriculture +393391,Agriculture,Agriculture +393390,Agriculture,Agriculture +393389,Agriculture,Agriculture +393388,Agriculture,Agriculture +393387,Agriculture,Agriculture +393386,Agriculture,Agriculture +393384,Agriculture,Agriculture +393383,Agriculture,Agriculture +393381,Agriculture,Agriculture +393379,Agriculture,Agriculture +393378,Agriculture,Agriculture +391231,Agriculture,Agriculture +389213,Agriculture,Agriculture +388668,Agriculture,Agriculture +388667,Agriculture,Agriculture +386466,Agriculture,Agriculture +384245,Agriculture,Agriculture +384095,Agriculture,Agriculture +380366,Agriculture,Agriculture +380362,Agriculture,Agriculture +379210,Agriculture,Agriculture +378607,Agriculture,Agriculture +378524,Agriculture,Agriculture +378516,Agriculture,Agriculture +377497,Agriculture,Agriculture +376445,Agriculture,Agriculture +376033,Agriculture,Agriculture +375996,Agriculture,Agriculture +375751,Agriculture,Agriculture +375228,Agriculture,Agriculture +370173,Agriculture,Agriculture +370125,Agriculture,Agriculture +370124,Agriculture,Agriculture +370024,Agriculture,Agriculture +370023,Agriculture,Agriculture +368356,Agriculture,Agriculture +368355,Agriculture,Agriculture +368353,Agriculture,Agriculture +368350,Agriculture,Agriculture +368349,Agriculture,Agriculture +368348,Agriculture,Agriculture +368347,Agriculture,Agriculture +368345,Agriculture,Agriculture +368343,Agriculture,Agriculture +364682,Agriculture,Agriculture +358343,Agriculture,Agriculture +358342,Agriculture,Agriculture +348056,Agriculture,Agriculture +348055,Agriculture,Agriculture +348054,Agriculture,Agriculture +348052,Agriculture,Agriculture +342259,Agriculture,Agriculture +342257,Agriculture,Agriculture +332609,Agriculture,Agriculture +330527,Agriculture,Agriculture +456392,Agriculture,Agriculture +456327,Agriculture,Agriculture +454864,Agriculture,Agriculture +454310,Agriculture,Agriculture +453700,Agriculture,Agriculture +453699,Agriculture,Agriculture +453697,Agriculture,Agriculture +452550,Agriculture,Agriculture +452545,Agriculture,Agriculture +448703,Agriculture,Agriculture +446026,Agriculture,Agriculture +445939,Agriculture,Agriculture +444716,Agriculture,Agriculture +444715,Agriculture,Agriculture +444714,Agriculture,Agriculture +444712,Agriculture,Agriculture +444711,Agriculture,Agriculture +444710,Agriculture,Agriculture +444709,Agriculture,Agriculture +444708,Agriculture,Agriculture +444707,Agriculture,Agriculture +444667,Agriculture,Agriculture +444665,Agriculture,Agriculture +444664,Agriculture,Agriculture +444663,Agriculture,Agriculture +444662,Agriculture,Agriculture +444661,Agriculture,Agriculture +444660,Agriculture,Agriculture +444659,Agriculture,Agriculture +444658,Agriculture,Agriculture +444653,Agriculture,Agriculture +444639,Agriculture,Agriculture +444638,Agriculture,Agriculture +444637,Agriculture,Agriculture +444636,Agriculture,Agriculture +444635,Agriculture,Agriculture +444173,Agriculture,Agriculture +440545,Agriculture,Agriculture +440544,Agriculture,Agriculture +440543,Agriculture,Agriculture +437272,Agriculture,Agriculture +437222,Agriculture,Agriculture +436687,Agriculture,Agriculture +436686,Agriculture,Agriculture +436587,Agriculture,Agriculture +436586,Agriculture,Agriculture +435577,Agriculture,Agriculture +434067,Agriculture,Agriculture +434053,Agriculture,Agriculture +432322,Agriculture,Agriculture +432320,Agriculture,Agriculture +429767,Agriculture,Agriculture +427089,Agriculture,Agriculture +425411,Agriculture,Agriculture +424700,Agriculture,Agriculture +424566,Agriculture,Agriculture +422709,Agriculture,Agriculture +421015,Agriculture,Agriculture +420643,Agriculture,Agriculture +420642,Agriculture,Agriculture +420368,Agriculture,Agriculture +419044,Agriculture,Agriculture +419042,Agriculture,Agriculture +419041,Agriculture,Agriculture +419040,Agriculture,Agriculture +419038,Agriculture,Agriculture +419034,Agriculture,Agriculture +419032,Agriculture,Agriculture +419031,Agriculture,Agriculture +419030,Agriculture,Agriculture +419029,Agriculture,Agriculture +419028,Agriculture,Agriculture +419027,Agriculture,Agriculture +419026,Agriculture,Agriculture +419025,Agriculture,Agriculture +419024,Agriculture,Agriculture +419023,Agriculture,Agriculture +419020,Agriculture,Agriculture +419019,Agriculture,Agriculture +419018,Agriculture,Agriculture +419014,Agriculture,Agriculture +418882,Agriculture,Agriculture +418881,Agriculture,Agriculture +418880,Agriculture,Agriculture +418852,Agriculture,Agriculture +418850,Agriculture,Agriculture +418847,Agriculture,Agriculture +418549,Agriculture,Agriculture +418495,Agriculture,Agriculture +417421,Agriculture,Agriculture +414143,Agriculture,Agriculture +411075,Agriculture,Agriculture +411074,Agriculture,Agriculture +411073,Agriculture,Agriculture +411072,Agriculture,Agriculture +408347,Agriculture,Agriculture +401927,Agriculture,Agriculture +401924,Agriculture,Agriculture +401884,Agriculture,Agriculture +401878,Agriculture,Agriculture +399650,Agriculture,Agriculture +397568,Agriculture,Agriculture +395110,Agriculture,Agriculture +484309,Agriculture,Agriculture +484305,Agriculture,Agriculture +484301,Agriculture,Agriculture +482905,Agriculture,Agriculture +482904,Agriculture,Agriculture +469340,Agriculture,Agriculture +469302,Agriculture,Agriculture +469301,Agriculture,Agriculture +469300,Agriculture,Agriculture +469299,Agriculture,Agriculture +469298,Agriculture,Agriculture +469294,Agriculture,Agriculture +469293,Agriculture,Agriculture +469292,Agriculture,Agriculture +469289,Agriculture,Agriculture +469288,Agriculture,Agriculture +469287,Agriculture,Agriculture +469286,Agriculture,Agriculture +469285,Agriculture,Agriculture +469284,Agriculture,Agriculture +469283,Agriculture,Agriculture +462705,Agriculture,Agriculture +460878,Agriculture,Agriculture +460541,Agriculture,Agriculture +469284,Environment,Environment +425411,Environment,Environment +418880,Environment,Environment +393719,Environment,Environment +393386,Environment,Environment +393378,Environment,Environment +384095,Environment,Environment +368355,Environment,Environment +368349,Environment,Environment +368347,Environment,Environment +368343,Environment,Environment +469300,Environment,Environment +469299,Environment,Environment +469298,Environment,Environment +469294,Environment,Environment +469293,Environment,Environment +469292,Environment,Environment +469289,Environment,Environment +469288,Environment,Environment +469287,Environment,Environment +469286,Environment,Environment +458007,Health,Health +437222,Health,Health +401884,Health,Health +393716,Health,Health +393386,Health,Health +376033,Health,Health +375996,Health,Health +368353,Health,Health +368347,Health,Health +368345,Health,Health +368343,Health,Health +469301,Health,Health +469283,Health,Health +418495,Industry,Industry +469284,Industry,Industry +393409,Industry,Industry +393403,Industry,Industry +393392,Industry,Industry +393383,Industry,Industry +393381,Industry,Industry +388667,Industry,Industry +380362,Industry,Industry +460878,Industry,Industry +432322,Industry,Industry +432320,Industry,Industry +429767,Industry,Industry +421015,Industry,Industry +420642,Industry,Industry +419025,Industry,Industry +418882,Industry,Industry +411073,Intellectual Property,Intellectual Property +411072,Intellectual Property,Intellectual Property +269810,Intellectual Property,Intellectual Property +269789,Intellectual Property,Intellectual Property +212787,Intellectual Property,Intellectual Property +209507,Intellectual Property,Intellectual Property +209488,Intellectual Property,Intellectual Property +209487,Intellectual Property,Intellectual Property +401927,Intellectual Property,Intellectual Property +401924,Intellectual Property,Intellectual Property +388668,Intellectual Property,Intellectual Property +388667,Intellectual Property,Intellectual Property +384245,Intellectual Property,Intellectual Property +380366,Intellectual Property,Intellectual Property +375751,Intellectual Property,Intellectual Property +370125,Intellectual Property,Intellectual Property +370124,Intellectual Property,Intellectual Property +370024,Intellectual Property,Intellectual Property +368349,Intellectual Property,Intellectual Property +368343,Intellectual Property,Intellectual Property +358342,Intellectual Property,Intellectual Property +348054,Intellectual Property,Intellectual Property +348053,Intellectual Property,Intellectual Property +348052,Intellectual Property,Intellectual Property +342259,Intellectual Property,Intellectual Property +342257,Intellectual Property,Intellectual Property +332610,Intellectual Property,Intellectual Property +332609,Intellectual Property,Intellectual Property +330526,Intellectual Property,Intellectual Property +330525,Intellectual Property,Intellectual Property +323561,Intellectual Property,Intellectual Property +315331,Intellectual Property,Intellectual Property +315330,Intellectual Property,Intellectual Property +315329,Intellectual Property,Intellectual Property +293191,Intellectual Property,Intellectual Property +293189,Intellectual Property,Intellectual Property +469340,Intellectual Property,Intellectual Property +469284,Intellectual Property,Intellectual Property +462705,Intellectual Property,Intellectual Property +460878,Intellectual Property,Intellectual Property +454310,Intellectual Property,Intellectual Property +453697,Intellectual Property,Intellectual Property +452550,Intellectual Property,Intellectual Property +452545,Intellectual Property,Intellectual Property +446026,Intellectual Property,Intellectual Property +444716,Intellectual Property,Intellectual Property +444715,Intellectual Property,Intellectual Property +444714,Intellectual Property,Intellectual Property +444712,Intellectual Property,Intellectual Property +444711,Intellectual Property,Intellectual Property +444710,Intellectual Property,Intellectual Property +444709,Intellectual Property,Intellectual Property +444708,Intellectual Property,Intellectual Property +444707,Intellectual Property,Intellectual Property +444667,Intellectual Property,Intellectual Property +444665,Intellectual Property,Intellectual Property +444664,Intellectual Property,Intellectual Property +444663,Intellectual Property,Intellectual Property +444662,Intellectual Property,Intellectual Property +444661,Intellectual Property,Intellectual Property +444660,Intellectual Property,Intellectual Property +444659,Intellectual Property,Intellectual Property +444658,Intellectual Property,Intellectual Property +444653,Intellectual Property,Intellectual Property +444639,Intellectual Property,Intellectual Property +444638,Intellectual Property,Intellectual Property +444637,Intellectual Property,Intellectual Property +444636,Intellectual Property,Intellectual Property +444635,Intellectual Property,Intellectual Property +437272,Intellectual Property,Intellectual Property +436687,Intellectual Property,Intellectual Property +436686,Intellectual Property,Intellectual Property +436586,Intellectual Property,Intellectual Property +434067,Intellectual Property,Intellectual Property +434053,Intellectual Property,Intellectual Property +432322,Intellectual Property,Intellectual Property +424700,Intellectual Property,Intellectual Property +420368,Intellectual Property,Intellectual Property +419044,Intellectual Property,Intellectual Property +419042,Intellectual Property,Intellectual Property +419041,Intellectual Property,Intellectual Property +419040,Intellectual Property,Intellectual Property +419038,Intellectual Property,Intellectual Property +419034,Intellectual Property,Intellectual Property +419032,Intellectual Property,Intellectual Property +419030,Intellectual Property,Intellectual Property +419029,Intellectual Property,Intellectual Property +419028,Intellectual Property,Intellectual Property +419027,Intellectual Property,Intellectual Property +419026,Intellectual Property,Intellectual Property +419025,Intellectual Property,Intellectual Property +419024,Intellectual Property,Intellectual Property +419023,Intellectual Property,Intellectual Property +419020,Intellectual Property,Intellectual Property +419019,Intellectual Property,Intellectual Property +419018,Intellectual Property,Intellectual Property +419014,Intellectual Property,Intellectual Property +418882,Intellectual Property,Intellectual Property +418852,Intellectual Property,Intellectual Property +418850,Intellectual Property,Intellectual Property +417421,International Relations,International Relations +397568,International Relations,International Relations +209487,International Relations,International Relations +212787,Taxation and Finance,Taxation and Finance +411075,Taxation and Finance,Taxation and Finance +311729,Agriculture,Agriculture +301869,Agriculture,Agriculture +300851,Agriculture,Agriculture +300850,Agriculture,Agriculture +300849,Agriculture,Agriculture +298690,Agriculture,Agriculture +298689,Agriculture,Agriculture +277660,Agriculture,Agriculture +257711,Agriculture,Agriculture +257710,Agriculture,Agriculture +257709,Agriculture,Agriculture +251910,Agriculture,Agriculture +239650,Agriculture,Agriculture +239649,Agriculture,Agriculture +234309,Agriculture,Agriculture +225228,Agriculture,Agriculture +209409,Agriculture,Agriculture +209408,Agriculture,Agriculture +209407,Agriculture,Agriculture +196787,Agriculture,Agriculture +192516,Agriculture,Agriculture +192515,Agriculture,Agriculture +192514,Agriculture,Agriculture +192513,Agriculture,Agriculture +188632,Agriculture,Agriculture +188631,Agriculture,Agriculture +188630,Agriculture,Agriculture +176926,Agriculture,Agriculture +166886,Agriculture,Agriculture +166885,Agriculture,Agriculture +157328,Agriculture,Agriculture +393665,Agriculture,Agriculture +389313,Agriculture,Agriculture +380156,Agriculture,Agriculture +373410,Agriculture,Agriculture +373409,Agriculture,Agriculture +355422,Agriculture,Agriculture +342918,Agriculture,Agriculture +342917,Agriculture,Agriculture +337649,Agriculture,Agriculture +336436,Agriculture,Agriculture +336434,Agriculture,Agriculture +192514,Environment,Environment +225228,International Trade,International Trade +393665,International Trade,International Trade +96625,International Trade,International Trade +96624,International Trade,International Trade +96623,International Trade,International Trade +96621,International Trade,International Trade +96620,International Trade,International Trade +96616,International Trade,International Trade +196788,International Trade,International Trade +192516,International Trade,International Trade +192515,International Trade,International Trade +192514,International Trade,International Trade +192513,International Trade,International Trade +188632,International Trade,International Trade +188631,International Trade,International Trade +188630,International Trade,International Trade +176927,International Trade,International Trade +166886,International Trade,International Trade +380156,International Trade,International Trade +373410,International Trade,International Trade +342918,International Trade,International Trade +342917,International Trade,International Trade +337649,International Trade,International Trade +336436,International Trade,International Trade +311730,International Trade,International Trade +311729,International Trade,International Trade +301869,International Trade,International Trade +300851,International Trade,International Trade +300850,International Trade,International Trade +300849,International Trade,International Trade +298690,International Trade,International Trade +298689,International Trade,International Trade +277660,International Trade,International Trade +275469,International Trade,International Trade +241931,International Trade,International Trade +241930,International Trade,International Trade +483260,Agriculture,Agriculture +480953,Agriculture,Agriculture +167662,Agriculture,Agriculture +167661,Agriculture,Agriculture +167660,Agriculture,Agriculture +167659,Agriculture,Agriculture +147139,Agriculture,Agriculture +379680,Agriculture,Agriculture +259798,Agriculture,Agriculture +259497,Agriculture,Agriculture +197327,Agriculture,Agriculture +454211,Agriculture,Agriculture +452903,Agriculture,Agriculture +452902,Agriculture,Agriculture +425111,Agriculture,Agriculture +532625,Agriculture,Agriculture +532624,Agriculture,Agriculture +521355,Agriculture,Agriculture +521354,Agriculture,Agriculture +521353,Agriculture,Agriculture +521350,Agriculture,Agriculture +511827,Agriculture,Agriculture +511070,Agriculture,Agriculture +500008,Agriculture,Agriculture +496756,Agriculture,Agriculture +496657,Agriculture,Agriculture +496656,Agriculture,Agriculture +496655,Agriculture,Agriculture +496654,Agriculture,Agriculture +483262,Agriculture,Agriculture +516354,International Trade,International Trade +511077,International Trade,International Trade +197327,International Trade,International Trade +167662,International Trade,International Trade +167661,International Trade,International Trade +167660,International Trade,International Trade +167659,International Trade,International Trade +147139,International Trade,International Trade +259798,International Trade,International Trade +259497,International Trade,International Trade +379680,International Trade,International Trade +500008,International Trade,International Trade +496657,International Trade,International Trade +496656,International Trade,International Trade +496655,International Trade,International Trade +496654,International Trade,International Trade +483262,International Trade,International Trade +483261,International Trade,International Trade +483260,International Trade,International Trade +483200,International Trade,International Trade +480953,International Trade,International Trade +459108,International Trade,International Trade +459106,International Trade,International Trade +448350,International Trade,International Trade +448349,International Trade,International Trade +447092,International Trade,International Trade +447091,International Trade,International Trade +447089,International Trade,International Trade +438698,International Trade,International Trade +438694,International Trade,International Trade +438692,International Trade,International Trade +436951,International Trade,International Trade +428947,International Trade,International Trade +428291,International Trade,International Trade +428289,International Trade,International Trade +423653,International Trade,International Trade +423652,International Trade,International Trade +419403,International Trade,International Trade +419377,International Trade,International Trade +521640,International Trade,International Trade +521355,International Trade,International Trade +521354,International Trade,International Trade +521353,International Trade,International Trade +106198,Agriculture,Agriculture +106195,Agriculture,Agriculture +100374,Agriculture,Agriculture +95759,Agriculture,Agriculture +95758,Agriculture,Agriculture +95754,Agriculture,Agriculture +84020,Agriculture,Agriculture +169044,Agriculture,Agriculture +167066,Agriculture,Agriculture +163694,Agriculture,Agriculture +159101,Agriculture,Agriculture +159094,Agriculture,Agriculture +159092,Agriculture,Agriculture +159090,Agriculture,Agriculture +159089,Agriculture,Agriculture +155859,Agriculture,Agriculture +155858,Agriculture,Agriculture +152583,Agriculture,Agriculture +152582,Agriculture,Agriculture +148375,Agriculture,Agriculture +142421,Agriculture,Agriculture +142420,Agriculture,Agriculture +142419,Agriculture,Agriculture +135677,Agriculture,Agriculture +120357,Agriculture,Agriculture +120355,Agriculture,Agriculture +120354,Agriculture,Agriculture +115975,Agriculture,Agriculture +115975,Consumer Issues,Consumer Issues +155859,Consumer Issues,Consumer Issues +95759,Consumer Issues,Consumer Issues +128918,Environment,Environment +115975,Environment,Environment +120355,Health,Health +115975,International Trade,International Trade +167066,International Trade,International Trade +95759,International Trade,International Trade +95758,International Trade,International Trade +95757,International Trade,International Trade +95756,International Trade,International Trade +95755,International Trade,International Trade +95754,International Trade,International Trade +84020,International Trade,International Trade +84019,International Trade,International Trade +84017,International Trade,International Trade +84016,International Trade,International Trade +84015,International Trade,International Trade +84014,International Trade,International Trade +159101,International Trade,International Trade +159094,International Trade,International Trade +159089,International Trade,International Trade +155859,International Trade,International Trade +155858,International Trade,International Trade +152582,International Trade,International Trade +142421,International Trade,International Trade +142420,International Trade,International Trade +142419,International Trade,International Trade +128929,International Trade,International Trade +120357,International Trade,International Trade +120354,International Trade,International Trade +468275,Intellectual Property,Intellectual Property +468270,Intellectual Property,Intellectual Property +132094,Intellectual Property,Intellectual Property +90139,Intellectual Property,Intellectual Property +173925,Intellectual Property,Intellectual Property +161146,Intellectual Property,Intellectual Property +161145,Intellectual Property,Intellectual Property +161144,Intellectual Property,Intellectual Property +157650,Intellectual Property,Intellectual Property +157648,Intellectual Property,Intellectual Property +225050,Intellectual Property,Intellectual Property +225049,Intellectual Property,Intellectual Property +204227,Intellectual Property,Intellectual Property +204207,Intellectual Property,Intellectual Property +188625,Intellectual Property,Intellectual Property +188624,Intellectual Property,Intellectual Property +181208,Intellectual Property,Intellectual Property +181207,Intellectual Property,Intellectual Property +181206,Intellectual Property,Intellectual Property +461065,Intellectual Property,Intellectual Property +443581,Intellectual Property,Intellectual Property +443567,Intellectual Property,Intellectual Property +441895,Intellectual Property,Intellectual Property +413258,Intellectual Property,Intellectual Property +413255,Intellectual Property,Intellectual Property +413253,Intellectual Property,Intellectual Property +413249,Intellectual Property,Intellectual Property +413247,Intellectual Property,Intellectual Property +413233,Intellectual Property,Intellectual Property +413230,Intellectual Property,Intellectual Property +413229,Intellectual Property,Intellectual Property +412991,Intellectual Property,Intellectual Property +407197,Intellectual Property,Intellectual Property +405575,Intellectual Property,Intellectual Property +405573,Intellectual Property,Intellectual Property +405572,Intellectual Property,Intellectual Property +405567,Intellectual Property,Intellectual Property +392415,Intellectual Property,Intellectual Property +392413,Intellectual Property,Intellectual Property +389394,Intellectual Property,Intellectual Property +534357,Intellectual Property,Intellectual Property +528958,Intellectual Property,Intellectual Property +528955,Intellectual Property,Intellectual Property +528951,Intellectual Property,Intellectual Property +514351,Intellectual Property,Intellectual Property +503103,Intellectual Property,Intellectual Property +478378,Intellectual Property,Intellectual Property +478375,Intellectual Property,Intellectual Property +468285,Intellectual Property,Intellectual Property +468283,Intellectual Property,Intellectual Property +468280,Intellectual Property,Intellectual Property +468278,Intellectual Property,Intellectual Property +91254,Health,Health +100839,Health,Health +100836,Health,Health +128134,Health,Health +120756,Health,Health +111244,Health,Health +210388,Industry,Industry +210387,Industry,Industry +118837,Industry,Industry +111242,Industry,Industry +104194,Industry,Industry +222592,Industry,Industry +222590,Industry,Industry +457991,Health,Health +446737,Health,Health +101320,Health,Health +101305,Health,Health +98202,Health,Health +74934,Health,Health +161528,Health,Health +158430,Health,Health +147789,Health,Health +106336,Health,Health +106334,Health,Health +106204,Health,Health +196571,Health,Health +196570,Health,Health +196569,Health,Health +196567,Health,Health +190465,Health,Health +176605,Health,Health +176604,Health,Health +176005,Health,Health +174820,Health,Health +174819,Health,Health +174818,Health,Health +174817,Health,Health +174815,Health,Health +174814,Health,Health +174813,Health,Health +174812,Health,Health +174811,Health,Health +174810,Health,Health +174809,Health,Health +535940,Health,Health +527041,Health,Health +524151,Health,Health +520649,Health,Health +490337,Health,Health +476344,Health,Health +469592,Health,Health +469023,Health,Health +337835,Consumer Issues,Consumer Issues +337833,Consumer Issues,Consumer Issues +286431,Consumer Issues,Consumer Issues +286430,Consumer Issues,Consumer Issues +286429,Consumer Issues,Consumer Issues +286411,Consumer Issues,Consumer Issues +249680,Consumer Issues,Consumer Issues +249676,Consumer Issues,Consumer Issues +249675,Consumer Issues,Consumer Issues +249673,Consumer Issues,Consumer Issues +249465,Consumer Issues,Consumer Issues +249464,Consumer Issues,Consumer Issues +249463,Consumer Issues,Consumer Issues +379836,Consumer Issues,Consumer Issues +379833,Consumer Issues,Consumer Issues +379830,Consumer Issues,Consumer Issues +377288,Consumer Issues,Consumer Issues +377286,Consumer Issues,Consumer Issues +377285,Consumer Issues,Consumer Issues +377283,Consumer Issues,Consumer Issues +377281,Consumer Issues,Consumer Issues +377279,Consumer Issues,Consumer Issues +377277,Consumer Issues,Consumer Issues +377275,Consumer Issues,Consumer Issues +377274,Consumer Issues,Consumer Issues +377272,Consumer Issues,Consumer Issues +356008,Consumer Issues,Consumer Issues +343778,Consumer Issues,Consumer Issues +337837,Consumer Issues,Consumer Issues +150369,Other,INTERNATIONAL DEVELOPMENT +150363,Other,INTERNATIONAL DEVELOPMENT +98040,Other,INTERNATIONAL DEVELOPMENT +150345,Other,INTERNATIONAL DEVELOPMENT +148216,Other,INTERNATIONAL DEVELOPMENT +148193,Other,INTERNATIONAL DEVELOPMENT +148109,Other,INTERNATIONAL DEVELOPMENT +145708,Other,INTERNATIONAL DEVELOPMENT +145705,Other,INTERNATIONAL DEVELOPMENT +145694,Other,INTERNATIONAL DEVELOPMENT +145680,Other,INTERNATIONAL DEVELOPMENT +145674,Other,INTERNATIONAL DEVELOPMENT +142614,Other,INTERNATIONAL DEVELOPMENT +136794,Other,INTERNATIONAL DEVELOPMENT +136775,Other,INTERNATIONAL DEVELOPMENT +136774,Other,INTERNATIONAL DEVELOPMENT +135723,Other,INTERNATIONAL DEVELOPMENT +133994,Other,INTERNATIONAL DEVELOPMENT +132134,Other,INTERNATIONAL DEVELOPMENT +132114,Other,INTERNATIONAL DEVELOPMENT +127014,Other,INTERNATIONAL DEVELOPMENT +126994,Other,INTERNATIONAL DEVELOPMENT +126215,Other,INTERNATIONAL DEVELOPMENT +122035,Other,INTERNATIONAL DEVELOPMENT +120957,Other,INTERNATIONAL DEVELOPMENT +120956,Other,INTERNATIONAL DEVELOPMENT +117134,Other,INTERNATIONAL DEVELOPMENT +109700,Other,INTERNATIONAL DEVELOPMENT +109128,Other,INTERNATIONAL DEVELOPMENT +102595,Other,INTERNATIONAL DEVELOPMENT +102594,Other,INTERNATIONAL DEVELOPMENT +154685,Other,INTERNATIONAL DEVELOPMENT +152076,Other,INTERNATIONAL DEVELOPMENT +151580,Other,INTERNATIONAL DEVELOPMENT +151579,Other,INTERNATIONAL DEVELOPMENT +151578,Other,INTERNATIONAL DEVELOPMENT +107058,International Trade,International Trade +157349,International Trade,International Trade +377730,Taxation and Finance,Taxation and Finance +377727,Taxation and Finance,Taxation and Finance +157349,Taxation and Finance,Taxation and Finance +377739,Taxation and Finance,Taxation and Finance +377735,Taxation and Finance,Taxation and Finance +377733,Taxation and Finance,Taxation and Finance +259230,Health,Health +245836,Health,Health +227009,Health,Health +223378,Health,Health +223372,Health,Health +216454,Health,Health +207542,Health,Health +207537,Health,Health +207111,Health,Health +202851,Health,Health +202841,Health,Health +202352,Health,Health +202351,Health,Health +199981,Health,Health +199972,Health,Health +199968,Health,Health +193978,Health,Health +193583,Health,Health +193391,Health,Health +381425,Health,Health +378912,Health,Health +371408,Health,Health +366522,Health,Health +388854,Industry,Industry +388853,Industry,Industry +148181,Industry,Industry +227009,Industry,Industry +223378,Industry,Industry +223372,Industry,Industry +216454,Industry,Industry +216451,Industry,Industry +211941,Industry,Industry +207542,Industry,Industry +207537,Industry,Industry +207111,Industry,Industry +202851,Industry,Industry +202841,Industry,Industry +202352,Industry,Industry +202351,Industry,Industry +199981,Industry,Industry +199972,Industry,Industry +199968,Industry,Industry +193978,Industry,Industry +193583,Industry,Industry +381425,Industry,Industry +378912,Industry,Industry +371408,Industry,Industry +366522,Industry,Industry +363666,Industry,Industry +361105,Industry,Industry +351044,Industry,Industry +351043,Industry,Industry +327487,Industry,Industry +316789,Industry,Industry +316749,Industry,Industry +277192,Industry,Industry +259230,Industry,Industry +249819,Industry,Industry +245836,Industry,Industry +236611,Industry,Industry +366522,International Trade,International Trade +351044,International Trade,International Trade +207111,International Trade,International Trade +202851,International Trade,International Trade +202841,International Trade,International Trade +202351,International Trade,International Trade +199972,International Trade,International Trade +199968,International Trade,International Trade +193978,International Trade,International Trade +193583,International Trade,International Trade +193391,International Trade,International Trade +351043,International Trade,International Trade +327487,International Trade,International Trade +316789,International Trade,International Trade +316749,International Trade,International Trade +249819,International Trade,International Trade +245836,International Trade,International Trade +236611,International Trade,International Trade +233407,International Trade,International Trade +223378,International Trade,International Trade +223372,International Trade,International Trade +211941,International Trade,International Trade +207542,International Trade,International Trade +207537,International Trade,International Trade +388853,International Trade,International Trade +249463,Taxation and Finance,Taxation and Finance +388351,Taxation and Finance,Taxation and Finance +388315,Taxation and Finance,Taxation and Finance +388308,Taxation and Finance,Taxation and Finance +379836,Taxation and Finance,Taxation and Finance +379833,Taxation and Finance,Taxation and Finance +379830,Taxation and Finance,Taxation and Finance +377288,Taxation and Finance,Taxation and Finance +377286,Taxation and Finance,Taxation and Finance +377285,Taxation and Finance,Taxation and Finance +377283,Taxation and Finance,Taxation and Finance +377281,Taxation and Finance,Taxation and Finance +377279,Taxation and Finance,Taxation and Finance +377277,Taxation and Finance,Taxation and Finance +377275,Taxation and Finance,Taxation and Finance +377274,Taxation and Finance,Taxation and Finance +377272,Taxation and Finance,Taxation and Finance +356008,Taxation and Finance,Taxation and Finance +353249,Taxation and Finance,Taxation and Finance +353248,Taxation and Finance,Taxation and Finance +353246,Taxation and Finance,Taxation and Finance +343778,Taxation and Finance,Taxation and Finance +337837,Taxation and Finance,Taxation and Finance +337836,Taxation and Finance,Taxation and Finance +337835,Taxation and Finance,Taxation and Finance +337833,Taxation and Finance,Taxation and Finance +286431,Taxation and Finance,Taxation and Finance +286430,Taxation and Finance,Taxation and Finance +286429,Taxation and Finance,Taxation and Finance +286411,Taxation and Finance,Taxation and Finance +249680,Taxation and Finance,Taxation and Finance +249676,Taxation and Finance,Taxation and Finance +249675,Taxation and Finance,Taxation and Finance +249673,Taxation and Finance,Taxation and Finance +249465,Taxation and Finance,Taxation and Finance +150638,Health,Health +150638,Internal Trade,Internal Trade +486357,Industry,Industry +486355,Industry,Industry +243918,Industry,Industry +243917,Industry,Industry +289329,Industry,Industry +276077,Industry,Industry +271713,Industry,Industry +465452,Industry,Industry +423250,Industry,Industry +394246,Industry,Industry +379523,Industry,Industry +374427,Industry,Industry +371657,Industry,Industry +362114,Industry,Industry +362113,Industry,Industry +543235,Industry,Industry +539996,Industry,Industry +537643,Industry,Industry +537639,Industry,Industry +537636,Industry,Industry +534603,Industry,Industry +534600,Industry,Industry +534594,Industry,Industry +534588,Industry,Industry +534584,Industry,Industry +534576,Industry,Industry +534569,Industry,Industry +534555,Industry,Industry +534554,Industry,Industry +534546,Industry,Industry +525371,Industry,Industry +525370,Industry,Industry +525369,Industry,Industry +525367,Industry,Industry +523378,Industry,Industry +523375,Industry,Industry +517529,Industry,Industry +515253,Industry,Industry +510594,Industry,Industry +507563,Industry,Industry +506354,Industry,Industry +504211,Industry,Industry +501157,Industry,Industry +501153,Industry,Industry +501151,Industry,Industry +501149,Industry,Industry +497901,Industry,Industry +495550,Industry,Industry +495546,Industry,Industry +495540,Industry,Industry +495532,Industry,Industry +495530,Industry,Industry +493740,Industry,Industry +489776,Industry,Industry +489773,Industry,Industry +489771,Industry,Industry +489764,Industry,Industry +489763,Industry,Industry +489750,Industry,Industry +489742,Industry,Industry +488360,Industry,Industry +486365,Industry,Industry +486361,Industry,Industry +493736,Infrastructure,Infrastructure +489753,Infrastructure,Infrastructure +528871,Infrastructure,Infrastructure +525369,Infrastructure,Infrastructure +523381,Infrastructure,Infrastructure +523379,Infrastructure,Infrastructure +510469,Infrastructure,Infrastructure +504206,Infrastructure,Infrastructure +501149,Infrastructure,Infrastructure +497903,Infrastructure,Infrastructure +497901,Infrastructure,Infrastructure +495540,Infrastructure,Infrastructure +486448,Intellectual Property,Intellectual Property +423250,Intellectual Property,Intellectual Property +252512,Intellectual Property,Intellectual Property +218551,Intellectual Property,Intellectual Property +189623,Intellectual Property,Intellectual Property +189620,Intellectual Property,Intellectual Property +189618,Intellectual Property,Intellectual Property +162561,Intellectual Property,Intellectual Property +387590,Intellectual Property,Intellectual Property +523376,Intellectual Property,Intellectual Property +518950,Intellectual Property,Intellectual Property +506481,Intellectual Property,Intellectual Property +504212,Intellectual Property,Intellectual Property +504211,Intellectual Property,Intellectual Property +501166,Intellectual Property,Intellectual Property +501165,Intellectual Property,Intellectual Property +501164,Intellectual Property,Intellectual Property +501162,Intellectual Property,Intellectual Property +501160,Intellectual Property,Intellectual Property +501150,Intellectual Property,Intellectual Property +497914,Intellectual Property,Intellectual Property +497913,Intellectual Property,Intellectual Property +497912,Intellectual Property,Intellectual Property +497911,Intellectual Property,Intellectual Property +497910,Intellectual Property,Intellectual Property +497909,Intellectual Property,Intellectual Property +497908,Intellectual Property,Intellectual Property +497906,Intellectual Property,Intellectual Property +495533,Intellectual Property,Intellectual Property +493766,Intellectual Property,Intellectual Property +493752,Intellectual Property,Intellectual Property +493751,Intellectual Property,Intellectual Property +493749,Intellectual Property,Intellectual Property +489781,Intellectual Property,Intellectual Property +486448,Internal Trade,Internal Trade +486441,Internal Trade,Internal Trade +203131,Internal Trade,Internal Trade +203129,Internal Trade,Internal Trade +203128,Internal Trade,Internal Trade +531658,Internal Trade,Internal Trade +497900,Internal Trade,Internal Trade +495541,Internal Trade,Internal Trade +495536,Internal Trade,Internal Trade +493745,Internal Trade,Internal Trade +493744,Internal Trade,Internal Trade +489766,International Relations,International Relations +465455,International Relations,International Relations +334878,International Relations,International Relations +233843,International Relations,International Relations +233842,International Relations,International Relations +531660,International Trade,International Trade +531655,International Trade,International Trade +153516,International Trade,International Trade +141014,International Trade,International Trade +128496,International Trade,International Trade +111878,International Trade,International Trade +218553,International Trade,International Trade +213331,International Trade,International Trade +207639,International Trade,International Trade +207634,International Trade,International Trade +203127,International Trade,International Trade +189623,International Trade,International Trade +189620,International Trade,International Trade +189617,International Trade,International Trade +180472,International Trade,International Trade +170832,International Trade,International Trade +162558,International Trade,International Trade +160022,International Trade,International Trade +157068,International Trade,International Trade +157060,International Trade,International Trade +157057,International Trade,International Trade +157054,International Trade,International Trade +153517,International Trade,International Trade +334877,International Trade,International Trade +329611,International Trade,International Trade +323619,International Trade,International Trade +323618,International Trade,International Trade +323617,International Trade,International Trade +323616,International Trade,International Trade +323615,International Trade,International Trade +321480,International Trade,International Trade +321479,International Trade,International Trade +321476,International Trade,International Trade +321474,International Trade,International Trade +321471,International Trade,International Trade +321470,International Trade,International Trade +321469,International Trade,International Trade +318622,International Trade,International Trade +318618,International Trade,International Trade +318614,International Trade,International Trade +318611,International Trade,International Trade +288790,International Trade,International Trade +288789,International Trade,International Trade +288771,International Trade,International Trade +288770,International Trade,International Trade +288769,International Trade,International Trade +284776,International Trade,International Trade +284774,International Trade,International Trade +284773,International Trade,International Trade +284772,International Trade,International Trade +284771,International Trade,International Trade +284770,International Trade,International Trade +252529,International Trade,International Trade +252512,International Trade,International Trade +227318,International Trade,International Trade +517523,International Trade,International Trade +489749,International Trade,International Trade +483919,International Trade,International Trade +423250,International Trade,International Trade +422791,International Trade,International Trade +374423,International Trade,International Trade +361104,International Trade,International Trade +359696,International Trade,International Trade +348272,International Trade,International Trade +348262,International Trade,International Trade +340209,International Trade,International Trade +340205,International Trade,International Trade +539996,International Trade,International Trade +537635,International Trade,International Trade +534542,International Trade,International Trade +77498,Justice and Law Enforcement,Justice and Law Enforcement +117662,Justice and Law Enforcement,Justice and Law Enforcement +162635,Education,Education +482865,Government Procurement,Government Procurement +362178,Health,Health +424828,Industry,Industry +153475,Intellectual Property,Intellectual Property +356320,International Trade,International Trade +117015,Transportation,Transportation +456717,Defence,Defence +454639,Government Procurement,Government Procurement +300889,Industry,Industry +155086,Fisheries,Fisheries +460255,Agriculture,Agriculture +469285,Environment,Environment +459262,Health,Health +418880,Industry,Industry +418495,Intellectual Property,Intellectual Property +418881,International Relations,International Relations +269789,Taxation and Finance,Taxation and Finance +311730,Agriculture,Agriculture +192515,Environment,Environment +239650,International Trade,International Trade +483261,Agriculture,Agriculture +521350,International Trade,International Trade +106282,Agriculture,Agriculture +120355,Consumer Issues,Consumer Issues +95759,Environment,Environment +95759,Health,Health +115978,International Trade,International Trade +468276,Intellectual Property,Intellectual Property +91255,Health,Health +111243,Health,Health +220588,Industry,Industry +457993,Health,Health +337836,Consumer Issues,Consumer Issues +151577,Other,INTERNATIONAL DEVELOPMENT +111574,International Trade,International Trade +160190,Labour,Labour +377731,Taxation and Finance,Taxation and Finance +129794,Infrastructure,Infrastructure +129794,International Relations,International Relations +78274,International Trade,International Trade +277192,Health,Health +233407,Industry,Industry +381425,International Trade,International Trade +249464,Taxation and Finance,Taxation and Finance +150639,Health,Health +150639,Internal Trade,Internal Trade +486360,Industry,Industry +493747,Infrastructure,Infrastructure +489775,Intellectual Property,Intellectual Property +489754,Internal Trade,Internal Trade +495547,International Relations,International Relations +531661,International Trade,International Trade +489750,Justice and Law Enforcement,Justice and Law Enforcement +489768,Regional Development,Regional Development +249190,Taxation and Finance,Taxation and Finance +495549,Transportation,Transportation +382786,Financial Institutions,Financial Institutions +478022,Industry,Industry +471154,Small Business,Small Business +462095,Taxation and Finance,Taxation and Finance +283189,Financial Institutions,Financial Institutions +168598,Education,Education +90547,Transportation,Transportation +107296,Other,Border Management +137754,Environment,Environment +119075,Health,Health +160397,Taxation and Finance,Taxation and Finance +181046,Intellectual Property,Intellectual Property +464226,Agriculture,Agriculture +490209,Education,Education +452474,Employment and Training,Employment and Training +536090,Environment,Environment +536087,Health,Health +380643,Infrastructure,Infrastructure +285069,International Relations,International Relations +390664,International Trade,International Trade +146356,Tourism,Tourism +145441,Agriculture,Agriculture +167227,Internal Trade,Internal Trade +167227,International Trade,International Trade +167228,Labour,Labour +79174,Defence,Defence +201093,Agriculture,Agriculture +77519,Other,Border Management +377920,Environment,Environment +96194,Consumer Issues,Consumer Issues +96194,Financial Institutions,Financial Institutions +138461,Education,Education +526368,Environment,Environment +226977,International Relations,International Relations +435655,Energy,Energy +90556,Transportation,Transportation +77516,Other,Border Management +90564,Transportation,Transportation +77517,Other,Border Management +90560,Transportation,Transportation +77518,Other,Border Management +360803,Industry,Industry +388858,Agriculture,Agriculture +407305,Consumer Issues,Consumer Issues +407308,Health,Health +126214,Other,Food Safety +435581,Taxation and Finance,Taxation and Finance +471002,Industry,Industry +435578,Intellectual Property,Intellectual Property +106434,Other,Média +408492,Environment,Environment +470405,Energy,Energy +493206,Transportation,Transportation +90579,Transportation,Transportation +77524,Other,Border Management +90580,Transportation,Transportation +77525,Other,Border Management +82840,Immigration,Immigration +90576,Transportation,Transportation +77522,Other,Border Management +117656,Justice and Law Enforcement,Justice and Law Enforcement +189623,Justice and Law Enforcement,Justice and Law Enforcement +189620,Justice and Law Enforcement,Justice and Law Enforcement +465456,Justice and Law Enforcement,Justice and Law Enforcement +249189,Taxation and Finance,Taxation and Finance +391353,Taxation and Finance,Taxation and Finance +189623,Taxation and Finance,Taxation and Finance +189620,Taxation and Finance,Taxation and Finance +189605,Taxation and Finance,Taxation and Finance +243916,Taxation and Finance,Taxation and Finance +243915,Taxation and Finance,Taxation and Finance +243914,Taxation and Finance,Taxation and Finance +243913,Taxation and Finance,Taxation and Finance +243912,Taxation and Finance,Taxation and Finance +243910,Taxation and Finance,Taxation and Finance +243890,Taxation and Finance,Taxation and Finance +235363,Taxation and Finance,Taxation and Finance +235360,Taxation and Finance,Taxation and Finance +235357,Taxation and Finance,Taxation and Finance +233843,Taxation and Finance,Taxation and Finance +233842,Taxation and Finance,Taxation and Finance +233840,Taxation and Finance,Taxation and Finance +233837,Taxation and Finance,Taxation and Finance +233833,Taxation and Finance,Taxation and Finance +231054,Taxation and Finance,Taxation and Finance +231053,Taxation and Finance,Taxation and Finance +231052,Taxation and Finance,Taxation and Finance +231051,Taxation and Finance,Taxation and Finance +231050,Taxation and Finance,Taxation and Finance +231049,Taxation and Finance,Taxation and Finance +223949,Taxation and Finance,Taxation and Finance +223948,Taxation and Finance,Taxation and Finance +223947,Taxation and Finance,Taxation and Finance +223946,Taxation and Finance,Taxation and Finance +223945,Taxation and Finance,Taxation and Finance +223943,Taxation and Finance,Taxation and Finance +223942,Taxation and Finance,Taxation and Finance +218553,Taxation and Finance,Taxation and Finance +213330,Taxation and Finance,Taxation and Finance +213329,Taxation and Finance,Taxation and Finance +213328,Taxation and Finance,Taxation and Finance +213308,Taxation and Finance,Taxation and Finance +271714,Taxation and Finance,Taxation and Finance +258191,Taxation and Finance,Taxation and Finance +257791,Taxation and Finance,Taxation and Finance +252512,Taxation and Finance,Taxation and Finance +489757,Transportation,Transportation +486443,Transportation,Transportation +431728,Transportation,Transportation +423250,Transportation,Transportation +528871,Transportation,Transportation +517527,Transportation,Transportation +501151,Transportation,Transportation +381666,Financial Institutions,Financial Institutions +473799,Financial Institutions,Financial Institutions +473807,Industry,Industry +473797,Industry,Industry +159902,Industry,Industry +448230,Industry,Industry +448214,Industry,Industry +433841,Industry,Industry +433840,Industry,Industry +420308,Industry,Industry +502840,Industry,Industry +502830,Industry,Industry +502812,Industry,Industry +478235,Industry,Industry +478024,Industry,Industry +471148,Small Business,Small Business +468181,Small Business,Small Business +159905,Small Business,Small Business +159902,Small Business,Small Business +159895,Small Business,Small Business +159889,Small Business,Small Business +159883,Small Business,Small Business +159878,Small Business,Small Business +159873,Small Business,Small Business +159871,Small Business,Small Business +310809,Small Business,Small Business +262689,Small Business,Small Business +262672,Small Business,Small Business +261649,Small Business,Small Business +261630,Small Business,Small Business +261509,Small Business,Small Business +373835,Small Business,Small Business +350117,Small Business,Small Business +348152,Small Business,Small Business +347617,Small Business,Small Business +448222,Small Business,Small Business +448219,Small Business,Small Business +431206,Small Business,Small Business +431200,Small Business,Small Business +429459,Small Business,Small Business +429452,Small Business,Small Business +426601,Small Business,Small Business +426594,Small Business,Small Business +426585,Small Business,Small Business +410009,Small Business,Small Business +381670,Small Business,Small Business +381668,Small Business,Small Business +381667,Small Business,Small Business +381666,Small Business,Small Business +381665,Small Business,Small Business +381663,Small Business,Small Business +544129,Small Business,Small Business +535011,Small Business,Small Business +532370,Small Business,Small Business +524275,Small Business,Small Business +524252,Small Business,Small Business +502840,Small Business,Small Business +502830,Small Business,Small Business +502812,Small Business,Small Business +497075,Small Business,Small Business +491743,Small Business,Small Business +491655,Small Business,Small Business +491646,Small Business,Small Business +491642,Small Business,Small Business +491639,Small Business,Small Business +491637,Small Business,Small Business +475714,Small Business,Small Business +475710,Small Business,Small Business +475691,Small Business,Small Business +475681,Small Business,Small Business +475673,Small Business,Small Business +462094,Taxation and Finance,Taxation and Finance +456008,Taxation and Finance,Taxation and Finance +159895,Taxation and Finance,Taxation and Finance +159889,Taxation and Finance,Taxation and Finance +159883,Taxation and Finance,Taxation and Finance +159878,Taxation and Finance,Taxation and Finance +159873,Taxation and Finance,Taxation and Finance +382786,Taxation and Finance,Taxation and Finance +382653,Taxation and Finance,Taxation and Finance +410008,Taxation and Finance,Taxation and Finance +410001,Taxation and Finance,Taxation and Finance +409998,Taxation and Finance,Taxation and Finance +544129,Taxation and Finance,Taxation and Finance +535011,Taxation and Finance,Taxation and Finance +532370,Taxation and Finance,Taxation and Finance +524275,Taxation and Finance,Taxation and Finance +524252,Taxation and Finance,Taxation and Finance +518158,Taxation and Finance,Taxation and Finance +509060,Taxation and Finance,Taxation and Finance +505518,Taxation and Finance,Taxation and Finance +502840,Taxation and Finance,Taxation and Finance +502830,Taxation and Finance,Taxation and Finance +478041,Taxation and Finance,Taxation and Finance +473804,Taxation and Finance,Taxation and Finance +471154,Taxation and Finance,Taxation and Finance +468181,Taxation and Finance,Taxation and Finance +159911,Financial Institutions,Financial Institutions +418293,Financial Institutions,Financial Institutions +403258,Financial Institutions,Financial Institutions +403257,Financial Institutions,Financial Institutions +403255,Financial Institutions,Financial Institutions +403254,Financial Institutions,Financial Institutions +402826,Financial Institutions,Financial Institutions +396718,Financial Institutions,Financial Institutions +381671,Financial Institutions,Financial Institutions +357807,Financial Institutions,Financial Institutions +357802,Financial Institutions,Financial Institutions +456000,Financial Institutions,Financial Institutions +455997,Financial Institutions,Financial Institutions +455990,Financial Institutions,Financial Institutions +429491,Financial Institutions,Financial Institutions +429484,Financial Institutions,Financial Institutions +429481,Financial Institutions,Financial Institutions +429480,Financial Institutions,Financial Institutions +429476,Financial Institutions,Financial Institutions +429475,Financial Institutions,Financial Institutions +429470,Financial Institutions,Financial Institutions +429467,Financial Institutions,Financial Institutions +429465,Financial Institutions,Financial Institutions +90545,Transportation,Transportation +90543,Transportation,Transportation +90574,Transportation,Transportation +160396,Taxation and Finance,Taxation and Finance +177424,Intellectual Property,Intellectual Property +175585,Intellectual Property,Intellectual Property +92614,Intellectual Property,Intellectual Property +153068,Intellectual Property,Intellectual Property +187305,Intellectual Property,Intellectual Property +186965,Intellectual Property,Intellectual Property +181048,Intellectual Property,Intellectual Property +461737,Agriculture,Agriculture +461734,Agriculture,Agriculture +398062,Agriculture,Agriculture +398048,Agriculture,Agriculture +398047,Agriculture,Agriculture +396770,Agriculture,Agriculture +396743,Agriculture,Agriculture +393747,Agriculture,Agriculture +393737,Agriculture,Agriculture +390664,Agriculture,Agriculture +390663,Agriculture,Agriculture +390657,Agriculture,Agriculture +388671,Agriculture,Agriculture +387661,Agriculture,Agriculture +387648,Agriculture,Agriculture +382229,Agriculture,Agriculture +380645,Agriculture,Agriculture +459517,Agriculture,Agriculture +459515,Agriculture,Agriculture +458587,Agriculture,Agriculture +457111,Agriculture,Agriculture +457109,Agriculture,Agriculture +454494,Agriculture,Agriculture +452480,Agriculture,Agriculture +452472,Agriculture,Agriculture +450093,Agriculture,Agriculture +441844,Agriculture,Agriculture +441842,Agriculture,Agriculture +438743,Agriculture,Agriculture +435206,Agriculture,Agriculture +433436,Agriculture,Agriculture +430646,Agriculture,Agriculture +428264,Agriculture,Agriculture +426075,Agriculture,Agriculture +426070,Agriculture,Agriculture +426066,Agriculture,Agriculture +426046,Agriculture,Agriculture +425900,Agriculture,Agriculture +423755,Agriculture,Agriculture +422175,Agriculture,Agriculture +422133,Agriculture,Agriculture +418815,Agriculture,Agriculture +415691,Agriculture,Agriculture +415688,Agriculture,Agriculture +415686,Agriculture,Agriculture +415685,Agriculture,Agriculture +415684,Agriculture,Agriculture +415682,Agriculture,Agriculture +413516,Agriculture,Agriculture +409886,Agriculture,Agriculture +407972,Agriculture,Agriculture +407885,Agriculture,Agriculture +403512,Agriculture,Agriculture +403510,Agriculture,Agriculture +403509,Agriculture,Agriculture +403504,Agriculture,Agriculture +400772,Agriculture,Agriculture +542789,Agriculture,Agriculture +542788,Agriculture,Agriculture +542787,Agriculture,Agriculture +542786,Agriculture,Agriculture +542784,Agriculture,Agriculture +542783,Agriculture,Agriculture +538973,Agriculture,Agriculture +536090,Agriculture,Agriculture +530549,Agriculture,Agriculture +530492,Agriculture,Agriculture +523019,Agriculture,Agriculture +519142,Agriculture,Agriculture +510031,Agriculture,Agriculture +504351,Agriculture,Agriculture +492647,Agriculture,Agriculture +490209,Agriculture,Agriculture +486258,Agriculture,Agriculture +486252,Agriculture,Agriculture +474854,Agriculture,Agriculture +472293,Agriculture,Agriculture +466944,Agriculture,Agriculture +466633,Agriculture,Agriculture +466629,Agriculture,Agriculture +466624,Agriculture,Agriculture +486255,Education,Education +486252,Education,Education +106380,Education,Education +103075,Education,Education +85015,Education,Education +126955,Education,Education +214047,Education,Education +390673,Education,Education +390671,Education,Education +390667,Education,Education +387661,Education,Education +387649,Education,Education +387648,Education,Education +382229,Education,Education +536089,Education,Education +536088,Education,Education +477824,Employment and Training,Employment and Training +458587,Employment and Training,Employment and Training +103074,Employment and Training,Employment and Training +474854,Environment,Environment +466626,Environment,Environment +387648,Environment,Environment +433434,Environment,Environment +415686,Environment,Environment +516128,Health,Health +486255,Health,Health +387648,Health,Health +235150,Health,Health +214047,Health,Health +466631,Health,Health +457110,Health,Health +398047,Health,Health +396743,Health,Health +390657,Health,Health +388671,Health,Health +388670,Health,Health +542787,Health,Health +541550,Health,Health +538973,Health,Health +537990,Health,Health +537988,Health,Health +536093,Health,Health +536092,Health,Health +536091,Health,Health +380621,Infrastructure,Infrastructure +527541,Infrastructure,Infrastructure +516680,Infrastructure,Infrastructure +516588,Infrastructure,Infrastructure +513733,Infrastructure,Infrastructure +501074,Infrastructure,Infrastructure +472293,Infrastructure,Infrastructure +466623,Infrastructure,Infrastructure +461737,Infrastructure,Infrastructure +433434,Infrastructure,Infrastructure +390649,Infrastructure,Infrastructure +380649,Infrastructure,Infrastructure +413507,International Relations,International Relations +77205,Agriculture,Agriculture +167227,Labour,Labour +201092,Agriculture,Agriculture +197104,Agriculture,Agriculture +88123,Agriculture,Agriculture +82958,Agriculture,Agriculture +82957,Agriculture,Agriculture +82956,Agriculture,Agriculture +82955,Agriculture,Agriculture +82954,Agriculture,Agriculture +80700,Agriculture,Agriculture +132396,Agriculture,Agriculture +128996,Agriculture,Agriculture +111865,Agriculture,Agriculture +111863,Agriculture,Agriculture +111862,Agriculture,Agriculture +111861,Agriculture,Agriculture +111860,Agriculture,Agriculture +111859,Agriculture,Agriculture +111855,Agriculture,Agriculture +111854,Agriculture,Agriculture +111788,Agriculture,Agriculture +111787,Agriculture,Agriculture +111785,Agriculture,Agriculture +111783,Agriculture,Agriculture +111782,Agriculture,Agriculture +111781,Agriculture,Agriculture +111780,Agriculture,Agriculture +111779,Agriculture,Agriculture +111778,Agriculture,Agriculture +111776,Agriculture,Agriculture +111775,Agriculture,Agriculture +111774,Agriculture,Agriculture +111767,Agriculture,Agriculture +111766,Agriculture,Agriculture +111765,Agriculture,Agriculture +111764,Agriculture,Agriculture +111763,Agriculture,Agriculture +111762,Agriculture,Agriculture +111761,Agriculture,Agriculture +111759,Agriculture,Agriculture +90371,Agriculture,Agriculture +195624,Agriculture,Agriculture +189966,Agriculture,Agriculture +189965,Agriculture,Agriculture +189964,Agriculture,Agriculture +186444,Agriculture,Agriculture +174097,Agriculture,Agriculture +174096,Agriculture,Agriculture +174095,Agriculture,Agriculture +174094,Agriculture,Agriculture +174056,Agriculture,Agriculture +174055,Agriculture,Agriculture +174054,Agriculture,Agriculture +174053,Agriculture,Agriculture +174052,Agriculture,Agriculture +174051,Agriculture,Agriculture +160072,Agriculture,Agriculture +160071,Agriculture,Agriculture +160069,Agriculture,Agriculture +160067,Agriculture,Agriculture +160064,Agriculture,Agriculture +160061,Agriculture,Agriculture +156706,Agriculture,Agriculture +156705,Agriculture,Agriculture +156704,Agriculture,Agriculture +156703,Agriculture,Agriculture +156702,Agriculture,Agriculture +152365,Agriculture,Agriculture +152364,Agriculture,Agriculture +150901,Agriculture,Agriculture +150900,Agriculture,Agriculture +150899,Agriculture,Agriculture +142538,Agriculture,Agriculture +142537,Agriculture,Agriculture +142536,Agriculture,Agriculture +142528,Agriculture,Agriculture +139679,Agriculture,Agriculture +139677,Agriculture,Agriculture +136721,Agriculture,Agriculture +136720,Agriculture,Agriculture +136719,Agriculture,Agriculture +136718,Agriculture,Agriculture +136717,Agriculture,Agriculture +136716,Agriculture,Agriculture +136715,Agriculture,Agriculture +132435,Agriculture,Agriculture +201095,Agriculture,Agriculture +201094,Agriculture,Agriculture +373646,Environment,Environment +344586,Environment,Environment +99776,Environment,Environment +99774,Environment,Environment +160939,Environment,Environment +160936,Environment,Environment +160488,Environment,Environment +135454,Environment,Environment +127074,Environment,Environment +119175,Environment,Environment +119174,Environment,Environment +288049,Environment,Environment +284074,Environment,Environment +240049,Environment,Environment +388950,Environment,Environment +387104,Environment,Environment +138460,Education,Education +138458,Education,Education +100500,Environment,Environment +83554,Environment,Environment +82594,Environment,Environment +77198,Environment,Environment +147574,Environment,Environment +141995,Environment,Environment +141994,Environment,Environment +134794,Environment,Environment +269152,Environment,Environment +233475,Environment,Environment +226974,Environment,Environment +199674,Environment,Environment +168028,Environment,Environment +167383,Environment,Environment +165445,Environment,Environment +161498,Environment,Environment +161496,Environment,Environment +156572,Environment,Environment +156570,Environment,Environment +338455,Environment,Environment +467527,Environment,Environment +460598,Environment,Environment +460595,Environment,Environment +459577,Environment,Environment +459576,Environment,Environment +445434,Environment,Environment +435660,Environment,Environment +435655,Environment,Environment +416010,Environment,Environment +539632,Environment,Environment +539631,Environment,Environment +537848,Environment,Environment +535086,Environment,Environment +535084,Environment,Environment +531407,Environment,Environment +531406,Environment,Environment +531404,Environment,Environment +269154,International Relations,International Relations +429010,Energy,Energy +429002,Energy,Energy +100503,Energy,Energy +83554,Energy,Energy +82594,Energy,Energy +77198,Energy,Energy +202838,Energy,Energy +199674,Energy,Energy +199672,Energy,Energy +199671,Energy,Energy +195285,Energy,Energy +194865,Energy,Energy +194862,Energy,Energy +173584,Energy,Energy +170883,Energy,Energy +168028,Energy,Energy +167383,Energy,Energy +165445,Energy,Energy +163607,Energy,Energy +156572,Energy,Energy +156570,Energy,Energy +141995,Energy,Energy +134796,Energy,Energy +134795,Energy,Energy +369461,Energy,Energy +338455,Energy,Energy +335760,Energy,Energy +333328,Energy,Energy +333325,Energy,Energy +332091,Energy,Energy +322140,Energy,Energy +310280,Energy,Energy +310278,Energy,Energy +290391,Energy,Energy +290389,Energy,Energy +281489,Energy,Energy +281470,Energy,Energy +269154,Energy,Energy +269150,Energy,Energy +258477,Energy,Energy +258473,Energy,Energy +253973,Energy,Energy +253971,Energy,Energy +249809,Energy,Energy +244891,Energy,Energy +233475,Energy,Energy +226974,Energy,Energy +417885,Energy,Energy +417808,Energy,Energy +416010,Energy,Energy +413020,Energy,Energy +409806,Energy,Energy +407326,Energy,Energy +407059,Energy,Energy +403330,Energy,Energy +385505,Energy,Energy +541848,Energy,Energy +539632,Energy,Energy +539631,Energy,Energy +537848,Energy,Energy +537846,Energy,Energy +535086,Energy,Energy +535084,Energy,Energy +531407,Energy,Energy +531406,Energy,Energy +531404,Energy,Energy +528769,Energy,Energy +526374,Energy,Energy +526373,Energy,Energy +522322,Energy,Energy +522320,Energy,Energy +519745,Energy,Energy +519743,Energy,Energy +513311,Energy,Energy +513310,Energy,Energy +513309,Energy,Energy +513308,Energy,Energy +511116,Energy,Energy +511100,Energy,Energy +508811,Energy,Energy +504734,Energy,Energy +504728,Energy,Energy +498376,Energy,Energy +498375,Energy,Energy +493443,Energy,Energy +490936,Energy,Energy +487138,Energy,Energy +464719,Energy,Energy +464715,Energy,Energy +464712,Energy,Energy +461652,Energy,Energy +460598,Energy,Energy +460595,Energy,Energy +460163,Energy,Energy +459577,Energy,Energy +459576,Energy,Energy +459569,Energy,Energy +459567,Energy,Energy +458675,Energy,Energy +455697,Energy,Energy +455663,Energy,Energy +445434,Energy,Energy +442419,Energy,Energy +442167,Energy,Energy +442165,Energy,Energy +439075,Energy,Energy +435660,Energy,Energy +90555,Transportation,Transportation +90551,Transportation,Transportation +90567,Transportation,Transportation +90557,Transportation,Transportation +90563,Transportation,Transportation +90562,Transportation,Transportation +90575,Transportation,Transportation +90566,Transportation,Transportation +90559,Transportation,Transportation +90558,Transportation,Transportation +90561,Transportation,Transportation +360802,Industry,Industry +356756,Industry,Industry +180469,Industry,Industry +170544,Industry,Industry +170543,Industry,Industry +170542,Industry,Industry +170540,Industry,Industry +170539,Industry,Industry +335510,Industry,Industry +316376,Industry,Industry +316374,Industry,Industry +297651,Industry,Industry +278037,Industry,Industry +278036,Industry,Industry +273740,Industry,Industry +273739,Industry,Industry +273738,Industry,Industry +273736,Industry,Industry +273735,Industry,Industry +273734,Industry,Industry +264569,Industry,Industry +264563,Industry,Industry +240373,Industry,Industry +240372,Industry,Industry +212432,Industry,Industry +212427,Industry,Industry +207688,Industry,Industry +207687,Industry,Industry +364042,Industry,Industry +380220,Agriculture,Agriculture +423268,Agriculture,Agriculture +147296,Agriculture,Agriculture +147295,Agriculture,Agriculture +235569,Agriculture,Agriculture +201492,Agriculture,Agriculture +172346,Agriculture,Agriculture +172345,Agriculture,Agriculture +154172,Agriculture,Agriculture +147297,Agriculture,Agriculture +366963,Agriculture,Agriculture +351361,Agriculture,Agriculture +351360,Agriculture,Agriculture +332449,Agriculture,Agriculture +332009,Agriculture,Agriculture +277992,Agriculture,Agriculture +277991,Agriculture,Agriculture +277990,Agriculture,Agriculture +254789,Agriculture,Agriculture +254770,Agriculture,Agriculture +254769,Agriculture,Agriculture +407304,Agriculture,Agriculture +397561,Agriculture,Agriculture +407304,Consumer Issues,Consumer Issues +172346,Consumer Issues,Consumer Issues +172345,Consumer Issues,Consumer Issues +154172,Consumer Issues,Consumer Issues +147296,Consumer Issues,Consumer Issues +147295,Consumer Issues,Consumer Issues +367815,Consumer Issues,Consumer Issues +366963,Consumer Issues,Consumer Issues +351361,Consumer Issues,Consumer Issues +351360,Consumer Issues,Consumer Issues +332449,Consumer Issues,Consumer Issues +407311,Consumer Issues,Consumer Issues +407310,Consumer Issues,Consumer Issues +407308,Consumer Issues,Consumer Issues +407305,Health,Health +407304,Health,Health +147296,Health,Health +147295,Health,Health +154172,Health,Health +307449,Health,Health +172346,Health,Health +172345,Health,Health +397561,Health,Health +388858,Health,Health +388857,Health,Health +380220,Health,Health +372218,Health,Health +367815,Health,Health +366963,Health,Health +351361,Health,Health +351360,Health,Health +332449,Health,Health +332009,Health,Health +330507,Health,Health +446638,Health,Health +446636,Health,Health +431390,Health,Health +431389,Health,Health +427105,Health,Health +423268,Health,Health +423248,Health,Health +421775,Health,Health +420634,Health,Health +418681,Health,Health +418679,Health,Health +418678,Health,Health +418411,Health,Health +413878,Health,Health +407311,Health,Health +407310,Health,Health +435579,Taxation and Finance,Taxation and Finance +521685,Taxation and Finance,Taxation and Finance +508780,Taxation and Finance,Taxation and Finance +502266,Taxation and Finance,Taxation and Finance +499376,Taxation and Finance,Taxation and Finance +499332,Taxation and Finance,Taxation and Finance +499318,Taxation and Finance,Taxation and Finance +496135,Taxation and Finance,Taxation and Finance +496131,Taxation and Finance,Taxation and Finance +493711,Taxation and Finance,Taxation and Finance +491695,Taxation and Finance,Taxation and Finance +491586,Taxation and Finance,Taxation and Finance +491525,Taxation and Finance,Taxation and Finance +486031,Taxation and Finance,Taxation and Finance +485103,Taxation and Finance,Taxation and Finance +485057,Taxation and Finance,Taxation and Finance +478594,Taxation and Finance,Taxation and Finance +478125,Taxation and Finance,Taxation and Finance +475870,Taxation and Finance,Taxation and Finance +475855,Taxation and Finance,Taxation and Finance +475824,Taxation and Finance,Taxation and Finance +475813,Taxation and Finance,Taxation and Finance +475807,Taxation and Finance,Taxation and Finance +475797,Taxation and Finance,Taxation and Finance +475792,Taxation and Finance,Taxation and Finance +475780,Taxation and Finance,Taxation and Finance +475758,Taxation and Finance,Taxation and Finance +475748,Taxation and Finance,Taxation and Finance +475709,Taxation and Finance,Taxation and Finance +471053,Taxation and Finance,Taxation and Finance +460693,Taxation and Finance,Taxation and Finance +435608,Taxation and Finance,Taxation and Finance +448133,Industry,Industry +532457,Industry,Industry +94101,Industry,Industry +185996,Industry,Industry +330238,Industry,Industry +315899,Industry,Industry +312860,Industry,Industry +279829,Industry,Industry +240920,Industry,Industry +237210,Industry,Industry +237209,Industry,Industry +233876,Industry,Industry +233875,Industry,Industry +233873,Industry,Industry +233871,Industry,Industry +233870,Industry,Industry +526276,Industry,Industry +496137,Industry,Industry +486031,Industry,Industry +505209,Intellectual Property,Intellectual Property +482261,Intellectual Property,Intellectual Property +88260,Intellectual Property,Intellectual Property +478593,Intellectual Property,Intellectual Property +460701,Intellectual Property,Intellectual Property +460693,Intellectual Property,Intellectual Property +470398,Energy,Energy +470396,Energy,Energy +233406,Energy,Energy +233405,Energy,Energy +232189,Energy,Energy +374828,Energy,Energy +467558,Energy,Energy +467547,Energy,Energy +467506,Energy,Energy +467503,Energy,Energy +467499,Energy,Energy +467496,Energy,Energy +467492,Energy,Energy +467488,Energy,Energy +467482,Energy,Energy +467479,Energy,Energy +467475,Energy,Energy +467468,Energy,Energy +467465,Energy,Energy +467426,Energy,Energy +467411,Energy,Energy +467406,Energy,Energy +467398,Energy,Energy +457095,Energy,Energy +455643,Energy,Energy +443737,Energy,Energy +442300,Energy,Energy +435340,Energy,Energy +430085,Energy,Energy +430084,Energy,Energy +430083,Energy,Energy +430082,Energy,Energy +430057,Energy,Energy +430053,Energy,Energy +428164,Energy,Energy +428149,Energy,Energy +421939,Energy,Energy +421934,Energy,Energy +403046,Energy,Energy +400699,Energy,Energy +400695,Energy,Energy +400688,Energy,Energy +398497,Energy,Energy +393888,Energy,Energy +392493,Energy,Energy +385597,Energy,Energy +385596,Energy,Energy +385594,Energy,Energy +385589,Energy,Energy +385587,Energy,Energy +385583,Energy,Energy +385414,Energy,Energy +383475,Energy,Energy +381384,Energy,Energy +381379,Energy,Energy +543928,Energy,Energy +543927,Energy,Energy +543926,Energy,Energy +543924,Energy,Energy +543922,Energy,Energy +543912,Energy,Energy +543904,Energy,Energy +543900,Energy,Energy +543897,Energy,Energy +543890,Energy,Energy +535432,Energy,Energy +529206,Energy,Energy +529204,Energy,Energy +529201,Energy,Energy +517372,Energy,Energy +508783,Energy,Energy +508776,Energy,Energy +503996,Energy,Energy +503995,Energy,Energy +501519,Energy,Energy +501509,Energy,Energy +498353,Energy,Energy +495484,Energy,Energy +495483,Energy,Energy +493207,Energy,Energy +491056,Energy,Energy +488136,Energy,Energy +488135,Energy,Energy +488134,Energy,Energy +479739,Energy,Energy +479738,Energy,Energy +479737,Energy,Energy +477570,Energy,Energy +477569,Energy,Energy +474932,Energy,Energy +474931,Energy,Energy +474930,Energy,Energy +474928,Energy,Energy +474926,Energy,Energy +472891,Energy,Energy +472889,Energy,Energy +472886,Energy,Energy +472884,Energy,Energy +472878,Energy,Energy +472844,Energy,Energy +488137,Transportation,Transportation +443735,Transportation,Transportation +430087,Transportation,Transportation +541828,Transportation,Transportation +536530,Transportation,Transportation +522542,Transportation,Transportation +519863,Transportation,Transportation +508779,Transportation,Transportation +498349,Transportation,Transportation +77521,Other,Border Management +108470,Agriculture,Agriculture +201198,Agriculture,Agriculture +108540,Agriculture,Agriculture +224508,Regional Development,Regional Development +224507,Regional Development,Regional Development +108540,Regional Development,Regional Development +108537,Regional Development,Regional Development +108470,Regional Development,Regional Development +218807,Regional Development,Regional Development +208829,Regional Development,Regional Development +230120,Regional Development,Regional Development +230117,Regional Development,Regional Development +230116,Regional Development,Regional Development +230114,Regional Development,Regional Development +230113,Regional Development,Regional Development +108470,Small Business,Small Business +208829,Small Business,Small Business +108540,Small Business,Small Business +128375,International Relations,International Relations +148269,Transportation,Transportation +199678,Fisheries,Fisheries +250917,Fisheries,Fisheries +142624,Fisheries,Fisheries +199703,Fisheries,Fisheries +199701,Fisheries,Fisheries +199698,Fisheries,Fisheries +199691,Fisheries,Fisheries +166943,Intellectual Property,Intellectual Property +160701,Intellectual Property,Intellectual Property +125534,Intellectual Property,Intellectual Property +125514,Intellectual Property,Intellectual Property +125460,Intellectual Property,Intellectual Property +125459,Intellectual Property,Intellectual Property +156662,Intellectual Property,Intellectual Property +156661,Intellectual Property,Intellectual Property +156659,Intellectual Property,Intellectual Property +156657,Intellectual Property,Intellectual Property +156655,Intellectual Property,Intellectual Property +156653,Intellectual Property,Intellectual Property +147941,Intellectual Property,Intellectual Property +147940,Intellectual Property,Intellectual Property +167559,Intellectual Property,Intellectual Property +455352,Agriculture,Agriculture +455351,Agriculture,Agriculture +156320,Agriculture,Agriculture +156318,Agriculture,Agriculture +156314,Agriculture,Agriculture +156308,Agriculture,Agriculture +156306,Agriculture,Agriculture +109685,Agriculture,Agriculture +99705,Agriculture,Agriculture +87664,Agriculture,Agriculture +227182,Agriculture,Agriculture +227179,Agriculture,Agriculture +227173,Agriculture,Agriculture +217625,Agriculture,Agriculture +217620,Agriculture,Agriculture +217614,Agriculture,Agriculture +217548,Agriculture,Agriculture +207093,Agriculture,Agriculture +201507,Agriculture,Agriculture +187848,Agriculture,Agriculture +187847,Agriculture,Agriculture +187846,Agriculture,Agriculture +187845,Agriculture,Agriculture +187827,Agriculture,Agriculture +162018,Agriculture,Agriculture +162015,Agriculture,Agriculture +162011,Agriculture,Agriculture +162008,Agriculture,Agriculture +162006,Agriculture,Agriculture +162001,Agriculture,Agriculture +156328,Agriculture,Agriculture +319260,Agriculture,Agriculture +310555,Agriculture,Agriculture +310554,Agriculture,Agriculture +310540,Agriculture,Agriculture +310538,Agriculture,Agriculture +304493,Agriculture,Agriculture +304483,Agriculture,Agriculture +296784,Agriculture,Agriculture +287067,Agriculture,Agriculture +287012,Agriculture,Agriculture +286991,Agriculture,Agriculture +283089,Agriculture,Agriculture +281074,Agriculture,Agriculture +281071,Agriculture,Agriculture +280431,Agriculture,Agriculture +277481,Agriculture,Agriculture +273685,Agriculture,Agriculture +273682,Agriculture,Agriculture +273680,Agriculture,Agriculture +273678,Agriculture,Agriculture +269619,Agriculture,Agriculture +269615,Agriculture,Agriculture +262849,Agriculture,Agriculture +262831,Agriculture,Agriculture +262830,Agriculture,Agriculture +258551,Agriculture,Agriculture +254308,Agriculture,Agriculture +254306,Agriculture,Agriculture +254305,Agriculture,Agriculture +254303,Agriculture,Agriculture +254302,Agriculture,Agriculture +254301,Agriculture,Agriculture +254300,Agriculture,Agriculture +254299,Agriculture,Agriculture +254298,Agriculture,Agriculture +254297,Agriculture,Agriculture +254293,Agriculture,Agriculture +254290,Agriculture,Agriculture +250896,Agriculture,Agriculture +245352,Agriculture,Agriculture +245350,Agriculture,Agriculture +240832,Agriculture,Agriculture +240831,Agriculture,Agriculture +240830,Agriculture,Agriculture +240829,Agriculture,Agriculture +234729,Agriculture,Agriculture +233411,Agriculture,Agriculture +233410,Agriculture,Agriculture +233409,Agriculture,Agriculture +230471,Agriculture,Agriculture +230468,Agriculture,Agriculture +230467,Agriculture,Agriculture +230464,Agriculture,Agriculture +230460,Agriculture,Agriculture +230458,Agriculture,Agriculture +230455,Agriculture,Agriculture +230452,Agriculture,Agriculture +227184,Agriculture,Agriculture +380881,Agriculture,Agriculture +380880,Agriculture,Agriculture +380879,Agriculture,Agriculture +380878,Agriculture,Agriculture +380877,Agriculture,Agriculture +380876,Agriculture,Agriculture +380875,Agriculture,Agriculture +380828,Agriculture,Agriculture +380817,Agriculture,Agriculture +379448,Agriculture,Agriculture +379447,Agriculture,Agriculture +379446,Agriculture,Agriculture +379443,Agriculture,Agriculture +379439,Agriculture,Agriculture +379438,Agriculture,Agriculture +379437,Agriculture,Agriculture +379435,Agriculture,Agriculture +379432,Agriculture,Agriculture +379429,Agriculture,Agriculture +379428,Agriculture,Agriculture +379426,Agriculture,Agriculture +379424,Agriculture,Agriculture +379348,Agriculture,Agriculture +379346,Agriculture,Agriculture +379345,Agriculture,Agriculture +379339,Agriculture,Agriculture +379296,Agriculture,Agriculture +379033,Agriculture,Agriculture +379027,Agriculture,Agriculture +377268,Agriculture,Agriculture +377267,Agriculture,Agriculture +377266,Agriculture,Agriculture +377264,Agriculture,Agriculture +377261,Agriculture,Agriculture +377258,Agriculture,Agriculture +377257,Agriculture,Agriculture +374247,Agriculture,Agriculture +374245,Agriculture,Agriculture +374244,Agriculture,Agriculture +374241,Agriculture,Agriculture +374239,Agriculture,Agriculture +374234,Agriculture,Agriculture +374231,Agriculture,Agriculture +374209,Agriculture,Agriculture +372100,Agriculture,Agriculture +372087,Agriculture,Agriculture +371120,Agriculture,Agriculture +371118,Agriculture,Agriculture +371111,Agriculture,Agriculture +371046,Agriculture,Agriculture +371042,Agriculture,Agriculture +371040,Agriculture,Agriculture +369487,Agriculture,Agriculture +369486,Agriculture,Agriculture +369485,Agriculture,Agriculture +369484,Agriculture,Agriculture +369483,Agriculture,Agriculture +369479,Agriculture,Agriculture +369407,Agriculture,Agriculture +366598,Agriculture,Agriculture +366595,Agriculture,Agriculture +365129,Agriculture,Agriculture +365108,Agriculture,Agriculture +365101,Agriculture,Agriculture +363386,Agriculture,Agriculture +361188,Agriculture,Agriculture +359972,Agriculture,Agriculture +359971,Agriculture,Agriculture +359970,Agriculture,Agriculture +359969,Agriculture,Agriculture +359968,Agriculture,Agriculture +359966,Agriculture,Agriculture +359922,Agriculture,Agriculture +358124,Agriculture,Agriculture +356303,Agriculture,Agriculture +356301,Agriculture,Agriculture +356290,Agriculture,Agriculture +354117,Agriculture,Agriculture +354114,Agriculture,Agriculture +351091,Agriculture,Agriculture +348840,Agriculture,Agriculture +348839,Agriculture,Agriculture +348838,Agriculture,Agriculture +348837,Agriculture,Agriculture +347038,Agriculture,Agriculture +347037,Agriculture,Agriculture +347036,Agriculture,Agriculture +347035,Agriculture,Agriculture +347034,Agriculture,Agriculture +347032,Agriculture,Agriculture +347031,Agriculture,Agriculture +341435,Agriculture,Agriculture +341434,Agriculture,Agriculture +341433,Agriculture,Agriculture +341432,Agriculture,Agriculture +341431,Agriculture,Agriculture +341430,Agriculture,Agriculture +338695,Agriculture,Agriculture +335575,Agriculture,Agriculture +333612,Agriculture,Agriculture +333611,Agriculture,Agriculture +333609,Agriculture,Agriculture +331633,Agriculture,Agriculture +329935,Agriculture,Agriculture +329933,Agriculture,Agriculture +329932,Agriculture,Agriculture +329930,Agriculture,Agriculture +329929,Agriculture,Agriculture +329928,Agriculture,Agriculture +329926,Agriculture,Agriculture +329924,Agriculture,Agriculture +329923,Agriculture,Agriculture +325077,Agriculture,Agriculture +325073,Agriculture,Agriculture +325066,Agriculture,Agriculture +319270,Agriculture,Agriculture +319266,Agriculture,Agriculture +319262,Agriculture,Agriculture +451637,Agriculture,Agriculture +451636,Agriculture,Agriculture +451635,Agriculture,Agriculture +451633,Agriculture,Agriculture +451632,Agriculture,Agriculture +451631,Agriculture,Agriculture +451630,Agriculture,Agriculture +451609,Agriculture,Agriculture +451607,Agriculture,Agriculture +451606,Agriculture,Agriculture +451605,Agriculture,Agriculture +451600,Agriculture,Agriculture +451598,Agriculture,Agriculture +451595,Agriculture,Agriculture +449797,Agriculture,Agriculture +449741,Agriculture,Agriculture +449737,Agriculture,Agriculture +449734,Agriculture,Agriculture +449728,Agriculture,Agriculture +447449,Agriculture,Agriculture +447448,Agriculture,Agriculture +447442,Agriculture,Agriculture +447439,Agriculture,Agriculture +447437,Agriculture,Agriculture +447433,Agriculture,Agriculture +444891,Agriculture,Agriculture +444887,Agriculture,Agriculture +444885,Agriculture,Agriculture +444761,Agriculture,Agriculture +444760,Agriculture,Agriculture +444759,Agriculture,Agriculture +443256,Agriculture,Agriculture +443255,Agriculture,Agriculture +443180,Agriculture,Agriculture +441662,Agriculture,Agriculture +441661,Agriculture,Agriculture +441654,Agriculture,Agriculture +441497,Agriculture,Agriculture +441496,Agriculture,Agriculture +441495,Agriculture,Agriculture +441494,Agriculture,Agriculture +441493,Agriculture,Agriculture +441492,Agriculture,Agriculture +441491,Agriculture,Agriculture +441490,Agriculture,Agriculture +441489,Agriculture,Agriculture +441487,Agriculture,Agriculture +441486,Agriculture,Agriculture +441485,Agriculture,Agriculture +441484,Agriculture,Agriculture +441483,Agriculture,Agriculture +441482,Agriculture,Agriculture +437900,Agriculture,Agriculture +437899,Agriculture,Agriculture +437898,Agriculture,Agriculture +437897,Agriculture,Agriculture +437896,Agriculture,Agriculture +434935,Agriculture,Agriculture +434934,Agriculture,Agriculture +434933,Agriculture,Agriculture +434932,Agriculture,Agriculture +434931,Agriculture,Agriculture +434930,Agriculture,Agriculture +434929,Agriculture,Agriculture +434928,Agriculture,Agriculture +434927,Agriculture,Agriculture +434926,Agriculture,Agriculture +434925,Agriculture,Agriculture +434924,Agriculture,Agriculture +434923,Agriculture,Agriculture +431423,Agriculture,Agriculture +431422,Agriculture,Agriculture +430330,Agriculture,Agriculture +430329,Agriculture,Agriculture +430328,Agriculture,Agriculture +430327,Agriculture,Agriculture +430326,Agriculture,Agriculture +430325,Agriculture,Agriculture +430324,Agriculture,Agriculture +430323,Agriculture,Agriculture +430322,Agriculture,Agriculture +430321,Agriculture,Agriculture +430320,Agriculture,Agriculture +428406,Agriculture,Agriculture +428392,Agriculture,Agriculture +428352,Agriculture,Agriculture +424973,Agriculture,Agriculture +424972,Agriculture,Agriculture +424971,Agriculture,Agriculture +424966,Agriculture,Agriculture +423907,Agriculture,Agriculture +422239,Agriculture,Agriculture +422047,Agriculture,Agriculture +422045,Agriculture,Agriculture +422044,Agriculture,Agriculture +422043,Agriculture,Agriculture +422042,Agriculture,Agriculture +422041,Agriculture,Agriculture +422040,Agriculture,Agriculture +422029,Agriculture,Agriculture +421938,Agriculture,Agriculture +421932,Agriculture,Agriculture +421931,Agriculture,Agriculture +421925,Agriculture,Agriculture +421923,Agriculture,Agriculture +421920,Agriculture,Agriculture +419171,Agriculture,Agriculture +419170,Agriculture,Agriculture +419169,Agriculture,Agriculture +417910,Agriculture,Agriculture +417906,Agriculture,Agriculture +417752,Agriculture,Agriculture +415421,Agriculture,Agriculture +415420,Agriculture,Agriculture +415387,Agriculture,Agriculture +415383,Agriculture,Agriculture +415378,Agriculture,Agriculture +415373,Agriculture,Agriculture +415372,Agriculture,Agriculture +415367,Agriculture,Agriculture +415365,Agriculture,Agriculture +415361,Agriculture,Agriculture +415359,Agriculture,Agriculture +415358,Agriculture,Agriculture +415357,Agriculture,Agriculture +415356,Agriculture,Agriculture +415353,Agriculture,Agriculture +415351,Agriculture,Agriculture +415346,Agriculture,Agriculture +411959,Agriculture,Agriculture +411958,Agriculture,Agriculture +411945,Agriculture,Agriculture +411832,Agriculture,Agriculture +409114,Agriculture,Agriculture +409112,Agriculture,Agriculture +409092,Agriculture,Agriculture +409082,Agriculture,Agriculture +407533,Agriculture,Agriculture +407531,Agriculture,Agriculture +407530,Agriculture,Agriculture +406784,Agriculture,Agriculture +406628,Agriculture,Agriculture +406612,Agriculture,Agriculture +406597,Agriculture,Agriculture +406595,Agriculture,Agriculture +406593,Agriculture,Agriculture +404984,Agriculture,Agriculture +404983,Agriculture,Agriculture +404982,Agriculture,Agriculture +404981,Agriculture,Agriculture +404980,Agriculture,Agriculture +404979,Agriculture,Agriculture +404971,Agriculture,Agriculture +404969,Agriculture,Agriculture +403308,Agriculture,Agriculture +403277,Agriculture,Agriculture +400369,Agriculture,Agriculture +400368,Agriculture,Agriculture +400367,Agriculture,Agriculture +400365,Agriculture,Agriculture +398303,Agriculture,Agriculture +398302,Agriculture,Agriculture +398051,Agriculture,Agriculture +398049,Agriculture,Agriculture +396375,Agriculture,Agriculture +396303,Agriculture,Agriculture +396302,Agriculture,Agriculture +396301,Agriculture,Agriculture +396300,Agriculture,Agriculture +396299,Agriculture,Agriculture +396298,Agriculture,Agriculture +396297,Agriculture,Agriculture +396296,Agriculture,Agriculture +396295,Agriculture,Agriculture +396293,Agriculture,Agriculture +393944,Agriculture,Agriculture +392627,Agriculture,Agriculture +392624,Agriculture,Agriculture +392622,Agriculture,Agriculture +392613,Agriculture,Agriculture +390440,Agriculture,Agriculture +390438,Agriculture,Agriculture +390436,Agriculture,Agriculture +390434,Agriculture,Agriculture +390433,Agriculture,Agriculture +390422,Agriculture,Agriculture +390419,Agriculture,Agriculture +390407,Agriculture,Agriculture +390405,Agriculture,Agriculture +386875,Agriculture,Agriculture +386874,Agriculture,Agriculture +386873,Agriculture,Agriculture +386872,Agriculture,Agriculture +385688,Agriculture,Agriculture +385685,Agriculture,Agriculture +385681,Agriculture,Agriculture +385673,Agriculture,Agriculture +385672,Agriculture,Agriculture +385668,Agriculture,Agriculture +383835,Agriculture,Agriculture +383830,Agriculture,Agriculture +383828,Agriculture,Agriculture +383822,Agriculture,Agriculture +383806,Agriculture,Agriculture +383800,Agriculture,Agriculture +383793,Agriculture,Agriculture +383786,Agriculture,Agriculture +383781,Agriculture,Agriculture +383778,Agriculture,Agriculture +383775,Agriculture,Agriculture +383774,Agriculture,Agriculture +383770,Agriculture,Agriculture +383755,Agriculture,Agriculture +382629,Agriculture,Agriculture +382628,Agriculture,Agriculture +382627,Agriculture,Agriculture +382602,Agriculture,Agriculture +542646,Agriculture,Agriculture +542645,Agriculture,Agriculture +542644,Agriculture,Agriculture +542643,Agriculture,Agriculture +542642,Agriculture,Agriculture +542641,Agriculture,Agriculture +542640,Agriculture,Agriculture +542639,Agriculture,Agriculture +542638,Agriculture,Agriculture +542637,Agriculture,Agriculture +542636,Agriculture,Agriculture +542635,Agriculture,Agriculture +542634,Agriculture,Agriculture +540875,Agriculture,Agriculture +540874,Agriculture,Agriculture +540873,Agriculture,Agriculture +540872,Agriculture,Agriculture +540871,Agriculture,Agriculture +540870,Agriculture,Agriculture +540869,Agriculture,Agriculture +540868,Agriculture,Agriculture +540867,Agriculture,Agriculture +540866,Agriculture,Agriculture +540865,Agriculture,Agriculture +540864,Agriculture,Agriculture +539266,Agriculture,Agriculture +539262,Agriculture,Agriculture +539260,Agriculture,Agriculture +539259,Agriculture,Agriculture +539257,Agriculture,Agriculture +539256,Agriculture,Agriculture +539255,Agriculture,Agriculture +537955,Agriculture,Agriculture +537954,Agriculture,Agriculture +537953,Agriculture,Agriculture +537951,Agriculture,Agriculture +537948,Agriculture,Agriculture +537947,Agriculture,Agriculture +537946,Agriculture,Agriculture +537943,Agriculture,Agriculture +537941,Agriculture,Agriculture +537940,Agriculture,Agriculture +537939,Agriculture,Agriculture +537937,Agriculture,Agriculture +537931,Agriculture,Agriculture +537893,Agriculture,Agriculture +537890,Agriculture,Agriculture +537888,Agriculture,Agriculture +537887,Agriculture,Agriculture +537886,Agriculture,Agriculture +537810,Agriculture,Agriculture +535248,Agriculture,Agriculture +535247,Agriculture,Agriculture +535244,Agriculture,Agriculture +535242,Agriculture,Agriculture +535239,Agriculture,Agriculture +535237,Agriculture,Agriculture +535234,Agriculture,Agriculture +535227,Agriculture,Agriculture +535225,Agriculture,Agriculture +535221,Agriculture,Agriculture +535220,Agriculture,Agriculture +535218,Agriculture,Agriculture +535217,Agriculture,Agriculture +535216,Agriculture,Agriculture +535063,Agriculture,Agriculture +534874,Agriculture,Agriculture +531811,Agriculture,Agriculture +531804,Agriculture,Agriculture +531796,Agriculture,Agriculture +531789,Agriculture,Agriculture +531782,Agriculture,Agriculture +531641,Agriculture,Agriculture +531640,Agriculture,Agriculture +531639,Agriculture,Agriculture +531638,Agriculture,Agriculture +531637,Agriculture,Agriculture +531636,Agriculture,Agriculture +531635,Agriculture,Agriculture +531631,Agriculture,Agriculture +528371,Agriculture,Agriculture +528369,Agriculture,Agriculture +528367,Agriculture,Agriculture +528365,Agriculture,Agriculture +528363,Agriculture,Agriculture +528361,Agriculture,Agriculture +528359,Agriculture,Agriculture +528356,Agriculture,Agriculture +528353,Agriculture,Agriculture +528352,Agriculture,Agriculture +528351,Agriculture,Agriculture +528350,Agriculture,Agriculture +528349,Agriculture,Agriculture +528347,Agriculture,Agriculture +528346,Agriculture,Agriculture +528344,Agriculture,Agriculture +525279,Agriculture,Agriculture +525278,Agriculture,Agriculture +525277,Agriculture,Agriculture +525276,Agriculture,Agriculture +525275,Agriculture,Agriculture +525274,Agriculture,Agriculture +525273,Agriculture,Agriculture +525272,Agriculture,Agriculture +525271,Agriculture,Agriculture +525270,Agriculture,Agriculture +525269,Agriculture,Agriculture +525268,Agriculture,Agriculture +525267,Agriculture,Agriculture +525266,Agriculture,Agriculture +525265,Agriculture,Agriculture +525264,Agriculture,Agriculture +525263,Agriculture,Agriculture +525262,Agriculture,Agriculture +525261,Agriculture,Agriculture +525260,Agriculture,Agriculture +525259,Agriculture,Agriculture +525258,Agriculture,Agriculture +525257,Agriculture,Agriculture +521445,Agriculture,Agriculture +521443,Agriculture,Agriculture +521442,Agriculture,Agriculture +521441,Agriculture,Agriculture +521440,Agriculture,Agriculture +521437,Agriculture,Agriculture +521436,Agriculture,Agriculture +521431,Agriculture,Agriculture +521429,Agriculture,Agriculture +521427,Agriculture,Agriculture +518966,Agriculture,Agriculture +518923,Agriculture,Agriculture +518922,Agriculture,Agriculture +518921,Agriculture,Agriculture +518920,Agriculture,Agriculture +518919,Agriculture,Agriculture +517713,Agriculture,Agriculture +517710,Agriculture,Agriculture +517709,Agriculture,Agriculture +517708,Agriculture,Agriculture +517707,Agriculture,Agriculture +517705,Agriculture,Agriculture +517704,Agriculture,Agriculture +517696,Agriculture,Agriculture +517680,Agriculture,Agriculture +515550,Agriculture,Agriculture +515548,Agriculture,Agriculture +515546,Agriculture,Agriculture +515544,Agriculture,Agriculture +515541,Agriculture,Agriculture +515540,Agriculture,Agriculture +515539,Agriculture,Agriculture +512110,Agriculture,Agriculture +507497,Agriculture,Agriculture +507496,Agriculture,Agriculture +507491,Agriculture,Agriculture +504141,Agriculture,Agriculture +504139,Agriculture,Agriculture +504138,Agriculture,Agriculture +501727,Agriculture,Agriculture +501726,Agriculture,Agriculture +501724,Agriculture,Agriculture +501720,Agriculture,Agriculture +501717,Agriculture,Agriculture +501714,Agriculture,Agriculture +501709,Agriculture,Agriculture +500909,Agriculture,Agriculture +500908,Agriculture,Agriculture +500905,Agriculture,Agriculture +498567,Agriculture,Agriculture +498566,Agriculture,Agriculture +498564,Agriculture,Agriculture +498367,Agriculture,Agriculture +498365,Agriculture,Agriculture +498364,Agriculture,Agriculture +498363,Agriculture,Agriculture +498361,Agriculture,Agriculture +498359,Agriculture,Agriculture +498356,Agriculture,Agriculture +496340,Agriculture,Agriculture +496338,Agriculture,Agriculture +496336,Agriculture,Agriculture +496332,Agriculture,Agriculture +496330,Agriculture,Agriculture +496328,Agriculture,Agriculture +496324,Agriculture,Agriculture +494797,Agriculture,Agriculture +492918,Agriculture,Agriculture +490683,Agriculture,Agriculture +490583,Agriculture,Agriculture +490578,Agriculture,Agriculture +490564,Agriculture,Agriculture +489988,Agriculture,Agriculture +487527,Agriculture,Agriculture +487518,Agriculture,Agriculture +487512,Agriculture,Agriculture +487502,Agriculture,Agriculture +487495,Agriculture,Agriculture +487490,Agriculture,Agriculture +487454,Agriculture,Agriculture +484485,Agriculture,Agriculture +484483,Agriculture,Agriculture +484425,Agriculture,Agriculture +484079,Agriculture,Agriculture +484077,Agriculture,Agriculture +484073,Agriculture,Agriculture +481323,Agriculture,Agriculture +481319,Agriculture,Agriculture +481317,Agriculture,Agriculture +478815,Agriculture,Agriculture +478814,Agriculture,Agriculture +478813,Agriculture,Agriculture +477309,Agriculture,Agriculture +476780,Agriculture,Agriculture +476779,Agriculture,Agriculture +475076,Agriculture,Agriculture +475071,Agriculture,Agriculture +475067,Agriculture,Agriculture +475065,Agriculture,Agriculture +475063,Agriculture,Agriculture +475059,Agriculture,Agriculture +473241,Agriculture,Agriculture +473082,Agriculture,Agriculture +473080,Agriculture,Agriculture +473079,Agriculture,Agriculture +473078,Agriculture,Agriculture +469584,Agriculture,Agriculture +469583,Agriculture,Agriculture +469579,Agriculture,Agriculture +469577,Agriculture,Agriculture +469567,Agriculture,Agriculture +469561,Agriculture,Agriculture +469557,Agriculture,Agriculture +469556,Agriculture,Agriculture +466664,Agriculture,Agriculture +466663,Agriculture,Agriculture +466662,Agriculture,Agriculture +466661,Agriculture,Agriculture +466660,Agriculture,Agriculture +465909,Agriculture,Agriculture +465908,Agriculture,Agriculture +465907,Agriculture,Agriculture +465906,Agriculture,Agriculture +465905,Agriculture,Agriculture +465904,Agriculture,Agriculture +465174,Agriculture,Agriculture +464981,Agriculture,Agriculture +464980,Agriculture,Agriculture +464979,Agriculture,Agriculture +464978,Agriculture,Agriculture +464977,Agriculture,Agriculture +464976,Agriculture,Agriculture +464975,Agriculture,Agriculture +464974,Agriculture,Agriculture +464973,Agriculture,Agriculture +464972,Agriculture,Agriculture +464971,Agriculture,Agriculture +464969,Agriculture,Agriculture +464968,Agriculture,Agriculture +464967,Agriculture,Agriculture +464966,Agriculture,Agriculture +464965,Agriculture,Agriculture +462464,Agriculture,Agriculture +462463,Agriculture,Agriculture +462460,Agriculture,Agriculture +462458,Agriculture,Agriculture +462457,Agriculture,Agriculture +462456,Agriculture,Agriculture +461745,Agriculture,Agriculture +461744,Agriculture,Agriculture +461743,Agriculture,Agriculture +461742,Agriculture,Agriculture +461741,Agriculture,Agriculture +461097,Agriculture,Agriculture +461096,Agriculture,Agriculture +461092,Agriculture,Agriculture +461089,Agriculture,Agriculture +461087,Agriculture,Agriculture +460557,Agriculture,Agriculture +460432,Agriculture,Agriculture +460431,Agriculture,Agriculture +460430,Agriculture,Agriculture +460429,Agriculture,Agriculture +460007,Agriculture,Agriculture +460006,Agriculture,Agriculture +460005,Agriculture,Agriculture +460004,Agriculture,Agriculture +459560,Agriculture,Agriculture +459557,Agriculture,Agriculture +459555,Agriculture,Agriculture +459552,Agriculture,Agriculture +459551,Agriculture,Agriculture +459539,Agriculture,Agriculture +459535,Agriculture,Agriculture +458101,Agriculture,Agriculture +458100,Agriculture,Agriculture +458099,Agriculture,Agriculture +458098,Agriculture,Agriculture +458097,Agriculture,Agriculture +458096,Agriculture,Agriculture +458095,Agriculture,Agriculture +458094,Agriculture,Agriculture +458093,Agriculture,Agriculture +458092,Agriculture,Agriculture +458091,Agriculture,Agriculture +457271,Agriculture,Agriculture +457266,Agriculture,Agriculture +457260,Agriculture,Agriculture +457246,Agriculture,Agriculture +457244,Agriculture,Agriculture +457236,Agriculture,Agriculture +457233,Agriculture,Agriculture +457230,Agriculture,Agriculture +455735,Agriculture,Agriculture +455726,Agriculture,Agriculture +455638,Agriculture,Agriculture +455592,Agriculture,Agriculture +455363,Agriculture,Agriculture +455362,Agriculture,Agriculture +455360,Agriculture,Agriculture +455359,Agriculture,Agriculture +455357,Agriculture,Agriculture +455356,Agriculture,Agriculture +455355,Agriculture,Agriculture +455354,Agriculture,Agriculture +484079,Energy,Energy +484073,Energy,Energy +159929,Energy,Energy +187847,Energy,Energy +481669,Energy,Energy +540873,Energy,Energy +537888,Energy,Energy +531811,Energy,Energy +531804,Energy,Energy +531796,Energy,Energy +531789,Energy,Energy +531641,Energy,Energy +531640,Energy,Energy +531639,Energy,Energy +531635,Energy,Energy +531631,Energy,Energy +528369,Energy,Energy +528367,Energy,Energy +528353,Energy,Energy +528344,Energy,Energy +525279,Energy,Energy +525276,Energy,Energy +525275,Energy,Energy +525273,Energy,Energy +525272,Energy,Energy +525271,Energy,Energy +525269,Energy,Energy +525268,Energy,Energy +525267,Energy,Energy +525266,Energy,Energy +525265,Energy,Energy +525264,Energy,Energy +525263,Energy,Energy +525262,Energy,Energy +525261,Energy,Energy +525260,Energy,Energy +525259,Energy,Energy +525257,Energy,Energy +521443,Energy,Energy +521442,Energy,Energy +521441,Energy,Energy +521437,Energy,Energy +515548,Energy,Energy +515544,Energy,Energy +515541,Energy,Energy +515540,Energy,Energy +500909,Energy,Energy +494813,Energy,Energy +494810,Energy,Energy +515539,Environment,Environment +514501,Environment,Environment +500909,Environment,Environment +498365,Environment,Environment +498364,Environment,Environment +498363,Environment,Environment +498361,Environment,Environment +494806,Environment,Environment +489988,Environment,Environment +489895,Environment,Environment +489872,Environment,Environment +461095,Environment,Environment +459475,Environment,Environment +459473,Environment,Environment +457246,Environment,Environment +542646,Environment,Environment +542645,Environment,Environment +542644,Environment,Environment +542643,Environment,Environment +542641,Environment,Environment +542640,Environment,Environment +542639,Environment,Environment +542637,Environment,Environment +542635,Environment,Environment +540875,Environment,Environment +540874,Environment,Environment +540873,Environment,Environment +540870,Environment,Environment +540869,Environment,Environment +540868,Environment,Environment +540866,Environment,Environment +540864,Environment,Environment +537953,Environment,Environment +537947,Environment,Environment +537946,Environment,Environment +537943,Environment,Environment +537941,Environment,Environment +537887,Environment,Environment +535242,Environment,Environment +535234,Environment,Environment +535225,Environment,Environment +535221,Environment,Environment +535220,Environment,Environment +535218,Environment,Environment +535217,Environment,Environment +535216,Environment,Environment +535063,Environment,Environment +531811,Environment,Environment +531804,Environment,Environment +531796,Environment,Environment +531789,Environment,Environment +531782,Environment,Environment +531641,Environment,Environment +531640,Environment,Environment +531639,Environment,Environment +531638,Environment,Environment +531637,Environment,Environment +531636,Environment,Environment +531635,Environment,Environment +531634,Environment,Environment +531631,Environment,Environment +528371,Environment,Environment +528369,Environment,Environment +528367,Environment,Environment +528365,Environment,Environment +528363,Environment,Environment +528359,Environment,Environment +528356,Environment,Environment +528351,Environment,Environment +528350,Environment,Environment +528349,Environment,Environment +528346,Environment,Environment +528344,Environment,Environment +525279,Environment,Environment +525278,Environment,Environment +525277,Environment,Environment +525276,Environment,Environment +525275,Environment,Environment +525274,Environment,Environment +525273,Environment,Environment +525272,Environment,Environment +525271,Environment,Environment +525269,Environment,Environment +525268,Environment,Environment +525267,Environment,Environment +525266,Environment,Environment +525265,Environment,Environment +525264,Environment,Environment +525263,Environment,Environment +525262,Environment,Environment +525261,Environment,Environment +525260,Environment,Environment +525259,Environment,Environment +525257,Environment,Environment +521443,Environment,Environment +521442,Environment,Environment +521437,Environment,Environment +518923,Environment,Environment +518922,Environment,Environment +517713,Environment,Environment +517710,Environment,Environment +517709,Environment,Environment +517708,Environment,Environment +517707,Environment,Environment +517704,Environment,Environment +517696,Environment,Environment +515548,Environment,Environment +515544,Environment,Environment +515541,Environment,Environment +528356,Health,Health +528351,Health,Health +310554,Health,Health +250896,Health,Health +217614,Health,Health +380817,Health,Health +358123,Health,Health +525279,Health,Health +525275,Health,Health +525273,Health,Health +525272,Health,Health +525271,Health,Health +525269,Health,Health +525268,Health,Health +525267,Health,Health +525266,Health,Health +525265,Health,Health +525264,Health,Health +525263,Health,Health +525262,Health,Health +525261,Health,Health +525260,Health,Health +525259,Health,Health +525257,Health,Health +521437,Health,Health +518923,Health,Health +542639,Health,Health +542637,Health,Health +535225,Health,Health +535221,Health,Health +535220,Health,Health +535218,Health,Health +528365,Health,Health +430322,International Trade,International Trade +430321,International Trade,International Trade +109685,International Trade,International Trade +87664,International Trade,International Trade +201507,International Trade,International Trade +187848,International Trade,International Trade +187847,International Trade,International Trade +187846,International Trade,International Trade +187845,International Trade,International Trade +187827,International Trade,International Trade +156318,International Trade,International Trade +156314,International Trade,International Trade +156308,International Trade,International Trade +156306,International Trade,International Trade +287012,International Trade,International Trade +286991,International Trade,International Trade +283089,International Trade,International Trade +281074,International Trade,International Trade +281071,International Trade,International Trade +280431,International Trade,International Trade +277481,International Trade,International Trade +269619,International Trade,International Trade +269609,International Trade,International Trade +262831,International Trade,International Trade +250896,International Trade,International Trade +245350,International Trade,International Trade +245330,International Trade,International Trade +240832,International Trade,International Trade +240831,International Trade,International Trade +240830,International Trade,International Trade +240829,International Trade,International Trade +234729,International Trade,International Trade +233411,International Trade,International Trade +233410,International Trade,International Trade +233409,International Trade,International Trade +230471,International Trade,International Trade +230468,International Trade,International Trade +230467,International Trade,International Trade +230464,International Trade,International Trade +230460,International Trade,International Trade +230458,International Trade,International Trade +230455,International Trade,International Trade +227184,International Trade,International Trade +227182,International Trade,International Trade +227179,International Trade,International Trade +227173,International Trade,International Trade +217625,International Trade,International Trade +217620,International Trade,International Trade +217614,International Trade,International Trade +211372,International Trade,International Trade +211371,International Trade,International Trade +211370,International Trade,International Trade +211369,International Trade,International Trade +211368,International Trade,International Trade +207093,International Trade,International Trade +377264,International Trade,International Trade +377261,International Trade,International Trade +377258,International Trade,International Trade +374247,International Trade,International Trade +374245,International Trade,International Trade +374244,International Trade,International Trade +374241,International Trade,International Trade +374239,International Trade,International Trade +374234,International Trade,International Trade +374231,International Trade,International Trade +374209,International Trade,International Trade +372100,International Trade,International Trade +372087,International Trade,International Trade +371120,International Trade,International Trade +371118,International Trade,International Trade +371111,International Trade,International Trade +371046,International Trade,International Trade +371042,International Trade,International Trade +371040,International Trade,International Trade +369487,International Trade,International Trade +369486,International Trade,International Trade +369485,International Trade,International Trade +369484,International Trade,International Trade +369483,International Trade,International Trade +369479,International Trade,International Trade +369407,International Trade,International Trade +366598,International Trade,International Trade +366595,International Trade,International Trade +365129,International Trade,International Trade +365101,International Trade,International Trade +363386,International Trade,International Trade +361188,International Trade,International Trade +359972,International Trade,International Trade +359971,International Trade,International Trade +359970,International Trade,International Trade +359969,International Trade,International Trade +359968,International Trade,International Trade +359966,International Trade,International Trade +359922,International Trade,International Trade +358124,International Trade,International Trade +358123,International Trade,International Trade +358122,International Trade,International Trade +356303,International Trade,International Trade +356301,International Trade,International Trade +356290,International Trade,International Trade +354162,International Trade,International Trade +354161,International Trade,International Trade +354159,International Trade,International Trade +354158,International Trade,International Trade +354155,International Trade,International Trade +354153,International Trade,International Trade +354152,International Trade,International Trade +354150,International Trade,International Trade +354149,International Trade,International Trade +354146,International Trade,International Trade +354144,International Trade,International Trade +354143,International Trade,International Trade +354142,International Trade,International Trade +354127,International Trade,International Trade +354126,International Trade,International Trade +354125,International Trade,International Trade +354123,International Trade,International Trade +354122,International Trade,International Trade +354121,International Trade,International Trade +351093,International Trade,International Trade +351092,International Trade,International Trade +351091,International Trade,International Trade +348840,International Trade,International Trade +348839,International Trade,International Trade +348838,International Trade,International Trade +348837,International Trade,International Trade +347038,International Trade,International Trade +347037,International Trade,International Trade +347036,International Trade,International Trade +347035,International Trade,International Trade +347034,International Trade,International Trade +347032,International Trade,International Trade +347031,International Trade,International Trade +341435,International Trade,International Trade +341434,International Trade,International Trade +341433,International Trade,International Trade +341432,International Trade,International Trade +341431,International Trade,International Trade +341430,International Trade,International Trade +338695,International Trade,International Trade +335575,International Trade,International Trade +331633,International Trade,International Trade +329935,International Trade,International Trade +329933,International Trade,International Trade +329932,International Trade,International Trade +329930,International Trade,International Trade +329929,International Trade,International Trade +329928,International Trade,International Trade +329926,International Trade,International Trade +329924,International Trade,International Trade +329923,International Trade,International Trade +327752,International Trade,International Trade +325077,International Trade,International Trade +325073,International Trade,International Trade +325066,International Trade,International Trade +319270,International Trade,International Trade +319266,International Trade,International Trade +319262,International Trade,International Trade +319260,International Trade,International Trade +319247,International Trade,International Trade +310555,International Trade,International Trade +310540,International Trade,International Trade +310538,International Trade,International Trade +304493,International Trade,International Trade +304483,International Trade,International Trade +296784,International Trade,International Trade +430320,International Trade,International Trade +428406,International Trade,International Trade +428392,International Trade,International Trade +428352,International Trade,International Trade +424973,International Trade,International Trade +424972,International Trade,International Trade +424971,International Trade,International Trade +424966,International Trade,International Trade +423907,International Trade,International Trade +422047,International Trade,International Trade +422045,International Trade,International Trade +422044,International Trade,International Trade +422043,International Trade,International Trade +422042,International Trade,International Trade +422041,International Trade,International Trade +422040,International Trade,International Trade +422029,International Trade,International Trade +421938,International Trade,International Trade +421932,International Trade,International Trade +421925,International Trade,International Trade +419171,International Trade,International Trade +419170,International Trade,International Trade +419169,International Trade,International Trade +417910,International Trade,International Trade +417906,International Trade,International Trade +417752,International Trade,International Trade +415421,International Trade,International Trade +415420,International Trade,International Trade +415387,International Trade,International Trade +415383,International Trade,International Trade +415378,International Trade,International Trade +415373,International Trade,International Trade +415372,International Trade,International Trade +415367,International Trade,International Trade +415365,International Trade,International Trade +415361,International Trade,International Trade +415359,International Trade,International Trade +415358,International Trade,International Trade +415357,International Trade,International Trade +415356,International Trade,International Trade +415353,International Trade,International Trade +415351,International Trade,International Trade +415346,International Trade,International Trade +411959,International Trade,International Trade +411958,International Trade,International Trade +411945,International Trade,International Trade +409114,International Trade,International Trade +409112,International Trade,International Trade +409092,International Trade,International Trade +409082,International Trade,International Trade +407533,International Trade,International Trade +407531,International Trade,International Trade +407530,International Trade,International Trade +406784,International Trade,International Trade +406628,International Trade,International Trade +406612,International Trade,International Trade +406597,International Trade,International Trade +406595,International Trade,International Trade +406593,International Trade,International Trade +404984,International Trade,International Trade +404983,International Trade,International Trade +404982,International Trade,International Trade +404981,International Trade,International Trade +404980,International Trade,International Trade +404979,International Trade,International Trade +404971,International Trade,International Trade +403308,International Trade,International Trade +403277,International Trade,International Trade +400369,International Trade,International Trade +400367,International Trade,International Trade +400365,International Trade,International Trade +398303,International Trade,International Trade +398302,International Trade,International Trade +398051,International Trade,International Trade +398049,International Trade,International Trade +396375,International Trade,International Trade +396303,International Trade,International Trade +396302,International Trade,International Trade +396301,International Trade,International Trade +396300,International Trade,International Trade +396299,International Trade,International Trade +396298,International Trade,International Trade +396297,International Trade,International Trade +396296,International Trade,International Trade +396295,International Trade,International Trade +396293,International Trade,International Trade +392622,International Trade,International Trade +390440,International Trade,International Trade +390438,International Trade,International Trade +390436,International Trade,International Trade +390434,International Trade,International Trade +390433,International Trade,International Trade +390422,International Trade,International Trade +390419,International Trade,International Trade +390407,International Trade,International Trade +390405,International Trade,International Trade +386874,International Trade,International Trade +386873,International Trade,International Trade +386872,International Trade,International Trade +385688,International Trade,International Trade +385685,International Trade,International Trade +385681,International Trade,International Trade +385673,International Trade,International Trade +385672,International Trade,International Trade +385668,International Trade,International Trade +383835,International Trade,International Trade +383830,International Trade,International Trade +383828,International Trade,International Trade +383822,International Trade,International Trade +383806,International Trade,International Trade +383800,International Trade,International Trade +383793,International Trade,International Trade +383786,International Trade,International Trade +383781,International Trade,International Trade +383778,International Trade,International Trade +383775,International Trade,International Trade +383774,International Trade,International Trade +383770,International Trade,International Trade +383755,International Trade,International Trade +382629,International Trade,International Trade +382628,International Trade,International Trade +382627,International Trade,International Trade +382602,International Trade,International Trade +380881,International Trade,International Trade +380880,International Trade,International Trade +380879,International Trade,International Trade +380878,International Trade,International Trade +380877,International Trade,International Trade +380876,International Trade,International Trade +380875,International Trade,International Trade +380828,International Trade,International Trade +380817,International Trade,International Trade +379448,International Trade,International Trade +379447,International Trade,International Trade +379446,International Trade,International Trade +379443,International Trade,International Trade +379439,International Trade,International Trade +379438,International Trade,International Trade +379437,International Trade,International Trade +379435,International Trade,International Trade +379432,International Trade,International Trade +379429,International Trade,International Trade +379428,International Trade,International Trade +379426,International Trade,International Trade +379424,International Trade,International Trade +379348,International Trade,International Trade +379346,International Trade,International Trade +379345,International Trade,International Trade +379339,International Trade,International Trade +379296,International Trade,International Trade +379033,International Trade,International Trade +379027,International Trade,International Trade +377268,International Trade,International Trade +542646,International Trade,International Trade +542643,International Trade,International Trade +542642,International Trade,International Trade +542641,International Trade,International Trade +542640,International Trade,International Trade +542639,International Trade,International Trade +542637,International Trade,International Trade +542635,International Trade,International Trade +542634,International Trade,International Trade +540875,International Trade,International Trade +540873,International Trade,International Trade +540871,International Trade,International Trade +540868,International Trade,International Trade +540867,International Trade,International Trade +540865,International Trade,International Trade +540864,International Trade,International Trade +539266,International Trade,International Trade +539262,International Trade,International Trade +539260,International Trade,International Trade +539259,International Trade,International Trade +539257,International Trade,International Trade +539256,International Trade,International Trade +539255,International Trade,International Trade +537955,International Trade,International Trade +537951,International Trade,International Trade +537948,International Trade,International Trade +537947,International Trade,International Trade +537946,International Trade,International Trade +537943,International Trade,International Trade +537941,International Trade,International Trade +537940,International Trade,International Trade +537939,International Trade,International Trade +537937,International Trade,International Trade +537931,International Trade,International Trade +537890,International Trade,International Trade +537887,International Trade,International Trade +537886,International Trade,International Trade +537810,International Trade,International Trade +535248,International Trade,International Trade +535247,International Trade,International Trade +535244,International Trade,International Trade +535239,International Trade,International Trade +535237,International Trade,International Trade +535227,International Trade,International Trade +535221,International Trade,International Trade +534874,International Trade,International Trade +531796,International Trade,International Trade +531782,International Trade,International Trade +531641,International Trade,International Trade +531640,International Trade,International Trade +531639,International Trade,International Trade +531638,International Trade,International Trade +531634,International Trade,International Trade +531631,International Trade,International Trade +528371,International Trade,International Trade +528365,International Trade,International Trade +528363,International Trade,International Trade +528361,International Trade,International Trade +528356,International Trade,International Trade +528353,International Trade,International Trade +528351,International Trade,International Trade +528347,International Trade,International Trade +528346,International Trade,International Trade +525279,International Trade,International Trade +525276,International Trade,International Trade +525275,International Trade,International Trade +525273,International Trade,International Trade +525272,International Trade,International Trade +525271,International Trade,International Trade +525270,International Trade,International Trade +525269,International Trade,International Trade +525268,International Trade,International Trade +525267,International Trade,International Trade +525266,International Trade,International Trade +525265,International Trade,International Trade +525264,International Trade,International Trade +525263,International Trade,International Trade +525262,International Trade,International Trade +525261,International Trade,International Trade +525260,International Trade,International Trade +525259,International Trade,International Trade +525257,International Trade,International Trade +521445,International Trade,International Trade +521443,International Trade,International Trade +521442,International Trade,International Trade +521440,International Trade,International Trade +521437,International Trade,International Trade +521431,International Trade,International Trade +521429,International Trade,International Trade +521427,International Trade,International Trade +518966,International Trade,International Trade +518921,International Trade,International Trade +518920,International Trade,International Trade +518919,International Trade,International Trade +517709,International Trade,International Trade +517708,International Trade,International Trade +517705,International Trade,International Trade +517680,International Trade,International Trade +515550,International Trade,International Trade +515548,International Trade,International Trade +515546,International Trade,International Trade +515541,International Trade,International Trade +515540,International Trade,International Trade +515539,International Trade,International Trade +514501,International Trade,International Trade +512110,International Trade,International Trade +507491,International Trade,International Trade +504141,International Trade,International Trade +504139,International Trade,International Trade +504138,International Trade,International Trade +501727,International Trade,International Trade +501726,International Trade,International Trade +501724,International Trade,International Trade +501720,International Trade,International Trade +501717,International Trade,International Trade +501714,International Trade,International Trade +501709,International Trade,International Trade +500909,International Trade,International Trade +500908,International Trade,International Trade +500905,International Trade,International Trade +498567,International Trade,International Trade +498566,International Trade,International Trade +498564,International Trade,International Trade +498367,International Trade,International Trade +498365,International Trade,International Trade +498359,International Trade,International Trade +498356,International Trade,International Trade +496340,International Trade,International Trade +496338,International Trade,International Trade +496336,International Trade,International Trade +496332,International Trade,International Trade +496330,International Trade,International Trade +496328,International Trade,International Trade +496324,International Trade,International Trade +494813,International Trade,International Trade +494797,International Trade,International Trade +492918,International Trade,International Trade +492658,International Trade,International Trade +492654,International Trade,International Trade +490683,International Trade,International Trade +490583,International Trade,International Trade +490578,International Trade,International Trade +490564,International Trade,International Trade +489988,International Trade,International Trade +489986,International Trade,International Trade +489981,International Trade,International Trade +489895,International Trade,International Trade +489894,International Trade,International Trade +489872,International Trade,International Trade +487527,International Trade,International Trade +487518,International Trade,International Trade +487512,International Trade,International Trade +487502,International Trade,International Trade +487490,International Trade,International Trade +487454,International Trade,International Trade +484485,International Trade,International Trade +484483,International Trade,International Trade +484425,International Trade,International Trade +484079,International Trade,International Trade +484077,International Trade,International Trade +481669,International Trade,International Trade +481323,International Trade,International Trade +481319,International Trade,International Trade +481317,International Trade,International Trade +478815,International Trade,International Trade +478814,International Trade,International Trade +478813,International Trade,International Trade +477309,International Trade,International Trade +476780,International Trade,International Trade +476779,International Trade,International Trade +475076,International Trade,International Trade +475071,International Trade,International Trade +475065,International Trade,International Trade +475063,International Trade,International Trade +475059,International Trade,International Trade +473241,International Trade,International Trade +473080,International Trade,International Trade +473079,International Trade,International Trade +473078,International Trade,International Trade +469584,International Trade,International Trade +469583,International Trade,International Trade +469579,International Trade,International Trade +469577,International Trade,International Trade +469567,International Trade,International Trade +469561,International Trade,International Trade +469557,International Trade,International Trade +469556,International Trade,International Trade +466664,International Trade,International Trade +466663,International Trade,International Trade +466662,International Trade,International Trade +466661,International Trade,International Trade +466660,International Trade,International Trade +465909,International Trade,International Trade +465908,International Trade,International Trade +465907,International Trade,International Trade +465906,International Trade,International Trade +465905,International Trade,International Trade +465904,International Trade,International Trade +464981,International Trade,International Trade +464980,International Trade,International Trade +464979,International Trade,International Trade +464978,International Trade,International Trade +464977,International Trade,International Trade +464976,International Trade,International Trade +464975,International Trade,International Trade +464974,International Trade,International Trade +464973,International Trade,International Trade +464972,International Trade,International Trade +464971,International Trade,International Trade +464969,International Trade,International Trade +464968,International Trade,International Trade +464967,International Trade,International Trade +464966,International Trade,International Trade +464965,International Trade,International Trade +462464,International Trade,International Trade +462460,International Trade,International Trade +462458,International Trade,International Trade +462457,International Trade,International Trade +462456,International Trade,International Trade +461745,International Trade,International Trade +461744,International Trade,International Trade +461743,International Trade,International Trade +461742,International Trade,International Trade +461741,International Trade,International Trade +461097,International Trade,International Trade +461096,International Trade,International Trade +461095,International Trade,International Trade +461092,International Trade,International Trade +461087,International Trade,International Trade +460557,International Trade,International Trade +460432,International Trade,International Trade +460431,International Trade,International Trade +460430,International Trade,International Trade +460429,International Trade,International Trade +460007,International Trade,International Trade +460006,International Trade,International Trade +460005,International Trade,International Trade +460004,International Trade,International Trade +459560,International Trade,International Trade +459557,International Trade,International Trade +459555,International Trade,International Trade +459552,International Trade,International Trade +459551,International Trade,International Trade +459539,International Trade,International Trade +459535,International Trade,International Trade +459475,International Trade,International Trade +459473,International Trade,International Trade +458101,International Trade,International Trade +458100,International Trade,International Trade +458099,International Trade,International Trade +458098,International Trade,International Trade +458097,International Trade,International Trade +458096,International Trade,International Trade +458095,International Trade,International Trade +458094,International Trade,International Trade +458093,International Trade,International Trade +458092,International Trade,International Trade +458091,International Trade,International Trade +457271,International Trade,International Trade +457266,International Trade,International Trade +457260,International Trade,International Trade +457244,International Trade,International Trade +457236,International Trade,International Trade +457233,International Trade,International Trade +457230,International Trade,International Trade +455735,International Trade,International Trade +455726,International Trade,International Trade +455638,International Trade,International Trade +455592,International Trade,International Trade +455362,International Trade,International Trade +455360,International Trade,International Trade +455359,International Trade,International Trade +455357,International Trade,International Trade +455356,International Trade,International Trade +455355,International Trade,International Trade +455354,International Trade,International Trade +455353,International Trade,International Trade +455352,International Trade,International Trade +455351,International Trade,International Trade +451637,International Trade,International Trade +451636,International Trade,International Trade +451635,International Trade,International Trade +451633,International Trade,International Trade +451631,International Trade,International Trade +451630,International Trade,International Trade +451609,International Trade,International Trade +451607,International Trade,International Trade +451606,International Trade,International Trade +451595,International Trade,International Trade +449797,International Trade,International Trade +449741,International Trade,International Trade +449737,International Trade,International Trade +449734,International Trade,International Trade +449728,International Trade,International Trade +447449,International Trade,International Trade +447442,International Trade,International Trade +447439,International Trade,International Trade +447437,International Trade,International Trade +447433,International Trade,International Trade +444891,International Trade,International Trade +444887,International Trade,International Trade +444885,International Trade,International Trade +444760,International Trade,International Trade +443256,International Trade,International Trade +443255,International Trade,International Trade +441662,International Trade,International Trade +441661,International Trade,International Trade +441654,International Trade,International Trade +441497,International Trade,International Trade +441496,International Trade,International Trade +441495,International Trade,International Trade +441494,International Trade,International Trade +441493,International Trade,International Trade +441492,International Trade,International Trade +441491,International Trade,International Trade +441490,International Trade,International Trade +441489,International Trade,International Trade +441487,International Trade,International Trade +441486,International Trade,International Trade +441485,International Trade,International Trade +441484,International Trade,International Trade +441483,International Trade,International Trade +441482,International Trade,International Trade +437900,International Trade,International Trade +437899,International Trade,International Trade +437898,International Trade,International Trade +437897,International Trade,International Trade +437896,International Trade,International Trade +434935,International Trade,International Trade +434934,International Trade,International Trade +434933,International Trade,International Trade +434932,International Trade,International Trade +434931,International Trade,International Trade +434930,International Trade,International Trade +434929,International Trade,International Trade +434928,International Trade,International Trade +434927,International Trade,International Trade +434926,International Trade,International Trade +434925,International Trade,International Trade +434924,International Trade,International Trade +434923,International Trade,International Trade +431423,International Trade,International Trade +431422,International Trade,International Trade +430330,International Trade,International Trade +430329,International Trade,International Trade +430328,International Trade,International Trade +430327,International Trade,International Trade +430326,International Trade,International Trade +430325,International Trade,International Trade +430324,International Trade,International Trade +383264,Consumer Issues,Consumer Issues +382359,Consumer Issues,Consumer Issues +222808,Consumer Issues,Consumer Issues +193014,Consumer Issues,Consumer Issues +283871,Consumer Issues,Consumer Issues +264169,Consumer Issues,Consumer Issues +227189,Consumer Issues,Consumer Issues +227187,Consumer Issues,Consumer Issues +226528,Consumer Issues,Consumer Issues +226527,Consumer Issues,Consumer Issues +226311,Consumer Issues,Consumer Issues +226277,Consumer Issues,Consumer Issues +226275,Consumer Issues,Consumer Issues +226274,Consumer Issues,Consumer Issues +379642,Consumer Issues,Consumer Issues +379636,Consumer Issues,Consumer Issues +379632,Consumer Issues,Consumer Issues +379629,Consumer Issues,Consumer Issues +379628,Consumer Issues,Consumer Issues +379623,Consumer Issues,Consumer Issues +379615,Consumer Issues,Consumer Issues +379555,Consumer Issues,Consumer Issues +364896,Consumer Issues,Consumer Issues +356009,Consumer Issues,Consumer Issues +355204,Consumer Issues,Consumer Issues +351529,Consumer Issues,Consumer Issues +351527,Consumer Issues,Consumer Issues +351526,Consumer Issues,Consumer Issues +349485,Consumer Issues,Consumer Issues +349484,Consumer Issues,Consumer Issues +349483,Consumer Issues,Consumer Issues +349477,Consumer Issues,Consumer Issues +349476,Consumer Issues,Consumer Issues +347291,Consumer Issues,Consumer Issues +340337,Consumer Issues,Consumer Issues +340336,Consumer Issues,Consumer Issues +340335,Consumer Issues,Consumer Issues +337585,Consumer Issues,Consumer Issues +335171,Consumer Issues,Consumer Issues +335167,Consumer Issues,Consumer Issues +332790,Consumer Issues,Consumer Issues +330905,Consumer Issues,Consumer Issues +330904,Consumer Issues,Consumer Issues +328712,Consumer Issues,Consumer Issues +328711,Consumer Issues,Consumer Issues +327091,Consumer Issues,Consumer Issues +324514,Consumer Issues,Consumer Issues +317230,Consumer Issues,Consumer Issues +317229,Consumer Issues,Consumer Issues +302440,Consumer Issues,Consumer Issues +302439,Consumer Issues,Consumer Issues +302438,Consumer Issues,Consumer Issues +302437,Consumer Issues,Consumer Issues +302436,Consumer Issues,Consumer Issues +302435,Consumer Issues,Consumer Issues +302432,Consumer Issues,Consumer Issues +439827,Consumer Issues,Consumer Issues +383531,Energy,Energy +379569,Energy,Energy +532213,Environment,Environment +532212,Environment,Environment +208468,Environment,Environment +208467,Environment,Environment +287611,Environment,Environment +287610,Environment,Environment +265389,Environment,Environment +264170,Environment,Environment +222809,Environment,Environment +382359,Environment,Environment +382356,Environment,Environment +379642,Environment,Environment +379636,Environment,Environment +379632,Environment,Environment +379629,Environment,Environment +379628,Environment,Environment +379623,Environment,Environment +379615,Environment,Environment +379569,Environment,Environment +379555,Environment,Environment +377101,Environment,Environment +377100,Environment,Environment +374839,Environment,Environment +374829,Environment,Environment +374827,Environment,Environment +364896,Environment,Environment +359853,Environment,Environment +359850,Environment,Environment +359848,Environment,Environment +359847,Environment,Environment +359846,Environment,Environment +359698,Environment,Environment +356009,Environment,Environment +322181,Environment,Environment +517599,Environment,Environment +517592,Environment,Environment +459350,Environment,Environment +439829,Environment,Environment +439828,Environment,Environment +439827,Environment,Environment +409380,Environment,Environment +409377,Environment,Environment +409375,Environment,Environment +409374,Environment,Environment +398789,Environment,Environment +394574,Environment,Environment +385793,Environment,Environment +385790,Environment,Environment +385788,Environment,Environment +383527,Environment,Environment +463078,Financial Institutions,Financial Institutions +439828,Financial Institutions,Financial Institutions +168110,Financial Institutions,Financial Institutions +168108,Financial Institutions,Financial Institutions +125914,Financial Institutions,Financial Institutions +317231,Financial Institutions,Financial Institutions +200683,Financial Institutions,Financial Institutions +197351,Financial Institutions,Financial Institutions +425753,Financial Institutions,Financial Institutions +409380,Financial Institutions,Financial Institutions +409377,Financial Institutions,Financial Institutions +406796,Financial Institutions,Financial Institutions +406795,Financial Institutions,Financial Institutions +398789,Financial Institutions,Financial Institutions +394574,Financial Institutions,Financial Institutions +385793,Financial Institutions,Financial Institutions +385790,Financial Institutions,Financial Institutions +385788,Financial Institutions,Financial Institutions +383532,Financial Institutions,Financial Institutions +383531,Financial Institutions,Financial Institutions +383527,Financial Institutions,Financial Institutions +383264,Financial Institutions,Financial Institutions +382359,Financial Institutions,Financial Institutions +382356,Financial Institutions,Financial Institutions +379642,Financial Institutions,Financial Institutions +379636,Financial Institutions,Financial Institutions +379632,Financial Institutions,Financial Institutions +379629,Financial Institutions,Financial Institutions +379628,Financial Institutions,Financial Institutions +379623,Financial Institutions,Financial Institutions +379615,Financial Institutions,Financial Institutions +379569,Financial Institutions,Financial Institutions +379555,Financial Institutions,Financial Institutions +377101,Financial Institutions,Financial Institutions +377100,Financial Institutions,Financial Institutions +374839,Financial Institutions,Financial Institutions +374829,Financial Institutions,Financial Institutions +374827,Financial Institutions,Financial Institutions +364896,Financial Institutions,Financial Institutions +356009,Financial Institutions,Financial Institutions +383264,Industry,Industry +470986,Industry,Industry +364896,Industry,Industry +409380,Industry,Industry +439829,Infrastructure,Infrastructure +439825,Infrastructure,Infrastructure +409375,Infrastructure,Infrastructure +409374,Infrastructure,Infrastructure +398789,Infrastructure,Infrastructure +385793,Infrastructure,Infrastructure +385790,Infrastructure,Infrastructure +385788,Infrastructure,Infrastructure +383532,Infrastructure,Infrastructure +382356,Infrastructure,Infrastructure +379569,Infrastructure,Infrastructure +377101,Infrastructure,Infrastructure +377100,Infrastructure,Infrastructure +374839,Infrastructure,Infrastructure +374829,Infrastructure,Infrastructure +374827,Infrastructure,Infrastructure +364896,Infrastructure,Infrastructure +359853,Infrastructure,Infrastructure +359850,Infrastructure,Infrastructure +359848,Infrastructure,Infrastructure +359847,Infrastructure,Infrastructure +359846,Infrastructure,Infrastructure +359698,Infrastructure,Infrastructure +356009,Infrastructure,Infrastructure +355204,Infrastructure,Infrastructure +100894,Justice and Law Enforcement,Justice and Law Enforcement +274369,Taxation and Finance,Taxation and Finance +251971,Taxation and Finance,Taxation and Finance +208447,Taxation and Finance,Taxation and Finance +322180,Taxation and Finance,Taxation and Finance +277813,Taxation and Finance,Taxation and Finance +277812,Taxation and Finance,Taxation and Finance +76174,Other,PRIVACY +461644,Education,Education +443551,Education,Education +264871,Education,Education +260951,Education,Education +470797,Education,Education +468659,Education,Education +479477,Energy,Energy +502730,Environment,Environment +502726,Environment,Environment +74996,Environment,Environment +74994,Environment,Environment +134495,Environment,Environment +134494,Environment,Environment +134477,Environment,Environment +134476,Environment,Environment +134474,Environment,Environment +134435,Environment,Environment +134434,Environment,Environment +161756,Environment,Environment +161755,Environment,Environment +161754,Environment,Environment +161753,Environment,Environment +161752,Environment,Environment +161751,Environment,Environment +161750,Environment,Environment +161749,Environment,Environment +161748,Environment,Environment +161747,Environment,Environment +161746,Environment,Environment +160120,Environment,Environment +160119,Environment,Environment +160118,Environment,Environment +160117,Environment,Environment +160116,Environment,Environment +157468,Environment,Environment +154679,Environment,Environment +154677,Environment,Environment +154675,Environment,Environment +152889,Environment,Environment +152888,Environment,Environment +152887,Environment,Environment +148364,Environment,Environment +148362,Environment,Environment +148359,Environment,Environment +148358,Environment,Environment +148357,Environment,Environment +146116,Environment,Environment +142973,Environment,Environment +138818,Environment,Environment +135694,Environment,Environment +134695,Environment,Environment +134694,Environment,Environment +134518,Environment,Environment +134517,Environment,Environment +134516,Environment,Environment +134496,Environment,Environment +226420,Environment,Environment +218727,Environment,Environment +210448,Environment,Environment +210447,Environment,Environment +207398,Environment,Environment +203169,Environment,Environment +200447,Environment,Environment +200445,Environment,Environment +200444,Environment,Environment +200442,Environment,Environment +200441,Environment,Environment +200439,Environment,Environment +200437,Environment,Environment +200436,Environment,Environment +200435,Environment,Environment +200434,Environment,Environment +200433,Environment,Environment +200431,Environment,Environment +200429,Environment,Environment +200427,Environment,Environment +200425,Environment,Environment +200424,Environment,Environment +200422,Environment,Environment +200421,Environment,Environment +200419,Environment,Environment +200418,Environment,Environment +200403,Environment,Environment +200392,Environment,Environment +200387,Environment,Environment +200385,Environment,Environment +200379,Environment,Environment +200376,Environment,Environment +200336,Environment,Environment +194847,Environment,Environment +194844,Environment,Environment +194841,Environment,Environment +188889,Environment,Environment +188888,Environment,Environment +188886,Environment,Environment +188884,Environment,Environment +185894,Environment,Environment +175343,Environment,Environment +170634,Environment,Environment +170633,Environment,Environment +170631,Environment,Environment +163950,Environment,Environment +163948,Environment,Environment +163947,Environment,Environment +163946,Environment,Environment +163943,Environment,Environment +163939,Environment,Environment +163935,Environment,Environment +163934,Environment,Environment +163931,Environment,Environment +163929,Environment,Environment +163927,Environment,Environment +161772,Environment,Environment +161770,Environment,Environment +161769,Environment,Environment +161768,Environment,Environment +161767,Environment,Environment +161766,Environment,Environment +161765,Environment,Environment +161764,Environment,Environment +161763,Environment,Environment +161761,Environment,Environment +161760,Environment,Environment +161759,Environment,Environment +161758,Environment,Environment +161757,Environment,Environment +374483,Environment,Environment +374480,Environment,Environment +374478,Environment,Environment +374476,Environment,Environment +374475,Environment,Environment +374472,Environment,Environment +374471,Environment,Environment +374468,Environment,Environment +372586,Environment,Environment +372584,Environment,Environment +372577,Environment,Environment +372575,Environment,Environment +372570,Environment,Environment +372557,Environment,Environment +372552,Environment,Environment +372534,Environment,Environment +372532,Environment,Environment +369689,Environment,Environment +369688,Environment,Environment +369004,Environment,Environment +369003,Environment,Environment +369002,Environment,Environment +365222,Environment,Environment +365221,Environment,Environment +365220,Environment,Environment +363685,Environment,Environment +363683,Environment,Environment +358121,Environment,Environment +358120,Environment,Environment +356317,Environment,Environment +353997,Environment,Environment +353996,Environment,Environment +353995,Environment,Environment +353988,Environment,Environment +351386,Environment,Environment +351384,Environment,Environment +349061,Environment,Environment +349056,Environment,Environment +349050,Environment,Environment +349046,Environment,Environment +347280,Environment,Environment +347271,Environment,Environment +344260,Environment,Environment +344259,Environment,Environment +341638,Environment,Environment +341633,Environment,Environment +341630,Environment,Environment +341629,Environment,Environment +338355,Environment,Environment +338351,Environment,Environment +335645,Environment,Environment +335643,Environment,Environment +335637,Environment,Environment +335634,Environment,Environment +333796,Environment,Environment +331581,Environment,Environment +330314,Environment,Environment +313085,Environment,Environment +313084,Environment,Environment +311397,Environment,Environment +310396,Environment,Environment +310390,Environment,Environment +310388,Environment,Environment +310385,Environment,Environment +310381,Environment,Environment +310376,Environment,Environment +310369,Environment,Environment +310361,Environment,Environment +310357,Environment,Environment +310356,Environment,Environment +310355,Environment,Environment +310354,Environment,Environment +310352,Environment,Environment +310351,Environment,Environment +310349,Environment,Environment +310347,Environment,Environment +310344,Environment,Environment +310343,Environment,Environment +310341,Environment,Environment +310340,Environment,Environment +310339,Environment,Environment +310337,Environment,Environment +310334,Environment,Environment +310333,Environment,Environment +303909,Environment,Environment +303890,Environment,Environment +303853,Environment,Environment +303852,Environment,Environment +303851,Environment,Environment +303520,Environment,Environment +303517,Environment,Environment +282971,Environment,Environment +282970,Environment,Environment +282952,Environment,Environment +282950,Environment,Environment +282929,Environment,Environment +282911,Environment,Environment +282909,Environment,Environment +282893,Environment,Environment +282872,Environment,Environment +282870,Environment,Environment +282854,Environment,Environment +282836,Environment,Environment +282831,Environment,Environment +277779,Environment,Environment +277778,Environment,Environment +277777,Environment,Environment +273589,Environment,Environment +273584,Environment,Environment +264871,Environment,Environment +260952,Environment,Environment +254910,Environment,Environment +254909,Environment,Environment +254892,Environment,Environment +254891,Environment,Environment +254369,Environment,Environment +254368,Environment,Environment +254352,Environment,Environment +254351,Environment,Environment +254350,Environment,Environment +254349,Environment,Environment +254342,Environment,Environment +254341,Environment,Environment +254339,Environment,Environment +254336,Environment,Environment +242957,Environment,Environment +242956,Environment,Environment +242955,Environment,Environment +242954,Environment,Environment +242953,Environment,Environment +242952,Environment,Environment +242951,Environment,Environment +242950,Environment,Environment +242949,Environment,Environment +241373,Environment,Environment +241372,Environment,Environment +241371,Environment,Environment +241370,Environment,Environment +241369,Environment,Environment +237429,Environment,Environment +231809,Environment,Environment +226421,Environment,Environment +499727,Environment,Environment +499724,Environment,Environment +499718,Environment,Environment +499715,Environment,Environment +499708,Environment,Environment +499706,Environment,Environment +499699,Environment,Environment +499691,Environment,Environment +499688,Environment,Environment +499686,Environment,Environment +499681,Environment,Environment +499679,Environment,Environment +499675,Environment,Environment +499650,Environment,Environment +499647,Environment,Environment +499634,Environment,Environment +499631,Environment,Environment +499630,Environment,Environment +499627,Environment,Environment +499626,Environment,Environment +499625,Environment,Environment +499623,Environment,Environment +496318,Environment,Environment +496317,Environment,Environment +496316,Environment,Environment +496315,Environment,Environment +495462,Environment,Environment +495454,Environment,Environment +493824,Environment,Environment +493823,Environment,Environment +493822,Environment,Environment +493821,Environment,Environment +493820,Environment,Environment +493819,Environment,Environment +493818,Environment,Environment +493817,Environment,Environment +493816,Environment,Environment +493815,Environment,Environment +493814,Environment,Environment +493813,Environment,Environment +493812,Environment,Environment +493811,Environment,Environment +491332,Environment,Environment +491330,Environment,Environment +491325,Environment,Environment +491320,Environment,Environment +491306,Environment,Environment +491292,Environment,Environment +491286,Environment,Environment +491280,Environment,Environment +491277,Environment,Environment +491276,Environment,Environment +491267,Environment,Environment +491264,Environment,Environment +491262,Environment,Environment +491261,Environment,Environment +491251,Environment,Environment +491244,Environment,Environment +486322,Environment,Environment +486321,Environment,Environment +486320,Environment,Environment +486317,Environment,Environment +486203,Environment,Environment +486201,Environment,Environment +486199,Environment,Environment +486195,Environment,Environment +486194,Environment,Environment +486193,Environment,Environment +486192,Environment,Environment +486191,Environment,Environment +484941,Environment,Environment +484937,Environment,Environment +484930,Environment,Environment +484428,Environment,Environment +484419,Environment,Environment +484384,Environment,Environment +482065,Environment,Environment +482061,Environment,Environment +482057,Environment,Environment +481032,Environment,Environment +480894,Environment,Environment +480891,Environment,Environment +479495,Environment,Environment +479494,Environment,Environment +479492,Environment,Environment +479490,Environment,Environment +479487,Environment,Environment +479485,Environment,Environment +479478,Environment,Environment +479477,Environment,Environment +478881,Environment,Environment +478868,Environment,Environment +477299,Environment,Environment +477203,Environment,Environment +477201,Environment,Environment +474940,Environment,Environment +474939,Environment,Environment +474371,Environment,Environment +471697,Environment,Environment +470787,Environment,Environment +470780,Environment,Environment +468676,Environment,Environment +468674,Environment,Environment +468671,Environment,Environment +468667,Environment,Environment +468666,Environment,Environment +468663,Environment,Environment +468662,Environment,Environment +468661,Environment,Environment +468660,Environment,Environment +468658,Environment,Environment +464573,Environment,Environment +462812,Environment,Environment +462805,Environment,Environment +462178,Environment,Environment +462174,Environment,Environment +462161,Environment,Environment +461659,Environment,Environment +461638,Environment,Environment +461544,Environment,Environment +461029,Environment,Environment +461026,Environment,Environment +461021,Environment,Environment +460610,Environment,Environment +460591,Environment,Environment +460562,Environment,Environment +460561,Environment,Environment +458380,Environment,Environment +458378,Environment,Environment +457275,Environment,Environment +457273,Environment,Environment +457163,Environment,Environment +456880,Environment,Environment +456879,Environment,Environment +456870,Environment,Environment +456869,Environment,Environment +454550,Environment,Environment +454548,Environment,Environment +454318,Environment,Environment +454317,Environment,Environment +454316,Environment,Environment +454314,Environment,Environment +452754,Environment,Environment +452569,Environment,Environment +447711,Environment,Environment +446081,Environment,Environment +446070,Environment,Environment +443551,Environment,Environment +443546,Environment,Environment +443545,Environment,Environment +443543,Environment,Environment +443542,Environment,Environment +441937,Environment,Environment +441931,Environment,Environment +441929,Environment,Environment +441926,Environment,Environment +441778,Environment,Environment +441774,Environment,Environment +437894,Environment,Environment +437893,Environment,Environment +437891,Environment,Environment +437858,Environment,Environment +437809,Environment,Environment +437801,Environment,Environment +437799,Environment,Environment +437795,Environment,Environment +437793,Environment,Environment +437788,Environment,Environment +435035,Environment,Environment +435034,Environment,Environment +435025,Environment,Environment +435021,Environment,Environment +435011,Environment,Environment +435009,Environment,Environment +435004,Environment,Environment +435002,Environment,Environment +434999,Environment,Environment +432060,Environment,Environment +432059,Environment,Environment +430334,Environment,Environment +430333,Environment,Environment +430332,Environment,Environment +430331,Environment,Environment +430218,Environment,Environment +430105,Environment,Environment +430104,Environment,Environment +430103,Environment,Environment +428720,Environment,Environment +428716,Environment,Environment +428710,Environment,Environment +428705,Environment,Environment +426674,Environment,Environment +426671,Environment,Environment +426668,Environment,Environment +426663,Environment,Environment +426655,Environment,Environment +426632,Environment,Environment +426627,Environment,Environment +422149,Environment,Environment +417878,Environment,Environment +417876,Environment,Environment +416349,Environment,Environment +416347,Environment,Environment +416345,Environment,Environment +410220,Environment,Environment +410218,Environment,Environment +410215,Environment,Environment +405472,Environment,Environment +400762,Environment,Environment +400755,Environment,Environment +396524,Environment,Environment +396516,Environment,Environment +391204,Environment,Environment +391197,Environment,Environment +391180,Environment,Environment +388336,Environment,Environment +388333,Environment,Environment +388330,Environment,Environment +388327,Environment,Environment +388311,Environment,Environment +383821,Environment,Environment +379791,Environment,Environment +379790,Environment,Environment +379788,Environment,Environment +379786,Environment,Environment +379785,Environment,Environment +379784,Environment,Environment +544443,Environment,Environment +544442,Environment,Environment +544441,Environment,Environment +544440,Environment,Environment +544439,Environment,Environment +544438,Environment,Environment +544437,Environment,Environment +544436,Environment,Environment +544435,Environment,Environment +544434,Environment,Environment +544433,Environment,Environment +544432,Environment,Environment +544431,Environment,Environment +544429,Environment,Environment +544428,Environment,Environment +544427,Environment,Environment +544426,Environment,Environment +544423,Environment,Environment +540312,Environment,Environment +540208,Environment,Environment +540206,Environment,Environment +540204,Environment,Environment +532364,Environment,Environment +532363,Environment,Environment +532362,Environment,Environment +532361,Environment,Environment +532360,Environment,Environment +532359,Environment,Environment +532358,Environment,Environment +532357,Environment,Environment +532356,Environment,Environment +532355,Environment,Environment +532354,Environment,Environment +532352,Environment,Environment +524793,Environment,Environment +523245,Environment,Environment +523243,Environment,Environment +523242,Environment,Environment +523241,Environment,Environment +523240,Environment,Environment +523237,Environment,Environment +523233,Environment,Environment +520048,Environment,Environment +520037,Environment,Environment +520035,Environment,Environment +520030,Environment,Environment +520029,Environment,Environment +520026,Environment,Environment +520025,Environment,Environment +520016,Environment,Environment +517734,Environment,Environment +517733,Environment,Environment +517732,Environment,Environment +517731,Environment,Environment +517730,Environment,Environment +517729,Environment,Environment +517726,Environment,Environment +517725,Environment,Environment +515929,Environment,Environment +515928,Environment,Environment +515924,Environment,Environment +514175,Environment,Environment +514170,Environment,Environment +514167,Environment,Environment +512709,Environment,Environment +512707,Environment,Environment +512706,Environment,Environment +512703,Environment,Environment +512700,Environment,Environment +512697,Environment,Environment +511320,Environment,Environment +511307,Environment,Environment +511305,Environment,Environment +511303,Environment,Environment +511300,Environment,Environment +511299,Environment,Environment +511297,Environment,Environment +511296,Environment,Environment +511294,Environment,Environment +511288,Environment,Environment +511281,Environment,Environment +511279,Environment,Environment +511276,Environment,Environment +511257,Environment,Environment +511256,Environment,Environment +509466,Environment,Environment +509465,Environment,Environment +508880,Environment,Environment +508878,Environment,Environment +508871,Environment,Environment +508865,Environment,Environment +508855,Environment,Environment +508851,Environment,Environment +508767,Environment,Environment +508714,Environment,Environment +505318,Environment,Environment +505317,Environment,Environment +505316,Environment,Environment +505315,Environment,Environment +505314,Environment,Environment +502755,Environment,Environment +502751,Environment,Environment +502744,Environment,Environment +502735,Environment,Environment +508865,Fisheries,Fisheries +508851,Fisheries,Fisheries +523235,Fisheries,Fisheries +520016,Fisheries,Fisheries +512706,Fisheries,Fisheries +512697,Fisheries,Fisheries +514170,Forestry,Forestry +512709,Forestry,Forestry +520026,Forestry,Forestry +520025,Forestry,Forestry +517725,Forestry,Forestry +515923,Forestry,Forestry +515922,Forestry,Forestry +515920,Forestry,Forestry +480464,Justice and Law Enforcement,Justice and Law Enforcement +453094,Justice and Law Enforcement,Justice and Law Enforcement +328950,Justice and Law Enforcement,Justice and Law Enforcement +325851,Justice and Law Enforcement,Justice and Law Enforcement +325850,Justice and Law Enforcement,Justice and Law Enforcement +298749,Justice and Law Enforcement,Justice and Law Enforcement +420325,Justice and Law Enforcement,Justice and Law Enforcement +386740,Justice and Law Enforcement,Justice and Law Enforcement +540674,Justice and Law Enforcement,Justice and Law Enforcement +536134,Justice and Law Enforcement,Justice and Law Enforcement +534777,Justice and Law Enforcement,Justice and Law Enforcement +533718,Justice and Law Enforcement,Justice and Law Enforcement +533480,Justice and Law Enforcement,Justice and Law Enforcement +532658,Justice and Law Enforcement,Justice and Law Enforcement +530004,Justice and Law Enforcement,Justice and Law Enforcement +503057,Justice and Law Enforcement,Justice and Law Enforcement +436415,Agriculture,Agriculture +436412,Agriculture,Agriculture +312036,Agriculture,Agriculture +311800,Agriculture,Agriculture +311798,Agriculture,Agriculture +311797,Agriculture,Agriculture +311792,Agriculture,Agriculture +296350,Agriculture,Agriculture +274270,Agriculture,Agriculture +252495,Agriculture,Agriculture +424328,Agriculture,Agriculture +413727,Agriculture,Agriculture +413705,Agriculture,Agriculture +413701,Agriculture,Agriculture +413599,Agriculture,Agriculture +413591,Agriculture,Agriculture +413544,Agriculture,Agriculture +413521,Agriculture,Agriculture +413474,Agriculture,Agriculture +413465,Agriculture,Agriculture +413439,Agriculture,Agriculture +413417,Agriculture,Agriculture +413216,Agriculture,Agriculture +386808,Agriculture,Agriculture +386700,Agriculture,Agriculture +386695,Agriculture,Agriculture +386689,Agriculture,Agriculture +386678,Agriculture,Agriculture +382750,Agriculture,Agriculture +365663,Agriculture,Agriculture +355699,Agriculture,Agriculture +355698,Agriculture,Agriculture +355697,Agriculture,Agriculture +355696,Agriculture,Agriculture +340089,Agriculture,Agriculture +340088,Agriculture,Agriculture +544066,Agriculture,Agriculture +531792,Agriculture,Agriculture +527050,Agriculture,Agriculture +525165,Agriculture,Agriculture +523366,Agriculture,Agriculture +518620,Agriculture,Agriculture +485954,Agriculture,Agriculture +476435,Agriculture,Agriculture +474361,Agriculture,Agriculture +472268,Agriculture,Agriculture +471383,Agriculture,Agriculture +471382,Agriculture,Agriculture +471381,Agriculture,Agriculture +471380,Agriculture,Agriculture +471379,Agriculture,Agriculture +469457,Agriculture,Agriculture +465648,Agriculture,Agriculture +465647,Agriculture,Agriculture +465646,Agriculture,Agriculture +454353,Agriculture,Agriculture +453734,Agriculture,Agriculture +452115,Agriculture,Agriculture +451063,Agriculture,Agriculture +450038,Agriculture,Agriculture +450032,Agriculture,Agriculture +450030,Agriculture,Agriculture +450011,Agriculture,Agriculture +450004,Agriculture,Agriculture +449996,Agriculture,Agriculture +449990,Agriculture,Agriculture +448582,Agriculture,Agriculture +436423,Agriculture,Agriculture +436421,Agriculture,Agriculture +531792,Energy,Energy +527050,Energy,Energy +386695,Energy,Energy +523366,Energy,Energy +518620,Energy,Energy +485954,Energy,Energy +444703,Energy,Energy +436420,Energy,Energy +436417,Energy,Energy +413495,Energy,Energy +544066,Environment,Environment +386808,Environment,Environment +386700,Environment,Environment +386695,Environment,Environment +386688,Environment,Environment +386686,Environment,Environment +386684,Environment,Environment +311793,Environment,Environment +531792,Environment,Environment +527050,Environment,Environment +525165,Environment,Environment +523366,Environment,Environment +518620,Environment,Environment +465648,Environment,Environment +465647,Environment,Environment +465646,Environment,Environment +453734,Environment,Environment +450499,Environment,Environment +450040,Environment,Environment +450037,Environment,Environment +450027,Environment,Environment +450016,Environment,Environment +450004,Environment,Environment +449996,Environment,Environment +444703,Environment,Environment +436427,Environment,Environment +436425,Environment,Environment +436424,Environment,Environment +436421,Environment,Environment +436418,Environment,Environment +436417,Environment,Environment +436415,Environment,Environment +436414,Environment,Environment +436413,Environment,Environment +424328,Environment,Environment +416872,Environment,Environment +413727,Environment,Environment +413705,Environment,Environment +413701,Environment,Environment +413693,Environment,Environment +413591,Environment,Environment +471379,Infrastructure,Infrastructure +469457,Infrastructure,Infrastructure +92979,Infrastructure,Infrastructure +340087,Infrastructure,Infrastructure +340086,Infrastructure,Infrastructure +340085,Infrastructure,Infrastructure +340084,Infrastructure,Infrastructure +325449,Infrastructure,Infrastructure +312036,Infrastructure,Infrastructure +311799,Infrastructure,Infrastructure +311796,Infrastructure,Infrastructure +311795,Infrastructure,Infrastructure +311793,Infrastructure,Infrastructure +311792,Infrastructure,Infrastructure +296350,Infrastructure,Infrastructure +252495,Infrastructure,Infrastructure +252358,Infrastructure,Infrastructure +252357,Infrastructure,Infrastructure +252355,Infrastructure,Infrastructure +453734,Infrastructure,Infrastructure +450499,Infrastructure,Infrastructure +450042,Infrastructure,Infrastructure +450040,Infrastructure,Infrastructure +450039,Infrastructure,Infrastructure +450037,Infrastructure,Infrastructure +450030,Infrastructure,Infrastructure +450027,Infrastructure,Infrastructure +450016,Infrastructure,Infrastructure +450014,Infrastructure,Infrastructure +450011,Infrastructure,Infrastructure +450008,Infrastructure,Infrastructure +449990,Infrastructure,Infrastructure +444706,Infrastructure,Infrastructure +436427,Infrastructure,Infrastructure +436422,Infrastructure,Infrastructure +436420,Infrastructure,Infrastructure +436419,Infrastructure,Infrastructure +436416,Infrastructure,Infrastructure +436415,Infrastructure,Infrastructure +436412,Infrastructure,Infrastructure +416884,Infrastructure,Infrastructure +416872,Infrastructure,Infrastructure +416821,Infrastructure,Infrastructure +416819,Infrastructure,Infrastructure +416803,Infrastructure,Infrastructure +413701,Infrastructure,Infrastructure +413458,Infrastructure,Infrastructure +413435,Infrastructure,Infrastructure +413430,Infrastructure,Infrastructure +386808,Infrastructure,Infrastructure +386700,Infrastructure,Infrastructure +386695,Infrastructure,Infrastructure +386688,Infrastructure,Infrastructure +386685,Infrastructure,Infrastructure +386683,Infrastructure,Infrastructure +386680,Infrastructure,Infrastructure +365663,Infrastructure,Infrastructure +355784,Infrastructure,Infrastructure +355700,Infrastructure,Infrastructure +527050,Infrastructure,Infrastructure +485954,Infrastructure,Infrastructure +476435,Infrastructure,Infrastructure +474361,Infrastructure,Infrastructure +472268,Infrastructure,Infrastructure +471383,Infrastructure,Infrastructure +471382,Infrastructure,Infrastructure +471381,Infrastructure,Infrastructure +449990,International Trade,International Trade +436426,International Trade,International Trade +312036,International Trade,International Trade +311800,International Trade,International Trade +311798,International Trade,International Trade +311797,International Trade,International Trade +386678,International Trade,International Trade +454353,International Trade,International Trade +453734,International Trade,International Trade +452115,International Trade,International Trade +451063,International Trade,International Trade +450038,International Trade,International Trade +450037,International Trade,International Trade +450032,International Trade,International Trade +523366,Justice and Law Enforcement,Justice and Law Enforcement +518620,Justice and Law Enforcement,Justice and Law Enforcement +416884,Justice and Law Enforcement,Justice and Law Enforcement +416821,Justice and Law Enforcement,Justice and Law Enforcement +416806,Justice and Law Enforcement,Justice and Law Enforcement +416803,Justice and Law Enforcement,Justice and Law Enforcement +413599,Justice and Law Enforcement,Justice and Law Enforcement +392136,Justice and Law Enforcement,Justice and Law Enforcement +386700,Justice and Law Enforcement,Justice and Law Enforcement +494062,Justice and Law Enforcement,Justice and Law Enforcement +454353,Justice and Law Enforcement,Justice and Law Enforcement +453734,Justice and Law Enforcement,Justice and Law Enforcement +450040,Justice and Law Enforcement,Justice and Law Enforcement +450034,Justice and Law Enforcement,Justice and Law Enforcement +436427,Justice and Law Enforcement,Justice and Law Enforcement +436420,Justice and Law Enforcement,Justice and Law Enforcement +436417,Justice and Law Enforcement,Justice and Law Enforcement +436414,Justice and Law Enforcement,Justice and Law Enforcement +436413,Justice and Law Enforcement,Justice and Law Enforcement +436411,Justice and Law Enforcement,Justice and Law Enforcement +527050,Justice and Law Enforcement,Justice and Law Enforcement +525167,Justice and Law Enforcement,Justice and Law Enforcement +413515,Regional Development,Regional Development +413458,Regional Development,Regional Development +296350,Regional Development,Regional Development +465648,Taxation and Finance,Taxation and Finance +465647,Taxation and Finance,Taxation and Finance +465646,Taxation and Finance,Taxation and Finance +413705,Taxation and Finance,Taxation and Finance +413701,Taxation and Finance,Taxation and Finance +413693,Taxation and Finance,Taxation and Finance +413599,Taxation and Finance,Taxation and Finance +413591,Taxation and Finance,Taxation and Finance +413544,Taxation and Finance,Taxation and Finance +413521,Taxation and Finance,Taxation and Finance +413515,Taxation and Finance,Taxation and Finance +413474,Taxation and Finance,Taxation and Finance +413430,Taxation and Finance,Taxation and Finance +413427,Taxation and Finance,Taxation and Finance +413417,Taxation and Finance,Taxation and Finance +413216,Taxation and Finance,Taxation and Finance +386698,Taxation and Finance,Taxation and Finance +386675,Taxation and Finance,Taxation and Finance +531792,Taxation and Finance,Taxation and Finance +527050,Taxation and Finance,Taxation and Finance +523366,Taxation and Finance,Taxation and Finance +518620,Taxation and Finance,Taxation and Finance +494062,Taxation and Finance,Taxation and Finance +493485,Taxation and Finance,Taxation and Finance +449990,Transportation,Transportation +413465,Transportation,Transportation +386808,Transportation,Transportation +386682,Transportation,Transportation +325449,Transportation,Transportation +311799,Transportation,Transportation +296350,Transportation,Transportation +252495,Transportation,Transportation +252357,Transportation,Transportation +252355,Transportation,Transportation +531792,Transportation,Transportation +523366,Transportation,Transportation +518620,Transportation,Transportation +412725,Education,Education +408143,Education,Education +139556,Education,Education +109939,Education,Education +109938,Education,Education +207413,Education,Education +207412,Education,Education +207410,Education,Education +207409,Education,Education +207408,Education,Education +207406,Education,Education +207402,Education,Education +207399,Education,Education +175618,Education,Education +171093,Education,Education +171092,Education,Education +171091,Education,Education +171090,Education,Education +90578,Transportation,Transportation +77523,Other,Border Management +93876,Energy,Energy +108537,Agriculture,Agriculture +230112,Regional Development,Regional Development +224507,Employment and Training,Employment and Training +108470,Environment,Environment +248701,Industry,Industry +108537,Small Business,Small Business +248697,International Relations,International Relations +131954,Education,Education +131954,Infrastructure,Infrastructure +90553,Taxation and Finance,Taxation and Finance +77191,Transportation,Transportation +199688,Fisheries,Fisheries +167556,Intellectual Property,Intellectual Property +167557,Taxation and Finance,Taxation and Finance +151458,Regional Development,Regional Development +155207,Defence,Defence +455353,Agriculture,Agriculture +487495,Energy,Energy +515540,Environment,Environment +528363,Health,Health +430323,International Trade,International Trade +383531,Consumer Issues,Consumer Issues +383532,Energy,Energy +534984,Environment,Environment +355204,Financial Institutions,Financial Institutions +409377,Industry,Industry +463082,Infrastructure,Infrastructure +100900,Justice and Law Enforcement,Justice and Law Enforcement +274370,Taxation and Finance,Taxation and Finance +82474,Other,PRIVACY +461651,Education,Education +479478,Energy,Energy +502734,Environment,Environment +508871,Fisheries,Fisheries +515919,Forestry,Forestry +484428,Industry,Industry +503056,Justice and Law Enforcement,Justice and Law Enforcement +436420,Agriculture,Agriculture +544066,Energy,Energy +413449,Environment,Environment +471380,Infrastructure,Infrastructure +450004,International Trade,International Trade +525165,Justice and Law Enforcement,Justice and Law Enforcement +413701,Regional Development,Regional Development +471379,Taxation and Finance,Taxation and Finance +450030,Transportation,Transportation +412743,Education,Education +508648,Employment and Training,Employment and Training +200573,Health,Health +223747,Industry,Industry +245535,Infrastructure,Infrastructure +324494,Regional Development,Regional Development +245535,Transportation,Transportation +212299,Energy,Energy +212321,Environment,Environment +248470,Immigration,Immigration +225347,Industry,Industry +329969,International Relations,International Relations +248489,International Trade,International Trade +372760,Mining,Mining +356245,Taxation and Finance,Taxation and Finance +337579,Transportation,Transportation +88088,Health,Health +538957,Government Procurement,Government Procurement +433365,Intellectual Property,Intellectual Property +171088,Education,Education +171087,Education,Education +171086,Education,Education +171084,Education,Education +156896,Education,Education +154912,Education,Education +153485,Education,Education +150434,Education,Education +150432,Education,Education +148442,Education,Education +146043,Education,Education +146041,Education,Education +324486,Education,Education +321856,Education,Education +305489,Education,Education +305251,Education,Education +278023,Education,Education +273274,Education,Education +273271,Education,Education +260990,Education,Education +252909,Education,Education +252573,Education,Education +252572,Education,Education +252571,Education,Education +252570,Education,Education +252049,Education,Education +250652,Education,Education +241271,Education,Education +239643,Education,Education +230359,Education,Education +230358,Education,Education +230355,Education,Education +223767,Education,Education +223727,Education,Education +223708,Education,Education +223707,Education,Education +223688,Education,Education +217785,Education,Education +217783,Education,Education +217782,Education,Education +217780,Education,Education +217778,Education,Education +211907,Education,Education +207432,Education,Education +405624,Education,Education +405623,Education,Education +405622,Education,Education +405620,Education,Education +398992,Education,Education +398991,Education,Education +398987,Education,Education +396932,Education,Education +394719,Education,Education +394718,Education,Education +392610,Education,Education +392575,Education,Education +390583,Education,Education +388381,Education,Education +388371,Education,Education +383877,Education,Education +383876,Education,Education +382414,Education,Education +381592,Education,Education +379245,Education,Education +374894,Education,Education +374889,Education,Education +372473,Education,Education +369658,Education,Education +369656,Education,Education +369653,Education,Education +369650,Education,Education +366926,Education,Education +363518,Education,Education +362358,Education,Education +362345,Education,Education +359901,Education,Education +359897,Education,Education +358172,Education,Education +358169,Education,Education +358167,Education,Education +356386,Education,Education +353962,Education,Education +353961,Education,Education +353960,Education,Education +351501,Education,Education +351499,Education,Education +351472,Education,Education +541531,Education,Education +539436,Education,Education +538287,Education,Education +529229,Education,Education +529225,Education,Education +526600,Education,Education +508843,Education,Education +508648,Education,Education +502676,Education,Education +499608,Education,Education +493669,Education,Education +490057,Education,Education +489606,Education,Education +481528,Education,Education +470066,Education,Education +466871,Education,Education +458518,Education,Education +458517,Education,Education +455987,Education,Education +452745,Education,Education +445520,Education,Education +445514,Education,Education +445509,Education,Education +445481,Education,Education +441377,Education,Education +439530,Education,Education +439518,Education,Education +439515,Education,Education +439509,Education,Education +438736,Education,Education +429209,Education,Education +429196,Education,Education +429190,Education,Education +426449,Education,Education +426448,Education,Education +426445,Education,Education +426440,Education,Education +422499,Education,Education +420149,Education,Education +420082,Education,Education +419941,Education,Education +419936,Education,Education +418032,Education,Education +417917,Education,Education +412786,Education,Education +412773,Education,Education +412756,Education,Education +439515,Employment and Training,Employment and Training +439509,Employment and Training,Employment and Training +305252,Employment and Training,Employment and Training +278014,Employment and Training,Employment and Training +260989,Employment and Training,Employment and Training +390583,Employment and Training,Employment and Training +372491,Employment and Training,Employment and Training +340210,Employment and Training,Employment and Training +200572,Health,Health +200571,Health,Health +200580,Health,Health +200579,Health,Health +200578,Health,Health +200576,Health,Health +200575,Health,Health +200574,Health,Health +502676,Infrastructure,Infrastructure +493669,Infrastructure,Infrastructure +109854,Infrastructure,Infrastructure +109852,Infrastructure,Infrastructure +109851,Infrastructure,Infrastructure +109850,Infrastructure,Infrastructure +109849,Infrastructure,Infrastructure +109193,Infrastructure,Infrastructure +101362,Infrastructure,Infrastructure +101359,Infrastructure,Infrastructure +97599,Infrastructure,Infrastructure +97598,Infrastructure,Infrastructure +97597,Infrastructure,Infrastructure +97596,Infrastructure,Infrastructure +153483,Infrastructure,Infrastructure +110514,Infrastructure,Infrastructure +109940,Infrastructure,Infrastructure +109863,Infrastructure,Infrastructure +109862,Infrastructure,Infrastructure +109861,Infrastructure,Infrastructure +109860,Infrastructure,Infrastructure +109859,Infrastructure,Infrastructure +109858,Infrastructure,Infrastructure +109857,Infrastructure,Infrastructure +109856,Infrastructure,Infrastructure +109855,Infrastructure,Infrastructure +324491,Infrastructure,Infrastructure +319897,Infrastructure,Infrastructure +278019,Infrastructure,Infrastructure +278015,Infrastructure,Infrastructure +252074,Infrastructure,Infrastructure +250655,Infrastructure,Infrastructure +283109,Regional Development,Regional Development +278019,Regional Development,Regional Development +200580,Regional Development,Regional Development +200579,Regional Development,Regional Development +200578,Regional Development,Regional Development +200576,Regional Development,Regional Development +200575,Regional Development,Regional Development +200574,Regional Development,Regional Development +200573,Regional Development,Regional Development +200572,Regional Development,Regional Development +200571,Regional Development,Regional Development +329160,Regional Development,Regional Development +377827,Energy,Energy +377825,Energy,Energy +337579,Energy,Energy +337578,Energy,Energy +337577,Energy,Energy +230718,Energy,Energy +212324,Energy,Energy +212321,Energy,Energy +212313,Energy,Energy +212313,Environment,Environment +212299,Environment,Environment +212327,Environment,Environment +212326,Environment,Environment +212325,Environment,Environment +212324,Environment,Environment +337579,Industry,Industry +337578,Industry,Industry +225367,Industry,Industry +327343,International Relations,International Relations +322011,International Relations,International Relations +261291,International Relations,International Relations +261290,International Relations,International Relations +261289,International Relations,International Relations +248209,International Relations,International Relations +231829,International Relations,International Relations +230716,International Relations,International Relations +230713,International Relations,International Relations +372749,International Relations,International Relations +366526,International Relations,International Relations +361122,International Relations,International Relations +359740,International Relations,International Relations +359737,International Relations,International Relations +357935,International Relations,International Relations +357241,International Relations,International Relations +357240,International Relations,International Relations +357239,International Relations,International Relations +357238,International Relations,International Relations +357237,International Relations,International Relations +357236,International Relations,International Relations +356245,International Relations,International Relations +353749,International Relations,International Relations +351007,International Relations,International Relations +351005,International Relations,International Relations +349068,International Relations,International Relations +349066,International Relations,International Relations +349059,International Relations,International Relations +342322,International Relations,International Relations +341090,International Relations,International Relations +341089,International Relations,International Relations +341088,International Relations,International Relations +341082,International Relations,International Relations +337297,International Relations,International Relations +333665,International Relations,International Relations +333662,International Relations,International Relations +331348,International Relations,International Relations +331344,International Relations,International Relations +329991,International Relations,International Relations +248471,International Trade,International Trade +248469,International Trade,International Trade +230714,International Trade,International Trade +372753,International Trade,International Trade +357241,International Trade,International Trade +357240,International Trade,International Trade +357239,International Trade,International Trade +356245,International Trade,International Trade +341089,International Trade,International Trade +341088,International Trade,International Trade +250621,International Trade,International Trade +372757,Mining,Mining +372749,Mining,Mining +225367,Mining,Mining +225347,Mining,Mining +212327,Mining,Mining +212326,Mining,Mining +212325,Mining,Mining +212321,Mining,Mining +212313,Mining,Mining +212299,Mining,Mining +366526,Mining,Mining +361122,Mining,Mining +357935,Mining,Mining +357240,Mining,Mining +356245,Mining,Mining +349064,Mining,Mining +341091,Mining,Mining +341090,Mining,Mining +341089,Mining,Mining +341088,Mining,Mining +341082,Mining,Mining +322011,Mining,Mining +261291,Mining,Mining +261290,Mining,Mining +261289,Mining,Mining +250621,Mining,Mining +248489,Mining,Mining +248471,Mining,Mining +248470,Mining,Mining +248469,Mining,Mining +231829,Mining,Mining +424616,Mining,Mining +386630,Mining,Mining +381257,Mining,Mining +381247,Mining,Mining +377825,Mining,Mining +212324,Taxation and Finance,Taxation and Finance +337578,Transportation,Transportation +337577,Transportation,Transportation +341082,Transportation,Transportation +144334,Health,Health +536565,Government Procurement,Government Procurement +516295,Government Procurement,Government Procurement +383415,Government Procurement,Government Procurement +383413,Government Procurement,Government Procurement +381324,Government Procurement,Government Procurement +462781,Government Procurement,Government Procurement +433365,Government Procurement,Government Procurement +403540,Government Procurement,Government Procurement +542470,Government Procurement,Government Procurement +276537,Agriculture,Agriculture +276534,Agriculture,Agriculture +254670,Agriculture,Agriculture +254669,Agriculture,Agriculture +181984,Agriculture,Agriculture +181964,Agriculture,Agriculture +167078,Agriculture,Agriculture +157895,Agriculture,Agriculture +157894,Agriculture,Agriculture +157893,Agriculture,Agriculture +157892,Agriculture,Agriculture +152801,Agriculture,Agriculture +148641,Agriculture,Agriculture +148640,Agriculture,Agriculture +355646,Agriculture,Agriculture +347905,Agriculture,Agriculture +347904,Agriculture,Agriculture +347903,Agriculture,Agriculture +347901,Agriculture,Agriculture +347900,Agriculture,Agriculture +337095,Agriculture,Agriculture +331974,Agriculture,Agriculture +331973,Agriculture,Agriculture +331972,Agriculture,Agriculture +321672,Agriculture,Agriculture +320569,Agriculture,Agriculture +299500,Agriculture,Agriculture +299499,Agriculture,Agriculture +299498,Agriculture,Agriculture +276537,Industry,Industry +276534,Industry,Industry +321672,Industry,Industry +347901,International Trade,International Trade +347900,International Trade,International Trade +347905,International Trade,International Trade +347904,International Trade,International Trade +296569,Consumer Issues,Consumer Issues +264850,Consumer Issues,Consumer Issues +109760,Consumer Issues,Consumer Issues +296571,Consumer Issues,Consumer Issues +465692,Industry,Industry +465690,Industry,Industry +147988,Industry,Industry +142861,Industry,Industry +142860,Industry,Industry +123714,Industry,Industry +97634,Industry,Industry +162381,Industry,Industry +156971,Industry,Industry +156956,Industry,Industry +153522,Industry,Industry +153521,Industry,Industry +153520,Industry,Industry +147990,Industry,Industry +193795,Industry,Industry +193789,Industry,Industry +193743,Industry,Industry +296571,Industry,Industry +296570,Industry,Industry +296569,Industry,Industry +290071,Industry,Industry +290070,Industry,Industry +290049,Industry,Industry +290029,Industry,Industry +264851,Industry,Industry +264850,Industry,Industry +244517,Industry,Industry +244516,Industry,Industry +244515,Industry,Industry +244512,Industry,Industry +244511,Industry,Industry +244509,Industry,Industry +244469,Industry,Industry +234609,Industry,Industry +200488,Industry,Industry +200486,Industry,Industry +200485,Industry,Industry +200482,Industry,Industry +200474,Industry,Industry +200468,Industry,Industry +193806,Industry,Industry +193800,Industry,Industry +433353,Industry,Industry +433352,Industry,Industry +421310,Industry,Industry +404502,Industry,Industry +404500,Industry,Industry +404499,Industry,Industry +404498,Industry,Industry +404497,Industry,Industry +404496,Industry,Industry +404495,Industry,Industry +404494,Industry,Industry +404493,Industry,Industry +404492,Industry,Industry +404491,Industry,Industry +395009,Industry,Industry +348049,Industry,Industry +348047,Industry,Industry +333792,Industry,Industry +304969,Industry,Industry +465698,Industry,Industry +421304,Intellectual Property,Intellectual Property +421303,Intellectual Property,Intellectual Property +153522,Intellectual Property,Intellectual Property +153521,Intellectual Property,Intellectual Property +147990,Intellectual Property,Intellectual Property +147988,Intellectual Property,Intellectual Property +142861,Intellectual Property,Intellectual Property +142860,Intellectual Property,Intellectual Property +123714,Intellectual Property,Intellectual Property +109760,Intellectual Property,Intellectual Property +97634,Intellectual Property,Intellectual Property +244511,Intellectual Property,Intellectual Property +244509,Intellectual Property,Intellectual Property +244469,Intellectual Property,Intellectual Property +234609,Intellectual Property,Intellectual Property +200488,Intellectual Property,Intellectual Property +200486,Intellectual Property,Intellectual Property +200485,Intellectual Property,Intellectual Property +200482,Intellectual Property,Intellectual Property +200474,Intellectual Property,Intellectual Property +200468,Intellectual Property,Intellectual Property +193800,Intellectual Property,Intellectual Property +193789,Intellectual Property,Intellectual Property +193743,Intellectual Property,Intellectual Property +162381,Intellectual Property,Intellectual Property +156971,Intellectual Property,Intellectual Property +156956,Intellectual Property,Intellectual Property +370141,Intellectual Property,Intellectual Property +370139,Intellectual Property,Intellectual Property +348047,Intellectual Property,Intellectual Property +333792,Intellectual Property,Intellectual Property +333789,Intellectual Property,Intellectual Property +314809,Intellectual Property,Intellectual Property +290071,Intellectual Property,Intellectual Property +290029,Intellectual Property,Intellectual Property +244516,Intellectual Property,Intellectual Property +461327,Intellectual Property,Intellectual Property +445967,Intellectual Property,Intellectual Property +445963,Intellectual Property,Intellectual Property +433350,Intellectual Property,Intellectual Property +421309,Intellectual Property,Intellectual Property +421308,Intellectual Property,Intellectual Property +421306,Intellectual Property,Intellectual Property +395015,International Trade,International Trade +465701,International Trade,International Trade +142861,International Trade,International Trade +142860,International Trade,International Trade +244516,International Trade,International Trade +200468,International Trade,International Trade +200482,Justice and Law Enforcement,Justice and Law Enforcement +200474,Justice and Law Enforcement,Justice and Law Enforcement +142861,Justice and Law Enforcement,Justice and Law Enforcement +142860,Justice and Law Enforcement,Justice and Law Enforcement +290029,Justice and Law Enforcement,Justice and Law Enforcement +200488,Justice and Law Enforcement,Justice and Law Enforcement +200486,Justice and Law Enforcement,Justice and Law Enforcement +181504,Health,Health +477958,Environment,Environment +471015,Environment,Environment +96835,Environment,Environment +295030,Environment,Environment +240370,Environment,Environment +213489,Environment,Environment +213487,Environment,Environment +211447,Environment,Environment +456917,Environment,Environment +455653,Environment,Environment +455651,Environment,Environment +450263,Environment,Environment +450250,Environment,Environment +450248,Environment,Environment +447251,Environment,Environment +443427,Environment,Environment +441952,Environment,Environment +430641,Environment,Environment +426619,Environment,Environment +426614,Environment,Environment +412544,Environment,Environment +405799,Environment,Environment +396877,Environment,Environment +383529,Environment,Environment +351162,Environment,Environment +335646,Environment,Environment +329990,Environment,Environment +329989,Environment,Environment +329986,Environment,Environment +325022,Environment,Environment +526558,Environment,Environment +505751,Environment,Environment +502570,Environment,Environment +502287,Environment,Environment +499372,Environment,Environment +495911,Environment,Environment +493372,Environment,Environment +481668,Environment,Environment +479310,Environment,Environment +479309,Environment,Environment +529576,Industry,Industry +529575,Industry,Industry +154107,Industry,Industry +120762,Industry,Industry +120761,Industry,Industry +96215,Industry,Industry +96214,Industry,Industry +319533,Industry,Industry +319530,Industry,Industry +319529,Industry,Industry +316414,Industry,Industry +316413,Industry,Industry +316412,Industry,Industry +316411,Industry,Industry +316410,Industry,Industry +316290,Industry,Industry +316289,Industry,Industry +310464,Industry,Industry +310436,Industry,Industry +304494,Industry,Industry +258869,Industry,Industry +258851,Industry,Industry +258850,Industry,Industry +258310,Industry,Industry +213489,Industry,Industry +213487,Industry,Industry +211753,Industry,Industry +211447,Industry,Industry +195984,Industry,Industry +183144,Industry,Industry +167067,Industry,Industry +160963,Industry,Industry +408553,Industry,Industry +403513,Industry,Industry +403506,Industry,Industry +403495,Industry,Industry +399290,Industry,Industry +396886,Industry,Industry +391503,Industry,Industry +391500,Industry,Industry +391495,Industry,Industry +391493,Industry,Industry +388380,Industry,Industry +383529,Industry,Industry +380155,Industry,Industry +380153,Industry,Industry +380152,Industry,Industry +377217,Industry,Industry +374979,Industry,Industry +374975,Industry,Industry +374974,Industry,Industry +374971,Industry,Industry +374969,Industry,Industry +374967,Industry,Industry +374965,Industry,Industry +374962,Industry,Industry +372529,Industry,Industry +372523,Industry,Industry +366719,Industry,Industry +366706,Industry,Industry +353406,Industry,Industry +353405,Industry,Industry +353404,Industry,Industry +351450,Industry,Industry +348441,Industry,Industry +348439,Industry,Industry +348438,Industry,Industry +348437,Industry,Industry +347033,Industry,Industry +344053,Industry,Industry +338891,Industry,Industry +338890,Industry,Industry +338889,Industry,Industry +338888,Industry,Industry +338887,Industry,Industry +319538,Industry,Industry +319537,Industry,Industry +319536,Industry,Industry +319534,Industry,Industry +447254,Industry,Industry +447251,Industry,Industry +445777,Industry,Industry +445763,Industry,Industry +445760,Industry,Industry +441952,Industry,Industry +441923,Industry,Industry +439282,Industry,Industry +439243,Industry,Industry +435748,Industry,Industry +426658,Industry,Industry +426652,Industry,Industry +426648,Industry,Industry +426643,Industry,Industry +426638,Industry,Industry +424174,Industry,Industry +424171,Industry,Industry +424169,Industry,Industry +424006,Industry,Industry +424000,Industry,Industry +421983,Industry,Industry +419643,Industry,Industry +419641,Industry,Industry +419637,Industry,Industry +419634,Industry,Industry +416759,Industry,Industry +416756,Industry,Industry +416739,Industry,Industry +416736,Industry,Industry +416733,Industry,Industry +412629,Industry,Industry +412611,Industry,Industry +412601,Industry,Industry +408555,Industry,Industry +408554,Industry,Industry +526555,Industry,Industry +526552,Industry,Industry +526549,Industry,Industry +526546,Industry,Industry +526542,Industry,Industry +523239,Industry,Industry +523238,Industry,Industry +523236,Industry,Industry +523234,Industry,Industry +519842,Industry,Industry +518298,Industry,Industry +518297,Industry,Industry +518296,Industry,Industry +515783,Industry,Industry +515782,Industry,Industry +512090,Industry,Industry +512089,Industry,Industry +512088,Industry,Industry +512087,Industry,Industry +512085,Industry,Industry +511082,Industry,Industry +511080,Industry,Industry +511079,Industry,Industry +511078,Industry,Industry +508755,Industry,Industry +508746,Industry,Industry +508742,Industry,Industry +508736,Industry,Industry +505775,Industry,Industry +505770,Industry,Industry +505753,Industry,Industry +505737,Industry,Industry +505730,Industry,Industry +505721,Industry,Industry +502612,Industry,Industry +502601,Industry,Industry +502587,Industry,Industry +502582,Industry,Industry +502576,Industry,Industry +502330,Industry,Industry +502313,Industry,Industry +502307,Industry,Industry +502273,Industry,Industry +499370,Industry,Industry +499363,Industry,Industry +499351,Industry,Industry +499306,Industry,Industry +499262,Industry,Industry +495914,Industry,Industry +495905,Industry,Industry +495900,Industry,Industry +493355,Industry,Industry +493348,Industry,Industry +491692,Industry,Industry +491691,Industry,Industry +491690,Industry,Industry +488115,Industry,Industry +487885,Industry,Industry +487884,Industry,Industry +487881,Industry,Industry +485000,Industry,Industry +484995,Industry,Industry +484993,Industry,Industry +484990,Industry,Industry +484989,Industry,Industry +484986,Industry,Industry +481698,Industry,Industry +481693,Industry,Industry +481679,Industry,Industry +481675,Industry,Industry +481672,Industry,Industry +478280,Industry,Industry +477966,Industry,Industry +477964,Industry,Industry +477961,Industry,Industry +477959,Industry,Industry +475429,Industry,Industry +475419,Industry,Industry +475416,Industry,Industry +475413,Industry,Industry +475412,Industry,Industry +475409,Industry,Industry +475406,Industry,Industry +473401,Industry,Industry +473376,Industry,Industry +473374,Industry,Industry +471050,Industry,Industry +471039,Industry,Industry +471011,Industry,Industry +462575,Industry,Industry +461514,Industry,Industry +460976,Industry,Industry +460213,Industry,Industry +459684,Industry,Industry +459683,Industry,Industry +459681,Industry,Industry +459680,Industry,Industry +458870,Industry,Industry +458867,Industry,Industry +456918,Industry,Industry +456916,Industry,Industry +456914,Industry,Industry +455656,Industry,Industry +450263,Industry,Industry +450262,Industry,Industry +450257,Industry,Industry +450254,Industry,Industry +450250,Industry,Industry +450248,Industry,Industry +544417,Industry,Industry +544415,Industry,Industry +544414,Industry,Industry +544411,Industry,Industry +541702,Industry,Industry +541699,Industry,Industry +538944,Industry,Industry +538844,Industry,Industry +536754,Industry,Industry +536753,Industry,Industry +532446,Industry,Industry +532442,Industry,Industry +529768,Industry,Industry +529767,Industry,Industry +529766,Industry,Industry +459682,Infrastructure,Infrastructure +423987,Infrastructure,Infrastructure +211753,Infrastructure,Infrastructure +383843,Infrastructure,Infrastructure +502302,International Trade,International Trade +499368,International Trade,International Trade +126235,International Trade,International Trade +96836,International Trade,International Trade +190874,International Trade,International Trade +265989,International Trade,International Trade +240687,International Trade,International Trade +240368,International Trade,International Trade +240367,International Trade,International Trade +211753,International Trade,International Trade +405800,International Trade,International Trade +396886,International Trade,International Trade +374981,International Trade,International Trade +366712,International Trade,International Trade +366706,International Trade,International Trade +351450,International Trade,International Trade +351164,International Trade,International Trade +351163,International Trade,International Trade +338892,International Trade,International Trade +335654,International Trade,International Trade +335653,International Trade,International Trade +330000,International Trade,International Trade +482170,International Trade,International Trade +477957,International Trade,International Trade +473395,International Trade,International Trade +441952,International Trade,International Trade +439282,International Trade,International Trade +439279,International Trade,International Trade +435752,International Trade,International Trade +432359,International Trade,International Trade +430638,International Trade,International Trade +430636,International Trade,International Trade +429408,International Trade,International Trade +426676,International Trade,International Trade +426658,International Trade,International Trade +426654,International Trade,International Trade +426652,International Trade,International Trade +426638,International Trade,International Trade +424183,International Trade,International Trade +424178,International Trade,International Trade +424157,International Trade,International Trade +424153,International Trade,International Trade +421976,International Trade,International Trade +421973,International Trade,International Trade +421971,International Trade,International Trade +419632,International Trade,International Trade +419623,International Trade,International Trade +416765,International Trade,International Trade +416747,International Trade,International Trade +416744,International Trade,International Trade +416741,International Trade,International Trade +416729,International Trade,International Trade +412592,International Trade,International Trade +412552,International Trade,International Trade +412547,International Trade,International Trade +408555,International Trade,International Trade +408554,International Trade,International Trade +408553,International Trade,International Trade +407973,International Trade,International Trade +406461,International Trade,International Trade +514760,International Trade,International Trade +512086,International Trade,International Trade +508749,International Trade,International Trade +505762,International Trade,International Trade +505757,International Trade,International Trade +505744,International Trade,International Trade +544417,Taxation and Finance,Taxation and Finance +488120,Taxation and Finance,Taxation and Finance +93800,Taxation and Finance,Taxation and Finance +93798,Taxation and Finance,Taxation and Finance +93795,Taxation and Finance,Taxation and Finance +93728,Taxation and Finance,Taxation and Finance +87775,Taxation and Finance,Taxation and Finance +87755,Taxation and Finance,Taxation and Finance +211753,Taxation and Finance,Taxation and Finance +391487,Taxation and Finance,Taxation and Finance +383530,Taxation and Finance,Taxation and Finance +380155,Taxation and Finance,Taxation and Finance +380152,Taxation and Finance,Taxation and Finance +369542,Taxation and Finance,Taxation and Finance +351450,Taxation and Finance,Taxation and Finance +348440,Taxation and Finance,Taxation and Finance +348438,Taxation and Finance,Taxation and Finance +499302,Transportation,Transportation +495907,Transportation,Transportation +158308,Transportation,Transportation +157408,Transportation,Transportation +348441,Transportation,Transportation +295030,Transportation,Transportation +274749,Transportation,Transportation +274491,Transportation,Transportation +274189,Transportation,Transportation +265629,Transportation,Transportation +213487,Transportation,Transportation +211753,Transportation,Transportation +160963,Transportation,Transportation +412601,Transportation,Transportation +396869,Transportation,Transportation +388685,Transportation,Transportation +383843,Transportation,Transportation +383529,Transportation,Transportation +380153,Transportation,Transportation +369547,Transportation,Transportation +477953,Transportation,Transportation +458867,Transportation,Transportation +450262,Transportation,Transportation +450260,Transportation,Transportation +441952,Transportation,Transportation +441940,Transportation,Transportation +429403,Transportation,Transportation +416728,Transportation,Transportation +540010,Education,Education +540003,Education,Education +79074,Education,Education +176124,Education,Education +162211,Education,Education +162210,Education,Education +159222,Education,Education +159220,Education,Education +159214,Education,Education +145945,Education,Education +132739,Education,Education +132521,Education,Education +126517,Education,Education +343689,Education,Education +343687,Education,Education +343686,Education,Education +343685,Education,Education +343683,Education,Education +343680,Education,Education +343678,Education,Education +343677,Education,Education +343578,Education,Education +343377,Education,Education +343319,Education,Education +340580,Education,Education +325292,Education,Education +322274,Education,Education +322271,Education,Education +322270,Education,Education +319081,Education,Education +318923,Education,Education +305931,Education,Education +305930,Education,Education +305929,Education,Education +305909,Education,Education +253932,Education,Education +253930,Education,Education +241220,Education,Education +227322,Education,Education +211834,Education,Education +211830,Education,Education +202949,Education,Education +193064,Education,Education +192055,Education,Education +192053,Education,Education +422320,Education,Education +422319,Education,Education +422317,Education,Education +420054,Education,Education +418239,Education,Education +418025,Education,Education +418021,Education,Education +418020,Education,Education +416055,Education,Education +412587,Education,Education +411609,Education,Education +409660,Education,Education +409652,Education,Education +409447,Education,Education +407985,Education,Education +405416,Education,Education +405412,Education,Education +405409,Education,Education +405407,Education,Education +405406,Education,Education +405170,Education,Education +403885,Education,Education +400394,Education,Education +400392,Education,Education +400391,Education,Education +398492,Education,Education +398491,Education,Education +398490,Education,Education +398485,Education,Education +398481,Education,Education +398214,Education,Education +396444,Education,Education +396441,Education,Education +393046,Education,Education +392845,Education,Education +391254,Education,Education +389701,Education,Education +389629,Education,Education +387968,Education,Education +387233,Education,Education +382138,Education,Education +382051,Education,Education +381010,Education,Education +381009,Education,Education +381008,Education,Education +378249,Education,Education +378247,Education,Education +378243,Education,Education +374044,Education,Education +371309,Education,Education +370415,Education,Education +366450,Education,Education +364642,Education,Education +357756,Education,Education +355640,Education,Education +348643,Education,Education +348639,Education,Education +348357,Education,Education +343701,Education,Education +343694,Education,Education +343693,Education,Education +343692,Education,Education +343691,Education,Education +536142,Education,Education +535580,Education,Education +535552,Education,Education +532268,Education,Education +532266,Education,Education +531209,Education,Education +531208,Education,Education +531203,Education,Education +528236,Education,Education +528229,Education,Education +523251,Education,Education +523249,Education,Education +519616,Education,Education +517715,Education,Education +515781,Education,Education +514701,Education,Education +514236,Education,Education +514235,Education,Education +512378,Education,Education +512373,Education,Education +512372,Education,Education +511171,Education,Education +511169,Education,Education +511165,Education,Education +511155,Education,Education +511150,Education,Education +511125,Education,Education +508683,Education,Education +508681,Education,Education +508680,Education,Education +508678,Education,Education +508677,Education,Education +508676,Education,Education +508671,Education,Education +505106,Education,Education +505101,Education,Education +505090,Education,Education +505056,Education,Education +505055,Education,Education +505052,Education,Education +502294,Education,Education +502292,Education,Education +502283,Education,Education +502280,Education,Education +499074,Education,Education +499059,Education,Education +499023,Education,Education +499016,Education,Education +499014,Education,Education +499006,Education,Education +495895,Education,Education +495892,Education,Education +493392,Education,Education +493383,Education,Education +493378,Education,Education +493375,Education,Education +493373,Education,Education +493365,Education,Education +491222,Education,Education +491221,Education,Education +491220,Education,Education +491214,Education,Education +491211,Education,Education +491207,Education,Education +491199,Education,Education +491191,Education,Education +491188,Education,Education +491177,Education,Education +487236,Education,Education +487232,Education,Education +487228,Education,Education +487227,Education,Education +487226,Education,Education +487222,Education,Education +484981,Education,Education +484980,Education,Education +484978,Education,Education +484974,Education,Education +484972,Education,Education +484970,Education,Education +484968,Education,Education +482626,Education,Education +482624,Education,Education +482622,Education,Education +482618,Education,Education +482616,Education,Education +482614,Education,Education +482089,Education,Education +482088,Education,Education +482087,Education,Education +482085,Education,Education +482083,Education,Education +482066,Education,Education +482063,Education,Education +482060,Education,Education +482043,Education,Education +482042,Education,Education +481896,Education,Education +481893,Education,Education +481880,Education,Education +481876,Education,Education +481874,Education,Education +481871,Education,Education +481865,Education,Education +481861,Education,Education +481860,Education,Education +481856,Education,Education +481854,Education,Education +481851,Education,Education +481849,Education,Education +479841,Education,Education +479839,Education,Education +479836,Education,Education +479834,Education,Education +479829,Education,Education +477785,Education,Education +477783,Education,Education +477781,Education,Education +477780,Education,Education +477778,Education,Education +475866,Education,Education +475854,Education,Education +471462,Education,Education +471451,Education,Education +471450,Education,Education +471449,Education,Education +471448,Education,Education +462817,Education,Education +462640,Education,Education +455253,Education,Education +452528,Education,Education +452524,Education,Education +452519,Education,Education +452516,Education,Education +452513,Education,Education +449935,Education,Education +449847,Education,Education +449846,Education,Education +447826,Education,Education +446205,Education,Education +443815,Education,Education +443813,Education,Education +443810,Education,Education +443809,Education,Education +441738,Education,Education +441737,Education,Education +441736,Education,Education +441733,Education,Education +439382,Education,Education +437579,Education,Education +437576,Education,Education +437575,Education,Education +437572,Education,Education +437571,Education,Education +437570,Education,Education +437567,Education,Education +437565,Education,Education +437552,Education,Education +435855,Education,Education +435852,Education,Education +433794,Education,Education +431081,Education,Education +431078,Education,Education +431077,Education,Education +431075,Education,Education +429600,Education,Education +427654,Education,Education +423997,Education,Education +423991,Education,Education +422383,Education,Education +422342,Education,Education +422331,Education,Education +422328,Education,Education +422327,Education,Education +422324,Education,Education +422322,Education,Education +543830,Education,Education +541767,Education,Education +541759,Education,Education +441748,Employment and Training,Employment and Training +441745,Employment and Training,Employment and Training +79074,Employment and Training,Employment and Training +79054,Employment and Training,Employment and Training +142843,Employment and Training,Employment and Training +138715,Employment and Training,Employment and Training +133894,Employment and Training,Employment and Training +132739,Employment and Training,Employment and Training +132717,Employment and Training,Employment and Training +132525,Employment and Training,Employment and Training +132521,Employment and Training,Employment and Training +126518,Employment and Training,Employment and Training +126517,Employment and Training,Employment and Training +126456,Employment and Training,Employment and Training +126455,Employment and Training,Employment and Training +126454,Employment and Training,Employment and Training +126414,Employment and Training,Employment and Training +291210,Employment and Training,Employment and Training +253932,Employment and Training,Employment and Training +253930,Employment and Training,Employment and Training +237001,Employment and Training,Employment and Training +233529,Employment and Training,Employment and Training +227327,Employment and Training,Employment and Training +227322,Employment and Training,Employment and Training +211831,Employment and Training,Employment and Training +211830,Employment and Training,Employment and Training +207143,Employment and Training,Employment and Training +193064,Employment and Training,Employment and Training +176124,Employment and Training,Employment and Training +162209,Employment and Training,Employment and Training +162200,Employment and Training,Employment and Training +162194,Employment and Training,Employment and Training +159233,Employment and Training,Employment and Training +159232,Employment and Training,Employment and Training +159222,Employment and Training,Employment and Training +159221,Employment and Training,Employment and Training +156919,Employment and Training,Employment and Training +156918,Employment and Training,Employment and Training +156917,Employment and Training,Employment and Training +156916,Employment and Training,Employment and Training +156915,Employment and Training,Employment and Training +441743,Employment and Training,Employment and Training +437560,Employment and Training,Employment and Training +418024,Employment and Training,Employment and Training +407983,Employment and Training,Employment and Training +403885,Employment and Training,Employment and Training +403646,Employment and Training,Employment and Training +398216,Employment and Training,Employment and Training +396447,Employment and Training,Employment and Training +393978,Employment and Training,Employment and Training +393047,Employment and Training,Employment and Training +393046,Employment and Training,Employment and Training +392849,Employment and Training,Employment and Training +388032,Employment and Training,Employment and Training +387225,Employment and Training,Employment and Training +387223,Employment and Training,Employment and Training +381010,Employment and Training,Employment and Training +381009,Employment and Training,Employment and Training +381008,Employment and Training,Employment and Training +381002,Employment and Training,Employment and Training +378253,Employment and Training,Employment and Training +378245,Employment and Training,Employment and Training +371314,Employment and Training,Employment and Training +370415,Employment and Training,Employment and Training +366404,Employment and Training,Employment and Training +348639,Employment and Training,Employment and Training +348357,Employment and Training,Employment and Training +344757,Employment and Training,Employment and Training +343703,Employment and Training,Employment and Training +343694,Employment and Training,Employment and Training +343693,Employment and Training,Employment and Training +343692,Employment and Training,Employment and Training +343691,Employment and Training,Employment and Training +343689,Employment and Training,Employment and Training +343687,Employment and Training,Employment and Training +343686,Employment and Training,Employment and Training +343685,Employment and Training,Employment and Training +343683,Employment and Training,Employment and Training +343680,Employment and Training,Employment and Training +343678,Employment and Training,Employment and Training +343677,Employment and Training,Employment and Training +343319,Employment and Training,Employment and Training +340580,Employment and Training,Employment and Training +338376,Employment and Training,Employment and Training +335877,Employment and Training,Employment and Training +335873,Employment and Training,Employment and Training +335872,Employment and Training,Employment and Training +541772,Employment and Training,Employment and Training +541770,Employment and Training,Employment and Training +540016,Employment and Training,Employment and Training +538325,Employment and Training,Employment and Training +538323,Employment and Training,Employment and Training +538319,Employment and Training,Employment and Training +538303,Employment and Training,Employment and Training +531206,Employment and Training,Employment and Training +531205,Employment and Training,Employment and Training +531202,Employment and Training,Employment and Training +528236,Employment and Training,Employment and Training +528229,Employment and Training,Employment and Training +528207,Employment and Training,Employment and Training +526006,Employment and Training,Employment and Training +525996,Employment and Training,Employment and Training +525994,Employment and Training,Employment and Training +525993,Employment and Training,Employment and Training +523247,Employment and Training,Employment and Training +517715,Employment and Training,Employment and Training +517699,Employment and Training,Employment and Training +514236,Employment and Training,Employment and Training +512378,Employment and Training,Employment and Training +512372,Employment and Training,Employment and Training +511171,Employment and Training,Employment and Training +511169,Employment and Training,Employment and Training +511165,Employment and Training,Employment and Training +511155,Employment and Training,Employment and Training +508681,Employment and Training,Employment and Training +508671,Employment and Training,Employment and Training +505101,Employment and Training,Employment and Training +505085,Employment and Training,Employment and Training +505055,Employment and Training,Employment and Training +505053,Employment and Training,Employment and Training +502294,Employment and Training,Employment and Training +502292,Employment and Training,Employment and Training +502285,Employment and Training,Employment and Training +502283,Employment and Training,Employment and Training +502280,Employment and Training,Employment and Training +502279,Employment and Training,Employment and Training +502274,Employment and Training,Employment and Training +502270,Employment and Training,Employment and Training +499066,Employment and Training,Employment and Training +499064,Employment and Training,Employment and Training +499059,Employment and Training,Employment and Training +499022,Employment and Training,Employment and Training +499012,Employment and Training,Employment and Training +493387,Employment and Training,Employment and Training +493375,Employment and Training,Employment and Training +493368,Employment and Training,Employment and Training +491221,Employment and Training,Employment and Training +491214,Employment and Training,Employment and Training +491207,Employment and Training,Employment and Training +491199,Employment and Training,Employment and Training +487246,Employment and Training,Employment and Training +487237,Employment and Training,Employment and Training +487235,Employment and Training,Employment and Training +487232,Employment and Training,Employment and Training +487228,Employment and Training,Employment and Training +487227,Employment and Training,Employment and Training +487226,Employment and Training,Employment and Training +484980,Employment and Training,Employment and Training +484970,Employment and Training,Employment and Training +482621,Employment and Training,Employment and Training +482088,Employment and Training,Employment and Training +482060,Employment and Training,Employment and Training +479841,Employment and Training,Employment and Training +479839,Employment and Training,Employment and Training +479836,Employment and Training,Employment and Training +479834,Employment and Training,Employment and Training +479832,Employment and Training,Employment and Training +479829,Employment and Training,Employment and Training +479826,Employment and Training,Employment and Training +479824,Employment and Training,Employment and Training +478001,Employment and Training,Employment and Training +477787,Employment and Training,Employment and Training +477782,Employment and Training,Employment and Training +477772,Employment and Training,Employment and Training +475869,Employment and Training,Employment and Training +475867,Employment and Training,Employment and Training +475859,Employment and Training,Employment and Training +475858,Employment and Training,Employment and Training +475837,Employment and Training,Employment and Training +475810,Employment and Training,Employment and Training +473620,Employment and Training,Employment and Training +473613,Employment and Training,Employment and Training +473611,Employment and Training,Employment and Training +473607,Employment and Training,Employment and Training +473003,Employment and Training,Employment and Training +472983,Employment and Training,Employment and Training +471464,Employment and Training,Employment and Training +471452,Employment and Training,Employment and Training +471450,Employment and Training,Employment and Training +471447,Employment and Training,Employment and Training +471396,Employment and Training,Employment and Training +471395,Employment and Training,Employment and Training +471394,Employment and Training,Employment and Training +471393,Employment and Training,Employment and Training +471392,Employment and Training,Employment and Training +468409,Employment and Training,Employment and Training +468407,Employment and Training,Employment and Training +464465,Employment and Training,Employment and Training +464448,Employment and Training,Employment and Training +464447,Employment and Training,Employment and Training +464445,Employment and Training,Employment and Training +464443,Employment and Training,Employment and Training +462816,Employment and Training,Employment and Training +462637,Employment and Training,Employment and Training +461895,Employment and Training,Employment and Training +461591,Employment and Training,Employment and Training +461589,Employment and Training,Employment and Training +461585,Employment and Training,Employment and Training +460092,Employment and Training,Employment and Training +460090,Employment and Training,Employment and Training +460087,Employment and Training,Employment and Training +460085,Employment and Training,Employment and Training +460083,Employment and Training,Employment and Training +456940,Employment and Training,Employment and Training +456928,Employment and Training,Employment and Training +456927,Employment and Training,Employment and Training +454902,Employment and Training,Employment and Training +454900,Employment and Training,Employment and Training +447842,Employment and Training,Employment and Training +446204,Employment and Training,Employment and Training +446203,Employment and Training,Employment and Training +446202,Employment and Training,Employment and Training +446200,Employment and Training,Employment and Training +446199,Employment and Training,Employment and Training +445243,Employment and Training,Employment and Training +445239,Employment and Training,Employment and Training +445217,Employment and Training,Employment and Training +484978,Environment,Environment +484968,Environment,Environment +446201,Environment,Environment +443817,Environment,Environment +541767,Environment,Environment +538325,Environment,Environment +538323,Environment,Environment +538319,Environment,Environment +531206,Environment,Environment +531202,Environment,Environment +523251,Environment,Environment +517714,Environment,Environment +517703,Environment,Environment +517699,Environment,Environment +512378,Environment,Environment +505085,Environment,Environment +505053,Environment,Environment +502285,Environment,Environment +499081,Environment,Environment +499063,Environment,Environment +493392,Environment,Environment +493378,Environment,Environment +491191,Environment,Environment +491188,Environment,Environment +487246,Environment,Environment +487237,Environment,Environment +487236,Environment,Environment +487232,Environment,Environment +487228,Environment,Environment +487227,Environment,Environment +528229,Immigration,Immigration +528221,Immigration,Immigration +138715,Immigration,Immigration +132717,Immigration,Immigration +126455,Immigration,Immigration +79074,Immigration,Immigration +79054,Immigration,Immigration +207143,Immigration,Immigration +162208,Immigration,Immigration +162192,Immigration,Immigration +159214,Immigration,Immigration +156911,Immigration,Immigration +348569,Immigration,Immigration +338344,Immigration,Immigration +335868,Immigration,Immigration +325292,Immigration,Immigration +318916,Immigration,Immigration +318915,Immigration,Immigration +241217,Immigration,Immigration +233529,Immigration,Immigration +445219,Immigration,Immigration +441754,Immigration,Immigration +420055,Immigration,Immigration +415587,Immigration,Immigration +412528,Immigration,Immigration +412527,Immigration,Immigration +403885,Immigration,Immigration +403190,Immigration,Immigration +393046,Immigration,Immigration +391139,Immigration,Immigration +384953,Immigration,Immigration +383325,Immigration,Immigration +370415,Immigration,Immigration +523249,Immigration,Immigration +515781,Immigration,Immigration +514235,Immigration,Immigration +512376,Immigration,Immigration +512375,Immigration,Immigration +512373,Immigration,Immigration +505106,Immigration,Immigration +505090,Immigration,Immigration +499023,Immigration,Immigration +499016,Immigration,Immigration +499014,Immigration,Immigration +499006,Immigration,Immigration +495892,Immigration,Immigration +493383,Immigration,Immigration +493373,Immigration,Immigration +491220,Immigration,Immigration +491211,Immigration,Immigration +491177,Immigration,Immigration +484974,Immigration,Immigration +482626,Immigration,Immigration +482624,Immigration,Immigration +482616,Immigration,Immigration +482089,Immigration,Immigration +482066,Immigration,Immigration +482063,Immigration,Immigration +482042,Immigration,Immigration +481893,Immigration,Immigration +481880,Immigration,Immigration +481874,Immigration,Immigration +481871,Immigration,Immigration +481865,Immigration,Immigration +481861,Immigration,Immigration +481860,Immigration,Immigration +481854,Immigration,Immigration +481851,Immigration,Immigration +481849,Immigration,Immigration +479855,Immigration,Immigration +479827,Immigration,Immigration +477786,Immigration,Immigration +477777,Immigration,Immigration +477776,Immigration,Immigration +477774,Immigration,Immigration +473600,Immigration,Immigration +540003,Immigration,Immigration +538334,Immigration,Immigration +536142,Immigration,Immigration +244415,Industry,Industry +502270,Industry,Industry +133894,Industry,Industry +133854,Industry,Industry +211828,Industry,Industry +206572,Industry,Industry +192055,Industry,Industry +192053,Industry,Industry +162211,Industry,Industry +135928,Industry,Industry +135926,Industry,Industry +142843,Other,"International Development," +132525,Other,"International Development," +126456,Other,PSE Funding +126414,Other,PSE Funding +81755,Other,PSE Funding +79074,Other,PSE Funding +79054,Other,PSE Funding +162211,Other,PSE Funding +162210,Other,PSE Funding +162200,Other,PSE Funding +162198,Other,PSE Funding +162194,Other,PSE Funding +162188,Other,PSE Funding +159234,Other,PSE Funding +159233,Other,PSE Funding +159232,Other,PSE Funding +159222,Other,PSE Funding +159221,Other,PSE Funding +159220,Other,PSE Funding +156914,Other,PSE Funding +156912,Other,PSE Funding +156911,Other,PSE Funding +145945,Other,PSE Funding +142843,Other,PSE Funding +138719,Other,PSE Funding +135932,Other,PSE Funding +133894,Other,PSE Funding +133854,Other,PSE Funding +132739,Other,PSE Funding +132525,Other,PSE Funding +126518,Other,PSE Funding +447673,Defence,Defence +488652,Industry,Industry +485652,Industry,Industry +152804,Industry,Industry +152803,Industry,Industry +445212,Industry,Industry +435115,Industry,Industry +430658,Industry,Industry +427973,Industry,Industry +427971,Industry,Industry +426076,Industry,Industry +425668,Industry,Industry +423586,Industry,Industry +410410,Industry,Industry +542675,Industry,Industry +539071,Industry,Industry +536618,Industry,Industry +536615,Industry,Industry +533578,Industry,Industry +533291,Industry,Industry +533290,Industry,Industry +516636,Industry,Industry +516635,Industry,Industry +511882,Industry,Industry +509772,Industry,Industry +509771,Industry,Industry +506648,Industry,Industry +503463,Industry,Industry +503462,Industry,Industry +503461,Industry,Industry +503197,Industry,Industry +503196,Industry,Industry +503195,Industry,Industry +494289,Industry,Industry +536615,Intellectual Property,Intellectual Property +503461,Intellectual Property,Intellectual Property +152804,Intellectual Property,Intellectual Property +152803,Intellectual Property,Intellectual Property +445212,Intellectual Property,Intellectual Property +435115,Intellectual Property,Intellectual Property +427973,Intellectual Property,Intellectual Property +410410,Intellectual Property,Intellectual Property +418128,Intellectual Property,Intellectual Property +417728,Intellectual Property,Intellectual Property +100807,Intellectual Property,Intellectual Property +100806,Intellectual Property,Intellectual Property +100805,Intellectual Property,Intellectual Property +95894,Intellectual Property,Intellectual Property +93159,Intellectual Property,Intellectual Property +93158,Intellectual Property,Intellectual Property +77975,Intellectual Property,Intellectual Property +150382,Intellectual Property,Intellectual Property +150377,Intellectual Property,Intellectual Property +142884,Intellectual Property,Intellectual Property +142883,Intellectual Property,Intellectual Property +142882,Intellectual Property,Intellectual Property +138411,Intellectual Property,Intellectual Property +135575,Intellectual Property,Intellectual Property +130054,Intellectual Property,Intellectual Property +124336,Intellectual Property,Intellectual Property +121120,Intellectual Property,Intellectual Property +117707,Intellectual Property,Intellectual Property +227317,Intellectual Property,Intellectual Property +194916,Intellectual Property,Intellectual Property +189557,Intellectual Property,Intellectual Property +189556,Intellectual Property,Intellectual Property +189553,Intellectual Property,Intellectual Property +185935,Intellectual Property,Intellectual Property +185934,Intellectual Property,Intellectual Property +185930,Intellectual Property,Intellectual Property +185929,Intellectual Property,Intellectual Property +175493,Intellectual Property,Intellectual Property +175490,Intellectual Property,Intellectual Property +168566,Intellectual Property,Intellectual Property +165998,Intellectual Property,Intellectual Property +165996,Intellectual Property,Intellectual Property +165995,Intellectual Property,Intellectual Property +159954,Intellectual Property,Intellectual Property +159950,Intellectual Property,Intellectual Property +154901,Intellectual Property,Intellectual Property +408852,Intellectual Property,Intellectual Property +403218,Intellectual Property,Intellectual Property +400133,Intellectual Property,Intellectual Property +400132,Intellectual Property,Intellectual Property +393350,Intellectual Property,Intellectual Property +392637,Intellectual Property,Intellectual Property +392635,Intellectual Property,Intellectual Property +392634,Intellectual Property,Intellectual Property +392632,Intellectual Property,Intellectual Property +392599,Intellectual Property,Intellectual Property +388425,Intellectual Property,Intellectual Property +383470,Intellectual Property,Intellectual Property +380799,Intellectual Property,Intellectual Property +375712,Intellectual Property,Intellectual Property +357518,Intellectual Property,Intellectual Property +357517,Intellectual Property,Intellectual Property +355635,Intellectual Property,Intellectual Property +350699,Intellectual Property,Intellectual Property +348385,Intellectual Property,Intellectual Property +343888,Intellectual Property,Intellectual Property +340473,Intellectual Property,Intellectual Property +340469,Intellectual Property,Intellectual Property +340458,Intellectual Property,Intellectual Property +296694,Intellectual Property,Intellectual Property +296693,Intellectual Property,Intellectual Property +296692,Intellectual Property,Intellectual Property +536232,Intellectual Property,Intellectual Property +516646,Intellectual Property,Intellectual Property +512231,Intellectual Property,Intellectual Property +470861,Intellectual Property,Intellectual Property +452353,Intellectual Property,Intellectual Property +433349,Intellectual Property,Intellectual Property +89715,Other,Official Languages +89714,Other,Official Languages +471460,Health,Health +464775,Health,Health +152803,Health,Health +152804,Health,Health +462333,Health,Health +445212,Health,Health +435115,Health,Health +430658,Health,Health +427973,Health,Health +427971,Health,Health +426076,Health,Health +425668,Health,Health +423586,Health,Health +410410,Health,Health +542675,Health,Health +539071,Health,Health +536618,Health,Health +536615,Health,Health +533578,Health,Health +533291,Health,Health +533290,Health,Health +533289,Health,Health +533288,Health,Health +533287,Health,Health +527074,Health,Health +524431,Health,Health +522420,Health,Health +522416,Health,Health +518450,Health,Health +518449,Health,Health +516636,Health,Health +516635,Health,Health +516527,Health,Health +511882,Health,Health +509772,Health,Health +509771,Health,Health +506656,Health,Health +506654,Health,Health +506651,Health,Health +506648,Health,Health +503463,Health,Health +503462,Health,Health +503461,Health,Health +503197,Health,Health +503196,Health,Health +503195,Health,Health +494289,Health,Health +494288,Health,Health +488652,Health,Health +485652,Health,Health +77787,Taxation and Finance,Taxation and Finance +97684,Taxation and Finance,Taxation and Finance +83123,Taxation and Finance,Taxation and Finance +77780,Energy,Energy +341818,Defence,Defence +341804,Defence,Defence +128924,Defence,Defence +128921,Defence,Defence +97396,Defence,Defence +156695,Defence,Defence +145617,Defence,Defence +145594,Defence,Defence +145590,Defence,Defence +276249,Defence,Defence +230032,Defence,Defence +226508,Defence,Defence +188933,Defence,Defence +188928,Defence,Defence +341818,Government Procurement,Government Procurement +335891,Government Procurement,Government Procurement +106141,Government Procurement,Government Procurement +97400,Government Procurement,Government Procurement +97398,Government Procurement,Government Procurement +97396,Government Procurement,Government Procurement +97389,Government Procurement,Government Procurement +93703,Government Procurement,Government Procurement +230032,Government Procurement,Government Procurement +188933,Government Procurement,Government Procurement +188928,Government Procurement,Government Procurement +179364,Government Procurement,Government Procurement +145617,Government Procurement,Government Procurement +145594,Government Procurement,Government Procurement +138082,Government Procurement,Government Procurement +321769,International Trade,International Trade +318623,International Trade,International Trade +113639,International Trade,International Trade +113638,International Trade,International Trade +101278,International Trade,International Trade +97400,International Trade,International Trade +156698,International Trade,International Trade +156697,International Trade,International Trade +156696,International Trade,International Trade +124757,International Trade,International Trade +121269,International Trade,International Trade +117094,International Trade,International Trade +117091,International Trade,International Trade +117089,International Trade,International Trade +117087,International Trade,International Trade +117077,International Trade,International Trade +117074,International Trade,International Trade +113647,International Trade,International Trade +113645,International Trade,International Trade +113643,International Trade,International Trade +113641,International Trade,International Trade +113640,International Trade,International Trade +296740,International Trade,International Trade +285831,International Trade,International Trade +281469,International Trade,International Trade +254183,International Trade,International Trade +240571,International Trade,International Trade +226508,International Trade,International Trade +223362,International Trade,International Trade +212312,International Trade,International Trade +207250,International Trade,International Trade +341829,International Trade,International Trade +341818,Regional Development,Regional Development +226508,Regional Development,Regional Development +145590,Regional Development,Regional Development +113657,Regional Development,Regional Development +113650,Regional Development,Regional Development +113640,Regional Development,Regional Development +97400,Regional Development,Regional Development +97398,Regional Development,Regional Development +97396,Regional Development,Regional Development +97389,Regional Development,Regional Development +97396,Small Business,Small Business +97389,Small Business,Small Business +97400,Small Business,Small Business +349889,Industry,Industry +150352,Government Procurement,Government Procurement +101222,Government Procurement,Government Procurement +92862,Government Procurement,Government Procurement +202837,Education,Education +385221,Education,Education +200669,Education,Education +174869,Education,Education +170762,Education,Education +97223,Education,Education +79396,Education,Education +343771,Education,Education +343770,Education,Education +341615,Education,Education +341609,Education,Education +333649,Education,Education +260450,Education,Education +260449,Education,Education +244910,Education,Education +244909,Education,Education +223633,Education,Education +219027,Education,Education +219009,Education,Education +219008,Education,Education +219007,Education,Education +206189,Education,Education +333651,Employment and Training,Employment and Training +333649,Employment and Training,Employment and Training +90282,Employment and Training,Employment and Training +88112,Employment and Training,Employment and Training +82900,Employment and Training,Employment and Training +82899,Employment and Training,Employment and Training +112616,Employment and Training,Employment and Training +112594,Employment and Training,Employment and Training +260449,Employment and Training,Employment and Training +244910,Employment and Training,Employment and Training +244909,Employment and Training,Employment and Training +223633,Employment and Training,Employment and Training +219027,Employment and Training,Employment and Training +206189,Employment and Training,Employment and Training +206188,Employment and Training,Employment and Training +202837,Employment and Training,Employment and Training +343771,Employment and Training,Employment and Training +343770,Employment and Training,Employment and Training +341615,Employment and Training,Employment and Training +84034,Consumer Issues,Consumer Issues +382428,Consumer Issues,Consumer Issues +339048,Government Procurement,Government Procurement +339047,Government Procurement,Government Procurement +456642,Government Procurement,Government Procurement +344009,Government Procurement,Government Procurement +381398,Health,Health +378423,Health,Health +84034,Health,Health +83414,Health,Health +80114,Health,Health +77894,Health,Health +77485,Health,Health +74734,Health,Health +74714,Health,Health +74695,Health,Health +74694,Health,Health +74674,Health,Health +124156,Health,Health +124155,Health,Health +124137,Health,Health +116694,Health,Health +116616,Health,Health +116614,Health,Health +111916,Health,Health +107795,Health,Health +107794,Health,Health +107755,Health,Health +107754,Health,Health +103355,Health,Health +103354,Health,Health +100467,Health,Health +100466,Health,Health +92896,Health,Health +92895,Health,Health +92894,Health,Health +89135,Health,Health +84035,Health,Health +217852,Health,Health +217828,Health,Health +210357,Health,Health +210356,Health,Health +210355,Health,Health +210354,Health,Health +210349,Health,Health +210329,Health,Health +210328,Health,Health +207384,Health,Health +207383,Health,Health +197368,Health,Health +197366,Health,Health +197365,Health,Health +197364,Health,Health +193333,Health,Health +193332,Health,Health +193330,Health,Health +193329,Health,Health +189101,Health,Health +189094,Health,Health +185890,Health,Health +173804,Health,Health +162417,Health,Health +162410,Health,Health +162399,Health,Health +162393,Health,Health +162387,Health,Health +157032,Health,Health +157030,Health,Health +154670,Health,Health +153636,Health,Health +149336,Health,Health +145445,Health,Health +145444,Health,Health +136854,Health,Health +136835,Health,Health +134774,Health,Health +132020,Health,Health +132019,Health,Health +132018,Health,Health +132017,Health,Health +132016,Health,Health +132014,Health,Health +127440,Health,Health +127439,Health,Health +127438,Health,Health +127437,Health,Health +127436,Health,Health +127435,Health,Health +127434,Health,Health +124175,Health,Health +344009,Health,Health +330045,Health,Health +311529,Health,Health +250341,Health,Health +250340,Health,Health +250339,Health,Health +250337,Health,Health +250336,Health,Health +250334,Health,Health +240685,Health,Health +463171,Health,Health +462093,Health,Health +459789,Health,Health +453189,Health,Health +453188,Health,Health +453187,Health,Health +453186,Health,Health +448741,Health,Health +444770,Health,Health +440238,Health,Health +434280,Health,Health +431512,Health,Health +430073,Health,Health +427857,Health,Health +427115,Health,Health +424898,Health,Health +423287,Health,Health +423286,Health,Health +423280,Health,Health +418755,Health,Health +413997,Health,Health +413996,Health,Health +413994,Health,Health +413992,Health,Health +410991,Health,Health +410990,Health,Health +410989,Health,Health +410986,Health,Health +381398,Industry,Industry +434280,Industry,Industry +100466,Industry,Industry +92896,Industry,Industry +92895,Industry,Industry +92894,Industry,Industry +89135,Industry,Industry +84035,Industry,Industry +84034,Industry,Industry +83414,Industry,Industry +189101,Industry,Industry +173805,Industry,Industry +162417,Industry,Industry +157032,Industry,Industry +157030,Industry,Industry +157028,Industry,Industry +157024,Industry,Industry +145445,Industry,Industry +145444,Industry,Industry +107795,Industry,Industry +107794,Industry,Industry +107755,Industry,Industry +100467,Industry,Industry +240686,Industry,Industry +217828,Industry,Industry +210355,Industry,Industry +210354,Industry,Industry +210328,Industry,Industry +197369,Industry,Industry +197366,Industry,Industry +197365,Industry,Industry +197364,Industry,Industry +197359,Industry,Industry +197350,Industry,Industry +197349,Industry,Industry +193333,Industry,Industry +193332,Industry,Industry +193330,Industry,Industry +193329,Industry,Industry +431512,Industry,Industry +410989,Intellectual Property,Intellectual Property +410986,Intellectual Property,Intellectual Property +107795,Intellectual Property,Intellectual Property +107794,Intellectual Property,Intellectual Property +92894,Intellectual Property,Intellectual Property +197366,Intellectual Property,Intellectual Property +197365,Intellectual Property,Intellectual Property +197364,Intellectual Property,Intellectual Property +193333,Intellectual Property,Intellectual Property +193332,Intellectual Property,Intellectual Property +193330,Intellectual Property,Intellectual Property +193329,Intellectual Property,Intellectual Property +189101,Intellectual Property,Intellectual Property +185890,Intellectual Property,Intellectual Property +162417,Intellectual Property,Intellectual Property +145445,Intellectual Property,Intellectual Property +217828,Intellectual Property,Intellectual Property +210355,Intellectual Property,Intellectual Property +210354,Intellectual Property,Intellectual Property +210328,Intellectual Property,Intellectual Property +382428,Intellectual Property,Intellectual Property +381398,Intellectual Property,Intellectual Property +378423,Intellectual Property,Intellectual Property +424898,Intellectual Property,Intellectual Property +410991,Intellectual Property,Intellectual Property +424898,International Trade,International Trade +410986,International Trade,International Trade +107794,International Trade,International Trade +92894,International Trade,International Trade +197364,International Trade,International Trade +197359,International Trade,International Trade +197350,International Trade,International Trade +197349,International Trade,International Trade +194770,International Trade,International Trade +194768,International Trade,International Trade +193338,International Trade,International Trade +193337,International Trade,International Trade +193336,International Trade,International Trade +193334,International Trade,International Trade +193333,International Trade,International Trade +193332,International Trade,International Trade +193330,International Trade,International Trade +193329,International Trade,International Trade +189101,International Trade,International Trade +185890,International Trade,International Trade +173805,International Trade,International Trade +162417,International Trade,International Trade +145445,International Trade,International Trade +244982,International Trade,International Trade +226469,International Trade,International Trade +226465,International Trade,International Trade +226464,International Trade,International Trade +226462,International Trade,International Trade +226460,International Trade,International Trade +217850,International Trade,International Trade +217848,International Trade,International Trade +217828,International Trade,International Trade +210359,International Trade,International Trade +210355,International Trade,International Trade +210354,International Trade,International Trade +210351,International Trade,International Trade +210350,International Trade,International Trade +210347,International Trade,International Trade +210330,International Trade,International Trade +210328,International Trade,International Trade +208227,International Trade,International Trade +208147,International Trade,International Trade +208107,International Trade,International Trade +197445,International Trade,International Trade +197370,International Trade,International Trade +197369,International Trade,International Trade +197366,International Trade,International Trade +210358,Labour,Labour +107794,Taxation and Finance,Taxation and Finance +92894,Taxation and Finance,Taxation and Finance +208207,Taxation and Finance,Taxation and Finance +208188,Taxation and Finance,Taxation and Finance +413997,Taxation and Finance,Taxation and Finance +413996,Taxation and Finance,Taxation and Finance +413994,Taxation and Finance,Taxation and Finance +530907,Transportation,Transportation +530904,Transportation,Transportation +222635,Transportation,Transportation +222633,Transportation,Transportation +222642,Transportation,Transportation +222640,Transportation,Transportation +222639,Transportation,Transportation +400410,Transportation,Transportation +400405,Transportation,Transportation +327329,Transportation,Transportation +478598,Agriculture,Agriculture +478597,Agriculture,Agriculture +462124,Agriculture,Agriculture +456967,Agriculture,Agriculture +427570,Agriculture,Agriculture +399583,Agriculture,Agriculture +386463,Agriculture,Agriculture +523923,Agriculture,Agriculture +508866,Agriculture,Agriculture +508864,Agriculture,Agriculture +508857,Agriculture,Agriculture +503051,Agriculture,Agriculture +503050,Agriculture,Agriculture +503049,Agriculture,Agriculture +497086,Agriculture,Agriculture +497085,Agriculture,Agriculture +497084,Agriculture,Agriculture +497082,Agriculture,Agriculture +489225,Agriculture,Agriculture +488592,Agriculture,Agriculture +488591,Agriculture,Agriculture +484143,Agriculture,Agriculture +484142,Agriculture,Agriculture +483167,Agriculture,Agriculture +483166,Agriculture,Agriculture +480899,Agriculture,Agriculture +480898,Agriculture,Agriculture +479011,Agriculture,Agriculture +373939,Transportation,Transportation +373935,Transportation,Transportation +420481,Transportation,Transportation +401371,Transportation,Transportation +395193,Transportation,Transportation +395191,Transportation,Transportation +392033,Transportation,Transportation +392029,Transportation,Transportation +386463,Transportation,Transportation +384627,Transportation,Transportation +384626,Transportation,Transportation +384625,Transportation,Transportation +384623,Transportation,Transportation +382942,Transportation,Transportation +380487,Transportation,Transportation +543483,Consumer Issues,Consumer Issues +541584,Consumer Issues,Consumer Issues +91836,Consumer Issues,Consumer Issues +91834,Consumer Issues,Consumer Issues +186524,Consumer Issues,Consumer Issues +174792,Consumer Issues,Consumer Issues +174791,Consumer Issues,Consumer Issues +174789,Consumer Issues,Consumer Issues +171003,Consumer Issues,Consumer Issues +166651,Consumer Issues,Consumer Issues +166649,Consumer Issues,Consumer Issues +145791,Consumer Issues,Consumer Issues +143201,Consumer Issues,Consumer Issues +132555,Consumer Issues,Consumer Issues +132523,Consumer Issues,Consumer Issues +132519,Consumer Issues,Consumer Issues +311055,Consumer Issues,Consumer Issues +311054,Consumer Issues,Consumer Issues +304376,Consumer Issues,Consumer Issues +295224,Consumer Issues,Consumer Issues +295222,Consumer Issues,Consumer Issues +286890,Consumer Issues,Consumer Issues +286888,Consumer Issues,Consumer Issues +273651,Consumer Issues,Consumer Issues +269159,Consumer Issues,Consumer Issues +269120,Consumer Issues,Consumer Issues +269119,Consumer Issues,Consumer Issues +251312,Consumer Issues,Consumer Issues +249792,Consumer Issues,Consumer Issues +242151,Consumer Issues,Consumer Issues +242149,Consumer Issues,Consumer Issues +237079,Consumer Issues,Consumer Issues +237056,Consumer Issues,Consumer Issues +237054,Consumer Issues,Consumer Issues +230609,Consumer Issues,Consumer Issues +227279,Consumer Issues,Consumer Issues +218767,Consumer Issues,Consumer Issues +218750,Consumer Issues,Consumer Issues +207707,Consumer Issues,Consumer Issues +197110,Consumer Issues,Consumer Issues +195458,Consumer Issues,Consumer Issues +195456,Consumer Issues,Consumer Issues +195455,Consumer Issues,Consumer Issues +195453,Consumer Issues,Consumer Issues +195452,Consumer Issues,Consumer Issues +186544,Consumer Issues,Consumer Issues +435398,Consumer Issues,Consumer Issues +435394,Consumer Issues,Consumer Issues +435393,Consumer Issues,Consumer Issues +433814,Consumer Issues,Consumer Issues +432347,Consumer Issues,Consumer Issues +432344,Consumer Issues,Consumer Issues +432343,Consumer Issues,Consumer Issues +431126,Consumer Issues,Consumer Issues +429302,Consumer Issues,Consumer Issues +429297,Consumer Issues,Consumer Issues +426244,Consumer Issues,Consumer Issues +423711,Consumer Issues,Consumer Issues +423709,Consumer Issues,Consumer Issues +422051,Consumer Issues,Consumer Issues +419792,Consumer Issues,Consumer Issues +419789,Consumer Issues,Consumer Issues +417702,Consumer Issues,Consumer Issues +417701,Consumer Issues,Consumer Issues +417700,Consumer Issues,Consumer Issues +417697,Consumer Issues,Consumer Issues +416329,Consumer Issues,Consumer Issues +416328,Consumer Issues,Consumer Issues +412413,Consumer Issues,Consumer Issues +412412,Consumer Issues,Consumer Issues +409684,Consumer Issues,Consumer Issues +409682,Consumer Issues,Consumer Issues +398934,Consumer Issues,Consumer Issues +370441,Consumer Issues,Consumer Issues +370437,Consumer Issues,Consumer Issues +370436,Consumer Issues,Consumer Issues +370435,Consumer Issues,Consumer Issues +370434,Consumer Issues,Consumer Issues +370433,Consumer Issues,Consumer Issues +369555,Consumer Issues,Consumer Issues +365324,Consumer Issues,Consumer Issues +365323,Consumer Issues,Consumer Issues +358086,Consumer Issues,Consumer Issues +338885,Consumer Issues,Consumer Issues +334317,Consumer Issues,Consumer Issues +333129,Consumer Issues,Consumer Issues +322005,Consumer Issues,Consumer Issues +322001,Consumer Issues,Consumer Issues +319560,Consumer Issues,Consumer Issues +319555,Consumer Issues,Consumer Issues +539722,Consumer Issues,Consumer Issues +539721,Consumer Issues,Consumer Issues +539720,Consumer Issues,Consumer Issues +539719,Consumer Issues,Consumer Issues +539717,Consumer Issues,Consumer Issues +539716,Consumer Issues,Consumer Issues +539715,Consumer Issues,Consumer Issues +539713,Consumer Issues,Consumer Issues +539712,Consumer Issues,Consumer Issues +538222,Consumer Issues,Consumer Issues +538220,Consumer Issues,Consumer Issues +538219,Consumer Issues,Consumer Issues +538218,Consumer Issues,Consumer Issues +538216,Consumer Issues,Consumer Issues +534514,Consumer Issues,Consumer Issues +534510,Consumer Issues,Consumer Issues +534509,Consumer Issues,Consumer Issues +493388,Consumer Issues,Consumer Issues +490716,Consumer Issues,Consumer Issues +490705,Consumer Issues,Consumer Issues +490695,Consumer Issues,Consumer Issues +490684,Consumer Issues,Consumer Issues +487522,Consumer Issues,Consumer Issues +487494,Consumer Issues,Consumer Issues +482106,Consumer Issues,Consumer Issues +479902,Consumer Issues,Consumer Issues +479887,Consumer Issues,Consumer Issues +468055,Consumer Issues,Consumer Issues +468054,Consumer Issues,Consumer Issues +468053,Consumer Issues,Consumer Issues +468051,Consumer Issues,Consumer Issues +468050,Consumer Issues,Consumer Issues +468049,Consumer Issues,Consumer Issues +468048,Consumer Issues,Consumer Issues +464345,Consumer Issues,Consumer Issues +460053,Consumer Issues,Consumer Issues +455490,Consumer Issues,Consumer Issues +455473,Consumer Issues,Consumer Issues +447551,Consumer Issues,Consumer Issues +447541,Consumer Issues,Consumer Issues +443640,Consumer Issues,Consumer Issues +407926,Industry,Industry +407924,Industry,Industry +207707,Industry,Industry +390491,Industry,Industry +390490,Industry,Industry +390486,Industry,Industry +387728,Industry,Industry +385666,Industry,Industry +447555,Industry,Industry +447548,Industry,Industry +442194,Industry,Industry +439351,Industry,Industry +432345,Intellectual Property,Intellectual Property +512834,Intellectual Property,Intellectual Property +77640,Intellectual Property,Intellectual Property +188592,Intellectual Property,Intellectual Property +188591,Intellectual Property,Intellectual Property +186524,Intellectual Property,Intellectual Property +177364,Intellectual Property,Intellectual Property +174792,Intellectual Property,Intellectual Property +162344,Intellectual Property,Intellectual Property +162328,Intellectual Property,Intellectual Property +162321,Intellectual Property,Intellectual Property +162310,Intellectual Property,Intellectual Property +162309,Intellectual Property,Intellectual Property +157431,Intellectual Property,Intellectual Property +295222,Intellectual Property,Intellectual Property +286895,Intellectual Property,Intellectual Property +249793,Intellectual Property,Intellectual Property +242152,Intellectual Property,Intellectual Property +242150,Intellectual Property,Intellectual Property +227275,Intellectual Property,Intellectual Property +223827,Intellectual Property,Intellectual Property +218748,Intellectual Property,Intellectual Property +212227,Intellectual Property,Intellectual Property +212226,Intellectual Property,Intellectual Property +207707,Intellectual Property,Intellectual Property +203171,Intellectual Property,Intellectual Property +203170,Intellectual Property,Intellectual Property +197109,Intellectual Property,Intellectual Property +197108,Intellectual Property,Intellectual Property +197107,Intellectual Property,Intellectual Property +197103,Intellectual Property,Intellectual Property +197102,Intellectual Property,Intellectual Property +195462,Intellectual Property,Intellectual Property +195461,Intellectual Property,Intellectual Property +195460,Intellectual Property,Intellectual Property +195453,Intellectual Property,Intellectual Property +195452,Intellectual Property,Intellectual Property +195449,Intellectual Property,Intellectual Property +188593,Intellectual Property,Intellectual Property +429251,Intellectual Property,Intellectual Property +429248,Intellectual Property,Intellectual Property +426242,Intellectual Property,Intellectual Property +426241,Intellectual Property,Intellectual Property +426240,Intellectual Property,Intellectual Property +426239,Intellectual Property,Intellectual Property +423715,Intellectual Property,Intellectual Property +423710,Intellectual Property,Intellectual Property +412414,Intellectual Property,Intellectual Property +410299,Intellectual Property,Intellectual Property +409678,Intellectual Property,Intellectual Property +407927,Intellectual Property,Intellectual Property +499165,Intellectual Property,Intellectual Property +499119,Intellectual Property,Intellectual Property +493390,Intellectual Property,Intellectual Property +493363,Intellectual Property,Intellectual Property +493361,Intellectual Property,Intellectual Property +487526,Intellectual Property,Intellectual Property +487505,Intellectual Property,Intellectual Property +487497,Intellectual Property,Intellectual Property +479905,Intellectual Property,Intellectual Property +460055,Intellectual Property,Intellectual Property +455478,Intellectual Property,Intellectual Property +455468,Intellectual Property,Intellectual Property +452591,Intellectual Property,Intellectual Property +450068,Intellectual Property,Intellectual Property +450067,Intellectual Property,Intellectual Property +450065,Intellectual Property,Intellectual Property +447548,Intellectual Property,Intellectual Property +439361,Intellectual Property,Intellectual Property +439359,Intellectual Property,Intellectual Property +439357,Intellectual Property,Intellectual Property +439353,Intellectual Property,Intellectual Property +439351,Intellectual Property,Intellectual Property +435391,Intellectual Property,Intellectual Property +433817,Intellectual Property,Intellectual Property +433816,Intellectual Property,Intellectual Property +412418,International Trade,International Trade +412414,International Trade,International Trade +77640,International Trade,International Trade +410299,International Trade,International Trade +409678,International Trade,International Trade +409390,International Trade,International Trade +409387,International Trade,International Trade +407925,International Trade,International Trade +407920,International Trade,International Trade +435392,International Trade,International Trade +433815,International Trade,International Trade +432345,International Trade,International Trade +429304,International Trade,International Trade +429252,International Trade,International Trade +426644,International Trade,International Trade +426237,International Trade,International Trade +419791,International Trade,International Trade +419787,International Trade,International Trade +468055,Justice and Law Enforcement,Justice and Law Enforcement +468054,Justice and Law Enforcement,Justice and Law Enforcement +433808,Justice and Law Enforcement,Justice and Law Enforcement +423713,Justice and Law Enforcement,Justice and Law Enforcement +423712,Justice and Law Enforcement,Justice and Law Enforcement +512827,Justice and Law Enforcement,Justice and Law Enforcement +510316,Justice and Law Enforcement,Justice and Law Enforcement +510315,Justice and Law Enforcement,Justice and Law Enforcement +508507,Justice and Law Enforcement,Justice and Law Enforcement +508502,Justice and Law Enforcement,Justice and Law Enforcement +508497,Justice and Law Enforcement,Justice and Law Enforcement +505080,Justice and Law Enforcement,Justice and Law Enforcement +502193,Justice and Law Enforcement,Justice and Law Enforcement +502189,Justice and Law Enforcement,Justice and Law Enforcement +502176,Justice and Law Enforcement,Justice and Law Enforcement +502170,Justice and Law Enforcement,Justice and Law Enforcement +502150,Justice and Law Enforcement,Justice and Law Enforcement +502149,Justice and Law Enforcement,Justice and Law Enforcement +502142,Justice and Law Enforcement,Justice and Law Enforcement +499111,Justice and Law Enforcement,Justice and Law Enforcement +493388,Justice and Law Enforcement,Justice and Law Enforcement +490716,Justice and Law Enforcement,Justice and Law Enforcement +490709,Justice and Law Enforcement,Justice and Law Enforcement +490695,Justice and Law Enforcement,Justice and Law Enforcement +490684,Justice and Law Enforcement,Justice and Law Enforcement +487522,Justice and Law Enforcement,Justice and Law Enforcement +487494,Justice and Law Enforcement,Justice and Law Enforcement +482106,Justice and Law Enforcement,Justice and Law Enforcement +479902,Justice and Law Enforcement,Justice and Law Enforcement +486861,Agriculture,Agriculture +486858,Agriculture,Agriculture +100682,Agriculture,Agriculture +100178,Agriculture,Agriculture +100175,Agriculture,Agriculture +100161,Agriculture,Agriculture +100160,Agriculture,Agriculture +97185,Agriculture,Agriculture +93416,Agriculture,Agriculture +90107,Agriculture,Agriculture +90103,Agriculture,Agriculture +81079,Agriculture,Agriculture +165455,Agriculture,Agriculture +165246,Agriculture,Agriculture +164948,Agriculture,Agriculture +161745,Agriculture,Agriculture +156326,Agriculture,Agriculture +154060,Agriculture,Agriculture +152998,Agriculture,Agriculture +152997,Agriculture,Agriculture +151605,Agriculture,Agriculture +151602,Agriculture,Agriculture +151601,Agriculture,Agriculture +151600,Agriculture,Agriculture +149972,Agriculture,Agriculture +149144,Agriculture,Agriculture +148857,Agriculture,Agriculture +148856,Agriculture,Agriculture +131618,Agriculture,Agriculture +131613,Agriculture,Agriculture +112176,Agriculture,Agriculture +103254,Agriculture,Agriculture +103116,Agriculture,Agriculture +100971,Agriculture,Agriculture +100967,Agriculture,Agriculture +100964,Agriculture,Agriculture +100963,Agriculture,Agriculture +100960,Agriculture,Agriculture +340392,Agriculture,Agriculture +340387,Agriculture,Agriculture +322191,Agriculture,Agriculture +312771,Agriculture,Agriculture +296371,Agriculture,Agriculture +272993,Agriculture,Agriculture +272990,Agriculture,Agriculture +264154,Agriculture,Agriculture +264152,Agriculture,Agriculture +257549,Agriculture,Agriculture +251863,Agriculture,Agriculture +229773,Agriculture,Agriculture +226689,Agriculture,Agriculture +222686,Agriculture,Agriculture +197887,Agriculture,Agriculture +197847,Agriculture,Agriculture +192900,Agriculture,Agriculture +184184,Agriculture,Agriculture +176964,Agriculture,Agriculture +176864,Agriculture,Agriculture +172988,Agriculture,Agriculture +172987,Agriculture,Agriculture +172985,Agriculture,Agriculture +170117,Agriculture,Agriculture +169932,Agriculture,Agriculture +167392,Agriculture,Agriculture +167326,Agriculture,Agriculture +484388,Agriculture,Agriculture +484378,Agriculture,Agriculture +484375,Agriculture,Agriculture +473708,Agriculture,Agriculture +473682,Agriculture,Agriculture +473673,Agriculture,Agriculture +461483,Agriculture,Agriculture +461481,Agriculture,Agriculture +460138,Agriculture,Agriculture +460103,Agriculture,Agriculture +543686,Agriculture,Agriculture +541400,Agriculture,Agriculture +540391,Agriculture,Agriculture +540156,Agriculture,Agriculture +538195,Agriculture,Agriculture +538192,Agriculture,Agriculture +538189,Agriculture,Agriculture +538186,Agriculture,Agriculture +538177,Agriculture,Agriculture +535054,Agriculture,Agriculture +535051,Agriculture,Agriculture +535049,Agriculture,Agriculture +531835,Agriculture,Agriculture +531834,Agriculture,Agriculture +528417,Agriculture,Agriculture +522205,Agriculture,Agriculture +522204,Agriculture,Agriculture +519634,Agriculture,Agriculture +517251,Agriculture,Agriculture +515817,Agriculture,Agriculture +512569,Agriculture,Agriculture +510525,Agriculture,Agriculture +510523,Agriculture,Agriculture +507230,Agriculture,Agriculture +507229,Agriculture,Agriculture +507228,Agriculture,Agriculture +507227,Agriculture,Agriculture +504278,Agriculture,Agriculture +504240,Agriculture,Agriculture +504238,Agriculture,Agriculture +504219,Agriculture,Agriculture +501342,Agriculture,Agriculture +501340,Agriculture,Agriculture +497971,Agriculture,Agriculture +497969,Agriculture,Agriculture +497968,Agriculture,Agriculture +494635,Agriculture,Agriculture +494632,Agriculture,Agriculture +494631,Agriculture,Agriculture +492321,Agriculture,Agriculture +492317,Agriculture,Agriculture +492316,Agriculture,Agriculture +492315,Agriculture,Agriculture +492314,Agriculture,Agriculture +492313,Agriculture,Agriculture +490694,Agriculture,Agriculture +490693,Agriculture,Agriculture +490692,Agriculture,Agriculture +490686,Agriculture,Agriculture +490671,Agriculture,Agriculture +486898,Agriculture,Agriculture +486865,Agriculture,Agriculture +312769,Defence,Defence +232994,Defence,Defence +226642,Defence,Defence +538898,Education,Education +538211,Education,Education +88059,Education,Education +88053,Education,Education +87850,Education,Education +87842,Education,Education +86816,Education,Education +84658,Education,Education +84654,Education,Education +82454,Education,Education +82355,Education,Education +82354,Education,Education +137297,Education,Education +137296,Education,Education +137295,Education,Education +134983,Education,Education +131894,Education,Education +131621,Education,Education +131610,Education,Education +116479,Education,Education +112155,Education,Education +112154,Education,Education +108615,Education,Education +103247,Education,Education +103244,Education,Education +103238,Education,Education +103236,Education,Education +103235,Education,Education +103234,Education,Education +100175,Education,Education +100164,Education,Education +100162,Education,Education +97185,Education,Education +97177,Education,Education +92878,Education,Education +92877,Education,Education +90131,Education,Education +90106,Education,Education +90105,Education,Education +90103,Education,Education +88065,Education,Education +240009,Education,Education +233009,Education,Education +229889,Education,Education +226911,Education,Education +226729,Education,Education +209694,Education,Education +206007,Education,Education +199993,Education,Education +197827,Education,Education +197747,Education,Education +172986,Education,Education +172983,Education,Education +167850,Education,Education +159926,Education,Education +159792,Education,Education +151603,Education,Education +149961,Education,Education +149957,Education,Education +149165,Education,Education +149156,Education,Education +149155,Education,Education +149150,Education,Education +149148,Education,Education +147505,Education,Education +147499,Education,Education +147495,Education,Education +146329,Education,Education +146318,Education,Education +145499,Education,Education +145497,Education,Education +142846,Education,Education +405776,Education,Education +393232,Education,Education +372318,Education,Education +372316,Education,Education +372313,Education,Education +372306,Education,Education +372301,Education,Education +372281,Education,Education +367963,Education,Education +340391,Education,Education +340390,Education,Education +340389,Education,Education +340388,Education,Education +340387,Education,Education +327509,Education,Education +327508,Education,Education +322202,Education,Education +322201,Education,Education +322200,Education,Education +322191,Education,Education +312768,Education,Education +312767,Education,Education +312766,Education,Education +312765,Education,Education +312764,Education,Education +312758,Education,Education +311057,Education,Education +302850,Education,Education +291029,Education,Education +258829,Education,Education +257551,Education,Education +257549,Education,Education +522392,Education,Education +520368,Education,Education +516067,Education,Education +510531,Education,Education +510514,Education,Education +507233,Education,Education +507231,Education,Education +504242,Education,Education +504193,Education,Education +501351,Education,Education +499781,Education,Education +497985,Education,Education +497967,Education,Education +494641,Education,Education +490696,Education,Education +490664,Education,Education +490645,Education,Education +490643,Education,Education +490641,Education,Education +490640,Education,Education +490613,Education,Education +486896,Education,Education +481921,Education,Education +481916,Education,Education +481911,Education,Education +481909,Education,Education +481906,Education,Education +477062,Education,Education +475166,Education,Education +473689,Education,Education +468550,Education,Education +468548,Education,Education +468547,Education,Education +468546,Education,Education +463689,Education,Education +463688,Education,Education +463687,Education,Education +463683,Education,Education +463654,Education,Education +462633,Education,Education +461525,Education,Education +461523,Education,Education +461508,Education,Education +461506,Education,Education +461501,Education,Education +461483,Education,Education +460151,Education,Education +459635,Education,Education +445655,Education,Education +445651,Education,Education +445649,Education,Education +445648,Education,Education +445647,Education,Education +429779,Education,Education +411980,Education,Education +411978,Education,Education +411976,Education,Education +411973,Education,Education +512571,Employment and Training,Employment and Training +510502,Employment and Training,Employment and Training +88059,Employment and Training,Employment and Training +88053,Employment and Training,Employment and Training +84658,Employment and Training,Employment and Training +82454,Employment and Training,Employment and Training +142846,Employment and Training,Employment and Training +199993,Employment and Training,Employment and Training +504258,Employment and Training,Employment and Training +504247,Employment and Training,Employment and Training +501320,Employment and Training,Employment and Training +501319,Employment and Training,Employment and Training +499781,Employment and Training,Employment and Training +497965,Employment and Training,Employment and Training +494644,Employment and Training,Employment and Training +486810,Employment and Training,Employment and Training +477028,Employment and Training,Employment and Training +473703,Employment and Training,Employment and Training +463688,Employment and Training,Employment and Training +463687,Employment and Training,Employment and Training +460149,Employment and Training,Employment and Training +460136,Employment and Training,Employment and Training +460102,Employment and Training,Employment and Training +531837,Employment and Training,Employment and Training +522205,Employment and Training,Employment and Training +460127,Energy,Energy +504242,Energy,Energy +116479,Energy,Energy +116476,Energy,Energy +116474,Energy,Energy +112354,Energy,Energy +112154,Energy,Energy +108618,Energy,Energy +108617,Energy,Energy +108614,Energy,Energy +103243,Energy,Energy +103241,Energy,Energy +159864,Energy,Energy +159849,Energy,Energy +159837,Energy,Energy +156381,Energy,Energy +154060,Energy,Energy +153004,Energy,Energy +153003,Energy,Energy +149155,Energy,Energy +149153,Energy,Energy +147499,Energy,Energy +147495,Energy,Energy +145499,Energy,Energy +145497,Energy,Energy +142857,Energy,Energy +137297,Energy,Energy +137295,Energy,Energy +131894,Energy,Energy +131621,Energy,Energy +131610,Energy,Energy +127455,Energy,Energy +124381,Energy,Energy +124378,Energy,Energy +120014,Energy,Energy +235689,Energy,Energy +172988,Energy,Energy +172985,Energy,Energy +172982,Energy,Energy +460159,Environment,Environment +460133,Environment,Environment +93347,Environment,Environment +90134,Environment,Environment +87849,Environment,Environment +116478,Environment,Environment +116477,Environment,Environment +116476,Environment,Environment +116475,Environment,Environment +116474,Environment,Environment +112354,Environment,Environment +108618,Environment,Environment +108617,Environment,Environment +100195,Environment,Environment +97220,Environment,Environment +97219,Environment,Environment +97218,Environment,Environment +172989,Environment,Environment +172988,Environment,Environment +172985,Environment,Environment +154060,Environment,Environment +153004,Environment,Environment +153003,Environment,Environment +151602,Environment,Environment +150039,Environment,Environment +149972,Environment,Environment +149971,Environment,Environment +149962,Environment,Environment +147499,Environment,Environment +147495,Environment,Environment +145499,Environment,Environment +145497,Environment,Environment +142857,Environment,Environment +137297,Environment,Environment +137295,Environment,Environment +131894,Environment,Environment +131621,Environment,Environment +131610,Environment,Environment +258832,Environment,Environment +541393,Environment,Environment +510531,Environment,Environment +510496,Environment,Environment +504195,Environment,Environment +501342,Environment,Environment +501320,Environment,Environment +497976,Environment,Environment +497963,Environment,Environment +480092,Health,Health +460125,Health,Health +100174,Health,Health +100164,Health,Health +100162,Health,Health +90131,Health,Health +90107,Health,Health +90106,Health,Health +90105,Health,Health +88065,Health,Health +87842,Health,Health +86816,Health,Health +86815,Health,Health +149148,Health,Health +149145,Health,Health +146329,Health,Health +146318,Health,Health +137297,Health,Health +131621,Health,Health +131613,Health,Health +131610,Health,Health +127455,Health,Health +127454,Health,Health +124381,Health,Health +124378,Health,Health +120014,Health,Health +112176,Health,Health +112175,Health,Health +112174,Health,Health +108595,Health,Health +108594,Health,Health +103254,Health,Health +103238,Health,Health +103235,Health,Health +103116,Health,Health +100971,Health,Health +100967,Health,Health +100964,Health,Health +100963,Health,Health +100960,Health,Health +100682,Health,Health +226729,Health,Health +224947,Health,Health +224211,Health,Health +222689,Health,Health +211667,Health,Health +211553,Health,Health +209869,Health,Health +209693,Health,Health +199993,Health,Health +197887,Health,Health +192899,Health,Health +192898,Health,Health +188629,Health,Health +188601,Health,Health +184244,Health,Health +176964,Health,Health +172991,Health,Health +172990,Health,Health +172988,Health,Health +172985,Health,Health +169935,Health,Health +167850,Health,Health +167395,Health,Health +164948,Health,Health +161745,Health,Health +159926,Health,Health +154060,Health,Health +153003,Health,Health +151601,Health,Health +151600,Health,Health +149972,Health,Health +149154,Health,Health +149152,Health,Health +149151,Health,Health +324649,Health,Health +312770,Health,Health +311066,Health,Health +311059,Health,Health +311057,Health,Health +296372,Health,Health +296371,Health,Health +268109,Health,Health +251863,Health,Health +233009,Health,Health +226730,Health,Health +538211,Health,Health +538206,Health,Health +538202,Health,Health +538200,Health,Health +538181,Health,Health +538177,Health,Health +535982,Health,Health +535068,Health,Health +535050,Health,Health +531837,Health,Health +525628,Health,Health +519638,Health,Health +519633,Health,Health +517258,Health,Health +517257,Health,Health +517249,Health,Health +512577,Health,Health +510544,Health,Health +510518,Health,Health +507224,Health,Health +507223,Health,Health +504205,Health,Health +494643,Health,Health +494625,Health,Health +486817,Health,Health +486807,Health,Health +484392,Health,Health +209869,Industry,Industry +172987,Industry,Industry +103262,Industry,Industry +103259,Industry,Industry +103243,Industry,Industry +90131,Industry,Industry +90106,Industry,Industry +90105,Industry,Industry +172982,Industry,Industry +156381,Industry,Industry +154060,Industry,Industry +149972,Industry,Industry +149155,Industry,Industry +149151,Industry,Industry +146329,Industry,Industry +146318,Industry,Industry +137297,Industry,Industry +124376,Industry,Industry +124375,Industry,Industry +124359,Industry,Industry +124355,Industry,Industry +120014,Industry,Industry +108617,Industry,Industry +108614,Industry,Industry +340389,Industry,Industry +340388,Industry,Industry +340387,Industry,Industry +494638,Infrastructure,Infrastructure +492320,Infrastructure,Infrastructure +93416,Infrastructure,Infrastructure +93347,Infrastructure,Infrastructure +92875,Infrastructure,Infrastructure +88065,Infrastructure,Infrastructure +87850,Infrastructure,Infrastructure +87842,Infrastructure,Infrastructure +86816,Infrastructure,Infrastructure +84656,Infrastructure,Infrastructure +84654,Infrastructure,Infrastructure +81079,Infrastructure,Infrastructure +79336,Infrastructure,Infrastructure +112155,Infrastructure,Infrastructure +112154,Infrastructure,Infrastructure +103262,Infrastructure,Infrastructure +103261,Infrastructure,Infrastructure +103258,Infrastructure,Infrastructure +103247,Infrastructure,Infrastructure +103244,Infrastructure,Infrastructure +103240,Infrastructure,Infrastructure +103238,Infrastructure,Infrastructure +103235,Infrastructure,Infrastructure +103234,Infrastructure,Infrastructure +100178,Infrastructure,Infrastructure +100176,Infrastructure,Infrastructure +100174,Infrastructure,Infrastructure +100164,Infrastructure,Infrastructure +100162,Infrastructure,Infrastructure +100160,Infrastructure,Infrastructure +97221,Infrastructure,Infrastructure +97177,Infrastructure,Infrastructure +156381,Infrastructure,Infrastructure +156374,Infrastructure,Infrastructure +156372,Infrastructure,Infrastructure +154086,Infrastructure,Infrastructure +154060,Infrastructure,Infrastructure +151602,Infrastructure,Infrastructure +150038,Infrastructure,Infrastructure +149972,Infrastructure,Infrastructure +149165,Infrastructure,Infrastructure +149155,Infrastructure,Infrastructure +149152,Infrastructure,Infrastructure +149151,Infrastructure,Infrastructure +149149,Infrastructure,Infrastructure +149148,Infrastructure,Infrastructure +149147,Infrastructure,Infrastructure +149146,Infrastructure,Infrastructure +149145,Infrastructure,Infrastructure +149144,Infrastructure,Infrastructure +149143,Infrastructure,Infrastructure +149142,Infrastructure,Infrastructure +142857,Infrastructure,Infrastructure +137298,Infrastructure,Infrastructure +137297,Infrastructure,Infrastructure +131621,Infrastructure,Infrastructure +131610,Infrastructure,Infrastructure +240009,Infrastructure,Infrastructure +176964,Infrastructure,Infrastructure +165455,Infrastructure,Infrastructure +165453,Infrastructure,Infrastructure +277261,Infrastructure,Infrastructure +264154,Infrastructure,Infrastructure +264152,Infrastructure,Infrastructure +244459,Infrastructure,Infrastructure +458865,Infrastructure,Infrastructure +383233,Infrastructure,Infrastructure +501353,Infrastructure,Infrastructure +497975,Infrastructure,Infrastructure +497973,Infrastructure,Infrastructure +496608,Infrastructure,Infrastructure +494656,Infrastructure,Infrastructure +264154,Intellectual Property,Intellectual Property +264152,Intellectual Property,Intellectual Property +486865,International Relations,International Relations +475166,International Relations,International Relations +131618,International Relations,International Relations +92877,International Relations,International Relations +172983,International Relations,International Relations +167850,International Relations,International Relations +159926,International Relations,International Relations +149150,International Relations,International Relations +149144,International Relations,International Relations +147505,International Relations,International Relations +311067,International Relations,International Relations +258832,International Relations,International Relations +199993,International Relations,International Relations +460137,International Relations,International Relations +439842,International Relations,International Relations +513998,International Relations,International Relations +512574,International Relations,International Relations +512572,International Relations,International Relations +510540,International Relations,International Relations +510533,International Relations,International Relations +510528,International Relations,International Relations +497984,International Relations,International Relations +497974,International Relations,International Relations +497967,International Relations,International Relations +494631,International Relations,International Relations +494630,International Relations,International Relations +494628,International Relations,International Relations +490734,International Relations,International Relations +490708,International Relations,International Relations +490696,International Relations,International Relations +490668,International Relations,International Relations +490664,International Relations,International Relations +490645,International Relations,International Relations +490644,International Relations,International Relations +490643,International Relations,International Relations +490641,International Relations,International Relations +490640,International Relations,International Relations +490637,International Relations,International Relations +490613,International Relations,International Relations +490606,International Relations,International Relations +487394,International Relations,International Relations +487392,International Relations,International Relations +206389,Mining,Mining +206388,Mining,Mining +131894,Mining,Mining +116474,Mining,Mining +108614,Mining,Mining +97218,Mining,Mining +159812,Mining,Mining +154060,Mining,Mining +149972,Mining,Mining +147499,Mining,Mining +147495,Mining,Mining +145499,Mining,Mining +142857,Mining,Mining +172982,Mining,Mining +340390,Mining,Mining +258832,Mining,Mining +235689,Mining,Mining +229569,Mining,Mining +149152,Regional Development,Regional Development +135558,Regional Development,Regional Development +497985,Regional Development,Regional Development +494641,Regional Development,Regional Development +477948,Agriculture,Agriculture +477920,Agriculture,Agriculture +102075,Agriculture,Agriculture +78196,Agriculture,Agriculture +78195,Agriculture,Agriculture +226485,Agriculture,Agriculture +220467,Agriculture,Agriculture +195844,Agriculture,Agriculture +191444,Agriculture,Agriculture +171824,Agriculture,Agriculture +171585,Agriculture,Agriculture +171465,Agriculture,Agriculture +171464,Agriculture,Agriculture +164829,Agriculture,Agriculture +164828,Agriculture,Agriculture +164827,Agriculture,Agriculture +155546,Agriculture,Agriculture +148209,Agriculture,Agriculture +148203,Agriculture,Agriculture +146237,Agriculture,Agriculture +351880,Agriculture,Agriculture +337096,Agriculture,Agriculture +332353,Agriculture,Agriculture +321651,Agriculture,Agriculture +314989,Agriculture,Agriculture +302932,Agriculture,Agriculture +302931,Agriculture,Agriculture +300709,Agriculture,Agriculture +270829,Agriculture,Agriculture +270811,Agriculture,Agriculture +270810,Agriculture,Agriculture +270809,Agriculture,Agriculture +232790,Agriculture,Agriculture +227493,Agriculture,Agriculture +227492,Agriculture,Agriculture +226492,Agriculture,Agriculture +426853,Agriculture,Agriculture +426851,Agriculture,Agriculture +426850,Agriculture,Agriculture +426849,Agriculture,Agriculture +426848,Agriculture,Agriculture +426847,Agriculture,Agriculture +424325,Agriculture,Agriculture +424323,Agriculture,Agriculture +424319,Agriculture,Agriculture +422245,Agriculture,Agriculture +417113,Agriculture,Agriculture +416545,Agriculture,Agriculture +416531,Agriculture,Agriculture +416529,Agriculture,Agriculture +416523,Agriculture,Agriculture +416268,Agriculture,Agriculture +416256,Agriculture,Agriculture +416235,Agriculture,Agriculture +412966,Agriculture,Agriculture +410384,Agriculture,Agriculture +406197,Agriculture,Agriculture +402242,Agriculture,Agriculture +402241,Agriculture,Agriculture +402239,Agriculture,Agriculture +401012,Agriculture,Agriculture +401010,Agriculture,Agriculture +401009,Agriculture,Agriculture +401008,Agriculture,Agriculture +401004,Agriculture,Agriculture +400999,Agriculture,Agriculture +397841,Agriculture,Agriculture +397688,Agriculture,Agriculture +392973,Agriculture,Agriculture +392972,Agriculture,Agriculture +386871,Agriculture,Agriculture +375337,Agriculture,Agriculture +375336,Agriculture,Agriculture +375334,Agriculture,Agriculture +475660,Agriculture,Agriculture +475642,Agriculture,Agriculture +475637,Agriculture,Agriculture +473921,Agriculture,Agriculture +473911,Agriculture,Agriculture +473454,Agriculture,Agriculture +473440,Agriculture,Agriculture +473403,Agriculture,Agriculture +470936,Agriculture,Agriculture +468365,Agriculture,Agriculture +468364,Agriculture,Agriculture +468363,Agriculture,Agriculture +468360,Agriculture,Agriculture +468358,Agriculture,Agriculture +468356,Agriculture,Agriculture +468350,Agriculture,Agriculture +468348,Agriculture,Agriculture +461794,Agriculture,Agriculture +461793,Agriculture,Agriculture +461792,Agriculture,Agriculture +461791,Agriculture,Agriculture +459882,Agriculture,Agriculture +456909,Agriculture,Agriculture +455015,Agriculture,Agriculture +455014,Agriculture,Agriculture +455013,Agriculture,Agriculture +455011,Agriculture,Agriculture +452976,Agriculture,Agriculture +452907,Agriculture,Agriculture +452906,Agriculture,Agriculture +452905,Agriculture,Agriculture +452900,Agriculture,Agriculture +452899,Agriculture,Agriculture +452896,Agriculture,Agriculture +452887,Agriculture,Agriculture +452886,Agriculture,Agriculture +452865,Agriculture,Agriculture +439763,Agriculture,Agriculture +439762,Agriculture,Agriculture +439761,Agriculture,Agriculture +439760,Agriculture,Agriculture +439754,Agriculture,Agriculture +439751,Agriculture,Agriculture +439750,Agriculture,Agriculture +439749,Agriculture,Agriculture +439748,Agriculture,Agriculture +431345,Agriculture,Agriculture +431344,Agriculture,Agriculture +431343,Agriculture,Agriculture +431342,Agriculture,Agriculture +544282,Agriculture,Agriculture +544280,Agriculture,Agriculture +543763,Agriculture,Agriculture +536983,Agriculture,Agriculture +533224,Agriculture,Agriculture +533201,Agriculture,Agriculture +533200,Agriculture,Agriculture +533199,Agriculture,Agriculture +533194,Agriculture,Agriculture +531832,Agriculture,Agriculture +527265,Agriculture,Agriculture +523895,Agriculture,Agriculture +518770,Agriculture,Agriculture +518458,Agriculture,Agriculture +510950,Agriculture,Agriculture +510931,Agriculture,Agriculture +510927,Agriculture,Agriculture +510924,Agriculture,Agriculture +510922,Agriculture,Agriculture +510918,Agriculture,Agriculture +510915,Agriculture,Agriculture +510913,Agriculture,Agriculture +510909,Agriculture,Agriculture +508197,Agriculture,Agriculture +508184,Agriculture,Agriculture +503723,Agriculture,Agriculture +503722,Agriculture,Agriculture +503720,Agriculture,Agriculture +503718,Agriculture,Agriculture +502386,Agriculture,Agriculture +502367,Agriculture,Agriculture +502365,Agriculture,Agriculture +498689,Agriculture,Agriculture +498688,Agriculture,Agriculture +498687,Agriculture,Agriculture +498685,Agriculture,Agriculture +498684,Agriculture,Agriculture +498683,Agriculture,Agriculture +496225,Agriculture,Agriculture +496224,Agriculture,Agriculture +496223,Agriculture,Agriculture +496222,Agriculture,Agriculture +492692,Agriculture,Agriculture +492691,Agriculture,Agriculture +492690,Agriculture,Agriculture +489129,Agriculture,Agriculture +489107,Agriculture,Agriculture +489104,Agriculture,Agriculture +486309,Agriculture,Agriculture +484532,Agriculture,Agriculture +477967,Agriculture,Agriculture +477963,Agriculture,Agriculture +452907,Education,Education +452886,Education,Education +171465,Education,Education +171464,Education,Education +164828,Education,Education +155546,Education,Education +148209,Education,Education +148203,Education,Education +148199,Education,Education +227492,Education,Education +226492,Education,Education +226485,Education,Education +195844,Education,Education +171824,Education,Education +171585,Education,Education +302931,Education,Education +300709,Education,Education +270829,Education,Education +270811,Education,Education +375337,Education,Education +351880,Education,Education +332353,Education,Education +314989,Education,Education +431345,Education,Education +431344,Education,Education +431343,Education,Education +431342,Education,Education +426853,Education,Education +426851,Education,Education +426850,Education,Education +426849,Education,Education +426847,Education,Education +424325,Education,Education +424323,Education,Education +424319,Education,Education +422245,Education,Education +416545,Education,Education +416531,Education,Education +416529,Education,Education +416523,Education,Education +412966,Education,Education +410384,Education,Education +544282,Education,Education +544280,Education,Education +543763,Education,Education +527265,Education,Education +523895,Education,Education +518770,Education,Education +518458,Education,Education +510950,Education,Education +510931,Education,Education +510927,Education,Education +510924,Education,Education +510922,Education,Education +510918,Education,Education +510915,Education,Education +510913,Education,Education +508197,Education,Education +508184,Education,Education +503723,Education,Education +503722,Education,Education +503720,Education,Education +503718,Education,Education +502386,Education,Education +502367,Education,Education +502365,Education,Education +498689,Education,Education +498688,Education,Education +498687,Education,Education +498685,Education,Education +498684,Education,Education +498683,Education,Education +496225,Education,Education +496224,Education,Education +496223,Education,Education +496222,Education,Education +492692,Education,Education +492691,Education,Education +492690,Education,Education +477963,Education,Education +477951,Education,Education +477948,Education,Education +477920,Education,Education +475660,Education,Education +475642,Education,Education +475637,Education,Education +468365,Education,Education +468364,Education,Education +468360,Education,Education +468358,Education,Education +468356,Education,Education +468350,Education,Education +468348,Education,Education +459882,Education,Education +455014,Education,Education +455013,Education,Education +455011,Education,Education +475660,Employment and Training,Employment and Training +475642,Employment and Training,Employment and Training +195844,Employment and Training,Employment and Training +191444,Employment and Training,Employment and Training +148209,Employment and Training,Employment and Training +148203,Employment and Training,Employment and Training +314989,Employment and Training,Employment and Training +302931,Employment and Training,Employment and Training +300709,Employment and Training,Employment and Training +270829,Employment and Training,Employment and Training +270811,Employment and Training,Employment and Training +270810,Employment and Training,Employment and Training +220467,Employment and Training,Employment and Training +468363,Employment and Training,Employment and Training +461794,Employment and Training,Employment and Training +461793,Employment and Training,Employment and Training +461792,Employment and Training,Employment and Training +461791,Employment and Training,Employment and Training +459882,Employment and Training,Employment and Training +455014,Employment and Training,Employment and Training +455013,Employment and Training,Employment and Training +455011,Employment and Training,Employment and Training +452906,Employment and Training,Employment and Training +452886,Employment and Training,Employment and Training +452865,Employment and Training,Employment and Training +424325,Employment and Training,Employment and Training +332353,Employment and Training,Employment and Training +533200,Employment and Training,Employment and Training +533199,Employment and Training,Employment and Training +503723,Employment and Training,Employment and Training +503722,Employment and Training,Employment and Training +503720,Employment and Training,Employment and Training +503718,Employment and Training,Employment and Training +502386,Employment and Training,Employment and Training +502367,Employment and Training,Employment and Training +498689,Employment and Training,Employment and Training +498688,Employment and Training,Employment and Training +498687,Employment and Training,Employment and Training +498684,Employment and Training,Employment and Training +496225,Employment and Training,Employment and Training +496224,Employment and Training,Employment and Training +496223,Employment and Training,Employment and Training +496222,Employment and Training,Employment and Training +492692,Employment and Training,Employment and Training +492691,Employment and Training,Employment and Training +492690,Employment and Training,Employment and Training +477967,Employment and Training,Employment and Training +477951,Employment and Training,Employment and Training +477948,Employment and Training,Employment and Training +498688,Environment,Environment +498685,Environment,Environment +195844,Environment,Environment +270811,Environment,Environment +468360,Environment,Environment +468358,Environment,Environment +468350,Environment,Environment +468348,Environment,Environment +426853,Environment,Environment +401008,Environment,Environment +533201,Environment,Environment +533194,Environment,Environment +518458,Environment,Environment +452896,Fisheries,Fisheries +416256,Fisheries,Fisheries +533224,Fisheries,Fisheries +518770,Fisheries,Fisheries +477963,Fisheries,Fisheries +473921,Fisheries,Fisheries +473911,Fisheries,Fisheries +473403,Fisheries,Fisheries +468365,Fisheries,Fisheries +468364,Fisheries,Fisheries +468363,Fisheries,Fisheries +468360,Fisheries,Fisheries +468358,Fisheries,Fisheries +468356,Fisheries,Fisheries +468350,Fisheries,Fisheries +468360,Health,Health +468358,Health,Health +375337,Health,Health +270811,Health,Health +270810,Health,Health +270809,Health,Health +468356,Health,Health +468350,Health,Health +468348,Health,Health +452905,Health,Health +452900,Health,Health +452899,Health,Health +452896,Health,Health +452887,Health,Health +416256,Health,Health +401012,Health,Health +392973,Health,Health +392972,Health,Health +386871,Health,Health +543763,Health,Health +536983,Health,Health +533224,Health,Health +533199,Health,Health +523895,Health,Health +510950,Health,Health +510931,Health,Health +510927,Health,Health +510924,Health,Health +510922,Health,Health +510918,Health,Health +510915,Health,Health +510913,Health,Health +508197,Health,Health +503722,Health,Health +503718,Health,Health +502386,Health,Health +502367,Health,Health +502365,Health,Health +498689,Health,Health +498688,Health,Health +498687,Health,Health +496225,Health,Health +496224,Health,Health +496223,Health,Health +496222,Health,Health +489126,Health,Health +489124,Health,Health +486309,Health,Health +484532,Health,Health +477963,Health,Health +477951,Health,Health +477948,Health,Health +477920,Health,Health +475660,Health,Health +475637,Health,Health +473921,Health,Health +473911,Health,Health +473454,Health,Health +473403,Health,Health +470936,Health,Health +468364,Health,Health +518458,Industry,Industry +498689,Industry,Industry +496223,Infrastructure,Infrastructure +496222,Infrastructure,Infrastructure +492692,Infrastructure,Infrastructure +492691,Infrastructure,Infrastructure +492690,Infrastructure,Infrastructure +489129,Infrastructure,Infrastructure +489124,Infrastructure,Infrastructure +489107,Infrastructure,Infrastructure +489104,Infrastructure,Infrastructure +486309,Infrastructure,Infrastructure +484532,Infrastructure,Infrastructure +477967,Infrastructure,Infrastructure +477963,Infrastructure,Infrastructure +477948,Infrastructure,Infrastructure +477920,Infrastructure,Infrastructure +475660,Infrastructure,Infrastructure +475642,Infrastructure,Infrastructure +473921,Infrastructure,Infrastructure +473911,Infrastructure,Infrastructure +473454,Infrastructure,Infrastructure +473403,Infrastructure,Infrastructure +470936,Infrastructure,Infrastructure +468365,Infrastructure,Infrastructure +468364,Infrastructure,Infrastructure +468363,Infrastructure,Infrastructure +468358,Infrastructure,Infrastructure +468356,Infrastructure,Infrastructure +452906,Infrastructure,Infrastructure +424325,Infrastructure,Infrastructure +543763,Infrastructure,Infrastructure +533201,Infrastructure,Infrastructure +533200,Infrastructure,Infrastructure +533199,Infrastructure,Infrastructure +533194,Infrastructure,Infrastructure +531832,Infrastructure,Infrastructure +523895,Infrastructure,Infrastructure +518770,Infrastructure,Infrastructure +510950,Infrastructure,Infrastructure +510931,Infrastructure,Infrastructure +510927,Infrastructure,Infrastructure +510924,Infrastructure,Infrastructure +510922,Infrastructure,Infrastructure +510918,Infrastructure,Infrastructure +510915,Infrastructure,Infrastructure +510913,Infrastructure,Infrastructure +508197,Infrastructure,Infrastructure +508184,Infrastructure,Infrastructure +503723,Infrastructure,Infrastructure +503722,Infrastructure,Infrastructure +503720,Infrastructure,Infrastructure +503718,Infrastructure,Infrastructure +502386,Infrastructure,Infrastructure +502367,Infrastructure,Infrastructure +502365,Infrastructure,Infrastructure +498689,Infrastructure,Infrastructure +498688,Infrastructure,Infrastructure +498687,Infrastructure,Infrastructure +498685,Infrastructure,Infrastructure +498684,Infrastructure,Infrastructure +498683,Infrastructure,Infrastructure +496225,Infrastructure,Infrastructure +148203,Intellectual Property,Intellectual Property +270811,Intellectual Property,Intellectual Property +416235,International Trade,International Trade +412966,International Trade,International Trade +220467,International Trade,International Trade +195844,International Trade,International Trade +518770,International Trade,International Trade +503722,International Trade,International Trade +489129,International Trade,International Trade +468363,International Trade,International Trade +456909,International Trade,International Trade +455014,International Trade,International Trade +431345,International Trade,International Trade +384643,Constitutional Issues,Constitutional Issues +383980,Constitutional Issues,Constitutional Issues +380690,Constitutional Issues,Constitutional Issues +380689,Constitutional Issues,Constitutional Issues +375764,Constitutional Issues,Constitutional Issues +151037,Internal Trade,Internal Trade +168872,Agriculture,Agriculture +168870,Agriculture,Agriculture +127554,Agriculture,Agriculture +124762,Agriculture,Agriculture +117619,Agriculture,Agriculture +105879,Agriculture,Agriculture +105878,Agriculture,Agriculture +97511,Agriculture,Agriculture +97510,Agriculture,Agriculture +85371,Agriculture,Agriculture +76056,Agriculture,Agriculture +159547,Agriculture,Agriculture +159546,Agriculture,Agriculture +159545,Agriculture,Agriculture +159544,Agriculture,Agriculture +159543,Agriculture,Agriculture +153442,Agriculture,Agriculture +150265,Agriculture,Agriculture +148139,Agriculture,Agriculture +142459,Agriculture,Agriculture +142458,Agriculture,Agriculture +129281,Agriculture,Agriculture +245572,Agriculture,Agriculture +241451,Agriculture,Agriculture +233781,Agriculture,Agriculture +223506,Agriculture,Agriculture +212445,Agriculture,Agriculture +196086,Agriculture,Agriculture +196085,Agriculture,Agriculture +196084,Agriculture,Agriculture +175374,Agriculture,Agriculture +127554,International Trade,International Trade +124762,International Trade,International Trade +85371,International Trade,International Trade +168870,International Trade,International Trade +153442,International Trade,International Trade +142459,International Trade,International Trade +142458,International Trade,International Trade +159544,Transportation,Transportation +159543,Transportation,Transportation +159547,Transportation,Transportation +159546,Transportation,Transportation +97506,Agriculture,Agriculture +97504,Agriculture,Agriculture +93514,Agriculture,Agriculture +88013,Agriculture,Agriculture +76050,Agriculture,Agriculture +148137,Agriculture,Agriculture +142450,Agriculture,Agriculture +142448,Agriculture,Agriculture +129279,Agriculture,Agriculture +129278,Agriculture,Agriculture +124760,Agriculture,Agriculture +276654,Agriculture,Agriculture +276654,Industry,Industry +331974,Internal Trade,Internal Trade +347903,International Trade,International Trade +296570,Consumer Issues,Consumer Issues +465693,Industry,Industry +421305,Intellectual Property,Intellectual Property +193743,International Trade,International Trade +200485,Justice and Law Enforcement,Justice and Law Enforcement +187468,Health,Health +479308,Environment,Environment +529765,Industry,Industry +383529,Infrastructure,Infrastructure +502557,International Trade,International Trade +319535,Taxation and Finance,Taxation and Finance +526540,Transportation,Transportation +540011,Education,Education +445216,Employment and Training,Employment and Training +484981,Environment,Environment +535580,Immigration,Immigration +335869,Industry,Industry +473597,Taxation and Finance,Taxation and Finance +162208,Other,"International Development," +126517,Other,PSE Funding +156376,Defence,Defence +156376,Industry,Industry +431867,Small Business,Small Business +494283,Industry,Industry +536618,Intellectual Property,Intellectual Property +423210,Intellectual Property,Intellectual Property +89716,Other,Official Languages +477280,Health,Health +77500,Health,Health +77510,Industry,Industry +77510,Intellectual Property,Intellectual Property +196105,Energy,Energy +80297,Employment and Training,Employment and Training +80297,Government Procurement,Government Procurement +80297,Justice and Law Enforcement,Justice and Law Enforcement +83130,Taxation and Finance,Taxation and Finance +83124,Taxation and Finance,Taxation and Finance +80614,Energy,Energy +80614,Environment,Environment +179364,Defence,Defence +138081,Government Procurement,Government Procurement +341829,International Relations,International Relations +341804,International Trade,International Trade +93704,Regional Development,Regional Development +97398,Small Business,Small Business +349890,Industry,Industry +349887,International Trade,International Trade +88101,Government Procurement,Government Procurement +206188,Education,Education +341609,Employment and Training,Employment and Training +82901,Taxation and Finance,Taxation and Finance +92894,Consumer Issues,Consumer Issues +231270,Financial Institutions,Financial Institutions +344007,Government Procurement,Government Procurement +382428,Health,Health +424898,Industry,Industry +410990,Intellectual Property,Intellectual Property +381398,Internal Trade,Internal Trade +107795,International Relations,International Relations +197365,International Trade,International Trade +260150,Labour,Labour +107795,Taxation and Finance,Taxation and Finance +530908,Transportation,Transportation +479010,Agriculture,Agriculture +406620,International Trade,International Trade +373941,Transportation,Transportation +543485,Consumer Issues,Consumer Issues +435390,Industry,Industry +432346,Intellectual Property,Intellectual Property +416331,International Trade,International Trade +479887,Justice and Law Enforcement,Justice and Law Enforcement +486864,Agriculture,Agriculture +224947,Defence,Defence +539766,Education,Education +512576,Employment and Training,Employment and Training +494630,Energy,Energy +497962,Environment,Environment +484364,Health,Health +538211,Immigration,Immigration +296371,Industry,Industry +494642,Infrastructure,Infrastructure +327508,Intellectual Property,Intellectual Property +486880,International Relations,International Relations +226911,Mining,Mining +490694,Regional Development,Regional Development +78974,Other,Veterinary Medicine +477951,Agriculture,Agriculture +452976,Education,Education +477920,Employment and Training,Employment and Training +510909,Environment,Environment +468348,Fisheries,Fisheries +468363,Health,Health +455015,Industry,Industry +496224,Infrastructure,Infrastructure +155546,Intellectual Property,Intellectual Property +155546,International Relations,International Relations +426848,International Trade,International Trade +371234,Constitutional Issues,Constitutional Issues +151037,Agriculture,Agriculture +156865,Internal Trade,Internal Trade +151037,Taxation and Finance,Taxation and Finance +168875,Agriculture,Agriculture +168870,Environment,Environment +129281,International Trade,International Trade +159545,Transportation,Transportation +105874,Agriculture,Agriculture +142450,International Trade,International Trade +129278,Transportation,Transportation +486895,Intellectual Property,Intellectual Property +164724,International Trade,International Trade +124758,Agriculture,Agriculture +117615,Agriculture,Agriculture +115894,Agriculture,Agriculture +114088,Agriculture,Agriculture +105875,Agriculture,Agriculture +115894,International Trade,International Trade +114088,International Trade,International Trade +486886,Intellectual Property,Intellectual Property +477508,Intellectual Property,Intellectual Property +128277,Intellectual Property,Intellectual Property +128276,Intellectual Property,Intellectual Property +123075,Intellectual Property,Intellectual Property +123074,Intellectual Property,Intellectual Property +77048,Intellectual Property,Intellectual Property +176628,Intellectual Property,Intellectual Property +175594,Intellectual Property,Intellectual Property +175593,Intellectual Property,Intellectual Property +175592,Intellectual Property,Intellectual Property +175591,Intellectual Property,Intellectual Property +175590,Intellectual Property,Intellectual Property +166404,Intellectual Property,Intellectual Property +163918,Intellectual Property,Intellectual Property +161278,Intellectual Property,Intellectual Property +161276,Intellectual Property,Intellectual Property +161269,Intellectual Property,Intellectual Property +161265,Intellectual Property,Intellectual Property +156988,Intellectual Property,Intellectual Property +156987,Intellectual Property,Intellectual Property +154206,Intellectual Property,Intellectual Property +151939,Intellectual Property,Intellectual Property +150335,Intellectual Property,Intellectual Property +150334,Intellectual Property,Intellectual Property +150332,Intellectual Property,Intellectual Property +146675,Intellectual Property,Intellectual Property +359916,Intellectual Property,Intellectual Property +265019,Intellectual Property,Intellectual Property +200316,Intellectual Property,Intellectual Property +200314,Intellectual Property,Intellectual Property +193986,Intellectual Property,Intellectual Property +193984,Intellectual Property,Intellectual Property +193981,Intellectual Property,Intellectual Property +188923,Intellectual Property,Intellectual Property +185995,Intellectual Property,Intellectual Property +185994,Intellectual Property,Intellectual Property +185993,Intellectual Property,Intellectual Property +450066,Intellectual Property,Intellectual Property +432324,Intellectual Property,Intellectual Property +429374,Intellectual Property,Intellectual Property +426234,Intellectual Property,Intellectual Property +381057,Intellectual Property,Intellectual Property +501273,Intellectual Property,Intellectual Property +501272,Intellectual Property,Intellectual Property +498651,Intellectual Property,Intellectual Property +498612,Intellectual Property,Intellectual Property +491141,Intellectual Property,Intellectual Property +491139,Intellectual Property,Intellectual Property +486899,Intellectual Property,Intellectual Property +75814,International Trade,International Trade +75815,Mining,Mining +75814,Mining,Mining +117215,Consumer Issues,Consumer Issues +117215,Health,Health +460905,Agriculture,Agriculture +459884,Agriculture,Agriculture +91814,Agriculture,Agriculture +91797,Agriculture,Agriculture +190824,Agriculture,Agriculture +173368,Agriculture,Agriculture +169043,Agriculture,Agriculture +150263,Agriculture,Agriculture +150261,Agriculture,Agriculture +239958,Agriculture,Agriculture +239955,Agriculture,Agriculture +239929,Agriculture,Agriculture +227331,Agriculture,Agriculture +227312,Agriculture,Agriculture +214207,Agriculture,Agriculture +214187,Agriculture,Agriculture +213267,Agriculture,Agriculture +196184,Agriculture,Agriculture +381736,Agriculture,Agriculture +381735,Agriculture,Agriculture +376950,Agriculture,Agriculture +376947,Agriculture,Agriculture +370200,Agriculture,Agriculture +364702,Agriculture,Agriculture +353926,Agriculture,Agriculture +347204,Agriculture,Agriculture +325002,Agriculture,Agriculture +324999,Agriculture,Agriculture +324998,Agriculture,Agriculture +316046,Agriculture,Agriculture +316044,Agriculture,Agriculture +316042,Agriculture,Agriculture +316037,Agriculture,Agriculture +295813,Agriculture,Agriculture +287489,Agriculture,Agriculture +433310,Agriculture,Agriculture +420065,Agriculture,Agriculture +420064,Agriculture,Agriculture +400815,Agriculture,Agriculture +400809,Agriculture,Agriculture +400803,Agriculture,Agriculture +400801,Agriculture,Agriculture +395190,Agriculture,Agriculture +392461,Agriculture,Agriculture +391850,Agriculture,Agriculture +391849,Agriculture,Agriculture +389115,Agriculture,Agriculture +388723,Agriculture,Agriculture +388722,Agriculture,Agriculture +388721,Agriculture,Agriculture +388719,Agriculture,Agriculture +388718,Agriculture,Agriculture +387150,Agriculture,Agriculture +383067,Agriculture,Agriculture +382803,Agriculture,Agriculture +382802,Agriculture,Agriculture +476377,Agriculture,Agriculture +474227,Agriculture,Agriculture +474226,Agriculture,Agriculture +474225,Agriculture,Agriculture +465517,Agriculture,Agriculture +465248,Agriculture,Agriculture +465247,Agriculture,Agriculture +239929,Intellectual Property,Intellectual Property +227312,Intellectual Property,Intellectual Property +169043,Intellectual Property,Intellectual Property +150263,Intellectual Property,Intellectual Property +136574,Intellectual Property,Intellectual Property +91797,Intellectual Property,Intellectual Property +91797,International Relations,International Relations +376947,International Trade,International Trade +214187,International Trade,International Trade +91814,International Trade,International Trade +433310,International Trade,International Trade +420067,International Trade,International Trade +420066,International Trade,International Trade +389115,International Trade,International Trade +388723,International Trade,International Trade +388722,International Trade,International Trade +388721,International Trade,International Trade +388719,International Trade,International Trade +388718,International Trade,International Trade +387150,International Trade,International Trade +383067,International Trade,International Trade +382803,International Trade,International Trade +382802,International Trade,International Trade +519688,Agriculture,Agriculture +519684,Agriculture,Agriculture +76900,Agriculture,Agriculture +510571,Agriculture,Agriculture +508235,Agriculture,Agriculture +505245,Agriculture,Agriculture +467823,Agriculture,Agriculture +467798,Agriculture,Agriculture +467790,Agriculture,Agriculture +467210,Agriculture,Agriculture +467206,Agriculture,Agriculture +462249,Agriculture,Agriculture +421185,Agriculture,Agriculture +392326,Agriculture,Agriculture +385435,Agriculture,Agriculture +539148,Agriculture,Agriculture +537837,Agriculture,Agriculture +534743,Agriculture,Agriculture +534742,Agriculture,Agriculture +534737,Agriculture,Agriculture +534671,Agriculture,Agriculture +534667,Agriculture,Agriculture +531543,Agriculture,Agriculture +531537,Agriculture,Agriculture +529094,Agriculture,Agriculture +529062,Agriculture,Agriculture +525709,Agriculture,Agriculture +525702,Agriculture,Agriculture +525656,Agriculture,Agriculture +333118,Consumer Issues,Consumer Issues +330513,Consumer Issues,Consumer Issues +172204,Consumer Issues,Consumer Issues +378661,Consumer Issues,Consumer Issues +531538,Defence,Defence +531537,Defence,Defence +529071,Defence,Defence +529062,Defence,Defence +525642,Defence,Defence +519696,Defence,Defence +426372,Energy,Energy +426370,Energy,Energy +94158,Energy,Energy +211128,Energy,Energy +206194,Energy,Energy +190863,Energy,Energy +176064,Energy,Energy +172750,Energy,Energy +165446,Energy,Energy +163432,Energy,Energy +162402,Energy,Energy +159002,Energy,Energy +152089,Energy,Energy +142040,Energy,Energy +317553,Energy,Energy +314391,Energy,Energy +314133,Energy,Energy +305310,Energy,Energy +293214,Energy,Energy +288431,Energy,Energy +283889,Energy,Energy +264269,Energy,Energy +262210,Energy,Energy +259352,Energy,Energy +259350,Energy,Energy +259349,Energy,Energy +259332,Energy,Energy +256172,Energy,Energy +246569,Energy,Energy +230335,Energy,Energy +227930,Energy,Energy +224669,Energy,Energy +421185,Energy,Energy +407474,Energy,Energy +405238,Energy,Energy +395119,Energy,Energy +389204,Energy,Energy +387149,Energy,Energy +385398,Energy,Energy +381576,Energy,Energy +378638,Energy,Energy +378637,Energy,Energy +378631,Energy,Energy +376143,Energy,Energy +376137,Energy,Energy +370726,Energy,Energy +366083,Energy,Energy +345598,Energy,Energy +344822,Energy,Energy +337130,Energy,Energy +326554,Energy,Energy +324755,Energy,Energy +323230,Energy,Energy +537851,Energy,Energy +534755,Energy,Energy +534751,Energy,Energy +534748,Energy,Energy +534746,Energy,Energy +534671,Energy,Energy +534667,Energy,Energy +534664,Energy,Energy +531538,Energy,Energy +531537,Energy,Energy +531506,Energy,Energy +529078,Energy,Energy +529071,Energy,Energy +529062,Energy,Energy +525656,Energy,Energy +525642,Energy,Energy +519696,Energy,Energy +517763,Energy,Energy +510626,Energy,Energy +510593,Energy,Energy +505268,Energy,Energy +505261,Energy,Energy +490647,Energy,Energy +490474,Energy,Energy +490466,Energy,Energy +490453,Energy,Energy +490442,Energy,Energy +485291,Energy,Energy +485287,Energy,Energy +476455,Energy,Energy +476034,Energy,Energy +470175,Energy,Energy +469158,Energy,Energy +463031,Energy,Energy +462342,Energy,Energy +462336,Energy,Energy +462263,Energy,Energy +462249,Energy,Energy +457118,Energy,Energy +450862,Energy,Energy +450860,Energy,Energy +445692,Energy,Energy +444749,Energy,Energy +440692,Energy,Energy +439529,Energy,Energy +439526,Energy,Energy +439499,Energy,Energy +434743,Energy,Energy +434691,Energy,Energy +432871,Energy,Energy +431697,Energy,Energy +429511,Energy,Energy +429508,Energy,Energy +428095,Energy,Energy +428092,Energy,Energy +428081,Energy,Energy +428076,Energy,Energy +428074,Energy,Energy +427781,Energy,Energy +427774,Energy,Energy +512766,Environment,Environment +510593,Environment,Environment +94158,Environment,Environment +378638,Environment,Environment +378637,Environment,Environment +378631,Environment,Environment +376145,Environment,Environment +376137,Environment,Environment +370990,Environment,Environment +370726,Environment,Environment +366083,Environment,Environment +324755,Environment,Environment +323230,Environment,Environment +317553,Environment,Environment +305310,Environment,Environment +293214,Environment,Environment +288431,Environment,Environment +283889,Environment,Environment +246569,Environment,Environment +230335,Environment,Environment +227930,Environment,Environment +224669,Environment,Environment +211128,Environment,Environment +206194,Environment,Environment +172750,Environment,Environment +172744,Environment,Environment +159002,Environment,Environment +158316,Environment,Environment +508235,Environment,Environment +505268,Environment,Environment +505242,Environment,Environment +505237,Environment,Environment +501879,Environment,Environment +501825,Environment,Environment +498474,Environment,Environment +498427,Environment,Environment +495447,Environment,Environment +493183,Environment,Environment +493174,Environment,Environment +490647,Environment,Environment +490474,Environment,Environment +490467,Environment,Environment +490466,Environment,Environment +490453,Environment,Environment +490442,Environment,Environment +487487,Environment,Environment +472526,Environment,Environment +472522,Environment,Environment +469158,Environment,Environment +467833,Environment,Environment +467805,Environment,Environment +467210,Environment,Environment +463063,Environment,Environment +463031,Environment,Environment +462342,Environment,Environment +462336,Environment,Environment +462263,Environment,Environment +457118,Environment,Environment +453852,Environment,Environment +450862,Environment,Environment +450861,Environment,Environment +450860,Environment,Environment +450859,Environment,Environment +447235,Environment,Environment +447220,Environment,Environment +445692,Environment,Environment +444749,Environment,Environment +441523,Environment,Environment +441520,Environment,Environment +440694,Environment,Environment +440692,Environment,Environment +439532,Environment,Environment +439531,Environment,Environment +439499,Environment,Environment +434743,Environment,Environment +434691,Environment,Environment +432871,Environment,Environment +431697,Environment,Environment +423294,Environment,Environment +421201,Environment,Environment +421200,Environment,Environment +421198,Environment,Environment +421195,Environment,Environment +421185,Environment,Environment +407517,Environment,Environment +407474,Environment,Environment +406481,Environment,Environment +406169,Environment,Environment +405238,Environment,Environment +531538,Environment,Environment +531537,Environment,Environment +529094,Environment,Environment +529078,Environment,Environment +529069,Environment,Environment +529066,Environment,Environment +529062,Environment,Environment +529057,Environment,Environment +525656,Environment,Environment +525642,Environment,Environment +522532,Environment,Environment +519737,Environment,Environment +519724,Environment,Environment +519690,Environment,Environment +519688,Environment,Environment +519684,Environment,Environment +517763,Environment,Environment +453818,Financial Institutions,Financial Institutions +525642,Financial Institutions,Financial Institutions +142040,Financial Institutions,Financial Institutions +80458,Financial Institutions,Financial Institutions +156829,Financial Institutions,Financial Institutions +361884,Financial Institutions,Financial Institutions +337131,Financial Institutions,Financial Institutions +416559,Employment and Training,Employment and Training +416543,Employment and Training,Employment and Training +139135,Employment and Training,Employment and Training +290750,Employment and Training,Employment and Training +286873,Employment and Training,Employment and Training +239869,Employment and Training,Employment and Training +228896,Employment and Training,Employment and Training +228894,Employment and Training,Employment and Training +228893,Employment and Training,Employment and Training +228891,Employment and Training,Employment and Training +218207,Employment and Training,Employment and Training +218189,Employment and Training,Employment and Training +218188,Employment and Training,Employment and Training +218187,Employment and Training,Employment and Training +409959,Employment and Training,Employment and Training +409958,Employment and Training,Employment and Training +408202,Employment and Training,Employment and Training +405721,Employment and Training,Employment and Training +393897,Employment and Training,Employment and Training +393896,Employment and Training,Employment and Training +393895,Employment and Training,Employment and Training +393894,Employment and Training,Employment and Training +388090,Employment and Training,Employment and Training +374703,Employment and Training,Employment and Training +371280,Employment and Training,Employment and Training +371256,Employment and Training,Employment and Training +365306,Employment and Training,Employment and Training +351332,Employment and Training,Employment and Training +324782,Employment and Training,Employment and Training +324779,Employment and Training,Employment and Training +319329,Employment and Training,Employment and Training +480168,Employment and Training,Employment and Training +476001,Employment and Training,Employment and Training +469902,Employment and Training,Employment and Training +469899,Employment and Training,Employment and Training +469894,Employment and Training,Employment and Training +466971,Employment and Training,Employment and Training +436033,Energy,Energy +436031,Energy,Energy +199855,Energy,Energy +194824,Energy,Energy +194821,Energy,Energy +194818,Energy,Energy +194814,Energy,Energy +194813,Energy,Energy +194812,Energy,Energy +358212,Energy,Energy +358204,Energy,Energy +358182,Energy,Energy +351334,Energy,Energy +351333,Energy,Energy +348849,Energy,Energy +348848,Energy,Energy +348847,Energy,Energy +338753,Energy,Energy +335209,Energy,Energy +331325,Energy,Energy +331324,Energy,Energy +330036,Energy,Energy +327909,Energy,Energy +324783,Energy,Energy +324781,Energy,Energy +322206,Energy,Energy +322205,Energy,Energy +322203,Energy,Energy +316075,Energy,Energy +296211,Energy,Energy +290749,Energy,Energy +286875,Energy,Energy +277398,Energy,Energy +277395,Energy,Energy +273707,Energy,Energy +269336,Energy,Energy +269333,Energy,Energy +269331,Energy,Energy +269330,Energy,Energy +269329,Energy,Energy +269310,Energy,Energy +263418,Energy,Energy +263416,Energy,Energy +258513,Energy,Energy +257370,Energy,Energy +250091,Energy,Energy +218207,Energy,Energy +218187,Energy,Energy +206969,Energy,Energy +433448,Energy,Energy +429472,Energy,Energy +429469,Energy,Energy +426811,Energy,Energy +426809,Energy,Energy +426808,Energy,Energy +424422,Energy,Energy +421735,Energy,Energy +417816,Energy,Energy +416603,Energy,Energy +416601,Energy,Energy +416599,Energy,Energy +416598,Energy,Energy +416597,Energy,Energy +416596,Energy,Energy +416593,Energy,Energy +416591,Energy,Energy +416588,Energy,Energy +416587,Energy,Energy +416582,Energy,Energy +416578,Energy,Energy +416576,Energy,Energy +416571,Energy,Energy +416567,Energy,Energy +416564,Energy,Energy +416559,Energy,Energy +416550,Energy,Energy +416548,Energy,Energy +416547,Energy,Energy +416543,Energy,Energy +416540,Energy,Energy +416537,Energy,Energy +416536,Energy,Energy +413281,Energy,Energy +409958,Energy,Energy +409957,Energy,Energy +408202,Energy,Energy +408201,Energy,Energy +408199,Energy,Energy +408197,Energy,Energy +405721,Energy,Energy +400120,Energy,Energy +393897,Energy,Energy +393896,Energy,Energy +393895,Energy,Energy +393894,Energy,Energy +391879,Energy,Energy +388100,Energy,Energy +388094,Energy,Energy +388090,Energy,Energy +388086,Energy,Energy +388083,Energy,Energy +383013,Energy,Energy +382368,Energy,Energy +382367,Energy,Energy +381640,Energy,Energy +381639,Energy,Energy +379029,Energy,Energy +379028,Energy,Energy +379026,Energy,Energy +379025,Energy,Energy +379024,Energy,Energy +379022,Energy,Energy +379021,Energy,Energy +379020,Energy,Energy +379019,Energy,Energy +379018,Energy,Energy +379017,Energy,Energy +379016,Energy,Energy +379014,Energy,Energy +379012,Energy,Energy +379010,Energy,Energy +379009,Energy,Energy +379008,Energy,Energy +379006,Energy,Energy +379000,Energy,Energy +378996,Energy,Energy +377024,Energy,Energy +374703,Energy,Energy +372243,Energy,Energy +372241,Energy,Energy +372239,Energy,Energy +372234,Energy,Energy +372224,Energy,Energy +371280,Energy,Energy +371278,Energy,Energy +371277,Energy,Energy +371275,Energy,Energy +371272,Energy,Energy +371266,Energy,Energy +371262,Energy,Energy +371256,Energy,Energy +369268,Energy,Energy +365311,Energy,Energy +365308,Energy,Energy +536709,Energy,Energy +536708,Energy,Energy +536707,Energy,Energy +536706,Energy,Energy +536705,Energy,Energy +536704,Energy,Energy +536703,Energy,Energy +536702,Energy,Energy +499535,Energy,Energy +493309,Energy,Energy +491613,Energy,Energy +482538,Energy,Energy +480167,Energy,Energy +480166,Energy,Energy +477549,Energy,Energy +476001,Energy,Energy +475995,Energy,Energy +473747,Energy,Energy +473746,Energy,Energy +473743,Energy,Energy +469902,Energy,Energy +469901,Energy,Energy +469899,Energy,Energy +469898,Energy,Energy +469894,Energy,Energy +469892,Energy,Energy +466971,Energy,Energy +466969,Energy,Energy +465125,Energy,Energy +462813,Energy,Energy +462811,Energy,Energy +462809,Energy,Energy +452374,Energy,Energy +450051,Energy,Energy +450049,Energy,Energy +450045,Energy,Energy +450044,Energy,Energy +450043,Energy,Energy +447874,Energy,Energy +447873,Energy,Energy +445588,Energy,Energy +445587,Energy,Energy +445584,Energy,Energy +445582,Energy,Energy +445581,Energy,Energy +445579,Energy,Energy +445578,Energy,Energy +443996,Energy,Energy +443995,Energy,Energy +443994,Energy,Energy +443993,Energy,Energy +443992,Energy,Energy +443989,Energy,Energy +443987,Energy,Energy +443985,Energy,Energy +443984,Energy,Energy +443983,Energy,Energy +443982,Energy,Energy +443980,Energy,Energy +443979,Energy,Energy +443978,Energy,Energy +443977,Energy,Energy +443976,Energy,Energy +443975,Energy,Energy +443974,Energy,Energy +443972,Energy,Energy +443971,Energy,Energy +443970,Energy,Energy +443969,Energy,Energy +443968,Energy,Energy +443966,Energy,Energy +443964,Energy,Energy +443962,Energy,Energy +443960,Energy,Energy +443957,Energy,Energy +442862,Energy,Energy +442861,Energy,Energy +442860,Energy,Energy +439615,Energy,Energy +439614,Energy,Energy +439613,Energy,Energy +439612,Energy,Energy +436040,Energy,Energy +377024,Environment,Environment +374703,Environment,Environment +258513,Environment,Environment +250091,Environment,Environment +218207,Environment,Environment +218187,Environment,Environment +372224,Environment,Environment +371280,Environment,Environment +371278,Environment,Environment +371266,Environment,Environment +371256,Environment,Environment +369268,Environment,Environment +348848,Environment,Environment +335209,Environment,Environment +331324,Environment,Environment +316075,Environment,Environment +296211,Environment,Environment +277398,Environment,Environment +277395,Environment,Environment +475995,Environment,Environment +473747,Environment,Environment +469899,Environment,Environment +469894,Environment,Environment +450051,Environment,Environment +450049,Environment,Environment +450045,Environment,Environment +450044,Environment,Environment +450043,Environment,Environment +445588,Environment,Environment +445587,Environment,Environment +445584,Environment,Environment +445582,Environment,Environment +445581,Environment,Environment +445578,Environment,Environment +443980,Environment,Environment +443979,Environment,Environment +442862,Environment,Environment +442861,Environment,Environment +442860,Environment,Environment +416603,Environment,Environment +416601,Environment,Environment +416599,Environment,Environment +416598,Environment,Environment +416597,Environment,Environment +416596,Environment,Environment +416593,Environment,Environment +416591,Environment,Environment +416588,Environment,Environment +416587,Environment,Environment +416582,Environment,Environment +416578,Environment,Environment +416576,Environment,Environment +416571,Environment,Environment +416567,Environment,Environment +416564,Environment,Environment +416559,Environment,Environment +416550,Environment,Environment +416548,Environment,Environment +416547,Environment,Environment +416543,Environment,Environment +416540,Environment,Environment +416537,Environment,Environment +416536,Environment,Environment +413281,Environment,Environment +409958,Environment,Environment +391879,Environment,Environment +383013,Environment,Environment +381639,Environment,Environment +379029,Environment,Environment +379028,Environment,Environment +379026,Environment,Environment +379025,Environment,Environment +379022,Environment,Environment +379021,Environment,Environment +379020,Environment,Environment +379019,Environment,Environment +379018,Environment,Environment +379017,Environment,Environment +379016,Environment,Environment +379014,Environment,Environment +379012,Environment,Environment +379010,Environment,Environment +379009,Environment,Environment +379008,Environment,Environment +379006,Environment,Environment +194818,Immigration,Immigration +405721,Immigration,Immigration +296178,Immigration,Immigration +296177,Immigration,Immigration +286873,Immigration,Immigration +277391,Immigration,Immigration +269309,Immigration,Immigration +263423,Immigration,Immigration +263416,Immigration,Immigration +257370,Immigration,Immigration +239869,Immigration,Immigration +228896,Immigration,Immigration +228894,Immigration,Immigration +228893,Immigration,Immigration +228891,Immigration,Immigration +223429,Immigration,Immigration +223427,Immigration,Immigration +218207,Immigration,Immigration +218189,Immigration,Immigration +218188,Immigration,Immigration +218187,Immigration,Immigration +417816,Industry,Industry +417812,Industry,Industry +322206,Industry,Industry +322205,Industry,Industry +322203,Industry,Industry +316075,Industry,Industry +313147,Industry,Industry +313146,Industry,Industry +313145,Industry,Industry +313144,Industry,Industry +313141,Industry,Industry +313140,Industry,Industry +310694,Industry,Industry +296211,Industry,Industry +290749,Industry,Industry +286875,Industry,Industry +277398,Industry,Industry +277395,Industry,Industry +273707,Industry,Industry +269336,Industry,Industry +269333,Industry,Industry +269331,Industry,Industry +269330,Industry,Industry +269329,Industry,Industry +269310,Industry,Industry +263418,Industry,Industry +263416,Industry,Industry +258513,Industry,Industry +257370,Industry,Industry +239869,Industry,Industry +228896,Industry,Industry +228894,Industry,Industry +228893,Industry,Industry +228891,Industry,Industry +218207,Industry,Industry +218190,Industry,Industry +218187,Industry,Industry +206969,Industry,Industry +416603,Industry,Industry +416601,Industry,Industry +416599,Industry,Industry +416598,Industry,Industry +416597,Industry,Industry +416596,Industry,Industry +416593,Industry,Industry +416591,Industry,Industry +416588,Industry,Industry +416587,Industry,Industry +416582,Industry,Industry +416578,Industry,Industry +416576,Industry,Industry +416571,Industry,Industry +416567,Industry,Industry +416564,Industry,Industry +416559,Industry,Industry +416550,Industry,Industry +416548,Industry,Industry +416547,Industry,Industry +416543,Industry,Industry +416540,Industry,Industry +416537,Industry,Industry +416536,Industry,Industry +413520,Industry,Industry +413517,Industry,Industry +413513,Industry,Industry +413285,Industry,Industry +413284,Industry,Industry +413281,Industry,Industry +409958,Industry,Industry +408202,Industry,Industry +408201,Industry,Industry +408199,Industry,Industry +408197,Industry,Industry +405721,Industry,Industry +400120,Industry,Industry +393897,Industry,Industry +393896,Industry,Industry +393895,Industry,Industry +393894,Industry,Industry +391879,Industry,Industry +388100,Industry,Industry +388094,Industry,Industry +388090,Industry,Industry +388086,Industry,Industry +388083,Industry,Industry +388078,Industry,Industry +383013,Industry,Industry +382368,Industry,Industry +382367,Industry,Industry +382366,Industry,Industry +381640,Industry,Industry +379029,Industry,Industry +379028,Industry,Industry +379026,Industry,Industry +379025,Industry,Industry +379024,Industry,Industry +379022,Industry,Industry +379021,Industry,Industry +379020,Industry,Industry +379019,Industry,Industry +379018,Industry,Industry +379017,Industry,Industry +379016,Industry,Industry +379014,Industry,Industry +379012,Industry,Industry +379010,Industry,Industry +379009,Industry,Industry +379008,Industry,Industry +379006,Industry,Industry +379000,Industry,Industry +378997,Industry,Industry +378996,Industry,Industry +377024,Industry,Industry +374703,Industry,Industry +372243,Industry,Industry +372241,Industry,Industry +372239,Industry,Industry +372234,Industry,Industry +372224,Industry,Industry +371280,Industry,Industry +371278,Industry,Industry +371277,Industry,Industry +371275,Industry,Industry +371272,Industry,Industry +371266,Industry,Industry +371262,Industry,Industry +371256,Industry,Industry +369271,Industry,Industry +369268,Industry,Industry +365311,Industry,Industry +365308,Industry,Industry +358212,Industry,Industry +358204,Industry,Industry +351334,Industry,Industry +351333,Industry,Industry +348849,Industry,Industry +348848,Industry,Industry +348847,Industry,Industry +343774,Industry,Industry +338753,Industry,Industry +335209,Industry,Industry +331325,Industry,Industry +331324,Industry,Industry +330036,Industry,Industry +327909,Industry,Industry +324783,Industry,Industry +324781,Industry,Industry +499535,Industry,Industry +493309,Industry,Industry +491613,Industry,Industry +483417,Industry,Industry +482538,Industry,Industry +480168,Industry,Industry +480167,Industry,Industry +480166,Industry,Industry +477549,Industry,Industry +476001,Industry,Industry +475995,Industry,Industry +473747,Industry,Industry +469902,Industry,Industry +469901,Industry,Industry +469899,Industry,Industry +469894,Industry,Industry +469892,Industry,Industry +466971,Industry,Industry +466969,Industry,Industry +462813,Industry,Industry +462811,Industry,Industry +462809,Industry,Industry +452374,Industry,Industry +450051,Industry,Industry +450049,Industry,Industry +450045,Industry,Industry +450044,Industry,Industry +450043,Industry,Industry +445588,Industry,Industry +445587,Industry,Industry +445584,Industry,Industry +445582,Industry,Industry +445581,Industry,Industry +445579,Industry,Industry +445578,Industry,Industry +443996,Industry,Industry +443995,Industry,Industry +443994,Industry,Industry +443993,Industry,Industry +443992,Industry,Industry +443989,Industry,Industry +443987,Industry,Industry +443985,Industry,Industry +443984,Industry,Industry +443983,Industry,Industry +443982,Industry,Industry +443980,Industry,Industry +443979,Industry,Industry +443978,Industry,Industry +443977,Industry,Industry +443976,Industry,Industry +443975,Industry,Industry +443974,Industry,Industry +443972,Industry,Industry +443971,Industry,Industry +443970,Industry,Industry +443969,Industry,Industry +443968,Industry,Industry +443966,Industry,Industry +443964,Industry,Industry +443962,Industry,Industry +443960,Industry,Industry +443957,Industry,Industry +442862,Industry,Industry +442861,Industry,Industry +439615,Industry,Industry +439614,Industry,Industry +439613,Industry,Industry +439612,Industry,Industry +439599,Industry,Industry +436040,Industry,Industry +436037,Industry,Industry +436033,Industry,Industry +436031,Industry,Industry +433448,Industry,Industry +429472,Industry,Industry +429469,Industry,Industry +426811,Industry,Industry +426809,Industry,Industry +426808,Industry,Industry +424422,Industry,Industry +445587,Labour,Labour +445578,Labour,Labour +228894,Labour,Labour +228893,Labour,Labour +228891,Labour,Labour +223442,Labour,Labour +223429,Labour,Labour +223427,Labour,Labour +218207,Labour,Labour +218190,Labour,Labour +218189,Labour,Labour +218188,Labour,Labour +218187,Labour,Labour +211949,Labour,Labour +206970,Labour,Labour +206969,Labour,Labour +199855,Labour,Labour +194824,Labour,Labour +194821,Labour,Labour +194818,Labour,Labour +194814,Labour,Labour +194812,Labour,Labour +372224,Labour,Labour +371280,Labour,Labour +371278,Labour,Labour +371266,Labour,Labour +371256,Labour,Labour +365306,Labour,Labour +354108,Labour,Labour +348849,Labour,Labour +335209,Labour,Labour +330036,Labour,Labour +324782,Labour,Labour +324779,Labour,Labour +322204,Labour,Labour +319329,Labour,Labour +313146,Labour,Labour +313141,Labour,Labour +296178,Labour,Labour +296177,Labour,Labour +290750,Labour,Labour +286875,Labour,Labour +286873,Labour,Labour +277391,Labour,Labour +273707,Labour,Labour +269309,Labour,Labour +263423,Labour,Labour +263416,Labour,Labour +257371,Labour,Labour +257370,Labour,Labour +257349,Labour,Labour +253949,Labour,Labour +239869,Labour,Labour +233615,Labour,Labour +233614,Labour,Labour +228896,Labour,Labour +416559,Labour,Labour +409959,Labour,Labour +409958,Labour,Labour +408202,Labour,Labour +405721,Labour,Labour +393897,Labour,Labour +393896,Labour,Labour +393895,Labour,Labour +393894,Labour,Labour +391879,Labour,Labour +388100,Labour,Labour +388094,Labour,Labour +388090,Labour,Labour +388086,Labour,Labour +388083,Labour,Labour +388078,Labour,Labour +383013,Labour,Labour +382366,Labour,Labour +379029,Labour,Labour +379028,Labour,Labour +379026,Labour,Labour +379025,Labour,Labour +379022,Labour,Labour +379021,Labour,Labour +379020,Labour,Labour +379019,Labour,Labour +379018,Labour,Labour +379017,Labour,Labour +379016,Labour,Labour +379014,Labour,Labour +379012,Labour,Labour +379010,Labour,Labour +379009,Labour,Labour +379008,Labour,Labour +379006,Labour,Labour +379000,Labour,Labour +377024,Labour,Labour +536709,Labour,Labour +536708,Labour,Labour +536707,Labour,Labour +536706,Labour,Labour +536705,Labour,Labour +536704,Labour,Labour +536703,Labour,Labour +536702,Labour,Labour +491613,Labour,Labour +480168,Labour,Labour +476001,Labour,Labour +469899,Labour,Labour +469894,Labour,Labour +348847,Regional Development,Regional Development +324783,Regional Development,Regional Development +218187,Regional Development,Regional Development +286875,Regional Development,Regional Development +469899,Regional Development,Regional Development +466969,Regional Development,Regional Development +452374,Regional Development,Regional Development +450045,Regional Development,Regional Development +445587,Regional Development,Regional Development +445578,Regional Development,Regional Development +443996,Regional Development,Regional Development +443995,Regional Development,Regional Development +443994,Regional Development,Regional Development +443993,Regional Development,Regional Development +443992,Regional Development,Regional Development +443989,Regional Development,Regional Development +443987,Regional Development,Regional Development +443985,Regional Development,Regional Development +443984,Regional Development,Regional Development +443983,Regional Development,Regional Development +443982,Regional Development,Regional Development +443980,Regional Development,Regional Development +443979,Regional Development,Regional Development +443978,Regional Development,Regional Development +443977,Regional Development,Regional Development +443976,Regional Development,Regional Development +443975,Regional Development,Regional Development +443974,Regional Development,Regional Development +443972,Regional Development,Regional Development +443971,Regional Development,Regional Development +443970,Regional Development,Regional Development +443969,Regional Development,Regional Development +443968,Regional Development,Regional Development +443966,Regional Development,Regional Development +443964,Regional Development,Regional Development +443962,Regional Development,Regional Development +443960,Regional Development,Regional Development +443957,Regional Development,Regional Development +439615,Regional Development,Regional Development +439614,Regional Development,Regional Development +439613,Regional Development,Regional Development +439612,Regional Development,Regional Development +433448,Regional Development,Regional Development +424422,Regional Development,Regional Development +417816,Regional Development,Regional Development +416603,Regional Development,Regional Development +416601,Regional Development,Regional Development +416599,Regional Development,Regional Development +416598,Regional Development,Regional Development +416597,Regional Development,Regional Development +416596,Regional Development,Regional Development +416593,Regional Development,Regional Development +416591,Regional Development,Regional Development +416588,Regional Development,Regional Development +416587,Regional Development,Regional Development +416582,Regional Development,Regional Development +416578,Regional Development,Regional Development +416576,Regional Development,Regional Development +416571,Regional Development,Regional Development +416567,Regional Development,Regional Development +416564,Regional Development,Regional Development +416559,Regional Development,Regional Development +416550,Regional Development,Regional Development +416548,Regional Development,Regional Development +416547,Regional Development,Regional Development +416543,Regional Development,Regional Development +416540,Regional Development,Regional Development +416537,Regional Development,Regional Development +416536,Regional Development,Regional Development +413520,Regional Development,Regional Development +413517,Regional Development,Regional Development +413513,Regional Development,Regional Development +413285,Regional Development,Regional Development +413284,Regional Development,Regional Development +413281,Regional Development,Regional Development +409958,Regional Development,Regional Development +388078,Regional Development,Regional Development +383013,Regional Development,Regional Development +382368,Regional Development,Regional Development +382367,Regional Development,Regional Development +379029,Regional Development,Regional Development +379028,Regional Development,Regional Development +379026,Regional Development,Regional Development +379025,Regional Development,Regional Development +379022,Regional Development,Regional Development +379021,Regional Development,Regional Development +379020,Regional Development,Regional Development +379019,Regional Development,Regional Development +379018,Regional Development,Regional Development +379017,Regional Development,Regional Development +379016,Regional Development,Regional Development +379014,Regional Development,Regional Development +379012,Regional Development,Regional Development +379010,Regional Development,Regional Development +379009,Regional Development,Regional Development +379008,Regional Development,Regional Development +379006,Regional Development,Regional Development +379000,Regional Development,Regional Development +377024,Regional Development,Regional Development +374703,Regional Development,Regional Development +371262,Regional Development,Regional Development +371256,Regional Development,Regional Development +369268,Regional Development,Regional Development +358182,Regional Development,Regional Development +379014,Transportation,Transportation +483417,Transportation,Transportation +99921,Transportation,Transportation +257389,Transportation,Transportation +416567,Transportation,Transportation +409958,Transportation,Transportation +393897,Transportation,Transportation +393896,Transportation,Transportation +393895,Transportation,Transportation +393894,Transportation,Transportation +535200,Agriculture,Agriculture +522243,Agriculture,Agriculture +77669,Agriculture,Agriculture +164358,Agriculture,Agriculture +164357,Agriculture,Agriculture +164356,Agriculture,Agriculture +164355,Agriculture,Agriculture +164354,Agriculture,Agriculture +164353,Agriculture,Agriculture +164352,Agriculture,Agriculture +164351,Agriculture,Agriculture +164350,Agriculture,Agriculture +164349,Agriculture,Agriculture +164348,Agriculture,Agriculture +164346,Agriculture,Agriculture +154306,Agriculture,Agriculture +153564,Agriculture,Agriculture +153563,Agriculture,Agriculture +144938,Agriculture,Agriculture +144936,Agriculture,Agriculture +144935,Agriculture,Agriculture +144934,Agriculture,Agriculture +126015,Agriculture,Agriculture +126014,Agriculture,Agriculture +328269,Agriculture,Agriculture +320932,Agriculture,Agriculture +320931,Agriculture,Agriculture +283730,Agriculture,Agriculture +283729,Agriculture,Agriculture +276293,Agriculture,Agriculture +211277,Agriculture,Agriculture +211276,Agriculture,Agriculture +211274,Agriculture,Agriculture +211272,Agriculture,Agriculture +211270,Agriculture,Agriculture +211269,Agriculture,Agriculture +211268,Agriculture,Agriculture +211267,Agriculture,Agriculture +192985,Agriculture,Agriculture +192984,Agriculture,Agriculture +189612,Agriculture,Agriculture +189610,Agriculture,Agriculture +189606,Agriculture,Agriculture +189603,Agriculture,Agriculture +189601,Agriculture,Agriculture +189598,Agriculture,Agriculture +189597,Agriculture,Agriculture +189596,Agriculture,Agriculture +189594,Agriculture,Agriculture +189590,Agriculture,Agriculture +189588,Agriculture,Agriculture +189582,Agriculture,Agriculture +182826,Agriculture,Agriculture +182825,Agriculture,Agriculture +182824,Agriculture,Agriculture +168134,Agriculture,Agriculture +168133,Agriculture,Agriculture +168132,Agriculture,Agriculture +164359,Agriculture,Agriculture +413898,Agriculture,Agriculture +401191,Agriculture,Agriculture +401190,Agriculture,Agriculture +398981,Agriculture,Agriculture +398975,Agriculture,Agriculture +397209,Agriculture,Agriculture +392847,Agriculture,Agriculture +391266,Agriculture,Agriculture +385465,Agriculture,Agriculture +382612,Agriculture,Agriculture +381465,Agriculture,Agriculture +381464,Agriculture,Agriculture +380134,Agriculture,Agriculture +377748,Agriculture,Agriculture +373925,Agriculture,Agriculture +373922,Agriculture,Agriculture +373920,Agriculture,Agriculture +373918,Agriculture,Agriculture +373917,Agriculture,Agriculture +373914,Agriculture,Agriculture +373913,Agriculture,Agriculture +373911,Agriculture,Agriculture +373909,Agriculture,Agriculture +373908,Agriculture,Agriculture +373906,Agriculture,Agriculture +373903,Agriculture,Agriculture +373902,Agriculture,Agriculture +373901,Agriculture,Agriculture +373900,Agriculture,Agriculture +373899,Agriculture,Agriculture +373897,Agriculture,Agriculture +373896,Agriculture,Agriculture +373895,Agriculture,Agriculture +373894,Agriculture,Agriculture +373893,Agriculture,Agriculture +373892,Agriculture,Agriculture +373890,Agriculture,Agriculture +373887,Agriculture,Agriculture +372436,Agriculture,Agriculture +372432,Agriculture,Agriculture +372430,Agriculture,Agriculture +372425,Agriculture,Agriculture +372421,Agriculture,Agriculture +372404,Agriculture,Agriculture +372401,Agriculture,Agriculture +372397,Agriculture,Agriculture +372394,Agriculture,Agriculture +372388,Agriculture,Agriculture +372381,Agriculture,Agriculture +367382,Agriculture,Agriculture +355750,Agriculture,Agriculture +355745,Agriculture,Agriculture +344732,Agriculture,Agriculture +504713,Agriculture,Agriculture +504709,Agriculture,Agriculture +504703,Agriculture,Agriculture +502921,Agriculture,Agriculture +498905,Agriculture,Agriculture +494603,Agriculture,Agriculture +494599,Agriculture,Agriculture +493152,Agriculture,Agriculture +462969,Agriculture,Agriculture +460293,Agriculture,Agriculture +459400,Agriculture,Agriculture +458561,Agriculture,Agriculture +458560,Agriculture,Agriculture +447853,Agriculture,Agriculture +445515,Agriculture,Agriculture +441647,Agriculture,Agriculture +441639,Agriculture,Agriculture +441637,Agriculture,Agriculture +441635,Agriculture,Agriculture +441633,Agriculture,Agriculture +436091,Agriculture,Agriculture +426400,Agriculture,Agriculture +426389,Agriculture,Agriculture +421563,Agriculture,Agriculture +421531,Agriculture,Agriculture +418336,Agriculture,Agriculture +418335,Agriculture,Agriculture +417270,Agriculture,Agriculture +417269,Agriculture,Agriculture +417268,Agriculture,Agriculture +417267,Agriculture,Agriculture +538320,Agriculture,Agriculture +538251,Agriculture,Agriculture +538249,Agriculture,Agriculture +373892,Environment,Environment +538265,Environment,Environment +398981,Environment,Environment +391478,Environment,Environment +391266,Environment,Environment +373920,Environment,Environment +373914,Environment,Environment +373896,Environment,Environment +373895,Environment,Environment +441633,Health,Health +397209,Health,Health +144937,Health,Health +391266,Health,Health +373913,Health,Health +373902,Health,Health +373901,International Relations,International Relations +373897,International Relations,International Relations +164346,International Relations,International Relations +182826,International Relations,International Relations +182825,International Relations,International Relations +164359,International Relations,International Relations +372394,International Relations,International Relations +494603,International Relations,International Relations +494599,International Relations,International Relations +398975,International Relations,International Relations +373922,International Relations,International Relations +373908,International Relations,International Relations +494603,International Trade,International Trade +494599,International Trade,International Trade +154306,International Trade,International Trade +153563,International Trade,International Trade +144938,International Trade,International Trade +144934,International Trade,International Trade +126014,International Trade,International Trade +182826,International Trade,International Trade +182825,International Trade,International Trade +164359,International Trade,International Trade +164346,International Trade,International Trade +382612,International Trade,International Trade +373922,International Trade,International Trade +373918,International Trade,International Trade +373914,International Trade,International Trade +373908,International Trade,International Trade +373906,International Trade,International Trade +373901,International Trade,International Trade +373897,International Trade,International Trade +373895,International Trade,International Trade +372397,International Trade,International Trade +462969,International Trade,International Trade +460293,International Trade,International Trade +459400,International Trade,International Trade +447853,International Trade,International Trade +445515,International Trade,International Trade +441647,International Trade,International Trade +441639,International Trade,International Trade +441637,International Trade,International Trade +441635,International Trade,International Trade +441633,International Trade,International Trade +436093,International Trade,International Trade +426400,International Trade,International Trade +426389,International Trade,International Trade +418336,International Trade,International Trade +398975,International Trade,International Trade +538314,International Trade,International Trade +538258,International Trade,International Trade +538255,International Trade,International Trade +538248,International Trade,International Trade +538130,International Trade,International Trade +538127,International Trade,International Trade +538126,International Trade,International Trade +538125,International Trade,International Trade +538121,International Trade,International Trade +535212,International Trade,International Trade +535207,International Trade,International Trade +535203,International Trade,International Trade +535199,International Trade,International Trade +535188,International Trade,International Trade +530573,International Trade,International Trade +530571,International Trade,International Trade +530569,International Trade,International Trade +530566,International Trade,International Trade +530565,International Trade,International Trade +530564,International Trade,International Trade +530563,International Trade,International Trade +530562,International Trade,International Trade +530560,International Trade,International Trade +530558,International Trade,International Trade +530557,International Trade,International Trade +530556,International Trade,International Trade +530554,International Trade,International Trade +508454,International Trade,International Trade +436093,Transportation,Transportation +436091,Transportation,Transportation +164347,Transportation,Transportation +144936,Transportation,Transportation +144935,Transportation,Transportation +126014,Transportation,Transportation +189612,Transportation,Transportation +189610,Transportation,Transportation +189606,Transportation,Transportation +189603,Transportation,Transportation +189601,Transportation,Transportation +189598,Transportation,Transportation +189597,Transportation,Transportation +189596,Transportation,Transportation +189594,Transportation,Transportation +189590,Transportation,Transportation +189588,Transportation,Transportation +189582,Transportation,Transportation +182824,Transportation,Transportation +168134,Transportation,Transportation +168133,Transportation,Transportation +168132,Transportation,Transportation +164358,Transportation,Transportation +164357,Transportation,Transportation +164356,Transportation,Transportation +164355,Transportation,Transportation +164354,Transportation,Transportation +164353,Transportation,Transportation +164352,Transportation,Transportation +164351,Transportation,Transportation +164350,Transportation,Transportation +164349,Transportation,Transportation +164348,Transportation,Transportation +355667,Transportation,Transportation +355666,Transportation,Transportation +355665,Transportation,Transportation +355664,Transportation,Transportation +355663,Transportation,Transportation +355662,Transportation,Transportation +355655,Transportation,Transportation +344731,Transportation,Transportation +344730,Transportation,Transportation +320932,Transportation,Transportation +320930,Transportation,Transportation +283730,Transportation,Transportation +283729,Transportation,Transportation +211277,Transportation,Transportation +211276,Transportation,Transportation +211274,Transportation,Transportation +211272,Transportation,Transportation +211270,Transportation,Transportation +211269,Transportation,Transportation +211268,Transportation,Transportation +211267,Transportation,Transportation +192985,Transportation,Transportation +192984,Transportation,Transportation +421563,Transportation,Transportation +418335,Transportation,Transportation +417270,Transportation,Transportation +417269,Transportation,Transportation +417268,Transportation,Transportation +417267,Transportation,Transportation +401190,Transportation,Transportation +391473,Transportation,Transportation +385469,Transportation,Transportation +382615,Transportation,Transportation +381464,Transportation,Transportation +373925,Transportation,Transportation +373909,Transportation,Transportation +373903,Transportation,Transportation +372436,Transportation,Transportation +372432,Transportation,Transportation +372430,Transportation,Transportation +372425,Transportation,Transportation +372421,Transportation,Transportation +372418,Transportation,Transportation +372404,Transportation,Transportation +372401,Transportation,Transportation +372397,Transportation,Transportation +372394,Transportation,Transportation +356979,Transportation,Transportation +355750,Transportation,Transportation +355745,Transportation,Transportation +355669,Transportation,Transportation +355668,Transportation,Transportation +535213,Transportation,Transportation +530580,Transportation,Transportation +530579,Transportation,Transportation +530567,Transportation,Transportation +522253,Transportation,Transportation +522243,Transportation,Transportation +522239,Transportation,Transportation +522235,Transportation,Transportation +521814,Transportation,Transportation +508454,Transportation,Transportation +508452,Transportation,Transportation +504736,Transportation,Transportation +502923,Transportation,Transportation +141836,International Relations,International Relations +186044,International Relations,International Relations +125085,International Relations,International Relations +112898,International Relations,International Relations +112894,International Relations,International Relations +141838,International Relations,International Relations +112898,International Trade,International Trade +112894,International Trade,International Trade +141838,International Trade,International Trade +141837,International Trade,International Trade +141836,International Trade,International Trade +141835,International Trade,International Trade +188446,Tourism,Tourism +186044,Tourism,Tourism +141838,Tourism,Tourism +141837,Tourism,Tourism +141835,Tourism,Tourism +125085,Tourism,Tourism +112898,Tourism,Tourism +112894,Tourism,Tourism +188445,Transportation,Transportation +186044,Transportation,Transportation +91294,Transportation,Transportation +91274,Transportation,Transportation +141838,Transportation,Transportation +141837,Transportation,Transportation +141836,Transportation,Transportation +141835,Transportation,Transportation +112898,Transportation,Transportation +112894,Transportation,Transportation +109179,Transportation,Transportation +109175,Transportation,Transportation +77499,Health,Health +116340,Health,Health +336102,Taxation and Finance,Taxation and Finance +336101,Taxation and Finance,Taxation and Finance +93956,Taxation and Finance,Taxation and Finance +93954,Taxation and Finance,Taxation and Finance +212388,Taxation and Finance,Taxation and Finance +188960,Taxation and Finance,Taxation and Finance +187684,Taxation and Finance,Taxation and Finance +187224,Taxation and Finance,Taxation and Finance +334249,Taxation and Finance,Taxation and Finance +330547,Taxation and Finance,Taxation and Finance +330546,Taxation and Finance,Taxation and Finance +324257,Taxation and Finance,Taxation and Finance +324256,Taxation and Finance,Taxation and Finance +324255,Taxation and Finance,Taxation and Finance +324254,Taxation and Finance,Taxation and Finance +324253,Taxation and Finance,Taxation and Finance +324251,Taxation and Finance,Taxation and Finance +324246,Taxation and Finance,Taxation and Finance +212394,Taxation and Finance,Taxation and Finance +212392,Taxation and Finance,Taxation and Finance +212391,Taxation and Finance,Taxation and Finance +212390,Taxation and Finance,Taxation and Finance +352060,Taxation and Finance,Taxation and Finance +350155,Taxation and Finance,Taxation and Finance +350154,Taxation and Finance,Taxation and Finance +345997,Taxation and Finance,Taxation and Finance +339095,Taxation and Finance,Taxation and Finance +451310,Consumer Issues,Consumer Issues +451309,Consumer Issues,Consumer Issues +97282,Consumer Issues,Consumer Issues +97279,Consumer Issues,Consumer Issues +97275,Consumer Issues,Consumer Issues +95174,Consumer Issues,Consumer Issues +88574,Consumer Issues,Consumer Issues +163086,Consumer Issues,Consumer Issues +163084,Consumer Issues,Consumer Issues +137377,Consumer Issues,Consumer Issues +137374,Consumer Issues,Consumer Issues +130298,Consumer Issues,Consumer Issues +130297,Consumer Issues,Consumer Issues +130296,Consumer Issues,Consumer Issues +130295,Consumer Issues,Consumer Issues +130294,Consumer Issues,Consumer Issues +429613,Consumer Issues,Consumer Issues +423303,Consumer Issues,Consumer Issues +423302,Consumer Issues,Consumer Issues +423300,Consumer Issues,Consumer Issues +423002,Consumer Issues,Consumer Issues +417897,Consumer Issues,Consumer Issues +415662,Consumer Issues,Consumer Issues +415659,Consumer Issues,Consumer Issues +415658,Consumer Issues,Consumer Issues +410921,Consumer Issues,Consumer Issues +410920,Consumer Issues,Consumer Issues +408631,Consumer Issues,Consumer Issues +408630,Consumer Issues,Consumer Issues +408629,Consumer Issues,Consumer Issues +408628,Consumer Issues,Consumer Issues +408627,Consumer Issues,Consumer Issues +384644,Consumer Issues,Consumer Issues +384643,Consumer Issues,Consumer Issues +383980,Consumer Issues,Consumer Issues +380690,Consumer Issues,Consumer Issues +380689,Consumer Issues,Consumer Issues +378163,Consumer Issues,Consumer Issues +378162,Consumer Issues,Consumer Issues +375761,Consumer Issues,Consumer Issues +375760,Consumer Issues,Consumer Issues +371234,Consumer Issues,Consumer Issues +371231,Consumer Issues,Consumer Issues +371229,Consumer Issues,Consumer Issues +407030,Financial Institutions,Financial Institutions +407029,Financial Institutions,Financial Institutions +97282,Financial Institutions,Financial Institutions +97279,Financial Institutions,Financial Institutions +97275,Financial Institutions,Financial Institutions +95174,Financial Institutions,Financial Institutions +78794,Financial Institutions,Financial Institutions +262532,Financial Institutions,Financial Institutions +262530,Financial Institutions,Financial Institutions +262529,Financial Institutions,Financial Institutions +262491,Financial Institutions,Financial Institutions +262489,Financial Institutions,Financial Institutions +163086,Financial Institutions,Financial Institutions +163084,Financial Institutions,Financial Institutions +130298,Financial Institutions,Financial Institutions +130297,Financial Institutions,Financial Institutions +130296,Financial Institutions,Financial Institutions +130295,Financial Institutions,Financial Institutions +384644,Financial Institutions,Financial Institutions +384643,Financial Institutions,Financial Institutions +383980,Financial Institutions,Financial Institutions +380690,Financial Institutions,Financial Institutions +378163,Financial Institutions,Financial Institutions +378162,Financial Institutions,Financial Institutions +375764,Financial Institutions,Financial Institutions +375761,Financial Institutions,Financial Institutions +375760,Financial Institutions,Financial Institutions +371234,Financial Institutions,Financial Institutions +371231,Financial Institutions,Financial Institutions +371229,Financial Institutions,Financial Institutions +366572,Financial Institutions,Financial Institutions +460384,Financial Institutions,Financial Institutions +459081,Financial Institutions,Financial Institutions +451310,Financial Institutions,Financial Institutions +451309,Financial Institutions,Financial Institutions +429613,Financial Institutions,Financial Institutions +423303,Financial Institutions,Financial Institutions +423302,Financial Institutions,Financial Institutions +423300,Financial Institutions,Financial Institutions +423002,Financial Institutions,Financial Institutions +421011,Financial Institutions,Financial Institutions +421010,Financial Institutions,Financial Institutions +421006,Financial Institutions,Financial Institutions +417897,Financial Institutions,Financial Institutions +415662,Financial Institutions,Financial Institutions +415659,Financial Institutions,Financial Institutions +415658,Financial Institutions,Financial Institutions +410921,Financial Institutions,Financial Institutions +410920,Financial Institutions,Financial Institutions +408631,Financial Institutions,Financial Institutions +408630,Financial Institutions,Financial Institutions +408629,Financial Institutions,Financial Institutions +408628,Financial Institutions,Financial Institutions +408627,Financial Institutions,Financial Institutions +526420,Transportation,Transportation +526406,Transportation,Transportation +373743,Transportation,Transportation +373440,Transportation,Transportation +373439,Transportation,Transportation +373438,Transportation,Transportation +363322,Transportation,Transportation +351319,Transportation,Transportation +351318,Transportation,Transportation +351313,Transportation,Transportation +351311,Transportation,Transportation +351309,Transportation,Transportation +351308,Transportation,Transportation +351306,Transportation,Transportation +351304,Transportation,Transportation +244500,Transportation,Transportation +408714,Transportation,Transportation +408713,Transportation,Transportation +408712,Transportation,Transportation +408711,Transportation,Transportation +407300,Transportation,Transportation +407299,Transportation,Transportation +399616,Transportation,Transportation +399613,Transportation,Transportation +399607,Transportation,Transportation +386789,Transportation,Transportation +380618,Transportation,Transportation +380617,Transportation,Transportation +378223,Transportation,Transportation +488563,Transportation,Transportation +94015,Taxation and Finance,Taxation and Finance +94014,Taxation and Finance,Taxation and Finance +130275,Taxation and Finance,Taxation and Finance +130274,Taxation and Finance,Taxation and Finance +106475,Taxation and Finance,Taxation and Finance +101437,Taxation and Finance,Taxation and Finance +91574,Government Procurement,Government Procurement +473298,Energy,Energy +471322,Energy,Energy +142943,Energy,Energy +90478,Energy,Energy +90476,Energy,Energy +78637,Energy,Energy +78636,Energy,Energy +78635,Energy,Energy +78634,Energy,Energy +77173,Energy,Energy +296592,Energy,Energy +296591,Energy,Energy +264482,Energy,Energy +249848,Energy,Energy +249845,Energy,Energy +249841,Energy,Energy +240822,Energy,Energy +240813,Energy,Energy +234950,Energy,Energy +234949,Energy,Energy +195746,Energy,Energy +379043,Energy,Energy +379042,Energy,Energy +378768,Energy,Energy +372439,Energy,Energy +372437,Energy,Energy +372427,Energy,Energy +372422,Energy,Energy +372420,Energy,Energy +367288,Energy,Energy +367287,Energy,Energy +367286,Energy,Energy +367285,Energy,Energy +362264,Energy,Energy +362262,Energy,Energy +361197,Energy,Energy +361172,Energy,Energy +361171,Energy,Energy +360017,Energy,Energy +360016,Energy,Energy +357765,Energy,Energy +357762,Energy,Energy +351277,Energy,Energy +351200,Energy,Energy +351193,Energy,Energy +351186,Energy,Energy +349451,Energy,Energy +349450,Energy,Energy +342217,Energy,Energy +337940,Energy,Energy +331750,Energy,Energy +330051,Energy,Energy +330049,Energy,Energy +330048,Energy,Energy +330047,Energy,Energy +327850,Energy,Energy +327849,Energy,Energy +327846,Energy,Energy +327845,Energy,Energy +327844,Energy,Energy +327843,Energy,Energy +327842,Energy,Energy +327841,Energy,Energy +327840,Energy,Energy +327839,Energy,Energy +467074,Energy,Energy +467072,Energy,Energy +467063,Energy,Energy +467062,Energy,Energy +467059,Energy,Energy +467057,Energy,Energy +461952,Energy,Energy +460703,Energy,Energy +459445,Energy,Energy +459441,Energy,Energy +457692,Energy,Energy +457691,Energy,Energy +457690,Energy,Energy +457689,Energy,Energy +457688,Energy,Energy +449510,Energy,Energy +448201,Energy,Energy +448060,Energy,Energy +448056,Energy,Energy +448050,Energy,Energy +442759,Energy,Energy +439886,Energy,Energy +432647,Energy,Energy +432646,Energy,Energy +432645,Energy,Energy +432644,Energy,Energy +432643,Energy,Energy +432642,Energy,Energy +431014,Energy,Energy +431013,Energy,Energy +431011,Energy,Energy +429512,Energy,Energy +429509,Energy,Energy +429506,Energy,Energy +429504,Energy,Energy +429503,Energy,Energy +429501,Energy,Energy +422287,Energy,Energy +422282,Energy,Energy +416233,Energy,Energy +415865,Energy,Energy +415861,Energy,Energy +415857,Energy,Energy +415854,Energy,Energy +415850,Energy,Energy +414086,Energy,Energy +414084,Energy,Energy +414082,Energy,Energy +408281,Energy,Energy +408280,Energy,Energy +404180,Energy,Energy +404176,Energy,Energy +404173,Energy,Energy +404171,Energy,Energy +397127,Energy,Energy +397122,Energy,Energy +397119,Energy,Energy +397117,Energy,Energy +394578,Energy,Energy +392879,Energy,Energy +390412,Energy,Energy +390408,Energy,Energy +385275,Energy,Energy +385270,Energy,Energy +383849,Energy,Energy +544286,Energy,Energy +544285,Energy,Energy +544284,Energy,Energy +544283,Energy,Energy +542006,Energy,Energy +542004,Energy,Energy +542000,Energy,Energy +535832,Energy,Energy +531583,Energy,Energy +531582,Energy,Energy +529794,Energy,Energy +529793,Energy,Energy +526496,Energy,Energy +520273,Energy,Energy +520272,Energy,Energy +520269,Energy,Energy +515930,Energy,Energy +513338,Energy,Energy +511466,Energy,Energy +505904,Energy,Energy +480391,Energy,Energy +404175,Immigration,Immigration +404174,Immigration,Immigration +264518,Immigration,Immigration +372689,Immigration,Immigration +432647,Immigration,Immigration +414084,Immigration,Immigration +448203,Industry,Industry +322223,Industry,Industry +383849,Industry,Industry +383848,Industry,Industry +379043,Industry,Industry +379042,Industry,Industry +378779,Industry,Industry +378778,Industry,Industry +378765,Industry,Industry +375045,Industry,Industry +375044,Industry,Industry +375043,Industry,Industry +375042,Industry,Industry +375041,Industry,Industry +372439,Industry,Industry +372422,Industry,Industry +372416,Industry,Industry +370629,Industry,Industry +367287,Industry,Industry +364811,Industry,Industry +362262,Industry,Industry +360015,Industry,Industry +357765,Industry,Industry +353937,Industry,Industry +353935,Industry,Industry +353933,Industry,Industry +351277,Industry,Industry +351200,Industry,Industry +351193,Industry,Industry +351186,Industry,Industry +349463,Industry,Industry +349460,Industry,Industry +349457,Industry,Industry +349453,Industry,Industry +349452,Industry,Industry +349450,Industry,Industry +344198,Industry,Industry +335660,Industry,Industry +335658,Industry,Industry +335656,Industry,Industry +330048,Industry,Industry +327859,Industry,Industry +327858,Industry,Industry +327857,Industry,Industry +327855,Industry,Industry +327853,Industry,Industry +327852,Industry,Industry +327851,Industry,Industry +436097,Industry,Industry +436095,Industry,Industry +436094,Industry,Industry +436092,Industry,Industry +436088,Industry,Industry +432641,Industry,Industry +429512,Industry,Industry +429509,Industry,Industry +429504,Industry,Industry +429503,Industry,Industry +426994,Industry,Industry +422287,Industry,Industry +415865,Industry,Industry +414087,Industry,Industry +408282,Industry,Industry +404181,Industry,Industry +404179,Industry,Industry +404175,Industry,Industry +401044,Industry,Industry +397128,Industry,Industry +397127,Industry,Industry +397117,Industry,Industry +397114,Industry,Industry +394586,Industry,Industry +394585,Industry,Industry +394582,Industry,Industry +394580,Industry,Industry +394579,Industry,Industry +394578,Industry,Industry +392878,Industry,Industry +390412,Industry,Industry +535832,Industry,Industry +473298,Industry,Industry +459445,Industry,Industry +459441,Industry,Industry +457692,Industry,Industry +457691,Industry,Industry +457690,Industry,Industry +457689,Industry,Industry +432643,International Relations,International Relations +432642,International Relations,International Relations +154428,International Relations,International Relations +296592,International Relations,International Relations +296591,International Relations,International Relations +296590,International Relations,International Relations +296589,International Relations,International Relations +281190,International Relations,International Relations +281189,International Relations,International Relations +277422,International Relations,International Relations +277421,International Relations,International Relations +273388,International Relations,International Relations +273387,International Relations,International Relations +273385,International Relations,International Relations +264519,International Relations,International Relations +264518,International Relations,International Relations +264517,International Relations,International Relations +264515,International Relations,International Relations +264513,International Relations,International Relations +264508,International Relations,International Relations +264506,International Relations,International Relations +264504,International Relations,International Relations +264497,International Relations,International Relations +264482,International Relations,International Relations +223226,International Relations,International Relations +223220,International Relations,International Relations +357765,International Relations,International Relations +357763,International Relations,International Relations +357762,International Relations,International Relations +351186,International Relations,International Relations +351183,International Relations,International Relations +351181,International Relations,International Relations +349463,International Relations,International Relations +349460,International Relations,International Relations +349457,International Relations,International Relations +349453,International Relations,International Relations +349451,International Relations,International Relations +344199,International Relations,International Relations +344198,International Relations,International Relations +344197,International Relations,International Relations +342217,International Relations,International Relations +337940,International Relations,International Relations +337939,International Relations,International Relations +335660,International Relations,International Relations +335658,International Relations,International Relations +335656,International Relations,International Relations +333602,International Relations,International Relations +331750,International Relations,International Relations +330051,International Relations,International Relations +330049,International Relations,International Relations +330047,International Relations,International Relations +327856,International Relations,International Relations +327855,International Relations,International Relations +327853,International Relations,International Relations +327850,International Relations,International Relations +327847,International Relations,International Relations +327846,International Relations,International Relations +327845,International Relations,International Relations +327844,International Relations,International Relations +327843,International Relations,International Relations +327840,International Relations,International Relations +327839,International Relations,International Relations +322224,International Relations,International Relations +322223,International Relations,International Relations +319675,International Relations,International Relations +319672,International Relations,International Relations +319671,International Relations,International Relations +319670,International Relations,International Relations +319669,International Relations,International Relations +319649,International Relations,International Relations +431014,International Relations,International Relations +431013,International Relations,International Relations +431012,International Relations,International Relations +431011,International Relations,International Relations +429507,International Relations,International Relations +429506,International Relations,International Relations +426996,International Relations,International Relations +426995,International Relations,International Relations +426992,International Relations,International Relations +422287,International Relations,International Relations +422282,International Relations,International Relations +422278,International Relations,International Relations +422274,International Relations,International Relations +422271,International Relations,International Relations +422268,International Relations,International Relations +422266,International Relations,International Relations +422264,International Relations,International Relations +422262,International Relations,International Relations +416233,International Relations,International Relations +415865,International Relations,International Relations +415861,International Relations,International Relations +415857,International Relations,International Relations +415854,International Relations,International Relations +415850,International Relations,International Relations +414087,International Relations,International Relations +414082,International Relations,International Relations +414081,International Relations,International Relations +410095,International Relations,International Relations +408280,International Relations,International Relations +408277,International Relations,International Relations +404180,International Relations,International Relations +404179,International Relations,International Relations +404178,International Relations,International Relations +404176,International Relations,International Relations +404172,International Relations,International Relations +404171,International Relations,International Relations +404170,International Relations,International Relations +404169,International Relations,International Relations +404168,International Relations,International Relations +401047,International Relations,International Relations +401045,International Relations,International Relations +401043,International Relations,International Relations +401037,International Relations,International Relations +398663,International Relations,International Relations +398662,International Relations,International Relations +398660,International Relations,International Relations +398659,International Relations,International Relations +398658,International Relations,International Relations +397127,International Relations,International Relations +397126,International Relations,International Relations +397122,International Relations,International Relations +397121,International Relations,International Relations +397119,International Relations,International Relations +397117,International Relations,International Relations +397114,International Relations,International Relations +397113,International Relations,International Relations +394585,International Relations,International Relations +394583,International Relations,International Relations +394582,International Relations,International Relations +394580,International Relations,International Relations +394579,International Relations,International Relations +394577,International Relations,International Relations +392879,International Relations,International Relations +390412,International Relations,International Relations +390408,International Relations,International Relations +385275,International Relations,International Relations +383849,International Relations,International Relations +379042,International Relations,International Relations +378779,International Relations,International Relations +378777,International Relations,International Relations +378775,International Relations,International Relations +378774,International Relations,International Relations +378772,International Relations,International Relations +378771,International Relations,International Relations +378770,International Relations,International Relations +378768,International Relations,International Relations +378767,International Relations,International Relations +378766,International Relations,International Relations +375044,International Relations,International Relations +375043,International Relations,International Relations +375042,International Relations,International Relations +372689,International Relations,International Relations +372437,International Relations,International Relations +370629,International Relations,International Relations +367289,International Relations,International Relations +367288,International Relations,International Relations +367287,International Relations,International Relations +367283,International Relations,International Relations +367282,International Relations,International Relations +364811,International Relations,International Relations +362266,International Relations,International Relations +362265,International Relations,International Relations +362264,International Relations,International Relations +362262,International Relations,International Relations +361172,International Relations,International Relations +361171,International Relations,International Relations +360017,International Relations,International Relations +360016,International Relations,International Relations +360015,International Relations,International Relations +357766,International Relations,International Relations +544287,International Relations,International Relations +544286,International Relations,International Relations +544285,International Relations,International Relations +544284,International Relations,International Relations +544283,International Relations,International Relations +542006,International Relations,International Relations +542000,International Relations,International Relations +535821,International Relations,International Relations +531585,International Relations,International Relations +531583,International Relations,International Relations +531581,International Relations,International Relations +529793,International Relations,International Relations +513339,International Relations,International Relations +508521,International Relations,International Relations +480405,International Relations,International Relations +480391,International Relations,International Relations +471321,International Relations,International Relations +471319,International Relations,International Relations +471317,International Relations,International Relations +471316,International Relations,International Relations +467074,International Relations,International Relations +467072,International Relations,International Relations +467063,International Relations,International Relations +467062,International Relations,International Relations +467057,International Relations,International Relations +461952,International Relations,International Relations +460254,International Relations,International Relations +457692,International Relations,International Relations +457691,International Relations,International Relations +457690,International Relations,International Relations +457689,International Relations,International Relations +457688,International Relations,International Relations +448049,International Relations,International Relations +445891,International Relations,International Relations +445884,International Relations,International Relations +445883,International Relations,International Relations +439886,International Relations,International Relations +439884,International Relations,International Relations +436095,International Relations,International Relations +436094,International Relations,International Relations +436092,International Relations,International Relations +436089,International Relations,International Relations +433803,International Relations,International Relations +433797,International Relations,International Relations +433792,International Relations,International Relations +433787,International Relations,International Relations +433783,International Relations,International Relations +433782,International Relations,International Relations +433776,International Relations,International Relations +433770,International Relations,International Relations +432646,International Relations,International Relations +513339,International Trade,International Trade +508521,International Trade,International Trade +264513,International Trade,International Trade +264508,International Trade,International Trade +264506,International Trade,International Trade +264504,International Trade,International Trade +264482,International Trade,International Trade +264481,International Trade,International Trade +249851,International Trade,International Trade +249841,International Trade,International Trade +244329,International Trade,International Trade +240816,International Trade,International Trade +230425,International Trade,International Trade +230421,International Trade,International Trade +226917,International Trade,International Trade +226914,International Trade,International Trade +226913,International Trade,International Trade +210548,International Trade,International Trade +200165,International Trade,International Trade +200160,International Trade,International Trade +200153,International Trade,International Trade +200151,International Trade,International Trade +195750,International Trade,International Trade +195748,International Trade,International Trade +195745,International Trade,International Trade +195744,International Trade,International Trade +186464,International Trade,International Trade +167612,International Trade,International Trade +167611,International Trade,International Trade +164424,International Trade,International Trade +160082,International Trade,International Trade +394577,International Trade,International Trade +392879,International Trade,International Trade +390412,International Trade,International Trade +390408,International Trade,International Trade +385275,International Trade,International Trade +385270,International Trade,International Trade +379042,International Trade,International Trade +378779,International Trade,International Trade +378778,International Trade,International Trade +378777,International Trade,International Trade +378775,International Trade,International Trade +378774,International Trade,International Trade +378772,International Trade,International Trade +378771,International Trade,International Trade +378770,International Trade,International Trade +378768,International Trade,International Trade +378767,International Trade,International Trade +378766,International Trade,International Trade +372437,International Trade,International Trade +372427,International Trade,International Trade +372422,International Trade,International Trade +372420,International Trade,International Trade +367282,International Trade,International Trade +361172,International Trade,International Trade +360017,International Trade,International Trade +360016,International Trade,International Trade +357766,International Trade,International Trade +357763,International Trade,International Trade +357762,International Trade,International Trade +351200,International Trade,International Trade +351186,International Trade,International Trade +351183,International Trade,International Trade +349451,International Trade,International Trade +342217,International Trade,International Trade +337940,International Trade,International Trade +337939,International Trade,International Trade +335658,International Trade,International Trade +333602,International Trade,International Trade +331750,International Trade,International Trade +330051,International Trade,International Trade +330049,International Trade,International Trade +330048,International Trade,International Trade +330047,International Trade,International Trade +327856,International Trade,International Trade +327849,International Trade,International Trade +327847,International Trade,International Trade +322224,International Trade,International Trade +319672,International Trade,International Trade +319671,International Trade,International Trade +319670,International Trade,International Trade +319669,International Trade,International Trade +319649,International Trade,International Trade +296592,International Trade,International Trade +296590,International Trade,International Trade +296589,International Trade,International Trade +277422,International Trade,International Trade +277421,International Trade,International Trade +273388,International Trade,International Trade +273387,International Trade,International Trade +273385,International Trade,International Trade +264519,International Trade,International Trade +264518,International Trade,International Trade +264517,International Trade,International Trade +264515,International Trade,International Trade +471319,International Trade,International Trade +471316,International Trade,International Trade +467074,International Trade,International Trade +467072,International Trade,International Trade +467063,International Trade,International Trade +467062,International Trade,International Trade +467057,International Trade,International Trade +460703,International Trade,International Trade +460254,International Trade,International Trade +457692,International Trade,International Trade +457691,International Trade,International Trade +457690,International Trade,International Trade +457689,International Trade,International Trade +457688,International Trade,International Trade +448203,International Trade,International Trade +445884,International Trade,International Trade +445883,International Trade,International Trade +442759,International Trade,International Trade +439886,International Trade,International Trade +439884,International Trade,International Trade +436089,International Trade,International Trade +436088,International Trade,International Trade +433803,International Trade,International Trade +433797,International Trade,International Trade +433792,International Trade,International Trade +433787,International Trade,International Trade +433783,International Trade,International Trade +433782,International Trade,International Trade +433776,International Trade,International Trade +433770,International Trade,International Trade +432647,International Trade,International Trade +432646,International Trade,International Trade +432644,International Trade,International Trade +432643,International Trade,International Trade +432641,International Trade,International Trade +431014,International Trade,International Trade +431013,International Trade,International Trade +431012,International Trade,International Trade +431011,International Trade,International Trade +429512,International Trade,International Trade +429502,International Trade,International Trade +426996,International Trade,International Trade +426995,International Trade,International Trade +426992,International Trade,International Trade +422282,International Trade,International Trade +422278,International Trade,International Trade +422274,International Trade,International Trade +422271,International Trade,International Trade +422268,International Trade,International Trade +422266,International Trade,International Trade +422264,International Trade,International Trade +422262,International Trade,International Trade +416233,International Trade,International Trade +415865,International Trade,International Trade +415861,International Trade,International Trade +415857,International Trade,International Trade +415854,International Trade,International Trade +415850,International Trade,International Trade +414083,International Trade,International Trade +414082,International Trade,International Trade +414081,International Trade,International Trade +410095,International Trade,International Trade +410092,International Trade,International Trade +408281,International Trade,International Trade +408280,International Trade,International Trade +408277,International Trade,International Trade +404180,International Trade,International Trade +404176,International Trade,International Trade +404173,International Trade,International Trade +404172,International Trade,International Trade +404171,International Trade,International Trade +404170,International Trade,International Trade +404169,International Trade,International Trade +404168,International Trade,International Trade +401045,International Trade,International Trade +401037,International Trade,International Trade +398663,International Trade,International Trade +398662,International Trade,International Trade +398659,International Trade,International Trade +398658,International Trade,International Trade +397127,International Trade,International Trade +397126,International Trade,International Trade +397122,International Trade,International Trade +397121,International Trade,International Trade +397119,International Trade,International Trade +397117,International Trade,International Trade +397114,International Trade,International Trade +397113,International Trade,International Trade +544287,International Trade,International Trade +544286,International Trade,International Trade +544285,International Trade,International Trade +544284,International Trade,International Trade +544283,International Trade,International Trade +535826,International Trade,International Trade +535824,International Trade,International Trade +535821,International Trade,International Trade +531585,International Trade,International Trade +520273,International Trade,International Trade +520269,International Trade,International Trade +382581,Tourism,Tourism +379367,Tourism,Tourism +110734,Tourism,Tourism +105784,Tourism,Tourism +90936,Tourism,Tourism +90935,Tourism,Tourism +90934,Tourism,Tourism +152104,Tourism,Tourism +144894,Tourism,Tourism +139236,Tourism,Tourism +135542,Tourism,Tourism +135539,Tourism,Tourism +135538,Tourism,Tourism +135494,Tourism,Tourism +360906,Tourism,Tourism +355352,Tourism,Tourism +351022,Tourism,Tourism +343702,Tourism,Tourism +330467,Tourism,Tourism +319011,Tourism,Tourism +267849,Tourism,Tourism +267829,Tourism,Tourism +214627,Tourism,Tourism +202573,Tourism,Tourism +165964,Tourism,Tourism +162725,Tourism,Tourism +400127,Tourism,Tourism +398432,Tourism,Tourism +398430,Tourism,Tourism +397571,Tourism,Tourism +93240,Infrastructure,Infrastructure +485611,Agriculture,Agriculture +489354,Agriculture,Agriculture +318797,Agriculture,Agriculture +267754,Agriculture,Agriculture +250335,Agriculture,Agriculture +250332,Agriculture,Agriculture +230326,Agriculture,Agriculture +228639,Agriculture,Agriculture +228635,Agriculture,Agriculture +228633,Agriculture,Agriculture +228632,Agriculture,Agriculture +407737,Consumer Issues,Consumer Issues +407735,Consumer Issues,Consumer Issues +250069,Consumer Issues,Consumer Issues +230332,Consumer Issues,Consumer Issues +228642,Consumer Issues,Consumer Issues +228641,Consumer Issues,Consumer Issues +228639,Consumer Issues,Consumer Issues +228635,Consumer Issues,Consumer Issues +228633,Consumer Issues,Consumer Issues +228632,Consumer Issues,Consumer Issues +228631,Consumer Issues,Consumer Issues +228630,Consumer Issues,Consumer Issues +347118,Consumer Issues,Consumer Issues +343784,Consumer Issues,Consumer Issues +343782,Consumer Issues,Consumer Issues +343780,Consumer Issues,Consumer Issues +343777,Consumer Issues,Consumer Issues +341688,Consumer Issues,Consumer Issues +341686,Consumer Issues,Consumer Issues +341682,Consumer Issues,Consumer Issues +341677,Consumer Issues,Consumer Issues +341672,Consumer Issues,Consumer Issues +338070,Consumer Issues,Consumer Issues +338069,Consumer Issues,Consumer Issues +338068,Consumer Issues,Consumer Issues +338067,Consumer Issues,Consumer Issues +338066,Consumer Issues,Consumer Issues +338065,Consumer Issues,Consumer Issues +338064,Consumer Issues,Consumer Issues +338062,Consumer Issues,Consumer Issues +338061,Consumer Issues,Consumer Issues +338060,Consumer Issues,Consumer Issues +338059,Consumer Issues,Consumer Issues +338055,Consumer Issues,Consumer Issues +338053,Consumer Issues,Consumer Issues +338051,Consumer Issues,Consumer Issues +338049,Consumer Issues,Consumer Issues +338047,Consumer Issues,Consumer Issues +338046,Consumer Issues,Consumer Issues +338045,Consumer Issues,Consumer Issues +338043,Consumer Issues,Consumer Issues +338042,Consumer Issues,Consumer Issues +338041,Consumer Issues,Consumer Issues +338040,Consumer Issues,Consumer Issues +338039,Consumer Issues,Consumer Issues +338038,Consumer Issues,Consumer Issues +338037,Consumer Issues,Consumer Issues +338035,Consumer Issues,Consumer Issues +338033,Consumer Issues,Consumer Issues +338027,Consumer Issues,Consumer Issues +335631,Consumer Issues,Consumer Issues +335628,Consumer Issues,Consumer Issues +335625,Consumer Issues,Consumer Issues +335620,Consumer Issues,Consumer Issues +335058,Consumer Issues,Consumer Issues +333538,Consumer Issues,Consumer Issues +331024,Consumer Issues,Consumer Issues +329883,Consumer Issues,Consumer Issues +329882,Consumer Issues,Consumer Issues +327332,Consumer Issues,Consumer Issues +327331,Consumer Issues,Consumer Issues +327174,Consumer Issues,Consumer Issues +327173,Consumer Issues,Consumer Issues +327171,Consumer Issues,Consumer Issues +327169,Consumer Issues,Consumer Issues +324739,Consumer Issues,Consumer Issues +324734,Consumer Issues,Consumer Issues +324733,Consumer Issues,Consumer Issues +324731,Consumer Issues,Consumer Issues +321804,Consumer Issues,Consumer Issues +321800,Consumer Issues,Consumer Issues +321799,Consumer Issues,Consumer Issues +321798,Consumer Issues,Consumer Issues +321797,Consumer Issues,Consumer Issues +321796,Consumer Issues,Consumer Issues +321795,Consumer Issues,Consumer Issues +318797,Consumer Issues,Consumer Issues +318795,Consumer Issues,Consumer Issues +315873,Consumer Issues,Consumer Issues +315871,Consumer Issues,Consumer Issues +315854,Consumer Issues,Consumer Issues +315853,Consumer Issues,Consumer Issues +315852,Consumer Issues,Consumer Issues +312840,Consumer Issues,Consumer Issues +312751,Consumer Issues,Consumer Issues +312750,Consumer Issues,Consumer Issues +312749,Consumer Issues,Consumer Issues +308770,Consumer Issues,Consumer Issues +308769,Consumer Issues,Consumer Issues +308749,Consumer Issues,Consumer Issues +274609,Consumer Issues,Consumer Issues +267757,Consumer Issues,Consumer Issues +406375,Consumer Issues,Consumer Issues +406373,Consumer Issues,Consumer Issues +406372,Consumer Issues,Consumer Issues +406369,Consumer Issues,Consumer Issues +405665,Consumer Issues,Consumer Issues +405663,Consumer Issues,Consumer Issues +405661,Consumer Issues,Consumer Issues +405656,Consumer Issues,Consumer Issues +403358,Consumer Issues,Consumer Issues +403355,Consumer Issues,Consumer Issues +403353,Consumer Issues,Consumer Issues +398733,Consumer Issues,Consumer Issues +398724,Consumer Issues,Consumer Issues +398711,Consumer Issues,Consumer Issues +398708,Consumer Issues,Consumer Issues +396867,Consumer Issues,Consumer Issues +396806,Consumer Issues,Consumer Issues +396791,Consumer Issues,Consumer Issues +396783,Consumer Issues,Consumer Issues +396777,Consumer Issues,Consumer Issues +396772,Consumer Issues,Consumer Issues +396766,Consumer Issues,Consumer Issues +394345,Consumer Issues,Consumer Issues +394342,Consumer Issues,Consumer Issues +390444,Consumer Issues,Consumer Issues +390443,Consumer Issues,Consumer Issues +390442,Consumer Issues,Consumer Issues +390441,Consumer Issues,Consumer Issues +390439,Consumer Issues,Consumer Issues +390437,Consumer Issues,Consumer Issues +388408,Consumer Issues,Consumer Issues +388404,Consumer Issues,Consumer Issues +388401,Consumer Issues,Consumer Issues +388398,Consumer Issues,Consumer Issues +388395,Consumer Issues,Consumer Issues +388389,Consumer Issues,Consumer Issues +388385,Consumer Issues,Consumer Issues +388377,Consumer Issues,Consumer Issues +388370,Consumer Issues,Consumer Issues +388366,Consumer Issues,Consumer Issues +388361,Consumer Issues,Consumer Issues +388355,Consumer Issues,Consumer Issues +388352,Consumer Issues,Consumer Issues +388348,Consumer Issues,Consumer Issues +388346,Consumer Issues,Consumer Issues +388345,Consumer Issues,Consumer Issues +388344,Consumer Issues,Consumer Issues +388343,Consumer Issues,Consumer Issues +388341,Consumer Issues,Consumer Issues +388340,Consumer Issues,Consumer Issues +388337,Consumer Issues,Consumer Issues +388334,Consumer Issues,Consumer Issues +388331,Consumer Issues,Consumer Issues +388328,Consumer Issues,Consumer Issues +388325,Consumer Issues,Consumer Issues +388320,Consumer Issues,Consumer Issues +388314,Consumer Issues,Consumer Issues +388310,Consumer Issues,Consumer Issues +388300,Consumer Issues,Consumer Issues +388299,Consumer Issues,Consumer Issues +388298,Consumer Issues,Consumer Issues +388295,Consumer Issues,Consumer Issues +388291,Consumer Issues,Consumer Issues +388288,Consumer Issues,Consumer Issues +388286,Consumer Issues,Consumer Issues +388284,Consumer Issues,Consumer Issues +388280,Consumer Issues,Consumer Issues +388278,Consumer Issues,Consumer Issues +388271,Consumer Issues,Consumer Issues +388264,Consumer Issues,Consumer Issues +385536,Consumer Issues,Consumer Issues +385533,Consumer Issues,Consumer Issues +385530,Consumer Issues,Consumer Issues +385526,Consumer Issues,Consumer Issues +385407,Consumer Issues,Consumer Issues +385401,Consumer Issues,Consumer Issues +385399,Consumer Issues,Consumer Issues +385396,Consumer Issues,Consumer Issues +383674,Consumer Issues,Consumer Issues +383671,Consumer Issues,Consumer Issues +382509,Consumer Issues,Consumer Issues +381773,Consumer Issues,Consumer Issues +381771,Consumer Issues,Consumer Issues +381770,Consumer Issues,Consumer Issues +381769,Consumer Issues,Consumer Issues +381766,Consumer Issues,Consumer Issues +381325,Consumer Issues,Consumer Issues +381323,Consumer Issues,Consumer Issues +381317,Consumer Issues,Consumer Issues +381315,Consumer Issues,Consumer Issues +381313,Consumer Issues,Consumer Issues +381309,Consumer Issues,Consumer Issues +381308,Consumer Issues,Consumer Issues +381303,Consumer Issues,Consumer Issues +381301,Consumer Issues,Consumer Issues +379909,Consumer Issues,Consumer Issues +379907,Consumer Issues,Consumer Issues +379905,Consumer Issues,Consumer Issues +379711,Consumer Issues,Consumer Issues +379708,Consumer Issues,Consumer Issues +379706,Consumer Issues,Consumer Issues +376799,Consumer Issues,Consumer Issues +376798,Consumer Issues,Consumer Issues +376794,Consumer Issues,Consumer Issues +374824,Consumer Issues,Consumer Issues +374821,Consumer Issues,Consumer Issues +372530,Consumer Issues,Consumer Issues +372528,Consumer Issues,Consumer Issues +372527,Consumer Issues,Consumer Issues +372525,Consumer Issues,Consumer Issues +372521,Consumer Issues,Consumer Issues +372520,Consumer Issues,Consumer Issues +372518,Consumer Issues,Consumer Issues +369123,Consumer Issues,Consumer Issues +366754,Consumer Issues,Consumer Issues +363462,Consumer Issues,Consumer Issues +363458,Consumer Issues,Consumer Issues +363457,Consumer Issues,Consumer Issues +362351,Consumer Issues,Consumer Issues +362306,Consumer Issues,Consumer Issues +361190,Consumer Issues,Consumer Issues +359867,Consumer Issues,Consumer Issues +359759,Consumer Issues,Consumer Issues +359758,Consumer Issues,Consumer Issues +359748,Consumer Issues,Consumer Issues +359746,Consumer Issues,Consumer Issues +359745,Consumer Issues,Consumer Issues +359744,Consumer Issues,Consumer Issues +359742,Consumer Issues,Consumer Issues +359738,Consumer Issues,Consumer Issues +357961,Consumer Issues,Consumer Issues +357960,Consumer Issues,Consumer Issues +357959,Consumer Issues,Consumer Issues +357958,Consumer Issues,Consumer Issues +355938,Consumer Issues,Consumer Issues +355937,Consumer Issues,Consumer Issues +355935,Consumer Issues,Consumer Issues +355934,Consumer Issues,Consumer Issues +353651,Consumer Issues,Consumer Issues +353650,Consumer Issues,Consumer Issues +353649,Consumer Issues,Consumer Issues +353647,Consumer Issues,Consumer Issues +353644,Consumer Issues,Consumer Issues +353643,Consumer Issues,Consumer Issues +351550,Consumer Issues,Consumer Issues +351549,Consumer Issues,Consumer Issues +351547,Consumer Issues,Consumer Issues +351546,Consumer Issues,Consumer Issues +349247,Consumer Issues,Consumer Issues +349246,Consumer Issues,Consumer Issues +349243,Consumer Issues,Consumer Issues +349219,Consumer Issues,Consumer Issues +349209,Consumer Issues,Consumer Issues +349206,Consumer Issues,Consumer Issues +349201,Consumer Issues,Consumer Issues +349198,Consumer Issues,Consumer Issues +349195,Consumer Issues,Consumer Issues +349191,Consumer Issues,Consumer Issues +349179,Consumer Issues,Consumer Issues +347130,Consumer Issues,Consumer Issues +347129,Consumer Issues,Consumer Issues +347128,Consumer Issues,Consumer Issues +347127,Consumer Issues,Consumer Issues +507567,Consumer Issues,Consumer Issues +481482,Consumer Issues,Consumer Issues +473755,Consumer Issues,Consumer Issues +473751,Consumer Issues,Consumer Issues +473748,Consumer Issues,Consumer Issues +473742,Consumer Issues,Consumer Issues +470970,Consumer Issues,Consumer Issues +470968,Consumer Issues,Consumer Issues +470963,Consumer Issues,Consumer Issues +470955,Consumer Issues,Consumer Issues +470919,Consumer Issues,Consumer Issues +467494,Consumer Issues,Consumer Issues +467490,Consumer Issues,Consumer Issues +467487,Consumer Issues,Consumer Issues +464202,Consumer Issues,Consumer Issues +462940,Consumer Issues,Consumer Issues +460022,Consumer Issues,Consumer Issues +459485,Consumer Issues,Consumer Issues +459484,Consumer Issues,Consumer Issues +459483,Consumer Issues,Consumer Issues +459481,Consumer Issues,Consumer Issues +459479,Consumer Issues,Consumer Issues +459478,Consumer Issues,Consumer Issues +457166,Consumer Issues,Consumer Issues +455142,Consumer Issues,Consumer Issues +455140,Consumer Issues,Consumer Issues +455139,Consumer Issues,Consumer Issues +455137,Consumer Issues,Consumer Issues +455133,Consumer Issues,Consumer Issues +455131,Consumer Issues,Consumer Issues +455129,Consumer Issues,Consumer Issues +452261,Consumer Issues,Consumer Issues +452259,Consumer Issues,Consumer Issues +449028,Consumer Issues,Consumer Issues +449027,Consumer Issues,Consumer Issues +445325,Consumer Issues,Consumer Issues +445324,Consumer Issues,Consumer Issues +445321,Consumer Issues,Consumer Issues +443661,Consumer Issues,Consumer Issues +443660,Consumer Issues,Consumer Issues +443656,Consumer Issues,Consumer Issues +441609,Consumer Issues,Consumer Issues +441607,Consumer Issues,Consumer Issues +439405,Consumer Issues,Consumer Issues +439399,Consumer Issues,Consumer Issues +439396,Consumer Issues,Consumer Issues +439389,Consumer Issues,Consumer Issues +439386,Consumer Issues,Consumer Issues +439375,Consumer Issues,Consumer Issues +439368,Consumer Issues,Consumer Issues +439363,Consumer Issues,Consumer Issues +435598,Consumer Issues,Consumer Issues +433522,Consumer Issues,Consumer Issues +429157,Consumer Issues,Consumer Issues +426158,Consumer Issues,Consumer Issues +426156,Consumer Issues,Consumer Issues +423484,Consumer Issues,Consumer Issues +423483,Consumer Issues,Consumer Issues +423481,Consumer Issues,Consumer Issues +421624,Consumer Issues,Consumer Issues +421622,Consumer Issues,Consumer Issues +421618,Consumer Issues,Consumer Issues +419466,Consumer Issues,Consumer Issues +419464,Consumer Issues,Consumer Issues +418334,Consumer Issues,Consumer Issues +418333,Consumer Issues,Consumer Issues +418332,Consumer Issues,Consumer Issues +418331,Consumer Issues,Consumer Issues +418330,Consumer Issues,Consumer Issues +417111,Consumer Issues,Consumer Issues +417105,Consumer Issues,Consumer Issues +416797,Consumer Issues,Consumer Issues +416794,Consumer Issues,Consumer Issues +416790,Consumer Issues,Consumer Issues +416788,Consumer Issues,Consumer Issues +409701,Consumer Issues,Consumer Issues +409699,Consumer Issues,Consumer Issues +409680,Consumer Issues,Consumer Issues +409673,Consumer Issues,Consumer Issues +409669,Consumer Issues,Consumer Issues +409666,Consumer Issues,Consumer Issues +409663,Consumer Issues,Consumer Issues +407750,Consumer Issues,Consumer Issues +407747,Consumer Issues,Consumer Issues +407745,Consumer Issues,Consumer Issues +407742,Consumer Issues,Consumer Issues +228629,Financial Institutions,Financial Institutions +372520,Financial Institutions,Financial Institutions +106597,Financial Institutions,Financial Institutions +106596,Financial Institutions,Financial Institutions +106595,Financial Institutions,Financial Institutions +102377,Financial Institutions,Financial Institutions +94674,Financial Institutions,Financial Institutions +94655,Financial Institutions,Financial Institutions +212515,Financial Institutions,Financial Institutions +212506,Financial Institutions,Financial Institutions +212503,Financial Institutions,Financial Institutions +212496,Financial Institutions,Financial Institutions +161452,Financial Institutions,Financial Institutions +160370,Financial Institutions,Financial Institutions +107415,Financial Institutions,Financial Institutions +107414,Financial Institutions,Financial Institutions +106598,Financial Institutions,Financial Institutions +305570,Financial Institutions,Financial Institutions +305569,Financial Institutions,Financial Institutions +273673,Financial Institutions,Financial Institutions +267753,Financial Institutions,Financial Institutions +267752,Financial Institutions,Financial Institutions +250327,Financial Institutions,Financial Institutions +250325,Financial Institutions,Financial Institutions +250321,Financial Institutions,Financial Institutions +250317,Financial Institutions,Financial Institutions +250312,Financial Institutions,Financial Institutions +250307,Financial Institutions,Financial Institutions +250069,Financial Institutions,Financial Institutions +233310,Financial Institutions,Financial Institutions +532541,Health,Health +504996,Health,Health +106594,Health,Health +158540,Health,Health +308770,Health,Health +273672,Health,Health +267756,Health,Health +264516,Health,Health +250342,Health,Health +250338,Health,Health +250335,Health,Health +250330,Health,Health +250328,Health,Health +250069,Health,Health +240800,Health,Health +240797,Health,Health +233309,Health,Health +230346,Health,Health +228640,Health,Health +228636,Health,Health +485614,Health,Health +485613,Health,Health +485612,Health,Health +485611,Health,Health +485610,Health,Health +481493,Health,Health +481488,Health,Health +329882,Health,Health +318795,Health,Health +327173,Immigration,Immigration +481483,Industry,Industry +481482,Industry,Industry +305571,Industry,Industry +305529,Industry,Industry +274609,Industry,Industry +250323,Industry,Industry +250317,Industry,Industry +250295,Industry,Industry +489354,Industry,Industry +481503,Industry,Industry +481493,Industry,Industry +481488,Industry,Industry +160494,Intellectual Property,Intellectual Property +160319,Intellectual Property,Intellectual Property +160317,Intellectual Property,Intellectual Property +228637,Intellectual Property,Intellectual Property +175798,Intellectual Property,Intellectual Property +467490,Internal Trade,Internal Trade +388355,International Relations,International Relations +388341,International Trade,International Trade +530144,International Trade,International Trade +388340,International Trade,International Trade +388337,International Trade,International Trade +388334,International Trade,International Trade +388331,International Trade,International Trade +388328,International Trade,International Trade +388325,International Trade,International Trade +388320,International Trade,International Trade +388314,International Trade,International Trade +388310,International Trade,International Trade +388300,International Trade,International Trade +388299,International Trade,International Trade +388298,International Trade,International Trade +388295,International Trade,International Trade +388291,International Trade,International Trade +388288,International Trade,International Trade +388286,International Trade,International Trade +388284,International Trade,International Trade +388280,International Trade,International Trade +388278,International Trade,International Trade +388271,International Trade,International Trade +388264,International Trade,International Trade +385536,International Trade,International Trade +385533,International Trade,International Trade +385530,International Trade,International Trade +385526,International Trade,International Trade +385407,International Trade,International Trade +385401,International Trade,International Trade +385399,International Trade,International Trade +385396,International Trade,International Trade +308749,International Trade,International Trade +503741,International Trade,International Trade +473755,International Trade,International Trade +473751,International Trade,International Trade +473748,International Trade,International Trade +473742,International Trade,International Trade +470970,International Trade,International Trade +470968,International Trade,International Trade +470963,International Trade,International Trade +470955,International Trade,International Trade +470919,International Trade,International Trade +467494,International Trade,International Trade +467487,International Trade,International Trade +464202,International Trade,International Trade +462940,International Trade,International Trade +460022,International Trade,International Trade +459485,International Trade,International Trade +459484,International Trade,International Trade +459483,International Trade,International Trade +459481,International Trade,International Trade +459479,International Trade,International Trade +459478,International Trade,International Trade +457166,International Trade,International Trade +455142,International Trade,International Trade +455140,International Trade,International Trade +455139,International Trade,International Trade +455137,International Trade,International Trade +455133,International Trade,International Trade +455131,International Trade,International Trade +455129,International Trade,International Trade +452261,International Trade,International Trade +452259,International Trade,International Trade +449028,International Trade,International Trade +449027,International Trade,International Trade +445325,International Trade,International Trade +445324,International Trade,International Trade +445321,International Trade,International Trade +443661,International Trade,International Trade +443660,International Trade,International Trade +443656,International Trade,International Trade +441609,International Trade,International Trade +441607,International Trade,International Trade +439405,International Trade,International Trade +439399,International Trade,International Trade +439396,International Trade,International Trade +439389,International Trade,International Trade +439386,International Trade,International Trade +439375,International Trade,International Trade +439368,International Trade,International Trade +439363,International Trade,International Trade +435598,International Trade,International Trade +433522,International Trade,International Trade +429157,International Trade,International Trade +426158,International Trade,International Trade +426156,International Trade,International Trade +423484,International Trade,International Trade +423483,International Trade,International Trade +423481,International Trade,International Trade +421624,International Trade,International Trade +421622,International Trade,International Trade +421618,International Trade,International Trade +419466,International Trade,International Trade +419464,International Trade,International Trade +418334,International Trade,International Trade +418333,International Trade,International Trade +418332,International Trade,International Trade +418331,International Trade,International Trade +418330,International Trade,International Trade +417105,International Trade,International Trade +416797,International Trade,International Trade +416794,International Trade,International Trade +416790,International Trade,International Trade +416788,International Trade,International Trade +409701,International Trade,International Trade +409699,International Trade,International Trade +409680,International Trade,International Trade +409673,International Trade,International Trade +409669,International Trade,International Trade +409666,International Trade,International Trade +409663,International Trade,International Trade +409661,International Trade,International Trade +407750,International Trade,International Trade +407747,International Trade,International Trade +407745,International Trade,International Trade +407742,International Trade,International Trade +407740,International Trade,International Trade +407737,International Trade,International Trade +407735,International Trade,International Trade +406375,International Trade,International Trade +406373,International Trade,International Trade +406372,International Trade,International Trade +406369,International Trade,International Trade +405665,International Trade,International Trade +405663,International Trade,International Trade +405661,International Trade,International Trade +405656,International Trade,International Trade +403358,International Trade,International Trade +403355,International Trade,International Trade +403353,International Trade,International Trade +398733,International Trade,International Trade +398724,International Trade,International Trade +398711,International Trade,International Trade +398708,International Trade,International Trade +396867,International Trade,International Trade +396806,International Trade,International Trade +396791,International Trade,International Trade +396783,International Trade,International Trade +396777,International Trade,International Trade +396772,International Trade,International Trade +396766,International Trade,International Trade +394345,International Trade,International Trade +394342,International Trade,International Trade +390444,International Trade,International Trade +390443,International Trade,International Trade +390442,International Trade,International Trade +390441,International Trade,International Trade +390439,International Trade,International Trade +388408,International Trade,International Trade +388404,International Trade,International Trade +388401,International Trade,International Trade +388398,International Trade,International Trade +388395,International Trade,International Trade +388389,International Trade,International Trade +388385,International Trade,International Trade +388377,International Trade,International Trade +388370,International Trade,International Trade +388366,International Trade,International Trade +388361,International Trade,International Trade +388352,International Trade,International Trade +388348,International Trade,International Trade +388346,International Trade,International Trade +388345,International Trade,International Trade +388344,International Trade,International Trade +512791,Health,Health +512789,Health,Health +172750,Health,Health +162402,Health,Health +434745,Health,Health +427781,Health,Health +398550,Health,Health +512783,Health,Health +510593,Health,Health +510583,Health,Health +508246,Health,Health +508229,Health,Health +508217,Health,Health +505265,Health,Health +505253,Health,Health +505238,Health,Health +505228,Health,Health +501877,Health,Health +501841,Health,Health +501836,Health,Health +501830,Health,Health +498428,Health,Health +498410,Health,Health +495464,Health,Health +493177,Health,Health +493158,Health,Health +490471,Health,Health +490458,Health,Health +490414,Health,Health +487967,Health,Health +487569,Health,Health +487498,Health,Health +487487,Health,Health +485297,Health,Health +476470,Health,Health +476464,Health,Health +475499,Health,Health +472099,Health,Health +469157,Health,Health +469156,Health,Health +469146,Health,Health +469144,Health,Health +469143,Health,Health +469142,Health,Health +469141,Health,Health +469140,Health,Health +469139,Health,Health +469138,Health,Health +469136,Health,Health +469135,Health,Health +469133,Health,Health +469128,Health,Health +467829,Health,Health +467826,Health,Health +440692,Health,Health +543591,Health,Health +541491,Health,Health +539404,Health,Health +534772,Health,Health +534771,Health,Health +534770,Health,Health +534768,Health,Health +534767,Health,Health +534539,Health,Health +531540,Health,Health +531532,Health,Health +529103,Health,Health +529094,Health,Health +529071,Health,Health +529069,Health,Health +529062,Health,Health +525713,Health,Health +525704,Health,Health +525656,Health,Health +525642,Health,Health +522543,Health,Health +519724,Health,Health +519693,Health,Health +519688,Health,Health +517757,Health,Health +517756,Health,Health +515498,Health,Health +513589,Health,Health +513588,Health,Health +463036,Immigration,Immigration +462336,Immigration,Immigration +162402,Immigration,Immigration +161408,Immigration,Immigration +157486,Immigration,Immigration +157483,Immigration,Immigration +152089,Immigration,Immigration +256189,Immigration,Immigration +231589,Immigration,Immigration +230335,Immigration,Immigration +227930,Immigration,Immigration +208067,Immigration,Immigration +208027,Immigration,Immigration +208007,Immigration,Immigration +206197,Immigration,Immigration +187744,Immigration,Immigration +172750,Immigration,Immigration +382252,Immigration,Immigration +381603,Immigration,Immigration +381598,Immigration,Immigration +378645,Immigration,Immigration +376147,Immigration,Immigration +371002,Immigration,Immigration +370995,Immigration,Immigration +370993,Immigration,Immigration +370728,Immigration,Immigration +366082,Immigration,Immigration +361884,Immigration,Immigration +354821,Immigration,Immigration +354770,Immigration,Immigration +354769,Immigration,Immigration +348086,Immigration,Immigration +345598,Immigration,Immigration +344822,Immigration,Immigration +344821,Immigration,Immigration +337130,Immigration,Immigration +333118,Immigration,Immigration +323934,Immigration,Immigration +315730,Immigration,Immigration +315729,Immigration,Immigration +314392,Immigration,Immigration +314132,Immigration,Immigration +313389,Immigration,Immigration +311970,Immigration,Immigration +305317,Immigration,Immigration +289729,Immigration,Immigration +283889,Immigration,Immigration +276700,Immigration,Immigration +273310,Immigration,Immigration +264269,Immigration,Immigration +262210,Immigration,Immigration +259352,Immigration,Immigration +259350,Immigration,Immigration +259349,Immigration,Immigration +259332,Immigration,Immigration +444865,Immigration,Immigration +440698,Immigration,Immigration +439502,Immigration,Immigration +436649,Immigration,Immigration +436648,Immigration,Immigration +436647,Immigration,Immigration +436645,Immigration,Immigration +421185,Immigration,Immigration +393445,Immigration,Immigration +385452,Immigration,Immigration +385440,Immigration,Immigration +385405,Immigration,Immigration +541493,Immigration,Immigration +539148,Immigration,Immigration +537852,Immigration,Immigration +534653,Immigration,Immigration +531538,Immigration,Immigration +531537,Immigration,Immigration +531535,Immigration,Immigration +531506,Immigration,Immigration +529062,Immigration,Immigration +522536,Immigration,Immigration +519708,Immigration,Immigration +515505,Immigration,Immigration +505239,Immigration,Immigration +498431,Immigration,Immigration +493153,Immigration,Immigration +490431,Immigration,Immigration +490424,Immigration,Immigration +480051,Immigration,Immigration +472530,Immigration,Immigration +472500,Immigration,Immigration +472478,Immigration,Immigration +472106,Immigration,Immigration +469155,Immigration,Immigration +469154,Immigration,Immigration +469151,Immigration,Immigration +469150,Immigration,Immigration +469149,Immigration,Immigration +469147,Immigration,Immigration +464106,Immigration,Immigration +464102,Immigration,Immigration +508224,Intellectual Property,Intellectual Property +476470,Intellectual Property,Intellectual Property +137197,Intellectual Property,Intellectual Property +132884,Intellectual Property,Intellectual Property +129896,Intellectual Property,Intellectual Property +119514,Intellectual Property,Intellectual Property +114515,Intellectual Property,Intellectual Property +114514,Intellectual Property,Intellectual Property +109897,Intellectual Property,Intellectual Property +94158,Intellectual Property,Intellectual Property +160587,Intellectual Property,Intellectual Property +160586,Intellectual Property,Intellectual Property +159002,Intellectual Property,Intellectual Property +158316,Intellectual Property,Intellectual Property +157487,Intellectual Property,Intellectual Property +156856,Intellectual Property,Intellectual Property +156829,Intellectual Property,Intellectual Property +156822,Intellectual Property,Intellectual Property +156805,Intellectual Property,Intellectual Property +152087,Intellectual Property,Intellectual Property +152079,Intellectual Property,Intellectual Property +152077,Intellectual Property,Intellectual Property +147861,Intellectual Property,Intellectual Property +145423,Intellectual Property,Intellectual Property +145422,Intellectual Property,Intellectual Property +145421,Intellectual Property,Intellectual Property +145419,Intellectual Property,Intellectual Property +145418,Intellectual Property,Intellectual Property +145417,Intellectual Property,Intellectual Property +142056,Intellectual Property,Intellectual Property +142055,Intellectual Property,Intellectual Property +142054,Intellectual Property,Intellectual Property +142040,Intellectual Property,Intellectual Property +211129,Intellectual Property,Intellectual Property +208067,Intellectual Property,Intellectual Property +199806,Intellectual Property,Intellectual Property +199798,Intellectual Property,Intellectual Property +196449,Intellectual Property,Intellectual Property +192404,Intellectual Property,Intellectual Property +185764,Intellectual Property,Intellectual Property +181184,Intellectual Property,Intellectual Property +175201,Intellectual Property,Intellectual Property +175200,Intellectual Property,Intellectual Property +175199,Intellectual Property,Intellectual Property +175194,Intellectual Property,Intellectual Property +172751,Intellectual Property,Intellectual Property +172750,Intellectual Property,Intellectual Property +172744,Intellectual Property,Intellectual Property +168641,Intellectual Property,Intellectual Property +165457,Intellectual Property,Intellectual Property +165451,Intellectual Property,Intellectual Property +165450,Intellectual Property,Intellectual Property +165448,Intellectual Property,Intellectual Property +165005,Intellectual Property,Intellectual Property +163432,Intellectual Property,Intellectual Property +163431,Intellectual Property,Intellectual Property +163430,Intellectual Property,Intellectual Property +163429,Intellectual Property,Intellectual Property +163428,Intellectual Property,Intellectual Property +434743,Intellectual Property,Intellectual Property +432871,Intellectual Property,Intellectual Property +393618,Intellectual Property,Intellectual Property +392326,Intellectual Property,Intellectual Property +385440,Intellectual Property,Intellectual Property +376137,Intellectual Property,Intellectual Property +374385,Intellectual Property,Intellectual Property +374381,Intellectual Property,Intellectual Property +374378,Intellectual Property,Intellectual Property +366083,Intellectual Property,Intellectual Property +365273,Intellectual Property,Intellectual Property +354919,Intellectual Property,Intellectual Property +354821,Intellectual Property,Intellectual Property +349558,Intellectual Property,Intellectual Property +347018,Intellectual Property,Intellectual Property +347017,Intellectual Property,Intellectual Property +337130,Intellectual Property,Intellectual Property +324689,Intellectual Property,Intellectual Property +314132,Intellectual Property,Intellectual Property +309575,Intellectual Property,Intellectual Property +284689,Intellectual Property,Intellectual Property +264270,Intellectual Property,Intellectual Property +264269,Intellectual Property,Intellectual Property +262210,Intellectual Property,Intellectual Property +259359,Intellectual Property,Intellectual Property +259356,Intellectual Property,Intellectual Property +259352,Intellectual Property,Intellectual Property +259350,Intellectual Property,Intellectual Property +259349,Intellectual Property,Intellectual Property +259332,Intellectual Property,Intellectual Property +259330,Intellectual Property,Intellectual Property +259329,Intellectual Property,Intellectual Property +253690,Intellectual Property,Intellectual Property +250014,Intellectual Property,Intellectual Property +240313,Intellectual Property,Intellectual Property +534667,Intellectual Property,Intellectual Property +534653,Intellectual Property,Intellectual Property +534651,Intellectual Property,Intellectual Property +534650,Intellectual Property,Intellectual Property +105350,Internal Trade,Internal Trade +76957,International Relations,International Relations +76955,International Relations,International Relations +76961,International Relations,International Relations +76960,International Relations,International Relations +76959,International Relations,International Relations +453813,International Trade,International Trade +453812,International Trade,International Trade +100422,International Trade,International Trade +94155,International Trade,International Trade +88399,International Trade,International Trade +83294,International Trade,International Trade +82194,International Trade,International Trade +76897,International Trade,International Trade +156805,International Trade,International Trade +154795,International Trade,International Trade +154788,International Trade,International Trade +152087,International Trade,International Trade +152079,International Trade,International Trade +152077,International Trade,International Trade +150292,International Trade,International Trade +149659,International Trade,International Trade +145916,International Trade,International Trade +145914,International Trade,International Trade +145908,International Trade,International Trade +145907,International Trade,International Trade +145906,International Trade,International Trade +145905,International Trade,International Trade +145430,International Trade,International Trade +145429,International Trade,International Trade +145428,International Trade,International Trade +145418,International Trade,International Trade +145417,International Trade,International Trade +142040,International Trade,International Trade +142038,International Trade,International Trade +142037,International Trade,International Trade +137197,International Trade,International Trade +132882,International Trade,International Trade +224668,International Trade,International Trade +213547,International Trade,International Trade +212350,International Trade,International Trade +211127,International Trade,International Trade +206195,International Trade,International Trade +206194,International Trade,International Trade +203849,International Trade,International Trade +199808,International Trade,International Trade +199807,International Trade,International Trade +199806,International Trade,International Trade +199803,International Trade,International Trade +196448,International Trade,International Trade +190924,International Trade,International Trade +190867,International Trade,International Trade +190866,International Trade,International Trade +190865,International Trade,International Trade +190864,International Trade,International Trade +189044,International Trade,International Trade +187747,International Trade,International Trade +187746,International Trade,International Trade +187745,International Trade,International Trade +185764,International Trade,International Trade +185744,International Trade,International Trade +177384,International Trade,International Trade +175205,International Trade,International Trade +175203,International Trade,International Trade +175199,International Trade,International Trade +175198,International Trade,International Trade +175197,International Trade,International Trade +175194,International Trade,International Trade +172756,International Trade,International Trade +172755,International Trade,International Trade +172752,International Trade,International Trade +172750,International Trade,International Trade +172747,International Trade,International Trade +172204,International Trade,International Trade +168635,International Trade,International Trade +167114,International Trade,International Trade +167113,International Trade,International Trade +165456,International Trade,International Trade +165446,International Trade,International Trade +165005,International Trade,International Trade +163432,International Trade,International Trade +162419,International Trade,International Trade +162402,International Trade,International Trade +162327,International Trade,International Trade +161408,International Trade,International Trade +159002,International Trade,International Trade +158315,International Trade,International Trade +158312,International Trade,International Trade +158016,International Trade,International Trade +158015,International Trade,International Trade +158013,International Trade,International Trade +158012,International Trade,International Trade +158010,International Trade,International Trade +156856,International Trade,International Trade +156829,International Trade,International Trade +382251,International Trade,International Trade +381584,International Trade,International Trade +378619,International Trade,International Trade +376137,International Trade,International Trade +374399,International Trade,International Trade +374395,International Trade,International Trade +374390,International Trade,International Trade +374385,International Trade,International Trade +374381,International Trade,International Trade +374378,International Trade,International Trade +371038,International Trade,International Trade +371037,International Trade,International Trade +367813,International Trade,International Trade +367810,International Trade,International Trade +364586,International Trade,International Trade +364585,International Trade,International Trade +364584,International Trade,International Trade +364583,International Trade,International Trade +364582,International Trade,International Trade +363103,International Trade,International Trade +361884,International Trade,International Trade +361003,International Trade,International Trade +359206,International Trade,International Trade +359205,International Trade,International Trade +356879,International Trade,International Trade +356816,International Trade,International Trade +356622,International Trade,International Trade +354919,International Trade,International Trade +354821,International Trade,International Trade +349557,International Trade,International Trade +348674,International Trade,International Trade +335772,International Trade,International Trade +335013,International Trade,International Trade +334164,International Trade,International Trade +332461,International Trade,International Trade +331247,International Trade,International Trade +330844,International Trade,International Trade +330513,International Trade,International Trade +328810,International Trade,International Trade +326553,International Trade,International Trade +324756,International Trade,International Trade +321715,International Trade,International Trade +321670,International Trade,International Trade +320309,International Trade,International Trade +317554,International Trade,International Trade +317029,International Trade,International Trade +314392,International Trade,International Trade +314391,International Trade,International Trade +314132,International Trade,International Trade +305316,International Trade,International Trade +305314,International Trade,International Trade +283889,International Trade,International Trade +283854,International Trade,International Trade +283853,International Trade,International Trade +283852,International Trade,International Trade +283851,International Trade,International Trade +283850,International Trade,International Trade +280549,International Trade,International Trade +276805,International Trade,International Trade +266909,International Trade,International Trade +264269,International Trade,International Trade +262229,International Trade,International Trade +262211,International Trade,International Trade +262210,International Trade,International Trade +262190,International Trade,International Trade +259352,International Trade,International Trade +259350,International Trade,International Trade +259349,International Trade,International Trade +259332,International Trade,International Trade +256170,International Trade,International Trade +250013,International Trade,International Trade +250009,International Trade,International Trade +246329,International Trade,International Trade +240313,International Trade,International Trade +240311,International Trade,International Trade +240309,International Trade,International Trade +230335,International Trade,International Trade +453811,International Trade,International Trade +452105,International Trade,International Trade +450863,International Trade,International Trade +448765,International Trade,International Trade +444745,International Trade,International Trade +444742,International Trade,International Trade +444739,International Trade,International Trade +443760,International Trade,International Trade +440696,International Trade,International Trade +439523,International Trade,International Trade +439520,International Trade,International Trade +439514,International Trade,International Trade +439510,International Trade,International Trade +439506,International Trade,International Trade +436638,International Trade,International Trade +436295,International Trade,International Trade +434753,International Trade,International Trade +434752,International Trade,International Trade +434751,International Trade,International Trade +434750,International Trade,International Trade +434748,International Trade,International Trade +434744,International Trade,International Trade +434743,International Trade,International Trade +434742,International Trade,International Trade +434693,International Trade,International Trade +434692,International Trade,International Trade +434690,International Trade,International Trade +432871,International Trade,International Trade +432869,International Trade,International Trade +432868,International Trade,International Trade +432240,International Trade,International Trade +431698,International Trade,International Trade +431612,International Trade,International Trade +431611,International Trade,International Trade +431609,International Trade,International Trade +431608,International Trade,International Trade +429999,International Trade,International Trade +429998,International Trade,International Trade +429997,International Trade,International Trade +429995,International Trade,International Trade +429994,International Trade,International Trade +428091,International Trade,International Trade +428088,International Trade,International Trade +428085,International Trade,International Trade +428083,International Trade,International Trade +428071,International Trade,International Trade +428068,International Trade,International Trade +427781,International Trade,International Trade +426378,International Trade,International Trade +426372,International Trade,International Trade +426370,International Trade,International Trade +423915,International Trade,International Trade +423912,International Trade,International Trade +423398,International Trade,International Trade +421199,International Trade,International Trade +421192,International Trade,International Trade +421191,International Trade,International Trade +421190,International Trade,International Trade +421189,International Trade,International Trade +421187,International Trade,International Trade +421185,International Trade,International Trade +419517,International Trade,International Trade +417766,International Trade,International Trade +417765,International Trade,International Trade +417763,International Trade,International Trade +417757,International Trade,International Trade +414865,International Trade,International Trade +414856,International Trade,International Trade +414848,International Trade,International Trade +414837,International Trade,International Trade +414835,International Trade,International Trade +409997,International Trade,International Trade +409995,International Trade,International Trade +409994,International Trade,International Trade +409993,International Trade,International Trade +409992,International Trade,International Trade +409985,International Trade,International Trade +409984,International Trade,International Trade +409983,International Trade,International Trade +409981,International Trade,International Trade +407477,International Trade,International Trade +407475,International Trade,International Trade +406483,International Trade,International Trade +406482,International Trade,International Trade +405239,International Trade,International Trade +403526,International Trade,International Trade +403516,International Trade,International Trade +400328,International Trade,International Trade +398550,International Trade,International Trade +398535,International Trade,International Trade +396797,International Trade,International Trade +395125,International Trade,International Trade +395118,International Trade,International Trade +395116,International Trade,International Trade +393622,International Trade,International Trade +393617,International Trade,International Trade +393606,International Trade,International Trade +393602,International Trade,International Trade +393601,International Trade,International Trade +393599,International Trade,International Trade +393593,International Trade,International Trade +393446,International Trade,International Trade +393444,International Trade,International Trade +393436,International Trade,International Trade +393434,International Trade,International Trade +389203,International Trade,International Trade +389201,International Trade,International Trade +387262,International Trade,International Trade +387257,International Trade,International Trade +385458,International Trade,International Trade +385440,International Trade,International Trade +383131,International Trade,International Trade +543593,International Trade,International Trade +534671,International Trade,International Trade +534667,International Trade,International Trade +534508,International Trade,International Trade +534505,International Trade,International Trade +531550,International Trade,International Trade +531547,International Trade,International Trade +531540,International Trade,International Trade +531538,International Trade,International Trade +531537,International Trade,International Trade +531522,International Trade,International Trade +531509,International Trade,International Trade +529094,International Trade,International Trade +529071,International Trade,International Trade +529062,International Trade,International Trade +525642,International Trade,International Trade +519718,International Trade,International Trade +519715,International Trade,International Trade +519705,International Trade,International Trade +519696,International Trade,International Trade +519690,International Trade,International Trade +519684,International Trade,International Trade +517758,International Trade,International Trade +517757,International Trade,International Trade +517756,International Trade,International Trade +515511,International Trade,International Trade +515498,International Trade,International Trade +515495,International Trade,International Trade +514697,International Trade,International Trade +512795,International Trade,International Trade +512766,International Trade,International Trade +508233,International Trade,International Trade +508220,International Trade,International Trade +508213,International Trade,International Trade +508210,International Trade,International Trade +508208,International Trade,International Trade +508188,International Trade,International Trade +505236,International Trade,International Trade +498457,International Trade,International Trade +498432,International Trade,International Trade +498424,International Trade,International Trade +495453,International Trade,International Trade +493155,International Trade,International Trade +493149,International Trade,International Trade +490476,International Trade,International Trade +490464,International Trade,International Trade +490437,International Trade,International Trade +487506,International Trade,International Trade +485289,International Trade,International Trade +485280,International Trade,International Trade +485258,International Trade,International Trade +480049,International Trade,International Trade +480044,International Trade,International Trade +480039,International Trade,International Trade +480032,International Trade,International Trade +480019,International Trade,International Trade +480015,International Trade,International Trade +476471,International Trade,International Trade +476462,International Trade,International Trade +476457,International Trade,International Trade +476456,International Trade,International Trade +476039,International Trade,International Trade +476036,International Trade,International Trade +472529,International Trade,International Trade +472528,International Trade,International Trade +472506,International Trade,International Trade +472504,International Trade,International Trade +472104,International Trade,International Trade +472102,International Trade,International Trade +469153,International Trade,International Trade +469134,International Trade,International Trade +469132,International Trade,International Trade +469128,International Trade,International Trade +467823,International Trade,International Trade +467802,International Trade,International Trade +467798,International Trade,International Trade +467790,International Trade,International Trade +467208,International Trade,International Trade +467206,International Trade,International Trade +467205,International Trade,International Trade +464103,International Trade,International Trade +463685,International Trade,International Trade +463062,International Trade,International Trade +463059,International Trade,International Trade +463057,International Trade,International Trade +463040,International Trade,International Trade +463031,International Trade,International Trade +462340,International Trade,International Trade +462336,International Trade,International Trade +462335,International Trade,International Trade +462250,International Trade,International Trade +460585,International Trade,International Trade +460018,International Trade,International Trade +457117,International Trade,International Trade +453852,International Trade,International Trade +453826,International Trade,International Trade +297590,Justice and Law Enforcement,Justice and Law Enforcement +297589,Justice and Law Enforcement,Justice and Law Enforcement +221127,Justice and Law Enforcement,Justice and Law Enforcement +199807,Justice and Law Enforcement,Justice and Law Enforcement +185764,Justice and Law Enforcement,Justice and Law Enforcement +181184,Justice and Law Enforcement,Justice and Law Enforcement +426370,Justice and Law Enforcement,Justice and Law Enforcement +376140,Justice and Law Enforcement,Justice and Law Enforcement +374398,Justice and Law Enforcement,Justice and Law Enforcement +370975,Justice and Law Enforcement,Justice and Law Enforcement +482173,Labour,Labour +482168,Labour,Labour +142036,Labour,Labour +142035,Labour,Labour +142034,Labour,Labour +128197,Labour,Labour +199810,Labour,Labour +190870,Labour,Labour +185764,Labour,Labour +176044,Labour,Labour +159002,Labour,Labour +158316,Labour,Labour +158310,Labour,Labour +158309,Labour,Labour +157486,Labour,Labour +157483,Labour,Labour +156829,Labour,Labour +152087,Labour,Labour +387147,Labour,Labour +387118,Labour,Labour +385452,Labour,Labour +385440,Labour,Labour +385429,Labour,Labour +385405,Labour,Labour +382252,Labour,Labour +376140,Labour,Labour +374385,Labour,Labour +374381,Labour,Labour +345598,Labour,Labour +344822,Labour,Labour +333118,Labour,Labour +330513,Labour,Labour +326554,Labour,Labour +324755,Labour,Labour +314391,Labour,Labour +314133,Labour,Labour +264269,Labour,Labour +262210,Labour,Labour +259352,Labour,Labour +259350,Labour,Labour +259349,Labour,Labour +259332,Labour,Labour +227930,Labour,Labour +212350,Labour,Labour +208067,Labour,Labour +208027,Labour,Labour +208007,Labour,Labour +206198,Labour,Labour +206197,Labour,Labour +469137,Labour,Labour +541492,Labour,Labour +537838,Labour,Labour +534751,Labour,Labour +534671,Labour,Labour +534650,Labour,Labour +534640,Labour,Labour +525656,Labour,Labour +519693,Labour,Labour +519684,Labour,Labour +447229,Regional Development,Regional Development +444743,Regional Development,Regional Development +192401,Regional Development,Regional Development +190872,Regional Development,Regional Development +190863,Regional Development,Regional Development +187748,Regional Development,Regional Development +185764,Regional Development,Regional Development +176064,Regional Development,Regional Development +175202,Regional Development,Regional Development +337131,Regional Development,Regional Development +333118,Regional Development,Regional Development +293210,Regional Development,Regional Development +288431,Regional Development,Regional Development +283889,Regional Development,Regional Development +256171,Regional Development,Regional Development +251677,Regional Development,Regional Development +251676,Regional Development,Regional Development +230344,Regional Development,Regional Development +393441,Regional Development,Regional Development +383130,Regional Development,Regional Development +382248,Regional Development,Regional Development +381568,Regional Development,Regional Development +376139,Regional Development,Regional Development +374385,Regional Development,Regional Development +374381,Regional Development,Regional Development +374378,Regional Development,Regional Development +370962,Regional Development,Regional Development +359208,Regional Development,Regional Development +359207,Regional Development,Regional Development +359204,Regional Development,Regional Development +349558,Regional Development,Regional Development +348084,Regional Development,Regional Development +345598,Regional Development,Regional Development +344822,Regional Development,Regional Development +344820,Regional Development,Regional Development +344818,Regional Development,Regional Development +344522,Regional Development,Regional Development +472099,Regional Development,Regional Development +462342,Regional Development,Regional Development +480052,Small Business,Small Business +480044,Small Business,Small Business +208027,Small Business,Small Business +208007,Small Business,Small Business +206197,Small Business,Small Business +206194,Small Business,Small Business +196447,Small Business,Small Business +190863,Small Business,Small Business +185764,Small Business,Small Business +172750,Small Business,Small Business +165459,Small Business,Small Business +163432,Small Business,Small Business +162419,Small Business,Small Business +162402,Small Business,Small Business +159002,Small Business,Small Business +156829,Small Business,Small Business +154792,Small Business,Small Business +152089,Small Business,Small Business +142040,Small Business,Small Business +374385,Small Business,Small Business +374381,Small Business,Small Business +374378,Small Business,Small Business +370968,Small Business,Small Business +370962,Small Business,Small Business +361884,Small Business,Small Business +361003,Small Business,Small Business +355641,Small Business,Small Business +354919,Small Business,Small Business +348085,Small Business,Small Business +348084,Small Business,Small Business +345598,Small Business,Small Business +344822,Small Business,Small Business +344820,Small Business,Small Business +344522,Small Business,Small Business +337130,Small Business,Small Business +334165,Small Business,Small Business +333118,Small Business,Small Business +330513,Small Business,Small Business +314391,Small Business,Small Business +314133,Small Business,Small Business +288431,Small Business,Small Business +283889,Small Business,Small Business +264269,Small Business,Small Business +262210,Small Business,Small Business +259354,Small Business,Small Business +259352,Small Business,Small Business +259350,Small Business,Small Business +259349,Small Business,Small Business +259332,Small Business,Small Business +256171,Small Business,Small Business +256169,Small Business,Small Business +251677,Small Business,Small Business +251676,Small Business,Small Business +227931,Small Business,Small Business +480043,Small Business,Small Business +480039,Small Business,Small Business +480037,Small Business,Small Business +480032,Small Business,Small Business +480019,Small Business,Small Business +480015,Small Business,Small Business +478051,Small Business,Small Business +478050,Small Business,Small Business +478048,Small Business,Small Business +478045,Small Business,Small Business +477536,Small Business,Small Business +477528,Small Business,Small Business +477526,Small Business,Small Business +476470,Small Business,Small Business +476457,Small Business,Small Business +475516,Small Business,Small Business +475514,Small Business,Small Business +475510,Small Business,Small Business +472495,Small Business,Small Business +469146,Small Business,Small Business +469144,Small Business,Small Business +469143,Small Business,Small Business +469142,Small Business,Small Business +469139,Small Business,Small Business +469132,Small Business,Small Business +469129,Small Business,Small Business +467210,Small Business,Small Business +464099,Small Business,Small Business +463042,Small Business,Small Business +462340,Small Business,Small Business +462336,Small Business,Small Business +462335,Small Business,Small Business +462250,Small Business,Small Business +453823,Small Business,Small Business +453821,Small Business,Small Business +453820,Small Business,Small Business +453817,Small Business,Small Business +453815,Small Business,Small Business +450859,Small Business,Small Business +448771,Small Business,Small Business +448770,Small Business,Small Business +448767,Small Business,Small Business +447224,Small Business,Small Business +440697,Small Business,Small Business +440694,Small Business,Small Business +439535,Small Business,Small Business +439492,Small Business,Small Business +434752,Small Business,Small Business +434745,Small Business,Small Business +432871,Small Business,Small Business +432866,Small Business,Small Business +431611,Small Business,Small Business +429996,Small Business,Small Business +429991,Small Business,Small Business +428088,Small Business,Small Business +428074,Small Business,Small Business +426362,Small Business,Small Business +423909,Small Business,Small Business +423398,Small Business,Small Business +421185,Small Business,Small Business +414855,Small Business,Small Business +414850,Small Business,Small Business +409991,Small Business,Small Business +409990,Small Business,Small Business +409989,Small Business,Small Business +409988,Small Business,Small Business +409987,Small Business,Small Business +409986,Small Business,Small Business +409980,Small Business,Small Business +409979,Small Business,Small Business +409978,Small Business,Small Business +409977,Small Business,Small Business +407752,Small Business,Small Business +407522,Small Business,Small Business +407477,Small Business,Small Business +407476,Small Business,Small Business +406484,Small Business,Small Business +406480,Small Business,Small Business +405239,Small Business,Small Business +403526,Small Business,Small Business +400311,Small Business,Small Business +398542,Small Business,Small Business +398537,Small Business,Small Business +389208,Small Business,Small Business +389205,Small Business,Small Business +387112,Small Business,Small Business +385452,Small Business,Small Business +385440,Small Business,Small Business +385435,Small Business,Small Business +385429,Small Business,Small Business +385405,Small Business,Small Business +382248,Small Business,Small Business +381591,Small Business,Small Business +381584,Small Business,Small Business +381568,Small Business,Small Business +376140,Small Business,Small Business +376137,Small Business,Small Business +376136,Small Business,Small Business +543595,Small Business,Small Business +539151,Small Business,Small Business +539146,Small Business,Small Business +534640,Small Business,Small Business +534505,Small Business,Small Business +531506,Small Business,Small Business +529062,Small Business,Small Business +525656,Small Business,Small Business +519724,Small Business,Small Business +519693,Small Business,Small Business +519690,Small Business,Small Business +519688,Small Business,Small Business +519684,Small Business,Small Business +517766,Small Business,Small Business +517764,Small Business,Small Business +517762,Small Business,Small Business +515511,Small Business,Small Business +515508,Small Business,Small Business +515505,Small Business,Small Business +515504,Small Business,Small Business +515501,Small Business,Small Business +512801,Small Business,Small Business +512800,Small Business,Small Business +512798,Small Business,Small Business +512794,Small Business,Small Business +512793,Small Business,Small Business +512792,Small Business,Small Business +512791,Small Business,Small Business +512789,Small Business,Small Business +512782,Small Business,Small Business +512773,Small Business,Small Business +510883,Small Business,Small Business +510882,Small Business,Small Business +510688,Small Business,Small Business +510593,Small Business,Small Business +510585,Small Business,Small Business +508265,Small Business,Small Business +508263,Small Business,Small Business +508262,Small Business,Small Business +505286,Small Business,Small Business +505276,Small Business,Small Business +505270,Small Business,Small Business +501879,Small Business,Small Business +501877,Small Business,Small Business +501841,Small Business,Small Business +501836,Small Business,Small Business +501830,Small Business,Small Business +498816,Small Business,Small Business +498812,Small Business,Small Business +498796,Small Business,Small Business +498793,Small Business,Small Business +495478,Small Business,Small Business +495475,Small Business,Small Business +490631,Small Business,Small Business +490458,Small Business,Small Business +490422,Small Business,Small Business +487578,Small Business,Small Business +487577,Small Business,Small Business +487573,Small Business,Small Business +487572,Small Business,Small Business +487557,Small Business,Small Business +487555,Small Business,Small Business +487553,Small Business,Small Business +485297,Small Business,Small Business +485252,Small Business,Small Business +485250,Small Business,Small Business +482064,Small Business,Small Business +482055,Small Business,Small Business +480075,Small Business,Small Business +480073,Small Business,Small Business +480060,Small Business,Small Business +444749,Taxation and Finance,Taxation and Finance +444743,Taxation and Finance,Taxation and Finance +145425,Taxation and Finance,Taxation and Finance +142040,Taxation and Finance,Taxation and Finance +137202,Taxation and Finance,Taxation and Finance +137201,Taxation and Finance,Taxation and Finance +137200,Taxation and Finance,Taxation and Finance +162339,Taxation and Finance,Taxation and Finance +161143,Taxation and Finance,Taxation and Finance +160746,Taxation and Finance,Taxation and Finance +160368,Taxation and Finance,Taxation and Finance +160105,Taxation and Finance,Taxation and Finance +160104,Taxation and Finance,Taxation and Finance +160103,Taxation and Finance,Taxation and Finance +160101,Taxation and Finance,Taxation and Finance +160098,Taxation and Finance,Taxation and Finance +159002,Taxation and Finance,Taxation and Finance +158994,Taxation and Finance,Taxation and Finance +158889,Taxation and Finance,Taxation and Finance +158316,Taxation and Finance,Taxation and Finance +158310,Taxation and Finance,Taxation and Finance +158309,Taxation and Finance,Taxation and Finance +157486,Taxation and Finance,Taxation and Finance +157483,Taxation and Finance,Taxation and Finance +156856,Taxation and Finance,Taxation and Finance +156829,Taxation and Finance,Taxation and Finance +154789,Taxation and Finance,Taxation and Finance +152089,Taxation and Finance,Taxation and Finance +145426,Taxation and Finance,Taxation and Finance +314391,Taxation and Finance,Taxation and Finance +309574,Taxation and Finance,Taxation and Finance +298669,Taxation and Finance,Taxation and Finance +288431,Taxation and Finance,Taxation and Finance +283889,Taxation and Finance,Taxation and Finance +276694,Taxation and Finance,Taxation and Finance +264269,Taxation and Finance,Taxation and Finance +262210,Taxation and Finance,Taxation and Finance +259352,Taxation and Finance,Taxation and Finance +259350,Taxation and Finance,Taxation and Finance +259349,Taxation and Finance,Taxation and Finance +259332,Taxation and Finance,Taxation and Finance +256172,Taxation and Finance,Taxation and Finance +256171,Taxation and Finance,Taxation and Finance +251677,Taxation and Finance,Taxation and Finance +251676,Taxation and Finance,Taxation and Finance +234829,Taxation and Finance,Taxation and Finance +230335,Taxation and Finance,Taxation and Finance +230329,Taxation and Finance,Taxation and Finance +227931,Taxation and Finance,Taxation and Finance +224667,Taxation and Finance,Taxation and Finance +213547,Taxation and Finance,Taxation and Finance +211132,Taxation and Finance,Taxation and Finance +208027,Taxation and Finance,Taxation and Finance +208007,Taxation and Finance,Taxation and Finance +206197,Taxation and Finance,Taxation and Finance +206194,Taxation and Finance,Taxation and Finance +196447,Taxation and Finance,Taxation and Finance +190870,Taxation and Finance,Taxation and Finance +185764,Taxation and Finance,Taxation and Finance +176064,Taxation and Finance,Taxation and Finance +176044,Taxation and Finance,Taxation and Finance +175200,Taxation and Finance,Taxation and Finance +172750,Taxation and Finance,Taxation and Finance +172204,Taxation and Finance,Taxation and Finance +165451,Taxation and Finance,Taxation and Finance +165450,Taxation and Finance,Taxation and Finance +165448,Taxation and Finance,Taxation and Finance +165446,Taxation and Finance,Taxation and Finance +165005,Taxation and Finance,Taxation and Finance +163432,Taxation and Finance,Taxation and Finance +162402,Taxation and Finance,Taxation and Finance +162356,Taxation and Finance,Taxation and Finance +440692,Taxation and Finance,Taxation and Finance +439534,Taxation and Finance,Taxation and Finance +436643,Taxation and Finance,Taxation and Finance +434745,Taxation and Finance,Taxation and Finance +434743,Taxation and Finance,Taxation and Finance +432871,Taxation and Finance,Taxation and Finance +432240,Taxation and Finance,Taxation and Finance +428081,Taxation and Finance,Taxation and Finance +428076,Taxation and Finance,Taxation and Finance +428074,Taxation and Finance,Taxation and Finance +427781,Taxation and Finance,Taxation and Finance +423398,Taxation and Finance,Taxation and Finance +421185,Taxation and Finance,Taxation and Finance +417760,Taxation and Finance,Taxation and Finance +417758,Taxation and Finance,Taxation and Finance +414855,Taxation and Finance,Taxation and Finance +414850,Taxation and Finance,Taxation and Finance +414848,Taxation and Finance,Taxation and Finance +414837,Taxation and Finance,Taxation and Finance +414835,Taxation and Finance,Taxation and Finance +413276,Taxation and Finance,Taxation and Finance +411619,Taxation and Finance,Taxation and Finance +411617,Taxation and Finance,Taxation and Finance +411616,Taxation and Finance,Taxation and Finance +411615,Taxation and Finance,Taxation and Finance +411613,Taxation and Finance,Taxation and Finance +411612,Taxation and Finance,Taxation and Finance +411611,Taxation and Finance,Taxation and Finance +411610,Taxation and Finance,Taxation and Finance +409991,Taxation and Finance,Taxation and Finance +409990,Taxation and Finance,Taxation and Finance +409989,Taxation and Finance,Taxation and Finance +409988,Taxation and Finance,Taxation and Finance +409987,Taxation and Finance,Taxation and Finance +409986,Taxation and Finance,Taxation and Finance +409980,Taxation and Finance,Taxation and Finance +409979,Taxation and Finance,Taxation and Finance +409978,Taxation and Finance,Taxation and Finance +409977,Taxation and Finance,Taxation and Finance +407752,Taxation and Finance,Taxation and Finance +407522,Taxation and Finance,Taxation and Finance +407477,Taxation and Finance,Taxation and Finance +407476,Taxation and Finance,Taxation and Finance +403526,Taxation and Finance,Taxation and Finance +400306,Taxation and Finance,Taxation and Finance +398542,Taxation and Finance,Taxation and Finance +398537,Taxation and Finance,Taxation and Finance +393617,Taxation and Finance,Taxation and Finance +393599,Taxation and Finance,Taxation and Finance +389206,Taxation and Finance,Taxation and Finance +387112,Taxation and Finance,Taxation and Finance +385429,Taxation and Finance,Taxation and Finance +385405,Taxation and Finance,Taxation and Finance +382249,Taxation and Finance,Taxation and Finance +381597,Taxation and Finance,Taxation and Finance +378638,Taxation and Finance,Taxation and Finance +378627,Taxation and Finance,Taxation and Finance +376137,Taxation and Finance,Taxation and Finance +376136,Taxation and Finance,Taxation and Finance +361003,Taxation and Finance,Taxation and Finance +355641,Taxation and Finance,Taxation and Finance +354821,Taxation and Finance,Taxation and Finance +349558,Taxation and Finance,Taxation and Finance +349557,Taxation and Finance,Taxation and Finance +348084,Taxation and Finance,Taxation and Finance +347018,Taxation and Finance,Taxation and Finance +345598,Taxation and Finance,Taxation and Finance +344822,Taxation and Finance,Taxation and Finance +344820,Taxation and Finance,Taxation and Finance +344522,Taxation and Finance,Taxation and Finance +340788,Taxation and Finance,Taxation and Finance +337131,Taxation and Finance,Taxation and Finance +337130,Taxation and Finance,Taxation and Finance +334165,Taxation and Finance,Taxation and Finance +333118,Taxation and Finance,Taxation and Finance +326554,Taxation and Finance,Taxation and Finance +324755,Taxation and Finance,Taxation and Finance +314392,Taxation and Finance,Taxation and Finance +543594,Taxation and Finance,Taxation and Finance +539149,Taxation and Finance,Taxation and Finance +539145,Taxation and Finance,Taxation and Finance +537854,Taxation and Finance,Taxation and Finance +534765,Taxation and Finance,Taxation and Finance +534761,Taxation and Finance,Taxation and Finance +534667,Taxation and Finance,Taxation and Finance +531511,Taxation and Finance,Taxation and Finance +531506,Taxation and Finance,Taxation and Finance +529116,Taxation and Finance,Taxation and Finance +529094,Taxation and Finance,Taxation and Finance +529071,Taxation and Finance,Taxation and Finance +526314,Taxation and Finance,Taxation and Finance +525656,Taxation and Finance,Taxation and Finance +519693,Taxation and Finance,Taxation and Finance +519690,Taxation and Finance,Taxation and Finance +519688,Taxation and Finance,Taxation and Finance +519684,Taxation and Finance,Taxation and Finance +517766,Taxation and Finance,Taxation and Finance +517762,Taxation and Finance,Taxation and Finance +517757,Taxation and Finance,Taxation and Finance +515501,Taxation and Finance,Taxation and Finance +512803,Taxation and Finance,Taxation and Finance +512802,Taxation and Finance,Taxation and Finance +512793,Taxation and Finance,Taxation and Finance +512789,Taxation and Finance,Taxation and Finance +510593,Taxation and Finance,Taxation and Finance +505273,Taxation and Finance,Taxation and Finance +505270,Taxation and Finance,Taxation and Finance +501935,Taxation and Finance,Taxation and Finance +501933,Taxation and Finance,Taxation and Finance +501930,Taxation and Finance,Taxation and Finance +501909,Taxation and Finance,Taxation and Finance +501906,Taxation and Finance,Taxation and Finance +498808,Taxation and Finance,Taxation and Finance +498790,Taxation and Finance,Taxation and Finance +498788,Taxation and Finance,Taxation and Finance +498467,Taxation and Finance,Taxation and Finance +498447,Taxation and Finance,Taxation and Finance +495473,Taxation and Finance,Taxation and Finance +495472,Taxation and Finance,Taxation and Finance +495470,Taxation and Finance,Taxation and Finance +495468,Taxation and Finance,Taxation and Finance +495467,Taxation and Finance,Taxation and Finance +493147,Taxation and Finance,Taxation and Finance +490687,Taxation and Finance,Taxation and Finance +490650,Taxation and Finance,Taxation and Finance +490649,Taxation and Finance,Taxation and Finance +490471,Taxation and Finance,Taxation and Finance +487597,Taxation and Finance,Taxation and Finance +487596,Taxation and Finance,Taxation and Finance +487595,Taxation and Finance,Taxation and Finance +487591,Taxation and Finance,Taxation and Finance +487523,Taxation and Finance,Taxation and Finance +487499,Taxation and Finance,Taxation and Finance +487487,Taxation and Finance,Taxation and Finance +485303,Taxation and Finance,Taxation and Finance +485297,Taxation and Finance,Taxation and Finance +485254,Taxation and Finance,Taxation and Finance +485249,Taxation and Finance,Taxation and Finance +485248,Taxation and Finance,Taxation and Finance +485247,Taxation and Finance,Taxation and Finance +485244,Taxation and Finance,Taxation and Finance +482352,Taxation and Finance,Taxation and Finance +480071,Taxation and Finance,Taxation and Finance +480066,Taxation and Finance,Taxation and Finance +480063,Taxation and Finance,Taxation and Finance +480052,Taxation and Finance,Taxation and Finance +480043,Taxation and Finance,Taxation and Finance +480039,Taxation and Finance,Taxation and Finance +480037,Taxation and Finance,Taxation and Finance +477535,Taxation and Finance,Taxation and Finance +477531,Taxation and Finance,Taxation and Finance +477523,Taxation and Finance,Taxation and Finance +475516,Taxation and Finance,Taxation and Finance +475514,Taxation and Finance,Taxation and Finance +475510,Taxation and Finance,Taxation and Finance +472508,Taxation and Finance,Taxation and Finance +472502,Taxation and Finance,Taxation and Finance +467208,Taxation and Finance,Taxation and Finance +467206,Taxation and Finance,Taxation and Finance +463031,Taxation and Finance,Taxation and Finance +462342,Taxation and Finance,Taxation and Finance +462340,Taxation and Finance,Taxation and Finance +462336,Taxation and Finance,Taxation and Finance +462335,Taxation and Finance,Taxation and Finance +462263,Taxation and Finance,Taxation and Finance +462250,Taxation and Finance,Taxation and Finance +453818,Taxation and Finance,Taxation and Finance +453814,Taxation and Finance,Taxation and Finance +448771,Taxation and Finance,Taxation and Finance +448770,Taxation and Finance,Taxation and Finance +448767,Taxation and Finance,Taxation and Finance +447229,Taxation and Finance,Taxation and Finance +447226,Taxation and Finance,Taxation and Finance +447224,Taxation and Finance,Taxation and Finance +400311,Tourism,Tourism +534765,Tourism,Tourism +259350,Tourism,Tourism +259349,Tourism,Tourism +259332,Tourism,Tourism +256169,Tourism,Tourism +234829,Tourism,Tourism +165459,Tourism,Tourism +156805,Tourism,Tourism +152079,Tourism,Tourism +152077,Tourism,Tourism +387112,Tourism,Tourism +382249,Tourism,Tourism +381591,Tourism,Tourism +381568,Tourism,Tourism +376137,Tourism,Tourism +376136,Tourism,Tourism +374385,Tourism,Tourism +374381,Tourism,Tourism +374378,Tourism,Tourism +370962,Tourism,Tourism +357686,Tourism,Tourism +355831,Tourism,Tourism +352544,Tourism,Tourism +345598,Tourism,Tourism +344822,Tourism,Tourism +339529,Tourism,Tourism +333118,Tourism,Tourism +330513,Tourism,Tourism +327318,Tourism,Tourism +326554,Tourism,Tourism +324755,Tourism,Tourism +323934,Tourism,Tourism +315730,Tourism,Tourism +315729,Tourism,Tourism +314391,Tourism,Tourism +314133,Tourism,Tourism +314132,Tourism,Tourism +306970,Tourism,Tourism +305310,Tourism,Tourism +288431,Tourism,Tourism +283889,Tourism,Tourism +276694,Tourism,Tourism +264269,Tourism,Tourism +262210,Tourism,Tourism +262190,Tourism,Tourism +259352,Tourism,Tourism +519690,Tourism,Tourism +519688,Tourism,Tourism +519684,Tourism,Tourism +517766,Tourism,Tourism +517756,Tourism,Tourism +512801,Tourism,Tourism +490635,Tourism,Tourism +490460,Tourism,Tourism +490436,Tourism,Tourism +487574,Tourism,Tourism +487570,Tourism,Tourism +485295,Tourism,Tourism +453852,Tourism,Tourism +462336,Transportation,Transportation +453818,Transportation,Transportation +100432,Transportation,Transportation +76905,Transportation,Transportation +76903,Transportation,Transportation +156805,Transportation,Transportation +152079,Transportation,Transportation +152077,Transportation,Transportation +142040,Transportation,Transportation +132882,Transportation,Transportation +132037,Transportation,Transportation +132036,Transportation,Transportation +132035,Transportation,Transportation +128196,Transportation,Transportation +128195,Transportation,Transportation +345598,Transportation,Transportation +344822,Transportation,Transportation +337130,Transportation,Transportation +333118,Transportation,Transportation +327318,Transportation,Transportation +317553,Transportation,Transportation +317032,Transportation,Transportation +317029,Transportation,Transportation +314391,Transportation,Transportation +314133,Transportation,Transportation +305310,Transportation,Transportation +293214,Transportation,Transportation +288431,Transportation,Transportation +283889,Transportation,Transportation +264269,Transportation,Transportation +262229,Transportation,Transportation +262210,Transportation,Transportation +262190,Transportation,Transportation +259352,Transportation,Transportation +259350,Transportation,Transportation +259349,Transportation,Transportation +259332,Transportation,Transportation +230335,Transportation,Transportation +211127,Transportation,Transportation +208047,Transportation,Transportation +208027,Transportation,Transportation +208007,Transportation,Transportation +206197,Transportation,Transportation +199806,Transportation,Transportation +190865,Transportation,Transportation +190863,Transportation,Transportation +182866,Transportation,Transportation +172752,Transportation,Transportation +165005,Transportation,Transportation +162402,Transportation,Transportation +429511,Transportation,Transportation +429508,Transportation,Transportation +428095,Transportation,Transportation +428092,Transportation,Transportation +427774,Transportation,Transportation +421185,Transportation,Transportation +393437,Transportation,Transportation +381564,Transportation,Transportation +381562,Transportation,Transportation +378678,Transportation,Transportation +378638,Transportation,Transportation +378637,Transportation,Transportation +378631,Transportation,Transportation +378619,Transportation,Transportation +376144,Transportation,Transportation +376137,Transportation,Transportation +543593,Transportation,Transportation +539148,Transportation,Transportation +537850,Transportation,Transportation +537832,Transportation,Transportation +537829,Transportation,Transportation +534765,Transportation,Transportation +534761,Transportation,Transportation +534664,Transportation,Transportation +534658,Transportation,Transportation +534656,Transportation,Transportation +534526,Transportation,Transportation +531528,Transportation,Transportation +525656,Transportation,Transportation +519730,Transportation,Transportation +519690,Transportation,Transportation +519688,Transportation,Transportation +519684,Transportation,Transportation +517760,Transportation,Transportation +517756,Transportation,Transportation +513588,Transportation,Transportation +512798,Transportation,Transportation +512783,Transportation,Transportation +512768,Transportation,Transportation +508229,Transportation,Transportation +482173,Transportation,Transportation +482168,Transportation,Transportation +476472,Transportation,Transportation +475512,Transportation,Transportation +153635,Industry,Industry +153634,Industry,Industry +83636,Energy,Energy +83635,Energy,Energy +83634,Energy,Energy +74974,Energy,Energy +74955,Energy,Energy +82054,Regional Development,Regional Development +81374,Regional Development,Regional Development +89774,Regional Development,Regional Development +86897,Regional Development,Regional Development +86896,Regional Development,Regional Development +86894,Regional Development,Regional Development +84258,Regional Development,Regional Development +88956,Industry,Industry +83214,Industry,Industry +110797,Industry,Industry +110796,Industry,Industry +110795,Industry,Industry +110794,Industry,Industry +110316,Industry,Industry +110315,Industry,Industry +110294,Industry,Industry +100861,Industry,Industry +100856,Industry,Industry +100848,Industry,Industry +399936,Agriculture,Agriculture +387016,Agriculture,Agriculture +89035,Agriculture,Agriculture +85034,Agriculture,Agriculture +85016,Agriculture,Agriculture +145184,Agriculture,Agriculture +134955,Agriculture,Agriculture +134954,Agriculture,Agriculture +132352,Agriculture,Agriculture +132351,Agriculture,Agriculture +202472,Agriculture,Agriculture +199681,Agriculture,Agriculture +199679,Agriculture,Agriculture +193266,Agriculture,Agriculture +193265,Agriculture,Agriculture +189663,Agriculture,Agriculture +189662,Agriculture,Agriculture +189661,Agriculture,Agriculture +189660,Agriculture,Agriculture +189659,Agriculture,Agriculture +189656,Agriculture,Agriculture +189100,Agriculture,Agriculture +189087,Agriculture,Agriculture +183404,Agriculture,Agriculture +183384,Agriculture,Agriculture +183344,Agriculture,Agriculture +178424,Agriculture,Agriculture +178407,Agriculture,Agriculture +178406,Agriculture,Agriculture +178405,Agriculture,Agriculture +178404,Agriculture,Agriculture +178384,Agriculture,Agriculture +178364,Agriculture,Agriculture +178324,Agriculture,Agriculture +175074,Agriculture,Agriculture +175073,Agriculture,Agriculture +175072,Agriculture,Agriculture +175071,Agriculture,Agriculture +173472,Agriculture,Agriculture +165126,Agriculture,Agriculture +158118,Agriculture,Agriculture +158117,Agriculture,Agriculture +158115,Agriculture,Agriculture +335887,Agriculture,Agriculture +315160,Agriculture,Agriculture +239789,Agriculture,Agriculture +235710,Agriculture,Agriculture +235709,Agriculture,Agriculture +232871,Agriculture,Agriculture +232870,Agriculture,Agriculture +232869,Agriculture,Agriculture +225810,Agriculture,Agriculture +225807,Agriculture,Agriculture +216209,Agriculture,Agriculture +216208,Agriculture,Agriculture +210687,Agriculture,Agriculture +206354,Agriculture,Agriculture +206351,Agriculture,Agriculture +206309,Agriculture,Agriculture +239793,Environment,Environment +239791,Environment,Environment +384893,International Trade,International Trade +383224,International Trade,International Trade +151881,International Trade,International Trade +151880,International Trade,International Trade +95594,International Trade,International Trade +189104,International Trade,International Trade +183324,International Trade,International Trade +158118,International Trade,International Trade +158117,International Trade,International Trade +151892,International Trade,International Trade +151888,International Trade,International Trade +151885,International Trade,International Trade +151883,International Trade,International Trade +245204,International Trade,International Trade +245202,International Trade,International Trade +239792,International Trade,International Trade +239791,International Trade,International Trade +210687,International Trade,International Trade +446961,International Trade,International Trade +399934,International Trade,International Trade +387016,Transportation,Transportation +428552,Transportation,Transportation +100037,Transportation,Transportation +100035,Transportation,Transportation +202474,Transportation,Transportation +158116,Transportation,Transportation +151894,Transportation,Transportation +151891,Transportation,Transportation +151885,Transportation,Transportation +151883,Transportation,Transportation +151881,Transportation,Transportation +151880,Transportation,Transportation +335887,Transportation,Transportation +323937,Transportation,Transportation +517500,Employment and Training,Employment and Training +501719,Employment and Training,Employment and Training +525915,Employment and Training,Employment and Training +525914,Employment and Training,Employment and Training +525913,Employment and Training,Employment and Training +525912,Employment and Training,Employment and Training +525911,Employment and Training,Employment and Training +520102,Employment and Training,Employment and Training +513969,Health,Health +506028,Health,Health +519151,Health,Health +514717,Health,Health +480089,Small Business,Small Business +480086,Small Business,Small Business +524642,Small Business,Small Business +520102,Small Business,Small Business +519255,Small Business,Small Business +514717,Small Business,Small Business +514710,Small Business,Small Business +510822,Small Business,Small Business +510821,Small Business,Small Business +510820,Small Business,Small Business +510819,Small Business,Small Business +510816,Small Business,Small Business +510730,Small Business,Small Business +501719,Small Business,Small Business +510817,Taxation and Finance,Taxation and Finance +473324,Taxation and Finance,Taxation and Finance +92295,Taxation and Finance,Taxation and Finance +472713,Taxation and Finance,Taxation and Finance +506065,Agriculture,Agriculture +506064,Agriculture,Agriculture +385950,Agriculture,Agriculture +360366,Agriculture,Agriculture +360365,Agriculture,Agriculture +360364,Agriculture,Agriculture +360363,Agriculture,Agriculture +309680,Agriculture,Agriculture +287010,Agriculture,Agriculture +266271,Agriculture,Agriculture +503643,Agriculture,Agriculture +488861,Agriculture,Agriculture +488754,Agriculture,Agriculture +488746,Agriculture,Agriculture +485975,Agriculture,Agriculture +482857,Agriculture,Agriculture +481128,Agriculture,Agriculture +481126,Agriculture,Agriculture +478543,Agriculture,Agriculture +478369,Agriculture,Agriculture +477394,Agriculture,Agriculture +464013,Agriculture,Agriculture +450952,Agriculture,Agriculture +435580,Agriculture,Agriculture +544818,Agriculture,Agriculture +544817,Agriculture,Agriculture +544737,Agriculture,Agriculture +544676,Agriculture,Agriculture +543139,Agriculture,Agriculture +542766,Agriculture,Agriculture +542765,Agriculture,Agriculture +542764,Agriculture,Agriculture +542761,Agriculture,Agriculture +540455,Agriculture,Agriculture +534038,Agriculture,Agriculture +531278,Agriculture,Agriculture +530525,Agriculture,Agriculture +520417,Agriculture,Agriculture +515079,Agriculture,Agriculture +513466,Agriculture,Agriculture +512069,Agriculture,Agriculture +511857,Agriculture,Agriculture +511849,Agriculture,Agriculture +511848,Agriculture,Agriculture +509382,Agriculture,Agriculture +506370,Agriculture,Agriculture +506067,Agriculture,Agriculture +94177,Employment and Training,Employment and Training +80294,Employment and Training,Employment and Training +94180,Employment and Training,Employment and Training +94179,Employment and Training,Employment and Training +94177,Government Procurement,Government Procurement +80294,Government Procurement,Government Procurement +94180,Government Procurement,Government Procurement +94179,Government Procurement,Government Procurement +94178,Infrastructure,Infrastructure +94177,Infrastructure,Infrastructure +94180,Infrastructure,Infrastructure +94178,Justice and Law Enforcement,Justice and Law Enforcement +94177,Justice and Law Enforcement,Justice and Law Enforcement +80294,Justice and Law Enforcement,Justice and Law Enforcement +94180,Justice and Law Enforcement,Justice and Law Enforcement +181084,Government Procurement,Government Procurement +175705,Government Procurement,Government Procurement +107135,Government Procurement,Government Procurement +107134,Government Procurement,Government Procurement +106895,Government Procurement,Government Procurement +86095,Government Procurement,Government Procurement +156069,Government Procurement,Government Procurement +156068,Government Procurement,Government Procurement +154648,Government Procurement,Government Procurement +154647,Government Procurement,Government Procurement +150677,Government Procurement,Government Procurement +145374,Government Procurement,Government Procurement +141774,Government Procurement,Government Procurement +137995,Government Procurement,Government Procurement +134934,Government Procurement,Government Procurement +128673,Government Procurement,Government Procurement +115534,Government Procurement,Government Procurement +115115,Government Procurement,Government Procurement +115114,Government Procurement,Government Procurement +107137,Government Procurement,Government Procurement +107136,Government Procurement,Government Procurement +164039,Government Procurement,Government Procurement +164038,Government Procurement,Government Procurement +154648,Small Business,Small Business +152437,Small Business,Small Business +86094,Small Business,Small Business +150677,Small Business,Small Business +128673,Small Business,Small Business +106895,Small Business,Small Business +181084,Small Business,Small Business +175705,Small Business,Small Business +167778,Small Business,Small Business +164039,Small Business,Small Business +164038,Small Business,Small Business +77482,Health,Health +122814,Health,Health +116336,Health,Health +105349,Health,Health +91074,Health,Health +105349,Industry,Industry +105349,Intellectual Property,Intellectual Property +165260,Government Procurement,Government Procurement +165252,Government Procurement,Government Procurement +94914,Government Procurement,Government Procurement +496259,Industry,Industry +483049,Industry,Industry +158451,Industry,Industry +158448,Industry,Industry +158370,Industry,Industry +348895,Industry,Industry +336430,Industry,Industry +270270,Industry,Industry +417608,Industry,Industry +412260,Industry,Industry +378632,Industry,Industry +365217,Industry,Industry +365216,Industry,Industry +540578,Industry,Industry +540577,Industry,Industry +527826,Industry,Industry +508271,Industry,Industry +508270,Industry,Industry +508269,Industry,Industry +508267,Industry,Industry +374069,Internal Trade,Internal Trade +378634,International Trade,International Trade +374068,International Trade,International Trade +340797,International Trade,International Trade +336429,International Trade,International Trade +328249,International Trade,International Trade +314090,International Trade,International Trade +514269,International Trade,International Trade +513171,International Trade,International Trade +510811,International Trade,International Trade +475618,International Trade,International Trade +475609,International Trade,International Trade +473623,International Trade,International Trade +467302,International Trade,International Trade +243449,Taxation and Finance,Taxation and Finance +431000,Taxation and Finance,Taxation and Finance +211565,Taxation and Finance,Taxation and Finance +516836,Employment and Training,Employment and Training +516833,Employment and Training,Employment and Training +93708,Employment and Training,Employment and Training +543647,Employment and Training,Employment and Training +537246,Employment and Training,Employment and Training +444609,Environment,Environment +501245,Environment,Environment +411535,Environment,Environment +411525,Environment,Environment +496133,Health,Health +496132,Health,Health +142534,Health,Health +142529,Health,Health +136555,Health,Health +133774,Health,Health +124356,Health,Health +113114,Health,Health +93708,Health,Health +192068,Health,Health +188779,Health,Health +174794,Health,Health +174324,Health,Health +174024,Health,Health +162966,Health,Health +162887,Health,Health +161939,Health,Health +152772,Health,Health +150361,Health,Health +336637,Health,Health +336636,Health,Health +336635,Health,Health +336634,Health,Health +336632,Health,Health +336631,Health,Health +336630,Health,Health +336629,Health,Health +336225,Health,Health +333709,Health,Health +333705,Health,Health +333703,Health,Health +333701,Health,Health +333698,Health,Health +328929,Health,Health +327490,Health,Health +327489,Health,Health +327486,Health,Health +327312,Health,Health +323029,Health,Health +321429,Health,Health +318804,Health,Health +318803,Health,Health +315982,Health,Health +315968,Health,Health +302955,Health,Health +288090,Health,Health +280951,Health,Health +269393,Health,Health +253651,Health,Health +253649,Health,Health +248589,Health,Health +380302,Health,Health +380301,Health,Health +380300,Health,Health +380299,Health,Health +380297,Health,Health +377674,Health,Health +374208,Health,Health +374207,Health,Health +374193,Health,Health +373120,Health,Health +371510,Health,Health +371506,Health,Health +371263,Health,Health +371260,Health,Health +371258,Health,Health +371255,Health,Health +371253,Health,Health +371250,Health,Health +371248,Health,Health +371247,Health,Health +371245,Health,Health +371244,Health,Health +371243,Health,Health +371242,Health,Health +371241,Health,Health +371240,Health,Health +371237,Health,Health +371235,Health,Health +371232,Health,Health +371206,Health,Health +371205,Health,Health +369617,Health,Health +369616,Health,Health +369615,Health,Health +349362,Health,Health +347696,Health,Health +347695,Health,Health +347692,Health,Health +422017,Health,Health +419871,Health,Health +419869,Health,Health +418392,Health,Health +417749,Health,Health +416916,Health,Health +416910,Health,Health +416906,Health,Health +416901,Health,Health +416900,Health,Health +416873,Health,Health +414161,Health,Health +414158,Health,Health +414154,Health,Health +414151,Health,Health +414150,Health,Health +411835,Health,Health +411558,Health,Health +411557,Health,Health +411553,Health,Health +411550,Health,Health +411549,Health,Health +411548,Health,Health +411546,Health,Health +411545,Health,Health +411544,Health,Health +411543,Health,Health +411542,Health,Health +411540,Health,Health +411539,Health,Health +411538,Health,Health +411536,Health,Health +411535,Health,Health +411534,Health,Health +411533,Health,Health +411530,Health,Health +411527,Health,Health +411525,Health,Health +411524,Health,Health +411523,Health,Health +411500,Health,Health +411468,Health,Health +411464,Health,Health +411463,Health,Health +411459,Health,Health +411456,Health,Health +408107,Health,Health +408087,Health,Health +408022,Health,Health +408021,Health,Health +408017,Health,Health +408009,Health,Health +408002,Health,Health +407706,Health,Health +406426,Health,Health +406425,Health,Health +406037,Health,Health +406035,Health,Health +406034,Health,Health +404148,Health,Health +404112,Health,Health +404111,Health,Health +404109,Health,Health +404108,Health,Health +404107,Health,Health +404106,Health,Health +404105,Health,Health +404104,Health,Health +404102,Health,Health +404099,Health,Health +404094,Health,Health +404093,Health,Health +404092,Health,Health +400905,Health,Health +400903,Health,Health +400901,Health,Health +400899,Health,Health +400894,Health,Health +400887,Health,Health +400874,Health,Health +400857,Health,Health +398982,Health,Health +398979,Health,Health +398946,Health,Health +398938,Health,Health +398931,Health,Health +398927,Health,Health +398918,Health,Health +397277,Health,Health +396114,Health,Health +395856,Health,Health +395855,Health,Health +395854,Health,Health +395851,Health,Health +395850,Health,Health +395849,Health,Health +395848,Health,Health +394711,Health,Health +394527,Health,Health +394526,Health,Health +394525,Health,Health +394523,Health,Health +394522,Health,Health +394519,Health,Health +394517,Health,Health +394516,Health,Health +394510,Health,Health +394505,Health,Health +394503,Health,Health +394501,Health,Health +394499,Health,Health +389520,Health,Health +389519,Health,Health +389518,Health,Health +389516,Health,Health +389515,Health,Health +389514,Health,Health +389513,Health,Health +389511,Health,Health +389510,Health,Health +389508,Health,Health +389507,Health,Health +389505,Health,Health +389504,Health,Health +389503,Health,Health +389502,Health,Health +389500,Health,Health +389499,Health,Health +389494,Health,Health +389493,Health,Health +389490,Health,Health +389486,Health,Health +389482,Health,Health +389481,Health,Health +384550,Health,Health +384535,Health,Health +384532,Health,Health +383002,Health,Health +496127,Health,Health +496126,Health,Health +496118,Health,Health +496117,Health,Health +496116,Health,Health +496115,Health,Health +496112,Health,Health +496109,Health,Health +496104,Health,Health +492866,Health,Health +492865,Health,Health +492864,Health,Health +492863,Health,Health +492861,Health,Health +492860,Health,Health +492859,Health,Health +492858,Health,Health +492855,Health,Health +492854,Health,Health +492853,Health,Health +492852,Health,Health +491054,Health,Health +491050,Health,Health +491046,Health,Health +491042,Health,Health +491039,Health,Health +491035,Health,Health +488225,Health,Health +488223,Health,Health +488222,Health,Health +488221,Health,Health +488219,Health,Health +488218,Health,Health +488216,Health,Health +488214,Health,Health +488212,Health,Health +488210,Health,Health +488208,Health,Health +488206,Health,Health +488205,Health,Health +488204,Health,Health +488203,Health,Health +488202,Health,Health +488201,Health,Health +488199,Health,Health +488198,Health,Health +488196,Health,Health +488195,Health,Health +488194,Health,Health +488193,Health,Health +488192,Health,Health +488191,Health,Health +488190,Health,Health +488189,Health,Health +488186,Health,Health +488185,Health,Health +488184,Health,Health +488183,Health,Health +488182,Health,Health +488181,Health,Health +488180,Health,Health +488176,Health,Health +488171,Health,Health +488162,Health,Health +488160,Health,Health +487565,Health,Health +487561,Health,Health +487558,Health,Health +487552,Health,Health +487545,Health,Health +487544,Health,Health +487543,Health,Health +483804,Health,Health +483803,Health,Health +483778,Health,Health +483775,Health,Health +483770,Health,Health +480462,Health,Health +478623,Health,Health +478530,Health,Health +476238,Health,Health +476236,Health,Health +472398,Health,Health +472396,Health,Health +472384,Health,Health +472383,Health,Health +472382,Health,Health +472381,Health,Health +472380,Health,Health +472087,Health,Health +471906,Health,Health +471905,Health,Health +471727,Health,Health +471726,Health,Health +471725,Health,Health +471724,Health,Health +471723,Health,Health +471722,Health,Health +471403,Health,Health +471402,Health,Health +471401,Health,Health +471372,Health,Health +470917,Health,Health +469585,Health,Health +469580,Health,Health +469432,Health,Health +469431,Health,Health +469355,Health,Health +469354,Health,Health +469353,Health,Health +469236,Health,Health +469232,Health,Health +469230,Health,Health +469211,Health,Health +469009,Health,Health +468990,Health,Health +468989,Health,Health +468988,Health,Health +468961,Health,Health +468958,Health,Health +468955,Health,Health +468954,Health,Health +468953,Health,Health +468952,Health,Health +468951,Health,Health +468950,Health,Health +468949,Health,Health +467176,Health,Health +467175,Health,Health +467173,Health,Health +466530,Health,Health +465437,Health,Health +465394,Health,Health +465393,Health,Health +465212,Health,Health +465207,Health,Health +463135,Health,Health +463133,Health,Health +463100,Health,Health +463099,Health,Health +463098,Health,Health +462999,Health,Health +461581,Health,Health +461580,Health,Health +461578,Health,Health +461575,Health,Health +461574,Health,Health +460864,Health,Health +460863,Health,Health +458407,Health,Health +458029,Health,Health +458027,Health,Health +457084,Health,Health +456319,Health,Health +455859,Health,Health +454180,Health,Health +454179,Health,Health +454044,Health,Health +453762,Health,Health +453695,Health,Health +453679,Health,Health +453116,Health,Health +453115,Health,Health +453114,Health,Health +453113,Health,Health +453112,Health,Health +453111,Health,Health +453110,Health,Health +453109,Health,Health +453108,Health,Health +453107,Health,Health +450914,Health,Health +450912,Health,Health +448658,Health,Health +446378,Health,Health +444609,Health,Health +444603,Health,Health +444600,Health,Health +442981,Health,Health +440403,Health,Health +439406,Health,Health +439404,Health,Health +439400,Health,Health +439271,Health,Health +439267,Health,Health +439261,Health,Health +439256,Health,Health +439252,Health,Health +439249,Health,Health +439244,Health,Health +439240,Health,Health +439235,Health,Health +439232,Health,Health +439217,Health,Health +439085,Health,Health +439081,Health,Health +439074,Health,Health +438628,Health,Health +438623,Health,Health +438617,Health,Health +437376,Health,Health +437373,Health,Health +437366,Health,Health +437363,Health,Health +437316,Health,Health +437047,Health,Health +437045,Health,Health +437043,Health,Health +437036,Health,Health +437032,Health,Health +437018,Health,Health +437017,Health,Health +437014,Health,Health +432667,Health,Health +432666,Health,Health +432285,Health,Health +432280,Health,Health +432033,Health,Health +432030,Health,Health +432006,Health,Health +430297,Health,Health +430292,Health,Health +428044,Health,Health +427946,Health,Health +427945,Health,Health +427941,Health,Health +427939,Health,Health +427931,Health,Health +427928,Health,Health +427927,Health,Health +425822,Health,Health +425258,Health,Health +425257,Health,Health +425256,Health,Health +425255,Health,Health +424564,Health,Health +424563,Health,Health +424207,Health,Health +424200,Health,Health +424197,Health,Health +422850,Health,Health +422036,Health,Health +422034,Health,Health +422032,Health,Health +422030,Health,Health +422028,Health,Health +422027,Health,Health +422026,Health,Health +422024,Health,Health +422023,Health,Health +422021,Health,Health +422019,Health,Health +422018,Health,Health +543652,Health,Health +543650,Health,Health +543647,Health,Health +541205,Health,Health +539565,Health,Health +537246,Health,Health +533229,Health,Health +533227,Health,Health +533226,Health,Health +530591,Health,Health +530590,Health,Health +529101,Health,Health +529098,Health,Health +529083,Health,Health +529076,Health,Health +529075,Health,Health +529074,Health,Health +529072,Health,Health +529067,Health,Health +525833,Health,Health +525831,Health,Health +525830,Health,Health +523109,Health,Health +523106,Health,Health +523100,Health,Health +523093,Health,Health +523090,Health,Health +519997,Health,Health +519995,Health,Health +519986,Health,Health +516836,Health,Health +516833,Health,Health +516831,Health,Health +516829,Health,Health +515258,Health,Health +515096,Health,Health +514524,Health,Health +514523,Health,Health +514520,Health,Health +513715,Health,Health +513714,Health,Health +511903,Health,Health +511901,Health,Health +511900,Health,Health +510485,Health,Health +510483,Health,Health +510482,Health,Health +510481,Health,Health +510473,Health,Health +510457,Health,Health +510455,Health,Health +510453,Health,Health +510451,Health,Health +510448,Health,Health +510446,Health,Health +508199,Health,Health +508194,Health,Health +508193,Health,Health +508190,Health,Health +508185,Health,Health +508180,Health,Health +508178,Health,Health +508176,Health,Health +508174,Health,Health +508173,Health,Health +508171,Health,Health +508168,Health,Health +505227,Health,Health +505226,Health,Health +505225,Health,Health +505222,Health,Health +505221,Health,Health +505220,Health,Health +501253,Health,Health +501252,Health,Health +501251,Health,Health +501250,Health,Health +501248,Health,Health +501247,Health,Health +501245,Health,Health +501244,Health,Health +501242,Health,Health +501240,Health,Health +501239,Health,Health +498908,Health,Health +498904,Health,Health +498901,Health,Health +498898,Health,Health +498896,Health,Health +498892,Health,Health +498891,Health,Health +498888,Health,Health +498883,Health,Health +498874,Health,Health +496283,Health,Health +519997,Immigration,Immigration +516833,Immigration,Immigration +369615,Immigration,Immigration +543650,Immigration,Immigration +529072,Immigration,Immigration +525833,Immigration,Immigration +407706,Industry,Industry +508194,Industry,Industry +377907,Industry,Industry +377906,Industry,Industry +377904,Industry,Industry +501253,Industry,Industry +501252,Industry,Industry +501251,Industry,Industry +492863,Industry,Industry +425822,Industry,Industry +432667,Internal Trade,Internal Trade +432666,International Trade,International Trade +543647,Labour,Labour +537246,Labour,Labour +525833,Labour,Labour +523109,Labour,Labour +389513,Taxation and Finance,Taxation and Finance +389502,Taxation and Finance,Taxation and Finance +347696,Taxation and Finance,Taxation and Finance +519986,Taxation and Finance,Taxation and Finance +492863,Taxation and Finance,Taxation and Finance +492860,Taxation and Finance,Taxation and Finance +492859,Taxation and Finance,Taxation and Finance +492858,Taxation and Finance,Taxation and Finance +492855,Taxation and Finance,Taxation and Finance +492852,Taxation and Finance,Taxation and Finance +488218,Taxation and Finance,Taxation and Finance +488208,Taxation and Finance,Taxation and Finance +488203,Taxation and Finance,Taxation and Finance +488202,Taxation and Finance,Taxation and Finance +488201,Taxation and Finance,Taxation and Finance +488199,Taxation and Finance,Taxation and Finance +488195,Taxation and Finance,Taxation and Finance +488193,Taxation and Finance,Taxation and Finance +488192,Taxation and Finance,Taxation and Finance +488191,Taxation and Finance,Taxation and Finance +488190,Taxation and Finance,Taxation and Finance +488189,Taxation and Finance,Taxation and Finance +488185,Taxation and Finance,Taxation and Finance +488182,Taxation and Finance,Taxation and Finance +488181,Taxation and Finance,Taxation and Finance +488180,Taxation and Finance,Taxation and Finance +488176,Taxation and Finance,Taxation and Finance +488171,Taxation and Finance,Taxation and Finance +121160,Infrastructure,Infrastructure +100510,Health,Health +100507,Health,Health +80619,Employment and Training,Employment and Training +80317,Health,Health +543492,Education,Education +543487,Education,Education +114172,Education,Education +96324,Education,Education +80752,Education,Education +156710,Education,Education +156709,Education,Education +156708,Education,Education +154553,Education,Education +154551,Education,Education +154549,Education,Education +150514,Education,Education +147266,Education,Education +147264,Education,Education +145671,Education,Education +141722,Education,Education +141721,Education,Education +141719,Education,Education +141717,Education,Education +141714,Education,Education +138839,Education,Education +138837,Education,Education +138836,Education,Education +131998,Education,Education +131997,Education,Education +131996,Education,Education +129072,Education,Education +124358,Education,Education +124357,Education,Education +223616,Education,Education +202927,Education,Education +194718,Education,Education +194692,Education,Education +165340,Education,Education +165338,Education,Education +165337,Education,Education +161578,Education,Education +161575,Education,Education +159241,Education,Education +382963,Education,Education +382962,Education,Education +382189,Education,Education +381216,Education,Education +381213,Education,Education +381212,Education,Education +378301,Education,Education +378298,Education,Education +378297,Education,Education +378296,Education,Education +378295,Education,Education +378293,Education,Education +375811,Education,Education +375805,Education,Education +375804,Education,Education +357902,Education,Education +357897,Education,Education +357892,Education,Education +357883,Education,Education +357878,Education,Education +348343,Education,Education +343958,Education,Education +343882,Education,Education +343877,Education,Education +341717,Education,Education +341715,Education,Education +337236,Education,Education +337219,Education,Education +335539,Education,Education +331242,Education,Education +329132,Education,Education +327041,Education,Education +326922,Education,Education +324483,Education,Education +324482,Education,Education +324481,Education,Education +324477,Education,Education +324475,Education,Education +324460,Education,Education +322225,Education,Education +322218,Education,Education +318721,Education,Education +312773,Education,Education +310523,Education,Education +310515,Education,Education +310505,Education,Education +310493,Education,Education +301895,Education,Education +285110,Education,Education +280778,Education,Education +280775,Education,Education +280773,Education,Education +269495,Education,Education +263237,Education,Education +263232,Education,Education +254200,Education,Education +254166,Education,Education +249461,Education,Education +244378,Education,Education +244375,Education,Education +244374,Education,Education +244373,Education,Education +244370,Education,Education +240362,Education,Education +240360,Education,Education +539586,Education,Education +539580,Education,Education +538160,Education,Education +534734,Education,Education +530808,Education,Education +529422,Education,Education +529421,Education,Education +529420,Education,Education +524262,Education,Education +524260,Education,Education +524258,Education,Education +519395,Education,Education +519390,Education,Education +517468,Education,Education +514119,Education,Education +512029,Education,Education +486326,Education,Education +480976,Education,Education +480975,Education,Education +476533,Education,Education +474831,Education,Education +472834,Education,Education +472832,Education,Education +470480,Education,Education +470469,Education,Education +467370,Education,Education +467367,Education,Education +461517,Education,Education +459390,Education,Education +459388,Education,Education +458136,Education,Education +458135,Education,Education +458133,Education,Education +451383,Education,Education +451382,Education,Education +451180,Education,Education +448835,Education,Education +446570,Education,Education +446568,Education,Education +446566,Education,Education +446562,Education,Education +444738,Education,Education +444737,Education,Education +436827,Education,Education +436825,Education,Education +436822,Education,Education +436819,Education,Education +436815,Education,Education +436810,Education,Education +436806,Education,Education +435079,Education,Education +435077,Education,Education +435076,Education,Education +428245,Education,Education +421001,Education,Education +417529,Education,Education +404580,Education,Education +399763,Education,Education +395268,Education,Education +395264,Education,Education +393045,Education,Education +392127,Education,Education +389612,Education,Education +389610,Education,Education +389608,Education,Education +389607,Education,Education +389599,Education,Education +386754,Education,Education +386751,Education,Education +384498,Education,Education +545192,Education,Education +506561,Employment and Training,Employment and Training +506557,Employment and Training,Employment and Training +124358,Employment and Training,Employment and Training +124357,Employment and Training,Employment and Training +96324,Employment and Training,Employment and Training +80752,Employment and Training,Employment and Training +156711,Employment and Training,Employment and Training +156710,Employment and Training,Employment and Training +156709,Employment and Training,Employment and Training +156708,Employment and Training,Employment and Training +154553,Employment and Training,Employment and Training +154551,Employment and Training,Employment and Training +154549,Employment and Training,Employment and Training +150514,Employment and Training,Employment and Training +147266,Employment and Training,Employment and Training +147264,Employment and Training,Employment and Training +145671,Employment and Training,Employment and Training +141722,Employment and Training,Employment and Training +141721,Employment and Training,Employment and Training +141719,Employment and Training,Employment and Training +141714,Employment and Training,Employment and Training +138839,Employment and Training,Employment and Training +138837,Employment and Training,Employment and Training +138836,Employment and Training,Employment and Training +131998,Employment and Training,Employment and Training +131997,Employment and Training,Employment and Training +131996,Employment and Training,Employment and Training +225673,Employment and Training,Employment and Training +223616,Employment and Training,Employment and Training +223613,Employment and Training,Employment and Training +223606,Employment and Training,Employment and Training +214527,Employment and Training,Employment and Training +211909,Employment and Training,Employment and Training +207097,Employment and Training,Employment and Training +202934,Employment and Training,Employment and Training +202932,Employment and Training,Employment and Training +202927,Employment and Training,Employment and Training +202923,Employment and Training,Employment and Training +202896,Employment and Training,Employment and Training +198808,Employment and Training,Employment and Training +198727,Employment and Training,Employment and Training +194718,Employment and Training,Employment and Training +194709,Employment and Training,Employment and Training +194703,Employment and Training,Employment and Training +194692,Employment and Training,Employment and Training +189795,Employment and Training,Employment and Training +189794,Employment and Training,Employment and Training +189793,Employment and Training,Employment and Training +189792,Employment and Training,Employment and Training +189790,Employment and Training,Employment and Training +189789,Employment and Training,Employment and Training +184925,Employment and Training,Employment and Training +184924,Employment and Training,Employment and Training +178044,Employment and Training,Employment and Training +178024,Employment and Training,Employment and Training +173526,Employment and Training,Employment and Training +167610,Employment and Training,Employment and Training +165343,Employment and Training,Employment and Training +165342,Employment and Training,Employment and Training +165341,Employment and Training,Employment and Training +165340,Employment and Training,Employment and Training +165339,Employment and Training,Employment and Training +165338,Employment and Training,Employment and Training +165337,Employment and Training,Employment and Training +161578,Employment and Training,Employment and Training +161575,Employment and Training,Employment and Training +161574,Employment and Training,Employment and Training +161573,Employment and Training,Employment and Training +161571,Employment and Training,Employment and Training +161570,Employment and Training,Employment and Training +159246,Employment and Training,Employment and Training +159245,Employment and Training,Employment and Training +159243,Employment and Training,Employment and Training +159242,Employment and Training,Employment and Training +159241,Employment and Training,Employment and Training +159240,Employment and Training,Employment and Training +381212,Employment and Training,Employment and Training +378298,Employment and Training,Employment and Training +378295,Employment and Training,Employment and Training +375812,Employment and Training,Employment and Training +375811,Employment and Training,Employment and Training +375806,Employment and Training,Employment and Training +374130,Employment and Training,Employment and Training +368776,Employment and Training,Employment and Training +368711,Employment and Training,Employment and Training +368700,Employment and Training,Employment and Training +368698,Employment and Training,Employment and Training +366248,Employment and Training,Employment and Training +365124,Employment and Training,Employment and Training +359310,Employment and Training,Employment and Training +357876,Employment and Training,Employment and Training +355933,Employment and Training,Employment and Training +355930,Employment and Training,Employment and Training +353838,Employment and Training,Employment and Training +353831,Employment and Training,Employment and Training +351194,Employment and Training,Employment and Training +351185,Employment and Training,Employment and Training +348344,Employment and Training,Employment and Training +348343,Employment and Training,Employment and Training +348298,Employment and Training,Employment and Training +347262,Employment and Training,Employment and Training +337238,Employment and Training,Employment and Training +337233,Employment and Training,Employment and Training +335550,Employment and Training,Employment and Training +335545,Employment and Training,Employment and Training +335539,Employment and Training,Employment and Training +331242,Employment and Training,Employment and Training +329149,Employment and Training,Employment and Training +329132,Employment and Training,Employment and Training +327039,Employment and Training,Employment and Training +324451,Employment and Training,Employment and Training +318721,Employment and Training,Employment and Training +318717,Employment and Training,Employment and Training +312774,Employment and Training,Employment and Training +310519,Employment and Training,Employment and Training +310512,Employment and Training,Employment and Training +301898,Employment and Training,Employment and Training +301897,Employment and Training,Employment and Training +301896,Employment and Training,Employment and Training +301895,Employment and Training,Employment and Training +301894,Employment and Training,Employment and Training +301893,Employment and Training,Employment and Training +301891,Employment and Training,Employment and Training +301890,Employment and Training,Employment and Training +301889,Employment and Training,Employment and Training +301489,Employment and Training,Employment and Training +301449,Employment and Training,Employment and Training +295809,Employment and Training,Employment and Training +295791,Employment and Training,Employment and Training +295790,Employment and Training,Employment and Training +291114,Employment and Training,Employment and Training +291113,Employment and Training,Employment and Training +291112,Employment and Training,Employment and Training +291109,Employment and Training,Employment and Training +291105,Employment and Training,Employment and Training +291102,Employment and Training,Employment and Training +291097,Employment and Training,Employment and Training +285149,Employment and Training,Employment and Training +280776,Employment and Training,Employment and Training +280773,Employment and Training,Employment and Training +269495,Employment and Training,Employment and Training +263239,Employment and Training,Employment and Training +263237,Employment and Training,Employment and Training +263235,Employment and Training,Employment and Training +263231,Employment and Training,Employment and Training +259254,Employment and Training,Employment and Training +259253,Employment and Training,Employment and Training +254207,Employment and Training,Employment and Training +254204,Employment and Training,Employment and Training +254201,Employment and Training,Employment and Training +254200,Employment and Training,Employment and Training +254198,Employment and Training,Employment and Training +254193,Employment and Training,Employment and Training +254173,Employment and Training,Employment and Training +254166,Employment and Training,Employment and Training +254165,Employment and Training,Employment and Training +249461,Employment and Training,Employment and Training +249450,Employment and Training,Employment and Training +249449,Employment and Training,Employment and Training +244381,Employment and Training,Employment and Training +244378,Employment and Training,Employment and Training +244377,Employment and Training,Employment and Training +244376,Employment and Training,Employment and Training +244375,Employment and Training,Employment and Training +244374,Employment and Training,Employment and Training +244373,Employment and Training,Employment and Training +244371,Employment and Training,Employment and Training +244370,Employment and Training,Employment and Training +240365,Employment and Training,Employment and Training +240362,Employment and Training,Employment and Training +240360,Employment and Training,Employment and Training +240359,Employment and Training,Employment and Training +240352,Employment and Training,Employment and Training +240329,Employment and Training,Employment and Training +240327,Employment and Training,Employment and Training +240319,Employment and Training,Employment and Training +236834,Employment and Training,Employment and Training +236831,Employment and Training,Employment and Training +232995,Employment and Training,Employment and Training +232989,Employment and Training,Employment and Training +232969,Employment and Training,Employment and Training +230443,Employment and Training,Employment and Training +230212,Employment and Training,Employment and Training +500373,Employment and Training,Employment and Training +500370,Employment and Training,Employment and Training +496733,Employment and Training,Employment and Training +492383,Employment and Training,Employment and Training +489867,Employment and Training,Employment and Training +489863,Employment and Training,Employment and Training +489860,Employment and Training,Employment and Training +489858,Employment and Training,Employment and Training +489857,Employment and Training,Employment and Training +486323,Employment and Training,Employment and Training +486319,Employment and Training,Employment and Training +486316,Employment and Training,Employment and Training +486314,Employment and Training,Employment and Training +482835,Employment and Training,Employment and Training +480976,Employment and Training,Employment and Training +474834,Employment and Training,Employment and Training +470480,Employment and Training,Employment and Training +470476,Employment and Training,Employment and Training +467370,Employment and Training,Employment and Training +467367,Employment and Training,Employment and Training +461517,Employment and Training,Employment and Training +461515,Employment and Training,Employment and Training +461139,Employment and Training,Employment and Training +460279,Employment and Training,Employment and Training +459390,Employment and Training,Employment and Training +459388,Employment and Training,Employment and Training +458136,Employment and Training,Employment and Training +458135,Employment and Training,Employment and Training +458133,Employment and Training,Employment and Training +456752,Employment and Training,Employment and Training +456751,Employment and Training,Employment and Training +451383,Employment and Training,Employment and Training +451382,Employment and Training,Employment and Training +451379,Employment and Training,Employment and Training +451180,Employment and Training,Employment and Training +448837,Employment and Training,Employment and Training +448835,Employment and Training,Employment and Training +446570,Employment and Training,Employment and Training +446568,Employment and Training,Employment and Training +446566,Employment and Training,Employment and Training +446562,Employment and Training,Employment and Training +444738,Employment and Training,Employment and Training +444737,Employment and Training,Employment and Training +443142,Employment and Training,Employment and Training +443139,Employment and Training,Employment and Training +440718,Employment and Training,Employment and Training +440714,Employment and Training,Employment and Training +433261,Employment and Training,Employment and Training +433260,Employment and Training,Employment and Training +431774,Employment and Training,Employment and Training +431771,Employment and Training,Employment and Training +431770,Employment and Training,Employment and Training +431769,Employment and Training,Employment and Training +430261,Employment and Training,Employment and Training +430258,Employment and Training,Employment and Training +430255,Employment and Training,Employment and Training +430250,Employment and Training,Employment and Training +428244,Employment and Training,Employment and Training +428243,Employment and Training,Employment and Training +428241,Employment and Training,Employment and Training +428240,Employment and Training,Employment and Training +425562,Employment and Training,Employment and Training +425559,Employment and Training,Employment and Training +423316,Employment and Training,Employment and Training +421003,Employment and Training,Employment and Training +421002,Employment and Training,Employment and Training +421000,Employment and Training,Employment and Training +420999,Employment and Training,Employment and Training +420997,Employment and Training,Employment and Training +420995,Employment and Training,Employment and Training +419055,Employment and Training,Employment and Training +419012,Employment and Training,Employment and Training +417532,Employment and Training,Employment and Training +417529,Employment and Training,Employment and Training +417527,Employment and Training,Employment and Training +417525,Employment and Training,Employment and Training +415263,Employment and Training,Employment and Training +415255,Employment and Training,Employment and Training +415248,Employment and Training,Employment and Training +415233,Employment and Training,Employment and Training +415224,Employment and Training,Employment and Training +415222,Employment and Training,Employment and Training +415220,Employment and Training,Employment and Training +411583,Employment and Training,Employment and Training +411580,Employment and Training,Employment and Training +411575,Employment and Training,Employment and Training +411574,Employment and Training,Employment and Training +411570,Employment and Training,Employment and Training +408952,Employment and Training,Employment and Training +407374,Employment and Training,Employment and Training +407373,Employment and Training,Employment and Training +407372,Employment and Training,Employment and Training +406269,Employment and Training,Employment and Training +406264,Employment and Training,Employment and Training +406262,Employment and Training,Employment and Training +404585,Employment and Training,Employment and Training +404580,Employment and Training,Employment and Training +402018,Employment and Training,Employment and Training +401999,Employment and Training,Employment and Training +399767,Employment and Training,Employment and Training +399766,Employment and Training,Employment and Training +399763,Employment and Training,Employment and Training +398223,Employment and Training,Employment and Training +398219,Employment and Training,Employment and Training +398218,Employment and Training,Employment and Training +393045,Employment and Training,Employment and Training +392129,Employment and Training,Employment and Training +389617,Employment and Training,Employment and Training +389602,Employment and Training,Employment and Training +389600,Employment and Training,Employment and Training +386753,Employment and Training,Employment and Training +386750,Employment and Training,Employment and Training +384507,Employment and Training,Employment and Training +384506,Employment and Training,Employment and Training +382963,Employment and Training,Employment and Training +382962,Employment and Training,Employment and Training +382197,Employment and Training,Employment and Training +382196,Employment and Training,Employment and Training +382189,Employment and Training,Employment and Training +545193,Employment and Training,Employment and Training +545192,Employment and Training,Employment and Training +545191,Employment and Training,Employment and Training +545190,Employment and Training,Employment and Training +545188,Employment and Training,Employment and Training +543492,Employment and Training,Employment and Training +543487,Employment and Training,Employment and Training +539586,Employment and Training,Employment and Training +539580,Employment and Training,Employment and Training +538161,Employment and Training,Employment and Training +538160,Employment and Training,Employment and Training +534734,Employment and Training,Employment and Training +530808,Employment and Training,Employment and Training +529420,Employment and Training,Employment and Training +524267,Employment and Training,Employment and Training +524266,Employment and Training,Employment and Training +524265,Employment and Training,Employment and Training +524264,Employment and Training,Employment and Training +524263,Employment and Training,Employment and Training +524260,Employment and Training,Employment and Training +524259,Employment and Training,Employment and Training +524258,Employment and Training,Employment and Training +521957,Employment and Training,Employment and Training +521955,Employment and Training,Employment and Training +521937,Employment and Training,Employment and Training +521936,Employment and Training,Employment and Training +521935,Employment and Training,Employment and Training +521928,Employment and Training,Employment and Training +521922,Employment and Training,Employment and Training +521919,Employment and Training,Employment and Training +519401,Employment and Training,Employment and Training +517484,Employment and Training,Employment and Training +517468,Employment and Training,Employment and Training +514984,Employment and Training,Employment and Training +514119,Employment and Training,Employment and Training +512029,Employment and Training,Employment and Training +389604,Energy,Energy +382965,Energy,Energy +96324,Energy,Energy +154551,Immigration,Immigration +476533,Immigration,Immigration +446570,Industry,Industry +446568,Industry,Industry +129072,Industry,Industry +175589,Industry,Industry +175588,Industry,Industry +173524,Industry,Industry +167610,Industry,Industry +161573,Industry,Industry +161572,Industry,Industry +161571,Industry,Industry +159242,Industry,Industry +159240,Industry,Industry +156711,Industry,Industry +156709,Industry,Industry +154553,Industry,Industry +223616,Industry,Industry +223613,Industry,Industry +223606,Industry,Industry +211923,Industry,Industry +207097,Industry,Industry +202930,Industry,Industry +202928,Industry,Industry +202921,Industry,Industry +194718,Industry,Industry +194707,Industry,Industry +194706,Industry,Industry +194703,Industry,Industry +194698,Industry,Industry +189791,Industry,Industry +381212,Industry,Industry +301489,Industry,Industry +291089,Industry,Industry +285109,Industry,Industry +263411,Industry,Industry +263239,Industry,Industry +263237,Industry,Industry +263235,Industry,Industry +263232,Industry,Industry +263231,Industry,Industry +263229,Industry,Industry +244374,Industry,Industry +240329,Industry,Industry +230237,Industry,Industry +519401,Industry,Industry +500373,Infrastructure,Infrastructure +492383,Infrastructure,Infrastructure +375803,Infrastructure,Infrastructure +375800,Infrastructure,Infrastructure +489867,Infrastructure,Infrastructure +489863,Infrastructure,Infrastructure +489860,Infrastructure,Infrastructure +489858,Infrastructure,Infrastructure +489857,Infrastructure,Infrastructure +486325,Infrastructure,Infrastructure +486319,Infrastructure,Infrastructure +486313,Infrastructure,Infrastructure +415263,Infrastructure,Infrastructure +415255,Infrastructure,Infrastructure +415248,Infrastructure,Infrastructure +524266,Infrastructure,Infrastructure +524262,Infrastructure,Infrastructure +521937,Infrastructure,Infrastructure +435078,Labour,Labour +421001,Labour,Labour +159241,Labour,Labour +154551,Labour,Labour +138837,Labour,Labour +114172,Labour,Labour +165338,Labour,Labour +159246,Labour,Labour +159245,Labour,Labour +444738,Labour,Labour +444737,Labour,Labour +443139,Labour,Labour +94614,Defence,Defence +147472,Defence,Defence +125835,Defence,Defence +120074,Defence,Defence +113837,Defence,Defence +111335,Defence,Defence +107098,Defence,Defence +111335,Government Procurement,Government Procurement +106554,Government Procurement,Government Procurement +147472,Government Procurement,Government Procurement +125835,Government Procurement,Government Procurement +120074,Government Procurement,Government Procurement +107098,Industry,Industry +444439,Consumer Issues,Consumer Issues +444435,Consumer Issues,Consumer Issues +109627,Consumer Issues,Consumer Issues +109621,Consumer Issues,Consumer Issues +109617,Consumer Issues,Consumer Issues +105703,Consumer Issues,Consumer Issues +105701,Consumer Issues,Consumer Issues +105699,Consumer Issues,Consumer Issues +105697,Consumer Issues,Consumer Issues +105677,Consumer Issues,Consumer Issues +105675,Consumer Issues,Consumer Issues +105638,Consumer Issues,Consumer Issues +97484,Consumer Issues,Consumer Issues +89744,Consumer Issues,Consumer Issues +89742,Consumer Issues,Consumer Issues +180675,Consumer Issues,Consumer Issues +180673,Consumer Issues,Consumer Issues +180672,Consumer Issues,Consumer Issues +180671,Consumer Issues,Consumer Issues +180670,Consumer Issues,Consumer Issues +180668,Consumer Issues,Consumer Issues +180667,Consumer Issues,Consumer Issues +120815,Consumer Issues,Consumer Issues +120814,Consumer Issues,Consumer Issues +109628,Consumer Issues,Consumer Issues +438086,Consumer Issues,Consumer Issues +438085,Consumer Issues,Consumer Issues +438084,Consumer Issues,Consumer Issues +438082,Consumer Issues,Consumer Issues +438074,Consumer Issues,Consumer Issues +438073,Consumer Issues,Consumer Issues +438071,Consumer Issues,Consumer Issues +436551,Consumer Issues,Consumer Issues +436550,Consumer Issues,Consumer Issues +436549,Consumer Issues,Consumer Issues +432914,Consumer Issues,Consumer Issues +432913,Consumer Issues,Consumer Issues +432912,Consumer Issues,Consumer Issues +432911,Consumer Issues,Consumer Issues +431902,Consumer Issues,Consumer Issues +431900,Consumer Issues,Consumer Issues +431899,Consumer Issues,Consumer Issues +424806,Consumer Issues,Consumer Issues +424805,Consumer Issues,Consumer Issues +424804,Consumer Issues,Consumer Issues +424803,Consumer Issues,Consumer Issues +421829,Consumer Issues,Consumer Issues +405931,Consumer Issues,Consumer Issues +405930,Consumer Issues,Consumer Issues +405929,Consumer Issues,Consumer Issues +399930,Consumer Issues,Consumer Issues +399929,Consumer Issues,Consumer Issues +399928,Consumer Issues,Consumer Issues +529661,Immigration,Immigration +529657,Immigration,Immigration +89316,Immigration,Immigration +245498,Immigration,Immigration +245496,Immigration,Immigration +245490,Immigration,Immigration +226215,Immigration,Immigration +226212,Immigration,Immigration +226209,Immigration,Immigration +371471,Immigration,Immigration +327033,Immigration,Immigration +327032,Immigration,Immigration +327031,Immigration,Immigration +161562,International Relations,International Relations +161560,International Relations,International Relations +105677,International Relations,International Relations +105675,International Relations,International Relations +101077,International Relations,International Relations +101076,International Relations,International Relations +101075,International Relations,International Relations +89747,International Relations,International Relations +89745,International Relations,International Relations +153543,International Relations,International Relations +153542,International Relations,International Relations +120817,International Relations,International Relations +120816,International Relations,International Relations +120815,International Relations,International Relations +120814,International Relations,International Relations +117540,International Relations,International Relations +114022,International Relations,International Relations +114019,International Relations,International Relations +114013,International Relations,International Relations +161565,International Relations,International Relations +161564,International Relations,International Relations +438071,International Trade,International Trade +382055,International Trade,International Trade +89318,International Trade,International Trade +105677,International Trade,International Trade +105675,International Trade,International Trade +101077,International Trade,International Trade +159016,International Trade,International Trade +159015,International Trade,International Trade +266551,International Trade,International Trade +255409,International Trade,International Trade +105677,Taxation and Finance,Taxation and Finance +105675,Taxation and Finance,Taxation and Finance +101110,Taxation and Finance,Taxation and Finance +101108,Taxation and Finance,Taxation and Finance +101077,Taxation and Finance,Taxation and Finance +89747,Taxation and Finance,Taxation and Finance +89745,Taxation and Finance,Taxation and Finance +89744,Taxation and Finance,Taxation and Finance +89742,Taxation and Finance,Taxation and Finance +89741,Taxation and Finance,Taxation and Finance +89318,Taxation and Finance,Taxation and Finance +161552,Taxation and Finance,Taxation and Finance +161551,Taxation and Finance,Taxation and Finance +161550,Taxation and Finance,Taxation and Finance +161549,Taxation and Finance,Taxation and Finance +161548,Taxation and Finance,Taxation and Finance +159016,Taxation and Finance,Taxation and Finance +159015,Taxation and Finance,Taxation and Finance +159014,Taxation and Finance,Taxation and Finance +159013,Taxation and Finance,Taxation and Finance +133035,Taxation and Finance,Taxation and Finance +133034,Taxation and Finance,Taxation and Finance +128959,Taxation and Finance,Taxation and Finance +128958,Taxation and Finance,Taxation and Finance +128957,Taxation and Finance,Taxation and Finance +128956,Taxation and Finance,Taxation and Finance +128955,Taxation and Finance,Taxation and Finance +120817,Taxation and Finance,Taxation and Finance +120816,Taxation and Finance,Taxation and Finance +120815,Taxation and Finance,Taxation and Finance +120814,Taxation and Finance,Taxation and Finance +117538,Taxation and Finance,Taxation and Finance +114028,Taxation and Finance,Taxation and Finance +114023,Taxation and Finance,Taxation and Finance +114017,Taxation and Finance,Taxation and Finance +114010,Taxation and Finance,Taxation and Finance +113989,Taxation and Finance,Taxation and Finance +105703,Taxation and Finance,Taxation and Finance +105701,Taxation and Finance,Taxation and Finance +105699,Taxation and Finance,Taxation and Finance +290213,Taxation and Finance,Taxation and Finance +290212,Taxation and Finance,Taxation and Finance +280783,Taxation and Finance,Taxation and Finance +266551,Taxation and Finance,Taxation and Finance +259310,Taxation and Finance,Taxation and Finance +255409,Taxation and Finance,Taxation and Finance +250619,Taxation and Finance,Taxation and Finance +250615,Taxation and Finance,Taxation and Finance +250612,Taxation and Finance,Taxation and Finance +180675,Taxation and Finance,Taxation and Finance +180673,Taxation and Finance,Taxation and Finance +180672,Taxation and Finance,Taxation and Finance +180671,Taxation and Finance,Taxation and Finance +180670,Taxation and Finance,Taxation and Finance +168152,Taxation and Finance,Taxation and Finance +165577,Taxation and Finance,Taxation and Finance +161565,Taxation and Finance,Taxation and Finance +161564,Taxation and Finance,Taxation and Finance +161563,Taxation and Finance,Taxation and Finance +161562,Taxation and Finance,Taxation and Finance +161560,Taxation and Finance,Taxation and Finance +161559,Taxation and Finance,Taxation and Finance +161558,Taxation and Finance,Taxation and Finance +161556,Taxation and Finance,Taxation and Finance +161555,Taxation and Finance,Taxation and Finance +161553,Taxation and Finance,Taxation and Finance +471343,Taxation and Finance,Taxation and Finance +444439,Taxation and Finance,Taxation and Finance +405931,Taxation and Finance,Taxation and Finance +385202,Taxation and Finance,Taxation and Finance +385200,Taxation and Finance,Taxation and Finance +382054,Taxation and Finance,Taxation and Finance +378429,Taxation and Finance,Taxation and Finance +378428,Taxation and Finance,Taxation and Finance +376046,Taxation and Finance,Taxation and Finance +376044,Taxation and Finance,Taxation and Finance +376042,Taxation and Finance,Taxation and Finance +373529,Taxation and Finance,Taxation and Finance +373528,Taxation and Finance,Taxation and Finance +371490,Taxation and Finance,Taxation and Finance +371485,Taxation and Finance,Taxation and Finance +371483,Taxation and Finance,Taxation and Finance +371474,Taxation and Finance,Taxation and Finance +544033,Taxation and Finance,Taxation and Finance +538426,Taxation and Finance,Taxation and Finance +538423,Taxation and Finance,Taxation and Finance +538421,Taxation and Finance,Taxation and Finance +535210,Taxation and Finance,Taxation and Finance +535205,Taxation and Finance,Taxation and Finance +535194,Taxation and Finance,Taxation and Finance +535189,Taxation and Finance,Taxation and Finance +535187,Taxation and Finance,Taxation and Finance +535177,Taxation and Finance,Taxation and Finance +535172,Taxation and Finance,Taxation and Finance +526362,Taxation and Finance,Taxation and Finance +526359,Taxation and Finance,Taxation and Finance +526350,Taxation and Finance,Taxation and Finance +526344,Taxation and Finance,Taxation and Finance +522582,Taxation and Finance,Taxation and Finance +522577,Taxation and Finance,Taxation and Finance +522574,Taxation and Finance,Taxation and Finance +520134,Taxation and Finance,Taxation and Finance +520133,Taxation and Finance,Taxation and Finance +520132,Taxation and Finance,Taxation and Finance +520129,Taxation and Finance,Taxation and Finance +517417,Taxation and Finance,Taxation and Finance +517346,Taxation and Finance,Taxation and Finance +517345,Taxation and Finance,Taxation and Finance +517344,Taxation and Finance,Taxation and Finance +515516,Taxation and Finance,Taxation and Finance +515515,Taxation and Finance,Taxation and Finance +512771,Taxation and Finance,Taxation and Finance +512769,Taxation and Finance,Taxation and Finance +511229,Taxation and Finance,Taxation and Finance +511227,Taxation and Finance,Taxation and Finance +511224,Taxation and Finance,Taxation and Finance +511221,Taxation and Finance,Taxation and Finance +511218,Taxation and Finance,Taxation and Finance +511214,Taxation and Finance,Taxation and Finance +511212,Taxation and Finance,Taxation and Finance +506154,Taxation and Finance,Taxation and Finance +499442,Taxation and Finance,Taxation and Finance +496065,Taxation and Finance,Taxation and Finance +496062,Taxation and Finance,Taxation and Finance +493647,Taxation and Finance,Taxation and Finance +493602,Taxation and Finance,Taxation and Finance +491156,Taxation and Finance,Taxation and Finance +491150,Taxation and Finance,Taxation and Finance +488089,Taxation and Finance,Taxation and Finance +488084,Taxation and Finance,Taxation and Finance +488083,Taxation and Finance,Taxation and Finance +488079,Taxation and Finance,Taxation and Finance +488078,Taxation and Finance,Taxation and Finance +488063,Taxation and Finance,Taxation and Finance +485171,Taxation and Finance,Taxation and Finance +485169,Taxation and Finance,Taxation and Finance +485167,Taxation and Finance,Taxation and Finance +482374,Taxation and Finance,Taxation and Finance +482360,Taxation and Finance,Taxation and Finance +482338,Taxation and Finance,Taxation and Finance +480535,Taxation and Finance,Taxation and Finance +479162,Taxation and Finance,Taxation and Finance +479161,Taxation and Finance,Taxation and Finance +479159,Taxation and Finance,Taxation and Finance +479156,Taxation and Finance,Taxation and Finance +476552,Taxation and Finance,Taxation and Finance +476549,Taxation and Finance,Taxation and Finance +476548,Taxation and Finance,Taxation and Finance +476145,Taxation and Finance,Taxation and Finance +476141,Taxation and Finance,Taxation and Finance +471347,Taxation and Finance,Taxation and Finance +471346,Taxation and Finance,Taxation and Finance +535172,Tourism,Tourism +520128,Tourism,Tourism +109621,Tourism,Tourism +105701,Tourism,Tourism +105699,Tourism,Tourism +105697,Tourism,Tourism +101077,Tourism,Tourism +161562,Tourism,Tourism +161559,Tourism,Tourism +161558,Tourism,Tourism +161556,Tourism,Tourism +161555,Tourism,Tourism +161553,Tourism,Tourism +161552,Tourism,Tourism +161551,Tourism,Tourism +161550,Tourism,Tourism +161549,Tourism,Tourism +161548,Tourism,Tourism +159016,Tourism,Tourism +159015,Tourism,Tourism +148082,Tourism,Tourism +148081,Tourism,Tourism +133035,Tourism,Tourism +128959,Tourism,Tourism +128958,Tourism,Tourism +128957,Tourism,Tourism +128956,Tourism,Tourism +128955,Tourism,Tourism +117538,Tourism,Tourism +114028,Tourism,Tourism +114010,Tourism,Tourism +378429,Tourism,Tourism +378428,Tourism,Tourism +378427,Tourism,Tourism +376046,Tourism,Tourism +373529,Tourism,Tourism +373528,Tourism,Tourism +373527,Tourism,Tourism +373526,Tourism,Tourism +368783,Tourism,Tourism +368781,Tourism,Tourism +368780,Tourism,Tourism +368779,Tourism,Tourism +356341,Tourism,Tourism +356340,Tourism,Tourism +356338,Tourism,Tourism +350828,Tourism,Tourism +350822,Tourism,Tourism +348706,Tourism,Tourism +348705,Tourism,Tourism +348704,Tourism,Tourism +343722,Tourism,Tourism +343721,Tourism,Tourism +343718,Tourism,Tourism +341618,Tourism,Tourism +341616,Tourism,Tourism +341611,Tourism,Tourism +333341,Tourism,Tourism +333340,Tourism,Tourism +333339,Tourism,Tourism +327030,Tourism,Tourism +327029,Tourism,Tourism +327027,Tourism,Tourism +327026,Tourism,Tourism +327025,Tourism,Tourism +259312,Tourism,Tourism +250612,Tourism,Tourism +245489,Tourism,Tourism +165577,Tourism,Tourism +161565,Tourism,Tourism +161564,Tourism,Tourism +161563,Tourism,Tourism +476143,Tourism,Tourism +476142,Tourism,Tourism +456492,Tourism,Tourism +456491,Tourism,Tourism +74574,Mining,Mining +75816,Industry,Industry +75816,International Trade,International Trade +75816,Mining,Mining +150578,Education,Education +117216,Consumer Issues,Consumer Issues +117216,Health,Health +465246,Agriculture,Agriculture +459884,Environment,Environment +325002,Intellectual Property,Intellectual Property +91814,International Relations,International Relations +381736,International Trade,International Trade +128595,Agriculture,Agriculture +522532,Agriculture,Agriculture +349823,Consumer Issues,Consumer Issues +531540,Defence,Defence +426374,Energy,Energy +514697,Environment,Environment +334164,Financial Institutions,Financial Institutions +235389,Government Procurement,Government Procurement +445587,Employment and Training,Employment and Training +436037,Energy,Energy +379000,Environment,Environment +211949,Immigration,Immigration +421735,Industry,Industry +450045,Labour,Labour +348849,Regional Development,Regional Development +379029,Transportation,Transportation +538245,Agriculture,Agriculture +373894,Environment,Environment +373890,Health,Health +373906,International Relations,International Relations +504703,International Trade,International Trade +502922,Transportation,Transportation +141837,International Relations,International Relations +125085,International Trade,International Trade +216210,Tourism,Tourism +216210,Transportation,Transportation +93579,Health,Health +77508,Industry,Industry +77508,Intellectual Property,Intellectual Property +188960,Agriculture,Agriculture +336103,Taxation and Finance,Taxation and Finance +459081,Consumer Issues,Consumer Issues +407297,Financial Institutions,Financial Institutions +457865,Environment,Environment +457865,Transportation,Transportation +97574,Taxation and Finance,Taxation and Finance +93622,Government Procurement,Government Procurement +475547,Energy,Energy +223229,Environment,Environment +404177,Immigration,Immigration +457688,Industry,Industry +432644,International Relations,International Relations +515930,International Trade,International Trade +392346,Tourism,Tourism +82756,Defence,Defence +82756,Government Procurement,Government Procurement +89974,Agriculture,Agriculture +93274,Regional Development,Regional Development +93253,Infrastructure,Infrastructure +228631,Agriculture,Agriculture +409661,Constitutional Issues,Constitutional Issues +407740,Consumer Issues,Consumer Issues +481503,Employment and Training,Employment and Training +507567,Energy,Energy +503739,Environment,Environment +230332,Financial Institutions,Financial Institutions +481493,Government Procurement,Government Procurement +312840,Health,Health +327174,Immigration,Immigration +481486,Industry,Industry +160495,Intellectual Property,Intellectual Property +390437,Internal Trade,Internal Trade +417111,International Relations,International Relations +388343,International Trade,International Trade +481486,Justice and Law Enforcement,Justice and Law Enforcement +134197,Small Business,Small Business +323230,Forestry,Forestry +512798,Health,Health +463061,Immigration,Immigration +142054,Industry,Industry +100432,Infrastructure,Infrastructure +514913,Intellectual Property,Intellectual Property +105355,Internal Trade,Internal Trade +76958,International Relations,International Relations +453824,International Trade,International Trade +297591,Justice and Law Enforcement,Justice and Law Enforcement +487487,Labour,Labour +448768,Regional Development,Regional Development +480054,Small Business,Small Business +445692,Taxation and Finance,Taxation and Finance +453816,Tourism,Tourism +475502,Transportation,Transportation +153634,Consumer Issues,Consumer Issues +125735,Industry,Industry +74954,Energy,Energy +83234,Regional Development,Regional Development +88957,Industry,Industry +95094,Health,Health +107854,Industry,Industry +206308,Agriculture,Agriculture +239794,Environment,Environment +387016,International Trade,International Trade +225809,Labour,Labour +315160,Transportation,Transportation +501719,Education,Education +519255,Employment and Training,Employment and Training +513971,Health,Health +481928,Immigration,Immigration +488215,Small Business,Small Business +510818,Taxation and Finance,Taxation and Finance +506066,Agriculture,Agriculture +94178,Employment and Training,Employment and Training +94178,Government Procurement,Government Procurement +94179,Infrastructure,Infrastructure +94179,Justice and Law Enforcement,Justice and Law Enforcement +156506,Government Procurement,Government Procurement +156069,Small Business,Small Business +167779,Taxation and Finance,Taxation and Finance +105349,Consumer Issues,Consumer Issues +87754,Health,Health +77513,Industry,Industry +77513,Intellectual Property,Intellectual Property +165366,Government Procurement,Government Procurement +498711,Industry,Industry +374070,Internal Trade,Internal Trade +425302,International Trade,International Trade +207787,Taxation and Finance,Taxation and Finance +498712,Transportation,Transportation +113114,Education,Education +529072,Employment and Training,Employment and Training +389494,Environment,Environment +496282,Health,Health +523106,Immigration,Immigration +414150,Industry,Industry +93708,Internal Trade,Internal Trade +437316,International Trade,International Trade +519997,Labour,Labour +318804,Taxation and Finance,Taxation and Finance +121162,Infrastructure,Infrastructure +93668,Health,Health +80317,Employment and Training,Employment and Training +80619,Health,Health +545190,Education,Education +509505,Employment and Training,Employment and Training +524260,Energy,Energy +124358,Immigration,Immigration +514119,Industry,Industry +512029,Infrastructure,Infrastructure +154553,Intellectual Property,Intellectual Property +436820,Labour,Labour +106554,Defence,Defence +113837,Government Procurement,Government Procurement +101654,Industry,Industry +448465,Consumer Issues,Consumer Issues +290210,Immigration,Immigration +161563,International Relations,International Relations +447125,International Trade,International Trade +105697,Taxation and Finance,Taxation and Finance +535187,Tourism,Tourism +491178,Transportation,Transportation +224209,Health,Health +175038,Infrastructure,Infrastructure +175358,Agriculture,Agriculture +85354,Environment,Environment +449147,Infrastructure,Infrastructure +142934,International Trade,International Trade +515129,Labour,Labour +528801,Taxation and Finance,Taxation and Finance +97000,Transportation,Transportation +456490,Tourism,Tourism +456489,Tourism,Tourism +454983,Tourism,Tourism +447122,Tourism,Tourism +444437,Tourism,Tourism +444436,Tourism,Tourism +438082,Tourism,Tourism +436548,Tourism,Tourism +436547,Tourism,Tourism +432924,Tourism,Tourism +432915,Tourism,Tourism +432913,Tourism,Tourism +431900,Tourism,Tourism +535210,Tourism,Tourism +535205,Tourism,Tourism +535194,Tourism,Tourism +535189,Tourism,Tourism +491170,Transportation,Transportation +491165,Transportation,Transportation +89747,Transportation,Transportation +89745,Transportation,Transportation +89744,Transportation,Transportation +89742,Transportation,Transportation +89741,Transportation,Transportation +89318,Transportation,Transportation +76069,Transportation,Transportation +117538,Transportation,Transportation +114028,Transportation,Transportation +114023,Transportation,Transportation +114022,Transportation,Transportation +114019,Transportation,Transportation +114017,Transportation,Transportation +114013,Transportation,Transportation +114010,Transportation,Transportation +113989,Transportation,Transportation +109617,Transportation,Transportation +105701,Transportation,Transportation +105699,Transportation,Transportation +105677,Transportation,Transportation +105675,Transportation,Transportation +105638,Transportation,Transportation +101110,Transportation,Transportation +101108,Transportation,Transportation +101077,Transportation,Transportation +101076,Transportation,Transportation +101075,Transportation,Transportation +97484,Transportation,Transportation +185453,Transportation,Transportation +185452,Transportation,Transportation +180675,Transportation,Transportation +180673,Transportation,Transportation +180672,Transportation,Transportation +180671,Transportation,Transportation +180670,Transportation,Transportation +180668,Transportation,Transportation +170880,Transportation,Transportation +168154,Transportation,Transportation +168152,Transportation,Transportation +168149,Transportation,Transportation +165577,Transportation,Transportation +161565,Transportation,Transportation +161564,Transportation,Transportation +161563,Transportation,Transportation +161562,Transportation,Transportation +161560,Transportation,Transportation +161559,Transportation,Transportation +161558,Transportation,Transportation +161556,Transportation,Transportation +161555,Transportation,Transportation +161553,Transportation,Transportation +161552,Transportation,Transportation +161551,Transportation,Transportation +161550,Transportation,Transportation +161549,Transportation,Transportation +161548,Transportation,Transportation +159016,Transportation,Transportation +159015,Transportation,Transportation +159014,Transportation,Transportation +159013,Transportation,Transportation +153543,Transportation,Transportation +153542,Transportation,Transportation +148083,Transportation,Transportation +148082,Transportation,Transportation +148081,Transportation,Transportation +145965,Transportation,Transportation +145963,Transportation,Transportation +133035,Transportation,Transportation +133034,Transportation,Transportation +128959,Transportation,Transportation +128958,Transportation,Transportation +128957,Transportation,Transportation +128956,Transportation,Transportation +128955,Transportation,Transportation +120817,Transportation,Transportation +120816,Transportation,Transportation +120815,Transportation,Transportation +120814,Transportation,Transportation +117540,Transportation,Transportation +373529,Transportation,Transportation +373528,Transportation,Transportation +373527,Transportation,Transportation +373526,Transportation,Transportation +371490,Transportation,Transportation +371485,Transportation,Transportation +371483,Transportation,Transportation +371478,Transportation,Transportation +371474,Transportation,Transportation +371471,Transportation,Transportation +368783,Transportation,Transportation +368781,Transportation,Transportation +368780,Transportation,Transportation +368779,Transportation,Transportation +363273,Transportation,Transportation +356341,Transportation,Transportation +356340,Transportation,Transportation +356338,Transportation,Transportation +350828,Transportation,Transportation +350822,Transportation,Transportation +348706,Transportation,Transportation +348705,Transportation,Transportation +348704,Transportation,Transportation +343722,Transportation,Transportation +343721,Transportation,Transportation +343718,Transportation,Transportation +341618,Transportation,Transportation +341616,Transportation,Transportation +341611,Transportation,Transportation +341605,Transportation,Transportation +333341,Transportation,Transportation +333340,Transportation,Transportation +333339,Transportation,Transportation +330341,Transportation,Transportation +330340,Transportation,Transportation +330339,Transportation,Transportation +330337,Transportation,Transportation +330336,Transportation,Transportation +330335,Transportation,Transportation +327030,Transportation,Transportation +327029,Transportation,Transportation +327027,Transportation,Transportation +327026,Transportation,Transportation +327025,Transportation,Transportation +327023,Transportation,Transportation +327021,Transportation,Transportation +321785,Transportation,Transportation +311051,Transportation,Transportation +290213,Transportation,Transportation +290212,Transportation,Transportation +290211,Transportation,Transportation +290210,Transportation,Transportation +290209,Transportation,Transportation +280783,Transportation,Transportation +273091,Transportation,Transportation +273090,Transportation,Transportation +266551,Transportation,Transportation +266550,Transportation,Transportation +265911,Transportation,Transportation +265910,Transportation,Transportation +265909,Transportation,Transportation +259314,Transportation,Transportation +259313,Transportation,Transportation +259312,Transportation,Transportation +259310,Transportation,Transportation +255409,Transportation,Transportation +250627,Transportation,Transportation +250623,Transportation,Transportation +250619,Transportation,Transportation +250615,Transportation,Transportation +245498,Transportation,Transportation +245496,Transportation,Transportation +245490,Transportation,Transportation +245489,Transportation,Transportation +245487,Transportation,Transportation +240620,Transportation,Transportation +237470,Transportation,Transportation +237469,Transportation,Transportation +233138,Transportation,Transportation +233137,Transportation,Transportation +233136,Transportation,Transportation +233135,Transportation,Transportation +233134,Transportation,Transportation +233133,Transportation,Transportation +228213,Transportation,Transportation +228212,Transportation,Transportation +228211,Transportation,Transportation +226215,Transportation,Transportation +226212,Transportation,Transportation +226209,Transportation,Transportation +226208,Transportation,Transportation +226207,Transportation,Transportation +223011,Transportation,Transportation +206848,Transportation,Transportation +202856,Transportation,Transportation +200992,Transportation,Transportation +491160,Transportation,Transportation +491156,Transportation,Transportation +491150,Transportation,Transportation +491146,Transportation,Transportation +488089,Transportation,Transportation +488085,Transportation,Transportation +488084,Transportation,Transportation +488083,Transportation,Transportation +488079,Transportation,Transportation +488078,Transportation,Transportation +488077,Transportation,Transportation +488076,Transportation,Transportation +488072,Transportation,Transportation +488070,Transportation,Transportation +488063,Transportation,Transportation +485171,Transportation,Transportation +485169,Transportation,Transportation +485167,Transportation,Transportation +482374,Transportation,Transportation +482360,Transportation,Transportation +482338,Transportation,Transportation +480535,Transportation,Transportation +479162,Transportation,Transportation +479161,Transportation,Transportation +479160,Transportation,Transportation +479159,Transportation,Transportation +479156,Transportation,Transportation +476552,Transportation,Transportation +476551,Transportation,Transportation +476549,Transportation,Transportation +476548,Transportation,Transportation +476145,Transportation,Transportation +476144,Transportation,Transportation +476143,Transportation,Transportation +476142,Transportation,Transportation +476141,Transportation,Transportation +476140,Transportation,Transportation +471347,Transportation,Transportation +471346,Transportation,Transportation +471344,Transportation,Transportation +471343,Transportation,Transportation +466172,Transportation,Transportation +466171,Transportation,Transportation +466170,Transportation,Transportation +466169,Transportation,Transportation +466168,Transportation,Transportation +462277,Transportation,Transportation +462275,Transportation,Transportation +462274,Transportation,Transportation +458328,Transportation,Transportation +458206,Transportation,Transportation +456493,Transportation,Transportation +456492,Transportation,Transportation +456491,Transportation,Transportation +456490,Transportation,Transportation +456489,Transportation,Transportation +454983,Transportation,Transportation +454981,Transportation,Transportation +454461,Transportation,Transportation +448466,Transportation,Transportation +448465,Transportation,Transportation +447125,Transportation,Transportation +447122,Transportation,Transportation +444440,Transportation,Transportation +444439,Transportation,Transportation +444437,Transportation,Transportation +444436,Transportation,Transportation +444435,Transportation,Transportation +440396,Transportation,Transportation +438087,Transportation,Transportation +438086,Transportation,Transportation +438085,Transportation,Transportation +438084,Transportation,Transportation +438082,Transportation,Transportation +438078,Transportation,Transportation +438074,Transportation,Transportation +438073,Transportation,Transportation +438071,Transportation,Transportation +436551,Transportation,Transportation +436550,Transportation,Transportation +436549,Transportation,Transportation +432924,Transportation,Transportation +432915,Transportation,Transportation +432914,Transportation,Transportation +432913,Transportation,Transportation +432912,Transportation,Transportation +432911,Transportation,Transportation +431902,Transportation,Transportation +431900,Transportation,Transportation +431899,Transportation,Transportation +424806,Transportation,Transportation +424805,Transportation,Transportation +424804,Transportation,Transportation +424803,Transportation,Transportation +421829,Transportation,Transportation +416378,Transportation,Transportation +416377,Transportation,Transportation +416375,Transportation,Transportation +416374,Transportation,Transportation +416372,Transportation,Transportation +416369,Transportation,Transportation +416368,Transportation,Transportation +416366,Transportation,Transportation +416365,Transportation,Transportation +416363,Transportation,Transportation +412081,Transportation,Transportation +412079,Transportation,Transportation +412077,Transportation,Transportation +407672,Transportation,Transportation +407671,Transportation,Transportation +406093,Transportation,Transportation +406092,Transportation,Transportation +406091,Transportation,Transportation +406089,Transportation,Transportation +405962,Transportation,Transportation +405932,Transportation,Transportation +405931,Transportation,Transportation +405930,Transportation,Transportation +405929,Transportation,Transportation +405928,Transportation,Transportation +405927,Transportation,Transportation +405926,Transportation,Transportation +405925,Transportation,Transportation +405923,Transportation,Transportation +405922,Transportation,Transportation +405921,Transportation,Transportation +402649,Transportation,Transportation +402646,Transportation,Transportation +402645,Transportation,Transportation +399930,Transportation,Transportation +399929,Transportation,Transportation +399928,Transportation,Transportation +389749,Transportation,Transportation +389748,Transportation,Transportation +389747,Transportation,Transportation +389746,Transportation,Transportation +383322,Transportation,Transportation +383321,Transportation,Transportation +382055,Transportation,Transportation +382054,Transportation,Transportation +382053,Transportation,Transportation +378429,Transportation,Transportation +378428,Transportation,Transportation +378427,Transportation,Transportation +376046,Transportation,Transportation +376044,Transportation,Transportation +376042,Transportation,Transportation +544038,Transportation,Transportation +544037,Transportation,Transportation +544035,Transportation,Transportation +544033,Transportation,Transportation +538428,Transportation,Transportation +538427,Transportation,Transportation +538426,Transportation,Transportation +538423,Transportation,Transportation +538421,Transportation,Transportation +535210,Transportation,Transportation +535208,Transportation,Transportation +535205,Transportation,Transportation +535204,Transportation,Transportation +535197,Transportation,Transportation +535194,Transportation,Transportation +535189,Transportation,Transportation +535187,Transportation,Transportation +535177,Transportation,Transportation +535172,Transportation,Transportation +530868,Transportation,Transportation +530864,Transportation,Transportation +529665,Transportation,Transportation +529661,Transportation,Transportation +529659,Transportation,Transportation +529657,Transportation,Transportation +526362,Transportation,Transportation +526359,Transportation,Transportation +526355,Transportation,Transportation +526350,Transportation,Transportation +526344,Transportation,Transportation +522582,Transportation,Transportation +522580,Transportation,Transportation +522579,Transportation,Transportation +522577,Transportation,Transportation +522574,Transportation,Transportation +522573,Transportation,Transportation +520134,Transportation,Transportation +520133,Transportation,Transportation +520132,Transportation,Transportation +520131,Transportation,Transportation +520130,Transportation,Transportation +520129,Transportation,Transportation +520128,Transportation,Transportation +517417,Transportation,Transportation +517408,Transportation,Transportation +517392,Transportation,Transportation +517348,Transportation,Transportation +517347,Transportation,Transportation +517346,Transportation,Transportation +517345,Transportation,Transportation +517344,Transportation,Transportation +517342,Transportation,Transportation +515516,Transportation,Transportation +515515,Transportation,Transportation +514529,Transportation,Transportation +514003,Transportation,Transportation +512771,Transportation,Transportation +512769,Transportation,Transportation +512762,Transportation,Transportation +511229,Transportation,Transportation +511227,Transportation,Transportation +511224,Transportation,Transportation +511221,Transportation,Transportation +511218,Transportation,Transportation +511214,Transportation,Transportation +511212,Transportation,Transportation +506154,Transportation,Transportation +506153,Transportation,Transportation +502699,Transportation,Transportation +502696,Transportation,Transportation +502694,Transportation,Transportation +499443,Transportation,Transportation +499442,Transportation,Transportation +499440,Transportation,Transportation +499438,Transportation,Transportation +496065,Transportation,Transportation +496062,Transportation,Transportation +493659,Transportation,Transportation +493657,Transportation,Transportation +493647,Transportation,Transportation +493602,Transportation,Transportation +224208,Health,Health +207728,Health,Health +207727,Health,Health +186584,Health,Health +175040,Health,Health +175039,Health,Health +175038,Health,Health +175036,Health,Health +175034,Health,Health +167104,Health,Health +155772,Health,Health +155048,Health,Health +155047,Health,Health +144394,Health,Health +121311,Health,Health +109914,Health,Health +106177,Health,Health +344297,Health,Health +339452,Health,Health +330119,Health,Health +313614,Health,Health +313613,Health,Health +313612,Health,Health +313611,Health,Health +313610,Health,Health +313609,Health,Health +313589,Health,Health +291809,Health,Health +291255,Health,Health +291253,Health,Health +278451,Health,Health +268011,Health,Health +254630,Health,Health +254629,Health,Health +237914,Health,Health +237912,Health,Health +225850,Health,Health +225849,Health,Health +225848,Health,Health +225847,Health,Health +224210,Health,Health +175036,Infrastructure,Infrastructure +175034,Infrastructure,Infrastructure +106177,Infrastructure,Infrastructure +237911,Infrastructure,Infrastructure +225850,Infrastructure,Infrastructure +225849,Infrastructure,Infrastructure +225848,Infrastructure,Infrastructure +225847,Infrastructure,Infrastructure +175040,Infrastructure,Infrastructure +175039,Infrastructure,Infrastructure +449149,Agriculture,Agriculture +396091,Agriculture,Agriculture +226269,Agriculture,Agriculture +226268,Agriculture,Agriculture +223365,Agriculture,Agriculture +449150,Environment,Environment +449147,Environment,Environment +430365,Infrastructure,Infrastructure +409116,Infrastructure,Infrastructure +93348,Infrastructure,Infrastructure +93346,Infrastructure,Infrastructure +88028,Infrastructure,Infrastructure +80749,Infrastructure,Infrastructure +77441,Infrastructure,Infrastructure +76985,Infrastructure,Infrastructure +76982,Infrastructure,Infrastructure +76980,Infrastructure,Infrastructure +76975,Infrastructure,Infrastructure +216689,Infrastructure,Infrastructure +163759,Infrastructure,Infrastructure +156866,Infrastructure,Infrastructure +156862,Infrastructure,Infrastructure +142935,Infrastructure,Infrastructure +128539,Infrastructure,Infrastructure +113486,Infrastructure,Infrastructure +113485,Infrastructure,Infrastructure +113484,Infrastructure,Infrastructure +113478,Infrastructure,Infrastructure +244209,Infrastructure,Infrastructure +230121,Infrastructure,Infrastructure +223377,Infrastructure,Infrastructure +449150,Infrastructure,Infrastructure +193230,International Trade,International Trade +185645,International Trade,International Trade +515128,Labour,Labour +515123,Labour,Labour +348774,Labour,Labour +340605,Labour,Labour +486436,Labour,Labour +428103,Labour,Labour +428101,Labour,Labour +428100,Labour,Labour +428099,Labour,Labour +428098,Labour,Labour +428015,Labour,Labour +528922,Labour,Labour +528920,Labour,Labour +528917,Labour,Labour +528916,Labour,Labour +528913,Labour,Labour +528909,Labour,Labour +528908,Labour,Labour +528906,Labour,Labour +528901,Labour,Labour +528897,Labour,Labour +528895,Labour,Labour +528893,Labour,Labour +528891,Labour,Labour +528890,Labour,Labour +528889,Labour,Labour +528886,Labour,Labour +528884,Labour,Labour +528883,Labour,Labour +528879,Labour,Labour +528867,Labour,Labour +528862,Labour,Labour +528858,Labour,Labour +528849,Labour,Labour +528836,Labour,Labour +528833,Labour,Labour +528831,Labour,Labour +528827,Labour,Labour +528814,Labour,Labour +528812,Labour,Labour +528810,Labour,Labour +528801,Labour,Labour +525610,Labour,Labour +525600,Labour,Labour +525592,Labour,Labour +523673,Taxation and Finance,Taxation and Finance +523672,Taxation and Finance,Taxation and Finance +87982,Taxation and Finance,Taxation and Finance +85358,Taxation and Finance,Taxation and Finance +80749,Taxation and Finance,Taxation and Finance +80747,Taxation and Finance,Taxation and Finance +80746,Taxation and Finance,Taxation and Finance +80741,Taxation and Finance,Taxation and Finance +77441,Taxation and Finance,Taxation and Finance +76982,Taxation and Finance,Taxation and Finance +160032,Taxation and Finance,Taxation and Finance +151979,Taxation and Finance,Taxation and Finance +132538,Taxation and Finance,Taxation and Finance +108914,Taxation and Finance,Taxation and Finance +105217,Taxation and Finance,Taxation and Finance +90361,Taxation and Finance,Taxation and Finance +88027,Taxation and Finance,Taxation and Finance +295729,Taxation and Finance,Taxation and Finance +230122,Taxation and Finance,Taxation and Finance +535332,Taxation and Finance,Taxation and Finance +535326,Taxation and Finance,Taxation and Finance +528836,Taxation and Finance,Taxation and Finance +528810,Taxation and Finance,Taxation and Finance +90363,Transportation,Transportation +80749,Transportation,Transportation +111777,Transportation,Transportation +503741,Labour,Labour +481503,Labour,Labour +481477,Small Business,Small Business +481475,Small Business,Small Business +250307,Small Business,Small Business +441609,Taxation and Finance,Taxation and Finance +441607,Taxation and Finance,Taxation and Finance +154058,Taxation and Finance,Taxation and Finance +154057,Taxation and Finance,Taxation and Finance +305570,Taxation and Finance,Taxation and Finance +305569,Taxation and Finance,Taxation and Finance +273672,Taxation and Finance,Taxation and Finance +267749,Taxation and Finance,Taxation and Finance +250327,Taxation and Finance,Taxation and Finance +250325,Taxation and Finance,Taxation and Finance +250323,Taxation and Finance,Taxation and Finance +250317,Taxation and Finance,Taxation and Finance +250312,Taxation and Finance,Taxation and Finance +250307,Taxation and Finance,Taxation and Finance +230332,Taxation and Finance,Taxation and Finance +355934,Taxation and Finance,Taxation and Finance +353651,Taxation and Finance,Taxation and Finance +353650,Taxation and Finance,Taxation and Finance +353649,Taxation and Finance,Taxation and Finance +353647,Taxation and Finance,Taxation and Finance +353644,Taxation and Finance,Taxation and Finance +353643,Taxation and Finance,Taxation and Finance +351550,Taxation and Finance,Taxation and Finance +351549,Taxation and Finance,Taxation and Finance +351547,Taxation and Finance,Taxation and Finance +351546,Taxation and Finance,Taxation and Finance +349247,Taxation and Finance,Taxation and Finance +349246,Taxation and Finance,Taxation and Finance +349243,Taxation and Finance,Taxation and Finance +349219,Taxation and Finance,Taxation and Finance +349209,Taxation and Finance,Taxation and Finance +349206,Taxation and Finance,Taxation and Finance +349201,Taxation and Finance,Taxation and Finance +349198,Taxation and Finance,Taxation and Finance +349195,Taxation and Finance,Taxation and Finance +349191,Taxation and Finance,Taxation and Finance +349179,Taxation and Finance,Taxation and Finance +347130,Taxation and Finance,Taxation and Finance +347129,Taxation and Finance,Taxation and Finance +347128,Taxation and Finance,Taxation and Finance +347127,Taxation and Finance,Taxation and Finance +347118,Taxation and Finance,Taxation and Finance +343784,Taxation and Finance,Taxation and Finance +343782,Taxation and Finance,Taxation and Finance +343780,Taxation and Finance,Taxation and Finance +343777,Taxation and Finance,Taxation and Finance +341688,Taxation and Finance,Taxation and Finance +341686,Taxation and Finance,Taxation and Finance +341682,Taxation and Finance,Taxation and Finance +341677,Taxation and Finance,Taxation and Finance +341672,Taxation and Finance,Taxation and Finance +338070,Taxation and Finance,Taxation and Finance +338069,Taxation and Finance,Taxation and Finance +338068,Taxation and Finance,Taxation and Finance +338067,Taxation and Finance,Taxation and Finance +338066,Taxation and Finance,Taxation and Finance +338065,Taxation and Finance,Taxation and Finance +338064,Taxation and Finance,Taxation and Finance +338062,Taxation and Finance,Taxation and Finance +338061,Taxation and Finance,Taxation and Finance +338060,Taxation and Finance,Taxation and Finance +338059,Taxation and Finance,Taxation and Finance +338055,Taxation and Finance,Taxation and Finance +338053,Taxation and Finance,Taxation and Finance +338051,Taxation and Finance,Taxation and Finance +338049,Taxation and Finance,Taxation and Finance +338047,Taxation and Finance,Taxation and Finance +338046,Taxation and Finance,Taxation and Finance +338045,Taxation and Finance,Taxation and Finance +338043,Taxation and Finance,Taxation and Finance +338042,Taxation and Finance,Taxation and Finance +338041,Taxation and Finance,Taxation and Finance +338040,Taxation and Finance,Taxation and Finance +338039,Taxation and Finance,Taxation and Finance +338038,Taxation and Finance,Taxation and Finance +338037,Taxation and Finance,Taxation and Finance +338035,Taxation and Finance,Taxation and Finance +338033,Taxation and Finance,Taxation and Finance +338027,Taxation and Finance,Taxation and Finance +335631,Taxation and Finance,Taxation and Finance +335628,Taxation and Finance,Taxation and Finance +335625,Taxation and Finance,Taxation and Finance +335620,Taxation and Finance,Taxation and Finance +335058,Taxation and Finance,Taxation and Finance +333538,Taxation and Finance,Taxation and Finance +331024,Taxation and Finance,Taxation and Finance +329883,Taxation and Finance,Taxation and Finance +329882,Taxation and Finance,Taxation and Finance +327332,Taxation and Finance,Taxation and Finance +327331,Taxation and Finance,Taxation and Finance +327174,Taxation and Finance,Taxation and Finance +327173,Taxation and Finance,Taxation and Finance +327171,Taxation and Finance,Taxation and Finance +327169,Taxation and Finance,Taxation and Finance +324739,Taxation and Finance,Taxation and Finance +324734,Taxation and Finance,Taxation and Finance +324733,Taxation and Finance,Taxation and Finance +324731,Taxation and Finance,Taxation and Finance +321804,Taxation and Finance,Taxation and Finance +321800,Taxation and Finance,Taxation and Finance +321799,Taxation and Finance,Taxation and Finance +321798,Taxation and Finance,Taxation and Finance +321797,Taxation and Finance,Taxation and Finance +321796,Taxation and Finance,Taxation and Finance +321795,Taxation and Finance,Taxation and Finance +318797,Taxation and Finance,Taxation and Finance +318795,Taxation and Finance,Taxation and Finance +315873,Taxation and Finance,Taxation and Finance +315871,Taxation and Finance,Taxation and Finance +315854,Taxation and Finance,Taxation and Finance +315853,Taxation and Finance,Taxation and Finance +315852,Taxation and Finance,Taxation and Finance +312751,Taxation and Finance,Taxation and Finance +312750,Taxation and Finance,Taxation and Finance +312749,Taxation and Finance,Taxation and Finance +308770,Taxation and Finance,Taxation and Finance +308769,Taxation and Finance,Taxation and Finance +308749,Taxation and Finance,Taxation and Finance +439405,Taxation and Finance,Taxation and Finance +439399,Taxation and Finance,Taxation and Finance +439396,Taxation and Finance,Taxation and Finance +439389,Taxation and Finance,Taxation and Finance +439386,Taxation and Finance,Taxation and Finance +439375,Taxation and Finance,Taxation and Finance +439368,Taxation and Finance,Taxation and Finance +439363,Taxation and Finance,Taxation and Finance +435598,Taxation and Finance,Taxation and Finance +433522,Taxation and Finance,Taxation and Finance +429157,Taxation and Finance,Taxation and Finance +426158,Taxation and Finance,Taxation and Finance +426156,Taxation and Finance,Taxation and Finance +423484,Taxation and Finance,Taxation and Finance +423483,Taxation and Finance,Taxation and Finance +423481,Taxation and Finance,Taxation and Finance +421624,Taxation and Finance,Taxation and Finance +421622,Taxation and Finance,Taxation and Finance +421618,Taxation and Finance,Taxation and Finance +419466,Taxation and Finance,Taxation and Finance +419464,Taxation and Finance,Taxation and Finance +418334,Taxation and Finance,Taxation and Finance +418333,Taxation and Finance,Taxation and Finance +418332,Taxation and Finance,Taxation and Finance +418331,Taxation and Finance,Taxation and Finance +418330,Taxation and Finance,Taxation and Finance +417111,Taxation and Finance,Taxation and Finance +417105,Taxation and Finance,Taxation and Finance +416797,Taxation and Finance,Taxation and Finance +416794,Taxation and Finance,Taxation and Finance +416790,Taxation and Finance,Taxation and Finance +416788,Taxation and Finance,Taxation and Finance +409701,Taxation and Finance,Taxation and Finance +409699,Taxation and Finance,Taxation and Finance +409680,Taxation and Finance,Taxation and Finance +409673,Taxation and Finance,Taxation and Finance +409669,Taxation and Finance,Taxation and Finance +409666,Taxation and Finance,Taxation and Finance +409663,Taxation and Finance,Taxation and Finance +409661,Taxation and Finance,Taxation and Finance +407750,Taxation and Finance,Taxation and Finance +407747,Taxation and Finance,Taxation and Finance +407745,Taxation and Finance,Taxation and Finance +407742,Taxation and Finance,Taxation and Finance +407740,Taxation and Finance,Taxation and Finance +407737,Taxation and Finance,Taxation and Finance +407735,Taxation and Finance,Taxation and Finance +406375,Taxation and Finance,Taxation and Finance +406373,Taxation and Finance,Taxation and Finance +406372,Taxation and Finance,Taxation and Finance +406369,Taxation and Finance,Taxation and Finance +405665,Taxation and Finance,Taxation and Finance +405663,Taxation and Finance,Taxation and Finance +405661,Taxation and Finance,Taxation and Finance +405656,Taxation and Finance,Taxation and Finance +403358,Taxation and Finance,Taxation and Finance +403355,Taxation and Finance,Taxation and Finance +403353,Taxation and Finance,Taxation and Finance +398733,Taxation and Finance,Taxation and Finance +398724,Taxation and Finance,Taxation and Finance +398711,Taxation and Finance,Taxation and Finance +398708,Taxation and Finance,Taxation and Finance +396867,Taxation and Finance,Taxation and Finance +396806,Taxation and Finance,Taxation and Finance +396791,Taxation and Finance,Taxation and Finance +396783,Taxation and Finance,Taxation and Finance +396777,Taxation and Finance,Taxation and Finance +396772,Taxation and Finance,Taxation and Finance +396766,Taxation and Finance,Taxation and Finance +394345,Taxation and Finance,Taxation and Finance +394342,Taxation and Finance,Taxation and Finance +390444,Taxation and Finance,Taxation and Finance +390443,Taxation and Finance,Taxation and Finance +390442,Taxation and Finance,Taxation and Finance +390441,Taxation and Finance,Taxation and Finance +390439,Taxation and Finance,Taxation and Finance +390437,Taxation and Finance,Taxation and Finance +388408,Taxation and Finance,Taxation and Finance +388404,Taxation and Finance,Taxation and Finance +388401,Taxation and Finance,Taxation and Finance +388398,Taxation and Finance,Taxation and Finance +388395,Taxation and Finance,Taxation and Finance +388389,Taxation and Finance,Taxation and Finance +388385,Taxation and Finance,Taxation and Finance +388377,Taxation and Finance,Taxation and Finance +388370,Taxation and Finance,Taxation and Finance +388366,Taxation and Finance,Taxation and Finance +388361,Taxation and Finance,Taxation and Finance +388355,Taxation and Finance,Taxation and Finance +388352,Taxation and Finance,Taxation and Finance +388348,Taxation and Finance,Taxation and Finance +388346,Taxation and Finance,Taxation and Finance +388345,Taxation and Finance,Taxation and Finance +388344,Taxation and Finance,Taxation and Finance +388343,Taxation and Finance,Taxation and Finance +388341,Taxation and Finance,Taxation and Finance +388340,Taxation and Finance,Taxation and Finance +388337,Taxation and Finance,Taxation and Finance +388334,Taxation and Finance,Taxation and Finance +388331,Taxation and Finance,Taxation and Finance +388328,Taxation and Finance,Taxation and Finance +388325,Taxation and Finance,Taxation and Finance +388320,Taxation and Finance,Taxation and Finance +388314,Taxation and Finance,Taxation and Finance +388310,Taxation and Finance,Taxation and Finance +388300,Taxation and Finance,Taxation and Finance +388299,Taxation and Finance,Taxation and Finance +388298,Taxation and Finance,Taxation and Finance +388295,Taxation and Finance,Taxation and Finance +388291,Taxation and Finance,Taxation and Finance +388288,Taxation and Finance,Taxation and Finance +388286,Taxation and Finance,Taxation and Finance +388284,Taxation and Finance,Taxation and Finance +388280,Taxation and Finance,Taxation and Finance +388278,Taxation and Finance,Taxation and Finance +388271,Taxation and Finance,Taxation and Finance +388264,Taxation and Finance,Taxation and Finance +385536,Taxation and Finance,Taxation and Finance +385533,Taxation and Finance,Taxation and Finance +385530,Taxation and Finance,Taxation and Finance +385526,Taxation and Finance,Taxation and Finance +385407,Taxation and Finance,Taxation and Finance +385401,Taxation and Finance,Taxation and Finance +385399,Taxation and Finance,Taxation and Finance +385396,Taxation and Finance,Taxation and Finance +383674,Taxation and Finance,Taxation and Finance +383671,Taxation and Finance,Taxation and Finance +382509,Taxation and Finance,Taxation and Finance +381773,Taxation and Finance,Taxation and Finance +381771,Taxation and Finance,Taxation and Finance +381770,Taxation and Finance,Taxation and Finance +381769,Taxation and Finance,Taxation and Finance +381766,Taxation and Finance,Taxation and Finance +381325,Taxation and Finance,Taxation and Finance +381323,Taxation and Finance,Taxation and Finance +381317,Taxation and Finance,Taxation and Finance +381315,Taxation and Finance,Taxation and Finance +381313,Taxation and Finance,Taxation and Finance +381309,Taxation and Finance,Taxation and Finance +381308,Taxation and Finance,Taxation and Finance +381303,Taxation and Finance,Taxation and Finance +381301,Taxation and Finance,Taxation and Finance +379909,Taxation and Finance,Taxation and Finance +379907,Taxation and Finance,Taxation and Finance +379905,Taxation and Finance,Taxation and Finance +379711,Taxation and Finance,Taxation and Finance +379708,Taxation and Finance,Taxation and Finance +379706,Taxation and Finance,Taxation and Finance +376799,Taxation and Finance,Taxation and Finance +376798,Taxation and Finance,Taxation and Finance +376794,Taxation and Finance,Taxation and Finance +374824,Taxation and Finance,Taxation and Finance +374821,Taxation and Finance,Taxation and Finance +372530,Taxation and Finance,Taxation and Finance +372528,Taxation and Finance,Taxation and Finance +372527,Taxation and Finance,Taxation and Finance +372525,Taxation and Finance,Taxation and Finance +372521,Taxation and Finance,Taxation and Finance +372518,Taxation and Finance,Taxation and Finance +369123,Taxation and Finance,Taxation and Finance +366754,Taxation and Finance,Taxation and Finance +363462,Taxation and Finance,Taxation and Finance +363458,Taxation and Finance,Taxation and Finance +363457,Taxation and Finance,Taxation and Finance +362351,Taxation and Finance,Taxation and Finance +362306,Taxation and Finance,Taxation and Finance +361190,Taxation and Finance,Taxation and Finance +359867,Taxation and Finance,Taxation and Finance +359759,Taxation and Finance,Taxation and Finance +359758,Taxation and Finance,Taxation and Finance +359748,Taxation and Finance,Taxation and Finance +359746,Taxation and Finance,Taxation and Finance +359745,Taxation and Finance,Taxation and Finance +359744,Taxation and Finance,Taxation and Finance +359742,Taxation and Finance,Taxation and Finance +359738,Taxation and Finance,Taxation and Finance +357961,Taxation and Finance,Taxation and Finance +357960,Taxation and Finance,Taxation and Finance +357959,Taxation and Finance,Taxation and Finance +357958,Taxation and Finance,Taxation and Finance +355938,Taxation and Finance,Taxation and Finance +355937,Taxation and Finance,Taxation and Finance +355935,Taxation and Finance,Taxation and Finance +481495,Taxation and Finance,Taxation and Finance +481483,Taxation and Finance,Taxation and Finance +481481,Taxation and Finance,Taxation and Finance +481480,Taxation and Finance,Taxation and Finance +481478,Taxation and Finance,Taxation and Finance +481473,Taxation and Finance,Taxation and Finance +473755,Taxation and Finance,Taxation and Finance +473751,Taxation and Finance,Taxation and Finance +473748,Taxation and Finance,Taxation and Finance +473742,Taxation and Finance,Taxation and Finance +470970,Taxation and Finance,Taxation and Finance +470968,Taxation and Finance,Taxation and Finance +470963,Taxation and Finance,Taxation and Finance +470955,Taxation and Finance,Taxation and Finance +470919,Taxation and Finance,Taxation and Finance +467494,Taxation and Finance,Taxation and Finance +467490,Taxation and Finance,Taxation and Finance +467487,Taxation and Finance,Taxation and Finance +464202,Taxation and Finance,Taxation and Finance +462940,Taxation and Finance,Taxation and Finance +460022,Taxation and Finance,Taxation and Finance +459485,Taxation and Finance,Taxation and Finance +459484,Taxation and Finance,Taxation and Finance +459483,Taxation and Finance,Taxation and Finance +459481,Taxation and Finance,Taxation and Finance +459479,Taxation and Finance,Taxation and Finance +459478,Taxation and Finance,Taxation and Finance +457166,Taxation and Finance,Taxation and Finance +455142,Taxation and Finance,Taxation and Finance +455140,Taxation and Finance,Taxation and Finance +455139,Taxation and Finance,Taxation and Finance +455137,Taxation and Finance,Taxation and Finance +455133,Taxation and Finance,Taxation and Finance +455131,Taxation and Finance,Taxation and Finance +455129,Taxation and Finance,Taxation and Finance +452261,Taxation and Finance,Taxation and Finance +452259,Taxation and Finance,Taxation and Finance +449028,Taxation and Finance,Taxation and Finance +449027,Taxation and Finance,Taxation and Finance +445325,Taxation and Finance,Taxation and Finance +445324,Taxation and Finance,Taxation and Finance +445321,Taxation and Finance,Taxation and Finance +443661,Taxation and Finance,Taxation and Finance +443660,Taxation and Finance,Taxation and Finance +171344,Transportation,Transportation +161450,Transportation,Transportation +161447,Transportation,Transportation +161444,Transportation,Transportation +267754,Transportation,Transportation +212468,Transportation,Transportation +212463,Transportation,Transportation +212457,Transportation,Transportation +212452,Transportation,Transportation +212450,Transportation,Transportation +325209,Industry,Industry +398536,Industry,Industry +197295,Industry,Industry +197294,Industry,Industry +197292,Industry,Industry +197291,Industry,Industry +380453,Industry,Industry +350309,Industry,Industry +331010,Industry,Industry +326548,Industry,Industry +326547,Industry,Industry +326546,Industry,Industry +325214,Industry,Industry +325213,Industry,Industry +325212,Industry,Industry +325211,Industry,Industry +325209,Infrastructure,Infrastructure +325122,Infrastructure,Infrastructure +224487,Infrastructure,Infrastructure +197296,Infrastructure,Infrastructure +197293,Infrastructure,Infrastructure +197290,Infrastructure,Infrastructure +197288,Infrastructure,Infrastructure +197287,Infrastructure,Infrastructure +410688,Infrastructure,Infrastructure +325214,Infrastructure,Infrastructure +325213,Infrastructure,Infrastructure +325212,Infrastructure,Infrastructure +325211,Infrastructure,Infrastructure +197289,International Trade,International Trade +197288,International Trade,International Trade +197296,International Trade,International Trade +197295,International Trade,International Trade +197294,International Trade,International Trade +197293,International Trade,International Trade +325209,Regional Development,Regional Development +380453,Regional Development,Regional Development +145214,Regional Development,Regional Development +197290,Regional Development,Regional Development +197289,Regional Development,Regional Development +197288,Regional Development,Regional Development +331009,Regional Development,Regional Development +326548,Regional Development,Regional Development +326547,Regional Development,Regional Development +326546,Regional Development,Regional Development +325214,Regional Development,Regional Development +325213,Regional Development,Regional Development +325212,Regional Development,Regional Development +325211,Regional Development,Regional Development +380447,Small Business,Small Business +441341,Small Business,Small Business +224487,Small Business,Small Business +197295,Small Business,Small Business +197294,Small Business,Small Business +197293,Small Business,Small Business +197292,Small Business,Small Business +197291,Small Business,Small Business +197290,Small Business,Small Business +197289,Small Business,Small Business +366711,Small Business,Small Business +350309,Small Business,Small Business +331010,Small Business,Small Business +331009,Small Business,Small Business +330257,Small Business,Small Business +326548,Small Business,Small Business +326547,Small Business,Small Business +326546,Small Business,Small Business +325214,Small Business,Small Business +325213,Small Business,Small Business +325212,Small Business,Small Business +325211,Small Business,Small Business +325210,Small Business,Small Business +325209,Small Business,Small Business +325122,Small Business,Small Business +433447,Small Business,Small Business +421331,Small Business,Small Business +421330,Small Business,Small Business +421329,Small Business,Small Business +414510,Small Business,Small Business +414509,Small Business,Small Business +414506,Small Business,Small Business +403999,Small Business,Small Business +398540,Small Business,Small Business +398538,Small Business,Small Business +398536,Small Business,Small Business +392382,Small Business,Small Business +387205,Small Business,Small Business +382371,Small Business,Small Business +382370,Small Business,Small Business +382369,Small Business,Small Business +380453,Small Business,Small Business +380450,Small Business,Small Business +504479,Tourism,Tourism +441341,Tourism,Tourism +104058,Tourism,Tourism +104056,Tourism,Tourism +104054,Tourism,Tourism +145216,Tourism,Tourism +145215,Tourism,Tourism +145214,Tourism,Tourism +111896,Tourism,Tourism +111894,Tourism,Tourism +111794,Tourism,Tourism +224487,Tourism,Tourism +197296,Tourism,Tourism +197295,Tourism,Tourism +197294,Tourism,Tourism +197293,Tourism,Tourism +197292,Tourism,Tourism +197291,Tourism,Tourism +197290,Tourism,Tourism +197289,Tourism,Tourism +197288,Tourism,Tourism +197287,Tourism,Tourism +145219,Tourism,Tourism +145218,Tourism,Tourism +145217,Tourism,Tourism +421331,Tourism,Tourism +421330,Tourism,Tourism +421329,Tourism,Tourism +417292,Tourism,Tourism +414510,Tourism,Tourism +414509,Tourism,Tourism +414508,Tourism,Tourism +414507,Tourism,Tourism +414506,Tourism,Tourism +414505,Tourism,Tourism +410688,Tourism,Tourism +398540,Tourism,Tourism +398538,Tourism,Tourism +398536,Tourism,Tourism +392382,Tourism,Tourism +392381,Tourism,Tourism +392380,Tourism,Tourism +387205,Tourism,Tourism +387204,Tourism,Tourism +387203,Tourism,Tourism +382371,Tourism,Tourism +382370,Tourism,Tourism +382369,Tourism,Tourism +380453,Tourism,Tourism +380450,Tourism,Tourism +380449,Tourism,Tourism +380448,Tourism,Tourism +380447,Tourism,Tourism +350309,Tourism,Tourism +331010,Tourism,Tourism +331009,Tourism,Tourism +330257,Tourism,Tourism +326548,Tourism,Tourism +326547,Tourism,Tourism +326546,Tourism,Tourism +325214,Tourism,Tourism +325213,Tourism,Tourism +325212,Tourism,Tourism +325211,Tourism,Tourism +325210,Tourism,Tourism +325209,Tourism,Tourism +325122,Tourism,Tourism +320792,Tourism,Tourism +314670,Tourism,Tourism +314669,Tourism,Tourism +529490,Tourism,Tourism +524781,Tourism,Tourism +522556,Tourism,Tourism +522440,Tourism,Tourism +522437,Tourism,Tourism +510569,Tourism,Tourism +507175,Tourism,Tourism +507171,Tourism,Tourism +380450,Transportation,Transportation +380449,Transportation,Transportation +104058,Transportation,Transportation +104056,Transportation,Transportation +104054,Transportation,Transportation +145219,Transportation,Transportation +145218,Transportation,Transportation +145217,Transportation,Transportation +145216,Transportation,Transportation +145215,Transportation,Transportation +145214,Transportation,Transportation +380448,Transportation,Transportation +380447,Transportation,Transportation +366711,Transportation,Transportation +350309,Transportation,Transportation +331010,Transportation,Transportation +331009,Transportation,Transportation +330257,Transportation,Transportation +326548,Transportation,Transportation +326547,Transportation,Transportation +326546,Transportation,Transportation +325214,Transportation,Transportation +325213,Transportation,Transportation +325212,Transportation,Transportation +325211,Transportation,Transportation +325210,Transportation,Transportation +325209,Transportation,Transportation +325122,Transportation,Transportation +320792,Transportation,Transportation +314670,Transportation,Transportation +314669,Transportation,Transportation +295332,Transportation,Transportation +197296,Transportation,Transportation +197295,Transportation,Transportation +197294,Transportation,Transportation +197293,Transportation,Transportation +197292,Transportation,Transportation +197291,Transportation,Transportation +197290,Transportation,Transportation +197289,Transportation,Transportation +197288,Transportation,Transportation +197287,Transportation,Transportation +433447,Transportation,Transportation +421331,Transportation,Transportation +421329,Transportation,Transportation +417292,Transportation,Transportation +414507,Transportation,Transportation +414506,Transportation,Transportation +410688,Transportation,Transportation +403999,Transportation,Transportation +398536,Transportation,Transportation +392381,Transportation,Transportation +387204,Transportation,Transportation +387203,Transportation,Transportation +382371,Transportation,Transportation +382370,Transportation,Transportation +382369,Transportation,Transportation +109295,Energy,Energy +109294,Energy,Energy +102295,Energy,Energy +76194,Energy,Energy +121915,Energy,Energy +121914,Energy,Energy +109299,Energy,Energy +109298,Energy,Energy +109295,Environment,Environment +109294,Environment,Environment +102295,Environment,Environment +121915,Environment,Environment +121914,Environment,Environment +109299,Environment,Environment +109298,Environment,Environment +197131,Consumer Issues,Consumer Issues +191611,Consumer Issues,Consumer Issues +88915,Consumer Issues,Consumer Issues +84555,Consumer Issues,Consumer Issues +191610,Consumer Issues,Consumer Issues +191609,Consumer Issues,Consumer Issues +191608,Consumer Issues,Consumer Issues +152769,Consumer Issues,Consumer Issues +152768,Consumer Issues,Consumer Issues +152766,Consumer Issues,Consumer Issues +152765,Consumer Issues,Consumer Issues +152764,Consumer Issues,Consumer Issues +285729,Consumer Issues,Consumer Issues +250410,Consumer Issues,Consumer Issues +226709,Consumer Issues,Consumer Issues +202904,Consumer Issues,Consumer Issues +202221,Consumer Issues,Consumer Issues +202220,Consumer Issues,Consumer Issues +202219,Consumer Issues,Consumer Issues +191609,Energy,Energy +191608,Energy,Energy +84555,Energy,Energy +89196,Energy,Energy +88915,Energy,Energy +153157,Energy,Energy +152770,Energy,Energy +152769,Energy,Energy +152768,Energy,Energy +152767,Energy,Energy +152766,Energy,Energy +152765,Energy,Energy +152764,Energy,Energy +129079,Energy,Energy +129077,Energy,Energy +129074,Energy,Energy +129071,Energy,Energy +129070,Energy,Energy +129067,Energy,Energy +383827,Energy,Energy +383824,Energy,Energy +338617,Energy,Energy +327534,Energy,Energy +327530,Energy,Energy +291409,Energy,Energy +291389,Energy,Energy +281010,Energy,Energy +281008,Energy,Energy +244598,Energy,Energy +226709,Energy,Energy +223583,Energy,Energy +202904,Energy,Energy +202221,Energy,Energy +202220,Energy,Energy +202219,Energy,Energy +197132,Energy,Energy +197131,Energy,Energy +192494,Energy,Energy +192493,Energy,Energy +192492,Energy,Energy +192491,Energy,Energy +192490,Energy,Energy +191611,Energy,Energy +192494,Environment,Environment +192493,Environment,Environment +129055,Environment,Environment +88915,Environment,Environment +84555,Environment,Environment +192492,Environment,Environment +192491,Environment,Environment +192490,Environment,Environment +153157,Environment,Environment +152770,Environment,Environment +152769,Environment,Environment +152768,Environment,Environment +152767,Environment,Environment +152766,Environment,Environment +152765,Environment,Environment +152764,Environment,Environment +129079,Environment,Environment +129077,Environment,Environment +129074,Environment,Environment +129071,Environment,Environment +129070,Environment,Environment +129067,Environment,Environment +327534,Environment,Environment +244598,Environment,Environment +223583,Environment,Environment +191609,Industry,Industry +191608,Industry,Industry +129067,Industry,Industry +88915,Industry,Industry +84555,Industry,Industry +129079,Industry,Industry +129077,Industry,Industry +129074,Industry,Industry +129071,Industry,Industry +291409,Industry,Industry +250410,Industry,Industry +223583,Industry,Industry +202904,Industry,Industry +202220,Industry,Industry +197132,Industry,Industry +197131,Industry,Industry +192494,Industry,Industry +192493,Industry,Industry +192492,Industry,Industry +192491,Industry,Industry +192490,Industry,Industry +191611,Industry,Industry +153157,Taxation and Finance,Taxation and Finance +152769,Taxation and Finance,Taxation and Finance +152767,Taxation and Finance,Taxation and Finance +152766,Taxation and Finance,Taxation and Finance +152765,Taxation and Finance,Taxation and Finance +110294,Taxation and Finance,Taxation and Finance +83214,Taxation and Finance,Taxation and Finance +110795,Taxation and Finance,Taxation and Finance +386659,Agriculture,Agriculture +537046,Agriculture,Agriculture +190927,Agriculture,Agriculture +190926,Agriculture,Agriculture +512540,Health,Health +501764,Health,Health +235489,Health,Health +195297,Health,Health +195296,Health,Health +195293,Health,Health +195292,Health,Health +190927,Health,Health +190926,Health,Health +160717,Health,Health +160716,Health,Health +160715,Health,Health +160714,Health,Health +159223,Health,Health +158177,Health,Health +158173,Health,Health +157569,Health,Health +386658,Health,Health +373879,Health,Health +365204,Health,Health +534376,Health,Health +517677,Health,Health +517670,Health,Health +517668,Health,Health +517665,Health,Health +517661,Health,Health +499886,Industry,Industry +495489,Industry,Industry +235489,Industry,Industry +224652,Industry,Industry +195297,Industry,Industry +195296,Industry,Industry +195293,Industry,Industry +195292,Industry,Industry +370355,Industry,Industry +370349,Industry,Industry +352301,Industry,Industry +344725,Industry,Industry +344724,Industry,Industry +342305,Industry,Industry +340439,Industry,Industry +339420,Industry,Industry +339037,Industry,Industry +339035,Industry,Industry +339032,Industry,Industry +339031,Industry,Industry +336689,Industry,Industry +333309,Industry,Industry +328450,Industry,Industry +328449,Industry,Industry +317475,Industry,Industry +315731,Industry,Industry +314882,Industry,Industry +314879,Industry,Industry +314878,Industry,Industry +312390,Industry,Industry +312389,Industry,Industry +261889,Industry,Industry +495488,Industry,Industry +495487,Industry,Industry +492872,Industry,Industry +487962,Industry,Industry +487961,Industry,Industry +487959,Industry,Industry +487954,Industry,Industry +484724,Industry,Industry +482019,Industry,Industry +482017,Industry,Industry +482016,Industry,Industry +480358,Industry,Industry +476766,Industry,Industry +476764,Industry,Industry +475072,Industry,Industry +468153,Industry,Industry +468151,Industry,Industry +468148,Industry,Industry +468144,Industry,Industry +467864,Industry,Industry +467849,Industry,Industry +467842,Industry,Industry +467841,Industry,Industry +463884,Industry,Industry +463105,Industry,Industry +462558,Industry,Industry +462557,Industry,Industry +459433,Industry,Industry +458319,Industry,Industry +457294,Industry,Industry +451484,Industry,Industry +451481,Industry,Industry +451478,Industry,Industry +449060,Industry,Industry +446783,Industry,Industry +446782,Industry,Industry +446775,Industry,Industry +444727,Industry,Industry +444726,Industry,Industry +437520,Industry,Industry +437491,Industry,Industry +434984,Industry,Industry +433309,Industry,Industry +433308,Industry,Industry +431917,Industry,Industry +430380,Industry,Industry +430379,Industry,Industry +430373,Industry,Industry +430372,Industry,Industry +430371,Industry,Industry +430369,Industry,Industry +430367,Industry,Industry +428249,Industry,Industry +425711,Industry,Industry +425710,Industry,Industry +425709,Industry,Industry +425707,Industry,Industry +425701,Industry,Industry +423442,Industry,Industry +423441,Industry,Industry +423440,Industry,Industry +421205,Industry,Industry +421203,Industry,Industry +419592,Industry,Industry +419584,Industry,Industry +419576,Industry,Industry +417644,Industry,Industry +417642,Industry,Industry +417639,Industry,Industry +416370,Industry,Industry +416357,Industry,Industry +411566,Industry,Industry +407391,Industry,Industry +404401,Industry,Industry +404400,Industry,Industry +404399,Industry,Industry +404398,Industry,Industry +404397,Industry,Industry +404396,Industry,Industry +404395,Industry,Industry +404394,Industry,Industry +402687,Industry,Industry +402685,Industry,Industry +402636,Industry,Industry +402632,Industry,Industry +402625,Industry,Industry +401971,Industry,Industry +401970,Industry,Industry +401969,Industry,Industry +401967,Industry,Industry +401966,Industry,Industry +401965,Industry,Industry +401964,Industry,Industry +401963,Industry,Industry +401374,Industry,Industry +401373,Industry,Industry +401372,Industry,Industry +401368,Industry,Industry +401366,Industry,Industry +401365,Industry,Industry +401364,Industry,Industry +401333,Industry,Industry +401328,Industry,Industry +401326,Industry,Industry +401324,Industry,Industry +401323,Industry,Industry +401322,Industry,Industry +401320,Industry,Industry +401319,Industry,Industry +401318,Industry,Industry +401317,Industry,Industry +401216,Industry,Industry +399867,Industry,Industry +399866,Industry,Industry +399864,Industry,Industry +399828,Industry,Industry +389318,Industry,Industry +386671,Industry,Industry +386670,Industry,Industry +386669,Industry,Industry +386666,Industry,Industry +386659,Industry,Industry +386658,Industry,Industry +386656,Industry,Industry +385892,Industry,Industry +376346,Industry,Industry +373880,Industry,Industry +373879,Industry,Industry +373772,Industry,Industry +543602,Industry,Industry +543601,Industry,Industry +543600,Industry,Industry +543599,Industry,Industry +543598,Industry,Industry +543597,Industry,Industry +541222,Industry,Industry +541219,Industry,Industry +541218,Industry,Industry +541217,Industry,Industry +541216,Industry,Industry +541214,Industry,Industry +539647,Industry,Industry +539646,Industry,Industry +539645,Industry,Industry +539644,Industry,Industry +539640,Industry,Industry +539639,Industry,Industry +537055,Industry,Industry +537053,Industry,Industry +537049,Industry,Industry +534376,Industry,Industry +534375,Industry,Industry +532039,Industry,Industry +529866,Industry,Industry +526430,Industry,Industry +522736,Industry,Industry +522735,Industry,Industry +522732,Industry,Industry +519813,Industry,Industry +519809,Industry,Industry +519808,Industry,Industry +519806,Industry,Industry +519805,Industry,Industry +519803,Industry,Industry +519802,Industry,Industry +519801,Industry,Industry +517677,Industry,Industry +517670,Industry,Industry +517668,Industry,Industry +517665,Industry,Industry +517661,Industry,Industry +514076,Industry,Industry +512538,Industry,Industry +501764,Industry,Industry +501762,Industry,Industry +501760,Industry,Industry +190926,Internal Trade,Internal Trade +430376,International Trade,International Trade +430369,International Trade,International Trade +158173,International Trade,International Trade +514076,International Trade,International Trade +446769,International Trade,International Trade +430380,International Trade,International Trade +190926,Justice and Law Enforcement,Justice and Law Enforcement +411565,Justice and Law Enforcement,Justice and Law Enforcement +195297,Justice and Law Enforcement,Justice and Law Enforcement +195296,Justice and Law Enforcement,Justice and Law Enforcement +195292,Justice and Law Enforcement,Justice and Law Enforcement +419592,Taxation and Finance,Taxation and Finance +543602,Taxation and Finance,Taxation and Finance +195296,Taxation and Finance,Taxation and Finance +195293,Taxation and Finance,Taxation and Finance +352301,Taxation and Finance,Taxation and Finance +344725,Taxation and Finance,Taxation and Finance +342305,Taxation and Finance,Taxation and Finance +340439,Taxation and Finance,Taxation and Finance +339420,Taxation and Finance,Taxation and Finance +339037,Taxation and Finance,Taxation and Finance +339035,Taxation and Finance,Taxation and Finance +339032,Taxation and Finance,Taxation and Finance +339031,Taxation and Finance,Taxation and Finance +336689,Taxation and Finance,Taxation and Finance +407391,Taxation and Finance,Taxation and Finance +404401,Taxation and Finance,Taxation and Finance +404400,Taxation and Finance,Taxation and Finance +404399,Taxation and Finance,Taxation and Finance +404398,Taxation and Finance,Taxation and Finance +404397,Taxation and Finance,Taxation and Finance +404396,Taxation and Finance,Taxation and Finance +404395,Taxation and Finance,Taxation and Finance +404394,Taxation and Finance,Taxation and Finance +402687,Taxation and Finance,Taxation and Finance +402685,Taxation and Finance,Taxation and Finance +402636,Taxation and Finance,Taxation and Finance +402632,Taxation and Finance,Taxation and Finance +402625,Taxation and Finance,Taxation and Finance +401971,Taxation and Finance,Taxation and Finance +401970,Taxation and Finance,Taxation and Finance +401969,Taxation and Finance,Taxation and Finance +401967,Taxation and Finance,Taxation and Finance +401966,Taxation and Finance,Taxation and Finance +401965,Taxation and Finance,Taxation and Finance +401964,Taxation and Finance,Taxation and Finance +401963,Taxation and Finance,Taxation and Finance +401374,Taxation and Finance,Taxation and Finance +401373,Taxation and Finance,Taxation and Finance +401372,Taxation and Finance,Taxation and Finance +401368,Taxation and Finance,Taxation and Finance +401366,Taxation and Finance,Taxation and Finance +401365,Taxation and Finance,Taxation and Finance +401364,Taxation and Finance,Taxation and Finance +401333,Taxation and Finance,Taxation and Finance +401328,Taxation and Finance,Taxation and Finance +401326,Taxation and Finance,Taxation and Finance +401324,Taxation and Finance,Taxation and Finance +401323,Taxation and Finance,Taxation and Finance +401322,Taxation and Finance,Taxation and Finance +401319,Taxation and Finance,Taxation and Finance +401318,Taxation and Finance,Taxation and Finance +401317,Taxation and Finance,Taxation and Finance +401216,Taxation and Finance,Taxation and Finance +399867,Taxation and Finance,Taxation and Finance +399866,Taxation and Finance,Taxation and Finance +399864,Taxation and Finance,Taxation and Finance +399828,Taxation and Finance,Taxation and Finance +389318,Taxation and Finance,Taxation and Finance +386669,Taxation and Finance,Taxation and Finance +386656,Taxation and Finance,Taxation and Finance +370349,Taxation and Finance,Taxation and Finance +369871,Taxation and Finance,Taxation and Finance +543600,Taxation and Finance,Taxation and Finance +543599,Taxation and Finance,Taxation and Finance +543598,Taxation and Finance,Taxation and Finance +543597,Taxation and Finance,Taxation and Finance +541222,Taxation and Finance,Taxation and Finance +541219,Taxation and Finance,Taxation and Finance +541218,Taxation and Finance,Taxation and Finance +541217,Taxation and Finance,Taxation and Finance +541216,Taxation and Finance,Taxation and Finance +541214,Taxation and Finance,Taxation and Finance +539647,Taxation and Finance,Taxation and Finance +539646,Taxation and Finance,Taxation and Finance +539644,Taxation and Finance,Taxation and Finance +539642,Taxation and Finance,Taxation and Finance +539640,Taxation and Finance,Taxation and Finance +539639,Taxation and Finance,Taxation and Finance +537050,Taxation and Finance,Taxation and Finance +537049,Taxation and Finance,Taxation and Finance +534376,Taxation and Finance,Taxation and Finance +534375,Taxation and Finance,Taxation and Finance +532039,Taxation and Finance,Taxation and Finance +529866,Taxation and Finance,Taxation and Finance +526430,Taxation and Finance,Taxation and Finance +522736,Taxation and Finance,Taxation and Finance +522735,Taxation and Finance,Taxation and Finance +522730,Taxation and Finance,Taxation and Finance +519813,Taxation and Finance,Taxation and Finance +519809,Taxation and Finance,Taxation and Finance +519808,Taxation and Finance,Taxation and Finance +519806,Taxation and Finance,Taxation and Finance +519805,Taxation and Finance,Taxation and Finance +519803,Taxation and Finance,Taxation and Finance +519802,Taxation and Finance,Taxation and Finance +519801,Taxation and Finance,Taxation and Finance +517677,Taxation and Finance,Taxation and Finance +517670,Taxation and Finance,Taxation and Finance +517668,Taxation and Finance,Taxation and Finance +517665,Taxation and Finance,Taxation and Finance +517661,Taxation and Finance,Taxation and Finance +501766,Taxation and Finance,Taxation and Finance +499888,Taxation and Finance,Taxation and Finance +492873,Taxation and Finance,Taxation and Finance +489786,Taxation and Finance,Taxation and Finance +487959,Taxation and Finance,Taxation and Finance +487954,Taxation and Finance,Taxation and Finance +482016,Taxation and Finance,Taxation and Finance +480358,Taxation and Finance,Taxation and Finance +475072,Taxation and Finance,Taxation and Finance +468153,Taxation and Finance,Taxation and Finance +468151,Taxation and Finance,Taxation and Finance +468148,Taxation and Finance,Taxation and Finance +468144,Taxation and Finance,Taxation and Finance +467864,Taxation and Finance,Taxation and Finance +467844,Taxation and Finance,Taxation and Finance +467836,Taxation and Finance,Taxation and Finance +463888,Taxation and Finance,Taxation and Finance +463106,Taxation and Finance,Taxation and Finance +459432,Taxation and Finance,Taxation and Finance +458320,Taxation and Finance,Taxation and Finance +454968,Taxation and Finance,Taxation and Finance +454966,Taxation and Finance,Taxation and Finance +454962,Taxation and Finance,Taxation and Finance +454957,Taxation and Finance,Taxation and Finance +451477,Taxation and Finance,Taxation and Finance +446775,Taxation and Finance,Taxation and Finance +443620,Taxation and Finance,Taxation and Finance +437516,Taxation and Finance,Taxation and Finance +434984,Taxation and Finance,Taxation and Finance +433311,Taxation and Finance,Taxation and Finance +431919,Taxation and Finance,Taxation and Finance +430535,Taxation and Finance,Taxation and Finance +430469,Taxation and Finance,Taxation and Finance +430380,Taxation and Finance,Taxation and Finance +430379,Taxation and Finance,Taxation and Finance +430376,Taxation and Finance,Taxation and Finance +430373,Taxation and Finance,Taxation and Finance +430371,Taxation and Finance,Taxation and Finance +430369,Taxation and Finance,Taxation and Finance +428253,Taxation and Finance,Taxation and Finance +428251,Taxation and Finance,Taxation and Finance +428250,Taxation and Finance,Taxation and Finance +428249,Taxation and Finance,Taxation and Finance +425711,Taxation and Finance,Taxation and Finance +425710,Taxation and Finance,Taxation and Finance +425709,Taxation and Finance,Taxation and Finance +425707,Taxation and Finance,Taxation and Finance +425701,Taxation and Finance,Taxation and Finance +423442,Taxation and Finance,Taxation and Finance +90510,Transportation,Transportation +516642,Industry,Industry +516640,Industry,Industry +271009,Industry,Industry +188695,Industry,Industry +175707,Industry,Industry +516638,Industry,Industry +514922,Industry,Industry +514921,Industry,Industry +514433,Industry,Industry +514432,Industry,Industry +512006,Industry,Industry +509472,Industry,Industry +509437,Industry,Industry +509436,Industry,Industry +506626,Industry,Industry +506624,Industry,Industry +503144,Industry,Industry +500031,Industry,Industry +500030,Industry,Industry +500028,Industry,Industry +497983,Industry,Industry +496772,Industry,Industry +496659,Industry,Industry +496658,Industry,Industry +496429,Industry,Industry +496428,Industry,Industry +494605,Industry,Industry +494602,Industry,Industry +494601,Industry,Industry +494600,Industry,Industry +494597,Industry,Industry +494596,Industry,Industry +494593,Industry,Industry +484211,Industry,Industry +484209,Industry,Industry +483931,Industry,Industry +481827,Industry,Industry +481116,Industry,Industry +481114,Industry,Industry +480548,Industry,Industry +480547,Industry,Industry +480546,Industry,Industry +479441,Industry,Industry +527111,Industry,Industry +524718,Industry,Industry +524224,Industry,Industry +524223,Industry,Industry +520871,Industry,Industry +520869,Industry,Industry +520867,Industry,Industry +520866,Industry,Industry +427394,Intellectual Property,Intellectual Property +427393,Intellectual Property,Intellectual Property +78017,Intellectual Property,Intellectual Property +164672,Intellectual Property,Intellectual Property +164671,Intellectual Property,Intellectual Property +164670,Intellectual Property,Intellectual Property +164669,Intellectual Property,Intellectual Property +164668,Intellectual Property,Intellectual Property +164667,Intellectual Property,Intellectual Property +164666,Intellectual Property,Intellectual Property +164665,Intellectual Property,Intellectual Property +164664,Intellectual Property,Intellectual Property +271009,Intellectual Property,Intellectual Property +243971,Intellectual Property,Intellectual Property +209789,Intellectual Property,Intellectual Property +207205,Intellectual Property,Intellectual Property +200671,Intellectual Property,Intellectual Property +200670,Intellectual Property,Intellectual Property +188695,Intellectual Property,Intellectual Property +175707,Intellectual Property,Intellectual Property +167614,Intellectual Property,Intellectual Property +166225,Intellectual Property,Intellectual Property +164674,Intellectual Property,Intellectual Property +164673,Intellectual Property,Intellectual Property +424565,Intellectual Property,Intellectual Property +423108,Intellectual Property,Intellectual Property +422738,Intellectual Property,Intellectual Property +422737,Intellectual Property,Intellectual Property +420653,Intellectual Property,Intellectual Property +420652,Intellectual Property,Intellectual Property +418806,Intellectual Property,Intellectual Property +418805,Intellectual Property,Intellectual Property +418804,Intellectual Property,Intellectual Property +418404,Intellectual Property,Intellectual Property +417510,Intellectual Property,Intellectual Property +408030,Intellectual Property,Intellectual Property +406985,Intellectual Property,Intellectual Property +404242,Intellectual Property,Intellectual Property +404241,Intellectual Property,Intellectual Property +404240,Intellectual Property,Intellectual Property +400338,Intellectual Property,Intellectual Property +400333,Intellectual Property,Intellectual Property +400331,Intellectual Property,Intellectual Property +400305,Intellectual Property,Intellectual Property +399358,Intellectual Property,Intellectual Property +386799,Intellectual Property,Intellectual Property +386797,Intellectual Property,Intellectual Property +386795,Intellectual Property,Intellectual Property +386791,Intellectual Property,Intellectual Property +383476,Intellectual Property,Intellectual Property +383457,Intellectual Property,Intellectual Property +380273,Intellectual Property,Intellectual Property +380271,Intellectual Property,Intellectual Property +380270,Intellectual Property,Intellectual Property +370324,Intellectual Property,Intellectual Property +370323,Intellectual Property,Intellectual Property +370322,Intellectual Property,Intellectual Property +370320,Intellectual Property,Intellectual Property +370319,Intellectual Property,Intellectual Property +355656,Intellectual Property,Intellectual Property +354773,Intellectual Property,Intellectual Property +352923,Intellectual Property,Intellectual Property +335027,Intellectual Property,Intellectual Property +335026,Intellectual Property,Intellectual Property +335022,Intellectual Property,Intellectual Property +335021,Intellectual Property,Intellectual Property +335019,Intellectual Property,Intellectual Property +334455,Intellectual Property,Intellectual Property +323163,Intellectual Property,Intellectual Property +323161,Intellectual Property,Intellectual Property +323160,Intellectual Property,Intellectual Property +323155,Intellectual Property,Intellectual Property +540959,Intellectual Property,Intellectual Property +540958,Intellectual Property,Intellectual Property +536619,Intellectual Property,Intellectual Property +536616,Intellectual Property,Intellectual Property +533352,Intellectual Property,Intellectual Property +533253,Intellectual Property,Intellectual Property +533252,Intellectual Property,Intellectual Property +531633,Intellectual Property,Intellectual Property +531632,Intellectual Property,Intellectual Property +531613,Intellectual Property,Intellectual Property +527841,Intellectual Property,Intellectual Property +527113,Intellectual Property,Intellectual Property +527112,Intellectual Property,Intellectual Property +525412,Intellectual Property,Intellectual Property +525408,Intellectual Property,Intellectual Property +524718,Intellectual Property,Intellectual Property +524224,Intellectual Property,Intellectual Property +524223,Intellectual Property,Intellectual Property +520869,Intellectual Property,Intellectual Property +520867,Intellectual Property,Intellectual Property +520866,Intellectual Property,Intellectual Property +517489,Intellectual Property,Intellectual Property +516642,Intellectual Property,Intellectual Property +516640,Intellectual Property,Intellectual Property +516638,Intellectual Property,Intellectual Property +514922,Intellectual Property,Intellectual Property +514432,Intellectual Property,Intellectual Property +512006,Intellectual Property,Intellectual Property +509472,Intellectual Property,Intellectual Property +509437,Intellectual Property,Intellectual Property +506626,Intellectual Property,Intellectual Property +506624,Intellectual Property,Intellectual Property +503144,Intellectual Property,Intellectual Property +500031,Intellectual Property,Intellectual Property +500030,Intellectual Property,Intellectual Property +500028,Intellectual Property,Intellectual Property +497983,Intellectual Property,Intellectual Property +496772,Intellectual Property,Intellectual Property +496660,Intellectual Property,Intellectual Property +496659,Intellectual Property,Intellectual Property +496658,Intellectual Property,Intellectual Property +496429,Intellectual Property,Intellectual Property +496428,Intellectual Property,Intellectual Property +496423,Intellectual Property,Intellectual Property +494605,Intellectual Property,Intellectual Property +494602,Intellectual Property,Intellectual Property +494601,Intellectual Property,Intellectual Property +494600,Intellectual Property,Intellectual Property +494597,Intellectual Property,Intellectual Property +494596,Intellectual Property,Intellectual Property +494593,Intellectual Property,Intellectual Property +491939,Intellectual Property,Intellectual Property +491937,Intellectual Property,Intellectual Property +484209,Intellectual Property,Intellectual Property +483931,Intellectual Property,Intellectual Property +481827,Intellectual Property,Intellectual Property +481116,Intellectual Property,Intellectual Property +481114,Intellectual Property,Intellectual Property +480548,Intellectual Property,Intellectual Property +480547,Intellectual Property,Intellectual Property +480546,Intellectual Property,Intellectual Property +479441,Intellectual Property,Intellectual Property +476179,Intellectual Property,Intellectual Property +474015,Intellectual Property,Intellectual Property +474013,Intellectual Property,Intellectual Property +474012,Intellectual Property,Intellectual Property +472010,Intellectual Property,Intellectual Property +471517,Intellectual Property,Intellectual Property +471397,Intellectual Property,Intellectual Property +470199,Intellectual Property,Intellectual Property +469120,Intellectual Property,Intellectual Property +469119,Intellectual Property,Intellectual Property +469113,Intellectual Property,Intellectual Property +466734,Intellectual Property,Intellectual Property +463485,Intellectual Property,Intellectual Property +463484,Intellectual Property,Intellectual Property +463158,Intellectual Property,Intellectual Property +463097,Intellectual Property,Intellectual Property +461239,Intellectual Property,Intellectual Property +458077,Intellectual Property,Intellectual Property +455282,Intellectual Property,Intellectual Property +455262,Intellectual Property,Intellectual Property +455168,Intellectual Property,Intellectual Property +455165,Intellectual Property,Intellectual Property +455164,Intellectual Property,Intellectual Property +453847,Intellectual Property,Intellectual Property +448613,Intellectual Property,Intellectual Property +448612,Intellectual Property,Intellectual Property +446131,Intellectual Property,Intellectual Property +445326,Intellectual Property,Intellectual Property +444419,Intellectual Property,Intellectual Property +444251,Intellectual Property,Intellectual Property +444249,Intellectual Property,Intellectual Property +442169,Intellectual Property,Intellectual Property +441692,Intellectual Property,Intellectual Property +441365,Intellectual Property,Intellectual Property +439898,Intellectual Property,Intellectual Property +437543,Intellectual Property,Intellectual Property +437541,Intellectual Property,Intellectual Property +437536,Intellectual Property,Intellectual Property +437534,Intellectual Property,Intellectual Property +437533,Intellectual Property,Intellectual Property +437530,Intellectual Property,Intellectual Property +433545,Intellectual Property,Intellectual Property +433544,Intellectual Property,Intellectual Property +290629,International Trade,International Trade +480547,International Trade,International Trade +290660,International Trade,International Trade +393257,Health,Health +320474,Employment and Training,Employment and Training +318279,Employment and Training,Employment and Training +98204,Employment and Training,Employment and Training +96916,Employment and Training,Employment and Training +96912,Employment and Training,Employment and Training +393142,Agriculture,Agriculture +393140,Agriculture,Agriculture +193561,Agriculture,Agriculture +392026,Agriculture,Agriculture +392025,Agriculture,Agriculture +389080,Agriculture,Agriculture +389079,Agriculture,Agriculture +380585,Agriculture,Agriculture +380309,Agriculture,Agriculture +377675,Agriculture,Agriculture +377666,Agriculture,Agriculture +377665,Agriculture,Agriculture +377664,Agriculture,Agriculture +377663,Agriculture,Agriculture +377662,Agriculture,Agriculture +377661,Agriculture,Agriculture +377660,Agriculture,Agriculture +375447,Agriculture,Agriculture +375446,Agriculture,Agriculture +375445,Agriculture,Agriculture +375444,Agriculture,Agriculture +375443,Agriculture,Agriculture +375442,Agriculture,Agriculture +375441,Agriculture,Agriculture +375440,Agriculture,Agriculture +375439,Agriculture,Agriculture +375438,Agriculture,Agriculture +375437,Agriculture,Agriculture +375436,Agriculture,Agriculture +375435,Agriculture,Agriculture +375433,Agriculture,Agriculture +375432,Agriculture,Agriculture +375431,Agriculture,Agriculture +375430,Agriculture,Agriculture +375428,Agriculture,Agriculture +375427,Agriculture,Agriculture +375425,Agriculture,Agriculture +375424,Agriculture,Agriculture +375423,Agriculture,Agriculture +375422,Agriculture,Agriculture +375421,Agriculture,Agriculture +375419,Agriculture,Agriculture +375418,Agriculture,Agriculture +375417,Agriculture,Agriculture +375415,Agriculture,Agriculture +375414,Agriculture,Agriculture +375413,Agriculture,Agriculture +375412,Agriculture,Agriculture +375411,Agriculture,Agriculture +375410,Agriculture,Agriculture +365386,Agriculture,Agriculture +364879,Agriculture,Agriculture +360662,Agriculture,Agriculture +358585,Agriculture,Agriculture +358584,Agriculture,Agriculture +357627,Agriculture,Agriculture +356728,Agriculture,Agriculture +355206,Agriculture,Agriculture +354545,Agriculture,Agriculture +354544,Agriculture,Agriculture +354543,Agriculture,Agriculture +350152,Agriculture,Agriculture +350151,Agriculture,Agriculture +350150,Agriculture,Agriculture +350149,Agriculture,Agriculture +350148,Agriculture,Agriculture +350147,Agriculture,Agriculture +350146,Agriculture,Agriculture +350145,Agriculture,Agriculture +350144,Agriculture,Agriculture +350143,Agriculture,Agriculture +350142,Agriculture,Agriculture +349076,Agriculture,Agriculture +348018,Agriculture,Agriculture +344823,Agriculture,Agriculture +344559,Agriculture,Agriculture +344558,Agriculture,Agriculture +344261,Agriculture,Agriculture +343972,Agriculture,Agriculture +343301,Agriculture,Agriculture +319950,Agriculture,Agriculture +443107,Agriculture,Agriculture +429853,Agriculture,Agriculture +427233,Agriculture,Agriculture +427151,Agriculture,Agriculture +427150,Agriculture,Agriculture +427149,Agriculture,Agriculture +423266,Agriculture,Agriculture +423264,Agriculture,Agriculture +423263,Agriculture,Agriculture +423257,Agriculture,Agriculture +420828,Agriculture,Agriculture +420827,Agriculture,Agriculture +420826,Agriculture,Agriculture +420824,Agriculture,Agriculture +420821,Agriculture,Agriculture +420817,Agriculture,Agriculture +420816,Agriculture,Agriculture +418726,Agriculture,Agriculture +418694,Agriculture,Agriculture +415334,Agriculture,Agriculture +413496,Agriculture,Agriculture +412736,Agriculture,Agriculture +412731,Agriculture,Agriculture +412727,Agriculture,Agriculture +412724,Agriculture,Agriculture +412720,Agriculture,Agriculture +412715,Agriculture,Agriculture +412712,Agriculture,Agriculture +408276,Agriculture,Agriculture +408275,Agriculture,Agriculture +408274,Agriculture,Agriculture +407177,Agriculture,Agriculture +407176,Agriculture,Agriculture +402088,Agriculture,Agriculture +402087,Agriculture,Agriculture +402086,Agriculture,Agriculture +402084,Agriculture,Agriculture +399315,Agriculture,Agriculture +397317,Agriculture,Agriculture +397316,Agriculture,Agriculture +397315,Agriculture,Agriculture +397314,Agriculture,Agriculture +394889,Agriculture,Agriculture +394888,Agriculture,Agriculture +394887,Agriculture,Agriculture +511984,Environment,Environment +427149,Environment,Environment +193588,Environment,Environment +188140,Environment,Environment +187488,Environment,Environment +160700,Environment,Environment +152442,Environment,Environment +364879,Environment,Environment +344559,Environment,Environment +344558,Environment,Environment +299069,Environment,Environment +413496,Environment,Environment +402085,Environment,Environment +399315,Environment,Environment +397317,Environment,Environment +397316,Environment,Environment +397314,Environment,Environment +394889,Environment,Environment +394888,Environment,Environment +394887,Environment,Environment +394886,Environment,Environment +394885,Environment,Environment +393142,Environment,Environment +390137,Environment,Environment +383760,Environment,Environment +383759,Environment,Environment +383758,Environment,Environment +383757,Environment,Environment +380586,Environment,Environment +380585,Environment,Environment +380309,Environment,Environment +377675,Environment,Environment +377666,Environment,Environment +377664,Environment,Environment +377663,Environment,Environment +377662,Environment,Environment +377661,Environment,Environment +377660,Environment,Environment +375447,Environment,Environment +375446,Environment,Environment +375445,Environment,Environment +375444,Environment,Environment +375443,Environment,Environment +375442,Environment,Environment +375441,Environment,Environment +375440,Environment,Environment +375439,Environment,Environment +375438,Environment,Environment +375437,Environment,Environment +375436,Environment,Environment +375435,Environment,Environment +375433,Environment,Environment +375432,Environment,Environment +375431,Environment,Environment +375430,Environment,Environment +375428,Environment,Environment +375427,Environment,Environment +375425,Environment,Environment +375424,Environment,Environment +375423,Environment,Environment +375422,Environment,Environment +375421,Environment,Environment +375419,Environment,Environment +375418,Environment,Environment +375417,Environment,Environment +375415,Environment,Environment +375414,Environment,Environment +375413,Environment,Environment +375412,Environment,Environment +375411,Environment,Environment +375410,Environment,Environment +383757,International Relations,International Relations +380585,International Relations,International Relations +152442,International Relations,International Relations +418694,International Relations,International Relations +397314,International Relations,International Relations +394889,International Relations,International Relations +394888,International Relations,International Relations +394887,International Relations,International Relations +394886,International Relations,International Relations +394885,International Relations,International Relations +393142,International Relations,International Relations +393140,International Relations,International Relations +383760,International Relations,International Relations +383759,International Relations,International Relations +119754,Other,INTERNATIONAL COOPERATION +100976,Other,INTERNATIONAL COOPERATION +97297,Other,INTERNATIONAL COOPERATION +97295,Other,INTERNATIONAL COOPERATION +219747,Education,Education +173125,Education,Education +225051,Education,Education +164959,Employment and Training,Employment and Training +164958,Employment and Training,Employment and Training +164957,Employment and Training,Employment and Training +164955,Employment and Training,Employment and Training +164954,Employment and Training,Employment and Training +164953,Employment and Training,Employment and Training +164952,Employment and Training,Employment and Training +164951,Employment and Training,Employment and Training +164950,Employment and Training,Employment and Training +160699,Employment and Training,Employment and Training +160698,Employment and Training,Employment and Training +225051,Employment and Training,Employment and Training +224928,Employment and Training,Employment and Training +219747,Employment and Training,Employment and Training +173125,Employment and Training,Employment and Training +166942,Employment and Training,Employment and Training +164963,Employment and Training,Employment and Training +164962,Employment and Training,Employment and Training +280488,Health,Health +152478,Taxation and Finance,Taxation and Finance +82634,Taxation and Finance,Taxation and Finance +93495,Taxation and Finance,Taxation and Finance +263963,Energy,Energy +240572,Energy,Energy +125125,Energy,Energy +125122,Energy,Energy +108857,Energy,Energy +108855,Energy,Energy +101287,Energy,Energy +87674,Energy,Energy +202879,Energy,Energy +147503,Energy,Energy +125145,Energy,Energy +125131,Energy,Energy +125128,Energy,Energy +329488,Energy,Energy +326030,Energy,Energy +326029,Energy,Energy +283951,Environment,Environment +263963,Environment,Environment +113481,Environment,Environment +106355,Environment,Environment +101292,Environment,Environment +89896,Environment,Environment +87674,Environment,Environment +77715,Environment,Environment +77493,Environment,Environment +77490,Environment,Environment +77456,Environment,Environment +165733,Environment,Environment +150309,Environment,Environment +150308,Environment,Environment +147503,Environment,Environment +125145,Environment,Environment +125131,Environment,Environment +125128,Environment,Environment +125125,Environment,Environment +125122,Environment,Environment +117763,Environment,Environment +113743,Environment,Environment +113742,Environment,Environment +113741,Environment,Environment +113740,Environment,Environment +113739,Environment,Environment +233249,Environment,Environment +227018,Environment,Environment +224107,Environment,Environment +219247,Environment,Environment +218707,Environment,Environment +218688,Environment,Environment +218687,Environment,Environment +214547,Environment,Environment +212314,Environment,Environment +211187,Environment,Environment +202878,Environment,Environment +200867,Environment,Environment +193744,Environment,Environment +193732,Environment,Environment +188728,Environment,Environment +188725,Environment,Environment +188718,Environment,Environment +188713,Environment,Environment +175220,Environment,Environment +175218,Environment,Environment +371515,Environment,Environment +335712,Environment,Environment +335710,Environment,Environment +329488,Environment,Environment +326030,Environment,Environment +326029,Environment,Environment +310541,Environment,Environment +288529,Environment,Environment +283954,Environment,Environment +283953,Environment,Environment +125125,Industry,Industry +125122,Industry,Industry +335712,Industry,Industry +292089,Industry,Industry +291989,Industry,Industry +263963,Industry,Industry +230461,Industry,Industry +125145,Industry,Industry +125131,Industry,Industry +249497,Agriculture,Agriculture +208887,Agriculture,Agriculture +337289,Agriculture,Agriculture +306430,Agriculture,Agriculture +133462,Financial Institutions,Financial Institutions +132924,Financial Institutions,Financial Institutions +132919,Financial Institutions,Financial Institutions +132909,Financial Institutions,Financial Institutions +132905,Financial Institutions,Financial Institutions +132893,Financial Institutions,Financial Institutions +132878,Financial Institutions,Financial Institutions +132866,Financial Institutions,Financial Institutions +132863,Financial Institutions,Financial Institutions +132861,Financial Institutions,Financial Institutions +132859,Financial Institutions,Financial Institutions +169930,Financial Institutions,Financial Institutions +169929,Financial Institutions,Financial Institutions +162503,Financial Institutions,Financial Institutions +162501,Financial Institutions,Financial Institutions +162495,Financial Institutions,Financial Institutions +162487,Financial Institutions,Financial Institutions +162478,Financial Institutions,Financial Institutions +162469,Financial Institutions,Financial Institutions +162467,Financial Institutions,Financial Institutions +162461,Financial Institutions,Financial Institutions +162459,Financial Institutions,Financial Institutions +162456,Financial Institutions,Financial Institutions +162449,Financial Institutions,Financial Institutions +162446,Financial Institutions,Financial Institutions +162443,Financial Institutions,Financial Institutions +162432,Financial Institutions,Financial Institutions +162431,Financial Institutions,Financial Institutions +162414,Financial Institutions,Financial Institutions +162411,Financial Institutions,Financial Institutions +162406,Financial Institutions,Financial Institutions +162389,Financial Institutions,Financial Institutions +162386,Financial Institutions,Financial Institutions +162384,Financial Institutions,Financial Institutions +162374,Financial Institutions,Financial Institutions +162365,Financial Institutions,Financial Institutions +162359,Financial Institutions,Financial Institutions +162355,Financial Institutions,Financial Institutions +162333,Financial Institutions,Financial Institutions +162330,Financial Institutions,Financial Institutions +162326,Financial Institutions,Financial Institutions +162318,Financial Institutions,Financial Institutions +162313,Financial Institutions,Financial Institutions +162311,Financial Institutions,Financial Institutions +162307,Financial Institutions,Financial Institutions +162302,Financial Institutions,Financial Institutions +162300,Financial Institutions,Financial Institutions +162298,Financial Institutions,Financial Institutions +162217,Financial Institutions,Financial Institutions +162215,Financial Institutions,Financial Institutions +162204,Financial Institutions,Financial Institutions +162203,Financial Institutions,Financial Institutions +162189,Financial Institutions,Financial Institutions +162094,Financial Institutions,Financial Institutions +362762,Financial Institutions,Financial Institutions +356736,Financial Institutions,Financial Institutions +352482,Financial Institutions,Financial Institutions +351530,Financial Institutions,Financial Institutions +350539,Financial Institutions,Financial Institutions +347269,Financial Institutions,Financial Institutions +344596,Financial Institutions,Financial Institutions +340376,Financial Institutions,Financial Institutions +339244,Financial Institutions,Financial Institutions +336034,Financial Institutions,Financial Institutions +330278,Financial Institutions,Financial Institutions +330277,Financial Institutions,Financial Institutions +330276,Financial Institutions,Financial Institutions +330275,Financial Institutions,Financial Institutions +325594,Financial Institutions,Financial Institutions +325593,Financial Institutions,Financial Institutions +322892,Financial Institutions,Financial Institutions +306512,Financial Institutions,Financial Institutions +306430,Financial Institutions,Financial Institutions +277931,Financial Institutions,Financial Institutions +276876,Financial Institutions,Financial Institutions +276873,Financial Institutions,Financial Institutions +275790,Financial Institutions,Financial Institutions +275789,Financial Institutions,Financial Institutions +275731,Financial Institutions,Financial Institutions +275668,Financial Institutions,Financial Institutions +275650,Financial Institutions,Financial Institutions +249281,Financial Institutions,Financial Institutions +249265,Financial Institutions,Financial Institutions +249264,Financial Institutions,Financial Institutions +249256,Financial Institutions,Financial Institutions +249254,Financial Institutions,Financial Institutions +219367,Financial Institutions,Financial Institutions +199888,Financial Institutions,Financial Institutions +325852,Taxation and Finance,Taxation and Finance +306430,Taxation and Finance,Taxation and Finance +169930,Taxation and Finance,Taxation and Finance +169929,Taxation and Finance,Taxation and Finance +347269,Taxation and Finance,Taxation and Finance +340033,Taxation and Finance,Taxation and Finance +339247,Taxation and Finance,Taxation and Finance +339245,Taxation and Finance,Taxation and Finance +337293,Taxation and Finance,Taxation and Finance +337292,Taxation and Finance,Taxation and Finance +337291,Taxation and Finance,Taxation and Finance +337290,Taxation and Finance,Taxation and Finance +337289,Taxation and Finance,Taxation and Finance +334010,Taxation and Finance,Taxation and Finance +334009,Taxation and Finance,Taxation and Finance +330188,Taxation and Finance,Taxation and Finance +357882,Health,Health +352533,Health,Health +93575,Health,Health +77496,Health,Health +77480,Health,Health +134654,Health,Health +132141,Health,Health +116342,Health,Health +330790,Health,Health +185872,Industry,Industry +185871,Industry,Industry +77505,Industry,Industry +196388,Industry,Industry +93577,Health,Health +77477,Health,Health +77501,Industry,Industry +77501,Intellectual Property,Intellectual Property +132142,Health,Health +116334,Health,Health +93578,Health,Health +77489,Health,Health +406605,Health,Health +350964,Health,Health +116346,Health,Health +116345,Health,Health +116344,Industry,Industry +170144,Industry,Industry +116346,Industry,Industry +88091,Transportation,Transportation +88091,Other,marine issues +88091,Other,Pacific Gateway initiative +161580,Industry,Industry +188946,Agriculture,Agriculture +188945,Agriculture,Agriculture +119835,Agriculture,Agriculture +156362,Agriculture,Agriculture +156360,Agriculture,Agriculture +156358,Agriculture,Agriculture +156350,Agriculture,Agriculture +156345,Agriculture,Agriculture +156342,Agriculture,Agriculture +156341,Agriculture,Agriculture +156340,Agriculture,Agriculture +156339,Agriculture,Agriculture +156338,Agriculture,Agriculture +156337,Agriculture,Agriculture +156336,Agriculture,Agriculture +156335,Agriculture,Agriculture +156334,Agriculture,Agriculture +156331,Agriculture,Agriculture +156330,Agriculture,Agriculture +156329,Agriculture,Agriculture +156327,Agriculture,Agriculture +156325,Agriculture,Agriculture +156321,Agriculture,Agriculture +156316,Agriculture,Agriculture +156315,Agriculture,Agriculture +156313,Agriculture,Agriculture +156312,Agriculture,Agriculture +156311,Agriculture,Agriculture +156310,Agriculture,Agriculture +156309,Agriculture,Agriculture +156307,Agriculture,Agriculture +151517,Agriculture,Agriculture +188943,Agriculture,Agriculture +188938,Agriculture,Agriculture +188937,Agriculture,Agriculture +188934,Agriculture,Agriculture +188932,Agriculture,Agriculture +188927,Agriculture,Agriculture +188925,Agriculture,Agriculture +188921,Agriculture,Agriculture +188920,Agriculture,Agriculture +188919,Agriculture,Agriculture +188917,Agriculture,Agriculture +188916,Agriculture,Agriculture +188915,Agriculture,Agriculture +188914,Agriculture,Agriculture +188913,Agriculture,Agriculture +188912,Agriculture,Agriculture +188911,Agriculture,Agriculture +188910,Agriculture,Agriculture +188909,Agriculture,Agriculture +188908,Agriculture,Agriculture +188906,Agriculture,Agriculture +188904,Agriculture,Agriculture +188903,Agriculture,Agriculture +188902,Agriculture,Agriculture +188901,Agriculture,Agriculture +188900,Agriculture,Agriculture +188899,Agriculture,Agriculture +188898,Agriculture,Agriculture +188897,Agriculture,Agriculture +188896,Agriculture,Agriculture +188893,Agriculture,Agriculture +165284,Agriculture,Agriculture +156604,Agriculture,Agriculture +156601,Agriculture,Agriculture +156597,Agriculture,Agriculture +156465,Agriculture,Agriculture +156462,Agriculture,Agriculture +156460,Agriculture,Agriculture +156451,Agriculture,Agriculture +156430,Agriculture,Agriculture +156429,Agriculture,Agriculture +156425,Agriculture,Agriculture +156424,Agriculture,Agriculture +156423,Agriculture,Agriculture +156422,Agriculture,Agriculture +156421,Agriculture,Agriculture +156420,Agriculture,Agriculture +156419,Agriculture,Agriculture +156416,Agriculture,Agriculture +156414,Agriculture,Agriculture +156412,Agriculture,Agriculture +156410,Agriculture,Agriculture +156409,Agriculture,Agriculture +156407,Agriculture,Agriculture +156406,Agriculture,Agriculture +156405,Agriculture,Agriculture +156401,Agriculture,Agriculture +156397,Agriculture,Agriculture +156367,Agriculture,Agriculture +156366,Agriculture,Agriculture +156365,Agriculture,Agriculture +156364,Agriculture,Agriculture +156363,Agriculture,Agriculture +382410,Agriculture,Agriculture +264751,Agriculture,Agriculture +250725,Agriculture,Agriculture +240312,Agriculture,Agriculture +240306,Agriculture,Agriculture +240256,Agriculture,Agriculture +240211,Agriculture,Agriculture +230070,Agriculture,Agriculture +190398,Agriculture,Agriculture +189017,Agriculture,Agriculture +189012,Agriculture,Agriculture +189010,Agriculture,Agriculture +189008,Agriculture,Agriculture +188965,Agriculture,Agriculture +188963,Agriculture,Agriculture +188962,Agriculture,Agriculture +188959,Agriculture,Agriculture +188957,Agriculture,Agriculture +188956,Agriculture,Agriculture +188954,Agriculture,Agriculture +188953,Agriculture,Agriculture +188952,Agriculture,Agriculture +188951,Agriculture,Agriculture +188950,Agriculture,Agriculture +379831,Energy,Energy +376712,Energy,Energy +156362,Energy,Energy +156360,Energy,Energy +156358,Energy,Energy +156350,Energy,Energy +240290,Energy,Energy +240231,Energy,Energy +240231,Environment,Environment +403469,Environment,Environment +156397,Environment,Environment +156362,Environment,Environment +156360,Environment,Environment +156358,Environment,Environment +156350,Environment,Environment +382418,Environment,Environment +382406,Environment,Environment +379831,Environment,Environment +376712,Environment,Environment +376702,Environment,Environment +240303,Government Procurement,Government Procurement +240293,Government Procurement,Government Procurement +374786,Health,Health +372145,Health,Health +93336,Health,Health +93334,Health,Health +89119,Health,Health +89117,Health,Health +156316,Health,Health +156315,Health,Health +156313,Health,Health +156312,Health,Health +156311,Health,Health +156310,Health,Health +156309,Health,Health +156307,Health,Health +165285,Health,Health +156604,Health,Health +156601,Health,Health +156597,Health,Health +156465,Health,Health +156462,Health,Health +156460,Health,Health +156451,Health,Health +156430,Health,Health +156429,Health,Health +156425,Health,Health +156424,Health,Health +156423,Health,Health +156422,Health,Health +156421,Health,Health +156420,Health,Health +156419,Health,Health +156416,Health,Health +156414,Health,Health +156412,Health,Health +156410,Health,Health +156409,Health,Health +156407,Health,Health +156406,Health,Health +156405,Health,Health +156401,Health,Health +156367,Health,Health +156366,Health,Health +156365,Health,Health +156364,Health,Health +156363,Health,Health +156345,Health,Health +156342,Health,Health +156341,Health,Health +156340,Health,Health +156339,Health,Health +156338,Health,Health +156337,Health,Health +156336,Health,Health +156335,Health,Health +156334,Health,Health +156331,Health,Health +156330,Health,Health +156329,Health,Health +156327,Health,Health +156325,Health,Health +156321,Health,Health +354019,Health,Health +354018,Health,Health +351413,Health,Health +351410,Health,Health +348712,Health,Health +343325,Health,Health +335672,Health,Health +321955,Health,Health +321954,Health,Health +321952,Health,Health +321949,Health,Health +310086,Health,Health +296708,Health,Health +296707,Health,Health +269469,Health,Health +254569,Health,Health +250730,Health,Health +250718,Health,Health +245230,Health,Health +240316,Health,Health +240310,Health,Health +240305,Health,Health +240274,Health,Health +240229,Health,Health +230071,Health,Health +225108,Health,Health +194724,Health,Health +190398,Health,Health +189017,Health,Health +189012,Health,Health +189010,Health,Health +189008,Health,Health +188965,Health,Health +188963,Health,Health +188962,Health,Health +188959,Health,Health +188957,Health,Health +188956,Health,Health +188954,Health,Health +188953,Health,Health +188952,Health,Health +188951,Health,Health +188950,Health,Health +188949,Health,Health +188946,Health,Health +188945,Health,Health +188943,Health,Health +188938,Health,Health +188937,Health,Health +188934,Health,Health +188932,Health,Health +188927,Health,Health +188925,Health,Health +188921,Health,Health +188920,Health,Health +188919,Health,Health +188917,Health,Health +188916,Health,Health +188915,Health,Health +188914,Health,Health +188913,Health,Health +188912,Health,Health +188911,Health,Health +188910,Health,Health +188909,Health,Health +188908,Health,Health +188906,Health,Health +188904,Health,Health +188903,Health,Health +188902,Health,Health +188901,Health,Health +188900,Health,Health +188899,Health,Health +188898,Health,Health +188897,Health,Health +188896,Health,Health +188893,Health,Health +186624,Health,Health +172504,Health,Health +169910,Health,Health +524394,Health,Health +524390,Health,Health +521315,Health,Health +519027,Health,Health +512203,Health,Health +512202,Health,Health +512201,Health,Health +510038,Health,Health +510036,Health,Health +497092,Health,Health +487276,Health,Health +462400,Health,Health +461308,Health,Health +460698,Health,Health +451989,Health,Health +445316,Health,Health +441808,Health,Health +437889,Health,Health +437843,Health,Health +435799,Health,Health +433738,Health,Health +431009,Health,Health +530144,Labour,Labour +481482,Small Business,Small Business +443656,Taxation and Finance,Taxation and Finance +250312,Tourism,Tourism +212411,Transportation,Transportation +325210,Industry,Industry +325210,Infrastructure,Infrastructure +197292,International Trade,International Trade +325210,Regional Development,Regional Development +380448,Small Business,Small Business +104058,Taxation and Finance,Taxation and Finance +504484,Tourism,Tourism +380453,Transportation,Transportation +101175,Industry,Industry +109296,Energy,Energy +109296,Environment,Environment +102295,Industry,Industry +197132,Consumer Issues,Consumer Issues +191610,Energy,Energy +202219,Environment,Environment +191610,Industry,Industry +152764,Taxation and Finance,Taxation and Finance +110294,Infrastructure,Infrastructure +110316,Taxation and Finance,Taxation and Finance +376346,Agriculture,Agriculture +159219,Consumer Issues,Consumer Issues +522732,Environment,Environment +514076,Health,Health +499888,Industry,Industry +190927,Internal Trade,Internal Trade +430379,International Trade,International Trade +190927,Justice and Law Enforcement,Justice and Law Enforcement +423441,Taxation and Finance,Taxation and Finance +404397,Transportation,Transportation +98697,Health,Health +127596,Transportation,Transportation +517489,Industry,Industry +428728,Intellectual Property,Intellectual Property +290657,International Trade,International Trade +204327,Health,Health +199616,Employment and Training,Employment and Training +318276,Industry,Industry +394886,Agriculture,Agriculture +544869,Environment,Environment +383758,International Relations,International Relations +380585,International Trade,International Trade +119755,Other,INTERNATIONAL COOPERATION +77039,Agriculture,Agriculture +224928,Education,Education +164961,Employment and Training,Employment and Training +141094,Other,Comptrollership +75754,Health,Health +77720,Taxation and Finance,Taxation and Finance +93494,Infrastructure,Infrastructure +85441,International Trade,International Trade +93494,Taxation and Finance,Taxation and Finance +310541,Energy,Energy +283952,Environment,Environment +125128,Industry,Industry +275730,Agriculture,Agriculture +82694,Financial Institutions,Financial Institutions +328150,Taxation and Finance,Taxation and Finance +362683,Health,Health +196386,Industry,Industry +77505,Intellectual Property,Intellectual Property +123054,Health,Health +105347,Industry,Industry +105347,Intellectual Property,Intellectual Property +138374,Health,Health +77503,Industry,Industry +77503,Intellectual Property,Intellectual Property +406607,Health,Health +350964,Industry,Industry +350964,Intellectual Property,Intellectual Property +116344,Health,Health +116345,Industry,Industry +88096,Transportation,Transportation +88096,Other,marine issues +88096,Other,Pacific Gateway initiative +166062,Industry,Industry +114179,International Trade,International Trade +242529,Taxation and Finance,Taxation and Finance +188949,Agriculture,Agriculture +240253,Employment and Training,Employment and Training +382418,Energy,Energy +240270,Environment,Environment +382418,Fisheries,Fisheries +240304,Government Procurement,Government Procurement +374797,Health,Health +512201,Industry,Industry +376692,Intellectual Property,Intellectual Property +379796,International Relations,International Relations +240252,International Trade,International Trade +111856,Small Business,Small Business +188915,Taxation and Finance,Taxation and Finance +165285,Other,BIOTECHNOLOGY +358463,Agriculture,Agriculture +167386,Environment,Environment +283992,Industry,Industry +283994,International Trade,International Trade +427136,Health,Health +424130,Health,Health +424124,Health,Health +424115,Health,Health +423897,Health,Health +412886,Health,Health +406511,Health,Health +400096,Health,Health +400095,Health,Health +395800,Health,Health +382416,Health,Health +382407,Health,Health +380958,Health,Health +379838,Health,Health +379826,Health,Health +379821,Health,Health +379811,Health,Health +376754,Health,Health +376743,Health,Health +376735,Health,Health +376726,Health,Health +376720,Health,Health +510038,Industry,Industry +510036,Industry,Industry +194724,Industry,Industry +156601,Industry,Industry +156460,Industry,Industry +296714,Industry,Industry +296708,Industry,Industry +296707,Industry,Industry +282789,Industry,Industry +277151,Industry,Industry +240312,Industry,Industry +240310,Industry,Industry +240306,Industry,Industry +240305,Industry,Industry +240304,Industry,Industry +240303,Industry,Industry +240293,Industry,Industry +240291,Industry,Industry +240290,Industry,Industry +240274,Industry,Industry +240270,Industry,Industry +240259,Industry,Industry +240256,Industry,Industry +240253,Industry,Industry +240252,Industry,Industry +240251,Industry,Industry +240231,Industry,Industry +240211,Industry,Industry +230070,Industry,Industry +225127,Industry,Industry +379831,Industry,Industry +379826,Industry,Industry +379821,Industry,Industry +379811,Industry,Industry +376754,Industry,Industry +376743,Industry,Industry +376735,Industry,Industry +376726,Industry,Industry +376720,Industry,Industry +376712,Industry,Industry +376702,Industry,Industry +376697,Industry,Industry +376692,Industry,Industry +374809,Industry,Industry +374797,Industry,Industry +374786,Industry,Industry +374772,Industry,Industry +372157,Industry,Industry +366503,Industry,Industry +355617,Industry,Industry +355615,Industry,Industry +354017,Industry,Industry +351414,Industry,Industry +351404,Industry,Industry +348670,Industry,Industry +343325,Industry,Industry +335681,Industry,Industry +335679,Industry,Industry +335674,Industry,Industry +328454,Industry,Industry +328451,Industry,Industry +324673,Industry,Industry +321955,Industry,Industry +321954,Industry,Industry +321952,Industry,Industry +321949,Industry,Industry +310086,Industry,Industry +296719,Industry,Industry +487273,Industry,Industry +479893,Industry,Industry +462400,Industry,Industry +461308,Industry,Industry +460698,Industry,Industry +439715,Industry,Industry +437843,Industry,Industry +424115,Industry,Industry +414536,Industry,Industry +409400,Industry,Industry +406511,Industry,Industry +403490,Industry,Industry +403473,Industry,Industry +403469,Industry,Industry +400099,Industry,Industry +400096,Industry,Industry +400093,Industry,Industry +395800,Industry,Industry +393577,Industry,Industry +389077,Industry,Industry +382416,Industry,Industry +382410,Industry,Industry +382407,Industry,Industry +382406,Industry,Industry +380958,Industry,Industry +380957,Industry,Industry +380947,Industry,Industry +524394,Industry,Industry +524390,Industry,Industry +521317,Industry,Industry +521315,Industry,Industry +519027,Industry,Industry +512203,Industry,Industry +512202,Industry,Industry +335682,Intellectual Property,Intellectual Property +437843,Intellectual Property,Intellectual Property +93338,Intellectual Property,Intellectual Property +93334,Intellectual Property,Intellectual Property +89119,Intellectual Property,Intellectual Property +89117,Intellectual Property,Intellectual Property +152797,Intellectual Property,Intellectual Property +151517,Intellectual Property,Intellectual Property +240274,Intellectual Property,Intellectual Property +240259,Intellectual Property,Intellectual Property +240253,Intellectual Property,Intellectual Property +240251,Intellectual Property,Intellectual Property +240231,Intellectual Property,Intellectual Property +240229,Intellectual Property,Intellectual Property +194724,Intellectual Property,Intellectual Property +190398,Intellectual Property,Intellectual Property +189017,Intellectual Property,Intellectual Property +189012,Intellectual Property,Intellectual Property +189010,Intellectual Property,Intellectual Property +189008,Intellectual Property,Intellectual Property +188965,Intellectual Property,Intellectual Property +188963,Intellectual Property,Intellectual Property +188962,Intellectual Property,Intellectual Property +188959,Intellectual Property,Intellectual Property +188957,Intellectual Property,Intellectual Property +188956,Intellectual Property,Intellectual Property +188954,Intellectual Property,Intellectual Property +188953,Intellectual Property,Intellectual Property +188952,Intellectual Property,Intellectual Property +188951,Intellectual Property,Intellectual Property +188950,Intellectual Property,Intellectual Property +188949,Intellectual Property,Intellectual Property +188946,Intellectual Property,Intellectual Property +188945,Intellectual Property,Intellectual Property +188943,Intellectual Property,Intellectual Property +188938,Intellectual Property,Intellectual Property +188937,Intellectual Property,Intellectual Property +188934,Intellectual Property,Intellectual Property +188932,Intellectual Property,Intellectual Property +188927,Intellectual Property,Intellectual Property +188925,Intellectual Property,Intellectual Property +188921,Intellectual Property,Intellectual Property +188920,Intellectual Property,Intellectual Property +188919,Intellectual Property,Intellectual Property +188917,Intellectual Property,Intellectual Property +188916,Intellectual Property,Intellectual Property +188915,Intellectual Property,Intellectual Property +188914,Intellectual Property,Intellectual Property +188913,Intellectual Property,Intellectual Property +188912,Intellectual Property,Intellectual Property +188911,Intellectual Property,Intellectual Property +188910,Intellectual Property,Intellectual Property +188908,Intellectual Property,Intellectual Property +188906,Intellectual Property,Intellectual Property +188904,Intellectual Property,Intellectual Property +188903,Intellectual Property,Intellectual Property +188902,Intellectual Property,Intellectual Property +188901,Intellectual Property,Intellectual Property +188900,Intellectual Property,Intellectual Property +188899,Intellectual Property,Intellectual Property +188898,Intellectual Property,Intellectual Property +188897,Intellectual Property,Intellectual Property +188896,Intellectual Property,Intellectual Property +188893,Intellectual Property,Intellectual Property +379838,Intellectual Property,Intellectual Property +376743,Intellectual Property,Intellectual Property +376735,Intellectual Property,Intellectual Property +376726,Intellectual Property,Intellectual Property +376720,Intellectual Property,Intellectual Property +376697,Intellectual Property,Intellectual Property +366502,International Relations,International Relations +451964,International Relations,International Relations +240252,International Relations,International Relations +403490,International Relations,International Relations +240251,International Trade,International Trade +437843,International Trade,International Trade +151517,International Trade,International Trade +190398,International Trade,International Trade +189017,International Trade,International Trade +189012,International Trade,International Trade +189010,International Trade,International Trade +189008,International Trade,International Trade +188965,International Trade,International Trade +188963,International Trade,International Trade +188962,International Trade,International Trade +188959,International Trade,International Trade +188957,International Trade,International Trade +188956,International Trade,International Trade +188954,International Trade,International Trade +188953,International Trade,International Trade +188952,International Trade,International Trade +188951,International Trade,International Trade +188950,International Trade,International Trade +188949,International Trade,International Trade +188946,International Trade,International Trade +188945,International Trade,International Trade +188943,International Trade,International Trade +188938,International Trade,International Trade +188937,International Trade,International Trade +188934,International Trade,International Trade +188932,International Trade,International Trade +188927,International Trade,International Trade +188925,International Trade,International Trade +188921,International Trade,International Trade +188920,International Trade,International Trade +188919,International Trade,International Trade +188917,International Trade,International Trade +188916,International Trade,International Trade +188915,International Trade,International Trade +188914,International Trade,International Trade +188913,International Trade,International Trade +188912,International Trade,International Trade +188911,International Trade,International Trade +188910,International Trade,International Trade +188909,International Trade,International Trade +188908,International Trade,International Trade +188906,International Trade,International Trade +188904,International Trade,International Trade +188903,International Trade,International Trade +188902,International Trade,International Trade +188901,International Trade,International Trade +188900,International Trade,International Trade +188899,International Trade,International Trade +188898,International Trade,International Trade +188897,International Trade,International Trade +188896,International Trade,International Trade +188893,International Trade,International Trade +156407,International Trade,International Trade +156406,International Trade,International Trade +403473,International Trade,International Trade +400096,International Trade,International Trade +348669,International Trade,International Trade +240259,International Trade,International Trade +188914,Taxation and Finance,Taxation and Finance +380957,Taxation and Finance,Taxation and Finance +103454,Taxation and Finance,Taxation and Finance +101048,Taxation and Finance,Taxation and Finance +101039,Taxation and Finance,Taxation and Finance +93338,Taxation and Finance,Taxation and Finance +93337,Taxation and Finance,Taxation and Finance +93336,Taxation and Finance,Taxation and Finance +93334,Taxation and Finance,Taxation and Finance +89118,Taxation and Finance,Taxation and Finance +89116,Taxation and Finance,Taxation and Finance +86914,Taxation and Finance,Taxation and Finance +156331,Taxation and Finance,Taxation and Finance +156330,Taxation and Finance,Taxation and Finance +156329,Taxation and Finance,Taxation and Finance +156327,Taxation and Finance,Taxation and Finance +156325,Taxation and Finance,Taxation and Finance +156321,Taxation and Finance,Taxation and Finance +156316,Taxation and Finance,Taxation and Finance +156315,Taxation and Finance,Taxation and Finance +156313,Taxation and Finance,Taxation and Finance +156312,Taxation and Finance,Taxation and Finance +156311,Taxation and Finance,Taxation and Finance +156310,Taxation and Finance,Taxation and Finance +156309,Taxation and Finance,Taxation and Finance +156307,Taxation and Finance,Taxation and Finance +152797,Taxation and Finance,Taxation and Finance +149520,Taxation and Finance,Taxation and Finance +124081,Taxation and Finance,Taxation and Finance +124080,Taxation and Finance,Taxation and Finance +124075,Taxation and Finance,Taxation and Finance +119834,Taxation and Finance,Taxation and Finance +114955,Taxation and Finance,Taxation and Finance +114954,Taxation and Finance,Taxation and Finance +111858,Taxation and Finance,Taxation and Finance +111856,Taxation and Finance,Taxation and Finance +108196,Taxation and Finance,Taxation and Finance +188913,Taxation and Finance,Taxation and Finance +188912,Taxation and Finance,Taxation and Finance +188911,Taxation and Finance,Taxation and Finance +188910,Taxation and Finance,Taxation and Finance +188909,Taxation and Finance,Taxation and Finance +188908,Taxation and Finance,Taxation and Finance +188906,Taxation and Finance,Taxation and Finance +188904,Taxation and Finance,Taxation and Finance +188903,Taxation and Finance,Taxation and Finance +188902,Taxation and Finance,Taxation and Finance +188901,Taxation and Finance,Taxation and Finance +188900,Taxation and Finance,Taxation and Finance +188899,Taxation and Finance,Taxation and Finance +188898,Taxation and Finance,Taxation and Finance +188897,Taxation and Finance,Taxation and Finance +188896,Taxation and Finance,Taxation and Finance +188893,Taxation and Finance,Taxation and Finance +165285,Taxation and Finance,Taxation and Finance +156604,Taxation and Finance,Taxation and Finance +156601,Taxation and Finance,Taxation and Finance +156597,Taxation and Finance,Taxation and Finance +156465,Taxation and Finance,Taxation and Finance +156462,Taxation and Finance,Taxation and Finance +156460,Taxation and Finance,Taxation and Finance +156451,Taxation and Finance,Taxation and Finance +156430,Taxation and Finance,Taxation and Finance +156429,Taxation and Finance,Taxation and Finance +156425,Taxation and Finance,Taxation and Finance +156424,Taxation and Finance,Taxation and Finance +156423,Taxation and Finance,Taxation and Finance +156422,Taxation and Finance,Taxation and Finance +156421,Taxation and Finance,Taxation and Finance +156420,Taxation and Finance,Taxation and Finance +156419,Taxation and Finance,Taxation and Finance +156416,Taxation and Finance,Taxation and Finance +156414,Taxation and Finance,Taxation and Finance +156412,Taxation and Finance,Taxation and Finance +156410,Taxation and Finance,Taxation and Finance +156409,Taxation and Finance,Taxation and Finance +156407,Taxation and Finance,Taxation and Finance +156406,Taxation and Finance,Taxation and Finance +156405,Taxation and Finance,Taxation and Finance +156401,Taxation and Finance,Taxation and Finance +156397,Taxation and Finance,Taxation and Finance +156367,Taxation and Finance,Taxation and Finance +156366,Taxation and Finance,Taxation and Finance +156365,Taxation and Finance,Taxation and Finance +156364,Taxation and Finance,Taxation and Finance +156363,Taxation and Finance,Taxation and Finance +156362,Taxation and Finance,Taxation and Finance +156360,Taxation and Finance,Taxation and Finance +156358,Taxation and Finance,Taxation and Finance +156350,Taxation and Finance,Taxation and Finance +156345,Taxation and Finance,Taxation and Finance +156342,Taxation and Finance,Taxation and Finance +156341,Taxation and Finance,Taxation and Finance +156340,Taxation and Finance,Taxation and Finance +156339,Taxation and Finance,Taxation and Finance +156338,Taxation and Finance,Taxation and Finance +156337,Taxation and Finance,Taxation and Finance +156336,Taxation and Finance,Taxation and Finance +156335,Taxation and Finance,Taxation and Finance +156334,Taxation and Finance,Taxation and Finance +351406,Taxation and Finance,Taxation and Finance +335682,Taxation and Finance,Taxation and Finance +240316,Taxation and Finance,Taxation and Finance +240310,Taxation and Finance,Taxation and Finance +240306,Taxation and Finance,Taxation and Finance +240305,Taxation and Finance,Taxation and Finance +240291,Taxation and Finance,Taxation and Finance +240290,Taxation and Finance,Taxation and Finance +240274,Taxation and Finance,Taxation and Finance +240259,Taxation and Finance,Taxation and Finance +240256,Taxation and Finance,Taxation and Finance +240253,Taxation and Finance,Taxation and Finance +240252,Taxation and Finance,Taxation and Finance +240231,Taxation and Finance,Taxation and Finance +240229,Taxation and Finance,Taxation and Finance +190398,Taxation and Finance,Taxation and Finance +189017,Taxation and Finance,Taxation and Finance +189012,Taxation and Finance,Taxation and Finance +189010,Taxation and Finance,Taxation and Finance +189008,Taxation and Finance,Taxation and Finance +188965,Taxation and Finance,Taxation and Finance +188963,Taxation and Finance,Taxation and Finance +188962,Taxation and Finance,Taxation and Finance +188959,Taxation and Finance,Taxation and Finance +188957,Taxation and Finance,Taxation and Finance +188956,Taxation and Finance,Taxation and Finance +188954,Taxation and Finance,Taxation and Finance +188953,Taxation and Finance,Taxation and Finance +188952,Taxation and Finance,Taxation and Finance +188951,Taxation and Finance,Taxation and Finance +188950,Taxation and Finance,Taxation and Finance +188949,Taxation and Finance,Taxation and Finance +188946,Taxation and Finance,Taxation and Finance +188945,Taxation and Finance,Taxation and Finance +188943,Taxation and Finance,Taxation and Finance +188938,Taxation and Finance,Taxation and Finance +188937,Taxation and Finance,Taxation and Finance +188934,Taxation and Finance,Taxation and Finance +188932,Taxation and Finance,Taxation and Finance +188927,Taxation and Finance,Taxation and Finance +188925,Taxation and Finance,Taxation and Finance +188921,Taxation and Finance,Taxation and Finance +188920,Taxation and Finance,Taxation and Finance +188919,Taxation and Finance,Taxation and Finance +188917,Taxation and Finance,Taxation and Finance +188916,Taxation and Finance,Taxation and Finance +165284,Other,BIOTECHNOLOGY +158896,Other,BIOTECHNOLOGY +96495,Other,BIOTECHNOLOGY +93338,Other,BIOTECHNOLOGY +93337,Other,BIOTECHNOLOGY +93334,Other,BIOTECHNOLOGY +89117,Other,BIOTECHNOLOGY +78694,Other,BIOTECHNOLOGY +149520,Other,BIOTECHNOLOGY +140934,Other,BIOTECHNOLOGY +134614,Other,BIOTECHNOLOGY +127616,Other,BIOTECHNOLOGY +124082,Other,BIOTECHNOLOGY +124081,Other,BIOTECHNOLOGY +124080,Other,BIOTECHNOLOGY +124079,Other,BIOTECHNOLOGY +124078,Other,BIOTECHNOLOGY +124077,Other,BIOTECHNOLOGY +124076,Other,BIOTECHNOLOGY +124075,Other,BIOTECHNOLOGY +124074,Other,BIOTECHNOLOGY +119835,Other,BIOTECHNOLOGY +119834,Other,BIOTECHNOLOGY +114955,Other,BIOTECHNOLOGY +114954,Other,BIOTECHNOLOGY +111858,Other,BIOTECHNOLOGY +111856,Other,BIOTECHNOLOGY +108197,Other,BIOTECHNOLOGY +108196,Other,BIOTECHNOLOGY +103454,Other,BIOTECHNOLOGY +101048,Other,BIOTECHNOLOGY +101044,Other,BIOTECHNOLOGY +101039,Other,BIOTECHNOLOGY +156604,Other,BIOTECHNOLOGY +156601,Other,BIOTECHNOLOGY +156597,Other,BIOTECHNOLOGY +156465,Other,BIOTECHNOLOGY +156462,Other,BIOTECHNOLOGY +156460,Other,BIOTECHNOLOGY +156451,Other,BIOTECHNOLOGY +156430,Other,BIOTECHNOLOGY +156429,Other,BIOTECHNOLOGY +156425,Other,BIOTECHNOLOGY +156424,Other,BIOTECHNOLOGY +156423,Other,BIOTECHNOLOGY +156422,Other,BIOTECHNOLOGY +156421,Other,BIOTECHNOLOGY +156420,Other,BIOTECHNOLOGY +156419,Other,BIOTECHNOLOGY +156416,Other,BIOTECHNOLOGY +156414,Other,BIOTECHNOLOGY +156412,Other,BIOTECHNOLOGY +156410,Other,BIOTECHNOLOGY +156409,Other,BIOTECHNOLOGY +156407,Other,BIOTECHNOLOGY +156406,Other,BIOTECHNOLOGY +156405,Other,BIOTECHNOLOGY +156401,Other,BIOTECHNOLOGY +156397,Other,BIOTECHNOLOGY +156367,Other,BIOTECHNOLOGY +156366,Other,BIOTECHNOLOGY +156365,Other,BIOTECHNOLOGY +156364,Other,BIOTECHNOLOGY +156363,Other,BIOTECHNOLOGY +156362,Other,BIOTECHNOLOGY +156360,Other,BIOTECHNOLOGY +156358,Other,BIOTECHNOLOGY +156350,Other,BIOTECHNOLOGY +156345,Other,BIOTECHNOLOGY +156342,Other,BIOTECHNOLOGY +156341,Other,BIOTECHNOLOGY +156340,Other,BIOTECHNOLOGY +156339,Other,BIOTECHNOLOGY +156338,Other,BIOTECHNOLOGY +156337,Other,BIOTECHNOLOGY +156336,Other,BIOTECHNOLOGY +156335,Other,BIOTECHNOLOGY +156334,Other,BIOTECHNOLOGY +156331,Other,BIOTECHNOLOGY +156330,Other,BIOTECHNOLOGY +156329,Other,BIOTECHNOLOGY +156327,Other,BIOTECHNOLOGY +156325,Other,BIOTECHNOLOGY +156321,Other,BIOTECHNOLOGY +156316,Other,BIOTECHNOLOGY +156315,Other,BIOTECHNOLOGY +156313,Other,BIOTECHNOLOGY +156312,Other,BIOTECHNOLOGY +156311,Other,BIOTECHNOLOGY +156310,Other,BIOTECHNOLOGY +156309,Other,BIOTECHNOLOGY +156307,Other,BIOTECHNOLOGY +153544,Other,BIOTECHNOLOGY +152798,Other,BIOTECHNOLOGY +152797,Other,BIOTECHNOLOGY +151517,Other,BIOTECHNOLOGY +143535,Environment,Environment +143534,Environment,Environment +143494,Environment,Environment +141674,Environment,Environment +283991,Industry,Industry +283990,Industry,Industry +167386,Industry,Industry +284010,Industry,Industry +284009,Industry,Industry +283996,Industry,Industry +283995,Industry,Industry +283994,Industry,Industry +283992,International Trade,International Trade +283991,International Trade,International Trade +283990,International Trade,International Trade +284010,International Trade,International Trade +284009,International Trade,International Trade +283996,International Trade,International Trade +283995,International Trade,International Trade +517534,Agriculture,Agriculture +515530,Agriculture,Agriculture +145834,Agriculture,Agriculture +153058,Agriculture,Agriculture +193512,Agriculture,Agriculture +193399,Agriculture,Agriculture +193395,Agriculture,Agriculture +193394,Agriculture,Agriculture +193393,Agriculture,Agriculture +193384,Agriculture,Agriculture +193383,Agriculture,Agriculture +193382,Agriculture,Agriculture +193381,Agriculture,Agriculture +193380,Agriculture,Agriculture +193377,Agriculture,Agriculture +193376,Agriculture,Agriculture +193375,Agriculture,Agriculture +193374,Agriculture,Agriculture +193373,Agriculture,Agriculture +193369,Agriculture,Agriculture +193368,Agriculture,Agriculture +189688,Agriculture,Agriculture +171764,Agriculture,Agriculture +168137,Agriculture,Agriculture +162177,Agriculture,Agriculture +159302,Agriculture,Agriculture +337883,Agriculture,Agriculture +333333,Agriculture,Agriculture +309930,Agriculture,Agriculture +309929,Agriculture,Agriculture +250669,Agriculture,Agriculture +245515,Agriculture,Agriculture +245507,Agriculture,Agriculture +245445,Agriculture,Agriculture +245440,Agriculture,Agriculture +245438,Agriculture,Agriculture +245432,Agriculture,Agriculture +245429,Agriculture,Agriculture +245422,Agriculture,Agriculture +245421,Agriculture,Agriculture +245419,Agriculture,Agriculture +245418,Agriculture,Agriculture +245407,Agriculture,Agriculture +245405,Agriculture,Agriculture +245404,Agriculture,Agriculture +245090,Agriculture,Agriculture +245088,Agriculture,Agriculture +245086,Agriculture,Agriculture +245082,Agriculture,Agriculture +245079,Agriculture,Agriculture +245078,Agriculture,Agriculture +245075,Agriculture,Agriculture +245074,Agriculture,Agriculture +245071,Agriculture,Agriculture +245050,Agriculture,Agriculture +245045,Agriculture,Agriculture +245042,Agriculture,Agriculture +245028,Agriculture,Agriculture +226610,Agriculture,Agriculture +226609,Agriculture,Agriculture +226608,Agriculture,Agriculture +211806,Agriculture,Agriculture +199622,Agriculture,Agriculture +199621,Agriculture,Agriculture +480012,Agriculture,Agriculture +477801,Agriculture,Agriculture +475742,Agriculture,Agriculture +439212,Agriculture,Agriculture +403485,Agriculture,Agriculture +387600,Agriculture,Agriculture +387456,Agriculture,Agriculture +387431,Agriculture,Agriculture +382848,Agriculture,Agriculture +381199,Agriculture,Agriculture +381198,Agriculture,Agriculture +381196,Agriculture,Agriculture +381195,Agriculture,Agriculture +381193,Agriculture,Agriculture +381181,Agriculture,Agriculture +381179,Agriculture,Agriculture +381178,Agriculture,Agriculture +381177,Agriculture,Agriculture +543646,Agriculture,Agriculture +537354,Agriculture,Agriculture +534439,Agriculture,Agriculture +525711,Agriculture,Agriculture +521543,Agriculture,Agriculture +168137,Consumer Issues,Consumer Issues +162177,Consumer Issues,Consumer Issues +309939,Consumer Issues,Consumer Issues +309937,Consumer Issues,Consumer Issues +309935,Consumer Issues,Consumer Issues +303524,Consumer Issues,Consumer Issues +381177,Employment and Training,Employment and Training +543642,Employment and Training,Employment and Training +90376,Employment and Training,Employment and Training +90375,Employment and Training,Employment and Training +90372,Employment and Training,Employment and Training +193396,Employment and Training,Employment and Training +193395,Employment and Training,Employment and Training +193394,Employment and Training,Employment and Training +193393,Employment and Training,Employment and Training +193392,Employment and Training,Employment and Training +193385,Employment and Training,Employment and Training +193384,Employment and Training,Employment and Training +193383,Employment and Training,Employment and Training +193382,Employment and Training,Employment and Training +193381,Employment and Training,Employment and Training +193380,Employment and Training,Employment and Training +193379,Employment and Training,Employment and Training +193378,Employment and Training,Employment and Training +193377,Employment and Training,Employment and Training +193376,Employment and Training,Employment and Training +193374,Employment and Training,Employment and Training +193373,Employment and Training,Employment and Training +193372,Employment and Training,Employment and Training +193371,Employment and Training,Employment and Training +193368,Employment and Training,Employment and Training +193367,Employment and Training,Employment and Training +193365,Employment and Training,Employment and Training +151936,Employment and Training,Employment and Training +335993,Employment and Training,Employment and Training +335989,Employment and Training,Employment and Training +318970,Employment and Training,Employment and Training +245515,Employment and Training,Employment and Training +245445,Employment and Training,Employment and Training +245438,Employment and Training,Employment and Training +245432,Employment and Training,Employment and Training +245429,Employment and Training,Employment and Training +245422,Employment and Training,Employment and Training +245421,Employment and Training,Employment and Training +245417,Employment and Training,Employment and Training +245407,Employment and Training,Employment and Training +245404,Employment and Training,Employment and Training +245093,Employment and Training,Employment and Training +245088,Employment and Training,Employment and Training +245082,Employment and Training,Employment and Training +245080,Employment and Training,Employment and Training +245078,Employment and Training,Employment and Training +245047,Employment and Training,Employment and Training +245045,Employment and Training,Employment and Training +245042,Employment and Training,Employment and Training +245039,Employment and Training,Employment and Training +230294,Employment and Training,Employment and Training +193496,Employment and Training,Employment and Training +193400,Employment and Training,Employment and Training +193399,Employment and Training,Employment and Training +525719,Employment and Training,Employment and Training +525700,Employment and Training,Employment and Training +477809,Employment and Training,Employment and Training +475735,Employment and Training,Employment and Training +473551,Employment and Training,Employment and Training +473550,Employment and Training,Employment and Training +433540,Employment and Training,Employment and Training +389671,Employment and Training,Employment and Training +387442,Employment and Training,Employment and Training +381199,Employment and Training,Employment and Training +381198,Employment and Training,Employment and Training +381196,Employment and Training,Employment and Training +381195,Employment and Training,Employment and Training +381193,Employment and Training,Employment and Training +381188,Employment and Training,Employment and Training +381181,Employment and Training,Employment and Training +381179,Employment and Training,Employment and Training +514099,Environment,Environment +529178,Environment,Environment +81214,Environment,Environment +309935,Financial Institutions,Financial Institutions +303524,Financial Institutions,Financial Institutions +90376,Financial Institutions,Financial Institutions +90375,Financial Institutions,Financial Institutions +90372,Financial Institutions,Financial Institutions +193400,Financial Institutions,Financial Institutions +193396,Financial Institutions,Financial Institutions +193382,Financial Institutions,Financial Institutions +193378,Financial Institutions,Financial Institutions +193372,Financial Institutions,Financial Institutions +193370,Financial Institutions,Financial Institutions +161112,Financial Institutions,Financial Institutions +109165,Financial Institutions,Financial Institutions +309939,Financial Institutions,Financial Institutions +499039,Health,Health +490523,Health,Health +113077,Health,Health +202753,Health,Health +200177,Health,Health +193392,Health,Health +170425,Health,Health +165831,Health,Health +165830,Health,Health +165828,Health,Health +159302,Health,Health +337900,Health,Health +337885,Health,Health +337878,Health,Health +337876,Health,Health +337875,Health,Health +337874,Health,Health +337873,Health,Health +337872,Health,Health +337871,Health,Health +337870,Health,Health +337868,Health,Health +337867,Health,Health +337866,Health,Health +337865,Health,Health +337863,Health,Health +337861,Health,Health +337859,Health,Health +337858,Health,Health +337857,Health,Health +337856,Health,Health +337855,Health,Health +250676,Health,Health +245527,Health,Health +245520,Health,Health +245515,Health,Health +245511,Health,Health +245419,Health,Health +245417,Health,Health +245407,Health,Health +245093,Health,Health +245090,Health,Health +245078,Health,Health +245076,Health,Health +467597,Health,Health +467581,Health,Health +467576,Health,Health +463014,Health,Health +451527,Health,Health +451524,Health,Health +451522,Health,Health +451507,Health,Health +451501,Health,Health +446461,Health,Health +446455,Health,Health +446454,Health,Health +443135,Health,Health +441873,Health,Health +441872,Health,Health +441870,Health,Health +441867,Health,Health +441865,Health,Health +441864,Health,Health +439229,Health,Health +439227,Health,Health +439225,Health,Health +439222,Health,Health +439218,Health,Health +439216,Health,Health +439206,Health,Health +439191,Health,Health +439188,Health,Health +439154,Health,Health +439151,Health,Health +439145,Health,Health +439144,Health,Health +439125,Health,Health +439122,Health,Health +439100,Health,Health +439098,Health,Health +439096,Health,Health +439092,Health,Health +439086,Health,Health +432375,Health,Health +432374,Health,Health +432373,Health,Health +430841,Health,Health +426349,Health,Health +426347,Health,Health +426344,Health,Health +426249,Health,Health +426248,Health,Health +426247,Health,Health +426246,Health,Health +422273,Health,Health +415385,Health,Health +415379,Health,Health +413441,Health,Health +413433,Health,Health +413431,Health,Health +413418,Health,Health +413414,Health,Health +413406,Health,Health +413405,Health,Health +413403,Health,Health +413374,Health,Health +413370,Health,Health +413366,Health,Health +413335,Health,Health +413325,Health,Health +413322,Health,Health +413316,Health,Health +413312,Health,Health +413310,Health,Health +413305,Health,Health +413302,Health,Health +413194,Health,Health +413172,Health,Health +387453,Health,Health +387452,Health,Health +387440,Health,Health +387436,Health,Health +387435,Health,Health +387434,Health,Health +387433,Health,Health +387432,Health,Health +387430,Health,Health +387429,Health,Health +387428,Health,Health +387427,Health,Health +387426,Health,Health +387425,Health,Health +387424,Health,Health +387422,Health,Health +385773,Health,Health +385772,Health,Health +385771,Health,Health +385770,Health,Health +385769,Health,Health +385768,Health,Health +385767,Health,Health +385766,Health,Health +385765,Health,Health +385764,Health,Health +383546,Health,Health +383545,Health,Health +383543,Health,Health +383540,Health,Health +381199,Health,Health +381198,Health,Health +381196,Health,Health +381195,Health,Health +381193,Health,Health +381181,Health,Health +381179,Health,Health +381178,Health,Health +381177,Health,Health +376946,Health,Health +376943,Health,Health +376939,Health,Health +376935,Health,Health +376931,Health,Health +376923,Health,Health +369224,Health,Health +365266,Health,Health +505020,Health,Health +504991,Health,Health +501856,Health,Health +514101,Immigration,Immigration +477813,Immigration,Immigration +117314,Immigration,Immigration +159300,Immigration,Immigration +159297,Immigration,Immigration +226610,Immigration,Immigration +193625,Immigration,Immigration +193495,Immigration,Immigration +193399,Immigration,Immigration +193396,Immigration,Immigration +193395,Immigration,Immigration +193394,Immigration,Immigration +193385,Immigration,Immigration +193378,Immigration,Immigration +193372,Immigration,Immigration +193367,Immigration,Immigration +193365,Immigration,Immigration +189688,Immigration,Immigration +178284,Immigration,Immigration +337873,Immigration,Immigration +337872,Immigration,Immigration +337871,Immigration,Immigration +337870,Immigration,Immigration +337868,Immigration,Immigration +337867,Immigration,Immigration +337866,Immigration,Immigration +337865,Immigration,Immigration +337863,Immigration,Immigration +337861,Immigration,Immigration +337859,Immigration,Immigration +337858,Immigration,Immigration +337857,Immigration,Immigration +337856,Immigration,Immigration +337855,Immigration,Immigration +335993,Immigration,Immigration +335989,Immigration,Immigration +335943,Immigration,Immigration +335942,Immigration,Immigration +331564,Immigration,Immigration +329860,Immigration,Immigration +329859,Immigration,Immigration +329858,Immigration,Immigration +327704,Immigration,Immigration +327698,Immigration,Immigration +327696,Immigration,Immigration +327691,Immigration,Immigration +327683,Immigration,Immigration +309944,Immigration,Immigration +309942,Immigration,Immigration +309932,Immigration,Immigration +290252,Immigration,Immigration +245515,Immigration,Immigration +245438,Immigration,Immigration +245429,Immigration,Immigration +245407,Immigration,Immigration +245404,Immigration,Immigration +245093,Immigration,Immigration +245082,Immigration,Immigration +245080,Immigration,Immigration +245078,Immigration,Immigration +245047,Immigration,Immigration +245039,Immigration,Immigration +233513,Immigration,Immigration +439185,Immigration,Immigration +439151,Immigration,Immigration +422277,Immigration,Immigration +415379,Immigration,Immigration +413325,Immigration,Immigration +413322,Immigration,Immigration +413316,Immigration,Immigration +413312,Immigration,Immigration +413135,Immigration,Immigration +389672,Immigration,Immigration +387462,Immigration,Immigration +387453,Immigration,Immigration +387452,Immigration,Immigration +387442,Immigration,Immigration +387440,Immigration,Immigration +387436,Immigration,Immigration +387435,Immigration,Immigration +387434,Immigration,Immigration +387433,Immigration,Immigration +387432,Immigration,Immigration +387430,Immigration,Immigration +387429,Immigration,Immigration +387428,Immigration,Immigration +387427,Immigration,Immigration +387426,Immigration,Immigration +387425,Immigration,Immigration +387424,Immigration,Immigration +387422,Immigration,Immigration +385767,Immigration,Immigration +383678,Immigration,Immigration +381199,Immigration,Immigration +381198,Immigration,Immigration +381196,Immigration,Immigration +381195,Immigration,Immigration +381193,Immigration,Immigration +381188,Immigration,Immigration +381181,Immigration,Immigration +381179,Immigration,Immigration +381178,Immigration,Immigration +381177,Immigration,Immigration +341635,Immigration,Immigration +337900,Immigration,Immigration +337885,Immigration,Immigration +337883,Immigration,Immigration +337879,Immigration,Immigration +337878,Immigration,Immigration +337876,Immigration,Immigration +337875,Immigration,Immigration +337874,Immigration,Immigration +539225,Immigration,Immigration +521544,Immigration,Immigration +515526,Industry,Industry +515524,Industry,Industry +153058,Industry,Industry +150240,Industry,Industry +150227,Industry,Industry +145850,Industry,Industry +199621,Industry,Industry +193512,Industry,Industry +193496,Industry,Industry +193495,Industry,Industry +193400,Industry,Industry +193399,Industry,Industry +193396,Industry,Industry +193395,Industry,Industry +193394,Industry,Industry +193393,Industry,Industry +193392,Industry,Industry +193385,Industry,Industry +193384,Industry,Industry +193383,Industry,Industry +193382,Industry,Industry +193381,Industry,Industry +193380,Industry,Industry +193379,Industry,Industry +193378,Industry,Industry +193377,Industry,Industry +193376,Industry,Industry +193375,Industry,Industry +193374,Industry,Industry +193373,Industry,Industry +193372,Industry,Industry +193371,Industry,Industry +193370,Industry,Industry +193369,Industry,Industry +193368,Industry,Industry +193367,Industry,Industry +185667,Industry,Industry +170515,Industry,Industry +170424,Industry,Industry +264049,Industry,Industry +254164,Industry,Industry +245515,Industry,Industry +245445,Industry,Industry +245440,Industry,Industry +245438,Industry,Industry +245432,Industry,Industry +245429,Industry,Industry +245422,Industry,Industry +245421,Industry,Industry +245419,Industry,Industry +245417,Industry,Industry +245415,Industry,Industry +245407,Industry,Industry +245405,Industry,Industry +245404,Industry,Industry +245093,Industry,Industry +245090,Industry,Industry +245088,Industry,Industry +245086,Industry,Industry +245082,Industry,Industry +245081,Industry,Industry +245080,Industry,Industry +245079,Industry,Industry +245078,Industry,Industry +245077,Industry,Industry +245076,Industry,Industry +245075,Industry,Industry +245074,Industry,Industry +245071,Industry,Industry +245070,Industry,Industry +245050,Industry,Industry +245047,Industry,Industry +245045,Industry,Industry +245042,Industry,Industry +245039,Industry,Industry +245028,Industry,Industry +223209,Industry,Industry +199622,Industry,Industry +396734,Industry,Industry +396731,Industry,Industry +387463,Industry,Industry +387461,Industry,Industry +387459,Industry,Industry +387458,Industry,Industry +387455,Industry,Industry +387453,Industry,Industry +387452,Industry,Industry +387442,Industry,Industry +387440,Industry,Industry +387436,Industry,Industry +387435,Industry,Industry +387434,Industry,Industry +387433,Industry,Industry +387432,Industry,Industry +387431,Industry,Industry +387430,Industry,Industry +387429,Industry,Industry +387428,Industry,Industry +387427,Industry,Industry +387426,Industry,Industry +387425,Industry,Industry +387424,Industry,Industry +387422,Industry,Industry +387421,Industry,Industry +385773,Industry,Industry +385772,Industry,Industry +385771,Industry,Industry +385770,Industry,Industry +385769,Industry,Industry +385768,Industry,Industry +385767,Industry,Industry +385766,Industry,Industry +385765,Industry,Industry +385764,Industry,Industry +385763,Industry,Industry +383678,Industry,Industry +383677,Industry,Industry +383546,Industry,Industry +383545,Industry,Industry +383543,Industry,Industry +383540,Industry,Industry +383539,Industry,Industry +383537,Industry,Industry +382848,Industry,Industry +381199,Industry,Industry +381198,Industry,Industry +381196,Industry,Industry +381195,Industry,Industry +381193,Industry,Industry +381181,Industry,Industry +381179,Industry,Industry +381178,Industry,Industry +381177,Industry,Industry +376946,Industry,Industry +376943,Industry,Industry +376939,Industry,Industry +376935,Industry,Industry +376931,Industry,Industry +376923,Industry,Industry +359809,Industry,Industry +359808,Industry,Industry +359807,Industry,Industry +357870,Industry,Industry +355891,Industry,Industry +355890,Industry,Industry +355889,Industry,Industry +351470,Industry,Industry +349237,Industry,Industry +341635,Industry,Industry +337900,Industry,Industry +337885,Industry,Industry +337883,Industry,Industry +337878,Industry,Industry +337876,Industry,Industry +337875,Industry,Industry +337874,Industry,Industry +337873,Industry,Industry +337872,Industry,Industry +337871,Industry,Industry +337870,Industry,Industry +337868,Industry,Industry +337867,Industry,Industry +337866,Industry,Industry +337865,Industry,Industry +337863,Industry,Industry +337861,Industry,Industry +337859,Industry,Industry +337858,Industry,Industry +337857,Industry,Industry +337856,Industry,Industry +337855,Industry,Industry +335958,Industry,Industry +335943,Industry,Industry +335942,Industry,Industry +333333,Industry,Industry +331564,Industry,Industry +329860,Industry,Industry +329859,Industry,Industry +329858,Industry,Industry +327704,Industry,Industry +327701,Industry,Industry +327698,Industry,Industry +327696,Industry,Industry +327691,Industry,Industry +327683,Industry,Industry +327678,Industry,Industry +321883,Industry,Industry +309944,Industry,Industry +309942,Industry,Industry +309932,Industry,Industry +309931,Industry,Industry +303524,Industry,Industry +514347,Industry,Industry +514101,Industry,Industry +514100,Industry,Industry +514099,Industry,Industry +514098,Industry,Industry +514097,Industry,Industry +512889,Industry,Industry +512876,Industry,Industry +512856,Industry,Industry +512848,Industry,Industry +512844,Industry,Industry +510603,Industry,Industry +510602,Industry,Industry +510600,Industry,Industry +510595,Industry,Industry +508447,Industry,Industry +508445,Industry,Industry +508444,Industry,Industry +508441,Industry,Industry +508439,Industry,Industry +508430,Industry,Industry +505037,Industry,Industry +505034,Industry,Industry +505032,Industry,Industry +505020,Industry,Industry +505019,Industry,Industry +505016,Industry,Industry +505013,Industry,Industry +505011,Industry,Industry +505008,Industry,Industry +504994,Industry,Industry +504991,Industry,Industry +504988,Industry,Industry +504973,Industry,Industry +504967,Industry,Industry +504956,Industry,Industry +504943,Industry,Industry +504935,Industry,Industry +501856,Industry,Industry +501854,Industry,Industry +501853,Industry,Industry +501843,Industry,Industry +501837,Industry,Industry +501834,Industry,Industry +501832,Industry,Industry +501828,Industry,Industry +501823,Industry,Industry +501820,Industry,Industry +501800,Industry,Industry +501792,Industry,Industry +501788,Industry,Industry +501784,Industry,Industry +501781,Industry,Industry +501777,Industry,Industry +499364,Industry,Industry +499078,Industry,Industry +499072,Industry,Industry +499067,Industry,Industry +499065,Industry,Industry +499060,Industry,Industry +499054,Industry,Industry +499052,Industry,Industry +499047,Industry,Industry +499041,Industry,Industry +499039,Industry,Industry +499038,Industry,Industry +499036,Industry,Industry +495598,Industry,Industry +495597,Industry,Industry +495596,Industry,Industry +495595,Industry,Industry +495594,Industry,Industry +495593,Industry,Industry +493233,Industry,Industry +493231,Industry,Industry +493229,Industry,Industry +493227,Industry,Industry +493222,Industry,Industry +493220,Industry,Industry +493215,Industry,Industry +493213,Industry,Industry +493212,Industry,Industry +493211,Industry,Industry +493209,Industry,Industry +493208,Industry,Industry +490523,Industry,Industry +490522,Industry,Industry +490519,Industry,Industry +490518,Industry,Industry +490516,Industry,Industry +490514,Industry,Industry +490513,Industry,Industry +490510,Industry,Industry +487424,Industry,Industry +487420,Industry,Industry +484849,Industry,Industry +484847,Industry,Industry +484845,Industry,Industry +484843,Industry,Industry +482153,Industry,Industry +480012,Industry,Industry +480011,Industry,Industry +480009,Industry,Industry +480004,Industry,Industry +477813,Industry,Industry +477809,Industry,Industry +477807,Industry,Industry +477806,Industry,Industry +477801,Industry,Industry +477800,Industry,Industry +477798,Industry,Industry +477796,Industry,Industry +477792,Industry,Industry +477790,Industry,Industry +477788,Industry,Industry +477784,Industry,Industry +475745,Industry,Industry +475742,Industry,Industry +475735,Industry,Industry +475731,Industry,Industry +475728,Industry,Industry +475726,Industry,Industry +475724,Industry,Industry +473570,Industry,Industry +473568,Industry,Industry +473566,Industry,Industry +473564,Industry,Industry +473562,Industry,Industry +473560,Industry,Industry +473555,Industry,Industry +473552,Industry,Industry +473551,Industry,Industry +473550,Industry,Industry +470964,Industry,Industry +470959,Industry,Industry +470948,Industry,Industry +470946,Industry,Industry +470942,Industry,Industry +470546,Industry,Industry +470542,Industry,Industry +467597,Industry,Industry +467581,Industry,Industry +467576,Industry,Industry +463014,Industry,Industry +458604,Industry,Industry +451527,Industry,Industry +451524,Industry,Industry +451522,Industry,Industry +451507,Industry,Industry +451501,Industry,Industry +446463,Industry,Industry +446461,Industry,Industry +446458,Industry,Industry +446456,Industry,Industry +446455,Industry,Industry +446454,Industry,Industry +443135,Industry,Industry +441873,Industry,Industry +441872,Industry,Industry +441870,Industry,Industry +439229,Industry,Industry +439227,Industry,Industry +439225,Industry,Industry +439222,Industry,Industry +439218,Industry,Industry +439216,Industry,Industry +439212,Industry,Industry +439206,Industry,Industry +439203,Industry,Industry +439191,Industry,Industry +439188,Industry,Industry +439185,Industry,Industry +439154,Industry,Industry +439151,Industry,Industry +439145,Industry,Industry +439144,Industry,Industry +439125,Industry,Industry +439122,Industry,Industry +439105,Industry,Industry +439100,Industry,Industry +439098,Industry,Industry +439096,Industry,Industry +439092,Industry,Industry +439086,Industry,Industry +439079,Industry,Industry +433540,Industry,Industry +433539,Industry,Industry +432375,Industry,Industry +432374,Industry,Industry +432373,Industry,Industry +430841,Industry,Industry +428102,Industry,Industry +426349,Industry,Industry +426347,Industry,Industry +426344,Industry,Industry +426249,Industry,Industry +426248,Industry,Industry +426247,Industry,Industry +426246,Industry,Industry +422281,Industry,Industry +422277,Industry,Industry +422273,Industry,Industry +419910,Industry,Industry +419909,Industry,Industry +415385,Industry,Industry +415381,Industry,Industry +413441,Industry,Industry +413433,Industry,Industry +413431,Industry,Industry +413418,Industry,Industry +413414,Industry,Industry +413406,Industry,Industry +413405,Industry,Industry +413403,Industry,Industry +413374,Industry,Industry +413370,Industry,Industry +413366,Industry,Industry +413335,Industry,Industry +413325,Industry,Industry +413322,Industry,Industry +413316,Industry,Industry +413312,Industry,Industry +413310,Industry,Industry +413305,Industry,Industry +413302,Industry,Industry +413194,Industry,Industry +413172,Industry,Industry +413162,Industry,Industry +413111,Industry,Industry +408042,Industry,Industry +408039,Industry,Industry +408033,Industry,Industry +406485,Industry,Industry +404723,Industry,Industry +404717,Industry,Industry +404715,Industry,Industry +404714,Industry,Industry +404713,Industry,Industry +404712,Industry,Industry +404711,Industry,Industry +404710,Industry,Industry +404708,Industry,Industry +404707,Industry,Industry +404705,Industry,Industry +404704,Industry,Industry +404701,Industry,Industry +403485,Industry,Industry +403481,Industry,Industry +403384,Industry,Industry +403378,Industry,Industry +403377,Industry,Industry +400959,Industry,Industry +543646,Industry,Industry +543644,Industry,Industry +543642,Industry,Industry +541716,Industry,Industry +541710,Industry,Industry +539228,Industry,Industry +539227,Industry,Industry +539225,Industry,Industry +539224,Industry,Industry +539223,Industry,Industry +539222,Industry,Industry +539220,Industry,Industry +537357,Industry,Industry +537354,Industry,Industry +537353,Industry,Industry +534452,Industry,Industry +534451,Industry,Industry +534450,Industry,Industry +534449,Industry,Industry +534446,Industry,Industry +534444,Industry,Industry +534439,Industry,Industry +534438,Industry,Industry +530925,Industry,Industry +530924,Industry,Industry +530923,Industry,Industry +530922,Industry,Industry +530920,Industry,Industry +529199,Industry,Industry +529197,Industry,Industry +529194,Industry,Industry +529192,Industry,Industry +529188,Industry,Industry +529183,Industry,Industry +529179,Industry,Industry +525719,Industry,Industry +525711,Industry,Industry +525703,Industry,Industry +525700,Industry,Industry +525696,Industry,Industry +525686,Industry,Industry +521550,Industry,Industry +521549,Industry,Industry +521547,Industry,Industry +521546,Industry,Industry +521544,Industry,Industry +521543,Industry,Industry +521542,Industry,Industry +521540,Industry,Industry +520834,Industry,Industry +519702,Industry,Industry +519701,Industry,Industry +519697,Industry,Industry +519695,Industry,Industry +519692,Industry,Industry +519687,Industry,Industry +519683,Industry,Industry +517551,Industry,Industry +517550,Industry,Industry +517549,Industry,Industry +517548,Industry,Industry +517547,Industry,Industry +517541,Industry,Industry +517537,Industry,Industry +517535,Industry,Industry +517534,Industry,Industry +515530,Industry,Industry +382849,Internal Trade,Internal Trade +521543,International Trade,International Trade +521540,International Trade,International Trade +193394,International Trade,International Trade +153058,International Trade,International Trade +337883,International Trade,International Trade +309931,International Trade,International Trade +245445,International Trade,International Trade +245419,International Trade,International Trade +245407,International Trade,International Trade +245405,International Trade,International Trade +245075,International Trade,International Trade +245074,International Trade,International Trade +226610,International Trade,International Trade +467571,International Trade,International Trade +439203,International Trade,International Trade +408042,International Trade,International Trade +408039,International Trade,International Trade +408033,International Trade,International Trade +413129,Justice and Law Enforcement,Justice and Law Enforcement +413111,Justice and Law Enforcement,Justice and Law Enforcement +159292,Justice and Law Enforcement,Justice and Law Enforcement +389671,Labour,Labour +543644,Labour,Labour +150240,Labour,Labour +150227,Labour,Labour +145837,Labour,Labour +245422,Labour,Labour +245421,Labour,Labour +245047,Labour,Labour +245045,Labour,Labour +245042,Labour,Labour +245039,Labour,Labour +233513,Labour,Labour +230294,Labour,Labour +226610,Labour,Labour +193625,Labour,Labour +189688,Labour,Labour +337878,Labour,Labour +337876,Labour,Labour +337875,Labour,Labour +337874,Labour,Labour +337873,Labour,Labour +337872,Labour,Labour +337871,Labour,Labour +337870,Labour,Labour +337868,Labour,Labour +337867,Labour,Labour +337866,Labour,Labour +337865,Labour,Labour +337863,Labour,Labour +337861,Labour,Labour +337859,Labour,Labour +337858,Labour,Labour +337857,Labour,Labour +337856,Labour,Labour +337855,Labour,Labour +335943,Labour,Labour +335942,Labour,Labour +331564,Labour,Labour +329860,Labour,Labour +329859,Labour,Labour +329858,Labour,Labour +327704,Labour,Labour +327701,Labour,Labour +327698,Labour,Labour +327696,Labour,Labour +327691,Labour,Labour +327683,Labour,Labour +290252,Labour,Labour +387453,Labour,Labour +387452,Labour,Labour +387442,Labour,Labour +387440,Labour,Labour +387436,Labour,Labour +387435,Labour,Labour +387434,Labour,Labour +387433,Labour,Labour +387432,Labour,Labour +387430,Labour,Labour +387429,Labour,Labour +387428,Labour,Labour +387427,Labour,Labour +387426,Labour,Labour +387425,Labour,Labour +387424,Labour,Labour +387422,Labour,Labour +387421,Labour,Labour +385773,Labour,Labour +385772,Labour,Labour +385771,Labour,Labour +385770,Labour,Labour +385769,Labour,Labour +385768,Labour,Labour +385767,Labour,Labour +385766,Labour,Labour +385765,Labour,Labour +385764,Labour,Labour +383547,Labour,Labour +383546,Labour,Labour +383545,Labour,Labour +383543,Labour,Labour +383540,Labour,Labour +383539,Labour,Labour +383537,Labour,Labour +382847,Labour,Labour +381199,Labour,Labour +381198,Labour,Labour +381196,Labour,Labour +381195,Labour,Labour +381193,Labour,Labour +381181,Labour,Labour +381179,Labour,Labour +381178,Labour,Labour +381177,Labour,Labour +376946,Labour,Labour +376943,Labour,Labour +376939,Labour,Labour +376935,Labour,Labour +376931,Labour,Labour +376923,Labour,Labour +369225,Labour,Labour +369224,Labour,Labour +365263,Labour,Labour +359809,Labour,Labour +359808,Labour,Labour +359807,Labour,Labour +357871,Labour,Labour +357870,Labour,Labour +355891,Labour,Labour +355889,Labour,Labour +351470,Labour,Labour +349237,Labour,Labour +337900,Labour,Labour +337885,Labour,Labour +337883,Labour,Labour +337879,Labour,Labour +541716,Labour,Labour +541710,Labour,Labour +539227,Labour,Labour +539225,Labour,Labour +539223,Labour,Labour +539222,Labour,Labour +539220,Labour,Labour +537357,Labour,Labour +537353,Labour,Labour +534452,Labour,Labour +534451,Labour,Labour +534449,Labour,Labour +534444,Labour,Labour +534439,Labour,Labour +534438,Labour,Labour +530925,Labour,Labour +530924,Labour,Labour +530923,Labour,Labour +530922,Labour,Labour +529199,Labour,Labour +529197,Labour,Labour +529192,Labour,Labour +529188,Labour,Labour +529183,Labour,Labour +525719,Labour,Labour +525700,Labour,Labour +521550,Labour,Labour +521549,Labour,Labour +521546,Labour,Labour +521544,Labour,Labour +521542,Labour,Labour +519695,Labour,Labour +519683,Labour,Labour +517551,Labour,Labour +517550,Labour,Labour +515524,Labour,Labour +514347,Labour,Labour +514101,Labour,Labour +512856,Labour,Labour +512848,Labour,Labour +512844,Labour,Labour +508430,Labour,Labour +504956,Labour,Labour +504935,Labour,Labour +501800,Labour,Labour +501792,Labour,Labour +499364,Labour,Labour +499054,Labour,Labour +495598,Labour,Labour +495597,Labour,Labour +495596,Labour,Labour +495595,Labour,Labour +495594,Labour,Labour +495593,Labour,Labour +493233,Labour,Labour +493231,Labour,Labour +493227,Labour,Labour +493222,Labour,Labour +493220,Labour,Labour +493215,Labour,Labour +493213,Labour,Labour +493211,Labour,Labour +493208,Labour,Labour +480004,Labour,Labour +477809,Labour,Labour +477807,Labour,Labour +477806,Labour,Labour +477798,Labour,Labour +477792,Labour,Labour +477790,Labour,Labour +477788,Labour,Labour +477784,Labour,Labour +475735,Labour,Labour +475728,Labour,Labour +475724,Labour,Labour +473570,Labour,Labour +473562,Labour,Labour +473560,Labour,Labour +473555,Labour,Labour +473552,Labour,Labour +473551,Labour,Labour +473550,Labour,Labour +470964,Labour,Labour +470959,Labour,Labour +470948,Labour,Labour +439229,Labour,Labour +439227,Labour,Labour +439225,Labour,Labour +439222,Labour,Labour +439218,Labour,Labour +439216,Labour,Labour +439206,Labour,Labour +439191,Labour,Labour +439188,Labour,Labour +439185,Labour,Labour +439154,Labour,Labour +439151,Labour,Labour +439145,Labour,Labour +439144,Labour,Labour +439125,Labour,Labour +439122,Labour,Labour +439105,Labour,Labour +439100,Labour,Labour +439098,Labour,Labour +439096,Labour,Labour +439092,Labour,Labour +439086,Labour,Labour +433540,Labour,Labour +433539,Labour,Labour +430841,Labour,Labour +428102,Labour,Labour +419909,Labour,Labour +493209,Small Business,Small Business +493208,Small Business,Small Business +170515,Small Business,Small Business +170424,Small Business,Small Business +168138,Small Business,Small Business +193512,Small Business,Small Business +193496,Small Business,Small Business +193495,Small Business,Small Business +193400,Small Business,Small Business +193399,Small Business,Small Business +193393,Small Business,Small Business +193385,Small Business,Small Business +193382,Small Business,Small Business +193381,Small Business,Small Business +193380,Small Business,Small Business +193379,Small Business,Small Business +193378,Small Business,Small Business +193377,Small Business,Small Business +193376,Small Business,Small Business +193375,Small Business,Small Business +193374,Small Business,Small Business +193373,Small Business,Small Business +193372,Small Business,Small Business +193371,Small Business,Small Business +193370,Small Business,Small Business +382850,Small Business,Small Business +382849,Small Business,Small Business +376946,Small Business,Small Business +376943,Small Business,Small Business +376939,Small Business,Small Business +376935,Small Business,Small Business +376931,Small Business,Small Business +376923,Small Business,Small Business +245076,Small Business,Small Business +490522,Small Business,Small Business +490518,Small Business,Small Business +490513,Small Business,Small Business +490510,Small Business,Small Business +487424,Small Business,Small Business +484849,Small Business,Small Business +482153,Small Business,Small Business +477798,Small Business,Small Business +477796,Small Business,Small Business +477788,Small Business,Small Business +477784,Small Business,Small Business +475745,Small Business,Small Business +475731,Small Business,Small Business +475728,Small Business,Small Business +475726,Small Business,Small Business +473570,Small Business,Small Business +473568,Small Business,Small Business +473566,Small Business,Small Business +473564,Small Business,Small Business +473560,Small Business,Small Business +473555,Small Business,Small Business +473552,Small Business,Small Business +473550,Small Business,Small Business +470959,Small Business,Small Business +470948,Small Business,Small Business +463014,Small Business,Small Business +446458,Small Business,Small Business +446456,Small Business,Small Business +439098,Small Business,Small Business +439096,Small Business,Small Business +439079,Small Business,Small Business +422273,Small Business,Small Business +413441,Small Business,Small Business +413433,Small Business,Small Business +413431,Small Business,Small Business +413418,Small Business,Small Business +413414,Small Business,Small Business +413406,Small Business,Small Business +413405,Small Business,Small Business +413403,Small Business,Small Business +413374,Small Business,Small Business +413370,Small Business,Small Business +413366,Small Business,Small Business +413335,Small Business,Small Business +413325,Small Business,Small Business +413322,Small Business,Small Business +413316,Small Business,Small Business +413312,Small Business,Small Business +413310,Small Business,Small Business +413305,Small Business,Small Business +413302,Small Business,Small Business +413194,Small Business,Small Business +413172,Small Business,Small Business +413162,Small Business,Small Business +408035,Small Business,Small Business +408032,Small Business,Small Business +394108,Small Business,Small Business +541710,Small Business,Small Business +534450,Small Business,Small Business +530923,Small Business,Small Business +529194,Small Business,Small Business +529188,Small Business,Small Business +529179,Small Business,Small Business +525703,Small Business,Small Business +525696,Small Business,Small Business +525686,Small Business,Small Business +521547,Small Business,Small Business +520834,Small Business,Small Business +519697,Small Business,Small Business +519687,Small Business,Small Business +517549,Small Business,Small Business +517548,Small Business,Small Business +517547,Small Business,Small Business +517541,Small Business,Small Business +517537,Small Business,Small Business +515527,Small Business,Small Business +515526,Small Business,Small Business +514100,Small Business,Small Business +514098,Small Business,Small Business +512856,Small Business,Small Business +512848,Small Business,Small Business +512844,Small Business,Small Business +510603,Small Business,Small Business +510602,Small Business,Small Business +508447,Small Business,Small Business +508445,Small Business,Small Business +508444,Small Business,Small Business +508441,Small Business,Small Business +508439,Small Business,Small Business +508430,Small Business,Small Business +505037,Small Business,Small Business +505034,Small Business,Small Business +505032,Small Business,Small Business +505020,Small Business,Small Business +505019,Small Business,Small Business +505016,Small Business,Small Business +505011,Small Business,Small Business +505008,Small Business,Small Business +504994,Small Business,Small Business +504991,Small Business,Small Business +504988,Small Business,Small Business +504973,Small Business,Small Business +504967,Small Business,Small Business +504956,Small Business,Small Business +504943,Small Business,Small Business +501856,Small Business,Small Business +501854,Small Business,Small Business +501853,Small Business,Small Business +501843,Small Business,Small Business +501837,Small Business,Small Business +501834,Small Business,Small Business +501832,Small Business,Small Business +501823,Small Business,Small Business +501820,Small Business,Small Business +501800,Small Business,Small Business +501792,Small Business,Small Business +501788,Small Business,Small Business +501784,Small Business,Small Business +501781,Small Business,Small Business +501777,Small Business,Small Business +499364,Small Business,Small Business +499078,Small Business,Small Business +499072,Small Business,Small Business +499067,Small Business,Small Business +499065,Small Business,Small Business +499060,Small Business,Small Business +499054,Small Business,Small Business +499052,Small Business,Small Business +499047,Small Business,Small Business +499041,Small Business,Small Business +499039,Small Business,Small Business +499038,Small Business,Small Business +499036,Small Business,Small Business +495598,Small Business,Small Business +495597,Small Business,Small Business +495596,Small Business,Small Business +495595,Small Business,Small Business +495594,Small Business,Small Business +495593,Small Business,Small Business +493233,Small Business,Small Business +493231,Small Business,Small Business +493229,Small Business,Small Business +493227,Small Business,Small Business +493222,Small Business,Small Business +493220,Small Business,Small Business +493215,Small Business,Small Business +493213,Small Business,Small Business +493212,Small Business,Small Business +501837,Taxation and Finance,Taxation and Finance +501834,Taxation and Finance,Taxation and Finance +120554,Taxation and Finance,Taxation and Finance +120514,Taxation and Finance,Taxation and Finance +118114,Taxation and Finance,Taxation and Finance +94143,Taxation and Finance,Taxation and Finance +90376,Taxation and Finance,Taxation and Finance +90375,Taxation and Finance,Taxation and Finance +90372,Taxation and Finance,Taxation and Finance +193395,Taxation and Finance,Taxation and Finance +193393,Taxation and Finance,Taxation and Finance +193392,Taxation and Finance,Taxation and Finance +193384,Taxation and Finance,Taxation and Finance +193383,Taxation and Finance,Taxation and Finance +193382,Taxation and Finance,Taxation and Finance +193381,Taxation and Finance,Taxation and Finance +193379,Taxation and Finance,Taxation and Finance +193378,Taxation and Finance,Taxation and Finance +193377,Taxation and Finance,Taxation and Finance +193376,Taxation and Finance,Taxation and Finance +193374,Taxation and Finance,Taxation and Finance +193373,Taxation and Finance,Taxation and Finance +193372,Taxation and Finance,Taxation and Finance +193371,Taxation and Finance,Taxation and Finance +193370,Taxation and Finance,Taxation and Finance +189688,Taxation and Finance,Taxation and Finance +185684,Taxation and Finance,Taxation and Finance +170425,Taxation and Finance,Taxation and Finance +159302,Taxation and Finance,Taxation and Finance +157017,Taxation and Finance,Taxation and Finance +151936,Taxation and Finance,Taxation and Finance +150240,Taxation and Finance,Taxation and Finance +150227,Taxation and Finance,Taxation and Finance +132427,Taxation and Finance,Taxation and Finance +129034,Taxation and Finance,Taxation and Finance +129017,Taxation and Finance,Taxation and Finance +337871,Taxation and Finance,Taxation and Finance +337870,Taxation and Finance,Taxation and Finance +337868,Taxation and Finance,Taxation and Finance +337867,Taxation and Finance,Taxation and Finance +337866,Taxation and Finance,Taxation and Finance +337865,Taxation and Finance,Taxation and Finance +337863,Taxation and Finance,Taxation and Finance +337861,Taxation and Finance,Taxation and Finance +337859,Taxation and Finance,Taxation and Finance +337858,Taxation and Finance,Taxation and Finance +337857,Taxation and Finance,Taxation and Finance +337856,Taxation and Finance,Taxation and Finance +337855,Taxation and Finance,Taxation and Finance +335958,Taxation and Finance,Taxation and Finance +335951,Taxation and Finance,Taxation and Finance +327678,Taxation and Finance,Taxation and Finance +318955,Taxation and Finance,Taxation and Finance +309934,Taxation and Finance,Taxation and Finance +290252,Taxation and Finance,Taxation and Finance +264049,Taxation and Finance,Taxation and Finance +250667,Taxation and Finance,Taxation and Finance +245529,Taxation and Finance,Taxation and Finance +245445,Taxation and Finance,Taxation and Finance +245440,Taxation and Finance,Taxation and Finance +245438,Taxation and Finance,Taxation and Finance +245432,Taxation and Finance,Taxation and Finance +245429,Taxation and Finance,Taxation and Finance +245422,Taxation and Finance,Taxation and Finance +245421,Taxation and Finance,Taxation and Finance +245415,Taxation and Finance,Taxation and Finance +245407,Taxation and Finance,Taxation and Finance +245405,Taxation and Finance,Taxation and Finance +245404,Taxation and Finance,Taxation and Finance +245090,Taxation and Finance,Taxation and Finance +245088,Taxation and Finance,Taxation and Finance +245086,Taxation and Finance,Taxation and Finance +245082,Taxation and Finance,Taxation and Finance +245081,Taxation and Finance,Taxation and Finance +245080,Taxation and Finance,Taxation and Finance +245079,Taxation and Finance,Taxation and Finance +245078,Taxation and Finance,Taxation and Finance +245077,Taxation and Finance,Taxation and Finance +245076,Taxation and Finance,Taxation and Finance +245074,Taxation and Finance,Taxation and Finance +245071,Taxation and Finance,Taxation and Finance +245070,Taxation and Finance,Taxation and Finance +245050,Taxation and Finance,Taxation and Finance +245047,Taxation and Finance,Taxation and Finance +245045,Taxation and Finance,Taxation and Finance +245042,Taxation and Finance,Taxation and Finance +245028,Taxation and Finance,Taxation and Finance +226610,Taxation and Finance,Taxation and Finance +193512,Taxation and Finance,Taxation and Finance +193496,Taxation and Finance,Taxation and Finance +193495,Taxation and Finance,Taxation and Finance +193400,Taxation and Finance,Taxation and Finance +193399,Taxation and Finance,Taxation and Finance +193396,Taxation and Finance,Taxation and Finance +413123,Taxation and Finance,Taxation and Finance +413119,Taxation and Finance,Taxation and Finance +408035,Taxation and Finance,Taxation and Finance +408032,Taxation and Finance,Taxation and Finance +406485,Taxation and Finance,Taxation and Finance +404723,Taxation and Finance,Taxation and Finance +404718,Taxation and Finance,Taxation and Finance +404717,Taxation and Finance,Taxation and Finance +404715,Taxation and Finance,Taxation and Finance +404714,Taxation and Finance,Taxation and Finance +404713,Taxation and Finance,Taxation and Finance +404712,Taxation and Finance,Taxation and Finance +404711,Taxation and Finance,Taxation and Finance +404710,Taxation and Finance,Taxation and Finance +404708,Taxation and Finance,Taxation and Finance +404707,Taxation and Finance,Taxation and Finance +404705,Taxation and Finance,Taxation and Finance +404704,Taxation and Finance,Taxation and Finance +404701,Taxation and Finance,Taxation and Finance +403501,Taxation and Finance,Taxation and Finance +403499,Taxation and Finance,Taxation and Finance +403496,Taxation and Finance,Taxation and Finance +403492,Taxation and Finance,Taxation and Finance +403481,Taxation and Finance,Taxation and Finance +403389,Taxation and Finance,Taxation and Finance +403388,Taxation and Finance,Taxation and Finance +403387,Taxation and Finance,Taxation and Finance +403386,Taxation and Finance,Taxation and Finance +403385,Taxation and Finance,Taxation and Finance +403384,Taxation and Finance,Taxation and Finance +403383,Taxation and Finance,Taxation and Finance +403382,Taxation and Finance,Taxation and Finance +403380,Taxation and Finance,Taxation and Finance +403378,Taxation and Finance,Taxation and Finance +403377,Taxation and Finance,Taxation and Finance +396731,Taxation and Finance,Taxation and Finance +387430,Taxation and Finance,Taxation and Finance +385773,Taxation and Finance,Taxation and Finance +385772,Taxation and Finance,Taxation and Finance +385771,Taxation and Finance,Taxation and Finance +385770,Taxation and Finance,Taxation and Finance +385769,Taxation and Finance,Taxation and Finance +385768,Taxation and Finance,Taxation and Finance +385767,Taxation and Finance,Taxation and Finance +385766,Taxation and Finance,Taxation and Finance +385765,Taxation and Finance,Taxation and Finance +385764,Taxation and Finance,Taxation and Finance +383675,Taxation and Finance,Taxation and Finance +383546,Taxation and Finance,Taxation and Finance +383545,Taxation and Finance,Taxation and Finance +383543,Taxation and Finance,Taxation and Finance +383540,Taxation and Finance,Taxation and Finance +383539,Taxation and Finance,Taxation and Finance +383537,Taxation and Finance,Taxation and Finance +382847,Taxation and Finance,Taxation and Finance +381199,Taxation and Finance,Taxation and Finance +381198,Taxation and Finance,Taxation and Finance +381196,Taxation and Finance,Taxation and Finance +381195,Taxation and Finance,Taxation and Finance +381193,Taxation and Finance,Taxation and Finance +381188,Taxation and Finance,Taxation and Finance +381181,Taxation and Finance,Taxation and Finance +381179,Taxation and Finance,Taxation and Finance +381178,Taxation and Finance,Taxation and Finance +381177,Taxation and Finance,Taxation and Finance +376946,Taxation and Finance,Taxation and Finance +376943,Taxation and Finance,Taxation and Finance +376939,Taxation and Finance,Taxation and Finance +376935,Taxation and Finance,Taxation and Finance +376931,Taxation and Finance,Taxation and Finance +376923,Taxation and Finance,Taxation and Finance +369228,Taxation and Finance,Taxation and Finance +369224,Taxation and Finance,Taxation and Finance +359809,Taxation and Finance,Taxation and Finance +359808,Taxation and Finance,Taxation and Finance +359807,Taxation and Finance,Taxation and Finance +357871,Taxation and Finance,Taxation and Finance +357870,Taxation and Finance,Taxation and Finance +355890,Taxation and Finance,Taxation and Finance +337900,Taxation and Finance,Taxation and Finance +337885,Taxation and Finance,Taxation and Finance +337883,Taxation and Finance,Taxation and Finance +337878,Taxation and Finance,Taxation and Finance +337876,Taxation and Finance,Taxation and Finance +337875,Taxation and Finance,Taxation and Finance +337874,Taxation and Finance,Taxation and Finance +337873,Taxation and Finance,Taxation and Finance +337872,Taxation and Finance,Taxation and Finance +501832,Taxation and Finance,Taxation and Finance +501828,Taxation and Finance,Taxation and Finance +501823,Taxation and Finance,Taxation and Finance +501820,Taxation and Finance,Taxation and Finance +501800,Taxation and Finance,Taxation and Finance +501792,Taxation and Finance,Taxation and Finance +501788,Taxation and Finance,Taxation and Finance +501784,Taxation and Finance,Taxation and Finance +501781,Taxation and Finance,Taxation and Finance +501777,Taxation and Finance,Taxation and Finance +499364,Taxation and Finance,Taxation and Finance +499078,Taxation and Finance,Taxation and Finance +499072,Taxation and Finance,Taxation and Finance +499067,Taxation and Finance,Taxation and Finance +499065,Taxation and Finance,Taxation and Finance +499060,Taxation and Finance,Taxation and Finance +499054,Taxation and Finance,Taxation and Finance +499052,Taxation and Finance,Taxation and Finance +499047,Taxation and Finance,Taxation and Finance +499041,Taxation and Finance,Taxation and Finance +499039,Taxation and Finance,Taxation and Finance +499038,Taxation and Finance,Taxation and Finance +499036,Taxation and Finance,Taxation and Finance +495598,Taxation and Finance,Taxation and Finance +495597,Taxation and Finance,Taxation and Finance +495596,Taxation and Finance,Taxation and Finance +495595,Taxation and Finance,Taxation and Finance +495594,Taxation and Finance,Taxation and Finance +495593,Taxation and Finance,Taxation and Finance +493233,Taxation and Finance,Taxation and Finance +493231,Taxation and Finance,Taxation and Finance +493229,Taxation and Finance,Taxation and Finance +493227,Taxation and Finance,Taxation and Finance +493222,Taxation and Finance,Taxation and Finance +493220,Taxation and Finance,Taxation and Finance +493215,Taxation and Finance,Taxation and Finance +493213,Taxation and Finance,Taxation and Finance +493212,Taxation and Finance,Taxation and Finance +493211,Taxation and Finance,Taxation and Finance +493209,Taxation and Finance,Taxation and Finance +493208,Taxation and Finance,Taxation and Finance +490522,Taxation and Finance,Taxation and Finance +490519,Taxation and Finance,Taxation and Finance +490518,Taxation and Finance,Taxation and Finance +490516,Taxation and Finance,Taxation and Finance +490514,Taxation and Finance,Taxation and Finance +490513,Taxation and Finance,Taxation and Finance +490510,Taxation and Finance,Taxation and Finance +487424,Taxation and Finance,Taxation and Finance +487420,Taxation and Finance,Taxation and Finance +484847,Taxation and Finance,Taxation and Finance +484845,Taxation and Finance,Taxation and Finance +484843,Taxation and Finance,Taxation and Finance +477796,Taxation and Finance,Taxation and Finance +477790,Taxation and Finance,Taxation and Finance +477788,Taxation and Finance,Taxation and Finance +463014,Taxation and Finance,Taxation and Finance +439229,Taxation and Finance,Taxation and Finance +439227,Taxation and Finance,Taxation and Finance +439225,Taxation and Finance,Taxation and Finance +439222,Taxation and Finance,Taxation and Finance +439218,Taxation and Finance,Taxation and Finance +439216,Taxation and Finance,Taxation and Finance +439206,Taxation and Finance,Taxation and Finance +439203,Taxation and Finance,Taxation and Finance +439191,Taxation and Finance,Taxation and Finance +439188,Taxation and Finance,Taxation and Finance +439154,Taxation and Finance,Taxation and Finance +439151,Taxation and Finance,Taxation and Finance +439145,Taxation and Finance,Taxation and Finance +439144,Taxation and Finance,Taxation and Finance +439125,Taxation and Finance,Taxation and Finance +439122,Taxation and Finance,Taxation and Finance +439105,Taxation and Finance,Taxation and Finance +439100,Taxation and Finance,Taxation and Finance +439092,Taxation and Finance,Taxation and Finance +439086,Taxation and Finance,Taxation and Finance +428102,Taxation and Finance,Taxation and Finance +422273,Taxation and Finance,Taxation and Finance +415381,Taxation and Finance,Taxation and Finance +415379,Taxation and Finance,Taxation and Finance +413441,Taxation and Finance,Taxation and Finance +413433,Taxation and Finance,Taxation and Finance +413431,Taxation and Finance,Taxation and Finance +413418,Taxation and Finance,Taxation and Finance +413414,Taxation and Finance,Taxation and Finance +413406,Taxation and Finance,Taxation and Finance +413405,Taxation and Finance,Taxation and Finance +413403,Taxation and Finance,Taxation and Finance +413374,Taxation and Finance,Taxation and Finance +413370,Taxation and Finance,Taxation and Finance +413366,Taxation and Finance,Taxation and Finance +413335,Taxation and Finance,Taxation and Finance +413325,Taxation and Finance,Taxation and Finance +413322,Taxation and Finance,Taxation and Finance +413316,Taxation and Finance,Taxation and Finance +413312,Taxation and Finance,Taxation and Finance +413310,Taxation and Finance,Taxation and Finance +413305,Taxation and Finance,Taxation and Finance +413302,Taxation and Finance,Taxation and Finance +413194,Taxation and Finance,Taxation and Finance +413172,Taxation and Finance,Taxation and Finance +413162,Taxation and Finance,Taxation and Finance +413139,Taxation and Finance,Taxation and Finance +541710,Taxation and Finance,Taxation and Finance +539225,Taxation and Finance,Taxation and Finance +539223,Taxation and Finance,Taxation and Finance +534450,Taxation and Finance,Taxation and Finance +534449,Taxation and Finance,Taxation and Finance +534446,Taxation and Finance,Taxation and Finance +530923,Taxation and Finance,Taxation and Finance +529194,Taxation and Finance,Taxation and Finance +525703,Taxation and Finance,Taxation and Finance +525696,Taxation and Finance,Taxation and Finance +521547,Taxation and Finance,Taxation and Finance +520834,Taxation and Finance,Taxation and Finance +519702,Taxation and Finance,Taxation and Finance +519701,Taxation and Finance,Taxation and Finance +519697,Taxation and Finance,Taxation and Finance +519695,Taxation and Finance,Taxation and Finance +519687,Taxation and Finance,Taxation and Finance +517551,Taxation and Finance,Taxation and Finance +517549,Taxation and Finance,Taxation and Finance +517548,Taxation and Finance,Taxation and Finance +517547,Taxation and Finance,Taxation and Finance +517541,Taxation and Finance,Taxation and Finance +517537,Taxation and Finance,Taxation and Finance +515527,Taxation and Finance,Taxation and Finance +515526,Taxation and Finance,Taxation and Finance +514100,Taxation and Finance,Taxation and Finance +514099,Taxation and Finance,Taxation and Finance +514098,Taxation and Finance,Taxation and Finance +512889,Taxation and Finance,Taxation and Finance +512876,Taxation and Finance,Taxation and Finance +512856,Taxation and Finance,Taxation and Finance +512848,Taxation and Finance,Taxation and Finance +512844,Taxation and Finance,Taxation and Finance +510603,Taxation and Finance,Taxation and Finance +510600,Taxation and Finance,Taxation and Finance +508447,Taxation and Finance,Taxation and Finance +508445,Taxation and Finance,Taxation and Finance +508444,Taxation and Finance,Taxation and Finance +508439,Taxation and Finance,Taxation and Finance +508430,Taxation and Finance,Taxation and Finance +505037,Taxation and Finance,Taxation and Finance +505034,Taxation and Finance,Taxation and Finance +505032,Taxation and Finance,Taxation and Finance +505019,Taxation and Finance,Taxation and Finance +505016,Taxation and Finance,Taxation and Finance +505013,Taxation and Finance,Taxation and Finance +505011,Taxation and Finance,Taxation and Finance +505008,Taxation and Finance,Taxation and Finance +504994,Taxation and Finance,Taxation and Finance +504988,Taxation and Finance,Taxation and Finance +504973,Taxation and Finance,Taxation and Finance +504967,Taxation and Finance,Taxation and Finance +504956,Taxation and Finance,Taxation and Finance +504943,Taxation and Finance,Taxation and Finance +501854,Taxation and Finance,Taxation and Finance +501853,Taxation and Finance,Taxation and Finance +470948,Tourism,Tourism +470542,Tourism,Tourism +132427,Tourism,Tourism +245082,Tourism,Tourism +245071,Tourism,Tourism +199622,Tourism,Tourism +193512,Tourism,Tourism +193399,Tourism,Tourism +193393,Tourism,Tourism +193379,Tourism,Tourism +193377,Tourism,Tourism +193376,Tourism,Tourism +193374,Tourism,Tourism +193373,Tourism,Tourism +150240,Tourism,Tourism +150227,Tourism,Tourism +446463,Tourism,Tourism +446458,Tourism,Tourism +446456,Tourism,Tourism +419910,Tourism,Tourism +419909,Tourism,Tourism +415381,Tourism,Tourism +539228,Tourism,Tourism +539224,Tourism,Tourism +534446,Tourism,Tourism +534444,Tourism,Tourism +530925,Tourism,Tourism +530922,Tourism,Tourism +529199,Tourism,Tourism +529192,Tourism,Tourism +529188,Tourism,Tourism +529183,Tourism,Tourism +517549,Tourism,Tourism +517537,Tourism,Tourism +517535,Tourism,Tourism +514097,Tourism,Tourism +512889,Tourism,Tourism +512876,Tourism,Tourism +510602,Tourism,Tourism +510595,Tourism,Tourism +508445,Tourism,Tourism +508439,Tourism,Tourism +505037,Tourism,Tourism +505034,Tourism,Tourism +504973,Tourism,Tourism +501854,Tourism,Tourism +501837,Tourism,Tourism +501834,Tourism,Tourism +501832,Tourism,Tourism +501828,Tourism,Tourism +501788,Tourism,Tourism +501777,Tourism,Tourism +499072,Tourism,Tourism +499065,Tourism,Tourism +499052,Tourism,Tourism +499038,Tourism,Tourism +484849,Tourism,Tourism +482153,Tourism,Tourism +480011,Tourism,Tourism +477800,Tourism,Tourism +475728,Tourism,Tourism +475726,Tourism,Tourism +473570,Tourism,Tourism +473568,Tourism,Tourism +416713,International Relations,International Relations +416711,International Relations,International Relations +124886,International Relations,International Relations +141816,International Relations,International Relations +141814,International Relations,International Relations +186024,International Relations,International Relations +167970,International Relations,International Relations +167964,International Relations,International Relations +248171,International Relations,International Relations +247831,International Relations,International Relations +229271,International Relations,International Relations +389189,International Relations,International Relations +386735,International Relations,International Relations +423614,International Relations,International Relations +423613,International Relations,International Relations +416722,International Relations,International Relations +423613,Tourism,Tourism +421967,Tourism,Tourism +216068,Tourism,Tourism +210487,Tourism,Tourism +186024,Tourism,Tourism +141816,Tourism,Tourism +141814,Tourism,Tourism +124886,Tourism,Tourism +288611,Tourism,Tourism +248171,Tourism,Tourism +237309,Tourism,Tourism +229271,Tourism,Tourism +416722,Tourism,Tourism +416716,Tourism,Tourism +416713,Tourism,Tourism +416711,Tourism,Tourism +399615,Tourism,Tourism +416713,Transportation,Transportation +416711,Transportation,Transportation +86474,Transportation,Transportation +84818,Transportation,Transportation +78656,Transportation,Transportation +169584,Transportation,Transportation +167970,Transportation,Transportation +167964,Transportation,Transportation +165460,Transportation,Transportation +141816,Transportation,Transportation +141815,Transportation,Transportation +141814,Transportation,Transportation +109205,Transportation,Transportation +399615,Transportation,Transportation +399612,Transportation,Transportation +399610,Transportation,Transportation +399551,Transportation,Transportation +399550,Transportation,Transportation +393195,Transportation,Transportation +393191,Transportation,Transportation +392218,Transportation,Transportation +392217,Transportation,Transportation +389189,Transportation,Transportation +386735,Transportation,Transportation +288611,Transportation,Transportation +275555,Transportation,Transportation +248171,Transportation,Transportation +247831,Transportation,Transportation +237309,Transportation,Transportation +229271,Transportation,Transportation +216068,Transportation,Transportation +210487,Transportation,Transportation +188444,Transportation,Transportation +186024,Transportation,Transportation +423614,Transportation,Transportation +423613,Transportation,Transportation +421967,Transportation,Transportation +416722,Transportation,Transportation +539612,Health,Health +537416,Health,Health +156676,Health,Health +154615,Health,Health +154614,Health,Health +154610,Health,Health +154607,Health,Health +180606,Health,Health +180605,Health,Health +164002,Health,Health +163996,Health,Health +163992,Health,Health +373042,Health,Health +367624,Health,Health +367551,Health,Health +355483,Health,Health +355482,Health,Health +355481,Health,Health +355480,Health,Health +355478,Health,Health +355477,Health,Health +355476,Health,Health +355473,Health,Health +355467,Health,Health +355464,Health,Health +355462,Health,Health +355459,Health,Health +355451,Health,Health +355448,Health,Health +355446,Health,Health +355444,Health,Health +355442,Health,Health +355439,Health,Health +355437,Health,Health +355434,Health,Health +355431,Health,Health +355430,Health,Health +355428,Health,Health +348058,Health,Health +347957,Health,Health +347956,Health,Health +347955,Health,Health +347953,Health,Health +347952,Health,Health +347951,Health,Health +347950,Health,Health +347949,Health,Health +347948,Health,Health +347947,Health,Health +347946,Health,Health +347945,Health,Health +347944,Health,Health +347943,Health,Health +347942,Health,Health +347941,Health,Health +347940,Health,Health +324087,Health,Health +324086,Health,Health +324085,Health,Health +324083,Health,Health +324081,Health,Health +324079,Health,Health +324078,Health,Health +437846,Health,Health +437841,Health,Health +437441,Health,Health +437434,Health,Health +437433,Health,Health +434579,Health,Health +434577,Health,Health +434575,Health,Health +434571,Health,Health +433187,Health,Health +432153,Health,Health +430168,Health,Health +430167,Health,Health +427569,Health,Health +427568,Health,Health +427567,Health,Health +427566,Health,Health +427563,Health,Health +427561,Health,Health +427558,Health,Health +427557,Health,Health +425276,Health,Health +425275,Health,Health +425274,Health,Health +425270,Health,Health +423282,Health,Health +423205,Health,Health +423204,Health,Health +423203,Health,Health +423202,Health,Health +423107,Health,Health +423106,Health,Health +423105,Health,Health +423104,Health,Health +418842,Health,Health +417513,Health,Health +414455,Health,Health +414451,Health,Health +414450,Health,Health +414449,Health,Health +414448,Health,Health +414445,Health,Health +414390,Health,Health +414388,Health,Health +414385,Health,Health +414383,Health,Health +414380,Health,Health +414375,Health,Health +414374,Health,Health +414373,Health,Health +414372,Health,Health +414371,Health,Health +414370,Health,Health +414369,Health,Health +414367,Health,Health +414366,Health,Health +414365,Health,Health +411239,Health,Health +411237,Health,Health +411235,Health,Health +411233,Health,Health +411232,Health,Health +411224,Health,Health +411222,Health,Health +411221,Health,Health +408768,Health,Health +408753,Health,Health +408752,Health,Health +408751,Health,Health +408750,Health,Health +408749,Health,Health +407298,Health,Health +407296,Health,Health +407294,Health,Health +407293,Health,Health +406327,Health,Health +406326,Health,Health +406325,Health,Health +404558,Health,Health +404556,Health,Health +402194,Health,Health +402190,Health,Health +402189,Health,Health +402187,Health,Health +395395,Health,Health +395383,Health,Health +395375,Health,Health +386984,Health,Health +386453,Health,Health +379224,Health,Health +375372,Health,Health +375371,Health,Health +373204,Health,Health +533811,Health,Health +528656,Health,Health +528655,Health,Health +522337,Health,Health +522327,Health,Health +515093,Health,Health +514443,Health,Health +513708,Health,Health +513707,Health,Health +513706,Health,Health +511940,Health,Health +510215,Health,Health +510214,Health,Health +507445,Health,Health +507436,Health,Health +507242,Health,Health +507240,Health,Health +504140,Health,Health +504137,Health,Health +504136,Health,Health +504135,Health,Health +501445,Health,Health +501443,Health,Health +498344,Health,Health +498341,Health,Health +498337,Health,Health +498335,Health,Health +498332,Health,Health +498330,Health,Health +498327,Health,Health +498326,Health,Health +498324,Health,Health +498320,Health,Health +498319,Health,Health +498318,Health,Health +498317,Health,Health +498316,Health,Health +498315,Health,Health +498313,Health,Health +498312,Health,Health +498311,Health,Health +498310,Health,Health +498309,Health,Health +498304,Health,Health +498302,Health,Health +498298,Health,Health +498287,Health,Health +498286,Health,Health +498284,Health,Health +498278,Health,Health +498276,Health,Health +498274,Health,Health +498272,Health,Health +498271,Health,Health +498269,Health,Health +498267,Health,Health +498266,Health,Health +498264,Health,Health +498262,Health,Health +498261,Health,Health +498260,Health,Health +498259,Health,Health +498258,Health,Health +498257,Health,Health +498255,Health,Health +498254,Health,Health +498252,Health,Health +498251,Health,Health +498249,Health,Health +498246,Health,Health +498245,Health,Health +497759,Health,Health +497758,Health,Health +497679,Health,Health +497668,Health,Health +495497,Health,Health +494966,Health,Health +493126,Health,Health +492702,Health,Health +492649,Health,Health +488942,Health,Health +486440,Health,Health +486168,Health,Health +485750,Health,Health +485542,Health,Health +482950,Health,Health +482760,Health,Health +480852,Health,Health +480851,Health,Health +478822,Health,Health +478821,Health,Health +478820,Health,Health +478819,Health,Health +476262,Health,Health +474234,Health,Health +474181,Health,Health +474178,Health,Health +474177,Health,Health +466677,Health,Health +466676,Health,Health +466675,Health,Health +464274,Health,Health +464008,Health,Health +464002,Health,Health +463679,Health,Health +463668,Health,Health +463666,Health,Health +463665,Health,Health +463465,Health,Health +462272,Health,Health +461068,Health,Health +461067,Health,Health +460915,Health,Health +460913,Health,Health +460911,Health,Health +456784,Health,Health +454182,Health,Health +454178,Health,Health +454177,Health,Health +454175,Health,Health +454173,Health,Health +454170,Health,Health +451223,Health,Health +451218,Health,Health +451217,Health,Health +451216,Health,Health +448918,Health,Health +446377,Health,Health +446371,Health,Health +444478,Health,Health +444028,Health,Health +444026,Health,Health +444025,Health,Health +444024,Health,Health +443125,Health,Health +443043,Health,Health +440309,Health,Health +440301,Health,Health +440293,Health,Health +440292,Health,Health +440291,Health,Health +440290,Health,Health +440289,Health,Health +440288,Health,Health +440287,Health,Health +440286,Health,Health +440284,Health,Health +440283,Health,Health +440282,Health,Health +440281,Health,Health +440279,Health,Health +440277,Health,Health +440276,Health,Health +440275,Health,Health +440274,Health,Health +440273,Health,Health +440272,Health,Health +440270,Health,Health +543287,Health,Health +381080,Intellectual Property,Intellectual Property +381078,Intellectual Property,Intellectual Property +167692,Intellectual Property,Intellectual Property +167690,Intellectual Property,Intellectual Property +379271,Intellectual Property,Intellectual Property +379268,Intellectual Property,Intellectual Property +375677,Intellectual Property,Intellectual Property +375672,Intellectual Property,Intellectual Property +373704,Intellectual Property,Intellectual Property +362763,Intellectual Property,Intellectual Property +350827,Intellectual Property,Intellectual Property +350825,Intellectual Property,Intellectual Property +350821,Intellectual Property,Intellectual Property +350817,Intellectual Property,Intellectual Property +343819,Intellectual Property,Intellectual Property +430129,Intellectual Property,Intellectual Property +415349,Intellectual Property,Intellectual Property +415345,Intellectual Property,Intellectual Property +415342,Intellectual Property,Intellectual Property +407450,Intellectual Property,Intellectual Property +402867,Intellectual Property,Intellectual Property +402860,Intellectual Property,Intellectual Property +398841,Intellectual Property,Intellectual Property +381092,Intellectual Property,Intellectual Property +381090,Intellectual Property,Intellectual Property +109642,Health,Health +156975,Health,Health +73734,Health,Health +116348,Health,Health +226553,Health,Health +116351,Health,Health +116350,Health,Health +116349,Industry,Industry +116348,Industry,Industry +116351,Industry,Industry +456418,Agriculture,Agriculture +456403,Agriculture,Agriculture +94654,Agriculture,Agriculture +83036,Agriculture,Agriculture +117539,Agriculture,Agriculture +103194,Agriculture,Agriculture +99696,Agriculture,Agriculture +162553,Agriculture,Agriculture +162531,Agriculture,Agriculture +162014,Agriculture,Agriculture +162012,Agriculture,Agriculture +162010,Agriculture,Agriculture +161418,Agriculture,Agriculture +161417,Agriculture,Agriculture +161416,Agriculture,Agriculture +161415,Agriculture,Agriculture +161410,Agriculture,Agriculture +161198,Agriculture,Agriculture +161137,Agriculture,Agriculture +160773,Agriculture,Agriculture +157991,Agriculture,Agriculture +157989,Agriculture,Agriculture +148664,Agriculture,Agriculture +148663,Agriculture,Agriculture +147701,Agriculture,Agriculture +147700,Agriculture,Agriculture +141794,Agriculture,Agriculture +141654,Agriculture,Agriculture +141636,Agriculture,Agriculture +141635,Agriculture,Agriculture +138454,Agriculture,Agriculture +132498,Agriculture,Agriculture +132493,Agriculture,Agriculture +132491,Agriculture,Agriculture +132453,Agriculture,Agriculture +125061,Agriculture,Agriculture +117554,Agriculture,Agriculture +365141,Agriculture,Agriculture +364623,Agriculture,Agriculture +354982,Agriculture,Agriculture +354981,Agriculture,Agriculture +354980,Agriculture,Agriculture +334316,Agriculture,Agriculture +309759,Agriculture,Agriculture +309757,Agriculture,Agriculture +308334,Agriculture,Agriculture +308332,Agriculture,Agriculture +308331,Agriculture,Agriculture +308330,Agriculture,Agriculture +308329,Agriculture,Agriculture +308310,Agriculture,Agriculture +308309,Agriculture,Agriculture +308290,Agriculture,Agriculture +308289,Agriculture,Agriculture +263495,Agriculture,Agriculture +263492,Agriculture,Agriculture +261170,Agriculture,Agriculture +261169,Agriculture,Agriculture +252235,Agriculture,Agriculture +252234,Agriculture,Agriculture +252233,Agriculture,Agriculture +252232,Agriculture,Agriculture +252230,Agriculture,Agriculture +252229,Agriculture,Agriculture +251895,Agriculture,Agriculture +251894,Agriculture,Agriculture +251893,Agriculture,Agriculture +251892,Agriculture,Agriculture +251891,Agriculture,Agriculture +251889,Agriculture,Agriculture +244231,Agriculture,Agriculture +240249,Agriculture,Agriculture +227067,Agriculture,Agriculture +214587,Agriculture,Agriculture +201687,Agriculture,Agriculture +192049,Agriculture,Agriculture +174734,Agriculture,Agriculture +174732,Agriculture,Agriculture +174731,Agriculture,Agriculture +174730,Agriculture,Agriculture +174729,Agriculture,Agriculture +174728,Agriculture,Agriculture +174727,Agriculture,Agriculture +174726,Agriculture,Agriculture +174725,Agriculture,Agriculture +174724,Agriculture,Agriculture +174723,Agriculture,Agriculture +169887,Agriculture,Agriculture +169885,Agriculture,Agriculture +454599,Agriculture,Agriculture +454197,Agriculture,Agriculture +454196,Agriculture,Agriculture +454194,Agriculture,Agriculture +454192,Agriculture,Agriculture +454184,Agriculture,Agriculture +454169,Agriculture,Agriculture +454168,Agriculture,Agriculture +454164,Agriculture,Agriculture +454163,Agriculture,Agriculture +454159,Agriculture,Agriculture +454152,Agriculture,Agriculture +454151,Agriculture,Agriculture +454150,Agriculture,Agriculture +454147,Agriculture,Agriculture +454142,Agriculture,Agriculture +454140,Agriculture,Agriculture +448748,Agriculture,Agriculture +440327,Agriculture,Agriculture +436432,Agriculture,Agriculture +434361,Agriculture,Agriculture +434360,Agriculture,Agriculture +429698,Agriculture,Agriculture +429692,Agriculture,Agriculture +408900,Agriculture,Agriculture +407345,Agriculture,Agriculture +406051,Agriculture,Agriculture +400201,Agriculture,Agriculture +397294,Agriculture,Agriculture +395114,Agriculture,Agriculture +395113,Agriculture,Agriculture +387498,Agriculture,Agriculture +381983,Agriculture,Agriculture +370641,Agriculture,Agriculture +544801,Agriculture,Agriculture +544513,Agriculture,Agriculture +544505,Agriculture,Agriculture +544500,Agriculture,Agriculture +542827,Agriculture,Agriculture +542485,Agriculture,Agriculture +542420,Agriculture,Agriculture +542261,Agriculture,Agriculture +540019,Agriculture,Agriculture +539957,Agriculture,Agriculture +538805,Agriculture,Agriculture +536348,Agriculture,Agriculture +536346,Agriculture,Agriculture +536345,Agriculture,Agriculture +533335,Agriculture,Agriculture +533294,Agriculture,Agriculture +532961,Agriculture,Agriculture +532959,Agriculture,Agriculture +532958,Agriculture,Agriculture +532952,Agriculture,Agriculture +532918,Agriculture,Agriculture +532917,Agriculture,Agriculture +532916,Agriculture,Agriculture +532915,Agriculture,Agriculture +532914,Agriculture,Agriculture +532913,Agriculture,Agriculture +532912,Agriculture,Agriculture +532911,Agriculture,Agriculture +532910,Agriculture,Agriculture +532909,Agriculture,Agriculture +532908,Agriculture,Agriculture +532907,Agriculture,Agriculture +532906,Agriculture,Agriculture +532905,Agriculture,Agriculture +532904,Agriculture,Agriculture +532903,Agriculture,Agriculture +532902,Agriculture,Agriculture +532901,Agriculture,Agriculture +532602,Agriculture,Agriculture +530775,Agriculture,Agriculture +530660,Agriculture,Agriculture +530659,Agriculture,Agriculture +528308,Agriculture,Agriculture +527837,Agriculture,Agriculture +527626,Agriculture,Agriculture +527625,Agriculture,Agriculture +527624,Agriculture,Agriculture +527167,Agriculture,Agriculture +523433,Agriculture,Agriculture +521146,Agriculture,Agriculture +520998,Agriculture,Agriculture +520476,Agriculture,Agriculture +520401,Agriculture,Agriculture +519214,Agriculture,Agriculture +517570,Agriculture,Agriculture +517341,Agriculture,Agriculture +516098,Agriculture,Agriculture +514154,Agriculture,Agriculture +512687,Agriculture,Agriculture +512683,Agriculture,Agriculture +512497,Agriculture,Agriculture +512495,Agriculture,Agriculture +512494,Agriculture,Agriculture +512493,Agriculture,Agriculture +510597,Agriculture,Agriculture +510592,Agriculture,Agriculture +508824,Agriculture,Agriculture +508816,Agriculture,Agriculture +508813,Agriculture,Agriculture +508805,Agriculture,Agriculture +508784,Agriculture,Agriculture +508771,Agriculture,Agriculture +508734,Agriculture,Agriculture +505833,Agriculture,Agriculture +505832,Agriculture,Agriculture +505830,Agriculture,Agriculture +505828,Agriculture,Agriculture +505827,Agriculture,Agriculture +505826,Agriculture,Agriculture +505824,Agriculture,Agriculture +505822,Agriculture,Agriculture +505821,Agriculture,Agriculture +505820,Agriculture,Agriculture +505819,Agriculture,Agriculture +505817,Agriculture,Agriculture +505816,Agriculture,Agriculture +505815,Agriculture,Agriculture +505814,Agriculture,Agriculture +505813,Agriculture,Agriculture +505810,Agriculture,Agriculture +505805,Agriculture,Agriculture +505803,Agriculture,Agriculture +505800,Agriculture,Agriculture +505797,Agriculture,Agriculture +505795,Agriculture,Agriculture +505793,Agriculture,Agriculture +505658,Agriculture,Agriculture +505657,Agriculture,Agriculture +505656,Agriculture,Agriculture +505535,Agriculture,Agriculture +505534,Agriculture,Agriculture +505533,Agriculture,Agriculture +505531,Agriculture,Agriculture +505530,Agriculture,Agriculture +505528,Agriculture,Agriculture +502348,Agriculture,Agriculture +502346,Agriculture,Agriculture +499037,Agriculture,Agriculture +499034,Agriculture,Agriculture +493523,Agriculture,Agriculture +492587,Agriculture,Agriculture +492586,Agriculture,Agriculture +491840,Agriculture,Agriculture +491837,Agriculture,Agriculture +491836,Agriculture,Agriculture +491835,Agriculture,Agriculture +491834,Agriculture,Agriculture +491833,Agriculture,Agriculture +491832,Agriculture,Agriculture +491831,Agriculture,Agriculture +491830,Agriculture,Agriculture +491829,Agriculture,Agriculture +491828,Agriculture,Agriculture +491827,Agriculture,Agriculture +491826,Agriculture,Agriculture +491825,Agriculture,Agriculture +491824,Agriculture,Agriculture +491823,Agriculture,Agriculture +491822,Agriculture,Agriculture +491821,Agriculture,Agriculture +491820,Agriculture,Agriculture +491819,Agriculture,Agriculture +491818,Agriculture,Agriculture +491817,Agriculture,Agriculture +491816,Agriculture,Agriculture +491815,Agriculture,Agriculture +491814,Agriculture,Agriculture +491813,Agriculture,Agriculture +491812,Agriculture,Agriculture +491808,Agriculture,Agriculture +487939,Agriculture,Agriculture +483980,Agriculture,Agriculture +483979,Agriculture,Agriculture +483978,Agriculture,Agriculture +483973,Agriculture,Agriculture +483969,Agriculture,Agriculture +483964,Agriculture,Agriculture +481773,Agriculture,Agriculture +479150,Agriculture,Agriculture +479146,Agriculture,Agriculture +479142,Agriculture,Agriculture +479132,Agriculture,Agriculture +477020,Agriculture,Agriculture +477010,Agriculture,Agriculture +477006,Agriculture,Agriculture +477004,Agriculture,Agriculture +476187,Agriculture,Agriculture +475679,Agriculture,Agriculture +475668,Agriculture,Agriculture +475638,Agriculture,Agriculture +471713,Agriculture,Agriculture +471627,Agriculture,Agriculture +471354,Agriculture,Agriculture +468176,Agriculture,Agriculture +468174,Agriculture,Agriculture +467755,Agriculture,Agriculture +467748,Agriculture,Agriculture +467489,Agriculture,Agriculture +467485,Agriculture,Agriculture +467460,Agriculture,Agriculture +467437,Agriculture,Agriculture +467390,Agriculture,Agriculture +467346,Agriculture,Agriculture +467333,Agriculture,Agriculture +467317,Agriculture,Agriculture +466991,Agriculture,Agriculture +466985,Agriculture,Agriculture +466979,Agriculture,Agriculture +466978,Agriculture,Agriculture +466455,Agriculture,Agriculture +466439,Agriculture,Agriculture +466389,Agriculture,Agriculture +466380,Agriculture,Agriculture +465366,Agriculture,Agriculture +465365,Agriculture,Agriculture +463187,Agriculture,Agriculture +463084,Agriculture,Agriculture +460778,Agriculture,Agriculture +528308,Health,Health +502346,Health,Health +140056,Health,Health +174729,Health,Health +174728,Health,Health +174727,Health,Health +174726,Health,Health +174725,Health,Health +174724,Health,Health +174723,Health,Health +174721,Health,Health +174719,Health,Health +169886,Health,Health +169884,Health,Health +161418,Health,Health +161416,Health,Health +161413,Health,Health +161411,Health,Health +161199,Health,Health +161137,Health,Health +160773,Health,Health +379499,Health,Health +378762,Health,Health +378761,Health,Health +378760,Health,Health +375363,Health,Health +370628,Health,Health +308334,Health,Health +244231,Health,Health +174734,Health,Health +174732,Health,Health +174731,Health,Health +174730,Health,Health +475668,Health,Health +475638,Health,Health +471627,Health,Health +458194,Health,Health +456418,Health,Health +444230,Health,Health +434361,Health,Health +429697,Health,Health +429695,Health,Health +400200,Health,Health +388715,Health,Health +544801,Health,Health +544513,Health,Health +544505,Health,Health +544500,Health,Health +542827,Health,Health +542485,Health,Health +542420,Health,Health +542261,Health,Health +532959,Health,Health +532917,Health,Health +532914,Health,Health +532911,Health,Health +532910,Health,Health +532908,Health,Health +532907,Health,Health +532905,Health,Health +532903,Health,Health +532902,Health,Health +532602,International Trade,International Trade +530775,International Trade,International Trade +103195,International Trade,International Trade +97201,International Trade,International Trade +94656,International Trade,International Trade +81924,International Trade,International Trade +81918,International Trade,International Trade +152838,International Trade,International Trade +151277,International Trade,International Trade +145535,International Trade,International Trade +145534,International Trade,International Trade +145405,International Trade,International Trade +145404,International Trade,International Trade +145399,International Trade,International Trade +145397,International Trade,International Trade +125082,International Trade,International Trade +117554,International Trade,International Trade +252229,International Trade,International Trade +251895,International Trade,International Trade +251894,International Trade,International Trade +251893,International Trade,International Trade +251892,International Trade,International Trade +251889,International Trade,International Trade +244231,International Trade,International Trade +240249,International Trade,International Trade +227067,International Trade,International Trade +205090,International Trade,International Trade +195506,International Trade,International Trade +195505,International Trade,International Trade +195504,International Trade,International Trade +192051,International Trade,International Trade +192049,International Trade,International Trade +192045,International Trade,International Trade +188285,International Trade,International Trade +188284,International Trade,International Trade +187027,International Trade,International Trade +174734,International Trade,International Trade +174732,International Trade,International Trade +174731,International Trade,International Trade +174727,International Trade,International Trade +173292,International Trade,International Trade +169885,International Trade,International Trade +162553,International Trade,International Trade +162531,International Trade,International Trade +162016,International Trade,International Trade +162014,International Trade,International Trade +162012,International Trade,International Trade +162010,International Trade,International Trade +161418,International Trade,International Trade +161417,International Trade,International Trade +161416,International Trade,International Trade +161415,International Trade,International Trade +161413,International Trade,International Trade +161411,International Trade,International Trade +161409,International Trade,International Trade +161137,International Trade,International Trade +161136,International Trade,International Trade +161134,International Trade,International Trade +160770,International Trade,International Trade +160769,International Trade,International Trade +160768,International Trade,International Trade +160767,International Trade,International Trade +157991,International Trade,International Trade +157989,International Trade,International Trade +397765,International Trade,International Trade +395115,International Trade,International Trade +395113,International Trade,International Trade +393077,International Trade,International Trade +388714,International Trade,International Trade +387498,International Trade,International Trade +384691,International Trade,International Trade +381983,International Trade,International Trade +380758,International Trade,International Trade +380600,International Trade,International Trade +379499,International Trade,International Trade +378762,International Trade,International Trade +378761,International Trade,International Trade +378760,International Trade,International Trade +378752,International Trade,International Trade +377797,International Trade,International Trade +375362,International Trade,International Trade +373300,International Trade,International Trade +373297,International Trade,International Trade +373294,International Trade,International Trade +370641,International Trade,International Trade +370630,International Trade,International Trade +368312,International Trade,International Trade +368294,International Trade,International Trade +368290,International Trade,International Trade +368289,International Trade,International Trade +366127,International Trade,International Trade +366126,International Trade,International Trade +365824,International Trade,International Trade +365142,International Trade,International Trade +365141,International Trade,International Trade +364623,International Trade,International Trade +362322,International Trade,International Trade +362321,International Trade,International Trade +362319,International Trade,International Trade +358726,International Trade,International Trade +358723,International Trade,International Trade +358722,International Trade,International Trade +357536,International Trade,International Trade +355173,International Trade,International Trade +355170,International Trade,International Trade +354982,International Trade,International Trade +354981,International Trade,International Trade +354980,International Trade,International Trade +351100,International Trade,International Trade +351099,International Trade,International Trade +344554,International Trade,International Trade +342737,International Trade,International Trade +337809,International Trade,International Trade +336403,International Trade,International Trade +336402,International Trade,International Trade +336401,International Trade,International Trade +336400,International Trade,International Trade +334316,International Trade,International Trade +330744,International Trade,International Trade +330576,International Trade,International Trade +330575,International Trade,International Trade +329351,International Trade,International Trade +328661,International Trade,International Trade +328660,International Trade,International Trade +328659,International Trade,International Trade +328658,International Trade,International Trade +328657,International Trade,International Trade +325333,International Trade,International Trade +325332,International Trade,International Trade +324594,International Trade,International Trade +320713,International Trade,International Trade +320712,International Trade,International Trade +320711,International Trade,International Trade +320710,International Trade,International Trade +317810,International Trade,International Trade +315049,International Trade,International Trade +314651,International Trade,International Trade +311451,International Trade,International Trade +311449,International Trade,International Trade +309759,International Trade,International Trade +309758,International Trade,International Trade +308334,International Trade,International Trade +308333,International Trade,International Trade +308331,International Trade,International Trade +308330,International Trade,International Trade +308329,International Trade,International Trade +308310,International Trade,International Trade +308309,International Trade,International Trade +308290,International Trade,International Trade +308289,International Trade,International Trade +302397,International Trade,International Trade +294575,International Trade,International Trade +294573,International Trade,International Trade +285649,International Trade,International Trade +275896,International Trade,International Trade +275895,International Trade,International Trade +275894,International Trade,International Trade +275893,International Trade,International Trade +263495,International Trade,International Trade +263494,International Trade,International Trade +263493,International Trade,International Trade +261171,International Trade,International Trade +261170,International Trade,International Trade +261169,International Trade,International Trade +527167,International Trade,International Trade +520401,International Trade,International Trade +517570,International Trade,International Trade +517341,International Trade,International Trade +514963,International Trade,International Trade +512495,International Trade,International Trade +508824,International Trade,International Trade +508816,International Trade,International Trade +508813,International Trade,International Trade +508805,International Trade,International Trade +508771,International Trade,International Trade +508734,International Trade,International Trade +505833,International Trade,International Trade +505832,International Trade,International Trade +505830,International Trade,International Trade +505828,International Trade,International Trade +505827,International Trade,International Trade +505826,International Trade,International Trade +505824,International Trade,International Trade +505822,International Trade,International Trade +505821,International Trade,International Trade +505820,International Trade,International Trade +505819,International Trade,International Trade +505817,International Trade,International Trade +505816,International Trade,International Trade +505815,International Trade,International Trade +505814,International Trade,International Trade +505813,International Trade,International Trade +505810,International Trade,International Trade +505805,International Trade,International Trade +505803,International Trade,International Trade +505800,International Trade,International Trade +505797,International Trade,International Trade +505795,International Trade,International Trade +505793,International Trade,International Trade +505658,International Trade,International Trade +505657,International Trade,International Trade +505656,International Trade,International Trade +505535,International Trade,International Trade +505534,International Trade,International Trade +505533,International Trade,International Trade +505531,International Trade,International Trade +505530,International Trade,International Trade +499037,International Trade,International Trade +499034,International Trade,International Trade +493523,International Trade,International Trade +492587,International Trade,International Trade +492586,International Trade,International Trade +491840,International Trade,International Trade +491837,International Trade,International Trade +491836,International Trade,International Trade +491835,International Trade,International Trade +491834,International Trade,International Trade +491833,International Trade,International Trade +491832,International Trade,International Trade +491831,International Trade,International Trade +491830,International Trade,International Trade +491829,International Trade,International Trade +491828,International Trade,International Trade +491827,International Trade,International Trade +491826,International Trade,International Trade +491824,International Trade,International Trade +491823,International Trade,International Trade +491822,International Trade,International Trade +491821,International Trade,International Trade +491820,International Trade,International Trade +491819,International Trade,International Trade +491818,International Trade,International Trade +491817,International Trade,International Trade +491816,International Trade,International Trade +491815,International Trade,International Trade +491814,International Trade,International Trade +491813,International Trade,International Trade +491812,International Trade,International Trade +491808,International Trade,International Trade +487939,International Trade,International Trade +483980,International Trade,International Trade +483979,International Trade,International Trade +483973,International Trade,International Trade +483969,International Trade,International Trade +483964,International Trade,International Trade +481773,International Trade,International Trade +479150,International Trade,International Trade +479146,International Trade,International Trade +479142,International Trade,International Trade +479132,International Trade,International Trade +477020,International Trade,International Trade +477010,International Trade,International Trade +477006,International Trade,International Trade +477004,International Trade,International Trade +475679,International Trade,International Trade +471713,International Trade,International Trade +471354,International Trade,International Trade +468176,International Trade,International Trade +468174,International Trade,International Trade +467755,International Trade,International Trade +467748,International Trade,International Trade +467489,International Trade,International Trade +467485,International Trade,International Trade +467460,International Trade,International Trade +467437,International Trade,International Trade +467390,International Trade,International Trade +467346,International Trade,International Trade +467333,International Trade,International Trade +467317,International Trade,International Trade +466991,International Trade,International Trade +466985,International Trade,International Trade +466979,International Trade,International Trade +466978,International Trade,International Trade +466455,International Trade,International Trade +466439,International Trade,International Trade +466389,International Trade,International Trade +466380,International Trade,International Trade +465366,International Trade,International Trade +465365,International Trade,International Trade +463187,International Trade,International Trade +463084,International Trade,International Trade +460778,International Trade,International Trade +457813,International Trade,International Trade +457807,International Trade,International Trade +456403,International Trade,International Trade +454599,International Trade,International Trade +454197,International Trade,International Trade +454196,International Trade,International Trade +454194,International Trade,International Trade +454192,International Trade,International Trade +454184,International Trade,International Trade +454169,International Trade,International Trade +454168,International Trade,International Trade +454164,International Trade,International Trade +454163,International Trade,International Trade +454159,International Trade,International Trade +454152,International Trade,International Trade +454151,International Trade,International Trade +454150,International Trade,International Trade +454147,International Trade,International Trade +454142,International Trade,International Trade +454140,International Trade,International Trade +450936,International Trade,International Trade +450935,International Trade,International Trade +445517,International Trade,International Trade +444643,International Trade,International Trade +442948,International Trade,International Trade +438964,International Trade,International Trade +437412,International Trade,International Trade +436912,International Trade,International Trade +436432,International Trade,International Trade +434360,International Trade,International Trade +432970,International Trade,International Trade +431510,International Trade,International Trade +429919,International Trade,International Trade +429698,International Trade,International Trade +429696,International Trade,International Trade +429695,International Trade,International Trade +429694,International Trade,International Trade +429693,International Trade,International Trade +429692,International Trade,International Trade +427098,International Trade,International Trade +426217,International Trade,International Trade +426216,International Trade,International Trade +426214,International Trade,International Trade +426213,International Trade,International Trade +426212,International Trade,International Trade +424248,International Trade,International Trade +424247,International Trade,International Trade +423191,International Trade,International Trade +422061,International Trade,International Trade +422060,International Trade,International Trade +422059,International Trade,International Trade +422058,International Trade,International Trade +419325,International Trade,International Trade +419324,International Trade,International Trade +419323,International Trade,International Trade +419322,International Trade,International Trade +419321,International Trade,International Trade +419320,International Trade,International Trade +417948,International Trade,International Trade +417946,International Trade,International Trade +417945,International Trade,International Trade +417942,International Trade,International Trade +414968,International Trade,International Trade +414967,International Trade,International Trade +414966,International Trade,International Trade +414965,International Trade,International Trade +414964,International Trade,International Trade +414962,International Trade,International Trade +414961,International Trade,International Trade +414960,International Trade,International Trade +414959,International Trade,International Trade +414958,International Trade,International Trade +411432,International Trade,International Trade +411111,International Trade,International Trade +411109,International Trade,International Trade +411108,International Trade,International Trade +411107,International Trade,International Trade +411106,International Trade,International Trade +408911,International Trade,International Trade +408904,International Trade,International Trade +408903,International Trade,International Trade +408902,International Trade,International Trade +408901,International Trade,International Trade +408451,International Trade,International Trade +408450,International Trade,International Trade +408448,International Trade,International Trade +408447,International Trade,International Trade +408446,International Trade,International Trade +408445,International Trade,International Trade +408444,International Trade,International Trade +407345,International Trade,International Trade +407212,International Trade,International Trade +406443,International Trade,International Trade +406053,International Trade,International Trade +406051,International Trade,International Trade +402656,International Trade,International Trade +400201,International Trade,International Trade +545139,International Trade,International Trade +545136,International Trade,International Trade +544799,International Trade,International Trade +544798,International Trade,International Trade +544715,International Trade,International Trade +544595,International Trade,International Trade +544500,International Trade,International Trade +544499,International Trade,International Trade +544498,International Trade,International Trade +542756,International Trade,International Trade +542693,International Trade,International Trade +542492,International Trade,International Trade +542491,International Trade,International Trade +542490,International Trade,International Trade +542485,International Trade,International Trade +540019,International Trade,International Trade +539957,International Trade,International Trade +538805,International Trade,International Trade +536348,International Trade,International Trade +536345,International Trade,International Trade +533294,International Trade,International Trade +532961,International Trade,International Trade +532959,International Trade,International Trade +532916,International Trade,International Trade +532915,International Trade,International Trade +532914,International Trade,International Trade +532911,International Trade,International Trade +532910,International Trade,International Trade +532909,International Trade,International Trade +532908,International Trade,International Trade +532907,International Trade,International Trade +532905,International Trade,International Trade +532904,International Trade,International Trade +495657,Employment and Training,Employment and Training +495656,Employment and Training,Employment and Training +161474,Employment and Training,Employment and Training +161467,Employment and Training,Employment and Training +352147,Employment and Training,Employment and Training +295569,Employment and Training,Employment and Training +265852,Employment and Training,Employment and Training +239133,Employment and Training,Employment and Training +239132,Employment and Training,Employment and Training +222586,Employment and Training,Employment and Training +170116,Employment and Training,Employment and Training +170115,Employment and Training,Employment and Training +170114,Employment and Training,Employment and Training +170113,Employment and Training,Employment and Training +170112,Employment and Training,Employment and Training +170111,Employment and Training,Employment and Training +170110,Employment and Training,Employment and Training +170109,Employment and Training,Employment and Training +170108,Employment and Training,Employment and Training +170107,Employment and Training,Employment and Training +170106,Employment and Training,Employment and Training +170105,Employment and Training,Employment and Training +170104,Employment and Training,Employment and Training +169684,Employment and Training,Employment and Training +169630,Employment and Training,Employment and Training +387855,Employment and Training,Employment and Training +372057,Employment and Training,Employment and Training +372054,Employment and Training,Employment and Training +372027,Employment and Training,Employment and Training +370719,Employment and Training,Employment and Training +493727,Employment and Training,Employment and Training +493726,Employment and Training,Employment and Training +485306,Employment and Training,Employment and Training +485305,Employment and Training,Employment and Training +482462,Employment and Training,Employment and Training +482461,Employment and Training,Employment and Training +480446,Employment and Training,Employment and Training +479475,Employment and Training,Employment and Training +478040,Employment and Training,Employment and Training +478020,Employment and Training,Employment and Training +478016,Employment and Training,Employment and Training +476091,Employment and Training,Employment and Training +476089,Employment and Training,Employment and Training +476087,Employment and Training,Employment and Training +473269,Employment and Training,Employment and Training +473257,Employment and Training,Employment and Training +473247,Employment and Training,Employment and Training +473236,Employment and Training,Employment and Training +473197,Employment and Training,Employment and Training +473183,Employment and Training,Employment and Training +473178,Employment and Training,Employment and Training +473162,Employment and Training,Employment and Training +473160,Employment and Training,Employment and Training +473158,Employment and Training,Employment and Training +473155,Employment and Training,Employment and Training +473099,Employment and Training,Employment and Training +473096,Employment and Training,Employment and Training +473091,Employment and Training,Employment and Training +473090,Employment and Training,Employment and Training +473089,Employment and Training,Employment and Training +473088,Employment and Training,Employment and Training +473087,Employment and Training,Employment and Training +473081,Employment and Training,Employment and Training +471112,Employment and Training,Employment and Training +471111,Employment and Training,Employment and Training +465097,Employment and Training,Employment and Training +441467,Employment and Training,Employment and Training +441466,Employment and Training,Employment and Training +441465,Employment and Training,Employment and Training +441464,Employment and Training,Employment and Training +441463,Employment and Training,Employment and Training +441461,Employment and Training,Employment and Training +441460,Employment and Training,Employment and Training +441459,Employment and Training,Employment and Training +441457,Employment and Training,Employment and Training +441456,Employment and Training,Employment and Training +441449,Employment and Training,Employment and Training +441442,Employment and Training,Employment and Training +542369,Employment and Training,Employment and Training +541999,Employment and Training,Employment and Training +541997,Employment and Training,Employment and Training +541995,Employment and Training,Employment and Training +541993,Employment and Training,Employment and Training +541991,Employment and Training,Employment and Training +539897,Employment and Training,Employment and Training +526903,Employment and Training,Employment and Training +526757,Employment and Training,Employment and Training +526755,Employment and Training,Employment and Training +526754,Employment and Training,Employment and Training +523151,Employment and Training,Employment and Training +523144,Employment and Training,Employment and Training +523088,Employment and Training,Employment and Training +523086,Employment and Training,Employment and Training +523085,Employment and Training,Employment and Training +523060,Employment and Training,Employment and Training +523058,Employment and Training,Employment and Training +523057,Employment and Training,Employment and Training +523055,Employment and Training,Employment and Training +523054,Employment and Training,Employment and Training +523052,Employment and Training,Employment and Training +523050,Employment and Training,Employment and Training +523049,Employment and Training,Employment and Training +523047,Employment and Training,Employment and Training +523045,Employment and Training,Employment and Training +523044,Employment and Training,Employment and Training +523043,Employment and Training,Employment and Training +523042,Employment and Training,Employment and Training +523041,Employment and Training,Employment and Training +523039,Employment and Training,Employment and Training +523038,Employment and Training,Employment and Training +520311,Employment and Training,Employment and Training +520310,Employment and Training,Employment and Training +520308,Employment and Training,Employment and Training +520307,Employment and Training,Employment and Training +520306,Employment and Training,Employment and Training +520304,Employment and Training,Employment and Training +520303,Employment and Training,Employment and Training +513511,Employment and Training,Employment and Training +511364,Employment and Training,Employment and Training +511361,Employment and Training,Employment and Training +499122,Employment and Training,Employment and Training +499107,Employment and Training,Employment and Training +499045,Employment and Training,Employment and Training +496163,Employment and Training,Employment and Training +496160,Employment and Training,Employment and Training +496060,Employment and Training,Employment and Training +496059,Employment and Training,Employment and Training +496057,Employment and Training,Employment and Training +496056,Employment and Training,Employment and Training +496054,Employment and Training,Employment and Training +496053,Employment and Training,Employment and Training +496052,Employment and Training,Employment and Training +496051,Employment and Training,Employment and Training +496049,Employment and Training,Employment and Training +496046,Employment and Training,Employment and Training +496045,Employment and Training,Employment and Training +496044,Employment and Training,Employment and Training +496043,Employment and Training,Employment and Training +496042,Employment and Training,Employment and Training +496041,Employment and Training,Employment and Training +496040,Employment and Training,Employment and Training +496039,Employment and Training,Employment and Training +496038,Employment and Training,Employment and Training +496036,Employment and Training,Employment and Training +496035,Employment and Training,Employment and Training +496034,Employment and Training,Employment and Training +496033,Employment and Training,Employment and Training +496032,Employment and Training,Employment and Training +496031,Employment and Training,Employment and Training +496030,Employment and Training,Employment and Training +496029,Employment and Training,Employment and Training +496028,Employment and Training,Employment and Training +496027,Employment and Training,Employment and Training +496026,Employment and Training,Employment and Training +496024,Employment and Training,Employment and Training +496020,Employment and Training,Employment and Training +496019,Employment and Training,Employment and Training +496017,Employment and Training,Employment and Training +496013,Employment and Training,Employment and Training +496011,Employment and Training,Employment and Training +496009,Employment and Training,Employment and Training +496007,Employment and Training,Employment and Training +495837,Employment and Training,Employment and Training +495835,Employment and Training,Employment and Training +495832,Employment and Training,Employment and Training +495830,Employment and Training,Employment and Training +495827,Employment and Training,Employment and Training +495826,Employment and Training,Employment and Training +495825,Employment and Training,Employment and Training +495823,Employment and Training,Employment and Training +495822,Employment and Training,Employment and Training +495819,Employment and Training,Employment and Training +495817,Employment and Training,Employment and Training +495816,Employment and Training,Employment and Training +495815,Employment and Training,Employment and Training +495814,Employment and Training,Employment and Training +495813,Employment and Training,Employment and Training +495812,Employment and Training,Employment and Training +495811,Employment and Training,Employment and Training +495808,Employment and Training,Employment and Training +495689,Employment and Training,Employment and Training +495687,Employment and Training,Employment and Training +495686,Employment and Training,Employment and Training +495685,Employment and Training,Employment and Training +495684,Employment and Training,Employment and Training +495683,Employment and Training,Employment and Training +495681,Employment and Training,Employment and Training +495678,Employment and Training,Employment and Training +495676,Employment and Training,Employment and Training +495674,Employment and Training,Employment and Training +495672,Employment and Training,Employment and Training +495670,Employment and Training,Employment and Training +495669,Employment and Training,Employment and Training +495668,Employment and Training,Employment and Training +495667,Employment and Training,Employment and Training +495666,Employment and Training,Employment and Training +495665,Employment and Training,Employment and Training +495664,Employment and Training,Employment and Training +495663,Employment and Training,Employment and Training +495662,Employment and Training,Employment and Training +495661,Employment and Training,Employment and Training +495660,Employment and Training,Employment and Training +495659,Employment and Training,Employment and Training +429035,Environment,Environment +429033,Environment,Environment +372035,Environment,Environment +372027,Environment,Environment +370719,Environment,Environment +429095,Environment,Environment +429094,Environment,Environment +429093,Environment,Environment +429089,Environment,Environment +429084,Environment,Environment +429080,Environment,Environment +429078,Environment,Environment +429076,Environment,Environment +429075,Environment,Environment +429070,Environment,Environment +429069,Environment,Environment +429066,Environment,Environment +429065,Environment,Environment +429062,Environment,Environment +429058,Environment,Environment +429056,Environment,Environment +429053,Environment,Environment +429047,Environment,Environment +429041,Environment,Environment +429040,Environment,Environment +429039,Environment,Environment +471075,Health,Health +471062,Health,Health +170110,Health,Health +170109,Health,Health +170108,Health,Health +170107,Health,Health +170106,Health,Health +170105,Health,Health +170104,Health,Health +169684,Health,Health +169630,Health,Health +295570,Health,Health +288290,Health,Health +170116,Health,Health +170115,Health,Health +170114,Health,Health +170113,Health,Health +170112,Health,Health +170111,Health,Health +376148,Health,Health +372101,Health,Health +372027,Health,Health +372024,Health,Health +370719,Health,Health +461205,Health,Health +429095,Health,Health +429094,Health,Health +429093,Health,Health +429089,Health,Health +429084,Health,Health +429080,Health,Health +429078,Health,Health +429076,Health,Health +429075,Health,Health +429070,Health,Health +429069,Health,Health +429066,Health,Health +429065,Health,Health +429062,Health,Health +429058,Health,Health +429056,Health,Health +429053,Health,Health +429047,Health,Health +429041,Health,Health +429040,Health,Health +429039,Health,Health +429036,Health,Health +429035,Health,Health +429033,Health,Health +412930,Health,Health +412913,Health,Health +412875,Health,Health +511356,Health,Health +493727,Health,Health +482455,Health,Health +482449,Health,Health +482448,Health,Health +482445,Health,Health +478023,Health,Health +471133,Health,Health +471128,Health,Health +471127,Health,Health +471125,Health,Health +471124,Health,Health +471118,Health,Health +471117,Health,Health +471116,Health,Health +471114,Health,Health +471112,Health,Health +471110,Health,Health +471108,Health,Health +471105,Health,Health +471103,Health,Health +265889,Immigration,Immigration +482451,Immigration,Immigration +152007,Immigration,Immigration +239134,Immigration,Immigration +396716,Immigration,Immigration +391324,Immigration,Immigration +505989,Industry,Industry +505984,Industry,Industry +222583,Industry,Industry +184284,Industry,Industry +170119,Industry,Industry +152011,Industry,Industry +152008,Industry,Industry +372035,Industry,Industry +372027,Industry,Industry +370719,Industry,Industry +369492,Industry,Industry +342316,Industry,Industry +342315,Industry,Industry +342314,Industry,Industry +342313,Industry,Industry +342311,Industry,Industry +342157,Industry,Industry +330327,Industry,Industry +295570,Industry,Industry +265870,Industry,Industry +265869,Industry,Industry +265851,Industry,Industry +265849,Industry,Industry +222585,Industry,Industry +424411,Industry,Industry +413948,Industry,Industry +412930,Industry,Industry +412919,Industry,Industry +412917,Industry,Industry +412915,Industry,Industry +412914,Industry,Industry +412911,Industry,Industry +412899,Industry,Industry +412891,Industry,Industry +412878,Industry,Industry +412875,Industry,Industry +412871,Industry,Industry +412869,Industry,Industry +412865,Industry,Industry +412541,Industry,Industry +410325,Industry,Industry +381270,Industry,Industry +499122,Industry,Industry +499107,Industry,Industry +499045,Industry,Industry +496163,Industry,Industry +496160,Industry,Industry +496060,Industry,Industry +496059,Industry,Industry +496057,Industry,Industry +496056,Industry,Industry +496054,Industry,Industry +496053,Industry,Industry +496052,Industry,Industry +496051,Industry,Industry +496049,Industry,Industry +496046,Industry,Industry +496045,Industry,Industry +496044,Industry,Industry +496043,Industry,Industry +496042,Industry,Industry +496041,Industry,Industry +496040,Industry,Industry +496039,Industry,Industry +496038,Industry,Industry +496036,Industry,Industry +496035,Industry,Industry +496034,Industry,Industry +496033,Industry,Industry +496032,Industry,Industry +496031,Industry,Industry +496030,Industry,Industry +496029,Industry,Industry +496028,Industry,Industry +496027,Industry,Industry +496026,Industry,Industry +496024,Industry,Industry +496020,Industry,Industry +496019,Industry,Industry +496017,Industry,Industry +496013,Industry,Industry +496011,Industry,Industry +496009,Industry,Industry +496007,Industry,Industry +495837,Industry,Industry +495835,Industry,Industry +495832,Industry,Industry +495830,Industry,Industry +495827,Industry,Industry +495826,Industry,Industry +495825,Industry,Industry +495823,Industry,Industry +495822,Industry,Industry +495819,Industry,Industry +495817,Industry,Industry +495816,Industry,Industry +495815,Industry,Industry +495814,Industry,Industry +495813,Industry,Industry +495812,Industry,Industry +495811,Industry,Industry +495808,Industry,Industry +495689,Industry,Industry +495688,Industry,Industry +495687,Industry,Industry +495686,Industry,Industry +495685,Industry,Industry +495684,Industry,Industry +495683,Industry,Industry +495681,Industry,Industry +495678,Industry,Industry +495676,Industry,Industry +495674,Industry,Industry +495672,Industry,Industry +495670,Industry,Industry +495669,Industry,Industry +495668,Industry,Industry +495667,Industry,Industry +495666,Industry,Industry +495665,Industry,Industry +495664,Industry,Industry +495663,Industry,Industry +495662,Industry,Industry +495661,Industry,Industry +495660,Industry,Industry +495659,Industry,Industry +495658,Industry,Industry +495657,Industry,Industry +495656,Industry,Industry +493728,Industry,Industry +493727,Industry,Industry +485308,Industry,Industry +485306,Industry,Industry +485305,Industry,Industry +482455,Industry,Industry +482446,Industry,Industry +479475,Industry,Industry +478175,Industry,Industry +478037,Industry,Industry +478020,Industry,Industry +478016,Industry,Industry +476088,Industry,Industry +473269,Industry,Industry +473257,Industry,Industry +473247,Industry,Industry +473236,Industry,Industry +473197,Industry,Industry +473183,Industry,Industry +473178,Industry,Industry +473162,Industry,Industry +473160,Industry,Industry +473158,Industry,Industry +473155,Industry,Industry +473099,Industry,Industry +473096,Industry,Industry +473091,Industry,Industry +473090,Industry,Industry +473089,Industry,Industry +473088,Industry,Industry +473087,Industry,Industry +473081,Industry,Industry +471130,Industry,Industry +471118,Industry,Industry +465097,Industry,Industry +459862,Industry,Industry +459861,Industry,Industry +447838,Industry,Industry +445871,Industry,Industry +445525,Industry,Industry +445524,Industry,Industry +440323,Industry,Industry +538424,Industry,Industry +529569,Industry,Industry +523139,Industry,Industry +523114,Industry,Industry +511358,Industry,Industry +511357,Industry,Industry +505996,Industry,Industry +505995,Industry,Industry +440029,International Relations,International Relations +520328,International Relations,International Relations +152009,International Relations,International Relations +461207,International Relations,International Relations +520329,International Trade,International Trade +520328,International Trade,International Trade +330325,International Trade,International Trade +410326,International Trade,International Trade +410325,International Trade,International Trade +410324,International Trade,International Trade +408158,International Trade,International Trade +408157,International Trade,International Trade +408154,International Trade,International Trade +408153,International Trade,International Trade +391703,International Trade,International Trade +391697,International Trade,International Trade +391695,International Trade,International Trade +391691,International Trade,International Trade +391690,International Trade,International Trade +391687,International Trade,International Trade +391685,International Trade,International Trade +391683,International Trade,International Trade +391681,International Trade,International Trade +391679,International Trade,International Trade +391675,International Trade,International Trade +391673,International Trade,International Trade +391672,International Trade,International Trade +391668,International Trade,International Trade +391665,International Trade,International Trade +391663,International Trade,International Trade +391660,International Trade,International Trade +391658,International Trade,International Trade +391655,International Trade,International Trade +391650,International Trade,International Trade +391646,International Trade,International Trade +391643,International Trade,International Trade +391335,International Trade,International Trade +391331,International Trade,International Trade +391329,International Trade,International Trade +391324,International Trade,International Trade +391318,International Trade,International Trade +388768,International Trade,International Trade +388767,International Trade,International Trade +388766,International Trade,International Trade +388765,International Trade,International Trade +388764,International Trade,International Trade +388763,International Trade,International Trade +388762,International Trade,International Trade +388761,International Trade,International Trade +388760,International Trade,International Trade +379705,International Trade,International Trade +377824,International Trade,International Trade +376148,International Trade,International Trade +372101,International Trade,International Trade +372067,International Trade,International Trade +372035,International Trade,International Trade +372027,International Trade,International Trade +371761,International Trade,International Trade +370719,International Trade,International Trade +364395,International Trade,International Trade +511358,International Trade,International Trade +478037,International Trade,International Trade +447838,International Trade,International Trade +440030,International Trade,International Trade +440028,International Trade,International Trade +440027,International Trade,International Trade +440026,International Trade,International Trade +440025,International Trade,International Trade +440024,International Trade,International Trade +440023,International Trade,International Trade +440022,International Trade,International Trade +440021,International Trade,International Trade +440020,International Trade,International Trade +440019,International Trade,International Trade +440018,International Trade,International Trade +440017,International Trade,International Trade +440016,International Trade,International Trade +440015,International Trade,International Trade +440014,International Trade,International Trade +440013,International Trade,International Trade +440011,International Trade,International Trade +440010,International Trade,International Trade +440009,International Trade,International Trade +440008,International Trade,International Trade +440007,International Trade,International Trade +440006,International Trade,International Trade +440005,International Trade,International Trade +440004,International Trade,International Trade +440003,International Trade,International Trade +440002,International Trade,International Trade +440001,International Trade,International Trade +440000,International Trade,International Trade +439999,International Trade,International Trade +439998,International Trade,International Trade +439997,International Trade,International Trade +439996,International Trade,International Trade +439995,International Trade,International Trade +439994,International Trade,International Trade +439993,International Trade,International Trade +439992,International Trade,International Trade +439991,International Trade,International Trade +439990,International Trade,International Trade +439989,International Trade,International Trade +439988,International Trade,International Trade +439987,International Trade,International Trade +439986,International Trade,International Trade +439985,International Trade,International Trade +439984,International Trade,International Trade +439983,International Trade,International Trade +439982,International Trade,International Trade +439981,International Trade,International Trade +439980,International Trade,International Trade +428995,International Trade,International Trade +424415,International Trade,International Trade +419478,International Trade,International Trade +418183,International Trade,International Trade +417208,International Trade,International Trade +413372,International Trade,International Trade +413358,International Trade,International Trade +413333,International Trade,International Trade +412928,International Trade,International Trade +412926,International Trade,International Trade +412919,International Trade,International Trade +412917,International Trade,International Trade +412915,International Trade,International Trade +412914,International Trade,International Trade +412913,International Trade,International Trade +412911,International Trade,International Trade +412910,International Trade,International Trade +412904,International Trade,International Trade +412899,International Trade,International Trade +412891,International Trade,International Trade +412887,International Trade,International Trade +412881,International Trade,International Trade +412878,International Trade,International Trade +412875,International Trade,International Trade +412871,International Trade,International Trade +412869,International Trade,International Trade +412865,International Trade,International Trade +412543,International Trade,International Trade +412539,International Trade,International Trade +412537,International Trade,International Trade +412534,International Trade,International Trade +523130,International Trade,International Trade +372027,Justice and Law Enforcement,Justice and Law Enforcement +370719,Justice and Law Enforcement,Justice and Law Enforcement +170120,Justice and Law Enforcement,Justice and Law Enforcement +170116,Justice and Law Enforcement,Justice and Law Enforcement +170115,Justice and Law Enforcement,Justice and Law Enforcement +170114,Justice and Law Enforcement,Justice and Law Enforcement +170113,Justice and Law Enforcement,Justice and Law Enforcement +170112,Justice and Law Enforcement,Justice and Law Enforcement +170111,Justice and Law Enforcement,Justice and Law Enforcement +170110,Justice and Law Enforcement,Justice and Law Enforcement +170109,Justice and Law Enforcement,Justice and Law Enforcement +170108,Justice and Law Enforcement,Justice and Law Enforcement +170107,Justice and Law Enforcement,Justice and Law Enforcement +170106,Justice and Law Enforcement,Justice and Law Enforcement +170105,Justice and Law Enforcement,Justice and Law Enforcement +170104,Justice and Law Enforcement,Justice and Law Enforcement +169684,Justice and Law Enforcement,Justice and Law Enforcement +459862,Justice and Law Enforcement,Justice and Law Enforcement +447317,Justice and Law Enforcement,Justice and Law Enforcement +447316,Justice and Law Enforcement,Justice and Law Enforcement +447314,Justice and Law Enforcement,Justice and Law Enforcement +447311,Justice and Law Enforcement,Justice and Law Enforcement +447310,Justice and Law Enforcement,Justice and Law Enforcement +447309,Justice and Law Enforcement,Justice and Law Enforcement +447308,Justice and Law Enforcement,Justice and Law Enforcement +447307,Justice and Law Enforcement,Justice and Law Enforcement +447302,Justice and Law Enforcement,Justice and Law Enforcement +445528,Justice and Law Enforcement,Justice and Law Enforcement +445511,Justice and Law Enforcement,Justice and Law Enforcement +387855,Justice and Law Enforcement,Justice and Law Enforcement +376148,Justice and Law Enforcement,Justice and Law Enforcement +372101,Justice and Law Enforcement,Justice and Law Enforcement +372062,Justice and Law Enforcement,Justice and Law Enforcement +372057,Justice and Law Enforcement,Justice and Law Enforcement +441449,Labour,Labour +441442,Labour,Labour +161474,Labour,Labour +161467,Labour,Labour +152008,Labour,Labour +239131,Labour,Labour +239130,Labour,Labour +205155,Labour,Labour +185496,Labour,Labour +184425,Labour,Labour +170116,Labour,Labour +170115,Labour,Labour +170114,Labour,Labour +170113,Labour,Labour +170112,Labour,Labour +170111,Labour,Labour +170110,Labour,Labour +170109,Labour,Labour +170108,Labour,Labour +170107,Labour,Labour +170106,Labour,Labour +170105,Labour,Labour +170104,Labour,Labour +169684,Labour,Labour +169630,Labour,Labour +417207,Labour,Labour +412891,Labour,Labour +381270,Labour,Labour +372027,Labour,Labour +370719,Labour,Labour +369492,Labour,Labour +288290,Labour,Labour +265855,Labour,Labour +265851,Labour,Labour +523121,Labour,Labour +478175,Labour,Labour +471130,Labour,Labour +471128,Labour,Labour +471127,Labour,Labour +471117,Labour,Labour +471116,Labour,Labour +471114,Labour,Labour +471105,Labour,Labour +465099,Labour,Labour +465098,Labour,Labour +465097,Labour,Labour +471130,Transportation,Transportation +471110,Transportation,Transportation +183764,Transportation,Transportation +161477,Transportation,Transportation +374754,Transportation,Transportation +372094,Transportation,Transportation +372035,Transportation,Transportation +372027,Transportation,Transportation +370719,Transportation,Transportation +369492,Transportation,Transportation +330332,Transportation,Transportation +330330,Transportation,Transportation +330328,Transportation,Transportation +445870,Transportation,Transportation +429094,Transportation,Transportation +429089,Transportation,Transportation +429086,Transportation,Transportation +429084,Transportation,Transportation +429080,Transportation,Transportation +429078,Transportation,Transportation +429076,Transportation,Transportation +429075,Transportation,Transportation +429070,Transportation,Transportation +429069,Transportation,Transportation +429066,Transportation,Transportation +429065,Transportation,Transportation +429062,Transportation,Transportation +429058,Transportation,Transportation +429056,Transportation,Transportation +429053,Transportation,Transportation +429047,Transportation,Transportation +429041,Transportation,Transportation +429040,Transportation,Transportation +429039,Transportation,Transportation +429036,Transportation,Transportation +429035,Transportation,Transportation +429033,Transportation,Transportation +429031,Transportation,Transportation +429030,Transportation,Transportation +429028,Transportation,Transportation +429027,Transportation,Transportation +429026,Transportation,Transportation +417208,Transportation,Transportation +417207,Transportation,Transportation +416319,Transportation,Transportation +416318,Transportation,Transportation +416316,Transportation,Transportation +416315,Transportation,Transportation +416312,Transportation,Transportation +416311,Transportation,Transportation +416310,Transportation,Transportation +416309,Transportation,Transportation +416308,Transportation,Transportation +416307,Transportation,Transportation +416306,Transportation,Transportation +416305,Transportation,Transportation +416304,Transportation,Transportation +416303,Transportation,Transportation +416302,Transportation,Transportation +413327,Transportation,Transportation +413317,Transportation,Transportation +413313,Transportation,Transportation +413307,Transportation,Transportation +413295,Transportation,Transportation +413160,Transportation,Transportation +412923,Transportation,Transportation +412887,Transportation,Transportation +412823,Transportation,Transportation +412821,Transportation,Transportation +412818,Transportation,Transportation +412817,Transportation,Transportation +412814,Transportation,Transportation +412810,Transportation,Transportation +412805,Transportation,Transportation +408049,Transportation,Transportation +380320,Transportation,Transportation +541999,Transportation,Transportation +526759,Transportation,Transportation +526758,Transportation,Transportation +523815,Transportation,Transportation +523814,Transportation,Transportation +505989,Transportation,Transportation +505984,Transportation,Transportation +499107,Transportation,Transportation +499045,Transportation,Transportation +496160,Transportation,Transportation +493728,Transportation,Transportation +493727,Transportation,Transportation +482449,Transportation,Transportation +482446,Transportation,Transportation +476088,Transportation,Transportation +528564,Agriculture,Agriculture +528562,Agriculture,Agriculture +409822,Agriculture,Agriculture +400534,Agriculture,Agriculture +516742,Agriculture,Agriculture +516733,Agriculture,Agriculture +515108,Agriculture,Agriculture +489690,Agriculture,Agriculture +457003,Agriculture,Agriculture +457002,Agriculture,Agriculture +430415,Agriculture,Agriculture +430413,Agriculture,Agriculture +430393,Agriculture,Agriculture +537008,Agriculture,Agriculture +402864,Environment,Environment +519190,Environment,Environment +319154,Environment,Environment +296258,Environment,Environment +277521,Environment,Environment +263870,Environment,Environment +250556,Environment,Environment +250550,Environment,Environment +223403,Environment,Environment +206469,Environment,Environment +170823,Environment,Environment +170822,Environment,Environment +381307,Environment,Environment +381298,Environment,Environment +379546,Environment,Environment +372843,Environment,Environment +372616,Environment,Environment +343998,Environment,Environment +343994,Environment,Environment +343989,Environment,Environment +513817,Environment,Environment +512312,Environment,Environment +512310,Environment,Environment +492573,Environment,Environment +474791,Environment,Environment +432241,Environment,Environment +430421,Environment,Environment +430393,Environment,Environment +424089,Environment,Environment +421332,Environment,Environment +419222,Environment,Environment +409822,Environment,Environment +409816,Environment,Environment +433267,Fisheries,Fisheries +433262,Fisheries,Fisheries +238509,Fisheries,Fisheries +223403,Fisheries,Fisheries +430393,Fisheries,Fisheries +430299,Fisheries,Fisheries +424098,Fisheries,Fisheries +424089,Fisheries,Fisheries +421332,Fisheries,Fisheries +419222,Fisheries,Fisheries +409816,Fisheries,Fisheries +406487,Fisheries,Fisheries +402864,Fisheries,Fisheries +388186,Fisheries,Fisheries +379525,Fisheries,Fisheries +379524,Fisheries,Fisheries +372840,Fisheries,Fisheries +357910,Fisheries,Fisheries +348920,Fisheries,Fisheries +343998,Fisheries,Fisheries +343994,Fisheries,Fisheries +343989,Fisheries,Fisheries +343983,Fisheries,Fisheries +325184,Fisheries,Fisheries +310613,Fisheries,Fisheries +310612,Fisheries,Fisheries +310611,Fisheries,Fisheries +277521,Fisheries,Fisheries +268770,Fisheries,Fisheries +263870,Fisheries,Fisheries +250553,Fisheries,Fisheries +250551,Fisheries,Fisheries +543106,Fisheries,Fisheries +543105,Fisheries,Fisheries +540904,Fisheries,Fisheries +539472,Fisheries,Fisheries +537005,Fisheries,Fisheries +537004,Fisheries,Fisheries +533443,Fisheries,Fisheries +530837,Fisheries,Fisheries +530794,Fisheries,Fisheries +528558,Fisheries,Fisheries +528556,Fisheries,Fisheries +524501,Fisheries,Fisheries +524488,Fisheries,Fisheries +524484,Fisheries,Fisheries +516733,Fisheries,Fisheries +515109,Fisheries,Fisheries +513815,Fisheries,Fisheries +506929,Fisheries,Fisheries +501180,Fisheries,Fisheries +497718,Fisheries,Fisheries +476814,Fisheries,Fisheries +474797,Fisheries,Fisheries +466508,Fisheries,Fisheries +466507,Fisheries,Fisheries +466505,Fisheries,Fisheries +461455,Fisheries,Fisheries +461454,Fisheries,Fisheries +461440,Fisheries,Fisheries +457075,Fisheries,Fisheries +454430,Fisheries,Fisheries +454429,Fisheries,Fisheries +451873,Fisheries,Fisheries +451861,Fisheries,Fisheries +451852,Fisheries,Fisheries +451848,Fisheries,Fisheries +451846,Fisheries,Fisheries +449323,Fisheries,Fisheries +449321,Fisheries,Fisheries +449318,Fisheries,Fisheries +449315,Fisheries,Fisheries +449313,Fisheries,Fisheries +449309,Fisheries,Fisheries +449306,Fisheries,Fisheries +447067,Fisheries,Fisheries +447046,Fisheries,Fisheries +447045,Fisheries,Fisheries +447044,Fisheries,Fisheries +447042,Fisheries,Fisheries +447041,Fisheries,Fisheries +441575,Fisheries,Fisheries +437895,Fisheries,Fisheries +437892,Fisheries,Fisheries +437880,Fisheries,Fisheries +437878,Fisheries,Fisheries +437876,Fisheries,Fisheries +435016,Fisheries,Fisheries +435015,Fisheries,Fisheries +435014,Fisheries,Fisheries +435013,Fisheries,Fisheries +435010,Fisheries,Fisheries +456990,Taxation and Finance,Taxation and Finance +400534,Taxation and Finance,Taxation and Finance +268770,Taxation and Finance,Taxation and Finance +258452,Taxation and Finance,Taxation and Finance +77390,Energy,Energy +104057,Environment,Environment +104055,Environment,Environment +77388,Environment,Environment +77384,Environment,Environment +77382,Environment,Environment +398817,Immigration,Immigration +396103,Immigration,Immigration +142966,Immigration,Immigration +108559,Immigration,Immigration +194891,Immigration,Immigration +174925,Immigration,Immigration +173025,Immigration,Immigration +145863,Immigration,Immigration +145852,Immigration,Immigration +396096,Immigration,Immigration +383298,Immigration,Immigration +380784,Immigration,Immigration +379679,Immigration,Immigration +379676,Immigration,Immigration +379669,Immigration,Immigration +363193,Immigration,Immigration +359457,Immigration,Immigration +352932,Immigration,Immigration +350565,Immigration,Immigration +350564,Immigration,Immigration +350544,Immigration,Immigration +348556,Immigration,Immigration +347020,Immigration,Immigration +343563,Immigration,Immigration +341148,Immigration,Immigration +341140,Immigration,Immigration +337717,Immigration,Immigration +337713,Immigration,Immigration +337712,Immigration,Immigration +335316,Immigration,Immigration +335310,Immigration,Immigration +335309,Immigration,Immigration +331038,Immigration,Immigration +329914,Immigration,Immigration +326432,Immigration,Immigration +324507,Immigration,Immigration +324504,Immigration,Immigration +316829,Immigration,Immigration +315513,Immigration,Immigration +315510,Immigration,Immigration +309311,Immigration,Immigration +309255,Immigration,Immigration +296249,Immigration,Immigration +281490,Immigration,Immigration +281472,Immigration,Immigration +278032,Immigration,Immigration +278027,Immigration,Immigration +258329,Immigration,Immigration +250560,Immigration,Immigration +242829,Immigration,Immigration +231772,Immigration,Immigration +208849,Immigration,Immigration +464361,Immigration,Immigration +464349,Immigration,Immigration +461647,Immigration,Immigration +461645,Immigration,Immigration +460115,Immigration,Immigration +454571,Immigration,Immigration +449121,Immigration,Immigration +446915,Immigration,Immigration +445173,Immigration,Immigration +445166,Immigration,Immigration +387776,International Relations,International Relations +376027,International Relations,International Relations +262534,International Relations,International Relations +338458,International Relations,International Relations +404086,Justice and Law Enforcement,Justice and Law Enforcement +400219,Justice and Law Enforcement,Justice and Law Enforcement +296254,Justice and Law Enforcement,Justice and Law Enforcement +185309,Justice and Law Enforcement,Justice and Law Enforcement +176887,Justice and Law Enforcement,Justice and Law Enforcement +173026,Justice and Law Enforcement,Justice and Law Enforcement +188750,Other,Langues officielles +188749,Other,Langues officielles +108557,Other,Langues officielles +108555,Other,Langues officielles +108554,Other,Langues officielles +104314,Other,Langues officielles +97254,Other,Langues officielles +89101,Other,Langues officielles +87986,Other,Langues officielles +161970,Other,Langues officielles +161967,Other,Langues officielles +161966,Other,Langues officielles +159365,Other,Langues officielles +159364,Other,Langues officielles +159363,Other,Langues officielles +159361,Other,Langues officielles +156611,Other,Langues officielles +156610,Other,Langues officielles +156607,Other,Langues officielles +152897,Other,Langues officielles +152255,Other,Langues officielles +150305,Other,Langues officielles +148697,Other,Langues officielles +148037,Other,Langues officielles +145865,Other,Langues officielles +145862,Other,Langues officielles +145860,Other,Langues officielles +138835,Other,Langues officielles +135339,Other,Langues officielles +135338,Other,Langues officielles +135335,Other,Langues officielles +133635,Other,Langues officielles +128974,Other,Langues officielles +123774,Other,Langues officielles +121131,Other,Langues officielles +185310,Other,Langues officielles +185309,Other,Langues officielles +176887,Other,Langues officielles +176886,Other,Langues officielles +176885,Other,Langues officielles +176884,Other,Langues officielles +174930,Other,Langues officielles +174929,Other,Langues officielles +174928,Other,Langues officielles +174927,Other,Langues officielles +174926,Other,Langues officielles +173031,Other,Langues officielles +173030,Other,Langues officielles +173028,Other,Langues officielles +173024,Other,Langues officielles +171859,Other,Langues officielles +171858,Other,Langues officielles +171857,Other,Langues officielles +170034,Other,Langues officielles +170032,Other,Langues officielles +170030,Other,Langues officielles +170029,Other,Langues officielles +170028,Other,Langues officielles +170027,Other,Langues officielles +167354,Other,Langues officielles +167353,Other,Langues officielles +167352,Other,Langues officielles +167351,Other,Langues officielles +167350,Other,Langues officielles +167349,Other,Langues officielles +165365,Other,Langues officielles +165364,Other,Langues officielles +165363,Other,Langues officielles +165362,Other,Langues officielles +165361,Other,Langues officielles +163594,Other,Langues officielles +163593,Other,Langues officielles +163592,Other,Langues officielles +163591,Other,Langues officielles +161974,Other,Langues officielles +161973,Other,Langues officielles +161972,Other,Langues officielles +161971,Other,Langues officielles +195846,Other,Langues officielles +194890,Other,Langues officielles +194889,Other,Langues officielles +194888,Other,Langues officielles +194886,Other,Langues officielles +194885,Other,Langues officielles +194884,Other,Langues officielles +194883,Other,Langues officielles +194882,Other,Langues officielles +194881,Other,Langues officielles +194879,Other,Langues officielles +194877,Other,Langues officielles +194876,Other,Langues officielles +194875,Other,Langues officielles +194874,Other,Langues officielles +194873,Other,Langues officielles +171858,Other,Francophonie canadienne +171857,Other,Francophonie canadienne +89101,Other,Francophonie canadienne +87986,Other,Francophonie canadienne +123774,Other,Francophonie canadienne +108555,Other,Francophonie canadienne +108554,Other,Francophonie canadienne +104314,Other,Francophonie canadienne +97254,Other,Francophonie canadienne +170034,Other,Francophonie canadienne +170032,Other,Francophonie canadienne +170030,Other,Francophonie canadienne +170029,Other,Francophonie canadienne +170028,Other,Francophonie canadienne +170027,Other,Francophonie canadienne +167354,Other,Francophonie canadienne +167353,Other,Francophonie canadienne +167352,Other,Francophonie canadienne +167351,Other,Francophonie canadienne +167350,Other,Francophonie canadienne +167349,Other,Francophonie canadienne +165365,Other,Francophonie canadienne +165364,Other,Francophonie canadienne +165363,Other,Francophonie canadienne +165362,Other,Francophonie canadienne +165361,Other,Francophonie canadienne +163594,Other,Francophonie canadienne +163593,Other,Francophonie canadienne +163591,Other,Francophonie canadienne +161974,Other,Francophonie canadienne +161973,Other,Francophonie canadienne +161972,Other,Francophonie canadienne +161971,Other,Francophonie canadienne +161970,Other,Francophonie canadienne +161967,Other,Francophonie canadienne +161966,Other,Francophonie canadienne +159361,Other,Francophonie canadienne +156611,Other,Francophonie canadienne +156610,Other,Francophonie canadienne +156607,Other,Francophonie canadienne +195846,Other,Francophonie canadienne +194891,Other,Francophonie canadienne +194890,Other,Francophonie canadienne +194889,Other,Francophonie canadienne +194888,Other,Francophonie canadienne +194886,Other,Francophonie canadienne +194885,Other,Francophonie canadienne +194884,Other,Francophonie canadienne +194882,Other,Francophonie canadienne +194881,Other,Francophonie canadienne +194879,Other,Francophonie canadienne +194877,Other,Francophonie canadienne +194876,Other,Francophonie canadienne +194875,Other,Francophonie canadienne +194874,Other,Francophonie canadienne +194873,Other,Francophonie canadienne +188752,Other,Francophonie canadienne +188750,Other,Francophonie canadienne +188749,Other,Francophonie canadienne +185310,Other,Francophonie canadienne +185309,Other,Francophonie canadienne +176887,Other,Francophonie canadienne +176886,Other,Francophonie canadienne +176885,Other,Francophonie canadienne +176884,Other,Francophonie canadienne +174929,Other,Francophonie canadienne +174928,Other,Francophonie canadienne +174927,Other,Francophonie canadienne +174926,Other,Francophonie canadienne +173031,Other,Francophonie canadienne +173030,Other,Francophonie canadienne +173029,Other,Francophonie canadienne +173028,Other,Francophonie canadienne +173024,Other,Francophonie canadienne +137141,Education,Education +132254,Education,Education +128666,Education,Education +97676,Education,Education +93256,Education,Education +93210,Education,Education +93256,Infrastructure,Infrastructure +93210,Regional Development,Regional Development +137140,Regional Development,Regional Development +97676,Regional Development,Regional Development +90600,Education,Education +90600,Employment and Training,Employment and Training +90600,Health,Health +389887,Environment,Environment +536904,Environment,Environment +227183,Environment,Environment +347577,Environment,Environment +303571,Environment,Environment +291289,Environment,Environment +280914,Environment,Environment +277157,Environment,Environment +277156,Environment,Environment +277154,Environment,Environment +80616,Employment and Training,Employment and Training +80615,Employment and Training,Employment and Training +117235,Immigration,Immigration +110094,Immigration,Immigration +106797,Immigration,Immigration +106796,Immigration,Immigration +106795,Immigration,Immigration +106794,Immigration,Immigration +150329,Immigration,Immigration +150327,Immigration,Immigration +150326,Immigration,Immigration +81354,Energy,Energy +77531,Energy,Energy +170038,Health,Health +227003,Health,Health +200365,Health,Health +173482,Health,Health +173481,Health,Health +522798,Agriculture,Agriculture +522779,Agriculture,Agriculture +158026,Agriculture,Agriculture +158025,Agriculture,Agriculture +158024,Agriculture,Agriculture +158020,Agriculture,Agriculture +199898,Agriculture,Agriculture +199895,Agriculture,Agriculture +199893,Agriculture,Agriculture +199825,Agriculture,Agriculture +185319,Agriculture,Agriculture +180443,Agriculture,Agriculture +180441,Agriculture,Agriculture +180438,Agriculture,Agriculture +175461,Agriculture,Agriculture +175459,Agriculture,Agriculture +175458,Agriculture,Agriculture +175456,Agriculture,Agriculture +169943,Agriculture,Agriculture +169941,Agriculture,Agriculture +329664,Agriculture,Agriculture +329663,Agriculture,Agriculture +324679,Agriculture,Agriculture +311190,Agriculture,Agriculture +311005,Agriculture,Agriculture +311003,Agriculture,Agriculture +310999,Agriculture,Agriculture +278909,Agriculture,Agriculture +278189,Agriculture,Agriculture +273936,Agriculture,Agriculture +273935,Agriculture,Agriculture +273934,Agriculture,Agriculture +273933,Agriculture,Agriculture +249591,Agriculture,Agriculture +249590,Agriculture,Agriculture +249589,Agriculture,Agriculture +249535,Agriculture,Agriculture +249526,Agriculture,Agriculture +249523,Agriculture,Agriculture +249520,Agriculture,Agriculture +249517,Agriculture,Agriculture +249513,Agriculture,Agriculture +249507,Agriculture,Agriculture +249505,Agriculture,Agriculture +249493,Agriculture,Agriculture +435975,Agriculture,Agriculture +434568,Agriculture,Agriculture +434567,Agriculture,Agriculture +434084,Agriculture,Agriculture +432923,Agriculture,Agriculture +432922,Agriculture,Agriculture +431894,Agriculture,Agriculture +431893,Agriculture,Agriculture +431886,Agriculture,Agriculture +430186,Agriculture,Agriculture +430184,Agriculture,Agriculture +428946,Agriculture,Agriculture +428945,Agriculture,Agriculture +428943,Agriculture,Agriculture +428942,Agriculture,Agriculture +428940,Agriculture,Agriculture +428939,Agriculture,Agriculture +428937,Agriculture,Agriculture +425960,Agriculture,Agriculture +425932,Agriculture,Agriculture +425915,Agriculture,Agriculture +424480,Agriculture,Agriculture +424479,Agriculture,Agriculture +424478,Agriculture,Agriculture +421924,Agriculture,Agriculture +421885,Agriculture,Agriculture +421882,Agriculture,Agriculture +421879,Agriculture,Agriculture +421876,Agriculture,Agriculture +421871,Agriculture,Agriculture +421869,Agriculture,Agriculture +421866,Agriculture,Agriculture +419775,Agriculture,Agriculture +419772,Agriculture,Agriculture +416180,Agriculture,Agriculture +416177,Agriculture,Agriculture +416175,Agriculture,Agriculture +416171,Agriculture,Agriculture +416169,Agriculture,Agriculture +416165,Agriculture,Agriculture +416164,Agriculture,Agriculture +416161,Agriculture,Agriculture +416159,Agriculture,Agriculture +416155,Agriculture,Agriculture +416154,Agriculture,Agriculture +416152,Agriculture,Agriculture +416149,Agriculture,Agriculture +416148,Agriculture,Agriculture +416146,Agriculture,Agriculture +416142,Agriculture,Agriculture +416139,Agriculture,Agriculture +416129,Agriculture,Agriculture +416126,Agriculture,Agriculture +416122,Agriculture,Agriculture +416120,Agriculture,Agriculture +416119,Agriculture,Agriculture +416118,Agriculture,Agriculture +416116,Agriculture,Agriculture +416112,Agriculture,Agriculture +416033,Agriculture,Agriculture +416027,Agriculture,Agriculture +416024,Agriculture,Agriculture +416022,Agriculture,Agriculture +416019,Agriculture,Agriculture +416017,Agriculture,Agriculture +416015,Agriculture,Agriculture +416014,Agriculture,Agriculture +416012,Agriculture,Agriculture +416009,Agriculture,Agriculture +416008,Agriculture,Agriculture +416007,Agriculture,Agriculture +416005,Agriculture,Agriculture +416004,Agriculture,Agriculture +416003,Agriculture,Agriculture +416001,Agriculture,Agriculture +415998,Agriculture,Agriculture +415997,Agriculture,Agriculture +415995,Agriculture,Agriculture +415994,Agriculture,Agriculture +415991,Agriculture,Agriculture +415987,Agriculture,Agriculture +415985,Agriculture,Agriculture +415982,Agriculture,Agriculture +415980,Agriculture,Agriculture +411294,Agriculture,Agriculture +411293,Agriculture,Agriculture +410190,Agriculture,Agriculture +409828,Agriculture,Agriculture +409824,Agriculture,Agriculture +409819,Agriculture,Agriculture +408296,Agriculture,Agriculture +406836,Agriculture,Agriculture +405532,Agriculture,Agriculture +405528,Agriculture,Agriculture +405522,Agriculture,Agriculture +402023,Agriculture,Agriculture +402019,Agriculture,Agriculture +402004,Agriculture,Agriculture +400679,Agriculture,Agriculture +400672,Agriculture,Agriculture +400664,Agriculture,Agriculture +399314,Agriculture,Agriculture +393796,Agriculture,Agriculture +389989,Agriculture,Agriculture +389988,Agriculture,Agriculture +389986,Agriculture,Agriculture +389961,Agriculture,Agriculture +389959,Agriculture,Agriculture +389956,Agriculture,Agriculture +389953,Agriculture,Agriculture +389946,Agriculture,Agriculture +389944,Agriculture,Agriculture +389920,Agriculture,Agriculture +389918,Agriculture,Agriculture +389914,Agriculture,Agriculture +389913,Agriculture,Agriculture +389911,Agriculture,Agriculture +389910,Agriculture,Agriculture +389907,Agriculture,Agriculture +389905,Agriculture,Agriculture +389898,Agriculture,Agriculture +389897,Agriculture,Agriculture +389894,Agriculture,Agriculture +389892,Agriculture,Agriculture +389888,Agriculture,Agriculture +389885,Agriculture,Agriculture +389884,Agriculture,Agriculture +389882,Agriculture,Agriculture +389877,Agriculture,Agriculture +385602,Agriculture,Agriculture +385576,Agriculture,Agriculture +383050,Agriculture,Agriculture +383048,Agriculture,Agriculture +380166,Agriculture,Agriculture +377290,Agriculture,Agriculture +372499,Agriculture,Agriculture +372498,Agriculture,Agriculture +372497,Agriculture,Agriculture +372496,Agriculture,Agriculture +372495,Agriculture,Agriculture +372494,Agriculture,Agriculture +372492,Agriculture,Agriculture +372490,Agriculture,Agriculture +372489,Agriculture,Agriculture +372483,Agriculture,Agriculture +372482,Agriculture,Agriculture +372476,Agriculture,Agriculture +363702,Agriculture,Agriculture +360007,Agriculture,Agriculture +356300,Agriculture,Agriculture +356299,Agriculture,Agriculture +354342,Agriculture,Agriculture +354341,Agriculture,Agriculture +343439,Agriculture,Agriculture +338660,Agriculture,Agriculture +338658,Agriculture,Agriculture +338657,Agriculture,Agriculture +335548,Agriculture,Agriculture +335547,Agriculture,Agriculture +335535,Agriculture,Agriculture +522778,Agriculture,Agriculture +522777,Agriculture,Agriculture +522775,Agriculture,Agriculture +522772,Agriculture,Agriculture +522769,Agriculture,Agriculture +522761,Agriculture,Agriculture +522759,Agriculture,Agriculture +522750,Agriculture,Agriculture +522749,Agriculture,Agriculture +519820,Agriculture,Agriculture +519819,Agriculture,Agriculture +519779,Agriculture,Agriculture +519773,Agriculture,Agriculture +519768,Agriculture,Agriculture +519765,Agriculture,Agriculture +519764,Agriculture,Agriculture +519763,Agriculture,Agriculture +517994,Agriculture,Agriculture +517992,Agriculture,Agriculture +517988,Agriculture,Agriculture +517986,Agriculture,Agriculture +517983,Agriculture,Agriculture +517981,Agriculture,Agriculture +517979,Agriculture,Agriculture +517974,Agriculture,Agriculture +515646,Agriculture,Agriculture +515644,Agriculture,Agriculture +515643,Agriculture,Agriculture +515642,Agriculture,Agriculture +515640,Agriculture,Agriculture +515639,Agriculture,Agriculture +514094,Agriculture,Agriculture +514093,Agriculture,Agriculture +514092,Agriculture,Agriculture +514087,Agriculture,Agriculture +512790,Agriculture,Agriculture +512787,Agriculture,Agriculture +512785,Agriculture,Agriculture +512781,Agriculture,Agriculture +512778,Agriculture,Agriculture +512775,Agriculture,Agriculture +512772,Agriculture,Agriculture +512770,Agriculture,Agriculture +512767,Agriculture,Agriculture +512764,Agriculture,Agriculture +512763,Agriculture,Agriculture +512761,Agriculture,Agriculture +512760,Agriculture,Agriculture +512758,Agriculture,Agriculture +512754,Agriculture,Agriculture +512752,Agriculture,Agriculture +512751,Agriculture,Agriculture +512748,Agriculture,Agriculture +512747,Agriculture,Agriculture +512745,Agriculture,Agriculture +511057,Agriculture,Agriculture +511052,Agriculture,Agriculture +511051,Agriculture,Agriculture +511048,Agriculture,Agriculture +511047,Agriculture,Agriculture +511039,Agriculture,Agriculture +511015,Agriculture,Agriculture +511005,Agriculture,Agriculture +511002,Agriculture,Agriculture +511000,Agriculture,Agriculture +510998,Agriculture,Agriculture +510995,Agriculture,Agriculture +510992,Agriculture,Agriculture +510991,Agriculture,Agriculture +510989,Agriculture,Agriculture +510987,Agriculture,Agriculture +510984,Agriculture,Agriculture +510983,Agriculture,Agriculture +510979,Agriculture,Agriculture +510978,Agriculture,Agriculture +510977,Agriculture,Agriculture +510976,Agriculture,Agriculture +510975,Agriculture,Agriculture +510974,Agriculture,Agriculture +510973,Agriculture,Agriculture +510961,Agriculture,Agriculture +510958,Agriculture,Agriculture +510956,Agriculture,Agriculture +510953,Agriculture,Agriculture +510949,Agriculture,Agriculture +509022,Agriculture,Agriculture +509020,Agriculture,Agriculture +509019,Agriculture,Agriculture +509018,Agriculture,Agriculture +509017,Agriculture,Agriculture +509016,Agriculture,Agriculture +509013,Agriculture,Agriculture +509012,Agriculture,Agriculture +509011,Agriculture,Agriculture +509010,Agriculture,Agriculture +509008,Agriculture,Agriculture +509007,Agriculture,Agriculture +509006,Agriculture,Agriculture +509005,Agriculture,Agriculture +509004,Agriculture,Agriculture +509003,Agriculture,Agriculture +509002,Agriculture,Agriculture +509000,Agriculture,Agriculture +508999,Agriculture,Agriculture +508998,Agriculture,Agriculture +508997,Agriculture,Agriculture +508996,Agriculture,Agriculture +508994,Agriculture,Agriculture +508993,Agriculture,Agriculture +508992,Agriculture,Agriculture +508991,Agriculture,Agriculture +508990,Agriculture,Agriculture +508988,Agriculture,Agriculture +508987,Agriculture,Agriculture +508985,Agriculture,Agriculture +508984,Agriculture,Agriculture +508983,Agriculture,Agriculture +508982,Agriculture,Agriculture +508981,Agriculture,Agriculture +508980,Agriculture,Agriculture +508979,Agriculture,Agriculture +508978,Agriculture,Agriculture +508977,Agriculture,Agriculture +508976,Agriculture,Agriculture +508975,Agriculture,Agriculture +508974,Agriculture,Agriculture +508973,Agriculture,Agriculture +508972,Agriculture,Agriculture +508768,Agriculture,Agriculture +508763,Agriculture,Agriculture +508761,Agriculture,Agriculture +508758,Agriculture,Agriculture +508757,Agriculture,Agriculture +508753,Agriculture,Agriculture +508745,Agriculture,Agriculture +508603,Agriculture,Agriculture +508600,Agriculture,Agriculture +508597,Agriculture,Agriculture +508595,Agriculture,Agriculture +508591,Agriculture,Agriculture +508589,Agriculture,Agriculture +508541,Agriculture,Agriculture +508539,Agriculture,Agriculture +508538,Agriculture,Agriculture +508537,Agriculture,Agriculture +508534,Agriculture,Agriculture +508532,Agriculture,Agriculture +504817,Agriculture,Agriculture +504813,Agriculture,Agriculture +504809,Agriculture,Agriculture +504803,Agriculture,Agriculture +504799,Agriculture,Agriculture +504791,Agriculture,Agriculture +504764,Agriculture,Agriculture +504757,Agriculture,Agriculture +504755,Agriculture,Agriculture +502360,Agriculture,Agriculture +502358,Agriculture,Agriculture +502357,Agriculture,Agriculture +502356,Agriculture,Agriculture +502353,Agriculture,Agriculture +502349,Agriculture,Agriculture +502347,Agriculture,Agriculture +502344,Agriculture,Agriculture +502339,Agriculture,Agriculture +502312,Agriculture,Agriculture +502310,Agriculture,Agriculture +502308,Agriculture,Agriculture +502303,Agriculture,Agriculture +502301,Agriculture,Agriculture +502298,Agriculture,Agriculture +502296,Agriculture,Agriculture +502293,Agriculture,Agriculture +502291,Agriculture,Agriculture +498927,Agriculture,Agriculture +498926,Agriculture,Agriculture +498924,Agriculture,Agriculture +498921,Agriculture,Agriculture +498920,Agriculture,Agriculture +498914,Agriculture,Agriculture +498910,Agriculture,Agriculture +498907,Agriculture,Agriculture +498903,Agriculture,Agriculture +498899,Agriculture,Agriculture +498890,Agriculture,Agriculture +498889,Agriculture,Agriculture +498884,Agriculture,Agriculture +498882,Agriculture,Agriculture +498877,Agriculture,Agriculture +495209,Agriculture,Agriculture +495205,Agriculture,Agriculture +495203,Agriculture,Agriculture +495202,Agriculture,Agriculture +495201,Agriculture,Agriculture +495199,Agriculture,Agriculture +493622,Agriculture,Agriculture +493263,Agriculture,Agriculture +493262,Agriculture,Agriculture +493260,Agriculture,Agriculture +493258,Agriculture,Agriculture +493254,Agriculture,Agriculture +491183,Agriculture,Agriculture +491171,Agriculture,Agriculture +491167,Agriculture,Agriculture +491163,Agriculture,Agriculture +491159,Agriculture,Agriculture +491155,Agriculture,Agriculture +491151,Agriculture,Agriculture +491090,Agriculture,Agriculture +491089,Agriculture,Agriculture +491085,Agriculture,Agriculture +491083,Agriculture,Agriculture +491082,Agriculture,Agriculture +491081,Agriculture,Agriculture +491080,Agriculture,Agriculture +491076,Agriculture,Agriculture +491075,Agriculture,Agriculture +491074,Agriculture,Agriculture +491072,Agriculture,Agriculture +491071,Agriculture,Agriculture +491068,Agriculture,Agriculture +491066,Agriculture,Agriculture +491053,Agriculture,Agriculture +491045,Agriculture,Agriculture +491044,Agriculture,Agriculture +491041,Agriculture,Agriculture +491037,Agriculture,Agriculture +491034,Agriculture,Agriculture +491031,Agriculture,Agriculture +491029,Agriculture,Agriculture +487142,Agriculture,Agriculture +487139,Agriculture,Agriculture +487137,Agriculture,Agriculture +487133,Agriculture,Agriculture +487132,Agriculture,Agriculture +487130,Agriculture,Agriculture +487126,Agriculture,Agriculture +487122,Agriculture,Agriculture +487118,Agriculture,Agriculture +484742,Agriculture,Agriculture +484739,Agriculture,Agriculture +484736,Agriculture,Agriculture +484719,Agriculture,Agriculture +484718,Agriculture,Agriculture +482208,Agriculture,Agriculture +482206,Agriculture,Agriculture +482204,Agriculture,Agriculture +482202,Agriculture,Agriculture +482201,Agriculture,Agriculture +482200,Agriculture,Agriculture +482199,Agriculture,Agriculture +482198,Agriculture,Agriculture +479819,Agriculture,Agriculture +479815,Agriculture,Agriculture +477500,Agriculture,Agriculture +477497,Agriculture,Agriculture +477496,Agriculture,Agriculture +477494,Agriculture,Agriculture +475346,Agriculture,Agriculture +473295,Agriculture,Agriculture +473293,Agriculture,Agriculture +473291,Agriculture,Agriculture +471138,Agriculture,Agriculture +471137,Agriculture,Agriculture +466239,Agriculture,Agriculture +466238,Agriculture,Agriculture +466237,Agriculture,Agriculture +466236,Agriculture,Agriculture +466235,Agriculture,Agriculture +466234,Agriculture,Agriculture +466233,Agriculture,Agriculture +466231,Agriculture,Agriculture +466230,Agriculture,Agriculture +466229,Agriculture,Agriculture +466228,Agriculture,Agriculture +466227,Agriculture,Agriculture +466226,Agriculture,Agriculture +466223,Agriculture,Agriculture +466222,Agriculture,Agriculture +466220,Agriculture,Agriculture +466218,Agriculture,Agriculture +466217,Agriculture,Agriculture +464872,Agriculture,Agriculture +464868,Agriculture,Agriculture +464858,Agriculture,Agriculture +464849,Agriculture,Agriculture +462773,Agriculture,Agriculture +462770,Agriculture,Agriculture +461361,Agriculture,Agriculture +461155,Agriculture,Agriculture +461154,Agriculture,Agriculture +461153,Agriculture,Agriculture +461148,Agriculture,Agriculture +461147,Agriculture,Agriculture +459151,Agriculture,Agriculture +459150,Agriculture,Agriculture +458931,Agriculture,Agriculture +458039,Agriculture,Agriculture +457961,Agriculture,Agriculture +457960,Agriculture,Agriculture +457958,Agriculture,Agriculture +457957,Agriculture,Agriculture +457014,Agriculture,Agriculture +457013,Agriculture,Agriculture +454584,Agriculture,Agriculture +454573,Agriculture,Agriculture +451076,Agriculture,Agriculture +451074,Agriculture,Agriculture +448409,Agriculture,Agriculture +446096,Agriculture,Agriculture +444382,Agriculture,Agriculture +444349,Agriculture,Agriculture +444348,Agriculture,Agriculture +444235,Agriculture,Agriculture +444234,Agriculture,Agriculture +444217,Agriculture,Agriculture +444215,Agriculture,Agriculture +443166,Agriculture,Agriculture +439178,Agriculture,Agriculture +438443,Agriculture,Agriculture +438441,Agriculture,Agriculture +438439,Agriculture,Agriculture +438436,Agriculture,Agriculture +438433,Agriculture,Agriculture +438429,Agriculture,Agriculture +438411,Agriculture,Agriculture +438409,Agriculture,Agriculture +438406,Agriculture,Agriculture +438404,Agriculture,Agriculture +438401,Agriculture,Agriculture +438399,Agriculture,Agriculture +438396,Agriculture,Agriculture +438395,Agriculture,Agriculture +438393,Agriculture,Agriculture +438388,Agriculture,Agriculture +438382,Agriculture,Agriculture +438379,Agriculture,Agriculture +438377,Agriculture,Agriculture +438375,Agriculture,Agriculture +438369,Agriculture,Agriculture +438365,Agriculture,Agriculture +438362,Agriculture,Agriculture +438360,Agriculture,Agriculture +438359,Agriculture,Agriculture +438353,Agriculture,Agriculture +438352,Agriculture,Agriculture +438349,Agriculture,Agriculture +438348,Agriculture,Agriculture +438346,Agriculture,Agriculture +438344,Agriculture,Agriculture +438342,Agriculture,Agriculture +438341,Agriculture,Agriculture +438338,Agriculture,Agriculture +438337,Agriculture,Agriculture +438336,Agriculture,Agriculture +438330,Agriculture,Agriculture +438329,Agriculture,Agriculture +438327,Agriculture,Agriculture +438326,Agriculture,Agriculture +438325,Agriculture,Agriculture +438324,Agriculture,Agriculture +438322,Agriculture,Agriculture +438319,Agriculture,Agriculture +438318,Agriculture,Agriculture +438316,Agriculture,Agriculture +438315,Agriculture,Agriculture +438314,Agriculture,Agriculture +436743,Agriculture,Agriculture +544076,Agriculture,Agriculture +543920,Agriculture,Agriculture +543916,Agriculture,Agriculture +541567,Agriculture,Agriculture +538346,Agriculture,Agriculture +538344,Agriculture,Agriculture +538341,Agriculture,Agriculture +538339,Agriculture,Agriculture +538337,Agriculture,Agriculture +538324,Agriculture,Agriculture +538317,Agriculture,Agriculture +535118,Agriculture,Agriculture +535116,Agriculture,Agriculture +535113,Agriculture,Agriculture +535111,Agriculture,Agriculture +535109,Agriculture,Agriculture +535107,Agriculture,Agriculture +535106,Agriculture,Agriculture +535104,Agriculture,Agriculture +535103,Agriculture,Agriculture +535100,Agriculture,Agriculture +535097,Agriculture,Agriculture +535095,Agriculture,Agriculture +535093,Agriculture,Agriculture +535091,Agriculture,Agriculture +535083,Agriculture,Agriculture +535082,Agriculture,Agriculture +535081,Agriculture,Agriculture +535080,Agriculture,Agriculture +535079,Agriculture,Agriculture +535077,Agriculture,Agriculture +535076,Agriculture,Agriculture +535075,Agriculture,Agriculture +535074,Agriculture,Agriculture +535072,Agriculture,Agriculture +535069,Agriculture,Agriculture +535067,Agriculture,Agriculture +535065,Agriculture,Agriculture +531551,Agriculture,Agriculture +528843,Agriculture,Agriculture +528829,Agriculture,Agriculture +528824,Agriculture,Agriculture +528818,Agriculture,Agriculture +526223,Agriculture,Agriculture +526164,Agriculture,Agriculture +526161,Agriculture,Agriculture +526154,Agriculture,Agriculture +526147,Agriculture,Agriculture +526142,Agriculture,Agriculture +526141,Agriculture,Agriculture +526138,Agriculture,Agriculture +526119,Agriculture,Agriculture +526111,Agriculture,Agriculture +526106,Agriculture,Agriculture +526101,Agriculture,Agriculture +526096,Agriculture,Agriculture +526093,Agriculture,Agriculture +526090,Agriculture,Agriculture +526072,Agriculture,Agriculture +526066,Agriculture,Agriculture +526064,Agriculture,Agriculture +526061,Agriculture,Agriculture +526058,Agriculture,Agriculture +522886,Agriculture,Agriculture +522885,Agriculture,Agriculture +522882,Agriculture,Agriculture +522879,Agriculture,Agriculture +522874,Agriculture,Agriculture +522871,Agriculture,Agriculture +522868,Agriculture,Agriculture +522866,Agriculture,Agriculture +522864,Agriculture,Agriculture +522862,Agriculture,Agriculture +443166,Consumer Issues,Consumer Issues +439178,Consumer Issues,Consumer Issues +438318,Consumer Issues,Consumer Issues +438316,Consumer Issues,Consumer Issues +436743,Consumer Issues,Consumer Issues +435975,Consumer Issues,Consumer Issues +434568,Consumer Issues,Consumer Issues +434567,Consumer Issues,Consumer Issues +434084,Consumer Issues,Consumer Issues +543920,Consumer Issues,Consumer Issues +543916,Consumer Issues,Consumer Issues +538324,Consumer Issues,Consumer Issues +535118,Consumer Issues,Consumer Issues +535116,Consumer Issues,Consumer Issues +535113,Consumer Issues,Consumer Issues +535111,Consumer Issues,Consumer Issues +535109,Consumer Issues,Consumer Issues +535107,Consumer Issues,Consumer Issues +535106,Consumer Issues,Consumer Issues +535104,Consumer Issues,Consumer Issues +535103,Consumer Issues,Consumer Issues +535100,Consumer Issues,Consumer Issues +535097,Consumer Issues,Consumer Issues +535095,Consumer Issues,Consumer Issues +535093,Consumer Issues,Consumer Issues +535091,Consumer Issues,Consumer Issues +535083,Consumer Issues,Consumer Issues +535082,Consumer Issues,Consumer Issues +535081,Consumer Issues,Consumer Issues +535080,Consumer Issues,Consumer Issues +535079,Consumer Issues,Consumer Issues +535077,Consumer Issues,Consumer Issues +535076,Consumer Issues,Consumer Issues +535075,Consumer Issues,Consumer Issues +535074,Consumer Issues,Consumer Issues +535072,Consumer Issues,Consumer Issues +535069,Consumer Issues,Consumer Issues +535067,Consumer Issues,Consumer Issues +535065,Consumer Issues,Consumer Issues +531551,Consumer Issues,Consumer Issues +526158,Consumer Issues,Consumer Issues +526142,Consumer Issues,Consumer Issues +522886,Consumer Issues,Consumer Issues +522879,Consumer Issues,Consumer Issues +522874,Consumer Issues,Consumer Issues +522862,Consumer Issues,Consumer Issues +519820,Consumer Issues,Consumer Issues +519819,Consumer Issues,Consumer Issues +519768,Consumer Issues,Consumer Issues +519765,Consumer Issues,Consumer Issues +519764,Consumer Issues,Consumer Issues +517994,Consumer Issues,Consumer Issues +517992,Consumer Issues,Consumer Issues +517988,Consumer Issues,Consumer Issues +517983,Consumer Issues,Consumer Issues +517981,Consumer Issues,Consumer Issues +517979,Consumer Issues,Consumer Issues +517974,Consumer Issues,Consumer Issues +514093,Consumer Issues,Consumer Issues +514092,Consumer Issues,Consumer Issues +512790,Consumer Issues,Consumer Issues +512787,Consumer Issues,Consumer Issues +512785,Consumer Issues,Consumer Issues +512781,Consumer Issues,Consumer Issues +512778,Consumer Issues,Consumer Issues +512775,Consumer Issues,Consumer Issues +512772,Consumer Issues,Consumer Issues +512770,Consumer Issues,Consumer Issues +512767,Consumer Issues,Consumer Issues +512751,Consumer Issues,Consumer Issues +512748,Consumer Issues,Consumer Issues +512747,Consumer Issues,Consumer Issues +512745,Consumer Issues,Consumer Issues +511052,Consumer Issues,Consumer Issues +511051,Consumer Issues,Consumer Issues +511048,Consumer Issues,Consumer Issues +511047,Consumer Issues,Consumer Issues +511015,Consumer Issues,Consumer Issues +510974,Consumer Issues,Consumer Issues +509022,Consumer Issues,Consumer Issues +509020,Consumer Issues,Consumer Issues +509019,Consumer Issues,Consumer Issues +509018,Consumer Issues,Consumer Issues +509017,Consumer Issues,Consumer Issues +509016,Consumer Issues,Consumer Issues +509013,Consumer Issues,Consumer Issues +509012,Consumer Issues,Consumer Issues +509011,Consumer Issues,Consumer Issues +509010,Consumer Issues,Consumer Issues +509008,Consumer Issues,Consumer Issues +509007,Consumer Issues,Consumer Issues +509006,Consumer Issues,Consumer Issues +509005,Consumer Issues,Consumer Issues +509004,Consumer Issues,Consumer Issues +509003,Consumer Issues,Consumer Issues +509002,Consumer Issues,Consumer Issues +509000,Consumer Issues,Consumer Issues +508999,Consumer Issues,Consumer Issues +508998,Consumer Issues,Consumer Issues +508997,Consumer Issues,Consumer Issues +508996,Consumer Issues,Consumer Issues +508994,Consumer Issues,Consumer Issues +508993,Consumer Issues,Consumer Issues +508992,Consumer Issues,Consumer Issues +508991,Consumer Issues,Consumer Issues +508990,Consumer Issues,Consumer Issues +508988,Consumer Issues,Consumer Issues +508987,Consumer Issues,Consumer Issues +508985,Consumer Issues,Consumer Issues +508984,Consumer Issues,Consumer Issues +508983,Consumer Issues,Consumer Issues +508982,Consumer Issues,Consumer Issues +508981,Consumer Issues,Consumer Issues +508980,Consumer Issues,Consumer Issues +508979,Consumer Issues,Consumer Issues +508978,Consumer Issues,Consumer Issues +508977,Consumer Issues,Consumer Issues +508976,Consumer Issues,Consumer Issues +508975,Consumer Issues,Consumer Issues +508974,Consumer Issues,Consumer Issues +508973,Consumer Issues,Consumer Issues +508972,Consumer Issues,Consumer Issues +508763,Consumer Issues,Consumer Issues +508537,Consumer Issues,Consumer Issues +508534,Consumer Issues,Consumer Issues +504813,Consumer Issues,Consumer Issues +504799,Consumer Issues,Consumer Issues +504791,Consumer Issues,Consumer Issues +502349,Consumer Issues,Consumer Issues +502296,Consumer Issues,Consumer Issues +502291,Consumer Issues,Consumer Issues +498927,Consumer Issues,Consumer Issues +498926,Consumer Issues,Consumer Issues +498914,Consumer Issues,Consumer Issues +498890,Consumer Issues,Consumer Issues +498882,Consumer Issues,Consumer Issues +498877,Consumer Issues,Consumer Issues +495209,Consumer Issues,Consumer Issues +495205,Consumer Issues,Consumer Issues +495203,Consumer Issues,Consumer Issues +495202,Consumer Issues,Consumer Issues +495201,Consumer Issues,Consumer Issues +495199,Consumer Issues,Consumer Issues +493622,Consumer Issues,Consumer Issues +493263,Consumer Issues,Consumer Issues +493258,Consumer Issues,Consumer Issues +493254,Consumer Issues,Consumer Issues +491171,Consumer Issues,Consumer Issues +487137,Consumer Issues,Consumer Issues +487126,Consumer Issues,Consumer Issues +487122,Consumer Issues,Consumer Issues +487118,Consumer Issues,Consumer Issues +484718,Consumer Issues,Consumer Issues +475346,Consumer Issues,Consumer Issues +471138,Consumer Issues,Consumer Issues +466236,Consumer Issues,Consumer Issues +466223,Consumer Issues,Consumer Issues +466222,Consumer Issues,Consumer Issues +466218,Consumer Issues,Consumer Issues +462773,Consumer Issues,Consumer Issues +462770,Consumer Issues,Consumer Issues +461361,Consumer Issues,Consumer Issues +461147,Consumer Issues,Consumer Issues +446096,Consumer Issues,Consumer Issues +444349,Consumer Issues,Consumer Issues +444348,Consumer Issues,Consumer Issues +543920,Education,Education +473291,Employment and Training,Employment and Training +444215,Employment and Training,Employment and Training +504803,Employment and Training,Employment and Training +502360,Employment and Training,Employment and Training +502291,Environment,Environment +498927,Environment,Environment +498926,Environment,Environment +498924,Environment,Environment +498877,Environment,Environment +493254,Environment,Environment +491171,Environment,Environment +491159,Environment,Environment +491155,Environment,Environment +491151,Environment,Environment +491090,Environment,Environment +491089,Environment,Environment +491085,Environment,Environment +491083,Environment,Environment +491082,Environment,Environment +491081,Environment,Environment +491080,Environment,Environment +491076,Environment,Environment +491075,Environment,Environment +491074,Environment,Environment +491072,Environment,Environment +491071,Environment,Environment +491066,Environment,Environment +491053,Environment,Environment +491044,Environment,Environment +491041,Environment,Environment +491037,Environment,Environment +491034,Environment,Environment +491031,Environment,Environment +491029,Environment,Environment +487139,Environment,Environment +487137,Environment,Environment +487132,Environment,Environment +482206,Environment,Environment +471137,Environment,Environment +466239,Environment,Environment +466238,Environment,Environment +466237,Environment,Environment +466236,Environment,Environment +466235,Environment,Environment +466234,Environment,Environment +466233,Environment,Environment +466231,Environment,Environment +466230,Environment,Environment +466229,Environment,Environment +466228,Environment,Environment +466227,Environment,Environment +466226,Environment,Environment +466223,Environment,Environment +466222,Environment,Environment +466220,Environment,Environment +466218,Environment,Environment +464872,Environment,Environment +464868,Environment,Environment +464858,Environment,Environment +462773,Environment,Environment +462770,Environment,Environment +461147,Environment,Environment +446096,Environment,Environment +443166,Environment,Environment +438388,Environment,Environment +434568,Environment,Environment +434567,Environment,Environment +543916,Environment,Environment +538341,Environment,Environment +538324,Environment,Environment +535118,Environment,Environment +535116,Environment,Environment +535113,Environment,Environment +535111,Environment,Environment +535109,Environment,Environment +535107,Environment,Environment +535106,Environment,Environment +535104,Environment,Environment +535103,Environment,Environment +535100,Environment,Environment +535097,Environment,Environment +535095,Environment,Environment +535093,Environment,Environment +535091,Environment,Environment +535083,Environment,Environment +535082,Environment,Environment +535081,Environment,Environment +535080,Environment,Environment +535079,Environment,Environment +535077,Environment,Environment +535076,Environment,Environment +535075,Environment,Environment +535074,Environment,Environment +535072,Environment,Environment +535069,Environment,Environment +535067,Environment,Environment +535065,Environment,Environment +531551,Environment,Environment +528829,Environment,Environment +526161,Environment,Environment +526158,Environment,Environment +526147,Environment,Environment +526119,Environment,Environment +522882,Environment,Environment +522879,Environment,Environment +522874,Environment,Environment +522862,Environment,Environment +522750,Environment,Environment +517981,Environment,Environment +515642,Environment,Environment +515640,Environment,Environment +515639,Environment,Environment +514094,Environment,Environment +514087,Environment,Environment +512790,Environment,Environment +512787,Environment,Environment +512785,Environment,Environment +512781,Environment,Environment +512778,Environment,Environment +512775,Environment,Environment +512772,Environment,Environment +512770,Environment,Environment +512767,Environment,Environment +512751,Environment,Environment +511057,Environment,Environment +511052,Environment,Environment +511051,Environment,Environment +511015,Environment,Environment +511005,Environment,Environment +511002,Environment,Environment +511000,Environment,Environment +510998,Environment,Environment +510995,Environment,Environment +510992,Environment,Environment +510991,Environment,Environment +510989,Environment,Environment +510987,Environment,Environment +510984,Environment,Environment +510983,Environment,Environment +510979,Environment,Environment +510978,Environment,Environment +510977,Environment,Environment +510976,Environment,Environment +510975,Environment,Environment +510973,Environment,Environment +510958,Environment,Environment +510956,Environment,Environment +510953,Environment,Environment +510949,Environment,Environment +508761,Environment,Environment +508758,Environment,Environment +508757,Environment,Environment +508753,Environment,Environment +508745,Environment,Environment +508603,Environment,Environment +508600,Environment,Environment +508597,Environment,Environment +508595,Environment,Environment +508591,Environment,Environment +508589,Environment,Environment +508541,Environment,Environment +508539,Environment,Environment +508538,Environment,Environment +508537,Environment,Environment +508534,Environment,Environment +504813,Environment,Environment +502349,Environment,Environment +502347,Environment,Environment +535065,Financial Institutions,Financial Institutions +526223,Financial Institutions,Financial Institutions +249590,Financial Institutions,Financial Institutions +249535,Financial Institutions,Financial Institutions +249526,Financial Institutions,Financial Institutions +249523,Financial Institutions,Financial Institutions +249520,Financial Institutions,Financial Institutions +249517,Financial Institutions,Financial Institutions +249513,Financial Institutions,Financial Institutions +249507,Financial Institutions,Financial Institutions +249505,Financial Institutions,Financial Institutions +249493,Financial Institutions,Financial Institutions +311190,Financial Institutions,Financial Institutions +311005,Financial Institutions,Financial Institutions +311003,Financial Institutions,Financial Institutions +310999,Financial Institutions,Financial Institutions +526119,Financial Institutions,Financial Institutions +522882,Financial Institutions,Financial Institutions +522874,Financial Institutions,Financial Institutions +522775,Financial Institutions,Financial Institutions +522769,Financial Institutions,Financial Institutions +519763,Financial Institutions,Financial Institutions +517994,Financial Institutions,Financial Institutions +517986,Financial Institutions,Financial Institutions +517974,Financial Institutions,Financial Institutions +515646,Financial Institutions,Financial Institutions +515642,Financial Institutions,Financial Institutions +515640,Financial Institutions,Financial Institutions +514094,Financial Institutions,Financial Institutions +514087,Financial Institutions,Financial Institutions +512790,Financial Institutions,Financial Institutions +512787,Financial Institutions,Financial Institutions +512785,Financial Institutions,Financial Institutions +512781,Financial Institutions,Financial Institutions +512778,Financial Institutions,Financial Institutions +512775,Financial Institutions,Financial Institutions +512772,Financial Institutions,Financial Institutions +512770,Financial Institutions,Financial Institutions +512767,Financial Institutions,Financial Institutions +512764,Financial Institutions,Financial Institutions +512763,Financial Institutions,Financial Institutions +512761,Financial Institutions,Financial Institutions +512760,Financial Institutions,Financial Institutions +512758,Financial Institutions,Financial Institutions +512754,Financial Institutions,Financial Institutions +512752,Financial Institutions,Financial Institutions +512751,Financial Institutions,Financial Institutions +511039,Financial Institutions,Financial Institutions +511015,Financial Institutions,Financial Institutions +511005,Financial Institutions,Financial Institutions +511002,Financial Institutions,Financial Institutions +511000,Financial Institutions,Financial Institutions +510998,Financial Institutions,Financial Institutions +510995,Financial Institutions,Financial Institutions +510992,Financial Institutions,Financial Institutions +510991,Financial Institutions,Financial Institutions +510989,Financial Institutions,Financial Institutions +510987,Financial Institutions,Financial Institutions +510984,Financial Institutions,Financial Institutions +510983,Financial Institutions,Financial Institutions +510979,Financial Institutions,Financial Institutions +510978,Financial Institutions,Financial Institutions +510977,Financial Institutions,Financial Institutions +510976,Financial Institutions,Financial Institutions +510975,Financial Institutions,Financial Institutions +510973,Financial Institutions,Financial Institutions +510958,Financial Institutions,Financial Institutions +510956,Financial Institutions,Financial Institutions +510953,Financial Institutions,Financial Institutions +510949,Financial Institutions,Financial Institutions +508761,Financial Institutions,Financial Institutions +508758,Financial Institutions,Financial Institutions +508757,Financial Institutions,Financial Institutions +508753,Financial Institutions,Financial Institutions +508745,Financial Institutions,Financial Institutions +508603,Financial Institutions,Financial Institutions +508600,Financial Institutions,Financial Institutions +508597,Financial Institutions,Financial Institutions +508595,Financial Institutions,Financial Institutions +508591,Financial Institutions,Financial Institutions +508589,Financial Institutions,Financial Institutions +508541,Financial Institutions,Financial Institutions +508539,Financial Institutions,Financial Institutions +508538,Financial Institutions,Financial Institutions +508532,Financial Institutions,Financial Institutions +502357,Financial Institutions,Financial Institutions +502344,Financial Institutions,Financial Institutions +502339,Financial Institutions,Financial Institutions +502303,Financial Institutions,Financial Institutions +502298,Financial Institutions,Financial Institutions +502291,Financial Institutions,Financial Institutions +498921,Financial Institutions,Financial Institutions +498920,Financial Institutions,Financial Institutions +498903,Financial Institutions,Financial Institutions +498889,Financial Institutions,Financial Institutions +498884,Financial Institutions,Financial Institutions +498877,Financial Institutions,Financial Institutions +491183,Financial Institutions,Financial Institutions +491163,Financial Institutions,Financial Institutions +491159,Financial Institutions,Financial Institutions +491155,Financial Institutions,Financial Institutions +491151,Financial Institutions,Financial Institutions +491090,Financial Institutions,Financial Institutions +491089,Financial Institutions,Financial Institutions +491085,Financial Institutions,Financial Institutions +491083,Financial Institutions,Financial Institutions +491082,Financial Institutions,Financial Institutions +491081,Financial Institutions,Financial Institutions +491080,Financial Institutions,Financial Institutions +491076,Financial Institutions,Financial Institutions +491075,Financial Institutions,Financial Institutions +491074,Financial Institutions,Financial Institutions +491072,Financial Institutions,Financial Institutions +491071,Financial Institutions,Financial Institutions +491066,Financial Institutions,Financial Institutions +491053,Financial Institutions,Financial Institutions +491044,Financial Institutions,Financial Institutions +491041,Financial Institutions,Financial Institutions +491037,Financial Institutions,Financial Institutions +491034,Financial Institutions,Financial Institutions +491031,Financial Institutions,Financial Institutions +487139,Financial Institutions,Financial Institutions +487130,Financial Institutions,Financial Institutions +482206,Financial Institutions,Financial Institutions +482204,Financial Institutions,Financial Institutions +482202,Financial Institutions,Financial Institutions +482201,Financial Institutions,Financial Institutions +482200,Financial Institutions,Financial Institutions +471137,Financial Institutions,Financial Institutions +466239,Financial Institutions,Financial Institutions +466238,Financial Institutions,Financial Institutions +466237,Financial Institutions,Financial Institutions +466236,Financial Institutions,Financial Institutions +466235,Financial Institutions,Financial Institutions +466234,Financial Institutions,Financial Institutions +466233,Financial Institutions,Financial Institutions +466231,Financial Institutions,Financial Institutions +466230,Financial Institutions,Financial Institutions +466229,Financial Institutions,Financial Institutions +466228,Financial Institutions,Financial Institutions +466227,Financial Institutions,Financial Institutions +466226,Financial Institutions,Financial Institutions +466223,Financial Institutions,Financial Institutions +466220,Financial Institutions,Financial Institutions +541567,Financial Institutions,Financial Institutions +538341,Financial Institutions,Financial Institutions +538337,Financial Institutions,Financial Institutions +535118,Financial Institutions,Financial Institutions +535116,Financial Institutions,Financial Institutions +535113,Financial Institutions,Financial Institutions +535111,Financial Institutions,Financial Institutions +535109,Financial Institutions,Financial Institutions +535107,Financial Institutions,Financial Institutions +535106,Financial Institutions,Financial Institutions +535104,Financial Institutions,Financial Institutions +535103,Financial Institutions,Financial Institutions +535100,Financial Institutions,Financial Institutions +535095,Financial Institutions,Financial Institutions +535093,Financial Institutions,Financial Institutions +535091,Financial Institutions,Financial Institutions +535083,Financial Institutions,Financial Institutions +535082,Financial Institutions,Financial Institutions +535081,Financial Institutions,Financial Institutions +535080,Financial Institutions,Financial Institutions +535079,Financial Institutions,Financial Institutions +535077,Financial Institutions,Financial Institutions +535076,Financial Institutions,Financial Institutions +535075,Financial Institutions,Financial Institutions +535074,Financial Institutions,Financial Institutions +535072,Financial Institutions,Financial Institutions +535069,Financial Institutions,Financial Institutions +466231,Health,Health +466230,Health,Health +311190,Health,Health +311005,Health,Health +311003,Health,Health +310999,Health,Health +273936,Health,Health +273933,Health,Health +249590,Health,Health +249535,Health,Health +249526,Health,Health +249523,Health,Health +249520,Health,Health +249517,Health,Health +249513,Health,Health +249507,Health,Health +249505,Health,Health +249493,Health,Health +243249,Health,Health +199898,Health,Health +199895,Health,Health +199893,Health,Health +199825,Health,Health +169941,Health,Health +402023,Health,Health +402019,Health,Health +400679,Health,Health +400664,Health,Health +389989,Health,Health +389988,Health,Health +389986,Health,Health +389961,Health,Health +389959,Health,Health +389956,Health,Health +389953,Health,Health +389946,Health,Health +389944,Health,Health +389920,Health,Health +389918,Health,Health +389914,Health,Health +389913,Health,Health +389911,Health,Health +389910,Health,Health +389907,Health,Health +389905,Health,Health +389898,Health,Health +389897,Health,Health +389894,Health,Health +389892,Health,Health +389888,Health,Health +389885,Health,Health +389884,Health,Health +389882,Health,Health +389877,Health,Health +385602,Health,Health +383050,Health,Health +383048,Health,Health +372499,Health,Health +372498,Health,Health +372497,Health,Health +372496,Health,Health +372495,Health,Health +372494,Health,Health +372490,Health,Health +372489,Health,Health +372483,Health,Health +372482,Health,Health +372476,Health,Health +354342,Health,Health +354341,Health,Health +354340,Health,Health +340056,Health,Health +339903,Health,Health +339902,Health,Health +339881,Health,Health +339880,Health,Health +339879,Health,Health +339878,Health,Health +339877,Health,Health +339876,Health,Health +339875,Health,Health +339874,Health,Health +339873,Health,Health +339872,Health,Health +339871,Health,Health +339870,Health,Health +339869,Health,Health +339868,Health,Health +339867,Health,Health +339866,Health,Health +339865,Health,Health +339864,Health,Health +339862,Health,Health +339861,Health,Health +335548,Health,Health +335547,Health,Health +335535,Health,Health +329664,Health,Health +329663,Health,Health +466229,Health,Health +466228,Health,Health +466227,Health,Health +466226,Health,Health +466223,Health,Health +466222,Health,Health +466220,Health,Health +466218,Health,Health +461155,Health,Health +461147,Health,Health +451074,Health,Health +448409,Health,Health +444349,Health,Health +444348,Health,Health +444234,Health,Health +443166,Health,Health +438443,Health,Health +438441,Health,Health +438439,Health,Health +438436,Health,Health +438433,Health,Health +438429,Health,Health +438411,Health,Health +438406,Health,Health +438404,Health,Health +438401,Health,Health +438396,Health,Health +438395,Health,Health +438393,Health,Health +438388,Health,Health +438382,Health,Health +438379,Health,Health +438377,Health,Health +438375,Health,Health +438369,Health,Health +438365,Health,Health +438360,Health,Health +438359,Health,Health +438353,Health,Health +438352,Health,Health +438349,Health,Health +438348,Health,Health +438346,Health,Health +438344,Health,Health +438342,Health,Health +438341,Health,Health +438338,Health,Health +438337,Health,Health +438336,Health,Health +438330,Health,Health +438329,Health,Health +438327,Health,Health +438326,Health,Health +438325,Health,Health +438324,Health,Health +438322,Health,Health +438319,Health,Health +438318,Health,Health +438316,Health,Health +438314,Health,Health +436743,Health,Health +435975,Health,Health +434568,Health,Health +434567,Health,Health +430186,Health,Health +430184,Health,Health +428945,Health,Health +428942,Health,Health +424480,Health,Health +421882,Health,Health +421879,Health,Health +421871,Health,Health +416177,Health,Health +416175,Health,Health +416171,Health,Health +416169,Health,Health +416165,Health,Health +416164,Health,Health +416161,Health,Health +416159,Health,Health +416155,Health,Health +416154,Health,Health +416152,Health,Health +416149,Health,Health +416148,Health,Health +416146,Health,Health +416142,Health,Health +416139,Health,Health +416129,Health,Health +416126,Health,Health +416120,Health,Health +416119,Health,Health +416118,Health,Health +416116,Health,Health +416112,Health,Health +416033,Health,Health +416027,Health,Health +416022,Health,Health +416019,Health,Health +416017,Health,Health +416015,Health,Health +416014,Health,Health +416012,Health,Health +416009,Health,Health +416008,Health,Health +416007,Health,Health +416005,Health,Health +416003,Health,Health +416001,Health,Health +415998,Health,Health +415997,Health,Health +415995,Health,Health +415994,Health,Health +415991,Health,Health +415987,Health,Health +415985,Health,Health +415982,Health,Health +415980,Health,Health +408296,Health,Health +543920,Health,Health +543916,Health,Health +522886,Health,Health +522749,Health,Health +519773,Health,Health +517981,Health,Health +514094,Health,Health +512790,Health,Health +512787,Health,Health +512785,Health,Health +512781,Health,Health +512778,Health,Health +512775,Health,Health +512772,Health,Health +512770,Health,Health +512767,Health,Health +511052,Health,Health +508763,Health,Health +502356,Health,Health +502353,Health,Health +495205,Health,Health +493258,Health,Health +491171,Health,Health +491167,Health,Health +491068,Health,Health +491029,Health,Health +484742,Health,Health +484739,Health,Health +484736,Health,Health +477500,Health,Health +477497,Health,Health +477496,Health,Health +477494,Health,Health +473291,Health,Health +471138,Health,Health +466239,Health,Health +466238,Health,Health +466237,Health,Health +466236,Health,Health +466235,Health,Health +466234,Health,Health +473293,Industry,Industry +363702,Industry,Industry +354342,Industry,Industry +354341,Industry,Industry +340056,Industry,Industry +339903,Industry,Industry +339902,Industry,Industry +339881,Industry,Industry +339880,Industry,Industry +339879,Industry,Industry +339878,Industry,Industry +339877,Industry,Industry +339876,Industry,Industry +339875,Industry,Industry +339874,Industry,Industry +339873,Industry,Industry +339872,Industry,Industry +339871,Industry,Industry +339870,Industry,Industry +339869,Industry,Industry +339868,Industry,Industry +339867,Industry,Industry +339866,Industry,Industry +339865,Industry,Industry +339864,Industry,Industry +339862,Industry,Industry +339861,Industry,Industry +338660,Industry,Industry +338658,Industry,Industry +338657,Industry,Industry +335548,Industry,Industry +335547,Industry,Industry +335535,Industry,Industry +311190,Industry,Industry +311005,Industry,Industry +311003,Industry,Industry +310999,Industry,Industry +273936,Industry,Industry +273935,Industry,Industry +409828,Industry,Industry +409824,Industry,Industry +409819,Industry,Industry +408296,Industry,Industry +406836,Industry,Industry +405532,Industry,Industry +405528,Industry,Industry +402024,Industry,Industry +402019,Industry,Industry +389989,Industry,Industry +389944,Industry,Industry +372492,Industry,Industry +471138,Industry,Industry +471137,Industry,Industry +466239,Industry,Industry +466238,Industry,Industry +466237,Industry,Industry +466236,Industry,Industry +466235,Industry,Industry +466234,Industry,Industry +466233,Industry,Industry +466231,Industry,Industry +466230,Industry,Industry +466229,Industry,Industry +466228,Industry,Industry +466227,Industry,Industry +466226,Industry,Industry +466223,Industry,Industry +466222,Industry,Industry +466220,Industry,Industry +466218,Industry,Industry +466217,Industry,Industry +464872,Industry,Industry +464868,Industry,Industry +464858,Industry,Industry +464849,Industry,Industry +462773,Industry,Industry +462770,Industry,Industry +461361,Industry,Industry +461154,Industry,Industry +461153,Industry,Industry +461148,Industry,Industry +461147,Industry,Industry +458039,Industry,Industry +457961,Industry,Industry +457960,Industry,Industry +457958,Industry,Industry +457957,Industry,Industry +454584,Industry,Industry +454573,Industry,Industry +451076,Industry,Industry +451074,Industry,Industry +448409,Industry,Industry +446096,Industry,Industry +444382,Industry,Industry +444349,Industry,Industry +444348,Industry,Industry +444235,Industry,Industry +444234,Industry,Industry +444217,Industry,Industry +444215,Industry,Industry +443166,Industry,Industry +439178,Industry,Industry +438443,Industry,Industry +438441,Industry,Industry +438439,Industry,Industry +438436,Industry,Industry +438433,Industry,Industry +438429,Industry,Industry +438411,Industry,Industry +438409,Industry,Industry +438406,Industry,Industry +438404,Industry,Industry +438401,Industry,Industry +438399,Industry,Industry +438396,Industry,Industry +438395,Industry,Industry +438393,Industry,Industry +438388,Industry,Industry +438382,Industry,Industry +438379,Industry,Industry +438377,Industry,Industry +438375,Industry,Industry +438369,Industry,Industry +438365,Industry,Industry +438362,Industry,Industry +438360,Industry,Industry +438359,Industry,Industry +438353,Industry,Industry +438352,Industry,Industry +438349,Industry,Industry +438348,Industry,Industry +438346,Industry,Industry +438344,Industry,Industry +438342,Industry,Industry +438341,Industry,Industry +438338,Industry,Industry +438337,Industry,Industry +438336,Industry,Industry +438330,Industry,Industry +438329,Industry,Industry +438327,Industry,Industry +438326,Industry,Industry +438325,Industry,Industry +438324,Industry,Industry +438322,Industry,Industry +438319,Industry,Industry +438318,Industry,Industry +438316,Industry,Industry +438315,Industry,Industry +438314,Industry,Industry +436743,Industry,Industry +435975,Industry,Industry +434568,Industry,Industry +434567,Industry,Industry +434084,Industry,Industry +432923,Industry,Industry +432922,Industry,Industry +431894,Industry,Industry +431893,Industry,Industry +431886,Industry,Industry +430186,Industry,Industry +430184,Industry,Industry +428946,Industry,Industry +428945,Industry,Industry +428943,Industry,Industry +428942,Industry,Industry +428940,Industry,Industry +428939,Industry,Industry +428937,Industry,Industry +425960,Industry,Industry +425932,Industry,Industry +424480,Industry,Industry +424479,Industry,Industry +424478,Industry,Industry +421885,Industry,Industry +421882,Industry,Industry +421879,Industry,Industry +421876,Industry,Industry +421871,Industry,Industry +421869,Industry,Industry +421866,Industry,Industry +419775,Industry,Industry +419772,Industry,Industry +416180,Industry,Industry +416177,Industry,Industry +416175,Industry,Industry +416171,Industry,Industry +416169,Industry,Industry +416165,Industry,Industry +416164,Industry,Industry +416161,Industry,Industry +416159,Industry,Industry +416155,Industry,Industry +416154,Industry,Industry +416152,Industry,Industry +416149,Industry,Industry +416148,Industry,Industry +416146,Industry,Industry +416142,Industry,Industry +416139,Industry,Industry +416129,Industry,Industry +416126,Industry,Industry +416122,Industry,Industry +416120,Industry,Industry +416119,Industry,Industry +416118,Industry,Industry +416116,Industry,Industry +416112,Industry,Industry +416033,Industry,Industry +416027,Industry,Industry +416024,Industry,Industry +416022,Industry,Industry +416019,Industry,Industry +416017,Industry,Industry +416015,Industry,Industry +416014,Industry,Industry +416012,Industry,Industry +416009,Industry,Industry +416008,Industry,Industry +416007,Industry,Industry +416005,Industry,Industry +416004,Industry,Industry +416003,Industry,Industry +416001,Industry,Industry +415998,Industry,Industry +415997,Industry,Industry +415995,Industry,Industry +415994,Industry,Industry +415991,Industry,Industry +415987,Industry,Industry +415985,Industry,Industry +415982,Industry,Industry +415980,Industry,Industry +411295,Industry,Industry +411294,Industry,Industry +411293,Industry,Industry +410190,Industry,Industry +544076,Industry,Industry +543916,Industry,Industry +541567,Industry,Industry +538346,Industry,Industry +538344,Industry,Industry +538341,Industry,Industry +538337,Industry,Industry +538324,Industry,Industry +538317,Industry,Industry +535118,Industry,Industry +535116,Industry,Industry +535113,Industry,Industry +535111,Industry,Industry +535109,Industry,Industry +535107,Industry,Industry +535106,Industry,Industry +535104,Industry,Industry +535103,Industry,Industry +535100,Industry,Industry +535097,Industry,Industry +535095,Industry,Industry +535093,Industry,Industry +535091,Industry,Industry +535083,Industry,Industry +535082,Industry,Industry +535081,Industry,Industry +535080,Industry,Industry +535079,Industry,Industry +535077,Industry,Industry +535076,Industry,Industry +535075,Industry,Industry +535074,Industry,Industry +535072,Industry,Industry +535069,Industry,Industry +535067,Industry,Industry +535065,Industry,Industry +531551,Industry,Industry +528843,Industry,Industry +528829,Industry,Industry +528824,Industry,Industry +528818,Industry,Industry +526223,Industry,Industry +526164,Industry,Industry +526158,Industry,Industry +526154,Industry,Industry +526147,Industry,Industry +526142,Industry,Industry +526141,Industry,Industry +526138,Industry,Industry +526119,Industry,Industry +526106,Industry,Industry +526101,Industry,Industry +526090,Industry,Industry +526072,Industry,Industry +522886,Industry,Industry +522882,Industry,Industry +522879,Industry,Industry +522874,Industry,Industry +522871,Industry,Industry +522868,Industry,Industry +522866,Industry,Industry +522864,Industry,Industry +522862,Industry,Industry +522800,Industry,Industry +522798,Industry,Industry +522779,Industry,Industry +522778,Industry,Industry +522777,Industry,Industry +522775,Industry,Industry +522772,Industry,Industry +522769,Industry,Industry +522761,Industry,Industry +522759,Industry,Industry +522750,Industry,Industry +519820,Industry,Industry +519819,Industry,Industry +519779,Industry,Industry +519768,Industry,Industry +519765,Industry,Industry +519764,Industry,Industry +519763,Industry,Industry +517994,Industry,Industry +517992,Industry,Industry +517988,Industry,Industry +517986,Industry,Industry +517983,Industry,Industry +517981,Industry,Industry +517979,Industry,Industry +517974,Industry,Industry +515646,Industry,Industry +515642,Industry,Industry +515640,Industry,Industry +515639,Industry,Industry +514094,Industry,Industry +514093,Industry,Industry +514092,Industry,Industry +514087,Industry,Industry +512790,Industry,Industry +512787,Industry,Industry +512785,Industry,Industry +512781,Industry,Industry +512778,Industry,Industry +512775,Industry,Industry +512772,Industry,Industry +512770,Industry,Industry +512767,Industry,Industry +512764,Industry,Industry +512763,Industry,Industry +512761,Industry,Industry +512760,Industry,Industry +512758,Industry,Industry +512754,Industry,Industry +512752,Industry,Industry +512751,Industry,Industry +512748,Industry,Industry +512747,Industry,Industry +512745,Industry,Industry +511057,Industry,Industry +511052,Industry,Industry +511051,Industry,Industry +511048,Industry,Industry +511047,Industry,Industry +511039,Industry,Industry +511015,Industry,Industry +511005,Industry,Industry +511002,Industry,Industry +511000,Industry,Industry +510998,Industry,Industry +510995,Industry,Industry +510992,Industry,Industry +510991,Industry,Industry +510989,Industry,Industry +510987,Industry,Industry +510984,Industry,Industry +510983,Industry,Industry +510979,Industry,Industry +510978,Industry,Industry +510977,Industry,Industry +510976,Industry,Industry +510975,Industry,Industry +510974,Industry,Industry +510973,Industry,Industry +510961,Industry,Industry +510958,Industry,Industry +510956,Industry,Industry +510953,Industry,Industry +510949,Industry,Industry +509022,Industry,Industry +509020,Industry,Industry +509019,Industry,Industry +509018,Industry,Industry +509017,Industry,Industry +509016,Industry,Industry +509013,Industry,Industry +509012,Industry,Industry +509011,Industry,Industry +509010,Industry,Industry +509008,Industry,Industry +509007,Industry,Industry +509006,Industry,Industry +509005,Industry,Industry +509004,Industry,Industry +509003,Industry,Industry +509002,Industry,Industry +509000,Industry,Industry +508999,Industry,Industry +508998,Industry,Industry +508997,Industry,Industry +508996,Industry,Industry +508994,Industry,Industry +508993,Industry,Industry +508992,Industry,Industry +508991,Industry,Industry +508990,Industry,Industry +508988,Industry,Industry +508987,Industry,Industry +508985,Industry,Industry +508984,Industry,Industry +508983,Industry,Industry +508982,Industry,Industry +508981,Industry,Industry +508980,Industry,Industry +508979,Industry,Industry +508978,Industry,Industry +508977,Industry,Industry +508976,Industry,Industry +508975,Industry,Industry +508974,Industry,Industry +508973,Industry,Industry +508972,Industry,Industry +508768,Industry,Industry +508763,Industry,Industry +508761,Industry,Industry +508758,Industry,Industry +508757,Industry,Industry +508753,Industry,Industry +508745,Industry,Industry +508603,Industry,Industry +508600,Industry,Industry +508597,Industry,Industry +508595,Industry,Industry +508591,Industry,Industry +508589,Industry,Industry +508541,Industry,Industry +508539,Industry,Industry +508538,Industry,Industry +508537,Industry,Industry +508534,Industry,Industry +508532,Industry,Industry +504817,Industry,Industry +504813,Industry,Industry +504809,Industry,Industry +504803,Industry,Industry +504799,Industry,Industry +504791,Industry,Industry +504783,Industry,Industry +504764,Industry,Industry +504757,Industry,Industry +502360,Industry,Industry +502358,Industry,Industry +502357,Industry,Industry +502349,Industry,Industry +502344,Industry,Industry +502339,Industry,Industry +502312,Industry,Industry +502303,Industry,Industry +502298,Industry,Industry +502293,Industry,Industry +502291,Industry,Industry +498927,Industry,Industry +498926,Industry,Industry +498924,Industry,Industry +498921,Industry,Industry +498920,Industry,Industry +498914,Industry,Industry +498910,Industry,Industry +498907,Industry,Industry +498903,Industry,Industry +498899,Industry,Industry +498890,Industry,Industry +498889,Industry,Industry +498884,Industry,Industry +498882,Industry,Industry +498877,Industry,Industry +495209,Industry,Industry +495205,Industry,Industry +495203,Industry,Industry +495202,Industry,Industry +495201,Industry,Industry +495199,Industry,Industry +493622,Industry,Industry +493263,Industry,Industry +493262,Industry,Industry +493260,Industry,Industry +493258,Industry,Industry +493254,Industry,Industry +491183,Industry,Industry +491171,Industry,Industry +491167,Industry,Industry +491163,Industry,Industry +491159,Industry,Industry +491155,Industry,Industry +491151,Industry,Industry +491090,Industry,Industry +491089,Industry,Industry +491085,Industry,Industry +491083,Industry,Industry +491082,Industry,Industry +491081,Industry,Industry +491080,Industry,Industry +491076,Industry,Industry +491075,Industry,Industry +491074,Industry,Industry +491072,Industry,Industry +491071,Industry,Industry +491068,Industry,Industry +491066,Industry,Industry +491053,Industry,Industry +491045,Industry,Industry +491044,Industry,Industry +491041,Industry,Industry +491037,Industry,Industry +491034,Industry,Industry +491031,Industry,Industry +491029,Industry,Industry +487139,Industry,Industry +487137,Industry,Industry +487132,Industry,Industry +487130,Industry,Industry +487126,Industry,Industry +487122,Industry,Industry +487118,Industry,Industry +484742,Industry,Industry +484739,Industry,Industry +484736,Industry,Industry +484719,Industry,Industry +484718,Industry,Industry +482204,Industry,Industry +482202,Industry,Industry +482201,Industry,Industry +482200,Industry,Industry +482199,Industry,Industry +479819,Industry,Industry +477500,Industry,Industry +477494,Industry,Industry +475346,Industry,Industry +498924,Infrastructure,Infrastructure +498877,Infrastructure,Infrastructure +493263,Infrastructure,Infrastructure +493254,Infrastructure,Infrastructure +491171,Infrastructure,Infrastructure +491167,Infrastructure,Infrastructure +491159,Infrastructure,Infrastructure +491155,Infrastructure,Infrastructure +491151,Infrastructure,Infrastructure +491090,Infrastructure,Infrastructure +491089,Infrastructure,Infrastructure +491085,Infrastructure,Infrastructure +491083,Infrastructure,Infrastructure +491082,Infrastructure,Infrastructure +491081,Infrastructure,Infrastructure +491080,Infrastructure,Infrastructure +491076,Infrastructure,Infrastructure +491075,Infrastructure,Infrastructure +491074,Infrastructure,Infrastructure +491072,Infrastructure,Infrastructure +491071,Infrastructure,Infrastructure +491066,Infrastructure,Infrastructure +491053,Infrastructure,Infrastructure +491045,Infrastructure,Infrastructure +491044,Infrastructure,Infrastructure +491041,Infrastructure,Infrastructure +491037,Infrastructure,Infrastructure +491034,Infrastructure,Infrastructure +491031,Infrastructure,Infrastructure +491029,Infrastructure,Infrastructure +487139,Infrastructure,Infrastructure +487137,Infrastructure,Infrastructure +487132,Infrastructure,Infrastructure +482206,Infrastructure,Infrastructure +482204,Infrastructure,Infrastructure +482202,Infrastructure,Infrastructure +482201,Infrastructure,Infrastructure +482200,Infrastructure,Infrastructure +482199,Infrastructure,Infrastructure +477496,Infrastructure,Infrastructure +477494,Infrastructure,Infrastructure +475346,Infrastructure,Infrastructure +473293,Infrastructure,Infrastructure +471137,Infrastructure,Infrastructure +466239,Infrastructure,Infrastructure +466238,Infrastructure,Infrastructure +466237,Infrastructure,Infrastructure +466236,Infrastructure,Infrastructure +466235,Infrastructure,Infrastructure +466234,Infrastructure,Infrastructure +466233,Infrastructure,Infrastructure +466231,Infrastructure,Infrastructure +466230,Infrastructure,Infrastructure +466229,Infrastructure,Infrastructure +466228,Infrastructure,Infrastructure +466227,Infrastructure,Infrastructure +466226,Infrastructure,Infrastructure +466223,Infrastructure,Infrastructure +466217,Infrastructure,Infrastructure +464872,Infrastructure,Infrastructure +464868,Infrastructure,Infrastructure +464858,Infrastructure,Infrastructure +462770,Infrastructure,Infrastructure +461147,Infrastructure,Infrastructure +444217,Infrastructure,Infrastructure +443166,Infrastructure,Infrastructure +544076,Infrastructure,Infrastructure +538344,Infrastructure,Infrastructure +538341,Infrastructure,Infrastructure +538337,Infrastructure,Infrastructure +538324,Infrastructure,Infrastructure +538317,Infrastructure,Infrastructure +535118,Infrastructure,Infrastructure +535116,Infrastructure,Infrastructure +535113,Infrastructure,Infrastructure +535111,Infrastructure,Infrastructure +535109,Infrastructure,Infrastructure +535107,Infrastructure,Infrastructure +535106,Infrastructure,Infrastructure +535104,Infrastructure,Infrastructure +535103,Infrastructure,Infrastructure +535100,Infrastructure,Infrastructure +535097,Infrastructure,Infrastructure +535095,Infrastructure,Infrastructure +535093,Infrastructure,Infrastructure +535091,Infrastructure,Infrastructure +535083,Infrastructure,Infrastructure +535082,Infrastructure,Infrastructure +535081,Infrastructure,Infrastructure +535080,Infrastructure,Infrastructure +535079,Infrastructure,Infrastructure +535077,Infrastructure,Infrastructure +535076,Infrastructure,Infrastructure +535075,Infrastructure,Infrastructure +535074,Infrastructure,Infrastructure +535072,Infrastructure,Infrastructure +535069,Infrastructure,Infrastructure +535067,Infrastructure,Infrastructure +535065,Infrastructure,Infrastructure +531551,Infrastructure,Infrastructure +528824,Infrastructure,Infrastructure +528818,Infrastructure,Infrastructure +526158,Infrastructure,Infrastructure +526154,Infrastructure,Infrastructure +526147,Infrastructure,Infrastructure +526141,Infrastructure,Infrastructure +526138,Infrastructure,Infrastructure +526119,Infrastructure,Infrastructure +526111,Infrastructure,Infrastructure +526106,Infrastructure,Infrastructure +526101,Infrastructure,Infrastructure +526096,Infrastructure,Infrastructure +526093,Infrastructure,Infrastructure +526090,Infrastructure,Infrastructure +526072,Infrastructure,Infrastructure +526066,Infrastructure,Infrastructure +526064,Infrastructure,Infrastructure +526061,Infrastructure,Infrastructure +526058,Infrastructure,Infrastructure +522882,Infrastructure,Infrastructure +522874,Infrastructure,Infrastructure +522871,Infrastructure,Infrastructure +522868,Infrastructure,Infrastructure +522866,Infrastructure,Infrastructure +522864,Infrastructure,Infrastructure +522800,Infrastructure,Infrastructure +522798,Infrastructure,Infrastructure +522779,Infrastructure,Infrastructure +522778,Infrastructure,Infrastructure +522777,Infrastructure,Infrastructure +522775,Infrastructure,Infrastructure +522772,Infrastructure,Infrastructure +522769,Infrastructure,Infrastructure +522761,Infrastructure,Infrastructure +522759,Infrastructure,Infrastructure +522750,Infrastructure,Infrastructure +519820,Infrastructure,Infrastructure +519768,Infrastructure,Infrastructure +519765,Infrastructure,Infrastructure +519764,Infrastructure,Infrastructure +517994,Infrastructure,Infrastructure +517986,Infrastructure,Infrastructure +517981,Infrastructure,Infrastructure +517979,Infrastructure,Infrastructure +517974,Infrastructure,Infrastructure +515642,Infrastructure,Infrastructure +515640,Infrastructure,Infrastructure +515639,Infrastructure,Infrastructure +514094,Infrastructure,Infrastructure +514087,Infrastructure,Infrastructure +512790,Infrastructure,Infrastructure +512787,Infrastructure,Infrastructure +512785,Infrastructure,Infrastructure +512781,Infrastructure,Infrastructure +512778,Infrastructure,Infrastructure +512775,Infrastructure,Infrastructure +512772,Infrastructure,Infrastructure +512770,Infrastructure,Infrastructure +512767,Infrastructure,Infrastructure +512751,Infrastructure,Infrastructure +511057,Infrastructure,Infrastructure +511052,Infrastructure,Infrastructure +511051,Infrastructure,Infrastructure +511039,Infrastructure,Infrastructure +511015,Infrastructure,Infrastructure +511005,Infrastructure,Infrastructure +511002,Infrastructure,Infrastructure +511000,Infrastructure,Infrastructure +510998,Infrastructure,Infrastructure +510995,Infrastructure,Infrastructure +510992,Infrastructure,Infrastructure +510991,Infrastructure,Infrastructure +510989,Infrastructure,Infrastructure +510987,Infrastructure,Infrastructure +510984,Infrastructure,Infrastructure +510983,Infrastructure,Infrastructure +510979,Infrastructure,Infrastructure +510978,Infrastructure,Infrastructure +510977,Infrastructure,Infrastructure +510976,Infrastructure,Infrastructure +510975,Infrastructure,Infrastructure +510973,Infrastructure,Infrastructure +510958,Infrastructure,Infrastructure +510956,Infrastructure,Infrastructure +510953,Infrastructure,Infrastructure +510949,Infrastructure,Infrastructure +508768,Infrastructure,Infrastructure +508761,Infrastructure,Infrastructure +508758,Infrastructure,Infrastructure +508757,Infrastructure,Infrastructure +508753,Infrastructure,Infrastructure +508745,Infrastructure,Infrastructure +508603,Infrastructure,Infrastructure +508600,Infrastructure,Infrastructure +508597,Infrastructure,Infrastructure +508595,Infrastructure,Infrastructure +508591,Infrastructure,Infrastructure +508589,Infrastructure,Infrastructure +508541,Infrastructure,Infrastructure +508539,Infrastructure,Infrastructure +508538,Infrastructure,Infrastructure +504817,Infrastructure,Infrastructure +504813,Infrastructure,Infrastructure +504809,Infrastructure,Infrastructure +504783,Infrastructure,Infrastructure +504764,Infrastructure,Infrastructure +504757,Infrastructure,Infrastructure +502358,Infrastructure,Infrastructure +502356,Infrastructure,Infrastructure +502349,Infrastructure,Infrastructure +502347,Infrastructure,Infrastructure +502310,Infrastructure,Infrastructure +502308,Infrastructure,Infrastructure +502301,Infrastructure,Infrastructure +502291,Infrastructure,Infrastructure +498927,Infrastructure,Infrastructure +400679,Internal Trade,Internal Trade +400672,Internal Trade,Internal Trade +175459,Internal Trade,Internal Trade +175458,Internal Trade,Internal Trade +175456,Internal Trade,Internal Trade +377290,Internal Trade,Internal Trade +363702,Internal Trade,Internal Trade +360007,Internal Trade,Internal Trade +354342,Internal Trade,Internal Trade +354341,Internal Trade,Internal Trade +340056,Internal Trade,Internal Trade +339903,Internal Trade,Internal Trade +339902,Internal Trade,Internal Trade +339881,Internal Trade,Internal Trade +339880,Internal Trade,Internal Trade +339879,Internal Trade,Internal Trade +339878,Internal Trade,Internal Trade +339877,Internal Trade,Internal Trade +339876,Internal Trade,Internal Trade +339875,Internal Trade,Internal Trade +339874,Internal Trade,Internal Trade +339873,Internal Trade,Internal Trade +339872,Internal Trade,Internal Trade +339871,Internal Trade,Internal Trade +339870,Internal Trade,Internal Trade +339869,Internal Trade,Internal Trade +339868,Internal Trade,Internal Trade +339867,Internal Trade,Internal Trade +339866,Internal Trade,Internal Trade +339865,Internal Trade,Internal Trade +339864,Internal Trade,Internal Trade +339862,Internal Trade,Internal Trade +339861,Internal Trade,Internal Trade +338660,Internal Trade,Internal Trade +338658,Internal Trade,Internal Trade +338657,Internal Trade,Internal Trade +335548,Internal Trade,Internal Trade +335547,Internal Trade,Internal Trade +335535,Internal Trade,Internal Trade +324679,Internal Trade,Internal Trade +311190,Internal Trade,Internal Trade +311005,Internal Trade,Internal Trade +311003,Internal Trade,Internal Trade +310999,Internal Trade,Internal Trade +508763,Internal Trade,Internal Trade +491171,Internal Trade,Internal Trade +477496,Internal Trade,Internal Trade +477494,Internal Trade,Internal Trade +473293,Internal Trade,Internal Trade +461147,Internal Trade,Internal Trade +444217,Internal Trade,Internal Trade +443166,Internal Trade,Internal Trade +502312,International Relations,International Relations +502303,International Relations,International Relations +175459,International Relations,International Relations +175458,International Relations,International Relations +169943,International Relations,International Relations +311190,International Relations,International Relations +311005,International Relations,International Relations +311003,International Relations,International Relations +310999,International Relations,International Relations +432922,International Relations,International Relations +431894,International Relations,International Relations +410190,International Relations,International Relations +409824,International Relations,International Relations +405532,International Relations,International Relations +402024,International Relations,International Relations +493260,International Relations,International Relations +491171,International Relations,International Relations +487139,International Relations,International Relations +487130,International Relations,International Relations +487126,International Relations,International Relations +487122,International Relations,International Relations +487118,International Relations,International Relations +484719,International Relations,International Relations +482206,International Relations,International Relations +482198,International Relations,International Relations +479819,International Relations,International Relations +477500,International Relations,International Relations +473291,International Relations,International Relations +471138,International Relations,International Relations +466239,International Relations,International Relations +466238,International Relations,International Relations +466237,International Relations,International Relations +466236,International Relations,International Relations +466235,International Relations,International Relations +466234,International Relations,International Relations +466233,International Relations,International Relations +466231,International Relations,International Relations +466230,International Relations,International Relations +466229,International Relations,International Relations +466228,International Relations,International Relations +466227,International Relations,International Relations +466226,International Relations,International Relations +466223,International Relations,International Relations +466220,International Relations,International Relations +464872,International Relations,International Relations +464858,International Relations,International Relations +464849,International Relations,International Relations +462773,International Relations,International Relations +438316,International Relations,International Relations +436743,International Relations,International Relations +543916,International Relations,International Relations +538344,International Relations,International Relations +538339,International Relations,International Relations +528829,International Relations,International Relations +515639,International Relations,International Relations +511057,International Relations,International Relations +511052,International Relations,International Relations +498882,International Trade,International Trade +498877,International Trade,International Trade +249590,International Trade,International Trade +249535,International Trade,International Trade +249526,International Trade,International Trade +249523,International Trade,International Trade +249520,International Trade,International Trade +249517,International Trade,International Trade +249513,International Trade,International Trade +249507,International Trade,International Trade +249505,International Trade,International Trade +249493,International Trade,International Trade +199898,International Trade,International Trade +199895,International Trade,International Trade +199893,International Trade,International Trade +199825,International Trade,International Trade +175459,International Trade,International Trade +175458,International Trade,International Trade +175456,International Trade,International Trade +169943,International Trade,International Trade +372497,International Trade,International Trade +372496,International Trade,International Trade +372492,International Trade,International Trade +372490,International Trade,International Trade +372483,International Trade,International Trade +372482,International Trade,International Trade +372476,International Trade,International Trade +363702,International Trade,International Trade +356300,International Trade,International Trade +356299,International Trade,International Trade +354342,International Trade,International Trade +354341,International Trade,International Trade +343439,International Trade,International Trade +340056,International Trade,International Trade +339903,International Trade,International Trade +339902,International Trade,International Trade +339881,International Trade,International Trade +339880,International Trade,International Trade +339879,International Trade,International Trade +339878,International Trade,International Trade +339877,International Trade,International Trade +339876,International Trade,International Trade +339875,International Trade,International Trade +339874,International Trade,International Trade +339873,International Trade,International Trade +339872,International Trade,International Trade +339871,International Trade,International Trade +339870,International Trade,International Trade +339869,International Trade,International Trade +339868,International Trade,International Trade +339867,International Trade,International Trade +339866,International Trade,International Trade +339865,International Trade,International Trade +339864,International Trade,International Trade +339862,International Trade,International Trade +339861,International Trade,International Trade +338660,International Trade,International Trade +338658,International Trade,International Trade +338657,International Trade,International Trade +335548,International Trade,International Trade +335547,International Trade,International Trade +335535,International Trade,International Trade +329664,International Trade,International Trade +329663,International Trade,International Trade +324679,International Trade,International Trade +311190,International Trade,International Trade +311005,International Trade,International Trade +311003,International Trade,International Trade +310999,International Trade,International Trade +406836,International Trade,International Trade +405532,International Trade,International Trade +405528,International Trade,International Trade +405522,International Trade,International Trade +402024,International Trade,International Trade +402023,International Trade,International Trade +402019,International Trade,International Trade +402004,International Trade,International Trade +400679,International Trade,International Trade +400672,International Trade,International Trade +399314,International Trade,International Trade +389989,International Trade,International Trade +389988,International Trade,International Trade +389986,International Trade,International Trade +389961,International Trade,International Trade +389959,International Trade,International Trade +389956,International Trade,International Trade +389953,International Trade,International Trade +389946,International Trade,International Trade +389944,International Trade,International Trade +389920,International Trade,International Trade +389918,International Trade,International Trade +389914,International Trade,International Trade +389913,International Trade,International Trade +389911,International Trade,International Trade +389910,International Trade,International Trade +389907,International Trade,International Trade +389905,International Trade,International Trade +389898,International Trade,International Trade +389897,International Trade,International Trade +389894,International Trade,International Trade +389892,International Trade,International Trade +389888,International Trade,International Trade +389885,International Trade,International Trade +389884,International Trade,International Trade +389882,International Trade,International Trade +389877,International Trade,International Trade +377290,International Trade,International Trade +495209,International Trade,International Trade +495203,International Trade,International Trade +495202,International Trade,International Trade +495201,International Trade,International Trade +495199,International Trade,International Trade +493262,International Trade,International Trade +493260,International Trade,International Trade +491183,International Trade,International Trade +491171,International Trade,International Trade +491163,International Trade,International Trade +491159,International Trade,International Trade +491155,International Trade,International Trade +491151,International Trade,International Trade +491090,International Trade,International Trade +491089,International Trade,International Trade +491085,International Trade,International Trade +491083,International Trade,International Trade +491082,International Trade,International Trade +491081,International Trade,International Trade +491080,International Trade,International Trade +491076,International Trade,International Trade +491075,International Trade,International Trade +491074,International Trade,International Trade +491072,International Trade,International Trade +491071,International Trade,International Trade +491068,International Trade,International Trade +491066,International Trade,International Trade +491053,International Trade,International Trade +491045,International Trade,International Trade +491044,International Trade,International Trade +491041,International Trade,International Trade +491037,International Trade,International Trade +491034,International Trade,International Trade +491031,International Trade,International Trade +491029,International Trade,International Trade +487139,International Trade,International Trade +487126,International Trade,International Trade +487122,International Trade,International Trade +487118,International Trade,International Trade +484742,International Trade,International Trade +484739,International Trade,International Trade +484736,International Trade,International Trade +484719,International Trade,International Trade +482206,International Trade,International Trade +482204,International Trade,International Trade +482202,International Trade,International Trade +482201,International Trade,International Trade +482200,International Trade,International Trade +482199,International Trade,International Trade +482198,International Trade,International Trade +479819,International Trade,International Trade +477500,International Trade,International Trade +471138,International Trade,International Trade +471137,International Trade,International Trade +466238,International Trade,International Trade +466237,International Trade,International Trade +466227,International Trade,International Trade +464872,International Trade,International Trade +464858,International Trade,International Trade +464849,International Trade,International Trade +462773,International Trade,International Trade +462770,International Trade,International Trade +461361,International Trade,International Trade +461155,International Trade,International Trade +461147,International Trade,International Trade +451074,International Trade,International Trade +446096,International Trade,International Trade +443166,International Trade,International Trade +439178,International Trade,International Trade +438443,International Trade,International Trade +438441,International Trade,International Trade +438439,International Trade,International Trade +438436,International Trade,International Trade +438433,International Trade,International Trade +438429,International Trade,International Trade +438411,International Trade,International Trade +438406,International Trade,International Trade +438404,International Trade,International Trade +438401,International Trade,International Trade +438399,International Trade,International Trade +438396,International Trade,International Trade +438395,International Trade,International Trade +438393,International Trade,International Trade +438379,International Trade,International Trade +438375,International Trade,International Trade +438369,International Trade,International Trade +438365,International Trade,International Trade +438362,International Trade,International Trade +438360,International Trade,International Trade +438359,International Trade,International Trade +438353,International Trade,International Trade +438352,International Trade,International Trade +438349,International Trade,International Trade +438348,International Trade,International Trade +438346,International Trade,International Trade +438344,International Trade,International Trade +438342,International Trade,International Trade +438341,International Trade,International Trade +438338,International Trade,International Trade +438337,International Trade,International Trade +438336,International Trade,International Trade +438330,International Trade,International Trade +438329,International Trade,International Trade +438327,International Trade,International Trade +438326,International Trade,International Trade +438325,International Trade,International Trade +438324,International Trade,International Trade +438322,International Trade,International Trade +438319,International Trade,International Trade +438318,International Trade,International Trade +438315,International Trade,International Trade +438314,International Trade,International Trade +436743,International Trade,International Trade +434568,International Trade,International Trade +434567,International Trade,International Trade +432923,International Trade,International Trade +432922,International Trade,International Trade +431894,International Trade,International Trade +431893,International Trade,International Trade +428945,International Trade,International Trade +428940,International Trade,International Trade +428939,International Trade,International Trade +425932,International Trade,International Trade +424479,International Trade,International Trade +424478,International Trade,International Trade +421885,International Trade,International Trade +421882,International Trade,International Trade +421879,International Trade,International Trade +421876,International Trade,International Trade +421871,International Trade,International Trade +421869,International Trade,International Trade +421866,International Trade,International Trade +419772,International Trade,International Trade +416180,International Trade,International Trade +416177,International Trade,International Trade +416175,International Trade,International Trade +416171,International Trade,International Trade +416169,International Trade,International Trade +416164,International Trade,International Trade +416161,International Trade,International Trade +416159,International Trade,International Trade +416155,International Trade,International Trade +416154,International Trade,International Trade +416152,International Trade,International Trade +416149,International Trade,International Trade +416148,International Trade,International Trade +416146,International Trade,International Trade +416142,International Trade,International Trade +416139,International Trade,International Trade +416129,International Trade,International Trade +416126,International Trade,International Trade +416120,International Trade,International Trade +416119,International Trade,International Trade +416118,International Trade,International Trade +416116,International Trade,International Trade +416112,International Trade,International Trade +416033,International Trade,International Trade +416027,International Trade,International Trade +416024,International Trade,International Trade +416022,International Trade,International Trade +416019,International Trade,International Trade +416017,International Trade,International Trade +416015,International Trade,International Trade +416014,International Trade,International Trade +416012,International Trade,International Trade +416009,International Trade,International Trade +416008,International Trade,International Trade +416007,International Trade,International Trade +416005,International Trade,International Trade +416004,International Trade,International Trade +416003,International Trade,International Trade +416001,International Trade,International Trade +415998,International Trade,International Trade +415997,International Trade,International Trade +415995,International Trade,International Trade +415994,International Trade,International Trade +415991,International Trade,International Trade +415987,International Trade,International Trade +415985,International Trade,International Trade +415982,International Trade,International Trade +415980,International Trade,International Trade +411294,International Trade,International Trade +411293,International Trade,International Trade +410190,International Trade,International Trade +409828,International Trade,International Trade +409824,International Trade,International Trade +408296,International Trade,International Trade +544076,International Trade,International Trade +543916,International Trade,International Trade +541567,International Trade,International Trade +538344,International Trade,International Trade +538341,International Trade,International Trade +538337,International Trade,International Trade +538324,International Trade,International Trade +535118,International Trade,International Trade +535116,International Trade,International Trade +535113,International Trade,International Trade +535111,International Trade,International Trade +535109,International Trade,International Trade +535107,International Trade,International Trade +535106,International Trade,International Trade +535104,International Trade,International Trade +535103,International Trade,International Trade +535100,International Trade,International Trade +535095,International Trade,International Trade +535093,International Trade,International Trade +535091,International Trade,International Trade +535083,International Trade,International Trade +535082,International Trade,International Trade +535081,International Trade,International Trade +535080,International Trade,International Trade +535079,International Trade,International Trade +535077,International Trade,International Trade +535076,International Trade,International Trade +535075,International Trade,International Trade +535074,International Trade,International Trade +535072,International Trade,International Trade +535069,International Trade,International Trade +535067,International Trade,International Trade +535065,International Trade,International Trade +528843,International Trade,International Trade +528829,International Trade,International Trade +528824,International Trade,International Trade +528818,International Trade,International Trade +526223,International Trade,International Trade +526154,International Trade,International Trade +526147,International Trade,International Trade +526141,International Trade,International Trade +526138,International Trade,International Trade +526119,International Trade,International Trade +526111,International Trade,International Trade +526106,International Trade,International Trade +526101,International Trade,International Trade +526096,International Trade,International Trade +526093,International Trade,International Trade +526090,International Trade,International Trade +526072,International Trade,International Trade +526066,International Trade,International Trade +526064,International Trade,International Trade +526061,International Trade,International Trade +526058,International Trade,International Trade +522885,International Trade,International Trade +522882,International Trade,International Trade +522874,International Trade,International Trade +522871,International Trade,International Trade +522868,International Trade,International Trade +522866,International Trade,International Trade +522864,International Trade,International Trade +522800,International Trade,International Trade +522798,International Trade,International Trade +522779,International Trade,International Trade +522778,International Trade,International Trade +522777,International Trade,International Trade +522775,International Trade,International Trade +522772,International Trade,International Trade +522769,International Trade,International Trade +522761,International Trade,International Trade +522759,International Trade,International Trade +522750,International Trade,International Trade +519820,International Trade,International Trade +519768,International Trade,International Trade +519765,International Trade,International Trade +519764,International Trade,International Trade +519763,International Trade,International Trade +517994,International Trade,International Trade +517986,International Trade,International Trade +517981,International Trade,International Trade +517979,International Trade,International Trade +517974,International Trade,International Trade +515646,International Trade,International Trade +515642,International Trade,International Trade +515640,International Trade,International Trade +515639,International Trade,International Trade +512790,International Trade,International Trade +512787,International Trade,International Trade +512785,International Trade,International Trade +512781,International Trade,International Trade +512778,International Trade,International Trade +512775,International Trade,International Trade +512772,International Trade,International Trade +512770,International Trade,International Trade +512767,International Trade,International Trade +512764,International Trade,International Trade +512763,International Trade,International Trade +512761,International Trade,International Trade +512760,International Trade,International Trade +512758,International Trade,International Trade +512754,International Trade,International Trade +512752,International Trade,International Trade +512751,International Trade,International Trade +511057,International Trade,International Trade +511052,International Trade,International Trade +511047,International Trade,International Trade +511039,International Trade,International Trade +511015,International Trade,International Trade +511005,International Trade,International Trade +511002,International Trade,International Trade +511000,International Trade,International Trade +510998,International Trade,International Trade +510995,International Trade,International Trade +510992,International Trade,International Trade +510991,International Trade,International Trade +510989,International Trade,International Trade +510984,International Trade,International Trade +510983,International Trade,International Trade +510979,International Trade,International Trade +510978,International Trade,International Trade +510977,International Trade,International Trade +510976,International Trade,International Trade +510975,International Trade,International Trade +510974,International Trade,International Trade +510973,International Trade,International Trade +510958,International Trade,International Trade +510956,International Trade,International Trade +510953,International Trade,International Trade +510949,International Trade,International Trade +508763,International Trade,International Trade +508761,International Trade,International Trade +508758,International Trade,International Trade +508757,International Trade,International Trade +508753,International Trade,International Trade +508745,International Trade,International Trade +508603,International Trade,International Trade +508600,International Trade,International Trade +508597,International Trade,International Trade +508595,International Trade,International Trade +508591,International Trade,International Trade +508589,International Trade,International Trade +508541,International Trade,International Trade +508539,International Trade,International Trade +508538,International Trade,International Trade +508532,International Trade,International Trade +504817,International Trade,International Trade +504809,International Trade,International Trade +502357,International Trade,International Trade +502344,International Trade,International Trade +502339,International Trade,International Trade +502312,International Trade,International Trade +502298,International Trade,International Trade +502291,International Trade,International Trade +498921,International Trade,International Trade +498920,International Trade,International Trade +498914,International Trade,International Trade +498903,International Trade,International Trade +498899,International Trade,International Trade +498890,International Trade,International Trade +498889,International Trade,International Trade +517981,Justice and Law Enforcement,Justice and Law Enforcement +511052,Justice and Law Enforcement,Justice and Law Enforcement +508763,Justice and Law Enforcement,Justice and Law Enforcement +502310,Justice and Law Enforcement,Justice and Law Enforcement +502308,Justice and Law Enforcement,Justice and Law Enforcement +493262,Justice and Law Enforcement,Justice and Law Enforcement +491171,Justice and Law Enforcement,Justice and Law Enforcement +491045,Justice and Law Enforcement,Justice and Law Enforcement +487142,Justice and Law Enforcement,Justice and Law Enforcement +487133,Justice and Law Enforcement,Justice and Law Enforcement +473295,Justice and Law Enforcement,Justice and Law Enforcement +473293,Justice and Law Enforcement,Justice and Law Enforcement +528843,Justice and Law Enforcement,Justice and Law Enforcement +526111,Justice and Law Enforcement,Justice and Law Enforcement +526096,Justice and Law Enforcement,Justice and Law Enforcement +526093,Justice and Law Enforcement,Justice and Law Enforcement +526066,Justice and Law Enforcement,Justice and Law Enforcement +526064,Justice and Law Enforcement,Justice and Law Enforcement +526061,Justice and Law Enforcement,Justice and Law Enforcement +526058,Justice and Law Enforcement,Justice and Law Enforcement +522885,Justice and Law Enforcement,Justice and Law Enforcement +416005,Labour,Labour +416003,Labour,Labour +416001,Labour,Labour +415998,Labour,Labour +415997,Labour,Labour +415995,Labour,Labour +415994,Labour,Labour +415991,Labour,Labour +415987,Labour,Labour +415985,Labour,Labour +415982,Labour,Labour +415980,Labour,Labour +389989,Labour,Labour +389988,Labour,Labour +389986,Labour,Labour +389961,Labour,Labour +389959,Labour,Labour +389956,Labour,Labour +389953,Labour,Labour +389946,Labour,Labour +389944,Labour,Labour +389920,Labour,Labour +389918,Labour,Labour +389914,Labour,Labour +389913,Labour,Labour +389911,Labour,Labour +389910,Labour,Labour +389907,Labour,Labour +389905,Labour,Labour +389898,Labour,Labour +389897,Labour,Labour +389894,Labour,Labour +389892,Labour,Labour +389888,Labour,Labour +389885,Labour,Labour +389884,Labour,Labour +389882,Labour,Labour +389877,Labour,Labour +491151,Labour,Labour +491090,Labour,Labour +491089,Labour,Labour +491085,Labour,Labour +491083,Labour,Labour +491082,Labour,Labour +491081,Labour,Labour +491080,Labour,Labour +491076,Labour,Labour +491075,Labour,Labour +491074,Labour,Labour +491072,Labour,Labour +491071,Labour,Labour +491066,Labour,Labour +491053,Labour,Labour +491044,Labour,Labour +491041,Labour,Labour +491037,Labour,Labour +491034,Labour,Labour +491031,Labour,Labour +491029,Labour,Labour +482208,Labour,Labour +482206,Labour,Labour +482204,Labour,Labour +482202,Labour,Labour +482201,Labour,Labour +482200,Labour,Labour +482199,Labour,Labour +477500,Labour,Labour +477497,Labour,Labour +473291,Labour,Labour +471138,Labour,Labour +466237,Labour,Labour +466236,Labour,Labour +466235,Labour,Labour +466231,Labour,Labour +466230,Labour,Labour +466228,Labour,Labour +466227,Labour,Labour +466226,Labour,Labour +466223,Labour,Labour +466218,Labour,Labour +462770,Labour,Labour +461148,Labour,Labour +461147,Labour,Labour +446096,Labour,Labour +443166,Labour,Labour +438443,Labour,Labour +438441,Labour,Labour +438439,Labour,Labour +438436,Labour,Labour +438433,Labour,Labour +438429,Labour,Labour +438411,Labour,Labour +438409,Labour,Labour +438406,Labour,Labour +438404,Labour,Labour +438401,Labour,Labour +438396,Labour,Labour +438395,Labour,Labour +438393,Labour,Labour +438379,Labour,Labour +438375,Labour,Labour +438369,Labour,Labour +438365,Labour,Labour +438362,Labour,Labour +438360,Labour,Labour +438359,Labour,Labour +438353,Labour,Labour +438352,Labour,Labour +438349,Labour,Labour +438348,Labour,Labour +438346,Labour,Labour +438344,Labour,Labour +438342,Labour,Labour +438341,Labour,Labour +438338,Labour,Labour +438337,Labour,Labour +438336,Labour,Labour +438330,Labour,Labour +438329,Labour,Labour +438327,Labour,Labour +438326,Labour,Labour +438325,Labour,Labour +438324,Labour,Labour +438322,Labour,Labour +438319,Labour,Labour +438318,Labour,Labour +438316,Labour,Labour +438314,Labour,Labour +436743,Labour,Labour +430184,Labour,Labour +428945,Labour,Labour +428940,Labour,Labour +428938,Labour,Labour +428937,Labour,Labour +421882,Labour,Labour +421879,Labour,Labour +421871,Labour,Labour +421866,Labour,Labour +419775,Labour,Labour +416177,Labour,Labour +416175,Labour,Labour +416171,Labour,Labour +416169,Labour,Labour +416164,Labour,Labour +416161,Labour,Labour +416159,Labour,Labour +416155,Labour,Labour +416154,Labour,Labour +416152,Labour,Labour +416149,Labour,Labour +416148,Labour,Labour +416146,Labour,Labour +416142,Labour,Labour +416139,Labour,Labour +416129,Labour,Labour +416126,Labour,Labour +416120,Labour,Labour +416119,Labour,Labour +416118,Labour,Labour +416116,Labour,Labour +416112,Labour,Labour +416033,Labour,Labour +416027,Labour,Labour +416022,Labour,Labour +416019,Labour,Labour +416017,Labour,Labour +416015,Labour,Labour +416014,Labour,Labour +416012,Labour,Labour +416009,Labour,Labour +416008,Labour,Labour +543916,Labour,Labour +538346,Labour,Labour +538341,Labour,Labour +538337,Labour,Labour +538324,Labour,Labour +538317,Labour,Labour +535118,Labour,Labour +535116,Labour,Labour +535113,Labour,Labour +535111,Labour,Labour +535109,Labour,Labour +535107,Labour,Labour +535106,Labour,Labour +535104,Labour,Labour +535103,Labour,Labour +535100,Labour,Labour +535095,Labour,Labour +535093,Labour,Labour +535091,Labour,Labour +535083,Labour,Labour +535082,Labour,Labour +535081,Labour,Labour +535080,Labour,Labour +535079,Labour,Labour +535077,Labour,Labour +535076,Labour,Labour +535075,Labour,Labour +535074,Labour,Labour +535072,Labour,Labour +535069,Labour,Labour +535067,Labour,Labour +535065,Labour,Labour +528843,Labour,Labour +528829,Labour,Labour +528824,Labour,Labour +528818,Labour,Labour +526164,Labour,Labour +526154,Labour,Labour +526147,Labour,Labour +526141,Labour,Labour +526138,Labour,Labour +526119,Labour,Labour +526106,Labour,Labour +526101,Labour,Labour +526090,Labour,Labour +526072,Labour,Labour +522882,Labour,Labour +522868,Labour,Labour +522866,Labour,Labour +522864,Labour,Labour +522800,Labour,Labour +522798,Labour,Labour +522779,Labour,Labour +522778,Labour,Labour +522777,Labour,Labour +522775,Labour,Labour +522772,Labour,Labour +522769,Labour,Labour +522761,Labour,Labour +522759,Labour,Labour +522750,Labour,Labour +519820,Labour,Labour +519768,Labour,Labour +519765,Labour,Labour +519764,Labour,Labour +517994,Labour,Labour +517986,Labour,Labour +517979,Labour,Labour +517974,Labour,Labour +515642,Labour,Labour +515640,Labour,Labour +515639,Labour,Labour +514094,Labour,Labour +514087,Labour,Labour +512790,Labour,Labour +512787,Labour,Labour +512785,Labour,Labour +512781,Labour,Labour +512778,Labour,Labour +512775,Labour,Labour +512772,Labour,Labour +512770,Labour,Labour +512767,Labour,Labour +511052,Labour,Labour +511039,Labour,Labour +511015,Labour,Labour +511005,Labour,Labour +511002,Labour,Labour +511000,Labour,Labour +510998,Labour,Labour +510995,Labour,Labour +510992,Labour,Labour +510991,Labour,Labour +510989,Labour,Labour +510987,Labour,Labour +510984,Labour,Labour +510983,Labour,Labour +510979,Labour,Labour +510978,Labour,Labour +510977,Labour,Labour +510976,Labour,Labour +510975,Labour,Labour +510974,Labour,Labour +510973,Labour,Labour +510961,Labour,Labour +510958,Labour,Labour +510956,Labour,Labour +510953,Labour,Labour +510949,Labour,Labour +508768,Labour,Labour +508761,Labour,Labour +508758,Labour,Labour +508757,Labour,Labour +508753,Labour,Labour +508745,Labour,Labour +508603,Labour,Labour +508600,Labour,Labour +508597,Labour,Labour +508595,Labour,Labour +508591,Labour,Labour +508589,Labour,Labour +508541,Labour,Labour +508539,Labour,Labour +508538,Labour,Labour +504803,Labour,Labour +504783,Labour,Labour +504764,Labour,Labour +504757,Labour,Labour +502360,Labour,Labour +502353,Labour,Labour +502301,Labour,Labour +498910,Labour,Labour +498907,Labour,Labour +493258,Labour,Labour +491167,Labour,Labour +491159,Labour,Labour +491155,Labour,Labour +462770,Regional Development,Regional Development +511039,Regional Development,Regional Development +502358,Regional Development,Regional Development +502353,Regional Development,Regional Development +502293,Regional Development,Regional Development +487142,Regional Development,Regional Development +487133,Regional Development,Regional Development +509000,Small Business,Small Business +508999,Small Business,Small Business +508998,Small Business,Small Business +508997,Small Business,Small Business +508996,Small Business,Small Business +508994,Small Business,Small Business +508993,Small Business,Small Business +508992,Small Business,Small Business +508991,Small Business,Small Business +508990,Small Business,Small Business +508988,Small Business,Small Business +508987,Small Business,Small Business +508985,Small Business,Small Business +508984,Small Business,Small Business +508983,Small Business,Small Business +508982,Small Business,Small Business +508981,Small Business,Small Business +508980,Small Business,Small Business +508979,Small Business,Small Business +508978,Small Business,Small Business +508977,Small Business,Small Business +508976,Small Business,Small Business +508975,Small Business,Small Business +508974,Small Business,Small Business +508973,Small Business,Small Business +508972,Small Business,Small Business +504799,Small Business,Small Business +504791,Small Business,Small Business +502357,Small Business,Small Business +491171,Small Business,Small Business +482204,Small Business,Small Business +482202,Small Business,Small Business +482201,Small Business,Small Business +482200,Small Business,Small Business +471137,Small Business,Small Business +461147,Small Business,Small Business +446096,Small Business,Small Business +444382,Small Business,Small Business +444349,Small Business,Small Business +444348,Small Business,Small Business +444235,Small Business,Small Business +444234,Small Business,Small Business +444215,Small Business,Small Business +443166,Small Business,Small Business +439178,Small Business,Small Business +438353,Small Business,Small Business +438316,Small Business,Small Business +438314,Small Business,Small Business +436743,Small Business,Small Business +434084,Small Business,Small Business +517992,Small Business,Small Business +517988,Small Business,Small Business +514093,Small Business,Small Business +512790,Small Business,Small Business +512787,Small Business,Small Business +512785,Small Business,Small Business +512781,Small Business,Small Business +512778,Small Business,Small Business +512775,Small Business,Small Business +512772,Small Business,Small Business +512770,Small Business,Small Business +512767,Small Business,Small Business +512751,Small Business,Small Business +512748,Small Business,Small Business +512747,Small Business,Small Business +512745,Small Business,Small Business +511052,Small Business,Small Business +511048,Small Business,Small Business +509022,Small Business,Small Business +509020,Small Business,Small Business +509019,Small Business,Small Business +509018,Small Business,Small Business +509017,Small Business,Small Business +509016,Small Business,Small Business +509013,Small Business,Small Business +509012,Small Business,Small Business +509011,Small Business,Small Business +509010,Small Business,Small Business +509008,Small Business,Small Business +509007,Small Business,Small Business +509006,Small Business,Small Business +509005,Small Business,Small Business +509004,Small Business,Small Business +509003,Small Business,Small Business +416009,Taxation and Finance,Taxation and Finance +416008,Taxation and Finance,Taxation and Finance +416007,Taxation and Finance,Taxation and Finance +416005,Taxation and Finance,Taxation and Finance +416004,Taxation and Finance,Taxation and Finance +416003,Taxation and Finance,Taxation and Finance +416001,Taxation and Finance,Taxation and Finance +415998,Taxation and Finance,Taxation and Finance +415997,Taxation and Finance,Taxation and Finance +415995,Taxation and Finance,Taxation and Finance +415994,Taxation and Finance,Taxation and Finance +415991,Taxation and Finance,Taxation and Finance +415987,Taxation and Finance,Taxation and Finance +415985,Taxation and Finance,Taxation and Finance +415982,Taxation and Finance,Taxation and Finance +415980,Taxation and Finance,Taxation and Finance +411295,Taxation and Finance,Taxation and Finance +411294,Taxation and Finance,Taxation and Finance +411293,Taxation and Finance,Taxation and Finance +410190,Taxation and Finance,Taxation and Finance +409828,Taxation and Finance,Taxation and Finance +409824,Taxation and Finance,Taxation and Finance +408296,Taxation and Finance,Taxation and Finance +405532,Taxation and Finance,Taxation and Finance +405528,Taxation and Finance,Taxation and Finance +402024,Taxation and Finance,Taxation and Finance +482204,Taxation and Finance,Taxation and Finance +482202,Taxation and Finance,Taxation and Finance +482201,Taxation and Finance,Taxation and Finance +482200,Taxation and Finance,Taxation and Finance +464872,Taxation and Finance,Taxation and Finance +464868,Taxation and Finance,Taxation and Finance +464858,Taxation and Finance,Taxation and Finance +461154,Taxation and Finance,Taxation and Finance +461153,Taxation and Finance,Taxation and Finance +461147,Taxation and Finance,Taxation and Finance +451074,Taxation and Finance,Taxation and Finance +446096,Taxation and Finance,Taxation and Finance +444382,Taxation and Finance,Taxation and Finance +444235,Taxation and Finance,Taxation and Finance +443166,Taxation and Finance,Taxation and Finance +438441,Taxation and Finance,Taxation and Finance +438360,Taxation and Finance,Taxation and Finance +438353,Taxation and Finance,Taxation and Finance +436743,Taxation and Finance,Taxation and Finance +434084,Taxation and Finance,Taxation and Finance +432923,Taxation and Finance,Taxation and Finance +431893,Taxation and Finance,Taxation and Finance +431886,Taxation and Finance,Taxation and Finance +430184,Taxation and Finance,Taxation and Finance +428946,Taxation and Finance,Taxation and Finance +428945,Taxation and Finance,Taxation and Finance +428943,Taxation and Finance,Taxation and Finance +428940,Taxation and Finance,Taxation and Finance +428939,Taxation and Finance,Taxation and Finance +428937,Taxation and Finance,Taxation and Finance +425960,Taxation and Finance,Taxation and Finance +424479,Taxation and Finance,Taxation and Finance +424478,Taxation and Finance,Taxation and Finance +421882,Taxation and Finance,Taxation and Finance +421879,Taxation and Finance,Taxation and Finance +421871,Taxation and Finance,Taxation and Finance +421869,Taxation and Finance,Taxation and Finance +421866,Taxation and Finance,Taxation and Finance +416180,Taxation and Finance,Taxation and Finance +416177,Taxation and Finance,Taxation and Finance +416175,Taxation and Finance,Taxation and Finance +416171,Taxation and Finance,Taxation and Finance +416169,Taxation and Finance,Taxation and Finance +416164,Taxation and Finance,Taxation and Finance +416161,Taxation and Finance,Taxation and Finance +416159,Taxation and Finance,Taxation and Finance +416155,Taxation and Finance,Taxation and Finance +416154,Taxation and Finance,Taxation and Finance +416152,Taxation and Finance,Taxation and Finance +416149,Taxation and Finance,Taxation and Finance +416148,Taxation and Finance,Taxation and Finance +416146,Taxation and Finance,Taxation and Finance +416142,Taxation and Finance,Taxation and Finance +416139,Taxation and Finance,Taxation and Finance +416129,Taxation and Finance,Taxation and Finance +416126,Taxation and Finance,Taxation and Finance +416120,Taxation and Finance,Taxation and Finance +416119,Taxation and Finance,Taxation and Finance +416118,Taxation and Finance,Taxation and Finance +416116,Taxation and Finance,Taxation and Finance +416112,Taxation and Finance,Taxation and Finance +416033,Taxation and Finance,Taxation and Finance +416027,Taxation and Finance,Taxation and Finance +416024,Taxation and Finance,Taxation and Finance +416022,Taxation and Finance,Taxation and Finance +416019,Taxation and Finance,Taxation and Finance +416017,Taxation and Finance,Taxation and Finance +416015,Taxation and Finance,Taxation and Finance +416014,Taxation and Finance,Taxation and Finance +461361,Transportation,Transportation +461147,Transportation,Transportation +444217,Transportation,Transportation +443166,Transportation,Transportation +424480,Transportation,Transportation +405522,Transportation,Transportation +538341,Transportation,Transportation +538337,Transportation,Transportation +538324,Transportation,Transportation +538317,Transportation,Transportation +535118,Transportation,Transportation +535116,Transportation,Transportation +535113,Transportation,Transportation +535111,Transportation,Transportation +535109,Transportation,Transportation +535107,Transportation,Transportation +535106,Transportation,Transportation +535104,Transportation,Transportation +535103,Transportation,Transportation +535100,Transportation,Transportation +535097,Transportation,Transportation +535095,Transportation,Transportation +535093,Transportation,Transportation +535091,Transportation,Transportation +535083,Transportation,Transportation +535082,Transportation,Transportation +535081,Transportation,Transportation +535080,Transportation,Transportation +535079,Transportation,Transportation +535077,Transportation,Transportation +535076,Transportation,Transportation +535075,Transportation,Transportation +535074,Transportation,Transportation +535072,Transportation,Transportation +535069,Transportation,Transportation +535067,Transportation,Transportation +535065,Transportation,Transportation +528824,Transportation,Transportation +528818,Transportation,Transportation +526154,Transportation,Transportation +526147,Transportation,Transportation +526141,Transportation,Transportation +526138,Transportation,Transportation +526119,Transportation,Transportation +526111,Transportation,Transportation +526106,Transportation,Transportation +526101,Transportation,Transportation +526096,Transportation,Transportation +526093,Transportation,Transportation +526090,Transportation,Transportation +526072,Transportation,Transportation +526066,Transportation,Transportation +526064,Transportation,Transportation +526061,Transportation,Transportation +526058,Transportation,Transportation +522882,Transportation,Transportation +522874,Transportation,Transportation +522871,Transportation,Transportation +522868,Transportation,Transportation +522866,Transportation,Transportation +522864,Transportation,Transportation +522800,Transportation,Transportation +522798,Transportation,Transportation +522779,Transportation,Transportation +522778,Transportation,Transportation +522777,Transportation,Transportation +522775,Transportation,Transportation +522772,Transportation,Transportation +522769,Transportation,Transportation +522761,Transportation,Transportation +522759,Transportation,Transportation +519820,Transportation,Transportation +519768,Transportation,Transportation +519765,Transportation,Transportation +519764,Transportation,Transportation +517994,Transportation,Transportation +517986,Transportation,Transportation +517981,Transportation,Transportation +517979,Transportation,Transportation +517974,Transportation,Transportation +515642,Transportation,Transportation +515640,Transportation,Transportation +512790,Transportation,Transportation +512787,Transportation,Transportation +512785,Transportation,Transportation +521540,Agriculture,Agriculture +171764,Consumer Issues,Consumer Issues +381178,Employment and Training,Employment and Training +81214,Energy,Energy +245077,Environment,Environment +309937,Financial Institutions,Financial Institutions +499047,Health,Health +515524,Immigration,Immigration +515527,Industry,Industry +382850,Internal Trade,Internal Trade +159297,International Relations,International Relations +403485,International Trade,International Trade +245042,Justice and Law Enforcement,Justice and Law Enforcement +389672,Labour,Labour +493211,Small Business,Small Business +501843,Taxation and Finance,Taxation and Finance +473564,Tourism,Tourism +416716,International Relations,International Relations +423614,Tourism,Tourism +416716,Transportation,Transportation +541675,Health,Health +89096,Taxation and Finance,Taxation and Finance +80196,Infrastructure,Infrastructure +80196,Tourism,Tourism +381085,Intellectual Property,Intellectual Property +156250,Education,Education +84854,Energy,Energy +109651,Health,Health +116349,Health,Health +116350,Industry,Industry +123975,Energy,Energy +80996,Transportation,Transportation +458194,Agriculture,Agriculture +530659,Health,Health +532902,International Trade,International Trade +495658,Employment and Training,Employment and Training +429036,Environment,Environment +380320,Fisheries,Fisheries +471101,Health,Health +295569,Immigration,Immigration +505994,Industry,Industry +447838,International Relations,International Relations +520330,International Trade,International Trade +372054,Justice and Law Enforcement,Justice and Law Enforcement +459862,Labour,Labour +372035,Mining,Mining +471133,Transportation,Transportation +536996,Agriculture,Agriculture +406487,Environment,Environment +435003,Fisheries,Fisheries +206469,Taxation and Finance,Taxation and Finance +98074,Energy,Energy +77393,Energy,Energy +104059,Environment,Environment +285833,Education,Education +438469,Immigration,Immigration +316829,International Relations,International Relations +398792,Justice and Law Enforcement,Justice and Law Enforcement +188752,Other,Langues officielles +171859,Other,Francophonie canadienne +142424,Education,Education +97676,Employment and Training,Employment and Training +97676,Infrastructure,Infrastructure +93256,Regional Development,Regional Development +145799,Education,Education +93200,Education,Education +93200,Employment and Training,Employment and Training +93200,Health,Health +240011,Environment,Environment +90434,Financial Institutions,Financial Institutions +80617,Employment and Training,Employment and Training +79494,Consumer Issues,Consumer Issues +150324,Immigration,Immigration +79494,Justice and Law Enforcement,Justice and Law Enforcement +79494,Other,HUMAN RIGHTS +88131,Energy,Energy +170645,Health,Health +522800,Agriculture,Agriculture +444215,Consumer Issues,Consumer Issues +444215,Education,Education +477497,Employment and Training,Employment and Training +502296,Environment,Environment +535067,Financial Institutions,Financial Institutions +466233,Health,Health +473295,Industry,Industry +498926,Infrastructure,Infrastructure +402019,Internal Trade,Internal Trade +510987,International Relations,International Relations +498884,International Trade,International Trade +522749,Justice and Law Enforcement,Justice and Law Enforcement +416007,Labour,Labour +466237,Regional Development,Regional Development +509002,Small Business,Small Business +416012,Taxation and Finance,Taxation and Finance +462770,Transportation,Transportation +512781,Transportation,Transportation +512778,Transportation,Transportation +512775,Transportation,Transportation +512772,Transportation,Transportation +512770,Transportation,Transportation +512767,Transportation,Transportation +510977,Transportation,Transportation +510974,Transportation,Transportation +508768,Transportation,Transportation +504817,Transportation,Transportation +504809,Transportation,Transportation +504783,Transportation,Transportation +504764,Transportation,Transportation +504757,Transportation,Transportation +502301,Transportation,Transportation +493262,Transportation,Transportation +491171,Transportation,Transportation +491045,Transportation,Transportation +482204,Transportation,Transportation +482202,Transportation,Transportation +482201,Transportation,Transportation +482200,Transportation,Transportation +482199,Transportation,Transportation +477500,Transportation,Transportation +471138,Transportation,Transportation +466227,Transportation,Transportation +466217,Transportation,Transportation +464872,Transportation,Transportation +385315,Immigration,Immigration +425207,International Relations,International Relations +424598,International Relations,International Relations +310439,International Relations,International Relations +310433,International Relations,International Relations +310432,International Relations,International Relations +309639,International Relations,International Relations +308049,International Relations,International Relations +306993,International Relations,International Relations +306990,International Relations,International Relations +306989,International Relations,International Relations +306971,International Relations,International Relations +276229,International Relations,International Relations +417875,International Relations,International Relations +416494,International Relations,International Relations +414075,International Relations,International Relations +400896,International Relations,International Relations +342225,International Relations,International Relations +506273,International Relations,International Relations +500424,International Relations,International Relations +493920,International Relations,International Relations +492205,International Relations,International Relations +491175,International Relations,International Relations +491001,International Relations,International Relations +489317,International Relations,International Relations +476743,International Relations,International Relations +476230,International Relations,International Relations +476126,International Relations,International Relations +474951,International Relations,International Relations +474950,International Relations,International Relations +474654,International Relations,International Relations +463460,International Relations,International Relations +463458,International Relations,International Relations +463457,International Relations,International Relations +463456,International Relations,International Relations +463455,International Relations,International Relations +462913,International Relations,International Relations +459152,International Relations,International Relations +456511,International Relations,International Relations +454303,International Relations,International Relations +440686,International Relations,International Relations +440684,International Relations,International Relations +440683,International Relations,International Relations +440681,International Relations,International Relations +440679,International Relations,International Relations +440677,International Relations,International Relations +428194,International Relations,International Relations +428191,International Relations,International Relations +425218,International Relations,International Relations +425217,International Relations,International Relations +425216,International Relations,International Relations +425215,International Relations,International Relations +425212,International Relations,International Relations +425209,International Relations,International Relations +357656,Agriculture,Agriculture +384131,Employment and Training,Employment and Training +384117,Employment and Training,Employment and Training +137256,Employment and Training,Employment and Training +384173,Employment and Training,Employment and Training +384154,Employment and Training,Employment and Training +384153,Employment and Training,Employment and Training +384150,Employment and Training,Employment and Training +384105,Health,Health +384104,Health,Health +137256,Health,Health +435039,Health,Health +435037,Health,Health +433090,Health,Health +431663,Health,Health +430150,Health,Health +430148,Health,Health +425168,Health,Health +425165,Health,Health +425161,Health,Health +425160,Health,Health +425159,Health,Health +425158,Health,Health +420763,Health,Health +411262,Health,Health +411238,Health,Health +411234,Health,Health +411231,Health,Health +411228,Health,Health +411220,Health,Health +411217,Health,Health +384182,Health,Health +384173,Health,Health +384169,Health,Health +384161,Health,Health +384155,Health,Health +384153,Health,Health +384148,Health,Health +384145,Health,Health +384144,Health,Health +384143,Health,Health +384142,Health,Health +384141,Health,Health +384140,Health,Health +384139,Health,Health +384138,Health,Health +384137,Health,Health +384136,Health,Health +384135,Health,Health +384134,Health,Health +384133,Health,Health +384132,Health,Health +384131,Health,Health +384129,Health,Health +384128,Health,Health +384127,Health,Health +384126,Health,Health +384125,Health,Health +384117,Health,Health +384114,Health,Health +384112,Health,Health +384110,Health,Health +384109,Health,Health +384111,Industry,Industry +384106,Justice and Law Enforcement,Justice and Law Enforcement +384104,Justice and Law Enforcement,Justice and Law Enforcement +137256,Justice and Law Enforcement,Justice and Law Enforcement +384182,Justice and Law Enforcement,Justice and Law Enforcement +384181,Justice and Law Enforcement,Justice and Law Enforcement +384180,Justice and Law Enforcement,Justice and Law Enforcement +384178,Justice and Law Enforcement,Justice and Law Enforcement +384176,Justice and Law Enforcement,Justice and Law Enforcement +384175,Justice and Law Enforcement,Justice and Law Enforcement +384172,Justice and Law Enforcement,Justice and Law Enforcement +384169,Justice and Law Enforcement,Justice and Law Enforcement +384168,Justice and Law Enforcement,Justice and Law Enforcement +384167,Justice and Law Enforcement,Justice and Law Enforcement +384166,Justice and Law Enforcement,Justice and Law Enforcement +384165,Justice and Law Enforcement,Justice and Law Enforcement +384163,Justice and Law Enforcement,Justice and Law Enforcement +384161,Justice and Law Enforcement,Justice and Law Enforcement +384159,Justice and Law Enforcement,Justice and Law Enforcement +384158,Justice and Law Enforcement,Justice and Law Enforcement +384157,Justice and Law Enforcement,Justice and Law Enforcement +384156,Justice and Law Enforcement,Justice and Law Enforcement +384155,Justice and Law Enforcement,Justice and Law Enforcement +384154,Justice and Law Enforcement,Justice and Law Enforcement +384153,Justice and Law Enforcement,Justice and Law Enforcement +384150,Justice and Law Enforcement,Justice and Law Enforcement +384148,Justice and Law Enforcement,Justice and Law Enforcement +384146,Justice and Law Enforcement,Justice and Law Enforcement +384145,Justice and Law Enforcement,Justice and Law Enforcement +384144,Justice and Law Enforcement,Justice and Law Enforcement +384143,Justice and Law Enforcement,Justice and Law Enforcement +384142,Justice and Law Enforcement,Justice and Law Enforcement +384141,Justice and Law Enforcement,Justice and Law Enforcement +384140,Justice and Law Enforcement,Justice and Law Enforcement +384139,Justice and Law Enforcement,Justice and Law Enforcement +384138,Justice and Law Enforcement,Justice and Law Enforcement +384137,Justice and Law Enforcement,Justice and Law Enforcement +384136,Justice and Law Enforcement,Justice and Law Enforcement +384135,Justice and Law Enforcement,Justice and Law Enforcement +384134,Justice and Law Enforcement,Justice and Law Enforcement +384133,Justice and Law Enforcement,Justice and Law Enforcement +384132,Justice and Law Enforcement,Justice and Law Enforcement +384131,Justice and Law Enforcement,Justice and Law Enforcement +384129,Justice and Law Enforcement,Justice and Law Enforcement +384128,Justice and Law Enforcement,Justice and Law Enforcement +384127,Justice and Law Enforcement,Justice and Law Enforcement +384126,Justice and Law Enforcement,Justice and Law Enforcement +384125,Justice and Law Enforcement,Justice and Law Enforcement +384117,Justice and Law Enforcement,Justice and Law Enforcement +384114,Justice and Law Enforcement,Justice and Law Enforcement +384113,Justice and Law Enforcement,Justice and Law Enforcement +384112,Justice and Law Enforcement,Justice and Law Enforcement +404818,Small Business,Small Business +404817,Small Business,Small Business +137256,Small Business,Small Business +403025,Small Business,Small Business +384181,Small Business,Small Business +384180,Small Business,Small Business +384179,Small Business,Small Business +384178,Small Business,Small Business +384176,Small Business,Small Business +384175,Small Business,Small Business +384174,Small Business,Small Business +384173,Small Business,Small Business +384172,Small Business,Small Business +384170,Small Business,Small Business +384168,Small Business,Small Business +384167,Small Business,Small Business +384166,Small Business,Small Business +384158,Small Business,Small Business +384150,Small Business,Small Business +384146,Small Business,Small Business +384145,Small Business,Small Business +384142,Small Business,Small Business +384141,Small Business,Small Business +384140,Small Business,Small Business +384139,Small Business,Small Business +384138,Small Business,Small Business +384137,Small Business,Small Business +384136,Small Business,Small Business +384135,Small Business,Small Business +384134,Small Business,Small Business +384133,Small Business,Small Business +384132,Small Business,Small Business +384131,Small Business,Small Business +384129,Small Business,Small Business +384128,Small Business,Small Business +384127,Small Business,Small Business +384126,Small Business,Small Business +384125,Small Business,Small Business +384117,Small Business,Small Business +384114,Small Business,Small Business +384113,Small Business,Small Business +384112,Small Business,Small Business +384111,Small Business,Small Business +384110,Small Business,Small Business +384109,Small Business,Small Business +384108,Small Business,Small Business +384107,Small Business,Small Business +384106,Small Business,Small Business +384105,Small Business,Small Business +384104,Small Business,Small Business +436883,Small Business,Small Business +435041,Small Business,Small Business +435039,Small Business,Small Business +435037,Small Business,Small Business +433090,Small Business,Small Business +433089,Small Business,Small Business +433088,Small Business,Small Business +431665,Small Business,Small Business +431664,Small Business,Small Business +431663,Small Business,Small Business +430150,Small Business,Small Business +430149,Small Business,Small Business +430148,Small Business,Small Business +425168,Small Business,Small Business +425165,Small Business,Small Business +425162,Small Business,Small Business +425161,Small Business,Small Business +425160,Small Business,Small Business +425159,Small Business,Small Business +425158,Small Business,Small Business +420766,Small Business,Small Business +420764,Small Business,Small Business +420763,Small Business,Small Business +420762,Small Business,Small Business +414511,Small Business,Small Business +411262,Small Business,Small Business +411240,Small Business,Small Business +411238,Small Business,Small Business +411234,Small Business,Small Business +411231,Small Business,Small Business +411228,Small Business,Small Business +411220,Small Business,Small Business +411219,Small Business,Small Business +411217,Small Business,Small Business +408913,Small Business,Small Business +408912,Small Business,Small Business +407269,Small Business,Small Business +407267,Small Business,Small Business +384161,Taxation and Finance,Taxation and Finance +384158,Taxation and Finance,Taxation and Finance +137256,Taxation and Finance,Taxation and Finance +384155,Taxation and Finance,Taxation and Finance +384154,Taxation and Finance,Taxation and Finance +384148,Taxation and Finance,Taxation and Finance +384146,Taxation and Finance,Taxation and Finance +384145,Taxation and Finance,Taxation and Finance +384144,Taxation and Finance,Taxation and Finance +384143,Taxation and Finance,Taxation and Finance +384142,Taxation and Finance,Taxation and Finance +384141,Taxation and Finance,Taxation and Finance +384140,Taxation and Finance,Taxation and Finance +384139,Taxation and Finance,Taxation and Finance +384138,Taxation and Finance,Taxation and Finance +384137,Taxation and Finance,Taxation and Finance +384135,Taxation and Finance,Taxation and Finance +384134,Taxation and Finance,Taxation and Finance +384133,Taxation and Finance,Taxation and Finance +384111,Taxation and Finance,Taxation and Finance +384108,Taxation and Finance,Taxation and Finance +384107,Taxation and Finance,Taxation and Finance +384106,Taxation and Finance,Taxation and Finance +384105,Taxation and Finance,Taxation and Finance +384104,Taxation and Finance,Taxation and Finance +425168,Taxation and Finance,Taxation and Finance +420765,Taxation and Finance,Taxation and Finance +420763,Taxation and Finance,Taxation and Finance +420762,Taxation and Finance,Taxation and Finance +411262,Taxation and Finance,Taxation and Finance +411240,Taxation and Finance,Taxation and Finance +411220,Taxation and Finance,Taxation and Finance +411219,Taxation and Finance,Taxation and Finance +411217,Taxation and Finance,Taxation and Finance +408913,Taxation and Finance,Taxation and Finance +408912,Taxation and Finance,Taxation and Finance +403025,Taxation and Finance,Taxation and Finance +384182,Taxation and Finance,Taxation and Finance +384181,Taxation and Finance,Taxation and Finance +384180,Taxation and Finance,Taxation and Finance +384179,Taxation and Finance,Taxation and Finance +384178,Taxation and Finance,Taxation and Finance +384176,Taxation and Finance,Taxation and Finance +384175,Taxation and Finance,Taxation and Finance +384174,Taxation and Finance,Taxation and Finance +384170,Taxation and Finance,Taxation and Finance +384169,Taxation and Finance,Taxation and Finance +384168,Taxation and Finance,Taxation and Finance +384167,Taxation and Finance,Taxation and Finance +384166,Taxation and Finance,Taxation and Finance +384165,Taxation and Finance,Taxation and Finance +109025,Defence,Defence +109024,Defence,Defence +80856,Defence,Defence +396789,Industry,Industry +394471,Industry,Industry +97537,Industry,Industry +93473,Industry,Industry +93472,Industry,Industry +93470,Industry,Industry +89918,Industry,Industry +89915,Industry,Industry +84934,Industry,Industry +142617,Industry,Industry +114031,Industry,Industry +114030,Industry,Industry +114029,Industry,Industry +109028,Industry,Industry +105074,Industry,Industry +101390,Industry,Industry +309899,Industry,Industry +303521,Industry,Industry +290661,Industry,Industry +280849,Industry,Industry +277250,Industry,Industry +277249,Industry,Industry +272252,Industry,Industry +272209,Industry,Industry +269472,Industry,Industry +254093,Industry,Industry +254092,Industry,Industry +254091,Industry,Industry +250773,Industry,Industry +245316,Industry,Industry +243371,Industry,Industry +243370,Industry,Industry +233596,Industry,Industry +233594,Industry,Industry +227028,Industry,Industry +227023,Industry,Industry +227021,Industry,Industry +217651,Industry,Industry +217648,Industry,Industry +212092,Industry,Industry +212091,Industry,Industry +398999,Industry,Industry +397261,Industry,Industry +396891,Industry,Industry +396887,Industry,Industry +396878,Industry,Industry +396870,Industry,Industry +396878,International Trade,International Trade +93472,Other,Space +93470,Other,Space +109024,Other,Space +83134,Infrastructure,Infrastructure +83131,Infrastructure,Infrastructure +83134,Tourism,Tourism +83131,Tourism,Tourism +83134,Other,Economic Development +83131,Other,Economic Development +277156,Taxation and Finance,Taxation and Finance +77077,Health,Health +77074,Health,Health +81554,Health,Health +81334,Health,Health +80617,Health,Health +80616,Health,Health +80615,Health,Health +97814,Other,"PROTECTION OF CHILDREN, PROMOTION OF POLICIES THAT ENCOURAGE STABLE FAMILIES, PROTECTION OF RELIGION" +127774,Health,Health +127234,Health,Health +191389,Employment and Training,Employment and Training +350495,Labour,Labour +348388,Labour,Labour +262375,Labour,Labour +262374,Labour,Labour +191390,Labour,Labour +191389,Labour,Labour +350495,Transportation,Transportation +348389,Transportation,Transportation +99694,Transportation,Transportation +158474,Transportation,Transportation +136875,Transportation,Transportation +135074,Transportation,Transportation +262375,Transportation,Transportation +262374,Transportation,Transportation +262371,Transportation,Transportation +262369,Transportation,Transportation +252790,Transportation,Transportation +252789,Transportation,Transportation +228013,Transportation,Transportation +228012,Transportation,Transportation +376008,Transportation,Transportation +376007,Transportation,Transportation +368651,Transportation,Transportation +368650,Transportation,Transportation +367550,Transportation,Transportation +511564,Education,Education +500465,Education,Education +157137,Education,Education +157125,Education,Education +159235,Education,Education +157475,Education,Education +157474,Education,Education +157472,Education,Education +388945,Health,Health +388944,Health,Health +289232,Health,Health +288969,Health,Health +287550,Health,Health +287549,Health,Health +159235,Health,Health +157475,Health,Health +157474,Health,Health +157472,Health,Health +157140,Health,Health +157137,Health,Health +157135,Health,Health +157131,Health,Health +157125,Health,Health +339968,Health,Health +339811,Health,Health +331606,Health,Health +331602,Health,Health +329682,Health,Health +329681,Health,Health +329680,Health,Health +318590,Health,Health +318310,Health,Health +318309,Health,Health +309620,Health,Health +309618,Health,Health +309617,Health,Health +309616,Health,Health +298412,Health,Health +295223,Health,Health +295213,Health,Health +295172,Health,Health +387186,Health,Health +385444,Health,Health +379244,Health,Health +379243,Health,Health +379242,Health,Health +379241,Health,Health +379240,Health,Health +379239,Health,Health +375318,Health,Health +375316,Health,Health +375315,Health,Health +374507,Health,Health +373928,Health,Health +373318,Health,Health +372474,Health,Health +372470,Health,Health +368402,Health,Health +368401,Health,Health +367444,Health,Health +367443,Health,Health +367442,Health,Health +355900,Health,Health +350666,Health,Health +350665,Health,Health +350664,Health,Health +350663,Health,Health +350658,Health,Health +348351,Health,Health +346742,Health,Health +344407,Health,Health +341166,Health,Health +341164,Health,Health +341163,Health,Health +542300,Health,Health +542299,Health,Health +538737,Health,Health +538736,Health,Health +538735,Health,Health +538734,Health,Health +533156,Health,Health +532964,Health,Health +532962,Health,Health +532886,Health,Health +532537,Health,Health +532536,Health,Health +529927,Health,Health +527176,Health,Health +524818,Health,Health +515069,Health,Health +511644,Health,Health +503448,Health,Health +503447,Health,Health +500459,Health,Health +498205,Health,Health +498201,Health,Health +494557,Health,Health +494555,Health,Health +493503,Health,Health +488956,Health,Health +488955,Health,Health +488953,Health,Health +488350,Health,Health +488347,Health,Health +484049,Health,Health +484046,Health,Health +482653,Health,Health +480753,Health,Health +476244,Health,Health +469325,Health,Health +469320,Health,Health +466806,Health,Health +466805,Health,Health +466802,Health,Health +462486,Health,Health +462128,Health,Health +450880,Health,Health +450877,Health,Health +446389,Health,Health +446388,Health,Health +446387,Health,Health +446386,Health,Health +442877,Health,Health +437732,Health,Health +434233,Health,Health +430187,Health,Health +418566,Health,Health +414615,Health,Health +414614,Health,Health +414613,Health,Health +411131,Health,Health +400548,Health,Health +397237,Health,Health +391938,Health,Health +195488,Consumer Issues,Consumer Issues +195287,Consumer Issues,Consumer Issues +180925,Consumer Issues,Consumer Issues +180924,Consumer Issues,Consumer Issues +174058,Consumer Issues,Consumer Issues +169725,Consumer Issues,Consumer Issues +167585,Consumer Issues,Consumer Issues +165710,Consumer Issues,Consumer Issues +363536,Consumer Issues,Consumer Issues +330349,Consumer Issues,Consumer Issues +321865,Consumer Issues,Consumer Issues +246289,Consumer Issues,Consumer Issues +212529,Consumer Issues,Consumer Issues +196146,Consumer Issues,Consumer Issues +503568,Health,Health +100594,Health,Health +98454,Health,Health +90391,Health,Health +90380,Health,Health +90379,Health,Health +90377,Health,Health +90369,Health,Health +79714,Health,Health +158348,Health,Health +157450,Health,Health +157449,Health,Health +157448,Health,Health +157447,Health,Health +157446,Health,Health +157391,Health,Health +157390,Health,Health +157389,Health,Health +157388,Health,Health +156800,Health,Health +156370,Health,Health +156369,Health,Health +156368,Health,Health +155690,Health,Health +155688,Health,Health +155687,Health,Health +155686,Health,Health +146042,Health,Health +146040,Health,Health +106558,Health,Health +167280,Health,Health +167237,Health,Health +167236,Health,Health +167235,Health,Health +167234,Health,Health +167233,Health,Health +167036,Health,Health +167034,Health,Health +167032,Health,Health +166088,Health,Health +166087,Health,Health +166086,Health,Health +166085,Health,Health +165714,Health,Health +165713,Health,Health +165712,Health,Health +165711,Health,Health +165710,Health,Health +165384,Health,Health +165324,Health,Health +165104,Health,Health +164626,Health,Health +164625,Health,Health +161356,Health,Health +160796,Health,Health +160481,Health,Health +160391,Health,Health +158833,Health,Health +158832,Health,Health +158831,Health,Health +255129,Health,Health +246289,Health,Health +245513,Health,Health +240950,Health,Health +240949,Health,Health +238409,Health,Health +236390,Health,Health +236389,Health,Health +235929,Health,Health +223203,Health,Health +223189,Health,Health +215548,Health,Health +212529,Health,Health +210808,Health,Health +210807,Health,Health +209927,Health,Health +205428,Health,Health +204589,Health,Health +204588,Health,Health +204569,Health,Health +201013,Health,Health +199625,Health,Health +199547,Health,Health +197167,Health,Health +196451,Health,Health +196404,Health,Health +196364,Health,Health +196146,Health,Health +195855,Health,Health +195854,Health,Health +195853,Health,Health +195852,Health,Health +195851,Health,Health +195488,Health,Health +195395,Health,Health +195287,Health,Health +193264,Health,Health +192360,Health,Health +192359,Health,Health +192084,Health,Health +192054,Health,Health +191724,Health,Health +191028,Health,Health +191027,Health,Health +191025,Health,Health +189046,Health,Health +189045,Health,Health +189043,Health,Health +189042,Health,Health +187631,Health,Health +187628,Health,Health +187626,Health,Health +187624,Health,Health +181884,Health,Health +180926,Health,Health +180924,Health,Health +174606,Health,Health +174058,Health,Health +170764,Health,Health +169725,Health,Health +167627,Health,Health +167588,Health,Health +167587,Health,Health +167586,Health,Health +167585,Health,Health +167584,Health,Health +380012,Health,Health +380010,Health,Health +370956,Health,Health +367529,Health,Health +365664,Health,Health +365165,Health,Health +365163,Health,Health +365162,Health,Health +361942,Health,Health +359162,Health,Health +357057,Health,Health +357056,Health,Health +356859,Health,Health +356858,Health,Health +355584,Health,Health +355583,Health,Health +347610,Health,Health +343098,Health,Health +343097,Health,Health +334729,Health,Health +333804,Health,Health +330354,Health,Health +321865,Health,Health +321864,Health,Health +306951,Health,Health +305270,Health,Health +305269,Health,Health +303522,Health,Health +289930,Health,Health +289929,Health,Health +276802,Health,Health +274593,Health,Health +274592,Health,Health +274591,Health,Health +274590,Health,Health +274589,Health,Health +486688,Health,Health +483393,Health,Health +482899,Health,Health +481113,Health,Health +478683,Health,Health +478561,Health,Health +478379,Health,Health +477291,Health,Health +476599,Health,Health +476258,Health,Health +471527,Health,Health +471417,Health,Health +469886,Health,Health +466272,Health,Health +463867,Health,Health +463866,Health,Health +452219,Health,Health +451471,Health,Health +451470,Health,Health +451469,Health,Health +451468,Health,Health +451467,Health,Health +450925,Health,Health +450924,Health,Health +450922,Health,Health +450920,Health,Health +448354,Health,Health +448353,Health,Health +448342,Health,Health +448341,Health,Health +448340,Health,Health +446342,Health,Health +446341,Health,Health +446338,Health,Health +446336,Health,Health +446334,Health,Health +446330,Health,Health +444220,Health,Health +444219,Health,Health +427199,Health,Health +424559,Health,Health +424558,Health,Health +418451,Health,Health +418391,Health,Health +408655,Health,Health +408529,Health,Health +408528,Health,Health +408527,Health,Health +403261,Health,Health +397637,Health,Health +381792,Health,Health +536335,Health,Health +533926,Health,Health +527787,Health,Health +527325,Health,Health +527094,Health,Health +524644,Health,Health +524371,Health,Health +524349,Health,Health +524346,Health,Health +524342,Health,Health +512049,Health,Health +509457,Health,Health +509338,Health,Health +509099,Health,Health +414514,Industry,Industry +414513,Industry,Industry +90391,Industry,Industry +90380,Industry,Industry +90379,Industry,Industry +90377,Industry,Industry +127094,Industry,Industry +123214,Industry,Industry +106558,Industry,Industry +102974,Industry,Industry +165104,Industry,Industry +164626,Industry,Industry +164625,Industry,Industry +161356,Industry,Industry +160796,Industry,Industry +160481,Industry,Industry +160391,Industry,Industry +158833,Industry,Industry +158832,Industry,Industry +158831,Industry,Industry +158348,Industry,Industry +157450,Industry,Industry +157449,Industry,Industry +157448,Industry,Industry +157447,Industry,Industry +157446,Industry,Industry +157391,Industry,Industry +157390,Industry,Industry +157389,Industry,Industry +157388,Industry,Industry +156800,Industry,Industry +156370,Industry,Industry +156369,Industry,Industry +156368,Industry,Industry +155690,Industry,Industry +155688,Industry,Industry +155687,Industry,Industry +155686,Industry,Industry +154910,Industry,Industry +148165,Industry,Industry +146042,Industry,Industry +146040,Industry,Industry +223203,Industry,Industry +223199,Industry,Industry +223197,Industry,Industry +223189,Industry,Industry +223170,Industry,Industry +223169,Industry,Industry +219794,Industry,Industry +215548,Industry,Industry +212529,Industry,Industry +212525,Industry,Industry +210808,Industry,Industry +210807,Industry,Industry +209927,Industry,Industry +205428,Industry,Industry +205427,Industry,Industry +204589,Industry,Industry +204588,Industry,Industry +204569,Industry,Industry +204568,Industry,Industry +204567,Industry,Industry +201013,Industry,Industry +199625,Industry,Industry +199547,Industry,Industry +197167,Industry,Industry +196452,Industry,Industry +196451,Industry,Industry +196404,Industry,Industry +196364,Industry,Industry +196146,Industry,Industry +196145,Industry,Industry +196144,Industry,Industry +195855,Industry,Industry +195854,Industry,Industry +195853,Industry,Industry +195852,Industry,Industry +195851,Industry,Industry +195604,Industry,Industry +195488,Industry,Industry +195395,Industry,Industry +195287,Industry,Industry +193264,Industry,Industry +192360,Industry,Industry +192359,Industry,Industry +192084,Industry,Industry +192054,Industry,Industry +191724,Industry,Industry +191028,Industry,Industry +191027,Industry,Industry +191026,Industry,Industry +191025,Industry,Industry +190308,Industry,Industry +189046,Industry,Industry +189045,Industry,Industry +189043,Industry,Industry +189042,Industry,Industry +187631,Industry,Industry +187629,Industry,Industry +187628,Industry,Industry +187626,Industry,Industry +187624,Industry,Industry +181884,Industry,Industry +180926,Industry,Industry +180925,Industry,Industry +180924,Industry,Industry +180425,Industry,Industry +174607,Industry,Industry +174606,Industry,Industry +174385,Industry,Industry +174058,Industry,Industry +174057,Industry,Industry +170764,Industry,Industry +169725,Industry,Industry +167627,Industry,Industry +167588,Industry,Industry +167587,Industry,Industry +167586,Industry,Industry +167585,Industry,Industry +167584,Industry,Industry +167280,Industry,Industry +167237,Industry,Industry +167236,Industry,Industry +167235,Industry,Industry +167234,Industry,Industry +167233,Industry,Industry +167036,Industry,Industry +167034,Industry,Industry +167032,Industry,Industry +166088,Industry,Industry +166087,Industry,Industry +166086,Industry,Industry +166085,Industry,Industry +165714,Industry,Industry +165713,Industry,Industry +165712,Industry,Industry +165711,Industry,Industry +165384,Industry,Industry +165324,Industry,Industry +411493,Industry,Industry +408655,Industry,Industry +408529,Industry,Industry +408528,Industry,Industry +408527,Industry,Industry +406926,Industry,Industry +406925,Industry,Industry +406743,Industry,Industry +406742,Industry,Industry +405913,Industry,Industry +404393,Industry,Industry +403261,Industry,Industry +401748,Industry,Industry +397637,Industry,Industry +397636,Industry,Industry +397031,Industry,Industry +389846,Industry,Industry +389844,Industry,Industry +389840,Industry,Industry +389839,Industry,Industry +389834,Industry,Industry +388817,Industry,Industry +388814,Industry,Industry +387575,Industry,Industry +387574,Industry,Industry +381792,Industry,Industry +380015,Industry,Industry +380014,Industry,Industry +380012,Industry,Industry +380010,Industry,Industry +370956,Industry,Industry +367529,Industry,Industry +365664,Industry,Industry +365165,Industry,Industry +365164,Industry,Industry +365163,Industry,Industry +365162,Industry,Industry +363536,Industry,Industry +361945,Industry,Industry +361944,Industry,Industry +361942,Industry,Industry +361203,Industry,Industry +361202,Industry,Industry +361201,Industry,Industry +361200,Industry,Industry +359162,Industry,Industry +357057,Industry,Industry +357056,Industry,Industry +356859,Industry,Industry +356858,Industry,Industry +355585,Industry,Industry +355584,Industry,Industry +355583,Industry,Industry +353664,Industry,Industry +353658,Industry,Industry +353656,Industry,Industry +349947,Industry,Industry +349946,Industry,Industry +347612,Industry,Industry +347610,Industry,Industry +343098,Industry,Industry +343097,Industry,Industry +338150,Industry,Industry +334729,Industry,Industry +330524,Industry,Industry +330354,Industry,Industry +330349,Industry,Industry +330347,Industry,Industry +327789,Industry,Industry +327415,Industry,Industry +326653,Industry,Industry +326652,Industry,Industry +321865,Industry,Industry +321864,Industry,Industry +306952,Industry,Industry +306951,Industry,Industry +306950,Industry,Industry +306949,Industry,Industry +305270,Industry,Industry +305269,Industry,Industry +303522,Industry,Industry +303519,Industry,Industry +299735,Industry,Industry +299734,Industry,Industry +299733,Industry,Industry +292989,Industry,Industry +292610,Industry,Industry +292609,Industry,Industry +289933,Industry,Industry +289932,Industry,Industry +289931,Industry,Industry +289930,Industry,Industry +289929,Industry,Industry +276803,Industry,Industry +276802,Industry,Industry +276801,Industry,Industry +274593,Industry,Industry +274592,Industry,Industry +274591,Industry,Industry +274590,Industry,Industry +274589,Industry,Industry +269672,Industry,Industry +269671,Industry,Industry +260209,Industry,Industry +255129,Industry,Industry +251909,Industry,Industry +246629,Industry,Industry +246311,Industry,Industry +246289,Industry,Industry +246129,Industry,Industry +245540,Industry,Industry +245513,Industry,Industry +240950,Industry,Industry +240949,Industry,Industry +238409,Industry,Industry +236390,Industry,Industry +236389,Industry,Industry +235929,Industry,Industry +235109,Industry,Industry +231911,Industry,Industry +231910,Industry,Industry +231909,Industry,Industry +231573,Industry,Industry +231572,Industry,Industry +536335,Industry,Industry +533926,Industry,Industry +527787,Industry,Industry +527325,Industry,Industry +527094,Industry,Industry +524644,Industry,Industry +524371,Industry,Industry +524349,Industry,Industry +524346,Industry,Industry +524342,Industry,Industry +512049,Industry,Industry +509457,Industry,Industry +509338,Industry,Industry +509099,Industry,Industry +503727,Industry,Industry +503568,Industry,Industry +486688,Industry,Industry +486687,Industry,Industry +482899,Industry,Industry +481113,Industry,Industry +478684,Industry,Industry +478683,Industry,Industry +478561,Industry,Industry +478379,Industry,Industry +477291,Industry,Industry +476987,Industry,Industry +476599,Industry,Industry +476258,Industry,Industry +474150,Industry,Industry +472578,Industry,Industry +471527,Industry,Industry +471417,Industry,Industry +469886,Industry,Industry +469159,Industry,Industry +468931,Industry,Industry +468798,Industry,Industry +468796,Industry,Industry +466272,Industry,Industry +463867,Industry,Industry +463866,Industry,Industry +454687,Industry,Industry +453753,Industry,Industry +452219,Industry,Industry +451471,Industry,Industry +451470,Industry,Industry +451469,Industry,Industry +451468,Industry,Industry +451467,Industry,Industry +448354,Industry,Industry +448353,Industry,Industry +448342,Industry,Industry +448341,Industry,Industry +448340,Industry,Industry +446774,Industry,Industry +446342,Industry,Industry +446341,Industry,Industry +446338,Industry,Industry +446336,Industry,Industry +446334,Industry,Industry +446330,Industry,Industry +445117,Industry,Industry +444220,Industry,Industry +444219,Industry,Industry +436654,Industry,Industry +436653,Industry,Industry +435903,Industry,Industry +435900,Industry,Industry +435894,Industry,Industry +434079,Industry,Industry +434078,Industry,Industry +433994,Industry,Industry +433910,Industry,Industry +433909,Industry,Industry +433908,Industry,Industry +433906,Industry,Industry +431925,Industry,Industry +427199,Industry,Industry +424559,Industry,Industry +424558,Industry,Industry +418451,Industry,Industry +418450,Industry,Industry +418391,Industry,Industry +414543,Industry,Industry +414527,Industry,Industry +365165,Intellectual Property,Intellectual Property +365164,Intellectual Property,Intellectual Property +90380,Intellectual Property,Intellectual Property +90379,Intellectual Property,Intellectual Property +90377,Intellectual Property,Intellectual Property +79714,Intellectual Property,Intellectual Property +154910,Intellectual Property,Intellectual Property +148165,Intellectual Property,Intellectual Property +127094,Intellectual Property,Intellectual Property +123214,Intellectual Property,Intellectual Property +114196,Intellectual Property,Intellectual Property +106558,Intellectual Property,Intellectual Property +100594,Intellectual Property,Intellectual Property +98454,Intellectual Property,Intellectual Property +187626,Intellectual Property,Intellectual Property +187624,Intellectual Property,Intellectual Property +181884,Intellectual Property,Intellectual Property +180926,Intellectual Property,Intellectual Property +180925,Intellectual Property,Intellectual Property +180425,Intellectual Property,Intellectual Property +174607,Intellectual Property,Intellectual Property +174606,Intellectual Property,Intellectual Property +174058,Intellectual Property,Intellectual Property +174057,Intellectual Property,Intellectual Property +170764,Intellectual Property,Intellectual Property +169725,Intellectual Property,Intellectual Property +167627,Intellectual Property,Intellectual Property +167588,Intellectual Property,Intellectual Property +167587,Intellectual Property,Intellectual Property +167586,Intellectual Property,Intellectual Property +167585,Intellectual Property,Intellectual Property +167584,Intellectual Property,Intellectual Property +167280,Intellectual Property,Intellectual Property +167237,Intellectual Property,Intellectual Property +167236,Intellectual Property,Intellectual Property +167235,Intellectual Property,Intellectual Property +167234,Intellectual Property,Intellectual Property +167233,Intellectual Property,Intellectual Property +167036,Intellectual Property,Intellectual Property +167034,Intellectual Property,Intellectual Property +167032,Intellectual Property,Intellectual Property +166088,Intellectual Property,Intellectual Property +166087,Intellectual Property,Intellectual Property +166086,Intellectual Property,Intellectual Property +166085,Intellectual Property,Intellectual Property +165714,Intellectual Property,Intellectual Property +165713,Intellectual Property,Intellectual Property +165712,Intellectual Property,Intellectual Property +165711,Intellectual Property,Intellectual Property +165384,Intellectual Property,Intellectual Property +165324,Intellectual Property,Intellectual Property +165104,Intellectual Property,Intellectual Property +164626,Intellectual Property,Intellectual Property +164625,Intellectual Property,Intellectual Property +161356,Intellectual Property,Intellectual Property +160796,Intellectual Property,Intellectual Property +160481,Intellectual Property,Intellectual Property +160391,Intellectual Property,Intellectual Property +158833,Intellectual Property,Intellectual Property +158832,Intellectual Property,Intellectual Property +158831,Intellectual Property,Intellectual Property +158348,Intellectual Property,Intellectual Property +157450,Intellectual Property,Intellectual Property +157449,Intellectual Property,Intellectual Property +157448,Intellectual Property,Intellectual Property +157447,Intellectual Property,Intellectual Property +157446,Intellectual Property,Intellectual Property +157390,Intellectual Property,Intellectual Property +157389,Intellectual Property,Intellectual Property +157388,Intellectual Property,Intellectual Property +156800,Intellectual Property,Intellectual Property +156370,Intellectual Property,Intellectual Property +156369,Intellectual Property,Intellectual Property +156368,Intellectual Property,Intellectual Property +155690,Intellectual Property,Intellectual Property +155688,Intellectual Property,Intellectual Property +155687,Intellectual Property,Intellectual Property +155686,Intellectual Property,Intellectual Property +365163,Intellectual Property,Intellectual Property +365162,Intellectual Property,Intellectual Property +363536,Intellectual Property,Intellectual Property +361945,Intellectual Property,Intellectual Property +361944,Intellectual Property,Intellectual Property +361943,Intellectual Property,Intellectual Property +361201,Intellectual Property,Intellectual Property +361200,Intellectual Property,Intellectual Property +359162,Intellectual Property,Intellectual Property +356859,Intellectual Property,Intellectual Property +356858,Intellectual Property,Intellectual Property +355585,Intellectual Property,Intellectual Property +355584,Intellectual Property,Intellectual Property +353664,Intellectual Property,Intellectual Property +353658,Intellectual Property,Intellectual Property +353656,Intellectual Property,Intellectual Property +349947,Intellectual Property,Intellectual Property +349946,Intellectual Property,Intellectual Property +347612,Intellectual Property,Intellectual Property +338150,Intellectual Property,Intellectual Property +330524,Intellectual Property,Intellectual Property +330354,Intellectual Property,Intellectual Property +330349,Intellectual Property,Intellectual Property +330347,Intellectual Property,Intellectual Property +327789,Intellectual Property,Intellectual Property +327415,Intellectual Property,Intellectual Property +326652,Intellectual Property,Intellectual Property +321865,Intellectual Property,Intellectual Property +321864,Intellectual Property,Intellectual Property +306952,Intellectual Property,Intellectual Property +306950,Intellectual Property,Intellectual Property +306949,Intellectual Property,Intellectual Property +305270,Intellectual Property,Intellectual Property +305269,Intellectual Property,Intellectual Property +303522,Intellectual Property,Intellectual Property +303519,Intellectual Property,Intellectual Property +299735,Intellectual Property,Intellectual Property +299734,Intellectual Property,Intellectual Property +299733,Intellectual Property,Intellectual Property +292989,Intellectual Property,Intellectual Property +292610,Intellectual Property,Intellectual Property +292609,Intellectual Property,Intellectual Property +289933,Intellectual Property,Intellectual Property +289932,Intellectual Property,Intellectual Property +289931,Intellectual Property,Intellectual Property +289930,Intellectual Property,Intellectual Property +289929,Intellectual Property,Intellectual Property +276801,Intellectual Property,Intellectual Property +274593,Intellectual Property,Intellectual Property +274592,Intellectual Property,Intellectual Property +274591,Intellectual Property,Intellectual Property +274590,Intellectual Property,Intellectual Property +274589,Intellectual Property,Intellectual Property +269672,Intellectual Property,Intellectual Property +269671,Intellectual Property,Intellectual Property +260209,Intellectual Property,Intellectual Property +255129,Intellectual Property,Intellectual Property +251909,Intellectual Property,Intellectual Property +246629,Intellectual Property,Intellectual Property +246311,Intellectual Property,Intellectual Property +246289,Intellectual Property,Intellectual Property +246129,Intellectual Property,Intellectual Property +245540,Intellectual Property,Intellectual Property +245513,Intellectual Property,Intellectual Property +240950,Intellectual Property,Intellectual Property +240949,Intellectual Property,Intellectual Property +238409,Intellectual Property,Intellectual Property +236390,Intellectual Property,Intellectual Property +235929,Intellectual Property,Intellectual Property +235109,Intellectual Property,Intellectual Property +231910,Intellectual Property,Intellectual Property +231909,Intellectual Property,Intellectual Property +231573,Intellectual Property,Intellectual Property +231572,Intellectual Property,Intellectual Property +223203,Intellectual Property,Intellectual Property +223199,Intellectual Property,Intellectual Property +223197,Intellectual Property,Intellectual Property +223170,Intellectual Property,Intellectual Property +223169,Intellectual Property,Intellectual Property +219794,Intellectual Property,Intellectual Property +215548,Intellectual Property,Intellectual Property +212525,Intellectual Property,Intellectual Property +210808,Intellectual Property,Intellectual Property +210807,Intellectual Property,Intellectual Property +209927,Intellectual Property,Intellectual Property +205428,Intellectual Property,Intellectual Property +205427,Intellectual Property,Intellectual Property +204589,Intellectual Property,Intellectual Property +204588,Intellectual Property,Intellectual Property +204569,Intellectual Property,Intellectual Property +204568,Intellectual Property,Intellectual Property +201013,Intellectual Property,Intellectual Property +199625,Intellectual Property,Intellectual Property +197167,Intellectual Property,Intellectual Property +196451,Intellectual Property,Intellectual Property +196404,Intellectual Property,Intellectual Property +196364,Intellectual Property,Intellectual Property +196145,Intellectual Property,Intellectual Property +196144,Intellectual Property,Intellectual Property +195855,Intellectual Property,Intellectual Property +195854,Intellectual Property,Intellectual Property +195853,Intellectual Property,Intellectual Property +195852,Intellectual Property,Intellectual Property +195851,Intellectual Property,Intellectual Property +195604,Intellectual Property,Intellectual Property +195488,Intellectual Property,Intellectual Property +195395,Intellectual Property,Intellectual Property +195287,Intellectual Property,Intellectual Property +193264,Intellectual Property,Intellectual Property +192360,Intellectual Property,Intellectual Property +192359,Intellectual Property,Intellectual Property +192084,Intellectual Property,Intellectual Property +192054,Intellectual Property,Intellectual Property +191724,Intellectual Property,Intellectual Property +191028,Intellectual Property,Intellectual Property +191027,Intellectual Property,Intellectual Property +191026,Intellectual Property,Intellectual Property +191025,Intellectual Property,Intellectual Property +190308,Intellectual Property,Intellectual Property +189046,Intellectual Property,Intellectual Property +189045,Intellectual Property,Intellectual Property +189043,Intellectual Property,Intellectual Property +189042,Intellectual Property,Intellectual Property +187631,Intellectual Property,Intellectual Property +187629,Intellectual Property,Intellectual Property +187628,Intellectual Property,Intellectual Property +533926,Intellectual Property,Intellectual Property +527325,Intellectual Property,Intellectual Property +527094,Intellectual Property,Intellectual Property +524371,Intellectual Property,Intellectual Property +512049,Intellectual Property,Intellectual Property +509457,Intellectual Property,Intellectual Property +509338,Intellectual Property,Intellectual Property +509099,Intellectual Property,Intellectual Property +482899,Intellectual Property,Intellectual Property +474150,Intellectual Property,Intellectual Property +454687,Intellectual Property,Intellectual Property +453753,Intellectual Property,Intellectual Property +452219,Intellectual Property,Intellectual Property +451471,Intellectual Property,Intellectual Property +451470,Intellectual Property,Intellectual Property +451469,Intellectual Property,Intellectual Property +451468,Intellectual Property,Intellectual Property +451467,Intellectual Property,Intellectual Property +450925,Intellectual Property,Intellectual Property +450924,Intellectual Property,Intellectual Property +450922,Intellectual Property,Intellectual Property +450920,Intellectual Property,Intellectual Property +446774,Intellectual Property,Intellectual Property +445117,Intellectual Property,Intellectual Property +436654,Intellectual Property,Intellectual Property +436653,Intellectual Property,Intellectual Property +435903,Intellectual Property,Intellectual Property +435900,Intellectual Property,Intellectual Property +435894,Intellectual Property,Intellectual Property +434079,Intellectual Property,Intellectual Property +434078,Intellectual Property,Intellectual Property +433994,Intellectual Property,Intellectual Property +433910,Intellectual Property,Intellectual Property +433909,Intellectual Property,Intellectual Property +433908,Intellectual Property,Intellectual Property +433906,Intellectual Property,Intellectual Property +431925,Intellectual Property,Intellectual Property +414543,Intellectual Property,Intellectual Property +414527,Intellectual Property,Intellectual Property +414515,Intellectual Property,Intellectual Property +414514,Intellectual Property,Intellectual Property +414513,Intellectual Property,Intellectual Property +411493,Intellectual Property,Intellectual Property +408655,Intellectual Property,Intellectual Property +408529,Intellectual Property,Intellectual Property +408528,Intellectual Property,Intellectual Property +408527,Intellectual Property,Intellectual Property +406926,Intellectual Property,Intellectual Property +406925,Intellectual Property,Intellectual Property +406743,Intellectual Property,Intellectual Property +406742,Intellectual Property,Intellectual Property +405913,Intellectual Property,Intellectual Property +404393,Intellectual Property,Intellectual Property +401748,Intellectual Property,Intellectual Property +397637,Intellectual Property,Intellectual Property +397636,Intellectual Property,Intellectual Property +397031,Intellectual Property,Intellectual Property +389846,Intellectual Property,Intellectual Property +389844,Intellectual Property,Intellectual Property +389840,Intellectual Property,Intellectual Property +389839,Intellectual Property,Intellectual Property +389834,Intellectual Property,Intellectual Property +388817,Intellectual Property,Intellectual Property +388814,Intellectual Property,Intellectual Property +387575,Intellectual Property,Intellectual Property +387574,Intellectual Property,Intellectual Property +380015,Intellectual Property,Intellectual Property +380014,Intellectual Property,Intellectual Property +380010,Intellectual Property,Intellectual Property +195488,International Relations,International Relations +435903,International Relations,International Relations +167233,International Relations,International Relations +349946,International Trade,International Trade +338150,International Trade,International Trade +100594,International Trade,International Trade +157450,International Trade,International Trade +157449,International Trade,International Trade +157448,International Trade,International Trade +157447,International Trade,International Trade +157446,International Trade,International Trade +157391,International Trade,International Trade +157390,International Trade,International Trade +157389,International Trade,International Trade +157388,International Trade,International Trade +156800,International Trade,International Trade +156370,International Trade,International Trade +156369,International Trade,International Trade +156368,International Trade,International Trade +155690,International Trade,International Trade +155688,International Trade,International Trade +155687,International Trade,International Trade +155686,International Trade,International Trade +154910,International Trade,International Trade +161356,International Trade,International Trade +160796,International Trade,International Trade +160481,International Trade,International Trade +160391,International Trade,International Trade +158833,International Trade,International Trade +158832,International Trade,International Trade +158831,International Trade,International Trade +158348,International Trade,International Trade +204569,International Trade,International Trade +204568,International Trade,International Trade +201013,International Trade,International Trade +199625,International Trade,International Trade +197167,International Trade,International Trade +196451,International Trade,International Trade +196404,International Trade,International Trade +196364,International Trade,International Trade +196145,International Trade,International Trade +196144,International Trade,International Trade +195855,International Trade,International Trade +195854,International Trade,International Trade +195853,International Trade,International Trade +195852,International Trade,International Trade +195851,International Trade,International Trade +195604,International Trade,International Trade +195395,International Trade,International Trade +195287,International Trade,International Trade +193264,International Trade,International Trade +192360,International Trade,International Trade +192359,International Trade,International Trade +192084,International Trade,International Trade +192054,International Trade,International Trade +191724,International Trade,International Trade +191028,International Trade,International Trade +191027,International Trade,International Trade +191026,International Trade,International Trade +191025,International Trade,International Trade +190308,International Trade,International Trade +189046,International Trade,International Trade +189043,International Trade,International Trade +189042,International Trade,International Trade +187629,International Trade,International Trade +187628,International Trade,International Trade +187626,International Trade,International Trade +187624,International Trade,International Trade +181884,International Trade,International Trade +180926,International Trade,International Trade +180925,International Trade,International Trade +180425,International Trade,International Trade +174607,International Trade,International Trade +174606,International Trade,International Trade +174385,International Trade,International Trade +174058,International Trade,International Trade +174057,International Trade,International Trade +170764,International Trade,International Trade +169725,International Trade,International Trade +167627,International Trade,International Trade +167588,International Trade,International Trade +167587,International Trade,International Trade +167586,International Trade,International Trade +167585,International Trade,International Trade +167584,International Trade,International Trade +167280,International Trade,International Trade +167237,International Trade,International Trade +167236,International Trade,International Trade +167235,International Trade,International Trade +167234,International Trade,International Trade +167036,International Trade,International Trade +167034,International Trade,International Trade +167032,International Trade,International Trade +166088,International Trade,International Trade +166087,International Trade,International Trade +166086,International Trade,International Trade +166085,International Trade,International Trade +165714,International Trade,International Trade +165713,International Trade,International Trade +165712,International Trade,International Trade +165711,International Trade,International Trade +165384,International Trade,International Trade +165324,International Trade,International Trade +165104,International Trade,International Trade +164626,International Trade,International Trade +164625,International Trade,International Trade +333806,International Trade,International Trade +330524,International Trade,International Trade +330354,International Trade,International Trade +327789,International Trade,International Trade +327415,International Trade,International Trade +326652,International Trade,International Trade +306952,International Trade,International Trade +306949,International Trade,International Trade +305269,International Trade,International Trade +303519,International Trade,International Trade +299734,International Trade,International Trade +299733,International Trade,International Trade +292989,International Trade,International Trade +292610,International Trade,International Trade +292609,International Trade,International Trade +289933,International Trade,International Trade +289932,International Trade,International Trade +289931,International Trade,International Trade +260209,International Trade,International Trade +255129,International Trade,International Trade +251909,International Trade,International Trade +246629,International Trade,International Trade +246311,International Trade,International Trade +246289,International Trade,International Trade +246129,International Trade,International Trade +245540,International Trade,International Trade +245513,International Trade,International Trade +240950,International Trade,International Trade +240949,International Trade,International Trade +238409,International Trade,International Trade +236390,International Trade,International Trade +235929,International Trade,International Trade +235109,International Trade,International Trade +231910,International Trade,International Trade +231909,International Trade,International Trade +231573,International Trade,International Trade +231572,International Trade,International Trade +223203,International Trade,International Trade +223199,International Trade,International Trade +223197,International Trade,International Trade +223170,International Trade,International Trade +223169,International Trade,International Trade +219794,International Trade,International Trade +215548,International Trade,International Trade +210808,International Trade,International Trade +210807,International Trade,International Trade +209927,International Trade,International Trade +205428,International Trade,International Trade +205427,International Trade,International Trade +204589,International Trade,International Trade +204588,International Trade,International Trade +527325,International Trade,International Trade +527094,International Trade,International Trade +524644,International Trade,International Trade +503727,International Trade,International Trade +503568,International Trade,International Trade +503428,International Trade,International Trade +482899,International Trade,International Trade +478684,International Trade,International Trade +478683,International Trade,International Trade +478561,International Trade,International Trade +478379,International Trade,International Trade +477291,International Trade,International Trade +476987,International Trade,International Trade +476599,International Trade,International Trade +469886,International Trade,International Trade +469159,International Trade,International Trade +468931,International Trade,International Trade +468798,International Trade,International Trade +468796,International Trade,International Trade +454687,International Trade,International Trade +453753,International Trade,International Trade +451471,International Trade,International Trade +450925,International Trade,International Trade +450924,International Trade,International Trade +450922,International Trade,International Trade +450920,International Trade,International Trade +446774,International Trade,International Trade +445117,International Trade,International Trade +436654,International Trade,International Trade +436653,International Trade,International Trade +435900,International Trade,International Trade +435894,International Trade,International Trade +434079,International Trade,International Trade +434078,International Trade,International Trade +433994,International Trade,International Trade +433910,International Trade,International Trade +433909,International Trade,International Trade +433908,International Trade,International Trade +433906,International Trade,International Trade +431925,International Trade,International Trade +414543,International Trade,International Trade +414527,International Trade,International Trade +414515,International Trade,International Trade +414514,International Trade,International Trade +414513,International Trade,International Trade +411493,International Trade,International Trade +408655,International Trade,International Trade +408529,International Trade,International Trade +408528,International Trade,International Trade +408527,International Trade,International Trade +406926,International Trade,International Trade +406925,International Trade,International Trade +406743,International Trade,International Trade +406742,International Trade,International Trade +405913,International Trade,International Trade +404393,International Trade,International Trade +401748,International Trade,International Trade +397637,International Trade,International Trade +397636,International Trade,International Trade +397031,International Trade,International Trade +389846,International Trade,International Trade +389844,International Trade,International Trade +389840,International Trade,International Trade +389839,International Trade,International Trade +389834,International Trade,International Trade +388817,International Trade,International Trade +387575,International Trade,International Trade +380015,International Trade,International Trade +380014,International Trade,International Trade +380010,International Trade,International Trade +365664,International Trade,International Trade +365165,International Trade,International Trade +365164,International Trade,International Trade +365162,International Trade,International Trade +361945,International Trade,International Trade +361944,International Trade,International Trade +361943,International Trade,International Trade +359162,International Trade,International Trade +357056,International Trade,International Trade +355584,International Trade,International Trade +353656,International Trade,International Trade +164626,Taxation and Finance,Taxation and Finance +381952,Regional Development,Regional Development +381274,Regional Development,Regional Development +474601,Regional Development,Regional Development +463245,Regional Development,Regional Development +463244,Regional Development,Regional Development +463065,Regional Development,Regional Development +463064,Regional Development,Regional Development +463060,Regional Development,Regional Development +463043,Regional Development,Regional Development +463038,Regional Development,Regional Development +463035,Regional Development,Regional Development +463033,Regional Development,Regional Development +463032,Regional Development,Regional Development +463060,Environment,Environment +463043,Environment,Environment +381952,Environment,Environment +381274,Environment,Environment +463038,Environment,Environment +463035,Environment,Environment +463033,Environment,Environment +463032,Environment,Environment +463030,Environment,Environment +423918,Environment,Environment +423917,Environment,Environment +423914,Environment,Environment +423911,Environment,Environment +423910,Environment,Environment +409719,Environment,Environment +466909,Environment,Environment +463245,Environment,Environment +463244,Environment,Environment +463065,Environment,Environment +423911,Industry,Industry +423910,Industry,Industry +409719,Industry,Industry +396125,Industry,Industry +392323,Industry,Industry +387694,Industry,Industry +383327,Industry,Industry +381952,Industry,Industry +381274,Industry,Industry +526129,Industry,Industry +526117,Industry,Industry +522693,Industry,Industry +522692,Industry,Industry +522691,Industry,Industry +519314,Industry,Industry +519313,Industry,Industry +517881,Industry,Industry +515775,Industry,Industry +514117,Industry,Industry +514115,Industry,Industry +506984,Industry,Industry +506981,Industry,Industry +506978,Industry,Industry +504586,Industry,Industry +504583,Industry,Industry +498752,Industry,Industry +498750,Industry,Industry +481352,Industry,Industry +478961,Industry,Industry +478919,Industry,Industry +478918,Industry,Industry +478917,Industry,Industry +478916,Industry,Industry +478914,Industry,Industry +477175,Industry,Industry +477174,Industry,Industry +477173,Industry,Industry +477172,Industry,Industry +477170,Industry,Industry +474604,Industry,Industry +474602,Industry,Industry +474601,Industry,Industry +474600,Industry,Industry +472162,Industry,Industry +472158,Industry,Industry +472149,Industry,Industry +472141,Industry,Industry +472137,Industry,Industry +470333,Industry,Industry +466909,Industry,Industry +464581,Industry,Industry +464504,Industry,Industry +464489,Industry,Industry +464484,Industry,Industry +464480,Industry,Industry +464460,Industry,Industry +464435,Industry,Industry +464369,Industry,Industry +463254,Industry,Industry +463249,Industry,Industry +463245,Industry,Industry +463244,Industry,Industry +463065,Industry,Industry +463064,Industry,Industry +463060,Industry,Industry +463043,Industry,Industry +463038,Industry,Industry +463035,Industry,Industry +463033,Industry,Industry +463032,Industry,Industry +463030,Industry,Industry +423918,Industry,Industry +423917,Industry,Industry +463035,Health,Health +463033,Health,Health +463032,Health,Health +463030,Health,Health +463245,Health,Health +463244,Health,Health +463065,Health,Health +463064,Health,Health +463060,Health,Health +463043,Health,Health +542417,Employment and Training,Employment and Training +431659,Health,Health +430467,Health,Health +152999,Health,Health +152370,Health,Health +152369,Health,Health +124740,Health,Health +116594,Health,Health +113596,Health,Health +97293,Health,Health +306571,Health,Health +306570,Health,Health +260391,Health,Health +260390,Health,Health +191665,Health,Health +175726,Health,Health +167500,Health,Health +167499,Health,Health +164927,Health,Health +164367,Health,Health +164366,Health,Health +161406,Health,Health +161404,Health,Health +158685,Health,Health +156885,Health,Health +156884,Health,Health +156881,Health,Health +156879,Health,Health +153001,Health,Health +153000,Health,Health +386007,Health,Health +386006,Health,Health +386001,Health,Health +386000,Health,Health +385999,Health,Health +385997,Health,Health +385996,Health,Health +382846,Health,Health +382437,Health,Health +379144,Health,Health +379143,Health,Health +375503,Health,Health +375472,Health,Health +375471,Health,Health +375470,Health,Health +373744,Health,Health +373473,Health,Health +373471,Health,Health +370536,Health,Health +370535,Health,Health +370534,Health,Health +370533,Health,Health +370532,Health,Health +370520,Health,Health +366103,Health,Health +365002,Health,Health +355340,Health,Health +353722,Health,Health +353721,Health,Health +349168,Health,Health +428287,Health,Health +423198,Health,Health +423197,Health,Health +423195,Health,Health +420693,Health,Health +417518,Health,Health +414576,Health,Health +413048,Health,Health +411242,Health,Health +408808,Health,Health +408806,Health,Health +408805,Health,Health +408804,Health,Health +408803,Health,Health +408802,Health,Health +408800,Health,Health +408787,Health,Health +408786,Health,Health +408783,Health,Health +408780,Health,Health +408772,Health,Health +408771,Health,Health +408769,Health,Health +408766,Health,Health +408760,Health,Health +408758,Health,Health +408757,Health,Health +408755,Health,Health +408754,Health,Health +407346,Health,Health +399806,Health,Health +397709,Health,Health +397708,Health,Health +394995,Health,Health +394993,Health,Health +394991,Health,Health +394990,Health,Health +394988,Health,Health +394987,Health,Health +394986,Health,Health +394985,Health,Health +394984,Health,Health +394983,Health,Health +394982,Health,Health +394981,Health,Health +394980,Health,Health +394979,Health,Health +394978,Health,Health +394977,Health,Health +394976,Health,Health +394975,Health,Health +394974,Health,Health +394973,Health,Health +394972,Health,Health +394971,Health,Health +394970,Health,Health +394969,Health,Health +394968,Health,Health +394967,Health,Health +394966,Health,Health +394965,Health,Health +394964,Health,Health +394962,Health,Health +394961,Health,Health +394960,Health,Health +393419,Health,Health +392348,Health,Health +392347,Health,Health +390935,Health,Health +390934,Health,Health +390932,Health,Health +389114,Health,Health +389112,Health,Health +389111,Health,Health +389110,Health,Health +388929,Health,Health +388928,Health,Health +388927,Health,Health +388925,Health,Health +386313,Health,Health +386089,Health,Health +386088,Health,Health +386087,Health,Health +386086,Health,Health +386022,Health,Health +386021,Health,Health +386020,Health,Health +386019,Health,Health +386018,Health,Health +386017,Health,Health +386016,Health,Health +386015,Health,Health +386011,Health,Health +386010,Health,Health +386009,Health,Health +386008,Health,Health +542417,Health,Health +532871,Health,Health +532869,Health,Health +530407,Health,Health +527703,Health,Health +527702,Health,Health +527179,Health,Health +527156,Health,Health +523778,Health,Health +523777,Health,Health +523776,Health,Health +523774,Health,Health +523773,Health,Health +517436,Health,Health +517430,Health,Health +513556,Health,Health +509364,Health,Health +507108,Health,Health +506429,Health,Health +506427,Health,Health +506302,Health,Health +503785,Health,Health +503784,Health,Health +503225,Health,Health +503194,Health,Health +503193,Health,Health +503192,Health,Health +500998,Health,Health +500997,Health,Health +500995,Health,Health +500994,Health,Health +500380,Health,Health +500289,Health,Health +500288,Health,Health +500287,Health,Health +500286,Health,Health +500285,Health,Health +500081,Health,Health +500080,Health,Health +497515,Health,Health +496978,Health,Health +496973,Health,Health +496972,Health,Health +496965,Health,Health +496962,Health,Health +488568,Health,Health +488567,Health,Health +488566,Health,Health +486109,Health,Health +486107,Health,Health +486105,Health,Health +471927,Health,Health +471926,Health,Health +471925,Health,Health +471924,Health,Health +471923,Health,Health +469341,Health,Health +469200,Health,Health +469199,Health,Health +465957,Health,Health +463437,Health,Health +463436,Health,Health +462130,Health,Health +462127,Health,Health +460958,Health,Health +459919,Health,Health +459082,Health,Health +458745,Health,Health +450918,Health,Health +437020,Health,Health +433037,Health,Health +433036,Health,Health +152369,Industry,Industry +458745,International Trade,International Trade +420694,Small Business,Small Business +471926,Small Business,Small Business +460958,Small Business,Small Business +450918,Small Business,Small Business +408755,Taxation and Finance,Taxation and Finance +408754,Taxation and Finance,Taxation and Finance +339449,Taxation and Finance,Taxation and Finance +408808,Taxation and Finance,Taxation and Finance +408806,Taxation and Finance,Taxation and Finance +408805,Taxation and Finance,Taxation and Finance +408804,Taxation and Finance,Taxation and Finance +408803,Taxation and Finance,Taxation and Finance +408802,Taxation and Finance,Taxation and Finance +408800,Taxation and Finance,Taxation and Finance +408787,Taxation and Finance,Taxation and Finance +408786,Taxation and Finance,Taxation and Finance +408783,Taxation and Finance,Taxation and Finance +408780,Taxation and Finance,Taxation and Finance +408772,Taxation and Finance,Taxation and Finance +408771,Taxation and Finance,Taxation and Finance +408769,Taxation and Finance,Taxation and Finance +408766,Taxation and Finance,Taxation and Finance +408760,Taxation and Finance,Taxation and Finance +408758,Taxation and Finance,Taxation and Finance +95956,Energy,Energy +95714,Energy,Energy +95314,Energy,Energy +143994,Energy,Energy +141394,Energy,Energy +121276,Energy,Energy +112234,Energy,Energy +111535,Energy,Energy +111534,Energy,Energy +112234,Environment,Environment +111535,Environment,Environment +111499,Environment,Environment +95956,Environment,Environment +95714,Environment,Environment +95314,Environment,Environment +143994,Environment,Environment +141394,Environment,Environment +141394,Transportation,Transportation +112234,Transportation,Transportation +111535,Transportation,Transportation +111534,Transportation,Transportation +111514,Transportation,Transportation +111499,Transportation,Transportation +96726,Transportation,Transportation +95956,Transportation,Transportation +95714,Transportation,Transportation +95314,Transportation,Transportation +510130,Energy,Energy +510129,Energy,Energy +147595,Energy,Energy +141755,Energy,Energy +131435,Energy,Energy +131434,Energy,Energy +108715,Energy,Energy +108714,Energy,Energy +108656,Energy,Energy +108578,Energy,Energy +100015,Energy,Energy +100014,Energy,Energy +96617,Energy,Energy +232910,Energy,Energy +222169,Energy,Energy +222168,Energy,Energy +171644,Energy,Energy +158684,Energy,Energy +156252,Energy,Energy +156246,Energy,Energy +154326,Energy,Energy +151639,Energy,Energy +151638,Energy,Energy +151637,Energy,Energy +437000,Energy,Energy +436999,Energy,Energy +436998,Energy,Energy +434526,Energy,Energy +434525,Energy,Energy +434524,Energy,Energy +434523,Energy,Energy +434522,Energy,Energy +434521,Energy,Energy +433145,Energy,Energy +433144,Energy,Energy +433143,Energy,Energy +433142,Energy,Energy +432840,Energy,Energy +432839,Energy,Energy +432838,Energy,Energy +432837,Energy,Energy +432836,Energy,Energy +432835,Energy,Energy +431856,Energy,Energy +430107,Energy,Energy +430098,Energy,Energy +427719,Energy,Energy +427718,Energy,Energy +427700,Energy,Energy +427698,Energy,Energy +427693,Energy,Energy +425221,Energy,Energy +425220,Energy,Energy +420952,Energy,Energy +420949,Energy,Energy +420946,Energy,Energy +420945,Energy,Energy +420944,Energy,Energy +420942,Energy,Energy +420940,Energy,Energy +420939,Energy,Energy +420938,Energy,Energy +420937,Energy,Energy +420936,Energy,Energy +420935,Energy,Energy +404733,Energy,Energy +404732,Energy,Energy +404730,Energy,Energy +397991,Energy,Energy +395569,Energy,Energy +386491,Energy,Energy +386490,Energy,Energy +386489,Energy,Energy +384419,Energy,Energy +384418,Energy,Energy +384417,Energy,Energy +384416,Energy,Energy +382986,Energy,Energy +382046,Energy,Energy +382045,Energy,Energy +380705,Energy,Energy +380704,Energy,Energy +380703,Energy,Energy +380701,Energy,Energy +380699,Energy,Energy +380698,Energy,Energy +380696,Energy,Energy +375821,Energy,Energy +375820,Energy,Energy +375818,Energy,Energy +375817,Energy,Energy +368180,Energy,Energy +368179,Energy,Energy +368172,Energy,Energy +280709,Energy,Energy +510128,Energy,Energy +510127,Energy,Energy +510126,Energy,Energy +509559,Energy,Energy +506944,Energy,Energy +506943,Energy,Energy +506942,Energy,Energy +506941,Energy,Energy +506940,Energy,Energy +506939,Energy,Energy +506938,Energy,Energy +506937,Energy,Energy +506935,Energy,Energy +504127,Energy,Energy +504126,Energy,Energy +504125,Energy,Energy +504123,Energy,Energy +504120,Energy,Energy +504119,Energy,Energy +504118,Energy,Energy +504117,Energy,Energy +504116,Energy,Energy +504115,Energy,Energy +504113,Energy,Energy +501399,Energy,Energy +501398,Energy,Energy +501395,Energy,Energy +501391,Energy,Energy +501296,Energy,Energy +501295,Energy,Energy +501294,Energy,Energy +501293,Energy,Energy +501292,Energy,Energy +501289,Energy,Energy +501284,Energy,Energy +501282,Energy,Energy +501281,Energy,Energy +501279,Energy,Energy +501274,Energy,Energy +501261,Energy,Energy +498181,Energy,Energy +498178,Energy,Energy +498176,Energy,Energy +498175,Energy,Energy +498173,Energy,Energy +498172,Energy,Energy +498171,Energy,Energy +498152,Energy,Energy +498151,Energy,Energy +498150,Energy,Energy +498149,Energy,Energy +498148,Energy,Energy +498147,Energy,Energy +495073,Energy,Energy +495071,Energy,Energy +495067,Energy,Energy +495040,Energy,Energy +495037,Energy,Energy +495004,Energy,Energy +495002,Energy,Energy +494999,Energy,Energy +494997,Energy,Energy +494993,Energy,Energy +492947,Energy,Energy +492946,Energy,Energy +492945,Energy,Energy +492944,Energy,Energy +492943,Energy,Energy +492942,Energy,Energy +492941,Energy,Energy +490063,Energy,Energy +490061,Energy,Energy +490059,Energy,Energy +490058,Energy,Energy +490000,Energy,Energy +489999,Energy,Energy +489998,Energy,Energy +489997,Energy,Energy +489994,Energy,Energy +489992,Energy,Energy +489990,Energy,Energy +489984,Energy,Energy +489970,Energy,Energy +486655,Energy,Energy +486652,Energy,Energy +486650,Energy,Energy +486648,Energy,Energy +486574,Energy,Energy +483790,Energy,Energy +483788,Energy,Energy +483786,Energy,Energy +483782,Energy,Energy +481547,Energy,Energy +481546,Energy,Energy +481544,Energy,Energy +479120,Energy,Energy +479118,Energy,Energy +479116,Energy,Energy +479114,Energy,Energy +479110,Energy,Energy +476805,Energy,Energy +476804,Energy,Energy +476801,Energy,Energy +476800,Energy,Energy +476799,Energy,Energy +476429,Energy,Energy +476426,Energy,Energy +474785,Energy,Energy +474784,Energy,Energy +474782,Energy,Energy +474781,Energy,Energy +474780,Energy,Energy +474779,Energy,Energy +474776,Energy,Energy +474774,Energy,Energy +474772,Energy,Energy +474761,Energy,Energy +472218,Energy,Energy +472214,Energy,Energy +472211,Energy,Energy +472210,Energy,Energy +472190,Energy,Energy +472188,Energy,Energy +472186,Energy,Energy +472185,Energy,Energy +472163,Energy,Energy +472152,Energy,Energy +472147,Energy,Energy +472142,Energy,Energy +470102,Energy,Energy +470097,Energy,Energy +470089,Energy,Energy +470077,Energy,Energy +469696,Energy,Energy +469693,Energy,Energy +469690,Energy,Energy +469685,Energy,Energy +469670,Energy,Energy +468976,Energy,Energy +466657,Energy,Energy +466656,Energy,Energy +466653,Energy,Energy +466651,Energy,Energy +466650,Energy,Energy +466499,Energy,Energy +466498,Energy,Energy +466497,Energy,Energy +466496,Energy,Energy +466495,Energy,Energy +463855,Energy,Energy +463853,Energy,Energy +463850,Energy,Energy +462298,Energy,Energy +462294,Energy,Energy +462291,Energy,Energy +462288,Energy,Energy +462284,Energy,Energy +462281,Energy,Energy +462280,Energy,Energy +462278,Energy,Energy +462276,Energy,Energy +462271,Energy,Energy +462270,Energy,Energy +462268,Energy,Energy +461222,Energy,Energy +461220,Energy,Energy +461218,Energy,Energy +460405,Energy,Energy +460404,Energy,Energy +460403,Energy,Energy +460402,Energy,Energy +460401,Energy,Energy +459983,Energy,Energy +459982,Energy,Energy +459979,Energy,Energy +459259,Energy,Energy +459258,Energy,Energy +459257,Energy,Energy +459256,Energy,Energy +459255,Energy,Energy +459250,Energy,Energy +459248,Energy,Energy +459247,Energy,Energy +457372,Energy,Energy +457371,Energy,Energy +457370,Energy,Energy +457369,Energy,Energy +457368,Energy,Energy +456745,Energy,Energy +454048,Energy,Energy +454047,Energy,Energy +454046,Energy,Energy +454045,Energy,Energy +451215,Energy,Energy +448962,Energy,Energy +448961,Energy,Energy +448959,Energy,Energy +448957,Energy,Energy +448956,Energy,Energy +448955,Energy,Energy +446599,Energy,Energy +446598,Energy,Energy +446597,Energy,Energy +444670,Energy,Energy +444668,Energy,Energy +444666,Energy,Energy +443147,Energy,Energy +443144,Energy,Energy +443143,Energy,Energy +443141,Energy,Energy +443140,Energy,Energy +443138,Energy,Energy +443137,Energy,Energy +443136,Energy,Energy +441262,Energy,Energy +441255,Energy,Energy +441254,Energy,Energy +441252,Energy,Energy +441213,Energy,Energy +441212,Energy,Energy +437069,Energy,Energy +437012,Energy,Energy +437010,Energy,Energy +437008,Energy,Energy +437006,Energy,Energy +437004,Energy,Energy +437003,Energy,Energy +437002,Energy,Energy +437001,Energy,Energy +543278,Energy,Energy +543274,Energy,Energy +541314,Energy,Energy +541313,Energy,Energy +541312,Energy,Energy +541308,Energy,Energy +541304,Energy,Energy +541303,Energy,Energy +541298,Energy,Energy +541293,Energy,Energy +541292,Energy,Energy +541290,Energy,Energy +541289,Energy,Energy +539530,Energy,Energy +539529,Energy,Energy +539528,Energy,Energy +539527,Energy,Energy +539526,Energy,Energy +539524,Energy,Energy +537468,Energy,Energy +537464,Energy,Energy +537461,Energy,Energy +537459,Energy,Energy +537454,Energy,Energy +537448,Energy,Energy +537446,Energy,Energy +537445,Energy,Energy +537443,Energy,Energy +537442,Energy,Energy +533618,Energy,Energy +533616,Energy,Energy +533610,Energy,Energy +533597,Energy,Energy +530895,Energy,Energy +530893,Energy,Energy +530892,Energy,Energy +530886,Energy,Energy +530876,Energy,Energy +530870,Energy,Energy +530865,Energy,Energy +528086,Energy,Energy +528082,Energy,Energy +528079,Energy,Energy +528069,Energy,Energy +528066,Energy,Energy +528062,Energy,Energy +528060,Energy,Energy +528055,Energy,Energy +528054,Energy,Energy +528052,Energy,Energy +528049,Energy,Energy +528047,Energy,Energy +528044,Energy,Energy +528043,Energy,Energy +524768,Energy,Energy +524759,Energy,Energy +524758,Energy,Energy +524757,Energy,Energy +524756,Energy,Energy +524755,Energy,Energy +524754,Energy,Energy +521553,Energy,Energy +521552,Energy,Energy +521545,Energy,Energy +521538,Energy,Energy +521536,Energy,Energy +521532,Energy,Energy +521531,Energy,Energy +521526,Energy,Energy +521525,Energy,Energy +519101,Energy,Energy +519048,Energy,Energy +519043,Energy,Energy +516692,Energy,Energy +516691,Energy,Energy +516690,Energy,Energy +516688,Energy,Energy +516687,Energy,Energy +515364,Energy,Energy +515363,Energy,Energy +514558,Energy,Energy +514557,Energy,Energy +513915,Energy,Energy +513912,Energy,Energy +513906,Energy,Energy +513905,Energy,Energy +513897,Energy,Energy +513894,Energy,Energy +512721,Energy,Energy +512720,Energy,Energy +512718,Energy,Energy +512715,Energy,Energy +512713,Energy,Energy +512517,Energy,Energy +512516,Energy,Energy +512515,Energy,Energy +512514,Energy,Energy +512513,Energy,Energy +512512,Energy,Energy +512511,Energy,Energy +512510,Energy,Energy +510137,Energy,Energy +510136,Energy,Energy +510135,Energy,Energy +510134,Energy,Energy +510133,Energy,Energy +510132,Energy,Energy +432835,Environment,Environment +541293,Environment,Environment +108580,Environment,Environment +108579,Environment,Environment +100143,Environment,Environment +100140,Environment,Environment +100137,Environment,Environment +100135,Environment,Environment +76065,Environment,Environment +222170,Environment,Environment +222027,Environment,Environment +175096,Environment,Environment +156252,Environment,Environment +156246,Environment,Environment +154326,Environment,Environment +151639,Environment,Environment +151638,Environment,Environment +151637,Environment,Environment +119854,Environment,Environment +108936,Environment,Environment +108795,Environment,Environment +108794,Environment,Environment +108653,Environment,Environment +108651,Environment,Environment +108647,Environment,Environment +382046,Environment,Environment +382045,Environment,Environment +380705,Environment,Environment +380704,Environment,Environment +380703,Environment,Environment +380701,Environment,Environment +380699,Environment,Environment +380698,Environment,Environment +380696,Environment,Environment +375821,Environment,Environment +375820,Environment,Environment +375818,Environment,Environment +375817,Environment,Environment +368180,Environment,Environment +368179,Environment,Environment +368172,Environment,Environment +329629,Environment,Environment +431856,Environment,Environment +430107,Environment,Environment +430098,Environment,Environment +427718,Environment,Environment +427700,Environment,Environment +427693,Environment,Environment +425221,Environment,Environment +425220,Environment,Environment +420954,Environment,Environment +420951,Environment,Environment +420950,Environment,Environment +420949,Environment,Environment +420946,Environment,Environment +420945,Environment,Environment +420944,Environment,Environment +420942,Environment,Environment +420938,Environment,Environment +420937,Environment,Environment +420935,Environment,Environment +407228,Environment,Environment +404732,Environment,Environment +404730,Environment,Environment +397991,Environment,Environment +395569,Environment,Environment +386491,Environment,Environment +386490,Environment,Environment +386489,Environment,Environment +384418,Environment,Environment +384417,Environment,Environment +384416,Environment,Environment +382986,Environment,Environment +509559,Environment,Environment +448957,Environment,Environment +448956,Environment,Environment +448955,Environment,Environment +446597,Environment,Environment +444670,Environment,Environment +444668,Environment,Environment +444666,Environment,Environment +443147,Environment,Environment +443144,Environment,Environment +443143,Environment,Environment +443141,Environment,Environment +443140,Environment,Environment +443138,Environment,Environment +443136,Environment,Environment +441266,Environment,Environment +441255,Environment,Environment +441254,Environment,Environment +441252,Environment,Environment +441213,Environment,Environment +437012,Environment,Environment +437010,Environment,Environment +437008,Environment,Environment +437006,Environment,Environment +437004,Environment,Environment +437002,Environment,Environment +437001,Environment,Environment +437000,Environment,Environment +436999,Environment,Environment +436998,Environment,Environment +434526,Environment,Environment +434525,Environment,Environment +434524,Environment,Environment +434523,Environment,Environment +434522,Environment,Environment +434521,Environment,Environment +434520,Environment,Environment +434519,Environment,Environment +432840,Environment,Environment +432839,Environment,Environment +432838,Environment,Environment +432837,Environment,Environment +128838,Fisheries,Fisheries +158190,Defence,Defence +158188,Defence,Defence +89515,Defence,Defence +89514,Government Procurement,Government Procurement +158190,Industry,Industry +158188,Industry,Industry +89515,Industry,Industry +158190,Regional Development,Regional Development +158188,Regional Development,Regional Development +78818,Regional Development,Regional Development +89898,Education,Education +160756,Education,Education +396927,Education,Education +396924,Education,Education +503575,Education,Education +501768,Education,Education +494762,Education,Education +494758,Education,Education +492413,Education,Education +483413,Education,Education +474911,Education,Education +472609,Education,Education +463820,Education,Education +459655,Education,Education +451753,Education,Education +433563,Education,Education +542774,Education,Education +535732,Education,Education +529172,Education,Education +518148,Education,Education +518134,Education,Education +512430,Education,Education +503574,Environment,Environment +457326,Health,Health +532189,Health,Health +84794,Health,Health +218088,Health,Health +199774,Health,Health +469781,Health,Health +469731,Health,Health +469730,Health,Health +469729,Health,Health +469728,Health,Health +469725,Health,Health +535711,Infrastructure,Infrastructure +529174,Infrastructure,Infrastructure +448212,Infrastructure,Infrastructure +432079,Infrastructure,Infrastructure +428356,Infrastructure,Infrastructure +509932,Infrastructure,Infrastructure +509931,Infrastructure,Infrastructure +509750,Infrastructure,Infrastructure +500432,Infrastructure,Infrastructure +500430,Infrastructure,Infrastructure +497152,Infrastructure,Infrastructure +486096,Infrastructure,Infrastructure +486095,Infrastructure,Infrastructure +486094,Infrastructure,Infrastructure +486093,Infrastructure,Infrastructure +486089,Infrastructure,Infrastructure +463833,Infrastructure,Infrastructure +463831,Infrastructure,Infrastructure +463829,Infrastructure,Infrastructure +463828,Infrastructure,Infrastructure +460037,Infrastructure,Infrastructure +93383,Intellectual Property,Intellectual Property +89897,Intellectual Property,Intellectual Property +160489,International Relations,International Relations +512135,International Relations,International Relations +503574,International Relations,International Relations +433563,International Relations,International Relations +116335,Health,Health +299569,Health,Health +232411,Industry,Industry +160405,Transportation,Transportation +131916,Transportation,Transportation +131915,Transportation,Transportation +131914,Transportation,Transportation +92456,Transportation,Transportation +92455,Transportation,Transportation +161122,Transportation,Transportation +160410,Transportation,Transportation +160408,Transportation,Transportation +160407,Transportation,Transportation +453036,Agriculture,Agriculture +450370,Agriculture,Agriculture +88009,Agriculture,Agriculture +88005,Agriculture,Agriculture +85389,Agriculture,Agriculture +83110,Agriculture,Agriculture +76060,Agriculture,Agriculture +76042,Agriculture,Agriculture +76036,Agriculture,Agriculture +142447,Agriculture,Agriculture +142445,Agriculture,Agriculture +142444,Agriculture,Agriculture +142443,Agriculture,Agriculture +129277,Agriculture,Agriculture +129276,Agriculture,Agriculture +129275,Agriculture,Agriculture +124756,Agriculture,Agriculture +124739,Agriculture,Agriculture +117616,Agriculture,Agriculture +114595,Agriculture,Agriculture +114594,Agriculture,Agriculture +105855,Agriculture,Agriculture +105835,Agriculture,Agriculture +101311,Agriculture,Agriculture +97522,Agriculture,Agriculture +97521,Agriculture,Agriculture +196071,Agriculture,Agriculture +196070,Agriculture,Agriculture +196068,Agriculture,Agriculture +175764,Agriculture,Agriculture +175359,Agriculture,Agriculture +175356,Agriculture,Agriculture +175355,Agriculture,Agriculture +175353,Agriculture,Agriculture +175352,Agriculture,Agriculture +175350,Agriculture,Agriculture +168812,Agriculture,Agriculture +168804,Agriculture,Agriculture +168800,Agriculture,Agriculture +163777,Agriculture,Agriculture +162489,Agriculture,Agriculture +159535,Agriculture,Agriculture +159534,Agriculture,Agriculture +159533,Agriculture,Agriculture +159531,Agriculture,Agriculture +159530,Agriculture,Agriculture +159528,Agriculture,Agriculture +157256,Agriculture,Agriculture +153440,Agriculture,Agriculture +150264,Agriculture,Agriculture +148135,Agriculture,Agriculture +382093,Agriculture,Agriculture +382003,Agriculture,Agriculture +382002,Agriculture,Agriculture +381170,Agriculture,Agriculture +380949,Agriculture,Agriculture +380942,Agriculture,Agriculture +380941,Agriculture,Agriculture +376374,Agriculture,Agriculture +376372,Agriculture,Agriculture +371312,Agriculture,Agriculture +371310,Agriculture,Agriculture +371305,Agriculture,Agriculture +371300,Agriculture,Agriculture +366458,Agriculture,Agriculture +363202,Agriculture,Agriculture +362312,Agriculture,Agriculture +362308,Agriculture,Agriculture +359671,Agriculture,Agriculture +359643,Agriculture,Agriculture +348999,Agriculture,Agriculture +348998,Agriculture,Agriculture +324769,Agriculture,Agriculture +324768,Agriculture,Agriculture +324767,Agriculture,Agriculture +324766,Agriculture,Agriculture +324765,Agriculture,Agriculture +324764,Agriculture,Agriculture +324763,Agriculture,Agriculture +324762,Agriculture,Agriculture +324761,Agriculture,Agriculture +324760,Agriculture,Agriculture +324759,Agriculture,Agriculture +324758,Agriculture,Agriculture +324757,Agriculture,Agriculture +319232,Agriculture,Agriculture +319216,Agriculture,Agriculture +319215,Agriculture,Agriculture +319213,Agriculture,Agriculture +319212,Agriculture,Agriculture +319211,Agriculture,Agriculture +319209,Agriculture,Agriculture +319206,Agriculture,Agriculture +305069,Agriculture,Agriculture +305049,Agriculture,Agriculture +277390,Agriculture,Agriculture +277388,Agriculture,Agriculture +277385,Agriculture,Agriculture +277383,Agriculture,Agriculture +277382,Agriculture,Agriculture +277380,Agriculture,Agriculture +277379,Agriculture,Agriculture +277377,Agriculture,Agriculture +265081,Agriculture,Agriculture +265080,Agriculture,Agriculture +265079,Agriculture,Agriculture +265073,Agriculture,Agriculture +251573,Agriculture,Agriculture +251572,Agriculture,Agriculture +245570,Agriculture,Agriculture +241449,Agriculture,Agriculture +237449,Agriculture,Agriculture +233774,Agriculture,Agriculture +231749,Agriculture,Agriculture +227770,Agriculture,Agriculture +223501,Agriculture,Agriculture +223500,Agriculture,Agriculture +217933,Agriculture,Agriculture +217928,Agriculture,Agriculture +212410,Agriculture,Agriculture +212407,Agriculture,Agriculture +196092,Agriculture,Agriculture +196080,Agriculture,Agriculture +196079,Agriculture,Agriculture +196078,Agriculture,Agriculture +196077,Agriculture,Agriculture +196076,Agriculture,Agriculture +196075,Agriculture,Agriculture +196074,Agriculture,Agriculture +196073,Agriculture,Agriculture +196072,Agriculture,Agriculture +446666,Agriculture,Agriculture +446665,Agriculture,Agriculture +446664,Agriculture,Agriculture +446663,Agriculture,Agriculture +446662,Agriculture,Agriculture +446661,Agriculture,Agriculture +446660,Agriculture,Agriculture +446659,Agriculture,Agriculture +446658,Agriculture,Agriculture +445075,Agriculture,Agriculture +445072,Agriculture,Agriculture +443186,Agriculture,Agriculture +443185,Agriculture,Agriculture +441364,Agriculture,Agriculture +437401,Agriculture,Agriculture +437400,Agriculture,Agriculture +437398,Agriculture,Agriculture +437396,Agriculture,Agriculture +437168,Agriculture,Agriculture +437167,Agriculture,Agriculture +437166,Agriculture,Agriculture +437165,Agriculture,Agriculture +437164,Agriculture,Agriculture +437163,Agriculture,Agriculture +437162,Agriculture,Agriculture +437161,Agriculture,Agriculture +437160,Agriculture,Agriculture +437159,Agriculture,Agriculture +437158,Agriculture,Agriculture +437157,Agriculture,Agriculture +437156,Agriculture,Agriculture +437155,Agriculture,Agriculture +437154,Agriculture,Agriculture +437153,Agriculture,Agriculture +437152,Agriculture,Agriculture +437151,Agriculture,Agriculture +437150,Agriculture,Agriculture +437149,Agriculture,Agriculture +437148,Agriculture,Agriculture +437147,Agriculture,Agriculture +437146,Agriculture,Agriculture +437144,Agriculture,Agriculture +437142,Agriculture,Agriculture +437141,Agriculture,Agriculture +437140,Agriculture,Agriculture +437138,Agriculture,Agriculture +437136,Agriculture,Agriculture +437134,Agriculture,Agriculture +437132,Agriculture,Agriculture +437131,Agriculture,Agriculture +437130,Agriculture,Agriculture +434547,Agriculture,Agriculture +434546,Agriculture,Agriculture +433406,Agriculture,Agriculture +433405,Agriculture,Agriculture +431966,Agriculture,Agriculture +431965,Agriculture,Agriculture +431963,Agriculture,Agriculture +431962,Agriculture,Agriculture +431961,Agriculture,Agriculture +431421,Agriculture,Agriculture +430011,Agriculture,Agriculture +430010,Agriculture,Agriculture +430009,Agriculture,Agriculture +430006,Agriculture,Agriculture +427683,Agriculture,Agriculture +427682,Agriculture,Agriculture +427681,Agriculture,Agriculture +427680,Agriculture,Agriculture +427679,Agriculture,Agriculture +427678,Agriculture,Agriculture +427676,Agriculture,Agriculture +427675,Agriculture,Agriculture +425770,Agriculture,Agriculture +425769,Agriculture,Agriculture +425767,Agriculture,Agriculture +425765,Agriculture,Agriculture +425763,Agriculture,Agriculture +425699,Agriculture,Agriculture +423520,Agriculture,Agriculture +421668,Agriculture,Agriculture +421657,Agriculture,Agriculture +421653,Agriculture,Agriculture +421649,Agriculture,Agriculture +421647,Agriculture,Agriculture +421644,Agriculture,Agriculture +421640,Agriculture,Agriculture +421636,Agriculture,Agriculture +421633,Agriculture,Agriculture +421631,Agriculture,Agriculture +421629,Agriculture,Agriculture +421627,Agriculture,Agriculture +421625,Agriculture,Agriculture +419136,Agriculture,Agriculture +419135,Agriculture,Agriculture +419133,Agriculture,Agriculture +419130,Agriculture,Agriculture +419124,Agriculture,Agriculture +417646,Agriculture,Agriculture +417645,Agriculture,Agriculture +417640,Agriculture,Agriculture +417638,Agriculture,Agriculture +417636,Agriculture,Agriculture +417634,Agriculture,Agriculture +417633,Agriculture,Agriculture +416367,Agriculture,Agriculture +416364,Agriculture,Agriculture +416361,Agriculture,Agriculture +416359,Agriculture,Agriculture +416356,Agriculture,Agriculture +416354,Agriculture,Agriculture +416353,Agriculture,Agriculture +416352,Agriculture,Agriculture +415451,Agriculture,Agriculture +415450,Agriculture,Agriculture +411759,Agriculture,Agriculture +411755,Agriculture,Agriculture +411754,Agriculture,Agriculture +411752,Agriculture,Agriculture +411750,Agriculture,Agriculture +411664,Agriculture,Agriculture +411663,Agriculture,Agriculture +411662,Agriculture,Agriculture +411661,Agriculture,Agriculture +411660,Agriculture,Agriculture +411659,Agriculture,Agriculture +411658,Agriculture,Agriculture +411450,Agriculture,Agriculture +411449,Agriculture,Agriculture +411448,Agriculture,Agriculture +411445,Agriculture,Agriculture +411444,Agriculture,Agriculture +411442,Agriculture,Agriculture +411441,Agriculture,Agriculture +411440,Agriculture,Agriculture +411439,Agriculture,Agriculture +411436,Agriculture,Agriculture +411435,Agriculture,Agriculture +411433,Agriculture,Agriculture +409173,Agriculture,Agriculture +409171,Agriculture,Agriculture +409170,Agriculture,Agriculture +407407,Agriculture,Agriculture +406166,Agriculture,Agriculture +406165,Agriculture,Agriculture +404975,Agriculture,Agriculture +404974,Agriculture,Agriculture +402126,Agriculture,Agriculture +402124,Agriculture,Agriculture +402123,Agriculture,Agriculture +402122,Agriculture,Agriculture +402119,Agriculture,Agriculture +400125,Agriculture,Agriculture +400124,Agriculture,Agriculture +397732,Agriculture,Agriculture +397731,Agriculture,Agriculture +397730,Agriculture,Agriculture +397729,Agriculture,Agriculture +397366,Agriculture,Agriculture +395548,Agriculture,Agriculture +395547,Agriculture,Agriculture +395546,Agriculture,Agriculture +393172,Agriculture,Agriculture +391957,Agriculture,Agriculture +389592,Agriculture,Agriculture +388578,Agriculture,Agriculture +388575,Agriculture,Agriculture +388573,Agriculture,Agriculture +388559,Agriculture,Agriculture +388550,Agriculture,Agriculture +388548,Agriculture,Agriculture +388538,Agriculture,Agriculture +387580,Agriculture,Agriculture +387579,Agriculture,Agriculture +387573,Agriculture,Agriculture +387572,Agriculture,Agriculture +387571,Agriculture,Agriculture +387570,Agriculture,Agriculture +387568,Agriculture,Agriculture +387567,Agriculture,Agriculture +386534,Agriculture,Agriculture +386531,Agriculture,Agriculture +386530,Agriculture,Agriculture +386488,Agriculture,Agriculture +386486,Agriculture,Agriculture +384602,Agriculture,Agriculture +384600,Agriculture,Agriculture +384519,Agriculture,Agriculture +384512,Agriculture,Agriculture +384511,Agriculture,Agriculture +384510,Agriculture,Agriculture +544197,Agriculture,Agriculture +540259,Agriculture,Agriculture +540257,Agriculture,Agriculture +535723,Agriculture,Agriculture +535722,Agriculture,Agriculture +535715,Agriculture,Agriculture +532745,Agriculture,Agriculture +530247,Agriculture,Agriculture +530246,Agriculture,Agriculture +530245,Agriculture,Agriculture +530108,Agriculture,Agriculture +530107,Agriculture,Agriculture +530105,Agriculture,Agriculture +530103,Agriculture,Agriculture +530102,Agriculture,Agriculture +530101,Agriculture,Agriculture +530100,Agriculture,Agriculture +530099,Agriculture,Agriculture +530098,Agriculture,Agriculture +530096,Agriculture,Agriculture +530095,Agriculture,Agriculture +530094,Agriculture,Agriculture +530093,Agriculture,Agriculture +530092,Agriculture,Agriculture +530091,Agriculture,Agriculture +530090,Agriculture,Agriculture +530089,Agriculture,Agriculture +530088,Agriculture,Agriculture +530087,Agriculture,Agriculture +530085,Agriculture,Agriculture +530083,Agriculture,Agriculture +530082,Agriculture,Agriculture +530081,Agriculture,Agriculture +530080,Agriculture,Agriculture +530079,Agriculture,Agriculture +530078,Agriculture,Agriculture +530077,Agriculture,Agriculture +530076,Agriculture,Agriculture +530074,Agriculture,Agriculture +530073,Agriculture,Agriculture +530072,Agriculture,Agriculture +530071,Agriculture,Agriculture +530070,Agriculture,Agriculture +530069,Agriculture,Agriculture +530068,Agriculture,Agriculture +530067,Agriculture,Agriculture +530066,Agriculture,Agriculture +530065,Agriculture,Agriculture +526677,Agriculture,Agriculture +523326,Agriculture,Agriculture +523318,Agriculture,Agriculture +523316,Agriculture,Agriculture +520024,Agriculture,Agriculture +520021,Agriculture,Agriculture +520012,Agriculture,Agriculture +514234,Agriculture,Agriculture +514230,Agriculture,Agriculture +514228,Agriculture,Agriculture +514217,Agriculture,Agriculture +514205,Agriculture,Agriculture +511244,Agriculture,Agriculture +507094,Agriculture,Agriculture +507092,Agriculture,Agriculture +507091,Agriculture,Agriculture +507090,Agriculture,Agriculture +507088,Agriculture,Agriculture +502485,Agriculture,Agriculture +502477,Agriculture,Agriculture +502469,Agriculture,Agriculture +502465,Agriculture,Agriculture +502431,Agriculture,Agriculture +502426,Agriculture,Agriculture +495738,Agriculture,Agriculture +495736,Agriculture,Agriculture +495733,Agriculture,Agriculture +495732,Agriculture,Agriculture +495731,Agriculture,Agriculture +495730,Agriculture,Agriculture +495729,Agriculture,Agriculture +488925,Agriculture,Agriculture +488924,Agriculture,Agriculture +488923,Agriculture,Agriculture +488922,Agriculture,Agriculture +488921,Agriculture,Agriculture +488920,Agriculture,Agriculture +488919,Agriculture,Agriculture +488918,Agriculture,Agriculture +488917,Agriculture,Agriculture +485875,Agriculture,Agriculture +485874,Agriculture,Agriculture +485873,Agriculture,Agriculture +485872,Agriculture,Agriculture +485871,Agriculture,Agriculture +485870,Agriculture,Agriculture +485869,Agriculture,Agriculture +485868,Agriculture,Agriculture +485661,Agriculture,Agriculture +479000,Agriculture,Agriculture +478999,Agriculture,Agriculture +477857,Agriculture,Agriculture +477855,Agriculture,Agriculture +477854,Agriculture,Agriculture +477831,Agriculture,Agriculture +477829,Agriculture,Agriculture +477827,Agriculture,Agriculture +477821,Agriculture,Agriculture +474408,Agriculture,Agriculture +472783,Agriculture,Agriculture +472780,Agriculture,Agriculture +472775,Agriculture,Agriculture +472770,Agriculture,Agriculture +472768,Agriculture,Agriculture +472766,Agriculture,Agriculture +469562,Agriculture,Agriculture +469555,Agriculture,Agriculture +469553,Agriculture,Agriculture +469552,Agriculture,Agriculture +469551,Agriculture,Agriculture +469550,Agriculture,Agriculture +469549,Agriculture,Agriculture +469548,Agriculture,Agriculture +469381,Agriculture,Agriculture +469380,Agriculture,Agriculture +469379,Agriculture,Agriculture +469378,Agriculture,Agriculture +469176,Agriculture,Agriculture +469175,Agriculture,Agriculture +469174,Agriculture,Agriculture +465159,Agriculture,Agriculture +461976,Agriculture,Agriculture +461975,Agriculture,Agriculture +461712,Agriculture,Agriculture +461703,Agriculture,Agriculture +461702,Agriculture,Agriculture +461698,Agriculture,Agriculture +461687,Agriculture,Agriculture +459529,Agriculture,Agriculture +458818,Agriculture,Agriculture +457618,Agriculture,Agriculture +457617,Agriculture,Agriculture +457615,Agriculture,Agriculture +455594,Agriculture,Agriculture +455544,Agriculture,Agriculture +455530,Agriculture,Agriculture +427678,Consumer Issues,Consumer Issues +419136,Consumer Issues,Consumer Issues +388559,Consumer Issues,Consumer Issues +382093,Consumer Issues,Consumer Issues +446664,Consumer Issues,Consumer Issues +446663,Consumer Issues,Consumer Issues +445072,Consumer Issues,Consumer Issues +441364,Consumer Issues,Consumer Issues +437398,Consumer Issues,Consumer Issues +433406,Consumer Issues,Consumer Issues +430010,Consumer Issues,Consumer Issues +430009,Consumer Issues,Consumer Issues +416367,Employment and Training,Employment and Training +384512,Employment and Training,Employment and Training +437138,Environment,Environment +437136,Environment,Environment +175764,Environment,Environment +168800,Environment,Environment +265081,Environment,Environment +265080,Environment,Environment +265079,Environment,Environment +217928,Environment,Environment +395548,Environment,Environment +391957,Environment,Environment +388578,Environment,Environment +388559,Environment,Environment +388548,Environment,Environment +387580,Environment,Environment +387579,Environment,Environment +387573,Environment,Environment +387572,Environment,Environment +387571,Environment,Environment +384602,Environment,Environment +437134,Environment,Environment +437132,Environment,Environment +437131,Environment,Environment +437130,Environment,Environment +427683,Environment,Environment +427682,Environment,Environment +416356,Environment,Environment +411754,Environment,Environment +535723,Environment,Environment +535722,Environment,Environment +532745,Environment,Environment +474408,Environment,Environment +446659,Environment,Environment +437166,Environment,Environment +437165,Environment,Environment +437164,Environment,Environment +437163,Environment,Environment +437162,Environment,Environment +437161,Environment,Environment +437160,Environment,Environment +437159,Environment,Environment +437158,Environment,Environment +437157,Environment,Environment +437156,Environment,Environment +437155,Environment,Environment +437154,Environment,Environment +437153,Environment,Environment +437152,Environment,Environment +437151,Environment,Environment +437150,Environment,Environment +437149,Environment,Environment +437148,Environment,Environment +437147,Environment,Environment +437146,Environment,Environment +437144,Environment,Environment +437142,Environment,Environment +437141,Environment,Environment +384602,Fisheries,Fisheries +411755,Health,Health +397729,Health,Health +391957,Health,Health +446664,Health,Health +446663,Health,Health +441364,Health,Health +437398,Health,Health +437396,Health,Health +433406,Health,Health +431421,Health,Health +430010,Health,Health +430009,Health,Health +427678,Health,Health +421668,Health,Health +371305,Industry,Industry +446665,Industry,Industry +388578,Industry,Industry +388573,Industry,Industry +388559,Industry,Industry +388548,Industry,Industry +388538,Industry,Industry +387579,Industry,Industry +387572,Industry,Industry +469378,International Trade,International Trade +469176,International Trade,International Trade +114595,International Trade,International Trade +114594,International Trade,International Trade +85389,International Trade,International Trade +76060,International Trade,International Trade +175356,International Trade,International Trade +175355,International Trade,International Trade +175353,International Trade,International Trade +175352,International Trade,International Trade +175351,International Trade,International Trade +168800,International Trade,International Trade +153440,International Trade,International Trade +142447,International Trade,International Trade +129277,International Trade,International Trade +124756,International Trade,International Trade +124739,International Trade,International Trade +387580,International Trade,International Trade +387573,International Trade,International Trade +387572,International Trade,International Trade +387571,International Trade,International Trade +387570,International Trade,International Trade +386534,International Trade,International Trade +386530,International Trade,International Trade +386488,International Trade,International Trade +386486,International Trade,International Trade +366458,International Trade,International Trade +363202,International Trade,International Trade +362308,International Trade,International Trade +359671,International Trade,International Trade +265081,International Trade,International Trade +265080,International Trade,International Trade +265079,International Trade,International Trade +450371,International Trade,International Trade +446666,International Trade,International Trade +446662,International Trade,International Trade +445072,International Trade,International Trade +437167,International Trade,International Trade +437166,International Trade,International Trade +437165,International Trade,International Trade +437164,International Trade,International Trade +437163,International Trade,International Trade +437162,International Trade,International Trade +437161,International Trade,International Trade +437160,International Trade,International Trade +437159,International Trade,International Trade +437158,International Trade,International Trade +437157,International Trade,International Trade +437156,International Trade,International Trade +437155,International Trade,International Trade +437154,International Trade,International Trade +437153,International Trade,International Trade +437152,International Trade,International Trade +437151,International Trade,International Trade +437150,International Trade,International Trade +437149,International Trade,International Trade +437148,International Trade,International Trade +437147,International Trade,International Trade +437146,International Trade,International Trade +437144,International Trade,International Trade +437142,International Trade,International Trade +437141,International Trade,International Trade +437140,International Trade,International Trade +437138,International Trade,International Trade +437136,International Trade,International Trade +437134,International Trade,International Trade +437132,International Trade,International Trade +437131,International Trade,International Trade +437130,International Trade,International Trade +434547,International Trade,International Trade +431963,International Trade,International Trade +431961,International Trade,International Trade +427683,International Trade,International Trade +425767,International Trade,International Trade +425699,International Trade,International Trade +421668,International Trade,International Trade +421653,International Trade,International Trade +421629,International Trade,International Trade +419124,International Trade,International Trade +417646,International Trade,International Trade +417633,International Trade,International Trade +416361,International Trade,International Trade +416359,International Trade,International Trade +416356,International Trade,International Trade +411759,International Trade,International Trade +411755,International Trade,International Trade +411754,International Trade,International Trade +411752,International Trade,International Trade +411750,International Trade,International Trade +411664,International Trade,International Trade +411663,International Trade,International Trade +411662,International Trade,International Trade +411661,International Trade,International Trade +411660,International Trade,International Trade +411659,International Trade,International Trade +411658,International Trade,International Trade +411450,International Trade,International Trade +411449,International Trade,International Trade +411448,International Trade,International Trade +411445,International Trade,International Trade +411444,International Trade,International Trade +411441,International Trade,International Trade +407407,International Trade,International Trade +406166,International Trade,International Trade +406165,International Trade,International Trade +402119,International Trade,International Trade +397730,International Trade,International Trade +397366,International Trade,International Trade +395548,International Trade,International Trade +391957,International Trade,International Trade +437152,Labour,Labour +437151,Labour,Labour +277390,Labour,Labour +437150,Labour,Labour +437149,Labour,Labour +437148,Labour,Labour +437147,Labour,Labour +437146,Labour,Labour +437144,Labour,Labour +437142,Labour,Labour +437141,Labour,Labour +437140,Labour,Labour +437138,Labour,Labour +437136,Labour,Labour +437134,Labour,Labour +437132,Labour,Labour +437131,Labour,Labour +437130,Labour,Labour +431965,Labour,Labour +427680,Labour,Labour +427676,Labour,Labour +427675,Labour,Labour +425770,Labour,Labour +425769,Labour,Labour +425767,Labour,Labour +425765,Labour,Labour +425763,Labour,Labour +421657,Labour,Labour +421649,Labour,Labour +421636,Labour,Labour +419133,Labour,Labour +419130,Labour,Labour +417634,Labour,Labour +416367,Labour,Labour +416361,Labour,Labour +416359,Labour,Labour +416353,Labour,Labour +411659,Labour,Labour +411440,Labour,Labour +411439,Labour,Labour +411436,Labour,Labour +409173,Labour,Labour +402126,Labour,Labour +395547,Labour,Labour +389592,Labour,Labour +388578,Labour,Labour +388575,Labour,Labour +388573,Labour,Labour +388538,Labour,Labour +387580,Labour,Labour +387572,Labour,Labour +387567,Labour,Labour +386534,Labour,Labour +386531,Labour,Labour +386486,Labour,Labour +384519,Labour,Labour +381170,Labour,Labour +380949,Labour,Labour +380942,Labour,Labour +380941,Labour,Labour +376374,Labour,Labour +371310,Labour,Labour +371305,Labour,Labour +540259,Labour,Labour +530247,Labour,Labour +523326,Labour,Labour +477857,Labour,Labour +477831,Labour,Labour +477829,Labour,Labour +472783,Labour,Labour +472780,Labour,Labour +472775,Labour,Labour +472770,Labour,Labour +472766,Labour,Labour +469562,Labour,Labour +469555,Labour,Labour +469553,Labour,Labour +469552,Labour,Labour +469551,Labour,Labour +469550,Labour,Labour +469549,Labour,Labour +469548,Labour,Labour +469381,Labour,Labour +469380,Labour,Labour +445075,Labour,Labour +445072,Labour,Labour +443185,Labour,Labour +437401,Labour,Labour +437400,Labour,Labour +437166,Labour,Labour +437165,Labour,Labour +437164,Labour,Labour +437163,Labour,Labour +437162,Labour,Labour +437161,Labour,Labour +437160,Labour,Labour +437159,Labour,Labour +437158,Labour,Labour +437157,Labour,Labour +437156,Labour,Labour +437155,Labour,Labour +437154,Labour,Labour +437131,Regional Development,Regional Development +437130,Regional Development,Regional Development +437166,Regional Development,Regional Development +437165,Regional Development,Regional Development +437164,Regional Development,Regional Development +437163,Regional Development,Regional Development +437162,Regional Development,Regional Development +437161,Regional Development,Regional Development +437160,Regional Development,Regional Development +437159,Regional Development,Regional Development +437158,Regional Development,Regional Development +437157,Regional Development,Regional Development +437156,Regional Development,Regional Development +437155,Regional Development,Regional Development +437154,Regional Development,Regional Development +437153,Regional Development,Regional Development +437152,Regional Development,Regional Development +437151,Regional Development,Regional Development +437150,Regional Development,Regional Development +437149,Regional Development,Regional Development +437148,Regional Development,Regional Development +437147,Regional Development,Regional Development +437146,Regional Development,Regional Development +437144,Regional Development,Regional Development +437142,Regional Development,Regional Development +437141,Regional Development,Regional Development +437140,Regional Development,Regional Development +437138,Regional Development,Regional Development +437136,Regional Development,Regional Development +437134,Regional Development,Regional Development +469548,Small Business,Small Business +409171,Taxation and Finance,Taxation and Finance +409170,Taxation and Finance,Taxation and Finance +400125,Taxation and Finance,Taxation and Finance +388578,Taxation and Finance,Taxation and Finance +388575,Taxation and Finance,Taxation and Finance +388559,Taxation and Finance,Taxation and Finance +387580,Taxation and Finance,Taxation and Finance +387573,Taxation and Finance,Taxation and Finance +387572,Taxation and Finance,Taxation and Finance +387571,Taxation and Finance,Taxation and Finance +387570,Taxation and Finance,Taxation and Finance +387568,Taxation and Finance,Taxation and Finance +386531,Taxation and Finance,Taxation and Finance +386488,Taxation and Finance,Taxation and Finance +386486,Taxation and Finance,Taxation and Finance +384511,Taxation and Finance,Taxation and Finance +384510,Taxation and Finance,Taxation and Finance +376372,Taxation and Finance,Taxation and Finance +277388,Taxation and Finance,Taxation and Finance +277385,Taxation and Finance,Taxation and Finance +277383,Taxation and Finance,Taxation and Finance +277382,Taxation and Finance,Taxation and Finance +461976,Taxation and Finance,Taxation and Finance +437166,Taxation and Finance,Taxation and Finance +437165,Taxation and Finance,Taxation and Finance +437164,Taxation and Finance,Taxation and Finance +437163,Taxation and Finance,Taxation and Finance +437162,Taxation and Finance,Taxation and Finance +437161,Taxation and Finance,Taxation and Finance +437160,Taxation and Finance,Taxation and Finance +437159,Taxation and Finance,Taxation and Finance +437158,Taxation and Finance,Taxation and Finance +437157,Taxation and Finance,Taxation and Finance +437156,Taxation and Finance,Taxation and Finance +437155,Taxation and Finance,Taxation and Finance +437154,Taxation and Finance,Taxation and Finance +437153,Taxation and Finance,Taxation and Finance +437152,Taxation and Finance,Taxation and Finance +437151,Taxation and Finance,Taxation and Finance +437150,Taxation and Finance,Taxation and Finance +437149,Taxation and Finance,Taxation and Finance +437148,Taxation and Finance,Taxation and Finance +437147,Taxation and Finance,Taxation and Finance +437146,Taxation and Finance,Taxation and Finance +437144,Taxation and Finance,Taxation and Finance +437142,Taxation and Finance,Taxation and Finance +437141,Taxation and Finance,Taxation and Finance +437140,Taxation and Finance,Taxation and Finance +437138,Taxation and Finance,Taxation and Finance +437136,Taxation and Finance,Taxation and Finance +437134,Taxation and Finance,Taxation and Finance +437132,Taxation and Finance,Taxation and Finance +437131,Taxation and Finance,Taxation and Finance +437130,Taxation and Finance,Taxation and Finance +433405,Taxation and Finance,Taxation and Finance +417638,Taxation and Finance,Taxation and Finance +416364,Taxation and Finance,Taxation and Finance +411755,Taxation and Finance,Taxation and Finance +411754,Taxation and Finance,Taxation and Finance +411752,Taxation and Finance,Taxation and Finance +411750,Taxation and Finance,Taxation and Finance +411664,Taxation and Finance,Taxation and Finance +411663,Taxation and Finance,Taxation and Finance +411662,Taxation and Finance,Taxation and Finance +411661,Taxation and Finance,Taxation and Finance +411660,Taxation and Finance,Taxation and Finance +411659,Taxation and Finance,Taxation and Finance +411658,Taxation and Finance,Taxation and Finance +411450,Taxation and Finance,Taxation and Finance +411449,Taxation and Finance,Taxation and Finance +411448,Taxation and Finance,Taxation and Finance +411445,Taxation and Finance,Taxation and Finance +411444,Taxation and Finance,Taxation and Finance +411442,Taxation and Finance,Taxation and Finance +411441,Taxation and Finance,Taxation and Finance +382003,Transportation,Transportation +382002,Transportation,Transportation +129276,Transportation,Transportation +129275,Transportation,Transportation +175355,Transportation,Transportation +175353,Transportation,Transportation +175352,Transportation,Transportation +159535,Transportation,Transportation +159534,Transportation,Transportation +159533,Transportation,Transportation +159531,Transportation,Transportation +159530,Transportation,Transportation +159528,Transportation,Transportation +324769,Transportation,Transportation +324767,Transportation,Transportation +324763,Transportation,Transportation +324762,Transportation,Transportation +388575,Transportation,Transportation +388573,Transportation,Transportation +388559,Transportation,Transportation +388550,Transportation,Transportation +388548,Transportation,Transportation +388538,Transportation,Transportation +387573,Transportation,Transportation +387572,Transportation,Transportation +387571,Transportation,Transportation +387570,Transportation,Transportation +387568,Transportation,Transportation +387567,Transportation,Transportation +386488,Transportation,Transportation +357656,Health,Health +496884,Health,Health +494254,Health,Health +157819,Health,Health +157818,Health,Health +157817,Health,Health +157816,Health,Health +157815,Health,Health +157813,Health,Health +157812,Health,Health +157811,Health,Health +157810,Health,Health +157809,Health,Health +157808,Health,Health +155288,Health,Health +148892,Health,Health +148890,Health,Health +126156,Health,Health +124881,Health,Health +124878,Health,Health +124846,Health,Health +124844,Health,Health +124669,Health,Health +124668,Health,Health +124666,Health,Health +124662,Health,Health +227670,Health,Health +161667,Health,Health +160223,Health,Health +160221,Health,Health +160220,Health,Health +160219,Health,Health +160218,Health,Health +160217,Health,Health +160216,Health,Health +157998,Health,Health +157997,Health,Health +157996,Health,Health +157857,Health,Health +157856,Health,Health +157855,Health,Health +157854,Health,Health +157853,Health,Health +157852,Health,Health +157851,Health,Health +157850,Health,Health +157849,Health,Health +157848,Health,Health +157847,Health,Health +157846,Health,Health +157845,Health,Health +157844,Health,Health +157843,Health,Health +157842,Health,Health +157841,Health,Health +157840,Health,Health +157839,Health,Health +157838,Health,Health +157837,Health,Health +157836,Health,Health +157835,Health,Health +157834,Health,Health +157833,Health,Health +157832,Health,Health +157831,Health,Health +157830,Health,Health +157829,Health,Health +157828,Health,Health +157827,Health,Health +157826,Health,Health +157825,Health,Health +157824,Health,Health +157823,Health,Health +157822,Health,Health +157821,Health,Health +157820,Health,Health +417218,Health,Health +416682,Health,Health +409424,Health,Health +409423,Health,Health +409422,Health,Health +409421,Health,Health +409420,Health,Health +403603,Health,Health +396746,Health,Health +396739,Health,Health +396722,Health,Health +395286,Health,Health +395284,Health,Health +395279,Health,Health +395274,Health,Health +392808,Health,Health +392807,Health,Health +390986,Health,Health +390976,Health,Health +390956,Health,Health +390950,Health,Health +387631,Health,Health +387625,Health,Health +387598,Health,Health +384819,Health,Health +384814,Health,Health +384801,Health,Health +384796,Health,Health +384793,Health,Health +384762,Health,Health +378840,Health,Health +378830,Health,Health +371504,Health,Health +371482,Health,Health +357618,Health,Health +350292,Health,Health +350126,Health,Health +350122,Health,Health +350121,Health,Health +346744,Health,Health +346743,Health,Health +343342,Health,Health +343341,Health,Health +343339,Health,Health +340884,Health,Health +334562,Health,Health +334561,Health,Health +334560,Health,Health +334559,Health,Health +334558,Health,Health +334557,Health,Health +334556,Health,Health +334555,Health,Health +334554,Health,Health +334553,Health,Health +334552,Health,Health +332732,Health,Health +331338,Health,Health +331337,Health,Health +331335,Health,Health +331334,Health,Health +331333,Health,Health +331332,Health,Health +331331,Health,Health +331329,Health,Health +330397,Health,Health +329902,Health,Health +329901,Health,Health +329900,Health,Health +329896,Health,Health +327321,Health,Health +488950,Health,Health +488949,Health,Health +488948,Health,Health +488947,Health,Health +486929,Health,Health +486053,Health,Health +483102,Health,Health +479340,Health,Health +478605,Health,Health +476424,Health,Health +474470,Health,Health +474469,Health,Health +471978,Health,Health +471601,Health,Health +469306,Health,Health +469054,Health,Health +469050,Health,Health +469049,Health,Health +469048,Health,Health +469047,Health,Health +469045,Health,Health +469044,Health,Health +469043,Health,Health +469042,Health,Health +469041,Health,Health +469034,Health,Health +469033,Health,Health +469032,Health,Health +469008,Health,Health +469007,Health,Health +469006,Health,Health +469005,Health,Health +469003,Health,Health +469002,Health,Health +469000,Health,Health +466042,Health,Health +466040,Health,Health +463414,Health,Health +463412,Health,Health +463409,Health,Health +463407,Health,Health +455298,Health,Health +455295,Health,Health +455291,Health,Health +455289,Health,Health +455286,Health,Health +455285,Health,Health +455281,Health,Health +455279,Health,Health +455277,Health,Health +455252,Health,Health +455251,Health,Health +455250,Health,Health +451207,Health,Health +451206,Health,Health +451205,Health,Health +446509,Health,Health +444142,Health,Health +444141,Health,Health +436857,Health,Health +436856,Health,Health +436854,Health,Health +431869,Health,Health +429978,Health,Health +427614,Health,Health +424908,Health,Health +424907,Health,Health +423153,Health,Health +421154,Health,Health +421153,Health,Health +421151,Health,Health +421149,Health,Health +545189,Health,Health +537269,Health,Health +536007,Health,Health +527450,Health,Health +527034,Health,Health +527019,Health,Health +523670,Health,Health +520971,Health,Health +520640,Health,Health +515997,Health,Health +515091,Health,Health +515035,Health,Health +510158,Health,Health +509920,Health,Health +509918,Health,Health +509917,Health,Health +506742,Health,Health +506740,Health,Health +506737,Health,Health +506258,Health,Health +504539,Health,Health +504130,Health,Health +503406,Health,Health +502949,Health,Health +500538,Health,Health +499890,Health,Health +496887,Health,Health +496886,Health,Health +488948,Industry,Industry +488947,Industry,Industry +486929,Industry,Industry +417218,Industry,Industry +416682,Industry,Industry +403603,Industry,Industry +515997,Industry,Industry +515091,Industry,Industry +515035,Industry,Industry +509920,Industry,Industry +509918,Industry,Industry +509917,Industry,Industry +506742,Industry,Industry +506740,Industry,Industry +506737,Industry,Industry +506258,Industry,Industry +504539,Industry,Industry +504130,Industry,Industry +503406,Industry,Industry +502949,Industry,Industry +500538,Industry,Industry +499890,Industry,Industry +496887,Industry,Industry +496886,Industry,Industry +496885,Industry,Industry +496884,Industry,Industry +494254,Industry,Industry +488950,Industry,Industry +396746,Taxation and Finance,Taxation and Finance +396739,Taxation and Finance,Taxation and Finance +331331,Taxation and Finance,Taxation and Finance +331329,Taxation and Finance,Taxation and Finance +330397,Taxation and Finance,Taxation and Finance +329902,Taxation and Finance,Taxation and Finance +329901,Taxation and Finance,Taxation and Finance +329900,Taxation and Finance,Taxation and Finance +329896,Taxation and Finance,Taxation and Finance +327321,Taxation and Finance,Taxation and Finance +227670,Taxation and Finance,Taxation and Finance +357618,Taxation and Finance,Taxation and Finance +350292,Taxation and Finance,Taxation and Finance +350126,Taxation and Finance,Taxation and Finance +350122,Taxation and Finance,Taxation and Finance +350121,Taxation and Finance,Taxation and Finance +346744,Taxation and Finance,Taxation and Finance +346743,Taxation and Finance,Taxation and Finance +343342,Taxation and Finance,Taxation and Finance +343341,Taxation and Finance,Taxation and Finance +343339,Taxation and Finance,Taxation and Finance +340884,Taxation and Finance,Taxation and Finance +334562,Taxation and Finance,Taxation and Finance +334561,Taxation and Finance,Taxation and Finance +334560,Taxation and Finance,Taxation and Finance +334559,Taxation and Finance,Taxation and Finance +334558,Taxation and Finance,Taxation and Finance +334557,Taxation and Finance,Taxation and Finance +334556,Taxation and Finance,Taxation and Finance +334555,Taxation and Finance,Taxation and Finance +334554,Taxation and Finance,Taxation and Finance +334553,Taxation and Finance,Taxation and Finance +334552,Taxation and Finance,Taxation and Finance +332732,Taxation and Finance,Taxation and Finance +331338,Taxation and Finance,Taxation and Finance +331337,Taxation and Finance,Taxation and Finance +331335,Taxation and Finance,Taxation and Finance +331334,Taxation and Finance,Taxation and Finance +331333,Taxation and Finance,Taxation and Finance +331332,Taxation and Finance,Taxation and Finance +483102,Taxation and Finance,Taxation and Finance +479340,Taxation and Finance,Taxation and Finance +478605,Taxation and Finance,Taxation and Finance +471978,Taxation and Finance,Taxation and Finance +401949,Industry,Industry +401948,Industry,Industry +125954,Industry,Industry +343022,Industry,Industry +429747,Taxation and Finance,Taxation and Finance +429745,Taxation and Finance,Taxation and Finance +125954,Taxation and Finance,Taxation and Finance +92859,Taxation and Finance,Taxation and Finance +92858,Taxation and Finance,Taxation and Finance +86475,Taxation and Finance,Taxation and Finance +134397,Taxation and Finance,Taxation and Finance +337589,Taxation and Finance,Taxation and Finance +197101,Health,Health +197092,Health,Health +170529,Health,Health +170524,Health,Health +155788,Mining,Mining +149237,Mining,Mining +170529,Mining,Mining +170524,Mining,Mining +160137,Mining,Mining +155791,Mining,Mining +160957,Transportation,Transportation +160654,Transportation,Transportation +127018,Transportation,Transportation +94277,Transportation,Transportation +94276,Transportation,Transportation +492131,Environment,Environment +488269,Environment,Environment +484690,Environment,Environment +475350,Environment,Environment +471684,Environment,Environment +471675,Environment,Environment +467227,Environment,Environment +467213,Environment,Environment +467211,Environment,Environment +465895,Environment,Environment +465894,Environment,Environment +465893,Environment,Environment +465892,Environment,Environment +465890,Environment,Environment +465888,Environment,Environment +465886,Environment,Environment +465885,Environment,Environment +464750,Environment,Environment +464739,Environment,Environment +462827,Environment,Environment +461223,Environment,Environment +461221,Environment,Environment +458512,Environment,Environment +454856,Environment,Environment +453086,Environment,Environment +453064,Environment,Environment +453015,Environment,Environment +452729,Environment,Environment +452728,Environment,Environment +452725,Environment,Environment +452723,Environment,Environment +452721,Environment,Environment +452720,Environment,Environment +452716,Environment,Environment +452714,Environment,Environment +452713,Environment,Environment +452706,Environment,Environment +452703,Environment,Environment +452702,Environment,Environment +452701,Environment,Environment +452700,Environment,Environment +452698,Environment,Environment +452697,Environment,Environment +449539,Environment,Environment +449536,Environment,Environment +446655,Environment,Environment +440930,Environment,Environment +440799,Environment,Environment +434545,Environment,Environment +434544,Environment,Environment +434543,Environment,Environment +434542,Environment,Environment +434541,Environment,Environment +434540,Environment,Environment +434539,Environment,Environment +434538,Environment,Environment +434537,Environment,Environment +434535,Environment,Environment +434534,Environment,Environment +434533,Environment,Environment +434532,Environment,Environment +434531,Environment,Environment +434530,Environment,Environment +428670,Environment,Environment +428663,Environment,Environment +424948,Environment,Environment +424947,Environment,Environment +424026,Environment,Environment +423998,Environment,Environment +423995,Environment,Environment +421249,Environment,Environment +421248,Environment,Environment +421246,Environment,Environment +421244,Environment,Environment +421243,Environment,Environment +421241,Environment,Environment +421239,Environment,Environment +421238,Environment,Environment +420137,Environment,Environment +420134,Environment,Environment +420132,Environment,Environment +536992,Environment,Environment +533171,Environment,Environment +531898,Environment,Environment +531897,Environment,Environment +525967,Environment,Environment +525954,Environment,Environment +525950,Environment,Environment +525948,Environment,Environment +525929,Environment,Environment +523184,Environment,Environment +523180,Environment,Environment +523177,Environment,Environment +523172,Environment,Environment +523164,Environment,Environment +523160,Environment,Environment +520056,Environment,Environment +520038,Environment,Environment +513351,Environment,Environment +511516,Environment,Environment +511514,Environment,Environment +511512,Environment,Environment +511509,Environment,Environment +508706,Environment,Environment +508702,Environment,Environment +508309,Environment,Environment +508278,Environment,Environment +508275,Environment,Environment +495853,Environment,Environment +495850,Environment,Environment +495849,Environment,Environment +495846,Environment,Environment +495842,Environment,Environment +495840,Environment,Environment +493738,Environment,Environment +493735,Environment,Environment +493732,Environment,Environment +493731,Environment,Environment +493729,Environment,Environment +520038,Fisheries,Fisheries +373568,Fisheries,Fisheries +448438,Fisheries,Fisheries +448436,Fisheries,Fisheries +446655,Fisheries,Fisheries +440930,Fisheries,Fisheries +440801,Fisheries,Fisheries +440799,Fisheries,Fisheries +437076,Fisheries,Fisheries +434545,Fisheries,Fisheries +434544,Fisheries,Fisheries +434543,Fisheries,Fisheries +434542,Fisheries,Fisheries +434541,Fisheries,Fisheries +434540,Fisheries,Fisheries +434539,Fisheries,Fisheries +434538,Fisheries,Fisheries +434537,Fisheries,Fisheries +434535,Fisheries,Fisheries +434534,Fisheries,Fisheries +434533,Fisheries,Fisheries +434532,Fisheries,Fisheries +434531,Fisheries,Fisheries +434530,Fisheries,Fisheries +430923,Fisheries,Fisheries +430915,Fisheries,Fisheries +430910,Fisheries,Fisheries +428729,Fisheries,Fisheries +428717,Fisheries,Fisheries +428713,Fisheries,Fisheries +428711,Fisheries,Fisheries +428696,Fisheries,Fisheries +428674,Fisheries,Fisheries +428673,Fisheries,Fisheries +428670,Fisheries,Fisheries +428667,Fisheries,Fisheries +428666,Fisheries,Fisheries +428665,Fisheries,Fisheries +428663,Fisheries,Fisheries +428656,Fisheries,Fisheries +424951,Fisheries,Fisheries +424950,Fisheries,Fisheries +424949,Fisheries,Fisheries +424948,Fisheries,Fisheries +424947,Fisheries,Fisheries +424946,Fisheries,Fisheries +424945,Fisheries,Fisheries +424944,Fisheries,Fisheries +424942,Fisheries,Fisheries +424941,Fisheries,Fisheries +424940,Fisheries,Fisheries +424938,Fisheries,Fisheries +424041,Fisheries,Fisheries +424026,Fisheries,Fisheries +423998,Fisheries,Fisheries +423995,Fisheries,Fisheries +421249,Fisheries,Fisheries +421248,Fisheries,Fisheries +421247,Fisheries,Fisheries +421246,Fisheries,Fisheries +421244,Fisheries,Fisheries +421243,Fisheries,Fisheries +421241,Fisheries,Fisheries +421239,Fisheries,Fisheries +421238,Fisheries,Fisheries +420137,Fisheries,Fisheries +420134,Fisheries,Fisheries +420132,Fisheries,Fisheries +402713,Fisheries,Fisheries +399736,Fisheries,Fisheries +399735,Fisheries,Fisheries +399733,Fisheries,Fisheries +393049,Fisheries,Fisheries +392192,Fisheries,Fisheries +392190,Fisheries,Fisheries +378672,Fisheries,Fisheries +514071,Fisheries,Fisheries +513352,Fisheries,Fisheries +513351,Fisheries,Fisheries +511516,Fisheries,Fisheries +511514,Fisheries,Fisheries +511512,Fisheries,Fisheries +511509,Fisheries,Fisheries +508706,Fisheries,Fisheries +508702,Fisheries,Fisheries +508698,Fisheries,Fisheries +508659,Fisheries,Fisheries +508313,Fisheries,Fisheries +508309,Fisheries,Fisheries +508278,Fisheries,Fisheries +508275,Fisheries,Fisheries +499671,Fisheries,Fisheries +495853,Fisheries,Fisheries +495850,Fisheries,Fisheries +495849,Fisheries,Fisheries +495846,Fisheries,Fisheries +495842,Fisheries,Fisheries +495840,Fisheries,Fisheries +493738,Fisheries,Fisheries +493735,Fisheries,Fisheries +493732,Fisheries,Fisheries +493731,Fisheries,Fisheries +493729,Fisheries,Fisheries +492133,Fisheries,Fisheries +492131,Fisheries,Fisheries +488269,Fisheries,Fisheries +484690,Fisheries,Fisheries +480909,Fisheries,Fisheries +476752,Fisheries,Fisheries +475923,Fisheries,Fisheries +475913,Fisheries,Fisheries +475890,Fisheries,Fisheries +475356,Fisheries,Fisheries +475352,Fisheries,Fisheries +475350,Fisheries,Fisheries +475347,Fisheries,Fisheries +471684,Fisheries,Fisheries +471680,Fisheries,Fisheries +471676,Fisheries,Fisheries +471675,Fisheries,Fisheries +471674,Fisheries,Fisheries +471673,Fisheries,Fisheries +467227,Fisheries,Fisheries +467213,Fisheries,Fisheries +467211,Fisheries,Fisheries +465895,Fisheries,Fisheries +465894,Fisheries,Fisheries +465893,Fisheries,Fisheries +465892,Fisheries,Fisheries +465890,Fisheries,Fisheries +465888,Fisheries,Fisheries +465886,Fisheries,Fisheries +465885,Fisheries,Fisheries +464750,Fisheries,Fisheries +464739,Fisheries,Fisheries +462827,Fisheries,Fisheries +461224,Fisheries,Fisheries +461223,Fisheries,Fisheries +461221,Fisheries,Fisheries +458512,Fisheries,Fisheries +454856,Fisheries,Fisheries +453086,Fisheries,Fisheries +453064,Fisheries,Fisheries +453015,Fisheries,Fisheries +452729,Fisheries,Fisheries +452728,Fisheries,Fisheries +452725,Fisheries,Fisheries +452723,Fisheries,Fisheries +452721,Fisheries,Fisheries +452720,Fisheries,Fisheries +452716,Fisheries,Fisheries +452714,Fisheries,Fisheries +452713,Fisheries,Fisheries +452706,Fisheries,Fisheries +452703,Fisheries,Fisheries +452702,Fisheries,Fisheries +452701,Fisheries,Fisheries +452700,Fisheries,Fisheries +452698,Fisheries,Fisheries +452697,Fisheries,Fisheries +449539,Fisheries,Fisheries +449536,Fisheries,Fisheries +544450,Fisheries,Fisheries +540169,Fisheries,Fisheries +536993,Fisheries,Fisheries +536992,Fisheries,Fisheries +536990,Fisheries,Fisheries +533172,Fisheries,Fisheries +533171,Fisheries,Fisheries +533170,Fisheries,Fisheries +533169,Fisheries,Fisheries +533164,Fisheries,Fisheries +533162,Fisheries,Fisheries +531904,Fisheries,Fisheries +531901,Fisheries,Fisheries +531898,Fisheries,Fisheries +531897,Fisheries,Fisheries +531896,Fisheries,Fisheries +528041,Fisheries,Fisheries +527090,Fisheries,Fisheries +527089,Fisheries,Fisheries +527088,Fisheries,Fisheries +527087,Fisheries,Fisheries +525974,Fisheries,Fisheries +525973,Fisheries,Fisheries +525971,Fisheries,Fisheries +525967,Fisheries,Fisheries +525954,Fisheries,Fisheries +525950,Fisheries,Fisheries +525948,Fisheries,Fisheries +525946,Fisheries,Fisheries +525929,Fisheries,Fisheries +523184,Fisheries,Fisheries +523180,Fisheries,Fisheries +523177,Fisheries,Fisheries +523172,Fisheries,Fisheries +523164,Fisheries,Fisheries +523160,Fisheries,Fisheries +452713,Industry,Industry +452706,Industry,Industry +452703,Industry,Industry +452702,Industry,Industry +452701,Industry,Industry +452700,Industry,Industry +452698,Industry,Industry +452697,Industry,Industry +449539,Industry,Industry +449536,Industry,Industry +448438,Industry,Industry +446655,Industry,Industry +440930,Industry,Industry +440801,Industry,Industry +440799,Industry,Industry +434545,Industry,Industry +434544,Industry,Industry +434543,Industry,Industry +434542,Industry,Industry +434541,Industry,Industry +434540,Industry,Industry +434539,Industry,Industry +434538,Industry,Industry +434537,Industry,Industry +434535,Industry,Industry +434534,Industry,Industry +434532,Industry,Industry +434531,Industry,Industry +434530,Industry,Industry +430923,Industry,Industry +430915,Industry,Industry +430910,Industry,Industry +428729,Industry,Industry +428717,Industry,Industry +428713,Industry,Industry +428711,Industry,Industry +428696,Industry,Industry +428674,Industry,Industry +428673,Industry,Industry +428670,Industry,Industry +428667,Industry,Industry +428666,Industry,Industry +428665,Industry,Industry +428663,Industry,Industry +424951,Industry,Industry +424950,Industry,Industry +424949,Industry,Industry +424948,Industry,Industry +424947,Industry,Industry +424946,Industry,Industry +424945,Industry,Industry +424944,Industry,Industry +424942,Industry,Industry +424941,Industry,Industry +424940,Industry,Industry +424938,Industry,Industry +424041,Industry,Industry +424026,Industry,Industry +423995,Industry,Industry +421249,Industry,Industry +421248,Industry,Industry +421247,Industry,Industry +421246,Industry,Industry +421244,Industry,Industry +421243,Industry,Industry +421241,Industry,Industry +421239,Industry,Industry +421238,Industry,Industry +420137,Industry,Industry +420134,Industry,Industry +420132,Industry,Industry +540169,Industry,Industry +536990,Industry,Industry +531897,Industry,Industry +531896,Industry,Industry +514071,Industry,Industry +513352,Industry,Industry +513351,Industry,Industry +511503,Industry,Industry +508706,Industry,Industry +508702,Industry,Industry +508659,Industry,Industry +508313,Industry,Industry +508309,Industry,Industry +508278,Industry,Industry +508275,Industry,Industry +499671,Industry,Industry +495853,Industry,Industry +495850,Industry,Industry +495849,Industry,Industry +495846,Industry,Industry +495842,Industry,Industry +495840,Industry,Industry +493738,Industry,Industry +493735,Industry,Industry +493732,Industry,Industry +493731,Industry,Industry +493729,Industry,Industry +492133,Industry,Industry +492131,Industry,Industry +488269,Industry,Industry +484690,Industry,Industry +476760,Industry,Industry +476752,Industry,Industry +475923,Industry,Industry +475890,Industry,Industry +475364,Industry,Industry +475356,Industry,Industry +475352,Industry,Industry +467227,Industry,Industry +467213,Industry,Industry +467211,Industry,Industry +465895,Industry,Industry +465894,Industry,Industry +465893,Industry,Industry +465892,Industry,Industry +465890,Industry,Industry +465888,Industry,Industry +464750,Industry,Industry +464739,Industry,Industry +462827,Industry,Industry +461223,Industry,Industry +458512,Industry,Industry +454856,Industry,Industry +453086,Industry,Industry +453064,Industry,Industry +453015,Industry,Industry +452729,Industry,Industry +452728,Industry,Industry +452725,Industry,Industry +452723,Industry,Industry +452721,Industry,Industry +452720,Industry,Industry +452716,Industry,Industry +478298,Internal Trade,Internal Trade +476760,Internal Trade,Internal Trade +514445,Environment,Environment +514427,Environment,Environment +127275,Environment,Environment +127274,Environment,Environment +191405,Environment,Environment +191346,Environment,Environment +191345,Environment,Environment +191344,Environment,Environment +158854,Environment,Environment +506369,Environment,Environment +501154,Environment,Environment +494591,Environment,Environment +489015,Environment,Environment +488476,Environment,Environment +487185,Environment,Environment +487182,Environment,Environment +487179,Environment,Environment +487176,Environment,Environment +487173,Environment,Environment +487171,Environment,Environment +482030,Environment,Environment +463478,Environment,Environment +463477,Environment,Environment +462144,Environment,Environment +445494,Environment,Environment +545316,Environment,Environment +540099,Environment,Environment +533089,Environment,Environment +533087,Environment,Environment +533085,Environment,Environment +528394,Environment,Environment +526969,Environment,Environment +516665,Environment,Environment +515110,Environment,Environment +514630,Environment,Environment +191346,International Trade,International Trade +445495,International Trade,International Trade +191350,International Trade,International Trade +462143,Taxation and Finance,Taxation and Finance +445494,Taxation and Finance,Taxation and Finance +158854,Taxation and Finance,Taxation and Finance +434906,Immigration,Immigration +434905,Immigration,Immigration +343118,Immigration,Immigration +424540,Immigration,Immigration +407090,Immigration,Immigration +404132,Immigration,Immigration +399516,Immigration,Immigration +538011,Immigration,Immigration +535073,Immigration,Immigration +523373,Immigration,Immigration +496696,Immigration,Immigration +380138,Taxation and Finance,Taxation and Finance +375889,Taxation and Finance,Taxation and Finance +412636,Taxation and Finance,Taxation and Finance +380143,Taxation and Finance,Taxation and Finance +380142,Taxation and Finance,Taxation and Finance +380141,Taxation and Finance,Taxation and Finance +157267,Energy,Energy +157266,Energy,Energy +77161,Energy,Energy +119380,Energy,Energy +119379,Energy,Energy +119378,Energy,Energy +119377,Energy,Energy +119376,Energy,Energy +119375,Energy,Energy +119374,Energy,Energy +97699,Energy,Energy +97698,Energy,Energy +97697,Energy,Energy +97696,Energy,Energy +97695,Energy,Energy +97694,Energy,Energy +167677,Energy,Energy +160018,Energy,Energy +160017,Energy,Energy +160016,Energy,Energy +160014,Energy,Energy +160013,Energy,Energy +160012,Energy,Energy +160010,Energy,Energy +160009,Energy,Energy +157283,Energy,Energy +157281,Energy,Energy +157280,Energy,Energy +157279,Energy,Energy +157278,Energy,Energy +157281,Environment,Environment +157280,Environment,Environment +77161,Environment,Environment +157279,Environment,Environment +157278,Environment,Environment +157274,Environment,Environment +157267,Environment,Environment +157266,Environment,Environment +119380,Environment,Environment +119379,Environment,Environment +119378,Environment,Environment +434518,Immigration,Immigration +425208,International Relations,International Relations +163687,Justice and Law Enforcement,Justice and Law Enforcement +357657,Agriculture,Agriculture +137256,Agriculture,Agriculture +384173,Consumer Issues,Consumer Issues +384132,Employment and Training,Employment and Training +384106,Health,Health +384172,Immigration,Immigration +137256,Industry,Industry +384110,Justice and Law Enforcement,Justice and Law Enforcement +404819,Small Business,Small Business +384163,Taxation and Finance,Taxation and Finance +109028,Defence,Defence +396863,Industry,Industry +84934,Intellectual Property,Intellectual Property +233595,International Trade,International Trade +93473,Other,Space +93277,Infrastructure,Infrastructure +93277,Tourism,Tourism +93277,Other,Economic Development +240011,Taxation and Finance,Taxation and Finance +77081,Health,Health +97816,Other,"PROTECTION OF CHILDREN, PROMOTION OF POLICIES THAT ENCOURAGE STABLE FAMILIES, PROTECTION OF RELIGION" +136434,Health,Health +136134,Other,Information Systems and Solutions +240916,International Trade,International Trade +191390,Employment and Training,Employment and Training +138256,International Relations,International Relations +368648,Labour,Labour +352322,Transportation,Transportation +94095,Taxation and Finance,Taxation and Finance +157140,Education,Education +388946,Health,Health +195851,Consumer Issues,Consumer Issues +503727,Health,Health +414515,Industry,Industry +365664,Intellectual Property,Intellectual Property +269671,International Relations,International Relations +349947,International Trade,International Trade +174057,Taxation and Finance,Taxation and Finance +463030,Regional Development,Regional Development +463064,Environment,Environment +423914,Industry,Industry +463038,Health,Health +542418,Employment and Training,Employment and Training +496972,Government Procurement,Government Procurement +433035,Health,Health +260390,Immigration,Immigration +152370,Industry,Industry +459082,International Trade,International Trade +423197,Small Business,Small Business +408757,Taxation and Finance,Taxation and Finance +111499,Energy,Energy +121276,Environment,Environment +95714,Government Procurement,Government Procurement +143994,Transportation,Transportation +510131,Energy,Energy +432836,Environment,Environment +75874,Fisheries,Fisheries +126556,Environment,Environment +89514,Defence,Defence +89515,Government Procurement,Government Procurement +89514,Industry,Industry +78817,Regional Development,Regional Development +511087,Education,Education +150311,Employment and Training,Employment and Training +518175,Environment,Environment +461434,Health,Health +513709,Industry,Industry +459655,Infrastructure,Infrastructure +82863,Intellectual Property,Intellectual Property +160490,International Relations,International Relations +441915,Taxation and Finance,Taxation and Finance +93846,Environment,Environment +77483,Health,Health +77509,Industry,Industry +77509,Intellectual Property,Intellectual Property +160406,Transportation,Transportation +453037,Agriculture,Agriculture +427681,Consumer Issues,Consumer Issues +421657,Employment and Training,Employment and Training +437140,Environment,Environment +430006,Fisheries,Fisheries +419136,Health,Health +371312,Industry,Industry +479000,International Trade,International Trade +437153,Labour,Labour +437132,Regional Development,Regional Development +469549,Small Business,Small Business +411435,Taxation and Finance,Taxation and Finance +384600,Transportation,Transportation +357657,Health,Health +496885,Health,Health +488949,Industry,Industry +471601,Taxation and Finance,Taxation and Finance +157479,Health,Health +343021,Industry,Industry +337591,Regional Development,Regional Development +429752,Taxation and Finance,Taxation and Finance +233150,Justice and Law Enforcement,Justice and Law Enforcement +155788,Health,Health +155789,Mining,Mining +205607,Transportation,Transportation +492133,Environment,Environment +520056,Fisheries,Fisheries +452714,Industry,Industry +520038,Internal Trade,Internal Trade +508698,Regional Development,Regional Development +514489,Environment,Environment +191348,International Trade,International Trade +462144,Taxation and Finance,Taxation and Finance +467974,Immigration,Immigration +380140,Taxation and Finance,Taxation and Finance +157274,Energy,Energy +157283,Environment,Environment +97696,Government Procurement,Government Procurement +157267,Industry,Industry +128274,Taxation and Finance,Taxation and Finance +484506,Transportation,Transportation +174364,Education,Education +166390,Health,Health +187470,Infrastructure,Infrastructure +174364,Sports,Sports +174364,Other,Canadian Heritage +93937,Government Procurement,Government Procurement +168842,Taxation and Finance,Taxation and Finance +103357,Environment,Environment +401089,Agriculture,Agriculture +347223,Health,Health +375784,Internal Trade,Internal Trade +412273,International Relations,International Relations +487356,International Trade,International Trade +542275,Taxation and Finance,Taxation and Finance +142626,International Trade,International Trade +94734,Industry,Industry +75098,Environment,Environment +348519,Defence,Defence +109619,Industry,Industry +119377,Environment,Environment +119375,Environment,Environment +97699,Environment,Environment +97698,Environment,Environment +97697,Environment,Environment +97696,Environment,Environment +97695,Environment,Environment +97694,Environment,Environment +167677,Environment,Environment +160018,Environment,Environment +160017,Environment,Environment +160016,Environment,Environment +160014,Environment,Environment +160013,Environment,Environment +160012,Environment,Environment +160010,Environment,Environment +157266,Industry,Industry +167677,Industry,Industry +119376,Industry,Industry +119374,Industry,Industry +97697,Industry,Industry +160014,Industry,Industry +157283,Industry,Industry +157281,Industry,Industry +157280,Industry,Industry +157279,Industry,Industry +157278,Industry,Industry +157274,Industry,Industry +481903,Transportation,Transportation +481899,Transportation,Transportation +384784,Transportation,Transportation +376419,Transportation,Transportation +375096,Transportation,Transportation +375093,Transportation,Transportation +375092,Transportation,Transportation +375090,Transportation,Transportation +373931,Transportation,Transportation +473072,Transportation,Transportation +473071,Transportation,Transportation +473070,Transportation,Transportation +473061,Transportation,Transportation +464718,Transportation,Transportation +464714,Transportation,Transportation +464709,Transportation,Transportation +430276,Transportation,Transportation +429768,Transportation,Transportation +410736,Transportation,Transportation +408843,Transportation,Transportation +395544,Transportation,Transportation +395543,Transportation,Transportation +395529,Transportation,Transportation +395155,Transportation,Transportation +395097,Transportation,Transportation +544776,Transportation,Transportation +544113,Transportation,Transportation +518282,Transportation,Transportation +518280,Transportation,Transportation +502705,Transportation,Transportation +484562,Transportation,Transportation +484558,Transportation,Transportation +484552,Transportation,Transportation +484540,Transportation,Transportation +484515,Transportation,Transportation +174045,Education,Education +174044,Education,Education +190744,Education,Education +166385,Health,Health +165665,Health,Health +157715,Health,Health +187470,Health,Health +181505,Health,Health +174364,Health,Health +174045,Health,Health +174044,Health,Health +167314,Health,Health +166966,Health,Health +174045,Sports,Sports +174044,Sports,Sports +187470,Sports,Sports +181505,Sports,Sports +174045,Other,Canadian Heritage +174044,Other,Canadian Heritage +391692,Agriculture,Agriculture +385872,Agriculture,Agriculture +188972,Agriculture,Agriculture +188971,Agriculture,Agriculture +188969,Agriculture,Agriculture +207031,Agriculture,Agriculture +419470,Health,Health +519128,Health,Health +132469,Health,Health +212580,Health,Health +365321,Internal Trade,Internal Trade +350879,Internal Trade,Internal Trade +386195,Internal Trade,Internal Trade +466457,International Trade,International Trade +458377,International Trade,International Trade +193364,International Trade,International Trade +188974,International Trade,International Trade +188973,International Trade,International Trade +185499,International Trade,International Trade +350878,International Trade,International Trade +350877,International Trade,International Trade +347224,International Trade,International Trade +331364,International Trade,International Trade +326789,International Trade,International Trade +324337,International Trade,International Trade +310853,International Trade,International Trade +310851,International Trade,International Trade +310850,International Trade,International Trade +273791,International Trade,International Trade +449725,International Trade,International Trade +446948,International Trade,International Trade +446945,International Trade,International Trade +444953,International Trade,International Trade +444431,International Trade,International Trade +428441,International Trade,International Trade +398188,International Trade,International Trade +385964,International Trade,International Trade +385873,International Trade,International Trade +382088,International Trade,International Trade +371172,International Trade,International Trade +371079,International Trade,International Trade +371075,International Trade,International Trade +363228,International Trade,International Trade +507562,International Trade,International Trade +97921,Taxation and Finance,Taxation and Finance +97920,Taxation and Finance,Taxation and Finance +94119,Taxation and Finance,Taxation and Finance +94118,Taxation and Finance,Taxation and Finance +94117,Taxation and Finance,Taxation and Finance +94116,Taxation and Finance,Taxation and Finance +94115,Taxation and Finance,Taxation and Finance +94114,Taxation and Finance,Taxation and Finance +139497,Taxation and Finance,Taxation and Finance +139496,Taxation and Finance,Taxation and Finance +132468,Taxation and Finance,Taxation and Finance +132467,Taxation and Finance,Taxation and Finance +129814,Taxation and Finance,Taxation and Finance +273791,Taxation and Finance,Taxation and Finance +273790,Taxation and Finance,Taxation and Finance +273789,Taxation and Finance,Taxation and Finance +223167,Taxation and Finance,Taxation and Finance +218615,Taxation and Finance,Taxation and Finance +218614,Taxation and Finance,Taxation and Finance +218613,Taxation and Finance,Taxation and Finance +218612,Taxation and Finance,Taxation and Finance +218611,Taxation and Finance,Taxation and Finance +218610,Taxation and Finance,Taxation and Finance +218609,Taxation and Finance,Taxation and Finance +218608,Taxation and Finance,Taxation and Finance +218607,Taxation and Finance,Taxation and Finance +212578,Taxation and Finance,Taxation and Finance +212576,Taxation and Finance,Taxation and Finance +193366,Taxation and Finance,Taxation and Finance +188974,Taxation and Finance,Taxation and Finance +188973,Taxation and Finance,Taxation and Finance +188972,Taxation and Finance,Taxation and Finance +188971,Taxation and Finance,Taxation and Finance +188969,Taxation and Finance,Taxation and Finance +185498,Taxation and Finance,Taxation and Finance +185497,Taxation and Finance,Taxation and Finance +391689,Taxation and Finance,Taxation and Finance +371073,Taxation and Finance,Taxation and Finance +371071,Taxation and Finance,Taxation and Finance +369124,Taxation and Finance,Taxation and Finance +350880,Taxation and Finance,Taxation and Finance +347229,Taxation and Finance,Taxation and Finance +347226,Taxation and Finance,Taxation and Finance +344026,Taxation and Finance,Taxation and Finance +344025,Taxation and Finance,Taxation and Finance +344024,Taxation and Finance,Taxation and Finance +344022,Taxation and Finance,Taxation and Finance +344021,Taxation and Finance,Taxation and Finance +344020,Taxation and Finance,Taxation and Finance +344018,Taxation and Finance,Taxation and Finance +344016,Taxation and Finance,Taxation and Finance +344015,Taxation and Finance,Taxation and Finance +344013,Taxation and Finance,Taxation and Finance +344011,Taxation and Finance,Taxation and Finance +344010,Taxation and Finance,Taxation and Finance +344008,Taxation and Finance,Taxation and Finance +341744,Taxation and Finance,Taxation and Finance +341742,Taxation and Finance,Taxation and Finance +341741,Taxation and Finance,Taxation and Finance +341651,Taxation and Finance,Taxation and Finance +341649,Taxation and Finance,Taxation and Finance +341647,Taxation and Finance,Taxation and Finance +341646,Taxation and Finance,Taxation and Finance +341645,Taxation and Finance,Taxation and Finance +336100,Taxation and Finance,Taxation and Finance +331363,Taxation and Finance,Taxation and Finance +331362,Taxation and Finance,Taxation and Finance +326791,Taxation and Finance,Taxation and Finance +326790,Taxation and Finance,Taxation and Finance +324345,Taxation and Finance,Taxation and Finance +324343,Taxation and Finance,Taxation and Finance +324341,Taxation and Finance,Taxation and Finance +324340,Taxation and Finance,Taxation and Finance +324294,Taxation and Finance,Taxation and Finance +324293,Taxation and Finance,Taxation and Finance +324291,Taxation and Finance,Taxation and Finance +324288,Taxation and Finance,Taxation and Finance +324286,Taxation and Finance,Taxation and Finance +324285,Taxation and Finance,Taxation and Finance +324284,Taxation and Finance,Taxation and Finance +324283,Taxation and Finance,Taxation and Finance +324282,Taxation and Finance,Taxation and Finance +324280,Taxation and Finance,Taxation and Finance +322690,Taxation and Finance,Taxation and Finance +322689,Taxation and Finance,Taxation and Finance +540985,Taxation and Finance,Taxation and Finance +540984,Taxation and Finance,Taxation and Finance +540983,Taxation and Finance,Taxation and Finance +466456,Taxation and Finance,Taxation and Finance +446948,Taxation and Finance,Taxation and Finance +446945,Taxation and Finance,Taxation and Finance +444953,Taxation and Finance,Taxation and Finance +444948,Taxation and Finance,Taxation and Finance +444431,Taxation and Finance,Taxation and Finance +444430,Taxation and Finance,Taxation and Finance +444428,Taxation and Finance,Taxation and Finance +435481,Taxation and Finance,Taxation and Finance +435480,Taxation and Finance,Taxation and Finance +433951,Taxation and Finance,Taxation and Finance +433950,Taxation and Finance,Taxation and Finance +433949,Taxation and Finance,Taxation and Finance +433948,Taxation and Finance,Taxation and Finance +428387,Taxation and Finance,Taxation and Finance +419475,Taxation and Finance,Taxation and Finance +419474,Taxation and Finance,Taxation and Finance +419473,Taxation and Finance,Taxation and Finance +419471,Taxation and Finance,Taxation and Finance +417020,Taxation and Finance,Taxation and Finance +417019,Taxation and Finance,Taxation and Finance +416972,Taxation and Finance,Taxation and Finance +416971,Taxation and Finance,Taxation and Finance +404930,Taxation and Finance,Taxation and Finance +404926,Taxation and Finance,Taxation and Finance +401090,Taxation and Finance,Taxation and Finance +401089,Taxation and Finance,Taxation and Finance +398192,Taxation and Finance,Taxation and Finance +544457,Taxation and Finance,Taxation and Finance +75097,Environment,Environment +75094,Environment,Environment +334319,Defence,Defence +334318,Defence,Defence +355202,Defence,Defence +348520,Defence,Defence +159226,Transportation,Transportation +159225,Transportation,Transportation +87839,Transportation,Transportation +87795,Transportation,Transportation +132487,Transportation,Transportation +132484,Transportation,Transportation +99575,Transportation,Transportation +99574,Transportation,Transportation +91398,Transportation,Transportation +91397,Transportation,Transportation +91396,Transportation,Transportation +91395,Transportation,Transportation +159231,Transportation,Transportation +159230,Transportation,Transportation +159229,Transportation,Transportation +159228,Transportation,Transportation +103814,Energy,Energy +93107,Energy,Energy +103817,Energy,Energy +314049,Industry,Industry +296787,Industry,Industry +365945,Industry,Industry +206590,Energy,Energy +192044,Energy,Energy +112296,Energy,Energy +108563,Energy,Energy +102635,Energy,Energy +97678,Energy,Energy +97677,Energy,Energy +90650,Energy,Energy +77755,Energy,Energy +77754,Energy,Energy +161721,Energy,Energy +151479,Energy,Energy +150209,Energy,Energy +147858,Energy,Energy +135057,Energy,Energy +128670,Energy,Energy +124848,Energy,Energy +119874,Energy,Energy +90650,Environment,Environment +97678,Environment,Environment +206590,Industry,Industry +192044,Industry,Industry +90650,Industry,Industry +119874,Industry,Industry +97678,Industry,Industry +97677,Industry,Industry +158372,Defence,Defence +212827,Defence,Defence +466873,Energy,Energy +466872,Energy,Energy +102143,Energy,Energy +102141,Energy,Energy +82235,Energy,Energy +74314,Energy,Energy +136554,Energy,Energy +122254,Energy,Energy +122234,Energy,Energy +102146,Energy,Energy +190446,Energy,Energy +366642,Energy,Energy +358383,Energy,Energy +336676,Energy,Energy +336675,Energy,Energy +309069,Energy,Energy +309050,Energy,Energy +293889,Energy,Energy +288809,Energy,Energy +265018,Energy,Energy +265017,Energy,Energy +265016,Energy,Energy +265014,Energy,Energy +265013,Energy,Energy +241200,Energy,Energy +241099,Energy,Energy +241097,Energy,Energy +241093,Energy,Energy +241089,Energy,Energy +241082,Energy,Energy +241069,Energy,Energy +241053,Energy,Energy +233050,Energy,Energy +232875,Energy,Energy +232796,Energy,Energy +232794,Energy,Energy +232793,Energy,Energy +441822,Energy,Energy +441820,Energy,Energy +441818,Energy,Energy +441762,Energy,Energy +441761,Energy,Energy +441760,Energy,Energy +441652,Energy,Energy +436874,Energy,Energy +422482,Energy,Energy +422477,Energy,Energy +422471,Energy,Energy +416642,Energy,Energy +416633,Energy,Energy +401141,Energy,Energy +399588,Energy,Energy +399564,Energy,Energy +393208,Energy,Energy +389681,Energy,Energy +389673,Energy,Energy +383474,Energy,Energy +383473,Energy,Energy +383467,Energy,Energy +512947,Energy,Energy +492934,Energy,Energy +489427,Energy,Energy +489423,Energy,Energy +422477,Environment,Environment +422471,Environment,Environment +108818,Environment,Environment +102146,Environment,Environment +102145,Environment,Environment +102144,Environment,Environment +102141,Environment,Environment +102138,Environment,Environment +102137,Environment,Environment +102115,Environment,Environment +74314,Environment,Environment +336676,Environment,Environment +336675,Environment,Environment +265018,Environment,Environment +265017,Environment,Environment +265016,Environment,Environment +265014,Environment,Environment +265013,Environment,Environment +175228,Environment,Environment +175226,Environment,Environment +172825,Environment,Environment +157353,Environment,Environment +122254,Environment,Environment +122234,Environment,Environment +108834,Environment,Environment +108823,Environment,Environment +358383,Environment,Environment +453714,Environment,Environment +441822,Environment,Environment +441820,Environment,Environment +441762,Environment,Environment +441761,Environment,Environment +441760,Environment,Environment +441652,Environment,Environment +102141,International Relations,International Relations +102115,International Relations,International Relations +102146,International Relations,International Relations +416642,International Trade,International Trade +416633,International Trade,International Trade +74314,International Trade,International Trade +293889,International Trade,International Trade +265349,International Trade,International Trade +265018,International Trade,International Trade +265017,International Trade,International Trade +265016,International Trade,International Trade +265014,International Trade,International Trade +265013,International Trade,International Trade +241200,International Trade,International Trade +241099,International Trade,International Trade +241097,International Trade,International Trade +241093,International Trade,International Trade +241089,International Trade,International Trade +241082,International Trade,International Trade +241069,International Trade,International Trade +241053,International Trade,International Trade +234272,International Trade,International Trade +216987,International Trade,International Trade +216187,International Trade,International Trade +401141,International Trade,International Trade +399588,International Trade,International Trade +399564,International Trade,International Trade +393534,International Trade,International Trade +389681,International Trade,International Trade +389678,International Trade,International Trade +358383,International Trade,International Trade +336676,International Trade,International Trade +336675,International Trade,International Trade +441822,International Trade,International Trade +441820,International Trade,International Trade +441818,International Trade,International Trade +441761,International Trade,International Trade +441652,International Trade,International Trade +424711,International Trade,International Trade +321409,Environment,Environment +317214,Environment,Environment +111694,Environment,Environment +79954,Environment,Environment +77554,Environment,Environment +159443,Environment,Environment +159442,Environment,Environment +131596,Environment,Environment +127714,Environment,Environment +122974,Environment,Environment +276013,Environment,Environment +276012,Environment,Environment +260909,Environment,Environment +253931,Environment,Environment +251613,Environment,Environment +249832,Environment,Environment +249831,Environment,Environment +248709,Environment,Environment +221187,Environment,Environment +216348,Environment,Environment +216347,Environment,Environment +202990,Environment,Environment +202989,Environment,Environment +188144,Environment,Environment +167152,Environment,Environment +167150,Environment,Environment +167149,Environment,Environment +167149,Forestry,Forestry +326340,Forestry,Forestry +111695,Forestry,Forestry +221187,Mining,Mining +76068,Agriculture,Agriculture +437172,Agriculture,Agriculture +437170,Agriculture,Agriculture +105876,Agriculture,Agriculture +97508,Agriculture,Agriculture +97507,Agriculture,Agriculture +85368,Agriculture,Agriculture +76053,Agriculture,Agriculture +159542,Agriculture,Agriculture +159540,Agriculture,Agriculture +159539,Agriculture,Agriculture +159538,Agriculture,Agriculture +159537,Agriculture,Agriculture +159536,Agriculture,Agriculture +157259,Agriculture,Agriculture +153436,Agriculture,Agriculture +148138,Agriculture,Agriculture +142456,Agriculture,Agriculture +142453,Agriculture,Agriculture +142452,Agriculture,Agriculture +129280,Agriculture,Agriculture +117618,Agriculture,Agriculture +115895,Agriculture,Agriculture +105877,Agriculture,Agriculture +359672,Agriculture,Agriculture +349599,Agriculture,Agriculture +349598,Agriculture,Agriculture +349597,Agriculture,Agriculture +277275,Agriculture,Agriculture +277274,Agriculture,Agriculture +277273,Agriculture,Agriculture +277272,Agriculture,Agriculture +265078,Agriculture,Agriculture +265077,Agriculture,Agriculture +265076,Agriculture,Agriculture +265075,Agriculture,Agriculture +251571,Agriculture,Agriculture +245571,Agriculture,Agriculture +241450,Agriculture,Agriculture +237451,Agriculture,Agriculture +233776,Agriculture,Agriculture +231529,Agriculture,Agriculture +227749,Agriculture,Agriculture +223475,Agriculture,Agriculture +223474,Agriculture,Agriculture +223471,Agriculture,Agriculture +217932,Agriculture,Agriculture +217931,Agriculture,Agriculture +217930,Agriculture,Agriculture +212435,Agriculture,Agriculture +212414,Agriculture,Agriculture +196083,Agriculture,Agriculture +196082,Agriculture,Agriculture +196081,Agriculture,Agriculture +175371,Agriculture,Agriculture +175368,Agriculture,Agriculture +175366,Agriculture,Agriculture +175365,Agriculture,Agriculture +175362,Agriculture,Agriculture +168866,Agriculture,Agriculture +168864,Agriculture,Agriculture +168860,Agriculture,Agriculture +437169,Agriculture,Agriculture +433407,Agriculture,Agriculture +430005,Agriculture,Agriculture +430003,Agriculture,Agriculture +427672,Agriculture,Agriculture +425762,Agriculture,Agriculture +425697,Agriculture,Agriculture +421763,Agriculture,Agriculture +421762,Agriculture,Agriculture +421760,Agriculture,Agriculture +421623,Agriculture,Agriculture +421621,Agriculture,Agriculture +421619,Agriculture,Agriculture +421617,Agriculture,Agriculture +421616,Agriculture,Agriculture +421614,Agriculture,Agriculture +421613,Agriculture,Agriculture +417632,Agriculture,Agriculture +416351,Agriculture,Agriculture +416350,Agriculture,Agriculture +416348,Agriculture,Agriculture +416346,Agriculture,Agriculture +411323,Agriculture,Agriculture +411322,Agriculture,Agriculture +411321,Agriculture,Agriculture +411320,Agriculture,Agriculture +411319,Agriculture,Agriculture +411318,Agriculture,Agriculture +411317,Agriculture,Agriculture +411316,Agriculture,Agriculture +411315,Agriculture,Agriculture +411314,Agriculture,Agriculture +409169,Agriculture,Agriculture +409168,Agriculture,Agriculture +406168,Agriculture,Agriculture +406167,Agriculture,Agriculture +404976,Agriculture,Agriculture +402127,Agriculture,Agriculture +402116,Agriculture,Agriculture +402114,Agriculture,Agriculture +402113,Agriculture,Agriculture +402112,Agriculture,Agriculture +402111,Agriculture,Agriculture +400126,Agriculture,Agriculture +397733,Agriculture,Agriculture +397368,Agriculture,Agriculture +395558,Agriculture,Agriculture +395557,Agriculture,Agriculture +382433,Agriculture,Agriculture +382427,Agriculture,Agriculture +372594,Agriculture,Agriculture +369090,Agriculture,Agriculture +369087,Agriculture,Agriculture +366683,Agriculture,Agriculture +359674,Agriculture,Agriculture +446656,Agriculture,Agriculture +446651,Agriculture,Agriculture +446650,Agriculture,Agriculture +446649,Agriculture,Agriculture +446646,Agriculture,Agriculture +446644,Agriculture,Agriculture +441366,Agriculture,Agriculture +437406,Agriculture,Agriculture +441366,Consumer Issues,Consumer Issues +411318,Consumer Issues,Consumer Issues +369090,Employment and Training,Employment and Training +369087,Employment and Training,Employment and Training +437170,Environment,Environment +437169,Environment,Environment +168860,Environment,Environment +265077,Environment,Environment +265076,Environment,Environment +441366,Health,Health +421614,Health,Health +397733,Health,Health +188942,Infrastructure,Infrastructure +188942,Transportation,Transportation +443221,Environment,Environment +504516,Environment,Environment +482894,Environment,Environment +482893,Environment,Environment +482892,Environment,Environment +477237,Infrastructure,Infrastructure +477236,Infrastructure,Infrastructure +364522,Infrastructure,Infrastructure +395457,Infrastructure,Infrastructure +381046,Infrastructure,Infrastructure +379059,Infrastructure,Infrastructure +379057,Infrastructure,Infrastructure +379054,Infrastructure,Infrastructure +379049,Infrastructure,Infrastructure +375735,Infrastructure,Infrastructure +375734,Infrastructure,Infrastructure +375733,Infrastructure,Infrastructure +375732,Infrastructure,Infrastructure +375731,Infrastructure,Infrastructure +375730,Infrastructure,Infrastructure +375729,Infrastructure,Infrastructure +375727,Infrastructure,Infrastructure +475483,Infrastructure,Infrastructure +475474,Infrastructure,Infrastructure +475469,Infrastructure,Infrastructure +473830,Infrastructure,Infrastructure +473829,Infrastructure,Infrastructure +473827,Infrastructure,Infrastructure +473826,Infrastructure,Infrastructure +473825,Infrastructure,Infrastructure +473824,Infrastructure,Infrastructure +473823,Infrastructure,Infrastructure +473822,Infrastructure,Infrastructure +473821,Infrastructure,Infrastructure +473820,Infrastructure,Infrastructure +473819,Infrastructure,Infrastructure +473818,Infrastructure,Infrastructure +473817,Infrastructure,Infrastructure +473816,Infrastructure,Infrastructure +473815,Infrastructure,Infrastructure +473813,Infrastructure,Infrastructure +473812,Infrastructure,Infrastructure +470273,Infrastructure,Infrastructure +470271,Infrastructure,Infrastructure +470270,Infrastructure,Infrastructure +470267,Infrastructure,Infrastructure +470264,Infrastructure,Infrastructure +470259,Infrastructure,Infrastructure +470257,Infrastructure,Infrastructure +470254,Infrastructure,Infrastructure +469858,Infrastructure,Infrastructure +469856,Infrastructure,Infrastructure +469854,Infrastructure,Infrastructure +468699,Infrastructure,Infrastructure +468698,Infrastructure,Infrastructure +468697,Infrastructure,Infrastructure +468696,Infrastructure,Infrastructure +468695,Infrastructure,Infrastructure +468694,Infrastructure,Infrastructure +468693,Infrastructure,Infrastructure +468692,Infrastructure,Infrastructure +468691,Infrastructure,Infrastructure +464182,Infrastructure,Infrastructure +464180,Infrastructure,Infrastructure +464175,Infrastructure,Infrastructure +464173,Infrastructure,Infrastructure +461311,Infrastructure,Infrastructure +461310,Infrastructure,Infrastructure +459965,Infrastructure,Infrastructure +459964,Infrastructure,Infrastructure +459963,Infrastructure,Infrastructure +459962,Infrastructure,Infrastructure +459091,Infrastructure,Infrastructure +458718,Infrastructure,Infrastructure +458717,Infrastructure,Infrastructure +457653,Infrastructure,Infrastructure +457650,Infrastructure,Infrastructure +457640,Infrastructure,Infrastructure +457638,Infrastructure,Infrastructure +455160,Infrastructure,Infrastructure +451282,Infrastructure,Infrastructure +447467,Infrastructure,Infrastructure +447465,Infrastructure,Infrastructure +447458,Infrastructure,Infrastructure +447457,Infrastructure,Infrastructure +447455,Infrastructure,Infrastructure +447450,Infrastructure,Infrastructure +447365,Infrastructure,Infrastructure +445550,Infrastructure,Infrastructure +445547,Infrastructure,Infrastructure +445545,Infrastructure,Infrastructure +443224,Infrastructure,Infrastructure +443223,Infrastructure,Infrastructure +443220,Infrastructure,Infrastructure +434638,Infrastructure,Infrastructure +434637,Infrastructure,Infrastructure +434636,Infrastructure,Infrastructure +434635,Infrastructure,Infrastructure +434634,Infrastructure,Infrastructure +434633,Infrastructure,Infrastructure +434632,Infrastructure,Infrastructure +434631,Infrastructure,Infrastructure +434630,Infrastructure,Infrastructure +434629,Infrastructure,Infrastructure +434628,Infrastructure,Infrastructure +434627,Infrastructure,Infrastructure +434626,Infrastructure,Infrastructure +434625,Infrastructure,Infrastructure +434624,Infrastructure,Infrastructure +434622,Infrastructure,Infrastructure +434621,Infrastructure,Infrastructure +434620,Infrastructure,Infrastructure +434619,Infrastructure,Infrastructure +434618,Infrastructure,Infrastructure +434617,Infrastructure,Infrastructure +434616,Infrastructure,Infrastructure +434615,Infrastructure,Infrastructure +434614,Infrastructure,Infrastructure +434613,Infrastructure,Infrastructure +434612,Infrastructure,Infrastructure +434611,Infrastructure,Infrastructure +434610,Infrastructure,Infrastructure +434609,Infrastructure,Infrastructure +434608,Infrastructure,Infrastructure +434607,Infrastructure,Infrastructure +434606,Infrastructure,Infrastructure +434605,Infrastructure,Infrastructure +434604,Infrastructure,Infrastructure +434603,Infrastructure,Infrastructure +434602,Infrastructure,Infrastructure +434601,Infrastructure,Infrastructure +434599,Infrastructure,Infrastructure +434598,Infrastructure,Infrastructure +434597,Infrastructure,Infrastructure +434596,Infrastructure,Infrastructure +434595,Infrastructure,Infrastructure +434592,Infrastructure,Infrastructure +434591,Infrastructure,Infrastructure +434590,Infrastructure,Infrastructure +434588,Infrastructure,Infrastructure +434587,Infrastructure,Infrastructure +434586,Infrastructure,Infrastructure +434585,Infrastructure,Infrastructure +434584,Infrastructure,Infrastructure +434582,Infrastructure,Infrastructure +433414,Infrastructure,Infrastructure +433413,Infrastructure,Infrastructure +433411,Infrastructure,Infrastructure +433399,Infrastructure,Infrastructure +542404,Infrastructure,Infrastructure +542403,Infrastructure,Infrastructure +542402,Infrastructure,Infrastructure +542401,Infrastructure,Infrastructure +542400,Infrastructure,Infrastructure +542399,Infrastructure,Infrastructure +542398,Infrastructure,Infrastructure +542397,Infrastructure,Infrastructure +542396,Infrastructure,Infrastructure +542395,Infrastructure,Infrastructure +536529,Infrastructure,Infrastructure +536206,Infrastructure,Infrastructure +530725,Infrastructure,Infrastructure +530723,Infrastructure,Infrastructure +513455,Infrastructure,Infrastructure +511834,Infrastructure,Infrastructure +511833,Infrastructure,Infrastructure +511832,Infrastructure,Infrastructure +506253,Infrastructure,Infrastructure +504516,Infrastructure,Infrastructure +504512,Infrastructure,Infrastructure +500692,Infrastructure,Infrastructure +499261,Infrastructure,Infrastructure +498815,Infrastructure,Infrastructure +494819,Infrastructure,Infrastructure +493661,Infrastructure,Infrastructure +493489,Infrastructure,Infrastructure +493160,Infrastructure,Infrastructure +491956,Infrastructure,Infrastructure +488712,Infrastructure,Infrastructure +486841,Infrastructure,Infrastructure +486840,Infrastructure,Infrastructure +483765,Infrastructure,Infrastructure +482894,Infrastructure,Infrastructure +482893,Infrastructure,Infrastructure +482892,Infrastructure,Infrastructure +480818,Infrastructure,Infrastructure +480817,Infrastructure,Infrastructure +480815,Infrastructure,Infrastructure +480813,Infrastructure,Infrastructure +480812,Infrastructure,Infrastructure +480811,Infrastructure,Infrastructure +480810,Infrastructure,Infrastructure +479482,Infrastructure,Infrastructure +479449,Infrastructure,Infrastructure +480812,Taxation and Finance,Taxation and Finance +480811,Taxation and Finance,Taxation and Finance +498815,Taxation and Finance,Taxation and Finance +494819,Taxation and Finance,Taxation and Finance +493661,Taxation and Finance,Taxation and Finance +493160,Taxation and Finance,Taxation and Finance +491956,Taxation and Finance,Taxation and Finance +488712,Taxation and Finance,Taxation and Finance +486841,Taxation and Finance,Taxation and Finance +486840,Taxation and Finance,Taxation and Finance +483765,Taxation and Finance,Taxation and Finance +482894,Taxation and Finance,Taxation and Finance +482893,Taxation and Finance,Taxation and Finance +482892,Taxation and Finance,Taxation and Finance +480818,Taxation and Finance,Taxation and Finance +480817,Taxation and Finance,Taxation and Finance +480815,Taxation and Finance,Taxation and Finance +491956,Transportation,Transportation +488712,Transportation,Transportation +75617,Transportation,Transportation +146315,Transportation,Transportation +112336,Transportation,Transportation +106063,Transportation,Transportation +167494,Transportation,Transportation +167493,Transportation,Transportation +167492,Transportation,Transportation +167491,Transportation,Transportation +167489,Transportation,Transportation +167488,Transportation,Transportation +167487,Transportation,Transportation +167486,Transportation,Transportation +167485,Transportation,Transportation +167484,Transportation,Transportation +167483,Transportation,Transportation +167482,Transportation,Transportation +167481,Transportation,Transportation +167480,Transportation,Transportation +167479,Transportation,Transportation +167478,Transportation,Transportation +167477,Transportation,Transportation +167476,Transportation,Transportation +167474,Transportation,Transportation +167473,Transportation,Transportation +167400,Transportation,Transportation +167399,Transportation,Transportation +167397,Transportation,Transportation +167396,Transportation,Transportation +167394,Transportation,Transportation +167393,Transportation,Transportation +167381,Transportation,Transportation +167378,Transportation,Transportation +167373,Transportation,Transportation +165906,Transportation,Transportation +161407,Transportation,Transportation +161405,Transportation,Transportation +159218,Transportation,Transportation +159216,Transportation,Transportation +159213,Transportation,Transportation +254153,Transportation,Transportation +254151,Transportation,Transportation +254150,Transportation,Transportation +254149,Transportation,Transportation +249545,Transportation,Transportation +249544,Transportation,Transportation +245523,Transportation,Transportation +245518,Transportation,Transportation +241148,Transportation,Transportation +241143,Transportation,Transportation +241140,Transportation,Transportation +241132,Transportation,Transportation +238050,Transportation,Transportation +238049,Transportation,Transportation +233830,Transportation,Transportation +228890,Transportation,Transportation +228889,Transportation,Transportation +217508,Transportation,Transportation +212056,Transportation,Transportation +212055,Transportation,Transportation +212054,Transportation,Transportation +212053,Transportation,Transportation +212052,Transportation,Transportation +212051,Transportation,Transportation +212050,Transportation,Transportation +212049,Transportation,Transportation +212048,Transportation,Transportation +212046,Transportation,Transportation +212045,Transportation,Transportation +212044,Transportation,Transportation +212043,Transportation,Transportation +212042,Transportation,Transportation +212040,Transportation,Transportation +212039,Transportation,Transportation +212038,Transportation,Transportation +212034,Transportation,Transportation +212033,Transportation,Transportation +212031,Transportation,Transportation +212028,Transportation,Transportation +212024,Transportation,Transportation +212021,Transportation,Transportation +212019,Transportation,Transportation +212015,Transportation,Transportation +211997,Transportation,Transportation +211993,Transportation,Transportation +199934,Transportation,Transportation +190166,Transportation,Transportation +190164,Transportation,Transportation +190144,Transportation,Transportation +186929,Transportation,Transportation +186928,Transportation,Transportation +186927,Transportation,Transportation +179884,Transportation,Transportation +179864,Transportation,Transportation +179824,Transportation,Transportation +170154,Transportation,Transportation +170153,Transportation,Transportation +170152,Transportation,Transportation +167497,Transportation,Transportation +167496,Transportation,Transportation +167495,Transportation,Transportation +381245,Transportation,Transportation +381241,Transportation,Transportation +381046,Transportation,Transportation +379059,Transportation,Transportation +379058,Transportation,Transportation +379057,Transportation,Transportation +379054,Transportation,Transportation +379049,Transportation,Transportation +375735,Transportation,Transportation +375734,Transportation,Transportation +375733,Transportation,Transportation +375729,Transportation,Transportation +375727,Transportation,Transportation +373803,Transportation,Transportation +373802,Transportation,Transportation +373801,Transportation,Transportation +373800,Transportation,Transportation +373771,Transportation,Transportation +373770,Transportation,Transportation +370549,Transportation,Transportation +368986,Transportation,Transportation +368985,Transportation,Transportation +368984,Transportation,Transportation +368983,Transportation,Transportation +365956,Transportation,Transportation +364522,Transportation,Transportation +359292,Transportation,Transportation +357904,Transportation,Transportation +356024,Transportation,Transportation +356023,Transportation,Transportation +356022,Transportation,Transportation +356019,Transportation,Transportation +356018,Transportation,Transportation +356014,Transportation,Transportation +356013,Transportation,Transportation +356012,Transportation,Transportation +356011,Transportation,Transportation +356010,Transportation,Transportation +352921,Transportation,Transportation +348741,Transportation,Transportation +348733,Transportation,Transportation +348730,Transportation,Transportation +348725,Transportation,Transportation +345977,Transportation,Transportation +345957,Transportation,Transportation +343260,Transportation,Transportation +343259,Transportation,Transportation +343258,Transportation,Transportation +340541,Transportation,Transportation +340339,Transportation,Transportation +336404,Transportation,Transportation +335786,Transportation,Transportation +333835,Transportation,Transportation +328573,Transportation,Transportation +325043,Transportation,Transportation +325040,Transportation,Transportation +325037,Transportation,Transportation +325034,Transportation,Transportation +325029,Transportation,Transportation +325026,Transportation,Transportation +322034,Transportation,Transportation +322033,Transportation,Transportation +322032,Transportation,Transportation +322031,Transportation,Transportation +322030,Transportation,Transportation +318441,Transportation,Transportation +318440,Transportation,Transportation +318437,Transportation,Transportation +318436,Transportation,Transportation +318435,Transportation,Transportation +318434,Transportation,Transportation +318433,Transportation,Transportation +317993,Transportation,Transportation +317991,Transportation,Transportation +313127,Transportation,Transportation +313124,Transportation,Transportation +313123,Transportation,Transportation +313121,Transportation,Transportation +313119,Transportation,Transportation +313116,Transportation,Transportation +313115,Transportation,Transportation +313114,Transportation,Transportation +313113,Transportation,Transportation +313111,Transportation,Transportation +313110,Transportation,Transportation +313109,Transportation,Transportation +313107,Transportation,Transportation +313105,Transportation,Transportation +313101,Transportation,Transportation +313099,Transportation,Transportation +313098,Transportation,Transportation +313096,Transportation,Transportation +313095,Transportation,Transportation +313094,Transportation,Transportation +313092,Transportation,Transportation +313086,Transportation,Transportation +313080,Transportation,Transportation +292153,Transportation,Transportation +292152,Transportation,Transportation +292151,Transportation,Transportation +292149,Transportation,Transportation +280371,Transportation,Transportation +277913,Transportation,Transportation +269064,Transportation,Transportation +269060,Transportation,Transportation +269055,Transportation,Transportation +264475,Transportation,Transportation +264473,Transportation,Transportation +264470,Transportation,Transportation +264468,Transportation,Transportation +264423,Transportation,Transportation +264418,Transportation,Transportation +264416,Transportation,Transportation +264414,Transportation,Transportation +264413,Transportation,Transportation +264411,Transportation,Transportation +264409,Transportation,Transportation +264406,Transportation,Transportation +264404,Transportation,Transportation +480818,Transportation,Transportation +480817,Transportation,Transportation +480815,Transportation,Transportation +480813,Transportation,Transportation +480812,Transportation,Transportation +480811,Transportation,Transportation +480810,Transportation,Transportation +479482,Transportation,Transportation +475483,Transportation,Transportation +475474,Transportation,Transportation +475469,Transportation,Transportation +473828,Transportation,Transportation +473814,Transportation,Transportation +468692,Transportation,Transportation +461311,Transportation,Transportation +461310,Transportation,Transportation +451282,Transportation,Transportation +447465,Transportation,Transportation +447458,Transportation,Transportation +447457,Transportation,Transportation +447450,Transportation,Transportation +447371,Transportation,Transportation +445547,Transportation,Transportation +443223,Transportation,Transportation +443221,Transportation,Transportation +443220,Transportation,Transportation +434638,Transportation,Transportation +434637,Transportation,Transportation +434636,Transportation,Transportation +434635,Transportation,Transportation +434634,Transportation,Transportation +434633,Transportation,Transportation +434632,Transportation,Transportation +434631,Transportation,Transportation +434630,Transportation,Transportation +434629,Transportation,Transportation +434628,Transportation,Transportation +434627,Transportation,Transportation +434626,Transportation,Transportation +434625,Transportation,Transportation +434624,Transportation,Transportation +434622,Transportation,Transportation +434621,Transportation,Transportation +434620,Transportation,Transportation +434619,Transportation,Transportation +434618,Transportation,Transportation +434617,Transportation,Transportation +434616,Transportation,Transportation +434615,Transportation,Transportation +434614,Transportation,Transportation +434613,Transportation,Transportation +434612,Transportation,Transportation +434611,Transportation,Transportation +434610,Transportation,Transportation +434609,Transportation,Transportation +434608,Transportation,Transportation +434607,Transportation,Transportation +434606,Transportation,Transportation +434605,Transportation,Transportation +434604,Transportation,Transportation +434603,Transportation,Transportation +434602,Transportation,Transportation +434601,Transportation,Transportation +434599,Transportation,Transportation +434598,Transportation,Transportation +434597,Transportation,Transportation +434596,Transportation,Transportation +434595,Transportation,Transportation +434592,Transportation,Transportation +434591,Transportation,Transportation +434590,Transportation,Transportation +434588,Transportation,Transportation +434587,Transportation,Transportation +434586,Transportation,Transportation +434585,Transportation,Transportation +434584,Transportation,Transportation +434582,Transportation,Transportation +433413,Transportation,Transportation +433411,Transportation,Transportation +433401,Transportation,Transportation +433399,Transportation,Transportation +433398,Transportation,Transportation +427800,Transportation,Transportation +423001,Transportation,Transportation +420799,Transportation,Transportation +418900,Transportation,Transportation +417545,Transportation,Transportation +414547,Transportation,Transportation +412011,Transportation,Transportation +412010,Transportation,Transportation +409446,Transportation,Transportation +409372,Transportation,Transportation +409370,Transportation,Transportation +409369,Transportation,Transportation +409368,Transportation,Transportation +409367,Transportation,Transportation +409366,Transportation,Transportation +409365,Transportation,Transportation +409364,Transportation,Transportation +409363,Transportation,Transportation +409362,Transportation,Transportation +409361,Transportation,Transportation +409360,Transportation,Transportation +409353,Transportation,Transportation +409351,Transportation,Transportation +409348,Transportation,Transportation +409345,Transportation,Transportation +409339,Transportation,Transportation +409338,Transportation,Transportation +409337,Transportation,Transportation +409336,Transportation,Transportation +409335,Transportation,Transportation +409334,Transportation,Transportation +409332,Transportation,Transportation +409330,Transportation,Transportation +409329,Transportation,Transportation +409328,Transportation,Transportation +409327,Transportation,Transportation +409324,Transportation,Transportation +409322,Transportation,Transportation +409321,Transportation,Transportation +409319,Transportation,Transportation +409316,Transportation,Transportation +409315,Transportation,Transportation +409314,Transportation,Transportation +409312,Transportation,Transportation +409311,Transportation,Transportation +409309,Transportation,Transportation +409308,Transportation,Transportation +409307,Transportation,Transportation +409306,Transportation,Transportation +409305,Transportation,Transportation +409303,Transportation,Transportation +409302,Transportation,Transportation +409300,Transportation,Transportation +409297,Transportation,Transportation +409294,Transportation,Transportation +409291,Transportation,Transportation +409290,Transportation,Transportation +409289,Transportation,Transportation +409192,Transportation,Transportation +409191,Transportation,Transportation +409190,Transportation,Transportation +409189,Transportation,Transportation +409188,Transportation,Transportation +409187,Transportation,Transportation +409185,Transportation,Transportation +409184,Transportation,Transportation +409182,Transportation,Transportation +409179,Transportation,Transportation +409178,Transportation,Transportation +409177,Transportation,Transportation +409176,Transportation,Transportation +402032,Transportation,Transportation +402030,Transportation,Transportation +402029,Transportation,Transportation +402028,Transportation,Transportation +402027,Transportation,Transportation +402026,Transportation,Transportation +402025,Transportation,Transportation +397894,Transportation,Transportation +397893,Transportation,Transportation +392223,Transportation,Transportation +392222,Transportation,Transportation +392220,Transportation,Transportation +392219,Transportation,Transportation +389228,Transportation,Transportation +389227,Transportation,Transportation +389226,Transportation,Transportation +389225,Transportation,Transportation +386431,Transportation,Transportation +385976,Transportation,Transportation +385974,Transportation,Transportation +385128,Transportation,Transportation +385124,Transportation,Transportation +385121,Transportation,Transportation +385118,Transportation,Transportation +385117,Transportation,Transportation +385114,Transportation,Transportation +385111,Transportation,Transportation +385109,Transportation,Transportation +385106,Transportation,Transportation +385104,Transportation,Transportation +385101,Transportation,Transportation +385082,Transportation,Transportation +385071,Transportation,Transportation +385068,Transportation,Transportation +385061,Transportation,Transportation +385060,Transportation,Transportation +385059,Transportation,Transportation +385058,Transportation,Transportation +385057,Transportation,Transportation +383037,Transportation,Transportation +383036,Transportation,Transportation +381249,Transportation,Transportation +536206,Transportation,Transportation +513455,Transportation,Transportation +511834,Transportation,Transportation +511833,Transportation,Transportation +511832,Transportation,Transportation +504519,Transportation,Transportation +500692,Transportation,Transportation +500682,Transportation,Transportation +499261,Transportation,Transportation +498815,Transportation,Transportation +494819,Transportation,Transportation +493972,Transportation,Transportation +493661,Transportation,Transportation +493489,Transportation,Transportation +166211,Environment,Environment +197627,Environment,Environment +76337,Environment,Environment +100879,Consumer Issues,Consumer Issues +100878,Consumer Issues,Consumer Issues +100875,Consumer Issues,Consumer Issues +152241,Labour,Labour +152234,Labour,Labour +150340,Labour,Labour +132398,Transportation,Transportation +132395,Transportation,Transportation +114101,Transportation,Transportation +156984,Transportation,Transportation +150342,Transportation,Transportation +150341,Transportation,Transportation +146016,Transportation,Transportation +146014,Transportation,Transportation +146013,Transportation,Transportation +146012,Transportation,Transportation +146011,Transportation,Transportation +146008,Transportation,Transportation +146001,Transportation,Transportation +145990,Transportation,Transportation +145982,Transportation,Transportation +139176,Transportation,Transportation +534709,Environment,Environment +534533,Environment,Environment +157934,Environment,Environment +425387,Environment,Environment +401873,Environment,Environment +331177,Environment,Environment +536086,Environment,Environment +377809,Fisheries,Fisheries +377806,Fisheries,Fisheries +534709,Industry,Industry +534533,Industry,Industry +157933,Industry,Industry +274336,Industry,Industry +226865,Industry,Industry +536086,Infrastructure,Infrastructure +535395,Infrastructure,Infrastructure +377254,Infrastructure,Infrastructure +274336,Infrastructure,Infrastructure +534724,Infrastructure,Infrastructure +534535,Infrastructure,Infrastructure +534479,Infrastructure,Infrastructure +509307,Infrastructure,Infrastructure +506877,Infrastructure,Infrastructure +500405,Infrastructure,Infrastructure +500404,Infrastructure,Infrastructure +497587,Infrastructure,Infrastructure +535384,Regional Development,Regional Development +328409,Regional Development,Regional Development +509307,Regional Development,Regional Development +377801,Small Business,Small Business +377254,Small Business,Small Business +328423,Small Business,Small Business +463675,Small Business,Small Business +442900,Small Business,Small Business +442880,Small Business,Small Business +442879,Small Business,Small Business +425387,Small Business,Small Business +386990,Small Business,Small Business +377818,Small Business,Small Business +377816,Small Business,Small Business +377810,Small Business,Small Business +377809,Small Business,Small Business +377806,Small Business,Small Business +442880,Taxation and Finance,Taxation and Finance +442879,Taxation and Finance,Taxation and Finance +299229,Taxation and Finance,Taxation and Finance +352321,Taxation and Finance,Taxation and Finance +328428,Taxation and Finance,Taxation and Finance +328427,Taxation and Finance,Taxation and Finance +538800,Taxation and Finance,Taxation and Finance +536086,Taxation and Finance,Taxation and Finance +535403,Taxation and Finance,Taxation and Finance +535395,Taxation and Finance,Taxation and Finance +534724,Taxation and Finance,Taxation and Finance +534535,Taxation and Finance,Taxation and Finance +534488,Taxation and Finance,Taxation and Finance +534486,Taxation and Finance,Taxation and Finance +534479,Taxation and Finance,Taxation and Finance +534470,Taxation and Finance,Taxation and Finance +534467,Taxation and Finance,Taxation and Finance +533938,Taxation and Finance,Taxation and Finance +533937,Taxation and Finance,Taxation and Finance +533936,Taxation and Finance,Taxation and Finance +533935,Taxation and Finance,Taxation and Finance +533932,Taxation and Finance,Taxation and Finance +533927,Taxation and Finance,Taxation and Finance +533925,Taxation and Finance,Taxation and Finance +533714,Taxation and Finance,Taxation and Finance +528198,Taxation and Finance,Taxation and Finance +520496,Taxation and Finance,Taxation and Finance +520290,Taxation and Finance,Taxation and Finance +520288,Taxation and Finance,Taxation and Finance +520287,Taxation and Finance,Taxation and Finance +518720,Taxation and Finance,Taxation and Finance +518719,Taxation and Finance,Taxation and Finance +518718,Taxation and Finance,Taxation and Finance +518717,Taxation and Finance,Taxation and Finance +518716,Taxation and Finance,Taxation and Finance +506877,Taxation and Finance,Taxation and Finance +504619,Taxation and Finance,Taxation and Finance +504618,Taxation and Finance,Taxation and Finance +497587,Taxation and Finance,Taxation and Finance +485461,Taxation and Finance,Taxation and Finance +467198,Taxation and Finance,Taxation and Finance +466483,Taxation and Finance,Taxation and Finance +466482,Taxation and Finance,Taxation and Finance +466481,Taxation and Finance,Taxation and Finance +466480,Taxation and Finance,Taxation and Finance +466479,Taxation and Finance,Taxation and Finance +466477,Taxation and Finance,Taxation and Finance +466474,Taxation and Finance,Taxation and Finance +466473,Taxation and Finance,Taxation and Finance +466472,Taxation and Finance,Taxation and Finance +466454,Taxation and Finance,Taxation and Finance +466453,Taxation and Finance,Taxation and Finance +466451,Taxation and Finance,Taxation and Finance +466450,Taxation and Finance,Taxation and Finance +466449,Taxation and Finance,Taxation and Finance +466448,Taxation and Finance,Taxation and Finance +466447,Taxation and Finance,Taxation and Finance +466443,Taxation and Finance,Taxation and Finance +466442,Taxation and Finance,Taxation and Finance +466441,Taxation and Finance,Taxation and Finance +466434,Taxation and Finance,Taxation and Finance +463677,Taxation and Finance,Taxation and Finance +463675,Taxation and Finance,Taxation and Finance +463051,Taxation and Finance,Taxation and Finance +497587,Tourism,Tourism +485461,Tourism,Tourism +328430,Tourism,Tourism +328428,Tourism,Tourism +328424,Tourism,Tourism +274348,Tourism,Tourism +274347,Tourism,Tourism +274338,Tourism,Tourism +274333,Tourism,Tourism +200708,Tourism,Tourism +200707,Tourism,Tourism +200684,Tourism,Tourism +180704,Tourism,Tourism +386990,Tourism,Tourism +377818,Tourism,Tourism +377816,Tourism,Tourism +377814,Tourism,Tourism +377812,Tourism,Tourism +377810,Tourism,Tourism +377809,Tourism,Tourism +377807,Tourism,Tourism +377805,Tourism,Tourism +377803,Tourism,Tourism +377801,Tourism,Tourism +377254,Tourism,Tourism +356978,Tourism,Tourism +352321,Tourism,Tourism +442900,Tourism,Tourism +425387,Tourism,Tourism +401873,Tourism,Tourism +534470,Tourism,Tourism +534467,Tourism,Tourism +533938,Tourism,Tourism +509307,Tourism,Tourism +500405,Tourism,Tourism +534488,Transportation,Transportation +534482,Transportation,Transportation +157935,Transportation,Transportation +157933,Transportation,Transportation +101795,Transportation,Transportation +101794,Transportation,Transportation +226875,Transportation,Transportation +226874,Transportation,Transportation +226873,Transportation,Transportation +226872,Transportation,Transportation +226871,Transportation,Transportation +226869,Transportation,Transportation +226868,Transportation,Transportation +226867,Transportation,Transportation +226866,Transportation,Transportation +226864,Transportation,Transportation +226863,Transportation,Transportation +226862,Transportation,Transportation +226856,Transportation,Transportation +200708,Transportation,Transportation +200707,Transportation,Transportation +200684,Transportation,Transportation +180724,Transportation,Transportation +377812,Transportation,Transportation +377810,Transportation,Transportation +377807,Transportation,Transportation +377806,Transportation,Transportation +377805,Transportation,Transportation +377802,Transportation,Transportation +377254,Transportation,Transportation +356978,Transportation,Transportation +337470,Transportation,Transportation +337469,Transportation,Transportation +328430,Transportation,Transportation +328429,Transportation,Transportation +328428,Transportation,Transportation +328427,Transportation,Transportation +328426,Transportation,Transportation +328425,Transportation,Transportation +328424,Transportation,Transportation +328423,Transportation,Transportation +328422,Transportation,Transportation +328421,Transportation,Transportation +328420,Transportation,Transportation +328419,Transportation,Transportation +328418,Transportation,Transportation +328417,Transportation,Transportation +328413,Transportation,Transportation +328412,Transportation,Transportation +328411,Transportation,Transportation +328410,Transportation,Transportation +299230,Transportation,Transportation +274350,Transportation,Transportation +274349,Transportation,Transportation +274348,Transportation,Transportation +274347,Transportation,Transportation +274346,Transportation,Transportation +274345,Transportation,Transportation +274344,Transportation,Transportation +274343,Transportation,Transportation +274342,Transportation,Transportation +274341,Transportation,Transportation +274340,Transportation,Transportation +274339,Transportation,Transportation +274338,Transportation,Transportation +274337,Transportation,Transportation +274336,Transportation,Transportation +274335,Transportation,Transportation +274334,Transportation,Transportation +274333,Transportation,Transportation +274332,Transportation,Transportation +274330,Transportation,Transportation +274329,Transportation,Transportation +226876,Transportation,Transportation +506877,Transportation,Transportation +497591,Transportation,Transportation +497587,Transportation,Transportation +497585,Transportation,Transportation +494040,Transportation,Transportation +485457,Transportation,Transportation +425387,Transportation,Transportation +401873,Transportation,Transportation +386994,Transportation,Transportation +386992,Transportation,Transportation +542171,Transportation,Transportation +538800,Transportation,Transportation +535403,Transportation,Transportation +535395,Transportation,Transportation +534724,Transportation,Transportation +99955,Financial Institutions,Financial Institutions +99934,Financial Institutions,Financial Institutions +168106,Education,Education +168097,Education,Education +162713,Education,Education +156845,Education,Education +156843,Education,Education +156841,Education,Education +156840,Education,Education +154526,Education,Education +152601,Education,Education +152600,Education,Education +152598,Education,Education +152597,Education,Education +146053,Education,Education +144514,Education,Education +144501,Education,Education +144500,Education,Education +144498,Education,Education +144496,Education,Education +385406,Education,Education +381803,Education,Education +381802,Education,Education +381702,Education,Education +367546,Education,Education +359303,Education,Education +359302,Education,Education +348702,Education,Education +346762,Education,Education +335608,Education,Education +335605,Education,Education +333834,Education,Education +328470,Education,Education +319249,Education,Education +310297,Education,Education +310295,Education,Education +310290,Education,Education +310286,Education,Education +310024,Education,Education +310022,Education,Education +259990,Education,Education +259989,Education,Education +240601,Education,Education +240600,Education,Education +240599,Education,Education +219067,Education,Education +199863,Education,Education +199861,Education,Education +188504,Education,Education +188405,Education,Education +187646,Education,Education +187645,Education,Education +187644,Education,Education +533047,Education,Education +462965,Education,Education +460814,Education,Education +460305,Education,Education +460304,Education,Education +448938,Education,Education +448934,Education,Education +428546,Education,Education +414228,Education,Education +414227,Education,Education +407094,Education,Education +407093,Education,Education +404232,Education,Education +393735,Education,Education +393154,Education,Education +393090,Education,Education +393089,Education,Education +448936,Employment and Training,Employment and Training +448934,Employment and Training,Employment and Training +162713,Employment and Training,Employment and Training +187645,Employment and Training,Employment and Training +187644,Employment and Training,Employment and Training +187645,Industry,Industry +187644,Industry,Industry +146053,Industry,Industry +156841,Industry,Industry +156840,Industry,Industry +152598,Industry,Industry +152597,Industry,Industry +328470,Industry,Industry +240601,Industry,Industry +240600,Industry,Industry +240599,Industry,Industry +199861,Industry,Industry +188504,Industry,Industry +187644,Intellectual Property,Intellectual Property +310297,Taxation and Finance,Taxation and Finance +310022,Taxation and Finance,Taxation and Finance +156841,Taxation and Finance,Taxation and Finance +93780,Energy,Energy +89796,Energy,Energy +89355,Energy,Energy +89354,Energy,Energy +86895,Energy,Energy +86874,Energy,Energy +84906,Energy,Energy +84903,Energy,Energy +78614,Energy,Energy +76877,Energy,Energy +76875,Energy,Energy +97217,Energy,Energy +97215,Energy,Energy +187387,Defence,Defence +407579,Defence,Defence +130795,Defence,Defence +126257,Defence,Defence +125694,Defence,Defence +448581,Environment,Environment +533045,Environment,Environment +404539,Environment,Environment +516943,Environment,Environment +511220,Government Procurement,Government Procurement +496875,Government Procurement,Government Procurement +126274,Government Procurement,Government Procurement +125696,Government Procurement,Government Procurement +110659,Government Procurement,Government Procurement +427195,Government Procurement,Government Procurement +527453,Government Procurement,Government Procurement +526966,Government Procurement,Government Procurement +526965,Government Procurement,Government Procurement +523802,Government Procurement,Government Procurement +511681,Health,Health +511665,Health,Health +326492,Health,Health +240409,Health,Health +468996,Health,Health +450237,Health,Health +436336,Health,Health +354362,Health,Health +526966,Health,Health +526965,Health,Health +520285,Health,Health +409125,Industry,Industry +402202,Industry,Industry +125694,Industry,Industry +316696,Industry,Industry +316695,Industry,Industry +316694,Industry,Industry +316693,Industry,Industry +316692,Industry,Industry +316690,Industry,Industry +311391,Industry,Industry +311390,Industry,Industry +311389,Industry,Industry +289231,Industry,Industry +289230,Industry,Industry +228869,Industry,Industry +228855,Industry,Industry +228854,Industry,Industry +386428,Industry,Industry +374567,Industry,Industry +374563,Industry,Industry +367222,Industry,Industry +350861,Industry,Industry +350860,Industry,Industry +350856,Industry,Industry +350853,Industry,Industry +350851,Industry,Industry +350847,Industry,Industry +350838,Industry,Industry +350835,Industry,Industry +350832,Industry,Industry +337602,Industry,Industry +337601,Industry,Industry +337600,Industry,Industry +337599,Industry,Industry +337597,Industry,Industry +337596,Industry,Industry +337595,Industry,Industry +337594,Industry,Industry +323409,Industry,Industry +516926,Industry,Industry +516500,Industry,Industry +515015,Industry,Industry +514871,Industry,Industry +511220,Industry,Industry +500788,Industry,Industry +500787,Industry,Industry +500786,Industry,Industry +477795,Industry,Industry +477794,Industry,Industry +471531,Industry,Industry +459036,Industry,Industry +452087,Industry,Industry +451292,Industry,Industry +445271,Industry,Industry +440753,Industry,Industry +436960,Industry,Industry +436959,Industry,Industry +436958,Industry,Industry +436957,Industry,Industry +353685,Health,Health +350999,Health,Health +151238,Health,Health +151237,Health,Health +234911,Health,Health +234910,Health,Health +234909,Health,Health +328074,Health,Health +322780,Health,Health +317829,Health,Health +311203,Health,Health +311201,Health,Health +311200,Health,Health +289633,Health,Health +274509,Health,Health +267229,Health,Health +264272,Health,Health +261729,Health,Health +242249,Health,Health +411562,Health,Health +388169,Health,Health +384578,Health,Health +384577,Health,Health +384444,Health,Health +384217,Health,Health +383210,Health,Health +383094,Health,Health +383093,Health,Health +382951,Health,Health +380219,Health,Health +377667,Health,Health +375690,Health,Health +375688,Health,Health +375196,Health,Health +375195,Health,Health +374808,Health,Health +374172,Health,Health +373754,Health,Health +373187,Health,Health +373167,Health,Health +373040,Health,Health +373039,Health,Health +370947,Health,Health +370636,Health,Health +370152,Health,Health +369916,Health,Health +368697,Health,Health +368587,Health,Health +368303,Health,Health +367987,Health,Health +367986,Health,Health +367985,Health,Health +365011,Health,Health +359814,Health,Health +358431,Health,Health +353736,Health,Health +382951,Industry,Industry +380219,Industry,Industry +264272,Industry,Industry +377667,Industry,Industry +375690,Industry,Industry +375688,Industry,Industry +375196,Industry,Industry +375195,Industry,Industry +374808,Industry,Industry +374172,Industry,Industry +373754,Industry,Industry +373187,Industry,Industry +373167,Industry,Industry +373040,Industry,Industry +370947,Industry,Industry +370636,Industry,Industry +370152,Industry,Industry +369916,Industry,Industry +368697,Industry,Industry +368587,Industry,Industry +368303,Industry,Industry +367987,Industry,Industry +367986,Industry,Industry +367985,Industry,Industry +359814,Industry,Industry +358431,Industry,Industry +353736,Industry,Industry +353731,Industry,Industry +353685,Industry,Industry +350999,Industry,Industry +411562,Industry,Industry +388169,Industry,Industry +384578,Industry,Industry +384577,Industry,Industry +384444,Industry,Industry +384217,Industry,Industry +383210,Industry,Industry +383094,Industry,Industry +388169,Intellectual Property,Intellectual Property +384217,Intellectual Property,Intellectual Property +375196,Intellectual Property,Intellectual Property +375195,Intellectual Property,Intellectual Property +374808,Intellectual Property,Intellectual Property +374172,Intellectual Property,Intellectual Property +373754,Intellectual Property,Intellectual Property +373187,Intellectual Property,Intellectual Property +373167,Intellectual Property,Intellectual Property +373040,Intellectual Property,Intellectual Property +373039,Intellectual Property,Intellectual Property +370636,Intellectual Property,Intellectual Property +370152,Intellectual Property,Intellectual Property +365011,Intellectual Property,Intellectual Property +353736,Intellectual Property,Intellectual Property +353731,Intellectual Property,Intellectual Property +516779,Agriculture,Agriculture +512305,Agriculture,Agriculture +144795,Agriculture,Agriculture +144794,Agriculture,Agriculture +144775,Agriculture,Agriculture +115614,Agriculture,Agriculture +115494,Agriculture,Agriculture +114438,Agriculture,Agriculture +100680,Agriculture,Agriculture +100675,Agriculture,Agriculture +100674,Agriculture,Agriculture +182284,Agriculture,Agriculture +169610,Agriculture,Agriculture +169609,Agriculture,Agriculture +169608,Agriculture,Agriculture +166380,Agriculture,Agriculture +166379,Agriculture,Agriculture +166378,Agriculture,Agriculture +155087,Agriculture,Agriculture +145695,Agriculture,Agriculture +145691,Agriculture,Agriculture +144815,Agriculture,Agriculture +144814,Agriculture,Agriculture +283553,Agriculture,Agriculture +283551,Agriculture,Agriculture +283549,Agriculture,Agriculture +269191,Agriculture,Agriculture +269189,Agriculture,Agriculture +269170,Agriculture,Agriculture +269158,Agriculture,Agriculture +269153,Agriculture,Agriculture +269129,Agriculture,Agriculture +264520,Agriculture,Agriculture +264507,Agriculture,Agriculture +264431,Agriculture,Agriculture +264427,Agriculture,Agriculture +264421,Agriculture,Agriculture +228892,Agriculture,Agriculture +228853,Agriculture,Agriculture +228849,Agriculture,Agriculture +395227,Agriculture,Agriculture +395226,Agriculture,Agriculture +395225,Agriculture,Agriculture +391760,Agriculture,Agriculture +388037,Agriculture,Agriculture +384901,Agriculture,Agriculture +331775,Agriculture,Agriculture +509907,Agriculture,Agriculture +506168,Agriculture,Agriculture +493894,Agriculture,Agriculture +488296,Agriculture,Agriculture +464538,Agriculture,Agriculture +464536,Agriculture,Agriculture +464535,Agriculture,Agriculture +464534,Agriculture,Agriculture +464531,Agriculture,Agriculture +464529,Agriculture,Agriculture +464523,Agriculture,Agriculture +461951,Agriculture,Agriculture +459452,Agriculture,Agriculture +459449,Agriculture,Agriculture +459447,Agriculture,Agriculture +457475,Agriculture,Agriculture +456247,Agriculture,Agriculture +452710,Agriculture,Agriculture +452708,Agriculture,Agriculture +449695,Agriculture,Agriculture +449642,Agriculture,Agriculture +449641,Agriculture,Agriculture +449640,Agriculture,Agriculture +445351,Agriculture,Agriculture +442930,Agriculture,Agriculture +442598,Agriculture,Agriculture +442597,Agriculture,Agriculture +439623,Agriculture,Agriculture +439622,Agriculture,Agriculture +439621,Agriculture,Agriculture +439016,Agriculture,Agriculture +435731,Agriculture,Agriculture +435723,Agriculture,Agriculture +435676,Agriculture,Agriculture +435673,Agriculture,Agriculture +435670,Agriculture,Agriculture +430754,Agriculture,Agriculture +430751,Agriculture,Agriculture +430747,Agriculture,Agriculture +430707,Agriculture,Agriculture +430706,Agriculture,Agriculture +428659,Agriculture,Agriculture +428657,Agriculture,Agriculture +428384,Agriculture,Agriculture +428380,Agriculture,Agriculture +428379,Agriculture,Agriculture +428373,Agriculture,Agriculture +428370,Agriculture,Agriculture +428367,Agriculture,Agriculture +428363,Agriculture,Agriculture +428359,Agriculture,Agriculture +428355,Agriculture,Agriculture +426430,Agriculture,Agriculture +424337,Agriculture,Agriculture +421855,Agriculture,Agriculture +421851,Agriculture,Agriculture +419618,Agriculture,Agriculture +418969,Agriculture,Agriculture +409055,Agriculture,Agriculture +409054,Agriculture,Agriculture +407575,Agriculture,Agriculture +407573,Agriculture,Agriculture +407570,Agriculture,Agriculture +407290,Agriculture,Agriculture +407289,Agriculture,Agriculture +407288,Agriculture,Agriculture +405070,Agriculture,Agriculture +402611,Agriculture,Agriculture +402606,Agriculture,Agriculture +402604,Agriculture,Agriculture +402601,Agriculture,Agriculture +402599,Agriculture,Agriculture +402598,Agriculture,Agriculture +532036,Agriculture,Agriculture +530561,Agriculture,Agriculture +530559,Agriculture,Agriculture +527071,Agriculture,Agriculture +526764,Agriculture,Agriculture +525503,Agriculture,Agriculture +525501,Agriculture,Agriculture +521194,Agriculture,Agriculture +519918,Agriculture,Agriculture +264507,International Trade,International Trade +228853,International Trade,International Trade +115614,International Trade,International Trade +169609,International Trade,International Trade +169608,International Trade,International Trade +158029,International Trade,International Trade +156264,International Trade,International Trade +156263,International Trade,International Trade +156262,International Trade,International Trade +156261,International Trade,International Trade +144795,International Trade,International Trade +269191,International Trade,International Trade +269189,International Trade,International Trade +269170,International Trade,International Trade +269155,International Trade,International Trade +519917,Labour,Labour +512305,Labour,Labour +331775,Labour,Labour +283553,Labour,Labour +283551,Labour,Labour +283549,Labour,Labour +405069,Labour,Labour +402608,Labour,Labour +395227,Labour,Labour +395225,Labour,Labour +391765,Labour,Labour +384906,Labour,Labour +384901,Labour,Labour +384899,Labour,Labour +384895,Labour,Labour +442597,Labour,Labour +430754,Labour,Labour +430706,Labour,Labour +428377,Labour,Labour +428370,Labour,Labour +428359,Labour,Labour +428355,Labour,Labour +532036,Labour,Labour +169609,Transportation,Transportation +169608,Transportation,Transportation +129617,Transportation,Transportation +161402,Transportation,Transportation +158029,Transportation,Transportation +156264,Transportation,Transportation +156263,Transportation,Transportation +156261,Transportation,Transportation +144794,Transportation,Transportation +144775,Transportation,Transportation +269153,Transportation,Transportation +416714,International Relations,International Relations +520204,International Relations,International Relations +135515,International Relations,International Relations +273004,International Relations,International Relations +272998,International Relations,International Relations +249266,International Relations,International Relations +215767,International Relations,International Relations +215752,International Relations,International Relations +193087,International Relations,International Relations +164270,International Relations,International Relations +164268,International Relations,International Relations +381499,International Relations,International Relations +381495,International Relations,International Relations +381492,International Relations,International Relations +381490,International Relations,International Relations +376912,International Relations,International Relations +338607,International Relations,International Relations +442532,International Relations,International Relations +435494,International Relations,International Relations +423677,International Relations,International Relations +423674,International Relations,International Relations +416737,International Relations,International Relations +416734,International Relations,International Relations +409818,Energy,Energy +408552,Energy,Energy +146824,Energy,Energy +112795,Energy,Energy +80435,Energy,Energy +173664,Energy,Energy +163388,Energy,Energy +154967,Energy,Energy +147274,Energy,Energy +146832,Energy,Energy +146827,Energy,Energy +408514,Energy,Energy +408513,Energy,Energy +402728,Energy,Energy +402724,Energy,Energy +402714,Energy,Energy +402711,Energy,Energy +402709,Energy,Energy +402708,Energy,Energy +402706,Energy,Energy +402702,Energy,Energy +402696,Energy,Energy +402641,Energy,Energy +402640,Energy,Energy +402627,Energy,Energy +393394,Energy,Energy +393335,Energy,Energy +393065,Energy,Energy +388996,Energy,Energy +384028,Energy,Energy +384027,Energy,Energy +383193,Energy,Energy +383190,Energy,Energy +381764,Energy,Energy +380676,Energy,Energy +374453,Energy,Energy +363922,Energy,Energy +358363,Energy,Energy +358362,Energy,Energy +474595,Energy,Energy +474594,Energy,Energy +474593,Energy,Energy +474592,Energy,Energy +474591,Energy,Energy +474590,Energy,Energy +474589,Energy,Energy +474587,Energy,Energy +474586,Energy,Energy +474584,Energy,Energy +474583,Energy,Energy +474582,Energy,Energy +466603,Energy,Energy +463841,Energy,Energy +463840,Energy,Energy +463839,Energy,Energy +463823,Energy,Energy +463822,Energy,Energy +454284,Energy,Energy +448764,Energy,Energy +437177,Energy,Energy +434359,Energy,Energy +434358,Energy,Energy +431679,Energy,Energy +431678,Energy,Energy +427968,Energy,Energy +427940,Energy,Energy +422671,Energy,Energy +411292,Energy,Energy +411290,Energy,Energy +411282,Energy,Energy +411280,Energy,Energy +411279,Energy,Energy +411274,Energy,Energy +410572,Energy,Energy +410570,Energy,Energy +410567,Energy,Energy +410566,Energy,Energy +410565,Energy,Energy +410564,Energy,Energy +410563,Energy,Energy +410561,Energy,Energy +410555,Energy,Energy +454284,Environment,Environment +448764,Environment,Environment +77760,Environment,Environment +163388,Environment,Environment +374453,Environment,Environment +363922,Environment,Environment +358363,Environment,Environment +358362,Environment,Environment +437177,Environment,Environment +434359,Environment,Environment +434358,Environment,Environment +431679,Environment,Environment +431678,Environment,Environment +427968,Environment,Environment +422671,Environment,Environment +410572,Environment,Environment +410564,Environment,Environment +409849,Environment,Environment +409831,Environment,Environment +409818,Environment,Environment +408552,Environment,Environment +408514,Environment,Environment +408513,Environment,Environment +402728,Environment,Environment +402724,Environment,Environment +402714,Environment,Environment +402711,Environment,Environment +402709,Environment,Environment +402708,Environment,Environment +402706,Environment,Environment +402702,Environment,Environment +402696,Environment,Environment +402641,Environment,Environment +402640,Environment,Environment +402627,Environment,Environment +393394,Environment,Environment +393335,Environment,Environment +393065,Environment,Environment +388996,Environment,Environment +384028,Environment,Environment +384027,Environment,Environment +383193,Environment,Environment +383190,Environment,Environment +381764,Environment,Environment +411292,Industry,Industry +409849,Industry,Industry +150937,Consumer Issues,Consumer Issues +147918,Consumer Issues,Consumer Issues +101734,Consumer Issues,Consumer Issues +143934,Consumer Issues,Consumer Issues +118199,Consumer Issues,Consumer Issues +118197,Consumer Issues,Consumer Issues +118195,Consumer Issues,Consumer Issues +118193,Consumer Issues,Consumer Issues +118192,Consumer Issues,Consumer Issues +118190,Consumer Issues,Consumer Issues +118187,Consumer Issues,Consumer Issues +118180,Consumer Issues,Consumer Issues +118175,Consumer Issues,Consumer Issues +118172,Consumer Issues,Consumer Issues +118171,Consumer Issues,Consumer Issues +118164,Consumer Issues,Consumer Issues +118163,Consumer Issues,Consumer Issues +118160,Consumer Issues,Consumer Issues +118155,Consumer Issues,Consumer Issues +118154,Consumer Issues,Consumer Issues +175747,Consumer Issues,Consumer Issues +167647,Consumer Issues,Consumer Issues +167646,Consumer Issues,Consumer Issues +167645,Consumer Issues,Consumer Issues +167643,Consumer Issues,Consumer Issues +160115,Consumer Issues,Consumer Issues +159645,Consumer Issues,Consumer Issues +159627,Consumer Issues,Consumer Issues +153983,Consumer Issues,Consumer Issues +152034,Consumer Issues,Consumer Issues +151057,Consumer Issues,Consumer Issues +167645,Financial Institutions,Financial Institutions +167643,Financial Institutions,Financial Institutions +157355,Financial Institutions,Financial Institutions +150938,Financial Institutions,Financial Institutions +150937,Financial Institutions,Financial Institutions +147918,Financial Institutions,Financial Institutions +118161,Financial Institutions,Financial Institutions +156582,Health,Health +156581,Health,Health +118193,Health,Health +118192,Health,Health +118190,Health,Health +118180,Health,Health +118164,Health,Health +175747,Health,Health +167647,Health,Health +167646,Health,Health +160956,Health,Health +160115,Health,Health +159645,Health,Health +159640,Health,Health +159637,Health,Health +159636,Health,Health +159632,Health,Health +159627,Health,Health +156587,Health,Health +199986,Intellectual Property,Intellectual Property +199982,Intellectual Property,Intellectual Property +150939,Intellectual Property,Intellectual Property +76072,Agriculture,Agriculture +76072,International Trade,International Trade +210390,Industry,Industry +210389,Industry,Industry +212752,Industry,Industry +210390,Taxation and Finance,Taxation and Finance +210389,Taxation and Finance,Taxation and Finance +212754,Taxation and Finance,Taxation and Finance +212753,Taxation and Finance,Taxation and Finance +212752,Taxation and Finance,Taxation and Finance +212751,Taxation and Finance,Taxation and Finance +212750,Taxation and Finance,Taxation and Finance +434009,Energy,Energy +432579,Energy,Energy +142654,Energy,Energy +97665,Energy,Energy +97664,Energy,Energy +90485,Energy,Energy +189680,Energy,Energy +185569,Energy,Energy +180423,Energy,Energy +180422,Energy,Energy +176809,Energy,Energy +175512,Energy,Energy +175511,Energy,Energy +175509,Energy,Energy +175507,Energy,Energy +171054,Energy,Energy +168983,Energy,Energy +168982,Energy,Energy +168981,Energy,Energy +166021,Energy,Energy +164180,Energy,Energy +164179,Energy,Energy +164178,Energy,Energy +162005,Energy,Energy +162000,Energy,Energy +161951,Energy,Energy +159990,Energy,Energy +159985,Energy,Energy +254115,Energy,Energy +254114,Energy,Energy +254113,Energy,Energy +254111,Energy,Energy +254110,Energy,Energy +254109,Energy,Energy +250121,Energy,Energy +250038,Energy,Energy +250033,Energy,Energy +250021,Energy,Energy +250015,Energy,Energy +250012,Energy,Energy +249989,Energy,Energy +249975,Energy,Energy +249974,Energy,Energy +249973,Energy,Energy +249971,Energy,Energy +249959,Energy,Energy +240771,Energy,Energy +237129,Energy,Energy +233430,Energy,Energy +230486,Energy,Energy +230485,Energy,Energy +230484,Energy,Energy +227192,Energy,Energy +227191,Energy,Energy +227158,Energy,Energy +227157,Energy,Energy +227156,Energy,Energy +227155,Energy,Energy +223460,Energy,Energy +218169,Energy,Energy +218147,Energy,Energy +200621,Energy,Energy +200620,Energy,Energy +200618,Energy,Energy +200617,Energy,Energy +200616,Energy,Energy +200615,Energy,Energy +200614,Energy,Energy +200613,Energy,Energy +200612,Energy,Energy +200611,Energy,Energy +200610,Energy,Energy +200609,Energy,Energy +200608,Energy,Energy +200607,Energy,Energy +189684,Energy,Energy +368886,Energy,Energy +366760,Energy,Energy +366755,Energy,Energy +365024,Energy,Energy +365023,Energy,Energy +365022,Energy,Energy +365021,Energy,Energy +362227,Energy,Energy +362226,Energy,Energy +359345,Energy,Energy +350622,Energy,Energy +331201,Energy,Energy +324082,Energy,Energy +321943,Energy,Energy +319130,Energy,Energy +315870,Energy,Energy +315869,Energy,Energy +312903,Energy,Energy +312901,Energy,Energy +310160,Energy,Energy +310159,Energy,Energy +310158,Energy,Energy +310157,Energy,Energy +310156,Energy,Energy +310155,Energy,Energy +310154,Energy,Energy +310153,Energy,Energy +310152,Energy,Energy +310151,Energy,Energy +310150,Energy,Energy +303974,Energy,Energy +303973,Energy,Energy +303971,Energy,Energy +303970,Energy,Energy +296754,Energy,Energy +290349,Energy,Energy +284150,Energy,Energy +280948,Energy,Energy +280946,Energy,Energy +275914,Energy,Energy +275912,Energy,Energy +273210,Energy,Energy +273173,Energy,Energy +273171,Energy,Energy +273170,Energy,Energy +273169,Energy,Energy +268993,Energy,Energy +268992,Energy,Energy +268990,Energy,Energy +263926,Energy,Energy +263924,Energy,Energy +263921,Energy,Energy +259270,Energy,Energy +254116,Energy,Energy +426834,Energy,Energy +426832,Energy,Energy +426831,Energy,Energy +426827,Energy,Energy +422467,Energy,Energy +422466,Energy,Energy +422465,Energy,Energy +420430,Energy,Energy +416899,Energy,Energy +416896,Energy,Energy +416894,Energy,Energy +416891,Energy,Energy +416887,Energy,Energy +416881,Energy,Energy +416869,Energy,Energy +416866,Energy,Energy +416864,Energy,Energy +416862,Energy,Energy +416860,Energy,Energy +416859,Energy,Energy +416856,Energy,Energy +416838,Energy,Energy +416834,Energy,Energy +413931,Energy,Energy +410429,Energy,Energy +410383,Energy,Energy +405267,Energy,Energy +404016,Energy,Energy +401054,Energy,Energy +401053,Energy,Energy +401051,Energy,Energy +401050,Energy,Energy +396278,Energy,Energy +394502,Energy,Energy +392407,Energy,Energy +392405,Energy,Energy +391841,Energy,Energy +391840,Energy,Energy +391839,Energy,Energy +391818,Energy,Energy +385166,Energy,Energy +385161,Energy,Energy +385158,Energy,Energy +385155,Energy,Energy +385149,Energy,Energy +383763,Energy,Energy +380471,Energy,Energy +380470,Energy,Energy +380469,Energy,Energy +378546,Energy,Energy +376770,Energy,Energy +376766,Energy,Energy +376763,Energy,Energy +376722,Energy,Energy +376700,Energy,Energy +373642,Energy,Energy +373641,Energy,Energy +371840,Energy,Energy +371838,Energy,Energy +371836,Energy,Energy +371831,Energy,Energy +544084,Energy,Energy +544081,Energy,Energy +544063,Energy,Energy +544060,Energy,Energy +542101,Energy,Energy +542100,Energy,Energy +542096,Energy,Energy +542095,Energy,Energy +542094,Energy,Energy +542092,Energy,Energy +538434,Energy,Energy +538431,Energy,Energy +538430,Energy,Energy +538429,Energy,Energy +535706,Energy,Energy +535702,Energy,Energy +535700,Energy,Energy +535699,Energy,Energy +535698,Energy,Energy +535697,Energy,Energy +535690,Energy,Energy +535688,Energy,Energy +529537,Energy,Energy +529536,Energy,Energy +523198,Energy,Energy +519864,Energy,Energy +517935,Energy,Energy +517931,Energy,Energy +517922,Energy,Energy +515816,Energy,Energy +515814,Energy,Energy +513470,Energy,Energy +513469,Energy,Energy +511239,Energy,Energy +511235,Energy,Energy +505218,Energy,Energy +502329,Energy,Energy +502325,Energy,Energy +499462,Energy,Energy +491599,Energy,Energy +487644,Energy,Energy +487643,Energy,Energy +487642,Energy,Energy +485404,Energy,Energy +485402,Energy,Energy +485400,Energy,Energy +485399,Energy,Energy +482312,Energy,Energy +480431,Energy,Energy +480430,Energy,Energy +480429,Energy,Energy +480427,Energy,Energy +480420,Energy,Energy +480417,Energy,Energy +480415,Energy,Energy +480414,Energy,Energy +480413,Energy,Energy +480412,Energy,Energy +478460,Energy,Energy +478459,Energy,Energy +478458,Energy,Energy +478457,Energy,Energy +478445,Energy,Energy +476024,Energy,Energy +476023,Energy,Energy +473897,Energy,Energy +473888,Energy,Energy +470742,Energy,Energy +470730,Energy,Energy +470726,Energy,Energy +470712,Energy,Energy +465202,Energy,Energy +465201,Energy,Energy +465200,Energy,Energy +465198,Energy,Energy +465197,Energy,Energy +465196,Energy,Energy +465193,Energy,Energy +465190,Energy,Energy +462201,Energy,Energy +458816,Energy,Energy +458814,Energy,Energy +458813,Energy,Energy +458812,Energy,Energy +457794,Energy,Energy +457793,Energy,Energy +457792,Energy,Energy +457791,Energy,Energy +457790,Energy,Energy +457789,Energy,Energy +457788,Energy,Energy +457787,Energy,Energy +455628,Energy,Energy +455627,Energy,Energy +455614,Energy,Energy +453117,Energy,Energy +450142,Energy,Energy +450140,Energy,Energy +450138,Energy,Energy +450136,Energy,Energy +450132,Energy,Energy +445861,Energy,Energy +445860,Energy,Energy +445859,Energy,Energy +445857,Energy,Energy +445855,Energy,Energy +445853,Energy,Energy +445852,Energy,Energy +445851,Energy,Energy +445850,Energy,Energy +444118,Energy,Energy +441208,Energy,Energy +441207,Energy,Energy +441206,Energy,Energy +441205,Energy,Energy +439444,Energy,Energy +434011,Energy,Energy +90467,Environment,Environment +90465,Environment,Environment +90464,Environment,Environment +90462,Environment,Environment +90460,Environment,Environment +90458,Environment,Environment +90295,Environment,Environment +88194,Environment,Environment +88192,Environment,Environment +85296,Environment,Environment +171056,Environment,Environment +171054,Environment,Environment +171049,Environment,Environment +168979,Environment,Environment +168978,Environment,Environment +164187,Environment,Environment +164186,Environment,Environment +164185,Environment,Environment +164184,Environment,Environment +164183,Environment,Environment +164182,Environment,Environment +164181,Environment,Environment +164180,Environment,Environment +164179,Environment,Environment +164178,Environment,Environment +162005,Environment,Environment +162000,Environment,Environment +161951,Environment,Environment +148271,Environment,Environment +106400,Environment,Environment +97665,Environment,Environment +97664,Environment,Environment +284150,Environment,Environment +284149,Environment,Environment +280948,Environment,Environment +280946,Environment,Environment +275914,Environment,Environment +275912,Environment,Environment +273171,Environment,Environment +273170,Environment,Environment +273169,Environment,Environment +268993,Environment,Environment +263924,Environment,Environment +263921,Environment,Environment +259270,Environment,Environment +254112,Environment,Environment +250121,Environment,Environment +250021,Environment,Environment +249971,Environment,Environment +240770,Environment,Environment +233430,Environment,Environment +223460,Environment,Environment +218147,Environment,Environment +200610,Environment,Environment +200607,Environment,Environment +189684,Environment,Environment +185569,Environment,Environment +180423,Environment,Environment +180422,Environment,Environment +176809,Environment,Environment +175512,Environment,Environment +175511,Environment,Environment +175509,Environment,Environment +175507,Environment,Environment +173495,Environment,Environment +396278,Environment,Environment +392407,Environment,Environment +392405,Environment,Environment +391841,Environment,Environment +391840,Environment,Environment +391839,Environment,Environment +391818,Environment,Environment +385161,Environment,Environment +385158,Environment,Environment +385155,Environment,Environment +385149,Environment,Environment +380471,Environment,Environment +380470,Environment,Environment +380469,Environment,Environment +378548,Environment,Environment +378546,Environment,Environment +376770,Environment,Environment +376766,Environment,Environment +376763,Environment,Environment +376722,Environment,Environment +376700,Environment,Environment +373642,Environment,Environment +373641,Environment,Environment +371840,Environment,Environment +371838,Environment,Environment +371836,Environment,Environment +371831,Environment,Environment +368890,Environment,Environment +368886,Environment,Environment +366760,Environment,Environment +365024,Environment,Environment +365023,Environment,Environment +365022,Environment,Environment +365021,Environment,Environment +362227,Environment,Environment +362226,Environment,Environment +359345,Environment,Environment +350622,Environment,Environment +331201,Environment,Environment +324082,Environment,Environment +296754,Environment,Environment +290349,Environment,Environment +523198,Environment,Environment +519864,Environment,Environment +502363,Environment,Environment +502355,Environment,Environment +499462,Environment,Environment +487642,Environment,Environment +482312,Environment,Environment +480431,Environment,Environment +480430,Environment,Environment +480429,Environment,Environment +476023,Environment,Environment +473890,Environment,Environment +470742,Environment,Environment +470730,Environment,Environment +470720,Environment,Environment +465200,Environment,Environment +465194,Environment,Environment +465193,Environment,Environment +465192,Environment,Environment +465190,Environment,Environment +462201,Environment,Environment +458816,Environment,Environment +458814,Environment,Environment +457794,Environment,Environment +457793,Environment,Environment +457792,Environment,Environment +457791,Environment,Environment +457790,Environment,Environment +457789,Environment,Environment +457788,Environment,Environment +457787,Environment,Environment +455640,Environment,Environment +455614,Environment,Environment +453170,Environment,Environment +453117,Environment,Environment +450142,Environment,Environment +450140,Environment,Environment +450138,Environment,Environment +450136,Environment,Environment +450132,Environment,Environment +445861,Environment,Environment +445860,Environment,Environment +445859,Environment,Environment +445857,Environment,Environment +445855,Environment,Environment +445853,Environment,Environment +445852,Environment,Environment +445851,Environment,Environment +434012,Environment,Environment +429490,Environment,Environment +429488,Environment,Environment +429487,Environment,Environment +429486,Environment,Environment +427504,Environment,Environment +427503,Environment,Environment +426834,Environment,Environment +426832,Environment,Environment +426831,Environment,Environment +426827,Environment,Environment +422467,Environment,Environment +422466,Environment,Environment +422465,Environment,Environment +420430,Environment,Environment +416899,Environment,Environment +416896,Environment,Environment +416894,Environment,Environment +416891,Environment,Environment +416887,Environment,Environment +416881,Environment,Environment +416869,Environment,Environment +416866,Environment,Environment +416864,Environment,Environment +416862,Environment,Environment +416860,Environment,Environment +416859,Environment,Environment +416856,Environment,Environment +416838,Environment,Environment +416834,Environment,Environment +413931,Environment,Environment +410429,Environment,Environment +410383,Environment,Environment +406901,Environment,Environment +405267,Environment,Environment +401054,Environment,Environment +401053,Environment,Environment +401051,Environment,Environment +401050,Environment,Environment +529538,Environment,Environment +529537,Environment,Environment +529536,Environment,Environment +526765,Environment,Environment +526763,Environment,Environment +526762,Environment,Environment +441205,Industry,Industry +405267,Industry,Industry +376700,Industry,Industry +373642,Industry,Industry +373641,Industry,Industry +350622,Industry,Industry +254116,Industry,Industry +254115,Industry,Industry +254114,Industry,Industry +401053,Industry,Industry +401050,Industry,Industry +396278,Industry,Industry +391841,Industry,Industry +391840,Industry,Industry +391839,Industry,Industry +391818,Industry,Industry +385166,Industry,Industry +385155,Industry,Industry +385149,Industry,Industry +383763,Industry,Industry +380472,Industry,Industry +378548,Industry,Industry +376770,Industry,Industry +376766,Industry,Industry +376763,Industry,Industry +376722,Industry,Industry +544063,Industry,Industry +538434,Industry,Industry +529537,Industry,Industry +529536,Industry,Industry +519864,Industry,Industry +515816,Industry,Industry +515814,Industry,Industry +487644,Industry,Industry +487643,Industry,Industry +485404,Industry,Industry +485402,Industry,Industry +485400,Industry,Industry +485399,Industry,Industry +476023,Industry,Industry +473890,Industry,Industry +450142,Industry,Industry +441208,Industry,Industry +441207,Industry,Industry +365024,Infrastructure,Infrastructure +365023,Infrastructure,Infrastructure +365022,Infrastructure,Infrastructure +365021,Infrastructure,Infrastructure +362227,Infrastructure,Infrastructure +362226,Infrastructure,Infrastructure +200607,Infrastructure,Infrastructure +515818,Infrastructure,Infrastructure +476023,Infrastructure,Infrastructure +401054,Infrastructure,Infrastructure +401053,Infrastructure,Infrastructure +385155,Infrastructure,Infrastructure +385149,Infrastructure,Infrastructure +383763,Infrastructure,Infrastructure +371838,Infrastructure,Infrastructure +371836,Infrastructure,Infrastructure +371831,Infrastructure,Infrastructure +380470,International Relations,International Relations +380469,International Relations,International Relations +200609,International Relations,International Relations +200608,International Relations,International Relations +189678,International Relations,International Relations +173495,International Relations,International Relations +164180,International Relations,International Relations +366753,International Relations,International Relations +365024,International Relations,International Relations +365023,International Relations,International Relations +365022,International Relations,International Relations +365021,International Relations,International Relations +362227,International Relations,International Relations +362226,International Relations,International Relations +250031,International Relations,International Relations +416838,International Relations,International Relations +416834,International Relations,International Relations +410383,International Relations,International Relations +227192,Regional Development,Regional Development +401051,Regional Development,Regional Development +185569,Regional Development,Regional Development +230486,Regional Development,Regional Development +230485,Regional Development,Regional Development +542096,Taxation and Finance,Taxation and Finance +450142,Taxation and Finance,Taxation and Finance +161989,Taxation and Finance,Taxation and Finance +275912,Taxation and Finance,Taxation and Finance +230486,Taxation and Finance,Taxation and Finance +230485,Taxation and Finance,Taxation and Finance +230484,Taxation and Finance,Taxation and Finance +227192,Taxation and Finance,Taxation and Finance +227191,Taxation and Finance,Taxation and Finance +227158,Taxation and Finance,Taxation and Finance +227157,Taxation and Finance,Taxation and Finance +227155,Taxation and Finance,Taxation and Finance +200621,Taxation and Finance,Taxation and Finance +200620,Taxation and Finance,Taxation and Finance +200618,Taxation and Finance,Taxation and Finance +200617,Taxation and Finance,Taxation and Finance +200616,Taxation and Finance,Taxation and Finance +200615,Taxation and Finance,Taxation and Finance +200613,Taxation and Finance,Taxation and Finance +200612,Taxation and Finance,Taxation and Finance +200611,Taxation and Finance,Taxation and Finance +176810,Taxation and Finance,Taxation and Finance +176809,Taxation and Finance,Taxation and Finance +171056,Taxation and Finance,Taxation and Finance +171049,Taxation and Finance,Taxation and Finance +168981,Taxation and Finance,Taxation and Finance +168979,Taxation and Finance,Taxation and Finance +168978,Taxation and Finance,Taxation and Finance +162002,Taxation and Finance,Taxation and Finance +161997,Taxation and Finance,Taxation and Finance +161995,Taxation and Finance,Taxation and Finance +161994,Taxation and Finance,Taxation and Finance +161992,Taxation and Finance,Taxation and Finance +394502,Taxation and Finance,Taxation and Finance +385158,Taxation and Finance,Taxation and Finance +385155,Taxation and Finance,Taxation and Finance +385149,Taxation and Finance,Taxation and Finance +362227,Taxation and Finance,Taxation and Finance +362226,Taxation and Finance,Taxation and Finance +499462,Transportation,Transportation +200621,Transportation,Transportation +200620,Transportation,Transportation +200618,Transportation,Transportation +200617,Transportation,Transportation +200616,Transportation,Transportation +200615,Transportation,Transportation +200613,Transportation,Transportation +200612,Transportation,Transportation +200611,Transportation,Transportation +453170,Transportation,Transportation +450142,Transportation,Transportation +432580,Transportation,Transportation +429488,Transportation,Transportation +406901,Transportation,Transportation +385166,Transportation,Transportation +385158,Transportation,Transportation +544063,Transportation,Transportation +515816,Transportation,Transportation +456283,Health,Health +443113,Health,Health +117572,Health,Health +113516,Health,Health +174712,Health,Health +392032,Health,Health +392030,Health,Health +392028,Health,Health +392027,Health,Health +390618,Health,Health +390615,Health,Health +390610,Health,Health +390607,Health,Health +390597,Health,Health +390589,Health,Health +390587,Health,Health +390586,Health,Health +390581,Health,Health +390578,Health,Health +390141,Health,Health +424233,Health,Health +421768,Health,Health +421767,Health,Health +421766,Health,Health +421764,Health,Health +418937,Health,Health +418932,Health,Health +411145,Health,Health +411062,Health,Health +410737,Health,Health +408317,Health,Health +408312,Health,Health +408311,Health,Health +407240,Health,Health +407239,Health,Health +407238,Health,Health +407237,Health,Health +407236,Health,Health +407234,Health,Health +404391,Health,Health +404390,Health,Health +404389,Health,Health +402663,Health,Health +401725,Health,Health +401429,Health,Health +401427,Health,Health +399354,Health,Health +399352,Health,Health +399351,Health,Health +399269,Health,Health +399268,Health,Health +399228,Health,Health +399227,Health,Health +397524,Health,Health +397523,Health,Health +397452,Health,Health +397451,Health,Health +397450,Health,Health +394333,Health,Health +394330,Health,Health +394326,Health,Health +393187,Health,Health +393157,Health,Health +393155,Health,Health +544879,Health,Health +540513,Health,Health +520562,Health,Health +516571,Health,Health +515040,Health,Health +515027,Health,Health +482795,Health,Health +461010,Health,Health +456474,Health,Health +523893,Justice and Law Enforcement,Justice and Law Enforcement +419485,Taxation and Finance,Taxation and Finance +419219,Taxation and Finance,Taxation and Finance +530443,Taxation and Finance,Taxation and Finance +527242,Taxation and Finance,Taxation and Finance +482795,Taxation and Finance,Taxation and Finance +443112,Taxation and Finance,Taxation and Finance +497746,Energy,Energy +464178,Energy,Energy +138682,Energy,Energy +138680,Energy,Energy +138679,Energy,Energy +138678,Energy,Energy +138677,Energy,Energy +138676,Energy,Energy +147434,Energy,Energy +399600,Energy,Energy +512554,Environment,Environment +512549,Environment,Environment +90660,Environment,Environment +168511,Environment,Environment +165156,Environment,Environment +165155,Environment,Environment +154293,Environment,Environment +154292,Environment,Environment +154291,Environment,Environment +154290,Environment,Environment +232177,Environment,Environment +221687,Environment,Environment +205948,Environment,Environment +176805,Environment,Environment +176804,Environment,Environment +397910,Environment,Environment +397746,Environment,Environment +395566,Environment,Environment +393992,Environment,Environment +391109,Environment,Environment +382551,Environment,Environment +380951,Environment,Environment +379384,Environment,Environment +376859,Environment,Environment +374817,Environment,Environment +369174,Environment,Environment +361231,Environment,Environment +347616,Environment,Environment +338934,Environment,Environment +510466,Environment,Environment +510459,Environment,Environment +510442,Environment,Environment +510437,Environment,Environment +507250,Environment,Environment +507246,Environment,Environment +507245,Environment,Environment +507236,Environment,Environment +507205,Environment,Environment +507204,Environment,Environment +504190,Environment,Environment +504186,Environment,Environment +501824,Environment,Environment +501769,Environment,Environment +497747,Environment,Environment +497746,Environment,Environment +497745,Environment,Environment +497744,Environment,Environment +497691,Environment,Environment +497688,Environment,Environment +497686,Environment,Environment +497681,Environment,Environment +497680,Environment,Environment +489759,Environment,Environment +489752,Environment,Environment +489559,Environment,Environment +489543,Environment,Environment +489541,Environment,Environment +489537,Environment,Environment +489536,Environment,Environment +489531,Environment,Environment +489523,Environment,Environment +489514,Environment,Environment +489508,Environment,Environment +489503,Environment,Environment +489484,Environment,Environment +489481,Environment,Environment +464178,Environment,Environment +458174,Environment,Environment +457057,Environment,Environment +447833,Environment,Environment +447827,Environment,Environment +447809,Environment,Environment +447801,Environment,Environment +447788,Environment,Environment +445323,Environment,Environment +443539,Environment,Environment +432141,Environment,Environment +423434,Environment,Environment +421782,Environment,Environment +414821,Environment,Environment +414812,Environment,Environment +407183,Environment,Environment +541535,Environment,Environment +539102,Environment,Environment +537469,Environment,Environment +537317,Environment,Environment +537315,Environment,Environment +537313,Environment,Environment +534064,Environment,Environment +531656,Environment,Environment +528084,Environment,Environment +528083,Environment,Environment +528073,Environment,Environment +528070,Environment,Environment +525340,Environment,Environment +525330,Environment,Environment +525316,Environment,Environment +525304,Environment,Environment +525287,Environment,Environment +522172,Environment,Environment +522164,Environment,Environment +522155,Environment,Environment +517437,Environment,Environment +517432,Environment,Environment +517429,Environment,Environment +517415,Environment,Environment +517410,Environment,Environment +517401,Environment,Environment +517394,Environment,Environment +517387,Environment,Environment +515444,Environment,Environment +515428,Environment,Environment +515414,Environment,Environment +514141,Environment,Environment +395582,Fisheries,Fisheries +392518,Fisheries,Fisheries +239951,Fisheries,Fisheries +226532,Fisheries,Fisheries +221629,Fisheries,Fisheries +221627,Fisheries,Fisheries +430668,Fisheries,Fisheries +408590,Fisheries,Fisheries +402647,Fisheries,Fisheries +543611,Health,Health +529967,Health,Health +304071,Health,Health +398041,Health,Health +397745,Health,Health +395586,Health,Health +395585,Health,Health +395579,Health,Health +395570,Health,Health +394005,Health,Health +388004,Health,Health +497749,Health,Health +470303,Health,Health +470302,Health,Health +470300,Health,Health +470291,Health,Health +470290,Health,Health +470289,Health,Health +470237,Health,Health +470233,Health,Health +460077,Health,Health +457055,Health,Health +439072,Health,Health +439069,Health,Health +433160,Health,Health +432139,Health,Health +430673,Health,Health +427906,Health,Health +423438,Health,Health +418873,Health,Health +399593,Health,Health +365268,Immigration,Immigration +528080,Immigration,Immigration +99300,Immigration,Immigration +99297,Immigration,Immigration +81063,Immigration,Immigration +328106,Immigration,Immigration +188767,Immigration,Immigration +188754,Immigration,Immigration +188753,Immigration,Immigration +467087,Immigration,Immigration +430662,Industry,Industry +355949,Industry,Industry +347635,Industry,Industry +347634,Industry,Industry +402634,Infrastructure,Infrastructure +402629,Infrastructure,Infrastructure +90659,Infrastructure,Infrastructure +90658,Infrastructure,Infrastructure +90657,Infrastructure,Infrastructure +90656,Infrastructure,Infrastructure +88102,Infrastructure,Infrastructure +88099,Infrastructure,Infrastructure +88089,Infrastructure,Infrastructure +88086,Infrastructure,Infrastructure +88083,Infrastructure,Infrastructure +88080,Infrastructure,Infrastructure +76778,Infrastructure,Infrastructure +99524,Infrastructure,Infrastructure +99523,Infrastructure,Infrastructure +99322,Infrastructure,Infrastructure +99291,Infrastructure,Infrastructure +99289,Infrastructure,Infrastructure +97876,Infrastructure,Infrastructure +97874,Infrastructure,Infrastructure +97383,Infrastructure,Infrastructure +97381,Infrastructure,Infrastructure +97376,Infrastructure,Infrastructure +97372,Infrastructure,Infrastructure +97369,Infrastructure,Infrastructure +97367,Infrastructure,Infrastructure +97366,Infrastructure,Infrastructure +94696,Infrastructure,Infrastructure +94695,Infrastructure,Infrastructure +94694,Infrastructure,Infrastructure +191606,Infrastructure,Infrastructure +191595,Infrastructure,Infrastructure +191592,Infrastructure,Infrastructure +188762,Infrastructure,Infrastructure +188761,Infrastructure,Infrastructure +188760,Infrastructure,Infrastructure +188759,Infrastructure,Infrastructure +183104,Infrastructure,Infrastructure +182865,Infrastructure,Infrastructure +174798,Infrastructure,Infrastructure +174797,Infrastructure,Infrastructure +174796,Infrastructure,Infrastructure +174795,Infrastructure,Infrastructure +171350,Infrastructure,Infrastructure +171349,Infrastructure,Infrastructure +168524,Infrastructure,Infrastructure +168521,Infrastructure,Infrastructure +168516,Infrastructure,Infrastructure +168509,Infrastructure,Infrastructure +168505,Infrastructure,Infrastructure +167846,Infrastructure,Infrastructure +165956,Infrastructure,Infrastructure +165947,Infrastructure,Infrastructure +165154,Infrastructure,Infrastructure +165153,Infrastructure,Infrastructure +165149,Infrastructure,Infrastructure +165148,Infrastructure,Infrastructure +161266,Infrastructure,Infrastructure +161263,Infrastructure,Infrastructure +158546,Infrastructure,Infrastructure +158544,Infrastructure,Infrastructure +156167,Infrastructure,Infrastructure +156166,Infrastructure,Infrastructure +154289,Infrastructure,Infrastructure +154288,Infrastructure,Infrastructure +154287,Infrastructure,Infrastructure +153149,Infrastructure,Infrastructure +153146,Infrastructure,Infrastructure +151500,Infrastructure,Infrastructure +151498,Infrastructure,Infrastructure +147435,Infrastructure,Infrastructure +138682,Infrastructure,Infrastructure +138680,Infrastructure,Infrastructure +138679,Infrastructure,Infrastructure +138678,Infrastructure,Infrastructure +138677,Infrastructure,Infrastructure +138676,Infrastructure,Infrastructure +128246,Infrastructure,Infrastructure +124481,Infrastructure,Infrastructure +118514,Infrastructure,Infrastructure +113397,Infrastructure,Infrastructure +349927,Infrastructure,Infrastructure +347614,Infrastructure,Infrastructure +338942,Infrastructure,Infrastructure +338936,Infrastructure,Infrastructure +335853,Infrastructure,Infrastructure +335832,Infrastructure,Infrastructure +335816,Infrastructure,Infrastructure +335809,Infrastructure,Infrastructure +335792,Infrastructure,Infrastructure +331428,Infrastructure,Infrastructure +331427,Infrastructure,Infrastructure +330118,Infrastructure,Infrastructure +319785,Infrastructure,Infrastructure +319783,Infrastructure,Infrastructure +319782,Infrastructure,Infrastructure +319781,Infrastructure,Infrastructure +319780,Infrastructure,Infrastructure +319167,Infrastructure,Infrastructure +315937,Infrastructure,Infrastructure +315931,Infrastructure,Infrastructure +315928,Infrastructure,Infrastructure +315924,Infrastructure,Infrastructure +312735,Infrastructure,Infrastructure +312597,Infrastructure,Infrastructure +312593,Infrastructure,Infrastructure +309783,Infrastructure,Infrastructure +309771,Infrastructure,Infrastructure +304074,Infrastructure,Infrastructure +304056,Infrastructure,Infrastructure +304013,Infrastructure,Infrastructure +296757,Infrastructure,Infrastructure +296756,Infrastructure,Infrastructure +296753,Infrastructure,Infrastructure +296746,Infrastructure,Infrastructure +291790,Infrastructure,Infrastructure +281710,Infrastructure,Infrastructure +281669,Infrastructure,Infrastructure +277334,Infrastructure,Infrastructure +277331,Infrastructure,Infrastructure +277309,Infrastructure,Infrastructure +277301,Infrastructure,Infrastructure +277292,Infrastructure,Infrastructure +277291,Infrastructure,Infrastructure +273441,Infrastructure,Infrastructure +273440,Infrastructure,Infrastructure +273435,Infrastructure,Infrastructure +273434,Infrastructure,Infrastructure +273433,Infrastructure,Infrastructure +273432,Infrastructure,Infrastructure +273431,Infrastructure,Infrastructure +269126,Infrastructure,Infrastructure +269125,Infrastructure,Infrastructure +269113,Infrastructure,Infrastructure +269112,Infrastructure,Infrastructure +269111,Infrastructure,Infrastructure +269109,Infrastructure,Infrastructure +265035,Infrastructure,Infrastructure +265034,Infrastructure,Infrastructure +265033,Infrastructure,Infrastructure +265032,Infrastructure,Infrastructure +265031,Infrastructure,Infrastructure +265030,Infrastructure,Infrastructure +265029,Infrastructure,Infrastructure +264261,Infrastructure,Infrastructure +264259,Infrastructure,Infrastructure +264258,Infrastructure,Infrastructure +264257,Infrastructure,Infrastructure +264252,Infrastructure,Infrastructure +264250,Infrastructure,Infrastructure +263915,Infrastructure,Infrastructure +256454,Infrastructure,Infrastructure +256452,Infrastructure,Infrastructure +256451,Infrastructure,Infrastructure +256430,Infrastructure,Infrastructure +256429,Infrastructure,Infrastructure +252952,Infrastructure,Infrastructure +249112,Infrastructure,Infrastructure +249111,Infrastructure,Infrastructure +249110,Infrastructure,Infrastructure +244109,Infrastructure,Infrastructure +239959,Infrastructure,Infrastructure +239957,Infrastructure,Infrastructure +239956,Infrastructure,Infrastructure +239954,Infrastructure,Infrastructure +239953,Infrastructure,Infrastructure +239949,Infrastructure,Infrastructure +236232,Infrastructure,Infrastructure +232176,Infrastructure,Infrastructure +226531,Infrastructure,Infrastructure +226529,Infrastructure,Infrastructure +221667,Infrastructure,Infrastructure +221647,Infrastructure,Infrastructure +210737,Infrastructure,Infrastructure +201673,Infrastructure,Infrastructure +201672,Infrastructure,Infrastructure +201671,Infrastructure,Infrastructure +201670,Infrastructure,Infrastructure +201669,Infrastructure,Infrastructure +191620,Infrastructure,Infrastructure +191618,Infrastructure,Infrastructure +191615,Infrastructure,Infrastructure +191613,Infrastructure,Infrastructure +399591,Infrastructure,Infrastructure +399586,Infrastructure,Infrastructure +398877,Infrastructure,Infrastructure +398785,Infrastructure,Infrastructure +398053,Infrastructure,Infrastructure +398040,Infrastructure,Infrastructure +397934,Infrastructure,Infrastructure +397930,Infrastructure,Infrastructure +397926,Infrastructure,Infrastructure +397907,Infrastructure,Infrastructure +397905,Infrastructure,Infrastructure +397903,Infrastructure,Infrastructure +397744,Infrastructure,Infrastructure +395743,Infrastructure,Infrastructure +395740,Infrastructure,Infrastructure +395587,Infrastructure,Infrastructure +395583,Infrastructure,Infrastructure +395577,Infrastructure,Infrastructure +395566,Infrastructure,Infrastructure +394007,Infrastructure,Infrastructure +393996,Infrastructure,Infrastructure +393995,Infrastructure,Infrastructure +393992,Infrastructure,Infrastructure +393988,Infrastructure,Infrastructure +393982,Infrastructure,Infrastructure +393970,Infrastructure,Infrastructure +393967,Infrastructure,Infrastructure +393837,Infrastructure,Infrastructure +393829,Infrastructure,Infrastructure +393804,Infrastructure,Infrastructure +392524,Infrastructure,Infrastructure +392520,Infrastructure,Infrastructure +392517,Infrastructure,Infrastructure +392514,Infrastructure,Infrastructure +392512,Infrastructure,Infrastructure +391199,Infrastructure,Infrastructure +391109,Infrastructure,Infrastructure +388017,Infrastructure,Infrastructure +388004,Infrastructure,Infrastructure +388003,Infrastructure,Infrastructure +388001,Infrastructure,Infrastructure +388000,Infrastructure,Infrastructure +387839,Infrastructure,Infrastructure +385346,Infrastructure,Infrastructure +385338,Infrastructure,Infrastructure +383244,Infrastructure,Infrastructure +383242,Infrastructure,Infrastructure +383241,Infrastructure,Infrastructure +383236,Infrastructure,Infrastructure +382622,Infrastructure,Infrastructure +382614,Infrastructure,Infrastructure +382599,Infrastructure,Infrastructure +382551,Infrastructure,Infrastructure +382544,Infrastructure,Infrastructure +382534,Infrastructure,Infrastructure +382533,Infrastructure,Infrastructure +382527,Infrastructure,Infrastructure +382513,Infrastructure,Infrastructure +382506,Infrastructure,Infrastructure +381291,Infrastructure,Infrastructure +380954,Infrastructure,Infrastructure +380948,Infrastructure,Infrastructure +379362,Infrastructure,Infrastructure +379354,Infrastructure,Infrastructure +376916,Infrastructure,Infrastructure +376895,Infrastructure,Infrastructure +376857,Infrastructure,Infrastructure +376814,Infrastructure,Infrastructure +376755,Infrastructure,Infrastructure +374803,Infrastructure,Infrastructure +374802,Infrastructure,Infrastructure +374795,Infrastructure,Infrastructure +374792,Infrastructure,Infrastructure +374787,Infrastructure,Infrastructure +370685,Infrastructure,Infrastructure +370678,Infrastructure,Infrastructure +370677,Infrastructure,Infrastructure +370675,Infrastructure,Infrastructure +370674,Infrastructure,Infrastructure +370673,Infrastructure,Infrastructure +370672,Infrastructure,Infrastructure +369252,Infrastructure,Infrastructure +369230,Infrastructure,Infrastructure +369201,Infrastructure,Infrastructure +369185,Infrastructure,Infrastructure +369183,Infrastructure,Infrastructure +369178,Infrastructure,Infrastructure +369165,Infrastructure,Infrastructure +369163,Infrastructure,Infrastructure +369159,Infrastructure,Infrastructure +369144,Infrastructure,Infrastructure +366749,Infrastructure,Infrastructure +366738,Infrastructure,Infrastructure +365205,Infrastructure,Infrastructure +365062,Infrastructure,Infrastructure +361231,Infrastructure,Infrastructure +358166,Infrastructure,Infrastructure +358164,Infrastructure,Infrastructure +358088,Infrastructure,Infrastructure +356624,Infrastructure,Infrastructure +356620,Infrastructure,Infrastructure +356336,Infrastructure,Infrastructure +356322,Infrastructure,Infrastructure +356297,Infrastructure,Infrastructure +355956,Infrastructure,Infrastructure +355949,Infrastructure,Infrastructure +354046,Infrastructure,Infrastructure +353591,Infrastructure,Infrastructure +353281,Infrastructure,Infrastructure +541534,Infrastructure,Infrastructure +539110,Infrastructure,Infrastructure +539108,Infrastructure,Infrastructure +539103,Infrastructure,Infrastructure +537378,Infrastructure,Infrastructure +537322,Infrastructure,Infrastructure +537317,Infrastructure,Infrastructure +537315,Infrastructure,Infrastructure +537314,Infrastructure,Infrastructure +537313,Infrastructure,Infrastructure +537312,Infrastructure,Infrastructure +537311,Infrastructure,Infrastructure +537308,Infrastructure,Infrastructure +534073,Infrastructure,Infrastructure +534064,Infrastructure,Infrastructure +534057,Infrastructure,Infrastructure +531654,Infrastructure,Infrastructure +528081,Infrastructure,Infrastructure +528078,Infrastructure,Infrastructure +528075,Infrastructure,Infrastructure +528072,Infrastructure,Infrastructure +525866,Infrastructure,Infrastructure +525355,Infrastructure,Infrastructure +525350,Infrastructure,Infrastructure +525343,Infrastructure,Infrastructure +525302,Infrastructure,Infrastructure +525300,Infrastructure,Infrastructure +525292,Infrastructure,Infrastructure +522181,Infrastructure,Infrastructure +522172,Infrastructure,Infrastructure +522164,Infrastructure,Infrastructure +522159,Infrastructure,Infrastructure +522158,Infrastructure,Infrastructure +522154,Infrastructure,Infrastructure +522153,Infrastructure,Infrastructure +519836,Infrastructure,Infrastructure +517437,Infrastructure,Infrastructure +517432,Infrastructure,Infrastructure +517429,Infrastructure,Infrastructure +517415,Infrastructure,Infrastructure +517374,Infrastructure,Infrastructure +515444,Infrastructure,Infrastructure +515428,Infrastructure,Infrastructure +515414,Infrastructure,Infrastructure +514141,Infrastructure,Infrastructure +512588,Infrastructure,Infrastructure +512573,Infrastructure,Infrastructure +512554,Infrastructure,Infrastructure +512549,Infrastructure,Infrastructure +510466,Infrastructure,Infrastructure +510459,Infrastructure,Infrastructure +510442,Infrastructure,Infrastructure +510437,Infrastructure,Infrastructure +507250,Infrastructure,Infrastructure +507245,Infrastructure,Infrastructure +507236,Infrastructure,Infrastructure +507205,Infrastructure,Infrastructure +504264,Infrastructure,Infrastructure +504235,Infrastructure,Infrastructure +504231,Infrastructure,Infrastructure +504186,Infrastructure,Infrastructure +501818,Infrastructure,Infrastructure +501790,Infrastructure,Infrastructure +497814,Infrastructure,Infrastructure +497747,Infrastructure,Infrastructure +497746,Infrastructure,Infrastructure +497745,Infrastructure,Infrastructure +497744,Infrastructure,Infrastructure +497691,Infrastructure,Infrastructure +497688,Infrastructure,Infrastructure +497686,Infrastructure,Infrastructure +497685,Infrastructure,Infrastructure +497680,Infrastructure,Infrastructure +494807,Infrastructure,Infrastructure +494804,Infrastructure,Infrastructure +489752,Infrastructure,Infrastructure +489571,Infrastructure,Infrastructure +489559,Infrastructure,Infrastructure +489550,Infrastructure,Infrastructure +489547,Infrastructure,Infrastructure +489536,Infrastructure,Infrastructure +489533,Infrastructure,Infrastructure +489531,Infrastructure,Infrastructure +489527,Infrastructure,Infrastructure +489526,Infrastructure,Infrastructure +489514,Infrastructure,Infrastructure +489507,Infrastructure,Infrastructure +489506,Infrastructure,Infrastructure +489495,Infrastructure,Infrastructure +489492,Infrastructure,Infrastructure +489475,Infrastructure,Infrastructure +486636,Infrastructure,Infrastructure +486633,Infrastructure,Infrastructure +486621,Infrastructure,Infrastructure +484359,Infrastructure,Infrastructure +484295,Infrastructure,Infrastructure +484294,Infrastructure,Infrastructure +477285,Infrastructure,Infrastructure +474955,Infrastructure,Infrastructure +470303,Infrastructure,Infrastructure +470292,Infrastructure,Infrastructure +470237,Infrastructure,Infrastructure +467119,Infrastructure,Infrastructure +466940,Infrastructure,Infrastructure +464198,Infrastructure,Infrastructure +461480,Infrastructure,Infrastructure +461475,Infrastructure,Infrastructure +461474,Infrastructure,Infrastructure +461472,Infrastructure,Infrastructure +460768,Infrastructure,Infrastructure +460765,Infrastructure,Infrastructure +460086,Infrastructure,Infrastructure +460081,Infrastructure,Infrastructure +459420,Infrastructure,Infrastructure +458172,Infrastructure,Infrastructure +455460,Infrastructure,Infrastructure +452517,Infrastructure,Infrastructure +452510,Infrastructure,Infrastructure +445323,Infrastructure,Infrastructure +442221,Infrastructure,Infrastructure +442218,Infrastructure,Infrastructure +439059,Infrastructure,Infrastructure +438996,Infrastructure,Infrastructure +435161,Infrastructure,Infrastructure +435156,Infrastructure,Infrastructure +435152,Infrastructure,Infrastructure +435141,Infrastructure,Infrastructure +435138,Infrastructure,Infrastructure +435125,Infrastructure,Infrastructure +435120,Infrastructure,Infrastructure +433167,Infrastructure,Infrastructure +433166,Infrastructure,Infrastructure +433164,Infrastructure,Infrastructure +433160,Infrastructure,Infrastructure +433157,Infrastructure,Infrastructure +433153,Infrastructure,Infrastructure +432145,Infrastructure,Infrastructure +432144,Infrastructure,Infrastructure +430695,Infrastructure,Infrastructure +430680,Infrastructure,Infrastructure +427912,Infrastructure,Infrastructure +427911,Infrastructure,Infrastructure +425485,Infrastructure,Infrastructure +425483,Infrastructure,Infrastructure +423430,Infrastructure,Infrastructure +423429,Infrastructure,Infrastructure +423428,Infrastructure,Infrastructure +421807,Infrastructure,Infrastructure +421776,Infrastructure,Infrastructure +418878,Infrastructure,Infrastructure +418874,Infrastructure,Infrastructure +418867,Infrastructure,Infrastructure +418866,Infrastructure,Infrastructure +417672,Infrastructure,Infrastructure +417671,Infrastructure,Infrastructure +417670,Infrastructure,Infrastructure +414826,Infrastructure,Infrastructure +414824,Infrastructure,Infrastructure +414822,Infrastructure,Infrastructure +414812,Infrastructure,Infrastructure +411596,Infrastructure,Infrastructure +411595,Infrastructure,Infrastructure +411594,Infrastructure,Infrastructure +411582,Infrastructure,Infrastructure +408602,Infrastructure,Infrastructure +408585,Infrastructure,Infrastructure +407146,Infrastructure,Infrastructure +407145,Infrastructure,Infrastructure +404870,Infrastructure,Infrastructure +404577,Infrastructure,Infrastructure +402643,Infrastructure,Infrastructure +450356,Internal Trade,Internal Trade +399590,Internal Trade,Internal Trade +361231,Internal Trade,Internal Trade +201667,Internal Trade,Internal Trade +191586,Internal Trade,Internal Trade +460076,International Relations,International Relations +458175,International Relations,International Relations +97390,International Relations,International Relations +161222,International Relations,International Relations +161219,International Relations,International Relations +151504,International Relations,International Relations +151502,International Relations,International Relations +328103,International Relations,International Relations +291771,International Relations,International Relations +249091,International Relations,International Relations +249090,International Relations,International Relations +249089,International Relations,International Relations +232295,International Relations,International Relations +362668,International Relations,International Relations +336798,International Relations,International Relations +528080,International Relations,International Relations +474952,International Relations,International Relations +159227,Transportation,Transportation +93108,Energy,Energy +93108,Environment,Environment +99918,Environment,Environment +103815,Energy,Energy +93107,Environment,Environment +314489,Industry,Industry +229849,Energy,Energy +97677,Environment,Environment +226707,Industry,Industry +158373,Defence,Defence +102143,Employment and Training,Employment and Training +477862,Energy,Energy +422482,Environment,Environment +102115,Infrastructure,Infrastructure +102143,International Relations,International Relations +417195,International Trade,International Trade +466873,Taxation and Finance,Taxation and Finance +167146,Environment,Environment +167150,Forestry,Forestry +131595,Mining,Mining +97515,Agriculture,Agriculture +437173,Agriculture,Agriculture +446656,Consumer Issues,Consumer Issues +277273,Employment and Training,Employment and Training +265078,Energy,Energy +446646,Environment,Environment +446656,Health,Health +188948,Infrastructure,Infrastructure +188948,Transportation,Transportation +447467,Environment,Environment +477238,Infrastructure,Infrastructure +480813,Taxation and Finance,Taxation and Finance +493160,Transportation,Transportation +166213,Environment,Environment +109554,Consumer Issues,Consumer Issues +152243,Labour,Labour +139174,Transportation,Transportation +436430,International Trade,International Trade +136654,Government Procurement,Government Procurement +101385,Government Procurement,Government Procurement +101385,Regional Development,Regional Development +157933,Consumer Issues,Consumer Issues +535403,Environment,Environment +377804,Fisheries,Fisheries +535403,Industry,Industry +485461,Infrastructure,Infrastructure +536086,Regional Development,Regional Development +377803,Small Business,Small Business +425387,Sports,Sports +442900,Taxation and Finance,Taxation and Finance +500404,Tourism,Tourism +534717,Transportation,Transportation +99956,Financial Institutions,Financial Institutions +232109,Infrastructure,Infrastructure +386843,Education,Education +359302,Employment and Training,Employment and Training +152601,Health,Health +188405,Industry,Industry +188504,Intellectual Property,Intellectual Property +144501,Taxation and Finance,Taxation and Finance +97214,Energy,Energy +78614,Environment,Environment +76874,Industry,Industry +316689,Defence,Defence +448583,Environment,Environment +511664,Government Procurement,Government Procurement +519009,Health,Health +411093,Industry,Industry +187386,Infrastructure,Infrastructure +353731,Health,Health +383093,Industry,Industry +274509,Intellectual Property,Intellectual Property +519917,Agriculture,Agriculture +264520,International Trade,International Trade +525501,Labour,Labour +169610,Transportation,Transportation +416730,International Relations,International Relations +135515,Other,International Development Assistance +409849,Energy,Energy +380676,Environment,Environment +363922,Industry,Industry +409849,Regional Development,Regional Development +175747,Agriculture,Agriculture +150938,Consumer Issues,Consumer Issues +118163,Energy,Energy +175745,Financial Institutions,Financial Institutions +156586,Health,Health +200001,Intellectual Property,Intellectual Property +454912,Education,Education +85381,Agriculture,Agriculture +85381,International Trade,International Trade +210391,Industry,Industry +210391,Small Business,Small Business +210391,Taxation and Finance,Taxation and Finance +434010,Energy,Energy +90485,Environment,Environment +441206,Industry,Industry +368886,Infrastructure,Infrastructure +380471,International Relations,International Relations +218147,Mining,Mining +230484,Regional Development,Regional Development +542100,Taxation and Finance,Taxation and Finance +515814,Transportation,Transportation +456285,Health,Health +174712,Justice and Law Enforcement,Justice and Law Enforcement +440313,Taxation and Finance,Taxation and Finance +397746,Energy,Energy +512573,Environment,Environment +382610,Financial Institutions,Financial Institutions +399592,Fisheries,Fisheries +395601,Government Procurement,Government Procurement +399587,Health,Health +365272,Immigration,Immigration +319157,Industry,Industry +402642,Infrastructure,Infrastructure +452510,Internal Trade,Internal Trade +472548,International Relations,International Relations +349924,International Trade,International Trade +439025,Justice and Law Enforcement,Justice and Law Enforcement +361223,Regional Development,Regional Development +414832,Taxation and Finance,Taxation and Finance +474977,Transportation,Transportation +109257,Other,Rural +138678,Other,Community safety and crime prevention +131774,Other,Broadband +88106,Other,Homelessness +348257,Agriculture,Agriculture +301049,International Trade,International Trade +336309,International Trade,International Trade +331404,International Trade,International Trade +121534,International Trade,International Trade +216450,International Trade,International Trade +216448,International Trade,International Trade +210730,International Trade,International Trade +201676,International Trade,International Trade +201675,International Trade,International Trade +201674,International Trade,International Trade +201668,International Trade,International Trade +191607,International Trade,International Trade +188774,International Trade,International Trade +188756,International Trade,International Trade +277338,International Trade,International Trade +277311,International Trade,International Trade +269115,International Trade,International Trade +269114,International Trade,International Trade +264263,International Trade,International Trade +239950,International Trade,International Trade +221628,International Trade,International Trade +221607,International Trade,International Trade +216473,International Trade,International Trade +399604,International Trade,International Trade +399589,International Trade,International Trade +397935,International Trade,International Trade +397901,International Trade,International Trade +358063,International Trade,International Trade +432136,Justice and Law Enforcement,Justice and Law Enforcement +399605,Justice and Law Enforcement,Justice and Law Enforcement +188751,Justice and Law Enforcement,Justice and Law Enforcement +188748,Justice and Law Enforcement,Justice and Law Enforcement +188746,Justice and Law Enforcement,Justice and Law Enforcement +188743,Justice and Law Enforcement,Justice and Law Enforcement +171348,Justice and Law Enforcement,Justice and Law Enforcement +361231,Justice and Law Enforcement,Justice and Law Enforcement +347613,Justice and Law Enforcement,Justice and Law Enforcement +291793,Justice and Law Enforcement,Justice and Law Enforcement +534076,Justice and Law Enforcement,Justice and Law Enforcement +534073,Justice and Law Enforcement,Justice and Law Enforcement +534071,Justice and Law Enforcement,Justice and Law Enforcement +534054,Justice and Law Enforcement,Justice and Law Enforcement +447848,Justice and Law Enforcement,Justice and Law Enforcement +443532,Justice and Law Enforcement,Justice and Law Enforcement +439027,Justice and Law Enforcement,Justice and Law Enforcement +353595,Regional Development,Regional Development +455814,Regional Development,Regional Development +414829,Taxation and Finance,Taxation and Finance +414818,Taxation and Finance,Taxation and Finance +382605,Taxation and Finance,Taxation and Finance +349918,Taxation and Finance,Taxation and Finance +474988,Taxation and Finance,Taxation and Finance +474970,Taxation and Finance,Taxation and Finance +443529,Taxation and Finance,Taxation and Finance +417669,Taxation and Finance,Taxation and Finance +417663,Taxation and Finance,Taxation and Finance +417661,Taxation and Finance,Taxation and Finance +417660,Taxation and Finance,Taxation and Finance +417659,Taxation and Finance,Taxation and Finance +417654,Taxation and Finance,Taxation and Finance +417649,Taxation and Finance,Taxation and Finance +417648,Taxation and Finance,Taxation and Finance +470212,Transportation,Transportation +467007,Transportation,Transportation +315957,Transportation,Transportation +315956,Transportation,Transportation +315954,Transportation,Transportation +315949,Transportation,Transportation +309788,Transportation,Transportation +309781,Transportation,Transportation +304067,Transportation,Transportation +296760,Transportation,Transportation +296759,Transportation,Transportation +286777,Transportation,Transportation +281670,Transportation,Transportation +374823,Transportation,Transportation +374812,Transportation,Transportation +374807,Transportation,Transportation +370676,Transportation,Transportation +365198,Transportation,Transportation +365178,Transportation,Transportation +359753,Transportation,Transportation +358166,Transportation,Transportation +358066,Transportation,Transportation +353312,Transportation,Transportation +353308,Transportation,Transportation +353305,Transportation,Transportation +349927,Transportation,Transportation +349926,Transportation,Transportation +349925,Transportation,Transportation +349036,Transportation,Transportation +349032,Transportation,Transportation +349025,Transportation,Transportation +349019,Transportation,Transportation +347632,Transportation,Transportation +347631,Transportation,Transportation +347630,Transportation,Transportation +341607,Transportation,Transportation +338940,Transportation,Transportation +338939,Transportation,Transportation +338932,Transportation,Transportation +338931,Transportation,Transportation +338929,Transportation,Transportation +335854,Transportation,Transportation +335812,Transportation,Transportation +335801,Transportation,Transportation +333323,Transportation,Transportation +333320,Transportation,Transportation +333318,Transportation,Transportation +333315,Transportation,Transportation +331424,Transportation,Transportation +330123,Transportation,Transportation +330122,Transportation,Transportation +330121,Transportation,Transportation +328109,Transportation,Transportation +328108,Transportation,Transportation +328104,Transportation,Transportation +324989,Transportation,Transportation +324980,Transportation,Transportation +324978,Transportation,Transportation +324974,Transportation,Transportation +322179,Transportation,Transportation +322176,Transportation,Transportation +319165,Transportation,Transportation +460088,Transportation,Transportation +447840,Transportation,Transportation +445303,Transportation,Transportation +442173,Transportation,Transportation +439095,Transportation,Transportation +432147,Transportation,Transportation +399595,Transportation,Transportation +399594,Transportation,Transportation +399590,Transportation,Transportation +397933,Transportation,Transportation +397907,Transportation,Transportation +393982,Transportation,Transportation +391122,Transportation,Transportation +382529,Transportation,Transportation +381297,Transportation,Transportation +376892,Transportation,Transportation +376879,Transportation,Transportation +528075,Transportation,Transportation +517432,Transportation,Transportation +517415,Transportation,Transportation +514141,Transportation,Transportation +510470,Transportation,Transportation +510454,Transportation,Transportation +510442,Transportation,Transportation +507205,Transportation,Transportation +504233,Transportation,Transportation +497814,Transportation,Transportation +497812,Transportation,Transportation +497810,Transportation,Transportation +497747,Transportation,Transportation +497746,Transportation,Transportation +497745,Transportation,Transportation +497744,Transportation,Transportation +497691,Transportation,Transportation +497688,Transportation,Transportation +497687,Transportation,Transportation +497686,Transportation,Transportation +497685,Transportation,Transportation +497683,Transportation,Transportation +492663,Transportation,Transportation +489551,Transportation,Transportation +489495,Transportation,Transportation +489492,Transportation,Transportation +138677,Other,Community safety and crime prevention +138676,Other,Community safety and crime prevention +138682,Other,Community safety and crime prevention +138680,Other,Community safety and crime prevention +138679,Other,Community safety and crime prevention +325217,Agriculture,Agriculture +320690,Agriculture,Agriculture +320689,Agriculture,Agriculture +309675,Agriculture,Agriculture +301049,Agriculture,Agriculture +286992,Agriculture,Agriculture +275169,Agriculture,Agriculture +266311,Agriculture,Agriculture +266310,Agriculture,Agriculture +266309,Agriculture,Agriculture +385949,Agriculture,Agriculture +360370,Agriculture,Agriculture +360369,Agriculture,Agriculture +360367,Agriculture,Agriculture +350000,Agriculture,Agriculture +349997,Agriculture,Agriculture +365782,International Trade,International Trade +349999,International Trade,International Trade +539280,International Trade,International Trade +536514,International Trade,International Trade +350861,International Trade,International Trade +350851,International Trade,International Trade +350847,International Trade,International Trade +527453,International Trade,International Trade +526993,International Trade,International Trade +500788,International Trade,International Trade +481830,International Trade,International Trade +447511,International Trade,International Trade +436958,International Trade,International Trade +436956,International Trade,International Trade +432825,International Trade,International Trade +432824,International Trade,International Trade +418546,International Trade,International Trade +408483,International Trade,International Trade +395288,International Trade,International Trade +526993,Transportation,Transportation +521714,Transportation,Transportation +187385,Transportation,Transportation +313041,Energy,Energy +313038,Energy,Energy +152165,Energy,Energy +175414,Energy,Energy +330871,Energy,Energy +330387,Energy,Energy +313038,Environment,Environment +443889,Consumer Issues,Consumer Issues +443887,Consumer Issues,Consumer Issues +167112,Consumer Issues,Consumer Issues +273709,Consumer Issues,Consumer Issues +267755,Consumer Issues,Consumer Issues +250343,Consumer Issues,Consumer Issues +245354,Consumer Issues,Consumer Issues +233189,Consumer Issues,Consumer Issues +225668,Consumer Issues,Consumer Issues +216048,Consumer Issues,Consumer Issues +357698,Consumer Issues,Consumer Issues +357697,Consumer Issues,Consumer Issues +357696,Consumer Issues,Consumer Issues +356373,Consumer Issues,Consumer Issues +356369,Consumer Issues,Consumer Issues +356363,Consumer Issues,Consumer Issues +356361,Consumer Issues,Consumer Issues +356352,Consumer Issues,Consumer Issues +351179,Consumer Issues,Consumer Issues +351178,Consumer Issues,Consumer Issues +343560,Consumer Issues,Consumer Issues +343558,Consumer Issues,Consumer Issues +335407,Consumer Issues,Consumer Issues +335406,Consumer Issues,Consumer Issues +331166,Consumer Issues,Consumer Issues +331165,Consumer Issues,Consumer Issues +331164,Consumer Issues,Consumer Issues +329827,Consumer Issues,Consumer Issues +329826,Consumer Issues,Consumer Issues +327135,Consumer Issues,Consumer Issues +327129,Consumer Issues,Consumer Issues +324964,Consumer Issues,Consumer Issues +324963,Consumer Issues,Consumer Issues +324958,Consumer Issues,Consumer Issues +324949,Consumer Issues,Consumer Issues +324946,Consumer Issues,Consumer Issues +324941,Consumer Issues,Consumer Issues +321355,Consumer Issues,Consumer Issues +321354,Consumer Issues,Consumer Issues +321353,Consumer Issues,Consumer Issues +321350,Consumer Issues,Consumer Issues +321348,Consumer Issues,Consumer Issues +321346,Consumer Issues,Consumer Issues +321343,Consumer Issues,Consumer Issues +321341,Consumer Issues,Consumer Issues +321339,Consumer Issues,Consumer Issues +321338,Consumer Issues,Consumer Issues +321337,Consumer Issues,Consumer Issues +321336,Consumer Issues,Consumer Issues +321335,Consumer Issues,Consumer Issues +321334,Consumer Issues,Consumer Issues +321333,Consumer Issues,Consumer Issues +321332,Consumer Issues,Consumer Issues +313208,Consumer Issues,Consumer Issues +313206,Consumer Issues,Consumer Issues +313204,Consumer Issues,Consumer Issues +438313,Consumer Issues,Consumer Issues +428070,Consumer Issues,Consumer Issues +425937,Consumer Issues,Consumer Issues +418082,Consumer Issues,Consumer Issues +418079,Consumer Issues,Consumer Issues +413457,Consumer Issues,Consumer Issues +400814,Consumer Issues,Consumer Issues +400813,Consumer Issues,Consumer Issues +400811,Consumer Issues,Consumer Issues +400808,Consumer Issues,Consumer Issues +400805,Consumer Issues,Consumer Issues +400795,Consumer Issues,Consumer Issues +395963,Consumer Issues,Consumer Issues +394025,Consumer Issues,Consumer Issues +389222,Consumer Issues,Consumer Issues +389221,Consumer Issues,Consumer Issues +389220,Consumer Issues,Consumer Issues +388455,Consumer Issues,Consumer Issues +388445,Consumer Issues,Consumer Issues +386549,Consumer Issues,Consumer Issues +385113,Consumer Issues,Consumer Issues +376467,Consumer Issues,Consumer Issues +376466,Consumer Issues,Consumer Issues +376464,Consumer Issues,Consumer Issues +376462,Consumer Issues,Consumer Issues +376461,Consumer Issues,Consumer Issues +376453,Consumer Issues,Consumer Issues +374781,Consumer Issues,Consumer Issues +374777,Consumer Issues,Consumer Issues +374776,Consumer Issues,Consumer Issues +374769,Consumer Issues,Consumer Issues +374752,Consumer Issues,Consumer Issues +374751,Consumer Issues,Consumer Issues +372488,Consumer Issues,Consumer Issues +372487,Consumer Issues,Consumer Issues +372485,Consumer Issues,Consumer Issues +372484,Consumer Issues,Consumer Issues +372481,Consumer Issues,Consumer Issues +372480,Consumer Issues,Consumer Issues +372477,Consumer Issues,Consumer Issues +372475,Consumer Issues,Consumer Issues +372467,Consumer Issues,Consumer Issues +372466,Consumer Issues,Consumer Issues +372464,Consumer Issues,Consumer Issues +372462,Consumer Issues,Consumer Issues +372460,Consumer Issues,Consumer Issues +458192,Consumer Issues,Consumer Issues +454974,Consumer Issues,Consumer Issues +454973,Consumer Issues,Consumer Issues +454972,Consumer Issues,Consumer Issues +454971,Consumer Issues,Consumer Issues +452601,Consumer Issues,Consumer Issues +452600,Consumer Issues,Consumer Issues +452598,Consumer Issues,Consumer Issues +449864,Consumer Issues,Consumer Issues +447882,Consumer Issues,Consumer Issues +447735,Consumer Issues,Consumer Issues +445423,Consumer Issues,Consumer Issues +388455,Environment,Environment +388445,Environment,Environment +85385,Environment,Environment +85375,Environment,Environment +85373,Environment,Environment +85372,Environment,Environment +85369,Environment,Environment +82808,Environment,Environment +82807,Environment,Environment +148088,Environment,Environment +174774,Environment,Environment +173177,Environment,Environment +173174,Environment,Environment +173172,Environment,Environment +376464,Environment,Environment +376462,Environment,Environment +376461,Environment,Environment +376453,Environment,Environment +372477,Environment,Environment +359761,Environment,Environment +359760,Environment,Environment +351180,Environment,Environment +335407,Environment,Environment +335406,Environment,Environment +230128,Environment,Environment +230119,Environment,Environment +225671,Environment,Environment +216048,Environment,Environment +535522,Environment,Environment +535517,Environment,Environment +413457,Health,Health +400814,Health,Health +129129,Health,Health +85373,Health,Health +85372,Health,Health +85369,Health,Health +82808,Health,Health +82807,Health,Health +77857,Health,Health +216048,Health,Health +207405,Health,Health +174774,Health,Health +173180,Health,Health +173177,Health,Health +173174,Health,Health +173172,Health,Health +321355,Health,Health +321354,Health,Health +321353,Health,Health +321350,Health,Health +321348,Health,Health +321346,Health,Health +321343,Health,Health +321341,Health,Health +321339,Health,Health +321338,Health,Health +321337,Health,Health +321336,Health,Health +321335,Health,Health +321334,Health,Health +321333,Health,Health +321332,Health,Health +313208,Health,Health +313204,Health,Health +300890,Health,Health +273709,Health,Health +267755,Health,Health +245354,Health,Health +240869,Health,Health +233189,Health,Health +230128,Health,Health +225668,Health,Health +222087,Health,Health +222067,Health,Health +400813,Health,Health +400811,Health,Health +400808,Health,Health +400805,Health,Health +400795,Health,Health +394025,Health,Health +389222,Health,Health +389221,Health,Health +389220,Health,Health +388455,Health,Health +388445,Health,Health +386549,Health,Health +385113,Health,Health +380714,Health,Health +376467,Health,Health +376466,Health,Health +376464,Health,Health +376462,Health,Health +376461,Health,Health +376453,Health,Health +374781,Health,Health +374777,Health,Health +374776,Health,Health +374769,Health,Health +374752,Health,Health +374751,Health,Health +372488,Health,Health +372487,Health,Health +372485,Health,Health +372484,Health,Health +372481,Health,Health +372480,Health,Health +372477,Health,Health +372475,Health,Health +372467,Health,Health +372466,Health,Health +372464,Health,Health +372462,Health,Health +372460,Health,Health +372449,Health,Health +365008,Health,Health +357698,Health,Health +357697,Health,Health +357696,Health,Health +356373,Health,Health +356369,Health,Health +356363,Health,Health +356361,Health,Health +356352,Health,Health +351179,Health,Health +351178,Health,Health +343560,Health,Health +343558,Health,Health +331166,Health,Health +331165,Health,Health +331164,Health,Health +329827,Health,Health +329826,Health,Health +327135,Health,Health +327129,Health,Health +324964,Health,Health +324963,Health,Health +324958,Health,Health +324949,Health,Health +324946,Health,Health +324941,Health,Health +527640,Health,Health +497187,Health,Health +497186,Health,Health +467179,Health,Health +458192,Health,Health +454974,Health,Health +454973,Health,Health +454972,Health,Health +454971,Health,Health +452601,Health,Health +452600,Health,Health +452598,Health,Health +449864,Health,Health +447882,Health,Health +447735,Health,Health +445423,Health,Health +445422,Health,Health +443889,Health,Health +443887,Health,Health +438313,Health,Health +428070,Health,Health +425937,Health,Health +423382,Health,Health +418082,Health,Health +445423,Industry,Industry +445422,Industry,Industry +85385,Industry,Industry +85375,Industry,Industry +82808,Industry,Industry +273709,Industry,Industry +250343,Industry,Industry +240869,Industry,Industry +230128,Industry,Industry +225671,Industry,Industry +216048,Industry,Industry +207405,Industry,Industry +173180,Industry,Industry +173177,Industry,Industry +173174,Industry,Industry +173172,Industry,Industry +167112,Industry,Industry +438313,Industry,Industry +428070,Industry,Industry +425937,Industry,Industry +413457,Industry,Industry +400814,Industry,Industry +400813,Industry,Industry +400811,Industry,Industry +400808,Industry,Industry +400805,Industry,Industry +400795,Industry,Industry +395963,Industry,Industry +394025,Industry,Industry +389222,Industry,Industry +389221,Industry,Industry +389220,Industry,Industry +388455,Industry,Industry +388445,Industry,Industry +386549,Industry,Industry +385113,Industry,Industry +376467,Industry,Industry +376466,Industry,Industry +376464,Industry,Industry +376462,Industry,Industry +376461,Industry,Industry +376453,Industry,Industry +374781,Industry,Industry +374777,Industry,Industry +374776,Industry,Industry +374769,Industry,Industry +374752,Industry,Industry +374751,Industry,Industry +372488,Industry,Industry +372487,Industry,Industry +372485,Industry,Industry +372484,Industry,Industry +372481,Industry,Industry +372480,Industry,Industry +372477,Industry,Industry +372475,Industry,Industry +372467,Industry,Industry +372466,Industry,Industry +372464,Industry,Industry +372462,Industry,Industry +372460,Industry,Industry +372449,Industry,Industry +357697,Industry,Industry +357696,Industry,Industry +351179,Industry,Industry +351178,Industry,Industry +313206,Industry,Industry +458192,Industry,Industry +454974,Industry,Industry +454973,Industry,Industry +454972,Industry,Industry +454971,Industry,Industry +452601,Industry,Industry +452600,Industry,Industry +452598,Industry,Industry +447882,Industry,Industry +359761,Internal Trade,Internal Trade +359760,Internal Trade,Internal Trade +207405,Internal Trade,Internal Trade +331164,Internal Trade,Internal Trade +273709,Internal Trade,Internal Trade +245354,Internal Trade,Internal Trade +222087,Internal Trade,Internal Trade +222067,Internal Trade,Internal Trade +216048,Internal Trade,Internal Trade +240869,International Relations,International Relations +438313,International Relations,International Relations +222067,International Relations,International Relations +419416,International Relations,International Relations +372477,International Relations,International Relations +395963,International Trade,International Trade +394025,International Trade,International Trade +167112,International Trade,International Trade +85385,International Trade,International Trade +85375,International Trade,International Trade +82807,International Trade,International Trade +321353,International Trade,International Trade +321350,International Trade,International Trade +321348,International Trade,International Trade +321346,International Trade,International Trade +321343,International Trade,International Trade +321341,International Trade,International Trade +321339,International Trade,International Trade +321338,International Trade,International Trade +321337,International Trade,International Trade +321336,International Trade,International Trade +321335,International Trade,International Trade +321334,International Trade,International Trade +321333,International Trade,International Trade +321332,International Trade,International Trade +313208,International Trade,International Trade +313206,International Trade,International Trade +273709,International Trade,International Trade +267755,International Trade,International Trade +250343,International Trade,International Trade +245354,International Trade,International Trade +240869,International Trade,International Trade +233189,International Trade,International Trade +233169,International Trade,International Trade +230128,International Trade,International Trade +222087,International Trade,International Trade +222067,International Trade,International Trade +216048,International Trade,International Trade +389222,International Trade,International Trade +389221,International Trade,International Trade +389220,International Trade,International Trade +388455,International Trade,International Trade +388445,International Trade,International Trade +386549,International Trade,International Trade +385113,International Trade,International Trade +380714,International Trade,International Trade +376467,International Trade,International Trade +376466,International Trade,International Trade +376464,International Trade,International Trade +376462,International Trade,International Trade +376461,International Trade,International Trade +376453,International Trade,International Trade +374781,International Trade,International Trade +374777,International Trade,International Trade +374776,International Trade,International Trade +374769,International Trade,International Trade +374752,International Trade,International Trade +374751,International Trade,International Trade +372488,International Trade,International Trade +372487,International Trade,International Trade +372485,International Trade,International Trade +372484,International Trade,International Trade +372481,International Trade,International Trade +372480,International Trade,International Trade +372475,International Trade,International Trade +372467,International Trade,International Trade +372466,International Trade,International Trade +372464,International Trade,International Trade +372462,International Trade,International Trade +372460,International Trade,International Trade +365008,International Trade,International Trade +359761,International Trade,International Trade +359760,International Trade,International Trade +357697,International Trade,International Trade +357696,International Trade,International Trade +351179,International Trade,International Trade +351178,International Trade,International Trade +331166,International Trade,International Trade +331165,International Trade,International Trade +329827,International Trade,International Trade +329826,International Trade,International Trade +327135,International Trade,International Trade +327129,International Trade,International Trade +324964,International Trade,International Trade +324963,International Trade,International Trade +324958,International Trade,International Trade +324949,International Trade,International Trade +324946,International Trade,International Trade +324941,International Trade,International Trade +321355,International Trade,International Trade +321354,International Trade,International Trade +458192,International Trade,International Trade +454974,International Trade,International Trade +454973,International Trade,International Trade +454972,International Trade,International Trade +454971,International Trade,International Trade +452601,International Trade,International Trade +452600,International Trade,International Trade +452598,International Trade,International Trade +449864,International Trade,International Trade +447882,International Trade,International Trade +447735,International Trade,International Trade +445423,International Trade,International Trade +445422,International Trade,International Trade +443889,International Trade,International Trade +443887,International Trade,International Trade +438313,International Trade,International Trade +428070,International Trade,International Trade +425937,International Trade,International Trade +419416,International Trade,International Trade +413505,International Trade,International Trade +400814,International Trade,International Trade +400813,International Trade,International Trade +400811,International Trade,International Trade +400808,International Trade,International Trade +400805,International Trade,International Trade +472379,Consumer Issues,Consumer Issues +437882,Consumer Issues,Consumer Issues +94978,Consumer Issues,Consumer Issues +492238,Consumer Issues,Consumer Issues +375653,Defence,Defence +375235,Defence,Defence +97379,Defence,Defence +95595,Defence,Defence +93422,Defence,Defence +93419,Defence,Defence +93418,Defence,Defence +93417,Defence,Defence +88002,Defence,Defence +87998,Defence,Defence +84295,Defence,Defence +84294,Defence,Defence +142775,Defence,Defence +142774,Defence,Defence +129014,Defence,Defence +129009,Defence,Defence +129007,Defence,Defence +124882,Defence,Defence +124880,Defence,Defence +124879,Defence,Defence +124875,Defence,Defence +109656,Defence,Defence +109655,Defence,Defence +106175,Defence,Defence +106155,Defence,Defence +161733,Defence,Defence +161732,Defence,Defence +375229,Defence,Defence +375086,Defence,Defence +373703,Defence,Defence +373550,Defence,Defence +372625,Defence,Defence +372619,Defence,Defence +370089,Defence,Defence +370088,Defence,Defence +370087,Defence,Defence +370085,Defence,Defence +370082,Defence,Defence +400378,Defence,Defence +399374,Defence,Defence +399373,Defence,Defence +399372,Defence,Defence +394899,Defence,Defence +392007,Defence,Defence +389556,Defence,Defence +388830,Defence,Defence +388829,Defence,Defence +388827,Defence,Defence +388826,Defence,Defence +385175,Defence,Defence +378077,Defence,Defence +378075,Defence,Defence +378074,Defence,Defence +388830,Employment and Training,Employment and Training +388829,Employment and Training,Employment and Training +109657,Employment and Training,Employment and Training +370089,Employment and Training,Employment and Training +370088,Employment and Training,Employment and Training +370087,Employment and Training,Employment and Training +370085,Employment and Training,Employment and Training +370085,Government Procurement,Government Procurement +370082,Government Procurement,Government Procurement +399373,Government Procurement,Government Procurement +399372,Government Procurement,Government Procurement +392007,Government Procurement,Government Procurement +389556,Government Procurement,Government Procurement +388829,Government Procurement,Government Procurement +378077,Government Procurement,Government Procurement +378075,Government Procurement,Government Procurement +378074,Government Procurement,Government Procurement +376229,Government Procurement,Government Procurement +375653,Government Procurement,Government Procurement +375235,Government Procurement,Government Procurement +375229,Government Procurement,Government Procurement +375086,Government Procurement,Government Procurement +373703,Government Procurement,Government Procurement +373550,Government Procurement,Government Procurement +372625,Government Procurement,Government Procurement +372619,Government Procurement,Government Procurement +370089,Government Procurement,Government Procurement +370088,Government Procurement,Government Procurement +370088,Industry,Industry +370087,Industry,Industry +109656,Industry,Industry +95595,Industry,Industry +84294,Industry,Industry +370085,Industry,Industry +370082,Industry,Industry +159031,Industry,Industry +159030,Industry,Industry +109657,Industry,Industry +400378,Industry,Industry +399374,Industry,Industry +399373,Industry,Industry +399372,Industry,Industry +394899,Industry,Industry +389556,Industry,Industry +388830,Industry,Industry +388829,Industry,Industry +388827,Industry,Industry +388826,Industry,Industry +385969,Industry,Industry +385175,Industry,Industry +384082,Industry,Industry +384081,Industry,Industry +378074,Industry,Industry +375653,Industry,Industry +370085,International Relations,International Relations +370082,International Relations,International Relations +161733,International Relations,International Relations +161732,International Relations,International Relations +159031,International Relations,International Relations +159030,International Relations,International Relations +388830,International Relations,International Relations +388829,International Relations,International Relations +388827,International Relations,International Relations +388826,International Relations,International Relations +372625,International Relations,International Relations +372619,International Relations,International Relations +370089,International Relations,International Relations +370088,International Relations,International Relations +159030,Regional Development,Regional Development +470114,Agriculture,Agriculture +470109,Agriculture,Agriculture +90634,Agriculture,Agriculture +90627,Agriculture,Agriculture +90624,Agriculture,Agriculture +88068,Agriculture,Agriculture +87773,Agriculture,Agriculture +85094,Agriculture,Agriculture +82919,Agriculture,Agriculture +76142,Agriculture,Agriculture +109717,Agriculture,Agriculture +109714,Agriculture,Agriculture +109708,Agriculture,Agriculture +109702,Agriculture,Agriculture +109184,Agriculture,Agriculture +106460,Agriculture,Agriculture +106458,Agriculture,Agriculture +101408,Agriculture,Agriculture +101401,Agriculture,Agriculture +101054,Agriculture,Agriculture +97433,Agriculture,Agriculture +97427,Agriculture,Agriculture +97419,Agriculture,Agriculture +93713,Agriculture,Agriculture +93709,Agriculture,Agriculture +167522,Agriculture,Agriculture +167521,Agriculture,Agriculture +167520,Agriculture,Agriculture +165784,Agriculture,Agriculture +163598,Agriculture,Agriculture +162549,Agriculture,Agriculture +159526,Agriculture,Agriculture +157036,Agriculture,Agriculture +157033,Agriculture,Agriculture +157031,Agriculture,Agriculture +157027,Agriculture,Agriculture +157026,Agriculture,Agriculture +157025,Agriculture,Agriculture +157023,Agriculture,Agriculture +157022,Agriculture,Agriculture +157021,Agriculture,Agriculture +157020,Agriculture,Agriculture +157018,Agriculture,Agriculture +157016,Agriculture,Agriculture +157015,Agriculture,Agriculture +152213,Agriculture,Agriculture +152212,Agriculture,Agriculture +152211,Agriculture,Agriculture +145993,Agriculture,Agriculture +136194,Agriculture,Agriculture +132888,Agriculture,Agriculture +132860,Agriculture,Agriculture +132856,Agriculture,Agriculture +132848,Agriculture,Agriculture +125221,Agriculture,Agriculture +121397,Agriculture,Agriculture +268774,Agriculture,Agriculture +268756,Agriculture,Agriculture +264524,Agriculture,Agriculture +264522,Agriculture,Agriculture +250633,Agriculture,Agriculture +249709,Agriculture,Agriculture +249704,Agriculture,Agriculture +249701,Agriculture,Agriculture +249699,Agriculture,Agriculture +249695,Agriculture,Agriculture +241213,Agriculture,Agriculture +241008,Agriculture,Agriculture +240429,Agriculture,Agriculture +238549,Agriculture,Agriculture +230409,Agriculture,Agriculture +230405,Agriculture,Agriculture +227334,Agriculture,Agriculture +227328,Agriculture,Agriculture +227326,Agriculture,Agriculture +223546,Agriculture,Agriculture +223545,Agriculture,Agriculture +223537,Agriculture,Agriculture +223528,Agriculture,Agriculture +223527,Agriculture,Agriculture +223503,Agriculture,Agriculture +223491,Agriculture,Agriculture +211875,Agriculture,Agriculture +209787,Agriculture,Agriculture +209769,Agriculture,Agriculture +207504,Agriculture,Agriculture +207499,Agriculture,Agriculture +205219,Agriculture,Agriculture +205214,Agriculture,Agriculture +202127,Agriculture,Agriculture +202107,Agriculture,Agriculture +199750,Agriculture,Agriculture +199736,Agriculture,Agriculture +189635,Agriculture,Agriculture +189632,Agriculture,Agriculture +180376,Agriculture,Agriculture +180375,Agriculture,Agriculture +180373,Agriculture,Agriculture +175630,Agriculture,Agriculture +175361,Agriculture,Agriculture +172829,Agriculture,Agriculture +172828,Agriculture,Agriculture +172827,Agriculture,Agriculture +170423,Agriculture,Agriculture +170422,Agriculture,Agriculture +170421,Agriculture,Agriculture +170420,Agriculture,Agriculture +170419,Agriculture,Agriculture +170418,Agriculture,Agriculture +170417,Agriculture,Agriculture +170416,Agriculture,Agriculture +170415,Agriculture,Agriculture +170414,Agriculture,Agriculture +170413,Agriculture,Agriculture +170409,Agriculture,Agriculture +170408,Agriculture,Agriculture +170407,Agriculture,Agriculture +170406,Agriculture,Agriculture +170405,Agriculture,Agriculture +170404,Agriculture,Agriculture +170386,Agriculture,Agriculture +170382,Agriculture,Agriculture +170381,Agriculture,Agriculture +170379,Agriculture,Agriculture +170378,Agriculture,Agriculture +170376,Agriculture,Agriculture +170375,Agriculture,Agriculture +170373,Agriculture,Agriculture +170372,Agriculture,Agriculture +170371,Agriculture,Agriculture +170370,Agriculture,Agriculture +170369,Agriculture,Agriculture +170368,Agriculture,Agriculture +170367,Agriculture,Agriculture +170366,Agriculture,Agriculture +170365,Agriculture,Agriculture +170363,Agriculture,Agriculture +170362,Agriculture,Agriculture +170361,Agriculture,Agriculture +170360,Agriculture,Agriculture +170359,Agriculture,Agriculture +170358,Agriculture,Agriculture +170357,Agriculture,Agriculture +170356,Agriculture,Agriculture +170355,Agriculture,Agriculture +170354,Agriculture,Agriculture +170265,Agriculture,Agriculture +170245,Agriculture,Agriculture +167568,Agriculture,Agriculture +167567,Agriculture,Agriculture +167565,Agriculture,Agriculture +167527,Agriculture,Agriculture +167526,Agriculture,Agriculture +167525,Agriculture,Agriculture +167524,Agriculture,Agriculture +167523,Agriculture,Agriculture +466100,Agriculture,Agriculture +466095,Agriculture,Agriculture +466091,Agriculture,Agriculture +466073,Agriculture,Agriculture +466071,Agriculture,Agriculture +466070,Agriculture,Agriculture +466068,Agriculture,Agriculture +466067,Agriculture,Agriculture +464001,Agriculture,Agriculture +463224,Agriculture,Agriculture +463223,Agriculture,Agriculture +462034,Agriculture,Agriculture +462033,Agriculture,Agriculture +462032,Agriculture,Agriculture +462031,Agriculture,Agriculture +460918,Agriculture,Agriculture +460853,Agriculture,Agriculture +459542,Agriculture,Agriculture +459537,Agriculture,Agriculture +459532,Agriculture,Agriculture +458195,Agriculture,Agriculture +454725,Agriculture,Agriculture +453660,Agriculture,Agriculture +452031,Agriculture,Agriculture +451031,Agriculture,Agriculture +450956,Agriculture,Agriculture +450318,Agriculture,Agriculture +450317,Agriculture,Agriculture +449577,Agriculture,Agriculture +449469,Agriculture,Agriculture +449106,Agriculture,Agriculture +449088,Agriculture,Agriculture +448884,Agriculture,Agriculture +448550,Agriculture,Agriculture +448498,Agriculture,Agriculture +448497,Agriculture,Agriculture +448496,Agriculture,Agriculture +448495,Agriculture,Agriculture +446191,Agriculture,Agriculture +446101,Agriculture,Agriculture +446067,Agriculture,Agriculture +446057,Agriculture,Agriculture +446056,Agriculture,Agriculture +443127,Agriculture,Agriculture +442982,Agriculture,Agriculture +437347,Agriculture,Agriculture +437346,Agriculture,Agriculture +437345,Agriculture,Agriculture +437344,Agriculture,Agriculture +437341,Agriculture,Agriculture +437139,Agriculture,Agriculture +437137,Agriculture,Agriculture +437135,Agriculture,Agriculture +437133,Agriculture,Agriculture +434179,Agriculture,Agriculture +433982,Agriculture,Agriculture +427475,Agriculture,Agriculture +427165,Agriculture,Agriculture +427034,Agriculture,Agriculture +424797,Agriculture,Agriculture +424792,Agriculture,Agriculture +424676,Agriculture,Agriculture +424671,Agriculture,Agriculture +424668,Agriculture,Agriculture +424666,Agriculture,Agriculture +424663,Agriculture,Agriculture +422783,Agriculture,Agriculture +420577,Agriculture,Agriculture +419868,Agriculture,Agriculture +417374,Agriculture,Agriculture +415716,Agriculture,Agriculture +414355,Agriculture,Agriculture +414354,Agriculture,Agriculture +414353,Agriculture,Agriculture +414352,Agriculture,Agriculture +414350,Agriculture,Agriculture +414338,Agriculture,Agriculture +414337,Agriculture,Agriculture +414336,Agriculture,Agriculture +414335,Agriculture,Agriculture +414205,Agriculture,Agriculture +410847,Agriculture,Agriculture +410501,Agriculture,Agriculture +410245,Agriculture,Agriculture +408656,Agriculture,Agriculture +407175,Agriculture,Agriculture +403044,Agriculture,Agriculture +401413,Agriculture,Agriculture +399480,Agriculture,Agriculture +398702,Agriculture,Agriculture +398258,Agriculture,Agriculture +397502,Agriculture,Agriculture +397369,Agriculture,Agriculture +397313,Agriculture,Agriculture +395122,Agriculture,Agriculture +393935,Agriculture,Agriculture +393215,Agriculture,Agriculture +392215,Agriculture,Agriculture +389487,Agriculture,Agriculture +388948,Agriculture,Agriculture +388926,Agriculture,Agriculture +387167,Agriculture,Agriculture +386308,Agriculture,Agriculture +384544,Agriculture,Agriculture +383337,Agriculture,Agriculture +382944,Agriculture,Agriculture +380363,Agriculture,Agriculture +375271,Agriculture,Agriculture +375191,Agriculture,Agriculture +375190,Agriculture,Agriculture +375189,Agriculture,Agriculture +373434,Agriculture,Agriculture +371219,Agriculture,Agriculture +371194,Agriculture,Agriculture +371191,Agriculture,Agriculture +371190,Agriculture,Agriculture +370264,Agriculture,Agriculture +370263,Agriculture,Agriculture +370261,Agriculture,Agriculture +367527,Agriculture,Agriculture +367526,Agriculture,Agriculture +367062,Agriculture,Agriculture +363447,Agriculture,Agriculture +356867,Agriculture,Agriculture +352122,Agriculture,Agriculture +344819,Agriculture,Agriculture +344817,Agriculture,Agriculture +342518,Agriculture,Agriculture +339129,Agriculture,Agriculture +337605,Agriculture,Agriculture +337451,Agriculture,Agriculture +337429,Agriculture,Agriculture +330982,Agriculture,Agriculture +329710,Agriculture,Agriculture +324874,Agriculture,Agriculture +324031,Agriculture,Agriculture +322492,Agriculture,Agriculture +318796,Agriculture,Agriculture +318790,Agriculture,Agriculture +316047,Agriculture,Agriculture +305315,Agriculture,Agriculture +305301,Agriculture,Agriculture +305299,Agriculture,Agriculture +305297,Agriculture,Agriculture +305295,Agriculture,Agriculture +305294,Agriculture,Agriculture +288949,Agriculture,Agriculture +543749,Agriculture,Agriculture +543746,Agriculture,Agriculture +543743,Agriculture,Agriculture +543741,Agriculture,Agriculture +543739,Agriculture,Agriculture +543735,Agriculture,Agriculture +543732,Agriculture,Agriculture +543726,Agriculture,Agriculture +543721,Agriculture,Agriculture +541937,Agriculture,Agriculture +541663,Agriculture,Agriculture +541662,Agriculture,Agriculture +541659,Agriculture,Agriculture +541657,Agriculture,Agriculture +541656,Agriculture,Agriculture +541655,Agriculture,Agriculture +541649,Agriculture,Agriculture +541645,Agriculture,Agriculture +541642,Agriculture,Agriculture +541638,Agriculture,Agriculture +541637,Agriculture,Agriculture +541635,Agriculture,Agriculture +541631,Agriculture,Agriculture +541627,Agriculture,Agriculture +541623,Agriculture,Agriculture +541621,Agriculture,Agriculture +541619,Agriculture,Agriculture +541615,Agriculture,Agriculture +539177,Agriculture,Agriculture +539175,Agriculture,Agriculture +539174,Agriculture,Agriculture +533216,Agriculture,Agriculture +533214,Agriculture,Agriculture +533213,Agriculture,Agriculture +533212,Agriculture,Agriculture +533211,Agriculture,Agriculture +533210,Agriculture,Agriculture +533209,Agriculture,Agriculture +529989,Agriculture,Agriculture +529988,Agriculture,Agriculture +529987,Agriculture,Agriculture +529974,Agriculture,Agriculture +529965,Agriculture,Agriculture +529964,Agriculture,Agriculture +529963,Agriculture,Agriculture +529961,Agriculture,Agriculture +529958,Agriculture,Agriculture +528850,Agriculture,Agriculture +528840,Agriculture,Agriculture +528834,Agriculture,Agriculture +526501,Agriculture,Agriculture +526497,Agriculture,Agriculture +526491,Agriculture,Agriculture +522317,Agriculture,Agriculture +522315,Agriculture,Agriculture +522313,Agriculture,Agriculture +522310,Agriculture,Agriculture +518823,Agriculture,Agriculture +517987,Agriculture,Agriculture +517980,Agriculture,Agriculture +517978,Agriculture,Agriculture +517977,Agriculture,Agriculture +517976,Agriculture,Agriculture +517973,Agriculture,Agriculture +517971,Agriculture,Agriculture +517969,Agriculture,Agriculture +515293,Agriculture,Agriculture +515292,Agriculture,Agriculture +515291,Agriculture,Agriculture +515290,Agriculture,Agriculture +515289,Agriculture,Agriculture +515288,Agriculture,Agriculture +515287,Agriculture,Agriculture +515286,Agriculture,Agriculture +515285,Agriculture,Agriculture +515284,Agriculture,Agriculture +515283,Agriculture,Agriculture +515282,Agriculture,Agriculture +515281,Agriculture,Agriculture +515280,Agriculture,Agriculture +515279,Agriculture,Agriculture +515278,Agriculture,Agriculture +515277,Agriculture,Agriculture +515276,Agriculture,Agriculture +515275,Agriculture,Agriculture +515273,Agriculture,Agriculture +512560,Agriculture,Agriculture +512559,Agriculture,Agriculture +512558,Agriculture,Agriculture +512557,Agriculture,Agriculture +512555,Agriculture,Agriculture +512553,Agriculture,Agriculture +510512,Agriculture,Agriculture +510511,Agriculture,Agriculture +510510,Agriculture,Agriculture +510507,Agriculture,Agriculture +510500,Agriculture,Agriculture +510498,Agriculture,Agriculture +510495,Agriculture,Agriculture +510493,Agriculture,Agriculture +510491,Agriculture,Agriculture +508035,Agriculture,Agriculture +508032,Agriculture,Agriculture +508029,Agriculture,Agriculture +504904,Agriculture,Agriculture +504899,Agriculture,Agriculture +504897,Agriculture,Agriculture +504893,Agriculture,Agriculture +504892,Agriculture,Agriculture +501929,Agriculture,Agriculture +501926,Agriculture,Agriculture +501925,Agriculture,Agriculture +501924,Agriculture,Agriculture +501923,Agriculture,Agriculture +501922,Agriculture,Agriculture +501920,Agriculture,Agriculture +501919,Agriculture,Agriculture +501914,Agriculture,Agriculture +501908,Agriculture,Agriculture +501900,Agriculture,Agriculture +501897,Agriculture,Agriculture +498015,Agriculture,Agriculture +498014,Agriculture,Agriculture +498013,Agriculture,Agriculture +498012,Agriculture,Agriculture +498011,Agriculture,Agriculture +498010,Agriculture,Agriculture +498009,Agriculture,Agriculture +498008,Agriculture,Agriculture +498007,Agriculture,Agriculture +493118,Agriculture,Agriculture +493115,Agriculture,Agriculture +493113,Agriculture,Agriculture +493110,Agriculture,Agriculture +490384,Agriculture,Agriculture +490383,Agriculture,Agriculture +490382,Agriculture,Agriculture +490380,Agriculture,Agriculture +486387,Agriculture,Agriculture +486386,Agriculture,Agriculture +486385,Agriculture,Agriculture +486384,Agriculture,Agriculture +486382,Agriculture,Agriculture +486381,Agriculture,Agriculture +486380,Agriculture,Agriculture +486378,Agriculture,Agriculture +486376,Agriculture,Agriculture +486374,Agriculture,Agriculture +486372,Agriculture,Agriculture +486369,Agriculture,Agriculture +486368,Agriculture,Agriculture +486345,Agriculture,Agriculture +484058,Agriculture,Agriculture +484057,Agriculture,Agriculture +484056,Agriculture,Agriculture +484054,Agriculture,Agriculture +481639,Agriculture,Agriculture +479970,Agriculture,Agriculture +479967,Agriculture,Agriculture +476625,Agriculture,Agriculture +476624,Agriculture,Agriculture +474221,Agriculture,Agriculture +474220,Agriculture,Agriculture +474219,Agriculture,Agriculture +474218,Agriculture,Agriculture +474217,Agriculture,Agriculture +474216,Agriculture,Agriculture +474215,Agriculture,Agriculture +471877,Agriculture,Agriculture +471876,Agriculture,Agriculture +471874,Agriculture,Agriculture +470131,Agriculture,Agriculture +470125,Agriculture,Agriculture +470124,Agriculture,Agriculture +470120,Agriculture,Agriculture +470119,Agriculture,Agriculture +470117,Agriculture,Agriculture +466070,Energy,Energy +466068,Energy,Energy +97419,Energy,Energy +82920,Energy,Energy +209787,Energy,Energy +207504,Energy,Energy +207499,Energy,Energy +205214,Energy,Energy +199750,Energy,Energy +195041,Energy,Energy +195037,Energy,Energy +195035,Energy,Energy +195032,Energy,Energy +193946,Energy,Energy +193669,Energy,Energy +193639,Energy,Energy +193633,Energy,Energy +189636,Energy,Energy +189635,Energy,Energy +189632,Energy,Energy +175621,Energy,Energy +172829,Energy,Energy +172828,Energy,Energy +510490,Energy,Energy +466100,Energy,Energy +466091,Energy,Energy +515285,Environment,Environment +515284,Environment,Environment +106457,Environment,Environment +101405,Environment,Environment +101404,Environment,Environment +97419,Environment,Environment +87774,Environment,Environment +85094,Environment,Environment +76144,Environment,Environment +76143,Environment,Environment +153539,Environment,Environment +153538,Environment,Environment +145988,Environment,Environment +143054,Environment,Environment +132860,Environment,Environment +132848,Environment,Environment +121396,Environment,Environment +113695,Environment,Environment +113694,Environment,Environment +113675,Environment,Environment +109717,Environment,Environment +109714,Environment,Environment +109708,Environment,Environment +109702,Environment,Environment +109184,Environment,Environment +106459,Environment,Environment +106458,Environment,Environment +195041,Environment,Environment +195037,Environment,Environment +195035,Environment,Environment +195032,Environment,Environment +193669,Environment,Environment +193639,Environment,Environment +193633,Environment,Environment +189636,Environment,Environment +189635,Environment,Environment +189632,Environment,Environment +172829,Environment,Environment +172828,Environment,Environment +172827,Environment,Environment +170407,Environment,Environment +170406,Environment,Environment +170405,Environment,Environment +170404,Environment,Environment +170381,Environment,Environment +170370,Environment,Environment +165784,Environment,Environment +163912,Environment,Environment +162549,Environment,Environment +268756,Environment,Environment +250633,Environment,Environment +249704,Environment,Environment +249701,Environment,Environment +249699,Environment,Environment +249695,Environment,Environment +245581,Environment,Environment +245580,Environment,Environment +245577,Environment,Environment +241214,Environment,Environment +240429,Environment,Environment +238549,Environment,Environment +237329,Environment,Environment +230409,Environment,Environment +227356,Environment,Environment +223587,Environment,Environment +223545,Environment,Environment +223537,Environment,Environment +223527,Environment,Environment +223491,Environment,Environment +223482,Environment,Environment +209787,Environment,Environment +209769,Environment,Environment +207499,Environment,Environment +205219,Environment,Environment +205214,Environment,Environment +202127,Environment,Environment +202107,Environment,Environment +199750,Environment,Environment +398383,Environment,Environment +392902,Environment,Environment +392215,Environment,Environment +384544,Environment,Environment +384342,Environment,Environment +383958,Environment,Environment +382944,Environment,Environment +375191,Environment,Environment +373434,Environment,Environment +373406,Environment,Environment +372988,Environment,Environment +370957,Environment,Environment +370260,Environment,Environment +367526,Environment,Environment +366762,Environment,Environment +362967,Environment,Environment +355511,Environment,Environment +355000,Environment,Environment +354889,Environment,Environment +354560,Environment,Environment +354030,Environment,Environment +353720,Environment,Environment +352122,Environment,Environment +350037,Environment,Environment +348048,Environment,Environment +344819,Environment,Environment +344817,Environment,Environment +337605,Environment,Environment +337604,Environment,Environment +337452,Environment,Environment +336392,Environment,Environment +335020,Environment,Environment +322491,Environment,Environment +316050,Environment,Environment +305315,Environment,Environment +305303,Environment,Environment +305302,Environment,Environment +305301,Environment,Environment +288949,Environment,Environment +515283,Environment,Environment +515282,Environment,Environment +515281,Environment,Environment +515280,Environment,Environment +515279,Environment,Environment +515278,Environment,Environment +515277,Environment,Environment +515276,Environment,Environment +515275,Environment,Environment +515273,Environment,Environment +512560,Environment,Environment +512558,Environment,Environment +512557,Environment,Environment +512555,Environment,Environment +512553,Environment,Environment +510512,Environment,Environment +510511,Environment,Environment +510510,Environment,Environment +510507,Environment,Environment +510498,Environment,Environment +510495,Environment,Environment +510493,Environment,Environment +510491,Environment,Environment +510490,Environment,Environment +508035,Environment,Environment +508032,Environment,Environment +508029,Environment,Environment +504904,Environment,Environment +504897,Environment,Environment +501929,Environment,Environment +501926,Environment,Environment +501925,Environment,Environment +501924,Environment,Environment +501923,Environment,Environment +501922,Environment,Environment +501920,Environment,Environment +501919,Environment,Environment +501914,Environment,Environment +501908,Environment,Environment +501900,Environment,Environment +501897,Environment,Environment +498014,Environment,Environment +493118,Environment,Environment +493115,Environment,Environment +493113,Environment,Environment +493110,Environment,Environment +490384,Environment,Environment +490383,Environment,Environment +486387,Environment,Environment +486386,Environment,Environment +486385,Environment,Environment +486384,Environment,Environment +486382,Environment,Environment +486381,Environment,Environment +486380,Environment,Environment +486378,Environment,Environment +486376,Environment,Environment +486374,Environment,Environment +486372,Environment,Environment +486345,Environment,Environment +484058,Environment,Environment +484057,Environment,Environment +484054,Environment,Environment +479970,Environment,Environment +479967,Environment,Environment +476625,Environment,Environment +476624,Environment,Environment +474221,Environment,Environment +474220,Environment,Environment +471877,Environment,Environment +470125,Environment,Environment +466100,Environment,Environment +466091,Environment,Environment +466073,Environment,Environment +466071,Environment,Environment +466070,Environment,Environment +466068,Environment,Environment +466067,Environment,Environment +464001,Environment,Environment +463224,Environment,Environment +463223,Environment,Environment +460918,Environment,Environment +459542,Environment,Environment +459537,Environment,Environment +459532,Environment,Environment +458195,Environment,Environment +454725,Environment,Environment +452207,Environment,Environment +449189,Environment,Environment +449090,Environment,Environment +448843,Environment,Environment +448493,Environment,Environment +448426,Environment,Environment +447245,Environment,Environment +446189,Environment,Environment +444641,Environment,Environment +441027,Environment,Environment +440252,Environment,Environment +440038,Environment,Environment +439775,Environment,Environment +437087,Environment,Environment +436157,Environment,Environment +436156,Environment,Environment +436090,Environment,Environment +434180,Environment,Environment +434178,Environment,Environment +434153,Environment,Environment +433982,Environment,Environment +431500,Environment,Environment +427475,Environment,Environment +427003,Environment,Environment +425127,Environment,Environment +423032,Environment,Environment +414517,Environment,Environment +414147,Environment,Environment +410734,Environment,Environment +408656,Environment,Environment +408652,Environment,Environment +408638,Environment,Environment +407209,Environment,Environment +405967,Environment,Environment +403044,Environment,Environment +539173,Environment,Environment +533216,Environment,Environment +533213,Environment,Environment +533212,Environment,Environment +533211,Environment,Environment +526492,Environment,Environment +522317,Environment,Environment +522315,Environment,Environment +522313,Environment,Environment +518823,Environment,Environment +517987,Environment,Environment +517980,Environment,Environment +517978,Environment,Environment +517977,Environment,Environment +517976,Environment,Environment +517973,Environment,Environment +517971,Environment,Environment +517969,Environment,Environment +515293,Environment,Environment +515292,Environment,Environment +515291,Environment,Environment +515290,Environment,Environment +515289,Environment,Environment +515288,Environment,Environment +515287,Environment,Environment +471873,Health,Health +410501,Health,Health +318790,Health,Health +474220,Health,Health +474219,Health,Health +474218,Health,Health +474217,Health,Health +474216,Health,Health +474215,Health,Health +471877,Health,Health +528840,Industry,Industry +522313,Industry,Industry +90624,Industry,Industry +87773,Industry,Industry +85094,Industry,Industry +146007,Industry,Industry +145998,Industry,Industry +145995,Industry,Industry +109717,Industry,Industry +109714,Industry,Industry +109708,Industry,Industry +245585,Industry,Industry +241214,Industry,Industry +235330,Industry,Industry +233562,Industry,Industry +230409,Industry,Industry +223537,Industry,Industry +223507,Industry,Industry +209788,Industry,Industry +209769,Industry,Industry +199750,Industry,Industry +189636,Industry,Industry +175628,Industry,Industry +170422,Industry,Industry +170421,Industry,Industry +170420,Industry,Industry +170419,Industry,Industry +170418,Industry,Industry +170417,Industry,Industry +170416,Industry,Industry +170415,Industry,Industry +170414,Industry,Industry +170413,Industry,Industry +170409,Industry,Industry +170408,Industry,Industry +170373,Industry,Industry +170369,Industry,Industry +170368,Industry,Industry +170367,Industry,Industry +170366,Industry,Industry +170365,Industry,Industry +170364,Industry,Industry +170363,Industry,Industry +170362,Industry,Industry +170361,Industry,Industry +170360,Industry,Industry +170359,Industry,Industry +170358,Industry,Industry +170356,Industry,Industry +389487,Industry,Industry +386060,Industry,Industry +386058,Industry,Industry +386056,Industry,Industry +386053,Industry,Industry +370259,Industry,Industry +370257,Industry,Industry +370256,Industry,Industry +370255,Industry,Industry +370254,Industry,Industry +370253,Industry,Industry +370252,Industry,Industry +363223,Industry,Industry +337429,Industry,Industry +305315,Industry,Industry +305302,Industry,Industry +305298,Industry,Industry +305297,Industry,Industry +305295,Industry,Industry +305294,Industry,Industry +305293,Industry,Industry +288949,Industry,Industry +273671,Industry,Industry +273670,Industry,Industry +273669,Industry,Industry +273663,Industry,Industry +264537,Industry,Industry +498014,Industry,Industry +498013,Industry,Industry +498011,Industry,Industry +498010,Industry,Industry +493113,Industry,Industry +490383,Industry,Industry +486386,Industry,Industry +486385,Industry,Industry +486384,Industry,Industry +486382,Industry,Industry +486381,Industry,Industry +486380,Industry,Industry +486378,Industry,Industry +486372,Industry,Industry +484056,Industry,Industry +466100,Industry,Industry +466095,Industry,Industry +466091,Industry,Industry +466073,Industry,Industry +466072,Industry,Industry +466071,Industry,Industry +466070,Industry,Industry +466068,Industry,Industry +466067,Industry,Industry +464001,Industry,Industry +184324,International Relations,International Relations +337605,International Relations,International Relations +170369,International Relations,International Relations +170368,International Relations,International Relations +170367,International Relations,International Relations +170366,International Relations,International Relations +170365,International Relations,International Relations +170364,International Relations,International Relations +170363,International Relations,International Relations +170362,International Relations,International Relations +170361,International Relations,International Relations +170360,International Relations,International Relations +170359,International Relations,International Relations +170358,International Relations,International Relations +223528,International Relations,International Relations +209788,International Relations,International Relations +205217,International Relations,International Relations +393052,International Trade,International Trade +393042,International Trade,International Trade +113695,International Trade,International Trade +101410,International Trade,International Trade +101409,International Trade,International Trade +101401,International Trade,International Trade +87776,International Trade,International Trade +87772,International Trade,International Trade +175628,International Trade,International Trade +157036,International Trade,International Trade +157033,International Trade,International Trade +157031,International Trade,International Trade +157027,International Trade,International Trade +157026,International Trade,International Trade +157025,International Trade,International Trade +157023,International Trade,International Trade +157022,International Trade,International Trade +157021,International Trade,International Trade +157020,International Trade,International Trade +157018,International Trade,International Trade +157016,International Trade,International Trade +157015,International Trade,International Trade +153540,International Trade,International Trade +146007,International Trade,International Trade +129095,International Trade,International Trade +129085,International Trade,International Trade +337605,International Trade,International Trade +337429,International Trade,International Trade +324874,International Trade,International Trade +322493,International Trade,International Trade +305296,International Trade,International Trade +273669,International Trade,International Trade +249699,International Trade,International Trade +235330,International Trade,International Trade +235329,International Trade,International Trade +233562,International Trade,International Trade +223537,International Trade,International Trade +223528,International Trade,International Trade +223503,International Trade,International Trade +223491,International Trade,International Trade +209788,International Trade,International Trade +209769,International Trade,International Trade +205219,International Trade,International Trade +205217,International Trade,International Trade +529989,International Trade,International Trade +529988,International Trade,International Trade +529974,International Trade,International Trade +529965,International Trade,International Trade +529964,International Trade,International Trade +529963,International Trade,International Trade +529961,International Trade,International Trade +529958,International Trade,International Trade +528850,International Trade,International Trade +528823,International Trade,International Trade +528819,International Trade,International Trade +512557,International Trade,International Trade +510495,International Trade,International Trade +501929,International Trade,International Trade +501926,International Trade,International Trade +501925,International Trade,International Trade +501924,International Trade,International Trade +501923,International Trade,International Trade +501914,International Trade,International Trade +501908,International Trade,International Trade +501905,International Trade,International Trade +501900,International Trade,International Trade +501897,International Trade,International Trade +486381,International Trade,International Trade +486378,International Trade,International Trade +486376,International Trade,International Trade +486374,International Trade,International Trade +484058,International Trade,International Trade +484054,International Trade,International Trade +479970,International Trade,International Trade +466073,International Trade,International Trade +466072,International Trade,International Trade +463224,International Trade,International Trade +449470,International Trade,International Trade +449187,International Trade,International Trade +444470,International Trade,International Trade +437863,International Trade,International Trade +433466,International Trade,International Trade +431501,International Trade,International Trade +424673,International Trade,International Trade +424672,International Trade,International Trade +424640,International Trade,International Trade +410702,International Trade,International Trade +410701,International Trade,International Trade +410700,International Trade,International Trade +410415,International Trade,International Trade +398352,International Trade,International Trade +470114,Labour,Labour +470109,Labour,Labour +337450,Labour,Labour +223507,Labour,Labour +209769,Labour,Labour +466073,Labour,Labour +463224,Labour,Labour +460853,Labour,Labour +526495,Labour,Labour +526493,Labour,Labour +504899,Labour,Labour +471876,Labour,Labour +471874,Labour,Labour +471873,Labour,Labour +470131,Labour,Labour +470125,Labour,Labour +470124,Labour,Labour +470120,Labour,Labour +470119,Labour,Labour +470117,Labour,Labour +474221,Mining,Mining +529987,Mining,Mining +170382,Mining,Mining +170373,Mining,Mining +170356,Mining,Mining +153540,Mining,Mining +132856,Mining,Mining +408652,Mining,Mining +394996,Mining,Mining +384342,Mining,Mining +337450,Mining,Mining +305296,Mining,Mining +209769,Mining,Mining +510500,Mining,Mining +486386,Mining,Mining +486385,Mining,Mining +486384,Mining,Mining +486378,Mining,Mining +486376,Mining,Mining +486374,Mining,Mining +486372,Mining,Mining +484058,Mining,Mining +484057,Mining,Mining +529989,Taxation and Finance,Taxation and Finance +529988,Taxation and Finance,Taxation and Finance +93709,Taxation and Finance,Taxation and Finance +90634,Taxation and Finance,Taxation and Finance +90627,Taxation and Finance,Taxation and Finance +88068,Taxation and Finance,Taxation and Finance +145984,Taxation and Finance,Taxation and Finance +132888,Taxation and Finance,Taxation and Finance +132860,Taxation and Finance,Taxation and Finance +101411,Taxation and Finance,Taxation and Finance +101054,Taxation and Finance,Taxation and Finance +97433,Taxation and Finance,Taxation and Finance +97427,Taxation and Finance,Taxation and Finance +97419,Taxation and Finance,Taxation and Finance +93713,Taxation and Finance,Taxation and Finance +175628,Taxation and Finance,Taxation and Finance +305301,Taxation and Finance,Taxation and Finance +305298,Taxation and Finance,Taxation and Finance +305297,Taxation and Finance,Taxation and Finance +305295,Taxation and Finance,Taxation and Finance +273663,Taxation and Finance,Taxation and Finance +264537,Taxation and Finance,Taxation and Finance +249701,Taxation and Finance,Taxation and Finance +249699,Taxation and Finance,Taxation and Finance +249695,Taxation and Finance,Taxation and Finance +529964,Taxation and Finance,Taxation and Finance +512555,Taxation and Finance,Taxation and Finance +510512,Taxation and Finance,Taxation and Finance +510507,Taxation and Finance,Taxation and Finance +510498,Taxation and Finance,Taxation and Finance +504904,Taxation and Finance,Taxation and Finance +504893,Taxation and Finance,Taxation and Finance +498015,Taxation and Finance,Taxation and Finance +486380,Taxation and Finance,Taxation and Finance +474220,Taxation and Finance,Taxation and Finance +427961,Taxation and Finance,Taxation and Finance +528817,Transportation,Transportation +528813,Transportation,Transportation +113696,Transportation,Transportation +106456,Transportation,Transportation +106455,Transportation,Transportation +101410,Transportation,Transportation +101409,Transportation,Transportation +97411,Transportation,Transportation +76140,Transportation,Transportation +76139,Transportation,Transportation +76138,Transportation,Transportation +170245,Transportation,Transportation +167568,Transportation,Transportation +167567,Transportation,Transportation +167565,Transportation,Transportation +167527,Transportation,Transportation +167526,Transportation,Transportation +167525,Transportation,Transportation +167524,Transportation,Transportation +167523,Transportation,Transportation +167522,Transportation,Transportation +165784,Transportation,Transportation +163598,Transportation,Transportation +163597,Transportation,Transportation +163595,Transportation,Transportation +162557,Transportation,Transportation +162555,Transportation,Transportation +157348,Transportation,Transportation +157039,Transportation,Transportation +152215,Transportation,Transportation +146179,Transportation,Transportation +129090,Transportation,Transportation +129075,Transportation,Transportation +241007,Transportation,Transportation +241005,Transportation,Transportation +240998,Transportation,Transportation +240992,Transportation,Transportation +238549,Transportation,Transportation +235330,Transportation,Transportation +235329,Transportation,Transportation +233562,Transportation,Transportation +233560,Transportation,Transportation +230409,Transportation,Transportation +230402,Transportation,Transportation +227353,Transportation,Transportation +227347,Transportation,Transportation +227345,Transportation,Transportation +227339,Transportation,Transportation +227335,Transportation,Transportation +223554,Transportation,Transportation +202108,Transportation,Transportation +202107,Transportation,Transportation +202067,Transportation,Transportation +199759,Transportation,Transportation +195386,Transportation,Transportation +195385,Transportation,Transportation +189636,Transportation,Transportation +189635,Transportation,Transportation +189632,Transportation,Transportation +180376,Transportation,Transportation +180375,Transportation,Transportation +180373,Transportation,Transportation +172828,Transportation,Transportation +170423,Transportation,Transportation +170422,Transportation,Transportation +170421,Transportation,Transportation +170420,Transportation,Transportation +170419,Transportation,Transportation +170418,Transportation,Transportation +170417,Transportation,Transportation +170416,Transportation,Transportation +170415,Transportation,Transportation +170414,Transportation,Transportation +170413,Transportation,Transportation +170409,Transportation,Transportation +170408,Transportation,Transportation +170407,Transportation,Transportation +170406,Transportation,Transportation +170386,Transportation,Transportation +170382,Transportation,Transportation +170379,Transportation,Transportation +170376,Transportation,Transportation +170374,Transportation,Transportation +170373,Transportation,Transportation +170371,Transportation,Transportation +170357,Transportation,Transportation +170356,Transportation,Transportation +170265,Transportation,Transportation +386196,Transportation,Transportation +382944,Transportation,Transportation +375191,Transportation,Transportation +373480,Transportation,Transportation +373478,Transportation,Transportation +371189,Transportation,Transportation +370816,Transportation,Transportation +370364,Transportation,Transportation +367526,Transportation,Transportation +356867,Transportation,Transportation +348874,Transportation,Transportation +348873,Transportation,Transportation +344819,Transportation,Transportation +344817,Transportation,Transportation +344277,Transportation,Transportation +337605,Transportation,Transportation +337604,Transportation,Transportation +337429,Transportation,Transportation +334129,Transportation,Transportation +332370,Transportation,Transportation +323965,Transportation,Transportation +323961,Transportation,Transportation +322494,Transportation,Transportation +318793,Transportation,Transportation +305309,Transportation,Transportation +305307,Transportation,Transportation +305306,Transportation,Transportation +305305,Transportation,Transportation +305302,Transportation,Transportation +305301,Transportation,Transportation +305300,Transportation,Transportation +305297,Transportation,Transportation +305296,Transportation,Transportation +305295,Transportation,Transportation +305294,Transportation,Transportation +305293,Transportation,Transportation +288949,Transportation,Transportation +273670,Transportation,Transportation +273661,Transportation,Transportation +268773,Transportation,Transportation +268772,Transportation,Transportation +268771,Transportation,Transportation +268769,Transportation,Transportation +268756,Transportation,Transportation +264533,Transportation,Transportation +264526,Transportation,Transportation +264521,Transportation,Transportation +260091,Transportation,Transportation +249709,Transportation,Transportation +249701,Transportation,Transportation +249699,Transportation,Transportation +249696,Transportation,Transportation +249695,Transportation,Transportation +245585,Transportation,Transportation +241213,Transportation,Transportation +241209,Transportation,Transportation +241009,Transportation,Transportation +241008,Transportation,Transportation +504899,Transportation,Transportation +504892,Transportation,Transportation +501905,Transportation,Transportation +501903,Transportation,Transportation +498013,Transportation,Transportation +493118,Transportation,Transportation +486369,Transportation,Transportation +486368,Transportation,Transportation +471873,Transportation,Transportation +470131,Transportation,Transportation +470125,Transportation,Transportation +470124,Transportation,Transportation +470120,Transportation,Transportation +470119,Transportation,Transportation +470117,Transportation,Transportation +470116,Transportation,Transportation +470114,Transportation,Transportation +466095,Transportation,Transportation +466073,Transportation,Transportation +466072,Transportation,Transportation +460918,Transportation,Transportation +460853,Transportation,Transportation +453999,Transportation,Transportation +449109,Transportation,Transportation +444568,Transportation,Transportation +441028,Transportation,Transportation +440433,Transportation,Transportation +440432,Transportation,Transportation +440431,Transportation,Transportation +434386,Transportation,Transportation +429811,Transportation,Transportation +427315,Transportation,Transportation +425128,Transportation,Transportation +424674,Transportation,Transportation +424670,Transportation,Transportation +424664,Transportation,Transportation +423310,Transportation,Transportation +422930,Transportation,Transportation +422876,Transportation,Transportation +421383,Transportation,Transportation +420744,Transportation,Transportation +420610,Transportation,Transportation +418982,Transportation,Transportation +411092,Transportation,Transportation +411085,Transportation,Transportation +408982,Transportation,Transportation +408305,Transportation,Transportation +404356,Transportation,Transportation +404024,Transportation,Transportation +403044,Transportation,Transportation +401261,Transportation,Transportation +398769,Transportation,Transportation +394905,Transportation,Transportation +392038,Transportation,Transportation +389606,Transportation,Transportation +528830,Transportation,Transportation +402111,International Trade,International Trade +397368,International Trade,International Trade +115895,International Trade,International Trade +85368,International Trade,International Trade +153436,International Trade,International Trade +142456,International Trade,International Trade +142453,International Trade,International Trade +142452,International Trade,International Trade +129280,International Trade,International Trade +366683,International Trade,International Trade +359672,International Trade,International Trade +265078,International Trade,International Trade +265077,International Trade,International Trade +175368,International Trade,International Trade +175366,International Trade,International Trade +175365,International Trade,International Trade +175364,International Trade,International Trade +168860,International Trade,International Trade +446651,International Trade,International Trade +437172,International Trade,International Trade +437170,International Trade,International Trade +437169,International Trade,International Trade +425697,International Trade,International Trade +421763,International Trade,International Trade +421762,International Trade,International Trade +421760,International Trade,International Trade +421619,International Trade,International Trade +421614,International Trade,International Trade +417632,International Trade,International Trade +416350,International Trade,International Trade +416348,International Trade,International Trade +416346,International Trade,International Trade +411319,International Trade,International Trade +411318,International Trade,International Trade +411317,International Trade,International Trade +411316,International Trade,International Trade +411315,International Trade,International Trade +411314,International Trade,International Trade +406168,International Trade,International Trade +395557,Labour,Labour +437406,Labour,Labour +437170,Labour,Labour +437169,Labour,Labour +433407,Labour,Labour +427672,Labour,Labour +425762,Labour,Labour +421616,Labour,Labour +416350,Labour,Labour +416346,Labour,Labour +411323,Labour,Labour +411322,Labour,Labour +411321,Labour,Labour +402127,Labour,Labour +437169,Regional Development,Regional Development +437169,Taxation and Finance,Taxation and Finance +416351,Taxation and Finance,Taxation and Finance +411320,Taxation and Finance,Taxation and Finance +411318,Taxation and Finance,Taxation and Finance +411317,Taxation and Finance,Taxation and Finance +411316,Taxation and Finance,Taxation and Finance +411315,Taxation and Finance,Taxation and Finance +411314,Taxation and Finance,Taxation and Finance +409169,Taxation and Finance,Taxation and Finance +409168,Taxation and Finance,Taxation and Finance +159537,Transportation,Transportation +159536,Transportation,Transportation +175368,Transportation,Transportation +175366,Transportation,Transportation +175365,Transportation,Transportation +159542,Transportation,Transportation +159540,Transportation,Transportation +159539,Transportation,Transportation +540947,Agriculture,Agriculture +540947,Consumer Issues,Consumer Issues +434154,Consumer Issues,Consumer Issues +480604,Health,Health +450993,Health,Health +105274,Health,Health +89956,Health,Health +83674,Health,Health +163805,Health,Health +163803,Health,Health +163799,Health,Health +163797,Health,Health +105319,Health,Health +105296,Health,Health +105295,Health,Health +365581,Health,Health +232529,Health,Health +188602,Health,Health +434154,Health,Health +385390,Health,Health +540947,Health,Health +540730,Health,Health +540729,Health,Health +509103,Health,Health +540729,Industry,Industry +434154,Industry,Industry +78454,Industry,Industry +163797,Industry,Industry +105296,Industry,Industry +365580,Industry,Industry +540947,Industry,Industry +540730,Intellectual Property,Intellectual Property +540729,Intellectual Property,Intellectual Property +105296,Intellectual Property,Intellectual Property +232549,Intellectual Property,Intellectual Property +232529,Intellectual Property,Intellectual Property +163797,Intellectual Property,Intellectual Property +450993,Intellectual Property,Intellectual Property +365580,Intellectual Property,Intellectual Property +163797,International Trade,International Trade +540729,International Trade,International Trade +232549,International Trade,International Trade +163799,Taxation and Finance,Taxation and Finance +105296,Taxation and Finance,Taxation and Finance +163805,Taxation and Finance,Taxation and Finance +535356,International Trade,International Trade +525767,International Trade,International Trade +349146,International Trade,International Trade +335702,International Trade,International Trade +333035,International Trade,International Trade +331453,International Trade,International Trade +164027,International Trade,International Trade +389601,International Trade,International Trade +359344,International Trade,International Trade +359343,International Trade,International Trade +350497,International Trade,International Trade +536918,International Trade,International Trade +110680,Environment,Environment +162785,Environment,Environment +110681,Industry,Industry +110680,Industry,Industry +110680,Transportation,Transportation +162785,Transportation,Transportation +432798,Industry,Industry +432797,Industry,Industry +99197,Industry,Industry +365579,Industry,Industry +359554,Industry,Industry +357948,Industry,Industry +357944,Industry,Industry +410835,Industry,Industry +410834,Industry,Industry +410832,Industry,Industry +393256,Industry,Industry +393255,Industry,Industry +393253,Industry,Industry +383363,Industry,Industry +381812,Industry,Industry +537438,Industry,Industry +501723,Industry,Industry +453088,Industry,Industry +453087,Industry,Industry +441110,Industry,Industry +441107,Industry,Industry +439768,Industry,Industry +432800,Industry,Industry +459357,International Trade,International Trade +439770,International Trade,International Trade +381814,International Trade,International Trade +537434,International Trade,International Trade +537430,International Trade,International Trade +535655,International Trade,International Trade +535650,International Trade,International Trade +503997,International Trade,International Trade +460094,International Trade,International Trade +459361,International Trade,International Trade +459360,International Trade,International Trade +459359,International Trade,International Trade +105329,Agriculture,Agriculture +100372,Agriculture,Agriculture +100371,Agriculture,Agriculture +100370,Agriculture,Agriculture +100369,Agriculture,Agriculture +100368,Agriculture,Agriculture +100367,Agriculture,Agriculture +100366,Agriculture,Agriculture +100365,Agriculture,Agriculture +89795,Agriculture,Agriculture +83734,Agriculture,Agriculture +146191,Agriculture,Agriculture +126855,Agriculture,Agriculture +126854,Agriculture,Agriculture +105348,Agriculture,Agriculture +105346,Agriculture,Agriculture +105344,Agriculture,Agriculture +105337,Agriculture,Agriculture +100371,Taxation and Finance,Taxation and Finance +100370,Taxation and Finance,Taxation and Finance +100369,Taxation and Finance,Taxation and Finance +100368,Taxation and Finance,Taxation and Finance +100367,Taxation and Finance,Taxation and Finance +100366,Taxation and Finance,Taxation and Finance +100365,Taxation and Finance,Taxation and Finance +89795,Taxation and Finance,Taxation and Finance +83734,Taxation and Finance,Taxation and Finance +126855,Taxation and Finance,Taxation and Finance +105348,Taxation and Finance,Taxation and Finance +105346,Taxation and Finance,Taxation and Finance +105344,Taxation and Finance,Taxation and Finance +105337,Taxation and Finance,Taxation and Finance +105334,Taxation and Finance,Taxation and Finance +105329,Taxation and Finance,Taxation and Finance +100366,Transportation,Transportation +100365,Transportation,Transportation +100372,Transportation,Transportation +100371,Transportation,Transportation +100370,Transportation,Transportation +100369,Transportation,Transportation +100368,Transportation,Transportation +161168,Intellectual Property,Intellectual Property +161167,Intellectual Property,Intellectual Property +161166,Intellectual Property,Intellectual Property +161164,Intellectual Property,Intellectual Property +132320,Intellectual Property,Intellectual Property +90514,Intellectual Property,Intellectual Property +89182,Intellectual Property,Intellectual Property +78754,Intellectual Property,Intellectual Property +227550,Intellectual Property,Intellectual Property +227549,Intellectual Property,Intellectual Property +194659,Intellectual Property,Intellectual Property +194658,Intellectual Property,Intellectual Property +188567,Intellectual Property,Intellectual Property +188566,Intellectual Property,Intellectual Property +184584,Intellectual Property,Intellectual Property +184566,Intellectual Property,Intellectual Property +184565,Intellectual Property,Intellectual Property +506667,Health,Health +506657,Health,Health +227260,Taxation and Finance,Taxation and Finance +170920,Taxation and Finance,Taxation and Finance +261614,Taxation and Finance,Taxation and Finance +261612,Taxation and Finance,Taxation and Finance +261610,Taxation and Finance,Taxation and Finance +455512,Energy,Energy +455510,Energy,Energy +100933,Energy,Energy +100931,Energy,Energy +87135,Energy,Energy +79296,Energy,Energy +266672,Energy,Energy +266671,Energy,Energy +266670,Energy,Energy +266669,Energy,Energy +227058,Energy,Energy +227057,Energy,Energy +227055,Energy,Energy +227054,Energy,Energy +227053,Energy,Energy +227052,Energy,Energy +227051,Energy,Energy +227049,Energy,Energy +222509,Energy,Energy +215733,Energy,Energy +215732,Energy,Energy +215731,Energy,Energy +215730,Energy,Energy +215729,Energy,Energy +215728,Energy,Energy +215727,Energy,Energy +210007,Energy,Energy +209994,Energy,Energy +209993,Energy,Energy +209992,Energy,Energy +209990,Energy,Energy +209988,Energy,Energy +206127,Energy,Energy +206107,Energy,Energy +198287,Energy,Energy +198251,Energy,Energy +195645,Energy,Energy +380977,Energy,Energy +380974,Energy,Energy +380973,Energy,Energy +379942,Energy,Energy +379940,Energy,Energy +379932,Energy,Energy +379926,Energy,Energy +379919,Energy,Energy +379914,Energy,Energy +276432,Energy,Energy +276431,Energy,Energy +276430,Energy,Energy +448301,Energy,Energy +446634,Energy,Energy +446633,Energy,Energy +446632,Energy,Energy +444196,Energy,Energy +444195,Energy,Energy +439022,Energy,Energy +439008,Energy,Energy +435510,Energy,Energy +429977,Energy,Energy +429976,Energy,Energy +429975,Energy,Energy +429704,Energy,Energy +427820,Energy,Energy +423947,Energy,Energy +416951,Energy,Energy +416950,Energy,Energy +416949,Energy,Energy +416948,Energy,Energy +416941,Energy,Energy +413791,Energy,Energy +411573,Energy,Energy +409905,Energy,Energy +409901,Energy,Energy +404013,Energy,Energy +404012,Energy,Energy +404011,Energy,Energy +400354,Energy,Energy +400353,Energy,Energy +400346,Energy,Energy +400343,Energy,Energy +398210,Energy,Energy +398209,Energy,Energy +396962,Energy,Energy +394513,Energy,Energy +392744,Energy,Energy +392743,Energy,Energy +387336,Energy,Energy +387331,Energy,Energy +387330,Energy,Energy +387327,Energy,Energy +387324,Energy,Energy +385654,Energy,Energy +385367,Energy,Energy +385366,Energy,Energy +385365,Energy,Energy +385363,Energy,Energy +385361,Energy,Energy +385359,Energy,Energy +385356,Energy,Energy +385353,Energy,Energy +385347,Energy,Energy +383304,Energy,Energy +383303,Energy,Energy +383302,Energy,Energy +383300,Energy,Energy +383293,Energy,Energy +383291,Energy,Energy +383282,Energy,Energy +383268,Energy,Energy +383267,Energy,Energy +543911,Energy,Energy +543909,Energy,Energy +543907,Energy,Energy +543905,Energy,Energy +543903,Energy,Energy +543901,Energy,Energy +541464,Energy,Energy +541462,Energy,Energy +539805,Energy,Energy +537544,Energy,Energy +537543,Energy,Energy +537542,Energy,Energy +537541,Energy,Energy +537540,Energy,Energy +534608,Energy,Energy +534606,Energy,Energy +534598,Energy,Energy +534595,Energy,Energy +534585,Energy,Energy +534581,Energy,Energy +534575,Energy,Energy +534574,Energy,Energy +534571,Energy,Energy +534567,Energy,Energy +534560,Energy,Energy +534557,Energy,Energy +534551,Energy,Energy +530632,Energy,Energy +530631,Energy,Energy +530630,Energy,Energy +530628,Energy,Energy +529026,Energy,Energy +529025,Energy,Energy +525156,Energy,Energy +525155,Energy,Energy +522618,Energy,Energy +519713,Energy,Energy +519710,Energy,Energy +517326,Energy,Energy +517325,Energy,Energy +517323,Energy,Energy +517318,Energy,Energy +512958,Energy,Energy +512957,Energy,Energy +512956,Energy,Energy +510324,Energy,Energy +507239,Energy,Energy +507238,Energy,Energy +507237,Energy,Energy +504463,Energy,Energy +501041,Energy,Energy +501040,Energy,Energy +501039,Energy,Energy +501038,Energy,Energy +501037,Energy,Energy +497904,Energy,Energy +497902,Energy,Energy +495264,Energy,Energy +489928,Energy,Energy +489927,Energy,Energy +489925,Energy,Energy +487622,Energy,Energy +487620,Energy,Energy +487619,Energy,Energy +487617,Energy,Energy +487615,Energy,Energy +487614,Energy,Energy +487613,Energy,Energy +487611,Energy,Energy +484551,Energy,Energy +484545,Energy,Energy +484543,Energy,Energy +484541,Energy,Energy +484537,Energy,Energy +484535,Energy,Energy +484533,Energy,Energy +484528,Energy,Energy +484521,Energy,Energy +481368,Energy,Energy +481367,Energy,Energy +481366,Energy,Energy +479502,Energy,Energy +477802,Energy,Energy +477793,Energy,Energy +476002,Energy,Energy +476000,Energy,Energy +475979,Energy,Energy +475972,Energy,Energy +475951,Energy,Energy +475948,Energy,Energy +475938,Energy,Energy +473323,Energy,Energy +468047,Energy,Energy +468046,Energy,Energy +468045,Energy,Energy +468044,Energy,Energy +468043,Energy,Energy +468042,Energy,Energy +468041,Energy,Energy +468040,Energy,Energy +461197,Energy,Energy +457743,Energy,Energy +455550,Energy,Energy +455548,Energy,Energy +455519,Energy,Energy +468040,Environment,Environment +461197,Environment,Environment +112694,Environment,Environment +100934,Environment,Environment +198287,Environment,Environment +198251,Environment,Environment +195645,Environment,Environment +166033,Environment,Environment +276432,Environment,Environment +276431,Environment,Environment +276430,Environment,Environment +227058,Environment,Environment +227057,Environment,Environment +227055,Environment,Environment +227054,Environment,Environment +227053,Environment,Environment +227052,Environment,Environment +227051,Environment,Environment +227049,Environment,Environment +222509,Environment,Environment +215733,Environment,Environment +215732,Environment,Environment +215731,Environment,Environment +215730,Environment,Environment +215729,Environment,Environment +215728,Environment,Environment +215727,Environment,Environment +210007,Environment,Environment +209994,Environment,Environment +209993,Environment,Environment +209992,Environment,Environment +209990,Environment,Environment +209988,Environment,Environment +206127,Environment,Environment +206107,Environment,Environment +457743,Environment,Environment +455550,Environment,Environment +455548,Environment,Environment +455519,Environment,Environment +455516,Environment,Environment +455512,Environment,Environment +455510,Environment,Environment +446634,Environment,Environment +446633,Environment,Environment +446632,Environment,Environment +444196,Environment,Environment +444195,Environment,Environment +439022,Environment,Environment +439008,Environment,Environment +435510,Environment,Environment +429977,Environment,Environment +429976,Environment,Environment +429975,Environment,Environment +429704,Environment,Environment +416948,Environment,Environment +413791,Environment,Environment +409905,Environment,Environment +409901,Environment,Environment +404013,Environment,Environment +404012,Environment,Environment +404011,Environment,Environment +400354,Environment,Environment +400353,Environment,Environment +400346,Environment,Environment +400343,Environment,Environment +398210,Environment,Environment +398209,Environment,Environment +396962,Environment,Environment +392743,Environment,Environment +387336,Environment,Environment +387331,Environment,Environment +387330,Environment,Environment +387327,Environment,Environment +387324,Environment,Environment +385654,Environment,Environment +385367,Environment,Environment +385366,Environment,Environment +385365,Environment,Environment +385363,Environment,Environment +385361,Environment,Environment +385359,Environment,Environment +385356,Environment,Environment +385353,Environment,Environment +385347,Environment,Environment +383304,Environment,Environment +383303,Environment,Environment +383302,Environment,Environment +383300,Environment,Environment +383293,Environment,Environment +383291,Environment,Environment +383282,Environment,Environment +383268,Environment,Environment +383267,Environment,Environment +380977,Environment,Environment +380974,Environment,Environment +380973,Environment,Environment +379942,Environment,Environment +379940,Environment,Environment +379932,Environment,Environment +379926,Environment,Environment +379919,Environment,Environment +379914,Environment,Environment +543911,Environment,Environment +543909,Environment,Environment +543907,Environment,Environment +543905,Environment,Environment +543903,Environment,Environment +543901,Environment,Environment +537544,Environment,Environment +537543,Environment,Environment +537542,Environment,Environment +537541,Environment,Environment +537540,Environment,Environment +534608,Environment,Environment +534606,Environment,Environment +534598,Environment,Environment +534595,Environment,Environment +534585,Environment,Environment +534581,Environment,Environment +534575,Environment,Environment +534571,Environment,Environment +534567,Environment,Environment +534560,Environment,Environment +534557,Environment,Environment +534551,Environment,Environment +530632,Environment,Environment +530631,Environment,Environment +530630,Environment,Environment +530628,Environment,Environment +529026,Environment,Environment +529025,Environment,Environment +525156,Environment,Environment +525155,Environment,Environment +522618,Environment,Environment +519713,Environment,Environment +519710,Environment,Environment +517326,Environment,Environment +517325,Environment,Environment +517323,Environment,Environment +517318,Environment,Environment +512958,Environment,Environment +512957,Environment,Environment +512956,Environment,Environment +510324,Environment,Environment +507239,Environment,Environment +507238,Environment,Environment +507237,Environment,Environment +504463,Environment,Environment +501041,Environment,Environment +501040,Environment,Environment +501039,Environment,Environment +501038,Environment,Environment +501037,Environment,Environment +497904,Environment,Environment +497902,Environment,Environment +495264,Environment,Environment +489928,Environment,Environment +489927,Environment,Environment +489925,Environment,Environment +487622,Environment,Environment +487620,Environment,Environment +487619,Environment,Environment +487617,Environment,Environment +487615,Environment,Environment +487614,Environment,Environment +487613,Environment,Environment +487611,Environment,Environment +484551,Environment,Environment +484545,Environment,Environment +484543,Environment,Environment +484541,Environment,Environment +484537,Environment,Environment +484535,Environment,Environment +484533,Environment,Environment +484528,Environment,Environment +484521,Environment,Environment +481368,Environment,Environment +481367,Environment,Environment +481366,Environment,Environment +479502,Environment,Environment +477802,Environment,Environment +477793,Environment,Environment +476002,Environment,Environment +476000,Environment,Environment +475972,Environment,Environment +475951,Environment,Environment +475948,Environment,Environment +475938,Environment,Environment +473323,Environment,Environment +468047,Environment,Environment +468046,Environment,Environment +468045,Environment,Environment +468044,Environment,Environment +468043,Environment,Environment +468042,Environment,Environment +489925,Industry,Industry +534585,Industry,Industry +121359,Industry,Industry +512957,Industry,Industry +507237,Industry,Industry +501040,Industry,Industry +392744,Infrastructure,Infrastructure +476002,Infrastructure,Infrastructure +476000,Infrastructure,Infrastructure +475972,Infrastructure,Infrastructure +411573,Infrastructure,Infrastructure +411572,Infrastructure,Infrastructure +125060,Agriculture,Agriculture +124948,Agriculture,Agriculture +88434,Agriculture,Agriculture +88097,Agriculture,Agriculture +88094,Agriculture,Agriculture +76409,Agriculture,Agriculture +124940,Agriculture,Agriculture +120976,Agriculture,Agriculture +120975,Agriculture,Agriculture +116459,Agriculture,Agriculture +116456,Agriculture,Agriculture +116455,Agriculture,Agriculture +114093,Agriculture,Agriculture +114086,Agriculture,Agriculture +114081,Agriculture,Agriculture +109785,Agriculture,Agriculture +109783,Agriculture,Agriculture +93838,Agriculture,Agriculture +93821,Agriculture,Agriculture +93816,Agriculture,Agriculture +155779,Agriculture,Agriculture +154854,Agriculture,Agriculture +154853,Agriculture,Agriculture +150121,Agriculture,Agriculture +150100,Agriculture,Agriculture +148134,Agriculture,Agriculture +148028,Agriculture,Agriculture +132903,International Trade,International Trade +126255,International Trade,International Trade +125060,International Trade,International Trade +124940,International Trade,International Trade +114081,International Trade,International Trade +109742,International Trade,International Trade +109741,International Trade,International Trade +106215,International Trade,International Trade +106214,International Trade,International Trade +106206,International Trade,International Trade +77356,International Trade,International Trade +148132,International Trade,International Trade +148032,International Trade,International Trade +128943,Transportation,Transportation +128941,Transportation,Transportation +79514,Infrastructure,Infrastructure +77723,Infrastructure,Infrastructure +93255,Infrastructure,Infrastructure +93245,Infrastructure,Infrastructure +83125,Infrastructure,Infrastructure +83121,Infrastructure,Infrastructure +93245,Tourism,Tourism +83125,Tourism,Tourism +79514,Other,ECONOMIC DEVELOPMENT +77723,Other,ECONOMIC DEVELOPMENT +93255,Other,ECONOMIC DEVELOPMENT +93245,Other,ECONOMIC DEVELOPMENT +83125,Other,ECONOMIC DEVELOPMENT +83121,Other,ECONOMIC DEVELOPMENT +131816,Consumer Issues,Consumer Issues +131814,Consumer Issues,Consumer Issues +131816,Financial Institutions,Financial Institutions +131814,Financial Institutions,Financial Institutions +96195,Financial Institutions,Financial Institutions +131814,Industry,Industry +131814,Taxation and Finance,Taxation and Finance +222990,Financial Institutions,Financial Institutions +161109,Financial Institutions,Financial Institutions +485826,Labour,Labour +485825,Labour,Labour +87280,Labour,Labour +116635,Labour,Labour +104594,Labour,Labour +156404,Labour,Labour +156403,Labour,Labour +156402,Labour,Labour +156399,Labour,Labour +156395,Labour,Labour +156394,Labour,Labour +156392,Labour,Labour +156390,Labour,Labour +156389,Labour,Labour +156388,Labour,Labour +156387,Labour,Labour +156383,Labour,Labour +156382,Labour,Labour +156380,Labour,Labour +156379,Labour,Labour +156378,Labour,Labour +150957,Labour,Labour +142457,Labour,Labour +226416,Labour,Labour +226415,Labour,Labour +226414,Labour,Labour +226413,Labour,Labour +226412,Labour,Labour +226409,Labour,Labour +226408,Labour,Labour +222991,Labour,Labour +222989,Labour,Labour +211458,Labour,Labour +211457,Labour,Labour +211456,Labour,Labour +211455,Labour,Labour +211454,Labour,Labour +188585,Labour,Labour +172928,Labour,Labour +172927,Labour,Labour +167892,Labour,Labour +164866,Labour,Labour +163424,Labour,Labour +161094,Labour,Labour +158925,Labour,Labour +158924,Labour,Labour +158922,Labour,Labour +158919,Labour,Labour +158917,Labour,Labour +158914,Labour,Labour +158912,Labour,Labour +158909,Labour,Labour +355799,Labour,Labour +349333,Labour,Labour +349331,Labour,Labour +349330,Labour,Labour +349329,Labour,Labour +347439,Labour,Labour +347438,Labour,Labour +347437,Labour,Labour +341550,Labour,Labour +341546,Labour,Labour +341544,Labour,Labour +341543,Labour,Labour +338604,Labour,Labour +334050,Labour,Labour +326075,Labour,Labour +322161,Labour,Labour +319086,Labour,Labour +309682,Labour,Labour +309677,Labour,Labour +302611,Labour,Labour +302609,Labour,Labour +296672,Labour,Labour +277174,Labour,Labour +273232,Labour,Labour +263618,Labour,Labour +244610,Labour,Labour +480289,Labour,Labour +480285,Labour,Labour +480284,Labour,Labour +477945,Labour,Labour +477940,Labour,Labour +477938,Labour,Labour +477924,Labour,Labour +477919,Labour,Labour +477916,Labour,Labour +477911,Labour,Labour +475626,Labour,Labour +475623,Labour,Labour +475619,Labour,Labour +475611,Labour,Labour +475604,Labour,Labour +475602,Labour,Labour +475597,Labour,Labour +473212,Labour,Labour +473205,Labour,Labour +473204,Labour,Labour +473202,Labour,Labour +473200,Labour,Labour +473199,Labour,Labour +473196,Labour,Labour +470706,Labour,Labour +470699,Labour,Labour +470695,Labour,Labour +470686,Labour,Labour +470680,Labour,Labour +470676,Labour,Labour +468036,Labour,Labour +468034,Labour,Labour +468033,Labour,Labour +468032,Labour,Labour +468031,Labour,Labour +468030,Labour,Labour +468029,Labour,Labour +468028,Labour,Labour +461764,Labour,Labour +461762,Labour,Labour +457920,Labour,Labour +457919,Labour,Labour +456122,Labour,Labour +452743,Labour,Labour +452742,Labour,Labour +447728,Labour,Labour +447727,Labour,Labour +447722,Labour,Labour +447721,Labour,Labour +447720,Labour,Labour +447719,Labour,Labour +445521,Labour,Labour +445510,Labour,Labour +442606,Labour,Labour +442605,Labour,Labour +438499,Labour,Labour +438497,Labour,Labour +438495,Labour,Labour +438490,Labour,Labour +435483,Labour,Labour +429138,Labour,Labour +422154,Labour,Labour +422150,Labour,Labour +422146,Labour,Labour +422144,Labour,Labour +422141,Labour,Labour +422140,Labour,Labour +422138,Labour,Labour +422135,Labour,Labour +422132,Labour,Labour +419937,Labour,Labour +419934,Labour,Labour +413041,Labour,Labour +413039,Labour,Labour +413037,Labour,Labour +413034,Labour,Labour +410055,Labour,Labour +410053,Labour,Labour +410050,Labour,Labour +403191,Labour,Labour +396338,Labour,Labour +394144,Labour,Labour +394142,Labour,Labour +394141,Labour,Labour +394140,Labour,Labour +387669,Labour,Labour +387667,Labour,Labour +387666,Labour,Labour +387663,Labour,Labour +385371,Labour,Labour +385370,Labour,Labour +379176,Labour,Labour +379172,Labour,Labour +376748,Labour,Labour +376741,Labour,Labour +376739,Labour,Labour +373647,Labour,Labour +370887,Labour,Labour +370792,Labour,Labour +370791,Labour,Labour +370790,Labour,Labour +370789,Labour,Labour +370787,Labour,Labour +370783,Labour,Labour +370780,Labour,Labour +369106,Labour,Labour +369103,Labour,Labour +369101,Labour,Labour +366724,Labour,Labour +366722,Labour,Labour +366721,Labour,Labour +365193,Labour,Labour +544668,Labour,Labour +540786,Labour,Labour +536805,Labour,Labour +533703,Labour,Labour +530431,Labour,Labour +527906,Labour,Labour +527905,Labour,Labour +524576,Labour,Labour +520651,Labour,Labour +516514,Labour,Labour +516004,Labour,Labour +509512,Labour,Labour +506393,Labour,Labour +503308,Labour,Labour +493981,Labour,Labour +489415,Labour,Labour +488515,Labour,Labour +488064,Labour,Labour +485955,Labour,Labour +277168,Taxation and Finance,Taxation and Finance +445513,Taxation and Finance,Taxation and Finance +92454,Taxation and Finance,Taxation and Finance +273240,Taxation and Finance,Taxation and Finance +273239,Taxation and Finance,Taxation and Finance +273233,Taxation and Finance,Taxation and Finance +263610,Taxation and Finance,Taxation and Finance +249877,Taxation and Finance,Taxation and Finance +249876,Taxation and Finance,Taxation and Finance +249875,Taxation and Finance,Taxation and Finance +249874,Taxation and Finance,Taxation and Finance +249873,Taxation and Finance,Taxation and Finance +249872,Taxation and Finance,Taxation and Finance +249871,Taxation and Finance,Taxation and Finance +244616,Taxation and Finance,Taxation and Finance +244611,Taxation and Finance,Taxation and Finance +226407,Taxation and Finance,Taxation and Finance +196307,Taxation and Finance,Taxation and Finance +196305,Taxation and Finance,Taxation and Finance +193464,Taxation and Finance,Taxation and Finance +167890,Taxation and Finance,Taxation and Finance +161107,Taxation and Finance,Taxation and Finance +161100,Taxation and Finance,Taxation and Finance +394140,Taxation and Finance,Taxation and Finance +341547,Taxation and Finance,Taxation and Finance +341544,Taxation and Finance,Taxation and Finance +329592,Taxation and Finance,Taxation and Finance +319084,Taxation and Finance,Taxation and Finance +302612,Taxation and Finance,Taxation and Finance +296671,Taxation and Finance,Taxation and Finance +416493,Transportation,Transportation +416492,Transportation,Transportation +92457,Transportation,Transportation +158930,Transportation,Transportation +158929,Transportation,Transportation +158928,Transportation,Transportation +158927,Transportation,Transportation +158918,Transportation,Transportation +158916,Transportation,Transportation +156400,Transportation,Transportation +156398,Transportation,Transportation +156396,Transportation,Transportation +156393,Transportation,Transportation +156391,Transportation,Transportation +156386,Transportation,Transportation +156385,Transportation,Transportation +156384,Transportation,Transportation +267855,Transportation,Transportation +267853,Transportation,Transportation +263617,Transportation,Transportation +263616,Transportation,Transportation +263615,Transportation,Transportation +263614,Transportation,Transportation +263613,Transportation,Transportation +263612,Transportation,Transportation +263611,Transportation,Transportation +257629,Transportation,Transportation +244616,Transportation,Transportation +244615,Transportation,Transportation +244614,Transportation,Transportation +244613,Transportation,Transportation +244612,Transportation,Transportation +226411,Transportation,Transportation +226410,Transportation,Transportation +222988,Transportation,Transportation +222987,Transportation,Transportation +217268,Transportation,Transportation +217264,Transportation,Transportation +217262,Transportation,Transportation +217261,Transportation,Transportation +196306,Transportation,Transportation +196304,Transportation,Transportation +193447,Transportation,Transportation +193446,Transportation,Transportation +193445,Transportation,Transportation +193444,Transportation,Transportation +188588,Transportation,Transportation +188587,Transportation,Transportation +172926,Transportation,Transportation +169907,Transportation,Transportation +169906,Transportation,Transportation +169904,Transportation,Transportation +167893,Transportation,Transportation +167891,Transportation,Transportation +167889,Transportation,Transportation +167888,Transportation,Transportation +167886,Transportation,Transportation +167885,Transportation,Transportation +163427,Transportation,Transportation +163426,Transportation,Transportation +163425,Transportation,Transportation +161108,Transportation,Transportation +161106,Transportation,Transportation +161105,Transportation,Transportation +161104,Transportation,Transportation +161102,Transportation,Transportation +161099,Transportation,Transportation +161096,Transportation,Transportation +161095,Transportation,Transportation +158931,Transportation,Transportation +416490,Transportation,Transportation +416487,Transportation,Transportation +416486,Transportation,Transportation +416484,Transportation,Transportation +416483,Transportation,Transportation +416481,Transportation,Transportation +413041,Transportation,Transportation +413039,Transportation,Transportation +413037,Transportation,Transportation +413035,Transportation,Transportation +413034,Transportation,Transportation +403192,Transportation,Transportation +400725,Transportation,Transportation +400723,Transportation,Transportation +396337,Transportation,Transportation +396335,Transportation,Transportation +394140,Transportation,Transportation +391170,Transportation,Transportation +387669,Transportation,Transportation +387668,Transportation,Transportation +387665,Transportation,Transportation +387662,Transportation,Transportation +387660,Transportation,Transportation +387659,Transportation,Transportation +387654,Transportation,Transportation +387652,Transportation,Transportation +385371,Transportation,Transportation +381805,Transportation,Transportation +381804,Transportation,Transportation +381450,Transportation,Transportation +381448,Transportation,Transportation +381447,Transportation,Transportation +381444,Transportation,Transportation +376746,Transportation,Transportation +376745,Transportation,Transportation +373652,Transportation,Transportation +373651,Transportation,Transportation +373650,Transportation,Transportation +370795,Transportation,Transportation +370794,Transportation,Transportation +370792,Transportation,Transportation +370790,Transportation,Transportation +370789,Transportation,Transportation +370788,Transportation,Transportation +370787,Transportation,Transportation +369115,Transportation,Transportation +369108,Transportation,Transportation +366722,Transportation,Transportation +366721,Transportation,Transportation +353570,Transportation,Transportation +353569,Transportation,Transportation +351039,Transportation,Transportation +351038,Transportation,Transportation +349335,Transportation,Transportation +349334,Transportation,Transportation +338611,Transportation,Transportation +338603,Transportation,Transportation +335470,Transportation,Transportation +334049,Transportation,Transportation +324751,Transportation,Transportation +324747,Transportation,Transportation +322165,Transportation,Transportation +322164,Transportation,Transportation +322163,Transportation,Transportation +322162,Transportation,Transportation +319088,Transportation,Transportation +315541,Transportation,Transportation +309676,Transportation,Transportation +309674,Transportation,Transportation +302614,Transportation,Transportation +302613,Transportation,Transportation +302610,Transportation,Transportation +527907,Transportation,Transportation +523361,Transportation,Transportation +503307,Transportation,Transportation +494316,Transportation,Transportation +488514,Transportation,Transportation +485838,Transportation,Transportation +485835,Transportation,Transportation +485833,Transportation,Transportation +485831,Transportation,Transportation +485830,Transportation,Transportation +480290,Transportation,Transportation +480287,Transportation,Transportation +480286,Transportation,Transportation +477930,Transportation,Transportation +477928,Transportation,Transportation +477908,Transportation,Transportation +475629,Transportation,Transportation +475621,Transportation,Transportation +475619,Transportation,Transportation +475616,Transportation,Transportation +475597,Transportation,Transportation +473211,Transportation,Transportation +473208,Transportation,Transportation +473206,Transportation,Transportation +473203,Transportation,Transportation +473198,Transportation,Transportation +470700,Transportation,Transportation +470689,Transportation,Transportation +470682,Transportation,Transportation +461764,Transportation,Transportation +461763,Transportation,Transportation +449839,Transportation,Transportation +447725,Transportation,Transportation +447724,Transportation,Transportation +445513,Transportation,Transportation +445507,Transportation,Transportation +442606,Transportation,Transportation +442605,Transportation,Transportation +442604,Transportation,Transportation +435484,Transportation,Transportation +429138,Transportation,Transportation +429134,Transportation,Transportation +429132,Transportation,Transportation +425262,Transportation,Transportation +425261,Transportation,Transportation +425260,Transportation,Transportation +425259,Transportation,Transportation +424245,Transportation,Transportation +424244,Transportation,Transportation +424243,Transportation,Transportation +422132,Transportation,Transportation +422131,Transportation,Transportation +422130,Transportation,Transportation +422129,Transportation,Transportation +422128,Transportation,Transportation +422126,Transportation,Transportation +422124,Transportation,Transportation +422122,Transportation,Transportation +416515,Transportation,Transportation +416514,Transportation,Transportation +416512,Transportation,Transportation +416510,Transportation,Transportation +416504,Transportation,Transportation +416502,Transportation,Transportation +416499,Transportation,Transportation +416498,Transportation,Transportation +416497,Transportation,Transportation +190145,Education,Education +190124,Education,Education +85275,Education,Education +85257,Education,Education +85255,Education,Education +172981,Education,Education +172980,Education,Education +172979,Education,Education +172978,Education,Education +172977,Education,Education +172976,Education,Education +172975,Education,Education +172974,Education,Education +172972,Education,Education +172971,Education,Education +172970,Education,Education +172969,Education,Education +172968,Education,Education +172967,Education,Education +172966,Education,Education +160060,Education,Education +160059,Education,Education +160058,Education,Education +160057,Education,Education +160056,Education,Education +160055,Education,Education +160054,Education,Education +160053,Education,Education +160052,Education,Education +160051,Education,Education +160049,Education,Education +160048,Education,Education +147542,Education,Education +330564,Education,Education +297809,Education,Education +297749,Education,Education +297729,Education,Education +265072,Education,Education +265071,Education,Education +265070,Education,Education +265069,Education,Education +265050,Education,Education +263019,Education,Education +263018,Education,Education +263015,Education,Education +263014,Education,Education +263012,Education,Education +262992,Education,Education +262990,Education,Education +262970,Education,Education +262969,Education,Education +235359,Education,Education +235355,Education,Education +235353,Education,Education +235351,Education,Education +235350,Education,Education +235349,Education,Education +229991,Education,Education +229978,Education,Education +229977,Education,Education +229976,Education,Education +229975,Education,Education +229974,Education,Education +229973,Education,Education +229972,Education,Education +229971,Education,Education +200540,Education,Education +200537,Education,Education +200536,Education,Education +200528,Education,Education +190150,Education,Education +190149,Education,Education +190148,Education,Education +190147,Education,Education +434391,Industry,Industry +250893,Industry,Industry +202787,Industry,Industry +195807,Industry,Industry +185915,Industry,Industry +162479,Industry,Industry +152381,Industry,Industry +152380,Industry,Industry +129146,Industry,Industry +129142,Industry,Industry +129138,Industry,Industry +129136,Industry,Industry +121674,Industry,Industry +440139,Industry,Industry +434451,Industry,Industry +318233,Intellectual Property,Intellectual Property +430252,Intellectual Property,Intellectual Property +324505,Intellectual Property,Intellectual Property +321765,Intellectual Property,Intellectual Property +114355,Agriculture,Agriculture +114354,Agriculture,Agriculture +108660,Agriculture,Agriculture +108659,Agriculture,Agriculture +108657,Agriculture,Agriculture +108655,Agriculture,Agriculture +108650,Agriculture,Agriculture +108649,Agriculture,Agriculture +136697,Agriculture,Agriculture +121961,Agriculture,Agriculture +121960,Agriculture,Agriculture +121959,Agriculture,Agriculture +121958,Agriculture,Agriculture +121955,Agriculture,Agriculture +108657,International Trade,International Trade +108655,International Trade,International Trade +108654,International Trade,International Trade +108650,International Trade,International Trade +108649,International Trade,International Trade +76994,International Trade,International Trade +136697,International Trade,International Trade +121961,International Trade,International Trade +121960,International Trade,International Trade +121959,International Trade,International Trade +121958,International Trade,International Trade +121955,International Trade,International Trade +121954,International Trade,International Trade +114355,International Trade,International Trade +114354,International Trade,International Trade +108660,International Trade,International Trade +339329,Justice and Law Enforcement,Justice and Law Enforcement +418640,Labour,Labour +416042,Labour,Labour +193085,Labour,Labour +168746,Labour,Labour +168732,Labour,Labour +474704,Labour,Labour +443284,Labour,Labour +434456,Labour,Labour +434454,Labour,Labour +430246,Labour,Labour +418660,Labour,Labour +418657,Labour,Labour +418644,Labour,Labour +351327,Forestry,Forestry +351326,Forestry,Forestry +378450,International Trade,International Trade +378449,International Trade,International Trade +96897,International Trade,International Trade +89295,International Trade,International Trade +145676,International Trade,International Trade +137616,International Trade,International Trade +127675,International Trade,International Trade +127674,International Trade,International Trade +119677,International Trade,International Trade +100364,International Trade,International Trade +100363,International Trade,International Trade +100362,International Trade,International Trade +100361,International Trade,International Trade +100360,International Trade,International Trade +100359,International Trade,International Trade +373597,International Trade,International Trade +370489,International Trade,International Trade +368949,International Trade,International Trade +368948,International Trade,International Trade +368946,International Trade,International Trade +364605,International Trade,International Trade +351327,International Trade,International Trade +351326,International Trade,International Trade +177307,International Trade,International Trade +161435,International Trade,International Trade +158950,International Trade,International Trade +158949,International Trade,International Trade +158948,International Trade,International Trade +156007,International Trade,International Trade +156006,International Trade,International Trade +154187,International Trade,International Trade +154186,International Trade,International Trade +434503,International Trade,International Trade +434498,International Trade,International Trade +423448,International Trade,International Trade +423445,International Trade,International Trade +423444,International Trade,International Trade +423443,International Trade,International Trade +411462,International Trade,International Trade +401877,International Trade,International Trade +401876,International Trade,International Trade +401875,International Trade,International Trade +399653,International Trade,International Trade +394707,International Trade,International Trade +394705,International Trade,International Trade +394704,International Trade,International Trade +394702,International Trade,International Trade +392149,International Trade,International Trade +386949,International Trade,International Trade +383028,International Trade,International Trade +383027,International Trade,International Trade +382074,International Trade,International Trade +382073,International Trade,International Trade +91537,Energy,Energy +91537,Fisheries,Fisheries +493552,Environment,Environment +493546,Environment,Environment +479724,Environment,Environment +467434,Environment,Environment +467429,Environment,Environment +464500,Environment,Environment +464493,Environment,Environment +457500,Environment,Environment +455121,Environment,Environment +449980,Environment,Environment +443909,Environment,Environment +435614,Environment,Environment +430601,Environment,Environment +428486,Environment,Environment +428481,Environment,Environment +379682,Environment,Environment +539598,Environment,Environment +538398,Environment,Environment +538383,Environment,Environment +538380,Environment,Environment +535155,Environment,Environment +535132,Environment,Environment +531694,Environment,Environment +531679,Environment,Environment +531674,Environment,Environment +531670,Environment,Environment +531659,Environment,Environment +529946,Environment,Environment +529945,Environment,Environment +526240,Environment,Environment +525431,Environment,Environment +525429,Environment,Environment +525428,Environment,Environment +525427,Environment,Environment +525426,Environment,Environment +521784,Environment,Environment +521776,Environment,Environment +521775,Environment,Environment +521774,Environment,Environment +521773,Environment,Environment +521772,Environment,Environment +521771,Environment,Environment +521770,Environment,Environment +519686,Environment,Environment +519685,Environment,Environment +519682,Environment,Environment +519680,Environment,Environment +519678,Environment,Environment +517409,Environment,Environment +517400,Environment,Environment +517396,Environment,Environment +517393,Environment,Environment +517388,Environment,Environment +517383,Environment,Environment +517379,Environment,Environment +517375,Environment,Environment +517370,Environment,Environment +517368,Environment,Environment +517360,Environment,Environment +515475,Environment,Environment +515472,Environment,Environment +515468,Environment,Environment +515448,Environment,Environment +515445,Environment,Environment +515442,Environment,Environment +515437,Environment,Environment +515434,Environment,Environment +515431,Environment,Environment +515427,Environment,Environment +515423,Environment,Environment +515420,Environment,Environment +515417,Environment,Environment +515413,Environment,Environment +514718,Environment,Environment +514715,Environment,Environment +514714,Environment,Environment +514713,Environment,Environment +514709,Environment,Environment +513866,Environment,Environment +513865,Environment,Environment +513864,Environment,Environment +513859,Environment,Environment +512487,Environment,Environment +512486,Environment,Environment +512485,Environment,Environment +512484,Environment,Environment +512483,Environment,Environment +512482,Environment,Environment +512481,Environment,Environment +512478,Environment,Environment +512477,Environment,Environment +512476,Environment,Environment +512475,Environment,Environment +512474,Environment,Environment +512471,Environment,Environment +510758,Environment,Environment +510739,Environment,Environment +510727,Environment,Environment +510722,Environment,Environment +510716,Environment,Environment +510711,Environment,Environment +510703,Environment,Environment +510702,Environment,Environment +510679,Environment,Environment +509389,Environment,Environment +508414,Environment,Environment +508413,Environment,Environment +508412,Environment,Environment +508411,Environment,Environment +508410,Environment,Environment +508409,Environment,Environment +508408,Environment,Environment +504668,Environment,Environment +504667,Environment,Environment +504666,Environment,Environment +504664,Environment,Environment +504663,Environment,Environment +504662,Environment,Environment +504661,Environment,Environment +504660,Environment,Environment +501728,Environment,Environment +501725,Environment,Environment +501722,Environment,Environment +501718,Environment,Environment +501715,Environment,Environment +501711,Environment,Environment +501682,Environment,Environment +499987,Environment,Environment +498871,Environment,Environment +498855,Environment,Environment +498849,Environment,Environment +498844,Environment,Environment +498841,Environment,Environment +498837,Environment,Environment +498833,Environment,Environment +498830,Environment,Environment +498825,Environment,Environment +498784,Environment,Environment +495343,Environment,Environment +495340,Environment,Environment +495338,Environment,Environment +495335,Environment,Environment +495321,Environment,Environment +495311,Environment,Environment +495307,Environment,Environment +395126,International Trade,International Trade +187384,Transportation,Transportation +327328,Energy,Energy +313041,Environment,Environment +445422,Consumer Issues,Consumer Issues +527642,Environment,Environment +418079,Health,Health +447735,Industry,Industry +438313,Internal Trade,Internal Trade +273709,International Relations,International Relations +400795,International Trade,International Trade +240869,Transportation,Transportation +487413,Consumer Issues,Consumer Issues +376229,Defence,Defence +370082,Employment and Training,Employment and Training +370087,Government Procurement,Government Procurement +370089,Industry,Industry +370087,International Relations,International Relations +159031,Regional Development,Regional Development +470116,Agriculture,Agriculture +466071,Energy,Energy +515286,Environment,Environment +471874,Health,Health +463224,Industry,Industry +184325,International Relations,International Relations +395339,International Trade,International Trade +470116,Labour,Labour +484054,Mining,Mining +410772,Taxation and Finance,Taxation and Finance +528823,Transportation,Transportation +265076,Internal Trade,Internal Trade +406167,International Trade,International Trade +395558,Labour,Labour +437170,Regional Development,Regional Development +437170,Taxation and Finance,Taxation and Finance +159538,Transportation,Transportation +105296,Agriculture,Agriculture +105296,Consumer Issues,Consumer Issues +105296,Environment,Environment +480609,Health,Health +540730,Industry,Industry +540947,Intellectual Property,Intellectual Property +232529,International Trade,International Trade +163803,Taxation and Finance,Taxation and Finance +77079,Energy,Energy +535362,International Trade,International Trade +87315,Government Procurement,Government Procurement +162785,Energy,Energy +110681,Environment,Environment +162785,Industry,Industry +162785,Regional Development,Regional Development +162785,Taxation and Finance,Taxation and Finance +110681,Transportation,Transportation +432799,Industry,Industry +459358,International Trade,International Trade +105334,Agriculture,Agriculture +100372,Taxation and Finance,Taxation and Finance +100367,Transportation,Transportation +173926,Intellectual Property,Intellectual Property +506670,Health,Health +230256,Taxation and Finance,Taxation and Finance +455516,Energy,Energy +468041,Environment,Environment +501038,Industry,Industry +394513,Infrastructure,Infrastructure +141374,Agriculture,Agriculture +132906,International Trade,International Trade +155782,Transportation,Transportation +85758,Industry,Industry +79518,Infrastructure,Infrastructure +93255,Tourism,Tourism +79518,Other,ECONOMIC DEVELOPMENT +96195,Consumer Issues,Consumer Issues +78714,Financial Institutions,Financial Institutions +131816,Industry,Industry +131816,Taxation and Finance,Taxation and Finance +158921,Financial Institutions,Financial Institutions +485829,Labour,Labour +277176,Taxation and Finance,Taxation and Finance +416496,Transportation,Transportation +190146,Education,Education +434392,Industry,Industry +320910,Intellectual Property,Intellectual Property +121954,Agriculture,Agriculture +108659,International Trade,International Trade +199632,Justice and Law Enforcement,Justice and Law Enforcement +418642,Labour,Labour +161434,Forestry,Forestry +382072,International Trade,International Trade +94577,Energy,Energy +91537,Environment,Environment +94577,Fisheries,Fisheries +91537,Industry,Industry +495298,Environment,Environment +400792,Immigration,Immigration +487354,Industry,Industry +347370,Internal Trade,Internal Trade +349466,International Trade,International Trade +455135,Labour,Labour +487325,Small Business,Small Business +525441,Taxation and Finance,Taxation and Finance +120912,Other,Capital Markets +113674,Other,Corporate Governance +509614,Environment,Environment +74754,Industry,Industry +311373,Taxation and Finance,Taxation and Finance +90614,Environment,Environment +77665,Government Procurement,Government Procurement +121594,Environment,Environment +168663,Environment,Environment +168663,Transportation,Transportation +384080,Health,Health +409237,Small Business,Small Business +192355,Environment,Environment +233886,Immigration,Immigration +155631,Industry,Industry +306112,Regional Development,Regional Development +306150,Taxation and Finance,Taxation and Finance +306112,Tourism,Tourism +306111,Transportation,Transportation +86535,Energy,Energy +74796,Environment,Environment +93534,Consumer Issues,Consumer Issues +97483,Industry,Industry +166069,Consumer Issues,Consumer Issues +109377,Health,Health +420180,Immigration,Immigration +539594,Immigration,Immigration +351556,Immigration,Immigration +263920,Immigration,Immigration +250570,Immigration,Immigration +487333,Industry,Industry +487325,Industry,Industry +171957,Industry,Industry +171956,Industry,Industry +254212,Industry,Industry +250570,Industry,Industry +194728,Industry,Industry +481791,Industry,Industry +481781,Industry,Industry +479724,Industry,Industry +475307,Industry,Industry +475306,Industry,Industry +472797,Industry,Industry +472795,Industry,Industry +472794,Industry,Industry +472785,Industry,Industry +472763,Industry,Industry +472752,Industry,Industry +472748,Industry,Industry +409320,Industry,Industry +368658,Industry,Industry +355977,Industry,Industry +538140,Industry,Industry +513245,Industry,Industry +512466,Industry,Industry +508419,Industry,Industry +502789,Industry,Industry +495374,Industry,Industry +493574,Industry,Industry +493572,Industry,Industry +493565,Industry,Industry +493546,Industry,Industry +490988,Industry,Industry +331444,International Trade,International Trade +312854,International Trade,International Trade +455128,International Trade,International Trade +455125,International Trade,International Trade +455123,International Trade,International Trade +442455,International Trade,International Trade +418186,International Trade,International Trade +415438,International Trade,International Trade +408038,International Trade,International Trade +406280,International Trade,International Trade +405455,International Trade,International Trade +405452,International Trade,International Trade +399198,International Trade,International Trade +391461,International Trade,International Trade +349467,International Trade,International Trade +481791,Small Business,Small Business +481781,Small Business,Small Business +90297,Small Business,Small Business +479724,Small Business,Small Business +475307,Small Business,Small Business +475306,Small Business,Small Business +472797,Small Business,Small Business +472795,Small Business,Small Business +472794,Small Business,Small Business +472785,Small Business,Small Business +472763,Small Business,Small Business +472752,Small Business,Small Business +472748,Small Business,Small Business +438780,Small Business,Small Business +396554,Small Business,Small Business +353836,Small Business,Small Business +347362,Small Business,Small Business +513245,Small Business,Small Business +512466,Small Business,Small Business +508419,Small Business,Small Business +502789,Small Business,Small Business +495374,Small Business,Small Business +493574,Small Business,Small Business +493572,Small Business,Small Business +493565,Small Business,Small Business +493546,Small Business,Small Business +490988,Small Business,Small Business +487354,Small Business,Small Business +487333,Small Business,Small Business +525435,Taxation and Finance,Taxation and Finance +523581,Taxation and Finance,Taxation and Finance +85387,Taxation and Finance,Taxation and Finance +85379,Taxation and Finance,Taxation and Finance +83075,Taxation and Finance,Taxation and Finance +83062,Taxation and Finance,Taxation and Finance +83049,Taxation and Finance,Taxation and Finance +83019,Taxation and Finance,Taxation and Finance +80901,Taxation and Finance,Taxation and Finance +77464,Taxation and Finance,Taxation and Finance +77170,Taxation and Finance,Taxation and Finance +77055,Taxation and Finance,Taxation and Finance +76814,Taxation and Finance,Taxation and Finance +109200,Taxation and Finance,Taxation and Finance +109195,Taxation and Finance,Taxation and Finance +109189,Taxation and Finance,Taxation and Finance +106761,Taxation and Finance,Taxation and Finance +101329,Taxation and Finance,Taxation and Finance +101313,Taxation and Finance,Taxation and Finance +97384,Taxation and Finance,Taxation and Finance +97382,Taxation and Finance,Taxation and Finance +97378,Taxation and Finance,Taxation and Finance +97374,Taxation and Finance,Taxation and Finance +93785,Taxation and Finance,Taxation and Finance +90294,Taxation and Finance,Taxation and Finance +88245,Taxation and Finance,Taxation and Finance +88244,Taxation and Finance,Taxation and Finance +88242,Taxation and Finance,Taxation and Finance +157225,Taxation and Finance,Taxation and Finance +157223,Taxation and Finance,Taxation and Finance +157219,Taxation and Finance,Taxation and Finance +157216,Taxation and Finance,Taxation and Finance +153398,Taxation and Finance,Taxation and Finance +153397,Taxation and Finance,Taxation and Finance +152085,Taxation and Finance,Taxation and Finance +152083,Taxation and Finance,Taxation and Finance +152081,Taxation and Finance,Taxation and Finance +152080,Taxation and Finance,Taxation and Finance +152074,Taxation and Finance,Taxation and Finance +152073,Taxation and Finance,Taxation and Finance +150858,Taxation and Finance,Taxation and Finance +150238,Taxation and Finance,Taxation and Finance +150235,Taxation and Finance,Taxation and Finance +150233,Taxation and Finance,Taxation and Finance +150229,Taxation and Finance,Taxation and Finance +150228,Taxation and Finance,Taxation and Finance +150226,Taxation and Finance,Taxation and Finance +150225,Taxation and Finance,Taxation and Finance +150223,Taxation and Finance,Taxation and Finance +150222,Taxation and Finance,Taxation and Finance +150220,Taxation and Finance,Taxation and Finance +150218,Taxation and Finance,Taxation and Finance +150216,Taxation and Finance,Taxation and Finance +150215,Taxation and Finance,Taxation and Finance +145924,Taxation and Finance,Taxation and Finance +145921,Taxation and Finance,Taxation and Finance +145920,Taxation and Finance,Taxation and Finance +145918,Taxation and Finance,Taxation and Finance +142820,Taxation and Finance,Taxation and Finance +142819,Taxation and Finance,Taxation and Finance +142816,Taxation and Finance,Taxation and Finance +138754,Taxation and Finance,Taxation and Finance +135894,Taxation and Finance,Taxation and Finance +132530,Taxation and Finance,Taxation and Finance +132524,Taxation and Finance,Taxation and Finance +132522,Taxation and Finance,Taxation and Finance +132517,Taxation and Finance,Taxation and Finance +129066,Taxation and Finance,Taxation and Finance +129063,Taxation and Finance,Taxation and Finance +129057,Taxation and Finance,Taxation and Finance +129038,Taxation and Finance,Taxation and Finance +129019,Taxation and Finance,Taxation and Finance +129012,Taxation and Finance,Taxation and Finance +129001,Taxation and Finance,Taxation and Finance +128998,Taxation and Finance,Taxation and Finance +124877,Taxation and Finance,Taxation and Finance +124874,Taxation and Finance,Taxation and Finance +124868,Taxation and Finance,Taxation and Finance +124862,Taxation and Finance,Taxation and Finance +117413,Taxation and Finance,Taxation and Finance +113652,Taxation and Finance,Taxation and Finance +113642,Taxation and Finance,Taxation and Finance +113637,Taxation and Finance,Taxation and Finance +113635,Taxation and Finance,Taxation and Finance +113615,Taxation and Finance,Taxation and Finance +338105,Taxation and Finance,Taxation and Finance +335974,Taxation and Finance,Taxation and Finance +335973,Taxation and Finance,Taxation and Finance +335969,Taxation and Finance,Taxation and Finance +335956,Taxation and Finance,Taxation and Finance +335955,Taxation and Finance,Taxation and Finance +335946,Taxation and Finance,Taxation and Finance +333257,Taxation and Finance,Taxation and Finance +333256,Taxation and Finance,Taxation and Finance +333254,Taxation and Finance,Taxation and Finance +333253,Taxation and Finance,Taxation and Finance +331445,Taxation and Finance,Taxation and Finance +329857,Taxation and Finance,Taxation and Finance +329856,Taxation and Finance,Taxation and Finance +329810,Taxation and Finance,Taxation and Finance +327314,Taxation and Finance,Taxation and Finance +327313,Taxation and Finance,Taxation and Finance +327311,Taxation and Finance,Taxation and Finance +327310,Taxation and Finance,Taxation and Finance +327309,Taxation and Finance,Taxation and Finance +327298,Taxation and Finance,Taxation and Finance +324750,Taxation and Finance,Taxation and Finance +324748,Taxation and Finance,Taxation and Finance +324745,Taxation and Finance,Taxation and Finance +315710,Taxation and Finance,Taxation and Finance +312854,Taxation and Finance,Taxation and Finance +312851,Taxation and Finance,Taxation and Finance +312849,Taxation and Finance,Taxation and Finance +312848,Taxation and Finance,Taxation and Finance +312847,Taxation and Finance,Taxation and Finance +312844,Taxation and Finance,Taxation and Finance +312842,Taxation and Finance,Taxation and Finance +309998,Taxation and Finance,Taxation and Finance +309992,Taxation and Finance,Taxation and Finance +296710,Taxation and Finance,Taxation and Finance +296660,Taxation and Finance,Taxation and Finance +290330,Taxation and Finance,Taxation and Finance +286050,Taxation and Finance,Taxation and Finance +281571,Taxation and Finance,Taxation and Finance +281569,Taxation and Finance,Taxation and Finance +277226,Taxation and Finance,Taxation and Finance +277224,Taxation and Finance,Taxation and Finance +277220,Taxation and Finance,Taxation and Finance +273458,Taxation and Finance,Taxation and Finance +273456,Taxation and Finance,Taxation and Finance +273455,Taxation and Finance,Taxation and Finance +269059,Taxation and Finance,Taxation and Finance +263925,Taxation and Finance,Taxation and Finance +263923,Taxation and Finance,Taxation and Finance +263922,Taxation and Finance,Taxation and Finance +263919,Taxation and Finance,Taxation and Finance +263918,Taxation and Finance,Taxation and Finance +263917,Taxation and Finance,Taxation and Finance +263916,Taxation and Finance,Taxation and Finance +263913,Taxation and Finance,Taxation and Finance +259131,Taxation and Finance,Taxation and Finance +254134,Taxation and Finance,Taxation and Finance +254132,Taxation and Finance,Taxation and Finance +254130,Taxation and Finance,Taxation and Finance +250583,Taxation and Finance,Taxation and Finance +250570,Taxation and Finance,Taxation and Finance +245171,Taxation and Finance,Taxation and Finance +245170,Taxation and Finance,Taxation and Finance +241102,Taxation and Finance,Taxation and Finance +236849,Taxation and Finance,Taxation and Finance +230293,Taxation and Finance,Taxation and Finance +230292,Taxation and Finance,Taxation and Finance +230289,Taxation and Finance,Taxation and Finance +227152,Taxation and Finance,Taxation and Finance +227151,Taxation and Finance,Taxation and Finance +227150,Taxation and Finance,Taxation and Finance +227149,Taxation and Finance,Taxation and Finance +227147,Taxation and Finance,Taxation and Finance +227146,Taxation and Finance,Taxation and Finance +227145,Taxation and Finance,Taxation and Finance +223492,Taxation and Finance,Taxation and Finance +223473,Taxation and Finance,Taxation and Finance +223470,Taxation and Finance,Taxation and Finance +223468,Taxation and Finance,Taxation and Finance +217488,Taxation and Finance,Taxation and Finance +217467,Taxation and Finance,Taxation and Finance +217447,Taxation and Finance,Taxation and Finance +212276,Taxation and Finance,Taxation and Finance +212270,Taxation and Finance,Taxation and Finance +212268,Taxation and Finance,Taxation and Finance +207729,Taxation and Finance,Taxation and Finance +207520,Taxation and Finance,Taxation and Finance +202699,Taxation and Finance,Taxation and Finance +200351,Taxation and Finance,Taxation and Finance +200345,Taxation and Finance,Taxation and Finance +194736,Taxation and Finance,Taxation and Finance +194732,Taxation and Finance,Taxation and Finance +194731,Taxation and Finance,Taxation and Finance +194730,Taxation and Finance,Taxation and Finance +189035,Taxation and Finance,Taxation and Finance +185544,Taxation and Finance,Taxation and Finance +177064,Taxation and Finance,Taxation and Finance +175478,Taxation and Finance,Taxation and Finance +175475,Taxation and Finance,Taxation and Finance +175474,Taxation and Finance,Taxation and Finance +175473,Taxation and Finance,Taxation and Finance +175472,Taxation and Finance,Taxation and Finance +175471,Taxation and Finance,Taxation and Finance +175470,Taxation and Finance,Taxation and Finance +175466,Taxation and Finance,Taxation and Finance +173601,Taxation and Finance,Taxation and Finance +165992,Taxation and Finance,Taxation and Finance +159598,Taxation and Finance,Taxation and Finance +157237,Taxation and Finance,Taxation and Finance +157234,Taxation and Finance,Taxation and Finance +157230,Taxation and Finance,Taxation and Finance +157228,Taxation and Finance,Taxation and Finance +435586,Taxation and Finance,Taxation and Finance +435582,Taxation and Finance,Taxation and Finance +435562,Taxation and Finance,Taxation and Finance +432493,Taxation and Finance,Taxation and Finance +432489,Taxation and Finance,Taxation and Finance +432488,Taxation and Finance,Taxation and Finance +432486,Taxation and Finance,Taxation and Finance +431430,Taxation and Finance,Taxation and Finance +430599,Taxation and Finance,Taxation and Finance +430598,Taxation and Finance,Taxation and Finance +430597,Taxation and Finance,Taxation and Finance +430595,Taxation and Finance,Taxation and Finance +428653,Taxation and Finance,Taxation and Finance +428473,Taxation and Finance,Taxation and Finance +428472,Taxation and Finance,Taxation and Finance +426162,Taxation and Finance,Taxation and Finance +425975,Taxation and Finance,Taxation and Finance +424084,Taxation and Finance,Taxation and Finance +424081,Taxation and Finance,Taxation and Finance +424079,Taxation and Finance,Taxation and Finance +424075,Taxation and Finance,Taxation and Finance +421895,Taxation and Finance,Taxation and Finance +418182,Taxation and Finance,Taxation and Finance +415712,Taxation and Finance,Taxation and Finance +415711,Taxation and Finance,Taxation and Finance +415443,Taxation and Finance,Taxation and Finance +415442,Taxation and Finance,Taxation and Finance +415441,Taxation and Finance,Taxation and Finance +415437,Taxation and Finance,Taxation and Finance +415436,Taxation and Finance,Taxation and Finance +415435,Taxation and Finance,Taxation and Finance +415434,Taxation and Finance,Taxation and Finance +415433,Taxation and Finance,Taxation and Finance +415432,Taxation and Finance,Taxation and Finance +415431,Taxation and Finance,Taxation and Finance +413071,Taxation and Finance,Taxation and Finance +413067,Taxation and Finance,Taxation and Finance +413060,Taxation and Finance,Taxation and Finance +409399,Taxation and Finance,Taxation and Finance +409317,Taxation and Finance,Taxation and Finance +409313,Taxation and Finance,Taxation and Finance +409301,Taxation and Finance,Taxation and Finance +408029,Taxation and Finance,Taxation and Finance +408027,Taxation and Finance,Taxation and Finance +408026,Taxation and Finance,Taxation and Finance +406279,Taxation and Finance,Taxation and Finance +405559,Taxation and Finance,Taxation and Finance +405482,Taxation and Finance,Taxation and Finance +405480,Taxation and Finance,Taxation and Finance +405444,Taxation and Finance,Taxation and Finance +403782,Taxation and Finance,Taxation and Finance +403776,Taxation and Finance,Taxation and Finance +400828,Taxation and Finance,Taxation and Finance +400807,Taxation and Finance,Taxation and Finance +400802,Taxation and Finance,Taxation and Finance +400793,Taxation and Finance,Taxation and Finance +399200,Taxation and Finance,Taxation and Finance +399197,Taxation and Finance,Taxation and Finance +399195,Taxation and Finance,Taxation and Finance +399193,Taxation and Finance,Taxation and Finance +396551,Taxation and Finance,Taxation and Finance +396549,Taxation and Finance,Taxation and Finance +396547,Taxation and Finance,Taxation and Finance +396540,Taxation and Finance,Taxation and Finance +396534,Taxation and Finance,Taxation and Finance +394348,Taxation and Finance,Taxation and Finance +393637,Taxation and Finance,Taxation and Finance +393633,Taxation and Finance,Taxation and Finance +392565,Taxation and Finance,Taxation and Finance +391499,Taxation and Finance,Taxation and Finance +391494,Taxation and Finance,Taxation and Finance +391490,Taxation and Finance,Taxation and Finance +391467,Taxation and Finance,Taxation and Finance +387190,Taxation and Finance,Taxation and Finance +385195,Taxation and Finance,Taxation and Finance +383158,Taxation and Finance,Taxation and Finance +381211,Taxation and Finance,Taxation and Finance +381210,Taxation and Finance,Taxation and Finance +381209,Taxation and Finance,Taxation and Finance +381206,Taxation and Finance,Taxation and Finance +381203,Taxation and Finance,Taxation and Finance +379599,Taxation and Finance,Taxation and Finance +379597,Taxation and Finance,Taxation and Finance +377009,Taxation and Finance,Taxation and Finance +376968,Taxation and Finance,Taxation and Finance +376959,Taxation and Finance,Taxation and Finance +376953,Taxation and Finance,Taxation and Finance +374866,Taxation and Finance,Taxation and Finance +374840,Taxation and Finance,Taxation and Finance +372592,Taxation and Finance,Taxation and Finance +372588,Taxation and Finance,Taxation and Finance +372583,Taxation and Finance,Taxation and Finance +368661,Taxation and Finance,Taxation and Finance +368657,Taxation and Finance,Taxation and Finance +366748,Taxation and Finance,Taxation and Finance +365310,Taxation and Finance,Taxation and Finance +358186,Taxation and Finance,Taxation and Finance +358148,Taxation and Finance,Taxation and Finance +358136,Taxation and Finance,Taxation and Finance +358133,Taxation and Finance,Taxation and Finance +358132,Taxation and Finance,Taxation and Finance +358130,Taxation and Finance,Taxation and Finance +358129,Taxation and Finance,Taxation and Finance +356007,Taxation and Finance,Taxation and Finance +356004,Taxation and Finance,Taxation and Finance +356002,Taxation and Finance,Taxation and Finance +356000,Taxation and Finance,Taxation and Finance +355998,Taxation and Finance,Taxation and Finance +355996,Taxation and Finance,Taxation and Finance +355985,Taxation and Finance,Taxation and Finance +355975,Taxation and Finance,Taxation and Finance +353837,Taxation and Finance,Taxation and Finance +353833,Taxation and Finance,Taxation and Finance +351571,Taxation and Finance,Taxation and Finance +351567,Taxation and Finance,Taxation and Finance +351564,Taxation and Finance,Taxation and Finance +351561,Taxation and Finance,Taxation and Finance +351558,Taxation and Finance,Taxation and Finance +351557,Taxation and Finance,Taxation and Finance +349215,Taxation and Finance,Taxation and Finance +349207,Taxation and Finance,Taxation and Finance +349203,Taxation and Finance,Taxation and Finance +349199,Taxation and Finance,Taxation and Finance +349190,Taxation and Finance,Taxation and Finance +347373,Taxation and Finance,Taxation and Finance +347372,Taxation and Finance,Taxation and Finance +347371,Taxation and Finance,Taxation and Finance +347367,Taxation and Finance,Taxation and Finance +344062,Taxation and Finance,Taxation and Finance +344061,Taxation and Finance,Taxation and Finance +340813,Taxation and Finance,Taxation and Finance +340811,Taxation and Finance,Taxation and Finance +340807,Taxation and Finance,Taxation and Finance +340805,Taxation and Finance,Taxation and Finance +340804,Taxation and Finance,Taxation and Finance +340803,Taxation and Finance,Taxation and Finance +521789,Taxation and Finance,Taxation and Finance +521786,Taxation and Finance,Taxation and Finance +521785,Taxation and Finance,Taxation and Finance +519694,Taxation and Finance,Taxation and Finance +519689,Taxation and Finance,Taxation and Finance +513867,Taxation and Finance,Taxation and Finance +513245,Taxation and Finance,Taxation and Finance +512480,Taxation and Finance,Taxation and Finance +512479,Taxation and Finance,Taxation and Finance +512466,Taxation and Finance,Taxation and Finance +510766,Taxation and Finance,Taxation and Finance +510761,Taxation and Finance,Taxation and Finance +510676,Taxation and Finance,Taxation and Finance +508421,Taxation and Finance,Taxation and Finance +508419,Taxation and Finance,Taxation and Finance +508418,Taxation and Finance,Taxation and Finance +508416,Taxation and Finance,Taxation and Finance +504670,Taxation and Finance,Taxation and Finance +504669,Taxation and Finance,Taxation and Finance +502789,Taxation and Finance,Taxation and Finance +501732,Taxation and Finance,Taxation and Finance +501729,Taxation and Finance,Taxation and Finance +501689,Taxation and Finance,Taxation and Finance +499186,Taxation and Finance,Taxation and Finance +498818,Taxation and Finance,Taxation and Finance +498784,Taxation and Finance,Taxation and Finance +495399,Taxation and Finance,Taxation and Finance +495397,Taxation and Finance,Taxation and Finance +495393,Taxation and Finance,Taxation and Finance +495385,Taxation and Finance,Taxation and Finance +495374,Taxation and Finance,Taxation and Finance +495358,Taxation and Finance,Taxation and Finance +495305,Taxation and Finance,Taxation and Finance +495298,Taxation and Finance,Taxation and Finance +493565,Taxation and Finance,Taxation and Finance +493563,Taxation and Finance,Taxation and Finance +493561,Taxation and Finance,Taxation and Finance +493546,Taxation and Finance,Taxation and Finance +491033,Taxation and Finance,Taxation and Finance +491017,Taxation and Finance,Taxation and Finance +491006,Taxation and Finance,Taxation and Finance +490999,Taxation and Finance,Taxation and Finance +490996,Taxation and Finance,Taxation and Finance +490988,Taxation and Finance,Taxation and Finance +487354,Taxation and Finance,Taxation and Finance +487346,Taxation and Finance,Taxation and Finance +487333,Taxation and Finance,Taxation and Finance +487325,Taxation and Finance,Taxation and Finance +487320,Taxation and Finance,Taxation and Finance +487317,Taxation and Finance,Taxation and Finance +484716,Taxation and Finance,Taxation and Finance +484715,Taxation and Finance,Taxation and Finance +484714,Taxation and Finance,Taxation and Finance +484713,Taxation and Finance,Taxation and Finance +484712,Taxation and Finance,Taxation and Finance +484711,Taxation and Finance,Taxation and Finance +484710,Taxation and Finance,Taxation and Finance +484709,Taxation and Finance,Taxation and Finance +481791,Taxation and Finance,Taxation and Finance +481785,Taxation and Finance,Taxation and Finance +481781,Taxation and Finance,Taxation and Finance +479724,Taxation and Finance,Taxation and Finance +478209,Taxation and Finance,Taxation and Finance +477935,Taxation and Finance,Taxation and Finance +477927,Taxation and Finance,Taxation and Finance +477912,Taxation and Finance,Taxation and Finance +477851,Taxation and Finance,Taxation and Finance +477838,Taxation and Finance,Taxation and Finance +477830,Taxation and Finance,Taxation and Finance +475307,Taxation and Finance,Taxation and Finance +475306,Taxation and Finance,Taxation and Finance +475305,Taxation and Finance,Taxation and Finance +475304,Taxation and Finance,Taxation and Finance +475303,Taxation and Finance,Taxation and Finance +475302,Taxation and Finance,Taxation and Finance +475300,Taxation and Finance,Taxation and Finance +473022,Taxation and Finance,Taxation and Finance +473017,Taxation and Finance,Taxation and Finance +472799,Taxation and Finance,Taxation and Finance +472798,Taxation and Finance,Taxation and Finance +472797,Taxation and Finance,Taxation and Finance +472795,Taxation and Finance,Taxation and Finance +472794,Taxation and Finance,Taxation and Finance +472791,Taxation and Finance,Taxation and Finance +472785,Taxation and Finance,Taxation and Finance +472776,Taxation and Finance,Taxation and Finance +472771,Taxation and Finance,Taxation and Finance +472767,Taxation and Finance,Taxation and Finance +472763,Taxation and Finance,Taxation and Finance +472760,Taxation and Finance,Taxation and Finance +472752,Taxation and Finance,Taxation and Finance +472748,Taxation and Finance,Taxation and Finance +472745,Taxation and Finance,Taxation and Finance +470287,Taxation and Finance,Taxation and Finance +470286,Taxation and Finance,Taxation and Finance +470285,Taxation and Finance,Taxation and Finance +470283,Taxation and Finance,Taxation and Finance +470281,Taxation and Finance,Taxation and Finance +470275,Taxation and Finance,Taxation and Finance +470272,Taxation and Finance,Taxation and Finance +470240,Taxation and Finance,Taxation and Finance +470222,Taxation and Finance,Taxation and Finance +467452,Taxation and Finance,Taxation and Finance +467448,Taxation and Finance,Taxation and Finance +467438,Taxation and Finance,Taxation and Finance +467434,Taxation and Finance,Taxation and Finance +467429,Taxation and Finance,Taxation and Finance +467417,Taxation and Finance,Taxation and Finance +464527,Taxation and Finance,Taxation and Finance +464511,Taxation and Finance,Taxation and Finance +464500,Taxation and Finance,Taxation and Finance +464493,Taxation and Finance,Taxation and Finance +462517,Taxation and Finance,Taxation and Finance +462512,Taxation and Finance,Taxation and Finance +461571,Taxation and Finance,Taxation and Finance +461570,Taxation and Finance,Taxation and Finance +459486,Taxation and Finance,Taxation and Finance +458444,Taxation and Finance,Taxation and Finance +458441,Taxation and Finance,Taxation and Finance +457499,Taxation and Finance,Taxation and Finance +457497,Taxation and Finance,Taxation and Finance +457494,Taxation and Finance,Taxation and Finance +457491,Taxation and Finance,Taxation and Finance +457487,Taxation and Finance,Taxation and Finance +455151,Taxation and Finance,Taxation and Finance +455147,Taxation and Finance,Taxation and Finance +455125,Taxation and Finance,Taxation and Finance +455122,Taxation and Finance,Taxation and Finance +455121,Taxation and Finance,Taxation and Finance +455120,Taxation and Finance,Taxation and Finance +455118,Taxation and Finance,Taxation and Finance +455115,Taxation and Finance,Taxation and Finance +455113,Taxation and Finance,Taxation and Finance +455106,Taxation and Finance,Taxation and Finance +455101,Taxation and Finance,Taxation and Finance +453053,Taxation and Finance,Taxation and Finance +452740,Taxation and Finance,Taxation and Finance +452736,Taxation and Finance,Taxation and Finance +452734,Taxation and Finance,Taxation and Finance +452730,Taxation and Finance,Taxation and Finance +452727,Taxation and Finance,Taxation and Finance +452715,Taxation and Finance,Taxation and Finance +452712,Taxation and Finance,Taxation and Finance +452709,Taxation and Finance,Taxation and Finance +452704,Taxation and Finance,Taxation and Finance +452671,Taxation and Finance,Taxation and Finance +452668,Taxation and Finance,Taxation and Finance +452666,Taxation and Finance,Taxation and Finance +452664,Taxation and Finance,Taxation and Finance +450013,Taxation and Finance,Taxation and Finance +450009,Taxation and Finance,Taxation and Finance +449993,Taxation and Finance,Taxation and Finance +449980,Taxation and Finance,Taxation and Finance +449975,Taxation and Finance,Taxation and Finance +447423,Taxation and Finance,Taxation and Finance +447418,Taxation and Finance,Taxation and Finance +447416,Taxation and Finance,Taxation and Finance +445621,Taxation and Finance,Taxation and Finance +445619,Taxation and Finance,Taxation and Finance +445609,Taxation and Finance,Taxation and Finance +443932,Taxation and Finance,Taxation and Finance +443912,Taxation and Finance,Taxation and Finance +443911,Taxation and Finance,Taxation and Finance +443907,Taxation and Finance,Taxation and Finance +443906,Taxation and Finance,Taxation and Finance +442525,Taxation and Finance,Taxation and Finance +442494,Taxation and Finance,Taxation and Finance +442491,Taxation and Finance,Taxation and Finance +442487,Taxation and Finance,Taxation and Finance +442483,Taxation and Finance,Taxation and Finance +442478,Taxation and Finance,Taxation and Finance +442463,Taxation and Finance,Taxation and Finance +442457,Taxation and Finance,Taxation and Finance +442445,Taxation and Finance,Taxation and Finance +438794,Taxation and Finance,Taxation and Finance +438792,Taxation and Finance,Taxation and Finance +438791,Taxation and Finance,Taxation and Finance +438780,Taxation and Finance,Taxation and Finance +438776,Taxation and Finance,Taxation and Finance +435618,Taxation and Finance,Taxation and Finance +435611,Taxation and Finance,Taxation and Finance +435610,Taxation and Finance,Taxation and Finance +435607,Taxation and Finance,Taxation and Finance +435601,Taxation and Finance,Taxation and Finance +435595,Taxation and Finance,Taxation and Finance +435588,Taxation and Finance,Taxation and Finance +543679,Taxation and Finance,Taxation and Finance +541740,Taxation and Finance,Taxation and Finance +541738,Taxation and Finance,Taxation and Finance +539598,Taxation and Finance,Taxation and Finance +538396,Taxation and Finance,Taxation and Finance +538391,Taxation and Finance,Taxation and Finance +538388,Taxation and Finance,Taxation and Finance +538137,Taxation and Finance,Taxation and Finance +538134,Taxation and Finance,Taxation and Finance +535146,Taxation and Finance,Taxation and Finance +535143,Taxation and Finance,Taxation and Finance +531648,Taxation and Finance,Taxation and Finance +531644,Taxation and Finance,Taxation and Finance +529941,Taxation and Finance,Taxation and Finance +529940,Taxation and Finance,Taxation and Finance +529939,Taxation and Finance,Taxation and Finance +529938,Taxation and Finance,Taxation and Finance +525455,Taxation and Finance,Taxation and Finance +120910,Other,Capital Markets +120902,Other,Capital Markets +93796,Other,Capital Markets +93782,Other,Capital Markets +109197,Other,Corporate Governance +509610,Environment,Environment +417489,Environment,Environment +311371,Taxation and Finance,Taxation and Finance +417489,Taxation and Finance,Taxation and Finance +76054,Environment,Environment +76046,Environment,Environment +160248,Environment,Environment +117681,Government Procurement,Government Procurement +117675,Government Procurement,Government Procurement +106291,Government Procurement,Government Procurement +168656,Transportation,Transportation +358388,Health,Health +344892,Health,Health +192354,Environment,Environment +192349,Environment,Environment +155631,Environment,Environment +155630,Environment,Environment +306151,Environment,Environment +306130,Environment,Environment +306129,Environment,Environment +306112,Environment,Environment +306111,Environment,Environment +306110,Environment,Environment +306109,Environment,Environment +192357,Environment,Environment +192353,Immigration,Immigration +192356,Industry,Industry +306111,Regional Development,Regional Development +306110,Regional Development,Regional Development +102503,Regional Development,Regional Development +102502,Regional Development,Regional Development +102501,Regional Development,Regional Development +102500,Regional Development,Regional Development +102498,Regional Development,Regional Development +102495,Regional Development,Regional Development +102494,Regional Development,Regional Development +192357,Regional Development,Regional Development +155631,Regional Development,Regional Development +306152,Regional Development,Regional Development +306130,Regional Development,Regional Development +306129,Regional Development,Regional Development +306111,Tourism,Tourism +306110,Tourism,Tourism +102503,Tourism,Tourism +102502,Tourism,Tourism +102501,Tourism,Tourism +102500,Tourism,Tourism +102498,Tourism,Tourism +102495,Tourism,Tourism +102494,Tourism,Tourism +155631,Tourism,Tourism +306109,Tourism,Tourism +192358,Tourism,Tourism +192357,Tourism,Tourism +192356,Tourism,Tourism +192353,Tourism,Tourism +306152,Tourism,Tourism +306151,Tourism,Tourism +306150,Tourism,Tourism +306130,Tourism,Tourism +306129,Tourism,Tourism +306110,Transportation,Transportation +306109,Transportation,Transportation +233887,Transportation,Transportation +192358,Transportation,Transportation +192356,Transportation,Transportation +192355,Transportation,Transportation +192354,Transportation,Transportation +155631,Transportation,Transportation +155630,Transportation,Transportation +306152,Transportation,Transportation +306151,Transportation,Transportation +306150,Transportation,Transportation +306130,Transportation,Transportation +306129,Transportation,Transportation +306112,Transportation,Transportation +86534,Energy,Energy +74795,Environment,Environment +74794,Environment,Environment +86535,Environment,Environment +87323,Consumer Issues,Consumer Issues +100799,Health,Health +77371,Health,Health +150204,Health,Health +150203,Health,Health +109379,Health,Health +109378,Health,Health +404144,Consumer Issues,Consumer Issues +404143,Consumer Issues,Consumer Issues +96355,Consumer Issues,Consumer Issues +197466,Consumer Issues,Consumer Issues +197462,Consumer Issues,Consumer Issues +176786,Consumer Issues,Consumer Issues +176785,Consumer Issues,Consumer Issues +174708,Consumer Issues,Consumer Issues +397356,Consumer Issues,Consumer Issues +397337,Consumer Issues,Consumer Issues +395305,Consumer Issues,Consumer Issues +395304,Consumer Issues,Consumer Issues +380535,Consumer Issues,Consumer Issues +380533,Consumer Issues,Consumer Issues +380532,Consumer Issues,Consumer Issues +380531,Consumer Issues,Consumer Issues +380530,Consumer Issues,Consumer Issues +380529,Consumer Issues,Consumer Issues +378063,Consumer Issues,Consumer Issues +378062,Consumer Issues,Consumer Issues +378061,Consumer Issues,Consumer Issues +378060,Consumer Issues,Consumer Issues +375500,Consumer Issues,Consumer Issues +375499,Consumer Issues,Consumer Issues +243349,Consumer Issues,Consumer Issues +229273,Consumer Issues,Consumer Issues +210491,Consumer Issues,Consumer Issues +538420,Consumer Issues,Consumer Issues +531553,Consumer Issues,Consumer Issues +501655,Consumer Issues,Consumer Issues +493048,Consumer Issues,Consumer Issues +455763,Consumer Issues,Consumer Issues +455762,Consumer Issues,Consumer Issues +455761,Consumer Issues,Consumer Issues +422680,Consumer Issues,Consumer Issues +422679,Consumer Issues,Consumer Issues +422678,Consumer Issues,Consumer Issues +422677,Consumer Issues,Consumer Issues +422676,Consumer Issues,Consumer Issues +410313,Consumer Issues,Consumer Issues +455762,Financial Institutions,Financial Institutions +455761,Financial Institutions,Financial Institutions +96355,Financial Institutions,Financial Institutions +243349,Financial Institutions,Financial Institutions +229273,Financial Institutions,Financial Institutions +210491,Financial Institutions,Financial Institutions +197466,Financial Institutions,Financial Institutions +197462,Financial Institutions,Financial Institutions +176786,Financial Institutions,Financial Institutions +176785,Financial Institutions,Financial Institutions +422680,Financial Institutions,Financial Institutions +422679,Financial Institutions,Financial Institutions +422678,Financial Institutions,Financial Institutions +422677,Financial Institutions,Financial Institutions +422676,Financial Institutions,Financial Institutions +410313,Financial Institutions,Financial Institutions +531553,Financial Institutions,Financial Institutions +517538,Financial Institutions,Financial Institutions +501655,Financial Institutions,Financial Institutions +410313,Industry,Industry +410311,Industry,Industry +229273,Industry,Industry +210491,Industry,Industry +176786,Industry,Industry +176785,Industry,Industry +174708,Industry,Industry +404145,Industry,Industry +404144,Industry,Industry +404143,Industry,Industry +397356,Industry,Industry +397337,Industry,Industry +395305,Industry,Industry +395304,Industry,Industry +378063,Industry,Industry +378062,Industry,Industry +378061,Industry,Industry +378060,Industry,Industry +375500,Industry,Industry +375499,Industry,Industry +493048,Industry,Industry +372646,International Trade,International Trade +372641,International Trade,International Trade +145598,International Trade,International Trade +319830,International Trade,International Trade +227972,International Trade,International Trade +201208,International Trade,International Trade +375126,International Trade,International Trade +375125,International Trade,International Trade +375124,International Trade,International Trade +372633,Industry,Industry +358236,Industry,Industry +78538,Industry,Industry +145598,Industry,Industry +145394,Industry,Industry +225109,Industry,Industry +225107,Industry,Industry +173545,Industry,Industry +166167,Industry,Industry +328891,Intellectual Property,Intellectual Property +319830,Intellectual Property,Intellectual Property +201208,Intellectual Property,Intellectual Property +176067,Intellectual Property,Intellectual Property +166167,Intellectual Property,Intellectual Property +166166,Intellectual Property,Intellectual Property +162366,Intellectual Property,Intellectual Property +162338,Intellectual Property,Intellectual Property +145598,Intellectual Property,Intellectual Property +375126,Intellectual Property,Intellectual Property +375125,Intellectual Property,Intellectual Property +375124,Intellectual Property,Intellectual Property +375123,Intellectual Property,Intellectual Property +372646,Intellectual Property,Intellectual Property +372641,Intellectual Property,Intellectual Property +372633,Intellectual Property,Intellectual Property +370052,Intellectual Property,Intellectual Property +370051,Intellectual Property,Intellectual Property +370050,Intellectual Property,Intellectual Property +358236,Intellectual Property,Intellectual Property +358235,Intellectual Property,Intellectual Property +358233,Intellectual Property,Intellectual Property +352421,Intellectual Property,Intellectual Property +352420,Intellectual Property,Intellectual Property +349613,Intellectual Property,Intellectual Property +349612,Intellectual Property,Intellectual Property +349610,Intellectual Property,Intellectual Property +347896,Intellectual Property,Intellectual Property +347894,Intellectual Property,Intellectual Property +330506,Intellectual Property,Intellectual Property +330505,Intellectual Property,Intellectual Property +330504,Intellectual Property,Intellectual Property +372633,International Relations,International Relations +370050,International Relations,International Relations +319830,International Relations,International Relations +375126,International Relations,International Relations +375125,International Relations,International Relations +375124,International Relations,International Relations +349611,Health,Health +342657,Health,Health +145598,Health,Health +145396,Health,Health +145394,Health,Health +140855,Health,Health +140854,Health,Health +81076,Health,Health +155967,Health,Health +155966,Health,Health +331634,Health,Health +330506,Health,Health +330505,Health,Health +330504,Health,Health +319816,Health,Health +319814,Health,Health +319812,Health,Health +246169,Health,Health +231349,Health,Health +201208,Health,Health +375126,Health,Health +375125,Health,Health +375124,Health,Health +372646,Health,Health +372641,Health,Health +372633,Health,Health +370052,Health,Health +349613,Health,Health +461289,Employment and Training,Employment and Training +461285,Employment and Training,Employment and Training +86714,Employment and Training,Employment and Training +86695,Employment and Training,Employment and Training +86694,Employment and Training,Employment and Training +86675,Employment and Training,Employment and Training +86658,Employment and Training,Employment and Training +86656,Employment and Training,Employment and Training +86655,Employment and Training,Employment and Training +86654,Employment and Training,Employment and Training +86634,Employment and Training,Employment and Training +86615,Employment and Training,Employment and Training +86614,Employment and Training,Employment and Training +86715,Employment and Training,Employment and Training +159359,Employment and Training,Employment and Training +134962,Employment and Training,Employment and Training +303635,Employment and Training,Employment and Training +303630,Employment and Training,Employment and Training +303622,Employment and Training,Employment and Training +303618,Employment and Training,Employment and Training +271727,Employment and Training,Employment and Training +250903,Employment and Training,Employment and Training +250902,Employment and Training,Employment and Training +250889,Employment and Training,Employment and Training +244706,Employment and Training,Employment and Training +199569,Employment and Training,Employment and Training +189038,Employment and Training,Employment and Training +177108,Employment and Training,Employment and Training +177094,Employment and Training,Employment and Training +161515,Employment and Training,Employment and Training +161505,Employment and Training,Employment and Training +161499,Employment and Training,Employment and Training +455226,Employment and Training,Employment and Training +441729,Employment and Training,Employment and Training +430510,Employment and Training,Employment and Training +405425,Employment and Training,Employment and Training +390294,Employment and Training,Employment and Training +390286,Employment and Training,Employment and Training +384890,Employment and Training,Employment and Training +382510,Employment and Training,Employment and Training +365048,Employment and Training,Employment and Training +365047,Employment and Training,Employment and Training +358147,Employment and Training,Employment and Training +340998,Employment and Training,Employment and Training +340977,Employment and Training,Employment and Training +340951,Employment and Training,Employment and Training +333598,Employment and Training,Employment and Training +309881,Employment and Training,Employment and Training +309857,Employment and Training,Employment and Training +309834,Employment and Training,Employment and Training +309823,Employment and Training,Employment and Training +309819,Employment and Training,Employment and Training +538146,Employment and Training,Employment and Training +538128,Employment and Training,Employment and Training +534143,Employment and Training,Employment and Training +517869,Employment and Training,Employment and Training +517151,Employment and Training,Employment and Training +505229,Employment and Training,Employment and Training +490103,Employment and Training,Employment and Training +490095,Employment and Training,Employment and Training +490081,Employment and Training,Employment and Training +470404,Employment and Training,Employment and Training +490121,Energy,Energy +490097,Energy,Energy +132301,Energy,Energy +161511,Energy,Energy +309875,Energy,Energy +309871,Energy,Energy +271727,Energy,Energy +271726,Energy,Energy +271725,Energy,Energy +250841,Energy,Energy +250834,Energy,Energy +467497,Energy,Energy +464502,Energy,Energy +461340,Energy,Energy +461332,Energy,Energy +461302,Energy,Energy +455226,Energy,Energy +449320,Energy,Energy +441962,Energy,Energy +421890,Energy,Energy +419154,Energy,Energy +403320,Energy,Energy +400054,Energy,Energy +400042,Energy,Energy +400040,Energy,Energy +394052,Energy,Energy +394050,Energy,Energy +394036,Energy,Energy +390371,Energy,Energy +390301,Energy,Energy +390294,Energy,Energy +390286,Energy,Energy +390277,Energy,Energy +390156,Energy,Energy +387617,Energy,Energy +387614,Energy,Energy +340958,Energy,Energy +531323,Energy,Energy +531312,Energy,Energy +531308,Energy,Energy +528243,Energy,Energy +528231,Energy,Energy +526196,Energy,Energy +519237,Energy,Energy +517894,Energy,Energy +513082,Energy,Energy +528231,Environment,Environment +526224,Environment,Environment +86715,Environment,Environment +86695,Environment,Environment +86694,Environment,Environment +86675,Environment,Environment +86658,Environment,Environment +86654,Environment,Environment +86615,Environment,Environment +86614,Environment,Environment +79360,Environment,Environment +151908,Environment,Environment +148015,Environment,Environment +148014,Environment,Environment +145520,Environment,Environment +145519,Environment,Environment +142549,Environment,Environment +142547,Environment,Environment +142542,Environment,Environment +142540,Environment,Environment +142526,Environment,Environment +142521,Environment,Environment +111318,Environment,Environment +111316,Environment,Environment +111315,Environment,Environment +111294,Environment,Environment +199589,Environment,Environment +199587,Environment,Environment +199586,Environment,Environment +199584,Environment,Environment +199582,Environment,Environment +199579,Environment,Environment +199578,Environment,Environment +199571,Environment,Environment +199570,Environment,Environment +199569,Environment,Environment +199568,Environment,Environment +189038,Environment,Environment +189037,Environment,Environment +189036,Environment,Environment +189033,Environment,Environment +189031,Environment,Environment +183944,Environment,Environment +183924,Environment,Environment +183904,Environment,Environment +183844,Environment,Environment +183824,Environment,Environment +177110,Environment,Environment +177109,Environment,Environment +177107,Environment,Environment +177106,Environment,Environment +177105,Environment,Environment +177104,Environment,Environment +177103,Environment,Environment +177102,Environment,Environment +177101,Environment,Environment +177100,Environment,Environment +177099,Environment,Environment +177098,Environment,Environment +177097,Environment,Environment +177094,Environment,Environment +177090,Environment,Environment +177089,Environment,Environment +173065,Environment,Environment +170763,Environment,Environment +170761,Environment,Environment +170760,Environment,Environment +170759,Environment,Environment +161514,Environment,Environment +161513,Environment,Environment +161512,Environment,Environment +161511,Environment,Environment +161510,Environment,Environment +161506,Environment,Environment +161502,Environment,Environment +161501,Environment,Environment +159360,Environment,Environment +158548,Environment,Environment +157029,Environment,Environment +156989,Environment,Environment +156784,Environment,Environment +156783,Environment,Environment +156782,Environment,Environment +156781,Environment,Environment +156780,Environment,Environment +156779,Environment,Environment +156778,Environment,Environment +156775,Environment,Environment +154640,Environment,Environment +153158,Environment,Environment +151909,Environment,Environment +327437,Environment,Environment +327436,Environment,Environment +327432,Environment,Environment +324018,Environment,Environment +324017,Environment,Environment +324016,Environment,Environment +324015,Environment,Environment +324012,Environment,Environment +321524,Environment,Environment +319107,Environment,Environment +319103,Environment,Environment +319102,Environment,Environment +319101,Environment,Environment +315035,Environment,Environment +315034,Environment,Environment +315013,Environment,Environment +309887,Environment,Environment +309886,Environment,Environment +309884,Environment,Environment +309883,Environment,Environment +309873,Environment,Environment +309871,Environment,Environment +309864,Environment,Environment +309861,Environment,Environment +309859,Environment,Environment +309851,Environment,Environment +309834,Environment,Environment +309818,Environment,Environment +309815,Environment,Environment +309812,Environment,Environment +309811,Environment,Environment +309809,Environment,Environment +309805,Environment,Environment +309804,Environment,Environment +303628,Environment,Environment +303625,Environment,Environment +295090,Environment,Environment +291087,Environment,Environment +291078,Environment,Environment +286153,Environment,Environment +280014,Environment,Environment +280011,Environment,Environment +279991,Environment,Environment +279987,Environment,Environment +279985,Environment,Environment +279984,Environment,Environment +279983,Environment,Environment +279981,Environment,Environment +279979,Environment,Environment +279972,Environment,Environment +277302,Environment,Environment +271727,Environment,Environment +271726,Environment,Environment +271710,Environment,Environment +266731,Environment,Environment +266730,Environment,Environment +266691,Environment,Environment +264287,Environment,Environment +264278,Environment,Environment +264052,Environment,Environment +256980,Environment,Environment +256979,Environment,Environment +256978,Environment,Environment +256974,Environment,Environment +256971,Environment,Environment +254289,Environment,Environment +250898,Environment,Environment +250885,Environment,Environment +250881,Environment,Environment +250875,Environment,Environment +250869,Environment,Environment +250817,Environment,Environment +250791,Environment,Environment +250789,Environment,Environment +250784,Environment,Environment +250770,Environment,Environment +250750,Environment,Environment +244753,Environment,Environment +244751,Environment,Environment +244733,Environment,Environment +244728,Environment,Environment +244720,Environment,Environment +244719,Environment,Environment +241250,Environment,Environment +241247,Environment,Environment +241228,Environment,Environment +241204,Environment,Environment +241173,Environment,Environment +241170,Environment,Environment +241153,Environment,Environment +241100,Environment,Environment +241095,Environment,Environment +241092,Environment,Environment +236022,Environment,Environment +236019,Environment,Environment +236018,Environment,Environment +236016,Environment,Environment +232674,Environment,Environment +232671,Environment,Environment +230476,Environment,Environment +230463,Environment,Environment +230462,Environment,Environment +230457,Environment,Environment +230447,Environment,Environment +230446,Environment,Environment +230444,Environment,Environment +230441,Environment,Environment +230440,Environment,Environment +230436,Environment,Environment +230435,Environment,Environment +226590,Environment,Environment +223392,Environment,Environment +223389,Environment,Environment +223369,Environment,Environment +217253,Environment,Environment +217251,Environment,Environment +217248,Environment,Environment +217247,Environment,Environment +199591,Environment,Environment +407600,Environment,Environment +407598,Environment,Environment +407596,Environment,Environment +407595,Environment,Environment +407593,Environment,Environment +407550,Environment,Environment +407548,Environment,Environment +407546,Environment,Environment +407545,Environment,Environment +407544,Environment,Environment +407542,Environment,Environment +407541,Environment,Environment +407540,Environment,Environment +407536,Environment,Environment +407534,Environment,Environment +406734,Environment,Environment +406733,Environment,Environment +406731,Environment,Environment +406719,Environment,Environment +406716,Environment,Environment +406713,Environment,Environment +406711,Environment,Environment +406709,Environment,Environment +406708,Environment,Environment +406702,Environment,Environment +405578,Environment,Environment +405457,Environment,Environment +405454,Environment,Environment +405420,Environment,Environment +405414,Environment,Environment +405413,Environment,Environment +405411,Environment,Environment +405410,Environment,Environment +403618,Environment,Environment +403614,Environment,Environment +403613,Environment,Environment +403604,Environment,Environment +403602,Environment,Environment +403600,Environment,Environment +403599,Environment,Environment +403597,Environment,Environment +403591,Environment,Environment +403589,Environment,Environment +403580,Environment,Environment +403576,Environment,Environment +403558,Environment,Environment +403556,Environment,Environment +403551,Environment,Environment +403548,Environment,Environment +403535,Environment,Environment +403530,Environment,Environment +403342,Environment,Environment +403338,Environment,Environment +403335,Environment,Environment +403334,Environment,Environment +403320,Environment,Environment +403297,Environment,Environment +403296,Environment,Environment +403294,Environment,Environment +403288,Environment,Environment +403286,Environment,Environment +403284,Environment,Environment +403281,Environment,Environment +400069,Environment,Environment +400063,Environment,Environment +400060,Environment,Environment +400058,Environment,Environment +400051,Environment,Environment +400050,Environment,Environment +400038,Environment,Environment +400037,Environment,Environment +400035,Environment,Environment +400033,Environment,Environment +400031,Environment,Environment +400029,Environment,Environment +400028,Environment,Environment +398414,Environment,Environment +398412,Environment,Environment +398371,Environment,Environment +398367,Environment,Environment +398365,Environment,Environment +398364,Environment,Environment +398354,Environment,Environment +398287,Environment,Environment +396613,Environment,Environment +396609,Environment,Environment +396604,Environment,Environment +396600,Environment,Environment +396590,Environment,Environment +396580,Environment,Environment +394053,Environment,Environment +394052,Environment,Environment +394050,Environment,Environment +394049,Environment,Environment +394048,Environment,Environment +394036,Environment,Environment +392732,Environment,Environment +392723,Environment,Environment +390566,Environment,Environment +390561,Environment,Environment +390400,Environment,Environment +390397,Environment,Environment +390371,Environment,Environment +390362,Environment,Environment +390358,Environment,Environment +390352,Environment,Environment +390345,Environment,Environment +390340,Environment,Environment +390294,Environment,Environment +390286,Environment,Environment +390277,Environment,Environment +390167,Environment,Environment +390165,Environment,Environment +390162,Environment,Environment +390156,Environment,Environment +390150,Environment,Environment +390143,Environment,Environment +390135,Environment,Environment +387685,Environment,Environment +387678,Environment,Environment +387676,Environment,Environment +387622,Environment,Environment +387619,Environment,Environment +387609,Environment,Environment +387607,Environment,Environment +387599,Environment,Environment +384925,Environment,Environment +384924,Environment,Environment +384923,Environment,Environment +384904,Environment,Environment +384892,Environment,Environment +384891,Environment,Environment +383212,Environment,Environment +383206,Environment,Environment +383205,Environment,Environment +383203,Environment,Environment +383202,Environment,Environment +382241,Environment,Environment +382238,Environment,Environment +382237,Environment,Environment +382236,Environment,Environment +382235,Environment,Environment +380873,Environment,Environment +380868,Environment,Environment +380865,Environment,Environment +380864,Environment,Environment +380861,Environment,Environment +380858,Environment,Environment +378952,Environment,Environment +378941,Environment,Environment +378834,Environment,Environment +378829,Environment,Environment +378821,Environment,Environment +378816,Environment,Environment +378815,Environment,Environment +378812,Environment,Environment +378806,Environment,Environment +378803,Environment,Environment +378802,Environment,Environment +376505,Environment,Environment +376502,Environment,Environment +376501,Environment,Environment +376498,Environment,Environment +376496,Environment,Environment +376298,Environment,Environment +374316,Environment,Environment +374314,Environment,Environment +374313,Environment,Environment +374311,Environment,Environment +374304,Environment,Environment +374303,Environment,Environment +374302,Environment,Environment +374299,Environment,Environment +374291,Environment,Environment +372391,Environment,Environment +372375,Environment,Environment +372373,Environment,Environment +372369,Environment,Environment +372362,Environment,Environment +372360,Environment,Environment +372354,Environment,Environment +372342,Environment,Environment +367999,Environment,Environment +367995,Environment,Environment +367992,Environment,Environment +367991,Environment,Environment +367990,Environment,Environment +366546,Environment,Environment +366533,Environment,Environment +365082,Environment,Environment +365075,Environment,Environment +365072,Environment,Environment +365061,Environment,Environment +365059,Environment,Environment +365058,Environment,Environment +365054,Environment,Environment +365045,Environment,Environment +363451,Environment,Environment +361782,Environment,Environment +359455,Environment,Environment +358158,Environment,Environment +357289,Environment,Environment +357286,Environment,Environment +356287,Environment,Environment +356273,Environment,Environment +356268,Environment,Environment +356264,Environment,Environment +356250,Environment,Environment +352703,Environment,Environment +352702,Environment,Environment +352700,Environment,Environment +350490,Environment,Environment +348911,Environment,Environment +348910,Environment,Environment +348907,Environment,Environment +344889,Environment,Environment +344888,Environment,Environment +344887,Environment,Environment +344886,Environment,Environment +344884,Environment,Environment +343903,Environment,Environment +343897,Environment,Environment +340989,Environment,Environment +340962,Environment,Environment +340958,Environment,Environment +340957,Environment,Environment +340955,Environment,Environment +340954,Environment,Environment +340951,Environment,Environment +340948,Environment,Environment +340947,Environment,Environment +340946,Environment,Environment +340944,Environment,Environment +340942,Environment,Environment +340941,Environment,Environment +340940,Environment,Environment +340939,Environment,Environment +340938,Environment,Environment +340935,Environment,Environment +340924,Environment,Environment +337843,Environment,Environment +337842,Environment,Environment +337714,Environment,Environment +337709,Environment,Environment +337708,Environment,Environment +337707,Environment,Environment +335796,Environment,Environment +335793,Environment,Environment +335785,Environment,Environment +335780,Environment,Environment +335762,Environment,Environment +335758,Environment,Environment +335757,Environment,Environment +333606,Environment,Environment +333598,Environment,Environment +331238,Environment,Environment +331237,Environment,Environment +331236,Environment,Environment +331235,Environment,Environment +331233,Environment,Environment +330070,Environment,Environment +330067,Environment,Environment +330060,Environment,Environment +330059,Environment,Environment +330058,Environment,Environment +327444,Environment,Environment +526222,Environment,Environment +526219,Environment,Environment +526205,Environment,Environment +526200,Environment,Environment +526199,Environment,Environment +526196,Environment,Environment +526193,Environment,Environment +522399,Environment,Environment +519237,Environment,Environment +519232,Environment,Environment +519229,Environment,Environment +519224,Environment,Environment +517933,Environment,Environment +517916,Environment,Environment +517902,Environment,Environment +517897,Environment,Environment +517894,Environment,Environment +517874,Environment,Environment +517869,Environment,Environment +517864,Environment,Environment +517155,Environment,Environment +517149,Environment,Environment +517147,Environment,Environment +514684,Environment,Environment +514683,Environment,Environment +513995,Environment,Environment +513992,Environment,Environment +513988,Environment,Environment +513987,Environment,Environment +513986,Environment,Environment +513985,Environment,Environment +513074,Environment,Environment +510812,Environment,Environment +510810,Environment,Environment +509540,Environment,Environment +509539,Environment,Environment +509538,Environment,Environment +509537,Environment,Environment +509536,Environment,Environment +508165,Environment,Environment +501883,Environment,Environment +501880,Environment,Environment +501876,Environment,Environment +501826,Environment,Environment +498604,Environment,Environment +498603,Environment,Environment +498600,Environment,Environment +498598,Environment,Environment +498593,Environment,Environment +498591,Environment,Environment +498585,Environment,Environment +495777,Environment,Environment +495774,Environment,Environment +495768,Environment,Environment +495762,Environment,Environment +490118,Environment,Environment +490117,Environment,Environment +490116,Environment,Environment +490113,Environment,Environment +490112,Environment,Environment +490111,Environment,Environment +490107,Environment,Environment +490105,Environment,Environment +490091,Environment,Environment +490084,Environment,Environment +490077,Environment,Environment +490074,Environment,Environment +487293,Environment,Environment +487292,Environment,Environment +485073,Environment,Environment +485065,Environment,Environment +485060,Environment,Environment +485056,Environment,Environment +485040,Environment,Environment +485037,Environment,Environment +485023,Environment,Environment +485019,Environment,Environment +485013,Environment,Environment +485006,Environment,Environment +485001,Environment,Environment +484996,Environment,Environment +484992,Environment,Environment +482183,Environment,Environment +482162,Environment,Environment +482161,Environment,Environment +482156,Environment,Environment +479961,Environment,Environment +479952,Environment,Environment +479951,Environment,Environment +479919,Environment,Environment +479915,Environment,Environment +479904,Environment,Environment +479898,Environment,Environment +479892,Environment,Environment +479859,Environment,Environment +479702,Environment,Environment +477441,Environment,Environment +477437,Environment,Environment +475349,Environment,Environment +475348,Environment,Environment +472756,Environment,Environment +470411,Environment,Environment +470404,Environment,Environment +470397,Environment,Environment +470385,Environment,Environment +470383,Environment,Environment +467497,Environment,Environment +467493,Environment,Environment +467456,Environment,Environment +464495,Environment,Environment +464479,Environment,Environment +464475,Environment,Environment +462580,Environment,Environment +461368,Environment,Environment +461341,Environment,Environment +461340,Environment,Environment +461339,Environment,Environment +461338,Environment,Environment +461332,Environment,Environment +461304,Environment,Environment +460501,Environment,Environment +459460,Environment,Environment +457309,Environment,Environment +457295,Environment,Environment +457291,Environment,Environment +457288,Environment,Environment +457286,Environment,Environment +457285,Environment,Environment +457283,Environment,Environment +455278,Environment,Environment +455273,Environment,Environment +455272,Environment,Environment +455244,Environment,Environment +455240,Environment,Environment +455232,Environment,Environment +455226,Environment,Environment +455217,Environment,Environment +455215,Environment,Environment +455213,Environment,Environment +455211,Environment,Environment +455208,Environment,Environment +455202,Environment,Environment +455195,Environment,Environment +455189,Environment,Environment +455187,Environment,Environment +455185,Environment,Environment +455182,Environment,Environment +455177,Environment,Environment +455172,Environment,Environment +455170,Environment,Environment +455158,Environment,Environment +455156,Environment,Environment +455155,Environment,Environment +455150,Environment,Environment +455148,Environment,Environment +452572,Environment,Environment +452571,Environment,Environment +452564,Environment,Environment +452562,Environment,Environment +452547,Environment,Environment +452507,Environment,Environment +452501,Environment,Environment +452497,Environment,Environment +452493,Environment,Environment +452491,Environment,Environment +452482,Environment,Environment +449542,Environment,Environment +449531,Environment,Environment +449525,Environment,Environment +449524,Environment,Environment +449523,Environment,Environment +449316,Environment,Environment +449314,Environment,Environment +448077,Environment,Environment +448074,Environment,Environment +448070,Environment,Environment +448039,Environment,Environment +448025,Environment,Environment +448022,Environment,Environment +448020,Environment,Environment +448019,Environment,Environment +447969,Environment,Environment +447920,Environment,Environment +447914,Environment,Environment +447912,Environment,Environment +447907,Environment,Environment +447901,Environment,Environment +447898,Environment,Environment +447892,Environment,Environment +447891,Environment,Environment +447890,Environment,Environment +447887,Environment,Environment +447847,Environment,Environment +447843,Environment,Environment +447832,Environment,Environment +447823,Environment,Environment +447807,Environment,Environment +447787,Environment,Environment +447783,Environment,Environment +447780,Environment,Environment +447778,Environment,Environment +447776,Environment,Environment +445086,Environment,Environment +444975,Environment,Environment +444971,Environment,Environment +444717,Environment,Environment +443733,Environment,Environment +443732,Environment,Environment +443730,Environment,Environment +443727,Environment,Environment +443724,Environment,Environment +443721,Environment,Environment +443720,Environment,Environment +443719,Environment,Environment +443718,Environment,Environment +443711,Environment,Environment +443710,Environment,Environment +443709,Environment,Environment +442027,Environment,Environment +442020,Environment,Environment +442015,Environment,Environment +442006,Environment,Environment +442004,Environment,Environment +441998,Environment,Environment +441995,Environment,Environment +441991,Environment,Environment +441981,Environment,Environment +441978,Environment,Environment +441977,Environment,Environment +441972,Environment,Environment +441971,Environment,Environment +441969,Environment,Environment +441962,Environment,Environment +441953,Environment,Environment +441916,Environment,Environment +441912,Environment,Environment +441787,Environment,Environment +441725,Environment,Environment +441723,Environment,Environment +441721,Environment,Environment +441720,Environment,Environment +441719,Environment,Environment +441718,Environment,Environment +441713,Environment,Environment +441711,Environment,Environment +441710,Environment,Environment +441693,Environment,Environment +441688,Environment,Environment +441686,Environment,Environment +441685,Environment,Environment +441675,Environment,Environment +441664,Environment,Environment +441663,Environment,Environment +441658,Environment,Environment +441656,Environment,Environment +441655,Environment,Environment +441641,Environment,Environment +441631,Environment,Environment +441627,Environment,Environment +438762,Environment,Environment +438739,Environment,Environment +438735,Environment,Environment +438722,Environment,Environment +438717,Environment,Environment +438713,Environment,Environment +438201,Environment,Environment +438200,Environment,Environment +438199,Environment,Environment +438198,Environment,Environment +438197,Environment,Environment +438195,Environment,Environment +438194,Environment,Environment +438183,Environment,Environment +438182,Environment,Environment +438159,Environment,Environment +438155,Environment,Environment +438151,Environment,Environment +438149,Environment,Environment +435600,Environment,Environment +435597,Environment,Environment +435589,Environment,Environment +435573,Environment,Environment +435571,Environment,Environment +435569,Environment,Environment +435565,Environment,Environment +435563,Environment,Environment +435559,Environment,Environment +435557,Environment,Environment +435554,Environment,Environment +435541,Environment,Environment +435539,Environment,Environment +435536,Environment,Environment +435535,Environment,Environment +435295,Environment,Environment +435288,Environment,Environment +435285,Environment,Environment +435282,Environment,Environment +435280,Environment,Environment +435275,Environment,Environment +435269,Environment,Environment +435266,Environment,Environment +435253,Environment,Environment +435239,Environment,Environment +433624,Environment,Environment +433619,Environment,Environment +433617,Environment,Environment +433616,Environment,Environment +433613,Environment,Environment +433607,Environment,Environment +433602,Environment,Environment +433601,Environment,Environment +433600,Environment,Environment +433593,Environment,Environment +432546,Environment,Environment +432541,Environment,Environment +432540,Environment,Environment +432539,Environment,Environment +432534,Environment,Environment +432498,Environment,Environment +432495,Environment,Environment +432491,Environment,Environment +430543,Environment,Environment +430540,Environment,Environment +430539,Environment,Environment +430518,Environment,Environment +430509,Environment,Environment +430508,Environment,Environment +430495,Environment,Environment +430493,Environment,Environment +429319,Environment,Environment +429312,Environment,Environment +429311,Environment,Environment +429288,Environment,Environment +429282,Environment,Environment +429280,Environment,Environment +429274,Environment,Environment +429268,Environment,Environment +429262,Environment,Environment +426666,Environment,Environment +426645,Environment,Environment +426621,Environment,Environment +426617,Environment,Environment +426610,Environment,Environment +426446,Environment,Environment +426444,Environment,Environment +426441,Environment,Environment +426431,Environment,Environment +426426,Environment,Environment +426421,Environment,Environment +426398,Environment,Environment +426331,Environment,Environment +426324,Environment,Environment +426313,Environment,Environment +426295,Environment,Environment +426270,Environment,Environment +424191,Environment,Environment +424189,Environment,Environment +424185,Environment,Environment +424163,Environment,Environment +424159,Environment,Environment +424154,Environment,Environment +424152,Environment,Environment +424150,Environment,Environment +424142,Environment,Environment +424140,Environment,Environment +424135,Environment,Environment +424108,Environment,Environment +424100,Environment,Environment +424080,Environment,Environment +424059,Environment,Environment +424055,Environment,Environment +424050,Environment,Environment +424045,Environment,Environment +424039,Environment,Environment +421890,Environment,Environment +421888,Environment,Environment +421887,Environment,Environment +421886,Environment,Environment +421883,Environment,Environment +421881,Environment,Environment +421880,Environment,Environment +421867,Environment,Environment +421863,Environment,Environment +421861,Environment,Environment +421860,Environment,Environment +421859,Environment,Environment +421857,Environment,Environment +421853,Environment,Environment +421848,Environment,Environment +419167,Environment,Environment +419166,Environment,Environment +419165,Environment,Environment +419164,Environment,Environment +419156,Environment,Environment +419154,Environment,Environment +419143,Environment,Environment +419137,Environment,Environment +419134,Environment,Environment +419132,Environment,Environment +419116,Environment,Environment +417771,Environment,Environment +417767,Environment,Environment +417761,Environment,Environment +417759,Environment,Environment +417750,Environment,Environment +415608,Environment,Environment +415578,Environment,Environment +415575,Environment,Environment +415573,Environment,Environment +415569,Environment,Environment +415558,Environment,Environment +415419,Environment,Environment +415418,Environment,Environment +415416,Environment,Environment +415415,Environment,Environment +415414,Environment,Environment +415411,Environment,Environment +415407,Environment,Environment +415404,Environment,Environment +415399,Environment,Environment +415394,Environment,Environment +415391,Environment,Environment +415374,Environment,Environment +415371,Environment,Environment +415299,Environment,Environment +415295,Environment,Environment +415289,Environment,Environment +415287,Environment,Environment +415282,Environment,Environment +413636,Environment,Environment +413602,Environment,Environment +413475,Environment,Environment +413468,Environment,Environment +413410,Environment,Environment +413407,Environment,Environment +413369,Environment,Environment +413360,Environment,Environment +413341,Environment,Environment +413306,Environment,Environment +413299,Environment,Environment +409500,Environment,Environment +409490,Environment,Environment +409484,Environment,Environment +409479,Environment,Environment +409473,Environment,Environment +409470,Environment,Environment +409439,Environment,Environment +409436,Environment,Environment +409435,Environment,Environment +409434,Environment,Environment +409433,Environment,Environment +409429,Environment,Environment +409410,Environment,Environment +409407,Environment,Environment +409404,Environment,Environment +409403,Environment,Environment +407638,Environment,Environment +407637,Environment,Environment +407636,Environment,Environment +407635,Environment,Environment +407634,Environment,Environment +407633,Environment,Environment +407632,Environment,Environment +407627,Environment,Environment +407606,Environment,Environment +407605,Environment,Environment +407603,Environment,Environment +407602,Environment,Environment +407601,Environment,Environment +543663,Environment,Environment +543657,Environment,Environment +543656,Environment,Environment +543653,Environment,Environment +543643,Environment,Environment +543640,Environment,Environment +543637,Environment,Environment +541511,Environment,Environment +538123,Environment,Environment +538114,Environment,Environment +534168,Environment,Environment +534152,Environment,Environment +534131,Environment,Environment +534033,Environment,Environment +531328,Environment,Environment +531323,Environment,Environment +531319,Environment,Environment +531318,Environment,Environment +531317,Environment,Environment +531315,Environment,Environment +531312,Environment,Environment +531310,Environment,Environment +531305,Environment,Environment +528255,Environment,Environment +528247,Environment,Environment +455149,Fisheries,Fisheries +447904,Fisheries,Fisheries +161513,Fisheries,Fisheries +161502,Fisheries,Fisheries +161472,Fisheries,Fisheries +161470,Fisheries,Fisheries +148015,Fisheries,Fisheries +217248,Fisheries,Fisheries +203095,Fisheries,Fisheries +199591,Fisheries,Fisheries +199587,Fisheries,Fisheries +199586,Fisheries,Fisheries +199584,Fisheries,Fisheries +199582,Fisheries,Fisheries +199579,Fisheries,Fisheries +199578,Fisheries,Fisheries +199571,Fisheries,Fisheries +199568,Fisheries,Fisheries +177110,Fisheries,Fisheries +177109,Fisheries,Fisheries +177107,Fisheries,Fisheries +177106,Fisheries,Fisheries +177105,Fisheries,Fisheries +177104,Fisheries,Fisheries +177103,Fisheries,Fisheries +177102,Fisheries,Fisheries +177101,Fisheries,Fisheries +177100,Fisheries,Fisheries +177099,Fisheries,Fisheries +177098,Fisheries,Fisheries +177097,Fisheries,Fisheries +177094,Fisheries,Fisheries +177091,Fisheries,Fisheries +177088,Fisheries,Fisheries +177085,Fisheries,Fisheries +175904,Fisheries,Fisheries +175887,Fisheries,Fisheries +175886,Fisheries,Fisheries +372342,Fisheries,Fisheries +365081,Fisheries,Fisheries +365075,Fisheries,Fisheries +365072,Fisheries,Fisheries +365058,Fisheries,Fisheries +365053,Fisheries,Fisheries +363453,Fisheries,Fisheries +356250,Fisheries,Fisheries +343903,Fisheries,Fisheries +340955,Fisheries,Fisheries +340944,Fisheries,Fisheries +340938,Fisheries,Fisheries +331234,Fisheries,Fisheries +331231,Fisheries,Fisheries +331229,Fisheries,Fisheries +330070,Fisheries,Fisheries +330067,Fisheries,Fisheries +327437,Fisheries,Fisheries +319107,Fisheries,Fisheries +319103,Fisheries,Fisheries +315035,Fisheries,Fisheries +309873,Fisheries,Fisheries +309861,Fisheries,Fisheries +303628,Fisheries,Fisheries +291087,Fisheries,Fisheries +279991,Fisheries,Fisheries +279987,Fisheries,Fisheries +277302,Fisheries,Fisheries +264292,Fisheries,Fisheries +254289,Fisheries,Fisheries +250817,Fisheries,Fisheries +250791,Fisheries,Fisheries +244751,Fisheries,Fisheries +244733,Fisheries,Fisheries +244726,Fisheries,Fisheries +244725,Fisheries,Fisheries +244720,Fisheries,Fisheries +244719,Fisheries,Fisheries +241247,Fisheries,Fisheries +241228,Fisheries,Fisheries +241173,Fisheries,Fisheries +241153,Fisheries,Fisheries +241100,Fisheries,Fisheries +241095,Fisheries,Fisheries +241092,Fisheries,Fisheries +236022,Fisheries,Fisheries +236019,Fisheries,Fisheries +236016,Fisheries,Fisheries +230478,Fisheries,Fisheries +230476,Fisheries,Fisheries +230462,Fisheries,Fisheries +230459,Fisheries,Fisheries +230444,Fisheries,Fisheries +226598,Fisheries,Fisheries +226594,Fisheries,Fisheries +226593,Fisheries,Fisheries +226591,Fisheries,Fisheries +223392,Fisheries,Fisheries +223385,Fisheries,Fisheries +444717,Fisheries,Fisheries +443721,Fisheries,Fisheries +443720,Fisheries,Fisheries +441978,Fisheries,Fisheries +441977,Fisheries,Fisheries +441972,Fisheries,Fisheries +441971,Fisheries,Fisheries +441908,Fisheries,Fisheries +441725,Fisheries,Fisheries +441721,Fisheries,Fisheries +441720,Fisheries,Fisheries +441719,Fisheries,Fisheries +441718,Fisheries,Fisheries +441710,Fisheries,Fisheries +441707,Fisheries,Fisheries +441685,Fisheries,Fisheries +441663,Fisheries,Fisheries +441627,Fisheries,Fisheries +438762,Fisheries,Fisheries +438742,Fisheries,Fisheries +438735,Fisheries,Fisheries +438721,Fisheries,Fisheries +438193,Fisheries,Fisheries +435597,Fisheries,Fisheries +435594,Fisheries,Fisheries +435592,Fisheries,Fisheries +435574,Fisheries,Fisheries +435568,Fisheries,Fisheries +435543,Fisheries,Fisheries +435536,Fisheries,Fisheries +435535,Fisheries,Fisheries +435280,Fisheries,Fisheries +435247,Fisheries,Fisheries +435239,Fisheries,Fisheries +435237,Fisheries,Fisheries +433619,Fisheries,Fisheries +430539,Fisheries,Fisheries +430538,Fisheries,Fisheries +430537,Fisheries,Fisheries +430536,Fisheries,Fisheries +430534,Fisheries,Fisheries +430532,Fisheries,Fisheries +430521,Fisheries,Fisheries +430515,Fisheries,Fisheries +430508,Fisheries,Fisheries +430504,Fisheries,Fisheries +430502,Fisheries,Fisheries +430501,Fisheries,Fisheries +430500,Fisheries,Fisheries +430499,Fisheries,Fisheries +430495,Fisheries,Fisheries +430493,Fisheries,Fisheries +429308,Fisheries,Fisheries +429299,Fisheries,Fisheries +429264,Fisheries,Fisheries +426645,Fisheries,Fisheries +426639,Fisheries,Fisheries +426635,Fisheries,Fisheries +426621,Fisheries,Fisheries +426566,Fisheries,Fisheries +426444,Fisheries,Fisheries +426441,Fisheries,Fisheries +426426,Fisheries,Fisheries +426333,Fisheries,Fisheries +426272,Fisheries,Fisheries +424163,Fisheries,Fisheries +424154,Fisheries,Fisheries +424152,Fisheries,Fisheries +424142,Fisheries,Fisheries +424140,Fisheries,Fisheries +424135,Fisheries,Fisheries +424108,Fisheries,Fisheries +424100,Fisheries,Fisheries +424039,Fisheries,Fisheries +424034,Fisheries,Fisheries +421890,Fisheries,Fisheries +421887,Fisheries,Fisheries +421868,Fisheries,Fisheries +419166,Fisheries,Fisheries +419137,Fisheries,Fisheries +419134,Fisheries,Fisheries +415569,Fisheries,Fisheries +415558,Fisheries,Fisheries +415419,Fisheries,Fisheries +415418,Fisheries,Fisheries +415416,Fisheries,Fisheries +415299,Fisheries,Fisheries +415289,Fisheries,Fisheries +413369,Fisheries,Fisheries +409500,Fisheries,Fisheries +409490,Fisheries,Fisheries +409484,Fisheries,Fisheries +409479,Fisheries,Fisheries +409473,Fisheries,Fisheries +409470,Fisheries,Fisheries +409404,Fisheries,Fisheries +407602,Fisheries,Fisheries +407600,Fisheries,Fisheries +407596,Fisheries,Fisheries +407534,Fisheries,Fisheries +406731,Fisheries,Fisheries +403597,Fisheries,Fisheries +403573,Fisheries,Fisheries +403565,Fisheries,Fisheries +403561,Fisheries,Fisheries +403535,Fisheries,Fisheries +403530,Fisheries,Fisheries +403342,Fisheries,Fisheries +403320,Fisheries,Fisheries +403281,Fisheries,Fisheries +398371,Fisheries,Fisheries +394049,Fisheries,Fisheries +392721,Fisheries,Fisheries +390397,Fisheries,Fisheries +390396,Fisheries,Fisheries +390391,Fisheries,Fisheries +387622,Fisheries,Fisheries +380874,Fisheries,Fisheries +380864,Fisheries,Fisheries +378813,Fisheries,Fisheries +376507,Fisheries,Fisheries +543657,Fisheries,Fisheries +541511,Fisheries,Fisheries +531328,Fisheries,Fisheries +517933,Fisheries,Fisheries +517860,Fisheries,Fisheries +517141,Fisheries,Fisheries +513080,Fisheries,Fisheries +510809,Fisheries,Fisheries +501821,Fisheries,Fisheries +498602,Fisheries,Fisheries +498587,Fisheries,Fisheries +490117,Fisheries,Fisheries +490089,Fisheries,Fisheries +490076,Fisheries,Fisheries +490074,Fisheries,Fisheries +475389,Fisheries,Fisheries +475378,Fisheries,Fisheries +475370,Fisheries,Fisheries +475360,Fisheries,Fisheries +475349,Fisheries,Fisheries +470385,Fisheries,Fisheries +461356,Fisheries,Fisheries +461298,Fisheries,Fisheries +461295,Fisheries,Fisheries +457306,Fisheries,Fisheries +457304,Fisheries,Fisheries +457295,Fisheries,Fisheries +470407,Health,Health +470404,Health,Health +490103,Health,Health +271725,Immigration,Immigration +441720,Immigration,Immigration +479863,Industry,Industry +475341,Industry,Industry +159359,Industry,Industry +161512,Industry,Industry +161511,Industry,Industry +161509,Industry,Industry +161507,Industry,Industry +161505,Industry,Industry +161499,Industry,Industry +303622,Industry,Industry +271727,Industry,Industry +271726,Industry,Industry +271725,Industry,Industry +250869,Industry,Industry +250841,Industry,Industry +250770,Industry,Industry +241228,Industry,Industry +241100,Industry,Industry +378941,Industry,Industry +378821,Industry,Industry +378816,Industry,Industry +378812,Industry,Industry +372387,Industry,Industry +366535,Industry,Industry +430510,Industry,Industry +429306,Industry,Industry +517141,Industry,Industry +505262,Industry,Industry +505252,Industry,Industry +505249,Industry,Industry +505233,Industry,Industry +495774,Industry,Industry +487277,Industry,Industry +485060,Industry,Industry +485011,Industry,Industry +470407,International Trade,International Trade +470375,International Trade,International Trade +250891,International Trade,International Trade +250889,International Trade,International Trade +241184,International Trade,International Trade +223396,International Trade,International Trade +223383,International Trade,International Trade +223382,International Trade,International Trade +223381,International Trade,International Trade +217255,International Trade,International Trade +199586,International Trade,International Trade +199584,International Trade,International Trade +199579,International Trade,International Trade +199570,International Trade,International Trade +199567,International Trade,International Trade +173065,International Trade,International Trade +161506,International Trade,International Trade +161499,International Trade,International Trade +157029,International Trade,International Trade +405565,International Trade,International Trade +398362,International Trade,International Trade +398358,International Trade,International Trade +398346,International Trade,International Trade +398344,International Trade,International Trade +398287,International Trade,International Trade +396560,International Trade,International Trade +396558,International Trade,International Trade +396556,International Trade,International Trade +394051,International Trade,International Trade +394026,International Trade,International Trade +392734,International Trade,International Trade +392732,International Trade,International Trade +392731,International Trade,International Trade +392730,International Trade,International Trade +392729,International Trade,International Trade +392728,International Trade,International Trade +392727,International Trade,International Trade +392726,International Trade,International Trade +392725,International Trade,International Trade +392724,International Trade,International Trade +392722,International Trade,International Trade +390568,International Trade,International Trade +390389,International Trade,International Trade +390160,International Trade,International Trade +390147,International Trade,International Trade +390114,International Trade,International Trade +387679,International Trade,International Trade +383219,International Trade,International Trade +383214,International Trade,International Trade +383204,International Trade,International Trade +378952,International Trade,International Trade +378950,International Trade,International Trade +378946,International Trade,International Trade +378944,International Trade,International Trade +378833,International Trade,International Trade +378828,International Trade,International Trade +378827,International Trade,International Trade +378820,International Trade,International Trade +378819,International Trade,International Trade +378797,International Trade,International Trade +376504,International Trade,International Trade +376503,International Trade,International Trade +376501,International Trade,International Trade +376500,International Trade,International Trade +376495,International Trade,International Trade +376303,International Trade,International Trade +376301,International Trade,International Trade +376297,International Trade,International Trade +374287,International Trade,International Trade +372354,International Trade,International Trade +372353,International Trade,International Trade +372350,International Trade,International Trade +366531,International Trade,International Trade +365061,International Trade,International Trade +358149,International Trade,International Trade +356266,International Trade,International Trade +356252,International Trade,International Trade +350481,International Trade,International Trade +344885,International Trade,International Trade +343899,International Trade,International Trade +340973,International Trade,International Trade +340964,International Trade,International Trade +340962,International Trade,International Trade +340960,International Trade,International Trade +340936,International Trade,International Trade +331232,International Trade,International Trade +327422,International Trade,International Trade +324305,International Trade,International Trade +324025,International Trade,International Trade +324024,International Trade,International Trade +321528,International Trade,International Trade +321520,International Trade,International Trade +319109,International Trade,International Trade +315037,International Trade,International Trade +309834,International Trade,International Trade +295130,International Trade,International Trade +271727,International Trade,International Trade +271726,International Trade,International Trade +271725,International Trade,International Trade +266690,International Trade,International Trade +464338,International Trade,International Trade +464336,International Trade,International Trade +462580,International Trade,International Trade +461357,International Trade,International Trade +461339,International Trade,International Trade +461338,International Trade,International Trade +461334,International Trade,International Trade +461287,International Trade,International Trade +460502,International Trade,International Trade +459462,International Trade,International Trade +459461,International Trade,International Trade +458030,International Trade,International Trade +457308,International Trade,International Trade +457300,International Trade,International Trade +457293,International Trade,International Trade +457292,International Trade,International Trade +457290,International Trade,International Trade +455268,International Trade,International Trade +455236,International Trade,International Trade +455218,International Trade,International Trade +455207,International Trade,International Trade +455205,International Trade,International Trade +455193,International Trade,International Trade +455192,International Trade,International Trade +455189,International Trade,International Trade +455152,International Trade,International Trade +452572,International Trade,International Trade +452570,International Trade,International Trade +452567,International Trade,International Trade +452566,International Trade,International Trade +452501,International Trade,International Trade +452497,International Trade,International Trade +452493,International Trade,International Trade +452491,International Trade,International Trade +452485,International Trade,International Trade +452484,International Trade,International Trade +452481,International Trade,International Trade +449546,International Trade,International Trade +449534,International Trade,International Trade +447836,International Trade,International Trade +447761,International Trade,International Trade +447758,International Trade,International Trade +444977,International Trade,International Trade +444972,International Trade,International Trade +443726,International Trade,International Trade +443724,International Trade,International Trade +443723,International Trade,International Trade +442020,International Trade,International Trade +442018,International Trade,International Trade +441962,International Trade,International Trade +441916,International Trade,International Trade +441716,International Trade,International Trade +441715,International Trade,International Trade +441691,International Trade,International Trade +441688,International Trade,International Trade +441649,International Trade,International Trade +441636,International Trade,International Trade +438190,International Trade,International Trade +435600,International Trade,International Trade +435559,International Trade,International Trade +435550,International Trade,International Trade +435258,International Trade,International Trade +435257,International Trade,International Trade +435256,International Trade,International Trade +433622,International Trade,International Trade +433620,International Trade,International Trade +433619,International Trade,International Trade +433617,International Trade,International Trade +433615,International Trade,International Trade +432549,International Trade,International Trade +430548,International Trade,International Trade +430546,International Trade,International Trade +430545,International Trade,International Trade +430544,International Trade,International Trade +430542,International Trade,International Trade +430541,International Trade,International Trade +430520,International Trade,International Trade +430519,International Trade,International Trade +430512,International Trade,International Trade +430509,International Trade,International Trade +430506,International Trade,International Trade +429306,International Trade,International Trade +426664,International Trade,International Trade +426659,International Trade,International Trade +424198,International Trade,International Trade +424077,International Trade,International Trade +424045,International Trade,International Trade +419146,International Trade,International Trade +419145,International Trade,International Trade +419142,International Trade,International Trade +419139,International Trade,International Trade +419138,International Trade,International Trade +419114,International Trade,International Trade +418992,International Trade,International Trade +417777,International Trade,International Trade +417764,International Trade,International Trade +417762,International Trade,International Trade +417751,International Trade,International Trade +417747,International Trade,International Trade +417745,International Trade,International Trade +417744,International Trade,International Trade +417720,International Trade,International Trade +417715,International Trade,International Trade +417713,International Trade,International Trade +415594,International Trade,International Trade +415413,International Trade,International Trade +415411,International Trade,International Trade +415409,International Trade,International Trade +415397,International Trade,International Trade +415304,International Trade,International Trade +415297,International Trade,International Trade +415279,International Trade,International Trade +413632,International Trade,International Trade +413630,International Trade,International Trade +413625,International Trade,International Trade +413618,International Trade,International Trade +413598,International Trade,International Trade +413593,International Trade,International Trade +413569,International Trade,International Trade +413491,International Trade,International Trade +413485,International Trade,International Trade +413459,International Trade,International Trade +413452,International Trade,International Trade +413412,International Trade,International Trade +413404,International Trade,International Trade +413375,International Trade,International Trade +413352,International Trade,International Trade +413331,International Trade,International Trade +409491,International Trade,International Trade +409443,International Trade,International Trade +409432,International Trade,International Trade +407543,International Trade,International Trade +538922,International Trade,International Trade +538069,International Trade,International Trade +534163,International Trade,International Trade +534160,International Trade,International Trade +534123,International Trade,International Trade +534112,International Trade,International Trade +531326,International Trade,International Trade +531320,International Trade,International Trade +531306,International Trade,International Trade +528251,International Trade,International Trade +528226,International Trade,International Trade +526209,International Trade,International Trade +526179,International Trade,International Trade +519241,International Trade,International Trade +517844,International Trade,International Trade +517465,International Trade,International Trade +517152,International Trade,International Trade +517148,International Trade,International Trade +517146,International Trade,International Trade +517144,International Trade,International Trade +513079,International Trade,International Trade +513072,International Trade,International Trade +510807,International Trade,International Trade +510805,International Trade,International Trade +508170,International Trade,International Trade +508161,International Trade,International Trade +505299,International Trade,International Trade +505295,International Trade,International Trade +505294,International Trade,International Trade +505277,International Trade,International Trade +505272,International Trade,International Trade +505246,International Trade,International Trade +501878,International Trade,International Trade +501852,International Trade,International Trade +498599,International Trade,International Trade +498597,International Trade,International Trade +498592,International Trade,International Trade +498590,International Trade,International Trade +498589,International Trade,International Trade +495774,International Trade,International Trade +495771,International Trade,International Trade +495764,International Trade,International Trade +493203,International Trade,International Trade +490110,International Trade,International Trade +490107,International Trade,International Trade +490106,International Trade,International Trade +490104,International Trade,International Trade +490098,International Trade,International Trade +490096,International Trade,International Trade +490094,International Trade,International Trade +490092,International Trade,International Trade +490072,International Trade,International Trade +487300,International Trade,International Trade +487299,International Trade,International Trade +487295,International Trade,International Trade +487287,International Trade,International Trade +479954,Labour,Labour +461289,Labour,Labour +244706,Labour,Labour +241228,Labour,Labour +241100,Labour,Labour +197767,Labour,Labour +177108,Labour,Labour +161505,Labour,Labour +161502,Labour,Labour +441720,Labour,Labour +430510,Labour,Labour +429313,Labour,Labour +382239,Labour,Labour +309884,Labour,Labour +303622,Labour,Labour +271727,Labour,Labour +264059,Labour,Labour +538146,Labour,Labour +538128,Labour,Labour +505233,Mining,Mining +505229,Mining,Mining +79360,Mining,Mining +156779,Mining,Mining +156778,Mining,Mining +156775,Mining,Mining +154640,Mining,Mining +153158,Mining,Mining +151909,Mining,Mining +151908,Mining,Mining +148015,Mining,Mining +148014,Mining,Mining +145521,Mining,Mining +142540,Mining,Mining +138777,Mining,Mining +134963,Mining,Mining +134960,Mining,Mining +132629,Mining,Mining +132627,Mining,Mining +111318,Mining,Mining +111316,Mining,Mining +111315,Mining,Mining +110896,Mining,Mining +93354,Mining,Mining +90429,Mining,Mining +177105,Mining,Mining +177104,Mining,Mining +177103,Mining,Mining +177102,Mining,Mining +177101,Mining,Mining +177100,Mining,Mining +177099,Mining,Mining +177098,Mining,Mining +177097,Mining,Mining +177094,Mining,Mining +177092,Mining,Mining +177088,Mining,Mining +177086,Mining,Mining +177085,Mining,Mining +177084,Mining,Mining +175905,Mining,Mining +175904,Mining,Mining +175887,Mining,Mining +175886,Mining,Mining +170763,Mining,Mining +170761,Mining,Mining +170760,Mining,Mining +170759,Mining,Mining +161515,Mining,Mining +161514,Mining,Mining +161513,Mining,Mining +161512,Mining,Mining +161511,Mining,Mining +161510,Mining,Mining +161509,Mining,Mining +161507,Mining,Mining +161506,Mining,Mining +161505,Mining,Mining +161502,Mining,Mining +161501,Mining,Mining +161499,Mining,Mining +161497,Mining,Mining +161495,Mining,Mining +161494,Mining,Mining +161490,Mining,Mining +161479,Mining,Mining +161475,Mining,Mining +161472,Mining,Mining +161470,Mining,Mining +159367,Mining,Mining +159359,Mining,Mining +158548,Mining,Mining +157029,Mining,Mining +156989,Mining,Mining +156782,Mining,Mining +156781,Mining,Mining +156780,Mining,Mining +244723,Mining,Mining +244722,Mining,Mining +244720,Mining,Mining +244712,Mining,Mining +241247,Mining,Mining +241228,Mining,Mining +241215,Mining,Mining +241212,Mining,Mining +241211,Mining,Mining +241205,Mining,Mining +241204,Mining,Mining +241203,Mining,Mining +241184,Mining,Mining +241181,Mining,Mining +241180,Mining,Mining +241173,Mining,Mining +241170,Mining,Mining +241163,Mining,Mining +241153,Mining,Mining +241100,Mining,Mining +241098,Mining,Mining +241095,Mining,Mining +241092,Mining,Mining +241087,Mining,Mining +236022,Mining,Mining +236018,Mining,Mining +236017,Mining,Mining +236015,Mining,Mining +232673,Mining,Mining +232672,Mining,Mining +232670,Mining,Mining +232669,Mining,Mining +230478,Mining,Mining +230476,Mining,Mining +230465,Mining,Mining +230463,Mining,Mining +230462,Mining,Mining +230459,Mining,Mining +230457,Mining,Mining +230454,Mining,Mining +230453,Mining,Mining +230447,Mining,Mining +230446,Mining,Mining +230444,Mining,Mining +230442,Mining,Mining +230441,Mining,Mining +230440,Mining,Mining +230438,Mining,Mining +230437,Mining,Mining +230436,Mining,Mining +230435,Mining,Mining +226600,Mining,Mining +226599,Mining,Mining +226598,Mining,Mining +226597,Mining,Mining +226596,Mining,Mining +226595,Mining,Mining +226594,Mining,Mining +226593,Mining,Mining +226592,Mining,Mining +226591,Mining,Mining +226590,Mining,Mining +226589,Mining,Mining +223409,Mining,Mining +223396,Mining,Mining +223392,Mining,Mining +223391,Mining,Mining +223389,Mining,Mining +223386,Mining,Mining +223385,Mining,Mining +223383,Mining,Mining +223382,Mining,Mining +223381,Mining,Mining +223369,Mining,Mining +217258,Mining,Mining +217256,Mining,Mining +217255,Mining,Mining +217254,Mining,Mining +217253,Mining,Mining +217251,Mining,Mining +217249,Mining,Mining +217248,Mining,Mining +217247,Mining,Mining +217229,Mining,Mining +212807,Mining,Mining +203096,Mining,Mining +203095,Mining,Mining +203093,Mining,Mining +203092,Mining,Mining +203091,Mining,Mining +203090,Mining,Mining +203089,Mining,Mining +203088,Mining,Mining +199591,Mining,Mining +199589,Mining,Mining +199587,Mining,Mining +199586,Mining,Mining +199584,Mining,Mining +199582,Mining,Mining +199579,Mining,Mining +199578,Mining,Mining +199571,Mining,Mining +199570,Mining,Mining +199569,Mining,Mining +199568,Mining,Mining +199567,Mining,Mining +197767,Mining,Mining +193171,Mining,Mining +189040,Mining,Mining +189038,Mining,Mining +189037,Mining,Mining +189036,Mining,Mining +189033,Mining,Mining +189031,Mining,Mining +177110,Mining,Mining +177109,Mining,Mining +177108,Mining,Mining +177107,Mining,Mining +177106,Mining,Mining +335766,Mining,Mining +335763,Mining,Mining +335762,Mining,Mining +335759,Mining,Mining +335758,Mining,Mining +335757,Mining,Mining +333605,Mining,Mining +333604,Mining,Mining +333603,Mining,Mining +333599,Mining,Mining +333598,Mining,Mining +331238,Mining,Mining +331237,Mining,Mining +331236,Mining,Mining +331235,Mining,Mining +331234,Mining,Mining +331233,Mining,Mining +331232,Mining,Mining +331231,Mining,Mining +331229,Mining,Mining +331228,Mining,Mining +331227,Mining,Mining +331226,Mining,Mining +330070,Mining,Mining +330067,Mining,Mining +330063,Mining,Mining +330061,Mining,Mining +330057,Mining,Mining +327444,Mining,Mining +327442,Mining,Mining +327441,Mining,Mining +327439,Mining,Mining +327437,Mining,Mining +327436,Mining,Mining +327434,Mining,Mining +327433,Mining,Mining +327432,Mining,Mining +327427,Mining,Mining +327424,Mining,Mining +327422,Mining,Mining +327420,Mining,Mining +324305,Mining,Mining +324304,Mining,Mining +324030,Mining,Mining +324028,Mining,Mining +324027,Mining,Mining +324025,Mining,Mining +324024,Mining,Mining +324023,Mining,Mining +324021,Mining,Mining +324020,Mining,Mining +324019,Mining,Mining +324018,Mining,Mining +324017,Mining,Mining +324016,Mining,Mining +324012,Mining,Mining +324011,Mining,Mining +324010,Mining,Mining +322142,Mining,Mining +321542,Mining,Mining +321529,Mining,Mining +321528,Mining,Mining +321527,Mining,Mining +321525,Mining,Mining +321524,Mining,Mining +321520,Mining,Mining +319107,Mining,Mining +319105,Mining,Mining +319104,Mining,Mining +319103,Mining,Mining +319102,Mining,Mining +319101,Mining,Mining +319100,Mining,Mining +319097,Mining,Mining +319092,Mining,Mining +319089,Mining,Mining +319087,Mining,Mining +319080,Mining,Mining +315037,Mining,Mining +315036,Mining,Mining +315035,Mining,Mining +315034,Mining,Mining +315033,Mining,Mining +315013,Mining,Mining +315012,Mining,Mining +315011,Mining,Mining +315010,Mining,Mining +309888,Mining,Mining +309887,Mining,Mining +309886,Mining,Mining +309885,Mining,Mining +309884,Mining,Mining +309883,Mining,Mining +309881,Mining,Mining +309871,Mining,Mining +309864,Mining,Mining +309861,Mining,Mining +309857,Mining,Mining +309853,Mining,Mining +309851,Mining,Mining +309834,Mining,Mining +309823,Mining,Mining +309819,Mining,Mining +309807,Mining,Mining +309805,Mining,Mining +309804,Mining,Mining +309802,Mining,Mining +309801,Mining,Mining +309800,Mining,Mining +309799,Mining,Mining +303635,Mining,Mining +303632,Mining,Mining +303630,Mining,Mining +303628,Mining,Mining +303625,Mining,Mining +303624,Mining,Mining +303622,Mining,Mining +303618,Mining,Mining +303616,Mining,Mining +303611,Mining,Mining +295130,Mining,Mining +295129,Mining,Mining +295090,Mining,Mining +295070,Mining,Mining +295069,Mining,Mining +295049,Mining,Mining +291086,Mining,Mining +291085,Mining,Mining +291078,Mining,Mining +291071,Mining,Mining +286153,Mining,Mining +286151,Mining,Mining +280014,Mining,Mining +280011,Mining,Mining +280007,Mining,Mining +280003,Mining,Mining +280002,Mining,Mining +279991,Mining,Mining +279987,Mining,Mining +279985,Mining,Mining +279984,Mining,Mining +279983,Mining,Mining +279982,Mining,Mining +279981,Mining,Mining +279979,Mining,Mining +279976,Mining,Mining +279972,Mining,Mining +279971,Mining,Mining +279970,Mining,Mining +279969,Mining,Mining +277312,Mining,Mining +277308,Mining,Mining +277306,Mining,Mining +277300,Mining,Mining +277298,Mining,Mining +271728,Mining,Mining +271727,Mining,Mining +271726,Mining,Mining +271725,Mining,Mining +271721,Mining,Mining +271711,Mining,Mining +271710,Mining,Mining +266732,Mining,Mining +266731,Mining,Mining +266730,Mining,Mining +266729,Mining,Mining +266694,Mining,Mining +266693,Mining,Mining +266692,Mining,Mining +266690,Mining,Mining +266689,Mining,Mining +264295,Mining,Mining +264294,Mining,Mining +264293,Mining,Mining +264287,Mining,Mining +264283,Mining,Mining +264281,Mining,Mining +264278,Mining,Mining +264059,Mining,Mining +256988,Mining,Mining +256987,Mining,Mining +256986,Mining,Mining +256982,Mining,Mining +256980,Mining,Mining +256979,Mining,Mining +256978,Mining,Mining +256975,Mining,Mining +256974,Mining,Mining +256973,Mining,Mining +256972,Mining,Mining +256971,Mining,Mining +256970,Mining,Mining +256969,Mining,Mining +254289,Mining,Mining +254271,Mining,Mining +250912,Mining,Mining +250911,Mining,Mining +250910,Mining,Mining +250908,Mining,Mining +250907,Mining,Mining +250906,Mining,Mining +250905,Mining,Mining +250899,Mining,Mining +250898,Mining,Mining +250897,Mining,Mining +250891,Mining,Mining +250889,Mining,Mining +250885,Mining,Mining +250881,Mining,Mining +250875,Mining,Mining +250869,Mining,Mining +250858,Mining,Mining +250852,Mining,Mining +250846,Mining,Mining +250841,Mining,Mining +250839,Mining,Mining +250834,Mining,Mining +250832,Mining,Mining +250827,Mining,Mining +250824,Mining,Mining +250817,Mining,Mining +250813,Mining,Mining +250809,Mining,Mining +250804,Mining,Mining +250799,Mining,Mining +250791,Mining,Mining +250784,Mining,Mining +250770,Mining,Mining +250750,Mining,Mining +250731,Mining,Mining +250727,Mining,Mining +250723,Mining,Mining +250695,Mining,Mining +250690,Mining,Mining +250688,Mining,Mining +244753,Mining,Mining +244751,Mining,Mining +244733,Mining,Mining +244732,Mining,Mining +244728,Mining,Mining +244726,Mining,Mining +244725,Mining,Mining +400066,Mining,Mining +400063,Mining,Mining +400062,Mining,Mining +400060,Mining,Mining +400058,Mining,Mining +400054,Mining,Mining +400051,Mining,Mining +400044,Mining,Mining +400042,Mining,Mining +400040,Mining,Mining +400038,Mining,Mining +400037,Mining,Mining +400035,Mining,Mining +400033,Mining,Mining +400031,Mining,Mining +400029,Mining,Mining +400028,Mining,Mining +398414,Mining,Mining +398412,Mining,Mining +398371,Mining,Mining +398367,Mining,Mining +398365,Mining,Mining +398364,Mining,Mining +398362,Mining,Mining +398358,Mining,Mining +398354,Mining,Mining +398351,Mining,Mining +398349,Mining,Mining +398346,Mining,Mining +398344,Mining,Mining +398287,Mining,Mining +396613,Mining,Mining +396609,Mining,Mining +396604,Mining,Mining +396600,Mining,Mining +396594,Mining,Mining +396590,Mining,Mining +396580,Mining,Mining +396576,Mining,Mining +396568,Mining,Mining +396563,Mining,Mining +396560,Mining,Mining +396559,Mining,Mining +396558,Mining,Mining +396556,Mining,Mining +394053,Mining,Mining +394052,Mining,Mining +394051,Mining,Mining +394050,Mining,Mining +394049,Mining,Mining +394048,Mining,Mining +394047,Mining,Mining +394044,Mining,Mining +394039,Mining,Mining +394036,Mining,Mining +394032,Mining,Mining +394031,Mining,Mining +394028,Mining,Mining +394026,Mining,Mining +392734,Mining,Mining +392733,Mining,Mining +392732,Mining,Mining +392731,Mining,Mining +392730,Mining,Mining +392729,Mining,Mining +392728,Mining,Mining +392727,Mining,Mining +392726,Mining,Mining +392725,Mining,Mining +392724,Mining,Mining +392723,Mining,Mining +392722,Mining,Mining +392721,Mining,Mining +390568,Mining,Mining +390566,Mining,Mining +390561,Mining,Mining +390400,Mining,Mining +390397,Mining,Mining +390396,Mining,Mining +390395,Mining,Mining +390391,Mining,Mining +390389,Mining,Mining +390386,Mining,Mining +390378,Mining,Mining +390375,Mining,Mining +390371,Mining,Mining +390367,Mining,Mining +390362,Mining,Mining +390358,Mining,Mining +390352,Mining,Mining +390345,Mining,Mining +390340,Mining,Mining +390338,Mining,Mining +390334,Mining,Mining +390305,Mining,Mining +390301,Mining,Mining +390294,Mining,Mining +390286,Mining,Mining +390277,Mining,Mining +390167,Mining,Mining +390165,Mining,Mining +390162,Mining,Mining +390160,Mining,Mining +390156,Mining,Mining +390154,Mining,Mining +390150,Mining,Mining +390147,Mining,Mining +390144,Mining,Mining +390143,Mining,Mining +390135,Mining,Mining +390131,Mining,Mining +390127,Mining,Mining +390126,Mining,Mining +390124,Mining,Mining +390121,Mining,Mining +390118,Mining,Mining +390117,Mining,Mining +390114,Mining,Mining +387693,Mining,Mining +387692,Mining,Mining +387689,Mining,Mining +387688,Mining,Mining +387685,Mining,Mining +387683,Mining,Mining +387682,Mining,Mining +387681,Mining,Mining +387679,Mining,Mining +387678,Mining,Mining +387676,Mining,Mining +387675,Mining,Mining +387673,Mining,Mining +387623,Mining,Mining +387622,Mining,Mining +387619,Mining,Mining +387617,Mining,Mining +387614,Mining,Mining +387609,Mining,Mining +387607,Mining,Mining +387599,Mining,Mining +384942,Mining,Mining +384936,Mining,Mining +384929,Mining,Mining +384928,Mining,Mining +384926,Mining,Mining +384925,Mining,Mining +384924,Mining,Mining +384923,Mining,Mining +384907,Mining,Mining +384904,Mining,Mining +384892,Mining,Mining +384891,Mining,Mining +384890,Mining,Mining +383219,Mining,Mining +383214,Mining,Mining +383212,Mining,Mining +383211,Mining,Mining +383208,Mining,Mining +383207,Mining,Mining +383206,Mining,Mining +383205,Mining,Mining +383204,Mining,Mining +383203,Mining,Mining +383202,Mining,Mining +382510,Mining,Mining +382241,Mining,Mining +382240,Mining,Mining +382239,Mining,Mining +382238,Mining,Mining +382237,Mining,Mining +382236,Mining,Mining +382235,Mining,Mining +380874,Mining,Mining +380873,Mining,Mining +380870,Mining,Mining +380868,Mining,Mining +380867,Mining,Mining +380865,Mining,Mining +380864,Mining,Mining +380863,Mining,Mining +380861,Mining,Mining +380858,Mining,Mining +378952,Mining,Mining +378950,Mining,Mining +378946,Mining,Mining +378944,Mining,Mining +378941,Mining,Mining +378834,Mining,Mining +378833,Mining,Mining +378832,Mining,Mining +378831,Mining,Mining +378829,Mining,Mining +378828,Mining,Mining +378827,Mining,Mining +378826,Mining,Mining +378821,Mining,Mining +378820,Mining,Mining +378819,Mining,Mining +378817,Mining,Mining +378816,Mining,Mining +378815,Mining,Mining +378814,Mining,Mining +378811,Mining,Mining +378810,Mining,Mining +378808,Mining,Mining +378804,Mining,Mining +378803,Mining,Mining +378802,Mining,Mining +378801,Mining,Mining +378800,Mining,Mining +378797,Mining,Mining +376507,Mining,Mining +376505,Mining,Mining +376504,Mining,Mining +376503,Mining,Mining +376502,Mining,Mining +376501,Mining,Mining +376500,Mining,Mining +376498,Mining,Mining +376496,Mining,Mining +376495,Mining,Mining +376305,Mining,Mining +376304,Mining,Mining +376303,Mining,Mining +376301,Mining,Mining +376298,Mining,Mining +376297,Mining,Mining +376296,Mining,Mining +374316,Mining,Mining +374314,Mining,Mining +374313,Mining,Mining +374312,Mining,Mining +374311,Mining,Mining +374304,Mining,Mining +374302,Mining,Mining +374299,Mining,Mining +374291,Mining,Mining +374287,Mining,Mining +374283,Mining,Mining +372387,Mining,Mining +372382,Mining,Mining +372379,Mining,Mining +372375,Mining,Mining +372373,Mining,Mining +372372,Mining,Mining +372371,Mining,Mining +372369,Mining,Mining +372366,Mining,Mining +372362,Mining,Mining +372360,Mining,Mining +372357,Mining,Mining +372354,Mining,Mining +372353,Mining,Mining +372350,Mining,Mining +372348,Mining,Mining +372347,Mining,Mining +372342,Mining,Mining +368000,Mining,Mining +367998,Mining,Mining +367997,Mining,Mining +367995,Mining,Mining +367994,Mining,Mining +367993,Mining,Mining +367992,Mining,Mining +367991,Mining,Mining +367990,Mining,Mining +366546,Mining,Mining +366545,Mining,Mining +366540,Mining,Mining +366538,Mining,Mining +366537,Mining,Mining +366536,Mining,Mining +366535,Mining,Mining +366534,Mining,Mining +366531,Mining,Mining +365082,Mining,Mining +365081,Mining,Mining +365080,Mining,Mining +365079,Mining,Mining +365078,Mining,Mining +365069,Mining,Mining +365061,Mining,Mining +365059,Mining,Mining +365058,Mining,Mining +365054,Mining,Mining +365051,Mining,Mining +365048,Mining,Mining +365047,Mining,Mining +365046,Mining,Mining +365045,Mining,Mining +363453,Mining,Mining +363451,Mining,Mining +362337,Mining,Mining +361782,Mining,Mining +359467,Mining,Mining +359466,Mining,Mining +359465,Mining,Mining +359464,Mining,Mining +359463,Mining,Mining +359462,Mining,Mining +359460,Mining,Mining +359459,Mining,Mining +359455,Mining,Mining +359454,Mining,Mining +358158,Mining,Mining +358156,Mining,Mining +358151,Mining,Mining +358149,Mining,Mining +358147,Mining,Mining +358145,Mining,Mining +357290,Mining,Mining +357289,Mining,Mining +357288,Mining,Mining +357286,Mining,Mining +357283,Mining,Mining +356291,Mining,Mining +356287,Mining,Mining +356282,Mining,Mining +356281,Mining,Mining +356279,Mining,Mining +356273,Mining,Mining +356268,Mining,Mining +356266,Mining,Mining +356264,Mining,Mining +356258,Mining,Mining +356256,Mining,Mining +356254,Mining,Mining +356253,Mining,Mining +356252,Mining,Mining +356250,Mining,Mining +352904,Mining,Mining +352901,Mining,Mining +352720,Mining,Mining +352705,Mining,Mining +352704,Mining,Mining +352703,Mining,Mining +352702,Mining,Mining +352701,Mining,Mining +352700,Mining,Mining +350494,Mining,Mining +350493,Mining,Mining +350492,Mining,Mining +350490,Mining,Mining +350488,Mining,Mining +350487,Mining,Mining +350486,Mining,Mining +350485,Mining,Mining +350483,Mining,Mining +350481,Mining,Mining +350478,Mining,Mining +350477,Mining,Mining +348912,Mining,Mining +348911,Mining,Mining +348910,Mining,Mining +348909,Mining,Mining +348908,Mining,Mining +348907,Mining,Mining +348906,Mining,Mining +344889,Mining,Mining +344888,Mining,Mining +344887,Mining,Mining +344886,Mining,Mining +344885,Mining,Mining +344884,Mining,Mining +343903,Mining,Mining +343901,Mining,Mining +343897,Mining,Mining +341628,Mining,Mining +340998,Mining,Mining +340997,Mining,Mining +340996,Mining,Mining +340994,Mining,Mining +340992,Mining,Mining +340991,Mining,Mining +340989,Mining,Mining +340984,Mining,Mining +340982,Mining,Mining +340980,Mining,Mining +340974,Mining,Mining +340973,Mining,Mining +340958,Mining,Mining +340957,Mining,Mining +340955,Mining,Mining +340954,Mining,Mining +340951,Mining,Mining +340948,Mining,Mining +340947,Mining,Mining +340946,Mining,Mining +340944,Mining,Mining +340942,Mining,Mining +340941,Mining,Mining +340940,Mining,Mining +340939,Mining,Mining +340938,Mining,Mining +340937,Mining,Mining +340935,Mining,Mining +340931,Mining,Mining +340926,Mining,Mining +340924,Mining,Mining +340919,Mining,Mining +337843,Mining,Mining +337842,Mining,Mining +337841,Mining,Mining +337714,Mining,Mining +337709,Mining,Mining +337708,Mining,Mining +337707,Mining,Mining +337706,Mining,Mining +337704,Mining,Mining +335800,Mining,Mining +335796,Mining,Mining +335793,Mining,Mining +335787,Mining,Mining +335785,Mining,Mining +335781,Mining,Mining +335780,Mining,Mining +335773,Mining,Mining +335767,Mining,Mining +441655,Mining,Mining +441649,Mining,Mining +441644,Mining,Mining +441641,Mining,Mining +441636,Mining,Mining +441631,Mining,Mining +441629,Mining,Mining +441627,Mining,Mining +438762,Mining,Mining +438742,Mining,Mining +438739,Mining,Mining +438735,Mining,Mining +438722,Mining,Mining +438721,Mining,Mining +438717,Mining,Mining +438713,Mining,Mining +438201,Mining,Mining +438200,Mining,Mining +438199,Mining,Mining +438198,Mining,Mining +438197,Mining,Mining +438195,Mining,Mining +438194,Mining,Mining +438193,Mining,Mining +438190,Mining,Mining +438183,Mining,Mining +438182,Mining,Mining +438179,Mining,Mining +438177,Mining,Mining +438173,Mining,Mining +438170,Mining,Mining +438163,Mining,Mining +438160,Mining,Mining +438159,Mining,Mining +438155,Mining,Mining +438152,Mining,Mining +438151,Mining,Mining +438149,Mining,Mining +435691,Mining,Mining +435600,Mining,Mining +435597,Mining,Mining +435594,Mining,Mining +435592,Mining,Mining +435589,Mining,Mining +435576,Mining,Mining +435574,Mining,Mining +435573,Mining,Mining +435571,Mining,Mining +435569,Mining,Mining +435568,Mining,Mining +435565,Mining,Mining +435563,Mining,Mining +435559,Mining,Mining +435557,Mining,Mining +435554,Mining,Mining +435550,Mining,Mining +435543,Mining,Mining +435541,Mining,Mining +435539,Mining,Mining +435536,Mining,Mining +435535,Mining,Mining +435295,Mining,Mining +435288,Mining,Mining +435285,Mining,Mining +435282,Mining,Mining +435280,Mining,Mining +435275,Mining,Mining +435269,Mining,Mining +435266,Mining,Mining +435258,Mining,Mining +435257,Mining,Mining +435256,Mining,Mining +435253,Mining,Mining +435247,Mining,Mining +435239,Mining,Mining +435237,Mining,Mining +433747,Mining,Mining +433624,Mining,Mining +433622,Mining,Mining +433620,Mining,Mining +433617,Mining,Mining +433616,Mining,Mining +433615,Mining,Mining +433613,Mining,Mining +433607,Mining,Mining +433603,Mining,Mining +433602,Mining,Mining +433601,Mining,Mining +433600,Mining,Mining +433593,Mining,Mining +432552,Mining,Mining +432549,Mining,Mining +432547,Mining,Mining +432546,Mining,Mining +432545,Mining,Mining +432544,Mining,Mining +432543,Mining,Mining +432541,Mining,Mining +432540,Mining,Mining +432539,Mining,Mining +432534,Mining,Mining +432530,Mining,Mining +432501,Mining,Mining +432498,Mining,Mining +432495,Mining,Mining +432491,Mining,Mining +430548,Mining,Mining +430546,Mining,Mining +430545,Mining,Mining +430544,Mining,Mining +430543,Mining,Mining +430542,Mining,Mining +430541,Mining,Mining +430540,Mining,Mining +430539,Mining,Mining +430538,Mining,Mining +430537,Mining,Mining +430536,Mining,Mining +430534,Mining,Mining +430532,Mining,Mining +430521,Mining,Mining +430520,Mining,Mining +430519,Mining,Mining +430518,Mining,Mining +430516,Mining,Mining +430515,Mining,Mining +430514,Mining,Mining +430513,Mining,Mining +430512,Mining,Mining +430510,Mining,Mining +430509,Mining,Mining +430508,Mining,Mining +430506,Mining,Mining +430504,Mining,Mining +430502,Mining,Mining +430501,Mining,Mining +430500,Mining,Mining +430499,Mining,Mining +430495,Mining,Mining +430493,Mining,Mining +430490,Mining,Mining +429319,Mining,Mining +429315,Mining,Mining +429313,Mining,Mining +429312,Mining,Mining +429311,Mining,Mining +429308,Mining,Mining +429306,Mining,Mining +429303,Mining,Mining +429299,Mining,Mining +429288,Mining,Mining +429282,Mining,Mining +429280,Mining,Mining +429274,Mining,Mining +429268,Mining,Mining +429264,Mining,Mining +429257,Mining,Mining +429242,Mining,Mining +429233,Mining,Mining +429221,Mining,Mining +426666,Mining,Mining +426664,Mining,Mining +426659,Mining,Mining +426645,Mining,Mining +426639,Mining,Mining +426635,Mining,Mining +426634,Mining,Mining +426630,Mining,Mining +426621,Mining,Mining +426617,Mining,Mining +426615,Mining,Mining +426610,Mining,Mining +426575,Mining,Mining +426573,Mining,Mining +426566,Mining,Mining +426446,Mining,Mining +426444,Mining,Mining +426441,Mining,Mining +426431,Mining,Mining +426426,Mining,Mining +426425,Mining,Mining +426421,Mining,Mining +426407,Mining,Mining +426398,Mining,Mining +426333,Mining,Mining +426331,Mining,Mining +426328,Mining,Mining +426324,Mining,Mining +426313,Mining,Mining +426295,Mining,Mining +426272,Mining,Mining +426270,Mining,Mining +424199,Mining,Mining +424198,Mining,Mining +424195,Mining,Mining +424191,Mining,Mining +424189,Mining,Mining +424187,Mining,Mining +424185,Mining,Mining +424179,Mining,Mining +424175,Mining,Mining +424163,Mining,Mining +424159,Mining,Mining +424154,Mining,Mining +424152,Mining,Mining +424150,Mining,Mining +424142,Mining,Mining +424140,Mining,Mining +424135,Mining,Mining +424119,Mining,Mining +424108,Mining,Mining +424100,Mining,Mining +424080,Mining,Mining +424077,Mining,Mining +424059,Mining,Mining +424055,Mining,Mining +424052,Mining,Mining +424050,Mining,Mining +424045,Mining,Mining +424039,Mining,Mining +424034,Mining,Mining +421890,Mining,Mining +421888,Mining,Mining +421887,Mining,Mining +421886,Mining,Mining +421883,Mining,Mining +421881,Mining,Mining +421880,Mining,Mining +421875,Mining,Mining +421872,Mining,Mining +421868,Mining,Mining +421867,Mining,Mining +421863,Mining,Mining +421861,Mining,Mining +421860,Mining,Mining +421859,Mining,Mining +421857,Mining,Mining +421853,Mining,Mining +421850,Mining,Mining +421848,Mining,Mining +421846,Mining,Mining +421789,Mining,Mining +421779,Mining,Mining +419168,Mining,Mining +419167,Mining,Mining +419166,Mining,Mining +419165,Mining,Mining +419164,Mining,Mining +419163,Mining,Mining +419161,Mining,Mining +419156,Mining,Mining +419154,Mining,Mining +419152,Mining,Mining +419146,Mining,Mining +419145,Mining,Mining +419143,Mining,Mining +419142,Mining,Mining +419141,Mining,Mining +419140,Mining,Mining +419139,Mining,Mining +419138,Mining,Mining +419137,Mining,Mining +419134,Mining,Mining +419132,Mining,Mining +419128,Mining,Mining +419123,Mining,Mining +419116,Mining,Mining +419114,Mining,Mining +418992,Mining,Mining +417777,Mining,Mining +417774,Mining,Mining +417773,Mining,Mining +417772,Mining,Mining +417771,Mining,Mining +417767,Mining,Mining +417764,Mining,Mining +417762,Mining,Mining +417761,Mining,Mining +417759,Mining,Mining +417751,Mining,Mining +417750,Mining,Mining +417747,Mining,Mining +417745,Mining,Mining +417744,Mining,Mining +417720,Mining,Mining +417718,Mining,Mining +417715,Mining,Mining +417713,Mining,Mining +417711,Mining,Mining +415629,Mining,Mining +415627,Mining,Mining +415625,Mining,Mining +415623,Mining,Mining +415619,Mining,Mining +415612,Mining,Mining +415608,Mining,Mining +415597,Mining,Mining +415594,Mining,Mining +415583,Mining,Mining +415578,Mining,Mining +415575,Mining,Mining +415573,Mining,Mining +415569,Mining,Mining +415558,Mining,Mining +415419,Mining,Mining +415418,Mining,Mining +415416,Mining,Mining +415415,Mining,Mining +415414,Mining,Mining +415413,Mining,Mining +415411,Mining,Mining +415410,Mining,Mining +415409,Mining,Mining +415407,Mining,Mining +415404,Mining,Mining +415402,Mining,Mining +415399,Mining,Mining +415397,Mining,Mining +415394,Mining,Mining +415391,Mining,Mining +415388,Mining,Mining +415386,Mining,Mining +415382,Mining,Mining +415377,Mining,Mining +415374,Mining,Mining +415371,Mining,Mining +415368,Mining,Mining +415304,Mining,Mining +415303,Mining,Mining +415299,Mining,Mining +415297,Mining,Mining +415295,Mining,Mining +415289,Mining,Mining +415287,Mining,Mining +415286,Mining,Mining +415285,Mining,Mining +415282,Mining,Mining +415279,Mining,Mining +413636,Mining,Mining +413632,Mining,Mining +413630,Mining,Mining +413625,Mining,Mining +413618,Mining,Mining +413602,Mining,Mining +413598,Mining,Mining +413593,Mining,Mining +413584,Mining,Mining +413580,Mining,Mining +413574,Mining,Mining +413569,Mining,Mining +413491,Mining,Mining +413485,Mining,Mining +413475,Mining,Mining +413462,Mining,Mining +413459,Mining,Mining +413452,Mining,Mining +413443,Mining,Mining +413422,Mining,Mining +413416,Mining,Mining +413413,Mining,Mining +413412,Mining,Mining +413410,Mining,Mining +413407,Mining,Mining +413404,Mining,Mining +413375,Mining,Mining +413369,Mining,Mining +413360,Mining,Mining +413352,Mining,Mining +413331,Mining,Mining +413306,Mining,Mining +413299,Mining,Mining +413288,Mining,Mining +409500,Mining,Mining +409493,Mining,Mining +409491,Mining,Mining +409490,Mining,Mining +409484,Mining,Mining +409479,Mining,Mining +409477,Mining,Mining +409473,Mining,Mining +409470,Mining,Mining +409469,Mining,Mining +409466,Mining,Mining +409454,Mining,Mining +409452,Mining,Mining +409450,Mining,Mining +409448,Mining,Mining +409445,Mining,Mining +409443,Mining,Mining +409439,Mining,Mining +409438,Mining,Mining +409436,Mining,Mining +409435,Mining,Mining +409434,Mining,Mining +409433,Mining,Mining +409432,Mining,Mining +409429,Mining,Mining +409410,Mining,Mining +409407,Mining,Mining +409406,Mining,Mining +409405,Mining,Mining +409403,Mining,Mining +407638,Mining,Mining +407637,Mining,Mining +407636,Mining,Mining +407635,Mining,Mining +407634,Mining,Mining +407633,Mining,Mining +407632,Mining,Mining +407627,Mining,Mining +407606,Mining,Mining +407605,Mining,Mining +407603,Mining,Mining +407601,Mining,Mining +407600,Mining,Mining +407599,Mining,Mining +407598,Mining,Mining +407596,Mining,Mining +407595,Mining,Mining +407593,Mining,Mining +407550,Mining,Mining +407548,Mining,Mining +407546,Mining,Mining +407545,Mining,Mining +407544,Mining,Mining +407543,Mining,Mining +407542,Mining,Mining +407541,Mining,Mining +407540,Mining,Mining +407538,Mining,Mining +407536,Mining,Mining +407534,Mining,Mining +406734,Mining,Mining +406733,Mining,Mining +406732,Mining,Mining +406731,Mining,Mining +406719,Mining,Mining +406718,Mining,Mining +406716,Mining,Mining +406714,Mining,Mining +406713,Mining,Mining +406712,Mining,Mining +406711,Mining,Mining +406709,Mining,Mining +406708,Mining,Mining +406704,Mining,Mining +406699,Mining,Mining +405578,Mining,Mining +405569,Mining,Mining +405565,Mining,Mining +405563,Mining,Mining +405459,Mining,Mining +405457,Mining,Mining +405454,Mining,Mining +405453,Mining,Mining +405450,Mining,Mining +405449,Mining,Mining +405420,Mining,Mining +405414,Mining,Mining +405413,Mining,Mining +405411,Mining,Mining +405410,Mining,Mining +405398,Mining,Mining +403625,Mining,Mining +403623,Mining,Mining +403621,Mining,Mining +403618,Mining,Mining +403614,Mining,Mining +403613,Mining,Mining +403609,Mining,Mining +403604,Mining,Mining +403602,Mining,Mining +403600,Mining,Mining +403599,Mining,Mining +403597,Mining,Mining +403591,Mining,Mining +403589,Mining,Mining +403580,Mining,Mining +403576,Mining,Mining +403573,Mining,Mining +403570,Mining,Mining +403565,Mining,Mining +403561,Mining,Mining +403558,Mining,Mining +403551,Mining,Mining +403548,Mining,Mining +403535,Mining,Mining +403530,Mining,Mining +403342,Mining,Mining +403338,Mining,Mining +403335,Mining,Mining +403334,Mining,Mining +403320,Mining,Mining +403297,Mining,Mining +403296,Mining,Mining +403294,Mining,Mining +403288,Mining,Mining +403286,Mining,Mining +403281,Mining,Mining +505223,Mining,Mining +501885,Mining,Mining +501884,Mining,Mining +501883,Mining,Mining +501880,Mining,Mining +501878,Mining,Mining +501876,Mining,Mining +501872,Mining,Mining +501869,Mining,Mining +501868,Mining,Mining +501866,Mining,Mining +501857,Mining,Mining +501852,Mining,Mining +501849,Mining,Mining +501847,Mining,Mining +501844,Mining,Mining +501839,Mining,Mining +501835,Mining,Mining +501831,Mining,Mining +501826,Mining,Mining +501821,Mining,Mining +498604,Mining,Mining +498603,Mining,Mining +498602,Mining,Mining +498601,Mining,Mining +498600,Mining,Mining +498599,Mining,Mining +498598,Mining,Mining +498597,Mining,Mining +498596,Mining,Mining +498593,Mining,Mining +498592,Mining,Mining +498591,Mining,Mining +498590,Mining,Mining +498589,Mining,Mining +498588,Mining,Mining +498587,Mining,Mining +498586,Mining,Mining +498585,Mining,Mining +495777,Mining,Mining +495775,Mining,Mining +495774,Mining,Mining +495771,Mining,Mining +495768,Mining,Mining +495765,Mining,Mining +495764,Mining,Mining +495763,Mining,Mining +495762,Mining,Mining +495761,Mining,Mining +493617,Mining,Mining +493205,Mining,Mining +493203,Mining,Mining +493202,Mining,Mining +490122,Mining,Mining +490121,Mining,Mining +490120,Mining,Mining +490119,Mining,Mining +490118,Mining,Mining +490117,Mining,Mining +490116,Mining,Mining +490115,Mining,Mining +490113,Mining,Mining +490112,Mining,Mining +490111,Mining,Mining +490110,Mining,Mining +490108,Mining,Mining +490107,Mining,Mining +490106,Mining,Mining +490105,Mining,Mining +490104,Mining,Mining +490103,Mining,Mining +490100,Mining,Mining +490099,Mining,Mining +490098,Mining,Mining +490096,Mining,Mining +490095,Mining,Mining +490094,Mining,Mining +490093,Mining,Mining +490092,Mining,Mining +490091,Mining,Mining +490090,Mining,Mining +490089,Mining,Mining +490088,Mining,Mining +490087,Mining,Mining +490086,Mining,Mining +490084,Mining,Mining +490083,Mining,Mining +490082,Mining,Mining +490081,Mining,Mining +490080,Mining,Mining +490079,Mining,Mining +490077,Mining,Mining +490076,Mining,Mining +490075,Mining,Mining +490074,Mining,Mining +490073,Mining,Mining +490072,Mining,Mining +487300,Mining,Mining +487297,Mining,Mining +487295,Mining,Mining +487293,Mining,Mining +487292,Mining,Mining +487290,Mining,Mining +487281,Mining,Mining +487277,Mining,Mining +487271,Mining,Mining +485090,Mining,Mining +485084,Mining,Mining +485079,Mining,Mining +485076,Mining,Mining +485073,Mining,Mining +485069,Mining,Mining +485065,Mining,Mining +485060,Mining,Mining +485056,Mining,Mining +485043,Mining,Mining +485040,Mining,Mining +485037,Mining,Mining +485028,Mining,Mining +485023,Mining,Mining +485019,Mining,Mining +485013,Mining,Mining +485011,Mining,Mining +485006,Mining,Mining +485001,Mining,Mining +484996,Mining,Mining +484992,Mining,Mining +482183,Mining,Mining +482166,Mining,Mining +482163,Mining,Mining +482162,Mining,Mining +482161,Mining,Mining +482159,Mining,Mining +482156,Mining,Mining +482154,Mining,Mining +479961,Mining,Mining +479956,Mining,Mining +479954,Mining,Mining +479952,Mining,Mining +479951,Mining,Mining +479919,Mining,Mining +479915,Mining,Mining +479912,Mining,Mining +479904,Mining,Mining +479898,Mining,Mining +479892,Mining,Mining +479863,Mining,Mining +479859,Mining,Mining +479702,Mining,Mining +477442,Mining,Mining +477441,Mining,Mining +477437,Mining,Mining +475389,Mining,Mining +475378,Mining,Mining +475370,Mining,Mining +475360,Mining,Mining +475358,Mining,Mining +475349,Mining,Mining +475348,Mining,Mining +475341,Mining,Mining +475337,Mining,Mining +472756,Mining,Mining +470775,Mining,Mining +470768,Mining,Mining +470765,Mining,Mining +470764,Mining,Mining +470411,Mining,Mining +470407,Mining,Mining +470404,Mining,Mining +470400,Mining,Mining +470397,Mining,Mining +470385,Mining,Mining +470383,Mining,Mining +470381,Mining,Mining +470379,Mining,Mining +470377,Mining,Mining +470375,Mining,Mining +467835,Mining,Mining +467509,Mining,Mining +467501,Mining,Mining +467497,Mining,Mining +467493,Mining,Mining +467459,Mining,Mining +467456,Mining,Mining +467451,Mining,Mining +467399,Mining,Mining +467396,Mining,Mining +467395,Mining,Mining +467383,Mining,Mining +467376,Mining,Mining +464507,Mining,Mining +464502,Mining,Mining +464498,Mining,Mining +464495,Mining,Mining +464486,Mining,Mining +464482,Mining,Mining +464479,Mining,Mining +464470,Mining,Mining +464348,Mining,Mining +464346,Mining,Mining +464342,Mining,Mining +464338,Mining,Mining +464336,Mining,Mining +462584,Mining,Mining +462580,Mining,Mining +462578,Mining,Mining +462577,Mining,Mining +461368,Mining,Mining +461357,Mining,Mining +461356,Mining,Mining +461342,Mining,Mining +461341,Mining,Mining +461340,Mining,Mining +461339,Mining,Mining +461338,Mining,Mining +461334,Mining,Mining +461332,Mining,Mining +461307,Mining,Mining +461306,Mining,Mining +461305,Mining,Mining +461304,Mining,Mining +461302,Mining,Mining +461298,Mining,Mining +461295,Mining,Mining +461294,Mining,Mining +461289,Mining,Mining +461287,Mining,Mining +461286,Mining,Mining +461285,Mining,Mining +460506,Mining,Mining +460502,Mining,Mining +460501,Mining,Mining +459462,Mining,Mining +459461,Mining,Mining +459460,Mining,Mining +458032,Mining,Mining +458031,Mining,Mining +458030,Mining,Mining +457309,Mining,Mining +457308,Mining,Mining +457306,Mining,Mining +457304,Mining,Mining +457300,Mining,Mining +457295,Mining,Mining +457293,Mining,Mining +457292,Mining,Mining +457291,Mining,Mining +457290,Mining,Mining +457288,Mining,Mining +457286,Mining,Mining +457285,Mining,Mining +457283,Mining,Mining +455278,Mining,Mining +455273,Mining,Mining +455272,Mining,Mining +455269,Mining,Mining +455268,Mining,Mining +455264,Mining,Mining +455244,Mining,Mining +455240,Mining,Mining +455236,Mining,Mining +455232,Mining,Mining +455226,Mining,Mining +455222,Mining,Mining +455218,Mining,Mining +455217,Mining,Mining +455215,Mining,Mining +455213,Mining,Mining +455211,Mining,Mining +455208,Mining,Mining +455207,Mining,Mining +455205,Mining,Mining +455202,Mining,Mining +455195,Mining,Mining +455193,Mining,Mining +455192,Mining,Mining +455189,Mining,Mining +455187,Mining,Mining +455185,Mining,Mining +455182,Mining,Mining +455177,Mining,Mining +455172,Mining,Mining +455170,Mining,Mining +455158,Mining,Mining +455156,Mining,Mining +455155,Mining,Mining +455153,Mining,Mining +455152,Mining,Mining +455150,Mining,Mining +455149,Mining,Mining +455148,Mining,Mining +452572,Mining,Mining +452571,Mining,Mining +452570,Mining,Mining +452568,Mining,Mining +452567,Mining,Mining +452566,Mining,Mining +452564,Mining,Mining +452562,Mining,Mining +452548,Mining,Mining +452547,Mining,Mining +452507,Mining,Mining +452501,Mining,Mining +452497,Mining,Mining +452493,Mining,Mining +452491,Mining,Mining +452488,Mining,Mining +452487,Mining,Mining +452485,Mining,Mining +452484,Mining,Mining +452482,Mining,Mining +452481,Mining,Mining +449561,Mining,Mining +449556,Mining,Mining +449552,Mining,Mining +449550,Mining,Mining +449547,Mining,Mining +449546,Mining,Mining +449542,Mining,Mining +449534,Mining,Mining +449531,Mining,Mining +449525,Mining,Mining +449524,Mining,Mining +449523,Mining,Mining +449522,Mining,Mining +449521,Mining,Mining +449514,Mining,Mining +449351,Mining,Mining +449344,Mining,Mining +449343,Mining,Mining +449338,Mining,Mining +449326,Mining,Mining +449325,Mining,Mining +449320,Mining,Mining +449316,Mining,Mining +449314,Mining,Mining +448079,Mining,Mining +448077,Mining,Mining +448074,Mining,Mining +448070,Mining,Mining +448025,Mining,Mining +448022,Mining,Mining +448020,Mining,Mining +448019,Mining,Mining +448017,Mining,Mining +447969,Mining,Mining +447935,Mining,Mining +447920,Mining,Mining +447914,Mining,Mining +447912,Mining,Mining +447907,Mining,Mining +447901,Mining,Mining +447898,Mining,Mining +447892,Mining,Mining +447891,Mining,Mining +447890,Mining,Mining +447887,Mining,Mining +447847,Mining,Mining +447843,Mining,Mining +447836,Mining,Mining +447832,Mining,Mining +447823,Mining,Mining +447807,Mining,Mining +447787,Mining,Mining +447783,Mining,Mining +447780,Mining,Mining +447778,Mining,Mining +447776,Mining,Mining +447761,Mining,Mining +445086,Mining,Mining +444982,Mining,Mining +444977,Mining,Mining +444975,Mining,Mining +444972,Mining,Mining +444971,Mining,Mining +444970,Mining,Mining +444717,Mining,Mining +443733,Mining,Mining +443730,Mining,Mining +443727,Mining,Mining +443726,Mining,Mining +443724,Mining,Mining +443723,Mining,Mining +443721,Mining,Mining +443720,Mining,Mining +443719,Mining,Mining +443718,Mining,Mining +443711,Mining,Mining +443710,Mining,Mining +443709,Mining,Mining +442027,Mining,Mining +442023,Mining,Mining +442020,Mining,Mining +442018,Mining,Mining +442015,Mining,Mining +442006,Mining,Mining +442004,Mining,Mining +442001,Mining,Mining +441998,Mining,Mining +441995,Mining,Mining +441991,Mining,Mining +441981,Mining,Mining +441978,Mining,Mining +441977,Mining,Mining +441972,Mining,Mining +441971,Mining,Mining +441969,Mining,Mining +441968,Mining,Mining +441962,Mining,Mining +441953,Mining,Mining +441919,Mining,Mining +441916,Mining,Mining +441912,Mining,Mining +441908,Mining,Mining +441899,Mining,Mining +441892,Mining,Mining +441787,Mining,Mining +441725,Mining,Mining +441723,Mining,Mining +441722,Mining,Mining +441721,Mining,Mining +441720,Mining,Mining +441719,Mining,Mining +441718,Mining,Mining +441716,Mining,Mining +441715,Mining,Mining +441713,Mining,Mining +441711,Mining,Mining +441710,Mining,Mining +441707,Mining,Mining +441702,Mining,Mining +441697,Mining,Mining +441693,Mining,Mining +441691,Mining,Mining +441688,Mining,Mining +441686,Mining,Mining +441685,Mining,Mining +441675,Mining,Mining +441664,Mining,Mining +441663,Mining,Mining +441658,Mining,Mining +441656,Mining,Mining +543663,Mining,Mining +543661,Mining,Mining +543657,Mining,Mining +543656,Mining,Mining +543653,Mining,Mining +543649,Mining,Mining +543643,Mining,Mining +543640,Mining,Mining +543637,Mining,Mining +541511,Mining,Mining +538922,Mining,Mining +538920,Mining,Mining +538919,Mining,Mining +538918,Mining,Mining +538148,Mining,Mining +538146,Mining,Mining +538143,Mining,Mining +538133,Mining,Mining +538132,Mining,Mining +538128,Mining,Mining +538123,Mining,Mining +538114,Mining,Mining +538069,Mining,Mining +538062,Mining,Mining +538051,Mining,Mining +534168,Mining,Mining +534167,Mining,Mining +534163,Mining,Mining +534160,Mining,Mining +534152,Mining,Mining +534148,Mining,Mining +534145,Mining,Mining +534143,Mining,Mining +534135,Mining,Mining +534133,Mining,Mining +534131,Mining,Mining +534123,Mining,Mining +534112,Mining,Mining +534033,Mining,Mining +531328,Mining,Mining +531326,Mining,Mining +531323,Mining,Mining +531320,Mining,Mining +531319,Mining,Mining +531318,Mining,Mining +531317,Mining,Mining +531315,Mining,Mining +531313,Mining,Mining +531312,Mining,Mining +531310,Mining,Mining +531306,Mining,Mining +531305,Mining,Mining +528255,Mining,Mining +528251,Mining,Mining +528249,Mining,Mining +528247,Mining,Mining +528243,Mining,Mining +528231,Mining,Mining +528226,Mining,Mining +526224,Mining,Mining +526222,Mining,Mining +526219,Mining,Mining +526215,Mining,Mining +526209,Mining,Mining +526205,Mining,Mining +526203,Mining,Mining +526200,Mining,Mining +526199,Mining,Mining +526196,Mining,Mining +526193,Mining,Mining +526189,Mining,Mining +526186,Mining,Mining +526182,Mining,Mining +526179,Mining,Mining +522401,Mining,Mining +522399,Mining,Mining +522396,Mining,Mining +519241,Mining,Mining +519237,Mining,Mining +519232,Mining,Mining +519229,Mining,Mining +519224,Mining,Mining +519221,Mining,Mining +517942,Mining,Mining +517938,Mining,Mining +517933,Mining,Mining +517916,Mining,Mining +517907,Mining,Mining +517902,Mining,Mining +517894,Mining,Mining +517893,Mining,Mining +517892,Mining,Mining +517889,Mining,Mining +517874,Mining,Mining +517869,Mining,Mining +517864,Mining,Mining +517860,Mining,Mining +517848,Mining,Mining +517844,Mining,Mining +517841,Mining,Mining +517836,Mining,Mining +517833,Mining,Mining +517828,Mining,Mining +517469,Mining,Mining +517465,Mining,Mining +517155,Mining,Mining +517154,Mining,Mining +517153,Mining,Mining +517152,Mining,Mining +517151,Mining,Mining +517150,Mining,Mining +517149,Mining,Mining +517148,Mining,Mining +517147,Mining,Mining +517146,Mining,Mining +517145,Mining,Mining +517144,Mining,Mining +517141,Mining,Mining +514684,Mining,Mining +514683,Mining,Mining +513995,Mining,Mining +513992,Mining,Mining +513991,Mining,Mining +513988,Mining,Mining +513987,Mining,Mining +513986,Mining,Mining +513082,Mining,Mining +513081,Mining,Mining +513080,Mining,Mining +513079,Mining,Mining +513078,Mining,Mining +513077,Mining,Mining +513076,Mining,Mining +513075,Mining,Mining +513074,Mining,Mining +513073,Mining,Mining +513072,Mining,Mining +513071,Mining,Mining +513070,Mining,Mining +510814,Mining,Mining +510813,Mining,Mining +510812,Mining,Mining +510810,Mining,Mining +510809,Mining,Mining +510808,Mining,Mining +510807,Mining,Mining +510806,Mining,Mining +510805,Mining,Mining +509540,Mining,Mining +509539,Mining,Mining +508170,Mining,Mining +508167,Mining,Mining +508165,Mining,Mining +508162,Mining,Mining +508161,Mining,Mining +508160,Mining,Mining +505299,Mining,Mining +505295,Mining,Mining +505292,Mining,Mining +505291,Mining,Mining +505289,Mining,Mining +505282,Mining,Mining +505277,Mining,Mining +505272,Mining,Mining +505269,Mining,Mining +505262,Mining,Mining +505260,Mining,Mining +505252,Mining,Mining +505249,Mining,Mining +505246,Mining,Mining +460506,Taxation and Finance,Taxation and Finance +458032,Taxation and Finance,Taxation and Finance +86658,Taxation and Finance,Taxation and Finance +86656,Taxation and Finance,Taxation and Finance +86655,Taxation and Finance,Taxation and Finance +86654,Taxation and Finance,Taxation and Finance +86634,Taxation and Finance,Taxation and Finance +86615,Taxation and Finance,Taxation and Finance +86614,Taxation and Finance,Taxation and Finance +93354,Taxation and Finance,Taxation and Finance +90429,Taxation and Finance,Taxation and Finance +90423,Taxation and Finance,Taxation and Finance +86715,Taxation and Finance,Taxation and Finance +86714,Taxation and Finance,Taxation and Finance +86695,Taxation and Finance,Taxation and Finance +86694,Taxation and Finance,Taxation and Finance +86675,Taxation and Finance,Taxation and Finance +161505,Taxation and Finance,Taxation and Finance +161502,Taxation and Finance,Taxation and Finance +295049,Taxation and Finance,Taxation and Finance +286156,Taxation and Finance,Taxation and Finance +286155,Taxation and Finance,Taxation and Finance +286154,Taxation and Finance,Taxation and Finance +286153,Taxation and Finance,Taxation and Finance +286152,Taxation and Finance,Taxation and Finance +286151,Taxation and Finance,Taxation and Finance +279975,Taxation and Finance,Taxation and Finance +277312,Taxation and Finance,Taxation and Finance +277308,Taxation and Finance,Taxation and Finance +277306,Taxation and Finance,Taxation and Finance +271727,Taxation and Finance,Taxation and Finance +264287,Taxation and Finance,Taxation and Finance +264277,Taxation and Finance,Taxation and Finance +256985,Taxation and Finance,Taxation and Finance +256975,Taxation and Finance,Taxation and Finance +256972,Taxation and Finance,Taxation and Finance +256970,Taxation and Finance,Taxation and Finance +256969,Taxation and Finance,Taxation and Finance +254271,Taxation and Finance,Taxation and Finance +250912,Taxation and Finance,Taxation and Finance +250911,Taxation and Finance,Taxation and Finance +250910,Taxation and Finance,Taxation and Finance +250908,Taxation and Finance,Taxation and Finance +250905,Taxation and Finance,Taxation and Finance +250899,Taxation and Finance,Taxation and Finance +250898,Taxation and Finance,Taxation and Finance +250858,Taxation and Finance,Taxation and Finance +250852,Taxation and Finance,Taxation and Finance +250846,Taxation and Finance,Taxation and Finance +250824,Taxation and Finance,Taxation and Finance +250813,Taxation and Finance,Taxation and Finance +250809,Taxation and Finance,Taxation and Finance +250804,Taxation and Finance,Taxation and Finance +250799,Taxation and Finance,Taxation and Finance +250731,Taxation and Finance,Taxation and Finance +250727,Taxation and Finance,Taxation and Finance +250723,Taxation and Finance,Taxation and Finance +250695,Taxation and Finance,Taxation and Finance +250690,Taxation and Finance,Taxation and Finance +250688,Taxation and Finance,Taxation and Finance +244733,Taxation and Finance,Taxation and Finance +244732,Taxation and Finance,Taxation and Finance +244730,Taxation and Finance,Taxation and Finance +244729,Taxation and Finance,Taxation and Finance +244726,Taxation and Finance,Taxation and Finance +244723,Taxation and Finance,Taxation and Finance +244722,Taxation and Finance,Taxation and Finance +244721,Taxation and Finance,Taxation and Finance +244719,Taxation and Finance,Taxation and Finance +244711,Taxation and Finance,Taxation and Finance +244703,Taxation and Finance,Taxation and Finance +241212,Taxation and Finance,Taxation and Finance +223386,Taxation and Finance,Taxation and Finance +177094,Taxation and Finance,Taxation and Finance +175884,Taxation and Finance,Taxation and Finance +441981,Taxation and Finance,Taxation and Finance +438713,Taxation and Finance,Taxation and Finance +438170,Taxation and Finance,Taxation and Finance +438160,Taxation and Finance,Taxation and Finance +438152,Taxation and Finance,Taxation and Finance +435576,Taxation and Finance,Taxation and Finance +435536,Taxation and Finance,Taxation and Finance +435275,Taxation and Finance,Taxation and Finance +432545,Taxation and Finance,Taxation and Finance +432544,Taxation and Finance,Taxation and Finance +432530,Taxation and Finance,Taxation and Finance +432501,Taxation and Finance,Taxation and Finance +429257,Taxation and Finance,Taxation and Finance +429242,Taxation and Finance,Taxation and Finance +429233,Taxation and Finance,Taxation and Finance +429221,Taxation and Finance,Taxation and Finance +421872,Taxation and Finance,Taxation and Finance +419154,Taxation and Finance,Taxation and Finance +415388,Taxation and Finance,Taxation and Finance +413584,Taxation and Finance,Taxation and Finance +413580,Taxation and Finance,Taxation and Finance +413574,Taxation and Finance,Taxation and Finance +413462,Taxation and Finance,Taxation and Finance +413443,Taxation and Finance,Taxation and Finance +413422,Taxation and Finance,Taxation and Finance +413416,Taxation and Finance,Taxation and Finance +413413,Taxation and Finance,Taxation and Finance +413412,Taxation and Finance,Taxation and Finance +409445,Taxation and Finance,Taxation and Finance +406732,Taxation and Finance,Taxation and Finance +398358,Taxation and Finance,Taxation and Finance +390294,Taxation and Finance,Taxation and Finance +390286,Taxation and Finance,Taxation and Finance +390117,Taxation and Finance,Taxation and Finance +387693,Taxation and Finance,Taxation and Finance +384928,Taxation and Finance,Taxation and Finance +384907,Taxation and Finance,Taxation and Finance +384903,Taxation and Finance,Taxation and Finance +378821,Taxation and Finance,Taxation and Finance +378816,Taxation and Finance,Taxation and Finance +378812,Taxation and Finance,Taxation and Finance +378806,Taxation and Finance,Taxation and Finance +367994,Taxation and Finance,Taxation and Finance +365079,Taxation and Finance,Taxation and Finance +356291,Taxation and Finance,Taxation and Finance +348906,Taxation and Finance,Taxation and Finance +340994,Taxation and Finance,Taxation and Finance +340992,Taxation and Finance,Taxation and Finance +340991,Taxation and Finance,Taxation and Finance +340987,Taxation and Finance,Taxation and Finance +340974,Taxation and Finance,Taxation and Finance +340964,Taxation and Finance,Taxation and Finance +340957,Taxation and Finance,Taxation and Finance +340954,Taxation and Finance,Taxation and Finance +340951,Taxation and Finance,Taxation and Finance +340937,Taxation and Finance,Taxation and Finance +340931,Taxation and Finance,Taxation and Finance +337841,Taxation and Finance,Taxation and Finance +319104,Taxation and Finance,Taxation and Finance +319103,Taxation and Finance,Taxation and Finance +517150,Taxation and Finance,Taxation and Finance +505294,Taxation and Finance,Taxation and Finance +490100,Taxation and Finance,Taxation and Finance +490073,Taxation and Finance,Taxation and Finance +479858,Taxation and Finance,Taxation and Finance +470407,Taxation and Finance,Taxation and Finance +470404,Taxation and Finance,Taxation and Finance +470400,Taxation and Finance,Taxation and Finance +467835,Taxation and Finance,Taxation and Finance +467493,Taxation and Finance,Taxation and Finance +464346,Taxation and Finance,Taxation and Finance +461305,Taxation and Finance,Taxation and Finance +452487,Transportation,Transportation +449561,Transportation,Transportation +168544,Transportation,Transportation +161509,Transportation,Transportation +161479,Transportation,Transportation +106065,Transportation,Transportation +250832,Transportation,Transportation +250827,Transportation,Transportation +244730,Transportation,Transportation +244726,Transportation,Transportation +244725,Transportation,Transportation +241228,Transportation,Transportation +241215,Transportation,Transportation +241211,Transportation,Transportation +241205,Transportation,Transportation +241100,Transportation,Transportation +236018,Transportation,Transportation +236017,Transportation,Transportation +236015,Transportation,Transportation +236014,Transportation,Transportation +230438,Transportation,Transportation +230437,Transportation,Transportation +189038,Transportation,Transportation +177094,Transportation,Transportation +177087,Transportation,Transportation +372364,Transportation,Transportation +365054,Transportation,Transportation +356279,Transportation,Transportation +350492,Transportation,Transportation +350485,Transportation,Transportation +350477,Transportation,Transportation +324028,Transportation,Transportation +324014,Transportation,Transportation +324013,Transportation,Transportation +321541,Transportation,Transportation +321531,Transportation,Transportation +321529,Transportation,Transportation +291087,Transportation,Transportation +291086,Transportation,Transportation +291083,Transportation,Transportation +291081,Transportation,Transportation +286157,Transportation,Transportation +279991,Transportation,Transportation +279987,Transportation,Transportation +271727,Transportation,Transportation +271726,Transportation,Transportation +271723,Transportation,Transportation +271722,Transportation,Transportation +271712,Transportation,Transportation +271492,Transportation,Transportation +266732,Transportation,Transportation +266694,Transportation,Transportation +266693,Transportation,Transportation +264295,Transportation,Transportation +264279,Transportation,Transportation +264277,Transportation,Transportation +264053,Transportation,Transportation +256986,Transportation,Transportation +256982,Transportation,Transportation +250841,Transportation,Transportation +250834,Transportation,Transportation +449552,Transportation,Transportation +449550,Transportation,Transportation +449547,Transportation,Transportation +449531,Transportation,Transportation +449525,Transportation,Transportation +449523,Transportation,Transportation +449522,Transportation,Transportation +449521,Transportation,Transportation +449514,Transportation,Transportation +449351,Transportation,Transportation +449344,Transportation,Transportation +449334,Transportation,Transportation +449326,Transportation,Transportation +447843,Transportation,Transportation +447765,Transportation,Transportation +444717,Transportation,Transportation +441981,Transportation,Transportation +441968,Transportation,Transportation +441953,Transportation,Transportation +441919,Transportation,Transportation +441892,Transportation,Transportation +441675,Transportation,Transportation +438179,Transportation,Transportation +438177,Transportation,Transportation +438173,Transportation,Transportation +438163,Transportation,Transportation +429315,Transportation,Transportation +429313,Transportation,Transportation +429296,Transportation,Transportation +429274,Transportation,Transportation +426667,Transportation,Transportation +426645,Transportation,Transportation +426637,Transportation,Transportation +426634,Transportation,Transportation +426630,Transportation,Transportation +426617,Transportation,Transportation +426615,Transportation,Transportation +426575,Transportation,Transportation +426573,Transportation,Transportation +426571,Transportation,Transportation +426428,Transportation,Transportation +426368,Transportation,Transportation +426366,Transportation,Transportation +426346,Transportation,Transportation +426334,Transportation,Transportation +426326,Transportation,Transportation +426274,Transportation,Transportation +424205,Transportation,Transportation +424201,Transportation,Transportation +424199,Transportation,Transportation +424198,Transportation,Transportation +424195,Transportation,Transportation +424193,Transportation,Transportation +424191,Transportation,Transportation +424179,Transportation,Transportation +424175,Transportation,Transportation +424119,Transportation,Transportation +424080,Transportation,Transportation +421875,Transportation,Transportation +421789,Transportation,Transportation +419154,Transportation,Transportation +417762,Transportation,Transportation +417711,Transportation,Transportation +415629,Transportation,Transportation +415625,Transportation,Transportation +415612,Transportation,Transportation +415608,Transportation,Transportation +415386,Transportation,Transportation +415382,Transportation,Transportation +415368,Transportation,Transportation +415303,Transportation,Transportation +415297,Transportation,Transportation +413636,Transportation,Transportation +409493,Transportation,Transportation +409477,Transportation,Transportation +409469,Transportation,Transportation +409450,Transportation,Transportation +409448,Transportation,Transportation +409445,Transportation,Transportation +409438,Transportation,Transportation +409405,Transportation,Transportation +406704,Transportation,Transportation +403607,Transportation,Transportation +400066,Transportation,Transportation +398358,Transportation,Transportation +394047,Transportation,Transportation +390381,Transportation,Transportation +390358,Transportation,Transportation +387692,Transportation,Transportation +378821,Transportation,Transportation +378812,Transportation,Transportation +531320,Transportation,Transportation +531313,Transportation,Transportation +517869,Transportation,Transportation +513991,Transportation,Transportation +513081,Transportation,Transportation +508167,Transportation,Transportation +505223,Transportation,Transportation +501835,Transportation,Transportation +493202,Transportation,Transportation +490122,Transportation,Transportation +490118,Transportation,Transportation +490113,Transportation,Transportation +490086,Transportation,Transportation +490077,Transportation,Transportation +485076,Transportation,Transportation +482159,Transportation,Transportation +479956,Transportation,Transportation +479954,Transportation,Transportation +467501,Transportation,Transportation +467459,Transportation,Transportation +467405,Transportation,Transportation +467399,Transportation,Transportation +467396,Transportation,Transportation +467395,Transportation,Transportation +467383,Transportation,Transportation +467376,Transportation,Transportation +464486,Transportation,Transportation +464482,Transportation,Transportation +464470,Transportation,Transportation +464348,Transportation,Transportation +462580,Transportation,Transportation +461343,Transportation,Transportation +461340,Transportation,Transportation +461336,Transportation,Transportation +461294,Transportation,Transportation +457290,Transportation,Transportation +455269,Transportation,Transportation +455264,Transportation,Transportation +455213,Transportation,Transportation +455157,Transportation,Transportation +455150,Transportation,Transportation +452501,Transportation,Transportation +452497,Transportation,Transportation +452493,Transportation,Transportation +452491,Transportation,Transportation +86655,Other,Sustainable Mining +86634,Other,Sustainable Mining +86714,Other,Sustainable Mining +88187,Energy,Energy +517072,Constitutional Issues,Constitutional Issues +522544,Consumer Issues,Consumer Issues +520023,Consumer Issues,Consumer Issues +202688,Consumer Issues,Consumer Issues +193925,Consumer Issues,Consumer Issues +193924,Consumer Issues,Consumer Issues +185554,Consumer Issues,Consumer Issues +179244,Consumer Issues,Consumer Issues +179204,Consumer Issues,Consumer Issues +167109,Consumer Issues,Consumer Issues +167108,Consumer Issues,Consumer Issues +167107,Consumer Issues,Consumer Issues +167106,Consumer Issues,Consumer Issues +165032,Consumer Issues,Consumer Issues +165028,Consumer Issues,Consumer Issues +162728,Consumer Issues,Consumer Issues +160964,Consumer Issues,Consumer Issues +327233,Consumer Issues,Consumer Issues +327230,Consumer Issues,Consumer Issues +315902,Consumer Issues,Consumer Issues +310096,Consumer Issues,Consumer Issues +277403,Consumer Issues,Consumer Issues +236433,Consumer Issues,Consumer Issues +217772,Consumer Issues,Consumer Issues +207165,Consumer Issues,Consumer Issues +207163,Consumer Issues,Consumer Issues +202692,Consumer Issues,Consumer Issues +541983,Consumer Issues,Consumer Issues +537457,Consumer Issues,Consumer Issues +531602,Consumer Issues,Consumer Issues +531601,Consumer Issues,Consumer Issues +531599,Consumer Issues,Consumer Issues +529365,Consumer Issues,Consumer Issues +529360,Consumer Issues,Consumer Issues +529363,Environment,Environment +541983,Environment,Environment +111674,Environment,Environment +253809,Environment,Environment +250116,Environment,Environment +250115,Environment,Environment +236435,Environment,Environment +236433,Environment,Environment +277403,Financial Institutions,Financial Institutions +466752,Financial Institutions,Financial Institutions +162728,Financial Institutions,Financial Institutions +200017,Financial Institutions,Financial Institutions +193948,Financial Institutions,Financial Institutions +193945,Financial Institutions,Financial Institutions +193944,Financial Institutions,Financial Institutions +193925,Financial Institutions,Financial Institutions +193924,Financial Institutions,Financial Institutions +185554,Financial Institutions,Financial Institutions +179244,Financial Institutions,Financial Institutions +175309,Financial Institutions,Financial Institutions +167108,Financial Institutions,Financial Institutions +236433,Financial Institutions,Financial Institutions +217772,Financial Institutions,Financial Institutions +207165,Financial Institutions,Financial Institutions +207163,Financial Institutions,Financial Institutions +202692,Financial Institutions,Financial Institutions +341203,Financial Institutions,Financial Institutions +327233,Financial Institutions,Financial Institutions +327230,Financial Institutions,Financial Institutions +315902,Financial Institutions,Financial Institutions +310096,Financial Institutions,Financial Institutions +469323,Industry,Industry +469317,Industry,Industry +145316,Industry,Industry +136714,Industry,Industry +125934,Industry,Industry +122314,Industry,Industry +111676,Industry,Industry +111675,Industry,Industry +236432,Industry,Industry +230242,Industry,Industry +225588,Industry,Industry +225568,Industry,Industry +217779,Industry,Industry +217776,Industry,Industry +217775,Industry,Industry +211918,Industry,Industry +202689,Industry,Industry +200020,Industry,Industry +200019,Industry,Industry +193925,Industry,Industry +189247,Industry,Industry +189157,Industry,Industry +179284,Industry,Industry +179224,Industry,Industry +179204,Industry,Industry +175307,Industry,Industry +173344,Industry,Industry +327230,Industry,Industry +315895,Industry,Industry +312693,Industry,Industry +296511,Industry,Industry +280970,Industry,Industry +264078,Industry,Industry +258991,Industry,Industry +250118,Industry,Industry +486396,Industry,Industry +486394,Industry,Industry +476798,Industry,Industry +471483,Industry,Industry +469586,Industry,Industry +466014,Infrastructure,Infrastructure +465502,Infrastructure,Infrastructure +465477,Infrastructure,Infrastructure +529365,Infrastructure,Infrastructure +507495,Infrastructure,Infrastructure +503280,Infrastructure,Infrastructure +497223,Infrastructure,Infrastructure +481148,Infrastructure,Infrastructure +456747,Justice and Law Enforcement,Justice and Law Enforcement +404404,Justice and Law Enforcement,Justice and Law Enforcement +408442,Small Business,Small Business +408392,Small Business,Small Business +145317,Small Business,Small Business +145316,Small Business,Small Business +179204,Small Business,Small Business +160966,Small Business,Small Business +494227,Small Business,Small Business +493947,Small Business,Small Business +493946,Small Business,Small Business +486396,Small Business,Small Business +486394,Small Business,Small Business +481147,Small Business,Small Business +478653,Small Business,Small Business +476798,Small Business,Small Business +476433,Small Business,Small Business +476432,Small Business,Small Business +476431,Small Business,Small Business +474014,Small Business,Small Business +473646,Small Business,Small Business +473618,Small Business,Small Business +471568,Small Business,Small Business +471536,Small Business,Small Business +471485,Small Business,Small Business +471483,Small Business,Small Business +469586,Small Business,Small Business +469346,Small Business,Small Business +469323,Small Business,Small Business +469317,Small Business,Small Business +522546,Taxation and Finance,Taxation and Finance +522544,Taxation and Finance,Taxation and Finance +122314,Taxation and Finance,Taxation and Finance +111674,Taxation and Finance,Taxation and Finance +94237,Taxation and Finance,Taxation and Finance +89115,Taxation and Finance,Taxation and Finance +162728,Taxation and Finance,Taxation and Finance +162727,Taxation and Finance,Taxation and Finance +160966,Taxation and Finance,Taxation and Finance +160965,Taxation and Finance,Taxation and Finance +160964,Taxation and Finance,Taxation and Finance +147498,Taxation and Finance,Taxation and Finance +145317,Taxation and Finance,Taxation and Finance +145316,Taxation and Finance,Taxation and Finance +136714,Taxation and Finance,Taxation and Finance +193948,Taxation and Finance,Taxation and Finance +193945,Taxation and Finance,Taxation and Finance +193944,Taxation and Finance,Taxation and Finance +193925,Taxation and Finance,Taxation and Finance +193924,Taxation and Finance,Taxation and Finance +185554,Taxation and Finance,Taxation and Finance +179244,Taxation and Finance,Taxation and Finance +179204,Taxation and Finance,Taxation and Finance +175309,Taxation and Finance,Taxation and Finance +167108,Taxation and Finance,Taxation and Finance +167107,Taxation and Finance,Taxation and Finance +167106,Taxation and Finance,Taxation and Finance +165032,Taxation and Finance,Taxation and Finance +165028,Taxation and Finance,Taxation and Finance +338072,Taxation and Finance,Taxation and Finance +327233,Taxation and Finance,Taxation and Finance +327230,Taxation and Finance,Taxation and Finance +315902,Taxation and Finance,Taxation and Finance +315901,Taxation and Finance,Taxation and Finance +312692,Taxation and Finance,Taxation and Finance +290610,Taxation and Finance,Taxation and Finance +290609,Taxation and Finance,Taxation and Finance +272082,Taxation and Finance,Taxation and Finance +264082,Taxation and Finance,Taxation and Finance +236433,Taxation and Finance,Taxation and Finance +226172,Taxation and Finance,Taxation and Finance +202689,Taxation and Finance,Taxation and Finance +200021,Taxation and Finance,Taxation and Finance +200018,Taxation and Finance,Taxation and Finance +200017,Taxation and Finance,Taxation and Finance +348353,Taxation and Finance,Taxation and Finance +341226,Taxation and Finance,Taxation and Finance +341218,Taxation and Finance,Taxation and Finance +341203,Taxation and Finance,Taxation and Finance +520023,Taxation and Finance,Taxation and Finance +517077,Taxation and Finance,Taxation and Finance +517072,Taxation and Finance,Taxation and Finance +517066,Taxation and Finance,Taxation and Finance +515233,Taxation and Finance,Taxation and Finance +510844,Taxation and Finance,Taxation and Finance +503280,Taxation and Finance,Taxation and Finance +502933,Taxation and Finance,Taxation and Finance +500345,Taxation and Finance,Taxation and Finance +500290,Taxation and Finance,Taxation and Finance +497242,Taxation and Finance,Taxation and Finance +497223,Taxation and Finance,Taxation and Finance +493947,Taxation and Finance,Taxation and Finance +493946,Taxation and Finance,Taxation and Finance +485803,Taxation and Finance,Taxation and Finance +476433,Taxation and Finance,Taxation and Finance +476432,Taxation and Finance,Taxation and Finance +473646,Taxation and Finance,Taxation and Finance +473618,Taxation and Finance,Taxation and Finance +471568,Taxation and Finance,Taxation and Finance +471536,Taxation and Finance,Taxation and Finance +466752,Taxation and Finance,Taxation and Finance +465502,Taxation and Finance,Taxation and Finance +465477,Taxation and Finance,Taxation and Finance +465322,Taxation and Finance,Taxation and Finance +424591,Taxation and Finance,Taxation and Finance +421007,Taxation and Finance,Taxation and Finance +408442,Taxation and Finance,Taxation and Finance +408392,Taxation and Finance,Taxation and Finance +537457,Taxation and Finance,Taxation and Finance +531602,Taxation and Finance,Taxation and Finance +531599,Taxation and Finance,Taxation and Finance +529365,Taxation and Finance,Taxation and Finance +78657,Transportation,Transportation +383019,International Relations,International Relations +416677,International Relations,International Relations +152937,International Relations,International Relations +141821,International Relations,International Relations +124951,International Relations,International Relations +124892,International Relations,International Relations +248172,International Relations,International Relations +247889,International Relations,International Relations +229272,International Relations,International Relations +247889,International Trade,International Trade +247870,International Trade,International Trade +198227,International Trade,International Trade +141821,International Trade,International Trade +124951,International Trade,International Trade +124892,International Trade,International Trade +188430,Tourism,Tourism +169331,Tourism,Tourism +141821,Tourism,Tourism +124951,Tourism,Tourism +124892,Tourism,Tourism +248172,Tourism,Tourism +247889,Tourism,Tourism +229272,Tourism,Tourism +216090,Tourism,Tourism +216089,Tourism,Tourism +247870,Transportation,Transportation +416677,Transportation,Transportation +89521,Transportation,Transportation +152937,Transportation,Transportation +141821,Transportation,Transportation +124951,Transportation,Transportation +229272,Transportation,Transportation +216090,Transportation,Transportation +216089,Transportation,Transportation +210494,Transportation,Transportation +188429,Transportation,Transportation +169331,Transportation,Transportation +399622,Transportation,Transportation +383019,Transportation,Transportation +294515,Transportation,Transportation +248172,Transportation,Transportation +226506,Defence,Defence +434985,Defence,Defence +157155,Defence,Defence +129037,Defence,Defence +109516,Defence,Defence +163898,Defence,Defence +161296,Defence,Defence +161035,Defence,Defence +161034,Defence,Defence +161033,Defence,Defence +161032,Defence,Defence +161031,Defence,Defence +161030,Defence,Defence +157163,Defence,Defence +518841,Energy,Energy +518837,Energy,Energy +161028,Energy,Energy +142337,Energy,Energy +315970,Energy,Energy +315967,Energy,Energy +315966,Energy,Energy +296214,Energy,Energy +262480,Energy,Energy +253757,Energy,Energy +253756,Energy,Energy +253755,Energy,Energy +253754,Energy,Energy +249460,Energy,Energy +249459,Energy,Energy +240589,Energy,Energy +240574,Energy,Energy +235889,Energy,Energy +229992,Energy,Energy +226643,Energy,Energy +378473,Energy,Energy +370906,Energy,Energy +368162,Energy,Energy +347061,Energy,Energy +341137,Energy,Energy +333258,Energy,Energy +331345,Energy,Energy +321758,Energy,Energy +500520,Energy,Energy +474622,Energy,Energy +469414,Energy,Energy +466466,Energy,Energy +463952,Energy,Energy +456741,Energy,Energy +456740,Energy,Energy +447021,Energy,Energy +443566,Energy,Energy +438287,Energy,Energy +438284,Energy,Energy +438283,Energy,Energy +434986,Energy,Energy +421729,Energy,Energy +404542,Energy,Energy +398881,Energy,Energy +539008,Energy,Energy +536773,Energy,Energy +533392,Energy,Energy +527571,Energy,Energy +521904,Energy,Energy +521901,Energy,Energy +533392,Environment,Environment +500520,Environment,Environment +229989,Environment,Environment +226643,Environment,Environment +202572,Environment,Environment +157152,Environment,Environment +368164,Environment,Environment +341137,Environment,Environment +331345,Environment,Environment +321758,Environment,Environment +321756,Environment,Environment +315970,Environment,Environment +315967,Environment,Environment +253754,Environment,Environment +249459,Environment,Environment +380590,Environment,Environment +463952,Environment,Environment +454545,Environment,Environment +450272,Environment,Environment +438287,Environment,Environment +438284,Environment,Environment +438283,Environment,Environment +434986,Environment,Environment +432218,Environment,Environment +421728,Environment,Environment +542527,Government Procurement,Government Procurement +542524,Government Procurement,Government Procurement +469413,Health,Health +421727,Health,Health +310113,Health,Health +262480,Health,Health +240574,Health,Health +229992,Health,Health +215608,Health,Health +215607,Health,Health +210787,Health,Health +202608,Health,Health +202572,Health,Health +417793,Health,Health +417792,Health,Health +415096,Health,Health +415095,Health,Health +399782,Health,Health +383038,Health,Health +381934,Health,Health +373933,Health,Health +373932,Health,Health +368224,Health,Health +367864,Health,Health +361827,Health,Health +359202,Health,Health +357803,Health,Health +357801,Health,Health +357799,Health,Health +343257,Industry,Industry +536766,Industry,Industry +151911,Industry,Industry +289550,Industry,Industry +244590,Industry,Industry +244589,Industry,Industry +229992,Industry,Industry +223568,Industry,Industry +223547,Industry,Industry +202729,Industry,Industry +202597,Industry,Industry +200065,Industry,Industry +200056,Industry,Industry +200055,Industry,Industry +200050,Industry,Industry +193786,Industry,Industry +193784,Industry,Industry +193781,Industry,Industry +165325,Industry,Industry +163897,Industry,Industry +335173,Industry,Industry +333259,Industry,Industry +321760,Industry,Industry +321759,Industry,Industry +321758,Industry,Industry +317693,Industry,Industry +310117,Industry,Industry +310115,Industry,Industry +310113,Industry,Industry +304313,Industry,Industry +296214,Industry,Industry +296213,Industry,Industry +296212,Industry,Industry +296210,Industry,Industry +500515,Industry,Industry +432219,Industry,Industry +415096,Industry,Industry +415095,Industry,Industry +415086,Industry,Industry +415085,Industry,Industry +415084,Industry,Industry +415080,Industry,Industry +412302,Industry,Industry +412297,Industry,Industry +404544,Industry,Industry +404543,Industry,Industry +399781,Industry,Industry +381941,Industry,Industry +381940,Industry,Industry +381939,Industry,Industry +381938,Industry,Industry +381937,Industry,Industry +381936,Industry,Industry +381935,Industry,Industry +378473,Industry,Industry +370908,Industry,Industry +357803,Industry,Industry +244589,Infrastructure,Infrastructure +533407,Infrastructure,Infrastructure +200056,Infrastructure,Infrastructure +193781,Infrastructure,Infrastructure +189091,Infrastructure,Infrastructure +189089,Infrastructure,Infrastructure +315966,Infrastructure,Infrastructure +161015,Intellectual Property,Intellectual Property +477975,International Trade,International Trade +477971,International Trade,International Trade +109516,International Trade,International Trade +229993,International Trade,International Trade +229990,International Trade,International Trade +210788,International Trade,International Trade +202729,International Trade,International Trade +392311,International Trade,International Trade +378480,International Trade,International Trade +378478,International Trade,International Trade +373930,International Trade,International Trade +368226,International Trade,International Trade +341136,International Trade,International Trade +326891,International Trade,International Trade +321755,International Trade,International Trade +310115,International Trade,International Trade +280971,International Trade,International Trade +426359,International Trade,International Trade +421727,International Trade,International Trade +419423,International Trade,International Trade +419421,International Trade,International Trade +417791,International Trade,International Trade +415096,International Trade,International Trade +415095,International Trade,International Trade +405107,International Trade,International Trade +399781,International Trade,International Trade +395738,International Trade,International Trade +521904,International Trade,International Trade +492606,International Trade,International Trade +478811,International Trade,International Trade +389904,Taxation and Finance,Taxation and Finance +474620,Taxation and Finance,Taxation and Finance +77856,Taxation and Finance,Taxation and Finance +226507,Taxation and Finance,Taxation and Finance +226505,Taxation and Finance,Taxation and Finance +202605,Taxation and Finance,Taxation and Finance +200065,Taxation and Finance,Taxation and Finance +200050,Taxation and Finance,Taxation and Finance +189116,Taxation and Finance,Taxation and Finance +375994,Taxation and Finance,Taxation and Finance +368163,Taxation and Finance,Taxation and Finance +357796,Taxation and Finance,Taxation and Finance +355796,Taxation and Finance,Taxation and Finance +338079,Taxation and Finance,Taxation and Finance +333260,Taxation and Finance,Taxation and Finance +321759,Taxation and Finance,Taxation and Finance +312430,Taxation and Finance,Taxation and Finance +268249,Taxation and Finance,Taxation and Finance +405107,Taxation and Finance,Taxation and Finance +91796,Employment and Training,Employment and Training +91796,Regional Development,Regional Development +91796,Other,sustainable community +91796,Other,critical infrastructure +91794,Employment and Training,Employment and Training +91794,Regional Development,Regional Development +219468,Agriculture,Agriculture +176724,Agriculture,Agriculture +89556,Agriculture,Agriculture +89555,Agriculture,Agriculture +89554,Agriculture,Agriculture +89553,Agriculture,Agriculture +89551,Agriculture,Agriculture +89549,Agriculture,Agriculture +89538,Agriculture,Agriculture +89537,Agriculture,Agriculture +89536,Agriculture,Agriculture +89535,Agriculture,Agriculture +353120,Agriculture,Agriculture +353115,Agriculture,Agriculture +317692,Agriculture,Agriculture +317691,Agriculture,Agriculture +313729,Agriculture,Agriculture +301230,Agriculture,Agriculture +245036,Agriculture,Agriculture +231509,Agriculture,Agriculture +219471,Agriculture,Agriculture +219470,Agriculture,Agriculture +155129,Consumer Issues,Consumer Issues +155052,Consumer Issues,Consumer Issues +155287,Consumer Issues,Consumer Issues +168618,Health,Health +219469,International Trade,International Trade +219468,International Trade,International Trade +89556,International Trade,International Trade +89555,International Trade,International Trade +89536,International Trade,International Trade +89535,International Trade,International Trade +353120,International Trade,International Trade +353115,International Trade,International Trade +317692,International Trade,International Trade +317691,International Trade,International Trade +313729,International Trade,International Trade +301230,International Trade,International Trade +245036,International Trade,International Trade +219471,International Trade,International Trade +441566,Financial Institutions,Financial Institutions +441562,Financial Institutions,Financial Institutions +93724,Financial Institutions,Financial Institutions +90612,Financial Institutions,Financial Institutions +88243,Financial Institutions,Financial Institutions +88237,Financial Institutions,Financial Institutions +88234,Financial Institutions,Financial Institutions +88233,Financial Institutions,Financial Institutions +185463,Financial Institutions,Financial Institutions +185457,Financial Institutions,Financial Institutions +175565,Financial Institutions,Financial Institutions +175564,Financial Institutions,Financial Institutions +175497,Financial Institutions,Financial Institutions +159828,Financial Institutions,Financial Institutions +147974,Financial Institutions,Financial Institutions +147948,Financial Institutions,Financial Institutions +302953,Financial Institutions,Financial Institutions +296783,Financial Institutions,Financial Institutions +284309,Financial Institutions,Financial Institutions +277381,Financial Institutions,Financial Institutions +277364,Financial Institutions,Financial Institutions +268653,Financial Institutions,Financial Institutions +268649,Financial Institutions,Financial Institutions +268629,Financial Institutions,Financial Institutions +264531,Financial Institutions,Financial Institutions +264529,Financial Institutions,Financial Institutions +264523,Financial Institutions,Financial Institutions +250663,Financial Institutions,Financial Institutions +250657,Financial Institutions,Financial Institutions +250630,Financial Institutions,Financial Institutions +250381,Financial Institutions,Financial Institutions +250380,Financial Institutions,Financial Institutions +250379,Financial Institutions,Financial Institutions +250378,Financial Institutions,Financial Institutions +236637,Financial Institutions,Financial Institutions +212397,Financial Institutions,Financial Institutions +212396,Financial Institutions,Financial Institutions +212389,Financial Institutions,Financial Institutions +207441,Financial Institutions,Financial Institutions +202770,Financial Institutions,Financial Institutions +202765,Financial Institutions,Financial Institutions +199942,Financial Institutions,Financial Institutions +199937,Financial Institutions,Financial Institutions +199932,Financial Institutions,Financial Institutions +362314,Financial Institutions,Financial Institutions +362311,Financial Institutions,Financial Institutions +361148,Financial Institutions,Financial Institutions +359869,Financial Institutions,Financial Institutions +359856,Financial Institutions,Financial Institutions +356006,Financial Institutions,Financial Institutions +356005,Financial Institutions,Financial Institutions +356003,Financial Institutions,Financial Institutions +349232,Financial Institutions,Financial Institutions +348797,Financial Institutions,Financial Institutions +348795,Financial Institutions,Financial Institutions +347140,Financial Institutions,Financial Institutions +347139,Financial Institutions,Financial Institutions +347137,Financial Institutions,Financial Institutions +343999,Financial Institutions,Financial Institutions +343997,Financial Institutions,Financial Institutions +343995,Financial Institutions,Financial Institutions +343993,Financial Institutions,Financial Institutions +343992,Financial Institutions,Financial Institutions +341200,Financial Institutions,Financial Institutions +341192,Financial Institutions,Financial Institutions +340423,Financial Institutions,Financial Institutions +340422,Financial Institutions,Financial Institutions +340420,Financial Institutions,Financial Institutions +340419,Financial Institutions,Financial Institutions +340418,Financial Institutions,Financial Institutions +338524,Financial Institutions,Financial Institutions +338511,Financial Institutions,Financial Institutions +335895,Financial Institutions,Financial Institutions +335728,Financial Institutions,Financial Institutions +335659,Financial Institutions,Financial Institutions +335613,Financial Institutions,Financial Institutions +335611,Financial Institutions,Financial Institutions +333367,Financial Institutions,Financial Institutions +330932,Financial Institutions,Financial Institutions +329868,Financial Institutions,Financial Institutions +328028,Financial Institutions,Financial Institutions +328026,Financial Institutions,Financial Institutions +324873,Financial Institutions,Financial Institutions +324872,Financial Institutions,Financial Institutions +324871,Financial Institutions,Financial Institutions +319070,Financial Institutions,Financial Institutions +319069,Financial Institutions,Financial Institutions +315888,Financial Institutions,Financial Institutions +315881,Financial Institutions,Financial Institutions +315877,Financial Institutions,Financial Institutions +315876,Financial Institutions,Financial Institutions +313203,Financial Institutions,Financial Institutions +310380,Financial Institutions,Financial Institutions +310365,Financial Institutions,Financial Institutions +310277,Financial Institutions,Financial Institutions +302969,Financial Institutions,Financial Institutions +438585,Financial Institutions,Financial Institutions +433718,Financial Institutions,Financial Institutions +432337,Financial Institutions,Financial Institutions +432334,Financial Institutions,Financial Institutions +432323,Financial Institutions,Financial Institutions +430794,Financial Institutions,Financial Institutions +430786,Financial Institutions,Financial Institutions +430785,Financial Institutions,Financial Institutions +423676,Financial Institutions,Financial Institutions +423675,Financial Institutions,Financial Institutions +419763,Financial Institutions,Financial Institutions +415894,Financial Institutions,Financial Institutions +412693,Financial Institutions,Financial Institutions +412692,Financial Institutions,Financial Institutions +412691,Financial Institutions,Financial Institutions +412689,Financial Institutions,Financial Institutions +412687,Financial Institutions,Financial Institutions +412685,Financial Institutions,Financial Institutions +412682,Financial Institutions,Financial Institutions +408992,Financial Institutions,Financial Institutions +407812,Financial Institutions,Financial Institutions +407809,Financial Institutions,Financial Institutions +407797,Financial Institutions,Financial Institutions +406381,Financial Institutions,Financial Institutions +406380,Financial Institutions,Financial Institutions +406379,Financial Institutions,Financial Institutions +406378,Financial Institutions,Financial Institutions +406377,Financial Institutions,Financial Institutions +406376,Financial Institutions,Financial Institutions +405352,Financial Institutions,Financial Institutions +405241,Financial Institutions,Financial Institutions +405091,Financial Institutions,Financial Institutions +405090,Financial Institutions,Financial Institutions +405089,Financial Institutions,Financial Institutions +405087,Financial Institutions,Financial Institutions +403161,Financial Institutions,Financial Institutions +402995,Financial Institutions,Financial Institutions +400284,Financial Institutions,Financial Institutions +400098,Financial Institutions,Financial Institutions +396256,Financial Institutions,Financial Institutions +392526,Financial Institutions,Financial Institutions +388263,Financial Institutions,Financial Institutions +388077,Financial Institutions,Financial Institutions +388069,Financial Institutions,Financial Institutions +388053,Financial Institutions,Financial Institutions +388048,Financial Institutions,Financial Institutions +387806,Financial Institutions,Financial Institutions +387805,Financial Institutions,Financial Institutions +387802,Financial Institutions,Financial Institutions +387797,Financial Institutions,Financial Institutions +387795,Financial Institutions,Financial Institutions +387794,Financial Institutions,Financial Institutions +387790,Financial Institutions,Financial Institutions +385215,Financial Institutions,Financial Institutions +385213,Financial Institutions,Financial Institutions +385210,Financial Institutions,Financial Institutions +382231,Financial Institutions,Financial Institutions +380609,Financial Institutions,Financial Institutions +380608,Financial Institutions,Financial Institutions +380528,Financial Institutions,Financial Institutions +379263,Financial Institutions,Financial Institutions +377099,Financial Institutions,Financial Institutions +376233,Financial Institutions,Financial Institutions +376230,Financial Institutions,Financial Institutions +374047,Financial Institutions,Financial Institutions +374045,Financial Institutions,Financial Institutions +374040,Financial Institutions,Financial Institutions +374039,Financial Institutions,Financial Institutions +374038,Financial Institutions,Financial Institutions +374037,Financial Institutions,Financial Institutions +373769,Financial Institutions,Financial Institutions +373768,Financial Institutions,Financial Institutions +372659,Financial Institutions,Financial Institutions +372651,Financial Institutions,Financial Institutions +372644,Financial Institutions,Financial Institutions +371744,Financial Institutions,Financial Institutions +371740,Financial Institutions,Financial Institutions +371696,Financial Institutions,Financial Institutions +371690,Financial Institutions,Financial Institutions +371672,Financial Institutions,Financial Institutions +369158,Financial Institutions,Financial Institutions +369058,Financial Institutions,Financial Institutions +369055,Financial Institutions,Financial Institutions +369051,Financial Institutions,Financial Institutions +369046,Financial Institutions,Financial Institutions +366550,Financial Institutions,Financial Institutions +366549,Financial Institutions,Financial Institutions +366544,Financial Institutions,Financial Institutions +365057,Financial Institutions,Financial Institutions +365056,Financial Institutions,Financial Institutions +362316,Financial Institutions,Financial Institutions +543427,Financial Institutions,Financial Institutions +541360,Financial Institutions,Financial Institutions +541359,Financial Institutions,Financial Institutions +541358,Financial Institutions,Financial Institutions +541357,Financial Institutions,Financial Institutions +541355,Financial Institutions,Financial Institutions +541354,Financial Institutions,Financial Institutions +531402,Financial Institutions,Financial Institutions +531401,Financial Institutions,Financial Institutions +528905,Financial Institutions,Financial Institutions +528899,Financial Institutions,Financial Institutions +504470,Financial Institutions,Financial Institutions +504469,Financial Institutions,Financial Institutions +498385,Financial Institutions,Financial Institutions +498383,Financial Institutions,Financial Institutions +498380,Financial Institutions,Financial Institutions +498379,Financial Institutions,Financial Institutions +495414,Financial Institutions,Financial Institutions +495411,Financial Institutions,Financial Institutions +492988,Financial Institutions,Financial Institutions +492604,Financial Institutions,Financial Institutions +490528,Financial Institutions,Financial Institutions +487375,Financial Institutions,Financial Institutions +487341,Financial Institutions,Financial Institutions +484423,Financial Institutions,Financial Institutions +484418,Financial Institutions,Financial Institutions +481405,Financial Institutions,Financial Institutions +481402,Financial Institutions,Financial Institutions +477761,Financial Institutions,Financial Institutions +477751,Financial Institutions,Financial Institutions +472652,Financial Institutions,Financial Institutions +469876,Financial Institutions,Financial Institutions +469875,Financial Institutions,Financial Institutions +469874,Financial Institutions,Financial Institutions +469873,Financial Institutions,Financial Institutions +467743,Financial Institutions,Financial Institutions +464298,Financial Institutions,Financial Institutions +461866,Financial Institutions,Financial Institutions +461366,Financial Institutions,Financial Institutions +461365,Financial Institutions,Financial Institutions +461363,Financial Institutions,Financial Institutions +460697,Financial Institutions,Financial Institutions +460661,Financial Institutions,Financial Institutions +460655,Financial Institutions,Financial Institutions +460034,Financial Institutions,Financial Institutions +459429,Financial Institutions,Financial Institutions +459426,Financial Institutions,Financial Institutions +458264,Financial Institutions,Financial Institutions +458263,Financial Institutions,Financial Institutions +458262,Financial Institutions,Financial Institutions +458261,Financial Institutions,Financial Institutions +458260,Financial Institutions,Financial Institutions +458259,Financial Institutions,Financial Institutions +458258,Financial Institutions,Financial Institutions +458257,Financial Institutions,Financial Institutions +458256,Financial Institutions,Financial Institutions +458255,Financial Institutions,Financial Institutions +458254,Financial Institutions,Financial Institutions +458253,Financial Institutions,Financial Institutions +458252,Financial Institutions,Financial Institutions +458251,Financial Institutions,Financial Institutions +458250,Financial Institutions,Financial Institutions +458249,Financial Institutions,Financial Institutions +458248,Financial Institutions,Financial Institutions +458247,Financial Institutions,Financial Institutions +458246,Financial Institutions,Financial Institutions +457955,Financial Institutions,Financial Institutions +457954,Financial Institutions,Financial Institutions +457953,Financial Institutions,Financial Institutions +457952,Financial Institutions,Financial Institutions +457951,Financial Institutions,Financial Institutions +457578,Financial Institutions,Financial Institutions +457280,Financial Institutions,Financial Institutions +455047,Financial Institutions,Financial Institutions +388077,Regional Development,Regional Development +365056,Regional Development,Regional Development +406381,Regional Development,Regional Development +406380,Regional Development,Regional Development +406379,Regional Development,Regional Development +406378,Regional Development,Regional Development +406377,Regional Development,Regional Development +406376,Regional Development,Regional Development +400284,Regional Development,Regional Development +186924,Agriculture,Agriculture +401885,Agriculture,Agriculture +156089,Agriculture,Agriculture +156088,Agriculture,Agriculture +156087,Agriculture,Agriculture +156086,Agriculture,Agriculture +98474,Agriculture,Agriculture +229489,Agriculture,Agriculture +224894,Agriculture,Agriculture +224889,Agriculture,Agriculture +224871,Agriculture,Agriculture +204310,Agriculture,Agriculture +204309,Agriculture,Agriculture +401885,Health,Health +492470,Health,Health +98474,Health,Health +229489,Health,Health +224894,Health,Health +224889,Health,Health +224871,Health,Health +204308,Health,Health +204307,Health,Health +191164,Health,Health +156089,Health,Health +156088,Health,Health +156087,Health,Health +156086,Health,Health +373312,Health,Health +373311,Health,Health +446182,Health,Health +423480,Health,Health +343057,Labour,Labour +373313,Labour,Labour +160667,Intellectual Property,Intellectual Property +160666,Intellectual Property,Intellectual Property +190861,Intellectual Property,Intellectual Property +98655,Health,Health +93535,International Trade,International Trade +146396,International Trade,International Trade +91317,International Trade,International Trade +146395,International Trade,International Trade +146395,Taxation and Finance,Taxation and Finance +468779,Environment,Environment +384961,Environment,Environment +437866,Forestry,Forestry +437861,Forestry,Forestry +200254,Forestry,Forestry +199817,Forestry,Forestry +193429,Forestry,Forestry +193428,Forestry,Forestry +193427,Forestry,Forestry +193426,Forestry,Forestry +193425,Forestry,Forestry +193424,Forestry,Forestry +188738,Forestry,Forestry +171918,Forestry,Forestry +171504,Forestry,Forestry +170149,Forestry,Forestry +170146,Forestry,Forestry +170145,Forestry,Forestry +166430,Forestry,Forestry +165309,Forestry,Forestry +165308,Forestry,Forestry +165306,Forestry,Forestry +165305,Forestry,Forestry +165304,Forestry,Forestry +165303,Forestry,Forestry +165302,Forestry,Forestry +165301,Forestry,Forestry +165300,Forestry,Forestry +326650,Forestry,Forestry +326649,Forestry,Forestry +319148,Forestry,Forestry +315129,Forestry,Forestry +313450,Forestry,Forestry +290851,Forestry,Forestry +277070,Forestry,Forestry +277069,Forestry,Forestry +270970,Forestry,Forestry +270969,Forestry,Forestry +259252,Forestry,Forestry +251929,Forestry,Forestry +250490,Forestry,Forestry +250489,Forestry,Forestry +238929,Forestry,Forestry +230255,Forestry,Forestry +220788,Forestry,Forestry +220787,Forestry,Forestry +217944,Forestry,Forestry +207567,Forestry,Forestry +202700,Forestry,Forestry +202697,Forestry,Forestry +399811,Forestry,Forestry +395166,Forestry,Forestry +395085,Forestry,Forestry +394143,Forestry,Forestry +394138,Forestry,Forestry +393082,Forestry,Forestry +393081,Forestry,Forestry +393072,Forestry,Forestry +393071,Forestry,Forestry +390074,Forestry,Forestry +389642,Forestry,Forestry +389136,Forestry,Forestry +389105,Forestry,Forestry +389104,Forestry,Forestry +384966,Forestry,Forestry +384963,Forestry,Forestry +384961,Forestry,Forestry +384960,Forestry,Forestry +384959,Forestry,Forestry +383596,Forestry,Forestry +383595,Forestry,Forestry +383594,Forestry,Forestry +383592,Forestry,Forestry +381916,Forestry,Forestry +381915,Forestry,Forestry +381122,Forestry,Forestry +379041,Forestry,Forestry +377546,Forestry,Forestry +373153,Forestry,Forestry +373152,Forestry,Forestry +373151,Forestry,Forestry +373144,Forestry,Forestry +373141,Forestry,Forestry +369387,Forestry,Forestry +369386,Forestry,Forestry +369385,Forestry,Forestry +365642,Forestry,Forestry +364482,Forestry,Forestry +357842,Forestry,Forestry +350863,Forestry,Forestry +350862,Forestry,Forestry +349118,Forestry,Forestry +347221,Forestry,Forestry +343523,Forestry,Forestry +335230,Forestry,Forestry +335229,Forestry,Forestry +326651,Forestry,Forestry +433045,Forestry,Forestry +433042,Forestry,Forestry +433041,Forestry,Forestry +428019,Forestry,Forestry +425842,Forestry,Forestry +425841,Forestry,Forestry +425840,Forestry,Forestry +421704,Forestry,Forestry +421701,Forestry,Forestry +421697,Forestry,Forestry +421693,Forestry,Forestry +415261,Forestry,Forestry +405904,Forestry,Forestry +401726,Forestry,Forestry +401719,Forestry,Forestry +474789,Forestry,Forestry +468786,Forestry,Forestry +468785,Forestry,Forestry +468780,Forestry,Forestry +468779,Forestry,Forestry +462776,Forestry,Forestry +461826,Forestry,Forestry +451225,Forestry,Forestry +451224,Forestry,Forestry +444855,Forestry,Forestry +444848,Forestry,Forestry +444194,Forestry,Forestry +443455,Forestry,Forestry +443454,Forestry,Forestry +443453,Forestry,Forestry +441811,Forestry,Forestry +441471,Forestry,Forestry +441462,Forestry,Forestry +441458,Forestry,Forestry +441454,Forestry,Forestry +441452,Forestry,Forestry +441450,Forestry,Forestry +441448,Forestry,Forestry +441447,Forestry,Forestry +441443,Forestry,Forestry +441441,Forestry,Forestry +441435,Forestry,Forestry +441430,Forestry,Forestry +441425,Forestry,Forestry +441423,Forestry,Forestry +438817,Forestry,Forestry +437877,Forestry,Forestry +437874,Forestry,Forestry +437871,Forestry,Forestry +437869,Forestry,Forestry +437871,Industry,Industry +437861,Industry,Industry +319148,Industry,Industry +313450,Industry,Industry +290851,Industry,Industry +277070,Industry,Industry +277069,Industry,Industry +270970,Industry,Industry +270969,Industry,Industry +259252,Industry,Industry +251929,Industry,Industry +250490,Industry,Industry +238929,Industry,Industry +230255,Industry,Industry +220788,Industry,Industry +220787,Industry,Industry +217944,Industry,Industry +207608,Industry,Industry +207567,Industry,Industry +202697,Industry,Industry +200139,Industry,Industry +199817,Industry,Industry +193429,Industry,Industry +193428,Industry,Industry +193427,Industry,Industry +193426,Industry,Industry +170145,Industry,Industry +166430,Industry,Industry +165310,Industry,Industry +165309,Industry,Industry +165308,Industry,Industry +165306,Industry,Industry +165305,Industry,Industry +165304,Industry,Industry +165303,Industry,Industry +165302,Industry,Industry +165301,Industry,Industry +165300,Industry,Industry +433041,Industry,Industry +428019,Industry,Industry +425842,Industry,Industry +425841,Industry,Industry +425840,Industry,Industry +421704,Industry,Industry +421693,Industry,Industry +415261,Industry,Industry +401726,Industry,Industry +401719,Industry,Industry +399811,Industry,Industry +395085,Industry,Industry +394143,Industry,Industry +393082,Industry,Industry +393072,Industry,Industry +393071,Industry,Industry +390074,Industry,Industry +389642,Industry,Industry +389105,Industry,Industry +389103,Industry,Industry +389102,Industry,Industry +389101,Industry,Industry +384966,Industry,Industry +384963,Industry,Industry +383594,Industry,Industry +379041,Industry,Industry +377546,Industry,Industry +373153,Industry,Industry +373152,Industry,Industry +373151,Industry,Industry +373144,Industry,Industry +373133,Industry,Industry +369387,Industry,Industry +369386,Industry,Industry +369385,Industry,Industry +366363,Industry,Industry +365642,Industry,Industry +364482,Industry,Industry +357842,Industry,Industry +350862,Industry,Industry +349118,Industry,Industry +343523,Industry,Industry +335230,Industry,Industry +335229,Industry,Industry +326651,Industry,Industry +326650,Industry,Industry +326649,Industry,Industry +468786,Industry,Industry +462776,Industry,Industry +451224,Industry,Industry +443455,Industry,Industry +441471,Industry,Industry +441462,Industry,Industry +441458,Industry,Industry +441454,Industry,Industry +441452,Industry,Industry +441450,Industry,Industry +441448,Industry,Industry +441447,Industry,Industry +441443,Industry,Industry +441441,Industry,Industry +441435,Industry,Industry +441430,Industry,Industry +438817,Industry,Industry +193424,Intellectual Property,Intellectual Property +319148,Intellectual Property,Intellectual Property +485005,Taxation and Finance,Taxation and Finance +504556,Transportation,Transportation +492107,Transportation,Transportation +133674,Transportation,Transportation +207330,Transportation,Transportation +181424,Transportation,Transportation +163657,Transportation,Transportation +163656,Transportation,Transportation +163654,Transportation,Transportation +163653,Transportation,Transportation +163652,Transportation,Transportation +163651,Transportation,Transportation +163649,Transportation,Transportation +163648,Transportation,Transportation +393124,Transportation,Transportation +393122,Transportation,Transportation +393120,Transportation,Transportation +390855,Transportation,Transportation +390850,Transportation,Transportation +390833,Transportation,Transportation +390813,Transportation,Transportation +384405,Transportation,Transportation +384404,Transportation,Transportation +382998,Transportation,Transportation +382994,Transportation,Transportation +382992,Transportation,Transportation +218908,Transportation,Transportation +218907,Transportation,Transportation +466842,Transportation,Transportation +466838,Transportation,Transportation +466836,Transportation,Transportation +466832,Transportation,Transportation +463155,Transportation,Transportation +463153,Transportation,Transportation +463152,Transportation,Transportation +463150,Transportation,Transportation +460836,Transportation,Transportation +460832,Transportation,Transportation +460830,Transportation,Transportation +459858,Transportation,Transportation +456133,Transportation,Transportation +456132,Transportation,Transportation +456131,Transportation,Transportation +456126,Transportation,Transportation +453663,Transportation,Transportation +453662,Transportation,Transportation +449354,Transportation,Transportation +449331,Transportation,Transportation +444316,Transportation,Transportation +444314,Transportation,Transportation +444312,Transportation,Transportation +443776,Transportation,Transportation +441075,Transportation,Transportation +437059,Transportation,Transportation +437057,Transportation,Transportation +435609,Transportation,Transportation +435605,Transportation,Transportation +435599,Transportation,Transportation +433500,Transportation,Transportation +428647,Transportation,Transportation +428637,Transportation,Transportation +426392,Transportation,Transportation +426371,Transportation,Transportation +423976,Transportation,Transportation +423973,Transportation,Transportation +421581,Transportation,Transportation +421576,Transportation,Transportation +419258,Transportation,Transportation +419253,Transportation,Transportation +419251,Transportation,Transportation +419243,Transportation,Transportation +418115,Transportation,Transportation +418114,Transportation,Transportation +418107,Transportation,Transportation +414934,Transportation,Transportation +414484,Transportation,Transportation +414483,Transportation,Transportation +414482,Transportation,Transportation +407931,Transportation,Transportation +406397,Transportation,Transportation +406395,Transportation,Transportation +406394,Transportation,Transportation +403220,Transportation,Transportation +403214,Transportation,Transportation +403213,Transportation,Transportation +398820,Transportation,Transportation +542749,Transportation,Transportation +542745,Transportation,Transportation +542744,Transportation,Transportation +541818,Transportation,Transportation +541807,Transportation,Transportation +535257,Transportation,Transportation +535253,Transportation,Transportation +533432,Transportation,Transportation +529465,Transportation,Transportation +522774,Transportation,Transportation +521074,Transportation,Transportation +521073,Transportation,Transportation +520876,Transportation,Transportation +518076,Transportation,Transportation +518071,Transportation,Transportation +518067,Transportation,Transportation +518064,Transportation,Transportation +518063,Transportation,Transportation +518061,Transportation,Transportation +515966,Transportation,Transportation +508611,Transportation,Transportation +91354,Industry,Industry +331599,Industry,Industry +331598,Industry,Industry +175766,Industry,Industry +163247,Industry,Industry +308452,Industry,Industry +308152,Industry,Industry +271471,Industry,Industry +271470,Industry,Industry +231469,Industry,Industry +211946,Industry,Industry +211945,Industry,Industry +211944,Industry,Industry +200293,Industry,Industry +460033,Industry,Industry +401189,Industry,Industry +388318,Industry,Industry +388312,Industry,Industry +388302,Industry,Industry +377938,Industry,Industry +377937,Industry,Industry +377936,Industry,Industry +377935,Industry,Industry +377927,Industry,Industry +367028,Industry,Industry +344220,Industry,Industry +333252,Industry,Industry +333249,Industry,Industry +331603,Industry,Industry +196878,Education,Education +196877,Education,Education +158276,Education,Education +158274,Education,Education +158273,Education,Education +158271,Education,Education +158270,Education,Education +158269,Education,Education +158268,Education,Education +158267,Education,Education +158266,Education,Education +158265,Education,Education +158264,Education,Education +158262,Education,Education +158261,Education,Education +158260,Education,Education +158259,Education,Education +158258,Education,Education +158257,Education,Education +158256,Education,Education +158255,Education,Education +158254,Education,Education +158253,Education,Education +158252,Education,Education +158251,Education,Education +158250,Education,Education +158249,Education,Education +158248,Education,Education +157814,Education,Education +196876,Education,Education +196875,Education,Education +196874,Education,Education +196873,Education,Education +196872,Education,Education +196871,Education,Education +196870,Education,Education +196865,Education,Education +196864,Education,Education +196863,Education,Education +196862,Education,Education +196860,Education,Education +196859,Education,Education +196858,Education,Education +196856,Education,Education +196855,Education,Education +196854,Education,Education +196853,Education,Education +196852,Education,Education +196851,Education,Education +196850,Education,Education +196849,Education,Education +196847,Education,Education +196846,Education,Education +196845,Education,Education +196844,Education,Education +196843,Education,Education +196842,Education,Education +196841,Education,Education +196839,Education,Education +196838,Education,Education +196836,Education,Education +196834,Education,Education +159157,Education,Education +158305,Education,Education +158304,Education,Education +158303,Education,Education +158302,Education,Education +158301,Education,Education +158300,Education,Education +158299,Education,Education +158298,Education,Education +158297,Education,Education +158296,Education,Education +158295,Education,Education +158294,Education,Education +158293,Education,Education +158292,Education,Education +158291,Education,Education +158290,Education,Education +158289,Education,Education +158288,Education,Education +158287,Education,Education +158282,Education,Education +158280,Education,Education +158279,Education,Education +244013,Education,Education +244009,Education,Education +243307,Education,Education +243304,Education,Education +243303,Education,Education +243302,Education,Education +243301,Education,Education +243300,Education,Education +243299,Education,Education +243298,Education,Education +243297,Education,Education +243296,Education,Education +243295,Education,Education +243294,Education,Education +243293,Education,Education +243292,Education,Education +243290,Education,Education +243289,Education,Education +243217,Education,Education +243216,Education,Education +243215,Education,Education +243214,Education,Education +243213,Education,Education +243212,Education,Education +243211,Education,Education +243210,Education,Education +243209,Education,Education +243208,Education,Education +243207,Education,Education +243206,Education,Education +243205,Education,Education +215007,Education,Education +214987,Education,Education +209829,Education,Education +209828,Education,Education +206193,Education,Education +197142,Education,Education +197140,Education,Education +197139,Education,Education +197136,Education,Education +196882,Education,Education +196881,Education,Education +196880,Education,Education +243206,Financial Institutions,Financial Institutions +243205,Financial Institutions,Financial Institutions +244013,Financial Institutions,Financial Institutions +244009,Financial Institutions,Financial Institutions +243307,Financial Institutions,Financial Institutions +243304,Financial Institutions,Financial Institutions +243303,Financial Institutions,Financial Institutions +243302,Financial Institutions,Financial Institutions +243301,Financial Institutions,Financial Institutions +243300,Financial Institutions,Financial Institutions +243299,Financial Institutions,Financial Institutions +243298,Financial Institutions,Financial Institutions +243297,Financial Institutions,Financial Institutions +243296,Financial Institutions,Financial Institutions +243295,Financial Institutions,Financial Institutions +243294,Financial Institutions,Financial Institutions +243293,Financial Institutions,Financial Institutions +243292,Financial Institutions,Financial Institutions +243290,Financial Institutions,Financial Institutions +243289,Financial Institutions,Financial Institutions +243217,Financial Institutions,Financial Institutions +243216,Financial Institutions,Financial Institutions +243215,Financial Institutions,Financial Institutions +243214,Financial Institutions,Financial Institutions +243213,Financial Institutions,Financial Institutions +243212,Financial Institutions,Financial Institutions +243211,Financial Institutions,Financial Institutions +243210,Financial Institutions,Financial Institutions +243209,Financial Institutions,Financial Institutions +243208,Financial Institutions,Financial Institutions +196847,Health,Health +196846,Health,Health +158271,Health,Health +158270,Health,Health +158269,Health,Health +158268,Health,Health +158267,Health,Health +158266,Health,Health +158265,Health,Health +158264,Health,Health +158262,Health,Health +158261,Health,Health +158260,Health,Health +158259,Health,Health +158258,Health,Health +158257,Health,Health +158256,Health,Health +158255,Health,Health +158254,Health,Health +158253,Health,Health +158252,Health,Health +158251,Health,Health +158250,Health,Health +158249,Health,Health +158248,Health,Health +157814,Health,Health +196845,Health,Health +196844,Health,Health +196843,Health,Health +196842,Health,Health +196841,Health,Health +196839,Health,Health +196838,Health,Health +196836,Health,Health +196834,Health,Health +166644,Health,Health +161352,Health,Health +161351,Health,Health +161350,Health,Health +161349,Health,Health +159157,Health,Health +158305,Health,Health +158304,Health,Health +158303,Health,Health +158302,Health,Health +158301,Health,Health +158300,Health,Health +158299,Health,Health +158298,Health,Health +158297,Health,Health +158296,Health,Health +158295,Health,Health +158294,Health,Health +158293,Health,Health +158292,Health,Health +158291,Health,Health +158290,Health,Health +158289,Health,Health +158288,Health,Health +158287,Health,Health +158282,Health,Health +158280,Health,Health +158279,Health,Health +158276,Health,Health +158274,Health,Health +158273,Health,Health +451208,Health,Health +246070,Health,Health +244013,Health,Health +244009,Health,Health +243307,Health,Health +243304,Health,Health +243303,Health,Health +243302,Health,Health +243301,Health,Health +243300,Health,Health +243299,Health,Health +243298,Health,Health +243297,Health,Health +243296,Health,Health +243295,Health,Health +243294,Health,Health +243293,Health,Health +243292,Health,Health +243290,Health,Health +243289,Health,Health +243217,Health,Health +243216,Health,Health +243215,Health,Health +243214,Health,Health +243213,Health,Health +243212,Health,Health +243211,Health,Health +243210,Health,Health +243209,Health,Health +243208,Health,Health +243207,Health,Health +243206,Health,Health +243205,Health,Health +243204,Health,Health +243203,Health,Health +243202,Health,Health +243200,Health,Health +243199,Health,Health +243198,Health,Health +243197,Health,Health +243196,Health,Health +243195,Health,Health +243194,Health,Health +243193,Health,Health +243192,Health,Health +243191,Health,Health +243189,Health,Health +215007,Health,Health +214987,Health,Health +209829,Health,Health +209828,Health,Health +206193,Health,Health +197142,Health,Health +197140,Health,Health +197139,Health,Health +197136,Health,Health +196882,Health,Health +196881,Health,Health +196880,Health,Health +196879,Health,Health +196878,Health,Health +196877,Health,Health +196876,Health,Health +196875,Health,Health +196874,Health,Health +196873,Health,Health +196872,Health,Health +196871,Health,Health +196870,Health,Health +196865,Health,Health +196864,Health,Health +196863,Health,Health +196862,Health,Health +196860,Health,Health +196859,Health,Health +196858,Health,Health +196856,Health,Health +196855,Health,Health +196854,Health,Health +196853,Health,Health +196852,Health,Health +196851,Health,Health +196850,Health,Health +243206,Immigration,Immigration +243205,Immigration,Immigration +206193,Immigration,Immigration +197142,Immigration,Immigration +197140,Immigration,Immigration +197139,Immigration,Immigration +197136,Immigration,Immigration +196882,Immigration,Immigration +196881,Immigration,Immigration +196880,Immigration,Immigration +196879,Immigration,Immigration +196878,Immigration,Immigration +196877,Immigration,Immigration +196876,Immigration,Immigration +196875,Immigration,Immigration +196874,Immigration,Immigration +196873,Immigration,Immigration +196872,Immigration,Immigration +196871,Immigration,Immigration +196870,Immigration,Immigration +196865,Immigration,Immigration +196864,Immigration,Immigration +196863,Immigration,Immigration +196862,Immigration,Immigration +196860,Immigration,Immigration +196859,Immigration,Immigration +196858,Immigration,Immigration +196856,Immigration,Immigration +196855,Immigration,Immigration +196854,Immigration,Immigration +196853,Immigration,Immigration +196852,Immigration,Immigration +196851,Immigration,Immigration +196850,Immigration,Immigration +196849,Immigration,Immigration +196847,Immigration,Immigration +196846,Immigration,Immigration +196845,Immigration,Immigration +196844,Immigration,Immigration +196843,Immigration,Immigration +196842,Immigration,Immigration +196841,Immigration,Immigration +196839,Immigration,Immigration +196838,Immigration,Immigration +196836,Immigration,Immigration +196834,Immigration,Immigration +161352,Immigration,Immigration +161351,Immigration,Immigration +161350,Immigration,Immigration +161349,Immigration,Immigration +244013,Immigration,Immigration +244009,Immigration,Immigration +243307,Immigration,Immigration +243304,Immigration,Immigration +243303,Immigration,Immigration +243302,Immigration,Immigration +243301,Immigration,Immigration +243300,Immigration,Immigration +243299,Immigration,Immigration +243298,Immigration,Immigration +243297,Immigration,Immigration +243296,Immigration,Immigration +243295,Immigration,Immigration +243294,Immigration,Immigration +243293,Immigration,Immigration +243292,Immigration,Immigration +243290,Immigration,Immigration +243289,Immigration,Immigration +243217,Immigration,Immigration +243216,Immigration,Immigration +243215,Immigration,Immigration +243214,Immigration,Immigration +243213,Immigration,Immigration +243212,Immigration,Immigration +243211,Immigration,Immigration +243210,Immigration,Immigration +243209,Immigration,Immigration +243208,Immigration,Immigration +243215,Industry,Industry +243214,Industry,Industry +196842,Industry,Industry +196841,Industry,Industry +196839,Industry,Industry +196838,Industry,Industry +196836,Industry,Industry +196834,Industry,Industry +243213,Industry,Industry +243212,Industry,Industry +243211,Industry,Industry +243210,Industry,Industry +243209,Industry,Industry +243208,Industry,Industry +243207,Industry,Industry +243206,Industry,Industry +243205,Industry,Industry +243204,Industry,Industry +243203,Industry,Industry +243202,Industry,Industry +243200,Industry,Industry +243199,Industry,Industry +243198,Industry,Industry +243197,Industry,Industry +243196,Industry,Industry +243195,Industry,Industry +243194,Industry,Industry +243193,Industry,Industry +243192,Industry,Industry +243191,Industry,Industry +243189,Industry,Industry +197142,Industry,Industry +197140,Industry,Industry +197139,Industry,Industry +197136,Industry,Industry +196882,Industry,Industry +196881,Industry,Industry +196880,Industry,Industry +196879,Industry,Industry +196878,Industry,Industry +196877,Industry,Industry +196876,Industry,Industry +196875,Industry,Industry +196874,Industry,Industry +196873,Industry,Industry +196872,Industry,Industry +196871,Industry,Industry +196870,Industry,Industry +196865,Industry,Industry +196864,Industry,Industry +196863,Industry,Industry +196862,Industry,Industry +196860,Industry,Industry +196859,Industry,Industry +196858,Industry,Industry +196856,Industry,Industry +196855,Industry,Industry +196854,Industry,Industry +196853,Industry,Industry +196852,Industry,Industry +196851,Industry,Industry +196850,Industry,Industry +196849,Industry,Industry +196847,Industry,Industry +196846,Industry,Industry +196845,Industry,Industry +196844,Industry,Industry +196843,Industry,Industry +244013,Industry,Industry +244009,Industry,Industry +243307,Industry,Industry +243304,Industry,Industry +243303,Industry,Industry +243302,Industry,Industry +243301,Industry,Industry +243300,Industry,Industry +243299,Industry,Industry +243298,Industry,Industry +243297,Industry,Industry +243296,Industry,Industry +243295,Industry,Industry +243294,Industry,Industry +243293,Industry,Industry +243292,Industry,Industry +243290,Industry,Industry +243289,Industry,Industry +243217,Industry,Industry +375942,Defence,Defence +375938,Defence,Defence +117115,Defence,Defence +117114,Defence,Defence +113595,Defence,Defence +101275,Defence,Defence +101268,Defence,Defence +101264,Defence,Defence +161193,Defence,Defence +156694,Defence,Defence +124763,Defence,Defence +121263,Defence,Defence +117117,Defence,Defence +117116,Defence,Defence +353466,Defence,Defence +353462,Defence,Defence +343324,Defence,Defence +353462,Government Procurement,Government Procurement +341864,Government Procurement,Government Procurement +93701,Government Procurement,Government Procurement +430401,Government Procurement,Government Procurement +375942,Government Procurement,Government Procurement +375938,Government Procurement,Government Procurement +161193,Industry,Industry +375938,Industry,Industry +124763,Industry,Industry +121263,Industry,Industry +117117,Industry,Industry +117116,Industry,Industry +117115,Industry,Industry +117114,Industry,Industry +375938,International Relations,International Relations +375942,International Trade,International Trade +375938,International Trade,International Trade +161193,International Trade,International Trade +156699,International Trade,International Trade +460068,International Trade,International Trade +460065,International Trade,International Trade +161193,Regional Development,Regional Development +386564,Energy,Energy +366337,Energy,Energy +141634,Energy,Energy +418997,Environment,Environment +418993,Environment,Environment +160881,Environment,Environment +155927,Environment,Environment +153139,Environment,Environment +94867,Environment,Environment +89681,Environment,Environment +292290,Environment,Environment +275189,Environment,Environment +261830,Environment,Environment +244155,Environment,Environment +236116,Environment,Environment +229578,Environment,Environment +229570,Environment,Environment +215589,Environment,Environment +205329,Environment,Environment +196454,Environment,Environment +191135,Environment,Environment +191134,Environment,Environment +181784,Environment,Environment +172689,Environment,Environment +414590,Environment,Environment +411104,Environment,Environment +411018,Environment,Environment +411017,Environment,Environment +411015,Environment,Environment +411014,Environment,Environment +410485,Environment,Environment +408759,Environment,Environment +406202,Environment,Environment +401821,Environment,Environment +401820,Environment,Environment +401818,Environment,Environment +401517,Environment,Environment +395132,Environment,Environment +394958,Environment,Environment +393193,Environment,Environment +393127,Environment,Environment +389806,Environment,Environment +388956,Environment,Environment +386560,Environment,Environment +384266,Environment,Environment +382978,Environment,Environment +382977,Environment,Environment +382745,Environment,Environment +379872,Environment,Environment +378470,Environment,Environment +375104,Environment,Environment +375103,Environment,Environment +375100,Environment,Environment +375064,Environment,Environment +370174,Environment,Environment +367182,Environment,Environment +364798,Environment,Environment +364796,Environment,Environment +351860,Environment,Environment +347760,Environment,Environment +333169,Environment,Environment +509440,Environment,Environment +494700,Environment,Environment +478930,Environment,Environment +471840,Environment,Environment +469403,Environment,Environment +469402,Environment,Environment +461110,Environment,Environment +459980,Environment,Environment +459088,Environment,Environment +456380,Environment,Environment +451106,Environment,Environment +450874,Environment,Environment +448928,Environment,Environment +446693,Environment,Environment +440932,Environment,Environment +440421,Environment,Environment +440420,Environment,Environment +434644,Environment,Environment +433317,Environment,Environment +450973,Forestry,Forestry +450930,Forestry,Forestry +89682,Forestry,Forestry +89680,Forestry,Forestry +89676,Forestry,Forestry +89675,Forestry,Forestry +86577,Forestry,Forestry +126837,Forestry,Forestry +126836,Forestry,Forestry +111740,Forestry,Forestry +111739,Forestry,Forestry +111738,Forestry,Forestry +111737,Forestry,Forestry +111736,Forestry,Forestry +111735,Forestry,Forestry +111734,Forestry,Forestry +110489,Forestry,Forestry +110488,Forestry,Forestry +110487,Forestry,Forestry +110486,Forestry,Forestry +110454,Forestry,Forestry +94866,Forestry,Forestry +94861,Forestry,Forestry +94860,Forestry,Forestry +94859,Forestry,Forestry +94858,Forestry,Forestry +94857,Forestry,Forestry +94856,Forestry,Forestry +191349,Forestry,Forestry +191135,Forestry,Forestry +191134,Forestry,Forestry +191133,Forestry,Forestry +191131,Forestry,Forestry +191129,Forestry,Forestry +191127,Forestry,Forestry +191126,Forestry,Forestry +191125,Forestry,Forestry +191124,Forestry,Forestry +188530,Forestry,Forestry +187694,Forestry,Forestry +187693,Forestry,Forestry +187690,Forestry,Forestry +176466,Forestry,Forestry +176465,Forestry,Forestry +176464,Forestry,Forestry +172692,Forestry,Forestry +172690,Forestry,Forestry +172688,Forestry,Forestry +171745,Forestry,Forestry +167173,Forestry,Forestry +167172,Forestry,Forestry +167159,Forestry,Forestry +167139,Forestry,Forestry +167134,Forestry,Forestry +167128,Forestry,Forestry +160882,Forestry,Forestry +160880,Forestry,Forestry +160879,Forestry,Forestry +158678,Forestry,Forestry +158489,Forestry,Forestry +158486,Forestry,Forestry +158464,Forestry,Forestry +155930,Forestry,Forestry +155928,Forestry,Forestry +151800,Forestry,Forestry +151797,Forestry,Forestry +370166,Forestry,Forestry +370069,Forestry,Forestry +370028,Forestry,Forestry +370027,Forestry,Forestry +369990,Forestry,Forestry +369646,Forestry,Forestry +368242,Forestry,Forestry +367825,Forestry,Forestry +367425,Forestry,Forestry +367182,Forestry,Forestry +367104,Forestry,Forestry +366337,Forestry,Forestry +366202,Forestry,Forestry +365042,Forestry,Forestry +357144,Forestry,Forestry +357143,Forestry,Forestry +355485,Forestry,Forestry +352484,Forestry,Forestry +351961,Forestry,Forestry +351860,Forestry,Forestry +350240,Forestry,Forestry +349877,Forestry,Forestry +349638,Forestry,Forestry +349637,Forestry,Forestry +347898,Forestry,Forestry +347759,Forestry,Forestry +344772,Forestry,Forestry +344337,Forestry,Forestry +344117,Forestry,Forestry +343237,Forestry,Forestry +342498,Forestry,Forestry +341167,Forestry,Forestry +340717,Forestry,Forestry +340338,Forestry,Forestry +339460,Forestry,Forestry +339459,Forestry,Forestry +339097,Forestry,Forestry +338328,Forestry,Forestry +336731,Forestry,Forestry +335275,Forestry,Forestry +335061,Forestry,Forestry +334070,Forestry,Forestry +334069,Forestry,Forestry +333170,Forestry,Forestry +330604,Forestry,Forestry +328970,Forestry,Forestry +328895,Forestry,Forestry +328774,Forestry,Forestry +328773,Forestry,Forestry +328771,Forestry,Forestry +326590,Forestry,Forestry +326589,Forestry,Forestry +326584,Forestry,Forestry +323231,Forestry,Forestry +322829,Forestry,Forestry +320290,Forestry,Forestry +313470,Forestry,Forestry +309369,Forestry,Forestry +297989,Forestry,Forestry +287469,Forestry,Forestry +284550,Forestry,Forestry +277009,Forestry,Forestry +275190,Forestry,Forestry +271333,Forestry,Forestry +271331,Forestry,Forestry +263331,Forestry,Forestry +254174,Forestry,Forestry +252973,Forestry,Forestry +252972,Forestry,Forestry +252971,Forestry,Forestry +252970,Forestry,Forestry +249309,Forestry,Forestry +249289,Forestry,Forestry +249285,Forestry,Forestry +249284,Forestry,Forestry +249283,Forestry,Forestry +249279,Forestry,Forestry +249278,Forestry,Forestry +249275,Forestry,Forestry +249270,Forestry,Forestry +249268,Forestry,Forestry +249260,Forestry,Forestry +244155,Forestry,Forestry +244154,Forestry,Forestry +244153,Forestry,Forestry +244152,Forestry,Forestry +244151,Forestry,Forestry +241013,Forestry,Forestry +240996,Forestry,Forestry +240994,Forestry,Forestry +236115,Forestry,Forestry +232829,Forestry,Forestry +229571,Forestry,Forestry +225411,Forestry,Forestry +225409,Forestry,Forestry +225408,Forestry,Forestry +222632,Forestry,Forestry +222631,Forestry,Forestry +222630,Forestry,Forestry +222628,Forestry,Forestry +212283,Forestry,Forestry +212280,Forestry,Forestry +212278,Forestry,Forestry +212273,Forestry,Forestry +205330,Forestry,Forestry +205328,Forestry,Forestry +205327,Forestry,Forestry +202350,Forestry,Forestry +202348,Forestry,Forestry +202347,Forestry,Forestry +202328,Forestry,Forestry +200501,Forestry,Forestry +196454,Forestry,Forestry +196453,Forestry,Forestry +195754,Forestry,Forestry +195753,Forestry,Forestry +195752,Forestry,Forestry +195751,Forestry,Forestry +195749,Forestry,Forestry +195747,Forestry,Forestry +195288,Forestry,Forestry +450929,Forestry,Forestry +450928,Forestry,Forestry +450927,Forestry,Forestry +450926,Forestry,Forestry +450874,Forestry,Forestry +450858,Forestry,Forestry +450598,Forestry,Forestry +450597,Forestry,Forestry +450596,Forestry,Forestry +449698,Forestry,Forestry +448928,Forestry,Forestry +447478,Forestry,Forestry +446698,Forestry,Forestry +446696,Forestry,Forestry +446695,Forestry,Forestry +446693,Forestry,Forestry +446690,Forestry,Forestry +444632,Forestry,Forestry +444631,Forestry,Forestry +444630,Forestry,Forestry +444629,Forestry,Forestry +444627,Forestry,Forestry +444617,Forestry,Forestry +444584,Forestry,Forestry +443334,Forestry,Forestry +443042,Forestry,Forestry +440938,Forestry,Forestry +440937,Forestry,Forestry +440935,Forestry,Forestry +440934,Forestry,Forestry +440933,Forestry,Forestry +440932,Forestry,Forestry +440765,Forestry,Forestry +440764,Forestry,Forestry +440429,Forestry,Forestry +440428,Forestry,Forestry +440427,Forestry,Forestry +440426,Forestry,Forestry +440425,Forestry,Forestry +440424,Forestry,Forestry +440423,Forestry,Forestry +440422,Forestry,Forestry +437840,Forestry,Forestry +436994,Forestry,Forestry +436993,Forestry,Forestry +436992,Forestry,Forestry +436991,Forestry,Forestry +436990,Forestry,Forestry +436989,Forestry,Forestry +436988,Forestry,Forestry +436987,Forestry,Forestry +436986,Forestry,Forestry +436985,Forestry,Forestry +436984,Forestry,Forestry +436974,Forestry,Forestry +436973,Forestry,Forestry +434646,Forestry,Forestry +434645,Forestry,Forestry +434644,Forestry,Forestry +434049,Forestry,Forestry +433343,Forestry,Forestry +433318,Forestry,Forestry +433317,Forestry,Forestry +433316,Forestry,Forestry +433315,Forestry,Forestry +433314,Forestry,Forestry +433313,Forestry,Forestry +431841,Forestry,Forestry +431837,Forestry,Forestry +431617,Forestry,Forestry +431616,Forestry,Forestry +431615,Forestry,Forestry +431415,Forestry,Forestry +430511,Forestry,Forestry +429946,Forestry,Forestry +428457,Forestry,Forestry +427532,Forestry,Forestry +427509,Forestry,Forestry +427508,Forestry,Forestry +427507,Forestry,Forestry +425103,Forestry,Forestry +425102,Forestry,Forestry +424953,Forestry,Forestry +424952,Forestry,Forestry +423655,Forestry,Forestry +423654,Forestry,Forestry +423099,Forestry,Forestry +423098,Forestry,Forestry +423097,Forestry,Forestry +423091,Forestry,Forestry +423089,Forestry,Forestry +421072,Forestry,Forestry +420964,Forestry,Forestry +420963,Forestry,Forestry +420797,Forestry,Forestry +420436,Forestry,Forestry +418997,Forestry,Forestry +418993,Forestry,Forestry +418689,Forestry,Forestry +418688,Forestry,Forestry +418633,Forestry,Forestry +418621,Forestry,Forestry +417679,Forestry,Forestry +417678,Forestry,Forestry +417544,Forestry,Forestry +415264,Forestry,Forestry +415262,Forestry,Forestry +414591,Forestry,Forestry +414554,Forestry,Forestry +414553,Forestry,Forestry +414552,Forestry,Forestry +414551,Forestry,Forestry +414549,Forestry,Forestry +414548,Forestry,Forestry +414544,Forestry,Forestry +414540,Forestry,Forestry +411104,Forestry,Forestry +411019,Forestry,Forestry +411018,Forestry,Forestry +411017,Forestry,Forestry +411016,Forestry,Forestry +411015,Forestry,Forestry +411014,Forestry,Forestry +410485,Forestry,Forestry +408759,Forestry,Forestry +408608,Forestry,Forestry +408607,Forestry,Forestry +408604,Forestry,Forestry +408603,Forestry,Forestry +408238,Forestry,Forestry +408237,Forestry,Forestry +408236,Forestry,Forestry +408235,Forestry,Forestry +407334,Forestry,Forestry +407130,Forestry,Forestry +407129,Forestry,Forestry +407128,Forestry,Forestry +406202,Forestry,Forestry +406046,Forestry,Forestry +406045,Forestry,Forestry +406024,Forestry,Forestry +405077,Forestry,Forestry +405075,Forestry,Forestry +405073,Forestry,Forestry +404501,Forestry,Forestry +404274,Forestry,Forestry +404273,Forestry,Forestry +404272,Forestry,Forestry +404271,Forestry,Forestry +402859,Forestry,Forestry +402855,Forestry,Forestry +402220,Forestry,Forestry +401820,Forestry,Forestry +401819,Forestry,Forestry +401818,Forestry,Forestry +401817,Forestry,Forestry +401815,Forestry,Forestry +401814,Forestry,Forestry +401517,Forestry,Forestry +399725,Forestry,Forestry +397381,Forestry,Forestry +397380,Forestry,Forestry +397379,Forestry,Forestry +397378,Forestry,Forestry +397376,Forestry,Forestry +397374,Forestry,Forestry +397373,Forestry,Forestry +397372,Forestry,Forestry +397371,Forestry,Forestry +395132,Forestry,Forestry +394958,Forestry,Forestry +394954,Forestry,Forestry +394949,Forestry,Forestry +394250,Forestry,Forestry +393261,Forestry,Forestry +393193,Forestry,Forestry +393127,Forestry,Forestry +388649,Forestry,Forestry +382979,Forestry,Forestry +382745,Forestry,Forestry +380250,Forestry,Forestry +378472,Forestry,Forestry +378471,Forestry,Forestry +377957,Forestry,Forestry +377916,Forestry,Forestry +375626,Forestry,Forestry +375105,Forestry,Forestry +375064,Forestry,Forestry +373481,Forestry,Forestry +372663,Forestry,Forestry +371176,Forestry,Forestry +370820,Forestry,Forestry +370771,Forestry,Forestry +370770,Forestry,Forestry +370711,Forestry,Forestry +370195,Forestry,Forestry +370174,Forestry,Forestry +543248,Forestry,Forestry +543244,Forestry,Forestry +543242,Forestry,Forestry +543240,Forestry,Forestry +543239,Forestry,Forestry +542923,Forestry,Forestry +542922,Forestry,Forestry +542921,Forestry,Forestry +540889,Forestry,Forestry +540888,Forestry,Forestry +540887,Forestry,Forestry +539534,Forestry,Forestry +539532,Forestry,Forestry +539531,Forestry,Forestry +537158,Forestry,Forestry +537155,Forestry,Forestry +537151,Forestry,Forestry +537143,Forestry,Forestry +537142,Forestry,Forestry +537140,Forestry,Forestry +534580,Forestry,Forestry +533567,Forestry,Forestry +533564,Forestry,Forestry +533563,Forestry,Forestry +533562,Forestry,Forestry +533561,Forestry,Forestry +531684,Forestry,Forestry +531022,Forestry,Forestry +530995,Forestry,Forestry +530994,Forestry,Forestry +530993,Forestry,Forestry +530992,Forestry,Forestry +530991,Forestry,Forestry +527700,Forestry,Forestry +527699,Forestry,Forestry +527698,Forestry,Forestry +527697,Forestry,Forestry +527696,Forestry,Forestry +527695,Forestry,Forestry +527694,Forestry,Forestry +524660,Forestry,Forestry +524659,Forestry,Forestry +524658,Forestry,Forestry +524657,Forestry,Forestry +524656,Forestry,Forestry +524655,Forestry,Forestry +521587,Forestry,Forestry +521139,Forestry,Forestry +521138,Forestry,Forestry +518935,Forestry,Forestry +517189,Forestry,Forestry +517187,Forestry,Forestry +517185,Forestry,Forestry +517184,Forestry,Forestry +517180,Forestry,Forestry +515249,Forestry,Forestry +514446,Forestry,Forestry +513803,Forestry,Forestry +513801,Forestry,Forestry +513800,Forestry,Forestry +512403,Forestry,Forestry +512192,Forestry,Forestry +511191,Forestry,Forestry +511182,Forestry,Forestry +511111,Forestry,Forestry +511086,Forestry,Forestry +510097,Forestry,Forestry +510093,Forestry,Forestry +510041,Forestry,Forestry +510040,Forestry,Forestry +510039,Forestry,Forestry +506890,Forestry,Forestry +506889,Forestry,Forestry +506885,Forestry,Forestry +506884,Forestry,Forestry +506883,Forestry,Forestry +506882,Forestry,Forestry +506878,Forestry,Forestry +506760,Forestry,Forestry +506759,Forestry,Forestry +506758,Forestry,Forestry +506757,Forestry,Forestry +506756,Forestry,Forestry +506753,Forestry,Forestry +506752,Forestry,Forestry +506748,Forestry,Forestry +506747,Forestry,Forestry +506746,Forestry,Forestry +506745,Forestry,Forestry +503844,Forestry,Forestry +503843,Forestry,Forestry +503842,Forestry,Forestry +503839,Forestry,Forestry +503838,Forestry,Forestry +503837,Forestry,Forestry +500882,Forestry,Forestry +500881,Forestry,Forestry +500879,Forestry,Forestry +497592,Forestry,Forestry +497590,Forestry,Forestry +497588,Forestry,Forestry +497586,Forestry,Forestry +497584,Forestry,Forestry +497582,Forestry,Forestry +497581,Forestry,Forestry +494700,Forestry,Forestry +494699,Forestry,Forestry +494698,Forestry,Forestry +494697,Forestry,Forestry +494696,Forestry,Forestry +492492,Forestry,Forestry +492487,Forestry,Forestry +492486,Forestry,Forestry +492485,Forestry,Forestry +492484,Forestry,Forestry +492483,Forestry,Forestry +489315,Forestry,Forestry +489312,Forestry,Forestry +489310,Forestry,Forestry +486495,Forestry,Forestry +486304,Forestry,Forestry +486301,Forestry,Forestry +486300,Forestry,Forestry +486298,Forestry,Forestry +486297,Forestry,Forestry +486296,Forestry,Forestry +484065,Forestry,Forestry +484063,Forestry,Forestry +484062,Forestry,Forestry +483265,Forestry,Forestry +483196,Forestry,Forestry +483193,Forestry,Forestry +483165,Forestry,Forestry +478934,Forestry,Forestry +478931,Forestry,Forestry +478930,Forestry,Forestry +478928,Forestry,Forestry +476543,Forestry,Forestry +476541,Forestry,Forestry +476540,Forestry,Forestry +476539,Forestry,Forestry +476538,Forestry,Forestry +476537,Forestry,Forestry +475112,Forestry,Forestry +475107,Forestry,Forestry +474284,Forestry,Forestry +474283,Forestry,Forestry +474282,Forestry,Forestry +474281,Forestry,Forestry +474280,Forestry,Forestry +474279,Forestry,Forestry +474278,Forestry,Forestry +474277,Forestry,Forestry +474275,Forestry,Forestry +474274,Forestry,Forestry +474273,Forestry,Forestry +474272,Forestry,Forestry +474271,Forestry,Forestry +474270,Forestry,Forestry +474269,Forestry,Forestry +474268,Forestry,Forestry +474267,Forestry,Forestry +474266,Forestry,Forestry +471848,Forestry,Forestry +471846,Forestry,Forestry +471843,Forestry,Forestry +471840,Forestry,Forestry +471838,Forestry,Forestry +471836,Forestry,Forestry +471835,Forestry,Forestry +469408,Forestry,Forestry +469406,Forestry,Forestry +469405,Forestry,Forestry +469401,Forestry,Forestry +463641,Forestry,Forestry +463640,Forestry,Forestry +463638,Forestry,Forestry +463637,Forestry,Forestry +463636,Forestry,Forestry +463634,Forestry,Forestry +463633,Forestry,Forestry +463632,Forestry,Forestry +462147,Forestry,Forestry +462146,Forestry,Forestry +461110,Forestry,Forestry +461109,Forestry,Forestry +461108,Forestry,Forestry +460350,Forestry,Forestry +460080,Forestry,Forestry +459980,Forestry,Forestry +459894,Forestry,Forestry +459893,Forestry,Forestry +459160,Forestry,Forestry +459088,Forestry,Forestry +459087,Forestry,Forestry +457963,Forestry,Forestry +456633,Forestry,Forestry +456566,Forestry,Forestry +456565,Forestry,Forestry +456531,Forestry,Forestry +456380,Forestry,Forestry +456378,Forestry,Forestry +456377,Forestry,Forestry +456376,Forestry,Forestry +454174,Forestry,Forestry +453861,Forestry,Forestry +453860,Forestry,Forestry +453858,Forestry,Forestry +453857,Forestry,Forestry +452965,Forestry,Forestry +451106,Forestry,Forestry +434646,Industry,Industry +431617,Industry,Industry +131619,Industry,Industry +86574,Industry,Industry +229576,Industry,Industry +229572,Industry,Industry +196453,Industry,Industry +195754,Industry,Industry +195749,Industry,Industry +174846,Industry,Industry +174843,Industry,Industry +172692,Industry,Industry +163289,Industry,Industry +163288,Industry,Industry +163287,Industry,Industry +163286,Industry,Industry +158467,Industry,Industry +145709,Industry,Industry +145690,Industry,Industry +136018,Industry,Industry +136014,Industry,Industry +131623,Industry,Industry +377957,Industry,Industry +377954,Industry,Industry +377953,Industry,Industry +377952,Industry,Industry +377950,Industry,Industry +377949,Industry,Industry +377947,Industry,Industry +377918,Industry,Industry +377915,Industry,Industry +377914,Industry,Industry +377913,Industry,Industry +328775,Industry,Industry +328773,Industry,Industry +323231,Industry,Industry +292289,Industry,Industry +274389,Industry,Industry +271329,Industry,Industry +269595,Industry,Industry +249280,Industry,Industry +229809,Industry,Industry +404501,Industry,Industry +402859,Industry,Industry +401825,Industry,Industry +401819,Industry,Industry +401818,Industry,Industry +401817,Industry,Industry +401814,Industry,Industry +401517,Industry,Industry +399725,Industry,Industry +399654,Industry,Industry +394250,Industry,Industry +393261,Industry,Industry +393258,Industry,Industry +393192,Industry,Industry +393190,Industry,Industry +393127,Industry,Industry +392074,Industry,Industry +390354,Industry,Industry +389809,Industry,Industry +389808,Industry,Industry +388958,Industry,Industry +388955,Industry,Industry +388954,Industry,Industry +388820,Industry,Industry +388819,Industry,Industry +388652,Industry,Industry +388648,Industry,Industry +388647,Industry,Industry +386781,Industry,Industry +386780,Industry,Industry +386779,Industry,Industry +386565,Industry,Industry +386557,Industry,Industry +386157,Industry,Industry +386155,Industry,Industry +386154,Industry,Industry +386153,Industry,Industry +386152,Industry,Industry +386151,Industry,Industry +386150,Industry,Industry +386149,Industry,Industry +386148,Industry,Industry +386141,Industry,Industry +384271,Industry,Industry +382978,Industry,Industry +382977,Industry,Industry +382746,Industry,Industry +381856,Industry,Industry +380264,Industry,Industry +379872,Industry,Industry +379871,Industry,Industry +379869,Industry,Industry +378476,Industry,Industry +378472,Industry,Industry +378470,Industry,Industry +378466,Industry,Industry +392935,Infrastructure,Infrastructure +380627,Infrastructure,Infrastructure +378476,Infrastructure,Infrastructure +378471,Infrastructure,Infrastructure +377917,Infrastructure,Infrastructure +371484,Infrastructure,Infrastructure +370210,Infrastructure,Infrastructure +347758,International Trade,International Trade +503844,International Trade,International Trade +86575,International Trade,International Trade +94865,International Trade,International Trade +167147,International Trade,International Trade +167145,International Trade,International Trade +167144,International Trade,International Trade +164925,International Trade,International Trade +195751,International Trade,International Trade +176467,International Trade,International Trade +172690,International Trade,International Trade +326592,International Trade,International Trade +326586,International Trade,International Trade +310250,International Trade,International Trade +306310,International Trade,International Trade +305669,International Trade,International Trade +304971,International Trade,International Trade +293049,International Trade,International Trade +275377,International Trade,International Trade +274470,International Trade,International Trade +249289,International Trade,International Trade +244150,International Trade,International Trade +446690,International Trade,International Trade +436984,International Trade,International Trade +436980,International Trade,International Trade +436979,International Trade,International Trade +436978,International Trade,International Trade +423089,International Trade,International Trade +417544,International Trade,International Trade +414548,International Trade,International Trade +405077,International Trade,International Trade +405075,International Trade,International Trade +405073,International Trade,International Trade +404273,International Trade,International Trade +404272,International Trade,International Trade +401818,International Trade,International Trade +401815,International Trade,International Trade +397380,International Trade,International Trade +397379,International Trade,International Trade +397378,International Trade,International Trade +397376,International Trade,International Trade +397374,International Trade,International Trade +397372,International Trade,International Trade +397371,International Trade,International Trade +394992,International Trade,International Trade +393261,International Trade,International Trade +392074,International Trade,International Trade +389807,International Trade,International Trade +388955,International Trade,International Trade +388820,International Trade,International Trade +388650,International Trade,International Trade +386559,International Trade,International Trade +386157,International Trade,International Trade +384267,International Trade,International Trade +380637,International Trade,International Trade +378466,International Trade,International Trade +377957,International Trade,International Trade +377953,International Trade,International Trade +375068,International Trade,International Trade +370656,International Trade,International Trade +370027,International Trade,International Trade +369989,International Trade,International Trade +364799,International Trade,International Trade +364798,International Trade,International Trade +357158,International Trade,International Trade +471843,Labour,Labour +431416,Labour,Labour +126839,Labour,Labour +271332,Labour,Labour +270431,Labour,Labour +270430,Labour,Labour +261949,Labour,Labour +249309,Labour,Labour +145687,Labour,Labour +271630,Labour,Labour +401432,Labour,Labour +382979,Labour,Labour +380251,Labour,Labour +377957,Labour,Labour +377913,Labour,Labour +375171,Labour,Labour +503838,Labour,Labour +486296,Labour,Labour +483196,Labour,Labour +474283,Labour,Labour +474277,Labour,Labour +474272,Taxation and Finance,Taxation and Finance +461110,Taxation and Finance,Taxation and Finance +163284,Taxation and Finance,Taxation and Finance +160884,Taxation and Finance,Taxation and Finance +160883,Taxation and Finance,Taxation and Finance +424930,Transportation,Transportation +420797,Transportation,Transportation +100194,Transportation,Transportation +89679,Transportation,Transportation +89678,Transportation,Transportation +89677,Transportation,Transportation +167137,Transportation,Transportation +167134,Transportation,Transportation +167129,Transportation,Transportation +167127,Transportation,Transportation +167125,Transportation,Transportation +167124,Transportation,Transportation +164924,Transportation,Transportation +163290,Transportation,Transportation +163285,Transportation,Transportation +158492,Transportation,Transportation +158490,Transportation,Transportation +155929,Transportation,Transportation +145721,Transportation,Transportation +145686,Transportation,Transportation +126838,Transportation,Transportation +244149,Transportation,Transportation +241029,Transportation,Transportation +241023,Transportation,Transportation +241021,Transportation,Transportation +241019,Transportation,Transportation +241016,Transportation,Transportation +241014,Transportation,Transportation +241012,Transportation,Transportation +240366,Transportation,Transportation +236114,Transportation,Transportation +236112,Transportation,Transportation +236111,Transportation,Transportation +236110,Transportation,Transportation +236109,Transportation,Transportation +232831,Transportation,Transportation +232830,Transportation,Transportation +229577,Transportation,Transportation +229575,Transportation,Transportation +229574,Transportation,Transportation +229573,Transportation,Transportation +225410,Transportation,Transportation +225407,Transportation,Transportation +222634,Transportation,Transportation +222629,Transportation,Transportation +215594,Transportation,Transportation +215593,Transportation,Transportation +215592,Transportation,Transportation +215590,Transportation,Transportation +215588,Transportation,Transportation +212281,Transportation,Transportation +202349,Transportation,Transportation +202327,Transportation,Transportation +195752,Transportation,Transportation +191424,Transportation,Transportation +191132,Transportation,Transportation +187695,Transportation,Transportation +187692,Transportation,Transportation +187689,Transportation,Transportation +181804,Transportation,Transportation +174845,Transportation,Transportation +171744,Transportation,Transportation +169926,Transportation,Transportation +169921,Transportation,Transportation +169852,Transportation,Transportation +167157,Transportation,Transportation +167155,Transportation,Transportation +167153,Transportation,Transportation +167151,Transportation,Transportation +167140,Transportation,Transportation +414554,Transportation,Transportation +414553,Transportation,Transportation +408604,Transportation,Transportation +408238,Transportation,Transportation +408236,Transportation,Transportation +405075,Transportation,Transportation +405073,Transportation,Transportation +404150,Transportation,Transportation +401816,Transportation,Transportation +392935,Transportation,Transportation +390366,Transportation,Transportation +384273,Transportation,Transportation +382983,Transportation,Transportation +380631,Transportation,Transportation +380263,Transportation,Transportation +380262,Transportation,Transportation +380257,Transportation,Transportation +379871,Transportation,Transportation +377957,Transportation,Transportation +377917,Transportation,Transportation +373365,Transportation,Transportation +370250,Transportation,Transportation +370210,Transportation,Transportation +370084,Transportation,Transportation +370062,Transportation,Transportation +365004,Transportation,Transportation +354622,Transportation,Transportation +351961,Transportation,Transportation +347939,Transportation,Transportation +339309,Transportation,Transportation +335275,Transportation,Transportation +328970,Transportation,Transportation +328771,Transportation,Transportation +323620,Transportation,Transportation +323231,Transportation,Transportation +321384,Transportation,Transportation +316673,Transportation,Transportation +306409,Transportation,Transportation +305429,Transportation,Transportation +288930,Transportation,Transportation +288929,Transportation,Transportation +271329,Transportation,Transportation +270429,Transportation,Transportation +270109,Transportation,Transportation +269149,Transportation,Transportation +263332,Transportation,Transportation +263329,Transportation,Transportation +252969,Transportation,Transportation +249282,Transportation,Transportation +244152,Transportation,Transportation +527700,Transportation,Transportation +527698,Transportation,Transportation +524660,Transportation,Transportation +521587,Transportation,Transportation +512403,Transportation,Transportation +503838,Transportation,Transportation +489315,Transportation,Transportation +483165,Transportation,Transportation +454174,Transportation,Transportation +452965,Transportation,Transportation +444584,Transportation,Transportation +440937,Transportation,Transportation +440765,Transportation,Transportation +440764,Transportation,Transportation +436977,Transportation,Transportation +436976,Transportation,Transportation +436975,Transportation,Transportation +436973,Transportation,Transportation +431416,Transportation,Transportation +430511,Transportation,Transportation +80765,Tourism,Tourism +80765,Transportation,Transportation +460406,Government Procurement,Government Procurement +514370,Government Procurement,Government Procurement +125134,Government Procurement,Government Procurement +125127,Government Procurement,Government Procurement +80820,Government Procurement,Government Procurement +324774,Government Procurement,Government Procurement +80704,Internal Trade,Internal Trade +80703,Internal Trade,Internal Trade +80718,Internal Trade,Internal Trade +80715,Internal Trade,Internal Trade +80712,Internal Trade,Internal Trade +80710,Internal Trade,Internal Trade +80704,International Trade,International Trade +80703,International Trade,International Trade +80764,International Trade,International Trade +80718,International Trade,International Trade +80715,International Trade,International Trade +80712,International Trade,International Trade +80710,International Trade,International Trade +80704,Transportation,Transportation +80703,Transportation,Transportation +80764,Transportation,Transportation +80718,Transportation,Transportation +80715,Transportation,Transportation +80710,Transportation,Transportation +529736,Employment and Training,Employment and Training +514233,Environment,Environment +538501,Government Procurement,Government Procurement +532339,Government Procurement,Government Procurement +529729,Government Procurement,Government Procurement +523068,Government Procurement,Government Procurement +517774,Government Procurement,Government Procurement +517773,Government Procurement,Government Procurement +517771,Government Procurement,Government Procurement +517765,Government Procurement,Government Procurement +514232,Government Procurement,Government Procurement +513409,Government Procurement,Government Procurement +517767,Health,Health +529720,Labour,Labour +529719,Labour,Labour +300350,Labour,Labour +523099,Labour,Labour +517774,Labour,Labour +517770,Labour,Labour +517767,Labour,Labour +513408,Labour,Labour +455314,Labour,Labour +455311,Labour,Labour +454933,Labour,Labour +408683,Labour,Labour +395240,Labour,Labour +544384,Labour,Labour +544382,Labour,Labour +544381,Labour,Labour +541970,Labour,Labour +538503,Labour,Labour +538499,Labour,Labour +535447,Labour,Labour +535440,Labour,Labour +535437,Labour,Labour +532401,Labour,Labour +532399,Labour,Labour +532398,Labour,Labour +532397,Labour,Labour +532353,Labour,Labour +532351,Labour,Labour +532350,Labour,Labour +532348,Labour,Labour +532344,Labour,Labour +532341,Labour,Labour +532340,Labour,Labour +529735,Labour,Labour +529734,Labour,Labour +529733,Labour,Labour +529731,Labour,Labour +529729,Labour,Labour +529728,Labour,Labour +529727,Labour,Labour +529726,Labour,Labour +529725,Labour,Labour +529724,Labour,Labour +529723,Labour,Labour +529722,Labour,Labour +340784,Government Procurement,Government Procurement +438653,Intellectual Property,Intellectual Property +438647,Intellectual Property,Intellectual Property +194920,Intellectual Property,Intellectual Property +194919,Intellectual Property,Intellectual Property +180419,Intellectual Property,Intellectual Property +159941,Intellectual Property,Intellectual Property +148191,Intellectual Property,Intellectual Property +148190,Intellectual Property,Intellectual Property +145938,Intellectual Property,Intellectual Property +350698,Intellectual Property,Intellectual Property +338494,Intellectual Property,Intellectual Property +331594,Intellectual Property,Intellectual Property +296691,Intellectual Property,Intellectual Property +296690,Intellectual Property,Intellectual Property +277414,Intellectual Property,Intellectual Property +277413,Intellectual Property,Intellectual Property +435419,Intellectual Property,Intellectual Property +435418,Intellectual Property,Intellectual Property +435417,Intellectual Property,Intellectual Property +435415,Intellectual Property,Intellectual Property +433341,Intellectual Property,Intellectual Property +433340,Intellectual Property,Intellectual Property +430433,Intellectual Property,Intellectual Property +430432,Intellectual Property,Intellectual Property +430429,Intellectual Property,Intellectual Property +421658,Intellectual Property,Intellectual Property +421655,Intellectual Property,Intellectual Property +421168,Intellectual Property,Intellectual Property +421150,Intellectual Property,Intellectual Property +418943,Intellectual Property,Intellectual Property +418942,Intellectual Property,Intellectual Property +418130,Intellectual Property,Intellectual Property +418127,Intellectual Property,Intellectual Property +417725,Intellectual Property,Intellectual Property +416186,Intellectual Property,Intellectual Property +416184,Intellectual Property,Intellectual Property +411560,Intellectual Property,Intellectual Property +411559,Intellectual Property,Intellectual Property +408849,Intellectual Property,Intellectual Property +406277,Intellectual Property,Intellectual Property +403217,Intellectual Property,Intellectual Property +403208,Intellectual Property,Intellectual Property +403205,Intellectual Property,Intellectual Property +403203,Intellectual Property,Intellectual Property +403202,Intellectual Property,Intellectual Property +393349,Intellectual Property,Intellectual Property +382580,Intellectual Property,Intellectual Property +382573,Intellectual Property,Intellectual Property +382569,Intellectual Property,Intellectual Property +382567,Intellectual Property,Intellectual Property +380798,Intellectual Property,Intellectual Property +380796,Intellectual Property,Intellectual Property +380795,Intellectual Property,Intellectual Property +378435,Intellectual Property,Intellectual Property +375713,Intellectual Property,Intellectual Property +374183,Intellectual Property,Intellectual Property +368300,Intellectual Property,Intellectual Property +366338,Intellectual Property,Intellectual Property +357522,Intellectual Property,Intellectual Property +357521,Intellectual Property,Intellectual Property +357520,Intellectual Property,Intellectual Property +357519,Intellectual Property,Intellectual Property +544789,Intellectual Property,Intellectual Property +539607,Intellectual Property,Intellectual Property +536043,Intellectual Property,Intellectual Property +533300,Intellectual Property,Intellectual Property +530928,Intellectual Property,Intellectual Property +527471,Intellectual Property,Intellectual Property +520464,Intellectual Property,Intellectual Property +508804,Intellectual Property,Intellectual Property +491498,Intellectual Property,Intellectual Property +487435,Intellectual Property,Intellectual Property +487432,Intellectual Property,Intellectual Property +485149,Intellectual Property,Intellectual Property +485147,Intellectual Property,Intellectual Property +485141,Intellectual Property,Intellectual Property +485138,Intellectual Property,Intellectual Property +482388,Intellectual Property,Intellectual Property +482383,Intellectual Property,Intellectual Property +482382,Intellectual Property,Intellectual Property +482370,Intellectual Property,Intellectual Property +479465,Intellectual Property,Intellectual Property +479461,Intellectual Property,Intellectual Property +478105,Intellectual Property,Intellectual Property +478103,Intellectual Property,Intellectual Property +475914,Intellectual Property,Intellectual Property +475910,Intellectual Property,Intellectual Property +475819,Intellectual Property,Intellectual Property +470867,Intellectual Property,Intellectual Property +470865,Intellectual Property,Intellectual Property +468344,Intellectual Property,Intellectual Property +468342,Intellectual Property,Intellectual Property +464921,Intellectual Property,Intellectual Property +464915,Intellectual Property,Intellectual Property +462795,Intellectual Property,Intellectual Property +457654,Intellectual Property,Intellectual Property +456029,Intellectual Property,Intellectual Property +449713,Intellectual Property,Intellectual Property +447602,Intellectual Property,Intellectual Property +447601,Intellectual Property,Intellectual Property +447600,Intellectual Property,Intellectual Property +447599,Intellectual Property,Intellectual Property +445293,Intellectual Property,Intellectual Property +445292,Intellectual Property,Intellectual Property +445291,Intellectual Property,Intellectual Property +441910,Intellectual Property,Intellectual Property +441901,Intellectual Property,Intellectual Property +441866,Intellectual Property,Intellectual Property +441862,Intellectual Property,Intellectual Property +441856,Intellectual Property,Intellectual Property +438671,Intellectual Property,Intellectual Property +468341,Health,Health +383464,Health,Health +117710,Health,Health +117709,Health,Health +100809,Health,Health +383464,Industry,Industry +468341,Industry,Industry +145952,Industry,Industry +117710,Industry,Industry +117709,Industry,Industry +392650,Industry,Industry +435060,Agriculture,Agriculture +434056,Agriculture,Agriculture +82769,Agriculture,Agriculture +146436,Agriculture,Agriculture +146434,Agriculture,Agriculture +125083,Agriculture,Agriculture +105711,Agriculture,Agriculture +105709,Agriculture,Agriculture +105706,Agriculture,Agriculture +105702,Agriculture,Agriculture +105696,Agriculture,Agriculture +100414,Agriculture,Agriculture +178264,Agriculture,Agriculture +175501,Agriculture,Agriculture +334573,Agriculture,Agriculture +334572,Agriculture,Agriculture +329209,Agriculture,Agriculture +329195,Agriculture,Agriculture +329191,Agriculture,Agriculture +329190,Agriculture,Agriculture +329189,Agriculture,Agriculture +329169,Agriculture,Agriculture +303515,Agriculture,Agriculture +303513,Agriculture,Agriculture +303510,Agriculture,Agriculture +303493,Agriculture,Agriculture +277464,Agriculture,Agriculture +277461,Agriculture,Agriculture +277458,Agriculture,Agriculture +277456,Agriculture,Agriculture +277452,Agriculture,Agriculture +277450,Agriculture,Agriculture +277448,Agriculture,Agriculture +250886,Agriculture,Agriculture +250878,Agriculture,Agriculture +250866,Agriculture,Agriculture +250860,Agriculture,Agriculture +247631,Agriculture,Agriculture +242270,Agriculture,Agriculture +222892,Agriculture,Agriculture +222890,Agriculture,Agriculture +222888,Agriculture,Agriculture +222887,Agriculture,Agriculture +427305,Agriculture,Agriculture +422853,Agriculture,Agriculture +422007,Agriculture,Agriculture +421996,Agriculture,Agriculture +414992,Agriculture,Agriculture +409704,Agriculture,Agriculture +409703,Agriculture,Agriculture +409698,Agriculture,Agriculture +409687,Agriculture,Agriculture +406329,Agriculture,Agriculture +401154,Agriculture,Agriculture +401153,Agriculture,Agriculture +401152,Agriculture,Agriculture +401151,Agriculture,Agriculture +401149,Agriculture,Agriculture +395880,Agriculture,Agriculture +390414,Agriculture,Agriculture +390413,Agriculture,Agriculture +390409,Agriculture,Agriculture +386315,Agriculture,Agriculture +377357,Agriculture,Agriculture +377352,Agriculture,Agriculture +377350,Agriculture,Agriculture +377347,Agriculture,Agriculture +377345,Agriculture,Agriculture +372919,Agriculture,Agriculture +372916,Agriculture,Agriculture +365508,Agriculture,Agriculture +365506,Agriculture,Agriculture +365504,Agriculture,Agriculture +356571,Agriculture,Agriculture +356570,Agriculture,Agriculture +356569,Agriculture,Agriculture +356567,Agriculture,Agriculture +356559,Agriculture,Agriculture +542597,Agriculture,Agriculture +541985,Agriculture,Agriculture +533672,Agriculture,Agriculture +530318,Agriculture,Agriculture +527834,Agriculture,Agriculture +527832,Agriculture,Agriculture +520291,Agriculture,Agriculture +515373,Agriculture,Agriculture +507446,Agriculture,Agriculture +504801,Agriculture,Agriculture +504787,Agriculture,Agriculture +504779,Agriculture,Agriculture +504769,Agriculture,Agriculture +504765,Agriculture,Agriculture +504756,Agriculture,Agriculture +493844,Agriculture,Agriculture +489648,Agriculture,Agriculture +485787,Agriculture,Agriculture +475123,Agriculture,Agriculture +475117,Agriculture,Agriculture +475114,Agriculture,Agriculture +475108,Agriculture,Agriculture +463660,Agriculture,Agriculture +463659,Agriculture,Agriculture +456645,Agriculture,Agriculture +451553,Agriculture,Agriculture +451552,Agriculture,Agriculture +451551,Agriculture,Agriculture +451550,Agriculture,Agriculture +448683,Agriculture,Agriculture +438753,Agriculture,Agriculture +437114,Agriculture,Agriculture +82766,Health,Health +533672,Health,Health +390409,International Trade,International Trade +386315,International Trade,International Trade +100414,International Trade,International Trade +146435,International Trade,International Trade +250886,International Trade,International Trade +250878,International Trade,International Trade +250866,International Trade,International Trade +242270,International Trade,International Trade +476253,International Trade,International Trade +444226,International Trade,International Trade +390414,International Trade,International Trade +460540,Energy,Energy +460539,Energy,Energy +85425,Energy,Energy +85422,Energy,Energy +85419,Energy,Energy +85418,Energy,Energy +82416,Energy,Energy +82415,Energy,Energy +82357,Energy,Energy +80548,Energy,Energy +77397,Energy,Energy +77389,Energy,Energy +77383,Energy,Energy +77377,Energy,Energy +77375,Energy,Energy +101123,Energy,Energy +100962,Energy,Energy +100959,Energy,Energy +100957,Energy,Energy +100954,Energy,Energy +100953,Energy,Energy +100951,Energy,Energy +100949,Energy,Energy +100948,Energy,Energy +100944,Energy,Energy +100941,Energy,Energy +100939,Energy,Energy +97056,Energy,Energy +96906,Energy,Energy +96905,Energy,Energy +96901,Energy,Energy +96899,Energy,Energy +93283,Energy,Energy +93281,Energy,Energy +93280,Energy,Energy +93276,Energy,Energy +93267,Energy,Energy +89958,Energy,Energy +89955,Energy,Energy +89953,Energy,Energy +87875,Energy,Energy +87874,Energy,Energy +87873,Energy,Energy +87870,Energy,Energy +151935,Energy,Energy +146239,Energy,Energy +146238,Energy,Energy +142551,Energy,Energy +142550,Energy,Energy +142548,Energy,Energy +142545,Energy,Energy +142543,Energy,Energy +142541,Energy,Energy +139090,Energy,Energy +139088,Energy,Energy +139087,Energy,Energy +139086,Energy,Energy +139085,Energy,Energy +139083,Energy,Energy +139082,Energy,Energy +139080,Energy,Energy +139079,Energy,Energy +139077,Energy,Energy +135902,Energy,Energy +135900,Energy,Energy +135898,Energy,Energy +135897,Energy,Energy +135896,Energy,Energy +135895,Energy,Energy +132886,Energy,Energy +132883,Energy,Energy +132881,Energy,Energy +128717,Energy,Energy +128716,Energy,Energy +128715,Energy,Energy +128714,Energy,Energy +128709,Energy,Energy +124900,Energy,Energy +124893,Energy,Energy +121018,Energy,Energy +121016,Energy,Energy +116994,Energy,Energy +114137,Energy,Energy +114135,Energy,Energy +114134,Energy,Energy +114132,Energy,Energy +114129,Energy,Energy +114127,Energy,Energy +114126,Energy,Energy +114123,Energy,Energy +114121,Energy,Energy +114117,Energy,Energy +114113,Energy,Energy +109809,Energy,Energy +109805,Energy,Energy +109802,Energy,Energy +109799,Energy,Energy +109753,Energy,Energy +109749,Energy,Energy +106360,Energy,Energy +101129,Energy,Energy +273488,Energy,Energy +273483,Energy,Energy +273475,Energy,Energy +264177,Energy,Energy +264176,Energy,Energy +254010,Energy,Energy +244975,Energy,Energy +240927,Energy,Energy +233389,Energy,Energy +217597,Energy,Energy +217592,Energy,Energy +211959,Energy,Energy +211958,Energy,Energy +211954,Energy,Energy +211952,Energy,Energy +207140,Energy,Energy +207138,Energy,Energy +207137,Energy,Energy +207135,Energy,Energy +207133,Energy,Energy +207131,Energy,Energy +207130,Energy,Energy +202291,Energy,Energy +202290,Energy,Energy +199733,Energy,Energy +199725,Energy,Energy +193268,Energy,Energy +189123,Energy,Energy +189121,Energy,Energy +189118,Energy,Energy +189103,Energy,Energy +185527,Energy,Energy +177725,Energy,Energy +177705,Energy,Energy +177704,Energy,Energy +177686,Energy,Energy +177685,Energy,Energy +177684,Energy,Energy +177665,Energy,Energy +177664,Energy,Energy +175227,Energy,Energy +175224,Energy,Energy +173128,Energy,Energy +243476,Environment,Environment +243476,Fisheries,Fisheries +171224,Energy,Energy +171224,Environment,Environment +404145,Consumer Issues,Consumer Issues +455763,Financial Institutions,Financial Institutions +440269,Industry,Industry +160348,Agriculture,Agriculture +375123,International Trade,International Trade +166166,Industry,Industry +328892,Intellectual Property,Intellectual Property +375123,International Relations,International Relations +349612,Health,Health +461340,Employment and Training,Employment and Training +495774,Energy,Energy +528243,Environment,Environment +157029,Financial Institutions,Financial Institutions +455222,Fisheries,Fisheries +475337,Health,Health +161505,Immigration,Immigration +482154,Industry,Industry +485079,International Trade,International Trade +479956,Labour,Labour +505241,Mining,Mining +461286,Taxation and Finance,Taxation and Finance +452488,Transportation,Transportation +86656,Other,Sustainable Mining +79360,Other,Natural Resources +123715,Energy,Energy +517077,Constitutional Issues,Constitutional Issues +522546,Consumer Issues,Consumer Issues +529365,Environment,Environment +286631,Financial Institutions,Financial Institutions +469346,Industry,Industry +478653,Infrastructure,Infrastructure +236432,Justice and Law Enforcement,Justice and Law Enforcement +421007,Small Business,Small Business +529360,Taxation and Finance,Taxation and Finance +94434,Transportation,Transportation +169331,International Relations,International Relations +109117,International Trade,International Trade +210494,Tourism,Tourism +247889,Transportation,Transportation +140794,Government Procurement,Government Procurement +157161,Defence,Defence +521892,Energy,Energy +533402,Environment,Environment +338080,Government Procurement,Government Procurement +351166,Health,Health +357801,Industry,Industry +249460,Infrastructure,Infrastructure +262480,Intellectual Property,Intellectual Property +477983,International Trade,International Trade +392302,Taxation and Finance,Taxation and Finance +310338,Education,Education +91798,Employment and Training,Employment and Training +91798,Regional Development,Regional Development +91798,Other,sustainable community +91798,Other,critical infrastructure +91795,Employment and Training,Employment and Training +91795,Industry,Industry +91795,Regional Development,Regional Development +219469,Agriculture,Agriculture +155211,Consumer Issues,Consumer Issues +168716,Health,Health +219470,International Trade,International Trade +119439,Taxation and Finance,Taxation and Finance +441567,Financial Institutions,Financial Institutions +541357,Justice and Law Enforcement,Justice and Law Enforcement +388263,Regional Development,Regional Development +112337,Tourism,Tourism +191164,Agriculture,Agriculture +414026,Health,Health +224900,Labour,Labour +343058,Transportation,Transportation +101065,International Trade,International Trade +100798,Energy,Energy +190859,Intellectual Property,Intellectual Property +98656,Health,Health +93536,International Trade,International Trade +146396,Taxation and Finance,Taxation and Finance +468780,Environment,Environment +437868,Forestry,Forestry +437877,Industry,Industry +193425,Intellectual Property,Intellectual Property +515190,Taxation and Finance,Taxation and Finance +504557,Transportation,Transportation +93535,Industry,Industry +331600,Industry,Industry +196879,Education,Education +243207,Financial Institutions,Financial Institutions +196849,Health,Health +243207,Immigration,Immigration +243216,Industry,Industry +341864,Defence,Defence +353466,Government Procurement,Government Procurement +113595,Industry,Industry +375942,International Relations,International Relations +459344,International Trade,International Trade +80495,Regional Development,Regional Development +386777,Energy,Energy +423089,Environment,Environment +378471,Fisheries,Fisheries +450974,Forestry,Forestry +380627,Government Procurement,Government Procurement +475112,Industry,Industry +370062,Infrastructure,Infrastructure +357157,International Trade,International Trade +474272,Labour,Labour +474277,Taxation and Finance,Taxation and Finance +427508,Transportation,Transportation +128694,Other,Climate Change +89674,Other,Resources +102380,Consumer Issues,Consumer Issues +93707,Financial Institutions,Financial Institutions +80816,Tourism,Tourism +80816,Transportation,Transportation +245458,Government Procurement,Government Procurement +80707,Internal Trade,Internal Trade +80707,International Trade,International Trade +80712,Small Business,Small Business +80707,Transportation,Transportation +408801,Employment and Training,Employment and Training +529709,Environment,Environment +544384,Government Procurement,Government Procurement +300350,Health,Health +529721,Labour,Labour +340787,Government Procurement,Government Procurement +438667,Intellectual Property,Intellectual Property +241145,Health,Health +389789,Industry,Industry +468341,International Relations,International Relations +435493,Agriculture,Agriculture +485788,Environment,Environment +82769,Health,Health +100414,Intellectual Property,Intellectual Property +390413,International Trade,International Trade +93280,Consumer Issues,Consumer Issues +460875,Energy,Energy +455979,Environment,Environment +315672,Fisheries,Fisheries +383519,Health,Health +534934,Industry,Industry +177725,Labour,Labour +517104,Taxation and Finance,Taxation and Finance +348915,Transportation,Transportation +93280,Other,Trade and Tariffs +114974,Agriculture,Agriculture +110016,Infrastructure,Infrastructure +128576,Transportation,Transportation +169332,Other,Security +386387,Consumer Issues,Consumer Issues +386388,Employment and Training,Employment and Training +188164,Environment,Environment +225528,Industry,Industry +386388,Infrastructure,Infrastructure +157571,Regional Development,Regional Development +386388,Small Business,Small Business +386388,Taxation and Finance,Taxation and Finance +386388,Tourism,Tourism +386388,Transportation,Transportation +76017,Taxation and Finance,Taxation and Finance +159557,Agriculture,Agriculture +168877,Environment,Environment +142463,International Trade,International Trade +159560,Transportation,Transportation +109995,Health,Health +171040,Energy,Energy +171039,Energy,Energy +171035,Energy,Energy +171030,Energy,Energy +171027,Energy,Energy +171023,Energy,Energy +168160,Energy,Energy +165572,Energy,Energy +165569,Energy,Energy +165567,Energy,Energy +163144,Energy,Energy +156857,Energy,Energy +154004,Energy,Energy +153358,Energy,Energy +151937,Energy,Energy +371928,Energy,Energy +371925,Energy,Energy +371923,Energy,Energy +371916,Energy,Energy +371908,Energy,Energy +371897,Energy,Energy +369463,Energy,Energy +369460,Energy,Energy +366457,Energy,Energy +366456,Energy,Energy +365218,Energy,Energy +365019,Energy,Energy +365018,Energy,Energy +359747,Energy,Energy +359734,Energy,Energy +359731,Energy,Energy +357988,Energy,Energy +353759,Energy,Energy +351206,Energy,Energy +351203,Energy,Energy +351201,Energy,Energy +351198,Energy,Energy +351196,Energy,Energy +351182,Energy,Energy +351174,Energy,Energy +351173,Energy,Energy +351172,Energy,Energy +348919,Energy,Energy +347598,Energy,Energy +347594,Energy,Energy +347183,Energy,Energy +347180,Energy,Energy +343828,Energy,Energy +343826,Energy,Energy +343823,Energy,Energy +343820,Energy,Energy +343814,Energy,Energy +341921,Energy,Energy +341917,Energy,Energy +341913,Energy,Energy +341910,Energy,Energy +341908,Energy,Energy +341906,Energy,Energy +341898,Energy,Energy +341896,Energy,Energy +341892,Energy,Energy +341874,Energy,Energy +338094,Energy,Energy +338092,Energy,Energy +338090,Energy,Energy +338088,Energy,Energy +337734,Energy,Energy +337732,Energy,Energy +337731,Energy,Energy +337730,Energy,Energy +337719,Energy,Energy +333029,Energy,Energy +331107,Energy,Energy +331106,Energy,Energy +331105,Energy,Energy +329905,Energy,Energy +329899,Energy,Energy +326757,Energy,Energy +326756,Energy,Energy +323966,Energy,Energy +321331,Energy,Energy +321330,Energy,Energy +321329,Energy,Energy +318903,Energy,Energy +318901,Energy,Energy +318895,Energy,Energy +315671,Energy,Energy +315670,Energy,Energy +315669,Energy,Energy +313112,Energy,Energy +310118,Energy,Energy +310110,Energy,Energy +310107,Energy,Energy +310100,Energy,Energy +304231,Energy,Energy +297551,Energy,Energy +297550,Energy,Energy +297549,Energy,Energy +291172,Energy,Energy +281870,Energy,Energy +460052,Energy,Energy +460051,Energy,Energy +460050,Energy,Energy +459721,Energy,Energy +458343,Energy,Energy +455988,Energy,Energy +455982,Energy,Energy +455979,Energy,Energy +455964,Energy,Energy +455925,Energy,Energy +455921,Energy,Energy +455915,Energy,Energy +455912,Energy,Energy +452132,Energy,Energy +449861,Energy,Energy +447614,Energy,Energy +447142,Energy,Energy +447141,Energy,Energy +447138,Energy,Energy +447137,Energy,Energy +445365,Energy,Energy +443459,Energy,Energy +443458,Energy,Energy +443457,Energy,Energy +442707,Energy,Energy +442706,Energy,Energy +442705,Energy,Energy +442704,Energy,Energy +442703,Energy,Energy +442702,Energy,Energy +442103,Energy,Energy +442102,Energy,Energy +442101,Energy,Energy +442100,Energy,Energy +442099,Energy,Energy +442098,Energy,Energy +442097,Energy,Energy +439346,Energy,Energy +439344,Energy,Energy +439342,Energy,Energy +439340,Energy,Energy +439337,Energy,Energy +439333,Energy,Energy +439331,Energy,Energy +439329,Energy,Energy +439324,Energy,Energy +439319,Energy,Energy +435448,Energy,Energy +435447,Energy,Energy +435446,Energy,Energy +435445,Energy,Energy +433851,Energy,Energy +433850,Energy,Energy +433849,Energy,Energy +433848,Energy,Energy +432834,Energy,Energy +432384,Energy,Energy +432383,Energy,Energy +432382,Energy,Energy +431117,Energy,Energy +431115,Energy,Energy +431113,Energy,Energy +431112,Energy,Energy +428224,Energy,Energy +428223,Energy,Energy +428222,Energy,Energy +428221,Energy,Energy +428220,Energy,Energy +428219,Energy,Energy +428218,Energy,Energy +428217,Energy,Energy +428216,Energy,Energy +428215,Energy,Energy +428214,Energy,Energy +428213,Energy,Energy +428212,Energy,Energy +428211,Energy,Energy +428210,Energy,Energy +426768,Energy,Energy +426767,Energy,Energy +424306,Energy,Energy +424305,Energy,Energy +424304,Energy,Energy +424302,Energy,Energy +424301,Energy,Energy +424300,Energy,Energy +424299,Energy,Energy +424298,Energy,Energy +424297,Energy,Energy +424296,Energy,Energy +424295,Energy,Energy +422455,Energy,Energy +422449,Energy,Energy +422447,Energy,Energy +422445,Energy,Energy +415293,Energy,Energy +415292,Energy,Energy +415291,Energy,Energy +415290,Energy,Energy +415284,Energy,Energy +415283,Energy,Energy +415281,Energy,Energy +415280,Energy,Energy +409640,Energy,Energy +409639,Energy,Energy +409638,Energy,Energy +409635,Energy,Energy +407852,Energy,Energy +406651,Energy,Energy +406650,Energy,Energy +406649,Energy,Energy +404951,Energy,Energy +403417,Energy,Energy +403415,Energy,Energy +403413,Energy,Energy +403411,Energy,Energy +403408,Energy,Energy +403406,Energy,Energy +399092,Energy,Energy +399091,Energy,Energy +399090,Energy,Energy +399088,Energy,Energy +396626,Energy,Energy +396616,Energy,Energy +396606,Energy,Energy +396599,Energy,Energy +396592,Energy,Energy +396587,Energy,Energy +393953,Energy,Energy +393949,Energy,Energy +392387,Energy,Energy +392386,Energy,Energy +392385,Energy,Energy +392384,Energy,Energy +390047,Energy,Energy +390046,Energy,Energy +390045,Energy,Energy +390043,Energy,Energy +387419,Energy,Energy +387418,Energy,Energy +387417,Energy,Energy +387416,Energy,Energy +387415,Energy,Energy +387414,Energy,Energy +387413,Energy,Energy +387411,Energy,Energy +387410,Energy,Energy +387409,Energy,Energy +385294,Energy,Energy +385292,Energy,Energy +383478,Energy,Energy +382161,Energy,Energy +382160,Energy,Energy +382158,Energy,Energy +382157,Energy,Energy +382156,Energy,Energy +381109,Energy,Energy +378993,Energy,Energy +375986,Energy,Energy +375985,Energy,Energy +375984,Energy,Energy +375983,Energy,Energy +375981,Energy,Energy +375980,Energy,Energy +375979,Energy,Energy +375978,Energy,Energy +374484,Energy,Energy +374481,Energy,Energy +372013,Energy,Energy +371989,Energy,Energy +371987,Energy,Energy +371968,Energy,Energy +371966,Energy,Energy +371964,Energy,Energy +371963,Energy,Energy +371962,Energy,Energy +371940,Energy,Energy +371937,Energy,Energy +371936,Energy,Energy +371935,Energy,Energy +371932,Energy,Energy +544100,Energy,Energy +541806,Energy,Energy +541792,Energy,Energy +540212,Energy,Energy +540211,Energy,Energy +538023,Energy,Energy +538022,Energy,Energy +538017,Energy,Energy +534944,Energy,Energy +534943,Energy,Energy +534941,Energy,Energy +534940,Energy,Energy +534938,Energy,Energy +534937,Energy,Energy +534936,Energy,Energy +534930,Energy,Energy +534929,Energy,Energy +534928,Energy,Energy +534927,Energy,Energy +532273,Energy,Energy +532269,Energy,Energy +529718,Energy,Energy +529717,Energy,Energy +529716,Energy,Energy +529715,Energy,Energy +529714,Energy,Energy +529712,Energy,Energy +529711,Energy,Energy +526192,Energy,Energy +525991,Energy,Energy +525990,Energy,Energy +525989,Energy,Energy +522386,Energy,Energy +522385,Energy,Energy +522382,Energy,Energy +522381,Energy,Energy +519943,Energy,Energy +519942,Energy,Energy +519941,Energy,Energy +519938,Energy,Energy +519934,Energy,Energy +519931,Energy,Energy +519929,Energy,Energy +519925,Energy,Energy +519919,Energy,Energy +518048,Energy,Energy +517110,Energy,Energy +517109,Energy,Energy +517108,Energy,Energy +517107,Energy,Energy +517106,Energy,Energy +517104,Energy,Energy +517100,Energy,Energy +517099,Energy,Energy +513053,Energy,Energy +513052,Energy,Energy +513051,Energy,Energy +513050,Energy,Energy +513049,Energy,Energy +510672,Energy,Energy +510670,Energy,Energy +510254,Energy,Energy +507903,Energy,Energy +507725,Energy,Energy +507724,Energy,Energy +504901,Energy,Energy +501631,Energy,Energy +501630,Energy,Energy +501629,Energy,Energy +501627,Energy,Energy +499019,Energy,Energy +499018,Energy,Energy +499017,Energy,Energy +498631,Energy,Energy +498628,Energy,Energy +498627,Energy,Energy +493619,Energy,Energy +493616,Energy,Energy +493608,Energy,Energy +493286,Energy,Energy +493285,Energy,Energy +493284,Energy,Energy +491238,Energy,Energy +491236,Energy,Energy +491230,Energy,Energy +491228,Energy,Energy +491227,Energy,Energy +491226,Energy,Energy +487053,Energy,Energy +487051,Energy,Energy +487047,Energy,Energy +487041,Energy,Energy +484394,Energy,Energy +484391,Energy,Energy +484389,Energy,Energy +481950,Energy,Energy +481949,Energy,Energy +481948,Energy,Energy +481947,Energy,Energy +481946,Energy,Energy +481945,Energy,Energy +481944,Energy,Energy +481943,Energy,Energy +481942,Energy,Energy +481941,Energy,Energy +481940,Energy,Energy +480264,Energy,Energy +479352,Energy,Energy +475165,Energy,Energy +473218,Energy,Energy +473217,Energy,Energy +473216,Energy,Energy +473214,Energy,Energy +473213,Energy,Energy +473210,Energy,Energy +473207,Energy,Energy +471034,Energy,Energy +471031,Energy,Energy +471030,Energy,Energy +471028,Energy,Energy +471021,Energy,Energy +471019,Energy,Energy +468019,Energy,Energy +467832,Energy,Energy +467830,Energy,Energy +467827,Energy,Energy +467825,Energy,Energy +467822,Energy,Energy +464599,Energy,Energy +462378,Energy,Energy +462377,Energy,Energy +461767,Energy,Energy +461766,Energy,Energy +461765,Energy,Energy +455977,Environment,Environment +455964,Environment,Environment +93283,Environment,Environment +93280,Environment,Environment +93278,Environment,Environment +93265,Environment,Environment +89948,Environment,Environment +77389,Environment,Environment +77375,Environment,Environment +116997,Environment,Environment +114129,Environment,Environment +114127,Environment,Environment +114126,Environment,Environment +114123,Environment,Environment +114121,Environment,Environment +114117,Environment,Environment +114113,Environment,Environment +109799,Environment,Environment +109753,Environment,Environment +106360,Environment,Environment +101129,Environment,Environment +101123,Environment,Environment +100962,Environment,Environment +100961,Environment,Environment +100959,Environment,Environment +100958,Environment,Environment +100953,Environment,Environment +100951,Environment,Environment +100949,Environment,Environment +100948,Environment,Environment +100944,Environment,Environment +100941,Environment,Environment +100939,Environment,Environment +96908,Environment,Environment +168160,Environment,Environment +165567,Environment,Environment +159261,Environment,Environment +156860,Environment,Environment +156857,Environment,Environment +151937,Environment,Environment +151935,Environment,Environment +146239,Environment,Environment +142544,Environment,Environment +142543,Environment,Environment +121015,Environment,Environment +366456,Environment,Environment +365019,Environment,Environment +365018,Environment,Environment +359731,Environment,Environment +357988,Environment,Environment +351196,Environment,Environment +351176,Environment,Environment +351173,Environment,Environment +348919,Environment,Environment +347594,Environment,Environment +347180,Environment,Environment +343828,Environment,Environment +341917,Environment,Environment +341913,Environment,Environment +341910,Environment,Environment +341908,Environment,Environment +341906,Environment,Environment +341898,Environment,Environment +341896,Environment,Environment +341892,Environment,Environment +341874,Environment,Environment +338088,Environment,Environment +329905,Environment,Environment +321330,Environment,Environment +315673,Environment,Environment +315669,Environment,Environment +310116,Environment,Environment +310110,Environment,Environment +291172,Environment,Environment +286881,Environment,Environment +277206,Environment,Environment +273484,Environment,Environment +273483,Environment,Environment +269229,Environment,Environment +233400,Environment,Environment +233389,Environment,Environment +226638,Environment,Environment +223390,Environment,Environment +223388,Environment,Environment +217599,Environment,Environment +211961,Environment,Environment +207133,Environment,Environment +207130,Environment,Environment +199725,Environment,Environment +189124,Environment,Environment +189123,Environment,Environment +189121,Environment,Environment +189118,Environment,Environment +189103,Environment,Environment +177725,Environment,Environment +177705,Environment,Environment +177684,Environment,Environment +177665,Environment,Environment +177664,Environment,Environment +175222,Environment,Environment +170799,Environment,Environment +455925,Environment,Environment +455915,Environment,Environment +452129,Environment,Environment +452128,Environment,Environment +452127,Environment,Environment +452125,Environment,Environment +452123,Environment,Environment +449863,Environment,Environment +449862,Environment,Environment +447141,Environment,Environment +447138,Environment,Environment +447137,Environment,Environment +445365,Environment,Environment +443459,Environment,Environment +443458,Environment,Environment +442103,Environment,Environment +439346,Environment,Environment +439333,Environment,Environment +439332,Environment,Environment +439324,Environment,Environment +435448,Environment,Environment +435446,Environment,Environment +432834,Environment,Environment +432384,Environment,Environment +432383,Environment,Environment +432382,Environment,Environment +431115,Environment,Environment +431113,Environment,Environment +431112,Environment,Environment +428224,Environment,Environment +428223,Environment,Environment +428222,Environment,Environment +428221,Environment,Environment +428220,Environment,Environment +428219,Environment,Environment +428218,Environment,Environment +428217,Environment,Environment +428216,Environment,Environment +428215,Environment,Environment +428214,Environment,Environment +428213,Environment,Environment +428212,Environment,Environment +428209,Environment,Environment +426772,Environment,Environment +426771,Environment,Environment +426769,Environment,Environment +426766,Environment,Environment +426765,Environment,Environment +424305,Environment,Environment +424304,Environment,Environment +424302,Environment,Environment +424301,Environment,Environment +424300,Environment,Environment +424299,Environment,Environment +424298,Environment,Environment +424296,Environment,Environment +424295,Environment,Environment +422455,Environment,Environment +422453,Environment,Environment +422451,Environment,Environment +422447,Environment,Environment +422445,Environment,Environment +422440,Environment,Environment +415293,Environment,Environment +415291,Environment,Environment +415290,Environment,Environment +415284,Environment,Environment +415283,Environment,Environment +415281,Environment,Environment +415280,Environment,Environment +409635,Environment,Environment +407852,Environment,Environment +407849,Environment,Environment +406651,Environment,Environment +406650,Environment,Environment +406649,Environment,Environment +403417,Environment,Environment +403415,Environment,Environment +403413,Environment,Environment +403411,Environment,Environment +403408,Environment,Environment +403406,Environment,Environment +403404,Environment,Environment +399093,Environment,Environment +399090,Environment,Environment +396626,Environment,Environment +392387,Environment,Environment +392386,Environment,Environment +392385,Environment,Environment +392384,Environment,Environment +392383,Environment,Environment +390047,Environment,Environment +390046,Environment,Environment +390045,Environment,Environment +390043,Environment,Environment +388527,Environment,Environment +388526,Environment,Environment +387413,Environment,Environment +387411,Environment,Environment +385292,Environment,Environment +383481,Environment,Environment +383480,Environment,Environment +383479,Environment,Environment +382160,Environment,Environment +382158,Environment,Environment +382157,Environment,Environment +382156,Environment,Environment +381109,Environment,Environment +375979,Environment,Environment +374481,Environment,Environment +366457,Environment,Environment +544100,Environment,Environment +541806,Environment,Environment +540212,Environment,Environment +540211,Environment,Environment +538023,Environment,Environment +538022,Environment,Environment +538014,Environment,Environment +534941,Environment,Environment +534940,Environment,Environment +534930,Environment,Environment +534929,Environment,Environment +534928,Environment,Environment +534927,Environment,Environment +529717,Environment,Environment +529716,Environment,Environment +529715,Environment,Environment +529714,Environment,Environment +529712,Environment,Environment +529711,Environment,Environment +525991,Environment,Environment +525989,Environment,Environment +522381,Environment,Environment +519943,Environment,Environment +519942,Environment,Environment +518048,Environment,Environment +517110,Environment,Environment +517109,Environment,Environment +517108,Environment,Environment +517107,Environment,Environment +517106,Environment,Environment +513053,Environment,Environment +513052,Environment,Environment +513051,Environment,Environment +513050,Environment,Environment +513049,Environment,Environment +510672,Environment,Environment +510670,Environment,Environment +507903,Environment,Environment +507725,Environment,Environment +507724,Environment,Environment +504901,Environment,Environment +501632,Environment,Environment +501629,Environment,Environment +501627,Environment,Environment +499019,Environment,Environment +499018,Environment,Environment +499017,Environment,Environment +498630,Environment,Environment +498629,Environment,Environment +498628,Environment,Environment +493619,Environment,Environment +493616,Environment,Environment +493608,Environment,Environment +493286,Environment,Environment +491236,Environment,Environment +491235,Environment,Environment +491232,Environment,Environment +491227,Environment,Environment +487054,Environment,Environment +487049,Environment,Environment +487046,Environment,Environment +487045,Environment,Environment +487044,Environment,Environment +487043,Environment,Environment +487042,Environment,Environment +484394,Environment,Environment +484393,Environment,Environment +484389,Environment,Environment +481942,Environment,Environment +481941,Environment,Environment +481940,Environment,Environment +480264,Environment,Environment +479351,Environment,Environment +475165,Environment,Environment +473218,Environment,Environment +473217,Environment,Environment +473216,Environment,Environment +473213,Environment,Environment +471034,Environment,Environment +471031,Environment,Environment +467830,Environment,Environment +467827,Environment,Environment +467825,Environment,Environment +467822,Environment,Environment +464601,Environment,Environment +464600,Environment,Environment +462378,Environment,Environment +461767,Environment,Environment +461766,Environment,Environment +460875,Environment,Environment +460540,Environment,Environment +460052,Environment,Environment +460051,Environment,Environment +460050,Environment,Environment +459721,Environment,Environment +457386,Environment,Environment +455984,Environment,Environment +534932,Industry,Industry +534931,Industry,Industry +93283,Industry,Industry +93281,Industry,Industry +93267,Industry,Industry +89958,Industry,Industry +89955,Industry,Industry +87875,Industry,Industry +85425,Industry,Industry +85422,Industry,Industry +114127,Industry,Industry +109809,Industry,Industry +100962,Industry,Industry +100959,Industry,Industry +100957,Industry,Industry +96905,Industry,Industry +96899,Industry,Industry +199725,Industry,Industry +189103,Industry,Industry +177725,Industry,Industry +177705,Industry,Industry +159260,Industry,Industry +343823,Industry,Industry +498631,Industry,Industry +498630,Industry,Industry +534935,Industry,Industry +146240,Labour,Labour +233389,Labour,Labour +199734,Labour,Labour +517100,Taxation and Finance,Taxation and Finance +517099,Taxation and Finance,Taxation and Finance +96899,Taxation and Finance,Taxation and Finance +93283,Taxation and Finance,Taxation and Finance +93281,Taxation and Finance,Taxation and Finance +93280,Taxation and Finance,Taxation and Finance +93267,Taxation and Finance,Taxation and Finance +89958,Taxation and Finance,Taxation and Finance +89955,Taxation and Finance,Taxation and Finance +87875,Taxation and Finance,Taxation and Finance +244970,Taxation and Finance,Taxation and Finance +151933,Taxation and Finance,Taxation and Finance +132881,Taxation and Finance,Taxation and Finance +114113,Taxation and Finance,Taxation and Finance +109809,Taxation and Finance,Taxation and Finance +100962,Taxation and Finance,Taxation and Finance +100959,Taxation and Finance,Taxation and Finance +100957,Taxation and Finance,Taxation and Finance +96905,Taxation and Finance,Taxation and Finance +375979,Taxation and Finance,Taxation and Finance +351174,Taxation and Finance,Taxation and Finance +347591,Taxation and Finance,Taxation and Finance +347183,Taxation and Finance,Taxation and Finance +400687,Taxation and Finance,Taxation and Finance +534944,Taxation and Finance,Taxation and Finance +534943,Taxation and Finance,Taxation and Finance +519941,Taxation and Finance,Taxation and Finance +519919,Taxation and Finance,Taxation and Finance +343820,Transportation,Transportation +387410,Transportation,Transportation +96901,Transportation,Transportation +93283,Transportation,Transportation +87874,Transportation,Transportation +87873,Transportation,Transportation +87870,Transportation,Transportation +177664,Transportation,Transportation +151935,Transportation,Transportation +244970,Transportation,Transportation +371940,Transportation,Transportation +351184,Transportation,Transportation +348917,Transportation,Transportation +85422,Other,Trade and Tariffs +233694,Agriculture,Agriculture +128576,Other,Security +386386,Consumer Issues,Consumer Issues +440840,Consumer Issues,Consumer Issues +337410,Consumer Issues,Consumer Issues +386388,Consumer Issues,Consumer Issues +386387,Employment and Training,Employment and Training +175725,Environment,Environment +352143,Environment,Environment +98815,Environment,Environment +188164,Industry,Industry +175725,Industry,Industry +148838,Industry,Industry +175724,Industry,Industry +157572,Industry,Industry +157571,Industry,Industry +386388,Industry,Industry +386387,Industry,Industry +386386,Industry,Industry +306370,Industry,Industry +306369,Industry,Industry +386387,Infrastructure,Infrastructure +386386,Infrastructure,Infrastructure +225528,Infrastructure,Infrastructure +352143,Infrastructure,Infrastructure +306370,Infrastructure,Infrastructure +386388,Regional Development,Regional Development +440840,Regional Development,Regional Development +386387,Small Business,Small Business +386386,Small Business,Small Business +98815,Small Business,Small Business +337410,Small Business,Small Business +440840,Small Business,Small Business +386387,Taxation and Finance,Taxation and Finance +440840,Taxation and Finance,Taxation and Finance +98815,Taxation and Finance,Taxation and Finance +306370,Taxation and Finance,Taxation and Finance +306369,Taxation and Finance,Taxation and Finance +386387,Tourism,Tourism +386386,Tourism,Tourism +98815,Tourism,Tourism +337410,Tourism,Tourism +275431,Tourism,Tourism +225528,Tourism,Tourism +188164,Tourism,Tourism +175724,Tourism,Tourism +386387,Transportation,Transportation +386386,Transportation,Transportation +98815,Transportation,Transportation +225528,Transportation,Transportation +188164,Transportation,Transportation +175725,Transportation,Transportation +175724,Transportation,Transportation +157572,Transportation,Transportation +157571,Transportation,Transportation +352143,Transportation,Transportation +337410,Transportation,Transportation +306370,Transportation,Transportation +306369,Transportation,Transportation +275431,Transportation,Transportation +245573,Agriculture,Agriculture +241452,Agriculture,Agriculture +97518,Agriculture,Agriculture +97516,Agriculture,Agriculture +85378,Agriculture,Agriculture +76071,Agriculture,Agriculture +76070,Agriculture,Agriculture +153448,Agriculture,Agriculture +148141,Agriculture,Agriculture +142463,Agriculture,Agriculture +142462,Agriculture,Agriculture +129283,Agriculture,Agriculture +117622,Agriculture,Agriculture +233783,Agriculture,Agriculture +223510,Agriculture,Agriculture +212451,Agriculture,Agriculture +196094,Agriculture,Agriculture +196093,Agriculture,Agriculture +168882,Agriculture,Agriculture +168879,Agriculture,Agriculture +168877,Agriculture,Agriculture +159560,Agriculture,Agriculture +159559,Agriculture,Agriculture +142462,International Trade,International Trade +129283,International Trade,International Trade +85378,International Trade,International Trade +76071,International Trade,International Trade +168877,International Trade,International Trade +153448,International Trade,International Trade +159559,Transportation,Transportation +159557,Transportation,Transportation +495606,Industry,Industry +495605,Industry,Industry +359245,Industry,Industry +340377,Industry,Industry +333234,Industry,Industry +333233,Industry,Industry +331253,Industry,Industry +330710,Industry,Industry +330709,Industry,Industry +500089,Industry,Industry +497308,Industry,Industry +497307,Industry,Industry +497306,Industry,Industry +299171,Intellectual Property,Intellectual Property +291970,Intellectual Property,Intellectual Property +104796,Intellectual Property,Intellectual Property +100926,Intellectual Property,Intellectual Property +175069,Intellectual Property,Intellectual Property +163534,Intellectual Property,Intellectual Property +158694,Intellectual Property,Intellectual Property +158693,Intellectual Property,Intellectual Property +158692,Intellectual Property,Intellectual Property +158691,Intellectual Property,Intellectual Property +158690,Intellectual Property,Intellectual Property +158689,Intellectual Property,Intellectual Property +158688,Intellectual Property,Intellectual Property +152166,Intellectual Property,Intellectual Property +151505,Intellectual Property,Intellectual Property +150124,Intellectual Property,Intellectual Property +150123,Intellectual Property,Intellectual Property +150122,Intellectual Property,Intellectual Property +148938,Intellectual Property,Intellectual Property +148937,Intellectual Property,Intellectual Property +148936,Intellectual Property,Intellectual Property +141777,Intellectual Property,Intellectual Property +141775,Intellectual Property,Intellectual Property +134834,Intellectual Property,Intellectual Property +231570,Intellectual Property,Intellectual Property +214027,Intellectual Property,Intellectual Property +214007,Intellectual Property,Intellectual Property +206489,Intellectual Property,Intellectual Property +206488,Intellectual Property,Intellectual Property +199585,Intellectual Property,Intellectual Property +199583,Intellectual Property,Intellectual Property +199580,Intellectual Property,Intellectual Property +199577,Intellectual Property,Intellectual Property +191388,Intellectual Property,Intellectual Property +191387,Intellectual Property,Intellectual Property +191386,Intellectual Property,Intellectual Property +191385,Intellectual Property,Intellectual Property +191384,Intellectual Property,Intellectual Property +182869,Intellectual Property,Intellectual Property +182868,Intellectual Property,Intellectual Property +428407,Intellectual Property,Intellectual Property +428400,Intellectual Property,Intellectual Property +428395,Intellectual Property,Intellectual Property +428391,Intellectual Property,Intellectual Property +422821,Intellectual Property,Intellectual Property +422818,Intellectual Property,Intellectual Property +404845,Intellectual Property,Intellectual Property +401388,Intellectual Property,Intellectual Property +384313,Intellectual Property,Intellectual Property +384311,Intellectual Property,Intellectual Property +384310,Intellectual Property,Intellectual Property +382867,Intellectual Property,Intellectual Property +382866,Intellectual Property,Intellectual Property +382142,Intellectual Property,Intellectual Property +380298,Intellectual Property,Intellectual Property +378390,Intellectual Property,Intellectual Property +377658,Intellectual Property,Intellectual Property +377657,Intellectual Property,Intellectual Property +377656,Intellectual Property,Intellectual Property +377655,Intellectual Property,Intellectual Property +375813,Intellectual Property,Intellectual Property +371579,Intellectual Property,Intellectual Property +364506,Intellectual Property,Intellectual Property +401387,International Trade,International Trade +486299,Taxation and Finance,Taxation and Finance +473004,Taxation and Finance,Taxation and Finance +456364,Taxation and Finance,Taxation and Finance +456363,Taxation and Finance,Taxation and Finance +455776,Taxation and Finance,Taxation and Finance +455773,Taxation and Finance,Taxation and Finance +454636,Taxation and Finance,Taxation and Finance +454635,Taxation and Finance,Taxation and Finance +434282,Taxation and Finance,Taxation and Finance +434281,Taxation and Finance,Taxation and Finance +414411,Taxation and Finance,Taxation and Finance +402278,Taxation and Finance,Taxation and Finance +401388,Taxation and Finance,Taxation and Finance +400356,Consumer Issues,Consumer Issues +400355,Consumer Issues,Consumer Issues +131114,Consumer Issues,Consumer Issues +108677,Consumer Issues,Consumer Issues +335939,Consumer Issues,Consumer Issues +303511,Consumer Issues,Consumer Issues +269584,Consumer Issues,Consumer Issues +264380,Consumer Issues,Consumer Issues +264375,Consumer Issues,Consumer Issues +385044,Consumer Issues,Consumer Issues +383841,Consumer Issues,Consumer Issues +383688,Consumer Issues,Consumer Issues +374222,Consumer Issues,Consumer Issues +374221,Consumer Issues,Consumer Issues +374219,Consumer Issues,Consumer Issues +338743,Consumer Issues,Consumer Issues +473531,Consumer Issues,Consumer Issues +468372,Consumer Issues,Consumer Issues +464373,Consumer Issues,Consumer Issues +464368,Consumer Issues,Consumer Issues +455827,Consumer Issues,Consumer Issues +455821,Consumer Issues,Consumer Issues +452680,Consumer Issues,Consumer Issues +452082,Consumer Issues,Consumer Issues +452080,Consumer Issues,Consumer Issues +452079,Consumer Issues,Consumer Issues +452077,Consumer Issues,Consumer Issues +452075,Consumer Issues,Consumer Issues +452074,Consumer Issues,Consumer Issues +452070,Consumer Issues,Consumer Issues +452068,Consumer Issues,Consumer Issues +452066,Consumer Issues,Consumer Issues +452064,Consumer Issues,Consumer Issues +452063,Consumer Issues,Consumer Issues +452061,Consumer Issues,Consumer Issues +452059,Consumer Issues,Consumer Issues +452044,Consumer Issues,Consumer Issues +449032,Consumer Issues,Consumer Issues +449031,Consumer Issues,Consumer Issues +448982,Consumer Issues,Consumer Issues +448981,Consumer Issues,Consumer Issues +448103,Consumer Issues,Consumer Issues +448102,Consumer Issues,Consumer Issues +448100,Consumer Issues,Consumer Issues +448099,Consumer Issues,Consumer Issues +448098,Consumer Issues,Consumer Issues +448095,Consumer Issues,Consumer Issues +448094,Consumer Issues,Consumer Issues +448092,Consumer Issues,Consumer Issues +448091,Consumer Issues,Consumer Issues +448089,Consumer Issues,Consumer Issues +448088,Consumer Issues,Consumer Issues +448087,Consumer Issues,Consumer Issues +448085,Consumer Issues,Consumer Issues +448083,Consumer Issues,Consumer Issues +448072,Consumer Issues,Consumer Issues +448062,Consumer Issues,Consumer Issues +448043,Consumer Issues,Consumer Issues +448035,Consumer Issues,Consumer Issues +439198,Consumer Issues,Consumer Issues +439192,Consumer Issues,Consumer Issues +439177,Consumer Issues,Consumer Issues +439173,Consumer Issues,Consumer Issues +425972,Consumer Issues,Consumer Issues +424214,Consumer Issues,Consumer Issues +424212,Consumer Issues,Consumer Issues +424146,Consumer Issues,Consumer Issues +424144,Consumer Issues,Consumer Issues +424141,Consumer Issues,Consumer Issues +422074,Consumer Issues,Consumer Issues +422073,Consumer Issues,Consumer Issues +422072,Consumer Issues,Consumer Issues +422071,Consumer Issues,Consumer Issues +422070,Consumer Issues,Consumer Issues +422069,Consumer Issues,Consumer Issues +419914,Consumer Issues,Consumer Issues +418098,Consumer Issues,Consumer Issues +415720,Consumer Issues,Consumer Issues +415043,Consumer Issues,Consumer Issues +415042,Consumer Issues,Consumer Issues +415040,Consumer Issues,Consumer Issues +415037,Consumer Issues,Consumer Issues +415034,Consumer Issues,Consumer Issues +415023,Consumer Issues,Consumer Issues +415012,Consumer Issues,Consumer Issues +413265,Consumer Issues,Consumer Issues +413262,Consumer Issues,Consumer Issues +413261,Consumer Issues,Consumer Issues +413260,Consumer Issues,Consumer Issues +413226,Consumer Issues,Consumer Issues +412330,Consumer Issues,Consumer Issues +412329,Consumer Issues,Consumer Issues +408991,Consumer Issues,Consumer Issues +408990,Consumer Issues,Consumer Issues +408989,Consumer Issues,Consumer Issues +408988,Consumer Issues,Consumer Issues +408986,Consumer Issues,Consumer Issues +407953,Consumer Issues,Consumer Issues +407952,Consumer Issues,Consumer Issues +407949,Consumer Issues,Consumer Issues +407937,Consumer Issues,Consumer Issues +406967,Consumer Issues,Consumer Issues +406966,Consumer Issues,Consumer Issues +406965,Consumer Issues,Consumer Issues +406963,Consumer Issues,Consumer Issues +403893,Consumer Issues,Consumer Issues +383703,Employment and Training,Employment and Training +471100,Employment and Training,Employment and Training +287059,Employment and Training,Employment and Training +435944,Employment and Training,Employment and Training +435942,Employment and Training,Employment and Training +424214,Employment and Training,Employment and Training +424212,Employment and Training,Employment and Training +424144,Employment and Training,Employment and Training +424141,Employment and Training,Employment and Training +484885,Industry,Industry +482380,Industry,Industry +93806,Industry,Industry +87394,Industry,Industry +159575,Industry,Industry +159573,Industry,Industry +157357,Industry,Industry +157189,Industry,Industry +151861,Industry,Industry +148275,Industry,Industry +131274,Industry,Industry +101335,Industry,Industry +258169,Industry,Industry +253970,Industry,Industry +253890,Industry,Industry +249552,Industry,Industry +228851,Industry,Industry +217951,Industry,Industry +217941,Industry,Industry +207156,Industry,Industry +193980,Industry,Industry +185485,Industry,Industry +185471,Industry,Industry +185465,Industry,Industry +180404,Industry,Industry +180398,Industry,Industry +174859,Industry,Industry +174718,Industry,Industry +171962,Industry,Industry +170843,Industry,Industry +170839,Industry,Industry +168168,Industry,Industry +168166,Industry,Industry +165939,Industry,Industry +162532,Industry,Industry +162523,Industry,Industry +162518,Industry,Industry +162515,Industry,Industry +159585,Industry,Industry +374228,Industry,Industry +374224,Industry,Industry +374223,Industry,Industry +372411,Industry,Industry +372398,Industry,Industry +372389,Industry,Industry +369545,Industry,Industry +369544,Industry,Industry +366422,Industry,Industry +366420,Industry,Industry +365267,Industry,Industry +365260,Industry,Industry +363472,Industry,Industry +358643,Industry,Industry +358604,Industry,Industry +358125,Industry,Industry +354051,Industry,Industry +353994,Industry,Industry +351524,Industry,Industry +351521,Industry,Industry +351516,Industry,Industry +349169,Industry,Industry +344066,Industry,Industry +344065,Industry,Industry +344006,Industry,Industry +344000,Industry,Industry +343990,Industry,Industry +343988,Industry,Industry +343987,Industry,Industry +343985,Industry,Industry +343982,Industry,Industry +343980,Industry,Industry +339361,Industry,Industry +305211,Industry,Industry +303511,Industry,Industry +296231,Industry,Industry +264380,Industry,Industry +259532,Industry,Industry +473531,Industry,Industry +473528,Industry,Industry +471126,Industry,Industry +471123,Industry,Industry +471120,Industry,Industry +471119,Industry,Industry +471107,Industry,Industry +471100,Industry,Industry +471097,Industry,Industry +468372,Industry,Industry +464375,Industry,Industry +462474,Industry,Industry +460699,Industry,Industry +460187,Industry,Industry +456895,Industry,Industry +456893,Industry,Industry +455758,Industry,Industry +452094,Industry,Industry +452092,Industry,Industry +439220,Industry,Industry +439204,Industry,Industry +439198,Industry,Industry +439192,Industry,Industry +439177,Industry,Industry +439173,Industry,Industry +424214,Industry,Industry +424212,Industry,Industry +424144,Industry,Industry +424141,Industry,Industry +422074,Industry,Industry +422073,Industry,Industry +422072,Industry,Industry +422071,Industry,Industry +422070,Industry,Industry +422069,Industry,Industry +419914,Industry,Industry +415047,Industry,Industry +415043,Industry,Industry +415042,Industry,Industry +415040,Industry,Industry +415037,Industry,Industry +415034,Industry,Industry +415023,Industry,Industry +415012,Industry,Industry +413265,Industry,Industry +413262,Industry,Industry +413261,Industry,Industry +413260,Industry,Industry +413252,Industry,Industry +413238,Industry,Industry +413226,Industry,Industry +408991,Industry,Industry +408990,Industry,Industry +408989,Industry,Industry +408988,Industry,Industry +408986,Industry,Industry +407953,Industry,Industry +407952,Industry,Industry +407949,Industry,Industry +406966,Industry,Industry +406963,Industry,Industry +385044,Industry,Industry +385039,Industry,Industry +383841,Industry,Industry +383703,Industry,Industry +382545,Industry,Industry +382348,Industry,Industry +514629,Industry,Industry +514149,Industry,Industry +505036,Industry,Industry +505018,Industry,Industry +502680,Industry,Industry +499401,Industry,Industry +495200,Industry,Industry +488013,Industry,Industry +484890,Industry,Industry +379278,International Trade,International Trade +379277,International Trade,International Trade +369549,International Trade,International Trade +366423,International Trade,International Trade +358140,International Trade,International Trade +358125,International Trade,International Trade +310414,International Trade,International Trade +264379,International Trade,International Trade +264377,International Trade,International Trade +542881,International Trade,International Trade +539856,International Trade,International Trade +539852,International Trade,International Trade +473530,International Trade,International Trade +473529,International Trade,International Trade +473528,International Trade,International Trade +473526,International Trade,International Trade +473525,International Trade,International Trade +473524,International Trade,International Trade +473523,International Trade,International Trade +473522,International Trade,International Trade +473520,International Trade,International Trade +473518,International Trade,International Trade +473516,International Trade,International Trade +473515,International Trade,International Trade +473513,International Trade,International Trade +464547,International Trade,International Trade +464373,International Trade,International Trade +464368,International Trade,International Trade +448100,International Trade,International Trade +448091,International Trade,International Trade +448085,International Trade,International Trade +415720,International Trade,International Trade +415048,International Trade,International Trade +415047,International Trade,International Trade +413246,International Trade,International Trade +412331,International Trade,International Trade +409024,International Trade,International Trade +407949,International Trade,International Trade +407935,International Trade,International Trade +404626,International Trade,International Trade +404625,International Trade,International Trade +404623,International Trade,International Trade +398653,International Trade,International Trade +396075,International Trade,International Trade +396073,International Trade,International Trade +392213,International Trade,International Trade +392212,International Trade,International Trade +392211,International Trade,International Trade +385044,International Trade,International Trade +385037,International Trade,International Trade +383704,International Trade,International Trade +383691,International Trade,International Trade +383689,International Trade,International Trade +380707,International Trade,International Trade +404630,Labour,Labour +404629,Labour,Labour +77533,Labour,Labour +98043,Labour,Labour +287059,Labour,Labour +264375,Labour,Labour +264369,Labour,Labour +210728,Labour,Labour +210727,Labour,Labour +193990,Labour,Labour +193989,Labour,Labour +193987,Labour,Labour +193985,Labour,Labour +193983,Labour,Labour +189095,Labour,Labour +180407,Labour,Labour +174852,Labour,Labour +174848,Labour,Labour +174718,Labour,Labour +392770,Labour,Labour +366422,Labour,Labour +366420,Labour,Labour +358137,Labour,Labour +353990,Labour,Labour +349044,Labour,Labour +499405,Labour,Labour +499403,Labour,Labour +484896,Labour,Labour +473534,Labour,Labour +473533,Labour,Labour +473530,Labour,Labour +473527,Labour,Labour +473519,Labour,Labour +467384,Labour,Labour +458902,Labour,Labour +452082,Labour,Labour +452059,Labour,Labour +449032,Labour,Labour +449031,Labour,Labour +439177,Taxation and Finance,Taxation and Finance +439173,Taxation and Finance,Taxation and Finance +264379,Taxation and Finance,Taxation and Finance +264377,Taxation and Finance,Taxation and Finance +429448,Taxation and Finance,Taxation and Finance +424214,Taxation and Finance,Taxation and Finance +424212,Taxation and Finance,Taxation and Finance +424144,Taxation and Finance,Taxation and Finance +424141,Taxation and Finance,Taxation and Finance +419914,Taxation and Finance,Taxation and Finance +418098,Taxation and Finance,Taxation and Finance +413238,Taxation and Finance,Taxation and Finance +406967,Taxation and Finance,Taxation and Finance +406966,Taxation and Finance,Taxation and Finance +388409,Taxation and Finance,Taxation and Finance +385039,Taxation and Finance,Taxation and Finance +374222,Taxation and Finance,Taxation and Finance +374221,Taxation and Finance,Taxation and Finance +374219,Taxation and Finance,Taxation and Finance +366423,Taxation and Finance,Taxation and Finance +366422,Taxation and Finance,Taxation and Finance +366420,Taxation and Finance,Taxation and Finance +349169,Taxation and Finance,Taxation and Finance +515791,Taxation and Finance,Taxation and Finance +512131,Taxation and Finance,Taxation and Finance +512128,Taxation and Finance,Taxation and Finance +473534,Taxation and Finance,Taxation and Finance +473533,Taxation and Finance,Taxation and Finance +473530,Taxation and Finance,Taxation and Finance +473529,Taxation and Finance,Taxation and Finance +473528,Taxation and Finance,Taxation and Finance +473527,Taxation and Finance,Taxation and Finance +473526,Taxation and Finance,Taxation and Finance +473525,Taxation and Finance,Taxation and Finance +471126,Taxation and Finance,Taxation and Finance +471123,Taxation and Finance,Taxation and Finance +471120,Taxation and Finance,Taxation and Finance +471119,Taxation and Finance,Taxation and Finance +471100,Taxation and Finance,Taxation and Finance +456895,Taxation and Finance,Taxation and Finance +456893,Taxation and Finance,Taxation and Finance +448103,Taxation and Finance,Taxation and Finance +448102,Taxation and Finance,Taxation and Finance +448100,Taxation and Finance,Taxation and Finance +448099,Taxation and Finance,Taxation and Finance +448098,Taxation and Finance,Taxation and Finance +448095,Taxation and Finance,Taxation and Finance +448094,Taxation and Finance,Taxation and Finance +448092,Taxation and Finance,Taxation and Finance +448091,Taxation and Finance,Taxation and Finance +448089,Taxation and Finance,Taxation and Finance +448088,Taxation and Finance,Taxation and Finance +448087,Taxation and Finance,Taxation and Finance +448085,Taxation and Finance,Taxation and Finance +448083,Taxation and Finance,Taxation and Finance +448072,Taxation and Finance,Taxation and Finance +448062,Taxation and Finance,Taxation and Finance +448043,Taxation and Finance,Taxation and Finance +439198,Taxation and Finance,Taxation and Finance +448092,Tourism,Tourism +448072,Tourism,Tourism +113480,Tourism,Tourism +113457,Tourism,Tourism +113434,Tourism,Tourism +193977,Tourism,Tourism +159575,Tourism,Tourism +146236,Tourism,Tourism +374222,Tourism,Tourism +374221,Tourism,Tourism +374219,Tourism,Tourism +339361,Tourism,Tourism +313200,Tourism,Tourism +296231,Tourism,Tourism +287059,Tourism,Tourism +439208,Tourism,Tourism +439198,Tourism,Tourism +439192,Tourism,Tourism +439177,Tourism,Tourism +439173,Tourism,Tourism +435944,Tourism,Tourism +435942,Tourism,Tourism +429448,Tourism,Tourism +424214,Tourism,Tourism +424212,Tourism,Tourism +424144,Tourism,Tourism +424141,Tourism,Tourism +419914,Tourism,Tourism +418098,Tourism,Tourism +531490,Tourism,Tourism +531485,Tourism,Tourism +522940,Tourism,Tourism +519610,Tourism,Tourism +514629,Tourism,Tourism +502684,Tourism,Tourism +488011,Tourism,Tourism +480172,Tourism,Tourism +464373,Tourism,Tourism +464368,Tourism,Tourism +455751,Tourism,Tourism +452680,Tourism,Tourism +452074,Tourism,Tourism +449015,Tourism,Tourism +448981,Tourism,Tourism +448098,Tourism,Tourism +475998,Transportation,Transportation +475996,Transportation,Transportation +108677,Transportation,Transportation +148274,Transportation,Transportation +366423,Transportation,Transportation +366422,Transportation,Transportation +366420,Transportation,Transportation +363472,Transportation,Transportation +358604,Transportation,Transportation +355875,Transportation,Transportation +353994,Transportation,Transportation +338702,Transportation,Transportation +335938,Transportation,Transportation +333198,Transportation,Transportation +331949,Transportation,Transportation +329716,Transportation,Transportation +322217,Transportation,Transportation +319239,Transportation,Transportation +315613,Transportation,Transportation +310414,Transportation,Transportation +305211,Transportation,Transportation +303511,Transportation,Transportation +291170,Transportation,Transportation +287059,Transportation,Transportation +279470,Transportation,Transportation +279469,Transportation,Transportation +277493,Transportation,Transportation +276806,Transportation,Transportation +264380,Transportation,Transportation +264379,Transportation,Transportation +264377,Transportation,Transportation +264375,Transportation,Transportation +264369,Transportation,Transportation +259538,Transportation,Transportation +259534,Transportation,Transportation +259532,Transportation,Transportation +404630,Transportation,Transportation +404629,Transportation,Transportation +404626,Transportation,Transportation +404625,Transportation,Transportation +404623,Transportation,Transportation +403900,Transportation,Transportation +403897,Transportation,Transportation +403893,Transportation,Transportation +403878,Transportation,Transportation +403872,Transportation,Transportation +400356,Transportation,Transportation +400355,Transportation,Transportation +398818,Transportation,Transportation +398654,Transportation,Transportation +392776,Transportation,Transportation +392770,Transportation,Transportation +392213,Transportation,Transportation +392212,Transportation,Transportation +392211,Transportation,Transportation +390834,Transportation,Transportation +390639,Transportation,Transportation +390635,Transportation,Transportation +388419,Transportation,Transportation +388417,Transportation,Transportation +388409,Transportation,Transportation +388406,Transportation,Transportation +385049,Transportation,Transportation +385048,Transportation,Transportation +385047,Transportation,Transportation +385046,Transportation,Transportation +385045,Transportation,Transportation +385043,Transportation,Transportation +385042,Transportation,Transportation +385041,Transportation,Transportation +385040,Transportation,Transportation +385039,Transportation,Transportation +385038,Transportation,Transportation +385036,Transportation,Transportation +385035,Transportation,Transportation +385033,Transportation,Transportation +383841,Transportation,Transportation +383704,Transportation,Transportation +383703,Transportation,Transportation +383691,Transportation,Transportation +383689,Transportation,Transportation +383688,Transportation,Transportation +380707,Transportation,Transportation +380706,Transportation,Transportation +380640,Transportation,Transportation +380638,Transportation,Transportation +380632,Transportation,Transportation +380630,Transportation,Transportation +380629,Transportation,Transportation +380628,Transportation,Transportation +380625,Transportation,Transportation +380624,Transportation,Transportation +380623,Transportation,Transportation +380622,Transportation,Transportation +379320,Transportation,Transportation +379317,Transportation,Transportation +379315,Transportation,Transportation +379313,Transportation,Transportation +379309,Transportation,Transportation +379302,Transportation,Transportation +379298,Transportation,Transportation +379295,Transportation,Transportation +379288,Transportation,Transportation +379278,Transportation,Transportation +379277,Transportation,Transportation +376942,Transportation,Transportation +376797,Transportation,Transportation +376795,Transportation,Transportation +374228,Transportation,Transportation +374224,Transportation,Transportation +374223,Transportation,Transportation +374222,Transportation,Transportation +374221,Transportation,Transportation +374219,Transportation,Transportation +374217,Transportation,Transportation +372601,Transportation,Transportation +372411,Transportation,Transportation +372398,Transportation,Transportation +372389,Transportation,Transportation +369552,Transportation,Transportation +369549,Transportation,Transportation +369545,Transportation,Transportation +369544,Transportation,Transportation +366426,Transportation,Transportation +366424,Transportation,Transportation +475994,Transportation,Transportation +475992,Transportation,Transportation +475968,Transportation,Transportation +473535,Transportation,Transportation +473531,Transportation,Transportation +473530,Transportation,Transportation +473529,Transportation,Transportation +473528,Transportation,Transportation +473527,Transportation,Transportation +473526,Transportation,Transportation +473525,Transportation,Transportation +473524,Transportation,Transportation +473523,Transportation,Transportation +473522,Transportation,Transportation +473521,Transportation,Transportation +473520,Transportation,Transportation +473519,Transportation,Transportation +473518,Transportation,Transportation +473516,Transportation,Transportation +473515,Transportation,Transportation +473513,Transportation,Transportation +471126,Transportation,Transportation +471123,Transportation,Transportation +471120,Transportation,Transportation +471107,Transportation,Transportation +471100,Transportation,Transportation +471097,Transportation,Transportation +468372,Transportation,Transportation +464375,Transportation,Transportation +464373,Transportation,Transportation +464368,Transportation,Transportation +462474,Transportation,Transportation +460699,Transportation,Transportation +460187,Transportation,Transportation +458902,Transportation,Transportation +458901,Transportation,Transportation +455827,Transportation,Transportation +455821,Transportation,Transportation +455758,Transportation,Transportation +452094,Transportation,Transportation +452092,Transportation,Transportation +452090,Transportation,Transportation +452085,Transportation,Transportation +452082,Transportation,Transportation +452080,Transportation,Transportation +452079,Transportation,Transportation +452077,Transportation,Transportation +452075,Transportation,Transportation +452074,Transportation,Transportation +452072,Transportation,Transportation +452070,Transportation,Transportation +452068,Transportation,Transportation +452066,Transportation,Transportation +452064,Transportation,Transportation +452063,Transportation,Transportation +452061,Transportation,Transportation +452059,Transportation,Transportation +452044,Transportation,Transportation +450226,Transportation,Transportation +449032,Transportation,Transportation +449031,Transportation,Transportation +448982,Transportation,Transportation +448981,Transportation,Transportation +448103,Transportation,Transportation +448102,Transportation,Transportation +448099,Transportation,Transportation +448098,Transportation,Transportation +448095,Transportation,Transportation +448094,Transportation,Transportation +448092,Transportation,Transportation +448091,Transportation,Transportation +448089,Transportation,Transportation +448088,Transportation,Transportation +448087,Transportation,Transportation +448085,Transportation,Transportation +448083,Transportation,Transportation +448072,Transportation,Transportation +448062,Transportation,Transportation +448043,Transportation,Transportation +448035,Transportation,Transportation +442117,Transportation,Transportation +442115,Transportation,Transportation +439220,Transportation,Transportation +439204,Transportation,Transportation +439198,Transportation,Transportation +439192,Transportation,Transportation +439177,Transportation,Transportation +439173,Transportation,Transportation +435944,Transportation,Transportation +435942,Transportation,Transportation +435938,Transportation,Transportation +432503,Transportation,Transportation +430811,Transportation,Transportation +429448,Transportation,Transportation +429443,Transportation,Transportation +427921,Transportation,Transportation +425972,Transportation,Transportation +425970,Transportation,Transportation +425968,Transportation,Transportation +425965,Transportation,Transportation +424214,Transportation,Transportation +424212,Transportation,Transportation +424144,Transportation,Transportation +424141,Transportation,Transportation +422074,Transportation,Transportation +422073,Transportation,Transportation +422072,Transportation,Transportation +422071,Transportation,Transportation +422070,Transportation,Transportation +422069,Transportation,Transportation +419914,Transportation,Transportation +419304,Transportation,Transportation +419303,Transportation,Transportation +418098,Transportation,Transportation +415720,Transportation,Transportation +415048,Transportation,Transportation +415047,Transportation,Transportation +415043,Transportation,Transportation +415042,Transportation,Transportation +415040,Transportation,Transportation +415037,Transportation,Transportation +415034,Transportation,Transportation +415023,Transportation,Transportation +415012,Transportation,Transportation +413265,Transportation,Transportation +413262,Transportation,Transportation +413261,Transportation,Transportation +413260,Transportation,Transportation +413252,Transportation,Transportation +413246,Transportation,Transportation +413238,Transportation,Transportation +413226,Transportation,Transportation +412331,Transportation,Transportation +412330,Transportation,Transportation +412329,Transportation,Transportation +409024,Transportation,Transportation +408991,Transportation,Transportation +408990,Transportation,Transportation +408989,Transportation,Transportation +408988,Transportation,Transportation +408986,Transportation,Transportation +407949,Transportation,Transportation +406967,Transportation,Transportation +406966,Transportation,Transportation +406965,Transportation,Transportation +406963,Transportation,Transportation +543582,Transportation,Transportation +542881,Transportation,Transportation +541717,Transportation,Transportation +541715,Transportation,Transportation +541711,Transportation,Transportation +539859,Transportation,Transportation +539856,Transportation,Transportation +539852,Transportation,Transportation +537777,Transportation,Transportation +537775,Transportation,Transportation +537773,Transportation,Transportation +537771,Transportation,Transportation +537770,Transportation,Transportation +537769,Transportation,Transportation +535537,Transportation,Transportation +535536,Transportation,Transportation +535527,Transportation,Transportation +535511,Transportation,Transportation +535506,Transportation,Transportation +535500,Transportation,Transportation +532564,Transportation,Transportation +531493,Transportation,Transportation +531490,Transportation,Transportation +531485,Transportation,Transportation +531484,Transportation,Transportation +531480,Transportation,Transportation +531474,Transportation,Transportation +525909,Transportation,Transportation +525908,Transportation,Transportation +525907,Transportation,Transportation +522939,Transportation,Transportation +522931,Transportation,Transportation +519618,Transportation,Transportation +519357,Transportation,Transportation +518098,Transportation,Transportation +518093,Transportation,Transportation +515789,Transportation,Transportation +514625,Transportation,Transportation +510881,Transportation,Transportation +510880,Transportation,Transportation +510875,Transportation,Transportation +508602,Transportation,Transportation +508599,Transportation,Transportation +508598,Transportation,Transportation +508587,Transportation,Transportation +508579,Transportation,Transportation +508571,Transportation,Transportation +505036,Transportation,Transportation +505035,Transportation,Transportation +505033,Transportation,Transportation +505031,Transportation,Transportation +505030,Transportation,Transportation +505026,Transportation,Transportation +505018,Transportation,Transportation +502680,Transportation,Transportation +502679,Transportation,Transportation +499406,Transportation,Transportation +499402,Transportation,Transportation +499401,Transportation,Transportation +499398,Transportation,Transportation +495200,Transportation,Transportation +495198,Transportation,Transportation +495197,Transportation,Transportation +495190,Transportation,Transportation +495188,Transportation,Transportation +493507,Transportation,Transportation +493498,Transportation,Transportation +491619,Transportation,Transportation +490727,Transportation,Transportation +490725,Transportation,Transportation +490721,Transportation,Transportation +490719,Transportation,Transportation +490718,Transportation,Transportation +490715,Transportation,Transportation +490712,Transportation,Transportation +490660,Transportation,Transportation +490657,Transportation,Transportation +488026,Transportation,Transportation +488025,Transportation,Transportation +488021,Transportation,Transportation +488013,Transportation,Transportation +488009,Transportation,Transportation +484893,Transportation,Transportation +484892,Transportation,Transportation +484890,Transportation,Transportation +484889,Transportation,Transportation +484885,Transportation,Transportation +484878,Transportation,Transportation +484875,Transportation,Transportation +482380,Transportation,Transportation +482379,Transportation,Transportation +482372,Transportation,Transportation +482258,Transportation,Transportation +480172,Transportation,Transportation +480170,Transportation,Transportation +480116,Transportation,Transportation +480115,Transportation,Transportation +480114,Transportation,Transportation +480112,Transportation,Transportation +477749,Transportation,Transportation +477746,Transportation,Transportation +476003,Transportation,Transportation +230929,Industry,Industry +297109,Industry,Industry +296191,Industry,Industry +292069,Industry,Industry +292050,Industry,Industry +272354,Industry,Industry +270916,Industry,Industry +270830,Industry,Industry +267969,Industry,Industry +267670,Industry,Industry +265531,Industry,Industry +265529,Industry,Industry +261775,Industry,Industry +261772,Industry,Industry +261771,Industry,Industry +261770,Industry,Industry +243050,Industry,Industry +237450,Industry,Industry +231109,Industry,Industry +230931,Industry,Industry +265531,Regional Development,Regional Development +265530,Regional Development,Regional Development +297109,Regional Development,Regional Development +320494,Intellectual Property,Intellectual Property +301149,Intellectual Property,Intellectual Property +301149,International Trade,International Trade +109522,Other,Official Languages +109521,Other,Official Languages +77694,Other,Official Languages +112339,Other,Official Languages +76066,Agriculture,Agriculture +480079,Agriculture,Agriculture +413682,Agriculture,Agriculture +396750,Agriculture,Agriculture +396710,Agriculture,Agriculture +396703,Agriculture,Agriculture +396696,Agriculture,Agriculture +540253,Agriculture,Agriculture +461175,Education,Education +460573,Education,Education +88020,Education,Education +233845,Education,Education +212527,Education,Education +212293,Education,Education +212290,Education,Education +212287,Education,Education +212267,Education,Education +200570,Education,Education +200567,Education,Education +194853,Education,Education +194848,Education,Education +194842,Education,Education +194839,Education,Education +194838,Education,Education +194832,Education,Education +369264,Education,Education +369120,Education,Education +369063,Education,Education +369057,Education,Education +369053,Education,Education +369050,Education,Education +369047,Education,Education +369034,Education,Education +369032,Education,Education +369017,Education,Education +368951,Education,Education +368950,Education,Education +368947,Education,Education +368944,Education,Education +368943,Education,Education +368942,Education,Education +366773,Education,Education +366771,Education,Education +366770,Education,Education +366769,Education,Education +365337,Education,Education +365303,Education,Education +365302,Education,Education +365301,Education,Education +365300,Education,Education +365298,Education,Education +365295,Education,Education +365292,Education,Education +365289,Education,Education +365286,Education,Education +365283,Education,Education +365281,Education,Education +365280,Education,Education +365278,Education,Education +363506,Education,Education +363505,Education,Education +363503,Education,Education +363502,Education,Education +363501,Education,Education +363499,Education,Education +363496,Education,Education +363495,Education,Education +362065,Education,Education +360987,Education,Education +359445,Education,Education +357942,Education,Education +357602,Education,Education +357601,Education,Education +357476,Education,Education +356421,Education,Education +355907,Education,Education +355869,Education,Education +355647,Education,Education +353888,Education,Education +353887,Education,Education +353886,Education,Education +353885,Education,Education +353884,Education,Education +353883,Education,Education +353882,Education,Education +353648,Education,Education +353641,Education,Education +353423,Education,Education +353145,Education,Education +353144,Education,Education +353027,Education,Education +351069,Education,Education +351053,Education,Education +351016,Education,Education +351012,Education,Education +351003,Education,Education +350262,Education,Education +350259,Education,Education +350258,Education,Education +350257,Education,Education +350256,Education,Education +350250,Education,Education +350243,Education,Education +350225,Education,Education +350223,Education,Education +350222,Education,Education +348680,Education,Education +348679,Education,Education +348676,Education,Education +348673,Education,Education +348668,Education,Education +348661,Education,Education +348659,Education,Education +348607,Education,Education +348606,Education,Education +348605,Education,Education +348603,Education,Education +348602,Education,Education +348600,Education,Education +348599,Education,Education +348597,Education,Education +348594,Education,Education +347365,Education,Education +347363,Education,Education +347361,Education,Education +347359,Education,Education +347358,Education,Education +347357,Education,Education +347355,Education,Education +340950,Education,Education +338801,Education,Education +338800,Education,Education +338799,Education,Education +338796,Education,Education +338789,Education,Education +338786,Education,Education +338785,Education,Education +338782,Education,Education +335717,Education,Education +333737,Education,Education +291349,Education,Education +459732,Education,Education +459731,Education,Education +457708,Education,Education +454910,Education,Education +454908,Education,Education +454906,Education,Education +452277,Education,Education +447354,Education,Education +445589,Education,Education +443806,Education,Education +443805,Education,Education +443804,Education,Education +443803,Education,Education +443802,Education,Education +443801,Education,Education +443800,Education,Education +443798,Education,Education +442473,Education,Education +442470,Education,Education +442464,Education,Education +439533,Education,Education +439528,Education,Education +439525,Education,Education +439513,Education,Education +439504,Education,Education +439489,Education,Education +439477,Education,Education +439474,Education,Education +439469,Education,Education +439462,Education,Education +439457,Education,Education +439448,Education,Education +433806,Education,Education +433804,Education,Education +432583,Education,Education +432536,Education,Education +432532,Education,Education +431347,Education,Education +429437,Education,Education +426798,Education,Education +426797,Education,Education +426796,Education,Education +426795,Education,Education +426793,Education,Education +422335,Education,Education +420208,Education,Education +418749,Education,Education +416267,Education,Education +416263,Education,Education +416255,Education,Education +416244,Education,Education +416239,Education,Education +413235,Education,Education +413222,Education,Education +413206,Education,Education +413204,Education,Education +413200,Education,Education +413178,Education,Education +413169,Education,Education +410178,Education,Education +410173,Education,Education +410171,Education,Education +410167,Education,Education +410165,Education,Education +410164,Education,Education +408182,Education,Education +408181,Education,Education +408180,Education,Education +408176,Education,Education +408174,Education,Education +408171,Education,Education +408169,Education,Education +406048,Education,Education +403969,Education,Education +403967,Education,Education +403898,Education,Education +403873,Education,Education +403870,Education,Education +403824,Education,Education +403808,Education,Education +400578,Education,Education +399002,Education,Education +399000,Education,Education +398998,Education,Education +398997,Education,Education +398995,Education,Education +398994,Education,Education +398962,Education,Education +394339,Education,Education +394336,Education,Education +394332,Education,Education +394324,Education,Education +394318,Education,Education +392689,Education,Education +392687,Education,Education +392685,Education,Education +392684,Education,Education +392683,Education,Education +392682,Education,Education +392675,Education,Education +392671,Education,Education +392664,Education,Education +392662,Education,Education +391262,Education,Education +391250,Education,Education +388393,Education,Education +388365,Education,Education +388358,Education,Education +388349,Education,Education +388221,Education,Education +385738,Education,Education +385737,Education,Education +385143,Education,Education +383783,Education,Education +383737,Education,Education +383725,Education,Education +382476,Education,Education +382473,Education,Education +382471,Education,Education +382470,Education,Education +382468,Education,Education +382465,Education,Education +381612,Education,Education +379981,Education,Education +379978,Education,Education +379975,Education,Education +379972,Education,Education +379969,Education,Education +379967,Education,Education +379966,Education,Education +379963,Education,Education +379771,Education,Education +379770,Education,Education +379751,Education,Education +379747,Education,Education +377076,Education,Education +377072,Education,Education +377069,Education,Education +377068,Education,Education +377067,Education,Education +377066,Education,Education +377063,Education,Education +377061,Education,Education +377056,Education,Education +377054,Education,Education +376811,Education,Education +374665,Education,Education +374662,Education,Education +374655,Education,Education +374624,Education,Education +374618,Education,Education +372751,Education,Education +372747,Education,Education +372741,Education,Education +372738,Education,Education +372729,Education,Education +372725,Education,Education +372723,Education,Education +372722,Education,Education +372718,Education,Education +372703,Education,Education +372702,Education,Education +372698,Education,Education +372697,Education,Education +372687,Education,Education +372678,Education,Education +372673,Education,Education +372654,Education,Education +372645,Education,Education +544064,Education,Education +544061,Education,Education +544058,Education,Education +544056,Education,Education +544050,Education,Education +544040,Education,Education +544036,Education,Education +544032,Education,Education +542028,Education,Education +542026,Education,Education +542025,Education,Education +542024,Education,Education +542023,Education,Education +542020,Education,Education +542015,Education,Education +542013,Education,Education +542009,Education,Education +542007,Education,Education +540270,Education,Education +540265,Education,Education +540258,Education,Education +540256,Education,Education +540253,Education,Education +540252,Education,Education +540235,Education,Education +540218,Education,Education +540217,Education,Education +538498,Education,Education +538492,Education,Education +534975,Education,Education +534974,Education,Education +531860,Education,Education +531848,Education,Education +526609,Education,Education +523257,Education,Education +515889,Education,Education +515888,Education,Education +515887,Education,Education +515886,Education,Education +515885,Education,Education +515883,Education,Education +511351,Education,Education +511349,Education,Education +499478,Education,Education +495586,Education,Education +493665,Education,Education +491305,Education,Education +491233,Education,Education +487711,Education,Education +487710,Education,Education +487709,Education,Education +487708,Education,Education +484597,Education,Education +484592,Education,Education +482537,Education,Education +478190,Education,Education +478187,Education,Education +475895,Education,Education +475889,Education,Education +475882,Education,Education +475879,Education,Education +475872,Education,Education +475863,Education,Education +475836,Education,Education +475828,Education,Education +473046,Education,Education +473045,Education,Education +473044,Education,Education +473038,Education,Education +473035,Education,Education +473031,Education,Education +470748,Education,Education +470731,Education,Education +467600,Education,Education +467593,Education,Education +467587,Education,Education +467584,Education,Education +467573,Education,Education +467562,Education,Education +467555,Education,Education +464662,Education,Education +464660,Education,Education +464653,Education,Education +464648,Education,Education +464645,Education,Education +464643,Education,Education +464638,Education,Education +464627,Education,Education +534975,Employment and Training,Employment and Training +534974,Employment and Training,Employment and Training +88020,Employment and Training,Employment and Training +152308,Employment and Training,Employment and Training +175341,Employment and Training,Employment and Training +443806,Employment and Training,Employment and Training +443798,Employment and Training,Employment and Training +439489,Employment and Training,Employment and Training +420208,Employment and Training,Employment and Training +413235,Employment and Training,Employment and Training +403908,Employment and Training,Employment and Training +400573,Employment and Training,Employment and Training +396776,Employment and Training,Employment and Training +392689,Employment and Training,Employment and Training +385737,Employment and Training,Employment and Training +385648,Employment and Training,Employment and Training +383783,Employment and Training,Employment and Training +383737,Employment and Training,Employment and Training +372723,Employment and Training,Employment and Training +369034,Employment and Training,Employment and Training +368950,Employment and Training,Employment and Training +361207,Employment and Training,Employment and Training +350260,Employment and Training,Employment and Training +338786,Employment and Training,Employment and Training +338782,Employment and Training,Employment and Training +333738,Employment and Training,Employment and Training +544064,Employment and Training,Employment and Training +544061,Employment and Training,Employment and Training +544058,Employment and Training,Employment and Training +544056,Employment and Training,Employment and Training +544050,Employment and Training,Employment and Training +544040,Employment and Training,Employment and Training +544036,Employment and Training,Employment and Training +544032,Employment and Training,Employment and Training +542028,Employment and Training,Employment and Training +542026,Employment and Training,Employment and Training +542025,Employment and Training,Employment and Training +542024,Employment and Training,Employment and Training +542023,Employment and Training,Employment and Training +542020,Employment and Training,Employment and Training +542015,Employment and Training,Employment and Training +542013,Employment and Training,Employment and Training +542009,Employment and Training,Employment and Training +542007,Employment and Training,Employment and Training +540270,Employment and Training,Employment and Training +540265,Employment and Training,Employment and Training +540258,Employment and Training,Employment and Training +540256,Employment and Training,Employment and Training +540252,Employment and Training,Employment and Training +538498,Employment and Training,Employment and Training +538494,Employment and Training,Employment and Training +538492,Employment and Training,Employment and Training +538479,Employment and Training,Employment and Training +531764,Energy,Energy +526611,Energy,Energy +121374,Energy,Energy +101357,Energy,Energy +88030,Energy,Energy +88012,Energy,Energy +125106,Energy,Energy +125103,Energy,Energy +125102,Energy,Energy +125079,Energy,Energy +125070,Energy,Energy +194845,Energy,Energy +194838,Energy,Energy +177826,Energy,Energy +177825,Energy,Energy +160394,Energy,Energy +379771,Energy,Energy +363502,Energy,Energy +363499,Energy,Energy +357950,Energy,Energy +331503,Energy,Energy +302730,Energy,Energy +491294,Energy,Energy +454911,Energy,Energy +439536,Energy,Energy +439462,Energy,Energy +436041,Energy,Energy +433809,Energy,Energy +420197,Energy,Energy +416240,Energy,Energy +413197,Energy,Energy +413195,Energy,Energy +413193,Energy,Energy +410161,Energy,Energy +405119,Energy,Energy +403976,Energy,Energy +403971,Energy,Energy +403908,Energy,Energy +403856,Energy,Energy +403824,Energy,Energy +403813,Energy,Energy +400616,Energy,Energy +400611,Energy,Energy +400608,Energy,Energy +400562,Energy,Energy +400558,Energy,Energy +399005,Energy,Energy +396750,Energy,Energy +396710,Energy,Energy +396703,Energy,Energy +396696,Energy,Energy +396665,Energy,Energy +396654,Energy,Energy +392679,Energy,Energy +392676,Energy,Energy +391273,Energy,Energy +391258,Energy,Energy +391244,Energy,Energy +388399,Energy,Energy +388386,Energy,Energy +388335,Energy,Energy +388216,Energy,Energy +388207,Energy,Energy +385739,Energy,Energy +385722,Energy,Energy +385193,Energy,Energy +385191,Energy,Energy +385164,Energy,Energy +385133,Energy,Energy +385132,Energy,Energy +385130,Energy,Energy +385120,Energy,Energy +544061,Energy,Energy +544058,Energy,Energy +544056,Energy,Energy +544040,Energy,Energy +542028,Energy,Energy +542026,Energy,Energy +542023,Energy,Energy +542010,Energy,Energy +540270,Energy,Energy +540265,Energy,Energy +540253,Energy,Energy +538479,Energy,Energy +531863,Energy,Energy +531833,Energy,Energy +531827,Energy,Energy +531819,Energy,Energy +531801,Energy,Energy +531788,Energy,Energy +531764,Environment,Environment +523258,Environment,Environment +121374,Environment,Environment +101357,Environment,Environment +88030,Environment,Environment +88012,Environment,Environment +194845,Environment,Environment +194838,Environment,Environment +177826,Environment,Environment +177825,Environment,Environment +160394,Environment,Environment +125106,Environment,Environment +125103,Environment,Environment +125102,Environment,Environment +125079,Environment,Environment +125070,Environment,Environment +363501,Environment,Environment +302730,Environment,Environment +436041,Environment,Environment +433809,Environment,Environment +420197,Environment,Environment +413641,Environment,Environment +396703,Environment,Environment +388399,Environment,Environment +388386,Environment,Environment +385739,Environment,Environment +385735,Environment,Environment +385247,Environment,Environment +385164,Environment,Environment +383711,Environment,Environment +544061,Environment,Environment +544058,Environment,Environment +544056,Environment,Environment +544040,Environment,Environment +542028,Environment,Environment +542026,Environment,Environment +542023,Environment,Environment +542010,Environment,Environment +540270,Environment,Environment +540265,Environment,Environment +540253,Environment,Environment +531863,Environment,Environment +531833,Environment,Environment +531827,Environment,Environment +531819,Environment,Environment +531801,Environment,Environment +531788,Environment,Environment +526648,Health,Health +526640,Health,Health +333734,Health,Health +333733,Health,Health +333732,Health,Health +273408,Health,Health +269597,Health,Health +269550,Health,Health +269530,Health,Health +250683,Health,Health +245311,Health,Health +422337,Health,Health +420224,Health,Health +420203,Health,Health +410166,Health,Health +396750,Health,Health +396710,Health,Health +396703,Health,Health +396696,Health,Health +394331,Health,Health +391242,Health,Health +385735,Health,Health +383711,Health,Health +383707,Health,Health +381613,Health,Health +377068,Health,Health +350261,Health,Health +348283,Health,Health +347361,Health,Health +347355,Health,Health +340953,Health,Health +338793,Health,Health +338791,Health,Health +499846,Health,Health +493620,Health,Health +484600,Health,Health +484579,Health,Health +456744,Health,Health +447359,Health,Health +447358,Health,Health +447357,Health,Health +447356,Health,Health +447353,Health,Health +447352,Health,Health +447351,Health,Health +447350,Health,Health +447349,Health,Health +445603,Health,Health +445600,Health,Health +445599,Health,Health +445594,Health,Health +445593,Health,Health +445586,Health,Health +445580,Health,Health +445577,Health,Health +445575,Health,Health +445574,Health,Health +445573,Health,Health +445571,Health,Health +443808,Health,Health +443807,Health,Health +439457,Health,Health +544064,Health,Health +544061,Health,Health +544050,Health,Health +544040,Health,Health +544036,Health,Health +544032,Health,Health +542025,Health,Health +542023,Health,Health +542020,Health,Health +542015,Health,Health +542013,Health,Health +542009,Health,Health +542007,Health,Health +540265,Health,Health +540255,Health,Health +540253,Health,Health +540234,Health,Health +540233,Health,Health +540231,Health,Health +540230,Health,Health +540203,Health,Health +538498,Health,Health +536289,Health,Health +535565,Health,Health +531863,Health,Health +531844,Health,Health +531833,Health,Health +531819,Health,Health +531799,Health,Health +531764,Health,Health +529366,Health,Health +529364,Health,Health +529362,Health,Health +529361,Health,Health +529359,Health,Health +529351,Health,Health +529328,Health,Health +529312,Health,Health +529249,Health,Health +529208,Health,Health +529189,Health,Health +478174,Immigration,Immigration +439504,Immigration,Immigration +159730,Immigration,Immigration +159729,Immigration,Immigration +159727,Immigration,Immigration +159722,Immigration,Immigration +159721,Immigration,Immigration +159714,Immigration,Immigration +175341,Immigration,Immigration +383730,Immigration,Immigration +338786,Immigration,Immigration +338782,Immigration,Immigration +333738,Immigration,Immigration +544061,Immigration,Immigration +544032,Immigration,Immigration +542023,Immigration,Immigration +540258,Immigration,Immigration +540203,Industry,Industry +535565,Industry,Industry +152308,Industry,Industry +90461,Industry,Industry +177826,Industry,Industry +177825,Industry,Industry +388342,Industry,Industry +347358,Industry,Industry +347357,Industry,Industry +328690,Industry,Industry +399001,Industry,Industry +544064,Industry,Industry +544058,Industry,Industry +544056,Industry,Industry +540270,Industry,Industry +540265,Industry,Industry +540253,Industry,Industry +416232,Infrastructure,Infrastructure +538492,Infrastructure,Infrastructure +157035,Infrastructure,Infrastructure +154924,Infrastructure,Infrastructure +152308,Infrastructure,Infrastructure +152305,Infrastructure,Infrastructure +105514,Infrastructure,Infrastructure +280389,Infrastructure,Infrastructure +269652,Infrastructure,Infrastructure +263803,Infrastructure,Infrastructure +263802,Infrastructure,Infrastructure +263770,Infrastructure,Infrastructure +254097,Infrastructure,Infrastructure +250659,Infrastructure,Infrastructure +237251,Infrastructure,Infrastructure +171064,Infrastructure,Infrastructure +166044,Infrastructure,Infrastructure +164029,Infrastructure,Infrastructure +160394,Infrastructure,Infrastructure +159730,Infrastructure,Infrastructure +159729,Infrastructure,Infrastructure +159727,Infrastructure,Infrastructure +159722,Infrastructure,Infrastructure +159716,Infrastructure,Infrastructure +159714,Infrastructure,Infrastructure +159713,Infrastructure,Infrastructure +410163,Infrastructure,Infrastructure +408169,Infrastructure,Infrastructure +403961,Infrastructure,Infrastructure +403883,Infrastructure,Infrastructure +400576,Infrastructure,Infrastructure +398998,Infrastructure,Infrastructure +394312,Infrastructure,Infrastructure +391248,Infrastructure,Infrastructure +385722,Infrastructure,Infrastructure +385492,Infrastructure,Infrastructure +385143,Infrastructure,Infrastructure +383785,Infrastructure,Infrastructure +377067,Infrastructure,Infrastructure +377066,Infrastructure,Infrastructure +369057,Infrastructure,Infrastructure +365283,Infrastructure,Infrastructure +355908,Infrastructure,Infrastructure +340956,Infrastructure,Infrastructure +340952,Infrastructure,Infrastructure +515891,Infrastructure,Infrastructure +505243,Infrastructure,Infrastructure +478193,Infrastructure,Infrastructure +447354,Infrastructure,Infrastructure +416270,Infrastructure,Infrastructure +388250,Intellectual Property,Intellectual Property +388238,Intellectual Property,Intellectual Property +544064,Intellectual Property,Intellectual Property +540270,Intellectual Property,Intellectual Property +540265,Intellectual Property,Intellectual Property +540203,Intellectual Property,Intellectual Property +535565,Intellectual Property,Intellectual Property +420212,Intellectual Property,Intellectual Property +416251,Intellectual Property,Intellectual Property +388303,Intellectual Property,Intellectual Property +388292,Intellectual Property,Intellectual Property +388279,Intellectual Property,Intellectual Property +388269,Intellectual Property,Intellectual Property +388262,Intellectual Property,Intellectual Property +388260,Intellectual Property,Intellectual Property +531848,International Relations,International Relations +529364,International Relations,International Relations +143225,International Relations,International Relations +143223,International Relations,International Relations +143221,International Relations,International Relations +109190,International Relations,International Relations +109186,International Relations,International Relations +88015,International Relations,International Relations +88012,International Relations,International Relations +87999,International Relations,International Relations +168924,International Relations,International Relations +168923,International Relations,International Relations +168920,International Relations,International Relations +160394,International Relations,International Relations +159730,International Relations,International Relations +159729,International Relations,International Relations +159727,International Relations,International Relations +159722,International Relations,International Relations +159721,International Relations,International Relations +159716,International Relations,International Relations +159714,International Relations,International Relations +159713,International Relations,International Relations +157035,International Relations,International Relations +154924,International Relations,International Relations +153661,International Relations,International Relations +153660,International Relations,International Relations +153659,International Relations,International Relations +152308,International Relations,International Relations +152305,International Relations,International Relations +150426,International Relations,International Relations +150423,International Relations,International Relations +150409,International Relations,International Relations +328691,International Relations,International Relations +313093,International Relations,International Relations +310552,International Relations,International Relations +310550,International Relations,International Relations +310409,International Relations,International Relations +310401,International Relations,International Relations +302753,International Relations,International Relations +296351,International Relations,International Relations +296035,International Relations,International Relations +296034,International Relations,International Relations +296033,International Relations,International Relations +296032,International Relations,International Relations +296031,International Relations,International Relations +296030,International Relations,International Relations +296029,International Relations,International Relations +291349,International Relations,International Relations +290709,International Relations,International Relations +269597,International Relations,International Relations +269530,International Relations,International Relations +245547,International Relations,International Relations +212293,International Relations,International Relations +212290,International Relations,International Relations +212287,International Relations,International Relations +212267,International Relations,International Relations +194853,International Relations,International Relations +194848,International Relations,International Relations +194845,International Relations,International Relations +194842,International Relations,International Relations +194839,International Relations,International Relations +194838,International Relations,International Relations +194832,International Relations,International Relations +464638,International Relations,International Relations +464627,International Relations,International Relations +461901,International Relations,International Relations +460573,International Relations,International Relations +445606,International Relations,International Relations +445589,International Relations,International Relations +433799,International Relations,International Relations +429437,International Relations,International Relations +403808,International Relations,International Relations +399002,International Relations,International Relations +394335,International Relations,International Relations +391274,International Relations,International Relations +355869,International Relations,International Relations +338799,International Relations,International Relations +338798,International Relations,International Relations +333738,International Relations,International Relations +534975,Regional Development,Regional Development +531863,Regional Development,Regional Development +454911,Regional Development,Regional Development +426793,Regional Development,Regional Development +413644,Regional Development,Regional Development +544061,Regional Development,Regional Development +544050,Regional Development,Regional Development +544040,Regional Development,Regional Development +544036,Regional Development,Regional Development +542028,Regional Development,Regional Development +542026,Regional Development,Regional Development +542025,Regional Development,Regional Development +542023,Regional Development,Regional Development +542020,Regional Development,Regional Development +542015,Regional Development,Regional Development +542013,Regional Development,Regional Development +542010,Regional Development,Regional Development +542009,Regional Development,Regional Development +542007,Regional Development,Regional Development +540265,Regional Development,Regional Development +540235,Regional Development,Regional Development +540234,Regional Development,Regional Development +540233,Regional Development,Regional Development +540231,Regional Development,Regional Development +88181,Sports,Sports +99777,Other,Research & Development +97532,Other,Research & Development +97531,Other,Research & Development +88132,Other,Research & Development +88126,Other,Research & Development +88030,Other,Research & Development +88020,Other,Research & Development +88015,Other,Research & Development +88012,Other,Research & Development +87855,Other,Research & Development +109190,Other,Research & Development +109188,Other,Research & Development +109187,Other,Research & Development +109185,Other,Research & Development +312922,Tourism,Tourism +312921,Tourism,Tourism +121161,Tourism,Tourism +113990,Tourism,Tourism +101191,Tourism,Tourism +97175,Tourism,Tourism +97159,Tourism,Tourism +90419,Tourism,Tourism +80774,Tourism,Tourism +241149,Tourism,Tourism +230337,Tourism,Tourism +85382,Government Procurement,Government Procurement +121158,Government Procurement,Government Procurement +109696,Government Procurement,Government Procurement +109694,Government Procurement,Government Procurement +121815,Health,Health +112899,Health,Health +99434,Health,Health +97757,Health,Health +121814,Health,Health +165896,Health,Health +99454,Health,Health +97756,Health,Health +89604,Health,Health +478456,Constitutional Issues,Constitutional Issues +460292,Constitutional Issues,Constitutional Issues +479466,Constitutional Issues,Constitutional Issues +478773,Constitutional Issues,Constitutional Issues +478676,Consumer Issues,Consumer Issues +478456,Consumer Issues,Consumer Issues +479466,Consumer Issues,Consumer Issues +478456,Immigration,Immigration +460292,Immigration,Immigration +479466,Immigration,Immigration +478773,Immigration,Immigration +478676,Industry,Industry +478456,Industry,Industry +479466,Industry,Industry +478456,Intellectual Property,Intellectual Property +460292,Intellectual Property,Intellectual Property +479466,Intellectual Property,Intellectual Property +460292,Internal Trade,Internal Trade +414584,Industry,Industry +414583,Industry,Industry +387497,Industry,Industry +387496,Industry,Industry +387495,Industry,Industry +384356,Industry,Industry +380708,Industry,Industry +443524,Industry,Industry +486088,Education,Education +462012,Education,Education +81898,Education,Education +376565,Education,Education +375619,Education,Education +375110,Education,Education +375109,Education,Education +374555,Education,Education +374034,Education,Education +374033,Education,Education +374032,Education,Education +374031,Education,Education +374030,Education,Education +374027,Education,Education +374026,Education,Education +374025,Education,Education +374024,Education,Education +374023,Education,Education +374022,Education,Education +374021,Education,Education +374016,Education,Education +374015,Education,Education +374014,Education,Education +374013,Education,Education +373923,Education,Education +373921,Education,Education +373867,Education,Education +373866,Education,Education +373863,Education,Education +373862,Education,Education +333536,Education,Education +289489,Education,Education +449161,Education,Education +448744,Education,Education +448484,Education,Education +448412,Education,Education +427685,Education,Education +427651,Education,Education +425153,Education,Education +425147,Education,Education +425143,Education,Education +425140,Education,Education +425133,Education,Education +425130,Education,Education +425099,Education,Education +425097,Education,Education +425094,Education,Education +425093,Education,Education +425092,Education,Education +425091,Education,Education +425090,Education,Education +425089,Education,Education +425088,Education,Education +425086,Education,Education +425083,Education,Education +425082,Education,Education +425081,Education,Education +425080,Education,Education +425078,Education,Education +425075,Education,Education +425069,Education,Education +425068,Education,Education +410362,Education,Education +409642,Education,Education +407217,Education,Education +397551,Education,Education +397509,Education,Education +397508,Education,Education +397490,Education,Education +397487,Education,Education +397486,Education,Education +388880,Education,Education +385934,Education,Education +381788,Education,Education +379604,Education,Education +379603,Education,Education +504496,Education,Education +397485,Employment and Training,Employment and Training +397484,Employment and Training,Employment and Training +125554,Employment and Training,Employment and Training +103735,Employment and Training,Employment and Training +76239,Employment and Training,Employment and Training +76238,Employment and Training,Employment and Training +310002,Employment and Training,Employment and Training +310000,Employment and Training,Employment and Training +289509,Employment and Training,Employment and Training +289490,Employment and Training,Employment and Training +273809,Employment and Training,Employment and Training +249672,Employment and Training,Employment and Training +341466,Employment and Training,Employment and Training +341464,Employment and Training,Employment and Training +341463,Employment and Training,Employment and Training +341442,Employment and Training,Employment and Training +341441,Employment and Training,Employment and Training +341440,Employment and Training,Employment and Training +341439,Employment and Training,Employment and Training +341438,Employment and Training,Employment and Training +338639,Employment and Training,Employment and Training +338636,Employment and Training,Employment and Training +328016,Employment and Training,Employment and Training +319079,Employment and Training,Employment and Training +310263,Employment and Training,Employment and Training +310262,Employment and Training,Employment and Training +310251,Employment and Training,Employment and Training +310249,Employment and Training,Employment and Training +310248,Employment and Training,Employment and Training +310247,Employment and Training,Employment and Training +310237,Employment and Training,Employment and Training +310233,Employment and Training,Employment and Training +310228,Employment and Training,Employment and Training +310227,Employment and Training,Employment and Training +310226,Employment and Training,Employment and Training +310224,Employment and Training,Employment and Training +310222,Employment and Training,Employment and Training +310219,Employment and Training,Employment and Training +310216,Employment and Training,Employment and Training +310212,Employment and Training,Employment and Training +310207,Employment and Training,Employment and Training +310206,Employment and Training,Employment and Training +310203,Employment and Training,Employment and Training +310202,Employment and Training,Employment and Training +310201,Employment and Training,Employment and Training +310197,Employment and Training,Employment and Training +310194,Employment and Training,Employment and Training +310190,Employment and Training,Employment and Training +310187,Employment and Training,Employment and Training +310183,Employment and Training,Employment and Training +310182,Employment and Training,Employment and Training +310007,Employment and Training,Employment and Training +310006,Employment and Training,Employment and Training +310005,Employment and Training,Employment and Training +310003,Employment and Training,Employment and Training +397483,Employment and Training,Employment and Training +397480,Employment and Training,Employment and Training +397469,Employment and Training,Employment and Training +397466,Employment and Training,Employment and Training +393964,Employment and Training,Employment and Training +391947,Employment and Training,Employment and Training +391909,Employment and Training,Employment and Training +391898,Employment and Training,Employment and Training +389619,Employment and Training,Employment and Training +389390,Employment and Training,Employment and Training +388880,Employment and Training,Employment and Training +381788,Employment and Training,Employment and Training +379604,Employment and Training,Employment and Training +379603,Employment and Training,Employment and Training +378237,Employment and Training,Employment and Training +375619,Employment and Training,Employment and Training +375111,Employment and Training,Employment and Training +374034,Employment and Training,Employment and Training +374033,Employment and Training,Employment and Training +374032,Employment and Training,Employment and Training +374031,Employment and Training,Employment and Training +374027,Employment and Training,Employment and Training +374026,Employment and Training,Employment and Training +374024,Employment and Training,Employment and Training +374023,Employment and Training,Employment and Training +374022,Employment and Training,Employment and Training +374021,Employment and Training,Employment and Training +374020,Employment and Training,Employment and Training +374017,Employment and Training,Employment and Training +374016,Employment and Training,Employment and Training +374014,Employment and Training,Employment and Training +374013,Employment and Training,Employment and Training +373916,Employment and Training,Employment and Training +373868,Employment and Training,Employment and Training +373867,Employment and Training,Employment and Training +373866,Employment and Training,Employment and Training +373865,Employment and Training,Employment and Training +373862,Employment and Training,Employment and Training +362782,Employment and Training,Employment and Training +341488,Employment and Training,Employment and Training +341487,Employment and Training,Employment and Training +341485,Employment and Training,Employment and Training +341483,Employment and Training,Employment and Training +341482,Employment and Training,Employment and Training +341481,Employment and Training,Employment and Training +341480,Employment and Training,Employment and Training +341479,Employment and Training,Employment and Training +341478,Employment and Training,Employment and Training +341476,Employment and Training,Employment and Training +341475,Employment and Training,Employment and Training +341473,Employment and Training,Employment and Training +341471,Employment and Training,Employment and Training +341470,Employment and Training,Employment and Training +341469,Employment and Training,Employment and Training +341468,Employment and Training,Employment and Training +516966,Employment and Training,Employment and Training +511817,Employment and Training,Employment and Training +509133,Employment and Training,Employment and Training +503398,Employment and Training,Employment and Training +497228,Employment and Training,Employment and Training +496961,Employment and Training,Employment and Training +496874,Employment and Training,Employment and Training +486088,Employment and Training,Employment and Training +465257,Employment and Training,Employment and Training +463022,Employment and Training,Employment and Training +462012,Employment and Training,Employment and Training +451176,Employment and Training,Employment and Training +449161,Employment and Training,Employment and Training +448744,Employment and Training,Employment and Training +448484,Employment and Training,Employment and Training +442829,Employment and Training,Employment and Training +439826,Employment and Training,Employment and Training +428978,Employment and Training,Employment and Training +427685,Employment and Training,Employment and Training +427651,Employment and Training,Employment and Training +425153,Employment and Training,Employment and Training +425147,Employment and Training,Employment and Training +425143,Employment and Training,Employment and Training +425140,Employment and Training,Employment and Training +425133,Employment and Training,Employment and Training +425130,Employment and Training,Employment and Training +425099,Employment and Training,Employment and Training +425097,Employment and Training,Employment and Training +425095,Employment and Training,Employment and Training +425094,Employment and Training,Employment and Training +425093,Employment and Training,Employment and Training +425092,Employment and Training,Employment and Training +425091,Employment and Training,Employment and Training +425090,Employment and Training,Employment and Training +425089,Employment and Training,Employment and Training +425088,Employment and Training,Employment and Training +425086,Employment and Training,Employment and Training +425083,Employment and Training,Employment and Training +425082,Employment and Training,Employment and Training +425081,Employment and Training,Employment and Training +425080,Employment and Training,Employment and Training +425078,Employment and Training,Employment and Training +425077,Employment and Training,Employment and Training +425075,Employment and Training,Employment and Training +425072,Employment and Training,Employment and Training +425071,Employment and Training,Employment and Training +425069,Employment and Training,Employment and Training +425068,Employment and Training,Employment and Training +425067,Employment and Training,Employment and Training +425065,Employment and Training,Employment and Training +425064,Employment and Training,Employment and Training +425060,Employment and Training,Employment and Training +425058,Employment and Training,Employment and Training +425057,Employment and Training,Employment and Training +425055,Employment and Training,Employment and Training +425054,Employment and Training,Employment and Training +425053,Employment and Training,Employment and Training +415959,Employment and Training,Employment and Training +414297,Employment and Training,Employment and Training +410362,Employment and Training,Employment and Training +409642,Employment and Training,Employment and Training +397507,Employment and Training,Employment and Training +397506,Employment and Training,Employment and Training +397504,Employment and Training,Employment and Training +397494,Employment and Training,Employment and Training +374035,Energy,Energy +373863,Energy,Energy +249649,Energy,Energy +378237,Energy,Energy +375110,Energy,Energy +461281,Environment,Environment +460867,Environment,Environment +168594,Environment,Environment +374020,Environment,Environment +374018,Environment,Environment +374017,Environment,Environment +374016,Environment,Environment +374015,Environment,Environment +374012,Environment,Environment +373921,Environment,Environment +373919,Environment,Environment +373915,Environment,Environment +373907,Environment,Environment +373872,Environment,Environment +373871,Environment,Environment +373870,Environment,Environment +373869,Environment,Environment +373867,Environment,Environment +373863,Environment,Environment +444148,Environment,Environment +444147,Environment,Environment +442829,Environment,Environment +441034,Environment,Environment +439826,Environment,Environment +436363,Environment,Environment +433417,Environment,Environment +430225,Environment,Environment +430097,Environment,Environment +423360,Environment,Environment +422970,Environment,Environment +410362,Environment,Environment +397560,Environment,Environment +392957,Environment,Environment +392160,Environment,Environment +391947,Environment,Environment +388880,Environment,Environment +387994,Environment,Environment +387990,Environment,Environment +387985,Environment,Environment +386312,Environment,Environment +385189,Environment,Environment +378237,Environment,Environment +377428,Environment,Environment +375111,Environment,Environment +375110,Environment,Environment +375108,Environment,Environment +374555,Environment,Environment +374036,Environment,Environment +374035,Environment,Environment +374034,Environment,Environment +374033,Environment,Environment +374032,Environment,Environment +374030,Environment,Environment +374029,Environment,Environment +374028,Environment,Environment +374027,Environment,Environment +374024,Environment,Environment +495007,Environment,Environment +463747,Environment,Environment +362782,Immigration,Immigration +543192,Immigration,Immigration +81898,Immigration,Immigration +79277,Immigration,Immigration +147859,Immigration,Immigration +310263,Immigration,Immigration +310262,Immigration,Immigration +310251,Immigration,Immigration +310249,Immigration,Immigration +310248,Immigration,Immigration +310247,Immigration,Immigration +310237,Immigration,Immigration +310233,Immigration,Immigration +310228,Immigration,Immigration +310227,Immigration,Immigration +310226,Immigration,Immigration +310224,Immigration,Immigration +310222,Immigration,Immigration +310219,Immigration,Immigration +310216,Immigration,Immigration +310212,Immigration,Immigration +310207,Immigration,Immigration +310206,Immigration,Immigration +310203,Immigration,Immigration +310202,Immigration,Immigration +310201,Immigration,Immigration +310197,Immigration,Immigration +310194,Immigration,Immigration +310190,Immigration,Immigration +310187,Immigration,Immigration +310183,Immigration,Immigration +310182,Immigration,Immigration +310007,Immigration,Immigration +310006,Immigration,Immigration +310005,Immigration,Immigration +310003,Immigration,Immigration +310002,Immigration,Immigration +310000,Immigration,Immigration +309999,Immigration,Immigration +289490,Immigration,Immigration +289489,Immigration,Immigration +273809,Immigration,Immigration +245835,Immigration,Immigration +227954,Immigration,Immigration +399742,Immigration,Immigration +392957,Immigration,Immigration +392160,Immigration,Immigration +387990,Immigration,Immigration +379604,Immigration,Immigration +379603,Immigration,Immigration +378237,Immigration,Immigration +376565,Immigration,Immigration +375619,Immigration,Immigration +375111,Immigration,Immigration +375110,Immigration,Immigration +375109,Immigration,Immigration +374558,Immigration,Immigration +374031,Immigration,Immigration +374030,Immigration,Immigration +374029,Immigration,Immigration +374028,Immigration,Immigration +374027,Immigration,Immigration +374026,Immigration,Immigration +374025,Immigration,Immigration +374024,Immigration,Immigration +374023,Immigration,Immigration +374022,Immigration,Immigration +374021,Immigration,Immigration +374020,Immigration,Immigration +374018,Immigration,Immigration +374017,Immigration,Immigration +374016,Immigration,Immigration +373923,Immigration,Immigration +373921,Immigration,Immigration +373916,Immigration,Immigration +373868,Immigration,Immigration +373866,Immigration,Immigration +373865,Immigration,Immigration +373864,Immigration,Immigration +373863,Immigration,Immigration +341442,Industry,Industry +338639,Industry,Industry +379603,Industry,Industry +378237,Industry,Industry +375110,Industry,Industry +375108,Industry,Industry +374036,Industry,Industry +374014,Industry,Industry +374013,Industry,Industry +373871,Industry,Industry +373865,Industry,Industry +425056,Infrastructure,Infrastructure +423360,Infrastructure,Infrastructure +81898,Infrastructure,Infrastructure +76239,Infrastructure,Infrastructure +168594,Infrastructure,Infrastructure +168590,Infrastructure,Infrastructure +100656,Infrastructure,Infrastructure +249656,Infrastructure,Infrastructure +249649,Infrastructure,Infrastructure +182847,Infrastructure,Infrastructure +341478,Infrastructure,Infrastructure +341476,Infrastructure,Infrastructure +341475,Infrastructure,Infrastructure +341473,Infrastructure,Infrastructure +341471,Infrastructure,Infrastructure +341470,Infrastructure,Infrastructure +341469,Infrastructure,Infrastructure +341468,Infrastructure,Infrastructure +341466,Infrastructure,Infrastructure +341464,Infrastructure,Infrastructure +341463,Infrastructure,Infrastructure +341461,Infrastructure,Infrastructure +341459,Infrastructure,Infrastructure +341457,Infrastructure,Infrastructure +341443,Infrastructure,Infrastructure +341441,Infrastructure,Infrastructure +341440,Infrastructure,Infrastructure +341439,Infrastructure,Infrastructure +341438,Infrastructure,Infrastructure +341437,Infrastructure,Infrastructure +333535,Infrastructure,Infrastructure +332591,Infrastructure,Infrastructure +319079,Infrastructure,Infrastructure +319077,Infrastructure,Infrastructure +310263,Infrastructure,Infrastructure +310262,Infrastructure,Infrastructure +310251,Infrastructure,Infrastructure +310249,Infrastructure,Infrastructure +310248,Infrastructure,Infrastructure +310247,Infrastructure,Infrastructure +310237,Infrastructure,Infrastructure +310233,Infrastructure,Infrastructure +310231,Infrastructure,Infrastructure +310228,Infrastructure,Infrastructure +310227,Infrastructure,Infrastructure +310226,Infrastructure,Infrastructure +310224,Infrastructure,Infrastructure +310222,Infrastructure,Infrastructure +310219,Infrastructure,Infrastructure +310216,Infrastructure,Infrastructure +310212,Infrastructure,Infrastructure +310207,Infrastructure,Infrastructure +310206,Infrastructure,Infrastructure +310203,Infrastructure,Infrastructure +310202,Infrastructure,Infrastructure +310201,Infrastructure,Infrastructure +310197,Infrastructure,Infrastructure +310194,Infrastructure,Infrastructure +310190,Infrastructure,Infrastructure +310187,Infrastructure,Infrastructure +310183,Infrastructure,Infrastructure +310182,Infrastructure,Infrastructure +310007,Infrastructure,Infrastructure +310006,Infrastructure,Infrastructure +310005,Infrastructure,Infrastructure +310003,Infrastructure,Infrastructure +310002,Infrastructure,Infrastructure +310000,Infrastructure,Infrastructure +309999,Infrastructure,Infrastructure +289489,Infrastructure,Infrastructure +422970,Infrastructure,Infrastructure +418433,Infrastructure,Infrastructure +418328,Infrastructure,Infrastructure +418327,Infrastructure,Infrastructure +417693,Infrastructure,Infrastructure +415959,Infrastructure,Infrastructure +414297,Infrastructure,Infrastructure +413881,Infrastructure,Infrastructure +410505,Infrastructure,Infrastructure +399432,Infrastructure,Infrastructure +399384,Infrastructure,Infrastructure +397560,Infrastructure,Infrastructure +397550,Infrastructure,Infrastructure +397512,Infrastructure,Infrastructure +397505,Infrastructure,Infrastructure +397503,Infrastructure,Infrastructure +397501,Infrastructure,Infrastructure +397500,Infrastructure,Infrastructure +397499,Infrastructure,Infrastructure +397496,Infrastructure,Infrastructure +397494,Infrastructure,Infrastructure +397493,Infrastructure,Infrastructure +397492,Infrastructure,Infrastructure +397489,Infrastructure,Infrastructure +397482,Infrastructure,Infrastructure +397481,Infrastructure,Infrastructure +397478,Infrastructure,Infrastructure +397476,Infrastructure,Infrastructure +397475,Infrastructure,Infrastructure +397473,Infrastructure,Infrastructure +397472,Infrastructure,Infrastructure +397471,Infrastructure,Infrastructure +397470,Infrastructure,Infrastructure +397468,Infrastructure,Infrastructure +397467,Infrastructure,Infrastructure +397465,Infrastructure,Infrastructure +392957,Infrastructure,Infrastructure +392160,Infrastructure,Infrastructure +391947,Infrastructure,Infrastructure +391909,Infrastructure,Infrastructure +391898,Infrastructure,Infrastructure +389390,Infrastructure,Infrastructure +389207,Infrastructure,Infrastructure +388880,Infrastructure,Infrastructure +387994,Infrastructure,Infrastructure +387990,Infrastructure,Infrastructure +387985,Infrastructure,Infrastructure +386570,Infrastructure,Infrastructure +386312,Infrastructure,Infrastructure +385189,Infrastructure,Infrastructure +381788,Infrastructure,Infrastructure +379603,Infrastructure,Infrastructure +378237,Infrastructure,Infrastructure +376565,Infrastructure,Infrastructure +375619,Infrastructure,Infrastructure +375111,Infrastructure,Infrastructure +375110,Infrastructure,Infrastructure +375109,Infrastructure,Infrastructure +375108,Infrastructure,Infrastructure +374555,Infrastructure,Infrastructure +374036,Infrastructure,Infrastructure +374035,Infrastructure,Infrastructure +374034,Infrastructure,Infrastructure +374033,Infrastructure,Infrastructure +374032,Infrastructure,Infrastructure +374031,Infrastructure,Infrastructure +374030,Infrastructure,Infrastructure +374029,Infrastructure,Infrastructure +374028,Infrastructure,Infrastructure +374027,Infrastructure,Infrastructure +374025,Infrastructure,Infrastructure +374024,Infrastructure,Infrastructure +374022,Infrastructure,Infrastructure +374021,Infrastructure,Infrastructure +374020,Infrastructure,Infrastructure +374018,Infrastructure,Infrastructure +374017,Infrastructure,Infrastructure +374016,Infrastructure,Infrastructure +374015,Infrastructure,Infrastructure +374012,Infrastructure,Infrastructure +373923,Infrastructure,Infrastructure +373921,Infrastructure,Infrastructure +373919,Infrastructure,Infrastructure +373916,Infrastructure,Infrastructure +373915,Infrastructure,Infrastructure +373907,Infrastructure,Infrastructure +373872,Infrastructure,Infrastructure +373871,Infrastructure,Infrastructure +373870,Infrastructure,Infrastructure +373869,Infrastructure,Infrastructure +373867,Infrastructure,Infrastructure +373866,Infrastructure,Infrastructure +373865,Infrastructure,Infrastructure +373864,Infrastructure,Infrastructure +373863,Infrastructure,Infrastructure +370658,Infrastructure,Infrastructure +369869,Infrastructure,Infrastructure +341488,Infrastructure,Infrastructure +341487,Infrastructure,Infrastructure +341485,Infrastructure,Infrastructure +341483,Infrastructure,Infrastructure +341482,Infrastructure,Infrastructure +341481,Infrastructure,Infrastructure +341480,Infrastructure,Infrastructure +341479,Infrastructure,Infrastructure +517751,Infrastructure,Infrastructure +516393,Infrastructure,Infrastructure +504000,Infrastructure,Infrastructure +495007,Infrastructure,Infrastructure +485586,Infrastructure,Infrastructure +463747,Infrastructure,Infrastructure +463124,Infrastructure,Infrastructure +461281,Infrastructure,Infrastructure +460984,Infrastructure,Infrastructure +460867,Infrastructure,Infrastructure +460319,Infrastructure,Infrastructure +453774,Infrastructure,Infrastructure +451176,Infrastructure,Infrastructure +448458,Infrastructure,Infrastructure +448412,Infrastructure,Infrastructure +445975,Infrastructure,Infrastructure +444148,Infrastructure,Infrastructure +444147,Infrastructure,Infrastructure +442829,Infrastructure,Infrastructure +441034,Infrastructure,Infrastructure +439826,Infrastructure,Infrastructure +436363,Infrastructure,Infrastructure +433417,Infrastructure,Infrastructure +431997,Infrastructure,Infrastructure +430225,Infrastructure,Infrastructure +430097,Infrastructure,Infrastructure +427651,Infrastructure,Infrastructure +425149,Infrastructure,Infrastructure +425148,Infrastructure,Infrastructure +425145,Infrastructure,Infrastructure +425144,Infrastructure,Infrastructure +425142,Infrastructure,Infrastructure +425140,Infrastructure,Infrastructure +425138,Infrastructure,Infrastructure +425136,Infrastructure,Infrastructure +425135,Infrastructure,Infrastructure +425134,Infrastructure,Infrastructure +425133,Infrastructure,Infrastructure +425132,Infrastructure,Infrastructure +425131,Infrastructure,Infrastructure +425130,Infrastructure,Infrastructure +425097,Infrastructure,Infrastructure +425095,Infrastructure,Infrastructure +425094,Infrastructure,Infrastructure +425092,Infrastructure,Infrastructure +425090,Infrastructure,Infrastructure +425089,Infrastructure,Infrastructure +425087,Infrastructure,Infrastructure +425085,Infrastructure,Infrastructure +425084,Infrastructure,Infrastructure +425079,Infrastructure,Infrastructure +425077,Infrastructure,Infrastructure +425076,Infrastructure,Infrastructure +425063,Infrastructure,Infrastructure +425062,Infrastructure,Infrastructure +425060,Infrastructure,Infrastructure +425059,Infrastructure,Infrastructure +373864,Internal Trade,Internal Trade +338643,Internal Trade,Internal Trade +147860,Internal Trade,Internal Trade +147859,Internal Trade,Internal Trade +81896,Internal Trade,Internal Trade +375111,Internal Trade,Internal Trade +369869,International Relations,International Relations +446697,International Trade,International Trade +444473,International Trade,International Trade +147860,International Trade,International Trade +375111,International Trade,International Trade +373864,International Trade,International Trade +397909,International Trade,International Trade +397494,Labour,Labour +397488,Labour,Labour +125554,Labour,Labour +81898,Labour,Labour +397485,Labour,Labour +397484,Labour,Labour +397483,Labour,Labour +397480,Labour,Labour +397469,Labour,Labour +397466,Labour,Labour +393964,Labour,Labour +392160,Labour,Labour +391909,Labour,Labour +391898,Labour,Labour +389619,Labour,Labour +387985,Labour,Labour +385934,Labour,Labour +379604,Labour,Labour +375619,Labour,Labour +375111,Labour,Labour +375109,Labour,Labour +374024,Labour,Labour +374014,Labour,Labour +373916,Labour,Labour +373863,Labour,Labour +362782,Labour,Labour +338636,Labour,Labour +333536,Labour,Labour +328016,Labour,Labour +309999,Labour,Labour +289509,Labour,Labour +289490,Labour,Labour +249656,Labour,Labour +516966,Labour,Labour +509133,Labour,Labour +504496,Labour,Labour +497227,Labour,Labour +465257,Labour,Labour +444569,Labour,Labour +444473,Labour,Labour +428978,Labour,Labour +427685,Labour,Labour +425153,Labour,Labour +425147,Labour,Labour +425143,Labour,Labour +425130,Labour,Labour +425091,Labour,Labour +425089,Labour,Labour +425088,Labour,Labour +425086,Labour,Labour +425083,Labour,Labour +425082,Labour,Labour +425081,Labour,Labour +425078,Labour,Labour +425077,Labour,Labour +425072,Labour,Labour +425071,Labour,Labour +425067,Labour,Labour +425065,Labour,Labour +425064,Labour,Labour +425060,Labour,Labour +425057,Labour,Labour +425055,Labour,Labour +425054,Labour,Labour +425053,Labour,Labour +397507,Labour,Labour +397506,Labour,Labour +379603,Regional Development,Regional Development +485586,Transportation,Transportation +460984,Transportation,Transportation +81898,Transportation,Transportation +377428,Transportation,Transportation +375108,Transportation,Transportation +374035,Transportation,Transportation +374015,Transportation,Transportation +373919,Transportation,Transportation +373916,Transportation,Transportation +373907,Transportation,Transportation +373870,Transportation,Transportation +310231,Transportation,Transportation +165026,Environment,Environment +164805,Environment,Environment +141782,Environment,Environment +135705,Environment,Environment +108059,Environment,Environment +87234,Environment,Environment +220527,Environment,Environment +174086,Environment,Environment +168013,Environment,Environment +166445,Environment,Environment +225816,Financial Institutions,Financial Institutions +225815,Financial Institutions,Financial Institutions +78835,Financial Institutions,Financial Institutions +78834,Financial Institutions,Financial Institutions +75974,Financial Institutions,Financial Institutions +148957,Financial Institutions,Financial Institutions +134865,Financial Institutions,Financial Institutions +134254,Financial Institutions,Financial Institutions +131594,Financial Institutions,Financial Institutions +131094,Financial Institutions,Financial Institutions +122794,Financial Institutions,Financial Institutions +121436,Financial Institutions,Financial Institutions +121435,Financial Institutions,Financial Institutions +196556,Financial Institutions,Financial Institutions +165425,Financial Institutions,Financial Institutions +165424,Financial Institutions,Financial Institutions +165124,Financial Institutions,Financial Institutions +148212,Industry,Industry +97315,Taxation and Finance,Taxation and Finance +148210,Taxation and Finance,Taxation and Finance +148208,Taxation and Finance,Taxation and Finance +138487,Taxation and Finance,Taxation and Finance +100913,Taxation and Finance,Taxation and Finance +383465,Intellectual Property,Intellectual Property +364784,Intellectual Property,Intellectual Property +106297,Intellectual Property,Intellectual Property +106295,Intellectual Property,Intellectual Property +100803,Intellectual Property,Intellectual Property +100801,Intellectual Property,Intellectual Property +96834,Intellectual Property,Intellectual Property +96138,Intellectual Property,Intellectual Property +163907,Intellectual Property,Intellectual Property +162288,Intellectual Property,Intellectual Property +159948,Intellectual Property,Intellectual Property +159946,Intellectual Property,Intellectual Property +159944,Intellectual Property,Intellectual Property +159943,Intellectual Property,Intellectual Property +157094,Intellectual Property,Intellectual Property +154896,Intellectual Property,Intellectual Property +153359,Intellectual Property,Intellectual Property +150380,Intellectual Property,Intellectual Property +150379,Intellectual Property,Intellectual Property +149671,Intellectual Property,Intellectual Property +145936,Intellectual Property,Intellectual Property +142877,Intellectual Property,Intellectual Property +142876,Intellectual Property,Intellectual Property +138409,Intellectual Property,Intellectual Property +135574,Intellectual Property,Intellectual Property +132846,Intellectual Property,Intellectual Property +132840,Intellectual Property,Intellectual Property +132837,Intellectual Property,Intellectual Property +132836,Intellectual Property,Intellectual Property +124339,Intellectual Property,Intellectual Property +121126,Intellectual Property,Intellectual Property +117705,Intellectual Property,Intellectual Property +106298,Intellectual Property,Intellectual Property +304330,Intellectual Property,Intellectual Property +304329,Intellectual Property,Intellectual Property +290990,Intellectual Property,Intellectual Property +290988,Intellectual Property,Intellectual Property +230354,Intellectual Property,Intellectual Property +207585,Intellectual Property,Intellectual Property +200413,Intellectual Property,Intellectual Property +200411,Intellectual Property,Intellectual Property +200406,Intellectual Property,Intellectual Property +200404,Intellectual Property,Intellectual Property +200397,Intellectual Property,Intellectual Property +194918,Intellectual Property,Intellectual Property +194917,Intellectual Property,Intellectual Property +189546,Intellectual Property,Intellectual Property +189545,Intellectual Property,Intellectual Property +189542,Intellectual Property,Intellectual Property +185926,Intellectual Property,Intellectual Property +185925,Intellectual Property,Intellectual Property +185924,Intellectual Property,Intellectual Property +185922,Intellectual Property,Intellectual Property +185921,Intellectual Property,Intellectual Property +185920,Intellectual Property,Intellectual Property +175495,Intellectual Property,Intellectual Property +430427,Intellectual Property,Intellectual Property +430426,Intellectual Property,Intellectual Property +430425,Intellectual Property,Intellectual Property +430424,Intellectual Property,Intellectual Property +383469,Intellectual Property,Intellectual Property +507280,Environment,Environment +507276,Environment,Environment +157415,Environment,Environment +157056,Environment,Environment +157051,Environment,Environment +280089,Environment,Environment +277775,Environment,Environment +160471,Environment,Environment +311929,Environment,Environment +409005,Environment,Environment +507410,Environment,Environment +433685,Health,Health +428724,Health,Health +173494,Health,Health +459908,Health,Health +459018,Health,Health +457889,Health,Health +455709,Health,Health +452211,Health,Health +452032,Health,Health +443873,Health,Health +190067,Intellectual Property,Intellectual Property +160409,Intellectual Property,Intellectual Property +88007,Intellectual Property,Intellectual Property +88003,Intellectual Property,Intellectual Property +154873,Intellectual Property,Intellectual Property +152112,Intellectual Property,Intellectual Property +138395,Intellectual Property,Intellectual Property +118182,Intellectual Property,Intellectual Property +118179,Intellectual Property,Intellectual Property +118178,Intellectual Property,Intellectual Property +118177,Intellectual Property,Intellectual Property +118176,Intellectual Property,Intellectual Property +277775,Intellectual Property,Intellectual Property +263460,Intellectual Property,Intellectual Property +507426,International Trade,International Trade +507423,International Trade,International Trade +132436,International Trade,International Trade +130074,International Trade,International Trade +114460,International Trade,International Trade +114459,International Trade,International Trade +207364,International Trade,International Trade +180381,International Trade,International Trade +161731,International Trade,International Trade +330062,International Trade,International Trade +273604,International Trade,International Trade +263569,International Trade,International Trade +251509,International Trade,International Trade +447915,International Trade,International Trade +447911,International Trade,International Trade +534691,International Trade,International Trade +518290,Health,Health +518285,Health,Health +76097,Health,Health +76096,Health,Health +149167,Health,Health +149166,Health,Health +146094,Health,Health +146091,Health,Health +146088,Health,Health +146087,Health,Health +110015,Health,Health +110014,Health,Health +94041,Health,Health +94034,Health,Health +354040,Health,Health +354038,Health,Health +351581,Health,Health +330263,Health,Health +259529,Health,Health +233222,Health,Health +226601,Health,Health +212612,Health,Health +200530,Health,Health +168975,Health,Health +168974,Health,Health +168972,Health,Health +163821,Health,Health +163818,Health,Health +154790,Health,Health +154787,Health,Health +154786,Health,Health +419890,Health,Health +419889,Health,Health +419888,Health,Health +417614,Health,Health +417613,Health,Health +412424,Health,Health +412422,Health,Health +410191,Health,Health +410154,Health,Health +406313,Health,Health +405802,Health,Health +405801,Health,Health +395253,Health,Health +395081,Health,Health +395078,Health,Health +395076,Health,Health +395075,Health,Health +394137,Health,Health +376958,Health,Health +375830,Health,Health +370599,Health,Health +370480,Health,Health +370476,Health,Health +362342,Health,Health +514812,Health,Health +514266,Health,Health +513384,Health,Health +513377,Health,Health +513376,Health,Health +511160,Health,Health +511145,Health,Health +511144,Health,Health +511138,Health,Health +508872,Health,Health +506051,Health,Health +506050,Health,Health +500986,Health,Health +500983,Health,Health +500982,Health,Health +498876,Health,Health +498872,Health,Health +498870,Health,Health +498868,Health,Health +495757,Health,Health +495755,Health,Health +495753,Health,Health +494186,Health,Health +494183,Health,Health +491749,Health,Health +491740,Health,Health +491596,Health,Health +491379,Health,Health +491359,Health,Health +487484,Health,Health +487478,Health,Health +487469,Health,Health +487465,Health,Health +487457,Health,Health +478788,Health,Health +473630,Health,Health +470669,Health,Health +466145,Health,Health +466144,Health,Health +466141,Health,Health +466137,Health,Health +466134,Health,Health +464862,Health,Health +461116,Health,Health +460626,Health,Health +456135,Health,Health +453761,Health,Health +453760,Health,Health +452632,Health,Health +452625,Health,Health +451200,Health,Health +451199,Health,Health +450441,Health,Health +447698,Health,Health +447694,Health,Health +436401,Health,Health +435874,Health,Health +435866,Health,Health +435854,Health,Health +433918,Health,Health +433914,Health,Health +433912,Health,Health +433911,Health,Health +432621,Health,Health +432619,Health,Health +424997,Health,Health +424477,Health,Health +424476,Health,Health +424475,Health,Health +421328,Health,Health +421327,Health,Health +421326,Health,Health +421324,Health,Health +421323,Health,Health +544198,Health,Health +544195,Health,Health +540516,Health,Health +537999,Health,Health +537998,Health,Health +535813,Health,Health +532004,Health,Health +527128,Health,Health +527127,Health,Health +527124,Health,Health +522957,Health,Health +520186,Health,Health +511145,Industry,Industry +511138,Industry,Industry +146634,Industry,Industry +146094,Industry,Industry +146091,Industry,Industry +126594,Industry,Industry +116354,Industry,Industry +110014,Industry,Industry +94041,Industry,Industry +94034,Industry,Industry +233225,Industry,Industry +233224,Industry,Industry +233223,Industry,Industry +233222,Industry,Industry +207219,Industry,Industry +200533,Industry,Industry +200530,Industry,Industry +168975,Industry,Industry +168974,Industry,Industry +168973,Industry,Industry +163820,Industry,Industry +163819,Industry,Industry +163818,Industry,Industry +161230,Industry,Industry +154790,Industry,Industry +154787,Industry,Industry +154786,Industry,Industry +149167,Industry,Industry +149166,Industry,Industry +370599,Industry,Industry +370480,Industry,Industry +370476,Industry,Industry +354038,Industry,Industry +344055,Industry,Industry +325690,Industry,Industry +310829,Industry,Industry +297049,Industry,Industry +259518,Industry,Industry +394136,Industry,Industry +376958,Industry,Industry +375830,Industry,Industry +508862,Industry,Industry +506051,Industry,Industry +506050,Industry,Industry +500986,Industry,Industry +500985,Industry,Industry +500983,Industry,Industry +498828,Industry,Industry +494186,Industry,Industry +494184,Industry,Industry +491596,Industry,Industry +487469,Industry,Industry +487465,Industry,Industry +487457,Industry,Industry +466145,Industry,Industry +466144,Industry,Industry +466141,Industry,Industry +466137,Industry,Industry +466134,Industry,Industry +464862,Industry,Industry +456135,Industry,Industry +453761,Industry,Industry +453760,Industry,Industry +452632,Industry,Industry +452625,Industry,Industry +451200,Industry,Industry +451199,Industry,Industry +450441,Industry,Industry +447698,Industry,Industry +447694,Industry,Industry +436401,Industry,Industry +435866,Industry,Industry +435854,Industry,Industry +433912,Industry,Industry +432621,Industry,Industry +432619,Industry,Industry +424997,Industry,Industry +424477,Industry,Industry +424476,Industry,Industry +424475,Industry,Industry +421328,Industry,Industry +421326,Industry,Industry +421324,Industry,Industry +421323,Industry,Industry +419890,Industry,Industry +419889,Industry,Industry +417614,Industry,Industry +417613,Industry,Industry +410191,Industry,Industry +410154,Industry,Industry +544196,Industry,Industry +540516,Industry,Industry +540174,Industry,Industry +537999,Industry,Industry +537998,Industry,Industry +535813,Industry,Industry +532006,Industry,Industry +529298,Industry,Industry +529292,Industry,Industry +529285,Industry,Industry +527128,Industry,Industry +527127,Industry,Industry +527126,Industry,Industry +527124,Industry,Industry +522956,Industry,Industry +522955,Industry,Industry +520188,Industry,Industry +513384,Industry,Industry +466134,Intellectual Property,Intellectual Property +450441,Intellectual Property,Intellectual Property +76097,Intellectual Property,Intellectual Property +76096,Intellectual Property,Intellectual Property +116354,Intellectual Property,Intellectual Property +110017,Intellectual Property,Intellectual Property +110014,Intellectual Property,Intellectual Property +94041,Intellectual Property,Intellectual Property +94034,Intellectual Property,Intellectual Property +154790,Intellectual Property,Intellectual Property +154786,Intellectual Property,Intellectual Property +149167,Intellectual Property,Intellectual Property +149166,Intellectual Property,Intellectual Property +146094,Intellectual Property,Intellectual Property +146091,Intellectual Property,Intellectual Property +146088,Intellectual Property,Intellectual Property +146087,Intellectual Property,Intellectual Property +126594,Intellectual Property,Intellectual Property +297049,Intellectual Property,Intellectual Property +259518,Intellectual Property,Intellectual Property +233225,Intellectual Property,Intellectual Property +233224,Intellectual Property,Intellectual Property +233223,Intellectual Property,Intellectual Property +233222,Intellectual Property,Intellectual Property +230700,Intellectual Property,Intellectual Property +230699,Intellectual Property,Intellectual Property +230698,Intellectual Property,Intellectual Property +230696,Intellectual Property,Intellectual Property +226602,Intellectual Property,Intellectual Property +207219,Intellectual Property,Intellectual Property +200533,Intellectual Property,Intellectual Property +200530,Intellectual Property,Intellectual Property +194780,Intellectual Property,Intellectual Property +194763,Intellectual Property,Intellectual Property +194752,Intellectual Property,Intellectual Property +194744,Intellectual Property,Intellectual Property +194733,Intellectual Property,Intellectual Property +168975,Intellectual Property,Intellectual Property +168974,Intellectual Property,Intellectual Property +168973,Intellectual Property,Intellectual Property +163821,Intellectual Property,Intellectual Property +163820,Intellectual Property,Intellectual Property +163819,Intellectual Property,Intellectual Property +163818,Intellectual Property,Intellectual Property +161230,Intellectual Property,Intellectual Property +159525,Intellectual Property,Intellectual Property +159524,Intellectual Property,Intellectual Property +435854,Intellectual Property,Intellectual Property +410191,Intellectual Property,Intellectual Property +410149,Intellectual Property,Intellectual Property +410147,Intellectual Property,Intellectual Property +405801,Intellectual Property,Intellectual Property +397821,Intellectual Property,Intellectual Property +395253,Intellectual Property,Intellectual Property +395078,Intellectual Property,Intellectual Property +395076,Intellectual Property,Intellectual Property +395075,Intellectual Property,Intellectual Property +394136,Intellectual Property,Intellectual Property +392749,Intellectual Property,Intellectual Property +376958,Intellectual Property,Intellectual Property +375830,Intellectual Property,Intellectual Property +370599,Intellectual Property,Intellectual Property +370480,Intellectual Property,Intellectual Property +370476,Intellectual Property,Intellectual Property +354038,Intellectual Property,Intellectual Property +351580,Intellectual Property,Intellectual Property +347459,Intellectual Property,Intellectual Property +347458,Intellectual Property,Intellectual Property +310830,Intellectual Property,Intellectual Property +310829,Intellectual Property,Intellectual Property +544196,Intellectual Property,Intellectual Property +537999,Intellectual Property,Intellectual Property +537998,Intellectual Property,Intellectual Property +527127,Intellectual Property,Intellectual Property +522957,Intellectual Property,Intellectual Property +511160,Intellectual Property,Intellectual Property +508876,Intellectual Property,Intellectual Property +508862,Intellectual Property,Intellectual Property +508860,Intellectual Property,Intellectual Property +506051,Intellectual Property,Intellectual Property +537999,International Trade,International Trade +537998,International Trade,International Trade +154787,International Trade,International Trade +149167,International Trade,International Trade +149166,International Trade,International Trade +146094,International Trade,International Trade +146091,International Trade,International Trade +94041,International Trade,International Trade +212611,International Trade,International Trade +212608,International Trade,International Trade +200530,International Trade,International Trade +194780,International Trade,International Trade +194763,International Trade,International Trade +194752,International Trade,International Trade +194744,International Trade,International Trade +194733,International Trade,International Trade +168974,International Trade,International Trade +168973,International Trade,International Trade +161230,International Trade,International Trade +325690,International Trade,International Trade +310830,International Trade,International Trade +310829,International Trade,International Trade +230700,International Trade,International Trade +230699,International Trade,International Trade +230698,International Trade,International Trade +230696,International Trade,International Trade +417613,International Trade,International Trade +410149,International Trade,International Trade +410147,International Trade,International Trade +405801,International Trade,International Trade +397821,International Trade,International Trade +394136,International Trade,International Trade +392749,International Trade,International Trade +375830,International Trade,International Trade +370599,International Trade,International Trade +370480,International Trade,International Trade +370476,International Trade,International Trade +354038,International Trade,International Trade +347459,International Trade,International Trade +347458,International Trade,International Trade +344055,International Trade,International Trade +527127,International Trade,International Trade +514810,International Trade,International Trade +511160,International Trade,International Trade +508876,International Trade,International Trade +508862,International Trade,International Trade +508860,International Trade,International Trade +506051,International Trade,International Trade +500996,International Trade,International Trade +500993,International Trade,International Trade +500986,International Trade,International Trade +500985,International Trade,International Trade +498858,International Trade,International Trade +498851,International Trade,International Trade +498828,International Trade,International Trade +498817,International Trade,International Trade +498789,International Trade,International Trade +495773,International Trade,International Trade +495760,International Trade,International Trade +495759,International Trade,International Trade +495758,International Trade,International Trade +495752,International Trade,International Trade +460626,International Trade,International Trade +452632,International Trade,International Trade +452625,International Trade,International Trade +435854,International Trade,International Trade +421327,International Trade,International Trade +419890,International Trade,International Trade +419889,International Trade,International Trade +419888,International Trade,International Trade +540516,International Trade,International Trade +415614,Constitutional Issues,Constitutional Issues +405048,Constitutional Issues,Constitutional Issues +272833,Constitutional Issues,Constitutional Issues +223205,Constitutional Issues,Constitutional Issues +335365,Constitutional Issues,Constitutional Issues +296310,Constitutional Issues,Constitutional Issues +383191,Constitutional Issues,Constitutional Issues +340832,Constitutional Issues,Constitutional Issues +408835,Consumer Issues,Consumer Issues +406334,Consumer Issues,Consumer Issues +167989,Consumer Issues,Consumer Issues +167987,Consumer Issues,Consumer Issues +167985,Consumer Issues,Consumer Issues +167093,Consumer Issues,Consumer Issues +167092,Consumer Issues,Consumer Issues +164727,Consumer Issues,Consumer Issues +162282,Consumer Issues,Consumer Issues +121363,Consumer Issues,Consumer Issues +121362,Consumer Issues,Consumer Issues +121361,Consumer Issues,Consumer Issues +324351,Consumer Issues,Consumer Issues +323630,Consumer Issues,Consumer Issues +323629,Consumer Issues,Consumer Issues +322049,Consumer Issues,Consumer Issues +313029,Consumer Issues,Consumer Issues +296310,Consumer Issues,Consumer Issues +285013,Consumer Issues,Consumer Issues +272834,Consumer Issues,Consumer Issues +272833,Consumer Issues,Consumer Issues +272831,Consumer Issues,Consumer Issues +272829,Consumer Issues,Consumer Issues +269629,Consumer Issues,Consumer Issues +255509,Consumer Issues,Consumer Issues +244682,Consumer Issues,Consumer Issues +227652,Consumer Issues,Consumer Issues +223210,Consumer Issues,Consumer Issues +223205,Consumer Issues,Consumer Issues +212668,Consumer Issues,Consumer Issues +212667,Consumer Issues,Consumer Issues +384854,Consumer Issues,Consumer Issues +383095,Consumer Issues,Consumer Issues +357865,Consumer Issues,Consumer Issues +340833,Consumer Issues,Consumer Issues +338003,Consumer Issues,Consumer Issues +335365,Consumer Issues,Consumer Issues +331665,Consumer Issues,Consumer Issues +326692,Consumer Issues,Consumer Issues +324462,Consumer Issues,Consumer Issues +324461,Consumer Issues,Consumer Issues +324458,Consumer Issues,Consumer Issues +503000,Consumer Issues,Consumer Issues +497958,Consumer Issues,Consumer Issues +492857,Consumer Issues,Consumer Issues +469930,Consumer Issues,Consumer Issues +468679,Consumer Issues,Consumer Issues +463848,Consumer Issues,Consumer Issues +438083,Consumer Issues,Consumer Issues +438076,Consumer Issues,Consumer Issues +438072,Consumer Issues,Consumer Issues +427705,Consumer Issues,Consumer Issues +427692,Consumer Issues,Consumer Issues +427691,Consumer Issues,Consumer Issues +421094,Consumer Issues,Consumer Issues +509951,Employment and Training,Employment and Training +497959,Employment and Training,Employment and Training +466936,Employment and Training,Employment and Training +466932,Employment and Training,Employment and Training +466927,Employment and Training,Employment and Training +452738,Employment and Training,Employment and Training +406529,Employment and Training,Employment and Training +519320,Employment and Training,Employment and Training +519316,Employment and Training,Employment and Training +463402,Financial Institutions,Financial Institutions +461482,Financial Institutions,Financial Institutions +129614,Financial Institutions,Financial Institutions +77782,Financial Institutions,Financial Institutions +77203,Financial Institutions,Financial Institutions +76338,Financial Institutions,Financial Institutions +202722,Financial Institutions,Financial Institutions +202612,Financial Institutions,Financial Institutions +200770,Financial Institutions,Financial Institutions +200769,Financial Institutions,Financial Institutions +200768,Financial Institutions,Financial Institutions +193269,Financial Institutions,Financial Institutions +174627,Financial Institutions,Financial Institutions +174626,Financial Institutions,Financial Institutions +174098,Financial Institutions,Financial Institutions +167991,Financial Institutions,Financial Institutions +167989,Financial Institutions,Financial Institutions +167987,Financial Institutions,Financial Institutions +167985,Financial Institutions,Financial Institutions +167091,Financial Institutions,Financial Institutions +164729,Financial Institutions,Financial Institutions +164728,Financial Institutions,Financial Institutions +164726,Financial Institutions,Financial Institutions +164725,Financial Institutions,Financial Institutions +161884,Financial Institutions,Financial Institutions +161504,Financial Institutions,Financial Institutions +161503,Financial Institutions,Financial Institutions +160914,Financial Institutions,Financial Institutions +151926,Financial Institutions,Financial Institutions +150657,Financial Institutions,Financial Institutions +150404,Financial Institutions,Financial Institutions +150403,Financial Institutions,Financial Institutions +148718,Financial Institutions,Financial Institutions +353855,Financial Institutions,Financial Institutions +347078,Financial Institutions,Financial Institutions +343786,Financial Institutions,Financial Institutions +343785,Financial Institutions,Financial Institutions +340832,Financial Institutions,Financial Institutions +340830,Financial Institutions,Financial Institutions +338006,Financial Institutions,Financial Institutions +338003,Financial Institutions,Financial Institutions +335714,Financial Institutions,Financial Institutions +335365,Financial Institutions,Financial Institutions +331664,Financial Institutions,Financial Institutions +324462,Financial Institutions,Financial Institutions +324461,Financial Institutions,Financial Institutions +324459,Financial Institutions,Financial Institutions +324458,Financial Institutions,Financial Institutions +324456,Financial Institutions,Financial Institutions +323630,Financial Institutions,Financial Institutions +323629,Financial Institutions,Financial Institutions +315250,Financial Institutions,Financial Institutions +315249,Financial Institutions,Financial Institutions +313029,Financial Institutions,Financial Institutions +309902,Financial Institutions,Financial Institutions +296310,Financial Institutions,Financial Institutions +296309,Financial Institutions,Financial Institutions +285013,Financial Institutions,Financial Institutions +277172,Financial Institutions,Financial Institutions +273383,Financial Institutions,Financial Institutions +272834,Financial Institutions,Financial Institutions +272833,Financial Institutions,Financial Institutions +272831,Financial Institutions,Financial Institutions +272829,Financial Institutions,Financial Institutions +269629,Financial Institutions,Financial Institutions +267629,Financial Institutions,Financial Institutions +255509,Financial Institutions,Financial Institutions +251751,Financial Institutions,Financial Institutions +244683,Financial Institutions,Financial Institutions +244680,Financial Institutions,Financial Institutions +239509,Financial Institutions,Financial Institutions +233949,Financial Institutions,Financial Institutions +233226,Financial Institutions,Financial Institutions +227669,Financial Institutions,Financial Institutions +227652,Financial Institutions,Financial Institutions +223210,Financial Institutions,Financial Institutions +223205,Financial Institutions,Financial Institutions +212668,Financial Institutions,Financial Institutions +212667,Financial Institutions,Financial Institutions +211708,Financial Institutions,Financial Institutions +207212,Financial Institutions,Financial Institutions +207209,Financial Institutions,Financial Institutions +202726,Financial Institutions,Financial Institutions +459332,Financial Institutions,Financial Institutions +458521,Financial Institutions,Financial Institutions +454698,Financial Institutions,Financial Institutions +451511,Financial Institutions,Financial Institutions +449506,Financial Institutions,Financial Institutions +448774,Financial Institutions,Financial Institutions +445106,Financial Institutions,Financial Institutions +445095,Financial Institutions,Financial Institutions +445094,Financial Institutions,Financial Institutions +438083,Financial Institutions,Financial Institutions +438076,Financial Institutions,Financial Institutions +438072,Financial Institutions,Financial Institutions +435051,Financial Institutions,Financial Institutions +435049,Financial Institutions,Financial Institutions +435048,Financial Institutions,Financial Institutions +435045,Financial Institutions,Financial Institutions +433329,Financial Institutions,Financial Institutions +432208,Financial Institutions,Financial Institutions +430398,Financial Institutions,Financial Institutions +430397,Financial Institutions,Financial Institutions +430396,Financial Institutions,Financial Institutions +428417,Financial Institutions,Financial Institutions +428385,Financial Institutions,Financial Institutions +428383,Financial Institutions,Financial Institutions +428378,Financial Institutions,Financial Institutions +428376,Financial Institutions,Financial Institutions +428372,Financial Institutions,Financial Institutions +428365,Financial Institutions,Financial Institutions +428361,Financial Institutions,Financial Institutions +428358,Financial Institutions,Financial Institutions +428351,Financial Institutions,Financial Institutions +428348,Financial Institutions,Financial Institutions +428344,Financial Institutions,Financial Institutions +427705,Financial Institutions,Financial Institutions +427692,Financial Institutions,Financial Institutions +427691,Financial Institutions,Financial Institutions +425967,Financial Institutions,Financial Institutions +425963,Financial Institutions,Financial Institutions +423400,Financial Institutions,Financial Institutions +423399,Financial Institutions,Financial Institutions +418632,Financial Institutions,Financial Institutions +415614,Financial Institutions,Financial Institutions +411743,Financial Institutions,Financial Institutions +411693,Financial Institutions,Financial Institutions +411692,Financial Institutions,Financial Institutions +409090,Financial Institutions,Financial Institutions +409089,Financial Institutions,Financial Institutions +406336,Financial Institutions,Financial Institutions +405050,Financial Institutions,Financial Institutions +405048,Financial Institutions,Financial Institutions +404063,Financial Institutions,Financial Institutions +404062,Financial Institutions,Financial Institutions +400409,Financial Institutions,Financial Institutions +398246,Financial Institutions,Financial Institutions +398243,Financial Institutions,Financial Institutions +393630,Financial Institutions,Financial Institutions +389873,Financial Institutions,Financial Institutions +389871,Financial Institutions,Financial Institutions +388900,Financial Institutions,Financial Institutions +388898,Financial Institutions,Financial Institutions +387077,Financial Institutions,Financial Institutions +385131,Financial Institutions,Financial Institutions +385127,Financial Institutions,Financial Institutions +383191,Financial Institutions,Financial Institutions +383095,Financial Institutions,Financial Institutions +378549,Financial Institutions,Financial Institutions +378547,Financial Institutions,Financial Institutions +378544,Financial Institutions,Financial Institutions +378540,Financial Institutions,Financial Institutions +377506,Financial Institutions,Financial Institutions +375390,Financial Institutions,Financial Institutions +374506,Financial Institutions,Financial Institutions +372906,Financial Institutions,Financial Institutions +372904,Financial Institutions,Financial Institutions +368854,Financial Institutions,Financial Institutions +368850,Financial Institutions,Financial Institutions +362026,Financial Institutions,Financial Institutions +361443,Financial Institutions,Financial Institutions +361442,Financial Institutions,Financial Institutions +358663,Financial Institutions,Financial Institutions +358442,Financial Institutions,Financial Institutions +357866,Financial Institutions,Financial Institutions +544054,Financial Institutions,Financial Institutions +544053,Financial Institutions,Financial Institutions +544051,Financial Institutions,Financial Institutions +543271,Financial Institutions,Financial Institutions +543270,Financial Institutions,Financial Institutions +543269,Financial Institutions,Financial Institutions +543267,Financial Institutions,Financial Institutions +541143,Financial Institutions,Financial Institutions +540134,Financial Institutions,Financial Institutions +536808,Financial Institutions,Financial Institutions +536807,Financial Institutions,Financial Institutions +534246,Financial Institutions,Financial Institutions +532325,Financial Institutions,Financial Institutions +532324,Financial Institutions,Financial Institutions +522333,Financial Institutions,Financial Institutions +521666,Financial Institutions,Financial Institutions +521660,Financial Institutions,Financial Institutions +519940,Financial Institutions,Financial Institutions +519936,Financial Institutions,Financial Institutions +519322,Financial Institutions,Financial Institutions +518184,Financial Institutions,Financial Institutions +517042,Financial Institutions,Financial Institutions +517032,Financial Institutions,Financial Institutions +515302,Financial Institutions,Financial Institutions +515299,Financial Institutions,Financial Institutions +515098,Financial Institutions,Financial Institutions +513829,Financial Institutions,Financial Institutions +512498,Financial Institutions,Financial Institutions +509953,Financial Institutions,Financial Institutions +509952,Financial Institutions,Financial Institutions +509950,Financial Institutions,Financial Institutions +507222,Financial Institutions,Financial Institutions +506044,Financial Institutions,Financial Institutions +504343,Financial Institutions,Financial Institutions +503000,Financial Institutions,Financial Institutions +502998,Financial Institutions,Financial Institutions +500861,Financial Institutions,Financial Institutions +499068,Financial Institutions,Financial Institutions +497958,Financial Institutions,Financial Institutions +496335,Financial Institutions,Financial Institutions +495526,Financial Institutions,Financial Institutions +493509,Financial Institutions,Financial Institutions +493505,Financial Institutions,Financial Institutions +492758,Financial Institutions,Financial Institutions +491611,Financial Institutions,Financial Institutions +491608,Financial Institutions,Financial Institutions +489882,Financial Institutions,Financial Institutions +487605,Financial Institutions,Financial Institutions +487604,Financial Institutions,Financial Institutions +487602,Financial Institutions,Financial Institutions +487352,Financial Institutions,Financial Institutions +487348,Financial Institutions,Financial Institutions +484119,Financial Institutions,Financial Institutions +484115,Financial Institutions,Financial Institutions +479395,Financial Institutions,Financial Institutions +476866,Financial Institutions,Financial Institutions +476138,Financial Institutions,Financial Institutions +472945,Financial Institutions,Financial Institutions +472943,Financial Institutions,Financial Institutions +470326,Financial Institutions,Financial Institutions +470324,Financial Institutions,Financial Institutions +470322,Financial Institutions,Financial Institutions +470318,Financial Institutions,Financial Institutions +470316,Financial Institutions,Financial Institutions +469935,Financial Institutions,Financial Institutions +469930,Financial Institutions,Financial Institutions +467133,Financial Institutions,Financial Institutions +463848,Financial Institutions,Financial Institutions +157292,Health,Health +157291,Health,Health +149964,Health,Health +149963,Health,Health +85694,Health,Health +75714,Health,Health +162135,Health,Health +162133,Health,Health +162132,Health,Health +162130,Health,Health +162128,Health,Health +162126,Health,Health +162124,Health,Health +162117,Health,Health +157307,Health,Health +157306,Health,Health +157304,Health,Health +157303,Health,Health +157296,Health,Health +157294,Health,Health +149965,Industry,Industry +149964,Industry,Industry +149963,Intellectual Property,Intellectual Property +75714,Intellectual Property,Intellectual Property +149963,International Trade,International Trade +391723,Industry,Industry +391721,Industry,Industry +129475,Industry,Industry +125130,Industry,Industry +125124,Industry,Industry +259417,Industry,Industry +171506,Industry,Industry +171505,Industry,Industry +168797,Industry,Industry +375009,Industry,Industry +375008,Industry,Industry +375007,Industry,Industry +354014,Industry,Industry +354007,Industry,Industry +354006,Industry,Industry +338875,Industry,Industry +338873,Industry,Industry +338872,Industry,Industry +259432,Industry,Industry +259425,Industry,Industry +418843,Industry,Industry +418824,Industry,Industry +403766,Industry,Industry +171505,Transportation,Transportation +403766,Transportation,Transportation +170648,Transportation,Transportation +354014,Transportation,Transportation +354007,Transportation,Transportation +354006,Transportation,Transportation +259417,Transportation,Transportation +523806,Health,Health +523805,Health,Health +505442,Health,Health +495130,Health,Health +492479,Health,Health +492081,Health,Health +492080,Health,Health +492079,Health,Health +489581,Health,Health +488995,Health,Health +523808,Health,Health +489581,Small Business,Small Business +488995,Small Business,Small Business +523807,Small Business,Small Business +495130,Small Business,Small Business +492080,Small Business,Small Business +489581,Taxation and Finance,Taxation and Finance +488995,Taxation and Finance,Taxation and Finance +505442,Taxation and Finance,Taxation and Finance +492479,Taxation and Finance,Taxation and Finance +492081,Taxation and Finance,Taxation and Finance +492080,Taxation and Finance,Taxation and Finance +74894,Environment,Environment +74894,Taxation and Finance,Taxation and Finance +117606,Taxation and Finance,Taxation and Finance +91435,Taxation and Finance,Taxation and Finance +132499,Agriculture,Agriculture +191244,Agriculture,Agriculture +175596,Agriculture,Agriculture +173728,Agriculture,Agriculture +170308,Agriculture,Agriculture +167044,Agriculture,Agriculture +160324,Agriculture,Agriculture +160320,Agriculture,Agriculture +160321,Energy,Energy +160320,Energy,Energy +90577,Energy,Energy +90569,Energy,Energy +154848,Energy,Energy +154847,Energy,Energy +199427,Energy,Energy +191245,Energy,Energy +175596,Energy,Energy +173728,Energy,Energy +170308,Energy,Energy +167046,Energy,Energy +167044,Energy,Energy +160324,Energy,Energy +160323,Energy,Energy +154848,Environment,Environment +154847,Environment,Environment +167044,Environment,Environment +160324,Environment,Environment +160323,Environment,Environment +160322,Environment,Environment +160321,Environment,Environment +199427,Industry,Industry +191245,Industry,Industry +160324,Industry,Industry +160323,Industry,Industry +160322,Industry,Industry +114655,International Relations,International Relations +497302,Industry,Industry +314993,Intellectual Property,Intellectual Property +348226,International Trade,International Trade +371579,Justice and Law Enforcement,Justice and Law Enforcement +378390,Taxation and Finance,Taxation and Finance +403872,Consumer Issues,Consumer Issues +406963,Employment and Training,Employment and Training +484889,Industry,Industry +380706,International Trade,International Trade +425968,Labour,Labour +439192,Taxation and Finance,Taxation and Finance +448095,Tourism,Tourism +475999,Transportation,Transportation +231110,Financial Institutions,Financial Institutions +230930,Industry,Industry +296191,Regional Development,Regional Development +237450,Taxation and Finance,Taxation and Finance +75394,Intellectual Property,Intellectual Property +320494,International Trade,International Trade +75414,Intellectual Property,Intellectual Property +133574,Education,Education +109524,Other,Official Languages +76067,Agriculture,Agriculture +76067,International Trade,International Trade +531830,Agriculture,Agriculture +520075,Defence,Defence +461901,Education,Education +535565,Employment and Training,Employment and Training +531779,Energy,Energy +531779,Environment,Environment +540270,Forestry,Forestry +526650,Health,Health +540256,Immigration,Immigration +540231,Industry,Industry +416259,Infrastructure,Infrastructure +388255,Intellectual Property,Intellectual Property +531860,International Relations,International Relations +328691,International Trade,International Trade +540203,Regional Development,Regional Development +88186,Sports,Sports +385736,Transportation,Transportation +105514,Other,Research & Development +80194,Infrastructure,Infrastructure +80194,Tourism,Tourism +109995,Other,International Humanitarian Law and Values +76058,Agriculture,Agriculture +76059,International Trade,International Trade +398199,Tourism,Tourism +109692,Government Procurement,Government Procurement +96357,Energy,Energy +96357,Environment,Environment +165900,Health,Health +76375,Health,Health +478676,Constitutional Issues,Constitutional Issues +478773,Consumer Issues,Consumer Issues +478676,Immigration,Immigration +478773,Industry,Industry +478676,Intellectual Property,Intellectual Property +478456,Internal Trade,Internal Trade +414585,Industry,Industry +101436,Internal Trade,Internal Trade +88996,Environment,Environment +497228,Education,Education +397488,Employment and Training,Employment and Training +375108,Energy,Energy +463124,Environment,Environment +369869,Immigration,Immigration +373863,Industry,Industry +425058,Infrastructure,Infrastructure +375110,Internal Trade,Internal Trade +374025,International Relations,International Relations +459002,International Trade,International Trade +397504,Labour,Labour +249649,Regional Development,Regional Development +495007,Transportation,Transportation +166444,Environment,Environment +162830,Financial Institutions,Financial Institutions +152256,Industry,Industry +152256,Intellectual Property,Intellectual Property +152256,International Trade,International Trade +152256,Small Business,Small Business +100909,Taxation and Finance,Taxation and Finance +383466,Intellectual Property,Intellectual Property +507408,Environment,Environment +442172,Health,Health +330062,Industry,Industry +251509,Intellectual Property,Intellectual Property +534665,International Trade,International Trade +520184,Health,Health +511160,Industry,Industry +498828,Intellectual Property,Intellectual Property +540174,International Trade,International Trade +77641,Intellectual Property,Intellectual Property +378543,Agriculture,Agriculture +435051,Constitutional Issues,Constitutional Issues +411743,Consumer Issues,Consumer Issues +515298,Employment and Training,Employment and Training +423591,Environment,Environment +463669,Financial Institutions,Financial Institutions +115897,Consumer Issues,Consumer Issues +157293,Health,Health +149963,Industry,Industry +149964,Intellectual Property,Intellectual Property +149964,International Trade,International Trade +259417,Environment,Environment +391724,Industry,Industry +171506,Transportation,Transportation +523807,Health,Health +492079,Small Business,Small Business +492079,Taxation and Finance,Taxation and Finance +74894,Energy,Energy +117606,Environment,Environment +91434,Taxation and Finance,Taxation and Finance +154848,Agriculture,Agriculture +160322,Energy,Energy +160320,Environment,Environment +160320,Industry,Industry +154848,Transportation,Transportation +470226,Energy,Energy +532075,Environment,Environment +160321,Industry,Industry +175596,Transportation,Transportation +160324,Transportation,Transportation +160323,Transportation,Transportation +160322,Transportation,Transportation +160320,Transportation,Transportation +470221,Energy,Energy +470218,Energy,Energy +76417,Energy,Energy +76416,Energy,Energy +76415,Energy,Energy +76414,Energy,Energy +76413,Energy,Energy +76412,Energy,Energy +76411,Energy,Energy +76407,Energy,Energy +75774,Energy,Energy +136003,Energy,Energy +132698,Energy,Energy +132697,Energy,Energy +129356,Energy,Energy +129354,Energy,Energy +125170,Energy,Energy +125169,Energy,Energy +125168,Energy,Energy +125167,Energy,Energy +125166,Energy,Energy +105995,Energy,Energy +105994,Energy,Energy +101230,Energy,Energy +93976,Energy,Energy +93975,Energy,Energy +93974,Energy,Energy +164162,Energy,Energy +164161,Energy,Energy +164160,Energy,Energy +164159,Energy,Energy +164158,Energy,Energy +164157,Energy,Energy +164156,Energy,Energy +164155,Energy,Energy +164154,Energy,Energy +164153,Energy,Energy +164152,Energy,Energy +164151,Energy,Energy +164150,Energy,Energy +164149,Energy,Energy +164147,Energy,Energy +164146,Energy,Energy +164145,Energy,Energy +164144,Energy,Energy +164143,Energy,Energy +164142,Energy,Energy +164141,Energy,Energy +164140,Energy,Energy +164139,Energy,Energy +164138,Energy,Energy +164137,Energy,Energy +164136,Energy,Energy +164135,Energy,Energy +164134,Energy,Energy +164133,Energy,Energy +164132,Energy,Energy +162592,Energy,Energy +162591,Energy,Energy +162589,Energy,Energy +162587,Energy,Energy +159494,Energy,Energy +159492,Energy,Energy +159491,Energy,Energy +159490,Energy,Energy +159489,Energy,Energy +159488,Energy,Energy +157049,Energy,Energy +157048,Energy,Energy +157046,Energy,Energy +154747,Energy,Energy +153145,Energy,Energy +153144,Energy,Energy +153143,Energy,Energy +152105,Energy,Energy +152099,Energy,Energy +152098,Energy,Energy +152097,Energy,Energy +152093,Energy,Energy +148295,Energy,Energy +142096,Energy,Energy +142095,Energy,Energy +139084,Energy,Energy +139081,Energy,Energy +286611,Energy,Energy +286610,Energy,Energy +286609,Energy,Energy +268329,Energy,Energy +264502,Energy,Energy +264500,Energy,Energy +263218,Energy,Energy +262071,Energy,Energy +262070,Energy,Energy +223463,Energy,Energy +212352,Energy,Energy +212351,Energy,Energy +212349,Energy,Energy +212347,Energy,Energy +207474,Energy,Energy +207469,Energy,Energy +180451,Energy,Energy +180450,Energy,Energy +180448,Energy,Energy +180447,Energy,Energy +180442,Energy,Energy +180440,Energy,Energy +180439,Energy,Energy +180437,Energy,Energy +180436,Energy,Energy +180435,Energy,Energy +180433,Energy,Energy +170630,Energy,Energy +170629,Energy,Energy +170628,Energy,Energy +170627,Energy,Energy +168948,Energy,Energy +168947,Energy,Energy +168946,Energy,Energy +168545,Energy,Energy +168541,Energy,Energy +168540,Energy,Energy +168538,Energy,Energy +168535,Energy,Energy +168531,Energy,Energy +168528,Energy,Energy +168525,Energy,Energy +168522,Energy,Energy +168519,Energy,Energy +168514,Energy,Energy +168512,Energy,Energy +168508,Energy,Energy +168504,Energy,Energy +165933,Energy,Energy +165932,Energy,Energy +165930,Energy,Energy +165929,Energy,Energy +165927,Energy,Energy +165926,Energy,Energy +165925,Energy,Energy +165924,Energy,Energy +165921,Energy,Energy +164175,Energy,Energy +164174,Energy,Energy +164173,Energy,Energy +164172,Energy,Energy +164171,Energy,Energy +164170,Energy,Energy +164169,Energy,Energy +164168,Energy,Energy +164167,Energy,Energy +164166,Energy,Energy +164165,Energy,Energy +164164,Energy,Energy +164163,Energy,Energy +470214,Energy,Energy +467251,Energy,Energy +464560,Energy,Energy +464559,Energy,Energy +464554,Energy,Energy +464552,Energy,Energy +464548,Energy,Energy +464541,Energy,Energy +464540,Energy,Energy +464537,Energy,Energy +452078,Energy,Energy +452073,Energy,Energy +447781,Energy,Energy +447257,Energy,Energy +444963,Energy,Energy +444962,Energy,Energy +426030,Energy,Energy +425722,Energy,Energy +419661,Energy,Energy +415448,Energy,Energy +415447,Energy,Energy +406641,Energy,Energy +400299,Energy,Energy +400298,Energy,Energy +400281,Energy,Energy +394030,Energy,Energy +394024,Energy,Energy +394020,Energy,Energy +394013,Energy,Energy +394008,Energy,Energy +394006,Energy,Energy +387720,Energy,Energy +387698,Energy,Energy +385163,Energy,Energy +385110,Energy,Energy +385081,Energy,Energy +385052,Energy,Energy +383915,Energy,Energy +383912,Energy,Energy +383909,Energy,Energy +383908,Energy,Energy +383907,Energy,Energy +383906,Energy,Energy +378424,Energy,Energy +375998,Energy,Energy +543847,Energy,Energy +543845,Energy,Energy +543838,Energy,Energy +537812,Energy,Energy +535048,Energy,Energy +532105,Energy,Energy +532088,Energy,Energy +532086,Energy,Energy +532085,Energy,Energy +532084,Energy,Energy +532082,Energy,Energy +532081,Energy,Energy +532080,Energy,Energy +532079,Energy,Energy +532076,Energy,Energy +532075,Energy,Energy +529064,Energy,Energy +529060,Energy,Energy +529045,Energy,Energy +526002,Energy,Energy +522679,Energy,Energy +522678,Energy,Energy +522676,Energy,Energy +522197,Energy,Energy +518366,Energy,Energy +518365,Energy,Energy +518364,Energy,Energy +517421,Energy,Energy +517371,Energy,Energy +512759,Energy,Energy +507507,Energy,Energy +507505,Energy,Energy +498229,Energy,Energy +493106,Energy,Energy +493102,Energy,Energy +491113,Energy,Energy +481778,Energy,Energy +481775,Energy,Energy +479796,Energy,Energy +470229,Energy,Energy +529064,Environment,Environment +529045,Environment,Environment +76417,Environment,Environment +76416,Environment,Environment +76415,Environment,Environment +76414,Environment,Environment +76413,Environment,Environment +76412,Environment,Environment +76411,Environment,Environment +76407,Environment,Environment +75774,Environment,Environment +125167,Environment,Environment +125166,Environment,Environment +105995,Environment,Environment +93976,Environment,Environment +93975,Environment,Environment +93974,Environment,Environment +168522,Environment,Environment +168519,Environment,Environment +168514,Environment,Environment +168512,Environment,Environment +168508,Environment,Environment +168504,Environment,Environment +164162,Environment,Environment +162592,Environment,Environment +162591,Environment,Environment +162589,Environment,Environment +162587,Environment,Environment +159494,Environment,Environment +159491,Environment,Environment +159490,Environment,Environment +159489,Environment,Environment +159488,Environment,Environment +157049,Environment,Environment +157048,Environment,Environment +157046,Environment,Environment +154747,Environment,Environment +153145,Environment,Environment +153144,Environment,Environment +153143,Environment,Environment +152105,Environment,Environment +152099,Environment,Environment +152098,Environment,Environment +152097,Environment,Environment +152093,Environment,Environment +148295,Environment,Environment +139084,Environment,Environment +139081,Environment,Environment +136003,Environment,Environment +132698,Environment,Environment +132697,Environment,Environment +129356,Environment,Environment +129354,Environment,Environment +125170,Environment,Environment +125169,Environment,Environment +125168,Environment,Environment +387720,Environment,Environment +387698,Environment,Environment +385110,Environment,Environment +385052,Environment,Environment +383915,Environment,Environment +383912,Environment,Environment +383909,Environment,Environment +383908,Environment,Environment +383907,Environment,Environment +383906,Environment,Environment +378424,Environment,Environment +286610,Environment,Environment +268329,Environment,Environment +264502,Environment,Environment +264500,Environment,Environment +262070,Environment,Environment +207479,Environment,Environment +207474,Environment,Environment +207469,Environment,Environment +170630,Environment,Environment +170629,Environment,Environment +170628,Environment,Environment +170627,Environment,Environment +168948,Environment,Environment +168947,Environment,Environment +168946,Environment,Environment +168545,Environment,Environment +168541,Environment,Environment +168540,Environment,Environment +168538,Environment,Environment +168535,Environment,Environment +168531,Environment,Environment +168528,Environment,Environment +168525,Environment,Environment +543847,Environment,Environment +543845,Environment,Environment +543838,Environment,Environment +532088,Environment,Environment +532086,Environment,Environment +532085,Environment,Environment +532084,Environment,Environment +532082,Environment,Environment +532081,Environment,Environment +532080,Environment,Environment +532079,Environment,Environment +532076,Environment,Environment +153147,Fisheries,Fisheries +400281,Fisheries,Fisheries +170628,Fisheries,Fisheries +170627,Fisheries,Fisheries +180437,Industry,Industry +394006,Industry,Industry +93975,Industry,Industry +93974,Industry,Industry +76417,Industry,Industry +76416,Industry,Industry +76415,Industry,Industry +76414,Industry,Industry +76413,Industry,Industry +76412,Industry,Industry +76411,Industry,Industry +76407,Industry,Industry +75774,Industry,Industry +153144,Industry,Industry +93976,Industry,Industry +236911,Industry,Industry +207474,Industry,Industry +286610,Taxation and Finance,Taxation and Finance +277513,Taxation and Finance,Taxation and Finance +264502,Taxation and Finance,Taxation and Finance +264500,Taxation and Finance,Taxation and Finance +263218,Taxation and Finance,Taxation and Finance +262071,Taxation and Finance,Taxation and Finance +180451,Taxation and Finance,Taxation and Finance +180450,Taxation and Finance,Taxation and Finance +180448,Taxation and Finance,Taxation and Finance +180447,Taxation and Finance,Taxation and Finance +180442,Taxation and Finance,Taxation and Finance +180440,Taxation and Finance,Taxation and Finance +180439,Taxation and Finance,Taxation and Finance +180437,Taxation and Finance,Taxation and Finance +180436,Taxation and Finance,Taxation and Finance +180435,Taxation and Finance,Taxation and Finance +180433,Taxation and Finance,Taxation and Finance +168948,Taxation and Finance,Taxation and Finance +168947,Taxation and Finance,Taxation and Finance +168946,Taxation and Finance,Taxation and Finance +168545,Taxation and Finance,Taxation and Finance +168541,Taxation and Finance,Taxation and Finance +168540,Taxation and Finance,Taxation and Finance +168538,Taxation and Finance,Taxation and Finance +168535,Taxation and Finance,Taxation and Finance +168531,Taxation and Finance,Taxation and Finance +168528,Taxation and Finance,Taxation and Finance +168525,Taxation and Finance,Taxation and Finance +168522,Taxation and Finance,Taxation and Finance +168519,Taxation and Finance,Taxation and Finance +168514,Taxation and Finance,Taxation and Finance +168512,Taxation and Finance,Taxation and Finance +168508,Taxation and Finance,Taxation and Finance +168504,Taxation and Finance,Taxation and Finance +322417,Taxation and Finance,Taxation and Finance +87329,Financial Institutions,Financial Institutions +87324,Financial Institutions,Financial Institutions +527120,Industry,Industry +513564,Industry,Industry +130754,Industry,Industry +174868,Industry,Industry +169964,Industry,Industry +165085,Industry,Industry +163732,Industry,Industry +161382,Industry,Industry +161370,Industry,Industry +196708,Industry,Industry +196707,Industry,Industry +192056,Industry,Industry +188384,Industry,Industry +446128,Industry,Industry +422976,Industry,Industry +406870,Small Business,Small Business +406786,Small Business,Small Business +252470,Small Business,Small Business +215947,Small Business,Small Business +196708,Small Business,Small Business +196707,Small Business,Small Business +169964,Small Business,Small Business +420648,Small Business,Small Business +420649,Taxation and Finance,Taxation and Finance +420648,Taxation and Finance,Taxation and Finance +87332,Taxation and Finance,Taxation and Finance +87329,Taxation and Finance,Taxation and Finance +87324,Taxation and Finance,Taxation and Finance +169964,Taxation and Finance,Taxation and Finance +163732,Taxation and Finance,Taxation and Finance +161370,Taxation and Finance,Taxation and Finance +329415,Taxation and Finance,Taxation and Finance +329414,Taxation and Finance,Taxation and Finance +311492,Taxation and Finance,Taxation and Finance +311490,Taxation and Finance,Taxation and Finance +299729,Taxation and Finance,Taxation and Finance +299231,Taxation and Finance,Taxation and Finance +288469,Taxation and Finance,Taxation and Finance +284289,Taxation and Finance,Taxation and Finance +261829,Taxation and Finance,Taxation and Finance +260829,Taxation and Finance,Taxation and Finance +252470,Taxation and Finance,Taxation and Finance +247929,Taxation and Finance,Taxation and Finance +247909,Taxation and Finance,Taxation and Finance +234769,Taxation and Finance,Taxation and Finance +211627,Taxation and Finance,Taxation and Finance +196708,Taxation and Finance,Taxation and Finance +196707,Taxation and Finance,Taxation and Finance +192566,Taxation and Finance,Taxation and Finance +192056,Taxation and Finance,Taxation and Finance +414470,Taxation and Finance,Taxation and Finance +406878,Taxation and Finance,Taxation and Finance +406870,Taxation and Finance,Taxation and Finance +406869,Taxation and Finance,Taxation and Finance +406786,Taxation and Finance,Taxation and Finance +382894,Taxation and Finance,Taxation and Finance +370199,Taxation and Finance,Taxation and Finance +367629,Taxation and Finance,Taxation and Finance +360624,Taxation and Finance,Taxation and Finance +359185,Taxation and Finance,Taxation and Finance +348051,Taxation and Finance,Taxation and Finance +348050,Taxation and Finance,Taxation and Finance +347211,Taxation and Finance,Taxation and Finance +343201,Taxation and Finance,Taxation and Finance +339470,Taxation and Finance,Taxation and Finance +339469,Taxation and Finance,Taxation and Finance +339462,Taxation and Finance,Taxation and Finance +339461,Taxation and Finance,Taxation and Finance +336989,Taxation and Finance,Taxation and Finance +446128,Taxation and Finance,Taxation and Finance +172667,Industry,Industry +172666,Industry,Industry +140958,Industry,Industry +140957,Industry,Industry +140954,Industry,Industry +445454,Infrastructure,Infrastructure +445451,Infrastructure,Infrastructure +132161,Infrastructure,Infrastructure +132160,Infrastructure,Infrastructure +132157,Infrastructure,Infrastructure +127843,Infrastructure,Infrastructure +127834,Infrastructure,Infrastructure +123836,Infrastructure,Infrastructure +210532,Infrastructure,Infrastructure +158664,Infrastructure,Infrastructure +158660,Infrastructure,Infrastructure +156127,Infrastructure,Infrastructure +156126,Infrastructure,Infrastructure +156124,Infrastructure,Infrastructure +156108,Infrastructure,Infrastructure +156107,Infrastructure,Infrastructure +149597,Infrastructure,Infrastructure +147468,Infrastructure,Infrastructure +147466,Infrastructure,Infrastructure +147465,Infrastructure,Infrastructure +145587,Infrastructure,Infrastructure +145585,Infrastructure,Infrastructure +141718,Infrastructure,Infrastructure +284949,Infrastructure,Infrastructure +248073,Infrastructure,Infrastructure +445443,Infrastructure,Infrastructure +443442,Infrastructure,Infrastructure +443438,Infrastructure,Infrastructure +443436,Infrastructure,Infrastructure +443422,Infrastructure,Infrastructure +443416,Infrastructure,Infrastructure +443403,Infrastructure,Infrastructure +437290,Infrastructure,Infrastructure +437288,Infrastructure,Infrastructure +434921,Infrastructure,Infrastructure +434920,Infrastructure,Infrastructure +434919,Infrastructure,Infrastructure +434917,Infrastructure,Infrastructure +434767,Infrastructure,Infrastructure +433193,Infrastructure,Infrastructure +433107,Infrastructure,Infrastructure +433103,Infrastructure,Infrastructure +433101,Infrastructure,Infrastructure +433100,Infrastructure,Infrastructure +432236,Infrastructure,Infrastructure +432135,Infrastructure,Infrastructure +432134,Infrastructure,Infrastructure +431716,Infrastructure,Infrastructure +430205,Infrastructure,Infrastructure +430203,Infrastructure,Infrastructure +430153,Infrastructure,Infrastructure +427641,Infrastructure,Infrastructure +408252,Infrastructure,Infrastructure +407592,Infrastructure,Infrastructure +407591,Infrastructure,Infrastructure +407589,Infrastructure,Infrastructure +405627,Infrastructure,Infrastructure +404607,Infrastructure,Infrastructure +404605,Infrastructure,Infrastructure +404602,Infrastructure,Infrastructure +404600,Infrastructure,Infrastructure +404599,Infrastructure,Infrastructure +402081,Infrastructure,Infrastructure +402078,Infrastructure,Infrastructure +402051,Infrastructure,Infrastructure +370650,Infrastructure,Infrastructure +352881,Infrastructure,Infrastructure +352880,Infrastructure,Infrastructure +542670,Infrastructure,Infrastructure +517669,Infrastructure,Infrastructure +517633,Infrastructure,Infrastructure +502269,Infrastructure,Infrastructure +495947,Infrastructure,Infrastructure +490947,Infrastructure,Infrastructure +485139,Infrastructure,Infrastructure +485124,Infrastructure,Infrastructure +485104,Infrastructure,Infrastructure +482294,Infrastructure,Infrastructure +482291,Infrastructure,Infrastructure +482290,Infrastructure,Infrastructure +482288,Infrastructure,Infrastructure +482284,Infrastructure,Infrastructure +482277,Infrastructure,Infrastructure +482269,Infrastructure,Infrastructure +482245,Infrastructure,Infrastructure +479988,Infrastructure,Infrastructure +475438,Infrastructure,Infrastructure +460617,Infrastructure,Infrastructure +457513,Infrastructure,Infrastructure +455576,Infrastructure,Infrastructure +455573,Infrastructure,Infrastructure +455539,Infrastructure,Infrastructure +450035,Infrastructure,Infrastructure +450033,Infrastructure,Infrastructure +447707,Infrastructure,Infrastructure +447689,Infrastructure,Infrastructure +447687,Infrastructure,Infrastructure +447684,Infrastructure,Infrastructure +445478,Infrastructure,Infrastructure +445466,Infrastructure,Infrastructure +445457,Infrastructure,Infrastructure +445456,Infrastructure,Infrastructure +517663,Internal Trade,Internal Trade +502269,Internal Trade,Internal Trade +542136,Internal Trade,Internal Trade +523009,Internal Trade,Internal Trade +519284,Internal Trade,Internal Trade +518768,Internal Trade,Internal Trade +518759,Internal Trade,Internal Trade +518758,Internal Trade,Internal Trade +517675,Internal Trade,Internal Trade +493292,Environment,Environment +491049,Environment,Environment +155208,Environment,Environment +140576,Environment,Environment +241729,Environment,Environment +241711,Environment,Environment +241710,Environment,Environment +227970,Environment,Environment +227969,Environment,Environment +227491,Environment,Environment +227490,Environment,Environment +226858,Environment,Environment +226855,Environment,Environment +226851,Environment,Environment +222588,Environment,Environment +222442,Environment,Environment +222428,Environment,Environment +215707,Environment,Environment +200990,Environment,Environment +197190,Environment,Environment +196431,Environment,Environment +196430,Environment,Environment +196429,Environment,Environment +196428,Environment,Environment +175785,Environment,Environment +311399,Environment,Environment +311398,Environment,Environment +311396,Environment,Environment +311395,Environment,Environment +311394,Environment,Environment +310430,Environment,Environment +310427,Environment,Environment +310425,Environment,Environment +310423,Environment,Environment +310421,Environment,Environment +310419,Environment,Environment +310417,Environment,Environment +310412,Environment,Environment +310407,Environment,Environment +310402,Environment,Environment +310393,Environment,Environment +310370,Environment,Environment +302390,Environment,Environment +302389,Environment,Environment +302341,Environment,Environment +302337,Environment,Environment +302336,Environment,Environment +302334,Environment,Environment +302314,Environment,Environment +289571,Environment,Environment +289569,Environment,Environment +276992,Environment,Environment +276991,Environment,Environment +276990,Environment,Environment +276989,Environment,Environment +273255,Environment,Environment +273254,Environment,Environment +273253,Environment,Environment +273251,Environment,Environment +273250,Environment,Environment +273249,Environment,Environment +268172,Environment,Environment +268170,Environment,Environment +268169,Environment,Environment +263589,Environment,Environment +258975,Environment,Environment +258974,Environment,Environment +258973,Environment,Environment +250024,Environment,Environment +250022,Environment,Environment +250020,Environment,Environment +250016,Environment,Environment +244704,Environment,Environment +244701,Environment,Environment +244696,Environment,Environment +244693,Environment,Environment +244691,Environment,Environment +384612,Environment,Environment +384611,Environment,Environment +384610,Environment,Environment +384609,Environment,Environment +384608,Environment,Environment +384607,Environment,Environment +384606,Environment,Environment +384605,Environment,Environment +384604,Environment,Environment +384603,Environment,Environment +379543,Environment,Environment +377650,Environment,Environment +376339,Environment,Environment +376336,Environment,Environment +374401,Environment,Environment +372415,Environment,Environment +372412,Environment,Environment +372409,Environment,Environment +372406,Environment,Environment +372402,Environment,Environment +372399,Environment,Environment +372395,Environment,Environment +372392,Environment,Environment +368771,Environment,Environment +355846,Environment,Environment +353616,Environment,Environment +353615,Environment,Environment +353612,Environment,Environment +351245,Environment,Environment +351244,Environment,Environment +351243,Environment,Environment +351242,Environment,Environment +349757,Environment,Environment +347030,Environment,Environment +347028,Environment,Environment +343797,Environment,Environment +343791,Environment,Environment +341933,Environment,Environment +341928,Environment,Environment +341926,Environment,Environment +341925,Environment,Environment +341922,Environment,Environment +341920,Environment,Environment +341918,Environment,Environment +341916,Environment,Environment +341915,Environment,Environment +341912,Environment,Environment +341909,Environment,Environment +341905,Environment,Environment +341902,Environment,Environment +341899,Environment,Environment +341897,Environment,Environment +341895,Environment,Environment +341888,Environment,Environment +341883,Environment,Environment +341878,Environment,Environment +341871,Environment,Environment +338354,Environment,Environment +338352,Environment,Environment +338350,Environment,Environment +335950,Environment,Environment +335824,Environment,Environment +335822,Environment,Environment +335821,Environment,Environment +335819,Environment,Environment +335810,Environment,Environment +330083,Environment,Environment +330082,Environment,Environment +330081,Environment,Environment +330080,Environment,Environment +330079,Environment,Environment +330078,Environment,Environment +330077,Environment,Environment +330076,Environment,Environment +330073,Environment,Environment +330072,Environment,Environment +330069,Environment,Environment +330068,Environment,Environment +330066,Environment,Environment +330064,Environment,Environment +324754,Environment,Environment +324753,Environment,Environment +319989,Environment,Environment +315537,Environment,Environment +315536,Environment,Environment +312910,Environment,Environment +312710,Environment,Environment +490378,Environment,Environment +490376,Environment,Environment +490374,Environment,Environment +490373,Environment,Environment +490371,Environment,Environment +490368,Environment,Environment +490364,Environment,Environment +490362,Environment,Environment +486623,Environment,Environment +486622,Environment,Environment +484908,Environment,Environment +484906,Environment,Environment +482033,Environment,Environment +482032,Environment,Environment +482031,Environment,Environment +479653,Environment,Environment +479652,Environment,Environment +479650,Environment,Environment +479648,Environment,Environment +479644,Environment,Environment +479641,Environment,Environment +479629,Environment,Environment +479624,Environment,Environment +477686,Environment,Environment +475373,Environment,Environment +473201,Environment,Environment +469883,Environment,Environment +469882,Environment,Environment +462048,Environment,Environment +462047,Environment,Environment +462046,Environment,Environment +461618,Environment,Environment +461616,Environment,Environment +461607,Environment,Environment +460572,Environment,Environment +460571,Environment,Environment +457484,Environment,Environment +457483,Environment,Environment +457480,Environment,Environment +457476,Environment,Environment +457474,Environment,Environment +450116,Environment,Environment +447535,Environment,Environment +438711,Environment,Environment +438710,Environment,Environment +438701,Environment,Environment +438696,Environment,Environment +438412,Environment,Environment +438402,Environment,Environment +435679,Environment,Environment +435671,Environment,Environment +435661,Environment,Environment +435657,Environment,Environment +435654,Environment,Environment +435652,Environment,Environment +435649,Environment,Environment +435646,Environment,Environment +435643,Environment,Environment +430559,Environment,Environment +430558,Environment,Environment +430557,Environment,Environment +430556,Environment,Environment +430555,Environment,Environment +417736,Environment,Environment +415914,Environment,Environment +415913,Environment,Environment +415911,Environment,Environment +415909,Environment,Environment +415907,Environment,Environment +415906,Environment,Environment +415905,Environment,Environment +415901,Environment,Environment +409231,Environment,Environment +409229,Environment,Environment +409228,Environment,Environment +409226,Environment,Environment +409225,Environment,Environment +409223,Environment,Environment +409222,Environment,Environment +409221,Environment,Environment +409220,Environment,Environment +409218,Environment,Environment +409217,Environment,Environment +407774,Environment,Environment +407006,Environment,Environment +405174,Environment,Environment +405162,Environment,Environment +405161,Environment,Environment +405159,Environment,Environment +405158,Environment,Environment +405156,Environment,Environment +405155,Environment,Environment +403248,Environment,Environment +403246,Environment,Environment +400432,Environment,Environment +397559,Environment,Environment +397558,Environment,Environment +392943,Environment,Environment +390346,Environment,Environment +390336,Environment,Environment +390330,Environment,Environment +390327,Environment,Environment +390325,Environment,Environment +390322,Environment,Environment +390316,Environment,Environment +388405,Environment,Environment +388402,Environment,Environment +388400,Environment,Environment +388396,Environment,Environment +388392,Environment,Environment +388376,Environment,Environment +540488,Environment,Environment +538786,Environment,Environment +538785,Environment,Environment +538783,Environment,Environment +538781,Environment,Environment +538780,Environment,Environment +538779,Environment,Environment +538778,Environment,Environment +538777,Environment,Environment +538699,Environment,Environment +532214,Environment,Environment +531874,Environment,Environment +529937,Environment,Environment +529935,Environment,Environment +529933,Environment,Environment +529739,Environment,Environment +526150,Environment,Environment +526146,Environment,Environment +526139,Environment,Environment +526136,Environment,Environment +526130,Environment,Environment +526125,Environment,Environment +522076,Environment,Environment +521713,Environment,Environment +521712,Environment,Environment +520183,Environment,Environment +520182,Environment,Environment +520181,Environment,Environment +517687,Environment,Environment +517638,Environment,Environment +517636,Environment,Environment +517632,Environment,Environment +516054,Environment,Environment +516053,Environment,Environment +513086,Environment,Environment +513085,Environment,Environment +513084,Environment,Environment +510835,Environment,Environment +510834,Environment,Environment +510833,Environment,Environment +510832,Environment,Environment +510831,Environment,Environment +504423,Environment,Environment +504422,Environment,Environment +501975,Environment,Environment +501973,Environment,Environment +498964,Environment,Environment +498961,Environment,Environment +498959,Environment,Environment +493296,Environment,Environment +493295,Environment,Environment +241711,Fisheries,Fisheries +241710,Fisheries,Fisheries +273247,Fisheries,Fisheries +412024,International Trade,International Trade +412023,International Trade,International Trade +152857,International Trade,International Trade +151290,International Trade,International Trade +151289,International Trade,International Trade +151288,International Trade,International Trade +144195,International Trade,International Trade +390965,International Trade,International Trade +390962,International Trade,International Trade +390960,International Trade,International Trade +360983,International Trade,International Trade +360980,International Trade,International Trade +423405,International Trade,International Trade +422844,International Trade,International Trade +456695,Small Business,Small Business +447866,Small Business,Small Business +151288,Small Business,Small Business +151287,Small Business,Small Business +151286,Small Business,Small Business +149458,Small Business,Small Business +149457,Small Business,Small Business +160771,Small Business,Small Business +152857,Small Business,Small Business +151290,Small Business,Small Business +151289,Small Business,Small Business +423405,Small Business,Small Business +422844,Small Business,Small Business +422842,Small Business,Small Business +412024,Small Business,Small Business +412023,Small Business,Small Business +390965,Small Business,Small Business +390962,Small Business,Small Business +352707,Taxation and Finance,Taxation and Finance +348928,Taxation and Finance,Taxation and Finance +341102,Taxation and Finance,Taxation and Finance +338101,Taxation and Finance,Taxation and Finance +338097,Taxation and Finance,Taxation and Finance +447866,Taxation and Finance,Taxation and Finance +423405,Taxation and Finance,Taxation and Finance +422844,Taxation and Finance,Taxation and Finance +422842,Taxation and Finance,Taxation and Finance +412024,Taxation and Finance,Taxation and Finance +412023,Taxation and Finance,Taxation and Finance +404218,Taxation and Finance,Taxation and Finance +404217,Taxation and Finance,Taxation and Finance +404216,Taxation and Finance,Taxation and Finance +390965,Taxation and Finance,Taxation and Finance +390962,Taxation and Finance,Taxation and Finance +390960,Taxation and Finance,Taxation and Finance +385570,Taxation and Finance,Taxation and Finance +385567,Taxation and Finance,Taxation and Finance +384826,Taxation and Finance,Taxation and Finance +382312,Taxation and Finance,Taxation and Finance +382310,Taxation and Finance,Taxation and Finance +382309,Taxation and Finance,Taxation and Finance +382308,Taxation and Finance,Taxation and Finance +378653,Taxation and Finance,Taxation and Finance +378651,Taxation and Finance,Taxation and Finance +368663,Taxation and Finance,Taxation and Finance +366448,Taxation and Finance,Taxation and Finance +365745,Taxation and Finance,Taxation and Finance +360983,Taxation and Finance,Taxation and Finance +360982,Taxation and Finance,Taxation and Finance +360980,Taxation and Finance,Taxation and Finance +360012,Taxation and Finance,Taxation and Finance +277934,Agriculture,Agriculture +133236,Agriculture,Agriculture +342617,Immigration,Immigration +297169,Immigration,Immigration +413628,Agriculture,Agriculture +380031,Agriculture,Agriculture +138816,Agriculture,Agriculture +138814,Agriculture,Agriculture +277562,Agriculture,Agriculture +416913,Constitutional Issues,Constitutional Issues +405609,Constitutional Issues,Constitutional Issues +296769,Constitutional Issues,Constitutional Issues +273487,Constitutional Issues,Constitutional Issues +241022,Constitutional Issues,Constitutional Issues +223400,Constitutional Issues,Constitutional Issues +180397,Constitutional Issues,Constitutional Issues +349142,Constitutional Issues,Constitutional Issues +341748,Constitutional Issues,Constitutional Issues +338622,Constitutional Issues,Constitutional Issues +336003,Constitutional Issues,Constitutional Issues +330124,Constitutional Issues,Constitutional Issues +459583,Consumer Issues,Consumer Issues +432336,Consumer Issues,Consumer Issues +129157,Consumer Issues,Consumer Issues +97424,Consumer Issues,Consumer Issues +163953,Consumer Issues,Consumer Issues +163952,Consumer Issues,Consumer Issues +313079,Consumer Issues,Consumer Issues +310535,Consumer Issues,Consumer Issues +310532,Consumer Issues,Consumer Issues +310529,Consumer Issues,Consumer Issues +304098,Consumer Issues,Consumer Issues +304096,Consumer Issues,Consumer Issues +304095,Consumer Issues,Consumer Issues +304092,Consumer Issues,Consumer Issues +304091,Consumer Issues,Consumer Issues +304089,Consumer Issues,Consumer Issues +296769,Consumer Issues,Consumer Issues +291061,Consumer Issues,Consumer Issues +291060,Consumer Issues,Consumer Issues +281711,Consumer Issues,Consumer Issues +273490,Consumer Issues,Consumer Issues +273487,Consumer Issues,Consumer Issues +273480,Consumer Issues,Consumer Issues +245213,Consumer Issues,Consumer Issues +233289,Consumer Issues,Consumer Issues +227017,Consumer Issues,Consumer Issues +223402,Consumer Issues,Consumer Issues +223400,Consumer Issues,Consumer Issues +212232,Consumer Issues,Consumer Issues +202229,Consumer Issues,Consumer Issues +175503,Consumer Issues,Consumer Issues +168568,Consumer Issues,Consumer Issues +168563,Consumer Issues,Consumer Issues +168555,Consumer Issues,Consumer Issues +423459,Consumer Issues,Consumer Issues +423457,Consumer Issues,Consumer Issues +418301,Consumer Issues,Consumer Issues +416912,Consumer Issues,Consumer Issues +413620,Consumer Issues,Consumer Issues +406934,Consumer Issues,Consumer Issues +385694,Consumer Issues,Consumer Issues +383923,Consumer Issues,Consumer Issues +358239,Consumer Issues,Consumer Issues +354054,Consumer Issues,Consumer Issues +347340,Consumer Issues,Consumer Issues +336003,Consumer Issues,Consumer Issues +335997,Consumer Issues,Consumer Issues +333711,Consumer Issues,Consumer Issues +333710,Consumer Issues,Consumer Issues +333707,Consumer Issues,Consumer Issues +333706,Consumer Issues,Consumer Issues +330125,Consumer Issues,Consumer Issues +327635,Consumer Issues,Consumer Issues +327610,Consumer Issues,Consumer Issues +325046,Consumer Issues,Consumer Issues +325045,Consumer Issues,Consumer Issues +325042,Consumer Issues,Consumer Issues +325036,Consumer Issues,Consumer Issues +322257,Consumer Issues,Consumer Issues +315934,Consumer Issues,Consumer Issues +315932,Consumer Issues,Consumer Issues +543782,Consumer Issues,Consumer Issues +525740,Consumer Issues,Consumer Issues +519817,Consumer Issues,Consumer Issues +512922,Consumer Issues,Consumer Issues +499259,Consumer Issues,Consumer Issues +492867,Consumer Issues,Consumer Issues +470921,Consumer Issues,Consumer Issues +470774,Consumer Issues,Consumer Issues +464831,Consumer Issues,Consumer Issues +429483,Employment and Training,Employment and Training +429444,Employment and Training,Employment and Training +327628,Employment and Training,Employment and Training +327619,Employment and Training,Employment and Training +327614,Employment and Training,Employment and Training +416919,Employment and Training,Employment and Training +413633,Employment and Training,Employment and Training +408193,Employment and Training,Employment and Training +408192,Employment and Training,Employment and Training +405610,Employment and Training,Employment and Training +381616,Employment and Training,Employment and Training +380035,Employment and Training,Employment and Training +380027,Employment and Training,Employment and Training +519822,Employment and Training,Employment and Training +519821,Employment and Training,Employment and Training +515914,Employment and Training,Employment and Training +512933,Employment and Training,Employment and Training +510294,Employment and Training,Employment and Training +499268,Employment and Training,Employment and Training +444513,Employment and Training,Employment and Training +432340,Employment and Training,Employment and Training +432339,Employment and Training,Employment and Training +432338,Employment and Training,Employment and Training +430579,Employment and Training,Employment and Training +429489,Employment and Training,Employment and Training +336003,Financial Institutions,Financial Institutions +336001,Financial Institutions,Financial Institutions +150043,Financial Institutions,Financial Institutions +148146,Financial Institutions,Financial Institutions +148142,Financial Institutions,Financial Institutions +109667,Financial Institutions,Financial Institutions +163962,Financial Institutions,Financial Institutions +163959,Financial Institutions,Financial Institutions +162043,Financial Institutions,Financial Institutions +162027,Financial Institutions,Financial Institutions +202230,Financial Institutions,Financial Institutions +202227,Financial Institutions,Financial Institutions +194717,Financial Institutions,Financial Institutions +194713,Financial Institutions,Financial Institutions +194710,Financial Institutions,Financial Institutions +194708,Financial Institutions,Financial Institutions +194701,Financial Institutions,Financial Institutions +188983,Financial Institutions,Financial Institutions +180397,Financial Institutions,Financial Institutions +175503,Financial Institutions,Financial Institutions +170668,Financial Institutions,Financial Institutions +168568,Financial Institutions,Financial Institutions +168563,Financial Institutions,Financial Institutions +168555,Financial Institutions,Financial Institutions +335999,Financial Institutions,Financial Institutions +335997,Financial Institutions,Financial Institutions +333711,Financial Institutions,Financial Institutions +333710,Financial Institutions,Financial Institutions +333707,Financial Institutions,Financial Institutions +333706,Financial Institutions,Financial Institutions +333704,Financial Institutions,Financial Institutions +331652,Financial Institutions,Financial Institutions +331651,Financial Institutions,Financial Institutions +330126,Financial Institutions,Financial Institutions +330125,Financial Institutions,Financial Institutions +330124,Financial Institutions,Financial Institutions +327644,Financial Institutions,Financial Institutions +327642,Financial Institutions,Financial Institutions +327635,Financial Institutions,Financial Institutions +327622,Financial Institutions,Financial Institutions +327619,Financial Institutions,Financial Institutions +327614,Financial Institutions,Financial Institutions +327610,Financial Institutions,Financial Institutions +327609,Financial Institutions,Financial Institutions +327606,Financial Institutions,Financial Institutions +327603,Financial Institutions,Financial Institutions +325046,Financial Institutions,Financial Institutions +325045,Financial Institutions,Financial Institutions +325042,Financial Institutions,Financial Institutions +325039,Financial Institutions,Financial Institutions +325036,Financial Institutions,Financial Institutions +325028,Financial Institutions,Financial Institutions +322257,Financial Institutions,Financial Institutions +318978,Financial Institutions,Financial Institutions +315938,Financial Institutions,Financial Institutions +315935,Financial Institutions,Financial Institutions +315934,Financial Institutions,Financial Institutions +315932,Financial Institutions,Financial Institutions +313079,Financial Institutions,Financial Institutions +313078,Financial Institutions,Financial Institutions +313074,Financial Institutions,Financial Institutions +313073,Financial Institutions,Financial Institutions +313070,Financial Institutions,Financial Institutions +310536,Financial Institutions,Financial Institutions +310535,Financial Institutions,Financial Institutions +310534,Financial Institutions,Financial Institutions +310533,Financial Institutions,Financial Institutions +310532,Financial Institutions,Financial Institutions +310531,Financial Institutions,Financial Institutions +310529,Financial Institutions,Financial Institutions +304100,Financial Institutions,Financial Institutions +304098,Financial Institutions,Financial Institutions +304096,Financial Institutions,Financial Institutions +304095,Financial Institutions,Financial Institutions +304092,Financial Institutions,Financial Institutions +304091,Financial Institutions,Financial Institutions +304089,Financial Institutions,Financial Institutions +296782,Financial Institutions,Financial Institutions +296771,Financial Institutions,Financial Institutions +296770,Financial Institutions,Financial Institutions +296769,Financial Institutions,Financial Institutions +291061,Financial Institutions,Financial Institutions +291060,Financial Institutions,Financial Institutions +291058,Financial Institutions,Financial Institutions +291054,Financial Institutions,Financial Institutions +291052,Financial Institutions,Financial Institutions +291050,Financial Institutions,Financial Institutions +291049,Financial Institutions,Financial Institutions +285929,Financial Institutions,Financial Institutions +281711,Financial Institutions,Financial Institutions +281709,Financial Institutions,Financial Institutions +281689,Financial Institutions,Financial Institutions +277569,Financial Institutions,Financial Institutions +277567,Financial Institutions,Financial Institutions +277565,Financial Institutions,Financial Institutions +277564,Financial Institutions,Financial Institutions +277562,Financial Institutions,Financial Institutions +277561,Financial Institutions,Financial Institutions +273498,Financial Institutions,Financial Institutions +273497,Financial Institutions,Financial Institutions +273496,Financial Institutions,Financial Institutions +273494,Financial Institutions,Financial Institutions +273490,Financial Institutions,Financial Institutions +273487,Financial Institutions,Financial Institutions +273480,Financial Institutions,Financial Institutions +273478,Financial Institutions,Financial Institutions +273477,Financial Institutions,Financial Institutions +269066,Financial Institutions,Financial Institutions +269063,Financial Institutions,Financial Institutions +264415,Financial Institutions,Financial Institutions +259558,Financial Institutions,Financial Institutions +259557,Financial Institutions,Financial Institutions +259556,Financial Institutions,Financial Institutions +259555,Financial Institutions,Financial Institutions +259554,Financial Institutions,Financial Institutions +254159,Financial Institutions,Financial Institutions +253989,Financial Institutions,Financial Institutions +253980,Financial Institutions,Financial Institutions +246212,Financial Institutions,Financial Institutions +245218,Financial Institutions,Financial Institutions +245209,Financial Institutions,Financial Institutions +241026,Financial Institutions,Financial Institutions +241022,Financial Institutions,Financial Institutions +241018,Financial Institutions,Financial Institutions +236892,Financial Institutions,Financial Institutions +236890,Financial Institutions,Financial Institutions +233290,Financial Institutions,Financial Institutions +229370,Financial Institutions,Financial Institutions +227016,Financial Institutions,Financial Institutions +223402,Financial Institutions,Financial Institutions +223400,Financial Institutions,Financial Institutions +223399,Financial Institutions,Financial Institutions +217946,Financial Institutions,Financial Institutions +212232,Financial Institutions,Financial Institutions +207435,Financial Institutions,Financial Institutions +207431,Financial Institutions,Financial Institutions +207427,Financial Institutions,Financial Institutions +543786,Financial Institutions,Financial Institutions +543785,Financial Institutions,Financial Institutions +543783,Financial Institutions,Financial Institutions +543782,Financial Institutions,Financial Institutions +541238,Financial Institutions,Financial Institutions +540090,Financial Institutions,Financial Institutions +537807,Financial Institutions,Financial Institutions +537806,Financial Institutions,Financial Institutions +537781,Financial Institutions,Financial Institutions +525740,Financial Institutions,Financial Institutions +522972,Financial Institutions,Financial Institutions +519817,Financial Institutions,Financial Institutions +518340,Financial Institutions,Financial Institutions +518337,Financial Institutions,Financial Institutions +518333,Financial Institutions,Financial Institutions +515916,Financial Institutions,Financial Institutions +515915,Financial Institutions,Financial Institutions +514038,Financial Institutions,Financial Institutions +510290,Financial Institutions,Financial Institutions +510279,Financial Institutions,Financial Institutions +508046,Financial Institutions,Financial Institutions +508043,Financial Institutions,Financial Institutions +505584,Financial Institutions,Financial Institutions +499423,Financial Institutions,Financial Institutions +499259,Financial Institutions,Financial Institutions +499233,Financial Institutions,Financial Institutions +499228,Financial Institutions,Financial Institutions +495481,Financial Institutions,Financial Institutions +492412,Financial Institutions,Financial Institutions +491310,Financial Institutions,Financial Institutions +487257,Financial Institutions,Financial Institutions +487252,Financial Institutions,Financial Institutions +484544,Financial Institutions,Financial Institutions +484461,Financial Institutions,Financial Institutions +482292,Financial Institutions,Financial Institutions +477939,Financial Institutions,Financial Institutions +477931,Financial Institutions,Financial Institutions +477923,Financial Institutions,Financial Institutions +473713,Financial Institutions,Financial Institutions +473709,Financial Institutions,Financial Institutions +470923,Financial Institutions,Financial Institutions +470921,Financial Institutions,Financial Institutions +470774,Financial Institutions,Financial Institutions +467876,Financial Institutions,Financial Institutions +467871,Financial Institutions,Financial Institutions +467707,Financial Institutions,Financial Institutions +467701,Financial Institutions,Financial Institutions +464831,Financial Institutions,Financial Institutions +464828,Financial Institutions,Financial Institutions +462550,Financial Institutions,Financial Institutions +461707,Financial Institutions,Financial Institutions +459585,Financial Institutions,Financial Institutions +457600,Financial Institutions,Financial Institutions +456697,Financial Institutions,Financial Institutions +456696,Financial Institutions,Financial Institutions +456153,Financial Institutions,Financial Institutions +456151,Financial Institutions,Financial Institutions +456150,Financial Institutions,Financial Institutions +452845,Financial Institutions,Financial Institutions +452844,Financial Institutions,Financial Institutions +452841,Financial Institutions,Financial Institutions +450225,Financial Institutions,Financial Institutions +450215,Financial Institutions,Financial Institutions +445555,Financial Institutions,Financial Institutions +445553,Financial Institutions,Financial Institutions +445551,Financial Institutions,Financial Institutions +435700,Financial Institutions,Financial Institutions +435698,Financial Institutions,Financial Institutions +435697,Financial Institutions,Financial Institutions +435695,Financial Institutions,Financial Institutions +435694,Financial Institutions,Financial Institutions +432342,Financial Institutions,Financial Institutions +432336,Financial Institutions,Financial Institutions +432335,Financial Institutions,Financial Institutions +430577,Financial Institutions,Financial Institutions +430576,Financial Institutions,Financial Institutions +429466,Financial Institutions,Financial Institutions +429463,Financial Institutions,Financial Institutions +429461,Financial Institutions,Financial Institutions +429456,Financial Institutions,Financial Institutions +429453,Financial Institutions,Financial Institutions +429451,Financial Institutions,Financial Institutions +429450,Financial Institutions,Financial Institutions +429444,Financial Institutions,Financial Institutions +429440,Financial Institutions,Financial Institutions +429430,Financial Institutions,Financial Institutions +429425,Financial Institutions,Financial Institutions +428451,Financial Institutions,Financial Institutions +426754,Financial Institutions,Financial Institutions +423466,Financial Institutions,Financial Institutions +423459,Financial Institutions,Financial Institutions +423458,Financial Institutions,Financial Institutions +423457,Financial Institutions,Financial Institutions +422443,Financial Institutions,Financial Institutions +422439,Financial Institutions,Financial Institutions +418301,Financial Institutions,Financial Institutions +416913,Financial Institutions,Financial Institutions +416912,Financial Institutions,Financial Institutions +413628,Financial Institutions,Financial Institutions +413623,Financial Institutions,Financial Institutions +413620,Financial Institutions,Financial Institutions +409934,Financial Institutions,Financial Institutions +409929,Financial Institutions,Financial Institutions +409927,Financial Institutions,Financial Institutions +409926,Financial Institutions,Financial Institutions +408191,Financial Institutions,Financial Institutions +408190,Financial Institutions,Financial Institutions +406934,Financial Institutions,Financial Institutions +406927,Financial Institutions,Financial Institutions +405609,Financial Institutions,Financial Institutions +405605,Financial Institutions,Financial Institutions +403836,Financial Institutions,Financial Institutions +400989,Financial Institutions,Financial Institutions +400988,Financial Institutions,Financial Institutions +394498,Financial Institutions,Financial Institutions +394497,Financial Institutions,Financial Institutions +394496,Financial Institutions,Financial Institutions +394495,Financial Institutions,Financial Institutions +392668,Financial Institutions,Financial Institutions +391520,Financial Institutions,Financial Institutions +391516,Financial Institutions,Financial Institutions +391515,Financial Institutions,Financial Institutions +388467,Financial Institutions,Financial Institutions +388436,Financial Institutions,Financial Institutions +385699,Financial Institutions,Financial Institutions +385697,Financial Institutions,Financial Institutions +385696,Financial Institutions,Financial Institutions +385694,Financial Institutions,Financial Institutions +383923,Financial Institutions,Financial Institutions +383921,Financial Institutions,Financial Institutions +382542,Financial Institutions,Financial Institutions +382539,Financial Institutions,Financial Institutions +381990,Financial Institutions,Financial Institutions +381626,Financial Institutions,Financial Institutions +381624,Financial Institutions,Financial Institutions +381623,Financial Institutions,Financial Institutions +381622,Financial Institutions,Financial Institutions +381621,Financial Institutions,Financial Institutions +381620,Financial Institutions,Financial Institutions +380033,Financial Institutions,Financial Institutions +380031,Financial Institutions,Financial Institutions +380030,Financial Institutions,Financial Institutions +380029,Financial Institutions,Financial Institutions +380028,Financial Institutions,Financial Institutions +380026,Financial Institutions,Financial Institutions +380025,Financial Institutions,Financial Institutions +376998,Financial Institutions,Financial Institutions +376995,Financial Institutions,Financial Institutions +376992,Financial Institutions,Financial Institutions +374923,Financial Institutions,Financial Institutions +374922,Financial Institutions,Financial Institutions +372745,Financial Institutions,Financial Institutions +372479,Financial Institutions,Financial Institutions +372469,Financial Institutions,Financial Institutions +372468,Financial Institutions,Financial Institutions +372434,Financial Institutions,Financial Institutions +369240,Financial Institutions,Financial Institutions +369237,Financial Institutions,Financial Institutions +369227,Financial Institutions,Financial Institutions +369214,Financial Institutions,Financial Institutions +369209,Financial Institutions,Financial Institutions +365313,Financial Institutions,Financial Institutions +365312,Financial Institutions,Financial Institutions +365309,Financial Institutions,Financial Institutions +365307,Financial Institutions,Financial Institutions +365305,Financial Institutions,Financial Institutions +363543,Financial Institutions,Financial Institutions +362385,Financial Institutions,Financial Institutions +362383,Financial Institutions,Financial Institutions +358241,Financial Institutions,Financial Institutions +354057,Financial Institutions,Financial Institutions +354056,Financial Institutions,Financial Institutions +354054,Financial Institutions,Financial Institutions +351528,Financial Institutions,Financial Institutions +349142,Financial Institutions,Financial Institutions +347341,Financial Institutions,Financial Institutions +347340,Financial Institutions,Financial Institutions +347337,Financial Institutions,Financial Institutions +347335,Financial Institutions,Financial Institutions +341754,Financial Institutions,Financial Institutions +341750,Financial Institutions,Financial Institutions +341748,Financial Institutions,Financial Institutions +531725,Industry,Industry +530242,Industry,Industry +327628,Industry,Industry +430579,Industry,Industry +416911,Industry,Industry +416909,Industry,Industry +382542,Industry,Industry +382540,Industry,Industry +382539,Industry,Industry +380035,Industry,Industry +372745,Industry,Industry +519818,Industry,Industry +518333,Industry,Industry +512922,Industry,Industry +502340,Industry,Industry +502338,Industry,Industry +499233,Industry,Industry +499228,Industry,Industry +487263,Industry,Industry +480002,Industry,Industry +480000,Industry,Industry +479999,Industry,Industry +477944,Industry,Industry +477939,Industry,Industry +458859,Industry,Industry +540088,Industry,Industry +537781,Industry,Industry +535512,Industry,Industry +535508,Industry,Industry +535503,Industry,Industry +535498,Industry,Industry +406931,Infrastructure,Infrastructure +405614,Infrastructure,Infrastructure +383924,Infrastructure,Infrastructure +381624,Infrastructure,Infrastructure +381623,Infrastructure,Infrastructure +423458,Infrastructure,Infrastructure +409931,Infrastructure,Infrastructure +372745,International Relations,International Relations +281712,International Relations,International Relations +381621,International Relations,International Relations +459585,International Relations,International Relations +432338,International Trade,International Trade +429444,International Trade,International Trade +273490,International Trade,International Trade +372745,International Trade,International Trade +327622,International Trade,International Trade +325045,International Trade,International Trade +432340,International Trade,International Trade +510290,Justice and Law Enforcement,Justice and Law Enforcement +491310,Justice and Law Enforcement,Justice and Law Enforcement +150044,Justice and Law Enforcement,Justice and Law Enforcement +296770,Justice and Law Enforcement,Justice and Law Enforcement +273480,Justice and Law Enforcement,Justice and Law Enforcement +341748,Justice and Law Enforcement,Justice and Law Enforcement +325042,Justice and Law Enforcement,Justice and Law Enforcement +325039,Justice and Law Enforcement,Justice and Law Enforcement +405609,Justice and Law Enforcement,Justice and Law Enforcement +405605,Justice and Law Enforcement,Justice and Law Enforcement +477931,Justice and Law Enforcement,Justice and Law Enforcement +467707,Justice and Law Enforcement,Justice and Law Enforcement +464831,Justice and Law Enforcement,Justice and Law Enforcement +462550,Justice and Law Enforcement,Justice and Law Enforcement +461707,Justice and Law Enforcement,Justice and Law Enforcement +456150,Justice and Law Enforcement,Justice and Law Enforcement +435700,Justice and Law Enforcement,Justice and Law Enforcement +435694,Justice and Law Enforcement,Justice and Law Enforcement +429466,Justice and Law Enforcement,Justice and Law Enforcement +429453,Justice and Law Enforcement,Justice and Law Enforcement +543783,Justice and Law Enforcement,Justice and Law Enforcement +537806,Justice and Law Enforcement,Justice and Law Enforcement +296771,Labour,Labour +487263,Labour,Labour +229369,Labour,Labour +227015,Labour,Labour +473709,Small Business,Small Business +470774,Small Business,Small Business +310535,Small Business,Small Business +385694,Small Business,Small Business +382542,Small Business,Small Business +380026,Small Business,Small Business +380025,Small Business,Small Business +376992,Small Business,Small Business +347341,Small Business,Small Business +347340,Small Business,Small Business +341754,Small Business,Small Business +336003,Small Business,Small Business +429440,Small Business,Small Business +418301,Small Business,Small Business +413620,Small Business,Small Business +406934,Small Business,Small Business +518337,Taxation and Finance,Taxation and Finance +492600,Taxation and Finance,Taxation and Finance +93748,Taxation and Finance,Taxation and Finance +89575,Taxation and Finance,Taxation and Finance +241028,Taxation and Finance,Taxation and Finance +207428,Taxation and Finance,Taxation and Finance +194704,Taxation and Finance,Taxation and Finance +162040,Taxation and Finance,Taxation and Finance +162030,Taxation and Finance,Taxation and Finance +381620,Taxation and Finance,Taxation and Finance +380033,Taxation and Finance,Taxation and Finance +369209,Taxation and Finance,Taxation and Finance +365307,Taxation and Finance,Taxation and Finance +365305,Taxation and Finance,Taxation and Finance +362383,Taxation and Finance,Taxation and Finance +273490,Taxation and Finance,Taxation and Finance +452845,Taxation and Finance,Taxation and Finance +430579,Taxation and Finance,Taxation and Finance +429471,Taxation and Finance,Taxation and Finance +429444,Taxation and Finance,Taxation and Finance +429440,Taxation and Finance,Taxation and Finance +423459,Taxation and Finance,Taxation and Finance +423458,Taxation and Finance,Taxation and Finance +416911,Taxation and Finance,Taxation and Finance +416909,Taxation and Finance,Taxation and Finance +400988,Taxation and Finance,Taxation and Finance +391517,Taxation and Finance,Taxation and Finance +381990,Taxation and Finance,Taxation and Finance +381622,Taxation and Finance,Taxation and Finance +381621,Taxation and Finance,Taxation and Finance +543785,Taxation and Finance,Taxation and Finance +540094,Taxation and Finance,Taxation and Finance +540088,Taxation and Finance,Taxation and Finance +537806,Taxation and Finance,Taxation and Finance +537805,Taxation and Finance,Taxation and Finance +537804,Taxation and Finance,Taxation and Finance +535493,Taxation and Finance,Taxation and Finance +158673,Education,Education +158673,Health,Health +124884,Health,Health +90170,Constitutional Issues,Constitutional Issues +444926,Consumer Issues,Consumer Issues +444912,Consumer Issues,Consumer Issues +93594,Consumer Issues,Consumer Issues +93581,Consumer Issues,Consumer Issues +93576,Consumer Issues,Consumer Issues +93567,Consumer Issues,Consumer Issues +87550,Consumer Issues,Consumer Issues +85037,Consumer Issues,Consumer Issues +470374,Education,Education +433283,Employment and Training,Employment and Training +433283,Government Procurement,Government Procurement +433282,Government Procurement,Government Procurement +497400,Government Procurement,Government Procurement +497399,Government Procurement,Government Procurement +470349,Government Procurement,Government Procurement +435114,Government Procurement,Government Procurement +435113,Government Procurement,Government Procurement +435110,Government Procurement,Government Procurement +435109,Government Procurement,Government Procurement +435107,Government Procurement,Government Procurement +435105,Government Procurement,Government Procurement +513702,Health,Health +511932,Health,Health +80547,Health,Health +80546,Health,Health +80545,Health,Health +80543,Health,Health +80536,Health,Health +80535,Health,Health +76374,Health,Health +101146,Health,Health +101142,Health,Health +101141,Health,Health +101128,Health,Health +101125,Health,Health +97345,Health,Health +97344,Health,Health +97342,Health,Health +97333,Health,Health +93640,Health,Health +93638,Health,Health +93636,Health,Health +93634,Health,Health +93594,Health,Health +93581,Health,Health +93576,Health,Health +93567,Health,Health +90172,Health,Health +90170,Health,Health +90168,Health,Health +90165,Health,Health +90164,Health,Health +87550,Health,Health +87549,Health,Health +85037,Health,Health +165332,Health,Health +163614,Health,Health +163612,Health,Health +163608,Health,Health +163606,Health,Health +163605,Health,Health +161946,Health,Health +161944,Health,Health +161940,Health,Health +161937,Health,Health +159378,Health,Health +156808,Health,Health +154633,Health,Health +154632,Health,Health +154630,Health,Health +153286,Health,Health +153282,Health,Health +153277,Health,Health +151679,Health,Health +151678,Health,Health +151677,Health,Health +150246,Health,Health +150245,Health,Health +150242,Health,Health +147716,Health,Health +147715,Health,Health +145637,Health,Health +145636,Health,Health +145635,Health,Health +141979,Health,Health +141978,Health,Health +141977,Health,Health +141975,Health,Health +138495,Health,Health +138494,Health,Health +135675,Health,Health +135654,Health,Health +132889,Health,Health +127334,Health,Health +124622,Health,Health +124620,Health,Health +124614,Health,Health +120437,Health,Health +120435,Health,Health +116956,Health,Health +116954,Health,Health +112414,Health,Health +112375,Health,Health +108821,Health,Health +108820,Health,Health +108819,Health,Health +108817,Health,Health +108815,Health,Health +108814,Health,Health +106540,Health,Health +106539,Health,Health +106538,Health,Health +232313,Health,Health +232312,Health,Health +232311,Health,Health +229847,Health,Health +229844,Health,Health +229842,Health,Health +229837,Health,Health +229834,Health,Health +229832,Health,Health +229814,Health,Health +226739,Health,Health +226738,Health,Health +226737,Health,Health +226735,Health,Health +222807,Health,Health +217307,Health,Health +217288,Health,Health +217287,Health,Health +217278,Health,Health +217274,Health,Health +217269,Health,Health +217259,Health,Health +217252,Health,Health +211856,Health,Health +211854,Health,Health +211853,Health,Health +211852,Health,Health +211851,Health,Health +211849,Health,Health +211844,Health,Health +207136,Health,Health +207134,Health,Health +207132,Health,Health +207129,Health,Health +202507,Health,Health +199755,Health,Health +199752,Health,Health +199749,Health,Health +199741,Health,Health +199739,Health,Health +199730,Health,Health +199726,Health,Health +199717,Health,Health +199705,Health,Health +199702,Health,Health +193214,Health,Health +193213,Health,Health +193211,Health,Health +193208,Health,Health +193207,Health,Health +193206,Health,Health +193205,Health,Health +193204,Health,Health +193184,Health,Health +193182,Health,Health +193180,Health,Health +193178,Health,Health +193177,Health,Health +193176,Health,Health +193175,Health,Health +193174,Health,Health +193173,Health,Health +193172,Health,Health +193170,Health,Health +193168,Health,Health +193167,Health,Health +193166,Health,Health +193165,Health,Health +193164,Health,Health +193149,Health,Health +193148,Health,Health +193147,Health,Health +193146,Health,Health +193084,Health,Health +193080,Health,Health +193078,Health,Health +193074,Health,Health +193073,Health,Health +193072,Health,Health +193069,Health,Health +193067,Health,Health +193066,Health,Health +188970,Health,Health +188968,Health,Health +188873,Health,Health +188871,Health,Health +188869,Health,Health +188868,Health,Health +188866,Health,Health +188864,Health,Health +188841,Health,Health +188839,Health,Health +188836,Health,Health +188834,Health,Health +185388,Health,Health +185387,Health,Health +185386,Health,Health +185385,Health,Health +185384,Health,Health +177546,Health,Health +177525,Health,Health +175328,Health,Health +175326,Health,Health +175044,Health,Health +175043,Health,Health +175042,Health,Health +175041,Health,Health +171896,Health,Health +170615,Health,Health +170614,Health,Health +170612,Health,Health +170611,Health,Health +170610,Health,Health +170609,Health,Health +170608,Health,Health +170606,Health,Health +170605,Health,Health +170602,Health,Health +170600,Health,Health +168139,Health,Health +168059,Health,Health +168056,Health,Health +168041,Health,Health +168038,Health,Health +168035,Health,Health +168029,Health,Health +165335,Health,Health +165334,Health,Health +165333,Health,Health +362164,Health,Health +362163,Health,Health +362162,Health,Health +360865,Health,Health +359502,Health,Health +357609,Health,Health +357608,Health,Health +357606,Health,Health +357605,Health,Health +357604,Health,Health +357603,Health,Health +355822,Health,Health +355821,Health,Health +355820,Health,Health +353482,Health,Health +353481,Health,Health +353454,Health,Health +353452,Health,Health +353451,Health,Health +353450,Health,Health +353449,Health,Health +353448,Health,Health +353446,Health,Health +353445,Health,Health +351029,Health,Health +350823,Health,Health +350819,Health,Health +350818,Health,Health +350815,Health,Health +350814,Health,Health +348864,Health,Health +348863,Health,Health +348862,Health,Health +348861,Health,Health +348860,Health,Health +348859,Health,Health +348858,Health,Health +348857,Health,Health +347126,Health,Health +347125,Health,Health +347124,Health,Health +347123,Health,Health +347121,Health,Health +347120,Health,Health +343337,Health,Health +339612,Health,Health +339611,Health,Health +339610,Health,Health +339609,Health,Health +339608,Health,Health +337789,Health,Health +337784,Health,Health +337783,Health,Health +337782,Health,Health +337780,Health,Health +337779,Health,Health +337778,Health,Health +337777,Health,Health +337776,Health,Health +335405,Health,Health +335404,Health,Health +335403,Health,Health +335402,Health,Health +335400,Health,Health +335399,Health,Health +335397,Health,Health +333270,Health,Health +333269,Health,Health +333267,Health,Health +331099,Health,Health +331098,Health,Health +331097,Health,Health +331096,Health,Health +331095,Health,Health +329654,Health,Health +329653,Health,Health +329652,Health,Health +329651,Health,Health +329650,Health,Health +329649,Health,Health +326581,Health,Health +326578,Health,Health +326577,Health,Health +326576,Health,Health +326573,Health,Health +326571,Health,Health +326570,Health,Health +326569,Health,Health +323730,Health,Health +323703,Health,Health +323702,Health,Health +323700,Health,Health +323699,Health,Health +323698,Health,Health +321272,Health,Health +321271,Health,Health +318693,Health,Health +318691,Health,Health +318690,Health,Health +318689,Health,Health +315452,Health,Health +315451,Health,Health +315450,Health,Health +315449,Health,Health +312500,Health,Health +312498,Health,Health +312497,Health,Health +312496,Health,Health +312495,Health,Health +312493,Health,Health +309557,Health,Health +309556,Health,Health +309555,Health,Health +303621,Health,Health +303620,Health,Health +303619,Health,Health +303617,Health,Health +303615,Health,Health +303614,Health,Health +303612,Health,Health +303610,Health,Health +303609,Health,Health +303594,Health,Health +303593,Health,Health +303591,Health,Health +296269,Health,Health +296260,Health,Health +296257,Health,Health +296255,Health,Health +296252,Health,Health +290489,Health,Health +286590,Health,Health +286589,Health,Health +286570,Health,Health +286552,Health,Health +286550,Health,Health +280405,Health,Health +280404,Health,Health +277200,Health,Health +277199,Health,Health +277197,Health,Health +277195,Health,Health +277189,Health,Health +277180,Health,Health +273005,Health,Health +273002,Health,Health +272999,Health,Health +272997,Health,Health +272995,Health,Health +272994,Health,Health +272991,Health,Health +268097,Health,Health +268096,Health,Health +268094,Health,Health +268092,Health,Health +268073,Health,Health +268071,Health,Health +268068,Health,Health +262929,Health,Health +258978,Health,Health +258976,Health,Health +253530,Health,Health +253529,Health,Health +250353,Health,Health +244836,Health,Health +244832,Health,Health +244830,Health,Health +244825,Health,Health +244822,Health,Health +244818,Health,Health +244812,Health,Health +244810,Health,Health +240763,Health,Health +240762,Health,Health +240760,Health,Health +240758,Health,Health +240756,Health,Health +239990,Health,Health +236252,Health,Health +236251,Health,Health +236234,Health,Health +236231,Health,Health +232315,Health,Health +232314,Health,Health +511931,Health,Health +511930,Health,Health +510207,Health,Health +510206,Health,Health +510204,Health,Health +510200,Health,Health +507811,Health,Health +507810,Health,Health +507809,Health,Health +507805,Health,Health +507803,Health,Health +507802,Health,Health +504797,Health,Health +504784,Health,Health +504775,Health,Health +504761,Health,Health +504752,Health,Health +504745,Health,Health +504742,Health,Health +504735,Health,Health +504682,Health,Health +504215,Health,Health +504188,Health,Health +504182,Health,Health +500873,Health,Health +500871,Health,Health +500868,Health,Health +500866,Health,Health +497400,Health,Health +497399,Health,Health +497398,Health,Health +494745,Health,Health +494744,Health,Health +494743,Health,Health +494741,Health,Health +494738,Health,Health +494734,Health,Health +494732,Health,Health +494729,Health,Health +492563,Health,Health +492562,Health,Health +489942,Health,Health +489938,Health,Health +486481,Health,Health +486479,Health,Health +486477,Health,Health +485638,Health,Health +483682,Health,Health +483679,Health,Health +480990,Health,Health +479134,Health,Health +479133,Health,Health +479131,Health,Health +477082,Health,Health +477079,Health,Health +474599,Health,Health +474598,Health,Health +472191,Health,Health +472189,Health,Health +472187,Health,Health +470393,Health,Health +470388,Health,Health +470382,Health,Health +470380,Health,Health +470376,Health,Health +470374,Health,Health +470358,Health,Health +470349,Health,Health +470339,Health,Health +466556,Health,Health +466554,Health,Health +466552,Health,Health +466549,Health,Health +464429,Health,Health +464296,Health,Health +464293,Health,Health +464292,Health,Health +463180,Health,Health +462243,Health,Health +462242,Health,Health +462239,Health,Health +460934,Health,Health +460933,Health,Health +460932,Health,Health +460931,Health,Health +460930,Health,Health +459961,Health,Health +459845,Health,Health +459435,Health,Health +458028,Health,Health +458023,Health,Health +458022,Health,Health +458019,Health,Health +458018,Health,Health +457007,Health,Health +457006,Health,Health +457005,Health,Health +454915,Health,Health +454899,Health,Health +454898,Health,Health +454897,Health,Health +454895,Health,Health +452245,Health,Health +452222,Health,Health +452076,Health,Health +452071,Health,Health +452062,Health,Health +452055,Health,Health +452050,Health,Health +452043,Health,Health +452034,Health,Health +449360,Health,Health +449358,Health,Health +446781,Health,Health +446780,Health,Health +446778,Health,Health +446776,Health,Health +446773,Health,Health +445038,Health,Health +444941,Health,Health +444933,Health,Health +444929,Health,Health +444926,Health,Health +444924,Health,Health +444923,Health,Health +444921,Health,Health +444919,Health,Health +444917,Health,Health +444912,Health,Health +443329,Health,Health +441511,Health,Health +441509,Health,Health +441508,Health,Health +441506,Health,Health +441504,Health,Health +438556,Health,Health +438554,Health,Health +438546,Health,Health +438540,Health,Health +438529,Health,Health +438526,Health,Health +438523,Health,Health +438500,Health,Health +435114,Health,Health +435113,Health,Health +435110,Health,Health +435109,Health,Health +435107,Health,Health +435105,Health,Health +435100,Health,Health +435096,Health,Health +435091,Health,Health +435090,Health,Health +435089,Health,Health +435088,Health,Health +434384,Health,Health +433285,Health,Health +433283,Health,Health +433282,Health,Health +433280,Health,Health +433279,Health,Health +431835,Health,Health +431833,Health,Health +431832,Health,Health +431831,Health,Health +431829,Health,Health +431828,Health,Health +431827,Health,Health +431826,Health,Health +431825,Health,Health +430896,Health,Health +430895,Health,Health +430884,Health,Health +430880,Health,Health +430878,Health,Health +430872,Health,Health +430870,Health,Health +430867,Health,Health +430861,Health,Health +430858,Health,Health +430855,Health,Health +430847,Health,Health +430835,Health,Health +430833,Health,Health +430829,Health,Health +428047,Health,Health +428046,Health,Health +428045,Health,Health +428042,Health,Health +428041,Health,Health +428037,Health,Health +428036,Health,Health +428034,Health,Health +428032,Health,Health +428030,Health,Health +428028,Health,Health +428027,Health,Health +428026,Health,Health +428025,Health,Health +428023,Health,Health +428021,Health,Health +428017,Health,Health +426048,Health,Health +425749,Health,Health +425748,Health,Health +425745,Health,Health +425743,Health,Health +425741,Health,Health +425735,Health,Health +425733,Health,Health +425728,Health,Health +425725,Health,Health +425723,Health,Health +425721,Health,Health +423836,Health,Health +423820,Health,Health +423817,Health,Health +423815,Health,Health +423810,Health,Health +423808,Health,Health +423806,Health,Health +423803,Health,Health +423801,Health,Health +423799,Health,Health +423795,Health,Health +423778,Health,Health +423774,Health,Health +423770,Health,Health +423767,Health,Health +421450,Health,Health +421449,Health,Health +421447,Health,Health +421446,Health,Health +421445,Health,Health +415681,Health,Health +415679,Health,Health +415678,Health,Health +415676,Health,Health +415675,Health,Health +414058,Health,Health +413069,Health,Health +407527,Health,Health +406506,Health,Health +406504,Health,Health +404689,Health,Health +400529,Health,Health +400527,Health,Health +400525,Health,Health +400524,Health,Health +398406,Health,Health +396092,Health,Health +396088,Health,Health +396082,Health,Health +393333,Health,Health +392179,Health,Health +392178,Health,Health +392176,Health,Health +389246,Health,Health +389245,Health,Health +389244,Health,Health +389243,Health,Health +386816,Health,Health +386814,Health,Health +381929,Health,Health +381928,Health,Health +381927,Health,Health +381003,Health,Health +381001,Health,Health +381000,Health,Health +380999,Health,Health +380998,Health,Health +380996,Health,Health +380995,Health,Health +378095,Health,Health +378094,Health,Health +378093,Health,Health +378092,Health,Health +378091,Health,Health +378090,Health,Health +378088,Health,Health +378087,Health,Health +375862,Health,Health +375861,Health,Health +375860,Health,Health +375859,Health,Health +373799,Health,Health +373798,Health,Health +373797,Health,Health +373796,Health,Health +373795,Health,Health +373794,Health,Health +373793,Health,Health +373792,Health,Health +373791,Health,Health +373790,Health,Health +373789,Health,Health +372337,Health,Health +371058,Health,Health +371056,Health,Health +371052,Health,Health +371050,Health,Health +371049,Health,Health +371048,Health,Health +371047,Health,Health +371045,Health,Health +371043,Health,Health +368517,Health,Health +368516,Health,Health +368514,Health,Health +368511,Health,Health +368509,Health,Health +368507,Health,Health +368504,Health,Health +368502,Health,Health +368445,Health,Health +366336,Health,Health +366335,Health,Health +366334,Health,Health +366333,Health,Health +366332,Health,Health +366331,Health,Health +364742,Health,Health +364713,Health,Health +364712,Health,Health +364711,Health,Health +364710,Health,Health +363347,Health,Health +363346,Health,Health +363345,Health,Health +363344,Health,Health +542926,Health,Health +540839,Health,Health +540838,Health,Health +540837,Health,Health +539637,Health,Health +537609,Health,Health +537607,Health,Health +537606,Health,Health +537605,Health,Health +536049,Health,Health +533583,Health,Health +533581,Health,Health +533580,Health,Health +531072,Health,Health +531067,Health,Health +531063,Health,Health +528617,Health,Health +525014,Health,Health +525007,Health,Health +524978,Health,Health +524975,Health,Health +524967,Health,Health +524964,Health,Health +521835,Health,Health +521827,Health,Health +519440,Health,Health +519439,Health,Health +519438,Health,Health +519437,Health,Health +519434,Health,Health +519426,Health,Health +519419,Health,Health +516520,Health,Health +516518,Health,Health +516517,Health,Health +516515,Health,Health +516513,Health,Health +515090,Health,Health +515089,Health,Health +513704,Health,Health +519437,Industry,Industry +519429,Industry,Industry +90168,Industry,Industry +90165,Industry,Industry +90164,Industry,Industry +87552,Industry,Industry +87550,Industry,Industry +85037,Industry,Industry +80546,Industry,Industry +80543,Industry,Industry +80536,Industry,Industry +120437,Industry,Industry +120436,Industry,Industry +120435,Industry,Industry +116956,Industry,Industry +116954,Industry,Industry +112414,Industry,Industry +108822,Industry,Industry +108821,Industry,Industry +108820,Industry,Industry +108819,Industry,Industry +108817,Industry,Industry +108814,Industry,Industry +106540,Industry,Industry +106539,Industry,Industry +106538,Industry,Industry +101142,Industry,Industry +101128,Industry,Industry +101122,Industry,Industry +97345,Industry,Industry +97344,Industry,Industry +97342,Industry,Industry +93594,Industry,Industry +93581,Industry,Industry +93576,Industry,Industry +93567,Industry,Industry +90172,Industry,Industry +90170,Industry,Industry +170612,Industry,Industry +170611,Industry,Industry +170610,Industry,Industry +170609,Industry,Industry +170608,Industry,Industry +170606,Industry,Industry +170605,Industry,Industry +170602,Industry,Industry +170600,Industry,Industry +168139,Industry,Industry +168059,Industry,Industry +168056,Industry,Industry +168041,Industry,Industry +168038,Industry,Industry +168035,Industry,Industry +168029,Industry,Industry +165335,Industry,Industry +165334,Industry,Industry +165333,Industry,Industry +165332,Industry,Industry +163614,Industry,Industry +163612,Industry,Industry +163608,Industry,Industry +163606,Industry,Industry +163605,Industry,Industry +161946,Industry,Industry +161945,Industry,Industry +161942,Industry,Industry +161940,Industry,Industry +161937,Industry,Industry +159381,Industry,Industry +159376,Industry,Industry +159375,Industry,Industry +156808,Industry,Industry +156807,Industry,Industry +154633,Industry,Industry +154632,Industry,Industry +154630,Industry,Industry +153287,Industry,Industry +153277,Industry,Industry +151678,Industry,Industry +151677,Industry,Industry +150246,Industry,Industry +150245,Industry,Industry +147716,Industry,Industry +147715,Industry,Industry +145637,Industry,Industry +145636,Industry,Industry +145635,Industry,Industry +141978,Industry,Industry +141977,Industry,Industry +141975,Industry,Industry +138495,Industry,Industry +138494,Industry,Industry +135654,Industry,Industry +132889,Industry,Industry +127334,Industry,Industry +124622,Industry,Industry +124620,Industry,Industry +258976,Industry,Industry +253529,Industry,Industry +250353,Industry,Industry +244836,Industry,Industry +244832,Industry,Industry +244830,Industry,Industry +244825,Industry,Industry +244822,Industry,Industry +244818,Industry,Industry +244812,Industry,Industry +244810,Industry,Industry +240763,Industry,Industry +240762,Industry,Industry +240760,Industry,Industry +240758,Industry,Industry +240756,Industry,Industry +239990,Industry,Industry +236252,Industry,Industry +236251,Industry,Industry +236234,Industry,Industry +236231,Industry,Industry +232315,Industry,Industry +232314,Industry,Industry +232313,Industry,Industry +232312,Industry,Industry +232311,Industry,Industry +229844,Industry,Industry +229842,Industry,Industry +229834,Industry,Industry +229832,Industry,Industry +229814,Industry,Industry +226739,Industry,Industry +226738,Industry,Industry +226737,Industry,Industry +226736,Industry,Industry +226735,Industry,Industry +222807,Industry,Industry +217307,Industry,Industry +217287,Industry,Industry +217278,Industry,Industry +217274,Industry,Industry +217269,Industry,Industry +217259,Industry,Industry +217252,Industry,Industry +211856,Industry,Industry +211854,Industry,Industry +211853,Industry,Industry +211852,Industry,Industry +211851,Industry,Industry +211849,Industry,Industry +211844,Industry,Industry +207136,Industry,Industry +207134,Industry,Industry +207132,Industry,Industry +207129,Industry,Industry +202507,Industry,Industry +199755,Industry,Industry +199752,Industry,Industry +199749,Industry,Industry +199741,Industry,Industry +199739,Industry,Industry +199730,Industry,Industry +199726,Industry,Industry +199717,Industry,Industry +199705,Industry,Industry +199702,Industry,Industry +193214,Industry,Industry +193213,Industry,Industry +193211,Industry,Industry +193208,Industry,Industry +193207,Industry,Industry +193206,Industry,Industry +193205,Industry,Industry +193204,Industry,Industry +193184,Industry,Industry +193182,Industry,Industry +193180,Industry,Industry +193178,Industry,Industry +193177,Industry,Industry +193176,Industry,Industry +193175,Industry,Industry +193174,Industry,Industry +193173,Industry,Industry +193172,Industry,Industry +193170,Industry,Industry +193168,Industry,Industry +193167,Industry,Industry +193166,Industry,Industry +193165,Industry,Industry +193164,Industry,Industry +193149,Industry,Industry +193148,Industry,Industry +193147,Industry,Industry +193146,Industry,Industry +193084,Industry,Industry +193080,Industry,Industry +193078,Industry,Industry +193074,Industry,Industry +193073,Industry,Industry +193072,Industry,Industry +193069,Industry,Industry +193068,Industry,Industry +193067,Industry,Industry +193066,Industry,Industry +188970,Industry,Industry +188968,Industry,Industry +188873,Industry,Industry +188871,Industry,Industry +188869,Industry,Industry +188868,Industry,Industry +188866,Industry,Industry +188864,Industry,Industry +188841,Industry,Industry +188839,Industry,Industry +188836,Industry,Industry +188834,Industry,Industry +185389,Industry,Industry +185388,Industry,Industry +185387,Industry,Industry +177546,Industry,Industry +177525,Industry,Industry +175334,Industry,Industry +175328,Industry,Industry +175326,Industry,Industry +175045,Industry,Industry +175044,Industry,Industry +175043,Industry,Industry +175042,Industry,Industry +175041,Industry,Industry +170615,Industry,Industry +170614,Industry,Industry +386816,Industry,Industry +386814,Industry,Industry +381929,Industry,Industry +381928,Industry,Industry +381927,Industry,Industry +381003,Industry,Industry +381001,Industry,Industry +381000,Industry,Industry +380999,Industry,Industry +380998,Industry,Industry +380996,Industry,Industry +380995,Industry,Industry +378096,Industry,Industry +378095,Industry,Industry +378094,Industry,Industry +378093,Industry,Industry +378092,Industry,Industry +378091,Industry,Industry +378088,Industry,Industry +378087,Industry,Industry +375862,Industry,Industry +375861,Industry,Industry +375860,Industry,Industry +375859,Industry,Industry +373799,Industry,Industry +373798,Industry,Industry +373797,Industry,Industry +373796,Industry,Industry +373795,Industry,Industry +373794,Industry,Industry +373793,Industry,Industry +373792,Industry,Industry +373791,Industry,Industry +373790,Industry,Industry +373789,Industry,Industry +372337,Industry,Industry +371058,Industry,Industry +371056,Industry,Industry +371052,Industry,Industry +371050,Industry,Industry +371049,Industry,Industry +371048,Industry,Industry +371047,Industry,Industry +371045,Industry,Industry +371043,Industry,Industry +368517,Industry,Industry +368516,Industry,Industry +368514,Industry,Industry +368511,Industry,Industry +368509,Industry,Industry +368507,Industry,Industry +368504,Industry,Industry +368502,Industry,Industry +368445,Industry,Industry +366336,Industry,Industry +366335,Industry,Industry +366334,Industry,Industry +366333,Industry,Industry +366332,Industry,Industry +366331,Industry,Industry +364742,Industry,Industry +364713,Industry,Industry +364712,Industry,Industry +364711,Industry,Industry +364710,Industry,Industry +363347,Industry,Industry +363346,Industry,Industry +363345,Industry,Industry +363344,Industry,Industry +360865,Industry,Industry +359502,Industry,Industry +357609,Industry,Industry +357608,Industry,Industry +357606,Industry,Industry +357605,Industry,Industry +357604,Industry,Industry +357603,Industry,Industry +355822,Industry,Industry +355821,Industry,Industry +355820,Industry,Industry +353482,Industry,Industry +353481,Industry,Industry +353452,Industry,Industry +353451,Industry,Industry +353450,Industry,Industry +353449,Industry,Industry +353448,Industry,Industry +353446,Industry,Industry +353445,Industry,Industry +351029,Industry,Industry +350823,Industry,Industry +350819,Industry,Industry +350818,Industry,Industry +350815,Industry,Industry +350814,Industry,Industry +348864,Industry,Industry +348863,Industry,Industry +348862,Industry,Industry +348861,Industry,Industry +348860,Industry,Industry +348859,Industry,Industry +348858,Industry,Industry +347126,Industry,Industry +347125,Industry,Industry +347124,Industry,Industry +347123,Industry,Industry +347121,Industry,Industry +347120,Industry,Industry +343337,Industry,Industry +339612,Industry,Industry +339610,Industry,Industry +339609,Industry,Industry +339608,Industry,Industry +337789,Industry,Industry +337784,Industry,Industry +337783,Industry,Industry +337782,Industry,Industry +337780,Industry,Industry +337779,Industry,Industry +337778,Industry,Industry +337777,Industry,Industry +337776,Industry,Industry +335405,Industry,Industry +335404,Industry,Industry +335403,Industry,Industry +335402,Industry,Industry +335400,Industry,Industry +335399,Industry,Industry +335397,Industry,Industry +333270,Industry,Industry +333269,Industry,Industry +333267,Industry,Industry +331099,Industry,Industry +331098,Industry,Industry +331097,Industry,Industry +331096,Industry,Industry +331095,Industry,Industry +329654,Industry,Industry +329653,Industry,Industry +329652,Industry,Industry +329651,Industry,Industry +329649,Industry,Industry +326581,Industry,Industry +326578,Industry,Industry +326577,Industry,Industry +326576,Industry,Industry +326573,Industry,Industry +326571,Industry,Industry +326570,Industry,Industry +326569,Industry,Industry +323730,Industry,Industry +323703,Industry,Industry +323702,Industry,Industry +323700,Industry,Industry +323699,Industry,Industry +323698,Industry,Industry +321272,Industry,Industry +321271,Industry,Industry +318691,Industry,Industry +318690,Industry,Industry +318689,Industry,Industry +315452,Industry,Industry +315450,Industry,Industry +315449,Industry,Industry +312500,Industry,Industry +312498,Industry,Industry +312497,Industry,Industry +312496,Industry,Industry +312495,Industry,Industry +312493,Industry,Industry +309557,Industry,Industry +309556,Industry,Industry +309555,Industry,Industry +303621,Industry,Industry +303620,Industry,Industry +303612,Industry,Industry +303609,Industry,Industry +303594,Industry,Industry +303591,Industry,Industry +296269,Industry,Industry +296260,Industry,Industry +296257,Industry,Industry +296252,Industry,Industry +290489,Industry,Industry +286590,Industry,Industry +286589,Industry,Industry +286570,Industry,Industry +286552,Industry,Industry +286550,Industry,Industry +280405,Industry,Industry +280404,Industry,Industry +277200,Industry,Industry +277199,Industry,Industry +277197,Industry,Industry +277195,Industry,Industry +277193,Industry,Industry +277189,Industry,Industry +277180,Industry,Industry +273005,Industry,Industry +273002,Industry,Industry +272999,Industry,Industry +272997,Industry,Industry +272994,Industry,Industry +272991,Industry,Industry +268096,Industry,Industry +268094,Industry,Industry +268092,Industry,Industry +268073,Industry,Industry +268071,Industry,Industry +268068,Industry,Industry +262929,Industry,Industry +258978,Industry,Industry +519426,Industry,Industry +519419,Industry,Industry +516520,Industry,Industry +516518,Industry,Industry +516517,Industry,Industry +516515,Industry,Industry +516512,Industry,Industry +515090,Industry,Industry +515089,Industry,Industry +513702,Industry,Industry +511932,Industry,Industry +511931,Industry,Industry +510209,Industry,Industry +510206,Industry,Industry +510204,Industry,Industry +510200,Industry,Industry +507811,Industry,Industry +507810,Industry,Industry +507809,Industry,Industry +507805,Industry,Industry +507803,Industry,Industry +507802,Industry,Industry +507801,Industry,Industry +504797,Industry,Industry +504784,Industry,Industry +504775,Industry,Industry +504761,Industry,Industry +504752,Industry,Industry +504745,Industry,Industry +504742,Industry,Industry +504735,Industry,Industry +504682,Industry,Industry +504215,Industry,Industry +504188,Industry,Industry +504182,Industry,Industry +500873,Industry,Industry +500871,Industry,Industry +500868,Industry,Industry +500866,Industry,Industry +500864,Industry,Industry +494745,Industry,Industry +494744,Industry,Industry +494743,Industry,Industry +494741,Industry,Industry +494738,Industry,Industry +494734,Industry,Industry +494732,Industry,Industry +494729,Industry,Industry +492563,Industry,Industry +492562,Industry,Industry +489942,Industry,Industry +489938,Industry,Industry +486481,Industry,Industry +486479,Industry,Industry +486477,Industry,Industry +483679,Industry,Industry +480990,Industry,Industry +479134,Industry,Industry +477082,Industry,Industry +477079,Industry,Industry +474599,Industry,Industry +474598,Industry,Industry +472191,Industry,Industry +472189,Industry,Industry +472187,Industry,Industry +470382,Industry,Industry +470380,Industry,Industry +470376,Industry,Industry +470358,Industry,Industry +470349,Industry,Industry +470339,Industry,Industry +466554,Industry,Industry +466552,Industry,Industry +466549,Industry,Industry +464296,Industry,Industry +464293,Industry,Industry +464292,Industry,Industry +463180,Industry,Industry +462243,Industry,Industry +462242,Industry,Industry +462239,Industry,Industry +460934,Industry,Industry +460933,Industry,Industry +460932,Industry,Industry +460931,Industry,Industry +460930,Industry,Industry +458028,Industry,Industry +458023,Industry,Industry +458020,Industry,Industry +458019,Industry,Industry +458018,Industry,Industry +457005,Industry,Industry +454915,Industry,Industry +454899,Industry,Industry +454898,Industry,Industry +454897,Industry,Industry +452245,Industry,Industry +452222,Industry,Industry +452076,Industry,Industry +452071,Industry,Industry +452062,Industry,Industry +452055,Industry,Industry +452050,Industry,Industry +452043,Industry,Industry +452034,Industry,Industry +449363,Industry,Industry +449360,Industry,Industry +449358,Industry,Industry +446781,Industry,Industry +446780,Industry,Industry +446778,Industry,Industry +446776,Industry,Industry +446773,Industry,Industry +445038,Industry,Industry +444941,Industry,Industry +444933,Industry,Industry +444929,Industry,Industry +444926,Industry,Industry +444924,Industry,Industry +444923,Industry,Industry +444921,Industry,Industry +444919,Industry,Industry +444917,Industry,Industry +444912,Industry,Industry +443330,Industry,Industry +443329,Industry,Industry +441511,Industry,Industry +441509,Industry,Industry +441508,Industry,Industry +441506,Industry,Industry +441504,Industry,Industry +438556,Industry,Industry +438554,Industry,Industry +438546,Industry,Industry +438540,Industry,Industry +438529,Industry,Industry +438526,Industry,Industry +438523,Industry,Industry +438500,Industry,Industry +435114,Industry,Industry +435113,Industry,Industry +435110,Industry,Industry +435109,Industry,Industry +435107,Industry,Industry +435105,Industry,Industry +435100,Industry,Industry +435096,Industry,Industry +435091,Industry,Industry +435090,Industry,Industry +435089,Industry,Industry +435088,Industry,Industry +434384,Industry,Industry +433285,Industry,Industry +433283,Industry,Industry +433282,Industry,Industry +433280,Industry,Industry +433279,Industry,Industry +431835,Industry,Industry +431833,Industry,Industry +431831,Industry,Industry +431829,Industry,Industry +431828,Industry,Industry +431827,Industry,Industry +431826,Industry,Industry +431825,Industry,Industry +430896,Industry,Industry +430895,Industry,Industry +430884,Industry,Industry +430880,Industry,Industry +430878,Industry,Industry +430847,Industry,Industry +430829,Industry,Industry +428047,Industry,Industry +428046,Industry,Industry +428042,Industry,Industry +428032,Industry,Industry +428030,Industry,Industry +428027,Industry,Industry +428026,Industry,Industry +428025,Industry,Industry +426048,Industry,Industry +425721,Industry,Industry +423836,Industry,Industry +423817,Industry,Industry +423815,Industry,Industry +423810,Industry,Industry +423808,Industry,Industry +423806,Industry,Industry +423803,Industry,Industry +423801,Industry,Industry +423799,Industry,Industry +423795,Industry,Industry +423774,Industry,Industry +421450,Industry,Industry +421447,Industry,Industry +421445,Industry,Industry +419144,Industry,Industry +415681,Industry,Industry +415678,Industry,Industry +415676,Industry,Industry +415675,Industry,Industry +414058,Industry,Industry +413069,Industry,Industry +407527,Industry,Industry +406506,Industry,Industry +406504,Industry,Industry +404689,Industry,Industry +400529,Industry,Industry +400528,Industry,Industry +400527,Industry,Industry +400526,Industry,Industry +400525,Industry,Industry +400524,Industry,Industry +398406,Industry,Industry +396092,Industry,Industry +396088,Industry,Industry +396082,Industry,Industry +393333,Industry,Industry +392179,Industry,Industry +392178,Industry,Industry +392176,Industry,Industry +389246,Industry,Industry +389245,Industry,Industry +389244,Industry,Industry +389243,Industry,Industry +542926,Industry,Industry +540839,Industry,Industry +540838,Industry,Industry +540837,Industry,Industry +540834,Industry,Industry +539637,Industry,Industry +537609,Industry,Industry +537607,Industry,Industry +537606,Industry,Industry +537605,Industry,Industry +536049,Industry,Industry +533586,Industry,Industry +533583,Industry,Industry +533581,Industry,Industry +533580,Industry,Industry +531072,Industry,Industry +531067,Industry,Industry +531063,Industry,Industry +528617,Industry,Industry +528613,Industry,Industry +525014,Industry,Industry +525007,Industry,Industry +524978,Industry,Industry +524975,Industry,Industry +524974,Industry,Industry +524967,Industry,Industry +524964,Industry,Industry +521835,Industry,Industry +521827,Industry,Industry +519439,Industry,Industry +470374,Infrastructure,Infrastructure +433283,Infrastructure,Infrastructure +516517,Infrastructure,Infrastructure +492563,Intellectual Property,Intellectual Property +479133,Intellectual Property,Intellectual Property +80541,Intellectual Property,Intellectual Property +80540,Intellectual Property,Intellectual Property +80535,Intellectual Property,Intellectual Property +77295,Intellectual Property,Intellectual Property +76374,Intellectual Property,Intellectual Property +106538,Intellectual Property,Intellectual Property +101142,Intellectual Property,Intellectual Property +101128,Intellectual Property,Intellectual Property +101125,Intellectual Property,Intellectual Property +101122,Intellectual Property,Intellectual Property +97345,Intellectual Property,Intellectual Property +97344,Intellectual Property,Intellectual Property +97342,Intellectual Property,Intellectual Property +93640,Intellectual Property,Intellectual Property +93638,Intellectual Property,Intellectual Property +93636,Intellectual Property,Intellectual Property +93634,Intellectual Property,Intellectual Property +93594,Intellectual Property,Intellectual Property +93581,Intellectual Property,Intellectual Property +93576,Intellectual Property,Intellectual Property +93567,Intellectual Property,Intellectual Property +90172,Intellectual Property,Intellectual Property +90170,Intellectual Property,Intellectual Property +90165,Intellectual Property,Intellectual Property +90164,Intellectual Property,Intellectual Property +87550,Intellectual Property,Intellectual Property +80547,Intellectual Property,Intellectual Property +80546,Intellectual Property,Intellectual Property +80545,Intellectual Property,Intellectual Property +159395,Intellectual Property,Intellectual Property +159392,Intellectual Property,Intellectual Property +159388,Intellectual Property,Intellectual Property +159386,Intellectual Property,Intellectual Property +159384,Intellectual Property,Intellectual Property +159381,Intellectual Property,Intellectual Property +159378,Intellectual Property,Intellectual Property +159376,Intellectual Property,Intellectual Property +159375,Intellectual Property,Intellectual Property +156808,Intellectual Property,Intellectual Property +156807,Intellectual Property,Intellectual Property +154633,Intellectual Property,Intellectual Property +154632,Intellectual Property,Intellectual Property +153287,Intellectual Property,Intellectual Property +153286,Intellectual Property,Intellectual Property +153282,Intellectual Property,Intellectual Property +153277,Intellectual Property,Intellectual Property +151677,Intellectual Property,Intellectual Property +150246,Intellectual Property,Intellectual Property +150245,Intellectual Property,Intellectual Property +150242,Intellectual Property,Intellectual Property +147716,Intellectual Property,Intellectual Property +147715,Intellectual Property,Intellectual Property +145637,Intellectual Property,Intellectual Property +145636,Intellectual Property,Intellectual Property +145635,Intellectual Property,Intellectual Property +141978,Intellectual Property,Intellectual Property +141977,Intellectual Property,Intellectual Property +141975,Intellectual Property,Intellectual Property +138495,Intellectual Property,Intellectual Property +138494,Intellectual Property,Intellectual Property +135654,Intellectual Property,Intellectual Property +132889,Intellectual Property,Intellectual Property +127334,Intellectual Property,Intellectual Property +124622,Intellectual Property,Intellectual Property +124620,Intellectual Property,Intellectual Property +124614,Intellectual Property,Intellectual Property +120437,Intellectual Property,Intellectual Property +120436,Intellectual Property,Intellectual Property +120435,Intellectual Property,Intellectual Property +116956,Intellectual Property,Intellectual Property +116954,Intellectual Property,Intellectual Property +112414,Intellectual Property,Intellectual Property +112375,Intellectual Property,Intellectual Property +108822,Intellectual Property,Intellectual Property +108821,Intellectual Property,Intellectual Property +108820,Intellectual Property,Intellectual Property +108819,Intellectual Property,Intellectual Property +108817,Intellectual Property,Intellectual Property +108815,Intellectual Property,Intellectual Property +108814,Intellectual Property,Intellectual Property +106540,Intellectual Property,Intellectual Property +106539,Intellectual Property,Intellectual Property +188968,Intellectual Property,Intellectual Property +188869,Intellectual Property,Intellectual Property +188868,Intellectual Property,Intellectual Property +188866,Intellectual Property,Intellectual Property +188864,Intellectual Property,Intellectual Property +188841,Intellectual Property,Intellectual Property +188839,Intellectual Property,Intellectual Property +188836,Intellectual Property,Intellectual Property +188834,Intellectual Property,Intellectual Property +185389,Intellectual Property,Intellectual Property +185388,Intellectual Property,Intellectual Property +185387,Intellectual Property,Intellectual Property +185386,Intellectual Property,Intellectual Property +185385,Intellectual Property,Intellectual Property +185384,Intellectual Property,Intellectual Property +177546,Intellectual Property,Intellectual Property +177525,Intellectual Property,Intellectual Property +175334,Intellectual Property,Intellectual Property +175328,Intellectual Property,Intellectual Property +175326,Intellectual Property,Intellectual Property +175045,Intellectual Property,Intellectual Property +175044,Intellectual Property,Intellectual Property +175042,Intellectual Property,Intellectual Property +175041,Intellectual Property,Intellectual Property +173399,Intellectual Property,Intellectual Property +170614,Intellectual Property,Intellectual Property +170612,Intellectual Property,Intellectual Property +170611,Intellectual Property,Intellectual Property +170610,Intellectual Property,Intellectual Property +170609,Intellectual Property,Intellectual Property +170608,Intellectual Property,Intellectual Property +170606,Intellectual Property,Intellectual Property +170605,Intellectual Property,Intellectual Property +170602,Intellectual Property,Intellectual Property +170600,Intellectual Property,Intellectual Property +168139,Intellectual Property,Intellectual Property +168059,Intellectual Property,Intellectual Property +168056,Intellectual Property,Intellectual Property +168041,Intellectual Property,Intellectual Property +168038,Intellectual Property,Intellectual Property +168035,Intellectual Property,Intellectual Property +168029,Intellectual Property,Intellectual Property +165335,Intellectual Property,Intellectual Property +165334,Intellectual Property,Intellectual Property +165333,Intellectual Property,Intellectual Property +165332,Intellectual Property,Intellectual Property +163614,Intellectual Property,Intellectual Property +163612,Intellectual Property,Intellectual Property +163608,Intellectual Property,Intellectual Property +163606,Intellectual Property,Intellectual Property +163605,Intellectual Property,Intellectual Property +161946,Intellectual Property,Intellectual Property +161940,Intellectual Property,Intellectual Property +161937,Intellectual Property,Intellectual Property +159418,Intellectual Property,Intellectual Property +159416,Intellectual Property,Intellectual Property +159413,Intellectual Property,Intellectual Property +159410,Intellectual Property,Intellectual Property +159407,Intellectual Property,Intellectual Property +159405,Intellectual Property,Intellectual Property +159404,Intellectual Property,Intellectual Property +159403,Intellectual Property,Intellectual Property +159402,Intellectual Property,Intellectual Property +159400,Intellectual Property,Intellectual Property +159398,Intellectual Property,Intellectual Property +277200,Intellectual Property,Intellectual Property +277199,Intellectual Property,Intellectual Property +277197,Intellectual Property,Intellectual Property +277195,Intellectual Property,Intellectual Property +277193,Intellectual Property,Intellectual Property +277180,Intellectual Property,Intellectual Property +273005,Intellectual Property,Intellectual Property +272997,Intellectual Property,Intellectual Property +272994,Intellectual Property,Intellectual Property +268096,Intellectual Property,Intellectual Property +268073,Intellectual Property,Intellectual Property +268071,Intellectual Property,Intellectual Property +268068,Intellectual Property,Intellectual Property +262929,Intellectual Property,Intellectual Property +258978,Intellectual Property,Intellectual Property +253529,Intellectual Property,Intellectual Property +250353,Intellectual Property,Intellectual Property +244836,Intellectual Property,Intellectual Property +244832,Intellectual Property,Intellectual Property +244830,Intellectual Property,Intellectual Property +244825,Intellectual Property,Intellectual Property +244822,Intellectual Property,Intellectual Property +244818,Intellectual Property,Intellectual Property +244812,Intellectual Property,Intellectual Property +244810,Intellectual Property,Intellectual Property +240763,Intellectual Property,Intellectual Property +240762,Intellectual Property,Intellectual Property +240760,Intellectual Property,Intellectual Property +240758,Intellectual Property,Intellectual Property +240756,Intellectual Property,Intellectual Property +239990,Intellectual Property,Intellectual Property +236252,Intellectual Property,Intellectual Property +236251,Intellectual Property,Intellectual Property +236234,Intellectual Property,Intellectual Property +236231,Intellectual Property,Intellectual Property +232315,Intellectual Property,Intellectual Property +232314,Intellectual Property,Intellectual Property +232313,Intellectual Property,Intellectual Property +232312,Intellectual Property,Intellectual Property +232311,Intellectual Property,Intellectual Property +229844,Intellectual Property,Intellectual Property +229842,Intellectual Property,Intellectual Property +229834,Intellectual Property,Intellectual Property +229832,Intellectual Property,Intellectual Property +229814,Intellectual Property,Intellectual Property +226737,Intellectual Property,Intellectual Property +226736,Intellectual Property,Intellectual Property +222807,Intellectual Property,Intellectual Property +217288,Intellectual Property,Intellectual Property +217287,Intellectual Property,Intellectual Property +217274,Intellectual Property,Intellectual Property +217269,Intellectual Property,Intellectual Property +217259,Intellectual Property,Intellectual Property +217252,Intellectual Property,Intellectual Property +211854,Intellectual Property,Intellectual Property +211853,Intellectual Property,Intellectual Property +211852,Intellectual Property,Intellectual Property +211851,Intellectual Property,Intellectual Property +211849,Intellectual Property,Intellectual Property +211844,Intellectual Property,Intellectual Property +207136,Intellectual Property,Intellectual Property +207134,Intellectual Property,Intellectual Property +207132,Intellectual Property,Intellectual Property +207129,Intellectual Property,Intellectual Property +202507,Intellectual Property,Intellectual Property +199755,Intellectual Property,Intellectual Property +199752,Intellectual Property,Intellectual Property +199749,Intellectual Property,Intellectual Property +199741,Intellectual Property,Intellectual Property +199739,Intellectual Property,Intellectual Property +199730,Intellectual Property,Intellectual Property +199726,Intellectual Property,Intellectual Property +199717,Intellectual Property,Intellectual Property +199705,Intellectual Property,Intellectual Property +199702,Intellectual Property,Intellectual Property +193214,Intellectual Property,Intellectual Property +193213,Intellectual Property,Intellectual Property +193211,Intellectual Property,Intellectual Property +193208,Intellectual Property,Intellectual Property +193207,Intellectual Property,Intellectual Property +193206,Intellectual Property,Intellectual Property +193205,Intellectual Property,Intellectual Property +193204,Intellectual Property,Intellectual Property +193184,Intellectual Property,Intellectual Property +193182,Intellectual Property,Intellectual Property +193180,Intellectual Property,Intellectual Property +193178,Intellectual Property,Intellectual Property +193177,Intellectual Property,Intellectual Property +193176,Intellectual Property,Intellectual Property +193175,Intellectual Property,Intellectual Property +193174,Intellectual Property,Intellectual Property +193173,Intellectual Property,Intellectual Property +193172,Intellectual Property,Intellectual Property +193170,Intellectual Property,Intellectual Property +193168,Intellectual Property,Intellectual Property +193167,Intellectual Property,Intellectual Property +193166,Intellectual Property,Intellectual Property +193165,Intellectual Property,Intellectual Property +193164,Intellectual Property,Intellectual Property +193149,Intellectual Property,Intellectual Property +193148,Intellectual Property,Intellectual Property +193147,Intellectual Property,Intellectual Property +193146,Intellectual Property,Intellectual Property +193084,Intellectual Property,Intellectual Property +193080,Intellectual Property,Intellectual Property +193078,Intellectual Property,Intellectual Property +193074,Intellectual Property,Intellectual Property +193073,Intellectual Property,Intellectual Property +193072,Intellectual Property,Intellectual Property +193069,Intellectual Property,Intellectual Property +193068,Intellectual Property,Intellectual Property +193067,Intellectual Property,Intellectual Property +193066,Intellectual Property,Intellectual Property +188970,Intellectual Property,Intellectual Property +398406,Intellectual Property,Intellectual Property +396092,Intellectual Property,Intellectual Property +396088,Intellectual Property,Intellectual Property +396082,Intellectual Property,Intellectual Property +393333,Intellectual Property,Intellectual Property +392179,Intellectual Property,Intellectual Property +392178,Intellectual Property,Intellectual Property +392176,Intellectual Property,Intellectual Property +389246,Intellectual Property,Intellectual Property +389245,Intellectual Property,Intellectual Property +389244,Intellectual Property,Intellectual Property +389243,Intellectual Property,Intellectual Property +386816,Intellectual Property,Intellectual Property +386814,Intellectual Property,Intellectual Property +381929,Intellectual Property,Intellectual Property +381928,Intellectual Property,Intellectual Property +381927,Intellectual Property,Intellectual Property +381003,Intellectual Property,Intellectual Property +381001,Intellectual Property,Intellectual Property +381000,Intellectual Property,Intellectual Property +380999,Intellectual Property,Intellectual Property +380998,Intellectual Property,Intellectual Property +380996,Intellectual Property,Intellectual Property +380995,Intellectual Property,Intellectual Property +378096,Intellectual Property,Intellectual Property +378095,Intellectual Property,Intellectual Property +378094,Intellectual Property,Intellectual Property +378093,Intellectual Property,Intellectual Property +378092,Intellectual Property,Intellectual Property +378090,Intellectual Property,Intellectual Property +378088,Intellectual Property,Intellectual Property +378087,Intellectual Property,Intellectual Property +375862,Intellectual Property,Intellectual Property +375861,Intellectual Property,Intellectual Property +375860,Intellectual Property,Intellectual Property +375859,Intellectual Property,Intellectual Property +373799,Intellectual Property,Intellectual Property +373798,Intellectual Property,Intellectual Property +373797,Intellectual Property,Intellectual Property +373796,Intellectual Property,Intellectual Property +373795,Intellectual Property,Intellectual Property +373794,Intellectual Property,Intellectual Property +373793,Intellectual Property,Intellectual Property +373792,Intellectual Property,Intellectual Property +373791,Intellectual Property,Intellectual Property +373790,Intellectual Property,Intellectual Property +373789,Intellectual Property,Intellectual Property +372337,Intellectual Property,Intellectual Property +371058,Intellectual Property,Intellectual Property +371056,Intellectual Property,Intellectual Property +371052,Intellectual Property,Intellectual Property +371050,Intellectual Property,Intellectual Property +371049,Intellectual Property,Intellectual Property +371048,Intellectual Property,Intellectual Property +371047,Intellectual Property,Intellectual Property +371045,Intellectual Property,Intellectual Property +371043,Intellectual Property,Intellectual Property +368517,Intellectual Property,Intellectual Property +368516,Intellectual Property,Intellectual Property +368514,Intellectual Property,Intellectual Property +368511,Intellectual Property,Intellectual Property +368509,Intellectual Property,Intellectual Property +368507,Intellectual Property,Intellectual Property +368504,Intellectual Property,Intellectual Property +368502,Intellectual Property,Intellectual Property +368445,Intellectual Property,Intellectual Property +366336,Intellectual Property,Intellectual Property +366335,Intellectual Property,Intellectual Property +366334,Intellectual Property,Intellectual Property +366333,Intellectual Property,Intellectual Property +366332,Intellectual Property,Intellectual Property +366331,Intellectual Property,Intellectual Property +364742,Intellectual Property,Intellectual Property +364713,Intellectual Property,Intellectual Property +364712,Intellectual Property,Intellectual Property +364711,Intellectual Property,Intellectual Property +364710,Intellectual Property,Intellectual Property +363347,Intellectual Property,Intellectual Property +363346,Intellectual Property,Intellectual Property +363345,Intellectual Property,Intellectual Property +363344,Intellectual Property,Intellectual Property +360865,Intellectual Property,Intellectual Property +359502,Intellectual Property,Intellectual Property +357609,Intellectual Property,Intellectual Property +357608,Intellectual Property,Intellectual Property +357606,Intellectual Property,Intellectual Property +357605,Intellectual Property,Intellectual Property +357604,Intellectual Property,Intellectual Property +357603,Intellectual Property,Intellectual Property +355822,Intellectual Property,Intellectual Property +355821,Intellectual Property,Intellectual Property +355820,Intellectual Property,Intellectual Property +353482,Intellectual Property,Intellectual Property +353481,Intellectual Property,Intellectual Property +353452,Intellectual Property,Intellectual Property +353451,Intellectual Property,Intellectual Property +353450,Intellectual Property,Intellectual Property +353449,Intellectual Property,Intellectual Property +353448,Intellectual Property,Intellectual Property +353446,Intellectual Property,Intellectual Property +353445,Intellectual Property,Intellectual Property +351029,Intellectual Property,Intellectual Property +350823,Intellectual Property,Intellectual Property +350819,Intellectual Property,Intellectual Property +350818,Intellectual Property,Intellectual Property +350815,Intellectual Property,Intellectual Property +350814,Intellectual Property,Intellectual Property +348864,Intellectual Property,Intellectual Property +348863,Intellectual Property,Intellectual Property +348862,Intellectual Property,Intellectual Property +348861,Intellectual Property,Intellectual Property +348860,Intellectual Property,Intellectual Property +348859,Intellectual Property,Intellectual Property +348858,Intellectual Property,Intellectual Property +347125,Intellectual Property,Intellectual Property +347124,Intellectual Property,Intellectual Property +347123,Intellectual Property,Intellectual Property +347121,Intellectual Property,Intellectual Property +347120,Intellectual Property,Intellectual Property +343337,Intellectual Property,Intellectual Property +339612,Intellectual Property,Intellectual Property +339611,Intellectual Property,Intellectual Property +339610,Intellectual Property,Intellectual Property +339609,Intellectual Property,Intellectual Property +339608,Intellectual Property,Intellectual Property +337789,Intellectual Property,Intellectual Property +337784,Intellectual Property,Intellectual Property +337783,Intellectual Property,Intellectual Property +337782,Intellectual Property,Intellectual Property +337780,Intellectual Property,Intellectual Property +337779,Intellectual Property,Intellectual Property +337778,Intellectual Property,Intellectual Property +337777,Intellectual Property,Intellectual Property +337776,Intellectual Property,Intellectual Property +335405,Intellectual Property,Intellectual Property +335404,Intellectual Property,Intellectual Property +335403,Intellectual Property,Intellectual Property +335402,Intellectual Property,Intellectual Property +335400,Intellectual Property,Intellectual Property +335399,Intellectual Property,Intellectual Property +335397,Intellectual Property,Intellectual Property +333270,Intellectual Property,Intellectual Property +333269,Intellectual Property,Intellectual Property +331099,Intellectual Property,Intellectual Property +331098,Intellectual Property,Intellectual Property +331097,Intellectual Property,Intellectual Property +331096,Intellectual Property,Intellectual Property +331095,Intellectual Property,Intellectual Property +329654,Intellectual Property,Intellectual Property +329652,Intellectual Property,Intellectual Property +329649,Intellectual Property,Intellectual Property +326581,Intellectual Property,Intellectual Property +326578,Intellectual Property,Intellectual Property +326577,Intellectual Property,Intellectual Property +326576,Intellectual Property,Intellectual Property +326573,Intellectual Property,Intellectual Property +326571,Intellectual Property,Intellectual Property +326570,Intellectual Property,Intellectual Property +326569,Intellectual Property,Intellectual Property +323730,Intellectual Property,Intellectual Property +323703,Intellectual Property,Intellectual Property +323702,Intellectual Property,Intellectual Property +323700,Intellectual Property,Intellectual Property +323699,Intellectual Property,Intellectual Property +323698,Intellectual Property,Intellectual Property +321272,Intellectual Property,Intellectual Property +321271,Intellectual Property,Intellectual Property +318691,Intellectual Property,Intellectual Property +318690,Intellectual Property,Intellectual Property +315452,Intellectual Property,Intellectual Property +315450,Intellectual Property,Intellectual Property +312500,Intellectual Property,Intellectual Property +312498,Intellectual Property,Intellectual Property +312496,Intellectual Property,Intellectual Property +312495,Intellectual Property,Intellectual Property +312493,Intellectual Property,Intellectual Property +309557,Intellectual Property,Intellectual Property +309556,Intellectual Property,Intellectual Property +309555,Intellectual Property,Intellectual Property +303621,Intellectual Property,Intellectual Property +303612,Intellectual Property,Intellectual Property +303609,Intellectual Property,Intellectual Property +303594,Intellectual Property,Intellectual Property +303591,Intellectual Property,Intellectual Property +296260,Intellectual Property,Intellectual Property +296252,Intellectual Property,Intellectual Property +286590,Intellectual Property,Intellectual Property +286589,Intellectual Property,Intellectual Property +286570,Intellectual Property,Intellectual Property +286552,Intellectual Property,Intellectual Property +286550,Intellectual Property,Intellectual Property +280405,Intellectual Property,Intellectual Property +280404,Intellectual Property,Intellectual Property +466549,Intellectual Property,Intellectual Property +464429,Intellectual Property,Intellectual Property +464296,Intellectual Property,Intellectual Property +462242,Intellectual Property,Intellectual Property +460934,Intellectual Property,Intellectual Property +460933,Intellectual Property,Intellectual Property +460932,Intellectual Property,Intellectual Property +460930,Intellectual Property,Intellectual Property +454915,Intellectual Property,Intellectual Property +454899,Intellectual Property,Intellectual Property +452222,Intellectual Property,Intellectual Property +449360,Intellectual Property,Intellectual Property +446776,Intellectual Property,Intellectual Property +445038,Intellectual Property,Intellectual Property +444941,Intellectual Property,Intellectual Property +444933,Intellectual Property,Intellectual Property +444926,Intellectual Property,Intellectual Property +444919,Intellectual Property,Intellectual Property +444917,Intellectual Property,Intellectual Property +444912,Intellectual Property,Intellectual Property +441508,Intellectual Property,Intellectual Property +441504,Intellectual Property,Intellectual Property +438556,Intellectual Property,Intellectual Property +438554,Intellectual Property,Intellectual Property +438540,Intellectual Property,Intellectual Property +438529,Intellectual Property,Intellectual Property +438526,Intellectual Property,Intellectual Property +438500,Intellectual Property,Intellectual Property +433285,Intellectual Property,Intellectual Property +433283,Intellectual Property,Intellectual Property +431825,Intellectual Property,Intellectual Property +426048,Intellectual Property,Intellectual Property +419144,Intellectual Property,Intellectual Property +415678,Intellectual Property,Intellectual Property +415676,Intellectual Property,Intellectual Property +413069,Intellectual Property,Intellectual Property +407527,Intellectual Property,Intellectual Property +406504,Intellectual Property,Intellectual Property +404689,Intellectual Property,Intellectual Property +400529,Intellectual Property,Intellectual Property +400528,Intellectual Property,Intellectual Property +400527,Intellectual Property,Intellectual Property +400526,Intellectual Property,Intellectual Property +400524,Intellectual Property,Intellectual Property +540834,Intellectual Property,Intellectual Property +539643,Intellectual Property,Intellectual Property +537607,Intellectual Property,Intellectual Property +537606,Intellectual Property,Intellectual Property +528613,Intellectual Property,Intellectual Property +524974,Intellectual Property,Intellectual Property +507811,Intellectual Property,Intellectual Property +507805,Intellectual Property,Intellectual Property +504742,Intellectual Property,Intellectual Property +458018,Internal Trade,Internal Trade +435091,Internal Trade,Internal Trade +472191,Internal Trade,Internal Trade +101128,International Relations,International Relations +154630,International Relations,International Relations +150244,International Relations,International Relations +138494,International Relations,International Relations +339612,International Relations,International Relations +337781,International Relations,International Relations +329650,International Relations,International Relations +277191,International Relations,International Relations +226736,International Relations,International Relations +175334,International Relations,International Relations +464293,International Relations,International Relations +458019,International Relations,International Relations +444924,International Relations,International Relations +431828,International Relations,International Relations +423770,International Relations,International Relations +423767,International Relations,International Relations +386816,International Trade,International Trade +386814,International Trade,International Trade +80546,International Trade,International Trade +150246,International Trade,International Trade +150245,International Trade,International Trade +147716,International Trade,International Trade +145635,International Trade,International Trade +138494,International Trade,International Trade +132889,International Trade,International Trade +127334,International Trade,International Trade +116956,International Trade,International Trade +116954,International Trade,International Trade +108821,International Trade,International Trade +108817,International Trade,International Trade +106539,International Trade,International Trade +106538,International Trade,International Trade +101128,International Trade,International Trade +193067,International Trade,International Trade +193066,International Trade,International Trade +188970,International Trade,International Trade +188968,International Trade,International Trade +188869,International Trade,International Trade +188868,International Trade,International Trade +188866,International Trade,International Trade +188864,International Trade,International Trade +188841,International Trade,International Trade +188839,International Trade,International Trade +188836,International Trade,International Trade +188834,International Trade,International Trade +185389,International Trade,International Trade +185388,International Trade,International Trade +185387,International Trade,International Trade +185386,International Trade,International Trade +185385,International Trade,International Trade +185384,International Trade,International Trade +175334,International Trade,International Trade +175326,International Trade,International Trade +170614,International Trade,International Trade +170612,International Trade,International Trade +170611,International Trade,International Trade +170610,International Trade,International Trade +170609,International Trade,International Trade +170608,International Trade,International Trade +170606,International Trade,International Trade +170605,International Trade,International Trade +170602,International Trade,International Trade +170600,International Trade,International Trade +168059,International Trade,International Trade +168056,International Trade,International Trade +168041,International Trade,International Trade +168038,International Trade,International Trade +168035,International Trade,International Trade +165335,International Trade,International Trade +165334,International Trade,International Trade +165333,International Trade,International Trade +165332,International Trade,International Trade +161946,International Trade,International Trade +159381,International Trade,International Trade +159376,International Trade,International Trade +159375,International Trade,International Trade +156808,International Trade,International Trade +156807,International Trade,International Trade +154630,International Trade,International Trade +153287,International Trade,International Trade +153286,International Trade,International Trade +153282,International Trade,International Trade +153277,International Trade,International Trade +244830,International Trade,International Trade +244825,International Trade,International Trade +244822,International Trade,International Trade +244818,International Trade,International Trade +244812,International Trade,International Trade +244810,International Trade,International Trade +240763,International Trade,International Trade +240762,International Trade,International Trade +240760,International Trade,International Trade +240758,International Trade,International Trade +240756,International Trade,International Trade +239990,International Trade,International Trade +236252,International Trade,International Trade +236251,International Trade,International Trade +236234,International Trade,International Trade +236231,International Trade,International Trade +232315,International Trade,International Trade +232314,International Trade,International Trade +232313,International Trade,International Trade +232312,International Trade,International Trade +229844,International Trade,International Trade +229842,International Trade,International Trade +229834,International Trade,International Trade +229832,International Trade,International Trade +229814,International Trade,International Trade +226737,International Trade,International Trade +226736,International Trade,International Trade +222807,International Trade,International Trade +217287,International Trade,International Trade +217274,International Trade,International Trade +217269,International Trade,International Trade +217259,International Trade,International Trade +217252,International Trade,International Trade +211854,International Trade,International Trade +211853,International Trade,International Trade +211852,International Trade,International Trade +211851,International Trade,International Trade +211849,International Trade,International Trade +211844,International Trade,International Trade +207136,International Trade,International Trade +207134,International Trade,International Trade +207132,International Trade,International Trade +207129,International Trade,International Trade +202507,International Trade,International Trade +199755,International Trade,International Trade +199752,International Trade,International Trade +199749,International Trade,International Trade +199741,International Trade,International Trade +199739,International Trade,International Trade +199730,International Trade,International Trade +199726,International Trade,International Trade +199717,International Trade,International Trade +199705,International Trade,International Trade +199702,International Trade,International Trade +193214,International Trade,International Trade +193213,International Trade,International Trade +193211,International Trade,International Trade +193208,International Trade,International Trade +193207,International Trade,International Trade +193206,International Trade,International Trade +193205,International Trade,International Trade +193204,International Trade,International Trade +193184,International Trade,International Trade +193182,International Trade,International Trade +193180,International Trade,International Trade +193178,International Trade,International Trade +193177,International Trade,International Trade +193176,International Trade,International Trade +193175,International Trade,International Trade +193174,International Trade,International Trade +193173,International Trade,International Trade +193172,International Trade,International Trade +193170,International Trade,International Trade +193168,International Trade,International Trade +193167,International Trade,International Trade +193166,International Trade,International Trade +193165,International Trade,International Trade +193164,International Trade,International Trade +193149,International Trade,International Trade +193148,International Trade,International Trade +193147,International Trade,International Trade +193146,International Trade,International Trade +193084,International Trade,International Trade +193080,International Trade,International Trade +193078,International Trade,International Trade +193074,International Trade,International Trade +193073,International Trade,International Trade +193072,International Trade,International Trade +193069,International Trade,International Trade +193068,International Trade,International Trade +381929,International Trade,International Trade +381928,International Trade,International Trade +381927,International Trade,International Trade +381003,International Trade,International Trade +381001,International Trade,International Trade +381000,International Trade,International Trade +380999,International Trade,International Trade +380998,International Trade,International Trade +380996,International Trade,International Trade +380995,International Trade,International Trade +378095,International Trade,International Trade +378094,International Trade,International Trade +378093,International Trade,International Trade +378092,International Trade,International Trade +378090,International Trade,International Trade +378088,International Trade,International Trade +378087,International Trade,International Trade +375862,International Trade,International Trade +375861,International Trade,International Trade +375860,International Trade,International Trade +375859,International Trade,International Trade +373799,International Trade,International Trade +373798,International Trade,International Trade +373797,International Trade,International Trade +373796,International Trade,International Trade +373795,International Trade,International Trade +373794,International Trade,International Trade +373793,International Trade,International Trade +373792,International Trade,International Trade +373791,International Trade,International Trade +373790,International Trade,International Trade +373789,International Trade,International Trade +372337,International Trade,International Trade +371058,International Trade,International Trade +371056,International Trade,International Trade +371052,International Trade,International Trade +371050,International Trade,International Trade +371049,International Trade,International Trade +371048,International Trade,International Trade +371047,International Trade,International Trade +371045,International Trade,International Trade +371043,International Trade,International Trade +368517,International Trade,International Trade +368516,International Trade,International Trade +368514,International Trade,International Trade +368511,International Trade,International Trade +368509,International Trade,International Trade +368507,International Trade,International Trade +368504,International Trade,International Trade +368502,International Trade,International Trade +368445,International Trade,International Trade +366336,International Trade,International Trade +366335,International Trade,International Trade +366334,International Trade,International Trade +366333,International Trade,International Trade +366332,International Trade,International Trade +366331,International Trade,International Trade +364742,International Trade,International Trade +364713,International Trade,International Trade +364712,International Trade,International Trade +364711,International Trade,International Trade +364710,International Trade,International Trade +363347,International Trade,International Trade +363346,International Trade,International Trade +363345,International Trade,International Trade +363344,International Trade,International Trade +360865,International Trade,International Trade +359502,International Trade,International Trade +357609,International Trade,International Trade +357608,International Trade,International Trade +357606,International Trade,International Trade +357605,International Trade,International Trade +357604,International Trade,International Trade +357603,International Trade,International Trade +355822,International Trade,International Trade +355821,International Trade,International Trade +355820,International Trade,International Trade +353482,International Trade,International Trade +353481,International Trade,International Trade +353452,International Trade,International Trade +353451,International Trade,International Trade +353450,International Trade,International Trade +353449,International Trade,International Trade +353448,International Trade,International Trade +353446,International Trade,International Trade +353445,International Trade,International Trade +351029,International Trade,International Trade +350823,International Trade,International Trade +350819,International Trade,International Trade +350818,International Trade,International Trade +350815,International Trade,International Trade +350814,International Trade,International Trade +348864,International Trade,International Trade +348863,International Trade,International Trade +348862,International Trade,International Trade +348861,International Trade,International Trade +348860,International Trade,International Trade +348859,International Trade,International Trade +348858,International Trade,International Trade +347126,International Trade,International Trade +347125,International Trade,International Trade +347124,International Trade,International Trade +347123,International Trade,International Trade +347121,International Trade,International Trade +347120,International Trade,International Trade +343337,International Trade,International Trade +339611,International Trade,International Trade +339610,International Trade,International Trade +339609,International Trade,International Trade +339608,International Trade,International Trade +337789,International Trade,International Trade +337784,International Trade,International Trade +337783,International Trade,International Trade +337782,International Trade,International Trade +337780,International Trade,International Trade +337779,International Trade,International Trade +337778,International Trade,International Trade +337777,International Trade,International Trade +337776,International Trade,International Trade +335405,International Trade,International Trade +335404,International Trade,International Trade +335403,International Trade,International Trade +335402,International Trade,International Trade +335400,International Trade,International Trade +335399,International Trade,International Trade +333270,International Trade,International Trade +331099,International Trade,International Trade +331098,International Trade,International Trade +331097,International Trade,International Trade +331096,International Trade,International Trade +331095,International Trade,International Trade +329654,International Trade,International Trade +329649,International Trade,International Trade +326581,International Trade,International Trade +326578,International Trade,International Trade +326577,International Trade,International Trade +326576,International Trade,International Trade +326573,International Trade,International Trade +326571,International Trade,International Trade +326570,International Trade,International Trade +326569,International Trade,International Trade +323730,International Trade,International Trade +323703,International Trade,International Trade +323702,International Trade,International Trade +323700,International Trade,International Trade +323699,International Trade,International Trade +323698,International Trade,International Trade +321272,International Trade,International Trade +321271,International Trade,International Trade +318691,International Trade,International Trade +318690,International Trade,International Trade +315452,International Trade,International Trade +312500,International Trade,International Trade +312498,International Trade,International Trade +312496,International Trade,International Trade +312495,International Trade,International Trade +312493,International Trade,International Trade +309557,International Trade,International Trade +309556,International Trade,International Trade +309555,International Trade,International Trade +303621,International Trade,International Trade +303612,International Trade,International Trade +303609,International Trade,International Trade +303594,International Trade,International Trade +303591,International Trade,International Trade +296260,International Trade,International Trade +296252,International Trade,International Trade +286590,International Trade,International Trade +286589,International Trade,International Trade +286570,International Trade,International Trade +286552,International Trade,International Trade +286550,International Trade,International Trade +280405,International Trade,International Trade +277199,International Trade,International Trade +277197,International Trade,International Trade +277195,International Trade,International Trade +277180,International Trade,International Trade +273005,International Trade,International Trade +272997,International Trade,International Trade +268096,International Trade,International Trade +268094,International Trade,International Trade +268073,International Trade,International Trade +268071,International Trade,International Trade +268068,International Trade,International Trade +258978,International Trade,International Trade +258976,International Trade,International Trade +253529,International Trade,International Trade +250353,International Trade,International Trade +244836,International Trade,International Trade +244832,International Trade,International Trade +540834,International Trade,International Trade +539643,International Trade,International Trade +537607,International Trade,International Trade +537606,International Trade,International Trade +537605,International Trade,International Trade +533586,International Trade,International Trade +528613,International Trade,International Trade +511931,International Trade,International Trade +507811,International Trade,International Trade +507801,International Trade,International Trade +504182,International Trade,International Trade +472191,International Trade,International Trade +470349,International Trade,International Trade +462242,International Trade,International Trade +460933,International Trade,International Trade +460930,International Trade,International Trade +458023,International Trade,International Trade +454895,International Trade,International Trade +452245,International Trade,International Trade +444941,International Trade,International Trade +444933,International Trade,International Trade +443330,International Trade,International Trade +441508,International Trade,International Trade +441506,International Trade,International Trade +441504,International Trade,International Trade +438556,International Trade,International Trade +438540,International Trade,International Trade +438526,International Trade,International Trade +438500,International Trade,International Trade +433285,International Trade,International Trade +419144,International Trade,International Trade +415678,International Trade,International Trade +415676,International Trade,International Trade +413069,International Trade,International Trade +400529,International Trade,International Trade +400528,International Trade,International Trade +400527,International Trade,International Trade +400526,International Trade,International Trade +400525,International Trade,International Trade +400524,International Trade,International Trade +398406,International Trade,International Trade +396092,International Trade,International Trade +396088,International Trade,International Trade +396082,International Trade,International Trade +393333,International Trade,International Trade +392179,International Trade,International Trade +392178,International Trade,International Trade +392176,International Trade,International Trade +389246,International Trade,International Trade +389245,International Trade,International Trade +389244,International Trade,International Trade +112375,Justice and Law Enforcement,Justice and Law Enforcement +378091,Justice and Law Enforcement,Justice and Law Enforcement +159381,Justice and Law Enforcement,Justice and Law Enforcement +159376,Justice and Law Enforcement,Justice and Law Enforcement +159375,Justice and Law Enforcement,Justice and Law Enforcement +516517,Regional Development,Regional Development +516515,Regional Development,Regional Development +470374,Regional Development,Regional Development +460931,Regional Development,Regional Development +449363,Small Business,Small Business +433283,Small Business,Small Business +112414,Small Business,Small Business +470374,Small Business,Small Business +458028,Small Business,Small Business +423820,Taxation and Finance,Taxation and Finance +423778,Taxation and Finance,Taxation and Finance +106540,Taxation and Finance,Taxation and Finance +106539,Taxation and Finance,Taxation and Finance +106538,Taxation and Finance,Taxation and Finance +93594,Taxation and Finance,Taxation and Finance +93581,Taxation and Finance,Taxation and Finance +93576,Taxation and Finance,Taxation and Finance +90172,Taxation and Finance,Taxation and Finance +90170,Taxation and Finance,Taxation and Finance +124620,Taxation and Finance,Taxation and Finance +108817,Taxation and Finance,Taxation and Finance +108815,Taxation and Finance,Taxation and Finance +188868,Taxation and Finance,Taxation and Finance +404064,International Trade,International Trade +384853,International Trade,International Trade +331664,International Trade,International Trade +324462,International Trade,International Trade +272834,International Trade,International Trade +515299,Justice and Law Enforcement,Justice and Law Enforcement +509950,Justice and Law Enforcement,Justice and Law Enforcement +340832,Justice and Law Enforcement,Justice and Law Enforcement +324461,Justice and Law Enforcement,Justice and Law Enforcement +324459,Justice and Law Enforcement,Justice and Law Enforcement +296309,Justice and Law Enforcement,Justice and Law Enforcement +272831,Justice and Law Enforcement,Justice and Law Enforcement +435051,Justice and Law Enforcement,Justice and Law Enforcement +435045,Justice and Law Enforcement,Justice and Law Enforcement +428417,Justice and Law Enforcement,Justice and Law Enforcement +428372,Justice and Law Enforcement,Justice and Law Enforcement +405050,Justice and Law Enforcement,Justice and Law Enforcement +405048,Justice and Law Enforcement,Justice and Law Enforcement +489882,Justice and Law Enforcement,Justice and Law Enforcement +476866,Justice and Law Enforcement,Justice and Law Enforcement +461482,Justice and Law Enforcement,Justice and Law Enforcement +543267,Justice and Law Enforcement,Justice and Law Enforcement +428351,Small Business,Small Business +518185,Taxation and Finance,Taxation and Finance +517032,Taxation and Finance,Taxation and Finance +94258,Taxation and Finance,Taxation and Finance +85654,Taxation and Finance,Taxation and Finance +77774,Taxation and Finance,Taxation and Finance +77204,Taxation and Finance,Taxation and Finance +161884,Taxation and Finance,Taxation and Finance +161508,Taxation and Finance,Taxation and Finance +158999,Taxation and Finance,Taxation and Finance +158998,Taxation and Finance,Taxation and Finance +154606,Taxation and Finance,Taxation and Finance +132345,Taxation and Finance,Taxation and Finance +121364,Taxation and Finance,Taxation and Finance +108854,Taxation and Finance,Taxation and Finance +98715,Taxation and Finance,Taxation and Finance +400409,Taxation and Finance,Taxation and Finance +389874,Taxation and Finance,Taxation and Finance +380888,Taxation and Finance,Taxation and Finance +378540,Taxation and Finance,Taxation and Finance +362026,Taxation and Finance,Taxation and Finance +275029,Taxation and Finance,Taxation and Finance +272834,Taxation and Finance,Taxation and Finance +271909,Taxation and Finance,Taxation and Finance +267629,Taxation and Finance,Taxation and Finance +259209,Taxation and Finance,Taxation and Finance +240849,Taxation and Finance,Taxation and Finance +240848,Taxation and Finance,Taxation and Finance +227654,Taxation and Finance,Taxation and Finance +207220,Taxation and Finance,Taxation and Finance +193270,Taxation and Finance,Taxation and Finance +180669,Taxation and Finance,Taxation and Finance +173867,Taxation and Finance,Taxation and Finance +458520,Taxation and Finance,Taxation and Finance +428358,Taxation and Finance,Taxation and Finance +428351,Taxation and Finance,Taxation and Finance +410418,Taxation and Finance,Taxation and Finance +404064,Taxation and Finance,Taxation and Finance +544054,Taxation and Finance,Taxation and Finance +544053,Taxation and Finance,Taxation and Finance +543269,Taxation and Finance,Taxation and Finance +536809,Taxation and Finance,Taxation and Finance +536807,Taxation and Finance,Taxation and Finance +536806,Taxation and Finance,Taxation and Finance +534246,Taxation and Finance,Taxation and Finance +533215,Taxation and Finance,Taxation and Finance +532326,Taxation and Finance,Taxation and Finance +457544,International Trade,International Trade +457540,International Trade,International Trade +378732,International Trade,International Trade +457540,Industry,Industry +383449,Industry,Industry +117514,Industry,Industry +378732,Industry,Industry +378731,Industry,Industry +457547,Industry,Industry +457544,Intellectual Property,Intellectual Property +457540,Intellectual Property,Intellectual Property +117514,Intellectual Property,Intellectual Property +94056,Intellectual Property,Intellectual Property +75734,Intellectual Property,Intellectual Property +383449,Intellectual Property,Intellectual Property +378732,Intellectual Property,Intellectual Property +104895,Education,Education +90608,Intellectual Property,Intellectual Property +90603,Intellectual Property,Intellectual Property +539585,Agriculture,Agriculture +500018,Agriculture,Agriculture +149674,Agriculture,Agriculture +149672,Agriculture,Agriculture +114774,Agriculture,Agriculture +192428,Agriculture,Agriculture +373203,Agriculture,Agriculture +353272,Agriculture,Agriculture +541696,Agriculture,Agriculture +539849,Agriculture,Agriculture +539585,Environment,Environment +524015,Environment,Environment +356496,Education,Education +356495,Education,Education +356498,Education,Education +356496,Government Procurement,Government Procurement +356495,Government Procurement,Government Procurement +356498,Government Procurement,Government Procurement +356496,Health,Health +356495,Health,Health +158997,Health,Health +158996,Health,Health +335584,Health,Health +333410,Health,Health +333409,Health,Health +274059,Health,Health +274058,Health,Health +274057,Health,Health +274056,Health,Health +274054,Health,Health +274053,Health,Health +274052,Health,Health +274051,Health,Health +274050,Health,Health +274049,Health,Health +370946,Health,Health +370494,Health,Health +370493,Health,Health +370492,Health,Health +367924,Health,Health +367923,Health,Health +367922,Health,Health +356676,Health,Health +356498,Health,Health +135036,Environment,Environment +135035,Environment,Environment +199896,Defence,Defence +379760,Government Procurement,Government Procurement +397297,Government Procurement,Government Procurement +142635,Government Procurement,Government Procurement +121340,Government Procurement,Government Procurement +259255,Government Procurement,Government Procurement +245353,Government Procurement,Government Procurement +245351,Government Procurement,Government Procurement +240825,Government Procurement,Government Procurement +240821,Government Procurement,Government Procurement +236659,Government Procurement,Government Procurement +236658,Government Procurement,Government Procurement +236657,Government Procurement,Government Procurement +233599,Government Procurement,Government Procurement +233597,Government Procurement,Government Procurement +230400,Government Procurement,Government Procurement +227029,Government Procurement,Government Procurement +223263,Government Procurement,Government Procurement +223260,Government Procurement,Government Procurement +207188,Government Procurement,Government Procurement +207185,Government Procurement,Government Procurement +207179,Government Procurement,Government Procurement +207178,Government Procurement,Government Procurement +380310,Government Procurement,Government Procurement +286510,International Trade,International Trade +286489,International Trade,International Trade +259257,International Trade,International Trade +233598,International Trade,International Trade +230393,International Trade,International Trade +177244,Consumer Issues,Consumer Issues +177226,Consumer Issues,Consumer Issues +177206,Consumer Issues,Consumer Issues +177205,Consumer Issues,Consumer Issues +177204,Consumer Issues,Consumer Issues +173441,Consumer Issues,Consumer Issues +173440,Consumer Issues,Consumer Issues +173438,Consumer Issues,Consumer Issues +173437,Consumer Issues,Consumer Issues +173435,Consumer Issues,Consumer Issues +173434,Consumer Issues,Consumer Issues +173433,Consumer Issues,Consumer Issues +166934,Consumer Issues,Consumer Issues +166933,Consumer Issues,Consumer Issues +166931,Consumer Issues,Consumer Issues +166930,Consumer Issues,Consumer Issues +166928,Consumer Issues,Consumer Issues +190413,Consumer Issues,Consumer Issues +190411,Consumer Issues,Consumer Issues +190409,Consumer Issues,Consumer Issues +190408,Consumer Issues,Consumer Issues +190407,Consumer Issues,Consumer Issues +185204,Consumer Issues,Consumer Issues +177205,Environment,Environment +177204,Environment,Environment +173437,Environment,Environment +173435,Environment,Environment +173434,Environment,Environment +173433,Environment,Environment +170802,Environment,Environment +170800,Environment,Environment +170689,Environment,Environment +170688,Environment,Environment +170687,Environment,Environment +170686,Environment,Environment +166939,Environment,Environment +166934,Environment,Environment +166933,Environment,Environment +166931,Environment,Environment +166930,Environment,Environment +166929,Environment,Environment +166928,Environment,Environment +166927,Environment,Environment +166924,Environment,Environment +190413,Environment,Environment +190412,Environment,Environment +190411,Environment,Environment +190410,Environment,Environment +190409,Environment,Environment +190408,Environment,Environment +190407,Environment,Environment +185374,Environment,Environment +185373,Environment,Environment +185224,Environment,Environment +185204,Environment,Environment +185184,Environment,Environment +185164,Environment,Environment +185144,Environment,Environment +177264,Environment,Environment +177244,Environment,Environment +177228,Environment,Environment +177227,Environment,Environment +177226,Environment,Environment +177225,Environment,Environment +177224,Environment,Environment +166929,Fisheries,Fisheries +166924,Fisheries,Fisheries +190407,Fisheries,Fisheries +185374,Fisheries,Fisheries +185144,Fisheries,Fisheries +177226,Fisheries,Fisheries +173435,Fisheries,Fisheries +170800,Fisheries,Fisheries +166939,Fisheries,Fisheries +177226,Health,Health +173438,Health,Health +190412,Health,Health +190411,Industry,Industry +177228,Industry,Industry +177226,Industry,Industry +177206,Industry,Industry +177205,Industry,Industry +177204,Industry,Industry +173441,Industry,Industry +173440,Industry,Industry +173434,Industry,Industry +173433,Industry,Industry +170800,Industry,Industry +170686,Industry,Industry +166924,Industry,Industry +177206,Infrastructure,Infrastructure +173441,Infrastructure,Infrastructure +170802,Infrastructure,Infrastructure +170800,Infrastructure,Infrastructure +170689,Infrastructure,Infrastructure +170684,Infrastructure,Infrastructure +166939,Infrastructure,Infrastructure +166929,Infrastructure,Infrastructure +185224,Infrastructure,Infrastructure +185204,Infrastructure,Infrastructure +177244,Infrastructure,Infrastructure +177228,Infrastructure,Infrastructure +471982,Employment and Training,Employment and Training +471979,Employment and Training,Employment and Training +149642,Employment and Training,Employment and Training +149641,Employment and Training,Employment and Training +149640,Employment and Training,Employment and Training +149639,Employment and Training,Employment and Training +149638,Employment and Training,Employment and Training +102378,Employment and Training,Employment and Training +241958,Employment and Training,Employment and Training +241957,Employment and Training,Employment and Training +241956,Employment and Training,Employment and Training +241955,Employment and Training,Employment and Training +241953,Employment and Training,Employment and Training +241951,Employment and Training,Employment and Training +241950,Employment and Training,Employment and Training +241949,Employment and Training,Employment and Training +239553,Employment and Training,Employment and Training +236952,Employment and Training,Employment and Training +229133,Employment and Training,Employment and Training +229132,Employment and Training,Employment and Training +215347,Employment and Training,Employment and Training +215287,Employment and Training,Employment and Training +215227,Employment and Training,Employment and Training +215127,Employment and Training,Employment and Training +197309,Employment and Training,Employment and Training +195333,Employment and Training,Employment and Training +195332,Employment and Training,Employment and Training +195330,Employment and Training,Employment and Training +195329,Employment and Training,Employment and Training +195328,Employment and Training,Employment and Training +195310,Employment and Training,Employment and Training +195307,Employment and Training,Employment and Training +192511,Employment and Training,Employment and Training +192507,Employment and Training,Employment and Training +192504,Employment and Training,Employment and Training +188127,Employment and Training,Employment and Training +187957,Employment and Training,Employment and Training +187954,Employment and Training,Employment and Training +187953,Employment and Training,Employment and Training +187952,Employment and Training,Employment and Training +187951,Employment and Training,Employment and Training +187950,Employment and Training,Employment and Training +187949,Employment and Training,Employment and Training +183044,Employment and Training,Employment and Training +174225,Employment and Training,Employment and Training +160637,Employment and Training,Employment and Training +160636,Employment and Training,Employment and Training +158195,Employment and Training,Employment and Training +155766,Employment and Training,Employment and Training +154466,Employment and Training,Employment and Training +149644,Employment and Training,Employment and Training +149643,Employment and Training,Employment and Training +389418,Employment and Training,Employment and Training +337509,Employment and Training,Employment and Training +337501,Employment and Training,Employment and Training +335014,Employment and Training,Employment and Training +315622,Employment and Training,Employment and Training +309713,Employment and Training,Employment and Training +309712,Employment and Training,Employment and Training +309711,Employment and Training,Employment and Training +309710,Employment and Training,Employment and Training +309708,Employment and Training,Employment and Training +309698,Employment and Training,Employment and Training +303057,Employment and Training,Employment and Training +303056,Employment and Training,Employment and Training +303055,Employment and Training,Employment and Training +303054,Employment and Training,Employment and Training +303051,Employment and Training,Employment and Training +303013,Employment and Training,Employment and Training +303012,Employment and Training,Employment and Training +303007,Employment and Training,Employment and Training +303005,Employment and Training,Employment and Training +303004,Employment and Training,Employment and Training +303003,Employment and Training,Employment and Training +303002,Employment and Training,Employment and Training +303000,Employment and Training,Employment and Training +302997,Employment and Training,Employment and Training +302995,Employment and Training,Employment and Training +302993,Employment and Training,Employment and Training +302991,Employment and Training,Employment and Training +293310,Employment and Training,Employment and Training +292150,Employment and Training,Employment and Training +288112,Employment and Training,Employment and Training +276121,Employment and Training,Employment and Training +276120,Employment and Training,Employment and Training +275932,Employment and Training,Employment and Training +266191,Employment and Training,Employment and Training +266190,Employment and Training,Employment and Training +257130,Employment and Training,Employment and Training +247670,Employment and Training,Employment and Training +242990,Employment and Training,Employment and Training +242029,Employment and Training,Employment and Training +241960,Employment and Training,Employment and Training +463452,Energy,Energy +446791,Energy,Energy +192509,Energy,Energy +192507,Energy,Energy +192506,Energy,Energy +188127,Energy,Energy +187956,Energy,Energy +187954,Energy,Energy +187953,Energy,Energy +187951,Energy,Energy +187949,Energy,Energy +187948,Energy,Energy +187947,Energy,Energy +187945,Energy,Energy +183044,Energy,Energy +151641,Energy,Energy +149647,Energy,Energy +144197,Energy,Energy +271550,Energy,Energy +257133,Energy,Energy +257132,Energy,Energy +257130,Energy,Energy +255769,Energy,Energy +252949,Energy,Energy +247670,Energy,Energy +247668,Energy,Energy +247667,Energy,Energy +247666,Energy,Energy +247663,Energy,Energy +247659,Energy,Energy +247657,Energy,Energy +247655,Energy,Energy +247654,Energy,Energy +247653,Energy,Energy +247651,Energy,Energy +243630,Energy,Energy +243450,Energy,Energy +242589,Energy,Energy +242550,Energy,Energy +242029,Energy,Energy +241957,Energy,Energy +241955,Energy,Energy +241950,Energy,Energy +239555,Energy,Energy +239553,Energy,Energy +239552,Energy,Energy +239551,Energy,Energy +239550,Energy,Energy +237790,Energy,Energy +236952,Energy,Energy +235630,Energy,Energy +235253,Energy,Energy +235252,Energy,Energy +235250,Energy,Energy +235249,Energy,Energy +233313,Energy,Energy +233312,Energy,Energy +233311,Energy,Energy +229133,Energy,Energy +220810,Energy,Energy +215327,Energy,Energy +215227,Energy,Energy +215207,Energy,Energy +215087,Energy,Energy +195397,Energy,Energy +195387,Energy,Energy +195335,Energy,Energy +195334,Energy,Energy +195330,Energy,Energy +195327,Energy,Energy +195311,Energy,Energy +195309,Energy,Energy +195308,Energy,Energy +195307,Energy,Energy +192512,Energy,Energy +192511,Energy,Energy +409743,Energy,Energy +351782,Energy,Energy +347246,Energy,Energy +340154,Energy,Energy +339855,Energy,Energy +337509,Energy,Energy +337493,Energy,Energy +334718,Energy,Energy +331975,Energy,Energy +331869,Energy,Energy +330566,Energy,Energy +330508,Energy,Energy +322890,Energy,Energy +309703,Energy,Energy +309702,Energy,Energy +309700,Energy,Energy +306389,Energy,Energy +305650,Energy,Energy +305649,Energy,Energy +303070,Energy,Energy +303069,Energy,Energy +303057,Energy,Energy +303056,Energy,Energy +303054,Energy,Energy +303051,Energy,Energy +303049,Energy,Energy +303013,Energy,Energy +303010,Energy,Energy +303009,Energy,Energy +303007,Energy,Energy +303004,Energy,Energy +303002,Energy,Energy +303001,Energy,Energy +303000,Energy,Energy +302999,Energy,Energy +302998,Energy,Energy +302997,Energy,Energy +302996,Energy,Energy +302993,Energy,Energy +302991,Energy,Energy +302990,Energy,Energy +294391,Energy,Energy +293310,Energy,Energy +288112,Energy,Energy +283809,Energy,Energy +276120,Energy,Energy +275934,Energy,Energy +490241,Energy,Energy +487123,Energy,Energy +476494,Energy,Energy +475422,Energy,Energy +465891,Energy,Energy +465884,Energy,Energy +465883,Energy,Energy +465882,Energy,Energy +465880,Energy,Energy +465867,Energy,Energy +533391,Environment,Environment +530753,Environment,Environment +116155,Environment,Environment +110855,Environment,Environment +110854,Environment,Environment +102376,Environment,Environment +102375,Environment,Environment +99896,Environment,Environment +93258,Environment,Environment +93257,Environment,Environment +87037,Environment,Environment +87035,Environment,Environment +87034,Environment,Environment +160636,Environment,Environment +158197,Environment,Environment +158195,Environment,Environment +155766,Environment,Environment +155429,Environment,Environment +154466,Environment,Environment +154106,Environment,Environment +151641,Environment,Environment +149647,Environment,Environment +149646,Environment,Environment +149645,Environment,Environment +149643,Environment,Environment +149639,Environment,Environment +144200,Environment,Environment +144197,Environment,Environment +134398,Environment,Environment +131374,Environment,Environment +126315,Environment,Environment +116294,Environment,Environment +116158,Environment,Environment +116157,Environment,Environment +241954,Environment,Environment +235630,Environment,Environment +220819,Environment,Environment +220818,Environment,Environment +220814,Environment,Environment +220810,Environment,Environment +215287,Environment,Environment +215247,Environment,Environment +209807,Environment,Environment +197309,Environment,Environment +195397,Environment,Environment +195387,Environment,Environment +195330,Environment,Environment +195324,Environment,Environment +195307,Environment,Environment +192511,Environment,Environment +192507,Environment,Environment +192506,Environment,Environment +187956,Environment,Environment +187952,Environment,Environment +187951,Environment,Environment +187949,Environment,Environment +187948,Environment,Environment +187947,Environment,Environment +187945,Environment,Environment +174842,Environment,Environment +174225,Environment,Environment +173908,Environment,Environment +169878,Environment,Environment +169875,Environment,Environment +167294,Environment,Environment +167285,Environment,Environment +165059,Environment,Environment +406840,Environment,Environment +405738,Environment,Environment +405737,Environment,Environment +405736,Environment,Environment +405735,Environment,Environment +405734,Environment,Environment +405733,Environment,Environment +405732,Environment,Environment +405731,Environment,Environment +405730,Environment,Environment +405710,Environment,Environment +405708,Environment,Environment +405706,Environment,Environment +405702,Environment,Environment +405625,Environment,Environment +405611,Environment,Environment +405608,Environment,Environment +405607,Environment,Environment +405604,Environment,Environment +405599,Environment,Environment +405597,Environment,Environment +405596,Environment,Environment +405593,Environment,Environment +405586,Environment,Environment +405580,Environment,Environment +405576,Environment,Environment +405571,Environment,Environment +405442,Environment,Environment +405439,Environment,Environment +405437,Environment,Environment +405436,Environment,Environment +373690,Environment,Environment +365886,Environment,Environment +365884,Environment,Environment +365883,Environment,Environment +337492,Environment,Environment +303054,Environment,Environment +303049,Environment,Environment +303013,Environment,Environment +303001,Environment,Environment +302999,Environment,Environment +302997,Environment,Environment +302996,Environment,Environment +302993,Environment,Environment +288269,Environment,Environment +253749,Environment,Environment +247668,Environment,Environment +247659,Environment,Environment +498220,Environment,Environment +498213,Environment,Environment +498211,Environment,Environment +487115,Environment,Environment +476494,Environment,Environment +475422,Environment,Environment +471990,Environment,Environment +465891,Environment,Environment +465884,Environment,Environment +465883,Environment,Environment +465882,Environment,Environment +465881,Environment,Environment +465880,Environment,Environment +465867,Environment,Environment +463452,Environment,Environment +456983,Environment,Environment +446793,Environment,Environment +446791,Environment,Environment +445165,Environment,Environment +475426,Government Procurement,Government Procurement +471989,Government Procurement,Government Procurement +121876,Government Procurement,Government Procurement +121875,Government Procurement,Government Procurement +119415,Government Procurement,Government Procurement +112955,Government Procurement,Government Procurement +95495,Government Procurement,Government Procurement +176165,Government Procurement,Government Procurement +167290,Government Procurement,Government Procurement +167288,Government Procurement,Government Procurement +165059,Government Procurement,Government Procurement +160636,Government Procurement,Government Procurement +155428,Government Procurement,Government Procurement +155427,Government Procurement,Government Procurement +155426,Government Procurement,Government Procurement +154466,Government Procurement,Government Procurement +149647,Government Procurement,Government Procurement +149641,Government Procurement,Government Procurement +149637,Government Procurement,Government Procurement +136318,Government Procurement,Government Procurement +136317,Government Procurement,Government Procurement +136315,Government Procurement,Government Procurement +131376,Government Procurement,Government Procurement +131375,Government Procurement,Government Procurement +128176,Government Procurement,Government Procurement +335014,Government Procurement,Government Procurement +330566,Government Procurement,Government Procurement +328490,Government Procurement,Government Procurement +328489,Government Procurement,Government Procurement +315622,Government Procurement,Government Procurement +314790,Government Procurement,Government Procurement +311416,Government Procurement,Government Procurement +309708,Government Procurement,Government Procurement +309695,Government Procurement,Government Procurement +309693,Government Procurement,Government Procurement +305650,Government Procurement,Government Procurement +303070,Government Procurement,Government Procurement +303057,Government Procurement,Government Procurement +303051,Government Procurement,Government Procurement +294390,Government Procurement,Government Procurement +288269,Government Procurement,Government Procurement +283809,Government Procurement,Government Procurement +257133,Government Procurement,Government Procurement +243630,Government Procurement,Government Procurement +242029,Government Procurement,Government Procurement +241950,Government Procurement,Government Procurement +235252,Government Procurement,Government Procurement +233312,Government Procurement,Government Procurement +195335,Government Procurement,Government Procurement +195330,Government Procurement,Government Procurement +195329,Government Procurement,Government Procurement +195311,Government Procurement,Government Procurement +195307,Government Procurement,Government Procurement +195304,Government Procurement,Government Procurement +192508,Government Procurement,Government Procurement +187949,Government Procurement,Government Procurement +398417,Government Procurement,Government Procurement +389410,Government Procurement,Government Procurement +365884,Government Procurement,Government Procurement +347521,Government Procurement,Government Procurement +347246,Government Procurement,Government Procurement +347039,Government Procurement,Government Procurement +344458,Government Procurement,Government Procurement +343040,Government Procurement,Government Procurement +342577,Government Procurement,Government Procurement +339628,Government Procurement,Government Procurement +337509,Government Procurement,Government Procurement +337501,Government Procurement,Government Procurement +337491,Government Procurement,Government Procurement +335015,Government Procurement,Government Procurement +536888,Government Procurement,Government Procurement +536887,Government Procurement,Government Procurement +533399,Government Procurement,Government Procurement +528485,Government Procurement,Government Procurement +524384,Government Procurement,Government Procurement +524377,Government Procurement,Government Procurement +516982,Government Procurement,Government Procurement +498220,Government Procurement,Government Procurement +498213,Government Procurement,Government Procurement +498211,Government Procurement,Government Procurement +498208,Government Procurement,Government Procurement +498206,Government Procurement,Government Procurement +483474,Government Procurement,Government Procurement +483471,Government Procurement,Government Procurement +476494,Government Procurement,Government Procurement +476487,Government Procurement,Government Procurement +475498,Government Procurement,Government Procurement +275932,Immigration,Immigration +266189,Immigration,Immigration +134399,Immigration,Immigration +247670,Immigration,Immigration +241953,Immigration,Immigration +241950,Immigration,Immigration +236952,Immigration,Immigration +229133,Immigration,Immigration +229132,Immigration,Immigration +226350,Immigration,Immigration +215227,Immigration,Immigration +215187,Immigration,Immigration +215147,Immigration,Immigration +209489,Immigration,Immigration +195332,Immigration,Immigration +195310,Immigration,Immigration +187957,Immigration,Immigration +315622,Immigration,Immigration +309698,Immigration,Immigration +445089,Industry,Industry +406840,Industry,Industry +99895,Industry,Industry +87037,Industry,Industry +87035,Industry,Industry +87034,Industry,Industry +84576,Industry,Industry +84575,Industry,Industry +144198,Industry,Industry +144197,Industry,Industry +134399,Industry,Industry +134398,Industry,Industry +131394,Industry,Industry +131376,Industry,Industry +131375,Industry,Industry +131374,Industry,Industry +126715,Industry,Industry +126315,Industry,Industry +102379,Industry,Industry +102375,Industry,Industry +176165,Industry,Industry +174225,Industry,Industry +174224,Industry,Industry +173908,Industry,Industry +172785,Industry,Industry +172784,Industry,Industry +169878,Industry,Industry +169877,Industry,Industry +169876,Industry,Industry +169875,Industry,Industry +169874,Industry,Industry +167294,Industry,Industry +167293,Industry,Industry +167292,Industry,Industry +167291,Industry,Industry +167290,Industry,Industry +167289,Industry,Industry +167288,Industry,Industry +167287,Industry,Industry +167286,Industry,Industry +167285,Industry,Industry +167284,Industry,Industry +165059,Industry,Industry +160637,Industry,Industry +160636,Industry,Industry +160578,Industry,Industry +160577,Industry,Industry +160468,Industry,Industry +158197,Industry,Industry +158196,Industry,Industry +158195,Industry,Industry +158194,Industry,Industry +155766,Industry,Industry +155429,Industry,Industry +155428,Industry,Industry +155427,Industry,Industry +155426,Industry,Industry +154466,Industry,Industry +154106,Industry,Industry +151641,Industry,Industry +151098,Industry,Industry +149647,Industry,Industry +149646,Industry,Industry +149645,Industry,Industry +149644,Industry,Industry +149643,Industry,Industry +149642,Industry,Industry +149641,Industry,Industry +149640,Industry,Industry +149639,Industry,Industry +149638,Industry,Industry +147218,Industry,Industry +247652,Industry,Industry +247651,Industry,Industry +243630,Industry,Industry +243629,Industry,Industry +243450,Industry,Industry +242990,Industry,Industry +242989,Industry,Industry +242732,Industry,Industry +242589,Industry,Industry +242550,Industry,Industry +242029,Industry,Industry +241960,Industry,Industry +241959,Industry,Industry +241958,Industry,Industry +241957,Industry,Industry +241956,Industry,Industry +241955,Industry,Industry +241954,Industry,Industry +241953,Industry,Industry +241952,Industry,Industry +241951,Industry,Industry +241950,Industry,Industry +241949,Industry,Industry +240298,Industry,Industry +239555,Industry,Industry +239553,Industry,Industry +239552,Industry,Industry +239551,Industry,Industry +239550,Industry,Industry +239549,Industry,Industry +237791,Industry,Industry +237790,Industry,Industry +236952,Industry,Industry +235630,Industry,Industry +235253,Industry,Industry +235252,Industry,Industry +235251,Industry,Industry +235250,Industry,Industry +235249,Industry,Industry +233315,Industry,Industry +233314,Industry,Industry +233313,Industry,Industry +233312,Industry,Industry +233311,Industry,Industry +229134,Industry,Industry +229133,Industry,Industry +229132,Industry,Industry +229131,Industry,Industry +226353,Industry,Industry +226350,Industry,Industry +220819,Industry,Industry +220818,Industry,Industry +220817,Industry,Industry +220815,Industry,Industry +220814,Industry,Industry +220813,Industry,Industry +220812,Industry,Industry +220811,Industry,Industry +220810,Industry,Industry +220808,Industry,Industry +220807,Industry,Industry +215347,Industry,Industry +215327,Industry,Industry +215307,Industry,Industry +215287,Industry,Industry +215247,Industry,Industry +215227,Industry,Industry +215207,Industry,Industry +215187,Industry,Industry +215167,Industry,Industry +215147,Industry,Industry +215127,Industry,Industry +215107,Industry,Industry +215087,Industry,Industry +209807,Industry,Industry +209489,Industry,Industry +201468,Industry,Industry +197309,Industry,Industry +195397,Industry,Industry +195387,Industry,Industry +195335,Industry,Industry +195334,Industry,Industry +195333,Industry,Industry +195332,Industry,Industry +195330,Industry,Industry +195329,Industry,Industry +195328,Industry,Industry +195327,Industry,Industry +195325,Industry,Industry +195324,Industry,Industry +195314,Industry,Industry +195311,Industry,Industry +195309,Industry,Industry +195308,Industry,Industry +195307,Industry,Industry +195304,Industry,Industry +192512,Industry,Industry +192511,Industry,Industry +192509,Industry,Industry +192508,Industry,Industry +192507,Industry,Industry +192506,Industry,Industry +192505,Industry,Industry +192504,Industry,Industry +188127,Industry,Industry +188126,Industry,Industry +187957,Industry,Industry +187956,Industry,Industry +187954,Industry,Industry +187953,Industry,Industry +187952,Industry,Industry +187951,Industry,Industry +187950,Industry,Industry +187949,Industry,Industry +187948,Industry,Industry +187947,Industry,Industry +187945,Industry,Industry +183044,Industry,Industry +181824,Industry,Industry +396171,Industry,Industry +396168,Industry,Industry +396166,Industry,Industry +396164,Industry,Industry +396159,Industry,Industry +389418,Industry,Industry +383646,Industry,Industry +381133,Industry,Industry +381128,Industry,Industry +381121,Industry,Industry +381120,Industry,Industry +381118,Industry,Industry +381116,Industry,Industry +381115,Industry,Industry +381113,Industry,Industry +381110,Industry,Industry +381107,Industry,Industry +381105,Industry,Industry +381103,Industry,Industry +381100,Industry,Industry +381096,Industry,Industry +381087,Industry,Industry +381084,Industry,Industry +381083,Industry,Industry +381082,Industry,Industry +381081,Industry,Industry +381077,Industry,Industry +381076,Industry,Industry +381073,Industry,Industry +381072,Industry,Industry +381070,Industry,Industry +381067,Industry,Industry +381039,Industry,Industry +379101,Industry,Industry +368372,Industry,Industry +368369,Industry,Industry +368360,Industry,Industry +351782,Industry,Industry +349639,Industry,Industry +348945,Industry,Industry +347521,Industry,Industry +347246,Industry,Industry +347039,Industry,Industry +343100,Industry,Industry +343040,Industry,Industry +342577,Industry,Industry +342463,Industry,Industry +340154,Industry,Industry +339855,Industry,Industry +339628,Industry,Industry +337516,Industry,Industry +337510,Industry,Industry +337509,Industry,Industry +337504,Industry,Industry +337502,Industry,Industry +337501,Industry,Industry +337494,Industry,Industry +337493,Industry,Industry +337492,Industry,Industry +337491,Industry,Industry +337490,Industry,Industry +335015,Industry,Industry +335014,Industry,Industry +334718,Industry,Industry +332869,Industry,Industry +332049,Industry,Industry +331975,Industry,Industry +331869,Industry,Industry +330508,Industry,Industry +328490,Industry,Industry +328489,Industry,Industry +326190,Industry,Industry +326189,Industry,Industry +325198,Industry,Industry +322890,Industry,Industry +322569,Industry,Industry +316691,Industry,Industry +315622,Industry,Industry +314790,Industry,Industry +314429,Industry,Industry +314309,Industry,Industry +313929,Industry,Industry +311416,Industry,Industry +311215,Industry,Industry +309713,Industry,Industry +309712,Industry,Industry +309711,Industry,Industry +309710,Industry,Industry +309708,Industry,Industry +309703,Industry,Industry +309702,Industry,Industry +309700,Industry,Industry +309699,Industry,Industry +309698,Industry,Industry +309695,Industry,Industry +309693,Industry,Industry +306550,Industry,Industry +306549,Industry,Industry +306389,Industry,Industry +305650,Industry,Industry +305649,Industry,Industry +303070,Industry,Industry +303069,Industry,Industry +303057,Industry,Industry +303056,Industry,Industry +303055,Industry,Industry +303054,Industry,Industry +303053,Industry,Industry +303051,Industry,Industry +303049,Industry,Industry +303013,Industry,Industry +303012,Industry,Industry +303010,Industry,Industry +303009,Industry,Industry +303008,Industry,Industry +303007,Industry,Industry +303006,Industry,Industry +303005,Industry,Industry +303004,Industry,Industry +303003,Industry,Industry +303002,Industry,Industry +303000,Industry,Industry +302999,Industry,Industry +302998,Industry,Industry +302996,Industry,Industry +302995,Industry,Industry +302994,Industry,Industry +302993,Industry,Industry +302991,Industry,Industry +302990,Industry,Industry +302989,Industry,Industry +298150,Industry,Industry +297149,Industry,Industry +294391,Industry,Industry +294390,Industry,Industry +293310,Industry,Industry +292589,Industry,Industry +292150,Industry,Industry +288269,Industry,Industry +288112,Industry,Industry +285849,Industry,Industry +284059,Industry,Industry +283809,Industry,Industry +280349,Industry,Industry +276121,Industry,Industry +276120,Industry,Industry +275934,Industry,Industry +275933,Industry,Industry +275932,Industry,Industry +275931,Industry,Industry +275929,Industry,Industry +271552,Industry,Industry +271551,Industry,Industry +271550,Industry,Industry +271549,Industry,Industry +266191,Industry,Industry +266190,Industry,Industry +266189,Industry,Industry +257133,Industry,Industry +257132,Industry,Industry +257131,Industry,Industry +257130,Industry,Industry +257129,Industry,Industry +256729,Industry,Industry +255769,Industry,Industry +253749,Industry,Industry +252949,Industry,Industry +247671,Industry,Industry +247668,Industry,Industry +247667,Industry,Industry +247666,Industry,Industry +247665,Industry,Industry +247664,Industry,Industry +247663,Industry,Industry +247659,Industry,Industry +247657,Industry,Industry +247655,Industry,Industry +247654,Industry,Industry +247653,Industry,Industry +541165,Industry,Industry +539517,Industry,Industry +539516,Industry,Industry +539515,Industry,Industry +539514,Industry,Industry +536895,Industry,Industry +536893,Industry,Industry +536888,Industry,Industry +536887,Industry,Industry +536884,Industry,Industry +535564,Industry,Industry +533397,Industry,Industry +533394,Industry,Industry +533393,Industry,Industry +533390,Industry,Industry +530759,Industry,Industry +530754,Industry,Industry +530753,Industry,Industry +530750,Industry,Industry +528487,Industry,Industry +528478,Industry,Industry +528469,Industry,Industry +528461,Industry,Industry +524383,Industry,Industry +524381,Industry,Industry +524380,Industry,Industry +524379,Industry,Industry +524376,Industry,Industry +524375,Industry,Industry +521107,Industry,Industry +521106,Industry,Industry +521105,Industry,Industry +519037,Industry,Industry +519036,Industry,Industry +519034,Industry,Industry +519033,Industry,Industry +519031,Industry,Industry +516984,Industry,Industry +516982,Industry,Industry +516981,Industry,Industry +516977,Industry,Industry +515223,Industry,Industry +511961,Industry,Industry +511880,Industry,Industry +509915,Industry,Industry +509914,Industry,Industry +509913,Industry,Industry +509912,Industry,Industry +503770,Industry,Industry +503769,Industry,Industry +503762,Industry,Industry +503759,Industry,Industry +503303,Industry,Industry +501387,Industry,Industry +501383,Industry,Industry +501380,Industry,Industry +498220,Industry,Industry +498208,Industry,Industry +498206,Industry,Industry +498203,Industry,Industry +498038,Industry,Industry +494492,Industry,Industry +494490,Industry,Industry +494489,Industry,Industry +494488,Industry,Industry +490253,Industry,Industry +490250,Industry,Industry +490247,Industry,Industry +490241,Industry,Industry +490235,Industry,Industry +487127,Industry,Industry +487123,Industry,Industry +487120,Industry,Industry +487115,Industry,Industry +483475,Industry,Industry +483474,Industry,Industry +483473,Industry,Industry +483471,Industry,Industry +483470,Industry,Industry +481090,Industry,Industry +481089,Industry,Industry +481088,Industry,Industry +481087,Industry,Industry +480530,Industry,Industry +479323,Industry,Industry +479321,Industry,Industry +479317,Industry,Industry +479316,Industry,Industry +476510,Industry,Industry +476508,Industry,Industry +476494,Industry,Industry +476493,Industry,Industry +476492,Industry,Industry +476491,Industry,Industry +476490,Industry,Industry +476489,Industry,Industry +476488,Industry,Industry +476487,Industry,Industry +476125,Industry,Industry +475532,Industry,Industry +475504,Industry,Industry +475498,Industry,Industry +475484,Industry,Industry +475426,Industry,Industry +475422,Industry,Industry +471990,Industry,Industry +471988,Industry,Industry +471982,Industry,Industry +471979,Industry,Industry +469762,Industry,Industry +469760,Industry,Industry +469589,Industry,Industry +466062,Industry,Industry +466061,Industry,Industry +466057,Industry,Industry +466056,Industry,Industry +466055,Industry,Industry +466054,Industry,Industry +465891,Industry,Industry +465889,Industry,Industry +465884,Industry,Industry +465883,Industry,Industry +465882,Industry,Industry +465881,Industry,Industry +465880,Industry,Industry +465867,Industry,Industry +463453,Industry,Industry +463452,Industry,Industry +463451,Industry,Industry +463450,Industry,Industry +463449,Industry,Industry +463448,Industry,Industry +463447,Industry,Industry +461070,Industry,Industry +461069,Industry,Industry +459921,Industry,Industry +459920,Industry,Industry +459254,Industry,Industry +457936,Industry,Industry +457935,Industry,Industry +457934,Industry,Industry +456989,Industry,Industry +456987,Industry,Industry +456986,Industry,Industry +456985,Industry,Industry +456984,Industry,Industry +456983,Industry,Industry +456982,Industry,Industry +456980,Industry,Industry +456979,Industry,Industry +456974,Industry,Industry +456970,Industry,Industry +456312,Industry,Industry +455313,Industry,Industry +455309,Industry,Industry +455303,Industry,Industry +455288,Industry,Industry +455261,Industry,Industry +455259,Industry,Industry +455258,Industry,Industry +454637,Industry,Industry +453664,Industry,Industry +451792,Industry,Industry +451774,Industry,Industry +451458,Industry,Industry +451452,Industry,Industry +451450,Industry,Industry +451415,Industry,Industry +451413,Industry,Industry +451412,Industry,Industry +451411,Industry,Industry +451397,Industry,Industry +451395,Industry,Industry +451394,Industry,Industry +451393,Industry,Industry +451392,Industry,Industry +451388,Industry,Industry +450964,Industry,Industry +450963,Industry,Industry +450962,Industry,Industry +450961,Industry,Industry +450959,Industry,Industry +449261,Industry,Industry +449260,Industry,Industry +449259,Industry,Industry +449258,Industry,Industry +447066,Industry,Industry +447061,Industry,Industry +447060,Industry,Industry +447058,Industry,Industry +447055,Industry,Industry +446801,Industry,Industry +446799,Industry,Industry +446795,Industry,Industry +446793,Industry,Industry +446791,Industry,Industry +446789,Industry,Industry +445165,Industry,Industry +445099,Industry,Industry +445098,Industry,Industry +445096,Industry,Industry +405733,Infrastructure,Infrastructure +405732,Infrastructure,Infrastructure +102376,Infrastructure,Infrastructure +158195,Infrastructure,Infrastructure +158194,Infrastructure,Infrastructure +149637,Infrastructure,Infrastructure +144197,Infrastructure,Infrastructure +309712,Infrastructure,Infrastructure +309711,Infrastructure,Infrastructure +309710,Infrastructure,Infrastructure +306389,Infrastructure,Infrastructure +303070,Infrastructure,Infrastructure +303069,Infrastructure,Infrastructure +303056,Infrastructure,Infrastructure +303051,Infrastructure,Infrastructure +303006,Infrastructure,Infrastructure +303002,Infrastructure,Infrastructure +303000,Infrastructure,Infrastructure +302994,Infrastructure,Infrastructure +302993,Infrastructure,Infrastructure +294390,Infrastructure,Infrastructure +288112,Infrastructure,Infrastructure +271550,Infrastructure,Infrastructure +257131,Infrastructure,Infrastructure +247652,Infrastructure,Infrastructure +242550,Infrastructure,Infrastructure +239553,Infrastructure,Infrastructure +195387,Infrastructure,Infrastructure +195330,Infrastructure,Infrastructure +195329,Infrastructure,Infrastructure +195328,Infrastructure,Infrastructure +195324,Infrastructure,Infrastructure +195311,Infrastructure,Infrastructure +195309,Infrastructure,Infrastructure +195308,Infrastructure,Infrastructure +195307,Infrastructure,Infrastructure +192511,Infrastructure,Infrastructure +192507,Infrastructure,Infrastructure +188127,Infrastructure,Infrastructure +187953,Infrastructure,Infrastructure +187951,Infrastructure,Infrastructure +187950,Infrastructure,Infrastructure +187949,Infrastructure,Infrastructure +187948,Infrastructure,Infrastructure +160637,Infrastructure,Infrastructure +160636,Infrastructure,Infrastructure +405731,Infrastructure,Infrastructure +405730,Infrastructure,Infrastructure +405710,Infrastructure,Infrastructure +405708,Infrastructure,Infrastructure +405706,Infrastructure,Infrastructure +405702,Infrastructure,Infrastructure +405625,Infrastructure,Infrastructure +405613,Infrastructure,Infrastructure +405611,Infrastructure,Infrastructure +405608,Infrastructure,Infrastructure +405607,Infrastructure,Infrastructure +405604,Infrastructure,Infrastructure +405599,Infrastructure,Infrastructure +405597,Infrastructure,Infrastructure +405596,Infrastructure,Infrastructure +405593,Infrastructure,Infrastructure +405586,Infrastructure,Infrastructure +405580,Infrastructure,Infrastructure +405576,Infrastructure,Infrastructure +405571,Infrastructure,Infrastructure +405442,Infrastructure,Infrastructure +405439,Infrastructure,Infrastructure +405437,Infrastructure,Infrastructure +405436,Infrastructure,Infrastructure +396168,Infrastructure,Infrastructure +396166,Infrastructure,Infrastructure +396164,Infrastructure,Infrastructure +396159,Infrastructure,Infrastructure +389418,Infrastructure,Infrastructure +389410,Infrastructure,Infrastructure +381133,Infrastructure,Infrastructure +381128,Infrastructure,Infrastructure +381121,Infrastructure,Infrastructure +381120,Infrastructure,Infrastructure +381118,Infrastructure,Infrastructure +381116,Infrastructure,Infrastructure +381115,Infrastructure,Infrastructure +381113,Infrastructure,Infrastructure +381110,Infrastructure,Infrastructure +381107,Infrastructure,Infrastructure +381105,Infrastructure,Infrastructure +381103,Infrastructure,Infrastructure +381100,Infrastructure,Infrastructure +381096,Infrastructure,Infrastructure +381087,Infrastructure,Infrastructure +381084,Infrastructure,Infrastructure +381083,Infrastructure,Infrastructure +381082,Infrastructure,Infrastructure +381081,Infrastructure,Infrastructure +381077,Infrastructure,Infrastructure +381076,Infrastructure,Infrastructure +381073,Infrastructure,Infrastructure +381072,Infrastructure,Infrastructure +381070,Infrastructure,Infrastructure +381067,Infrastructure,Infrastructure +381039,Infrastructure,Infrastructure +348945,Infrastructure,Infrastructure +347246,Infrastructure,Infrastructure +344458,Infrastructure,Infrastructure +343040,Infrastructure,Infrastructure +337510,Infrastructure,Infrastructure +337509,Infrastructure,Infrastructure +337492,Infrastructure,Infrastructure +337491,Infrastructure,Infrastructure +335014,Infrastructure,Infrastructure +332869,Infrastructure,Infrastructure +328489,Infrastructure,Infrastructure +316691,Infrastructure,Infrastructure +314790,Infrastructure,Infrastructure +309713,Infrastructure,Infrastructure +483471,Infrastructure,Infrastructure +431122,Infrastructure,Infrastructure +431104,Infrastructure,Infrastructure +405738,Infrastructure,Infrastructure +405737,Infrastructure,Infrastructure +405736,Infrastructure,Infrastructure +405735,Infrastructure,Infrastructure +457936,Internal Trade,Internal Trade +456974,Internal Trade,Internal Trade +337509,Internal Trade,Internal Trade +314429,Internal Trade,Internal Trade +405436,Internal Trade,Internal Trade +381072,Internal Trade,Internal Trade +381070,Internal Trade,Internal Trade +476488,International Relations,International Relations +457936,International Relations,International Relations +99896,International Relations,International Relations +93258,International Relations,International Relations +167289,International Relations,International Relations +167288,International Relations,International Relations +167287,International Relations,International Relations +144198,International Relations,International Relations +136315,International Relations,International Relations +131394,International Relations,International Relations +131376,International Relations,International Relations +131375,International Relations,International Relations +126315,International Relations,International Relations +126314,International Relations,International Relations +110854,International Relations,International Relations +305650,International Relations,International Relations +303053,International Relations,International Relations +303008,International Relations,International Relations +302990,International Relations,International Relations +275934,International Relations,International Relations +275933,International Relations,International Relations +275932,International Relations,International Relations +266189,International Relations,International Relations +257130,International Relations,International Relations +255769,International Relations,International Relations +247671,International Relations,International Relations +247670,International Relations,International Relations +247666,International Relations,International Relations +247664,International Relations,International Relations +247659,International Relations,International Relations +242589,International Relations,International Relations +242549,International Relations,International Relations +241950,International Relations,International Relations +239555,International Relations,International Relations +236952,International Relations,International Relations +229133,International Relations,International Relations +226350,International Relations,International Relations +215247,International Relations,International Relations +215207,International Relations,International Relations +215187,International Relations,International Relations +195329,International Relations,International Relations +195325,International Relations,International Relations +176165,International Relations,International Relations +174842,International Relations,International Relations +167294,International Relations,International Relations +167293,International Relations,International Relations +167291,International Relations,International Relations +167290,International Relations,International Relations +457934,International Relations,International Relations +456980,International Relations,International Relations +456312,International Relations,International Relations +455313,International Relations,International Relations +455309,International Relations,International Relations +455303,International Relations,International Relations +455261,International Relations,International Relations +455259,International Relations,International Relations +455258,International Relations,International Relations +453664,International Relations,International Relations +451397,International Relations,International Relations +451395,International Relations,International Relations +451394,International Relations,International Relations +451392,International Relations,International Relations +449261,International Relations,International Relations +446795,International Relations,International Relations +445099,International Relations,International Relations +445096,International Relations,International Relations +445093,International Relations,International Relations +445089,International Relations,International Relations +431142,International Relations,International Relations +398417,International Relations,International Relations +392660,International Relations,International Relations +501380,International Relations,International Relations +490253,International Relations,International Relations +490235,International Relations,International Relations +483471,International Relations,International Relations +479321,International Relations,International Relations +479317,International Relations,International Relations +479316,International Relations,International Relations +476490,International Relations,International Relations +445096,International Trade,International Trade +445093,International Trade,International Trade +99896,International Trade,International Trade +99895,International Trade,International Trade +95495,International Trade,International Trade +93257,International Trade,International Trade +90357,International Trade,International Trade +90356,International Trade,International Trade +87037,International Trade,International Trade +87035,International Trade,International Trade +87034,International Trade,International Trade +84575,International Trade,International Trade +84574,International Trade,International Trade +149638,International Trade,International Trade +147835,International Trade,International Trade +144198,International Trade,International Trade +144197,International Trade,International Trade +136318,International Trade,International Trade +136315,International Trade,International Trade +134398,International Trade,International Trade +131394,International Trade,International Trade +131376,International Trade,International Trade +131375,International Trade,International Trade +128176,International Trade,International Trade +126715,International Trade,International Trade +126314,International Trade,International Trade +121876,International Trade,International Trade +121875,International Trade,International Trade +121874,International Trade,International Trade +119415,International Trade,International Trade +112955,International Trade,International Trade +102379,International Trade,International Trade +102375,International Trade,International Trade +174224,International Trade,International Trade +169877,International Trade,International Trade +169876,International Trade,International Trade +169874,International Trade,International Trade +167293,International Trade,International Trade +167292,International Trade,International Trade +167290,International Trade,International Trade +167289,International Trade,International Trade +167288,International Trade,International Trade +167286,International Trade,International Trade +167284,International Trade,International Trade +165059,International Trade,International Trade +160637,International Trade,International Trade +160636,International Trade,International Trade +160468,International Trade,International Trade +158197,International Trade,International Trade +158195,International Trade,International Trade +158194,International Trade,International Trade +155766,International Trade,International Trade +155426,International Trade,International Trade +154466,International Trade,International Trade +149646,International Trade,International Trade +149644,International Trade,International Trade +149641,International Trade,International Trade +149640,International Trade,International Trade +149639,International Trade,International Trade +226353,International Trade,International Trade +226350,International Trade,International Trade +220818,International Trade,International Trade +220817,International Trade,International Trade +220815,International Trade,International Trade +220813,International Trade,International Trade +220812,International Trade,International Trade +220811,International Trade,International Trade +220810,International Trade,International Trade +220808,International Trade,International Trade +220807,International Trade,International Trade +215347,International Trade,International Trade +215327,International Trade,International Trade +215307,International Trade,International Trade +215287,International Trade,International Trade +215227,International Trade,International Trade +215207,International Trade,International Trade +215187,International Trade,International Trade +215167,International Trade,International Trade +215147,International Trade,International Trade +215127,International Trade,International Trade +215107,International Trade,International Trade +215087,International Trade,International Trade +201469,International Trade,International Trade +201468,International Trade,International Trade +197309,International Trade,International Trade +195336,International Trade,International Trade +195335,International Trade,International Trade +195334,International Trade,International Trade +195330,International Trade,International Trade +195329,International Trade,International Trade +195327,International Trade,International Trade +195325,International Trade,International Trade +195324,International Trade,International Trade +195311,International Trade,International Trade +195310,International Trade,International Trade +195309,International Trade,International Trade +195308,International Trade,International Trade +195307,International Trade,International Trade +195304,International Trade,International Trade +192512,International Trade,International Trade +192511,International Trade,International Trade +192509,International Trade,International Trade +192508,International Trade,International Trade +192507,International Trade,International Trade +192506,International Trade,International Trade +192505,International Trade,International Trade +192504,International Trade,International Trade +188127,International Trade,International Trade +188126,International Trade,International Trade +187957,International Trade,International Trade +187956,International Trade,International Trade +187954,International Trade,International Trade +187953,International Trade,International Trade +187952,International Trade,International Trade +187951,International Trade,International Trade +187950,International Trade,International Trade +187949,International Trade,International Trade +187948,International Trade,International Trade +187947,International Trade,International Trade +187945,International Trade,International Trade +183044,International Trade,International Trade +181824,International Trade,International Trade +176165,International Trade,International Trade +174842,International Trade,International Trade +174225,International Trade,International Trade +311416,International Trade,International Trade +311215,International Trade,International Trade +309713,International Trade,International Trade +309712,International Trade,International Trade +309711,International Trade,International Trade +309710,International Trade,International Trade +309708,International Trade,International Trade +309703,International Trade,International Trade +309702,International Trade,International Trade +309700,International Trade,International Trade +309698,International Trade,International Trade +309695,International Trade,International Trade +309693,International Trade,International Trade +306550,International Trade,International Trade +306549,International Trade,International Trade +306389,International Trade,International Trade +305650,International Trade,International Trade +305649,International Trade,International Trade +303056,International Trade,International Trade +303055,International Trade,International Trade +303054,International Trade,International Trade +303053,International Trade,International Trade +303049,International Trade,International Trade +303013,International Trade,International Trade +303012,International Trade,International Trade +303009,International Trade,International Trade +303008,International Trade,International Trade +303007,International Trade,International Trade +303005,International Trade,International Trade +303004,International Trade,International Trade +303002,International Trade,International Trade +303001,International Trade,International Trade +302999,International Trade,International Trade +302998,International Trade,International Trade +302997,International Trade,International Trade +302991,International Trade,International Trade +302990,International Trade,International Trade +302989,International Trade,International Trade +298150,International Trade,International Trade +297149,International Trade,International Trade +294391,International Trade,International Trade +293609,International Trade,International Trade +293310,International Trade,International Trade +292589,International Trade,International Trade +292150,International Trade,International Trade +289810,International Trade,International Trade +288269,International Trade,International Trade +288112,International Trade,International Trade +284059,International Trade,International Trade +283809,International Trade,International Trade +280349,International Trade,International Trade +276121,International Trade,International Trade +276120,International Trade,International Trade +275934,International Trade,International Trade +275933,International Trade,International Trade +275931,International Trade,International Trade +275929,International Trade,International Trade +271552,International Trade,International Trade +271551,International Trade,International Trade +271550,International Trade,International Trade +271549,International Trade,International Trade +266190,International Trade,International Trade +266189,International Trade,International Trade +257133,International Trade,International Trade +257132,International Trade,International Trade +257131,International Trade,International Trade +257130,International Trade,International Trade +257129,International Trade,International Trade +256729,International Trade,International Trade +255769,International Trade,International Trade +252949,International Trade,International Trade +247671,International Trade,International Trade +247670,International Trade,International Trade +247668,International Trade,International Trade +247667,International Trade,International Trade +247666,International Trade,International Trade +247665,International Trade,International Trade +247664,International Trade,International Trade +247663,International Trade,International Trade +247659,International Trade,International Trade +247657,International Trade,International Trade +247655,International Trade,International Trade +247654,International Trade,International Trade +247653,International Trade,International Trade +247652,International Trade,International Trade +247651,International Trade,International Trade +243630,International Trade,International Trade +243450,International Trade,International Trade +242990,International Trade,International Trade +242989,International Trade,International Trade +242732,International Trade,International Trade +242589,International Trade,International Trade +242550,International Trade,International Trade +242549,International Trade,International Trade +241960,International Trade,International Trade +241959,International Trade,International Trade +241958,International Trade,International Trade +241957,International Trade,International Trade +241956,International Trade,International Trade +241955,International Trade,International Trade +241952,International Trade,International Trade +241951,International Trade,International Trade +241950,International Trade,International Trade +241949,International Trade,International Trade +240298,International Trade,International Trade +239555,International Trade,International Trade +239553,International Trade,International Trade +239552,International Trade,International Trade +239551,International Trade,International Trade +239550,International Trade,International Trade +239549,International Trade,International Trade +237791,International Trade,International Trade +237790,International Trade,International Trade +236952,International Trade,International Trade +235630,International Trade,International Trade +235253,International Trade,International Trade +235252,International Trade,International Trade +235251,International Trade,International Trade +235250,International Trade,International Trade +235249,International Trade,International Trade +233315,International Trade,International Trade +233314,International Trade,International Trade +233313,International Trade,International Trade +233312,International Trade,International Trade +233311,International Trade,International Trade +229134,International Trade,International Trade +229133,International Trade,International Trade +229132,International Trade,International Trade +229131,International Trade,International Trade +445089,International Trade,International Trade +438610,International Trade,International Trade +431135,International Trade,International Trade +431132,International Trade,International Trade +431125,International Trade,International Trade +431122,International Trade,International Trade +431118,International Trade,International Trade +431116,International Trade,International Trade +431114,International Trade,International Trade +431104,International Trade,International Trade +429119,International Trade,International Trade +424433,International Trade,International Trade +424430,International Trade,International Trade +424429,International Trade,International Trade +424428,International Trade,International Trade +424413,International Trade,International Trade +422326,International Trade,International Trade +422325,International Trade,International Trade +422323,International Trade,International Trade +419815,International Trade,International Trade +419808,International Trade,International Trade +409743,International Trade,International Trade +406844,International Trade,International Trade +406840,International Trade,International Trade +405738,International Trade,International Trade +405737,International Trade,International Trade +405736,International Trade,International Trade +405735,International Trade,International Trade +405734,International Trade,International Trade +405733,International Trade,International Trade +405732,International Trade,International Trade +405731,International Trade,International Trade +405730,International Trade,International Trade +405710,International Trade,International Trade +405708,International Trade,International Trade +405706,International Trade,International Trade +405702,International Trade,International Trade +405625,International Trade,International Trade +405613,International Trade,International Trade +405611,International Trade,International Trade +405608,International Trade,International Trade +405607,International Trade,International Trade +405604,International Trade,International Trade +405599,International Trade,International Trade +405597,International Trade,International Trade +405596,International Trade,International Trade +405593,International Trade,International Trade +405586,International Trade,International Trade +405580,International Trade,International Trade +405576,International Trade,International Trade +405571,International Trade,International Trade +405442,International Trade,International Trade +405439,International Trade,International Trade +405437,International Trade,International Trade +398417,International Trade,International Trade +396171,International Trade,International Trade +396168,International Trade,International Trade +396166,International Trade,International Trade +396164,International Trade,International Trade +396159,International Trade,International Trade +393628,International Trade,International Trade +392660,International Trade,International Trade +392659,International Trade,International Trade +389421,International Trade,International Trade +389420,International Trade,International Trade +389419,International Trade,International Trade +389418,International Trade,International Trade +389417,International Trade,International Trade +389416,International Trade,International Trade +389413,International Trade,International Trade +389401,International Trade,International Trade +389398,International Trade,International Trade +389397,International Trade,International Trade +386441,International Trade,International Trade +383646,International Trade,International Trade +381134,International Trade,International Trade +381133,International Trade,International Trade +381128,International Trade,International Trade +381121,International Trade,International Trade +381120,International Trade,International Trade +381118,International Trade,International Trade +381116,International Trade,International Trade +381115,International Trade,International Trade +381113,International Trade,International Trade +381110,International Trade,International Trade +381107,International Trade,International Trade +381105,International Trade,International Trade +381103,International Trade,International Trade +381100,International Trade,International Trade +381096,International Trade,International Trade +381087,International Trade,International Trade +381084,International Trade,International Trade +381083,International Trade,International Trade +381082,International Trade,International Trade +381081,International Trade,International Trade +381077,International Trade,International Trade +381076,International Trade,International Trade +381073,International Trade,International Trade +381067,International Trade,International Trade +381039,International Trade,International Trade +379101,International Trade,International Trade +373690,International Trade,International Trade +373689,International Trade,International Trade +370715,International Trade,International Trade +368372,International Trade,International Trade +368369,International Trade,International Trade +368366,International Trade,International Trade +368363,International Trade,International Trade +368360,International Trade,International Trade +368358,International Trade,International Trade +365886,International Trade,International Trade +365885,International Trade,International Trade +365884,International Trade,International Trade +365883,International Trade,International Trade +351782,International Trade,International Trade +349639,International Trade,International Trade +348945,International Trade,International Trade +347521,International Trade,International Trade +347246,International Trade,International Trade +347039,International Trade,International Trade +344458,International Trade,International Trade +343100,International Trade,International Trade +343040,International Trade,International Trade +342577,International Trade,International Trade +342463,International Trade,International Trade +340154,International Trade,International Trade +339855,International Trade,International Trade +339628,International Trade,International Trade +337516,International Trade,International Trade +337510,International Trade,International Trade +337509,International Trade,International Trade +337504,International Trade,International Trade +337502,International Trade,International Trade +337501,International Trade,International Trade +337494,International Trade,International Trade +337493,International Trade,International Trade +337492,International Trade,International Trade +337491,International Trade,International Trade +337490,International Trade,International Trade +335015,International Trade,International Trade +335014,International Trade,International Trade +334718,International Trade,International Trade +332869,International Trade,International Trade +332049,International Trade,International Trade +331869,International Trade,International Trade +330566,International Trade,International Trade +330508,International Trade,International Trade +328490,International Trade,International Trade +328489,International Trade,International Trade +326190,International Trade,International Trade +326189,International Trade,International Trade +325198,International Trade,International Trade +322890,International Trade,International Trade +322569,International Trade,International Trade +315622,International Trade,International Trade +314790,International Trade,International Trade +314309,International Trade,International Trade +313929,International Trade,International Trade +541165,International Trade,International Trade +541164,International Trade,International Trade +541162,International Trade,International Trade +539517,International Trade,International Trade +539516,International Trade,International Trade +539514,International Trade,International Trade +536893,International Trade,International Trade +536889,International Trade,International Trade +536888,International Trade,International Trade +536887,International Trade,International Trade +536886,International Trade,International Trade +536885,International Trade,International Trade +536884,International Trade,International Trade +533397,International Trade,International Trade +533395,International Trade,International Trade +533394,International Trade,International Trade +533393,International Trade,International Trade +533390,International Trade,International Trade +533388,International Trade,International Trade +530754,International Trade,International Trade +528487,International Trade,International Trade +528478,International Trade,International Trade +528469,International Trade,International Trade +528461,International Trade,International Trade +524383,International Trade,International Trade +524382,International Trade,International Trade +524381,International Trade,International Trade +524380,International Trade,International Trade +524379,International Trade,International Trade +521107,International Trade,International Trade +521106,International Trade,International Trade +519037,International Trade,International Trade +519036,International Trade,International Trade +519034,International Trade,International Trade +519033,International Trade,International Trade +519031,International Trade,International Trade +516984,International Trade,International Trade +516982,International Trade,International Trade +516981,International Trade,International Trade +516977,International Trade,International Trade +515223,International Trade,International Trade +511961,International Trade,International Trade +511880,International Trade,International Trade +509915,International Trade,International Trade +509914,International Trade,International Trade +509913,International Trade,International Trade +509912,International Trade,International Trade +503770,International Trade,International Trade +503769,International Trade,International Trade +503762,International Trade,International Trade +503759,International Trade,International Trade +503303,International Trade,International Trade +501383,International Trade,International Trade +501380,International Trade,International Trade +498208,International Trade,International Trade +498206,International Trade,International Trade +494490,International Trade,International Trade +494489,International Trade,International Trade +494259,International Trade,International Trade +490253,International Trade,International Trade +490250,International Trade,International Trade +490247,International Trade,International Trade +490235,International Trade,International Trade +487127,International Trade,International Trade +487120,International Trade,International Trade +483475,International Trade,International Trade +483474,International Trade,International Trade +483473,International Trade,International Trade +483470,International Trade,International Trade +481090,International Trade,International Trade +481089,International Trade,International Trade +481088,International Trade,International Trade +481087,International Trade,International Trade +480530,International Trade,International Trade +479323,International Trade,International Trade +479321,International Trade,International Trade +479317,International Trade,International Trade +479316,International Trade,International Trade +476509,International Trade,International Trade +476508,International Trade,International Trade +476493,International Trade,International Trade +476492,International Trade,International Trade +476491,International Trade,International Trade +476490,International Trade,International Trade +476489,International Trade,International Trade +476488,International Trade,International Trade +476487,International Trade,International Trade +476125,International Trade,International Trade +475532,International Trade,International Trade +475504,International Trade,International Trade +475498,International Trade,International Trade +475484,International Trade,International Trade +475433,International Trade,International Trade +475426,International Trade,International Trade +469762,International Trade,International Trade +469760,International Trade,International Trade +466056,International Trade,International Trade +466055,International Trade,International Trade +466054,International Trade,International Trade +465891,International Trade,International Trade +465889,International Trade,International Trade +465884,International Trade,International Trade +465883,International Trade,International Trade +465881,International Trade,International Trade +465880,International Trade,International Trade +463451,International Trade,International Trade +463449,International Trade,International Trade +463448,International Trade,International Trade +463447,International Trade,International Trade +461070,International Trade,International Trade +461069,International Trade,International Trade +459920,International Trade,International Trade +459254,International Trade,International Trade +457935,International Trade,International Trade +457934,International Trade,International Trade +456989,International Trade,International Trade +456987,International Trade,International Trade +456986,International Trade,International Trade +456985,International Trade,International Trade +456984,International Trade,International Trade +456982,International Trade,International Trade +456980,International Trade,International Trade +456979,International Trade,International Trade +456970,International Trade,International Trade +456312,International Trade,International Trade +455313,International Trade,International Trade +455309,International Trade,International Trade +455303,International Trade,International Trade +455288,International Trade,International Trade +455261,International Trade,International Trade +455259,International Trade,International Trade +455258,International Trade,International Trade +454637,International Trade,International Trade +453664,International Trade,International Trade +451792,International Trade,International Trade +451774,International Trade,International Trade +451458,International Trade,International Trade +451452,International Trade,International Trade +451450,International Trade,International Trade +451415,International Trade,International Trade +451413,International Trade,International Trade +451412,International Trade,International Trade +451411,International Trade,International Trade +451397,International Trade,International Trade +451395,International Trade,International Trade +451394,International Trade,International Trade +451393,International Trade,International Trade +451392,International Trade,International Trade +451388,International Trade,International Trade +450964,International Trade,International Trade +450963,International Trade,International Trade +450962,International Trade,International Trade +450961,International Trade,International Trade +450959,International Trade,International Trade +449261,International Trade,International Trade +449260,International Trade,International Trade +449259,International Trade,International Trade +449258,International Trade,International Trade +447066,International Trade,International Trade +447061,International Trade,International Trade +447060,International Trade,International Trade +447058,International Trade,International Trade +447055,International Trade,International Trade +446801,International Trade,International Trade +446799,International Trade,International Trade +446795,International Trade,International Trade +446789,International Trade,International Trade +445165,International Trade,International Trade +445099,International Trade,International Trade +285849,Labour,Labour +252949,Labour,Labour +102378,Labour,Labour +102375,Labour,Labour +209489,Labour,Labour +195314,Labour,Labour +195310,Labour,Labour +195307,Labour,Labour +331975,Mining,Mining +309702,Mining,Mining +160636,Mining,Mining +149647,Mining,Mining +309700,Mining,Mining +306549,Mining,Mining +303010,Mining,Mining +293310,Mining,Mining +275934,Mining,Mining +247670,Mining,Mining +215327,Mining,Mining +197309,Mining,Mining +195330,Mining,Mining +195327,Mining,Mining +195309,Mining,Mining +192509,Mining,Mining +187956,Mining,Mining +187945,Mining,Mining +445099,Regional Development,Regional Development +445098,Regional Development,Regional Development +149647,Regional Development,Regional Development +303051,Regional Development,Regional Development +303009,Regional Development,Regional Development +302998,Regional Development,Regional Development +298150,Regional Development,Regional Development +288269,Regional Development,Regional Development +476487,Regional Development,Regional Development +475498,Regional Development,Regional Development +466056,Regional Development,Regional Development +466055,Regional Development,Regional Development +466054,Regional Development,Regional Development +465891,Regional Development,Regional Development +465889,Regional Development,Regional Development +465884,Regional Development,Regional Development +465883,Regional Development,Regional Development +465882,Regional Development,Regional Development +465881,Regional Development,Regional Development +465880,Regional Development,Regional Development +465867,Regional Development,Regional Development +463451,Regional Development,Regional Development +451388,Regional Development,Regional Development +331869,Taxation and Finance,Taxation and Finance +330566,Taxation and Finance,Taxation and Finance +87035,Taxation and Finance,Taxation and Finance +87034,Taxation and Finance,Taxation and Finance +84577,Taxation and Finance,Taxation and Finance +158197,Taxation and Finance,Taxation and Finance +158196,Taxation and Finance,Taxation and Finance +158195,Taxation and Finance,Taxation and Finance +158194,Taxation and Finance,Taxation and Finance +155766,Taxation and Finance,Taxation and Finance +155428,Taxation and Finance,Taxation and Finance +154466,Taxation and Finance,Taxation and Finance +151098,Taxation and Finance,Taxation and Finance +149644,Taxation and Finance,Taxation and Finance +149641,Taxation and Finance,Taxation and Finance +149640,Taxation and Finance,Taxation and Finance +149639,Taxation and Finance,Taxation and Finance +149638,Taxation and Finance,Taxation and Finance +147218,Taxation and Finance,Taxation and Finance +144199,Taxation and Finance,Taxation and Finance +144197,Taxation and Finance,Taxation and Finance +220814,Taxation and Finance,Taxation and Finance +220812,Taxation and Finance,Taxation and Finance +220807,Taxation and Finance,Taxation and Finance +215347,Taxation and Finance,Taxation and Finance +215307,Taxation and Finance,Taxation and Finance +215167,Taxation and Finance,Taxation and Finance +215107,Taxation and Finance,Taxation and Finance +195397,Taxation and Finance,Taxation and Finance +195387,Taxation and Finance,Taxation and Finance +195336,Taxation and Finance,Taxation and Finance +195334,Taxation and Finance,Taxation and Finance +195330,Taxation and Finance,Taxation and Finance +195329,Taxation and Finance,Taxation and Finance +195328,Taxation and Finance,Taxation and Finance +195327,Taxation and Finance,Taxation and Finance +195325,Taxation and Finance,Taxation and Finance +195324,Taxation and Finance,Taxation and Finance +195314,Taxation and Finance,Taxation and Finance +195311,Taxation and Finance,Taxation and Finance +195308,Taxation and Finance,Taxation and Finance +195307,Taxation and Finance,Taxation and Finance +192512,Taxation and Finance,Taxation and Finance +192511,Taxation and Finance,Taxation and Finance +192507,Taxation and Finance,Taxation and Finance +192506,Taxation and Finance,Taxation and Finance +192505,Taxation and Finance,Taxation and Finance +188127,Taxation and Finance,Taxation and Finance +187957,Taxation and Finance,Taxation and Finance +187954,Taxation and Finance,Taxation and Finance +187953,Taxation and Finance,Taxation and Finance +187952,Taxation and Finance,Taxation and Finance +187951,Taxation and Finance,Taxation and Finance +187950,Taxation and Finance,Taxation and Finance +187949,Taxation and Finance,Taxation and Finance +187948,Taxation and Finance,Taxation and Finance +187947,Taxation and Finance,Taxation and Finance +183044,Taxation and Finance,Taxation and Finance +181824,Taxation and Finance,Taxation and Finance +174225,Taxation and Finance,Taxation and Finance +172784,Taxation and Finance,Taxation and Finance +169874,Taxation and Finance,Taxation and Finance +167288,Taxation and Finance,Taxation and Finance +167287,Taxation and Finance,Taxation and Finance +160637,Taxation and Finance,Taxation and Finance +160636,Taxation and Finance,Taxation and Finance +160578,Taxation and Finance,Taxation and Finance +160577,Taxation and Finance,Taxation and Finance +309713,Taxation and Finance,Taxation and Finance +309712,Taxation and Finance,Taxation and Finance +309703,Taxation and Finance,Taxation and Finance +309699,Taxation and Finance,Taxation and Finance +309698,Taxation and Finance,Taxation and Finance +306550,Taxation and Finance,Taxation and Finance +305650,Taxation and Finance,Taxation and Finance +305649,Taxation and Finance,Taxation and Finance +303049,Taxation and Finance,Taxation and Finance +303004,Taxation and Finance,Taxation and Finance +302995,Taxation and Finance,Taxation and Finance +302994,Taxation and Finance,Taxation and Finance +302991,Taxation and Finance,Taxation and Finance +298150,Taxation and Finance,Taxation and Finance +294391,Taxation and Finance,Taxation and Finance +293310,Taxation and Finance,Taxation and Finance +288112,Taxation and Finance,Taxation and Finance +276121,Taxation and Finance,Taxation and Finance +276120,Taxation and Finance,Taxation and Finance +271552,Taxation and Finance,Taxation and Finance +271551,Taxation and Finance,Taxation and Finance +271550,Taxation and Finance,Taxation and Finance +266190,Taxation and Finance,Taxation and Finance +257129,Taxation and Finance,Taxation and Finance +247659,Taxation and Finance,Taxation and Finance +247657,Taxation and Finance,Taxation and Finance +247655,Taxation and Finance,Taxation and Finance +247654,Taxation and Finance,Taxation and Finance +247653,Taxation and Finance,Taxation and Finance +242550,Taxation and Finance,Taxation and Finance +242029,Taxation and Finance,Taxation and Finance +241960,Taxation and Finance,Taxation and Finance +241959,Taxation and Finance,Taxation and Finance +241958,Taxation and Finance,Taxation and Finance +241957,Taxation and Finance,Taxation and Finance +241956,Taxation and Finance,Taxation and Finance +241951,Taxation and Finance,Taxation and Finance +241950,Taxation and Finance,Taxation and Finance +241949,Taxation and Finance,Taxation and Finance +240298,Taxation and Finance,Taxation and Finance +239549,Taxation and Finance,Taxation and Finance +235253,Taxation and Finance,Taxation and Finance +235249,Taxation and Finance,Taxation and Finance +229134,Taxation and Finance,Taxation and Finance +393628,Taxation and Finance,Taxation and Finance +392659,Taxation and Finance,Taxation and Finance +389421,Taxation and Finance,Taxation and Finance +389420,Taxation and Finance,Taxation and Finance +389419,Taxation and Finance,Taxation and Finance +389417,Taxation and Finance,Taxation and Finance +389416,Taxation and Finance,Taxation and Finance +389413,Taxation and Finance,Taxation and Finance +389401,Taxation and Finance,Taxation and Finance +389398,Taxation and Finance,Taxation and Finance +389397,Taxation and Finance,Taxation and Finance +386441,Taxation and Finance,Taxation and Finance +383646,Taxation and Finance,Taxation and Finance +381134,Taxation and Finance,Taxation and Finance +381133,Taxation and Finance,Taxation and Finance +381128,Taxation and Finance,Taxation and Finance +381121,Taxation and Finance,Taxation and Finance +381120,Taxation and Finance,Taxation and Finance +381118,Taxation and Finance,Taxation and Finance +381116,Taxation and Finance,Taxation and Finance +381115,Taxation and Finance,Taxation and Finance +381113,Taxation and Finance,Taxation and Finance +381110,Taxation and Finance,Taxation and Finance +381107,Taxation and Finance,Taxation and Finance +381105,Taxation and Finance,Taxation and Finance +381103,Taxation and Finance,Taxation and Finance +381100,Taxation and Finance,Taxation and Finance +381096,Taxation and Finance,Taxation and Finance +381087,Taxation and Finance,Taxation and Finance +381084,Taxation and Finance,Taxation and Finance +381083,Taxation and Finance,Taxation and Finance +381082,Taxation and Finance,Taxation and Finance +381081,Taxation and Finance,Taxation and Finance +381077,Taxation and Finance,Taxation and Finance +381076,Taxation and Finance,Taxation and Finance +381073,Taxation and Finance,Taxation and Finance +381072,Taxation and Finance,Taxation and Finance +381070,Taxation and Finance,Taxation and Finance +381067,Taxation and Finance,Taxation and Finance +381039,Taxation and Finance,Taxation and Finance +368366,Taxation and Finance,Taxation and Finance +365885,Taxation and Finance,Taxation and Finance +351782,Taxation and Finance,Taxation and Finance +337516,Taxation and Finance,Taxation and Finance +337510,Taxation and Finance,Taxation and Finance +337509,Taxation and Finance,Taxation and Finance +337504,Taxation and Finance,Taxation and Finance +337502,Taxation and Finance,Taxation and Finance +337501,Taxation and Finance,Taxation and Finance +337494,Taxation and Finance,Taxation and Finance +337492,Taxation and Finance,Taxation and Finance +335015,Taxation and Finance,Taxation and Finance +229131,Transportation,Transportation +328489,Transportation,Transportation +147835,Transportation,Transportation +169878,Transportation,Transportation +169875,Transportation,Transportation +167287,Transportation,Transportation +160636,Transportation,Transportation +149637,Transportation,Transportation +195334,Transportation,Transportation +195330,Transportation,Transportation +195329,Transportation,Transportation +195314,Transportation,Transportation +195309,Transportation,Transportation +192511,Transportation,Transportation +187954,Transportation,Transportation +187953,Transportation,Transportation +187948,Transportation,Transportation +176165,Transportation,Transportation +174224,Transportation,Transportation +305650,Transportation,Transportation +303070,Transportation,Transportation +303054,Transportation,Transportation +303006,Transportation,Transportation +303000,Transportation,Transportation +302993,Transportation,Transportation +302989,Transportation,Transportation +293310,Transportation,Transportation +271550,Transportation,Transportation +75616,Infrastructure,Infrastructure +287150,Infrastructure,Infrastructure +75616,Regional Development,Regional Development +75616,Transportation,Transportation +287150,Transportation,Transportation +75674,Transportation,Transportation +157668,Energy,Energy +225831,Energy,Energy +157668,Environment,Environment +157669,International Relations,International Relations +157668,International Relations,International Relations +95234,International Relations,International Relations +95214,International Relations,International Relations +120039,International Relations,International Relations +120038,International Relations,International Relations +250678,Government Procurement,Government Procurement +250672,Government Procurement,Government Procurement +230753,Government Procurement,Government Procurement +207573,Government Procurement,Government Procurement +203248,Government Procurement,Government Procurement +175797,Government Procurement,Government Procurement +175796,Government Procurement,Government Procurement +169118,Government Procurement,Government Procurement +169117,Government Procurement,Government Procurement +169116,Government Procurement,Government Procurement +425540,Health,Health +425539,Health,Health +88654,Health,Health +425551,Health,Health +425540,Sports,Sports +425539,Sports,Sports +88654,Sports,Sports +88178,Sports,Sports +88063,Sports,Sports +425554,Sports,Sports +425551,Sports,Sports +425550,Sports,Sports +111834,Industry,Industry +110635,Industry,Industry +111834,Labour,Labour +110635,Labour,Labour +113781,Government Procurement,Government Procurement +113780,Government Procurement,Government Procurement +113755,Industry,Industry +113754,Industry,Industry +113782,Industry,Industry +113781,Industry,Industry +163526,Taxation and Finance,Taxation and Finance +413879,Taxation and Finance,Taxation and Finance +77394,Taxation and Finance,Taxation and Finance +77385,Taxation and Finance,Taxation and Finance +77154,Taxation and Finance,Taxation and Finance +76734,Taxation and Finance,Taxation and Finance +76714,Taxation and Finance,Taxation and Finance +76698,Taxation and Finance,Taxation and Finance +76697,Taxation and Finance,Taxation and Finance +76696,Taxation and Finance,Taxation and Finance +76654,Taxation and Finance,Taxation and Finance +97767,Taxation and Finance,Taxation and Finance +97766,Taxation and Finance,Taxation and Finance +93945,Taxation and Finance,Taxation and Finance +93944,Taxation and Finance,Taxation and Finance +93943,Taxation and Finance,Taxation and Finance +87615,Taxation and Finance,Taxation and Finance +87614,Taxation and Finance,Taxation and Finance +82875,Taxation and Finance,Taxation and Finance +82874,Taxation and Finance,Taxation and Finance +80677,Taxation and Finance,Taxation and Finance +80676,Taxation and Finance,Taxation and Finance +80675,Taxation and Finance,Taxation and Finance +80674,Taxation and Finance,Taxation and Finance +156577,Taxation and Finance,Taxation and Finance +156574,Taxation and Finance,Taxation and Finance +153248,Taxation and Finance,Taxation and Finance +152313,Taxation and Finance,Taxation and Finance +152312,Taxation and Finance,Taxation and Finance +147135,Taxation and Finance,Taxation and Finance +147134,Taxation and Finance,Taxation and Finance +137734,Taxation and Finance,Taxation and Finance +124114,Taxation and Finance,Taxation and Finance +121036,Taxation and Finance,Taxation and Finance +249736,Taxation and Finance,Taxation and Finance +227185,Taxation and Finance,Taxation and Finance +218407,Taxation and Finance,Taxation and Finance +212566,Taxation and Finance,Taxation and Finance +203347,Taxation and Finance,Taxation and Finance +201491,Taxation and Finance,Taxation and Finance +201490,Taxation and Finance,Taxation and Finance +170889,Taxation and Finance,Taxation and Finance +170881,Taxation and Finance,Taxation and Finance +170878,Taxation and Finance,Taxation and Finance +170876,Taxation and Finance,Taxation and Finance +170875,Taxation and Finance,Taxation and Finance +167980,Taxation and Finance,Taxation and Finance +167977,Taxation and Finance,Taxation and Finance +167971,Taxation and Finance,Taxation and Finance +335546,Health,Health +333310,Health,Health +170746,Health,Health +163932,Health,Health +162151,Health,Health +162149,Health,Health +156982,Health,Health +156981,Health,Health +154487,Health,Health +154486,Health,Health +153909,Health,Health +153908,Health,Health +153907,Health,Health +153906,Health,Health +153905,Health,Health +153904,Health,Health +153903,Health,Health +153902,Health,Health +153901,Health,Health +153900,Health,Health +153898,Health,Health +153896,Health,Health +321994,Health,Health +321991,Health,Health +321985,Health,Health +319121,Health,Health +311000,Health,Health +305051,Health,Health +305050,Health,Health +273231,Health,Health +273229,Health,Health +259491,Health,Health +251431,Health,Health +251429,Health,Health +245732,Health,Health +190406,Health,Health +185859,Health,Health +175457,Health,Health +173480,Health,Health +173479,Health,Health +173478,Health,Health +173476,Health,Health +173475,Health,Health +173474,Health,Health +173473,Health,Health +170748,Health,Health +170747,Health,Health +392515,Health,Health +391235,Health,Health +391232,Health,Health +386580,Health,Health +373806,Health,Health +353803,Health,Health +347597,Health,Health +343759,Health,Health +341173,Health,Health +341172,Health,Health +341171,Health,Health +153901,International Trade,International Trade +153900,International Trade,International Trade +335574,International Trade,International Trade +154487,International Trade,International Trade +153909,International Trade,International Trade +153908,International Trade,International Trade +153907,International Trade,International Trade +153906,International Trade,International Trade +153905,International Trade,International Trade +153904,International Trade,International Trade +153903,International Trade,International Trade +379133,Regional Development,Regional Development +373806,Regional Development,Regional Development +153907,Regional Development,Regional Development +153906,Regional Development,Regional Development +153905,Regional Development,Regional Development +153904,Regional Development,Regional Development +153903,Regional Development,Regional Development +153902,Regional Development,Regional Development +153901,Regional Development,Regional Development +153900,Regional Development,Regional Development +153898,Regional Development,Regional Development +154487,Regional Development,Regional Development +154486,Regional Development,Regional Development +153909,Regional Development,Regional Development +153908,Regional Development,Regional Development +135434,Other,Child Rights +131735,Other,Child Rights +542963,Health,Health +541843,Health,Health +152677,Health,Health +144175,Health,Health +115934,Health,Health +192959,Health,Health +192958,Health,Health +192957,Health,Health +192955,Health,Health +192954,Health,Health +192952,Health,Health +192951,Health,Health +192948,Health,Health +192947,Health,Health +187791,Health,Health +170085,Health,Health +170084,Health,Health +168445,Health,Health +168394,Health,Health +166208,Health,Health +164645,Health,Health +161705,Health,Health +161704,Health,Health +160395,Health,Health +159155,Health,Health +159148,Health,Health +159147,Health,Health +159146,Health,Health +159143,Health,Health +159138,Health,Health +159137,Health,Health +159136,Health,Health +159133,Health,Health +320572,Health,Health +320571,Health,Health +320570,Health,Health +300903,Health,Health +300902,Health,Health +300901,Health,Health +300900,Health,Health +300899,Health,Health +300897,Health,Health +300896,Health,Health +300895,Health,Health +300894,Health,Health +300892,Health,Health +300891,Health,Health +283909,Health,Health +246190,Health,Health +246189,Health,Health +246160,Health,Health +246159,Health,Health +246158,Health,Health +246157,Health,Health +246156,Health,Health +246155,Health,Health +245795,Health,Health +245794,Health,Health +245793,Health,Health +245791,Health,Health +245789,Health,Health +245787,Health,Health +245786,Health,Health +245785,Health,Health +245784,Health,Health +245783,Health,Health +245782,Health,Health +245781,Health,Health +245780,Health,Health +245779,Health,Health +245777,Health,Health +245775,Health,Health +245773,Health,Health +245772,Health,Health +245771,Health,Health +245770,Health,Health +225670,Health,Health +211460,Health,Health +210493,Health,Health +210492,Health,Health +203327,Health,Health +196427,Health,Health +192965,Health,Health +192964,Health,Health +192963,Health,Health +192961,Health,Health +192960,Health,Health +372895,Health,Health +372894,Health,Health +372893,Health,Health +372891,Health,Health +372890,Health,Health +372888,Health,Health +372887,Health,Health +372885,Health,Health +372880,Health,Health +372878,Health,Health +372872,Health,Health +372871,Health,Health +372870,Health,Health +372869,Health,Health +372868,Health,Health +372867,Health,Health +372865,Health,Health +372864,Health,Health +372863,Health,Health +372862,Health,Health +372861,Health,Health +372860,Health,Health +372859,Health,Health +372857,Health,Health +372856,Health,Health +372855,Health,Health +372853,Health,Health +372850,Health,Health +372848,Health,Health +372846,Health,Health +348191,Health,Health +348190,Health,Health +348189,Health,Health +348188,Health,Health +348187,Health,Health +348186,Health,Health +348185,Health,Health +348184,Health,Health +348183,Health,Health +348182,Health,Health +348181,Health,Health +348180,Health,Health +348179,Health,Health +348177,Health,Health +348176,Health,Health +348175,Health,Health +348174,Health,Health +348173,Health,Health +348172,Health,Health +348170,Health,Health +348169,Health,Health +348168,Health,Health +348167,Health,Health +348165,Health,Health +348164,Health,Health +348163,Health,Health +348162,Health,Health +348160,Health,Health +348159,Health,Health +348158,Health,Health +348157,Health,Health +348156,Health,Health +337646,Health,Health +337645,Health,Health +337644,Health,Health +337643,Health,Health +337642,Health,Health +337640,Health,Health +337639,Health,Health +337638,Health,Health +337636,Health,Health +337635,Health,Health +337634,Health,Health +337633,Health,Health +337632,Health,Health +320616,Health,Health +320615,Health,Health +320614,Health,Health +320613,Health,Health +320612,Health,Health +320611,Health,Health +320610,Health,Health +320609,Health,Health +320608,Health,Health +320607,Health,Health +320606,Health,Health +320605,Health,Health +320604,Health,Health +320603,Health,Health +320602,Health,Health +320601,Health,Health +320600,Health,Health +320599,Health,Health +320598,Health,Health +320597,Health,Health +320596,Health,Health +320595,Health,Health +320576,Health,Health +320575,Health,Health +320574,Health,Health +320573,Health,Health +541698,Health,Health +540363,Health,Health +540362,Health,Health +534518,Health,Health +532539,Health,Health +530724,Health,Health +530721,Health,Health +530474,Health,Health +526848,Health,Health +525142,Health,Health +524199,Health,Health +524169,Health,Health +524163,Health,Health +524159,Health,Health +520952,Health,Health +520951,Health,Health +520948,Health,Health +516071,Health,Health +512370,Health,Health +509120,Health,Health +493108,Health,Health +493105,Health,Health +493096,Health,Health +493023,Health,Health +462198,Health,Health +444527,Health,Health +409088,Health,Health +409087,Health,Health +409085,Health,Health +399294,Health,Health +399293,Health,Health +399291,Health,Health +399289,Health,Health +399288,Health,Health +398154,Health,Health +398153,Health,Health +398152,Health,Health +398151,Health,Health +398150,Health,Health +398149,Health,Health +398148,Health,Health +398147,Health,Health +398146,Health,Health +398145,Health,Health +398144,Health,Health +398143,Health,Health +398142,Health,Health +398141,Health,Health +398140,Health,Health +398139,Health,Health +398138,Health,Health +398137,Health,Health +398136,Health,Health +398135,Health,Health +398134,Health,Health +398133,Health,Health +398132,Health,Health +398131,Health,Health +398130,Health,Health +398129,Health,Health +384451,Health,Health +375122,Health,Health +375121,Health,Health +375120,Health,Health +372899,Health,Health +497808,Intellectual Property,Intellectual Property +493839,Intellectual Property,Intellectual Property +147034,Intellectual Property,Intellectual Property +127494,Intellectual Property,Intellectual Property +103274,Intellectual Property,Intellectual Property +84514,Intellectual Property,Intellectual Property +186825,Intellectual Property,Intellectual Property +186805,Intellectual Property,Intellectual Property +186764,Intellectual Property,Intellectual Property +158736,Intellectual Property,Intellectual Property +268613,Intellectual Property,Intellectual Property +268612,Intellectual Property,Intellectual Property +268611,Intellectual Property,Intellectual Property +268610,Intellectual Property,Intellectual Property +268603,Intellectual Property,Intellectual Property +255489,Intellectual Property,Intellectual Property +255469,Intellectual Property,Intellectual Property +241529,Intellectual Property,Intellectual Property +238229,Intellectual Property,Intellectual Property +218247,Intellectual Property,Intellectual Property +206327,Intellectual Property,Intellectual Property +197071,Intellectual Property,Intellectual Property +362702,Intellectual Property,Intellectual Property +362622,Intellectual Property,Intellectual Property +361764,Intellectual Property,Intellectual Property +359592,Intellectual Property,Intellectual Property +355943,Intellectual Property,Intellectual Property +355940,Intellectual Property,Intellectual Property +355044,Intellectual Property,Intellectual Property +355042,Intellectual Property,Intellectual Property +352964,Intellectual Property,Intellectual Property +352963,Intellectual Property,Intellectual Property +352961,Intellectual Property,Intellectual Property +352960,Intellectual Property,Intellectual Property +350245,Intellectual Property,Intellectual Property +347720,Intellectual Property,Intellectual Property +342318,Intellectual Property,Intellectual Property +337557,Intellectual Property,Intellectual Property +337554,Intellectual Property,Intellectual Property +332677,Intellectual Property,Intellectual Property +332676,Intellectual Property,Intellectual Property +327875,Intellectual Property,Intellectual Property +327874,Intellectual Property,Intellectual Property +327873,Intellectual Property,Intellectual Property +327872,Intellectual Property,Intellectual Property +327871,Intellectual Property,Intellectual Property +327870,Intellectual Property,Intellectual Property +327869,Intellectual Property,Intellectual Property +322894,Intellectual Property,Intellectual Property +318391,Intellectual Property,Intellectual Property +318390,Intellectual Property,Intellectual Property +318389,Intellectual Property,Intellectual Property +314891,Intellectual Property,Intellectual Property +313011,Intellectual Property,Intellectual Property +313010,Intellectual Property,Intellectual Property +313009,Intellectual Property,Intellectual Property +312877,Intellectual Property,Intellectual Property +312876,Intellectual Property,Intellectual Property +312874,Intellectual Property,Intellectual Property +312868,Intellectual Property,Intellectual Property +310641,Intellectual Property,Intellectual Property +310640,Intellectual Property,Intellectual Property +310639,Intellectual Property,Intellectual Property +310637,Intellectual Property,Intellectual Property +310635,Intellectual Property,Intellectual Property +303794,Intellectual Property,Intellectual Property +303791,Intellectual Property,Intellectual Property +284169,Intellectual Property,Intellectual Property +280069,Intellectual Property,Intellectual Property +277609,Intellectual Property,Intellectual Property +273058,Intellectual Property,Intellectual Property +273057,Intellectual Property,Intellectual Property +273056,Intellectual Property,Intellectual Property +273055,Intellectual Property,Intellectual Property +273054,Intellectual Property,Intellectual Property +273053,Intellectual Property,Intellectual Property +489029,Intellectual Property,Intellectual Property +489028,Intellectual Property,Intellectual Property +489027,Intellectual Property,Intellectual Property +488321,Intellectual Property,Intellectual Property +486645,Intellectual Property,Intellectual Property +480527,Intellectual Property,Intellectual Property +480526,Intellectual Property,Intellectual Property +474572,Intellectual Property,Intellectual Property +474544,Intellectual Property,Intellectual Property +474543,Intellectual Property,Intellectual Property +474542,Intellectual Property,Intellectual Property +474541,Intellectual Property,Intellectual Property +465478,Intellectual Property,Intellectual Property +465263,Intellectual Property,Intellectual Property +465189,Intellectual Property,Intellectual Property +463156,Intellectual Property,Intellectual Property +461107,Intellectual Property,Intellectual Property +458960,Intellectual Property,Intellectual Property +456546,Intellectual Property,Intellectual Property +456424,Intellectual Property,Intellectual Property +451439,Intellectual Property,Intellectual Property +446326,Intellectual Property,Intellectual Property +446325,Intellectual Property,Intellectual Property +446190,Intellectual Property,Intellectual Property +440919,Intellectual Property,Intellectual Property +440297,Intellectual Property,Intellectual Property +440168,Intellectual Property,Intellectual Property +440167,Intellectual Property,Intellectual Property +440166,Intellectual Property,Intellectual Property +437609,Intellectual Property,Intellectual Property +436264,Intellectual Property,Intellectual Property +434130,Intellectual Property,Intellectual Property +433562,Intellectual Property,Intellectual Property +430207,Intellectual Property,Intellectual Property +428650,Intellectual Property,Intellectual Property +427355,Intellectual Property,Intellectual Property +427354,Intellectual Property,Intellectual Property +425109,Intellectual Property,Intellectual Property +424913,Intellectual Property,Intellectual Property +424641,Intellectual Property,Intellectual Property +424639,Intellectual Property,Intellectual Property +424230,Intellectual Property,Intellectual Property +423152,Intellectual Property,Intellectual Property +422882,Intellectual Property,Intellectual Property +422774,Intellectual Property,Intellectual Property +422700,Intellectual Property,Intellectual Property +422653,Intellectual Property,Intellectual Property +422529,Intellectual Property,Intellectual Property +419419,Intellectual Property,Intellectual Property +418729,Intellectual Property,Intellectual Property +414707,Intellectual Property,Intellectual Property +414429,Intellectual Property,Intellectual Property +414171,Intellectual Property,Intellectual Property +414170,Intellectual Property,Intellectual Property +414088,Intellectual Property,Intellectual Property +411796,Intellectual Property,Intellectual Property +408664,Intellectual Property,Intellectual Property +408663,Intellectual Property,Intellectual Property +408440,Intellectual Property,Intellectual Property +408417,Intellectual Property,Intellectual Property +408416,Intellectual Property,Intellectual Property +408415,Intellectual Property,Intellectual Property +408257,Intellectual Property,Intellectual Property +405951,Intellectual Property,Intellectual Property +402243,Intellectual Property,Intellectual Property +401218,Intellectual Property,Intellectual Property +401155,Intellectual Property,Intellectual Property +399745,Intellectual Property,Intellectual Property +399507,Intellectual Property,Intellectual Property +399030,Intellectual Property,Intellectual Property +398477,Intellectual Property,Intellectual Property +397822,Intellectual Property,Intellectual Property +397740,Intellectual Property,Intellectual Property +397704,Intellectual Property,Intellectual Property +397599,Intellectual Property,Intellectual Property +397565,Intellectual Property,Intellectual Property +397564,Intellectual Property,Intellectual Property +397339,Intellectual Property,Intellectual Property +395172,Intellectual Property,Intellectual Property +395108,Intellectual Property,Intellectual Property +394896,Intellectual Property,Intellectual Property +394520,Intellectual Property,Intellectual Property +393815,Intellectual Property,Intellectual Property +393304,Intellectual Property,Intellectual Property +393303,Intellectual Property,Intellectual Property +393302,Intellectual Property,Intellectual Property +393301,Intellectual Property,Intellectual Property +380990,Intellectual Property,Intellectual Property +378218,Intellectual Property,Intellectual Property +545141,Intellectual Property,Intellectual Property +536403,Intellectual Property,Intellectual Property +532591,Intellectual Property,Intellectual Property +530997,Intellectual Property,Intellectual Property +530996,Intellectual Property,Intellectual Property +527038,Intellectual Property,Intellectual Property +526862,Intellectual Property,Intellectual Property +522041,Intellectual Property,Intellectual Property +520878,Intellectual Property,Intellectual Property +520877,Intellectual Property,Intellectual Property +520736,Intellectual Property,Intellectual Property +520295,Intellectual Property,Intellectual Property +520293,Intellectual Property,Intellectual Property +520292,Intellectual Property,Intellectual Property +516178,Intellectual Property,Intellectual Property +514924,Intellectual Property,Intellectual Property +506398,Intellectual Property,Intellectual Property +503612,Intellectual Property,Intellectual Property +500612,Intellectual Property,Intellectual Property +499953,Intellectual Property,Intellectual Property +353783,Employment and Training,Employment and Training +454587,Employment and Training,Employment and Training +280881,Employment and Training,Employment and Training +269394,Employment and Training,Employment and Training +454596,Energy,Energy +454595,Energy,Energy +83018,Energy,Energy +83014,Energy,Energy +145996,Energy,Energy +142969,Energy,Energy +142968,Energy,Energy +142276,Energy,Energy +194653,Energy,Energy +194651,Energy,Energy +189145,Energy,Energy +189141,Energy,Energy +189135,Energy,Energy +189133,Energy,Energy +189126,Energy,Energy +175273,Energy,Energy +173431,Energy,Energy +173430,Energy,Energy +171947,Energy,Energy +170813,Energy,Energy +170812,Energy,Energy +170807,Energy,Energy +168171,Energy,Energy +162825,Energy,Energy +162824,Energy,Energy +157173,Energy,Energy +150780,Energy,Energy +148241,Energy,Energy +282332,Energy,Energy +282290,Energy,Energy +280885,Energy,Energy +280884,Energy,Energy +280883,Energy,Energy +280882,Energy,Energy +280881,Energy,Energy +276821,Energy,Energy +276819,Energy,Energy +276817,Energy,Energy +276816,Energy,Energy +276814,Energy,Energy +276811,Energy,Energy +273476,Energy,Energy +273473,Energy,Energy +269411,Energy,Energy +269354,Energy,Energy +269352,Energy,Energy +269350,Energy,Energy +264405,Energy,Energy +264403,Energy,Energy +264399,Energy,Energy +264396,Energy,Energy +264394,Energy,Energy +264391,Energy,Energy +259050,Energy,Energy +253812,Energy,Energy +253810,Energy,Energy +249816,Energy,Energy +249812,Energy,Energy +245329,Energy,Energy +245313,Energy,Energy +245312,Energy,Energy +241090,Energy,Energy +236837,Energy,Energy +230125,Energy,Energy +230124,Energy,Energy +226287,Energy,Energy +226286,Energy,Energy +226285,Energy,Energy +226283,Energy,Energy +226282,Energy,Energy +226281,Energy,Energy +226280,Energy,Energy +226279,Energy,Energy +220868,Energy,Energy +220867,Energy,Energy +216177,Energy,Energy +216176,Energy,Energy +216175,Energy,Energy +216174,Energy,Energy +216173,Energy,Energy +216172,Energy,Energy +216171,Energy,Energy +206833,Energy,Energy +206832,Energy,Energy +201256,Energy,Energy +201255,Energy,Energy +201254,Energy,Energy +201253,Energy,Energy +201252,Energy,Energy +201251,Energy,Energy +201250,Energy,Energy +201249,Energy,Energy +201248,Energy,Energy +201247,Energy,Energy +199790,Energy,Energy +199789,Energy,Energy +199788,Energy,Energy +194655,Energy,Energy +384862,Energy,Energy +384861,Energy,Energy +383230,Energy,Energy +383226,Energy,Energy +381904,Energy,Energy +381903,Energy,Energy +381902,Energy,Energy +381901,Energy,Energy +381900,Energy,Energy +381899,Energy,Energy +381898,Energy,Energy +381897,Energy,Energy +381896,Energy,Energy +381456,Energy,Energy +381455,Energy,Energy +381454,Energy,Energy +381453,Energy,Energy +381452,Energy,Energy +381451,Energy,Energy +381449,Energy,Energy +379238,Energy,Energy +379237,Energy,Energy +379236,Energy,Energy +379235,Energy,Energy +379233,Energy,Energy +379232,Energy,Energy +379231,Energy,Energy +379230,Energy,Energy +379228,Energy,Energy +379226,Energy,Energy +376309,Energy,Energy +376308,Energy,Energy +376307,Energy,Energy +374336,Energy,Energy +374335,Energy,Energy +374334,Energy,Energy +374330,Energy,Energy +374327,Energy,Energy +374325,Energy,Energy +374324,Energy,Energy +374323,Energy,Energy +372115,Energy,Energy +372113,Energy,Energy +372111,Energy,Energy +372109,Energy,Energy +372107,Energy,Energy +372104,Energy,Energy +372098,Energy,Energy +372092,Energy,Energy +372088,Energy,Energy +372083,Energy,Energy +372081,Energy,Energy +372073,Energy,Energy +372069,Energy,Energy +372063,Energy,Energy +372037,Energy,Energy +372034,Energy,Energy +372031,Energy,Energy +372029,Energy,Energy +372025,Energy,Energy +372022,Energy,Energy +368883,Energy,Energy +368829,Energy,Energy +366412,Energy,Energy +366411,Energy,Energy +366409,Energy,Energy +366407,Energy,Energy +359546,Energy,Energy +357809,Energy,Energy +357366,Energy,Energy +357365,Energy,Energy +357364,Energy,Energy +357362,Energy,Energy +355488,Energy,Energy +355487,Energy,Energy +353788,Energy,Energy +353786,Energy,Energy +353785,Energy,Energy +353784,Energy,Energy +353783,Energy,Energy +350803,Energy,Energy +350801,Energy,Energy +350800,Energy,Energy +348551,Energy,Energy +348550,Energy,Energy +348549,Energy,Energy +348548,Energy,Energy +344830,Energy,Energy +344829,Energy,Energy +343575,Energy,Energy +343574,Energy,Energy +343573,Energy,Energy +343571,Energy,Energy +338630,Energy,Energy +337070,Energy,Energy +337069,Energy,Energy +334852,Energy,Energy +334851,Energy,Energy +333566,Energy,Energy +333562,Energy,Energy +329595,Energy,Energy +327020,Energy,Energy +327019,Energy,Energy +327018,Energy,Energy +327017,Energy,Energy +327016,Energy,Energy +327014,Energy,Energy +327013,Energy,Energy +327012,Energy,Energy +327011,Energy,Energy +325199,Energy,Energy +324539,Energy,Energy +324537,Energy,Energy +324536,Energy,Energy +324534,Energy,Energy +324533,Energy,Energy +324532,Energy,Energy +324531,Energy,Energy +324530,Energy,Energy +324529,Energy,Energy +324528,Energy,Energy +324527,Energy,Energy +322004,Energy,Energy +322002,Energy,Energy +322000,Energy,Energy +321996,Energy,Energy +321993,Energy,Energy +321990,Energy,Energy +321986,Energy,Energy +321983,Energy,Energy +321982,Energy,Energy +321980,Energy,Energy +319099,Energy,Energy +318942,Energy,Energy +312846,Energy,Energy +312845,Energy,Energy +312843,Energy,Energy +310382,Energy,Energy +310378,Energy,Energy +310377,Energy,Energy +296733,Energy,Energy +290891,Energy,Energy +290890,Energy,Energy +454594,Energy,Energy +454590,Energy,Energy +454587,Energy,Energy +454574,Energy,Energy +454572,Energy,Energy +454569,Energy,Energy +454568,Energy,Energy +454563,Energy,Energy +454562,Energy,Energy +454561,Energy,Energy +454560,Energy,Energy +454559,Energy,Energy +451690,Energy,Energy +451689,Energy,Energy +449274,Energy,Energy +449273,Energy,Energy +449272,Energy,Energy +447312,Energy,Energy +447272,Energy,Energy +447268,Energy,Energy +447266,Energy,Energy +444946,Energy,Energy +444922,Energy,Energy +444920,Energy,Energy +444918,Energy,Energy +443318,Energy,Energy +443316,Energy,Energy +443315,Energy,Energy +443314,Energy,Energy +443313,Energy,Energy +443312,Energy,Energy +443310,Energy,Energy +443308,Energy,Energy +443306,Energy,Energy +443305,Energy,Energy +443304,Energy,Energy +442159,Energy,Energy +442067,Energy,Energy +442065,Energy,Energy +442050,Energy,Energy +442040,Energy,Energy +442038,Energy,Energy +442029,Energy,Energy +442024,Energy,Energy +442022,Energy,Energy +442016,Energy,Energy +442013,Energy,Energy +442009,Energy,Energy +441996,Energy,Energy +441986,Energy,Energy +441985,Energy,Energy +441979,Energy,Energy +437768,Energy,Energy +437767,Energy,Energy +437763,Energy,Energy +437760,Energy,Energy +437758,Energy,Energy +437755,Energy,Energy +437752,Energy,Energy +437751,Energy,Energy +437748,Energy,Energy +437744,Energy,Energy +437739,Energy,Energy +434517,Energy,Energy +434516,Energy,Energy +434515,Energy,Energy +434514,Energy,Energy +434512,Energy,Energy +434511,Energy,Energy +434508,Energy,Energy +434506,Energy,Energy +434505,Energy,Energy +433204,Energy,Energy +433203,Energy,Energy +433202,Energy,Energy +433201,Energy,Energy +433198,Energy,Energy +433196,Energy,Energy +433194,Energy,Energy +433192,Energy,Energy +433191,Energy,Energy +432388,Energy,Energy +430173,Energy,Energy +430172,Energy,Energy +430171,Energy,Energy +430170,Energy,Energy +430169,Energy,Energy +429673,Energy,Energy +427779,Energy,Energy +427773,Energy,Energy +427771,Energy,Energy +427770,Energy,Energy +427769,Energy,Energy +427768,Energy,Energy +427767,Energy,Energy +427766,Energy,Energy +427765,Energy,Energy +425206,Energy,Energy +425204,Energy,Energy +425203,Energy,Energy +425201,Energy,Energy +425200,Energy,Energy +425199,Energy,Energy +423185,Energy,Energy +423183,Energy,Energy +423182,Energy,Energy +423179,Energy,Energy +421115,Energy,Energy +421114,Energy,Energy +421113,Energy,Energy +421112,Energy,Energy +421111,Energy,Energy +421110,Energy,Energy +421106,Energy,Energy +421104,Energy,Energy +419048,Energy,Energy +419047,Energy,Energy +419046,Energy,Energy +419045,Energy,Energy +417724,Energy,Energy +417723,Energy,Energy +417722,Energy,Energy +415687,Energy,Energy +415036,Energy,Energy +415033,Energy,Energy +415032,Energy,Energy +415027,Energy,Energy +415025,Energy,Energy +415020,Energy,Energy +415015,Energy,Energy +415014,Energy,Energy +415013,Energy,Energy +412112,Energy,Energy +412103,Energy,Energy +412101,Energy,Energy +412097,Energy,Energy +412096,Energy,Energy +412095,Energy,Energy +412092,Energy,Energy +409153,Energy,Energy +409152,Energy,Energy +409151,Energy,Energy +409144,Energy,Energy +409108,Energy,Energy +409106,Energy,Energy +409103,Energy,Energy +407625,Energy,Energy +407624,Energy,Energy +407623,Energy,Energy +407622,Energy,Energy +407613,Energy,Energy +407610,Energy,Energy +407608,Energy,Energy +407464,Energy,Energy +407463,Energy,Energy +406469,Energy,Energy +406462,Energy,Energy +406458,Energy,Energy +406456,Energy,Energy +406455,Energy,Energy +406452,Energy,Energy +405149,Energy,Energy +404744,Energy,Energy +404742,Energy,Energy +404740,Energy,Energy +404739,Energy,Energy +404738,Energy,Energy +404737,Energy,Energy +404735,Energy,Energy +404734,Energy,Energy +404731,Energy,Energy +404729,Energy,Energy +402321,Energy,Energy +402320,Energy,Energy +402319,Energy,Energy +402318,Energy,Energy +402317,Energy,Energy +400167,Energy,Energy +400165,Energy,Energy +400163,Energy,Energy +400158,Energy,Energy +400156,Energy,Energy +400150,Energy,Energy +400145,Energy,Energy +400144,Energy,Energy +400136,Energy,Energy +400131,Energy,Energy +398985,Energy,Energy +398880,Energy,Energy +398879,Energy,Energy +398878,Energy,Energy +398875,Energy,Energy +398865,Energy,Energy +398864,Energy,Energy +398847,Energy,Energy +398833,Energy,Energy +398829,Energy,Energy +398825,Energy,Energy +395911,Energy,Energy +395907,Energy,Energy +395896,Energy,Energy +395894,Energy,Energy +395890,Energy,Energy +395888,Energy,Energy +395887,Energy,Energy +395885,Energy,Energy +395881,Energy,Energy +395872,Energy,Energy +393448,Energy,Energy +393447,Energy,Energy +393440,Energy,Energy +392011,Energy,Energy +392009,Energy,Energy +391443,Energy,Energy +391442,Energy,Energy +391441,Energy,Energy +391440,Energy,Energy +391439,Energy,Energy +391437,Energy,Energy +391435,Energy,Energy +391433,Energy,Energy +391431,Energy,Energy +391430,Energy,Energy +391429,Energy,Energy +391427,Energy,Energy +391414,Energy,Energy +391411,Energy,Energy +391407,Energy,Energy +388448,Energy,Energy +388442,Energy,Energy +388430,Energy,Energy +388423,Energy,Energy +388415,Energy,Energy +388410,Energy,Energy +542559,Energy,Energy +542558,Energy,Energy +540773,Energy,Energy +540772,Energy,Energy +540771,Energy,Energy +540770,Energy,Energy +539562,Energy,Energy +537676,Energy,Energy +537674,Energy,Energy +537673,Energy,Energy +537672,Energy,Energy +537671,Energy,Energy +537669,Energy,Energy +537667,Energy,Energy +532880,Energy,Energy +532879,Energy,Energy +532878,Energy,Energy +532877,Energy,Energy +532876,Energy,Energy +531504,Energy,Energy +531501,Energy,Energy +531500,Energy,Energy +531499,Energy,Energy +531498,Energy,Energy +531497,Energy,Energy +531495,Energy,Energy +531494,Energy,Energy +531492,Energy,Energy +531491,Energy,Energy +531487,Energy,Energy +531483,Energy,Energy +531481,Energy,Energy +531479,Energy,Energy +531476,Energy,Energy +531473,Energy,Energy +531471,Energy,Energy +527608,Energy,Energy +527607,Energy,Energy +527605,Energy,Energy +527604,Energy,Energy +527603,Energy,Energy +527602,Energy,Energy +527601,Energy,Energy +527600,Energy,Energy +527599,Energy,Energy +527598,Energy,Energy +524047,Energy,Energy +524044,Energy,Energy +524042,Energy,Energy +524041,Energy,Energy +524040,Energy,Energy +524038,Energy,Energy +524037,Energy,Energy +524036,Energy,Energy +524035,Energy,Energy +524034,Energy,Energy +524033,Energy,Energy +524032,Energy,Energy +524031,Energy,Energy +524029,Energy,Energy +520934,Energy,Energy +520933,Energy,Energy +520932,Energy,Energy +520931,Energy,Energy +520930,Energy,Energy +520929,Energy,Energy +520928,Energy,Energy +520927,Energy,Energy +520926,Energy,Energy +520925,Energy,Energy +520924,Energy,Energy +520923,Energy,Energy +518817,Energy,Energy +518816,Energy,Energy +518815,Energy,Energy +518814,Energy,Energy +516629,Energy,Energy +516628,Energy,Energy +516627,Energy,Energy +516625,Energy,Energy +515121,Energy,Energy +513953,Energy,Energy +513952,Energy,Energy +512520,Energy,Energy +512519,Energy,Energy +509880,Energy,Energy +509879,Energy,Energy +509877,Energy,Energy +507834,Energy,Energy +507833,Energy,Energy +507832,Energy,Energy +507829,Energy,Energy +507825,Energy,Energy +507824,Energy,Energy +507819,Energy,Energy +504305,Energy,Energy +504304,Energy,Energy +504303,Energy,Energy +504302,Energy,Energy +504299,Energy,Energy +501663,Energy,Energy +501662,Energy,Energy +501661,Energy,Energy +501660,Energy,Energy +501659,Energy,Energy +501658,Energy,Energy +501657,Energy,Energy +501654,Energy,Energy +501653,Energy,Energy +501652,Energy,Energy +501641,Energy,Energy +498242,Energy,Energy +498241,Energy,Energy +498239,Energy,Energy +498237,Energy,Energy +498236,Energy,Energy +498235,Energy,Energy +495230,Energy,Energy +495228,Energy,Energy +495224,Energy,Energy +495206,Energy,Energy +493514,Energy,Energy +493121,Energy,Energy +493051,Energy,Energy +493047,Energy,Energy +493040,Energy,Energy +493004,Energy,Energy +489892,Energy,Energy +486938,Energy,Energy +486934,Energy,Energy +486932,Energy,Energy +486930,Energy,Energy +486928,Energy,Energy +486927,Energy,Energy +484141,Energy,Energy +484140,Energy,Energy +484139,Energy,Energy +484138,Energy,Energy +484137,Energy,Energy +484136,Energy,Energy +484135,Energy,Energy +484133,Energy,Energy +484129,Energy,Energy +484127,Energy,Energy +484126,Energy,Energy +484121,Energy,Energy +484120,Energy,Energy +481510,Energy,Energy +481508,Energy,Energy +481507,Energy,Energy +481506,Energy,Energy +481505,Energy,Energy +481504,Energy,Energy +481502,Energy,Energy +481499,Energy,Energy +477422,Energy,Energy +477419,Energy,Energy +477414,Energy,Energy +477410,Energy,Energy +474631,Energy,Energy +474629,Energy,Energy +474625,Energy,Energy +472048,Energy,Energy +472047,Energy,Energy +472044,Energy,Energy +472042,Energy,Energy +472041,Energy,Energy +469261,Energy,Energy +469260,Energy,Energy +469259,Energy,Energy +469257,Energy,Energy +469256,Energy,Energy +469255,Energy,Energy +469254,Energy,Energy +469253,Energy,Energy +469239,Energy,Energy +469238,Energy,Energy +469233,Energy,Energy +466345,Energy,Energy +466340,Energy,Energy +466336,Energy,Energy +466334,Energy,Energy +466331,Energy,Energy +466328,Energy,Energy +466327,Energy,Energy +466325,Energy,Energy +466321,Energy,Energy +466319,Energy,Energy +463536,Energy,Energy +463535,Energy,Energy +463534,Energy,Energy +463533,Energy,Energy +463531,Energy,Energy +463530,Energy,Energy +463529,Energy,Energy +462473,Energy,Energy +461167,Energy,Energy +461166,Energy,Energy +461165,Energy,Energy +461164,Energy,Energy +459946,Energy,Energy +459945,Energy,Energy +459153,Energy,Energy +458216,Energy,Energy +458215,Energy,Energy +457031,Energy,Energy +457029,Energy,Energy +454634,Energy,Energy +454633,Energy,Energy +454632,Energy,Energy +454631,Energy,Energy +454630,Energy,Energy +454629,Energy,Energy +454627,Energy,Energy +454626,Energy,Energy +454625,Energy,Energy +454622,Energy,Energy +454617,Energy,Energy +454615,Energy,Energy +454614,Energy,Energy +454612,Energy,Energy +454609,Energy,Energy +454607,Energy,Energy +454606,Energy,Energy +454605,Energy,Energy +454603,Energy,Energy +454602,Energy,Energy +454601,Energy,Energy +454600,Energy,Energy +402318,Environment,Environment +402317,Environment,Environment +77054,Environment,Environment +77052,Environment,Environment +77051,Environment,Environment +154672,Environment,Environment +153429,Environment,Environment +150351,Environment,Environment +148244,Environment,Environment +135909,Environment,Environment +128962,Environment,Environment +128961,Environment,Environment +120874,Environment,Environment +120862,Environment,Environment +120861,Environment,Environment +120860,Environment,Environment +101215,Environment,Environment +101210,Environment,Environment +101205,Environment,Environment +101200,Environment,Environment +189126,Environment,Environment +175273,Environment,Environment +173431,Environment,Environment +171947,Environment,Environment +170813,Environment,Environment +170807,Environment,Environment +164269,Environment,Environment +159928,Environment,Environment +159921,Environment,Environment +282290,Environment,Environment +280885,Environment,Environment +276821,Environment,Environment +276819,Environment,Environment +276817,Environment,Environment +276816,Environment,Environment +276811,Environment,Environment +269354,Environment,Environment +259050,Environment,Environment +249816,Environment,Environment +245312,Environment,Environment +236837,Environment,Environment +230124,Environment,Environment +226287,Environment,Environment +226286,Environment,Environment +226285,Environment,Environment +226283,Environment,Environment +226282,Environment,Environment +226280,Environment,Environment +220867,Environment,Environment +216172,Environment,Environment +206833,Environment,Environment +201256,Environment,Environment +201255,Environment,Environment +201253,Environment,Environment +201251,Environment,Environment +201250,Environment,Environment +201249,Environment,Environment +201248,Environment,Environment +201247,Environment,Environment +199790,Environment,Environment +199789,Environment,Environment +199788,Environment,Environment +194655,Environment,Environment +194653,Environment,Environment +194651,Environment,Environment +189145,Environment,Environment +189141,Environment,Environment +400167,Environment,Environment +400165,Environment,Environment +400163,Environment,Environment +400158,Environment,Environment +400156,Environment,Environment +400150,Environment,Environment +400145,Environment,Environment +400144,Environment,Environment +400136,Environment,Environment +400131,Environment,Environment +398985,Environment,Environment +398880,Environment,Environment +398879,Environment,Environment +398878,Environment,Environment +398875,Environment,Environment +398865,Environment,Environment +398864,Environment,Environment +398847,Environment,Environment +398833,Environment,Environment +398829,Environment,Environment +398825,Environment,Environment +395911,Environment,Environment +395907,Environment,Environment +395900,Environment,Environment +395894,Environment,Environment +395890,Environment,Environment +395888,Environment,Environment +395887,Environment,Environment +395885,Environment,Environment +395881,Environment,Environment +395872,Environment,Environment +393448,Environment,Environment +393447,Environment,Environment +393440,Environment,Environment +392011,Environment,Environment +392009,Environment,Environment +391443,Environment,Environment +391442,Environment,Environment +391441,Environment,Environment +391440,Environment,Environment +391439,Environment,Environment +391437,Environment,Environment +391435,Environment,Environment +391433,Environment,Environment +391431,Environment,Environment +391430,Environment,Environment +391429,Environment,Environment +391427,Environment,Environment +391414,Environment,Environment +391411,Environment,Environment +391407,Environment,Environment +388448,Environment,Environment +388442,Environment,Environment +388430,Environment,Environment +388423,Environment,Environment +388415,Environment,Environment +388410,Environment,Environment +384862,Environment,Environment +384861,Environment,Environment +383230,Environment,Environment +383226,Environment,Environment +381904,Environment,Environment +381903,Environment,Environment +381902,Environment,Environment +381901,Environment,Environment +381900,Environment,Environment +381899,Environment,Environment +381898,Environment,Environment +381897,Environment,Environment +381896,Environment,Environment +381456,Environment,Environment +381454,Environment,Environment +381453,Environment,Environment +381452,Environment,Environment +381451,Environment,Environment +381449,Environment,Environment +379238,Environment,Environment +379237,Environment,Environment +379236,Environment,Environment +379235,Environment,Environment +379233,Environment,Environment +379232,Environment,Environment +379231,Environment,Environment +379230,Environment,Environment +379228,Environment,Environment +379226,Environment,Environment +376309,Environment,Environment +376308,Environment,Environment +376307,Environment,Environment +374336,Environment,Environment +374334,Environment,Environment +374330,Environment,Environment +374327,Environment,Environment +374325,Environment,Environment +374324,Environment,Environment +374323,Environment,Environment +372115,Environment,Environment +372113,Environment,Environment +372111,Environment,Environment +372107,Environment,Environment +372104,Environment,Environment +372098,Environment,Environment +372092,Environment,Environment +372088,Environment,Environment +372083,Environment,Environment +372081,Environment,Environment +372073,Environment,Environment +372069,Environment,Environment +372063,Environment,Environment +372037,Environment,Environment +372034,Environment,Environment +372031,Environment,Environment +372029,Environment,Environment +372025,Environment,Environment +372022,Environment,Environment +368883,Environment,Environment +368829,Environment,Environment +366412,Environment,Environment +366411,Environment,Environment +366409,Environment,Environment +366407,Environment,Environment +357365,Environment,Environment +357364,Environment,Environment +355488,Environment,Environment +353788,Environment,Environment +353786,Environment,Environment +353785,Environment,Environment +350803,Environment,Environment +348551,Environment,Environment +343574,Environment,Environment +338630,Environment,Environment +337070,Environment,Environment +337069,Environment,Environment +334852,Environment,Environment +334851,Environment,Environment +333566,Environment,Environment +333562,Environment,Environment +319099,Environment,Environment +312846,Environment,Environment +312845,Environment,Environment +312843,Environment,Environment +542559,Environment,Environment +542558,Environment,Environment +532879,Environment,Environment +532878,Environment,Environment +532877,Environment,Environment +532876,Environment,Environment +531504,Environment,Environment +531487,Environment,Environment +531483,Environment,Environment +531481,Environment,Environment +531479,Environment,Environment +531476,Environment,Environment +531473,Environment,Environment +527607,Environment,Environment +527602,Environment,Environment +524044,Environment,Environment +524042,Environment,Environment +524041,Environment,Environment +524040,Environment,Environment +524036,Environment,Environment +524032,Environment,Environment +520934,Environment,Environment +520929,Environment,Environment +520925,Environment,Environment +518815,Environment,Environment +516627,Environment,Environment +509879,Environment,Environment +509877,Environment,Environment +501641,Environment,Environment +493047,Environment,Environment +484136,Environment,Environment +481507,Environment,Environment +474629,Environment,Environment +472048,Environment,Environment +472047,Environment,Environment +472044,Environment,Environment +469261,Environment,Environment +469260,Environment,Environment +469259,Environment,Environment +469256,Environment,Environment +469254,Environment,Environment +469253,Environment,Environment +469239,Environment,Environment +469238,Environment,Environment +466345,Environment,Environment +466340,Environment,Environment +466336,Environment,Environment +466334,Environment,Environment +466331,Environment,Environment +466328,Environment,Environment +466327,Environment,Environment +466325,Environment,Environment +466321,Environment,Environment +466319,Environment,Environment +463534,Environment,Environment +463533,Environment,Environment +463531,Environment,Environment +463530,Environment,Environment +463529,Environment,Environment +462473,Environment,Environment +461167,Environment,Environment +461166,Environment,Environment +461165,Environment,Environment +461164,Environment,Environment +459946,Environment,Environment +459945,Environment,Environment +459153,Environment,Environment +458216,Environment,Environment +458215,Environment,Environment +457031,Environment,Environment +457029,Environment,Environment +454634,Environment,Environment +454633,Environment,Environment +454632,Environment,Environment +454631,Environment,Environment +454630,Environment,Environment +454629,Environment,Environment +454627,Environment,Environment +454626,Environment,Environment +454625,Environment,Environment +454622,Environment,Environment +454617,Environment,Environment +454615,Environment,Environment +454614,Environment,Environment +454612,Environment,Environment +454609,Environment,Environment +454607,Environment,Environment +454606,Environment,Environment +454605,Environment,Environment +454603,Environment,Environment +454602,Environment,Environment +454601,Environment,Environment +454600,Environment,Environment +454598,Environment,Environment +454596,Environment,Environment +454595,Environment,Environment +454594,Environment,Environment +454590,Environment,Environment +454587,Environment,Environment +454574,Environment,Environment +454572,Environment,Environment +454569,Environment,Environment +454568,Environment,Environment +454563,Environment,Environment +454562,Environment,Environment +454561,Environment,Environment +454560,Environment,Environment +454559,Environment,Environment +451689,Environment,Environment +449274,Environment,Environment +449273,Environment,Environment +449272,Environment,Environment +447312,Environment,Environment +447272,Environment,Environment +447268,Environment,Environment +447266,Environment,Environment +444946,Environment,Environment +444922,Environment,Environment +444920,Environment,Environment +444918,Environment,Environment +443318,Environment,Environment +443316,Environment,Environment +443315,Environment,Environment +443314,Environment,Environment +443313,Environment,Environment +443312,Environment,Environment +443310,Environment,Environment +443308,Environment,Environment +443306,Environment,Environment +443305,Environment,Environment +443304,Environment,Environment +442159,Environment,Environment +442067,Environment,Environment +442065,Environment,Environment +442050,Environment,Environment +442040,Environment,Environment +442038,Environment,Environment +442029,Environment,Environment +442013,Environment,Environment +442009,Environment,Environment +441986,Environment,Environment +437768,Environment,Environment +437767,Environment,Environment +437760,Environment,Environment +437758,Environment,Environment +437755,Environment,Environment +437751,Environment,Environment +437748,Environment,Environment +437744,Environment,Environment +437739,Environment,Environment +434517,Environment,Environment +434516,Environment,Environment +434515,Environment,Environment +434514,Environment,Environment +434512,Environment,Environment +434511,Environment,Environment +434508,Environment,Environment +434506,Environment,Environment +434505,Environment,Environment +433204,Environment,Environment +433203,Environment,Environment +433202,Environment,Environment +433201,Environment,Environment +433198,Environment,Environment +433196,Environment,Environment +433194,Environment,Environment +433192,Environment,Environment +433191,Environment,Environment +432388,Environment,Environment +430173,Environment,Environment +430172,Environment,Environment +430171,Environment,Environment +430170,Environment,Environment +430169,Environment,Environment +429673,Environment,Environment +427779,Environment,Environment +427773,Environment,Environment +427771,Environment,Environment +427770,Environment,Environment +427769,Environment,Environment +427768,Environment,Environment +427767,Environment,Environment +427766,Environment,Environment +427765,Environment,Environment +425206,Environment,Environment +425204,Environment,Environment +425203,Environment,Environment +425201,Environment,Environment +425200,Environment,Environment +425199,Environment,Environment +423185,Environment,Environment +423183,Environment,Environment +423182,Environment,Environment +423179,Environment,Environment +421115,Environment,Environment +421114,Environment,Environment +421113,Environment,Environment +421112,Environment,Environment +421111,Environment,Environment +421110,Environment,Environment +421106,Environment,Environment +421104,Environment,Environment +419048,Environment,Environment +419047,Environment,Environment +419045,Environment,Environment +417724,Environment,Environment +417723,Environment,Environment +417722,Environment,Environment +415687,Environment,Environment +415033,Environment,Environment +415032,Environment,Environment +415027,Environment,Environment +415020,Environment,Environment +415015,Environment,Environment +415014,Environment,Environment +415013,Environment,Environment +412112,Environment,Environment +412103,Environment,Environment +412101,Environment,Environment +412097,Environment,Environment +412096,Environment,Environment +412095,Environment,Environment +412092,Environment,Environment +409153,Environment,Environment +409152,Environment,Environment +409151,Environment,Environment +409144,Environment,Environment +409108,Environment,Environment +409106,Environment,Environment +409103,Environment,Environment +407625,Environment,Environment +407624,Environment,Environment +407623,Environment,Environment +407622,Environment,Environment +407613,Environment,Environment +407610,Environment,Environment +407608,Environment,Environment +407464,Environment,Environment +407463,Environment,Environment +406469,Environment,Environment +406462,Environment,Environment +406458,Environment,Environment +406456,Environment,Environment +406455,Environment,Environment +406452,Environment,Environment +405149,Environment,Environment +404744,Environment,Environment +404742,Environment,Environment +404740,Environment,Environment +404739,Environment,Environment +404738,Environment,Environment +404737,Environment,Environment +404735,Environment,Environment +404734,Environment,Environment +404731,Environment,Environment +404729,Environment,Environment +402321,Environment,Environment +402320,Environment,Environment +407622,Fisheries,Fisheries +406469,Fisheries,Fisheries +132815,Fisheries,Fisheries +159918,Fisheries,Fisheries +159915,Fisheries,Fisheries +276816,Fisheries,Fisheries +269411,Fisheries,Fisheries +249812,Fisheries,Fisheries +236836,Fisheries,Fisheries +226281,Fisheries,Fisheries +220868,Fisheries,Fisheries +206824,Fisheries,Fisheries +189141,Fisheries,Fisheries +170812,Fisheries,Fisheries +395894,Fisheries,Fisheries +395890,Fisheries,Fisheries +393440,Fisheries,Fisheries +391440,Fisheries,Fisheries +388442,Fisheries,Fisheries +388415,Fisheries,Fisheries +343575,Fisheries,Fisheries +531487,Fisheries,Fisheries +518814,Fisheries,Fisheries +516625,Fisheries,Fisheries +507834,Fisheries,Fisheries +507833,Fisheries,Fisheries +507824,Fisheries,Fisheries +498242,Fisheries,Fisheries +495228,Fisheries,Fisheries +477410,Fisheries,Fisheries +466345,Fisheries,Fisheries +463535,Fisheries,Fisheries +454598,Fisheries,Fisheries +454596,Fisheries,Fisheries +454574,Fisheries,Fisheries +454572,Fisheries,Fisheries +454569,Fisheries,Fisheries +454568,Fisheries,Fisheries +454563,Fisheries,Fisheries +454562,Fisheries,Fisheries +454561,Fisheries,Fisheries +454560,Fisheries,Fisheries +454559,Fisheries,Fisheries +444922,Fisheries,Fisheries +441996,Fisheries,Fisheries +437752,Fisheries,Fisheries +437751,Fisheries,Fisheries +437748,Fisheries,Fisheries +427771,Fisheries,Fisheries +427767,Fisheries,Fisheries +423185,Fisheries,Fisheries +423183,Fisheries,Fisheries +477419,Health,Health +477414,Health,Health +310378,Health,Health +310377,Health,Health +472048,Health,Health +472047,Health,Health +472044,Health,Health +472042,Health,Health +472041,Health,Health +481509,Health,Health +527608,Industry,Industry +520933,Industry,Industry +273472,Industry,Industry +366409,Industry,Industry +486930,Industry,Industry +484121,Industry,Industry +481505,Industry,Industry +407463,Industry,Industry +398833,Industry,Industry +398829,Industry,Industry +398847,Infrastructure,Infrastructure +537667,Infrastructure,Infrastructure +132824,Infrastructure,Infrastructure +132815,Infrastructure,Infrastructure +83014,Infrastructure,Infrastructure +210312,Infrastructure,Infrastructure +210311,Infrastructure,Infrastructure +210310,Infrastructure,Infrastructure +210309,Infrastructure,Infrastructure +201252,Infrastructure,Infrastructure +199790,Infrastructure,Infrastructure +189145,Infrastructure,Infrastructure +189141,Infrastructure,Infrastructure +189126,Infrastructure,Infrastructure +142276,Infrastructure,Infrastructure +350800,Infrastructure,Infrastructure +264405,Infrastructure,Infrastructure +264403,Infrastructure,Infrastructure +264399,Infrastructure,Infrastructure +264396,Infrastructure,Infrastructure +264394,Infrastructure,Infrastructure +264391,Infrastructure,Infrastructure +245312,Infrastructure,Infrastructure +241090,Infrastructure,Infrastructure +226279,Infrastructure,Infrastructure +216177,Infrastructure,Infrastructure +216175,Infrastructure,Infrastructure +216174,Infrastructure,Infrastructure +216173,Infrastructure,Infrastructure +210313,Infrastructure,Infrastructure +393448,Infrastructure,Infrastructure +393447,Infrastructure,Infrastructure +393440,Infrastructure,Infrastructure +392011,Infrastructure,Infrastructure +392009,Infrastructure,Infrastructure +391443,Infrastructure,Infrastructure +391442,Infrastructure,Infrastructure +391441,Infrastructure,Infrastructure +391439,Infrastructure,Infrastructure +391437,Infrastructure,Infrastructure +391431,Infrastructure,Infrastructure +391430,Infrastructure,Infrastructure +391429,Infrastructure,Infrastructure +391427,Infrastructure,Infrastructure +391414,Infrastructure,Infrastructure +391411,Infrastructure,Infrastructure +391407,Infrastructure,Infrastructure +388442,Infrastructure,Infrastructure +388423,Infrastructure,Infrastructure +388415,Infrastructure,Infrastructure +388410,Infrastructure,Infrastructure +384862,Infrastructure,Infrastructure +384861,Infrastructure,Infrastructure +383226,Infrastructure,Infrastructure +381904,Infrastructure,Infrastructure +381901,Infrastructure,Infrastructure +381899,Infrastructure,Infrastructure +381898,Infrastructure,Infrastructure +381453,Infrastructure,Infrastructure +381451,Infrastructure,Infrastructure +379236,Infrastructure,Infrastructure +379235,Infrastructure,Infrastructure +379233,Infrastructure,Infrastructure +379231,Infrastructure,Infrastructure +379228,Infrastructure,Infrastructure +376308,Infrastructure,Infrastructure +374336,Infrastructure,Infrastructure +374335,Infrastructure,Infrastructure +374334,Infrastructure,Infrastructure +374330,Infrastructure,Infrastructure +374327,Infrastructure,Infrastructure +374325,Infrastructure,Infrastructure +374324,Infrastructure,Infrastructure +374323,Infrastructure,Infrastructure +372115,Infrastructure,Infrastructure +372113,Infrastructure,Infrastructure +372111,Infrastructure,Infrastructure +372109,Infrastructure,Infrastructure +372107,Infrastructure,Infrastructure +372104,Infrastructure,Infrastructure +372098,Infrastructure,Infrastructure +372092,Infrastructure,Infrastructure +372088,Infrastructure,Infrastructure +372083,Infrastructure,Infrastructure +372081,Infrastructure,Infrastructure +372073,Infrastructure,Infrastructure +372069,Infrastructure,Infrastructure +372063,Infrastructure,Infrastructure +372037,Infrastructure,Infrastructure +372034,Infrastructure,Infrastructure +372031,Infrastructure,Infrastructure +372029,Infrastructure,Infrastructure +372025,Infrastructure,Infrastructure +372022,Infrastructure,Infrastructure +368883,Infrastructure,Infrastructure +368829,Infrastructure,Infrastructure +366412,Infrastructure,Infrastructure +366411,Infrastructure,Infrastructure +366409,Infrastructure,Infrastructure +366407,Infrastructure,Infrastructure +357809,Infrastructure,Infrastructure +357366,Infrastructure,Infrastructure +357365,Infrastructure,Infrastructure +357364,Infrastructure,Infrastructure +357362,Infrastructure,Infrastructure +355488,Infrastructure,Infrastructure +355487,Infrastructure,Infrastructure +353788,Infrastructure,Infrastructure +353786,Infrastructure,Infrastructure +350803,Infrastructure,Infrastructure +350801,Infrastructure,Infrastructure +531487,Infrastructure,Infrastructure +501641,Infrastructure,Infrastructure +493514,Infrastructure,Infrastructure +493121,Infrastructure,Infrastructure +489892,Infrastructure,Infrastructure +484133,Infrastructure,Infrastructure +481508,Infrastructure,Infrastructure +477414,Infrastructure,Infrastructure +474631,Infrastructure,Infrastructure +469261,Infrastructure,Infrastructure +469233,Infrastructure,Infrastructure +444922,Infrastructure,Infrastructure +444920,Infrastructure,Infrastructure +443306,Infrastructure,Infrastructure +442024,Infrastructure,Infrastructure +442016,Infrastructure,Infrastructure +442013,Infrastructure,Infrastructure +442009,Infrastructure,Infrastructure +437768,Infrastructure,Infrastructure +437763,Infrastructure,Infrastructure +437760,Infrastructure,Infrastructure +437751,Infrastructure,Infrastructure +427770,Infrastructure,Infrastructure +415025,Infrastructure,Infrastructure +412103,Infrastructure,Infrastructure +412101,Infrastructure,Infrastructure +412097,Infrastructure,Infrastructure +409144,Infrastructure,Infrastructure +409108,Infrastructure,Infrastructure +407625,Infrastructure,Infrastructure +407623,Infrastructure,Infrastructure +407464,Infrastructure,Infrastructure +405149,Infrastructure,Infrastructure +404744,Infrastructure,Infrastructure +404742,Infrastructure,Infrastructure +404740,Infrastructure,Infrastructure +404739,Infrastructure,Infrastructure +404738,Infrastructure,Infrastructure +404737,Infrastructure,Infrastructure +404735,Infrastructure,Infrastructure +404734,Infrastructure,Infrastructure +404731,Infrastructure,Infrastructure +404729,Infrastructure,Infrastructure +402321,Infrastructure,Infrastructure +402320,Infrastructure,Infrastructure +402319,Infrastructure,Infrastructure +402318,Infrastructure,Infrastructure +402317,Infrastructure,Infrastructure +400158,Infrastructure,Infrastructure +400150,Infrastructure,Infrastructure +398985,Infrastructure,Infrastructure +398880,Infrastructure,Infrastructure +398879,Infrastructure,Infrastructure +398878,Infrastructure,Infrastructure +442040,Internal Trade,Internal Trade +437739,Internal Trade,Internal Trade +398878,Internal Trade,Internal Trade +393448,Internal Trade,Internal Trade +398825,International Trade,International Trade +537672,International Trade,International Trade +273472,International Trade,International Trade +171938,International Trade,International Trade +350803,International Trade,International Trade +350800,International Trade,International Trade +343574,International Trade,International Trade +325199,International Trade,International Trade +319099,International Trade,International Trade +312846,International Trade,International Trade +312845,International Trade,International Trade +395896,International Trade,International Trade +395888,International Trade,International Trade +395885,International Trade,International Trade +393448,International Trade,International Trade +393447,International Trade,International Trade +391433,International Trade,International Trade +391414,International Trade,International Trade +383230,International Trade,International Trade +379237,International Trade,International Trade +376307,International Trade,International Trade +368883,International Trade,International Trade +368829,International Trade,International Trade +353785,International Trade,International Trade +524031,International Trade,International Trade +520932,International Trade,International Trade +501661,International Trade,International Trade +469261,International Trade,International Trade +469259,International Trade,International Trade +466321,International Trade,International Trade +451690,International Trade,International Trade +444922,International Trade,International Trade +442024,International Trade,International Trade +437768,International Trade,International Trade +415036,International Trade,International Trade +412092,International Trade,International Trade +409108,International Trade,International Trade +407463,International Trade,International Trade +406458,International Trade,International Trade +402321,International Trade,International Trade +402317,International Trade,International Trade +400167,International Trade,International Trade +400163,International Trade,International Trade +400156,International Trade,International Trade +400136,International Trade,International Trade +398985,International Trade,International Trade +442064,Labour,Labour +442053,Labour,Labour +531487,Taxation and Finance,Taxation and Finance +524040,Taxation and Finance,Taxation and Finance +132852,Taxation and Finance,Taxation and Finance +165857,Taxation and Finance,Taxation and Finance +407463,Taxation and Finance,Taxation and Finance +454612,Transportation,Transportation +388410,Transportation,Transportation +273472,Transportation,Transportation +269352,Transportation,Transportation +269350,Transportation,Transportation +524043,Transportation,Transportation +524029,Transportation,Transportation +512520,Transportation,Transportation +484137,Transportation,Transportation +142967,Other,Security +443884,Defence,Defence +442453,Defence,Defence +165330,Defence,Defence +165329,Defence,Defence +163976,Defence,Defence +163973,Defence,Defence +163971,Defence,Defence +162560,Defence,Defence +162556,Defence,Defence +162554,Defence,Defence +162550,Defence,Defence +159820,Defence,Defence +159811,Defence,Defence +326908,Defence,Defence +326906,Defence,Defence +326903,Defence,Defence +326900,Defence,Defence +326896,Defence,Defence +326894,Defence,Defence +326893,Defence,Defence +238030,Defence,Defence +193494,Defence,Defence +193493,Defence,Defence +185364,Defence,Defence +185361,Defence,Defence +185360,Defence,Defence +185359,Defence,Defence +185358,Defence,Defence +185357,Defence,Defence +185356,Defence,Defence +185355,Defence,Defence +185352,Defence,Defence +185350,Defence,Defence +185349,Defence,Defence +185348,Defence,Defence +185345,Defence,Defence +176404,Defence,Defence +462391,Defence,Defence +461629,Defence,Defence +460614,Defence,Defence +460613,Defence,Defence +453044,Defence,Defence +449609,Defence,Defence +467407,Education,Education +467404,Education,Education +162545,Education,Education +159831,Education,Education +159820,Education,Education +159811,Education,Education +159800,Education,Education +238029,Education,Education +388465,Education,Education +388457,Education,Education +388454,Education,Education +385578,Education,Education +382295,Education,Education +382294,Education,Education +381614,Education,Education +379941,Education,Education +379910,Education,Education +379908,Education,Education +376827,Education,Education +376791,Education,Education +374933,Education,Education +374931,Education,Education +374921,Education,Education +374915,Education,Education +372463,Education,Education +372461,Education,Education +365249,Education,Education +365245,Education,Education +365242,Education,Education +363528,Education,Education +363527,Education,Education +363526,Education,Education +358135,Education,Education +353978,Education,Education +351418,Education,Education +351417,Education,Education +326892,Education,Education +324250,Education,Education +324248,Education,Education +312815,Education,Education +312814,Education,Education +312813,Education,Education +462389,Education,Education +461631,Education,Education +461630,Education,Education +461625,Education,Education +460129,Education,Education +455103,Education,Education +455096,Education,Education +455094,Education,Education +452529,Education,Education +452523,Education,Education +449620,Education,Education +449619,Education,Education +436132,Education,Education +422163,Education,Education +415507,Education,Education +413440,Education,Education +413357,Education,Education +405224,Education,Education +403594,Education,Education +403590,Education,Education +403579,Education,Education +400978,Education,Education +400974,Education,Education +399101,Education,Education +399100,Education,Education +394421,Education,Education +543949,Education,Education +541754,Education,Education +541749,Education,Education +534590,Education,Education +534586,Education,Education +534573,Education,Education +534568,Education,Education +534566,Education,Education +534562,Education,Education +534559,Education,Education +531348,Education,Education +531344,Education,Education +531342,Education,Education +531339,Education,Education +520005,Education,Education +517768,Education,Education +515716,Education,Education +515485,Education,Education +514581,Education,Education +514569,Education,Education +513990,Education,Education +513929,Education,Education +513923,Education,Education +512927,Education,Education +510436,Education,Education +504416,Education,Education +504244,Education,Education +504241,Education,Education +504239,Education,Education +498188,Education,Education +490264,Education,Education +487721,Education,Education +475464,Education,Education +475462,Education,Education +462389,Employment and Training,Employment and Training +462388,Employment and Training,Employment and Training +333364,Employment and Training,Employment and Training +461631,Employment and Training,Employment and Training +461630,Employment and Training,Employment and Training +460612,Employment and Training,Employment and Training +460129,Employment and Training,Employment and Training +459556,Employment and Training,Employment and Training +459554,Employment and Training,Employment and Training +459546,Employment and Training,Employment and Training +459545,Employment and Training,Employment and Training +458576,Employment and Training,Employment and Training +457211,Employment and Training,Employment and Training +452529,Employment and Training,Employment and Training +443899,Employment and Training,Employment and Training +443894,Employment and Training,Employment and Training +442383,Employment and Training,Employment and Training +433862,Employment and Training,Employment and Training +422159,Employment and Training,Employment and Training +490266,Employment and Training,Employment and Training +391428,Energy,Energy +379906,Energy,Energy +487727,Energy,Energy +487725,Energy,Energy +487723,Energy,Energy +415989,Energy,Energy +415988,Energy,Energy +408105,Energy,Energy +487721,Environment,Environment +475771,Environment,Environment +467403,Environment,Environment +467400,Environment,Environment +462389,Environment,Environment +461625,Environment,Environment +457211,Environment,Environment +445635,Environment,Environment +443884,Environment,Environment +439675,Environment,Environment +513930,Environment,Environment +513927,Environment,Environment +513925,Environment,Environment +510440,Environment,Environment +462392,Health,Health +462391,Health,Health +185345,Health,Health +185344,Health,Health +176404,Health,Health +175030,Health,Health +165330,Health,Health +165329,Health,Health +163976,Health,Health +163973,Health,Health +163971,Health,Health +162560,Health,Health +162556,Health,Health +162554,Health,Health +162550,Health,Health +162545,Health,Health +159820,Health,Health +159811,Health,Health +372455,Health,Health +369140,Health,Health +326908,Health,Health +326906,Health,Health +326903,Health,Health +326900,Health,Health +326896,Health,Health +326894,Health,Health +326893,Health,Health +263392,Health,Health +263391,Health,Health +263390,Health,Health +263389,Health,Health +238030,Health,Health +193494,Health,Health +193493,Health,Health +188734,Health,Health +188733,Health,Health +188729,Health,Health +188724,Health,Health +188717,Health,Health +188714,Health,Health +188712,Health,Health +185364,Health,Health +185361,Health,Health +185360,Health,Health +185359,Health,Health +185358,Health,Health +185357,Health,Health +185356,Health,Health +185355,Health,Health +185352,Health,Health +185350,Health,Health +185349,Health,Health +185348,Health,Health +461629,Health,Health +460614,Health,Health +460613,Health,Health +458575,Health,Health +453044,Health,Health +449609,Health,Health +447716,Health,Health +445644,Health,Health +445643,Health,Health +445640,Health,Health +445639,Health,Health +445637,Health,Health +442453,Health,Health +442450,Health,Health +442446,Health,Health +442443,Health,Health +442439,Health,Health +442430,Health,Health +442426,Health,Health +442423,Health,Health +439668,Health,Health +433863,Health,Health +426696,Health,Health +403584,Health,Health +403566,Health,Health +400979,Health,Health +399098,Health,Health +391412,Health,Health +391404,Health,Health +388447,Health,Health +385556,Health,Health +385551,Health,Health +381617,Health,Health +541743,Health,Health +534590,Health,Health +534586,Health,Health +531393,Health,Health +531353,Health,Health +531352,Health,Health +526143,Health,Health +525635,Health,Health +525625,Health,Health +517759,Health,Health +510436,Health,Health +507935,Health,Health +501704,Health,Health +501700,Health,Health +501698,Health,Health +498189,Health,Health +495180,Health,Health +493337,Health,Health +490271,Health,Health +484748,Health,Health +482140,Health,Health +479852,Health,Health +473541,Health,Health +473494,Health,Health +468253,Health,Health +467407,Health,Health +467404,Health,Health +504241,Immigration,Immigration +504239,Immigration,Immigration +333364,Immigration,Immigration +312813,Immigration,Immigration +276830,Immigration,Immigration +490264,Immigration,Immigration +475464,Immigration,Immigration +517769,Immigration,Immigration +513923,Immigration,Immigration +512927,Immigration,Immigration +504416,Immigration,Immigration +405224,Infrastructure,Infrastructure +400981,Infrastructure,Infrastructure +93895,Infrastructure,Infrastructure +93894,Infrastructure,Infrastructure +330148,Infrastructure,Infrastructure +326892,Infrastructure,Infrastructure +324250,Infrastructure,Infrastructure +134374,Infrastructure,Infrastructure +388465,Infrastructure,Infrastructure +388463,Infrastructure,Infrastructure +385571,Infrastructure,Infrastructure +383460,Infrastructure,Infrastructure +361189,Infrastructure,Infrastructure +355991,Infrastructure,Infrastructure +355988,Infrastructure,Infrastructure +355987,Infrastructure,Infrastructure +353981,Infrastructure,Infrastructure +353978,Infrastructure,Infrastructure +353977,Infrastructure,Infrastructure +351418,Infrastructure,Infrastructure +351417,Infrastructure,Infrastructure +510440,Infrastructure,Infrastructure +495186,Infrastructure,Infrastructure +495185,Infrastructure,Infrastructure +495184,Infrastructure,Infrastructure +495183,Infrastructure,Infrastructure +493340,Infrastructure,Infrastructure +493335,Infrastructure,Infrastructure +490269,Infrastructure,Infrastructure +484764,Infrastructure,Infrastructure +484763,Infrastructure,Infrastructure +484762,Infrastructure,Infrastructure +484760,Infrastructure,Infrastructure +484758,Infrastructure,Infrastructure +484753,Infrastructure,Infrastructure +484752,Infrastructure,Infrastructure +484750,Infrastructure,Infrastructure +449620,Infrastructure,Infrastructure +449619,Infrastructure,Infrastructure +439675,Infrastructure,Infrastructure +415475,Infrastructure,Infrastructure +459546,Regional Development,Regional Development +459545,Regional Development,Regional Development +88141,Regional Development,Regional Development +84534,Regional Development,Regional Development +379924,Regional Development,Regional Development +457211,Regional Development,Regional Development +452529,Regional Development,Regional Development +449619,Regional Development,Regional Development +443899,Regional Development,Regional Development +415473,Regional Development,Regional Development +385571,Regional Development,Regional Development +495182,Regional Development,Regional Development +470564,Regional Development,Regional Development +409700,Taxation and Finance,Taxation and Finance +409692,Taxation and Finance,Taxation and Finance +513930,Taxation and Finance,Taxation and Finance +513927,Taxation and Finance,Taxation and Finance +513925,Taxation and Finance,Taxation and Finance +125164,Other,Research and Innovation +125159,Other,Research and Innovation +93895,Other,Research and Innovation +125159,Other,Commercialization +93895,Other,Commercialization +76943,Defence,Defence +76595,Defence,Defence +109508,Defence,Defence +101294,Defence,Defence +97509,Defence,Defence +97505,Defence,Defence +76943,Government Procurement,Government Procurement +76595,Government Procurement,Government Procurement +101295,Government Procurement,Government Procurement +101294,Government Procurement,Government Procurement +97509,Government Procurement,Government Procurement +97505,Government Procurement,Government Procurement +423004,Employment and Training,Employment and Training +423003,Employment and Training,Employment and Training +449840,Employment and Training,Employment and Training +443321,Employment and Training,Employment and Training +443227,Employment and Training,Employment and Training +424536,Employment and Training,Employment and Training +423008,Employment and Training,Employment and Training +423007,Employment and Training,Employment and Training +423006,Employment and Training,Employment and Training +443227,Regional Development,Regional Development +443321,Small Business,Small Business +443227,Small Business,Small Business +169064,Small Business,Small Business +424536,Small Business,Small Business +423008,Small Business,Small Business +423007,Small Business,Small Business +423006,Small Business,Small Business +423005,Small Business,Small Business +423004,Small Business,Small Business +423003,Small Business,Small Business +157310,Health,Health +157309,Health,Health +110158,Health,Health +97444,Health,Health +162458,Health,Health +159790,Health,Health +159785,Health,Health +444228,Employment and Training,Employment and Training +407525,Employment and Training,Employment and Training +148093,Employment and Training,Employment and Training +147254,Employment and Training,Employment and Training +165707,Employment and Training,Employment and Training +400628,Employment and Training,Employment and Training +502815,Employment and Training,Employment and Training +471084,Employment and Training,Employment and Training +470543,Employment and Training,Employment and Training +469533,Employment and Training,Employment and Training +469532,Employment and Training,Employment and Training +469359,Employment and Training,Employment and Training +469358,Employment and Training,Employment and Training +469357,Employment and Training,Employment and Training +469356,Employment and Training,Employment and Training +469352,Employment and Training,Employment and Training +469351,Employment and Training,Employment and Training +469350,Employment and Training,Employment and Training +469349,Employment and Training,Employment and Training +469348,Employment and Training,Employment and Training +469347,Employment and Training,Employment and Training +463272,Employment and Training,Employment and Training +449635,Employment and Training,Employment and Training +449634,Employment and Training,Employment and Training +449633,Employment and Training,Employment and Training +449631,Employment and Training,Employment and Training +449627,Employment and Training,Employment and Training +449627,Government Procurement,Government Procurement +449626,Government Procurement,Government Procurement +148097,Government Procurement,Government Procurement +148093,Government Procurement,Government Procurement +205847,Government Procurement,Government Procurement +196595,Government Procurement,Government Procurement +196590,Government Procurement,Government Procurement +188604,Government Procurement,Government Procurement +188603,Government Procurement,Government Procurement +165707,Government Procurement,Government Procurement +160469,Government Procurement,Government Procurement +153937,Government Procurement,Government Procurement +402249,Government Procurement,Government Procurement +398483,Government Procurement,Government Procurement +211007,Government Procurement,Government Procurement +444228,Government Procurement,Government Procurement +439327,Government Procurement,Government Procurement +439318,Government Procurement,Government Procurement +439317,Government Procurement,Government Procurement +439313,Government Procurement,Government Procurement +439310,Government Procurement,Government Procurement +439309,Government Procurement,Government Procurement +439308,Government Procurement,Government Procurement +439307,Government Procurement,Government Procurement +439306,Government Procurement,Government Procurement +439303,Government Procurement,Government Procurement +439299,Government Procurement,Government Procurement +439295,Government Procurement,Government Procurement +439294,Government Procurement,Government Procurement +439292,Government Procurement,Government Procurement +439290,Government Procurement,Government Procurement +439057,Government Procurement,Government Procurement +439055,Government Procurement,Government Procurement +439053,Government Procurement,Government Procurement +439052,Government Procurement,Government Procurement +439051,Government Procurement,Government Procurement +439049,Government Procurement,Government Procurement +439046,Government Procurement,Government Procurement +439043,Government Procurement,Government Procurement +439040,Government Procurement,Government Procurement +439038,Government Procurement,Government Procurement +439035,Government Procurement,Government Procurement +439034,Government Procurement,Government Procurement +439032,Government Procurement,Government Procurement +439030,Government Procurement,Government Procurement +439028,Government Procurement,Government Procurement +439026,Government Procurement,Government Procurement +439023,Government Procurement,Government Procurement +439019,Government Procurement,Government Procurement +439017,Government Procurement,Government Procurement +439014,Government Procurement,Government Procurement +439010,Government Procurement,Government Procurement +412501,Government Procurement,Government Procurement +412500,Government Procurement,Government Procurement +412499,Government Procurement,Government Procurement +412492,Government Procurement,Government Procurement +412491,Government Procurement,Government Procurement +412490,Government Procurement,Government Procurement +412489,Government Procurement,Government Procurement +412488,Government Procurement,Government Procurement +412484,Government Procurement,Government Procurement +412474,Government Procurement,Government Procurement +412472,Government Procurement,Government Procurement +412470,Government Procurement,Government Procurement +412468,Government Procurement,Government Procurement +412467,Government Procurement,Government Procurement +412464,Government Procurement,Government Procurement +412463,Government Procurement,Government Procurement +412306,Government Procurement,Government Procurement +412304,Government Procurement,Government Procurement +412303,Government Procurement,Government Procurement +412301,Government Procurement,Government Procurement +412296,Government Procurement,Government Procurement +412293,Government Procurement,Government Procurement +412292,Government Procurement,Government Procurement +412013,Government Procurement,Government Procurement +412012,Government Procurement,Government Procurement +410821,Government Procurement,Government Procurement +410820,Government Procurement,Government Procurement +410819,Government Procurement,Government Procurement +410818,Government Procurement,Government Procurement +410788,Government Procurement,Government Procurement +410787,Government Procurement,Government Procurement +410786,Government Procurement,Government Procurement +494147,Government Procurement,Government Procurement +493559,Government Procurement,Government Procurement +493556,Government Procurement,Government Procurement +456473,Government Procurement,Government Procurement +449635,Government Procurement,Government Procurement +449634,Government Procurement,Government Procurement +449633,Government Procurement,Government Procurement +465215,Taxation and Finance,Taxation and Finance +465156,Taxation and Finance,Taxation and Finance +148097,Taxation and Finance,Taxation and Finance +148093,Taxation and Finance,Taxation and Finance +147254,Taxation and Finance,Taxation and Finance +307989,Taxation and Finance,Taxation and Finance +305971,Taxation and Finance,Taxation and Finance +305970,Taxation and Finance,Taxation and Finance +298429,Taxation and Finance,Taxation and Finance +288549,Taxation and Finance,Taxation and Finance +279734,Taxation and Finance,Taxation and Finance +276701,Taxation and Finance,Taxation and Finance +270609,Taxation and Finance,Taxation and Finance +246171,Taxation and Finance,Taxation and Finance +242353,Taxation and Finance,Taxation and Finance +228572,Taxation and Finance,Taxation and Finance +228571,Taxation and Finance,Taxation and Finance +228570,Taxation and Finance,Taxation and Finance +228569,Taxation and Finance,Taxation and Finance +224896,Taxation and Finance,Taxation and Finance +224892,Taxation and Finance,Taxation and Finance +224869,Taxation and Finance,Taxation and Finance +224868,Taxation and Finance,Taxation and Finance +211007,Taxation and Finance,Taxation and Finance +205847,Taxation and Finance,Taxation and Finance +196595,Taxation and Finance,Taxation and Finance +196592,Taxation and Finance,Taxation and Finance +196591,Taxation and Finance,Taxation and Finance +196590,Taxation and Finance,Taxation and Finance +196589,Taxation and Finance,Taxation and Finance +195585,Taxation and Finance,Taxation and Finance +195584,Taxation and Finance,Taxation and Finance +189968,Taxation and Finance,Taxation and Finance +188604,Taxation and Finance,Taxation and Finance +188603,Taxation and Finance,Taxation and Finance +188130,Taxation and Finance,Taxation and Finance +188129,Taxation and Finance,Taxation and Finance +171245,Taxation and Finance,Taxation and Finance +164162,Fisheries,Fisheries +207469,Industry,Industry +286611,Taxation and Finance,Taxation and Finance +87332,Financial Institutions,Financial Institutions +406869,Industry,Industry +406878,Small Business,Small Business +422976,Taxation and Finance,Taxation and Finance +119554,Industry,Industry +445455,Infrastructure,Infrastructure +517669,Internal Trade,Internal Trade +78595,Other,Canada Border Services Agency +493294,Environment,Environment +258975,Fisheries,Fisheries +422842,International Trade,International Trade +390960,Small Business,Small Business +352708,Taxation and Finance,Taxation and Finance +111494,Agriculture,Agriculture +297169,Employment and Training,Employment and Training +213607,Immigration,Immigration +173725,Taxation and Finance,Taxation and Finance +212235,Agriculture,Agriculture +435694,Constitutional Issues,Constitutional Issues +464828,Consumer Issues,Consumer Issues +429485,Employment and Training,Employment and Training +338622,Financial Institutions,Financial Institutions +535484,Industry,Industry +408194,Infrastructure,Infrastructure +325045,Internal Trade,Internal Trade +202231,International Relations,International Relations +432339,International Trade,International Trade +515915,Justice and Law Enforcement,Justice and Law Enforcement +407443,Labour,Labour +502338,Small Business,Small Business +522972,Taxation and Finance,Taxation and Finance +158677,Education,Education +158677,Health,Health +90172,Constitutional Issues,Constitutional Issues +80546,Consumer Issues,Consumer Issues +444941,Education,Education +444941,Employment and Training,Employment and Training +540838,Environment,Environment +347126,Financial Institutions,Financial Institutions +435100,Government Procurement,Government Procurement +513703,Health,Health +444941,Immigration,Immigration +519438,Industry,Industry +516515,Infrastructure,Infrastructure +504182,Intellectual Property,Intellectual Property +470349,Internal Trade,Internal Trade +108819,International Relations,International Relations +389243,International Trade,International Trade +150242,Justice and Law Enforcement,Justice and Law Enforcement +454898,Labour,Labour +435090,Regional Development,Regional Development +454899,Small Business,Small Business +188866,Taxation and Finance,Taxation and Finance +470374,Tourism,Tourism +285020,Government Procurement,Government Procurement +324462,Internal Trade,Internal Trade +400414,International Relations,International Relations +428358,International Trade,International Trade +536807,Justice and Law Enforcement,Justice and Law Enforcement +335365,Small Business,Small Business +522333,Taxation and Finance,Taxation and Finance +457547,International Trade,International Trade +457544,Industry,Industry +457547,Intellectual Property,Intellectual Property +155210,Education,Education +134134,Intellectual Property,Intellectual Property +539847,Agriculture,Agriculture +524015,Energy,Energy +539847,Environment,Environment +114774,International Trade,International Trade +524015,Taxation and Finance,Taxation and Finance +356497,Education,Education +356497,Government Procurement,Government Procurement +356497,Health,Health +135037,Environment,Environment +163700,Industry,Industry +168128,Defence,Defence +379762,Government Procurement,Government Procurement +212094,International Trade,International Trade +88377,Education,Education +88377,Infrastructure,Infrastructure +429804,Energy,Energy +429804,International Trade,International Trade +185164,Consumer Issues,Consumer Issues +177206,Environment,Environment +166933,Fisheries,Fisheries +177227,Health,Health +190413,Industry,Industry +177226,Infrastructure,Infrastructure +77294,Health,Health +241959,Employment and Training,Employment and Training +463453,Energy,Energy +441813,Environment,Environment +475433,Government Procurement,Government Procurement +303003,Immigration,Immigration +445093,Industry,Industry +405734,Infrastructure,Infrastructure +476510,Internal Trade,Internal Trade +476489,International Relations,International Relations +445098,International Trade,International Trade +160637,Labour,Labour +174225,Mining,Mining +446795,Regional Development,Regional Development +335014,Taxation and Finance,Taxation and Finance +257131,Transportation,Transportation +75654,Infrastructure,Infrastructure +75654,Regional Development,Regional Development +75654,Transportation,Transportation +158790,Consumer Issues,Consumer Issues +158790,International Trade,International Trade +157669,Energy,Energy +157669,Environment,Environment +95254,International Relations,International Relations +111803,Health,Health +165941,Government Procurement,Government Procurement +425549,Health,Health +425549,Sports,Sports +115154,Industry,Industry +115154,Labour,Labour +113782,Government Procurement,Government Procurement +113780,Industry,Industry +165345,Taxation and Finance,Taxation and Finance +335574,Health,Health +153902,International Trade,International Trade +395822,Regional Development,Regional Development +140417,Other,Child Rights +372896,Health,Health +499952,Intellectual Property,Intellectual Property +269339,Employment and Training,Employment and Training +454598,Energy,Energy +402319,Environment,Environment +407624,Fisheries,Fisheries +477422,Health,Health +393448,Industry,Industry +398875,Infrastructure,Infrastructure +444922,Internal Trade,Internal Trade +398875,International Trade,International Trade +353783,Labour,Labour +393448,Regional Development,Regional Development +539562,Taxation and Finance,Taxation and Finance +469233,Transportation,Transportation +145986,Other,Security +447716,Defence,Defence +468253,Education,Education +487721,Employment and Training,Employment and Training +392750,Energy,Energy +490269,Environment,Environment +467392,Health,Health +504244,Immigration,Immigration +406793,Infrastructure,Infrastructure +459554,Regional Development,Regional Development +510440,Taxation and Finance,Taxation and Finance +88135,Other,Research and Innovation +125164,Other,Commercialization +76944,Defence,Defence +76944,Government Procurement,Government Procurement +89395,Agriculture,Agriculture +423005,Employment and Training,Employment and Training +443321,Regional Development,Regional Development +449840,Small Business,Small Business +159776,Health,Health +172410,Taxation and Finance,Taxation and Finance +449626,Employment and Training,Employment and Training +449631,Government Procurement,Government Procurement +476152,Taxation and Finance,Taxation and Finance +185224,International Trade,International Trade +185164,Justice and Law Enforcement,Justice and Law Enforcement +517845,Defence,Defence +149920,Energy,Energy +385344,Government Procurement,Government Procurement +543638,Industry,Industry +258969,Intellectual Property,Intellectual Property +321702,International Trade,International Trade +104975,Environment,Environment +104977,Tourism,Tourism +93615,Infrastructure,Infrastructure +93615,Transportation,Transportation +165707,Taxation and Finance,Taxation and Finance +157100,Taxation and Finance,Taxation and Finance +375179,Taxation and Finance,Taxation and Finance +375178,Taxation and Finance,Taxation and Finance +375176,Taxation and Finance,Taxation and Finance +375175,Taxation and Finance,Taxation and Finance +375174,Taxation and Finance,Taxation and Finance +373157,Taxation and Finance,Taxation and Finance +372446,Taxation and Finance,Taxation and Finance +372442,Taxation and Finance,Taxation and Finance +372441,Taxation and Finance,Taxation and Finance +367623,Taxation and Finance,Taxation and Finance +355470,Taxation and Finance,Taxation and Finance +355469,Taxation and Finance,Taxation and Finance +355468,Taxation and Finance,Taxation and Finance +355466,Taxation and Finance,Taxation and Finance +355465,Taxation and Finance,Taxation and Finance +355463,Taxation and Finance,Taxation and Finance +355461,Taxation and Finance,Taxation and Finance +355460,Taxation and Finance,Taxation and Finance +355458,Taxation and Finance,Taxation and Finance +355457,Taxation and Finance,Taxation and Finance +355456,Taxation and Finance,Taxation and Finance +355455,Taxation and Finance,Taxation and Finance +355454,Taxation and Finance,Taxation and Finance +355453,Taxation and Finance,Taxation and Finance +355452,Taxation and Finance,Taxation and Finance +355450,Taxation and Finance,Taxation and Finance +355449,Taxation and Finance,Taxation and Finance +355447,Taxation and Finance,Taxation and Finance +355445,Taxation and Finance,Taxation and Finance +355443,Taxation and Finance,Taxation and Finance +355441,Taxation and Finance,Taxation and Finance +355440,Taxation and Finance,Taxation and Finance +355438,Taxation and Finance,Taxation and Finance +355436,Taxation and Finance,Taxation and Finance +355435,Taxation and Finance,Taxation and Finance +355433,Taxation and Finance,Taxation and Finance +355432,Taxation and Finance,Taxation and Finance +353947,Taxation and Finance,Taxation and Finance +352180,Taxation and Finance,Taxation and Finance +349857,Taxation and Finance,Taxation and Finance +340029,Taxation and Finance,Taxation and Finance +339982,Taxation and Finance,Taxation and Finance +337370,Taxation and Finance,Taxation and Finance +337369,Taxation and Finance,Taxation and Finance +337296,Taxation and Finance,Taxation and Finance +337295,Taxation and Finance,Taxation and Finance +336609,Taxation and Finance,Taxation and Finance +319972,Taxation and Finance,Taxation and Finance +448671,Taxation and Finance,Taxation and Finance +446185,Taxation and Finance,Taxation and Finance +442639,Taxation and Finance,Taxation and Finance +442637,Taxation and Finance,Taxation and Finance +442635,Taxation and Finance,Taxation and Finance +442634,Taxation and Finance,Taxation and Finance +442632,Taxation and Finance,Taxation and Finance +439327,Taxation and Finance,Taxation and Finance +439318,Taxation and Finance,Taxation and Finance +439317,Taxation and Finance,Taxation and Finance +439315,Taxation and Finance,Taxation and Finance +439313,Taxation and Finance,Taxation and Finance +439312,Taxation and Finance,Taxation and Finance +439311,Taxation and Finance,Taxation and Finance +439310,Taxation and Finance,Taxation and Finance +439309,Taxation and Finance,Taxation and Finance +439308,Taxation and Finance,Taxation and Finance +439307,Taxation and Finance,Taxation and Finance +439306,Taxation and Finance,Taxation and Finance +439303,Taxation and Finance,Taxation and Finance +439301,Taxation and Finance,Taxation and Finance +439299,Taxation and Finance,Taxation and Finance +439295,Taxation and Finance,Taxation and Finance +439294,Taxation and Finance,Taxation and Finance +439292,Taxation and Finance,Taxation and Finance +439290,Taxation and Finance,Taxation and Finance +439057,Taxation and Finance,Taxation and Finance +439055,Taxation and Finance,Taxation and Finance +439053,Taxation and Finance,Taxation and Finance +439052,Taxation and Finance,Taxation and Finance +439051,Taxation and Finance,Taxation and Finance +439049,Taxation and Finance,Taxation and Finance +439046,Taxation and Finance,Taxation and Finance +439043,Taxation and Finance,Taxation and Finance +439040,Taxation and Finance,Taxation and Finance +439038,Taxation and Finance,Taxation and Finance +439035,Taxation and Finance,Taxation and Finance +439034,Taxation and Finance,Taxation and Finance +439032,Taxation and Finance,Taxation and Finance +439030,Taxation and Finance,Taxation and Finance +439028,Taxation and Finance,Taxation and Finance +439026,Taxation and Finance,Taxation and Finance +439023,Taxation and Finance,Taxation and Finance +439019,Taxation and Finance,Taxation and Finance +439017,Taxation and Finance,Taxation and Finance +439014,Taxation and Finance,Taxation and Finance +439010,Taxation and Finance,Taxation and Finance +439001,Taxation and Finance,Taxation and Finance +438997,Taxation and Finance,Taxation and Finance +425597,Taxation and Finance,Taxation and Finance +425399,Taxation and Finance,Taxation and Finance +424896,Taxation and Finance,Taxation and Finance +424272,Taxation and Finance,Taxation and Finance +424271,Taxation and Finance,Taxation and Finance +420665,Taxation and Finance,Taxation and Finance +418793,Taxation and Finance,Taxation and Finance +418691,Taxation and Finance,Taxation and Finance +418690,Taxation and Finance,Taxation and Finance +418452,Taxation and Finance,Taxation and Finance +412501,Taxation and Finance,Taxation and Finance +412500,Taxation and Finance,Taxation and Finance +412499,Taxation and Finance,Taxation and Finance +412498,Taxation and Finance,Taxation and Finance +412492,Taxation and Finance,Taxation and Finance +412491,Taxation and Finance,Taxation and Finance +412490,Taxation and Finance,Taxation and Finance +412489,Taxation and Finance,Taxation and Finance +412488,Taxation and Finance,Taxation and Finance +412486,Taxation and Finance,Taxation and Finance +412484,Taxation and Finance,Taxation and Finance +412481,Taxation and Finance,Taxation and Finance +412476,Taxation and Finance,Taxation and Finance +412474,Taxation and Finance,Taxation and Finance +412472,Taxation and Finance,Taxation and Finance +412470,Taxation and Finance,Taxation and Finance +412468,Taxation and Finance,Taxation and Finance +412467,Taxation and Finance,Taxation and Finance +412466,Taxation and Finance,Taxation and Finance +412464,Taxation and Finance,Taxation and Finance +412463,Taxation and Finance,Taxation and Finance +412316,Taxation and Finance,Taxation and Finance +412315,Taxation and Finance,Taxation and Finance +412311,Taxation and Finance,Taxation and Finance +412306,Taxation and Finance,Taxation and Finance +412305,Taxation and Finance,Taxation and Finance +412304,Taxation and Finance,Taxation and Finance +412303,Taxation and Finance,Taxation and Finance +412301,Taxation and Finance,Taxation and Finance +412296,Taxation and Finance,Taxation and Finance +412293,Taxation and Finance,Taxation and Finance +412292,Taxation and Finance,Taxation and Finance +412291,Taxation and Finance,Taxation and Finance +412287,Taxation and Finance,Taxation and Finance +412016,Taxation and Finance,Taxation and Finance +412015,Taxation and Finance,Taxation and Finance +412014,Taxation and Finance,Taxation and Finance +412013,Taxation and Finance,Taxation and Finance +412012,Taxation and Finance,Taxation and Finance +410821,Taxation and Finance,Taxation and Finance +410820,Taxation and Finance,Taxation and Finance +410819,Taxation and Finance,Taxation and Finance +410818,Taxation and Finance,Taxation and Finance +410817,Taxation and Finance,Taxation and Finance +410816,Taxation and Finance,Taxation and Finance +410790,Taxation and Finance,Taxation and Finance +410789,Taxation and Finance,Taxation and Finance +410788,Taxation and Finance,Taxation and Finance +410787,Taxation and Finance,Taxation and Finance +410786,Taxation and Finance,Taxation and Finance +408325,Taxation and Finance,Taxation and Finance +407743,Taxation and Finance,Taxation and Finance +401741,Taxation and Finance,Taxation and Finance +401740,Taxation and Finance,Taxation and Finance +401185,Taxation and Finance,Taxation and Finance +400636,Taxation and Finance,Taxation and Finance +400619,Taxation and Finance,Taxation and Finance +398482,Taxation and Finance,Taxation and Finance +388060,Taxation and Finance,Taxation and Finance +388012,Taxation and Finance,Taxation and Finance +388009,Taxation and Finance,Taxation and Finance +388006,Taxation and Finance,Taxation and Finance +388005,Taxation and Finance,Taxation and Finance +387991,Taxation and Finance,Taxation and Finance +387989,Taxation and Finance,Taxation and Finance +387988,Taxation and Finance,Taxation and Finance +387987,Taxation and Finance,Taxation and Finance +387986,Taxation and Finance,Taxation and Finance +387984,Taxation and Finance,Taxation and Finance +387983,Taxation and Finance,Taxation and Finance +387981,Taxation and Finance,Taxation and Finance +382844,Taxation and Finance,Taxation and Finance +381442,Taxation and Finance,Taxation and Finance +529823,Taxation and Finance,Taxation and Finance +529820,Taxation and Finance,Taxation and Finance +529819,Taxation and Finance,Taxation and Finance +529818,Taxation and Finance,Taxation and Finance +529814,Taxation and Finance,Taxation and Finance +506570,Taxation and Finance,Taxation and Finance +506568,Taxation and Finance,Taxation and Finance +506567,Taxation and Finance,Taxation and Finance +506566,Taxation and Finance,Taxation and Finance +506565,Taxation and Finance,Taxation and Finance +506564,Taxation and Finance,Taxation and Finance +503661,Taxation and Finance,Taxation and Finance +503660,Taxation and Finance,Taxation and Finance +503659,Taxation and Finance,Taxation and Finance +503658,Taxation and Finance,Taxation and Finance +503657,Taxation and Finance,Taxation and Finance +503656,Taxation and Finance,Taxation and Finance +503655,Taxation and Finance,Taxation and Finance +503654,Taxation and Finance,Taxation and Finance +503651,Taxation and Finance,Taxation and Finance +496706,Taxation and Finance,Taxation and Finance +496703,Taxation and Finance,Taxation and Finance +496702,Taxation and Finance,Taxation and Finance +492640,Taxation and Finance,Taxation and Finance +492623,Taxation and Finance,Taxation and Finance +489350,Taxation and Finance,Taxation and Finance +488865,Taxation and Finance,Taxation and Finance +488863,Taxation and Finance,Taxation and Finance +488028,Taxation and Finance,Taxation and Finance +486675,Taxation and Finance,Taxation and Finance +485628,Taxation and Finance,Taxation and Finance +484204,Taxation and Finance,Taxation and Finance +484203,Taxation and Finance,Taxation and Finance +484201,Taxation and Finance,Taxation and Finance +483282,Taxation and Finance,Taxation and Finance +482798,Taxation and Finance,Taxation and Finance +478489,Taxation and Finance,Taxation and Finance +185204,International Trade,International Trade +185184,International Trade,International Trade +177228,International Trade,International Trade +177206,International Trade,International Trade +173440,International Trade,International Trade +185373,International Trade,International Trade +185144,Justice and Law Enforcement,Justice and Law Enforcement +173435,Justice and Law Enforcement,Justice and Law Enforcement +185374,Justice and Law Enforcement,Justice and Law Enforcement +185373,Justice and Law Enforcement,Justice and Law Enforcement +185224,Justice and Law Enforcement,Justice and Law Enforcement +462495,Defence,Defence +458699,Defence,Defence +160030,Defence,Defence +160029,Defence,Defence +158769,Defence,Defence +195804,Defence,Defence +193325,Defence,Defence +188139,Defence,Defence +319197,Defence,Defence +282610,Defence,Defence +240751,Defence,Defence +216200,Defence,Defence +205347,Defence,Defence +384989,Government Procurement,Government Procurement +383266,Government Procurement,Government Procurement +160030,Government Procurement,Government Procurement +160029,Government Procurement,Government Procurement +158769,Government Procurement,Government Procurement +156838,Government Procurement,Government Procurement +210314,Government Procurement,Government Procurement +210307,Government Procurement,Government Procurement +205347,Government Procurement,Government Procurement +383265,Government Procurement,Government Procurement +382585,Government Procurement,Government Procurement +380292,Government Procurement,Government Procurement +380291,Government Procurement,Government Procurement +375452,Government Procurement,Government Procurement +375448,Government Procurement,Government Procurement +373891,Government Procurement,Government Procurement +365092,Government Procurement,Government Procurement +365091,Government Procurement,Government Procurement +362023,Government Procurement,Government Procurement +357661,Government Procurement,Government Procurement +357660,Government Procurement,Government Procurement +357596,Government Procurement,Government Procurement +356398,Government Procurement,Government Procurement +356395,Government Procurement,Government Procurement +356392,Government Procurement,Government Procurement +356383,Government Procurement,Government Procurement +356379,Government Procurement,Government Procurement +356378,Government Procurement,Government Procurement +351064,Government Procurement,Government Procurement +351063,Government Procurement,Government Procurement +351062,Government Procurement,Government Procurement +349152,Government Procurement,Government Procurement +347299,Government Procurement,Government Procurement +347100,Government Procurement,Government Procurement +338672,Government Procurement,Government Procurement +335782,Government Procurement,Government Procurement +335779,Government Procurement,Government Procurement +333207,Government Procurement,Government Procurement +333206,Government Procurement,Government Procurement +327861,Government Procurement,Government Procurement +327860,Government Procurement,Government Procurement +321701,Government Procurement,Government Procurement +321700,Government Procurement,Government Procurement +321698,Government Procurement,Government Procurement +321697,Government Procurement,Government Procurement +321696,Government Procurement,Government Procurement +319199,Government Procurement,Government Procurement +319197,Government Procurement,Government Procurement +319195,Government Procurement,Government Procurement +319181,Government Procurement,Government Procurement +319166,Government Procurement,Government Procurement +315737,Government Procurement,Government Procurement +309841,Government Procurement,Government Procurement +309837,Government Procurement,Government Procurement +309829,Government Procurement,Government Procurement +301114,Government Procurement,Government Procurement +301111,Government Procurement,Government Procurement +296742,Government Procurement,Government Procurement +286089,Government Procurement,Government Procurement +282649,Government Procurement,Government Procurement +282610,Government Procurement,Government Procurement +282589,Government Procurement,Government Procurement +277340,Government Procurement,Government Procurement +277337,Government Procurement,Government Procurement +273609,Government Procurement,Government Procurement +269770,Government Procurement,Government Procurement +266593,Government Procurement,Government Procurement +263871,Government Procurement,Government Procurement +263630,Government Procurement,Government Procurement +259012,Government Procurement,Government Procurement +259009,Government Procurement,Government Procurement +258979,Government Procurement,Government Procurement +258977,Government Procurement,Government Procurement +258972,Government Procurement,Government Procurement +258971,Government Procurement,Government Procurement +258969,Government Procurement,Government Procurement +258951,Government Procurement,Government Procurement +252876,Government Procurement,Government Procurement +252871,Government Procurement,Government Procurement +246550,Government Procurement,Government Procurement +246549,Government Procurement,Government Procurement +233536,Government Procurement,Government Procurement +233500,Government Procurement,Government Procurement +233499,Government Procurement,Government Procurement +233491,Government Procurement,Government Procurement +233062,Government Procurement,Government Procurement +233061,Government Procurement,Government Procurement +233060,Government Procurement,Government Procurement +233059,Government Procurement,Government Procurement +233058,Government Procurement,Government Procurement +233057,Government Procurement,Government Procurement +227789,Government Procurement,Government Procurement +223555,Government Procurement,Government Procurement +216214,Government Procurement,Government Procurement +216212,Government Procurement,Government Procurement +216200,Government Procurement,Government Procurement +543638,Government Procurement,Government Procurement +536189,Government Procurement,Government Procurement +462495,Government Procurement,Government Procurement +454703,Government Procurement,Government Procurement +449987,Government Procurement,Government Procurement +441791,Government Procurement,Government Procurement +441790,Government Procurement,Government Procurement +432429,Government Procurement,Government Procurement +429730,Government Procurement,Government Procurement +429728,Government Procurement,Government Procurement +429726,Government Procurement,Government Procurement +425419,Government Procurement,Government Procurement +415302,Government Procurement,Government Procurement +412634,Government Procurement,Government Procurement +412610,Government Procurement,Government Procurement +412602,Government Procurement,Government Procurement +405176,Government Procurement,Government Procurement +405023,Government Procurement,Government Procurement +404996,Government Procurement,Government Procurement +404995,Government Procurement,Government Procurement +403371,Government Procurement,Government Procurement +400758,Government Procurement,Government Procurement +398469,Government Procurement,Government Procurement +397675,Government Procurement,Government Procurement +397672,Government Procurement,Government Procurement +394306,Government Procurement,Government Procurement +393588,Government Procurement,Government Procurement +392628,Government Procurement,Government Procurement +392625,Government Procurement,Government Procurement +391148,Government Procurement,Government Procurement +389644,Government Procurement,Government Procurement +389563,Government Procurement,Government Procurement +389561,Government Procurement,Government Procurement +389558,Government Procurement,Government Procurement +389554,Government Procurement,Government Procurement +389553,Government Procurement,Government Procurement +388821,Government Procurement,Government Procurement +387438,Government Procurement,Government Procurement +387437,Government Procurement,Government Procurement +385369,Government Procurement,Government Procurement +385360,Government Procurement,Government Procurement +385357,Government Procurement,Government Procurement +385350,Government Procurement,Government Procurement +385348,Government Procurement,Government Procurement +536189,Industry,Industry +519195,Industry,Industry +233061,Industry,Industry +233060,Industry,Industry +233059,Industry,Industry +233058,Industry,Industry +233057,Industry,Industry +223555,Industry,Industry +210367,Industry,Industry +210314,Industry,Industry +210308,Industry,Industry +199887,Industry,Industry +195804,Industry,Industry +193325,Industry,Industry +188139,Industry,Industry +170025,Industry,Industry +160084,Industry,Industry +158768,Industry,Industry +351063,Industry,Industry +351062,Industry,Industry +349193,Industry,Industry +349152,Industry,Industry +347299,Industry,Industry +347117,Industry,Industry +335799,Industry,Industry +335782,Industry,Industry +335779,Industry,Industry +321701,Industry,Industry +321699,Industry,Industry +321698,Industry,Industry +316712,Industry,Industry +309841,Industry,Industry +301111,Industry,Industry +296742,Industry,Industry +286089,Industry,Industry +277342,Industry,Industry +263873,Industry,Industry +263872,Industry,Industry +263871,Industry,Industry +258972,Industry,Industry +258971,Industry,Industry +252929,Industry,Industry +252876,Industry,Industry +252871,Industry,Industry +246550,Industry,Industry +246549,Industry,Industry +233500,Industry,Industry +233062,Industry,Industry +429736,Industry,Industry +429735,Industry,Industry +425419,Industry,Industry +415891,Industry,Industry +415302,Industry,Industry +415301,Industry,Industry +407405,Industry,Industry +405176,Industry,Industry +398469,Industry,Industry +397674,Industry,Industry +394320,Industry,Industry +394317,Industry,Industry +394314,Industry,Industry +391148,Industry,Industry +389644,Industry,Industry +389552,Industry,Industry +387438,Industry,Industry +387437,Industry,Industry +385341,Industry,Industry +384989,Industry,Industry +380292,Industry,Industry +380290,Industry,Industry +373891,Industry,Industry +369029,Industry,Industry +365092,Industry,Industry +362024,Industry,Industry +362023,Industry,Industry +356398,Industry,Industry +356395,Industry,Industry +356392,Industry,Industry +356385,Industry,Industry +356383,Industry,Industry +356378,Industry,Industry +258951,Intellectual Property,Intellectual Property +351064,Intellectual Property,Intellectual Property +296742,Intellectual Property,Intellectual Property +277342,Intellectual Property,Intellectual Property +269770,Intellectual Property,Intellectual Property +263630,Intellectual Property,Intellectual Property +259012,Intellectual Property,Intellectual Property +259009,Intellectual Property,Intellectual Property +258979,Intellectual Property,Intellectual Property +258977,Intellectual Property,Intellectual Property +321671,International Trade,International Trade +104975,Tourism,Tourism +93595,Infrastructure,Infrastructure +93617,Infrastructure,Infrastructure +93595,Transportation,Transportation +168654,Transportation,Transportation +104954,Transportation,Transportation +93617,Transportation,Transportation +540440,Transportation,Transportation +537648,Transportation,Transportation +119498,Transportation,Transportation +91495,Transportation,Transportation +91494,Transportation,Transportation +306049,Transportation,Transportation +221308,Transportation,Transportation +372986,Transportation,Transportation +370515,Transportation,Transportation +363862,Transportation,Transportation +348337,Transportation,Transportation +394901,Transportation,Transportation +392042,Transportation,Transportation +386454,Transportation,Transportation +384698,Transportation,Transportation +383318,Transportation,Transportation +382794,Transportation,Transportation +195510,Environment,Environment +181364,Environment,Environment +76942,Environment,Environment +212587,Labour,Labour +212586,Labour,Labour +212589,Labour,Labour +152939,Consumer Issues,Consumer Issues +152939,Energy,Energy +152939,Industry,Industry +77455,Agriculture,Agriculture +437125,Agriculture,Agriculture +437120,Agriculture,Agriculture +421825,Agriculture,Agriculture +419461,Agriculture,Agriculture +409800,Agriculture,Agriculture +398184,Agriculture,Agriculture +433189,Industry,Industry +432792,Industry,Industry +475056,Industry,Industry +459886,Industry,Industry +398184,International Trade,International Trade +395847,International Trade,International Trade +468410,International Trade,International Trade +441013,International Trade,International Trade +437731,International Trade,International Trade +437125,International Trade,International Trade +437121,International Trade,International Trade +437120,International Trade,International Trade +433190,International Trade,International Trade +425613,International Trade,International Trade +421825,International Trade,International Trade +419461,International Trade,International Trade +415347,International Trade,International Trade +409800,International Trade,International Trade +404856,International Trade,International Trade +427007,Environment,Environment +427004,Environment,Environment +169338,Environment,Environment +169336,Environment,Environment +169335,Environment,Environment +243729,Environment,Environment +449105,Environment,Environment +439813,Environment,Environment +439812,Environment,Environment +439811,Environment,Environment +439810,Environment,Environment +427010,Environment,Environment +427007,Fisheries,Fisheries +427004,Fisheries,Fisheries +169338,Fisheries,Fisheries +169336,Fisheries,Fisheries +169335,Fisheries,Fisheries +411650,Fisheries,Fisheries +449105,Fisheries,Fisheries +439813,Fisheries,Fisheries +439812,Fisheries,Fisheries +439811,Fisheries,Fisheries +439809,Fisheries,Fisheries +427010,Fisheries,Fisheries +169336,International Trade,International Trade +169335,International Trade,International Trade +468889,Consumer Issues,Consumer Issues +536860,Energy,Energy +536858,Energy,Energy +157104,Energy,Energy +157077,Energy,Energy +148438,Energy,Energy +132851,Energy,Energy +132835,Energy,Energy +534335,Energy,Energy +531191,Energy,Energy +531189,Energy,Energy +528997,Energy,Energy +528995,Energy,Energy +528992,Energy,Energy +528986,Energy,Energy +527684,Energy,Energy +527683,Energy,Energy +527682,Energy,Energy +522531,Energy,Energy +522529,Energy,Energy +519588,Energy,Energy +516794,Energy,Energy +514665,Energy,Energy +510407,Energy,Energy +502553,Energy,Energy +502551,Energy,Energy +493267,Energy,Energy +493226,Energy,Energy +490759,Energy,Energy +490752,Energy,Energy +480416,Energy,Energy +478390,Energy,Energy +475734,Energy,Energy +473077,Energy,Energy +468924,Energy,Energy +447243,Energy,Energy +537103,Energy,Energy +537102,Energy,Energy +537101,Energy,Energy +537100,Energy,Energy +537099,Energy,Energy +537097,Energy,Energy +537094,Energy,Energy +537092,Energy,Energy +499583,Environment,Environment +499579,Environment,Environment +88052,Environment,Environment +162395,Environment,Environment +162392,Environment,Environment +162377,Environment,Environment +162357,Environment,Environment +162349,Environment,Environment +162343,Environment,Environment +162335,Environment,Environment +162270,Environment,Environment +162268,Environment,Environment +159748,Environment,Environment +159747,Environment,Environment +157104,Environment,Environment +157077,Environment,Environment +157076,Environment,Environment +151701,Environment,Environment +148438,Environment,Environment +117874,Environment,Environment +341000,Environment,Environment +340999,Environment,Environment +340985,Environment,Environment +340983,Environment,Environment +340979,Environment,Environment +340975,Environment,Environment +340972,Environment,Environment +340878,Environment,Environment +340877,Environment,Environment +338323,Environment,Environment +338322,Environment,Environment +338321,Environment,Environment +338320,Environment,Environment +338318,Environment,Environment +338312,Environment,Environment +338310,Environment,Environment +338307,Environment,Environment +333033,Environment,Environment +333031,Environment,Environment +330150,Environment,Environment +327300,Environment,Environment +327299,Environment,Environment +322260,Environment,Environment +254409,Environment,Environment +250347,Environment,Environment +223286,Environment,Environment +223279,Environment,Environment +217130,Environment,Environment +212354,Environment,Environment +212353,Environment,Environment +212147,Environment,Environment +207467,Environment,Environment +205147,Environment,Environment +202846,Environment,Environment +199773,Environment,Environment +199769,Environment,Environment +193686,Environment,Environment +193682,Environment,Environment +189589,Environment,Environment +176708,Environment,Environment +175323,Environment,Environment +175322,Environment,Environment +175321,Environment,Environment +175250,Environment,Environment +170660,Environment,Environment +170659,Environment,Environment +165868,Environment,Environment +163750,Environment,Environment +407961,Environment,Environment +407960,Environment,Environment +405254,Environment,Environment +405251,Environment,Environment +405250,Environment,Environment +405248,Environment,Environment +405247,Environment,Environment +405245,Environment,Environment +405244,Environment,Environment +405242,Environment,Environment +405237,Environment,Environment +405236,Environment,Environment +403945,Environment,Environment +403804,Environment,Environment +403801,Environment,Environment +403794,Environment,Environment +403793,Environment,Environment +403791,Environment,Environment +403787,Environment,Environment +403690,Environment,Environment +403688,Environment,Environment +403678,Environment,Environment +403674,Environment,Environment +401150,Environment,Environment +401148,Environment,Environment +401139,Environment,Environment +401138,Environment,Environment +401136,Environment,Environment +401134,Environment,Environment +401133,Environment,Environment +401132,Environment,Environment +401131,Environment,Environment +398901,Environment,Environment +398900,Environment,Environment +398899,Environment,Environment +398898,Environment,Environment +398895,Environment,Environment +398870,Environment,Environment +398868,Environment,Environment +397260,Environment,Environment +397259,Environment,Environment +397258,Environment,Environment +397257,Environment,Environment +394666,Environment,Environment +394664,Environment,Environment +394661,Environment,Environment +394660,Environment,Environment +390868,Environment,Environment +390863,Environment,Environment +390859,Environment,Environment +390854,Environment,Environment +390847,Environment,Environment +390843,Environment,Environment +390841,Environment,Environment +390838,Environment,Environment +390837,Environment,Environment +390831,Environment,Environment +390828,Environment,Environment +390825,Environment,Environment +390822,Environment,Environment +390814,Environment,Environment +390811,Environment,Environment +390709,Environment,Environment +384555,Environment,Environment +384509,Environment,Environment +384508,Environment,Environment +384503,Environment,Environment +383769,Environment,Environment +383767,Environment,Environment +383765,Environment,Environment +382505,Environment,Environment +381346,Environment,Environment +379953,Environment,Environment +376561,Environment,Environment +376555,Environment,Environment +376554,Environment,Environment +376552,Environment,Environment +376546,Environment,Environment +376544,Environment,Environment +374513,Environment,Environment +372755,Environment,Environment +372752,Environment,Environment +369515,Environment,Environment +357918,Environment,Environment +353843,Environment,Environment +347725,Environment,Environment +343976,Environment,Environment +341006,Environment,Environment +341005,Environment,Environment +341004,Environment,Environment +341003,Environment,Environment +341001,Environment,Environment +499576,Environment,Environment +499574,Environment,Environment +496405,Environment,Environment +496404,Environment,Environment +496403,Environment,Environment +496400,Environment,Environment +493267,Environment,Environment +493226,Environment,Environment +493223,Environment,Environment +492029,Environment,Environment +490783,Environment,Environment +490782,Environment,Environment +490779,Environment,Environment +490768,Environment,Environment +490759,Environment,Environment +490746,Environment,Environment +488469,Environment,Environment +488468,Environment,Environment +488467,Environment,Environment +488465,Environment,Environment +488464,Environment,Environment +485778,Environment,Environment +485777,Environment,Environment +485776,Environment,Environment +485775,Environment,Environment +485771,Environment,Environment +481355,Environment,Environment +480428,Environment,Environment +480426,Environment,Environment +480425,Environment,Environment +480424,Environment,Environment +480422,Environment,Environment +480421,Environment,Environment +480419,Environment,Environment +480418,Environment,Environment +480416,Environment,Environment +480406,Environment,Environment +478390,Environment,Environment +478389,Environment,Environment +478386,Environment,Environment +478385,Environment,Environment +478384,Environment,Environment +478380,Environment,Environment +478219,Environment,Environment +475736,Environment,Environment +475734,Environment,Environment +475729,Environment,Environment +473077,Environment,Environment +473076,Environment,Environment +471109,Environment,Environment +471106,Environment,Environment +471102,Environment,Environment +471099,Environment,Environment +471096,Environment,Environment +471076,Environment,Environment +468924,Environment,Environment +468910,Environment,Environment +468907,Environment,Environment +468903,Environment,Environment +468889,Environment,Environment +468887,Environment,Environment +468883,Environment,Environment +468877,Environment,Environment +468876,Environment,Environment +468875,Environment,Environment +464256,Environment,Environment +464250,Environment,Environment +464248,Environment,Environment +462485,Environment,Environment +462484,Environment,Environment +462483,Environment,Environment +462482,Environment,Environment +462481,Environment,Environment +461520,Environment,Environment +461518,Environment,Environment +461516,Environment,Environment +461511,Environment,Environment +461509,Environment,Environment +458410,Environment,Environment +458409,Environment,Environment +457103,Environment,Environment +457102,Environment,Environment +457101,Environment,Environment +457087,Environment,Environment +457073,Environment,Environment +456626,Environment,Environment +456625,Environment,Environment +456624,Environment,Environment +456623,Environment,Environment +456622,Environment,Environment +456621,Environment,Environment +456620,Environment,Environment +455016,Environment,Environment +455012,Environment,Environment +455010,Environment,Environment +451435,Environment,Environment +451434,Environment,Environment +451350,Environment,Environment +451349,Environment,Environment +449446,Environment,Environment +449445,Environment,Environment +447632,Environment,Environment +447575,Environment,Environment +444016,Environment,Environment +444015,Environment,Environment +444014,Environment,Environment +444013,Environment,Environment +444012,Environment,Environment +444011,Environment,Environment +444010,Environment,Environment +444009,Environment,Environment +441891,Environment,Environment +441890,Environment,Environment +441888,Environment,Environment +441887,Environment,Environment +441885,Environment,Environment +441882,Environment,Environment +441880,Environment,Environment +441879,Environment,Environment +441878,Environment,Environment +439647,Environment,Environment +439646,Environment,Environment +439645,Environment,Environment +439644,Environment,Environment +439643,Environment,Environment +439642,Environment,Environment +439641,Environment,Environment +439640,Environment,Environment +439639,Environment,Environment +439638,Environment,Environment +439637,Environment,Environment +439636,Environment,Environment +435973,Environment,Environment +435972,Environment,Environment +435970,Environment,Environment +435966,Environment,Environment +435965,Environment,Environment +435960,Environment,Environment +435959,Environment,Environment +435957,Environment,Environment +435954,Environment,Environment +435951,Environment,Environment +435949,Environment,Environment +435946,Environment,Environment +435935,Environment,Environment +435928,Environment,Environment +435926,Environment,Environment +435911,Environment,Environment +433936,Environment,Environment +433935,Environment,Environment +433933,Environment,Environment +433932,Environment,Environment +432088,Environment,Environment +431335,Environment,Environment +431334,Environment,Environment +431317,Environment,Environment +431315,Environment,Environment +431313,Environment,Environment +431310,Environment,Environment +431257,Environment,Environment +431235,Environment,Environment +431224,Environment,Environment +429326,Environment,Environment +429322,Environment,Environment +429320,Environment,Environment +429314,Environment,Environment +426858,Environment,Environment +426857,Environment,Environment +426854,Environment,Environment +424334,Environment,Environment +424333,Environment,Environment +424332,Environment,Environment +424331,Environment,Environment +422505,Environment,Environment +422504,Environment,Environment +420314,Environment,Environment +420313,Environment,Environment +420312,Environment,Environment +418317,Environment,Environment +418313,Environment,Environment +418311,Environment,Environment +418309,Environment,Environment +418307,Environment,Environment +418305,Environment,Environment +418304,Environment,Environment +418303,Environment,Environment +418302,Environment,Environment +417358,Environment,Environment +417357,Environment,Environment +417356,Environment,Environment +417355,Environment,Environment +417354,Environment,Environment +417353,Environment,Environment +417352,Environment,Environment +417351,Environment,Environment +417350,Environment,Environment +417349,Environment,Environment +417348,Environment,Environment +417347,Environment,Environment +417346,Environment,Environment +417345,Environment,Environment +413928,Environment,Environment +413853,Environment,Environment +413852,Environment,Environment +413851,Environment,Environment +413850,Environment,Environment +413848,Environment,Environment +410405,Environment,Environment +410312,Environment,Environment +410211,Environment,Environment +410209,Environment,Environment +410208,Environment,Environment +410203,Environment,Environment +410039,Environment,Environment +410038,Environment,Environment +410037,Environment,Environment +410036,Environment,Environment +410035,Environment,Environment +410034,Environment,Environment +410033,Environment,Environment +410032,Environment,Environment +410031,Environment,Environment +410030,Environment,Environment +410029,Environment,Environment +410028,Environment,Environment +410027,Environment,Environment +410026,Environment,Environment +410025,Environment,Environment +410024,Environment,Environment +407964,Environment,Environment +407963,Environment,Environment +544333,Environment,Environment +544332,Environment,Environment +544331,Environment,Environment +541837,Environment,Environment +541836,Environment,Environment +541834,Environment,Environment +541830,Environment,Environment +541829,Environment,Environment +541827,Environment,Environment +541826,Environment,Environment +541824,Environment,Environment +541822,Environment,Environment +539590,Environment,Environment +539412,Environment,Environment +539100,Environment,Environment +539099,Environment,Environment +539098,Environment,Environment +539097,Environment,Environment +539096,Environment,Environment +539095,Environment,Environment +539094,Environment,Environment +537114,Environment,Environment +537113,Environment,Environment +537098,Environment,Environment +536875,Environment,Environment +536864,Environment,Environment +536863,Environment,Environment +536862,Environment,Environment +536859,Environment,Environment +536857,Environment,Environment +536856,Environment,Environment +534342,Environment,Environment +534340,Environment,Environment +534337,Environment,Environment +534335,Environment,Environment +534334,Environment,Environment +534333,Environment,Environment +534331,Environment,Environment +534330,Environment,Environment +534329,Environment,Environment +534328,Environment,Environment +534327,Environment,Environment +534296,Environment,Environment +534290,Environment,Environment +531197,Environment,Environment +531196,Environment,Environment +531195,Environment,Environment +531194,Environment,Environment +531193,Environment,Environment +531192,Environment,Environment +531191,Environment,Environment +531190,Environment,Environment +529012,Environment,Environment +529011,Environment,Environment +529010,Environment,Environment +529009,Environment,Environment +529008,Environment,Environment +529007,Environment,Environment +529006,Environment,Environment +529005,Environment,Environment +529003,Environment,Environment +527682,Environment,Environment +526516,Environment,Environment +526515,Environment,Environment +526513,Environment,Environment +526511,Environment,Environment +526510,Environment,Environment +526509,Environment,Environment +526508,Environment,Environment +526507,Environment,Environment +526506,Environment,Environment +526505,Environment,Environment +526503,Environment,Environment +526444,Environment,Environment +524419,Environment,Environment +524418,Environment,Environment +524415,Environment,Environment +524085,Environment,Environment +524084,Environment,Environment +522531,Environment,Environment +522529,Environment,Environment +522526,Environment,Environment +522525,Environment,Environment +522523,Environment,Environment +522520,Environment,Environment +522510,Environment,Environment +519596,Environment,Environment +519595,Environment,Environment +519594,Environment,Environment +519593,Environment,Environment +519592,Environment,Environment +519591,Environment,Environment +519590,Environment,Environment +519589,Environment,Environment +519588,Environment,Environment +519587,Environment,Environment +519586,Environment,Environment +516797,Environment,Environment +516796,Environment,Environment +516795,Environment,Environment +516794,Environment,Environment +516793,Environment,Environment +516790,Environment,Environment +516789,Environment,Environment +516786,Environment,Environment +516785,Environment,Environment +516783,Environment,Environment +516782,Environment,Environment +516781,Environment,Environment +515909,Environment,Environment +515908,Environment,Environment +515906,Environment,Environment +515327,Environment,Environment +515325,Environment,Environment +514665,Environment,Environment +514036,Environment,Environment +512731,Environment,Environment +512729,Environment,Environment +512726,Environment,Environment +512725,Environment,Environment +510408,Environment,Environment +510407,Environment,Environment +510406,Environment,Environment +510405,Environment,Environment +510404,Environment,Environment +510403,Environment,Environment +510401,Environment,Environment +510400,Environment,Environment +509819,Environment,Environment +509442,Environment,Environment +509313,Environment,Environment +509312,Environment,Environment +509311,Environment,Environment +509310,Environment,Environment +509308,Environment,Environment +504389,Environment,Environment +504388,Environment,Environment +504387,Environment,Environment +504386,Environment,Environment +504384,Environment,Environment +504383,Environment,Environment +504382,Environment,Environment +504381,Environment,Environment +504380,Environment,Environment +504379,Environment,Environment +504378,Environment,Environment +504377,Environment,Environment +504376,Environment,Environment +504375,Environment,Environment +502553,Environment,Environment +502551,Environment,Environment +502548,Environment,Environment +502547,Environment,Environment +502537,Environment,Environment +502535,Environment,Environment +502532,Environment,Environment +502531,Environment,Environment +502529,Environment,Environment +502526,Environment,Environment +502525,Environment,Environment +502524,Environment,Environment +502521,Environment,Environment +502518,Environment,Environment +502516,Environment,Environment +502512,Environment,Environment +502511,Environment,Environment +502510,Environment,Environment +499596,Environment,Environment +499592,Environment,Environment +499589,Environment,Environment +499586,Environment,Environment +376545,Fisheries,Fisheries +376543,Fisheries,Fisheries +88050,Fisheries,Fisheries +83052,Fisheries,Fisheries +82861,Fisheries,Fisheries +82859,Fisheries,Fisheries +135942,Fisheries,Fisheries +135936,Fisheries,Fisheries +178464,Fisheries,Fisheries +322254,Fisheries,Fisheries +315693,Fisheries,Fisheries +290751,Fisheries,Fisheries +268357,Fisheries,Fisheries +268356,Fisheries,Fisheries +268355,Fisheries,Fisheries +268354,Fisheries,Fisheries +268353,Fisheries,Fisheries +268352,Fisheries,Fisheries +537114,Fisheries,Fisheries +537113,Fisheries,Fisheries +534328,Fisheries,Fisheries +534296,Fisheries,Fisheries +531193,Fisheries,Fisheries +519595,Fisheries,Fisheries +504390,Fisheries,Fisheries +502508,Fisheries,Fisheries +499594,Fisheries,Fisheries +499580,Fisheries,Fisheries +490748,Fisheries,Fisheries +481354,Fisheries,Fisheries +480423,Fisheries,Fisheries +468885,Fisheries,Fisheries +468878,Fisheries,Fisheries +534337,Forestry,Forestry +534331,Forestry,Forestry +157077,Forestry,Forestry +524415,Forestry,Forestry +499586,Health,Health +480428,Health,Health +162331,Health,Health +445360,Health,Health +531196,Health,Health +531195,Health,Health +526444,Health,Health +522520,Health,Health +189589,Mining,Mining +175238,Mining,Mining +202846,Mining,Mining +471099,Taxation and Finance,Taxation and Finance +471095,Taxation and Finance,Taxation and Finance +162335,Taxation and Finance,Taxation and Finance +176708,Taxation and Finance,Taxation and Finance +162395,Taxation and Finance,Taxation and Finance +162392,Taxation and Finance,Taxation and Finance +162377,Taxation and Finance,Taxation and Finance +162357,Taxation and Finance,Taxation and Finance +162349,Taxation and Finance,Taxation and Finance +468905,Transportation,Transportation +468886,Transportation,Transportation +384508,Transportation,Transportation +451435,Transportation,Transportation +541834,Transportation,Transportation +541830,Transportation,Transportation +541829,Transportation,Transportation +541827,Transportation,Transportation +541826,Transportation,Transportation +541824,Transportation,Transportation +541822,Transportation,Transportation +539100,Transportation,Transportation +539099,Transportation,Transportation +539098,Transportation,Transportation +539097,Transportation,Transportation +539096,Transportation,Transportation +539095,Transportation,Transportation +539094,Transportation,Transportation +537100,Transportation,Transportation +524085,Transportation,Transportation +524084,Transportation,Transportation +522520,Transportation,Transportation +516793,Transportation,Transportation +516792,Transportation,Transportation +516791,Transportation,Transportation +516788,Transportation,Transportation +516787,Transportation,Transportation +516784,Transportation,Transportation +515327,Transportation,Transportation +515326,Transportation,Transportation +515325,Transportation,Transportation +515324,Transportation,Transportation +515323,Transportation,Transportation +515321,Transportation,Transportation +514037,Transportation,Transportation +512729,Transportation,Transportation +512726,Transportation,Transportation +512723,Transportation,Transportation +510403,Transportation,Transportation +509817,Transportation,Transportation +509815,Transportation,Transportation +504389,Transportation,Transportation +504388,Transportation,Transportation +504386,Transportation,Transportation +504383,Transportation,Transportation +504382,Transportation,Transportation +504380,Transportation,Transportation +504379,Transportation,Transportation +504376,Transportation,Transportation +502545,Transportation,Transportation +502542,Transportation,Transportation +502535,Transportation,Transportation +502529,Transportation,Transportation +502528,Transportation,Transportation +502526,Transportation,Transportation +502517,Transportation,Transportation +502516,Transportation,Transportation +499598,Transportation,Transportation +499592,Transportation,Transportation +499582,Transportation,Transportation +499578,Transportation,Transportation +499574,Transportation,Transportation +490755,Transportation,Transportation +490752,Transportation,Transportation +488469,Transportation,Transportation +478386,Transportation,Transportation +471106,Transportation,Transportation +468921,Transportation,Transportation +468920,Transportation,Transportation +468919,Transportation,Transportation +315509,Employment and Training,Employment and Training +296261,Employment and Training,Employment and Training +379635,Employment and Training,Employment and Training +359456,Employment and Training,Employment and Training +356048,Employment and Training,Employment and Training +335308,Employment and Training,Employment and Training +163594,Other,Recherche +399641,Agriculture,Agriculture +486049,Agriculture,Agriculture +476523,Agriculture,Agriculture +476522,Agriculture,Agriculture +476521,Agriculture,Agriculture +468974,Agriculture,Agriculture +458202,Agriculture,Agriculture +458201,Agriculture,Agriculture +458183,Agriculture,Agriculture +454914,Agriculture,Agriculture +451288,Agriculture,Agriculture +451287,Agriculture,Agriculture +451285,Agriculture,Agriculture +448305,Agriculture,Agriculture +427660,Agriculture,Agriculture +424522,Agriculture,Agriculture +451284,Industry,Industry +443195,Industry,Industry +401674,Industry,Industry +386720,Industry,Industry +523958,International Trade,International Trade +486049,International Trade,International Trade +155107,Environment,Environment +98114,Environment,Environment +245331,Government Procurement,Government Procurement +382566,Government Procurement,Government Procurement +303549,Industry,Industry +420006,Industry,Industry +109079,Industry,Industry +93746,Industry,Industry +77515,Industry,Industry +77514,Industry,Industry +303532,Industry,Industry +296431,Industry,Industry +296430,Industry,Industry +296409,Industry,Industry +272250,Industry,Industry +268590,Industry,Industry +259261,Industry,Industry +240801,Industry,Industry +168918,Industry,Industry +382570,Industry,Industry +382566,Industry,Industry +381761,Industry,Industry +381759,Industry,Industry +381758,Industry,Industry +381755,Industry,Industry +381754,Industry,Industry +381753,Industry,Industry +381752,Industry,Industry +324569,Industry,Industry +321976,Industry,Industry +316063,Industry,Industry +316062,Industry,Industry +316061,Industry,Industry +135907,International Trade,International Trade +259261,International Trade,International Trade +230389,International Trade,International Trade +460993,Environment,Environment +456505,Environment,Environment +162576,Environment,Environment +460993,Transportation,Transportation +456505,Transportation,Transportation +168150,Transportation,Transportation +168148,Transportation,Transportation +162576,Transportation,Transportation +175413,Energy,Energy +175412,Energy,Energy +87894,Energy,Energy +80722,Energy,Energy +80720,Energy,Energy +116815,Energy,Energy +110114,Energy,Energy +101399,Energy,Energy +101213,Energy,Energy +170304,Energy,Energy +161483,Energy,Energy +185897,Environment,Environment +185896,Environment,Environment +90720,Environment,Environment +90718,Environment,Environment +90717,Environment,Environment +90715,Environment,Environment +80722,Environment,Environment +80720,Environment,Environment +80719,Environment,Environment +80717,Environment,Environment +80716,Environment,Environment +80713,Environment,Environment +80711,Environment,Environment +80708,Environment,Environment +185893,Environment,Environment +176830,Environment,Environment +168068,Environment,Environment +168065,Environment,Environment +165793,Environment,Environment +165791,Environment,Environment +165790,Environment,Environment +163751,Environment,Environment +163746,Environment,Environment +161482,Environment,Environment +142597,Environment,Environment +106515,Environment,Environment +106514,Environment,Environment +101395,Environment,Environment +188985,Industry,Industry +161354,Industry,Industry +90720,Industry,Industry +90718,Industry,Industry +80719,Industry,Industry +157070,Other,Innovation +157064,Other,Innovation +97755,Other,Innovation +90720,Other,Innovation +90718,Other,Innovation +90717,Other,Innovation +80719,Other,Innovation +80713,Other,Innovation +80711,Other,Innovation +80705,Other,Innovation +128835,Other,Innovation +124667,Other,Innovation +124664,Other,Innovation +124663,Other,Innovation +124661,Other,Innovation +124660,Other,Innovation +124658,Other,Innovation +124639,Other,Innovation +120734,Other,Innovation +120718,Other,Innovation +120717,Other,Innovation +116816,Other,Innovation +116815,Other,Innovation +116814,Other,Innovation +110117,Other,Innovation +110116,Other,Innovation +110114,Other,Innovation +101213,Other,Innovation +153467,Other,Innovation +153451,Other,Innovation +153447,Other,Innovation +153444,Other,Innovation +153439,Other,Innovation +153435,Other,Innovation +153430,Other,Innovation +151925,Other,Innovation +151923,Other,Innovation +151920,Other,Innovation +150339,Other,Innovation +150338,Other,Innovation +150337,Other,Innovation +148177,Other,Innovation +145858,Other,Innovation +145857,Other,Innovation +142595,Other,Innovation +142594,Other,Innovation +140914,Other,Innovation +139354,Other,Innovation +136078,Other,Innovation +136077,Other,Innovation +136076,Other,Innovation +136075,Other,Innovation +136074,Other,Innovation +132689,Other,Innovation +132685,Other,Innovation +132684,Other,Innovation +132679,Other,Innovation +128858,Other,Innovation +128856,Other,Innovation +128855,Other,Innovation +128854,Other,Innovation +128837,Other,Innovation +128836,Other,Innovation +161545,Other,Innovation +161543,Other,Innovation +161460,Other,Innovation +161459,Other,Innovation +161458,Other,Innovation +161457,Other,Innovation +161453,Other,Innovation +161451,Other,Innovation +161446,Other,Innovation +161375,Other,Innovation +161374,Other,Innovation +161357,Other,Innovation +161355,Other,Innovation +161353,Other,Innovation +161348,Other,Innovation +159279,Other,Innovation +159276,Other,Innovation +159273,Other,Innovation +159272,Other,Innovation +159271,Other,Innovation +159270,Other,Innovation +159268,Other,Innovation +237084,Agriculture,Agriculture +237033,Agriculture,Agriculture +97362,Agriculture,Agriculture +156549,Agriculture,Agriculture +237032,Agriculture,Agriculture +237031,Agriculture,Agriculture +237030,Agriculture,Agriculture +237029,Agriculture,Agriculture +237016,Agriculture,Agriculture +237015,Agriculture,Agriculture +237011,Agriculture,Agriculture +237010,Agriculture,Agriculture +237009,Agriculture,Agriculture +237002,Agriculture,Agriculture +237000,Agriculture,Agriculture +236999,Agriculture,Agriculture +236997,Agriculture,Agriculture +236995,Agriculture,Agriculture +236994,Agriculture,Agriculture +236993,Agriculture,Agriculture +236991,Agriculture,Agriculture +236990,Agriculture,Agriculture +227408,Agriculture,Agriculture +188879,Agriculture,Agriculture +277811,Agriculture,Agriculture +277810,Agriculture,Agriculture +277809,Agriculture,Agriculture +276911,Agriculture,Agriculture +276733,Agriculture,Agriculture +276731,Agriculture,Agriculture +276730,Agriculture,Agriculture +276729,Agriculture,Agriculture +276728,Agriculture,Agriculture +276727,Agriculture,Agriculture +276714,Agriculture,Agriculture +276658,Agriculture,Agriculture +276656,Agriculture,Agriculture +276652,Agriculture,Agriculture +276651,Agriculture,Agriculture +276650,Agriculture,Agriculture +276649,Agriculture,Agriculture +273851,Agriculture,Agriculture +273849,Agriculture,Agriculture +251424,Agriculture,Agriculture +240410,Agriculture,Agriculture +237117,Agriculture,Agriculture +237115,Agriculture,Agriculture +237113,Agriculture,Agriculture +237112,Agriculture,Agriculture +237111,Agriculture,Agriculture +237110,Agriculture,Agriculture +237108,Agriculture,Agriculture +237107,Agriculture,Agriculture +237105,Agriculture,Agriculture +237103,Agriculture,Agriculture +237102,Agriculture,Agriculture +237101,Agriculture,Agriculture +237099,Agriculture,Agriculture +237097,Agriculture,Agriculture +237096,Agriculture,Agriculture +237094,Agriculture,Agriculture +237093,Agriculture,Agriculture +237092,Agriculture,Agriculture +237091,Agriculture,Agriculture +237090,Agriculture,Agriculture +237088,Agriculture,Agriculture +237087,Agriculture,Agriculture +237086,Agriculture,Agriculture +276650,Environment,Environment +276649,Environment,Environment +251424,Environment,Environment +240410,Environment,Environment +237117,Environment,Environment +237115,Environment,Environment +237113,Environment,Environment +237112,Environment,Environment +237111,Environment,Environment +237110,Environment,Environment +237108,Environment,Environment +237107,Environment,Environment +237105,Environment,Environment +237103,Environment,Environment +237102,Environment,Environment +237101,Environment,Environment +237099,Environment,Environment +237097,Environment,Environment +237096,Environment,Environment +237094,Environment,Environment +237093,Environment,Environment +237092,Environment,Environment +237091,Environment,Environment +237090,Environment,Environment +237088,Environment,Environment +237087,Environment,Environment +237086,Environment,Environment +237085,Environment,Environment +237084,Environment,Environment +237033,Environment,Environment +237032,Environment,Environment +237031,Environment,Environment +237030,Environment,Environment +237029,Environment,Environment +237016,Environment,Environment +237015,Environment,Environment +237011,Environment,Environment +237010,Environment,Environment +237009,Environment,Environment +237002,Environment,Environment +237000,Environment,Environment +236999,Environment,Environment +236997,Environment,Environment +236995,Environment,Environment +236994,Environment,Environment +236993,Environment,Environment +236991,Environment,Environment +236990,Environment,Environment +227408,Environment,Environment +277811,Environment,Environment +277810,Environment,Environment +277809,Environment,Environment +276911,Environment,Environment +276733,Environment,Environment +276731,Environment,Environment +276730,Environment,Environment +276729,Environment,Environment +276728,Environment,Environment +276727,Environment,Environment +276714,Environment,Environment +276658,Environment,Environment +276656,Environment,Environment +276652,Environment,Environment +237092,Health,Health +237091,Health,Health +156549,Health,Health +237090,Health,Health +237088,Health,Health +237087,Health,Health +237086,Health,Health +237085,Health,Health +237084,Health,Health +237033,Health,Health +237032,Health,Health +237031,Health,Health +237030,Health,Health +237029,Health,Health +237016,Health,Health +237015,Health,Health +237011,Health,Health +237010,Health,Health +237009,Health,Health +237002,Health,Health +237000,Health,Health +236999,Health,Health +236997,Health,Health +236995,Health,Health +236994,Health,Health +236993,Health,Health +236991,Health,Health +236990,Health,Health +227408,Health,Health +277811,Health,Health +277810,Health,Health +277809,Health,Health +276911,Health,Health +276733,Health,Health +276731,Health,Health +276730,Health,Health +276729,Health,Health +276728,Health,Health +276727,Health,Health +276714,Health,Health +276658,Health,Health +276656,Health,Health +276652,Health,Health +276651,Health,Health +276650,Health,Health +276649,Health,Health +273851,Health,Health +273849,Health,Health +251424,Health,Health +240410,Health,Health +237117,Health,Health +237115,Health,Health +237113,Health,Health +237112,Health,Health +237111,Health,Health +237110,Health,Health +237108,Health,Health +237107,Health,Health +237105,Health,Health +237103,Health,Health +237102,Health,Health +237101,Health,Health +237099,Health,Health +237097,Health,Health +237096,Health,Health +237094,Health,Health +237031,Justice and Law Enforcement,Justice and Law Enforcement +237030,Justice and Law Enforcement,Justice and Law Enforcement +97373,Justice and Law Enforcement,Justice and Law Enforcement +97371,Justice and Law Enforcement,Justice and Law Enforcement +237029,Justice and Law Enforcement,Justice and Law Enforcement +237016,Justice and Law Enforcement,Justice and Law Enforcement +237015,Justice and Law Enforcement,Justice and Law Enforcement +237011,Justice and Law Enforcement,Justice and Law Enforcement +237010,Justice and Law Enforcement,Justice and Law Enforcement +237009,Justice and Law Enforcement,Justice and Law Enforcement +237002,Justice and Law Enforcement,Justice and Law Enforcement +237000,Justice and Law Enforcement,Justice and Law Enforcement +236999,Justice and Law Enforcement,Justice and Law Enforcement +236997,Justice and Law Enforcement,Justice and Law Enforcement +236995,Justice and Law Enforcement,Justice and Law Enforcement +236994,Justice and Law Enforcement,Justice and Law Enforcement +236993,Justice and Law Enforcement,Justice and Law Enforcement +236991,Justice and Law Enforcement,Justice and Law Enforcement +251424,Justice and Law Enforcement,Justice and Law Enforcement +237117,Justice and Law Enforcement,Justice and Law Enforcement +237115,Justice and Law Enforcement,Justice and Law Enforcement +237113,Justice and Law Enforcement,Justice and Law Enforcement +237112,Justice and Law Enforcement,Justice and Law Enforcement +237111,Justice and Law Enforcement,Justice and Law Enforcement +237110,Justice and Law Enforcement,Justice and Law Enforcement +237108,Justice and Law Enforcement,Justice and Law Enforcement +237107,Justice and Law Enforcement,Justice and Law Enforcement +237105,Justice and Law Enforcement,Justice and Law Enforcement +237103,Justice and Law Enforcement,Justice and Law Enforcement +237102,Justice and Law Enforcement,Justice and Law Enforcement +237101,Justice and Law Enforcement,Justice and Law Enforcement +237099,Justice and Law Enforcement,Justice and Law Enforcement +237097,Justice and Law Enforcement,Justice and Law Enforcement +237096,Justice and Law Enforcement,Justice and Law Enforcement +237094,Justice and Law Enforcement,Justice and Law Enforcement +237093,Justice and Law Enforcement,Justice and Law Enforcement +237092,Justice and Law Enforcement,Justice and Law Enforcement +237091,Justice and Law Enforcement,Justice and Law Enforcement +237090,Justice and Law Enforcement,Justice and Law Enforcement +237088,Justice and Law Enforcement,Justice and Law Enforcement +237087,Justice and Law Enforcement,Justice and Law Enforcement +237086,Justice and Law Enforcement,Justice and Law Enforcement +237085,Justice and Law Enforcement,Justice and Law Enforcement +237084,Justice and Law Enforcement,Justice and Law Enforcement +237033,Justice and Law Enforcement,Justice and Law Enforcement +97371,Other,Animal Welfare +97362,Other,Animal Welfare +129754,Other,Animal Welfare +250584,Consumer Issues,Consumer Issues +250581,Consumer Issues,Consumer Issues +250590,Consumer Issues,Consumer Issues +250589,Consumer Issues,Consumer Issues +250584,Industry,Industry +250581,Industry,Industry +250590,Industry,Industry +250589,Industry,Industry +250584,Justice and Law Enforcement,Justice and Law Enforcement +250581,Justice and Law Enforcement,Justice and Law Enforcement +250590,Justice and Law Enforcement,Justice and Law Enforcement +250589,Justice and Law Enforcement,Justice and Law Enforcement +250584,Tourism,Tourism +250581,Tourism,Tourism +250590,Tourism,Tourism +250589,Tourism,Tourism +166381,Defence,Defence +166381,Employment and Training,Employment and Training +150839,Employment and Training,Employment and Training +169012,Employment and Training,Employment and Training +169011,Employment and Training,Employment and Training +169010,Employment and Training,Employment and Training +166382,Government Procurement,Government Procurement +166381,Government Procurement,Government Procurement +150839,Government Procurement,Government Procurement +142437,Government Procurement,Government Procurement +169012,Government Procurement,Government Procurement +169011,Government Procurement,Government Procurement +169010,International Relations,International Relations +166382,International Relations,International Relations +169012,International Relations,International Relations +76913,Taxation and Finance,Taxation and Finance +299609,Taxation and Finance,Taxation and Finance +93212,Other,Academic Research Infrastructure +93209,Other,Academic Research Infrastructure +88075,Other,Academic Research Infrastructure +83515,Other,Academic Research Infrastructure +96959,Other,Academic Research Infrastructure +528065,Defence,Defence +516563,Defence,Defence +150098,Defence,Defence +188918,Defence,Defence +385895,Defence,Defence +375351,Defence,Defence +375350,Defence,Defence +375348,Defence,Defence +351457,Defence,Defence +498645,Defence,Defence +494582,Defence,Defence +480989,Defence,Defence +452202,Defence,Defence +433423,Defence,Defence +430335,Defence,Defence +421250,Defence,Defence +404587,Defence,Defence +388959,Defence,Defence +498645,Industry,Industry +494582,Industry,Industry +144174,Industry,Industry +144154,Industry,Industry +543188,Transportation,Transportation +76941,Environment,Environment +212588,Labour,Labour +152941,Consumer Issues,Consumer Issues +152941,Energy,Energy +152941,Industry,Industry +77460,Agriculture,Agriculture +437731,Agriculture,Agriculture +454393,Industry,Industry +403023,International Trade,International Trade +427009,Environment,Environment +427009,Fisheries,Fisheries +243729,Internal Trade,Internal Trade +169338,International Trade,International Trade +468878,Agriculture,Agriculture +212353,Consumer Issues,Consumer Issues +536861,Energy,Energy +499584,Environment,Environment +376546,Fisheries,Fisheries +468910,Forestry,Forestry +499589,Health,Health +199769,Mining,Mining +132851,Regional Development,Regional Development +162343,Taxation and Finance,Taxation and Finance +468912,Transportation,Transportation +329920,Employment and Training,Employment and Training +194883,Other,Francophonie internationale +174929,Other,Recherche +76404,Infrastructure,Infrastructure +414685,Agriculture,Agriculture +454914,Industry,Industry +448305,International Trade,International Trade +155108,Environment,Environment +382566,Defence,Defence +259260,Government Procurement,Government Procurement +316058,Industry,Industry +227019,International Trade,International Trade +162574,Environment,Environment +162574,Transportation,Transportation +179564,Energy,Energy +101213,Environment,Environment +80705,Industry,Industry +157072,Other,Innovation +130634,Financial Institutions,Financial Institutions +237085,Agriculture,Agriculture +276651,Environment,Environment +237093,Health,Health +237032,Justice and Law Enforcement,Justice and Law Enforcement +97373,Other,Animal Welfare +250587,Consumer Issues,Consumer Issues +250587,Industry,Industry +250587,Justice and Law Enforcement,Justice and Law Enforcement +250587,Tourism,Tourism +166382,Defence,Defence +166382,Employment and Training,Employment and Training +169010,Government Procurement,Government Procurement +169011,International Relations,International Relations +150838,Consumer Issues,Consumer Issues +150838,Taxation and Finance,Taxation and Finance +161049,Defence,Defence +161049,Government Procurement,Government Procurement +155606,Health,Health +96958,Other,Academic Research Infrastructure +128875,Consumer Issues,Consumer Issues +475018,Financial Institutions,Financial Institutions +100237,Agriculture,Agriculture +104075,Transportation,Transportation +541582,Defence,Defence +498647,Industry,Industry +357500,Internal Trade,Internal Trade +501302,Regional Development,Regional Development +498645,Transportation,Transportation +96934,Other,Aérospatial +83135,Infrastructure,Infrastructure +190764,Industry,Industry +186165,Industry,Industry +175496,Industry,Industry +164865,Industry,Industry +159358,Industry,Industry +159259,Industry,Industry +159258,Industry,Industry +159257,Industry,Industry +159256,Industry,Industry +152885,Industry,Industry +150879,Industry,Industry +269392,Industry,Industry +269390,Industry,Industry +245150,Industry,Industry +241083,Industry,Industry +233829,Industry,Industry +226307,Industry,Industry +226292,Industry,Industry +223375,Industry,Industry +375347,Industry,Industry +357499,Industry,Industry +349156,Industry,Industry +335880,Industry,Industry +331461,Industry,Industry +327438,Industry,Industry +322135,Industry,Industry +312862,Industry,Industry +296775,Industry,Industry +291010,Industry,Industry +286885,Industry,Industry +279890,Industry,Industry +272989,Industry,Industry +480989,Industry,Industry +457478,Industry,Industry +457473,Industry,Industry +457465,Industry,Industry +450073,Industry,Industry +432357,Industry,Industry +432355,Industry,Industry +421805,Industry,Industry +421795,Industry,Industry +406765,Industry,Industry +404593,Industry,Industry +404592,Industry,Industry +404591,Industry,Industry +404590,Industry,Industry +395020,Industry,Industry +388963,Industry,Industry +388962,Industry,Industry +388959,Industry,Industry +383310,Industry,Industry +381882,Industry,Industry +381075,Industry,Industry +375360,Industry,Industry +375354,Industry,Industry +375353,Industry,Industry +375352,Industry,Industry +375351,Industry,Industry +375350,Industry,Industry +375348,Industry,Industry +541641,Industry,Industry +541582,Industry,Industry +539888,Industry,Industry +539879,Industry,Industry +539867,Industry,Industry +534776,Industry,Industry +531439,Industry,Industry +522230,Industry,Industry +522208,Industry,Industry +516585,Industry,Industry +516563,Industry,Industry +510467,Industry,Industry +510464,Industry,Industry +510456,Industry,Industry +508287,Industry,Industry +503986,Industry,Industry +503985,Industry,Industry +503984,Industry,Industry +503983,Industry,Industry +503982,Industry,Industry +503981,Industry,Industry +503979,Industry,Industry +501302,Industry,Industry +500425,Industry,Industry +480989,Internal Trade,Internal Trade +430335,Internal Trade,Internal Trade +190805,Internal Trade,Internal Trade +188671,Internal Trade,Internal Trade +188669,Internal Trade,Internal Trade +188666,Internal Trade,Internal Trade +369432,Internal Trade,Internal Trade +500425,Regional Development,Regional Development +498647,Regional Development,Regional Development +272989,Regional Development,Regional Development +269392,Regional Development,Regional Development +375360,Regional Development,Regional Development +375352,Regional Development,Regional Development +375351,Regional Development,Regional Development +375350,Regional Development,Regional Development +375348,Regional Development,Regional Development +375347,Regional Development,Regional Development +357500,Regional Development,Regional Development +357499,Regional Development,Regional Development +421805,Regional Development,Regional Development +421795,Regional Development,Regional Development +404592,Regional Development,Regional Development +404591,Regional Development,Regional Development +399786,Regional Development,Regional Development +541641,Regional Development,Regional Development +531439,Regional Development,Regional Development +522230,Regional Development,Regional Development +522208,Regional Development,Regional Development +510467,Regional Development,Regional Development +510464,Regional Development,Regional Development +510456,Regional Development,Regional Development +508287,Regional Development,Regional Development +503986,Regional Development,Regional Development +503985,Regional Development,Regional Development +503984,Regional Development,Regional Development +503983,Regional Development,Regional Development +503982,Regional Development,Regional Development +503981,Regional Development,Regional Development +503979,Regional Development,Regional Development +457465,Transportation,Transportation +432317,Transportation,Transportation +108534,Transportation,Transportation +188671,Transportation,Transportation +188669,Transportation,Transportation +312862,Transportation,Transportation +310039,Transportation,Transportation +296780,Transportation,Transportation +291010,Transportation,Transportation +279891,Transportation,Transportation +202223,Transportation,Transportation +406765,Transportation,Transportation +404593,Transportation,Transportation +404590,Transportation,Transportation +399786,Transportation,Transportation +388960,Transportation,Transportation +383310,Transportation,Transportation +381075,Transportation,Transportation +375353,Transportation,Transportation +375352,Transportation,Transportation +375350,Transportation,Transportation +375347,Transportation,Transportation +522230,Transportation,Transportation +522208,Transportation,Transportation +510467,Transportation,Transportation +510464,Transportation,Transportation +510456,Transportation,Transportation +508287,Transportation,Transportation +503986,Transportation,Transportation +503985,Transportation,Transportation +503984,Transportation,Transportation +503983,Transportation,Transportation +503982,Transportation,Transportation +503981,Transportation,Transportation +503979,Transportation,Transportation +501302,Transportation,Transportation +500425,Transportation,Transportation +498647,Transportation,Transportation +90281,Other,Aérospatial +83133,Infrastructure,Infrastructure +83132,Infrastructure,Infrastructure +97683,Infrastructure,Infrastructure +97682,Infrastructure,Infrastructure +93270,Infrastructure,Infrastructure +480596,Agriculture,Agriculture +480595,Agriculture,Agriculture +485475,Agriculture,Agriculture +485474,Agriculture,Agriculture +485473,Agriculture,Agriculture +483776,Agriculture,Agriculture +483774,Agriculture,Agriculture +483773,Agriculture,Agriculture +483772,Agriculture,Agriculture +482930,Agriculture,Agriculture +482929,Agriculture,Agriculture +482928,Agriculture,Agriculture +482580,Agriculture,Agriculture +482578,Agriculture,Agriculture +480845,Agriculture,Agriculture +480844,Agriculture,Agriculture +480843,Agriculture,Agriculture +480842,Agriculture,Agriculture +480611,Agriculture,Agriculture +480608,Agriculture,Agriculture +480606,Agriculture,Agriculture +480603,Agriculture,Agriculture +480602,Agriculture,Agriculture +480598,Agriculture,Agriculture +226946,Employment and Training,Employment and Training +196668,Employment and Training,Employment and Training +185928,Employment and Training,Employment and Training +228169,Employment and Training,Employment and Training +480596,Environment,Environment +480595,Environment,Environment +101237,Environment,Environment +85014,Environment,Environment +78334,Environment,Environment +485475,Environment,Environment +485474,Environment,Environment +485473,Environment,Environment +483776,Environment,Environment +483774,Environment,Environment +483773,Environment,Environment +483772,Environment,Environment +482930,Environment,Environment +482929,Environment,Environment +482928,Environment,Environment +482580,Environment,Environment +482578,Environment,Environment +480845,Environment,Environment +480844,Environment,Environment +480843,Environment,Environment +480842,Environment,Environment +480611,Environment,Environment +480608,Environment,Environment +480606,Environment,Environment +480603,Environment,Environment +480602,Environment,Environment +480598,Environment,Environment +519135,Industry,Industry +519134,Industry,Industry +154660,Industry,Industry +337191,Industry,Industry +335627,Industry,Industry +334149,Industry,Industry +333199,Industry,Industry +328037,Industry,Industry +326210,Industry,Industry +326209,Industry,Industry +325416,Industry,Industry +325415,Industry,Industry +325412,Industry,Industry +325411,Industry,Industry +325410,Industry,Industry +320134,Industry,Industry +320131,Industry,Industry +263289,Industry,Industry +263213,Industry,Industry +196668,Industry,Industry +421165,Industry,Industry +420593,Industry,Industry +420373,Industry,Industry +420372,Industry,Industry +420371,Industry,Industry +410844,Industry,Industry +404261,Industry,Industry +395024,Industry,Industry +392145,Industry,Industry +392139,Industry,Industry +390142,Industry,Industry +389638,Industry,Industry +386396,Industry,Industry +384207,Industry,Industry +383984,Industry,Industry +383953,Industry,Industry +382115,Industry,Industry +381933,Industry,Industry +381169,Industry,Industry +380111,Industry,Industry +378029,Industry,Industry +378025,Industry,Industry +377496,Industry,Industry +375740,Industry,Industry +375737,Industry,Industry +375625,Industry,Industry +373804,Industry,Industry +373413,Industry,Industry +373188,Industry,Industry +373001,Industry,Industry +372996,Industry,Industry +370151,Industry,Industry +368354,Industry,Industry +368352,Industry,Industry +368351,Industry,Industry +367709,Industry,Industry +367426,Industry,Industry +367302,Industry,Industry +366726,Industry,Industry +366415,Industry,Industry +364523,Industry,Industry +362042,Industry,Industry +355309,Industry,Industry +355308,Industry,Industry +351922,Industry,Industry +349930,Industry,Industry +348261,Industry,Industry +348153,Industry,Industry +348150,Industry,Industry +348149,Industry,Industry +348141,Industry,Industry +344723,Industry,Industry +344722,Industry,Industry +342677,Industry,Industry +340424,Industry,Industry +340361,Industry,Industry +511608,Industry,Industry +508434,Industry,Industry +508431,Industry,Industry +507129,Industry,Industry +506426,Industry,Industry +498230,Industry,Industry +497504,Industry,Industry +497500,Industry,Industry +494980,Industry,Industry +493055,Industry,Industry +492650,Industry,Industry +489901,Industry,Industry +489087,Industry,Industry +488410,Industry,Industry +485475,Industry,Industry +485474,Industry,Industry +485473,Industry,Industry +483776,Industry,Industry +483774,Industry,Industry +483773,Industry,Industry +483772,Industry,Industry +482930,Industry,Industry +482929,Industry,Industry +482928,Industry,Industry +482580,Industry,Industry +482578,Industry,Industry +480846,Industry,Industry +480845,Industry,Industry +480844,Industry,Industry +480843,Industry,Industry +480842,Industry,Industry +480611,Industry,Industry +480608,Industry,Industry +480606,Industry,Industry +480603,Industry,Industry +480602,Industry,Industry +480598,Industry,Industry +480597,Industry,Industry +480596,Industry,Industry +480595,Industry,Industry +474180,Industry,Industry +474179,Industry,Industry +466504,Industry,Industry +465650,Industry,Industry +456938,Industry,Industry +456449,Industry,Industry +453257,Industry,Industry +448827,Industry,Industry +445458,Industry,Industry +444253,Industry,Industry +442870,Industry,Industry +440674,Industry,Industry +438018,Industry,Industry +438017,Industry,Industry +434198,Industry,Industry +434197,Industry,Industry +434196,Industry,Industry +429803,Industry,Industry +424619,Industry,Industry +424618,Industry,Industry +424617,Industry,Industry +529822,Industry,Industry +528011,Industry,Industry +521679,Industry,Industry +492650,Infrastructure,Infrastructure +485475,Infrastructure,Infrastructure +102703,Infrastructure,Infrastructure +102654,Infrastructure,Infrastructure +101237,Infrastructure,Infrastructure +93315,Infrastructure,Infrastructure +74374,Infrastructure,Infrastructure +240970,Infrastructure,Infrastructure +227198,Infrastructure,Infrastructure +227188,Infrastructure,Infrastructure +226946,Infrastructure,Infrastructure +196668,Infrastructure,Infrastructure +185928,Infrastructure,Infrastructure +159158,Infrastructure,Infrastructure +159059,Infrastructure,Infrastructure +155656,Infrastructure,Infrastructure +154660,Infrastructure,Infrastructure +485474,Infrastructure,Infrastructure +485473,Infrastructure,Infrastructure +483776,Infrastructure,Infrastructure +483774,Infrastructure,Infrastructure +483773,Infrastructure,Infrastructure +483772,Infrastructure,Infrastructure +482930,Infrastructure,Infrastructure +482929,Infrastructure,Infrastructure +482928,Infrastructure,Infrastructure +482580,Infrastructure,Infrastructure +482578,Infrastructure,Infrastructure +480845,Infrastructure,Infrastructure +480844,Infrastructure,Infrastructure +480843,Infrastructure,Infrastructure +480842,Infrastructure,Infrastructure +480611,Infrastructure,Infrastructure +480608,Infrastructure,Infrastructure +480606,Infrastructure,Infrastructure +480603,Infrastructure,Infrastructure +480602,Infrastructure,Infrastructure +480598,Infrastructure,Infrastructure +480597,Infrastructure,Infrastructure +480596,Infrastructure,Infrastructure +480595,Infrastructure,Infrastructure +434198,Infrastructure,Infrastructure +434197,Infrastructure,Infrastructure +518524,Infrastructure,Infrastructure +480596,Taxation and Finance,Taxation and Finance +480595,Taxation and Finance,Taxation and Finance +78334,Taxation and Finance,Taxation and Finance +485475,Taxation and Finance,Taxation and Finance +485474,Taxation and Finance,Taxation and Finance +485473,Taxation and Finance,Taxation and Finance +483776,Taxation and Finance,Taxation and Finance +483774,Taxation and Finance,Taxation and Finance +483773,Taxation and Finance,Taxation and Finance +483772,Taxation and Finance,Taxation and Finance +482930,Taxation and Finance,Taxation and Finance +482929,Taxation and Finance,Taxation and Finance +482928,Taxation and Finance,Taxation and Finance +482580,Taxation and Finance,Taxation and Finance +482578,Taxation and Finance,Taxation and Finance +480845,Taxation and Finance,Taxation and Finance +480844,Taxation and Finance,Taxation and Finance +480843,Taxation and Finance,Taxation and Finance +480842,Taxation and Finance,Taxation and Finance +480611,Taxation and Finance,Taxation and Finance +480608,Taxation and Finance,Taxation and Finance +480606,Taxation and Finance,Taxation and Finance +480603,Taxation and Finance,Taxation and Finance +480602,Taxation and Finance,Taxation and Finance +480598,Taxation and Finance,Taxation and Finance +442784,Transportation,Transportation +440674,Transportation,Transportation +85039,Transportation,Transportation +80751,Transportation,Transportation +78334,Transportation,Transportation +171848,Transportation,Transportation +169090,Transportation,Transportation +164988,Transportation,Transportation +164986,Transportation,Transportation +163888,Transportation,Transportation +163887,Transportation,Transportation +163884,Transportation,Transportation +163882,Transportation,Transportation +163880,Transportation,Transportation +159158,Transportation,Transportation +159135,Transportation,Transportation +159134,Transportation,Transportation +159059,Transportation,Transportation +159055,Transportation,Transportation +159052,Transportation,Transportation +159049,Transportation,Transportation +159048,Transportation,Transportation +263289,Transportation,Transportation +263213,Transportation,Transportation +253609,Transportation,Transportation +250210,Transportation,Transportation +250170,Transportation,Transportation +250122,Transportation,Transportation +250117,Transportation,Transportation +245183,Transportation,Transportation +245169,Transportation,Transportation +245041,Transportation,Transportation +245032,Transportation,Transportation +245030,Transportation,Transportation +245024,Transportation,Transportation +245020,Transportation,Transportation +245014,Transportation,Transportation +241300,Transportation,Transportation +241101,Transportation,Transportation +240970,Transportation,Transportation +240969,Transportation,Transportation +236929,Transportation,Transportation +228311,Transportation,Transportation +228310,Transportation,Transportation +228309,Transportation,Transportation +228229,Transportation,Transportation +228189,Transportation,Transportation +228152,Transportation,Transportation +227198,Transportation,Transportation +227188,Transportation,Transportation +227172,Transportation,Transportation +226946,Transportation,Transportation +226944,Transportation,Transportation +223013,Transportation,Transportation +223012,Transportation,Transportation +204407,Transportation,Transportation +196668,Transportation,Transportation +194727,Transportation,Transportation +185928,Transportation,Transportation +174144,Transportation,Transportation +172088,Transportation,Transportation +434198,Transportation,Transportation +434196,Transportation,Transportation +429803,Transportation,Transportation +410844,Transportation,Transportation +404261,Transportation,Transportation +384207,Transportation,Transportation +383984,Transportation,Transportation +383953,Transportation,Transportation +373804,Transportation,Transportation +364523,Transportation,Transportation +362042,Transportation,Transportation +348261,Transportation,Transportation +348153,Transportation,Transportation +348150,Transportation,Transportation +348149,Transportation,Transportation +348141,Transportation,Transportation +344722,Transportation,Transportation +340361,Transportation,Transportation +339418,Transportation,Transportation +339414,Transportation,Transportation +337191,Transportation,Transportation +335627,Transportation,Transportation +334149,Transportation,Transportation +333199,Transportation,Transportation +332269,Transportation,Transportation +328037,Transportation,Transportation +325416,Transportation,Transportation +325415,Transportation,Transportation +325412,Transportation,Transportation +325411,Transportation,Transportation +325410,Transportation,Transportation +313097,Transportation,Transportation +313069,Transportation,Transportation +303150,Transportation,Transportation +303130,Transportation,Transportation +296168,Transportation,Transportation +296070,Transportation,Transportation +296069,Transportation,Transportation +296054,Transportation,Transportation +296051,Transportation,Transportation +296050,Transportation,Transportation +296049,Transportation,Transportation +290793,Transportation,Transportation +290469,Transportation,Transportation +290390,Transportation,Transportation +290369,Transportation,Transportation +275530,Transportation,Transportation +529822,Transportation,Transportation +528011,Transportation,Transportation +521679,Transportation,Transportation +519714,Transportation,Transportation +519135,Transportation,Transportation +519134,Transportation,Transportation +518530,Transportation,Transportation +518524,Transportation,Transportation +513798,Transportation,Transportation +511608,Transportation,Transportation +508434,Transportation,Transportation +508431,Transportation,Transportation +506426,Transportation,Transportation +503182,Transportation,Transportation +501002,Transportation,Transportation +498230,Transportation,Transportation +497504,Transportation,Transportation +497500,Transportation,Transportation +494980,Transportation,Transportation +493055,Transportation,Transportation +492650,Transportation,Transportation +489901,Transportation,Transportation +489087,Transportation,Transportation +488410,Transportation,Transportation +485475,Transportation,Transportation +485474,Transportation,Transportation +485473,Transportation,Transportation +483776,Transportation,Transportation +483774,Transportation,Transportation +483773,Transportation,Transportation +483772,Transportation,Transportation +482930,Transportation,Transportation +482929,Transportation,Transportation +482928,Transportation,Transportation +482580,Transportation,Transportation +482578,Transportation,Transportation +480846,Transportation,Transportation +480845,Transportation,Transportation +480844,Transportation,Transportation +480843,Transportation,Transportation +480842,Transportation,Transportation +480611,Transportation,Transportation +480608,Transportation,Transportation +480606,Transportation,Transportation +480603,Transportation,Transportation +480602,Transportation,Transportation +480598,Transportation,Transportation +480597,Transportation,Transportation +480596,Transportation,Transportation +480595,Transportation,Transportation +480591,Transportation,Transportation +466504,Transportation,Transportation +465650,Transportation,Transportation +453257,Transportation,Transportation +448827,Transportation,Transportation +84855,Consumer Issues,Consumer Issues +366365,Consumer Issues,Consumer Issues +93841,Consumer Issues,Consumer Issues +515244,Health,Health +503715,Health,Health +93841,Health,Health +90173,Health,Health +88227,Health,Health +88011,Health,Health +87861,Health,Health +84855,Health,Health +80714,Health,Health +76909,Health,Health +76141,Health,Health +150201,Health,Health +150200,Health,Health +146075,Health,Health +128897,Health,Health +112496,Health,Health +109310,Health,Health +109306,Health,Health +101286,Health,Health +236842,Health,Health +236841,Health,Health +234209,Health,Health +230760,Health,Health +230757,Health,Health +219409,Health,Health +219407,Health,Health +208528,Health,Health +208507,Health,Health +200416,Health,Health +200335,Health,Health +200327,Health,Health +194605,Health,Health +185604,Health,Health +185584,Health,Health +165593,Health,Health +165589,Health,Health +443766,Health,Health +436892,Health,Health +432055,Health,Health +431460,Health,Health +431053,Health,Health +429528,Health,Health +425808,Health,Health +425786,Health,Health +423818,Health,Health +422584,Health,Health +422583,Health,Health +422578,Health,Health +418915,Health,Health +418190,Health,Health +416684,Health,Health +412632,Health,Health +412626,Health,Health +409444,Health,Health +406861,Health,Health +398781,Health,Health +391240,Health,Health +372974,Health,Health +366365,Health,Health +350667,Health,Health +483387,Health,Health +483386,Health,Health +479117,Health,Health +471269,Health,Health +461617,Health,Health +457551,Health,Health +448813,Health,Health +543621,Health,Health +537715,Health,Health +537377,Health,Health +537376,Health,Health +537072,Health,Health +537070,Health,Health +527813,Health,Health +522559,Health,Health +519332,Health,Health +519331,Health,Health +519090,Health,Health +518830,Health,Health +431053,Industry,Industry +429528,Industry,Industry +93841,Industry,Industry +90173,Industry,Industry +88227,Industry,Industry +87861,Industry,Industry +84855,Industry,Industry +165593,Industry,Industry +165589,Industry,Industry +154507,Industry,Industry +154506,Industry,Industry +153495,Industry,Industry +153462,Industry,Industry +146075,Industry,Industry +112496,Industry,Industry +109310,Industry,Industry +109306,Industry,Industry +236842,Industry,Industry +236841,Industry,Industry +234209,Industry,Industry +230760,Industry,Industry +230757,Industry,Industry +227308,Industry,Industry +219409,Industry,Industry +219407,Industry,Industry +208547,Industry,Industry +208528,Industry,Industry +208507,Industry,Industry +200416,Industry,Industry +200335,Industry,Industry +200327,Industry,Industry +194605,Industry,Industry +185604,Industry,Industry +185584,Industry,Industry +175595,Industry,Industry +425808,Industry,Industry +425786,Industry,Industry +424607,Industry,Industry +423818,Industry,Industry +422584,Industry,Industry +422583,Industry,Industry +422578,Industry,Industry +418915,Industry,Industry +412632,Industry,Industry +412626,Industry,Industry +409444,Industry,Industry +406861,Industry,Industry +405583,Industry,Industry +404942,Industry,Industry +398781,Industry,Industry +395231,Industry,Industry +391240,Industry,Industry +385474,Industry,Industry +366365,Industry,Industry +319190,Industry,Industry +537377,Industry,Industry +537376,Industry,Industry +537072,Industry,Industry +537070,Industry,Industry +519090,Industry,Industry +518830,Industry,Industry +518828,Industry,Industry +503715,Industry,Industry +479117,Industry,Industry +471269,Industry,Industry +461617,Industry,Industry +457551,Industry,Industry +448813,Industry,Industry +443766,Industry,Industry +436892,Industry,Industry +405583,Intellectual Property,Intellectual Property +405579,Intellectual Property,Intellectual Property +93841,Intellectual Property,Intellectual Property +88227,Intellectual Property,Intellectual Property +87861,Intellectual Property,Intellectual Property +76909,Intellectual Property,Intellectual Property +76141,Intellectual Property,Intellectual Property +154507,Intellectual Property,Intellectual Property +154506,Intellectual Property,Intellectual Property +153495,Intellectual Property,Intellectual Property +153462,Intellectual Property,Intellectual Property +146075,Intellectual Property,Intellectual Property +112496,Intellectual Property,Intellectual Property +109306,Intellectual Property,Intellectual Property +200335,Intellectual Property,Intellectual Property +194605,Intellectual Property,Intellectual Property +185584,Intellectual Property,Intellectual Property +175595,Intellectual Property,Intellectual Property +165593,Intellectual Property,Intellectual Property +165589,Intellectual Property,Intellectual Property +398781,Intellectual Property,Intellectual Property +385474,Intellectual Property,Intellectual Property +366365,Intellectual Property,Intellectual Property +277316,Intellectual Property,Intellectual Property +236842,Intellectual Property,Intellectual Property +236841,Intellectual Property,Intellectual Property +234209,Intellectual Property,Intellectual Property +230757,Intellectual Property,Intellectual Property +227308,Intellectual Property,Intellectual Property +219409,Intellectual Property,Intellectual Property +219407,Intellectual Property,Intellectual Property +200416,Intellectual Property,Intellectual Property +537072,Intellectual Property,Intellectual Property +537070,Intellectual Property,Intellectual Property +503715,Intellectual Property,Intellectual Property +461617,Intellectual Property,Intellectual Property +424607,Intellectual Property,Intellectual Property +416684,Intellectual Property,Intellectual Property +412632,Intellectual Property,Intellectual Property +412626,Intellectual Property,Intellectual Property +409444,Intellectual Property,Intellectual Property +537070,International Trade,International Trade +503715,International Trade,International Trade +146075,International Trade,International Trade +109306,International Trade,International Trade +175595,International Trade,International Trade +165593,International Trade,International Trade +165589,International Trade,International Trade +277316,International Trade,International Trade +236842,International Trade,International Trade +236841,International Trade,International Trade +230757,International Trade,International Trade +227308,International Trade,International Trade +219409,International Trade,International Trade +219407,International Trade,International Trade +200416,International Trade,International Trade +200335,International Trade,International Trade +200327,International Trade,International Trade +194605,International Trade,International Trade +464272,International Trade,International Trade +424607,International Trade,International Trade +409444,International Trade,International Trade +405583,International Trade,International Trade +405579,International Trade,International Trade +398781,International Trade,International Trade +208528,Regional Development,Regional Development +208507,Regional Development,Regional Development +236842,Taxation and Finance,Taxation and Finance +200651,Taxation and Finance,Taxation and Finance +112496,Taxation and Finance,Taxation and Finance +109306,Taxation and Finance,Taxation and Finance +93841,Taxation and Finance,Taxation and Finance +88227,Taxation and Finance,Taxation and Finance +163572,Justice and Law Enforcement,Justice and Law Enforcement +163570,Justice and Law Enforcement,Justice and Law Enforcement +163575,Justice and Law Enforcement,Justice and Law Enforcement +163574,Justice and Law Enforcement,Justice and Law Enforcement +163572,Regional Development,Regional Development +163570,Regional Development,Regional Development +163575,Regional Development,Regional Development +163574,Regional Development,Regional Development +84675,Other,Innovation and incubation +156070,Labour,Labour +230082,Agriculture,Agriculture +230080,Agriculture,Agriculture +90468,Agriculture,Agriculture +90463,Agriculture,Agriculture +129175,Agriculture,Agriculture +129174,Agriculture,Agriculture +111395,Agriculture,Agriculture +109319,Agriculture,Agriculture +109318,Agriculture,Agriculture +109315,Agriculture,Agriculture +109314,Agriculture,Agriculture +109313,Agriculture,Agriculture +100558,Agriculture,Agriculture +151622,Agriculture,Agriculture +151621,Agriculture,Agriculture +135755,Agriculture,Agriculture +223670,Agriculture,Agriculture +223669,Agriculture,Agriculture +223668,Agriculture,Agriculture +223648,Agriculture,Agriculture +223646,Agriculture,Agriculture +219798,Agriculture,Agriculture +219797,Agriculture,Agriculture +219795,Agriculture,Agriculture +219793,Agriculture,Agriculture +219792,Agriculture,Agriculture +207483,Agriculture,Agriculture +207475,Agriculture,Agriculture +200087,Agriculture,Agriculture +200084,Agriculture,Agriculture +200080,Agriculture,Agriculture +195028,Agriculture,Agriculture +195027,Agriculture,Agriculture +195025,Agriculture,Agriculture +175249,Agriculture,Agriculture +170694,Agriculture,Agriculture +170693,Agriculture,Agriculture +170692,Agriculture,Agriculture +170691,Agriculture,Agriculture +170690,Agriculture,Agriculture +170685,Agriculture,Agriculture +170683,Agriculture,Agriculture +170682,Agriculture,Agriculture +170680,Agriculture,Agriculture +170679,Agriculture,Agriculture +170678,Agriculture,Agriculture +170677,Agriculture,Agriculture +170676,Agriculture,Agriculture +165084,Agriculture,Agriculture +162021,Agriculture,Agriculture +162019,Agriculture,Agriculture +356460,Agriculture,Agriculture +356455,Agriculture,Agriculture +342128,Agriculture,Agriculture +342127,Agriculture,Agriculture +342126,Agriculture,Agriculture +342125,Agriculture,Agriculture +342124,Agriculture,Agriculture +342123,Agriculture,Agriculture +342122,Agriculture,Agriculture +342121,Agriculture,Agriculture +342120,Agriculture,Agriculture +342119,Agriculture,Agriculture +342118,Agriculture,Agriculture +342117,Agriculture,Agriculture +335878,Agriculture,Agriculture +319056,Agriculture,Agriculture +310374,Agriculture,Agriculture +310366,Agriculture,Agriculture +310358,Agriculture,Agriculture +310353,Agriculture,Agriculture +304533,Agriculture,Agriculture +303793,Agriculture,Agriculture +303789,Agriculture,Agriculture +303648,Agriculture,Agriculture +303643,Agriculture,Agriculture +303641,Agriculture,Agriculture +303627,Agriculture,Agriculture +303623,Agriculture,Agriculture +303613,Agriculture,Agriculture +296709,Agriculture,Agriculture +296706,Agriculture,Agriculture +282430,Agriculture,Agriculture +269192,Agriculture,Agriculture +263491,Agriculture,Agriculture +263490,Agriculture,Agriculture +263489,Agriculture,Agriculture +254186,Agriculture,Agriculture +254180,Agriculture,Agriculture +250892,Agriculture,Agriculture +245103,Agriculture,Agriculture +245102,Agriculture,Agriculture +245099,Agriculture,Agriculture +245096,Agriculture,Agriculture +245094,Agriculture,Agriculture +245087,Agriculture,Agriculture +236330,Agriculture,Agriculture +230090,Agriculture,Agriculture +230089,Agriculture,Agriculture +230086,Agriculture,Agriculture +230084,Agriculture,Agriculture +90463,Energy,Energy +200084,Energy,Energy +200080,Energy,Energy +200077,Energy,Energy +200072,Energy,Energy +195028,Energy,Energy +195027,Energy,Energy +195026,Energy,Energy +195025,Energy,Energy +195024,Energy,Energy +195020,Energy,Energy +175249,Energy,Energy +170694,Energy,Energy +170693,Energy,Energy +170692,Energy,Energy +170690,Energy,Energy +170685,Energy,Energy +170683,Energy,Energy +170680,Energy,Energy +342125,Energy,Energy +342124,Energy,Energy +342123,Energy,Energy +342122,Energy,Energy +342118,Energy,Energy +310374,Energy,Energy +245113,Energy,Energy +245112,Energy,Energy +245110,Energy,Energy +245109,Energy,Energy +245087,Energy,Energy +223646,Energy,Energy +207488,Energy,Energy +207483,Energy,Energy +207475,Energy,Energy +200087,Energy,Energy +269192,Environment,Environment +269190,Environment,Environment +109315,Environment,Environment +109314,Environment,Environment +109313,Environment,Environment +109311,Environment,Environment +100558,Environment,Environment +90468,Environment,Environment +90463,Environment,Environment +90455,Environment,Environment +151622,Environment,Environment +151621,Environment,Environment +135755,Environment,Environment +129174,Environment,Environment +123994,Environment,Environment +111394,Environment,Environment +245113,Environment,Environment +245112,Environment,Environment +245110,Environment,Environment +245109,Environment,Environment +223669,Environment,Environment +223646,Environment,Environment +207488,Environment,Environment +207483,Environment,Environment +207475,Environment,Environment +200087,Environment,Environment +200084,Environment,Environment +200080,Environment,Environment +200077,Environment,Environment +200072,Environment,Environment +195028,Environment,Environment +195027,Environment,Environment +195026,Environment,Environment +195025,Environment,Environment +195024,Environment,Environment +195020,Environment,Environment +175249,Environment,Environment +170694,Environment,Environment +170693,Environment,Environment +170692,Environment,Environment +170691,Environment,Environment +170690,Environment,Environment +170685,Environment,Environment +170683,Environment,Environment +170680,Environment,Environment +170678,Environment,Environment +170677,Environment,Environment +170676,Environment,Environment +165084,Environment,Environment +162021,Environment,Environment +162019,Environment,Environment +356460,Environment,Environment +342128,Environment,Environment +342127,Environment,Environment +342126,Environment,Environment +342125,Environment,Environment +342124,Environment,Environment +342123,Environment,Environment +342122,Environment,Environment +342121,Environment,Environment +342120,Environment,Environment +342119,Environment,Environment +342118,Environment,Environment +335878,Environment,Environment +319056,Environment,Environment +304533,Environment,Environment +303793,Environment,Environment +303789,Environment,Environment +303648,Environment,Environment +303627,Environment,Environment +296709,International Trade,International Trade +263491,International Trade,International Trade +76274,International Trade,International Trade +111395,International Trade,International Trade +170692,International Trade,International Trade +170690,International Trade,International Trade +170685,International Trade,International Trade +170683,International Trade,International Trade +170679,International Trade,International Trade +151622,International Trade,International Trade +263489,International Trade,International Trade +245103,International Trade,International Trade +245102,International Trade,International Trade +245101,International Trade,International Trade +245099,International Trade,International Trade +245096,International Trade,International Trade +245094,International Trade,International Trade +245089,International Trade,International Trade +245085,International Trade,International Trade +241128,International Trade,International Trade +230080,International Trade,International Trade +223670,International Trade,International Trade +223669,International Trade,International Trade +223668,International Trade,International Trade +219798,International Trade,International Trade +200087,International Trade,International Trade +200084,International Trade,International Trade +200080,International Trade,International Trade +200074,International Trade,International Trade +180544,International Trade,International Trade +342124,International Trade,International Trade +342123,International Trade,International Trade +342120,International Trade,International Trade +327949,International Trade,International Trade +303648,International Trade,International Trade +303641,International Trade,International Trade +303623,International Trade,International Trade +303613,International Trade,International Trade +296713,International Trade,International Trade +170678,Mining,Mining +170676,Mining,Mining +342124,Mining,Mining +342123,Mining,Mining +342122,Mining,Mining +310374,Mining,Mining +303789,Mining,Mining +303643,Mining,Mining +303641,Mining,Mining +303613,Mining,Mining +223670,Mining,Mining +200087,Mining,Mining +200084,Mining,Mining +200080,Mining,Mining +180544,Mining,Mining +170692,Mining,Mining +170691,Mining,Mining +170690,Mining,Mining +170685,Mining,Mining +170683,Mining,Mining +170682,Mining,Mining +170680,Mining,Mining +175249,Taxation and Finance,Taxation and Finance +327949,Transportation,Transportation +310374,Transportation,Transportation +165084,Transportation,Transportation +310366,Transportation,Transportation +310358,Transportation,Transportation +310353,Transportation,Transportation +304533,Transportation,Transportation +303789,Transportation,Transportation +303648,Transportation,Transportation +303646,Transportation,Transportation +303643,Transportation,Transportation +303641,Transportation,Transportation +303627,Transportation,Transportation +303623,Transportation,Transportation +303613,Transportation,Transportation +296709,Transportation,Transportation +254195,Transportation,Transportation +254191,Transportation,Transportation +254180,Transportation,Transportation +250892,Transportation,Transportation +230089,Transportation,Transportation +219798,Transportation,Transportation +200084,Transportation,Transportation +200080,Transportation,Transportation +170692,Transportation,Transportation +170691,Transportation,Transportation +170690,Transportation,Transportation +170685,Transportation,Transportation +170683,Transportation,Transportation +170682,Transportation,Transportation +170680,Transportation,Transportation +170679,Transportation,Transportation +170678,Transportation,Transportation +170676,Transportation,Transportation +351575,Transportation,Transportation +351574,Transportation,Transportation +351573,Transportation,Transportation +349385,Transportation,Transportation +349383,Transportation,Transportation +344034,Transportation,Transportation +342126,Transportation,Transportation +342124,Transportation,Transportation +342123,Transportation,Transportation +342122,Transportation,Transportation +342121,Transportation,Transportation +342120,Transportation,Transportation +342119,Transportation,Transportation +342118,Transportation,Transportation +335878,Transportation,Transportation +363542,Forestry,Forestry +361844,Forestry,Forestry +361843,Forestry,Forestry +361842,Forestry,Forestry +351119,Forestry,Forestry +351117,Forestry,Forestry +324778,Forestry,Forestry +351117,International Trade,International Trade +324778,International Trade,International Trade +381142,International Trade,International Trade +363542,International Trade,International Trade +361844,International Trade,International Trade +361843,International Trade,International Trade +361842,International Trade,International Trade +196004,Education,Education +450186,Education,Education +83415,Education,Education +78994,Education,Education +147299,Education,Education +141914,Education,Education +99158,Education,Education +99157,Education,Education +99156,Education,Education +99155,Education,Education +93382,Education,Education +93381,Education,Education +183464,Education,Education +183444,Education,Education +183424,Education,Education +438788,Education,Education +274410,Education,Education +234671,Education,Education +196008,Education,Education +394474,Employment and Training,Employment and Training +394472,Employment and Training,Employment and Training +141914,Employment and Training,Employment and Training +130394,Employment and Training,Employment and Training +117097,Employment and Training,Employment and Training +99156,Employment and Training,Employment and Training +93381,Employment and Training,Employment and Training +196008,Employment and Training,Employment and Training +196006,Employment and Training,Employment and Training +196004,Employment and Training,Employment and Training +165918,Employment and Training,Employment and Training +450186,Employment and Training,Employment and Training +104296,Energy,Energy +353864,Energy,Energy +325068,Health,Health +428999,Health,Health +420147,Health,Health +406874,Health,Health +394474,Health,Health +391341,Health,Health +391310,Health,Health +438788,Health,Health +488150,Immigration,Immigration +488149,Immigration,Immigration +196008,Immigration,Immigration +196006,Immigration,Immigration +196004,Immigration,Immigration +183464,Immigration,Immigration +165920,Immigration,Immigration +165919,Immigration,Immigration +141914,Immigration,Immigration +234671,Immigration,Immigration +249031,Industry,Industry +420150,Industry,Industry +79014,Industry,Industry +78994,Industry,Industry +117095,Industry,Industry +117092,Industry,Industry +99158,Industry,Industry +99157,Industry,Industry +99155,Industry,Industry +93382,Industry,Industry +196007,Industry,Industry +196006,Industry,Industry +196004,Industry,Industry +165918,Industry,Industry +154643,Industry,Industry +130394,Industry,Industry +357966,Industry,Industry +381574,Infrastructure,Infrastructure +117097,Infrastructure,Infrastructure +99156,Infrastructure,Infrastructure +99155,Infrastructure,Infrastructure +196007,Infrastructure,Infrastructure +165918,Infrastructure,Infrastructure +154643,Infrastructure,Infrastructure +249031,Infrastructure,Infrastructure +511457,Infrastructure,Infrastructure +508881,Infrastructure,Infrastructure +508879,Infrastructure,Infrastructure +499371,Infrastructure,Infrastructure +496147,Infrastructure,Infrastructure +450189,Infrastructure,Infrastructure +450176,Infrastructure,Infrastructure +443896,Infrastructure,Infrastructure +443892,Infrastructure,Infrastructure +443890,Infrastructure,Infrastructure +443888,Infrastructure,Infrastructure +438788,Infrastructure,Infrastructure +438785,Infrastructure,Infrastructure +391341,Infrastructure,Infrastructure +385670,Infrastructure,Infrastructure +104298,Intellectual Property,Intellectual Property +196007,Intellectual Property,Intellectual Property +78994,Intellectual Property,Intellectual Property +99157,Intellectual Property,Intellectual Property +93382,Intellectual Property,Intellectual Property +83415,Intellectual Property,Intellectual Property +165920,International Relations,International Relations +480074,International Relations,International Relations +196008,International Relations,International Relations +196006,International Relations,International Relations +196006,International Trade,International Trade +420142,International Trade,International Trade +534785,Regional Development,Regional Development +513216,Regional Development,Regional Development +117092,Regional Development,Regional Development +99157,Regional Development,Regional Development +99156,Regional Development,Regional Development +183464,Regional Development,Regional Development +183444,Regional Development,Regional Development +183424,Regional Development,Regional Development +165918,Regional Development,Regional Development +154643,Regional Development,Regional Development +147299,Regional Development,Regional Development +130394,Regional Development,Regional Development +117095,Regional Development,Regional Development +249031,Regional Development,Regional Development +196007,Regional Development,Regional Development +196006,Regional Development,Regional Development +196004,Regional Development,Regional Development +382617,Regional Development,Regional Development +342004,Regional Development,Regional Development +338661,Regional Development,Regional Development +496146,Regional Development,Regional Development +496145,Regional Development,Regional Development +496143,Regional Development,Regional Development +496142,Regional Development,Regional Development +86455,Government Procurement,Government Procurement +111935,Government Procurement,Government Procurement +89324,Government Procurement,Government Procurement +330445,Agriculture,Agriculture +316969,Agriculture,Agriculture +140961,Agriculture,Agriculture +330454,Agriculture,Agriculture +330452,Agriculture,Agriculture +330451,Agriculture,Agriculture +330450,Agriculture,Agriculture +330448,Agriculture,Agriculture +316989,Industry,Industry +305609,Industry,Industry +160795,Industry,Industry +339989,Industry,Industry +335032,Industry,Industry +335030,Industry,Industry +330457,Industry,Industry +330453,Industry,Industry +330449,Industry,Industry +330951,Agriculture,Agriculture +329894,Agriculture,Agriculture +156265,Agriculture,Agriculture +183744,Agriculture,Agriculture +155166,Agriculture,Agriculture +147141,Agriculture,Agriculture +147140,Agriculture,Agriculture +147137,Agriculture,Agriculture +174924,Agriculture,Agriculture +172768,Agriculture,Agriculture +168971,Agriculture,Agriculture +168961,Agriculture,Agriculture +168304,Agriculture,Agriculture +168285,Agriculture,Agriculture +165461,Agriculture,Agriculture +156268,Agriculture,Agriculture +147140,International Trade,International Trade +147137,International Trade,International Trade +183744,International Trade,International Trade +174924,International Trade,International Trade +168971,International Trade,International Trade +168961,International Trade,International Trade +168304,International Trade,International Trade +168285,International Trade,International Trade +165461,International Trade,International Trade +156268,International Trade,International Trade +156266,International Trade,International Trade +156265,International Trade,International Trade +155166,International Trade,International Trade +429612,Health,Health +414719,Health,Health +158088,Health,Health +108114,Health,Health +220192,Health,Health +220191,Health,Health +220190,Health,Health +220189,Health,Health +220188,Health,Health +210911,Health,Health +210909,Health,Health +210907,Health,Health +210905,Health,Health +210902,Health,Health +210897,Health,Health +190486,Health,Health +190485,Health,Health +188263,Health,Health +188261,Health,Health +188259,Health,Health +188253,Health,Health +169568,Health,Health +169566,Health,Health +166148,Health,Health +166146,Health,Health +166145,Health,Health +166144,Health,Health +158381,Health,Health +158090,Health,Health +158089,Health,Health +395784,Health,Health +395783,Health,Health +388917,Health,Health +388916,Health,Health +388915,Health,Health +334452,Health,Health +325930,Health,Health +307030,Health,Health +307029,Health,Health +301116,Health,Health +301112,Health,Health +265970,Health,Health +265969,Health,Health +257034,Health,Health +257033,Health,Health +257032,Health,Health +257030,Health,Health +257029,Health,Health +242657,Health,Health +242655,Health,Health +242653,Health,Health +242650,Health,Health +226682,Health,Health +226681,Health,Health +226676,Health,Health +220193,Health,Health +429618,Health,Health +429617,Health,Health +338752,Environment,Environment +100692,Environment,Environment +100690,Environment,Environment +179784,Environment,Environment +338807,Environment,Environment +338806,Environment,Environment +338805,Environment,Environment +338804,Environment,Environment +338803,Environment,Environment +338804,Infrastructure,Infrastructure +338803,Infrastructure,Infrastructure +100691,Infrastructure,Infrastructure +338802,Infrastructure,Infrastructure +338752,Infrastructure,Infrastructure +338807,Infrastructure,Infrastructure +338806,Infrastructure,Infrastructure +338802,Transportation,Transportation +338752,Transportation,Transportation +338807,Transportation,Transportation +338806,Transportation,Transportation +338805,Transportation,Transportation +338804,Transportation,Transportation +481721,Education,Education +476669,Education,Education +389183,Education,Education +389118,Education,Education +386888,Education,Education +377795,Education,Education +377577,Education,Education +375215,Education,Education +370055,Education,Education +368024,Education,Education +367802,Education,Education +366565,Education,Education +364063,Education,Education +355025,Education,Education +352468,Education,Education +352467,Education,Education +352466,Education,Education +352465,Education,Education +352463,Education,Education +352280,Education,Education +350236,Education,Education +350235,Education,Education +348757,Education,Education +524301,Education,Education +524300,Education,Education +524299,Education,Education +524298,Education,Education +524297,Education,Education +524296,Education,Education +524295,Education,Education +513651,Education,Education +511598,Education,Education +510579,Education,Education +505038,Education,Education +504997,Education,Education +504480,Education,Education +504474,Education,Education +504473,Education,Education +504471,Education,Education +503757,Education,Education +497562,Education,Education +496747,Education,Education +496746,Education,Education +494449,Education,Education +485313,Education,Education +485312,Education,Education +482599,Education,Education +482256,Education,Education +482255,Education,Education +482251,Education,Education +482242,Education,Education +481719,Employment and Training,Employment and Training +350235,Health,Health +348757,Health,Health +364063,Health,Health +355025,Health,Health +352468,Health,Health +352467,Health,Health +352466,Health,Health +352465,Health,Health +352463,Health,Health +352280,Health,Health +164407,Health,Health +163404,Health,Health +441289,Agriculture,Agriculture +441287,Agriculture,Agriculture +209347,Agriculture,Agriculture +228918,Agriculture,Agriculture +228917,Agriculture,Agriculture +228916,Agriculture,Agriculture +228915,Agriculture,Agriculture +228914,Agriculture,Agriculture +228913,Agriculture,Agriculture +228912,Agriculture,Agriculture +228911,Agriculture,Agriculture +228910,Agriculture,Agriculture +391007,Agriculture,Agriculture +391005,Agriculture,Agriculture +391003,Agriculture,Agriculture +391002,Agriculture,Agriculture +390998,Agriculture,Agriculture +390995,Agriculture,Agriculture +390993,Agriculture,Agriculture +390992,Agriculture,Agriculture +390989,Agriculture,Agriculture +390987,Agriculture,Agriculture +390984,Agriculture,Agriculture +390983,Agriculture,Agriculture +390981,Agriculture,Agriculture +390977,Agriculture,Agriculture +390975,Agriculture,Agriculture +390973,Agriculture,Agriculture +390972,Agriculture,Agriculture +390971,Agriculture,Agriculture +390970,Agriculture,Agriculture +390969,Agriculture,Agriculture +390968,Agriculture,Agriculture +390967,Agriculture,Agriculture +390955,Agriculture,Agriculture +390954,Agriculture,Agriculture +390952,Agriculture,Agriculture +390951,Agriculture,Agriculture +390945,Agriculture,Agriculture +441285,Agriculture,Agriculture +441284,Agriculture,Agriculture +441282,Agriculture,Agriculture +441280,Agriculture,Agriculture +441276,Agriculture,Agriculture +441271,Agriculture,Agriculture +441270,Agriculture,Agriculture +441269,Agriculture,Agriculture +441268,Agriculture,Agriculture +441267,Agriculture,Agriculture +441265,Agriculture,Agriculture +441264,Agriculture,Agriculture +441263,Agriculture,Agriculture +441261,Agriculture,Agriculture +441260,Agriculture,Agriculture +441259,Agriculture,Agriculture +441258,Agriculture,Agriculture +441257,Agriculture,Agriculture +441256,Agriculture,Agriculture +441253,Agriculture,Agriculture +441251,Agriculture,Agriculture +441250,Agriculture,Agriculture +441248,Agriculture,Agriculture +441247,Agriculture,Agriculture +441246,Agriculture,Agriculture +441245,Agriculture,Agriculture +441244,Agriculture,Agriculture +441243,Agriculture,Agriculture +441242,Agriculture,Agriculture +441241,Agriculture,Agriculture +441240,Agriculture,Agriculture +441239,Agriculture,Agriculture +441238,Agriculture,Agriculture +441237,Agriculture,Agriculture +441236,Agriculture,Agriculture +441235,Agriculture,Agriculture +441234,Agriculture,Agriculture +441230,Agriculture,Agriculture +441229,Agriculture,Agriculture +441227,Agriculture,Agriculture +441226,Agriculture,Agriculture +441223,Agriculture,Agriculture +441082,Agriculture,Agriculture +432931,Agriculture,Agriculture +432930,Agriculture,Agriculture +432929,Agriculture,Agriculture +432928,Agriculture,Agriculture +432927,Agriculture,Agriculture +431618,Agriculture,Agriculture +430474,Agriculture,Agriculture +430132,Agriculture,Agriculture +430130,Agriculture,Agriculture +430128,Agriculture,Agriculture +430127,Agriculture,Agriculture +430126,Agriculture,Agriculture +430125,Agriculture,Agriculture +430124,Agriculture,Agriculture +430123,Agriculture,Agriculture +430122,Agriculture,Agriculture +430121,Agriculture,Agriculture +430119,Agriculture,Agriculture +430118,Agriculture,Agriculture +428201,Agriculture,Agriculture +428200,Agriculture,Agriculture +428196,Agriculture,Agriculture +428195,Agriculture,Agriculture +428192,Agriculture,Agriculture +428189,Agriculture,Agriculture +428187,Agriculture,Agriculture +426113,Agriculture,Agriculture +423491,Agriculture,Agriculture +423403,Agriculture,Agriculture +423402,Agriculture,Agriculture +423401,Agriculture,Agriculture +423305,Agriculture,Agriculture +423301,Agriculture,Agriculture +423285,Agriculture,Agriculture +423284,Agriculture,Agriculture +423281,Agriculture,Agriculture +423278,Agriculture,Agriculture +423276,Agriculture,Agriculture +423271,Agriculture,Agriculture +423270,Agriculture,Agriculture +420859,Agriculture,Agriculture +420858,Agriculture,Agriculture +420857,Agriculture,Agriculture +420856,Agriculture,Agriculture +420854,Agriculture,Agriculture +420853,Agriculture,Agriculture +420130,Agriculture,Agriculture +420128,Agriculture,Agriculture +420127,Agriculture,Agriculture +420125,Agriculture,Agriculture +420077,Agriculture,Agriculture +416460,Agriculture,Agriculture +416459,Agriculture,Agriculture +416457,Agriculture,Agriculture +416456,Agriculture,Agriculture +416455,Agriculture,Agriculture +416454,Agriculture,Agriculture +416453,Agriculture,Agriculture +416452,Agriculture,Agriculture +416450,Agriculture,Agriculture +416448,Agriculture,Agriculture +416446,Agriculture,Agriculture +416445,Agriculture,Agriculture +416443,Agriculture,Agriculture +416442,Agriculture,Agriculture +416440,Agriculture,Agriculture +416439,Agriculture,Agriculture +416437,Agriculture,Agriculture +416435,Agriculture,Agriculture +416434,Agriculture,Agriculture +416432,Agriculture,Agriculture +416430,Agriculture,Agriculture +416428,Agriculture,Agriculture +416426,Agriculture,Agriculture +416425,Agriculture,Agriculture +416422,Agriculture,Agriculture +416420,Agriculture,Agriculture +416417,Agriculture,Agriculture +416416,Agriculture,Agriculture +416415,Agriculture,Agriculture +416414,Agriculture,Agriculture +416413,Agriculture,Agriculture +416411,Agriculture,Agriculture +416410,Agriculture,Agriculture +416408,Agriculture,Agriculture +416407,Agriculture,Agriculture +416404,Agriculture,Agriculture +416402,Agriculture,Agriculture +416401,Agriculture,Agriculture +416399,Agriculture,Agriculture +416397,Agriculture,Agriculture +416395,Agriculture,Agriculture +416392,Agriculture,Agriculture +416389,Agriculture,Agriculture +416387,Agriculture,Agriculture +416386,Agriculture,Agriculture +416384,Agriculture,Agriculture +416383,Agriculture,Agriculture +416381,Agriculture,Agriculture +410153,Agriculture,Agriculture +410152,Agriculture,Agriculture +410151,Agriculture,Agriculture +410150,Agriculture,Agriculture +410148,Agriculture,Agriculture +410146,Agriculture,Agriculture +410145,Agriculture,Agriculture +410144,Agriculture,Agriculture +410143,Agriculture,Agriculture +410142,Agriculture,Agriculture +410141,Agriculture,Agriculture +410140,Agriculture,Agriculture +410138,Agriculture,Agriculture +408065,Agriculture,Agriculture +407112,Agriculture,Agriculture +405894,Agriculture,Agriculture +405893,Agriculture,Agriculture +405892,Agriculture,Agriculture +405891,Agriculture,Agriculture +405890,Agriculture,Agriculture +405889,Agriculture,Agriculture +405887,Agriculture,Agriculture +405886,Agriculture,Agriculture +405885,Agriculture,Agriculture +405881,Agriculture,Agriculture +405879,Agriculture,Agriculture +405877,Agriculture,Agriculture +403886,Agriculture,Agriculture +403464,Agriculture,Agriculture +403204,Agriculture,Agriculture +395702,Agriculture,Agriculture +395700,Agriculture,Agriculture +540213,Agriculture,Agriculture +537610,Agriculture,Agriculture +537608,Agriculture,Agriculture +534189,Agriculture,Agriculture +534166,Agriculture,Agriculture +534165,Agriculture,Agriculture +534162,Agriculture,Agriculture +534159,Agriculture,Agriculture +534158,Agriculture,Agriculture +534157,Agriculture,Agriculture +534156,Agriculture,Agriculture +534155,Agriculture,Agriculture +534154,Agriculture,Agriculture +534153,Agriculture,Agriculture +534151,Agriculture,Agriculture +534150,Agriculture,Agriculture +534147,Agriculture,Agriculture +534146,Agriculture,Agriculture +534144,Agriculture,Agriculture +534142,Agriculture,Agriculture +534140,Agriculture,Agriculture +534139,Agriculture,Agriculture +534137,Agriculture,Agriculture +534136,Agriculture,Agriculture +534134,Agriculture,Agriculture +534132,Agriculture,Agriculture +534130,Agriculture,Agriculture +534129,Agriculture,Agriculture +534128,Agriculture,Agriculture +534126,Agriculture,Agriculture +534125,Agriculture,Agriculture +534121,Agriculture,Agriculture +534118,Agriculture,Agriculture +534115,Agriculture,Agriculture +534103,Agriculture,Agriculture +531521,Agriculture,Agriculture +529999,Agriculture,Agriculture +527731,Agriculture,Agriculture +527400,Agriculture,Agriculture +527240,Agriculture,Agriculture +527107,Agriculture,Agriculture +527106,Agriculture,Agriculture +524025,Agriculture,Agriculture +524024,Agriculture,Agriculture +523644,Agriculture,Agriculture +523550,Agriculture,Agriculture +522784,Agriculture,Agriculture +521067,Agriculture,Agriculture +520959,Agriculture,Agriculture +520561,Agriculture,Agriculture +520560,Agriculture,Agriculture +520457,Agriculture,Agriculture +520455,Agriculture,Agriculture +520390,Agriculture,Agriculture +520388,Agriculture,Agriculture +519885,Agriculture,Agriculture +519147,Agriculture,Agriculture +519146,Agriculture,Agriculture +518571,Agriculture,Agriculture +518570,Agriculture,Agriculture +518568,Agriculture,Agriculture +518567,Agriculture,Agriculture +518412,Agriculture,Agriculture +518411,Agriculture,Agriculture +518409,Agriculture,Agriculture +518408,Agriculture,Agriculture +518406,Agriculture,Agriculture +518405,Agriculture,Agriculture +518404,Agriculture,Agriculture +518401,Agriculture,Agriculture +517353,Agriculture,Agriculture +517351,Agriculture,Agriculture +517239,Agriculture,Agriculture +517237,Agriculture,Agriculture +516959,Agriculture,Agriculture +516948,Agriculture,Agriculture +516818,Agriculture,Agriculture +516738,Agriculture,Agriculture +516624,Agriculture,Agriculture +516552,Agriculture,Agriculture +516551,Agriculture,Agriculture +516550,Agriculture,Agriculture +516482,Agriculture,Agriculture +516456,Agriculture,Agriculture +516454,Agriculture,Agriculture +516453,Agriculture,Agriculture +516325,Agriculture,Agriculture +516321,Agriculture,Agriculture +516217,Agriculture,Agriculture +516196,Agriculture,Agriculture +516181,Agriculture,Agriculture +515690,Agriculture,Agriculture +515086,Agriculture,Agriculture +515085,Agriculture,Agriculture +515084,Agriculture,Agriculture +515083,Agriculture,Agriculture +515082,Agriculture,Agriculture +512565,Agriculture,Agriculture +512564,Agriculture,Agriculture +512563,Agriculture,Agriculture +512562,Agriculture,Agriculture +512561,Agriculture,Agriculture +511991,Agriculture,Agriculture +511881,Agriculture,Agriculture +509344,Agriculture,Agriculture +507932,Agriculture,Agriculture +507863,Agriculture,Agriculture +506808,Agriculture,Agriculture +506715,Agriculture,Agriculture +506714,Agriculture,Agriculture +506713,Agriculture,Agriculture +506712,Agriculture,Agriculture +506711,Agriculture,Agriculture +506710,Agriculture,Agriculture +506709,Agriculture,Agriculture +506708,Agriculture,Agriculture +506707,Agriculture,Agriculture +506703,Agriculture,Agriculture +506702,Agriculture,Agriculture +506701,Agriculture,Agriculture +506700,Agriculture,Agriculture +506699,Agriculture,Agriculture +506698,Agriculture,Agriculture +506697,Agriculture,Agriculture +506696,Agriculture,Agriculture +506695,Agriculture,Agriculture +506694,Agriculture,Agriculture +506693,Agriculture,Agriculture +506692,Agriculture,Agriculture +506691,Agriculture,Agriculture +506690,Agriculture,Agriculture +506689,Agriculture,Agriculture +506688,Agriculture,Agriculture +506687,Agriculture,Agriculture +506685,Agriculture,Agriculture +506684,Agriculture,Agriculture +506679,Agriculture,Agriculture +506678,Agriculture,Agriculture +506676,Agriculture,Agriculture +506675,Agriculture,Agriculture +506674,Agriculture,Agriculture +506673,Agriculture,Agriculture +506672,Agriculture,Agriculture +506671,Agriculture,Agriculture +506669,Agriculture,Agriculture +506668,Agriculture,Agriculture +506666,Agriculture,Agriculture +506663,Agriculture,Agriculture +506661,Agriculture,Agriculture +506660,Agriculture,Agriculture +506279,Agriculture,Agriculture +506278,Agriculture,Agriculture +504931,Agriculture,Agriculture +504624,Agriculture,Agriculture +503999,Agriculture,Agriculture +499885,Agriculture,Agriculture +498864,Agriculture,Agriculture +497938,Agriculture,Agriculture +497540,Agriculture,Agriculture +496619,Agriculture,Agriculture +496447,Agriculture,Agriculture +496444,Agriculture,Agriculture +496355,Agriculture,Agriculture +495934,Agriculture,Agriculture +494162,Agriculture,Agriculture +494161,Agriculture,Agriculture +494157,Agriculture,Agriculture +494156,Agriculture,Agriculture +494155,Agriculture,Agriculture +494153,Agriculture,Agriculture +494152,Agriculture,Agriculture +494150,Agriculture,Agriculture +494149,Agriculture,Agriculture +492047,Agriculture,Agriculture +492046,Agriculture,Agriculture +492044,Agriculture,Agriculture +492043,Agriculture,Agriculture +492042,Agriculture,Agriculture +492041,Agriculture,Agriculture +492040,Agriculture,Agriculture +492039,Agriculture,Agriculture +492038,Agriculture,Agriculture +491998,Agriculture,Agriculture +491997,Agriculture,Agriculture +491996,Agriculture,Agriculture +491995,Agriculture,Agriculture +491994,Agriculture,Agriculture +491993,Agriculture,Agriculture +491992,Agriculture,Agriculture +491990,Agriculture,Agriculture +491989,Agriculture,Agriculture +491988,Agriculture,Agriculture +491987,Agriculture,Agriculture +491986,Agriculture,Agriculture +491985,Agriculture,Agriculture +491984,Agriculture,Agriculture +491983,Agriculture,Agriculture +491982,Agriculture,Agriculture +491981,Agriculture,Agriculture +491979,Agriculture,Agriculture +491978,Agriculture,Agriculture +491976,Agriculture,Agriculture +491975,Agriculture,Agriculture +491974,Agriculture,Agriculture +491973,Agriculture,Agriculture +491972,Agriculture,Agriculture +491971,Agriculture,Agriculture +491970,Agriculture,Agriculture +491969,Agriculture,Agriculture +491968,Agriculture,Agriculture +479390,Agriculture,Agriculture +479387,Agriculture,Agriculture +479382,Agriculture,Agriculture +479377,Agriculture,Agriculture +479376,Agriculture,Agriculture +477459,Agriculture,Agriculture +477376,Agriculture,Agriculture +477371,Agriculture,Agriculture +477366,Agriculture,Agriculture +477364,Agriculture,Agriculture +477360,Agriculture,Agriculture +475381,Agriculture,Agriculture +475353,Agriculture,Agriculture +470355,Agriculture,Agriculture +470352,Agriculture,Agriculture +470345,Agriculture,Agriculture +468124,Agriculture,Agriculture +468123,Agriculture,Agriculture +468122,Agriculture,Agriculture +468121,Agriculture,Agriculture +468120,Agriculture,Agriculture +468119,Agriculture,Agriculture +468118,Agriculture,Agriculture +468117,Agriculture,Agriculture +468116,Agriculture,Agriculture +468115,Agriculture,Agriculture +468114,Agriculture,Agriculture +468113,Agriculture,Agriculture +468112,Agriculture,Agriculture +468111,Agriculture,Agriculture +468110,Agriculture,Agriculture +468109,Agriculture,Agriculture +468108,Agriculture,Agriculture +468107,Agriculture,Agriculture +468106,Agriculture,Agriculture +468105,Agriculture,Agriculture +467971,Agriculture,Agriculture +467970,Agriculture,Agriculture +467968,Agriculture,Agriculture +467967,Agriculture,Agriculture +467966,Agriculture,Agriculture +467965,Agriculture,Agriculture +467964,Agriculture,Agriculture +467963,Agriculture,Agriculture +467962,Agriculture,Agriculture +467961,Agriculture,Agriculture +467775,Agriculture,Agriculture +467768,Agriculture,Agriculture +467764,Agriculture,Agriculture +467760,Agriculture,Agriculture +467668,Agriculture,Agriculture +467663,Agriculture,Agriculture +467660,Agriculture,Agriculture +467658,Agriculture,Agriculture +464785,Agriculture,Agriculture +462683,Agriculture,Agriculture +462680,Agriculture,Agriculture +462408,Agriculture,Agriculture +462405,Agriculture,Agriculture +462403,Agriculture,Agriculture +461048,Agriculture,Agriculture +461047,Agriculture,Agriculture +460139,Agriculture,Agriculture +459622,Agriculture,Agriculture +459621,Agriculture,Agriculture +459185,Agriculture,Agriculture +458384,Agriculture,Agriculture +457871,Agriculture,Agriculture +457779,Agriculture,Agriculture +454869,Agriculture,Agriculture +454867,Agriculture,Agriculture +454866,Agriculture,Agriculture +454865,Agriculture,Agriculture +454863,Agriculture,Agriculture +454862,Agriculture,Agriculture +454861,Agriculture,Agriculture +454860,Agriculture,Agriculture +454858,Agriculture,Agriculture +454855,Agriculture,Agriculture +454854,Agriculture,Agriculture +454852,Agriculture,Agriculture +454851,Agriculture,Agriculture +454850,Agriculture,Agriculture +454849,Agriculture,Agriculture +454848,Agriculture,Agriculture +454846,Agriculture,Agriculture +451785,Agriculture,Agriculture +451783,Agriculture,Agriculture +451781,Agriculture,Agriculture +450236,Agriculture,Agriculture +447383,Agriculture,Agriculture +443342,Agriculture,Agriculture +441537,Agriculture,Agriculture +441533,Agriculture,Agriculture +441297,Agriculture,Agriculture +441295,Agriculture,Agriculture +441293,Agriculture,Agriculture +441292,Agriculture,Agriculture +515086,Consumer Issues,Consumer Issues +507863,Consumer Issues,Consumer Issues +470352,Employment and Training,Employment and Training +470345,Employment and Training,Employment and Training +467971,Employment and Training,Employment and Training +461048,Employment and Training,Employment and Training +447383,Employment and Training,Employment and Training +428187,Employment and Training,Employment and Training +426113,Employment and Training,Employment and Training +420859,Employment and Training,Employment and Training +420858,Employment and Training,Employment and Training +420857,Employment and Training,Employment and Training +416455,Employment and Training,Employment and Training +416428,Employment and Training,Employment and Training +416422,Employment and Training,Employment and Training +416413,Employment and Training,Employment and Training +411868,Employment and Training,Employment and Training +410138,Employment and Training,Employment and Training +534157,Employment and Training,Employment and Training +534156,Employment and Training,Employment and Training +534155,Employment and Training,Employment and Training +534154,Employment and Training,Employment and Training +534153,Employment and Training,Employment and Training +534151,Employment and Training,Employment and Training +534150,Employment and Training,Employment and Training +534146,Employment and Training,Employment and Training +534142,Employment and Training,Employment and Training +534140,Employment and Training,Employment and Training +534139,Employment and Training,Employment and Training +534137,Employment and Training,Employment and Training +534136,Employment and Training,Employment and Training +534134,Employment and Training,Employment and Training +534132,Employment and Training,Employment and Training +534130,Employment and Training,Employment and Training +534129,Employment and Training,Employment and Training +534128,Employment and Training,Employment and Training +534126,Employment and Training,Employment and Training +534125,Employment and Training,Employment and Training +534121,Employment and Training,Employment and Training +534118,Employment and Training,Employment and Training +534115,Employment and Training,Employment and Training +534103,Employment and Training,Employment and Training +531526,Employment and Training,Employment and Training +531488,Employment and Training,Employment and Training +527106,Employment and Training,Employment and Training +523644,Employment and Training,Employment and Training +522784,Employment and Training,Employment and Training +521067,Employment and Training,Employment and Training +520959,Employment and Training,Employment and Training +520561,Employment and Training,Employment and Training +520560,Employment and Training,Employment and Training +520457,Employment and Training,Employment and Training +520455,Employment and Training,Employment and Training +520390,Employment and Training,Employment and Training +520388,Employment and Training,Employment and Training +519147,Employment and Training,Employment and Training +519146,Employment and Training,Employment and Training +517239,Employment and Training,Employment and Training +516818,Employment and Training,Employment and Training +516738,Employment and Training,Employment and Training +516325,Employment and Training,Employment and Training +516321,Employment and Training,Employment and Training +515690,Employment and Training,Employment and Training +515085,Employment and Training,Employment and Training +515084,Employment and Training,Employment and Training +515083,Employment and Training,Employment and Training +515082,Employment and Training,Employment and Training +512565,Employment and Training,Employment and Training +512563,Employment and Training,Employment and Training +512562,Employment and Training,Employment and Training +512561,Employment and Training,Employment and Training +507932,Employment and Training,Employment and Training +506808,Employment and Training,Employment and Training +506715,Employment and Training,Employment and Training +506714,Employment and Training,Employment and Training +506713,Employment and Training,Employment and Training +506712,Employment and Training,Employment and Training +506711,Employment and Training,Employment and Training +506710,Employment and Training,Employment and Training +506709,Employment and Training,Employment and Training +506708,Employment and Training,Employment and Training +506707,Employment and Training,Employment and Training +506703,Employment and Training,Employment and Training +506702,Employment and Training,Employment and Training +506701,Employment and Training,Employment and Training +506700,Employment and Training,Employment and Training +506699,Employment and Training,Employment and Training +506698,Employment and Training,Employment and Training +506697,Employment and Training,Employment and Training +506696,Employment and Training,Employment and Training +506695,Employment and Training,Employment and Training +506694,Employment and Training,Employment and Training +506693,Employment and Training,Employment and Training +506692,Employment and Training,Employment and Training +506691,Employment and Training,Employment and Training +506690,Employment and Training,Employment and Training +506689,Employment and Training,Employment and Training +506688,Employment and Training,Employment and Training +506687,Employment and Training,Employment and Training +506685,Employment and Training,Employment and Training +506684,Employment and Training,Employment and Training +506679,Employment and Training,Employment and Training +506678,Employment and Training,Employment and Training +506675,Employment and Training,Employment and Training +506674,Employment and Training,Employment and Training +506673,Employment and Training,Employment and Training +506672,Employment and Training,Employment and Training +506671,Employment and Training,Employment and Training +506669,Employment and Training,Employment and Training +506668,Employment and Training,Employment and Training +506666,Employment and Training,Employment and Training +497540,Employment and Training,Employment and Training +493808,Employment and Training,Employment and Training +492048,Employment and Training,Employment and Training +492047,Employment and Training,Employment and Training +492046,Employment and Training,Employment and Training +492044,Employment and Training,Employment and Training +492043,Employment and Training,Employment and Training +492042,Employment and Training,Employment and Training +492040,Employment and Training,Employment and Training +492039,Employment and Training,Employment and Training +492038,Employment and Training,Employment and Training +491997,Employment and Training,Employment and Training +491995,Employment and Training,Employment and Training +491994,Employment and Training,Employment and Training +491993,Employment and Training,Employment and Training +491992,Employment and Training,Employment and Training +491990,Employment and Training,Employment and Training +491989,Employment and Training,Employment and Training +491988,Employment and Training,Employment and Training +491987,Employment and Training,Employment and Training +491986,Employment and Training,Employment and Training +491985,Employment and Training,Employment and Training +491983,Employment and Training,Employment and Training +491982,Employment and Training,Employment and Training +491981,Employment and Training,Employment and Training +491979,Employment and Training,Employment and Training +491978,Employment and Training,Employment and Training +491976,Employment and Training,Employment and Training +491975,Employment and Training,Employment and Training +491974,Employment and Training,Employment and Training +491973,Employment and Training,Employment and Training +491972,Employment and Training,Employment and Training +491971,Employment and Training,Employment and Training +491970,Employment and Training,Employment and Training +491969,Employment and Training,Employment and Training +491968,Employment and Training,Employment and Training +479389,Employment and Training,Employment and Training +477376,Employment and Training,Employment and Training +511881,Energy,Energy +506278,Energy,Energy +506694,Environment,Environment +506693,Environment,Environment +428189,Environment,Environment +423403,Environment,Environment +423401,Environment,Environment +416415,Environment,Environment +410153,Environment,Environment +410152,Environment,Environment +506692,Environment,Environment +506691,Environment,Environment +506689,Environment,Environment +506688,Environment,Environment +506687,Environment,Environment +506685,Environment,Environment +506684,Environment,Environment +506679,Environment,Environment +506678,Environment,Environment +506675,Environment,Environment +506674,Environment,Environment +506673,Environment,Environment +506672,Environment,Environment +506671,Environment,Environment +506669,Environment,Environment +506668,Environment,Environment +506666,Environment,Environment +506663,Environment,Environment +506661,Environment,Environment +506660,Environment,Environment +494157,Environment,Environment +492047,Environment,Environment +492046,Environment,Environment +492044,Environment,Environment +492043,Environment,Environment +492042,Environment,Environment +492041,Environment,Environment +492040,Environment,Environment +492039,Environment,Environment +492038,Environment,Environment +491997,Environment,Environment +491995,Environment,Environment +491994,Environment,Environment +491993,Environment,Environment +491992,Environment,Environment +491990,Environment,Environment +491989,Environment,Environment +491988,Environment,Environment +491987,Environment,Environment +491986,Environment,Environment +491985,Environment,Environment +491983,Environment,Environment +491982,Environment,Environment +491981,Environment,Environment +491979,Environment,Environment +491978,Environment,Environment +491976,Environment,Environment +491975,Environment,Environment +491974,Environment,Environment +491973,Environment,Environment +491972,Environment,Environment +491971,Environment,Environment +491970,Environment,Environment +491969,Environment,Environment +491968,Environment,Environment +468123,Environment,Environment +468122,Environment,Environment +468121,Environment,Environment +468120,Environment,Environment +468119,Environment,Environment +468118,Environment,Environment +468117,Environment,Environment +468116,Environment,Environment +468112,Environment,Environment +468111,Environment,Environment +468110,Environment,Environment +468109,Environment,Environment +468108,Environment,Environment +468107,Environment,Environment +468106,Environment,Environment +468105,Environment,Environment +467970,Environment,Environment +467968,Environment,Environment +467967,Environment,Environment +467966,Environment,Environment +467965,Environment,Environment +467964,Environment,Environment +467963,Environment,Environment +467961,Environment,Environment +467775,Environment,Environment +467768,Environment,Environment +467764,Environment,Environment +467760,Environment,Environment +467668,Environment,Environment +467663,Environment,Environment +467660,Environment,Environment +467658,Environment,Environment +464782,Environment,Environment +461048,Environment,Environment +447383,Environment,Environment +432930,Environment,Environment +432928,Environment,Environment +432927,Environment,Environment +430126,Environment,Environment +430125,Environment,Environment +430122,Environment,Environment +430120,Environment,Environment +430119,Environment,Environment +534144,Environment,Environment +534103,Environment,Environment +529999,Environment,Environment +512565,Environment,Environment +512563,Environment,Environment +512562,Environment,Environment +512561,Environment,Environment +511881,Environment,Environment +506808,Environment,Environment +506715,Environment,Environment +506714,Environment,Environment +506713,Environment,Environment +506712,Environment,Environment +506711,Environment,Environment +506710,Environment,Environment +506709,Environment,Environment +506708,Environment,Environment +506707,Environment,Environment +506703,Environment,Environment +506702,Environment,Environment +506701,Environment,Environment +506700,Environment,Environment +506699,Environment,Environment +506698,Environment,Environment +506697,Environment,Environment +506696,Environment,Environment +516959,Financial Institutions,Financial Institutions +516948,Financial Institutions,Financial Institutions +509344,Financial Institutions,Financial Institutions +428196,Health,Health +423281,Health,Health +209347,Health,Health +423278,Health,Health +423276,Health,Health +420072,Health,Health +416452,Health,Health +403204,Health,Health +391007,Health,Health +391005,Health,Health +391003,Health,Health +391002,Health,Health +390998,Health,Health +390995,Health,Health +390993,Health,Health +390992,Health,Health +390989,Health,Health +390987,Health,Health +390984,Health,Health +390983,Health,Health +390981,Health,Health +390977,Health,Health +390975,Health,Health +390973,Health,Health +390972,Health,Health +390971,Health,Health +390970,Health,Health +390969,Health,Health +390968,Health,Health +390967,Health,Health +390955,Health,Health +390954,Health,Health +390952,Health,Health +390951,Health,Health +390945,Health,Health +534159,Health,Health +527731,Health,Health +512564,Health,Health +506676,Health,Health +498864,Health,Health +494162,Health,Health +494161,Health,Health +494157,Health,Health +494155,Health,Health +494153,Health,Health +494152,Health,Health +494150,Health,Health +494149,Health,Health +477376,Health,Health +468124,Health,Health +468123,Health,Health +468122,Health,Health +468121,Health,Health +468120,Health,Health +468119,Health,Health +468118,Health,Health +468117,Health,Health +468116,Health,Health +468115,Health,Health +468114,Health,Health +468113,Health,Health +468112,Health,Health +468111,Health,Health +468110,Health,Health +468109,Health,Health +468108,Health,Health +468107,Health,Health +468106,Health,Health +468105,Health,Health +467970,Health,Health +467968,Health,Health +467967,Health,Health +467966,Health,Health +467965,Health,Health +467964,Health,Health +467963,Health,Health +467962,Health,Health +467961,Health,Health +467775,Health,Health +467768,Health,Health +467764,Health,Health +467760,Health,Health +467668,Health,Health +467663,Health,Health +467660,Health,Health +467658,Health,Health +459621,Health,Health +458384,Health,Health +457871,Health,Health +454869,Health,Health +454866,Health,Health +454865,Health,Health +454863,Health,Health +454862,Health,Health +454860,Health,Health +454858,Health,Health +454855,Health,Health +454854,Health,Health +454852,Health,Health +454851,Health,Health +454850,Health,Health +454849,Health,Health +454848,Health,Health +454846,Health,Health +451785,Health,Health +450236,Health,Health +443342,Health,Health +441537,Health,Health +441533,Health,Health +441297,Health,Health +441295,Health,Health +441293,Health,Health +441292,Health,Health +441290,Health,Health +441289,Health,Health +441287,Health,Health +441285,Health,Health +441284,Health,Health +441282,Health,Health +441280,Health,Health +441276,Health,Health +441270,Health,Health +441269,Health,Health +441268,Health,Health +441267,Health,Health +441265,Health,Health +441264,Health,Health +441263,Health,Health +441261,Health,Health +441260,Health,Health +441259,Health,Health +441258,Health,Health +441257,Health,Health +441256,Health,Health +441251,Health,Health +441250,Health,Health +441248,Health,Health +441247,Health,Health +441246,Health,Health +441245,Health,Health +441244,Health,Health +441243,Health,Health +441242,Health,Health +441241,Health,Health +441240,Health,Health +441239,Health,Health +441238,Health,Health +441237,Health,Health +441236,Health,Health +441235,Health,Health +441234,Health,Health +441230,Health,Health +441229,Health,Health +441227,Health,Health +441226,Health,Health +441223,Health,Health +432929,Health,Health +420858,Immigration,Immigration +420857,Immigration,Immigration +395702,Immigration,Immigration +461047,Immigration,Immigration +457796,Immigration,Immigration +457779,Immigration,Immigration +430124,Immigration,Immigration +423275,Immigration,Immigration +423269,Immigration,Immigration +467660,Industry,Industry +467658,Industry,Industry +416456,Industry,Industry +416448,Industry,Industry +416446,Industry,Industry +416432,Industry,Industry +534158,Industry,Industry +524025,Industry,Industry +524024,Industry,Industry +523550,Industry,Industry +520561,Industry,Industry +520560,Industry,Industry +516818,Industry,Industry +516738,Industry,Industry +516552,Industry,Industry +516325,Industry,Industry +516321,Industry,Industry +515086,Industry,Industry +512564,Industry,Industry +511991,Industry,Industry +509344,Industry,Industry +507863,Industry,Industry +506279,Industry,Industry +499885,Industry,Industry +468123,Industry,Industry +468122,Industry,Industry +468121,Industry,Industry +468120,Industry,Industry +468119,Industry,Industry +468118,Industry,Industry +468117,Industry,Industry +468116,Industry,Industry +468114,Industry,Industry +468112,Industry,Industry +468111,Industry,Industry +468110,Industry,Industry +468109,Industry,Industry +468108,Industry,Industry +468107,Industry,Industry +468106,Industry,Industry +468105,Industry,Industry +467970,Industry,Industry +467968,Industry,Industry +467967,Industry,Industry +467966,Industry,Industry +467965,Industry,Industry +467964,Industry,Industry +467963,Industry,Industry +467961,Industry,Industry +467775,Industry,Industry +467768,Industry,Industry +467764,Industry,Industry +467760,Industry,Industry +467668,Industry,Industry +491984,Internal Trade,Internal Trade +462405,Internal Trade,Internal Trade +445561,Internal Trade,Internal Trade +527106,Internal Trade,Internal Trade +524025,Internal Trade,Internal Trade +523644,Internal Trade,Internal Trade +523550,Internal Trade,Internal Trade +521067,Internal Trade,Internal Trade +520959,Internal Trade,Internal Trade +520561,Internal Trade,Internal Trade +520560,Internal Trade,Internal Trade +520457,Internal Trade,Internal Trade +520455,Internal Trade,Internal Trade +520390,Internal Trade,Internal Trade +519885,Internal Trade,Internal Trade +519147,Internal Trade,Internal Trade +519146,Internal Trade,Internal Trade +518571,Internal Trade,Internal Trade +518570,Internal Trade,Internal Trade +518568,Internal Trade,Internal Trade +518567,Internal Trade,Internal Trade +518412,Internal Trade,Internal Trade +518411,Internal Trade,Internal Trade +518409,Internal Trade,Internal Trade +518408,Internal Trade,Internal Trade +518406,Internal Trade,Internal Trade +518405,Internal Trade,Internal Trade +518404,Internal Trade,Internal Trade +518401,Internal Trade,Internal Trade +517353,Internal Trade,Internal Trade +517351,Internal Trade,Internal Trade +517239,Internal Trade,Internal Trade +517237,Internal Trade,Internal Trade +516959,Internal Trade,Internal Trade +516948,Internal Trade,Internal Trade +516624,Internal Trade,Internal Trade +516552,Internal Trade,Internal Trade +516551,Internal Trade,Internal Trade +516550,Internal Trade,Internal Trade +516482,Internal Trade,Internal Trade +516456,Internal Trade,Internal Trade +516454,Internal Trade,Internal Trade +516453,Internal Trade,Internal Trade +516217,Internal Trade,Internal Trade +516196,Internal Trade,Internal Trade +516181,Internal Trade,Internal Trade +534134,International Trade,International Trade +534132,International Trade,International Trade +228912,International Trade,International Trade +209347,International Trade,International Trade +441234,International Trade,International Trade +441230,International Trade,International Trade +441229,International Trade,International Trade +441227,International Trade,International Trade +441226,International Trade,International Trade +441223,International Trade,International Trade +432931,International Trade,International Trade +431618,International Trade,International Trade +430130,International Trade,International Trade +430128,International Trade,International Trade +428195,International Trade,International Trade +428189,International Trade,International Trade +426110,International Trade,International Trade +423491,International Trade,International Trade +423402,International Trade,International Trade +423305,International Trade,International Trade +423285,International Trade,International Trade +423271,International Trade,International Trade +423270,International Trade,International Trade +420855,International Trade,International Trade +420130,International Trade,International Trade +420128,International Trade,International Trade +420127,International Trade,International Trade +420077,International Trade,International Trade +420075,International Trade,International Trade +420074,International Trade,International Trade +420073,International Trade,International Trade +417714,International Trade,International Trade +416460,International Trade,International Trade +416456,International Trade,International Trade +416448,International Trade,International Trade +416444,International Trade,International Trade +416419,International Trade,International Trade +416411,International Trade,International Trade +416399,International Trade,International Trade +411872,International Trade,International Trade +411871,International Trade,International Trade +411869,International Trade,International Trade +410148,International Trade,International Trade +410146,International Trade,International Trade +410144,International Trade,International Trade +410143,International Trade,International Trade +410142,International Trade,International Trade +407626,International Trade,International Trade +405894,International Trade,International Trade +391007,International Trade,International Trade +391005,International Trade,International Trade +391003,International Trade,International Trade +391002,International Trade,International Trade +390998,International Trade,International Trade +390995,International Trade,International Trade +390993,International Trade,International Trade +390992,International Trade,International Trade +390989,International Trade,International Trade +390987,International Trade,International Trade +390984,International Trade,International Trade +390983,International Trade,International Trade +390981,International Trade,International Trade +390977,International Trade,International Trade +390975,International Trade,International Trade +390973,International Trade,International Trade +390972,International Trade,International Trade +390971,International Trade,International Trade +390970,International Trade,International Trade +390969,International Trade,International Trade +390968,International Trade,International Trade +390967,International Trade,International Trade +390955,International Trade,International Trade +390954,International Trade,International Trade +390952,International Trade,International Trade +390945,International Trade,International Trade +534130,International Trade,International Trade +534129,International Trade,International Trade +534128,International Trade,International Trade +534126,International Trade,International Trade +534125,International Trade,International Trade +534121,International Trade,International Trade +534118,International Trade,International Trade +534115,International Trade,International Trade +527400,International Trade,International Trade +527107,International Trade,International Trade +527106,International Trade,International Trade +524025,International Trade,International Trade +524024,International Trade,International Trade +523644,International Trade,International Trade +523550,International Trade,International Trade +521067,International Trade,International Trade +520959,International Trade,International Trade +520561,International Trade,International Trade +520560,International Trade,International Trade +520457,International Trade,International Trade +519885,International Trade,International Trade +519147,International Trade,International Trade +518571,International Trade,International Trade +517353,International Trade,International Trade +517351,International Trade,International Trade +517239,International Trade,International Trade +517237,International Trade,International Trade +516959,International Trade,International Trade +516948,International Trade,International Trade +516624,International Trade,International Trade +516552,International Trade,International Trade +516551,International Trade,International Trade +516550,International Trade,International Trade +516482,International Trade,International Trade +516456,International Trade,International Trade +516454,International Trade,International Trade +516453,International Trade,International Trade +516217,International Trade,International Trade +516196,International Trade,International Trade +516181,International Trade,International Trade +491984,International Trade,International Trade +491977,International Trade,International Trade +477371,International Trade,International Trade +462683,International Trade,International Trade +462680,International Trade,International Trade +458384,International Trade,International Trade +451783,International Trade,International Trade +441297,International Trade,International Trade +441295,International Trade,International Trade +441293,International Trade,International Trade +441292,International Trade,International Trade +441290,International Trade,International Trade +441289,International Trade,International Trade +441287,International Trade,International Trade +441285,International Trade,International Trade +441284,International Trade,International Trade +441282,International Trade,International Trade +441280,International Trade,International Trade +441276,International Trade,International Trade +441271,International Trade,International Trade +441270,International Trade,International Trade +441269,International Trade,International Trade +441268,International Trade,International Trade +441265,International Trade,International Trade +441264,International Trade,International Trade +441263,International Trade,International Trade +441261,International Trade,International Trade +441260,International Trade,International Trade +441259,International Trade,International Trade +441258,International Trade,International Trade +441257,International Trade,International Trade +441256,International Trade,International Trade +441251,International Trade,International Trade +441250,International Trade,International Trade +441248,International Trade,International Trade +441247,International Trade,International Trade +441246,International Trade,International Trade +441245,International Trade,International Trade +441244,International Trade,International Trade +441243,International Trade,International Trade +441242,International Trade,International Trade +441241,International Trade,International Trade +441240,International Trade,International Trade +441239,International Trade,International Trade +441238,International Trade,International Trade +441237,International Trade,International Trade +441236,International Trade,International Trade +441235,International Trade,International Trade +537610,International Trade,International Trade +534189,International Trade,International Trade +534166,International Trade,International Trade +534157,International Trade,International Trade +534156,International Trade,International Trade +534155,International Trade,International Trade +534154,International Trade,International Trade +534153,International Trade,International Trade +534151,International Trade,International Trade +534150,International Trade,International Trade +534147,International Trade,International Trade +534146,International Trade,International Trade +534142,International Trade,International Trade +534140,International Trade,International Trade +534139,International Trade,International Trade +534137,International Trade,International Trade +496444,Labour,Labour +496355,Labour,Labour +228912,Labour,Labour +228911,Labour,Labour +461048,Labour,Labour +461047,Labour,Labour +457796,Labour,Labour +457795,Labour,Labour +457779,Labour,Labour +447383,Labour,Labour +441297,Labour,Labour +441295,Labour,Labour +441293,Labour,Labour +441292,Labour,Labour +441290,Labour,Labour +441289,Labour,Labour +441287,Labour,Labour +441285,Labour,Labour +441284,Labour,Labour +441282,Labour,Labour +441280,Labour,Labour +441276,Labour,Labour +441270,Labour,Labour +441269,Labour,Labour +441268,Labour,Labour +441265,Labour,Labour +441264,Labour,Labour +441263,Labour,Labour +441261,Labour,Labour +441260,Labour,Labour +441259,Labour,Labour +441258,Labour,Labour +441257,Labour,Labour +441256,Labour,Labour +441251,Labour,Labour +441250,Labour,Labour +441248,Labour,Labour +441247,Labour,Labour +441246,Labour,Labour +441245,Labour,Labour +441244,Labour,Labour +441243,Labour,Labour +441242,Labour,Labour +441241,Labour,Labour +441240,Labour,Labour +441239,Labour,Labour +441238,Labour,Labour +441237,Labour,Labour +441236,Labour,Labour +441235,Labour,Labour +441234,Labour,Labour +441230,Labour,Labour +441229,Labour,Labour +441227,Labour,Labour +441226,Labour,Labour +441223,Labour,Labour +436849,Labour,Labour +430124,Labour,Labour +430122,Labour,Labour +428193,Labour,Labour +428192,Labour,Labour +428189,Labour,Labour +428187,Labour,Labour +426113,Labour,Labour +423491,Labour,Labour +423301,Labour,Labour +423285,Labour,Labour +423284,Labour,Labour +423275,Labour,Labour +423274,Labour,Labour +423273,Labour,Labour +423272,Labour,Labour +423270,Labour,Labour +423269,Labour,Labour +411868,Labour,Labour +407696,Labour,Labour +407691,Labour,Labour +407112,Labour,Labour +395702,Labour,Labour +391007,Labour,Labour +391005,Labour,Labour +391003,Labour,Labour +391002,Labour,Labour +390998,Labour,Labour +390995,Labour,Labour +390993,Labour,Labour +390992,Labour,Labour +390989,Labour,Labour +390987,Labour,Labour +390984,Labour,Labour +390983,Labour,Labour +390981,Labour,Labour +390977,Labour,Labour +390975,Labour,Labour +390973,Labour,Labour +390972,Labour,Labour +390971,Labour,Labour +390970,Labour,Labour +390969,Labour,Labour +390968,Labour,Labour +390967,Labour,Labour +390955,Labour,Labour +390954,Labour,Labour +390952,Labour,Labour +390945,Labour,Labour +523644,Labour,Labour +522784,Labour,Labour +521067,Labour,Labour +520959,Labour,Labour +520561,Labour,Labour +520560,Labour,Labour +520457,Labour,Labour +520455,Labour,Labour +520390,Labour,Labour +520388,Labour,Labour +519147,Labour,Labour +519146,Labour,Labour +517239,Labour,Labour +516818,Labour,Labour +516738,Labour,Labour +516325,Labour,Labour +516321,Labour,Labour +512563,Labour,Labour +507932,Labour,Labour +506808,Labour,Labour +506715,Labour,Labour +506714,Labour,Labour +506713,Labour,Labour +506712,Labour,Labour +506711,Labour,Labour +506710,Labour,Labour +506709,Labour,Labour +506708,Labour,Labour +506707,Labour,Labour +506703,Labour,Labour +506702,Labour,Labour +506701,Labour,Labour +506700,Labour,Labour +506699,Labour,Labour +506698,Labour,Labour +506697,Labour,Labour +506696,Labour,Labour +506695,Labour,Labour +506694,Labour,Labour +506693,Labour,Labour +506692,Labour,Labour +506691,Labour,Labour +506690,Labour,Labour +506689,Labour,Labour +506688,Labour,Labour +506687,Labour,Labour +506685,Labour,Labour +506684,Labour,Labour +506679,Labour,Labour +506678,Labour,Labour +506675,Labour,Labour +506674,Labour,Labour +506673,Labour,Labour +506672,Labour,Labour +506671,Labour,Labour +506669,Labour,Labour +506668,Labour,Labour +506666,Labour,Labour +506663,Labour,Labour +506661,Labour,Labour +506660,Labour,Labour +504931,Labour,Labour +503999,Labour,Labour +499885,Labour,Labour +498864,Labour,Labour +497540,Labour,Labour +428197,Small Business,Small Business +410141,Small Business,Small Business +462680,Small Business,Small Business +462405,Small Business,Small Business +460139,Small Business,Small Business +454867,Small Business,Small Business +454861,Small Business,Small Business +395700,Taxation and Finance,Taxation and Finance +394227,Taxation and Finance,Taxation and Finance +461048,Taxation and Finance,Taxation and Finance +459622,Taxation and Finance,Taxation and Finance +457871,Taxation and Finance,Taxation and Finance +454869,Taxation and Finance,Taxation and Finance +454867,Taxation and Finance,Taxation and Finance +454866,Taxation and Finance,Taxation and Finance +454865,Taxation and Finance,Taxation and Finance +454862,Taxation and Finance,Taxation and Finance +454861,Taxation and Finance,Taxation and Finance +454858,Taxation and Finance,Taxation and Finance +454855,Taxation and Finance,Taxation and Finance +454854,Taxation and Finance,Taxation and Finance +454852,Taxation and Finance,Taxation and Finance +454851,Taxation and Finance,Taxation and Finance +454850,Taxation and Finance,Taxation and Finance +454849,Taxation and Finance,Taxation and Finance +454848,Taxation and Finance,Taxation and Finance +454846,Taxation and Finance,Taxation and Finance +447383,Taxation and Finance,Taxation and Finance +447376,Taxation and Finance,Taxation and Finance +432928,Taxation and Finance,Taxation and Finance +430126,Taxation and Finance,Taxation and Finance +430125,Taxation and Finance,Taxation and Finance +430123,Taxation and Finance,Taxation and Finance +430121,Taxation and Finance,Taxation and Finance +430120,Taxation and Finance,Taxation and Finance +428200,Taxation and Finance,Taxation and Finance +428197,Taxation and Finance,Taxation and Finance +428189,Taxation and Finance,Taxation and Finance +426105,Taxation and Finance,Taxation and Finance +426102,Taxation and Finance,Taxation and Finance +420861,Taxation and Finance,Taxation and Finance +420854,Taxation and Finance,Taxation and Finance +420077,Taxation and Finance,Taxation and Finance +410151,Taxation and Finance,Taxation and Finance +410150,Taxation and Finance,Taxation and Finance +410148,Taxation and Finance,Taxation and Finance +410145,Taxation and Finance,Taxation and Finance +410144,Taxation and Finance,Taxation and Finance +410142,Taxation and Finance,Taxation and Finance +410141,Taxation and Finance,Taxation and Finance +405892,Taxation and Finance,Taxation and Finance +405891,Taxation and Finance,Taxation and Finance +405890,Taxation and Finance,Taxation and Finance +405889,Taxation and Finance,Taxation and Finance +405887,Taxation and Finance,Taxation and Finance +405886,Taxation and Finance,Taxation and Finance +405885,Taxation and Finance,Taxation and Finance +405881,Taxation and Finance,Taxation and Finance +405879,Taxation and Finance,Taxation and Finance +405877,Taxation and Finance,Taxation and Finance +403464,Taxation and Finance,Taxation and Finance +496355,Transportation,Transportation +491977,Transportation,Transportation +537610,Transportation,Transportation +534166,Transportation,Transportation +534157,Transportation,Transportation +534156,Transportation,Transportation +534155,Transportation,Transportation +534154,Transportation,Transportation +534153,Transportation,Transportation +534151,Transportation,Transportation +534150,Transportation,Transportation +534147,Transportation,Transportation +534146,Transportation,Transportation +534142,Transportation,Transportation +534140,Transportation,Transportation +534139,Transportation,Transportation +534137,Transportation,Transportation +534136,Transportation,Transportation +534134,Transportation,Transportation +534132,Transportation,Transportation +534130,Transportation,Transportation +534129,Transportation,Transportation +534128,Transportation,Transportation +534126,Transportation,Transportation +534125,Transportation,Transportation +534121,Transportation,Transportation +534118,Transportation,Transportation +534115,Transportation,Transportation +527400,Transportation,Transportation +523644,Transportation,Transportation +521067,Transportation,Transportation +520959,Transportation,Transportation +520561,Transportation,Transportation +520457,Transportation,Transportation +520455,Transportation,Transportation +520388,Transportation,Transportation +519147,Transportation,Transportation +519146,Transportation,Transportation +517239,Transportation,Transportation +516818,Transportation,Transportation +516738,Transportation,Transportation +516325,Transportation,Transportation +350729,Constitutional Issues,Constitutional Issues +482157,Constitutional Issues,Constitutional Issues +354112,Constitutional Issues,Constitutional Issues +354107,Constitutional Issues,Constitutional Issues +354106,Constitutional Issues,Constitutional Issues +354105,Constitutional Issues,Constitutional Issues +354104,Constitutional Issues,Constitutional Issues +354103,Constitutional Issues,Constitutional Issues +354102,Constitutional Issues,Constitutional Issues +354101,Constitutional Issues,Constitutional Issues +507089,Health,Health +504342,Health,Health +98255,Health,Health +85634,Health,Health +82902,Health,Health +245111,Health,Health +395248,Health,Health +395246,Health,Health +395245,Health,Health +395244,Health,Health +391620,Health,Health +391619,Health,Health +391618,Health,Health +391617,Health,Health +391616,Health,Health +387412,Health,Health +385573,Health,Health +382119,Health,Health +381484,Health,Health +381481,Health,Health +381479,Health,Health +381475,Health,Health +381472,Health,Health +381469,Health,Health +381468,Health,Health +381467,Health,Health +380023,Health,Health +380021,Health,Health +380019,Health,Health +377085,Health,Health +377082,Health,Health +377081,Health,Health +377079,Health,Health +374675,Health,Health +374672,Health,Health +374670,Health,Health +374658,Health,Health +374654,Health,Health +374652,Health,Health +374648,Health,Health +374645,Health,Health +374639,Health,Health +374614,Health,Health +374612,Health,Health +374611,Health,Health +374607,Health,Health +371595,Health,Health +369816,Health,Health +369815,Health,Health +369814,Health,Health +369813,Health,Health +369812,Health,Health +369811,Health,Health +369810,Health,Health +369809,Health,Health +369808,Health,Health +359609,Health,Health +359608,Health,Health +359607,Health,Health +358247,Health,Health +354112,Health,Health +354107,Health,Health +354106,Health,Health +354105,Health,Health +354104,Health,Health +354103,Health,Health +354102,Health,Health +354101,Health,Health +354100,Health,Health +350730,Health,Health +350729,Health,Health +341732,Health,Health +325556,Health,Health +325555,Health,Health +325554,Health,Health +325553,Health,Health +325551,Health,Health +325550,Health,Health +324910,Health,Health +324524,Health,Health +322535,Health,Health +322534,Health,Health +322533,Health,Health +322532,Health,Health +322530,Health,Health +501264,Health,Health +501263,Health,Health +497447,Health,Health +497446,Health,Health +483307,Health,Health +482157,Health,Health +479065,Health,Health +479062,Health,Health +479060,Health,Health +479058,Health,Health +476893,Health,Health +465674,Health,Health +465666,Health,Health +451301,Health,Health +449955,Health,Health +449949,Health,Health +446593,Health,Health +444701,Health,Health +444700,Health,Health +441591,Health,Health +441589,Health,Health +436320,Health,Health +432086,Health,Health +432085,Health,Health +432084,Health,Health +431181,Health,Health +425354,Health,Health +423552,Health,Health +423549,Health,Health +420214,Health,Health +420211,Health,Health +417900,Health,Health +417899,Health,Health +417153,Health,Health +417150,Health,Health +416040,Health,Health +414459,Health,Health +414458,Health,Health +414457,Health,Health +414456,Health,Health +403339,Health,Health +403329,Health,Health +403324,Health,Health +400943,Health,Health +398680,Health,Health +398678,Health,Health +545312,Health,Health +540994,Health,Health +533232,Health,Health +528726,Health,Health +526151,Health,Health +523079,Health,Health +523077,Health,Health +523074,Health,Health +523069,Health,Health +517033,Health,Health +511933,Health,Health +509729,Health,Health +509728,Health,Health +507096,Health,Health +507095,Health,Health +425353,Intellectual Property,Intellectual Property +417152,Intellectual Property,Intellectual Property +162535,Intellectual Property,Intellectual Property +241196,Intellectual Property,Intellectual Property +210768,Intellectual Property,Intellectual Property +210767,Intellectual Property,Intellectual Property +200543,Intellectual Property,Intellectual Property +200541,Intellectual Property,Intellectual Property +193227,Intellectual Property,Intellectual Property +193226,Intellectual Property,Intellectual Property +193225,Intellectual Property,Intellectual Property +188772,Intellectual Property,Intellectual Property +171017,Intellectual Property,Intellectual Property +171015,Intellectual Property,Intellectual Property +171014,Intellectual Property,Intellectual Property +170994,Intellectual Property,Intellectual Property +170993,Intellectual Property,Intellectual Property +170992,Intellectual Property,Intellectual Property +170991,Intellectual Property,Intellectual Property +170990,Intellectual Property,Intellectual Property +170989,Intellectual Property,Intellectual Property +170988,Intellectual Property,Intellectual Property +170987,Intellectual Property,Intellectual Property +170985,Intellectual Property,Intellectual Property +170984,Intellectual Property,Intellectual Property +170983,Intellectual Property,Intellectual Property +170982,Intellectual Property,Intellectual Property +168706,Intellectual Property,Intellectual Property +168702,Intellectual Property,Intellectual Property +168698,Intellectual Property,Intellectual Property +168694,Intellectual Property,Intellectual Property +168689,Intellectual Property,Intellectual Property +165863,Intellectual Property,Intellectual Property +165862,Intellectual Property,Intellectual Property +165861,Intellectual Property,Intellectual Property +165860,Intellectual Property,Intellectual Property +162988,Intellectual Property,Intellectual Property +162987,Intellectual Property,Intellectual Property +162986,Intellectual Property,Intellectual Property +162985,Intellectual Property,Intellectual Property +162984,Intellectual Property,Intellectual Property +162983,Intellectual Property,Intellectual Property +162982,Intellectual Property,Intellectual Property +162981,Intellectual Property,Intellectual Property +162980,Intellectual Property,Intellectual Property +162979,Intellectual Property,Intellectual Property +162978,Intellectual Property,Intellectual Property +162977,Intellectual Property,Intellectual Property +162976,Intellectual Property,Intellectual Property +162975,Intellectual Property,Intellectual Property +162568,Intellectual Property,Intellectual Property +162567,Intellectual Property,Intellectual Property +162566,Intellectual Property,Intellectual Property +162565,Intellectual Property,Intellectual Property +162564,Intellectual Property,Intellectual Property +162548,Intellectual Property,Intellectual Property +395245,Intellectual Property,Intellectual Property +251559,Intellectual Property,Intellectual Property +251558,Intellectual Property,Intellectual Property +251557,Intellectual Property,Intellectual Property +251556,Intellectual Property,Intellectual Property +251555,Intellectual Property,Intellectual Property +251554,Intellectual Property,Intellectual Property +251553,Intellectual Property,Intellectual Property +251552,Intellectual Property,Intellectual Property +251551,Intellectual Property,Intellectual Property +251550,Intellectual Property,Intellectual Property +251549,Intellectual Property,Intellectual Property +245291,Intellectual Property,Intellectual Property +350730,International Relations,International Relations +322535,International Relations,International Relations +322534,International Relations,International Relations +322533,International Relations,International Relations +322532,International Relations,International Relations +322530,International Relations,International Relations +381475,International Relations,International Relations +381472,International Relations,International Relations +381469,International Relations,International Relations +381468,International Relations,International Relations +526151,Justice and Law Enforcement,Justice and Law Enforcement +517033,Justice and Law Enforcement,Justice and Law Enforcement +354101,Justice and Law Enforcement,Justice and Law Enforcement +354100,Justice and Law Enforcement,Justice and Law Enforcement +350730,Justice and Law Enforcement,Justice and Law Enforcement +350729,Justice and Law Enforcement,Justice and Law Enforcement +417151,Justice and Law Enforcement,Justice and Law Enforcement +354112,Justice and Law Enforcement,Justice and Law Enforcement +354107,Justice and Law Enforcement,Justice and Law Enforcement +354106,Justice and Law Enforcement,Justice and Law Enforcement +354105,Justice and Law Enforcement,Justice and Law Enforcement +354104,Justice and Law Enforcement,Justice and Law Enforcement +354103,Justice and Law Enforcement,Justice and Law Enforcement +354102,Justice and Law Enforcement,Justice and Law Enforcement +509729,Justice and Law Enforcement,Justice and Law Enforcement +504207,Justice and Law Enforcement,Justice and Law Enforcement +487061,Justice and Law Enforcement,Justice and Law Enforcement +483307,Justice and Law Enforcement,Justice and Law Enforcement +482157,Justice and Law Enforcement,Justice and Law Enforcement +479058,Justice and Law Enforcement,Justice and Law Enforcement +476895,Justice and Law Enforcement,Justice and Law Enforcement +476894,Justice and Law Enforcement,Justice and Law Enforcement +464595,Justice and Law Enforcement,Justice and Law Enforcement +456785,Justice and Law Enforcement,Justice and Law Enforcement +451301,Justice and Law Enforcement,Justice and Law Enforcement +446592,Justice and Law Enforcement,Justice and Law Enforcement +444701,Justice and Law Enforcement,Justice and Law Enforcement +444700,Justice and Law Enforcement,Justice and Law Enforcement +441589,Justice and Law Enforcement,Justice and Law Enforcement +441586,Justice and Law Enforcement,Justice and Law Enforcement +441585,Justice and Law Enforcement,Justice and Law Enforcement +441581,Justice and Law Enforcement,Justice and Law Enforcement +441579,Justice and Law Enforcement,Justice and Law Enforcement +441571,Justice and Law Enforcement,Justice and Law Enforcement +438994,Justice and Law Enforcement,Justice and Law Enforcement +438992,Justice and Law Enforcement,Justice and Law Enforcement +432086,Justice and Law Enforcement,Justice and Law Enforcement +432084,Justice and Law Enforcement,Justice and Law Enforcement +432082,Justice and Law Enforcement,Justice and Law Enforcement +431186,Justice and Law Enforcement,Justice and Law Enforcement +431181,Justice and Law Enforcement,Justice and Law Enforcement +423547,Justice and Law Enforcement,Justice and Law Enforcement +423542,Justice and Law Enforcement,Justice and Law Enforcement +423541,Justice and Law Enforcement,Justice and Law Enforcement +375898,Constitutional Issues,Constitutional Issues +375802,Constitutional Issues,Constitutional Issues +375802,Intellectual Property,Intellectual Property +494325,Justice and Law Enforcement,Justice and Law Enforcement +494324,Justice and Law Enforcement,Justice and Law Enforcement +103834,Justice and Law Enforcement,Justice and Law Enforcement +103816,Justice and Law Enforcement,Justice and Law Enforcement +375898,Justice and Law Enforcement,Justice and Law Enforcement +375802,Justice and Law Enforcement,Justice and Law Enforcement +407009,Justice and Law Enforcement,Justice and Law Enforcement +407008,Justice and Law Enforcement,Justice and Law Enforcement +210916,Environment,Environment +210879,Environment,Environment +149680,Environment,Environment +236011,Environment,Environment +210921,Environment,Environment +210910,Industry,Industry +210847,Industry,Industry +167676,Industry,Industry +167675,Industry,Industry +167674,Industry,Industry +167672,Industry,Industry +167671,Industry,Industry +158992,Industry,Industry +158991,Industry,Industry +263910,Industry,Industry +263909,Industry,Industry +210920,Industry,Industry +210915,Industry,Industry +226669,Education,Education +471620,Education,Education +221387,Education,Education +221368,Education,Education +216288,Education,Education +209967,Education,Education +207633,Education,Education +207616,Education,Education +192501,Education,Education +192500,Education,Education +192499,Education,Education +192497,Education,Education +175395,Education,Education +175393,Education,Education +175391,Education,Education +175388,Education,Education +175377,Education,Education +158408,Education,Education +158389,Education,Education +353383,Education,Education +333211,Education,Education +264332,Education,Education +243478,Education,Education +243473,Education,Education +330707,Industry,Industry +471620,Industry,Industry +360974,Infrastructure,Infrastructure +471620,Infrastructure,Infrastructure +158408,Infrastructure,Infrastructure +211838,Agriculture,Agriculture +464291,Employment and Training,Employment and Training +464286,Employment and Training,Employment and Training +371581,Employment and Training,Employment and Training +368386,Employment and Training,Employment and Training +368384,Employment and Training,Employment and Training +365563,Employment and Training,Employment and Training +293629,Employment and Training,Employment and Training +454874,Employment and Training,Employment and Training +454873,Employment and Training,Employment and Training +449096,Employment and Training,Employment and Training +449094,Employment and Training,Employment and Training +446777,Employment and Training,Employment and Training +441071,Employment and Training,Employment and Training +440045,Employment and Training,Employment and Training +439744,Employment and Training,Employment and Training +438192,Employment and Training,Employment and Training +409043,Employment and Training,Employment and Training +537732,Employment and Training,Employment and Training +532619,Employment and Training,Employment and Training +532617,Employment and Training,Employment and Training +527365,Employment and Training,Employment and Training +527073,Employment and Training,Employment and Training +526489,Employment and Training,Employment and Training +458491,Energy,Energy +458486,Energy,Energy +536267,Environment,Environment +533223,Environment,Environment +97364,Environment,Environment +93679,Environment,Environment +199858,Environment,Environment +191205,Environment,Environment +191204,Environment,Environment +155209,Environment,Environment +151317,Environment,Environment +132422,Environment,Environment +132421,Environment,Environment +132419,Environment,Environment +132417,Environment,Environment +109033,Environment,Environment +386311,Environment,Environment +376898,Environment,Environment +376877,Environment,Environment +373522,Environment,Environment +368386,Environment,Environment +368384,Environment,Environment +365563,Environment,Environment +365562,Environment,Environment +264990,Environment,Environment +490585,Environment,Environment +480648,Environment,Environment +471917,Environment,Environment +459217,Environment,Environment +458491,Environment,Environment +458486,Environment,Environment +444305,Environment,Environment +438202,Environment,Environment +438157,Immigration,Immigration +527073,Immigration,Immigration +79276,Immigration,Immigration +79274,Immigration,Immigration +464286,Immigration,Immigration +449096,Immigration,Immigration +449094,Immigration,Immigration +446777,Immigration,Immigration +444304,Immigration,Immigration +441071,Immigration,Immigration +405654,Industry,Industry +405651,Industry,Industry +132422,Industry,Industry +132421,Industry,Industry +132419,Industry,Industry +132417,Industry,Industry +539392,Industry,Industry +536182,Industry,Industry +532938,Industry,Industry +368386,Infrastructure,Infrastructure +368384,Infrastructure,Infrastructure +132421,Infrastructure,Infrastructure +109033,Infrastructure,Infrastructure +100889,Infrastructure,Infrastructure +100888,Infrastructure,Infrastructure +89912,Infrastructure,Infrastructure +264989,Infrastructure,Infrastructure +256309,Infrastructure,Infrastructure +238972,Infrastructure,Infrastructure +199874,Infrastructure,Infrastructure +199867,Infrastructure,Infrastructure +199858,Infrastructure,Infrastructure +518060,Internal Trade,Internal Trade +516970,Internal Trade,Internal Trade +164527,Internal Trade,Internal Trade +244036,Internal Trade,Internal Trade +199867,Internal Trade,Internal Trade +386311,Internal Trade,Internal Trade +368386,Internal Trade,Internal Trade +365562,Internal Trade,Internal Trade +539392,Internal Trade,Internal Trade +537732,Internal Trade,Internal Trade +536182,Internal Trade,Internal Trade +524246,Internal Trade,Internal Trade +536182,International Relations,International Relations +532620,International Relations,International Relations +244036,International Relations,International Relations +211836,International Relations,International Relations +368386,International Relations,International Relations +368384,International Relations,International Relations +365563,International Relations,International Relations +365562,International Relations,International Relations +441067,International Relations,International Relations +440046,International Relations,International Relations +438202,International Relations,International Relations +490742,International Trade,International Trade +488143,International Trade,International Trade +88155,International Trade,International Trade +132422,International Trade,International Trade +211836,International Trade,International Trade +313849,International Trade,International Trade +441067,International Trade,International Trade +440047,International Trade,International Trade +440046,International Trade,International Trade +439745,International Trade,International Trade +438202,International Trade,International Trade +438196,International Trade,International Trade +438189,International Trade,International Trade +438187,International Trade,International Trade +438157,International Trade,International Trade +397325,International Trade,International Trade +368384,International Trade,International Trade +537732,International Trade,International Trade +536267,International Trade,International Trade +532938,International Trade,International Trade +524246,International Trade,International Trade +518527,International Trade,International Trade +518117,International Trade,International Trade +518060,International Trade,International Trade +516970,International Trade,International Trade +516955,International Trade,International Trade +516953,International Trade,International Trade +516952,International Trade,International Trade +514843,International Trade,International Trade +438196,Justice and Law Enforcement,Justice and Law Enforcement +438187,Justice and Law Enforcement,Justice and Law Enforcement +187825,Justice and Law Enforcement,Justice and Law Enforcement +187824,Justice and Law Enforcement,Justice and Law Enforcement +244036,Justice and Law Enforcement,Justice and Law Enforcement +438178,Justice and Law Enforcement,Justice and Law Enforcement +386311,Justice and Law Enforcement,Justice and Law Enforcement +539392,Justice and Law Enforcement,Justice and Law Enforcement +517264,Labour,Labour +504324,Labour,Labour +368384,Labour,Labour +293629,Labour,Labour +191205,Labour,Labour +480653,Labour,Labour +472586,Labour,Labour +449096,Labour,Labour +449094,Labour,Labour +439744,Labour,Labour +438168,Labour,Labour +537735,Labour,Labour +535186,Labour,Labour +533235,Labour,Labour +527365,Labour,Labour +526489,Labour,Labour +517283,Labour,Labour +517275,Labour,Labour +471917,Taxation and Finance,Taxation and Finance +438168,Taxation and Finance,Taxation and Finance +93676,Taxation and Finance,Taxation and Finance +540414,Taxation and Finance,Taxation and Finance +539641,Taxation and Finance,Taxation and Finance +539030,Taxation and Finance,Taxation and Finance +458486,Transportation,Transportation +458480,Transportation,Transportation +97364,Transportation,Transportation +89912,Transportation,Transportation +79274,Transportation,Transportation +155209,Transportation,Transportation +132422,Transportation,Transportation +132421,Transportation,Transportation +109033,Transportation,Transportation +100889,Transportation,Transportation +100888,Transportation,Transportation +256309,Transportation,Transportation +238972,Transportation,Transportation +204827,Transportation,Transportation +199874,Transportation,Transportation +199867,Transportation,Transportation +199858,Transportation,Transportation +191205,Transportation,Transportation +187826,Transportation,Transportation +164527,Transportation,Transportation +164526,Transportation,Transportation +164525,Transportation,Transportation +458479,Transportation,Transportation +458478,Transportation,Transportation +454883,Transportation,Transportation +454881,Transportation,Transportation +454877,Transportation,Transportation +454874,Transportation,Transportation +444305,Transportation,Transportation +441474,Transportation,Transportation +441067,Transportation,Transportation +440047,Transportation,Transportation +440046,Transportation,Transportation +440045,Transportation,Transportation +439745,Transportation,Transportation +438202,Transportation,Transportation +438196,Transportation,Transportation +438192,Transportation,Transportation +438189,Transportation,Transportation +438187,Transportation,Transportation +438178,Transportation,Transportation +438157,Transportation,Transportation +409043,Transportation,Transportation +409041,Transportation,Transportation +405654,Transportation,Transportation +405651,Transportation,Transportation +386311,Transportation,Transportation +376898,Transportation,Transportation +376877,Transportation,Transportation +373522,Transportation,Transportation +371581,Transportation,Transportation +368386,Transportation,Transportation +368384,Transportation,Transportation +365563,Transportation,Transportation +365562,Transportation,Transportation +313850,Transportation,Transportation +293649,Transportation,Transportation +264989,Transportation,Transportation +258789,Transportation,Transportation +539392,Transportation,Transportation +537732,Transportation,Transportation +536267,Transportation,Transportation +536182,Transportation,Transportation +533223,Transportation,Transportation +532938,Transportation,Transportation +532620,Transportation,Transportation +527073,Transportation,Transportation +524246,Transportation,Transportation +518527,Transportation,Transportation +518117,Transportation,Transportation +518060,Transportation,Transportation +516970,Transportation,Transportation +516955,Transportation,Transportation +516953,Transportation,Transportation +516952,Transportation,Transportation +514843,Transportation,Transportation +497443,Transportation,Transportation +490742,Transportation,Transportation +490585,Transportation,Transportation +488143,Transportation,Transportation +483906,Transportation,Transportation +480653,Transportation,Transportation +480648,Transportation,Transportation +476201,Transportation,Transportation +472582,Transportation,Transportation +464165,Transportation,Transportation +459220,Transportation,Transportation +459217,Transportation,Transportation +109031,Other,CANADA/U.S.TRADE AND SECURITY +109027,Other,CANADA/U.S. BORDERS +100889,Other,CANADA/U.S. BORDERS +82805,Other,CANADA/U.S. BORDERS +79276,Other,CANADA/U.S. BORDERS +79275,Other,CANADA/U.S. BORDERS +79274,Other,CANADA/U.S. BORDERS +76735,Other,CANADA/U.S. BORDERS +132421,Other,CANADA/U.S. BORDERS +201387,Defence,Defence +182870,Defence,Defence +124054,Defence,Defence +107694,Defence,Defence +103294,Defence,Defence +99517,Defence,Defence +89654,Defence,Defence +149496,Defence,Defence +339455,Defence,Defence +326495,Defence,Defence +307769,Defence,Defence +300410,Defence,Defence +307769,Government Procurement,Government Procurement +300410,Government Procurement,Government Procurement +107694,Government Procurement,Government Procurement +103294,Government Procurement,Government Procurement +99517,Government Procurement,Government Procurement +89654,Government Procurement,Government Procurement +228929,Government Procurement,Government Procurement +201387,Government Procurement,Government Procurement +182870,Government Procurement,Government Procurement +149496,Government Procurement,Government Procurement +124054,Government Procurement,Government Procurement +339455,Government Procurement,Government Procurement +103294,Industry,Industry +89654,Industry,Industry +124054,Industry,Industry +228929,Industry,Industry +201387,Industry,Industry +182870,Industry,Industry +339455,Industry,Industry +326495,Industry,Industry +307769,Industry,Industry +300410,Industry,Industry +320950,Consumer Issues,Consumer Issues +419060,Consumer Issues,Consumer Issues +138141,Consumer Issues,Consumer Issues +138137,Consumer Issues,Consumer Issues +89542,Consumer Issues,Consumer Issues +290815,Consumer Issues,Consumer Issues +290812,Consumer Issues,Consumer Issues +263729,Consumer Issues,Consumer Issues +259462,Consumer Issues,Consumer Issues +189083,Consumer Issues,Consumer Issues +180864,Consumer Issues,Consumer Issues +173366,Consumer Issues,Consumer Issues +171926,Consumer Issues,Consumer Issues +167958,Consumer Issues,Consumer Issues +149196,Consumer Issues,Consumer Issues +342308,Consumer Issues,Consumer Issues +334689,Consumer Issues,Consumer Issues +333931,Consumer Issues,Consumer Issues +327679,Consumer Issues,Consumer Issues +324888,Consumer Issues,Consumer Issues +324887,Financial Institutions,Financial Institutions +320950,Financial Institutions,Financial Institutions +89542,Financial Institutions,Financial Institutions +80834,Financial Institutions,Financial Institutions +156877,Financial Institutions,Financial Institutions +138141,Financial Institutions,Financial Institutions +138137,Financial Institutions,Financial Institutions +290815,Financial Institutions,Financial Institutions +290812,Financial Institutions,Financial Institutions +287060,Financial Institutions,Financial Institutions +276083,Financial Institutions,Financial Institutions +263729,Financial Institutions,Financial Institutions +259462,Financial Institutions,Financial Institutions +230295,Financial Institutions,Financial Institutions +189083,Financial Institutions,Financial Institutions +180864,Financial Institutions,Financial Institutions +173366,Financial Institutions,Financial Institutions +171926,Financial Institutions,Financial Institutions +368846,Financial Institutions,Financial Institutions +342308,Financial Institutions,Financial Institutions +334689,Financial Institutions,Financial Institutions +333931,Financial Institutions,Financial Institutions +327679,Financial Institutions,Financial Institutions +173366,Taxation and Finance,Taxation and Finance +171926,Taxation and Finance,Taxation and Finance +189083,Taxation and Finance,Taxation and Finance +100927,Government Procurement,Government Procurement +474509,Agriculture,Agriculture +472070,Agriculture,Agriculture +122494,Agriculture,Agriculture +160961,Agriculture,Agriculture +160918,Agriculture,Agriculture +160917,Agriculture,Agriculture +151899,Agriculture,Agriculture +148943,Agriculture,Agriculture +147985,Agriculture,Agriculture +224793,Agriculture,Agriculture +224792,Agriculture,Agriculture +224791,Agriculture,Agriculture +224790,Agriculture,Agriculture +224789,Agriculture,Agriculture +224788,Agriculture,Agriculture +224787,Agriculture,Agriculture +220910,Agriculture,Agriculture +209648,Agriculture,Agriculture +201117,Agriculture,Agriculture +197121,Agriculture,Agriculture +192027,Agriculture,Agriculture +176489,Agriculture,Agriculture +176488,Agriculture,Agriculture +176484,Agriculture,Agriculture +167031,Agriculture,Agriculture +165555,Agriculture,Agriculture +165554,Agriculture,Agriculture +165552,Agriculture,Agriculture +165550,Agriculture,Agriculture +165549,Agriculture,Agriculture +162885,Agriculture,Agriculture +162884,Agriculture,Agriculture +332831,Agriculture,Agriculture +330950,Agriculture,Agriculture +330948,Agriculture,Agriculture +330947,Agriculture,Agriculture +330946,Agriculture,Agriculture +330945,Agriculture,Agriculture +326530,Agriculture,Agriculture +323613,Agriculture,Agriculture +323611,Agriculture,Agriculture +323610,Agriculture,Agriculture +323609,Agriculture,Agriculture +320129,Agriculture,Agriculture +317667,Agriculture,Agriculture +317666,Agriculture,Agriculture +317665,Agriculture,Agriculture +317664,Agriculture,Agriculture +317663,Agriculture,Agriculture +317662,Agriculture,Agriculture +310014,Agriculture,Agriculture +307512,Agriculture,Agriculture +302433,Agriculture,Agriculture +302431,Agriculture,Agriculture +302415,Agriculture,Agriculture +302410,Agriculture,Agriculture +294435,Agriculture,Agriculture +294429,Agriculture,Agriculture +285372,Agriculture,Agriculture +285371,Agriculture,Agriculture +285370,Agriculture,Agriculture +285369,Agriculture,Agriculture +279793,Agriculture,Agriculture +279789,Agriculture,Agriculture +266969,Agriculture,Agriculture +266952,Agriculture,Agriculture +266949,Agriculture,Agriculture +262279,Agriculture,Agriculture +261331,Agriculture,Agriculture +255951,Agriculture,Agriculture +252513,Agriculture,Agriculture +252511,Agriculture,Agriculture +246655,Agriculture,Agriculture +246654,Agriculture,Agriculture +246650,Agriculture,Agriculture +246649,Agriculture,Agriculture +239250,Agriculture,Agriculture +239249,Agriculture,Agriculture +235838,Agriculture,Agriculture +228978,Agriculture,Agriculture +228975,Agriculture,Agriculture +469699,Agriculture,Agriculture +469691,Agriculture,Agriculture +469688,Agriculture,Agriculture +469684,Agriculture,Agriculture +469682,Agriculture,Agriculture +469681,Agriculture,Agriculture +469679,Agriculture,Agriculture +469677,Agriculture,Agriculture +469676,Agriculture,Agriculture +469673,Agriculture,Agriculture +469668,Agriculture,Agriculture +466375,Agriculture,Agriculture +466373,Agriculture,Agriculture +466370,Agriculture,Agriculture +466303,Agriculture,Agriculture +466296,Agriculture,Agriculture +466292,Agriculture,Agriculture +464194,Agriculture,Agriculture +464191,Agriculture,Agriculture +464190,Agriculture,Agriculture +464189,Agriculture,Agriculture +460914,Agriculture,Agriculture +460910,Agriculture,Agriculture +459932,Agriculture,Agriculture +459931,Agriculture,Agriculture +459930,Agriculture,Agriculture +459265,Agriculture,Agriculture +459263,Agriculture,Agriculture +458357,Agriculture,Agriculture +456712,Agriculture,Agriculture +456711,Agriculture,Agriculture +456710,Agriculture,Agriculture +454511,Agriculture,Agriculture +454490,Agriculture,Agriculture +454487,Agriculture,Agriculture +454486,Agriculture,Agriculture +451295,Agriculture,Agriculture +448997,Agriculture,Agriculture +446936,Agriculture,Agriculture +444775,Agriculture,Agriculture +443593,Agriculture,Agriculture +443590,Agriculture,Agriculture +437981,Agriculture,Agriculture +437972,Agriculture,Agriculture +434817,Agriculture,Agriculture +434812,Agriculture,Agriculture +434809,Agriculture,Agriculture +434788,Agriculture,Agriculture +434761,Agriculture,Agriculture +434760,Agriculture,Agriculture +434738,Agriculture,Agriculture +434737,Agriculture,Agriculture +434734,Agriculture,Agriculture +434733,Agriculture,Agriculture +434732,Agriculture,Agriculture +434731,Agriculture,Agriculture +434730,Agriculture,Agriculture +434729,Agriculture,Agriculture +434574,Agriculture,Agriculture +434572,Agriculture,Agriculture +434570,Agriculture,Agriculture +434569,Agriculture,Agriculture +434475,Agriculture,Agriculture +434467,Agriculture,Agriculture +434464,Agriculture,Agriculture +431982,Agriculture,Agriculture +431981,Agriculture,Agriculture +431980,Agriculture,Agriculture +431976,Agriculture,Agriculture +430270,Agriculture,Agriculture +430233,Agriculture,Agriculture +430232,Agriculture,Agriculture +430231,Agriculture,Agriculture +430229,Agriculture,Agriculture +430227,Agriculture,Agriculture +430226,Agriculture,Agriculture +430224,Agriculture,Agriculture +430221,Agriculture,Agriculture +430220,Agriculture,Agriculture +430219,Agriculture,Agriculture +427848,Agriculture,Agriculture +427838,Agriculture,Agriculture +425481,Agriculture,Agriculture +423020,Agriculture,Agriculture +420615,Agriculture,Agriculture +405065,Agriculture,Agriculture +405064,Agriculture,Agriculture +405063,Agriculture,Agriculture +402137,Agriculture,Agriculture +399449,Agriculture,Agriculture +397962,Agriculture,Agriculture +397959,Agriculture,Agriculture +397957,Agriculture,Agriculture +395201,Agriculture,Agriculture +395199,Agriculture,Agriculture +392976,Agriculture,Agriculture +389157,Agriculture,Agriculture +389151,Agriculture,Agriculture +389142,Agriculture,Agriculture +389140,Agriculture,Agriculture +389137,Agriculture,Agriculture +384588,Agriculture,Agriculture +381838,Agriculture,Agriculture +381837,Agriculture,Agriculture +381836,Agriculture,Agriculture +380384,Agriculture,Agriculture +380383,Agriculture,Agriculture +370799,Agriculture,Agriculture +370798,Agriculture,Agriculture +368158,Agriculture,Agriculture +364703,Agriculture,Agriculture +359295,Agriculture,Agriculture +359293,Agriculture,Agriculture +357531,Agriculture,Agriculture +354848,Agriculture,Agriculture +352864,Agriculture,Agriculture +350519,Agriculture,Agriculture +346177,Agriculture,Agriculture +339931,Agriculture,Agriculture +339930,Agriculture,Agriculture +535254,Agriculture,Agriculture +535250,Agriculture,Agriculture +535249,Agriculture,Agriculture +532314,Agriculture,Agriculture +532310,Agriculture,Agriculture +529109,Agriculture,Agriculture +529107,Agriculture,Agriculture +529096,Agriculture,Agriculture +524193,Agriculture,Agriculture +524192,Agriculture,Agriculture +524189,Agriculture,Agriculture +521271,Agriculture,Agriculture +521270,Agriculture,Agriculture +521266,Agriculture,Agriculture +521261,Agriculture,Agriculture +521259,Agriculture,Agriculture +521256,Agriculture,Agriculture +521253,Agriculture,Agriculture +521251,Agriculture,Agriculture +521249,Agriculture,Agriculture +516776,Agriculture,Agriculture +516774,Agriculture,Agriculture +515333,Agriculture,Agriculture +512391,Agriculture,Agriculture +512390,Agriculture,Agriculture +510159,Agriculture,Agriculture +507065,Agriculture,Agriculture +504229,Agriculture,Agriculture +504228,Agriculture,Agriculture +501017,Agriculture,Agriculture +501013,Agriculture,Agriculture +501012,Agriculture,Agriculture +501011,Agriculture,Agriculture +497513,Agriculture,Agriculture +494515,Agriculture,Agriculture +494514,Agriculture,Agriculture +494510,Agriculture,Agriculture +492557,Agriculture,Agriculture +492545,Agriculture,Agriculture +489619,Agriculture,Agriculture +489615,Agriculture,Agriculture +486761,Agriculture,Agriculture +486756,Agriculture,Agriculture +486753,Agriculture,Agriculture +483554,Agriculture,Agriculture +483551,Agriculture,Agriculture +483549,Agriculture,Agriculture +481394,Agriculture,Agriculture +481390,Agriculture,Agriculture +481389,Agriculture,Agriculture +479415,Agriculture,Agriculture +476984,Agriculture,Agriculture +476983,Agriculture,Agriculture +476982,Agriculture,Agriculture +476981,Agriculture,Agriculture +476977,Agriculture,Agriculture +476975,Agriculture,Agriculture +476974,Agriculture,Agriculture +476973,Agriculture,Agriculture +476971,Agriculture,Agriculture +476969,Agriculture,Agriculture +476968,Agriculture,Agriculture +476967,Agriculture,Agriculture +476966,Agriculture,Agriculture +476965,Agriculture,Agriculture +476964,Agriculture,Agriculture +474525,Agriculture,Agriculture +474514,Agriculture,Agriculture +474512,Agriculture,Agriculture +483544,Consumer Issues,Consumer Issues +434795,Consumer Issues,Consumer Issues +84907,Consumer Issues,Consumer Issues +158023,Consumer Issues,Consumer Issues +158022,Consumer Issues,Consumer Issues +158021,Consumer Issues,Consumer Issues +109182,Consumer Issues,Consumer Issues +109181,Consumer Issues,Consumer Issues +235830,Consumer Issues,Consumer Issues +216111,Consumer Issues,Consumer Issues +216108,Consumer Issues,Consumer Issues +209668,Consumer Issues,Consumer Issues +381839,Consumer Issues,Consumer Issues +381837,Consumer Issues,Consumer Issues +381836,Consumer Issues,Consumer Issues +380385,Consumer Issues,Consumer Issues +352864,Consumer Issues,Consumer Issues +307515,Consumer Issues,Consumer Issues +307513,Consumer Issues,Consumer Issues +307511,Consumer Issues,Consumer Issues +289333,Consumer Issues,Consumer Issues +544367,Consumer Issues,Consumer Issues +539500,Consumer Issues,Consumer Issues +535254,Consumer Issues,Consumer Issues +535250,Consumer Issues,Consumer Issues +535249,Consumer Issues,Consumer Issues +529108,Consumer Issues,Consumer Issues +524193,Consumer Issues,Consumer Issues +524192,Consumer Issues,Consumer Issues +524189,Consumer Issues,Consumer Issues +521271,Consumer Issues,Consumer Issues +521261,Consumer Issues,Consumer Issues +521259,Consumer Issues,Consumer Issues +521256,Consumer Issues,Consumer Issues +521253,Consumer Issues,Consumer Issues +521251,Consumer Issues,Consumer Issues +521249,Consumer Issues,Consumer Issues +518913,Consumer Issues,Consumer Issues +518909,Consumer Issues,Consumer Issues +516776,Consumer Issues,Consumer Issues +516774,Consumer Issues,Consumer Issues +515333,Consumer Issues,Consumer Issues +512391,Consumer Issues,Consumer Issues +512390,Consumer Issues,Consumer Issues +512389,Consumer Issues,Consumer Issues +512387,Consumer Issues,Consumer Issues +504229,Consumer Issues,Consumer Issues +504228,Consumer Issues,Consumer Issues +501017,Consumer Issues,Consumer Issues +501014,Consumer Issues,Consumer Issues +501013,Consumer Issues,Consumer Issues +501012,Consumer Issues,Consumer Issues +501011,Consumer Issues,Consumer Issues +494515,Consumer Issues,Consumer Issues +494514,Consumer Issues,Consumer Issues +494510,Consumer Issues,Consumer Issues +494509,Consumer Issues,Consumer Issues +492552,Consumer Issues,Consumer Issues +492548,Consumer Issues,Consumer Issues +492545,Consumer Issues,Consumer Issues +489624,Consumer Issues,Consumer Issues +489623,Consumer Issues,Consumer Issues +489622,Consumer Issues,Consumer Issues +489620,Consumer Issues,Consumer Issues +489619,Consumer Issues,Consumer Issues +489617,Consumer Issues,Consumer Issues +489616,Consumer Issues,Consumer Issues +489615,Consumer Issues,Consumer Issues +489614,Consumer Issues,Consumer Issues +486761,Consumer Issues,Consumer Issues +486756,Consumer Issues,Consumer Issues +486753,Consumer Issues,Consumer Issues +483550,Consumer Issues,Consumer Issues +449002,Environment,Environment +448999,Environment,Environment +377439,Environment,Environment +377434,Environment,Environment +334630,Environment,Environment +524194,Environment,Environment +521256,Environment,Environment +483552,Environment,Environment +466377,Environment,Environment +464191,Environment,Environment +464190,Environment,Environment +458357,Environment,Environment +454486,Environment,Environment +427836,Health,Health +544367,Health,Health +122474,Health,Health +115996,Health,Health +115995,Health,Health +109182,Health,Health +176487,Health,Health +176486,Health,Health +176485,Health,Health +174487,Health,Health +172807,Health,Health +172805,Health,Health +167031,Health,Health +167029,Health,Health +165552,Health,Health +165550,Health,Health +165549,Health,Health +165547,Health,Health +162884,Health,Health +160961,Health,Health +160919,Health,Health +160917,Health,Health +160915,Health,Health +158023,Health,Health +158021,Health,Health +152679,Health,Health +152678,Health,Health +151898,Health,Health +151895,Health,Health +339930,Health,Health +339928,Health,Health +339927,Health,Health +339925,Health,Health +339924,Health,Health +334632,Health,Health +333009,Health,Health +332831,Health,Health +332829,Health,Health +330946,Health,Health +330945,Health,Health +320578,Health,Health +320129,Health,Health +317658,Health,Health +314656,Health,Health +310020,Health,Health +307515,Health,Health +307514,Health,Health +307513,Health,Health +302414,Health,Health +271074,Health,Health +271073,Health,Health +271072,Health,Health +266974,Health,Health +262276,Health,Health +262273,Health,Health +262269,Health,Health +261331,Health,Health +255950,Health,Health +252510,Health,Health +252509,Health,Health +239253,Health,Health +220908,Health,Health +216111,Health,Health +216108,Health,Health +209668,Health,Health +209667,Health,Health +209649,Health,Health +209648,Health,Health +204727,Health,Health +201117,Health,Health +197119,Health,Health +197118,Health,Health +197117,Health,Health +192027,Health,Health +192026,Health,Health +192025,Health,Health +187648,Health,Health +187647,Health,Health +425484,Health,Health +420617,Health,Health +420616,Health,Health +420614,Health,Health +420611,Health,Health +419220,Health,Health +417455,Health,Health +414758,Health,Health +414757,Health,Health +414754,Health,Health +414286,Health,Health +414285,Health,Health +411394,Health,Health +411393,Health,Health +411392,Health,Health +411390,Health,Health +411386,Health,Health +411384,Health,Health +411381,Health,Health +411376,Health,Health +411374,Health,Health +411372,Health,Health +410403,Health,Health +410402,Health,Health +410401,Health,Health +407327,Health,Health +406222,Health,Health +405066,Health,Health +405065,Health,Health +405063,Health,Health +402138,Health,Health +402137,Health,Health +402136,Health,Health +399449,Health,Health +399447,Health,Health +397963,Health,Health +397962,Health,Health +397960,Health,Health +397959,Health,Health +397957,Health,Health +395200,Health,Health +395196,Health,Health +395195,Health,Health +389156,Health,Health +389155,Health,Health +389154,Health,Health +389153,Health,Health +389152,Health,Health +389151,Health,Health +389150,Health,Health +389142,Health,Health +389141,Health,Health +389140,Health,Health +389137,Health,Health +384588,Health,Health +380385,Health,Health +380382,Health,Health +380381,Health,Health +378220,Health,Health +377438,Health,Health +377433,Health,Health +377432,Health,Health +373467,Health,Health +370802,Health,Health +370800,Health,Health +354848,Health,Health +354846,Health,Health +352864,Health,Health +348000,Health,Health +347998,Health,Health +532314,Health,Health +532311,Health,Health +529109,Health,Health +529104,Health,Health +527691,Health,Health +524192,Health,Health +524187,Health,Health +524186,Health,Health +524184,Health,Health +524183,Health,Health +521270,Health,Health +521266,Health,Health +521256,Health,Health +521251,Health,Health +516776,Health,Health +516774,Health,Health +512387,Health,Health +510157,Health,Health +507066,Health,Health +505028,Health,Health +505023,Health,Health +505021,Health,Health +504220,Health,Health +504213,Health,Health +501010,Health,Health +501009,Health,Health +497511,Health,Health +497510,Health,Health +497509,Health,Health +494512,Health,Health +494510,Health,Health +492557,Health,Health +492551,Health,Health +492550,Health,Health +492549,Health,Health +492544,Health,Health +489694,Health,Health +486750,Health,Health +486745,Health,Health +472070,Health,Health +472069,Health,Health +469699,Health,Health +469688,Health,Health +469684,Health,Health +469682,Health,Health +469681,Health,Health +469679,Health,Health +469677,Health,Health +469676,Health,Health +469673,Health,Health +469668,Health,Health +469667,Health,Health +469666,Health,Health +469664,Health,Health +466377,Health,Health +466376,Health,Health +466302,Health,Health +466301,Health,Health +466300,Health,Health +466298,Health,Health +466297,Health,Health +466296,Health,Health +466293,Health,Health +464204,Health,Health +464194,Health,Health +464191,Health,Health +464190,Health,Health +462314,Health,Health +460914,Health,Health +460912,Health,Health +460910,Health,Health +459271,Health,Health +459266,Health,Health +459265,Health,Health +459263,Health,Health +458358,Health,Health +458357,Health,Health +456715,Health,Health +456714,Health,Health +456713,Health,Health +456710,Health,Health +456708,Health,Health +454506,Health,Health +454505,Health,Health +454503,Health,Health +454500,Health,Health +454497,Health,Health +454486,Health,Health +451295,Health,Health +451293,Health,Health +449003,Health,Health +449002,Health,Health +448999,Health,Health +448998,Health,Health +446940,Health,Health +446936,Health,Health +446928,Health,Health +446926,Health,Health +444775,Health,Health +443639,Health,Health +443597,Health,Health +441396,Health,Health +441395,Health,Health +441387,Health,Health +441386,Health,Health +441385,Health,Health +441382,Health,Health +441379,Health,Health +437977,Health,Health +437971,Health,Health +437954,Health,Health +434795,Health,Health +434788,Health,Health +434475,Health,Health +434464,Health,Health +431982,Health,Health +431981,Health,Health +431980,Health,Health +431976,Health,Health +430270,Health,Health +430231,Health,Health +430229,Health,Health +430224,Health,Health +427848,Health,Health +427839,Health,Health +446927,Industry,Industry +446926,Industry,Industry +160917,Industry,Industry +149997,Industry,Industry +136594,Industry,Industry +122455,Industry,Industry +176488,Industry,Industry +174486,Industry,Industry +171326,Industry,Industry +167031,Industry,Industry +167028,Industry,Industry +165553,Industry,Industry +165552,Industry,Industry +165551,Industry,Industry +165550,Industry,Industry +165549,Industry,Industry +165548,Industry,Industry +165546,Industry,Industry +162884,Industry,Industry +160961,Industry,Industry +246651,Industry,Industry +246649,Industry,Industry +243495,Industry,Industry +243494,Industry,Industry +243493,Industry,Industry +243492,Industry,Industry +243491,Industry,Industry +243490,Industry,Industry +243489,Industry,Industry +239250,Industry,Industry +239249,Industry,Industry +235838,Industry,Industry +235837,Industry,Industry +235836,Industry,Industry +235834,Industry,Industry +235833,Industry,Industry +235832,Industry,Industry +235831,Industry,Industry +232179,Industry,Industry +232178,Industry,Industry +228978,Industry,Industry +228977,Industry,Industry +224794,Industry,Industry +220912,Industry,Industry +220911,Industry,Industry +220910,Industry,Industry +220909,Industry,Industry +216112,Industry,Industry +216111,Industry,Industry +216110,Industry,Industry +216109,Industry,Industry +216108,Industry,Industry +216107,Industry,Industry +209668,Industry,Industry +209648,Industry,Industry +201190,Industry,Industry +201117,Industry,Industry +197121,Industry,Industry +197119,Industry,Industry +197116,Industry,Industry +192027,Industry,Industry +354851,Industry,Industry +354849,Industry,Industry +354848,Industry,Industry +354847,Industry,Industry +352863,Industry,Industry +350519,Industry,Industry +350518,Industry,Industry +350517,Industry,Industry +348000,Industry,Industry +347998,Industry,Industry +346197,Industry,Industry +346177,Industry,Industry +346157,Industry,Industry +346118,Industry,Industry +342199,Industry,Industry +339931,Industry,Industry +339930,Industry,Industry +337593,Industry,Industry +337022,Industry,Industry +337021,Industry,Industry +337020,Industry,Industry +337019,Industry,Industry +337018,Industry,Industry +337017,Industry,Industry +337016,Industry,Industry +337015,Industry,Industry +337014,Industry,Industry +337013,Industry,Industry +337012,Industry,Industry +337011,Industry,Industry +337009,Industry,Industry +334631,Industry,Industry +332830,Industry,Industry +329476,Industry,Industry +326531,Industry,Industry +326529,Industry,Industry +323614,Industry,Industry +323613,Industry,Industry +323612,Industry,Industry +323611,Industry,Industry +323610,Industry,Industry +323609,Industry,Industry +320586,Industry,Industry +320585,Industry,Industry +320584,Industry,Industry +320582,Industry,Industry +320581,Industry,Industry +320579,Industry,Industry +320129,Industry,Industry +317667,Industry,Industry +317666,Industry,Industry +317665,Industry,Industry +317664,Industry,Industry +317663,Industry,Industry +317662,Industry,Industry +317659,Industry,Industry +317657,Industry,Industry +317656,Industry,Industry +314654,Industry,Industry +314652,Industry,Industry +310020,Industry,Industry +310019,Industry,Industry +310018,Industry,Industry +310017,Industry,Industry +310016,Industry,Industry +310014,Industry,Industry +307516,Industry,Industry +307512,Industry,Industry +302434,Industry,Industry +302433,Industry,Industry +302429,Industry,Industry +302413,Industry,Industry +302411,Industry,Industry +294436,Industry,Industry +294435,Industry,Industry +294430,Industry,Industry +294429,Industry,Industry +294411,Industry,Industry +289333,Industry,Industry +285371,Industry,Industry +285370,Industry,Industry +285369,Industry,Industry +279793,Industry,Industry +279792,Industry,Industry +271077,Industry,Industry +271075,Industry,Industry +271074,Industry,Industry +271073,Industry,Industry +271072,Industry,Industry +271071,Industry,Industry +271070,Industry,Industry +271069,Industry,Industry +266972,Industry,Industry +266971,Industry,Industry +266969,Industry,Industry +266952,Industry,Industry +266951,Industry,Industry +266950,Industry,Industry +262280,Industry,Industry +262278,Industry,Industry +262277,Industry,Industry +262272,Industry,Industry +262271,Industry,Industry +262270,Industry,Industry +261331,Industry,Industry +261330,Industry,Industry +261329,Industry,Industry +255949,Industry,Industry +252511,Industry,Industry +252510,Industry,Industry +246653,Industry,Industry +246652,Industry,Industry +444775,Industry,Industry +444774,Industry,Industry +443593,Industry,Industry +443590,Industry,Industry +480597,Agriculture,Agriculture +227188,Employment and Training,Employment and Training +480597,Environment,Environment +519714,Industry,Industry +505970,Infrastructure,Infrastructure +480597,Taxation and Finance,Taxation and Finance +444253,Transportation,Transportation +87861,Consumer Issues,Consumer Issues +518828,Health,Health +431460,Industry,Industry +406861,Intellectual Property,Intellectual Property +537072,International Trade,International Trade +208547,Regional Development,Regional Development +87861,Taxation and Finance,Taxation and Finance +163573,Justice and Law Enforcement,Justice and Law Enforcement +163573,Regional Development,Regional Development +87876,Other,Innovation and incubation +87880,Other,Academic research infrastructure +107094,Industry,Industry +107094,International Trade,International Trade +106894,Labour,Labour +230083,Agriculture,Agriculture +109314,Energy,Energy +296709,Environment,Environment +296711,International Trade,International Trade +170679,Mining,Mining +129174,Taxation and Finance,Taxation and Finance +335876,Transportation,Transportation +381142,Forestry,Forestry +351119,International Trade,International Trade +79014,Agriculture,Agriculture +196006,Education,Education +420150,Employment and Training,Employment and Training +79014,Energy,Energy +99158,Health,Health +480074,Immigration,Immigration +342000,Industry,Industry +381595,Infrastructure,Infrastructure +117092,Intellectual Property,Intellectual Property +196004,International Relations,International Relations +165920,International Trade,International Trade +462802,Regional Development,Regional Development +420150,Taxation and Finance,Taxation and Finance +89323,Government Procurement,Government Procurement +330446,Agriculture,Agriculture +317009,Industry,Industry +161115,Regional Development,Regional Development +336014,Agriculture,Agriculture +329894,International Trade,International Trade +156266,Agriculture,Agriculture +147141,International Trade,International Trade +86836,Consumer Issues,Consumer Issues +86756,Immigration,Immigration +86774,Justice and Law Enforcement,Justice and Law Enforcement +429614,Health,Health +338802,Environment,Environment +338805,Infrastructure,Infrastructure +338803,Transportation,Transportation +482236,Education,Education +386888,Employment and Training,Employment and Training +350235,Environment,Environment +350236,Health,Health +375215,Immigration,Immigration +116454,Health,Health +441290,Agriculture,Agriculture +534158,Consumer Issues,Consumer Issues +470355,Employment and Training,Employment and Training +534144,Energy,Energy +506695,Environment,Environment +506279,Financial Institutions,Financial Institutions +432927,Health,Health +420859,Immigration,Immigration +467663,Industry,Industry +506684,Internal Trade,Internal Trade +228912,International Relations,International Relations +534136,International Trade,International Trade +496447,Labour,Labour +428200,Small Business,Small Business +400542,Taxation and Finance,Taxation and Finance +516321,Transportation,Transportation +354100,Constitutional Issues,Constitutional Issues +507093,Health,Health +245108,Intellectual Property,Intellectual Property +381467,International Relations,International Relations +533232,Justice and Law Enforcement,Justice and Law Enforcement +103834,Constitutional Issues,Constitutional Issues +494324,Financial Institutions,Financial Institutions +375898,Intellectual Property,Intellectual Property +103834,Internal Trade,Internal Trade +103834,International Trade,International Trade +518640,Justice and Law Enforcement,Justice and Law Enforcement +210917,Environment,Environment +210913,Industry,Industry +240590,Education,Education +471620,Employment and Training,Employment and Training +153151,Industry,Industry +158389,Infrastructure,Infrastructure +101614,Other,Research +258789,Agriculture,Agriculture +472586,Employment and Training,Employment and Training +409041,Energy,Energy +409041,Environment,Environment +438168,Immigration,Immigration +532620,Industry,Industry +187826,Infrastructure,Infrastructure +518527,Internal Trade,Internal Trade +386311,International Relations,International Relations +497448,International Trade,International Trade +454877,Justice and Law Enforcement,Justice and Law Enforcement +517269,Labour,Labour +93676,Small Business,Small Business +480653,Taxation and Finance,Taxation and Finance +458491,Transportation,Transportation +82805,Other,CANADA/U.S.TRADE AND SECURITY +109031,Other,CANADA/U.S. BORDERS +228929,Defence,Defence +326495,Government Procurement,Government Procurement +107694,Industry,Industry +324887,Consumer Issues,Consumer Issues +324888,Financial Institutions,Financial Institutions +180864,Taxation and Finance,Taxation and Finance +100929,Government Procurement,Government Procurement +81075,Taxation and Finance,Taxation and Finance +474511,Agriculture,Agriculture +483545,Consumer Issues,Consumer Issues +449003,Environment,Environment +427838,Health,Health +446928,Industry,Industry +174486,Infrastructure,Infrastructure +171326,Internal Trade,Internal Trade +434475,International Trade,International Trade +434569,Taxation and Finance,Taxation and Finance +78116,Regional Development,Regional Development +88755,Taxation and Finance,Taxation and Finance +370055,International Trade,International Trade +368024,Justice and Law Enforcement,Justice and Law Enforcement +355025,Labour,Labour +352466,Taxation and Finance,Taxation and Finance +441396,Industry,Industry +441395,Industry,Industry +441394,Industry,Industry +441393,Industry,Industry +441389,Industry,Industry +441386,Industry,Industry +441385,Industry,Industry +441382,Industry,Industry +441380,Industry,Industry +441379,Industry,Industry +441376,Industry,Industry +441374,Industry,Industry +437986,Industry,Industry +437979,Industry,Industry +437978,Industry,Industry +437977,Industry,Industry +437971,Industry,Industry +437954,Industry,Industry +434817,Industry,Industry +434800,Industry,Industry +434795,Industry,Industry +434761,Industry,Industry +434760,Industry,Industry +434738,Industry,Industry +434475,Industry,Industry +434464,Industry,Industry +431982,Industry,Industry +431981,Industry,Industry +431980,Industry,Industry +431976,Industry,Industry +423492,Industry,Industry +423020,Industry,Industry +423019,Industry,Industry +406227,Industry,Industry +406226,Industry,Industry +406224,Industry,Industry +406223,Industry,Industry +405065,Industry,Industry +405064,Industry,Industry +405063,Industry,Industry +402139,Industry,Industry +402138,Industry,Industry +402137,Industry,Industry +399449,Industry,Industry +399447,Industry,Industry +397965,Industry,Industry +397963,Industry,Industry +397962,Industry,Industry +397959,Industry,Industry +397957,Industry,Industry +395201,Industry,Industry +395199,Industry,Industry +395198,Industry,Industry +395197,Industry,Industry +395196,Industry,Industry +393151,Industry,Industry +393094,Industry,Industry +393093,Industry,Industry +392976,Industry,Industry +389157,Industry,Industry +389156,Industry,Industry +389155,Industry,Industry +389152,Industry,Industry +389151,Industry,Industry +389142,Industry,Industry +389140,Industry,Industry +389137,Industry,Industry +386443,Industry,Industry +386442,Industry,Industry +386440,Industry,Industry +386439,Industry,Industry +386438,Industry,Industry +386437,Industry,Industry +386436,Industry,Industry +384588,Industry,Industry +381838,Industry,Industry +381837,Industry,Industry +381836,Industry,Industry +381835,Industry,Industry +380385,Industry,Industry +380384,Industry,Industry +380383,Industry,Industry +380379,Industry,Industry +378219,Industry,Industry +377439,Industry,Industry +377437,Industry,Industry +377436,Industry,Industry +377435,Industry,Industry +377434,Industry,Industry +377431,Industry,Industry +373470,Industry,Industry +373469,Industry,Industry +373468,Industry,Industry +370801,Industry,Industry +370800,Industry,Industry +370799,Industry,Industry +370798,Industry,Industry +370797,Industry,Industry +368158,Industry,Industry +364703,Industry,Industry +361904,Industry,Industry +359299,Industry,Industry +359298,Industry,Industry +359297,Industry,Industry +359296,Industry,Industry +359294,Industry,Industry +359293,Industry,Industry +357532,Industry,Industry +357531,Industry,Industry +544365,Industry,Industry +544363,Industry,Industry +535254,Industry,Industry +535250,Industry,Industry +532314,Industry,Industry +532311,Industry,Industry +532310,Industry,Industry +529109,Industry,Industry +529108,Industry,Industry +529107,Industry,Industry +529106,Industry,Industry +529104,Industry,Industry +529096,Industry,Industry +524193,Industry,Industry +524192,Industry,Industry +524189,Industry,Industry +524182,Industry,Industry +521271,Industry,Industry +521270,Industry,Industry +521269,Industry,Industry +521266,Industry,Industry +521261,Industry,Industry +521259,Industry,Industry +521256,Industry,Industry +521253,Industry,Industry +521251,Industry,Industry +521249,Industry,Industry +518913,Industry,Industry +518909,Industry,Industry +515333,Industry,Industry +512387,Industry,Industry +510159,Industry,Industry +510157,Industry,Industry +507065,Industry,Industry +505028,Industry,Industry +505023,Industry,Industry +505021,Industry,Industry +504220,Industry,Industry +504213,Industry,Industry +501021,Industry,Industry +501017,Industry,Industry +501016,Industry,Industry +501015,Industry,Industry +501014,Industry,Industry +501013,Industry,Industry +501012,Industry,Industry +501011,Industry,Industry +501010,Industry,Industry +501009,Industry,Industry +497510,Industry,Industry +494515,Industry,Industry +494514,Industry,Industry +494513,Industry,Industry +494510,Industry,Industry +494509,Industry,Industry +492558,Industry,Industry +492557,Industry,Industry +492556,Industry,Industry +492552,Industry,Industry +492548,Industry,Industry +492546,Industry,Industry +492545,Industry,Industry +489624,Industry,Industry +489623,Industry,Industry +489622,Industry,Industry +489621,Industry,Industry +489620,Industry,Industry +489619,Industry,Industry +489618,Industry,Industry +489617,Industry,Industry +489616,Industry,Industry +489614,Industry,Industry +486750,Industry,Industry +486745,Industry,Industry +483554,Industry,Industry +483552,Industry,Industry +483551,Industry,Industry +483550,Industry,Industry +483549,Industry,Industry +483545,Industry,Industry +483544,Industry,Industry +481394,Industry,Industry +481393,Industry,Industry +481392,Industry,Industry +481391,Industry,Industry +481390,Industry,Industry +481389,Industry,Industry +479417,Industry,Industry +479416,Industry,Industry +479415,Industry,Industry +476988,Industry,Industry +476986,Industry,Industry +476984,Industry,Industry +476983,Industry,Industry +476982,Industry,Industry +476981,Industry,Industry +476978,Industry,Industry +476977,Industry,Industry +476975,Industry,Industry +476974,Industry,Industry +476973,Industry,Industry +474522,Industry,Industry +474519,Industry,Industry +474516,Industry,Industry +474514,Industry,Industry +474512,Industry,Industry +474511,Industry,Industry +474509,Industry,Industry +472587,Industry,Industry +472071,Industry,Industry +472070,Industry,Industry +472069,Industry,Industry +469699,Industry,Industry +469691,Industry,Industry +469688,Industry,Industry +469686,Industry,Industry +469684,Industry,Industry +469682,Industry,Industry +469681,Industry,Industry +469679,Industry,Industry +469677,Industry,Industry +469676,Industry,Industry +469673,Industry,Industry +469671,Industry,Industry +469669,Industry,Industry +469668,Industry,Industry +469667,Industry,Industry +469666,Industry,Industry +466377,Industry,Industry +466376,Industry,Industry +466375,Industry,Industry +466373,Industry,Industry +466371,Industry,Industry +466370,Industry,Industry +466303,Industry,Industry +466302,Industry,Industry +466301,Industry,Industry +466300,Industry,Industry +466298,Industry,Industry +466297,Industry,Industry +466296,Industry,Industry +466294,Industry,Industry +466293,Industry,Industry +466292,Industry,Industry +464204,Industry,Industry +464194,Industry,Industry +464191,Industry,Industry +464190,Industry,Industry +464189,Industry,Industry +462316,Industry,Industry +462314,Industry,Industry +461210,Industry,Industry +461209,Industry,Industry +460912,Industry,Industry +459932,Industry,Industry +459931,Industry,Industry +459930,Industry,Industry +459271,Industry,Industry +459270,Industry,Industry +459266,Industry,Industry +459265,Industry,Industry +459263,Industry,Industry +458361,Industry,Industry +458358,Industry,Industry +458357,Industry,Industry +456715,Industry,Industry +456714,Industry,Industry +456713,Industry,Industry +456712,Industry,Industry +456711,Industry,Industry +456710,Industry,Industry +456709,Industry,Industry +456708,Industry,Industry +454511,Industry,Industry +454506,Industry,Industry +454505,Industry,Industry +454503,Industry,Industry +454500,Industry,Industry +454498,Industry,Industry +454497,Industry,Industry +454490,Industry,Industry +454487,Industry,Industry +454486,Industry,Industry +451299,Industry,Industry +451298,Industry,Industry +451297,Industry,Industry +451296,Industry,Industry +451295,Industry,Industry +451294,Industry,Industry +451293,Industry,Industry +449003,Industry,Industry +449002,Industry,Industry +449001,Industry,Industry +448999,Industry,Industry +448998,Industry,Industry +448997,Industry,Industry +446943,Industry,Industry +446942,Industry,Industry +446940,Industry,Industry +446929,Industry,Industry +381839,Infrastructure,Infrastructure +370802,Infrastructure,Infrastructure +326530,Infrastructure,Infrastructure +285372,Infrastructure,Infrastructure +458357,Internal Trade,Internal Trade +434467,International Trade,International Trade +434464,International Trade,International Trade +167028,International Trade,International Trade +122494,International Trade,International Trade +115995,International Trade,International Trade +317665,International Trade,International Trade +317664,International Trade,International Trade +317663,International Trade,International Trade +317662,International Trade,International Trade +307512,International Trade,International Trade +302430,International Trade,International Trade +302416,International Trade,International Trade +294431,International Trade,International Trade +294410,International Trade,International Trade +294409,International Trade,International Trade +279790,International Trade,International Trade +279789,International Trade,International Trade +266969,International Trade,International Trade +261331,International Trade,International Trade +174486,International Trade,International Trade +364704,International Trade,International Trade +354847,International Trade,International Trade +347999,International Trade,International Trade +347998,International Trade,International Trade +346157,International Trade,International Trade +346118,International Trade,International Trade +339930,International Trade,International Trade +339928,International Trade,International Trade +339926,International Trade,International Trade +330950,International Trade,International Trade +330948,International Trade,International Trade +330947,International Trade,International Trade +329476,International Trade,International Trade +326532,International Trade,International Trade +323614,International Trade,International Trade +323612,International Trade,International Trade +323610,International Trade,International Trade +323609,International Trade,International Trade +320583,International Trade,International Trade +317667,International Trade,International Trade +317666,International Trade,International Trade +431995,International Trade,International Trade +431981,International Trade,International Trade +431976,International Trade,International Trade +430270,International Trade,International Trade +430233,International Trade,International Trade +430232,International Trade,International Trade +430229,International Trade,International Trade +430227,International Trade,International Trade +430226,International Trade,International Trade +430221,International Trade,International Trade +430220,International Trade,International Trade +430219,International Trade,International Trade +427848,International Trade,International Trade +427840,International Trade,International Trade +427838,International Trade,International Trade +414755,International Trade,International Trade +411396,International Trade,International Trade +411392,International Trade,International Trade +411390,International Trade,International Trade +411386,International Trade,International Trade +411384,International Trade,International Trade +411381,International Trade,International Trade +411376,International Trade,International Trade +411374,International Trade,International Trade +409215,International Trade,International Trade +409163,International Trade,International Trade +408740,International Trade,International Trade +408739,International Trade,International Trade +408738,International Trade,International Trade +408737,International Trade,International Trade +408736,International Trade,International Trade +408735,International Trade,International Trade +407322,International Trade,International Trade +407321,International Trade,International Trade +407320,International Trade,International Trade +406222,International Trade,International Trade +406221,International Trade,International Trade +406220,International Trade,International Trade +397964,International Trade,International Trade +386444,International Trade,International Trade +384588,International Trade,International Trade +384586,International Trade,International Trade +532310,International Trade,International Trade +529096,International Trade,International Trade +521271,International Trade,International Trade +521269,International Trade,International Trade +521266,International Trade,International Trade +521261,International Trade,International Trade +521253,International Trade,International Trade +521251,International Trade,International Trade +518913,International Trade,International Trade +518912,International Trade,International Trade +518911,International Trade,International Trade +518910,International Trade,International Trade +501021,International Trade,International Trade +501016,International Trade,International Trade +501015,International Trade,International Trade +497513,International Trade,International Trade +497512,International Trade,International Trade +494513,International Trade,International Trade +494511,International Trade,International Trade +494510,International Trade,International Trade +494509,International Trade,International Trade +492558,International Trade,International Trade +492556,International Trade,International Trade +492554,International Trade,International Trade +492553,International Trade,International Trade +492546,International Trade,International Trade +483551,International Trade,International Trade +481392,International Trade,International Trade +479417,International Trade,International Trade +476984,International Trade,International Trade +476983,International Trade,International Trade +476982,International Trade,International Trade +476981,International Trade,International Trade +476977,International Trade,International Trade +476975,International Trade,International Trade +476974,International Trade,International Trade +476973,International Trade,International Trade +476971,International Trade,International Trade +476969,International Trade,International Trade +476968,International Trade,International Trade +476967,International Trade,International Trade +476966,International Trade,International Trade +476965,International Trade,International Trade +476964,International Trade,International Trade +474527,International Trade,International Trade +474525,International Trade,International Trade +474508,International Trade,International Trade +469699,International Trade,International Trade +469691,International Trade,International Trade +469688,International Trade,International Trade +469684,International Trade,International Trade +469682,International Trade,International Trade +469681,International Trade,International Trade +469679,International Trade,International Trade +469677,International Trade,International Trade +469676,International Trade,International Trade +469673,International Trade,International Trade +469669,International Trade,International Trade +469667,International Trade,International Trade +469666,International Trade,International Trade +466377,International Trade,International Trade +466376,International Trade,International Trade +466375,International Trade,International Trade +466373,International Trade,International Trade +466371,International Trade,International Trade +466303,International Trade,International Trade +466302,International Trade,International Trade +466301,International Trade,International Trade +466300,International Trade,International Trade +466298,International Trade,International Trade +466297,International Trade,International Trade +466296,International Trade,International Trade +466294,International Trade,International Trade +466293,International Trade,International Trade +466292,International Trade,International Trade +466291,International Trade,International Trade +464194,International Trade,International Trade +464191,International Trade,International Trade +464190,International Trade,International Trade +462320,International Trade,International Trade +462318,International Trade,International Trade +462316,International Trade,International Trade +461211,International Trade,International Trade +460914,International Trade,International Trade +460910,International Trade,International Trade +459932,International Trade,International Trade +459266,International Trade,International Trade +458357,International Trade,International Trade +456710,International Trade,International Trade +454506,International Trade,International Trade +454505,International Trade,International Trade +454503,International Trade,International Trade +454500,International Trade,International Trade +454490,International Trade,International Trade +454487,International Trade,International Trade +454486,International Trade,International Trade +451298,International Trade,International Trade +451297,International Trade,International Trade +451296,International Trade,International Trade +451295,International Trade,International Trade +451294,International Trade,International Trade +451293,International Trade,International Trade +449003,International Trade,International Trade +449002,International Trade,International Trade +449001,International Trade,International Trade +448999,International Trade,International Trade +446942,International Trade,International Trade +446940,International Trade,International Trade +446936,International Trade,International Trade +444775,International Trade,International Trade +444774,International Trade,International Trade +441386,International Trade,International Trade +441385,International Trade,International Trade +441382,International Trade,International Trade +441381,International Trade,International Trade +441380,International Trade,International Trade +441379,International Trade,International Trade +441376,International Trade,International Trade +441374,International Trade,International Trade +441372,International Trade,International Trade +437986,International Trade,International Trade +437981,International Trade,International Trade +437979,International Trade,International Trade +437973,International Trade,International Trade +437972,International Trade,International Trade +437953,International Trade,International Trade +437951,International Trade,International Trade +434829,International Trade,International Trade +434817,International Trade,International Trade +434812,International Trade,International Trade +434809,International Trade,International Trade +434805,International Trade,International Trade +434788,International Trade,International Trade +434761,International Trade,International Trade +434760,International Trade,International Trade +434738,International Trade,International Trade +434737,International Trade,International Trade +434734,International Trade,International Trade +434733,International Trade,International Trade +434732,International Trade,International Trade +434731,International Trade,International Trade +434730,International Trade,International Trade +434729,International Trade,International Trade +434574,International Trade,International Trade +434572,International Trade,International Trade +434570,International Trade,International Trade +434569,International Trade,International Trade +434475,Taxation and Finance,Taxation and Finance +434464,Taxation and Finance,Taxation and Finance +317662,Taxation and Finance,Taxation and Finance +317660,Taxation and Finance,Taxation and Finance +307510,Taxation and Finance,Taxation and Finance +307509,Taxation and Finance,Taxation and Finance +302412,Taxation and Finance,Taxation and Finance +294431,Taxation and Finance,Taxation and Finance +294430,Taxation and Finance,Taxation and Finance +294410,Taxation and Finance,Taxation and Finance +294409,Taxation and Finance,Taxation and Finance +279790,Taxation and Finance,Taxation and Finance +271076,Taxation and Finance,Taxation and Finance +271075,Taxation and Finance,Taxation and Finance +271069,Taxation and Finance,Taxation and Finance +262275,Taxation and Finance,Taxation and Finance +262274,Taxation and Finance,Taxation and Finance +261331,Taxation and Finance,Taxation and Finance +377431,Taxation and Finance,Taxation and Finance +370801,Taxation and Finance,Taxation and Finance +347998,Taxation and Finance,Taxation and Finance +434737,Taxation and Finance,Taxation and Finance +434734,Taxation and Finance,Taxation and Finance +434733,Taxation and Finance,Taxation and Finance +434732,Taxation and Finance,Taxation and Finance +434731,Taxation and Finance,Taxation and Finance +434730,Taxation and Finance,Taxation and Finance +434729,Taxation and Finance,Taxation and Finance +434574,Taxation and Finance,Taxation and Finance +434572,Taxation and Finance,Taxation and Finance +434570,Taxation and Finance,Taxation and Finance +78115,Regional Development,Regional Development +78114,Regional Development,Regional Development +88754,Taxation and Finance,Taxation and Finance +368024,International Trade,International Trade +497571,Justice and Law Enforcement,Justice and Law Enforcement +491864,Justice and Law Enforcement,Justice and Law Enforcement +389118,Justice and Law Enforcement,Justice and Law Enforcement +377577,Justice and Law Enforcement,Justice and Law Enforcement +353003,Labour,Labour +352465,Taxation and Finance,Taxation and Finance +352463,Taxation and Finance,Taxation and Finance +79495,Infrastructure,Infrastructure +158885,Infrastructure,Infrastructure +93249,Infrastructure,Infrastructure +93216,Infrastructure,Infrastructure +83126,Infrastructure,Infrastructure +86835,Employment and Training,Employment and Training +137854,Employment and Training,Employment and Training +86838,Employment and Training,Employment and Training +86837,Environment,Environment +86835,Environment,Environment +86837,Industry,Industry +86835,Industry,Industry +145874,Infrastructure,Infrastructure +135719,Infrastructure,Infrastructure +135717,Infrastructure,Infrastructure +135716,Infrastructure,Infrastructure +135714,Infrastructure,Infrastructure +135706,Infrastructure,Infrastructure +150253,Infrastructure,Infrastructure +150252,Infrastructure,Infrastructure +150247,Infrastructure,Infrastructure +86835,International Trade,International Trade +86834,International Trade,International Trade +86838,International Trade,International Trade +86837,Labour,Labour +86835,Labour,Labour +101338,Mining,Mining +101337,Mining,Mining +86838,Mining,Mining +86837,Mining,Mining +86835,Mining,Mining +86835,Taxation and Finance,Taxation and Finance +86834,Taxation and Finance,Taxation and Finance +86838,Taxation and Finance,Taxation and Finance +135714,Transportation,Transportation +135706,Transportation,Transportation +101339,Transportation,Transportation +101334,Transportation,Transportation +150253,Transportation,Transportation +150252,Transportation,Transportation +150247,Transportation,Transportation +145879,Transportation,Transportation +145875,Transportation,Transportation +145874,Transportation,Transportation +142941,Transportation,Transportation +142940,Transportation,Transportation +142939,Transportation,Transportation +142920,Transportation,Transportation +138171,Transportation,Transportation +138114,Transportation,Transportation +137854,Transportation,Transportation +135719,Transportation,Transportation +135717,Transportation,Transportation +537631,Industry,Industry +537616,Industry,Industry +374576,Industry,Industry +342207,Industry,Industry +335683,Industry,Industry +333830,Industry,Industry +310475,Industry,Industry +304230,Industry,Industry +296854,Industry,Industry +449753,Industry,Industry +449747,Industry,Industry +443637,Industry,Industry +441109,Industry,Industry +416230,Industry,Industry +406794,Industry,Industry +404285,Industry,Industry +398323,Industry,Industry +391312,Industry,Industry +382327,Industry,Industry +449753,Infrastructure,Infrastructure +441109,Infrastructure,Infrastructure +537631,Taxation and Finance,Taxation and Finance +537616,Taxation and Finance,Taxation and Finance +542233,Tourism,Tourism +537631,Tourism,Tourism +443637,Transportation,Transportation +441109,Transportation,Transportation +254072,Transportation,Transportation +227337,Transportation,Transportation +342778,Transportation,Transportation +342777,Transportation,Transportation +342207,Transportation,Transportation +335683,Transportation,Transportation +333830,Transportation,Transportation +320531,Transportation,Transportation +310475,Transportation,Transportation +304230,Transportation,Transportation +296854,Transportation,Transportation +423212,Transportation,Transportation +416230,Transportation,Transportation +406794,Transportation,Transportation +404285,Transportation,Transportation +398323,Transportation,Transportation +391312,Transportation,Transportation +382327,Transportation,Transportation +382325,Transportation,Transportation +381488,Transportation,Transportation +374929,Transportation,Transportation +374576,Transportation,Transportation +542233,Transportation,Transportation +537631,Transportation,Transportation +537616,Transportation,Transportation +236230,Government Procurement,Government Procurement +307878,Government Procurement,Government Procurement +393195,International Trade,International Trade +393191,International Trade,International Trade +141816,International Trade,International Trade +141815,International Trade,International Trade +141814,International Trade,International Trade +124886,International Trade,International Trade +198248,International Trade,International Trade +167970,International Trade,International Trade +392218,International Trade,International Trade +392217,International Trade,International Trade +399615,International Trade,International Trade +399612,International Trade,International Trade +399610,International Trade,International Trade +399551,International Trade,International Trade +240845,Education,Education +240839,Education,Education +240839,Regional Development,Regional Development +240839,Tourism,Tourism +385593,Energy,Energy +376600,Energy,Energy +145878,Energy,Energy +145876,Energy,Energy +233534,Energy,Energy +200546,Energy,Energy +200535,Energy,Energy +200531,Energy,Energy +158555,Energy,Energy +158554,Energy,Energy +156921,Energy,Energy +372682,Energy,Energy +372676,Energy,Energy +372674,Energy,Energy +369200,Energy,Energy +344064,Energy,Energy +342099,Energy,Energy +338735,Energy,Energy +338733,Energy,Energy +338731,Energy,Energy +338730,Energy,Energy +338728,Energy,Energy +338725,Energy,Energy +338709,Energy,Energy +304450,Energy,Energy +289170,Energy,Energy +277550,Energy,Energy +277548,Energy,Energy +277540,Energy,Energy +277531,Energy,Energy +250354,Energy,Energy +245231,Energy,Energy +417849,Energy,Energy +417847,Energy,Energy +417844,Energy,Energy +417805,Energy,Energy +403290,Energy,Energy +403287,Energy,Energy +398942,Environment,Environment +398939,Environment,Environment +105454,Environment,Environment +200534,Environment,Environment +156922,Environment,Environment +372680,Environment,Environment +369200,Environment,Environment +245231,Environment,Environment +417849,Environment,Environment +417847,Environment,Environment +417844,Environment,Environment +417805,Environment,Environment +403290,Environment,Environment +403287,Environment,Environment +344063,Industry,Industry +403285,Industry,Industry +145877,Industry,Industry +129440,Industry,Industry +277535,Industry,Industry +156920,Industry,Industry +354085,Industry,Industry +347443,Industry,Industry +347442,Industry,Industry +347441,Industry,Industry +409615,International Relations,International Relations +405551,International Relations,International Relations +96774,International Relations,International Relations +88210,International Relations,International Relations +88204,International Relations,International Relations +129447,International Relations,International Relations +129444,International Relations,International Relations +129443,International Relations,International Relations +96777,International Relations,International Relations +96776,International Relations,International Relations +96775,International Relations,International Relations +158553,International Relations,International Relations +158552,International Relations,International Relations +158551,International Relations,International Relations +158550,International Relations,International Relations +142434,International Relations,International Relations +202957,International Relations,International Relations +161929,International Relations,International Relations +277556,International Relations,International Relations +277544,International Relations,International Relations +277531,International Relations,International Relations +269692,International Relations,International Relations +264790,International Relations,International Relations +245244,International Relations,International Relations +245242,International Relations,International Relations +233532,International Relations,International Relations +233530,International Relations,International Relations +277528,International Trade,International Trade +417805,International Trade,International Trade +129446,International Trade,International Trade +129445,International Trade,International Trade +125148,International Trade,International Trade +125143,International Trade,International Trade +245241,International Trade,International Trade +245238,International Trade,International Trade +233532,International Trade,International Trade +233530,International Trade,International Trade +170798,International Trade,International Trade +170797,International Trade,International Trade +161926,International Trade,International Trade +161925,International Trade,International Trade +161924,International Trade,International Trade +161922,International Trade,International Trade +161920,International Trade,International Trade +161918,International Trade,International Trade +409615,International Trade,International Trade +405551,International Trade,International Trade +540944,Education,Education +537293,Education,Education +127995,Education,Education +106403,Education,Education +77798,Education,Education +207385,Education,Education +199619,Education,Education +199618,Education,Education +159699,Education,Education +154689,Education,Education +368834,Education,Education +368833,Education,Education +366454,Education,Education +364794,Education,Education +353652,Education,Education +348693,Education,Education +348690,Education,Education +348683,Education,Education +334669,Education,Education +437439,Education,Education +437438,Education,Education +437437,Education,Education +437435,Education,Education +427733,Education,Education +425820,Education,Education +421670,Education,Education +421664,Education,Education +421659,Education,Education +421654,Education,Education +419543,Education,Education +417601,Education,Education +414739,Education,Education +411850,Education,Education +411849,Education,Education +408678,Education,Education +406200,Education,Education +406199,Education,Education +402753,Education,Education +395580,Education,Education +395576,Education,Education +395575,Education,Education +393168,Education,Education +393167,Education,Education +393166,Education,Education +392254,Education,Education +389895,Education,Education +389891,Education,Education +387786,Education,Education +384954,Education,Education +383367,Education,Education +374437,Education,Education +369870,Education,Education +369121,Education,Education +369121,Environment,Environment +425820,Environment,Environment +408678,Environment,Environment +406199,Environment,Environment +393168,Environment,Environment +540944,Infrastructure,Infrastructure +521570,Infrastructure,Infrastructure +97470,Infrastructure,Infrastructure +85295,Infrastructure,Infrastructure +154689,Infrastructure,Infrastructure +146476,Infrastructure,Infrastructure +180434,Infrastructure,Infrastructure +494390,Infrastructure,Infrastructure +402753,Infrastructure,Infrastructure +474651,Immigration,Immigration +456480,Immigration,Immigration +132428,Immigration,Immigration +204728,Immigration,Immigration +369750,Immigration,Immigration +231850,Immigration,Immigration +231689,Immigration,Immigration +231670,Immigration,Immigration +231669,Immigration,Immigration +398333,Immigration,Immigration +398329,Immigration,Immigration +398324,Immigration,Immigration +398322,Immigration,Immigration +398319,Immigration,Immigration +393887,Immigration,Immigration +393886,Immigration,Immigration +381855,Immigration,Immigration +442819,Immigration,Immigration +442578,Immigration,Immigration +442576,Immigration,Immigration +431714,Immigration,Immigration +431713,Immigration,Immigration +417278,Immigration,Immigration +417277,Immigration,Immigration +539221,Immigration,Immigration +538701,Immigration,Immigration +527160,Immigration,Immigration +500568,Immigration,Immigration +500567,Immigration,Immigration +489153,Immigration,Immigration +481998,Immigration,Immigration +481997,Immigration,Immigration +481995,Immigration,Immigration +381855,Justice and Law Enforcement,Justice and Law Enforcement +538701,Justice and Law Enforcement,Justice and Law Enforcement +431713,Justice and Law Enforcement,Justice and Law Enforcement +175809,Financial Institutions,Financial Institutions +175808,Financial Institutions,Financial Institutions +188006,Financial Institutions,Financial Institutions +188005,Financial Institutions,Financial Institutions +188004,Financial Institutions,Financial Institutions +175814,Financial Institutions,Financial Institutions +175813,Financial Institutions,Financial Institutions +175812,Financial Institutions,Financial Institutions +175811,Financial Institutions,Financial Institutions +194009,Defence,Defence +175283,Defence,Defence +175282,Defence,Defence +172944,Defence,Defence +168164,Defence,Defence +168162,Defence,Defence +165835,Defence,Defence +164040,Defence,Defence +164036,Defence,Defence +156585,Defence,Defence +147952,Defence,Defence +147949,Defence,Defence +400946,Defence,Defence +396730,Defence,Defence +396711,Defence,Defence +394361,Defence,Defence +394359,Defence,Defence +394358,Defence,Defence +394350,Defence,Defence +240854,Defence,Defence +217687,Defence,Defence +217670,Defence,Defence +202539,Defence,Defence +202536,Defence,Defence +199880,Defence,Defence +400946,Industry,Industry +400831,Industry,Industry +130034,Industry,Industry +398996,Industry,Industry +398993,Industry,Industry +398988,Industry,Industry +396986,Industry,Industry +396982,Industry,Industry +396730,Industry,Industry +396711,Industry,Industry +394361,Industry,Industry +394359,Industry,Industry +394358,Industry,Industry +394350,Industry,Industry +385549,Industry,Industry +385537,Industry,Industry +383719,Industry,Industry +383715,Industry,Industry +381487,Industry,Industry +381485,Industry,Industry +381482,Industry,Industry +379729,Industry,Industry +374976,Industry,Industry +338581,Industry,Industry +338580,Industry,Industry +422378,Industry,Industry +420164,Industry,Industry +410291,Industry,Industry +410290,Industry,Industry +408071,Industry,Industry +408067,Industry,Industry +401271,International Trade,International Trade +532992,International Trade,International Trade +509146,Transportation,Transportation +509145,Transportation,Transportation +480722,Transportation,Transportation +419399,Transportation,Transportation +401504,Transportation,Transportation +401271,Transportation,Transportation +506483,Transportation,Transportation +506482,Transportation,Transportation +545081,Transportation,Transportation +542829,Transportation,Transportation +540797,Transportation,Transportation +539409,Transportation,Transportation +539408,Transportation,Transportation +533097,Transportation,Transportation +533095,Transportation,Transportation +533094,Transportation,Transportation +533093,Transportation,Transportation +530717,Transportation,Transportation +530716,Transportation,Transportation +530715,Transportation,Transportation +530714,Transportation,Transportation +530127,Transportation,Transportation +530126,Transportation,Transportation +530124,Transportation,Transportation +530123,Transportation,Transportation +523931,Transportation,Transportation +523930,Transportation,Transportation +523929,Transportation,Transportation +523928,Transportation,Transportation +523927,Transportation,Transportation +523926,Transportation,Transportation +523925,Transportation,Transportation +523922,Transportation,Transportation +520848,Transportation,Transportation +520247,Transportation,Transportation +520245,Transportation,Transportation +516460,Transportation,Transportation +516459,Transportation,Transportation +516458,Transportation,Transportation +516457,Transportation,Transportation +516455,Transportation,Transportation +516452,Transportation,Transportation +513615,Transportation,Transportation +513611,Transportation,Transportation +513608,Transportation,Transportation +512145,Transportation,Transportation +512144,Transportation,Transportation +512143,Transportation,Transportation +512142,Transportation,Transportation +512140,Transportation,Transportation +512138,Transportation,Transportation +512137,Transportation,Transportation +509869,Transportation,Transportation +509868,Transportation,Transportation +509867,Transportation,Transportation +509866,Transportation,Transportation +509865,Transportation,Transportation +506491,Transportation,Transportation +506490,Transportation,Transportation +506487,Transportation,Transportation +506485,Transportation,Transportation +521700,Constitutional Issues,Constitutional Issues +466796,Education,Education +465979,Education,Education +101655,Education,Education +84578,Education,Education +165570,Education,Education +133955,Education,Education +133954,Education,Education +341929,Education,Education +341894,Education,Education +267209,Education,Education +253652,Education,Education +247632,Education,Education +247629,Education,Education +216848,Education,Education +213567,Education,Education +465976,Education,Education +465975,Education,Education +465974,Education,Education +465973,Education,Education +465411,Education,Education +461863,Education,Education +456297,Education,Education +456295,Education,Education +455008,Education,Education +453204,Education,Education +453203,Education,Education +451092,Education,Education +451091,Education,Education +451090,Education,Education +451088,Education,Education +448626,Education,Education +448562,Education,Education +448524,Education,Education +445867,Education,Education +444634,Education,Education +441941,Education,Education +441431,Education,Education +434313,Education,Education +434298,Education,Education +427186,Education,Education +427162,Education,Education +427054,Education,Education +425213,Education,Education +425026,Education,Education +424981,Education,Education +417552,Education,Education +417550,Education,Education +414305,Education,Education +408549,Education,Education +408548,Education,Education +406673,Education,Education +406672,Education,Education +380473,Education,Education +373692,Education,Education +366347,Education,Education +341980,Education,Education +341976,Education,Education +341975,Education,Education +341971,Education,Education +341968,Education,Education +341966,Education,Education +341963,Education,Education +341960,Education,Education +341956,Education,Education +341951,Education,Education +341950,Education,Education +341947,Education,Education +341945,Education,Education +341942,Education,Education +341939,Education,Education +341937,Education,Education +341934,Education,Education +341931,Education,Education +542776,Education,Education +542104,Education,Education +541275,Education,Education +538852,Education,Education +537809,Education,Education +530321,Education,Education +526740,Education,Education +526428,Education,Education +526427,Education,Education +526424,Education,Education +526396,Education,Education +526327,Education,Education +523559,Education,Education +523377,Education,Education +523374,Education,Education +521700,Education,Education +521602,Education,Education +520977,Education,Education +520567,Education,Education +520506,Education,Education +520262,Education,Education +519277,Education,Education +515052,Education,Education +514942,Education,Education +514941,Education,Education +514940,Education,Education +514876,Education,Education +514845,Education,Education +514462,Education,Education +500630,Education,Education +500334,Education,Education +500333,Education,Education +500331,Education,Education +500330,Education,Education +500328,Education,Education +500325,Education,Education +500321,Education,Education +500318,Education,Education +500316,Education,Education +485734,Education,Education +479137,Education,Education +479136,Education,Education +474075,Education,Education +474073,Education,Education +472359,Education,Education +471565,Education,Education +466811,Education,Education +445867,Employment and Training,Employment and Training +434298,Employment and Training,Employment and Training +253652,Employment and Training,Employment and Training +406672,Employment and Training,Employment and Training +397680,Employment and Training,Employment and Training +373692,Employment and Training,Employment and Training +369962,Employment and Training,Employment and Training +526740,Employment and Training,Employment and Training +521700,Employment and Training,Employment and Training +521602,Employment and Training,Employment and Training +520977,Employment and Training,Employment and Training +520567,Employment and Training,Employment and Training +520506,Employment and Training,Employment and Training +514462,Employment and Training,Employment and Training +485734,Employment and Training,Employment and Training +466811,Employment and Training,Employment and Training +466809,Employment and Training,Employment and Training +466796,Employment and Training,Employment and Training +465979,Employment and Training,Employment and Training +465976,Employment and Training,Employment and Training +465975,Employment and Training,Employment and Training +465974,Employment and Training,Employment and Training +465973,Employment and Training,Employment and Training +461863,Employment and Training,Employment and Training +455008,Employment and Training,Employment and Training +453204,Employment and Training,Employment and Training +453203,Employment and Training,Employment and Training +451091,Employment and Training,Employment and Training +448626,Employment and Training,Employment and Training +521700,Immigration,Immigration +520977,Immigration,Immigration +453204,Immigration,Immigration +540659,Immigration,Immigration +525358,Immigration,Immigration +408549,Infrastructure,Infrastructure +465411,Intellectual Property,Intellectual Property +461863,Intellectual Property,Intellectual Property +456297,Intellectual Property,Intellectual Property +456295,Intellectual Property,Intellectual Property +455008,Intellectual Property,Intellectual Property +448626,Intellectual Property,Intellectual Property +448524,Intellectual Property,Intellectual Property +441431,Intellectual Property,Intellectual Property +427186,Intellectual Property,Intellectual Property +427162,Intellectual Property,Intellectual Property +425213,Intellectual Property,Intellectual Property +425026,Intellectual Property,Intellectual Property +424981,Intellectual Property,Intellectual Property +422493,Intellectual Property,Intellectual Property +417552,Intellectual Property,Intellectual Property +417550,Intellectual Property,Intellectual Property +406673,Intellectual Property,Intellectual Property +378246,Intellectual Property,Intellectual Property +542104,Intellectual Property,Intellectual Property +538852,Intellectual Property,Intellectual Property +537809,Intellectual Property,Intellectual Property +530321,Intellectual Property,Intellectual Property +530315,Intellectual Property,Intellectual Property +526327,Intellectual Property,Intellectual Property +523559,Intellectual Property,Intellectual Property +523374,Intellectual Property,Intellectual Property +519277,Intellectual Property,Intellectual Property +515052,Intellectual Property,Intellectual Property +514942,Intellectual Property,Intellectual Property +514941,Intellectual Property,Intellectual Property +514940,Intellectual Property,Intellectual Property +514876,Intellectual Property,Intellectual Property +514845,Intellectual Property,Intellectual Property +514462,Intellectual Property,Intellectual Property +466811,Intellectual Property,Intellectual Property +466809,Intellectual Property,Intellectual Property +466796,Intellectual Property,Intellectual Property +465979,Intellectual Property,Intellectual Property +465976,Intellectual Property,Intellectual Property +465975,Intellectual Property,Intellectual Property +465974,Intellectual Property,Intellectual Property +370307,International Trade,International Trade +514462,International Trade,International Trade +380473,International Trade,International Trade +378246,International Trade,International Trade +526327,Justice and Law Enforcement,Justice and Law Enforcement +514462,Justice and Law Enforcement,Justice and Law Enforcement +456295,Labour,Labour +455008,Labour,Labour +253652,Labour,Labour +453204,Labour,Labour +453203,Labour,Labour +451092,Labour,Labour +451091,Labour,Labour +451090,Labour,Labour +448562,Labour,Labour +445867,Labour,Labour +444634,Labour,Labour +441941,Labour,Labour +441431,Labour,Labour +434298,Labour,Labour +369962,Labour,Labour +341907,Labour,Labour +341903,Labour,Labour +341900,Labour,Labour +341885,Labour,Labour +542776,Labour,Labour +526740,Labour,Labour +523377,Labour,Labour +521700,Labour,Labour +520262,Labour,Labour +514462,Labour,Labour +138095,International Relations,International Relations +105704,International Trade,International Trade +142616,International Trade,International Trade +203887,Transportation,Transportation +88232,Consumer Issues,Consumer Issues +88231,Health,Health +77785,Health,Health +97681,Health,Health +97688,Health,Health +112954,Transportation,Transportation +105694,Transportation,Transportation +90097,Transportation,Transportation +106274,Industry,Industry +92861,Industry,Industry +135933,Industry,Industry +125123,Industry,Industry +125120,Industry,Industry +424211,International Trade,International Trade +424210,International Trade,International Trade +117666,International Trade,International Trade +169124,International Trade,International Trade +162396,International Trade,International Trade +153126,International Trade,International Trade +152101,International Trade,International Trade +145849,International Trade,International Trade +136158,International Trade,International Trade +247049,International Trade,International Trade +244766,International Trade,International Trade +241171,International Trade,International Trade +185927,International Trade,International Trade +185918,International Trade,International Trade +374911,International Trade,International Trade +371551,International Trade,International Trade +368888,International Trade,International Trade +368887,International Trade,International Trade +344140,International Trade,International Trade +315716,International Trade,International Trade +308989,International Trade,International Trade +263590,International Trade,International Trade +445775,International Trade,International Trade +445774,International Trade,International Trade +445759,International Trade,International Trade +444308,International Trade,International Trade +436885,International Trade,International Trade +435943,International Trade,International Trade +435940,International Trade,International Trade +433730,International Trade,International Trade +271399,Environment,Environment +271398,Environment,Environment +271400,Industry,Industry +271399,Industry,Industry +262569,Tourism,Tourism +241146,Tourism,Tourism +90261,Tourism,Tourism +83059,Tourism,Tourism +83058,Tourism,Tourism +80905,Tourism,Tourism +96996,Tourism,Tourism +330363,Tourism,Tourism +330362,Tourism,Tourism +330361,Tourism,Tourism +80896,Government Procurement,Government Procurement +443754,Government Procurement,Government Procurement +245461,Government Procurement,Government Procurement +85393,Government Procurement,Government Procurement +83056,Government Procurement,Government Procurement +77675,Government Procurement,Government Procurement +77663,Government Procurement,Government Procurement +77661,Government Procurement,Government Procurement +117689,Government Procurement,Government Procurement +106276,Government Procurement,Government Procurement +101218,Government Procurement,Government Procurement +97172,Government Procurement,Government Procurement +148234,Government Procurement,Government Procurement +129080,Government Procurement,Government Procurement +149219,Infrastructure,Infrastructure +542903,Consumer Issues,Consumer Issues +515105,Consumer Issues,Consumer Issues +97620,Consumer Issues,Consumer Issues +319710,Consumer Issues,Consumer Issues +313358,Consumer Issues,Consumer Issues +244659,Consumer Issues,Consumer Issues +383026,Consumer Issues,Consumer Issues +87735,Environment,Environment +194625,Environment,Environment +76098,Environment,Environment +114314,International Trade,International Trade +366772,International Trade,International Trade +100827,International Trade,International Trade +97621,International Trade,International Trade +97620,Labour,Labour +424892,Labour,Labour +473909,Taxation and Finance,Taxation and Finance +473907,Taxation and Finance,Taxation and Finance +100693,Taxation and Finance,Taxation and Finance +93237,Taxation and Finance,Taxation and Finance +93234,Taxation and Finance,Taxation and Finance +92597,Taxation and Finance,Taxation and Finance +89838,Taxation and Finance,Taxation and Finance +89836,Taxation and Finance,Taxation and Finance +87735,Taxation and Finance,Taxation and Finance +76094,Taxation and Finance,Taxation and Finance +151916,Taxation and Finance,Taxation and Finance +151915,Taxation and Finance,Taxation and Finance +142852,Taxation and Finance,Taxation and Finance +113910,Taxation and Finance,Taxation and Finance +113896,Taxation and Finance,Taxation and Finance +106356,Taxation and Finance,Taxation and Finance +174526,Taxation and Finance,Taxation and Finance +167900,Taxation and Finance,Taxation and Finance +167896,Taxation and Finance,Taxation and Finance +161936,Taxation and Finance,Taxation and Finance +159541,Taxation and Finance,Taxation and Finance +250759,Taxation and Finance,Taxation and Finance +250747,Taxation and Finance,Taxation and Finance +250744,Taxation and Finance,Taxation and Finance +230305,Taxation and Finance,Taxation and Finance +230300,Taxation and Finance,Taxation and Finance +227013,Taxation and Finance,Taxation and Finance +206950,Taxation and Finance,Taxation and Finance +473942,Taxation and Finance,Taxation and Finance +473940,Taxation and Finance,Taxation and Finance +473938,Taxation and Finance,Taxation and Finance +542903,Transportation,Transportation +515105,Transportation,Transportation +199776,Transportation,Transportation +194626,Transportation,Transportation +194625,Transportation,Transportation +194624,Transportation,Transportation +336613,Transportation,Transportation +336612,Transportation,Transportation +336611,Transportation,Transportation +330645,Transportation,Transportation +330644,Transportation,Transportation +329063,Transportation,Transportation +329062,Transportation,Transportation +329061,Transportation,Transportation +329060,Transportation,Transportation +319711,Transportation,Transportation +319710,Transportation,Transportation +319709,Transportation,Transportation +316309,Transportation,Transportation +313358,Transportation,Transportation +313357,Transportation,Transportation +313356,Transportation,Transportation +304891,Transportation,Transportation +304890,Transportation,Transportation +304889,Transportation,Transportation +296550,Transportation,Transportation +291530,Transportation,Transportation +422601,Transportation,Transportation +422599,Transportation,Transportation +422598,Transportation,Transportation +422597,Transportation,Transportation +422596,Transportation,Transportation +422595,Transportation,Transportation +422594,Transportation,Transportation +422593,Transportation,Transportation +422592,Transportation,Transportation +417521,Transportation,Transportation +417507,Transportation,Transportation +417506,Transportation,Transportation +414486,Transportation,Transportation +414428,Transportation,Transportation +414427,Transportation,Transportation +414426,Transportation,Transportation +414425,Transportation,Transportation +414424,Transportation,Transportation +411555,Transportation,Transportation +411012,Transportation,Transportation +411011,Transportation,Transportation +411009,Transportation,Transportation +411007,Transportation,Transportation +411004,Transportation,Transportation +411001,Transportation,Transportation +410997,Transportation,Transportation +410995,Transportation,Transportation +405954,Transportation,Transportation +405908,Transportation,Transportation +405907,Transportation,Transportation +405902,Transportation,Transportation +405901,Transportation,Transportation +405900,Transportation,Transportation +405899,Transportation,Transportation +405897,Transportation,Transportation +391995,Transportation,Transportation +391994,Transportation,Transportation +391993,Transportation,Transportation +391992,Transportation,Transportation +383026,Transportation,Transportation +383025,Transportation,Transportation +383024,Transportation,Transportation +383023,Transportation,Transportation +383022,Transportation,Transportation +383020,Transportation,Transportation +380191,Transportation,Transportation +380190,Transportation,Transportation +380189,Transportation,Transportation +380188,Transportation,Transportation +372454,Transportation,Transportation +372453,Transportation,Transportation +372452,Transportation,Transportation +372447,Transportation,Transportation +372445,Transportation,Transportation +372443,Transportation,Transportation +372440,Transportation,Transportation +372438,Transportation,Transportation +372435,Transportation,Transportation +372433,Transportation,Transportation +372431,Transportation,Transportation +372428,Transportation,Transportation +372424,Transportation,Transportation +369682,Transportation,Transportation +367162,Transportation,Transportation +366776,Transportation,Transportation +366775,Transportation,Transportation +366774,Transportation,Transportation +366772,Transportation,Transportation +357982,Transportation,Transportation +357980,Transportation,Transportation +357979,Transportation,Transportation +357978,Transportation,Transportation +357977,Transportation,Transportation +357976,Transportation,Transportation +357972,Transportation,Transportation +357970,Transportation,Transportation +350018,Transportation,Transportation +350017,Transportation,Transportation +342817,Transportation,Transportation +514992,Transportation,Transportation +514991,Transportation,Transportation +514990,Transportation,Transportation +514989,Transportation,Transportation +514988,Transportation,Transportation +488691,Transportation,Transportation +488689,Transportation,Transportation +488688,Transportation,Transportation +488687,Transportation,Transportation +488686,Transportation,Transportation +488685,Transportation,Transportation +488684,Transportation,Transportation +488683,Transportation,Transportation +488682,Transportation,Transportation +488681,Transportation,Transportation +488679,Transportation,Transportation +488678,Transportation,Transportation +488677,Transportation,Transportation +488676,Transportation,Transportation +488675,Transportation,Transportation +488673,Transportation,Transportation +488672,Transportation,Transportation +488671,Transportation,Transportation +488670,Transportation,Transportation +488669,Transportation,Transportation +488668,Transportation,Transportation +488667,Transportation,Transportation +488239,Transportation,Transportation +488238,Transportation,Transportation +488237,Transportation,Transportation +488236,Transportation,Transportation +473945,Transportation,Transportation +473944,Transportation,Transportation +473943,Transportation,Transportation +473941,Transportation,Transportation +473940,Transportation,Transportation +473939,Transportation,Transportation +473938,Transportation,Transportation +473918,Transportation,Transportation +473917,Transportation,Transportation +473916,Transportation,Transportation +473915,Transportation,Transportation +473912,Transportation,Transportation +473909,Transportation,Transportation +473908,Transportation,Transportation +473906,Transportation,Transportation +473905,Transportation,Transportation +473904,Transportation,Transportation +473903,Transportation,Transportation +473902,Transportation,Transportation +469812,Transportation,Transportation +457775,Transportation,Transportation +457774,Transportation,Transportation +457773,Transportation,Transportation +457772,Transportation,Transportation +457771,Transportation,Transportation +457770,Transportation,Transportation +457769,Transportation,Transportation +457768,Transportation,Transportation +457767,Transportation,Transportation +457766,Transportation,Transportation +457765,Transportation,Transportation +457764,Transportation,Transportation +457763,Transportation,Transportation +457762,Transportation,Transportation +457761,Transportation,Transportation +457760,Transportation,Transportation +457759,Transportation,Transportation +457758,Transportation,Transportation +457757,Transportation,Transportation +457756,Transportation,Transportation +457755,Transportation,Transportation +457754,Transportation,Transportation +457753,Transportation,Transportation +457752,Transportation,Transportation +448546,Transportation,Transportation +448544,Transportation,Transportation +448541,Transportation,Transportation +448540,Transportation,Transportation +448538,Transportation,Transportation +448537,Transportation,Transportation +448535,Transportation,Transportation +448534,Transportation,Transportation +448533,Transportation,Transportation +448532,Transportation,Transportation +448531,Transportation,Transportation +448529,Transportation,Transportation +448528,Transportation,Transportation +441355,Transportation,Transportation +440235,Transportation,Transportation +440234,Transportation,Transportation +440231,Transportation,Transportation +440230,Transportation,Transportation +440229,Transportation,Transportation +440228,Transportation,Transportation +440227,Transportation,Transportation +440226,Transportation,Transportation +440224,Transportation,Transportation +440223,Transportation,Transportation +440222,Transportation,Transportation +424897,Transportation,Transportation +434046,International Relations,International Relations +433180,International Relations,International Relations +93335,International Relations,International Relations +85336,International Relations,International Relations +76896,International Relations,International Relations +76876,International Relations,International Relations +159554,International Relations,International Relations +126802,International Relations,International Relations +126797,International Relations,International Relations +109649,International Relations,International Relations +105695,International Relations,International Relations +99479,International Relations,International Relations +99478,International Relations,International Relations +95905,International Relations,International Relations +95904,International Relations,International Relations +95901,International Relations,International Relations +95900,International Relations,International Relations +95899,International Relations,International Relations +95898,International Relations,International Relations +95897,International Relations,International Relations +95896,International Relations,International Relations +95895,International Relations,International Relations +188339,International Relations,International Relations +188334,International Relations,International Relations +188329,International Relations,International Relations +188326,International Relations,International Relations +188322,International Relations,International Relations +188313,International Relations,International Relations +188311,International Relations,International Relations +188310,International Relations,International Relations +188308,International Relations,International Relations +188307,International Relations,International Relations +188304,International Relations,International Relations +188280,International Relations,International Relations +188276,International Relations,International Relations +188274,International Relations,International Relations +188270,International Relations,International Relations +188248,International Relations,International Relations +188242,International Relations,International Relations +188238,International Relations,International Relations +188236,International Relations,International Relations +188233,International Relations,International Relations +188230,International Relations,International Relations +188227,International Relations,International Relations +188225,International Relations,International Relations +188216,International Relations,International Relations +188214,International Relations,International Relations +188212,International Relations,International Relations +188191,International Relations,International Relations +185865,International Relations,International Relations +180676,International Relations,International Relations +180665,International Relations,International Relations +169990,International Relations,International Relations +169989,International Relations,International Relations +169988,International Relations,International Relations +169984,International Relations,International Relations +168761,International Relations,International Relations +168757,International Relations,International Relations +167685,International Relations,International Relations +165353,International Relations,International Relations +163543,International Relations,International Relations +163542,International Relations,International Relations +163378,International Relations,International Relations +163375,International Relations,International Relations +163369,International Relations,International Relations +163367,International Relations,International Relations +163366,International Relations,International Relations +163363,International Relations,International Relations +163360,International Relations,International Relations +163358,International Relations,International Relations +163351,International Relations,International Relations +163350,International Relations,International Relations +161282,International Relations,International Relations +161281,International Relations,International Relations +161271,International Relations,International Relations +161173,International Relations,International Relations +161150,International Relations,International Relations +159566,International Relations,International Relations +159564,International Relations,International Relations +159558,International Relations,International Relations +341116,International Relations,International Relations +341113,International Relations,International Relations +340711,International Relations,International Relations +340707,International Relations,International Relations +340702,International Relations,International Relations +338974,International Relations,International Relations +333377,International Relations,International Relations +332446,International Relations,International Relations +332445,International Relations,International Relations +332442,International Relations,International Relations +332438,International Relations,International Relations +332437,International Relations,International Relations +331584,International Relations,International Relations +327595,International Relations,International Relations +327584,International Relations,International Relations +324979,International Relations,International Relations +323133,International Relations,International Relations +315713,International Relations,International Relations +315712,International Relations,International Relations +307170,International Relations,International Relations +307151,International Relations,International Relations +307150,International Relations,International Relations +296702,International Relations,International Relations +276631,International Relations,International Relations +276390,International Relations,International Relations +263419,International Relations,International Relations +258237,International Relations,International Relations +258235,International Relations,International Relations +254307,International Relations,International Relations +253870,International Relations,International Relations +253509,International Relations,International Relations +251310,International Relations,International Relations +251290,International Relations,International Relations +249849,International Relations,International Relations +249839,International Relations,International Relations +249833,International Relations,International Relations +249825,International Relations,International Relations +244752,International Relations,International Relations +236610,International Relations,International Relations +233319,International Relations,International Relations +233316,International Relations,International Relations +231212,International Relations,International Relations +228733,International Relations,International Relations +228732,International Relations,International Relations +226988,International Relations,International Relations +226973,International Relations,International Relations +226942,International Relations,International Relations +222688,International Relations,International Relations +222682,International Relations,International Relations +222680,International Relations,International Relations +222673,International Relations,International Relations +222668,International Relations,International Relations +188347,International Relations,International Relations +188343,International Relations,International Relations +188341,International Relations,International Relations +188340,International Relations,International Relations +432596,International Relations,International Relations +432578,International Relations,International Relations +432570,International Relations,International Relations +432569,International Relations,International Relations +432562,International Relations,International Relations +431304,International Relations,International Relations +431300,International Relations,International Relations +431299,International Relations,International Relations +431298,International Relations,International Relations +428730,International Relations,International Relations +428721,International Relations,International Relations +428718,International Relations,International Relations +426505,International Relations,International Relations +426496,International Relations,International Relations +426492,International Relations,International Relations +426488,International Relations,International Relations +426484,International Relations,International Relations +426480,International Relations,International Relations +426475,International Relations,International Relations +424443,International Relations,International Relations +424437,International Relations,International Relations +422241,International Relations,International Relations +420023,International Relations,International Relations +419996,International Relations,International Relations +419834,International Relations,International Relations +418265,International Relations,International Relations +418251,International Relations,International Relations +418247,International Relations,International Relations +418236,International Relations,International Relations +417108,International Relations,International Relations +417081,International Relations,International Relations +413340,International Relations,International Relations +413337,International Relations,International Relations +413318,International Relations,International Relations +409141,International Relations,International Relations +405547,International Relations,International Relations +405541,International Relations,International Relations +403864,International Relations,International Relations +403839,International Relations,International Relations +400947,International Relations,International Relations +400910,International Relations,International Relations +398202,International Relations,International Relations +394473,International Relations,International Relations +394468,International Relations,International Relations +392587,International Relations,International Relations +392585,International Relations,International Relations +391418,International Relations,International Relations +391408,International Relations,International Relations +391396,International Relations,International Relations +391385,International Relations,International Relations +391370,International Relations,International Relations +386133,International Relations,International Relations +385524,International Relations,International Relations +385514,International Relations,International Relations +385476,International Relations,International Relations +93206,Infrastructure,Infrastructure +83122,Infrastructure,Infrastructure +86837,Employment and Training,Employment and Training +86838,Environment,Environment +86838,Industry,Industry +145879,Infrastructure,Infrastructure +86837,International Trade,International Trade +86838,Labour,Labour +129047,Mining,Mining +86837,Taxation and Finance,Taxation and Finance +135716,Transportation,Transportation +542233,Industry,Industry +374929,Infrastructure,Infrastructure +404285,Taxation and Finance,Taxation and Finance +441109,Tourism,Tourism +449753,Transportation,Transportation +236233,Government Procurement,Government Procurement +136254,Government Procurement,Government Procurement +109125,International Trade,International Trade +399550,International Trade,International Trade +88376,Education,Education +88376,Infrastructure,Infrastructure +240845,Regional Development,Regional Development +88376,Tourism,Tourism +147984,Government Procurement,Government Procurement +403285,Energy,Energy +403285,Environment,Environment +344064,Industry,Industry +417849,International Relations,International Relations +296840,International Trade,International Trade +368881,Education,Education +494391,Employment and Training,Employment and Training +430230,Energy,Energy +393166,Environment,Environment +383367,Infrastructure,Infrastructure +168118,Regional Development,Regional Development +474653,Immigration,Immigration +393886,Justice and Law Enforcement,Justice and Law Enforcement +89055,Other,REFUGEE POLICY +175810,Financial Institutions,Financial Institutions +194010,Defence,Defence +170556,Environment,Environment +403696,Industry,Industry +164037,International Relations,International Relations +233600,International Trade,International Trade +401504,International Trade,International Trade +398179,Transportation,Transportation +506484,Transportation,Transportation +526327,Constitutional Issues,Constitutional Issues +466809,Education,Education +448562,Employment and Training,Employment and Training +520506,Health,Health +523377,Immigration,Immigration +456297,Infrastructure,Infrastructure +465973,Intellectual Property,Intellectual Property +523377,International Relations,International Relations +375149,International Trade,International Trade +453203,Justice and Law Enforcement,Justice and Law Enforcement +456297,Labour,Labour +225529,Industry,Industry +225529,Tourism,Tourism +225529,Transportation,Transportation +74394,Education,Education +97895,Health,Health +196385,Taxation and Finance,Taxation and Finance +381368,Infrastructure,Infrastructure +88158,International Relations,International Relations +138095,International Trade,International Trade +156772,Transportation,Transportation +97681,Consumer Issues,Consumer Issues +88232,Health,Health +88232,Small Business,Small Business +97688,Consumer Issues,Consumer Issues +79520,Health,Health +82094,Transportation,Transportation +129065,Government Procurement,Government Procurement +121157,Industry,Industry +427314,International Trade,International Trade +271400,Environment,Environment +271401,Industry,Industry +271398,International Trade,International Trade +271399,Transportation,Transportation +330359,Tourism,Tourism +83020,Government Procurement,Government Procurement +129078,Government Procurement,Government Procurement +163090,Infrastructure,Infrastructure +133334,International Relations,International Relations +542904,Consumer Issues,Consumer Issues +106356,Environment,Environment +92597,International Trade,International Trade +138974,Labour,Labour +473912,Taxation and Finance,Taxation and Finance +542904,Transportation,Transportation +435827,International Relations,International Relations +175502,Financial Institutions,Financial Institutions +100921,Infrastructure,Infrastructure +128938,Other,Housing +132734,Health,Health +132734,Industry,Industry +277483,Energy,Energy +250450,Environment,Environment +105937,Industry,Industry +200179,International Trade,International Trade +117834,Energy,Energy +189143,Environment,Environment +189143,Infrastructure,Infrastructure +189143,International Trade,International Trade +125099,Mining,Mining +194675,Government Procurement,Government Procurement +129089,Tourism,Tourism +80737,Infrastructure,Infrastructure +77761,Education,Education +90613,Taxation and Finance,Taxation and Finance +437713,Intellectual Property,Intellectual Property +385459,International Relations,International Relations +385456,International Relations,International Relations +383962,International Relations,International Relations +382695,International Relations,International Relations +382694,International Relations,International Relations +382577,International Relations,International Relations +382572,International Relations,International Relations +382571,International Relations,International Relations +381731,International Relations,International Relations +381722,International Relations,International Relations +379890,International Relations,International Relations +379886,International Relations,International Relations +376705,International Relations,International Relations +376686,International Relations,International Relations +376661,International Relations,International Relations +376655,International Relations,International Relations +374804,International Relations,International Relations +374790,International Relations,International Relations +374657,International Relations,International Relations +374651,International Relations,International Relations +374616,International Relations,International Relations +374610,International Relations,International Relations +374604,International Relations,International Relations +374586,International Relations,International Relations +374002,International Relations,International Relations +373046,International Relations,International Relations +372714,International Relations,International Relations +372706,International Relations,International Relations +372700,International Relations,International Relations +372693,International Relations,International Relations +372692,International Relations,International Relations +369142,International Relations,International Relations +369133,International Relations,International Relations +366574,International Relations,International Relations +359730,International Relations,International Relations +358082,International Relations,International Relations +355791,International Relations,International Relations +355790,International Relations,International Relations +353863,International Relations,International Relations +350627,International Relations,International Relations +349081,International Relations,International Relations +349079,International Relations,International Relations +349072,International Relations,International Relations +349053,International Relations,International Relations +543445,International Relations,International Relations +543423,International Relations,International Relations +538093,International Relations,International Relations +537185,International Relations,International Relations +537177,International Relations,International Relations +534752,International Relations,International Relations +531603,International Relations,International Relations +521755,International Relations,International Relations +519786,International Relations,International Relations +519784,International Relations,International Relations +519778,International Relations,International Relations +517911,International Relations,International Relations +517909,International Relations,International Relations +517870,International Relations,International Relations +515824,International Relations,International Relations +514133,International Relations,International Relations +514121,International Relations,International Relations +511206,International Relations,International Relations +508769,International Relations,International Relations +508765,International Relations,International Relations +508692,International Relations,International Relations +499197,International Relations,International Relations +499193,International Relations,International Relations +495879,International Relations,International Relations +493557,International Relations,International Relations +493555,International Relations,International Relations +493548,International Relations,International Relations +493534,International Relations,International Relations +491129,International Relations,International Relations +491127,International Relations,International Relations +491121,International Relations,International Relations +491120,International Relations,International Relations +485036,International Relations,International Relations +485032,International Relations,International Relations +484852,International Relations,International Relations +482280,International Relations,International Relations +482279,International Relations,International Relations +482152,International Relations,International Relations +479928,International Relations,International Relations +479926,International Relations,International Relations +478336,International Relations,International Relations +478332,International Relations,International Relations +478321,International Relations,International Relations +478320,International Relations,International Relations +468469,International Relations,International Relations +468461,International Relations,International Relations +468450,International Relations,International Relations +468437,International Relations,International Relations +468434,International Relations,International Relations +464722,International Relations,International Relations +462628,International Relations,International Relations +461919,International Relations,International Relations +460243,International Relations,International Relations +460234,International Relations,International Relations +459767,International Relations,International Relations +458734,International Relations,International Relations +458731,International Relations,International Relations +457595,International Relations,International Relations +457591,International Relations,International Relations +455618,International Relations,International Relations +455584,International Relations,International Relations +455582,International Relations,International Relations +452958,International Relations,International Relations +450115,International Relations,International Relations +450113,International Relations,International Relations +450111,International Relations,International Relations +447829,International Relations,International Relations +447804,International Relations,International Relations +447802,International Relations,International Relations +447798,International Relations,International Relations +447794,International Relations,International Relations +445596,International Relations,International Relations +445595,International Relations,International Relations +445583,International Relations,International Relations +442252,International Relations,International Relations +442242,International Relations,International Relations +439765,International Relations,International Relations +439688,International Relations,International Relations +439155,International Relations,International Relations +439153,International Relations,International Relations +439149,International Relations,International Relations +439131,International Relations,International Relations +439123,International Relations,International Relations +439117,International Relations,International Relations +439116,International Relations,International Relations +439115,International Relations,International Relations +435862,International Relations,International Relations +435856,International Relations,International Relations +435853,International Relations,International Relations +435851,International Relations,International Relations +435847,International Relations,International Relations +435845,International Relations,International Relations +435835,International Relations,International Relations +150462,Financial Institutions,Financial Institutions +150460,Financial Institutions,Financial Institutions +92897,Infrastructure,Infrastructure +165905,Infrastructure,Infrastructure +154877,Infrastructure,Infrastructure +123117,Infrastructure,Infrastructure +123117,Other,Housing +121165,Other,Housing +100921,Other,Housing +97316,Other,Housing +92897,Other,Housing +90125,Other,Housing +76798,Other,Housing +165905,Other,Housing +154877,Other,Housing +150462,Other,Housing +150460,Other,Housing +148206,Other,Housing +132735,Other,Housing +277479,Energy,Energy +277478,Energy,Energy +105936,Energy,Energy +105915,Energy,Energy +99154,Energy,Energy +93874,Energy,Energy +90278,Energy,Energy +90275,Energy,Energy +87881,Energy,Energy +134577,Energy,Energy +134576,Energy,Energy +131454,Energy,Energy +111498,Energy,Energy +111497,Energy,Energy +111495,Energy,Energy +105937,Energy,Energy +277477,Energy,Energy +273413,Energy,Energy +250918,Energy,Energy +250752,Energy,Energy +250474,Energy,Energy +250473,Energy,Energy +250472,Energy,Energy +250471,Energy,Energy +250470,Energy,Energy +250469,Energy,Energy +250450,Energy,Energy +250449,Energy,Energy +231389,Energy,Energy +212577,Energy,Energy +200179,Energy,Energy +199902,Energy,Energy +199901,Energy,Energy +199899,Energy,Energy +312149,Energy,Energy +309904,Energy,Energy +309903,Energy,Energy +309894,Energy,Energy +281109,Energy,Energy +277487,Energy,Energy +250449,Environment,Environment +212577,Environment,Environment +111497,Environment,Environment +111495,Environment,Environment +105937,Environment,Environment +105936,Environment,Environment +105915,Environment,Environment +93874,Environment,Environment +90278,Environment,Environment +90275,Environment,Environment +87881,Environment,Environment +134576,Environment,Environment +273413,Environment,Environment +250918,Environment,Environment +250752,Environment,Environment +250473,Environment,Environment +250472,Environment,Environment +250471,Environment,Environment +250470,Environment,Environment +250469,Environment,Environment +90278,Industry,Industry +90275,Industry,Industry +199901,International Trade,International Trade +199899,International Trade,International Trade +281109,International Trade,International Trade +277487,International Trade,International Trade +277483,International Trade,International Trade +277477,International Trade,International Trade +117834,Environment,Environment +113814,Environment,Environment +117834,Mining,Mining +189143,Mining,Mining +129087,Tourism,Tourism +80736,Infrastructure,Infrastructure +80721,Infrastructure,Infrastructure +83045,Infrastructure,Infrastructure +77759,Education,Education +77757,Education,Education +90618,Education,Education +90613,Education,Education +90607,Education,Education +83129,Education,Education +77764,Education,Education +90607,Taxation and Finance,Taxation and Finance +88201,Taxation and Finance,Taxation and Finance +83129,Taxation and Finance,Taxation and Finance +77764,Taxation and Finance,Taxation and Finance +77761,Taxation and Finance,Taxation and Finance +77759,Taxation and Finance,Taxation and Finance +77757,Taxation and Finance,Taxation and Finance +90618,Taxation and Finance,Taxation and Finance +437712,Intellectual Property,Intellectual Property +437711,Intellectual Property,Intellectual Property +127314,Intellectual Property,Intellectual Property +197390,Intellectual Property,Intellectual Property +196185,Intellectual Property,Intellectual Property +195487,Intellectual Property,Intellectual Property +190873,Intellectual Property,Intellectual Property +190871,Intellectual Property,Intellectual Property +176584,Intellectual Property,Intellectual Property +164684,Intellectual Property,Intellectual Property +160603,Intellectual Property,Intellectual Property +160585,Intellectual Property,Intellectual Property +160584,Intellectual Property,Intellectual Property +156875,Intellectual Property,Intellectual Property +156106,Intellectual Property,Intellectual Property +90583,Industry,Industry +74995,Industry,Industry +74995,Transportation,Transportation +152239,Fisheries,Fisheries +161896,Immigration,Immigration +509689,Immigration,Immigration +180384,Immigration,Immigration +150721,Industry,Industry +180383,Industry,Industry +76554,Industry,Industry +152248,Industry,Industry +155073,Infrastructure,Infrastructure +185864,International Relations,International Relations +539485,Labour,Labour +514577,Labour,Labour +150721,Small Business,Small Business +515430,Small Business,Small Business +180383,Small Business,Small Business +529276,Tourism,Tourism +525878,Tourism,Tourism +90501,Tourism,Tourism +90498,Tourism,Tourism +88183,Tourism,Tourism +88176,Tourism,Tourism +88174,Tourism,Tourism +88171,Tourism,Tourism +85409,Tourism,Tourism +85405,Tourism,Tourism +85403,Tourism,Tourism +80729,Tourism,Tourism +114174,Tourism,Tourism +114168,Tourism,Tourism +109684,Tourism,Tourism +109681,Tourism,Tourism +109679,Tourism,Tourism +109675,Tourism,Tourism +109673,Tourism,Tourism +107356,Tourism,Tourism +107355,Tourism,Tourism +107354,Tourism,Tourism +100822,Tourism,Tourism +100819,Tourism,Tourism +97487,Tourism,Tourism +97481,Tourism,Tourism +93819,Tourism,Tourism +90506,Tourism,Tourism +160209,Tourism,Tourism +160208,Tourism,Tourism +160188,Tourism,Tourism +157103,Tourism,Tourism +157096,Tourism,Tourism +157091,Tourism,Tourism +157088,Tourism,Tourism +155075,Tourism,Tourism +155073,Tourism,Tourism +153628,Tourism,Tourism +153627,Tourism,Tourism +153626,Tourism,Tourism +153625,Tourism,Tourism +153624,Tourism,Tourism +152250,Tourism,Tourism +152248,Tourism,Tourism +152246,Tourism,Tourism +152239,Tourism,Tourism +152236,Tourism,Tourism +150724,Tourism,Tourism +150723,Tourism,Tourism +150722,Tourism,Tourism +150721,Tourism,Tourism +150720,Tourism,Tourism +150719,Tourism,Tourism +150718,Tourism,Tourism +148517,Tourism,Tourism +148516,Tourism,Tourism +146209,Tourism,Tourism +146208,Tourism,Tourism +136174,Tourism,Tourism +132931,Tourism,Tourism +132922,Tourism,Tourism +129076,Tourism,Tourism +125594,Tourism,Tourism +121290,Tourism,Tourism +117660,Tourism,Tourism +117657,Tourism,Tourism +117655,Tourism,Tourism +117650,Tourism,Tourism +223150,Tourism,Tourism +223149,Tourism,Tourism +223147,Tourism,Tourism +223146,Tourism,Tourism +223145,Tourism,Tourism +223143,Tourism,Tourism +217348,Tourism,Tourism +217347,Tourism,Tourism +217328,Tourism,Tourism +217327,Tourism,Tourism +211795,Tourism,Tourism +211793,Tourism,Tourism +211790,Tourism,Tourism +207155,Tourism,Tourism +207154,Tourism,Tourism +207152,Tourism,Tourism +203094,Tourism,Tourism +199998,Tourism,Tourism +199992,Tourism,Tourism +199989,Tourism,Tourism +199983,Tourism,Tourism +199978,Tourism,Tourism +199975,Tourism,Tourism +199971,Tourism,Tourism +199965,Tourism,Tourism +199957,Tourism,Tourism +199956,Tourism,Tourism +193790,Tourism,Tourism +193787,Tourism,Tourism +193783,Tourism,Tourism +193774,Tourism,Tourism +193772,Tourism,Tourism +193770,Tourism,Tourism +193769,Tourism,Tourism +189306,Tourism,Tourism +189284,Tourism,Tourism +189251,Tourism,Tourism +189246,Tourism,Tourism +189244,Tourism,Tourism +189224,Tourism,Tourism +189204,Tourism,Tourism +189185,Tourism,Tourism +189169,Tourism,Tourism +189168,Tourism,Tourism +189165,Tourism,Tourism +189163,Tourism,Tourism +185869,Tourism,Tourism +185868,Tourism,Tourism +185864,Tourism,Tourism +185860,Tourism,Tourism +185856,Tourism,Tourism +185855,Tourism,Tourism +185854,Tourism,Tourism +185853,Tourism,Tourism +185553,Tourism,Tourism +180384,Tourism,Tourism +180383,Tourism,Tourism +180380,Tourism,Tourism +175297,Tourism,Tourism +175296,Tourism,Tourism +170504,Tourism,Tourism +168441,Tourism,Tourism +168440,Tourism,Tourism +168433,Tourism,Tourism +168430,Tourism,Tourism +168426,Tourism,Tourism +168422,Tourism,Tourism +168411,Tourism,Tourism +165812,Tourism,Tourism +165810,Tourism,Tourism +165809,Tourism,Tourism +165808,Tourism,Tourism +165807,Tourism,Tourism +165796,Tourism,Tourism +165795,Tourism,Tourism +164024,Tourism,Tourism +164023,Tourism,Tourism +164017,Tourism,Tourism +161901,Tourism,Tourism +161899,Tourism,Tourism +161896,Tourism,Tourism +161893,Tourism,Tourism +161891,Tourism,Tourism +161890,Tourism,Tourism +160215,Tourism,Tourism +160211,Tourism,Tourism +160210,Tourism,Tourism +335060,Tourism,Tourism +335057,Tourism,Tourism +335055,Tourism,Tourism +335053,Tourism,Tourism +335049,Tourism,Tourism +335046,Tourism,Tourism +333071,Tourism,Tourism +333070,Tourism,Tourism +333069,Tourism,Tourism +331068,Tourism,Tourism +331067,Tourism,Tourism +331066,Tourism,Tourism +331065,Tourism,Tourism +331064,Tourism,Tourism +329496,Tourism,Tourism +329495,Tourism,Tourism +329494,Tourism,Tourism +329493,Tourism,Tourism +329492,Tourism,Tourism +329491,Tourism,Tourism +327160,Tourism,Tourism +327159,Tourism,Tourism +327158,Tourism,Tourism +327157,Tourism,Tourism +327156,Tourism,Tourism +327154,Tourism,Tourism +327153,Tourism,Tourism +327151,Tourism,Tourism +327150,Tourism,Tourism +327149,Tourism,Tourism +327148,Tourism,Tourism +327147,Tourism,Tourism +327146,Tourism,Tourism +327145,Tourism,Tourism +327144,Tourism,Tourism +327143,Tourism,Tourism +327142,Tourism,Tourism +327141,Tourism,Tourism +327140,Tourism,Tourism +327138,Tourism,Tourism +327136,Tourism,Tourism +327112,Tourism,Tourism +327111,Tourism,Tourism +327101,Tourism,Tourism +327089,Tourism,Tourism +327076,Tourism,Tourism +324517,Tourism,Tourism +324516,Tourism,Tourism +324515,Tourism,Tourism +324513,Tourism,Tourism +324511,Tourism,Tourism +321379,Tourism,Tourism +321378,Tourism,Tourism +321377,Tourism,Tourism +321376,Tourism,Tourism +321374,Tourism,Tourism +321373,Tourism,Tourism +318952,Tourism,Tourism +318951,Tourism,Tourism +318949,Tourism,Tourism +318948,Tourism,Tourism +318946,Tourism,Tourism +318941,Tourism,Tourism +318936,Tourism,Tourism +318920,Tourism,Tourism +315297,Tourism,Tourism +315296,Tourism,Tourism +315295,Tourism,Tourism +315294,Tourism,Tourism +315293,Tourism,Tourism +315292,Tourism,Tourism +315291,Tourism,Tourism +315290,Tourism,Tourism +315289,Tourism,Tourism +312494,Tourism,Tourism +312492,Tourism,Tourism +312491,Tourism,Tourism +312129,Tourism,Tourism +309787,Tourism,Tourism +309786,Tourism,Tourism +309784,Tourism,Tourism +309782,Tourism,Tourism +309779,Tourism,Tourism +309778,Tourism,Tourism +309775,Tourism,Tourism +309769,Tourism,Tourism +309768,Tourism,Tourism +309767,Tourism,Tourism +309766,Tourism,Tourism +309765,Tourism,Tourism +309764,Tourism,Tourism +309763,Tourism,Tourism +300989,Tourism,Tourism +300987,Tourism,Tourism +300986,Tourism,Tourism +300982,Tourism,Tourism +300981,Tourism,Tourism +300972,Tourism,Tourism +296130,Tourism,Tourism +296109,Tourism,Tourism +296090,Tourism,Tourism +289072,Tourism,Tourism +289071,Tourism,Tourism +289070,Tourism,Tourism +289069,Tourism,Tourism +284955,Tourism,Tourism +284952,Tourism,Tourism +284950,Tourism,Tourism +281951,Tourism,Tourism +281950,Tourism,Tourism +281949,Tourism,Tourism +281930,Tourism,Tourism +277601,Tourism,Tourism +277600,Tourism,Tourism +277599,Tourism,Tourism +273301,Tourism,Tourism +273299,Tourism,Tourism +273298,Tourism,Tourism +273296,Tourism,Tourism +273295,Tourism,Tourism +273292,Tourism,Tourism +273290,Tourism,Tourism +273266,Tourism,Tourism +268889,Tourism,Tourism +268873,Tourism,Tourism +268871,Tourism,Tourism +268870,Tourism,Tourism +268869,Tourism,Tourism +264316,Tourism,Tourism +264314,Tourism,Tourism +264310,Tourism,Tourism +259377,Tourism,Tourism +259376,Tourism,Tourism +259375,Tourism,Tourism +259374,Tourism,Tourism +259367,Tourism,Tourism +259365,Tourism,Tourism +259362,Tourism,Tourism +259361,Tourism,Tourism +259357,Tourism,Tourism +259353,Tourism,Tourism +259351,Tourism,Tourism +253933,Tourism,Tourism +251211,Tourism,Tourism +251210,Tourism,Tourism +251209,Tourism,Tourism +251196,Tourism,Tourism +251195,Tourism,Tourism +251194,Tourism,Tourism +251193,Tourism,Tourism +245068,Tourism,Tourism +245066,Tourism,Tourism +245062,Tourism,Tourism +245060,Tourism,Tourism +245059,Tourism,Tourism +245057,Tourism,Tourism +245055,Tourism,Tourism +241175,Tourism,Tourism +241174,Tourism,Tourism +241165,Tourism,Tourism +241157,Tourism,Tourism +241152,Tourism,Tourism +241147,Tourism,Tourism +241136,Tourism,Tourism +241129,Tourism,Tourism +241124,Tourism,Tourism +241121,Tourism,Tourism +241111,Tourism,Tourism +237049,Tourism,Tourism +237047,Tourism,Tourism +237044,Tourism,Tourism +237041,Tourism,Tourism +233610,Tourism,Tourism +233554,Tourism,Tourism +233553,Tourism,Tourism +233552,Tourism,Tourism +233550,Tourism,Tourism +230951,Tourism,Tourism +230950,Tourism,Tourism +230949,Tourism,Tourism +230730,Tourism,Tourism +230553,Tourism,Tourism +230552,Tourism,Tourism +230551,Tourism,Tourism +230550,Tourism,Tourism +226924,Tourism,Tourism +226923,Tourism,Tourism +226922,Tourism,Tourism +226921,Tourism,Tourism +226919,Tourism,Tourism +226918,Tourism,Tourism +432190,Tourism,Tourism +432189,Tourism,Tourism +432188,Tourism,Tourism +430045,Tourism,Tourism +430044,Tourism,Tourism +430043,Tourism,Tourism +427955,Tourism,Tourism +427953,Tourism,Tourism +427952,Tourism,Tourism +427951,Tourism,Tourism +427950,Tourism,Tourism +427948,Tourism,Tourism +427944,Tourism,Tourism +427943,Tourism,Tourism +427942,Tourism,Tourism +427938,Tourism,Tourism +427937,Tourism,Tourism +427936,Tourism,Tourism +427935,Tourism,Tourism +427934,Tourism,Tourism +427932,Tourism,Tourism +427930,Tourism,Tourism +427544,Tourism,Tourism +427543,Tourism,Tourism +425617,Tourism,Tourism +425616,Tourism,Tourism +425602,Tourism,Tourism +425596,Tourism,Tourism +425583,Tourism,Tourism +425581,Tourism,Tourism +425577,Tourism,Tourism +425574,Tourism,Tourism +422999,Tourism,Tourism +422998,Tourism,Tourism +422997,Tourism,Tourism +422996,Tourism,Tourism +422995,Tourism,Tourism +422994,Tourism,Tourism +422993,Tourism,Tourism +422992,Tourism,Tourism +422990,Tourism,Tourism +422989,Tourism,Tourism +422988,Tourism,Tourism +421818,Tourism,Tourism +421817,Tourism,Tourism +421815,Tourism,Tourism +421814,Tourism,Tourism +421812,Tourism,Tourism +419071,Tourism,Tourism +419066,Tourism,Tourism +419064,Tourism,Tourism +417641,Tourism,Tourism +417637,Tourism,Tourism +417635,Tourism,Tourism +415696,Tourism,Tourism +414803,Tourism,Tourism +414802,Tourism,Tourism +414801,Tourism,Tourism +411164,Tourism,Tourism +411156,Tourism,Tourism +411152,Tourism,Tourism +411150,Tourism,Tourism +411148,Tourism,Tourism +411147,Tourism,Tourism +410243,Tourism,Tourism +410242,Tourism,Tourism +410227,Tourism,Tourism +410226,Tourism,Tourism +410225,Tourism,Tourism +410224,Tourism,Tourism +407684,Tourism,Tourism +404538,Tourism,Tourism +404537,Tourism,Tourism +404536,Tourism,Tourism +404534,Tourism,Tourism +402761,Tourism,Tourism +402760,Tourism,Tourism +402758,Tourism,Tourism +402757,Tourism,Tourism +402756,Tourism,Tourism +402755,Tourism,Tourism +402754,Tourism,Tourism +402751,Tourism,Tourism +400336,Tourism,Tourism +400309,Tourism,Tourism +400285,Tourism,Tourism +397671,Tourism,Tourism +397670,Tourism,Tourism +397669,Tourism,Tourism +397357,Tourism,Tourism +397036,Tourism,Tourism +397035,Tourism,Tourism +393881,Tourism,Tourism +393879,Tourism,Tourism +393877,Tourism,Tourism +392377,Tourism,Tourism +392376,Tourism,Tourism +390051,Tourism,Tourism +390044,Tourism,Tourism +388949,Tourism,Tourism +386908,Tourism,Tourism +386891,Tourism,Tourism +386890,Tourism,Tourism +386889,Tourism,Tourism +386841,Tourism,Tourism +386840,Tourism,Tourism +386643,Tourism,Tourism +384481,Tourism,Tourism +384479,Tourism,Tourism +383542,Tourism,Tourism +382455,Tourism,Tourism +380783,Tourism,Tourism +380782,Tourism,Tourism +380780,Tourism,Tourism +380779,Tourism,Tourism +380747,Tourism,Tourism +379304,Tourism,Tourism +378869,Tourism,Tourism +378868,Tourism,Tourism +378867,Tourism,Tourism +378866,Tourism,Tourism +378864,Tourism,Tourism +378862,Tourism,Tourism +375884,Tourism,Tourism +375882,Tourism,Tourism +375881,Tourism,Tourism +375874,Tourism,Tourism +374358,Tourism,Tourism +374357,Tourism,Tourism +374356,Tourism,Tourism +374355,Tourism,Tourism +374354,Tourism,Tourism +374353,Tourism,Tourism +371803,Tourism,Tourism +371800,Tourism,Tourism +371797,Tourism,Tourism +371795,Tourism,Tourism +371793,Tourism,Tourism +371785,Tourism,Tourism +371783,Tourism,Tourism +371782,Tourism,Tourism +371781,Tourism,Tourism +371776,Tourism,Tourism +371775,Tourism,Tourism +371762,Tourism,Tourism +371546,Tourism,Tourism +371509,Tourism,Tourism +371507,Tourism,Tourism +368467,Tourism,Tourism +368464,Tourism,Tourism +368459,Tourism,Tourism +366092,Tourism,Tourism +366090,Tourism,Tourism +364891,Tourism,Tourism +364877,Tourism,Tourism +364876,Tourism,Tourism +363110,Tourism,Tourism +362002,Tourism,Tourism +360863,Tourism,Tourism +360862,Tourism,Tourism +359184,Tourism,Tourism +359183,Tourism,Tourism +357479,Tourism,Tourism +357478,Tourism,Tourism +357477,Tourism,Tourism +355732,Tourism,Tourism +355731,Tourism,Tourism +355730,Tourism,Tourism +355729,Tourism,Tourism +355728,Tourism,Tourism +355727,Tourism,Tourism +355723,Tourism,Tourism +355722,Tourism,Tourism +355721,Tourism,Tourism +353734,Tourism,Tourism +353727,Tourism,Tourism +349078,Tourism,Tourism +349077,Tourism,Tourism +341462,Tourism,Tourism +341460,Tourism,Tourism +525127,Tourism,Tourism +525125,Tourism,Tourism +525124,Tourism,Tourism +525121,Tourism,Tourism +525118,Tourism,Tourism +525114,Tourism,Tourism +525113,Tourism,Tourism +525111,Tourism,Tourism +525110,Tourism,Tourism +525108,Tourism,Tourism +525107,Tourism,Tourism +525106,Tourism,Tourism +525104,Tourism,Tourism +525103,Tourism,Tourism +525102,Tourism,Tourism +525101,Tourism,Tourism +525100,Tourism,Tourism +525099,Tourism,Tourism +525098,Tourism,Tourism +525097,Tourism,Tourism +525095,Tourism,Tourism +525094,Tourism,Tourism +525092,Tourism,Tourism +525091,Tourism,Tourism +525088,Tourism,Tourism +525087,Tourism,Tourism +525085,Tourism,Tourism +525084,Tourism,Tourism +525083,Tourism,Tourism +525081,Tourism,Tourism +525079,Tourism,Tourism +525077,Tourism,Tourism +525075,Tourism,Tourism +525074,Tourism,Tourism +525073,Tourism,Tourism +525072,Tourism,Tourism +525070,Tourism,Tourism +525069,Tourism,Tourism +525067,Tourism,Tourism +525066,Tourism,Tourism +525065,Tourism,Tourism +525064,Tourism,Tourism +525063,Tourism,Tourism +525061,Tourism,Tourism +525060,Tourism,Tourism +525059,Tourism,Tourism +525058,Tourism,Tourism +525057,Tourism,Tourism +525056,Tourism,Tourism +525055,Tourism,Tourism +525054,Tourism,Tourism +525051,Tourism,Tourism +522612,Tourism,Tourism +522611,Tourism,Tourism +522610,Tourism,Tourism +522609,Tourism,Tourism +522608,Tourism,Tourism +522607,Tourism,Tourism +522606,Tourism,Tourism +522605,Tourism,Tourism +522604,Tourism,Tourism +522603,Tourism,Tourism +518972,Tourism,Tourism +518971,Tourism,Tourism +518970,Tourism,Tourism +518969,Tourism,Tourism +518968,Tourism,Tourism +518967,Tourism,Tourism +518965,Tourism,Tourism +518962,Tourism,Tourism +518961,Tourism,Tourism +518960,Tourism,Tourism +518959,Tourism,Tourism +517531,Tourism,Tourism +517528,Tourism,Tourism +517526,Tourism,Tourism +517521,Tourism,Tourism +517519,Tourism,Tourism +517518,Tourism,Tourism +517517,Tourism,Tourism +517515,Tourism,Tourism +517514,Tourism,Tourism +517512,Tourism,Tourism +515489,Tourism,Tourism +515433,Tourism,Tourism +515432,Tourism,Tourism +515430,Tourism,Tourism +515429,Tourism,Tourism +515426,Tourism,Tourism +515425,Tourism,Tourism +514577,Tourism,Tourism +513870,Tourism,Tourism +513765,Tourism,Tourism +513764,Tourism,Tourism +513763,Tourism,Tourism +513762,Tourism,Tourism +513761,Tourism,Tourism +513760,Tourism,Tourism +513759,Tourism,Tourism +513758,Tourism,Tourism +513757,Tourism,Tourism +513756,Tourism,Tourism +513755,Tourism,Tourism +512907,Tourism,Tourism +512905,Tourism,Tourism +512903,Tourism,Tourism +512901,Tourism,Tourism +512899,Tourism,Tourism +512898,Tourism,Tourism +509693,Tourism,Tourism +509692,Tourism,Tourism +509691,Tourism,Tourism +509689,Tourism,Tourism +509688,Tourism,Tourism +509687,Tourism,Tourism +509686,Tourism,Tourism +509685,Tourism,Tourism +509684,Tourism,Tourism +509683,Tourism,Tourism +509682,Tourism,Tourism +509681,Tourism,Tourism +507501,Tourism,Tourism +507494,Tourism,Tourism +507493,Tourism,Tourism +507492,Tourism,Tourism +507490,Tourism,Tourism +507489,Tourism,Tourism +507488,Tourism,Tourism +507487,Tourism,Tourism +507486,Tourism,Tourism +507485,Tourism,Tourism +507484,Tourism,Tourism +507483,Tourism,Tourism +507482,Tourism,Tourism +507481,Tourism,Tourism +507480,Tourism,Tourism +503780,Tourism,Tourism +503779,Tourism,Tourism +503778,Tourism,Tourism +503777,Tourism,Tourism +503776,Tourism,Tourism +503774,Tourism,Tourism +503773,Tourism,Tourism +503771,Tourism,Tourism +503768,Tourism,Tourism +503767,Tourism,Tourism +503766,Tourism,Tourism +503765,Tourism,Tourism +503764,Tourism,Tourism +503763,Tourism,Tourism +503761,Tourism,Tourism +503758,Tourism,Tourism +501051,Tourism,Tourism +501050,Tourism,Tourism +501048,Tourism,Tourism +501036,Tourism,Tourism +501035,Tourism,Tourism +501034,Tourism,Tourism +501033,Tourism,Tourism +501032,Tourism,Tourism +500751,Tourism,Tourism +500750,Tourism,Tourism +500749,Tourism,Tourism +500748,Tourism,Tourism +500743,Tourism,Tourism +500742,Tourism,Tourism +500741,Tourism,Tourism +500740,Tourism,Tourism +500739,Tourism,Tourism +500736,Tourism,Tourism +500735,Tourism,Tourism +500733,Tourism,Tourism +499802,Tourism,Tourism +499801,Tourism,Tourism +499800,Tourism,Tourism +499799,Tourism,Tourism +499797,Tourism,Tourism +499796,Tourism,Tourism +499795,Tourism,Tourism +499794,Tourism,Tourism +499793,Tourism,Tourism +499791,Tourism,Tourism +499789,Tourism,Tourism +499788,Tourism,Tourism +498174,Tourism,Tourism +498170,Tourism,Tourism +498169,Tourism,Tourism +498168,Tourism,Tourism +498167,Tourism,Tourism +498166,Tourism,Tourism +498165,Tourism,Tourism +498164,Tourism,Tourism +498163,Tourism,Tourism +498162,Tourism,Tourism +498161,Tourism,Tourism +498160,Tourism,Tourism +498159,Tourism,Tourism +498158,Tourism,Tourism +498157,Tourism,Tourism +498156,Tourism,Tourism +498155,Tourism,Tourism +498154,Tourism,Tourism +498153,Tourism,Tourism +495362,Tourism,Tourism +495357,Tourism,Tourism +495196,Tourism,Tourism +495194,Tourism,Tourism +495192,Tourism,Tourism +495189,Tourism,Tourism +492497,Tourism,Tourism +492496,Tourism,Tourism +492495,Tourism,Tourism +492454,Tourism,Tourism +492453,Tourism,Tourism +492452,Tourism,Tourism +492450,Tourism,Tourism +490638,Tourism,Tourism +490624,Tourism,Tourism +490615,Tourism,Tourism +490609,Tourism,Tourism +490605,Tourism,Tourism +486608,Tourism,Tourism +486607,Tourism,Tourism +486606,Tourism,Tourism +486484,Tourism,Tourism +486483,Tourism,Tourism +486482,Tourism,Tourism +483445,Tourism,Tourism +483444,Tourism,Tourism +483440,Tourism,Tourism +483438,Tourism,Tourism +483433,Tourism,Tourism +483430,Tourism,Tourism +483378,Tourism,Tourism +483377,Tourism,Tourism +483375,Tourism,Tourism +483373,Tourism,Tourism +483372,Tourism,Tourism +483369,Tourism,Tourism +481409,Tourism,Tourism +481408,Tourism,Tourism +481406,Tourism,Tourism +481404,Tourism,Tourism +481403,Tourism,Tourism +481401,Tourism,Tourism +480714,Tourism,Tourism +480713,Tourism,Tourism +480712,Tourism,Tourism +480711,Tourism,Tourism +480710,Tourism,Tourism +480709,Tourism,Tourism +480708,Tourism,Tourism +480707,Tourism,Tourism +480706,Tourism,Tourism +480705,Tourism,Tourism +480704,Tourism,Tourism +480702,Tourism,Tourism +480701,Tourism,Tourism +480700,Tourism,Tourism +480699,Tourism,Tourism +480698,Tourism,Tourism +480697,Tourism,Tourism +480696,Tourism,Tourism +480695,Tourism,Tourism +480694,Tourism,Tourism +480693,Tourism,Tourism +480692,Tourism,Tourism +480691,Tourism,Tourism +480690,Tourism,Tourism +480689,Tourism,Tourism +480688,Tourism,Tourism +480686,Tourism,Tourism +480685,Tourism,Tourism +480683,Tourism,Tourism +480679,Tourism,Tourism +480676,Tourism,Tourism +480674,Tourism,Tourism +480672,Tourism,Tourism +480650,Tourism,Tourism +480647,Tourism,Tourism +480646,Tourism,Tourism +480645,Tourism,Tourism +480644,Tourism,Tourism +480643,Tourism,Tourism +480642,Tourism,Tourism +480641,Tourism,Tourism +480640,Tourism,Tourism +480639,Tourism,Tourism +480637,Tourism,Tourism +480636,Tourism,Tourism +480635,Tourism,Tourism +480634,Tourism,Tourism +480633,Tourism,Tourism +480631,Tourism,Tourism +480630,Tourism,Tourism +480628,Tourism,Tourism +480627,Tourism,Tourism +480626,Tourism,Tourism +480625,Tourism,Tourism +466572,Tourism,Tourism +466558,Tourism,Tourism +466538,Tourism,Tourism +464289,Tourism,Tourism +464276,Tourism,Tourism +461179,Tourism,Tourism +458394,Tourism,Tourism +458393,Tourism,Tourism +458392,Tourism,Tourism +458391,Tourism,Tourism +456755,Tourism,Tourism +456601,Tourism,Tourism +454283,Tourism,Tourism +454282,Tourism,Tourism +454280,Tourism,Tourism +454279,Tourism,Tourism +454278,Tourism,Tourism +454277,Tourism,Tourism +454276,Tourism,Tourism +454275,Tourism,Tourism +454273,Tourism,Tourism +451663,Tourism,Tourism +451662,Tourism,Tourism +451658,Tourism,Tourism +451653,Tourism,Tourism +451649,Tourism,Tourism +451648,Tourism,Tourism +451647,Tourism,Tourism +451508,Tourism,Tourism +449252,Tourism,Tourism +449251,Tourism,Tourism +449250,Tourism,Tourism +449249,Tourism,Tourism +449248,Tourism,Tourism +447019,Tourism,Tourism +447018,Tourism,Tourism +447017,Tourism,Tourism +447016,Tourism,Tourism +447015,Tourism,Tourism +446950,Tourism,Tourism +444705,Tourism,Tourism +444704,Tourism,Tourism +443788,Tourism,Tourism +443787,Tourism,Tourism +443785,Tourism,Tourism +441709,Tourism,Tourism +441705,Tourism,Tourism +441703,Tourism,Tourism +441701,Tourism,Tourism +441700,Tourism,Tourism +441698,Tourism,Tourism +441695,Tourism,Tourism +441694,Tourism,Tourism +438079,Tourism,Tourism +438075,Tourism,Tourism +438068,Tourism,Tourism +438063,Tourism,Tourism +434253,Tourism,Tourism +433075,Tourism,Tourism +433065,Tourism,Tourism +433064,Tourism,Tourism +433063,Tourism,Tourism +433062,Tourism,Tourism +543816,Tourism,Tourism +543815,Tourism,Tourism +543814,Tourism,Tourism +543813,Tourism,Tourism +543812,Tourism,Tourism +543811,Tourism,Tourism +543809,Tourism,Tourism +543808,Tourism,Tourism +540882,Tourism,Tourism +540881,Tourism,Tourism +540880,Tourism,Tourism +540879,Tourism,Tourism +540878,Tourism,Tourism +539487,Tourism,Tourism +539486,Tourism,Tourism +539485,Tourism,Tourism +539484,Tourism,Tourism +539483,Tourism,Tourism +539482,Tourism,Tourism +537626,Tourism,Tourism +537625,Tourism,Tourism +537624,Tourism,Tourism +537623,Tourism,Tourism +537622,Tourism,Tourism +537621,Tourism,Tourism +537620,Tourism,Tourism +537619,Tourism,Tourism +537618,Tourism,Tourism +534433,Tourism,Tourism +534432,Tourism,Tourism +534430,Tourism,Tourism +534429,Tourism,Tourism +534427,Tourism,Tourism +534426,Tourism,Tourism +534425,Tourism,Tourism +534424,Tourism,Tourism +534422,Tourism,Tourism +534421,Tourism,Tourism +534419,Tourism,Tourism +534418,Tourism,Tourism +534415,Tourism,Tourism +534409,Tourism,Tourism +534408,Tourism,Tourism +534406,Tourism,Tourism +534404,Tourism,Tourism +531114,Tourism,Tourism +531028,Tourism,Tourism +531027,Tourism,Tourism +531026,Tourism,Tourism +531025,Tourism,Tourism +529319,Tourism,Tourism +529318,Tourism,Tourism +529317,Tourism,Tourism +529315,Tourism,Tourism +529314,Tourism,Tourism +529309,Tourism,Tourism +529302,Tourism,Tourism +529300,Tourism,Tourism +529299,Tourism,Tourism +529295,Tourism,Tourism +529290,Tourism,Tourism +529284,Tourism,Tourism +529281,Tourism,Tourism +539486,Transportation,Transportation +529290,Transportation,Transportation +165808,Transportation,Transportation +161901,Transportation,Transportation +161893,Transportation,Transportation +161891,Transportation,Transportation +161890,Transportation,Transportation +157091,Transportation,Transportation +155073,Transportation,Transportation +152250,Transportation,Transportation +152239,Transportation,Transportation +152236,Transportation,Transportation +150721,Transportation,Transportation +150718,Transportation,Transportation +132926,Transportation,Transportation +125574,Transportation,Transportation +185854,Transportation,Transportation +180384,Transportation,Transportation +180383,Transportation,Transportation +101074,Environment,Environment +101074,Fisheries,Fisheries +99114,Fisheries,Fisheries +101074,Mining,Mining +99114,Mining,Mining +544418,Energy,Energy +538765,Energy,Energy +152458,Energy,Energy +152457,Energy,Energy +121258,Energy,Energy +192977,Energy,Energy +192976,Energy,Energy +163748,Energy,Energy +161987,Energy,Energy +320772,Energy,Energy +312856,Energy,Energy +295771,Energy,Energy +295769,Energy,Energy +279731,Energy,Energy +233858,Energy,Energy +217616,Energy,Energy +424965,Energy,Energy +423740,Energy,Energy +423407,Energy,Energy +421005,Energy,Energy +421004,Energy,Energy +418981,Energy,Energy +418941,Energy,Energy +418840,Energy,Energy +418839,Energy,Energy +418837,Energy,Energy +414794,Energy,Energy +414793,Energy,Energy +411504,Energy,Energy +411157,Energy,Energy +409241,Energy,Energy +409094,Energy,Energy +405866,Energy,Energy +405864,Energy,Energy +402176,Energy,Energy +401693,Energy,Energy +399699,Energy,Energy +384803,Energy,Energy +382089,Energy,Energy +380603,Energy,Energy +378598,Energy,Energy +378300,Energy,Energy +374091,Energy,Energy +374077,Energy,Energy +374075,Energy,Energy +370805,Energy,Energy +368022,Energy,Energy +364443,Energy,Energy +364442,Energy,Energy +363085,Energy,Energy +363084,Energy,Energy +355278,Energy,Energy +348807,Energy,Energy +343626,Energy,Energy +335036,Energy,Energy +335035,Energy,Energy +537768,Energy,Energy +537766,Energy,Energy +537764,Energy,Energy +537761,Energy,Energy +535435,Energy,Energy +535430,Energy,Energy +535424,Energy,Energy +531729,Energy,Energy +531728,Energy,Energy +531724,Energy,Energy +531723,Energy,Energy +531722,Energy,Energy +531715,Energy,Energy +531711,Energy,Energy +528881,Energy,Energy +528874,Energy,Energy +526731,Energy,Energy +526725,Energy,Energy +522881,Energy,Energy +522873,Energy,Energy +522861,Energy,Energy +519865,Energy,Energy +517927,Energy,Energy +517923,Energy,Energy +517904,Energy,Energy +513027,Energy,Energy +509499,Energy,Energy +500684,Energy,Energy +495430,Energy,Energy +493184,Energy,Energy +493172,Energy,Energy +491140,Energy,Energy +487995,Energy,Energy +487991,Energy,Energy +487987,Energy,Energy +479218,Energy,Energy +475507,Energy,Energy +473059,Energy,Energy +473058,Energy,Energy +473053,Energy,Energy +466432,Energy,Energy +466431,Energy,Energy +466427,Energy,Energy +466424,Energy,Energy +464521,Energy,Energy +462614,Energy,Energy +462509,Energy,Energy +461831,Energy,Energy +461728,Energy,Energy +461725,Energy,Energy +461723,Energy,Energy +461704,Energy,Energy +460687,Energy,Energy +460156,Energy,Energy +460147,Energy,Energy +460145,Energy,Energy +460144,Energy,Energy +460140,Energy,Energy +455617,Energy,Energy +455613,Energy,Energy +455605,Energy,Energy +451548,Energy,Energy +448108,Energy,Energy +447538,Energy,Energy +443605,Energy,Energy +443603,Energy,Energy +442524,Energy,Energy +442511,Energy,Energy +442459,Energy,Energy +442398,Energy,Energy +438741,Energy,Energy +438731,Energy,Energy +438715,Energy,Energy +438691,Energy,Energy +434478,Energy,Energy +434363,Energy,Energy +433429,Energy,Energy +431898,Energy,Energy +431897,Energy,Energy +430498,Energy,Energy +430496,Energy,Energy +430269,Energy,Energy +430268,Energy,Energy +430267,Energy,Energy +430265,Energy,Energy +430263,Energy,Energy +427604,Energy,Energy +427603,Energy,Energy +491348,Environment,Environment +491140,Environment,Environment +105359,Environment,Environment +93288,Environment,Environment +93286,Environment,Environment +87714,Environment,Environment +83074,Environment,Environment +81234,Environment,Environment +147942,Environment,Environment +145789,Environment,Environment +142274,Environment,Environment +135440,Environment,Environment +124795,Environment,Environment +121258,Environment,Environment +117036,Environment,Environment +117034,Environment,Environment +109101,Environment,Environment +109098,Environment,Environment +200051,Environment,Environment +200049,Environment,Environment +200048,Environment,Environment +200046,Environment,Environment +192975,Environment,Environment +192974,Environment,Environment +192973,Environment,Environment +192972,Environment,Environment +189694,Environment,Environment +189693,Environment,Environment +189692,Environment,Environment +189689,Environment,Environment +189687,Environment,Environment +173129,Environment,Environment +170530,Environment,Environment +163749,Environment,Environment +161987,Environment,Environment +161985,Environment,Environment +161984,Environment,Environment +159174,Environment,Environment +159172,Environment,Environment +159170,Environment,Environment +159169,Environment,Environment +156906,Environment,Environment +156905,Environment,Environment +156901,Environment,Environment +154656,Environment,Environment +154654,Environment,Environment +149695,Environment,Environment +147944,Environment,Environment +370805,Environment,Environment +368022,Environment,Environment +364402,Environment,Environment +363083,Environment,Environment +355651,Environment,Environment +350458,Environment,Environment +348805,Environment,Environment +348802,Environment,Environment +343630,Environment,Environment +343626,Environment,Environment +343625,Environment,Environment +343624,Environment,Environment +343619,Environment,Environment +340619,Environment,Environment +340615,Environment,Environment +340614,Environment,Environment +335036,Environment,Environment +331240,Environment,Environment +331239,Environment,Environment +329880,Environment,Environment +324897,Environment,Environment +318713,Environment,Environment +312856,Environment,Environment +309814,Environment,Environment +295771,Environment,Environment +295770,Environment,Environment +279732,Environment,Environment +279731,Environment,Environment +269127,Environment,Environment +264495,Environment,Environment +264489,Environment,Environment +249949,Environment,Environment +244049,Environment,Environment +240433,Environment,Environment +240431,Environment,Environment +233864,Environment,Environment +230272,Environment,Environment +230271,Environment,Environment +226932,Environment,Environment +222698,Environment,Environment +217616,Environment,Environment +212502,Environment,Environment +212500,Environment,Environment +212497,Environment,Environment +207396,Environment,Environment +200255,Environment,Environment +200253,Environment,Environment +200250,Environment,Environment +200248,Environment,Environment +200244,Environment,Environment +200241,Environment,Environment +200237,Environment,Environment +200233,Environment,Environment +200226,Environment,Environment +200062,Environment,Environment +200061,Environment,Environment +200058,Environment,Environment +200057,Environment,Environment +200054,Environment,Environment +200053,Environment,Environment +200052,Environment,Environment +469852,Environment,Environment +460688,Environment,Environment +460687,Environment,Environment +458656,Environment,Environment +455619,Environment,Environment +447538,Environment,Environment +447534,Environment,Environment +447533,Environment,Environment +445531,Environment,Environment +445527,Environment,Environment +443612,Environment,Environment +443609,Environment,Environment +443605,Environment,Environment +443603,Environment,Environment +442559,Environment,Environment +442508,Environment,Environment +442507,Environment,Environment +442505,Environment,Environment +438746,Environment,Environment +438741,Environment,Environment +438737,Environment,Environment +438731,Environment,Environment +438715,Environment,Environment +438691,Environment,Environment +434483,Environment,Environment +434482,Environment,Environment +434478,Environment,Environment +434473,Environment,Environment +434471,Environment,Environment +434365,Environment,Environment +433428,Environment,Environment +433058,Environment,Environment +432478,Environment,Environment +432473,Environment,Environment +432299,Environment,Environment +427604,Environment,Environment +425396,Environment,Environment +424919,Environment,Environment +423416,Environment,Environment +423407,Environment,Environment +420678,Environment,Environment +418941,Environment,Environment +415428,Environment,Environment +415427,Environment,Environment +414794,Environment,Environment +414793,Environment,Environment +414783,Environment,Environment +411504,Environment,Environment +409241,Environment,Environment +409094,Environment,Environment +405864,Environment,Environment +405862,Environment,Environment +404238,Environment,Environment +404237,Environment,Environment +402176,Environment,Environment +402172,Environment,Environment +401932,Environment,Environment +401694,Environment,Environment +399741,Environment,Environment +399699,Environment,Environment +390215,Environment,Environment +390213,Environment,Environment +390207,Environment,Environment +389611,Environment,Environment +389605,Environment,Environment +386598,Environment,Environment +382091,Environment,Environment +382090,Environment,Environment +382089,Environment,Environment +380912,Environment,Environment +380604,Environment,Environment +380603,Environment,Environment +378598,Environment,Environment +378305,Environment,Environment +378300,Environment,Environment +374091,Environment,Environment +531724,Environment,Environment +531722,Environment,Environment +522877,Environment,Environment +522865,Environment,Environment +517927,Environment,Environment +517923,Environment,Environment +517904,Environment,Environment +513027,Environment,Environment +402172,Industry,Industry +399699,Industry,Industry +93288,Industry,Industry +93286,Industry,Industry +90611,Industry,Industry +161982,Industry,Industry +159174,Industry,Industry +159173,Industry,Industry +152458,Industry,Industry +147945,Industry,Industry +147943,Industry,Industry +147942,Industry,Industry +135443,Industry,Industry +135442,Industry,Industry +135440,Industry,Industry +121258,Industry,Industry +117034,Industry,Industry +114181,Industry,Industry +109101,Industry,Industry +207396,Industry,Industry +200255,Industry,Industry +200253,Industry,Industry +200250,Industry,Industry +200248,Industry,Industry +200244,Industry,Industry +200241,Industry,Industry +200237,Industry,Industry +200233,Industry,Industry +200226,Industry,Industry +200062,Industry,Industry +200058,Industry,Industry +200054,Industry,Industry +200053,Industry,Industry +200052,Industry,Industry +200051,Industry,Industry +200049,Industry,Industry +200048,Industry,Industry +200046,Industry,Industry +200043,Industry,Industry +192977,Industry,Industry +192976,Industry,Industry +192974,Industry,Industry +192973,Industry,Industry +192972,Industry,Industry +189984,Industry,Industry +189695,Industry,Industry +189694,Industry,Industry +189693,Industry,Industry +189692,Industry,Industry +189690,Industry,Industry +189689,Industry,Industry +189687,Industry,Industry +189686,Industry,Industry +189685,Industry,Industry +185876,Industry,Industry +173130,Industry,Industry +173129,Industry,Industry +170530,Industry,Industry +163749,Industry,Industry +163748,Industry,Industry +161987,Industry,Industry +161983,Industry,Industry +390203,Industry,Industry +389611,Industry,Industry +386596,Industry,Industry +386595,Industry,Industry +386594,Industry,Industry +386592,Industry,Industry +380604,Industry,Industry +380603,Industry,Industry +378300,Industry,Industry +370805,Industry,Industry +363084,Industry,Industry +359704,Industry,Industry +359703,Industry,Industry +355651,Industry,Industry +355278,Industry,Industry +355263,Industry,Industry +355262,Industry,Industry +355261,Industry,Industry +355243,Industry,Industry +355240,Industry,Industry +355239,Industry,Industry +355238,Industry,Industry +355236,Industry,Industry +355233,Industry,Industry +355231,Industry,Industry +348807,Industry,Industry +348806,Industry,Industry +348805,Industry,Industry +348802,Industry,Industry +343630,Industry,Industry +343625,Industry,Industry +343624,Industry,Industry +343619,Industry,Industry +340619,Industry,Industry +340615,Industry,Industry +340614,Industry,Industry +335036,Industry,Industry +335035,Industry,Industry +331241,Industry,Industry +331240,Industry,Industry +331239,Industry,Industry +329880,Industry,Industry +324897,Industry,Industry +320772,Industry,Industry +320769,Industry,Industry +318713,Industry,Industry +312856,Industry,Industry +309814,Industry,Industry +302450,Industry,Industry +302449,Industry,Industry +298169,Industry,Industry +295771,Industry,Industry +295770,Industry,Industry +295769,Industry,Industry +279733,Industry,Industry +279731,Industry,Industry +279730,Industry,Industry +279729,Industry,Industry +273577,Industry,Industry +269127,Industry,Industry +268396,Industry,Industry +268370,Industry,Industry +264492,Industry,Industry +264489,Industry,Industry +253950,Industry,Industry +249949,Industry,Industry +249859,Industry,Industry +249858,Industry,Industry +249857,Industry,Industry +249855,Industry,Industry +249854,Industry,Industry +244049,Industry,Industry +240431,Industry,Industry +233864,Industry,Industry +233860,Industry,Industry +233858,Industry,Industry +230271,Industry,Industry +226936,Industry,Industry +226934,Industry,Industry +222698,Industry,Industry +217616,Industry,Industry +212502,Industry,Industry +212497,Industry,Industry +544418,Industry,Industry +538765,Industry,Industry +528888,Industry,Industry +522884,Industry,Industry +522881,Industry,Industry +522877,Industry,Industry +513027,Industry,Industry +509499,Industry,Industry +495430,Industry,Industry +493184,Industry,Industry +491140,Industry,Industry +491138,Industry,Industry +484781,Industry,Industry +477992,Industry,Industry +475501,Industry,Industry +473055,Industry,Industry +466432,Industry,Industry +461728,Industry,Industry +461725,Industry,Industry +461723,Industry,Industry +461704,Industry,Industry +460156,Industry,Industry +460147,Industry,Industry +460145,Industry,Industry +460144,Industry,Industry +460140,Industry,Industry +458656,Industry,Industry +457510,Industry,Industry +457504,Industry,Industry +455605,Industry,Industry +445529,Industry,Industry +445527,Industry,Industry +442967,Industry,Industry +442966,Industry,Industry +442964,Industry,Industry +442962,Industry,Industry +442524,Industry,Industry +442511,Industry,Industry +442508,Industry,Industry +442507,Industry,Industry +442459,Industry,Industry +442398,Industry,Industry +438747,Industry,Industry +438715,Industry,Industry +438691,Industry,Industry +438637,Industry,Industry +438355,Industry,Industry +435300,Industry,Industry +435202,Industry,Industry +434495,Industry,Industry +434488,Industry,Industry +434478,Industry,Industry +434374,Industry,Industry +433429,Industry,Industry +433428,Industry,Industry +433058,Industry,Industry +432299,Industry,Industry +431898,Industry,Industry +431897,Industry,Industry +431760,Industry,Industry +431758,Industry,Industry +430498,Industry,Industry +430496,Industry,Industry +430269,Industry,Industry +430268,Industry,Industry +430267,Industry,Industry +430265,Industry,Industry +430263,Industry,Industry +424965,Industry,Industry +424920,Industry,Industry +424919,Industry,Industry +423132,Industry,Industry +423131,Industry,Industry +423129,Industry,Industry +423128,Industry,Industry +423127,Industry,Industry +423046,Industry,Industry +423044,Industry,Industry +423043,Industry,Industry +423042,Industry,Industry +423040,Industry,Industry +420678,Industry,Industry +418981,Industry,Industry +418941,Industry,Industry +418840,Industry,Industry +415427,Industry,Industry +414794,Industry,Industry +414793,Industry,Industry +414788,Industry,Industry +414787,Industry,Industry +414783,Industry,Industry +414780,Industry,Industry +414773,Industry,Industry +414737,Industry,Industry +409241,Industry,Industry +405916,Industry,Industry +405864,Industry,Industry +405862,Industry,Industry +402176,International Relations,International Relations +399699,International Relations,International Relations +95035,International Relations,International Relations +93287,International Relations,International Relations +159172,International Relations,International Relations +159170,International Relations,International Relations +159169,International Relations,International Relations +159168,International Relations,International Relations +157609,International Relations,International Relations +157608,International Relations,International Relations +156906,International Relations,International Relations +156905,International Relations,International Relations +156903,International Relations,International Relations +156901,International Relations,International Relations +147945,International Relations,International Relations +147943,International Relations,International Relations +147942,International Relations,International Relations +121258,International Relations,International Relations +117035,International Relations,International Relations +189686,International Relations,International Relations +185876,International Relations,International Relations +175319,International Relations,International Relations +173130,International Relations,International Relations +173129,International Relations,International Relations +170530,International Relations,International Relations +163749,International Relations,International Relations +161987,International Relations,International Relations +395204,International Relations,International Relations +395203,International Relations,International Relations +395202,International Relations,International Relations +386592,International Relations,International Relations +382090,International Relations,International Relations +382089,International Relations,International Relations +380606,International Relations,International Relations +374077,International Relations,International Relations +374075,International Relations,International Relations +355278,International Relations,International Relations +348807,International Relations,International Relations +343630,International Relations,International Relations +343619,International Relations,International Relations +335035,International Relations,International Relations +329880,International Relations,International Relations +320770,International Relations,International Relations +320769,International Relations,International Relations +318713,International Relations,International Relations +312856,International Relations,International Relations +309814,International Relations,International Relations +302450,International Relations,International Relations +302449,International Relations,International Relations +298169,International Relations,International Relations +295772,International Relations,International Relations +279733,International Relations,International Relations +279731,International Relations,International Relations +279730,International Relations,International Relations +279729,International Relations,International Relations +273577,International Relations,International Relations +269127,International Relations,International Relations +268396,International Relations,International Relations +264492,International Relations,International Relations +264489,International Relations,International Relations +253950,International Relations,International Relations +233864,International Relations,International Relations +230271,International Relations,International Relations +226936,International Relations,International Relations +226934,International Relations,International Relations +217616,International Relations,International Relations +200046,International Relations,International Relations +192974,International Relations,International Relations +192973,International Relations,International Relations +541453,International Relations,International Relations +531729,International Relations,International Relations +531728,International Relations,International Relations +531724,International Relations,International Relations +531722,International Relations,International Relations +531715,International Relations,International Relations +531711,International Relations,International Relations +528888,International Relations,International Relations +528881,International Relations,International Relations +526725,International Relations,International Relations +526724,International Relations,International Relations +526722,International Relations,International Relations +522884,International Relations,International Relations +513027,International Relations,International Relations +495430,International Relations,International Relations +493179,International Relations,International Relations +487991,International Relations,International Relations +487987,International Relations,International Relations +473059,International Relations,International Relations +473058,International Relations,International Relations +473053,International Relations,International Relations +466431,International Relations,International Relations +466427,International Relations,International Relations +466424,International Relations,International Relations +462614,International Relations,International Relations +462510,International Relations,International Relations +462509,International Relations,International Relations +461831,International Relations,International Relations +460688,International Relations,International Relations +460686,International Relations,International Relations +460684,International Relations,International Relations +450017,International Relations,International Relations +450015,International Relations,International Relations +450012,International Relations,International Relations +450010,International Relations,International Relations +450007,International Relations,International Relations +449999,International Relations,International Relations +442511,International Relations,International Relations +433429,International Relations,International Relations +431897,International Relations,International Relations +430498,International Relations,International Relations +430496,International Relations,International Relations +430269,International Relations,International Relations +430268,International Relations,International Relations +430267,International Relations,International Relations +430265,International Relations,International Relations +430263,International Relations,International Relations +418981,International Relations,International Relations +418941,International Relations,International Relations +414794,International Relations,International Relations +414793,International Relations,International Relations +411157,International Relations,International Relations +409241,International Relations,International Relations +405866,International Relations,International Relations +531715,International Trade,International Trade +531711,International Trade,International Trade +135440,International Trade,International Trade +132916,International Trade,International Trade +121258,International Trade,International Trade +117035,International Trade,International Trade +117034,International Trade,International Trade +114185,International Trade,International Trade +95035,International Trade,International Trade +93287,International Trade,International Trade +154656,International Trade,International Trade +154654,International Trade,International Trade +152458,International Trade,International Trade +152457,International Trade,International Trade +147945,International Trade,International Trade +147943,International Trade,International Trade +147942,International Trade,International Trade +145789,International Trade,International Trade +135443,International Trade,International Trade +240430,International Trade,International Trade +233864,International Trade,International Trade +233860,International Trade,International Trade +233858,International Trade,International Trade +230271,International Trade,International Trade +226936,International Trade,International Trade +226934,International Trade,International Trade +217616,International Trade,International Trade +200046,International Trade,International Trade +200043,International Trade,International Trade +192974,International Trade,International Trade +192973,International Trade,International Trade +189984,International Trade,International Trade +189695,International Trade,International Trade +189690,International Trade,International Trade +189686,International Trade,International Trade +189685,International Trade,International Trade +185876,International Trade,International Trade +180764,International Trade,International Trade +175319,International Trade,International Trade +173130,International Trade,International Trade +173129,International Trade,International Trade +163748,International Trade,International Trade +161987,International Trade,International Trade +159172,International Trade,International Trade +159170,International Trade,International Trade +159169,International Trade,International Trade +159168,International Trade,International Trade +157609,International Trade,International Trade +157608,International Trade,International Trade +156906,International Trade,International Trade +156905,International Trade,International Trade +156903,International Trade,International Trade +156901,International Trade,International Trade +395204,International Trade,International Trade +395203,International Trade,International Trade +395202,International Trade,International Trade +393372,International Trade,International Trade +386598,International Trade,International Trade +386596,International Trade,International Trade +386594,International Trade,International Trade +386592,International Trade,International Trade +384803,International Trade,International Trade +382089,International Trade,International Trade +380606,International Trade,International Trade +378300,International Trade,International Trade +374077,International Trade,International Trade +374075,International Trade,International Trade +368022,International Trade,International Trade +350458,International Trade,International Trade +348807,International Trade,International Trade +343630,International Trade,International Trade +343619,International Trade,International Trade +335035,International Trade,International Trade +331239,International Trade,International Trade +329880,International Trade,International Trade +320770,International Trade,International Trade +320769,International Trade,International Trade +318713,International Trade,International Trade +312856,International Trade,International Trade +309814,International Trade,International Trade +302450,International Trade,International Trade +302449,International Trade,International Trade +298169,International Trade,International Trade +295772,International Trade,International Trade +279733,International Trade,International Trade +279731,International Trade,International Trade +279730,International Trade,International Trade +279729,International Trade,International Trade +273577,International Trade,International Trade +269127,International Trade,International Trade +268396,International Trade,International Trade +268370,International Trade,International Trade +264492,International Trade,International Trade +264489,International Trade,International Trade +253950,International Trade,International Trade +249859,International Trade,International Trade +249858,International Trade,International Trade +249857,International Trade,International Trade +249856,International Trade,International Trade +249855,International Trade,International Trade +244049,International Trade,International Trade +240431,International Trade,International Trade +528881,International Trade,International Trade +528874,International Trade,International Trade +526731,International Trade,International Trade +526725,International Trade,International Trade +522881,International Trade,International Trade +519865,International Trade,International Trade +517927,International Trade,International Trade +517923,International Trade,International Trade +513027,International Trade,International Trade +509499,International Trade,International Trade +495430,International Trade,International Trade +493179,International Trade,International Trade +491346,International Trade,International Trade +491342,International Trade,International Trade +491138,International Trade,International Trade +487995,International Trade,International Trade +487991,International Trade,International Trade +487987,International Trade,International Trade +484781,International Trade,International Trade +479221,International Trade,International Trade +479218,International Trade,International Trade +478006,International Trade,International Trade +475507,International Trade,International Trade +473059,International Trade,International Trade +473058,International Trade,International Trade +473055,International Trade,International Trade +473053,International Trade,International Trade +466432,International Trade,International Trade +466431,International Trade,International Trade +466427,International Trade,International Trade +466424,International Trade,International Trade +464521,International Trade,International Trade +462614,International Trade,International Trade +462510,International Trade,International Trade +462509,International Trade,International Trade +461831,International Trade,International Trade +461725,International Trade,International Trade +461723,International Trade,International Trade +461704,International Trade,International Trade +460688,International Trade,International Trade +460687,International Trade,International Trade +460686,International Trade,International Trade +460684,International Trade,International Trade +460156,International Trade,International Trade +460147,International Trade,International Trade +460145,International Trade,International Trade +460144,International Trade,International Trade +460140,International Trade,International Trade +458655,International Trade,International Trade +457504,International Trade,International Trade +456001,International Trade,International Trade +455799,International Trade,International Trade +455619,International Trade,International Trade +455617,International Trade,International Trade +455613,International Trade,International Trade +451548,International Trade,International Trade +450017,International Trade,International Trade +450015,International Trade,International Trade +450012,International Trade,International Trade +450010,International Trade,International Trade +450007,International Trade,International Trade +449999,International Trade,International Trade +445531,International Trade,International Trade +445529,International Trade,International Trade +445527,International Trade,International Trade +443612,International Trade,International Trade +443605,International Trade,International Trade +443603,International Trade,International Trade +442962,International Trade,International Trade +442524,International Trade,International Trade +442522,International Trade,International Trade +442511,International Trade,International Trade +442503,International Trade,International Trade +442459,International Trade,International Trade +442398,International Trade,International Trade +438355,International Trade,International Trade +434495,International Trade,International Trade +434488,International Trade,International Trade +434478,International Trade,International Trade +434374,International Trade,International Trade +434365,International Trade,International Trade +434363,International Trade,International Trade +433429,International Trade,International Trade +433428,International Trade,International Trade +433058,International Trade,International Trade +431897,International Trade,International Trade +431760,International Trade,International Trade +431758,International Trade,International Trade +430498,International Trade,International Trade +430496,International Trade,International Trade +430269,International Trade,International Trade +430268,International Trade,International Trade +430267,International Trade,International Trade +430265,International Trade,International Trade +430263,International Trade,International Trade +427605,International Trade,International Trade +427604,International Trade,International Trade +427603,International Trade,International Trade +427602,International Trade,International Trade +425396,International Trade,International Trade +424965,International Trade,International Trade +424920,International Trade,International Trade +423740,International Trade,International Trade +423407,International Trade,International Trade +423132,International Trade,International Trade +423131,International Trade,International Trade +423129,International Trade,International Trade +423128,International Trade,International Trade +423127,International Trade,International Trade +423046,International Trade,International Trade +423044,International Trade,International Trade +423043,International Trade,International Trade +423042,International Trade,International Trade +423040,International Trade,International Trade +421005,International Trade,International Trade +421004,International Trade,International Trade +418981,International Trade,International Trade +418941,International Trade,International Trade +418840,International Trade,International Trade +418839,International Trade,International Trade +418837,International Trade,International Trade +415427,International Trade,International Trade +414794,International Trade,International Trade +414793,International Trade,International Trade +414788,International Trade,International Trade +414787,International Trade,International Trade +414783,International Trade,International Trade +414780,International Trade,International Trade +414773,International Trade,International Trade +414737,International Trade,International Trade +411504,International Trade,International Trade +411157,International Trade,International Trade +409241,International Trade,International Trade +409094,International Trade,International Trade +406368,International Trade,International Trade +405866,International Trade,International Trade +405864,International Trade,International Trade +402176,International Trade,International Trade +401693,International Trade,International Trade +399699,International Trade,International Trade +541453,International Trade,International Trade +537768,International Trade,International Trade +537766,International Trade,International Trade +537764,International Trade,International Trade +537758,International Trade,International Trade +535424,International Trade,International Trade +531729,International Trade,International Trade +531728,International Trade,International Trade +531724,International Trade,International Trade +531723,International Trade,International Trade +466431,Mining,Mining +466427,Mining,Mining +83074,Mining,Mining +83069,Mining,Mining +81234,Mining,Mining +93288,Mining,Mining +93286,Mining,Mining +90611,Mining,Mining +87714,Mining,Mining +200053,Mining,Mining +200052,Mining,Mining +200049,Mining,Mining +200048,Mining,Mining +192975,Mining,Mining +173129,Mining,Mining +163749,Mining,Mining +161987,Mining,Mining +161984,Mining,Mining +161983,Mining,Mining +161982,Mining,Mining +159174,Mining,Mining +159173,Mining,Mining +159172,Mining,Mining +159170,Mining,Mining +159169,Mining,Mining +159168,Mining,Mining +157609,Mining,Mining +157608,Mining,Mining +156906,Mining,Mining +156905,Mining,Mining +156901,Mining,Mining +154656,Mining,Mining +154654,Mining,Mining +152457,Mining,Mining +149695,Mining,Mining +147942,Mining,Mining +145789,Mining,Mining +142274,Mining,Mining +135442,Mining,Mining +135440,Mining,Mining +124797,Mining,Mining +121258,Mining,Mining +117034,Mining,Mining +109101,Mining,Mining +109098,Mining,Mining +105359,Mining,Mining +390207,Mining,Mining +390203,Mining,Mining +389611,Mining,Mining +389605,Mining,Mining +386595,Mining,Mining +384803,Mining,Mining +382089,Mining,Mining +380912,Mining,Mining +380604,Mining,Mining +380603,Mining,Mining +378598,Mining,Mining +378305,Mining,Mining +378300,Mining,Mining +374091,Mining,Mining +374077,Mining,Mining +374075,Mining,Mining +370805,Mining,Mining +368022,Mining,Mining +364442,Mining,Mining +364402,Mining,Mining +350459,Mining,Mining +350458,Mining,Mining +348807,Mining,Mining +348806,Mining,Mining +348805,Mining,Mining +348802,Mining,Mining +343630,Mining,Mining +343626,Mining,Mining +343625,Mining,Mining +343624,Mining,Mining +343619,Mining,Mining +340619,Mining,Mining +340615,Mining,Mining +340614,Mining,Mining +335036,Mining,Mining +331241,Mining,Mining +331240,Mining,Mining +331239,Mining,Mining +329880,Mining,Mining +320772,Mining,Mining +320769,Mining,Mining +312856,Mining,Mining +309814,Mining,Mining +295771,Mining,Mining +295770,Mining,Mining +295769,Mining,Mining +279731,Mining,Mining +268370,Mining,Mining +249949,Mining,Mining +249859,Mining,Mining +249858,Mining,Mining +249857,Mining,Mining +249856,Mining,Mining +249855,Mining,Mining +249854,Mining,Mining +244049,Mining,Mining +240431,Mining,Mining +222698,Mining,Mining +217616,Mining,Mining +212502,Mining,Mining +212497,Mining,Mining +207396,Mining,Mining +200062,Mining,Mining +200061,Mining,Mining +200058,Mining,Mining +200057,Mining,Mining +200054,Mining,Mining +466424,Mining,Mining +466419,Mining,Mining +466415,Mining,Mining +464521,Mining,Mining +462614,Mining,Mining +462509,Mining,Mining +461831,Mining,Mining +461728,Mining,Mining +461725,Mining,Mining +461723,Mining,Mining +461704,Mining,Mining +460688,Mining,Mining +460687,Mining,Mining +460686,Mining,Mining +460684,Mining,Mining +460156,Mining,Mining +460147,Mining,Mining +460145,Mining,Mining +460144,Mining,Mining +460140,Mining,Mining +457510,Mining,Mining +457504,Mining,Mining +456001,Mining,Mining +455617,Mining,Mining +455613,Mining,Mining +455610,Mining,Mining +451548,Mining,Mining +448108,Mining,Mining +447534,Mining,Mining +447533,Mining,Mining +445529,Mining,Mining +445527,Mining,Mining +443609,Mining,Mining +443605,Mining,Mining +443603,Mining,Mining +442967,Mining,Mining +442966,Mining,Mining +442964,Mining,Mining +442962,Mining,Mining +442559,Mining,Mining +442524,Mining,Mining +442511,Mining,Mining +442508,Mining,Mining +442507,Mining,Mining +442505,Mining,Mining +442503,Mining,Mining +442459,Mining,Mining +442398,Mining,Mining +438747,Mining,Mining +438746,Mining,Mining +438741,Mining,Mining +438737,Mining,Mining +438731,Mining,Mining +438715,Mining,Mining +438691,Mining,Mining +438637,Mining,Mining +438355,Mining,Mining +435300,Mining,Mining +435202,Mining,Mining +434495,Mining,Mining +434488,Mining,Mining +434483,Mining,Mining +434482,Mining,Mining +434478,Mining,Mining +434473,Mining,Mining +434471,Mining,Mining +434374,Mining,Mining +434365,Mining,Mining +434363,Mining,Mining +433429,Mining,Mining +433428,Mining,Mining +433058,Mining,Mining +432478,Mining,Mining +432473,Mining,Mining +432299,Mining,Mining +431898,Mining,Mining +431897,Mining,Mining +431760,Mining,Mining +431758,Mining,Mining +430498,Mining,Mining +430496,Mining,Mining +430269,Mining,Mining +430268,Mining,Mining +430267,Mining,Mining +430265,Mining,Mining +430263,Mining,Mining +427605,Mining,Mining +427604,Mining,Mining +427603,Mining,Mining +427602,Mining,Mining +425396,Mining,Mining +424965,Mining,Mining +424920,Mining,Mining +424919,Mining,Mining +423407,Mining,Mining +423132,Mining,Mining +423131,Mining,Mining +423129,Mining,Mining +423128,Mining,Mining +423127,Mining,Mining +423046,Mining,Mining +423044,Mining,Mining +423043,Mining,Mining +423042,Mining,Mining +423040,Mining,Mining +421005,Mining,Mining +421004,Mining,Mining +418981,Mining,Mining +418941,Mining,Mining +418840,Mining,Mining +418839,Mining,Mining +418837,Mining,Mining +415428,Mining,Mining +415427,Mining,Mining +414794,Mining,Mining +414793,Mining,Mining +414788,Mining,Mining +414787,Mining,Mining +414783,Mining,Mining +414780,Mining,Mining +414773,Mining,Mining +414737,Mining,Mining +411504,Mining,Mining +411157,Mining,Mining +409241,Mining,Mining +409094,Mining,Mining +405916,Mining,Mining +405866,Mining,Mining +405864,Mining,Mining +405862,Mining,Mining +402176,Mining,Mining +402172,Mining,Mining +401932,Mining,Mining +401693,Mining,Mining +399699,Mining,Mining +544418,Mining,Mining +538765,Mining,Mining +537768,Mining,Mining +537766,Mining,Mining +537764,Mining,Mining +537761,Mining,Mining +537758,Mining,Mining +535430,Mining,Mining +535424,Mining,Mining +531730,Mining,Mining +531729,Mining,Mining +531728,Mining,Mining +531724,Mining,Mining +531723,Mining,Mining +531722,Mining,Mining +531715,Mining,Mining +531711,Mining,Mining +528888,Mining,Mining +528881,Mining,Mining +526725,Mining,Mining +526724,Mining,Mining +526722,Mining,Mining +522884,Mining,Mining +522881,Mining,Mining +522877,Mining,Mining +522873,Mining,Mining +517966,Mining,Mining +517962,Mining,Mining +517959,Mining,Mining +517957,Mining,Mining +517953,Mining,Mining +517948,Mining,Mining +517927,Mining,Mining +517923,Mining,Mining +517920,Mining,Mining +517914,Mining,Mining +517904,Mining,Mining +513027,Mining,Mining +509499,Mining,Mining +495430,Mining,Mining +491342,Mining,Mining +491138,Mining,Mining +487995,Mining,Mining +487991,Mining,Mining +487987,Mining,Mining +479227,Mining,Mining +479221,Mining,Mining +479218,Mining,Mining +479215,Mining,Mining +478011,Mining,Mining +478006,Mining,Mining +477999,Mining,Mining +475507,Mining,Mining +475501,Mining,Mining +473059,Mining,Mining +473058,Mining,Mining +473053,Mining,Mining +469852,Mining,Mining +469702,Mining,Mining +113816,Energy,Energy +162631,Energy,Energy +106021,Energy,Energy +100615,Energy,Energy +93999,Energy,Energy +93996,Energy,Energy +90238,Energy,Energy +83544,Energy,Energy +154933,Energy,Energy +152180,Energy,Energy +145883,Energy,Energy +142917,Energy,Energy +139415,Energy,Energy +139414,Energy,Energy +135998,Energy,Energy +145883,Environment,Environment +142917,Environment,Environment +139415,Environment,Environment +139414,Environment,Environment +135998,Environment,Environment +132696,Environment,Environment +113816,Environment,Environment +106021,Environment,Environment +100615,Environment,Environment +90238,Environment,Environment +83544,Environment,Environment +162631,Environment,Environment +154933,Environment,Environment +145883,Transportation,Transportation +338517,Defence,Defence +335134,Defence,Defence +163729,Defence,Defence +162155,Defence,Defence +156548,Defence,Defence +152282,Defence,Defence +120715,Defence,Defence +104074,Defence,Defence +79394,Defence,Defence +281749,Defence,Defence +201747,Defence,Defence +212647,Industry,Industry +79394,Industry,Industry +201747,Industry,Industry +197355,Industry,Industry +197354,Industry,Industry +159597,Industry,Industry +154688,Industry,Industry +141754,Industry,Industry +281749,Industry,Industry +79394,Regional Development,Regional Development +159597,Regional Development,Regional Development +162155,Other,Aerospace +159597,Other,Aerospace +156548,Other,Aerospace +154688,Other,Aerospace +153045,Other,Aerospace +77678,Government Procurement,Government Procurement +77674,Government Procurement,Government Procurement +132898,Tourism,Tourism +135927,Tourism,Tourism +135923,Tourism,Tourism +92866,Government Procurement,Government Procurement +92864,Government Procurement,Government Procurement +125117,Government Procurement,Government Procurement +428336,Government Procurement,Government Procurement +460184,Government Procurement,Government Procurement +132901,Government Procurement,Government Procurement +113978,Government Procurement,Government Procurement +106281,Government Procurement,Government Procurement +130674,Education,Education +103652,Education,Education +91436,Other,Postsecondary education +134277,Other,Postsecondary education +125634,Other,Postsecondary education +117474,Other,Postsecondary education +109772,Other,Postsecondary education +103654,Other,Postsecondary education +103653,Other,Postsecondary education +93745,Other,Postsecondary education +93737,Other,Postsecondary education +105881,Agriculture,Agriculture +105880,Agriculture,Agriculture +97513,Agriculture,Agriculture +97512,Agriculture,Agriculture +85374,Agriculture,Agriculture +76063,Agriculture,Agriculture +153446,Agriculture,Agriculture +148140,Agriculture,Agriculture +142461,Agriculture,Agriculture +142460,Agriculture,Agriculture +129282,Agriculture,Agriculture +142460,International Trade,International Trade +129282,International Trade,International Trade +85374,International Trade,International Trade +153446,International Trade,International Trade +321009,Agriculture,Agriculture +320989,Agriculture,Agriculture +92873,Agriculture,Agriculture +92872,Agriculture,Agriculture +200189,Agriculture,Agriculture +156044,Agriculture,Agriculture +352210,Agriculture,Agriculture +340516,Agriculture,Agriculture +325533,Agriculture,Agriculture +325533,Consumer Issues,Consumer Issues +325532,Consumer Issues,Consumer Issues +200189,Consumer Issues,Consumer Issues +325532,Health,Health +321009,Health,Health +146175,Health,Health +131354,Health,Health +104295,Health,Health +97837,Health,Health +92869,Health,Health +87659,Health,Health +200189,Health,Health +156044,Health,Health +146176,Health,Health +352210,Health,Health +340516,Health,Health +321009,Industry,Industry +320989,Industry,Industry +253633,Industry,Industry +200189,Industry,Industry +352210,Industry,Industry +340516,Industry,Industry +325533,Industry,Industry +325532,International Trade,International Trade +320989,International Trade,International Trade +200189,International Trade,International Trade +352210,International Trade,International Trade +238851,Taxation and Finance,Taxation and Finance +388309,Employment and Training,Employment and Training +540166,Employment and Training,Employment and Training +304693,Employment and Training,Employment and Training +304691,Employment and Training,Employment and Training +304690,Employment and Training,Employment and Training +296849,Employment and Training,Employment and Training +491595,Energy,Energy +488141,Energy,Energy +159826,Energy,Energy +159822,Energy,Energy +159821,Energy,Energy +159817,Energy,Energy +159814,Energy,Energy +159806,Energy,Energy +158475,Energy,Energy +155947,Energy,Energy +135974,Energy,Energy +254849,Energy,Energy +245630,Energy,Energy +245592,Energy,Energy +245590,Energy,Energy +190274,Energy,Energy +168789,Energy,Energy +168785,Energy,Energy +168776,Energy,Energy +168772,Energy,Energy +159859,Energy,Energy +159855,Energy,Energy +159852,Energy,Energy +159850,Energy,Energy +159847,Energy,Energy +159845,Energy,Energy +159841,Energy,Energy +159838,Energy,Energy +159836,Energy,Energy +159832,Energy,Energy +159830,Energy,Energy +341816,Energy,Energy +304697,Energy,Energy +304696,Energy,Energy +296849,Energy,Energy +479914,Energy,Energy +479812,Energy,Energy +478189,Energy,Energy +475818,Energy,Energy +475814,Energy,Energy +473135,Energy,Energy +473124,Energy,Energy +465089,Energy,Energy +439196,Energy,Energy +439189,Energy,Energy +439174,Energy,Energy +431360,Energy,Energy +431359,Energy,Energy +431358,Energy,Energy +431357,Energy,Energy +431355,Energy,Energy +428615,Energy,Energy +413673,Energy,Energy +541893,Energy,Energy +540288,Energy,Energy +535621,Energy,Energy +535585,Energy,Energy +535576,Energy,Energy +535545,Energy,Energy +535543,Energy,Energy +535540,Energy,Energy +535539,Energy,Energy +535535,Energy,Energy +535532,Energy,Energy +535529,Energy,Energy +535525,Energy,Energy +535524,Energy,Energy +535521,Energy,Energy +535518,Energy,Energy +535516,Energy,Energy +535492,Energy,Energy +532276,Energy,Energy +529272,Energy,Energy +529266,Energy,Energy +529264,Energy,Energy +526253,Energy,Energy +523119,Energy,Energy +520041,Energy,Energy +520032,Energy,Energy +518150,Energy,Energy +513315,Energy,Energy +511200,Energy,Energy +504905,Energy,Energy +499414,Energy,Energy +499395,Energy,Energy +495807,Energy,Energy +526252,Environment,Environment +526249,Environment,Environment +85256,Environment,Environment +180378,Environment,Environment +171948,Environment,Environment +170888,Environment,Environment +168768,Environment,Environment +168762,Environment,Environment +167176,Environment,Environment +155946,Environment,Environment +153421,Environment,Environment +152311,Environment,Environment +152310,Environment,Environment +142963,Environment,Environment +230755,Environment,Environment +218648,Environment,Environment +194985,Environment,Environment +194981,Environment,Environment +194949,Environment,Environment +421893,Environment,Environment +421891,Environment,Environment +421824,Environment,Environment +413689,Environment,Environment +413687,Environment,Environment +413685,Environment,Environment +413683,Environment,Environment +413678,Environment,Environment +410237,Environment,Environment +408207,Environment,Environment +406879,Environment,Environment +398548,Environment,Environment +392554,Environment,Environment +322355,Environment,Environment +322352,Environment,Environment +304691,Environment,Environment +304690,Environment,Environment +304492,Environment,Environment +304491,Environment,Environment +286914,Environment,Environment +277494,Environment,Environment +523119,Environment,Environment +523117,Environment,Environment +523107,Environment,Environment +523104,Environment,Environment +520045,Environment,Environment +520043,Environment,Environment +520041,Environment,Environment +520032,Environment,Environment +518188,Environment,Environment +518150,Environment,Environment +518147,Environment,Environment +515732,Environment,Environment +513325,Environment,Environment +513320,Environment,Environment +513318,Environment,Environment +513315,Environment,Environment +511216,Environment,Environment +511205,Environment,Environment +511202,Environment,Environment +508506,Environment,Environment +508501,Environment,Environment +508496,Environment,Environment +508494,Environment,Environment +504912,Environment,Environment +504909,Environment,Environment +504908,Environment,Environment +504906,Environment,Environment +504905,Environment,Environment +504898,Environment,Environment +504895,Environment,Environment +502903,Environment,Environment +502902,Environment,Environment +502898,Environment,Environment +502897,Environment,Environment +502895,Environment,Environment +502894,Environment,Environment +502892,Environment,Environment +502890,Environment,Environment +502886,Environment,Environment +502884,Environment,Environment +502882,Environment,Environment +499414,Environment,Environment +499397,Environment,Environment +496337,Environment,Environment +496327,Environment,Environment +495807,Environment,Environment +488145,Environment,Environment +488142,Environment,Environment +485232,Environment,Environment +485229,Environment,Environment +485226,Environment,Environment +485224,Environment,Environment +482250,Environment,Environment +482244,Environment,Environment +482241,Environment,Environment +482239,Environment,Environment +482237,Environment,Environment +482234,Environment,Environment +479812,Environment,Environment +478189,Environment,Environment +475818,Environment,Environment +475814,Environment,Environment +475811,Environment,Environment +473142,Environment,Environment +473116,Environment,Environment +473115,Environment,Environment +469407,Environment,Environment +469404,Environment,Environment +469400,Environment,Environment +469399,Environment,Environment +468391,Environment,Environment +468387,Environment,Environment +468370,Environment,Environment +468369,Environment,Environment +465089,Environment,Environment +465088,Environment,Environment +465087,Environment,Environment +461577,Environment,Environment +456099,Environment,Environment +456098,Environment,Environment +452964,Environment,Environment +452952,Environment,Environment +452949,Environment,Environment +452948,Environment,Environment +452946,Environment,Environment +452944,Environment,Environment +452942,Environment,Environment +452940,Environment,Environment +452939,Environment,Environment +452937,Environment,Environment +452936,Environment,Environment +452934,Environment,Environment +452932,Environment,Environment +452929,Environment,Environment +452927,Environment,Environment +452926,Environment,Environment +450345,Environment,Environment +445730,Environment,Environment +442229,Environment,Environment +442208,Environment,Environment +442197,Environment,Environment +439334,Environment,Environment +439183,Environment,Environment +435848,Environment,Environment +431361,Environment,Environment +431360,Environment,Environment +431359,Environment,Environment +431358,Environment,Environment +431354,Environment,Environment +431352,Environment,Environment +431351,Environment,Environment +424281,Environment,Environment +544194,Environment,Environment +544193,Environment,Environment +544192,Environment,Environment +541893,Environment,Environment +540173,Environment,Environment +540170,Environment,Environment +540166,Environment,Environment +540163,Environment,Environment +538175,Environment,Environment +535621,Environment,Environment +535585,Environment,Environment +535576,Environment,Environment +535560,Environment,Environment +535556,Environment,Environment +535551,Environment,Environment +535545,Environment,Environment +535543,Environment,Environment +535540,Environment,Environment +535539,Environment,Environment +535535,Environment,Environment +535532,Environment,Environment +535529,Environment,Environment +535525,Environment,Environment +535524,Environment,Environment +535521,Environment,Environment +535518,Environment,Environment +535516,Environment,Environment +535492,Environment,Environment +535474,Environment,Environment +535472,Environment,Environment +535466,Environment,Environment +535464,Environment,Environment +532280,Environment,Environment +532243,Environment,Environment +529303,Environment,Environment +529277,Environment,Environment +529272,Environment,Environment +529270,Environment,Environment +529266,Environment,Environment +529250,Environment,Environment +529246,Environment,Environment +529243,Environment,Environment +529241,Environment,Environment +529236,Environment,Environment +529235,Environment,Environment +529232,Environment,Environment +526274,Environment,Environment +526270,Environment,Environment +526269,Environment,Environment +526265,Environment,Environment +526263,Environment,Environment +526258,Environment,Environment +526257,Environment,Environment +304491,Health,Health +159806,Health,Health +351467,Health,Health +469399,Health,Health +468369,Health,Health +544193,Health,Health +544192,Health,Health +540173,Health,Health +540170,Health,Health +540163,Health,Health +538175,Health,Health +535560,Health,Health +535556,Health,Health +535551,Health,Health +535474,Health,Health +535472,Health,Health +535466,Health,Health +535464,Health,Health +532243,Health,Health +529277,Health,Health +529250,Health,Health +529246,Health,Health +529243,Health,Health +529241,Health,Health +529236,Health,Health +529235,Health,Health +529232,Health,Health +526269,Health,Health +526265,Health,Health +526263,Health,Health +526249,Health,Health +514214,Health,Health +499413,Health,Health +435844,Industry,Industry +435843,Industry,Industry +251189,Industry,Industry +230755,Industry,Industry +158475,Industry,Industry +155947,Industry,Industry +316609,Industry,Industry +313197,Industry,Industry +313194,Industry,Industry +310336,Industry,Industry +304712,Industry,Industry +304711,Industry,Industry +304710,Industry,Industry +304709,Industry,Industry +304699,Industry,Industry +304698,Industry,Industry +304697,Industry,Industry +304696,Industry,Industry +296857,Industry,Industry +296855,Industry,Industry +296853,Industry,Industry +296849,Industry,Industry +281909,Industry,Industry +281892,Industry,Industry +281891,Industry,Industry +281890,Industry,Industry +281889,Industry,Industry +277502,Industry,Industry +277501,Industry,Industry +277499,Industry,Industry +277498,Industry,Industry +277497,Industry,Industry +277496,Industry,Industry +277495,Industry,Industry +273660,Industry,Industry +273658,Industry,Industry +273652,Industry,Industry +269499,Industry,Industry +269497,Industry,Industry +269491,Industry,Industry +269489,Industry,Industry +264932,Industry,Industry +264931,Industry,Industry +264929,Industry,Industry +264669,Industry,Industry +259653,Industry,Industry +259652,Industry,Industry +259651,Industry,Industry +259650,Industry,Industry +259649,Industry,Industry +254211,Industry,Industry +251192,Industry,Industry +251191,Industry,Industry +251190,Industry,Industry +388317,Industry,Industry +388306,Industry,Industry +388305,Industry,Industry +388301,Industry,Industry +385817,Industry,Industry +385815,Industry,Industry +385814,Industry,Industry +385813,Industry,Industry +385811,Industry,Industry +385807,Industry,Industry +385805,Industry,Industry +383941,Industry,Industry +382477,Industry,Industry +381716,Industry,Industry +381715,Industry,Industry +381714,Industry,Industry +381713,Industry,Industry +381712,Industry,Industry +379844,Industry,Industry +379842,Industry,Industry +379840,Industry,Industry +379839,Industry,Industry +379837,Industry,Industry +379832,Industry,Industry +379829,Industry,Industry +379822,Industry,Industry +379818,Industry,Industry +379816,Industry,Industry +379814,Industry,Industry +379810,Industry,Industry +379807,Industry,Industry +379806,Industry,Industry +377298,Industry,Industry +377293,Industry,Industry +377292,Industry,Industry +372727,Industry,Industry +351467,Industry,Industry +349037,Industry,Industry +347147,Industry,Industry +347144,Industry,Industry +344223,Industry,Industry +344222,Industry,Industry +344098,Industry,Industry +341834,Industry,Industry +338882,Industry,Industry +338881,Industry,Industry +338880,Industry,Industry +338878,Industry,Industry +338877,Industry,Industry +338876,Industry,Industry +338874,Industry,Industry +338870,Industry,Industry +335698,Industry,Industry +335695,Industry,Industry +335692,Industry,Industry +335689,Industry,Industry +335685,Industry,Industry +333620,Industry,Industry +331524,Industry,Industry +330233,Industry,Industry +330232,Industry,Industry +330231,Industry,Industry +330229,Industry,Industry +330227,Industry,Industry +322353,Industry,Industry +319351,Industry,Industry +319350,Industry,Industry +319349,Industry,Industry +433990,Industry,Industry +433980,Industry,Industry +433979,Industry,Industry +433978,Industry,Industry +432593,Industry,Industry +432592,Industry,Industry +432577,Industry,Industry +432574,Industry,Industry +432566,Industry,Industry +431361,Industry,Industry +431360,Industry,Industry +431359,Industry,Industry +431358,Industry,Industry +431357,Industry,Industry +431356,Industry,Industry +431355,Industry,Industry +431354,Industry,Industry +431353,Industry,Industry +431352,Industry,Industry +431351,Industry,Industry +428635,Industry,Industry +428615,Industry,Industry +428609,Industry,Industry +426728,Industry,Industry +426720,Industry,Industry +426713,Industry,Industry +426708,Industry,Industry +426703,Industry,Industry +426700,Industry,Industry +424281,Industry,Industry +424275,Industry,Industry +421893,Industry,Industry +421891,Industry,Industry +421877,Industry,Industry +421874,Industry,Industry +421870,Industry,Industry +421828,Industry,Industry +420220,Industry,Industry +420213,Industry,Industry +420209,Industry,Industry +420206,Industry,Industry +418226,Industry,Industry +418224,Industry,Industry +418221,Industry,Industry +418219,Industry,Industry +418217,Industry,Industry +418214,Industry,Industry +416071,Industry,Industry +416068,Industry,Industry +416059,Industry,Industry +416049,Industry,Industry +416045,Industry,Industry +416043,Industry,Industry +413689,Industry,Industry +413687,Industry,Industry +413685,Industry,Industry +413683,Industry,Industry +413678,Industry,Industry +413673,Industry,Industry +413664,Industry,Industry +410239,Industry,Industry +410238,Industry,Industry +410237,Industry,Industry +410236,Industry,Industry +410188,Industry,Industry +408207,Industry,Industry +408206,Industry,Industry +408204,Industry,Industry +408203,Industry,Industry +408200,Industry,Industry +406885,Industry,Industry +406884,Industry,Industry +406879,Industry,Industry +405969,Industry,Industry +405631,Industry,Industry +403954,Industry,Industry +403947,Industry,Industry +403942,Industry,Industry +403940,Industry,Industry +403938,Industry,Industry +403937,Industry,Industry +403934,Industry,Industry +403931,Industry,Industry +403911,Industry,Industry +403909,Industry,Industry +403904,Industry,Industry +400598,Industry,Industry +400588,Industry,Industry +400581,Industry,Industry +399286,Industry,Industry +398572,Industry,Industry +398571,Industry,Industry +398570,Industry,Industry +398569,Industry,Industry +398568,Industry,Industry +398567,Industry,Industry +398566,Industry,Industry +398554,Industry,Industry +398548,Industry,Industry +398544,Industry,Industry +398543,Industry,Industry +398541,Industry,Industry +398539,Industry,Industry +394274,Industry,Industry +392554,Industry,Industry +392552,Industry,Industry +392551,Industry,Industry +392550,Industry,Industry +392549,Industry,Industry +392548,Industry,Industry +392544,Industry,Industry +391410,Industry,Industry +391379,Industry,Industry +391372,Industry,Industry +388324,Industry,Industry +388323,Industry,Industry +388321,Industry,Industry +388319,Industry,Industry +544194,Industry,Industry +541893,Industry,Industry +540288,Industry,Industry +540173,Industry,Industry +540170,Industry,Industry +540166,Industry,Industry +540163,Industry,Industry +538174,Industry,Industry +538170,Industry,Industry +535621,Industry,Industry +535585,Industry,Industry +535576,Industry,Industry +535556,Industry,Industry +535551,Industry,Industry +535545,Industry,Industry +535543,Industry,Industry +535540,Industry,Industry +535539,Industry,Industry +535535,Industry,Industry +535532,Industry,Industry +535529,Industry,Industry +535525,Industry,Industry +535524,Industry,Industry +535521,Industry,Industry +535518,Industry,Industry +535516,Industry,Industry +535492,Industry,Industry +535474,Industry,Industry +535464,Industry,Industry +532280,Industry,Industry +532278,Industry,Industry +532276,Industry,Industry +529303,Industry,Industry +529272,Industry,Industry +529270,Industry,Industry +529268,Industry,Industry +529266,Industry,Industry +529264,Industry,Industry +529256,Industry,Industry +529252,Industry,Industry +529244,Industry,Industry +529239,Industry,Industry +526274,Industry,Industry +526270,Industry,Industry +526267,Industry,Industry +526260,Industry,Industry +526258,Industry,Industry +526257,Industry,Industry +526253,Industry,Industry +526252,Industry,Industry +523119,Industry,Industry +523117,Industry,Industry +523116,Industry,Industry +523111,Industry,Industry +523107,Industry,Industry +523104,Industry,Industry +523097,Industry,Industry +520045,Industry,Industry +520043,Industry,Industry +520041,Industry,Industry +520032,Industry,Industry +518188,Industry,Industry +518150,Industry,Industry +518147,Industry,Industry +518143,Industry,Industry +518131,Industry,Industry +518129,Industry,Industry +514200,Industry,Industry +513325,Industry,Industry +513323,Industry,Industry +513322,Industry,Industry +513320,Industry,Industry +513317,Industry,Industry +513315,Industry,Industry +513313,Industry,Industry +511216,Industry,Industry +511205,Industry,Industry +511203,Industry,Industry +511202,Industry,Industry +508506,Industry,Industry +508503,Industry,Industry +508501,Industry,Industry +508496,Industry,Industry +508494,Industry,Industry +504912,Industry,Industry +504909,Industry,Industry +504908,Industry,Industry +504906,Industry,Industry +504905,Industry,Industry +504903,Industry,Industry +504898,Industry,Industry +504895,Industry,Industry +502903,Industry,Industry +502902,Industry,Industry +502901,Industry,Industry +502900,Industry,Industry +502898,Industry,Industry +502897,Industry,Industry +502895,Industry,Industry +502894,Industry,Industry +502892,Industry,Industry +502890,Industry,Industry +502886,Industry,Industry +502884,Industry,Industry +502882,Industry,Industry +499414,Industry,Industry +499410,Industry,Industry +499399,Industry,Industry +499397,Industry,Industry +499395,Industry,Industry +496337,Industry,Industry +496325,Industry,Industry +493394,Industry,Industry +493369,Industry,Industry +493367,Industry,Industry +493364,Industry,Industry +491631,Industry,Industry +491612,Industry,Industry +491609,Industry,Industry +491607,Industry,Industry +491601,Industry,Industry +491597,Industry,Industry +491595,Industry,Industry +491592,Industry,Industry +488175,Industry,Industry +488173,Industry,Industry +488168,Industry,Industry +488166,Industry,Industry +488165,Industry,Industry +488164,Industry,Industry +488163,Industry,Industry +488161,Industry,Industry +488158,Industry,Industry +488157,Industry,Industry +488156,Industry,Industry +488155,Industry,Industry +488154,Industry,Industry +488153,Industry,Industry +488152,Industry,Industry +488151,Industry,Industry +488148,Industry,Industry +488147,Industry,Industry +488146,Industry,Industry +488145,Industry,Industry +488142,Industry,Industry +488141,Industry,Industry +488139,Industry,Industry +485232,Industry,Industry +485230,Industry,Industry +485229,Industry,Industry +485226,Industry,Industry +485224,Industry,Industry +485223,Industry,Industry +485222,Industry,Industry +482250,Industry,Industry +482244,Industry,Industry +482241,Industry,Industry +482239,Industry,Industry +482237,Industry,Industry +482234,Industry,Industry +479812,Industry,Industry +478202,Industry,Industry +478201,Industry,Industry +478199,Industry,Industry +478197,Industry,Industry +478195,Industry,Industry +478194,Industry,Industry +478192,Industry,Industry +478191,Industry,Industry +478189,Industry,Industry +478188,Industry,Industry +478184,Industry,Industry +475833,Industry,Industry +475829,Industry,Industry +475818,Industry,Industry +475814,Industry,Industry +475811,Industry,Industry +473142,Industry,Industry +473132,Industry,Industry +473121,Industry,Industry +473119,Industry,Industry +473118,Industry,Industry +473115,Industry,Industry +469409,Industry,Industry +469407,Industry,Industry +469399,Industry,Industry +468380,Industry,Industry +468369,Industry,Industry +465087,Industry,Industry +465086,Industry,Industry +462742,Industry,Industry +461577,Industry,Industry +460225,Industry,Industry +459634,Industry,Industry +458632,Industry,Industry +458631,Industry,Industry +457581,Industry,Industry +456101,Industry,Industry +456099,Industry,Industry +456098,Industry,Industry +452952,Industry,Industry +452949,Industry,Industry +452948,Industry,Industry +452946,Industry,Industry +452944,Industry,Industry +452942,Industry,Industry +452940,Industry,Industry +452939,Industry,Industry +452937,Industry,Industry +452936,Industry,Industry +452934,Industry,Industry +452932,Industry,Industry +452929,Industry,Industry +452927,Industry,Industry +452926,Industry,Industry +445733,Industry,Industry +445730,Industry,Industry +445726,Industry,Industry +443188,Industry,Industry +443187,Industry,Industry +442229,Industry,Industry +442208,Industry,Industry +442197,Industry,Industry +442193,Industry,Industry +439467,Industry,Industry +439464,Industry,Industry +439460,Industry,Industry +439334,Industry,Industry +439210,Industry,Industry +439205,Industry,Industry +439196,Industry,Industry +439189,Industry,Industry +439186,Industry,Industry +439183,Industry,Industry +439174,Industry,Industry +436378,Industry,Industry +435876,Industry,Industry +435864,Industry,Industry +435863,Industry,Industry +435859,Industry,Industry +465086,Internal Trade,Internal Trade +421828,Internal Trade,Internal Trade +296849,Internal Trade,Internal Trade +400571,International Trade,International Trade +399286,International Trade,International Trade +97407,International Trade,International Trade +129084,International Trade,International Trade +194978,International Trade,International Trade +194975,International Trade,International Trade +194974,International Trade,International Trade +194972,International Trade,International Trade +194970,International Trade,International Trade +194966,International Trade,International Trade +194964,International Trade,International Trade +194957,International Trade,International Trade +194954,International Trade,International Trade +194952,International Trade,International Trade +194951,International Trade,International Trade +194946,International Trade,International Trade +194944,International Trade,International Trade +194940,International Trade,International Trade +194937,International Trade,International Trade +194935,International Trade,International Trade +273660,International Trade,International Trade +514199,International Trade,International Trade +478202,International Trade,International Trade +460225,International Trade,International Trade +439205,International Trade,International Trade +439186,International Trade,International Trade +435859,International Trade,International Trade +426713,International Trade,International Trade +416071,International Trade,International Trade +416068,International Trade,International Trade +416059,International Trade,International Trade +408200,International Trade,International Trade +405619,International Trade,International Trade +421870,Taxation and Finance,Taxation and Finance +416045,Taxation and Finance,Taxation and Finance +162164,Taxation and Finance,Taxation and Finance +162163,Taxation and Finance,Taxation and Finance +159859,Taxation and Finance,Taxation and Finance +159855,Taxation and Finance,Taxation and Finance +159852,Taxation and Finance,Taxation and Finance +159850,Taxation and Finance,Taxation and Finance +159847,Taxation and Finance,Taxation and Finance +159845,Taxation and Finance,Taxation and Finance +159841,Taxation and Finance,Taxation and Finance +159838,Taxation and Finance,Taxation and Finance +159836,Taxation and Finance,Taxation and Finance +159832,Taxation and Finance,Taxation and Finance +159830,Taxation and Finance,Taxation and Finance +159826,Taxation and Finance,Taxation and Finance +159822,Taxation and Finance,Taxation and Finance +159821,Taxation and Finance,Taxation and Finance +159817,Taxation and Finance,Taxation and Finance +159814,Taxation and Finance,Taxation and Finance +159806,Taxation and Finance,Taxation and Finance +296849,Taxation and Finance,Taxation and Finance +277504,Taxation and Finance,Taxation and Finance +269499,Taxation and Finance,Taxation and Finance +254849,Taxation and Finance,Taxation and Finance +245629,Taxation and Finance,Taxation and Finance +245610,Taxation and Finance,Taxation and Finance +245609,Taxation and Finance,Taxation and Finance +245596,Taxation and Finance,Taxation and Finance +245595,Taxation and Finance,Taxation and Finance +245594,Taxation and Finance,Taxation and Finance +410238,Taxation and Finance,Taxation and Finance +410188,Taxation and Finance,Taxation and Finance +408204,Taxation and Finance,Taxation and Finance +408203,Taxation and Finance,Taxation and Finance +344098,Taxation and Finance,Taxation and Finance +341834,Taxation and Finance,Taxation and Finance +338880,Taxation and Finance,Taxation and Finance +338878,Taxation and Finance,Taxation and Finance +338877,Taxation and Finance,Taxation and Finance +338876,Taxation and Finance,Taxation and Finance +333620,Taxation and Finance,Taxation and Finance +316609,Taxation and Finance,Taxation and Finance +540166,Taxation and Finance,Taxation and Finance +538174,Taxation and Finance,Taxation and Finance +538170,Taxation and Finance,Taxation and Finance +535621,Taxation and Finance,Taxation and Finance +535576,Taxation and Finance,Taxation and Finance +535545,Taxation and Finance,Taxation and Finance +535543,Taxation and Finance,Taxation and Finance +535540,Taxation and Finance,Taxation and Finance +535539,Taxation and Finance,Taxation and Finance +514200,Taxation and Finance,Taxation and Finance +493367,Taxation and Finance,Taxation and Finance +491607,Taxation and Finance,Taxation and Finance +475833,Taxation and Finance,Taxation and Finance +473137,Taxation and Finance,Taxation and Finance +473118,Taxation and Finance,Taxation and Finance +460225,Taxation and Finance,Taxation and Finance +445726,Taxation and Finance,Taxation and Finance +439199,Taxation and Finance,Taxation and Finance +436378,Taxation and Finance,Taxation and Finance +435864,Taxation and Finance,Taxation and Finance +435843,Taxation and Finance,Taxation and Finance +426728,Taxation and Finance,Taxation and Finance +421823,Transportation,Transportation +420206,Transportation,Transportation +114143,Transportation,Transportation +93857,Transportation,Transportation +77366,Transportation,Transportation +194975,Transportation,Transportation +194974,Transportation,Transportation +194972,Transportation,Transportation +194970,Transportation,Transportation +194966,Transportation,Transportation +194964,Transportation,Transportation +194957,Transportation,Transportation +194952,Transportation,Transportation +194951,Transportation,Transportation +194946,Transportation,Transportation +194944,Transportation,Transportation +194940,Transportation,Transportation +194937,Transportation,Transportation +194935,Transportation,Transportation +170886,Transportation,Transportation +170884,Transportation,Transportation +170866,Transportation,Transportation +159859,Transportation,Transportation +159845,Transportation,Transportation +159826,Transportation,Transportation +413664,Transportation,Transportation +408206,Transportation,Transportation +408200,Transportation,Transportation +405619,Transportation,Transportation +400571,Transportation,Transportation +388305,Transportation,Transportation +381709,Transportation,Transportation +379818,Transportation,Transportation +379810,Transportation,Transportation +379806,Transportation,Transportation +333620,Transportation,Transportation +319350,Transportation,Transportation +304695,Transportation,Transportation +304692,Transportation,Transportation +296849,Transportation,Transportation +269497,Transportation,Transportation +245630,Transportation,Transportation +245629,Transportation,Transportation +245610,Transportation,Transportation +245609,Transportation,Transportation +245596,Transportation,Transportation +245595,Transportation,Transportation +194978,Transportation,Transportation +535621,Transportation,Transportation +535585,Transportation,Transportation +535576,Transportation,Transportation +535545,Transportation,Transportation +535543,Transportation,Transportation +535540,Transportation,Transportation +535539,Transportation,Transportation +535535,Transportation,Transportation +535532,Transportation,Transportation +535529,Transportation,Transportation +535525,Transportation,Transportation +535524,Transportation,Transportation +535521,Transportation,Transportation +535518,Transportation,Transportation +535516,Transportation,Transportation +535492,Transportation,Transportation +532278,Transportation,Transportation +532276,Transportation,Transportation +529268,Transportation,Transportation +529262,Transportation,Transportation +529256,Transportation,Transportation +529252,Transportation,Transportation +529244,Transportation,Transportation +529239,Transportation,Transportation +526260,Transportation,Transportation +523111,Transportation,Transportation +514199,Transportation,Transportation +508503,Transportation,Transportation +493369,Transportation,Transportation +468385,Transportation,Transportation +468382,Transportation,Transportation +456100,Transportation,Transportation +452954,Transportation,Transportation +432560,Transportation,Transportation +431353,Transportation,Transportation +428635,Transportation,Transportation +428628,Transportation,Transportation +428609,Transportation,Transportation +426708,Transportation,Transportation +426700,Transportation,Transportation +219868,Employment and Training,Employment and Training +445092,Employment and Training,Employment and Training +219867,Employment and Training,Employment and Training +205911,Employment and Training,Employment and Training +536975,Energy,Energy +536972,Energy,Energy +85777,Energy,Energy +85776,Energy,Energy +85775,Energy,Energy +82773,Energy,Energy +82772,Energy,Energy +82768,Energy,Energy +82767,Energy,Energy +80840,Energy,Energy +79527,Energy,Energy +79523,Energy,Energy +79522,Energy,Energy +79519,Energy,Energy +118094,Energy,Energy +118080,Energy,Energy +118079,Energy,Energy +118078,Energy,Energy +118077,Energy,Energy +118076,Energy,Energy +118074,Energy,Energy +107375,Energy,Energy +99655,Energy,Energy +99634,Energy,Energy +98636,Energy,Energy +98635,Energy,Energy +98634,Energy,Energy +94205,Energy,Energy +94204,Energy,Energy +94203,Energy,Energy +94202,Energy,Energy +94198,Energy,Energy +88815,Energy,Energy +85783,Energy,Energy +85782,Energy,Energy +85781,Energy,Energy +85780,Energy,Energy +85779,Energy,Energy +85778,Energy,Energy +240976,Energy,Energy +234409,Energy,Energy +222644,Energy,Energy +222643,Energy,Energy +216247,Energy,Energy +201548,Energy,Energy +201547,Energy,Energy +201531,Energy,Energy +188485,Energy,Energy +178204,Energy,Energy +174935,Energy,Energy +172626,Energy,Energy +172624,Energy,Energy +169144,Energy,Energy +168159,Energy,Energy +168157,Energy,Energy +159711,Energy,Energy +156035,Energy,Energy +156034,Energy,Energy +156033,Energy,Energy +154088,Energy,Energy +152537,Energy,Energy +141555,Energy,Energy +141554,Energy,Energy +136219,Energy,Energy +136218,Energy,Energy +136217,Energy,Energy +136216,Energy,Energy +136215,Energy,Energy +136214,Energy,Energy +133359,Energy,Energy +133358,Energy,Energy +133356,Energy,Energy +129442,Energy,Energy +129441,Energy,Energy +129439,Energy,Energy +129438,Energy,Energy +129437,Energy,Energy +129436,Energy,Energy +129435,Energy,Energy +129434,Energy,Energy +125794,Energy,Energy +121754,Energy,Energy +118097,Energy,Energy +118096,Energy,Energy +118095,Energy,Energy +430696,Energy,Energy +430694,Energy,Energy +430687,Energy,Energy +430684,Energy,Energy +430682,Energy,Energy +430677,Energy,Energy +428968,Energy,Energy +428967,Energy,Energy +425910,Energy,Energy +423777,Energy,Energy +419268,Energy,Energy +419267,Energy,Energy +419266,Energy,Energy +419265,Energy,Energy +419264,Energy,Energy +419263,Energy,Energy +419262,Energy,Energy +412008,Energy,Energy +412007,Energy,Energy +412005,Energy,Energy +412004,Energy,Energy +401944,Energy,Energy +401937,Energy,Energy +401935,Energy,Energy +401934,Energy,Energy +399719,Energy,Energy +386904,Energy,Energy +386902,Energy,Energy +386900,Energy,Energy +386898,Energy,Energy +383100,Energy,Energy +383099,Energy,Energy +383098,Energy,Energy +383097,Energy,Energy +378624,Energy,Energy +378622,Energy,Energy +378621,Energy,Energy +378620,Energy,Energy +378618,Energy,Energy +378617,Energy,Energy +378616,Energy,Energy +378615,Energy,Energy +378614,Energy,Energy +378613,Energy,Energy +378611,Energy,Energy +378608,Energy,Energy +375982,Energy,Energy +375333,Energy,Energy +371283,Energy,Energy +368373,Energy,Energy +357378,Energy,Energy +354740,Energy,Energy +352423,Energy,Energy +342231,Energy,Energy +335364,Energy,Energy +324629,Energy,Energy +323935,Energy,Energy +323933,Energy,Energy +318906,Energy,Energy +318904,Energy,Energy +318897,Energy,Energy +318892,Energy,Energy +287589,Energy,Energy +272088,Energy,Energy +272085,Energy,Energy +272083,Energy,Energy +272080,Energy,Energy +272051,Energy,Energy +272050,Energy,Energy +272049,Energy,Energy +533722,Energy,Energy +531103,Energy,Energy +531102,Energy,Energy +531100,Energy,Energy +531098,Energy,Energy +527781,Energy,Energy +527780,Energy,Energy +524881,Energy,Energy +521885,Energy,Energy +521883,Energy,Energy +521882,Energy,Energy +521881,Energy,Energy +521880,Energy,Energy +521798,Energy,Energy +519978,Energy,Energy +519870,Energy,Energy +519760,Energy,Energy +519358,Energy,Energy +515367,Energy,Energy +513787,Energy,Energy +513786,Energy,Energy +513785,Energy,Energy +513782,Energy,Energy +513780,Energy,Energy +513779,Energy,Energy +513778,Energy,Energy +512843,Energy,Energy +512838,Energy,Energy +511231,Energy,Energy +511228,Energy,Energy +511226,Energy,Energy +511223,Energy,Energy +511219,Energy,Energy +511217,Energy,Energy +511215,Energy,Energy +511213,Energy,Energy +511207,Energy,Energy +511204,Energy,Energy +511201,Energy,Energy +511199,Energy,Energy +511197,Energy,Energy +511196,Energy,Energy +511195,Energy,Energy +511193,Energy,Energy +511126,Energy,Energy +511120,Energy,Energy +509492,Energy,Energy +504816,Energy,Energy +504768,Energy,Energy +504759,Energy,Energy +504750,Energy,Energy +504746,Energy,Energy +504738,Energy,Energy +502261,Energy,Energy +502259,Energy,Energy +502255,Energy,Energy +502254,Energy,Energy +502251,Energy,Energy +502249,Energy,Energy +502248,Energy,Energy +502246,Energy,Energy +502245,Energy,Energy +502241,Energy,Energy +502235,Energy,Energy +502232,Energy,Energy +502229,Energy,Energy +502200,Energy,Energy +502192,Energy,Energy +502183,Energy,Energy +498780,Energy,Energy +498777,Energy,Energy +498773,Energy,Energy +498768,Energy,Energy +498767,Energy,Energy +498765,Energy,Energy +498764,Energy,Energy +498762,Energy,Energy +498753,Energy,Energy +498751,Energy,Energy +498748,Energy,Energy +498746,Energy,Energy +498741,Energy,Energy +494922,Energy,Energy +494918,Energy,Energy +494916,Energy,Energy +494913,Energy,Energy +494912,Energy,Energy +494908,Energy,Energy +493327,Energy,Energy +489689,Energy,Energy +489688,Energy,Energy +489685,Energy,Energy +489682,Energy,Energy +489670,Energy,Energy +489668,Energy,Energy +489666,Energy,Energy +489663,Energy,Energy +489645,Energy,Energy +489640,Energy,Energy +489639,Energy,Energy +486434,Energy,Energy +486432,Energy,Energy +486430,Energy,Energy +486429,Energy,Energy +486428,Energy,Energy +486425,Energy,Energy +486424,Energy,Energy +486422,Energy,Energy +486421,Energy,Energy +485824,Energy,Energy +484743,Energy,Energy +484740,Energy,Energy +484735,Energy,Energy +484732,Energy,Energy +484727,Energy,Energy +484725,Energy,Energy +484721,Energy,Energy +482040,Energy,Energy +482039,Energy,Energy +482038,Energy,Energy +482037,Energy,Energy +482036,Energy,Energy +482035,Energy,Energy +479765,Energy,Energy +477452,Energy,Energy +477450,Energy,Energy +477448,Energy,Energy +475313,Energy,Energy +475311,Energy,Energy +475310,Energy,Energy +475309,Energy,Energy +475308,Energy,Energy +472665,Energy,Energy +472663,Energy,Energy +472661,Energy,Energy +472655,Energy,Energy +464697,Energy,Energy +464496,Energy,Energy +464491,Energy,Energy +464488,Energy,Energy +464483,Energy,Energy +464474,Energy,Energy +464467,Energy,Energy +464464,Energy,Energy +464459,Energy,Energy +464456,Energy,Energy +464452,Energy,Energy +464450,Energy,Energy +464446,Energy,Energy +464441,Energy,Energy +464437,Energy,Energy +462796,Energy,Energy +462794,Energy,Energy +460522,Energy,Energy +459978,Energy,Energy +459451,Energy,Energy +459450,Energy,Energy +459446,Energy,Energy +458370,Energy,Energy +458369,Energy,Energy +455198,Energy,Energy +455197,Energy,Energy +455196,Energy,Energy +455194,Energy,Energy +455184,Energy,Energy +455183,Energy,Energy +455181,Energy,Energy +455180,Energy,Energy +455178,Energy,Energy +455176,Energy,Energy +455174,Energy,Energy +455171,Energy,Energy +455169,Energy,Energy +449895,Energy,Energy +449893,Energy,Energy +449891,Energy,Energy +449890,Energy,Energy +449881,Energy,Energy +449874,Energy,Energy +447782,Energy,Energy +447779,Energy,Energy +445091,Energy,Energy +445090,Energy,Energy +438004,Energy,Energy +438002,Energy,Energy +438001,Energy,Energy +437997,Energy,Energy +437996,Energy,Energy +437993,Energy,Energy +437991,Energy,Energy +437990,Energy,Energy +437989,Energy,Energy +437988,Energy,Energy +437987,Energy,Energy +437985,Energy,Energy +437984,Energy,Energy +437983,Energy,Energy +437982,Energy,Energy +437980,Energy,Energy +437976,Energy,Energy +437970,Energy,Energy +435187,Energy,Energy +435184,Energy,Energy +433653,Energy,Energy +433651,Energy,Energy +433649,Energy,Energy +433647,Energy,Energy +432291,Energy,Energy +432290,Energy,Energy +432288,Energy,Energy +432287,Energy,Energy +432284,Energy,Energy +543753,Energy,Energy +541847,Energy,Energy +541267,Energy,Energy +541266,Energy,Energy +541264,Energy,Energy +541262,Energy,Energy +541258,Energy,Energy +539624,Energy,Energy +539623,Energy,Energy +539622,Energy,Energy +539621,Energy,Energy +539620,Energy,Energy +539619,Energy,Energy +539617,Energy,Energy +524881,Environment,Environment +504816,Environment,Environment +85779,Environment,Environment +85778,Environment,Environment +85777,Environment,Environment +85774,Environment,Environment +82771,Environment,Environment +82768,Environment,Environment +82767,Environment,Environment +80840,Environment,Environment +79528,Environment,Environment +79526,Environment,Environment +79525,Environment,Environment +79524,Environment,Environment +150001,Environment,Environment +150000,Environment,Environment +149999,Environment,Environment +145424,Environment,Environment +125794,Environment,Environment +118095,Environment,Environment +118094,Environment,Environment +118080,Environment,Environment +118079,Environment,Environment +118078,Environment,Environment +118077,Environment,Environment +118075,Environment,Environment +109134,Environment,Environment +107374,Environment,Environment +99654,Environment,Environment +99635,Environment,Environment +94201,Environment,Environment +90775,Environment,Environment +88814,Environment,Environment +85783,Environment,Environment +85782,Environment,Environment +85781,Environment,Environment +85780,Environment,Environment +201493,Environment,Environment +185624,Environment,Environment +174933,Environment,Environment +172625,Environment,Environment +169144,Environment,Environment +169084,Environment,Environment +168158,Environment,Environment +168155,Environment,Environment +399719,Environment,Environment +386904,Environment,Environment +386902,Environment,Environment +386900,Environment,Environment +386898,Environment,Environment +383100,Environment,Environment +383099,Environment,Environment +383098,Environment,Environment +383097,Environment,Environment +382126,Environment,Environment +368373,Environment,Environment +504768,Environment,Environment +504759,Environment,Environment +504750,Environment,Environment +504746,Environment,Environment +504738,Environment,Environment +498751,Environment,Environment +498741,Environment,Environment +489688,Environment,Environment +486422,Environment,Environment +486421,Environment,Environment +485824,Environment,Environment +467292,Environment,Environment +464496,Environment,Environment +464491,Environment,Environment +464488,Environment,Environment +464483,Environment,Environment +464474,Environment,Environment +464467,Environment,Environment +464464,Environment,Environment +464459,Environment,Environment +464452,Environment,Environment +464446,Environment,Environment +464441,Environment,Environment +464437,Environment,Environment +459978,Environment,Environment +459451,Environment,Environment +459450,Environment,Environment +459446,Environment,Environment +455166,Environment,Environment +438004,Environment,Environment +438002,Environment,Environment +438001,Environment,Environment +437997,Environment,Environment +437996,Environment,Environment +437993,Environment,Environment +437991,Environment,Environment +437990,Environment,Environment +437989,Environment,Environment +437988,Environment,Environment +432289,Environment,Environment +430698,Environment,Environment +425916,Environment,Environment +425913,Environment,Environment +425885,Environment,Environment +423788,Environment,Environment +423781,Environment,Environment +423777,Environment,Environment +419268,Environment,Environment +419267,Environment,Environment +419266,Environment,Environment +419265,Environment,Environment +419264,Environment,Environment +419263,Environment,Environment +419262,Environment,Environment +412003,Environment,Environment +401944,Environment,Environment +539624,Environment,Environment +539623,Environment,Environment +533722,Environment,Environment +531103,Environment,Environment +531102,Environment,Environment +531100,Environment,Environment +531098,Environment,Environment +513778,Infrastructure,Infrastructure +512843,Infrastructure,Infrastructure +512838,Infrastructure,Infrastructure +511228,Infrastructure,Infrastructure +511226,Infrastructure,Infrastructure +511223,Infrastructure,Infrastructure +511219,Infrastructure,Infrastructure +511217,Infrastructure,Infrastructure +511215,Infrastructure,Infrastructure +511213,Infrastructure,Infrastructure +511207,Infrastructure,Infrastructure +511204,Infrastructure,Infrastructure +511201,Infrastructure,Infrastructure +511196,Infrastructure,Infrastructure +511195,Infrastructure,Infrastructure +511193,Infrastructure,Infrastructure +511120,Infrastructure,Infrastructure +502261,Infrastructure,Infrastructure +502259,Infrastructure,Infrastructure +502255,Infrastructure,Infrastructure +502254,Infrastructure,Infrastructure +502251,Infrastructure,Infrastructure +502249,Infrastructure,Infrastructure +502248,Infrastructure,Infrastructure +502246,Infrastructure,Infrastructure +502245,Infrastructure,Infrastructure +502241,Infrastructure,Infrastructure +498780,Infrastructure,Infrastructure +498777,Infrastructure,Infrastructure +498773,Infrastructure,Infrastructure +498768,Infrastructure,Infrastructure +498767,Infrastructure,Infrastructure +498764,Infrastructure,Infrastructure +498762,Infrastructure,Infrastructure +498753,Infrastructure,Infrastructure +498748,Infrastructure,Infrastructure +498746,Infrastructure,Infrastructure +498741,Infrastructure,Infrastructure +494918,Infrastructure,Infrastructure +494916,Infrastructure,Infrastructure +494912,Infrastructure,Infrastructure +494908,Infrastructure,Infrastructure +493327,Infrastructure,Infrastructure +489689,Infrastructure,Infrastructure +489645,Infrastructure,Infrastructure +486434,Infrastructure,Infrastructure +486430,Infrastructure,Infrastructure +486429,Infrastructure,Infrastructure +486428,Infrastructure,Infrastructure +486424,Infrastructure,Infrastructure +484740,Infrastructure,Infrastructure +484732,Infrastructure,Infrastructure +484727,Infrastructure,Infrastructure +484721,Infrastructure,Infrastructure +482040,Infrastructure,Infrastructure +482039,Infrastructure,Infrastructure +482038,Infrastructure,Infrastructure +482037,Infrastructure,Infrastructure +482036,Infrastructure,Infrastructure +479765,Infrastructure,Infrastructure +477452,Infrastructure,Infrastructure +477448,Infrastructure,Infrastructure +475313,Infrastructure,Infrastructure +475311,Infrastructure,Infrastructure +475309,Infrastructure,Infrastructure +475308,Infrastructure,Infrastructure +472665,Infrastructure,Infrastructure +472663,Infrastructure,Infrastructure +472661,Infrastructure,Infrastructure +472655,Infrastructure,Infrastructure +543753,Infrastructure,Infrastructure +541264,Infrastructure,Infrastructure +541262,Infrastructure,Infrastructure +541258,Infrastructure,Infrastructure +539622,Infrastructure,Infrastructure +539621,Infrastructure,Infrastructure +539620,Infrastructure,Infrastructure +539619,Infrastructure,Infrastructure +539617,Infrastructure,Infrastructure +536976,Infrastructure,Infrastructure +536975,Infrastructure,Infrastructure +536972,Infrastructure,Infrastructure +521885,Infrastructure,Infrastructure +521883,Infrastructure,Infrastructure +521882,Infrastructure,Infrastructure +521881,Infrastructure,Infrastructure +521880,Infrastructure,Infrastructure +521798,Infrastructure,Infrastructure +519870,Infrastructure,Infrastructure +519358,Infrastructure,Infrastructure +347338,Consumer Issues,Consumer Issues +330026,Consumer Issues,Consumer Issues +124774,Consumer Issues,Consumer Issues +189561,Consumer Issues,Consumer Issues +159303,Consumer Issues,Consumer Issues +159298,Consumer Issues,Consumer Issues +330025,Consumer Issues,Consumer Issues +330024,Consumer Issues,Consumer Issues +330023,Consumer Issues,Consumer Issues +330022,Consumer Issues,Consumer Issues +327099,Consumer Issues,Consumer Issues +286671,Consumer Issues,Consumer Issues +286670,Consumer Issues,Consumer Issues +286669,Consumer Issues,Consumer Issues +217528,Consumer Issues,Consumer Issues +217515,Consumer Issues,Consumer Issues +217513,Consumer Issues,Consumer Issues +217512,Consumer Issues,Consumer Issues +418385,Consumer Issues,Consumer Issues +418384,Consumer Issues,Consumer Issues +418136,Consumer Issues,Consumer Issues +418134,Consumer Issues,Consumer Issues +416854,Consumer Issues,Consumer Issues +416850,Consumer Issues,Consumer Issues +416847,Consumer Issues,Consumer Issues +416844,Consumer Issues,Consumer Issues +416841,Consumer Issues,Consumer Issues +416839,Consumer Issues,Consumer Issues +404212,Consumer Issues,Consumer Issues +404210,Consumer Issues,Consumer Issues +400879,Consumer Issues,Consumer Issues +400876,Consumer Issues,Consumer Issues +400872,Consumer Issues,Consumer Issues +400870,Consumer Issues,Consumer Issues +400864,Consumer Issues,Consumer Issues +396368,Consumer Issues,Consumer Issues +396366,Consumer Issues,Consumer Issues +396365,Consumer Issues,Consumer Issues +396039,Consumer Issues,Consumer Issues +380047,Consumer Issues,Consumer Issues +379175,Consumer Issues,Consumer Issues +379170,Consumer Issues,Consumer Issues +372009,Consumer Issues,Consumer Issues +372006,Consumer Issues,Consumer Issues +372003,Consumer Issues,Consumer Issues +353862,Consumer Issues,Consumer Issues +349310,Consumer Issues,Consumer Issues +349309,Consumer Issues,Consumer Issues +400864,Financial Institutions,Financial Institutions +396368,Financial Institutions,Financial Institutions +159303,Financial Institutions,Financial Institutions +159298,Financial Institutions,Financial Institutions +124774,Financial Institutions,Financial Institutions +286671,Financial Institutions,Financial Institutions +286670,Financial Institutions,Financial Institutions +286669,Financial Institutions,Financial Institutions +259570,Financial Institutions,Financial Institutions +259569,Financial Institutions,Financial Institutions +217528,Financial Institutions,Financial Institutions +217515,Financial Institutions,Financial Institutions +217513,Financial Institutions,Financial Institutions +217512,Financial Institutions,Financial Institutions +212041,Financial Institutions,Financial Institutions +189561,Financial Institutions,Financial Institutions +396366,Financial Institutions,Financial Institutions +396365,Financial Institutions,Financial Institutions +396039,Financial Institutions,Financial Institutions +394073,Financial Institutions,Financial Institutions +388068,Financial Institutions,Financial Institutions +379175,Financial Institutions,Financial Institutions +379170,Financial Institutions,Financial Institutions +372009,Financial Institutions,Financial Institutions +372006,Financial Institutions,Financial Institutions +372003,Financial Institutions,Financial Institutions +353862,Financial Institutions,Financial Institutions +349310,Financial Institutions,Financial Institutions +349309,Financial Institutions,Financial Institutions +349308,Financial Institutions,Financial Institutions +347338,Financial Institutions,Financial Institutions +335343,Financial Institutions,Financial Institutions +335341,Financial Institutions,Financial Institutions +330026,Financial Institutions,Financial Institutions +330025,Financial Institutions,Financial Institutions +330024,Financial Institutions,Financial Institutions +330023,Financial Institutions,Financial Institutions +330022,Financial Institutions,Financial Institutions +327100,Financial Institutions,Financial Institutions +327099,Financial Institutions,Financial Institutions +418387,Financial Institutions,Financial Institutions +418385,Financial Institutions,Financial Institutions +418384,Financial Institutions,Financial Institutions +418136,Financial Institutions,Financial Institutions +418134,Financial Institutions,Financial Institutions +416854,Financial Institutions,Financial Institutions +416850,Financial Institutions,Financial Institutions +416847,Financial Institutions,Financial Institutions +416844,Financial Institutions,Financial Institutions +416841,Financial Institutions,Financial Institutions +416839,Financial Institutions,Financial Institutions +404212,Financial Institutions,Financial Institutions +404210,Financial Institutions,Financial Institutions +400879,Financial Institutions,Financial Institutions +400876,Financial Institutions,Financial Institutions +400872,Financial Institutions,Financial Institutions +379175,Industry,Industry +379170,Industry,Industry +330026,Industry,Industry +330025,Industry,Industry +330024,Industry,Industry +330023,Industry,Industry +330022,Industry,Industry +286671,Industry,Industry +286670,Industry,Industry +286669,Industry,Industry +212041,Industry,Industry +207145,Industry,Industry +404212,Industry,Industry +189561,Taxation and Finance,Taxation and Finance +157284,Taxation and Finance,Taxation and Finance +157276,Taxation and Finance,Taxation and Finance +107914,Energy,Energy +169945,Energy,Energy +169944,Energy,Energy +167074,Energy,Energy +199910,Mining,Mining +199900,Mining,Mining +81923,Mining,Mining +77658,Mining,Mining +169945,Mining,Mining +169944,Mining,Mining +128635,Mining,Mining +121356,Mining,Mining +249263,Mining,Mining +249262,Mining,Mining +249261,Mining,Mining +249259,Mining,Mining +522089,Employment and Training,Employment and Training +522088,Employment and Training,Employment and Training +357667,Employment and Training,Employment and Training +335576,Employment and Training,Employment and Training +333749,Employment and Training,Employment and Training +148156,Employment and Training,Employment and Training +459541,Employment and Training,Employment and Training +452542,Employment and Training,Employment and Training +428649,Employment and Training,Employment and Training +424011,Employment and Training,Employment and Training +423879,Employment and Training,Employment and Training +422751,Employment and Training,Employment and Training +404357,Employment and Training,Employment and Training +403031,Employment and Training,Employment and Training +400056,Employment and Training,Employment and Training +399506,Employment and Training,Employment and Training +398034,Employment and Training,Employment and Training +393292,Employment and Training,Employment and Training +393291,Employment and Training,Employment and Training +526156,Employment and Training,Employment and Training +526133,Employment and Training,Employment and Training +526126,Employment and Training,Employment and Training +522096,Employment and Training,Employment and Training +522095,Employment and Training,Employment and Training +522094,Employment and Training,Employment and Training +522093,Employment and Training,Employment and Training +522092,Employment and Training,Employment and Training +522091,Employment and Training,Employment and Training +490332,Health,Health +481774,Health,Health +262476,Health,Health +262472,Health,Health +211728,Health,Health +187704,Health,Health +184384,Health,Health +172465,Health,Health +148156,Health,Health +349998,Health,Health +340274,Health,Health +339415,Health,Health +319731,Health,Health +311750,Health,Health +290310,Health,Health +263462,Health,Health +262483,Health,Health +262482,Health,Health +262481,Health,Health +262479,Health,Health +262478,Health,Health +262477,Health,Health +481771,Health,Health +481766,Health,Health +480118,Health,Health +477477,Health,Health +466725,Health,Health +432319,Health,Health +430442,Health,Health +425908,Health,Health +420237,Health,Health +420235,Health,Health +418129,Health,Health +415180,Health,Health +415061,Health,Health +403026,Health,Health +399506,Health,Health +397713,Health,Health +525716,Health,Health +459538,Industry,Industry +459534,Industry,Industry +148156,Industry,Industry +97318,Industry,Industry +203628,Industry,Industry +432319,Industry,Industry +430441,Industry,Industry +423994,Industry,Industry +420236,Industry,Industry +420235,Industry,Industry +538187,Industry,Industry +531566,Industry,Industry +526156,Industry,Industry +526144,Industry,Industry +526133,Industry,Industry +526126,Industry,Industry +525716,Industry,Industry +522096,Industry,Industry +522095,Industry,Industry +522094,Industry,Industry +522093,Industry,Industry +522092,Industry,Industry +522091,Industry,Industry +522090,Industry,Industry +522089,Industry,Industry +522088,Industry,Industry +522087,Industry,Industry +510014,Industry,Industry +501209,Industry,Industry +495318,Industry,Industry +491272,Industry,Industry +490332,Industry,Industry +486485,Industry,Industry +484225,Industry,Industry +481774,Industry,Industry +481771,Industry,Industry +481766,Industry,Industry +480118,Industry,Industry +477477,Industry,Industry +473563,Industry,Industry +466725,Industry,Industry +460060,Industry,Industry +460059,Industry,Industry +460058,Industry,Industry +460057,Industry,Industry +459544,Industry,Industry +352245,International Trade,International Trade +352244,International Trade,International Trade +97318,International Trade,International Trade +85760,International Trade,International Trade +85759,International Trade,International Trade +85757,International Trade,International Trade +85756,International Trade,International Trade +85755,International Trade,International Trade +76294,International Trade,International Trade +158628,International Trade,International Trade +157552,International Trade,International Trade +157551,International Trade,International Trade +157550,International Trade,International Trade +157549,International Trade,International Trade +157533,International Trade,International Trade +151297,International Trade,International Trade +148156,International Trade,International Trade +223944,International Trade,International Trade +223940,International Trade,International Trade +223939,International Trade,International Trade +223938,International Trade,International Trade +223937,International Trade,International Trade +217368,International Trade,International Trade +217367,International Trade,International Trade +214847,International Trade,International Trade +211728,International Trade,International Trade +211727,International Trade,International Trade +209187,International Trade,International Trade +209172,International Trade,International Trade +209171,International Trade,International Trade +209170,International Trade,International Trade +209169,International Trade,International Trade +209167,International Trade,International Trade +203628,International Trade,International Trade +190664,International Trade,International Trade +190424,International Trade,International Trade +190224,International Trade,International Trade +190204,International Trade,International Trade +184384,International Trade,International Trade +183084,International Trade,International Trade +174744,International Trade,International Trade +174204,International Trade,International Trade +173885,International Trade,International Trade +173884,International Trade,International Trade +172704,International Trade,International Trade +172465,International Trade,International Trade +172464,International Trade,International Trade +169546,International Trade,International Trade +167264,International Trade,International Trade +167184,International Trade,International Trade +160688,International Trade,International Trade +352243,International Trade,International Trade +352242,International Trade,International Trade +352241,International Trade,International Trade +350299,International Trade,International Trade +350071,International Trade,International Trade +350013,International Trade,International Trade +350012,International Trade,International Trade +350011,International Trade,International Trade +350010,International Trade,International Trade +350009,International Trade,International Trade +350008,International Trade,International Trade +350007,International Trade,International Trade +350006,International Trade,International Trade +350005,International Trade,International Trade +350004,International Trade,International Trade +350003,International Trade,International Trade +350002,International Trade,International Trade +350001,International Trade,International Trade +349998,International Trade,International Trade +349251,International Trade,International Trade +347698,International Trade,International Trade +344882,International Trade,International Trade +340274,International Trade,International Trade +335582,International Trade,International Trade +335581,International Trade,International Trade +335579,International Trade,International Trade +335578,International Trade,International Trade +333769,International Trade,International Trade +333749,International Trade,International Trade +323489,International Trade,International Trade +323051,International Trade,International Trade +323050,International Trade,International Trade +323049,International Trade,International Trade +319742,International Trade,International Trade +319741,International Trade,International Trade +319740,International Trade,International Trade +319739,International Trade,International Trade +319738,International Trade,International Trade +319737,International Trade,International Trade +319736,International Trade,International Trade +319735,International Trade,International Trade +319734,International Trade,International Trade +319733,International Trade,International Trade +319732,International Trade,International Trade +319731,International Trade,International Trade +319730,International Trade,International Trade +311755,International Trade,International Trade +311754,International Trade,International Trade +311753,International Trade,International Trade +311752,International Trade,International Trade +311751,International Trade,International Trade +306635,International Trade,International Trade +302249,International Trade,International Trade +290310,International Trade,International Trade +290309,International Trade,International Trade +283969,International Trade,International Trade +280792,International Trade,International Trade +280789,International Trade,International Trade +271789,International Trade,International Trade +267191,International Trade,International Trade +265691,International Trade,International Trade +265689,International Trade,International Trade +263462,International Trade,International Trade +262483,International Trade,International Trade +262482,International Trade,International Trade +262481,International Trade,International Trade +262479,International Trade,International Trade +262478,International Trade,International Trade +262477,International Trade,International Trade +262476,International Trade,International Trade +262475,International Trade,International Trade +262474,International Trade,International Trade +262472,International Trade,International Trade +262471,International Trade,International Trade +262470,International Trade,International Trade +262469,International Trade,International Trade +257309,International Trade,International Trade +257231,International Trade,International Trade +257229,International Trade,International Trade +255869,International Trade,International Trade +254729,International Trade,International Trade +247073,International Trade,International Trade +247072,International Trade,International Trade +247071,International Trade,International Trade +247070,International Trade,International Trade +247069,International Trade,International Trade +241570,International Trade,International Trade +241569,International Trade,International Trade +236309,International Trade,International Trade +236053,International Trade,International Trade +236052,International Trade,International Trade +236051,International Trade,International Trade +226628,International Trade,International Trade +226588,International Trade,International Trade +226419,International Trade,International Trade +225669,International Trade,International Trade +538187,International Trade,International Trade +533689,International Trade,International Trade +533687,International Trade,International Trade +525721,International Trade,International Trade +525701,International Trade,International Trade +522087,International Trade,International Trade +519668,International Trade,International Trade +519663,International Trade,International Trade +518383,International Trade,International Trade +518377,International Trade,International Trade +510014,International Trade,International Trade +501209,International Trade,International Trade +492849,International Trade,International Trade +490332,International Trade,International Trade +486485,International Trade,International Trade +484225,International Trade,International Trade +481774,International Trade,International Trade +481771,International Trade,International Trade +481766,International Trade,International Trade +480118,International Trade,International Trade +466725,International Trade,International Trade +460060,International Trade,International Trade +460059,International Trade,International Trade +460058,International Trade,International Trade +460057,International Trade,International Trade +459538,International Trade,International Trade +459534,International Trade,International Trade +458605,International Trade,International Trade +435606,International Trade,International Trade +435604,International Trade,International Trade +435596,International Trade,International Trade +430441,International Trade,International Trade +428648,International Trade,International Trade +428640,International Trade,International Trade +422751,International Trade,International Trade +422372,International Trade,International Trade +422361,International Trade,International Trade +422357,International Trade,International Trade +420236,International Trade,International Trade +418129,International Trade,International Trade +411579,International Trade,International Trade +411563,International Trade,International Trade +408682,International Trade,International Trade +408681,International Trade,International Trade +408443,International Trade,International Trade +408441,International Trade,International Trade +408432,International Trade,International Trade +405924,International Trade,International Trade +404357,International Trade,International Trade +403030,International Trade,International Trade +403028,International Trade,International Trade +403026,International Trade,International Trade +400056,International Trade,International Trade +399506,International Trade,International Trade +398619,International Trade,International Trade +397776,International Trade,International Trade +397712,International Trade,International Trade +397711,International Trade,International Trade +394908,International Trade,International Trade +394906,International Trade,International Trade +391833,International Trade,International Trade +389881,International Trade,International Trade +389875,International Trade,International Trade +385888,International Trade,International Trade +385887,International Trade,International Trade +382932,International Trade,International Trade +382931,International Trade,International Trade +380956,International Trade,International Trade +380068,International Trade,International Trade +376348,International Trade,International Trade +376334,International Trade,International Trade +376330,International Trade,International Trade +376329,International Trade,International Trade +376328,International Trade,International Trade +373273,International Trade,International Trade +371514,International Trade,International Trade +371501,International Trade,International Trade +371500,International Trade,International Trade +371498,International Trade,International Trade +371496,International Trade,International Trade +371415,International Trade,International Trade +370081,International Trade,International Trade +370078,International Trade,International Trade +370075,International Trade,International Trade +368860,International Trade,International Trade +368010,International Trade,International Trade +367996,International Trade,International Trade +364627,International Trade,International Trade +364505,International Trade,International Trade +364504,International Trade,International Trade +364503,International Trade,International Trade +361763,International Trade,International Trade +361762,International Trade,International Trade +359290,International Trade,International Trade +359289,International Trade,International Trade +358844,International Trade,International Trade +358843,International Trade,International Trade +358842,International Trade,International Trade +357667,International Trade,International Trade +356836,International Trade,International Trade +355867,International Trade,International Trade +355865,International Trade,International Trade +355864,International Trade,International Trade +355860,International Trade,International Trade +354822,International Trade,International Trade +352247,International Trade,International Trade +335579,Taxation and Finance,Taxation and Finance +335578,Taxation and Finance,Taxation and Finance +172465,Taxation and Finance,Taxation and Finance +148156,Taxation and Finance,Taxation and Finance +319742,Taxation and Finance,Taxation and Finance +311755,Taxation and Finance,Taxation and Finance +311754,Taxation and Finance,Taxation and Finance +311753,Taxation and Finance,Taxation and Finance +311752,Taxation and Finance,Taxation and Finance +311751,Taxation and Finance,Taxation and Finance +350004,Taxation and Finance,Taxation and Finance +340274,Taxation and Finance,Taxation and Finance +393252,Taxation and Finance,Taxation and Finance +381823,Taxation and Finance,Taxation and Finance +182304,Taxation and Finance,Taxation and Finance +397350,Taxation and Finance,Taxation and Finance +397349,Taxation and Finance,Taxation and Finance +182304,Tourism,Tourism +369190,Tourism,Tourism +224032,Tourism,Tourism +426018,Transportation,Transportation +425501,Transportation,Transportation +84991,Transportation,Transportation +79035,Transportation,Transportation +132551,Transportation,Transportation +229010,Transportation,Transportation +229009,Transportation,Transportation +228829,Transportation,Transportation +224038,Transportation,Transportation +224036,Transportation,Transportation +224032,Transportation,Transportation +224029,Transportation,Transportation +209127,Transportation,Transportation +199870,Transportation,Transportation +197141,Transportation,Transportation +197138,Transportation,Transportation +197133,Transportation,Transportation +197130,Transportation,Transportation +197128,Transportation,Transportation +182344,Transportation,Transportation +182304,Transportation,Transportation +328457,Transportation,Transportation +328455,Transportation,Transportation +328453,Transportation,Transportation +328452,Transportation,Transportation +319795,Transportation,Transportation +319793,Transportation,Transportation +317269,Transportation,Transportation +317254,Transportation,Transportation +317253,Transportation,Transportation +317251,Transportation,Transportation +317250,Transportation,Transportation +317249,Transportation,Transportation +311199,Transportation,Transportation +311197,Transportation,Transportation +311195,Transportation,Transportation +311193,Transportation,Transportation +311192,Transportation,Transportation +311191,Transportation,Transportation +302630,Transportation,Transportation +302629,Transportation,Transportation +292371,Transportation,Transportation +292369,Transportation,Transportation +290791,Transportation,Transportation +284474,Transportation,Transportation +284351,Transportation,Transportation +284350,Transportation,Transportation +284349,Transportation,Transportation +283209,Transportation,Transportation +260733,Transportation,Transportation +260731,Transportation,Transportation +248131,Transportation,Transportation +242254,Transportation,Transportation +242252,Transportation,Transportation +240258,Transportation,Transportation +239729,Transportation,Transportation +423793,Transportation,Transportation +423787,Transportation,Transportation +420410,Transportation,Transportation +419468,Transportation,Transportation +419467,Transportation,Transportation +419465,Transportation,Transportation +415541,Transportation,Transportation +415504,Transportation,Transportation +415502,Transportation,Transportation +415499,Transportation,Transportation +415497,Transportation,Transportation +415494,Transportation,Transportation +415488,Transportation,Transportation +415484,Transportation,Transportation +412460,Transportation,Transportation +412459,Transportation,Transportation +412458,Transportation,Transportation +410334,Transportation,Transportation +410333,Transportation,Transportation +410332,Transportation,Transportation +410331,Transportation,Transportation +407732,Transportation,Transportation +406052,Transportation,Transportation +402964,Transportation,Transportation +402959,Transportation,Transportation +401212,Transportation,Transportation +401210,Transportation,Transportation +401204,Transportation,Transportation +400277,Transportation,Transportation +399321,Transportation,Transportation +399320,Transportation,Transportation +398641,Transportation,Transportation +398633,Transportation,Transportation +398625,Transportation,Transportation +398613,Transportation,Transportation +398610,Transportation,Transportation +397350,Transportation,Transportation +397349,Transportation,Transportation +397347,Transportation,Transportation +396084,Transportation,Transportation +393252,Transportation,Transportation +390023,Transportation,Transportation +390020,Transportation,Transportation +389054,Transportation,Transportation +388957,Transportation,Transportation +388953,Transportation,Transportation +388779,Transportation,Transportation +386988,Transportation,Transportation +386987,Transportation,Transportation +386986,Transportation,Transportation +386044,Transportation,Transportation +386043,Transportation,Transportation +386042,Transportation,Transportation +386041,Transportation,Transportation +386040,Transportation,Transportation +386039,Transportation,Transportation +383370,Transportation,Transportation +381823,Transportation,Transportation +381037,Transportation,Transportation +380955,Transportation,Transportation +379698,Transportation,Transportation +379696,Transportation,Transportation +376933,Transportation,Transportation +376928,Transportation,Transportation +374739,Transportation,Transportation +374180,Transportation,Transportation +374175,Transportation,Transportation +371869,Transportation,Transportation +371867,Transportation,Transportation +371865,Transportation,Transportation +371859,Transportation,Transportation +369190,Transportation,Transportation +369188,Transportation,Transportation +369181,Transportation,Transportation +366983,Transportation,Transportation +362124,Transportation,Transportation +361002,Transportation,Transportation +359288,Transportation,Transportation +359287,Transportation,Transportation +357663,Transportation,Transportation +355334,Transportation,Transportation +355331,Transportation,Transportation +355329,Transportation,Transportation +355327,Transportation,Transportation +355326,Transportation,Transportation +355324,Transportation,Transportation +355323,Transportation,Transportation +355322,Transportation,Transportation +348770,Transportation,Transportation +348769,Transportation,Transportation +348768,Transportation,Transportation +348766,Transportation,Transportation +347880,Transportation,Transportation +347879,Transportation,Transportation +340601,Transportation,Transportation +340597,Transportation,Transportation +334530,Transportation,Transportation +334529,Transportation,Transportation +331583,Transportation,Transportation +331582,Transportation,Transportation +330706,Transportation,Transportation +544452,Transportation,Transportation +543673,Transportation,Transportation +541812,Transportation,Transportation +541810,Transportation,Transportation +541808,Transportation,Transportation +540120,Transportation,Transportation +535475,Transportation,Transportation +535473,Transportation,Transportation +535469,Transportation,Transportation +535465,Transportation,Transportation +535462,Transportation,Transportation +528292,Transportation,Transportation +528290,Transportation,Transportation +528285,Transportation,Transportation +528284,Transportation,Transportation +528282,Transportation,Transportation +528281,Transportation,Transportation +528238,Transportation,Transportation +528237,Transportation,Transportation +528235,Transportation,Transportation +528234,Transportation,Transportation +528232,Transportation,Transportation +528228,Transportation,Transportation +528225,Transportation,Transportation +528223,Transportation,Transportation +528222,Transportation,Transportation +528219,Transportation,Transportation +528205,Transportation,Transportation +528204,Transportation,Transportation +528202,Transportation,Transportation +527001,Transportation,Transportation +527000,Transportation,Transportation +526999,Transportation,Transportation +526998,Transportation,Transportation +521187,Transportation,Transportation +521186,Transportation,Transportation +519269,Transportation,Transportation +519266,Transportation,Transportation +517197,Transportation,Transportation +517195,Transportation,Transportation +517192,Transportation,Transportation +517177,Transportation,Transportation +517176,Transportation,Transportation +515197,Transportation,Transportation +514573,Transportation,Transportation +514568,Transportation,Transportation +513268,Transportation,Transportation +512541,Transportation,Transportation +512539,Transportation,Transportation +512537,Transportation,Transportation +512536,Transportation,Transportation +512535,Transportation,Transportation +512533,Transportation,Transportation +511799,Transportation,Transportation +510932,Transportation,Transportation +510091,Transportation,Transportation +510080,Transportation,Transportation +507887,Transportation,Transportation +507879,Transportation,Transportation +507874,Transportation,Transportation +507867,Transportation,Transportation +504306,Transportation,Transportation +504301,Transportation,Transportation +504298,Transportation,Transportation +504295,Transportation,Transportation +501469,Transportation,Transportation +501468,Transportation,Transportation +501465,Transportation,Transportation +501463,Transportation,Transportation +501461,Transportation,Transportation +501453,Transportation,Transportation +501452,Transportation,Transportation +498941,Transportation,Transportation +498940,Transportation,Transportation +498938,Transportation,Transportation +498919,Transportation,Transportation +498917,Transportation,Transportation +495026,Transportation,Transportation +495023,Transportation,Transportation +495020,Transportation,Transportation +495019,Transportation,Transportation +493017,Transportation,Transportation +493014,Transportation,Transportation +489939,Transportation,Transportation +489934,Transportation,Transportation +489932,Transportation,Transportation +489893,Transportation,Transportation +489890,Transportation,Transportation +489889,Transportation,Transportation +489887,Transportation,Transportation +489886,Transportation,Transportation +489885,Transportation,Transportation +489883,Transportation,Transportation +489880,Transportation,Transportation +489879,Transportation,Transportation +489877,Transportation,Transportation +489876,Transportation,Transportation +489871,Transportation,Transportation +489870,Transportation,Transportation +489868,Transportation,Transportation +489866,Transportation,Transportation +489865,Transportation,Transportation +489861,Transportation,Transportation +489853,Transportation,Transportation +489851,Transportation,Transportation +489850,Transportation,Transportation +489849,Transportation,Transportation +489845,Transportation,Transportation +487411,Transportation,Transportation +487410,Transportation,Transportation +487409,Transportation,Transportation +487407,Transportation,Transportation +483947,Transportation,Transportation +483942,Transportation,Transportation +483940,Transportation,Transportation +483938,Transportation,Transportation +483937,Transportation,Transportation +483936,Transportation,Transportation +483934,Transportation,Transportation +481779,Transportation,Transportation +481754,Transportation,Transportation +481748,Transportation,Transportation +481745,Transportation,Transportation +481742,Transportation,Transportation +479457,Transportation,Transportation +479453,Transportation,Transportation +477846,Transportation,Transportation +477843,Transportation,Transportation +477840,Transportation,Transportation +477479,Transportation,Transportation +477475,Transportation,Transportation +477472,Transportation,Transportation +477445,Transportation,Transportation +477435,Transportation,Transportation +477411,Transportation,Transportation +477408,Transportation,Transportation +477400,Transportation,Transportation +475733,Transportation,Transportation +475730,Transportation,Transportation +475706,Transportation,Transportation +475685,Transportation,Transportation +473369,Transportation,Transportation +473365,Transportation,Transportation +473361,Transportation,Transportation +473292,Transportation,Transportation +473283,Transportation,Transportation +470242,Transportation,Transportation +470162,Transportation,Transportation +470161,Transportation,Transportation +470158,Transportation,Transportation +470157,Transportation,Transportation +467022,Transportation,Transportation +466935,Transportation,Transportation +466933,Transportation,Transportation +466922,Transportation,Transportation +466913,Transportation,Transportation +466908,Transportation,Transportation +466907,Transportation,Transportation +466902,Transportation,Transportation +466888,Transportation,Transportation +466885,Transportation,Transportation +464168,Transportation,Transportation +464167,Transportation,Transportation +461828,Transportation,Transportation +461827,Transportation,Transportation +459463,Transportation,Transportation +459028,Transportation,Transportation +458980,Transportation,Transportation +458971,Transportation,Transportation +458970,Transportation,Transportation +458968,Transportation,Transportation +458967,Transportation,Transportation +458966,Transportation,Transportation +457133,Transportation,Transportation +457132,Transportation,Transportation +457125,Transportation,Transportation +455175,Transportation,Transportation +452120,Transportation,Transportation +452119,Transportation,Transportation +452118,Transportation,Transportation +450232,Transportation,Transportation +450219,Transportation,Transportation +450217,Transportation,Transportation +450214,Transportation,Transportation +447409,Transportation,Transportation +447407,Transportation,Transportation +447400,Transportation,Transportation +447379,Transportation,Transportation +445202,Transportation,Transportation +444373,Transportation,Transportation +444370,Transportation,Transportation +443267,Transportation,Transportation +442316,Transportation,Transportation +442311,Transportation,Transportation +442282,Transportation,Transportation +442279,Transportation,Transportation +442235,Transportation,Transportation +439343,Transportation,Transportation +439270,Transportation,Transportation +439266,Transportation,Transportation +439263,Transportation,Transportation +439255,Transportation,Transportation +439246,Transportation,Transportation +436622,Transportation,Transportation +436621,Transportation,Transportation +436619,Transportation,Transportation +433695,Transportation,Transportation +433692,Transportation,Transportation +433690,Transportation,Transportation +432669,Transportation,Transportation +432668,Transportation,Transportation +431990,Transportation,Transportation +431100,Transportation,Transportation +431096,Transportation,Transportation +429014,Transportation,Transportation +427856,Transportation,Transportation +427855,Transportation,Transportation +427852,Transportation,Transportation +427851,Transportation,Transportation +427837,Transportation,Transportation +427832,Transportation,Transportation +427825,Transportation,Transportation +427823,Transportation,Transportation +426058,Transportation,Transportation +426035,Transportation,Transportation +427344,Health,Health +468744,Health,Health +432774,Health,Health +432773,Health,Health +432772,Health,Health +432770,Health,Health +523691,Environment,Environment +523663,Environment,Environment +98038,Environment,Environment +98035,Environment,Environment +169259,Environment,Environment +169257,Environment,Environment +146854,Environment,Environment +203754,Environment,Environment +201211,Environment,Environment +195410,Environment,Environment +442735,Environment,Environment +417503,Environment,Environment +536398,Health,Health +536302,Health,Health +81416,Health,Health +81415,Health,Health +78054,Health,Health +75935,Health,Health +75934,Health,Health +74235,Health,Health +74114,Health,Health +146854,Health,Health +98037,Health,Health +98036,Health,Health +87715,Health,Health +207174,Health,Health +207173,Health,Health +203754,Health,Health +203753,Health,Health +203752,Health,Health +203751,Health,Health +203750,Health,Health +203749,Health,Health +203748,Health,Health +203747,Health,Health +201213,Health,Health +201211,Health,Health +201210,Health,Health +195412,Health,Health +195410,Health,Health +195409,Health,Health +195408,Health,Health +188520,Health,Health +169504,Health,Health +169349,Health,Health +169348,Health,Health +169347,Health,Health +169346,Health,Health +169345,Health,Health +169344,Health,Health +169274,Health,Health +169273,Health,Health +169272,Health,Health +169270,Health,Health +169268,Health,Health +169266,Health,Health +169265,Health,Health +169262,Health,Health +169260,Health,Health +169259,Health,Health +169257,Health,Health +342697,Health,Health +338543,Health,Health +527494,Health,Health +527255,Health,Health +526940,Health,Health +526868,Health,Health +524389,Health,Health +523749,Health,Health +523691,Health,Health +523663,Health,Health +523350,Health,Health +521620,Health,Health +520814,Health,Health +519503,Health,Health +518508,Health,Health +516718,Health,Health +516708,Health,Health +513526,Health,Health +509526,Health,Health +507106,Health,Health +507105,Health,Health +503284,Health,Health +499875,Health,Health +495191,Health,Health +493980,Health,Health +492018,Health,Health +492017,Health,Health +489334,Health,Health +489330,Health,Health +488695,Health,Health +488694,Health,Health +488584,Health,Health +486329,Health,Health +486142,Health,Health +485649,Health,Health +482231,Health,Health +481326,Health,Health +481027,Health,Health +479307,Health,Health +478747,Health,Health +478615,Health,Health +478614,Health,Health +478613,Health,Health +473885,Health,Health +471884,Health,Health +471695,Health,Health +465522,Health,Health +465494,Health,Health +465493,Health,Health +465492,Health,Health +464305,Health,Health +463837,Health,Health +463834,Health,Health +463830,Health,Health +463826,Health,Health +463816,Health,Health +463811,Health,Health +463013,Health,Health +463011,Health,Health +462877,Health,Health +462184,Health,Health +459922,Health,Health +458386,Health,Health +456792,Health,Health +447785,Health,Health +442736,Health,Health +442735,Health,Health +417503,Health,Health +394597,Health,Health +390323,Health,Health +389094,Health,Health +387723,Health,Health +387709,Health,Health +169272,Taxation and Finance,Taxation and Finance +313615,Taxation and Finance,Taxation and Finance +195412,Taxation and Finance,Taxation and Finance +195410,Taxation and Finance,Taxation and Finance +75995,Agriculture,Agriculture +75994,Agriculture,Agriculture +75997,Agriculture,Agriculture +75995,International Relations,International Relations +75994,International Relations,International Relations +75997,International Relations,International Relations +75997,International Trade,International Trade +75996,International Trade,International Trade +75995,International Trade,International Trade +294572,Education,Education +294569,Education,Education +207473,Education,Education +270069,Education,Education +243274,Education,Education +243273,Education,Education +243271,Education,Education +243270,Education,Education +243269,Education,Education +502649,Education,Education +502648,Education,Education +490966,Education,Education +329789,Education,Education +314510,Education,Education +243271,Infrastructure,Infrastructure +243270,Infrastructure,Infrastructure +119258,Infrastructure,Infrastructure +105658,Infrastructure,Infrastructure +97216,Infrastructure,Infrastructure +213747,Infrastructure,Infrastructure +396268,Infrastructure,Infrastructure +381458,Infrastructure,Infrastructure +381457,Infrastructure,Infrastructure +380596,Infrastructure,Infrastructure +380580,Infrastructure,Infrastructure +380573,Infrastructure,Infrastructure +380572,Infrastructure,Infrastructure +380571,Infrastructure,Infrastructure +380570,Infrastructure,Infrastructure +380569,Infrastructure,Infrastructure +243274,Infrastructure,Infrastructure +97216,Other,"research, innovation and commercialization" +133694,Other,"research, innovation and commercialization" +109750,Other,"research, innovation and commercialization" +206507,Fisheries,Fisheries +391955,Fisheries,Fisheries +215367,Fisheries,Fisheries +208407,Fisheries,Fisheries +208367,Fisheries,Fisheries +289049,Transportation,Transportation +263779,Transportation,Transportation +165048,Transportation,Transportation +157612,Transportation,Transportation +157611,Transportation,Transportation +157610,Transportation,Transportation +391955,Transportation,Transportation +368880,Transportation,Transportation +455680,Health,Health +455678,Health,Health +192226,Health,Health +192225,Health,Health +192224,Health,Health +192210,Health,Health +192181,Health,Health +192178,Health,Health +192173,Health,Health +275554,Health,Health +275553,Health,Health +275552,Health,Health +275551,Health,Health +429001,Health,Health +429000,Health,Health +401921,Health,Health +393188,Health,Health +393186,Health,Health +378111,Health,Health +378110,Health,Health +378109,Health,Health +378108,Health,Health +378107,Health,Health +378106,Health,Health +355552,Health,Health +355549,Health,Health +355547,Health,Health +355546,Health,Health +355544,Health,Health +355542,Health,Health +355539,Health,Health +534857,Health,Health +534853,Health,Health +534852,Health,Health +534850,Health,Health +534847,Health,Health +534843,Health,Health +508027,Health,Health +508025,Health,Health +501645,Health,Health +467163,Health,Health +455694,Health,Health +455689,Health,Health +455686,Health,Health +416691,Industry,Industry +401921,Industry,Industry +192210,Industry,Industry +192178,Industry,Industry +192173,Industry,Industry +378111,Industry,Industry +378110,Industry,Industry +378109,Industry,Industry +378108,Industry,Industry +378107,Industry,Industry +90585,Industry,Industry +74997,Industry,Industry +74997,Transportation,Transportation +85424,Environment,Environment +152250,Fisheries,Fisheries +180380,Immigration,Immigration +152236,Industry,Industry +90501,Infrastructure,Infrastructure +85407,International Relations,International Relations +185854,Labour,Labour +155073,Small Business,Small Business +150721,Sports,Sports +529279,Tourism,Tourism +180380,Transportation,Transportation +101098,Environment,Environment +101098,Fisheries,Fisheries +101098,Mining,Mining +427602,Energy,Energy +495430,Environment,Environment +402176,Industry,Industry +405864,International Relations,International Relations +531722,International Trade,International Trade +469701,Mining,Mining +132696,Energy,Energy +152180,Environment,Environment +162631,Transportation,Transportation +197355,Defence,Defence +82754,Environment,Environment +79394,Government Procurement,Government Procurement +276969,Industry,Industry +294169,Regional Development,Regional Development +154688,Transportation,Transportation +152282,Other,Aerospace +77679,Government Procurement,Government Procurement +135921,Tourism,Tourism +92868,Government Procurement,Government Procurement +449757,Government Procurement,Government Procurement +78774,Education,Education +91437,Other,Postsecondary education +117621,Agriculture,Agriculture +142461,International Trade,International Trade +325532,Agriculture,Agriculture +352210,Consumer Issues,Consumer Issues +352210,Environment,Environment +325533,Health,Health +325532,Industry,Industry +325533,International Trade,International Trade +188427,Taxation and Finance,Taxation and Finance +504907,Consumer Issues,Consumer Issues +388313,Employment and Training,Employment and Training +491609,Energy,Energy +526253,Environment,Environment +304492,Health,Health +435848,Industry,Industry +518147,Internal Trade,Internal Trade +460225,International Relations,International Relations +400581,International Trade,International Trade +347144,Labour,Labour +421874,Taxation and Finance,Taxation and Finance +424275,Transportation,Transportation +222767,Employment and Training,Employment and Training +536976,Energy,Energy +527781,Environment,Environment +513782,Infrastructure,Infrastructure +349308,Consumer Issues,Consumer Issues +400870,Financial Institutions,Financial Institutions +380047,Industry,Industry +124774,Taxation and Finance,Taxation and Finance +132167,Energy,Energy +77658,Environment,Environment +204767,Mining,Mining +77701,Education,Education +77701,Taxation and Finance,Taxation and Finance +522090,Employment and Training,Employment and Training +495318,Health,Health +459541,Industry,Industry +352246,International Trade,International Trade +335581,Taxation and Finance,Taxation and Finance +138716,Education,Education +138716,Employment and Training,Employment and Training +76377,Environment,Environment +120783,Health,Health +182304,Infrastructure,Infrastructure +397347,Taxation and Finance,Taxation and Finance +199921,Tourism,Tourism +426028,Transportation,Transportation +432768,Health,Health +527494,Environment,Environment +536401,Health,Health +195409,Taxation and Finance,Taxation and Finance +75996,Agriculture,Agriculture +75996,International Relations,International Relations +75994,International Trade,International Trade +294574,Education,Education +243273,Infrastructure,Infrastructure +97897,Other,"research, innovation and commercialization" +165048,Employment and Training,Employment and Training +314889,Environment,Environment +208347,Fisheries,Fisheries +333119,Transportation,Transportation +455684,Health,Health +416696,Industry,Industry +389037,Taxation and Finance,Taxation and Finance +158565,Consumer Issues,Consumer Issues +158565,Intellectual Property,Intellectual Property +88877,Defence,Defence +88874,Other,Search and Rescue +123655,Agriculture,Agriculture +432806,Health,Health +266371,Justice and Law Enforcement,Justice and Law Enforcement +341081,Taxation and Finance,Taxation and Finance +137234,Government Procurement,Government Procurement +422184,Agriculture,Agriculture +271252,Environment,Environment +422184,Taxation and Finance,Taxation and Finance +317851,Transportation,Transportation +335076,Energy,Energy +267540,Environment,Environment +377575,Health,Health +335078,Industry,Industry +240761,Agriculture,Agriculture +147981,Consumer Issues,Consumer Issues +463479,Financial Institutions,Financial Institutions +170624,Taxation and Finance,Taxation and Finance +424421,Education,Education +206037,Financial Institutions,Financial Institutions +400715,Health,Health +375582,International Relations,International Relations +96862,Energy,Energy +96862,Environment,Environment +90091,Energy,Energy +378106,Industry,Industry +382097,Taxation and Finance,Taxation and Finance +508025,Taxation and Finance,Taxation and Finance +416696,Taxation and Finance,Taxation and Finance +416691,Taxation and Finance,Taxation and Finance +412909,Taxation and Finance,Taxation and Finance +407759,Taxation and Finance,Taxation and Finance +406667,Taxation and Finance,Taxation and Finance +393188,Taxation and Finance,Taxation and Finance +393186,Taxation and Finance,Taxation and Finance +389187,Taxation and Finance,Taxation and Finance +158564,Consumer Issues,Consumer Issues +110314,Consumer Issues,Consumer Issues +158564,Intellectual Property,Intellectual Property +197435,Intellectual Property,Intellectual Property +110314,Intellectual Property,Intellectual Property +272129,Defence,Defence +77283,Agriculture,Agriculture +411031,Health,Health +411030,Health,Health +132138,Health,Health +123655,Health,Health +123654,Health,Health +171524,Health,Health +165027,Health,Health +164985,Health,Health +156258,Health,Health +156257,Health,Health +156256,Health,Health +156255,Health,Health +156254,Health,Health +156253,Health,Health +149947,Health,Health +145658,Health,Health +145654,Health,Health +141134,Health,Health +132140,Health,Health +132139,Health,Health +191504,Health,Health +176709,Health,Health +432916,Health,Health +432807,Health,Health +266370,Justice and Law Enforcement,Justice and Law Enforcement +243169,Justice and Law Enforcement,Justice and Law Enforcement +123655,Justice and Law Enforcement,Justice and Law Enforcement +123654,Justice and Law Enforcement,Justice and Law Enforcement +115594,Justice and Law Enforcement,Justice and Law Enforcement +160874,Justice and Law Enforcement,Justice and Law Enforcement +156258,Justice and Law Enforcement,Justice and Law Enforcement +156257,Justice and Law Enforcement,Justice and Law Enforcement +156256,Justice and Law Enforcement,Justice and Law Enforcement +156255,Justice and Law Enforcement,Justice and Law Enforcement +156254,Justice and Law Enforcement,Justice and Law Enforcement +156253,Justice and Law Enforcement,Justice and Law Enforcement +149947,Justice and Law Enforcement,Justice and Law Enforcement +145658,Justice and Law Enforcement,Justice and Law Enforcement +145654,Justice and Law Enforcement,Justice and Law Enforcement +201587,Taxation and Finance,Taxation and Finance +176709,Taxation and Finance,Taxation and Finance +123655,Taxation and Finance,Taxation and Finance +123654,Taxation and Finance,Taxation and Finance +115594,Taxation and Finance,Taxation and Finance +105954,Taxation and Finance,Taxation and Finance +175419,Taxation and Finance,Taxation and Finance +175418,Taxation and Finance,Taxation and Finance +175417,Taxation and Finance,Taxation and Finance +175416,Taxation and Finance,Taxation and Finance +173587,Taxation and Finance,Taxation and Finance +171624,Taxation and Finance,Taxation and Finance +160875,Taxation and Finance,Taxation and Finance +160874,Taxation and Finance,Taxation and Finance +149947,Taxation and Finance,Taxation and Finance +145658,Taxation and Finance,Taxation and Finance +145656,Taxation and Finance,Taxation and Finance +145654,Taxation and Finance,Taxation and Finance +132137,Taxation and Finance,Taxation and Finance +406016,Agriculture,Agriculture +389176,Agriculture,Agriculture +100234,Agriculture,Agriculture +317851,Agriculture,Agriculture +271252,Agriculture,Agriculture +183167,Agriculture,Agriculture +422201,Agriculture,Agriculture +422192,Agriculture,Agriculture +422190,Agriculture,Agriculture +389176,Environment,Environment +422192,Transportation,Transportation +422184,Transportation,Transportation +377575,Energy,Energy +351015,Energy,Energy +335078,Energy,Energy +335077,Energy,Energy +267539,Environment,Environment +403193,Environment,Environment +257853,Environment,Environment +257851,Environment,Environment +257850,Environment,Environment +257849,Environment,Environment +242510,Environment,Environment +377575,Environment,Environment +357767,Environment,Environment +351015,Environment,Environment +338678,Environment,Environment +337586,Environment,Environment +335078,Environment,Environment +335077,Environment,Environment +335076,Environment,Environment +267541,Environment,Environment +335077,Industry,Industry +335076,Industry,Industry +377575,Industry,Industry +240759,Agriculture,Agriculture +389791,Agriculture,Agriculture +209029,Agriculture,Agriculture +274310,Agriculture,Agriculture +274309,Agriculture,Agriculture +246950,Agriculture,Agriculture +246949,Agriculture,Agriculture +226230,Consumer Issues,Consumer Issues +322969,Consumer Issues,Consumer Issues +167604,Consumer Issues,Consumer Issues +459203,Financial Institutions,Financial Institutions +449590,Financial Institutions,Financial Institutions +159104,Financial Institutions,Financial Institutions +159099,Financial Institutions,Financial Institutions +159095,Financial Institutions,Financial Institutions +148120,Financial Institutions,Financial Institutions +148117,Financial Institutions,Financial Institutions +148101,Financial Institutions,Financial Institutions +147981,Financial Institutions,Financial Institutions +197087,Financial Institutions,Financial Institutions +236589,Financial Institutions,Financial Institutions +226230,Financial Institutions,Financial Institutions +389793,Financial Institutions,Financial Institutions +378227,Financial Institutions,Financial Institutions +377919,Financial Institutions,Financial Institutions +375583,Financial Institutions,Financial Institutions +375218,Financial Institutions,Financial Institutions +358426,Financial Institutions,Financial Institutions +331439,Financial Institutions,Financial Institutions +322969,Financial Institutions,Financial Institutions +463481,Financial Institutions,Financial Institutions +463480,Financial Institutions,Financial Institutions +167365,Taxation and Finance,Taxation and Finance +302344,Taxation and Finance,Taxation and Finance +80195,Taxation and Finance,Taxation and Finance +153434,Taxation and Finance,Taxation and Finance +149968,Taxation and Finance,Taxation and Finance +142014,Taxation and Finance,Taxation and Finance +132452,Taxation and Finance,Taxation and Finance +278229,Taxation and Finance,Taxation and Finance +222007,Taxation and Finance,Taxation and Finance +199995,Taxation and Finance,Taxation and Finance +424416,Education,Education +537030,Education,Education +206024,Education,Education +206020,Education,Education +206008,Education,Education +205996,Education,Education +204427,Education,Education +204173,Education,Education +204172,Education,Education +204171,Education,Education +379294,Education,Education +312600,Education,Education +242171,Education,Education +242170,Education,Education +233397,Education,Education +206044,Education,Education +206043,Education,Education +206042,Education,Education +206041,Education,Education +206040,Education,Education +206039,Education,Education +206038,Education,Education +206037,Education,Education +206036,Education,Education +206034,Education,Education +206033,Education,Education +206032,Education,Education +206031,Education,Education +206030,Education,Education +206027,Education,Education +206025,Education,Education +420148,Education,Education +379307,Education,Education +379305,Education,Education +379303,Education,Education +379301,Education,Education +379297,Education,Education +433364,Education,Education +429074,Education,Education +429073,Education,Education +429045,Education,Education +426152,Education,Education +425474,Education,Education +424425,Education,Education +206036,Financial Institutions,Financial Institutions +206034,Financial Institutions,Financial Institutions +206033,Financial Institutions,Financial Institutions +206032,Financial Institutions,Financial Institutions +206031,Financial Institutions,Financial Institutions +206030,Financial Institutions,Financial Institutions +206027,Financial Institutions,Financial Institutions +206025,Financial Institutions,Financial Institutions +206024,Financial Institutions,Financial Institutions +206020,Financial Institutions,Financial Institutions +206008,Financial Institutions,Financial Institutions +205996,Financial Institutions,Financial Institutions +204173,Financial Institutions,Financial Institutions +204172,Financial Institutions,Financial Institutions +204171,Financial Institutions,Financial Institutions +161002,Financial Institutions,Financial Institutions +354097,Financial Institutions,Financial Institutions +354095,Financial Institutions,Financial Institutions +354094,Financial Institutions,Financial Institutions +266538,Financial Institutions,Financial Institutions +206044,Financial Institutions,Financial Institutions +206043,Financial Institutions,Financial Institutions +206042,Financial Institutions,Financial Institutions +206041,Financial Institutions,Financial Institutions +206040,Financial Institutions,Financial Institutions +206039,Financial Institutions,Financial Institutions +206038,Financial Institutions,Financial Institutions +400714,Health,Health +400591,Health,Health +206008,Health,Health +205996,Health,Health +204427,Health,Health +204172,Health,Health +204171,Health,Health +161019,Health,Health +161018,Health,Health +161017,Health,Health +161016,Health,Health +161013,Health,Health +161005,Health,Health +251999,Health,Health +251998,Health,Health +251997,Health,Health +251996,Health,Health +251995,Health,Health +251994,Health,Health +251993,Health,Health +251992,Health,Health +251991,Health,Health +251990,Health,Health +251989,Health,Health +249862,Health,Health +249861,Health,Health +249860,Health,Health +242172,Health,Health +242171,Health,Health +242170,Health,Health +242169,Health,Health +233397,Health,Health +233369,Health,Health +223297,Health,Health +223296,Health,Health +223294,Health,Health +223292,Health,Health +223291,Health,Health +223290,Health,Health +223288,Health,Health +223287,Health,Health +223283,Health,Health +223282,Health,Health +223280,Health,Health +223271,Health,Health +223269,Health,Health +223266,Health,Health +223264,Health,Health +223262,Health,Health +223259,Health,Health +223258,Health,Health +223257,Health,Health +223255,Health,Health +223254,Health,Health +223253,Health,Health +206044,Health,Health +206043,Health,Health +206042,Health,Health +206041,Health,Health +206040,Health,Health +206039,Health,Health +206038,Health,Health +206037,Health,Health +206036,Health,Health +206034,Health,Health +206033,Health,Health +206032,Health,Health +206031,Health,Health +206030,Health,Health +206027,Health,Health +206025,Health,Health +206024,Health,Health +206020,Health,Health +396360,Health,Health +396359,Health,Health +396358,Health,Health +396356,Health,Health +391336,Health,Health +391333,Health,Health +391327,Health,Health +391326,Health,Health +391323,Health,Health +390559,Health,Health +385297,Health,Health +385296,Health,Health +385281,Health,Health +379307,Health,Health +379305,Health,Health +379303,Health,Health +379301,Health,Health +379297,Health,Health +379294,Health,Health +379129,Health,Health +379113,Health,Health +379111,Health,Health +379110,Health,Health +379095,Health,Health +376302,Health,Health +375582,Health,Health +375581,Health,Health +375580,Health,Health +375578,Health,Health +375577,Health,Health +375576,Health,Health +375574,Health,Health +375573,Health,Health +375572,Health,Health +375571,Health,Health +375570,Health,Health +375569,Health,Health +375568,Health,Health +375567,Health,Health +375565,Health,Health +375563,Health,Health +375562,Health,Health +375561,Health,Health +375560,Health,Health +375559,Health,Health +375558,Health,Health +374412,Health,Health +374411,Health,Health +372108,Health,Health +372097,Health,Health +368828,Health,Health +368820,Health,Health +365244,Health,Health +365243,Health,Health +365241,Health,Health +365240,Health,Health +365238,Health,Health +365237,Health,Health +354097,Health,Health +354094,Health,Health +351771,Health,Health +351769,Health,Health +351768,Health,Health +351766,Health,Health +351764,Health,Health +347938,Health,Health +343495,Health,Health +341554,Health,Health +341103,Health,Health +341087,Health,Health +341086,Health,Health +341085,Health,Health +341083,Health,Health +335532,Health,Health +325047,Health,Health +325041,Health,Health +325038,Health,Health +325035,Health,Health +321487,Health,Health +321352,Health,Health +321349,Health,Health +321347,Health,Health +321345,Health,Health +321344,Health,Health +321342,Health,Health +321340,Health,Health +312600,Health,Health +312590,Health,Health +312589,Health,Health +312556,Health,Health +312555,Health,Health +312554,Health,Health +312553,Health,Health +312550,Health,Health +279499,Health,Health +279498,Health,Health +279497,Health,Health +279496,Health,Health +279495,Health,Health +279494,Health,Health +279493,Health,Health +539086,Health,Health +538976,Health,Health +535926,Health,Health +535925,Health,Health +535924,Health,Health +535308,Health,Health +535300,Health,Health +535276,Health,Health +535273,Health,Health +535267,Health,Health +504720,Health,Health +504717,Health,Health +504716,Health,Health +504714,Health,Health +504710,Health,Health +504707,Health,Health +504705,Health,Health +504704,Health,Health +504702,Health,Health +504700,Health,Health +504698,Health,Health +502288,Health,Health +502282,Health,Health +501475,Health,Health +501473,Health,Health +501472,Health,Health +487994,Health,Health +482948,Health,Health +467657,Health,Health +467649,Health,Health +467638,Health,Health +467634,Health,Health +467631,Health,Health +433364,Health,Health +433363,Health,Health +432389,Health,Health +431549,Health,Health +431035,Health,Health +429050,Health,Health +429046,Health,Health +425474,Health,Health +416542,Health,Health +416538,Health,Health +409866,Health,Health +409860,Health,Health +407860,Health,Health +407859,Health,Health +407858,Health,Health +407857,Health,Health +407856,Health,Health +407843,Health,Health +407841,Health,Health +405334,Health,Health +403734,Health,Health +403731,Health,Health +403727,Health,Health +400721,Health,Health +400719,Health,Health +400718,Health,Health +375581,International Relations,International Relations +375580,International Relations,International Relations +161027,International Relations,International Relations +161026,International Relations,International Relations +161024,International Relations,International Relations +161023,International Relations,International Relations +161022,International Relations,International Relations +161021,International Relations,International Relations +161020,International Relations,International Relations +161019,International Relations,International Relations +161018,International Relations,International Relations +161017,International Relations,International Relations +161016,International Relations,International Relations +161014,International Relations,International Relations +161013,International Relations,International Relations +161012,International Relations,International Relations +161009,International Relations,International Relations +161007,International Relations,International Relations +161006,International Relations,International Relations +161005,International Relations,International Relations +161003,International Relations,International Relations +161000,International Relations,International Relations +152297,International Relations,International Relations +152296,International Relations,International Relations +152295,International Relations,International Relations +152294,International Relations,International Relations +152293,International Relations,International Relations +152289,International Relations,International Relations +375578,International Relations,International Relations +375577,International Relations,International Relations +375576,International Relations,International Relations +375574,International Relations,International Relations +375573,International Relations,International Relations +375572,International Relations,International Relations +375571,International Relations,International Relations +375570,International Relations,International Relations +375569,International Relations,International Relations +375568,International Relations,International Relations +375567,International Relations,International Relations +375565,International Relations,International Relations +375563,International Relations,International Relations +375562,International Relations,International Relations +375561,International Relations,International Relations +375560,International Relations,International Relations +375559,International Relations,International Relations +375558,International Relations,International Relations +433363,International Relations,International Relations +424425,International Relations,International Relations +466691,Science and Technology,Science and Technology +463778,Science and Technology,Science and Technology +533989,Science and Technology,Science and Technology +485621,Science and Technology,Science and Technology +466693,Science and Technology,Science and Technology +265109,Science and Technology,Science and Technology +260912,Science and Technology,Science and Technology +173436,Science and Technology,Science and Technology +317330,Science and Technology,Science and Technology +317309,Science and Technology,Science and Technology +294495,Science and Technology,Science and Technology +294349,Science and Technology,Science and Technology +415742,Broadcasting,Broadcasting +415741,Broadcasting,Broadcasting +410919,Broadcasting,Broadcasting +410918,Broadcasting,Broadcasting +410917,Broadcasting,Broadcasting +404675,Broadcasting,Broadcasting +395065,Broadcasting,Broadcasting +392979,Broadcasting,Broadcasting +392978,Broadcasting,Broadcasting +434716,Broadcasting,Broadcasting +434709,Broadcasting,Broadcasting +434706,Broadcasting,Broadcasting +433048,Broadcasting,Broadcasting +433046,Broadcasting,Broadcasting +433044,Broadcasting,Broadcasting +433043,Broadcasting,Broadcasting +432765,Broadcasting,Broadcasting +432763,Broadcasting,Broadcasting +432757,Broadcasting,Broadcasting +432756,Broadcasting,Broadcasting +432755,Broadcasting,Broadcasting +432754,Broadcasting,Broadcasting +432753,Broadcasting,Broadcasting +431017,Broadcasting,Broadcasting +431016,Broadcasting,Broadcasting +424520,Broadcasting,Broadcasting +424519,Broadcasting,Broadcasting +424518,Broadcasting,Broadcasting +424517,Broadcasting,Broadcasting +424516,Broadcasting,Broadcasting +421676,Broadcasting,Broadcasting +421673,Broadcasting,Broadcasting +421669,Broadcasting,Broadcasting +421663,Broadcasting,Broadcasting +421656,Broadcasting,Broadcasting +421652,Broadcasting,Broadcasting +419741,Broadcasting,Broadcasting +419732,Broadcasting,Broadcasting +415769,Broadcasting,Broadcasting +415767,Broadcasting,Broadcasting +415766,Broadcasting,Broadcasting +415765,Broadcasting,Broadcasting +415763,Broadcasting,Broadcasting +415760,Broadcasting,Broadcasting +415759,Broadcasting,Broadcasting +415758,Broadcasting,Broadcasting +415757,Broadcasting,Broadcasting +415749,Broadcasting,Broadcasting +381513,Science and Technology,Science and Technology +381494,Science and Technology,Science and Technology +152398,Science and Technology,Science and Technology +381531,Science and Technology,Science and Technology +381523,Science and Technology,Science and Technology +440716,Arts and Culture,Arts and Culture +440715,Arts and Culture,Arts and Culture +109624,Arts and Culture,Arts and Culture +109616,Arts and Culture,Arts and Culture +88004,Arts and Culture,Arts and Culture +76705,Arts and Culture,Arts and Culture +154888,Arts and Culture,Arts and Culture +148102,Arts and Culture,Arts and Culture +139078,Arts and Culture,Arts and Culture +135901,Arts and Culture,Arts and Culture +135899,Arts and Culture,Arts and Culture +132816,Arts and Culture,Arts and Culture +132814,Arts and Culture,Arts and Culture +124974,Arts and Culture,Arts and Culture +117706,Arts and Culture,Arts and Culture +117704,Arts and Culture,Arts and Culture +117702,Arts and Culture,Arts and Culture +117700,Arts and Culture,Arts and Culture +117695,Arts and Culture,Arts and Culture +113855,Arts and Culture,Arts and Culture +109626,Arts and Culture,Arts and Culture +296834,Arts and Culture,Arts and Culture +296737,Arts and Culture,Arts and Culture +237489,Arts and Culture,Arts and Culture +233813,Arts and Culture,Arts and Culture +233812,Arts and Culture,Arts and Culture +233811,Arts and Culture,Arts and Culture +230172,Arts and Culture,Arts and Culture +227348,Arts and Culture,Arts and Culture +217990,Arts and Culture,Arts and Culture +207752,Arts and Culture,Arts and Culture +189107,Arts and Culture,Arts and Culture +175349,Arts and Culture,Arts and Culture +175348,Arts and Culture,Arts and Culture +172044,Arts and Culture,Arts and Culture +168833,Arts and Culture,Arts and Culture +168818,Arts and Culture,Arts and Culture +168807,Arts and Culture,Arts and Culture +168803,Arts and Culture,Arts and Culture +168796,Arts and Culture,Arts and Culture +168769,Arts and Culture,Arts and Culture +168765,Arts and Culture,Arts and Culture +168760,Arts and Culture,Arts and Culture +168755,Arts and Culture,Arts and Culture +168744,Arts and Culture,Arts and Culture +168719,Arts and Culture,Arts and Culture +168588,Arts and Culture,Arts and Culture +163875,Arts and Culture,Arts and Culture +162267,Arts and Culture,Arts and Culture +159317,Arts and Culture,Arts and Culture +159316,Arts and Culture,Arts and Culture +159315,Arts and Culture,Arts and Culture +159312,Arts and Culture,Arts and Culture +159311,Arts and Culture,Arts and Culture +159309,Arts and Culture,Arts and Culture +157174,Arts and Culture,Arts and Culture +157169,Arts and Culture,Arts and Culture +376402,Arts and Culture,Arts and Culture +376399,Arts and Culture,Arts and Culture +376398,Arts and Culture,Arts and Culture +376397,Arts and Culture,Arts and Culture +376395,Arts and Culture,Arts and Culture +376394,Arts and Culture,Arts and Culture +376393,Arts and Culture,Arts and Culture +376391,Arts and Culture,Arts and Culture +376390,Arts and Culture,Arts and Culture +376389,Arts and Culture,Arts and Culture +376387,Arts and Culture,Arts and Culture +376385,Arts and Culture,Arts and Culture +371900,Arts and Culture,Arts and Culture +371899,Arts and Culture,Arts and Culture +371896,Arts and Culture,Arts and Culture +371895,Arts and Culture,Arts and Culture +371891,Arts and Culture,Arts and Culture +371889,Arts and Culture,Arts and Culture +371885,Arts and Culture,Arts and Culture +371884,Arts and Culture,Arts and Culture +371883,Arts and Culture,Arts and Culture +371882,Arts and Culture,Arts and Culture +371881,Arts and Culture,Arts and Culture +371880,Arts and Culture,Arts and Culture +371878,Arts and Culture,Arts and Culture +371875,Arts and Culture,Arts and Culture +371874,Arts and Culture,Arts and Culture +366417,Arts and Culture,Arts and Culture +363463,Arts and Culture,Arts and Culture +362175,Arts and Culture,Arts and Culture +351255,Arts and Culture,Arts and Culture +351254,Arts and Culture,Arts and Culture +351249,Arts and Culture,Arts and Culture +349202,Arts and Culture,Arts and Culture +349197,Arts and Culture,Arts and Culture +340498,Arts and Culture,Arts and Culture +338127,Arts and Culture,Arts and Culture +338125,Arts and Culture,Arts and Culture +335562,Arts and Culture,Arts and Culture +331910,Arts and Culture,Arts and Culture +330930,Arts and Culture,Arts and Culture +330928,Arts and Culture,Arts and Culture +330927,Arts and Culture,Arts and Culture +330926,Arts and Culture,Arts and Culture +330925,Arts and Culture,Arts and Culture +330924,Arts and Culture,Arts and Culture +330013,Arts and Culture,Arts and Culture +327272,Arts and Culture,Arts and Culture +327271,Arts and Culture,Arts and Culture +327270,Arts and Culture,Arts and Culture +327269,Arts and Culture,Arts and Culture +327268,Arts and Culture,Arts and Culture +327267,Arts and Culture,Arts and Culture +327266,Arts and Culture,Arts and Culture +327265,Arts and Culture,Arts and Culture +327264,Arts and Culture,Arts and Culture +324676,Arts and Culture,Arts and Culture +324674,Arts and Culture,Arts and Culture +319201,Arts and Culture,Arts and Culture +319013,Arts and Culture,Arts and Culture +319010,Arts and Culture,Arts and Culture +302956,Arts and Culture,Arts and Culture +302954,Arts and Culture,Arts and Culture +436640,Arts and Culture,Arts and Culture +436639,Arts and Culture,Arts and Culture +436637,Arts and Culture,Arts and Culture +436085,Arts and Culture,Arts and Culture +436084,Arts and Culture,Arts and Culture +434843,Arts and Culture,Arts and Culture +434158,Arts and Culture,Arts and Culture +433462,Arts and Culture,Arts and Culture +431576,Arts and Culture,Arts and Culture +430891,Arts and Culture,Arts and Culture +430888,Arts and Culture,Arts and Culture +430881,Arts and Culture,Arts and Culture +430873,Arts and Culture,Arts and Culture +430871,Arts and Culture,Arts and Culture +430869,Arts and Culture,Arts and Culture +430860,Arts and Culture,Arts and Culture +429016,Arts and Culture,Arts and Culture +425547,Arts and Culture,Arts and Culture +425546,Arts and Culture,Arts and Culture +425544,Arts and Culture,Arts and Culture +425543,Arts and Culture,Arts and Culture +424684,Arts and Culture,Arts and Culture +424683,Arts and Culture,Arts and Culture +422391,Arts and Culture,Arts and Culture +422388,Arts and Culture,Arts and Culture +421302,Arts and Culture,Arts and Culture +418673,Arts and Culture,Arts and Culture +418672,Arts and Culture,Arts and Culture +418671,Arts and Culture,Arts and Culture +418670,Arts and Culture,Arts and Culture +418669,Arts and Culture,Arts and Culture +418668,Arts and Culture,Arts and Culture +418620,Arts and Culture,Arts and Culture +418619,Arts and Culture,Arts and Culture +418618,Arts and Culture,Arts and Culture +418617,Arts and Culture,Arts and Culture +418611,Arts and Culture,Arts and Culture +418610,Arts and Culture,Arts and Culture +418609,Arts and Culture,Arts and Culture +418608,Arts and Culture,Arts and Culture +418607,Arts and Culture,Arts and Culture +418606,Arts and Culture,Arts and Culture +418605,Arts and Culture,Arts and Culture +418604,Arts and Culture,Arts and Culture +418603,Arts and Culture,Arts and Culture +417653,Arts and Culture,Arts and Culture +414422,Arts and Culture,Arts and Culture +414421,Arts and Culture,Arts and Culture +414420,Arts and Culture,Arts and Culture +413432,Arts and Culture,Arts and Culture +411877,Arts and Culture,Arts and Culture +408741,Arts and Culture,Arts and Culture +408679,Arts and Culture,Arts and Culture +408583,Arts and Culture,Arts and Culture +408582,Arts and Culture,Arts and Culture +408361,Arts and Culture,Arts and Culture +408360,Arts and Culture,Arts and Culture +408262,Arts and Culture,Arts and Culture +407061,Arts and Culture,Arts and Culture +406532,Arts and Culture,Arts and Culture +406531,Arts and Culture,Arts and Culture +406530,Arts and Culture,Arts and Culture +406526,Arts and Culture,Arts and Culture +406525,Arts and Culture,Arts and Culture +406523,Arts and Culture,Arts and Culture +406522,Arts and Culture,Arts and Culture +401896,Arts and Culture,Arts and Culture +401245,Arts and Culture,Arts and Culture +401244,Arts and Culture,Arts and Culture +401243,Arts and Culture,Arts and Culture +401239,Arts and Culture,Arts and Culture +401238,Arts and Culture,Arts and Culture +401237,Arts and Culture,Arts and Culture +401236,Arts and Culture,Arts and Culture +398187,Arts and Culture,Arts and Culture +397196,Arts and Culture,Arts and Culture +397195,Arts and Culture,Arts and Culture +395838,Arts and Culture,Arts and Culture +394874,Arts and Culture,Arts and Culture +393614,Arts and Culture,Arts and Culture +393573,Arts and Culture,Arts and Culture +393572,Arts and Culture,Arts and Culture +393571,Arts and Culture,Arts and Culture +393570,Arts and Culture,Arts and Culture +393569,Arts and Culture,Arts and Culture +393568,Arts and Culture,Arts and Culture +393567,Arts and Culture,Arts and Culture +393566,Arts and Culture,Arts and Culture +393565,Arts and Culture,Arts and Culture +393564,Arts and Culture,Arts and Culture +393563,Arts and Culture,Arts and Culture +393562,Arts and Culture,Arts and Culture +393561,Arts and Culture,Arts and Culture +393560,Arts and Culture,Arts and Culture +393559,Arts and Culture,Arts and Culture +393558,Arts and Culture,Arts and Culture +393557,Arts and Culture,Arts and Culture +393556,Arts and Culture,Arts and Culture +393555,Arts and Culture,Arts and Culture +393554,Arts and Culture,Arts and Culture +393553,Arts and Culture,Arts and Culture +387745,Arts and Culture,Arts and Culture +387744,Arts and Culture,Arts and Culture +387743,Arts and Culture,Arts and Culture +385206,Arts and Culture,Arts and Culture +384820,Arts and Culture,Arts and Culture +383229,Arts and Culture,Arts and Culture +383228,Arts and Culture,Arts and Culture +381026,Arts and Culture,Arts and Culture +381025,Arts and Culture,Arts and Culture +543433,Arts and Culture,Arts and Culture +543431,Arts and Culture,Arts and Culture +543430,Arts and Culture,Arts and Culture +543425,Arts and Culture,Arts and Culture +541234,Arts and Culture,Arts and Culture +541233,Arts and Culture,Arts and Culture +541232,Arts and Culture,Arts and Culture +541231,Arts and Culture,Arts and Culture +541230,Arts and Culture,Arts and Culture +541229,Arts and Culture,Arts and Culture +541228,Arts and Culture,Arts and Culture +541227,Arts and Culture,Arts and Culture +541226,Arts and Culture,Arts and Culture +541225,Arts and Culture,Arts and Culture +541221,Arts and Culture,Arts and Culture +539470,Arts and Culture,Arts and Culture +536784,Arts and Culture,Arts and Culture +536517,Arts and Culture,Arts and Culture +536516,Arts and Culture,Arts and Culture +536515,Arts and Culture,Arts and Culture +533685,Arts and Culture,Arts and Culture +533684,Arts and Culture,Arts and Culture +533683,Arts and Culture,Arts and Culture +531580,Arts and Culture,Arts and Culture +531579,Arts and Culture,Arts and Culture +531578,Arts and Culture,Arts and Culture +531577,Arts and Culture,Arts and Culture +531575,Arts and Culture,Arts and Culture +531574,Arts and Culture,Arts and Culture +528597,Arts and Culture,Arts and Culture +528595,Arts and Culture,Arts and Culture +528593,Arts and Culture,Arts and Culture +528592,Arts and Culture,Arts and Culture +528590,Arts and Culture,Arts and Culture +528587,Arts and Culture,Arts and Culture +528585,Arts and Culture,Arts and Culture +528583,Arts and Culture,Arts and Culture +528581,Arts and Culture,Arts and Culture +528578,Arts and Culture,Arts and Culture +522256,Arts and Culture,Arts and Culture +521726,Arts and Culture,Arts and Culture +521725,Arts and Culture,Arts and Culture +521724,Arts and Culture,Arts and Culture +521723,Arts and Culture,Arts and Culture +521720,Arts and Culture,Arts and Culture +520332,Arts and Culture,Arts and Culture +520331,Arts and Culture,Arts and Culture +516976,Arts and Culture,Arts and Culture +516975,Arts and Culture,Arts and Culture +516974,Arts and Culture,Arts and Culture +514088,Arts and Culture,Arts and Culture +512675,Arts and Culture,Arts and Culture +512674,Arts and Culture,Arts and Culture +512673,Arts and Culture,Arts and Culture +511153,Arts and Culture,Arts and Culture +511149,Arts and Culture,Arts and Culture +511143,Arts and Culture,Arts and Culture +511137,Arts and Culture,Arts and Culture +508929,Arts and Culture,Arts and Culture +508925,Arts and Culture,Arts and Culture +508924,Arts and Culture,Arts and Culture +508923,Arts and Culture,Arts and Culture +505144,Arts and Culture,Arts and Culture +505119,Arts and Culture,Arts and Culture +505116,Arts and Culture,Arts and Culture +505113,Arts and Culture,Arts and Culture +505110,Arts and Culture,Arts and Culture +505108,Arts and Culture,Arts and Culture +505105,Arts and Culture,Arts and Culture +502507,Arts and Culture,Arts and Culture +502503,Arts and Culture,Arts and Culture +502500,Arts and Culture,Arts and Culture +498954,Arts and Culture,Arts and Culture +493259,Arts and Culture,Arts and Culture +493257,Arts and Culture,Arts and Culture +493253,Arts and Culture,Arts and Culture +491945,Arts and Culture,Arts and Culture +491944,Arts and Culture,Arts and Culture +491943,Arts and Culture,Arts and Culture +491942,Arts and Culture,Arts and Culture +491940,Arts and Culture,Arts and Culture +491938,Arts and Culture,Arts and Culture +491912,Arts and Culture,Arts and Culture +486796,Arts and Culture,Arts and Culture +486792,Arts and Culture,Arts and Culture +486790,Arts and Culture,Arts and Culture +485537,Arts and Culture,Arts and Culture +485534,Arts and Culture,Arts and Culture +485533,Arts and Culture,Arts and Culture +485108,Arts and Culture,Arts and Culture +485081,Arts and Culture,Arts and Culture +482084,Arts and Culture,Arts and Culture +482080,Arts and Culture,Arts and Culture +482077,Arts and Culture,Arts and Culture +479891,Arts and Culture,Arts and Culture +479884,Arts and Culture,Arts and Culture +479882,Arts and Culture,Arts and Culture +478707,Arts and Culture,Arts and Culture +478642,Arts and Culture,Arts and Culture +478019,Arts and Culture,Arts and Culture +478018,Arts and Culture,Arts and Culture +478013,Arts and Culture,Arts and Culture +478010,Arts and Culture,Arts and Culture +478005,Arts and Culture,Arts and Culture +475699,Arts and Culture,Arts and Culture +475697,Arts and Culture,Arts and Culture +475693,Arts and Culture,Arts and Culture +475692,Arts and Culture,Arts and Culture +475689,Arts and Culture,Arts and Culture +475687,Arts and Culture,Arts and Culture +475684,Arts and Culture,Arts and Culture +472895,Arts and Culture,Arts and Culture +472893,Arts and Culture,Arts and Culture +472810,Arts and Culture,Arts and Culture +470147,Arts and Culture,Arts and Culture +469097,Arts and Culture,Arts and Culture +469096,Arts and Culture,Arts and Culture +466697,Arts and Culture,Arts and Culture +465364,Arts and Culture,Arts and Culture +465363,Arts and Culture,Arts and Culture +463967,Arts and Culture,Arts and Culture +463379,Arts and Culture,Arts and Culture +463378,Arts and Culture,Arts and Culture +462716,Arts and Culture,Arts and Culture +462390,Arts and Culture,Arts and Culture +461500,Arts and Culture,Arts and Culture +460770,Arts and Culture,Arts and Culture +459394,Arts and Culture,Arts and Culture +459393,Arts and Culture,Arts and Culture +458558,Arts and Culture,Arts and Culture +456876,Arts and Culture,Arts and Culture +456874,Arts and Culture,Arts and Culture +456873,Arts and Culture,Arts and Culture +456856,Arts and Culture,Arts and Culture +450744,Arts and Culture,Arts and Culture +450224,Arts and Culture,Arts and Culture +447183,Arts and Culture,Arts and Culture +446143,Arts and Culture,Arts and Culture +444833,Arts and Culture,Arts and Culture +444832,Arts and Culture,Arts and Culture +444829,Arts and Culture,Arts and Culture +444828,Arts and Culture,Arts and Culture +444827,Arts and Culture,Arts and Culture +444826,Arts and Culture,Arts and Culture +444824,Arts and Culture,Arts and Culture +444823,Arts and Culture,Arts and Culture +444821,Arts and Culture,Arts and Culture +444820,Arts and Culture,Arts and Culture +444819,Arts and Culture,Arts and Culture +444818,Arts and Culture,Arts and Culture +444817,Arts and Culture,Arts and Culture +444816,Arts and Culture,Arts and Culture +444815,Arts and Culture,Arts and Culture +444813,Arts and Culture,Arts and Culture +441424,Arts and Culture,Arts and Culture +469096,Telecommunications,Telecommunications +465364,Telecommunications,Telecommunications +153318,Telecommunications,Telecommunications +153317,Telecommunications,Telecommunications +458558,Telecommunications,Telecommunications +456876,Telecommunications,Telecommunications +456874,Telecommunications,Telecommunications +433464,Telecommunications,Telecommunications +406531,Telecommunications,Telecommunications +406526,Telecommunications,Telecommunications +406523,Telecommunications,Telecommunications +401896,Telecommunications,Telecommunications +401245,Telecommunications,Telecommunications +401238,Telecommunications,Telecommunications +401237,Telecommunications,Telecommunications +401236,Telecommunications,Telecommunications +395838,Telecommunications,Telecommunications +389991,Telecommunications,Telecommunications +382129,Telecommunications,Telecommunications +369179,Telecommunications,Telecommunications +369177,Telecommunications,Telecommunications +541234,Telecommunications,Telecommunications +541231,Telecommunications,Telecommunications +541230,Telecommunications,Telecommunications +541229,Telecommunications,Telecommunications +541227,Telecommunications,Telecommunications +541226,Telecommunications,Telecommunications +541225,Telecommunications,Telecommunications +541221,Telecommunications,Telecommunications +479891,Telecommunications,Telecommunications +472810,Telecommunications,Telecommunications +524814,Broadcasting,Broadcasting +522256,Broadcasting,Broadcasting +106102,Broadcasting,Broadcasting +106101,Broadcasting,Broadcasting +97304,Broadcasting,Broadcasting +97302,Broadcasting,Broadcasting +97300,Broadcasting,Broadcasting +97299,Broadcasting,Broadcasting +79595,Broadcasting,Broadcasting +79594,Broadcasting,Broadcasting +76704,Broadcasting,Broadcasting +237489,Broadcasting,Broadcasting +217990,Broadcasting,Broadcasting +213167,Broadcasting,Broadcasting +175347,Broadcasting,Broadcasting +175346,Broadcasting,Broadcasting +175345,Broadcasting,Broadcasting +175344,Broadcasting,Broadcasting +157119,Broadcasting,Broadcasting +154895,Broadcasting,Broadcasting +153318,Broadcasting,Broadcasting +153317,Broadcasting,Broadcasting +371900,Broadcasting,Broadcasting +371899,Broadcasting,Broadcasting +371896,Broadcasting,Broadcasting +371895,Broadcasting,Broadcasting +371891,Broadcasting,Broadcasting +371889,Broadcasting,Broadcasting +371885,Broadcasting,Broadcasting +371884,Broadcasting,Broadcasting +371883,Broadcasting,Broadcasting +371882,Broadcasting,Broadcasting +371881,Broadcasting,Broadcasting +371880,Broadcasting,Broadcasting +371878,Broadcasting,Broadcasting +371875,Broadcasting,Broadcasting +365063,Broadcasting,Broadcasting +365049,Broadcasting,Broadcasting +353313,Broadcasting,Broadcasting +296830,Broadcasting,Broadcasting +296825,Broadcasting,Broadcasting +407064,Broadcasting,Broadcasting +407063,Broadcasting,Broadcasting +407062,Broadcasting,Broadcasting +407061,Broadcasting,Broadcasting +406532,Broadcasting,Broadcasting +406531,Broadcasting,Broadcasting +406530,Broadcasting,Broadcasting +406526,Broadcasting,Broadcasting +406525,Broadcasting,Broadcasting +406523,Broadcasting,Broadcasting +406522,Broadcasting,Broadcasting +401896,Broadcasting,Broadcasting +401245,Broadcasting,Broadcasting +401244,Broadcasting,Broadcasting +401243,Broadcasting,Broadcasting +401238,Broadcasting,Broadcasting +401237,Broadcasting,Broadcasting +401236,Broadcasting,Broadcasting +398187,Broadcasting,Broadcasting +397196,Broadcasting,Broadcasting +397195,Broadcasting,Broadcasting +395838,Broadcasting,Broadcasting +394874,Broadcasting,Broadcasting +393614,Broadcasting,Broadcasting +393573,Broadcasting,Broadcasting +393572,Broadcasting,Broadcasting +393571,Broadcasting,Broadcasting +393570,Broadcasting,Broadcasting +393569,Broadcasting,Broadcasting +393568,Broadcasting,Broadcasting +393567,Broadcasting,Broadcasting +393566,Broadcasting,Broadcasting +393565,Broadcasting,Broadcasting +393564,Broadcasting,Broadcasting +393563,Broadcasting,Broadcasting +393562,Broadcasting,Broadcasting +393561,Broadcasting,Broadcasting +393560,Broadcasting,Broadcasting +393559,Broadcasting,Broadcasting +393558,Broadcasting,Broadcasting +393557,Broadcasting,Broadcasting +393556,Broadcasting,Broadcasting +393555,Broadcasting,Broadcasting +393554,Broadcasting,Broadcasting +393553,Broadcasting,Broadcasting +387745,Broadcasting,Broadcasting +387744,Broadcasting,Broadcasting +387743,Broadcasting,Broadcasting +384820,Broadcasting,Broadcasting +383229,Broadcasting,Broadcasting +383228,Broadcasting,Broadcasting +382129,Broadcasting,Broadcasting +381026,Broadcasting,Broadcasting +381025,Broadcasting,Broadcasting +376397,Broadcasting,Broadcasting +376395,Broadcasting,Broadcasting +376394,Broadcasting,Broadcasting +376393,Broadcasting,Broadcasting +376391,Broadcasting,Broadcasting +376390,Broadcasting,Broadcasting +376389,Broadcasting,Broadcasting +376387,Broadcasting,Broadcasting +376385,Broadcasting,Broadcasting +521726,Broadcasting,Broadcasting +521725,Broadcasting,Broadcasting +521724,Broadcasting,Broadcasting +521723,Broadcasting,Broadcasting +521722,Broadcasting,Broadcasting +521720,Broadcasting,Broadcasting +521718,Broadcasting,Broadcasting +520332,Broadcasting,Broadcasting +520331,Broadcasting,Broadcasting +516976,Broadcasting,Broadcasting +516975,Broadcasting,Broadcasting +516974,Broadcasting,Broadcasting +514088,Broadcasting,Broadcasting +512675,Broadcasting,Broadcasting +512674,Broadcasting,Broadcasting +512673,Broadcasting,Broadcasting +511153,Broadcasting,Broadcasting +511149,Broadcasting,Broadcasting +511143,Broadcasting,Broadcasting +511137,Broadcasting,Broadcasting +508929,Broadcasting,Broadcasting +508925,Broadcasting,Broadcasting +508924,Broadcasting,Broadcasting +505144,Broadcasting,Broadcasting +505119,Broadcasting,Broadcasting +505116,Broadcasting,Broadcasting +505113,Broadcasting,Broadcasting +505110,Broadcasting,Broadcasting +505108,Broadcasting,Broadcasting +505105,Broadcasting,Broadcasting +502507,Broadcasting,Broadcasting +502503,Broadcasting,Broadcasting +502500,Broadcasting,Broadcasting +498954,Broadcasting,Broadcasting +496016,Broadcasting,Broadcasting +496014,Broadcasting,Broadcasting +496010,Broadcasting,Broadcasting +493358,Broadcasting,Broadcasting +493259,Broadcasting,Broadcasting +493257,Broadcasting,Broadcasting +493253,Broadcasting,Broadcasting +491945,Broadcasting,Broadcasting +491944,Broadcasting,Broadcasting +491943,Broadcasting,Broadcasting +491942,Broadcasting,Broadcasting +491940,Broadcasting,Broadcasting +486796,Broadcasting,Broadcasting +486792,Broadcasting,Broadcasting +486790,Broadcasting,Broadcasting +485537,Broadcasting,Broadcasting +485534,Broadcasting,Broadcasting +485533,Broadcasting,Broadcasting +485108,Broadcasting,Broadcasting +485081,Broadcasting,Broadcasting +479884,Broadcasting,Broadcasting +478005,Broadcasting,Broadcasting +475699,Broadcasting,Broadcasting +475697,Broadcasting,Broadcasting +475689,Broadcasting,Broadcasting +475687,Broadcasting,Broadcasting +472895,Broadcasting,Broadcasting +472893,Broadcasting,Broadcasting +472810,Broadcasting,Broadcasting +470147,Broadcasting,Broadcasting +469097,Broadcasting,Broadcasting +469096,Broadcasting,Broadcasting +466697,Broadcasting,Broadcasting +465364,Broadcasting,Broadcasting +465363,Broadcasting,Broadcasting +463967,Broadcasting,Broadcasting +463378,Broadcasting,Broadcasting +462716,Broadcasting,Broadcasting +462390,Broadcasting,Broadcasting +461500,Broadcasting,Broadcasting +460770,Broadcasting,Broadcasting +459394,Broadcasting,Broadcasting +459393,Broadcasting,Broadcasting +458558,Broadcasting,Broadcasting +456876,Broadcasting,Broadcasting +456874,Broadcasting,Broadcasting +456873,Broadcasting,Broadcasting +456856,Broadcasting,Broadcasting +450744,Broadcasting,Broadcasting +447183,Broadcasting,Broadcasting +446143,Broadcasting,Broadcasting +444833,Broadcasting,Broadcasting +444832,Broadcasting,Broadcasting +444829,Broadcasting,Broadcasting +444828,Broadcasting,Broadcasting +444827,Broadcasting,Broadcasting +444826,Broadcasting,Broadcasting +444824,Broadcasting,Broadcasting +444823,Broadcasting,Broadcasting +444821,Broadcasting,Broadcasting +444820,Broadcasting,Broadcasting +444819,Broadcasting,Broadcasting +444818,Broadcasting,Broadcasting +444817,Broadcasting,Broadcasting +444816,Broadcasting,Broadcasting +444815,Broadcasting,Broadcasting +444813,Broadcasting,Broadcasting +441424,Broadcasting,Broadcasting +440716,Broadcasting,Broadcasting +440715,Broadcasting,Broadcasting +436640,Broadcasting,Broadcasting +436639,Broadcasting,Broadcasting +436637,Broadcasting,Broadcasting +436085,Broadcasting,Broadcasting +436084,Broadcasting,Broadcasting +434843,Broadcasting,Broadcasting +433464,Broadcasting,Broadcasting +433462,Broadcasting,Broadcasting +431576,Broadcasting,Broadcasting +430891,Broadcasting,Broadcasting +429016,Broadcasting,Broadcasting +425547,Broadcasting,Broadcasting +425546,Broadcasting,Broadcasting +425544,Broadcasting,Broadcasting +425543,Broadcasting,Broadcasting +424684,Broadcasting,Broadcasting +424683,Broadcasting,Broadcasting +420562,Broadcasting,Broadcasting +418673,Broadcasting,Broadcasting +418672,Broadcasting,Broadcasting +418671,Broadcasting,Broadcasting +418670,Broadcasting,Broadcasting +418669,Broadcasting,Broadcasting +418668,Broadcasting,Broadcasting +418620,Broadcasting,Broadcasting +418619,Broadcasting,Broadcasting +418618,Broadcasting,Broadcasting +418617,Broadcasting,Broadcasting +418611,Broadcasting,Broadcasting +418610,Broadcasting,Broadcasting +418609,Broadcasting,Broadcasting +418608,Broadcasting,Broadcasting +418607,Broadcasting,Broadcasting +418606,Broadcasting,Broadcasting +418605,Broadcasting,Broadcasting +418604,Broadcasting,Broadcasting +418603,Broadcasting,Broadcasting +411877,Broadcasting,Broadcasting +408583,Broadcasting,Broadcasting +408582,Broadcasting,Broadcasting +408361,Broadcasting,Broadcasting +408262,Broadcasting,Broadcasting +407065,Broadcasting,Broadcasting +543433,Broadcasting,Broadcasting +543431,Broadcasting,Broadcasting +543430,Broadcasting,Broadcasting +543425,Broadcasting,Broadcasting +541234,Broadcasting,Broadcasting +541233,Broadcasting,Broadcasting +541232,Broadcasting,Broadcasting +541231,Broadcasting,Broadcasting +541230,Broadcasting,Broadcasting +541229,Broadcasting,Broadcasting +541228,Broadcasting,Broadcasting +541227,Broadcasting,Broadcasting +541226,Broadcasting,Broadcasting +541225,Broadcasting,Broadcasting +541221,Broadcasting,Broadcasting +539470,Broadcasting,Broadcasting +536784,Broadcasting,Broadcasting +536517,Broadcasting,Broadcasting +536516,Broadcasting,Broadcasting +536515,Broadcasting,Broadcasting +533685,Broadcasting,Broadcasting +533684,Broadcasting,Broadcasting +533683,Broadcasting,Broadcasting +531580,Broadcasting,Broadcasting +531579,Broadcasting,Broadcasting +531578,Broadcasting,Broadcasting +531577,Broadcasting,Broadcasting +531575,Broadcasting,Broadcasting +531574,Broadcasting,Broadcasting +528597,Broadcasting,Broadcasting +528595,Broadcasting,Broadcasting +528593,Broadcasting,Broadcasting +528592,Broadcasting,Broadcasting +528590,Broadcasting,Broadcasting +528587,Broadcasting,Broadcasting +528585,Broadcasting,Broadcasting +528583,Broadcasting,Broadcasting +528581,Broadcasting,Broadcasting +528578,Broadcasting,Broadcasting +524817,Broadcasting,Broadcasting +524816,Broadcasting,Broadcasting +347042,Telecommunications,Telecommunications +347041,Telecommunications,Telecommunications +351175,Telecommunications,Telecommunications +351171,Telecommunications,Telecommunications +349807,Telecommunications,Telecommunications +347775,Telecommunications,Telecommunications +347774,Telecommunications,Telecommunications +347773,Telecommunications,Telecommunications +347772,Telecommunications,Telecommunications +347767,Telecommunications,Telecommunications +347764,Telecommunications,Telecommunications +347045,Telecommunications,Telecommunications +347044,Telecommunications,Telecommunications +312053,Aboriginal Affairs,Aboriginal Affairs +367645,Aboriginal Affairs,Aboriginal Affairs +492517,Science and Technology,Science and Technology +492515,Science and Technology,Science and Technology +86854,Science and Technology,Science and Technology +79614,Science and Technology,Science and Technology +78594,Science and Technology,Science and Technology +78539,Science and Technology,Science and Technology +78536,Science and Technology,Science and Technology +77367,Science and Technology,Science and Technology +77361,Science and Technology,Science and Technology +77359,Science and Technology,Science and Technology +77334,Science and Technology,Science and Technology +162243,Science and Technology,Science and Technology +162240,Science and Technology,Science and Technology +162234,Science and Technology,Science and Technology +162232,Science and Technology,Science and Technology +162230,Science and Technology,Science and Technology +162228,Science and Technology,Science and Technology +162227,Science and Technology,Science and Technology +162225,Science and Technology,Science and Technology +135724,Science and Technology,Science and Technology +125068,Science and Technology,Science and Technology +114145,Science and Technology,Science and Technology +109781,Science and Technology,Science and Technology +109779,Science and Technology,Science and Technology +106432,Science and Technology,Science and Technology +101323,Science and Technology,Science and Technology +90220,Science and Technology,Science and Technology +86934,Science and Technology,Science and Technology +86855,Science and Technology,Science and Technology +310530,Science and Technology,Science and Technology +310527,Science and Technology,Science and Technology +310524,Science and Technology,Science and Technology +310511,Science and Technology,Science and Technology +304290,Science and Technology,Science and Technology +304273,Science and Technology,Science and Technology +304264,Science and Technology,Science and Technology +297010,Science and Technology,Science and Technology +296970,Science and Technology,Science and Technology +296907,Science and Technology,Science and Technology +296897,Science and Technology,Science and Technology +291080,Science and Technology,Science and Technology +282353,Science and Technology,Science and Technology +282349,Science and Technology,Science and Technology +282334,Science and Technology,Science and Technology +244833,Science and Technology,Science and Technology +244831,Science and Technology,Science and Technology +223588,Science and Technology,Science and Technology +217129,Science and Technology,Science and Technology +217128,Science and Technology,Science and Technology +217127,Science and Technology,Science and Technology +217107,Science and Technology,Science and Technology +213407,Science and Technology,Science and Technology +212544,Science and Technology,Science and Technology +207595,Science and Technology,Science and Technology +207582,Science and Technology,Science and Technology +207578,Science and Technology,Science and Technology +202761,Science and Technology,Science and Technology +193132,Science and Technology,Science and Technology +193131,Science and Technology,Science and Technology +166020,Science and Technology,Science and Technology +162254,Science and Technology,Science and Technology +162247,Science and Technology,Science and Technology +400866,Science and Technology,Science and Technology +400862,Science and Technology,Science and Technology +400856,Science and Technology,Science and Technology +399204,Science and Technology,Science and Technology +399201,Science and Technology,Science and Technology +399199,Science and Technology,Science and Technology +399196,Science and Technology,Science and Technology +399192,Science and Technology,Science and Technology +399191,Science and Technology,Science and Technology +397148,Science and Technology,Science and Technology +397146,Science and Technology,Science and Technology +397145,Science and Technology,Science and Technology +397142,Science and Technology,Science and Technology +397134,Science and Technology,Science and Technology +394281,Science and Technology,Science and Technology +394279,Science and Technology,Science and Technology +394277,Science and Technology,Science and Technology +394275,Science and Technology,Science and Technology +394273,Science and Technology,Science and Technology +392911,Science and Technology,Science and Technology +392909,Science and Technology,Science and Technology +392908,Science and Technology,Science and Technology +391893,Science and Technology,Science and Technology +391858,Science and Technology,Science and Technology +391857,Science and Technology,Science and Technology +388283,Science and Technology,Science and Technology +388259,Science and Technology,Science and Technology +388222,Science and Technology,Science and Technology +388214,Science and Technology,Science and Technology +385691,Science and Technology,Science and Technology +385426,Science and Technology,Science and Technology +385418,Science and Technology,Science and Technology +384075,Science and Technology,Science and Technology +378313,Science and Technology,Science and Technology +376613,Science and Technology,Science and Technology +376606,Science and Technology,Science and Technology +376599,Science and Technology,Science and Technology +376593,Science and Technology,Science and Technology +374919,Science and Technology,Science and Technology +374912,Science and Technology,Science and Technology +374908,Science and Technology,Science and Technology +373165,Science and Technology,Science and Technology +369192,Science and Technology,Science and Technology +369189,Science and Technology,Science and Technology +369186,Science and Technology,Science and Technology +369077,Science and Technology,Science and Technology +369072,Science and Technology,Science and Technology +369064,Science and Technology,Science and Technology +369062,Science and Technology,Science and Technology +369059,Science and Technology,Science and Technology +366745,Science and Technology,Science and Technology +362375,Science and Technology,Science and Technology +362370,Science and Technology,Science and Technology +362369,Science and Technology,Science and Technology +362366,Science and Technology,Science and Technology +362355,Science and Technology,Science and Technology +362352,Science and Technology,Science and Technology +361213,Science and Technology,Science and Technology +361205,Science and Technology,Science and Technology +361204,Science and Technology,Science and Technology +357297,Science and Technology,Science and Technology +357296,Science and Technology,Science and Technology +356426,Science and Technology,Science and Technology +356423,Science and Technology,Science and Technology +351701,Science and Technology,Science and Technology +349208,Science and Technology,Science and Technology +347153,Science and Technology,Science and Technology +347152,Science and Technology,Science and Technology +347151,Science and Technology,Science and Technology +343842,Science and Technology,Science and Technology +338154,Science and Technology,Science and Technology +338151,Science and Technology,Science and Technology +327366,Science and Technology,Science and Technology +327364,Science and Technology,Science and Technology +327361,Science and Technology,Science and Technology +327358,Science and Technology,Science and Technology +325085,Science and Technology,Science and Technology +325083,Science and Technology,Science and Technology +489731,Science and Technology,Science and Technology +489729,Science and Technology,Science and Technology +489723,Science and Technology,Science and Technology +489720,Science and Technology,Science and Technology +489717,Science and Technology,Science and Technology +487039,Science and Technology,Science and Technology +483930,Science and Technology,Science and Technology +479303,Science and Technology,Science and Technology +471718,Science and Technology,Science and Technology +471717,Science and Technology,Science and Technology +471716,Science and Technology,Science and Technology +467427,Science and Technology,Science and Technology +467425,Science and Technology,Science and Technology +467423,Science and Technology,Science and Technology +467421,Science and Technology,Science and Technology +467415,Science and Technology,Science and Technology +467412,Science and Technology,Science and Technology +467410,Science and Technology,Science and Technology +467408,Science and Technology,Science and Technology +463936,Science and Technology,Science and Technology +459303,Science and Technology,Science and Technology +459302,Science and Technology,Science and Technology +458467,Science and Technology,Science and Technology +457975,Science and Technology,Science and Technology +456981,Science and Technology,Science and Technology +456975,Science and Technology,Science and Technology +456574,Science and Technology,Science and Technology +454754,Science and Technology,Science and Technology +454753,Science and Technology,Science and Technology +452836,Science and Technology,Science and Technology +448424,Science and Technology,Science and Technology +448110,Science and Technology,Science and Technology +447994,Science and Technology,Science and Technology +447990,Science and Technology,Science and Technology +447985,Science and Technology,Science and Technology +447979,Science and Technology,Science and Technology +447975,Science and Technology,Science and Technology +447965,Science and Technology,Science and Technology +447962,Science and Technology,Science and Technology +447955,Science and Technology,Science and Technology +447942,Science and Technology,Science and Technology +447930,Science and Technology,Science and Technology +445237,Science and Technology,Science and Technology +445231,Science and Technology,Science and Technology +445228,Science and Technology,Science and Technology +445224,Science and Technology,Science and Technology +442168,Science and Technology,Science and Technology +439815,Science and Technology,Science and Technology +437960,Science and Technology,Science and Technology +437958,Science and Technology,Science and Technology +434038,Science and Technology,Science and Technology +434037,Science and Technology,Science and Technology +434030,Science and Technology,Science and Technology +434028,Science and Technology,Science and Technology +430746,Science and Technology,Science and Technology +428257,Science and Technology,Science and Technology +426304,Science and Technology,Science and Technology +426298,Science and Technology,Science and Technology +426289,Science and Technology,Science and Technology +425989,Science and Technology,Science and Technology +425988,Science and Technology,Science and Technology +425986,Science and Technology,Science and Technology +425985,Science and Technology,Science and Technology +425977,Science and Technology,Science and Technology +425974,Science and Technology,Science and Technology +425969,Science and Technology,Science and Technology +424659,Science and Technology,Science and Technology +424658,Science and Technology,Science and Technology +424657,Science and Technology,Science and Technology +424656,Science and Technology,Science and Technology +424655,Science and Technology,Science and Technology +424654,Science and Technology,Science and Technology +424653,Science and Technology,Science and Technology +424652,Science and Technology,Science and Technology +423908,Science and Technology,Science and Technology +423891,Science and Technology,Science and Technology +423875,Science and Technology,Science and Technology +423870,Science and Technology,Science and Technology +423869,Science and Technology,Science and Technology +422564,Science and Technology,Science and Technology +422560,Science and Technology,Science and Technology +422558,Science and Technology,Science and Technology +422557,Science and Technology,Science and Technology +422556,Science and Technology,Science and Technology +422555,Science and Technology,Science and Technology +422554,Science and Technology,Science and Technology +422552,Science and Technology,Science and Technology +422548,Science and Technology,Science and Technology +422547,Science and Technology,Science and Technology +422524,Science and Technology,Science and Technology +422523,Science and Technology,Science and Technology +422522,Science and Technology,Science and Technology +422521,Science and Technology,Science and Technology +419710,Science and Technology,Science and Technology +419659,Science and Technology,Science and Technology +419656,Science and Technology,Science and Technology +419653,Science and Technology,Science and Technology +418256,Science and Technology,Science and Technology +418249,Science and Technology,Science and Technology +418248,Science and Technology,Science and Technology +418242,Science and Technology,Science and Technology +418235,Science and Technology,Science and Technology +418232,Science and Technology,Science and Technology +418228,Science and Technology,Science and Technology +415786,Science and Technology,Science and Technology +415785,Science and Technology,Science and Technology +415784,Science and Technology,Science and Technology +414134,Science and Technology,Science and Technology +414133,Science and Technology,Science and Technology +414018,Science and Technology,Science and Technology +413453,Science and Technology,Science and Technology +413450,Science and Technology,Science and Technology +413447,Science and Technology,Science and Technology +413444,Science and Technology,Science and Technology +410387,Science and Technology,Science and Technology +410386,Science and Technology,Science and Technology +410375,Science and Technology,Science and Technology +410373,Science and Technology,Science and Technology +408251,Science and Technology,Science and Technology +408250,Science and Technology,Science and Technology +408249,Science and Technology,Science and Technology +408248,Science and Technology,Science and Technology +406895,Science and Technology,Science and Technology +406894,Science and Technology,Science and Technology +406893,Science and Technology,Science and Technology +406891,Science and Technology,Science and Technology +406890,Science and Technology,Science and Technology +406889,Science and Technology,Science and Technology +406886,Science and Technology,Science and Technology +405831,Science and Technology,Science and Technology +405830,Science and Technology,Science and Technology +405829,Science and Technology,Science and Technology +403484,Science and Technology,Science and Technology +403482,Science and Technology,Science and Technology +403478,Science and Technology,Science and Technology +403477,Science and Technology,Science and Technology +403474,Science and Technology,Science and Technology +527657,Science and Technology,Science and Technology +526113,Science and Technology,Science and Technology +526087,Science and Technology,Science and Technology +520077,Science and Technology,Science and Technology +519750,Science and Technology,Science and Technology +516623,Science and Technology,Science and Technology +514015,Science and Technology,Science and Technology +512580,Science and Technology,Science and Technology +512579,Science and Technology,Science and Technology +510250,Science and Technology,Science and Technology +510248,Science and Technology,Science and Technology +510240,Science and Technology,Science and Technology +510239,Science and Technology,Science and Technology +510236,Science and Technology,Science and Technology +510235,Science and Technology,Science and Technology +507451,Science and Technology,Science and Technology +507444,Science and Technology,Science and Technology +500951,Science and Technology,Science and Technology +500949,Science and Technology,Science and Technology +500705,Science and Technology,Science and Technology +500704,Science and Technology,Science and Technology +500703,Science and Technology,Science and Technology +500702,Science and Technology,Science and Technology +498084,Science and Technology,Science and Technology +498078,Science and Technology,Science and Technology +498076,Science and Technology,Science and Technology +498074,Science and Technology,Science and Technology +497595,Science and Technology,Science and Technology +495458,Science and Technology,Science and Technology +495452,Science and Technology,Science and Technology +495448,Science and Technology,Science and Technology +495444,Science and Technology,Science and Technology +493059,Science and Technology,Science and Technology +492525,Science and Technology,Science and Technology +492524,Science and Technology,Science and Technology +315994,Science and Technology,Science and Technology +227325,Science and Technology,Science and Technology +189564,Science and Technology,Science and Technology +189562,Science and Technology,Science and Technology +189560,Science and Technology,Science and Technology +189558,Science and Technology,Science and Technology +180399,Science and Technology,Science and Technology +173410,Science and Technology,Science and Technology +163871,Science and Technology,Science and Technology +163867,Science and Technology,Science and Technology +162415,Science and Technology,Science and Technology +162409,Science and Technology,Science and Technology +162407,Science and Technology,Science and Technology +162403,Science and Technology,Science and Technology +331596,Science and Technology,Science and Technology +220967,Arts and Culture,Arts and Culture +99736,Aboriginal Affairs,Aboriginal Affairs +98677,Aboriginal Affairs,Aboriginal Affairs +457123,Broadcasting,Broadcasting +457119,Broadcasting,Broadcasting +88022,Broadcasting,Broadcasting +77617,Broadcasting,Broadcasting +145638,Broadcasting,Broadcasting +114158,Broadcasting,Broadcasting +114153,Broadcasting,Broadcasting +94176,Broadcasting,Broadcasting +94175,Broadcasting,Broadcasting +193804,Broadcasting,Broadcasting +193801,Broadcasting,Broadcasting +189924,Broadcasting,Broadcasting +185371,Broadcasting,Broadcasting +175108,Broadcasting,Broadcasting +175107,Broadcasting,Broadcasting +173532,Broadcasting,Broadcasting +173531,Broadcasting,Broadcasting +170681,Broadcasting,Broadcasting +168390,Broadcasting,Broadcasting +168389,Broadcasting,Broadcasting +168387,Broadcasting,Broadcasting +163894,Broadcasting,Broadcasting +163886,Broadcasting,Broadcasting +162161,Broadcasting,Broadcasting +162160,Broadcasting,Broadcasting +162159,Broadcasting,Broadcasting +162157,Broadcasting,Broadcasting +162154,Broadcasting,Broadcasting +157078,Broadcasting,Broadcasting +157073,Broadcasting,Broadcasting +154791,Broadcasting,Broadcasting +153404,Broadcasting,Broadcasting +152184,Broadcasting,Broadcasting +152183,Broadcasting,Broadcasting +152181,Broadcasting,Broadcasting +150300,Broadcasting,Broadcasting +150298,Broadcasting,Broadcasting +148094,Broadcasting,Broadcasting +259311,Broadcasting,Broadcasting +245233,Broadcasting,Broadcasting +245232,Broadcasting,Broadcasting +240987,Broadcasting,Broadcasting +240986,Broadcasting,Broadcasting +240985,Broadcasting,Broadcasting +233569,Broadcasting,Broadcasting +223371,Broadcasting,Broadcasting +217388,Broadcasting,Broadcasting +217387,Broadcasting,Broadcasting +202712,Broadcasting,Broadcasting +199962,Broadcasting,Broadcasting +380952,Broadcasting,Broadcasting +379142,Broadcasting,Broadcasting +372340,Broadcasting,Broadcasting +369026,Broadcasting,Broadcasting +369021,Broadcasting,Broadcasting +369012,Broadcasting,Broadcasting +369010,Broadcasting,Broadcasting +361210,Broadcasting,Broadcasting +351167,Broadcasting,Broadcasting +341061,Broadcasting,Broadcasting +341060,Broadcasting,Broadcasting +341057,Broadcasting,Broadcasting +335753,Broadcasting,Broadcasting +313170,Broadcasting,Broadcasting +454452,Broadcasting,Broadcasting +454451,Broadcasting,Broadcasting +451987,Broadcasting,Broadcasting +451984,Broadcasting,Broadcasting +449630,Broadcasting,Broadcasting +449629,Broadcasting,Broadcasting +449628,Broadcasting,Broadcasting +447118,Broadcasting,Broadcasting +447115,Broadcasting,Broadcasting +447114,Broadcasting,Broadcasting +445624,Broadcasting,Broadcasting +445616,Broadcasting,Broadcasting +443901,Broadcasting,Broadcasting +443895,Broadcasting,Broadcasting +441976,Broadcasting,Broadcasting +441974,Broadcasting,Broadcasting +441973,Broadcasting,Broadcasting +441970,Broadcasting,Broadcasting +441965,Broadcasting,Broadcasting +439195,Broadcasting,Broadcasting +439182,Broadcasting,Broadcasting +435626,Broadcasting,Broadcasting +435624,Broadcasting,Broadcasting +435622,Broadcasting,Broadcasting +435619,Broadcasting,Broadcasting +433764,Broadcasting,Broadcasting +433762,Broadcasting,Broadcasting +432421,Broadcasting,Broadcasting +430917,Broadcasting,Broadcasting +430908,Broadcasting,Broadcasting +429029,Broadcasting,Broadcasting +429020,Broadcasting,Broadcasting +426151,Broadcasting,Broadcasting +426150,Broadcasting,Broadcasting +426148,Broadcasting,Broadcasting +426147,Broadcasting,Broadcasting +426146,Broadcasting,Broadcasting +426145,Broadcasting,Broadcasting +426143,Broadcasting,Broadcasting +423618,Broadcasting,Broadcasting +423617,Broadcasting,Broadcasting +423616,Broadcasting,Broadcasting +423615,Broadcasting,Broadcasting +421922,Broadcasting,Broadcasting +421919,Broadcasting,Broadcasting +421917,Broadcasting,Broadcasting +419477,Broadcasting,Broadcasting +415882,Broadcasting,Broadcasting +415880,Broadcasting,Broadcasting +415877,Broadcasting,Broadcasting +415874,Broadcasting,Broadcasting +415872,Broadcasting,Broadcasting +415863,Broadcasting,Broadcasting +415834,Broadcasting,Broadcasting +415833,Broadcasting,Broadcasting +415830,Broadcasting,Broadcasting +415828,Broadcasting,Broadcasting +415824,Broadcasting,Broadcasting +415819,Broadcasting,Broadcasting +415814,Broadcasting,Broadcasting +415808,Broadcasting,Broadcasting +409696,Broadcasting,Broadcasting +409689,Broadcasting,Broadcasting +407728,Broadcasting,Broadcasting +407727,Broadcasting,Broadcasting +405134,Broadcasting,Broadcasting +405131,Broadcasting,Broadcasting +403582,Broadcasting,Broadcasting +403578,Broadcasting,Broadcasting +403575,Broadcasting,Broadcasting +400624,Broadcasting,Broadcasting +400623,Broadcasting,Broadcasting +400597,Broadcasting,Broadcasting +400594,Broadcasting,Broadcasting +396349,Broadcasting,Broadcasting +385310,Broadcasting,Broadcasting +543632,Broadcasting,Broadcasting +543631,Broadcasting,Broadcasting +543630,Broadcasting,Broadcasting +543629,Broadcasting,Broadcasting +543628,Broadcasting,Broadcasting +541418,Broadcasting,Broadcasting +539618,Broadcasting,Broadcasting +537859,Broadcasting,Broadcasting +537858,Broadcasting,Broadcasting +537856,Broadcasting,Broadcasting +537853,Broadcasting,Broadcasting +534914,Broadcasting,Broadcasting +534911,Broadcasting,Broadcasting +534792,Broadcasting,Broadcasting +534790,Broadcasting,Broadcasting +534788,Broadcasting,Broadcasting +534786,Broadcasting,Broadcasting +534783,Broadcasting,Broadcasting +532209,Broadcasting,Broadcasting +532204,Broadcasting,Broadcasting +532202,Broadcasting,Broadcasting +532201,Broadcasting,Broadcasting +524693,Broadcasting,Broadcasting +524692,Broadcasting,Broadcasting +524691,Broadcasting,Broadcasting +524690,Broadcasting,Broadcasting +522361,Broadcasting,Broadcasting +522360,Broadcasting,Broadcasting +522356,Broadcasting,Broadcasting +522354,Broadcasting,Broadcasting +522351,Broadcasting,Broadcasting +522350,Broadcasting,Broadcasting +522349,Broadcasting,Broadcasting +522347,Broadcasting,Broadcasting +519968,Broadcasting,Broadcasting +519954,Broadcasting,Broadcasting +519952,Broadcasting,Broadcasting +519948,Broadcasting,Broadcasting +517580,Broadcasting,Broadcasting +517576,Broadcasting,Broadcasting +517572,Broadcasting,Broadcasting +517568,Broadcasting,Broadcasting +517560,Broadcasting,Broadcasting +515705,Broadcasting,Broadcasting +515704,Broadcasting,Broadcasting +514666,Broadcasting,Broadcasting +512454,Broadcasting,Broadcasting +512449,Broadcasting,Broadcasting +510792,Broadcasting,Broadcasting +510790,Broadcasting,Broadcasting +508096,Broadcasting,Broadcasting +508093,Broadcasting,Broadcasting +504882,Broadcasting,Broadcasting +504880,Broadcasting,Broadcasting +504879,Broadcasting,Broadcasting +504874,Broadcasting,Broadcasting +504869,Broadcasting,Broadcasting +504863,Broadcasting,Broadcasting +504844,Broadcasting,Broadcasting +504842,Broadcasting,Broadcasting +501047,Broadcasting,Broadcasting +501046,Broadcasting,Broadcasting +501045,Broadcasting,Broadcasting +501044,Broadcasting,Broadcasting +498456,Broadcasting,Broadcasting +498451,Broadcasting,Broadcasting +498449,Broadcasting,Broadcasting +498446,Broadcasting,Broadcasting +498444,Broadcasting,Broadcasting +498442,Broadcasting,Broadcasting +498437,Broadcasting,Broadcasting +495511,Broadcasting,Broadcasting +495509,Broadcasting,Broadcasting +495507,Broadcasting,Broadcasting +495504,Broadcasting,Broadcasting +495502,Broadcasting,Broadcasting +495501,Broadcasting,Broadcasting +495500,Broadcasting,Broadcasting +495492,Broadcasting,Broadcasting +493186,Broadcasting,Broadcasting +493182,Broadcasting,Broadcasting +493181,Broadcasting,Broadcasting +493178,Broadcasting,Broadcasting +493175,Broadcasting,Broadcasting +493171,Broadcasting,Broadcasting +493167,Broadcasting,Broadcasting +493166,Broadcasting,Broadcasting +490728,Broadcasting,Broadcasting +490723,Broadcasting,Broadcasting +490710,Broadcasting,Broadcasting +490703,Broadcasting,Broadcasting +490700,Broadcasting,Broadcasting +486976,Broadcasting,Broadcasting +486974,Broadcasting,Broadcasting +486973,Broadcasting,Broadcasting +486972,Broadcasting,Broadcasting +486970,Broadcasting,Broadcasting +484741,Broadcasting,Broadcasting +484734,Broadcasting,Broadcasting +484731,Broadcasting,Broadcasting +484730,Broadcasting,Broadcasting +484728,Broadcasting,Broadcasting +481847,Broadcasting,Broadcasting +481843,Broadcasting,Broadcasting +481841,Broadcasting,Broadcasting +481839,Broadcasting,Broadcasting +481837,Broadcasting,Broadcasting +481835,Broadcasting,Broadcasting +481832,Broadcasting,Broadcasting +479853,Broadcasting,Broadcasting +477568,Broadcasting,Broadcasting +477565,Broadcasting,Broadcasting +477556,Broadcasting,Broadcasting +475403,Broadcasting,Broadcasting +475394,Broadcasting,Broadcasting +475385,Broadcasting,Broadcasting +473287,Broadcasting,Broadcasting +473284,Broadcasting,Broadcasting +473273,Broadcasting,Broadcasting +473271,Broadcasting,Broadcasting +473268,Broadcasting,Broadcasting +473254,Broadcasting,Broadcasting +473251,Broadcasting,Broadcasting +470692,Broadcasting,Broadcasting +470674,Broadcasting,Broadcasting +470666,Broadcasting,Broadcasting +470658,Broadcasting,Broadcasting +470653,Broadcasting,Broadcasting +467683,Broadcasting,Broadcasting +467681,Broadcasting,Broadcasting +467677,Broadcasting,Broadcasting +467670,Broadcasting,Broadcasting +467659,Broadcasting,Broadcasting +467653,Broadcasting,Broadcasting +467646,Broadcasting,Broadcasting +467640,Broadcasting,Broadcasting +467628,Broadcasting,Broadcasting +464717,Broadcasting,Broadcasting +464713,Broadcasting,Broadcasting +464711,Broadcasting,Broadcasting +464708,Broadcasting,Broadcasting +462567,Broadcasting,Broadcasting +462566,Broadcasting,Broadcasting +462565,Broadcasting,Broadcasting +461426,Broadcasting,Broadcasting +461276,Broadcasting,Broadcasting +461275,Broadcasting,Broadcasting +459984,Broadcasting,Broadcasting +459981,Broadcasting,Broadcasting +459442,Broadcasting,Broadcasting +459440,Broadcasting,Broadcasting +486259,Aboriginal Affairs,Aboriginal Affairs +434340,Science and Technology,Science and Technology +434338,Science and Technology,Science and Technology +319096,Science and Technology,Science and Technology +319018,Science and Technology,Science and Technology +319014,Science and Technology,Science and Technology +319012,Science and Technology,Science and Technology +319009,Science and Technology,Science and Technology +318992,Science and Technology,Science and Technology +433332,Science and Technology,Science and Technology +433331,Science and Technology,Science and Technology +432127,Science and Technology,Science and Technology +430423,Science and Technology,Science and Technology +423413,Science and Technology,Science and Technology +423408,Science and Technology,Science and Technology +415226,Science and Technology,Science and Technology +415225,Science and Technology,Science and Technology +411479,Science and Technology,Science and Technology +411478,Science and Technology,Science and Technology +409042,Science and Technology,Science and Technology +409040,Science and Technology,Science and Technology +407303,Science and Technology,Science and Technology +407302,Science and Technology,Science and Technology +401989,Science and Technology,Science and Technology +397739,Science and Technology,Science and Technology +397738,Science and Technology,Science and Technology +397737,Science and Technology,Science and Technology +395331,Science and Technology,Science and Technology +386585,Science and Technology,Science and Technology +382991,Science and Technology,Science and Technology +382001,Science and Technology,Science and Technology +382000,Science and Technology,Science and Technology +380534,Science and Technology,Science and Technology +378278,Science and Technology,Science and Technology +378275,Science and Technology,Science and Technology +375554,Science and Technology,Science and Technology +373521,Science and Technology,Science and Technology +367872,Science and Technology,Science and Technology +367871,Science and Technology,Science and Technology +362982,Science and Technology,Science and Technology +361765,Science and Technology,Science and Technology +360942,Science and Technology,Science and Technology +355265,Science and Technology,Science and Technology +348217,Science and Technology,Science and Technology +342303,Science and Technology,Science and Technology +337522,Science and Technology,Science and Technology +334902,Science and Technology,Science and Technology +330106,Science and Technology,Science and Technology +545182,Science and Technology,Science and Technology +545181,Science and Technology,Science and Technology +545180,Science and Technology,Science and Technology +545179,Science and Technology,Science and Technology +545177,Science and Technology,Science and Technology +542671,Science and Technology,Science and Technology +542669,Science and Technology,Science and Technology +542668,Science and Technology,Science and Technology +542666,Science and Technology,Science and Technology +542617,Science and Technology,Science and Technology +542616,Science and Technology,Science and Technology +542614,Science and Technology,Science and Technology +542613,Science and Technology,Science and Technology +542612,Science and Technology,Science and Technology +540982,Science and Technology,Science and Technology +540981,Science and Technology,Science and Technology +540980,Science and Technology,Science and Technology +539547,Science and Technology,Science and Technology +539543,Science and Technology,Science and Technology +539541,Science and Technology,Science and Technology +539539,Science and Technology,Science and Technology +539538,Science and Technology,Science and Technology +539537,Science and Technology,Science and Technology +539536,Science and Technology,Science and Technology +538789,Science and Technology,Science and Technology +538099,Science and Technology,Science and Technology +538061,Science and Technology,Science and Technology +538054,Science and Technology,Science and Technology +538043,Science and Technology,Science and Technology +538040,Science and Technology,Science and Technology +537171,Science and Technology,Science and Technology +537168,Science and Technology,Science and Technology +537166,Science and Technology,Science and Technology +533222,Science and Technology,Science and Technology +533221,Science and Technology,Science and Technology +533220,Science and Technology,Science and Technology +533219,Science and Technology,Science and Technology +530681,Science and Technology,Science and Technology +530680,Science and Technology,Science and Technology +530679,Science and Technology,Science and Technology +530678,Science and Technology,Science and Technology +527433,Science and Technology,Science and Technology +527431,Science and Technology,Science and Technology +524028,Science and Technology,Science and Technology +524027,Science and Technology,Science and Technology +524026,Science and Technology,Science and Technology +521008,Science and Technology,Science and Technology +520954,Science and Technology,Science and Technology +520793,Science and Technology,Science and Technology +520792,Science and Technology,Science and Technology +520790,Science and Technology,Science and Technology +518686,Science and Technology,Science and Technology +516480,Science and Technology,Science and Technology +516476,Science and Technology,Science and Technology +516475,Science and Technology,Science and Technology +516473,Science and Technology,Science and Technology +516471,Science and Technology,Science and Technology +515068,Science and Technology,Science and Technology +513620,Science and Technology,Science and Technology +512339,Science and Technology,Science and Technology +506587,Science and Technology,Science and Technology +506586,Science and Technology,Science and Technology +506585,Science and Technology,Science and Technology +503556,Science and Technology,Science and Technology +500529,Science and Technology,Science and Technology +497501,Science and Technology,Science and Technology +497254,Science and Technology,Science and Technology +488916,Science and Technology,Science and Technology +483211,Science and Technology,Science and Technology +483210,Science and Technology,Science and Technology +480952,Science and Technology,Science and Technology +480951,Science and Technology,Science and Technology +480950,Science and Technology,Science and Technology +463520,Science and Technology,Science and Technology +463519,Science and Technology,Science and Technology +451495,Science and Technology,Science and Technology +448737,Science and Technology,Science and Technology +446520,Science and Technology,Science and Technology +446519,Science and Technology,Science and Technology +446518,Science and Technology,Science and Technology +446517,Science and Technology,Science and Technology +446515,Science and Technology,Science and Technology +444405,Science and Technology,Science and Technology +444404,Science and Technology,Science and Technology +443067,Science and Technology,Science and Technology +443066,Science and Technology,Science and Technology +440792,Science and Technology,Science and Technology +440789,Science and Technology,Science and Technology +437431,Science and Technology,Science and Technology +437430,Science and Technology,Science and Technology +437428,Science and Technology,Science and Technology +437427,Science and Technology,Science and Technology +437426,Science and Technology,Science and Technology +437422,Science and Technology,Science and Technology +513620,Telecommunications,Telecommunications +506586,Telecommunications,Telecommunications +382991,Telecommunications,Telecommunications +380534,Telecommunications,Telecommunications +367872,Telecommunications,Telecommunications +367871,Telecommunications,Telecommunications +362982,Telecommunications,Telecommunications +361765,Telecommunications,Telecommunications +483210,Telecommunications,Telecommunications +451495,Telecommunications,Telecommunications +446520,Telecommunications,Telecommunications +443066,Telecommunications,Telecommunications +437419,Telecommunications,Telecommunications +434340,Telecommunications,Telecommunications +434339,Telecommunications,Telecommunications +434338,Telecommunications,Telecommunications +433332,Telecommunications,Telecommunications +433331,Telecommunications,Telecommunications +432127,Telecommunications,Telecommunications +430423,Telecommunications,Telecommunications +423413,Telecommunications,Telecommunications +423408,Telecommunications,Telecommunications +452984,Arts and Culture,Arts and Culture +526109,Arts and Culture,Arts and Culture +487985,Arts and Culture,Arts and Culture +482545,Arts and Culture,Arts and Culture +478422,Arts and Culture,Arts and Culture +476073,Arts and Culture,Arts and Culture +512915,Arts and Culture,Arts and Culture +512914,Arts and Culture,Arts and Culture +203853,Arts and Culture,Arts and Culture +203852,Arts and Culture,Arts and Culture +203851,Arts and Culture,Arts and Culture +343199,Arts and Culture,Arts and Culture +343198,Arts and Culture,Arts and Culture +343197,Arts and Culture,Arts and Culture +512913,Arts and Culture,Arts and Culture +512912,Arts and Culture,Arts and Culture +512911,Arts and Culture,Arts and Culture +501339,Arts and Culture,Arts and Culture +500209,Arts and Culture,Arts and Culture +500206,Arts and Culture,Arts and Culture +500204,Arts and Culture,Arts and Culture +500203,Arts and Culture,Arts and Culture +497024,Arts and Culture,Arts and Culture +490161,Arts and Culture,Arts and Culture +490160,Arts and Culture,Arts and Culture +490158,Arts and Culture,Arts and Culture +490157,Arts and Culture,Arts and Culture +490156,Arts and Culture,Arts and Culture +490154,Arts and Culture,Arts and Culture +487673,Arts and Culture,Arts and Culture +487672,Arts and Culture,Arts and Culture +487671,Arts and Culture,Arts and Culture +487669,Arts and Culture,Arts and Culture +483949,Arts and Culture,Arts and Culture +483945,Arts and Culture,Arts and Culture +483944,Arts and Culture,Arts and Culture +483929,Arts and Culture,Arts and Culture +483928,Arts and Culture,Arts and Culture +483927,Arts and Culture,Arts and Culture +483926,Arts and Culture,Arts and Culture +482922,Arts and Culture,Arts and Culture +482921,Arts and Culture,Arts and Culture +481111,Arts and Culture,Arts and Culture +481110,Arts and Culture,Arts and Culture +481109,Arts and Culture,Arts and Culture +481108,Arts and Culture,Arts and Culture +480666,Arts and Culture,Arts and Culture +480665,Arts and Culture,Arts and Culture +480664,Arts and Culture,Arts and Culture +480663,Arts and Culture,Arts and Culture +480662,Arts and Culture,Arts and Culture +478589,Arts and Culture,Arts and Culture +478587,Arts and Culture,Arts and Culture +478586,Arts and Culture,Arts and Culture +468788,Arts and Culture,Arts and Culture +468787,Arts and Culture,Arts and Culture +463738,Arts and Culture,Arts and Culture +463505,Arts and Culture,Arts and Culture +461345,Arts and Culture,Arts and Culture +459840,Arts and Culture,Arts and Culture +457887,Arts and Culture,Arts and Culture +456641,Arts and Culture,Arts and Culture +453368,Arts and Culture,Arts and Culture +453367,Arts and Culture,Arts and Culture +453366,Arts and Culture,Arts and Culture +453365,Arts and Culture,Arts and Culture +444764,Arts and Culture,Arts and Culture +444763,Arts and Culture,Arts and Culture +435566,Arts and Culture,Arts and Culture +435564,Arts and Culture,Arts and Culture +435561,Arts and Culture,Arts and Culture +432181,Arts and Culture,Arts and Culture +431580,Arts and Culture,Arts and Culture +426683,Arts and Culture,Arts and Culture +410206,Arts and Culture,Arts and Culture +406328,Arts and Culture,Arts and Culture +541025,Arts and Culture,Arts and Culture +541024,Arts and Culture,Arts and Culture +541023,Arts and Culture,Arts and Culture +534361,Arts and Culture,Arts and Culture +522019,Arts and Culture,Arts and Culture +522018,Arts and Culture,Arts and Culture +522017,Arts and Culture,Arts and Culture +517823,Arts and Culture,Arts and Culture +517819,Arts and Culture,Arts and Culture +517811,Arts and Culture,Arts and Culture +512918,Arts and Culture,Arts and Culture +512917,Arts and Culture,Arts and Culture +543634,Broadcasting,Broadcasting +543633,Broadcasting,Broadcasting +160750,Broadcasting,Broadcasting +160748,Broadcasting,Broadcasting +343199,Broadcasting,Broadcasting +343198,Broadcasting,Broadcasting +463738,Broadcasting,Broadcasting +463505,Broadcasting,Broadcasting +461345,Broadcasting,Broadcasting +459840,Broadcasting,Broadcasting +457887,Broadcasting,Broadcasting +456641,Broadcasting,Broadcasting +453368,Broadcasting,Broadcasting +453367,Broadcasting,Broadcasting +453366,Broadcasting,Broadcasting +444764,Broadcasting,Broadcasting +444763,Broadcasting,Broadcasting +435566,Broadcasting,Broadcasting +435564,Broadcasting,Broadcasting +435561,Broadcasting,Broadcasting +432181,Broadcasting,Broadcasting +431579,Broadcasting,Broadcasting +426684,Broadcasting,Broadcasting +426683,Broadcasting,Broadcasting +406328,Broadcasting,Broadcasting +541026,Broadcasting,Broadcasting +541025,Broadcasting,Broadcasting +541024,Broadcasting,Broadcasting +541023,Broadcasting,Broadcasting +541022,Broadcasting,Broadcasting +534365,Broadcasting,Broadcasting +534363,Broadcasting,Broadcasting +534362,Broadcasting,Broadcasting +534361,Broadcasting,Broadcasting +530945,Broadcasting,Broadcasting +529773,Broadcasting,Broadcasting +529772,Broadcasting,Broadcasting +525230,Broadcasting,Broadcasting +525229,Broadcasting,Broadcasting +525228,Broadcasting,Broadcasting +522023,Broadcasting,Broadcasting +522021,Broadcasting,Broadcasting +522017,Broadcasting,Broadcasting +517837,Broadcasting,Broadcasting +517832,Broadcasting,Broadcasting +517830,Broadcasting,Broadcasting +517825,Broadcasting,Broadcasting +517823,Broadcasting,Broadcasting +517819,Broadcasting,Broadcasting +517816,Broadcasting,Broadcasting +517811,Broadcasting,Broadcasting +512918,Broadcasting,Broadcasting +512917,Broadcasting,Broadcasting +512916,Broadcasting,Broadcasting +512915,Broadcasting,Broadcasting +512914,Broadcasting,Broadcasting +512913,Broadcasting,Broadcasting +512912,Broadcasting,Broadcasting +512911,Broadcasting,Broadcasting +510212,Broadcasting,Broadcasting +510211,Broadcasting,Broadcasting +507936,Broadcasting,Broadcasting +507934,Broadcasting,Broadcasting +507927,Broadcasting,Broadcasting +505647,Broadcasting,Broadcasting +505645,Broadcasting,Broadcasting +505644,Broadcasting,Broadcasting +501339,Broadcasting,Broadcasting +501337,Broadcasting,Broadcasting +500209,Broadcasting,Broadcasting +500208,Broadcasting,Broadcasting +500207,Broadcasting,Broadcasting +500206,Broadcasting,Broadcasting +500205,Broadcasting,Broadcasting +500204,Broadcasting,Broadcasting +500203,Broadcasting,Broadcasting +497025,Broadcasting,Broadcasting +497024,Broadcasting,Broadcasting +497023,Broadcasting,Broadcasting +492982,Broadcasting,Broadcasting +490162,Broadcasting,Broadcasting +490161,Broadcasting,Broadcasting +490160,Broadcasting,Broadcasting +490158,Broadcasting,Broadcasting +490157,Broadcasting,Broadcasting +490156,Broadcasting,Broadcasting +490154,Broadcasting,Broadcasting +490153,Broadcasting,Broadcasting +487673,Broadcasting,Broadcasting +487672,Broadcasting,Broadcasting +487671,Broadcasting,Broadcasting +487669,Broadcasting,Broadcasting +483949,Broadcasting,Broadcasting +483945,Broadcasting,Broadcasting +483944,Broadcasting,Broadcasting +483929,Broadcasting,Broadcasting +483928,Broadcasting,Broadcasting +482922,Broadcasting,Broadcasting +482921,Broadcasting,Broadcasting +482920,Broadcasting,Broadcasting +481108,Broadcasting,Broadcasting +480664,Broadcasting,Broadcasting +468788,Broadcasting,Broadcasting +534363,Telecommunications,Telecommunications +482922,Telecommunications,Telecommunications +160748,Telecommunications,Telecommunications +343199,Telecommunications,Telecommunications +343198,Telecommunications,Telecommunications +482921,Telecommunications,Telecommunications +482920,Telecommunications,Telecommunications +480664,Telecommunications,Telecommunications +468788,Telecommunications,Telecommunications +461345,Telecommunications,Telecommunications +459840,Telecommunications,Telecommunications +456641,Telecommunications,Telecommunications +453368,Telecommunications,Telecommunications +453367,Telecommunications,Telecommunications +453366,Telecommunications,Telecommunications +444764,Telecommunications,Telecommunications +435566,Telecommunications,Telecommunications +426683,Telecommunications,Telecommunications +510185,Broadcasting,Broadcasting +510180,Broadcasting,Broadcasting +236855,Broadcasting,Broadcasting +236854,Broadcasting,Broadcasting +236852,Broadcasting,Broadcasting +223483,Broadcasting,Broadcasting +217769,Broadcasting,Broadcasting +217768,Broadcasting,Broadcasting +207601,Broadcasting,Broadcasting +207600,Broadcasting,Broadcasting +207594,Broadcasting,Broadcasting +207591,Broadcasting,Broadcasting +207584,Broadcasting,Broadcasting +202593,Broadcasting,Broadcasting +202591,Broadcasting,Broadcasting +200367,Broadcasting,Broadcasting +200363,Broadcasting,Broadcasting +189547,Broadcasting,Broadcasting +189543,Broadcasting,Broadcasting +189541,Broadcasting,Broadcasting +189538,Broadcasting,Broadcasting +189424,Broadcasting,Broadcasting +394209,Broadcasting,Broadcasting +394203,Broadcasting,Broadcasting +394200,Broadcasting,Broadcasting +392390,Broadcasting,Broadcasting +391392,Broadcasting,Broadcasting +388388,Broadcasting,Broadcasting +385447,Broadcasting,Broadcasting +379634,Broadcasting,Broadcasting +376603,Broadcasting,Broadcasting +365250,Broadcasting,Broadcasting +362339,Broadcasting,Broadcasting +359819,Broadcasting,Broadcasting +353971,Broadcasting,Broadcasting +349475,Broadcasting,Broadcasting +349031,Broadcasting,Broadcasting +349026,Broadcasting,Broadcasting +341660,Broadcasting,Broadcasting +341658,Broadcasting,Broadcasting +338573,Broadcasting,Broadcasting +335901,Broadcasting,Broadcasting +335900,Broadcasting,Broadcasting +331438,Broadcasting,Broadcasting +324914,Broadcasting,Broadcasting +315534,Broadcasting,Broadcasting +313087,Broadcasting,Broadcasting +310198,Broadcasting,Broadcasting +310195,Broadcasting,Broadcasting +310191,Broadcasting,Broadcasting +269121,Broadcasting,Broadcasting +263370,Broadcasting,Broadcasting +259549,Broadcasting,Broadcasting +254232,Broadcasting,Broadcasting +254231,Broadcasting,Broadcasting +254229,Broadcasting,Broadcasting +250807,Broadcasting,Broadcasting +245479,Broadcasting,Broadcasting +241164,Broadcasting,Broadcasting +236859,Broadcasting,Broadcasting +236858,Broadcasting,Broadcasting +236857,Broadcasting,Broadcasting +510179,Broadcasting,Broadcasting +510178,Broadcasting,Broadcasting +508142,Broadcasting,Broadcasting +508136,Broadcasting,Broadcasting +504837,Broadcasting,Broadcasting +504835,Broadcasting,Broadcasting +504834,Broadcasting,Broadcasting +504825,Broadcasting,Broadcasting +498951,Broadcasting,Broadcasting +498948,Broadcasting,Broadcasting +498946,Broadcasting,Broadcasting +495915,Broadcasting,Broadcasting +493606,Broadcasting,Broadcasting +493603,Broadcasting,Broadcasting +493595,Broadcasting,Broadcasting +490632,Broadcasting,Broadcasting +490554,Broadcasting,Broadcasting +482378,Broadcasting,Broadcasting +477870,Broadcasting,Broadcasting +475388,Broadcasting,Broadcasting +473616,Broadcasting,Broadcasting +473610,Broadcasting,Broadcasting +473603,Broadcasting,Broadcasting +470868,Broadcasting,Broadcasting +467730,Broadcasting,Broadcasting +467716,Broadcasting,Broadcasting +462069,Broadcasting,Broadcasting +457553,Broadcasting,Broadcasting +452131,Broadcasting,Broadcasting +452126,Broadcasting,Broadcasting +441803,Broadcasting,Broadcasting +439293,Broadcasting,Broadcasting +439291,Broadcasting,Broadcasting +435699,Broadcasting,Broadcasting +435644,Broadcasting,Broadcasting +435639,Broadcasting,Broadcasting +435636,Broadcasting,Broadcasting +423771,Broadcasting,Broadcasting +423756,Broadcasting,Broadcasting +422627,Broadcasting,Broadcasting +422620,Broadcasting,Broadcasting +419951,Broadcasting,Broadcasting +419938,Broadcasting,Broadcasting +418252,Broadcasting,Broadcasting +418074,Broadcasting,Broadcasting +416581,Broadcasting,Broadcasting +416532,Broadcasting,Broadcasting +416522,Broadcasting,Broadcasting +412668,Broadcasting,Broadcasting +412652,Broadcasting,Broadcasting +412638,Broadcasting,Broadcasting +409626,Broadcasting,Broadcasting +408086,Broadcasting,Broadcasting +408085,Broadcasting,Broadcasting +405524,Broadcasting,Broadcasting +405518,Broadcasting,Broadcasting +405514,Broadcasting,Broadcasting +405485,Broadcasting,Broadcasting +400641,Broadcasting,Broadcasting +398416,Broadcasting,Broadcasting +543398,Broadcasting,Broadcasting +543324,Broadcasting,Broadcasting +541389,Broadcasting,Broadcasting +541386,Broadcasting,Broadcasting +541383,Broadcasting,Broadcasting +541379,Broadcasting,Broadcasting +541372,Broadcasting,Broadcasting +539520,Broadcasting,Broadcasting +538169,Broadcasting,Broadcasting +537772,Broadcasting,Broadcasting +537765,Broadcasting,Broadcasting +537760,Broadcasting,Broadcasting +534708,Broadcasting,Broadcasting +534707,Broadcasting,Broadcasting +534677,Broadcasting,Broadcasting +531429,Broadcasting,Broadcasting +531427,Broadcasting,Broadcasting +522564,Broadcasting,Broadcasting +522562,Broadcasting,Broadcasting +519526,Broadcasting,Broadcasting +513003,Broadcasting,Broadcasting +473593,Telecommunications,Telecommunications +470863,Telecommunications,Telecommunications +202584,Telecommunications,Telecommunications +200369,Telecommunications,Telecommunications +194904,Telecommunications,Telecommunications +194903,Telecommunications,Telecommunications +194899,Telecommunications,Telecommunications +194896,Telecommunications,Telecommunications +189547,Telecommunications,Telecommunications +189541,Telecommunications,Telecommunications +189538,Telecommunications,Telecommunications +189464,Telecommunications,Telecommunications +189446,Telecommunications,Telecommunications +189444,Telecommunications,Telecommunications +189424,Telecommunications,Telecommunications +185861,Telecommunications,Telecommunications +185857,Telecommunications,Telecommunications +185852,Telecommunications,Telecommunications +185847,Telecommunications,Telecommunications +185805,Telecommunications,Telecommunications +185804,Telecommunications,Telecommunications +185784,Telecommunications,Telecommunications +175455,Telecommunications,Telecommunications +175453,Telecommunications,Telecommunications +175452,Telecommunications,Telecommunications +175451,Telecommunications,Telecommunications +175450,Telecommunications,Telecommunications +175449,Telecommunications,Telecommunications +175448,Telecommunications,Telecommunications +304261,Telecommunications,Telecommunications +304259,Telecommunications,Telecommunications +296658,Telecommunications,Telecommunications +291870,Telecommunications,Telecommunications +291075,Telecommunications,Telecommunications +291074,Telecommunications,Telecommunications +291073,Telecommunications,Telecommunications +291072,Telecommunications,Telecommunications +290509,Telecommunications,Telecommunications +286877,Telecommunications,Telecommunications +286874,Telecommunications,Telecommunications +286791,Telecommunications,Telecommunications +286787,Telecommunications,Telecommunications +286786,Telecommunications,Telecommunications +286785,Telecommunications,Telecommunications +286784,Telecommunications,Telecommunications +286782,Telecommunications,Telecommunications +286781,Telecommunications,Telecommunications +286776,Telecommunications,Telecommunications +286775,Telecommunications,Telecommunications +282510,Telecommunications,Telecommunications +282509,Telecommunications,Telecommunications +277155,Telecommunications,Telecommunications +277153,Telecommunications,Telecommunications +273510,Telecommunications,Telecommunications +273508,Telecommunications,Telecommunications +269123,Telecommunications,Telecommunications +269110,Telecommunications,Telecommunications +254230,Telecommunications,Telecommunications +250807,Telecommunications,Telecommunications +233810,Telecommunications,Telecommunications +233490,Telecommunications,Telecommunications +229269,Telecommunications,Telecommunications +226861,Telecommunications,Telecommunications +226860,Telecommunications,Telecommunications +223483,Telecommunications,Telecommunications +217770,Telecommunications,Telecommunications +213807,Telecommunications,Telecommunications +207584,Telecommunications,Telecommunications +202589,Telecommunications,Telecommunications +202588,Telecommunications,Telecommunications +380728,Telecommunications,Telecommunications +380719,Telecommunications,Telecommunications +379662,Telecommunications,Telecommunications +379650,Telecommunications,Telecommunications +379647,Telecommunications,Telecommunications +379645,Telecommunications,Telecommunications +379644,Telecommunications,Telecommunications +379640,Telecommunications,Telecommunications +376596,Telecommunications,Telecommunications +376589,Telecommunications,Telecommunications +376585,Telecommunications,Telecommunications +376582,Telecommunications,Telecommunications +376580,Telecommunications,Telecommunications +376577,Telecommunications,Telecommunications +376572,Telecommunications,Telecommunications +376570,Telecommunications,Telecommunications +376569,Telecommunications,Telecommunications +376568,Telecommunications,Telecommunications +374893,Telecommunications,Telecommunications +374890,Telecommunications,Telecommunications +374888,Telecommunications,Telecommunications +374883,Telecommunications,Telecommunications +374872,Telecommunications,Telecommunications +374868,Telecommunications,Telecommunications +374867,Telecommunications,Telecommunications +374865,Telecommunications,Telecommunications +374863,Telecommunications,Telecommunications +374861,Telecommunications,Telecommunications +372582,Telecommunications,Telecommunications +372578,Telecommunications,Telecommunications +372574,Telecommunications,Telecommunications +372571,Telecommunications,Telecommunications +372563,Telecommunications,Telecommunications +372554,Telecommunications,Telecommunications +372549,Telecommunications,Telecommunications +372541,Telecommunications,Telecommunications +372537,Telecommunications,Telecommunications +370808,Telecommunications,Telecommunications +369705,Telecommunications,Telecommunications +369704,Telecommunications,Telecommunications +368480,Telecommunications,Telecommunications +366737,Telecommunications,Telecommunications +366736,Telecommunications,Telecommunications +366734,Telecommunications,Telecommunications +366729,Telecommunications,Telecommunications +365252,Telecommunications,Telecommunications +365251,Telecommunications,Telecommunications +363762,Telecommunications,Telecommunications +363448,Telecommunications,Telecommunications +362341,Telecommunications,Telecommunications +362338,Telecommunications,Telecommunications +359818,Telecommunications,Telecommunications +359817,Telecommunications,Telecommunications +357685,Telecommunications,Telecommunications +357684,Telecommunications,Telecommunications +356902,Telecommunications,Telecommunications +356901,Telecommunications,Telecommunications +356900,Telecommunications,Telecommunications +356899,Telecommunications,Telecommunications +356549,Telecommunications,Telecommunications +356356,Telecommunications,Telecommunications +356350,Telecommunications,Telecommunications +356347,Telecommunications,Telecommunications +356339,Telecommunications,Telecommunications +356331,Telecommunications,Telecommunications +356325,Telecommunications,Telecommunications +356324,Telecommunications,Telecommunications +353971,Telecommunications,Telecommunications +353967,Telecommunications,Telecommunications +353966,Telecommunications,Telecommunications +349475,Telecommunications,Telecommunications +349035,Telecommunications,Telecommunications +347309,Telecommunications,Telecommunications +341660,Telecommunications,Telecommunications +341658,Telecommunications,Telecommunications +341654,Telecommunications,Telecommunications +339607,Telecommunications,Telecommunications +338577,Telecommunications,Telecommunications +335904,Telecommunications,Telecommunications +335899,Telecommunications,Telecommunications +333578,Telecommunications,Telecommunications +333577,Telecommunications,Telecommunications +333576,Telecommunications,Telecommunications +332029,Telecommunications,Telecommunications +330154,Telecommunications,Telecommunications +330152,Telecommunications,Telecommunications +328049,Telecommunications,Telecommunications +324915,Telecommunications,Telecommunications +324914,Telecommunications,Telecommunications +324912,Telecommunications,Telecommunications +315535,Telecommunications,Telecommunications +315533,Telecommunications,Telecommunications +315532,Telecommunications,Telecommunications +315531,Telecommunications,Telecommunications +315530,Telecommunications,Telecommunications +313088,Telecommunications,Telecommunications +310193,Telecommunications,Telecommunications +467801,Telecommunications,Telecommunications +467783,Telecommunications,Telecommunications +467730,Telecommunications,Telecommunications +464692,Telecommunications,Telecommunications +464686,Telecommunications,Telecommunications +464681,Telecommunications,Telecommunications +464676,Telecommunications,Telecommunications +462861,Telecommunications,Telecommunications +462860,Telecommunications,Telecommunications +462859,Telecommunications,Telecommunications +462858,Telecommunications,Telecommunications +462857,Telecommunications,Telecommunications +462070,Telecommunications,Telecommunications +461779,Telecommunications,Telecommunications +461778,Telecommunications,Telecommunications +461777,Telecommunications,Telecommunications +460609,Telecommunications,Telecommunications +460174,Telecommunications,Telecommunications +459663,Telecommunications,Telecommunications +459593,Telecommunications,Telecommunications +459590,Telecommunications,Telecommunications +459589,Telecommunications,Telecommunications +458579,Telecommunications,Telecommunications +458578,Telecommunications,Telecommunications +458568,Telecommunications,Telecommunications +454930,Telecommunications,Telecommunications +454928,Telecommunications,Telecommunications +454927,Telecommunications,Telecommunications +454926,Telecommunications,Telecommunications +454925,Telecommunications,Telecommunications +454923,Telecommunications,Telecommunications +452099,Telecommunications,Telecommunications +452096,Telecommunications,Telecommunications +452093,Telecommunications,Telecommunications +452089,Telecommunications,Telecommunications +452088,Telecommunications,Telecommunications +452086,Telecommunications,Telecommunications +452083,Telecommunications,Telecommunications +450161,Telecommunications,Telecommunications +450160,Telecommunications,Telecommunications +450159,Telecommunications,Telecommunications +450157,Telecommunications,Telecommunications +450156,Telecommunications,Telecommunications +450153,Telecommunications,Telecommunications +450149,Telecommunications,Telecommunications +447850,Telecommunications,Telecommunications +447839,Telecommunications,Telecommunications +445554,Telecommunications,Telecommunications +445552,Telecommunications,Telecommunications +445549,Telecommunications,Telecommunications +445548,Telecommunications,Telecommunications +445546,Telecommunications,Telecommunications +445544,Telecommunications,Telecommunications +443832,Telecommunications,Telecommunications +443829,Telecommunications,Telecommunications +441805,Telecommunications,Telecommunications +441804,Telecommunications,Telecommunications +439305,Telecommunications,Telecommunications +439302,Telecommunications,Telecommunications +439300,Telecommunications,Telecommunications +439298,Telecommunications,Telecommunications +435662,Telecommunications,Telecommunications +435659,Telecommunications,Telecommunications +433611,Telecommunications,Telecommunications +433610,Telecommunications,Telecommunications +432419,Telecommunications,Telecommunications +432415,Telecommunications,Telecommunications +432413,Telecommunications,Telecommunications +430998,Telecommunications,Telecommunications +430723,Telecommunications,Telecommunications +430719,Telecommunications,Telecommunications +430717,Telecommunications,Telecommunications +430716,Telecommunications,Telecommunications +430715,Telecommunications,Telecommunications +430714,Telecommunications,Telecommunications +430713,Telecommunications,Telecommunications +430711,Telecommunications,Telecommunications +430710,Telecommunications,Telecommunications +430708,Telecommunications,Telecommunications +430183,Telecommunications,Telecommunications +428991,Telecommunications,Telecommunications +428976,Telecommunications,Telecommunications +428971,Telecommunications,Telecommunications +426760,Telecommunications,Telecommunications +426757,Telecommunications,Telecommunications +426749,Telecommunications,Telecommunications +426569,Telecommunications,Telecommunications +426561,Telecommunications,Telecommunications +426556,Telecommunications,Telecommunications +426546,Telecommunications,Telecommunications +423771,Telecommunications,Telecommunications +423768,Telecommunications,Telecommunications +423760,Telecommunications,Telecommunications +423754,Telecommunications,Telecommunications +422626,Telecommunications,Telecommunications +422623,Telecommunications,Telecommunications +422622,Telecommunications,Telecommunications +422621,Telecommunications,Telecommunications +422619,Telecommunications,Telecommunications +419949,Telecommunications,Telecommunications +419947,Telecommunications,Telecommunications +419939,Telecommunications,Telecommunications +419938,Telecommunications,Telecommunications +419933,Telecommunications,Telecommunications +419928,Telecommunications,Telecommunications +418262,Telecommunications,Telecommunications +418089,Telecommunications,Telecommunications +418086,Telecommunications,Telecommunications +418083,Telecommunications,Telecommunications +418080,Telecommunications,Telecommunications +418077,Telecommunications,Telecommunications +418074,Telecommunications,Telecommunications +418073,Telecommunications,Telecommunications +416581,Telecommunications,Telecommunications +416535,Telecommunications,Telecommunications +416526,Telecommunications,Telecommunications +412679,Telecommunications,Telecommunications +412639,Telecommunications,Telecommunications +410359,Telecommunications,Telecommunications +409826,Telecommunications,Telecommunications +409629,Telecommunications,Telecommunications +409623,Telecommunications,Telecommunications +408089,Telecommunications,Telecommunications +406888,Telecommunications,Telecommunications +406887,Telecommunications,Telecommunications +406883,Telecommunications,Telecommunications +406877,Telecommunications,Telecommunications +406876,Telecommunications,Telecommunications +406873,Telecommunications,Telecommunications +406871,Telecommunications,Telecommunications +406868,Telecommunications,Telecommunications +406867,Telecommunications,Telecommunications +405511,Telecommunications,Telecommunications +405508,Telecommunications,Telecommunications +405505,Telecommunications,Telecommunications +405502,Telecommunications,Telecommunications +405496,Telecommunications,Telecommunications +405493,Telecommunications,Telecommunications +405488,Telecommunications,Telecommunications +403685,Telecommunications,Telecommunications +403682,Telecommunications,Telecommunications +403668,Telecommunications,Telecommunications +403651,Telecommunications,Telecommunications +403648,Telecommunications,Telecommunications +403640,Telecommunications,Telecommunications +403634,Telecommunications,Telecommunications +403629,Telecommunications,Telecommunications +403624,Telecommunications,Telecommunications +403622,Telecommunications,Telecommunications +403619,Telecommunications,Telecommunications +403616,Telecommunications,Telecommunications +400750,Telecommunications,Telecommunications +400747,Telecommunications,Telecommunications +400742,Telecommunications,Telecommunications +400738,Telecommunications,Telecommunications +400709,Telecommunications,Telecommunications +400706,Telecommunications,Telecommunications +400696,Telecommunications,Telecommunications +400691,Telecommunications,Telecommunications +400656,Telecommunications,Telecommunications +400653,Telecommunications,Telecommunications +400649,Telecommunications,Telecommunications +400646,Telecommunications,Telecommunications +400641,Telecommunications,Telecommunications +399319,Telecommunications,Telecommunications +398415,Telecommunications,Telecommunications +396577,Telecommunications,Telecommunications +394203,Telecommunications,Telecommunications +392392,Telecommunications,Telecommunications +391397,Telecommunications,Telecommunications +391395,Telecommunications,Telecommunications +391388,Telecommunications,Telecommunications +391386,Telecommunications,Telecommunications +388383,Telecommunications,Telecommunications +388359,Telecommunications,Telecommunications +388353,Telecommunications,Telecommunications +388350,Telecommunications,Telecommunications +385447,Telecommunications,Telecommunications +385420,Telecommunications,Telecommunications +383829,Telecommunications,Telecommunications +383826,Telecommunications,Telecommunications +382502,Telecommunications,Telecommunications +382500,Telecommunications,Telecommunications +382498,Telecommunications,Telecommunications +382494,Telecommunications,Telecommunications +382487,Telecommunications,Telecommunications +380730,Telecommunications,Telecommunications +543398,Telecommunications,Telecommunications +543325,Telecommunications,Telecommunications +543322,Telecommunications,Telecommunications +543321,Telecommunications,Telecommunications +541396,Telecommunications,Telecommunications +541391,Telecommunications,Telecommunications +539860,Telecommunications,Telecommunications +539858,Telecommunications,Telecommunications +539857,Telecommunications,Telecommunications +539854,Telecommunications,Telecommunications +539853,Telecommunications,Telecommunications +539523,Telecommunications,Telecommunications +539522,Telecommunications,Telecommunications +537776,Telecommunications,Telecommunications +534710,Telecommunications,Telecommunications +534675,Telecommunications,Telecommunications +531428,Telecommunications,Telecommunications +531426,Telecommunications,Telecommunications +529125,Telecommunications,Telecommunications +529120,Telecommunications,Telecommunications +524966,Telecommunications,Telecommunications +522566,Telecommunications,Telecommunications +519528,Telecommunications,Telecommunications +519525,Telecommunications,Telecommunications +517045,Telecommunications,Telecommunications +517043,Telecommunications,Telecommunications +517041,Telecommunications,Telecommunications +517039,Telecommunications,Telecommunications +517031,Telecommunications,Telecommunications +515821,Telecommunications,Telecommunications +515729,Telecommunications,Telecommunications +515657,Telecommunications,Telecommunications +514651,Telecommunications,Telecommunications +512596,Telecommunications,Telecommunications +510188,Telecommunications,Telecommunications +510187,Telecommunications,Telecommunications +510183,Telecommunications,Telecommunications +510182,Telecommunications,Telecommunications +510181,Telecommunications,Telecommunications +510179,Telecommunications,Telecommunications +510177,Telecommunications,Telecommunications +508148,Telecommunications,Telecommunications +508146,Telecommunications,Telecommunications +508138,Telecommunications,Telecommunications +508134,Telecommunications,Telecommunications +508132,Telecommunications,Telecommunications +508130,Telecommunications,Telecommunications +504837,Telecommunications,Telecommunications +504830,Telecommunications,Telecommunications +502364,Telecommunications,Telecommunications +502361,Telecommunications,Telecommunications +498953,Telecommunications,Telecommunications +498951,Telecommunications,Telecommunications +498943,Telecommunications,Telecommunications +498939,Telecommunications,Telecommunications +498935,Telecommunications,Telecommunications +498933,Telecommunications,Telecommunications +495891,Telecommunications,Telecommunications +495889,Telecommunications,Telecommunications +493723,Telecommunications,Telecommunications +490629,Telecommunications,Telecommunications +490625,Telecommunications,Telecommunications +490607,Telecommunications,Telecommunications +490598,Telecommunications,Telecommunications +488325,Telecommunications,Telecommunications +488132,Telecommunications,Telecommunications +482194,Telecommunications,Telecommunications +479965,Telecommunications,Telecommunications +479963,Telecommunications,Telecommunications +479960,Telecommunications,Telecommunications +479957,Telecommunications,Telecommunications +479953,Telecommunications,Telecommunications +479949,Telecommunications,Telecommunications +477878,Telecommunications,Telecommunications +477863,Telecommunications,Telecommunications +477860,Telecommunications,Telecommunications +477856,Telecommunications,Telecommunications +477850,Telecommunications,Telecommunications +477847,Telecommunications,Telecommunications +477845,Telecommunications,Telecommunications +477841,Telecommunications,Telecommunications +477837,Telecommunications,Telecommunications +477835,Telecommunications,Telecommunications +477833,Telecommunications,Telecommunications +477826,Telecommunications,Telecommunications +477823,Telecommunications,Telecommunications +475801,Telecommunications,Telecommunications +475534,Telecommunications,Telecommunications +475415,Telecommunications,Telecommunications +475410,Telecommunications,Telecommunications +475405,Telecommunications,Telecommunications +475402,Telecommunications,Telecommunications +475388,Telecommunications,Telecommunications +475384,Telecommunications,Telecommunications +475372,Telecommunications,Telecommunications +475357,Telecommunications,Telecommunications +473730,Telecommunications,Telecommunications +429805,Arts and Culture,Arts and Culture +415974,Arts and Culture,Arts and Culture +97796,Arts and Culture,Arts and Culture +84817,Arts and Culture,Arts and Culture +84816,Arts and Culture,Arts and Culture +145416,Arts and Culture,Arts and Culture +132321,Arts and Culture,Arts and Culture +244998,Arts and Culture,Arts and Culture +244997,Arts and Culture,Arts and Culture +239049,Arts and Culture,Arts and Culture +218967,Arts and Culture,Arts and Culture +197031,Arts and Culture,Arts and Culture +194657,Arts and Culture,Arts and Culture +194656,Arts and Culture,Arts and Culture +400991,Arts and Culture,Arts and Culture +397518,Arts and Culture,Arts and Culture +393646,Arts and Culture,Arts and Culture +393645,Arts and Culture,Arts and Culture +393644,Arts and Culture,Arts and Culture +384840,Arts and Culture,Arts and Culture +384839,Arts and Culture,Arts and Culture +384838,Arts and Culture,Arts and Culture +384836,Arts and Culture,Arts and Culture +371089,Arts and Culture,Arts and Culture +371088,Arts and Culture,Arts and Culture +356637,Arts and Culture,Arts and Culture +348779,Arts and Culture,Arts and Culture +348777,Arts and Culture,Arts and Culture +310992,Arts and Culture,Arts and Culture +310991,Arts and Culture,Arts and Culture +299809,Arts and Culture,Arts and Culture +299790,Arts and Culture,Arts and Culture +299789,Arts and Culture,Arts and Culture +278712,Arts and Culture,Arts and Culture +278711,Arts and Culture,Arts and Culture +268061,Arts and Culture,Arts and Culture +268059,Arts and Culture,Arts and Culture +449355,Arts and Culture,Arts and Culture +445728,Arts and Culture,Arts and Culture +445725,Arts and Culture,Arts and Culture +438807,Arts and Culture,Arts and Culture +438571,Arts and Culture,Arts and Culture +432777,Arts and Culture,Arts and Culture +432776,Arts and Culture,Arts and Culture +432775,Arts and Culture,Arts and Culture +522902,Broadcasting,Broadcasting +522899,Broadcasting,Broadcasting +278712,Broadcasting,Broadcasting +278711,Broadcasting,Broadcasting +268061,Broadcasting,Broadcasting +268059,Broadcasting,Broadcasting +244998,Broadcasting,Broadcasting +244997,Broadcasting,Broadcasting +197031,Broadcasting,Broadcasting +384840,Broadcasting,Broadcasting +384839,Broadcasting,Broadcasting +384838,Broadcasting,Broadcasting +384836,Broadcasting,Broadcasting +310992,Broadcasting,Broadcasting +310991,Broadcasting,Broadcasting +299809,Broadcasting,Broadcasting +299790,Broadcasting,Broadcasting +299789,Broadcasting,Broadcasting +490620,Broadcasting,Broadcasting +465070,Broadcasting,Broadcasting +455346,Broadcasting,Broadcasting +540723,Broadcasting,Broadcasting +540722,Broadcasting,Broadcasting +540721,Broadcasting,Broadcasting +540720,Broadcasting,Broadcasting +536330,Broadcasting,Broadcasting +525894,Broadcasting,Broadcasting +469075,Science and Technology,Science and Technology +469074,Science and Technology,Science and Technology +124285,Science and Technology,Science and Technology +100854,Science and Technology,Science and Technology +85408,Science and Technology,Science and Technology +85404,Science and Technology,Science and Technology +375420,Science and Technology,Science and Technology +375402,Science and Technology,Science and Technology +375401,Science and Technology,Science and Technology +375394,Science and Technology,Science and Technology +367646,Science and Technology,Science and Technology +367563,Science and Technology,Science and Technology +367562,Science and Technology,Science and Technology +367561,Science and Technology,Science and Technology +367560,Science and Technology,Science and Technology +367555,Science and Technology,Science and Technology +367545,Science and Technology,Science and Technology +367504,Science and Technology,Science and Technology +459170,Science and Technology,Science and Technology +459004,Science and Technology,Science and Technology +456429,Science and Technology,Science and Technology +455000,Science and Technology,Science and Technology +448625,Science and Technology,Science and Technology +448624,Science and Technology,Science and Technology +448622,Science and Technology,Science and Technology +448621,Science and Technology,Science and Technology +448619,Science and Technology,Science and Technology +448618,Science and Technology,Science and Technology +448617,Science and Technology,Science and Technology +448616,Science and Technology,Science and Technology +433654,Science and Technology,Science and Technology +432985,Science and Technology,Science and Technology +408674,Science and Technology,Science and Technology +405970,Science and Technology,Science and Technology +401745,Science and Technology,Science and Technology +513656,Science and Technology,Science and Technology +512066,Science and Technology,Science and Technology +506775,Science and Technology,Science and Technology +504069,Science and Technology,Science and Technology +504056,Science and Technology,Science and Technology +504054,Science and Technology,Science and Technology +504052,Science and Technology,Science and Technology +504050,Science and Technology,Science and Technology +504049,Science and Technology,Science and Technology +504033,Science and Technology,Science and Technology +504020,Science and Technology,Science and Technology +504019,Science and Technology,Science and Technology +504018,Science and Technology,Science and Technology +504017,Science and Technology,Science and Technology +504013,Science and Technology,Science and Technology +504010,Science and Technology,Science and Technology +504008,Science and Technology,Science and Technology +504006,Science and Technology,Science and Technology +504003,Science and Technology,Science and Technology +503928,Science and Technology,Science and Technology +503927,Science and Technology,Science and Technology +503926,Science and Technology,Science and Technology +503902,Science and Technology,Science and Technology +503901,Science and Technology,Science and Technology +503878,Science and Technology,Science and Technology +500665,Science and Technology,Science and Technology +500664,Science and Technology,Science and Technology +500663,Science and Technology,Science and Technology +500662,Science and Technology,Science and Technology +500661,Science and Technology,Science and Technology +500660,Science and Technology,Science and Technology +500658,Science and Technology,Science and Technology +500657,Science and Technology,Science and Technology +500656,Science and Technology,Science and Technology +500654,Science and Technology,Science and Technology +500652,Science and Technology,Science and Technology +500610,Science and Technology,Science and Technology +500599,Science and Technology,Science and Technology +500596,Science and Technology,Science and Technology +500595,Science and Technology,Science and Technology +500594,Science and Technology,Science and Technology +500593,Science and Technology,Science and Technology +497222,Science and Technology,Science and Technology +497221,Science and Technology,Science and Technology +497169,Science and Technology,Science and Technology +497167,Science and Technology,Science and Technology +497166,Science and Technology,Science and Technology +497165,Science and Technology,Science and Technology +497162,Science and Technology,Science and Technology +497156,Science and Technology,Science and Technology +497145,Science and Technology,Science and Technology +497141,Science and Technology,Science and Technology +497140,Science and Technology,Science and Technology +497099,Science and Technology,Science and Technology +497094,Science and Technology,Science and Technology +496749,Science and Technology,Science and Technology +496740,Science and Technology,Science and Technology +494569,Science and Technology,Science and Technology +494568,Science and Technology,Science and Technology +494567,Science and Technology,Science and Technology +494566,Science and Technology,Science and Technology +494565,Science and Technology,Science and Technology +494553,Science and Technology,Science and Technology +492919,Science and Technology,Science and Technology +492444,Science and Technology,Science and Technology +492443,Science and Technology,Science and Technology +492442,Science and Technology,Science and Technology +492441,Science and Technology,Science and Technology +492440,Science and Technology,Science and Technology +492438,Science and Technology,Science and Technology +492436,Science and Technology,Science and Technology +492399,Science and Technology,Science and Technology +492397,Science and Technology,Science and Technology +492395,Science and Technology,Science and Technology +492387,Science and Technology,Science and Technology +492386,Science and Technology,Science and Technology +492384,Science and Technology,Science and Technology +492382,Science and Technology,Science and Technology +492381,Science and Technology,Science and Technology +492380,Science and Technology,Science and Technology +492378,Science and Technology,Science and Technology +492376,Science and Technology,Science and Technology +492375,Science and Technology,Science and Technology +492371,Science and Technology,Science and Technology +492357,Science and Technology,Science and Technology +489276,Science and Technology,Science and Technology +489275,Science and Technology,Science and Technology +489274,Science and Technology,Science and Technology +489272,Science and Technology,Science and Technology +489251,Science and Technology,Science and Technology +486217,Science and Technology,Science and Technology +486216,Science and Technology,Science and Technology +486215,Science and Technology,Science and Technology +486214,Science and Technology,Science and Technology +486213,Science and Technology,Science and Technology +486212,Science and Technology,Science and Technology +486166,Science and Technology,Science and Technology +484582,Science and Technology,Science and Technology +484578,Science and Technology,Science and Technology +484570,Science and Technology,Science and Technology +471612,Science and Technology,Science and Technology +471610,Science and Technology,Science and Technology +471470,Science and Technology,Science and Technology +471469,Science and Technology,Science and Technology +202704,Telecommunications,Telecommunications +90117,Aboriginal Affairs,Aboriginal Affairs +159924,Aboriginal Affairs,Aboriginal Affairs +100786,Telecommunications,Telecommunications +84980,Telecommunications,Telecommunications +83128,Telecommunications,Telecommunications +137174,Telecommunications,Telecommunications +135061,Telecommunications,Telecommunications +135060,Telecommunications,Telecommunications +133074,Telecommunications,Telecommunications +132485,Telecommunications,Telecommunications +132418,Telecommunications,Telecommunications +128477,Telecommunications,Telecommunications +112335,Telecommunications,Telecommunications +188628,Telecommunications,Telecommunications +185528,Telecommunications,Telecommunications +88222,Telecommunications,Telecommunications +206910,Telecommunications,Telecommunications +396185,Science and Technology,Science and Technology +471613,Science and Technology,Science and Technology +91316,Science and Technology,Science and Technology +91315,Science and Technology,Science and Technology +88674,Science and Technology,Science and Technology +85402,Science and Technology,Science and Technology +85399,Science and Technology,Science and Technology +148859,Science and Technology,Science and Technology +143755,Science and Technology,Science and Technology +138041,Science and Technology,Science and Technology +124287,Science and Technology,Science and Technology +124286,Science and Technology,Science and Technology +124283,Science and Technology,Science and Technology +117757,Science and Technology,Science and Technology +117756,Science and Technology,Science and Technology +114674,Science and Technology,Science and Technology +114660,Science and Technology,Science and Technology +114659,Science and Technology,Science and Technology +110415,Science and Technology,Science and Technology +110414,Science and Technology,Science and Technology +401744,Science and Technology,Science and Technology +476155,Science and Technology,Science and Technology +476154,Science and Technology,Science and Technology +371871,Science and Technology,Science and Technology +336209,Science and Technology,Science and Technology +460271,Science and Technology,Science and Technology +457870,Science and Technology,Science and Technology +545306,Science and Technology,Science and Technology +545246,Science and Technology,Science and Technology +545245,Science and Technology,Science and Technology +542376,Science and Technology,Science and Technology +539739,Science and Technology,Science and Technology +532470,Science and Technology,Science and Technology +198327,Aboriginal Affairs,Aboriginal Affairs +166938,Aboriginal Affairs,Aboriginal Affairs +102394,Aboriginal Affairs,Aboriginal Affairs +166937,Aboriginal Affairs,Aboriginal Affairs +166932,Aboriginal Affairs,Aboriginal Affairs +166925,Aboriginal Affairs,Aboriginal Affairs +199468,Aboriginal Affairs,Aboriginal Affairs +324243,Arts and Culture,Arts and Culture +261231,Arts and Culture,Arts and Culture +197487,Arts and Culture,Arts and Culture +170244,Arts and Culture,Arts and Culture +156629,Arts and Culture,Arts and Culture +97550,Arts and Culture,Arts and Culture +87762,Arts and Culture,Arts and Culture +100356,Arts and Culture,Arts and Culture +100355,Arts and Culture,Arts and Culture +168793,Broadcasting,Broadcasting +478167,Broadcasting,Broadcasting +483690,Science and Technology,Science and Technology +483683,Science and Technology,Science and Technology +90370,Science and Technology,Science and Technology +90368,Science and Technology,Science and Technology +90365,Science and Technology,Science and Technology +90359,Science and Technology,Science and Technology +88061,Science and Technology,Science and Technology +85284,Science and Technology,Science and Technology +85283,Science and Technology,Science and Technology +145782,Science and Technology,Science and Technology +109505,Science and Technology,Science and Technology +97773,Science and Technology,Science and Technology +97772,Science and Technology,Science and Technology +97764,Science and Technology,Science and Technology +97759,Science and Technology,Science and Technology +97758,Science and Technology,Science and Technology +94146,Science and Technology,Science and Technology +94145,Science and Technology,Science and Technology +94142,Science and Technology,Science and Technology +94136,Science and Technology,Science and Technology +170885,Science and Technology,Science and Technology +170879,Science and Technology,Science and Technology +169066,Science and Technology,Science and Technology +169063,Science and Technology,Science and Technology +163405,Science and Technology,Science and Technology +163392,Science and Technology,Science and Technology +159602,Science and Technology,Science and Technology +159593,Science and Technology,Science and Technology +159584,Science and Technology,Science and Technology +159581,Science and Technology,Science and Technology +159569,Science and Technology,Science and Technology +159568,Science and Technology,Science and Technology +156848,Science and Technology,Science and Technology +154872,Science and Technology,Science and Technology +153179,Science and Technology,Science and Technology +152368,Science and Technology,Science and Technology +152362,Science and Technology,Science and Technology +150328,Science and Technology,Science and Technology +150325,Science and Technology,Science and Technology +148108,Science and Technology,Science and Technology +229149,Science and Technology,Science and Technology +229101,Science and Technology,Science and Technology +229098,Science and Technology,Science and Technology +229097,Science and Technology,Science and Technology +229096,Science and Technology,Science and Technology +229095,Science and Technology,Science and Technology +225867,Science and Technology,Science and Technology +225728,Science and Technology,Science and Technology +225727,Science and Technology,Science and Technology +225614,Science and Technology,Science and Technology +222748,Science and Technology,Science and Technology +221787,Science and Technology,Science and Technology +216027,Science and Technology,Science and Technology +211468,Science and Technology,Science and Technology +210647,Science and Technology,Science and Technology +210572,Science and Technology,Science and Technology +210571,Science and Technology,Science and Technology +210570,Science and Technology,Science and Technology +210569,Science and Technology,Science and Technology +210287,Science and Technology,Science and Technology +210167,Science and Technology,Science and Technology +207370,Science and Technology,Science and Technology +207368,Science and Technology,Science and Technology +207366,Science and Technology,Science and Technology +207365,Science and Technology,Science and Technology +207362,Science and Technology,Science and Technology +207361,Science and Technology,Science and Technology +207358,Science and Technology,Science and Technology +207357,Science and Technology,Science and Technology +207355,Science and Technology,Science and Technology +207353,Science and Technology,Science and Technology +206287,Science and Technology,Science and Technology +205487,Science and Technology,Science and Technology +205391,Science and Technology,Science and Technology +205390,Science and Technology,Science and Technology +205388,Science and Technology,Science and Technology +205318,Science and Technology,Science and Technology +205313,Science and Technology,Science and Technology +205311,Science and Technology,Science and Technology +205310,Science and Technology,Science and Technology +205270,Science and Technology,Science and Technology +205269,Science and Technology,Science and Technology +205268,Science and Technology,Science and Technology +205267,Science and Technology,Science and Technology +205190,Science and Technology,Science and Technology +205189,Science and Technology,Science and Technology +205188,Science and Technology,Science and Technology +202528,Science and Technology,Science and Technology +202248,Science and Technology,Science and Technology +201947,Science and Technology,Science and Technology +201927,Science and Technology,Science and Technology +197927,Science and Technology,Science and Technology +197191,Science and Technology,Science and Technology +193713,Science and Technology,Science and Technology +193693,Science and Technology,Science and Technology +188513,Science and Technology,Science and Technology +185354,Science and Technology,Science and Technology +180804,Science and Technology,Science and Technology +180592,Science and Technology,Science and Technology +180589,Science and Technology,Science and Technology +173489,Science and Technology,Science and Technology +173488,Science and Technology,Science and Technology +173486,Science and Technology,Science and Technology +173483,Science and Technology,Science and Technology +477074,Science and Technology,Science and Technology +475142,Science and Technology,Science and Technology +467893,Science and Technology,Science and Technology +467767,Science and Technology,Science and Technology +467757,Science and Technology,Science and Technology +467728,Science and Technology,Science and Technology +467723,Science and Technology,Science and Technology +458404,Science and Technology,Science and Technology +456884,Science and Technology,Science and Technology +456882,Science and Technology,Science and Technology +449538,Science and Technology,Science and Technology +449535,Science and Technology,Science and Technology +447460,Science and Technology,Science and Technology +443611,Science and Technology,Science and Technology +443610,Science and Technology,Science and Technology +443608,Science and Technology,Science and Technology +441288,Science and Technology,Science and Technology +433494,Science and Technology,Science and Technology +432232,Science and Technology,Science and Technology +430925,Science and Technology,Science and Technology +430918,Science and Technology,Science and Technology +426153,Science and Technology,Science and Technology +421699,Science and Technology,Science and Technology +421695,Science and Technology,Science and Technology +421694,Science and Technology,Science and Technology +419381,Science and Technology,Science and Technology +419375,Science and Technology,Science and Technology +418070,Science and Technology,Science and Technology +415927,Science and Technology,Science and Technology +413571,Science and Technology,Science and Technology +413543,Science and Technology,Science and Technology +413534,Science and Technology,Science and Technology +413127,Science and Technology,Science and Technology +407848,Science and Technology,Science and Technology +406847,Science and Technology,Science and Technology +406846,Science and Technology,Science and Technology +405199,Science and Technology,Science and Technology +405192,Science and Technology,Science and Technology +405190,Science and Technology,Science and Technology +405188,Science and Technology,Science and Technology +405182,Science and Technology,Science and Technology +405181,Science and Technology,Science and Technology +403829,Science and Technology,Science and Technology +403826,Science and Technology,Science and Technology +403818,Science and Technology,Science and Technology +403792,Science and Technology,Science and Technology +400900,Science and Technology,Science and Technology +390088,Science and Technology,Science and Technology +387616,Science and Technology,Science and Technology +387582,Science and Technology,Science and Technology +387581,Science and Technology,Science and Technology +387315,Science and Technology,Science and Technology +383347,Science and Technology,Science and Technology +383346,Science and Technology,Science and Technology +383344,Science and Technology,Science and Technology +380906,Science and Technology,Science and Technology +380905,Science and Technology,Science and Technology +380895,Science and Technology,Science and Technology +378279,Science and Technology,Science and Technology +378276,Science and Technology,Science and Technology +376064,Science and Technology,Science and Technology +376058,Science and Technology,Science and Technology +376036,Science and Technology,Science and Technology +376012,Science and Technology,Science and Technology +374271,Science and Technology,Science and Technology +370733,Science and Technology,Science and Technology +368391,Science and Technology,Science and Technology +368382,Science and Technology,Science and Technology +368377,Science and Technology,Science and Technology +366325,Science and Technology,Science and Technology +363523,Science and Technology,Science and Technology +363520,Science and Technology,Science and Technology +363512,Science and Technology,Science and Technology +361902,Science and Technology,Science and Technology +348241,Science and Technology,Science and Technology +347278,Science and Technology,Science and Technology +340174,Science and Technology,Science and Technology +338541,Science and Technology,Science and Technology +338539,Science and Technology,Science and Technology +315159,Science and Technology,Science and Technology +312889,Science and Technology,Science and Technology +543618,Science and Technology,Science and Technology +543615,Science and Technology,Science and Technology +543614,Science and Technology,Science and Technology +541089,Science and Technology,Science and Technology +541086,Science and Technology,Science and Technology +539675,Science and Technology,Science and Technology +537144,Science and Technology,Science and Technology +537141,Science and Technology,Science and Technology +533762,Science and Technology,Science and Technology +533758,Science and Technology,Science and Technology +531369,Science and Technology,Science and Technology +531361,Science and Technology,Science and Technology +528486,Science and Technology,Science and Technology +528474,Science and Technology,Science and Technology +528465,Science and Technology,Science and Technology +528456,Science and Technology,Science and Technology +524887,Science and Technology,Science and Technology +524884,Science and Technology,Science and Technology +524882,Science and Technology,Science and Technology +524878,Science and Technology,Science and Technology +524867,Science and Technology,Science and Technology +521864,Science and Technology,Science and Technology +521863,Science and Technology,Science and Technology +521831,Science and Technology,Science and Technology +521828,Science and Technology,Science and Technology +521825,Science and Technology,Science and Technology +519308,Science and Technology,Science and Technology +519306,Science and Technology,Science and Technology +519305,Science and Technology,Science and Technology +519304,Science and Technology,Science and Technology +519300,Science and Technology,Science and Technology +517211,Science and Technology,Science and Technology +517209,Science and Technology,Science and Technology +517204,Science and Technology,Science and Technology +517203,Science and Technology,Science and Technology +517199,Science and Technology,Science and Technology +517188,Science and Technology,Science and Technology +517175,Science and Technology,Science and Technology +515479,Science and Technology,Science and Technology +515474,Science and Technology,Science and Technology +513919,Science and Technology,Science and Technology +512657,Science and Technology,Science and Technology +510253,Science and Technology,Science and Technology +507189,Science and Technology,Science and Technology +501467,Science and Technology,Science and Technology +498059,Science and Technology,Science and Technology +492749,Science and Technology,Science and Technology +489497,Science and Technology,Science and Technology +477253,Aboriginal Affairs,Aboriginal Affairs +477248,Aboriginal Affairs,Aboriginal Affairs +84765,Aboriginal Affairs,Aboriginal Affairs +84764,Aboriginal Affairs,Aboriginal Affairs +84763,Aboriginal Affairs,Aboriginal Affairs +84762,Aboriginal Affairs,Aboriginal Affairs +84758,Aboriginal Affairs,Aboriginal Affairs +82976,Aboriginal Affairs,Aboriginal Affairs +82975,Aboriginal Affairs,Aboriginal Affairs +82974,Aboriginal Affairs,Aboriginal Affairs +82555,Aboriginal Affairs,Aboriginal Affairs +156274,Aboriginal Affairs,Aboriginal Affairs +155991,Aboriginal Affairs,Aboriginal Affairs +147261,Aboriginal Affairs,Aboriginal Affairs +147260,Aboriginal Affairs,Aboriginal Affairs +147259,Aboriginal Affairs,Aboriginal Affairs +147258,Aboriginal Affairs,Aboriginal Affairs +147257,Aboriginal Affairs,Aboriginal Affairs +118234,Aboriginal Affairs,Aboriginal Affairs +103060,Aboriginal Affairs,Aboriginal Affairs +103058,Aboriginal Affairs,Aboriginal Affairs +334474,Aboriginal Affairs,Aboriginal Affairs +293430,Aboriginal Affairs,Aboriginal Affairs +293429,Aboriginal Affairs,Aboriginal Affairs +254099,Aboriginal Affairs,Aboriginal Affairs +250859,Aboriginal Affairs,Aboriginal Affairs +248198,Aboriginal Affairs,Aboriginal Affairs +248197,Aboriginal Affairs,Aboriginal Affairs +248196,Aboriginal Affairs,Aboriginal Affairs +248194,Aboriginal Affairs,Aboriginal Affairs +248193,Aboriginal Affairs,Aboriginal Affairs +248192,Aboriginal Affairs,Aboriginal Affairs +248190,Aboriginal Affairs,Aboriginal Affairs +244694,Aboriginal Affairs,Aboriginal Affairs +244686,Aboriginal Affairs,Aboriginal Affairs +232030,Aboriginal Affairs,Aboriginal Affairs +221909,Aboriginal Affairs,Aboriginal Affairs +221907,Aboriginal Affairs,Aboriginal Affairs +202530,Aboriginal Affairs,Aboriginal Affairs +202527,Aboriginal Affairs,Aboriginal Affairs +202526,Aboriginal Affairs,Aboriginal Affairs +197431,Aboriginal Affairs,Aboriginal Affairs +197430,Aboriginal Affairs,Aboriginal Affairs +188626,Aboriginal Affairs,Aboriginal Affairs +168094,Aboriginal Affairs,Aboriginal Affairs +168092,Aboriginal Affairs,Aboriginal Affairs +168089,Aboriginal Affairs,Aboriginal Affairs +168088,Aboriginal Affairs,Aboriginal Affairs +168087,Aboriginal Affairs,Aboriginal Affairs +168081,Aboriginal Affairs,Aboriginal Affairs +168080,Aboriginal Affairs,Aboriginal Affairs +168079,Aboriginal Affairs,Aboriginal Affairs +168078,Aboriginal Affairs,Aboriginal Affairs +168074,Aboriginal Affairs,Aboriginal Affairs +168073,Aboriginal Affairs,Aboriginal Affairs +168072,Aboriginal Affairs,Aboriginal Affairs +163928,Aboriginal Affairs,Aboriginal Affairs +161724,Aboriginal Affairs,Aboriginal Affairs +161722,Aboriginal Affairs,Aboriginal Affairs +161719,Aboriginal Affairs,Aboriginal Affairs +161716,Aboriginal Affairs,Aboriginal Affairs +467913,Aboriginal Affairs,Aboriginal Affairs +467909,Aboriginal Affairs,Aboriginal Affairs +467703,Aboriginal Affairs,Aboriginal Affairs +461419,Aboriginal Affairs,Aboriginal Affairs +461417,Aboriginal Affairs,Aboriginal Affairs +461414,Aboriginal Affairs,Aboriginal Affairs +461411,Aboriginal Affairs,Aboriginal Affairs +458786,Aboriginal Affairs,Aboriginal Affairs +452597,Aboriginal Affairs,Aboriginal Affairs +447916,Aboriginal Affairs,Aboriginal Affairs +442480,Aboriginal Affairs,Aboriginal Affairs +442444,Aboriginal Affairs,Aboriginal Affairs +442440,Aboriginal Affairs,Aboriginal Affairs +442436,Aboriginal Affairs,Aboriginal Affairs +439454,Aboriginal Affairs,Aboriginal Affairs +435817,Aboriginal Affairs,Aboriginal Affairs +435812,Aboriginal Affairs,Aboriginal Affairs +435809,Aboriginal Affairs,Aboriginal Affairs +435801,Aboriginal Affairs,Aboriginal Affairs +433739,Aboriginal Affairs,Aboriginal Affairs +433731,Aboriginal Affairs,Aboriginal Affairs +433728,Aboriginal Affairs,Aboriginal Affairs +433726,Aboriginal Affairs,Aboriginal Affairs +433717,Aboriginal Affairs,Aboriginal Affairs +433715,Aboriginal Affairs,Aboriginal Affairs +433714,Aboriginal Affairs,Aboriginal Affairs +433713,Aboriginal Affairs,Aboriginal Affairs +433712,Aboriginal Affairs,Aboriginal Affairs +433710,Aboriginal Affairs,Aboriginal Affairs +433709,Aboriginal Affairs,Aboriginal Affairs +433706,Aboriginal Affairs,Aboriginal Affairs +433705,Aboriginal Affairs,Aboriginal Affairs +433703,Aboriginal Affairs,Aboriginal Affairs +433697,Aboriginal Affairs,Aboriginal Affairs +433684,Aboriginal Affairs,Aboriginal Affairs +433682,Aboriginal Affairs,Aboriginal Affairs +433680,Aboriginal Affairs,Aboriginal Affairs +432537,Aboriginal Affairs,Aboriginal Affairs +432533,Aboriginal Affairs,Aboriginal Affairs +432529,Aboriginal Affairs,Aboriginal Affairs +432527,Aboriginal Affairs,Aboriginal Affairs +432523,Aboriginal Affairs,Aboriginal Affairs +432522,Aboriginal Affairs,Aboriginal Affairs +432521,Aboriginal Affairs,Aboriginal Affairs +432517,Aboriginal Affairs,Aboriginal Affairs +429360,Aboriginal Affairs,Aboriginal Affairs +429277,Aboriginal Affairs,Aboriginal Affairs +429258,Aboriginal Affairs,Aboriginal Affairs +429255,Aboriginal Affairs,Aboriginal Affairs +429250,Aboriginal Affairs,Aboriginal Affairs +429234,Aboriginal Affairs,Aboriginal Affairs +429227,Aboriginal Affairs,Aboriginal Affairs +426464,Aboriginal Affairs,Aboriginal Affairs +426461,Aboriginal Affairs,Aboriginal Affairs +426458,Aboriginal Affairs,Aboriginal Affairs +426437,Aboriginal Affairs,Aboriginal Affairs +426433,Aboriginal Affairs,Aboriginal Affairs +426432,Aboriginal Affairs,Aboriginal Affairs +424393,Aboriginal Affairs,Aboriginal Affairs +424390,Aboriginal Affairs,Aboriginal Affairs +424389,Aboriginal Affairs,Aboriginal Affairs +424387,Aboriginal Affairs,Aboriginal Affairs +424385,Aboriginal Affairs,Aboriginal Affairs +424384,Aboriginal Affairs,Aboriginal Affairs +422210,Aboriginal Affairs,Aboriginal Affairs +417573,Aboriginal Affairs,Aboriginal Affairs +417572,Aboriginal Affairs,Aboriginal Affairs +417571,Aboriginal Affairs,Aboriginal Affairs +415708,Aboriginal Affairs,Aboriginal Affairs +413709,Aboriginal Affairs,Aboriginal Affairs +413349,Aboriginal Affairs,Aboriginal Affairs +409842,Aboriginal Affairs,Aboriginal Affairs +409838,Aboriginal Affairs,Aboriginal Affairs +409837,Aboriginal Affairs,Aboriginal Affairs +409780,Aboriginal Affairs,Aboriginal Affairs +409772,Aboriginal Affairs,Aboriginal Affairs +409758,Aboriginal Affairs,Aboriginal Affairs +408011,Aboriginal Affairs,Aboriginal Affairs +406845,Aboriginal Affairs,Aboriginal Affairs +406843,Aboriginal Affairs,Aboriginal Affairs +406115,Aboriginal Affairs,Aboriginal Affairs +406114,Aboriginal Affairs,Aboriginal Affairs +406113,Aboriginal Affairs,Aboriginal Affairs +406112,Aboriginal Affairs,Aboriginal Affairs +406109,Aboriginal Affairs,Aboriginal Affairs +543559,Aboriginal Affairs,Aboriginal Affairs +541079,Aboriginal Affairs,Aboriginal Affairs +541078,Aboriginal Affairs,Aboriginal Affairs +541077,Aboriginal Affairs,Aboriginal Affairs +506548,Aboriginal Affairs,Aboriginal Affairs +500831,Aboriginal Affairs,Aboriginal Affairs +359910,Science and Technology,Science and Technology +359909,Science and Technology,Science and Technology +302992,Science and Technology,Science and Technology +297020,Science and Technology,Science and Technology +277776,Science and Technology,Science and Technology +188828,Science and Technology,Science and Technology +149777,Science and Technology,Science and Technology +142621,Broadcasting,Broadcasting +154934,Science and Technology,Science and Technology +154930,Science and Technology,Science and Technology +156647,Science and Technology,Science and Technology +167511,Broadcasting,Broadcasting +115296,Broadcasting,Broadcasting +263894,Broadcasting,Broadcasting +248329,Broadcasting,Broadcasting +248309,Broadcasting,Broadcasting +248289,Broadcasting,Broadcasting +248269,Broadcasting,Broadcasting +246069,Broadcasting,Broadcasting +241011,Broadcasting,Broadcasting +240210,Broadcasting,Broadcasting +235449,Broadcasting,Broadcasting +235429,Broadcasting,Broadcasting +235409,Broadcasting,Broadcasting +226815,Broadcasting,Broadcasting +226814,Broadcasting,Broadcasting +226813,Broadcasting,Broadcasting +226812,Broadcasting,Broadcasting +226810,Broadcasting,Broadcasting +226809,Broadcasting,Broadcasting +226808,Broadcasting,Broadcasting +221047,Broadcasting,Broadcasting +221028,Broadcasting,Broadcasting +221027,Broadcasting,Broadcasting +221007,Broadcasting,Broadcasting +220987,Broadcasting,Broadcasting +207380,Broadcasting,Broadcasting +169924,Broadcasting,Broadcasting +169923,Broadcasting,Broadcasting +169922,Broadcasting,Broadcasting +167519,Broadcasting,Broadcasting +167517,Broadcasting,Broadcasting +377820,Broadcasting,Broadcasting +377729,Broadcasting,Broadcasting +377728,Broadcasting,Broadcasting +377726,Broadcasting,Broadcasting +377725,Broadcasting,Broadcasting +377724,Broadcasting,Broadcasting +377723,Broadcasting,Broadcasting +377722,Broadcasting,Broadcasting +377721,Broadcasting,Broadcasting +377720,Broadcasting,Broadcasting +377719,Broadcasting,Broadcasting +377718,Broadcasting,Broadcasting +377717,Broadcasting,Broadcasting +377716,Broadcasting,Broadcasting +377715,Broadcasting,Broadcasting +377714,Broadcasting,Broadcasting +377713,Broadcasting,Broadcasting +377712,Broadcasting,Broadcasting +377711,Broadcasting,Broadcasting +377710,Broadcasting,Broadcasting +377709,Broadcasting,Broadcasting +377708,Broadcasting,Broadcasting +377706,Broadcasting,Broadcasting +377704,Broadcasting,Broadcasting +377703,Broadcasting,Broadcasting +377701,Broadcasting,Broadcasting +377699,Broadcasting,Broadcasting +377697,Broadcasting,Broadcasting +377695,Broadcasting,Broadcasting +377694,Broadcasting,Broadcasting +377692,Broadcasting,Broadcasting +377690,Broadcasting,Broadcasting +377689,Broadcasting,Broadcasting +377687,Broadcasting,Broadcasting +377686,Broadcasting,Broadcasting +377685,Broadcasting,Broadcasting +377684,Broadcasting,Broadcasting +377683,Broadcasting,Broadcasting +377682,Broadcasting,Broadcasting +377681,Broadcasting,Broadcasting +377680,Broadcasting,Broadcasting +377679,Broadcasting,Broadcasting +370359,Broadcasting,Broadcasting +370233,Broadcasting,Broadcasting +370228,Broadcasting,Broadcasting +370225,Broadcasting,Broadcasting +370223,Broadcasting,Broadcasting +370218,Broadcasting,Broadcasting +370216,Broadcasting,Broadcasting +365578,Broadcasting,Broadcasting +365577,Broadcasting,Broadcasting +356232,Broadcasting,Broadcasting +356225,Broadcasting,Broadcasting +351505,Broadcasting,Broadcasting +351401,Broadcasting,Broadcasting +351400,Broadcasting,Broadcasting +351398,Broadcasting,Broadcasting +351395,Broadcasting,Broadcasting +351391,Broadcasting,Broadcasting +351390,Broadcasting,Broadcasting +351389,Broadcasting,Broadcasting +351388,Broadcasting,Broadcasting +351385,Broadcasting,Broadcasting +351381,Broadcasting,Broadcasting +351378,Broadcasting,Broadcasting +349482,Broadcasting,Broadcasting +349481,Broadcasting,Broadcasting +349480,Broadcasting,Broadcasting +349479,Broadcasting,Broadcasting +347737,Broadcasting,Broadcasting +340450,Broadcasting,Broadcasting +329331,Broadcasting,Broadcasting +317472,Broadcasting,Broadcasting +317470,Broadcasting,Broadcasting +317469,Broadcasting,Broadcasting +305709,Broadcasting,Broadcasting +291729,Broadcasting,Broadcasting +274149,Broadcasting,Broadcasting +439877,Broadcasting,Broadcasting +439876,Broadcasting,Broadcasting +439875,Broadcasting,Broadcasting +439873,Broadcasting,Broadcasting +439872,Broadcasting,Broadcasting +439871,Broadcasting,Broadcasting +439870,Broadcasting,Broadcasting +439869,Broadcasting,Broadcasting +439868,Broadcasting,Broadcasting +426945,Broadcasting,Broadcasting +426944,Broadcasting,Broadcasting +426943,Broadcasting,Broadcasting +426941,Broadcasting,Broadcasting +426940,Broadcasting,Broadcasting +426939,Broadcasting,Broadcasting +426938,Broadcasting,Broadcasting +426937,Broadcasting,Broadcasting +426936,Broadcasting,Broadcasting +426935,Broadcasting,Broadcasting +426934,Broadcasting,Broadcasting +426933,Broadcasting,Broadcasting +426931,Broadcasting,Broadcasting +426930,Broadcasting,Broadcasting +426927,Broadcasting,Broadcasting +426926,Broadcasting,Broadcasting +426925,Broadcasting,Broadcasting +426924,Broadcasting,Broadcasting +426922,Broadcasting,Broadcasting +426921,Broadcasting,Broadcasting +426920,Broadcasting,Broadcasting +426919,Broadcasting,Broadcasting +426918,Broadcasting,Broadcasting +426917,Broadcasting,Broadcasting +426916,Broadcasting,Broadcasting +426915,Broadcasting,Broadcasting +426914,Broadcasting,Broadcasting +426913,Broadcasting,Broadcasting +426912,Broadcasting,Broadcasting +426911,Broadcasting,Broadcasting +426910,Broadcasting,Broadcasting +426909,Broadcasting,Broadcasting +426908,Broadcasting,Broadcasting +426907,Broadcasting,Broadcasting +426906,Broadcasting,Broadcasting +426905,Broadcasting,Broadcasting +426904,Broadcasting,Broadcasting +426903,Broadcasting,Broadcasting +426902,Broadcasting,Broadcasting +426901,Broadcasting,Broadcasting +426900,Broadcasting,Broadcasting +426899,Broadcasting,Broadcasting +426898,Broadcasting,Broadcasting +426897,Broadcasting,Broadcasting +426896,Broadcasting,Broadcasting +426895,Broadcasting,Broadcasting +426894,Broadcasting,Broadcasting +426893,Broadcasting,Broadcasting +426892,Broadcasting,Broadcasting +426891,Broadcasting,Broadcasting +426890,Broadcasting,Broadcasting +426889,Broadcasting,Broadcasting +426888,Broadcasting,Broadcasting +426887,Broadcasting,Broadcasting +426886,Broadcasting,Broadcasting +426885,Broadcasting,Broadcasting +426884,Broadcasting,Broadcasting +426883,Broadcasting,Broadcasting +426882,Broadcasting,Broadcasting +426881,Broadcasting,Broadcasting +426880,Broadcasting,Broadcasting +426879,Broadcasting,Broadcasting +426878,Broadcasting,Broadcasting +426877,Broadcasting,Broadcasting +414210,Broadcasting,Broadcasting +414209,Broadcasting,Broadcasting +414207,Broadcasting,Broadcasting +401362,Broadcasting,Broadcasting +401361,Broadcasting,Broadcasting +401359,Broadcasting,Broadcasting +401358,Broadcasting,Broadcasting +401357,Broadcasting,Broadcasting +401356,Broadcasting,Broadcasting +401354,Broadcasting,Broadcasting +401353,Broadcasting,Broadcasting +401350,Broadcasting,Broadcasting +401349,Broadcasting,Broadcasting +401347,Broadcasting,Broadcasting +401346,Broadcasting,Broadcasting +401345,Broadcasting,Broadcasting +401344,Broadcasting,Broadcasting +401343,Broadcasting,Broadcasting +401342,Broadcasting,Broadcasting +401341,Broadcasting,Broadcasting +401340,Broadcasting,Broadcasting +401339,Broadcasting,Broadcasting +401338,Broadcasting,Broadcasting +401337,Broadcasting,Broadcasting +401336,Broadcasting,Broadcasting +401334,Broadcasting,Broadcasting +401332,Broadcasting,Broadcasting +401331,Broadcasting,Broadcasting +401330,Broadcasting,Broadcasting +401327,Broadcasting,Broadcasting +401325,Broadcasting,Broadcasting +401310,Broadcasting,Broadcasting +401309,Broadcasting,Broadcasting +401308,Broadcasting,Broadcasting +401307,Broadcasting,Broadcasting +401306,Broadcasting,Broadcasting +401305,Broadcasting,Broadcasting +401302,Broadcasting,Broadcasting +401300,Broadcasting,Broadcasting +401299,Broadcasting,Broadcasting +401298,Broadcasting,Broadcasting +401297,Broadcasting,Broadcasting +401296,Broadcasting,Broadcasting +401295,Broadcasting,Broadcasting +401294,Broadcasting,Broadcasting +401293,Broadcasting,Broadcasting +401292,Broadcasting,Broadcasting +401291,Broadcasting,Broadcasting +398645,Broadcasting,Broadcasting +398643,Broadcasting,Broadcasting +398642,Broadcasting,Broadcasting +398640,Broadcasting,Broadcasting +398635,Broadcasting,Broadcasting +398634,Broadcasting,Broadcasting +398632,Broadcasting,Broadcasting +398630,Broadcasting,Broadcasting +398628,Broadcasting,Broadcasting +387007,Broadcasting,Broadcasting +536548,Broadcasting,Broadcasting +529065,Broadcasting,Broadcasting +529061,Broadcasting,Broadcasting +524226,Broadcasting,Broadcasting +524225,Broadcasting,Broadcasting +519186,Broadcasting,Broadcasting +516489,Broadcasting,Broadcasting +509766,Broadcasting,Broadcasting +507044,Broadcasting,Broadcasting +507042,Broadcasting,Broadcasting +507040,Broadcasting,Broadcasting +507037,Broadcasting,Broadcasting +507035,Broadcasting,Broadcasting +507032,Broadcasting,Broadcasting +507031,Broadcasting,Broadcasting +507029,Broadcasting,Broadcasting +507027,Broadcasting,Broadcasting +507026,Broadcasting,Broadcasting +507025,Broadcasting,Broadcasting +507024,Broadcasting,Broadcasting +507023,Broadcasting,Broadcasting +507022,Broadcasting,Broadcasting +507021,Broadcasting,Broadcasting +507020,Broadcasting,Broadcasting +507018,Broadcasting,Broadcasting +507017,Broadcasting,Broadcasting +507016,Broadcasting,Broadcasting +507015,Broadcasting,Broadcasting +507014,Broadcasting,Broadcasting +507012,Broadcasting,Broadcasting +507011,Broadcasting,Broadcasting +507010,Broadcasting,Broadcasting +507009,Broadcasting,Broadcasting +507008,Broadcasting,Broadcasting +507007,Broadcasting,Broadcasting +507005,Broadcasting,Broadcasting +507004,Broadcasting,Broadcasting +507003,Broadcasting,Broadcasting +503735,Broadcasting,Broadcasting +503734,Broadcasting,Broadcasting +503732,Broadcasting,Broadcasting +501197,Broadcasting,Broadcasting +499769,Broadcasting,Broadcasting +494818,Broadcasting,Broadcasting +494816,Broadcasting,Broadcasting +487396,Broadcasting,Broadcasting +487391,Broadcasting,Broadcasting +481180,Broadcasting,Broadcasting +481179,Broadcasting,Broadcasting +479272,Broadcasting,Broadcasting +477337,Broadcasting,Broadcasting +477336,Broadcasting,Broadcasting +477334,Broadcasting,Broadcasting +474753,Broadcasting,Broadcasting +471934,Broadcasting,Broadcasting +471933,Broadcasting,Broadcasting +466609,Broadcasting,Broadcasting +463053,Broadcasting,Broadcasting +463052,Broadcasting,Broadcasting +462252,Broadcasting,Broadcasting +453659,Broadcasting,Broadcasting +453654,Broadcasting,Broadcasting +453653,Broadcasting,Broadcasting +453652,Broadcasting,Broadcasting +453651,Broadcasting,Broadcasting +453650,Broadcasting,Broadcasting +453649,Broadcasting,Broadcasting +453648,Broadcasting,Broadcasting +453647,Broadcasting,Broadcasting +453646,Broadcasting,Broadcasting +453645,Broadcasting,Broadcasting +453644,Broadcasting,Broadcasting +453642,Broadcasting,Broadcasting +453641,Broadcasting,Broadcasting +453640,Broadcasting,Broadcasting +453639,Broadcasting,Broadcasting +453638,Broadcasting,Broadcasting +453637,Broadcasting,Broadcasting +453636,Broadcasting,Broadcasting +453635,Broadcasting,Broadcasting +453634,Broadcasting,Broadcasting +453633,Broadcasting,Broadcasting +453632,Broadcasting,Broadcasting +453631,Broadcasting,Broadcasting +453630,Broadcasting,Broadcasting +453629,Broadcasting,Broadcasting +453628,Broadcasting,Broadcasting +453627,Broadcasting,Broadcasting +453626,Broadcasting,Broadcasting +453625,Broadcasting,Broadcasting +453624,Broadcasting,Broadcasting +453623,Broadcasting,Broadcasting +453621,Broadcasting,Broadcasting +453620,Broadcasting,Broadcasting +453619,Broadcasting,Broadcasting +453618,Broadcasting,Broadcasting +453617,Broadcasting,Broadcasting +453616,Broadcasting,Broadcasting +453615,Broadcasting,Broadcasting +453613,Broadcasting,Broadcasting +471933,Telecommunications,Telecommunications +466609,Telecommunications,Telecommunications +351389,Telecommunications,Telecommunications +351388,Telecommunications,Telecommunications +351385,Telecommunications,Telecommunications +351381,Telecommunications,Telecommunications +351378,Telecommunications,Telecommunications +349482,Telecommunications,Telecommunications +349481,Telecommunications,Telecommunications +349480,Telecommunications,Telecommunications +349479,Telecommunications,Telecommunications +340450,Telecommunications,Telecommunications +169924,Telecommunications,Telecommunications +169923,Telecommunications,Telecommunications +169922,Telecommunications,Telecommunications +167519,Telecommunications,Telecommunications +167517,Telecommunications,Telecommunications +167514,Telecommunications,Telecommunications +167511,Telecommunications,Telecommunications +398645,Telecommunications,Telecommunications +398643,Telecommunications,Telecommunications +398642,Telecommunications,Telecommunications +398640,Telecommunications,Telecommunications +398635,Telecommunications,Telecommunications +398634,Telecommunications,Telecommunications +398632,Telecommunications,Telecommunications +398630,Telecommunications,Telecommunications +398628,Telecommunications,Telecommunications +387007,Telecommunications,Telecommunications +387006,Telecommunications,Telecommunications +387005,Telecommunications,Telecommunications +387004,Telecommunications,Telecommunications +387003,Telecommunications,Telecommunications +387001,Telecommunications,Telecommunications +386999,Telecommunications,Telecommunications +386997,Telecommunications,Telecommunications +386996,Telecommunications,Telecommunications +386995,Telecommunications,Telecommunications +386993,Telecommunications,Telecommunications +386991,Telecommunications,Telecommunications +377820,Telecommunications,Telecommunications +377729,Telecommunications,Telecommunications +377728,Telecommunications,Telecommunications +377726,Telecommunications,Telecommunications +377725,Telecommunications,Telecommunications +377724,Telecommunications,Telecommunications +377723,Telecommunications,Telecommunications +377722,Telecommunications,Telecommunications +377721,Telecommunications,Telecommunications +377720,Telecommunications,Telecommunications +377719,Telecommunications,Telecommunications +377718,Telecommunications,Telecommunications +377717,Telecommunications,Telecommunications +377716,Telecommunications,Telecommunications +377715,Telecommunications,Telecommunications +377714,Telecommunications,Telecommunications +377713,Telecommunications,Telecommunications +377712,Telecommunications,Telecommunications +377711,Telecommunications,Telecommunications +377710,Telecommunications,Telecommunications +377709,Telecommunications,Telecommunications +377708,Telecommunications,Telecommunications +377706,Telecommunications,Telecommunications +377704,Telecommunications,Telecommunications +377703,Telecommunications,Telecommunications +377701,Telecommunications,Telecommunications +377699,Telecommunications,Telecommunications +377697,Telecommunications,Telecommunications +377695,Telecommunications,Telecommunications +377694,Telecommunications,Telecommunications +377692,Telecommunications,Telecommunications +377690,Telecommunications,Telecommunications +377689,Telecommunications,Telecommunications +377687,Telecommunications,Telecommunications +377686,Telecommunications,Telecommunications +377685,Telecommunications,Telecommunications +377684,Telecommunications,Telecommunications +377683,Telecommunications,Telecommunications +377682,Telecommunications,Telecommunications +377681,Telecommunications,Telecommunications +377680,Telecommunications,Telecommunications +377679,Telecommunications,Telecommunications +370359,Telecommunications,Telecommunications +370233,Telecommunications,Telecommunications +370228,Telecommunications,Telecommunications +370225,Telecommunications,Telecommunications +370223,Telecommunications,Telecommunications +370218,Telecommunications,Telecommunications +370216,Telecommunications,Telecommunications +356232,Telecommunications,Telecommunications +356225,Telecommunications,Telecommunications +351505,Telecommunications,Telecommunications +351401,Telecommunications,Telecommunications +351400,Telecommunications,Telecommunications +351398,Telecommunications,Telecommunications +351395,Telecommunications,Telecommunications +351391,Telecommunications,Telecommunications +351390,Telecommunications,Telecommunications +463053,Telecommunications,Telecommunications +463052,Telecommunications,Telecommunications +462252,Telecommunications,Telecommunications +453659,Telecommunications,Telecommunications +453654,Telecommunications,Telecommunications +453653,Telecommunications,Telecommunications +453652,Telecommunications,Telecommunications +453651,Telecommunications,Telecommunications +453650,Telecommunications,Telecommunications +453649,Telecommunications,Telecommunications +453648,Telecommunications,Telecommunications +453647,Telecommunications,Telecommunications +453646,Telecommunications,Telecommunications +453645,Telecommunications,Telecommunications +453644,Telecommunications,Telecommunications +453642,Telecommunications,Telecommunications +453641,Telecommunications,Telecommunications +453640,Telecommunications,Telecommunications +453639,Telecommunications,Telecommunications +453638,Telecommunications,Telecommunications +453637,Telecommunications,Telecommunications +453636,Telecommunications,Telecommunications +453635,Telecommunications,Telecommunications +453634,Telecommunications,Telecommunications +453633,Telecommunications,Telecommunications +453632,Telecommunications,Telecommunications +453631,Telecommunications,Telecommunications +453630,Telecommunications,Telecommunications +453629,Telecommunications,Telecommunications +453628,Telecommunications,Telecommunications +453627,Telecommunications,Telecommunications +453626,Telecommunications,Telecommunications +453625,Telecommunications,Telecommunications +453624,Telecommunications,Telecommunications +453623,Telecommunications,Telecommunications +453621,Telecommunications,Telecommunications +453620,Telecommunications,Telecommunications +453619,Telecommunications,Telecommunications +453618,Telecommunications,Telecommunications +453617,Telecommunications,Telecommunications +453616,Telecommunications,Telecommunications +453615,Telecommunications,Telecommunications +453613,Telecommunications,Telecommunications +439877,Telecommunications,Telecommunications +439876,Telecommunications,Telecommunications +439875,Telecommunications,Telecommunications +439873,Telecommunications,Telecommunications +439872,Telecommunications,Telecommunications +439871,Telecommunications,Telecommunications +439870,Telecommunications,Telecommunications +439869,Telecommunications,Telecommunications +439868,Telecommunications,Telecommunications +426945,Telecommunications,Telecommunications +426944,Telecommunications,Telecommunications +426943,Telecommunications,Telecommunications +426941,Telecommunications,Telecommunications +426940,Telecommunications,Telecommunications +426939,Telecommunications,Telecommunications +426938,Telecommunications,Telecommunications +426937,Telecommunications,Telecommunications +426936,Telecommunications,Telecommunications +426935,Telecommunications,Telecommunications +426934,Telecommunications,Telecommunications +426933,Telecommunications,Telecommunications +426931,Telecommunications,Telecommunications +426930,Telecommunications,Telecommunications +426927,Telecommunications,Telecommunications +426926,Telecommunications,Telecommunications +426925,Telecommunications,Telecommunications +426924,Telecommunications,Telecommunications +426922,Telecommunications,Telecommunications +426921,Telecommunications,Telecommunications +426920,Telecommunications,Telecommunications +426919,Telecommunications,Telecommunications +426918,Telecommunications,Telecommunications +426917,Telecommunications,Telecommunications +426916,Telecommunications,Telecommunications +426915,Telecommunications,Telecommunications +426914,Telecommunications,Telecommunications +426913,Telecommunications,Telecommunications +426912,Telecommunications,Telecommunications +426911,Telecommunications,Telecommunications +426910,Telecommunications,Telecommunications +426909,Telecommunications,Telecommunications +426908,Telecommunications,Telecommunications +426907,Telecommunications,Telecommunications +426906,Telecommunications,Telecommunications +426905,Telecommunications,Telecommunications +426904,Telecommunications,Telecommunications +426903,Telecommunications,Telecommunications +426902,Telecommunications,Telecommunications +426901,Telecommunications,Telecommunications +426900,Telecommunications,Telecommunications +426899,Telecommunications,Telecommunications +426898,Telecommunications,Telecommunications +426897,Telecommunications,Telecommunications +426896,Telecommunications,Telecommunications +426895,Telecommunications,Telecommunications +426894,Telecommunications,Telecommunications +426893,Telecommunications,Telecommunications +426892,Telecommunications,Telecommunications +426891,Telecommunications,Telecommunications +426890,Telecommunications,Telecommunications +426889,Telecommunications,Telecommunications +426888,Telecommunications,Telecommunications +426887,Telecommunications,Telecommunications +426886,Telecommunications,Telecommunications +426885,Telecommunications,Telecommunications +426884,Telecommunications,Telecommunications +426883,Telecommunications,Telecommunications +426882,Telecommunications,Telecommunications +426881,Telecommunications,Telecommunications +426880,Telecommunications,Telecommunications +426879,Telecommunications,Telecommunications +426878,Telecommunications,Telecommunications +426877,Telecommunications,Telecommunications +414210,Telecommunications,Telecommunications +414209,Telecommunications,Telecommunications +414207,Telecommunications,Telecommunications +401362,Telecommunications,Telecommunications +401361,Telecommunications,Telecommunications +401359,Telecommunications,Telecommunications +401358,Telecommunications,Telecommunications +401357,Telecommunications,Telecommunications +401356,Telecommunications,Telecommunications +401354,Telecommunications,Telecommunications +401353,Telecommunications,Telecommunications +401350,Telecommunications,Telecommunications +401349,Telecommunications,Telecommunications +401347,Telecommunications,Telecommunications +401346,Telecommunications,Telecommunications +401345,Telecommunications,Telecommunications +401344,Telecommunications,Telecommunications +401343,Telecommunications,Telecommunications +401342,Telecommunications,Telecommunications +401341,Telecommunications,Telecommunications +401340,Telecommunications,Telecommunications +401339,Telecommunications,Telecommunications +401338,Telecommunications,Telecommunications +401337,Telecommunications,Telecommunications +401336,Telecommunications,Telecommunications +401334,Telecommunications,Telecommunications +401332,Telecommunications,Telecommunications +401331,Telecommunications,Telecommunications +401330,Telecommunications,Telecommunications +401327,Telecommunications,Telecommunications +401325,Telecommunications,Telecommunications +401310,Telecommunications,Telecommunications +401309,Telecommunications,Telecommunications +401308,Telecommunications,Telecommunications +401307,Telecommunications,Telecommunications +401306,Telecommunications,Telecommunications +401305,Telecommunications,Telecommunications +401302,Telecommunications,Telecommunications +401300,Telecommunications,Telecommunications +401299,Telecommunications,Telecommunications +401298,Telecommunications,Telecommunications +401297,Telecommunications,Telecommunications +401296,Telecommunications,Telecommunications +401295,Telecommunications,Telecommunications +401294,Telecommunications,Telecommunications +401293,Telecommunications,Telecommunications +401292,Telecommunications,Telecommunications +401291,Telecommunications,Telecommunications +524226,Telecommunications,Telecommunications +524225,Telecommunications,Telecommunications +516489,Telecommunications,Telecommunications +507044,Telecommunications,Telecommunications +507042,Telecommunications,Telecommunications +507040,Telecommunications,Telecommunications +507037,Telecommunications,Telecommunications +507035,Telecommunications,Telecommunications +507032,Telecommunications,Telecommunications +507031,Telecommunications,Telecommunications +507029,Telecommunications,Telecommunications +507027,Telecommunications,Telecommunications +507026,Telecommunications,Telecommunications +507025,Telecommunications,Telecommunications +507024,Telecommunications,Telecommunications +507023,Telecommunications,Telecommunications +507022,Telecommunications,Telecommunications +507021,Telecommunications,Telecommunications +507020,Telecommunications,Telecommunications +507018,Telecommunications,Telecommunications +507017,Telecommunications,Telecommunications +507016,Telecommunications,Telecommunications +507015,Telecommunications,Telecommunications +507014,Telecommunications,Telecommunications +507012,Telecommunications,Telecommunications +507011,Telecommunications,Telecommunications +507010,Telecommunications,Telecommunications +507009,Telecommunications,Telecommunications +507008,Telecommunications,Telecommunications +507007,Telecommunications,Telecommunications +507005,Telecommunications,Telecommunications +507004,Telecommunications,Telecommunications +507003,Telecommunications,Telecommunications +501197,Telecommunications,Telecommunications +499769,Telecommunications,Telecommunications +494818,Telecommunications,Telecommunications +494816,Telecommunications,Telecommunications +487396,Telecommunications,Telecommunications +487391,Telecommunications,Telecommunications +481180,Telecommunications,Telecommunications +481179,Telecommunications,Telecommunications +479272,Telecommunications,Telecommunications +477337,Telecommunications,Telecommunications +477336,Telecommunications,Telecommunications +477334,Telecommunications,Telecommunications +474753,Telecommunications,Telecommunications +541580,Science and Technology,Science and Technology +419765,Science and Technology,Science and Technology +153629,Science and Technology,Science and Technology +153479,Science and Technology,Science and Technology +207610,Science and Technology,Science and Technology +202852,Science and Technology,Science and Technology +202850,Science and Technology,Science and Technology +199451,Science and Technology,Science and Technology +195406,Science and Technology,Science and Technology +189800,Science and Technology,Science and Technology +189799,Science and Technology,Science and Technology +189798,Science and Technology,Science and Technology +189797,Science and Technology,Science and Technology +189796,Science and Technology,Science and Technology +173547,Science and Technology,Science and Technology +163994,Science and Technology,Science and Technology +162635,Science and Technology,Science and Technology +153630,Science and Technology,Science and Technology +382056,Science and Technology,Science and Technology +362178,Science and Technology,Science and Technology +356320,Science and Technology,Science and Technology +328189,Science and Technology,Science and Technology +297489,Science and Technology,Science and Technology +484305,Science and Technology,Science and Technology +484301,Science and Technology,Science and Technology +212787,Science and Technology,Science and Technology +210151,Science and Technology,Science and Technology +209507,Science and Technology,Science and Technology +209488,Science and Technology,Science and Technology +209487,Science and Technology,Science and Technology +293189,Science and Technology,Science and Technology +269811,Science and Technology,Science and Technology +393481,Science and Technology,Science and Technology +393480,Science and Technology,Science and Technology +393409,Science and Technology,Science and Technology +393403,Science and Technology,Science and Technology +393392,Science and Technology,Science and Technology +393391,Science and Technology,Science and Technology +393390,Science and Technology,Science and Technology +393389,Science and Technology,Science and Technology +393388,Science and Technology,Science and Technology +393387,Science and Technology,Science and Technology +393386,Science and Technology,Science and Technology +393381,Science and Technology,Science and Technology +393378,Science and Technology,Science and Technology +368349,Science and Technology,Science and Technology +368347,Science and Technology,Science and Technology +368345,Science and Technology,Science and Technology +348053,Science and Technology,Science and Technology +330527,Science and Technology,Science and Technology +330525,Science and Technology,Science and Technology +469284,Science and Technology,Science and Technology +469283,Science and Technology,Science and Technology +460878,Science and Technology,Science and Technology +460541,Science and Technology,Science and Technology +459262,Science and Technology,Science and Technology +458007,Science and Technology,Science and Technology +454864,Science and Technology,Science and Technology +453700,Science and Technology,Science and Technology +453699,Science and Technology,Science and Technology +452550,Science and Technology,Science and Technology +448703,Science and Technology,Science and Technology +446026,Science and Technology,Science and Technology +444716,Science and Technology,Science and Technology +444715,Science and Technology,Science and Technology +444714,Science and Technology,Science and Technology +444712,Science and Technology,Science and Technology +444711,Science and Technology,Science and Technology +444710,Science and Technology,Science and Technology +444709,Science and Technology,Science and Technology +444708,Science and Technology,Science and Technology +444707,Science and Technology,Science and Technology +444667,Science and Technology,Science and Technology +444664,Science and Technology,Science and Technology +444663,Science and Technology,Science and Technology +444662,Science and Technology,Science and Technology +444659,Science and Technology,Science and Technology +444658,Science and Technology,Science and Technology +444637,Science and Technology,Science and Technology +437272,Science and Technology,Science and Technology +437222,Science and Technology,Science and Technology +436586,Science and Technology,Science and Technology +435577,Science and Technology,Science and Technology +434053,Science and Technology,Science and Technology +432320,Science and Technology,Science and Technology +429767,Science and Technology,Science and Technology +427089,Science and Technology,Science and Technology +425411,Science and Technology,Science and Technology +424700,Science and Technology,Science and Technology +424566,Science and Technology,Science and Technology +420368,Science and Technology,Science and Technology +419044,Science and Technology,Science and Technology +419042,Science and Technology,Science and Technology +419041,Science and Technology,Science and Technology +419040,Science and Technology,Science and Technology +419038,Science and Technology,Science and Technology +419034,Science and Technology,Science and Technology +419032,Science and Technology,Science and Technology +419031,Science and Technology,Science and Technology +419030,Science and Technology,Science and Technology +419029,Science and Technology,Science and Technology +419028,Science and Technology,Science and Technology +419027,Science and Technology,Science and Technology +419026,Science and Technology,Science and Technology +419025,Science and Technology,Science and Technology +419024,Science and Technology,Science and Technology +419023,Science and Technology,Science and Technology +419020,Science and Technology,Science and Technology +419019,Science and Technology,Science and Technology +419018,Science and Technology,Science and Technology +419014,Science and Technology,Science and Technology +418882,Science and Technology,Science and Technology +418880,Science and Technology,Science and Technology +418852,Science and Technology,Science and Technology +418850,Science and Technology,Science and Technology +418847,Science and Technology,Science and Technology +418549,Science and Technology,Science and Technology +200525,Broadcasting,Broadcasting +195005,Telecommunications,Telecommunications +189640,Telecommunications,Telecommunications +122094,Telecommunications,Telecommunications +113734,Telecommunications,Telecommunications +109123,Telecommunications,Telecommunications +109121,Telecommunications,Telecommunications +109118,Telecommunications,Telecommunications +109115,Telecommunications,Telecommunications +82759,Telecommunications,Telecommunications +80756,Telecommunications,Telecommunications +185370,Telecommunications,Telecommunications +185369,Telecommunications,Telecommunications +185366,Telecommunications,Telecommunications +185365,Telecommunications,Telecommunications +185362,Telecommunications,Telecommunications +185353,Telecommunications,Telecommunications +180453,Telecommunications,Telecommunications +180386,Telecommunications,Telecommunications +175623,Telecommunications,Telecommunications +170852,Telecommunications,Telecommunications +165942,Telecommunications,Telecommunications +150577,Telecommunications,Telecommunications +327620,Telecommunications,Telecommunications +322335,Telecommunications,Telecommunications +287070,Telecommunications,Telecommunications +202876,Telecommunications,Telecommunications +202870,Telecommunications,Telecommunications +200526,Telecommunications,Telecommunications +200525,Telecommunications,Telecommunications +200510,Telecommunications,Telecommunications +200507,Telecommunications,Telecommunications +486447,Science and Technology,Science and Technology +486444,Science and Technology,Science and Technology +168907,Science and Technology,Science and Technology +145958,Science and Technology,Science and Technology +143137,Science and Technology,Science and Technology +276080,Science and Technology,Science and Technology +263893,Science and Technology,Science and Technology +263891,Science and Technology,Science and Technology +263890,Science and Technology,Science and Technology +263889,Science and Technology,Science and Technology +423250,Science and Technology,Science and Technology +385328,Science and Technology,Science and Technology +379523,Science and Technology,Science and Technology +374427,Science and Technology,Science and Technology +371657,Science and Technology,Science and Technology +525371,Science and Technology,Science and Technology +517508,Science and Technology,Science and Technology +515253,Science and Technology,Science and Technology +514503,Science and Technology,Science and Technology +513480,Science and Technology,Science and Technology +497903,Science and Technology,Science and Technology +537643,Telecommunications,Telecommunications +514503,Telecommunications,Telecommunications +80755,Telecommunications,Telecommunications +148171,Telecommunications,Telecommunications +148169,Telecommunications,Telecommunications +128494,Telecommunications,Telecommunications +314539,Telecommunications,Telecommunications +314535,Telecommunications,Telecommunications +314534,Telecommunications,Telecommunications +314533,Telecommunications,Telecommunications +314532,Telecommunications,Telecommunications +314531,Telecommunications,Telecommunications +314530,Telecommunications,Telecommunications +314529,Telecommunications,Telecommunications +312917,Telecommunications,Telecommunications +312914,Telecommunications,Telecommunications +309755,Telecommunications,Telecommunications +309715,Telecommunications,Telecommunications +309714,Telecommunications,Telecommunications +300215,Telecommunications,Telecommunications +300214,Telecommunications,Telecommunications +300212,Telecommunications,Telecommunications +300211,Telecommunications,Telecommunications +300210,Telecommunications,Telecommunications +300209,Telecommunications,Telecommunications +300191,Telecommunications,Telecommunications +300174,Telecommunications,Telecommunications +300173,Telecommunications,Telecommunications +300172,Telecommunications,Telecommunications +300170,Telecommunications,Telecommunications +300169,Telecommunications,Telecommunications +300149,Telecommunications,Telecommunications +300130,Telecommunications,Telecommunications +300129,Telecommunications,Telecommunications +300109,Telecommunications,Telecommunications +300090,Telecommunications,Telecommunications +294498,Telecommunications,Telecommunications +294497,Telecommunications,Telecommunications +294496,Telecommunications,Telecommunications +294494,Telecommunications,Telecommunications +294492,Telecommunications,Telecommunications +294491,Telecommunications,Telecommunications +294490,Telecommunications,Telecommunications +294489,Telecommunications,Telecommunications +288790,Telecommunications,Telecommunications +288789,Telecommunications,Telecommunications +288771,Telecommunications,Telecommunications +288770,Telecommunications,Telecommunications +288769,Telecommunications,Telecommunications +276079,Telecommunications,Telecommunications +271716,Telecommunications,Telecommunications +271715,Telecommunications,Telecommunications +266973,Telecommunications,Telecommunications +258192,Telecommunications,Telecommunications +257790,Telecommunications,Telecommunications +257789,Telecommunications,Telecommunications +489772,Telecommunications,Telecommunications +486447,Telecommunications,Telecommunications +348271,Telecommunications,Telecommunications +344832,Telecommunications,Telecommunications +337694,Telecommunications,Telecommunications +334878,Telecommunications,Telecommunications +334877,Telecommunications,Telecommunications +332749,Telecommunications,Telecommunications +329612,Telecommunications,Telecommunications +326447,Telecommunications,Telecommunications +326445,Telecommunications,Telecommunications +326444,Telecommunications,Telecommunications +326442,Telecommunications,Telecommunications +321480,Telecommunications,Telecommunications +321479,Telecommunications,Telecommunications +321476,Telecommunications,Telecommunications +321474,Telecommunications,Telecommunications +321471,Telecommunications,Telecommunications +321470,Telecommunications,Telecommunications +321469,Telecommunications,Telecommunications +318621,Telecommunications,Telecommunications +318618,Telecommunications,Telecommunications +318612,Telecommunications,Telecommunications +318606,Telecommunications,Telecommunications +318604,Telecommunications,Telecommunications +318601,Telecommunications,Telecommunications +314551,Telecommunications,Telecommunications +314550,Telecommunications,Telecommunications +314549,Telecommunications,Telecommunications +314548,Telecommunications,Telecommunications +314547,Telecommunications,Telecommunications +314546,Telecommunications,Telecommunications +314545,Telecommunications,Telecommunications +314544,Telecommunications,Telecommunications +314542,Telecommunications,Telecommunications +314541,Telecommunications,Telecommunications +409885,Arts and Culture,Arts and Culture +447445,Science and Technology,Science and Technology +432600,Science and Technology,Science and Technology +156048,Science and Technology,Science and Technology +121934,Science and Technology,Science and Technology +317552,Science and Technology,Science and Technology +317489,Science and Technology,Science and Technology +292971,Science and Technology,Science and Technology +292970,Science and Technology,Science and Technology +292969,Science and Technology,Science and Technology +189250,Science and Technology,Science and Technology +415691,Science and Technology,Science and Technology +415688,Science and Technology,Science and Technology +415683,Science and Technology,Science and Technology +413516,Science and Technology,Science and Technology +413507,Science and Technology,Science and Technology +413500,Science and Technology,Science and Technology +413497,Science and Technology,Science and Technology +409884,Science and Technology,Science and Technology +403512,Science and Technology,Science and Technology +403510,Science and Technology,Science and Technology +403509,Science and Technology,Science and Technology +393746,Science and Technology,Science and Technology +393744,Science and Technology,Science and Technology +390677,Science and Technology,Science and Technology +390664,Science and Technology,Science and Technology +390654,Science and Technology,Science and Technology +390650,Science and Technology,Science and Technology +390649,Science and Technology,Science and Technology +390630,Science and Technology,Science and Technology +387649,Science and Technology,Science and Technology +537990,Science and Technology,Science and Technology +537988,Science and Technology,Science and Technology +523019,Science and Technology,Science and Technology +516588,Science and Technology,Science and Technology +207689,Aboriginal Affairs,Aboriginal Affairs +475657,Arts and Culture,Arts and Culture +475636,Arts and Culture,Arts and Culture +129274,Arts and Culture,Arts and Culture +125176,Arts and Culture,Arts and Culture +109828,Arts and Culture,Arts and Culture +230630,Arts and Culture,Arts and Culture +377005,Arts and Culture,Arts and Culture +374935,Arts and Culture,Arts and Culture +369525,Arts and Culture,Arts and Culture +367818,Arts and Culture,Arts and Culture +319253,Arts and Culture,Arts and Culture +319241,Arts and Culture,Arts and Culture +273704,Arts and Culture,Arts and Culture +448133,Arts and Culture,Arts and Culture +435581,Arts and Culture,Arts and Culture +435579,Arts and Culture,Arts and Culture +403906,Arts and Culture,Arts and Culture +385679,Arts and Culture,Arts and Culture +536970,Arts and Culture,Arts and Culture +532456,Arts and Culture,Arts and Culture +528972,Arts and Culture,Arts and Culture +521701,Arts and Culture,Arts and Culture +508752,Arts and Culture,Arts and Culture +505224,Arts and Culture,Arts and Culture +499318,Arts and Culture,Arts and Culture +496135,Arts and Culture,Arts and Culture +496131,Arts and Culture,Arts and Culture +496089,Arts and Culture,Arts and Culture +471053,Broadcasting,Broadcasting +470870,Broadcasting,Broadcasting +106434,Broadcasting,Broadcasting +97534,Broadcasting,Broadcasting +83112,Broadcasting,Broadcasting +148266,Broadcasting,Broadcasting +146181,Broadcasting,Broadcasting +139255,Broadcasting,Broadcasting +139254,Broadcasting,Broadcasting +342051,Broadcasting,Broadcasting +319240,Broadcasting,Broadcasting +259533,Broadcasting,Broadcasting +255490,Broadcasting,Broadcasting +254394,Broadcasting,Broadcasting +240923,Broadcasting,Broadcasting +240921,Broadcasting,Broadcasting +240920,Broadcasting,Broadcasting +240918,Broadcasting,Broadcasting +237210,Broadcasting,Broadcasting +237209,Broadcasting,Broadcasting +233876,Broadcasting,Broadcasting +233875,Broadcasting,Broadcasting +233873,Broadcasting,Broadcasting +233871,Broadcasting,Broadcasting +233870,Broadcasting,Broadcasting +230632,Broadcasting,Broadcasting +230631,Broadcasting,Broadcasting +230629,Broadcasting,Broadcasting +185996,Broadcasting,Broadcasting +460709,Broadcasting,Broadcasting +460701,Broadcasting,Broadcasting +460171,Broadcasting,Broadcasting +457319,Broadcasting,Broadcasting +457318,Broadcasting,Broadcasting +450196,Broadcasting,Broadcasting +450191,Broadcasting,Broadcasting +450187,Broadcasting,Broadcasting +450182,Broadcasting,Broadcasting +450172,Broadcasting,Broadcasting +450151,Broadcasting,Broadcasting +450075,Broadcasting,Broadcasting +448129,Broadcasting,Broadcasting +435608,Broadcasting,Broadcasting +435602,Broadcasting,Broadcasting +435593,Broadcasting,Broadcasting +435581,Broadcasting,Broadcasting +435579,Broadcasting,Broadcasting +435578,Broadcasting,Broadcasting +432573,Broadcasting,Broadcasting +432568,Broadcasting,Broadcasting +430578,Broadcasting,Broadcasting +426964,Broadcasting,Broadcasting +417938,Broadcasting,Broadcasting +417936,Broadcasting,Broadcasting +403906,Broadcasting,Broadcasting +392673,Broadcasting,Broadcasting +388461,Broadcasting,Broadcasting +385679,Broadcasting,Broadcasting +383834,Broadcasting,Broadcasting +383832,Broadcasting,Broadcasting +381618,Broadcasting,Broadcasting +379958,Broadcasting,Broadcasting +377313,Broadcasting,Broadcasting +377005,Broadcasting,Broadcasting +374935,Broadcasting,Broadcasting +374934,Broadcasting,Broadcasting +374924,Broadcasting,Broadcasting +372493,Broadcasting,Broadcasting +369525,Broadcasting,Broadcasting +367818,Broadcasting,Broadcasting +359849,Broadcasting,Broadcasting +358219,Broadcasting,Broadcasting +533614,Broadcasting,Broadcasting +533613,Broadcasting,Broadcasting +533612,Broadcasting,Broadcasting +533609,Broadcasting,Broadcasting +533606,Broadcasting,Broadcasting +533603,Broadcasting,Broadcasting +533600,Broadcasting,Broadcasting +532451,Broadcasting,Broadcasting +528949,Broadcasting,Broadcasting +526422,Broadcasting,Broadcasting +526287,Broadcasting,Broadcasting +526283,Broadcasting,Broadcasting +526272,Broadcasting,Broadcasting +526262,Broadcasting,Broadcasting +526256,Broadcasting,Broadcasting +521690,Broadcasting,Broadcasting +521678,Broadcasting,Broadcasting +518133,Broadcasting,Broadcasting +518082,Broadcasting,Broadcasting +518081,Broadcasting,Broadcasting +518080,Broadcasting,Broadcasting +518078,Broadcasting,Broadcasting +518069,Broadcasting,Broadcasting +508777,Broadcasting,Broadcasting +508773,Broadcasting,Broadcasting +508770,Broadcasting,Broadcasting +508766,Broadcasting,Broadcasting +508760,Broadcasting,Broadcasting +505217,Broadcasting,Broadcasting +505209,Broadcasting,Broadcasting +502271,Broadcasting,Broadcasting +499383,Broadcasting,Broadcasting +499362,Broadcasting,Broadcasting +499348,Broadcasting,Broadcasting +496136,Broadcasting,Broadcasting +493712,Broadcasting,Broadcasting +493709,Broadcasting,Broadcasting +493699,Broadcasting,Broadcasting +493695,Broadcasting,Broadcasting +493692,Broadcasting,Broadcasting +493690,Broadcasting,Broadcasting +491571,Broadcasting,Broadcasting +491519,Broadcasting,Broadcasting +491508,Broadcasting,Broadcasting +491479,Broadcasting,Broadcasting +491473,Broadcasting,Broadcasting +491463,Broadcasting,Broadcasting +486339,Broadcasting,Broadcasting +486032,Broadcasting,Broadcasting +486030,Broadcasting,Broadcasting +486029,Broadcasting,Broadcasting +485201,Broadcasting,Broadcasting +485086,Broadcasting,Broadcasting +485068,Broadcasting,Broadcasting +485057,Broadcasting,Broadcasting +482261,Broadcasting,Broadcasting +478592,Broadcasting,Broadcasting +485135,Science and Technology,Science and Technology +470870,Science and Technology,Science and Technology +532457,Science and Technology,Science and Technology +499366,Science and Technology,Science and Technology +496137,Science and Technology,Science and Technology +486032,Science and Technology,Science and Technology +359849,Telecommunications,Telecommunications +358220,Telecommunications,Telecommunications +101420,Telecommunications,Telecommunications +101418,Telecommunications,Telecommunications +97535,Telecommunications,Telecommunications +97534,Telecommunications,Telecommunications +94102,Telecommunications,Telecommunications +94099,Telecommunications,Telecommunications +94098,Telecommunications,Telecommunications +90582,Telecommunications,Telecommunications +88262,Telecommunications,Telecommunications +88261,Telecommunications,Telecommunications +85616,Telecommunications,Telecommunications +85603,Telecommunications,Telecommunications +157371,Telecommunications,Telecommunications +157295,Telecommunications,Telecommunications +143205,Telecommunications,Telecommunications +135991,Telecommunications,Telecommunications +132954,Telecommunications,Telecommunications +132953,Telecommunications,Telecommunications +185996,Telecommunications,Telecommunications +330238,Telecommunications,Telecommunications +329615,Telecommunications,Telecommunications +319257,Telecommunications,Telecommunications +319245,Telecommunications,Telecommunications +319240,Telecommunications,Telecommunications +315899,Telecommunications,Telecommunications +312860,Telecommunications,Telecommunications +296819,Telecommunications,Telecommunications +286833,Telecommunications,Telecommunications +280269,Telecommunications,Telecommunications +279829,Telecommunications,Telecommunications +277930,Telecommunications,Telecommunications +277929,Telecommunications,Telecommunications +277912,Telecommunications,Telecommunications +277911,Telecommunications,Telecommunications +273700,Telecommunications,Telecommunications +255490,Telecommunications,Telecommunications +240923,Telecommunications,Telecommunications +240920,Telecommunications,Telecommunications +240919,Telecommunications,Telecommunications +237210,Telecommunications,Telecommunications +237209,Telecommunications,Telecommunications +233876,Telecommunications,Telecommunications +233875,Telecommunications,Telecommunications +233873,Telecommunications,Telecommunications +233871,Telecommunications,Telecommunications +233870,Telecommunications,Telecommunications +230632,Telecommunications,Telecommunications +230631,Telecommunications,Telecommunications +230629,Telecommunications,Telecommunications +544034,Telecommunications,Telecommunications +544030,Telecommunications,Telecommunications +539422,Telecommunications,Telecommunications +536973,Telecommunications,Telecommunications +533614,Telecommunications,Telecommunications +533613,Telecommunications,Telecommunications +533612,Telecommunications,Telecommunications +533609,Telecommunications,Telecommunications +533606,Telecommunications,Telecommunications +533603,Telecommunications,Telecommunications +533600,Telecommunications,Telecommunications +533598,Telecommunications,Telecommunications +533594,Telecommunications,Telecommunications +532455,Telecommunications,Telecommunications +532454,Telecommunications,Telecommunications +532453,Telecommunications,Telecommunications +532452,Telecommunications,Telecommunications +532450,Telecommunications,Telecommunications +528967,Telecommunications,Telecommunications +528962,Telecommunications,Telecommunications +528959,Telecommunications,Telecommunications +528945,Telecommunications,Telecommunications +528942,Telecommunications,Telecommunications +526279,Telecommunications,Telecommunications +521703,Telecommunications,Telecommunications +521675,Telecommunications,Telecommunications +518133,Telecommunications,Telecommunications +518082,Telecommunications,Telecommunications +518081,Telecommunications,Telecommunications +518080,Telecommunications,Telecommunications +518078,Telecommunications,Telecommunications +518069,Telecommunications,Telecommunications +508777,Telecommunications,Telecommunications +508770,Telecommunications,Telecommunications +508766,Telecommunications,Telecommunications +508760,Telecommunications,Telecommunications +499383,Telecommunications,Telecommunications +499366,Telecommunications,Telecommunications +499332,Telecommunications,Telecommunications +496123,Telecommunications,Telecommunications +491702,Telecommunications,Telecommunications +491698,Telecommunications,Telecommunications +491560,Telecommunications,Telecommunications +491553,Telecommunications,Telecommunications +491525,Telecommunications,Telecommunications +491508,Telecommunications,Telecommunications +491479,Telecommunications,Telecommunications +491473,Telecommunications,Telecommunications +486032,Telecommunications,Telecommunications +486029,Telecommunications,Telecommunications +485122,Telecommunications,Telecommunications +485068,Telecommunications,Telecommunications +485057,Telecommunications,Telecommunications +482265,Telecommunications,Telecommunications +482240,Telecommunications,Telecommunications +478592,Telecommunications,Telecommunications +475740,Telecommunications,Telecommunications +473759,Telecommunications,Telecommunications +471053,Telecommunications,Telecommunications +471002,Telecommunications,Telecommunications +470870,Telecommunications,Telecommunications +460709,Telecommunications,Telecommunications +460707,Telecommunications,Telecommunications +460175,Telecommunications,Telecommunications +460171,Telecommunications,Telecommunications +450196,Telecommunications,Telecommunications +450191,Telecommunications,Telecommunications +450187,Telecommunications,Telecommunications +450182,Telecommunications,Telecommunications +450172,Telecommunications,Telecommunications +450151,Telecommunications,Telecommunications +450075,Telecommunications,Telecommunications +448129,Telecommunications,Telecommunications +430578,Telecommunications,Telecommunications +413503,Telecommunications,Telecommunications +405704,Telecommunications,Telecommunications +405695,Telecommunications,Telecommunications +405692,Telecommunications,Telecommunications +392677,Telecommunications,Telecommunications +392673,Telecommunications,Telecommunications +388484,Telecommunications,Telecommunications +388461,Telecommunications,Telecommunications +385677,Telecommunications,Telecommunications +382530,Telecommunications,Telecommunications +379961,Telecommunications,Telecommunications +376999,Telecommunications,Telecommunications +374932,Telecommunications,Telecommunications +369530,Telecommunications,Telecommunications +369525,Telecommunications,Telecommunications +366752,Telecommunications,Telecommunications +365315,Telecommunications,Telecommunications +363413,Telecommunications,Telecommunications +167557,Arts and Culture,Arts and Culture +167545,Arts and Culture,Arts and Culture +106641,Arts and Culture,Arts and Culture +87851,Arts and Culture,Arts and Culture +156663,Arts and Culture,Arts and Culture +156662,Arts and Culture,Arts and Culture +156661,Arts and Culture,Arts and Culture +156659,Arts and Culture,Arts and Culture +156657,Arts and Culture,Arts and Culture +156655,Arts and Culture,Arts and Culture +156653,Arts and Culture,Arts and Culture +147940,Arts and Culture,Arts and Culture +167561,Arts and Culture,Arts and Culture +147941,Broadcasting,Broadcasting +138274,Broadcasting,Broadcasting +87851,Broadcasting,Broadcasting +78074,Broadcasting,Broadcasting +125514,Broadcasting,Broadcasting +125460,Broadcasting,Broadcasting +125459,Broadcasting,Broadcasting +106914,Broadcasting,Broadcasting +167561,Broadcasting,Broadcasting +167560,Broadcasting,Broadcasting +167559,Broadcasting,Broadcasting +167557,Broadcasting,Broadcasting +167545,Broadcasting,Broadcasting +156662,Broadcasting,Broadcasting +156661,Broadcasting,Broadcasting +156659,Broadcasting,Broadcasting +156657,Broadcasting,Broadcasting +156655,Broadcasting,Broadcasting +115736,Aboriginal Affairs,Aboriginal Affairs +115735,Aboriginal Affairs,Aboriginal Affairs +115738,Aboriginal Affairs,Aboriginal Affairs +97600,Science and Technology,Science and Technology +93882,Science and Technology,Science and Technology +93880,Science and Technology,Science and Technology +88145,Science and Technology,Science and Technology +88140,Science and Technology,Science and Technology +88138,Science and Technology,Science and Technology +85615,Science and Technology,Science and Technology +85614,Science and Technology,Science and Technology +83068,Science and Technology,Science and Technology +171085,Science and Technology,Science and Technology +150433,Science and Technology,Science and Technology +139556,Science and Technology,Science and Technology +114136,Science and Technology,Science and Technology +101374,Science and Technology,Science and Technology +101372,Science and Technology,Science and Technology +101368,Science and Technology,Science and Technology +97604,Science and Technology,Science and Technology +340210,Science and Technology,Science and Technology +333837,Science and Technology,Science and Technology +321856,Science and Technology,Science and Technology +319897,Science and Technology,Science and Technology +287149,Science and Technology,Science and Technology +273269,Science and Technology,Science and Technology +273268,Science and Technology,Science and Technology +273267,Science and Technology,Science and Technology +273264,Science and Technology,Science and Technology +273262,Science and Technology,Science and Technology +252573,Science and Technology,Science and Technology +252572,Science and Technology,Science and Technology +252571,Science and Technology,Science and Technology +252570,Science and Technology,Science and Technology +250652,Science and Technology,Science and Technology +245535,Science and Technology,Science and Technology +239643,Science and Technology,Science and Technology +237969,Science and Technology,Science and Technology +390583,Science and Technology,Science and Technology +388371,Science and Technology,Science and Technology +374895,Science and Technology,Science and Technology +244509,Science and Technology,Science and Technology +244469,Science and Technology,Science and Technology +109760,Science and Technology,Science and Technology +97634,Science and Technology,Science and Technology +193789,Science and Technology,Science and Technology +193743,Science and Technology,Science and Technology +142861,Science and Technology,Science and Technology +142860,Science and Technology,Science and Technology +234609,Science and Technology,Science and Technology +200468,Science and Technology,Science and Technology +370147,Science and Technology,Science and Technology +244516,Science and Technology,Science and Technology +264850,Telecommunications,Telecommunications +234609,Telecommunications,Telecommunications +142861,Telecommunications,Telecommunications +211753,Science and Technology,Science and Technology +396886,Science and Technology,Science and Technology +383529,Science and Technology,Science and Technology +380153,Science and Technology,Science and Technology +369556,Science and Technology,Science and Technology +441739,Aboriginal Affairs,Aboriginal Affairs +420057,Aboriginal Affairs,Aboriginal Affairs +79074,Aboriginal Affairs,Aboriginal Affairs +79054,Aboriginal Affairs,Aboriginal Affairs +148220,Aboriginal Affairs,Aboriginal Affairs +132739,Aboriginal Affairs,Aboriginal Affairs +132521,Aboriginal Affairs,Aboriginal Affairs +126517,Aboriginal Affairs,Aboriginal Affairs +126455,Aboriginal Affairs,Aboriginal Affairs +126454,Aboriginal Affairs,Aboriginal Affairs +253932,Aboriginal Affairs,Aboriginal Affairs +211828,Aboriginal Affairs,Aboriginal Affairs +193064,Aboriginal Affairs,Aboriginal Affairs +192055,Aboriginal Affairs,Aboriginal Affairs +162287,Aboriginal Affairs,Aboriginal Affairs +162211,Aboriginal Affairs,Aboriginal Affairs +162210,Aboriginal Affairs,Aboriginal Affairs +162209,Aboriginal Affairs,Aboriginal Affairs +162192,Aboriginal Affairs,Aboriginal Affairs +162188,Aboriginal Affairs,Aboriginal Affairs +159233,Aboriginal Affairs,Aboriginal Affairs +159222,Aboriginal Affairs,Aboriginal Affairs +159221,Aboriginal Affairs,Aboriginal Affairs +159220,Aboriginal Affairs,Aboriginal Affairs +156919,Aboriginal Affairs,Aboriginal Affairs +156918,Aboriginal Affairs,Aboriginal Affairs +156917,Aboriginal Affairs,Aboriginal Affairs +156916,Aboriginal Affairs,Aboriginal Affairs +156914,Aboriginal Affairs,Aboriginal Affairs +405168,Aboriginal Affairs,Aboriginal Affairs +403885,Aboriginal Affairs,Aboriginal Affairs +393980,Aboriginal Affairs,Aboriginal Affairs +393046,Aboriginal Affairs,Aboriginal Affairs +387274,Aboriginal Affairs,Aboriginal Affairs +382138,Aboriginal Affairs,Aboriginal Affairs +376465,Aboriginal Affairs,Aboriginal Affairs +374418,Aboriginal Affairs,Aboriginal Affairs +370415,Aboriginal Affairs,Aboriginal Affairs +335870,Aboriginal Affairs,Aboriginal Affairs +322274,Aboriginal Affairs,Aboriginal Affairs +305930,Aboriginal Affairs,Aboriginal Affairs +543835,Aboriginal Affairs,Aboriginal Affairs +541765,Aboriginal Affairs,Aboriginal Affairs +523253,Aboriginal Affairs,Aboriginal Affairs +517699,Aboriginal Affairs,Aboriginal Affairs +505055,Aboriginal Affairs,Aboriginal Affairs +502292,Aboriginal Affairs,Aboriginal Affairs +502283,Aboriginal Affairs,Aboriginal Affairs +482060,Aboriginal Affairs,Aboriginal Affairs +471449,Aboriginal Affairs,Aboriginal Affairs +457069,Aboriginal Affairs,Aboriginal Affairs +429067,Science and Technology,Science and Technology +138719,Science and Technology,Science and Technology +135932,Science and Technology,Science and Technology +135928,Science and Technology,Science and Technology +135926,Science and Technology,Science and Technology +133854,Science and Technology,Science and Technology +132527,Science and Technology,Science and Technology +132521,Science and Technology,Science and Technology +126518,Science and Technology,Science and Technology +126456,Science and Technology,Science and Technology +126414,Science and Technology,Science and Technology +325292,Science and Technology,Science and Technology +222834,Science and Technology,Science and Technology +165761,Science and Technology,Science and Technology +409650,Science and Technology,Science and Technology +403885,Science and Technology,Science and Technology +403627,Science and Technology,Science and Technology +403195,Science and Technology,Science and Technology +396468,Science and Technology,Science and Technology +393046,Science and Technology,Science and Technology +361102,Science and Technology,Science and Technology +357864,Science and Technology,Science and Technology +473614,Science and Technology,Science and Technology +473602,Science and Technology,Science and Technology +473573,Science and Technology,Science and Technology +471452,Science and Technology,Science and Technology +471451,Science and Technology,Science and Technology +471450,Science and Technology,Science and Technology +471448,Science and Technology,Science and Technology +461588,Science and Technology,Science and Technology +461587,Science and Technology,Science and Technology +458648,Science and Technology,Science and Technology +152803,Science and Technology,Science and Technology +427971,Science and Technology,Science and Technology +426076,Science and Technology,Science and Technology +425668,Science and Technology,Science and Technology +423586,Science and Technology,Science and Technology +410410,Science and Technology,Science and Technology +536618,Science and Technology,Science and Technology +536615,Science and Technology,Science and Technology +533578,Science and Technology,Science and Technology +516636,Science and Technology,Science and Technology +516635,Science and Technology,Science and Technology +511882,Science and Technology,Science and Technology +509772,Science and Technology,Science and Technology +509771,Science and Technology,Science and Technology +506656,Science and Technology,Science and Technology +506654,Science and Technology,Science and Technology +506651,Science and Technology,Science and Technology +506648,Science and Technology,Science and Technology +503197,Science and Technology,Science and Technology +503196,Science and Technology,Science and Technology +503195,Science and Technology,Science and Technology +494289,Science and Technology,Science and Technology +494288,Science and Technology,Science and Technology +488652,Science and Technology,Science and Technology +485652,Science and Technology,Science and Technology +477280,Science and Technology,Science and Technology +464775,Science and Technology,Science and Technology +462333,Science and Technology,Science and Technology +445212,Science and Technology,Science and Technology +435115,Science and Technology,Science and Technology +430658,Science and Technology,Science and Technology +427973,Science and Technology,Science and Technology +516646,Arts and Culture,Arts and Culture +452353,Arts and Culture,Arts and Culture +355619,Arts and Culture,Arts and Culture +325080,Arts and Culture,Arts and Culture +325079,Arts and Culture,Arts and Culture +319204,Arts and Culture,Arts and Culture +83130,Science and Technology,Science and Technology +77787,Science and Technology,Science and Technology +83123,Science and Technology,Science and Technology +410991,Science and Technology,Science and Technology +462093,Science and Technology,Science and Technology +92896,Science and Technology,Science and Technology +92895,Science and Technology,Science and Technology +92894,Science and Technology,Science and Technology +89135,Science and Technology,Science and Technology +84035,Science and Technology,Science and Technology +84034,Science and Technology,Science and Technology +83414,Science and Technology,Science and Technology +145445,Science and Technology,Science and Technology +107795,Science and Technology,Science and Technology +107794,Science and Technology,Science and Technology +107755,Science and Technology,Science and Technology +100467,Science and Technology,Science and Technology +100466,Science and Technology,Science and Technology +231272,Science and Technology,Science and Technology +381398,Science and Technology,Science and Technology +330046,Science and Technology,Science and Technology +440238,Science and Technology,Science and Technology +431512,Science and Technology,Science and Technology +430073,Science and Technology,Science and Technology +427857,Science and Technology,Science and Technology +468125,Arts and Culture,Arts and Culture +445312,Arts and Culture,Arts and Culture +91834,Arts and Culture,Arts and Culture +249853,Arts and Culture,Arts and Culture +242151,Arts and Culture,Arts and Culture +195461,Arts and Culture,Arts and Culture +174791,Arts and Culture,Arts and Culture +166646,Arts and Culture,Arts and Culture +410040,Arts and Culture,Arts and Culture +407927,Arts and Culture,Arts and Culture +388289,Arts and Culture,Arts and Culture +382661,Arts and Culture,Arts and Culture +382660,Arts and Culture,Arts and Culture +377247,Arts and Culture,Arts and Culture +377244,Arts and Culture,Arts and Culture +477380,Broadcasting,Broadcasting +475688,Broadcasting,Broadcasting +110491,Broadcasting,Broadcasting +110490,Broadcasting,Broadcasting +105154,Broadcasting,Broadcasting +105134,Broadcasting,Broadcasting +91836,Broadcasting,Broadcasting +91834,Broadcasting,Broadcasting +88314,Broadcasting,Broadcasting +85426,Broadcasting,Broadcasting +83057,Broadcasting,Broadcasting +77640,Broadcasting,Broadcasting +157930,Broadcasting,Broadcasting +157860,Broadcasting,Broadcasting +157432,Broadcasting,Broadcasting +157431,Broadcasting,Broadcasting +154491,Broadcasting,Broadcasting +145794,Broadcasting,Broadcasting +143201,Broadcasting,Broadcasting +138040,Broadcasting,Broadcasting +138039,Broadcasting,Broadcasting +132519,Broadcasting,Broadcasting +126396,Broadcasting,Broadcasting +125774,Broadcasting,Broadcasting +125236,Broadcasting,Broadcasting +125234,Broadcasting,Broadcasting +283169,Broadcasting,Broadcasting +283149,Broadcasting,Broadcasting +281152,Broadcasting,Broadcasting +277772,Broadcasting,Broadcasting +273662,Broadcasting,Broadcasting +269159,Broadcasting,Broadcasting +269117,Broadcasting,Broadcasting +251312,Broadcasting,Broadcasting +245271,Broadcasting,Broadcasting +242151,Broadcasting,Broadcasting +242149,Broadcasting,Broadcasting +237056,Broadcasting,Broadcasting +237054,Broadcasting,Broadcasting +227297,Broadcasting,Broadcasting +227275,Broadcasting,Broadcasting +212239,Broadcasting,Broadcasting +212229,Broadcasting,Broadcasting +212227,Broadcasting,Broadcasting +212226,Broadcasting,Broadcasting +203172,Broadcasting,Broadcasting +197106,Broadcasting,Broadcasting +197105,Broadcasting,Broadcasting +197099,Broadcasting,Broadcasting +197097,Broadcasting,Broadcasting +195461,Broadcasting,Broadcasting +195460,Broadcasting,Broadcasting +195458,Broadcasting,Broadcasting +186544,Broadcasting,Broadcasting +186504,Broadcasting,Broadcasting +174792,Broadcasting,Broadcasting +174791,Broadcasting,Broadcasting +174789,Broadcasting,Broadcasting +174784,Broadcasting,Broadcasting +172087,Broadcasting,Broadcasting +166652,Broadcasting,Broadcasting +166648,Broadcasting,Broadcasting +166646,Broadcasting,Broadcasting +162337,Broadcasting,Broadcasting +390550,Broadcasting,Broadcasting +390491,Broadcasting,Broadcasting +387707,Broadcasting,Broadcasting +382895,Broadcasting,Broadcasting +382661,Broadcasting,Broadcasting +382660,Broadcasting,Broadcasting +380048,Broadcasting,Broadcasting +377247,Broadcasting,Broadcasting +377244,Broadcasting,Broadcasting +370437,Broadcasting,Broadcasting +370436,Broadcasting,Broadcasting +370435,Broadcasting,Broadcasting +370434,Broadcasting,Broadcasting +370433,Broadcasting,Broadcasting +365324,Broadcasting,Broadcasting +361070,Broadcasting,Broadcasting +361068,Broadcasting,Broadcasting +356467,Broadcasting,Broadcasting +338886,Broadcasting,Broadcasting +338885,Broadcasting,Broadcasting +333128,Broadcasting,Broadcasting +333127,Broadcasting,Broadcasting +330260,Broadcasting,Broadcasting +319562,Broadcasting,Broadcasting +319560,Broadcasting,Broadcasting +319556,Broadcasting,Broadcasting +311056,Broadcasting,Broadcasting +311053,Broadcasting,Broadcasting +304378,Broadcasting,Broadcasting +295218,Broadcasting,Broadcasting +468125,Broadcasting,Broadcasting +460055,Broadcasting,Broadcasting +459572,Broadcasting,Broadcasting +459571,Broadcasting,Broadcasting +459570,Broadcasting,Broadcasting +459568,Broadcasting,Broadcasting +458683,Broadcasting,Broadcasting +458606,Broadcasting,Broadcasting +457302,Broadcasting,Broadcasting +450069,Broadcasting,Broadcasting +443641,Broadcasting,Broadcasting +439355,Broadcasting,Broadcasting +435397,Broadcasting,Broadcasting +435395,Broadcasting,Broadcasting +429310,Broadcasting,Broadcasting +429302,Broadcasting,Broadcasting +422052,Broadcasting,Broadcasting +416740,Broadcasting,Broadcasting +416330,Broadcasting,Broadcasting +416329,Broadcasting,Broadcasting +412419,Broadcasting,Broadcasting +409688,Broadcasting,Broadcasting +409678,Broadcasting,Broadcasting +409391,Broadcasting,Broadcasting +407923,Broadcasting,Broadcasting +407921,Broadcasting,Broadcasting +539718,Broadcasting,Broadcasting +538217,Broadcasting,Broadcasting +534529,Broadcasting,Broadcasting +534517,Broadcasting,Broadcasting +534513,Broadcasting,Broadcasting +534512,Broadcasting,Broadcasting +534511,Broadcasting,Broadcasting +534507,Broadcasting,Broadcasting +532232,Broadcasting,Broadcasting +532229,Broadcasting,Broadcasting +532225,Broadcasting,Broadcasting +532224,Broadcasting,Broadcasting +528681,Broadcasting,Broadcasting +528671,Broadcasting,Broadcasting +525589,Broadcasting,Broadcasting +525584,Broadcasting,Broadcasting +522592,Broadcasting,Broadcasting +522591,Broadcasting,Broadcasting +522590,Broadcasting,Broadcasting +522589,Broadcasting,Broadcasting +522588,Broadcasting,Broadcasting +515774,Broadcasting,Broadcasting +508512,Broadcasting,Broadcasting +505075,Broadcasting,Broadcasting +505065,Broadcasting,Broadcasting +502187,Broadcasting,Broadcasting +502165,Broadcasting,Broadcasting +502140,Broadcasting,Broadcasting +499158,Broadcasting,Broadcasting +499156,Broadcasting,Broadcasting +499106,Broadcasting,Broadcasting +495329,Broadcasting,Broadcasting +493390,Broadcasting,Broadcasting +493386,Broadcasting,Broadcasting +493363,Broadcasting,Broadcasting +493361,Broadcasting,Broadcasting +490705,Broadcasting,Broadcasting +490685,Broadcasting,Broadcasting +490682,Broadcasting,Broadcasting +490677,Broadcasting,Broadcasting +490675,Broadcasting,Broadcasting +490673,Broadcasting,Broadcasting +490669,Broadcasting,Broadcasting +487519,Broadcasting,Broadcasting +487517,Broadcasting,Broadcasting +487505,Broadcasting,Broadcasting +487497,Broadcasting,Broadcasting +484961,Broadcasting,Broadcasting +482115,Broadcasting,Broadcasting +482092,Broadcasting,Broadcasting +479894,Broadcasting,Broadcasting +475670,Telecommunications,Telecommunications +475663,Telecommunications,Telecommunications +85423,Telecommunications,Telecommunications +77640,Telecommunications,Telecommunications +154589,Telecommunications,Telecommunications +154488,Telecommunications,Telecommunications +145797,Telecommunications,Telecommunications +145791,Telecommunications,Telecommunications +145788,Telecommunications,Telecommunications +143202,Telecommunications,Telecommunications +138040,Telecommunications,Telecommunications +132519,Telecommunications,Telecommunications +128952,Telecommunications,Telecommunications +125236,Telecommunications,Telecommunications +110491,Telecommunications,Telecommunications +105134,Telecommunications,Telecommunications +91836,Telecommunications,Telecommunications +87991,Telecommunications,Telecommunications +212224,Telecommunications,Telecommunications +212223,Telecommunications,Telecommunications +203172,Telecommunications,Telecommunications +197110,Telecommunications,Telecommunications +197105,Telecommunications,Telecommunications +197100,Telecommunications,Telecommunications +195459,Telecommunications,Telecommunications +195458,Telecommunications,Telecommunications +195457,Telecommunications,Telecommunications +195456,Telecommunications,Telecommunications +195455,Telecommunications,Telecommunications +188595,Telecommunications,Telecommunications +188594,Telecommunications,Telecommunications +188590,Telecommunications,Telecommunications +186544,Telecommunications,Telecommunications +186504,Telecommunications,Telecommunications +186484,Telecommunications,Telecommunications +174792,Telecommunications,Telecommunications +174790,Telecommunications,Telecommunications +174789,Telecommunications,Telecommunications +174788,Telecommunications,Telecommunications +173905,Telecommunications,Telecommunications +171003,Telecommunications,Telecommunications +168121,Telecommunications,Telecommunications +166652,Telecommunications,Telecommunications +166651,Telecommunications,Telecommunications +166649,Telecommunications,Telecommunications +166646,Telecommunications,Telecommunications +166645,Telecommunications,Telecommunications +162325,Telecommunications,Telecommunications +158549,Telecommunications,Telecommunications +157930,Telecommunications,Telecommunications +157929,Telecommunications,Telecommunications +157928,Telecommunications,Telecommunications +157868,Telecommunications,Telecommunications +157860,Telecommunications,Telecommunications +157432,Telecommunications,Telecommunications +380049,Telecommunications,Telecommunications +380048,Telecommunications,Telecommunications +370441,Telecommunications,Telecommunications +370440,Telecommunications,Telecommunications +370439,Telecommunications,Telecommunications +370438,Telecommunications,Telecommunications +369555,Telecommunications,Telecommunications +365324,Telecommunications,Telecommunications +365323,Telecommunications,Telecommunications +361070,Telecommunications,Telecommunications +358364,Telecommunications,Telecommunications +358092,Telecommunications,Telecommunications +358086,Telecommunications,Telecommunications +356466,Telecommunications,Telecommunications +356465,Telecommunications,Telecommunications +356463,Telecommunications,Telecommunications +342085,Telecommunications,Telecommunications +338885,Telecommunications,Telecommunications +334317,Telecommunications,Telecommunications +333129,Telecommunications,Telecommunications +331580,Telecommunications,Telecommunications +331579,Telecommunications,Telecommunications +331578,Telecommunications,Telecommunications +330259,Telecommunications,Telecommunications +326859,Telecommunications,Telecommunications +326858,Telecommunications,Telecommunications +326857,Telecommunications,Telecommunications +325064,Telecommunications,Telecommunications +325052,Telecommunications,Telecommunications +325051,Telecommunications,Telecommunications +322005,Telecommunications,Telecommunications +322001,Telecommunications,Telecommunications +321998,Telecommunications,Telecommunications +321995,Telecommunications,Telecommunications +321988,Telecommunications,Telecommunications +319560,Telecommunications,Telecommunications +319555,Telecommunications,Telecommunications +319551,Telecommunications,Telecommunications +313176,Telecommunications,Telecommunications +311052,Telecommunications,Telecommunications +304376,Telecommunications,Telecommunications +295221,Telecommunications,Telecommunications +295220,Telecommunications,Telecommunications +295219,Telecommunications,Telecommunications +295218,Telecommunications,Telecommunications +295217,Telecommunications,Telecommunications +290970,Telecommunications,Telecommunications +290894,Telecommunications,Telecommunications +290893,Telecommunications,Telecommunications +290892,Telecommunications,Telecommunications +290704,Telecommunications,Telecommunications +290703,Telecommunications,Telecommunications +290700,Telecommunications,Telecommunications +290699,Telecommunications,Telecommunications +290698,Telecommunications,Telecommunications +290697,Telecommunications,Telecommunications +290696,Telecommunications,Telecommunications +290695,Telecommunications,Telecommunications +290694,Telecommunications,Telecommunications +290693,Telecommunications,Telecommunications +290692,Telecommunications,Telecommunications +290691,Telecommunications,Telecommunications +290690,Telecommunications,Telecommunications +286910,Telecommunications,Telecommunications +286896,Telecommunications,Telecommunications +286895,Telecommunications,Telecommunications +286894,Telecommunications,Telecommunications +286892,Telecommunications,Telecommunications +286890,Telecommunications,Telecommunications +286888,Telecommunications,Telecommunications +286887,Telecommunications,Telecommunications +286886,Telecommunications,Telecommunications +281150,Telecommunications,Telecommunications +277774,Telecommunications,Telecommunications +273651,Telecommunications,Telecommunications +273649,Telecommunications,Telecommunications +273635,Telecommunications,Telecommunications +273630,Telecommunications,Telecommunications +269159,Telecommunications,Telecommunications +269120,Telecommunications,Telecommunications +264750,Telecommunications,Telecommunications +260069,Telecommunications,Telecommunications +251312,Telecommunications,Telecommunications +249794,Telecommunications,Telecommunications +246211,Telecommunications,Telecommunications +246210,Telecommunications,Telecommunications +245270,Telecommunications,Telecommunications +242149,Telecommunications,Telecommunications +237056,Telecommunications,Telecommunications +237054,Telecommunications,Telecommunications +234169,Telecommunications,Telecommunications +227283,Telecommunications,Telecommunications +227274,Telecommunications,Telecommunications +227273,Telecommunications,Telecommunications +223829,Telecommunications,Telecommunications +223828,Telecommunications,Telecommunications +218848,Telecommunications,Telecommunications +218770,Telecommunications,Telecommunications +218750,Telecommunications,Telecommunications +218747,Telecommunications,Telecommunications +212230,Telecommunications,Telecommunications +212228,Telecommunications,Telecommunications +212225,Telecommunications,Telecommunications +472973,Telecommunications,Telecommunications +472972,Telecommunications,Telecommunications +472970,Telecommunications,Telecommunications +472969,Telecommunications,Telecommunications +472967,Telecommunications,Telecommunications +472964,Telecommunications,Telecommunications +472960,Telecommunications,Telecommunications +470052,Telecommunications,Telecommunications +470050,Telecommunications,Telecommunications +470049,Telecommunications,Telecommunications +470048,Telecommunications,Telecommunications +470047,Telecommunications,Telecommunications +470046,Telecommunications,Telecommunications +470045,Telecommunications,Telecommunications +470043,Telecommunications,Telecommunications +470041,Telecommunications,Telecommunications +470040,Telecommunications,Telecommunications +470039,Telecommunications,Telecommunications +470038,Telecommunications,Telecommunications +468056,Telecommunications,Telecommunications +468053,Telecommunications,Telecommunications +468051,Telecommunications,Telecommunications +468050,Telecommunications,Telecommunications +468049,Telecommunications,Telecommunications +468048,Telecommunications,Telecommunications +464347,Telecommunications,Telecommunications +464345,Telecommunications,Telecommunications +464344,Telecommunications,Telecommunications +464341,Telecommunications,Telecommunications +462494,Telecommunications,Telecommunications +462493,Telecommunications,Telecommunications +461722,Telecommunications,Telecommunications +461720,Telecommunications,Telecommunications +460054,Telecommunications,Telecommunications +460053,Telecommunications,Telecommunications +459573,Telecommunications,Telecommunications +458613,Telecommunications,Telecommunications +458612,Telecommunications,Telecommunications +458609,Telecommunications,Telecommunications +458608,Telecommunications,Telecommunications +458607,Telecommunications,Telecommunications +457303,Telecommunications,Telecommunications +455482,Telecommunications,Telecommunications +455473,Telecommunications,Telecommunications +455471,Telecommunications,Telecommunications +455470,Telecommunications,Telecommunications +452633,Telecommunications,Telecommunications +452589,Telecommunications,Telecommunications +450063,Telecommunications,Telecommunications +450062,Telecommunications,Telecommunications +450059,Telecommunications,Telecommunications +447555,Telecommunications,Telecommunications +447551,Telecommunications,Telecommunications +447549,Telecommunications,Telecommunications +447546,Telecommunications,Telecommunications +447541,Telecommunications,Telecommunications +445315,Telecommunications,Telecommunications +445314,Telecommunications,Telecommunications +445313,Telecommunications,Telecommunications +445311,Telecommunications,Telecommunications +443646,Telecommunications,Telecommunications +443644,Telecommunications,Telecommunications +443642,Telecommunications,Telecommunications +443640,Telecommunications,Telecommunications +443638,Telecommunications,Telecommunications +443634,Telecommunications,Telecommunications +442580,Telecommunications,Telecommunications +442577,Telecommunications,Telecommunications +442575,Telecommunications,Telecommunications +442572,Telecommunications,Telecommunications +440361,Telecommunications,Telecommunications +439354,Telecommunications,Telecommunications +439353,Telecommunications,Telecommunications +439351,Telecommunications,Telecommunications +435398,Telecommunications,Telecommunications +435395,Telecommunications,Telecommunications +435394,Telecommunications,Telecommunications +435393,Telecommunications,Telecommunications +435390,Telecommunications,Telecommunications +433814,Telecommunications,Telecommunications +433812,Telecommunications,Telecommunications +432348,Telecommunications,Telecommunications +432344,Telecommunications,Telecommunications +431128,Telecommunications,Telecommunications +431127,Telecommunications,Telecommunications +431126,Telecommunications,Telecommunications +429309,Telecommunications,Telecommunications +429305,Telecommunications,Telecommunications +429302,Telecommunications,Telecommunications +429292,Telecommunications,Telecommunications +426759,Telecommunications,Telecommunications +426243,Telecommunications,Telecommunications +426238,Telecommunications,Telecommunications +424310,Telecommunications,Telecommunications +424309,Telecommunications,Telecommunications +424308,Telecommunications,Telecommunications +424307,Telecommunications,Telecommunications +422051,Telecommunications,Telecommunications +422050,Telecommunications,Telecommunications +422049,Telecommunications,Telecommunications +419792,Telecommunications,Telecommunications +419789,Telecommunications,Telecommunications +417704,Telecommunications,Telecommunications +417702,Telecommunications,Telecommunications +417701,Telecommunications,Telecommunications +417700,Telecommunications,Telecommunications +417699,Telecommunications,Telecommunications +417698,Telecommunications,Telecommunications +417697,Telecommunications,Telecommunications +416740,Telecommunications,Telecommunications +416329,Telecommunications,Telecommunications +416328,Telecommunications,Telecommunications +412419,Telecommunications,Telecommunications +412413,Telecommunications,Telecommunications +412412,Telecommunications,Telecommunications +409684,Telecommunications,Telecommunications +409682,Telecommunications,Telecommunications +409393,Telecommunications,Telecommunications +405689,Telecommunications,Telecommunications +405688,Telecommunications,Telecommunications +403451,Telecommunications,Telecommunications +403450,Telecommunications,Telecommunications +398935,Telecommunications,Telecommunications +398934,Telecommunications,Telecommunications +396753,Telecommunications,Telecommunications +396748,Telecommunications,Telecommunications +396304,Telecommunications,Telecommunications +392648,Telecommunications,Telecommunications +390490,Telecommunications,Telecommunications +390487,Telecommunications,Telecommunications +388212,Telecommunications,Telecommunications +387746,Telecommunications,Telecommunications +387707,Telecommunications,Telecommunications +385678,Telecommunications,Telecommunications +382895,Telecommunications,Telecommunications +380051,Telecommunications,Telecommunications +543486,Telecommunications,Telecommunications +543485,Telecommunications,Telecommunications +543484,Telecommunications,Telecommunications +543483,Telecommunications,Telecommunications +541584,Telecommunications,Telecommunications +539722,Telecommunications,Telecommunications +539721,Telecommunications,Telecommunications +539720,Telecommunications,Telecommunications +539719,Telecommunications,Telecommunications +539717,Telecommunications,Telecommunications +539716,Telecommunications,Telecommunications +539715,Telecommunications,Telecommunications +539714,Telecommunications,Telecommunications +539713,Telecommunications,Telecommunications +539712,Telecommunications,Telecommunications +539711,Telecommunications,Telecommunications +539710,Telecommunications,Telecommunications +539709,Telecommunications,Telecommunications +539708,Telecommunications,Telecommunications +539706,Telecommunications,Telecommunications +539705,Telecommunications,Telecommunications +539704,Telecommunications,Telecommunications +539702,Telecommunications,Telecommunications +538222,Telecommunications,Telecommunications +538220,Telecommunications,Telecommunications +538219,Telecommunications,Telecommunications +538218,Telecommunications,Telecommunications +538216,Telecommunications,Telecommunications +534530,Telecommunications,Telecommunications +534514,Telecommunications,Telecommunications +534510,Telecommunications,Telecommunications +534509,Telecommunications,Telecommunications +532231,Telecommunications,Telecommunications +532226,Telecommunications,Telecommunications +532220,Telecommunications,Telecommunications +532217,Telecommunications,Telecommunications +528677,Telecommunications,Telecommunications +528675,Telecommunications,Telecommunications +528674,Telecommunications,Telecommunications +528670,Telecommunications,Telecommunications +528668,Telecommunications,Telecommunications +528667,Telecommunications,Telecommunications +528666,Telecommunications,Telecommunications +525655,Telecommunications,Telecommunications +525599,Telecommunications,Telecommunications +525595,Telecommunications,Telecommunications +525591,Telecommunications,Telecommunications +525586,Telecommunications,Telecommunications +525581,Telecommunications,Telecommunications +522595,Telecommunications,Telecommunications +522594,Telecommunications,Telecommunications +522593,Telecommunications,Telecommunications +522587,Telecommunications,Telecommunications +522585,Telecommunications,Telecommunications +519895,Telecommunications,Telecommunications +519892,Telecommunications,Telecommunications +517838,Telecommunications,Telecommunications +517834,Telecommunications,Telecommunications +517831,Telecommunications,Telecommunications +514670,Telecommunications,Telecommunications +514669,Telecommunications,Telecommunications +514668,Telecommunications,Telecommunications +514667,Telecommunications,Telecommunications +514150,Telecommunications,Telecommunications +514148,Telecommunications,Telecommunications +514147,Telecommunications,Telecommunications +512835,Telecommunications,Telecommunications +512833,Telecommunications,Telecommunications +512832,Telecommunications,Telecommunications +512831,Telecommunications,Telecommunications +512823,Telecommunications,Telecommunications +510331,Telecommunications,Telecommunications +510322,Telecommunications,Telecommunications +510319,Telecommunications,Telecommunications +508510,Telecommunications,Telecommunications +508508,Telecommunications,Telecommunications +505081,Telecommunications,Telecommunications +505077,Telecommunications,Telecommunications +505072,Telecommunications,Telecommunications +505070,Telecommunications,Telecommunications +505068,Telecommunications,Telecommunications +502185,Telecommunications,Telecommunications +502184,Telecommunications,Telecommunications +502181,Telecommunications,Telecommunications +502178,Telecommunications,Telecommunications +502174,Telecommunications,Telecommunications +502172,Telecommunications,Telecommunications +502169,Telecommunications,Telecommunications +502166,Telecommunications,Telecommunications +502164,Telecommunications,Telecommunications +502162,Telecommunications,Telecommunications +502160,Telecommunications,Telecommunications +502158,Telecommunications,Telecommunications +502156,Telecommunications,Telecommunications +502154,Telecommunications,Telecommunications +502146,Telecommunications,Telecommunications +502140,Telecommunications,Telecommunications +499168,Telecommunications,Telecommunications +499162,Telecommunications,Telecommunications +499158,Telecommunications,Telecommunications +499152,Telecommunications,Telecommunications +499121,Telecommunications,Telecommunications +499117,Telecommunications,Telecommunications +499100,Telecommunications,Telecommunications +499098,Telecommunications,Telecommunications +495328,Telecommunications,Telecommunications +495326,Telecommunications,Telecommunications +495324,Telecommunications,Telecommunications +495323,Telecommunications,Telecommunications +495320,Telecommunications,Telecommunications +495319,Telecommunications,Telecommunications +495316,Telecommunications,Telecommunications +495315,Telecommunications,Telecommunications +495314,Telecommunications,Telecommunications +495312,Telecommunications,Telecommunications +495310,Telecommunications,Telecommunications +493393,Telecommunications,Telecommunications +493384,Telecommunications,Telecommunications +493381,Telecommunications,Telecommunications +493377,Telecommunications,Telecommunications +493376,Telecommunications,Telecommunications +493374,Telecommunications,Telecommunications +493360,Telecommunications,Telecommunications +493359,Telecommunications,Telecommunications +490713,Telecommunications,Telecommunications +490706,Telecommunications,Telecommunications +490705,Telecommunications,Telecommunications +490697,Telecommunications,Telecommunications +490691,Telecommunications,Telecommunications +490690,Telecommunications,Telecommunications +490680,Telecommunications,Telecommunications +490679,Telecommunications,Telecommunications +487528,Telecommunications,Telecommunications +487514,Telecommunications,Telecommunications +487500,Telecommunications,Telecommunications +487491,Telecommunications,Telecommunications +484962,Telecommunications,Telecommunications +484960,Telecommunications,Telecommunications +484959,Telecommunications,Telecommunications +484958,Telecommunications,Telecommunications +482104,Telecommunications,Telecommunications +482094,Telecommunications,Telecommunications +482093,Telecommunications,Telecommunications +482091,Telecommunications,Telecommunications +482090,Telecommunications,Telecommunications +479909,Telecommunications,Telecommunications +479903,Telecommunications,Telecommunications +479901,Telecommunications,Telecommunications +479897,Telecommunications,Telecommunications +479895,Telecommunications,Telecommunications +479889,Telecommunications,Telecommunications +479885,Telecommunications,Telecommunications +479883,Telecommunications,Telecommunications +477391,Telecommunications,Telecommunications +477389,Telecommunications,Telecommunications +477388,Telecommunications,Telecommunications +477378,Telecommunications,Telecommunications +477372,Telecommunications,Telecommunications +477367,Telecommunications,Telecommunications +477363,Telecommunications,Telecommunications +477362,Telecommunications,Telecommunications +477359,Telecommunications,Telecommunications +477357,Telecommunications,Telecommunications +486903,Aboriginal Affairs,Aboriginal Affairs +484415,Aboriginal Affairs,Aboriginal Affairs +131621,Aboriginal Affairs,Aboriginal Affairs +127455,Aboriginal Affairs,Aboriginal Affairs +103259,Aboriginal Affairs,Aboriginal Affairs +100175,Aboriginal Affairs,Aboriginal Affairs +97185,Aboriginal Affairs,Aboriginal Affairs +82355,Aboriginal Affairs,Aboriginal Affairs +82354,Aboriginal Affairs,Aboriginal Affairs +159792,Aboriginal Affairs,Aboriginal Affairs +149156,Aboriginal Affairs,Aboriginal Affairs +149152,Aboriginal Affairs,Aboriginal Affairs +145501,Aboriginal Affairs,Aboriginal Affairs +145500,Aboriginal Affairs,Aboriginal Affairs +142846,Aboriginal Affairs,Aboriginal Affairs +137295,Aboriginal Affairs,Aboriginal Affairs +134983,Aboriginal Affairs,Aboriginal Affairs +268109,Aboriginal Affairs,Aboriginal Affairs +258833,Aboriginal Affairs,Aboriginal Affairs +258832,Aboriginal Affairs,Aboriginal Affairs +258831,Aboriginal Affairs,Aboriginal Affairs +258829,Aboriginal Affairs,Aboriginal Affairs +258811,Aboriginal Affairs,Aboriginal Affairs +240009,Aboriginal Affairs,Aboriginal Affairs +226729,Aboriginal Affairs,Aboriginal Affairs +199993,Aboriginal Affairs,Aboriginal Affairs +322199,Aboriginal Affairs,Aboriginal Affairs +302869,Aboriginal Affairs,Aboriginal Affairs +291029,Aboriginal Affairs,Aboriginal Affairs +484413,Aboriginal Affairs,Aboriginal Affairs +481921,Aboriginal Affairs,Aboriginal Affairs +481916,Aboriginal Affairs,Aboriginal Affairs +481911,Aboriginal Affairs,Aboriginal Affairs +477070,Aboriginal Affairs,Aboriginal Affairs +477067,Aboriginal Affairs,Aboriginal Affairs +477062,Aboriginal Affairs,Aboriginal Affairs +477050,Aboriginal Affairs,Aboriginal Affairs +460154,Aboriginal Affairs,Aboriginal Affairs +460124,Aboriginal Affairs,Aboriginal Affairs +460118,Aboriginal Affairs,Aboriginal Affairs +458863,Aboriginal Affairs,Aboriginal Affairs +538898,Aboriginal Affairs,Aboriginal Affairs +531838,Aboriginal Affairs,Aboriginal Affairs +531831,Aboriginal Affairs,Aboriginal Affairs +525683,Aboriginal Affairs,Aboriginal Affairs +525633,Aboriginal Affairs,Aboriginal Affairs +518491,Aboriginal Affairs,Aboriginal Affairs +518489,Aboriginal Affairs,Aboriginal Affairs +512576,Aboriginal Affairs,Aboriginal Affairs +512575,Aboriginal Affairs,Aboriginal Affairs +512571,Aboriginal Affairs,Aboriginal Affairs +510544,Aboriginal Affairs,Aboriginal Affairs +504258,Aboriginal Affairs,Aboriginal Affairs +504203,Aboriginal Affairs,Aboriginal Affairs +504201,Aboriginal Affairs,Aboriginal Affairs +504193,Aboriginal Affairs,Aboriginal Affairs +494649,Aboriginal Affairs,Aboriginal Affairs +494647,Aboriginal Affairs,Aboriginal Affairs +494645,Aboriginal Affairs,Aboriginal Affairs +494644,Aboriginal Affairs,Aboriginal Affairs +494643,Aboriginal Affairs,Aboriginal Affairs +494625,Aboriginal Affairs,Aboriginal Affairs +492325,Aboriginal Affairs,Aboriginal Affairs +138097,Arts and Culture,Arts and Culture +263801,Arts and Culture,Arts and Culture +108615,Arts and Culture,Arts and Culture +103244,Arts and Culture,Arts and Culture +88059,Arts and Culture,Arts and Culture +88053,Arts and Culture,Arts and Culture +206007,Arts and Culture,Arts and Culture +197827,Arts and Culture,Arts and Culture +197747,Arts and Culture,Arts and Culture +151603,Arts and Culture,Arts and Culture +458855,Science and Technology,Science and Technology +458852,Science and Technology,Science and Technology +92877,Science and Technology,Science and Technology +92875,Science and Technology,Science and Technology +90131,Science and Technology,Science and Technology +90106,Science and Technology,Science and Technology +90105,Science and Technology,Science and Technology +90103,Science and Technology,Science and Technology +88065,Science and Technology,Science and Technology +87850,Science and Technology,Science and Technology +87842,Science and Technology,Science and Technology +86816,Science and Technology,Science and Technology +86794,Science and Technology,Science and Technology +84655,Science and Technology,Science and Technology +84654,Science and Technology,Science and Technology +116479,Science and Technology,Science and Technology +108617,Science and Technology,Science and Technology +103262,Science and Technology,Science and Technology +103261,Science and Technology,Science and Technology +103260,Science and Technology,Science and Technology +103259,Science and Technology,Science and Technology +103258,Science and Technology,Science and Technology +103254,Science and Technology,Science and Technology +103247,Science and Technology,Science and Technology +103243,Science and Technology,Science and Technology +103240,Science and Technology,Science and Technology +103238,Science and Technology,Science and Technology +103236,Science and Technology,Science and Technology +100195,Science and Technology,Science and Technology +100179,Science and Technology,Science and Technology +100178,Science and Technology,Science and Technology +100175,Science and Technology,Science and Technology +100174,Science and Technology,Science and Technology +100164,Science and Technology,Science and Technology +100162,Science and Technology,Science and Technology +100161,Science and Technology,Science and Technology +97185,Science and Technology,Science and Technology +97177,Science and Technology,Science and Technology +159633,Science and Technology,Science and Technology +153004,Science and Technology,Science and Technology +153003,Science and Technology,Science and Technology +151604,Science and Technology,Science and Technology +151602,Science and Technology,Science and Technology +150039,Science and Technology,Science and Technology +150038,Science and Technology,Science and Technology +149972,Science and Technology,Science and Technology +149971,Science and Technology,Science and Technology +149962,Science and Technology,Science and Technology +149165,Science and Technology,Science and Technology +149155,Science and Technology,Science and Technology +149154,Science and Technology,Science and Technology +149153,Science and Technology,Science and Technology +149152,Science and Technology,Science and Technology +149151,Science and Technology,Science and Technology +149149,Science and Technology,Science and Technology +149148,Science and Technology,Science and Technology +149147,Science and Technology,Science and Technology +149146,Science and Technology,Science and Technology +149145,Science and Technology,Science and Technology +149144,Science and Technology,Science and Technology +149143,Science and Technology,Science and Technology +149142,Science and Technology,Science and Technology +149141,Science and Technology,Science and Technology +147505,Science and Technology,Science and Technology +147499,Science and Technology,Science and Technology +147495,Science and Technology,Science and Technology +146329,Science and Technology,Science and Technology +146318,Science and Technology,Science and Technology +145499,Science and Technology,Science and Technology +145498,Science and Technology,Science and Technology +145497,Science and Technology,Science and Technology +142849,Science and Technology,Science and Technology +137298,Science and Technology,Science and Technology +137297,Science and Technology,Science and Technology +137295,Science and Technology,Science and Technology +131894,Science and Technology,Science and Technology +131621,Science and Technology,Science and Technology +131618,Science and Technology,Science and Technology +131610,Science and Technology,Science and Technology +127455,Science and Technology,Science and Technology +127454,Science and Technology,Science and Technology +124381,Science and Technology,Science and Technology +124378,Science and Technology,Science and Technology +124376,Science and Technology,Science and Technology +124375,Science and Technology,Science and Technology +124359,Science and Technology,Science and Technology +124355,Science and Technology,Science and Technology +120014,Science and Technology,Science and Technology +116480,Science and Technology,Science and Technology +244459,Science and Technology,Science and Technology +240009,Science and Technology,Science and Technology +235689,Science and Technology,Science and Technology +233009,Science and Technology,Science and Technology +232998,Science and Technology,Science and Technology +232996,Science and Technology,Science and Technology +232994,Science and Technology,Science and Technology +232993,Science and Technology,Science and Technology +232992,Science and Technology,Science and Technology +232991,Science and Technology,Science and Technology +232990,Science and Technology,Science and Technology +227011,Science and Technology,Science and Technology +226911,Science and Technology,Science and Technology +226731,Science and Technology,Science and Technology +226730,Science and Technology,Science and Technology +226729,Science and Technology,Science and Technology +226710,Science and Technology,Science and Technology +226642,Science and Technology,Science and Technology +224211,Science and Technology,Science and Technology +222689,Science and Technology,Science and Technology +211559,Science and Technology,Science and Technology +211558,Science and Technology,Science and Technology +211553,Science and Technology,Science and Technology +209869,Science and Technology,Science and Technology +205995,Science and Technology,Science and Technology +202087,Science and Technology,Science and Technology +197847,Science and Technology,Science and Technology +197708,Science and Technology,Science and Technology +192899,Science and Technology,Science and Technology +192898,Science and Technology,Science and Technology +188629,Science and Technology,Science and Technology +188605,Science and Technology,Science and Technology +188601,Science and Technology,Science and Technology +184244,Science and Technology,Science and Technology +184224,Science and Technology,Science and Technology +176964,Science and Technology,Science and Technology +172991,Science and Technology,Science and Technology +172990,Science and Technology,Science and Technology +172989,Science and Technology,Science and Technology +172987,Science and Technology,Science and Technology +172986,Science and Technology,Science and Technology +172982,Science and Technology,Science and Technology +170118,Science and Technology,Science and Technology +170117,Science and Technology,Science and Technology +167395,Science and Technology,Science and Technology +165453,Science and Technology,Science and Technology +160934,Science and Technology,Science and Technology +159864,Science and Technology,Science and Technology +159849,Science and Technology,Science and Technology +159837,Science and Technology,Science and Technology +159824,Science and Technology,Science and Technology +159812,Science and Technology,Science and Technology +400123,Science and Technology,Science and Technology +367963,Science and Technology,Science and Technology +340391,Science and Technology,Science and Technology +340390,Science and Technology,Science and Technology +327509,Science and Technology,Science and Technology +327508,Science and Technology,Science and Technology +324649,Science and Technology,Science and Technology +315529,Science and Technology,Science and Technology +311058,Science and Technology,Science and Technology +277261,Science and Technology,Science and Technology +264154,Science and Technology,Science and Technology +264152,Science and Technology,Science and Technology +258832,Science and Technology,Science and Technology +258831,Science and Technology,Science and Technology +258830,Science and Technology,Science and Technology +258829,Science and Technology,Science and Technology +258811,Science and Technology,Science and Technology +258809,Science and Technology,Science and Technology +257551,Science and Technology,Science and Technology +257549,Science and Technology,Science and Technology +543702,Science and Technology,Science and Technology +543697,Science and Technology,Science and Technology +543693,Science and Technology,Science and Technology +543691,Science and Technology,Science and Technology +543686,Science and Technology,Science and Technology +541400,Science and Technology,Science and Technology +541388,Science and Technology,Science and Technology +540391,Science and Technology,Science and Technology +539656,Science and Technology,Science and Technology +538214,Science and Technology,Science and Technology +538195,Science and Technology,Science and Technology +538189,Science and Technology,Science and Technology +538182,Science and Technology,Science and Technology +535056,Science and Technology,Science and Technology +535049,Science and Technology,Science and Technology +531835,Science and Technology,Science and Technology +528421,Science and Technology,Science and Technology +525683,Science and Technology,Science and Technology +525678,Science and Technology,Science and Technology +525638,Science and Technology,Science and Technology +525632,Science and Technology,Science and Technology +525630,Science and Technology,Science and Technology +522392,Science and Technology,Science and Technology +522211,Science and Technology,Science and Technology +522207,Science and Technology,Science and Technology +522206,Science and Technology,Science and Technology +519637,Science and Technology,Science and Technology +519634,Science and Technology,Science and Technology +518490,Science and Technology,Science and Technology +517280,Science and Technology,Science and Technology +517278,Science and Technology,Science and Technology +517272,Science and Technology,Science and Technology +517262,Science and Technology,Science and Technology +513999,Science and Technology,Science and Technology +513994,Science and Technology,Science and Technology +512567,Science and Technology,Science and Technology +510501,Science and Technology,Science and Technology +510496,Science and Technology,Science and Technology +509252,Science and Technology,Science and Technology +507227,Science and Technology,Science and Technology +506054,Science and Technology,Science and Technology +506053,Science and Technology,Science and Technology +506052,Science and Technology,Science and Technology +506014,Science and Technology,Science and Technology +504226,Science and Technology,Science and Technology +504225,Science and Technology,Science and Technology +504222,Science and Technology,Science and Technology +504221,Science and Technology,Science and Technology +504200,Science and Technology,Science and Technology +504198,Science and Technology,Science and Technology +504197,Science and Technology,Science and Technology +501358,Science and Technology,Science and Technology +501357,Science and Technology,Science and Technology +501353,Science and Technology,Science and Technology +501336,Science and Technology,Science and Technology +501318,Science and Technology,Science and Technology +501317,Science and Technology,Science and Technology +501316,Science and Technology,Science and Technology +501315,Science and Technology,Science and Technology +499007,Science and Technology,Science and Technology +499004,Science and Technology,Science and Technology +499001,Science and Technology,Science and Technology +497979,Science and Technology,Science and Technology +497973,Science and Technology,Science and Technology +497971,Science and Technology,Science and Technology +497960,Science and Technology,Science and Technology +497955,Science and Technology,Science and Technology +496607,Science and Technology,Science and Technology +495351,Science and Technology,Science and Technology +495344,Science and Technology,Science and Technology +494656,Science and Technology,Science and Technology +494645,Science and Technology,Science and Technology +494642,Science and Technology,Science and Technology +494637,Science and Technology,Science and Technology +494636,Science and Technology,Science and Technology +492686,Science and Technology,Science and Technology +492325,Science and Technology,Science and Technology +492320,Science and Technology,Science and Technology +492312,Science and Technology,Science and Technology +492311,Science and Technology,Science and Technology +492310,Science and Technology,Science and Technology +490738,Science and Technology,Science and Technology +486891,Science and Technology,Science and Technology +486817,Science and Technology,Science and Technology +484386,Science and Technology,Science and Technology +484370,Science and Technology,Science and Technology +473689,Science and Technology,Science and Technology +471175,Science and Technology,Science and Technology +471174,Science and Technology,Science and Technology +471171,Science and Technology,Science and Technology +471169,Science and Technology,Science and Technology +471168,Science and Technology,Science and Technology +471166,Science and Technology,Science and Technology +471164,Science and Technology,Science and Technology +468545,Science and Technology,Science and Technology +468544,Science and Technology,Science and Technology +468543,Science and Technology,Science and Technology +462633,Science and Technology,Science and Technology +461479,Science and Technology,Science and Technology +461477,Science and Technology,Science and Technology +461473,Science and Technology,Science and Technology +460138,Science and Technology,Science and Technology +460134,Science and Technology,Science and Technology +460132,Science and Technology,Science and Technology +460126,Science and Technology,Science and Technology +498683,Science and Technology,Science and Technology +496225,Science and Technology,Science and Technology +126494,Science and Technology,Science and Technology +102075,Science and Technology,Science and Technology +78196,Science and Technology,Science and Technology +78195,Science and Technology,Science and Technology +155546,Science and Technology,Science and Technology +148209,Science and Technology,Science and Technology +148203,Science and Technology,Science and Technology +148199,Science and Technology,Science and Technology +146237,Science and Technology,Science and Technology +137016,Science and Technology,Science and Technology +270811,Science and Technology,Science and Technology +270810,Science and Technology,Science and Technology +270809,Science and Technology,Science and Technology +232790,Science and Technology,Science and Technology +226492,Science and Technology,Science and Technology +226485,Science and Technology,Science and Technology +220467,Science and Technology,Science and Technology +195844,Science and Technology,Science and Technology +191444,Science and Technology,Science and Technology +171824,Science and Technology,Science and Technology +171585,Science and Technology,Science and Technology +171465,Science and Technology,Science and Technology +171464,Science and Technology,Science and Technology +164829,Science and Technology,Science and Technology +164828,Science and Technology,Science and Technology +164827,Science and Technology,Science and Technology +410384,Science and Technology,Science and Technology +402242,Science and Technology,Science and Technology +402241,Science and Technology,Science and Technology +401012,Science and Technology,Science and Technology +401010,Science and Technology,Science and Technology +401009,Science and Technology,Science and Technology +375336,Science and Technology,Science and Technology +375334,Science and Technology,Science and Technology +351881,Science and Technology,Science and Technology +351880,Science and Technology,Science and Technology +337096,Science and Technology,Science and Technology +321651,Science and Technology,Science and Technology +302932,Science and Technology,Science and Technology +300709,Science and Technology,Science and Technology +270829,Science and Technology,Science and Technology +496224,Science and Technology,Science and Technology +496223,Science and Technology,Science and Technology +496222,Science and Technology,Science and Technology +492692,Science and Technology,Science and Technology +492691,Science and Technology,Science and Technology +492690,Science and Technology,Science and Technology +489129,Science and Technology,Science and Technology +489126,Science and Technology,Science and Technology +489124,Science and Technology,Science and Technology +489107,Science and Technology,Science and Technology +489104,Science and Technology,Science and Technology +486309,Science and Technology,Science and Technology +484532,Science and Technology,Science and Technology +477967,Science and Technology,Science and Technology +477963,Science and Technology,Science and Technology +477951,Science and Technology,Science and Technology +477948,Science and Technology,Science and Technology +477920,Science and Technology,Science and Technology +475637,Science and Technology,Science and Technology +473911,Science and Technology,Science and Technology +473403,Science and Technology,Science and Technology +470936,Science and Technology,Science and Technology +468365,Science and Technology,Science and Technology +468364,Science and Technology,Science and Technology +468363,Science and Technology,Science and Technology +468360,Science and Technology,Science and Technology +468358,Science and Technology,Science and Technology +468356,Science and Technology,Science and Technology +468350,Science and Technology,Science and Technology +468348,Science and Technology,Science and Technology +461794,Science and Technology,Science and Technology +461793,Science and Technology,Science and Technology +461792,Science and Technology,Science and Technology +461791,Science and Technology,Science and Technology +459882,Science and Technology,Science and Technology +456909,Science and Technology,Science and Technology +455015,Science and Technology,Science and Technology +455014,Science and Technology,Science and Technology +455013,Science and Technology,Science and Technology +455011,Science and Technology,Science and Technology +452976,Science and Technology,Science and Technology +452907,Science and Technology,Science and Technology +452906,Science and Technology,Science and Technology +452905,Science and Technology,Science and Technology +452900,Science and Technology,Science and Technology +452899,Science and Technology,Science and Technology +452896,Science and Technology,Science and Technology +452886,Science and Technology,Science and Technology +452865,Science and Technology,Science and Technology +439763,Science and Technology,Science and Technology +439762,Science and Technology,Science and Technology +439761,Science and Technology,Science and Technology +439760,Science and Technology,Science and Technology +439754,Science and Technology,Science and Technology +439751,Science and Technology,Science and Technology +439750,Science and Technology,Science and Technology +439749,Science and Technology,Science and Technology +439748,Science and Technology,Science and Technology +431345,Science and Technology,Science and Technology +431344,Science and Technology,Science and Technology +431343,Science and Technology,Science and Technology +426853,Science and Technology,Science and Technology +426851,Science and Technology,Science and Technology +426850,Science and Technology,Science and Technology +426849,Science and Technology,Science and Technology +426848,Science and Technology,Science and Technology +426847,Science and Technology,Science and Technology +424325,Science and Technology,Science and Technology +424323,Science and Technology,Science and Technology +424319,Science and Technology,Science and Technology +422245,Science and Technology,Science and Technology +417113,Science and Technology,Science and Technology +416545,Science and Technology,Science and Technology +416531,Science and Technology,Science and Technology +416529,Science and Technology,Science and Technology +416523,Science and Technology,Science and Technology +416268,Science and Technology,Science and Technology +416256,Science and Technology,Science and Technology +544282,Science and Technology,Science and Technology +544280,Science and Technology,Science and Technology +543763,Science and Technology,Science and Technology +536983,Science and Technology,Science and Technology +533224,Science and Technology,Science and Technology +533201,Science and Technology,Science and Technology +533200,Science and Technology,Science and Technology +533199,Science and Technology,Science and Technology +533194,Science and Technology,Science and Technology +531832,Science and Technology,Science and Technology +527265,Science and Technology,Science and Technology +523895,Science and Technology,Science and Technology +518770,Science and Technology,Science and Technology +518458,Science and Technology,Science and Technology +510950,Science and Technology,Science and Technology +510931,Science and Technology,Science and Technology +510927,Science and Technology,Science and Technology +510924,Science and Technology,Science and Technology +510922,Science and Technology,Science and Technology +510918,Science and Technology,Science and Technology +510915,Science and Technology,Science and Technology +510913,Science and Technology,Science and Technology +510909,Science and Technology,Science and Technology +508197,Science and Technology,Science and Technology +508184,Science and Technology,Science and Technology +503723,Science and Technology,Science and Technology +503722,Science and Technology,Science and Technology +503720,Science and Technology,Science and Technology +503718,Science and Technology,Science and Technology +502386,Science and Technology,Science and Technology +502367,Science and Technology,Science and Technology +502365,Science and Technology,Science and Technology +498689,Science and Technology,Science and Technology +498688,Science and Technology,Science and Technology +498687,Science and Technology,Science and Technology +399083,Science and Technology,Science and Technology +398794,Science and Technology,Science and Technology +128278,Science and Technology,Science and Technology +123075,Science and Technology,Science and Technology +123074,Science and Technology,Science and Technology +193991,Science and Technology,Science and Technology +193984,Science and Technology,Science and Technology +193982,Science and Technology,Science and Technology +193981,Science and Technology,Science and Technology +175594,Science and Technology,Science and Technology +175593,Science and Technology,Science and Technology +175592,Science and Technology,Science and Technology +175591,Science and Technology,Science and Technology +175590,Science and Technology,Science and Technology +156983,Science and Technology,Science and Technology +338258,Science and Technology,Science and Technology +338257,Science and Technology,Science and Technology +338254,Science and Technology,Science and Technology +335661,Science and Technology,Science and Technology +329973,Science and Technology,Science and Technology +327713,Science and Technology,Science and Technology +296695,Science and Technology,Science and Technology +295891,Science and Technology,Science and Technology +295889,Science and Technology,Science and Technology +295169,Science and Technology,Science and Technology +289993,Science and Technology,Science and Technology +289990,Science and Technology,Science and Technology +289989,Science and Technology,Science and Technology +289970,Science and Technology,Science and Technology +289969,Science and Technology,Science and Technology +273118,Science and Technology,Science and Technology +233557,Science and Technology,Science and Technology +227256,Science and Technology,Science and Technology +385381,Science and Technology,Science and Technology +385268,Science and Technology,Science and Technology +385265,Science and Technology,Science and Technology +383439,Science and Technology,Science and Technology +383438,Science and Technology,Science and Technology +383437,Science and Technology,Science and Technology +383436,Science and Technology,Science and Technology +383435,Science and Technology,Science and Technology +382373,Science and Technology,Science and Technology +381060,Science and Technology,Science and Technology +370994,Science and Technology,Science and Technology +370991,Science and Technology,Science and Technology +370984,Science and Technology,Science and Technology +368723,Science and Technology,Science and Technology +368722,Science and Technology,Science and Technology +359916,Science and Technology,Science and Technology +358070,Science and Technology,Science and Technology +356280,Science and Technology,Science and Technology +356278,Science and Technology,Science and Technology +353881,Science and Technology,Science and Technology +543357,Science and Technology,Science and Technology +534910,Science and Technology,Science and Technology +534909,Science and Technology,Science and Technology +528760,Science and Technology,Science and Technology +528759,Science and Technology,Science and Technology +528757,Science and Technology,Science and Technology +528300,Science and Technology,Science and Technology +528291,Science and Technology,Science and Technology +528287,Science and Technology,Science and Technology +526187,Science and Technology,Science and Technology +526184,Science and Technology,Science and Technology +526183,Science and Technology,Science and Technology +526181,Science and Technology,Science and Technology +526176,Science and Technology,Science and Technology +522221,Science and Technology,Science and Technology +522209,Science and Technology,Science and Technology +519676,Science and Technology,Science and Technology +515573,Science and Technology,Science and Technology +515571,Science and Technology,Science and Technology +513900,Science and Technology,Science and Technology +513039,Science and Technology,Science and Technology +510372,Science and Technology,Science and Technology +510371,Science and Technology,Science and Technology +507585,Science and Technology,Science and Technology +507584,Science and Technology,Science and Technology +501268,Science and Technology,Science and Technology +500344,Science and Technology,Science and Technology +498613,Science and Technology,Science and Technology +498611,Science and Technology,Science and Technology +498610,Science and Technology,Science and Technology +498607,Science and Technology,Science and Technology +498605,Science and Technology,Science and Technology +496203,Science and Technology,Science and Technology +495631,Science and Technology,Science and Technology +495630,Science and Technology,Science and Technology +495629,Science and Technology,Science and Technology +495628,Science and Technology,Science and Technology +495627,Science and Technology,Science and Technology +493264,Science and Technology,Science and Technology +490774,Science and Technology,Science and Technology +486902,Science and Technology,Science and Technology +486901,Science and Technology,Science and Technology +486899,Science and Technology,Science and Technology +486897,Science and Technology,Science and Technology +486895,Science and Technology,Science and Technology +486893,Science and Technology,Science and Technology +486890,Science and Technology,Science and Technology +486889,Science and Technology,Science and Technology +486887,Science and Technology,Science and Technology +486886,Science and Technology,Science and Technology +484383,Science and Technology,Science and Technology +484381,Science and Technology,Science and Technology +484380,Science and Technology,Science and Technology +484275,Science and Technology,Science and Technology +480185,Science and Technology,Science and Technology +480184,Science and Technology,Science and Technology +480183,Science and Technology,Science and Technology +480182,Science and Technology,Science and Technology +480181,Science and Technology,Science and Technology +477507,Science and Technology,Science and Technology +477506,Science and Technology,Science and Technology +477505,Science and Technology,Science and Technology +477504,Science and Technology,Science and Technology +475473,Science and Technology,Science and Technology +475472,Science and Technology,Science and Technology +475147,Science and Technology,Science and Technology +475089,Science and Technology,Science and Technology +475087,Science and Technology,Science and Technology +475084,Science and Technology,Science and Technology +475083,Science and Technology,Science and Technology +475081,Science and Technology,Science and Technology +472681,Science and Technology,Science and Technology +472679,Science and Technology,Science and Technology +472678,Science and Technology,Science and Technology +472677,Science and Technology,Science and Technology +472676,Science and Technology,Science and Technology +472674,Science and Technology,Science and Technology +470067,Science and Technology,Science and Technology +468368,Science and Technology,Science and Technology +468367,Science and Technology,Science and Technology +456022,Science and Technology,Science and Technology +456021,Science and Technology,Science and Technology +456019,Science and Technology,Science and Technology +452859,Science and Technology,Science and Technology +452854,Science and Technology,Science and Technology +452383,Science and Technology,Science and Technology +452379,Science and Technology,Science and Technology +452377,Science and Technology,Science and Technology +450058,Science and Technology,Science and Technology +447566,Science and Technology,Science and Technology +443518,Science and Technology,Science and Technology +438922,Science and Technology,Science and Technology +438917,Science and Technology,Science and Technology +435465,Science and Technology,Science and Technology +435464,Science and Technology,Science and Technology +435463,Science and Technology,Science and Technology +435462,Science and Technology,Science and Technology +433835,Science and Technology,Science and Technology +433834,Science and Technology,Science and Technology +433832,Science and Technology,Science and Technology +433831,Science and Technology,Science and Technology +431120,Science and Technology,Science and Technology +429389,Science and Technology,Science and Technology +429377,Science and Technology,Science and Technology +429376,Science and Technology,Science and Technology +426650,Science and Technology,Science and Technology +426236,Science and Technology,Science and Technology +426233,Science and Technology,Science and Technology +426232,Science and Technology,Science and Technology +426231,Science and Technology,Science and Technology +405344,Science and Technology,Science and Technology +405343,Science and Technology,Science and Technology +405342,Science and Technology,Science and Technology +405340,Science and Technology,Science and Technology +403741,Science and Technology,Science and Technology +403739,Science and Technology,Science and Technology +403457,Science and Technology,Science and Technology +400398,Science and Technology,Science and Technology +464695,Telecommunications,Telecommunications +421726,Telecommunications,Telecommunications +161283,Telecommunications,Telecommunications +161269,Telecommunications,Telecommunications +123075,Telecommunications,Telecommunications +123074,Telecommunications,Telecommunications +77049,Telecommunications,Telecommunications +315831,Telecommunications,Telecommunications +312841,Telecommunications,Telecommunications +312837,Telecommunications,Telecommunications +302532,Telecommunications,Telecommunications +296695,Telecommunications,Telecommunications +295911,Telecommunications,Telecommunications +295910,Telecommunications,Telecommunications +295169,Telecommunications,Telecommunications +290659,Telecommunications,Telecommunications +290649,Telecommunications,Telecommunications +286271,Telecommunications,Telecommunications +286270,Telecommunications,Telecommunications +185995,Telecommunications,Telecommunications +185993,Telecommunications,Telecommunications +176627,Telecommunications,Telecommunications +416697,Telecommunications,Telecommunications +416688,Telecommunications,Telecommunications +416683,Telecommunications,Telecommunications +378786,Telecommunications,Telecommunications +327717,Telecommunications,Telecommunications +381736,Science and Technology,Science and Technology +287489,Science and Technology,Science and Technology +91814,Science and Technology,Science and Technology +214207,Science and Technology,Science and Technology +214187,Science and Technology,Science and Technology +196184,Science and Technology,Science and Technology +190824,Science and Technology,Science and Technology +173368,Science and Technology,Science and Technology +150263,Science and Technology,Science and Technology +150261,Science and Technology,Science and Technology +459884,Science and Technology,Science and Technology +433310,Science and Technology,Science and Technology +420065,Science and Technology,Science and Technology +420064,Science and Technology,Science and Technology +428092,Aboriginal Affairs,Aboriginal Affairs +428074,Aboriginal Affairs,Aboriginal Affairs +192401,Aboriginal Affairs,Aboriginal Affairs +190863,Aboriginal Affairs,Aboriginal Affairs +176064,Aboriginal Affairs,Aboriginal Affairs +175202,Aboriginal Affairs,Aboriginal Affairs +172750,Aboriginal Affairs,Aboriginal Affairs +162419,Aboriginal Affairs,Aboriginal Affairs +162402,Aboriginal Affairs,Aboriginal Affairs +162352,Aboriginal Affairs,Aboriginal Affairs +159002,Aboriginal Affairs,Aboriginal Affairs +367812,Aboriginal Affairs,Aboriginal Affairs +367806,Aboriginal Affairs,Aboriginal Affairs +367803,Aboriginal Affairs,Aboriginal Affairs +349557,Aboriginal Affairs,Aboriginal Affairs +345598,Aboriginal Affairs,Aboriginal Affairs +344822,Aboriginal Affairs,Aboriginal Affairs +344522,Aboriginal Affairs,Aboriginal Affairs +337130,Aboriginal Affairs,Aboriginal Affairs +320310,Aboriginal Affairs,Aboriginal Affairs +314392,Aboriginal Affairs,Aboriginal Affairs +305310,Aboriginal Affairs,Aboriginal Affairs +288431,Aboriginal Affairs,Aboriginal Affairs +283889,Aboriginal Affairs,Aboriginal Affairs +262210,Aboriginal Affairs,Aboriginal Affairs +259352,Aboriginal Affairs,Aboriginal Affairs +259350,Aboriginal Affairs,Aboriginal Affairs +259349,Aboriginal Affairs,Aboriginal Affairs +259332,Aboriginal Affairs,Aboriginal Affairs +256172,Aboriginal Affairs,Aboriginal Affairs +256171,Aboriginal Affairs,Aboriginal Affairs +251677,Aboriginal Affairs,Aboriginal Affairs +251676,Aboriginal Affairs,Aboriginal Affairs +246569,Aboriginal Affairs,Aboriginal Affairs +230335,Aboriginal Affairs,Aboriginal Affairs +227931,Aboriginal Affairs,Aboriginal Affairs +227930,Aboriginal Affairs,Aboriginal Affairs +421193,Aboriginal Affairs,Aboriginal Affairs +421185,Aboriginal Affairs,Aboriginal Affairs +414850,Aboriginal Affairs,Aboriginal Affairs +414836,Aboriginal Affairs,Aboriginal Affairs +414835,Aboriginal Affairs,Aboriginal Affairs +405235,Aboriginal Affairs,Aboriginal Affairs +403515,Aboriginal Affairs,Aboriginal Affairs +392327,Aboriginal Affairs,Aboriginal Affairs +389199,Aboriginal Affairs,Aboriginal Affairs +387149,Aboriginal Affairs,Aboriginal Affairs +385435,Aboriginal Affairs,Aboriginal Affairs +385397,Aboriginal Affairs,Aboriginal Affairs +378674,Aboriginal Affairs,Aboriginal Affairs +378668,Aboriginal Affairs,Aboriginal Affairs +378665,Aboriginal Affairs,Aboriginal Affairs +378641,Aboriginal Affairs,Aboriginal Affairs +378638,Aboriginal Affairs,Aboriginal Affairs +378637,Aboriginal Affairs,Aboriginal Affairs +378631,Aboriginal Affairs,Aboriginal Affairs +378623,Aboriginal Affairs,Aboriginal Affairs +376143,Aboriginal Affairs,Aboriginal Affairs +376139,Aboriginal Affairs,Aboriginal Affairs +376137,Aboriginal Affairs,Aboriginal Affairs +376136,Aboriginal Affairs,Aboriginal Affairs +370990,Aboriginal Affairs,Aboriginal Affairs +370983,Aboriginal Affairs,Aboriginal Affairs +370967,Aboriginal Affairs,Aboriginal Affairs +370731,Aboriginal Affairs,Aboriginal Affairs +370729,Aboriginal Affairs,Aboriginal Affairs +370723,Aboriginal Affairs,Aboriginal Affairs +525656,Aboriginal Affairs,Aboriginal Affairs +469130,Aboriginal Affairs,Aboriginal Affairs +463063,Aboriginal Affairs,Aboriginal Affairs +463039,Aboriginal Affairs,Aboriginal Affairs +463036,Aboriginal Affairs,Aboriginal Affairs +463031,Aboriginal Affairs,Aboriginal Affairs +462336,Aboriginal Affairs,Aboriginal Affairs +462263,Aboriginal Affairs,Aboriginal Affairs +445692,Aboriginal Affairs,Aboriginal Affairs +444749,Aboriginal Affairs,Aboriginal Affairs +440700,Aboriginal Affairs,Aboriginal Affairs +440699,Aboriginal Affairs,Aboriginal Affairs +439502,Aboriginal Affairs,Aboriginal Affairs +439499,Aboriginal Affairs,Aboriginal Affairs +439497,Aboriginal Affairs,Aboriginal Affairs +132344,Broadcasting,Broadcasting +132343,Broadcasting,Broadcasting +143014,Broadcasting,Broadcasting +135830,Broadcasting,Broadcasting +510593,Science and Technology,Science and Technology +498410,Science and Technology,Science and Technology +142040,Science and Technology,Science and Technology +165451,Science and Technology,Science and Technology +162402,Science and Technology,Science and Technology +154792,Science and Technology,Science and Technology +262210,Science and Technology,Science and Technology +259352,Science and Technology,Science and Technology +259350,Science and Technology,Science and Technology +259349,Science and Technology,Science and Technology +259332,Science and Technology,Science and Technology +230335,Science and Technology,Science and Technology +208007,Science and Technology,Science and Technology +206197,Science and Technology,Science and Technology +393438,Science and Technology,Science and Technology +389208,Science and Technology,Science and Technology +389205,Science and Technology,Science and Technology +387114,Science and Technology,Science and Technology +385445,Science and Technology,Science and Technology +385440,Science and Technology,Science and Technology +385400,Science and Technology,Science and Technology +381607,Science and Technology,Science and Technology +381576,Science and Technology,Science and Technology +376137,Science and Technology,Science and Technology +374388,Science and Technology,Science and Technology +374385,Science and Technology,Science and Technology +374381,Science and Technology,Science and Technology +374378,Science and Technology,Science and Technology +361884,Science and Technology,Science and Technology +354919,Science and Technology,Science and Technology +354821,Science and Technology,Science and Technology +349558,Science and Technology,Science and Technology +347018,Science and Technology,Science and Technology +345598,Science and Technology,Science and Technology +344822,Science and Technology,Science and Technology +333118,Science and Technology,Science and Technology +326554,Science and Technology,Science and Technology +314134,Science and Technology,Science and Technology +264270,Science and Technology,Science and Technology +264269,Science and Technology,Science and Technology +541494,Science and Technology,Science and Technology +537838,Science and Technology,Science and Technology +534653,Science and Technology,Science and Technology +534651,Science and Technology,Science and Technology +534650,Science and Technology,Science and Technology +534642,Science and Technology,Science and Technology +534640,Science and Technology,Science and Technology +531535,Science and Technology,Science and Technology +529091,Science and Technology,Science and Technology +529059,Science and Technology,Science and Technology +529055,Science and Technology,Science and Technology +525634,Science and Technology,Science and Technology +519693,Science and Technology,Science and Technology +514915,Science and Technology,Science and Technology +514913,Science and Technology,Science and Technology +513589,Science and Technology,Science and Technology +512789,Science and Technology,Science and Technology +434743,Telecommunications,Telecommunications +432871,Telecommunications,Telecommunications +152087,Telecommunications,Telecommunications +293211,Telecommunications,Telecommunications +288431,Telecommunications,Telecommunications +284689,Telecommunications,Telecommunications +276797,Telecommunications,Telecommunications +276696,Telecommunications,Telecommunications +273309,Telecommunications,Telecommunications +273307,Telecommunications,Telecommunications +273306,Telecommunications,Telecommunications +264270,Telecommunications,Telecommunications +264269,Telecommunications,Telecommunications +262210,Telecommunications,Telecommunications +259356,Telecommunications,Telecommunications +259354,Telecommunications,Telecommunications +259352,Telecommunications,Telecommunications +259350,Telecommunications,Telecommunications +259349,Telecommunications,Telecommunications +259332,Telecommunications,Telecommunications +259331,Telecommunications,Telecommunications +259330,Telecommunications,Telecommunications +208027,Telecommunications,Telecommunications +190863,Telecommunications,Telecommunications +175200,Telecommunications,Telecommunications +165451,Telecommunications,Telecommunications +381625,Telecommunications,Telecommunications +381607,Telecommunications,Telecommunications +374385,Telecommunications,Telecommunications +374381,Telecommunications,Telecommunications +374378,Telecommunications,Telecommunications +364584,Telecommunications,Telecommunications +361003,Telecommunications,Telecommunications +349558,Telecommunications,Telecommunications +349557,Telecommunications,Telecommunications +324689,Telecommunications,Telecommunications +309575,Telecommunications,Telecommunications +534653,Telecommunications,Telecommunications +534651,Telecommunications,Telecommunications +534650,Telecommunications,Telecommunications +534642,Telecommunications,Telecommunications +519693,Telecommunications,Telecommunications +480021,Telecommunications,Telecommunications +467818,Telecommunications,Telecommunications +156561,Telecommunications,Telecommunications +156560,Telecommunications,Telecommunications +157508,Telecommunications,Telecommunications +156564,Telecommunications,Telecommunications +156563,Telecommunications,Telecommunications +94177,Aboriginal Affairs,Aboriginal Affairs +80294,Aboriginal Affairs,Aboriginal Affairs +94180,Aboriginal Affairs,Aboriginal Affairs +94179,Aboriginal Affairs,Aboriginal Affairs +422036,Aboriginal Affairs,Aboriginal Affairs +416916,Aboriginal Affairs,Aboriginal Affairs +93708,Aboriginal Affairs,Aboriginal Affairs +411545,Aboriginal Affairs,Aboriginal Affairs +400874,Aboriginal Affairs,Aboriginal Affairs +394499,Aboriginal Affairs,Aboriginal Affairs +389507,Aboriginal Affairs,Aboriginal Affairs +384535,Aboriginal Affairs,Aboriginal Affairs +384532,Aboriginal Affairs,Aboriginal Affairs +383002,Aboriginal Affairs,Aboriginal Affairs +380297,Aboriginal Affairs,Aboriginal Affairs +333701,Aboriginal Affairs,Aboriginal Affairs +496126,Aboriginal Affairs,Aboriginal Affairs +496118,Aboriginal Affairs,Aboriginal Affairs +496115,Aboriginal Affairs,Aboriginal Affairs +492866,Aboriginal Affairs,Aboriginal Affairs +492860,Aboriginal Affairs,Aboriginal Affairs +491035,Aboriginal Affairs,Aboriginal Affairs +457084,Aboriginal Affairs,Aboriginal Affairs +453114,Aboriginal Affairs,Aboriginal Affairs +444603,Aboriginal Affairs,Aboriginal Affairs +406037,Science and Technology,Science and Technology +406036,Science and Technology,Science and Technology +347695,Science and Technology,Science and Technology +347693,Science and Technology,Science and Technology +333709,Science and Technology,Science and Technology +328929,Science and Technology,Science and Technology +327489,Science and Technology,Science and Technology +323029,Science and Technology,Science and Technology +404148,Science and Technology,Science and Technology +404109,Science and Technology,Science and Technology +404107,Science and Technology,Science and Technology +404092,Science and Technology,Science and Technology +400899,Science and Technology,Science and Technology +400887,Science and Technology,Science and Technology +400857,Science and Technology,Science and Technology +398979,Science and Technology,Science and Technology +398927,Science and Technology,Science and Technology +398923,Science and Technology,Science and Technology +396114,Science and Technology,Science and Technology +395855,Science and Technology,Science and Technology +395854,Science and Technology,Science and Technology +395851,Science and Technology,Science and Technology +394711,Science and Technology,Science and Technology +394527,Science and Technology,Science and Technology +394525,Science and Technology,Science and Technology +394523,Science and Technology,Science and Technology +394510,Science and Technology,Science and Technology +394508,Science and Technology,Science and Technology +394505,Science and Technology,Science and Technology +394503,Science and Technology,Science and Technology +389520,Science and Technology,Science and Technology +389519,Science and Technology,Science and Technology +389515,Science and Technology,Science and Technology +389514,Science and Technology,Science and Technology +389513,Science and Technology,Science and Technology +389511,Science and Technology,Science and Technology +389510,Science and Technology,Science and Technology +389508,Science and Technology,Science and Technology +389507,Science and Technology,Science and Technology +389505,Science and Technology,Science and Technology +389504,Science and Technology,Science and Technology +389503,Science and Technology,Science and Technology +389502,Science and Technology,Science and Technology +389500,Science and Technology,Science and Technology +389499,Science and Technology,Science and Technology +389494,Science and Technology,Science and Technology +389493,Science and Technology,Science and Technology +389490,Science and Technology,Science and Technology +389486,Science and Technology,Science and Technology +389482,Science and Technology,Science and Technology +384536,Science and Technology,Science and Technology +380302,Science and Technology,Science and Technology +380301,Science and Technology,Science and Technology +380299,Science and Technology,Science and Technology +377908,Science and Technology,Science and Technology +377907,Science and Technology,Science and Technology +377906,Science and Technology,Science and Technology +377905,Science and Technology,Science and Technology +374916,Science and Technology,Science and Technology +374208,Science and Technology,Science and Technology +374207,Science and Technology,Science and Technology +374193,Science and Technology,Science and Technology +530591,Science and Technology,Science and Technology +529101,Science and Technology,Science and Technology +529098,Science and Technology,Science and Technology +529075,Science and Technology,Science and Technology +529074,Science and Technology,Science and Technology +529067,Science and Technology,Science and Technology +525831,Science and Technology,Science and Technology +523106,Science and Technology,Science and Technology +523100,Science and Technology,Science and Technology +519997,Science and Technology,Science and Technology +519986,Science and Technology,Science and Technology +516836,Science and Technology,Science and Technology +516833,Science and Technology,Science and Technology +514524,Science and Technology,Science and Technology +513714,Science and Technology,Science and Technology +511903,Science and Technology,Science and Technology +511900,Science and Technology,Science and Technology +508194,Science and Technology,Science and Technology +508176,Science and Technology,Science and Technology +508171,Science and Technology,Science and Technology +505220,Science and Technology,Science and Technology +498898,Science and Technology,Science and Technology +498883,Science and Technology,Science and Technology +458029,Science and Technology,Science and Technology +458027,Science and Technology,Science and Technology +439406,Science and Technology,Science and Technology +439404,Science and Technology,Science and Technology +439400,Science and Technology,Science and Technology +439271,Science and Technology,Science and Technology +439267,Science and Technology,Science and Technology +439261,Science and Technology,Science and Technology +439256,Science and Technology,Science and Technology +439252,Science and Technology,Science and Technology +439249,Science and Technology,Science and Technology +439244,Science and Technology,Science and Technology +439240,Science and Technology,Science and Technology +439235,Science and Technology,Science and Technology +439232,Science and Technology,Science and Technology +439217,Science and Technology,Science and Technology +439085,Science and Technology,Science and Technology +439081,Science and Technology,Science and Technology +439074,Science and Technology,Science and Technology +438628,Science and Technology,Science and Technology +438623,Science and Technology,Science and Technology +438617,Science and Technology,Science and Technology +437376,Science and Technology,Science and Technology +437373,Science and Technology,Science and Technology +437366,Science and Technology,Science and Technology +437363,Science and Technology,Science and Technology +437316,Science and Technology,Science and Technology +432030,Science and Technology,Science and Technology +432006,Science and Technology,Science and Technology +430297,Science and Technology,Science and Technology +430292,Science and Technology,Science and Technology +427946,Science and Technology,Science and Technology +427939,Science and Technology,Science and Technology +425822,Science and Technology,Science and Technology +425257,Science and Technology,Science and Technology +425256,Science and Technology,Science and Technology +425255,Science and Technology,Science and Technology +424563,Science and Technology,Science and Technology +422034,Science and Technology,Science and Technology +422032,Science and Technology,Science and Technology +422027,Science and Technology,Science and Technology +422021,Science and Technology,Science and Technology +422019,Science and Technology,Science and Technology +422018,Science and Technology,Science and Technology +422017,Science and Technology,Science and Technology +419869,Science and Technology,Science and Technology +418392,Science and Technology,Science and Technology +417749,Science and Technology,Science and Technology +416916,Science and Technology,Science and Technology +416900,Science and Technology,Science and Technology +416873,Science and Technology,Science and Technology +414158,Science and Technology,Science and Technology +414154,Science and Technology,Science and Technology +414150,Science and Technology,Science and Technology +411835,Science and Technology,Science and Technology +411558,Science and Technology,Science and Technology +411557,Science and Technology,Science and Technology +411553,Science and Technology,Science and Technology +411550,Science and Technology,Science and Technology +411549,Science and Technology,Science and Technology +411548,Science and Technology,Science and Technology +411546,Science and Technology,Science and Technology +411544,Science and Technology,Science and Technology +411543,Science and Technology,Science and Technology +411542,Science and Technology,Science and Technology +411540,Science and Technology,Science and Technology +411539,Science and Technology,Science and Technology +411538,Science and Technology,Science and Technology +411536,Science and Technology,Science and Technology +411535,Science and Technology,Science and Technology +411534,Science and Technology,Science and Technology +411533,Science and Technology,Science and Technology +411530,Science and Technology,Science and Technology +411527,Science and Technology,Science and Technology +411524,Science and Technology,Science and Technology +411523,Science and Technology,Science and Technology +411463,Science and Technology,Science and Technology +408107,Science and Technology,Science and Technology +408021,Science and Technology,Science and Technology +408002,Science and Technology,Science and Technology +407706,Science and Technology,Science and Technology +406427,Science and Technology,Science and Technology +406426,Science and Technology,Science and Technology +514984,Science and Technology,Science and Technology +514119,Science and Technology,Science and Technology +96324,Science and Technology,Science and Technology +96321,Science and Technology,Science and Technology +147266,Science and Technology,Science and Technology +147265,Science and Technology,Science and Technology +147264,Science and Technology,Science and Technology +141722,Science and Technology,Science and Technology +141721,Science and Technology,Science and Technology +141719,Science and Technology,Science and Technology +141717,Science and Technology,Science and Technology +141714,Science and Technology,Science and Technology +138839,Science and Technology,Science and Technology +138836,Science and Technology,Science and Technology +135754,Science and Technology,Science and Technology +131998,Science and Technology,Science and Technology +131997,Science and Technology,Science and Technology +131996,Science and Technology,Science and Technology +129072,Science and Technology,Science and Technology +124357,Science and Technology,Science and Technology +116655,Science and Technology,Science and Technology +114175,Science and Technology,Science and Technology +114173,Science and Technology,Science and Technology +194707,Science and Technology,Science and Technology +194706,Science and Technology,Science and Technology +194698,Science and Technology,Science and Technology +189792,Science and Technology,Science and Technology +189791,Science and Technology,Science and Technology +189790,Science and Technology,Science and Technology +189789,Science and Technology,Science and Technology +178084,Science and Technology,Science and Technology +178064,Science and Technology,Science and Technology +178024,Science and Technology,Science and Technology +175589,Science and Technology,Science and Technology +175588,Science and Technology,Science and Technology +167610,Science and Technology,Science and Technology +165343,Science and Technology,Science and Technology +165342,Science and Technology,Science and Technology +165341,Science and Technology,Science and Technology +165340,Science and Technology,Science and Technology +165339,Science and Technology,Science and Technology +165337,Science and Technology,Science and Technology +161576,Science and Technology,Science and Technology +161575,Science and Technology,Science and Technology +161574,Science and Technology,Science and Technology +161573,Science and Technology,Science and Technology +161572,Science and Technology,Science and Technology +161571,Science and Technology,Science and Technology +161570,Science and Technology,Science and Technology +159243,Science and Technology,Science and Technology +159242,Science and Technology,Science and Technology +159240,Science and Technology,Science and Technology +156711,Science and Technology,Science and Technology +156709,Science and Technology,Science and Technology +156708,Science and Technology,Science and Technology +154553,Science and Technology,Science and Technology +154552,Science and Technology,Science and Technology +324464,Science and Technology,Science and Technology +318720,Science and Technology,Science and Technology +318719,Science and Technology,Science and Technology +318716,Science and Technology,Science and Technology +318714,Science and Technology,Science and Technology +315183,Science and Technology,Science and Technology +315181,Science and Technology,Science and Technology +312782,Science and Technology,Science and Technology +312781,Science and Technology,Science and Technology +312780,Science and Technology,Science and Technology +312778,Science and Technology,Science and Technology +312774,Science and Technology,Science and Technology +312773,Science and Technology,Science and Technology +310523,Science and Technology,Science and Technology +310515,Science and Technology,Science and Technology +310502,Science and Technology,Science and Technology +310493,Science and Technology,Science and Technology +310489,Science and Technology,Science and Technology +301897,Science and Technology,Science and Technology +301893,Science and Technology,Science and Technology +301892,Science and Technology,Science and Technology +301891,Science and Technology,Science and Technology +301889,Science and Technology,Science and Technology +295812,Science and Technology,Science and Technology +295792,Science and Technology,Science and Technology +295789,Science and Technology,Science and Technology +291116,Science and Technology,Science and Technology +291114,Science and Technology,Science and Technology +291113,Science and Technology,Science and Technology +291112,Science and Technology,Science and Technology +285129,Science and Technology,Science and Technology +285090,Science and Technology,Science and Technology +280776,Science and Technology,Science and Technology +273308,Science and Technology,Science and Technology +273293,Science and Technology,Science and Technology +269495,Science and Technology,Science and Technology +263411,Science and Technology,Science and Technology +263239,Science and Technology,Science and Technology +263235,Science and Technology,Science and Technology +263232,Science and Technology,Science and Technology +263229,Science and Technology,Science and Technology +259253,Science and Technology,Science and Technology +254207,Science and Technology,Science and Technology +254204,Science and Technology,Science and Technology +254193,Science and Technology,Science and Technology +254181,Science and Technology,Science and Technology +254173,Science and Technology,Science and Technology +249449,Science and Technology,Science and Technology +244381,Science and Technology,Science and Technology +244376,Science and Technology,Science and Technology +244374,Science and Technology,Science and Technology +244371,Science and Technology,Science and Technology +240365,Science and Technology,Science and Technology +240352,Science and Technology,Science and Technology +240351,Science and Technology,Science and Technology +240329,Science and Technology,Science and Technology +240319,Science and Technology,Science and Technology +236831,Science and Technology,Science and Technology +232995,Science and Technology,Science and Technology +232989,Science and Technology,Science and Technology +230443,Science and Technology,Science and Technology +230237,Science and Technology,Science and Technology +230212,Science and Technology,Science and Technology +225673,Science and Technology,Science and Technology +225672,Science and Technology,Science and Technology +223616,Science and Technology,Science and Technology +223613,Science and Technology,Science and Technology +223606,Science and Technology,Science and Technology +214527,Science and Technology,Science and Technology +211923,Science and Technology,Science and Technology +211909,Science and Technology,Science and Technology +202934,Science and Technology,Science and Technology +202932,Science and Technology,Science and Technology +202930,Science and Technology,Science and Technology +202928,Science and Technology,Science and Technology +202923,Science and Technology,Science and Technology +202921,Science and Technology,Science and Technology +202896,Science and Technology,Science and Technology +489864,Science and Technology,Science and Technology +489863,Science and Technology,Science and Technology +489860,Science and Technology,Science and Technology +489848,Science and Technology,Science and Technology +478705,Science and Technology,Science and Technology +470477,Science and Technology,Science and Technology +461524,Science and Technology,Science and Technology +461522,Science and Technology,Science and Technology +461521,Science and Technology,Science and Technology +461519,Science and Technology,Science and Technology +461512,Science and Technology,Science and Technology +451379,Science and Technology,Science and Technology +448838,Science and Technology,Science and Technology +448837,Science and Technology,Science and Technology +446570,Science and Technology,Science and Technology +446568,Science and Technology,Science and Technology +446566,Science and Technology,Science and Technology +436827,Science and Technology,Science and Technology +436826,Science and Technology,Science and Technology +436824,Science and Technology,Science and Technology +436821,Science and Technology,Science and Technology +436818,Science and Technology,Science and Technology +436814,Science and Technology,Science and Technology +431773,Science and Technology,Science and Technology +430253,Science and Technology,Science and Technology +430251,Science and Technology,Science and Technology +430248,Science and Technology,Science and Technology +430245,Science and Technology,Science and Technology +428242,Science and Technology,Science and Technology +425563,Science and Technology,Science and Technology +425561,Science and Technology,Science and Technology +425560,Science and Technology,Science and Technology +425559,Science and Technology,Science and Technology +425556,Science and Technology,Science and Technology +425555,Science and Technology,Science and Technology +423317,Science and Technology,Science and Technology +419054,Science and Technology,Science and Technology +419053,Science and Technology,Science and Technology +419012,Science and Technology,Science and Technology +417531,Science and Technology,Science and Technology +417530,Science and Technology,Science and Technology +417528,Science and Technology,Science and Technology +417526,Science and Technology,Science and Technology +415260,Science and Technology,Science and Technology +415246,Science and Technology,Science and Technology +415241,Science and Technology,Science and Technology +415236,Science and Technology,Science and Technology +415235,Science and Technology,Science and Technology +415224,Science and Technology,Science and Technology +411585,Science and Technology,Science and Technology +411577,Science and Technology,Science and Technology +408960,Science and Technology,Science and Technology +408959,Science and Technology,Science and Technology +408957,Science and Technology,Science and Technology +408956,Science and Technology,Science and Technology +408951,Science and Technology,Science and Technology +408950,Science and Technology,Science and Technology +408949,Science and Technology,Science and Technology +408947,Science and Technology,Science and Technology +408939,Science and Technology,Science and Technology +407374,Science and Technology,Science and Technology +406274,Science and Technology,Science and Technology +406272,Science and Technology,Science and Technology +406270,Science and Technology,Science and Technology +406268,Science and Technology,Science and Technology +406267,Science and Technology,Science and Technology +406266,Science and Technology,Science and Technology +406265,Science and Technology,Science and Technology +404584,Science and Technology,Science and Technology +402021,Science and Technology,Science and Technology +402017,Science and Technology,Science and Technology +402014,Science and Technology,Science and Technology +402010,Science and Technology,Science and Technology +402008,Science and Technology,Science and Technology +402006,Science and Technology,Science and Technology +402005,Science and Technology,Science and Technology +402003,Science and Technology,Science and Technology +402002,Science and Technology,Science and Technology +402001,Science and Technology,Science and Technology +399765,Science and Technology,Science and Technology +399764,Science and Technology,Science and Technology +395268,Science and Technology,Science and Technology +395267,Science and Technology,Science and Technology +395266,Science and Technology,Science and Technology +395263,Science and Technology,Science and Technology +393171,Science and Technology,Science and Technology +392131,Science and Technology,Science and Technology +392129,Science and Technology,Science and Technology +384504,Science and Technology,Science and Technology +384502,Science and Technology,Science and Technology +384501,Science and Technology,Science and Technology +384499,Science and Technology,Science and Technology +384497,Science and Technology,Science and Technology +382967,Science and Technology,Science and Technology +382966,Science and Technology,Science and Technology +382964,Science and Technology,Science and Technology +382197,Science and Technology,Science and Technology +382193,Science and Technology,Science and Technology +382191,Science and Technology,Science and Technology +382189,Science and Technology,Science and Technology +381234,Science and Technology,Science and Technology +381230,Science and Technology,Science and Technology +381225,Science and Technology,Science and Technology +381222,Science and Technology,Science and Technology +381219,Science and Technology,Science and Technology +381215,Science and Technology,Science and Technology +381214,Science and Technology,Science and Technology +381212,Science and Technology,Science and Technology +378296,Science and Technology,Science and Technology +375810,Science and Technology,Science and Technology +375809,Science and Technology,Science and Technology +375808,Science and Technology,Science and Technology +375807,Science and Technology,Science and Technology +375803,Science and Technology,Science and Technology +375801,Science and Technology,Science and Technology +375800,Science and Technology,Science and Technology +374134,Science and Technology,Science and Technology +374123,Science and Technology,Science and Technology +365119,Science and Technology,Science and Technology +365115,Science and Technology,Science and Technology +357917,Science and Technology,Science and Technology +357911,Science and Technology,Science and Technology +351194,Science and Technology,Science and Technology +351192,Science and Technology,Science and Technology +351191,Science and Technology,Science and Technology +348341,Science and Technology,Science and Technology +347259,Science and Technology,Science and Technology +343958,Science and Technology,Science and Technology +343886,Science and Technology,Science and Technology +343882,Science and Technology,Science and Technology +341740,Science and Technology,Science and Technology +341706,Science and Technology,Science and Technology +341683,Science and Technology,Science and Technology +337240,Science and Technology,Science and Technology +337236,Science and Technology,Science and Technology +337228,Science and Technology,Science and Technology +337219,Science and Technology,Science and Technology +335560,Science and Technology,Science and Technology +333193,Science and Technology,Science and Technology +333190,Science and Technology,Science and Technology +333189,Science and Technology,Science and Technology +329131,Science and Technology,Science and Technology +329129,Science and Technology,Science and Technology +327044,Science and Technology,Science and Technology +327041,Science and Technology,Science and Technology +326922,Science and Technology,Science and Technology +324479,Science and Technology,Science and Technology +324477,Science and Technology,Science and Technology +324471,Science and Technology,Science and Technology +545187,Science and Technology,Science and Technology +545186,Science and Technology,Science and Technology +543490,Science and Technology,Science and Technology +543489,Science and Technology,Science and Technology +541526,Science and Technology,Science and Technology +541522,Science and Technology,Science and Technology +539587,Science and Technology,Science and Technology +539579,Science and Technology,Science and Technology +534756,Science and Technology,Science and Technology +534753,Science and Technology,Science and Technology +530806,Science and Technology,Science and Technology +529422,Science and Technology,Science and Technology +529421,Science and Technology,Science and Technology +521954,Science and Technology,Science and Technology +521918,Science and Technology,Science and Technology +519401,Science and Technology,Science and Technology +519395,Science and Technology,Science and Technology +519390,Science and Technology,Science and Technology +517484,Science and Technology,Science and Technology +124759,Telecommunications,Telecommunications +113576,Telecommunications,Telecommunications +106108,Telecommunications,Telecommunications +106105,Telecommunications,Telecommunications +101258,Telecommunications,Telecommunications +192494,Aboriginal Affairs,Aboriginal Affairs +192493,Aboriginal Affairs,Aboriginal Affairs +291389,Aboriginal Affairs,Aboriginal Affairs +285729,Aboriginal Affairs,Aboriginal Affairs +281010,Aboriginal Affairs,Aboriginal Affairs +281008,Aboriginal Affairs,Aboriginal Affairs +110315,Science and Technology,Science and Technology +110294,Science and Technology,Science and Technology +469113,Arts and Culture,Arts and Culture +466734,Arts and Culture,Arts and Culture +188695,Arts and Culture,Arts and Culture +331475,Arts and Culture,Arts and Culture +326113,Arts and Culture,Arts and Culture +326112,Arts and Culture,Arts and Culture +326110,Arts and Culture,Arts and Culture +318773,Arts and Culture,Arts and Culture +290662,Arts and Culture,Arts and Culture +290660,Arts and Culture,Arts and Culture +290657,Arts and Culture,Arts and Culture +290629,Arts and Culture,Arts and Culture +271009,Arts and Culture,Arts and Culture +243971,Arts and Culture,Arts and Culture +226354,Arts and Culture,Arts and Culture +400338,Arts and Culture,Arts and Culture +400333,Arts and Culture,Arts and Culture +400331,Arts and Culture,Arts and Culture +400305,Arts and Culture,Arts and Culture +399358,Arts and Culture,Arts and Culture +386799,Arts and Culture,Arts and Culture +386797,Arts and Culture,Arts and Culture +383476,Arts and Culture,Arts and Culture +383457,Arts and Culture,Arts and Culture +370324,Arts and Culture,Arts and Culture +370323,Arts and Culture,Arts and Culture +370322,Arts and Culture,Arts and Culture +370320,Arts and Culture,Arts and Culture +370319,Arts and Culture,Arts and Culture +355654,Arts and Culture,Arts and Culture +352561,Arts and Culture,Arts and Culture +352560,Arts and Culture,Arts and Culture +331477,Arts and Culture,Arts and Culture +463485,Arts and Culture,Arts and Culture +463484,Arts and Culture,Arts and Culture +463158,Arts and Culture,Arts and Culture +463097,Arts and Culture,Arts and Culture +461239,Arts and Culture,Arts and Culture +458077,Arts and Culture,Arts and Culture +455282,Arts and Culture,Arts and Culture +455262,Arts and Culture,Arts and Culture +455168,Arts and Culture,Arts and Culture +455165,Arts and Culture,Arts and Culture +455164,Arts and Culture,Arts and Culture +453847,Arts and Culture,Arts and Culture +448613,Arts and Culture,Arts and Culture +448612,Arts and Culture,Arts and Culture +446131,Arts and Culture,Arts and Culture +445326,Arts and Culture,Arts and Culture +444419,Arts and Culture,Arts and Culture +444251,Arts and Culture,Arts and Culture +444249,Arts and Culture,Arts and Culture +442169,Arts and Culture,Arts and Culture +441692,Arts and Culture,Arts and Culture +441365,Arts and Culture,Arts and Culture +439898,Arts and Culture,Arts and Culture +437543,Arts and Culture,Arts and Culture +437541,Arts and Culture,Arts and Culture +437536,Arts and Culture,Arts and Culture +437534,Arts and Culture,Arts and Culture +437533,Arts and Culture,Arts and Culture +437530,Arts and Culture,Arts and Culture +433545,Arts and Culture,Arts and Culture +433544,Arts and Culture,Arts and Culture +428728,Arts and Culture,Arts and Culture +427394,Arts and Culture,Arts and Culture +427393,Arts and Culture,Arts and Culture +424565,Arts and Culture,Arts and Culture +423108,Arts and Culture,Arts and Culture +422738,Arts and Culture,Arts and Culture +422737,Arts and Culture,Arts and Culture +420653,Arts and Culture,Arts and Culture +420652,Arts and Culture,Arts and Culture +418806,Arts and Culture,Arts and Culture +418805,Arts and Culture,Arts and Culture +418804,Arts and Culture,Arts and Culture +418404,Arts and Culture,Arts and Culture +417510,Arts and Culture,Arts and Culture +408030,Arts and Culture,Arts and Culture +406987,Arts and Culture,Arts and Culture +406985,Arts and Culture,Arts and Culture +404242,Arts and Culture,Arts and Culture +404241,Arts and Culture,Arts and Culture +404240,Arts and Culture,Arts and Culture +540959,Arts and Culture,Arts and Culture +540958,Arts and Culture,Arts and Culture +536619,Arts and Culture,Arts and Culture +536616,Arts and Culture,Arts and Culture +533352,Arts and Culture,Arts and Culture +533253,Arts and Culture,Arts and Culture +533252,Arts and Culture,Arts and Culture +531633,Arts and Culture,Arts and Culture +531632,Arts and Culture,Arts and Culture +531613,Arts and Culture,Arts and Culture +527841,Arts and Culture,Arts and Culture +527113,Arts and Culture,Arts and Culture +527112,Arts and Culture,Arts and Culture +525412,Arts and Culture,Arts and Culture +525408,Arts and Culture,Arts and Culture +524718,Arts and Culture,Arts and Culture +524224,Arts and Culture,Arts and Culture +524223,Arts and Culture,Arts and Culture +520871,Arts and Culture,Arts and Culture +520869,Arts and Culture,Arts and Culture +520867,Arts and Culture,Arts and Culture +520866,Arts and Culture,Arts and Culture +517489,Arts and Culture,Arts and Culture +516642,Arts and Culture,Arts and Culture +516640,Arts and Culture,Arts and Culture +516638,Arts and Culture,Arts and Culture +514922,Arts and Culture,Arts and Culture +514921,Arts and Culture,Arts and Culture +514433,Arts and Culture,Arts and Culture +514432,Arts and Culture,Arts and Culture +514431,Arts and Culture,Arts and Culture +512006,Arts and Culture,Arts and Culture +509472,Arts and Culture,Arts and Culture +509437,Arts and Culture,Arts and Culture +509436,Arts and Culture,Arts and Culture +506626,Arts and Culture,Arts and Culture +506624,Arts and Culture,Arts and Culture +503144,Arts and Culture,Arts and Culture +500863,Arts and Culture,Arts and Culture +500031,Arts and Culture,Arts and Culture +500030,Arts and Culture,Arts and Culture +500028,Arts and Culture,Arts and Culture +497983,Arts and Culture,Arts and Culture +496772,Arts and Culture,Arts and Culture +496660,Arts and Culture,Arts and Culture +496659,Arts and Culture,Arts and Culture +496658,Arts and Culture,Arts and Culture +496429,Arts and Culture,Arts and Culture +496428,Arts and Culture,Arts and Culture +496423,Arts and Culture,Arts and Culture +494605,Arts and Culture,Arts and Culture +494602,Arts and Culture,Arts and Culture +494601,Arts and Culture,Arts and Culture +494600,Arts and Culture,Arts and Culture +494597,Arts and Culture,Arts and Culture +494596,Arts and Culture,Arts and Culture +494593,Arts and Culture,Arts and Culture +491939,Arts and Culture,Arts and Culture +491937,Arts and Culture,Arts and Culture +484211,Arts and Culture,Arts and Culture +484209,Arts and Culture,Arts and Culture +483931,Arts and Culture,Arts and Culture +481827,Arts and Culture,Arts and Culture +481116,Arts and Culture,Arts and Culture +481114,Arts and Culture,Arts and Culture +480548,Arts and Culture,Arts and Culture +480547,Arts and Culture,Arts and Culture +480546,Arts and Culture,Arts and Culture +479441,Arts and Culture,Arts and Culture +476179,Arts and Culture,Arts and Culture +474015,Arts and Culture,Arts and Culture +474013,Arts and Culture,Arts and Culture +474012,Arts and Culture,Arts and Culture +472010,Arts and Culture,Arts and Culture +471517,Arts and Culture,Arts and Culture +471397,Arts and Culture,Arts and Culture +470199,Arts and Culture,Arts and Culture +469120,Arts and Culture,Arts and Culture +494596,Broadcasting,Broadcasting +494593,Broadcasting,Broadcasting +540959,Broadcasting,Broadcasting +540958,Broadcasting,Broadcasting +536619,Broadcasting,Broadcasting +536616,Broadcasting,Broadcasting +533352,Broadcasting,Broadcasting +533253,Broadcasting,Broadcasting +533252,Broadcasting,Broadcasting +531633,Broadcasting,Broadcasting +531632,Broadcasting,Broadcasting +531613,Broadcasting,Broadcasting +527841,Broadcasting,Broadcasting +527113,Broadcasting,Broadcasting +527112,Broadcasting,Broadcasting +525412,Broadcasting,Broadcasting +525408,Broadcasting,Broadcasting +524718,Broadcasting,Broadcasting +524224,Broadcasting,Broadcasting +524223,Broadcasting,Broadcasting +520869,Broadcasting,Broadcasting +520867,Broadcasting,Broadcasting +520866,Broadcasting,Broadcasting +517489,Broadcasting,Broadcasting +516642,Broadcasting,Broadcasting +516640,Broadcasting,Broadcasting +516638,Broadcasting,Broadcasting +514922,Broadcasting,Broadcasting +514432,Broadcasting,Broadcasting +514431,Broadcasting,Broadcasting +512006,Broadcasting,Broadcasting +509437,Broadcasting,Broadcasting +506626,Broadcasting,Broadcasting +506624,Broadcasting,Broadcasting +503144,Broadcasting,Broadcasting +500863,Broadcasting,Broadcasting +500031,Broadcasting,Broadcasting +500030,Broadcasting,Broadcasting +500028,Broadcasting,Broadcasting +497983,Broadcasting,Broadcasting +496772,Broadcasting,Broadcasting +496660,Broadcasting,Broadcasting +496659,Broadcasting,Broadcasting +496658,Broadcasting,Broadcasting +496429,Broadcasting,Broadcasting +496428,Broadcasting,Broadcasting +496423,Broadcasting,Broadcasting +494605,Broadcasting,Broadcasting +494602,Broadcasting,Broadcasting +494601,Broadcasting,Broadcasting +494600,Broadcasting,Broadcasting +532248,Aboriginal Affairs,Aboriginal Affairs +530445,Aboriginal Affairs,Aboriginal Affairs +96912,Aboriginal Affairs,Aboriginal Affairs +256474,Aboriginal Affairs,Aboriginal Affairs +256473,Aboriginal Affairs,Aboriginal Affairs +256472,Aboriginal Affairs,Aboriginal Affairs +256471,Aboriginal Affairs,Aboriginal Affairs +256470,Aboriginal Affairs,Aboriginal Affairs +256469,Aboriginal Affairs,Aboriginal Affairs +251540,Aboriginal Affairs,Aboriginal Affairs +251539,Aboriginal Affairs,Aboriginal Affairs +251537,Aboriginal Affairs,Aboriginal Affairs +251535,Aboriginal Affairs,Aboriginal Affairs +245691,Aboriginal Affairs,Aboriginal Affairs +245689,Aboriginal Affairs,Aboriginal Affairs +199616,Aboriginal Affairs,Aboriginal Affairs +199615,Aboriginal Affairs,Aboriginal Affairs +192706,Aboriginal Affairs,Aboriginal Affairs +192705,Aboriginal Affairs,Aboriginal Affairs +192704,Aboriginal Affairs,Aboriginal Affairs +377998,Aboriginal Affairs,Aboriginal Affairs +377996,Aboriginal Affairs,Aboriginal Affairs +377995,Aboriginal Affairs,Aboriginal Affairs +377993,Aboriginal Affairs,Aboriginal Affairs +377987,Aboriginal Affairs,Aboriginal Affairs +377986,Aboriginal Affairs,Aboriginal Affairs +377982,Aboriginal Affairs,Aboriginal Affairs +377566,Aboriginal Affairs,Aboriginal Affairs +377565,Aboriginal Affairs,Aboriginal Affairs +373122,Aboriginal Affairs,Aboriginal Affairs +370238,Aboriginal Affairs,Aboriginal Affairs +370237,Aboriginal Affairs,Aboriginal Affairs +370236,Aboriginal Affairs,Aboriginal Affairs +370235,Aboriginal Affairs,Aboriginal Affairs +370232,Aboriginal Affairs,Aboriginal Affairs +369987,Aboriginal Affairs,Aboriginal Affairs +367466,Aboriginal Affairs,Aboriginal Affairs +367465,Aboriginal Affairs,Aboriginal Affairs +367464,Aboriginal Affairs,Aboriginal Affairs +365682,Aboriginal Affairs,Aboriginal Affairs +364888,Aboriginal Affairs,Aboriginal Affairs +364887,Aboriginal Affairs,Aboriginal Affairs +364886,Aboriginal Affairs,Aboriginal Affairs +357045,Aboriginal Affairs,Aboriginal Affairs +347519,Aboriginal Affairs,Aboriginal Affairs +347518,Aboriginal Affairs,Aboriginal Affairs +320476,Aboriginal Affairs,Aboriginal Affairs +320475,Aboriginal Affairs,Aboriginal Affairs +320474,Aboriginal Affairs,Aboriginal Affairs +320473,Aboriginal Affairs,Aboriginal Affairs +320472,Aboriginal Affairs,Aboriginal Affairs +318283,Aboriginal Affairs,Aboriginal Affairs +318282,Aboriginal Affairs,Aboriginal Affairs +318279,Aboriginal Affairs,Aboriginal Affairs +318278,Aboriginal Affairs,Aboriginal Affairs +318274,Aboriginal Affairs,Aboriginal Affairs +273969,Aboriginal Affairs,Aboriginal Affairs +261551,Aboriginal Affairs,Aboriginal Affairs +261550,Aboriginal Affairs,Aboriginal Affairs +261549,Aboriginal Affairs,Aboriginal Affairs +261533,Aboriginal Affairs,Aboriginal Affairs +261532,Aboriginal Affairs,Aboriginal Affairs +256478,Aboriginal Affairs,Aboriginal Affairs +256477,Aboriginal Affairs,Aboriginal Affairs +256476,Aboriginal Affairs,Aboriginal Affairs +256475,Aboriginal Affairs,Aboriginal Affairs +486568,Aboriginal Affairs,Aboriginal Affairs +486179,Aboriginal Affairs,Aboriginal Affairs +482771,Aboriginal Affairs,Aboriginal Affairs +478950,Aboriginal Affairs,Aboriginal Affairs +476423,Aboriginal Affairs,Aboriginal Affairs +476357,Aboriginal Affairs,Aboriginal Affairs +476292,Aboriginal Affairs,Aboriginal Affairs +468943,Aboriginal Affairs,Aboriginal Affairs +463706,Aboriginal Affairs,Aboriginal Affairs +463704,Aboriginal Affairs,Aboriginal Affairs +462979,Aboriginal Affairs,Aboriginal Affairs +451621,Aboriginal Affairs,Aboriginal Affairs +449584,Aboriginal Affairs,Aboriginal Affairs +449582,Aboriginal Affairs,Aboriginal Affairs +449580,Aboriginal Affairs,Aboriginal Affairs +446045,Aboriginal Affairs,Aboriginal Affairs +427205,Aboriginal Affairs,Aboriginal Affairs +427203,Aboriginal Affairs,Aboriginal Affairs +399909,Aboriginal Affairs,Aboriginal Affairs +373122,Arts and Culture,Arts and Culture +544953,Arts and Culture,Arts and Culture +364888,Arts and Culture,Arts and Culture +357045,Arts and Culture,Arts and Culture +347518,Arts and Culture,Arts and Culture +347517,Arts and Culture,Arts and Culture +199616,Arts and Culture,Arts and Culture +192706,Arts and Culture,Arts and Culture +192705,Arts and Culture,Arts and Culture +192704,Arts and Culture,Arts and Culture +463704,Arts and Culture,Arts and Culture +427204,Arts and Culture,Arts and Culture +409069,Arts and Culture,Arts and Culture +469792,Broadcasting,Broadcasting +468943,Broadcasting,Broadcasting +96915,Broadcasting,Broadcasting +261532,Broadcasting,Broadcasting +261531,Broadcasting,Broadcasting +256478,Broadcasting,Broadcasting +256477,Broadcasting,Broadcasting +256476,Broadcasting,Broadcasting +256475,Broadcasting,Broadcasting +256474,Broadcasting,Broadcasting +256473,Broadcasting,Broadcasting +256472,Broadcasting,Broadcasting +256471,Broadcasting,Broadcasting +256469,Broadcasting,Broadcasting +251540,Broadcasting,Broadcasting +251539,Broadcasting,Broadcasting +251538,Broadcasting,Broadcasting +251537,Broadcasting,Broadcasting +251536,Broadcasting,Broadcasting +251535,Broadcasting,Broadcasting +251534,Broadcasting,Broadcasting +251533,Broadcasting,Broadcasting +251532,Broadcasting,Broadcasting +245692,Broadcasting,Broadcasting +245691,Broadcasting,Broadcasting +245689,Broadcasting,Broadcasting +199616,Broadcasting,Broadcasting +192706,Broadcasting,Broadcasting +192705,Broadcasting,Broadcasting +192704,Broadcasting,Broadcasting +377996,Broadcasting,Broadcasting +377993,Broadcasting,Broadcasting +377987,Broadcasting,Broadcasting +373122,Broadcasting,Broadcasting +370237,Broadcasting,Broadcasting +370235,Broadcasting,Broadcasting +365682,Broadcasting,Broadcasting +364888,Broadcasting,Broadcasting +364887,Broadcasting,Broadcasting +364886,Broadcasting,Broadcasting +357045,Broadcasting,Broadcasting +352144,Broadcasting,Broadcasting +352141,Broadcasting,Broadcasting +347519,Broadcasting,Broadcasting +347518,Broadcasting,Broadcasting +347517,Broadcasting,Broadcasting +321965,Broadcasting,Broadcasting +321963,Broadcasting,Broadcasting +320476,Broadcasting,Broadcasting +320475,Broadcasting,Broadcasting +320473,Broadcasting,Broadcasting +320472,Broadcasting,Broadcasting +318283,Broadcasting,Broadcasting +318282,Broadcasting,Broadcasting +318281,Broadcasting,Broadcasting +318278,Broadcasting,Broadcasting +318276,Broadcasting,Broadcasting +318274,Broadcasting,Broadcasting +261551,Broadcasting,Broadcasting +261550,Broadcasting,Broadcasting +261549,Broadcasting,Broadcasting +261533,Broadcasting,Broadcasting +465332,Broadcasting,Broadcasting +463706,Broadcasting,Broadcasting +463704,Broadcasting,Broadcasting +463702,Broadcasting,Broadcasting +462979,Broadcasting,Broadcasting +449584,Broadcasting,Broadcasting +449580,Broadcasting,Broadcasting +446045,Broadcasting,Broadcasting +409069,Broadcasting,Broadcasting +544953,Broadcasting,Broadcasting +542709,Broadcasting,Broadcasting +542595,Broadcasting,Broadcasting +542304,Broadcasting,Broadcasting +542272,Broadcasting,Broadcasting +542168,Broadcasting,Broadcasting +542167,Broadcasting,Broadcasting +540484,Broadcasting,Broadcasting +540483,Broadcasting,Broadcasting +535937,Broadcasting,Broadcasting +533275,Broadcasting,Broadcasting +533274,Broadcasting,Broadcasting +532726,Broadcasting,Broadcasting +531167,Broadcasting,Broadcasting +530742,Broadcasting,Broadcasting +530110,Broadcasting,Broadcasting +529911,Broadcasting,Broadcasting +529790,Broadcasting,Broadcasting +523527,Broadcasting,Broadcasting +521424,Broadcasting,Broadcasting +521381,Broadcasting,Broadcasting +520596,Broadcasting,Broadcasting +520429,Broadcasting,Broadcasting +518459,Broadcasting,Broadcasting +515178,Broadcasting,Broadcasting +507258,Broadcasting,Broadcasting +506185,Broadcasting,Broadcasting +500070,Broadcasting,Broadcasting +494392,Broadcasting,Broadcasting +494137,Broadcasting,Broadcasting +494060,Broadcasting,Broadcasting +493979,Broadcasting,Broadcasting +493945,Broadcasting,Broadcasting +492684,Broadcasting,Broadcasting +491950,Broadcasting,Broadcasting +489904,Broadcasting,Broadcasting +486567,Broadcasting,Broadcasting +485551,Broadcasting,Broadcasting +483128,Broadcasting,Broadcasting +482793,Broadcasting,Broadcasting +482772,Broadcasting,Broadcasting +482547,Broadcasting,Broadcasting +481049,Broadcasting,Broadcasting +476423,Broadcasting,Broadcasting +474338,Broadcasting,Broadcasting +472254,Broadcasting,Broadcasting +471705,Broadcasting,Broadcasting +471607,Broadcasting,Broadcasting +251532,Telecommunications,Telecommunications +364887,Telecommunications,Telecommunications +251538,Telecommunications,Telecommunications +251536,Telecommunications,Telecommunications +251535,Telecommunications,Telecommunications +251534,Telecommunications,Telecommunications +105325,Science and Technology,Science and Technology +105321,Science and Technology,Science and Technology +379811,Science and Technology,Science and Technology +374809,Science and Technology,Science and Technology +96495,Science and Technology,Science and Technology +93337,Science and Technology,Science and Technology +156462,Science and Technology,Science and Technology +153544,Science and Technology,Science and Technology +152798,Science and Technology,Science and Technology +152797,Science and Technology,Science and Technology +151517,Science and Technology,Science and Technology +149520,Science and Technology,Science and Technology +188962,Science and Technology,Science and Technology +188959,Science and Technology,Science and Technology +188957,Science and Technology,Science and Technology +188956,Science and Technology,Science and Technology +188954,Science and Technology,Science and Technology +188953,Science and Technology,Science and Technology +188952,Science and Technology,Science and Technology +188951,Science and Technology,Science and Technology +188950,Science and Technology,Science and Technology +188949,Science and Technology,Science and Technology +188946,Science and Technology,Science and Technology +188945,Science and Technology,Science and Technology +188943,Science and Technology,Science and Technology +188938,Science and Technology,Science and Technology +188937,Science and Technology,Science and Technology +188934,Science and Technology,Science and Technology +188932,Science and Technology,Science and Technology +188927,Science and Technology,Science and Technology +188925,Science and Technology,Science and Technology +188921,Science and Technology,Science and Technology +188920,Science and Technology,Science and Technology +188919,Science and Technology,Science and Technology +188917,Science and Technology,Science and Technology +188916,Science and Technology,Science and Technology +188915,Science and Technology,Science and Technology +188914,Science and Technology,Science and Technology +188913,Science and Technology,Science and Technology +188912,Science and Technology,Science and Technology +188911,Science and Technology,Science and Technology +188910,Science and Technology,Science and Technology +188909,Science and Technology,Science and Technology +188908,Science and Technology,Science and Technology +188906,Science and Technology,Science and Technology +188904,Science and Technology,Science and Technology +188903,Science and Technology,Science and Technology +188902,Science and Technology,Science and Technology +188901,Science and Technology,Science and Technology +188900,Science and Technology,Science and Technology +188899,Science and Technology,Science and Technology +188898,Science and Technology,Science and Technology +188897,Science and Technology,Science and Technology +188896,Science and Technology,Science and Technology +188893,Science and Technology,Science and Technology +186624,Science and Technology,Science and Technology +172504,Science and Technology,Science and Technology +165285,Science and Technology,Science and Technology +165284,Science and Technology,Science and Technology +366503,Science and Technology,Science and Technology +292529,Science and Technology,Science and Technology +240290,Science and Technology,Science and Technology +194724,Science and Technology,Science and Technology +190398,Science and Technology,Science and Technology +189017,Science and Technology,Science and Technology +189012,Science and Technology,Science and Technology +189010,Science and Technology,Science and Technology +189008,Science and Technology,Science and Technology +188965,Science and Technology,Science and Technology +188963,Science and Technology,Science and Technology +460183,Science and Technology,Science and Technology +437843,Science and Technology,Science and Technology +433735,Science and Technology,Science and Technology +424115,Science and Technology,Science and Technology +414536,Science and Technology,Science and Technology +409400,Science and Technology,Science and Technology +400099,Science and Technology,Science and Technology +400093,Science and Technology,Science and Technology +393577,Science and Technology,Science and Technology +389077,Science and Technology,Science and Technology +382416,Science and Technology,Science and Technology +380958,Science and Technology,Science and Technology +326434,Broadcasting,Broadcasting +324506,Broadcasting,Broadcasting +301669,Broadcasting,Broadcasting +173029,Broadcasting,Broadcasting +356042,Broadcasting,Broadcasting +236210,Telecommunications,Telecommunications +232589,Telecommunications,Telecommunications +173029,Telecommunications,Telecommunications +356042,Telecommunications,Telecommunications +326438,Telecommunications,Telecommunications +326434,Telecommunications,Telecommunications +324506,Telecommunications,Telecommunications +512770,Science and Technology,Science and Technology +512767,Science and Technology,Science and Technology +411293,Science and Technology,Science and Technology +405528,Science and Technology,Science and Technology +482206,Science and Technology,Science and Technology +477500,Science and Technology,Science and Technology +466239,Science and Technology,Science and Technology +466238,Science and Technology,Science and Technology +466237,Science and Technology,Science and Technology +466236,Science and Technology,Science and Technology +466235,Science and Technology,Science and Technology +466234,Science and Technology,Science and Technology +466233,Science and Technology,Science and Technology +466231,Science and Technology,Science and Technology +466230,Science and Technology,Science and Technology +466229,Science and Technology,Science and Technology +466228,Science and Technology,Science and Technology +466227,Science and Technology,Science and Technology +466226,Science and Technology,Science and Technology +466223,Science and Technology,Science and Technology +466222,Science and Technology,Science and Technology +466220,Science and Technology,Science and Technology +466218,Science and Technology,Science and Technology +462773,Science and Technology,Science and Technology +462770,Science and Technology,Science and Technology +461361,Science and Technology,Science and Technology +461147,Science and Technology,Science and Technology +443166,Science and Technology,Science and Technology +434568,Science and Technology,Science and Technology +434567,Science and Technology,Science and Technology +434084,Science and Technology,Science and Technology +432923,Science and Technology,Science and Technology +421869,Science and Technology,Science and Technology +528829,Science and Technology,Science and Technology +519773,Science and Technology,Science and Technology +512790,Science and Technology,Science and Technology +512787,Science and Technology,Science and Technology +512785,Science and Technology,Science and Technology +512781,Science and Technology,Science and Technology +512778,Science and Technology,Science and Technology +512775,Science and Technology,Science and Technology +448588,Aboriginal Affairs,Aboriginal Affairs +448587,Aboriginal Affairs,Aboriginal Affairs +506273,Aboriginal Affairs,Aboriginal Affairs +448590,Aboriginal Affairs,Aboriginal Affairs +396863,Science and Technology,Science and Technology +396789,Science and Technology,Science and Technology +89914,Science and Technology,Science and Technology +84934,Science and Technology,Science and Technology +227021,Science and Technology,Science and Technology +223248,Science and Technology,Science and Technology +223247,Science and Technology,Science and Technology +217651,Science and Technology,Science and Technology +212092,Science and Technology,Science and Technology +212091,Science and Technology,Science and Technology +199891,Science and Technology,Science and Technology +303521,Science and Technology,Science and Technology +290661,Science and Technology,Science and Technology +280849,Science and Technology,Science and Technology +277250,Science and Technology,Science and Technology +277249,Science and Technology,Science and Technology +272252,Science and Technology,Science and Technology +272209,Science and Technology,Science and Technology +269472,Science and Technology,Science and Technology +269471,Science and Technology,Science and Technology +254093,Science and Technology,Science and Technology +254092,Science and Technology,Science and Technology +254091,Science and Technology,Science and Technology +250773,Science and Technology,Science and Technology +245316,Science and Technology,Science and Technology +243371,Science and Technology,Science and Technology +243370,Science and Technology,Science and Technology +243369,Science and Technology,Science and Technology +233596,Science and Technology,Science and Technology +233595,Science and Technology,Science and Technology +233594,Science and Technology,Science and Technology +227028,Science and Technology,Science and Technology +227023,Science and Technology,Science and Technology +398999,Science and Technology,Science and Technology +83134,Arts and Culture,Arts and Culture +83131,Arts and Culture,Arts and Culture +199819,Arts and Culture,Arts and Culture +175926,Arts and Culture,Arts and Culture +97412,Arts and Culture,Arts and Culture +97410,Arts and Culture,Arts and Culture +86975,Arts and Culture,Arts and Culture +86974,Arts and Culture,Arts and Culture +162605,Arts and Culture,Arts and Culture +159512,Arts and Culture,Arts and Culture +154957,Arts and Culture,Arts and Culture +154956,Arts and Culture,Arts and Culture +154955,Arts and Culture,Arts and Culture +154954,Arts and Culture,Arts and Culture +150336,Arts and Culture,Arts and Culture +250951,Arts and Culture,Arts and Culture +240916,Arts and Culture,Arts and Culture +240914,Arts and Culture,Arts and Culture +230314,Arts and Culture,Arts and Culture +230311,Arts and Culture,Arts and Culture +230303,Arts and Culture,Arts and Culture +230299,Arts and Culture,Arts and Culture +230297,Arts and Culture,Arts and Culture +230081,Arts and Culture,Arts and Culture +97414,Arts and Culture,Arts and Culture +138062,Arts and Culture,Arts and Culture +174057,Science and Technology,Science and Technology +196146,Science and Technology,Science and Technology +180425,Science and Technology,Science and Technology +463032,Science and Technology,Science and Technology +463030,Science and Technology,Science and Technology +387694,Science and Technology,Science and Technology +464489,Science and Technology,Science and Technology +464484,Science and Technology,Science and Technology +464480,Science and Technology,Science and Technology +464460,Science and Technology,Science and Technology +464435,Science and Technology,Science and Technology +464369,Science and Technology,Science and Technology +463245,Science and Technology,Science and Technology +463244,Science and Technology,Science and Technology +463065,Science and Technology,Science and Technology +463064,Science and Technology,Science and Technology +463060,Science and Technology,Science and Technology +463043,Science and Technology,Science and Technology +463038,Science and Technology,Science and Technology +463035,Science and Technology,Science and Technology +483450,Science and Technology,Science and Technology +482247,Science and Technology,Science and Technology +93385,Science and Technology,Science and Technology +93384,Science and Technology,Science and Technology +93380,Science and Technology,Science and Technology +93378,Science and Technology,Science and Technology +89901,Science and Technology,Science and Technology +89900,Science and Technology,Science and Technology +84795,Science and Technology,Science and Technology +84766,Science and Technology,Science and Technology +82862,Science and Technology,Science and Technology +81094,Science and Technology,Science and Technology +76405,Science and Technology,Science and Technology +286389,Science and Technology,Science and Technology +263672,Science and Technology,Science and Technology +263671,Science and Technology,Science and Technology +263670,Science and Technology,Science and Technology +135475,Science and Technology,Science and Technology +124917,Science and Technology,Science and Technology +124903,Science and Technology,Science and Technology +107255,Science and Technology,Science and Technology +107254,Science and Technology,Science and Technology +100983,Science and Technology,Science and Technology +370661,Science and Technology,Science and Technology +420078,Science and Technology,Science and Technology +418091,Science and Technology,Science and Technology +417155,Science and Technology,Science and Technology +417154,Science and Technology,Science and Technology +412825,Science and Technology,Science and Technology +409265,Science and Technology,Science and Technology +409264,Science and Technology,Science and Technology +409263,Science and Technology,Science and Technology +409262,Science and Technology,Science and Technology +409261,Science and Technology,Science and Technology +409260,Science and Technology,Science and Technology +409259,Science and Technology,Science and Technology +409257,Science and Technology,Science and Technology +405256,Science and Technology,Science and Technology +405253,Science and Technology,Science and Technology +396927,Science and Technology,Science and Technology +396924,Science and Technology,Science and Technology +386634,Science and Technology,Science and Technology +386487,Science and Technology,Science and Technology +384458,Science and Technology,Science and Technology +384457,Science and Technology,Science and Technology +382145,Science and Technology,Science and Technology +374152,Science and Technology,Science and Technology +476796,Science and Technology,Science and Technology +476795,Science and Technology,Science and Technology +474912,Science and Technology,Science and Technology +472613,Science and Technology,Science and Technology +472611,Science and Technology,Science and Technology +472610,Science and Technology,Science and Technology +472606,Science and Technology,Science and Technology +472605,Science and Technology,Science and Technology +469781,Science and Technology,Science and Technology +469778,Science and Technology,Science and Technology +469777,Science and Technology,Science and Technology +469776,Science and Technology,Science and Technology +469775,Science and Technology,Science and Technology +469774,Science and Technology,Science and Technology +469773,Science and Technology,Science and Technology +469772,Science and Technology,Science and Technology +469771,Science and Technology,Science and Technology +469770,Science and Technology,Science and Technology +469769,Science and Technology,Science and Technology +469768,Science and Technology,Science and Technology +469765,Science and Technology,Science and Technology +469764,Science and Technology,Science and Technology +469763,Science and Technology,Science and Technology +469761,Science and Technology,Science and Technology +469748,Science and Technology,Science and Technology +469744,Science and Technology,Science and Technology +469739,Science and Technology,Science and Technology +469738,Science and Technology,Science and Technology +469732,Science and Technology,Science and Technology +469731,Science and Technology,Science and Technology +469730,Science and Technology,Science and Technology +469729,Science and Technology,Science and Technology +469728,Science and Technology,Science and Technology +469725,Science and Technology,Science and Technology +469723,Science and Technology,Science and Technology +469722,Science and Technology,Science and Technology +469209,Science and Technology,Science and Technology +467226,Science and Technology,Science and Technology +467225,Science and Technology,Science and Technology +467224,Science and Technology,Science and Technology +467221,Science and Technology,Science and Technology +467220,Science and Technology,Science and Technology +467219,Science and Technology,Science and Technology +467217,Science and Technology,Science and Technology +467214,Science and Technology,Science and Technology +467204,Science and Technology,Science and Technology +467201,Science and Technology,Science and Technology +467199,Science and Technology,Science and Technology +463820,Science and Technology,Science and Technology +463819,Science and Technology,Science and Technology +463818,Science and Technology,Science and Technology +463814,Science and Technology,Science and Technology +463812,Science and Technology,Science and Technology +463810,Science and Technology,Science and Technology +463809,Science and Technology,Science and Technology +463807,Science and Technology,Science and Technology +462368,Science and Technology,Science and Technology +461436,Science and Technology,Science and Technology +461435,Science and Technology,Science and Technology +461434,Science and Technology,Science and Technology +461433,Science and Technology,Science and Technology +461432,Science and Technology,Science and Technology +461431,Science and Technology,Science and Technology +461430,Science and Technology,Science and Technology +461429,Science and Technology,Science and Technology +460579,Science and Technology,Science and Technology +460578,Science and Technology,Science and Technology +460577,Science and Technology,Science and Technology +460576,Science and Technology,Science and Technology +460575,Science and Technology,Science and Technology +460037,Science and Technology,Science and Technology +460036,Science and Technology,Science and Technology +460035,Science and Technology,Science and Technology +459662,Science and Technology,Science and Technology +459661,Science and Technology,Science and Technology +459660,Science and Technology,Science and Technology +459659,Science and Technology,Science and Technology +459658,Science and Technology,Science and Technology +459657,Science and Technology,Science and Technology +459656,Science and Technology,Science and Technology +459655,Science and Technology,Science and Technology +457327,Science and Technology,Science and Technology +457326,Science and Technology,Science and Technology +455891,Science and Technology,Science and Technology +455881,Science and Technology,Science and Technology +455875,Science and Technology,Science and Technology +455872,Science and Technology,Science and Technology +455869,Science and Technology,Science and Technology +455867,Science and Technology,Science and Technology +451752,Science and Technology,Science and Technology +451749,Science and Technology,Science and Technology +451747,Science and Technology,Science and Technology +449723,Science and Technology,Science and Technology +448211,Science and Technology,Science and Technology +448210,Science and Technology,Science and Technology +448209,Science and Technology,Science and Technology +448208,Science and Technology,Science and Technology +448207,Science and Technology,Science and Technology +448206,Science and Technology,Science and Technology +448205,Science and Technology,Science and Technology +448204,Science and Technology,Science and Technology +448200,Science and Technology,Science and Technology +448198,Science and Technology,Science and Technology +448197,Science and Technology,Science and Technology +448195,Science and Technology,Science and Technology +448194,Science and Technology,Science and Technology +448193,Science and Technology,Science and Technology +448192,Science and Technology,Science and Technology +448191,Science and Technology,Science and Technology +448189,Science and Technology,Science and Technology +448184,Science and Technology,Science and Technology +448183,Science and Technology,Science and Technology +448181,Science and Technology,Science and Technology +448180,Science and Technology,Science and Technology +448178,Science and Technology,Science and Technology +445278,Science and Technology,Science and Technology +445276,Science and Technology,Science and Technology +441915,Science and Technology,Science and Technology +441906,Science and Technology,Science and Technology +441904,Science and Technology,Science and Technology +441902,Science and Technology,Science and Technology +441900,Science and Technology,Science and Technology +439143,Science and Technology,Science and Technology +438846,Science and Technology,Science and Technology +438845,Science and Technology,Science and Technology +434333,Science and Technology,Science and Technology +433567,Science and Technology,Science and Technology +433565,Science and Technology,Science and Technology +433563,Science and Technology,Science and Technology +432074,Science and Technology,Science and Technology +431330,Science and Technology,Science and Technology +431318,Science and Technology,Science and Technology +428356,Science and Technology,Science and Technology +428350,Science and Technology,Science and Technology +428347,Science and Technology,Science and Technology +428340,Science and Technology,Science and Technology +428305,Science and Technology,Science and Technology +428303,Science and Technology,Science and Technology +426595,Science and Technology,Science and Technology +424132,Science and Technology,Science and Technology +424118,Science and Technology,Science and Technology +424104,Science and Technology,Science and Technology +421968,Science and Technology,Science and Technology +420139,Science and Technology,Science and Technology +420129,Science and Technology,Science and Technology +420124,Science and Technology,Science and Technology +420116,Science and Technology,Science and Technology +420112,Science and Technology,Science and Technology +420111,Science and Technology,Science and Technology +420110,Science and Technology,Science and Technology +420109,Science and Technology,Science and Technology +420105,Science and Technology,Science and Technology +420102,Science and Technology,Science and Technology +420097,Science and Technology,Science and Technology +420096,Science and Technology,Science and Technology +420092,Science and Technology,Science and Technology +420090,Science and Technology,Science and Technology +420088,Science and Technology,Science and Technology +420086,Science and Technology,Science and Technology +542780,Science and Technology,Science and Technology +542777,Science and Technology,Science and Technology +542774,Science and Technology,Science and Technology +542773,Science and Technology,Science and Technology +542772,Science and Technology,Science and Technology +539502,Science and Technology,Science and Technology +539498,Science and Technology,Science and Technology +539497,Science and Technology,Science and Technology +537882,Science and Technology,Science and Technology +536173,Science and Technology,Science and Technology +535721,Science and Technology,Science and Technology +535717,Science and Technology,Science and Technology +535713,Science and Technology,Science and Technology +535711,Science and Technology,Science and Technology +532197,Science and Technology,Science and Technology +532187,Science and Technology,Science and Technology +532184,Science and Technology,Science and Technology +532183,Science and Technology,Science and Technology +532182,Science and Technology,Science and Technology +532181,Science and Technology,Science and Technology +529682,Science and Technology,Science and Technology +529681,Science and Technology,Science and Technology +529680,Science and Technology,Science and Technology +529195,Science and Technology,Science and Technology +529174,Science and Technology,Science and Technology +518175,Science and Technology,Science and Technology +518172,Science and Technology,Science and Technology +518166,Science and Technology,Science and Technology +518164,Science and Technology,Science and Technology +518163,Science and Technology,Science and Technology +518160,Science and Technology,Science and Technology +518148,Science and Technology,Science and Technology +518139,Science and Technology,Science and Technology +518134,Science and Technology,Science and Technology +514967,Science and Technology,Science and Technology +514345,Science and Technology,Science and Technology +514339,Science and Technology,Science and Technology +513669,Science and Technology,Science and Technology +512133,Science and Technology,Science and Technology +512132,Science and Technology,Science and Technology +511087,Science and Technology,Science and Technology +509747,Science and Technology,Science and Technology +506845,Science and Technology,Science and Technology +506844,Science and Technology,Science and Technology +506843,Science and Technology,Science and Technology +506842,Science and Technology,Science and Technology +506841,Science and Technology,Science and Technology +506840,Science and Technology,Science and Technology +506838,Science and Technology,Science and Technology +503606,Science and Technology,Science and Technology +503605,Science and Technology,Science and Technology +503603,Science and Technology,Science and Technology +503602,Science and Technology,Science and Technology +503574,Science and Technology,Science and Technology +501716,Science and Technology,Science and Technology +500442,Science and Technology,Science and Technology +500435,Science and Technology,Science and Technology +500434,Science and Technology,Science and Technology +500433,Science and Technology,Science and Technology +500432,Science and Technology,Science and Technology +500431,Science and Technology,Science and Technology +500430,Science and Technology,Science and Technology +500428,Science and Technology,Science and Technology +500427,Science and Technology,Science and Technology +497425,Science and Technology,Science and Technology +497158,Science and Technology,Science and Technology +497155,Science and Technology,Science and Technology +497151,Science and Technology,Science and Technology +497150,Science and Technology,Science and Technology +497147,Science and Technology,Science and Technology +494761,Science and Technology,Science and Technology +494759,Science and Technology,Science and Technology +492420,Science and Technology,Science and Technology +492418,Science and Technology,Science and Technology +492416,Science and Technology,Science and Technology +492415,Science and Technology,Science and Technology +492414,Science and Technology,Science and Technology +489579,Science and Technology,Science and Technology +489098,Science and Technology,Science and Technology +489096,Science and Technology,Science and Technology +489095,Science and Technology,Science and Technology +489093,Science and Technology,Science and Technology +489092,Science and Technology,Science and Technology +387580,Science and Technology,Science and Technology +387570,Science and Technology,Science and Technology +175764,Science and Technology,Science and Technology +157256,Science and Technology,Science and Technology +488947,Science and Technology,Science and Technology +486929,Science and Technology,Science and Technology +227670,Science and Technology,Science and Technology +384819,Science and Technology,Science and Technology +384814,Science and Technology,Science and Technology +384801,Science and Technology,Science and Technology +384796,Science and Technology,Science and Technology +384793,Science and Technology,Science and Technology +384762,Science and Technology,Science and Technology +327321,Science and Technology,Science and Technology +463414,Science and Technology,Science and Technology +463412,Science and Technology,Science and Technology +463409,Science and Technology,Science and Technology +463407,Science and Technology,Science and Technology +455279,Science and Technology,Science and Technology +423153,Science and Technology,Science and Technology +417218,Science and Technology,Science and Technology +416682,Science and Technology,Science and Technology +409423,Science and Technology,Science and Technology +409421,Science and Technology,Science and Technology +409420,Science and Technology,Science and Technology +403603,Science and Technology,Science and Technology +396746,Science and Technology,Science and Technology +396739,Science and Technology,Science and Technology +395286,Science and Technology,Science and Technology +395284,Science and Technology,Science and Technology +395279,Science and Technology,Science and Technology +395274,Science and Technology,Science and Technology +390986,Science and Technology,Science and Technology +390976,Science and Technology,Science and Technology +390956,Science and Technology,Science and Technology +390950,Science and Technology,Science and Technology +387631,Science and Technology,Science and Technology +387625,Science and Technology,Science and Technology +387598,Science and Technology,Science and Technology +515997,Science and Technology,Science and Technology +515091,Science and Technology,Science and Technology +515035,Science and Technology,Science and Technology +510158,Science and Technology,Science and Technology +509920,Science and Technology,Science and Technology +509918,Science and Technology,Science and Technology +509917,Science and Technology,Science and Technology +506742,Science and Technology,Science and Technology +506740,Science and Technology,Science and Technology +506737,Science and Technology,Science and Technology +506258,Science and Technology,Science and Technology +504539,Science and Technology,Science and Technology +504130,Science and Technology,Science and Technology +503406,Science and Technology,Science and Technology +500538,Science and Technology,Science and Technology +499890,Science and Technology,Science and Technology +496887,Science and Technology,Science and Technology +496885,Science and Technology,Science and Technology +496884,Science and Technology,Science and Technology +494254,Science and Technology,Science and Technology +488950,Science and Technology,Science and Technology +488949,Science and Technology,Science and Technology +498463,Science and Technology,Science and Technology +479997,Science and Technology,Science and Technology +125954,Science and Technology,Science and Technology +92859,Science and Technology,Science and Technology +92858,Science and Technology,Science and Technology +344977,Science and Technology,Science and Technology +343022,Science and Technology,Science and Technology +343021,Science and Technology,Science and Technology +337591,Science and Technology,Science and Technology +337589,Science and Technology,Science and Technology +337588,Science and Technology,Science and Technology +330965,Science and Technology,Science and Technology +330964,Science and Technology,Science and Technology +321199,Science and Technology,Science and Technology +401949,Science and Technology,Science and Technology +401948,Science and Technology,Science and Technology +399624,Science and Technology,Science and Technology +370528,Science and Technology,Science and Technology +370523,Science and Technology,Science and Technology +455759,Science and Technology,Science and Technology +446446,Science and Technology,Science and Technology +440267,Science and Technology,Science and Technology +440266,Science and Technology,Science and Technology +440265,Science and Technology,Science and Technology +440264,Science and Technology,Science and Technology +429752,Science and Technology,Science and Technology +429747,Science and Technology,Science and Technology +429745,Science and Technology,Science and Technology +525980,Science and Technology,Science and Technology +522616,Science and Technology,Science and Technology +508037,Science and Technology,Science and Technology +153361,Broadcasting,Broadcasting +150211,Broadcasting,Broadcasting +97661,Broadcasting,Broadcasting +147921,Broadcasting,Broadcasting +147916,Broadcasting,Broadcasting +146010,Broadcasting,Broadcasting +146005,Broadcasting,Broadcasting +142426,Broadcasting,Broadcasting +424940,Science and Technology,Science and Technology +424938,Science and Technology,Science and Technology +536990,Science and Technology,Science and Technology +531898,Science and Technology,Science and Technology +465895,Science and Technology,Science and Technology +465894,Science and Technology,Science and Technology +465893,Science and Technology,Science and Technology +465892,Science and Technology,Science and Technology +465890,Science and Technology,Science and Technology +465888,Science and Technology,Science and Technology +424951,Science and Technology,Science and Technology +424950,Science and Technology,Science and Technology +424949,Science and Technology,Science and Technology +424948,Science and Technology,Science and Technology +424947,Science and Technology,Science and Technology +424946,Science and Technology,Science and Technology +424945,Science and Technology,Science and Technology +424944,Science and Technology,Science and Technology +424942,Science and Technology,Science and Technology +167677,Science and Technology,Science and Technology +160018,Science and Technology,Science and Technology +77161,Science and Technology,Science and Technology +160017,Science and Technology,Science and Technology +160016,Science and Technology,Science and Technology +160013,Science and Technology,Science and Technology +160012,Science and Technology,Science and Technology +160010,Science and Technology,Science and Technology +160009,Science and Technology,Science and Technology +157283,Science and Technology,Science and Technology +157281,Science and Technology,Science and Technology +157280,Science and Technology,Science and Technology +157279,Science and Technology,Science and Technology +157278,Science and Technology,Science and Technology +157274,Science and Technology,Science and Technology +157267,Science and Technology,Science and Technology +157266,Science and Technology,Science and Technology +124623,Arts and Culture,Arts and Culture +370720,Science and Technology,Science and Technology +370555,Science and Technology,Science and Technology +370292,Science and Technology,Science and Technology +370271,Science and Technology,Science and Technology +370096,Science and Technology,Science and Technology +367528,Science and Technology,Science and Technology +367450,Science and Technology,Science and Technology +367183,Science and Technology,Science and Technology +365945,Science and Technology,Science and Technology +378165,Science and Technology,Science and Technology +373291,Science and Technology,Science and Technology +373290,Science and Technology,Science and Technology +373250,Science and Technology,Science and Technology +373137,Science and Technology,Science and Technology +422477,Aboriginal Affairs,Aboriginal Affairs +422471,Aboriginal Affairs,Aboriginal Affairs +202990,Aboriginal Affairs,Aboriginal Affairs +167150,Aboriginal Affairs,Aboriginal Affairs +167149,Aboriginal Affairs,Aboriginal Affairs +321409,Aboriginal Affairs,Aboriginal Affairs +317214,Aboriginal Affairs,Aboriginal Affairs +276013,Aboriginal Affairs,Aboriginal Affairs +276012,Aboriginal Affairs,Aboriginal Affairs +166213,Aboriginal Affairs,Aboriginal Affairs +197627,Aboriginal Affairs,Aboriginal Affairs +144496,Arts and Culture,Arts and Culture +428546,Arts and Culture,Arts and Culture +219067,Arts and Culture,Arts and Culture +156845,Arts and Culture,Arts and Culture +156841,Arts and Culture,Arts and Culture +156840,Arts and Culture,Arts and Culture +154526,Arts and Culture,Arts and Culture +152598,Arts and Culture,Arts and Culture +152597,Arts and Culture,Arts and Culture +144501,Arts and Culture,Arts and Culture +144500,Arts and Culture,Arts and Culture +443240,Science and Technology,Science and Technology +411700,Science and Technology,Science and Technology +126054,Science and Technology,Science and Technology +156845,Science and Technology,Science and Technology +156843,Science and Technology,Science and Technology +154526,Science and Technology,Science and Technology +152600,Science and Technology,Science and Technology +146053,Science and Technology,Science and Technology +144514,Science and Technology,Science and Technology +144501,Science and Technology,Science and Technology +144498,Science and Technology,Science and Technology +144496,Science and Technology,Science and Technology +240601,Science and Technology,Science and Technology +240600,Science and Technology,Science and Technology +240599,Science and Technology,Science and Technology +219067,Science and Technology,Science and Technology +199861,Science and Technology,Science and Technology +389633,Science and Technology,Science and Technology +376209,Science and Technology,Science and Technology +359303,Science and Technology,Science and Technology +359302,Science and Technology,Science and Technology +328470,Science and Technology,Science and Technology +319249,Science and Technology,Science and Technology +310434,Science and Technology,Science and Technology +310295,Science and Technology,Science and Technology +310293,Science and Technology,Science and Technology +310290,Science and Technology,Science and Technology +310286,Science and Technology,Science and Technology +310024,Science and Technology,Science and Technology +448940,Science and Technology,Science and Technology +448939,Science and Technology,Science and Technology +89355,Aboriginal Affairs,Aboriginal Affairs +89354,Aboriginal Affairs,Aboriginal Affairs +97214,Aboriginal Affairs,Aboriginal Affairs +402641,Aboriginal Affairs,Aboriginal Affairs +402627,Aboriginal Affairs,Aboriginal Affairs +402728,Aboriginal Affairs,Aboriginal Affairs +402714,Aboriginal Affairs,Aboriginal Affairs +402711,Aboriginal Affairs,Aboriginal Affairs +402709,Aboriginal Affairs,Aboriginal Affairs +402706,Aboriginal Affairs,Aboriginal Affairs +410566,Science and Technology,Science and Technology +410563,Science and Technology,Science and Technology +401050,Science and Technology,Science and Technology +368886,Science and Technology,Science and Technology +489527,Aboriginal Affairs,Aboriginal Affairs +433167,Aboriginal Affairs,Aboriginal Affairs +196868,Aboriginal Affairs,Aboriginal Affairs +124481,Aboriginal Affairs,Aboriginal Affairs +124480,Aboriginal Affairs,Aboriginal Affairs +361223,Aboriginal Affairs,Aboriginal Affairs +355637,Aboriginal Affairs,Aboriginal Affairs +355636,Aboriginal Affairs,Aboriginal Affairs +277332,Aboriginal Affairs,Aboriginal Affairs +421780,Aboriginal Affairs,Aboriginal Affairs +402626,Aboriginal Affairs,Aboriginal Affairs +385342,Aboriginal Affairs,Aboriginal Affairs +358077,Broadcasting,Broadcasting +358068,Broadcasting,Broadcasting +442188,Broadcasting,Broadcasting +442173,Broadcasting,Broadcasting +442166,Broadcasting,Broadcasting +439061,Broadcasting,Broadcasting +438996,Broadcasting,Broadcasting +442213,Telecommunications,Telecommunications +418868,Telecommunications,Telecommunications +81062,Telecommunications,Telecommunications +81060,Telecommunications,Telecommunications +77041,Telecommunications,Telecommunications +77038,Telecommunications,Telecommunications +151499,Telecommunications,Telecommunications +395583,Telecommunications,Telecommunications +395565,Telecommunications,Telecommunications +394011,Telecommunications,Telecommunications +394003,Telecommunications,Telecommunications +392516,Telecommunications,Telecommunications +376869,Telecommunications,Telecommunications +338933,Telecommunications,Telecommunications +322178,Telecommunications,Telecommunications +322177,Telecommunications,Telecommunications +312598,Telecommunications,Telecommunications +312592,Telecommunications,Telecommunications +291795,Telecommunications,Telecommunications +277294,Telecommunications,Telecommunications +264260,Telecommunications,Telecommunications +256431,Telecommunications,Telecommunications +528071,Telecommunications,Telecommunications +517437,Telecommunications,Telecommunications +517429,Telecommunications,Telecommunications +517374,Telecommunications,Telecommunications +514146,Telecommunications,Telecommunications +514145,Telecommunications,Telecommunications +514141,Telecommunications,Telecommunications +489527,Telecommunications,Telecommunications +489526,Telecommunications,Telecommunications +489521,Telecommunications,Telecommunications +484316,Telecommunications,Telecommunications +481881,Telecommunications,Telecommunications +474990,Telecommunications,Telecommunications +472539,Telecommunications,Telecommunications +455454,Telecommunications,Telecommunications +452517,Telecommunications,Telecommunications +452510,Telecommunications,Telecommunications +447845,Telecommunications,Telecommunications +399362,Science and Technology,Science and Technology +399359,Science and Technology,Science and Technology +367222,Science and Technology,Science and Technology +350858,Science and Technology,Science and Technology +350856,Science and Technology,Science and Technology +344030,Science and Technology,Science and Technology +536006,Science and Technology,Science and Technology +519009,Science and Technology,Science and Technology +516501,Science and Technology,Science and Technology +514871,Science and Technology,Science and Technology +513518,Science and Technology,Science and Technology +511681,Science and Technology,Science and Technology +461226,Science and Technology,Science and Technology +443549,Science and Technology,Science and Technology +436960,Science and Technology,Science and Technology +436959,Science and Technology,Science and Technology +436957,Science and Technology,Science and Technology +430337,Science and Technology,Science and Technology +402203,Science and Technology,Science and Technology +402201,Science and Technology,Science and Technology +313041,Aboriginal Affairs,Aboriginal Affairs +313038,Aboriginal Affairs,Aboriginal Affairs +207405,Science and Technology,Science and Technology +273709,Science and Technology,Science and Technology +240869,Science and Technology,Science and Technology +230128,Science and Technology,Science and Technology +230119,Science and Technology,Science and Technology +225671,Science and Technology,Science and Technology +464001,Science and Technology,Science and Technology +463223,Science and Technology,Science and Technology +159526,Science and Technology,Science and Technology +189635,Science and Technology,Science and Technology +189632,Science and Technology,Science and Technology +175621,Science and Technology,Science and Technology +175361,Science and Technology,Science and Technology +167521,Science and Technology,Science and Technology +167520,Science and Technology,Science and Technology +305312,Science and Technology,Science and Technology +305297,Science and Technology,Science and Technology +305296,Science and Technology,Science and Technology +273671,Science and Technology,Science and Technology +268774,Science and Technology,Science and Technology +268756,Science and Technology,Science and Technology +264524,Science and Technology,Science and Technology +264522,Science and Technology,Science and Technology +241214,Science and Technology,Science and Technology +238549,Science and Technology,Science and Technology +227334,Science and Technology,Science and Technology +227328,Science and Technology,Science and Technology +227326,Science and Technology,Science and Technology +211875,Science and Technology,Science and Technology +205218,Science and Technology,Science and Technology +414594,Science and Technology,Science and Technology +394554,Science and Technology,Science and Technology +394102,Science and Technology,Science and Technology +484057,Science and Technology,Science and Technology +484054,Science and Technology,Science and Technology +466100,Science and Technology,Science and Technology +466071,Science and Technology,Science and Technology +466070,Science and Technology,Science and Technology +466068,Science and Technology,Science and Technology +540730,Science and Technology,Science and Technology +540729,Science and Technology,Science and Technology +105296,Science and Technology,Science and Technology +365580,Science and Technology,Science and Technology +480609,Science and Technology,Science and Technology +376594,Arts and Culture,Arts and Culture +376590,Arts and Culture,Arts and Culture +218527,Arts and Culture,Arts and Culture +162512,Arts and Culture,Arts and Culture +404474,Broadcasting,Broadcasting +403100,Broadcasting,Broadcasting +102919,Broadcasting,Broadcasting +102915,Broadcasting,Broadcasting +102914,Broadcasting,Broadcasting +102455,Broadcasting,Broadcasting +102415,Broadcasting,Broadcasting +102414,Broadcasting,Broadcasting +158245,Broadcasting,Broadcasting +157628,Broadcasting,Broadcasting +153480,Broadcasting,Broadcasting +153478,Broadcasting,Broadcasting +153476,Broadcasting,Broadcasting +152381,Broadcasting,Broadcasting +152380,Broadcasting,Broadcasting +152379,Broadcasting,Broadcasting +152378,Broadcasting,Broadcasting +149858,Broadcasting,Broadcasting +149857,Broadcasting,Broadcasting +149556,Broadcasting,Broadcasting +149536,Broadcasting,Broadcasting +148944,Broadcasting,Broadcasting +148777,Broadcasting,Broadcasting +146073,Broadcasting,Broadcasting +146072,Broadcasting,Broadcasting +146068,Broadcasting,Broadcasting +145577,Broadcasting,Broadcasting +142527,Broadcasting,Broadcasting +142525,Broadcasting,Broadcasting +142523,Broadcasting,Broadcasting +137595,Broadcasting,Broadcasting +137594,Broadcasting,Broadcasting +135977,Broadcasting,Broadcasting +135976,Broadcasting,Broadcasting +133855,Broadcasting,Broadcasting +129146,Broadcasting,Broadcasting +129142,Broadcasting,Broadcasting +121674,Broadcasting,Broadcasting +105415,Broadcasting,Broadcasting +103245,Broadcasting,Broadcasting +102935,Broadcasting,Broadcasting +102934,Broadcasting,Broadcasting +245834,Broadcasting,Broadcasting +245833,Broadcasting,Broadcasting +245832,Broadcasting,Broadcasting +245831,Broadcasting,Broadcasting +245830,Broadcasting,Broadcasting +242189,Broadcasting,Broadcasting +240054,Broadcasting,Broadcasting +240053,Broadcasting,Broadcasting +240052,Broadcasting,Broadcasting +240051,Broadcasting,Broadcasting +240050,Broadcasting,Broadcasting +238069,Broadcasting,Broadcasting +237690,Broadcasting,Broadcasting +231211,Broadcasting,Broadcasting +231091,Broadcasting,Broadcasting +231090,Broadcasting,Broadcasting +230509,Broadcasting,Broadcasting +224349,Broadcasting,Broadcasting +224348,Broadcasting,Broadcasting +224347,Broadcasting,Broadcasting +223577,Broadcasting,Broadcasting +223574,Broadcasting,Broadcasting +223414,Broadcasting,Broadcasting +223411,Broadcasting,Broadcasting +223407,Broadcasting,Broadcasting +218528,Broadcasting,Broadcasting +218527,Broadcasting,Broadcasting +218510,Broadcasting,Broadcasting +218509,Broadcasting,Broadcasting +212322,Broadcasting,Broadcasting +212318,Broadcasting,Broadcasting +212315,Broadcasting,Broadcasting +203987,Broadcasting,Broadcasting +202798,Broadcasting,Broadcasting +202792,Broadcasting,Broadcasting +202787,Broadcasting,Broadcasting +202775,Broadcasting,Broadcasting +199624,Broadcasting,Broadcasting +193094,Broadcasting,Broadcasting +193092,Broadcasting,Broadcasting +193091,Broadcasting,Broadcasting +193090,Broadcasting,Broadcasting +193088,Broadcasting,Broadcasting +193083,Broadcasting,Broadcasting +193076,Broadcasting,Broadcasting +189633,Broadcasting,Broadcasting +189629,Broadcasting,Broadcasting +185912,Broadcasting,Broadcasting +176750,Broadcasting,Broadcasting +176749,Broadcasting,Broadcasting +175768,Broadcasting,Broadcasting +172830,Broadcasting,Broadcasting +172408,Broadcasting,Broadcasting +172407,Broadcasting,Broadcasting +172405,Broadcasting,Broadcasting +172073,Broadcasting,Broadcasting +172072,Broadcasting,Broadcasting +172071,Broadcasting,Broadcasting +172065,Broadcasting,Broadcasting +171384,Broadcasting,Broadcasting +168740,Broadcasting,Broadcasting +168723,Broadcasting,Broadcasting +168686,Broadcasting,Broadcasting +165595,Broadcasting,Broadcasting +165594,Broadcasting,Broadcasting +165592,Broadcasting,Broadcasting +165591,Broadcasting,Broadcasting +165590,Broadcasting,Broadcasting +165588,Broadcasting,Broadcasting +165587,Broadcasting,Broadcasting +163978,Broadcasting,Broadcasting +163969,Broadcasting,Broadcasting +163963,Broadcasting,Broadcasting +163942,Broadcasting,Broadcasting +163940,Broadcasting,Broadcasting +163938,Broadcasting,Broadcasting +162536,Broadcasting,Broadcasting +162534,Broadcasting,Broadcasting +162530,Broadcasting,Broadcasting +162527,Broadcasting,Broadcasting +162522,Broadcasting,Broadcasting +162512,Broadcasting,Broadcasting +162479,Broadcasting,Broadcasting +160777,Broadcasting,Broadcasting +160776,Broadcasting,Broadcasting +400327,Broadcasting,Broadcasting +400326,Broadcasting,Broadcasting +400324,Broadcasting,Broadcasting +400322,Broadcasting,Broadcasting +400320,Broadcasting,Broadcasting +400319,Broadcasting,Broadcasting +400316,Broadcasting,Broadcasting +400314,Broadcasting,Broadcasting +400304,Broadcasting,Broadcasting +398100,Broadcasting,Broadcasting +398099,Broadcasting,Broadcasting +398096,Broadcasting,Broadcasting +398095,Broadcasting,Broadcasting +398094,Broadcasting,Broadcasting +398093,Broadcasting,Broadcasting +398092,Broadcasting,Broadcasting +398091,Broadcasting,Broadcasting +398088,Broadcasting,Broadcasting +395627,Broadcasting,Broadcasting +395626,Broadcasting,Broadcasting +395625,Broadcasting,Broadcasting +389845,Broadcasting,Broadcasting +389843,Broadcasting,Broadcasting +385259,Broadcasting,Broadcasting +378507,Broadcasting,Broadcasting +378506,Broadcasting,Broadcasting +378505,Broadcasting,Broadcasting +378504,Broadcasting,Broadcasting +378503,Broadcasting,Broadcasting +378502,Broadcasting,Broadcasting +378501,Broadcasting,Broadcasting +378500,Broadcasting,Broadcasting +376727,Broadcasting,Broadcasting +376724,Broadcasting,Broadcasting +376723,Broadcasting,Broadcasting +376719,Broadcasting,Broadcasting +376718,Broadcasting,Broadcasting +376717,Broadcasting,Broadcasting +376716,Broadcasting,Broadcasting +376715,Broadcasting,Broadcasting +376711,Broadcasting,Broadcasting +376690,Broadcasting,Broadcasting +376688,Broadcasting,Broadcasting +376687,Broadcasting,Broadcasting +376685,Broadcasting,Broadcasting +376682,Broadcasting,Broadcasting +376680,Broadcasting,Broadcasting +376677,Broadcasting,Broadcasting +376675,Broadcasting,Broadcasting +376671,Broadcasting,Broadcasting +376669,Broadcasting,Broadcasting +376665,Broadcasting,Broadcasting +376659,Broadcasting,Broadcasting +376634,Broadcasting,Broadcasting +376633,Broadcasting,Broadcasting +376631,Broadcasting,Broadcasting +376626,Broadcasting,Broadcasting +376625,Broadcasting,Broadcasting +376624,Broadcasting,Broadcasting +376620,Broadcasting,Broadcasting +376619,Broadcasting,Broadcasting +376617,Broadcasting,Broadcasting +376616,Broadcasting,Broadcasting +376614,Broadcasting,Broadcasting +376612,Broadcasting,Broadcasting +376609,Broadcasting,Broadcasting +376607,Broadcasting,Broadcasting +376602,Broadcasting,Broadcasting +376595,Broadcasting,Broadcasting +376590,Broadcasting,Broadcasting +371646,Broadcasting,Broadcasting +371645,Broadcasting,Broadcasting +371644,Broadcasting,Broadcasting +371643,Broadcasting,Broadcasting +371642,Broadcasting,Broadcasting +371641,Broadcasting,Broadcasting +368479,Broadcasting,Broadcasting +368478,Broadcasting,Broadcasting +368476,Broadcasting,Broadcasting +368475,Broadcasting,Broadcasting +368473,Broadcasting,Broadcasting +368471,Broadcasting,Broadcasting +368470,Broadcasting,Broadcasting +362310,Broadcasting,Broadcasting +359622,Broadcasting,Broadcasting +356223,Broadcasting,Broadcasting +354941,Broadcasting,Broadcasting +354940,Broadcasting,Broadcasting +352585,Broadcasting,Broadcasting +352584,Broadcasting,Broadcasting +352582,Broadcasting,Broadcasting +352581,Broadcasting,Broadcasting +352580,Broadcasting,Broadcasting +350696,Broadcasting,Broadcasting +350695,Broadcasting,Broadcasting +349942,Broadcasting,Broadcasting +349941,Broadcasting,Broadcasting +349940,Broadcasting,Broadcasting +348002,Broadcasting,Broadcasting +348001,Broadcasting,Broadcasting +347201,Broadcasting,Broadcasting +347200,Broadcasting,Broadcasting +347198,Broadcasting,Broadcasting +344617,Broadcasting,Broadcasting +341056,Broadcasting,Broadcasting +341054,Broadcasting,Broadcasting +341053,Broadcasting,Broadcasting +341052,Broadcasting,Broadcasting +341050,Broadcasting,Broadcasting +341049,Broadcasting,Broadcasting +341048,Broadcasting,Broadcasting +335196,Broadcasting,Broadcasting +334845,Broadcasting,Broadcasting +334349,Broadcasting,Broadcasting +334348,Broadcasting,Broadcasting +334347,Broadcasting,Broadcasting +334346,Broadcasting,Broadcasting +334345,Broadcasting,Broadcasting +334344,Broadcasting,Broadcasting +334343,Broadcasting,Broadcasting +334342,Broadcasting,Broadcasting +333116,Broadcasting,Broadcasting +332356,Broadcasting,Broadcasting +332355,Broadcasting,Broadcasting +332354,Broadcasting,Broadcasting +331776,Broadcasting,Broadcasting +331264,Broadcasting,Broadcasting +331091,Broadcasting,Broadcasting +331090,Broadcasting,Broadcasting +331089,Broadcasting,Broadcasting +331088,Broadcasting,Broadcasting +331087,Broadcasting,Broadcasting +331086,Broadcasting,Broadcasting +331085,Broadcasting,Broadcasting +331084,Broadcasting,Broadcasting +330396,Broadcasting,Broadcasting +330395,Broadcasting,Broadcasting +330394,Broadcasting,Broadcasting +330393,Broadcasting,Broadcasting +330392,Broadcasting,Broadcasting +330391,Broadcasting,Broadcasting +330390,Broadcasting,Broadcasting +326752,Broadcasting,Broadcasting +326751,Broadcasting,Broadcasting +325590,Broadcasting,Broadcasting +325359,Broadcasting,Broadcasting +324503,Broadcasting,Broadcasting +324501,Broadcasting,Broadcasting +324499,Broadcasting,Broadcasting +324497,Broadcasting,Broadcasting +324496,Broadcasting,Broadcasting +323169,Broadcasting,Broadcasting +320916,Broadcasting,Broadcasting +320915,Broadcasting,Broadcasting +320914,Broadcasting,Broadcasting +320913,Broadcasting,Broadcasting +320912,Broadcasting,Broadcasting +320911,Broadcasting,Broadcasting +320910,Broadcasting,Broadcasting +320909,Broadcasting,Broadcasting +318233,Broadcasting,Broadcasting +318232,Broadcasting,Broadcasting +318231,Broadcasting,Broadcasting +318230,Broadcasting,Broadcasting +318229,Broadcasting,Broadcasting +318227,Broadcasting,Broadcasting +318226,Broadcasting,Broadcasting +318225,Broadcasting,Broadcasting +318224,Broadcasting,Broadcasting +318223,Broadcasting,Broadcasting +318222,Broadcasting,Broadcasting +318220,Broadcasting,Broadcasting +317789,Broadcasting,Broadcasting +317610,Broadcasting,Broadcasting +317609,Broadcasting,Broadcasting +317171,Broadcasting,Broadcasting +311230,Broadcasting,Broadcasting +302409,Broadcasting,Broadcasting +288029,Broadcasting,Broadcasting +287329,Broadcasting,Broadcasting +281007,Broadcasting,Broadcasting +281006,Broadcasting,Broadcasting +281005,Broadcasting,Broadcasting +281003,Broadcasting,Broadcasting +280999,Broadcasting,Broadcasting +280995,Broadcasting,Broadcasting +275611,Broadcasting,Broadcasting +273912,Broadcasting,Broadcasting +273911,Broadcasting,Broadcasting +273910,Broadcasting,Broadcasting +269670,Broadcasting,Broadcasting +269669,Broadcasting,Broadcasting +264149,Broadcasting,Broadcasting +264148,Broadcasting,Broadcasting +264147,Broadcasting,Broadcasting +264141,Broadcasting,Broadcasting +264135,Broadcasting,Broadcasting +264133,Broadcasting,Broadcasting +257429,Broadcasting,Broadcasting +256989,Broadcasting,Broadcasting +250895,Broadcasting,Broadcasting +250894,Broadcasting,Broadcasting +501497,Broadcasting,Broadcasting +495655,Broadcasting,Broadcasting +495654,Broadcasting,Broadcasting +495653,Broadcasting,Broadcasting +495652,Broadcasting,Broadcasting +495649,Broadcasting,Broadcasting +489711,Broadcasting,Broadcasting +489706,Broadcasting,Broadcasting +488003,Broadcasting,Broadcasting +477584,Broadcasting,Broadcasting +474708,Broadcasting,Broadcasting +466199,Broadcasting,Broadcasting +466189,Broadcasting,Broadcasting +453676,Broadcasting,Broadcasting +443282,Broadcasting,Broadcasting +440157,Broadcasting,Broadcasting +440155,Broadcasting,Broadcasting +440152,Broadcasting,Broadcasting +436682,Broadcasting,Broadcasting +434479,Broadcasting,Broadcasting +434477,Broadcasting,Broadcasting +434452,Broadcasting,Broadcasting +434449,Broadcasting,Broadcasting +434395,Broadcasting,Broadcasting +434393,Broadcasting,Broadcasting +433278,Broadcasting,Broadcasting +433067,Broadcasting,Broadcasting +430257,Broadcasting,Broadcasting +430249,Broadcasting,Broadcasting +430238,Broadcasting,Broadcasting +427341,Broadcasting,Broadcasting +427338,Broadcasting,Broadcasting +425466,Broadcasting,Broadcasting +425463,Broadcasting,Broadcasting +425458,Broadcasting,Broadcasting +424822,Broadcasting,Broadcasting +424821,Broadcasting,Broadcasting +424820,Broadcasting,Broadcasting +424811,Broadcasting,Broadcasting +420683,Broadcasting,Broadcasting +418639,Broadcasting,Broadcasting +417419,Broadcasting,Broadcasting +417418,Broadcasting,Broadcasting +417415,Broadcasting,Broadcasting +417414,Broadcasting,Broadcasting +416151,Broadcasting,Broadcasting +412974,Broadcasting,Broadcasting +409598,Broadcasting,Broadcasting +409581,Broadcasting,Broadcasting +531112,Science and Technology,Science and Technology +496590,Science and Technology,Science and Technology +99197,Science and Technology,Science and Technology +99196,Science and Technology,Science and Technology +99135,Science and Technology,Science and Technology +99134,Science and Technology,Science and Technology +348420,Science and Technology,Science and Technology +348418,Science and Technology,Science and Technology +418507,Science and Technology,Science and Technology +417743,Science and Technology,Science and Technology +413985,Science and Technology,Science and Technology +410834,Science and Technology,Science and Technology +410832,Science and Technology,Science and Technology +405152,Science and Technology,Science and Technology +401384,Science and Technology,Science and Technology +401383,Science and Technology,Science and Technology +393256,Science and Technology,Science and Technology +393254,Science and Technology,Science and Technology +393253,Science and Technology,Science and Technology +385951,Science and Technology,Science and Technology +383363,Science and Technology,Science and Technology +383314,Science and Technology,Science and Technology +383313,Science and Technology,Science and Technology +383312,Science and Technology,Science and Technology +365579,Science and Technology,Science and Technology +357948,Science and Technology,Science and Technology +357944,Science and Technology,Science and Technology +355313,Science and Technology,Science and Technology +355312,Science and Technology,Science and Technology +355310,Science and Technology,Science and Technology +348421,Science and Technology,Science and Technology +464208,Science and Technology,Science and Technology +464207,Science and Technology,Science and Technology +464206,Science and Technology,Science and Technology +464205,Science and Technology,Science and Technology +464200,Science and Technology,Science and Technology +462265,Science and Technology,Science and Technology +459361,Science and Technology,Science and Technology +453088,Science and Technology,Science and Technology +453087,Science and Technology,Science and Technology +447002,Science and Technology,Science and Technology +447000,Science and Technology,Science and Technology +446999,Science and Technology,Science and Technology +444124,Science and Technology,Science and Technology +444121,Science and Technology,Science and Technology +444119,Science and Technology,Science and Technology +441110,Science and Technology,Science and Technology +441107,Science and Technology,Science and Technology +441103,Science and Technology,Science and Technology +439768,Science and Technology,Science and Technology +436356,Science and Technology,Science and Technology +436355,Science and Technology,Science and Technology +436354,Science and Technology,Science and Technology +436353,Science and Technology,Science and Technology +436352,Science and Technology,Science and Technology +432800,Science and Technology,Science and Technology +432799,Science and Technology,Science and Technology +432798,Science and Technology,Science and Technology +420994,Science and Technology,Science and Technology +420993,Science and Technology,Science and Technology +420992,Science and Technology,Science and Technology +420647,Science and Technology,Science and Technology +420646,Science and Technology,Science and Technology +420645,Science and Technology,Science and Technology +544314,Science and Technology,Science and Technology +541801,Science and Technology,Science and Technology +79514,Arts and Culture,Arts and Culture +77723,Arts and Culture,Arts and Culture +93255,Arts and Culture,Arts and Culture +93245,Arts and Culture,Arts and Culture +83125,Arts and Culture,Arts and Culture +83121,Arts and Culture,Arts and Culture +458156,Telecommunications,Telecommunications +458155,Telecommunications,Telecommunications +160777,Telecommunications,Telecommunications +160776,Telecommunications,Telecommunications +158245,Telecommunications,Telecommunications +157628,Telecommunications,Telecommunications +149536,Telecommunications,Telecommunications +108358,Telecommunications,Telecommunications +102415,Telecommunications,Telecommunications +185912,Telecommunications,Telecommunications +172830,Telecommunications,Telecommunications +172408,Telecommunications,Telecommunications +172407,Telecommunications,Telecommunications +172405,Telecommunications,Telecommunications +172073,Telecommunications,Telecommunications +172072,Telecommunications,Telecommunications +172071,Telecommunications,Telecommunications +172065,Telecommunications,Telecommunications +171384,Telecommunications,Telecommunications +168862,Telecommunications,Telecommunications +165595,Telecommunications,Telecommunications +165594,Telecommunications,Telecommunications +165592,Telecommunications,Telecommunications +165591,Telecommunications,Telecommunications +165590,Telecommunications,Telecommunications +163978,Telecommunications,Telecommunications +163969,Telecommunications,Telecommunications +163963,Telecommunications,Telecommunications +163942,Telecommunications,Telecommunications +163940,Telecommunications,Telecommunications +163938,Telecommunications,Telecommunications +162512,Telecommunications,Telecommunications +162479,Telecommunications,Telecommunications +324501,Telecommunications,Telecommunications +324499,Telecommunications,Telecommunications +324497,Telecommunications,Telecommunications +324496,Telecommunications,Telecommunications +320914,Telecommunications,Telecommunications +320911,Telecommunications,Telecommunications +318232,Telecommunications,Telecommunications +318231,Telecommunications,Telecommunications +318230,Telecommunications,Telecommunications +318229,Telecommunications,Telecommunications +318227,Telecommunications,Telecommunications +318226,Telecommunications,Telecommunications +318225,Telecommunications,Telecommunications +318224,Telecommunications,Telecommunications +318223,Telecommunications,Telecommunications +318222,Telecommunications,Telecommunications +318220,Telecommunications,Telecommunications +317789,Telecommunications,Telecommunications +317610,Telecommunications,Telecommunications +317609,Telecommunications,Telecommunications +317171,Telecommunications,Telecommunications +317170,Telecommunications,Telecommunications +250893,Telecommunications,Telecommunications +240052,Telecommunications,Telecommunications +226007,Telecommunications,Telecommunications +223407,Telecommunications,Telecommunications +203987,Telecommunications,Telecommunications +202787,Telecommunications,Telecommunications +199624,Telecommunications,Telecommunications +195807,Telecommunications,Telecommunications +185915,Telecommunications,Telecommunications +380923,Telecommunications,Telecommunications +380921,Telecommunications,Telecommunications +378507,Telecommunications,Telecommunications +378506,Telecommunications,Telecommunications +378505,Telecommunications,Telecommunications +378504,Telecommunications,Telecommunications +378503,Telecommunications,Telecommunications +378502,Telecommunications,Telecommunications +378501,Telecommunications,Telecommunications +378500,Telecommunications,Telecommunications +376727,Telecommunications,Telecommunications +376724,Telecommunications,Telecommunications +376723,Telecommunications,Telecommunications +376719,Telecommunications,Telecommunications +376718,Telecommunications,Telecommunications +376717,Telecommunications,Telecommunications +376716,Telecommunications,Telecommunications +376715,Telecommunications,Telecommunications +376711,Telecommunications,Telecommunications +376690,Telecommunications,Telecommunications +376688,Telecommunications,Telecommunications +376687,Telecommunications,Telecommunications +376685,Telecommunications,Telecommunications +376682,Telecommunications,Telecommunications +376680,Telecommunications,Telecommunications +376677,Telecommunications,Telecommunications +376675,Telecommunications,Telecommunications +376671,Telecommunications,Telecommunications +376669,Telecommunications,Telecommunications +376665,Telecommunications,Telecommunications +376659,Telecommunications,Telecommunications +376634,Telecommunications,Telecommunications +376633,Telecommunications,Telecommunications +376631,Telecommunications,Telecommunications +376626,Telecommunications,Telecommunications +376625,Telecommunications,Telecommunications +376624,Telecommunications,Telecommunications +376620,Telecommunications,Telecommunications +376619,Telecommunications,Telecommunications +376617,Telecommunications,Telecommunications +376616,Telecommunications,Telecommunications +376614,Telecommunications,Telecommunications +376612,Telecommunications,Telecommunications +376609,Telecommunications,Telecommunications +376607,Telecommunications,Telecommunications +376602,Telecommunications,Telecommunications +376595,Telecommunications,Telecommunications +376591,Telecommunications,Telecommunications +376587,Telecommunications,Telecommunications +374544,Telecommunications,Telecommunications +374539,Telecommunications,Telecommunications +371646,Telecommunications,Telecommunications +371645,Telecommunications,Telecommunications +371644,Telecommunications,Telecommunications +371641,Telecommunications,Telecommunications +368479,Telecommunications,Telecommunications +368478,Telecommunications,Telecommunications +366663,Telecommunications,Telecommunications +366662,Telecommunications,Telecommunications +366541,Telecommunications,Telecommunications +366513,Telecommunications,Telecommunications +366510,Telecommunications,Telecommunications +366509,Telecommunications,Telecommunications +366508,Telecommunications,Telecommunications +366507,Telecommunications,Telecommunications +362310,Telecommunications,Telecommunications +362309,Telecommunications,Telecommunications +359622,Telecommunications,Telecommunications +356224,Telecommunications,Telecommunications +356223,Telecommunications,Telecommunications +356222,Telecommunications,Telecommunications +354940,Telecommunications,Telecommunications +352585,Telecommunications,Telecommunications +352584,Telecommunications,Telecommunications +352582,Telecommunications,Telecommunications +352581,Telecommunications,Telecommunications +350696,Telecommunications,Telecommunications +348002,Telecommunications,Telecommunications +348001,Telecommunications,Telecommunications +347199,Telecommunications,Telecommunications +342324,Telecommunications,Telecommunications +341056,Telecommunications,Telecommunications +341054,Telecommunications,Telecommunications +341053,Telecommunications,Telecommunications +341052,Telecommunications,Telecommunications +341050,Telecommunications,Telecommunications +341049,Telecommunications,Telecommunications +341048,Telecommunications,Telecommunications +336793,Telecommunications,Telecommunications +336792,Telecommunications,Telecommunications +336791,Telecommunications,Telecommunications +334846,Telecommunications,Telecommunications +332355,Telecommunications,Telecommunications +332354,Telecommunications,Telecommunications +331776,Telecommunications,Telecommunications +331264,Telecommunications,Telecommunications +330396,Telecommunications,Telecommunications +330395,Telecommunications,Telecommunications +330394,Telecommunications,Telecommunications +330393,Telecommunications,Telecommunications +330392,Telecommunications,Telecommunications +330391,Telecommunications,Telecommunications +330390,Telecommunications,Telecommunications +328990,Telecommunications,Telecommunications +326752,Telecommunications,Telecommunications +326749,Telecommunications,Telecommunications +326391,Telecommunications,Telecommunications +325359,Telecommunications,Telecommunications +325215,Telecommunications,Telecommunications +324503,Telecommunications,Telecommunications +458154,Telecommunications,Telecommunications +456825,Telecommunications,Telecommunications +456824,Telecommunications,Telecommunications +456823,Telecommunications,Telecommunications +456822,Telecommunications,Telecommunications +454000,Telecommunications,Telecommunications +453674,Telecommunications,Telecommunications +453673,Telecommunications,Telecommunications +453672,Telecommunications,Telecommunications +451081,Telecommunications,Telecommunications +451078,Telecommunications,Telecommunications +451077,Telecommunications,Telecommunications +451075,Telecommunications,Telecommunications +451072,Telecommunications,Telecommunications +451070,Telecommunications,Telecommunications +451068,Telecommunications,Telecommunications +451066,Telecommunications,Telecommunications +451065,Telecommunications,Telecommunications +451064,Telecommunications,Telecommunications +448708,Telecommunications,Telecommunications +446985,Telecommunications,Telecommunications +446246,Telecommunications,Telecommunications +446169,Telecommunications,Telecommunications +446168,Telecommunications,Telecommunications +444363,Telecommunications,Telecommunications +444362,Telecommunications,Telecommunications +444297,Telecommunications,Telecommunications +444296,Telecommunications,Telecommunications +444295,Telecommunications,Telecommunications +444294,Telecommunications,Telecommunications +444293,Telecommunications,Telecommunications +444292,Telecommunications,Telecommunications +444291,Telecommunications,Telecommunications +443285,Telecommunications,Telecommunications +443283,Telecommunications,Telecommunications +443123,Telecommunications,Telecommunications +443122,Telecommunications,Telecommunications +443121,Telecommunications,Telecommunications +443120,Telecommunications,Telecommunications +441855,Telecommunications,Telecommunications +441853,Telecommunications,Telecommunications +440157,Telecommunications,Telecommunications +440155,Telecommunications,Telecommunications +440150,Telecommunications,Telecommunications +440149,Telecommunications,Telecommunications +440145,Telecommunications,Telecommunications +440143,Telecommunications,Telecommunications +440134,Telecommunications,Telecommunications +440117,Telecommunications,Telecommunications +440109,Telecommunications,Telecommunications +440107,Telecommunications,Telecommunications +436703,Telecommunications,Telecommunications +436681,Telecommunications,Telecommunications +436680,Telecommunications,Telecommunications +436679,Telecommunications,Telecommunications +436678,Telecommunications,Telecommunications +436677,Telecommunications,Telecommunications +436676,Telecommunications,Telecommunications +436675,Telecommunications,Telecommunications +436674,Telecommunications,Telecommunications +434480,Telecommunications,Telecommunications +434479,Telecommunications,Telecommunications +434476,Telecommunications,Telecommunications +434395,Telecommunications,Telecommunications +434393,Telecommunications,Telecommunications +433278,Telecommunications,Telecommunications +433276,Telecommunications,Telecommunications +433071,Telecommunications,Telecommunications +433070,Telecommunications,Telecommunications +433069,Telecommunications,Telecommunications +433068,Telecommunications,Telecommunications +432031,Telecommunications,Telecommunications +431689,Telecommunications,Telecommunications +431688,Telecommunications,Telecommunications +431687,Telecommunications,Telecommunications +431686,Telecommunications,Telecommunications +431685,Telecommunications,Telecommunications +430266,Telecommunications,Telecommunications +430264,Telecommunications,Telecommunications +430262,Telecommunications,Telecommunications +430260,Telecommunications,Telecommunications +430257,Telecommunications,Telecommunications +430256,Telecommunications,Telecommunications +430254,Telecommunications,Telecommunications +430252,Telecommunications,Telecommunications +430247,Telecommunications,Telecommunications +430243,Telecommunications,Telecommunications +430242,Telecommunications,Telecommunications +430241,Telecommunications,Telecommunications +430240,Telecommunications,Telecommunications +430239,Telecommunications,Telecommunications +430237,Telecommunications,Telecommunications +430236,Telecommunications,Telecommunications +427342,Telecommunications,Telecommunications +427340,Telecommunications,Telecommunications +427338,Telecommunications,Telecommunications +427337,Telecommunications,Telecommunications +427335,Telecommunications,Telecommunications +427334,Telecommunications,Telecommunications +427333,Telecommunications,Telecommunications +425465,Telecommunications,Telecommunications +425464,Telecommunications,Telecommunications +425461,Telecommunications,Telecommunications +425458,Telecommunications,Telecommunications +425456,Telecommunications,Telecommunications +425454,Telecommunications,Telecommunications +425452,Telecommunications,Telecommunications +425449,Telecommunications,Telecommunications +424823,Telecommunications,Telecommunications +424822,Telecommunications,Telecommunications +424819,Telecommunications,Telecommunications +424818,Telecommunications,Telecommunications +424817,Telecommunications,Telecommunications +424816,Telecommunications,Telecommunications +424815,Telecommunications,Telecommunications +424814,Telecommunications,Telecommunications +424813,Telecommunications,Telecommunications +424812,Telecommunications,Telecommunications +424811,Telecommunications,Telecommunications +424810,Telecommunications,Telecommunications +424809,Telecommunications,Telecommunications +424808,Telecommunications,Telecommunications +424807,Telecommunications,Telecommunications +420687,Telecommunications,Telecommunications +420686,Telecommunications,Telecommunications +420685,Telecommunications,Telecommunications +420684,Telecommunications,Telecommunications +420683,Telecommunications,Telecommunications +418661,Telecommunications,Telecommunications +418631,Telecommunications,Telecommunications +417419,Telecommunications,Telecommunications +417417,Telecommunications,Telecommunications +417416,Telecommunications,Telecommunications +417414,Telecommunications,Telecommunications +417413,Telecommunications,Telecommunications +417411,Telecommunications,Telecommunications +417409,Telecommunications,Telecommunications +416170,Telecommunications,Telecommunications +416160,Telecommunications,Telecommunications +416157,Telecommunications,Telecommunications +416134,Telecommunications,Telecommunications +416128,Telecommunications,Telecommunications +416114,Telecommunications,Telecommunications +416063,Telecommunications,Telecommunications +412975,Telecommunications,Telecommunications +412974,Telecommunications,Telecommunications +412973,Telecommunications,Telecommunications +412972,Telecommunications,Telecommunications +409598,Telecommunications,Telecommunications +409589,Telecommunications,Telecommunications +409587,Telecommunications,Telecommunications +407872,Telecommunications,Telecommunications +407871,Telecommunications,Telecommunications +407870,Telecommunications,Telecommunications +406748,Telecommunications,Telecommunications +403113,Telecommunications,Telecommunications +403112,Telecommunications,Telecommunications +403111,Telecommunications,Telecommunications +403109,Telecommunications,Telecommunications +403107,Telecommunications,Telecommunications +403105,Telecommunications,Telecommunications +403104,Telecommunications,Telecommunications +403103,Telecommunications,Telecommunications +400327,Telecommunications,Telecommunications +400326,Telecommunications,Telecommunications +400325,Telecommunications,Telecommunications +400322,Telecommunications,Telecommunications +398100,Telecommunications,Telecommunications +398099,Telecommunications,Telecommunications +398098,Telecommunications,Telecommunications +398096,Telecommunications,Telecommunications +398095,Telecommunications,Telecommunications +398094,Telecommunications,Telecommunications +398093,Telecommunications,Telecommunications +398092,Telecommunications,Telecommunications +398091,Telecommunications,Telecommunications +398089,Telecommunications,Telecommunications +398088,Telecommunications,Telecommunications +398087,Telecommunications,Telecommunications +395627,Telecommunications,Telecommunications +395626,Telecommunications,Telecommunications +395624,Telecommunications,Telecommunications +393774,Telecommunications,Telecommunications +393771,Telecommunications,Telecommunications +393767,Telecommunications,Telecommunications +391237,Telecommunications,Telecommunications +391234,Telecommunications,Telecommunications +390922,Telecommunications,Telecommunications +389845,Telecommunications,Telecommunications +389843,Telecommunications,Telecommunications +389841,Telecommunications,Telecommunications +388372,Telecommunications,Telecommunications +388367,Telecommunications,Telecommunications +385262,Telecommunications,Telecommunications +385260,Telecommunications,Telecommunications +385259,Telecommunications,Telecommunications +383590,Telecommunications,Telecommunications +383589,Telecommunications,Telecommunications +383588,Telecommunications,Telecommunications +382185,Telecommunications,Telecommunications +382184,Telecommunications,Telecommunications +382183,Telecommunications,Telecommunications +382182,Telecommunications,Telecommunications +382181,Telecommunications,Telecommunications +382180,Telecommunications,Telecommunications +382179,Telecommunications,Telecommunications +382178,Telecommunications,Telecommunications +382177,Telecommunications,Telecommunications +382176,Telecommunications,Telecommunications +382175,Telecommunications,Telecommunications +380926,Telecommunications,Telecommunications +380924,Telecommunications,Telecommunications +543479,Telecommunications,Telecommunications +543476,Telecommunications,Telecommunications +543474,Telecommunications,Telecommunications +543472,Telecommunications,Telecommunications +541804,Telecommunications,Telecommunications +540013,Telecommunications,Telecommunications +537867,Telecommunications,Telecommunications +537866,Telecommunications,Telecommunications +534810,Telecommunications,Telecommunications +534809,Telecommunications,Telecommunications +534808,Telecommunications,Telecommunications +534806,Telecommunications,Telecommunications +531617,Telecommunications,Telecommunications +531616,Telecommunications,Telecommunications +531615,Telecommunications,Telecommunications +529218,Telecommunications,Telecommunications +529215,Telecommunications,Telecommunications +526213,Telecommunications,Telecommunications +525901,Telecommunications,Telecommunications +522930,Telecommunications,Telecommunications +522928,Telecommunications,Telecommunications +522920,Telecommunications,Telecommunications +522916,Telecommunications,Telecommunications +519293,Telecommunications,Telecommunications +519292,Telecommunications,Telecommunications +519291,Telecommunications,Telecommunications +519289,Telecommunications,Telecommunications +519288,Telecommunications,Telecommunications +519287,Telecommunications,Telecommunications +519285,Telecommunications,Telecommunications +519283,Telecommunications,Telecommunications +517712,Telecommunications,Telecommunications +514635,Telecommunications,Telecommunications +514576,Telecommunications,Telecommunications +514575,Telecommunications,Telecommunications +514574,Telecommunications,Telecommunications +512928,Telecommunications,Telecommunications +512926,Telecommunications,Telecommunications +510650,Telecommunications,Telecommunications +510649,Telecommunications,Telecommunications +510648,Telecommunications,Telecommunications +510647,Telecommunications,Telecommunications +510646,Telecommunications,Telecommunications +510645,Telecommunications,Telecommunications +510644,Telecommunications,Telecommunications +507913,Telecommunications,Telecommunications +507909,Telecommunications,Telecommunications +507908,Telecommunications,Telecommunications +504169,Telecommunications,Telecommunications +504168,Telecommunications,Telecommunications +504166,Telecommunications,Telecommunications +504165,Telecommunications,Telecommunications +501938,Telecommunications,Telecommunications +501937,Telecommunications,Telecommunications +501936,Telecommunications,Telecommunications +501638,Telecommunications,Telecommunications +501505,Telecommunications,Telecommunications +501504,Telecommunications,Telecommunications +501503,Telecommunications,Telecommunications +501501,Telecommunications,Telecommunications +501500,Telecommunications,Telecommunications +501498,Telecommunications,Telecommunications +501493,Telecommunications,Telecommunications +497948,Telecommunications,Telecommunications +497946,Telecommunications,Telecommunications +497945,Telecommunications,Telecommunications +495651,Telecommunications,Telecommunications +495650,Telecommunications,Telecommunications +495648,Telecommunications,Telecommunications +495647,Telecommunications,Telecommunications +495646,Telecommunications,Telecommunications +492990,Telecommunications,Telecommunications +492987,Telecommunications,Telecommunications +489712,Telecommunications,Telecommunications +489710,Telecommunications,Telecommunications +489708,Telecommunications,Telecommunications +489707,Telecommunications,Telecommunications +488001,Telecommunications,Telecommunications +483909,Telecommunications,Telecommunications +483907,Telecommunications,Telecommunications +481892,Telecommunications,Telecommunications +481416,Telecommunications,Telecommunications +481415,Telecommunications,Telecommunications +481414,Telecommunications,Telecommunications +481412,Telecommunications,Telecommunications +479199,Telecommunications,Telecommunications +478994,Telecommunications,Telecommunications +478993,Telecommunications,Telecommunications +478991,Telecommunications,Telecommunications +478989,Telecommunications,Telecommunications +478988,Telecommunications,Telecommunications +478987,Telecommunications,Telecommunications +478985,Telecommunications,Telecommunications +478984,Telecommunications,Telecommunications +478982,Telecommunications,Telecommunications +478981,Telecommunications,Telecommunications +478980,Telecommunications,Telecommunications +478979,Telecommunications,Telecommunications +478977,Telecommunications,Telecommunications +478431,Telecommunications,Telecommunications +477633,Telecommunications,Telecommunications +477632,Telecommunications,Telecommunications +477631,Telecommunications,Telecommunications +477589,Telecommunications,Telecommunications +477586,Telecommunications,Telecommunications +477581,Telecommunications,Telecommunications +477577,Telecommunications,Telecommunications +477576,Telecommunications,Telecommunications +477575,Telecommunications,Telecommunications +477574,Telecommunications,Telecommunications +477573,Telecommunications,Telecommunications +477571,Telecommunications,Telecommunications +477564,Telecommunications,Telecommunications +477560,Telecommunications,Telecommunications +474712,Telecommunications,Telecommunications +474707,Telecommunications,Telecommunications +474702,Telecommunications,Telecommunications +472818,Telecommunications,Telecommunications +472816,Telecommunications,Telecommunications +472813,Telecommunications,Telecommunications +472812,Telecommunications,Telecommunications +472809,Telecommunications,Telecommunications +472808,Telecommunications,Telecommunications +472805,Telecommunications,Telecommunications +472803,Telecommunications,Telecommunications +472802,Telecommunications,Telecommunications +469642,Telecommunications,Telecommunications +469641,Telecommunications,Telecommunications +469515,Telecommunications,Telecommunications +469509,Telecommunications,Telecommunications +469508,Telecommunications,Telecommunications +469500,Telecommunications,Telecommunications +469499,Telecommunications,Telecommunications +469498,Telecommunications,Telecommunications +469497,Telecommunications,Telecommunications +469496,Telecommunications,Telecommunications +469495,Telecommunications,Telecommunications +469494,Telecommunications,Telecommunications +466210,Telecommunications,Telecommunications +466209,Telecommunications,Telecommunications +466207,Telecommunications,Telecommunications +466206,Telecommunications,Telecommunications +466203,Telecommunications,Telecommunications +466200,Telecommunications,Telecommunications +466199,Telecommunications,Telecommunications +466198,Telecommunications,Telecommunications +466197,Telecommunications,Telecommunications +466195,Telecommunications,Telecommunications +466192,Telecommunications,Telecommunications +466191,Telecommunications,Telecommunications +466188,Telecommunications,Telecommunications +466186,Telecommunications,Telecommunications +466184,Telecommunications,Telecommunications +466181,Telecommunications,Telecommunications +466180,Telecommunications,Telecommunications +466179,Telecommunications,Telecommunications +466177,Telecommunications,Telecommunications +466174,Telecommunications,Telecommunications +463762,Telecommunications,Telecommunications +463761,Telecommunications,Telecommunications +463760,Telecommunications,Telecommunications +463759,Telecommunications,Telecommunications +463758,Telecommunications,Telecommunications +463755,Telecommunications,Telecommunications +463753,Telecommunications,Telecommunications +463752,Telecommunications,Telecommunications +463749,Telecommunications,Telecommunications +463748,Telecommunications,Telecommunications +463746,Telecommunications,Telecommunications +463745,Telecommunications,Telecommunications +463744,Telecommunications,Telecommunications +463743,Telecommunications,Telecommunications +463742,Telecommunications,Telecommunications +463741,Telecommunications,Telecommunications +463740,Telecommunications,Telecommunications +463739,Telecommunications,Telecommunications +462360,Telecommunications,Telecommunications +462359,Telecommunications,Telecommunications +462358,Telecommunications,Telecommunications +462357,Telecommunications,Telecommunications +461717,Telecommunications,Telecommunications +461711,Telecommunications,Telecommunications +461134,Telecommunications,Telecommunications +461133,Telecommunications,Telecommunications +461132,Telecommunications,Telecommunications +461131,Telecommunications,Telecommunications +461129,Telecommunications,Telecommunications +461128,Telecommunications,Telecommunications +460574,Telecommunications,Telecommunications +459192,Telecommunications,Telecommunications +459168,Telecommunications,Telecommunications +459167,Telecommunications,Telecommunications +459166,Telecommunications,Telecommunications +458163,Telecommunications,Telecommunications +458162,Telecommunications,Telecommunications +458161,Telecommunications,Telecommunications +458160,Telecommunications,Telecommunications +433989,Broadcasting,Broadcasting +423460,Broadcasting,Broadcasting +143554,Broadcasting,Broadcasting +121275,Broadcasting,Broadcasting +292889,Broadcasting,Broadcasting +243889,Broadcasting,Broadcasting +222008,Broadcasting,Broadcasting +209107,Broadcasting,Broadcasting +172070,Broadcasting,Broadcasting +392929,Broadcasting,Broadcasting +392928,Broadcasting,Broadcasting +392927,Broadcasting,Broadcasting +392926,Broadcasting,Broadcasting +374261,Broadcasting,Broadcasting +509509,Broadcasting,Broadcasting +509370,Broadcasting,Broadcasting +506097,Broadcasting,Broadcasting +506096,Broadcasting,Broadcasting +501495,Broadcasting,Broadcasting +501494,Broadcasting,Broadcasting +500872,Broadcasting,Broadcasting +500870,Broadcasting,Broadcasting +500869,Broadcasting,Broadcasting +500867,Broadcasting,Broadcasting +500865,Broadcasting,Broadcasting +91934,Broadcasting,Broadcasting +246209,Science and Technology,Science and Technology +246170,Science and Technology,Science and Technology +90260,Science and Technology,Science and Technology +90259,Science and Technology,Science and Technology +90258,Science and Technology,Science and Technology +78538,Science and Technology,Science and Technology +159353,Science and Technology,Science and Technology +159352,Science and Technology,Science and Technology +159351,Science and Technology,Science and Technology +159350,Science and Technology,Science and Technology +159348,Science and Technology,Science and Technology +159346,Science and Technology,Science and Technology +159345,Science and Technology,Science and Technology +159343,Science and Technology,Science and Technology +159342,Science and Technology,Science and Technology +159341,Science and Technology,Science and Technology +145598,Science and Technology,Science and Technology +118414,Science and Technology,Science and Technology +114087,Science and Technology,Science and Technology +109281,Science and Technology,Science and Technology +105715,Science and Technology,Science and Technology +241870,Science and Technology,Science and Technology +231329,Science and Technology,Science and Technology +231309,Science and Technology,Science and Technology +227973,Science and Technology,Science and Technology +225109,Science and Technology,Science and Technology +225107,Science and Technology,Science and Technology +220447,Science and Technology,Science and Technology +208247,Science and Technology,Science and Technology +204648,Science and Technology,Science and Technology +204647,Science and Technology,Science and Technology +204147,Science and Technology,Science and Technology +201217,Science and Technology,Science and Technology +201216,Science and Technology,Science and Technology +201215,Science and Technology,Science and Technology +201214,Science and Technology,Science and Technology +201208,Science and Technology,Science and Technology +195299,Science and Technology,Science and Technology +195295,Science and Technology,Science and Technology +195294,Science and Technology,Science and Technology +195284,Science and Technology,Science and Technology +195275,Science and Technology,Science and Technology +195274,Science and Technology,Science and Technology +195273,Science and Technology,Science and Technology +195272,Science and Technology,Science and Technology +195270,Science and Technology,Science and Technology +195268,Science and Technology,Science and Technology +195267,Science and Technology,Science and Technology +195266,Science and Technology,Science and Technology +195265,Science and Technology,Science and Technology +195264,Science and Technology,Science and Technology +190184,Science and Technology,Science and Technology +190167,Science and Technology,Science and Technology +186824,Science and Technology,Science and Technology +186806,Science and Technology,Science and Technology +186784,Science and Technology,Science and Technology +186744,Science and Technology,Science and Technology +173545,Science and Technology,Science and Technology +169037,Science and Technology,Science and Technology +169033,Science and Technology,Science and Technology +162373,Science and Technology,Science and Technology +162366,Science and Technology,Science and Technology +162338,Science and Technology,Science and Technology +159371,Science and Technology,Science and Technology +159370,Science and Technology,Science and Technology +159369,Science and Technology,Science and Technology +159368,Science and Technology,Science and Technology +159362,Science and Technology,Science and Technology +159356,Science and Technology,Science and Technology +159355,Science and Technology,Science and Technology +159354,Science and Technology,Science and Technology +375126,Science and Technology,Science and Technology +375125,Science and Technology,Science and Technology +375124,Science and Technology,Science and Technology +375123,Science and Technology,Science and Technology +372646,Science and Technology,Science and Technology +372641,Science and Technology,Science and Technology +372633,Science and Technology,Science and Technology +370052,Science and Technology,Science and Technology +370051,Science and Technology,Science and Technology +349613,Science and Technology,Science and Technology +349612,Science and Technology,Science and Technology +349610,Science and Technology,Science and Technology +347896,Science and Technology,Science and Technology +347894,Science and Technology,Science and Technology +330506,Science and Technology,Science and Technology +330505,Science and Technology,Science and Technology +330504,Science and Technology,Science and Technology +328892,Science and Technology,Science and Technology +328891,Science and Technology,Science and Technology +326149,Science and Technology,Science and Technology +319816,Science and Technology,Science and Technology +319814,Science and Technology,Science and Technology +319812,Science and Technology,Science and Technology +313892,Science and Technology,Science and Technology +313891,Science and Technology,Science and Technology +508162,Aboriginal Affairs,Aboriginal Affairs +505289,Aboriginal Affairs,Aboriginal Affairs +86715,Aboriginal Affairs,Aboriginal Affairs +86714,Aboriginal Affairs,Aboriginal Affairs +86695,Aboriginal Affairs,Aboriginal Affairs +86694,Aboriginal Affairs,Aboriginal Affairs +86675,Aboriginal Affairs,Aboriginal Affairs +86658,Aboriginal Affairs,Aboriginal Affairs +86656,Aboriginal Affairs,Aboriginal Affairs +86655,Aboriginal Affairs,Aboriginal Affairs +86654,Aboriginal Affairs,Aboriginal Affairs +86634,Aboriginal Affairs,Aboriginal Affairs +86615,Aboriginal Affairs,Aboriginal Affairs +86614,Aboriginal Affairs,Aboriginal Affairs +134960,Aboriginal Affairs,Aboriginal Affairs +111318,Aboriginal Affairs,Aboriginal Affairs +111315,Aboriginal Affairs,Aboriginal Affairs +111314,Aboriginal Affairs,Aboriginal Affairs +90429,Aboriginal Affairs,Aboriginal Affairs +90423,Aboriginal Affairs,Aboriginal Affairs +177094,Aboriginal Affairs,Aboriginal Affairs +161515,Aboriginal Affairs,Aboriginal Affairs +161510,Aboriginal Affairs,Aboriginal Affairs +161505,Aboriginal Affairs,Aboriginal Affairs +161501,Aboriginal Affairs,Aboriginal Affairs +159360,Aboriginal Affairs,Aboriginal Affairs +223409,Aboriginal Affairs,Aboriginal Affairs +217254,Aboriginal Affairs,Aboriginal Affairs +217229,Aboriginal Affairs,Aboriginal Affairs +217228,Aboriginal Affairs,Aboriginal Affairs +217227,Aboriginal Affairs,Aboriginal Affairs +217188,Aboriginal Affairs,Aboriginal Affairs +217187,Aboriginal Affairs,Aboriginal Affairs +177108,Aboriginal Affairs,Aboriginal Affairs +335763,Aboriginal Affairs,Aboriginal Affairs +335759,Aboriginal Affairs,Aboriginal Affairs +333598,Aboriginal Affairs,Aboriginal Affairs +327437,Aboriginal Affairs,Aboriginal Affairs +324305,Aboriginal Affairs,Aboriginal Affairs +309871,Aboriginal Affairs,Aboriginal Affairs +309861,Aboriginal Affairs,Aboriginal Affairs +309859,Aboriginal Affairs,Aboriginal Affairs +309851,Aboriginal Affairs,Aboriginal Affairs +309825,Aboriginal Affairs,Aboriginal Affairs +309819,Aboriginal Affairs,Aboriginal Affairs +309802,Aboriginal Affairs,Aboriginal Affairs +303628,Aboriginal Affairs,Aboriginal Affairs +291087,Aboriginal Affairs,Aboriginal Affairs +279991,Aboriginal Affairs,Aboriginal Affairs +279987,Aboriginal Affairs,Aboriginal Affairs +264294,Aboriginal Affairs,Aboriginal Affairs +264281,Aboriginal Affairs,Aboriginal Affairs +264278,Aboriginal Affairs,Aboriginal Affairs +256988,Aboriginal Affairs,Aboriginal Affairs +250897,Aboriginal Affairs,Aboriginal Affairs +400044,Aboriginal Affairs,Aboriginal Affairs +400040,Aboriginal Affairs,Aboriginal Affairs +394050,Aboriginal Affairs,Aboriginal Affairs +394039,Aboriginal Affairs,Aboriginal Affairs +390301,Aboriginal Affairs,Aboriginal Affairs +390286,Aboriginal Affairs,Aboriginal Affairs +390277,Aboriginal Affairs,Aboriginal Affairs +390162,Aboriginal Affairs,Aboriginal Affairs +387617,Aboriginal Affairs,Aboriginal Affairs +387614,Aboriginal Affairs,Aboriginal Affairs +384891,Aboriginal Affairs,Aboriginal Affairs +383219,Aboriginal Affairs,Aboriginal Affairs +383207,Aboriginal Affairs,Aboriginal Affairs +382240,Aboriginal Affairs,Aboriginal Affairs +380874,Aboriginal Affairs,Aboriginal Affairs +380862,Aboriginal Affairs,Aboriginal Affairs +380858,Aboriginal Affairs,Aboriginal Affairs +378941,Aboriginal Affairs,Aboriginal Affairs +378832,Aboriginal Affairs,Aboriginal Affairs +378831,Aboriginal Affairs,Aboriginal Affairs +378821,Aboriginal Affairs,Aboriginal Affairs +378816,Aboriginal Affairs,Aboriginal Affairs +378815,Aboriginal Affairs,Aboriginal Affairs +378813,Aboriginal Affairs,Aboriginal Affairs +378812,Aboriginal Affairs,Aboriginal Affairs +378810,Aboriginal Affairs,Aboriginal Affairs +378800,Aboriginal Affairs,Aboriginal Affairs +374316,Aboriginal Affairs,Aboriginal Affairs +374312,Aboriginal Affairs,Aboriginal Affairs +374311,Aboriginal Affairs,Aboriginal Affairs +374304,Aboriginal Affairs,Aboriginal Affairs +374299,Aboriginal Affairs,Aboriginal Affairs +374291,Aboriginal Affairs,Aboriginal Affairs +372366,Aboriginal Affairs,Aboriginal Affairs +372357,Aboriginal Affairs,Aboriginal Affairs +372348,Aboriginal Affairs,Aboriginal Affairs +372347,Aboriginal Affairs,Aboriginal Affairs +368000,Aboriginal Affairs,Aboriginal Affairs +366540,Aboriginal Affairs,Aboriginal Affairs +366536,Aboriginal Affairs,Aboriginal Affairs +365079,Aboriginal Affairs,Aboriginal Affairs +365072,Aboriginal Affairs,Aboriginal Affairs +365061,Aboriginal Affairs,Aboriginal Affairs +365059,Aboriginal Affairs,Aboriginal Affairs +365058,Aboriginal Affairs,Aboriginal Affairs +365051,Aboriginal Affairs,Aboriginal Affairs +365048,Aboriginal Affairs,Aboriginal Affairs +365047,Aboriginal Affairs,Aboriginal Affairs +365046,Aboriginal Affairs,Aboriginal Affairs +359465,Aboriginal Affairs,Aboriginal Affairs +358156,Aboriginal Affairs,Aboriginal Affairs +358151,Aboriginal Affairs,Aboriginal Affairs +356291,Aboriginal Affairs,Aboriginal Affairs +352904,Aboriginal Affairs,Aboriginal Affairs +340977,Aboriginal Affairs,Aboriginal Affairs +340957,Aboriginal Affairs,Aboriginal Affairs +340954,Aboriginal Affairs,Aboriginal Affairs +340948,Aboriginal Affairs,Aboriginal Affairs +340940,Aboriginal Affairs,Aboriginal Affairs +335773,Aboriginal Affairs,Aboriginal Affairs +433603,Aboriginal Affairs,Aboriginal Affairs +430516,Aboriginal Affairs,Aboriginal Affairs +426621,Aboriginal Affairs,Aboriginal Affairs +424163,Aboriginal Affairs,Aboriginal Affairs +424154,Aboriginal Affairs,Aboriginal Affairs +424152,Aboriginal Affairs,Aboriginal Affairs +424142,Aboriginal Affairs,Aboriginal Affairs +424140,Aboriginal Affairs,Aboriginal Affairs +424135,Aboriginal Affairs,Aboriginal Affairs +424108,Aboriginal Affairs,Aboriginal Affairs +424100,Aboriginal Affairs,Aboriginal Affairs +424045,Aboriginal Affairs,Aboriginal Affairs +424039,Aboriginal Affairs,Aboriginal Affairs +415627,Aboriginal Affairs,Aboriginal Affairs +415578,Aboriginal Affairs,Aboriginal Affairs +415575,Aboriginal Affairs,Aboriginal Affairs +415573,Aboriginal Affairs,Aboriginal Affairs +415414,Aboriginal Affairs,Aboriginal Affairs +415407,Aboriginal Affairs,Aboriginal Affairs +415404,Aboriginal Affairs,Aboriginal Affairs +415394,Aboriginal Affairs,Aboriginal Affairs +415391,Aboriginal Affairs,Aboriginal Affairs +415371,Aboriginal Affairs,Aboriginal Affairs +415370,Aboriginal Affairs,Aboriginal Affairs +413602,Aboriginal Affairs,Aboriginal Affairs +413443,Aboriginal Affairs,Aboriginal Affairs +409490,Aboriginal Affairs,Aboriginal Affairs +409484,Aboriginal Affairs,Aboriginal Affairs +409479,Aboriginal Affairs,Aboriginal Affairs +409473,Aboriginal Affairs,Aboriginal Affairs +409470,Aboriginal Affairs,Aboriginal Affairs +409450,Aboriginal Affairs,Aboriginal Affairs +409448,Aboriginal Affairs,Aboriginal Affairs +409404,Aboriginal Affairs,Aboriginal Affairs +406711,Aboriginal Affairs,Aboriginal Affairs +406702,Aboriginal Affairs,Aboriginal Affairs +405569,Aboriginal Affairs,Aboriginal Affairs +403576,Aboriginal Affairs,Aboriginal Affairs +403558,Aboriginal Affairs,Aboriginal Affairs +403556,Aboriginal Affairs,Aboriginal Affairs +403535,Aboriginal Affairs,Aboriginal Affairs +403530,Aboriginal Affairs,Aboriginal Affairs +403342,Aboriginal Affairs,Aboriginal Affairs +403296,Aboriginal Affairs,Aboriginal Affairs +501869,Aboriginal Affairs,Aboriginal Affairs +501839,Aboriginal Affairs,Aboriginal Affairs +498601,Aboriginal Affairs,Aboriginal Affairs +498588,Aboriginal Affairs,Aboriginal Affairs +495775,Aboriginal Affairs,Aboriginal Affairs +495774,Aboriginal Affairs,Aboriginal Affairs +495765,Aboriginal Affairs,Aboriginal Affairs +495763,Aboriginal Affairs,Aboriginal Affairs +495762,Aboriginal Affairs,Aboriginal Affairs +493205,Aboriginal Affairs,Aboriginal Affairs +490118,Aboriginal Affairs,Aboriginal Affairs +490113,Aboriginal Affairs,Aboriginal Affairs +490108,Aboriginal Affairs,Aboriginal Affairs +490103,Aboriginal Affairs,Aboriginal Affairs +490099,Aboriginal Affairs,Aboriginal Affairs +490096,Aboriginal Affairs,Aboriginal Affairs +490095,Aboriginal Affairs,Aboriginal Affairs +490090,Aboriginal Affairs,Aboriginal Affairs +490087,Aboriginal Affairs,Aboriginal Affairs +490084,Aboriginal Affairs,Aboriginal Affairs +490082,Aboriginal Affairs,Aboriginal Affairs +487297,Aboriginal Affairs,Aboriginal Affairs +487281,Aboriginal Affairs,Aboriginal Affairs +485060,Aboriginal Affairs,Aboriginal Affairs +485011,Aboriginal Affairs,Aboriginal Affairs +482183,Aboriginal Affairs,Aboriginal Affairs +482154,Aboriginal Affairs,Aboriginal Affairs +479912,Aboriginal Affairs,Aboriginal Affairs +479863,Aboriginal Affairs,Aboriginal Affairs +475341,Aboriginal Affairs,Aboriginal Affairs +470411,Aboriginal Affairs,Aboriginal Affairs +470381,Aboriginal Affairs,Aboriginal Affairs +470379,Aboriginal Affairs,Aboriginal Affairs +467509,Aboriginal Affairs,Aboriginal Affairs +467497,Aboriginal Affairs,Aboriginal Affairs +467459,Aboriginal Affairs,Aboriginal Affairs +462580,Aboriginal Affairs,Aboriginal Affairs +461340,Aboriginal Affairs,Aboriginal Affairs +461307,Aboriginal Affairs,Aboriginal Affairs +461306,Aboriginal Affairs,Aboriginal Affairs +461289,Aboriginal Affairs,Aboriginal Affairs +461285,Aboriginal Affairs,Aboriginal Affairs +457291,Aboriginal Affairs,Aboriginal Affairs +457290,Aboriginal Affairs,Aboriginal Affairs +455226,Aboriginal Affairs,Aboriginal Affairs +452562,Aboriginal Affairs,Aboriginal Affairs +452507,Aboriginal Affairs,Aboriginal Affairs +449325,Aboriginal Affairs,Aboriginal Affairs +448079,Aboriginal Affairs,Aboriginal Affairs +447847,Aboriginal Affairs,Aboriginal Affairs +444970,Aboriginal Affairs,Aboriginal Affairs +441981,Aboriginal Affairs,Aboriginal Affairs +441787,Aboriginal Affairs,Aboriginal Affairs +441786,Aboriginal Affairs,Aboriginal Affairs +441785,Aboriginal Affairs,Aboriginal Affairs +441729,Aboriginal Affairs,Aboriginal Affairs +441721,Aboriginal Affairs,Aboriginal Affairs +441720,Aboriginal Affairs,Aboriginal Affairs +441719,Aboriginal Affairs,Aboriginal Affairs +441718,Aboriginal Affairs,Aboriginal Affairs +543663,Aboriginal Affairs,Aboriginal Affairs +543657,Aboriginal Affairs,Aboriginal Affairs +538143,Aboriginal Affairs,Aboriginal Affairs +528255,Aboriginal Affairs,Aboriginal Affairs +528231,Aboriginal Affairs,Aboriginal Affairs +526215,Aboriginal Affairs,Aboriginal Affairs +522399,Aboriginal Affairs,Aboriginal Affairs +519224,Aboriginal Affairs,Aboriginal Affairs +519221,Aboriginal Affairs,Aboriginal Affairs +517942,Aboriginal Affairs,Aboriginal Affairs +517869,Aboriginal Affairs,Aboriginal Affairs +517864,Aboriginal Affairs,Aboriginal Affairs +517469,Aboriginal Affairs,Aboriginal Affairs +517154,Aboriginal Affairs,Aboriginal Affairs +517152,Aboriginal Affairs,Aboriginal Affairs +517148,Aboriginal Affairs,Aboriginal Affairs +517146,Aboriginal Affairs,Aboriginal Affairs +510814,Aboriginal Affairs,Aboriginal Affairs +510808,Aboriginal Affairs,Aboriginal Affairs +509540,Aboriginal Affairs,Aboriginal Affairs +517828,Science and Technology,Science and Technology +517155,Science and Technology,Science and Technology +161506,Science and Technology,Science and Technology +309818,Science and Technology,Science and Technology +309815,Science and Technology,Science and Technology +309812,Science and Technology,Science and Technology +309811,Science and Technology,Science and Technology +309809,Science and Technology,Science and Technology +271727,Science and Technology,Science and Technology +271719,Science and Technology,Science and Technology +266689,Science and Technology,Science and Technology +387688,Science and Technology,Science and Technology +387685,Science and Technology,Science and Technology +387683,Science and Technology,Science and Technology +387682,Science and Technology,Science and Technology +387681,Science and Technology,Science and Technology +384942,Science and Technology,Science and Technology +384929,Science and Technology,Science and Technology +384928,Science and Technology,Science and Technology +384926,Science and Technology,Science and Technology +384907,Science and Technology,Science and Technology +383219,Science and Technology,Science and Technology +383211,Science and Technology,Science and Technology +383207,Science and Technology,Science and Technology +383203,Science and Technology,Science and Technology +380872,Science and Technology,Science and Technology +380867,Science and Technology,Science and Technology +380863,Science and Technology,Science and Technology +378941,Science and Technology,Science and Technology +378821,Science and Technology,Science and Technology +378816,Science and Technology,Science and Technology +378812,Science and Technology,Science and Technology +378806,Science and Technology,Science and Technology +374304,Science and Technology,Science and Technology +374291,Science and Technology,Science and Technology +372387,Science and Technology,Science and Technology +366535,Science and Technology,Science and Technology +365080,Science and Technology,Science and Technology +365061,Science and Technology,Science and Technology +343898,Science and Technology,Science and Technology +340997,Science and Technology,Science and Technology +327442,Science and Technology,Science and Technology +461332,Science and Technology,Science and Technology +421850,Science and Technology,Science and Technology +421846,Science and Technology,Science and Technology +421779,Science and Technology,Science and Technology +419168,Science and Technology,Science and Technology +419165,Science and Technology,Science and Technology +419163,Science and Technology,Science and Technology +419161,Science and Technology,Science and Technology +419152,Science and Technology,Science and Technology +419141,Science and Technology,Science and Technology +419128,Science and Technology,Science and Technology +419123,Science and Technology,Science and Technology +409452,Science and Technology,Science and Technology +406702,Science and Technology,Science and Technology +405578,Science and Technology,Science and Technology +405449,Science and Technology,Science and Technology +405398,Science and Technology,Science and Technology +403621,Science and Technology,Science and Technology +403576,Science and Technology,Science and Technology +403320,Science and Technology,Science and Technology +403297,Science and Technology,Science and Technology +400062,Science and Technology,Science and Technology +400054,Science and Technology,Science and Technology +400042,Science and Technology,Science and Technology +398349,Science and Technology,Science and Technology +396594,Science and Technology,Science and Technology +396568,Science and Technology,Science and Technology +396563,Science and Technology,Science and Technology +396559,Science and Technology,Science and Technology +394032,Science and Technology,Science and Technology +394028,Science and Technology,Science and Technology +390395,Science and Technology,Science and Technology +390338,Science and Technology,Science and Technology +390334,Science and Technology,Science and Technology +390305,Science and Technology,Science and Technology +390294,Science and Technology,Science and Technology +390286,Science and Technology,Science and Technology +390277,Science and Technology,Science and Technology +390167,Science and Technology,Science and Technology +390146,Science and Technology,Science and Technology +390131,Science and Technology,Science and Technology +390127,Science and Technology,Science and Technology +390126,Science and Technology,Science and Technology +390124,Science and Technology,Science and Technology +390121,Science and Technology,Science and Technology +390118,Science and Technology,Science and Technology +387689,Science and Technology,Science and Technology +528255,Science and Technology,Science and Technology +517907,Science and Technology,Science and Technology +517902,Science and Technology,Science and Technology +517836,Science and Technology,Science and Technology +150243,Arts and Culture,Arts and Culture +148648,Arts and Culture,Arts and Culture +148648,Broadcasting,Broadcasting +148645,Broadcasting,Broadcasting +217776,Telecommunications,Telecommunications +217775,Telecommunications,Telecommunications +122314,Telecommunications,Telecommunications +111676,Telecommunications,Telecommunications +111675,Telecommunications,Telecommunications +211918,Telecommunications,Telecommunications +202689,Telecommunications,Telecommunications +200020,Telecommunications,Telecommunications +200019,Telecommunications,Telecommunications +193925,Telecommunications,Telecommunications +189247,Telecommunications,Telecommunications +189157,Telecommunications,Telecommunications +179284,Telecommunications,Telecommunications +179224,Telecommunications,Telecommunications +179204,Telecommunications,Telecommunications +175307,Telecommunications,Telecommunications +145316,Telecommunications,Telecommunications +136714,Telecommunications,Telecommunications +125934,Telecommunications,Telecommunications +327230,Telecommunications,Telecommunications +296511,Telecommunications,Telecommunications +280970,Telecommunications,Telecommunications +264078,Telecommunications,Telecommunications +258991,Telecommunications,Telecommunications +250118,Telecommunications,Telecommunications +236432,Telecommunications,Telecommunications +230242,Telecommunications,Telecommunications +225588,Telecommunications,Telecommunications +225568,Telecommunications,Telecommunications +322531,Aboriginal Affairs,Aboriginal Affairs +322529,Aboriginal Affairs,Aboriginal Affairs +91798,Aboriginal Affairs,Aboriginal Affairs +91796,Aboriginal Affairs,Aboriginal Affairs +77704,Aboriginal Affairs,Aboriginal Affairs +77703,Aboriginal Affairs,Aboriginal Affairs +77702,Aboriginal Affairs,Aboriginal Affairs +77700,Aboriginal Affairs,Aboriginal Affairs +77699,Aboriginal Affairs,Aboriginal Affairs +77698,Aboriginal Affairs,Aboriginal Affairs +77697,Aboriginal Affairs,Aboriginal Affairs +77695,Aboriginal Affairs,Aboriginal Affairs +91795,Aboriginal Affairs,Aboriginal Affairs +91794,Aboriginal Affairs,Aboriginal Affairs +77713,Aboriginal Affairs,Aboriginal Affairs +77712,Aboriginal Affairs,Aboriginal Affairs +77711,Aboriginal Affairs,Aboriginal Affairs +77710,Aboriginal Affairs,Aboriginal Affairs +77709,Aboriginal Affairs,Aboriginal Affairs +77708,Aboriginal Affairs,Aboriginal Affairs +77707,Aboriginal Affairs,Aboriginal Affairs +77706,Aboriginal Affairs,Aboriginal Affairs +101434,Telecommunications,Telecommunications +451225,Science and Technology,Science and Technology +451224,Science and Technology,Science and Technology +350863,Science and Technology,Science and Technology +350862,Science and Technology,Science and Technology +349118,Science and Technology,Science and Technology +347221,Science and Technology,Science and Technology +343523,Science and Technology,Science and Technology +335230,Science and Technology,Science and Technology +335229,Science and Technology,Science and Technology +326651,Science and Technology,Science and Technology +326650,Science and Technology,Science and Technology +326649,Science and Technology,Science and Technology +319148,Science and Technology,Science and Technology +315129,Science and Technology,Science and Technology +313450,Science and Technology,Science and Technology +290851,Science and Technology,Science and Technology +277070,Science and Technology,Science and Technology +270970,Science and Technology,Science and Technology +270969,Science and Technology,Science and Technology +259252,Science and Technology,Science and Technology +250489,Science and Technology,Science and Technology +238929,Science and Technology,Science and Technology +230255,Science and Technology,Science and Technology +220788,Science and Technology,Science and Technology +220787,Science and Technology,Science and Technology +207608,Science and Technology,Science and Technology +207567,Science and Technology,Science and Technology +202700,Science and Technology,Science and Technology +202697,Science and Technology,Science and Technology +200254,Science and Technology,Science and Technology +200139,Science and Technology,Science and Technology +199817,Science and Technology,Science and Technology +193429,Science and Technology,Science and Technology +193428,Science and Technology,Science and Technology +193427,Science and Technology,Science and Technology +193426,Science and Technology,Science and Technology +193425,Science and Technology,Science and Technology +193424,Science and Technology,Science and Technology +188738,Science and Technology,Science and Technology +171918,Science and Technology,Science and Technology +171504,Science and Technology,Science and Technology +170149,Science and Technology,Science and Technology +170146,Science and Technology,Science and Technology +170145,Science and Technology,Science and Technology +166430,Science and Technology,Science and Technology +165310,Science and Technology,Science and Technology +165309,Science and Technology,Science and Technology +165308,Science and Technology,Science and Technology +165306,Science and Technology,Science and Technology +165305,Science and Technology,Science and Technology +165304,Science and Technology,Science and Technology +165303,Science and Technology,Science and Technology +165302,Science and Technology,Science and Technology +165301,Science and Technology,Science and Technology +165300,Science and Technology,Science and Technology +428019,Science and Technology,Science and Technology +425842,Science and Technology,Science and Technology +425841,Science and Technology,Science and Technology +425840,Science and Technology,Science and Technology +421704,Science and Technology,Science and Technology +421701,Science and Technology,Science and Technology +421697,Science and Technology,Science and Technology +421693,Science and Technology,Science and Technology +415261,Science and Technology,Science and Technology +415259,Science and Technology,Science and Technology +415257,Science and Technology,Science and Technology +415256,Science and Technology,Science and Technology +405904,Science and Technology,Science and Technology +401726,Science and Technology,Science and Technology +401719,Science and Technology,Science and Technology +395166,Science and Technology,Science and Technology +395083,Science and Technology,Science and Technology +394143,Science and Technology,Science and Technology +394138,Science and Technology,Science and Technology +393082,Science and Technology,Science and Technology +393081,Science and Technology,Science and Technology +393072,Science and Technology,Science and Technology +393071,Science and Technology,Science and Technology +390074,Science and Technology,Science and Technology +389642,Science and Technology,Science and Technology +389136,Science and Technology,Science and Technology +389105,Science and Technology,Science and Technology +389104,Science and Technology,Science and Technology +389103,Science and Technology,Science and Technology +389102,Science and Technology,Science and Technology +389101,Science and Technology,Science and Technology +387569,Science and Technology,Science and Technology +384966,Science and Technology,Science and Technology +384961,Science and Technology,Science and Technology +384960,Science and Technology,Science and Technology +384959,Science and Technology,Science and Technology +383596,Science and Technology,Science and Technology +383595,Science and Technology,Science and Technology +383594,Science and Technology,Science and Technology +383592,Science and Technology,Science and Technology +381916,Science and Technology,Science and Technology +381915,Science and Technology,Science and Technology +381122,Science and Technology,Science and Technology +379041,Science and Technology,Science and Technology +373153,Science and Technology,Science and Technology +373152,Science and Technology,Science and Technology +373151,Science and Technology,Science and Technology +373144,Science and Technology,Science and Technology +373141,Science and Technology,Science and Technology +373133,Science and Technology,Science and Technology +369387,Science and Technology,Science and Technology +369386,Science and Technology,Science and Technology +369385,Science and Technology,Science and Technology +365642,Science and Technology,Science and Technology +364482,Science and Technology,Science and Technology +486820,Telecommunications,Telecommunications +486596,Telecommunications,Telecommunications +163246,Telecommunications,Telecommunications +163245,Telecommunications,Telecommunications +157634,Telecommunications,Telecommunications +157633,Telecommunications,Telecommunications +157629,Telecommunications,Telecommunications +154067,Telecommunications,Telecommunications +154066,Telecommunications,Telecommunications +140738,Telecommunications,Telecommunications +103577,Telecommunications,Telecommunications +308152,Telecommunications,Telecommunications +308143,Telecommunications,Telecommunications +293949,Telecommunications,Telecommunications +278936,Telecommunications,Telecommunications +254850,Telecommunications,Telecommunications +203870,Telecommunications,Telecommunications +203869,Telecommunications,Telecommunications +203868,Telecommunications,Telecommunications +200296,Telecommunications,Telecommunications +200263,Telecommunications,Telecommunications +200230,Telecommunications,Telecommunications +196516,Telecommunications,Telecommunications +196514,Telecommunications,Telecommunications +196508,Telecommunications,Telecommunications +196507,Telecommunications,Telecommunications +180682,Telecommunications,Telecommunications +180681,Telecommunications,Telecommunications +175766,Telecommunications,Telecommunications +171287,Telecommunications,Telecommunications +171264,Telecommunications,Telecommunications +166429,Telecommunications,Telecommunications +166428,Telecommunications,Telecommunications +446162,Telecommunications,Telecommunications +446161,Telecommunications,Telecommunications +446115,Telecommunications,Telecommunications +446059,Telecommunications,Telecommunications +446058,Telecommunications,Telecommunications +445936,Telecommunications,Telecommunications +445354,Telecommunications,Telecommunications +445154,Telecommunications,Telecommunications +445046,Telecommunications,Telecommunications +444755,Telecommunications,Telecommunications +444702,Telecommunications,Telecommunications +444479,Telecommunications,Telecommunications +444457,Telecommunications,Telecommunications +444425,Telecommunications,Telecommunications +444424,Telecommunications,Telecommunications +444384,Telecommunications,Telecommunications +444383,Telecommunications,Telecommunications +444355,Telecommunications,Telecommunications +444306,Telecommunications,Telecommunications +444257,Telecommunications,Telecommunications +444197,Telecommunications,Telecommunications +444193,Telecommunications,Telecommunications +444097,Telecommunications,Telecommunications +444021,Telecommunications,Telecommunications +443263,Telecommunications,Telecommunications +443006,Telecommunications,Telecommunications +442999,Telecommunications,Telecommunications +442998,Telecommunications,Telecommunications +442983,Telecommunications,Telecommunications +442959,Telecommunications,Telecommunications +442274,Telecommunications,Telecommunications +441278,Telecommunications,Telecommunications +441004,Telecommunications,Telecommunications +440199,Telecommunications,Telecommunications +439824,Telecommunications,Telecommunications +435214,Telecommunications,Telecommunications +435210,Telecommunications,Telecommunications +435204,Telecommunications,Telecommunications +431858,Telecommunications,Telecommunications +426740,Telecommunications,Telecommunications +417256,Telecommunications,Telecommunications +407134,Telecommunications,Telecommunications +394263,Telecommunications,Telecommunications +369122,Telecommunications,Telecommunications +362431,Telecommunications,Telecommunications +341987,Telecommunications,Telecommunications +335831,Telecommunications,Telecommunications +335533,Telecommunications,Telecommunications +331598,Telecommunications,Telecommunications +322410,Telecommunications,Telecommunications +322409,Telecommunications,Telecommunications +486293,Telecommunications,Telecommunications +486222,Telecommunications,Telecommunications +486182,Telecommunications,Telecommunications +486181,Telecommunications,Telecommunications +486044,Telecommunications,Telecommunications +485961,Telecommunications,Telecommunications +485702,Telecommunications,Telecommunications +485698,Telecommunications,Telecommunications +485684,Telecommunications,Telecommunications +485677,Telecommunications,Telecommunications +485673,Telecommunications,Telecommunications +485639,Telecommunications,Telecommunications +485528,Telecommunications,Telecommunications +485464,Telecommunications,Telecommunications +484768,Telecommunications,Telecommunications +483781,Telecommunications,Telecommunications +483459,Telecommunications,Telecommunications +482901,Telecommunications,Telecommunications +482874,Telecommunications,Telecommunications +482869,Telecommunications,Telecommunications +482853,Telecommunications,Telecommunications +482787,Telecommunications,Telecommunications +482682,Telecommunications,Telecommunications +482670,Telecommunications,Telecommunications +482661,Telecommunications,Telecommunications +482643,Telecommunications,Telecommunications +482226,Telecommunications,Telecommunications +481727,Telecommunications,Telecommunications +481372,Telecommunications,Telecommunications +481140,Telecommunications,Telecommunications +480925,Telecommunications,Telecommunications +480878,Telecommunications,Telecommunications +480827,Telecommunications,Telecommunications +480794,Telecommunications,Telecommunications +480789,Telecommunications,Telecommunications +480783,Telecommunications,Telecommunications +480780,Telecommunications,Telecommunications +480721,Telecommunications,Telecommunications +480717,Telecommunications,Telecommunications +480715,Telecommunications,Telecommunications +480649,Telecommunications,Telecommunications +480490,Telecommunications,Telecommunications +480459,Telecommunications,Telecommunications +480404,Telecommunications,Telecommunications +479825,Telecommunications,Telecommunications +479404,Telecommunications,Telecommunications +479198,Telecommunications,Telecommunications +478963,Telecommunications,Telecommunications +478827,Telecommunications,Telecommunications +478740,Telecommunications,Telecommunications +478703,Telecommunications,Telecommunications +478698,Telecommunications,Telecommunications +478546,Telecommunications,Telecommunications +478537,Telecommunications,Telecommunications +478405,Telecommunications,Telecommunications +478359,Telecommunications,Telecommunications +477637,Telecommunications,Telecommunications +476886,Telecommunications,Telecommunications +476579,Telecommunications,Telecommunications +476517,Telecommunications,Telecommunications +476512,Telecommunications,Telecommunications +476454,Telecommunications,Telecommunications +476439,Telecommunications,Telecommunications +476356,Telecommunications,Telecommunications +476270,Telecommunications,Telecommunications +476229,Telecommunications,Telecommunications +476195,Telecommunications,Telecommunications +475110,Telecommunications,Telecommunications +474842,Telecommunications,Telecommunications +474765,Telecommunications,Telecommunications +474568,Telecommunications,Telecommunications +474213,Telecommunications,Telecommunications +474143,Telecommunications,Telecommunications +474119,Telecommunications,Telecommunications +474006,Telecommunications,Telecommunications +474003,Telecommunications,Telecommunications +473974,Telecommunications,Telecommunications +473930,Telecommunications,Telecommunications +472317,Telecommunications,Telecommunications +472232,Telecommunications,Telecommunications +472059,Telecommunications,Telecommunications +472056,Telecommunications,Telecommunications +472055,Telecommunications,Telecommunications +472054,Telecommunications,Telecommunications +472036,Telecommunications,Telecommunications +471966,Telecommunications,Telecommunications +471904,Telecommunications,Telecommunications +471820,Telecommunications,Telecommunications +471719,Telecommunications,Telecommunications +471685,Telecommunications,Telecommunications +471656,Telecommunications,Telecommunications +471654,Telecommunications,Telecommunications +471638,Telecommunications,Telecommunications +471551,Telecommunications,Telecommunications +471535,Telecommunications,Telecommunications +471468,Telecommunications,Telecommunications +471367,Telecommunications,Telecommunications +471364,Telecommunications,Telecommunications +471359,Telecommunications,Telecommunications +471345,Telecommunications,Telecommunications +470931,Telecommunications,Telecommunications +469450,Telecommunications,Telecommunications +468995,Telecommunications,Telecommunications +466874,Telecommunications,Telecommunications +466670,Telecommunications,Telecommunications +466018,Telecommunications,Telecommunications +465990,Telecommunications,Telecommunications +465498,Telecommunications,Telecommunications +465441,Telecommunications,Telecommunications +465305,Telecommunications,Telecommunications +465304,Telecommunications,Telecommunications +465282,Telecommunications,Telecommunications +464144,Telecommunications,Telecommunications +464007,Telecommunications,Telecommunications +464006,Telecommunications,Telecommunications +463422,Telecommunications,Telecommunications +463230,Telecommunications,Telecommunications +463066,Telecommunications,Telecommunications +462942,Telecommunications,Telecommunications +462556,Telecommunications,Telecommunications +462202,Telecommunications,Telecommunications +462042,Telecommunications,Telecommunications +461880,Telecommunications,Telecommunications +460852,Telecommunications,Telecommunications +460269,Telecommunications,Telecommunications +460033,Telecommunications,Telecommunications +459888,Telecommunications,Telecommunications +459859,Telecommunications,Telecommunications +458636,Telecommunications,Telecommunications +458420,Telecommunications,Telecommunications +458211,Telecommunications,Telecommunications +458180,Telecommunications,Telecommunications +457872,Telecommunications,Telecommunications +457867,Telecommunications,Telecommunications +457864,Telecommunications,Telecommunications +457857,Telecommunications,Telecommunications +457583,Telecommunications,Telecommunications +456939,Telecommunications,Telecommunications +456827,Telecommunications,Telecommunications +456686,Telecommunications,Telecommunications +456674,Telecommunications,Telecommunications +456671,Telecommunications,Telecommunications +456609,Telecommunications,Telecommunications +456603,Telecommunications,Telecommunications +456577,Telecommunications,Telecommunications +456472,Telecommunications,Telecommunications +456463,Telecommunications,Telecommunications +456402,Telecommunications,Telecommunications +456331,Telecommunications,Telecommunications +456330,Telecommunications,Telecommunications +456106,Telecommunications,Telecommunications +456083,Telecommunications,Telecommunications +455557,Telecommunications,Telecommunications +455201,Telecommunications,Telecommunications +454814,Telecommunications,Telecommunications +454656,Telecommunications,Telecommunications +454567,Telecommunications,Telecommunications +454566,Telecommunications,Telecommunications +454565,Telecommunications,Telecommunications +454564,Telecommunications,Telecommunications +454122,Telecommunications,Telecommunications +453933,Telecommunications,Telecommunications +453744,Telecommunications,Telecommunications +453743,Telecommunications,Telecommunications +453742,Telecommunications,Telecommunications +453741,Telecommunications,Telecommunications +453740,Telecommunications,Telecommunications +453739,Telecommunications,Telecommunications +453738,Telecommunications,Telecommunications +453705,Telecommunications,Telecommunications +453677,Telecommunications,Telecommunications +453667,Telecommunications,Telecommunications +453602,Telecommunications,Telecommunications +453122,Telecommunications,Telecommunications +453067,Telecommunications,Telecommunications +453066,Telecommunications,Telecommunications +451688,Telecommunications,Telecommunications +451686,Telecommunications,Telecommunications +451685,Telecommunications,Telecommunications +451617,Telecommunications,Telecommunications +451565,Telecommunications,Telecommunications +451405,Telecommunications,Telecommunications +451403,Telecommunications,Telecommunications +451255,Telecommunications,Telecommunications +451191,Telecommunications,Telecommunications +451155,Telecommunications,Telecommunications +451154,Telecommunications,Telecommunications +450950,Telecommunications,Telecommunications +450887,Telecommunications,Telecommunications +450886,Telecommunications,Telecommunications +450885,Telecommunications,Telecommunications +450847,Telecommunications,Telecommunications +450842,Telecommunications,Telecommunications +450743,Telecommunications,Telecommunications +450739,Telecommunications,Telecommunications +450684,Telecommunications,Telecommunications +450648,Telecommunications,Telecommunications +450394,Telecommunications,Telecommunications +450205,Telecommunications,Telecommunications +450204,Telecommunications,Telecommunications +449984,Telecommunications,Telecommunications +449849,Telecommunications,Telecommunications +449159,Telecommunications,Telecommunications +449127,Telecommunications,Telecommunications +449087,Telecommunications,Telecommunications +448969,Telecommunications,Telecommunications +448611,Telecommunications,Telecommunications +448593,Telecommunications,Telecommunications +448561,Telecommunications,Telecommunications +448431,Telecommunications,Telecommunications +447320,Telecommunications,Telecommunications +447065,Telecommunications,Telecommunications +446768,Telecommunications,Telecommunications +446725,Telecommunications,Telecommunications +446657,Telecommunications,Telecommunications +446612,Telecommunications,Telecommunications +446552,Telecommunications,Telecommunications +543674,Telecommunications,Telecommunications +543671,Telecommunications,Telecommunications +542752,Telecommunications,Telecommunications +542276,Telecommunications,Telecommunications +542121,Telecommunications,Telecommunications +541428,Telecommunications,Telecommunications +541261,Telecommunications,Telecommunications +540953,Telecommunications,Telecommunications +540695,Telecommunications,Telecommunications +540541,Telecommunications,Telecommunications +540511,Telecommunications,Telecommunications +540423,Telecommunications,Telecommunications +540310,Telecommunications,Telecommunications +538990,Telecommunications,Telecommunications +538637,Telecommunications,Telecommunications +537501,Telecommunications,Telecommunications +537472,Telecommunications,Telecommunications +536553,Telecommunications,Telecommunications +536396,Telecommunications,Telecommunications +536181,Telecommunications,Telecommunications +536180,Telecommunications,Telecommunications +536132,Telecommunications,Telecommunications +535972,Telecommunications,Telecommunications +533239,Telecommunications,Telecommunications +532252,Telecommunications,Telecommunications +532103,Telecommunications,Telecommunications +531536,Telecommunications,Telecommunications +530852,Telecommunications,Telecommunications +530730,Telecommunications,Telecommunications +530143,Telecommunications,Telecommunications +530056,Telecommunications,Telecommunications +528331,Telecommunications,Telecommunications +527840,Telecommunications,Telecommunications +527726,Telecommunications,Telecommunications +527468,Telecommunications,Telecommunications +527452,Telecommunications,Telecommunications +527311,Telecommunications,Telecommunications +526808,Telecommunications,Telecommunications +526806,Telecommunications,Telecommunications +526745,Telecommunications,Telecommunications +524800,Telecommunications,Telecommunications +524694,Telecommunications,Telecommunications +524474,Telecommunications,Telecommunications +523995,Telecommunications,Telecommunications +523894,Telecommunications,Telecommunications +523884,Telecommunications,Telecommunications +523741,Telecommunications,Telecommunications +523662,Telecommunications,Telecommunications +523543,Telecommunications,Telecommunications +523397,Telecommunications,Telecommunications +520887,Telecommunications,Telecommunications +520743,Telecommunications,Telecommunications +520701,Telecommunications,Telecommunications +520653,Telecommunications,Telecommunications +520549,Telecommunications,Telecommunications +520360,Telecommunications,Telecommunications +519636,Telecommunications,Telecommunications +519104,Telecommunications,Telecommunications +519045,Telecommunications,Telecommunications +518826,Telecommunications,Telecommunications +518388,Telecommunications,Telecommunications +516586,Telecommunications,Telecommunications +516316,Telecommunications,Telecommunications +516224,Telecommunications,Telecommunications +516180,Telecommunications,Telecommunications +516154,Telecommunications,Telecommunications +516127,Telecommunications,Telecommunications +515435,Telecommunications,Telecommunications +515399,Telecommunications,Telecommunications +515073,Telecommunications,Telecommunications +514917,Telecommunications,Telecommunications +513555,Telecommunications,Telecommunications +513550,Telecommunications,Telecommunications +513533,Telecommunications,Telecommunications +513525,Telecommunications,Telecommunications +513512,Telecommunications,Telecommunications +513364,Telecommunications,Telecommunications +512496,Telecommunications,Telecommunications +512467,Telecommunications,Telecommunications +512313,Telecommunications,Telecommunications +512048,Telecommunications,Telecommunications +512041,Telecommunications,Telecommunications +511960,Telecommunications,Telecommunications +511919,Telecommunications,Telecommunications +511918,Telecommunications,Telecommunications +511781,Telecommunications,Telecommunications +511778,Telecommunications,Telecommunications +511774,Telecommunications,Telecommunications +511759,Telecommunications,Telecommunications +511758,Telecommunications,Telecommunications +511698,Telecommunications,Telecommunications +511697,Telecommunications,Telecommunications +511620,Telecommunications,Telecommunications +511557,Telecommunications,Telecommunications +511075,Telecommunications,Telecommunications +509529,Telecommunications,Telecommunications +509385,Telecommunications,Telecommunications +509263,Telecommunications,Telecommunications +509232,Telecommunications,Telecommunications +509162,Telecommunications,Telecommunications +507201,Telecommunications,Telecommunications +507054,Telecommunications,Telecommunications +506951,Telecommunications,Telecommunications +506896,Telecommunications,Telecommunications +506894,Telecommunications,Telecommunications +506474,Telecommunications,Telecommunications +506443,Telecommunications,Telecommunications +506417,Telecommunications,Telecommunications +506414,Telecommunications,Telecommunications +506399,Telecommunications,Telecommunications +506389,Telecommunications,Telecommunications +506368,Telecommunications,Telecommunications +506360,Telecommunications,Telecommunications +506358,Telecommunications,Telecommunications +506194,Telecommunications,Telecommunications +506180,Telecommunications,Telecommunications +506162,Telecommunications,Telecommunications +506131,Telecommunications,Telecommunications +506107,Telecommunications,Telecommunications +506079,Telecommunications,Telecommunications +505044,Telecommunications,Telecommunications +504004,Telecommunications,Telecommunications +503747,Telecommunications,Telecommunications +503458,Telecommunications,Telecommunications +503324,Telecommunications,Telecommunications +503298,Telecommunications,Telecommunications +503181,Telecommunications,Telecommunications +503164,Telecommunications,Telecommunications +502981,Telecommunications,Telecommunications +502768,Telecommunications,Telecommunications +501721,Telecommunications,Telecommunications +501265,Telecommunications,Telecommunications +501208,Telecommunications,Telecommunications +501006,Telecommunications,Telecommunications +500732,Telecommunications,Telecommunications +500452,Telecommunications,Telecommunications +500179,Telecommunications,Telecommunications +500095,Telecommunications,Telecommunications +500082,Telecommunications,Telecommunications +499959,Telecommunications,Telecommunications +499958,Telecommunications,Telecommunications +499924,Telecommunications,Telecommunications +499856,Telecommunications,Telecommunications +499783,Telecommunications,Telecommunications +499400,Telecommunications,Telecommunications +499265,Telecommunications,Telecommunications +498563,Telecommunications,Telecommunications +497907,Telecommunications,Telecommunications +497835,Telecommunications,Telecommunications +497642,Telecommunications,Telecommunications +497457,Telecommunications,Telecommunications +497313,Telecommunications,Telecommunications +496944,Telecommunications,Telecommunications +496835,Telecommunications,Telecommunications +496832,Telecommunications,Telecommunications +496718,Telecommunications,Telecommunications +496577,Telecommunications,Telecommunications +496558,Telecommunications,Telecommunications +496556,Telecommunications,Telecommunications +496555,Telecommunications,Telecommunications +496141,Telecommunications,Telecommunications +495263,Telecommunications,Telecommunications +495034,Telecommunications,Telecommunications +494419,Telecommunications,Telecommunications +494364,Telecommunications,Telecommunications +494356,Telecommunications,Telecommunications +494350,Telecommunications,Telecommunications +494260,Telecommunications,Telecommunications +494200,Telecommunications,Telecommunications +494116,Telecommunications,Telecommunications +494083,Telecommunications,Telecommunications +494072,Telecommunications,Telecommunications +494027,Telecommunications,Telecommunications +493993,Telecommunications,Telecommunications +493968,Telecommunications,Telecommunications +493935,Telecommunications,Telecommunications +493914,Telecommunications,Telecommunications +493895,Telecommunications,Telecommunications +493786,Telecommunications,Telecommunications +493469,Telecommunications,Telecommunications +492878,Telecommunications,Telecommunications +492476,Telecommunications,Telecommunications +492090,Telecommunications,Telecommunications +492053,Telecommunications,Telecommunications +490259,Telecommunications,Telecommunications +490038,Telecommunications,Telecommunications +489807,Telecommunications,Telecommunications +489806,Telecommunications,Telecommunications +489605,Telecommunications,Telecommunications +489351,Telecommunications,Telecommunications +489062,Telecommunications,Telecommunications +488915,Telecommunications,Telecommunications +488839,Telecommunications,Telecommunications +488692,Telecommunications,Telecommunications +488610,Telecommunications,Telecommunications +488603,Telecommunications,Telecommunications +488511,Telecommunications,Telecommunications +488459,Telecommunications,Telecommunications +488249,Telecommunications,Telecommunications +196860,Aboriginal Affairs,Aboriginal Affairs +451208,Aboriginal Affairs,Aboriginal Affairs +158274,Aboriginal Affairs,Aboriginal Affairs +158273,Aboriginal Affairs,Aboriginal Affairs +158271,Aboriginal Affairs,Aboriginal Affairs +158270,Aboriginal Affairs,Aboriginal Affairs +158269,Aboriginal Affairs,Aboriginal Affairs +158268,Aboriginal Affairs,Aboriginal Affairs +158267,Aboriginal Affairs,Aboriginal Affairs +158266,Aboriginal Affairs,Aboriginal Affairs +158265,Aboriginal Affairs,Aboriginal Affairs +158264,Aboriginal Affairs,Aboriginal Affairs +158262,Aboriginal Affairs,Aboriginal Affairs +158261,Aboriginal Affairs,Aboriginal Affairs +158260,Aboriginal Affairs,Aboriginal Affairs +158259,Aboriginal Affairs,Aboriginal Affairs +158258,Aboriginal Affairs,Aboriginal Affairs +158257,Aboriginal Affairs,Aboriginal Affairs +158256,Aboriginal Affairs,Aboriginal Affairs +158255,Aboriginal Affairs,Aboriginal Affairs +158254,Aboriginal Affairs,Aboriginal Affairs +158253,Aboriginal Affairs,Aboriginal Affairs +158252,Aboriginal Affairs,Aboriginal Affairs +158251,Aboriginal Affairs,Aboriginal Affairs +158250,Aboriginal Affairs,Aboriginal Affairs +158249,Aboriginal Affairs,Aboriginal Affairs +158248,Aboriginal Affairs,Aboriginal Affairs +157814,Aboriginal Affairs,Aboriginal Affairs +196859,Aboriginal Affairs,Aboriginal Affairs +196858,Aboriginal Affairs,Aboriginal Affairs +196856,Aboriginal Affairs,Aboriginal Affairs +196855,Aboriginal Affairs,Aboriginal Affairs +196854,Aboriginal Affairs,Aboriginal Affairs +196853,Aboriginal Affairs,Aboriginal Affairs +196852,Aboriginal Affairs,Aboriginal Affairs +196851,Aboriginal Affairs,Aboriginal Affairs +196850,Aboriginal Affairs,Aboriginal Affairs +196849,Aboriginal Affairs,Aboriginal Affairs +196847,Aboriginal Affairs,Aboriginal Affairs +196846,Aboriginal Affairs,Aboriginal Affairs +196845,Aboriginal Affairs,Aboriginal Affairs +196844,Aboriginal Affairs,Aboriginal Affairs +196843,Aboriginal Affairs,Aboriginal Affairs +196842,Aboriginal Affairs,Aboriginal Affairs +196841,Aboriginal Affairs,Aboriginal Affairs +196839,Aboriginal Affairs,Aboriginal Affairs +196838,Aboriginal Affairs,Aboriginal Affairs +196836,Aboriginal Affairs,Aboriginal Affairs +196834,Aboriginal Affairs,Aboriginal Affairs +159157,Aboriginal Affairs,Aboriginal Affairs +158305,Aboriginal Affairs,Aboriginal Affairs +158304,Aboriginal Affairs,Aboriginal Affairs +158303,Aboriginal Affairs,Aboriginal Affairs +158302,Aboriginal Affairs,Aboriginal Affairs +158301,Aboriginal Affairs,Aboriginal Affairs +158300,Aboriginal Affairs,Aboriginal Affairs +158299,Aboriginal Affairs,Aboriginal Affairs +158298,Aboriginal Affairs,Aboriginal Affairs +158297,Aboriginal Affairs,Aboriginal Affairs +158296,Aboriginal Affairs,Aboriginal Affairs +158295,Aboriginal Affairs,Aboriginal Affairs +158294,Aboriginal Affairs,Aboriginal Affairs +158293,Aboriginal Affairs,Aboriginal Affairs +158292,Aboriginal Affairs,Aboriginal Affairs +158291,Aboriginal Affairs,Aboriginal Affairs +158290,Aboriginal Affairs,Aboriginal Affairs +158289,Aboriginal Affairs,Aboriginal Affairs +158288,Aboriginal Affairs,Aboriginal Affairs +158287,Aboriginal Affairs,Aboriginal Affairs +158282,Aboriginal Affairs,Aboriginal Affairs +158280,Aboriginal Affairs,Aboriginal Affairs +158279,Aboriginal Affairs,Aboriginal Affairs +158276,Aboriginal Affairs,Aboriginal Affairs +244013,Aboriginal Affairs,Aboriginal Affairs +244009,Aboriginal Affairs,Aboriginal Affairs +243307,Aboriginal Affairs,Aboriginal Affairs +243304,Aboriginal Affairs,Aboriginal Affairs +243303,Aboriginal Affairs,Aboriginal Affairs +243302,Aboriginal Affairs,Aboriginal Affairs +243301,Aboriginal Affairs,Aboriginal Affairs +243300,Aboriginal Affairs,Aboriginal Affairs +243299,Aboriginal Affairs,Aboriginal Affairs +243298,Aboriginal Affairs,Aboriginal Affairs +243297,Aboriginal Affairs,Aboriginal Affairs +243296,Aboriginal Affairs,Aboriginal Affairs +243295,Aboriginal Affairs,Aboriginal Affairs +243294,Aboriginal Affairs,Aboriginal Affairs +243293,Aboriginal Affairs,Aboriginal Affairs +243292,Aboriginal Affairs,Aboriginal Affairs +243290,Aboriginal Affairs,Aboriginal Affairs +243289,Aboriginal Affairs,Aboriginal Affairs +243217,Aboriginal Affairs,Aboriginal Affairs +243216,Aboriginal Affairs,Aboriginal Affairs +243215,Aboriginal Affairs,Aboriginal Affairs +243214,Aboriginal Affairs,Aboriginal Affairs +243213,Aboriginal Affairs,Aboriginal Affairs +243212,Aboriginal Affairs,Aboriginal Affairs +243211,Aboriginal Affairs,Aboriginal Affairs +243210,Aboriginal Affairs,Aboriginal Affairs +243209,Aboriginal Affairs,Aboriginal Affairs +243208,Aboriginal Affairs,Aboriginal Affairs +243207,Aboriginal Affairs,Aboriginal Affairs +243206,Aboriginal Affairs,Aboriginal Affairs +243205,Aboriginal Affairs,Aboriginal Affairs +209829,Aboriginal Affairs,Aboriginal Affairs +209828,Aboriginal Affairs,Aboriginal Affairs +197142,Aboriginal Affairs,Aboriginal Affairs +197140,Aboriginal Affairs,Aboriginal Affairs +197139,Aboriginal Affairs,Aboriginal Affairs +197136,Aboriginal Affairs,Aboriginal Affairs +196882,Aboriginal Affairs,Aboriginal Affairs +196881,Aboriginal Affairs,Aboriginal Affairs +196880,Aboriginal Affairs,Aboriginal Affairs +196879,Aboriginal Affairs,Aboriginal Affairs +196878,Aboriginal Affairs,Aboriginal Affairs +196877,Aboriginal Affairs,Aboriginal Affairs +196876,Aboriginal Affairs,Aboriginal Affairs +196875,Aboriginal Affairs,Aboriginal Affairs +196874,Aboriginal Affairs,Aboriginal Affairs +196873,Aboriginal Affairs,Aboriginal Affairs +196872,Aboriginal Affairs,Aboriginal Affairs +196871,Aboriginal Affairs,Aboriginal Affairs +196870,Aboriginal Affairs,Aboriginal Affairs +196865,Aboriginal Affairs,Aboriginal Affairs +196864,Aboriginal Affairs,Aboriginal Affairs +196863,Aboriginal Affairs,Aboriginal Affairs +243196,Science and Technology,Science and Technology +243195,Science and Technology,Science and Technology +158276,Science and Technology,Science and Technology +158274,Science and Technology,Science and Technology +158273,Science and Technology,Science and Technology +158271,Science and Technology,Science and Technology +158270,Science and Technology,Science and Technology +158269,Science and Technology,Science and Technology +158268,Science and Technology,Science and Technology +158267,Science and Technology,Science and Technology +158266,Science and Technology,Science and Technology +158265,Science and Technology,Science and Technology +158264,Science and Technology,Science and Technology +158262,Science and Technology,Science and Technology +158261,Science and Technology,Science and Technology +158260,Science and Technology,Science and Technology +158259,Science and Technology,Science and Technology +158258,Science and Technology,Science and Technology +158257,Science and Technology,Science and Technology +158256,Science and Technology,Science and Technology +158255,Science and Technology,Science and Technology +158254,Science and Technology,Science and Technology +158253,Science and Technology,Science and Technology +158252,Science and Technology,Science and Technology +158251,Science and Technology,Science and Technology +158250,Science and Technology,Science and Technology +158249,Science and Technology,Science and Technology +158248,Science and Technology,Science and Technology +157814,Science and Technology,Science and Technology +243194,Science and Technology,Science and Technology +243193,Science and Technology,Science and Technology +243192,Science and Technology,Science and Technology +243191,Science and Technology,Science and Technology +243189,Science and Technology,Science and Technology +197142,Science and Technology,Science and Technology +197140,Science and Technology,Science and Technology +197139,Science and Technology,Science and Technology +197136,Science and Technology,Science and Technology +196882,Science and Technology,Science and Technology +196881,Science and Technology,Science and Technology +196880,Science and Technology,Science and Technology +196879,Science and Technology,Science and Technology +196878,Science and Technology,Science and Technology +196877,Science and Technology,Science and Technology +196876,Science and Technology,Science and Technology +196875,Science and Technology,Science and Technology +196874,Science and Technology,Science and Technology +196873,Science and Technology,Science and Technology +196872,Science and Technology,Science and Technology +196871,Science and Technology,Science and Technology +196870,Science and Technology,Science and Technology +196865,Science and Technology,Science and Technology +196864,Science and Technology,Science and Technology +196863,Science and Technology,Science and Technology +196862,Science and Technology,Science and Technology +196860,Science and Technology,Science and Technology +196859,Science and Technology,Science and Technology +196858,Science and Technology,Science and Technology +196856,Science and Technology,Science and Technology +196855,Science and Technology,Science and Technology +196854,Science and Technology,Science and Technology +196853,Science and Technology,Science and Technology +196852,Science and Technology,Science and Technology +196851,Science and Technology,Science and Technology +196850,Science and Technology,Science and Technology +196849,Science and Technology,Science and Technology +196847,Science and Technology,Science and Technology +196846,Science and Technology,Science and Technology +196845,Science and Technology,Science and Technology +196844,Science and Technology,Science and Technology +196843,Science and Technology,Science and Technology +196842,Science and Technology,Science and Technology +196841,Science and Technology,Science and Technology +196839,Science and Technology,Science and Technology +196838,Science and Technology,Science and Technology +196836,Science and Technology,Science and Technology +196834,Science and Technology,Science and Technology +159157,Science and Technology,Science and Technology +158287,Science and Technology,Science and Technology +158282,Science and Technology,Science and Technology +158280,Science and Technology,Science and Technology +158279,Science and Technology,Science and Technology +244013,Science and Technology,Science and Technology +244009,Science and Technology,Science and Technology +243307,Science and Technology,Science and Technology +243304,Science and Technology,Science and Technology +243303,Science and Technology,Science and Technology +243302,Science and Technology,Science and Technology +243301,Science and Technology,Science and Technology +243300,Science and Technology,Science and Technology +243299,Science and Technology,Science and Technology +243298,Science and Technology,Science and Technology +243297,Science and Technology,Science and Technology +243296,Science and Technology,Science and Technology +243295,Science and Technology,Science and Technology +243294,Science and Technology,Science and Technology +243293,Science and Technology,Science and Technology +243292,Science and Technology,Science and Technology +243290,Science and Technology,Science and Technology +243289,Science and Technology,Science and Technology +243217,Science and Technology,Science and Technology +243216,Science and Technology,Science and Technology +243215,Science and Technology,Science and Technology +243214,Science and Technology,Science and Technology +243213,Science and Technology,Science and Technology +243212,Science and Technology,Science and Technology +243211,Science and Technology,Science and Technology +243210,Science and Technology,Science and Technology +243209,Science and Technology,Science and Technology +243208,Science and Technology,Science and Technology +243207,Science and Technology,Science and Technology +243206,Science and Technology,Science and Technology +243205,Science and Technology,Science and Technology +243204,Science and Technology,Science and Technology +243203,Science and Technology,Science and Technology +243202,Science and Technology,Science and Technology +243200,Science and Technology,Science and Technology +243199,Science and Technology,Science and Technology +243198,Science and Technology,Science and Technology +393261,Science and Technology,Science and Technology +393192,Science and Technology,Science and Technology +151798,Science and Technology,Science and Technology +136016,Science and Technology,Science and Technology +355484,Science and Technology,Science and Technology +350240,Science and Technology,Science and Technology +340717,Science and Technology,Science and Technology +335061,Science and Technology,Science and Technology +334910,Science and Technology,Science and Technology +334069,Science and Technology,Science and Technology +328970,Science and Technology,Science and Technology +328775,Science and Technology,Science and Technology +328771,Science and Technology,Science and Technology +326590,Science and Technology,Science and Technology +326584,Science and Technology,Science and Technology +323231,Science and Technology,Science and Technology +320731,Science and Technology,Science and Technology +402220,Science and Technology,Science and Technology +533672,Science and Technology,Science and Technology +484391,Aboriginal Affairs,Aboriginal Affairs +479352,Aboriginal Affairs,Aboriginal Affairs +207140,Aboriginal Affairs,Aboriginal Affairs +207138,Aboriginal Affairs,Aboriginal Affairs +207131,Aboriginal Affairs,Aboriginal Affairs +202292,Aboriginal Affairs,Aboriginal Affairs +202291,Aboriginal Affairs,Aboriginal Affairs +202290,Aboriginal Affairs,Aboriginal Affairs +199746,Aboriginal Affairs,Aboriginal Affairs +199744,Aboriginal Affairs,Aboriginal Affairs +199742,Aboriginal Affairs,Aboriginal Affairs +199740,Aboriginal Affairs,Aboriginal Affairs +199738,Aboriginal Affairs,Aboriginal Affairs +199737,Aboriginal Affairs,Aboriginal Affairs +189103,Aboriginal Affairs,Aboriginal Affairs +185527,Aboriginal Affairs,Aboriginal Affairs +177705,Aboriginal Affairs,Aboriginal Affairs +177704,Aboriginal Affairs,Aboriginal Affairs +177686,Aboriginal Affairs,Aboriginal Affairs +177685,Aboriginal Affairs,Aboriginal Affairs +177684,Aboriginal Affairs,Aboriginal Affairs +171040,Aboriginal Affairs,Aboriginal Affairs +171039,Aboriginal Affairs,Aboriginal Affairs +171035,Aboriginal Affairs,Aboriginal Affairs +171030,Aboriginal Affairs,Aboriginal Affairs +171027,Aboriginal Affairs,Aboriginal Affairs +171023,Aboriginal Affairs,Aboriginal Affairs +338085,Aboriginal Affairs,Aboriginal Affairs +217597,Aboriginal Affairs,Aboriginal Affairs +217592,Aboriginal Affairs,Aboriginal Affairs +217589,Aboriginal Affairs,Aboriginal Affairs +211960,Aboriginal Affairs,Aboriginal Affairs +211959,Aboriginal Affairs,Aboriginal Affairs +211954,Aboriginal Affairs,Aboriginal Affairs +211952,Aboriginal Affairs,Aboriginal Affairs +464606,Aboriginal Affairs,Aboriginal Affairs +464604,Aboriginal Affairs,Aboriginal Affairs +407852,Aboriginal Affairs,Aboriginal Affairs +407849,Aboriginal Affairs,Aboriginal Affairs +396599,Aboriginal Affairs,Aboriginal Affairs +392387,Aboriginal Affairs,Aboriginal Affairs +534930,Aboriginal Affairs,Aboriginal Affairs +501630,Aboriginal Affairs,Aboriginal Affairs +493285,Aboriginal Affairs,Aboriginal Affairs +491230,Aboriginal Affairs,Aboriginal Affairs +375979,Science and Technology,Science and Technology +233400,Science and Technology,Science and Technology +77375,Science and Technology,Science and Technology +189103,Science and Technology,Science and Technology +177725,Science and Technology,Science and Technology +177705,Science and Technology,Science and Technology +109995,Aboriginal Affairs,Aboriginal Affairs +473004,Arts and Culture,Arts and Culture +462204,Arts and Culture,Arts and Culture +100926,Arts and Culture,Arts and Culture +378390,Arts and Culture,Arts and Culture +377658,Arts and Culture,Arts and Culture +377657,Arts and Culture,Arts and Culture +377656,Arts and Culture,Arts and Culture +377655,Arts and Culture,Arts and Culture +375813,Arts and Culture,Arts and Culture +364506,Arts and Culture,Arts and Culture +352943,Arts and Culture,Arts and Culture +350727,Arts and Culture,Arts and Culture +458619,Arts and Culture,Arts and Culture +456364,Arts and Culture,Arts and Culture +456363,Arts and Culture,Arts and Culture +455776,Arts and Culture,Arts and Culture +455773,Arts and Culture,Arts and Culture +454636,Arts and Culture,Arts and Culture +454635,Arts and Culture,Arts and Culture +434282,Arts and Culture,Arts and Culture +434281,Arts and Culture,Arts and Culture +428409,Arts and Culture,Arts and Culture +422821,Arts and Culture,Arts and Culture +422818,Arts and Culture,Arts and Culture +402280,Arts and Culture,Arts and Culture +402278,Arts and Culture,Arts and Culture +401418,Arts and Culture,Arts and Culture +401388,Arts and Culture,Arts and Culture +386316,Arts and Culture,Arts and Culture +384313,Arts and Culture,Arts and Culture +384311,Arts and Culture,Arts and Culture +382867,Arts and Culture,Arts and Culture +382866,Arts and Culture,Arts and Culture +382142,Arts and Culture,Arts and Culture +380296,Arts and Culture,Arts and Culture +544526,Arts and Culture,Arts and Culture +543224,Arts and Culture,Arts and Culture +542943,Arts and Culture,Arts and Culture +542351,Arts and Culture,Arts and Culture +541609,Arts and Culture,Arts and Culture +541247,Arts and Culture,Arts and Culture +540908,Arts and Culture,Arts and Culture +540907,Arts and Culture,Arts and Culture +540906,Arts and Culture,Arts and Culture +539003,Arts and Culture,Arts and Culture +539002,Arts and Culture,Arts and Culture +537347,Arts and Culture,Arts and Culture +533761,Arts and Culture,Arts and Culture +533485,Arts and Culture,Arts and Culture +532735,Arts and Culture,Arts and Culture +528099,Arts and Culture,Arts and Culture +527115,Arts and Culture,Arts and Culture +527114,Arts and Culture,Arts and Culture +524951,Arts and Culture,Arts and Culture +524948,Arts and Culture,Arts and Culture +524947,Arts and Culture,Arts and Culture +524940,Arts and Culture,Arts and Culture +524087,Arts and Culture,Arts and Culture +524086,Arts and Culture,Arts and Culture +523742,Arts and Culture,Arts and Culture +521852,Arts and Culture,Arts and Culture +521850,Arts and Culture,Arts and Culture +521846,Arts and Culture,Arts and Culture +520699,Arts and Culture,Arts and Culture +520698,Arts and Culture,Arts and Culture +520697,Arts and Culture,Arts and Culture +518898,Arts and Culture,Arts and Culture +518698,Arts and Culture,Arts and Culture +518697,Arts and Culture,Arts and Culture +518696,Arts and Culture,Arts and Culture +516679,Arts and Culture,Arts and Culture +508121,Arts and Culture,Arts and Culture +508118,Arts and Culture,Arts and Culture +508113,Arts and Culture,Arts and Culture +508106,Arts and Culture,Arts and Culture +508099,Arts and Culture,Arts and Culture +503134,Arts and Culture,Arts and Culture +501671,Arts and Culture,Arts and Culture +501670,Arts and Culture,Arts and Culture +501669,Arts and Culture,Arts and Culture +501668,Arts and Culture,Arts and Culture +500163,Arts and Culture,Arts and Culture +497314,Arts and Culture,Arts and Culture +497311,Arts and Culture,Arts and Culture +492140,Arts and Culture,Arts and Culture +486299,Arts and Culture,Arts and Culture +486169,Arts and Culture,Arts and Culture +486134,Arts and Culture,Arts and Culture +482722,Arts and Culture,Arts and Culture +480841,Arts and Culture,Arts and Culture +478601,Arts and Culture,Arts and Culture +478506,Arts and Culture,Arts and Culture +478505,Arts and Culture,Arts and Culture +476499,Arts and Culture,Arts and Culture +476498,Arts and Culture,Arts and Culture +476497,Arts and Culture,Arts and Culture +476123,Arts and Culture,Arts and Culture +474674,Arts and Culture,Arts and Culture +474473,Arts and Culture,Arts and Culture +474472,Arts and Culture,Arts and Culture +474471,Arts and Culture,Arts and Culture +473023,Arts and Culture,Arts and Culture +473019,Arts and Culture,Arts and Culture +473013,Arts and Culture,Arts and Culture +533485,Broadcasting,Broadcasting +532735,Broadcasting,Broadcasting +528099,Broadcasting,Broadcasting +527115,Broadcasting,Broadcasting +527114,Broadcasting,Broadcasting +524951,Broadcasting,Broadcasting +524948,Broadcasting,Broadcasting +524947,Broadcasting,Broadcasting +524940,Broadcasting,Broadcasting +524087,Broadcasting,Broadcasting +524086,Broadcasting,Broadcasting +523742,Broadcasting,Broadcasting +521852,Broadcasting,Broadcasting +521850,Broadcasting,Broadcasting +521846,Broadcasting,Broadcasting +520699,Broadcasting,Broadcasting +520698,Broadcasting,Broadcasting +520697,Broadcasting,Broadcasting +518898,Broadcasting,Broadcasting +518698,Broadcasting,Broadcasting +518697,Broadcasting,Broadcasting +518696,Broadcasting,Broadcasting +516679,Broadcasting,Broadcasting +508121,Broadcasting,Broadcasting +508118,Broadcasting,Broadcasting +508113,Broadcasting,Broadcasting +508106,Broadcasting,Broadcasting +508099,Broadcasting,Broadcasting +503134,Broadcasting,Broadcasting +501671,Broadcasting,Broadcasting +501670,Broadcasting,Broadcasting +501669,Broadcasting,Broadcasting +501668,Broadcasting,Broadcasting +500089,Broadcasting,Broadcasting +497314,Broadcasting,Broadcasting +497311,Broadcasting,Broadcasting +497308,Broadcasting,Broadcasting +497307,Broadcasting,Broadcasting +497306,Broadcasting,Broadcasting +497302,Broadcasting,Broadcasting +495606,Broadcasting,Broadcasting +495605,Broadcasting,Broadcasting +492140,Broadcasting,Broadcasting +486299,Broadcasting,Broadcasting +486169,Broadcasting,Broadcasting +486134,Broadcasting,Broadcasting +482722,Broadcasting,Broadcasting +480841,Broadcasting,Broadcasting +476499,Broadcasting,Broadcasting +473008,Broadcasting,Broadcasting +473004,Broadcasting,Broadcasting +462204,Broadcasting,Broadcasting +458619,Broadcasting,Broadcasting +428409,Broadcasting,Broadcasting +401388,Broadcasting,Broadcasting +358644,Broadcasting,Broadcasting +544526,Broadcasting,Broadcasting +543224,Broadcasting,Broadcasting +542943,Broadcasting,Broadcasting +542351,Broadcasting,Broadcasting +541609,Broadcasting,Broadcasting +541247,Broadcasting,Broadcasting +540908,Broadcasting,Broadcasting +540907,Broadcasting,Broadcasting +540906,Broadcasting,Broadcasting +539003,Broadcasting,Broadcasting +539002,Broadcasting,Broadcasting +537347,Broadcasting,Broadcasting +508106,Telecommunications,Telecommunications +508099,Telecommunications,Telecommunications +301149,Broadcasting,Broadcasting +77694,Arts and Culture,Arts and Culture +478198,Aboriginal Affairs,Aboriginal Affairs +454910,Aboriginal Affairs,Aboriginal Affairs +269550,Aboriginal Affairs,Aboriginal Affairs +250683,Aboriginal Affairs,Aboriginal Affairs +245311,Aboriginal Affairs,Aboriginal Affairs +200570,Aboriginal Affairs,Aboriginal Affairs +200567,Aboriginal Affairs,Aboriginal Affairs +372751,Aboriginal Affairs,Aboriginal Affairs +372722,Aboriginal Affairs,Aboriginal Affairs +369047,Aboriginal Affairs,Aboriginal Affairs +368942,Aboriginal Affairs,Aboriginal Affairs +365286,Aboriginal Affairs,Aboriginal Affairs +343821,Aboriginal Affairs,Aboriginal Affairs +338793,Aboriginal Affairs,Aboriginal Affairs +338791,Aboriginal Affairs,Aboriginal Affairs +333734,Aboriginal Affairs,Aboriginal Affairs +333733,Aboriginal Affairs,Aboriginal Affairs +333732,Aboriginal Affairs,Aboriginal Affairs +269597,Aboriginal Affairs,Aboriginal Affairs +426796,Aboriginal Affairs,Aboriginal Affairs +422337,Aboriginal Affairs,Aboriginal Affairs +416244,Aboriginal Affairs,Aboriginal Affairs +399000,Aboriginal Affairs,Aboriginal Affairs +388393,Aboriginal Affairs,Aboriginal Affairs +388365,Aboriginal Affairs,Aboriginal Affairs +388358,Aboriginal Affairs,Aboriginal Affairs +385738,Aboriginal Affairs,Aboriginal Affairs +385737,Aboriginal Affairs,Aboriginal Affairs +385143,Aboriginal Affairs,Aboriginal Affairs +385139,Aboriginal Affairs,Aboriginal Affairs +383796,Aboriginal Affairs,Aboriginal Affairs +383789,Aboriginal Affairs,Aboriginal Affairs +383785,Aboriginal Affairs,Aboriginal Affairs +383776,Aboriginal Affairs,Aboriginal Affairs +383737,Aboriginal Affairs,Aboriginal Affairs +383725,Aboriginal Affairs,Aboriginal Affairs +383707,Aboriginal Affairs,Aboriginal Affairs +381613,Aboriginal Affairs,Aboriginal Affairs +544064,Aboriginal Affairs,Aboriginal Affairs +544061,Aboriginal Affairs,Aboriginal Affairs +544058,Aboriginal Affairs,Aboriginal Affairs +544040,Aboriginal Affairs,Aboriginal Affairs +544032,Aboriginal Affairs,Aboriginal Affairs +542026,Aboriginal Affairs,Aboriginal Affairs +542024,Aboriginal Affairs,Aboriginal Affairs +531788,Aboriginal Affairs,Aboriginal Affairs +368947,Arts and Culture,Arts and Culture +540235,Arts and Culture,Arts and Culture +153661,Arts and Culture,Arts and Culture +153660,Arts and Culture,Arts and Culture +153659,Arts and Culture,Arts and Culture +152305,Arts and Culture,Arts and Culture +150426,Arts and Culture,Arts and Culture +150423,Arts and Culture,Arts and Culture +175341,Arts and Culture,Arts and Culture +173064,Arts and Culture,Arts and Culture +160394,Arts and Culture,Arts and Culture +159730,Arts and Culture,Arts and Culture +159729,Arts and Culture,Arts and Culture +159727,Arts and Culture,Arts and Culture +159722,Arts and Culture,Arts and Culture +159716,Arts and Culture,Arts and Culture +159714,Arts and Culture,Arts and Culture +159713,Arts and Culture,Arts and Culture +157035,Arts and Culture,Arts and Culture +154924,Arts and Culture,Arts and Culture +520076,Science and Technology,Science and Technology +520074,Science and Technology,Science and Technology +97529,Science and Technology,Science and Technology +97526,Science and Technology,Science and Technology +90461,Science and Technology,Science and Technology +88126,Science and Technology,Science and Technology +88015,Science and Technology,Science and Technology +88012,Science and Technology,Science and Technology +87999,Science and Technology,Science and Technology +87855,Science and Technology,Science and Technology +150427,Science and Technology,Science and Technology +150409,Science and Technology,Science and Technology +143225,Science and Technology,Science and Technology +143223,Science and Technology,Science and Technology +143221,Science and Technology,Science and Technology +128755,Science and Technology,Science and Technology +128754,Science and Technology,Science and Technology +125106,Science and Technology,Science and Technology +125103,Science and Technology,Science and Technology +125102,Science and Technology,Science and Technology +125079,Science and Technology,Science and Technology +125070,Science and Technology,Science and Technology +121374,Science and Technology,Science and Technology +109190,Science and Technology,Science and Technology +109188,Science and Technology,Science and Technology +109187,Science and Technology,Science and Technology +109185,Science and Technology,Science and Technology +105354,Science and Technology,Science and Technology +104974,Science and Technology,Science and Technology +101365,Science and Technology,Science and Technology +101360,Science and Technology,Science and Technology +194853,Science and Technology,Science and Technology +194848,Science and Technology,Science and Technology +194845,Science and Technology,Science and Technology +194842,Science and Technology,Science and Technology +194839,Science and Technology,Science and Technology +194838,Science and Technology,Science and Technology +194832,Science and Technology,Science and Technology +177826,Science and Technology,Science and Technology +177825,Science and Technology,Science and Technology +173707,Science and Technology,Science and Technology +166041,Science and Technology,Science and Technology +162593,Science and Technology,Science and Technology +160394,Science and Technology,Science and Technology +159730,Science and Technology,Science and Technology +159729,Science and Technology,Science and Technology +159727,Science and Technology,Science and Technology +159722,Science and Technology,Science and Technology +159721,Science and Technology,Science and Technology +159716,Science and Technology,Science and Technology +159714,Science and Technology,Science and Technology +159713,Science and Technology,Science and Technology +154927,Science and Technology,Science and Technology +154926,Science and Technology,Science and Technology +153658,Science and Technology,Science and Technology +152308,Science and Technology,Science and Technology +152306,Science and Technology,Science and Technology +328693,Science and Technology,Science and Technology +328692,Science and Technology,Science and Technology +328690,Science and Technology,Science and Technology +328689,Science and Technology,Science and Technology +313093,Science and Technology,Science and Technology +313091,Science and Technology,Science and Technology +313089,Science and Technology,Science and Technology +313077,Science and Technology,Science and Technology +310553,Science and Technology,Science and Technology +310552,Science and Technology,Science and Technology +310550,Science and Technology,Science and Technology +310549,Science and Technology,Science and Technology +310409,Science and Technology,Science and Technology +310401,Science and Technology,Science and Technology +302755,Science and Technology,Science and Technology +302753,Science and Technology,Science and Technology +302752,Science and Technology,Science and Technology +302749,Science and Technology,Science and Technology +302730,Science and Technology,Science and Technology +296351,Science and Technology,Science and Technology +296035,Science and Technology,Science and Technology +296034,Science and Technology,Science and Technology +296033,Science and Technology,Science and Technology +273408,Science and Technology,Science and Technology +269530,Science and Technology,Science and Technology +259192,Science and Technology,Science and Technology +259191,Science and Technology,Science and Technology +259190,Science and Technology,Science and Technology +259189,Science and Technology,Science and Technology +245550,Science and Technology,Science and Technology +245548,Science and Technology,Science and Technology +245547,Science and Technology,Science and Technology +237249,Science and Technology,Science and Technology +212527,Science and Technology,Science and Technology +212293,Science and Technology,Science and Technology +212290,Science and Technology,Science and Technology +212287,Science and Technology,Science and Technology +212267,Science and Technology,Science and Technology +212260,Science and Technology,Science and Technology +388399,Science and Technology,Science and Technology +388287,Science and Technology,Science and Technology +388221,Science and Technology,Science and Technology +388209,Science and Technology,Science and Technology +385740,Science and Technology,Science and Technology +385722,Science and Technology,Science and Technology +385492,Science and Technology,Science and Technology +385250,Science and Technology,Science and Technology +385249,Science and Technology,Science and Technology +385193,Science and Technology,Science and Technology +385177,Science and Technology,Science and Technology +385169,Science and Technology,Science and Technology +385154,Science and Technology,Science and Technology +383880,Science and Technology,Science and Technology +383817,Science and Technology,Science and Technology +383796,Science and Technology,Science and Technology +383789,Science and Technology,Science and Technology +383780,Science and Technology,Science and Technology +383773,Science and Technology,Science and Technology +383771,Science and Technology,Science and Technology +383768,Science and Technology,Science and Technology +383764,Science and Technology,Science and Technology +383761,Science and Technology,Science and Technology +383754,Science and Technology,Science and Technology +383750,Science and Technology,Science and Technology +383744,Science and Technology,Science and Technology +383738,Science and Technology,Science and Technology +383725,Science and Technology,Science and Technology +379966,Science and Technology,Science and Technology +372741,Science and Technology,Science and Technology +372729,Science and Technology,Science and Technology +372725,Science and Technology,Science and Technology +372703,Science and Technology,Science and Technology +372702,Science and Technology,Science and Technology +372698,Science and Technology,Science and Technology +372697,Science and Technology,Science and Technology +369053,Science and Technology,Science and Technology +357602,Science and Technology,Science and Technology +357601,Science and Technology,Science and Technology +356421,Science and Technology,Science and Technology +355906,Science and Technology,Science and Technology +355647,Science and Technology,Science and Technology +353648,Science and Technology,Science and Technology +348283,Science and Technology,Science and Technology +347363,Science and Technology,Science and Technology +347349,Science and Technology,Science and Technology +338776,Science and Technology,Science and Technology +518279,Science and Technology,Science and Technology +518278,Science and Technology,Science and Technology +518277,Science and Technology,Science and Technology +518276,Science and Technology,Science and Technology +518274,Science and Technology,Science and Technology +518273,Science and Technology,Science and Technology +518262,Science and Technology,Science and Technology +518258,Science and Technology,Science and Technology +518243,Science and Technology,Science and Technology +518240,Science and Technology,Science and Technology +518237,Science and Technology,Science and Technology +516210,Science and Technology,Science and Technology +515889,Science and Technology,Science and Technology +515888,Science and Technology,Science and Technology +515887,Science and Technology,Science and Technology +515886,Science and Technology,Science and Technology +515885,Science and Technology,Science and Technology +515884,Science and Technology,Science and Technology +515883,Science and Technology,Science and Technology +515882,Science and Technology,Science and Technology +515878,Science and Technology,Science and Technology +514254,Science and Technology,Science and Technology +511354,Science and Technology,Science and Technology +511348,Science and Technology,Science and Technology +508254,Science and Technology,Science and Technology +508218,Science and Technology,Science and Technology +508214,Science and Technology,Science and Technology +508212,Science and Technology,Science and Technology +508196,Science and Technology,Science and Technology +508192,Science and Technology,Science and Technology +508187,Science and Technology,Science and Technology +508182,Science and Technology,Science and Technology +505266,Science and Technology,Science and Technology +505258,Science and Technology,Science and Technology +505251,Science and Technology,Science and Technology +505232,Science and Technology,Science and Technology +502747,Science and Technology,Science and Technology +502739,Science and Technology,Science and Technology +502733,Science and Technology,Science and Technology +499470,Science and Technology,Science and Technology +499465,Science and Technology,Science and Technology +499458,Science and Technology,Science and Technology +495588,Science and Technology,Science and Technology +495587,Science and Technology,Science and Technology +495584,Science and Technology,Science and Technology +495577,Science and Technology,Science and Technology +493660,Science and Technology,Science and Technology +493658,Science and Technology,Science and Technology +493649,Science and Technology,Science and Technology +493645,Science and Technology,Science and Technology +493643,Science and Technology,Science and Technology +493640,Science and Technology,Science and Technology +493634,Science and Technology,Science and Technology +493623,Science and Technology,Science and Technology +493620,Science and Technology,Science and Technology +491318,Science and Technology,Science and Technology +491305,Science and Technology,Science and Technology +491299,Science and Technology,Science and Technology +491296,Science and Technology,Science and Technology +491275,Science and Technology,Science and Technology +491268,Science and Technology,Science and Technology +491233,Science and Technology,Science and Technology +491229,Science and Technology,Science and Technology +491224,Science and Technology,Science and Technology +473035,Science and Technology,Science and Technology +458317,Science and Technology,Science and Technology +458315,Science and Technology,Science and Technology +458314,Science and Technology,Science and Technology +458313,Science and Technology,Science and Technology +454909,Science and Technology,Science and Technology +454907,Science and Technology,Science and Technology +452277,Science and Technology,Science and Technology +447352,Science and Technology,Science and Technology +445594,Science and Technology,Science and Technology +443804,Science and Technology,Science and Technology +443803,Science and Technology,Science and Technology +443802,Science and Technology,Science and Technology +439528,Science and Technology,Science and Technology +439480,Science and Technology,Science and Technology +439474,Science and Technology,Science and Technology +439469,Science and Technology,Science and Technology +439448,Science and Technology,Science and Technology +432583,Science and Technology,Science and Technology +426820,Science and Technology,Science and Technology +426798,Science and Technology,Science and Technology +422335,Science and Technology,Science and Technology +420215,Science and Technology,Science and Technology +420203,Science and Technology,Science and Technology +417934,Science and Technology,Science and Technology +416267,Science and Technology,Science and Technology +416263,Science and Technology,Science and Technology +416261,Science and Technology,Science and Technology +416255,Science and Technology,Science and Technology +416239,Science and Technology,Science and Technology +413682,Science and Technology,Science and Technology +413651,Science and Technology,Science and Technology +413647,Science and Technology,Science and Technology +413644,Science and Technology,Science and Technology +413641,Science and Technology,Science and Technology +413610,Science and Technology,Science and Technology +413227,Science and Technology,Science and Technology +413222,Science and Technology,Science and Technology +413206,Science and Technology,Science and Technology +413204,Science and Technology,Science and Technology +413200,Science and Technology,Science and Technology +413163,Science and Technology,Science and Technology +410171,Science and Technology,Science and Technology +410167,Science and Technology,Science and Technology +410165,Science and Technology,Science and Technology +410163,Science and Technology,Science and Technology +410162,Science and Technology,Science and Technology +408181,Science and Technology,Science and Technology +408180,Science and Technology,Science and Technology +408176,Science and Technology,Science and Technology +408174,Science and Technology,Science and Technology +403979,Science and Technology,Science and Technology +403967,Science and Technology,Science and Technology +403873,Science and Technology,Science and Technology +403870,Science and Technology,Science and Technology +403856,Science and Technology,Science and Technology +403824,Science and Technology,Science and Technology +400606,Science and Technology,Science and Technology +400576,Science and Technology,Science and Technology +396780,Science and Technology,Science and Technology +396632,Science and Technology,Science and Technology +394340,Science and Technology,Science and Technology +394334,Science and Technology,Science and Technology +391274,Science and Technology,Science and Technology +391262,Science and Technology,Science and Technology +544064,Science and Technology,Science and Technology +544061,Science and Technology,Science and Technology +544058,Science and Technology,Science and Technology +544056,Science and Technology,Science and Technology +544050,Science and Technology,Science and Technology +544040,Science and Technology,Science and Technology +544036,Science and Technology,Science and Technology +542028,Science and Technology,Science and Technology +542026,Science and Technology,Science and Technology +542025,Science and Technology,Science and Technology +542023,Science and Technology,Science and Technology +542020,Science and Technology,Science and Technology +542015,Science and Technology,Science and Technology +542013,Science and Technology,Science and Technology +542010,Science and Technology,Science and Technology +542009,Science and Technology,Science and Technology +542007,Science and Technology,Science and Technology +540270,Science and Technology,Science and Technology +540269,Science and Technology,Science and Technology +540265,Science and Technology,Science and Technology +540253,Science and Technology,Science and Technology +540235,Science and Technology,Science and Technology +540234,Science and Technology,Science and Technology +540233,Science and Technology,Science and Technology +540231,Science and Technology,Science and Technology +540215,Science and Technology,Science and Technology +540203,Science and Technology,Science and Technology +540201,Science and Technology,Science and Technology +538498,Science and Technology,Science and Technology +538492,Science and Technology,Science and Technology +538485,Science and Technology,Science and Technology +538479,Science and Technology,Science and Technology +538475,Science and Technology,Science and Technology +536289,Science and Technology,Science and Technology +535565,Science and Technology,Science and Technology +534980,Science and Technology,Science and Technology +534979,Science and Technology,Science and Technology +534975,Science and Technology,Science and Technology +531863,Science and Technology,Science and Technology +531844,Science and Technology,Science and Technology +531833,Science and Technology,Science and Technology +531830,Science and Technology,Science and Technology +531827,Science and Technology,Science and Technology +531819,Science and Technology,Science and Technology +531801,Science and Technology,Science and Technology +531799,Science and Technology,Science and Technology +531788,Science and Technology,Science and Technology +531779,Science and Technology,Science and Technology +531764,Science and Technology,Science and Technology +529366,Science and Technology,Science and Technology +529364,Science and Technology,Science and Technology +529362,Science and Technology,Science and Technology +529361,Science and Technology,Science and Technology +529359,Science and Technology,Science and Technology +529351,Science and Technology,Science and Technology +529328,Science and Technology,Science and Technology +529249,Science and Technology,Science and Technology +529189,Science and Technology,Science and Technology +526646,Science and Technology,Science and Technology +526645,Science and Technology,Science and Technology +526638,Science and Technology,Science and Technology +526636,Science and Technology,Science and Technology +526631,Science and Technology,Science and Technology +526626,Science and Technology,Science and Technology +526625,Science and Technology,Science and Technology +526622,Science and Technology,Science and Technology +526621,Science and Technology,Science and Technology +526620,Science and Technology,Science and Technology +526618,Science and Technology,Science and Technology +526617,Science and Technology,Science and Technology +526611,Science and Technology,Science and Technology +526610,Science and Technology,Science and Technology +523266,Science and Technology,Science and Technology +523265,Science and Technology,Science and Technology +523264,Science and Technology,Science and Technology +523262,Science and Technology,Science and Technology +523259,Science and Technology,Science and Technology +523254,Science and Technology,Science and Technology +523252,Science and Technology,Science and Technology +523250,Science and Technology,Science and Technology +520371,Science and Technology,Science and Technology +520084,Science and Technology,Science and Technology +520083,Science and Technology,Science and Technology +520082,Science and Technology,Science and Technology +520080,Science and Technology,Science and Technology +520079,Science and Technology,Science and Technology +98415,Broadcasting,Broadcasting +91935,Broadcasting,Broadcasting +290976,Arts and Culture,Arts and Culture +273574,Arts and Culture,Arts and Culture +90419,Arts and Culture,Arts and Culture +90417,Arts and Culture,Arts and Culture +80774,Arts and Culture,Arts and Culture +392655,Arts and Culture,Arts and Culture +340959,Arts and Culture,Arts and Culture +338489,Arts and Culture,Arts and Culture +338488,Arts and Culture,Arts and Culture +338478,Arts and Culture,Arts and Culture +88994,Science and Technology,Science and Technology +425069,Aboriginal Affairs,Aboriginal Affairs +425068,Aboriginal Affairs,Aboriginal Affairs +273809,Aboriginal Affairs,Aboriginal Affairs +407217,Aboriginal Affairs,Aboriginal Affairs +399432,Aboriginal Affairs,Aboriginal Affairs +381788,Aboriginal Affairs,Aboriginal Affairs +379604,Aboriginal Affairs,Aboriginal Affairs +375108,Aboriginal Affairs,Aboriginal Affairs +373871,Aboriginal Affairs,Aboriginal Affairs +373862,Aboriginal Affairs,Aboriginal Affairs +509133,Aboriginal Affairs,Aboriginal Affairs +453774,Aboriginal Affairs,Aboriginal Affairs +451176,Aboriginal Affairs,Aboriginal Affairs +449161,Aboriginal Affairs,Aboriginal Affairs +425095,Aboriginal Affairs,Aboriginal Affairs +425086,Aboriginal Affairs,Aboriginal Affairs +373864,Science and Technology,Science and Technology +373863,Science and Technology,Science and Technology +81898,Science and Technology,Science and Technology +76238,Science and Technology,Science and Technology +373862,Science and Technology,Science and Technology +333536,Science and Technology,Science and Technology +249672,Science and Technology,Science and Technology +245835,Science and Technology,Science and Technology +427685,Science and Technology,Science and Technology +425099,Science and Technology,Science and Technology +425086,Science and Technology,Science and Technology +425083,Science and Technology,Science and Technology +425082,Science and Technology,Science and Technology +410362,Science and Technology,Science and Technology +397551,Science and Technology,Science and Technology +397509,Science and Technology,Science and Technology +397508,Science and Technology,Science and Technology +397490,Science and Technology,Science and Technology +397487,Science and Technology,Science and Technology +397486,Science and Technology,Science and Technology +381788,Science and Technology,Science and Technology +379604,Science and Technology,Science and Technology +379603,Science and Technology,Science and Technology +378237,Science and Technology,Science and Technology +377428,Science and Technology,Science and Technology +376565,Science and Technology,Science and Technology +375619,Science and Technology,Science and Technology +375111,Science and Technology,Science and Technology +375110,Science and Technology,Science and Technology +375109,Science and Technology,Science and Technology +375108,Science and Technology,Science and Technology +374558,Science and Technology,Science and Technology +374555,Science and Technology,Science and Technology +374036,Science and Technology,Science and Technology +374035,Science and Technology,Science and Technology +374034,Science and Technology,Science and Technology +374033,Science and Technology,Science and Technology +374032,Science and Technology,Science and Technology +374031,Science and Technology,Science and Technology +374030,Science and Technology,Science and Technology +374029,Science and Technology,Science and Technology +374028,Science and Technology,Science and Technology +374027,Science and Technology,Science and Technology +374026,Science and Technology,Science and Technology +374025,Science and Technology,Science and Technology +374024,Science and Technology,Science and Technology +374023,Science and Technology,Science and Technology +374022,Science and Technology,Science and Technology +374021,Science and Technology,Science and Technology +374020,Science and Technology,Science and Technology +374018,Science and Technology,Science and Technology +374017,Science and Technology,Science and Technology +374016,Science and Technology,Science and Technology +374015,Science and Technology,Science and Technology +374014,Science and Technology,Science and Technology +374013,Science and Technology,Science and Technology +374012,Science and Technology,Science and Technology +373923,Science and Technology,Science and Technology +373921,Science and Technology,Science and Technology +373919,Science and Technology,Science and Technology +373916,Science and Technology,Science and Technology +373915,Science and Technology,Science and Technology +373907,Science and Technology,Science and Technology +373872,Science and Technology,Science and Technology +373871,Science and Technology,Science and Technology +373868,Science and Technology,Science and Technology +373867,Science and Technology,Science and Technology +373866,Science and Technology,Science and Technology +100915,Arts and Culture,Arts and Culture +154875,Arts and Culture,Arts and Culture +152256,Arts and Culture,Arts and Culture +148212,Arts and Culture,Arts and Culture +138486,Arts and Culture,Arts and Culture +123119,Arts and Culture,Arts and Culture +117714,Arts and Culture,Arts and Culture +113919,Arts and Culture,Arts and Culture +109647,Arts and Culture,Arts and Culture +152256,Broadcasting,Broadcasting +138486,Broadcasting,Broadcasting +123119,Broadcasting,Broadcasting +352909,Arts and Culture,Arts and Culture +352907,Arts and Culture,Arts and Culture +355634,Arts and Culture,Arts and Culture +275793,Science and Technology,Science and Technology +537999,Science and Technology,Science and Technology +537998,Science and Technology,Science and Technology +116354,Science and Technology,Science and Technology +110017,Science and Technology,Science and Technology +110014,Science and Technology,Science and Technology +94041,Science and Technology,Science and Technology +94034,Science and Technology,Science and Technology +168974,Science and Technology,Science and Technology +168973,Science and Technology,Science and Technology +163821,Science and Technology,Science and Technology +163820,Science and Technology,Science and Technology +163819,Science and Technology,Science and Technology +163818,Science and Technology,Science and Technology +161230,Science and Technology,Science and Technology +159525,Science and Technology,Science and Technology +159524,Science and Technology,Science and Technology +154790,Science and Technology,Science and Technology +154786,Science and Technology,Science and Technology +149167,Science and Technology,Science and Technology +149166,Science and Technology,Science and Technology +146634,Science and Technology,Science and Technology +146094,Science and Technology,Science and Technology +146091,Science and Technology,Science and Technology +146088,Science and Technology,Science and Technology +146087,Science and Technology,Science and Technology +126594,Science and Technology,Science and Technology +233225,Science and Technology,Science and Technology +233224,Science and Technology,Science and Technology +233223,Science and Technology,Science and Technology +233222,Science and Technology,Science and Technology +194780,Science and Technology,Science and Technology +194763,Science and Technology,Science and Technology +194752,Science and Technology,Science and Technology +194744,Science and Technology,Science and Technology +194733,Science and Technology,Science and Technology +362342,Science and Technology,Science and Technology +354038,Science and Technology,Science and Technology +466137,Science and Technology,Science and Technology +466134,Science and Technology,Science and Technology +452632,Science and Technology,Science and Technology +452625,Science and Technology,Science and Technology +450441,Science and Technology,Science and Technology +435866,Science and Technology,Science and Technology +435854,Science and Technology,Science and Technology +424997,Science and Technology,Science and Technology +149964,Science and Technology,Science and Technology +149963,Science and Technology,Science and Technology +151287,Telecommunications,Telecommunications +452062,Science and Technology,Science and Technology +449360,Science and Technology,Science and Technology +90172,Science and Technology,Science and Technology +90170,Science and Technology,Science and Technology +90168,Science and Technology,Science and Technology +90165,Science and Technology,Science and Technology +90164,Science and Technology,Science and Technology +87550,Science and Technology,Science and Technology +87549,Science and Technology,Science and Technology +85037,Science and Technology,Science and Technology +80546,Science and Technology,Science and Technology +120435,Science and Technology,Science and Technology +116954,Science and Technology,Science and Technology +112414,Science and Technology,Science and Technology +108821,Science and Technology,Science and Technology +108820,Science and Technology,Science and Technology +108817,Science and Technology,Science and Technology +108815,Science and Technology,Science and Technology +108814,Science and Technology,Science and Technology +106540,Science and Technology,Science and Technology +106539,Science and Technology,Science and Technology +106538,Science and Technology,Science and Technology +101146,Science and Technology,Science and Technology +101142,Science and Technology,Science and Technology +101141,Science and Technology,Science and Technology +101125,Science and Technology,Science and Technology +101122,Science and Technology,Science and Technology +93640,Science and Technology,Science and Technology +93638,Science and Technology,Science and Technology +93636,Science and Technology,Science and Technology +93634,Science and Technology,Science and Technology +93594,Science and Technology,Science and Technology +93581,Science and Technology,Science and Technology +93576,Science and Technology,Science and Technology +93567,Science and Technology,Science and Technology +159405,Science and Technology,Science and Technology +159404,Science and Technology,Science and Technology +159403,Science and Technology,Science and Technology +159402,Science and Technology,Science and Technology +159400,Science and Technology,Science and Technology +159398,Science and Technology,Science and Technology +159395,Science and Technology,Science and Technology +159392,Science and Technology,Science and Technology +159388,Science and Technology,Science and Technology +159386,Science and Technology,Science and Technology +159384,Science and Technology,Science and Technology +159378,Science and Technology,Science and Technology +154633,Science and Technology,Science and Technology +154632,Science and Technology,Science and Technology +153277,Science and Technology,Science and Technology +151679,Science and Technology,Science and Technology +151678,Science and Technology,Science and Technology +151677,Science and Technology,Science and Technology +150246,Science and Technology,Science and Technology +150245,Science and Technology,Science and Technology +147715,Science and Technology,Science and Technology +145637,Science and Technology,Science and Technology +145636,Science and Technology,Science and Technology +145635,Science and Technology,Science and Technology +141979,Science and Technology,Science and Technology +141978,Science and Technology,Science and Technology +141977,Science and Technology,Science and Technology +141975,Science and Technology,Science and Technology +138495,Science and Technology,Science and Technology +135654,Science and Technology,Science and Technology +127334,Science and Technology,Science and Technology +124622,Science and Technology,Science and Technology +124620,Science and Technology,Science and Technology +124614,Science and Technology,Science and Technology +120437,Science and Technology,Science and Technology +120436,Science and Technology,Science and Technology +296257,Science and Technology,Science and Technology +296252,Science and Technology,Science and Technology +272991,Science and Technology,Science and Technology +268097,Science and Technology,Science and Technology +268096,Science and Technology,Science and Technology +244830,Science and Technology,Science and Technology +232311,Science and Technology,Science and Technology +229847,Science and Technology,Science and Technology +226739,Science and Technology,Science and Technology +226738,Science and Technology,Science and Technology +226735,Science and Technology,Science and Technology +217307,Science and Technology,Science and Technology +217278,Science and Technology,Science and Technology +185389,Science and Technology,Science and Technology +175328,Science and Technology,Science and Technology +175045,Science and Technology,Science and Technology +175043,Science and Technology,Science and Technology +171896,Science and Technology,Science and Technology +163614,Science and Technology,Science and Technology +161937,Science and Technology,Science and Technology +159418,Science and Technology,Science and Technology +159416,Science and Technology,Science and Technology +159413,Science and Technology,Science and Technology +159410,Science and Technology,Science and Technology +159407,Science and Technology,Science and Technology +449358,Science and Technology,Science and Technology +446781,Science and Technology,Science and Technology +446780,Science and Technology,Science and Technology +445038,Science and Technology,Science and Technology +444941,Science and Technology,Science and Technology +444933,Science and Technology,Science and Technology +444921,Science and Technology,Science and Technology +438540,Science and Technology,Science and Technology +438523,Science and Technology,Science and Technology +438500,Science and Technology,Science and Technology +435114,Science and Technology,Science and Technology +435113,Science and Technology,Science and Technology +435110,Science and Technology,Science and Technology +435109,Science and Technology,Science and Technology +435107,Science and Technology,Science and Technology +435105,Science and Technology,Science and Technology +435100,Science and Technology,Science and Technology +435096,Science and Technology,Science and Technology +435091,Science and Technology,Science and Technology +435090,Science and Technology,Science and Technology +435089,Science and Technology,Science and Technology +435088,Science and Technology,Science and Technology +434384,Science and Technology,Science and Technology +433283,Science and Technology,Science and Technology +433280,Science and Technology,Science and Technology +431828,Science and Technology,Science and Technology +430878,Science and Technology,Science and Technology +430847,Science and Technology,Science and Technology +430829,Science and Technology,Science and Technology +428047,Science and Technology,Science and Technology +428032,Science and Technology,Science and Technology +428026,Science and Technology,Science and Technology +426048,Science and Technology,Science and Technology +423820,Science and Technology,Science and Technology +423778,Science and Technology,Science and Technology +421450,Science and Technology,Science and Technology +421449,Science and Technology,Science and Technology +421447,Science and Technology,Science and Technology +421445,Science and Technology,Science and Technology +415675,Science and Technology,Science and Technology +414058,Science and Technology,Science and Technology +386814,Science and Technology,Science and Technology +378096,Science and Technology,Science and Technology +378091,Science and Technology,Science and Technology +362162,Science and Technology,Science and Technology +339611,Science and Technology,Science and Technology +335404,Science and Technology,Science and Technology +335403,Science and Technology,Science and Technology +318689,Science and Technology,Science and Technology +315450,Science and Technology,Science and Technology +542926,Science and Technology,Science and Technology +540838,Science and Technology,Science and Technology +540837,Science and Technology,Science and Technology +539643,Science and Technology,Science and Technology +539637,Science and Technology,Science and Technology +537609,Science and Technology,Science and Technology +537607,Science and Technology,Science and Technology +537606,Science and Technology,Science and Technology +533586,Science and Technology,Science and Technology +533581,Science and Technology,Science and Technology +533580,Science and Technology,Science and Technology +531072,Science and Technology,Science and Technology +531067,Science and Technology,Science and Technology +531063,Science and Technology,Science and Technology +528613,Science and Technology,Science and Technology +525014,Science and Technology,Science and Technology +525007,Science and Technology,Science and Technology +521835,Science and Technology,Science and Technology +521827,Science and Technology,Science and Technology +519440,Science and Technology,Science and Technology +519439,Science and Technology,Science and Technology +519438,Science and Technology,Science and Technology +519437,Science and Technology,Science and Technology +519434,Science and Technology,Science and Technology +516520,Science and Technology,Science and Technology +516518,Science and Technology,Science and Technology +516517,Science and Technology,Science and Technology +516515,Science and Technology,Science and Technology +516512,Science and Technology,Science and Technology +513702,Science and Technology,Science and Technology +511932,Science and Technology,Science and Technology +511931,Science and Technology,Science and Technology +510209,Science and Technology,Science and Technology +510206,Science and Technology,Science and Technology +510204,Science and Technology,Science and Technology +510200,Science and Technology,Science and Technology +507805,Science and Technology,Science and Technology +507803,Science and Technology,Science and Technology +507802,Science and Technology,Science and Technology +507801,Science and Technology,Science and Technology +504797,Science and Technology,Science and Technology +504784,Science and Technology,Science and Technology +504775,Science and Technology,Science and Technology +504761,Science and Technology,Science and Technology +504752,Science and Technology,Science and Technology +504745,Science and Technology,Science and Technology +504742,Science and Technology,Science and Technology +504735,Science and Technology,Science and Technology +504682,Science and Technology,Science and Technology +504215,Science and Technology,Science and Technology +500864,Science and Technology,Science and Technology +494745,Science and Technology,Science and Technology +494744,Science and Technology,Science and Technology +494743,Science and Technology,Science and Technology +494741,Science and Technology,Science and Technology +494738,Science and Technology,Science and Technology +494734,Science and Technology,Science and Technology +492563,Science and Technology,Science and Technology +492562,Science and Technology,Science and Technology +489942,Science and Technology,Science and Technology +489938,Science and Technology,Science and Technology +486481,Science and Technology,Science and Technology +486479,Science and Technology,Science and Technology +486477,Science and Technology,Science and Technology +483679,Science and Technology,Science and Technology +477082,Science and Technology,Science and Technology +477079,Science and Technology,Science and Technology +472189,Science and Technology,Science and Technology +472187,Science and Technology,Science and Technology +470380,Science and Technology,Science and Technology +470376,Science and Technology,Science and Technology +470374,Science and Technology,Science and Technology +470358,Science and Technology,Science and Technology +470349,Science and Technology,Science and Technology +466552,Science and Technology,Science and Technology +466549,Science and Technology,Science and Technology +464293,Science and Technology,Science and Technology +463180,Science and Technology,Science and Technology +460934,Science and Technology,Science and Technology +460932,Science and Technology,Science and Technology +459961,Science and Technology,Science and Technology +458028,Science and Technology,Science and Technology +458020,Science and Technology,Science and Technology +458018,Science and Technology,Science and Technology +454915,Science and Technology,Science and Technology +454899,Science and Technology,Science and Technology +454898,Science and Technology,Science and Technology +452245,Science and Technology,Science and Technology +400929,Arts and Culture,Arts and Culture +383449,Arts and Culture,Arts and Culture +94056,Arts and Culture,Arts and Culture +117514,Arts and Culture,Arts and Culture +190405,Arts and Culture,Arts and Culture +457547,Arts and Culture,Arts and Culture +457546,Arts and Culture,Arts and Culture +457545,Arts and Culture,Arts and Culture +457544,Arts and Culture,Arts and Culture +457540,Broadcasting,Broadcasting +383449,Broadcasting,Broadcasting +94056,Broadcasting,Broadcasting +117514,Broadcasting,Broadcasting +457547,Broadcasting,Broadcasting +457546,Broadcasting,Broadcasting +457545,Broadcasting,Broadcasting +457544,Telecommunications,Telecommunications +457540,Telecommunications,Telecommunications +94056,Telecommunications,Telecommunications +383449,Telecommunications,Telecommunications +457547,Telecommunications,Telecommunications +457546,Telecommunications,Telecommunications +324591,Science and Technology,Science and Technology +324590,Science and Technology,Science and Technology +132235,Science and Technology,Science and Technology +130094,Science and Technology,Science and Technology +109074,Science and Technology,Science and Technology +80620,Science and Technology,Science and Technology +77476,Science and Technology,Science and Technology +77474,Science and Technology,Science and Technology +77472,Science and Technology,Science and Technology +193972,Science and Technology,Science and Technology +193969,Science and Technology,Science and Technology +188997,Science and Technology,Science and Technology +188996,Science and Technology,Science and Technology +188992,Science and Technology,Science and Technology +185974,Science and Technology,Science and Technology +185971,Science and Technology,Science and Technology +185248,Science and Technology,Science and Technology +172949,Science and Technology,Science and Technology +172948,Science and Technology,Science and Technology +172565,Science and Technology,Science and Technology +170558,Science and Technology,Science and Technology +170557,Science and Technology,Science and Technology +168124,Science and Technology,Science and Technology +168122,Science and Technology,Science and Technology +165837,Science and Technology,Science and Technology +164042,Science and Technology,Science and Technology +162088,Science and Technology,Science and Technology +159189,Science and Technology,Science and Technology +159188,Science and Technology,Science and Technology +156588,Science and Technology,Science and Technology +152209,Science and Technology,Science and Technology +152135,Science and Technology,Science and Technology +152131,Science and Technology,Science and Technology +135920,Science and Technology,Science and Technology +132236,Science and Technology,Science and Technology +318812,Science and Technology,Science and Technology +316070,Science and Technology,Science and Technology +316069,Science and Technology,Science and Technology +316068,Science and Technology,Science and Technology +316066,Science and Technology,Science and Technology +303572,Science and Technology,Science and Technology +303570,Science and Technology,Science and Technology +290655,Science and Technology,Science and Technology +286510,Science and Technology,Science and Technology +286489,Science and Technology,Science and Technology +277387,Science and Technology,Science and Technology +277256,Science and Technology,Science and Technology +277253,Science and Technology,Science and Technology +277252,Science and Technology,Science and Technology +272290,Science and Technology,Science and Technology +268608,Science and Technology,Science and Technology +268602,Science and Technology,Science and Technology +268600,Science and Technology,Science and Technology +268598,Science and Technology,Science and Technology +264056,Science and Technology,Science and Technology +264054,Science and Technology,Science and Technology +264050,Science and Technology,Science and Technology +259258,Science and Technology,Science and Technology +259256,Science and Technology,Science and Technology +259255,Science and Technology,Science and Technology +254189,Science and Technology,Science and Technology +254184,Science and Technology,Science and Technology +250837,Science and Technology,Science and Technology +245353,Science and Technology,Science and Technology +245351,Science and Technology,Science and Technology +243631,Science and Technology,Science and Technology +240825,Science and Technology,Science and Technology +240821,Science and Technology,Science and Technology +240810,Science and Technology,Science and Technology +236659,Science and Technology,Science and Technology +236658,Science and Technology,Science and Technology +236657,Science and Technology,Science and Technology +233599,Science and Technology,Science and Technology +233597,Science and Technology,Science and Technology +230400,Science and Technology,Science and Technology +230393,Science and Technology,Science and Technology +227029,Science and Technology,Science and Technology +223263,Science and Technology,Science and Technology +223260,Science and Technology,Science and Technology +217729,Science and Technology,Science and Technology +217727,Science and Technology,Science and Technology +217719,Science and Technology,Science and Technology +217718,Science and Technology,Science and Technology +212094,Science and Technology,Science and Technology +212093,Science and Technology,Science and Technology +207188,Science and Technology,Science and Technology +207185,Science and Technology,Science and Technology +207179,Science and Technology,Science and Technology +207178,Science and Technology,Science and Technology +202549,Science and Technology,Science and Technology +202548,Science and Technology,Science and Technology +202547,Science and Technology,Science and Technology +199954,Science and Technology,Science and Technology +199949,Science and Technology,Science and Technology +199894,Science and Technology,Science and Technology +433700,Science and Technology,Science and Technology +432727,Science and Technology,Science and Technology +432715,Science and Technology,Science and Technology +432712,Science and Technology,Science and Technology +431302,Science and Technology,Science and Technology +431292,Science and Technology,Science and Technology +431162,Science and Technology,Science and Technology +431160,Science and Technology,Science and Technology +431159,Science and Technology,Science and Technology +431158,Science and Technology,Science and Technology +431157,Science and Technology,Science and Technology +431154,Science and Technology,Science and Technology +431152,Science and Technology,Science and Technology +431151,Science and Technology,Science and Technology +428891,Science and Technology,Science and Technology +428890,Science and Technology,Science and Technology +426124,Science and Technology,Science and Technology +426082,Science and Technology,Science and Technology +424188,Science and Technology,Science and Technology +424180,Science and Technology,Science and Technology +422409,Science and Technology,Science and Technology +420160,Science and Technology,Science and Technology +420156,Science and Technology,Science and Technology +420152,Science and Technology,Science and Technology +417933,Science and Technology,Science and Technology +417930,Science and Technology,Science and Technology +417924,Science and Technology,Science and Technology +417918,Science and Technology,Science and Technology +416715,Science and Technology,Science and Technology +416710,Science and Technology,Science and Technology +416708,Science and Technology,Science and Technology +410255,Science and Technology,Science and Technology +410251,Science and Technology,Science and Technology +410248,Science and Technology,Science and Technology +406924,Science and Technology,Science and Technology +405649,Science and Technology,Science and Technology +397298,Science and Technology,Science and Technology +397297,Science and Technology,Science and Technology +391356,Science and Technology,Science and Technology +379762,Science and Technology,Science and Technology +379760,Science and Technology,Science and Technology +371841,Science and Technology,Science and Technology +363493,Science and Technology,Science and Technology +341722,Science and Technology,Science and Technology +333236,Science and Technology,Science and Technology +331601,Science and Technology,Science and Technology +329988,Science and Technology,Science and Technology +329987,Science and Technology,Science and Technology +327569,Science and Technology,Science and Technology +327507,Science and Technology,Science and Technology +327506,Science and Technology,Science and Technology +324593,Science and Technology,Science and Technology +88377,Arts and Culture,Arts and Culture +96319,Arts and Culture,Arts and Culture +471990,Science and Technology,Science and Technology +469589,Science and Technology,Science and Technology +155766,Science and Technology,Science and Technology +154466,Science and Technology,Science and Technology +149643,Science and Technology,Science and Technology +149640,Science and Technology,Science and Technology +149638,Science and Technology,Science and Technology +215327,Science and Technology,Science and Technology +215127,Science and Technology,Science and Technology +195328,Science and Technology,Science and Technology +195311,Science and Technology,Science and Technology +192505,Science and Technology,Science and Technology +169874,Science and Technology,Science and Technology +160636,Science and Technology,Science and Technology +466062,Science and Technology,Science and Technology +466061,Science and Technology,Science and Technology +466057,Science and Technology,Science and Technology +466055,Science and Technology,Science and Technology +466054,Science and Technology,Science and Technology +465891,Science and Technology,Science and Technology +465889,Science and Technology,Science and Technology +465884,Science and Technology,Science and Technology +465883,Science and Technology,Science and Technology +465882,Science and Technology,Science and Technology +465880,Science and Technology,Science and Technology +465867,Science and Technology,Science and Technology +463453,Science and Technology,Science and Technology +463452,Science and Technology,Science and Technology +463450,Science and Technology,Science and Technology +459921,Science and Technology,Science and Technology +456987,Science and Technology,Science and Technology +446799,Science and Technology,Science and Technology +446795,Science and Technology,Science and Technology +446793,Science and Technology,Science and Technology +446791,Science and Technology,Science and Technology +446789,Science and Technology,Science and Technology +445099,Science and Technology,Science and Technology +445098,Science and Technology,Science and Technology +445096,Science and Technology,Science and Technology +445093,Science and Technology,Science and Technology +445089,Science and Technology,Science and Technology +309713,Science and Technology,Science and Technology +309710,Science and Technology,Science and Technology +309708,Science and Technology,Science and Technology +309703,Science and Technology,Science and Technology +309698,Science and Technology,Science and Technology +306550,Science and Technology,Science and Technology +298150,Science and Technology,Science and Technology +247653,Science and Technology,Science and Technology +241958,Science and Technology,Science and Technology +241957,Science and Technology,Science and Technology +241951,Science and Technology,Science and Technology +536894,Science and Technology,Science and Technology +536891,Science and Technology,Science and Technology +530753,Science and Technology,Science and Technology +516982,Science and Technology,Science and Technology +515224,Science and Technology,Science and Technology +498220,Science and Technology,Science and Technology +498213,Science and Technology,Science and Technology +498211,Science and Technology,Science and Technology +498206,Science and Technology,Science and Technology +498203,Science and Technology,Science and Technology +498038,Science and Technology,Science and Technology +494492,Science and Technology,Science and Technology +494490,Science and Technology,Science and Technology +494488,Science and Technology,Science and Technology +490253,Science and Technology,Science and Technology +490250,Science and Technology,Science and Technology +490247,Science and Technology,Science and Technology +490241,Science and Technology,Science and Technology +487127,Science and Technology,Science and Technology +487123,Science and Technology,Science and Technology +483475,Science and Technology,Science and Technology +483470,Science and Technology,Science and Technology +479323,Science and Technology,Science and Technology +476494,Science and Technology,Science and Technology +475433,Science and Technology,Science and Technology +114834,Telecommunications,Telecommunications +165664,Telecommunications,Telecommunications +158790,Telecommunications,Telecommunications +167315,Telecommunications,Telecommunications +166965,Telecommunications,Telecommunications +166964,Telecommunications,Telecommunications +166389,Telecommunications,Telecommunications +166388,Telecommunications,Telecommunications +113755,Science and Technology,Science and Technology +113754,Science and Technology,Science and Technology +113782,Science and Technology,Science and Technology +113781,Science and Technology,Science and Technology +113754,Telecommunications,Telecommunications +153898,Science and Technology,Science and Technology +153896,Science and Technology,Science and Technology +154487,Science and Technology,Science and Technology +153909,Science and Technology,Science and Technology +153908,Science and Technology,Science and Technology +153907,Science and Technology,Science and Technology +153906,Science and Technology,Science and Technology +153905,Science and Technology,Science and Technology +153904,Science and Technology,Science and Technology +153903,Science and Technology,Science and Technology +153902,Science and Technology,Science and Technology +153901,Science and Technology,Science and Technology +472044,Aboriginal Affairs,Aboriginal Affairs +469253,Aboriginal Affairs,Aboriginal Affairs +463536,Aboriginal Affairs,Aboriginal Affairs +406469,Aboriginal Affairs,Aboriginal Affairs +398864,Aboriginal Affairs,Aboriginal Affairs +395911,Aboriginal Affairs,Aboriginal Affairs +393448,Aboriginal Affairs,Aboriginal Affairs +391441,Aboriginal Affairs,Aboriginal Affairs +540773,Aboriginal Affairs,Aboriginal Affairs +531495,Aboriginal Affairs,Aboriginal Affairs +531487,Aboriginal Affairs,Aboriginal Affairs +520930,Aboriginal Affairs,Aboriginal Affairs +516629,Aboriginal Affairs,Aboriginal Affairs +507832,Aboriginal Affairs,Aboriginal Affairs +507825,Aboriginal Affairs,Aboriginal Affairs +507819,Aboriginal Affairs,Aboriginal Affairs +501652,Aboriginal Affairs,Aboriginal Affairs +501641,Aboriginal Affairs,Aboriginal Affairs +495230,Aboriginal Affairs,Aboriginal Affairs +495206,Aboriginal Affairs,Aboriginal Affairs +493040,Aboriginal Affairs,Aboriginal Affairs +486938,Aboriginal Affairs,Aboriginal Affairs +507829,Science and Technology,Science and Technology +504305,Science and Technology,Science and Technology +132852,Science and Technology,Science and Technology +165857,Science and Technology,Science and Technology +150780,Science and Technology,Science and Technology +481506,Science and Technology,Science and Technology +469261,Science and Technology,Science and Technology +393448,Science and Technology,Science and Technology +391427,Science and Technology,Science and Technology +388430,Science and Technology,Science and Technology +379232,Science and Technology,Science and Technology +379226,Science and Technology,Science and Technology +537676,Science and Technology,Science and Technology +537673,Science and Technology,Science and Technology +537671,Science and Technology,Science and Technology +527608,Science and Technology,Science and Technology +524042,Science and Technology,Science and Technology +524038,Science and Technology,Science and Technology +524037,Science and Technology,Science and Technology +520933,Science and Technology,Science and Technology +518816,Science and Technology,Science and Technology +507829,Telecommunications,Telecommunications +504305,Telecommunications,Telecommunications +469261,Telecommunications,Telecommunications +469256,Telecommunications,Telecommunications +469255,Telecommunications,Telecommunications +466340,Telecommunications,Telecommunications +466328,Telecommunications,Telecommunications +525812,Arts and Culture,Arts and Culture +522508,Arts and Culture,Arts and Culture +93894,Arts and Culture,Arts and Culture +88141,Arts and Culture,Arts and Culture +84534,Arts and Culture,Arts and Culture +462392,Science and Technology,Science and Technology +462389,Science and Technology,Science and Technology +125159,Science and Technology,Science and Technology +93895,Science and Technology,Science and Technology +89614,Science and Technology,Science and Technology +88135,Science and Technology,Science and Technology +312815,Science and Technology,Science and Technology +312814,Science and Technology,Science and Technology +188734,Science and Technology,Science and Technology +188733,Science and Technology,Science and Technology +188729,Science and Technology,Science and Technology +188724,Science and Technology,Science and Technology +188717,Science and Technology,Science and Technology +188714,Science and Technology,Science and Technology +188712,Science and Technology,Science and Technology +185349,Science and Technology,Science and Technology +185344,Science and Technology,Science and Technology +175030,Science and Technology,Science and Technology +159820,Science and Technology,Science and Technology +399103,Science and Technology,Science and Technology +399102,Science and Technology,Science and Technology +399099,Science and Technology,Science and Technology +399097,Science and Technology,Science and Technology +381614,Science and Technology,Science and Technology +376829,Science and Technology,Science and Technology +376825,Science and Technology,Science and Technology +376822,Science and Technology,Science and Technology +376817,Science and Technology,Science and Technology +376815,Science and Technology,Science and Technology +376812,Science and Technology,Science and Technology +376810,Science and Technology,Science and Technology +376808,Science and Technology,Science and Technology +376800,Science and Technology,Science and Technology +376793,Science and Technology,Science and Technology +374931,Science and Technology,Science and Technology +374921,Science and Technology,Science and Technology +374915,Science and Technology,Science and Technology +372668,Science and Technology,Science and Technology +369135,Science and Technology,Science and Technology +369128,Science and Technology,Science and Technology +365249,Science and Technology,Science and Technology +365245,Science and Technology,Science and Technology +365242,Science and Technology,Science and Technology +363528,Science and Technology,Science and Technology +363527,Science and Technology,Science and Technology +363526,Science and Technology,Science and Technology +358135,Science and Technology,Science and Technology +355991,Science and Technology,Science and Technology +355987,Science and Technology,Science and Technology +353981,Science and Technology,Science and Technology +353978,Science and Technology,Science and Technology +353977,Science and Technology,Science and Technology +351417,Science and Technology,Science and Technology +349101,Science and Technology,Science and Technology +347158,Science and Technology,Science and Technology +341080,Science and Technology,Science and Technology +341079,Science and Technology,Science and Technology +341077,Science and Technology,Science and Technology +341075,Science and Technology,Science and Technology +335572,Science and Technology,Science and Technology +330148,Science and Technology,Science and Technology +324250,Science and Technology,Science and Technology +324248,Science and Technology,Science and Technology +462388,Science and Technology,Science and Technology +461632,Science and Technology,Science and Technology +460611,Science and Technology,Science and Technology +460131,Science and Technology,Science and Technology +460130,Science and Technology,Science and Technology +459559,Science and Technology,Science and Technology +459558,Science and Technology,Science and Technology +459556,Science and Technology,Science and Technology +459553,Science and Technology,Science and Technology +459550,Science and Technology,Science and Technology +459548,Science and Technology,Science and Technology +459547,Science and Technology,Science and Technology +458577,Science and Technology,Science and Technology +458576,Science and Technology,Science and Technology +455103,Science and Technology,Science and Technology +455096,Science and Technology,Science and Technology +455094,Science and Technology,Science and Technology +452529,Science and Technology,Science and Technology +452527,Science and Technology,Science and Technology +452526,Science and Technology,Science and Technology +452523,Science and Technology,Science and Technology +452518,Science and Technology,Science and Technology +452512,Science and Technology,Science and Technology +449620,Science and Technology,Science and Technology +449619,Science and Technology,Science and Technology +449616,Science and Technology,Science and Technology +449612,Science and Technology,Science and Technology +447715,Science and Technology,Science and Technology +447714,Science and Technology,Science and Technology +447713,Science and Technology,Science and Technology +445645,Science and Technology,Science and Technology +445642,Science and Technology,Science and Technology +443902,Science and Technology,Science and Technology +443884,Science and Technology,Science and Technology +442423,Science and Technology,Science and Technology +442418,Science and Technology,Science and Technology +442412,Science and Technology,Science and Technology +442393,Science and Technology,Science and Technology +442387,Science and Technology,Science and Technology +442385,Science and Technology,Science and Technology +442383,Science and Technology,Science and Technology +442379,Science and Technology,Science and Technology +439672,Science and Technology,Science and Technology +439670,Science and Technology,Science and Technology +436131,Science and Technology,Science and Technology +436130,Science and Technology,Science and Technology +436129,Science and Technology,Science and Technology +436127,Science and Technology,Science and Technology +432559,Science and Technology,Science and Technology +432556,Science and Technology,Science and Technology +430893,Science and Technology,Science and Technology +430887,Science and Technology,Science and Technology +430885,Science and Technology,Science and Technology +430883,Science and Technology,Science and Technology +429135,Science and Technology,Science and Technology +429129,Science and Technology,Science and Technology +429125,Science and Technology,Science and Technology +426735,Science and Technology,Science and Technology +426732,Science and Technology,Science and Technology +426729,Science and Technology,Science and Technology +426725,Science and Technology,Science and Technology +426722,Science and Technology,Science and Technology +426719,Science and Technology,Science and Technology +426716,Science and Technology,Science and Technology +426710,Science and Technology,Science and Technology +426701,Science and Technology,Science and Technology +426694,Science and Technology,Science and Technology +426690,Science and Technology,Science and Technology +426686,Science and Technology,Science and Technology +426682,Science and Technology,Science and Technology +423946,Science and Technology,Science and Technology +423753,Science and Technology,Science and Technology +422168,Science and Technology,Science and Technology +422167,Science and Technology,Science and Technology +420294,Science and Technology,Science and Technology +420293,Science and Technology,Science and Technology +420292,Science and Technology,Science and Technology +420291,Science and Technology,Science and Technology +418145,Science and Technology,Science and Technology +418144,Science and Technology,Science and Technology +418142,Science and Technology,Science and Technology +418139,Science and Technology,Science and Technology +415485,Science and Technology,Science and Technology +415479,Science and Technology,Science and Technology +415477,Science and Technology,Science and Technology +415461,Science and Technology,Science and Technology +413384,Science and Technology,Science and Technology +413357,Science and Technology,Science and Technology +413338,Science and Technology,Science and Technology +408102,Science and Technology,Science and Technology +408101,Science and Technology,Science and Technology +406792,Science and Technology,Science and Technology +406790,Science and Technology,Science and Technology +405232,Science and Technology,Science and Technology +405225,Science and Technology,Science and Technology +405224,Science and Technology,Science and Technology +403577,Science and Technology,Science and Technology +403572,Science and Technology,Science and Technology +403560,Science and Technology,Science and Technology +403557,Science and Technology,Science and Technology +403554,Science and Technology,Science and Technology +403531,Science and Technology,Science and Technology +543948,Science and Technology,Science and Technology +543944,Science and Technology,Science and Technology +541750,Science and Technology,Science and Technology +541747,Science and Technology,Science and Technology +539764,Science and Technology,Science and Technology +539762,Science and Technology,Science and Technology +534611,Science and Technology,Science and Technology +534605,Science and Technology,Science and Technology +534592,Science and Technology,Science and Technology +531397,Science and Technology,Science and Technology +531396,Science and Technology,Science and Technology +531395,Science and Technology,Science and Technology +531394,Science and Technology,Science and Technology +531393,Science and Technology,Science and Technology +531392,Science and Technology,Science and Technology +531354,Science and Technology,Science and Technology +525646,Science and Technology,Science and Technology +522502,Science and Technology,Science and Technology +515721,Science and Technology,Science and Technology +515719,Science and Technology,Science and Technology +515486,Science and Technology,Science and Technology +514645,Science and Technology,Science and Technology +514580,Science and Technology,Science and Technology +514570,Science and Technology,Science and Technology +507960,Science and Technology,Science and Technology +507946,Science and Technology,Science and Technology +507935,Science and Technology,Science and Technology +504237,Science and Technology,Science and Technology +501704,Science and Technology,Science and Technology +501700,Science and Technology,Science and Technology +501698,Science and Technology,Science and Technology +499125,Science and Technology,Science and Technology +498189,Science and Technology,Science and Technology +493344,Science and Technology,Science and Technology +493337,Science and Technology,Science and Technology +487727,Science and Technology,Science and Technology +487726,Science and Technology,Science and Technology +487725,Science and Technology,Science and Technology +487724,Science and Technology,Science and Technology +487722,Science and Technology,Science and Technology +487720,Science and Technology,Science and Technology +484998,Science and Technology,Science and Technology +484748,Science and Technology,Science and Technology +479852,Science and Technology,Science and Technology +479850,Science and Technology,Science and Technology +477470,Science and Technology,Science and Technology +475458,Science and Technology,Science and Technology +473541,Science and Technology,Science and Technology +473494,Science and Technology,Science and Technology +470570,Science and Technology,Science and Technology +470563,Science and Technology,Science and Technology +464270,Science and Technology,Science and Technology +97444,Science and Technology,Science and Technology +162458,Science and Technology,Science and Technology +446183,Arts and Culture,Arts and Culture +492623,Arts and Culture,Arts and Culture +165707,Arts and Culture,Arts and Culture +173435,Science and Technology,Science and Technology +170800,Science and Technology,Science and Technology +170686,Science and Technology,Science and Technology +166924,Science and Technology,Science and Technology +397673,Science and Technology,Science and Technology +397672,Science and Technology,Science and Technology +170024,Science and Technology,Science and Technology +331205,Science and Technology,Science and Technology +317950,Science and Technology,Science and Technology +297249,Science and Technology,Science and Technology +216212,Science and Technology,Science and Technology +210367,Science and Technology,Science and Technology +394055,Science and Technology,Science and Technology +392625,Science and Technology,Science and Technology +383952,Science and Technology,Science and Technology +356385,Science and Technology,Science and Technology +462495,Science and Technology,Science and Technology +437745,Science and Technology,Science and Technology +437738,Science and Technology,Science and Technology +429730,Science and Technology,Science and Technology +415301,Science and Technology,Science and Technology +400758,Science and Technology,Science and Technology +447246,Science and Technology,Science and Technology +381753,Science and Technology,Science and Technology +381752,Science and Technology,Science and Technology +135907,Science and Technology,Science and Technology +109079,Science and Technology,Science and Technology +303532,Science and Technology,Science and Technology +296431,Science and Technology,Science and Technology +296430,Science and Technology,Science and Technology +296409,Science and Technology,Science and Technology +272250,Science and Technology,Science and Technology +268590,Science and Technology,Science and Technology +259260,Science and Technology,Science and Technology +245331,Science and Technology,Science and Technology +240801,Science and Technology,Science and Technology +230389,Science and Technology,Science and Technology +188998,Science and Technology,Science and Technology +175037,Science and Technology,Science and Technology +168918,Science and Technology,Science and Technology +324569,Science and Technology,Science and Technology +321976,Science and Technology,Science and Technology +316063,Science and Technology,Science and Technology +316062,Science and Technology,Science and Technology +316061,Science and Technology,Science and Technology +316058,Science and Technology,Science and Technology +303549,Science and Technology,Science and Technology +433704,Science and Technology,Science and Technology +433691,Science and Technology,Science and Technology +432728,Science and Technology,Science and Technology +432718,Science and Technology,Science and Technology +432714,Science and Technology,Science and Technology +431187,Science and Technology,Science and Technology +431185,Science and Technology,Science and Technology +431183,Science and Technology,Science and Technology +431182,Science and Technology,Science and Technology +431179,Science and Technology,Science and Technology +431177,Science and Technology,Science and Technology +431171,Science and Technology,Science and Technology +431170,Science and Technology,Science and Technology +431168,Science and Technology,Science and Technology +431166,Science and Technology,Science and Technology +428888,Science and Technology,Science and Technology +428887,Science and Technology,Science and Technology +428886,Science and Technology,Science and Technology +426194,Science and Technology,Science and Technology +426192,Science and Technology,Science and Technology +424186,Science and Technology,Science and Technology +424176,Science and Technology,Science and Technology +424167,Science and Technology,Science and Technology +422411,Science and Technology,Science and Technology +422410,Science and Technology,Science and Technology +420020,Science and Technology,Science and Technology +420016,Science and Technology,Science and Technology +420010,Science and Technology,Science and Technology +420006,Science and Technology,Science and Technology +419998,Science and Technology,Science and Technology +417941,Science and Technology,Science and Technology +417940,Science and Technology,Science and Technology +417939,Science and Technology,Science and Technology +417937,Science and Technology,Science and Technology +416704,Science and Technology,Science and Technology +416699,Science and Technology,Science and Technology +416692,Science and Technology,Science and Technology +410289,Science and Technology,Science and Technology +382566,Science and Technology,Science and Technology +381761,Science and Technology,Science and Technology +381759,Science and Technology,Science and Technology +381758,Science and Technology,Science and Technology +381755,Science and Technology,Science and Technology +188981,Science and Technology,Science and Technology +188979,Science and Technology,Science and Technology +116815,Science and Technology,Science and Technology +101213,Science and Technology,Science and Technology +80705,Science and Technology,Science and Technology +168070,Science and Technology,Science and Technology +168053,Science and Technology,Science and Technology +168050,Science and Technology,Science and Technology +165787,Science and Technology,Science and Technology +165785,Science and Technology,Science and Technology +163754,Science and Technology,Science and Technology +163744,Science and Technology,Science and Technology +163742,Science and Technology,Science and Technology +163738,Science and Technology,Science and Technology +161484,Science and Technology,Science and Technology +161480,Science and Technology,Science and Technology +161478,Science and Technology,Science and Technology +161476,Science and Technology,Science and Technology +161473,Science and Technology,Science and Technology +161469,Science and Technology,Science and Technology +139358,Science and Technology,Science and Technology +139357,Science and Technology,Science and Technology +139356,Science and Technology,Science and Technology +139355,Science and Technology,Science and Technology +188988,Science and Technology,Science and Technology +188987,Science and Technology,Science and Technology +483387,Science and Technology,Science and Technology +461617,Science and Technology,Science and Technology +112496,Science and Technology,Science and Technology +109309,Science and Technology,Science and Technology +109306,Science and Technology,Science and Technology +93841,Science and Technology,Science and Technology +88227,Science and Technology,Science and Technology +87861,Science and Technology,Science and Technology +84855,Science and Technology,Science and Technology +236842,Science and Technology,Science and Technology +234209,Science and Technology,Science and Technology +230760,Science and Technology,Science and Technology +230757,Science and Technology,Science and Technology +208547,Science and Technology,Science and Technology +208528,Science and Technology,Science and Technology +208507,Science and Technology,Science and Technology +200651,Science and Technology,Science and Technology +146075,Science and Technology,Science and Technology +448813,Science and Technology,Science and Technology +431053,Science and Technology,Science and Technology +429528,Science and Technology,Science and Technology +427920,Science and Technology,Science and Technology +425786,Science and Technology,Science and Technology +423818,Science and Technology,Science and Technology +422583,Science and Technology,Science and Technology +422578,Science and Technology,Science and Technology +403452,Science and Technology,Science and Technology +537072,Science and Technology,Science and Technology +537070,Science and Technology,Science and Technology +519332,Science and Technology,Science and Technology +518830,Science and Technology,Science and Technology +518828,Science and Technology,Science and Technology +163572,Aboriginal Affairs,Aboriginal Affairs +163570,Aboriginal Affairs,Aboriginal Affairs +163575,Aboriginal Affairs,Aboriginal Affairs +163574,Aboriginal Affairs,Aboriginal Affairs +445011,Science and Technology,Science and Technology +443289,Science and Technology,Science and Technology +87879,Science and Technology,Science and Technology +87877,Science and Technology,Science and Technology +84694,Science and Technology,Science and Technology +83754,Science and Technology,Science and Technology +145828,Science and Technology,Science and Technology +145826,Science and Technology,Science and Technology +302590,Science and Technology,Science and Technology +438081,Science and Technology,Science and Technology +437145,Science and Technology,Science and Technology +436123,Science and Technology,Science and Technology +434641,Science and Technology,Science and Technology +434640,Science and Technology,Science and Technology +433469,Science and Technology,Science and Technology +431719,Science and Technology,Science and Technology +428274,Science and Technology,Science and Technology +422610,Science and Technology,Science and Technology +422112,Science and Technology,Science and Technology +422105,Science and Technology,Science and Technology +411208,Science and Technology,Science and Technology +404038,Science and Technology,Science and Technology +400748,Science and Technology,Science and Technology +399170,Science and Technology,Science and Technology +399168,Science and Technology,Science and Technology +399167,Science and Technology,Science and Technology +395832,Science and Technology,Science and Technology +395825,Science and Technology,Science and Technology +387634,Science and Technology,Science and Technology +387630,Science and Technology,Science and Technology +387629,Science and Technology,Science and Technology +387627,Science and Technology,Science and Technology +386537,Science and Technology,Science and Technology +381877,Science and Technology,Science and Technology +378916,Science and Technology,Science and Technology +378910,Science and Technology,Science and Technology +369480,Science and Technology,Science and Technology +369476,Science and Technology,Science and Technology +369472,Science and Technology,Science and Technology +365190,Science and Technology,Science and Technology +363706,Science and Technology,Science and Technology +363703,Science and Technology,Science and Technology +362430,Science and Technology,Science and Technology +361185,Science and Technology,Science and Technology +359023,Science and Technology,Science and Technology +359022,Science and Technology,Science and Technology +357912,Science and Technology,Science and Technology +357908,Science and Technology,Science and Technology +356344,Science and Technology,Science and Technology +354300,Science and Technology,Science and Technology +351780,Science and Technology,Science and Technology +351776,Science and Technology,Science and Technology +351775,Science and Technology,Science and Technology +351773,Science and Technology,Science and Technology +351770,Science and Technology,Science and Technology +351767,Science and Technology,Science and Technology +351765,Science and Technology,Science and Technology +351762,Science and Technology,Science and Technology +348692,Science and Technology,Science and Technology +348691,Science and Technology,Science and Technology +347428,Science and Technology,Science and Technology +347427,Science and Technology,Science and Technology +342228,Science and Technology,Science and Technology +342227,Science and Technology,Science and Technology +342223,Science and Technology,Science and Technology +342219,Science and Technology,Science and Technology +342218,Science and Technology,Science and Technology +341610,Science and Technology,Science and Technology +341604,Science and Technology,Science and Technology +341590,Science and Technology,Science and Technology +469308,Science and Technology,Science and Technology +469307,Science and Technology,Science and Technology +467254,Science and Technology,Science and Technology +467253,Science and Technology,Science and Technology +458533,Science and Technology,Science and Technology +457220,Science and Technology,Science and Technology +455429,Science and Technology,Science and Technology +455419,Science and Technology,Science and Technology +451995,Science and Technology,Science and Technology +451990,Science and Technology,Science and Technology +451988,Science and Technology,Science and Technology +451986,Science and Technology,Science and Technology +451983,Science and Technology,Science and Technology +447675,Science and Technology,Science and Technology +447674,Science and Technology,Science and Technology +391308,Aboriginal Affairs,Aboriginal Affairs +534780,Aboriginal Affairs,Aboriginal Affairs +420150,Aboriginal Affairs,Aboriginal Affairs +406874,Science and Technology,Science and Technology +400995,Science and Technology,Science and Technology +93382,Science and Technology,Science and Technology +93381,Science and Technology,Science and Technology +83415,Science and Technology,Science and Technology +79014,Science and Technology,Science and Technology +78994,Science and Technology,Science and Technology +117097,Science and Technology,Science and Technology +117096,Science and Technology,Science and Technology +117095,Science and Technology,Science and Technology +117092,Science and Technology,Science and Technology +104298,Science and Technology,Science and Technology +104296,Science and Technology,Science and Technology +99158,Science and Technology,Science and Technology +99157,Science and Technology,Science and Technology +99156,Science and Technology,Science and Technology +99155,Science and Technology,Science and Technology +154643,Science and Technology,Science and Technology +147299,Science and Technology,Science and Technology +141914,Science and Technology,Science and Technology +130394,Science and Technology,Science and Technology +196008,Science and Technology,Science and Technology +196007,Science and Technology,Science and Technology +196006,Science and Technology,Science and Technology +196005,Science and Technology,Science and Technology +196004,Science and Technology,Science and Technology +183464,Science and Technology,Science and Technology +183444,Science and Technology,Science and Technology +183424,Science and Technology,Science and Technology +165918,Science and Technology,Science and Technology +394474,Science and Technology,Science and Technology +394472,Science and Technology,Science and Technology +385664,Science and Technology,Science and Technology +385658,Science and Technology,Science and Technology +382620,Science and Technology,Science and Technology +374830,Science and Technology,Science and Technology +372783,Science and Technology,Science and Technology +358198,Science and Technology,Science and Technology +349236,Science and Technology,Science and Technology +349230,Science and Technology,Science and Technology +338661,Science and Technology,Science and Technology +325058,Science and Technology,Science and Technology +249031,Science and Technology,Science and Technology +234671,Science and Technology,Science and Technology +532014,Science and Technology,Science and Technology +526565,Science and Technology,Science and Technology +488150,Science and Technology,Science and Technology +458839,Science and Technology,Science and Technology +450176,Science and Technology,Science and Technology +443898,Science and Technology,Science and Technology +443892,Science and Technology,Science and Technology +443890,Science and Technology,Science and Technology +443888,Science and Technology,Science and Technology +438785,Science and Technology,Science and Technology +438783,Science and Technology,Science and Technology +432589,Science and Technology,Science and Technology +432588,Science and Technology,Science and Technology +432587,Science and Technology,Science and Technology +432586,Science and Technology,Science and Technology +428999,Science and Technology,Science and Technology +428996,Science and Technology,Science and Technology +420133,Science and Technology,Science and Technology +418275,Science and Technology,Science and Technology +416772,Science and Technology,Science and Technology +416768,Science and Technology,Science and Technology +409996,Science and Technology,Science and Technology +408062,Science and Technology,Science and Technology +408061,Science and Technology,Science and Technology +453688,Science and Technology,Science and Technology +453687,Science and Technology,Science and Technology +173869,Science and Technology,Science and Technology +169966,Science and Technology,Science and Technology +169648,Science and Technology,Science and Technology +169646,Science and Technology,Science and Technology +169644,Science and Technology,Science and Technology +169643,Science and Technology,Science and Technology +169642,Science and Technology,Science and Technology +169641,Science and Technology,Science and Technology +169640,Science and Technology,Science and Technology +169639,Science and Technology,Science and Technology +169638,Science and Technology,Science and Technology +169637,Science and Technology,Science and Technology +169636,Science and Technology,Science and Technology +169634,Science and Technology,Science and Technology +169633,Science and Technology,Science and Technology +169632,Science and Technology,Science and Technology +163800,Science and Technology,Science and Technology +163796,Science and Technology,Science and Technology +163794,Science and Technology,Science and Technology +163793,Science and Technology,Science and Technology +161115,Science and Technology,Science and Technology +160496,Science and Technology,Science and Technology +154612,Science and Technology,Science and Technology +154611,Science and Technology,Science and Technology +154609,Science and Technology,Science and Technology +154608,Science and Technology,Science and Technology +137208,Science and Technology,Science and Technology +137207,Science and Technology,Science and Technology +137205,Science and Technology,Science and Technology +244029,Science and Technology,Science and Technology +244028,Science and Technology,Science and Technology +244027,Science and Technology,Science and Technology +244026,Science and Technology,Science and Technology +244025,Science and Technology,Science and Technology +244024,Science and Technology,Science and Technology +244023,Science and Technology,Science and Technology +229553,Science and Technology,Science and Technology +229552,Science and Technology,Science and Technology +229551,Science and Technology,Science and Technology +229550,Science and Technology,Science and Technology +229549,Science and Technology,Science and Technology +229546,Science and Technology,Science and Technology +229545,Science and Technology,Science and Technology +229544,Science and Technology,Science and Technology +223498,Science and Technology,Science and Technology +223497,Science and Technology,Science and Technology +223495,Science and Technology,Science and Technology +223493,Science and Technology,Science and Technology +223490,Science and Technology,Science and Technology +223486,Science and Technology,Science and Technology +223480,Science and Technology,Science and Technology +206192,Science and Technology,Science and Technology +206191,Science and Technology,Science and Technology +203810,Science and Technology,Science and Technology +203809,Science and Technology,Science and Technology +203808,Science and Technology,Science and Technology +203794,Science and Technology,Science and Technology +200268,Science and Technology,Science and Technology +198369,Science and Technology,Science and Technology +198367,Science and Technology,Science and Technology +198347,Science and Technology,Science and Technology +198267,Science and Technology,Science and Technology +198250,Science and Technology,Science and Technology +198249,Science and Technology,Science and Technology +198247,Science and Technology,Science and Technology +198228,Science and Technology,Science and Technology +188532,Science and Technology,Science and Technology +180862,Science and Technology,Science and Technology +180861,Science and Technology,Science and Technology +180859,Science and Technology,Science and Technology +180857,Science and Technology,Science and Technology +180855,Science and Technology,Science and Technology +180853,Science and Technology,Science and Technology +177125,Science and Technology,Science and Technology +177124,Science and Technology,Science and Technology +177096,Science and Technology,Science and Technology +177095,Science and Technology,Science and Technology +174309,Science and Technology,Science and Technology +174308,Science and Technology,Science and Technology +174307,Science and Technology,Science and Technology +174306,Science and Technology,Science and Technology +174305,Science and Technology,Science and Technology +173880,Science and Technology,Science and Technology +173879,Science and Technology,Science and Technology +173878,Science and Technology,Science and Technology +173877,Science and Technology,Science and Technology +173876,Science and Technology,Science and Technology +173875,Science and Technology,Science and Technology +173874,Science and Technology,Science and Technology +173873,Science and Technology,Science and Technology +173871,Science and Technology,Science and Technology +173870,Science and Technology,Science and Technology +371333,Science and Technology,Science and Technology +371327,Science and Technology,Science and Technology +371326,Science and Technology,Science and Technology +371321,Science and Technology,Science and Technology +371319,Science and Technology,Science and Technology +371317,Science and Technology,Science and Technology +371316,Science and Technology,Science and Technology +368882,Science and Technology,Science and Technology +368872,Science and Technology,Science and Technology +368869,Science and Technology,Science and Technology +368868,Science and Technology,Science and Technology +368867,Science and Technology,Science and Technology +368866,Science and Technology,Science and Technology +368863,Science and Technology,Science and Technology +368857,Science and Technology,Science and Technology +366742,Science and Technology,Science and Technology +365132,Science and Technology,Science and Technology +365025,Science and Technology,Science and Technology +363271,Science and Technology,Science and Technology +363270,Science and Technology,Science and Technology +363264,Science and Technology,Science and Technology +363263,Science and Technology,Science and Technology +363262,Science and Technology,Science and Technology +361886,Science and Technology,Science and Technology +361885,Science and Technology,Science and Technology +361644,Science and Technology,Science and Technology +361187,Science and Technology,Science and Technology +361186,Science and Technology,Science and Technology +359725,Science and Technology,Science and Technology +359723,Science and Technology,Science and Technology +359722,Science and Technology,Science and Technology +359719,Science and Technology,Science and Technology +359717,Science and Technology,Science and Technology +359712,Science and Technology,Science and Technology +359707,Science and Technology,Science and Technology +357621,Science and Technology,Science and Technology +357619,Science and Technology,Science and Technology +357615,Science and Technology,Science and Technology +357612,Science and Technology,Science and Technology +357611,Science and Technology,Science and Technology +357598,Science and Technology,Science and Technology +357597,Science and Technology,Science and Technology +355633,Science and Technology,Science and Technology +355631,Science and Technology,Science and Technology +353279,Science and Technology,Science and Technology +353261,Science and Technology,Science and Technology +353255,Science and Technology,Science and Technology +353252,Science and Technology,Science and Technology +353250,Science and Technology,Science and Technology +353242,Science and Technology,Science and Technology +350709,Science and Technology,Science and Technology +350708,Science and Technology,Science and Technology +350707,Science and Technology,Science and Technology +350706,Science and Technology,Science and Technology +350704,Science and Technology,Science and Technology +350703,Science and Technology,Science and Technology +350701,Science and Technology,Science and Technology +348542,Science and Technology,Science and Technology +348541,Science and Technology,Science and Technology +348535,Science and Technology,Science and Technology +344841,Science and Technology,Science and Technology +344840,Science and Technology,Science and Technology +344839,Science and Technology,Science and Technology +343381,Science and Technology,Science and Technology +343380,Science and Technology,Science and Technology +343379,Science and Technology,Science and Technology +343378,Science and Technology,Science and Technology +341901,Science and Technology,Science and Technology +341789,Science and Technology,Science and Technology +341718,Science and Technology,Science and Technology +341705,Science and Technology,Science and Technology +341657,Science and Technology,Science and Technology +339994,Science and Technology,Science and Technology +339990,Science and Technology,Science and Technology +336928,Science and Technology,Science and Technology +336927,Science and Technology,Science and Technology +336926,Science and Technology,Science and Technology +336925,Science and Technology,Science and Technology +336924,Science and Technology,Science and Technology +336923,Science and Technology,Science and Technology +336921,Science and Technology,Science and Technology +336918,Science and Technology,Science and Technology +336915,Science and Technology,Science and Technology +336914,Science and Technology,Science and Technology +336913,Science and Technology,Science and Technology +336912,Science and Technology,Science and Technology +336911,Science and Technology,Science and Technology +330456,Science and Technology,Science and Technology +330455,Science and Technology,Science and Technology +305589,Science and Technology,Science and Technology +270140,Science and Technology,Science and Technology +270139,Science and Technology,Science and Technology +270137,Science and Technology,Science and Technology +270136,Science and Technology,Science and Technology +270135,Science and Technology,Science and Technology +270134,Science and Technology,Science and Technology +270133,Science and Technology,Science and Technology +270132,Science and Technology,Science and Technology +270130,Science and Technology,Science and Technology +257990,Science and Technology,Science and Technology +257989,Science and Technology,Science and Technology +257972,Science and Technology,Science and Technology +257971,Science and Technology,Science and Technology +257970,Science and Technology,Science and Technology +257969,Science and Technology,Science and Technology +257951,Science and Technology,Science and Technology +244038,Science and Technology,Science and Technology +244037,Science and Technology,Science and Technology +244035,Science and Technology,Science and Technology +244034,Science and Technology,Science and Technology +244033,Science and Technology,Science and Technology +244032,Science and Technology,Science and Technology +244031,Science and Technology,Science and Technology +244030,Science and Technology,Science and Technology +448642,Science and Technology,Science and Technology +446037,Science and Technology,Science and Technology +446036,Science and Technology,Science and Technology +446035,Science and Technology,Science and Technology +444605,Science and Technology,Science and Technology +444604,Science and Technology,Science and Technology +442927,Science and Technology,Science and Technology +442926,Science and Technology,Science and Technology +442924,Science and Technology,Science and Technology +440907,Science and Technology,Science and Technology +440906,Science and Technology,Science and Technology +437113,Science and Technology,Science and Technology +437112,Science and Technology,Science and Technology +437111,Science and Technology,Science and Technology +437110,Science and Technology,Science and Technology +437109,Science and Technology,Science and Technology +437108,Science and Technology,Science and Technology +437106,Science and Technology,Science and Technology +437102,Science and Technology,Science and Technology +437100,Science and Technology,Science and Technology +437088,Science and Technology,Science and Technology +437084,Science and Technology,Science and Technology +437081,Science and Technology,Science and Technology +437075,Science and Technology,Science and Technology +437074,Science and Technology,Science and Technology +437073,Science and Technology,Science and Technology +437072,Science and Technology,Science and Technology +434344,Science and Technology,Science and Technology +434343,Science and Technology,Science and Technology +434342,Science and Technology,Science and Technology +432902,Science and Technology,Science and Technology +432901,Science and Technology,Science and Technology +432899,Science and Technology,Science and Technology +431926,Science and Technology,Science and Technology +431924,Science and Technology,Science and Technology +430047,Science and Technology,Science and Technology +427661,Science and Technology,Science and Technology +426341,Science and Technology,Science and Technology +423142,Science and Technology,Science and Technology +423141,Science and Technology,Science and Technology +423140,Science and Technology,Science and Technology +421225,Science and Technology,Science and Technology +421222,Science and Technology,Science and Technology +421220,Science and Technology,Science and Technology +421217,Science and Technology,Science and Technology +418803,Science and Technology,Science and Technology +418802,Science and Technology,Science and Technology +418801,Science and Technology,Science and Technology +417377,Science and Technology,Science and Technology +417376,Science and Technology,Science and Technology +417375,Science and Technology,Science and Technology +414859,Science and Technology,Science and Technology +414858,Science and Technology,Science and Technology +414857,Science and Technology,Science and Technology +414854,Science and Technology,Science and Technology +414853,Science and Technology,Science and Technology +414852,Science and Technology,Science and Technology +414851,Science and Technology,Science and Technology +411651,Science and Technology,Science and Technology +411649,Science and Technology,Science and Technology +411648,Science and Technology,Science and Technology +411647,Science and Technology,Science and Technology +411646,Science and Technology,Science and Technology +408550,Science and Technology,Science and Technology +407761,Science and Technology,Science and Technology +407462,Science and Technology,Science and Technology +407461,Science and Technology,Science and Technology +402109,Science and Technology,Science and Technology +402108,Science and Technology,Science and Technology +400246,Science and Technology,Science and Technology +400244,Science and Technology,Science and Technology +400243,Science and Technology,Science and Technology +393586,Science and Technology,Science and Technology +393585,Science and Technology,Science and Technology +393584,Science and Technology,Science and Technology +393579,Science and Technology,Science and Technology +393578,Science and Technology,Science and Technology +393576,Science and Technology,Science and Technology +393574,Science and Technology,Science and Technology +392119,Science and Technology,Science and Technology +392118,Science and Technology,Science and Technology +392117,Science and Technology,Science and Technology +392113,Science and Technology,Science and Technology +390007,Science and Technology,Science and Technology +389915,Science and Technology,Science and Technology +389902,Science and Technology,Science and Technology +389790,Science and Technology,Science and Technology +389787,Science and Technology,Science and Technology +389783,Science and Technology,Science and Technology +389776,Science and Technology,Science and Technology +389775,Science and Technology,Science and Technology +389767,Science and Technology,Science and Technology +389765,Science and Technology,Science and Technology +386979,Science and Technology,Science and Technology +386977,Science and Technology,Science and Technology +386970,Science and Technology,Science and Technology +386968,Science and Technology,Science and Technology +386964,Science and Technology,Science and Technology +385171,Science and Technology,Science and Technology +384887,Science and Technology,Science and Technology +384880,Science and Technology,Science and Technology +384878,Science and Technology,Science and Technology +384876,Science and Technology,Science and Technology +384875,Science and Technology,Science and Technology +384874,Science and Technology,Science and Technology +384870,Science and Technology,Science and Technology +382990,Science and Technology,Science and Technology +382328,Science and Technology,Science and Technology +382326,Science and Technology,Science and Technology +382324,Science and Technology,Science and Technology +380697,Science and Technology,Science and Technology +380695,Science and Technology,Science and Technology +380693,Science and Technology,Science and Technology +379286,Science and Technology,Science and Technology +379275,Science and Technology,Science and Technology +379265,Science and Technology,Science and Technology +379262,Science and Technology,Science and Technology +376267,Science and Technology,Science and Technology +376264,Science and Technology,Science and Technology +376250,Science and Technology,Science and Technology +376247,Science and Technology,Science and Technology +374599,Science and Technology,Science and Technology +374596,Science and Technology,Science and Technology +374592,Science and Technology,Science and Technology +374590,Science and Technology,Science and Technology +374588,Science and Technology,Science and Technology +374587,Science and Technology,Science and Technology +374585,Science and Technology,Science and Technology +374583,Science and Technology,Science and Technology +374581,Science and Technology,Science and Technology +374579,Science and Technology,Science and Technology +371462,Science and Technology,Science and Technology +371460,Science and Technology,Science and Technology +371457,Science and Technology,Science and Technology +371455,Science and Technology,Science and Technology +371451,Science and Technology,Science and Technology +371449,Science and Technology,Science and Technology +371447,Science and Technology,Science and Technology +371335,Science and Technology,Science and Technology +474667,Science and Technology,Science and Technology +474663,Science and Technology,Science and Technology +469808,Science and Technology,Science and Technology +469807,Science and Technology,Science and Technology +465811,Science and Technology,Science and Technology +465810,Science and Technology,Science and Technology +465809,Science and Technology,Science and Technology +465805,Science and Technology,Science and Technology +465803,Science and Technology,Science and Technology +465802,Science and Technology,Science and Technology +463470,Science and Technology,Science and Technology +463468,Science and Technology,Science and Technology +462079,Science and Technology,Science and Technology +462073,Science and Technology,Science and Technology +462045,Science and Technology,Science and Technology +461203,Science and Technology,Science and Technology +461162,Science and Technology,Science and Technology +460394,Science and Technology,Science and Technology +460297,Science and Technology,Science and Technology +459890,Science and Technology,Science and Technology +458222,Science and Technology,Science and Technology +458012,Science and Technology,Science and Technology +457939,Science and Technology,Science and Technology +456477,Science and Technology,Science and Technology +453693,Science and Technology,Science and Technology +453692,Science and Technology,Science and Technology +453691,Science and Technology,Science and Technology +453690,Science and Technology,Science and Technology +377577,Aboriginal Affairs,Aboriginal Affairs +506676,Science and Technology,Science and Technology +506278,Science and Technology,Science and Technology +471620,Science and Technology,Science and Technology +424781,Science and Technology,Science and Technology +221387,Science and Technology,Science and Technology +221368,Science and Technology,Science and Technology +207613,Science and Technology,Science and Technology +192500,Science and Technology,Science and Technology +175395,Science and Technology,Science and Technology +175393,Science and Technology,Science and Technology +175391,Science and Technology,Science and Technology +175388,Science and Technology,Science and Technology +175377,Science and Technology,Science and Technology +175310,Science and Technology,Science and Technology +158408,Science and Technology,Science and Technology +158389,Science and Technology,Science and Technology +153152,Science and Technology,Science and Technology +335534,Science and Technology,Science and Technology +330707,Science and Technology,Science and Technology +312369,Science and Technology,Science and Technology +312349,Science and Technology,Science and Technology +309596,Science and Technology,Science and Technology +304351,Science and Technology,Science and Technology +297349,Science and Technology,Science and Technology +284871,Science and Technology,Science and Technology +280232,Science and Technology,Science and Technology +271849,Science and Technology,Science and Technology +267230,Science and Technology,Science and Technology +264332,Science and Technology,Science and Technology +264331,Science and Technology,Science and Technology +264329,Science and Technology,Science and Technology +253369,Science and Technology,Science and Technology +243478,Science and Technology,Science and Technology +243475,Science and Technology,Science and Technology +240573,Science and Technology,Science and Technology +401162,Science and Technology,Science and Technology +388479,Science and Technology,Science and Technology +365034,Science and Technology,Science and Technology +365033,Science and Technology,Science and Technology +365032,Science and Technology,Science and Technology +359982,Science and Technology,Science and Technology +349282,Science and Technology,Science and Technology +347368,Science and Technology,Science and Technology +343461,Science and Technology,Science and Technology +340456,Science and Technology,Science and Technology +340455,Science and Technology,Science and Technology +86837,Aboriginal Affairs,Aboriginal Affairs +86835,Aboriginal Affairs,Aboriginal Affairs +240845,Arts and Culture,Arts and Culture +240839,Arts and Culture,Arts and Culture +96320,Arts and Culture,Arts and Culture +93666,Arts and Culture,Arts and Culture +93665,Arts and Culture,Arts and Culture +93664,Arts and Culture,Arts and Culture +90017,Arts and Culture,Arts and Culture +90015,Arts and Culture,Arts and Culture +90014,Arts and Culture,Arts and Culture +88376,Arts and Culture,Arts and Culture +120534,Arts and Culture,Arts and Culture +96961,Arts and Culture,Arts and Culture +159700,Aboriginal Affairs,Aboriginal Affairs +159693,Aboriginal Affairs,Aboriginal Affairs +156863,Aboriginal Affairs,Aboriginal Affairs +142516,Aboriginal Affairs,Aboriginal Affairs +369870,Aboriginal Affairs,Aboriginal Affairs +366454,Aboriginal Affairs,Aboriginal Affairs +353652,Aboriginal Affairs,Aboriginal Affairs +334669,Aboriginal Affairs,Aboriginal Affairs +180432,Aboriginal Affairs,Aboriginal Affairs +411847,Science and Technology,Science and Technology +408678,Science and Technology,Science and Technology +159696,Science and Technology,Science and Technology +466692,Science and Technology,Science and Technology +280090,Science and Technology,Science and Technology +415744,Broadcasting,Broadcasting +381514,Science and Technology,Science and Technology +441337,Arts and Culture,Arts and Culture +469097,Telecommunications,Telecommunications +524815,Broadcasting,Broadcasting +169466,Science and Technology,Science and Technology +347043,Telecommunications,Telecommunications +312055,Aboriginal Affairs,Aboriginal Affairs +492519,Science and Technology,Science and Technology +86514,Science and Technology,Science and Technology +315996,Science and Technology,Science and Technology +172144,Arts and Culture,Arts and Culture +150522,Aboriginal Affairs,Aboriginal Affairs +240987,Arts and Culture,Arts and Culture +457149,Broadcasting,Broadcasting +430917,Telecommunications,Telecommunications +327249,Aboriginal Affairs,Aboriginal Affairs +437419,Science and Technology,Science and Technology +411479,Telecommunications,Telecommunications +476066,Arts and Culture,Arts and Culture +512916,Arts and Culture,Arts and Culture +468787,Broadcasting,Broadcasting +406328,Telecommunications,Telecommunications +513001,Broadcasting,Broadcasting +473595,Telecommunications,Telecommunications +429806,Arts and Culture,Arts and Culture +525892,Broadcasting,Broadcasting +469076,Science and Technology,Science and Technology +74274,Broadcasting,Broadcasting +125058,Telecommunications,Telecommunications +148194,Aboriginal Affairs,Aboriginal Affairs +106338,Telecommunications,Telecommunications +198668,Telecommunications,Telecommunications +396596,Science and Technology,Science and Technology +524860,Science and Technology,Science and Technology +199467,Aboriginal Affairs,Aboriginal Affairs +324244,Arts and Culture,Arts and Culture +119654,Science and Technology,Science and Technology +100354,Arts and Culture,Arts and Culture +113662,Aboriginal Affairs,Aboriginal Affairs +168799,Broadcasting,Broadcasting +311009,Science and Technology,Science and Technology +479324,Broadcasting,Broadcasting +486815,Science and Technology,Science and Technology +482139,Aboriginal Affairs,Aboriginal Affairs +362043,Science and Technology,Science and Technology +105705,Arts and Culture,Arts and Culture +105705,Broadcasting,Broadcasting +101249,Broadcasting,Broadcasting +156646,Science and Technology,Science and Technology +167514,Broadcasting,Broadcasting +471934,Telecommunications,Telecommunications +269030,Science and Technology,Science and Technology +117015,Science and Technology,Science and Technology +484309,Science and Technology,Science and Technology +318966,Broadcasting,Broadcasting +195007,Telecommunications,Telecommunications +78274,Science and Technology,Science and Technology +381425,Science and Technology,Science and Technology +388351,Telecommunications,Telecommunications +489772,Science and Technology,Science and Technology +314540,Telecommunications,Telecommunications +413500,Arts and Culture,Arts and Culture +466623,Science and Technology,Science and Technology +156854,Aboriginal Affairs,Aboriginal Affairs +493711,Arts and Culture,Arts and Culture +475695,Broadcasting,Broadcasting +486031,Science and Technology,Science and Technology +361158,Telecommunications,Telecommunications +131954,Science and Technology,Science and Technology +101182,Broadcasting,Broadcasting +167560,Arts and Culture,Arts and Culture +156653,Broadcasting,Broadcasting +115737,Aboriginal Affairs,Aboriginal Affairs +97603,Science and Technology,Science and Technology +244511,Science and Technology,Science and Technology +142860,Telecommunications,Telecommunications +369554,Science and Technology,Science and Technology +441750,Aboriginal Affairs,Aboriginal Affairs +429071,Science and Technology,Science and Technology +152804,Science and Technology,Science and Technology +319203,Arts and Culture,Arts and Culture +75919,Science and Technology,Science and Technology +80297,Aboriginal Affairs,Aboriginal Affairs +97684,Science and Technology,Science and Technology +83124,Science and Technology,Science and Technology +174869,Arts and Culture,Arts and Culture +427115,Science and Technology,Science and Technology +370435,Arts and Culture,Arts and Culture +479886,Broadcasting,Broadcasting +475676,Telecommunications,Telecommunications +490711,Aboriginal Affairs,Aboriginal Affairs +149970,Arts and Culture,Arts and Culture +460123,Science and Technology,Science and Technology +498684,Science and Technology,Science and Technology +75835,Science and Technology,Science and Technology +400013,Science and Technology,Science and Technology +519676,Telecommunications,Telecommunications +388723,Science and Technology,Science and Technology +439494,Aboriginal Affairs,Aboriginal Affairs +349558,Broadcasting,Broadcasting +105336,Science and Technology,Science and Technology +132349,Broadcasting,Broadcasting +143014,Telecommunications,Telecommunications +512749,Science and Technology,Science and Technology +453818,Telecommunications,Telecommunications +156562,Telecommunications,Telecommunications +125735,Telecommunications,Telecommunications +94178,Aboriginal Affairs,Aboriginal Affairs +427941,Aboriginal Affairs,Aboriginal Affairs +406038,Science and Technology,Science and Technology +517468,Science and Technology,Science and Technology +106177,Science and Technology,Science and Technology +124761,Telecommunications,Telecommunications +250409,Aboriginal Affairs,Aboriginal Affairs +110316,Science and Technology,Science and Technology +437491,Broadcasting,Broadcasting +100919,Arts and Culture,Arts and Culture +469119,Arts and Culture,Arts and Culture +494597,Broadcasting,Broadcasting +174711,Telecommunications,Telecommunications +532250,Aboriginal Affairs,Aboriginal Affairs +399909,Arts and Culture,Arts and Culture +469794,Broadcasting,Broadcasting +251533,Telecommunications,Telecommunications +105349,Science and Technology,Science and Technology +105343,Science and Technology,Science and Technology +105347,Science and Technology,Science and Technology +105318,Science and Technology,Science and Technology +380947,Science and Technology,Science and Technology +156250,Science and Technology,Science and Technology +326438,Broadcasting,Broadcasting +301669,Telecommunications,Telecommunications +332571,Science and Technology,Science and Technology +512772,Science and Technology,Science and Technology +448589,Aboriginal Affairs,Aboriginal Affairs +137256,Aboriginal Affairs,Aboriginal Affairs +396870,Science and Technology,Science and Technology +93277,Arts and Culture,Arts and Culture +199848,Arts and Culture,Arts and Culture +100755,Arts and Culture,Arts and Culture +174606,Science and Technology,Science and Technology +463033,Science and Technology,Science and Technology +116594,Aboriginal Affairs,Aboriginal Affairs +77526,Aboriginal Affairs,Aboriginal Affairs +486094,Science and Technology,Science and Technology +105323,Science and Technology,Science and Technology +446665,Science and Technology,Science and Technology +388538,Telecommunications,Telecommunications +488948,Science and Technology,Science and Technology +505180,Science and Technology,Science and Technology +84980,Broadcasting,Broadcasting +97661,Arts and Culture,Arts and Culture +230193,Broadcasting,Broadcasting +424941,Science and Technology,Science and Technology +97697,Science and Technology,Science and Technology +385872,Arts and Culture,Arts and Culture +451931,Science and Technology,Science and Technology +124625,Arts and Culture,Arts and Culture +373136,Science and Technology,Science and Technology +422482,Aboriginal Affairs,Aboriginal Affairs +249832,Aboriginal Affairs,Aboriginal Affairs +80374,Aboriginal Affairs,Aboriginal Affairs +144498,Arts and Culture,Arts and Culture +448938,Science and Technology,Science and Technology +89796,Aboriginal Affairs,Aboriginal Affairs +402702,Aboriginal Affairs,Aboriginal Affairs +427940,Science and Technology,Science and Technology +199986,Telecommunications,Telecommunications +159987,Science and Technology,Science and Technology +382535,Aboriginal Affairs,Aboriginal Affairs +433160,Broadcasting,Broadcasting +439061,Science and Technology,Science and Technology +447811,Telecommunications,Telecommunications +399364,Science and Technology,Science and Technology +152165,Aboriginal Affairs,Aboriginal Affairs +216048,Science and Technology,Science and Technology +466067,Science and Technology,Science and Technology +157259,Science and Technology,Science and Technology +540947,Science and Technology,Science and Technology +385259,Arts and Culture,Arts and Culture +407871,Broadcasting,Broadcasting +535665,Science and Technology,Science and Technology +85758,Science and Technology,Science and Technology +79518,Arts and Culture,Arts and Culture +458158,Telecommunications,Telecommunications +375409,Aboriginal Affairs,Aboriginal Affairs +485490,Broadcasting,Broadcasting +175406,Science and Technology,Science and Technology +92654,Broadcasting,Broadcasting +155966,Aboriginal Affairs,Aboriginal Affairs +313890,Science and Technology,Science and Technology +508170,Aboriginal Affairs,Aboriginal Affairs +517833,Science and Technology,Science and Technology +148645,Arts and Culture,Arts and Culture +150243,Broadcasting,Broadcasting +138434,Aboriginal Affairs,Aboriginal Affairs +217779,Telecommunications,Telecommunications +77856,Science and Technology,Science and Technology +77666,Aboriginal Affairs,Aboriginal Affairs +77705,Aboriginal Affairs,Aboriginal Affairs +101435,Telecommunications,Telecommunications +468779,Science and Technology,Science and Technology +487291,Telecommunications,Telecommunications +196862,Aboriginal Affairs,Aboriginal Affairs +243197,Science and Technology,Science and Technology +394250,Science and Technology,Science and Technology +514370,Science and Technology,Science and Technology +100414,Science and Technology,Science and Technology +487047,Aboriginal Affairs,Aboriginal Affairs +177664,Science and Technology,Science and Technology +132921,Aboriginal Affairs,Aboriginal Affairs +473008,Arts and Culture,Arts and Culture +533761,Broadcasting,Broadcasting +508113,Telecommunications,Telecommunications +320494,Broadcasting,Broadcasting +112339,Arts and Culture,Arts and Culture +484600,Aboriginal Affairs,Aboriginal Affairs +369032,Arts and Culture,Arts and Culture +520078,Science and Technology,Science and Technology +98416,Arts and Culture,Arts and Culture +98416,Broadcasting,Broadcasting +75914,Science and Technology,Science and Technology +333663,Arts and Culture,Arts and Culture +88995,Science and Technology,Science and Technology +425075,Aboriginal Affairs,Aboriginal Affairs +373865,Science and Technology,Science and Technology +81898,Telecommunications,Telecommunications +106293,Arts and Culture,Arts and Culture +154875,Broadcasting,Broadcasting +100920,Arts and Culture,Arts and Culture +352945,Arts and Culture,Arts and Culture +311929,Science and Technology,Science and Technology +424476,Science and Technology,Science and Technology +115897,Science and Technology,Science and Technology +152857,Telecommunications,Telecommunications +452222,Science and Technology,Science and Technology +418233,Science and Technology,Science and Technology +457540,Arts and Culture,Arts and Culture +457544,Broadcasting,Broadcasting +457545,Telecommunications,Telecommunications +324592,Science and Technology,Science and Technology +91755,Arts and Culture,Arts and Culture +475422,Science and Technology,Science and Technology +92867,Telecommunications,Telecommunications +158790,Broadcasting,Broadcasting +166387,Telecommunications,Telecommunications +113780,Science and Technology,Science and Technology +113755,Telecommunications,Telecommunications +153900,Science and Technology,Science and Technology +474625,Aboriginal Affairs,Aboriginal Affairs +509880,Science and Technology,Science and Technology +518816,Telecommunications,Telecommunications +82925,Arts and Culture,Arts and Culture +462393,Science and Technology,Science and Technology +110158,Science and Technology,Science and Technology +454139,Arts and Culture,Arts and Culture +190407,Science and Technology,Science and Technology +397675,Science and Technology,Science and Technology +132851,Science and Technology,Science and Technology +75894,Science and Technology,Science and Technology +381754,Science and Technology,Science and Technology +188986,Science and Technology,Science and Technology +515494,Science and Technology,Science and Technology +163573,Aboriginal Affairs,Aboriginal Affairs +445015,Science and Technology,Science and Technology +391341,Aboriginal Affairs,Aboriginal Affairs +406875,Science and Technology,Science and Technology +453689,Science and Technology,Science and Technology +389118,Aboriginal Affairs,Aboriginal Affairs +390951,Science and Technology,Science and Technology +536720,Science and Technology,Science and Technology +86838,Aboriginal Affairs,Aboriginal Affairs +96960,Arts and Culture,Arts and Culture +165829,Aboriginal Affairs,Aboriginal Affairs +379366,Science and Technology,Science and Technology +416668,Science and Technology,Science and Technology +514462,Arts and Culture,Arts and Culture +514462,Science and Technology,Science and Technology +110434,Aboriginal Affairs,Aboriginal Affairs +330359,Arts and Culture,Arts and Culture +97155,Aboriginal Affairs,Aboriginal Affairs +163883,Broadcasting,Broadcasting +437713,Telecommunications,Telecommunications +442522,Aboriginal Affairs,Aboriginal Affairs +79394,Science and Technology,Science and Technology +200189,Science and Technology,Science and Technology +392552,Science and Technology,Science and Technology +489668,Science and Technology,Science and Technology +121575,Telecommunications,Telecommunications +146854,Aboriginal Affairs,Aboriginal Affairs +396268,Science and Technology,Science and Technology +428990,Aboriginal Affairs,Aboriginal Affairs +197435,Arts and Culture,Arts and Culture +124334,Telecommunications,Telecommunications +394847,Arts and Culture,Arts and Culture +394848,Science and Technology,Science and Technology +160899,Aboriginal Affairs,Aboriginal Affairs +416876,Science and Technology,Science and Technology +166206,Science and Technology,Science and Technology +335078,Science and Technology,Science and Technology +422869,Science and Technology,Science and Technology +154689,Science and Technology,Science and Technology +145994,Science and Technology,Science and Technology +145987,Science and Technology,Science and Technology +207385,Science and Technology,Science and Technology +180434,Science and Technology,Science and Technology +393166,Science and Technology,Science and Technology +379371,Science and Technology,Science and Technology +379370,Science and Technology,Science and Technology +416659,Science and Technology,Science and Technology +416656,Science and Technology,Science and Technology +156585,Science and Technology,Science and Technology +130034,Science and Technology,Science and Technology +240856,Science and Technology,Science and Technology +240855,Science and Technology,Science and Technology +240854,Science and Technology,Science and Technology +233600,Science and Technology,Science and Technology +202539,Science and Technology,Science and Technology +202536,Science and Technology,Science and Technology +199880,Science and Technology,Science and Technology +199865,Science and Technology,Science and Technology +170556,Science and Technology,Science and Technology +413722,Science and Technology,Science and Technology +413721,Science and Technology,Science and Technology +413715,Science and Technology,Science and Technology +413713,Science and Technology,Science and Technology +413710,Science and Technology,Science and Technology +413706,Science and Technology,Science and Technology +413703,Science and Technology,Science and Technology +413700,Science and Technology,Science and Technology +413698,Science and Technology,Science and Technology +413696,Science and Technology,Science and Technology +413694,Science and Technology,Science and Technology +413690,Science and Technology,Science and Technology +413686,Science and Technology,Science and Technology +413679,Science and Technology,Science and Technology +413676,Science and Technology,Science and Technology +410291,Science and Technology,Science and Technology +410290,Science and Technology,Science and Technology +408071,Science and Technology,Science and Technology +408067,Science and Technology,Science and Technology +403696,Science and Technology,Science and Technology +400831,Science and Technology,Science and Technology +398996,Science and Technology,Science and Technology +398993,Science and Technology,Science and Technology +398988,Science and Technology,Science and Technology +396986,Science and Technology,Science and Technology +396982,Science and Technology,Science and Technology +385537,Science and Technology,Science and Technology +382564,Science and Technology,Science and Technology +381487,Science and Technology,Science and Technology +381485,Science and Technology,Science and Technology +381482,Science and Technology,Science and Technology +374976,Science and Technology,Science and Technology +338581,Science and Technology,Science and Technology +338580,Science and Technology,Science and Technology +433696,Science and Technology,Science and Technology +432711,Science and Technology,Science and Technology +432708,Science and Technology,Science and Technology +432706,Science and Technology,Science and Technology +431297,Science and Technology,Science and Technology +431285,Science and Technology,Science and Technology +431146,Science and Technology,Science and Technology +431144,Science and Technology,Science and Technology +431141,Science and Technology,Science and Technology +431140,Science and Technology,Science and Technology +431138,Science and Technology,Science and Technology +431136,Science and Technology,Science and Technology +431134,Science and Technology,Science and Technology +431130,Science and Technology,Science and Technology +428900,Science and Technology,Science and Technology +428898,Science and Technology,Science and Technology +426077,Science and Technology,Science and Technology +426074,Science and Technology,Science and Technology +424184,Science and Technology,Science and Technology +424173,Science and Technology,Science and Technology +424165,Science and Technology,Science and Technology +422384,Science and Technology,Science and Technology +422378,Science and Technology,Science and Technology +420174,Science and Technology,Science and Technology +420168,Science and Technology,Science and Technology +420164,Science and Technology,Science and Technology +417907,Science and Technology,Science and Technology +417902,Science and Technology,Science and Technology +417901,Science and Technology,Science and Technology +216848,Arts and Culture,Arts and Culture +267209,Arts and Culture,Arts and Culture +243930,Arts and Culture,Arts and Culture +243929,Arts and Culture,Arts and Culture +542104,Arts and Culture,Arts and Culture +538852,Arts and Culture,Arts and Culture +537809,Arts and Culture,Arts and Culture +530321,Arts and Culture,Arts and Culture +530315,Arts and Culture,Arts and Culture +526327,Arts and Culture,Arts and Culture +523559,Arts and Culture,Arts and Culture +523374,Arts and Culture,Arts and Culture +520977,Arts and Culture,Arts and Culture +514876,Arts and Culture,Arts and Culture +514845,Arts and Culture,Arts and Culture +485734,Science and Technology,Science and Technology +461863,Science and Technology,Science and Technology +216848,Science and Technology,Science and Technology +337349,Science and Technology,Science and Technology +335817,Science and Technology,Science and Technology +335814,Science and Technology,Science and Technology +369960,Science and Technology,Science and Technology +369955,Science and Technology,Science and Technology +341980,Science and Technology,Science and Technology +341976,Science and Technology,Science and Technology +341975,Science and Technology,Science and Technology +341971,Science and Technology,Science and Technology +341968,Science and Technology,Science and Technology +341966,Science and Technology,Science and Technology +341963,Science and Technology,Science and Technology +341960,Science and Technology,Science and Technology +341956,Science and Technology,Science and Technology +341951,Science and Technology,Science and Technology +341950,Science and Technology,Science and Technology +341947,Science and Technology,Science and Technology +341945,Science and Technology,Science and Technology +341942,Science and Technology,Science and Technology +341939,Science and Technology,Science and Technology +341937,Science and Technology,Science and Technology +341934,Science and Technology,Science and Technology +341931,Science and Technology,Science and Technology +341929,Science and Technology,Science and Technology +341894,Science and Technology,Science and Technology +341870,Science and Technology,Science and Technology +456297,Science and Technology,Science and Technology +456295,Science and Technology,Science and Technology +455008,Science and Technology,Science and Technology +453204,Science and Technology,Science and Technology +453203,Science and Technology,Science and Technology +451092,Science and Technology,Science and Technology +451091,Science and Technology,Science and Technology +451090,Science and Technology,Science and Technology +451088,Science and Technology,Science and Technology +448626,Science and Technology,Science and Technology +448562,Science and Technology,Science and Technology +445867,Science and Technology,Science and Technology +444634,Science and Technology,Science and Technology +441941,Science and Technology,Science and Technology +441431,Science and Technology,Science and Technology +434313,Science and Technology,Science and Technology +434298,Science and Technology,Science and Technology +427054,Science and Technology,Science and Technology +417552,Science and Technology,Science and Technology +417550,Science and Technology,Science and Technology +414305,Science and Technology,Science and Technology +408549,Science and Technology,Science and Technology +408548,Science and Technology,Science and Technology +407110,Science and Technology,Science and Technology +404820,Science and Technology,Science and Technology +391355,Science and Technology,Science and Technology +391352,Science and Technology,Science and Technology +380473,Science and Technology,Science and Technology +526740,Science and Technology,Science and Technology +526424,Science and Technology,Science and Technology +526396,Science and Technology,Science and Technology +523559,Science and Technology,Science and Technology +523374,Science and Technology,Science and Technology +521700,Science and Technology,Science and Technology +521602,Science and Technology,Science and Technology +520977,Science and Technology,Science and Technology +520567,Science and Technology,Science and Technology +520506,Science and Technology,Science and Technology +520262,Science and Technology,Science and Technology +519277,Science and Technology,Science and Technology +515052,Science and Technology,Science and Technology +514942,Science and Technology,Science and Technology +514941,Science and Technology,Science and Technology +514940,Science and Technology,Science and Technology +514876,Science and Technology,Science and Technology +514845,Science and Technology,Science and Technology +312886,Arts and Culture,Arts and Culture +291369,Arts and Culture,Arts and Culture +83059,Arts and Culture,Arts and Culture +83058,Arts and Culture,Arts and Culture +80905,Arts and Culture,Arts and Culture +262549,Arts and Culture,Arts and Culture +245482,Arts and Culture,Arts and Culture +230324,Arts and Culture,Arts and Culture +330363,Arts and Culture,Arts and Culture +330362,Arts and Culture,Arts and Culture +330361,Arts and Culture,Arts and Culture +163881,Broadcasting,Broadcasting +163856,Broadcasting,Broadcasting +124932,Broadcasting,Broadcasting +124902,Broadcasting,Broadcasting +124901,Broadcasting,Broadcasting +80859,Broadcasting,Broadcasting +163853,Broadcasting,Broadcasting +163852,Broadcasting,Broadcasting +163851,Broadcasting,Broadcasting +163849,Broadcasting,Broadcasting +163847,Broadcasting,Broadcasting +163846,Broadcasting,Broadcasting +163844,Broadcasting,Broadcasting +162171,Broadcasting,Broadcasting +162170,Broadcasting,Broadcasting +162168,Broadcasting,Broadcasting +159310,Broadcasting,Broadcasting +159308,Broadcasting,Broadcasting +159307,Broadcasting,Broadcasting +159306,Broadcasting,Broadcasting +159305,Broadcasting,Broadcasting +159304,Broadcasting,Broadcasting +156965,Broadcasting,Broadcasting +156964,Broadcasting,Broadcasting +156963,Broadcasting,Broadcasting +156961,Broadcasting,Broadcasting +156959,Broadcasting,Broadcasting +156957,Broadcasting,Broadcasting +153257,Broadcasting,Broadcasting +152115,Broadcasting,Broadcasting +150284,Broadcasting,Broadcasting +150283,Broadcasting,Broadcasting +150281,Broadcasting,Broadcasting +148103,Broadcasting,Broadcasting +148100,Broadcasting,Broadcasting +365253,Broadcasting,Broadcasting +359820,Broadcasting,Broadcasting +356903,Broadcasting,Broadcasting +341665,Broadcasting,Broadcasting +341662,Broadcasting,Broadcasting +338578,Broadcasting,Broadcasting +321947,Broadcasting,Broadcasting +313090,Broadcasting,Broadcasting +310218,Broadcasting,Broadcasting +310215,Broadcasting,Broadcasting +310213,Broadcasting,Broadcasting +296656,Broadcasting,Broadcasting +291076,Broadcasting,Broadcasting +200355,Broadcasting,Broadcasting +189405,Broadcasting,Broadcasting +189370,Broadcasting,Broadcasting +185686,Broadcasting,Broadcasting +175447,Broadcasting,Broadcasting +173419,Broadcasting,Broadcasting +173417,Broadcasting,Broadcasting +437712,Telecommunications,Telecommunications +437711,Telecommunications,Telecommunications +156875,Telecommunications,Telecommunications +127314,Telecommunications,Telecommunications +164684,Telecommunications,Telecommunications +438637,Aboriginal Affairs,Aboriginal Affairs +438355,Aboriginal Affairs,Aboriginal Affairs +163749,Aboriginal Affairs,Aboriginal Affairs +161984,Aboriginal Affairs,Aboriginal Affairs +159174,Aboriginal Affairs,Aboriginal Affairs +154656,Aboriginal Affairs,Aboriginal Affairs +142274,Aboriginal Affairs,Aboriginal Affairs +109101,Aboriginal Affairs,Aboriginal Affairs +109098,Aboriginal Affairs,Aboriginal Affairs +309814,Aboriginal Affairs,Aboriginal Affairs +295771,Aboriginal Affairs,Aboriginal Affairs +295770,Aboriginal Affairs,Aboriginal Affairs +279731,Aboriginal Affairs,Aboriginal Affairs +269127,Aboriginal Affairs,Aboriginal Affairs +268396,Aboriginal Affairs,Aboriginal Affairs +268370,Aboriginal Affairs,Aboriginal Affairs +258589,Aboriginal Affairs,Aboriginal Affairs +230271,Aboriginal Affairs,Aboriginal Affairs +217616,Aboriginal Affairs,Aboriginal Affairs +207396,Aboriginal Affairs,Aboriginal Affairs +200058,Aboriginal Affairs,Aboriginal Affairs +200054,Aboriginal Affairs,Aboriginal Affairs +200053,Aboriginal Affairs,Aboriginal Affairs +200052,Aboriginal Affairs,Aboriginal Affairs +200051,Aboriginal Affairs,Aboriginal Affairs +189691,Aboriginal Affairs,Aboriginal Affairs +173129,Aboriginal Affairs,Aboriginal Affairs +386598,Aboriginal Affairs,Aboriginal Affairs +386592,Aboriginal Affairs,Aboriginal Affairs +382090,Aboriginal Affairs,Aboriginal Affairs +382089,Aboriginal Affairs,Aboriginal Affairs +380604,Aboriginal Affairs,Aboriginal Affairs +380603,Aboriginal Affairs,Aboriginal Affairs +374091,Aboriginal Affairs,Aboriginal Affairs +370805,Aboriginal Affairs,Aboriginal Affairs +368022,Aboriginal Affairs,Aboriginal Affairs +364402,Aboriginal Affairs,Aboriginal Affairs +363084,Aboriginal Affairs,Aboriginal Affairs +355651,Aboriginal Affairs,Aboriginal Affairs +355263,Aboriginal Affairs,Aboriginal Affairs +355262,Aboriginal Affairs,Aboriginal Affairs +355261,Aboriginal Affairs,Aboriginal Affairs +355243,Aboriginal Affairs,Aboriginal Affairs +355240,Aboriginal Affairs,Aboriginal Affairs +355239,Aboriginal Affairs,Aboriginal Affairs +355238,Aboriginal Affairs,Aboriginal Affairs +355236,Aboriginal Affairs,Aboriginal Affairs +355233,Aboriginal Affairs,Aboriginal Affairs +355231,Aboriginal Affairs,Aboriginal Affairs +355230,Aboriginal Affairs,Aboriginal Affairs +350458,Aboriginal Affairs,Aboriginal Affairs +348806,Aboriginal Affairs,Aboriginal Affairs +348805,Aboriginal Affairs,Aboriginal Affairs +343630,Aboriginal Affairs,Aboriginal Affairs +343624,Aboriginal Affairs,Aboriginal Affairs +343619,Aboriginal Affairs,Aboriginal Affairs +340619,Aboriginal Affairs,Aboriginal Affairs +340615,Aboriginal Affairs,Aboriginal Affairs +340614,Aboriginal Affairs,Aboriginal Affairs +335036,Aboriginal Affairs,Aboriginal Affairs +331241,Aboriginal Affairs,Aboriginal Affairs +331240,Aboriginal Affairs,Aboriginal Affairs +331239,Aboriginal Affairs,Aboriginal Affairs +324897,Aboriginal Affairs,Aboriginal Affairs +320769,Aboriginal Affairs,Aboriginal Affairs +318713,Aboriginal Affairs,Aboriginal Affairs +312856,Aboriginal Affairs,Aboriginal Affairs +432299,Aboriginal Affairs,Aboriginal Affairs +431760,Aboriginal Affairs,Aboriginal Affairs +431758,Aboriginal Affairs,Aboriginal Affairs +427604,Aboriginal Affairs,Aboriginal Affairs +427603,Aboriginal Affairs,Aboriginal Affairs +427602,Aboriginal Affairs,Aboriginal Affairs +424967,Aboriginal Affairs,Aboriginal Affairs +424965,Aboriginal Affairs,Aboriginal Affairs +423046,Aboriginal Affairs,Aboriginal Affairs +423043,Aboriginal Affairs,Aboriginal Affairs +423040,Aboriginal Affairs,Aboriginal Affairs +420678,Aboriginal Affairs,Aboriginal Affairs +415427,Aboriginal Affairs,Aboriginal Affairs +414788,Aboriginal Affairs,Aboriginal Affairs +414787,Aboriginal Affairs,Aboriginal Affairs +414783,Aboriginal Affairs,Aboriginal Affairs +414780,Aboriginal Affairs,Aboriginal Affairs +414773,Aboriginal Affairs,Aboriginal Affairs +414737,Aboriginal Affairs,Aboriginal Affairs +409094,Aboriginal Affairs,Aboriginal Affairs +405916,Aboriginal Affairs,Aboriginal Affairs +405865,Aboriginal Affairs,Aboriginal Affairs +405864,Aboriginal Affairs,Aboriginal Affairs +405862,Aboriginal Affairs,Aboriginal Affairs +402176,Aboriginal Affairs,Aboriginal Affairs +402172,Aboriginal Affairs,Aboriginal Affairs +539592,Aboriginal Affairs,Aboriginal Affairs +537755,Aboriginal Affairs,Aboriginal Affairs +537754,Aboriginal Affairs,Aboriginal Affairs +537753,Aboriginal Affairs,Aboriginal Affairs +537750,Aboriginal Affairs,Aboriginal Affairs +537748,Aboriginal Affairs,Aboriginal Affairs +537746,Aboriginal Affairs,Aboriginal Affairs +537742,Aboriginal Affairs,Aboriginal Affairs +537736,Aboriginal Affairs,Aboriginal Affairs +537718,Aboriginal Affairs,Aboriginal Affairs +522865,Aboriginal Affairs,Aboriginal Affairs +517927,Aboriginal Affairs,Aboriginal Affairs +513027,Aboriginal Affairs,Aboriginal Affairs +495430,Aboriginal Affairs,Aboriginal Affairs +491346,Aboriginal Affairs,Aboriginal Affairs +491342,Aboriginal Affairs,Aboriginal Affairs +484781,Aboriginal Affairs,Aboriginal Affairs +479227,Aboriginal Affairs,Aboriginal Affairs +477992,Aboriginal Affairs,Aboriginal Affairs +473055,Aboriginal Affairs,Aboriginal Affairs +469702,Aboriginal Affairs,Aboriginal Affairs +469701,Aboriginal Affairs,Aboriginal Affairs +462509,Aboriginal Affairs,Aboriginal Affairs +460687,Aboriginal Affairs,Aboriginal Affairs +455797,Aboriginal Affairs,Aboriginal Affairs +455703,Aboriginal Affairs,Aboriginal Affairs +455692,Aboriginal Affairs,Aboriginal Affairs +455682,Aboriginal Affairs,Aboriginal Affairs +455674,Aboriginal Affairs,Aboriginal Affairs +455672,Aboriginal Affairs,Aboriginal Affairs +455649,Aboriginal Affairs,Aboriginal Affairs +455646,Aboriginal Affairs,Aboriginal Affairs +455644,Aboriginal Affairs,Aboriginal Affairs +455642,Aboriginal Affairs,Aboriginal Affairs +455641,Aboriginal Affairs,Aboriginal Affairs +455634,Aboriginal Affairs,Aboriginal Affairs +455633,Aboriginal Affairs,Aboriginal Affairs +455632,Aboriginal Affairs,Aboriginal Affairs +455625,Aboriginal Affairs,Aboriginal Affairs +455623,Aboriginal Affairs,Aboriginal Affairs +447528,Aboriginal Affairs,Aboriginal Affairs +443612,Aboriginal Affairs,Aboriginal Affairs +156044,Science and Technology,Science and Technology +352210,Science and Technology,Science and Technology +475814,Science and Technology,Science and Technology +460225,Science and Technology,Science and Technology +489666,Science and Technology,Science and Technology +489663,Science and Technology,Science and Technology +99635,Science and Technology,Science and Technology +432295,Science and Technology,Science and Technology +430670,Science and Technology,Science and Technology +378613,Science and Technology,Science and Technology +541847,Science and Technology,Science and Technology +541267,Science and Technology,Science and Technology +541266,Science and Technology,Science and Technology +533722,Science and Technology,Science and Technology +533654,Science and Technology,Science and Technology +533653,Science and Technology,Science and Technology +521797,Science and Technology,Science and Technology +519978,Science and Technology,Science and Technology +519760,Science and Technology,Science and Technology +515368,Science and Technology,Science and Technology +513779,Science and Technology,Science and Technology +507860,Science and Technology,Science and Technology +504816,Science and Technology,Science and Technology +504768,Science and Technology,Science and Technology +504759,Science and Technology,Science and Technology +504750,Science and Technology,Science and Technology +504746,Science and Technology,Science and Technology +502235,Science and Technology,Science and Technology +502229,Science and Technology,Science and Technology +502200,Science and Technology,Science and Technology +502192,Science and Technology,Science and Technology +502183,Science and Technology,Science and Technology +494922,Science and Technology,Science and Technology +494920,Science and Technology,Science and Technology +489685,Science and Technology,Science and Technology +489682,Science and Technology,Science and Technology +489670,Science and Technology,Science and Technology +355189,Science and Technology,Science and Technology +540724,Science and Technology,Science and Technology +109750,Science and Technology,Science and Technology +207473,Science and Technology,Science and Technology +314510,Science and Technology,Science and Technology +294574,Science and Technology,Science and Technology +294572,Science and Technology,Science and Technology +294569,Science and Technology,Science and Technology +270069,Science and Technology,Science and Technology +243274,Science and Technology,Science and Technology +243273,Science and Technology,Science and Technology +243271,Science and Technology,Science and Technology +243270,Science and Technology,Science and Technology +243269,Science and Technology,Science and Technology +428989,Aboriginal Affairs,Aboriginal Affairs +428988,Aboriginal Affairs,Aboriginal Affairs +192226,Aboriginal Affairs,Aboriginal Affairs +192225,Aboriginal Affairs,Aboriginal Affairs +192224,Aboriginal Affairs,Aboriginal Affairs +192210,Aboriginal Affairs,Aboriginal Affairs +192181,Aboriginal Affairs,Aboriginal Affairs +192178,Aboriginal Affairs,Aboriginal Affairs +192173,Aboriginal Affairs,Aboriginal Affairs +428998,Aboriginal Affairs,Aboriginal Affairs +428994,Aboriginal Affairs,Aboriginal Affairs +158565,Arts and Culture,Arts and Culture +158564,Arts and Culture,Arts and Culture +378432,Arts and Culture,Arts and Culture +378430,Arts and Culture,Arts and Culture +394849,Arts and Culture,Arts and Culture +394848,Arts and Culture,Arts and Culture +394847,Science and Technology,Science and Technology +444020,Science and Technology,Science and Technology +272491,Science and Technology,Science and Technology +378432,Science and Technology,Science and Technology +378430,Science and Technology,Science and Technology +340341,Science and Technology,Science and Technology +425179,Science and Technology,Science and Technology +425045,Science and Technology,Science and Technology +394849,Science and Technology,Science and Technology +404124,Aboriginal Affairs,Aboriginal Affairs +416874,Science and Technology,Science and Technology +416871,Science and Technology,Science and Technology +101190,Science and Technology,Science and Technology +97492,Science and Technology,Science and Technology +97489,Science and Technology,Science and Technology +77648,Science and Technology,Science and Technology +77647,Science and Technology,Science and Technology +77646,Science and Technology,Science and Technology +77362,Science and Technology,Science and Technology +145974,Science and Technology,Science and Technology +145973,Science and Technology,Science and Technology +145972,Science and Technology,Science and Technology +145971,Science and Technology,Science and Technology +132797,Science and Technology,Science and Technology +132796,Science and Technology,Science and Technology +132794,Science and Technology,Science and Technology +129167,Science and Technology,Science and Technology +106603,Science and Technology,Science and Technology +106602,Science and Technology,Science and Technology +106601,Science and Technology,Science and Technology +106599,Science and Technology,Science and Technology +101276,Science and Technology,Science and Technology +101272,Science and Technology,Science and Technology +101266,Science and Technology,Science and Technology +101262,Science and Technology,Science and Technology +101250,Science and Technology,Science and Technology +101228,Science and Technology,Science and Technology +101226,Science and Technology,Science and Technology +101223,Science and Technology,Science and Technology +101197,Science and Technology,Science and Technology +101194,Science and Technology,Science and Technology +162577,Science and Technology,Science and Technology +200438,Science and Technology,Science and Technology +304472,Science and Technology,Science and Technology +297015,Science and Technology,Science and Technology +282512,Science and Technology,Science and Technology +277572,Science and Technology,Science and Technology +269651,Science and Technology,Science and Technology +264450,Science and Technology,Science and Technology +264446,Science and Technology,Science and Technology +264445,Science and Technology,Science and Technology +259372,Science and Technology,Science and Technology +250810,Science and Technology,Science and Technology +245116,Science and Technology,Science and Technology +237116,Science and Technology,Science and Technology +233603,Science and Technology,Science and Technology +227027,Science and Technology,Science and Technology +227026,Science and Technology,Science and Technology +227025,Science and Technology,Science and Technology +223653,Science and Technology,Science and Technology +223651,Science and Technology,Science and Technology +223650,Science and Technology,Science and Technology +207144,Science and Technology,Science and Technology +207141,Science and Technology,Science and Technology +413650,Science and Technology,Science and Technology +413645,Science and Technology,Science and Technology +413640,Science and Technology,Science and Technology +413639,Science and Technology,Science and Technology +413634,Science and Technology,Science and Technology +413585,Science and Technology,Science and Technology +413573,Science and Technology,Science and Technology +411936,Science and Technology,Science and Technology +411928,Science and Technology,Science and Technology +409656,Science and Technology,Science and Technology +405223,Science and Technology,Science and Technology +403300,Science and Technology,Science and Technology +391577,Science and Technology,Science and Technology +391570,Science and Technology,Science and Technology +391564,Science and Technology,Science and Technology +391555,Science and Technology,Science and Technology +391553,Science and Technology,Science and Technology +391552,Science and Technology,Science and Technology +391547,Science and Technology,Science and Technology +391546,Science and Technology,Science and Technology +391545,Science and Technology,Science and Technology +391542,Science and Technology,Science and Technology +388220,Science and Technology,Science and Technology +388217,Science and Technology,Science and Technology +388213,Science and Technology,Science and Technology +388211,Science and Technology,Science and Technology +383820,Science and Technology,Science and Technology +383808,Science and Technology,Science and Technology +383717,Science and Technology,Science and Technology +383713,Science and Technology,Science and Technology +382215,Science and Technology,Science and Technology +382214,Science and Technology,Science and Technology +382213,Science and Technology,Science and Technology +382212,Science and Technology,Science and Technology +382211,Science and Technology,Science and Technology +382208,Science and Technology,Science and Technology +382206,Science and Technology,Science and Technology +381258,Science and Technology,Science and Technology +381251,Science and Technology,Science and Technology +381240,Science and Technology,Science and Technology +381239,Science and Technology,Science and Technology +379733,Science and Technology,Science and Technology +377071,Science and Technology,Science and Technology +377062,Science and Technology,Science and Technology +374819,Science and Technology,Science and Technology +374818,Science and Technology,Science and Technology +374816,Science and Technology,Science and Technology +374814,Science and Technology,Science and Technology +354000,Science and Technology,Science and Technology +353999,Science and Technology,Science and Technology +349280,Science and Technology,Science and Technology +349279,Science and Technology,Science and Technology +341342,Science and Technology,Science and Technology +341337,Science and Technology,Science and Technology +341333,Science and Technology,Science and Technology +341328,Science and Technology,Science and Technology +338616,Science and Technology,Science and Technology +335722,Science and Technology,Science and Technology +335721,Science and Technology,Science and Technology +335719,Science and Technology,Science and Technology +335718,Science and Technology,Science and Technology +335704,Science and Technology,Science and Technology +335684,Science and Technology,Science and Technology +335678,Science and Technology,Science and Technology +335673,Science and Technology,Science and Technology +335669,Science and Technology,Science and Technology +333730,Science and Technology,Science and Technology +325008,Science and Technology,Science and Technology +324717,Science and Technology,Science and Technology +322278,Science and Technology,Science and Technology +322276,Science and Technology,Science and Technology +322273,Science and Technology,Science and Technology +315780,Science and Technology,Science and Technology +315776,Science and Technology,Science and Technology +313171,Science and Technology,Science and Technology +310522,Science and Technology,Science and Technology +310518,Science and Technology,Science and Technology +310516,Science and Technology,Science and Technology +310514,Science and Technology,Science and Technology +310510,Science and Technology,Science and Technology +310509,Science and Technology,Science and Technology +310507,Science and Technology,Science and Technology +310501,Science and Technology,Science and Technology +310498,Science and Technology,Science and Technology +310495,Science and Technology,Science and Technology +544256,Science and Technology,Science and Technology +544254,Science and Technology,Science and Technology +544253,Science and Technology,Science and Technology +544250,Science and Technology,Science and Technology +544249,Science and Technology,Science and Technology +544243,Science and Technology,Science and Technology +541903,Science and Technology,Science and Technology +541902,Science and Technology,Science and Technology +541896,Science and Technology,Science and Technology +529196,Science and Technology,Science and Technology +526371,Science and Technology,Science and Technology +513294,Science and Technology,Science and Technology +504355,Science and Technology,Science and Technology +502311,Science and Technology,Science and Technology +488229,Science and Technology,Science and Technology +488228,Science and Technology,Science and Technology +488227,Science and Technology,Science and Technology +464970,Science and Technology,Science and Technology +464957,Science and Technology,Science and Technology +464955,Science and Technology,Science and Technology +464954,Science and Technology,Science and Technology +464952,Science and Technology,Science and Technology +464948,Science and Technology,Science and Technology +464945,Science and Technology,Science and Technology +464941,Science and Technology,Science and Technology +464940,Science and Technology,Science and Technology +464939,Science and Technology,Science and Technology +464934,Science and Technology,Science and Technology +464922,Science and Technology,Science and Technology +464919,Science and Technology,Science and Technology +464917,Science and Technology,Science and Technology +461317,Science and Technology,Science and Technology +460480,Science and Technology,Science and Technology +460157,Science and Technology,Science and Technology +460152,Science and Technology,Science and Technology +460150,Science and Technology,Science and Technology +459751,Science and Technology,Science and Technology +447479,Science and Technology,Science and Technology +447477,Science and Technology,Science and Technology +444211,Science and Technology,Science and Technology +444210,Science and Technology,Science and Technology +444201,Science and Technology,Science and Technology +444200,Science and Technology,Science and Technology +428912,Science and Technology,Science and Technology +428897,Science and Technology,Science and Technology +428894,Science and Technology,Science and Technology +425836,Science and Technology,Science and Technology +425835,Science and Technology,Science and Technology +425832,Science and Technology,Science and Technology +423705,Science and Technology,Science and Technology +423700,Science and Technology,Science and Technology +416940,Science and Technology,Science and Technology +416939,Science and Technology,Science and Technology +416925,Science and Technology,Science and Technology +416917,Science and Technology,Science and Technology +416908,Science and Technology,Science and Technology +416890,Science and Technology,Science and Technology +166205,Science and Technology,Science and Technology +166204,Science and Technology,Science and Technology +96476,Science and Technology,Science and Technology +199970,Science and Technology,Science and Technology +199961,Science and Technology,Science and Technology +335077,Science and Technology,Science and Technology +335076,Science and Technology,Science and Technology +422868,Science and Technology,Science and Technology +411091,Science and Technology,Science and Technology +151217,Science and Technology,Science and Technology +150057,Science and Technology,Science and Technology +145931,Science and Technology,Science and Technology +108860,Science and Technology,Science and Technology +239573,Science and Technology,Science and Technology +239569,Science and Technology,Science and Technology +211752,Science and Technology,Science and Technology +196353,Science and Technology,Science and Technology +196352,Science and Technology,Science and Technology +196350,Science and Technology,Science and Technology +196349,Science and Technology,Science and Technology +196347,Science and Technology,Science and Technology +196346,Science and Technology,Science and Technology +196345,Science and Technology,Science and Technology +196330,Science and Technology,Science and Technology +196329,Science and Technology,Science and Technology +196328,Science and Technology,Science and Technology +196327,Science and Technology,Science and Technology +196326,Science and Technology,Science and Technology +196325,Science and Technology,Science and Technology +196324,Science and Technology,Science and Technology +188464,Science and Technology,Science and Technology +497915,Science and Technology,Science and Technology +481048,Science and Technology,Science and Technology +470814,Science and Technology,Science and Technology +460808,Science and Technology,Science and Technology +426204,Science and Technology,Science and Technology +426202,Science and Technology,Science and Technology +425638,Science and Technology,Science and Technology +425567,Science and Technology,Science and Technology +425523,Science and Technology,Science and Technology +425522,Science and Technology,Science and Technology +394848,Industry,Industry +394847,Industry,Industry +272491,Industry,Industry +425179,Infrastructure,Infrastructure +425045,Infrastructure,Infrastructure +394849,Infrastructure,Infrastructure +394848,Infrastructure,Infrastructure +394847,Infrastructure,Infrastructure +378432,Infrastructure,Infrastructure +378430,Infrastructure,Infrastructure +340341,Infrastructure,Infrastructure +272491,Infrastructure,Infrastructure +378432,Tourism,Tourism +378430,Tourism,Tourism +340341,Tourism,Tourism +444020,Tourism,Tourism +425179,Tourism,Tourism +425045,Tourism,Tourism +394849,Tourism,Tourism +394848,Tourism,Tourism +101239,International Trade,International Trade +123194,International Trade,International Trade +200012,Transportation,Transportation +161678,Transportation,Transportation +161677,Transportation,Transportation +161676,Transportation,Transportation +161675,Transportation,Transportation +161674,Transportation,Transportation +113779,Transportation,Transportation +101241,Transportation,Transportation +442817,Employment and Training,Employment and Training +442302,Employment and Training,Employment and Training +442827,Employment and Training,Employment and Training +442826,Employment and Training,Employment and Training +442825,Employment and Training,Employment and Training +442824,Employment and Training,Employment and Training +442823,Employment and Training,Employment and Training +442822,Employment and Training,Employment and Training +442821,Employment and Training,Employment and Training +442820,Employment and Training,Employment and Training +442816,Energy,Energy +442302,Energy,Energy +533617,Energy,Energy +500932,Energy,Energy +497383,Energy,Energy +466800,Energy,Energy +443290,Energy,Energy +442826,Energy,Energy +442825,Energy,Energy +442824,Energy,Energy +442823,Energy,Energy +442822,Energy,Energy +442821,Energy,Energy +442820,Energy,Energy +442817,Industry,Industry +533620,Industry,Industry +442827,Industry,Industry +442826,Industry,Industry +442821,Industry,Industry +536719,Labour,Labour +103374,Employment and Training,Employment and Training +404127,Environment,Environment +398661,Environment,Environment +78854,Environment,Environment +250368,Environment,Environment +245292,Environment,Environment +244738,Environment,Environment +244727,Environment,Environment +236292,Environment,Environment +158571,Environment,Environment +353854,Environment,Environment +341279,Environment,Environment +341277,Environment,Environment +341275,Environment,Environment +335155,Environment,Environment +331685,Environment,Environment +327770,Environment,Environment +324553,Environment,Environment +321893,Environment,Environment +321888,Environment,Environment +285694,Environment,Environment +285691,Environment,Environment +276818,Environment,Environment +273252,Environment,Environment +273244,Environment,Environment +285689,Forestry,Forestry +281108,Forestry,Forestry +100136,Forestry,Forestry +96918,Forestry,Forestry +93398,Forestry,Forestry +78854,Forestry,Forestry +149879,Forestry,Forestry +149878,Forestry,Forestry +147236,Forestry,Forestry +147234,Forestry,Forestry +145320,Forestry,Forestry +145318,Forestry,Forestry +142467,Forestry,Forestry +142464,Forestry,Forestry +137315,Forestry,Forestry +129195,Forestry,Forestry +129194,Forestry,Forestry +115654,Forestry,Forestry +111802,Forestry,Forestry +111801,Forestry,Forestry +111800,Forestry,Forestry +100142,Forestry,Forestry +100141,Forestry,Forestry +100139,Forestry,Forestry +100138,Forestry,Forestry +273252,Forestry,Forestry +273244,Forestry,Forestry +254511,Forestry,Forestry +245292,Forestry,Forestry +244738,Forestry,Forestry +244727,Forestry,Forestry +244699,Forestry,Forestry +216329,Forestry,Forestry +211072,Forestry,Forestry +211070,Forestry,Forestry +211054,Forestry,Forestry +211053,Forestry,Forestry +211051,Forestry,Forestry +211050,Forestry,Forestry +206429,Forestry,Forestry +206428,Forestry,Forestry +200027,Forestry,Forestry +200025,Forestry,Forestry +200023,Forestry,Forestry +200022,Forestry,Forestry +193263,Forestry,Forestry +193261,Forestry,Forestry +193258,Forestry,Forestry +193257,Forestry,Forestry +193256,Forestry,Forestry +193255,Forestry,Forestry +193253,Forestry,Forestry +193251,Forestry,Forestry +193250,Forestry,Forestry +193249,Forestry,Forestry +193248,Forestry,Forestry +193246,Forestry,Forestry +163465,Forestry,Forestry +163407,Forestry,Forestry +160901,Forestry,Forestry +160900,Forestry,Forestry +160899,Forestry,Forestry +160898,Forestry,Forestry +160897,Forestry,Forestry +160896,Forestry,Forestry +158571,Forestry,Forestry +155886,Forestry,Forestry +151863,Forestry,Forestry +407324,Forestry,Forestry +404885,Forestry,Forestry +404882,Forestry,Forestry +404880,Forestry,Forestry +404877,Forestry,Forestry +404126,Forestry,Forestry +398671,Forestry,Forestry +395133,Forestry,Forestry +386602,Forestry,Forestry +386600,Forestry,Forestry +386593,Forestry,Forestry +386591,Forestry,Forestry +386590,Forestry,Forestry +386586,Forestry,Forestry +374959,Forestry,Forestry +366461,Forestry,Forestry +365052,Forestry,Forestry +357971,Forestry,Forestry +341277,Forestry,Forestry +329889,Forestry,Forestry +329886,Forestry,Forestry +327773,Forestry,Forestry +327763,Forestry,Forestry +321893,Forestry,Forestry +321888,Forestry,Forestry +285709,Forestry,Forestry +160896,Industry,Industry +158571,Industry,Industry +111800,Industry,Industry +96918,Industry,Industry +93398,Industry,Industry +87196,Industry,Industry +84774,Industry,Industry +155886,Industry,Industry +147236,Industry,Industry +145320,Industry,Industry +145318,Industry,Industry +142467,Industry,Industry +142464,Industry,Industry +137315,Industry,Industry +129195,Industry,Industry +111802,Industry,Industry +111801,Industry,Industry +321893,Industry,Industry +312939,Industry,Industry +163465,Industry,Industry +160901,Industry,Industry +160900,Industry,Industry +160899,Industry,Industry +160898,Industry,Industry +419499,International Trade,International Trade +415132,International Trade,International Trade +100139,International Trade,International Trade +100138,International Trade,International Trade +100136,International Trade,International Trade +96918,International Trade,International Trade +93398,International Trade,International Trade +89235,International Trade,International Trade +87196,International Trade,International Trade +84774,International Trade,International Trade +149879,International Trade,International Trade +149878,International Trade,International Trade +147236,International Trade,International Trade +147234,International Trade,International Trade +145320,International Trade,International Trade +145318,International Trade,International Trade +142467,International Trade,International Trade +142464,International Trade,International Trade +137315,International Trade,International Trade +129194,International Trade,International Trade +115654,International Trade,International Trade +111802,International Trade,International Trade +111801,International Trade,International Trade +111800,International Trade,International Trade +100142,International Trade,International Trade +100141,International Trade,International Trade +263471,International Trade,International Trade +263470,International Trade,International Trade +254512,International Trade,International Trade +254510,International Trade,International Trade +254509,International Trade,International Trade +250356,International Trade,International Trade +230030,International Trade,International Trade +163465,International Trade,International Trade +163407,International Trade,International Trade +160901,International Trade,International Trade +160900,International Trade,International Trade +160899,International Trade,International Trade +160898,International Trade,International Trade +160897,International Trade,International Trade +160896,International Trade,International Trade +155886,International Trade,International Trade +151863,International Trade,International Trade +415131,International Trade,International Trade +412954,International Trade,International Trade +412953,International Trade,International Trade +407325,International Trade,International Trade +407324,International Trade,International Trade +406096,International Trade,International Trade +404887,International Trade,International Trade +404885,International Trade,International Trade +404884,International Trade,International Trade +404882,International Trade,International Trade +404880,International Trade,International Trade +404877,International Trade,International Trade +404125,International Trade,International Trade +404123,International Trade,International Trade +395133,International Trade,International Trade +391465,International Trade,International Trade +390606,International Trade,International Trade +390065,International Trade,International Trade +386582,International Trade,International Trade +386581,International Trade,International Trade +386578,International Trade,International Trade +382067,International Trade,International Trade +381354,International Trade,International Trade +381351,International Trade,International Trade +379979,International Trade,International Trade +379977,International Trade,International Trade +379976,International Trade,International Trade +379974,International Trade,International Trade +379219,International Trade,International Trade +376225,International Trade,International Trade +374966,International Trade,International Trade +374963,International Trade,International Trade +369512,International Trade,International Trade +365060,International Trade,International Trade +359715,International Trade,International Trade +357969,International Trade,International Trade +357968,International Trade,International Trade +343522,International Trade,International Trade +343521,International Trade,International Trade +341272,International Trade,International Trade +329889,International Trade,International Trade +329884,International Trade,International Trade +327774,International Trade,International Trade +327772,International Trade,International Trade +327771,International Trade,International Trade +324552,International Trade,International Trade +324521,International Trade,International Trade +321960,International Trade,International Trade +321893,International Trade,International Trade +321888,International Trade,International Trade +318973,International Trade,International Trade +315652,International Trade,International Trade +315651,International Trade,International Trade +312941,International Trade,International Trade +312939,International Trade,International Trade +285709,International Trade,International Trade +285695,International Trade,International Trade +285693,International Trade,International Trade +285691,International Trade,International Trade +285689,International Trade,International Trade +281108,International Trade,International Trade +273244,International Trade,International Trade +269410,International Trade,International Trade +419504,International Trade,International Trade +419503,International Trade,International Trade +419502,International Trade,International Trade +419501,International Trade,International Trade +163407,Taxation and Finance,Taxation and Finance +386583,Taxation and Finance,Taxation and Finance +111802,Taxation and Finance,Taxation and Finance +111801,Taxation and Finance,Taxation and Finance +93396,Taxation and Finance,Taxation and Finance +93393,Taxation and Finance,Taxation and Finance +93391,Taxation and Finance,Taxation and Finance +87196,Taxation and Finance,Taxation and Finance +353856,Taxation and Finance,Taxation and Finance +263472,Taxation and Finance,Taxation and Finance +111801,Other,Economy +163465,Other,Economy +93396,Other,Economy +93393,Other,Economy +93391,Other,Economy +87196,Other,Economy +188989,Agriculture,Agriculture +379117,Agriculture,Agriculture +151914,Agriculture,Agriculture +151913,Agriculture,Agriculture +277455,Agriculture,Agriculture +277451,Agriculture,Agriculture +277446,Agriculture,Agriculture +247290,Agriculture,Agriculture +247289,Agriculture,Agriculture +240990,Agriculture,Agriculture +240988,Agriculture,Agriculture +226878,Agriculture,Agriculture +226877,Agriculture,Agriculture +197073,Agriculture,Agriculture +188991,Agriculture,Agriculture +469911,Consumer Issues,Consumer Issues +463843,Consumer Issues,Consumer Issues +150316,Consumer Issues,Consumer Issues +145796,Consumer Issues,Consumer Issues +176808,Consumer Issues,Consumer Issues +168736,Consumer Issues,Consumer Issues +168733,Consumer Issues,Consumer Issues +167809,Consumer Issues,Consumer Issues +167618,Consumer Issues,Consumer Issues +163704,Consumer Issues,Consumer Issues +163685,Consumer Issues,Consumer Issues +150321,Consumer Issues,Consumer Issues +150319,Consumer Issues,Consumer Issues +244636,Consumer Issues,Consumer Issues +230195,Consumer Issues,Consumer Issues +223312,Consumer Issues,Consumer Issues +223310,Consumer Issues,Consumer Issues +211850,Consumer Issues,Consumer Issues +196450,Consumer Issues,Consumer Issues +335587,Consumer Issues,Consumer Issues +324454,Consumer Issues,Consumer Issues +324447,Consumer Issues,Consumer Issues +324445,Consumer Issues,Consumer Issues +324442,Consumer Issues,Consumer Issues +315032,Consumer Issues,Consumer Issues +315030,Consumer Issues,Consumer Issues +312949,Consumer Issues,Consumer Issues +296290,Consumer Issues,Consumer Issues +273052,Consumer Issues,Consumer Issues +273051,Consumer Issues,Consumer Issues +273050,Consumer Issues,Consumer Issues +273049,Consumer Issues,Consumer Issues +269470,Consumer Issues,Consumer Issues +497867,Consumer Issues,Consumer Issues +522971,Education,Education +514169,Education,Education +121186,Education,Education +121183,Education,Education +121180,Education,Education +121175,Education,Education +92515,Education,Education +83177,Education,Education +83175,Education,Education +83174,Education,Education +162582,Education,Education +162580,Education,Education +162579,Education,Education +162578,Education,Education +162573,Education,Education +162569,Education,Education +162562,Education,Education +139498,Education,Education +129165,Education,Education +126877,Education,Education +126876,Education,Education +126875,Education,Education +168595,Education,Education +319289,Education,Education +317819,Education,Education +317818,Education,Education +317816,Education,Education +310516,Education,Education +310509,Education,Education +310507,Education,Education +310501,Education,Education +310498,Education,Education +310497,Education,Education +310495,Education,Education +310481,Education,Education +297015,Education,Education +277571,Education,Education +277568,Education,Education +269653,Education,Education +264562,Education,Education +264561,Education,Education +264557,Education,Education +264554,Education,Education +264552,Education,Education +264543,Education,Education +264446,Education,Education +264445,Education,Education +259372,Education,Education +250810,Education,Education +245114,Education,Education +237116,Education,Education +237114,Education,Education +233603,Education,Education +227026,Education,Education +219309,Education,Education +219308,Education,Education +212366,Education,Education +212266,Education,Education +212263,Education,Education +212261,Education,Education +207144,Education,Education +207141,Education,Education +200438,Education,Education +195964,Education,Education +194837,Education,Education +189162,Education,Education +185557,Education,Education +185556,Education,Education +185506,Education,Education +185501,Education,Education +180604,Education,Education +477566,Education,Education +472777,Education,Education +461316,Education,Education +457750,Education,Education +445557,Education,Education +444214,Education,Education +444210,Education,Education +444209,Education,Education +444202,Education,Education +444200,Education,Education +443841,Education,Education +443447,Education,Education +438812,Education,Education +433354,Education,Education +423718,Education,Education +423717,Education,Education +419607,Education,Education +418087,Education,Education +405220,Education,Education +398966,Education,Education +397029,Education,Education +397027,Education,Education +397025,Education,Education +397024,Education,Education +397022,Education,Education +397017,Education,Education +397014,Education,Education +397013,Education,Education +397010,Education,Education +397008,Education,Education +397006,Education,Education +397003,Education,Education +396999,Education,Education +394534,Education,Education +394533,Education,Education +394531,Education,Education +394436,Education,Education +394411,Education,Education +391580,Education,Education +391576,Education,Education +388229,Education,Education +388224,Education,Education +388223,Education,Education +385703,Education,Education +383787,Education,Education +381251,Education,Education +381240,Education,Education +379731,Education,Education +379720,Education,Education +377078,Education,Education +377074,Education,Education +377065,Education,Education +377062,Education,Education +377060,Education,Education +377059,Education,Education +371830,Education,Education +371271,Education,Education +369672,Education,Education +369671,Education,Education +369670,Education,Education +356468,Education,Education +341348,Education,Education +330194,Education,Education +540140,Employment and Training,Employment and Training +538298,Employment and Training,Employment and Training +80481,Employment and Training,Employment and Training +383787,Employment and Training,Employment and Training +377065,Employment and Training,Employment and Training +347273,Employment and Training,Employment and Training +338598,Employment and Training,Employment and Training +460481,Employment and Training,Employment and Training +460157,Employment and Training,Employment and Training +454739,Employment and Training,Employment and Training +428893,Employment and Training,Employment and Training +394534,Employment and Training,Employment and Training +392530,Employment and Training,Employment and Training +391578,Employment and Training,Employment and Training +544242,Employment and Training,Employment and Training +464964,Energy,Energy +462869,Energy,Energy +101250,Energy,Energy +101168,Energy,Energy +101140,Energy,Energy +101120,Energy,Energy +97493,Energy,Energy +101266,Energy,Energy +319289,Energy,Energy +317821,Energy,Energy +317820,Energy,Energy +317818,Energy,Energy +317816,Energy,Energy +316001,Energy,Energy +315780,Energy,Energy +315779,Energy,Energy +313171,Energy,Energy +310509,Energy,Energy +310481,Energy,Energy +304472,Energy,Energy +282512,Energy,Energy +277572,Energy,Energy +269650,Energy,Energy +264450,Energy,Energy +259372,Energy,Energy +250814,Energy,Energy +435923,Energy,Energy +435914,Energy,Energy +430531,Energy,Energy +428914,Energy,Energy +422463,Energy,Energy +422423,Energy,Energy +416933,Energy,Energy +416871,Energy,Energy +403282,Energy,Energy +403262,Energy,Energy +396972,Energy,Energy +396608,Energy,Energy +396597,Energy,Energy +396588,Energy,Energy +394487,Energy,Energy +394470,Energy,Energy +394448,Energy,Energy +394440,Energy,Energy +394439,Energy,Energy +391582,Energy,Energy +391555,Energy,Energy +391553,Energy,Energy +391552,Energy,Energy +391547,Energy,Energy +391546,Energy,Energy +391545,Energy,Energy +382211,Energy,Energy +382208,Energy,Energy +382206,Energy,Energy +381242,Energy,Energy +381239,Energy,Energy +379718,Energy,Energy +374819,Energy,Energy +374818,Energy,Energy +374816,Energy,Energy +374814,Energy,Energy +351227,Energy,Energy +351226,Energy,Energy +351224,Energy,Energy +351223,Energy,Energy +351221,Energy,Energy +351220,Energy,Energy +351217,Energy,Energy +347283,Energy,Energy +347276,Energy,Energy +344084,Energy,Energy +344080,Energy,Energy +344078,Energy,Energy +344077,Energy,Energy +344076,Energy,Energy +341325,Energy,Energy +341323,Energy,Energy +341319,Energy,Energy +341317,Energy,Energy +341315,Energy,Energy +338613,Energy,Energy +335722,Energy,Energy +335721,Energy,Energy +335719,Energy,Energy +335718,Energy,Energy +335704,Energy,Energy +335684,Energy,Energy +335678,Energy,Energy +335673,Energy,Energy +335669,Energy,Energy +333729,Energy,Energy +325007,Energy,Energy +325003,Energy,Energy +324792,Energy,Energy +324722,Energy,Energy +324721,Energy,Energy +322305,Energy,Energy +322296,Energy,Energy +322291,Energy,Energy +322278,Energy,Energy +532176,Energy,Energy +522968,Energy,Energy +522950,Energy,Energy +517616,Energy,Energy +517613,Energy,Energy +517609,Energy,Energy +407724,Environment,Environment +381239,Environment,Environment +129165,Environment,Environment +126876,Environment,Environment +106603,Environment,Environment +101266,Environment,Environment +101250,Environment,Environment +101168,Environment,Environment +101140,Environment,Environment +101120,Environment,Environment +88072,Environment,Environment +88070,Environment,Environment +88067,Environment,Environment +315780,Environment,Environment +310509,Environment,Environment +310481,Environment,Environment +282512,Environment,Environment +269650,Environment,Environment +264562,Environment,Environment +264450,Environment,Environment +259372,Environment,Environment +250814,Environment,Environment +449403,Environment,Environment +449402,Environment,Environment +435923,Environment,Environment +423714,Environment,Environment +422464,Environment,Environment +416933,Environment,Environment +413573,Environment,Environment +409651,Environment,Environment +84454,Energy,Energy +76701,Energy,Energy +120254,Energy,Energy +119694,Energy,Energy +106382,Energy,Energy +90512,Energy,Energy +88229,Energy,Energy +88209,Energy,Energy +88197,Energy,Energy +84455,Industry,Industry +84454,Industry,Industry +119694,Industry,Industry +88229,Industry,Industry +88197,Regional Development,Regional Development +76694,Energy,Energy +76694,Infrastructure,Infrastructure +90511,Infrastructure,Infrastructure +96476,Consumer Issues,Consumer Issues +166206,Consumer Issues,Consumer Issues +166205,Consumer Issues,Consumer Issues +371238,Employment and Training,Employment and Training +371236,Employment and Training,Employment and Training +96476,Employment and Training,Employment and Training +371251,Employment and Training,Employment and Training +166206,Energy,Energy +166205,Energy,Energy +166204,Energy,Energy +166204,Environment,Environment +132708,Environment,Environment +96476,Environment,Environment +166206,Environment,Environment +411378,Industry,Industry +411373,Industry,Industry +96476,Industry,Industry +199970,Industry,Industry +199961,Industry,Industry +166206,Industry,Industry +166205,Industry,Industry +166204,Industry,Industry +371251,Industry,Industry +371249,Industry,Industry +371238,Industry,Industry +371236,Industry,Industry +423096,Industry,Industry +166204,International Relations,International Relations +423096,International Relations,International Relations +96476,International Relations,International Relations +96475,International Relations,International Relations +166206,International Relations,International Relations +411378,International Trade,International Trade +411373,International Trade,International Trade +96476,International Trade,International Trade +96475,International Trade,International Trade +166206,International Trade,International Trade +166205,International Trade,International Trade +166204,International Trade,International Trade +132721,International Trade,International Trade +132708,International Trade,International Trade +199970,International Trade,International Trade +199961,International Trade,International Trade +371251,International Trade,International Trade +371249,International Trade,International Trade +371238,International Trade,International Trade +371236,International Trade,International Trade +423096,International Trade,International Trade +371249,Regional Development,Regional Development +371238,Regional Development,Regional Development +96476,Regional Development,Regional Development +166206,Regional Development,Regional Development +166204,Regional Development,Regional Development +199970,Taxation and Finance,Taxation and Finance +199961,Taxation and Finance,Taxation and Finance +166206,Taxation and Finance,Taxation and Finance +166204,Taxation and Finance,Taxation and Finance +132721,Taxation and Finance,Taxation and Finance +132708,Taxation and Finance,Taxation and Finance +166205,Transportation,Transportation +166204,Transportation,Transportation +96476,Transportation,Transportation +156844,Health,Health +156839,Health,Health +131174,Health,Health +113634,Health,Health +85554,Health,Health +287109,Health,Health +241374,Health,Health +174429,Health,Health +107674,Other,Social Policy +154628,Other,Social Policy +131194,Other,Social Policy +131174,Other,Social Policy +176645,Health,Health +176644,Health,Health +335077,Transportation,Transportation +335076,Transportation,Transportation +377575,Transportation,Transportation +351015,Transportation,Transportation +341063,Agriculture,Agriculture +341062,Agriculture,Agriculture +202734,Agriculture,Agriculture +202731,Agriculture,Agriculture +194997,Agriculture,Agriculture +194996,Agriculture,Agriculture +194992,Agriculture,Agriculture +391449,Agriculture,Agriculture +391448,Agriculture,Agriculture +387860,Agriculture,Agriculture +387859,Agriculture,Agriculture +387821,Agriculture,Agriculture +341065,Agriculture,Agriculture +194996,Energy,Energy +194992,Energy,Energy +391449,Energy,Energy +391448,Energy,Energy +387860,Energy,Energy +387859,Energy,Energy +387821,Energy,Energy +202734,Energy,Energy +202731,Energy,Energy +391448,Environment,Environment +387860,Environment,Environment +387859,Environment,Environment +387821,Environment,Environment +387859,Industry,Industry +387821,Industry,Industry +391449,Industry,Industry +391448,Industry,Industry +387821,Transportation,Transportation +531816,Employment and Training,Employment and Training +531815,Employment and Training,Employment and Training +92627,Employment and Training,Employment and Training +92626,Employment and Training,Employment and Training +92625,Employment and Training,Employment and Training +199666,Employment and Training,Employment and Training +199665,Employment and Training,Employment and Training +196353,Employment and Training,Employment and Training +196352,Employment and Training,Employment and Training +196350,Employment and Training,Employment and Training +196349,Employment and Training,Employment and Training +196347,Employment and Training,Employment and Training +196346,Employment and Training,Employment and Training +196345,Employment and Training,Employment and Training +196330,Employment and Training,Employment and Training +196329,Employment and Training,Employment and Training +196328,Employment and Training,Employment and Training +196327,Employment and Training,Employment and Training +196326,Employment and Training,Employment and Training +196325,Employment and Training,Employment and Training +196324,Employment and Training,Employment and Training +170755,Employment and Training,Employment and Training +170753,Employment and Training,Employment and Training +163529,Employment and Training,Employment and Training +163527,Employment and Training,Employment and Training +156450,Employment and Training,Employment and Training +336071,Employment and Training,Employment and Training +336069,Employment and Training,Employment and Training +336068,Employment and Training,Employment and Training +336067,Employment and Training,Employment and Training +336065,Employment and Training,Employment and Training +336064,Employment and Training,Employment and Training +336063,Employment and Training,Employment and Training +336062,Employment and Training,Employment and Training +336061,Employment and Training,Employment and Training +336060,Employment and Training,Employment and Training +336059,Employment and Training,Employment and Training +336057,Employment and Training,Employment and Training +336056,Employment and Training,Employment and Training +336055,Employment and Training,Employment and Training +336054,Employment and Training,Employment and Training +336053,Employment and Training,Employment and Training +336052,Employment and Training,Employment and Training +336051,Employment and Training,Employment and Training +336050,Employment and Training,Employment and Training +336049,Employment and Training,Employment and Training +336048,Employment and Training,Employment and Training +336047,Employment and Training,Employment and Training +336046,Employment and Training,Employment and Training +336045,Employment and Training,Employment and Training +336044,Employment and Training,Employment and Training +336043,Employment and Training,Employment and Training +336032,Employment and Training,Employment and Training +336031,Employment and Training,Employment and Training +336030,Employment and Training,Employment and Training +336029,Employment and Training,Employment and Training +336028,Employment and Training,Employment and Training +336027,Employment and Training,Employment and Training +336026,Employment and Training,Employment and Training +336024,Employment and Training,Employment and Training +336022,Employment and Training,Employment and Training +336021,Employment and Training,Employment and Training +336020,Employment and Training,Employment and Training +336017,Employment and Training,Employment and Training +336013,Employment and Training,Employment and Training +332150,Employment and Training,Employment and Training +332149,Employment and Training,Employment and Training +327854,Employment and Training,Employment and Training +323869,Employment and Training,Employment and Training +321654,Employment and Training,Employment and Training +319218,Employment and Training,Employment and Training +319217,Employment and Training,Employment and Training +319155,Employment and Training,Employment and Training +316629,Employment and Training,Employment and Training +316610,Employment and Training,Employment and Training +315768,Employment and Training,Employment and Training +315767,Employment and Training,Employment and Training +315766,Employment and Training,Employment and Training +312899,Employment and Training,Employment and Training +312897,Employment and Training,Employment and Training +312884,Employment and Training,Employment and Training +309031,Employment and Training,Employment and Training +309030,Employment and Training,Employment and Training +309029,Employment and Training,Employment and Training +308210,Employment and Training,Employment and Training +308209,Employment and Training,Employment and Training +308145,Employment and Training,Employment and Training +308140,Employment and Training,Employment and Training +308133,Employment and Training,Employment and Training +308131,Employment and Training,Employment and Training +299829,Employment and Training,Employment and Training +299309,Employment and Training,Employment and Training +299289,Employment and Training,Employment and Training +299269,Employment and Training,Employment and Training +285989,Employment and Training,Employment and Training +277889,Employment and Training,Employment and Training +277871,Employment and Training,Employment and Training +277869,Employment and Training,Employment and Training +272352,Employment and Training,Employment and Training +272351,Employment and Training,Employment and Training +272350,Employment and Training,Employment and Training +272349,Employment and Training,Employment and Training +257809,Employment and Training,Employment and Training +248750,Employment and Training,Employment and Training +248749,Employment and Training,Employment and Training +239573,Employment and Training,Employment and Training +239569,Employment and Training,Employment and Training +230290,Employment and Training,Employment and Training +226216,Employment and Training,Employment and Training +223155,Employment and Training,Employment and Training +411091,Employment and Training,Employment and Training +411090,Employment and Training,Employment and Training +407205,Employment and Training,Employment and Training +406393,Employment and Training,Employment and Training +403523,Employment and Training,Employment and Training +401670,Employment and Training,Employment and Training +401667,Employment and Training,Employment and Training +401666,Employment and Training,Employment and Training +401665,Employment and Training,Employment and Training +401664,Employment and Training,Employment and Training +401642,Employment and Training,Employment and Training +401640,Employment and Training,Employment and Training +401639,Employment and Training,Employment and Training +401637,Employment and Training,Employment and Training +401636,Employment and Training,Employment and Training +401635,Employment and Training,Employment and Training +401634,Employment and Training,Employment and Training +401633,Employment and Training,Employment and Training +401632,Employment and Training,Employment and Training +401630,Employment and Training,Employment and Training +401627,Employment and Training,Employment and Training +401626,Employment and Training,Employment and Training +401625,Employment and Training,Employment and Training +401624,Employment and Training,Employment and Training +401623,Employment and Training,Employment and Training +401622,Employment and Training,Employment and Training +401621,Employment and Training,Employment and Training +401620,Employment and Training,Employment and Training +401619,Employment and Training,Employment and Training +401618,Employment and Training,Employment and Training +401617,Employment and Training,Employment and Training +401615,Employment and Training,Employment and Training +401612,Employment and Training,Employment and Training +401611,Employment and Training,Employment and Training +401610,Employment and Training,Employment and Training +401609,Employment and Training,Employment and Training +401599,Employment and Training,Employment and Training +401598,Employment and Training,Employment and Training +401597,Employment and Training,Employment and Training +401596,Employment and Training,Employment and Training +401595,Employment and Training,Employment and Training +401594,Employment and Training,Employment and Training +401593,Employment and Training,Employment and Training +401590,Employment and Training,Employment and Training +401589,Employment and Training,Employment and Training +401588,Employment and Training,Employment and Training +401587,Employment and Training,Employment and Training +401585,Employment and Training,Employment and Training +401584,Employment and Training,Employment and Training +401583,Employment and Training,Employment and Training +401582,Employment and Training,Employment and Training +401581,Employment and Training,Employment and Training +401580,Employment and Training,Employment and Training +401579,Employment and Training,Employment and Training +401578,Employment and Training,Employment and Training +401577,Employment and Training,Employment and Training +401553,Employment and Training,Employment and Training +401552,Employment and Training,Employment and Training +401551,Employment and Training,Employment and Training +401550,Employment and Training,Employment and Training +401549,Employment and Training,Employment and Training +401548,Employment and Training,Employment and Training +401547,Employment and Training,Employment and Training +401546,Employment and Training,Employment and Training +401545,Employment and Training,Employment and Training +401544,Employment and Training,Employment and Training +401543,Employment and Training,Employment and Training +401536,Employment and Training,Employment and Training +401534,Employment and Training,Employment and Training +399834,Employment and Training,Employment and Training +391779,Employment and Training,Employment and Training +389526,Employment and Training,Employment and Training +379916,Employment and Training,Employment and Training +379893,Employment and Training,Employment and Training +379892,Employment and Training,Employment and Training +379625,Employment and Training,Employment and Training +379624,Employment and Training,Employment and Training +379622,Employment and Training,Employment and Training +379613,Employment and Training,Employment and Training +378031,Employment and Training,Employment and Training +377638,Employment and Training,Employment and Training +377637,Employment and Training,Employment and Training +377636,Employment and Training,Employment and Training +377635,Employment and Training,Employment and Training +377634,Employment and Training,Employment and Training +377633,Employment and Training,Employment and Training +377632,Employment and Training,Employment and Training +377631,Employment and Training,Employment and Training +377630,Employment and Training,Employment and Training +377629,Employment and Training,Employment and Training +377628,Employment and Training,Employment and Training +377627,Employment and Training,Employment and Training +377626,Employment and Training,Employment and Training +377625,Employment and Training,Employment and Training +377624,Employment and Training,Employment and Training +377623,Employment and Training,Employment and Training +377622,Employment and Training,Employment and Training +377621,Employment and Training,Employment and Training +377620,Employment and Training,Employment and Training +377619,Employment and Training,Employment and Training +377617,Employment and Training,Employment and Training +377616,Employment and Training,Employment and Training +377615,Employment and Training,Employment and Training +377614,Employment and Training,Employment and Training +377613,Employment and Training,Employment and Training +377612,Employment and Training,Employment and Training +377611,Employment and Training,Employment and Training +377610,Employment and Training,Employment and Training +377609,Employment and Training,Employment and Training +377608,Employment and Training,Employment and Training +377607,Employment and Training,Employment and Training +377606,Employment and Training,Employment and Training +377605,Employment and Training,Employment and Training +377604,Employment and Training,Employment and Training +377603,Employment and Training,Employment and Training +377602,Employment and Training,Employment and Training +377601,Employment and Training,Employment and Training +377600,Employment and Training,Employment and Training +377599,Employment and Training,Employment and Training +377598,Employment and Training,Employment and Training +377597,Employment and Training,Employment and Training +377596,Employment and Training,Employment and Training +377595,Employment and Training,Employment and Training +377594,Employment and Training,Employment and Training +377593,Employment and Training,Employment and Training +377592,Employment and Training,Employment and Training +377591,Employment and Training,Employment and Training +377590,Employment and Training,Employment and Training +377589,Employment and Training,Employment and Training +377588,Employment and Training,Employment and Training +377587,Employment and Training,Employment and Training +377586,Employment and Training,Employment and Training +377585,Employment and Training,Employment and Training +377584,Employment and Training,Employment and Training +377583,Employment and Training,Employment and Training +377582,Employment and Training,Employment and Training +377581,Employment and Training,Employment and Training +377580,Employment and Training,Employment and Training +377579,Employment and Training,Employment and Training +377578,Employment and Training,Employment and Training +377096,Employment and Training,Employment and Training +371862,Employment and Training,Employment and Training +371604,Employment and Training,Employment and Training +371603,Employment and Training,Employment and Training +369791,Employment and Training,Employment and Training +369790,Employment and Training,Employment and Training +368966,Employment and Training,Employment and Training +368965,Employment and Training,Employment and Training +368964,Employment and Training,Employment and Training +368963,Employment and Training,Employment and Training +368962,Employment and Training,Employment and Training +365277,Employment and Training,Employment and Training +365275,Employment and Training,Employment and Training +362216,Employment and Training,Employment and Training +358908,Employment and Training,Employment and Training +358887,Employment and Training,Employment and Training +355581,Employment and Training,Employment and Training +351594,Employment and Training,Employment and Training +350156,Employment and Training,Employment and Training +349700,Employment and Training,Employment and Training +349699,Employment and Training,Employment and Training +349698,Employment and Training,Employment and Training +349697,Employment and Training,Employment and Training +345578,Employment and Training,Employment and Training +345537,Employment and Training,Employment and Training +345518,Employment and Training,Employment and Training +338624,Employment and Training,Employment and Training +338623,Employment and Training,Employment and Training +338164,Employment and Training,Employment and Training +336674,Employment and Training,Employment and Training +336673,Employment and Training,Employment and Training +336672,Employment and Training,Employment and Training +336671,Employment and Training,Employment and Training +336670,Employment and Training,Employment and Training +336669,Employment and Training,Employment and Training +336096,Employment and Training,Employment and Training +336094,Employment and Training,Employment and Training +336093,Employment and Training,Employment and Training +336092,Employment and Training,Employment and Training +336091,Employment and Training,Employment and Training +336090,Employment and Training,Employment and Training +336089,Employment and Training,Employment and Training +336088,Employment and Training,Employment and Training +336086,Employment and Training,Employment and Training +336085,Employment and Training,Employment and Training +336084,Employment and Training,Employment and Training +336082,Employment and Training,Employment and Training +336081,Employment and Training,Employment and Training +336080,Employment and Training,Employment and Training +336078,Employment and Training,Employment and Training +336077,Employment and Training,Employment and Training +336076,Employment and Training,Employment and Training +336075,Employment and Training,Employment and Training +336073,Employment and Training,Employment and Training +336072,Employment and Training,Employment and Training +509629,Employment and Training,Employment and Training +508738,Employment and Training,Employment and Training +508733,Employment and Training,Employment and Training +508729,Employment and Training,Employment and Training +508710,Employment and Training,Employment and Training +508406,Employment and Training,Employment and Training +508405,Employment and Training,Employment and Training +508404,Employment and Training,Employment and Training +508403,Employment and Training,Employment and Training +508402,Employment and Training,Employment and Training +508401,Employment and Training,Employment and Training +508400,Employment and Training,Employment and Training +508399,Employment and Training,Employment and Training +508398,Employment and Training,Employment and Training +508396,Employment and Training,Employment and Training +508395,Employment and Training,Employment and Training +508393,Employment and Training,Employment and Training +508392,Employment and Training,Employment and Training +508391,Employment and Training,Employment and Training +508390,Employment and Training,Employment and Training +508389,Employment and Training,Employment and Training +508388,Employment and Training,Employment and Training +508387,Employment and Training,Employment and Training +508386,Employment and Training,Employment and Training +508385,Employment and Training,Employment and Training +508383,Employment and Training,Employment and Training +508382,Employment and Training,Employment and Training +508381,Employment and Training,Employment and Training +508379,Employment and Training,Employment and Training +508378,Employment and Training,Employment and Training +508377,Employment and Training,Employment and Training +508376,Employment and Training,Employment and Training +508375,Employment and Training,Employment and Training +508374,Employment and Training,Employment and Training +508373,Employment and Training,Employment and Training +508372,Employment and Training,Employment and Training +508371,Employment and Training,Employment and Training +508369,Employment and Training,Employment and Training +508367,Employment and Training,Employment and Training +508365,Employment and Training,Employment and Training +508364,Employment and Training,Employment and Training +508230,Employment and Training,Employment and Training +508226,Employment and Training,Employment and Training +508225,Employment and Training,Employment and Training +508222,Employment and Training,Employment and Training +508209,Employment and Training,Employment and Training +508205,Employment and Training,Employment and Training +508203,Employment and Training,Employment and Training +508200,Employment and Training,Employment and Training +508195,Employment and Training,Employment and Training +508191,Employment and Training,Employment and Training +508186,Employment and Training,Employment and Training +508181,Employment and Training,Employment and Training +508179,Employment and Training,Employment and Training +508177,Employment and Training,Employment and Training +506001,Employment and Training,Employment and Training +506000,Employment and Training,Employment and Training +505999,Employment and Training,Employment and Training +499979,Employment and Training,Employment and Training +499978,Employment and Training,Employment and Training +499977,Employment and Training,Employment and Training +497916,Employment and Training,Employment and Training +497915,Employment and Training,Employment and Training +497854,Employment and Training,Employment and Training +497760,Employment and Training,Employment and Training +495152,Employment and Training,Employment and Training +495150,Employment and Training,Employment and Training +491158,Employment and Training,Employment and Training +491149,Employment and Training,Employment and Training +488644,Employment and Training,Employment and Training +486113,Employment and Training,Employment and Training +486112,Employment and Training,Employment and Training +485705,Employment and Training,Employment and Training +483759,Employment and Training,Employment and Training +483758,Employment and Training,Employment and Training +483755,Employment and Training,Employment and Training +483754,Employment and Training,Employment and Training +483752,Employment and Training,Employment and Training +483751,Employment and Training,Employment and Training +483750,Employment and Training,Employment and Training +483749,Employment and Training,Employment and Training +483747,Employment and Training,Employment and Training +483745,Employment and Training,Employment and Training +481048,Employment and Training,Employment and Training +481047,Employment and Training,Employment and Training +479298,Employment and Training,Employment and Training +479182,Employment and Training,Employment and Training +478691,Employment and Training,Employment and Training +478097,Employment and Training,Employment and Training +476255,Employment and Training,Employment and Training +476254,Employment and Training,Employment and Training +474672,Employment and Training,Employment and Training +470825,Employment and Training,Employment and Training +470814,Employment and Training,Employment and Training +463288,Employment and Training,Employment and Training +460808,Employment and Training,Employment and Training +459408,Employment and Training,Employment and Training +459039,Employment and Training,Employment and Training +458003,Employment and Training,Employment and Training +454830,Employment and Training,Employment and Training +452753,Employment and Training,Employment and Training +452631,Employment and Training,Employment and Training +452618,Employment and Training,Employment and Training +452610,Employment and Training,Employment and Training +452606,Employment and Training,Employment and Training +452605,Employment and Training,Employment and Training +452427,Employment and Training,Employment and Training +452426,Employment and Training,Employment and Training +452425,Employment and Training,Employment and Training +452423,Employment and Training,Employment and Training +452422,Employment and Training,Employment and Training +452421,Employment and Training,Employment and Training +452418,Employment and Training,Employment and Training +452417,Employment and Training,Employment and Training +452416,Employment and Training,Employment and Training +452415,Employment and Training,Employment and Training +452414,Employment and Training,Employment and Training +452413,Employment and Training,Employment and Training +452412,Employment and Training,Employment and Training +452411,Employment and Training,Employment and Training +452410,Employment and Training,Employment and Training +452409,Employment and Training,Employment and Training +452408,Employment and Training,Employment and Training +452407,Employment and Training,Employment and Training +452406,Employment and Training,Employment and Training +452404,Employment and Training,Employment and Training +452403,Employment and Training,Employment and Training +452402,Employment and Training,Employment and Training +452401,Employment and Training,Employment and Training +452400,Employment and Training,Employment and Training +452399,Employment and Training,Employment and Training +452398,Employment and Training,Employment and Training +452397,Employment and Training,Employment and Training +452395,Employment and Training,Employment and Training +452394,Employment and Training,Employment and Training +452393,Employment and Training,Employment and Training +452392,Employment and Training,Employment and Training +452390,Employment and Training,Employment and Training +452388,Employment and Training,Employment and Training +452387,Employment and Training,Employment and Training +452384,Employment and Training,Employment and Training +452382,Employment and Training,Employment and Training +452375,Employment and Training,Employment and Training +452372,Employment and Training,Employment and Training +452370,Employment and Training,Employment and Training +452369,Employment and Training,Employment and Training +452368,Employment and Training,Employment and Training +452364,Employment and Training,Employment and Training +452355,Employment and Training,Employment and Training +452354,Employment and Training,Employment and Training +452351,Employment and Training,Employment and Training +452341,Employment and Training,Employment and Training +452337,Employment and Training,Employment and Training +452336,Employment and Training,Employment and Training +452335,Employment and Training,Employment and Training +452333,Employment and Training,Employment and Training +452332,Employment and Training,Employment and Training +452331,Employment and Training,Employment and Training +452330,Employment and Training,Employment and Training +452329,Employment and Training,Employment and Training +452327,Employment and Training,Employment and Training +452324,Employment and Training,Employment and Training +452323,Employment and Training,Employment and Training +452322,Employment and Training,Employment and Training +452320,Employment and Training,Employment and Training +452279,Employment and Training,Employment and Training +452276,Employment and Training,Employment and Training +452274,Employment and Training,Employment and Training +452271,Employment and Training,Employment and Training +452265,Employment and Training,Employment and Training +440703,Employment and Training,Employment and Training +440702,Employment and Training,Employment and Training +434580,Employment and Training,Employment and Training +428672,Employment and Training,Employment and Training +428208,Employment and Training,Employment and Training +428207,Employment and Training,Employment and Training +428206,Employment and Training,Employment and Training +428204,Employment and Training,Employment and Training +428203,Employment and Training,Employment and Training +427798,Employment and Training,Employment and Training +427797,Employment and Training,Employment and Training +427792,Employment and Training,Employment and Training +427791,Employment and Training,Employment and Training +427787,Employment and Training,Employment and Training +427785,Employment and Training,Employment and Training +427784,Employment and Training,Employment and Training +427782,Employment and Training,Employment and Training +427772,Employment and Training,Employment and Training +427753,Employment and Training,Employment and Training +427752,Employment and Training,Employment and Training +427751,Employment and Training,Employment and Training +427750,Employment and Training,Employment and Training +427748,Employment and Training,Employment and Training +427740,Employment and Training,Employment and Training +427734,Employment and Training,Employment and Training +427722,Employment and Training,Employment and Training +427721,Employment and Training,Employment and Training +427720,Employment and Training,Employment and Training +427457,Employment and Training,Employment and Training +427456,Employment and Training,Employment and Training +427455,Employment and Training,Employment and Training +427454,Employment and Training,Employment and Training +427453,Employment and Training,Employment and Training +427452,Employment and Training,Employment and Training +427451,Employment and Training,Employment and Training +427450,Employment and Training,Employment and Training +427419,Employment and Training,Employment and Training +427418,Employment and Training,Employment and Training +427287,Employment and Training,Employment and Training +427286,Employment and Training,Employment and Training +427285,Employment and Training,Employment and Training +427284,Employment and Training,Employment and Training +427283,Employment and Training,Employment and Training +427282,Employment and Training,Employment and Training +427281,Employment and Training,Employment and Training +427280,Employment and Training,Employment and Training +427279,Employment and Training,Employment and Training +427278,Employment and Training,Employment and Training +427277,Employment and Training,Employment and Training +427276,Employment and Training,Employment and Training +427275,Employment and Training,Employment and Training +427274,Employment and Training,Employment and Training +427273,Employment and Training,Employment and Training +427272,Employment and Training,Employment and Training +427271,Employment and Training,Employment and Training +427245,Employment and Training,Employment and Training +427244,Employment and Training,Employment and Training +426210,Employment and Training,Employment and Training +426207,Employment and Training,Employment and Training +426206,Employment and Training,Employment and Training +426205,Employment and Training,Employment and Training +426204,Employment and Training,Employment and Training +426202,Employment and Training,Employment and Training +426200,Employment and Training,Employment and Training +426198,Employment and Training,Employment and Training +426196,Employment and Training,Employment and Training +425646,Employment and Training,Employment and Training +425645,Employment and Training,Employment and Training +425644,Employment and Training,Employment and Training +425643,Employment and Training,Employment and Training +425642,Employment and Training,Employment and Training +425641,Employment and Training,Employment and Training +425640,Employment and Training,Employment and Training +425639,Employment and Training,Employment and Training +425638,Employment and Training,Employment and Training +425637,Employment and Training,Employment and Training +425636,Employment and Training,Employment and Training +425567,Employment and Training,Employment and Training +425528,Employment and Training,Employment and Training +425527,Employment and Training,Employment and Training +425526,Employment and Training,Employment and Training +425525,Employment and Training,Employment and Training +425524,Employment and Training,Employment and Training +425523,Employment and Training,Employment and Training +425522,Employment and Training,Employment and Training +425521,Employment and Training,Employment and Training +425520,Employment and Training,Employment and Training +425519,Employment and Training,Employment and Training +425518,Employment and Training,Employment and Training +425517,Employment and Training,Employment and Training +425516,Employment and Training,Employment and Training +425515,Employment and Training,Employment and Training +425514,Employment and Training,Employment and Training +425513,Employment and Training,Employment and Training +425512,Employment and Training,Employment and Training +422870,Employment and Training,Employment and Training +422869,Employment and Training,Employment and Training +422868,Employment and Training,Employment and Training +415186,Employment and Training,Employment and Training +535978,Employment and Training,Employment and Training +452401,Health,Health +452400,Health,Health +151217,Health,Health +150057,Health,Health +199666,Health,Health +199665,Health,Health +196353,Health,Health +196352,Health,Health +196350,Health,Health +196349,Health,Health +196347,Health,Health +196346,Health,Health +196345,Health,Health +196330,Health,Health +196329,Health,Health +196328,Health,Health +196327,Health,Health +196326,Health,Health +196325,Health,Health +196324,Health,Health +188464,Health,Health +170755,Health,Health +170753,Health,Health +371603,Health,Health +355581,Health,Health +350161,Health,Health +350160,Health,Health +350158,Health,Health +321653,Health,Health +315769,Health,Health +311049,Health,Health +308249,Health,Health +217808,Health,Health +211752,Health,Health +401632,Health,Health +401630,Health,Health +401627,Health,Health +401626,Health,Health +401625,Health,Health +401624,Health,Health +401623,Health,Health +401622,Health,Health +401621,Health,Health +401620,Health,Health +401619,Health,Health +401618,Health,Health +401617,Health,Health +401615,Health,Health +401612,Health,Health +401611,Health,Health +401610,Health,Health +401609,Health,Health +401599,Health,Health +401598,Health,Health +401597,Health,Health +401596,Health,Health +401595,Health,Health +401594,Health,Health +401593,Health,Health +401590,Health,Health +401589,Health,Health +401588,Health,Health +401587,Health,Health +401585,Health,Health +401584,Health,Health +401583,Health,Health +401582,Health,Health +401581,Health,Health +401580,Health,Health +401579,Health,Health +401578,Health,Health +401577,Health,Health +401553,Health,Health +401552,Health,Health +401551,Health,Health +401550,Health,Health +401549,Health,Health +401548,Health,Health +401547,Health,Health +401546,Health,Health +401545,Health,Health +401544,Health,Health +401543,Health,Health +401536,Health,Health +401534,Health,Health +399834,Health,Health +379892,Health,Health +379625,Health,Health +379622,Health,Health +379613,Health,Health +378031,Health,Health +377639,Health,Health +377638,Health,Health +377637,Health,Health +377636,Health,Health +377635,Health,Health +377634,Health,Health +377633,Health,Health +377632,Health,Health +377630,Health,Health +377629,Health,Health +377628,Health,Health +377627,Health,Health +377626,Health,Health +377625,Health,Health +377624,Health,Health +377623,Health,Health +377622,Health,Health +377621,Health,Health +377619,Health,Health +377617,Health,Health +377616,Health,Health +377615,Health,Health +377613,Health,Health +377612,Health,Health +377609,Health,Health +377602,Health,Health +377601,Health,Health +377598,Health,Health +377595,Health,Health +371862,Health,Health +371604,Health,Health +452399,Health,Health +452398,Health,Health +452397,Health,Health +452395,Health,Health +452394,Health,Health +452393,Health,Health +452392,Health,Health +452390,Health,Health +452388,Health,Health +452387,Health,Health +452384,Health,Health +452382,Health,Health +452375,Health,Health +452372,Health,Health +452370,Health,Health +452369,Health,Health +452368,Health,Health +452364,Health,Health +452355,Health,Health +452354,Health,Health +452351,Health,Health +452341,Health,Health +452337,Health,Health +452336,Health,Health +452335,Health,Health +452333,Health,Health +452332,Health,Health +452331,Health,Health +452330,Health,Health +452329,Health,Health +452327,Health,Health +452324,Health,Health +452323,Health,Health +452322,Health,Health +452320,Health,Health +452279,Health,Health +452276,Health,Health +452274,Health,Health +452271,Health,Health +452265,Health,Health +440703,Health,Health +440702,Health,Health +434581,Health,Health +434580,Health,Health +428672,Health,Health +428208,Health,Health +428207,Health,Health +428206,Health,Health +428204,Health,Health +428203,Health,Health +427798,Health,Health +427797,Health,Health +427792,Health,Health +427791,Health,Health +427787,Health,Health +427785,Health,Health +427784,Health,Health +427782,Health,Health +427772,Health,Health +427753,Health,Health +427752,Health,Health +427751,Health,Health +427750,Health,Health +427748,Health,Health +427740,Health,Health +427734,Health,Health +427722,Health,Health +427721,Health,Health +427720,Health,Health +427457,Health,Health +427456,Health,Health +427455,Health,Health +427454,Health,Health +427453,Health,Health +427452,Health,Health +427451,Health,Health +427450,Health,Health +427419,Health,Health +427418,Health,Health +427287,Health,Health +427286,Health,Health +427285,Health,Health +427284,Health,Health +427283,Health,Health +427282,Health,Health +427281,Health,Health +427280,Health,Health +427279,Health,Health +427278,Health,Health +427277,Health,Health +427276,Health,Health +427275,Health,Health +427274,Health,Health +427273,Health,Health +427272,Health,Health +427271,Health,Health +427245,Health,Health +427244,Health,Health +426210,Health,Health +426207,Health,Health +426206,Health,Health +426205,Health,Health +426204,Health,Health +426202,Health,Health +426200,Health,Health +426198,Health,Health +426196,Health,Health +425646,Health,Health +425645,Health,Health +425644,Health,Health +425643,Health,Health +425642,Health,Health +425641,Health,Health +425640,Health,Health +425639,Health,Health +425638,Health,Health +425637,Health,Health +425636,Health,Health +425567,Health,Health +425528,Health,Health +425527,Health,Health +425526,Health,Health +425525,Health,Health +425524,Health,Health +425523,Health,Health +425522,Health,Health +425521,Health,Health +425520,Health,Health +425519,Health,Health +425518,Health,Health +425517,Health,Health +425516,Health,Health +425515,Health,Health +425514,Health,Health +425513,Health,Health +425512,Health,Health +422870,Health,Health +422869,Health,Health +422868,Health,Health +415186,Health,Health +411091,Health,Health +411090,Health,Health +407205,Health,Health +406393,Health,Health +403523,Health,Health +401670,Health,Health +401667,Health,Health +401666,Health,Health +401665,Health,Health +401664,Health,Health +401642,Health,Health +401640,Health,Health +401639,Health,Health +401637,Health,Health +401636,Health,Health +401635,Health,Health +401634,Health,Health +401633,Health,Health +540182,Health,Health +540181,Health,Health +540180,Health,Health +535978,Health,Health +531818,Health,Health +531817,Health,Health +531816,Health,Health +531815,Health,Health +513705,Health,Health +509629,Health,Health +508738,Health,Health +508733,Health,Health +508729,Health,Health +508710,Health,Health +508406,Health,Health +508405,Health,Health +508404,Health,Health +508403,Health,Health +508402,Health,Health +508401,Health,Health +508400,Health,Health +508399,Health,Health +508398,Health,Health +508396,Health,Health +508395,Health,Health +508393,Health,Health +508392,Health,Health +508391,Health,Health +508390,Health,Health +508389,Health,Health +508388,Health,Health +508387,Health,Health +508386,Health,Health +508385,Health,Health +508383,Health,Health +508382,Health,Health +508381,Health,Health +508379,Health,Health +508378,Health,Health +508377,Health,Health +508376,Health,Health +508375,Health,Health +508374,Health,Health +508373,Health,Health +508372,Health,Health +508371,Health,Health +508369,Health,Health +508367,Health,Health +508365,Health,Health +508364,Health,Health +508230,Health,Health +508226,Health,Health +508225,Health,Health +508222,Health,Health +508209,Health,Health +508205,Health,Health +508203,Health,Health +508200,Health,Health +508195,Health,Health +508191,Health,Health +508186,Health,Health +508183,Health,Health +508181,Health,Health +508179,Health,Health +508177,Health,Health +506001,Health,Health +506000,Health,Health +505999,Health,Health +501730,Health,Health +499979,Health,Health +499978,Health,Health +499977,Health,Health +497916,Health,Health +497915,Health,Health +497854,Health,Health +497760,Health,Health +495152,Health,Health +495150,Health,Health +492031,Health,Health +492030,Health,Health +491289,Health,Health +491285,Health,Health +491212,Health,Health +491210,Health,Health +491208,Health,Health +491203,Health,Health +491196,Health,Health +491193,Health,Health +491189,Health,Health +491185,Health,Health +491180,Health,Health +491173,Health,Health +491158,Health,Health +491157,Health,Health +491152,Health,Health +491149,Health,Health +488644,Health,Health +486113,Health,Health +486112,Health,Health +485705,Health,Health +483759,Health,Health +483758,Health,Health +483755,Health,Health +483754,Health,Health +483752,Health,Health +483751,Health,Health +483750,Health,Health +483749,Health,Health +483747,Health,Health +483745,Health,Health +481048,Health,Health +481047,Health,Health +479298,Health,Health +479182,Health,Health +478691,Health,Health +478097,Health,Health +476255,Health,Health +476254,Health,Health +474672,Health,Health +474668,Health,Health +474095,Health,Health +470825,Health,Health +470814,Health,Health +463288,Health,Health +460808,Health,Health +459408,Health,Health +459039,Health,Health +458003,Health,Health +452753,Health,Health +452631,Health,Health +452618,Health,Health +452610,Health,Health +452606,Health,Health +452605,Health,Health +452427,Health,Health +452426,Health,Health +452425,Health,Health +452423,Health,Health +452422,Health,Health +452421,Health,Health +452418,Health,Health +452417,Health,Health +452416,Health,Health +452415,Health,Health +452414,Health,Health +452413,Health,Health +452412,Health,Health +452411,Health,Health +452410,Health,Health +452409,Health,Health +452408,Health,Health +452407,Health,Health +452406,Health,Health +452404,Health,Health +452403,Health,Health +427454,Taxation and Finance,Taxation and Finance +427453,Taxation and Finance,Taxation and Finance +170755,Taxation and Finance,Taxation and Finance +170753,Taxation and Finance,Taxation and Finance +163529,Taxation and Finance,Taxation and Finance +163527,Taxation and Finance,Taxation and Finance +161113,Taxation and Finance,Taxation and Finance +299289,Taxation and Finance,Taxation and Finance +248750,Taxation and Finance,Taxation and Finance +248749,Taxation and Finance,Taxation and Finance +239573,Taxation and Finance,Taxation and Finance +239569,Taxation and Finance,Taxation and Finance +223155,Taxation and Finance,Taxation and Finance +199666,Taxation and Finance,Taxation and Finance +199665,Taxation and Finance,Taxation and Finance +196353,Taxation and Finance,Taxation and Finance +196352,Taxation and Finance,Taxation and Finance +196350,Taxation and Finance,Taxation and Finance +196349,Taxation and Finance,Taxation and Finance +196347,Taxation and Finance,Taxation and Finance +196346,Taxation and Finance,Taxation and Finance +196345,Taxation and Finance,Taxation and Finance +196330,Taxation and Finance,Taxation and Finance +196329,Taxation and Finance,Taxation and Finance +196328,Taxation and Finance,Taxation and Finance +196327,Taxation and Finance,Taxation and Finance +196326,Taxation and Finance,Taxation and Finance +196325,Taxation and Finance,Taxation and Finance +196324,Taxation and Finance,Taxation and Finance +401579,Taxation and Finance,Taxation and Finance +401578,Taxation and Finance,Taxation and Finance +401577,Taxation and Finance,Taxation and Finance +401553,Taxation and Finance,Taxation and Finance +401552,Taxation and Finance,Taxation and Finance +401551,Taxation and Finance,Taxation and Finance +401550,Taxation and Finance,Taxation and Finance +401549,Taxation and Finance,Taxation and Finance +401548,Taxation and Finance,Taxation and Finance +401547,Taxation and Finance,Taxation and Finance +401546,Taxation and Finance,Taxation and Finance +401545,Taxation and Finance,Taxation and Finance +401544,Taxation and Finance,Taxation and Finance +401543,Taxation and Finance,Taxation and Finance +401536,Taxation and Finance,Taxation and Finance +401534,Taxation and Finance,Taxation and Finance +391779,Taxation and Finance,Taxation and Finance +389526,Taxation and Finance,Taxation and Finance +385968,Taxation and Finance,Taxation and Finance +385967,Taxation and Finance,Taxation and Finance +385966,Taxation and Finance,Taxation and Finance +385965,Taxation and Finance,Taxation and Finance +377603,Taxation and Finance,Taxation and Finance +377599,Taxation and Finance,Taxation and Finance +354722,Taxation and Finance,Taxation and Finance +354721,Taxation and Finance,Taxation and Finance +354720,Taxation and Finance,Taxation and Finance +354719,Taxation and Finance,Taxation and Finance +336076,Taxation and Finance,Taxation and Finance +427452,Taxation and Finance,Taxation and Finance +427451,Taxation and Finance,Taxation and Finance +427450,Taxation and Finance,Taxation and Finance +427419,Taxation and Finance,Taxation and Finance +427418,Taxation and Finance,Taxation and Finance +427287,Taxation and Finance,Taxation and Finance +427286,Taxation and Finance,Taxation and Finance +427285,Taxation and Finance,Taxation and Finance +427284,Taxation and Finance,Taxation and Finance +427283,Taxation and Finance,Taxation and Finance +427282,Taxation and Finance,Taxation and Finance +427281,Taxation and Finance,Taxation and Finance +427280,Taxation and Finance,Taxation and Finance +427279,Taxation and Finance,Taxation and Finance +427278,Taxation and Finance,Taxation and Finance +427277,Taxation and Finance,Taxation and Finance +427276,Taxation and Finance,Taxation and Finance +427275,Taxation and Finance,Taxation and Finance +427274,Taxation and Finance,Taxation and Finance +427273,Taxation and Finance,Taxation and Finance +427272,Taxation and Finance,Taxation and Finance +427271,Taxation and Finance,Taxation and Finance +427245,Taxation and Finance,Taxation and Finance +427244,Taxation and Finance,Taxation and Finance +426210,Taxation and Finance,Taxation and Finance +426207,Taxation and Finance,Taxation and Finance +426206,Taxation and Finance,Taxation and Finance +426205,Taxation and Finance,Taxation and Finance +426204,Taxation and Finance,Taxation and Finance +426202,Taxation and Finance,Taxation and Finance +426200,Taxation and Finance,Taxation and Finance +426198,Taxation and Finance,Taxation and Finance +426196,Taxation and Finance,Taxation and Finance +425646,Taxation and Finance,Taxation and Finance +425645,Taxation and Finance,Taxation and Finance +425644,Taxation and Finance,Taxation and Finance +425643,Taxation and Finance,Taxation and Finance +425642,Taxation and Finance,Taxation and Finance +425641,Taxation and Finance,Taxation and Finance +425640,Taxation and Finance,Taxation and Finance +425639,Taxation and Finance,Taxation and Finance +425638,Taxation and Finance,Taxation and Finance +425637,Taxation and Finance,Taxation and Finance +425636,Taxation and Finance,Taxation and Finance +425567,Taxation and Finance,Taxation and Finance +425528,Taxation and Finance,Taxation and Finance +425527,Taxation and Finance,Taxation and Finance +425526,Taxation and Finance,Taxation and Finance +425525,Taxation and Finance,Taxation and Finance +425524,Taxation and Finance,Taxation and Finance +425522,Taxation and Finance,Taxation and Finance +425521,Taxation and Finance,Taxation and Finance +425520,Taxation and Finance,Taxation and Finance +425519,Taxation and Finance,Taxation and Finance +425518,Taxation and Finance,Taxation and Finance +425517,Taxation and Finance,Taxation and Finance +425516,Taxation and Finance,Taxation and Finance +425515,Taxation and Finance,Taxation and Finance +425514,Taxation and Finance,Taxation and Finance +425513,Taxation and Finance,Taxation and Finance +425512,Taxation and Finance,Taxation and Finance +422870,Taxation and Finance,Taxation and Finance +411091,Taxation and Finance,Taxation and Finance +403523,Taxation and Finance,Taxation and Finance +401670,Taxation and Finance,Taxation and Finance +401667,Taxation and Finance,Taxation and Finance +401666,Taxation and Finance,Taxation and Finance +401665,Taxation and Finance,Taxation and Finance +401664,Taxation and Finance,Taxation and Finance +401642,Taxation and Finance,Taxation and Finance +401640,Taxation and Finance,Taxation and Finance +401639,Taxation and Finance,Taxation and Finance +401637,Taxation and Finance,Taxation and Finance +401636,Taxation and Finance,Taxation and Finance +401635,Taxation and Finance,Taxation and Finance +401634,Taxation and Finance,Taxation and Finance +401633,Taxation and Finance,Taxation and Finance +401632,Taxation and Finance,Taxation and Finance +401630,Taxation and Finance,Taxation and Finance +401627,Taxation and Finance,Taxation and Finance +401626,Taxation and Finance,Taxation and Finance +401625,Taxation and Finance,Taxation and Finance +401624,Taxation and Finance,Taxation and Finance +401623,Taxation and Finance,Taxation and Finance +401622,Taxation and Finance,Taxation and Finance +401621,Taxation and Finance,Taxation and Finance +401620,Taxation and Finance,Taxation and Finance +401619,Taxation and Finance,Taxation and Finance +401618,Taxation and Finance,Taxation and Finance +401617,Taxation and Finance,Taxation and Finance +401615,Taxation and Finance,Taxation and Finance +401612,Taxation and Finance,Taxation and Finance +401611,Taxation and Finance,Taxation and Finance +401610,Taxation and Finance,Taxation and Finance +401609,Taxation and Finance,Taxation and Finance +401599,Taxation and Finance,Taxation and Finance +401598,Taxation and Finance,Taxation and Finance +401597,Taxation and Finance,Taxation and Finance +401596,Taxation and Finance,Taxation and Finance +401595,Taxation and Finance,Taxation and Finance +401594,Taxation and Finance,Taxation and Finance +401593,Taxation and Finance,Taxation and Finance +401590,Taxation and Finance,Taxation and Finance +401589,Taxation and Finance,Taxation and Finance +401588,Taxation and Finance,Taxation and Finance +401587,Taxation and Finance,Taxation and Finance +401585,Taxation and Finance,Taxation and Finance +401584,Taxation and Finance,Taxation and Finance +401583,Taxation and Finance,Taxation and Finance +401582,Taxation and Finance,Taxation and Finance +401581,Taxation and Finance,Taxation and Finance +401580,Taxation and Finance,Taxation and Finance +541891,Taxation and Finance,Taxation and Finance +535978,Taxation and Finance,Taxation and Finance +508177,Taxation and Finance,Taxation and Finance +501730,Taxation and Finance,Taxation and Finance +497916,Taxation and Finance,Taxation and Finance +495150,Taxation and Finance,Taxation and Finance +470825,Taxation and Finance,Taxation and Finance +463288,Taxation and Finance,Taxation and Finance +460808,Taxation and Finance,Taxation and Finance +459408,Taxation and Finance,Taxation and Finance +459039,Taxation and Finance,Taxation and Finance +458003,Taxation and Finance,Taxation and Finance +452753,Taxation and Finance,Taxation and Finance +452631,Taxation and Finance,Taxation and Finance +452618,Taxation and Finance,Taxation and Finance +452610,Taxation and Finance,Taxation and Finance +452606,Taxation and Finance,Taxation and Finance +452605,Taxation and Finance,Taxation and Finance +452427,Taxation and Finance,Taxation and Finance +452426,Taxation and Finance,Taxation and Finance +452425,Taxation and Finance,Taxation and Finance +452423,Taxation and Finance,Taxation and Finance +452422,Taxation and Finance,Taxation and Finance +452421,Taxation and Finance,Taxation and Finance +452418,Taxation and Finance,Taxation and Finance +452417,Taxation and Finance,Taxation and Finance +452416,Taxation and Finance,Taxation and Finance +452415,Taxation and Finance,Taxation and Finance +452414,Taxation and Finance,Taxation and Finance +452413,Taxation and Finance,Taxation and Finance +452412,Taxation and Finance,Taxation and Finance +452411,Taxation and Finance,Taxation and Finance +452410,Taxation and Finance,Taxation and Finance +452409,Taxation and Finance,Taxation and Finance +452408,Taxation and Finance,Taxation and Finance +452407,Taxation and Finance,Taxation and Finance +452406,Taxation and Finance,Taxation and Finance +452404,Taxation and Finance,Taxation and Finance +452403,Taxation and Finance,Taxation and Finance +452402,Taxation and Finance,Taxation and Finance +452401,Taxation and Finance,Taxation and Finance +452400,Taxation and Finance,Taxation and Finance +452399,Taxation and Finance,Taxation and Finance +452398,Taxation and Finance,Taxation and Finance +452397,Taxation and Finance,Taxation and Finance +452395,Taxation and Finance,Taxation and Finance +452394,Taxation and Finance,Taxation and Finance +452393,Taxation and Finance,Taxation and Finance +452392,Taxation and Finance,Taxation and Finance +452390,Taxation and Finance,Taxation and Finance +452388,Taxation and Finance,Taxation and Finance +452387,Taxation and Finance,Taxation and Finance +452384,Taxation and Finance,Taxation and Finance +452382,Taxation and Finance,Taxation and Finance +452375,Taxation and Finance,Taxation and Finance +452372,Taxation and Finance,Taxation and Finance +452370,Taxation and Finance,Taxation and Finance +452369,Taxation and Finance,Taxation and Finance +452368,Taxation and Finance,Taxation and Finance +452364,Taxation and Finance,Taxation and Finance +452355,Taxation and Finance,Taxation and Finance +452354,Taxation and Finance,Taxation and Finance +452351,Taxation and Finance,Taxation and Finance +452341,Taxation and Finance,Taxation and Finance +452337,Taxation and Finance,Taxation and Finance +452336,Taxation and Finance,Taxation and Finance +452335,Taxation and Finance,Taxation and Finance +452333,Taxation and Finance,Taxation and Finance +452332,Taxation and Finance,Taxation and Finance +452331,Taxation and Finance,Taxation and Finance +452330,Taxation and Finance,Taxation and Finance +452329,Taxation and Finance,Taxation and Finance +452327,Taxation and Finance,Taxation and Finance +452324,Taxation and Finance,Taxation and Finance +452323,Taxation and Finance,Taxation and Finance +452322,Taxation and Finance,Taxation and Finance +452320,Taxation and Finance,Taxation and Finance +452279,Taxation and Finance,Taxation and Finance +452276,Taxation and Finance,Taxation and Finance +428672,Taxation and Finance,Taxation and Finance +428208,Taxation and Finance,Taxation and Finance +428207,Taxation and Finance,Taxation and Finance +428206,Taxation and Finance,Taxation and Finance +428204,Taxation and Finance,Taxation and Finance +428203,Taxation and Finance,Taxation and Finance +427792,Taxation and Finance,Taxation and Finance +427791,Taxation and Finance,Taxation and Finance +427787,Taxation and Finance,Taxation and Finance +427785,Taxation and Finance,Taxation and Finance +427784,Taxation and Finance,Taxation and Finance +427782,Taxation and Finance,Taxation and Finance +427772,Taxation and Finance,Taxation and Finance +427753,Taxation and Finance,Taxation and Finance +427752,Taxation and Finance,Taxation and Finance +427751,Taxation and Finance,Taxation and Finance +427750,Taxation and Finance,Taxation and Finance +427748,Taxation and Finance,Taxation and Finance +427740,Taxation and Finance,Taxation and Finance +427734,Taxation and Finance,Taxation and Finance +427722,Taxation and Finance,Taxation and Finance +427721,Taxation and Finance,Taxation and Finance +427720,Taxation and Finance,Taxation and Finance +427457,Taxation and Finance,Taxation and Finance +427456,Taxation and Finance,Taxation and Finance +92626,Other,Disability issues +92625,Other,Disability issues +392483,Defence,Defence +392481,Defence,Defence +282230,Defence,Defence +269249,Defence,Defence +392483,Government Procurement,Government Procurement +392481,Government Procurement,Government Procurement +282230,Government Procurement,Government Procurement +269249,Government Procurement,Government Procurement +243611,Government Procurement,Government Procurement +392483,Industry,Industry +392481,Industry,Industry +243611,Industry,Industry +243610,Industry,Industry +243610,Regional Development,Regional Development +418784,Health,Health +404957,Health,Health +404263,Justice and Law Enforcement,Justice and Law Enforcement +404262,Justice and Law Enforcement,Justice and Law Enforcement +333449,Transportation,Transportation +331653,Transportation,Transportation +250783,Defence,Defence +250780,Defence,Defence +154798,Defence,Defence +154793,Defence,Defence +170750,Defence,Defence +170749,Defence,Defence +462573,Environment,Environment +459436,Environment,Environment +121235,Environment,Environment +185474,Environment,Environment +372041,Environment,Environment +459434,Environment,Environment +459431,Environment,Environment +458773,Environment,Environment +458769,Environment,Environment +457070,Environment,Environment +457054,Environment,Environment +457052,Environment,Environment +457048,Environment,Environment +457044,Environment,Environment +457028,Environment,Environment +452184,Environment,Environment +449679,Environment,Environment +449677,Environment,Environment +449663,Environment,Environment +447774,Environment,Environment +447770,Environment,Environment +443544,Environment,Environment +443521,Environment,Environment +442348,Environment,Environment +442346,Environment,Environment +435122,Environment,Environment +433486,Environment,Environment +431798,Environment,Environment +431797,Environment,Environment +431796,Environment,Environment +431795,Environment,Environment +428664,Environment,Environment +426502,Environment,Environment +426467,Environment,Environment +426342,Environment,Environment +426340,Environment,Environment +423802,Environment,Environment +423797,Environment,Environment +423763,Environment,Environment +421914,Environment,Environment +421911,Environment,Environment +421905,Environment,Environment +409494,Environment,Environment +409489,Environment,Environment +409440,Environment,Environment +406778,Environment,Environment +406776,Environment,Environment +406761,Environment,Environment +406758,Environment,Environment +539698,Environment,Environment +539697,Environment,Environment +539692,Environment,Environment +529202,Environment,Environment +526308,Environment,Environment +522945,Environment,Environment +519476,Environment,Environment +515670,Environment,Environment +502368,Environment,Environment +486830,Environment,Environment +466994,Environment,Environment +466973,Environment,Environment +466883,Environment,Environment +455418,Forestry,Forestry +455417,Forestry,Forestry +83021,Forestry,Forestry +77644,Forestry,Forestry +109535,Forestry,Forestry +92575,Forestry,Forestry +90694,Forestry,Forestry +163855,Forestry,Forestry +163854,Forestry,Forestry +158320,Forestry,Forestry +157002,Forestry,Forestry +154797,Forestry,Forestry +152091,Forestry,Forestry +148087,Forestry,Forestry +148085,Forestry,Forestry +145923,Forestry,Forestry +145919,Forestry,Forestry +145917,Forestry,Forestry +128953,Forestry,Forestry +128950,Forestry,Forestry +128949,Forestry,Forestry +128948,Forestry,Forestry +124139,Forestry,Forestry +313027,Forestry,Forestry +310196,Forestry,Forestry +310189,Forestry,Forestry +310186,Forestry,Forestry +310184,Forestry,Forestry +303830,Forestry,Forestry +303829,Forestry,Forestry +296813,Forestry,Forestry +286511,Forestry,Forestry +273121,Forestry,Forestry +264143,Forestry,Forestry +254131,Forestry,Forestry +202711,Forestry,Forestry +202702,Forestry,Forestry +200167,Forestry,Forestry +185479,Forestry,Forestry +185476,Forestry,Forestry +185475,Forestry,Forestry +442384,Forestry,Forestry +442380,Forestry,Forestry +442375,Forestry,Forestry +442353,Forestry,Forestry +438676,Forestry,Forestry +430347,Forestry,Forestry +421914,Forestry,Forestry +421911,Forestry,Forestry +421909,Forestry,Forestry +421907,Forestry,Forestry +421906,Forestry,Forestry +418035,Forestry,Forestry +418023,Forestry,Forestry +418019,Forestry,Forestry +418014,Forestry,Forestry +413008,Forestry,Forestry +413007,Forestry,Forestry +413006,Forestry,Forestry +413005,Forestry,Forestry +409478,Forestry,Forestry +409465,Forestry,Forestry +408012,Forestry,Forestry +407994,Forestry,Forestry +406773,Forestry,Forestry +406771,Forestry,Forestry +406766,Forestry,Forestry +406763,Forestry,Forestry +405372,Forestry,Forestry +405363,Forestry,Forestry +405361,Forestry,Forestry +405357,Forestry,Forestry +398598,Forestry,Forestry +398597,Forestry,Forestry +398595,Forestry,Forestry +396182,Forestry,Forestry +396179,Forestry,Forestry +396177,Forestry,Forestry +396174,Forestry,Forestry +396172,Forestry,Forestry +396170,Forestry,Forestry +396154,Forestry,Forestry +393418,Forestry,Forestry +392472,Forestry,Forestry +392466,Forestry,Forestry +391209,Forestry,Forestry +385559,Forestry,Forestry +385501,Forestry,Forestry +385403,Forestry,Forestry +374501,Forestry,Forestry +374490,Forestry,Forestry +374477,Forestry,Forestry +335828,Forestry,Forestry +335826,Forestry,Forestry +333622,Forestry,Forestry +329490,Forestry,Forestry +329489,Forestry,Forestry +326799,Forestry,Forestry +326797,Forestry,Forestry +324911,Forestry,Forestry +324907,Forestry,Forestry +324906,Forestry,Forestry +322250,Forestry,Forestry +322239,Forestry,Forestry +322236,Forestry,Forestry +322222,Forestry,Forestry +322215,Forestry,Forestry +313032,Forestry,Forestry +313030,Forestry,Forestry +539699,Forestry,Forestry +537675,Forestry,Forestry +537668,Forestry,Forestry +537660,Forestry,Forestry +537658,Forestry,Forestry +537656,Forestry,Forestry +537653,Forestry,Forestry +537651,Forestry,Forestry +537649,Forestry,Forestry +534398,Forestry,Forestry +529191,Forestry,Forestry +526394,Forestry,Forestry +526284,Forestry,Forestry +526278,Forestry,Forestry +526277,Forestry,Forestry +526264,Forestry,Forestry +522938,Forestry,Forestry +522932,Forestry,Forestry +519478,Forestry,Forestry +515664,Forestry,Forestry +504676,Forestry,Forestry +495273,Forestry,Forestry +493139,Forestry,Forestry +472887,Forestry,Forestry +472873,Forestry,Forestry +466984,Forestry,Forestry +466881,Forestry,Forestry +464461,Forestry,Forestry +464458,Forestry,Forestry +464455,Forestry,Forestry +462583,Forestry,Forestry +462576,Forestry,Forestry +462574,Forestry,Forestry +447777,Industry,Industry +445322,Industry,Industry +92576,Industry,Industry +92575,Industry,Industry +83025,Industry,Industry +117526,Industry,Industry +296813,Industry,Industry +264145,Industry,Industry +264144,Industry,Industry +264142,Industry,Industry +245173,Industry,Industry +229349,Industry,Industry +226852,Industry,Industry +223347,Industry,Industry +202713,Industry,Industry +202710,Industry,Industry +200169,Industry,Industry +185472,Industry,Industry +171925,Industry,Industry +171924,Industry,Industry +400375,Industry,Industry +400374,Industry,Industry +398624,Industry,Industry +398602,Industry,Industry +393432,Industry,Industry +393431,Industry,Industry +393430,Industry,Industry +393426,Industry,Industry +393423,Industry,Industry +391230,Industry,Industry +353740,Industry,Industry +329487,Industry,Industry +443540,Industry,Industry +443523,Industry,Industry +442335,Industry,Industry +442333,Industry,Industry +438707,Industry,Industry +438688,Industry,Industry +438681,Industry,Industry +438672,Industry,Industry +430343,Industry,Industry +428664,Industry,Industry +428661,Industry,Industry +428660,Industry,Industry +428658,Industry,Industry +428655,Industry,Industry +426497,Industry,Industry +426489,Industry,Industry +426485,Industry,Industry +426476,Industry,Industry +426472,Industry,Industry +426471,Industry,Industry +421914,Industry,Industry +421913,Industry,Industry +421911,Industry,Industry +418031,Industry,Industry +418030,Industry,Industry +416393,Industry,Industry +406780,Industry,Industry +406764,Industry,Industry +406757,Industry,Industry +405374,Industry,Industry +402798,Industry,Industry +402795,Industry,Industry +475039,Industry,Industry +472863,Industry,Industry +472859,Industry,Industry +462583,Industry,Industry +461015,Industry,Industry +416405,International Trade,International Trade +416398,International Trade,International Trade +113997,International Trade,International Trade +409507,International Trade,International Trade +409456,International Trade,International Trade +409453,International Trade,International Trade +408013,International Trade,International Trade +407995,International Trade,International Trade +405396,International Trade,International Trade +405392,International Trade,International Trade +405383,International Trade,International Trade +405380,International Trade,International Trade +405377,International Trade,International Trade +400399,International Trade,International Trade +400393,International Trade,International Trade +400383,International Trade,International Trade +400377,International Trade,International Trade +398608,International Trade,International Trade +396227,International Trade,International Trade +396209,International Trade,International Trade +396198,International Trade,International Trade +393425,International Trade,International Trade +393420,International Trade,International Trade +393417,International Trade,International Trade +393412,International Trade,International Trade +392489,International Trade,International Trade +392484,International Trade,International Trade +392480,International Trade,International Trade +392475,International Trade,International Trade +391233,International Trade,International Trade +391186,International Trade,International Trade +388201,International Trade,International Trade +388200,International Trade,International Trade +388198,International Trade,International Trade +387969,International Trade,International Trade +383612,International Trade,International Trade +383611,International Trade,International Trade +381011,International Trade,International Trade +381007,International Trade,International Trade +381006,International Trade,International Trade +381004,International Trade,International Trade +380997,International Trade,International Trade +380994,International Trade,International Trade +380993,International Trade,International Trade +380991,International Trade,International Trade +380989,International Trade,International Trade +379068,International Trade,International Trade +376588,International Trade,International Trade +376583,International Trade,International Trade +374501,International Trade,International Trade +374490,International Trade,International Trade +374485,International Trade,International Trade +374482,International Trade,International Trade +374477,International Trade,International Trade +374474,International Trade,International Trade +372066,International Trade,International Trade +372065,International Trade,International Trade +372052,International Trade,International Trade +372041,International Trade,International Trade +369491,International Trade,International Trade +362367,International Trade,International Trade +361110,International Trade,International Trade +359718,International Trade,International Trade +359714,International Trade,International Trade +356393,International Trade,International Trade +356389,International Trade,International Trade +356374,International Trade,International Trade +341227,International Trade,International Trade +539707,International Trade,International Trade +539703,International Trade,International Trade +526296,International Trade,International Trade +522951,International Trade,International Trade +510692,International Trade,International Trade +475043,International Trade,International Trade +462612,International Trade,International Trade +443550,International Trade,International Trade +433496,International Trade,International Trade +423824,International Trade,International Trade +421914,International Trade,International Trade +421911,International Trade,International Trade +484813,Transportation,Transportation +481749,Transportation,Transportation +128950,Transportation,Transportation +101288,Transportation,Transportation +217408,Transportation,Transportation +217407,Transportation,Transportation +200169,Transportation,Transportation +324900,Transportation,Transportation +273141,Transportation,Transportation +418033,Transportation,Transportation +398604,Transportation,Transportation +393433,Transportation,Transportation +391191,Transportation,Transportation +385581,Transportation,Transportation +385449,Transportation,Transportation +383605,Transportation,Transportation +383604,Transportation,Transportation +382281,Transportation,Transportation +382280,Transportation,Transportation +382278,Transportation,Transportation +382276,Transportation,Transportation +379100,Transportation,Transportation +379097,Transportation,Transportation +379096,Transportation,Transportation +379091,Transportation,Transportation +376575,Transportation,Transportation +374489,Transportation,Transportation +374488,Transportation,Transportation +351372,Transportation,Transportation +539695,Transportation,Transportation +539685,Transportation,Transportation +537641,Transportation,Transportation +534454,Transportation,Transportation +78414,Industry,Industry +78415,Infrastructure,Infrastructure +78414,Infrastructure,Infrastructure +113216,Infrastructure,Infrastructure +113215,Infrastructure,Infrastructure +87218,Infrastructure,Infrastructure +87216,Infrastructure,Infrastructure +223191,Tourism,Tourism +197485,Tourism,Tourism +87218,Tourism,Tourism +87216,Tourism,Tourism +102457,Energy,Energy +102456,Energy,Energy +102463,Energy,Energy +102462,Energy,Energy +102461,Energy,Energy +102460,Energy,Energy +102461,Environment,Environment +102459,Environment,Environment +102458,Environment,Environment +211812,Health,Health +211807,Health,Health +301910,Industry,Industry +301909,Industry,Industry +309554,Industry,Industry +309553,Industry,Industry +309552,Industry,Industry +309551,Industry,Industry +206170,Intellectual Property,Intellectual Property +206167,Intellectual Property,Intellectual Property +309554,Intellectual Property,Intellectual Property +309553,Intellectual Property,Intellectual Property +309552,Intellectual Property,Intellectual Property +309551,Intellectual Property,Intellectual Property +301911,Intellectual Property,Intellectual Property +301910,Intellectual Property,Intellectual Property +301909,Intellectual Property,Intellectual Property +222349,Intellectual Property,Intellectual Property +211814,Intellectual Property,Intellectual Property +211812,Intellectual Property,Intellectual Property +211807,Intellectual Property,Intellectual Property +211812,Internal Trade,Internal Trade +206171,Internal Trade,Internal Trade +206170,International Trade,International Trade +206167,International Trade,International Trade +309554,International Trade,International Trade +309552,International Trade,International Trade +301911,International Trade,International Trade +301910,International Trade,International Trade +301909,International Trade,International Trade +222349,International Trade,International Trade +519797,Employment and Training,Employment and Training +519793,Employment and Training,Employment and Training +406655,Employment and Training,Employment and Training +516521,Employment and Training,Employment and Training +515778,Employment and Training,Employment and Training +512031,Employment and Training,Employment and Training +509973,Employment and Training,Employment and Training +497874,Employment and Training,Employment and Training +444512,Employment and Training,Employment and Training +443589,Employment and Training,Employment and Training +509972,Financial Institutions,Financial Institutions +509892,Financial Institutions,Financial Institutions +150321,Financial Institutions,Financial Institutions +150319,Financial Institutions,Financial Institutions +150316,Financial Institutions,Financial Institutions +148618,Financial Institutions,Financial Institutions +147895,Financial Institutions,Financial Institutions +147894,Financial Institutions,Financial Institutions +145796,Financial Institutions,Financial Institutions +167809,Financial Institutions,Financial Institutions +167618,Financial Institutions,Financial Institutions +163685,Financial Institutions,Financial Institutions +161414,Financial Institutions,Financial Institutions +161412,Financial Institutions,Financial Institutions +159082,Financial Institutions,Financial Institutions +159081,Financial Institutions,Financial Institutions +159080,Financial Institutions,Financial Institutions +159078,Financial Institutions,Financial Institutions +151914,Financial Institutions,Financial Institutions +151913,Financial Institutions,Financial Institutions +290289,Financial Institutions,Financial Institutions +286551,Financial Institutions,Financial Institutions +286549,Financial Institutions,Financial Institutions +286529,Financial Institutions,Financial Institutions +277470,Financial Institutions,Financial Institutions +277468,Financial Institutions,Financial Institutions +277466,Financial Institutions,Financial Institutions +277462,Financial Institutions,Financial Institutions +277449,Financial Institutions,Financial Institutions +277446,Financial Institutions,Financial Institutions +273052,Financial Institutions,Financial Institutions +273051,Financial Institutions,Financial Institutions +273050,Financial Institutions,Financial Institutions +273049,Financial Institutions,Financial Institutions +269470,Financial Institutions,Financial Institutions +268609,Financial Institutions,Financial Institutions +268606,Financial Institutions,Financial Institutions +266491,Financial Institutions,Financial Institutions +262310,Financial Institutions,Financial Institutions +262309,Financial Institutions,Financial Institutions +259250,Financial Institutions,Financial Institutions +254210,Financial Institutions,Financial Institutions +254206,Financial Institutions,Financial Institutions +250346,Financial Institutions,Financial Institutions +250345,Financial Institutions,Financial Institutions +250112,Financial Institutions,Financial Institutions +246154,Financial Institutions,Financial Institutions +244638,Financial Institutions,Financial Institutions +236891,Financial Institutions,Financial Institutions +233650,Financial Institutions,Financial Institutions +230195,Financial Institutions,Financial Institutions +226878,Financial Institutions,Financial Institutions +226877,Financial Institutions,Financial Institutions +223312,Financial Institutions,Financial Institutions +223310,Financial Institutions,Financial Institutions +223309,Financial Institutions,Financial Institutions +211850,Financial Institutions,Financial Institutions +206809,Financial Institutions,Financial Institutions +206807,Financial Institutions,Financial Institutions +203787,Financial Institutions,Financial Institutions +202772,Financial Institutions,Financial Institutions +197074,Financial Institutions,Financial Institutions +197073,Financial Institutions,Financial Institutions +196450,Financial Institutions,Financial Institutions +385819,Financial Institutions,Financial Institutions +382559,Financial Institutions,Financial Institutions +379123,Financial Institutions,Financial Institutions +379120,Financial Institutions,Financial Institutions +379118,Financial Institutions,Financial Institutions +379117,Financial Institutions,Financial Institutions +379116,Financial Institutions,Financial Institutions +379115,Financial Institutions,Financial Institutions +378225,Financial Institutions,Financial Institutions +378224,Financial Institutions,Financial Institutions +377050,Financial Institutions,Financial Institutions +376991,Financial Institutions,Financial Institutions +376986,Financial Institutions,Financial Institutions +375389,Financial Institutions,Financial Institutions +375388,Financial Institutions,Financial Institutions +375387,Financial Institutions,Financial Institutions +375385,Financial Institutions,Financial Institutions +374991,Financial Institutions,Financial Institutions +371764,Financial Institutions,Financial Institutions +371760,Financial Institutions,Financial Institutions +371727,Financial Institutions,Financial Institutions +369567,Financial Institutions,Financial Institutions +369564,Financial Institutions,Financial Institutions +365274,Financial Institutions,Financial Institutions +359329,Financial Institutions,Financial Institutions +359327,Financial Institutions,Financial Institutions +359326,Financial Institutions,Financial Institutions +359325,Financial Institutions,Financial Institutions +359324,Financial Institutions,Financial Institutions +357922,Financial Institutions,Financial Institutions +357920,Financial Institutions,Financial Institutions +357919,Financial Institutions,Financial Institutions +351316,Financial Institutions,Financial Institutions +347287,Financial Institutions,Financial Institutions +344425,Financial Institutions,Financial Institutions +343622,Financial Institutions,Financial Institutions +341119,Financial Institutions,Financial Institutions +341118,Financial Institutions,Financial Institutions +335590,Financial Institutions,Financial Institutions +335587,Financial Institutions,Financial Institutions +331354,Financial Institutions,Financial Institutions +331353,Financial Institutions,Financial Institutions +331352,Financial Institutions,Financial Institutions +329672,Financial Institutions,Financial Institutions +329668,Financial Institutions,Financial Institutions +329667,Financial Institutions,Financial Institutions +329666,Financial Institutions,Financial Institutions +329665,Financial Institutions,Financial Institutions +329662,Financial Institutions,Financial Institutions +324457,Financial Institutions,Financial Institutions +324454,Financial Institutions,Financial Institutions +324447,Financial Institutions,Financial Institutions +324446,Financial Institutions,Financial Institutions +324445,Financial Institutions,Financial Institutions +322037,Financial Institutions,Financial Institutions +322036,Financial Institutions,Financial Institutions +322035,Financial Institutions,Financial Institutions +319083,Financial Institutions,Financial Institutions +319082,Financial Institutions,Financial Institutions +315229,Financial Institutions,Financial Institutions +315228,Financial Institutions,Financial Institutions +315032,Financial Institutions,Financial Institutions +315030,Financial Institutions,Financial Institutions +315029,Financial Institutions,Financial Institutions +313082,Financial Institutions,Financial Institutions +312949,Financial Institutions,Financial Institutions +309736,Financial Institutions,Financial Institutions +303640,Financial Institutions,Financial Institutions +303639,Financial Institutions,Financial Institutions +303638,Financial Institutions,Financial Institutions +296669,Financial Institutions,Financial Institutions +296290,Financial Institutions,Financial Institutions +296289,Financial Institutions,Financial Institutions +290290,Financial Institutions,Financial Institutions +507277,Financial Institutions,Financial Institutions +504310,Financial Institutions,Financial Institutions +497867,Financial Institutions,Financial Institutions +492664,Financial Institutions,Financial Institutions +489834,Financial Institutions,Financial Institutions +487215,Financial Institutions,Financial Institutions +487207,Financial Institutions,Financial Institutions +484117,Financial Institutions,Financial Institutions +484116,Financial Institutions,Financial Institutions +477141,Financial Institutions,Financial Institutions +474863,Financial Institutions,Financial Institutions +472372,Financial Institutions,Financial Institutions +472371,Financial Institutions,Financial Institutions +470903,Financial Institutions,Financial Institutions +470895,Financial Institutions,Financial Institutions +470894,Financial Institutions,Financial Institutions +470891,Financial Institutions,Financial Institutions +470889,Financial Institutions,Financial Institutions +469937,Financial Institutions,Financial Institutions +469911,Financial Institutions,Financial Institutions +467129,Financial Institutions,Financial Institutions +466711,Financial Institutions,Financial Institutions +466706,Financial Institutions,Financial Institutions +464318,Financial Institutions,Financial Institutions +463843,Financial Institutions,Financial Institutions +463475,Financial Institutions,Financial Institutions +463474,Financial Institutions,Financial Institutions +463473,Financial Institutions,Financial Institutions +463472,Financial Institutions,Financial Institutions +463302,Financial Institutions,Financial Institutions +459225,Financial Institutions,Financial Institutions +458500,Financial Institutions,Financial Institutions +455630,Financial Institutions,Financial Institutions +453960,Financial Institutions,Financial Institutions +453959,Financial Institutions,Financial Institutions +453958,Financial Institutions,Financial Institutions +453957,Financial Institutions,Financial Institutions +451573,Financial Institutions,Financial Institutions +451568,Financial Institutions,Financial Institutions +449589,Financial Institutions,Financial Institutions +449588,Financial Institutions,Financial Institutions +449586,Financial Institutions,Financial Institutions +449583,Financial Institutions,Financial Institutions +449511,Financial Institutions,Financial Institutions +446576,Financial Institutions,Financial Institutions +445261,Financial Institutions,Financial Institutions +445259,Financial Institutions,Financial Institutions +443115,Financial Institutions,Financial Institutions +435052,Financial Institutions,Financial Institutions +435050,Financial Institutions,Financial Institutions +435047,Financial Institutions,Financial Institutions +435044,Financial Institutions,Financial Institutions +432907,Financial Institutions,Financial Institutions +432244,Financial Institutions,Financial Institutions +430709,Financial Institutions,Financial Institutions +430394,Financial Institutions,Financial Institutions +430392,Financial Institutions,Financial Institutions +428568,Financial Institutions,Financial Institutions +428566,Financial Institutions,Financial Institutions +428565,Financial Institutions,Financial Institutions +428563,Financial Institutions,Financial Institutions +428562,Financial Institutions,Financial Institutions +428561,Financial Institutions,Financial Institutions +428559,Financial Institutions,Financial Institutions +428557,Financial Institutions,Financial Institutions +428555,Financial Institutions,Financial Institutions +428553,Financial Institutions,Financial Institutions +428551,Financial Institutions,Financial Institutions +428548,Financial Institutions,Financial Institutions +426253,Financial Institutions,Financial Institutions +426252,Financial Institutions,Financial Institutions +425884,Financial Institutions,Financial Institutions +424226,Financial Institutions,Financial Institutions +424225,Financial Institutions,Financial Institutions +416344,Financial Institutions,Financial Institutions +412962,Financial Institutions,Financial Institutions +412961,Financial Institutions,Financial Institutions +412960,Financial Institutions,Financial Institutions +412955,Financial Institutions,Financial Institutions +412951,Financial Institutions,Financial Institutions +412941,Financial Institutions,Financial Institutions +409104,Financial Institutions,Financial Institutions +409102,Financial Institutions,Financial Institutions +409100,Financial Institutions,Financial Institutions +409098,Financial Institutions,Financial Institutions +409096,Financial Institutions,Financial Institutions +406657,Financial Institutions,Financial Institutions +405772,Financial Institutions,Financial Institutions +405771,Financial Institutions,Financial Institutions +405770,Financial Institutions,Financial Institutions +402822,Financial Institutions,Financial Institutions +402807,Financial Institutions,Financial Institutions +402803,Financial Institutions,Financial Institutions +400973,Financial Institutions,Financial Institutions +399016,Financial Institutions,Financial Institutions +392752,Financial Institutions,Financial Institutions +392751,Financial Institutions,Financial Institutions +391630,Financial Institutions,Financial Institutions +391629,Financial Institutions,Financial Institutions +388505,Financial Institutions,Financial Institutions +385820,Financial Institutions,Financial Institutions +543450,Financial Institutions,Financial Institutions +543399,Financial Institutions,Financial Institutions +543397,Financial Institutions,Financial Institutions +543395,Financial Institutions,Financial Institutions +541575,Financial Institutions,Financial Institutions +537898,Financial Institutions,Financial Institutions +537897,Financial Institutions,Financial Institutions +537891,Financial Institutions,Financial Institutions +537889,Financial Institutions,Financial Institutions +535181,Financial Institutions,Financial Institutions +535180,Financial Institutions,Financial Institutions +526490,Financial Institutions,Financial Institutions +523168,Financial Institutions,Financial Institutions +522461,Financial Institutions,Financial Institutions +522457,Financial Institutions,Financial Institutions +519789,Financial Institutions,Financial Institutions +519783,Financial Institutions,Financial Institutions +519780,Financial Institutions,Financial Institutions +519776,Financial Institutions,Financial Institutions +517086,Financial Institutions,Financial Institutions +517084,Financial Institutions,Financial Institutions +516521,Financial Institutions,Financial Institutions +515780,Financial Institutions,Financial Institutions +515779,Financial Institutions,Financial Institutions +513936,Financial Institutions,Financial Institutions +402813,International Trade,International Trade +443589,International Trade,International Trade +378225,International Trade,International Trade +378224,International Trade,International Trade +377050,International Trade,International Trade +375388,International Trade,International Trade +375387,International Trade,International Trade +335590,International Trade,International Trade +324454,International Trade,International Trade +324440,International Trade,International Trade +315029,International Trade,International Trade +273052,International Trade,International Trade +428553,International Trade,International Trade +426253,International Trade,International Trade +428551,Small Business,Small Business +472371,Small Business,Small Business +335587,Small Business,Small Business +537895,Taxation and Finance,Taxation and Finance +535170,Taxation and Finance,Taxation and Finance +93349,Taxation and Finance,Taxation and Finance +148618,Taxation and Finance,Taxation and Finance +138077,Taxation and Finance,Taxation and Finance +138075,Taxation and Finance,Taxation and Finance +136634,Taxation and Finance,Taxation and Finance +134275,Taxation and Finance,Taxation and Finance +134274,Taxation and Finance,Taxation and Finance +273052,Taxation and Finance,Taxation and Finance +206808,Taxation and Finance,Taxation and Finance +391631,Taxation and Finance,Taxation and Finance +379115,Taxation and Finance,Taxation and Finance +348245,Taxation and Finance,Taxation and Finance +329662,Taxation and Finance,Taxation and Finance +522461,Taxation and Finance,Taxation and Finance +517084,Taxation and Finance,Taxation and Finance +458504,Taxation and Finance,Taxation and Finance +451568,Taxation and Finance,Taxation and Finance +446576,Taxation and Finance,Taxation and Finance +428569,Taxation and Finance,Taxation and Finance +428553,Taxation and Finance,Taxation and Finance +428551,Taxation and Finance,Taxation and Finance +402813,Taxation and Finance,Taxation and Finance +400973,Taxation and Finance,Taxation and Finance +543399,Taxation and Finance,Taxation and Finance +537900,Taxation and Finance,Taxation and Finance +130574,Industry,Industry +277669,Taxation and Finance,Taxation and Finance +254469,Taxation and Finance,Taxation and Finance +275972,Health,Health +275971,Health,Health +112575,Health,Health +112574,Health,Health +275970,Health,Health +262250,Health,Health +262249,Health,Health +226931,Health,Health +220547,Health,Health +220289,Health,Health +320649,Health,Health +468721,Intellectual Property,Intellectual Property +468720,Intellectual Property,Intellectual Property +157440,Intellectual Property,Intellectual Property +131715,Intellectual Property,Intellectual Property +131714,Intellectual Property,Intellectual Property +194695,Intellectual Property,Intellectual Property +181724,Intellectual Property,Intellectual Property +165066,Intellectual Property,Intellectual Property +165065,Intellectual Property,Intellectual Property +455104,Intellectual Property,Intellectual Property +438392,Intellectual Property,Intellectual Property +438383,Intellectual Property,Intellectual Property +438374,Intellectual Property,Intellectual Property +424394,Intellectual Property,Intellectual Property +395443,Intellectual Property,Intellectual Property +395437,Intellectual Property,Intellectual Property +370713,Intellectual Property,Intellectual Property +367548,Intellectual Property,Intellectual Property +355763,Intellectual Property,Intellectual Property +355762,Intellectual Property,Intellectual Property +355761,Intellectual Property,Intellectual Property +355759,Intellectual Property,Intellectual Property +355417,Intellectual Property,Intellectual Property +353936,Intellectual Property,Intellectual Property +353934,Intellectual Property,Intellectual Property +353930,Intellectual Property,Intellectual Property +353928,Intellectual Property,Intellectual Property +308190,Intellectual Property,Intellectual Property +483420,Intellectual Property,Intellectual Property +480754,Intellectual Property,Intellectual Property +424392,International Trade,International Trade +424391,International Trade,International Trade +394849,Industry,Industry +444020,Infrastructure,Infrastructure +394847,Tourism,Tourism +148722,Consumer Issues,Consumer Issues +101241,International Trade,International Trade +101239,Transportation,Transportation +442818,Employment and Training,Employment and Training +442817,Energy,Energy +442820,Industry,Industry +442818,Labour,Labour +103375,Employment and Training,Employment and Training +103374,Taxation and Finance,Taxation and Finance +404128,Environment,Environment +285694,Forestry,Forestry +160897,Industry,Industry +419500,International Trade,International Trade +163465,Taxation and Finance,Taxation and Finance +111802,Other,Economy +188990,Agriculture,Agriculture +492785,Consumer Issues,Consumer Issues +540133,Education,Education +540154,Employment and Training,Employment and Training +495081,Energy,Energy +407725,Environment,Environment +84455,Energy,Energy +88197,Industry,Industry +88229,Mining,Mining +88209,Regional Development,Regional Development +76695,Energy,Energy +76695,Infrastructure,Infrastructure +166204,Consumer Issues,Consumer Issues +371249,Employment and Training,Employment and Training +96476,Energy,Energy +166205,Environment,Environment +96476,Government Procurement,Government Procurement +411380,Industry,Industry +166205,International Relations,International Relations +411380,International Trade,International Trade +371251,Regional Development,Regional Development +96476,Small Business,Small Business +96476,Taxation and Finance,Taxation and Finance +166206,Transportation,Transportation +156839,Education,Education +159160,Health,Health +131194,International Relations,International Relations +113634,Other,Social Policy +277689,Health,Health +176647,Infrastructure,Infrastructure +335078,Transportation,Transportation +341064,Agriculture,Agriculture +194997,Energy,Energy +391449,Environment,Environment +387860,Industry,Industry +387821,Taxation and Finance,Taxation and Finance +387859,Transportation,Transportation +531817,Employment and Training,Employment and Training +452402,Health,Health +427455,Taxation and Finance,Taxation and Finance +92627,Other,Disability issues +420865,Defence,Defence +420865,Government Procurement,Government Procurement +420865,Industry,Industry +243611,Regional Development,Regional Development +418786,Constitutional Issues,Constitutional Issues +442449,Employment and Training,Employment and Training +418785,Health,Health +418785,Justice and Law Enforcement,Justice and Law Enforcement +471000,Taxation and Finance,Taxation and Finance +120900,Other,Housing and homelessness +80321,Infrastructure,Infrastructure +80334,Transportation,Transportation +250785,Defence,Defence +462583,Environment,Environment +455440,Forestry,Forestry +449674,Industry,Industry +419901,International Trade,International Trade +142974,Regional Development,Regional Development +484819,Transportation,Transportation +87216,Industry,Industry +78416,Infrastructure,Infrastructure +78416,Tourism,Tourism +145442,Fisheries,Fisheries +102458,Energy,Energy +102463,Environment,Environment +102459,Fisheries,Fisheries +90432,Financial Institutions,Financial Institutions +90674,Financial Institutions,Financial Institutions +309551,Consumer Issues,Consumer Issues +211814,Health,Health +301911,Industry,Industry +206171,Intellectual Property,Intellectual Property +222349,Internal Trade,Internal Trade +211814,International Trade,International Trade +428553,Employment and Training,Employment and Training +512031,Financial Institutions,Financial Institutions +406657,International Trade,International Trade +329669,Small Business,Small Business +537897,Taxation and Finance,Taxation and Finance +109955,International Trade,International Trade +109955,Industry,Industry +277671,Taxation and Finance,Taxation and Finance +275989,Health,Health +480578,Intellectual Property,Intellectual Property +424394,International Trade,International Trade +97256,Agriculture,Agriculture +89183,Agriculture,Agriculture +93259,Taxation and Finance,Taxation and Finance +124856,Energy,Energy +93282,Environment,Environment +93282,Industry,Industry +322281,Energy,Energy +264690,Environment,Environment +223509,Industry,Industry +185286,International Trade,International Trade +93998,Infrastructure,Infrastructure +77044,Health,Health +134594,Health,Health +433785,Industry,Industry +132819,Intellectual Property,Intellectual Property +458913,International Trade,International Trade +415310,Regional Development,Regional Development +93797,Intellectual Property,Intellectual Property +101136,Other,Research & Development +129334,Agriculture,Agriculture +166121,Energy,Energy +100617,Environment,Environment +148054,International Trade,International Trade +166121,Regional Development,Regional Development +376983,International Trade,International Trade +355757,International Trade,International Trade +308190,International Trade,International Trade +468721,International Trade,International Trade +468720,International Trade,International Trade +468719,International Trade,International Trade +438405,International Trade,International Trade +424395,International Trade,International Trade +109707,Energy,Energy +93282,Energy,Energy +303929,Energy,Energy +264690,Energy,Energy +125097,Energy,Energy +106018,Energy,Energy +97716,Energy,Energy +89107,Energy,Energy +89104,Energy,Energy +223509,Energy,Energy +218591,Energy,Energy +218590,Energy,Energy +218589,Energy,Energy +185286,Energy,Energy +156645,Energy,Energy +152178,Energy,Energy +150374,Energy,Energy +150373,Energy,Energy +145882,Energy,Energy +132599,Energy,Energy +132598,Energy,Energy +341569,Energy,Energy +218591,Environment,Environment +185286,Environment,Environment +106018,Environment,Environment +97716,Environment,Environment +152178,Environment,Environment +150373,Environment,Environment +341569,Environment,Environment +322281,Environment,Environment +303929,Environment,Environment +218591,Industry,Industry +218590,Industry,Industry +150374,Industry,Industry +322281,Industry,Industry +303929,Industry,Industry +264690,Industry,Industry +341569,International Trade,International Trade +322281,International Trade,International Trade +97716,International Trade,International Trade +156645,International Trade,International Trade +152178,International Trade,International Trade +150374,International Trade,International Trade +145882,International Trade,International Trade +132598,International Trade,International Trade +125097,International Trade,International Trade +303929,International Trade,International Trade +264690,International Trade,International Trade +223509,International Trade,International Trade +218591,International Trade,International Trade +218590,International Trade,International Trade +218589,International Trade,International Trade +89856,Infrastructure,Infrastructure +79694,Infrastructure,Infrastructure +100616,Infrastructure,Infrastructure +139534,Health,Health +133164,Health,Health +105710,Health,Health +76835,Health,Health +76834,Health,Health +159420,Health,Health +149616,Health,Health +138096,Health,Health +134678,Health,Health +409063,Health,Health +407975,Health,Health +403098,Health,Health +400582,Health,Health +386738,Health,Health +433785,Health,Health +431225,Health,Health +426348,Health,Health +424371,Health,Health +415310,Health,Health +494329,Health,Health +488240,Health,Health +473717,Health,Health +458913,Health,Health +458912,Health,Health +456786,Health,Health +456759,Health,Health +454943,Health,Health +454942,Health,Health +454183,Health,Health +451829,Health,Health +451825,Health,Health +451823,Health,Health +424371,Industry,Industry +415310,Industry,Industry +149616,Industry,Industry +494329,Industry,Industry +458913,Industry,Industry +458912,Industry,Industry +456786,Industry,Industry +456759,Industry,Industry +454943,Industry,Industry +454942,Industry,Industry +454183,Industry,Industry +451829,Industry,Industry +451825,Industry,Industry +451823,Industry,Industry +440742,Industry,Industry +382338,Intellectual Property,Intellectual Property +473717,Intellectual Property,Intellectual Property +93794,Intellectual Property,Intellectual Property +93786,Intellectual Property,Intellectual Property +458912,International Trade,International Trade +454943,International Trade,International Trade +382339,International Trade,International Trade +86814,Agriculture,Agriculture +166121,Agriculture,Agriculture +159712,Energy,Energy +159710,Energy,Energy +148054,Energy,Energy +129337,Energy,Energy +129336,Energy,Energy +129334,Energy,Energy +100617,Energy,Energy +100614,Energy,Energy +97715,Energy,Energy +86814,Energy,Energy +100614,Environment,Environment +97715,Environment,Environment +86814,Environment,Environment +166121,Environment,Environment +159712,Environment,Environment +159710,Environment,Environment +148054,Environment,Environment +129337,Environment,Environment +129336,Environment,Environment +129334,Environment,Environment +100614,International Trade,International Trade +97715,International Trade,International Trade +138136,Employment and Training,Employment and Training +193186,Consumer Issues,Consumer Issues +193183,Consumer Issues,Consumer Issues +183168,Consumer Issues,Consumer Issues +209028,Consumer Issues,Consumer Issues +321210,Health,Health +321209,Health,Health +209028,Health,Health +224054,Consumer Issues,Consumer Issues +355922,Consumer Issues,Consumer Issues +193181,Consumer Issues,Consumer Issues +193179,Consumer Issues,Consumer Issues +183166,Consumer Issues,Consumer Issues +156768,Consumer Issues,Consumer Issues +147975,Consumer Issues,Consumer Issues +312812,Consumer Issues,Consumer Issues +277596,Consumer Issues,Consumer Issues +261249,Consumer Issues,Consumer Issues +253310,Consumer Issues,Consumer Issues +156752,Employment and Training,Employment and Training +312811,Employment and Training,Employment and Training +128865,Employment and Training,Employment and Training +128862,Employment and Training,Employment and Training +165004,Health,Health +347082,Health,Health +224057,Health,Health +114794,International Trade,International Trade +541521,Health,Health +540890,Health,Health +489449,Defence,Defence +480638,Defence,Defence +144316,Defence,Defence +144315,Defence,Defence +168136,Defence,Defence +161456,Defence,Defence +155292,Defence,Defence +349928,Defence,Defence +236349,Defence,Defence +450753,Defence,Defence +450752,Defence,Defence +431790,Defence,Defence +420477,Defence,Defence +408340,Defence,Defence +404528,Defence,Defence +388736,Defence,Defence +374699,Defence,Defence +374698,Defence,Defence +374697,Defence,Defence +374696,Defence,Defence +541105,Defence,Defence +516910,Defence,Defence +494043,Defence,Defence +236349,Employment and Training,Employment and Training +191136,Employment and Training,Employment and Training +188838,Employment and Training,Employment and Training +188600,Employment and Training,Employment and Training +164984,Employment and Training,Employment and Training +161456,Employment and Training,Employment and Training +155292,Employment and Training,Employment and Training +404325,Employment and Training,Employment and Training +404323,Employment and Training,Employment and Training +404322,Employment and Training,Employment and Training +398457,Employment and Training,Employment and Training +394637,Employment and Training,Employment and Training +374700,Employment and Training,Employment and Training +374699,Employment and Training,Employment and Training +374698,Employment and Training,Employment and Training +374697,Employment and Training,Employment and Training +374696,Employment and Training,Employment and Training +373873,Employment and Training,Employment and Training +270997,Employment and Training,Employment and Training +480638,Employment and Training,Employment and Training +516910,Industry,Industry +494042,Industry,Industry +144315,Industry,Industry +117566,Industry,Industry +115034,Industry,Industry +187104,Industry,Industry +181644,Industry,Industry +164984,Industry,Industry +161456,Industry,Industry +155292,Industry,Industry +149016,Industry,Industry +146454,Industry,Industry +144316,Industry,Industry +236349,Industry,Industry +224308,Industry,Industry +195884,Industry,Industry +191136,Industry,Industry +188838,Industry,Industry +188600,Industry,Industry +188044,Industry,Industry +374701,Industry,Industry +374700,Industry,Industry +374699,Industry,Industry +374698,Industry,Industry +374697,Industry,Industry +374696,Industry,Industry +373873,Industry,Industry +373302,Industry,Industry +358346,Industry,Industry +355020,Industry,Industry +331446,Industry,Industry +330112,Industry,Industry +311889,Industry,Industry +292309,Industry,Industry +288069,Industry,Industry +286689,Industry,Industry +284329,Industry,Industry +279671,Industry,Industry +279670,Industry,Industry +273023,Industry,Industry +270997,Industry,Industry +266169,Industry,Industry +263829,Industry,Industry +489449,Industry,Industry +480638,Industry,Industry +466523,Industry,Industry +456532,Industry,Industry +454537,Industry,Industry +450752,Industry,Industry +449570,Industry,Industry +444350,Industry,Industry +444276,Industry,Industry +431823,Industry,Industry +431822,Industry,Industry +431821,Industry,Industry +431790,Industry,Industry +408515,Industry,Industry +408341,Industry,Industry +408340,Industry,Industry +404326,Industry,Industry +404325,Industry,Industry +404323,Industry,Industry +404322,Industry,Industry +401869,Industry,Industry +398457,Industry,Industry +394637,Industry,Industry +394633,Industry,Industry +388815,Industry,Industry +388742,Industry,Industry +388741,Industry,Industry +388740,Industry,Industry +388736,Industry,Industry +386502,Industry,Industry +382953,Industry,Industry +382804,Industry,Industry +381748,Industry,Industry +541105,Industry,Industry +528806,Industry,Industry +528802,Industry,Industry +541105,Internal Trade,Internal Trade +444350,Internal Trade,Internal Trade +161456,Internal Trade,Internal Trade +155292,Internal Trade,Internal Trade +374698,Regional Development,Regional Development +374697,Regional Development,Regional Development +161456,Regional Development,Regional Development +146454,Regional Development,Regional Development +195884,Regional Development,Regional Development +188838,Regional Development,Regional Development +188600,Regional Development,Regional Development +185372,Regional Development,Regional Development +181644,Regional Development,Regional Development +331446,Regional Development,Regional Development +236349,Regional Development,Regional Development +224308,Regional Development,Regional Development +373302,Regional Development,Regional Development +358347,Regional Development,Regional Development +358346,Regional Development,Regional Development +355020,Regional Development,Regional Development +456532,Regional Development,Regional Development +404325,Regional Development,Regional Development +404323,Regional Development,Regional Development +401869,Regional Development,Regional Development +398457,Regional Development,Regional Development +374700,Regional Development,Regional Development +394637,Transportation,Transportation +388741,Transportation,Transportation +161456,Transportation,Transportation +117566,Transportation,Transportation +101454,Transportation,Transportation +100134,Transportation,Transportation +224308,Transportation,Transportation +201489,Transportation,Transportation +188044,Transportation,Transportation +382804,Transportation,Transportation +374701,Transportation,Transportation +374700,Transportation,Transportation +374698,Transportation,Transportation +374696,Transportation,Transportation +373873,Transportation,Transportation +373302,Transportation,Transportation +355021,Transportation,Transportation +311889,Transportation,Transportation +310008,Transportation,Transportation +292389,Transportation,Transportation +288069,Transportation,Transportation +286689,Transportation,Transportation +279671,Transportation,Transportation +266169,Transportation,Transportation +236349,Transportation,Transportation +431821,Transportation,Transportation +408515,Transportation,Transportation +408341,Transportation,Transportation +404326,Transportation,Transportation +404322,Transportation,Transportation +401869,Transportation,Transportation +88476,Other,Aérospatial +88475,Other,Aérospatial +123294,Other,Aérospatial +117566,Other,Aérospatial +101454,Other,Aérospatial +92901,Other,Aérospatial +92900,Other,Aérospatial +499849,Employment and Training,Employment and Training +433079,Employment and Training,Employment and Training +370421,Employment and Training,Employment and Training +352826,Employment and Training,Employment and Training +352825,Employment and Training,Employment and Training +323650,Employment and Training,Employment and Training +298109,Employment and Training,Employment and Training +263217,Employment and Training,Employment and Training +207927,Employment and Training,Employment and Training +399262,Employment and Training,Employment and Training +399252,Employment and Training,Employment and Training +391205,Employment and Training,Employment and Training +386356,Employment and Training,Employment and Training +386209,Employment and Training,Employment and Training +380520,Employment and Training,Employment and Training +380519,Employment and Training,Employment and Training +376889,Employment and Training,Employment and Training +376856,Employment and Training,Employment and Training +376844,Employment and Training,Employment and Training +376833,Employment and Training,Employment and Training +376832,Employment and Training,Employment and Training +373889,Employment and Training,Employment and Training +524880,Employment and Training,Employment and Training +516902,Employment and Training,Employment and Training +511925,Employment and Training,Employment and Training +399271,Environment,Environment +516902,Environment,Environment +511925,Environment,Environment +524876,Health,Health +516902,Health,Health +148876,Health,Health +221267,Health,Health +221247,Health,Health +191392,Health,Health +433079,Health,Health +422852,Health,Health +419483,Health,Health +399262,Health,Health +399252,Health,Health +399249,Health,Health +389745,Health,Health +376889,Health,Health +376856,Health,Health +376844,Health,Health +376833,Health,Health +352826,Health,Health +352825,Health,Health +349657,Health,Health +529966,Health,Health +323650,Industry,Industry +323649,Industry,Industry +145183,Industry,Industry +228029,Industry,Industry +221267,Industry,Industry +221247,Industry,Industry +191392,Industry,Industry +454082,Industry,Industry +442931,Industry,Industry +422852,Industry,Industry +419483,Industry,Industry +413938,Industry,Industry +413937,Industry,Industry +399271,Industry,Industry +399262,Industry,Industry +399252,Industry,Industry +399249,Industry,Industry +380519,Industry,Industry +380518,Industry,Industry +376889,Industry,Industry +376856,Industry,Industry +376844,Industry,Industry +376833,Industry,Industry +376832,Industry,Industry +373886,Industry,Industry +356796,Industry,Industry +352826,Industry,Industry +352825,Industry,Industry +349657,Industry,Industry +413938,Justice and Law Enforcement,Justice and Law Enforcement +524880,Justice and Law Enforcement,Justice and Law Enforcement +499849,Labour,Labour +391205,Labour,Labour +148876,Labour,Labour +221267,Labour,Labour +221247,Labour,Labour +323650,Labour,Labour +323649,Labour,Labour +228029,Labour,Labour +529966,Labour,Labour +323650,Taxation and Finance,Taxation and Finance +323649,Taxation and Finance,Taxation and Finance +221267,Taxation and Finance,Taxation and Finance +221247,Taxation and Finance,Taxation and Finance +404309,Taxation and Finance,Taxation and Finance +389745,Taxation and Finance,Taxation and Finance +370421,Taxation and Finance,Taxation and Finance +380519,Transportation,Transportation +373889,Transportation,Transportation +406973,Education,Education +402917,Education,Education +106116,Education,Education +106113,Education,Education +106107,Education,Education +106104,Education,Education +106103,Education,Education +106100,Education,Education +103734,Education,Education +160975,Education,Education +160974,Education,Education +160973,Education,Education +160971,Education,Education +160970,Education,Education +160969,Education,Education +160968,Education,Education +154029,Education,Education +144995,Education,Education +144994,Education,Education +144982,Education,Education +144981,Education,Education +144980,Education,Education +144979,Education,Education +144978,Education,Education +144976,Education,Education +144958,Education,Education +144957,Education,Education +144956,Education,Education +144955,Education,Education +144954,Education,Education +127255,Education,Education +127254,Education,Education +106137,Education,Education +106135,Education,Education +247603,Education,Education +247601,Education,Education +247600,Education,Education +247598,Education,Education +247591,Education,Education +247589,Education,Education +247579,Education,Education +247578,Education,Education +247576,Education,Education +247575,Education,Education +247574,Education,Education +247573,Education,Education +247572,Education,Education +247570,Education,Education +247569,Education,Education +237929,Education,Education +228556,Education,Education +228555,Education,Education +228554,Education,Education +228553,Education,Education +228552,Education,Education +225814,Education,Education +225813,Education,Education +225812,Education,Education +225811,Education,Education +211931,Education,Education +211929,Education,Education +196866,Education,Education +196848,Education,Education +196840,Education,Education +196837,Education,Education +196833,Education,Education +196832,Education,Education +188484,Education,Education +165368,Education,Education +348057,Education,Education +340589,Education,Education +340547,Education,Education +340546,Education,Education +340545,Education,Education +340538,Education,Education +340504,Education,Education +340503,Education,Education +340501,Education,Education +340499,Education,Education +340497,Education,Education +340481,Education,Education +340479,Education,Education +340440,Education,Education +339818,Education,Education +339817,Education,Education +339815,Education,Education +339814,Education,Education +339813,Education,Education +324960,Education,Education +322893,Education,Education +307650,Education,Education +307611,Education,Education +307610,Education,Education +307609,Education,Education +307589,Education,Education +307575,Education,Education +307574,Education,Education +307573,Education,Education +307571,Education,Education +307570,Education,Education +307569,Education,Education +307551,Education,Education +307530,Education,Education +307529,Education,Education +307314,Education,Education +307313,Education,Education +307312,Education,Education +307311,Education,Education +307310,Education,Education +307293,Education,Education +307292,Education,Education +307291,Education,Education +307290,Education,Education +307289,Education,Education +307269,Education,Education +307249,Education,Education +307229,Education,Education +307211,Education,Education +307210,Education,Education +307209,Education,Education +293329,Education,Education +290269,Education,Education +274873,Education,Education +273289,Education,Education +252962,Education,Education +252957,Education,Education +247749,Education,Education +247731,Education,Education +247730,Education,Education +247729,Education,Education +247716,Education,Education +247714,Education,Education +247713,Education,Education +247711,Education,Education +247710,Education,Education +247614,Education,Education +247613,Education,Education +247612,Education,Education +247611,Education,Education +247610,Education,Education +247609,Education,Education +247608,Education,Education +247607,Education,Education +247606,Education,Education +247605,Education,Education +398055,Education,Education +397225,Education,Education +395218,Education,Education +391255,Education,Education +390644,Education,Education +390643,Education,Education +390638,Education,Education +390636,Education,Education +390632,Education,Education +390629,Education,Education +390627,Education,Education +390626,Education,Education +390625,Education,Education +390622,Education,Education +390620,Education,Education +390619,Education,Education +390617,Education,Education +390616,Education,Education +390614,Education,Education +390613,Education,Education +390612,Education,Education +390611,Education,Education +390602,Education,Education +390601,Education,Education +390599,Education,Education +390598,Education,Education +390594,Education,Education +390593,Education,Education +390585,Education,Education +390584,Education,Education +390582,Education,Education +390579,Education,Education +390576,Education,Education +390575,Education,Education +390379,Education,Education +390377,Education,Education +390374,Education,Education +390373,Education,Education +390372,Education,Education +390370,Education,Education +390364,Education,Education +390363,Education,Education +390361,Education,Education +390360,Education,Education +390357,Education,Education +390356,Education,Education +390353,Education,Education +390347,Education,Education +390342,Education,Education +390341,Education,Education +390339,Education,Education +390337,Education,Education +390335,Education,Education +390333,Education,Education +390329,Education,Education +390328,Education,Education +390326,Education,Education +390324,Education,Education +390320,Education,Education +390319,Education,Education +390318,Education,Education +390315,Education,Education +390314,Education,Education +390313,Education,Education +390311,Education,Education +390309,Education,Education +390308,Education,Education +390304,Education,Education +390303,Education,Education +390302,Education,Education +390299,Education,Education +390298,Education,Education +390296,Education,Education +390295,Education,Education +390293,Education,Education +390290,Education,Education +390288,Education,Education +390287,Education,Education +390285,Education,Education +390284,Education,Education +390282,Education,Education +390281,Education,Education +390280,Education,Education +390279,Education,Education +390278,Education,Education +390276,Education,Education +390275,Education,Education +390274,Education,Education +390273,Education,Education +390272,Education,Education +390271,Education,Education +390269,Education,Education +390268,Education,Education +390267,Education,Education +390266,Education,Education +390265,Education,Education +390264,Education,Education +390261,Education,Education +390260,Education,Education +390259,Education,Education +390258,Education,Education +390257,Education,Education +390254,Education,Education +390253,Education,Education +390251,Education,Education +390250,Education,Education +390249,Education,Education +390248,Education,Education +390247,Education,Education +390246,Education,Education +390245,Education,Education +390244,Education,Education +390243,Education,Education +390241,Education,Education +390240,Education,Education +390239,Education,Education +390238,Education,Education +390234,Education,Education +390233,Education,Education +390232,Education,Education +390230,Education,Education +390226,Education,Education +390219,Education,Education +390216,Education,Education +390212,Education,Education +390210,Education,Education +390209,Education,Education +390208,Education,Education +390205,Education,Education +390204,Education,Education +390201,Education,Education +390199,Education,Education +390197,Education,Education +390195,Education,Education +390194,Education,Education +390193,Education,Education +390190,Education,Education +390186,Education,Education +390185,Education,Education +390184,Education,Education +390183,Education,Education +390181,Education,Education +390179,Education,Education +390177,Education,Education +390176,Education,Education +390175,Education,Education +390174,Education,Education +390173,Education,Education +390172,Education,Education +390170,Education,Education +390169,Education,Education +390168,Education,Education +390166,Education,Education +390163,Education,Education +386624,Education,Education +382929,Education,Education +377879,Education,Education +375598,Education,Education +375079,Education,Education +371706,Education,Education +371704,Education,Education +371702,Education,Education +371700,Education,Education +371699,Education,Education +371694,Education,Education +371691,Education,Education +371682,Education,Education +371674,Education,Education +371668,Education,Education +353853,Education,Education +544696,Education,Education +544695,Education,Education +542701,Education,Education +542260,Education,Education +540946,Education,Education +540731,Education,Education +539033,Education,Education +538712,Education,Education +536498,Education,Education +536497,Education,Education +530048,Education,Education +530009,Education,Education +526794,Education,Education +525621,Education,Education +525616,Education,Education +525612,Education,Education +525609,Education,Education +525608,Education,Education +525607,Education,Education +525605,Education,Education +525604,Education,Education +525602,Education,Education +525597,Education,Education +525596,Education,Education +525593,Education,Education +525590,Education,Education +525587,Education,Education +525582,Education,Education +525557,Education,Education +525551,Education,Education +525549,Education,Education +525547,Education,Education +498250,Education,Education +498247,Education,Education +491587,Education,Education +491585,Education,Education +491575,Education,Education +491568,Education,Education +491562,Education,Education +491539,Education,Education +491532,Education,Education +491517,Education,Education +491514,Education,Education +491509,Education,Education +491501,Education,Education +491499,Education,Education +491496,Education,Education +491494,Education,Education +491482,Education,Education +491454,Education,Education +491446,Education,Education +491438,Education,Education +491435,Education,Education +491433,Education,Education +491431,Education,Education +491425,Education,Education +491407,Education,Education +491404,Education,Education +491396,Education,Education +491392,Education,Education +491387,Education,Education +491381,Education,Education +491374,Education,Education +491371,Education,Education +485619,Education,Education +485618,Education,Education +485617,Education,Education +481439,Education,Education +481438,Education,Education +481437,Education,Education +480097,Education,Education +477047,Education,Education +477043,Education,Education +473289,Education,Education +473285,Education,Education +473279,Education,Education +473266,Education,Education +471353,Education,Education +471352,Education,Education +471351,Education,Education +471350,Education,Education +471349,Education,Education +469022,Education,Education +468960,Education,Education +468957,Education,Education +468956,Education,Education +468941,Education,Education +468940,Education,Education +468939,Education,Education +468938,Education,Education +468937,Education,Education +468936,Education,Education +468650,Education,Education +468649,Education,Education +468648,Education,Education +464780,Education,Education +456353,Education,Education +456352,Education,Education +456351,Education,Education +456349,Education,Education +456348,Education,Education +451028,Education,Education +446100,Education,Education +446099,Education,Education +441683,Education,Education +441681,Education,Education +441679,Education,Education +441677,Education,Education +441676,Education,Education +441672,Education,Education +441671,Education,Education +441670,Education,Education +441668,Education,Education +441666,Education,Education +441659,Education,Education +436431,Education,Education +436205,Education,Education +435714,Education,Education +434385,Education,Education +434098,Education,Education +433371,Education,Education +432087,Education,Education +432081,Education,Education +432080,Education,Education +431419,Education,Education +431418,Education,Education +431417,Education,Education +416117,Education,Education +416108,Education,Education +416088,Education,Education +413922,Education,Education +413921,Education,Education +408586,Education,Education +408547,Education,Education +408546,Education,Education +408509,Education,Education +408474,Education,Education +407770,Education,Education +407768,Education,Education +406976,Education,Education +526794,Immigration,Immigration +525621,Immigration,Immigration +160970,Immigration,Immigration +247749,Immigration,Immigration +247731,Immigration,Immigration +247730,Immigration,Immigration +247729,Immigration,Immigration +247716,Immigration,Immigration +247714,Immigration,Immigration +247713,Immigration,Immigration +247711,Immigration,Immigration +247710,Immigration,Immigration +247614,Immigration,Immigration +247613,Immigration,Immigration +247612,Immigration,Immigration +247611,Immigration,Immigration +247609,Immigration,Immigration +247608,Immigration,Immigration +247607,Immigration,Immigration +247606,Immigration,Immigration +247605,Immigration,Immigration +247603,Immigration,Immigration +247601,Immigration,Immigration +247600,Immigration,Immigration +247598,Immigration,Immigration +247591,Immigration,Immigration +247589,Immigration,Immigration +247579,Immigration,Immigration +247578,Immigration,Immigration +247576,Immigration,Immigration +247575,Immigration,Immigration +247574,Immigration,Immigration +247573,Immigration,Immigration +247572,Immigration,Immigration +247570,Immigration,Immigration +247569,Immigration,Immigration +196848,Immigration,Immigration +196840,Immigration,Immigration +196837,Immigration,Immigration +196832,Immigration,Immigration +416108,Immigration,Immigration +307650,Immigration,Immigration +307611,Immigration,Immigration +307610,Immigration,Immigration +307609,Immigration,Immigration +307589,Immigration,Immigration +307575,Immigration,Immigration +307574,Immigration,Immigration +307573,Immigration,Immigration +307571,Immigration,Immigration +307570,Immigration,Immigration +307569,Immigration,Immigration +307551,Immigration,Immigration +307530,Immigration,Immigration +307529,Immigration,Immigration +307314,Immigration,Immigration +307313,Immigration,Immigration +307312,Immigration,Immigration +307311,Immigration,Immigration +307310,Immigration,Immigration +307293,Immigration,Immigration +307292,Immigration,Immigration +307291,Immigration,Immigration +307290,Immigration,Immigration +307289,Immigration,Immigration +307269,Immigration,Immigration +307249,Immigration,Immigration +307229,Immigration,Immigration +307211,Immigration,Immigration +307210,Immigration,Immigration +307209,Immigration,Immigration +525616,Immigration,Immigration +525612,Immigration,Immigration +525609,Immigration,Immigration +525608,Immigration,Immigration +525607,Immigration,Immigration +525605,Immigration,Immigration +525604,Immigration,Immigration +525596,Immigration,Immigration +525593,Immigration,Immigration +525587,Immigration,Immigration +525582,Immigration,Immigration +525557,Immigration,Immigration +525551,Immigration,Immigration +525547,Immigration,Immigration +491587,Immigration,Immigration +491562,Immigration,Immigration +491532,Immigration,Immigration +491517,Immigration,Immigration +491514,Immigration,Immigration +491509,Immigration,Immigration +491501,Immigration,Immigration +491499,Immigration,Immigration +491496,Immigration,Immigration +491494,Immigration,Immigration +491482,Immigration,Immigration +491454,Immigration,Immigration +491446,Immigration,Immigration +491438,Immigration,Immigration +491435,Immigration,Immigration +491433,Immigration,Immigration +491431,Immigration,Immigration +491407,Immigration,Immigration +491396,Immigration,Immigration +491392,Immigration,Immigration +491387,Immigration,Immigration +491381,Immigration,Immigration +491374,Immigration,Immigration +491371,Immigration,Immigration +441681,Immigration,Immigration +441679,Immigration,Immigration +441677,Immigration,Immigration +441672,Immigration,Immigration +441671,Immigration,Immigration +441670,Immigration,Immigration +441668,Immigration,Immigration +441666,Immigration,Immigration +441659,Immigration,Immigration +434098,Immigration,Immigration +433371,Immigration,Immigration +544811,Immigration,Immigration +544695,Immigration,Immigration +542266,Immigration,Immigration +541892,Immigration,Immigration +407768,Intellectual Property,Intellectual Property +398055,Intellectual Property,Intellectual Property +160971,Intellectual Property,Intellectual Property +160970,Intellectual Property,Intellectual Property +160968,Intellectual Property,Intellectual Property +154029,Intellectual Property,Intellectual Property +145615,Intellectual Property,Intellectual Property +144996,Intellectual Property,Intellectual Property +106134,Intellectual Property,Intellectual Property +225814,Intellectual Property,Intellectual Property +225813,Intellectual Property,Intellectual Property +225812,Intellectual Property,Intellectual Property +225811,Intellectual Property,Intellectual Property +196848,Intellectual Property,Intellectual Property +196840,Intellectual Property,Intellectual Property +196837,Intellectual Property,Intellectual Property +196833,Intellectual Property,Intellectual Property +196832,Intellectual Property,Intellectual Property +188484,Intellectual Property,Intellectual Property +165367,Intellectual Property,Intellectual Property +160975,Intellectual Property,Intellectual Property +160974,Intellectual Property,Intellectual Property +160972,Intellectual Property,Intellectual Property +252962,Intellectual Property,Intellectual Property +252957,Intellectual Property,Intellectual Property +247749,Intellectual Property,Intellectual Property +247731,Intellectual Property,Intellectual Property +247730,Intellectual Property,Intellectual Property +247729,Intellectual Property,Intellectual Property +247716,Intellectual Property,Intellectual Property +247714,Intellectual Property,Intellectual Property +247713,Intellectual Property,Intellectual Property +247711,Intellectual Property,Intellectual Property +247710,Intellectual Property,Intellectual Property +247614,Intellectual Property,Intellectual Property +247613,Intellectual Property,Intellectual Property +247612,Intellectual Property,Intellectual Property +247611,Intellectual Property,Intellectual Property +247609,Intellectual Property,Intellectual Property +247608,Intellectual Property,Intellectual Property +247607,Intellectual Property,Intellectual Property +247606,Intellectual Property,Intellectual Property +247605,Intellectual Property,Intellectual Property +247603,Intellectual Property,Intellectual Property +247601,Intellectual Property,Intellectual Property +247600,Intellectual Property,Intellectual Property +247598,Intellectual Property,Intellectual Property +247591,Intellectual Property,Intellectual Property +247589,Intellectual Property,Intellectual Property +247579,Intellectual Property,Intellectual Property +247578,Intellectual Property,Intellectual Property +247576,Intellectual Property,Intellectual Property +247575,Intellectual Property,Intellectual Property +247574,Intellectual Property,Intellectual Property +247573,Intellectual Property,Intellectual Property +247572,Intellectual Property,Intellectual Property +247570,Intellectual Property,Intellectual Property +247569,Intellectual Property,Intellectual Property +237929,Intellectual Property,Intellectual Property +416117,Intellectual Property,Intellectual Property +416108,Intellectual Property,Intellectual Property +413922,Intellectual Property,Intellectual Property +408547,Intellectual Property,Intellectual Property +408546,Intellectual Property,Intellectual Property +408474,Taxation and Finance,Taxation and Finance +407770,Taxation and Finance,Taxation and Finance +160975,Taxation and Finance,Taxation and Finance +160974,Taxation and Finance,Taxation and Finance +160971,Taxation and Finance,Taxation and Finance +160970,Taxation and Finance,Taxation and Finance +228556,Taxation and Finance,Taxation and Finance +228555,Taxation and Finance,Taxation and Finance +228554,Taxation and Finance,Taxation and Finance +228553,Taxation and Finance,Taxation and Finance +228552,Taxation and Finance,Taxation and Finance +340589,Taxation and Finance,Taxation and Finance +340547,Taxation and Finance,Taxation and Finance +340546,Taxation and Finance,Taxation and Finance +340545,Taxation and Finance,Taxation and Finance +340538,Taxation and Finance,Taxation and Finance +340506,Taxation and Finance,Taxation and Finance +340504,Taxation and Finance,Taxation and Finance +340503,Taxation and Finance,Taxation and Finance +340501,Taxation and Finance,Taxation and Finance +340499,Taxation and Finance,Taxation and Finance +339817,Taxation and Finance,Taxation and Finance +339809,Taxation and Finance,Taxation and Finance +469022,Taxation and Finance,Taxation and Finance +468940,Taxation and Finance,Taxation and Finance +468939,Taxation and Finance,Taxation and Finance +468938,Taxation and Finance,Taxation and Finance +468937,Taxation and Finance,Taxation and Finance +468936,Taxation and Finance,Taxation and Finance +468650,Taxation and Finance,Taxation and Finance +468649,Taxation and Finance,Taxation and Finance +468648,Taxation and Finance,Taxation and Finance +408586,Taxation and Finance,Taxation and Finance +408547,Taxation and Finance,Taxation and Finance +408546,Taxation and Finance,Taxation and Finance +80900,Internal Trade,Internal Trade +80898,Internal Trade,Internal Trade +106756,Internal Trade,Internal Trade +106755,Internal Trade,Internal Trade +80904,Internal Trade,Internal Trade +106756,International Trade,International Trade +106755,International Trade,International Trade +80904,International Trade,International Trade +80902,International Trade,International Trade +80900,International Trade,International Trade +80898,International Trade,International Trade +106757,Transportation,Transportation +106756,Transportation,Transportation +106755,Transportation,Transportation +106754,Transportation,Transportation +80904,Transportation,Transportation +80902,Transportation,Transportation +80900,Transportation,Transportation +227591,Consumer Issues,Consumer Issues +461567,Consumer Issues,Consumer Issues +82800,Consumer Issues,Consumer Issues +322130,Consumer Issues,Consumer Issues +318271,Consumer Issues,Consumer Issues +315691,Consumer Issues,Consumer Issues +310125,Consumer Issues,Consumer Issues +304355,Consumer Issues,Consumer Issues +294649,Consumer Issues,Consumer Issues +254175,Consumer Issues,Consumer Issues +254170,Consumer Issues,Consumer Issues +251732,Consumer Issues,Consumer Issues +251731,Consumer Issues,Consumer Issues +484811,Energy,Energy +484805,Energy,Energy +120120,Energy,Energy +111915,Energy,Energy +107734,Energy,Energy +107717,Energy,Energy +100860,Energy,Energy +96094,Energy,Energy +86355,Energy,Energy +161148,Energy,Energy +161147,Energy,Energy +154171,Energy,Energy +153124,Energy,Energy +153123,Energy,Energy +153122,Energy,Energy +151830,Energy,Energy +151828,Energy,Energy +151826,Energy,Energy +151824,Energy,Energy +151822,Energy,Energy +151821,Energy,Energy +151819,Energy,Energy +149839,Energy,Energy +149838,Energy,Energy +149837,Energy,Energy +147304,Energy,Energy +147303,Energy,Energy +145276,Energy,Energy +134535,Energy,Energy +120121,Energy,Energy +251732,Energy,Energy +251731,Energy,Energy +251730,Energy,Energy +251729,Energy,Energy +241025,Energy,Energy +230063,Energy,Energy +230061,Energy,Energy +227729,Energy,Energy +227591,Energy,Energy +222448,Energy,Energy +222447,Energy,Energy +218416,Energy,Energy +218414,Energy,Energy +218413,Energy,Energy +218411,Energy,Energy +212217,Energy,Energy +212216,Energy,Energy +205907,Energy,Energy +202567,Energy,Energy +200897,Energy,Energy +200896,Energy,Energy +200895,Energy,Energy +200894,Energy,Energy +200893,Energy,Energy +200892,Energy,Energy +200891,Energy,Energy +200890,Energy,Energy +200889,Energy,Energy +200147,Energy,Energy +200141,Energy,Energy +200136,Energy,Energy +200134,Energy,Energy +200133,Energy,Energy +193827,Energy,Energy +193796,Energy,Energy +188849,Energy,Energy +185685,Energy,Energy +185647,Energy,Energy +175163,Energy,Energy +175162,Energy,Energy +175157,Energy,Energy +173066,Energy,Energy +167141,Energy,Energy +167136,Energy,Energy +167135,Energy,Energy +165040,Energy,Energy +163300,Energy,Energy +163299,Energy,Energy +163298,Energy,Energy +163297,Energy,Energy +163296,Energy,Energy +163294,Energy,Energy +163293,Energy,Energy +163292,Energy,Energy +163291,Energy,Energy +161149,Energy,Energy +375566,Energy,Energy +375564,Energy,Energy +375557,Energy,Energy +375556,Energy,Energy +375555,Energy,Energy +374079,Energy,Energy +370814,Energy,Energy +370813,Energy,Energy +366512,Energy,Energy +357945,Energy,Energy +357943,Energy,Energy +355307,Energy,Energy +355306,Energy,Energy +355305,Energy,Energy +355304,Energy,Energy +355303,Energy,Energy +355301,Energy,Energy +353254,Energy,Energy +350232,Energy,Energy +350231,Energy,Energy +350230,Energy,Energy +350229,Energy,Energy +350228,Energy,Energy +350227,Energy,Energy +350226,Energy,Energy +348667,Energy,Energy +348664,Energy,Energy +348662,Energy,Energy +344585,Energy,Energy +344584,Energy,Energy +343798,Energy,Energy +343793,Energy,Energy +343792,Energy,Energy +337846,Energy,Energy +337845,Energy,Energy +334730,Energy,Energy +333597,Energy,Energy +333596,Energy,Energy +333595,Energy,Energy +331346,Energy,Energy +329389,Energy,Energy +327882,Energy,Energy +324786,Energy,Energy +322137,Energy,Energy +322131,Energy,Energy +322130,Energy,Energy +318277,Energy,Energy +318275,Energy,Energy +318273,Energy,Energy +318272,Energy,Energy +318271,Energy,Energy +318270,Energy,Energy +318269,Energy,Energy +315691,Energy,Energy +315690,Energy,Energy +315689,Energy,Energy +310127,Energy,Energy +310123,Energy,Energy +304356,Energy,Energy +304355,Energy,Energy +304354,Energy,Energy +294649,Energy,Energy +289994,Energy,Energy +277749,Energy,Energy +273444,Energy,Energy +267090,Energy,Energy +263710,Energy,Energy +261208,Energy,Energy +254177,Energy,Energy +254175,Energy,Energy +254172,Energy,Energy +254170,Energy,Energy +481520,Energy,Energy +481519,Energy,Energy +481518,Energy,Energy +481517,Energy,Energy +481516,Energy,Energy +481515,Energy,Energy +481514,Energy,Energy +481513,Energy,Energy +481512,Energy,Energy +479821,Energy,Energy +479820,Energy,Energy +479813,Energy,Energy +479242,Energy,Energy +479241,Energy,Energy +477046,Energy,Energy +477041,Energy,Energy +477039,Energy,Energy +477037,Energy,Energy +477034,Energy,Energy +476958,Energy,Energy +476956,Energy,Energy +476955,Energy,Energy +476953,Energy,Energy +476952,Energy,Energy +476951,Energy,Energy +476950,Energy,Energy +476949,Energy,Energy +474989,Energy,Energy +474987,Energy,Energy +474986,Energy,Energy +472356,Energy,Energy +472355,Energy,Energy +472354,Energy,Energy +472353,Energy,Energy +472352,Energy,Energy +470299,Energy,Energy +470087,Energy,Energy +470085,Energy,Energy +467033,Energy,Energy +467032,Energy,Energy +467029,Energy,Energy +465334,Energy,Energy +461566,Energy,Energy +455456,Energy,Energy +452017,Energy,Energy +452016,Energy,Energy +452015,Energy,Energy +452013,Energy,Energy +438021,Energy,Energy +434982,Energy,Energy +430561,Energy,Energy +428527,Energy,Energy +428525,Energy,Energy +423862,Energy,Energy +423859,Energy,Energy +419559,Energy,Energy +415801,Energy,Energy +413030,Energy,Energy +413029,Energy,Energy +405020,Energy,Energy +403241,Energy,Energy +403238,Energy,Energy +403233,Energy,Energy +403230,Energy,Energy +402209,Energy,Energy +398593,Energy,Energy +395517,Energy,Energy +395067,Energy,Energy +392236,Energy,Energy +392235,Energy,Energy +392234,Energy,Energy +390206,Energy,Energy +390202,Energy,Energy +390198,Energy,Energy +387232,Energy,Energy +387230,Energy,Energy +383040,Energy,Energy +381949,Energy,Energy +380662,Energy,Energy +380661,Energy,Energy +380660,Energy,Energy +378509,Energy,Energy +378491,Energy,Energy +378490,Energy,Energy +378489,Energy,Energy +378488,Energy,Energy +378487,Energy,Energy +378486,Energy,Energy +378485,Energy,Energy +378484,Energy,Energy +378483,Energy,Energy +378482,Energy,Energy +378481,Energy,Energy +541731,Energy,Energy +535942,Energy,Energy +531331,Energy,Energy +531330,Energy,Energy +531329,Energy,Energy +527556,Energy,Energy +527555,Energy,Energy +527554,Energy,Energy +527553,Energy,Energy +527552,Energy,Energy +524653,Energy,Energy +524652,Energy,Energy +524651,Energy,Energy +524650,Energy,Energy +524649,Energy,Energy +521389,Energy,Energy +519375,Energy,Energy +517822,Energy,Energy +517820,Energy,Energy +517817,Energy,Energy +517814,Energy,Energy +512734,Energy,Energy +509720,Energy,Energy +509719,Energy,Energy +509718,Energy,Energy +509716,Energy,Energy +509714,Energy,Energy +506908,Energy,Energy +506907,Energy,Energy +506906,Energy,Energy +506905,Energy,Energy +506904,Energy,Energy +504066,Energy,Energy +504065,Energy,Energy +502096,Energy,Energy +502085,Energy,Energy +502082,Energy,Energy +502077,Energy,Energy +498759,Energy,Energy +498747,Energy,Energy +498744,Energy,Energy +495173,Energy,Energy +495172,Energy,Energy +495171,Energy,Energy +495170,Energy,Energy +495167,Energy,Energy +495166,Energy,Energy +493016,Energy,Energy +493015,Energy,Energy +493013,Energy,Energy +493012,Energy,Energy +493010,Energy,Energy +493009,Energy,Energy +493006,Energy,Energy +493003,Energy,Energy +492999,Energy,Energy +492997,Energy,Energy +490283,Energy,Energy +490281,Energy,Energy +490277,Energy,Energy +490276,Energy,Energy +490274,Energy,Energy +487974,Energy,Energy +487973,Energy,Energy +487972,Energy,Energy +487971,Energy,Energy +487970,Energy,Energy +487969,Energy,Energy +487960,Energy,Energy +487957,Energy,Energy +487953,Energy,Energy +487951,Energy,Energy +486543,Energy,Energy +484817,Energy,Energy +484815,Energy,Energy +484814,Energy,Energy +521393,Environment,Environment +521387,Environment,Environment +111955,Environment,Environment +96094,Environment,Environment +95999,Environment,Environment +95998,Environment,Environment +95997,Environment,Environment +95996,Environment,Environment +167141,Environment,Environment +167138,Environment,Environment +167133,Environment,Environment +153122,Environment,Environment +147305,Environment,Environment +333597,Environment,Environment +333596,Environment,Environment +333595,Environment,Environment +331346,Environment,Environment +329389,Environment,Environment +327882,Environment,Environment +324786,Environment,Environment +322137,Environment,Environment +318277,Environment,Environment +318275,Environment,Environment +318271,Environment,Environment +318270,Environment,Environment +318269,Environment,Environment +315691,Environment,Environment +315690,Environment,Environment +315689,Environment,Environment +304356,Environment,Environment +304354,Environment,Environment +289994,Environment,Environment +277749,Environment,Environment +273444,Environment,Environment +263710,Environment,Environment +261208,Environment,Environment +254175,Environment,Environment +254172,Environment,Environment +254170,Environment,Environment +251730,Environment,Environment +251729,Environment,Environment +245991,Environment,Environment +241135,Environment,Environment +241025,Environment,Environment +230053,Environment,Environment +222448,Environment,Environment +222447,Environment,Environment +218418,Environment,Environment +218416,Environment,Environment +218414,Environment,Environment +212217,Environment,Environment +212216,Environment,Environment +205907,Environment,Environment +202567,Environment,Environment +200147,Environment,Environment +175165,Environment,Environment +173066,Environment,Environment +455457,Environment,Environment +455453,Environment,Environment +455452,Environment,Environment +455450,Environment,Environment +455443,Environment,Environment +441325,Environment,Environment +438021,Environment,Environment +438019,Environment,Environment +434982,Environment,Environment +432159,Environment,Environment +428525,Environment,Environment +419559,Environment,Environment +415798,Environment,Environment +413030,Environment,Environment +406970,Environment,Environment +403236,Environment,Environment +398593,Environment,Environment +392236,Environment,Environment +390198,Environment,Environment +387230,Environment,Environment +385883,Environment,Environment +384990,Environment,Environment +374080,Environment,Environment +366514,Environment,Environment +357947,Environment,Environment +357943,Environment,Environment +355307,Environment,Environment +355306,Environment,Environment +355305,Environment,Environment +355304,Environment,Environment +355303,Environment,Environment +355302,Environment,Environment +355301,Environment,Environment +353254,Environment,Environment +350232,Environment,Environment +350231,Environment,Environment +350230,Environment,Environment +350229,Environment,Environment +350228,Environment,Environment +350227,Environment,Environment +350226,Environment,Environment +348667,Environment,Environment +348664,Environment,Environment +348662,Environment,Environment +344585,Environment,Environment +344584,Environment,Environment +343798,Environment,Environment +343793,Environment,Environment +343792,Environment,Environment +341037,Environment,Environment +337845,Environment,Environment +337844,Environment,Environment +334731,Environment,Environment +506907,Environment,Environment +506906,Environment,Environment +506903,Environment,Environment +502096,Environment,Environment +502092,Environment,Environment +502087,Environment,Environment +502082,Environment,Environment +498759,Environment,Environment +498756,Environment,Environment +498747,Environment,Environment +498744,Environment,Environment +493007,Environment,Environment +493006,Environment,Environment +493003,Environment,Environment +493000,Environment,Environment +492999,Environment,Environment +492998,Environment,Environment +492997,Environment,Environment +492993,Environment,Environment +492992,Environment,Environment +490285,Environment,Environment +490283,Environment,Environment +490281,Environment,Environment +490277,Environment,Environment +487960,Environment,Environment +487957,Environment,Environment +487953,Environment,Environment +487951,Environment,Environment +487949,Environment,Environment +479242,Environment,Environment +474989,Environment,Environment +474987,Environment,Environment +474986,Environment,Environment +472360,Environment,Environment +472356,Environment,Environment +472351,Environment,Environment +470099,Environment,Environment +470096,Environment,Environment +470095,Environment,Environment +470092,Environment,Environment +470085,Environment,Environment +467044,Environment,Environment +467040,Environment,Environment +467033,Environment,Environment +467032,Environment,Environment +467029,Environment,Environment +467027,Environment,Environment +465334,Environment,Environment +459521,Environment,Environment +470085,Health,Health +459521,Health,Health +289994,Health,Health +392237,Health,Health +310123,Industry,Industry +304354,Industry,Industry +102725,Industry,Industry +100874,Industry,Industry +100872,Industry,Industry +95999,Industry,Industry +95998,Industry,Industry +95997,Industry,Industry +95996,Industry,Industry +86356,Industry,Industry +86355,Industry,Industry +82803,Industry,Industry +82800,Industry,Industry +111955,Industry,Industry +103394,Industry,Industry +102726,Industry,Industry +277749,Industry,Industry +273444,Industry,Industry +241025,Industry,Industry +322137,Industry,Industry +318277,Industry,Industry +318275,Industry,Industry +318271,Industry,Industry +318270,Industry,Industry +315691,Industry,Industry +315690,Industry,Industry +315689,Industry,Industry +310127,Industry,Industry +493016,Infrastructure,Infrastructure +493015,Infrastructure,Infrastructure +493013,Infrastructure,Infrastructure +493012,Infrastructure,Infrastructure +493010,Infrastructure,Infrastructure +493009,Infrastructure,Infrastructure +484811,Infrastructure,Infrastructure +481511,Infrastructure,Infrastructure +477046,Infrastructure,Infrastructure +477041,Infrastructure,Infrastructure +477039,Infrastructure,Infrastructure +476958,Infrastructure,Infrastructure +476956,Infrastructure,Infrastructure +476955,Infrastructure,Infrastructure +476953,Infrastructure,Infrastructure +476952,Infrastructure,Infrastructure +467033,Infrastructure,Infrastructure +467032,Infrastructure,Infrastructure +467029,Infrastructure,Infrastructure +461566,Infrastructure,Infrastructure +423929,Infrastructure,Infrastructure +423863,Infrastructure,Infrastructure +531330,Infrastructure,Infrastructure +519375,Infrastructure,Infrastructure +517820,Infrastructure,Infrastructure +517817,Infrastructure,Infrastructure +517814,Infrastructure,Infrastructure +509718,Infrastructure,Infrastructure +506908,Infrastructure,Infrastructure +506907,Infrastructure,Infrastructure +504066,Infrastructure,Infrastructure +504065,Infrastructure,Infrastructure +504064,Infrastructure,Infrastructure +504063,Infrastructure,Infrastructure +504062,Infrastructure,Infrastructure +227729,Labour,Labour +227591,Labour,Labour +470091,Taxation and Finance,Taxation and Finance +434982,Taxation and Finance,Taxation and Finance +222447,Taxation and Finance,Taxation and Finance +375976,Taxation and Finance,Taxation and Finance +498760,Taxation and Finance,Taxation and Finance +498747,Taxation and Finance,Taxation and Finance +476956,Taxation and Finance,Taxation and Finance +476955,Taxation and Finance,Taxation and Finance +476953,Taxation and Finance,Taxation and Finance +474985,Taxation and Finance,Taxation and Finance +472365,Taxation and Finance,Taxation and Finance +472363,Taxation and Finance,Taxation and Finance +472360,Taxation and Finance,Taxation and Finance +472357,Taxation and Finance,Taxation and Finance +472354,Taxation and Finance,Taxation and Finance +470099,Taxation and Finance,Taxation and Finance +470096,Taxation and Finance,Taxation and Finance +470095,Taxation and Finance,Taxation and Finance +502082,Transportation,Transportation +502077,Transportation,Transportation +241025,Transportation,Transportation +154171,Transportation,Transportation +153124,Transportation,Transportation +153123,Transportation,Transportation +378509,Transportation,Transportation +378491,Transportation,Transportation +378490,Transportation,Transportation +378489,Transportation,Transportation +378488,Transportation,Transportation +378487,Transportation,Transportation +378486,Transportation,Transportation +378485,Transportation,Transportation +378484,Transportation,Transportation +378483,Transportation,Transportation +378481,Transportation,Transportation +322137,Transportation,Transportation +322131,Transportation,Transportation +318277,Transportation,Transportation +318275,Transportation,Transportation +318273,Transportation,Transportation +318272,Transportation,Transportation +318271,Transportation,Transportation +318270,Transportation,Transportation +315691,Transportation,Transportation +315690,Transportation,Transportation +315689,Transportation,Transportation +304355,Transportation,Transportation +289994,Transportation,Transportation +273444,Transportation,Transportation +254177,Transportation,Transportation +251730,Transportation,Transportation +251729,Transportation,Transportation +498747,Transportation,Transportation +498744,Transportation,Transportation +493016,Transportation,Transportation +493015,Transportation,Transportation +493013,Transportation,Transportation +493012,Transportation,Transportation +493010,Transportation,Transportation +493009,Transportation,Transportation +484817,Transportation,Transportation +484815,Transportation,Transportation +484814,Transportation,Transportation +484812,Transportation,Transportation +481519,Transportation,Transportation +481514,Transportation,Transportation +481513,Transportation,Transportation +481512,Transportation,Transportation +481511,Transportation,Transportation +479821,Transportation,Transportation +479820,Transportation,Transportation +479813,Transportation,Transportation +476952,Transportation,Transportation +474989,Transportation,Transportation +474987,Transportation,Transportation +474986,Transportation,Transportation +467033,Transportation,Transportation +467032,Transportation,Transportation +467029,Transportation,Transportation +465334,Transportation,Transportation +461566,Transportation,Transportation +430201,Transportation,Transportation +425530,Transportation,Transportation +423859,Transportation,Transportation +403241,Transportation,Transportation +403230,Transportation,Transportation +402209,Transportation,Transportation +383040,Transportation,Transportation +380662,Transportation,Transportation +380661,Transportation,Transportation +380660,Transportation,Transportation +531330,Transportation,Transportation +521387,Transportation,Transportation +519375,Transportation,Transportation +517820,Transportation,Transportation +517817,Transportation,Transportation +517814,Transportation,Transportation +509720,Transportation,Transportation +509719,Transportation,Transportation +509715,Transportation,Transportation +504064,Transportation,Transportation +504063,Transportation,Transportation +109307,Infrastructure,Infrastructure +96257,Energy,Energy +96256,Energy,Energy +96254,Energy,Energy +91461,Energy,Energy +76499,Energy,Energy +76498,Energy,Energy +121777,Energy,Energy +121776,Energy,Energy +121775,Energy,Energy +121774,Energy,Energy +121405,Energy,Energy +121404,Energy,Energy +96275,Energy,Energy +96274,Energy,Energy +96263,Energy,Energy +96262,Energy,Energy +96261,Energy,Energy +96260,Energy,Energy +96259,Energy,Energy +121777,Industry,Industry +121776,Industry,Industry +76497,Industry,Industry +76496,Industry,Industry +76495,Industry,Industry +121401,Energy,Energy +121399,Energy,Energy +91458,Energy,Energy +91456,Energy,Energy +91455,Energy,Energy +76494,Energy,Energy +121403,Energy,Energy +90633,Energy,Energy +90633,Environment,Environment +90633,Industry,Industry +182844,Health,Health +167609,Health,Health +193419,Health,Health +193418,Health,Health +193417,Health,Health +193416,Health,Health +193415,Health,Health +193414,Health,Health +193413,Health,Health +193412,Health,Health +193411,Health,Health +483231,Agriculture,Agriculture +483229,Agriculture,Agriculture +158881,Agriculture,Agriculture +145315,Agriculture,Agriculture +92075,Agriculture,Agriculture +76403,Agriculture,Agriculture +309637,Agriculture,Agriculture +309636,Agriculture,Agriculture +302269,Agriculture,Agriculture +250324,Agriculture,Agriculture +241849,Agriculture,Agriculture +239429,Agriculture,Agriculture +219267,Agriculture,Agriculture +219227,Agriculture,Agriculture +219208,Agriculture,Agriculture +219207,Agriculture,Agriculture +219189,Agriculture,Agriculture +219187,Agriculture,Agriculture +219148,Agriculture,Agriculture +207789,Agriculture,Agriculture +162524,Agriculture,Agriculture +162511,Agriculture,Agriculture +162509,Agriculture,Agriculture +158883,Agriculture,Agriculture +158882,Agriculture,Agriculture +376948,Agriculture,Agriculture +376944,Agriculture,Agriculture +376934,Agriculture,Agriculture +376921,Agriculture,Agriculture +376918,Agriculture,Agriculture +374749,Agriculture,Agriculture +374748,Agriculture,Agriculture +374746,Agriculture,Agriculture +374745,Agriculture,Agriculture +372423,Agriculture,Agriculture +372385,Agriculture,Agriculture +372374,Agriculture,Agriculture +366924,Agriculture,Agriculture +366923,Agriculture,Agriculture +361891,Agriculture,Agriculture +361890,Agriculture,Agriculture +361889,Agriculture,Agriculture +361888,Agriculture,Agriculture +356716,Agriculture,Agriculture +355001,Agriculture,Agriculture +353447,Agriculture,Agriculture +353407,Agriculture,Agriculture +352080,Agriculture,Agriculture +351980,Agriculture,Agriculture +350731,Agriculture,Agriculture +348642,Agriculture,Agriculture +347937,Agriculture,Agriculture +347857,Agriculture,Agriculture +339614,Agriculture,Agriculture +339613,Agriculture,Agriculture +338530,Agriculture,Agriculture +329906,Agriculture,Agriculture +327520,Agriculture,Agriculture +326585,Agriculture,Agriculture +318311,Agriculture,Agriculture +315900,Agriculture,Agriculture +315894,Agriculture,Agriculture +315893,Agriculture,Agriculture +315889,Agriculture,Agriculture +315882,Agriculture,Agriculture +315879,Agriculture,Agriculture +315878,Agriculture,Agriculture +315014,Agriculture,Agriculture +314829,Agriculture,Agriculture +313989,Agriculture,Agriculture +312069,Agriculture,Agriculture +309889,Agriculture,Agriculture +309641,Agriculture,Agriculture +309638,Agriculture,Agriculture +415870,Agriculture,Agriculture +415869,Agriculture,Agriculture +415868,Agriculture,Agriculture +415867,Agriculture,Agriculture +415864,Agriculture,Agriculture +415859,Agriculture,Agriculture +415855,Agriculture,Agriculture +415852,Agriculture,Agriculture +415848,Agriculture,Agriculture +415845,Agriculture,Agriculture +415841,Agriculture,Agriculture +415805,Agriculture,Agriculture +415803,Agriculture,Agriculture +415799,Agriculture,Agriculture +415797,Agriculture,Agriculture +415794,Agriculture,Agriculture +415792,Agriculture,Agriculture +415790,Agriculture,Agriculture +413746,Agriculture,Agriculture +413742,Agriculture,Agriculture +413740,Agriculture,Agriculture +413734,Agriculture,Agriculture +409022,Agriculture,Agriculture +409021,Agriculture,Agriculture +408946,Agriculture,Agriculture +408945,Agriculture,Agriculture +408943,Agriculture,Agriculture +408941,Agriculture,Agriculture +408940,Agriculture,Agriculture +408938,Agriculture,Agriculture +408936,Agriculture,Agriculture +408111,Agriculture,Agriculture +408109,Agriculture,Agriculture +406254,Agriculture,Agriculture +406253,Agriculture,Agriculture +405764,Agriculture,Agriculture +405685,Agriculture,Agriculture +405680,Agriculture,Agriculture +405674,Agriculture,Agriculture +405673,Agriculture,Agriculture +405671,Agriculture,Agriculture +405669,Agriculture,Agriculture +405668,Agriculture,Agriculture +405666,Agriculture,Agriculture +405664,Agriculture,Agriculture +403753,Agriculture,Agriculture +403750,Agriculture,Agriculture +403745,Agriculture,Agriculture +403716,Agriculture,Agriculture +400939,Agriculture,Agriculture +400925,Agriculture,Agriculture +400914,Agriculture,Agriculture +400907,Agriculture,Agriculture +398967,Agriculture,Agriculture +396246,Agriculture,Agriculture +396243,Agriculture,Agriculture +396240,Agriculture,Agriculture +396233,Agriculture,Agriculture +396224,Agriculture,Agriculture +396222,Agriculture,Agriculture +396219,Agriculture,Agriculture +396217,Agriculture,Agriculture +392793,Agriculture,Agriculture +392792,Agriculture,Agriculture +392791,Agriculture,Agriculture +392790,Agriculture,Agriculture +391361,Agriculture,Agriculture +391360,Agriculture,Agriculture +391359,Agriculture,Agriculture +391347,Agriculture,Agriculture +391346,Agriculture,Agriculture +391345,Agriculture,Agriculture +391342,Agriculture,Agriculture +391339,Agriculture,Agriculture +391337,Agriculture,Agriculture +391334,Agriculture,Agriculture +391330,Agriculture,Agriculture +391328,Agriculture,Agriculture +391325,Agriculture,Agriculture +391322,Agriculture,Agriculture +391321,Agriculture,Agriculture +391320,Agriculture,Agriculture +391317,Agriculture,Agriculture +391316,Agriculture,Agriculture +391315,Agriculture,Agriculture +391314,Agriculture,Agriculture +391313,Agriculture,Agriculture +391306,Agriculture,Agriculture +388242,Agriculture,Agriculture +388232,Agriculture,Agriculture +388227,Agriculture,Agriculture +385905,Agriculture,Agriculture +385904,Agriculture,Agriculture +385903,Agriculture,Agriculture +385902,Agriculture,Agriculture +383946,Agriculture,Agriculture +383945,Agriculture,Agriculture +383944,Agriculture,Agriculture +382591,Agriculture,Agriculture +382588,Agriculture,Agriculture +382586,Agriculture,Agriculture +380866,Agriculture,Agriculture +380841,Agriculture,Agriculture +380824,Agriculture,Agriculture +380822,Agriculture,Agriculture +380820,Agriculture,Agriculture +380818,Agriculture,Agriculture +380816,Agriculture,Agriculture +380815,Agriculture,Agriculture +380814,Agriculture,Agriculture +379794,Agriculture,Agriculture +379787,Agriculture,Agriculture +379780,Agriculture,Agriculture +379777,Agriculture,Agriculture +379775,Agriculture,Agriculture +379774,Agriculture,Agriculture +379773,Agriculture,Agriculture +379768,Agriculture,Agriculture +379767,Agriculture,Agriculture +379754,Agriculture,Agriculture +379739,Agriculture,Agriculture +379730,Agriculture,Agriculture +379726,Agriculture,Agriculture +379721,Agriculture,Agriculture +379710,Agriculture,Agriculture +379704,Agriculture,Agriculture +379703,Agriculture,Agriculture +482792,Agriculture,Agriculture +482791,Agriculture,Agriculture +482790,Agriculture,Agriculture +481422,Agriculture,Agriculture +481421,Agriculture,Agriculture +481051,Agriculture,Agriculture +481013,Agriculture,Agriculture +480907,Agriculture,Agriculture +480867,Agriculture,Agriculture +480739,Agriculture,Agriculture +480624,Agriculture,Agriculture +480623,Agriculture,Agriculture +480621,Agriculture,Agriculture +480620,Agriculture,Agriculture +479003,Agriculture,Agriculture +478941,Agriculture,Agriculture +478785,Agriculture,Agriculture +478686,Agriculture,Agriculture +478485,Agriculture,Agriculture +478377,Agriculture,Agriculture +478361,Agriculture,Agriculture +476875,Agriculture,Agriculture +476874,Agriculture,Agriculture +476685,Agriculture,Agriculture +476453,Agriculture,Agriculture +476391,Agriculture,Agriculture +476390,Agriculture,Agriculture +476388,Agriculture,Agriculture +476228,Agriculture,Agriculture +476227,Agriculture,Agriculture +476226,Agriculture,Agriculture +476224,Agriculture,Agriculture +474783,Agriculture,Agriculture +474477,Agriculture,Agriculture +474337,Agriculture,Agriculture +474333,Agriculture,Agriculture +474329,Agriculture,Agriculture +474183,Agriculture,Agriculture +474182,Agriculture,Agriculture +473569,Agriculture,Agriculture +473567,Agriculture,Agriculture +472068,Agriculture,Agriculture +472067,Agriculture,Agriculture +471710,Agriculture,Agriculture +471708,Agriculture,Agriculture +471566,Agriculture,Agriculture +471518,Agriculture,Agriculture +465496,Agriculture,Agriculture +465447,Agriculture,Agriculture +465446,Agriculture,Agriculture +465445,Agriculture,Agriculture +464557,Agriculture,Agriculture +464033,Agriculture,Agriculture +464031,Agriculture,Agriculture +464030,Agriculture,Agriculture +464026,Agriculture,Agriculture +464023,Agriculture,Agriculture +464021,Agriculture,Agriculture +464019,Agriculture,Agriculture +464012,Agriculture,Agriculture +464005,Agriculture,Agriculture +464003,Agriculture,Agriculture +464000,Agriculture,Agriculture +463999,Agriculture,Agriculture +463998,Agriculture,Agriculture +463997,Agriculture,Agriculture +463996,Agriculture,Agriculture +463995,Agriculture,Agriculture +463988,Agriculture,Agriculture +462981,Agriculture,Agriculture +462182,Agriculture,Agriculture +462074,Agriculture,Agriculture +461453,Agriculture,Agriculture +461370,Agriculture,Agriculture +460928,Agriculture,Agriculture +460927,Agriculture,Agriculture +460926,Agriculture,Agriculture +460925,Agriculture,Agriculture +460924,Agriculture,Agriculture +460923,Agriculture,Agriculture +460922,Agriculture,Agriculture +460921,Agriculture,Agriculture +460286,Agriculture,Agriculture +459161,Agriculture,Agriculture +458973,Agriculture,Agriculture +458017,Agriculture,Agriculture +458015,Agriculture,Agriculture +458014,Agriculture,Agriculture +458013,Agriculture,Agriculture +457950,Agriculture,Agriculture +455489,Agriculture,Agriculture +453888,Agriculture,Agriculture +453881,Agriculture,Agriculture +453873,Agriculture,Agriculture +451786,Agriculture,Agriculture +451159,Agriculture,Agriculture +451158,Agriculture,Agriculture +449689,Agriculture,Agriculture +449211,Agriculture,Agriculture +449197,Agriculture,Agriculture +449196,Agriculture,Agriculture +449194,Agriculture,Agriculture +449191,Agriculture,Agriculture +449190,Agriculture,Agriculture +449188,Agriculture,Agriculture +448842,Agriculture,Agriculture +448573,Agriculture,Agriculture +446002,Agriculture,Agriculture +444633,Agriculture,Agriculture +444536,Agriculture,Agriculture +444238,Agriculture,Agriculture +444237,Agriculture,Agriculture +444236,Agriculture,Agriculture +443333,Agriculture,Agriculture +443332,Agriculture,Agriculture +440193,Agriculture,Agriculture +440192,Agriculture,Agriculture +440191,Agriculture,Agriculture +440190,Agriculture,Agriculture +440189,Agriculture,Agriculture +440188,Agriculture,Agriculture +440187,Agriculture,Agriculture +440186,Agriculture,Agriculture +440185,Agriculture,Agriculture +440184,Agriculture,Agriculture +440183,Agriculture,Agriculture +440182,Agriculture,Agriculture +440181,Agriculture,Agriculture +440180,Agriculture,Agriculture +440179,Agriculture,Agriculture +440178,Agriculture,Agriculture +440177,Agriculture,Agriculture +440176,Agriculture,Agriculture +440175,Agriculture,Agriculture +440174,Agriculture,Agriculture +440172,Agriculture,Agriculture +440163,Agriculture,Agriculture +440162,Agriculture,Agriculture +439394,Agriculture,Agriculture +439381,Agriculture,Agriculture +439356,Agriculture,Agriculture +439352,Agriculture,Agriculture +439348,Agriculture,Agriculture +439341,Agriculture,Agriculture +439338,Agriculture,Agriculture +439335,Agriculture,Agriculture +439325,Agriculture,Agriculture +439320,Agriculture,Agriculture +436024,Agriculture,Agriculture +436021,Agriculture,Agriculture +436018,Agriculture,Agriculture +436017,Agriculture,Agriculture +436014,Agriculture,Agriculture +436012,Agriculture,Agriculture +436000,Agriculture,Agriculture +432507,Agriculture,Agriculture +430626,Agriculture,Agriculture +430625,Agriculture,Agriculture +430622,Agriculture,Agriculture +430621,Agriculture,Agriculture +430620,Agriculture,Agriculture +430619,Agriculture,Agriculture +430618,Agriculture,Agriculture +430617,Agriculture,Agriculture +430616,Agriculture,Agriculture +430615,Agriculture,Agriculture +430612,Agriculture,Agriculture +430611,Agriculture,Agriculture +430610,Agriculture,Agriculture +430609,Agriculture,Agriculture +428987,Agriculture,Agriculture +428984,Agriculture,Agriculture +428982,Agriculture,Agriculture +426631,Agriculture,Agriculture +426624,Agriculture,Agriculture +426616,Agriculture,Agriculture +426607,Agriculture,Agriculture +426602,Agriculture,Agriculture +426593,Agriculture,Agriculture +426588,Agriculture,Agriculture +426582,Agriculture,Agriculture +426580,Agriculture,Agriculture +426578,Agriculture,Agriculture +426572,Agriculture,Agriculture +426563,Agriculture,Agriculture +426560,Agriculture,Agriculture +426552,Agriculture,Agriculture +426548,Agriculture,Agriculture +426541,Agriculture,Agriculture +426538,Agriculture,Agriculture +426532,Agriculture,Agriculture +426528,Agriculture,Agriculture +426525,Agriculture,Agriculture +426522,Agriculture,Agriculture +426510,Agriculture,Agriculture +426503,Agriculture,Agriculture +422490,Agriculture,Agriculture +422489,Agriculture,Agriculture +422488,Agriculture,Agriculture +422487,Agriculture,Agriculture +422486,Agriculture,Agriculture +422485,Agriculture,Agriculture +422483,Agriculture,Agriculture +422481,Agriculture,Agriculture +422480,Agriculture,Agriculture +422479,Agriculture,Agriculture +422478,Agriculture,Agriculture +422476,Agriculture,Agriculture +422475,Agriculture,Agriculture +422473,Agriculture,Agriculture +422472,Agriculture,Agriculture +422470,Agriculture,Agriculture +419987,Agriculture,Agriculture +419984,Agriculture,Agriculture +419982,Agriculture,Agriculture +419979,Agriculture,Agriculture +418011,Agriculture,Agriculture +418007,Agriculture,Agriculture +418002,Agriculture,Agriculture +417999,Agriculture,Agriculture +416217,Agriculture,Agriculture +416215,Agriculture,Agriculture +416211,Agriculture,Agriculture +416209,Agriculture,Agriculture +416206,Agriculture,Agriculture +416190,Agriculture,Agriculture +416179,Agriculture,Agriculture +415886,Agriculture,Agriculture +415884,Agriculture,Agriculture +415883,Agriculture,Agriculture +415881,Agriculture,Agriculture +415879,Agriculture,Agriculture +415876,Agriculture,Agriculture +545255,Agriculture,Agriculture +545124,Agriculture,Agriculture +544919,Agriculture,Agriculture +544857,Agriculture,Agriculture +544797,Agriculture,Agriculture +544733,Agriculture,Agriculture +544693,Agriculture,Agriculture +544658,Agriculture,Agriculture +544574,Agriculture,Agriculture +544533,Agriculture,Agriculture +542871,Agriculture,Agriculture +542861,Agriculture,Agriculture +542509,Agriculture,Agriculture +542506,Agriculture,Agriculture +542505,Agriculture,Agriculture +542503,Agriculture,Agriculture +542219,Agriculture,Agriculture +542209,Agriculture,Agriculture +541120,Agriculture,Agriculture +539533,Agriculture,Agriculture +539381,Agriculture,Agriculture +539118,Agriculture,Agriculture +537039,Agriculture,Agriculture +537038,Agriculture,Agriculture +537036,Agriculture,Agriculture +537034,Agriculture,Agriculture +537032,Agriculture,Agriculture +536240,Agriculture,Agriculture +536239,Agriculture,Agriculture +536175,Agriculture,Agriculture +536112,Agriculture,Agriculture +535137,Agriculture,Agriculture +533706,Agriculture,Agriculture +533175,Agriculture,Agriculture +533114,Agriculture,Agriculture +532747,Agriculture,Agriculture +532687,Agriculture,Agriculture +532481,Agriculture,Agriculture +532443,Agriculture,Agriculture +531620,Agriculture,Agriculture +531383,Agriculture,Agriculture +531155,Agriculture,Agriculture +530823,Agriculture,Agriculture +530718,Agriculture,Agriculture +530487,Agriculture,Agriculture +530486,Agriculture,Agriculture +530311,Agriculture,Agriculture +530307,Agriculture,Agriculture +530188,Agriculture,Agriculture +530187,Agriculture,Agriculture +529992,Agriculture,Agriculture +528950,Agriculture,Agriculture +528946,Agriculture,Agriculture +528305,Agriculture,Agriculture +527869,Agriculture,Agriculture +527713,Agriculture,Agriculture +527614,Agriculture,Agriculture +527613,Agriculture,Agriculture +527492,Agriculture,Agriculture +527381,Agriculture,Agriculture +527377,Agriculture,Agriculture +527376,Agriculture,Agriculture +527375,Agriculture,Agriculture +527321,Agriculture,Agriculture +527257,Agriculture,Agriculture +527256,Agriculture,Agriculture +527247,Agriculture,Agriculture +527246,Agriculture,Agriculture +527245,Agriculture,Agriculture +527244,Agriculture,Agriculture +527158,Agriculture,Agriculture +527078,Agriculture,Agriculture +526952,Agriculture,Agriculture +526938,Agriculture,Agriculture +526854,Agriculture,Agriculture +526732,Agriculture,Agriculture +526457,Agriculture,Agriculture +525531,Agriculture,Agriculture +524666,Agriculture,Agriculture +524580,Agriculture,Agriculture +524330,Agriculture,Agriculture +524319,Agriculture,Agriculture +524188,Agriculture,Agriculture +524106,Agriculture,Agriculture +524073,Agriculture,Agriculture +523766,Agriculture,Agriculture +523756,Agriculture,Agriculture +523635,Agriculture,Agriculture +523594,Agriculture,Agriculture +523531,Agriculture,Agriculture +523519,Agriculture,Agriculture +523386,Agriculture,Agriculture +523365,Agriculture,Agriculture +522051,Agriculture,Agriculture +521899,Agriculture,Agriculture +521748,Agriculture,Agriculture +521743,Agriculture,Agriculture +521672,Agriculture,Agriculture +521618,Agriculture,Agriculture +521422,Agriculture,Agriculture +521421,Agriculture,Agriculture +521402,Agriculture,Agriculture +521401,Agriculture,Agriculture +521359,Agriculture,Agriculture +521358,Agriculture,Agriculture +521328,Agriculture,Agriculture +521325,Agriculture,Agriculture +521002,Agriculture,Agriculture +521001,Agriculture,Agriculture +520958,Agriculture,Agriculture +520957,Agriculture,Agriculture +520813,Agriculture,Agriculture +520753,Agriculture,Agriculture +520618,Agriculture,Agriculture +520617,Agriculture,Agriculture +520513,Agriculture,Agriculture +520413,Agriculture,Agriculture +520412,Agriculture,Agriculture +518536,Agriculture,Agriculture +518504,Agriculture,Agriculture +517642,Agriculture,Agriculture +516971,Agriculture,Agriculture +516880,Agriculture,Agriculture +516879,Agriculture,Agriculture +516536,Agriculture,Agriculture +516302,Agriculture,Agriculture +516144,Agriculture,Agriculture +516057,Agriculture,Agriculture +516032,Agriculture,Agriculture +516031,Agriculture,Agriculture +516030,Agriculture,Agriculture +515043,Agriculture,Agriculture +514859,Agriculture,Agriculture +514855,Agriculture,Agriculture +514849,Agriculture,Agriculture +512677,Agriculture,Agriculture +512197,Agriculture,Agriculture +511951,Agriculture,Agriculture +511950,Agriculture,Agriculture +511745,Agriculture,Agriculture +511742,Agriculture,Agriculture +511741,Agriculture,Agriculture +511740,Agriculture,Agriculture +511738,Agriculture,Agriculture +511737,Agriculture,Agriculture +511674,Agriculture,Agriculture +511673,Agriculture,Agriculture +510664,Agriculture,Agriculture +510154,Agriculture,Agriculture +510100,Agriculture,Agriculture +509957,Agriculture,Agriculture +509713,Agriculture,Agriculture +509225,Agriculture,Agriculture +509224,Agriculture,Agriculture +507256,Agriculture,Agriculture +507218,Agriculture,Agriculture +507217,Agriculture,Agriculture +507216,Agriculture,Agriculture +507177,Agriculture,Agriculture +506787,Agriculture,Agriculture +506623,Agriculture,Agriculture +506621,Agriculture,Agriculture +506620,Agriculture,Agriculture +506619,Agriculture,Agriculture +506618,Agriculture,Agriculture +506503,Agriculture,Agriculture +506183,Agriculture,Agriculture +506146,Agriculture,Agriculture +506145,Agriculture,Agriculture +504821,Agriculture,Agriculture +504425,Agriculture,Agriculture +504368,Agriculture,Agriculture +503998,Agriculture,Agriculture +503790,Agriculture,Agriculture +503789,Agriculture,Agriculture +503742,Agriculture,Agriculture +503580,Agriculture,Agriculture +503579,Agriculture,Agriculture +503577,Agriculture,Agriculture +503482,Agriculture,Agriculture +503333,Agriculture,Agriculture +503332,Agriculture,Agriculture +503331,Agriculture,Agriculture +503330,Agriculture,Agriculture +503328,Agriculture,Agriculture +503189,Agriculture,Agriculture +503184,Agriculture,Agriculture +503077,Agriculture,Agriculture +502970,Agriculture,Agriculture +501515,Agriculture,Agriculture +501237,Agriculture,Agriculture +500984,Agriculture,Agriculture +500561,Agriculture,Agriculture +500477,Agriculture,Agriculture +500407,Agriculture,Agriculture +500406,Agriculture,Agriculture +500280,Agriculture,Agriculture +500278,Agriculture,Agriculture +500185,Agriculture,Agriculture +500184,Agriculture,Agriculture +500118,Agriculture,Agriculture +500066,Agriculture,Agriculture +500065,Agriculture,Agriculture +500017,Agriculture,Agriculture +499968,Agriculture,Agriculture +498253,Agriculture,Agriculture +498248,Agriculture,Agriculture +497638,Agriculture,Agriculture +497389,Agriculture,Agriculture +497358,Agriculture,Agriculture +497355,Agriculture,Agriculture +497352,Agriculture,Agriculture +496877,Agriculture,Agriculture +496876,Agriculture,Agriculture +496571,Agriculture,Agriculture +496473,Agriculture,Agriculture +496471,Agriculture,Agriculture +495204,Agriculture,Agriculture +495193,Agriculture,Agriculture +494520,Agriculture,Agriculture +494482,Agriculture,Agriculture +494112,Agriculture,Agriculture +494085,Agriculture,Agriculture +494084,Agriculture,Agriculture +494082,Agriculture,Agriculture +493939,Agriculture,Agriculture +493938,Agriculture,Agriculture +493573,Agriculture,Agriculture +493095,Agriculture,Agriculture +492491,Agriculture,Agriculture +492065,Agriculture,Agriculture +492064,Agriculture,Agriculture +489746,Agriculture,Agriculture +489744,Agriculture,Agriculture +489743,Agriculture,Agriculture +489741,Agriculture,Agriculture +489658,Agriculture,Agriculture +489470,Agriculture,Agriculture +489306,Agriculture,Agriculture +489169,Agriculture,Agriculture +489168,Agriculture,Agriculture +489167,Agriculture,Agriculture +489165,Agriculture,Agriculture +488770,Agriculture,Agriculture +488769,Agriculture,Agriculture +488768,Agriculture,Agriculture +488510,Agriculture,Agriculture +488503,Agriculture,Agriculture +488501,Agriculture,Agriculture +488499,Agriculture,Agriculture +488495,Agriculture,Agriculture +488493,Agriculture,Agriculture +488492,Agriculture,Agriculture +488491,Agriculture,Agriculture +488490,Agriculture,Agriculture +488489,Agriculture,Agriculture +488488,Agriculture,Agriculture +488487,Agriculture,Agriculture +486987,Agriculture,Agriculture +486985,Agriculture,Agriculture +486438,Agriculture,Agriculture +486342,Agriculture,Agriculture +486206,Agriculture,Agriculture +486205,Agriculture,Agriculture +486204,Agriculture,Agriculture +486197,Agriculture,Agriculture +486196,Agriculture,Agriculture +486190,Agriculture,Agriculture +486189,Agriculture,Agriculture +486188,Agriculture,Agriculture +486187,Agriculture,Agriculture +486010,Agriculture,Agriculture +485798,Agriculture,Agriculture +485797,Agriculture,Agriculture +485620,Agriculture,Agriculture +485616,Agriculture,Agriculture +485590,Agriculture,Agriculture +485557,Agriculture,Agriculture +485556,Agriculture,Agriculture +484212,Agriculture,Agriculture +484210,Agriculture,Agriculture +484206,Agriculture,Agriculture +483236,Agriculture,Agriculture +382591,Energy,Energy +329906,Energy,Energy +162524,Energy,Energy +162513,Energy,Energy +162511,Energy,Energy +162509,Energy,Energy +158883,Energy,Energy +158882,Energy,Energy +158881,Energy,Energy +219267,Energy,Energy +536239,Environment,Environment +536112,Environment,Environment +329906,Environment,Environment +476875,Environment,Environment +476453,Environment,Environment +474333,Environment,Environment +460928,Environment,Environment +460923,Environment,Environment +458973,Environment,Environment +451159,Environment,Environment +449196,Environment,Environment +443333,Environment,Environment +440193,Environment,Environment +440192,Environment,Environment +440191,Environment,Environment +440190,Environment,Environment +440189,Environment,Environment +440188,Environment,Environment +440187,Environment,Environment +440186,Environment,Environment +440185,Environment,Environment +440184,Environment,Environment +440183,Environment,Environment +440182,Environment,Environment +440181,Environment,Environment +440180,Environment,Environment +440179,Environment,Environment +440178,Environment,Environment +440177,Environment,Environment +440176,Environment,Environment +440175,Environment,Environment +440174,Environment,Environment +440172,Environment,Environment +440163,Environment,Environment +440162,Environment,Environment +426532,Environment,Environment +426525,Environment,Environment +415886,Environment,Environment +415884,Environment,Environment +415881,Environment,Environment +415879,Environment,Environment +415876,Environment,Environment +415870,Environment,Environment +415869,Environment,Environment +415868,Environment,Environment +415867,Environment,Environment +415864,Environment,Environment +415859,Environment,Environment +415855,Environment,Environment +415852,Environment,Environment +415848,Environment,Environment +415845,Environment,Environment +415841,Environment,Environment +415805,Environment,Environment +415803,Environment,Environment +415799,Environment,Environment +415797,Environment,Environment +415794,Environment,Environment +415792,Environment,Environment +415790,Environment,Environment +408938,Environment,Environment +408936,Environment,Environment +408111,Environment,Environment +408109,Environment,Environment +406253,Environment,Environment +400939,Environment,Environment +396246,Environment,Environment +396243,Environment,Environment +396233,Environment,Environment +391361,Environment,Environment +391360,Environment,Environment +391347,Environment,Environment +391346,Environment,Environment +391345,Environment,Environment +391342,Environment,Environment +391339,Environment,Environment +391337,Environment,Environment +391334,Environment,Environment +391330,Environment,Environment +391325,Environment,Environment +391322,Environment,Environment +391321,Environment,Environment +391320,Environment,Environment +391317,Environment,Environment +391316,Environment,Environment +391315,Environment,Environment +391314,Environment,Environment +391306,Environment,Environment +533114,Environment,Environment +532747,Environment,Environment +532687,Environment,Environment +532481,Environment,Environment +532443,Environment,Environment +531620,Environment,Environment +531383,Environment,Environment +531155,Environment,Environment +530823,Environment,Environment +530718,Environment,Environment +530487,Environment,Environment +530486,Environment,Environment +530311,Environment,Environment +530307,Environment,Environment +528950,Environment,Environment +528946,Environment,Environment +528305,Environment,Environment +527869,Environment,Environment +527614,Environment,Environment +527492,Environment,Environment +527377,Environment,Environment +527375,Environment,Environment +527321,Environment,Environment +527257,Environment,Environment +527256,Environment,Environment +527247,Environment,Environment +527246,Environment,Environment +527245,Environment,Environment +527244,Environment,Environment +527158,Environment,Environment +527078,Environment,Environment +526938,Environment,Environment +526457,Environment,Environment +524666,Environment,Environment +524330,Environment,Environment +524106,Environment,Environment +524073,Environment,Environment +523766,Environment,Environment +523756,Environment,Environment +523635,Environment,Environment +523594,Environment,Environment +523531,Environment,Environment +523519,Environment,Environment +523386,Environment,Environment +523365,Environment,Environment +522051,Environment,Environment +521899,Environment,Environment +521748,Environment,Environment +521743,Environment,Environment +521672,Environment,Environment +521618,Environment,Environment +521422,Environment,Environment +521421,Environment,Environment +521402,Environment,Environment +521401,Environment,Environment +521359,Environment,Environment +521358,Environment,Environment +521328,Environment,Environment +521325,Environment,Environment +521002,Environment,Environment +521001,Environment,Environment +520958,Environment,Environment +520957,Environment,Environment +520813,Environment,Environment +520753,Environment,Environment +520618,Environment,Environment +520617,Environment,Environment +520513,Environment,Environment +520413,Environment,Environment +520412,Environment,Environment +518536,Environment,Environment +518504,Environment,Environment +516880,Environment,Environment +516879,Environment,Environment +516536,Environment,Environment +516302,Environment,Environment +516144,Environment,Environment +516057,Environment,Environment +516032,Environment,Environment +516031,Environment,Environment +514859,Environment,Environment +514855,Environment,Environment +512677,Environment,Environment +512197,Environment,Environment +511951,Environment,Environment +511950,Environment,Environment +511745,Environment,Environment +511742,Environment,Environment +511741,Environment,Environment +511740,Environment,Environment +511737,Environment,Environment +510154,Environment,Environment +509713,Environment,Environment +509225,Environment,Environment +509224,Environment,Environment +507256,Environment,Environment +507217,Environment,Environment +507216,Environment,Environment +507177,Environment,Environment +506623,Environment,Environment +506621,Environment,Environment +506620,Environment,Environment +506618,Environment,Environment +506183,Environment,Environment +504821,Environment,Environment +504425,Environment,Environment +504368,Environment,Environment +503331,Environment,Environment +501515,Environment,Environment +500984,Environment,Environment +500477,Environment,Environment +500407,Environment,Environment +500280,Environment,Environment +500278,Environment,Environment +500065,Environment,Environment +500017,Environment,Environment +499968,Environment,Environment +498253,Environment,Environment +498248,Environment,Environment +497389,Environment,Environment +497358,Environment,Environment +497355,Environment,Environment +497352,Environment,Environment +496877,Environment,Environment +496876,Environment,Environment +496473,Environment,Environment +496471,Environment,Environment +495193,Environment,Environment +494482,Environment,Environment +494112,Environment,Environment +494085,Environment,Environment +494084,Environment,Environment +494082,Environment,Environment +493939,Environment,Environment +493938,Environment,Environment +493095,Environment,Environment +492491,Environment,Environment +489658,Environment,Environment +489470,Environment,Environment +489169,Environment,Environment +488770,Environment,Environment +488769,Environment,Environment +488768,Environment,Environment +488510,Environment,Environment +488503,Environment,Environment +488501,Environment,Environment +488499,Environment,Environment +488495,Environment,Environment +488493,Environment,Environment +488492,Environment,Environment +488491,Environment,Environment +488490,Environment,Environment +488489,Environment,Environment +488488,Environment,Environment +488487,Environment,Environment +486438,Environment,Environment +486206,Environment,Environment +486205,Environment,Environment +486204,Environment,Environment +486197,Environment,Environment +486196,Environment,Environment +486190,Environment,Environment +486189,Environment,Environment +486188,Environment,Environment +486187,Environment,Environment +486010,Environment,Environment +485798,Environment,Environment +485620,Environment,Environment +485590,Environment,Environment +484212,Environment,Environment +484210,Environment,Environment +484206,Environment,Environment +483236,Environment,Environment +482792,Environment,Environment +482791,Environment,Environment +481422,Environment,Environment +481421,Environment,Environment +481013,Environment,Environment +480907,Environment,Environment +480867,Environment,Environment +480739,Environment,Environment +480624,Environment,Environment +480623,Environment,Environment +479003,Environment,Environment +478941,Environment,Environment +478785,Environment,Environment +478686,Environment,Environment +478485,Environment,Environment +478377,Environment,Environment +545255,Environment,Environment +545124,Environment,Environment +544733,Environment,Environment +544658,Environment,Environment +544533,Environment,Environment +542505,Environment,Environment +542503,Environment,Environment +542219,Environment,Environment +542209,Environment,Environment +541120,Environment,Environment +539381,Environment,Environment +537036,Environment,Environment +537032,Environment,Environment +391328,Financial Institutions,Financial Institutions +391313,Financial Institutions,Financial Institutions +415883,Financial Institutions,Financial Institutions +523365,Industry,Industry +521748,Industry,Industry +415841,Industry,Industry +526732,Industry,Industry +524666,Industry,Industry +524580,Industry,Industry +524330,Industry,Industry +524319,Industry,Industry +524188,Industry,Industry +524106,Industry,Industry +523756,Industry,Industry +523635,Industry,Industry +523594,Industry,Industry +379787,Infrastructure,Infrastructure +520813,Infrastructure,Infrastructure +488499,Internal Trade,Internal Trade +415805,Internal Trade,Internal Trade +207789,Internal Trade,Internal Trade +474183,International Trade,International Trade +474182,International Trade,International Trade +76403,International Trade,International Trade +372423,International Trade,International Trade +366924,International Trade,International Trade +366923,International Trade,International Trade +361891,International Trade,International Trade +361890,International Trade,International Trade +361889,International Trade,International Trade +361888,International Trade,International Trade +356716,International Trade,International Trade +353447,International Trade,International Trade +353407,International Trade,International Trade +352080,International Trade,International Trade +347857,International Trade,International Trade +250324,International Trade,International Trade +250316,International Trade,International Trade +241849,International Trade,International Trade +239429,International Trade,International Trade +219267,International Trade,International Trade +219227,International Trade,International Trade +219208,International Trade,International Trade +219207,International Trade,International Trade +219189,International Trade,International Trade +219187,International Trade,International Trade +219148,International Trade,International Trade +388242,International Trade,International Trade +388232,International Trade,International Trade +388227,International Trade,International Trade +385905,International Trade,International Trade +385904,International Trade,International Trade +385903,International Trade,International Trade +385902,International Trade,International Trade +383946,International Trade,International Trade +383945,International Trade,International Trade +383944,International Trade,International Trade +382588,International Trade,International Trade +380866,International Trade,International Trade +380841,International Trade,International Trade +380824,International Trade,International Trade +380822,International Trade,International Trade +380820,International Trade,International Trade +380818,International Trade,International Trade +380816,International Trade,International Trade +380815,International Trade,International Trade +380814,International Trade,International Trade +379794,International Trade,International Trade +379787,International Trade,International Trade +379780,International Trade,International Trade +379777,International Trade,International Trade +379774,International Trade,International Trade +379773,International Trade,International Trade +379768,International Trade,International Trade +379767,International Trade,International Trade +379754,International Trade,International Trade +379730,International Trade,International Trade +379726,International Trade,International Trade +379721,International Trade,International Trade +379710,International Trade,International Trade +379704,International Trade,International Trade +379703,International Trade,International Trade +376948,International Trade,International Trade +376944,International Trade,International Trade +376934,International Trade,International Trade +376921,International Trade,International Trade +376918,International Trade,International Trade +374749,International Trade,International Trade +374748,International Trade,International Trade +374746,International Trade,International Trade +374745,International Trade,International Trade +472068,International Trade,International Trade +464033,International Trade,International Trade +464031,International Trade,International Trade +464030,International Trade,International Trade +464026,International Trade,International Trade +464023,International Trade,International Trade +464021,International Trade,International Trade +464019,International Trade,International Trade +464012,International Trade,International Trade +464005,International Trade,International Trade +464003,International Trade,International Trade +463988,International Trade,International Trade +460928,International Trade,International Trade +460927,International Trade,International Trade +460926,International Trade,International Trade +460925,International Trade,International Trade +460924,International Trade,International Trade +460923,International Trade,International Trade +460922,International Trade,International Trade +449211,International Trade,International Trade +449197,International Trade,International Trade +448573,International Trade,International Trade +444633,International Trade,International Trade +444236,International Trade,International Trade +443333,International Trade,International Trade +443332,International Trade,International Trade +440193,International Trade,International Trade +440192,International Trade,International Trade +440191,International Trade,International Trade +440190,International Trade,International Trade +440189,International Trade,International Trade +440188,International Trade,International Trade +440187,International Trade,International Trade +440186,International Trade,International Trade +440185,International Trade,International Trade +440184,International Trade,International Trade +440183,International Trade,International Trade +440182,International Trade,International Trade +440181,International Trade,International Trade +440180,International Trade,International Trade +440179,International Trade,International Trade +440178,International Trade,International Trade +440177,International Trade,International Trade +440176,International Trade,International Trade +440175,International Trade,International Trade +440174,International Trade,International Trade +440172,International Trade,International Trade +440162,International Trade,International Trade +439394,International Trade,International Trade +439381,International Trade,International Trade +439356,International Trade,International Trade +439341,International Trade,International Trade +439338,International Trade,International Trade +439335,International Trade,International Trade +439325,International Trade,International Trade +439320,International Trade,International Trade +436024,International Trade,International Trade +436021,International Trade,International Trade +436018,International Trade,International Trade +436017,International Trade,International Trade +436014,International Trade,International Trade +436012,International Trade,International Trade +430626,International Trade,International Trade +430622,International Trade,International Trade +430621,International Trade,International Trade +430620,International Trade,International Trade +430619,International Trade,International Trade +430618,International Trade,International Trade +430617,International Trade,International Trade +430616,International Trade,International Trade +430615,International Trade,International Trade +430612,International Trade,International Trade +430611,International Trade,International Trade +430610,International Trade,International Trade +430609,International Trade,International Trade +428987,International Trade,International Trade +428984,International Trade,International Trade +428982,International Trade,International Trade +426624,International Trade,International Trade +426616,International Trade,International Trade +426607,International Trade,International Trade +426602,International Trade,International Trade +426593,International Trade,International Trade +426588,International Trade,International Trade +426582,International Trade,International Trade +426580,International Trade,International Trade +426578,International Trade,International Trade +426572,International Trade,International Trade +426563,International Trade,International Trade +426560,International Trade,International Trade +426552,International Trade,International Trade +426548,International Trade,International Trade +426541,International Trade,International Trade +426538,International Trade,International Trade +426532,International Trade,International Trade +426528,International Trade,International Trade +426525,International Trade,International Trade +426522,International Trade,International Trade +426510,International Trade,International Trade +426503,International Trade,International Trade +422490,International Trade,International Trade +422489,International Trade,International Trade +422486,International Trade,International Trade +422479,International Trade,International Trade +422478,International Trade,International Trade +422476,International Trade,International Trade +422475,International Trade,International Trade +422473,International Trade,International Trade +422472,International Trade,International Trade +422470,International Trade,International Trade +419987,International Trade,International Trade +419984,International Trade,International Trade +419982,International Trade,International Trade +419979,International Trade,International Trade +418007,International Trade,International Trade +418002,International Trade,International Trade +417999,International Trade,International Trade +416215,International Trade,International Trade +416211,International Trade,International Trade +416209,International Trade,International Trade +416206,International Trade,International Trade +416190,International Trade,International Trade +415886,International Trade,International Trade +415884,International Trade,International Trade +415883,International Trade,International Trade +415881,International Trade,International Trade +415879,International Trade,International Trade +415876,International Trade,International Trade +415870,International Trade,International Trade +415869,International Trade,International Trade +415868,International Trade,International Trade +415867,International Trade,International Trade +415864,International Trade,International Trade +415859,International Trade,International Trade +415855,International Trade,International Trade +415852,International Trade,International Trade +415848,International Trade,International Trade +415845,International Trade,International Trade +415841,International Trade,International Trade +415805,International Trade,International Trade +415803,International Trade,International Trade +415799,International Trade,International Trade +415797,International Trade,International Trade +415794,International Trade,International Trade +415792,International Trade,International Trade +415790,International Trade,International Trade +413746,International Trade,International Trade +413734,International Trade,International Trade +409022,International Trade,International Trade +409021,International Trade,International Trade +408946,International Trade,International Trade +408945,International Trade,International Trade +408943,International Trade,International Trade +408941,International Trade,International Trade +406254,International Trade,International Trade +405685,International Trade,International Trade +405680,International Trade,International Trade +405673,International Trade,International Trade +405669,International Trade,International Trade +405668,International Trade,International Trade +405666,International Trade,International Trade +403753,International Trade,International Trade +403745,International Trade,International Trade +403716,International Trade,International Trade +400939,International Trade,International Trade +400914,International Trade,International Trade +400907,International Trade,International Trade +396246,International Trade,International Trade +396243,International Trade,International Trade +396240,International Trade,International Trade +396233,International Trade,International Trade +396224,International Trade,International Trade +396222,International Trade,International Trade +396219,International Trade,International Trade +396217,International Trade,International Trade +392792,International Trade,International Trade +392791,International Trade,International Trade +391361,International Trade,International Trade +391360,International Trade,International Trade +391359,International Trade,International Trade +391347,International Trade,International Trade +391346,International Trade,International Trade +391345,International Trade,International Trade +391342,International Trade,International Trade +391339,International Trade,International Trade +391337,International Trade,International Trade +391334,International Trade,International Trade +391330,International Trade,International Trade +391328,International Trade,International Trade +391325,International Trade,International Trade +391322,International Trade,International Trade +391321,International Trade,International Trade +391320,International Trade,International Trade +391317,International Trade,International Trade +391316,International Trade,International Trade +391315,International Trade,International Trade +391314,International Trade,International Trade +391313,International Trade,International Trade +391306,International Trade,International Trade +545124,International Trade,International Trade +544919,International Trade,International Trade +544797,International Trade,International Trade +544733,International Trade,International Trade +544693,International Trade,International Trade +544658,International Trade,International Trade +544574,International Trade,International Trade +544533,International Trade,International Trade +542861,International Trade,International Trade +542506,International Trade,International Trade +542505,International Trade,International Trade +542503,International Trade,International Trade +542209,International Trade,International Trade +541120,International Trade,International Trade +537039,International Trade,International Trade +537038,International Trade,International Trade +537036,International Trade,International Trade +537034,International Trade,International Trade +537032,International Trade,International Trade +536240,International Trade,International Trade +536175,International Trade,International Trade +536112,International Trade,International Trade +533706,International Trade,International Trade +533175,International Trade,International Trade +533114,International Trade,International Trade +532687,International Trade,International Trade +532481,International Trade,International Trade +532443,International Trade,International Trade +531383,International Trade,International Trade +530823,International Trade,International Trade +530718,International Trade,International Trade +530487,International Trade,International Trade +530486,International Trade,International Trade +530311,International Trade,International Trade +530307,International Trade,International Trade +530188,International Trade,International Trade +530187,International Trade,International Trade +529992,International Trade,International Trade +528950,International Trade,International Trade +528946,International Trade,International Trade +528305,International Trade,International Trade +527869,International Trade,International Trade +527713,International Trade,International Trade +527492,International Trade,International Trade +527377,International Trade,International Trade +527376,International Trade,International Trade +527375,International Trade,International Trade +527256,International Trade,International Trade +527247,International Trade,International Trade +527246,International Trade,International Trade +527245,International Trade,International Trade +527244,International Trade,International Trade +526952,International Trade,International Trade +526732,International Trade,International Trade +525531,International Trade,International Trade +524666,International Trade,International Trade +524580,International Trade,International Trade +524319,International Trade,International Trade +524188,International Trade,International Trade +524106,International Trade,International Trade +523766,International Trade,International Trade +523594,International Trade,International Trade +523531,International Trade,International Trade +523519,International Trade,International Trade +523365,International Trade,International Trade +522051,International Trade,International Trade +521899,International Trade,International Trade +521748,International Trade,International Trade +521743,International Trade,International Trade +521672,International Trade,International Trade +521618,International Trade,International Trade +521422,International Trade,International Trade +521421,International Trade,International Trade +521402,International Trade,International Trade +521401,International Trade,International Trade +521359,International Trade,International Trade +521358,International Trade,International Trade +521328,International Trade,International Trade +521325,International Trade,International Trade +521002,International Trade,International Trade +521001,International Trade,International Trade +520958,International Trade,International Trade +520957,International Trade,International Trade +520753,International Trade,International Trade +520618,International Trade,International Trade +520617,International Trade,International Trade +520413,International Trade,International Trade +518536,International Trade,International Trade +518504,International Trade,International Trade +516971,International Trade,International Trade +516880,International Trade,International Trade +516879,International Trade,International Trade +516536,International Trade,International Trade +516302,International Trade,International Trade +516057,International Trade,International Trade +516032,International Trade,International Trade +516030,International Trade,International Trade +514855,International Trade,International Trade +512197,International Trade,International Trade +511740,International Trade,International Trade +511737,International Trade,International Trade +511674,International Trade,International Trade +510154,International Trade,International Trade +509713,International Trade,International Trade +509225,International Trade,International Trade +509224,International Trade,International Trade +507256,International Trade,International Trade +506623,International Trade,International Trade +506146,International Trade,International Trade +506145,International Trade,International Trade +504425,International Trade,International Trade +504368,International Trade,International Trade +503577,International Trade,International Trade +503331,International Trade,International Trade +503330,International Trade,International Trade +503189,International Trade,International Trade +503184,International Trade,International Trade +503077,International Trade,International Trade +502970,International Trade,International Trade +501237,International Trade,International Trade +500561,International Trade,International Trade +500407,International Trade,International Trade +500406,International Trade,International Trade +500280,International Trade,International Trade +500278,International Trade,International Trade +500185,International Trade,International Trade +500184,International Trade,International Trade +500118,International Trade,International Trade +500066,International Trade,International Trade +500065,International Trade,International Trade +500017,International Trade,International Trade +499968,International Trade,International Trade +498253,International Trade,International Trade +497638,International Trade,International Trade +497389,International Trade,International Trade +497358,International Trade,International Trade +497355,International Trade,International Trade +497352,International Trade,International Trade +496876,International Trade,International Trade +496571,International Trade,International Trade +496473,International Trade,International Trade +496471,International Trade,International Trade +495204,International Trade,International Trade +495193,International Trade,International Trade +494520,International Trade,International Trade +494482,International Trade,International Trade +494112,International Trade,International Trade +494085,International Trade,International Trade +493939,International Trade,International Trade +493938,International Trade,International Trade +493573,International Trade,International Trade +493095,International Trade,International Trade +492491,International Trade,International Trade +492065,International Trade,International Trade +492064,International Trade,International Trade +489746,International Trade,International Trade +489744,International Trade,International Trade +489743,International Trade,International Trade +489741,International Trade,International Trade +489658,International Trade,International Trade +489470,International Trade,International Trade +489306,International Trade,International Trade +489168,International Trade,International Trade +489167,International Trade,International Trade +489165,International Trade,International Trade +488770,International Trade,International Trade +488769,International Trade,International Trade +488768,International Trade,International Trade +488510,International Trade,International Trade +488503,International Trade,International Trade +488501,International Trade,International Trade +488495,International Trade,International Trade +488493,International Trade,International Trade +488492,International Trade,International Trade +488491,International Trade,International Trade +488490,International Trade,International Trade +488489,International Trade,International Trade +488488,International Trade,International Trade +488487,International Trade,International Trade +486987,International Trade,International Trade +486985,International Trade,International Trade +486438,International Trade,International Trade +486342,International Trade,International Trade +486206,International Trade,International Trade +486205,International Trade,International Trade +486204,International Trade,International Trade +486197,International Trade,International Trade +486196,International Trade,International Trade +486190,International Trade,International Trade +486189,International Trade,International Trade +486188,International Trade,International Trade +486187,International Trade,International Trade +485620,International Trade,International Trade +485616,International Trade,International Trade +485590,International Trade,International Trade +485557,International Trade,International Trade +485556,International Trade,International Trade +484212,International Trade,International Trade +483236,International Trade,International Trade +483233,International Trade,International Trade +483231,International Trade,International Trade +483229,International Trade,International Trade +482792,International Trade,International Trade +482791,International Trade,International Trade +482790,International Trade,International Trade +481421,International Trade,International Trade +481013,International Trade,International Trade +480907,International Trade,International Trade +480867,International Trade,International Trade +480623,International Trade,International Trade +479003,International Trade,International Trade +478941,International Trade,International Trade +478785,International Trade,International Trade +476875,International Trade,International Trade +476453,International Trade,International Trade +476391,International Trade,International Trade +476390,International Trade,International Trade +476388,International Trade,International Trade +476228,International Trade,International Trade +476227,International Trade,International Trade +476226,International Trade,International Trade +476224,International Trade,International Trade +474337,International Trade,International Trade +520813,Transportation,Transportation +488769,Transportation,Transportation +160480,Transportation,Transportation +129618,Transportation,Transportation +391317,Transportation,Transportation +391316,Transportation,Transportation +391315,Transportation,Transportation +391314,Transportation,Transportation +391306,Transportation,Transportation +388242,Transportation,Transportation +388227,Transportation,Transportation +383946,Transportation,Transportation +382591,Transportation,Transportation +382588,Transportation,Transportation +380866,Transportation,Transportation +380820,Transportation,Transportation +380816,Transportation,Transportation +380814,Transportation,Transportation +379794,Transportation,Transportation +379787,Transportation,Transportation +379780,Transportation,Transportation +379774,Transportation,Transportation +379768,Transportation,Transportation +379767,Transportation,Transportation +379754,Transportation,Transportation +379739,Transportation,Transportation +379730,Transportation,Transportation +379726,Transportation,Transportation +379721,Transportation,Transportation +379710,Transportation,Transportation +379704,Transportation,Transportation +379703,Transportation,Transportation +376948,Transportation,Transportation +376944,Transportation,Transportation +376934,Transportation,Transportation +376921,Transportation,Transportation +376918,Transportation,Transportation +374749,Transportation,Transportation +366924,Transportation,Transportation +356716,Transportation,Transportation +355001,Transportation,Transportation +347857,Transportation,Transportation +250324,Transportation,Transportation +250316,Transportation,Transportation +219267,Transportation,Transportation +219227,Transportation,Transportation +219208,Transportation,Transportation +219207,Transportation,Transportation +219189,Transportation,Transportation +219188,Transportation,Transportation +219187,Transportation,Transportation +219148,Transportation,Transportation +460923,Transportation,Transportation +460922,Transportation,Transportation +428984,Transportation,Transportation +426631,Transportation,Transportation +426616,Transportation,Transportation +426607,Transportation,Transportation +426602,Transportation,Transportation +426593,Transportation,Transportation +426588,Transportation,Transportation +426582,Transportation,Transportation +426580,Transportation,Transportation +426578,Transportation,Transportation +426563,Transportation,Transportation +426560,Transportation,Transportation +426552,Transportation,Transportation +426548,Transportation,Transportation +426541,Transportation,Transportation +426538,Transportation,Transportation +426532,Transportation,Transportation +426528,Transportation,Transportation +426522,Transportation,Transportation +426510,Transportation,Transportation +426503,Transportation,Transportation +422490,Transportation,Transportation +422488,Transportation,Transportation +422487,Transportation,Transportation +422485,Transportation,Transportation +422483,Transportation,Transportation +422481,Transportation,Transportation +422480,Transportation,Transportation +415886,Transportation,Transportation +415884,Transportation,Transportation +415883,Transportation,Transportation +415881,Transportation,Transportation +415879,Transportation,Transportation +415876,Transportation,Transportation +415870,Transportation,Transportation +415869,Transportation,Transportation +415868,Transportation,Transportation +415867,Transportation,Transportation +415864,Transportation,Transportation +415859,Transportation,Transportation +415855,Transportation,Transportation +415852,Transportation,Transportation +415848,Transportation,Transportation +415845,Transportation,Transportation +415803,Transportation,Transportation +415799,Transportation,Transportation +415797,Transportation,Transportation +415794,Transportation,Transportation +415792,Transportation,Transportation +415790,Transportation,Transportation +413740,Transportation,Transportation +405764,Transportation,Transportation +405673,Transportation,Transportation +405669,Transportation,Transportation +405666,Transportation,Transportation +403753,Transportation,Transportation +403745,Transportation,Transportation +403716,Transportation,Transportation +400939,Transportation,Transportation +396243,Transportation,Transportation +396240,Transportation,Transportation +396233,Transportation,Transportation +396219,Transportation,Transportation +392792,Transportation,Transportation +392791,Transportation,Transportation +391360,Transportation,Transportation +391359,Transportation,Transportation +391347,Transportation,Transportation +391346,Transportation,Transportation +391345,Transportation,Transportation +391342,Transportation,Transportation +391339,Transportation,Transportation +391337,Transportation,Transportation +391334,Transportation,Transportation +391330,Transportation,Transportation +391328,Transportation,Transportation +391325,Transportation,Transportation +391322,Transportation,Transportation +391321,Transportation,Transportation +391320,Transportation,Transportation +544857,Transportation,Transportation +544797,Transportation,Transportation +544574,Transportation,Transportation +542871,Transportation,Transportation +542861,Transportation,Transportation +542509,Transportation,Transportation +542505,Transportation,Transportation +539533,Transportation,Transportation +539118,Transportation,Transportation +526938,Transportation,Transportation +526854,Transportation,Transportation +132414,Agriculture,Agriculture +74054,Agriculture,Agriculture +90141,Energy,Energy +97296,Energy,Energy +94215,Environment,Environment +90141,Environment,Environment +161934,Agriculture,Agriculture +161933,Agriculture,Agriculture +100932,Agriculture,Agriculture +100757,Agriculture,Agriculture +100756,Agriculture,Agriculture +97408,Agriculture,Agriculture +97406,Agriculture,Agriculture +97405,Agriculture,Agriculture +94097,Agriculture,Agriculture +94096,Agriculture,Agriculture +86979,Agriculture,Agriculture +86976,Agriculture,Agriculture +85515,Agriculture,Agriculture +161932,Agriculture,Agriculture +161931,Agriculture,Agriculture +161930,Agriculture,Agriculture +161928,Agriculture,Agriculture +161923,Agriculture,Agriculture +161921,Agriculture,Agriculture +161919,Agriculture,Agriculture +161917,Agriculture,Agriculture +161916,Agriculture,Agriculture +161915,Agriculture,Agriculture +161913,Agriculture,Agriculture +161905,Agriculture,Agriculture +161904,Agriculture,Agriculture +161900,Agriculture,Agriculture +161889,Agriculture,Agriculture +161204,Agriculture,Agriculture +159510,Agriculture,Agriculture +159509,Agriculture,Agriculture +159507,Agriculture,Agriculture +148264,Agriculture,Agriculture +138074,Agriculture,Agriculture +207551,Agriculture,Agriculture +199815,Agriculture,Agriculture +175930,Agriculture,Agriculture +175929,Agriculture,Agriculture +175928,Agriculture,Agriculture +175927,Agriculture,Agriculture +175925,Agriculture,Agriculture +168774,Agriculture,Agriculture +168770,Agriculture,Agriculture +168766,Agriculture,Agriculture +168754,Agriculture,Agriculture +168748,Agriculture,Agriculture +165667,Agriculture,Agriculture +165666,Agriculture,Agriculture +164189,Agriculture,Agriculture +261789,Internal Trade,Internal Trade +230319,Internal Trade,Internal Trade +97408,International Trade,International Trade +97406,International Trade,International Trade +97405,International Trade,International Trade +94097,International Trade,International Trade +94096,International Trade,International Trade +86979,International Trade,International Trade +86977,International Trade,International Trade +86976,International Trade,International Trade +85515,International Trade,International Trade +85514,International Trade,International Trade +175929,International Trade,International Trade +501948,Health,Health +501946,Health,Health +118338,Health,Health +118336,Health,Health +118335,Health,Health +109654,Health,Health +105094,Health,Health +152141,Health,Health +152139,Health,Health +152138,Health,Health +152137,Health,Health +150269,Health,Health +150268,Health,Health +142674,Health,Health +129486,Health,Health +129484,Health,Health +129483,Health,Health +129482,Health,Health +129480,Health,Health +129479,Health,Health +129478,Health,Health +129477,Health,Health +129476,Health,Health +236844,Health,Health +236843,Health,Health +226895,Health,Health +223083,Health,Health +212907,Health,Health +212887,Health,Health +200288,Health,Health +200285,Health,Health +200284,Health,Health +200279,Health,Health +200196,Health,Health +195429,Health,Health +195428,Health,Health +195427,Health,Health +195426,Health,Health +195425,Health,Health +195424,Health,Health +194649,Health,Health +194647,Health,Health +194646,Health,Health +194644,Health,Health +190065,Health,Health +181744,Health,Health +171124,Health,Health +166266,Health,Health +166265,Health,Health +166264,Health,Health +163271,Health,Health +161673,Health,Health +161672,Health,Health +161671,Health,Health +161670,Health,Health +161665,Health,Health +161664,Health,Health +152149,Health,Health +152148,Health,Health +152147,Health,Health +152146,Health,Health +152145,Health,Health +152144,Health,Health +152142,Health,Health +377210,Health,Health +377208,Health,Health +377206,Health,Health +377205,Health,Health +377204,Health,Health +377203,Health,Health +377202,Health,Health +377201,Health,Health +377199,Health,Health +377197,Health,Health +377195,Health,Health +373574,Health,Health +372161,Health,Health +372154,Health,Health +372121,Health,Health +372086,Health,Health +372058,Health,Health +365423,Health,Health +365422,Health,Health +357676,Health,Health +356396,Health,Health +356387,Health,Health +356328,Health,Health +353814,Health,Health +353811,Health,Health +353809,Health,Health +353807,Health,Health +353806,Health,Health +353794,Health,Health +349799,Health,Health +349798,Health,Health +341588,Health,Health +341587,Health,Health +341586,Health,Health +341579,Health,Health +341575,Health,Health +341572,Health,Health +341568,Health,Health +341565,Health,Health +338454,Health,Health +336131,Health,Health +336130,Health,Health +327179,Health,Health +327176,Health,Health +327175,Health,Health +291609,Health,Health +273531,Health,Health +273530,Health,Health +270289,Health,Health +501945,Health,Health +501944,Health,Health +501943,Health,Health +501942,Health,Health +501941,Health,Health +501940,Health,Health +499143,Health,Health +490808,Health,Health +490806,Health,Health +490802,Health,Health +490800,Health,Health +487700,Health,Health +487699,Health,Health +487698,Health,Health +487697,Health,Health +487696,Health,Health +477145,Health,Health +477139,Health,Health +474846,Health,Health +472364,Health,Health +472358,Health,Health +466951,Health,Health +466949,Health,Health +464366,Health,Health +464363,Health,Health +464362,Health,Health +464360,Health,Health +464359,Health,Health +461077,Health,Health +459268,Health,Health +459267,Health,Health +458061,Health,Health +457441,Health,Health +457434,Health,Health +455241,Health,Health +455230,Health,Health +455225,Health,Health +454381,Health,Health +454379,Health,Health +451164,Health,Health +451163,Health,Health +451162,Health,Health +450948,Health,Health +450946,Health,Health +446406,Health,Health +442743,Health,Health +442742,Health,Health +442741,Health,Health +442737,Health,Health +399235,Health,Health +380226,Health,Health +380225,Health,Health +380224,Health,Health +380222,Health,Health +528187,Health,Health +528182,Health,Health +519074,Health,Health +510798,Health,Health +510795,Health,Health +505147,Health,Health +505145,Health,Health +505129,Health,Health +442741,Industry,Industry +442740,Industry,Industry +129486,Industry,Industry +129478,Industry,Industry +129477,Industry,Industry +118337,Industry,Industry +118336,Industry,Industry +118334,Industry,Industry +109654,Industry,Industry +161671,Industry,Industry +161670,Industry,Industry +161665,Industry,Industry +161664,Industry,Industry +152149,Industry,Industry +152148,Industry,Industry +152147,Industry,Industry +152146,Industry,Industry +150269,Industry,Industry +150268,Industry,Industry +212907,Industry,Industry +200288,Industry,Industry +200285,Industry,Industry +200284,Industry,Industry +200279,Industry,Industry +200196,Industry,Industry +195429,Industry,Industry +195428,Industry,Industry +195427,Industry,Industry +195426,Industry,Industry +195425,Industry,Industry +195424,Industry,Industry +194649,Industry,Industry +194648,Industry,Industry +194647,Industry,Industry +194646,Industry,Industry +194644,Industry,Industry +190065,Industry,Industry +181744,Industry,Industry +171124,Industry,Industry +166266,Industry,Industry +166265,Industry,Industry +166264,Industry,Industry +163271,Industry,Industry +161673,Industry,Industry +161672,Industry,Industry +380226,Industry,Industry +380225,Industry,Industry +380224,Industry,Industry +380222,Industry,Industry +377210,Industry,Industry +377208,Industry,Industry +377205,Industry,Industry +377204,Industry,Industry +377203,Industry,Industry +377202,Industry,Industry +377195,Industry,Industry +353811,Industry,Industry +353809,Industry,Industry +353807,Industry,Industry +353806,Industry,Industry +353794,Industry,Industry +341593,Industry,Industry +341568,Industry,Industry +341565,Industry,Industry +304949,Industry,Industry +531423,Industry,Industry +528187,Industry,Industry +528185,Industry,Industry +526315,Industry,Industry +526312,Industry,Industry +510799,Industry,Industry +510798,Industry,Industry +510797,Industry,Industry +510795,Industry,Industry +505147,Industry,Industry +501953,Industry,Industry +501946,Industry,Industry +501941,Industry,Industry +501940,Industry,Industry +490809,Industry,Industry +490800,Industry,Industry +487696,Industry,Industry +477145,Industry,Industry +477139,Industry,Industry +474846,Industry,Industry +472364,Industry,Industry +472358,Industry,Industry +466951,Industry,Industry +466949,Industry,Industry +464366,Industry,Industry +464363,Industry,Industry +464362,Industry,Industry +464360,Industry,Industry +464359,Industry,Industry +461077,Industry,Industry +459268,Industry,Industry +459267,Industry,Industry +458061,Industry,Industry +457441,Industry,Industry +457434,Industry,Industry +455241,Industry,Industry +455230,Industry,Industry +455225,Industry,Industry +454381,Industry,Industry +454379,Industry,Industry +450948,Industry,Industry +450946,Industry,Industry +446406,Industry,Industry +353814,Intellectual Property,Intellectual Property +353811,Intellectual Property,Intellectual Property +166264,Intellectual Property,Intellectual Property +163271,Intellectual Property,Intellectual Property +161673,Intellectual Property,Intellectual Property +161672,Intellectual Property,Intellectual Property +161671,Intellectual Property,Intellectual Property +161670,Intellectual Property,Intellectual Property +161665,Intellectual Property,Intellectual Property +161664,Intellectual Property,Intellectual Property +152149,Intellectual Property,Intellectual Property +152146,Intellectual Property,Intellectual Property +152139,Intellectual Property,Intellectual Property +152138,Intellectual Property,Intellectual Property +152137,Intellectual Property,Intellectual Property +150269,Intellectual Property,Intellectual Property +150268,Intellectual Property,Intellectual Property +109654,Intellectual Property,Intellectual Property +236844,Intellectual Property,Intellectual Property +226895,Intellectual Property,Intellectual Property +223083,Intellectual Property,Intellectual Property +212907,Intellectual Property,Intellectual Property +212887,Intellectual Property,Intellectual Property +200288,Intellectual Property,Intellectual Property +200285,Intellectual Property,Intellectual Property +200284,Intellectual Property,Intellectual Property +200279,Intellectual Property,Intellectual Property +200196,Intellectual Property,Intellectual Property +195429,Intellectual Property,Intellectual Property +195428,Intellectual Property,Intellectual Property +195427,Intellectual Property,Intellectual Property +195426,Intellectual Property,Intellectual Property +195425,Intellectual Property,Intellectual Property +195424,Intellectual Property,Intellectual Property +194649,Intellectual Property,Intellectual Property +194648,Intellectual Property,Intellectual Property +194647,Intellectual Property,Intellectual Property +194646,Intellectual Property,Intellectual Property +194644,Intellectual Property,Intellectual Property +190065,Intellectual Property,Intellectual Property +181744,Intellectual Property,Intellectual Property +171124,Intellectual Property,Intellectual Property +166266,Intellectual Property,Intellectual Property +166265,Intellectual Property,Intellectual Property +353809,Intellectual Property,Intellectual Property +353807,Intellectual Property,Intellectual Property +353806,Intellectual Property,Intellectual Property +353794,Intellectual Property,Intellectual Property +341599,Intellectual Property,Intellectual Property +341593,Intellectual Property,Intellectual Property +341588,Intellectual Property,Intellectual Property +341587,Intellectual Property,Intellectual Property +341586,Intellectual Property,Intellectual Property +341583,Intellectual Property,Intellectual Property +341579,Intellectual Property,Intellectual Property +341575,Intellectual Property,Intellectual Property +341572,Intellectual Property,Intellectual Property +341568,Intellectual Property,Intellectual Property +336130,Intellectual Property,Intellectual Property +304949,Intellectual Property,Intellectual Property +291609,Intellectual Property,Intellectual Property +273531,Intellectual Property,Intellectual Property +273530,Intellectual Property,Intellectual Property +270289,Intellectual Property,Intellectual Property +519074,Intellectual Property,Intellectual Property +459268,Intellectual Property,Intellectual Property +459267,Intellectual Property,Intellectual Property +457441,Intellectual Property,Intellectual Property +457434,Intellectual Property,Intellectual Property +454379,Intellectual Property,Intellectual Property +451164,Intellectual Property,Intellectual Property +451163,Intellectual Property,Intellectual Property +451162,Intellectual Property,Intellectual Property +446406,Intellectual Property,Intellectual Property +380226,Intellectual Property,Intellectual Property +380225,Intellectual Property,Intellectual Property +380224,Intellectual Property,Intellectual Property +380223,Intellectual Property,Intellectual Property +380222,Intellectual Property,Intellectual Property +377210,Intellectual Property,Intellectual Property +377207,Intellectual Property,Intellectual Property +377205,Intellectual Property,Intellectual Property +377204,Intellectual Property,Intellectual Property +377203,Intellectual Property,Intellectual Property +377202,Intellectual Property,Intellectual Property +377201,Intellectual Property,Intellectual Property +377197,Intellectual Property,Intellectual Property +373573,Intellectual Property,Intellectual Property +373572,Intellectual Property,Intellectual Property +373570,Intellectual Property,Intellectual Property +373569,Intellectual Property,Intellectual Property +373567,Intellectual Property,Intellectual Property +373566,Intellectual Property,Intellectual Property +373565,Intellectual Property,Intellectual Property +372174,Intellectual Property,Intellectual Property +372161,Intellectual Property,Intellectual Property +372154,Intellectual Property,Intellectual Property +372121,Intellectual Property,Intellectual Property +372086,Intellectual Property,Intellectual Property +372058,Intellectual Property,Intellectual Property +365423,Intellectual Property,Intellectual Property +365422,Intellectual Property,Intellectual Property +357676,Intellectual Property,Intellectual Property +356396,Intellectual Property,Intellectual Property +356387,Intellectual Property,Intellectual Property +356381,Intellectual Property,Intellectual Property +356328,Intellectual Property,Intellectual Property +464360,International Trade,International Trade +464359,International Trade,International Trade +109654,International Trade,International Trade +200288,International Trade,International Trade +200285,International Trade,International Trade +200284,International Trade,International Trade +200196,International Trade,International Trade +195429,International Trade,International Trade +195427,International Trade,International Trade +195426,International Trade,International Trade +195425,International Trade,International Trade +195424,International Trade,International Trade +194649,International Trade,International Trade +194648,International Trade,International Trade +194647,International Trade,International Trade +194646,International Trade,International Trade +194644,International Trade,International Trade +190065,International Trade,International Trade +171124,International Trade,International Trade +161673,International Trade,International Trade +161672,International Trade,International Trade +161671,International Trade,International Trade +161670,International Trade,International Trade +161665,International Trade,International Trade +161664,International Trade,International Trade +152138,International Trade,International Trade +152137,International Trade,International Trade +150269,International Trade,International Trade +150268,International Trade,International Trade +353815,International Trade,International Trade +353814,International Trade,International Trade +353811,International Trade,International Trade +353809,International Trade,International Trade +353807,International Trade,International Trade +353806,International Trade,International Trade +353794,International Trade,International Trade +341593,International Trade,International Trade +341586,International Trade,International Trade +341583,International Trade,International Trade +341579,International Trade,International Trade +341572,International Trade,International Trade +341568,International Trade,International Trade +341565,International Trade,International Trade +336130,International Trade,International Trade +304949,International Trade,International Trade +291609,International Trade,International Trade +273531,International Trade,International Trade +273530,International Trade,International Trade +270289,International Trade,International Trade +236844,International Trade,International Trade +236843,International Trade,International Trade +223083,International Trade,International Trade +212907,International Trade,International Trade +212887,International Trade,International Trade +455225,International Trade,International Trade +454379,International Trade,International Trade +451164,International Trade,International Trade +451163,International Trade,International Trade +451162,International Trade,International Trade +446406,International Trade,International Trade +442742,International Trade,International Trade +442741,International Trade,International Trade +442740,International Trade,International Trade +399235,International Trade,International Trade +380226,International Trade,International Trade +380225,International Trade,International Trade +380224,International Trade,International Trade +380223,International Trade,International Trade +380222,International Trade,International Trade +377209,International Trade,International Trade +377206,International Trade,International Trade +377201,International Trade,International Trade +377199,International Trade,International Trade +377197,International Trade,International Trade +373574,International Trade,International Trade +373573,International Trade,International Trade +373572,International Trade,International Trade +373570,International Trade,International Trade +373569,International Trade,International Trade +373567,International Trade,International Trade +373566,International Trade,International Trade +373565,International Trade,International Trade +372174,International Trade,International Trade +372161,International Trade,International Trade +372154,International Trade,International Trade +372121,International Trade,International Trade +372086,International Trade,International Trade +372058,International Trade,International Trade +365423,International Trade,International Trade +365422,International Trade,International Trade +356396,International Trade,International Trade +356387,International Trade,International Trade +356381,International Trade,International Trade +356328,International Trade,International Trade +531423,International Trade,International Trade +501945,International Trade,International Trade +466951,International Trade,International Trade +466949,International Trade,International Trade +464366,International Trade,International Trade +464363,International Trade,International Trade +92375,Infrastructure,Infrastructure +92374,Infrastructure,Infrastructure +89322,Infrastructure,Infrastructure +89321,Infrastructure,Infrastructure +89319,Infrastructure,Infrastructure +86454,Infrastructure,Infrastructure +86435,Infrastructure,Infrastructure +86434,Infrastructure,Infrastructure +76018,Infrastructure,Infrastructure +111934,Infrastructure,Infrastructure +107655,Infrastructure,Infrastructure +107654,Infrastructure,Infrastructure +100055,Infrastructure,Infrastructure +94974,Infrastructure,Infrastructure +92378,Infrastructure,Infrastructure +92377,Infrastructure,Infrastructure +101067,Energy,Energy +87656,Energy,Energy +101071,Energy,Energy +101067,Environment,Environment +87656,Environment,Environment +101071,Environment,Environment +76398,Agriculture,Agriculture +356838,Agriculture,Agriculture +512139,Employment and Training,Employment and Training +472161,Employment and Training,Employment and Training +345257,Employment and Training,Employment and Training +544824,Employment and Training,Employment and Training +533225,Employment and Training,Employment and Training +530209,Employment and Training,Employment and Training +516683,Employment and Training,Employment and Training +536450,Energy,Energy +520373,Energy,Energy +544824,Energy,Energy +540354,Energy,Energy +414118,Environment,Environment +414100,Environment,Environment +76397,Environment,Environment +377555,Environment,Environment +377554,Environment,Environment +377553,Environment,Environment +377552,Environment,Environment +373549,Environment,Environment +369986,Environment,Environment +369985,Environment,Environment +369982,Environment,Environment +369981,Environment,Environment +369979,Environment,Environment +363455,Environment,Environment +345237,Environment,Environment +345217,Environment,Environment +306149,Environment,Environment +299015,Environment,Environment +239329,Environment,Environment +544824,Environment,Environment +540354,Environment,Environment +539563,Environment,Environment +533100,Environment,Environment +525553,Environment,Environment +520373,Environment,Environment +520372,Environment,Environment +520278,Environment,Environment +481671,Environment,Environment +480777,Environment,Environment +476646,Environment,Environment +476550,Environment,Environment +466575,Environment,Environment +458076,Environment,Environment +446314,Environment,Environment +446313,Environment,Environment +448684,Fisheries,Fisheries +448571,Fisheries,Fisheries +345237,Industry,Industry +521657,Infrastructure,Infrastructure +521522,Infrastructure,Infrastructure +363455,Infrastructure,Infrastructure +345257,Infrastructure,Infrastructure +345237,Infrastructure,Infrastructure +427157,Infrastructure,Infrastructure +425624,Infrastructure,Infrastructure +424678,Infrastructure,Infrastructure +474067,Infrastructure,Infrastructure +544824,Infrastructure,Infrastructure +536450,Infrastructure,Infrastructure +533100,Infrastructure,Infrastructure +530254,Infrastructure,Infrastructure +527378,Infrastructure,Infrastructure +542792,Internal Trade,Internal Trade +458076,International Relations,International Relations +466573,International Trade,International Trade +466559,International Trade,International Trade +369986,International Trade,International Trade +369985,International Trade,International Trade +369982,International Trade,International Trade +369981,International Trade,International Trade +369979,International Trade,International Trade +363455,International Trade,International Trade +414118,International Trade,International Trade +414100,International Trade,International Trade +542792,International Trade,International Trade +483595,International Trade,International Trade +480392,International Trade,International Trade +466576,International Trade,International Trade +509372,Labour,Labour +472161,Labour,Labour +544824,Labour,Labour +542512,Labour,Labour +538747,Labour,Labour +536450,Labour,Labour +521052,Labour,Labour +345197,Taxation and Finance,Taxation and Finance +336389,Taxation and Finance,Taxation and Finance +122437,Taxation and Finance,Taxation and Finance +519265,Transportation,Transportation +518825,Transportation,Transportation +155222,Transportation,Transportation +155221,Transportation,Transportation +155220,Transportation,Transportation +149658,Transportation,Transportation +145928,Transportation,Transportation +145922,Transportation,Transportation +76398,Transportation,Transportation +242109,Transportation,Transportation +239329,Transportation,Transportation +228709,Transportation,Transportation +225507,Transportation,Transportation +210575,Transportation,Transportation +208707,Transportation,Transportation +195271,Transportation,Transportation +192966,Transportation,Transportation +192962,Transportation,Transportation +192064,Transportation,Transportation +187044,Transportation,Transportation +174715,Transportation,Transportation +160794,Transportation,Transportation +160505,Transportation,Transportation +155632,Transportation,Transportation +155224,Transportation,Transportation +155223,Transportation,Transportation +369986,Transportation,Transportation +369985,Transportation,Transportation +369982,Transportation,Transportation +369981,Transportation,Transportation +369979,Transportation,Transportation +363455,Transportation,Transportation +356838,Transportation,Transportation +345257,Transportation,Transportation +345237,Transportation,Transportation +345217,Transportation,Transportation +336390,Transportation,Transportation +336389,Transportation,Transportation +332929,Transportation,Transportation +332389,Transportation,Transportation +332209,Transportation,Transportation +326212,Transportation,Transportation +326211,Transportation,Transportation +317410,Transportation,Transportation +317409,Transportation,Transportation +306149,Transportation,Transportation +299015,Transportation,Transportation +263428,Transportation,Transportation +263425,Transportation,Transportation +259010,Transportation,Transportation +420070,Transportation,Transportation +417509,Transportation,Transportation +415692,Transportation,Transportation +415689,Transportation,Transportation +414118,Transportation,Transportation +414100,Transportation,Transportation +412065,Transportation,Transportation +408728,Transportation,Transportation +408327,Transportation,Transportation +406775,Transportation,Transportation +405326,Transportation,Transportation +402999,Transportation,Transportation +402998,Transportation,Transportation +402988,Transportation,Transportation +402962,Transportation,Transportation +402956,Transportation,Transportation +399865,Transportation,Transportation +399555,Transportation,Transportation +399554,Transportation,Transportation +398869,Transportation,Transportation +398863,Transportation,Transportation +396135,Transportation,Transportation +396134,Transportation,Transportation +396132,Transportation,Transportation +396130,Transportation,Transportation +396126,Transportation,Transportation +396123,Transportation,Transportation +396120,Transportation,Transportation +392324,Transportation,Transportation +388782,Transportation,Transportation +388780,Transportation,Transportation +377555,Transportation,Transportation +377554,Transportation,Transportation +377553,Transportation,Transportation +377552,Transportation,Transportation +373549,Transportation,Transportation +516233,Transportation,Transportation +516198,Transportation,Transportation +515063,Transportation,Transportation +514649,Transportation,Transportation +512949,Transportation,Transportation +512136,Transportation,Transportation +511718,Transportation,Transportation +509870,Transportation,Transportation +509530,Transportation,Transportation +509193,Transportation,Transportation +508725,Transportation,Transportation +506963,Transportation,Transportation +506726,Transportation,Transportation +506725,Transportation,Transportation +506532,Transportation,Transportation +506309,Transportation,Transportation +506006,Transportation,Transportation +506005,Transportation,Transportation +504078,Transportation,Transportation +504075,Transportation,Transportation +501098,Transportation,Transportation +494462,Transportation,Transportation +492602,Transportation,Transportation +492601,Transportation,Transportation +485984,Transportation,Transportation +483595,Transportation,Transportation +483561,Transportation,Transportation +483555,Transportation,Transportation +483062,Transportation,Transportation +481671,Transportation,Transportation +481176,Transportation,Transportation +480778,Transportation,Transportation +480777,Transportation,Transportation +480392,Transportation,Transportation +478450,Transportation,Transportation +476646,Transportation,Transportation +476550,Transportation,Transportation +474240,Transportation,Transportation +474239,Transportation,Transportation +474068,Transportation,Transportation +474067,Transportation,Transportation +474066,Transportation,Transportation +472161,Transportation,Transportation +471665,Transportation,Transportation +466576,Transportation,Transportation +466575,Transportation,Transportation +466573,Transportation,Transportation +466559,Transportation,Transportation +461137,Transportation,Transportation +460815,Transportation,Transportation +460413,Transportation,Transportation +460288,Transportation,Transportation +460287,Transportation,Transportation +460268,Transportation,Transportation +460267,Transportation,Transportation +460266,Transportation,Transportation +459029,Transportation,Transportation +458076,Transportation,Transportation +457138,Transportation,Transportation +448684,Transportation,Transportation +448571,Transportation,Transportation +446314,Transportation,Transportation +446313,Transportation,Transportation +446312,Transportation,Transportation +440262,Transportation,Transportation +438614,Transportation,Transportation +436508,Transportation,Transportation +436204,Transportation,Transportation +436203,Transportation,Transportation +436202,Transportation,Transportation +436201,Transportation,Transportation +436200,Transportation,Transportation +436197,Transportation,Transportation +436196,Transportation,Transportation +436195,Transportation,Transportation +436194,Transportation,Transportation +436193,Transportation,Transportation +436192,Transportation,Transportation +436191,Transportation,Transportation +436190,Transportation,Transportation +436188,Transportation,Transportation +432829,Transportation,Transportation +432827,Transportation,Transportation +432826,Transportation,Transportation +430031,Transportation,Transportation +430030,Transportation,Transportation +430029,Transportation,Transportation +430028,Transportation,Transportation +429854,Transportation,Transportation +427645,Transportation,Transportation +427157,Transportation,Transportation +425627,Transportation,Transportation +425624,Transportation,Transportation +425006,Transportation,Transportation +425004,Transportation,Transportation +425000,Transportation,Transportation +424678,Transportation,Transportation +423974,Transportation,Transportation +423971,Transportation,Transportation +545098,Transportation,Transportation +545002,Transportation,Transportation +545001,Transportation,Transportation +544824,Transportation,Transportation +543689,Transportation,Transportation +542792,Transportation,Transportation +541100,Transportation,Transportation +540683,Transportation,Transportation +540682,Transportation,Transportation +540354,Transportation,Transportation +539563,Transportation,Transportation +539112,Transportation,Transportation +538719,Transportation,Transportation +536450,Transportation,Transportation +533163,Transportation,Transportation +533100,Transportation,Transportation +532965,Transportation,Transportation +532748,Transportation,Transportation +530471,Transportation,Transportation +530254,Transportation,Transportation +530210,Transportation,Transportation +528623,Transportation,Transportation +527736,Transportation,Transportation +527378,Transportation,Transportation +526945,Transportation,Transportation +525553,Transportation,Transportation +524352,Transportation,Transportation +524339,Transportation,Transportation +524030,Transportation,Transportation +523435,Transportation,Transportation +521958,Transportation,Transportation +521657,Transportation,Transportation +521522,Transportation,Transportation +520868,Transportation,Transportation +520719,Transportation,Transportation +520546,Transportation,Transportation +520373,Transportation,Transportation +520372,Transportation,Transportation +520278,Transportation,Transportation +159406,Infrastructure,Infrastructure +173004,Infrastructure,Infrastructure +93138,Infrastructure,Infrastructure +93134,Infrastructure,Infrastructure +159414,Infrastructure,Infrastructure +159412,Infrastructure,Infrastructure +159409,Infrastructure,Infrastructure +446349,Health,Health +446343,Health,Health +172104,Health,Health +168019,Health,Health +168018,Health,Health +168016,Health,Health +167388,Health,Health +360569,Health,Health +358004,Health,Health +358003,Health,Health +358002,Health,Health +446339,Health,Health +446333,Health,Health +444286,Health,Health +444285,Health,Health +410531,Health,Health +397701,Health,Health +394090,Health,Health +466494,Health,Health +451957,Health,Health +451956,Health,Health +451955,Health,Health +451954,Health,Health +451953,Health,Health +451952,Health,Health +450888,Health,Health +448569,Health,Health +448568,Health,Health +448567,Health,Health +448566,Health,Health +448565,Health,Health +358003,Industry,Industry +358002,Industry,Industry +172104,Industry,Industry +168019,Industry,Industry +168018,Industry,Industry +168016,Industry,Industry +167388,Industry,Industry +448276,Industry,Industry +444286,Industry,Industry +444285,Industry,Industry +410531,Industry,Industry +397701,Industry,Industry +394090,Industry,Industry +388873,Industry,Industry +444286,Intellectual Property,Intellectual Property +444285,Intellectual Property,Intellectual Property +172104,Intellectual Property,Intellectual Property +168019,Intellectual Property,Intellectual Property +168018,Intellectual Property,Intellectual Property +168016,Intellectual Property,Intellectual Property +167388,Intellectual Property,Intellectual Property +410531,Intellectual Property,Intellectual Property +397701,Intellectual Property,Intellectual Property +388873,Intellectual Property,Intellectual Property +358004,Intellectual Property,Intellectual Property +358002,Intellectual Property,Intellectual Property +195269,Employment and Training,Employment and Training +195269,Industry,Industry +195269,Taxation and Finance,Taxation and Finance +209027,Consumer Issues,Consumer Issues +209027,Health,Health +440256,Health,Health +225567,Consumer Issues,Consumer Issues +156768,Employment and Training,Employment and Training +193181,Health,Health +114795,International Trade,International Trade +128355,Government Procurement,Government Procurement +128355,Health,Health +494042,Defence,Defence +255989,Employment and Training,Employment and Training +528798,Industry,Industry +236349,Internal Trade,Internal Trade +374699,Regional Development,Regional Development +398457,Transportation,Transportation +92899,Other,Aérospatial +85474,Health,Health +499850,Employment and Training,Employment and Training +422852,Environment,Environment +524880,Health,Health +328472,Industry,Industry +148876,Infrastructure,Infrastructure +422852,Justice and Law Enforcement,Justice and Law Enforcement +499850,Labour,Labour +349657,Taxation and Finance,Taxation and Finance +386209,Transportation,Transportation +406974,Education,Education +540727,Immigration,Immigration +408474,Intellectual Property,Intellectual Property +408509,Taxation and Finance,Taxation and Finance +80907,Tourism,Tourism +80907,Transportation,Transportation +80902,Internal Trade,Internal Trade +106757,International Trade,International Trade +80898,Transportation,Transportation +227729,Consumer Issues,Consumer Issues +245992,Employment and Training,Employment and Training +484812,Energy,Energy +541731,Environment,Environment +470087,Health,Health +310125,Industry,Industry +498749,Infrastructure,Infrastructure +273444,International Trade,International Trade +245992,Labour,Labour +470092,Taxation and Finance,Taxation and Finance +504062,Transportation,Transportation +133874,Infrastructure,Infrastructure +96258,Energy,Energy +121775,Environment,Environment +146554,Industry,Industry +121402,Energy,Energy +93262,Energy,Energy +93273,Environment,Environment +93262,Industry,Industry +182845,Health,Health +483233,Agriculture,Agriculture +219148,Energy,Energy +536240,Environment,Environment +391359,Financial Institutions,Financial Institutions +523386,Industry,Industry +449188,Infrastructure,Infrastructure +239429,Internal Trade,Internal Trade +474329,International Trade,International Trade +525531,Transportation,Transportation +132415,Agriculture,Agriculture +95074,International Trade,International Trade +132414,Transportation,Transportation +94215,Energy,Energy +97296,Environment,Environment +164188,Agriculture,Agriculture +86976,Consumer Issues,Consumer Issues +175924,Energy,Energy +263958,Internal Trade,Internal Trade +149476,International Trade,International Trade +329594,Transportation,Transportation +501953,Health,Health +442742,Industry,Industry +353815,Intellectual Property,Intellectual Property +464362,International Trade,International Trade +92376,Infrastructure,Infrastructure +86434,Tourism,Tourism +106714,Health,Health +101069,Energy,Energy +101069,Environment,Environment +87656,Industry,Industry +87819,Agriculture,Agriculture +516099,Employment and Training,Employment and Training +539112,Energy,Energy +425004,Environment,Environment +87830,Fisheries,Fisheries +145925,Industry,Industry +523435,Infrastructure,Infrastructure +544824,Internal Trade,Internal Trade +363455,International Relations,International Relations +466575,International Trade,International Trade +520654,Labour,Labour +76397,Taxation and Finance,Taxation and Finance +520266,Transportation,Transportation +159408,Infrastructure,Infrastructure +339962,Justice and Law Enforcement,Justice and Law Enforcement +446352,Health,Health +358004,Industry,Industry +448276,Intellectual Property,Intellectual Property +394090,International Trade,International Trade +424687,Health,Health +434089,Industry,Industry +434089,International Trade,International Trade +407874,Energy,Energy +436612,Environment,Environment +338706,Fisheries,Fisheries +459947,Industry,Industry +331188,Infrastructure,Infrastructure +466031,International Trade,International Trade +331188,Regional Development,Regional Development +513744,Taxation and Finance,Taxation and Finance +74874,International Trade,International Trade +100265,Agriculture,Agriculture +100265,Environment,Environment +114190,Other,Customs issues +106205,Industry,Industry +86476,Employment and Training,Employment and Training +84396,Health,Health +110215,Justice and Law Enforcement,Justice and Law Enforcement +116341,Health,Health +77506,Industry,Industry +77506,Intellectual Property,Intellectual Property +388873,International Trade,International Trade +358003,International Trade,International Trade +170053,International Trade,International Trade +170052,International Trade,International Trade +170051,International Trade,International Trade +170050,International Trade,International Trade +170049,International Trade,International Trade +170048,International Trade,International Trade +170047,International Trade,International Trade +170046,International Trade,International Trade +170045,International Trade,International Trade +170044,International Trade,International Trade +168019,International Trade,International Trade +168018,International Trade,International Trade +168016,International Trade,International Trade +167388,International Trade,International Trade +172104,International Trade,International Trade +170070,International Trade,International Trade +170069,International Trade,International Trade +170068,International Trade,International Trade +170067,International Trade,International Trade +170066,International Trade,International Trade +170065,International Trade,International Trade +170064,International Trade,International Trade +170063,International Trade,International Trade +170062,International Trade,International Trade +170061,International Trade,International Trade +170060,International Trade,International Trade +170059,International Trade,International Trade +170058,International Trade,International Trade +170057,International Trade,International Trade +170056,International Trade,International Trade +170055,International Trade,International Trade +170054,International Trade,International Trade +448276,International Trade,International Trade +410531,International Trade,International Trade +397701,International Trade,International Trade +407873,Energy,Energy +406589,Energy,Energy +132460,Energy,Energy +112714,Energy,Energy +85401,Energy,Energy +77458,Energy,Energy +154890,Energy,Energy +154887,Energy,Energy +149158,Energy,Energy +146735,Energy,Energy +144274,Energy,Energy +256490,Energy,Energy +256489,Energy,Energy +253169,Energy,Energy +249813,Energy,Energy +249810,Energy,Energy +248970,Energy,Energy +248969,Energy,Energy +248930,Energy,Energy +244688,Energy,Energy +239853,Energy,Energy +236129,Energy,Energy +233702,Energy,Energy +233701,Energy,Energy +233564,Energy,Energy +226733,Energy,Energy +222593,Energy,Energy +216278,Energy,Energy +216277,Energy,Energy +216276,Energy,Energy +212087,Energy,Energy +207291,Energy,Energy +207284,Energy,Energy +207281,Energy,Energy +202575,Energy,Energy +198208,Energy,Energy +198168,Energy,Energy +193966,Energy,Energy +193964,Energy,Energy +185104,Energy,Energy +176746,Energy,Energy +170770,Energy,Energy +167773,Energy,Energy +165295,Energy,Energy +403242,Energy,Energy +403240,Energy,Energy +403235,Energy,Energy +403232,Energy,Energy +403231,Energy,Energy +401386,Energy,Energy +393689,Energy,Energy +393688,Energy,Energy +387024,Energy,Energy +376681,Energy,Energy +376678,Energy,Energy +376676,Energy,Energy +376673,Energy,Energy +376670,Energy,Energy +376663,Energy,Energy +373749,Energy,Energy +373748,Energy,Energy +373747,Energy,Energy +371041,Energy,Energy +370725,Energy,Energy +352260,Energy,Energy +348538,Energy,Energy +347132,Energy,Energy +347131,Energy,Energy +340557,Energy,Energy +338706,Energy,Energy +338686,Energy,Energy +331190,Energy,Energy +331189,Energy,Energy +331188,Energy,Energy +330484,Energy,Energy +326821,Energy,Energy +324091,Energy,Energy +318914,Energy,Energy +314910,Energy,Energy +285210,Energy,Energy +285209,Energy,Energy +272876,Energy,Energy +266931,Energy,Energy +266930,Energy,Energy +266929,Energy,Energy +263669,Energy,Energy +256690,Energy,Energy +256549,Energy,Energy +256530,Energy,Energy +256511,Energy,Energy +256510,Energy,Energy +256509,Energy,Energy +530635,Energy,Energy +530633,Energy,Energy +519505,Energy,Energy +513744,Energy,Energy +512111,Energy,Energy +509836,Energy,Energy +501262,Energy,Energy +494664,Energy,Energy +489316,Energy,Energy +486554,Energy,Energy +484274,Energy,Energy +476437,Energy,Energy +476436,Energy,Energy +474929,Energy,Energy +474925,Energy,Energy +472607,Energy,Energy +472595,Energy,Energy +472592,Energy,Energy +472591,Energy,Energy +472590,Energy,Energy +470189,Energy,Energy +470070,Energy,Energy +470069,Energy,Energy +470068,Energy,Energy +467450,Energy,Energy +467428,Energy,Energy +459966,Energy,Energy +459947,Energy,Energy +459076,Energy,Energy +458306,Energy,Energy +458305,Energy,Energy +458297,Energy,Energy +458295,Energy,Energy +458294,Energy,Energy +458292,Energy,Energy +458291,Energy,Energy +456846,Energy,Energy +453985,Energy,Energy +451402,Energy,Energy +451396,Energy,Energy +449638,Energy,Energy +449180,Energy,Energy +440845,Energy,Energy +440844,Energy,Energy +440843,Energy,Energy +440656,Energy,Energy +438509,Energy,Energy +437089,Energy,Energy +437085,Energy,Energy +436612,Energy,Energy +434881,Energy,Energy +434872,Energy,Energy +434870,Energy,Energy +434868,Energy,Energy +434866,Energy,Energy +433476,Energy,Energy +433325,Energy,Energy +432906,Energy,Energy +432905,Energy,Energy +432034,Energy,Energy +432010,Energy,Energy +430560,Energy,Energy +430451,Energy,Energy +426039,Energy,Energy +426029,Energy,Energy +423651,Energy,Energy +423649,Energy,Energy +423643,Energy,Energy +423641,Energy,Energy +423640,Energy,Energy +423637,Energy,Energy +420876,Energy,Energy +420875,Energy,Energy +420873,Energy,Energy +420871,Energy,Energy +420837,Energy,Energy +420836,Energy,Energy +420835,Energy,Energy +417624,Energy,Energy +414612,Energy,Energy +414611,Energy,Energy +414610,Energy,Energy +414609,Energy,Energy +414608,Energy,Energy +411817,Energy,Energy +411813,Energy,Energy +411812,Energy,Energy +407875,Energy,Energy +434881,Environment,Environment +432905,Environment,Environment +146735,Environment,Environment +340557,Environment,Environment +338706,Environment,Environment +331189,Environment,Environment +330484,Environment,Environment +326821,Environment,Environment +239853,Environment,Environment +370725,Environment,Environment +459966,Environment,Environment +459947,Environment,Environment +459076,Environment,Environment +458306,Environment,Environment +458305,Environment,Environment +458295,Environment,Environment +458294,Environment,Environment +458291,Environment,Environment +456846,Environment,Environment +453985,Environment,Environment +449638,Environment,Environment +440656,Environment,Environment +437085,Environment,Environment +330484,Fisheries,Fisheries +459076,Industry,Industry +458292,Industry,Industry +198208,Industry,Industry +330484,Industry,Industry +326821,Industry,Industry +453985,Industry,Industry +449180,Industry,Industry +440845,Industry,Industry +440843,Industry,Industry +437085,Industry,Industry +434881,Industry,Industry +434872,Industry,Industry +434870,Industry,Industry +434868,Industry,Industry +470189,Industry,Industry +470068,Industry,Industry +467450,Industry,Industry +466031,Industry,Industry +330484,Infrastructure,Infrastructure +326821,Infrastructure,Infrastructure +440844,Infrastructure,Infrastructure +438509,Infrastructure,Infrastructure +437085,Infrastructure,Infrastructure +459076,International Trade,International Trade +458297,International Trade,International Trade +434870,International Trade,International Trade +484274,Regional Development,Regional Development +512111,Taxation and Finance,Taxation and Finance +509836,Taxation and Finance,Taxation and Finance +180385,Taxation and Finance,Taxation and Finance +198067,Taxation and Finance,Taxation and Finance +188598,Taxation and Finance,Taxation and Finance +188596,Taxation and Finance,Taxation and Finance +423641,Taxation and Finance,Taxation and Finance +352260,Taxation and Finance,Taxation and Finance +347132,Taxation and Finance,Taxation and Finance +338686,Taxation and Finance,Taxation and Finance +330484,Taxation and Finance,Taxation and Finance +458297,Taxation and Finance,Taxation and Finance +453985,Taxation and Finance,Taxation and Finance +449180,Taxation and Finance,Taxation and Finance +437089,Taxation and Finance,Taxation and Finance +437085,Taxation and Finance,Taxation and Finance +434872,Taxation and Finance,Taxation and Finance +433476,Taxation and Finance,Taxation and Finance +433325,Taxation and Finance,Taxation and Finance +530635,Taxation and Finance,Taxation and Finance +254709,Environment,Environment +110215,Employment and Training,Employment and Training +110214,Employment and Training,Employment and Training +84395,Health,Health +77767,Health,Health +115176,Health,Health +115174,Health,Health +86476,Health,Health +110214,Justice and Law Enforcement,Justice and Law Enforcement +102994,Justice and Law Enforcement,Justice and Law Enforcement +115179,Justice and Law Enforcement,Justice and Law Enforcement +115178,Justice and Law Enforcement,Justice and Law Enforcement +115177,Justice and Law Enforcement,Justice and Law Enforcement +115176,Justice and Law Enforcement,Justice and Law Enforcement +115174,Justice and Law Enforcement,Justice and Law Enforcement +77478,Health,Health +379772,Health,Health +384442,Defence,Defence +384441,Defence,Defence +384442,Government Procurement,Government Procurement +384441,Government Procurement,Government Procurement +356180,Government Procurement,Government Procurement +396344,Government Procurement,Government Procurement +396342,Government Procurement,Government Procurement +378927,Agriculture,Agriculture +378926,Agriculture,Agriculture +76401,Agriculture,Agriculture +173528,Agriculture,Agriculture +167824,Agriculture,Agriculture +162490,Agriculture,Agriculture +162483,Agriculture,Agriculture +358563,Agriculture,Agriculture +358562,Agriculture,Agriculture +355401,Agriculture,Agriculture +355400,Agriculture,Agriculture +354820,Agriculture,Agriculture +354547,Agriculture,Agriculture +353107,Agriculture,Agriculture +353105,Agriculture,Agriculture +353104,Agriculture,Agriculture +353103,Agriculture,Agriculture +352590,Agriculture,Agriculture +352589,Agriculture,Agriculture +352587,Agriculture,Agriculture +348865,Agriculture,Agriculture +348817,Agriculture,Agriculture +348816,Agriculture,Agriculture +348815,Agriculture,Agriculture +348814,Agriculture,Agriculture +348813,Agriculture,Agriculture +348812,Agriculture,Agriculture +348811,Agriculture,Agriculture +348810,Agriculture,Agriculture +348809,Agriculture,Agriculture +348794,Agriculture,Agriculture +348793,Agriculture,Agriculture +348792,Agriculture,Agriculture +348791,Agriculture,Agriculture +348782,Agriculture,Agriculture +348781,Agriculture,Agriculture +338058,Agriculture,Agriculture +338056,Agriculture,Agriculture +338054,Agriculture,Agriculture +338052,Agriculture,Agriculture +338050,Agriculture,Agriculture +338048,Agriculture,Agriculture +338044,Agriculture,Agriculture +337840,Agriculture,Agriculture +331451,Agriculture,Agriculture +324939,Agriculture,Agriculture +324938,Agriculture,Agriculture +324937,Agriculture,Agriculture +324936,Agriculture,Agriculture +324935,Agriculture,Agriculture +324933,Agriculture,Agriculture +324929,Agriculture,Agriculture +420695,Agriculture,Agriculture +419380,Agriculture,Agriculture +383696,Agriculture,Agriculture +381101,Agriculture,Agriculture +378962,Agriculture,Agriculture +378959,Agriculture,Agriculture +378957,Agriculture,Agriculture +378954,Agriculture,Agriculture +378932,Agriculture,Agriculture +319229,Consumer Issues,Consumer Issues +304058,Consumer Issues,Consumer Issues +358563,Consumer Issues,Consumer Issues +358562,Consumer Issues,Consumer Issues +355401,Consumer Issues,Consumer Issues +355400,Consumer Issues,Consumer Issues +354820,Consumer Issues,Consumer Issues +354547,Consumer Issues,Consumer Issues +353107,Consumer Issues,Consumer Issues +353105,Consumer Issues,Consumer Issues +353104,Consumer Issues,Consumer Issues +353103,Consumer Issues,Consumer Issues +352590,Consumer Issues,Consumer Issues +352589,Consumer Issues,Consumer Issues +352587,Consumer Issues,Consumer Issues +350244,Consumer Issues,Consumer Issues +349840,Consumer Issues,Consumer Issues +348865,Consumer Issues,Consumer Issues +348817,Consumer Issues,Consumer Issues +348816,Consumer Issues,Consumer Issues +348815,Consumer Issues,Consumer Issues +348814,Consumer Issues,Consumer Issues +348813,Consumer Issues,Consumer Issues +348812,Consumer Issues,Consumer Issues +348811,Consumer Issues,Consumer Issues +348810,Consumer Issues,Consumer Issues +348809,Consumer Issues,Consumer Issues +348794,Consumer Issues,Consumer Issues +348793,Consumer Issues,Consumer Issues +348792,Consumer Issues,Consumer Issues +348791,Consumer Issues,Consumer Issues +348782,Consumer Issues,Consumer Issues +348781,Consumer Issues,Consumer Issues +347885,Consumer Issues,Consumer Issues +347884,Consumer Issues,Consumer Issues +347881,Consumer Issues,Consumer Issues +338058,Consumer Issues,Consumer Issues +338056,Consumer Issues,Consumer Issues +338050,Consumer Issues,Consumer Issues +338048,Consumer Issues,Consumer Issues +338044,Consumer Issues,Consumer Issues +337840,Consumer Issues,Consumer Issues +335905,Consumer Issues,Consumer Issues +335897,Consumer Issues,Consumer Issues +331451,Consumer Issues,Consumer Issues +324939,Consumer Issues,Consumer Issues +324938,Consumer Issues,Consumer Issues +324937,Consumer Issues,Consumer Issues +324936,Consumer Issues,Consumer Issues +324935,Consumer Issues,Consumer Issues +324929,Consumer Issues,Consumer Issues +378927,Energy,Energy +378926,Energy,Energy +162483,Energy,Energy +162480,Energy,Energy +162474,Energy,Energy +162463,Energy,Energy +162441,Energy,Energy +159771,Energy,Energy +159768,Energy,Energy +159765,Energy,Energy +159764,Energy,Energy +159762,Energy,Energy +159760,Energy,Energy +159758,Energy,Energy +159752,Energy,Energy +157069,Energy,Energy +157065,Energy,Energy +157063,Energy,Energy +154637,Energy,Energy +153417,Energy,Energy +148027,Energy,Energy +145620,Energy,Energy +236851,Energy,Energy +233497,Energy,Energy +230251,Energy,Energy +230250,Energy,Energy +230249,Energy,Energy +226940,Energy,Energy +175480,Energy,Energy +173529,Energy,Energy +173528,Energy,Energy +173527,Energy,Energy +167824,Energy,Energy +165798,Energy,Energy +165797,Energy,Energy +162492,Energy,Energy +162490,Energy,Energy +358563,Energy,Energy +358562,Energy,Energy +355401,Energy,Energy +355400,Energy,Energy +354820,Energy,Energy +354547,Energy,Energy +353107,Energy,Energy +353105,Energy,Energy +353104,Energy,Energy +353103,Energy,Energy +352590,Energy,Energy +352589,Energy,Energy +352587,Energy,Energy +350244,Energy,Energy +349840,Energy,Energy +348865,Energy,Energy +348817,Energy,Energy +348816,Energy,Energy +348815,Energy,Energy +348814,Energy,Energy +348813,Energy,Energy +348812,Energy,Energy +348811,Energy,Energy +348810,Energy,Energy +348809,Energy,Energy +348794,Energy,Energy +348793,Energy,Energy +348792,Energy,Energy +348791,Energy,Energy +348782,Energy,Energy +348781,Energy,Energy +347885,Energy,Energy +347884,Energy,Energy +347881,Energy,Energy +338058,Energy,Energy +338056,Energy,Energy +338054,Energy,Energy +338052,Energy,Energy +338050,Energy,Energy +338048,Energy,Energy +338044,Energy,Energy +337840,Energy,Energy +335905,Energy,Energy +335903,Energy,Energy +335897,Energy,Energy +335894,Energy,Energy +331451,Energy,Energy +331450,Energy,Energy +329985,Energy,Energy +329984,Energy,Energy +327496,Energy,Energy +324939,Energy,Energy +324938,Energy,Energy +324937,Energy,Energy +324936,Energy,Energy +324935,Energy,Energy +324933,Energy,Energy +324929,Energy,Energy +319234,Energy,Energy +319229,Energy,Energy +319224,Energy,Energy +304058,Energy,Energy +290849,Energy,Energy +290833,Energy,Energy +290832,Energy,Energy +289309,Energy,Energy +281086,Energy,Energy +281083,Energy,Energy +281081,Energy,Energy +281077,Energy,Energy +281073,Energy,Energy +277460,Energy,Energy +277457,Energy,Energy +277454,Energy,Energy +273361,Energy,Energy +273360,Energy,Energy +273357,Energy,Energy +273356,Energy,Energy +273355,Energy,Energy +273354,Energy,Energy +273345,Energy,Energy +273344,Energy,Energy +273343,Energy,Energy +273342,Energy,Energy +273340,Energy,Energy +273339,Energy,Energy +273337,Energy,Energy +269604,Energy,Energy +268798,Energy,Energy +268797,Energy,Energy +268796,Energy,Energy +268795,Energy,Energy +268794,Energy,Energy +268793,Energy,Energy +268792,Energy,Energy +268791,Energy,Energy +263754,Energy,Energy +263753,Energy,Energy +263752,Energy,Energy +260938,Energy,Energy +260937,Energy,Energy +260936,Energy,Energy +260935,Energy,Energy +260934,Energy,Energy +260933,Energy,Energy +260931,Energy,Energy +259211,Energy,Energy +253983,Energy,Energy +253131,Energy,Energy +250782,Energy,Energy +250779,Energy,Energy +245091,Energy,Energy +420695,Energy,Energy +383696,Energy,Energy +381101,Energy,Energy +381095,Energy,Energy +378962,Energy,Energy +378959,Energy,Energy +378957,Energy,Energy +378954,Energy,Energy +378932,Energy,Energy +319234,Environment,Environment +319229,Environment,Environment +145620,Environment,Environment +175480,Environment,Environment +173529,Environment,Environment +167824,Environment,Environment +165798,Environment,Environment +162492,Environment,Environment +162490,Environment,Environment +162483,Environment,Environment +162480,Environment,Environment +162474,Environment,Environment +162463,Environment,Environment +162441,Environment,Environment +159771,Environment,Environment +159768,Environment,Environment +159760,Environment,Environment +154638,Environment,Environment +154637,Environment,Environment +319224,Environment,Environment +313045,Environment,Environment +310389,Environment,Environment +304066,Environment,Environment +304054,Environment,Environment +304052,Environment,Environment +290849,Environment,Environment +289309,Environment,Environment +281086,Environment,Environment +281083,Environment,Environment +281081,Environment,Environment +281077,Environment,Environment +281073,Environment,Environment +277460,Environment,Environment +277457,Environment,Environment +277454,Environment,Environment +273361,Environment,Environment +273360,Environment,Environment +273357,Environment,Environment +273356,Environment,Environment +273355,Environment,Environment +273354,Environment,Environment +273345,Environment,Environment +273344,Environment,Environment +273343,Environment,Environment +273342,Environment,Environment +273340,Environment,Environment +273339,Environment,Environment +273337,Environment,Environment +269604,Environment,Environment +268798,Environment,Environment +268797,Environment,Environment +268796,Environment,Environment +268795,Environment,Environment +268794,Environment,Environment +268793,Environment,Environment +268792,Environment,Environment +268791,Environment,Environment +263754,Environment,Environment +263753,Environment,Environment +263752,Environment,Environment +260938,Environment,Environment +260937,Environment,Environment +260936,Environment,Environment +260935,Environment,Environment +260934,Environment,Environment +260933,Environment,Environment +260931,Environment,Environment +259211,Environment,Environment +253983,Environment,Environment +253131,Environment,Environment +250782,Environment,Environment +250779,Environment,Environment +245091,Environment,Environment +236851,Environment,Environment +233497,Environment,Environment +230251,Environment,Environment +230250,Environment,Environment +230249,Environment,Environment +226940,Environment,Environment +420695,Environment,Environment +419380,Environment,Environment +390376,Environment,Environment +390231,Environment,Environment +390229,Environment,Environment +390227,Environment,Environment +390222,Environment,Environment +388744,Environment,Environment +388743,Environment,Environment +383696,Environment,Environment +381101,Environment,Environment +381095,Environment,Environment +378962,Environment,Environment +378959,Environment,Environment +378957,Environment,Environment +378954,Environment,Environment +378932,Environment,Environment +378928,Environment,Environment +378927,Environment,Environment +378926,Environment,Environment +358563,Environment,Environment +358562,Environment,Environment +355401,Environment,Environment +355400,Environment,Environment +354820,Environment,Environment +354547,Environment,Environment +353107,Environment,Environment +353105,Environment,Environment +353104,Environment,Environment +353103,Environment,Environment +352590,Environment,Environment +352589,Environment,Environment +352587,Environment,Environment +350244,Environment,Environment +349840,Environment,Environment +348865,Environment,Environment +348817,Environment,Environment +348816,Environment,Environment +348815,Environment,Environment +348814,Environment,Environment +348813,Environment,Environment +348812,Environment,Environment +348811,Environment,Environment +348810,Environment,Environment +348809,Environment,Environment +348794,Environment,Environment +348793,Environment,Environment +348792,Environment,Environment +348791,Environment,Environment +348782,Environment,Environment +348781,Environment,Environment +347885,Environment,Environment +347884,Environment,Environment +347881,Environment,Environment +338058,Environment,Environment +338056,Environment,Environment +338054,Environment,Environment +338052,Environment,Environment +338050,Environment,Environment +338048,Environment,Environment +338044,Environment,Environment +337840,Environment,Environment +335905,Environment,Environment +335903,Environment,Environment +335897,Environment,Environment +335894,Environment,Environment +331451,Environment,Environment +331450,Environment,Environment +329985,Environment,Environment +329984,Environment,Environment +327496,Environment,Environment +324939,Environment,Environment +324938,Environment,Environment +324937,Environment,Environment +324936,Environment,Environment +324935,Environment,Environment +324933,Environment,Environment +352589,Financial Institutions,Financial Institutions +352587,Financial Institutions,Financial Institutions +335897,Forestry,Forestry +329984,Forestry,Forestry +157063,Forestry,Forestry +352589,Forestry,Forestry +338054,Forestry,Forestry +335903,Health,Health +335897,Health,Health +353107,Health,Health +353105,Health,Health +353104,Health,Health +353103,Health,Health +352589,Health,Health +348865,Health,Health +348817,Health,Health +348816,Health,Health +348815,Health,Health +348814,Health,Health +348813,Health,Health +348812,Health,Health +348811,Health,Health +348810,Health,Health +348809,Health,Health +348794,Health,Health +348793,Health,Health +348792,Health,Health +348791,Health,Health +348782,Health,Health +348781,Health,Health +347885,Health,Health +347884,Health,Health +347881,Health,Health +338058,Health,Health +338056,Health,Health +338050,Health,Health +338048,Health,Health +338044,Health,Health +337840,Health,Health +378926,Industry,Industry +420695,Industry,Industry +296744,Industry,Industry +355401,Industry,Industry +354820,Industry,Industry +354547,Industry,Industry +353107,Industry,Industry +353105,Industry,Industry +353104,Industry,Industry +353103,Industry,Industry +352590,Industry,Industry +352589,Industry,Industry +352587,Industry,Industry +350244,Industry,Industry +349840,Industry,Industry +348865,Industry,Industry +348817,Industry,Industry +348816,Industry,Industry +348815,Industry,Industry +348814,Industry,Industry +348813,Industry,Industry +348812,Industry,Industry +348811,Industry,Industry +348810,Industry,Industry +348809,Industry,Industry +348794,Industry,Industry +348793,Industry,Industry +348792,Industry,Industry +348791,Industry,Industry +348782,Industry,Industry +348781,Industry,Industry +347885,Industry,Industry +347884,Industry,Industry +347881,Industry,Industry +338058,Industry,Industry +338056,Industry,Industry +338050,Industry,Industry +338048,Industry,Industry +338044,Industry,Industry +337840,Industry,Industry +335905,Industry,Industry +335897,Industry,Industry +335894,Industry,Industry +331451,Industry,Industry +331450,Industry,Industry +329985,Industry,Industry +329984,Industry,Industry +327496,Industry,Industry +324939,Industry,Industry +324938,Industry,Industry +324935,Industry,Industry +324933,Industry,Industry +324929,Industry,Industry +313045,Industry,Industry +310389,Industry,Industry +304066,Industry,Industry +304061,Industry,Industry +304060,Industry,Industry +383696,Industry,Industry +381095,Industry,Industry +378962,Industry,Industry +378959,Industry,Industry +378957,Industry,Industry +378954,Industry,Industry +378932,Industry,Industry +378928,Industry,Industry +304060,International Trade,International Trade +296750,International Trade,International Trade +388744,International Trade,International Trade +378962,International Trade,International Trade +378959,International Trade,International Trade +378957,International Trade,International Trade +378954,International Trade,International Trade +378932,International Trade,International Trade +378928,International Trade,International Trade +378927,International Trade,International Trade +378926,International Trade,International Trade +355401,International Trade,International Trade +313045,International Trade,International Trade +310389,International Trade,International Trade +304066,International Trade,International Trade +347884,Regional Development,Regional Development +347881,Regional Development,Regional Development +162492,Regional Development,Regional Development +162474,Regional Development,Regional Development +162463,Regional Development,Regional Development +162441,Regional Development,Regional Development +159771,Regional Development,Regional Development +338058,Regional Development,Regional Development +338056,Regional Development,Regional Development +338050,Regional Development,Regional Development +338048,Regional Development,Regional Development +338044,Regional Development,Regional Development +337840,Regional Development,Regional Development +331451,Regional Development,Regional Development +327496,Regional Development,Regional Development +324939,Regional Development,Regional Development +324938,Regional Development,Regional Development +324937,Regional Development,Regional Development +324933,Regional Development,Regional Development +304058,Regional Development,Regional Development +296744,Regional Development,Regional Development +358563,Regional Development,Regional Development +355400,Regional Development,Regional Development +354820,Regional Development,Regional Development +354547,Regional Development,Regional Development +353107,Regional Development,Regional Development +353105,Regional Development,Regional Development +353104,Regional Development,Regional Development +353103,Regional Development,Regional Development +352590,Regional Development,Regional Development +352589,Regional Development,Regional Development +352587,Regional Development,Regional Development +350244,Regional Development,Regional Development +349840,Regional Development,Regional Development +348865,Regional Development,Regional Development +348817,Regional Development,Regional Development +348816,Regional Development,Regional Development +348815,Regional Development,Regional Development +348814,Regional Development,Regional Development +348813,Regional Development,Regional Development +348812,Regional Development,Regional Development +348811,Regional Development,Regional Development +348810,Regional Development,Regional Development +348809,Regional Development,Regional Development +348794,Regional Development,Regional Development +348793,Regional Development,Regional Development +348792,Regional Development,Regional Development +348791,Regional Development,Regional Development +348782,Regional Development,Regional Development +348781,Regional Development,Regional Development +347881,Taxation and Finance,Taxation and Finance +338058,Taxation and Finance,Taxation and Finance +165797,Taxation and Finance,Taxation and Finance +338056,Taxation and Finance,Taxation and Finance +338054,Taxation and Finance,Taxation and Finance +338052,Taxation and Finance,Taxation and Finance +338050,Taxation and Finance,Taxation and Finance +338048,Taxation and Finance,Taxation and Finance +338044,Taxation and Finance,Taxation and Finance +337840,Taxation and Finance,Taxation and Finance +335905,Taxation and Finance,Taxation and Finance +335903,Taxation and Finance,Taxation and Finance +335897,Taxation and Finance,Taxation and Finance +335894,Taxation and Finance,Taxation and Finance +331451,Taxation and Finance,Taxation and Finance +329985,Taxation and Finance,Taxation and Finance +329984,Taxation and Finance,Taxation and Finance +327496,Taxation and Finance,Taxation and Finance +324939,Taxation and Finance,Taxation and Finance +324938,Taxation and Finance,Taxation and Finance +324937,Taxation and Finance,Taxation and Finance +324936,Taxation and Finance,Taxation and Finance +324935,Taxation and Finance,Taxation and Finance +324933,Taxation and Finance,Taxation and Finance +324929,Taxation and Finance,Taxation and Finance +319229,Taxation and Finance,Taxation and Finance +319224,Taxation and Finance,Taxation and Finance +313047,Taxation and Finance,Taxation and Finance +313045,Taxation and Finance,Taxation and Finance +304061,Taxation and Finance,Taxation and Finance +304060,Taxation and Finance,Taxation and Finance +304058,Taxation and Finance,Taxation and Finance +296749,Taxation and Finance,Taxation and Finance +290849,Taxation and Finance,Taxation and Finance +253131,Taxation and Finance,Taxation and Finance +250779,Taxation and Finance,Taxation and Finance +358563,Taxation and Finance,Taxation and Finance +355401,Taxation and Finance,Taxation and Finance +354820,Taxation and Finance,Taxation and Finance +354547,Taxation and Finance,Taxation and Finance +353107,Taxation and Finance,Taxation and Finance +353105,Taxation and Finance,Taxation and Finance +353104,Taxation and Finance,Taxation and Finance +353103,Taxation and Finance,Taxation and Finance +352590,Taxation and Finance,Taxation and Finance +352589,Taxation and Finance,Taxation and Finance +352587,Taxation and Finance,Taxation and Finance +350244,Taxation and Finance,Taxation and Finance +349840,Taxation and Finance,Taxation and Finance +348865,Taxation and Finance,Taxation and Finance +348817,Taxation and Finance,Taxation and Finance +348816,Taxation and Finance,Taxation and Finance +348815,Taxation and Finance,Taxation and Finance +348814,Taxation and Finance,Taxation and Finance +348813,Taxation and Finance,Taxation and Finance +348812,Taxation and Finance,Taxation and Finance +348811,Taxation and Finance,Taxation and Finance +348810,Taxation and Finance,Taxation and Finance +348809,Taxation and Finance,Taxation and Finance +348794,Taxation and Finance,Taxation and Finance +348793,Taxation and Finance,Taxation and Finance +348792,Taxation and Finance,Taxation and Finance +348791,Taxation and Finance,Taxation and Finance +348782,Taxation and Finance,Taxation and Finance +348781,Taxation and Finance,Taxation and Finance +347885,Taxation and Finance,Taxation and Finance +378927,Transportation,Transportation +378926,Transportation,Transportation +324933,Transportation,Transportation +324929,Transportation,Transportation +319229,Transportation,Transportation +319224,Transportation,Transportation +358563,Transportation,Transportation +358562,Transportation,Transportation +355401,Transportation,Transportation +355400,Transportation,Transportation +354820,Transportation,Transportation +354547,Transportation,Transportation +353107,Transportation,Transportation +353105,Transportation,Transportation +353104,Transportation,Transportation +353103,Transportation,Transportation +352590,Transportation,Transportation +352589,Transportation,Transportation +352587,Transportation,Transportation +350244,Transportation,Transportation +349840,Transportation,Transportation +348865,Transportation,Transportation +348817,Transportation,Transportation +348816,Transportation,Transportation +348815,Transportation,Transportation +348814,Transportation,Transportation +348813,Transportation,Transportation +348812,Transportation,Transportation +348811,Transportation,Transportation +348810,Transportation,Transportation +348809,Transportation,Transportation +348794,Transportation,Transportation +348793,Transportation,Transportation +348792,Transportation,Transportation +348791,Transportation,Transportation +348782,Transportation,Transportation +348781,Transportation,Transportation +347885,Transportation,Transportation +347884,Transportation,Transportation +347881,Transportation,Transportation +338058,Transportation,Transportation +338056,Transportation,Transportation +338054,Transportation,Transportation +338052,Transportation,Transportation +338050,Transportation,Transportation +338048,Transportation,Transportation +338044,Transportation,Transportation +337840,Transportation,Transportation +335905,Transportation,Transportation +335903,Transportation,Transportation +335902,Transportation,Transportation +335897,Transportation,Transportation +331451,Transportation,Transportation +331450,Transportation,Transportation +329985,Transportation,Transportation +329984,Transportation,Transportation +327496,Transportation,Transportation +324937,Transportation,Transportation +383696,Transportation,Transportation +381095,Transportation,Transportation +378962,Transportation,Transportation +378959,Transportation,Transportation +378957,Transportation,Transportation +378954,Transportation,Transportation +378932,Transportation,Transportation +386127,Industry,Industry +511270,Industry,Industry +90591,Industry,Industry +88398,Industry,Industry +88397,Industry,Industry +84913,Industry,Industry +84911,Industry,Industry +101331,Industry,Industry +101325,Industry,Industry +90592,Industry,Industry +101634,Industry,Industry +101332,Industry,Industry +163858,Industry,Industry +154884,Industry,Industry +150348,Industry,Industry +502277,Industry,Industry +502196,Industry,Industry +432162,Industry,Industry +430801,Industry,Industry +409672,Industry,Industry +397363,Industry,Industry +518834,International Trade,International Trade +464836,International Trade,International Trade +451321,International Trade,International Trade +437359,International Trade,International Trade +435219,International Trade,International Trade +433742,International Trade,International Trade +432162,International Trade,International Trade +430807,International Trade,International Trade +428980,International Trade,International Trade +428977,International Trade,International Trade +426463,International Trade,International Trade +426459,International Trade,International Trade +426457,International Trade,International Trade +426456,International Trade,International Trade +426453,International Trade,International Trade +426451,International Trade,International Trade +417779,International Trade,International Trade +411254,International Trade,International Trade +409674,International Trade,International Trade +409672,International Trade,International Trade +387680,Taxation and Finance,Taxation and Finance +518834,Taxation and Finance,Taxation and Finance +153492,Taxation and Finance,Taxation and Finance +440798,Taxation and Finance,Taxation and Finance +440797,Taxation and Finance,Taxation and Finance +326533,Health,Health +77183,Consumer Issues,Consumer Issues +77182,Consumer Issues,Consumer Issues +469703,Employment and Training,Employment and Training +459977,Employment and Training,Employment and Training +175386,Employment and Training,Employment and Training +170205,Employment and Training,Employment and Training +170204,Employment and Training,Employment and Training +165816,Employment and Training,Employment and Training +163533,Employment and Training,Employment and Training +163532,Employment and Training,Employment and Training +162187,Employment and Training,Employment and Training +162184,Employment and Training,Employment and Training +161865,Employment and Training,Employment and Training +161862,Employment and Training,Employment and Training +161852,Employment and Training,Employment and Training +161849,Employment and Training,Employment and Training +398334,Employment and Training,Employment and Training +541279,Employment and Training,Employment and Training +533806,Employment and Training,Employment and Training +517293,Employment and Training,Employment and Training +513824,Employment and Training,Employment and Training +513823,Employment and Training,Employment and Training +513822,Employment and Training,Employment and Training +513821,Employment and Training,Employment and Training +513819,Employment and Training,Employment and Training +512427,Employment and Training,Employment and Training +510106,Employment and Training,Employment and Training +510105,Employment and Training,Employment and Training +507417,Employment and Training,Employment and Training +504047,Employment and Training,Employment and Training +504035,Employment and Training,Employment and Training +504025,Employment and Training,Employment and Training +504021,Employment and Training,Employment and Training +501120,Employment and Training,Employment and Training +501118,Employment and Training,Employment and Training +501117,Employment and Training,Employment and Training +501115,Employment and Training,Employment and Training +501114,Employment and Training,Employment and Training +501112,Employment and Training,Employment and Training +501109,Employment and Training,Employment and Training +497800,Employment and Training,Employment and Training +497795,Employment and Training,Employment and Training +497794,Employment and Training,Employment and Training +497792,Employment and Training,Employment and Training +497791,Employment and Training,Employment and Training +497789,Employment and Training,Employment and Training +497775,Employment and Training,Employment and Training +497774,Employment and Training,Employment and Training +497773,Employment and Training,Employment and Training +497772,Employment and Training,Employment and Training +497771,Employment and Training,Employment and Training +497770,Employment and Training,Employment and Training +497426,Employment and Training,Employment and Training +495158,Employment and Training,Employment and Training +495157,Employment and Training,Employment and Training +495155,Employment and Training,Employment and Training +493053,Employment and Training,Employment and Training +493046,Employment and Training,Employment and Training +490363,Employment and Training,Employment and Training +490358,Employment and Training,Employment and Training +490357,Employment and Training,Employment and Training +490351,Employment and Training,Employment and Training +490349,Employment and Training,Employment and Training +490348,Employment and Training,Employment and Training +490346,Employment and Training,Employment and Training +490345,Employment and Training,Employment and Training +490343,Employment and Training,Employment and Training +486853,Employment and Training,Employment and Training +486852,Employment and Training,Employment and Training +486850,Employment and Training,Employment and Training +486847,Employment and Training,Employment and Training +486846,Employment and Training,Employment and Training +486845,Employment and Training,Employment and Training +486843,Employment and Training,Employment and Training +486842,Employment and Training,Employment and Training +486839,Employment and Training,Employment and Training +486837,Employment and Training,Employment and Training +486836,Employment and Training,Employment and Training +486834,Employment and Training,Employment and Training +484437,Employment and Training,Employment and Training +484436,Employment and Training,Employment and Training +484435,Employment and Training,Employment and Training +484434,Employment and Training,Employment and Training +484433,Employment and Training,Employment and Training +484431,Employment and Training,Employment and Training +484429,Employment and Training,Employment and Training +484427,Employment and Training,Employment and Training +484426,Employment and Training,Employment and Training +484424,Employment and Training,Employment and Training +484414,Employment and Training,Employment and Training +481540,Employment and Training,Employment and Training +477461,Employment and Training,Employment and Training +474899,Employment and Training,Employment and Training +474898,Employment and Training,Employment and Training +470365,Employment and Training,Employment and Training +470363,Employment and Training,Employment and Training +470360,Employment and Training,Employment and Training +470356,Employment and Training,Employment and Training +470351,Employment and Training,Employment and Training +470347,Employment and Training,Employment and Training +470343,Employment and Training,Employment and Training +470298,Employment and Training,Employment and Training +108996,Environment,Environment +472903,Health,Health +472901,Health,Health +77188,Health,Health +77186,Health,Health +77184,Health,Health +77183,Health,Health +77182,Health,Health +80940,Health,Health +80938,Health,Health +148736,Health,Health +143854,Health,Health +143837,Health,Health +188740,Health,Health +188739,Health,Health +177326,Health,Health +177325,Health,Health +175389,Health,Health +175386,Health,Health +174765,Health,Health +173530,Health,Health +173471,Health,Health +170205,Health,Health +169940,Health,Health +167037,Health,Health +165816,Health,Health +163616,Health,Health +163533,Health,Health +163532,Health,Health +163325,Health,Health +163266,Health,Health +163265,Health,Health +162187,Health,Health +162184,Health,Health +161881,Health,Health +161876,Health,Health +161873,Health,Health +161868,Health,Health +161865,Health,Health +161862,Health,Health +161852,Health,Health +161849,Health,Health +249409,Health,Health +246071,Health,Health +240531,Health,Health +240529,Health,Health +236848,Health,Health +236847,Health,Health +236846,Health,Health +236845,Health,Health +233496,Health,Health +233494,Health,Health +230367,Health,Health +229529,Health,Health +226325,Health,Health +226320,Health,Health +226318,Health,Health +226276,Health,Health +226271,Health,Health +223367,Health,Health +223366,Health,Health +223028,Health,Health +223027,Health,Health +223010,Health,Health +223009,Health,Health +218847,Health,Health +218828,Health,Health +218827,Health,Health +216472,Health,Health +216471,Health,Health +216469,Health,Health +216467,Health,Health +216456,Health,Health +216453,Health,Health +216449,Health,Health +211919,Health,Health +211917,Health,Health +211916,Health,Health +211914,Health,Health +211912,Health,Health +205467,Health,Health +202475,Health,Health +202473,Health,Health +202470,Health,Health +200157,Health,Health +200155,Health,Health +197443,Health,Health +398405,Health,Health +398403,Health,Health +398334,Health,Health +398331,Health,Health +398327,Health,Health +398306,Health,Health +398305,Health,Health +398304,Health,Health +397255,Health,Health +397254,Health,Health +397252,Health,Health +395789,Health,Health +395607,Health,Health +395606,Health,Health +395604,Health,Health +395602,Health,Health +393870,Health,Health +393869,Health,Health +393867,Health,Health +393752,Health,Health +393748,Health,Health +392207,Health,Health +392204,Health,Health +392200,Health,Health +392198,Health,Health +392070,Health,Health +392069,Health,Health +392068,Health,Health +392067,Health,Health +392066,Health,Health +392065,Health,Health +390036,Health,Health +389856,Health,Health +389854,Health,Health +389853,Health,Health +389852,Health,Health +389849,Health,Health +389848,Health,Health +389847,Health,Health +389842,Health,Health +389837,Health,Health +389827,Health,Health +387271,Health,Health +387270,Health,Health +387269,Health,Health +387268,Health,Health +387267,Health,Health +387264,Health,Health +387248,Health,Health +387245,Health,Health +387243,Health,Health +387241,Health,Health +387239,Health,Health +387236,Health,Health +387235,Health,Health +387231,Health,Health +387229,Health,Health +387228,Health,Health +387227,Health,Health +384815,Health,Health +384813,Health,Health +384809,Health,Health +384808,Health,Health +384807,Health,Health +384806,Health,Health +384761,Health,Health +384756,Health,Health +384755,Health,Health +384754,Health,Health +384747,Health,Health +384744,Health,Health +384740,Health,Health +384737,Health,Health +384735,Health,Health +384734,Health,Health +384733,Health,Health +384731,Health,Health +384728,Health,Health +383281,Health,Health +383280,Health,Health +383279,Health,Health +383278,Health,Health +383277,Health,Health +383276,Health,Health +383270,Health,Health +382143,Health,Health +380891,Health,Health +380890,Health,Health +380889,Health,Health +380887,Health,Health +380885,Health,Health +378849,Health,Health +378716,Health,Health +378715,Health,Health +378714,Health,Health +378713,Health,Health +378712,Health,Health +378710,Health,Health +378708,Health,Health +378707,Health,Health +378597,Health,Health +378595,Health,Health +378594,Health,Health +378591,Health,Health +374090,Health,Health +374089,Health,Health +374086,Health,Health +371357,Health,Health +371356,Health,Health +371349,Health,Health +371302,Health,Health +368897,Health,Health +368896,Health,Health +368404,Health,Health +368403,Health,Health +368400,Health,Health +368396,Health,Health +368395,Health,Health +368394,Health,Health +366406,Health,Health +359594,Health,Health +358863,Health,Health +358862,Health,Health +357729,Health,Health +357728,Health,Health +356243,Health,Health +356238,Health,Health +356236,Health,Health +356235,Health,Health +353597,Health,Health +353589,Health,Health +353588,Health,Health +353585,Health,Health +353584,Health,Health +353582,Health,Health +353574,Health,Health +350989,Health,Health +350988,Health,Health +350987,Health,Health +350813,Health,Health +350812,Health,Health +350810,Health,Health +350809,Health,Health +350560,Health,Health +350531,Health,Health +350530,Health,Health +346858,Health,Health +346768,Health,Health +346767,Health,Health +340592,Health,Health +340590,Health,Health +338084,Health,Health +335161,Health,Health +335156,Health,Health +335144,Health,Health +333092,Health,Health +333091,Health,Health +333090,Health,Health +333089,Health,Health +331126,Health,Health +329809,Health,Health +328012,Health,Health +326871,Health,Health +326870,Health,Health +325496,Health,Health +324089,Health,Health +318438,Health,Health +315745,Health,Health +315742,Health,Health +315740,Health,Health +315739,Health,Health +315738,Health,Health +312924,Health,Health +312909,Health,Health +309867,Health,Health +302209,Health,Health +302189,Health,Health +294930,Health,Health +470370,Health,Health +470365,Health,Health +470363,Health,Health +470360,Health,Health +470356,Health,Health +470351,Health,Health +470347,Health,Health +470343,Health,Health +470298,Health,Health +468681,Health,Health +466033,Health,Health +466030,Health,Health +466029,Health,Health +466028,Health,Health +466027,Health,Health +466026,Health,Health +466025,Health,Health +466023,Health,Health +464212,Health,Health +464211,Health,Health +462428,Health,Health +462427,Health,Health +462395,Health,Health +461484,Health,Health +460391,Health,Health +459977,Health,Health +459456,Health,Health +458214,Health,Health +458208,Health,Health +456949,Health,Health +456948,Health,Health +456947,Health,Health +456946,Health,Health +455127,Health,Health +455124,Health,Health +455061,Health,Health +455055,Health,Health +455051,Health,Health +455045,Health,Health +455041,Health,Health +455040,Health,Health +455039,Health,Health +455036,Health,Health +451758,Health,Health +451744,Health,Health +451742,Health,Health +451739,Health,Health +451736,Health,Health +449352,Health,Health +449345,Health,Health +449281,Health,Health +448692,Health,Health +448691,Health,Health +448690,Health,Health +448689,Health,Health +447240,Health,Health +447239,Health,Health +447237,Health,Health +447230,Health,Health +447222,Health,Health +446702,Health,Health +444968,Health,Health +444966,Health,Health +444965,Health,Health +444916,Health,Health +444915,Health,Health +444914,Health,Health +444913,Health,Health +444911,Health,Health +444910,Health,Health +444908,Health,Health +444907,Health,Health +443522,Health,Health +443407,Health,Health +443400,Health,Health +443396,Health,Health +443394,Health,Health +443393,Health,Health +443392,Health,Health +443388,Health,Health +443386,Health,Health +443379,Health,Health +443377,Health,Health +443376,Health,Health +443375,Health,Health +441143,Health,Health +441142,Health,Health +441141,Health,Health +441140,Health,Health +441139,Health,Health +441138,Health,Health +441137,Health,Health +441136,Health,Health +441135,Health,Health +441134,Health,Health +441133,Health,Health +441132,Health,Health +441131,Health,Health +441130,Health,Health +441129,Health,Health +441126,Health,Health +441120,Health,Health +438580,Health,Health +438578,Health,Health +438575,Health,Health +438572,Health,Health +438569,Health,Health +438560,Health,Health +438552,Health,Health +438547,Health,Health +438541,Health,Health +438537,Health,Health +438535,Health,Health +438533,Health,Health +438532,Health,Health +438528,Health,Health +438527,Health,Health +438525,Health,Health +438522,Health,Health +438521,Health,Health +438518,Health,Health +438517,Health,Health +438515,Health,Health +438486,Health,Health +438186,Health,Health +438184,Health,Health +438175,Health,Health +438174,Health,Health +438172,Health,Health +438171,Health,Health +438169,Health,Health +438167,Health,Health +438166,Health,Health +438165,Health,Health +438162,Health,Health +438138,Health,Health +434352,Health,Health +434348,Health,Health +434278,Health,Health +434277,Health,Health +434276,Health,Health +434275,Health,Health +434274,Health,Health +434273,Health,Health +434272,Health,Health +434271,Health,Health +434270,Health,Health +434266,Health,Health +434265,Health,Health +434264,Health,Health +434263,Health,Health +434262,Health,Health +434261,Health,Health +434260,Health,Health +434259,Health,Health +433397,Health,Health +433396,Health,Health +433395,Health,Health +433394,Health,Health +433393,Health,Health +430206,Health,Health +430200,Health,Health +430195,Health,Health +428016,Health,Health +428011,Health,Health +428009,Health,Health +426282,Health,Health +426279,Health,Health +426271,Health,Health +423523,Health,Health +423519,Health,Health +423517,Health,Health +423515,Health,Health +423513,Health,Health +423511,Health,Health +421584,Health,Health +421559,Health,Health +421556,Health,Health +421507,Health,Health +421505,Health,Health +421457,Health,Health +421455,Health,Health +421454,Health,Health +421452,Health,Health +419554,Health,Health +419332,Health,Health +417733,Health,Health +417732,Health,Health +417731,Health,Health +417730,Health,Health +417729,Health,Health +417727,Health,Health +415423,Health,Health +415422,Health,Health +415265,Health,Health +415250,Health,Health +415249,Health,Health +415247,Health,Health +415245,Health,Health +415244,Health,Health +415243,Health,Health +415242,Health,Health +412030,Health,Health +412027,Health,Health +412026,Health,Health +412025,Health,Health +409373,Health,Health +409058,Health,Health +409053,Health,Health +409049,Health,Health +409045,Health,Health +409044,Health,Health +404936,Health,Health +402710,Health,Health +402020,Health,Health +402016,Health,Health +402015,Health,Health +402013,Health,Health +402011,Health,Health +402009,Health,Health +402007,Health,Health +402000,Health,Health +400021,Health,Health +399981,Health,Health +399979,Health,Health +399977,Health,Health +399976,Health,Health +399975,Health,Health +399969,Health,Health +541277,Health,Health +539735,Health,Health +537739,Health,Health +537737,Health,Health +533810,Health,Health +533802,Health,Health +533800,Health,Health +533798,Health,Health +531277,Health,Health +531276,Health,Health +531275,Health,Health +528729,Health,Health +528728,Health,Health +528725,Health,Health +528723,Health,Health +528722,Health,Health +528721,Health,Health +528718,Health,Health +528716,Health,Health +528714,Health,Health +528710,Health,Health +528700,Health,Health +528693,Health,Health +525768,Health,Health +525759,Health,Health +525746,Health,Health +525743,Health,Health +525742,Health,Health +525739,Health,Health +525729,Health,Health +525724,Health,Health +525722,Health,Health +525718,Health,Health +525714,Health,Health +525710,Health,Health +525694,Health,Health +522036,Health,Health +522035,Health,Health +522034,Health,Health +522033,Health,Health +522031,Health,Health +522029,Health,Health +522028,Health,Health +519462,Health,Health +519460,Health,Health +517295,Health,Health +517294,Health,Health +517293,Health,Health +515341,Health,Health +515340,Health,Health +513826,Health,Health +513824,Health,Health +513823,Health,Health +513822,Health,Health +513819,Health,Health +513812,Health,Health +512427,Health,Health +512418,Health,Health +510110,Health,Health +510109,Health,Health +510108,Health,Health +507546,Health,Health +507412,Health,Health +504070,Health,Health +504042,Health,Health +504039,Health,Health +501118,Health,Health +501115,Health,Health +497795,Health,Health +497791,Health,Health +497775,Health,Health +497774,Health,Health +497773,Health,Health +497772,Health,Health +497771,Health,Health +495158,Health,Health +495157,Health,Health +495156,Health,Health +495155,Health,Health +493056,Health,Health +493054,Health,Health +493053,Health,Health +493052,Health,Health +493050,Health,Health +493046,Health,Health +493044,Health,Health +493043,Health,Health +493042,Health,Health +490369,Health,Health +490363,Health,Health +490361,Health,Health +490360,Health,Health +490358,Health,Health +490356,Health,Health +490354,Health,Health +490351,Health,Health +490348,Health,Health +490346,Health,Health +490345,Health,Health +490343,Health,Health +486853,Health,Health +486852,Health,Health +486850,Health,Health +486847,Health,Health +486846,Health,Health +486845,Health,Health +486843,Health,Health +486842,Health,Health +486839,Health,Health +486837,Health,Health +486836,Health,Health +486834,Health,Health +484437,Health,Health +484435,Health,Health +484434,Health,Health +484433,Health,Health +484431,Health,Health +484427,Health,Health +484426,Health,Health +484424,Health,Health +484414,Health,Health +481543,Health,Health +481542,Health,Health +481540,Health,Health +481539,Health,Health +479450,Health,Health +479448,Health,Health +479447,Health,Health +479446,Health,Health +479445,Health,Health +479444,Health,Health +477467,Health,Health +477466,Health,Health +477465,Health,Health +477464,Health,Health +477463,Health,Health +477462,Health,Health +477460,Health,Health +475028,Health,Health +474900,Health,Health +472927,Health,Health +472923,Health,Health +472920,Health,Health +472919,Health,Health +472914,Health,Health +472913,Health,Health +472912,Health,Health +472909,Health,Health +472908,Health,Health +472907,Health,Health +466022,Immigration,Immigration +438513,Immigration,Immigration +423517,Justice and Law Enforcement,Justice and Law Enforcement +423513,Justice and Law Enforcement,Justice and Law Enforcement +380890,Justice and Law Enforcement,Justice and Law Enforcement +378597,Justice and Law Enforcement,Justice and Law Enforcement +378595,Justice and Law Enforcement,Justice and Law Enforcement +348644,Justice and Law Enforcement,Justice and Law Enforcement +309707,Justice and Law Enforcement,Justice and Law Enforcement +302210,Justice and Law Enforcement,Justice and Law Enforcement +294931,Justice and Law Enforcement,Justice and Law Enforcement +417730,Taxation and Finance,Taxation and Finance +417727,Taxation and Finance,Taxation and Finance +80940,Taxation and Finance,Taxation and Finance +77188,Taxation and Finance,Taxation and Finance +415249,Taxation and Finance,Taxation and Finance +415247,Taxation and Finance,Taxation and Finance +415245,Taxation and Finance,Taxation and Finance +380891,Taxation and Finance,Taxation and Finance +368404,Taxation and Finance,Taxation and Finance +368403,Taxation and Finance,Taxation and Finance +368400,Taxation and Finance,Taxation and Finance +359594,Taxation and Finance,Taxation and Finance +315745,Taxation and Finance,Taxation and Finance +315742,Taxation and Finance,Taxation and Finance +255830,Taxation and Finance,Taxation and Finance +212231,Taxation and Finance,Taxation and Finance +211914,Taxation and Finance,Taxation and Finance +205467,Taxation and Finance,Taxation and Finance +202475,Taxation and Finance,Taxation and Finance +202473,Taxation and Finance,Taxation and Finance +202470,Taxation and Finance,Taxation and Finance +202467,Taxation and Finance,Taxation and Finance +175386,Taxation and Finance,Taxation and Finance +175384,Taxation and Finance,Taxation and Finance +170205,Taxation and Finance,Taxation and Finance +170204,Taxation and Finance,Taxation and Finance +163533,Taxation and Finance,Taxation and Finance +163532,Taxation and Finance,Taxation and Finance +162187,Taxation and Finance,Taxation and Finance +162184,Taxation and Finance,Taxation and Finance +161865,Taxation and Finance,Taxation and Finance +161862,Taxation and Finance,Taxation and Finance +161852,Taxation and Finance,Taxation and Finance +161849,Taxation and Finance,Taxation and Finance +525759,Taxation and Finance,Taxation and Finance +525746,Taxation and Finance,Taxation and Finance +525742,Taxation and Finance,Taxation and Finance +525739,Taxation and Finance,Taxation and Finance +525722,Taxation and Finance,Taxation and Finance +525694,Taxation and Finance,Taxation and Finance +497795,Taxation and Finance,Taxation and Finance +497775,Taxation and Finance,Taxation and Finance +497774,Taxation and Finance,Taxation and Finance +497773,Taxation and Finance,Taxation and Finance +497772,Taxation and Finance,Taxation and Finance +497771,Taxation and Finance,Taxation and Finance +493049,Taxation and Finance,Taxation and Finance +479450,Taxation and Finance,Taxation and Finance +479448,Taxation and Finance,Taxation and Finance +479447,Taxation and Finance,Taxation and Finance +479446,Taxation and Finance,Taxation and Finance +475028,Taxation and Finance,Taxation and Finance +472907,Taxation and Finance,Taxation and Finance +470363,Taxation and Finance,Taxation and Finance +470360,Taxation and Finance,Taxation and Finance +470356,Taxation and Finance,Taxation and Finance +470351,Taxation and Finance,Taxation and Finance +470347,Taxation and Finance,Taxation and Finance +470343,Taxation and Finance,Taxation and Finance +470298,Taxation and Finance,Taxation and Finance +466033,Taxation and Finance,Taxation and Finance +458208,Taxation and Finance,Taxation and Finance +455061,Taxation and Finance,Taxation and Finance +455055,Taxation and Finance,Taxation and Finance +455040,Taxation and Finance,Taxation and Finance +446702,Taxation and Finance,Taxation and Finance +443522,Taxation and Finance,Taxation and Finance +146050,Agriculture,Agriculture +429569,Agriculture,Agriculture +81254,Agriculture,Agriculture +97425,Agriculture,Agriculture +377424,Agriculture,Agriculture +194861,Agriculture,Agriculture +173556,Agriculture,Agriculture +153019,Agriculture,Agriculture +277524,Consumer Issues,Consumer Issues +269600,Consumer Issues,Consumer Issues +173555,Consumer Issues,Consumer Issues +172085,Consumer Issues,Consumer Issues +170791,Consumer Issues,Consumer Issues +159802,Consumer Issues,Consumer Issues +199929,Consumer Issues,Consumer Issues +199918,Consumer Issues,Consumer Issues +199913,Consumer Issues,Consumer Issues +194867,Consumer Issues,Consumer Issues +194861,Consumer Issues,Consumer Issues +523224,Health,Health +523221,Health,Health +77714,Health,Health +172085,Health,Health +170791,Health,Health +422343,Health,Health +422341,Health,Health +526443,Health,Health +526437,Health,Health +429564,Internal Trade,Internal Trade +429563,Internal Trade,Internal Trade +97425,Internal Trade,Internal Trade +175510,Internal Trade,Internal Trade +173556,Internal Trade,Internal Trade +173555,Internal Trade,Internal Trade +170791,Internal Trade,Internal Trade +168478,Internal Trade,Internal Trade +159802,Internal Trade,Internal Trade +157183,Internal Trade,Internal Trade +157180,Internal Trade,Internal Trade +157179,Internal Trade,Internal Trade +153019,Internal Trade,Internal Trade +153018,Internal Trade,Internal Trade +146050,Internal Trade,Internal Trade +227218,Internal Trade,Internal Trade +227216,Internal Trade,Internal Trade +227214,Internal Trade,Internal Trade +227213,Internal Trade,Internal Trade +227209,Internal Trade,Internal Trade +227208,Internal Trade,Internal Trade +227206,Internal Trade,Internal Trade +227205,Internal Trade,Internal Trade +227204,Internal Trade,Internal Trade +227203,Internal Trade,Internal Trade +227201,Internal Trade,Internal Trade +227196,Internal Trade,Internal Trade +223629,Internal Trade,Internal Trade +212551,Internal Trade,Internal Trade +212548,Internal Trade,Internal Trade +207640,Internal Trade,Internal Trade +199929,Internal Trade,Internal Trade +199918,Internal Trade,Internal Trade +199913,Internal Trade,Internal Trade +194867,Internal Trade,Internal Trade +194861,Internal Trade,Internal Trade +429562,Internal Trade,Internal Trade +429561,Internal Trade,Internal Trade +429560,Internal Trade,Internal Trade +429559,Internal Trade,Internal Trade +429558,Internal Trade,Internal Trade +429557,Internal Trade,Internal Trade +429556,Internal Trade,Internal Trade +429555,Internal Trade,Internal Trade +429554,Internal Trade,Internal Trade +424432,Internal Trade,Internal Trade +424427,Internal Trade,Internal Trade +424424,Internal Trade,Internal Trade +424418,Internal Trade,Internal Trade +418203,Internal Trade,Internal Trade +418200,Internal Trade,Internal Trade +417046,Internal Trade,Internal Trade +417045,Internal Trade,Internal Trade +417044,Internal Trade,Internal Trade +413619,Internal Trade,Internal Trade +413614,Internal Trade,Internal Trade +413562,Internal Trade,Internal Trade +413558,Internal Trade,Internal Trade +413554,Internal Trade,Internal Trade +413552,Internal Trade,Internal Trade +413547,Internal Trade,Internal Trade +413541,Internal Trade,Internal Trade +413535,Internal Trade,Internal Trade +413533,Internal Trade,Internal Trade +413529,Internal Trade,Internal Trade +409851,Internal Trade,Internal Trade +409847,Internal Trade,Internal Trade +409841,Internal Trade,Internal Trade +400897,Internal Trade,Internal Trade +400645,Internal Trade,Internal Trade +394296,Internal Trade,Internal Trade +380154,Internal Trade,Internal Trade +380151,Internal Trade,Internal Trade +380150,Internal Trade,Internal Trade +380149,Internal Trade,Internal Trade +380148,Internal Trade,Internal Trade +380147,Internal Trade,Internal Trade +380145,Internal Trade,Internal Trade +372548,Internal Trade,Internal Trade +372545,Internal Trade,Internal Trade +371748,Internal Trade,Internal Trade +371743,Internal Trade,Internal Trade +371739,Internal Trade,Internal Trade +371736,Internal Trade,Internal Trade +371733,Internal Trade,Internal Trade +371731,Internal Trade,Internal Trade +371728,Internal Trade,Internal Trade +371725,Internal Trade,Internal Trade +371724,Internal Trade,Internal Trade +369248,Internal Trade,Internal Trade +369247,Internal Trade,Internal Trade +356458,Internal Trade,Internal Trade +356457,Internal Trade,Internal Trade +356456,Internal Trade,Internal Trade +356452,Internal Trade,Internal Trade +327692,Internal Trade,Internal Trade +282974,Internal Trade,Internal Trade +282972,Internal Trade,Internal Trade +277555,Internal Trade,Internal Trade +277554,Internal Trade,Internal Trade +277551,Internal Trade,Internal Trade +277547,Internal Trade,Internal Trade +277543,Internal Trade,Internal Trade +277542,Internal Trade,Internal Trade +277539,Internal Trade,Internal Trade +277537,Internal Trade,Internal Trade +277534,Internal Trade,Internal Trade +277524,Internal Trade,Internal Trade +269600,Internal Trade,Internal Trade +245731,Internal Trade,Internal Trade +241221,Internal Trade,Internal Trade +499565,Internal Trade,Internal Trade +493599,Internal Trade,Internal Trade +478137,Internal Trade,Internal Trade +455747,Internal Trade,Internal Trade +449491,Internal Trade,Internal Trade +449488,Internal Trade,Internal Trade +447027,Internal Trade,Internal Trade +445634,Internal Trade,Internal Trade +441619,Internal Trade,Internal Trade +441617,Internal Trade,Internal Trade +441616,Internal Trade,Internal Trade +438697,Internal Trade,Internal Trade +438690,Internal Trade,Internal Trade +438673,Internal Trade,Internal Trade +438668,Internal Trade,Internal Trade +438659,Internal Trade,Internal Trade +435772,Internal Trade,Internal Trade +435765,Internal Trade,Internal Trade +435762,Internal Trade,Internal Trade +429570,Internal Trade,Internal Trade +429568,Internal Trade,Internal Trade +429567,Internal Trade,Internal Trade +429566,Internal Trade,Internal Trade +487876,International Relations,International Relations +435769,International Relations,International Relations +462749,International Trade,International Trade +461905,International Trade,International Trade +372548,International Trade,International Trade +372545,International Trade,International Trade +371748,International Trade,International Trade +371743,International Trade,International Trade +371739,International Trade,International Trade +371736,International Trade,International Trade +371733,International Trade,International Trade +371731,International Trade,International Trade +371728,International Trade,International Trade +371725,International Trade,International Trade +371724,International Trade,International Trade +369248,International Trade,International Trade +369247,International Trade,International Trade +356459,International Trade,International Trade +356458,International Trade,International Trade +356457,International Trade,International Trade +356456,International Trade,International Trade +356452,International Trade,International Trade +245731,International Trade,International Trade +241221,International Trade,International Trade +227209,International Trade,International Trade +227208,International Trade,International Trade +227206,International Trade,International Trade +227205,International Trade,International Trade +227204,International Trade,International Trade +227203,International Trade,International Trade +227201,International Trade,International Trade +227196,International Trade,International Trade +194861,International Trade,International Trade +173555,International Trade,International Trade +170791,International Trade,International Trade +153019,International Trade,International Trade +153018,International Trade,International Trade +461904,International Trade,International Trade +459067,International Trade,International Trade +459066,International Trade,International Trade +455756,International Trade,International Trade +455742,International Trade,International Trade +455736,International Trade,International Trade +455734,International Trade,International Trade +455731,International Trade,International Trade +455725,International Trade,International Trade +455724,International Trade,International Trade +449497,International Trade,International Trade +449493,International Trade,International Trade +449491,International Trade,International Trade +449486,International Trade,International Trade +449483,International Trade,International Trade +448549,International Trade,International Trade +448548,International Trade,International Trade +448547,International Trade,International Trade +448545,International Trade,International Trade +448543,International Trade,International Trade +448539,International Trade,International Trade +448536,International Trade,International Trade +447026,International Trade,International Trade +445632,International Trade,International Trade +441617,International Trade,International Trade +438675,International Trade,International Trade +438673,International Trade,International Trade +438668,International Trade,International Trade +438662,International Trade,International Trade +438659,International Trade,International Trade +438655,International Trade,International Trade +435773,International Trade,International Trade +435768,International Trade,International Trade +435765,International Trade,International Trade +435762,International Trade,International Trade +429570,International Trade,International Trade +429568,International Trade,International Trade +429567,International Trade,International Trade +429566,International Trade,International Trade +429565,International Trade,International Trade +429564,International Trade,International Trade +429563,International Trade,International Trade +429562,International Trade,International Trade +429561,International Trade,International Trade +429560,International Trade,International Trade +429559,International Trade,International Trade +429558,International Trade,International Trade +429557,International Trade,International Trade +429556,International Trade,International Trade +429555,International Trade,International Trade +429554,International Trade,International Trade +424434,International Trade,International Trade +424432,International Trade,International Trade +424427,International Trade,International Trade +424424,International Trade,International Trade +424420,International Trade,International Trade +418200,International Trade,International Trade +413619,International Trade,International Trade +413614,International Trade,International Trade +413562,International Trade,International Trade +413558,International Trade,International Trade +413554,International Trade,International Trade +413552,International Trade,International Trade +413547,International Trade,International Trade +413541,International Trade,International Trade +413535,International Trade,International Trade +413533,International Trade,International Trade +413529,International Trade,International Trade +409851,International Trade,International Trade +409847,International Trade,International Trade +409836,International Trade,International Trade +408058,International Trade,International Trade +491343,International Trade,International Trade +491335,International Trade,International Trade +491333,International Trade,International Trade +491329,International Trade,International Trade +491323,International Trade,International Trade +491321,International Trade,International Trade +491317,International Trade,International Trade +491303,International Trade,International Trade +491298,International Trade,International Trade +491295,International Trade,International Trade +491290,International Trade,International Trade +491284,International Trade,International Trade +487880,International Trade,International Trade +487879,International Trade,International Trade +487877,International Trade,International Trade +487873,International Trade,International Trade +487870,International Trade,International Trade +485055,International Trade,International Trade +485051,International Trade,International Trade +485048,International Trade,International Trade +485022,International Trade,International Trade +478146,International Trade,International Trade +478143,International Trade,International Trade +475984,International Trade,International Trade +475982,International Trade,International Trade +475980,International Trade,International Trade +475977,International Trade,International Trade +475973,International Trade,International Trade +475969,International Trade,International Trade +473586,International Trade,International Trade +473583,International Trade,International Trade +470450,International Trade,International Trade +470448,International Trade,International Trade +470446,International Trade,International Trade +470444,International Trade,International Trade +470443,International Trade,International Trade +470441,International Trade,International Trade +468309,International Trade,International Trade +468308,International Trade,International Trade +468307,International Trade,International Trade +468301,International Trade,International Trade +468300,International Trade,International Trade +468295,International Trade,International Trade +468293,International Trade,International Trade +468290,International Trade,International Trade +468288,International Trade,International Trade +468286,International Trade,International Trade +468284,International Trade,International Trade +468281,International Trade,International Trade +468277,International Trade,International Trade +468274,International Trade,International Trade +464733,International Trade,International Trade +464730,International Trade,International Trade +464725,International Trade,International Trade +464720,International Trade,International Trade +462755,International Trade,International Trade +462754,International Trade,International Trade +462753,International Trade,International Trade +462752,International Trade,International Trade +462751,International Trade,International Trade +194867,Small Business,Small Business +194861,Small Business,Small Business +511325,Taxation and Finance,Taxation and Finance +511314,Taxation and Finance,Taxation and Finance +153019,Taxation and Finance,Taxation and Finance +153018,Taxation and Finance,Taxation and Finance +77714,Taxation and Finance,Taxation and Finance +203188,Taxation and Finance,Taxation and Finance +203187,Taxation and Finance,Taxation and Finance +199929,Taxation and Finance,Taxation and Finance +199924,Taxation and Finance,Taxation and Finance +199923,Taxation and Finance,Taxation and Finance +199920,Taxation and Finance,Taxation and Finance +194861,Taxation and Finance,Taxation and Finance +173555,Taxation and Finance,Taxation and Finance +170791,Taxation and Finance,Taxation and Finance +312270,Taxation and Finance,Taxation and Finance +312269,Taxation and Finance,Taxation and Finance +282974,Taxation and Finance,Taxation and Finance +282972,Taxation and Finance,Taxation and Finance +277555,Taxation and Finance,Taxation and Finance +277554,Taxation and Finance,Taxation and Finance +277551,Taxation and Finance,Taxation and Finance +277547,Taxation and Finance,Taxation and Finance +277543,Taxation and Finance,Taxation and Finance +277542,Taxation and Finance,Taxation and Finance +277539,Taxation and Finance,Taxation and Finance +277537,Taxation and Finance,Taxation and Finance +277534,Taxation and Finance,Taxation and Finance +277524,Taxation and Finance,Taxation and Finance +227218,Taxation and Finance,Taxation and Finance +227216,Taxation and Finance,Taxation and Finance +227214,Taxation and Finance,Taxation and Finance +227209,Taxation and Finance,Taxation and Finance +227208,Taxation and Finance,Taxation and Finance +227206,Taxation and Finance,Taxation and Finance +227205,Taxation and Finance,Taxation and Finance +227204,Taxation and Finance,Taxation and Finance +227203,Taxation and Finance,Taxation and Finance +227201,Taxation and Finance,Taxation and Finance +227196,Taxation and Finance,Taxation and Finance +212551,Taxation and Finance,Taxation and Finance +212550,Taxation and Finance,Taxation and Finance +212549,Taxation and Finance,Taxation and Finance +212548,Taxation and Finance,Taxation and Finance +207640,Taxation and Finance,Taxation and Finance +207637,Taxation and Finance,Taxation and Finance +203193,Taxation and Finance,Taxation and Finance +203192,Taxation and Finance,Taxation and Finance +203191,Taxation and Finance,Taxation and Finance +203190,Taxation and Finance,Taxation and Finance +203189,Taxation and Finance,Taxation and Finance +394296,Taxation and Finance,Taxation and Finance +392901,Taxation and Finance,Taxation and Finance +392900,Taxation and Finance,Taxation and Finance +388297,Taxation and Finance,Taxation and Finance +388294,Taxation and Finance,Taxation and Finance +385515,Taxation and Finance,Taxation and Finance +385509,Taxation and Finance,Taxation and Finance +380154,Taxation and Finance,Taxation and Finance +380151,Taxation and Finance,Taxation and Finance +380150,Taxation and Finance,Taxation and Finance +380149,Taxation and Finance,Taxation and Finance +380148,Taxation and Finance,Taxation and Finance +380147,Taxation and Finance,Taxation and Finance +380145,Taxation and Finance,Taxation and Finance +372548,Taxation and Finance,Taxation and Finance +372545,Taxation and Finance,Taxation and Finance +371752,Taxation and Finance,Taxation and Finance +371748,Taxation and Finance,Taxation and Finance +371743,Taxation and Finance,Taxation and Finance +371739,Taxation and Finance,Taxation and Finance +371736,Taxation and Finance,Taxation and Finance +371733,Taxation and Finance,Taxation and Finance +371731,Taxation and Finance,Taxation and Finance +371728,Taxation and Finance,Taxation and Finance +371725,Taxation and Finance,Taxation and Finance +371724,Taxation and Finance,Taxation and Finance +369248,Taxation and Finance,Taxation and Finance +369247,Taxation and Finance,Taxation and Finance +356458,Taxation and Finance,Taxation and Finance +356457,Taxation and Finance,Taxation and Finance +356456,Taxation and Finance,Taxation and Finance +356452,Taxation and Finance,Taxation and Finance +349167,Taxation and Finance,Taxation and Finance +344075,Taxation and Finance,Taxation and Finance +344068,Taxation and Finance,Taxation and Finance +344067,Taxation and Finance,Taxation and Finance +341868,Taxation and Finance,Taxation and Finance +341862,Taxation and Finance,Taxation and Finance +338676,Taxation and Finance,Taxation and Finance +335892,Taxation and Finance,Taxation and Finance +335875,Taxation and Finance,Taxation and Finance +331631,Taxation and Finance,Taxation and Finance +330151,Taxation and Finance,Taxation and Finance +327707,Taxation and Finance,Taxation and Finance +327697,Taxation and Finance,Taxation and Finance +327692,Taxation and Finance,Taxation and Finance +327684,Taxation and Finance,Taxation and Finance +327676,Taxation and Finance,Taxation and Finance +327674,Taxation and Finance,Taxation and Finance +327671,Taxation and Finance,Taxation and Finance +327669,Taxation and Finance,Taxation and Finance +327664,Taxation and Finance,Taxation and Finance +327654,Taxation and Finance,Taxation and Finance +312274,Taxation and Finance,Taxation and Finance +312273,Taxation and Finance,Taxation and Finance +312272,Taxation and Finance,Taxation and Finance +312271,Taxation and Finance,Taxation and Finance +508227,Taxation and Finance,Taxation and Finance +508221,Taxation and Finance,Taxation and Finance +508219,Taxation and Finance,Taxation and Finance +508215,Taxation and Finance,Taxation and Finance +508207,Taxation and Finance,Taxation and Finance +505672,Taxation and Finance,Taxation and Finance +505671,Taxation and Finance,Taxation and Finance +505670,Taxation and Finance,Taxation and Finance +505669,Taxation and Finance,Taxation and Finance +505668,Taxation and Finance,Taxation and Finance +505667,Taxation and Finance,Taxation and Finance +505666,Taxation and Finance,Taxation and Finance +505665,Taxation and Finance,Taxation and Finance +502954,Taxation and Finance,Taxation and Finance +502953,Taxation and Finance,Taxation and Finance +502952,Taxation and Finance,Taxation and Finance +502951,Taxation and Finance,Taxation and Finance +502950,Taxation and Finance,Taxation and Finance +499563,Taxation and Finance,Taxation and Finance +499561,Taxation and Finance,Taxation and Finance +495985,Taxation and Finance,Taxation and Finance +495982,Taxation and Finance,Taxation and Finance +495977,Taxation and Finance,Taxation and Finance +495971,Taxation and Finance,Taxation and Finance +495970,Taxation and Finance,Taxation and Finance +495968,Taxation and Finance,Taxation and Finance +493598,Taxation and Finance,Taxation and Finance +493594,Taxation and Finance,Taxation and Finance +493593,Taxation and Finance,Taxation and Finance +493592,Taxation and Finance,Taxation and Finance +491287,Taxation and Finance,Taxation and Finance +473586,Taxation and Finance,Taxation and Finance +449488,Taxation and Finance,Taxation and Finance +438690,Taxation and Finance,Taxation and Finance +438675,Taxation and Finance,Taxation and Finance +438673,Taxation and Finance,Taxation and Finance +438668,Taxation and Finance,Taxation and Finance +438662,Taxation and Finance,Taxation and Finance +438659,Taxation and Finance,Taxation and Finance +438655,Taxation and Finance,Taxation and Finance +435773,Taxation and Finance,Taxation and Finance +435771,Taxation and Finance,Taxation and Finance +435769,Taxation and Finance,Taxation and Finance +435768,Taxation and Finance,Taxation and Finance +435765,Taxation and Finance,Taxation and Finance +424427,Taxation and Finance,Taxation and Finance +424424,Taxation and Finance,Taxation and Finance +420232,Taxation and Finance,Taxation and Finance +418201,Taxation and Finance,Taxation and Finance +417046,Taxation and Finance,Taxation and Finance +417045,Taxation and Finance,Taxation and Finance +417044,Taxation and Finance,Taxation and Finance +413619,Taxation and Finance,Taxation and Finance +413614,Taxation and Finance,Taxation and Finance +413562,Taxation and Finance,Taxation and Finance +413558,Taxation and Finance,Taxation and Finance +413554,Taxation and Finance,Taxation and Finance +413552,Taxation and Finance,Taxation and Finance +413547,Taxation and Finance,Taxation and Finance +413541,Taxation and Finance,Taxation and Finance +413535,Taxation and Finance,Taxation and Finance +413533,Taxation and Finance,Taxation and Finance +413529,Taxation and Finance,Taxation and Finance +409851,Taxation and Finance,Taxation and Finance +409847,Taxation and Finance,Taxation and Finance +405858,Taxation and Finance,Taxation and Finance +405857,Taxation and Finance,Taxation and Finance +405855,Taxation and Finance,Taxation and Finance +405853,Taxation and Finance,Taxation and Finance +405852,Taxation and Finance,Taxation and Finance +405850,Taxation and Finance,Taxation and Finance +405849,Taxation and Finance,Taxation and Finance +405847,Taxation and Finance,Taxation and Finance +402743,Taxation and Finance,Taxation and Finance +402742,Taxation and Finance,Taxation and Finance +402740,Taxation and Finance,Taxation and Finance +402732,Taxation and Finance,Taxation and Finance +402731,Taxation and Finance,Taxation and Finance +402729,Taxation and Finance,Taxation and Finance +402727,Taxation and Finance,Taxation and Finance +402725,Taxation and Finance,Taxation and Finance +402722,Taxation and Finance,Taxation and Finance +402717,Taxation and Finance,Taxation and Finance +402715,Taxation and Finance,Taxation and Finance +400897,Taxation and Finance,Taxation and Finance +400882,Taxation and Finance,Taxation and Finance +400877,Taxation and Finance,Taxation and Finance +400873,Taxation and Finance,Taxation and Finance +400871,Taxation and Finance,Taxation and Finance +400867,Taxation and Finance,Taxation and Finance +400860,Taxation and Finance,Taxation and Finance +400855,Taxation and Finance,Taxation and Finance +400853,Taxation and Finance,Taxation and Finance +400849,Taxation and Finance,Taxation and Finance +400848,Taxation and Finance,Taxation and Finance +400845,Taxation and Finance,Taxation and Finance +400839,Taxation and Finance,Taxation and Finance +400838,Taxation and Finance,Taxation and Finance +400837,Taxation and Finance,Taxation and Finance +400836,Taxation and Finance,Taxation and Finance +400835,Taxation and Finance,Taxation and Finance +400670,Taxation and Finance,Taxation and Finance +400658,Taxation and Finance,Taxation and Finance +400654,Taxation and Finance,Taxation and Finance +400652,Taxation and Finance,Taxation and Finance +400650,Taxation and Finance,Taxation and Finance +400640,Taxation and Finance,Taxation and Finance +544339,Taxation and Finance,Taxation and Finance +540076,Taxation and Finance,Taxation and Finance +538531,Taxation and Finance,Taxation and Finance +538530,Taxation and Finance,Taxation and Finance +538529,Taxation and Finance,Taxation and Finance +538528,Taxation and Finance,Taxation and Finance +538527,Taxation and Finance,Taxation and Finance +538526,Taxation and Finance,Taxation and Finance +535597,Taxation and Finance,Taxation and Finance +535590,Taxation and Finance,Taxation and Finance +535584,Taxation and Finance,Taxation and Finance +535566,Taxation and Finance,Taxation and Finance +535562,Taxation and Finance,Taxation and Finance +535554,Taxation and Finance,Taxation and Finance +535550,Taxation and Finance,Taxation and Finance +535538,Taxation and Finance,Taxation and Finance +532174,Taxation and Finance,Taxation and Finance +532173,Taxation and Finance,Taxation and Finance +532171,Taxation and Finance,Taxation and Finance +532170,Taxation and Finance,Taxation and Finance +532168,Taxation and Finance,Taxation and Finance +532165,Taxation and Finance,Taxation and Finance +529398,Taxation and Finance,Taxation and Finance +529397,Taxation and Finance,Taxation and Finance +529396,Taxation and Finance,Taxation and Finance +529395,Taxation and Finance,Taxation and Finance +529394,Taxation and Finance,Taxation and Finance +529393,Taxation and Finance,Taxation and Finance +529392,Taxation and Finance,Taxation and Finance +529391,Taxation and Finance,Taxation and Finance +529390,Taxation and Finance,Taxation and Finance +529389,Taxation and Finance,Taxation and Finance +529388,Taxation and Finance,Taxation and Finance +529387,Taxation and Finance,Taxation and Finance +529386,Taxation and Finance,Taxation and Finance +526443,Taxation and Finance,Taxation and Finance +526442,Taxation and Finance,Taxation and Finance +526440,Taxation and Finance,Taxation and Finance +526438,Taxation and Finance,Taxation and Finance +526436,Taxation and Finance,Taxation and Finance +526435,Taxation and Finance,Taxation and Finance +523224,Taxation and Finance,Taxation and Finance +520179,Taxation and Finance,Taxation and Finance +520178,Taxation and Finance,Taxation and Finance +520177,Taxation and Finance,Taxation and Finance +517172,Taxation and Finance,Taxation and Finance +517170,Taxation and Finance,Taxation and Finance +517169,Taxation and Finance,Taxation and Finance +517168,Taxation and Finance,Taxation and Finance +517166,Taxation and Finance,Taxation and Finance +515726,Taxation and Finance,Taxation and Finance +515724,Taxation and Finance,Taxation and Finance +515723,Taxation and Finance,Taxation and Finance +514104,Taxation and Finance,Taxation and Finance +511345,Taxation and Finance,Taxation and Finance +511343,Taxation and Finance,Taxation and Finance +511342,Taxation and Finance,Taxation and Finance +511341,Taxation and Finance,Taxation and Finance +418206,Tourism,Tourism +349161,Tourism,Tourism +241221,Tourism,Tourism +194867,Tourism,Tourism +153019,Tourism,Tourism +95855,Energy,Energy +95854,Energy,Energy +95878,Energy,Energy +95877,Energy,Energy +95876,Energy,Energy +95875,Energy,Energy +95874,Energy,Energy +95859,Energy,Energy +95857,Energy,Energy +95854,Environment,Environment +95878,Environment,Environment +95877,Environment,Environment +95876,Environment,Environment +95875,Environment,Environment +95874,Environment,Environment +95859,Environment,Environment +95857,Environment,Environment +95856,Environment,Environment +95877,Infrastructure,Infrastructure +95876,Infrastructure,Infrastructure +95875,Infrastructure,Infrastructure +95874,Infrastructure,Infrastructure +95859,Infrastructure,Infrastructure +95857,Infrastructure,Infrastructure +95856,Infrastructure,Infrastructure +95855,Infrastructure,Infrastructure +95854,Infrastructure,Infrastructure +198147,Health,Health +381790,Health,Health +90497,Health,Health +88066,Health,Health +82676,Health,Health +144214,Health,Health +138940,Health,Health +135906,Health,Health +132776,Health,Health +132775,Health,Health +132774,Health,Health +128256,Health,Health +128253,Health,Health +124657,Health,Health +120939,Health,Health +120936,Health,Health +120935,Health,Health +113099,Health,Health +113098,Health,Health +101302,Health,Health +192442,Health,Health +190856,Health,Health +186884,Health,Health +176246,Health,Health +168966,Health,Health +168964,Health,Health +168963,Health,Health +166029,Health,Health +166027,Health,Health +166026,Health,Health +156996,Health,Health +354913,Health,Health +354912,Health,Health +354911,Health,Health +348350,Health,Health +317438,Health,Health +317290,Health,Health +278250,Health,Health +278249,Health,Health +262373,Health,Health +262372,Health,Health +258210,Health,Health +258209,Health,Health +255850,Health,Health +255849,Health,Health +252733,Health,Health +247529,Government Procurement,Government Procurement +77639,Other,"Housing, community development" +81636,Industry,Industry +160168,Industry,Industry +76614,Energy,Energy +79716,Energy,Energy +103522,Energy,Energy +103521,Energy,Energy +103520,Energy,Energy +103519,Energy,Energy +103518,Energy,Energy +103514,Energy,Energy +80219,Energy,Energy +103518,Environment,Environment +103514,Environment,Environment +80219,Environment,Environment +80217,Environment,Environment +79716,Environment,Environment +103522,Environment,Environment +103521,Environment,Environment +103520,Environment,Environment +103522,International Trade,International Trade +103521,International Trade,International Trade +103520,International Trade,International Trade +103519,International Trade,International Trade +103518,International Trade,International Trade +382110,Energy,Energy +382109,Energy,Energy +202742,Energy,Energy +430973,Energy,Energy +430972,Energy,Energy +430968,Energy,Energy +429012,Energy,Energy +424123,Energy,Energy +424120,Energy,Energy +423532,Energy,Energy +419707,Energy,Energy +419704,Energy,Energy +419702,Energy,Energy +419698,Energy,Energy +419686,Energy,Energy +417889,Energy,Energy +412631,Energy,Energy +412628,Energy,Energy +398657,Energy,Energy +382110,Environment,Environment +382109,Environment,Environment +156550,Environment,Environment +340780,Government Procurement,Government Procurement +338380,Government Procurement,Government Procurement +419702,Industry,Industry +419698,Industry,Industry +156550,Industry,Industry +419690,Industry,Industry +419686,Industry,Industry +417889,Industry,Industry +417888,Industry,Industry +398657,Industry,Industry +391015,Industry,Industry +382159,Industry,Industry +374910,Industry,Industry +350728,Industry,Industry +350726,Industry,Industry +350725,Industry,Industry +350724,Industry,Industry +350723,Industry,Industry +350710,Industry,Industry +350700,Industry,Industry +350697,Industry,Industry +244210,Industry,Industry +238909,Industry,Industry +211561,Industry,Industry +211510,Industry,Industry +443409,Industry,Industry +443408,Industry,Industry +443406,Industry,Industry +443405,Industry,Industry +443404,Industry,Industry +442441,Industry,Industry +442438,Industry,Industry +442433,Industry,Industry +442427,Industry,Industry +442421,Industry,Industry +435805,Industry,Industry +435802,Industry,Industry +432243,Industry,Industry +430973,Industry,Industry +430972,Industry,Industry +430968,Industry,Industry +428043,Industry,Industry +428040,Industry,Industry +428038,Industry,Industry +428035,Industry,Industry +428033,Industry,Industry +425385,Industry,Industry +425383,Industry,Industry +425382,Industry,Industry +425381,Industry,Industry +423534,Industry,Industry +423533,Industry,Industry +423532,Industry,Industry +419707,Industry,Industry +417888,Regional Development,Regional Development +382109,Transportation,Transportation +155807,Health,Health +155806,Health,Health +156530,Health,Health +323009,Government Procurement,Government Procurement +263781,Government Procurement,Government Procurement +87616,Government Procurement,Government Procurement +215487,Government Procurement,Government Procurement +100862,Government Procurement,Government Procurement +93034,Government Procurement,Government Procurement +422843,Consumer Issues,Consumer Issues +421969,Consumer Issues,Consumer Issues +96197,Consumer Issues,Consumer Issues +197440,Consumer Issues,Consumer Issues +197439,Consumer Issues,Consumer Issues +197437,Consumer Issues,Consumer Issues +176784,Consumer Issues,Consumer Issues +167366,Consumer Issues,Consumer Issues +158562,Consumer Issues,Consumer Issues +158560,Consumer Issues,Consumer Issues +149140,Consumer Issues,Consumer Issues +149139,Consumer Issues,Consumer Issues +112074,Consumer Issues,Consumer Issues +410318,Consumer Issues,Consumer Issues +410317,Consumer Issues,Consumer Issues +410316,Consumer Issues,Consumer Issues +410315,Consumer Issues,Consumer Issues +406664,Consumer Issues,Consumer Issues +404541,Consumer Issues,Consumer Issues +404540,Consumer Issues,Consumer Issues +401923,Consumer Issues,Consumer Issues +397377,Consumer Issues,Consumer Issues +397375,Consumer Issues,Consumer Issues +395289,Consumer Issues,Consumer Issues +395287,Consumer Issues,Consumer Issues +395285,Consumer Issues,Consumer Issues +395283,Consumer Issues,Consumer Issues +382462,Consumer Issues,Consumer Issues +382057,Consumer Issues,Consumer Issues +380563,Consumer Issues,Consumer Issues +380562,Consumer Issues,Consumer Issues +380561,Consumer Issues,Consumer Issues +380560,Consumer Issues,Consumer Issues +380559,Consumer Issues,Consumer Issues +380558,Consumer Issues,Consumer Issues +380557,Consumer Issues,Consumer Issues +380556,Consumer Issues,Consumer Issues +380555,Consumer Issues,Consumer Issues +380554,Consumer Issues,Consumer Issues +378105,Consumer Issues,Consumer Issues +378104,Consumer Issues,Consumer Issues +378102,Consumer Issues,Consumer Issues +375643,Consumer Issues,Consumer Issues +375525,Consumer Issues,Consumer Issues +375522,Consumer Issues,Consumer Issues +531554,Consumer Issues,Consumer Issues +505146,Consumer Issues,Consumer Issues +501643,Consumer Issues,Consumer Issues +501639,Consumer Issues,Consumer Issues +441314,Consumer Issues,Consumer Issues +441313,Consumer Issues,Consumer Issues +441312,Consumer Issues,Consumer Issues +441311,Consumer Issues,Consumer Issues +416705,Financial Institutions,Financial Institutions +416701,Financial Institutions,Financial Institutions +96197,Financial Institutions,Financial Institutions +149140,Financial Institutions,Financial Institutions +149139,Financial Institutions,Financial Institutions +158562,Financial Institutions,Financial Institutions +158560,Financial Institutions,Financial Institutions +197440,Financial Institutions,Financial Institutions +197439,Financial Institutions,Financial Institutions +197437,Financial Institutions,Financial Institutions +176784,Financial Institutions,Financial Institutions +167366,Financial Institutions,Financial Institutions +410318,Financial Institutions,Financial Institutions +410317,Financial Institutions,Financial Institutions +410316,Financial Institutions,Financial Institutions +410315,Financial Institutions,Financial Institutions +410314,Financial Institutions,Financial Institutions +406664,Financial Institutions,Financial Institutions +531554,Financial Institutions,Financial Institutions +522615,Financial Institutions,Financial Institutions +520034,Financial Institutions,Financial Institutions +517543,Financial Institutions,Financial Institutions +505146,Financial Institutions,Financial Institutions +501643,Financial Institutions,Financial Institutions +501639,Financial Institutions,Financial Institutions +492970,Financial Institutions,Financial Institutions +490658,Financial Institutions,Financial Institutions +452183,Financial Institutions,Financial Institutions +422843,Financial Institutions,Financial Institutions +375522,Industry,Industry +522615,Industry,Industry +149139,Industry,Industry +176784,Industry,Industry +167366,Industry,Industry +158562,Industry,Industry +158560,Industry,Industry +149140,Industry,Industry +421969,Industry,Industry +416705,Industry,Industry +416701,Industry,Industry +410318,Industry,Industry +410317,Industry,Industry +410316,Industry,Industry +410315,Industry,Industry +410314,Industry,Industry +406664,Industry,Industry +404541,Industry,Industry +404540,Industry,Industry +397377,Industry,Industry +397375,Industry,Industry +395289,Industry,Industry +395287,Industry,Industry +395285,Industry,Industry +395283,Industry,Industry +382462,Industry,Industry +382057,Industry,Industry +378105,Industry,Industry +378104,Industry,Industry +378102,Industry,Industry +375643,Industry,Industry +489051,Employment and Training,Employment and Training +486330,Employment and Training,Employment and Training +91994,Employment and Training,Employment and Training +157636,Employment and Training,Employment and Training +151856,Employment and Training,Employment and Training +310372,Employment and Training,Employment and Training +303469,Employment and Training,Employment and Training +262429,Employment and Training,Employment and Training +257097,Employment and Training,Employment and Training +249550,Employment and Training,Employment and Training +246269,Employment and Training,Employment and Training +245790,Employment and Training,Employment and Training +245778,Employment and Training,Employment and Training +245007,Employment and Training,Employment and Training +242810,Employment and Training,Employment and Training +241393,Employment and Training,Employment and Training +238769,Employment and Training,Employment and Training +234150,Employment and Training,Employment and Training +226087,Employment and Training,Employment and Training +222561,Employment and Training,Employment and Training +200869,Employment and Training,Employment and Training +410686,Employment and Training,Employment and Training +369887,Employment and Training,Employment and Training +362602,Employment and Training,Employment and Training +350282,Employment and Training,Employment and Training +331184,Employment and Training,Employment and Training +526857,Employment and Training,Employment and Training +503188,Employment and Training,Employment and Training +391902,Justice and Law Enforcement,Justice and Law Enforcement +391899,Justice and Law Enforcement,Justice and Law Enforcement +391907,Justice and Law Enforcement,Justice and Law Enforcement +471513,Labour,Labour +427060,Labour,Labour +151856,Labour,Labour +148636,Labour,Labour +242810,Labour,Labour +224907,Labour,Labour +216128,Labour,Labour +200869,Labour,Labour +158184,Labour,Labour +369887,Labour,Labour +343306,Labour,Labour +275464,Labour,Labour +257097,Labour,Labour +531875,Labour,Labour +530719,Labour,Labour +530619,Labour,Labour +527704,Labour,Labour +527164,Labour,Labour +523603,Labour,Labour +520430,Labour,Labour +518721,Labour,Labour +513465,Labour,Labour +513464,Labour,Labour +510864,Labour,Labour +506428,Labour,Labour +503470,Labour,Labour +503188,Labour,Labour +503187,Labour,Labour +503186,Labour,Labour +499879,Labour,Labour +489051,Labour,Labour +486330,Labour,Labour +485499,Labour,Labour +471515,Labour,Labour +489051,Transportation,Transportation +486330,Transportation,Transportation +113495,Transportation,Transportation +249550,Transportation,Transportation +245778,Transportation,Transportation +244089,Transportation,Transportation +241393,Transportation,Transportation +222561,Transportation,Transportation +220667,Transportation,Transportation +216128,Transportation,Transportation +188084,Transportation,Transportation +160944,Transportation,Transportation +160674,Transportation,Transportation +157636,Transportation,Transportation +151856,Transportation,Transportation +362602,Transportation,Transportation +343306,Transportation,Transportation +342234,Transportation,Transportation +331184,Transportation,Transportation +303469,Transportation,Transportation +295977,Transportation,Transportation +272675,Transportation,Transportation +270792,Transportation,Transportation +471514,Transportation,Transportation +471513,Transportation,Transportation +444146,Transportation,Transportation +436249,Transportation,Transportation +434083,Transportation,Transportation +391907,Transportation,Transportation +391905,Transportation,Transportation +391902,Transportation,Transportation +391899,Transportation,Transportation +375622,Transportation,Transportation +375217,Transportation,Transportation +516509,Transportation,Transportation +513465,Transportation,Transportation +510864,Transportation,Transportation +506428,Transportation,Transportation +503470,Transportation,Transportation +503188,Transportation,Transportation +503187,Transportation,Transportation +503186,Transportation,Transportation +501163,Transportation,Transportation +428707,Agriculture,Agriculture +428700,Agriculture,Agriculture +146076,Agriculture,Agriculture +142955,Agriculture,Agriculture +130075,Agriculture,Agriculture +130074,Agriculture,Agriculture +110576,Agriculture,Agriculture +110575,Agriculture,Agriculture +110574,Agriculture,Agriculture +223359,Agriculture,Agriculture +212369,Agriculture,Agriculture +212362,Agriculture,Agriculture +207364,Agriculture,Agriculture +202354,Agriculture,Agriculture +173502,Agriculture,Agriculture +173500,Agriculture,Agriculture +173499,Agriculture,Agriculture +173490,Agriculture,Agriculture +172069,Agriculture,Agriculture +172068,Agriculture,Agriculture +170616,Agriculture,Agriculture +161731,Agriculture,Agriculture +160471,Agriculture,Agriculture +154873,Agriculture,Agriculture +153188,Agriculture,Agriculture +146085,Agriculture,Agriculture +146083,Agriculture,Agriculture +146081,Agriculture,Agriculture +330089,Agriculture,Agriculture +330086,Agriculture,Agriculture +330084,Agriculture,Agriculture +330065,Agriculture,Agriculture +327449,Agriculture,Agriculture +324725,Agriculture,Agriculture +324718,Agriculture,Agriculture +321762,Agriculture,Agriculture +319550,Agriculture,Agriculture +319549,Agriculture,Agriculture +315960,Agriculture,Agriculture +310997,Agriculture,Agriculture +296701,Agriculture,Agriculture +296699,Agriculture,Agriculture +280089,Agriculture,Agriculture +277775,Agriculture,Agriculture +275793,Agriculture,Agriculture +263569,Agriculture,Agriculture +263460,Agriculture,Agriculture +251510,Agriculture,Agriculture +251509,Agriculture,Agriculture +249390,Agriculture,Agriculture +245710,Agriculture,Agriculture +241489,Agriculture,Agriculture +241390,Agriculture,Agriculture +241389,Agriculture,Agriculture +230723,Agriculture,Agriculture +230719,Agriculture,Agriculture +227139,Agriculture,Agriculture +227137,Agriculture,Agriculture +227135,Agriculture,Agriculture +227131,Agriculture,Agriculture +422196,Agriculture,Agriculture +422193,Agriculture,Agriculture +422191,Agriculture,Agriculture +422188,Agriculture,Agriculture +422185,Agriculture,Agriculture +422171,Agriculture,Agriculture +420103,Agriculture,Agriculture +420095,Agriculture,Agriculture +415866,Agriculture,Agriculture +409005,Agriculture,Agriculture +405308,Agriculture,Agriculture +405306,Agriculture,Agriculture +405305,Agriculture,Agriculture +403865,Agriculture,Agriculture +403862,Agriculture,Agriculture +403860,Agriculture,Agriculture +403858,Agriculture,Agriculture +403855,Agriculture,Agriculture +403854,Agriculture,Agriculture +403853,Agriculture,Agriculture +403851,Agriculture,Agriculture +403850,Agriculture,Agriculture +403848,Agriculture,Agriculture +403845,Agriculture,Agriculture +403844,Agriculture,Agriculture +403842,Agriculture,Agriculture +403841,Agriculture,Agriculture +403840,Agriculture,Agriculture +403838,Agriculture,Agriculture +403835,Agriculture,Agriculture +398435,Agriculture,Agriculture +394871,Agriculture,Agriculture +388039,Agriculture,Agriculture +384821,Agriculture,Agriculture +381329,Agriculture,Agriculture +381328,Agriculture,Agriculture +380084,Agriculture,Agriculture +380082,Agriculture,Agriculture +380080,Agriculture,Agriculture +380079,Agriculture,Agriculture +380078,Agriculture,Agriculture +380077,Agriculture,Agriculture +380076,Agriculture,Agriculture +380075,Agriculture,Agriculture +380074,Agriculture,Agriculture +380073,Agriculture,Agriculture +380072,Agriculture,Agriculture +378963,Agriculture,Agriculture +372579,Agriculture,Agriculture +372576,Agriculture,Agriculture +368818,Agriculture,Agriculture +365259,Agriculture,Agriculture +356541,Agriculture,Agriculture +356540,Agriculture,Agriculture +356538,Agriculture,Agriculture +354400,Agriculture,Agriculture +353681,Agriculture,Agriculture +353680,Agriculture,Agriculture +542742,Agriculture,Agriculture +537844,Agriculture,Agriculture +537843,Agriculture,Agriculture +537841,Agriculture,Agriculture +537840,Agriculture,Agriculture +537614,Agriculture,Agriculture +537612,Agriculture,Agriculture +534703,Agriculture,Agriculture +534700,Agriculture,Agriculture +534689,Agriculture,Agriculture +534685,Agriculture,Agriculture +534670,Agriculture,Agriculture +534668,Agriculture,Agriculture +534663,Agriculture,Agriculture +531690,Agriculture,Agriculture +531686,Agriculture,Agriculture +531683,Agriculture,Agriculture +531682,Agriculture,Agriculture +531677,Agriculture,Agriculture +529373,Agriculture,Agriculture +528727,Agriculture,Agriculture +528724,Agriculture,Agriculture +525663,Agriculture,Agriculture +525353,Agriculture,Agriculture +525351,Agriculture,Agriculture +525349,Agriculture,Agriculture +525345,Agriculture,Agriculture +522321,Agriculture,Agriculture +519878,Agriculture,Agriculture +519877,Agriculture,Agriculture +517499,Agriculture,Agriculture +517492,Agriculture,Agriculture +517485,Agriculture,Agriculture +517482,Agriculture,Agriculture +517479,Agriculture,Agriculture +517477,Agriculture,Agriculture +517475,Agriculture,Agriculture +517474,Agriculture,Agriculture +517473,Agriculture,Agriculture +517466,Agriculture,Agriculture +517464,Agriculture,Agriculture +517462,Agriculture,Agriculture +517459,Agriculture,Agriculture +514190,Agriculture,Agriculture +512919,Agriculture,Agriculture +507426,Agriculture,Agriculture +507423,Agriculture,Agriculture +507416,Agriculture,Agriculture +507414,Agriculture,Agriculture +507413,Agriculture,Agriculture +507411,Agriculture,Agriculture +507410,Agriculture,Agriculture +507408,Agriculture,Agriculture +507280,Agriculture,Agriculture +507279,Agriculture,Agriculture +507276,Agriculture,Agriculture +507274,Agriculture,Agriculture +507271,Agriculture,Agriculture +507269,Agriculture,Agriculture +505128,Agriculture,Agriculture +505126,Agriculture,Agriculture +505120,Agriculture,Agriculture +500100,Agriculture,Agriculture +498584,Agriculture,Agriculture +493495,Agriculture,Agriculture +477607,Agriculture,Agriculture +475026,Agriculture,Agriculture +475025,Agriculture,Agriculture +475015,Agriculture,Agriculture +461910,Agriculture,Agriculture +459908,Agriculture,Agriculture +457889,Agriculture,Agriculture +455709,Agriculture,Agriculture +455237,Agriculture,Agriculture +455234,Agriculture,Agriculture +452216,Agriculture,Agriculture +452211,Agriculture,Agriculture +452032,Agriculture,Agriculture +447915,Agriculture,Agriculture +447911,Agriculture,Agriculture +442177,Agriculture,Agriculture +438635,Agriculture,Agriculture +438631,Agriculture,Agriculture +438621,Agriculture,Agriculture +433685,Agriculture,Agriculture +428738,Agriculture,Agriculture +428724,Agriculture,Agriculture +403467,Agriculture,Agriculture +401772,Agriculture,Agriculture +288173,Agriculture,Agriculture +399328,Agriculture,Agriculture +399327,Agriculture,Agriculture +399326,Agriculture,Agriculture +399325,Agriculture,Agriculture +399324,Agriculture,Agriculture +398080,Agriculture,Agriculture +398079,Agriculture,Agriculture +398078,Agriculture,Agriculture +398077,Agriculture,Agriculture +398076,Agriculture,Agriculture +398075,Agriculture,Agriculture +398074,Agriculture,Agriculture +396161,Agriculture,Agriculture +396156,Agriculture,Agriculture +396152,Agriculture,Agriculture +396151,Agriculture,Agriculture +396149,Agriculture,Agriculture +417048,Agriculture,Agriculture +408233,Agriculture,Agriculture +466258,Environment,Environment +447298,Environment,Environment +325476,Environment,Environment +311031,Environment,Environment +311030,Environment,Environment +292049,Environment,Environment +288173,Environment,Environment +288171,Environment,Environment +272449,Environment,Environment +247349,Environment,Environment +242730,Environment,Environment +227368,Environment,Environment +227363,Environment,Environment +382463,Environment,Environment +382460,Environment,Environment +378222,Environment,Environment +352824,Environment,Environment +351204,Environment,Environment +442354,Environment,Environment +442320,Environment,Environment +417048,Environment,Environment +411229,Environment,Environment +411227,Environment,Environment +408233,Environment,Environment +405980,Environment,Environment +403467,Environment,Environment +401772,Environment,Environment +401768,Environment,Environment +399328,Environment,Environment +399327,Environment,Environment +399326,Environment,Environment +399325,Environment,Environment +399324,Environment,Environment +398080,Environment,Environment +398079,Environment,Environment +398078,Environment,Environment +398077,Environment,Environment +398076,Environment,Environment +398075,Environment,Environment +398074,Environment,Environment +396161,Environment,Environment +396156,Environment,Environment +396152,Environment,Environment +396151,Environment,Environment +396149,Environment,Environment +389356,Environment,Environment +466429,Environment,Environment +442320,Fisheries,Fisheries +140714,Fisheries,Fisheries +110914,Fisheries,Fisheries +197123,Fisheries,Fisheries +190704,Fisheries,Fisheries +150457,Fisheries,Fisheries +311031,Fisheries,Fisheries +288173,Fisheries,Fisheries +288171,Fisheries,Fisheries +272449,Fisheries,Fisheries +266229,Fisheries,Fisheries +242730,Fisheries,Fisheries +227373,Fisheries,Fisheries +227366,Fisheries,Fisheries +227364,Fisheries,Fisheries +227361,Fisheries,Fisheries +227358,Fisheries,Fisheries +403467,Fisheries,Fisheries +401772,Fisheries,Fisheries +399328,Fisheries,Fisheries +399327,Fisheries,Fisheries +399326,Fisheries,Fisheries +399325,Fisheries,Fisheries +399324,Fisheries,Fisheries +398080,Fisheries,Fisheries +398079,Fisheries,Fisheries +398078,Fisheries,Fisheries +398077,Fisheries,Fisheries +398076,Fisheries,Fisheries +398075,Fisheries,Fisheries +398074,Fisheries,Fisheries +396161,Fisheries,Fisheries +396156,Fisheries,Fisheries +396152,Fisheries,Fisheries +396151,Fisheries,Fisheries +396149,Fisheries,Fisheries +389356,Fisheries,Fisheries +388062,Fisheries,Fisheries +382460,Fisheries,Fisheries +378222,Fisheries,Fisheries +378221,Fisheries,Fisheries +352824,Fisheries,Fisheries +351204,Fisheries,Fisheries +466263,Fisheries,Fisheries +466259,Fisheries,Fisheries +466258,Fisheries,Fisheries +447298,Fisheries,Fisheries +411230,Justice and Law Enforcement,Justice and Law Enforcement +408233,Justice and Law Enforcement,Justice and Law Enforcement +311031,Justice and Law Enforcement,Justice and Law Enforcement +293972,Justice and Law Enforcement,Justice and Law Enforcement +288173,Justice and Law Enforcement,Justice and Law Enforcement +288172,Justice and Law Enforcement,Justice and Law Enforcement +288170,Justice and Law Enforcement,Justice and Law Enforcement +272449,Justice and Law Enforcement,Justice and Law Enforcement +242731,Justice and Law Enforcement,Justice and Law Enforcement +242730,Justice and Law Enforcement,Justice and Law Enforcement +403467,Justice and Law Enforcement,Justice and Law Enforcement +401772,Justice and Law Enforcement,Justice and Law Enforcement +401766,Justice and Law Enforcement,Justice and Law Enforcement +399328,Justice and Law Enforcement,Justice and Law Enforcement +399327,Justice and Law Enforcement,Justice and Law Enforcement +399326,Justice and Law Enforcement,Justice and Law Enforcement +399325,Justice and Law Enforcement,Justice and Law Enforcement +399324,Justice and Law Enforcement,Justice and Law Enforcement +398081,Justice and Law Enforcement,Justice and Law Enforcement +398080,Justice and Law Enforcement,Justice and Law Enforcement +398079,Justice and Law Enforcement,Justice and Law Enforcement +398078,Justice and Law Enforcement,Justice and Law Enforcement +398077,Justice and Law Enforcement,Justice and Law Enforcement +398076,Justice and Law Enforcement,Justice and Law Enforcement +398075,Justice and Law Enforcement,Justice and Law Enforcement +398074,Justice and Law Enforcement,Justice and Law Enforcement +396161,Justice and Law Enforcement,Justice and Law Enforcement +396156,Justice and Law Enforcement,Justice and Law Enforcement +396152,Justice and Law Enforcement,Justice and Law Enforcement +396151,Justice and Law Enforcement,Justice and Law Enforcement +396149,Justice and Law Enforcement,Justice and Law Enforcement +389361,Justice and Law Enforcement,Justice and Law Enforcement +382460,Justice and Law Enforcement,Justice and Law Enforcement +381707,Justice and Law Enforcement,Justice and Law Enforcement +378222,Justice and Law Enforcement,Justice and Law Enforcement +351204,Justice and Law Enforcement,Justice and Law Enforcement +479846,Justice and Law Enforcement,Justice and Law Enforcement +475741,Justice and Law Enforcement,Justice and Law Enforcement +475722,Justice and Law Enforcement,Justice and Law Enforcement +466263,Justice and Law Enforcement,Justice and Law Enforcement +466258,Justice and Law Enforcement,Justice and Law Enforcement +464434,Justice and Law Enforcement,Justice and Law Enforcement +447298,Justice and Law Enforcement,Justice and Law Enforcement +447296,Justice and Law Enforcement,Justice and Law Enforcement +445638,Justice and Law Enforcement,Justice and Law Enforcement +445636,Justice and Law Enforcement,Justice and Law Enforcement +445631,Justice and Law Enforcement,Justice and Law Enforcement +442354,Justice and Law Enforcement,Justice and Law Enforcement +442320,Justice and Law Enforcement,Justice and Law Enforcement +442313,Justice and Law Enforcement,Justice and Law Enforcement +442308,Justice and Law Enforcement,Justice and Law Enforcement +420471,Justice and Law Enforcement,Justice and Law Enforcement +420470,Justice and Law Enforcement,Justice and Law Enforcement +403467,Tourism,Tourism +399328,Tourism,Tourism +306069,Tourism,Tourism +399327,Tourism,Tourism +399326,Tourism,Tourism +399325,Tourism,Tourism +399324,Tourism,Tourism +398080,Tourism,Tourism +398079,Tourism,Tourism +398078,Tourism,Tourism +398077,Tourism,Tourism +398076,Tourism,Tourism +398075,Tourism,Tourism +398074,Tourism,Tourism +396161,Tourism,Tourism +396156,Tourism,Tourism +396152,Tourism,Tourism +396151,Tourism,Tourism +396149,Tourism,Tourism +389356,Tourism,Tourism +382460,Tourism,Tourism +378222,Tourism,Tourism +87760,Labour,Labour +527681,Education,Education +527249,Education,Education +212319,Education,Education +379270,Education,Education +373282,Education,Education +530316,Education,Education +485665,Employment and Training,Employment and Training +475020,Employment and Training,Employment and Training +105640,Employment and Training,Employment and Training +105637,Employment and Training,Employment and Training +384462,Employment and Training,Employment and Training +384461,Employment and Training,Employment and Training +384096,Employment and Training,Employment and Training +384060,Employment and Training,Employment and Training +383176,Employment and Training,Employment and Training +383175,Employment and Training,Employment and Training +383174,Employment and Training,Employment and Training +382928,Employment and Training,Employment and Training +382927,Employment and Training,Employment and Training +375026,Employment and Training,Employment and Training +401380,Employment and Training,Employment and Training +393824,Employment and Training,Employment and Training +393068,Employment and Training,Employment and Training +392638,Employment and Training,Employment and Training +392308,Employment and Training,Employment and Training +392307,Employment and Training,Employment and Training +392305,Employment and Training,Employment and Training +390595,Employment and Training,Employment and Training +530316,Employment and Training,Employment and Training +527689,Employment and Training,Employment and Training +527685,Employment and Training,Employment and Training +527681,Employment and Training,Employment and Training +527249,Employment and Training,Employment and Training +526944,Employment and Training,Employment and Training +526810,Employment and Training,Employment and Training +526793,Employment and Training,Employment and Training +526769,Employment and Training,Employment and Training +526385,Employment and Training,Employment and Training +526291,Employment and Training,Employment and Training +525868,Employment and Training,Employment and Training +525867,Employment and Training,Employment and Training +525016,Employment and Training,Employment and Training +524810,Employment and Training,Employment and Training +524809,Employment and Training,Employment and Training +524790,Employment and Training,Employment and Training +524789,Employment and Training,Employment and Training +524788,Employment and Training,Employment and Training +524787,Employment and Training,Employment and Training +524786,Employment and Training,Employment and Training +524785,Employment and Training,Employment and Training +524784,Employment and Training,Employment and Training +524783,Employment and Training,Employment and Training +524782,Employment and Training,Employment and Training +524780,Employment and Training,Employment and Training +524779,Employment and Training,Employment and Training +524778,Employment and Training,Employment and Training +524777,Employment and Training,Employment and Training +524776,Employment and Training,Employment and Training +524774,Employment and Training,Employment and Training +524772,Employment and Training,Employment and Training +524771,Employment and Training,Employment and Training +524770,Employment and Training,Employment and Training +524762,Employment and Training,Employment and Training +524738,Employment and Training,Employment and Training +524736,Employment and Training,Employment and Training +524735,Employment and Training,Employment and Training +524729,Employment and Training,Employment and Training +524726,Employment and Training,Employment and Training +524725,Employment and Training,Employment and Training +524724,Employment and Training,Employment and Training +524723,Employment and Training,Employment and Training +524722,Employment and Training,Employment and Training +524448,Employment and Training,Employment and Training +524447,Employment and Training,Employment and Training +524444,Employment and Training,Employment and Training +524154,Employment and Training,Employment and Training +524153,Employment and Training,Employment and Training +524152,Employment and Training,Employment and Training +523940,Employment and Training,Employment and Training +523936,Employment and Training,Employment and Training +523935,Employment and Training,Employment and Training +523934,Employment and Training,Employment and Training +523933,Employment and Training,Employment and Training +523842,Employment and Training,Employment and Training +523841,Employment and Training,Employment and Training +523840,Employment and Training,Employment and Training +523839,Employment and Training,Employment and Training +523838,Employment and Training,Employment and Training +523837,Employment and Training,Employment and Training +521246,Employment and Training,Employment and Training +521054,Employment and Training,Employment and Training +521053,Employment and Training,Employment and Training +520554,Employment and Training,Employment and Training +519121,Employment and Training,Employment and Training +518579,Employment and Training,Employment and Training +518512,Employment and Training,Employment and Training +518440,Employment and Training,Employment and Training +517079,Employment and Training,Employment and Training +517078,Employment and Training,Employment and Training +516696,Employment and Training,Employment and Training +516483,Employment and Training,Employment and Training +516392,Employment and Training,Employment and Training +516349,Employment and Training,Employment and Training +516101,Employment and Training,Employment and Training +515993,Employment and Training,Employment and Training +515266,Employment and Training,Employment and Training +515044,Employment and Training,Employment and Training +514938,Employment and Training,Employment and Training +511728,Employment and Training,Employment and Training +509336,Employment and Training,Employment and Training +507252,Employment and Training,Employment and Training +506771,Employment and Training,Employment and Training +503748,Employment and Training,Employment and Training +389296,Health,Health +389295,Health,Health +97619,Health,Health +97617,Health,Health +97616,Health,Health +147766,Health,Health +145727,Health,Health +142994,Health,Health +138869,Health,Health +138865,Health,Health +138864,Health,Health +138863,Health,Health +138862,Health,Health +135908,Health,Health +132449,Health,Health +132446,Health,Health +128919,Health,Health +124677,Health,Health +124674,Health,Health +121017,Health,Health +200319,Health,Health +200317,Health,Health +200313,Health,Health +200311,Health,Health +200310,Health,Health +200307,Health,Health +200304,Health,Health +200221,Health,Health +194670,Health,Health +194668,Health,Health +194666,Health,Health +175610,Health,Health +175339,Health,Health +175338,Health,Health +175332,Health,Health +175331,Health,Health +175330,Health,Health +175325,Health,Health +175320,Health,Health +170671,Health,Health +170670,Health,Health +170669,Health,Health +170667,Health,Health +168682,Health,Health +168680,Health,Health +168676,Health,Health +164008,Health,Health +161389,Health,Health +161388,Health,Health +159029,Health,Health +159028,Health,Health +153295,Health,Health +153294,Health,Health +153293,Health,Health +153292,Health,Health +152252,Health,Health +152251,Health,Health +152249,Health,Health +152247,Health,Health +152240,Health,Health +152238,Health,Health +310713,Health,Health +310712,Health,Health +310711,Health,Health +310710,Health,Health +310709,Health,Health +310693,Health,Health +310692,Health,Health +310691,Health,Health +310690,Health,Health +310689,Health,Health +310688,Health,Health +310687,Health,Health +310686,Health,Health +310685,Health,Health +310684,Health,Health +310683,Health,Health +310682,Health,Health +310681,Health,Health +310680,Health,Health +310678,Health,Health +310676,Health,Health +291410,Health,Health +276353,Health,Health +276351,Health,Health +273633,Health,Health +273629,Health,Health +273625,Health,Health +269626,Health,Health +269625,Health,Health +269624,Health,Health +269622,Health,Health +264572,Health,Health +259551,Health,Health +251004,Health,Health +251003,Health,Health +251002,Health,Health +251001,Health,Health +251000,Health,Health +250999,Health,Health +250998,Health,Health +250997,Health,Health +250996,Health,Health +250995,Health,Health +250994,Health,Health +250993,Health,Health +250992,Health,Health +250991,Health,Health +250990,Health,Health +250989,Health,Health +250988,Health,Health +250987,Health,Health +250986,Health,Health +250985,Health,Health +250984,Health,Health +250983,Health,Health +250982,Health,Health +250981,Health,Health +250980,Health,Health +250979,Health,Health +250978,Health,Health +250977,Health,Health +250976,Health,Health +250975,Health,Health +250974,Health,Health +250973,Health,Health +250972,Health,Health +250971,Health,Health +250970,Health,Health +250969,Health,Health +250968,Health,Health +250967,Health,Health +250966,Health,Health +250965,Health,Health +250964,Health,Health +250963,Health,Health +250962,Health,Health +250961,Health,Health +250836,Health,Health +212323,Health,Health +212320,Health,Health +212319,Health,Health +202903,Health,Health +202902,Health,Health +202900,Health,Health +202899,Health,Health +202895,Health,Health +202893,Health,Health +202892,Health,Health +202891,Health,Health +202887,Health,Health +200417,Health,Health +200412,Health,Health +200410,Health,Health +200407,Health,Health +200405,Health,Health +200399,Health,Health +200396,Health,Health +200393,Health,Health +200389,Health,Health +200386,Health,Health +200383,Health,Health +200380,Health,Health +200378,Health,Health +200374,Health,Health +200372,Health,Health +200371,Health,Health +200368,Health,Health +200364,Health,Health +200362,Health,Health +200356,Health,Health +200352,Health,Health +200347,Health,Health +200344,Health,Health +200340,Health,Health +200337,Health,Health +200333,Health,Health +200330,Health,Health +200329,Health,Health +200325,Health,Health +200324,Health,Health +200321,Health,Health +389294,Health,Health +389293,Health,Health +389292,Health,Health +389291,Health,Health +389290,Health,Health +389289,Health,Health +389288,Health,Health +389287,Health,Health +389286,Health,Health +389285,Health,Health +389283,Health,Health +389282,Health,Health +389281,Health,Health +389279,Health,Health +389278,Health,Health +389277,Health,Health +389276,Health,Health +389274,Health,Health +389273,Health,Health +389272,Health,Health +389270,Health,Health +389269,Health,Health +389268,Health,Health +389267,Health,Health +389266,Health,Health +389265,Health,Health +389263,Health,Health +389262,Health,Health +389259,Health,Health +389258,Health,Health +389257,Health,Health +389256,Health,Health +386310,Health,Health +384665,Health,Health +384462,Health,Health +384461,Health,Health +384460,Health,Health +384459,Health,Health +384096,Health,Health +384060,Health,Health +384031,Health,Health +383186,Health,Health +383179,Health,Health +383178,Health,Health +383176,Health,Health +383175,Health,Health +383174,Health,Health +382928,Health,Health +382927,Health,Health +382926,Health,Health +381822,Health,Health +379274,Health,Health +379270,Health,Health +377454,Health,Health +377397,Health,Health +377396,Health,Health +377395,Health,Health +377394,Health,Health +375304,Health,Health +375026,Health,Health +375025,Health,Health +375023,Health,Health +375022,Health,Health +375021,Health,Health +373282,Health,Health +372851,Health,Health +372847,Health,Health +371177,Health,Health +368822,Health,Health +368821,Health,Health +368816,Health,Health +368815,Health,Health +368806,Health,Health +366162,Health,Health +365431,Health,Health +364386,Health,Health +356400,Health,Health +355409,Health,Health +354178,Health,Health +354177,Health,Health +354176,Health,Health +354175,Health,Health +354174,Health,Health +354173,Health,Health +354172,Health,Health +354171,Health,Health +354170,Health,Health +354169,Health,Health +354168,Health,Health +354167,Health,Health +354166,Health,Health +354165,Health,Health +354164,Health,Health +354163,Health,Health +353642,Health,Health +352440,Health,Health +351930,Health,Health +350965,Health,Health +350204,Health,Health +349937,Health,Health +349817,Health,Health +349738,Health,Health +348924,Health,Health +348922,Health,Health +348803,Health,Health +348742,Health,Health +347780,Health,Health +344891,Health,Health +344890,Health,Health +344520,Health,Health +344518,Health,Health +344377,Health,Health +344014,Health,Health +343609,Health,Health +340793,Health,Health +340792,Health,Health +340791,Health,Health +340688,Health,Health +340686,Health,Health +340685,Health,Health +340683,Health,Health +340674,Health,Health +340672,Health,Health +340671,Health,Health +340670,Health,Health +340667,Health,Health +340666,Health,Health +340665,Health,Health +340663,Health,Health +340662,Health,Health +340661,Health,Health +340658,Health,Health +340651,Health,Health +340648,Health,Health +340645,Health,Health +340644,Health,Health +340643,Health,Health +340640,Health,Health +340639,Health,Health +340638,Health,Health +340636,Health,Health +340635,Health,Health +340634,Health,Health +340633,Health,Health +340631,Health,Health +340629,Health,Health +340628,Health,Health +340626,Health,Health +340621,Health,Health +340620,Health,Health +340616,Health,Health +340613,Health,Health +340612,Health,Health +340610,Health,Health +340609,Health,Health +340608,Health,Health +340607,Health,Health +340603,Health,Health +340593,Health,Health +338453,Health,Health +338452,Health,Health +338451,Health,Health +333617,Health,Health +333613,Health,Health +331125,Health,Health +330008,Health,Health +329330,Health,Health +327495,Health,Health +327492,Health,Health +327488,Health,Health +327485,Health,Health +324776,Health,Health +321975,Health,Health +321973,Health,Health +321966,Health,Health +318830,Health,Health +315880,Health,Health +315875,Health,Health +310732,Health,Health +310731,Health,Health +310730,Health,Health +310729,Health,Health +310728,Health,Health +310727,Health,Health +310726,Health,Health +310725,Health,Health +310724,Health,Health +310723,Health,Health +310722,Health,Health +310721,Health,Health +310720,Health,Health +310719,Health,Health +310718,Health,Health +310717,Health,Health +310716,Health,Health +310715,Health,Health +310714,Health,Health +540991,Health,Health +536191,Health,Health +535279,Health,Health +531706,Health,Health +530316,Health,Health +530297,Health,Health +530055,Health,Health +527689,Health,Health +527685,Health,Health +527681,Health,Health +527253,Health,Health +527249,Health,Health +527017,Health,Health +526944,Health,Health +526810,Health,Health +526793,Health,Health +526769,Health,Health +526748,Health,Health +526385,Health,Health +526291,Health,Health +525868,Health,Health +525867,Health,Health +525016,Health,Health +524810,Health,Health +524809,Health,Health +524790,Health,Health +524789,Health,Health +524788,Health,Health +524787,Health,Health +524786,Health,Health +524785,Health,Health +524784,Health,Health +524783,Health,Health +524782,Health,Health +524780,Health,Health +524779,Health,Health +524778,Health,Health +524777,Health,Health +524776,Health,Health +524774,Health,Health +524772,Health,Health +524771,Health,Health +524770,Health,Health +524762,Health,Health +524738,Health,Health +524736,Health,Health +524735,Health,Health +524729,Health,Health +524726,Health,Health +524725,Health,Health +524724,Health,Health +524723,Health,Health +524722,Health,Health +524448,Health,Health +524447,Health,Health +524444,Health,Health +524154,Health,Health +524153,Health,Health +524152,Health,Health +523940,Health,Health +523936,Health,Health +523935,Health,Health +523934,Health,Health +523933,Health,Health +523842,Health,Health +523841,Health,Health +523840,Health,Health +523839,Health,Health +523838,Health,Health +523837,Health,Health +521246,Health,Health +521055,Health,Health +521054,Health,Health +521053,Health,Health +520554,Health,Health +519121,Health,Health +518579,Health,Health +518512,Health,Health +518440,Health,Health +517079,Health,Health +517078,Health,Health +516696,Health,Health +516483,Health,Health +516392,Health,Health +516349,Health,Health +516101,Health,Health +515993,Health,Health +515266,Health,Health +515044,Health,Health +514938,Health,Health +511728,Health,Health +510480,Health,Health +509336,Health,Health +507252,Health,Health +506771,Health,Health +506144,Health,Health +503748,Health,Health +500887,Health,Health +500141,Health,Health +499887,Health,Health +499844,Health,Health +499225,Health,Health +498377,Health,Health +498016,Health,Health +497951,Health,Health +497382,Health,Health +497381,Health,Health +497380,Health,Health +497379,Health,Health +497378,Health,Health +497377,Health,Health +497376,Health,Health +497375,Health,Health +497374,Health,Health +497373,Health,Health +497372,Health,Health +497371,Health,Health +497370,Health,Health +497369,Health,Health +497368,Health,Health +497367,Health,Health +497366,Health,Health +497365,Health,Health +497364,Health,Health +497363,Health,Health +497362,Health,Health +497361,Health,Health +497360,Health,Health +497359,Health,Health +497357,Health,Health +497356,Health,Health +497354,Health,Health +497353,Health,Health +497347,Health,Health +497346,Health,Health +497345,Health,Health +497344,Health,Health +497343,Health,Health +497340,Health,Health +497338,Health,Health +497337,Health,Health +497336,Health,Health +497335,Health,Health +497334,Health,Health +497333,Health,Health +497331,Health,Health +497330,Health,Health +497329,Health,Health +497326,Health,Health +497325,Health,Health +497324,Health,Health +497323,Health,Health +497322,Health,Health +497321,Health,Health +497319,Health,Health +497318,Health,Health +497317,Health,Health +496401,Health,Health +496301,Health,Health +494812,Health,Health +494811,Health,Health +494727,Health,Health +488954,Health,Health +488869,Health,Health +488080,Health,Health +488049,Health,Health +487278,Health,Health +486590,Health,Health +486208,Health,Health +486073,Health,Health +485808,Health,Health +485665,Health,Health +482810,Health,Health +482797,Health,Health +482610,Health,Health +482609,Health,Health +482259,Health,Health +481741,Health,Health +481525,Health,Health +481522,Health,Health +481400,Health,Health +481399,Health,Health +481398,Health,Health +480946,Health,Health +476463,Health,Health +475020,Health,Health +474214,Health,Health +471662,Health,Health +469581,Health,Health +461053,Health,Health +459025,Health,Health +459024,Health,Health +456487,Health,Health +456486,Health,Health +456485,Health,Health +456483,Health,Health +451202,Health,Health +449114,Health,Health +449113,Health,Health +449111,Health,Health +440984,Health,Health +440983,Health,Health +440246,Health,Health +439772,Health,Health +437303,Health,Health +436382,Health,Health +436109,Health,Health +434068,Health,Health +431508,Health,Health +429906,Health,Health +427807,Health,Health +424840,Health,Health +423338,Health,Health +421541,Health,Health +418863,Health,Health +418720,Health,Health +417895,Health,Health +414861,Health,Health +414596,Health,Health +414146,Health,Health +414144,Health,Health +411151,Health,Health +411146,Health,Health +410748,Health,Health +410653,Health,Health +409381,Health,Health +408512,Health,Health +408268,Health,Health +407866,Health,Health +407865,Health,Health +407421,Health,Health +406502,Health,Health +406255,Health,Health +405977,Health,Health +405976,Health,Health +405975,Health,Health +405973,Health,Health +405971,Health,Health +404251,Health,Health +401380,Health,Health +400796,Health,Health +399971,Health,Health +399970,Health,Health +399718,Health,Health +399585,Health,Health +399528,Health,Health +399311,Health,Health +397428,Health,Health +395628,Health,Health +394720,Health,Health +394693,Health,Health +393824,Health,Health +393068,Health,Health +393016,Health,Health +392983,Health,Health +392638,Health,Health +392308,Health,Health +392307,Health,Health +392305,Health,Health +391802,Health,Health +390595,Health,Health +390592,Health,Health +526793,Immigration,Immigration +525867,Immigration,Immigration +80097,Immigration,Immigration +80094,Immigration,Immigration +524790,Immigration,Immigration +524785,Immigration,Immigration +524779,Immigration,Immigration +524778,Immigration,Immigration +524776,Immigration,Immigration +524772,Immigration,Immigration +524771,Immigration,Immigration +524770,Immigration,Immigration +524735,Immigration,Immigration +524726,Immigration,Immigration +524723,Immigration,Immigration +524722,Immigration,Immigration +524448,Immigration,Immigration +524447,Immigration,Immigration +524444,Immigration,Immigration +524154,Immigration,Immigration +524153,Immigration,Immigration +524152,Immigration,Immigration +523841,Immigration,Immigration +506771,Immigration,Immigration +527689,Immigration,Immigration +527685,Immigration,Immigration +527249,Immigration,Immigration +456485,Infrastructure,Infrastructure +175610,International Relations,International Relations +153289,International Relations,International Relations +251004,International Relations,International Relations +486073,Justice and Law Enforcement,Justice and Law Enforcement +476463,Justice and Law Enforcement,Justice and Law Enforcement +377396,Justice and Law Enforcement,Justice and Law Enforcement +377395,Justice and Law Enforcement,Justice and Law Enforcement +377394,Justice and Law Enforcement,Justice and Law Enforcement +372851,Justice and Law Enforcement,Justice and Law Enforcement +372847,Justice and Law Enforcement,Justice and Law Enforcement +371177,Justice and Law Enforcement,Justice and Law Enforcement +488080,Justice and Law Enforcement,Justice and Law Enforcement +487278,Justice and Law Enforcement,Justice and Law Enforcement +486590,Justice and Law Enforcement,Justice and Law Enforcement +523934,Labour,Labour +523933,Labour,Labour +264572,Labour,Labour +401380,Labour,Labour +393068,Labour,Labour +392638,Labour,Labour +392308,Labour,Labour +392307,Labour,Labour +392305,Labour,Labour +390595,Labour,Labour +384462,Labour,Labour +384461,Labour,Labour +384096,Labour,Labour +384060,Labour,Labour +383176,Labour,Labour +383175,Labour,Labour +383174,Labour,Labour +382928,Labour,Labour +382927,Labour,Labour +375026,Labour,Labour +518512,Labour,Labour +518440,Labour,Labour +517079,Labour,Labour +517078,Labour,Labour +516696,Labour,Labour +516349,Labour,Labour +516101,Labour,Labour +506771,Labour,Labour +527689,Labour,Labour +527249,Labour,Labour +526810,Labour,Labour +526793,Labour,Labour +526769,Labour,Labour +526385,Labour,Labour +526291,Labour,Labour +525868,Labour,Labour +525867,Labour,Labour +525016,Labour,Labour +524810,Labour,Labour +524809,Labour,Labour +524790,Labour,Labour +524789,Labour,Labour +524788,Labour,Labour +524787,Labour,Labour +524786,Labour,Labour +524785,Labour,Labour +524784,Labour,Labour +524783,Labour,Labour +524782,Labour,Labour +524780,Labour,Labour +524779,Labour,Labour +524778,Labour,Labour +524777,Labour,Labour +524776,Labour,Labour +524774,Labour,Labour +524772,Labour,Labour +524771,Labour,Labour +524770,Labour,Labour +524762,Labour,Labour +524738,Labour,Labour +524736,Labour,Labour +524735,Labour,Labour +524729,Labour,Labour +524726,Labour,Labour +524725,Labour,Labour +524724,Labour,Labour +524723,Labour,Labour +524722,Labour,Labour +524448,Labour,Labour +524447,Labour,Labour +524444,Labour,Labour +524154,Labour,Labour +524153,Labour,Labour +524152,Labour,Labour +523940,Labour,Labour +523936,Labour,Labour +521054,Taxation and Finance,Taxation and Finance +521053,Taxation and Finance,Taxation and Finance +368822,Taxation and Finance,Taxation and Finance +368821,Taxation and Finance,Taxation and Finance +368816,Taxation and Finance,Taxation and Finance +368815,Taxation and Finance,Taxation and Finance +368806,Taxation and Finance,Taxation and Finance +273633,Taxation and Finance,Taxation and Finance +264572,Taxation and Finance,Taxation and Finance +392308,Taxation and Finance,Taxation and Finance +392307,Taxation and Finance,Taxation and Finance +392305,Taxation and Finance,Taxation and Finance +391802,Taxation and Finance,Taxation and Finance +389533,Taxation and Finance,Taxation and Finance +389296,Taxation and Finance,Taxation and Finance +389295,Taxation and Finance,Taxation and Finance +389294,Taxation and Finance,Taxation and Finance +389293,Taxation and Finance,Taxation and Finance +389292,Taxation and Finance,Taxation and Finance +389291,Taxation and Finance,Taxation and Finance +389290,Taxation and Finance,Taxation and Finance +389289,Taxation and Finance,Taxation and Finance +389288,Taxation and Finance,Taxation and Finance +389287,Taxation and Finance,Taxation and Finance +389286,Taxation and Finance,Taxation and Finance +389285,Taxation and Finance,Taxation and Finance +389283,Taxation and Finance,Taxation and Finance +389282,Taxation and Finance,Taxation and Finance +389281,Taxation and Finance,Taxation and Finance +389279,Taxation and Finance,Taxation and Finance +389278,Taxation and Finance,Taxation and Finance +389277,Taxation and Finance,Taxation and Finance +389276,Taxation and Finance,Taxation and Finance +389274,Taxation and Finance,Taxation and Finance +389273,Taxation and Finance,Taxation and Finance +389272,Taxation and Finance,Taxation and Finance +389270,Taxation and Finance,Taxation and Finance +389269,Taxation and Finance,Taxation and Finance +389268,Taxation and Finance,Taxation and Finance +389267,Taxation and Finance,Taxation and Finance +389266,Taxation and Finance,Taxation and Finance +389265,Taxation and Finance,Taxation and Finance +389263,Taxation and Finance,Taxation and Finance +389262,Taxation and Finance,Taxation and Finance +389259,Taxation and Finance,Taxation and Finance +389258,Taxation and Finance,Taxation and Finance +389257,Taxation and Finance,Taxation and Finance +389256,Taxation and Finance,Taxation and Finance +386310,Taxation and Finance,Taxation and Finance +384665,Taxation and Finance,Taxation and Finance +384462,Taxation and Finance,Taxation and Finance +384096,Taxation and Finance,Taxation and Finance +384060,Taxation and Finance,Taxation and Finance +383179,Taxation and Finance,Taxation and Finance +383178,Taxation and Finance,Taxation and Finance +383176,Taxation and Finance,Taxation and Finance +383175,Taxation and Finance,Taxation and Finance +383174,Taxation and Finance,Taxation and Finance +375026,Taxation and Finance,Taxation and Finance +506144,Taxation and Finance,Taxation and Finance +482797,Taxation and Finance,Taxation and Finance +476843,Taxation and Finance,Taxation and Finance +424840,Taxation and Finance,Taxation and Finance +393824,Taxation and Finance,Taxation and Finance +393068,Taxation and Finance,Taxation and Finance +392638,Taxation and Finance,Taxation and Finance +535279,Taxation and Finance,Taxation and Finance +530316,Taxation and Finance,Taxation and Finance +527689,Taxation and Finance,Taxation and Finance +527685,Taxation and Finance,Taxation and Finance +527681,Taxation and Finance,Taxation and Finance +527249,Taxation and Finance,Taxation and Finance +526810,Taxation and Finance,Taxation and Finance +526793,Taxation and Finance,Taxation and Finance +526769,Taxation and Finance,Taxation and Finance +526385,Taxation and Finance,Taxation and Finance +526291,Taxation and Finance,Taxation and Finance +525868,Taxation and Finance,Taxation and Finance +525867,Taxation and Finance,Taxation and Finance +525016,Taxation and Finance,Taxation and Finance +524810,Taxation and Finance,Taxation and Finance +524809,Taxation and Finance,Taxation and Finance +524790,Taxation and Finance,Taxation and Finance +524789,Taxation and Finance,Taxation and Finance +524788,Taxation and Finance,Taxation and Finance +524787,Taxation and Finance,Taxation and Finance +524786,Taxation and Finance,Taxation and Finance +524785,Taxation and Finance,Taxation and Finance +524784,Taxation and Finance,Taxation and Finance +524783,Taxation and Finance,Taxation and Finance +524782,Taxation and Finance,Taxation and Finance +524780,Taxation and Finance,Taxation and Finance +524779,Taxation and Finance,Taxation and Finance +524778,Taxation and Finance,Taxation and Finance +524777,Taxation and Finance,Taxation and Finance +524776,Taxation and Finance,Taxation and Finance +524774,Taxation and Finance,Taxation and Finance +524772,Taxation and Finance,Taxation and Finance +524771,Taxation and Finance,Taxation and Finance +524770,Taxation and Finance,Taxation and Finance +524762,Taxation and Finance,Taxation and Finance +524738,Taxation and Finance,Taxation and Finance +524736,Taxation and Finance,Taxation and Finance +524735,Taxation and Finance,Taxation and Finance +524729,Taxation and Finance,Taxation and Finance +524726,Taxation and Finance,Taxation and Finance +524725,Taxation and Finance,Taxation and Finance +524724,Taxation and Finance,Taxation and Finance +524723,Taxation and Finance,Taxation and Finance +524722,Taxation and Finance,Taxation and Finance +524448,Taxation and Finance,Taxation and Finance +524447,Taxation and Finance,Taxation and Finance +524444,Taxation and Finance,Taxation and Finance +524154,Taxation and Finance,Taxation and Finance +524153,Taxation and Finance,Taxation and Finance +524152,Taxation and Finance,Taxation and Finance +523940,Taxation and Finance,Taxation and Finance +523936,Taxation and Finance,Taxation and Finance +523935,Taxation and Finance,Taxation and Finance +523934,Taxation and Finance,Taxation and Finance +523933,Taxation and Finance,Taxation and Finance +523842,Taxation and Finance,Taxation and Finance +523841,Taxation and Finance,Taxation and Finance +523840,Taxation and Finance,Taxation and Finance +523839,Taxation and Finance,Taxation and Finance +523838,Taxation and Finance,Taxation and Finance +523837,Taxation and Finance,Taxation and Finance +76799,Transportation,Transportation +215813,Constitutional Issues,Constitutional Issues +156641,Defence,Defence +422865,Defence,Defence +163583,Defence,Defence +298049,Education,Education +393225,Education,Education +539417,Employment and Training,Employment and Training +536732,Employment and Training,Employment and Training +111875,Employment and Training,Employment and Training +161240,Employment and Training,Employment and Training +157510,Employment and Training,Employment and Training +157485,Employment and Training,Employment and Training +156954,Employment and Training,Employment and Training +156643,Employment and Training,Employment and Training +156641,Employment and Training,Employment and Training +156640,Employment and Training,Employment and Training +153237,Employment and Training,Employment and Training +148643,Employment and Training,Employment and Training +146328,Employment and Training,Employment and Training +145578,Employment and Training,Employment and Training +192070,Employment and Training,Employment and Training +192069,Employment and Training,Employment and Training +176131,Employment and Training,Employment and Training +176130,Employment and Training,Employment and Training +176128,Employment and Training,Employment and Training +176127,Employment and Training,Employment and Training +168581,Employment and Training,Employment and Training +163583,Employment and Training,Employment and Training +163579,Employment and Training,Employment and Training +340427,Employment and Training,Employment and Training +339450,Employment and Training,Employment and Training +334833,Employment and Training,Employment and Training +334563,Employment and Training,Employment and Training +333795,Employment and Training,Employment and Training +307890,Employment and Training,Employment and Training +306169,Employment and Training,Employment and Training +298049,Employment and Training,Employment and Training +298029,Employment and Training,Employment and Training +293951,Employment and Training,Employment and Training +287810,Employment and Training,Employment and Training +261510,Employment and Training,Employment and Training +260890,Employment and Training,Employment and Training +260549,Employment and Training,Employment and Training +255972,Employment and Training,Employment and Training +255970,Employment and Training,Employment and Training +255969,Employment and Training,Employment and Training +247809,Employment and Training,Employment and Training +244969,Employment and Training,Employment and Training +244387,Employment and Training,Employment and Training +239771,Employment and Training,Employment and Training +239770,Employment and Training,Employment and Training +239769,Employment and Training,Employment and Training +224157,Employment and Training,Employment and Training +224155,Employment and Training,Employment and Training +224153,Employment and Training,Employment and Training +224151,Employment and Training,Employment and Training +221369,Employment and Training,Employment and Training +204888,Employment and Training,Employment and Training +370112,Employment and Training,Employment and Training +370073,Employment and Training,Employment and Training +368176,Employment and Training,Employment and Training +368169,Employment and Training,Employment and Training +368168,Employment and Training,Employment and Training +368167,Employment and Training,Employment and Training +368165,Employment and Training,Employment and Training +353295,Employment and Training,Employment and Training +353293,Employment and Training,Employment and Training +353292,Employment and Training,Employment and Training +353290,Employment and Training,Employment and Training +512774,Employment and Training,Employment and Training +511050,Employment and Training,Employment and Training +507169,Employment and Training,Employment and Training +507168,Employment and Training,Employment and Training +507165,Employment and Training,Employment and Training +507163,Employment and Training,Employment and Training +506387,Employment and Training,Employment and Training +500467,Employment and Training,Employment and Training +499976,Employment and Training,Employment and Training +497633,Employment and Training,Employment and Training +497461,Employment and Training,Employment and Training +496533,Employment and Training,Employment and Training +494438,Employment and Training,Employment and Training +493024,Employment and Training,Employment and Training +492513,Employment and Training,Employment and Training +488010,Employment and Training,Employment and Training +488002,Employment and Training,Employment and Training +484804,Employment and Training,Employment and Training +480782,Employment and Training,Employment and Training +476297,Employment and Training,Employment and Training +471471,Employment and Training,Employment and Training +470918,Employment and Training,Employment and Training +456575,Employment and Training,Employment and Training +449804,Employment and Training,Employment and Training +449803,Employment and Training,Employment and Training +449802,Employment and Training,Employment and Training +449799,Employment and Training,Employment and Training +444843,Employment and Training,Employment and Training +436242,Employment and Training,Employment and Training +435412,Employment and Training,Employment and Training +435411,Employment and Training,Employment and Training +428524,Employment and Training,Employment and Training +428521,Employment and Training,Employment and Training +424988,Employment and Training,Employment and Training +422865,Employment and Training,Employment and Training +406126,Employment and Training,Employment and Training +406125,Employment and Training,Employment and Training +406124,Employment and Training,Employment and Training +406121,Employment and Training,Employment and Training +393225,Employment and Training,Employment and Training +392981,Employment and Training,Employment and Training +390623,Employment and Training,Employment and Training +386352,Employment and Training,Employment and Training +386351,Employment and Training,Employment and Training +382444,Employment and Training,Employment and Training +378265,Employment and Training,Employment and Training +377815,Employment and Training,Employment and Training +377813,Employment and Training,Employment and Training +377811,Employment and Training,Employment and Training +377449,Employment and Training,Employment and Training +373691,Employment and Training,Employment and Training +471801,Energy,Energy +468994,Energy,Energy +204868,Energy,Energy +204867,Energy,Energy +192069,Energy,Energy +192067,Energy,Energy +192066,Energy,Energy +176132,Energy,Energy +176131,Energy,Energy +176130,Energy,Energy +168581,Energy,Energy +168580,Energy,Energy +168578,Energy,Energy +168576,Energy,Energy +168570,Energy,Energy +168562,Energy,Energy +161250,Energy,Energy +161249,Energy,Energy +161247,Energy,Energy +161245,Energy,Energy +161243,Energy,Energy +161242,Energy,Energy +161240,Energy,Energy +161239,Energy,Energy +160664,Energy,Energy +158180,Energy,Energy +255969,Energy,Energy +247809,Energy,Energy +242110,Energy,Energy +239771,Energy,Energy +233110,Energy,Energy +224153,Energy,Energy +224152,Energy,Energy +222453,Energy,Energy +218867,Energy,Energy +456575,Energy,Energy +447382,Energy,Energy +436244,Energy,Energy +430275,Energy,Energy +430274,Energy,Energy +430271,Energy,Energy +424795,Energy,Energy +392915,Energy,Energy +378265,Energy,Energy +377811,Energy,Energy +521866,Energy,Energy +516945,Energy,Energy +507168,Energy,Energy +507165,Energy,Energy +507163,Energy,Energy +506848,Energy,Energy +506743,Energy,Energy +506388,Energy,Energy +506264,Energy,Energy +503216,Energy,Energy +497634,Energy,Energy +321863,Defence,Defence +387950,Government Procurement,Government Procurement +378928,Agriculture,Agriculture +319234,Consumer Issues,Consumer Issues +378928,Energy,Energy +324929,Environment,Environment +355401,Financial Institutions,Financial Institutions +338052,Forestry,Forestry +335905,Health,Health +378927,Industry,Industry +304061,International Trade,International Trade +347885,Regional Development,Regional Development +347884,Taxation and Finance,Taxation and Finance +378928,Transportation,Transportation +120040,Industry,Industry +83042,Industry,Industry +322851,Environment,Environment +387680,Industry,Industry +409667,International Trade,International Trade +428980,Taxation and Finance,Taxation and Finance +333130,Health,Health +77184,Consumer Issues,Consumer Issues +469890,Employment and Training,Employment and Training +80938,Environment,Environment +472906,Health,Health +466024,Immigration,Immigration +294890,Justice and Law Enforcement,Justice and Law Enforcement +438580,Taxation and Finance,Taxation and Finance +153018,Agriculture,Agriculture +341862,Consumer Issues,Consumer Issues +523225,Health,Health +429565,Internal Trade,Internal Trade +148236,International Relations,International Relations +462750,International Trade,International Trade +97425,Small Business,Small Business +511340,Taxation and Finance,Taxation and Finance +153018,Tourism,Tourism +95856,Energy,Energy +95855,Environment,Environment +95878,Infrastructure,Infrastructure +225327,Health,Health +92534,Consumer Issues,Consumer Issues +121155,Infrastructure,Infrastructure +247530,Government Procurement,Government Procurement +80375,Other,"Housing, community development" +169155,Government Procurement,Government Procurement +83374,Industry,Industry +82414,Energy,Energy +76614,Environment,Environment +80217,Energy,Energy +103519,Environment,Environment +103514,International Trade,International Trade +395840,Energy,Energy +395840,Environment,Environment +342897,Government Procurement,Government Procurement +109534,Health,Health +419704,Industry,Industry +450171,Regional Development,Regional Development +382110,Transportation,Transportation +155808,Health,Health +326898,Employment and Training,Employment and Training +326898,Government Procurement,Government Procurement +80034,Defence,Defence +93018,Government Procurement,Government Procurement +80034,Transportation,Transportation +441310,Consumer Issues,Consumer Issues +421969,Financial Institutions,Financial Institutions +375525,Industry,Industry +75795,Financial Institutions,Financial Institutions +75794,Financial Institutions,Financial Institutions +101176,Intellectual Property,Intellectual Property +503187,Employment and Training,Employment and Training +391905,Justice and Law Enforcement,Justice and Law Enforcement +471514,Labour,Labour +499879,Transportation,Transportation +148268,Industry,Industry +76938,Intellectual Property,Intellectual Property +259517,Justice and Law Enforcement,Justice and Law Enforcement +75634,Defence,Defence +75634,Government Procurement,Government Procurement +428719,Agriculture,Agriculture +405980,Agriculture,Agriculture +466263,Environment,Environment +442354,Fisheries,Fisheries +352824,Industry,Industry +417048,Justice and Law Enforcement,Justice and Law Enforcement +378221,Tourism,Tourism +79395,Defence,Defence +76376,Labour,Labour +341221,Government Procurement,Government Procurement +97327,Labour,Labour +527685,Education,Education +488049,Employment and Training,Employment and Training +389533,Health,Health +526810,Immigration,Immigration +373282,Infrastructure,Infrastructure +200417,International Relations,International Relations +486208,Justice and Law Enforcement,Justice and Law Enforcement +523935,Labour,Labour +521246,Taxation and Finance,Taxation and Finance +76800,Transportation,Transportation +260889,Constitutional Issues,Constitutional Issues +156643,Defence,Defence +370112,Education,Education +540372,Employment and Training,Employment and Training +483571,Energy,Energy +386354,Environment,Environment +368168,Government Procurement,Government Procurement +470926,Health,Health +503128,Immigration,Immigration +521866,Infrastructure,Infrastructure +235309,Internal Trade,Internal Trade +406127,International Trade,International Trade +466221,Labour,Labour +192067,Mining,Mining +378265,Regional Development,Regional Development +508519,Taxation and Finance,Taxation and Finance +534696,Transportation,Transportation +188940,Environment,Environment +195230,International Relations,International Relations +465165,International Trade,International Trade +485194,Taxation and Finance,Taxation and Finance +81056,Other,Aid and Peace Building +505975,Education,Education +193560,Employment and Training,Employment and Training +391844,Health,Health +353166,Immigration,Immigration +92134,Internal Trade,Internal Trade +280830,Agriculture,Agriculture +275796,International Trade,International Trade +521710,Intellectual Property,Intellectual Property +512227,International Relations,International Relations +125455,Environment,Environment +75495,International Relations,International Relations +76916,Industry,Industry +497632,Energy,Energy +497469,Energy,Energy +496579,Energy,Energy +496535,Energy,Energy +496533,Energy,Energy +496532,Energy,Energy +494996,Energy,Energy +494441,Energy,Energy +493873,Energy,Energy +491930,Energy,Energy +485714,Energy,Energy +436244,Environment,Environment +524578,Environment,Environment +161250,Environment,Environment +161249,Environment,Environment +161247,Environment,Environment +161245,Environment,Environment +161243,Environment,Environment +160664,Environment,Environment +158180,Environment,Environment +222453,Environment,Environment +204867,Environment,Environment +168581,Environment,Environment +168580,Environment,Environment +168578,Environment,Environment +168576,Environment,Environment +293951,Government Procurement,Government Procurement +539418,Government Procurement,Government Procurement +77994,Government Procurement,Government Procurement +148642,Government Procurement,Government Procurement +145578,Government Procurement,Government Procurement +142374,Government Procurement,Government Procurement +393225,Government Procurement,Government Procurement +382444,Government Procurement,Government Procurement +469183,Health,Health +468994,Health,Health +489740,Health,Health +488505,Health,Health +471471,Health,Health +493027,Immigration,Immigration +488010,Immigration,Immigration +293951,Immigration,Immigration +276350,Immigration,Immigration +255969,Immigration,Immigration +192070,Immigration,Immigration +176128,Immigration,Immigration +168578,Immigration,Immigration +428524,Immigration,Immigration +390623,Immigration,Immigration +386352,Immigration,Immigration +373276,Immigration,Immigration +353293,Immigration,Immigration +334833,Immigration,Immigration +334563,Immigration,Immigration +541784,Immigration,Immigration +540372,Immigration,Immigration +539413,Immigration,Immigration +536733,Immigration,Immigration +536732,Immigration,Immigration +534693,Immigration,Immigration +506744,Immigration,Immigration +521865,Infrastructure,Infrastructure +511050,Infrastructure,Infrastructure +204868,Infrastructure,Infrastructure +156128,Infrastructure,Infrastructure +406120,Infrastructure,Infrastructure +393225,Infrastructure,Infrastructure +382444,Infrastructure,Infrastructure +377449,Infrastructure,Infrastructure +368176,Infrastructure,Infrastructure +506388,Infrastructure,Infrastructure +506328,Infrastructure,Infrastructure +506266,Infrastructure,Infrastructure +506264,Infrastructure,Infrastructure +503322,Infrastructure,Infrastructure +503275,Infrastructure,Infrastructure +503218,Infrastructure,Infrastructure +503129,Infrastructure,Infrastructure +500012,Infrastructure,Infrastructure +499976,Infrastructure,Infrastructure +499974,Infrastructure,Infrastructure +499356,Infrastructure,Infrastructure +497632,Infrastructure,Infrastructure +497470,Infrastructure,Infrastructure +496533,Infrastructure,Infrastructure +496532,Infrastructure,Infrastructure +494995,Infrastructure,Infrastructure +494439,Infrastructure,Infrastructure +494438,Infrastructure,Infrastructure +492506,Infrastructure,Infrastructure +491929,Infrastructure,Infrastructure +489739,Infrastructure,Infrastructure +489356,Infrastructure,Infrastructure +489262,Infrastructure,Infrastructure +489063,Infrastructure,Infrastructure +488941,Infrastructure,Infrastructure +488508,Infrastructure,Infrastructure +486085,Infrastructure,Infrastructure +485714,Infrastructure,Infrastructure +484804,Infrastructure,Infrastructure +483746,Infrastructure,Infrastructure +483571,Infrastructure,Infrastructure +480782,Infrastructure,Infrastructure +476297,Infrastructure,Infrastructure +445097,Infrastructure,Infrastructure +430275,Infrastructure,Infrastructure +430274,Infrastructure,Infrastructure +430271,Infrastructure,Infrastructure +424506,Infrastructure,Infrastructure +534696,Infrastructure,Infrastructure +524946,Infrastructure,Infrastructure +524578,Infrastructure,Infrastructure +524577,Infrastructure,Infrastructure +406123,International Trade,International Trade +531135,International Trade,International Trade +382444,International Trade,International Trade +373276,International Trade,International Trade +334833,International Trade,International Trade +509733,International Trade,International Trade +439878,International Trade,International Trade +435410,International Trade,International Trade +428521,International Trade,International Trade +424988,International Trade,International Trade +419511,International Trade,International Trade +414423,International Trade,International Trade +408734,International Trade,International Trade +407139,International Trade,International Trade +406130,International Trade,International Trade +406129,International Trade,International Trade +406128,International Trade,International Trade +456575,Labour,Labour +447382,Labour,Labour +168581,Labour,Labour +168580,Labour,Labour +163583,Labour,Labour +157510,Labour,Labour +153237,Labour,Labour +111875,Labour,Labour +77994,Labour,Labour +224153,Labour,Labour +224152,Labour,Labour +224151,Labour,Labour +222453,Labour,Labour +222452,Labour,Labour +221367,Labour,Labour +218867,Labour,Labour +215813,Labour,Labour +215649,Labour,Labour +215648,Labour,Labour +215647,Labour,Labour +213549,Labour,Labour +204888,Labour,Labour +204887,Labour,Labour +204868,Labour,Labour +204529,Labour,Labour +204528,Labour,Labour +204527,Labour,Labour +192069,Labour,Labour +192067,Labour,Labour +192066,Labour,Labour +192065,Labour,Labour +176132,Labour,Labour +176131,Labour,Labour +176130,Labour,Labour +176129,Labour,Labour +176128,Labour,Labour +176127,Labour,Labour +293951,Labour,Labour +265692,Labour,Labour +261510,Labour,Labour +260890,Labour,Labour +260889,Labour,Labour +260549,Labour,Labour +255971,Labour,Labour +254333,Labour,Labour +254331,Labour,Labour +254328,Labour,Labour +248030,Labour,Labour +248029,Labour,Labour +248010,Labour,Labour +248009,Labour,Labour +247812,Labour,Labour +247811,Labour,Labour +247809,Labour,Labour +244971,Labour,Labour +244969,Labour,Labour +242110,Labour,Labour +239771,Labour,Labour +239770,Labour,Labour +235309,Labour,Labour +233112,Labour,Labour +233110,Labour,Labour +224157,Labour,Labour +224155,Labour,Labour +439880,Labour,Labour +436243,Labour,Labour +436242,Labour,Labour +436241,Labour,Labour +430275,Labour,Labour +430274,Labour,Labour +430271,Labour,Labour +428524,Labour,Labour +428521,Labour,Labour +392915,Labour,Labour +390623,Labour,Labour +386352,Labour,Labour +386351,Labour,Labour +377815,Labour,Labour +377811,Labour,Labour +373691,Labour,Labour +373276,Labour,Labour +369112,Labour,Labour +368169,Labour,Labour +368165,Labour,Labour +363281,Labour,Labour +363204,Labour,Labour +358345,Labour,Labour +354360,Labour,Labour +353296,Labour,Labour +353290,Labour,Labour +340427,Labour,Labour +307890,Labour,Labour +306169,Labour,Labour +541784,Labour,Labour +541780,Labour,Labour +540372,Labour,Labour +539419,Labour,Labour +539418,Labour,Labour +539415,Labour,Labour +539414,Labour,Labour +539413,Labour,Labour +536733,Labour,Labour +536732,Labour,Labour +534696,Labour,Labour +534693,Labour,Labour +531135,Labour,Labour +527181,Labour,Labour +527180,Labour,Labour +524946,Labour,Labour +524938,Labour,Labour +524578,Labour,Labour +524577,Labour,Labour +524575,Labour,Labour +521870,Labour,Labour +521868,Labour,Labour +521866,Labour,Labour +521865,Labour,Labour +520450,Labour,Labour +520449,Labour,Labour +519295,Labour,Labour +519290,Labour,Labour +516945,Labour,Labour +512776,Labour,Labour +508519,Labour,Labour +507169,Labour,Labour +506848,Labour,Labour +506744,Labour,Labour +506743,Labour,Labour +506388,Labour,Labour +506328,Labour,Labour +506264,Labour,Labour +503129,Labour,Labour +499976,Labour,Labour +497469,Labour,Labour +497465,Labour,Labour +496533,Labour,Labour +496532,Labour,Labour +492506,Labour,Labour +489356,Labour,Labour +489262,Labour,Labour +488941,Labour,Labour +488505,Labour,Labour +488002,Labour,Labour +485714,Labour,Labour +484804,Labour,Labour +483746,Labour,Labour +483571,Labour,Labour +480782,Labour,Labour +474007,Labour,Labour +471801,Labour,Labour +471471,Labour,Labour +470926,Labour,Labour +470918,Labour,Labour +469183,Labour,Labour +468994,Labour,Labour +235309,Mining,Mining +370112,Regional Development,Regional Development +215649,Regional Development,Regional Development +168580,Regional Development,Regional Development +386354,Regional Development,Regional Development +406122,Taxation and Finance,Taxation and Finance +392915,Taxation and Finance,Taxation and Finance +145578,Taxation and Finance,Taxation and Finance +192067,Taxation and Finance,Taxation and Finance +176132,Taxation and Finance,Taxation and Finance +176131,Taxation and Finance,Taxation and Finance +176129,Taxation and Finance,Taxation and Finance +176128,Taxation and Finance,Taxation and Finance +176127,Taxation and Finance,Taxation and Finance +156954,Taxation and Finance,Taxation and Finance +148643,Taxation and Finance,Taxation and Finance +369112,Taxation and Finance,Taxation and Finance +368168,Taxation and Finance,Taxation and Finance +368167,Taxation and Finance,Taxation and Finance +363281,Taxation and Finance,Taxation and Finance +363204,Taxation and Finance,Taxation and Finance +358345,Taxation and Finance,Taxation and Finance +354360,Taxation and Finance,Taxation and Finance +340427,Taxation and Finance,Taxation and Finance +339450,Taxation and Finance,Taxation and Finance +306169,Taxation and Finance,Taxation and Finance +298049,Taxation and Finance,Taxation and Finance +298029,Taxation and Finance,Taxation and Finance +287810,Taxation and Finance,Taxation and Finance +265692,Taxation and Finance,Taxation and Finance +260889,Taxation and Finance,Taxation and Finance +260549,Taxation and Finance,Taxation and Finance +255970,Taxation and Finance,Taxation and Finance +254333,Taxation and Finance,Taxation and Finance +254331,Taxation and Finance,Taxation and Finance +254328,Taxation and Finance,Taxation and Finance +248030,Taxation and Finance,Taxation and Finance +248029,Taxation and Finance,Taxation and Finance +248010,Taxation and Finance,Taxation and Finance +248009,Taxation and Finance,Taxation and Finance +247812,Taxation and Finance,Taxation and Finance +247811,Taxation and Finance,Taxation and Finance +244971,Taxation and Finance,Taxation and Finance +244969,Taxation and Finance,Taxation and Finance +242110,Taxation and Finance,Taxation and Finance +235309,Taxation and Finance,Taxation and Finance +233112,Taxation and Finance,Taxation and Finance +224157,Taxation and Finance,Taxation and Finance +224155,Taxation and Finance,Taxation and Finance +222452,Taxation and Finance,Taxation and Finance +221367,Taxation and Finance,Taxation and Finance +218867,Taxation and Finance,Taxation and Finance +215813,Taxation and Finance,Taxation and Finance +215648,Taxation and Finance,Taxation and Finance +215647,Taxation and Finance,Taxation and Finance +204887,Taxation and Finance,Taxation and Finance +204867,Taxation and Finance,Taxation and Finance +521870,Taxation and Finance,Taxation and Finance +521868,Taxation and Finance,Taxation and Finance +521866,Taxation and Finance,Taxation and Finance +520450,Taxation and Finance,Taxation and Finance +520449,Taxation and Finance,Taxation and Finance +519290,Taxation and Finance,Taxation and Finance +188926,Environment,Environment +195228,International Relations,International Relations +465161,International Trade,International Trade +460779,International Trade,International Trade +159868,International Trade,International Trade +159861,International Trade,International Trade +157141,International Trade,International Trade +157136,International Trade,International Trade +199933,International Trade,International Trade +195230,International Trade,International Trade +195229,International Trade,International Trade +195226,International Trade,International Trade +316133,International Trade,International Trade +316132,International Trade,International Trade +302473,International Trade,International Trade +273957,International Trade,International Trade +223552,International Trade,International Trade +398618,International Trade,International Trade +397594,International Trade,International Trade +374870,International Trade,International Trade +338475,International Trade,International Trade +430526,International Trade,International Trade +426306,International Trade,International Trade +425896,International Trade,International Trade +402226,International Trade,International Trade +465172,International Trade,International Trade +409823,Taxation and Finance,Taxation and Finance +408091,Taxation and Finance,Taxation and Finance +159854,Taxation and Finance,Taxation and Finance +230110,Taxation and Finance,Taxation and Finance +188926,Taxation and Finance,Taxation and Finance +392618,Taxation and Finance,Taxation and Finance +387837,Taxation and Finance,Taxation and Finance +387832,Taxation and Finance,Taxation and Finance +387827,Taxation and Finance,Taxation and Finance +385531,Taxation and Finance,Taxation and Finance +385528,Taxation and Finance,Taxation and Finance +374879,Taxation and Finance,Taxation and Finance +536131,Taxation and Finance,Taxation and Finance +536130,Taxation and Finance,Taxation and Finance +536128,Taxation and Finance,Taxation and Finance +534639,Taxation and Finance,Taxation and Finance +534635,Taxation and Finance,Taxation and Finance +534634,Taxation and Finance,Taxation and Finance +534633,Taxation and Finance,Taxation and Finance +534632,Taxation and Finance,Taxation and Finance +534630,Taxation and Finance,Taxation and Finance +534629,Taxation and Finance,Taxation and Finance +534628,Taxation and Finance,Taxation and Finance +532193,Taxation and Finance,Taxation and Finance +532188,Taxation and Finance,Taxation and Finance +532186,Taxation and Finance,Taxation and Finance +529924,Taxation and Finance,Taxation and Finance +529881,Taxation and Finance,Taxation and Finance +529880,Taxation and Finance,Taxation and Finance +529879,Taxation and Finance,Taxation and Finance +505974,Education,Education +424611,Education,Education +92134,Education,Education +161344,Education,Education +344591,Education,Education +333348,Education,Education +326369,Education,Education +326329,Education,Education +301370,Education,Education +295670,Education,Education +295669,Education,Education +275649,Education,Education +266711,Education,Education +236412,Education,Education +391845,Education,Education +375260,Education,Education +353167,Education,Education +353166,Education,Education +540280,Education,Education +540278,Education,Education +505976,Education,Education +193559,Employment and Training,Employment and Training +193558,Employment and Training,Employment and Training +193557,Employment and Training,Employment and Training +193556,Employment and Training,Employment and Training +193555,Employment and Training,Employment and Training +193554,Employment and Training,Employment and Training +193553,Employment and Training,Employment and Training +193552,Employment and Training,Employment and Training +193551,Employment and Training,Employment and Training +193550,Employment and Training,Employment and Training +193549,Employment and Training,Employment and Training +193548,Employment and Training,Employment and Training +193547,Employment and Training,Employment and Training +193546,Employment and Training,Employment and Training +193545,Employment and Training,Employment and Training +193544,Employment and Training,Employment and Training +193543,Employment and Training,Employment and Training +193542,Employment and Training,Employment and Training +193541,Employment and Training,Employment and Training +193540,Employment and Training,Employment and Training +391845,Employment and Training,Employment and Training +375260,Employment and Training,Employment and Training +353167,Employment and Training,Employment and Training +353166,Employment and Training,Employment and Training +344591,Employment and Training,Employment and Training +333348,Employment and Training,Employment and Training +326369,Employment and Training,Employment and Training +326329,Employment and Training,Employment and Training +301370,Employment and Training,Employment and Training +295670,Employment and Training,Employment and Training +295669,Employment and Training,Employment and Training +290229,Employment and Training,Employment and Training +266711,Employment and Training,Employment and Training +540280,Employment and Training,Employment and Training +540278,Employment and Training,Employment and Training +505975,Employment and Training,Employment and Training +424611,Employment and Training,Employment and Training +540280,Health,Health +540278,Health,Health +92134,Health,Health +222433,Health,Health +222432,Health,Health +222431,Health,Health +222429,Health,Health +222427,Health,Health +375260,Health,Health +353167,Health,Health +353166,Health,Health +344591,Health,Health +333348,Health,Health +326369,Health,Health +326329,Health,Health +301370,Health,Health +295670,Health,Health +295669,Health,Health +290229,Health,Health +285469,Health,Health +275649,Health,Health +236412,Health,Health +232173,Health,Health +232170,Health,Health +222443,Health,Health +222441,Health,Health +222440,Health,Health +222439,Health,Health +222438,Health,Health +222437,Health,Health +222436,Health,Health +222435,Health,Health +222434,Health,Health +514835,Health,Health +505976,Health,Health +505975,Health,Health +505974,Health,Health +424611,Health,Health +401672,Health,Health +401658,Health,Health +344591,Immigration,Immigration +505976,Immigration,Immigration +232173,Immigration,Immigration +232170,Immigration,Immigration +333348,Immigration,Immigration +326369,Immigration,Immigration +326329,Immigration,Immigration +301370,Immigration,Immigration +295670,Immigration,Immigration +295669,Immigration,Immigration +290229,Immigration,Immigration +275649,Immigration,Immigration +266711,Immigration,Immigration +236412,Immigration,Immigration +375260,Immigration,Immigration +353167,Immigration,Immigration +280829,Agriculture,Agriculture +541246,Agriculture,Agriculture +199669,Agriculture,Agriculture +192746,Agriculture,Agriculture +192744,Agriculture,Agriculture +343805,Agriculture,Agriculture +280835,Agriculture,Agriculture +280834,Agriculture,Agriculture +280832,Agriculture,Agriculture +280831,Agriculture,Agriculture +536793,International Trade,International Trade +512227,International Trade,International Trade +245198,International Trade,International Trade +216196,International Trade,International Trade +334574,International Trade,International Trade +333232,International Trade,International Trade +321314,International Trade,International Trade +321313,International Trade,International Trade +321312,International Trade,International Trade +321311,International Trade,International Trade +321309,International Trade,International Trade +316332,International Trade,International Trade +316331,International Trade,International Trade +306249,International Trade,International Trade +299250,International Trade,International Trade +299249,International Trade,International Trade +282330,International Trade,International Trade +280890,International Trade,International Trade +280889,International Trade,International Trade +280888,International Trade,International Trade +280887,International Trade,International Trade +280886,International Trade,International Trade +276533,International Trade,International Trade +276049,International Trade,International Trade +276019,International Trade,International Trade +275797,International Trade,International Trade +521709,Intellectual Property,Intellectual Property +457610,International Relations,International Relations +443647,International Relations,International Relations +192870,International Relations,International Relations +192869,International Relations,International Relations +192868,International Relations,International Relations +192867,International Relations,International Relations +192866,International Relations,International Relations +192864,International Relations,International Relations +192846,International Relations,International Relations +192845,International Relations,International Relations +192844,International Relations,International Relations +192824,International Relations,International Relations +330312,International Relations,International Relations +323962,International Relations,International Relations +314890,International Relations,International Relations +307430,International Relations,International Relations +307429,International Relations,International Relations +306249,International Relations,International Relations +299233,International Relations,International Relations +280833,International Relations,International Relations +280830,International Relations,International Relations +280829,International Relations,International Relations +276049,International Relations,International Relations +248430,International Relations,International Relations +245236,International Relations,International Relations +245217,International Relations,International Relations +242210,International Relations,International Relations +216188,International Relations,International Relations +216181,International Relations,International Relations +216179,International Relations,International Relations +203490,International Relations,International Relations +523178,International Relations,International Relations +102314,Environment,Environment +173907,Environment,Environment +125458,Environment,Environment +76915,Industry,Industry +439285,Agriculture,Agriculture +439284,Agriculture,Agriculture +88834,Agriculture,Agriculture +87156,Agriculture,Agriculture +85716,Agriculture,Agriculture +81974,Agriculture,Agriculture +78254,Agriculture,Agriculture +75984,Agriculture,Agriculture +75980,Agriculture,Agriculture +123178,Agriculture,Agriculture +123176,Agriculture,Agriculture +108134,Agriculture,Agriculture +108075,Agriculture,Agriculture +108074,Agriculture,Agriculture +108073,Agriculture,Agriculture +108071,Agriculture,Agriculture +108070,Agriculture,Agriculture +108069,Agriculture,Agriculture +108068,Agriculture,Agriculture +108067,Agriculture,Agriculture +108066,Agriculture,Agriculture +108065,Agriculture,Agriculture +99999,Agriculture,Agriculture +99997,Agriculture,Agriculture +99996,Agriculture,Agriculture +97552,Agriculture,Agriculture +95902,Agriculture,Agriculture +95695,Agriculture,Agriculture +95336,Agriculture,Agriculture +94776,Agriculture,Agriculture +94775,Agriculture,Agriculture +94774,Agriculture,Agriculture +93848,Agriculture,Agriculture +161155,Agriculture,Agriculture +161154,Agriculture,Agriculture +161153,Agriculture,Agriculture +160605,Agriculture,Agriculture +160604,Agriculture,Agriculture +160516,Agriculture,Agriculture +160515,Agriculture,Agriculture +160514,Agriculture,Agriculture +160513,Agriculture,Agriculture +157511,Agriculture,Agriculture +156039,Agriculture,Agriculture +155856,Agriculture,Agriculture +155629,Agriculture,Agriculture +155628,Agriculture,Agriculture +155627,Agriculture,Agriculture +155626,Agriculture,Agriculture +155526,Agriculture,Agriculture +155492,Agriculture,Agriculture +155491,Agriculture,Agriculture +155490,Agriculture,Agriculture +155489,Agriculture,Agriculture +155488,Agriculture,Agriculture +155487,Agriculture,Agriculture +155486,Agriculture,Agriculture +154127,Agriculture,Agriculture +153422,Agriculture,Agriculture +153077,Agriculture,Agriculture +152943,Agriculture,Agriculture +152942,Agriculture,Agriculture +152940,Agriculture,Agriculture +146535,Agriculture,Agriculture +146534,Agriculture,Agriculture +146189,Agriculture,Agriculture +146188,Agriculture,Agriculture +144855,Agriculture,Agriculture +144854,Agriculture,Agriculture +140457,Agriculture,Agriculture +140456,Agriculture,Agriculture +140455,Agriculture,Agriculture +139459,Agriculture,Agriculture +137954,Agriculture,Agriculture +136336,Agriculture,Agriculture +136334,Agriculture,Agriculture +133621,Agriculture,Agriculture +133018,Agriculture,Agriculture +133016,Agriculture,Agriculture +127637,Agriculture,Agriculture +127636,Agriculture,Agriculture +123354,Agriculture,Agriculture +123179,Agriculture,Agriculture +318137,Agriculture,Agriculture +318136,Agriculture,Agriculture +318135,Agriculture,Agriculture +318134,Agriculture,Agriculture +318133,Agriculture,Agriculture +318132,Agriculture,Agriculture +275709,Agriculture,Agriculture +270249,Agriculture,Agriculture +265136,Agriculture,Agriculture +265135,Agriculture,Agriculture +265134,Agriculture,Agriculture +265133,Agriculture,Agriculture +265130,Agriculture,Agriculture +265129,Agriculture,Agriculture +261369,Agriculture,Agriculture +261109,Agriculture,Agriculture +261091,Agriculture,Agriculture +261090,Agriculture,Agriculture +261089,Agriculture,Agriculture +256529,Agriculture,Agriculture +255553,Agriculture,Agriculture +255552,Agriculture,Agriculture +255550,Agriculture,Agriculture +255350,Agriculture,Agriculture +255349,Agriculture,Agriculture +247604,Agriculture,Agriculture +246232,Agriculture,Agriculture +246231,Agriculture,Agriculture +246230,Agriculture,Agriculture +246229,Agriculture,Agriculture +246031,Agriculture,Agriculture +246029,Agriculture,Agriculture +240030,Agriculture,Agriculture +238309,Agriculture,Agriculture +234670,Agriculture,Agriculture +234669,Agriculture,Agriculture +229542,Agriculture,Agriculture +229536,Agriculture,Agriculture +229532,Agriculture,Agriculture +213588,Agriculture,Agriculture +213587,Agriculture,Agriculture +212454,Agriculture,Agriculture +212449,Agriculture,Agriculture +212446,Agriculture,Agriculture +205228,Agriculture,Agriculture +205227,Agriculture,Agriculture +204168,Agriculture,Agriculture +204167,Agriculture,Agriculture +199527,Agriculture,Agriculture +199507,Agriculture,Agriculture +195451,Agriculture,Agriculture +195450,Agriculture,Agriculture +195448,Agriculture,Agriculture +195447,Agriculture,Agriculture +195446,Agriculture,Agriculture +195445,Agriculture,Agriculture +195444,Agriculture,Agriculture +190725,Agriculture,Agriculture +187165,Agriculture,Agriculture +187164,Agriculture,Agriculture +182924,Agriculture,Agriculture +177806,Agriculture,Agriculture +177805,Agriculture,Agriculture +177804,Agriculture,Agriculture +174611,Agriculture,Agriculture +174610,Agriculture,Agriculture +173813,Agriculture,Agriculture +173811,Agriculture,Agriculture +173810,Agriculture,Agriculture +173149,Agriculture,Agriculture +173148,Agriculture,Agriculture +173147,Agriculture,Agriculture +172806,Agriculture,Agriculture +172753,Agriculture,Agriculture +172487,Agriculture,Agriculture +172426,Agriculture,Agriculture +172425,Agriculture,Agriculture +172424,Agriculture,Agriculture +169236,Agriculture,Agriculture +169224,Agriculture,Agriculture +167240,Agriculture,Agriculture +166323,Agriculture,Agriculture +166322,Agriculture,Agriculture +166321,Agriculture,Agriculture +166320,Agriculture,Agriculture +166319,Agriculture,Agriculture +166318,Agriculture,Agriculture +166316,Agriculture,Agriculture +166315,Agriculture,Agriculture +166314,Agriculture,Agriculture +166308,Agriculture,Agriculture +166306,Agriculture,Agriculture +166305,Agriculture,Agriculture +166304,Agriculture,Agriculture +163184,Agriculture,Agriculture +439283,Agriculture,Agriculture +439280,Agriculture,Agriculture +439277,Agriculture,Agriculture +439273,Agriculture,Agriculture +439272,Agriculture,Agriculture +439264,Agriculture,Agriculture +439248,Agriculture,Agriculture +439239,Agriculture,Agriculture +439236,Agriculture,Agriculture +439226,Agriculture,Agriculture +437046,Agriculture,Agriculture +437044,Agriculture,Agriculture +437042,Agriculture,Agriculture +437041,Agriculture,Agriculture +437040,Agriculture,Agriculture +437039,Agriculture,Agriculture +437038,Agriculture,Agriculture +437037,Agriculture,Agriculture +435879,Agriculture,Agriculture +435873,Agriculture,Agriculture +435869,Agriculture,Agriculture +430886,Agriculture,Agriculture +429339,Agriculture,Agriculture +429336,Agriculture,Agriculture +425462,Agriculture,Agriculture +425460,Agriculture,Agriculture +425459,Agriculture,Agriculture +425457,Agriculture,Agriculture +425455,Agriculture,Agriculture +425453,Agriculture,Agriculture +425450,Agriculture,Agriculture +425448,Agriculture,Agriculture +425445,Agriculture,Agriculture +425444,Agriculture,Agriculture +425443,Agriculture,Agriculture +425442,Agriculture,Agriculture +425441,Agriculture,Agriculture +425440,Agriculture,Agriculture +425439,Agriculture,Agriculture +425438,Agriculture,Agriculture +425437,Agriculture,Agriculture +425436,Agriculture,Agriculture +425435,Agriculture,Agriculture +425434,Agriculture,Agriculture +425433,Agriculture,Agriculture +425431,Agriculture,Agriculture +425430,Agriculture,Agriculture +425429,Agriculture,Agriculture +425428,Agriculture,Agriculture +425427,Agriculture,Agriculture +425426,Agriculture,Agriculture +425425,Agriculture,Agriculture +425424,Agriculture,Agriculture +425423,Agriculture,Agriculture +425422,Agriculture,Agriculture +425421,Agriculture,Agriculture +424030,Agriculture,Agriculture +424027,Agriculture,Agriculture +424025,Agriculture,Agriculture +424024,Agriculture,Agriculture +424023,Agriculture,Agriculture +424022,Agriculture,Agriculture +424020,Agriculture,Agriculture +424019,Agriculture,Agriculture +424018,Agriculture,Agriculture +421650,Agriculture,Agriculture +421648,Agriculture,Agriculture +421645,Agriculture,Agriculture +421642,Agriculture,Agriculture +421639,Agriculture,Agriculture +421638,Agriculture,Agriculture +421634,Agriculture,Agriculture +421628,Agriculture,Agriculture +420089,Agriculture,Agriculture +418149,Agriculture,Agriculture +418147,Agriculture,Agriculture +418146,Agriculture,Agriculture +416621,Agriculture,Agriculture +416620,Agriculture,Agriculture +416618,Agriculture,Agriculture +416616,Agriculture,Agriculture +416614,Agriculture,Agriculture +416608,Agriculture,Agriculture +416606,Agriculture,Agriculture +416577,Agriculture,Agriculture +416568,Agriculture,Agriculture +416563,Agriculture,Agriculture +416561,Agriculture,Agriculture +416558,Agriculture,Agriculture +416556,Agriculture,Agriculture +413105,Agriculture,Agriculture +413100,Agriculture,Agriculture +413098,Agriculture,Agriculture +413095,Agriculture,Agriculture +410258,Agriculture,Agriculture +409695,Agriculture,Agriculture +409690,Agriculture,Agriculture +409686,Agriculture,Agriculture +409683,Agriculture,Agriculture +409681,Agriculture,Agriculture +409679,Agriculture,Agriculture +409676,Agriculture,Agriculture +409671,Agriculture,Agriculture +409668,Agriculture,Agriculture +405432,Agriculture,Agriculture +405429,Agriculture,Agriculture +405427,Agriculture,Agriculture +405423,Agriculture,Agriculture +405422,Agriculture,Agriculture +405417,Agriculture,Agriculture +403778,Agriculture,Agriculture +403772,Agriculture,Agriculture +400844,Agriculture,Agriculture +400827,Agriculture,Agriculture +400820,Agriculture,Agriculture +400816,Agriculture,Agriculture +400810,Agriculture,Agriculture +400806,Agriculture,Agriculture +400788,Agriculture,Agriculture +400782,Agriculture,Agriculture +400774,Agriculture,Agriculture +400773,Agriculture,Agriculture +400771,Agriculture,Agriculture +400770,Agriculture,Agriculture +400767,Agriculture,Agriculture +400766,Agriculture,Agriculture +400765,Agriculture,Agriculture +400764,Agriculture,Agriculture +400759,Agriculture,Agriculture +395596,Agriculture,Agriculture +392505,Agriculture,Agriculture +392502,Agriculture,Agriculture +392501,Agriculture,Agriculture +387740,Agriculture,Agriculture +387738,Agriculture,Agriculture +385389,Agriculture,Agriculture +383951,Agriculture,Agriculture +382592,Agriculture,Agriculture +380970,Agriculture,Agriculture +380969,Agriculture,Agriculture +380967,Agriculture,Agriculture +380966,Agriculture,Agriculture +356494,Agriculture,Agriculture +356493,Agriculture,Agriculture +356492,Agriculture,Agriculture +354049,Agriculture,Agriculture +354048,Agriculture,Agriculture +349500,Agriculture,Agriculture +349499,Agriculture,Agriculture +349498,Agriculture,Agriculture +349497,Agriculture,Agriculture +349496,Agriculture,Agriculture +349495,Agriculture,Agriculture +349494,Agriculture,Agriculture +349493,Agriculture,Agriculture +349492,Agriculture,Agriculture +349491,Agriculture,Agriculture +349490,Agriculture,Agriculture +344072,Agriculture,Agriculture +344070,Agriculture,Agriculture +344069,Agriculture,Agriculture +318333,Agriculture,Agriculture +318332,Agriculture,Agriculture +318331,Agriculture,Agriculture +318212,Agriculture,Agriculture +318211,Agriculture,Agriculture +318210,Agriculture,Agriculture +318209,Agriculture,Agriculture +318152,Agriculture,Agriculture +318151,Agriculture,Agriculture +318150,Agriculture,Agriculture +318149,Agriculture,Agriculture +541158,Agriculture,Agriculture +533774,Agriculture,Agriculture +533773,Agriculture,Agriculture +533772,Agriculture,Agriculture +530839,Agriculture,Agriculture +530838,Agriculture,Agriculture +528719,Agriculture,Agriculture +528715,Agriculture,Agriculture +528713,Agriculture,Agriculture +528712,Agriculture,Agriculture +528709,Agriculture,Agriculture +528708,Agriculture,Agriculture +528707,Agriculture,Agriculture +528705,Agriculture,Agriculture +528704,Agriculture,Agriculture +528703,Agriculture,Agriculture +528702,Agriculture,Agriculture +528699,Agriculture,Agriculture +528697,Agriculture,Agriculture +528696,Agriculture,Agriculture +528694,Agriculture,Agriculture +528692,Agriculture,Agriculture +526082,Agriculture,Agriculture +526080,Agriculture,Agriculture +521454,Agriculture,Agriculture +521453,Agriculture,Agriculture +521452,Agriculture,Agriculture +519407,Agriculture,Agriculture +519406,Agriculture,Agriculture +519405,Agriculture,Agriculture +519404,Agriculture,Agriculture +519402,Agriculture,Agriculture +519399,Agriculture,Agriculture +519398,Agriculture,Agriculture +519397,Agriculture,Agriculture +519396,Agriculture,Agriculture +519394,Agriculture,Agriculture +519393,Agriculture,Agriculture +519392,Agriculture,Agriculture +519391,Agriculture,Agriculture +519389,Agriculture,Agriculture +519388,Agriculture,Agriculture +519387,Agriculture,Agriculture +519386,Agriculture,Agriculture +519385,Agriculture,Agriculture +519384,Agriculture,Agriculture +519383,Agriculture,Agriculture +516195,Agriculture,Agriculture +516194,Agriculture,Agriculture +516193,Agriculture,Agriculture +514035,Agriculture,Agriculture +514034,Agriculture,Agriculture +513298,Agriculture,Agriculture +512223,Agriculture,Agriculture +512219,Agriculture,Agriculture +512217,Agriculture,Agriculture +512216,Agriculture,Agriculture +512215,Agriculture,Agriculture +512208,Agriculture,Agriculture +512207,Agriculture,Agriculture +512206,Agriculture,Agriculture +512205,Agriculture,Agriculture +507889,Agriculture,Agriculture +507884,Agriculture,Agriculture +507878,Agriculture,Agriculture +504510,Agriculture,Agriculture +504509,Agriculture,Agriculture +504508,Agriculture,Agriculture +504507,Agriculture,Agriculture +504505,Agriculture,Agriculture +504504,Agriculture,Agriculture +504502,Agriculture,Agriculture +504500,Agriculture,Agriculture +504498,Agriculture,Agriculture +501402,Agriculture,Agriculture +501400,Agriculture,Agriculture +498863,Agriculture,Agriculture +498845,Agriculture,Agriculture +496291,Agriculture,Agriculture +492879,Agriculture,Agriculture +492786,Agriculture,Agriculture +492728,Agriculture,Agriculture +492727,Agriculture,Agriculture +492726,Agriculture,Agriculture +492725,Agriculture,Agriculture +492724,Agriculture,Agriculture +492723,Agriculture,Agriculture +492721,Agriculture,Agriculture +492720,Agriculture,Agriculture +492719,Agriculture,Agriculture +492716,Agriculture,Agriculture +492715,Agriculture,Agriculture +492714,Agriculture,Agriculture +492713,Agriculture,Agriculture +492712,Agriculture,Agriculture +492711,Agriculture,Agriculture +492710,Agriculture,Agriculture +492709,Agriculture,Agriculture +492707,Agriculture,Agriculture +492705,Agriculture,Agriculture +492704,Agriculture,Agriculture +492703,Agriculture,Agriculture +492701,Agriculture,Agriculture +492700,Agriculture,Agriculture +492698,Agriculture,Agriculture +492697,Agriculture,Agriculture +492681,Agriculture,Agriculture +492679,Agriculture,Agriculture +492675,Agriculture,Agriculture +488260,Agriculture,Agriculture +488038,Agriculture,Agriculture +488035,Agriculture,Agriculture +487548,Agriculture,Agriculture +487546,Agriculture,Agriculture +480955,Agriculture,Agriculture +480949,Agriculture,Agriculture +475805,Agriculture,Agriculture +475796,Agriculture,Agriculture +475794,Agriculture,Agriculture +475790,Agriculture,Agriculture +475786,Agriculture,Agriculture +475784,Agriculture,Agriculture +475766,Agriculture,Agriculture +475756,Agriculture,Agriculture +471932,Agriculture,Agriculture +465956,Agriculture,Agriculture +465955,Agriculture,Agriculture +465954,Agriculture,Agriculture +465953,Agriculture,Agriculture +465951,Agriculture,Agriculture +465950,Agriculture,Agriculture +465948,Agriculture,Agriculture +465947,Agriculture,Agriculture +465946,Agriculture,Agriculture +465945,Agriculture,Agriculture +465944,Agriculture,Agriculture +465943,Agriculture,Agriculture +465733,Agriculture,Agriculture +465732,Agriculture,Agriculture +465730,Agriculture,Agriculture +465727,Agriculture,Agriculture +465726,Agriculture,Agriculture +465725,Agriculture,Agriculture +465723,Agriculture,Agriculture +465722,Agriculture,Agriculture +465721,Agriculture,Agriculture +465720,Agriculture,Agriculture +465719,Agriculture,Agriculture +465718,Agriculture,Agriculture +465716,Agriculture,Agriculture +465715,Agriculture,Agriculture +465714,Agriculture,Agriculture +465713,Agriculture,Agriculture +465708,Agriculture,Agriculture +465706,Agriculture,Agriculture +462748,Agriculture,Agriculture +462747,Agriculture,Agriculture +461628,Agriculture,Agriculture +461626,Agriculture,Agriculture +461624,Agriculture,Agriculture +461623,Agriculture,Agriculture +461622,Agriculture,Agriculture +460162,Agriculture,Agriculture +459748,Agriculture,Agriculture +459745,Agriculture,Agriculture +459540,Agriculture,Agriculture +458179,Agriculture,Agriculture +457579,Agriculture,Agriculture +457576,Agriculture,Agriculture +457573,Agriculture,Agriculture +457571,Agriculture,Agriculture +455779,Agriculture,Agriculture +455777,Agriculture,Agriculture +452785,Agriculture,Agriculture +452782,Agriculture,Agriculture +452780,Agriculture,Agriculture +450202,Agriculture,Agriculture +450200,Agriculture,Agriculture +450199,Agriculture,Agriculture +450198,Agriculture,Agriculture +450192,Agriculture,Agriculture +448069,Agriculture,Agriculture +448068,Agriculture,Agriculture +448064,Agriculture,Agriculture +448059,Agriculture,Agriculture +448058,Agriculture,Agriculture +448055,Agriculture,Agriculture +448054,Agriculture,Agriculture +448052,Agriculture,Agriculture +448048,Agriculture,Agriculture +448045,Agriculture,Agriculture +448042,Agriculture,Agriculture +448038,Agriculture,Agriculture +448036,Agriculture,Agriculture +448034,Agriculture,Agriculture +448033,Agriculture,Agriculture +448030,Agriculture,Agriculture +448027,Agriculture,Agriculture +448026,Agriculture,Agriculture +445601,Agriculture,Agriculture +442403,Agriculture,Agriculture +442395,Agriculture,Agriculture +442394,Agriculture,Agriculture +439289,Agriculture,Agriculture +75983,International Relations,International Relations +75983,International Trade,International Trade +75981,International Trade,International Trade +75985,International Trade,International Trade +382309,Consumer Issues,Consumer Issues +382308,Consumer Issues,Consumer Issues +152857,Consumer Issues,Consumer Issues +151290,Consumer Issues,Consumer Issues +151289,Consumer Issues,Consumer Issues +151287,Consumer Issues,Consumer Issues +151286,Consumer Issues,Consumer Issues +149458,Consumer Issues,Consumer Issues +149457,Consumer Issues,Consumer Issues +160771,Consumer Issues,Consumer Issues +382312,Consumer Issues,Consumer Issues +348927,Industry,Industry +151287,Industry,Industry +422844,Industry,Industry +422842,Industry,Industry +412024,Industry,Industry +412023,Industry,Industry +390965,Industry,Industry +390962,Industry,Industry +390960,Industry,Industry +368663,Industry,Industry +360983,Industry,Industry +360980,Industry,Industry +149458,Intellectual Property,Intellectual Property +149457,Intellectual Property,Intellectual Property +144195,Intellectual Property,Intellectual Property +132514,Intellectual Property,Intellectual Property +160771,Intellectual Property,Intellectual Property +152857,Intellectual Property,Intellectual Property +151290,Intellectual Property,Intellectual Property +151289,Intellectual Property,Intellectual Property +151288,Intellectual Property,Intellectual Property +151287,Intellectual Property,Intellectual Property +456695,Internal Trade,Internal Trade +447866,Internal Trade,Internal Trade +385570,Internal Trade,Internal Trade +385567,Internal Trade,Internal Trade +384826,Internal Trade,Internal Trade +360982,Internal Trade,Internal Trade +360981,Internal Trade,Internal Trade +301811,Consumer Issues,Consumer Issues +301769,Consumer Issues,Consumer Issues +428846,Education,Education +372670,Education,Education +372666,Education,Education +372665,Education,Education +372662,Education,Education +372660,Education,Education +372657,Education,Education +372655,Education,Education +372653,Education,Education +372650,Education,Education +372647,Education,Education +372643,Education,Education +372640,Education,Education +372636,Education,Education +372635,Education,Education +372631,Education,Education +372629,Education,Education +372624,Education,Education +323789,Education,Education +429184,Education,Education +429182,Education,Education +429180,Education,Education +429179,Education,Education +429177,Education,Education +429175,Education,Education +429085,Education,Education +429083,Education,Education +429081,Education,Education +372665,Employment and Training,Employment and Training +372662,Employment and Training,Employment and Training +192498,Employment and Training,Employment and Training +372660,Employment and Training,Employment and Training +372657,Employment and Training,Employment and Training +372655,Employment and Training,Employment and Training +372653,Employment and Training,Employment and Training +372650,Employment and Training,Employment and Training +372647,Employment and Training,Employment and Training +372643,Employment and Training,Employment and Training +372640,Employment and Training,Employment and Training +372636,Employment and Training,Employment and Training +372635,Employment and Training,Employment and Training +372631,Employment and Training,Employment and Training +372629,Employment and Training,Employment and Training +372624,Employment and Training,Employment and Training +349166,Employment and Training,Employment and Training +349164,Employment and Training,Employment and Training +349160,Employment and Training,Employment and Training +349155,Employment and Training,Employment and Training +349153,Employment and Training,Employment and Training +349151,Employment and Training,Employment and Training +349149,Employment and Training,Employment and Training +349147,Employment and Training,Employment and Training +349145,Employment and Training,Employment and Training +341254,Employment and Training,Employment and Training +341253,Employment and Training,Employment and Training +341248,Employment and Training,Employment and Training +332134,Employment and Training,Employment and Training +326472,Employment and Training,Employment and Training +326471,Employment and Training,Employment and Training +323787,Employment and Training,Employment and Training +323782,Employment and Training,Employment and Training +301812,Employment and Training,Employment and Training +301811,Employment and Training,Employment and Training +301810,Employment and Training,Employment and Training +294914,Employment and Training,Employment and Training +225074,Employment and Training,Employment and Training +429184,Employment and Training,Employment and Training +429182,Employment and Training,Employment and Training +429180,Employment and Training,Employment and Training +429179,Employment and Training,Employment and Training +429177,Employment and Training,Employment and Training +429175,Employment and Training,Employment and Training +429085,Employment and Training,Employment and Training +429083,Employment and Training,Employment and Training +429081,Employment and Training,Employment and Training +428852,Employment and Training,Employment and Training +428846,Employment and Training,Employment and Training +376897,Employment and Training,Employment and Training +372670,Employment and Training,Employment and Training +459696,Government Procurement,Government Procurement +449827,Government Procurement,Government Procurement +80579,Government Procurement,Government Procurement +80576,Government Procurement,Government Procurement +80574,Government Procurement,Government Procurement +143875,Government Procurement,Government Procurement +133919,Government Procurement,Government Procurement +133917,Government Procurement,Government Procurement +133915,Government Procurement,Government Procurement +294912,Government Procurement,Government Procurement +294910,Government Procurement,Government Procurement +284456,Government Procurement,Government Procurement +284452,Government Procurement,Government Procurement +257013,Government Procurement,Government Procurement +257011,Government Procurement,Government Procurement +257010,Government Procurement,Government Procurement +257009,Government Procurement,Government Procurement +255269,Government Procurement,Government Procurement +241513,Government Procurement,Government Procurement +235590,Government Procurement,Government Procurement +235589,Government Procurement,Government Procurement +231790,Government Procurement,Government Procurement +225070,Government Procurement,Government Procurement +225069,Government Procurement,Government Procurement +203929,Government Procurement,Government Procurement +199952,Government Procurement,Government Procurement +199950,Government Procurement,Government Procurement +199944,Government Procurement,Government Procurement +199941,Government Procurement,Government Procurement +199940,Government Procurement,Government Procurement +191668,Government Procurement,Government Procurement +191667,Government Procurement,Government Procurement +162902,Government Procurement,Government Procurement +152479,Government Procurement,Government Procurement +148661,Government Procurement,Government Procurement +148660,Government Procurement,Government Procurement +395994,Government Procurement,Government Procurement +389323,Government Procurement,Government Procurement +389322,Government Procurement,Government Procurement +385091,Government Procurement,Government Procurement +383381,Government Procurement,Government Procurement +383373,Government Procurement,Government Procurement +381428,Government Procurement,Government Procurement +381422,Government Procurement,Government Procurement +380002,Government Procurement,Government Procurement +380000,Government Procurement,Government Procurement +379997,Government Procurement,Government Procurement +376891,Government Procurement,Government Procurement +376881,Government Procurement,Government Procurement +376876,Government Procurement,Government Procurement +374350,Government Procurement,Government Procurement +374349,Government Procurement,Government Procurement +372670,Government Procurement,Government Procurement +372666,Government Procurement,Government Procurement +372665,Government Procurement,Government Procurement +372662,Government Procurement,Government Procurement +372660,Government Procurement,Government Procurement +372657,Government Procurement,Government Procurement +372655,Government Procurement,Government Procurement +372653,Government Procurement,Government Procurement +372650,Government Procurement,Government Procurement +372647,Government Procurement,Government Procurement +372643,Government Procurement,Government Procurement +372640,Government Procurement,Government Procurement +372636,Government Procurement,Government Procurement +372635,Government Procurement,Government Procurement +372631,Government Procurement,Government Procurement +372629,Government Procurement,Government Procurement +372624,Government Procurement,Government Procurement +366413,Government Procurement,Government Procurement +350289,Government Procurement,Government Procurement +349164,Government Procurement,Government Procurement +349160,Government Procurement,Government Procurement +349159,Government Procurement,Government Procurement +349158,Government Procurement,Government Procurement +349151,Government Procurement,Government Procurement +349149,Government Procurement,Government Procurement +349147,Government Procurement,Government Procurement +349145,Government Procurement,Government Procurement +349143,Government Procurement,Government Procurement +347602,Government Procurement,Government Procurement +347600,Government Procurement,Government Procurement +341256,Government Procurement,Government Procurement +341247,Government Procurement,Government Procurement +341243,Government Procurement,Government Procurement +341239,Government Procurement,Government Procurement +341237,Government Procurement,Government Procurement +341233,Government Procurement,Government Procurement +341231,Government Procurement,Government Procurement +341228,Government Procurement,Government Procurement +332136,Government Procurement,Government Procurement +332135,Government Procurement,Government Procurement +332133,Government Procurement,Government Procurement +329695,Government Procurement,Government Procurement +326476,Government Procurement,Government Procurement +323788,Government Procurement,Government Procurement +323783,Government Procurement,Government Procurement +543470,Government Procurement,Government Procurement +543467,Government Procurement,Government Procurement +543466,Government Procurement,Government Procurement +543463,Government Procurement,Government Procurement +541384,Government Procurement,Government Procurement +541375,Government Procurement,Government Procurement +538718,Government Procurement,Government Procurement +536052,Government Procurement,Government Procurement +522430,Government Procurement,Government Procurement +522427,Government Procurement,Government Procurement +515691,Government Procurement,Government Procurement +515250,Government Procurement,Government Procurement +514604,Government Procurement,Government Procurement +514603,Government Procurement,Government Procurement +513957,Government Procurement,Government Procurement +512924,Government Procurement,Government Procurement +510479,Government Procurement,Government Procurement +510471,Government Procurement,Government Procurement +510468,Government Procurement,Government Procurement +508071,Government Procurement,Government Procurement +508068,Government Procurement,Government Procurement +508065,Government Procurement,Government Procurement +503940,Government Procurement,Government Procurement +503939,Government Procurement,Government Procurement +501348,Government Procurement,Government Procurement +497890,Government Procurement,Government Procurement +497887,Government Procurement,Government Procurement +495179,Government Procurement,Government Procurement +492978,Government Procurement,Government Procurement +492976,Government Procurement,Government Procurement +492974,Government Procurement,Government Procurement +490409,Government Procurement,Government Procurement +490408,Government Procurement,Government Procurement +487196,Government Procurement,Government Procurement +487194,Government Procurement,Government Procurement +484341,Government Procurement,Government Procurement +484340,Government Procurement,Government Procurement +484338,Government Procurement,Government Procurement +479343,Government Procurement,Government Procurement +479342,Government Procurement,Government Procurement +479339,Government Procurement,Government Procurement +477312,Government Procurement,Government Procurement +477311,Government Procurement,Government Procurement +475159,Government Procurement,Government Procurement +475157,Government Procurement,Government Procurement +475156,Government Procurement,Government Procurement +472620,Government Procurement,Government Procurement +472619,Government Procurement,Government Procurement +472618,Government Procurement,Government Procurement +472617,Government Procurement,Government Procurement +472614,Government Procurement,Government Procurement +467891,Government Procurement,Government Procurement +467884,Government Procurement,Government Procurement +467878,Government Procurement,Government Procurement +467867,Government Procurement,Government Procurement +467860,Government Procurement,Government Procurement +467800,Government Procurement,Government Procurement +467751,Government Procurement,Government Procurement +464623,Government Procurement,Government Procurement +464616,Government Procurement,Government Procurement +464585,Government Procurement,Government Procurement +462825,Government Procurement,Government Procurement +462824,Government Procurement,Government Procurement +314212,Health,Health +372670,Health,Health +372666,Health,Health +372665,Health,Health +372662,Health,Health +372660,Health,Health +372657,Health,Health +372655,Health,Health +372653,Health,Health +372650,Health,Health +372647,Health,Health +372643,Health,Health +372640,Health,Health +372636,Health,Health +372635,Health,Health +372631,Health,Health +372629,Health,Health +372624,Health,Health +372629,Immigration,Immigration +372624,Immigration,Immigration +225074,Immigration,Immigration +349164,Immigration,Immigration +349160,Immigration,Immigration +349155,Immigration,Immigration +349153,Immigration,Immigration +349151,Immigration,Immigration +349149,Immigration,Immigration +349147,Immigration,Immigration +349145,Immigration,Immigration +341253,Immigration,Immigration +341248,Immigration,Immigration +341243,Immigration,Immigration +329693,Immigration,Immigration +329692,Immigration,Immigration +326475,Immigration,Immigration +326474,Immigration,Immigration +326473,Immigration,Immigration +323782,Immigration,Immigration +314216,Immigration,Immigration +301810,Immigration,Immigration +429185,Immigration,Immigration +429177,Immigration,Immigration +429175,Immigration,Immigration +372670,Immigration,Immigration +372666,Immigration,Immigration +372665,Immigration,Immigration +372662,Immigration,Immigration +372660,Immigration,Immigration +372657,Immigration,Immigration +372655,Immigration,Immigration +372653,Immigration,Immigration +372650,Immigration,Immigration +372647,Immigration,Immigration +372643,Immigration,Immigration +372640,Immigration,Immigration +372636,Immigration,Immigration +372635,Immigration,Immigration +460172,Industry,Industry +459699,Industry,Industry +191668,Industry,Industry +191667,Industry,Industry +191666,Industry,Industry +191664,Industry,Industry +191325,Industry,Industry +173724,Industry,Industry +168608,Industry,Industry +168607,Industry,Industry +162904,Industry,Industry +162903,Industry,Industry +162902,Industry,Industry +162901,Industry,Industry +162900,Industry,Industry +162899,Industry,Industry +162898,Industry,Industry +162897,Industry,Industry +284454,Industry,Industry +284453,Industry,Industry +284451,Industry,Industry +284450,Industry,Industry +284449,Industry,Industry +272689,Industry,Industry +260290,Industry,Industry +260289,Industry,Industry +250880,Industry,Industry +250877,Industry,Industry +250872,Industry,Industry +241518,Industry,Industry +241517,Industry,Industry +241515,Industry,Industry +241514,Industry,Industry +241512,Industry,Industry +241511,Industry,Industry +241510,Industry,Industry +241509,Industry,Industry +231789,Industry,Industry +225147,Industry,Industry +225075,Industry,Industry +225073,Industry,Industry +225068,Industry,Industry +225067,Industry,Industry +203928,Industry,Industry +200014,Industry,Industry +385084,Industry,Industry +383378,Industry,Industry +383376,Industry,Industry +383375,Industry,Industry +383369,Industry,Industry +383368,Industry,Industry +382478,Industry,Industry +381430,Industry,Industry +381428,Industry,Industry +381426,Industry,Industry +381424,Industry,Industry +381423,Industry,Industry +381422,Industry,Industry +381421,Industry,Industry +380008,Industry,Industry +380005,Industry,Industry +380003,Industry,Industry +380002,Industry,Industry +380001,Industry,Industry +379998,Industry,Industry +379997,Industry,Industry +377819,Industry,Industry +376891,Industry,Industry +376887,Industry,Industry +376885,Industry,Industry +376883,Industry,Industry +376881,Industry,Industry +376880,Industry,Industry +376876,Industry,Industry +374350,Industry,Industry +374349,Industry,Industry +374346,Industry,Industry +374333,Industry,Industry +372670,Industry,Industry +372666,Industry,Industry +372665,Industry,Industry +372662,Industry,Industry +372660,Industry,Industry +372657,Industry,Industry +372655,Industry,Industry +372653,Industry,Industry +372650,Industry,Industry +372647,Industry,Industry +372643,Industry,Industry +372640,Industry,Industry +372636,Industry,Industry +372635,Industry,Industry +372631,Industry,Industry +372629,Industry,Industry +372624,Industry,Industry +369777,Industry,Industry +369776,Industry,Industry +369775,Industry,Industry +369774,Industry,Industry +362466,Industry,Industry +361342,Industry,Industry +349166,Industry,Industry +349164,Industry,Industry +349160,Industry,Industry +349159,Industry,Industry +349158,Industry,Industry +349151,Industry,Industry +349149,Industry,Industry +349147,Industry,Industry +349145,Industry,Industry +349143,Industry,Industry +347602,Industry,Industry +347600,Industry,Industry +341254,Industry,Industry +341248,Industry,Industry +341231,Industry,Industry +341228,Industry,Industry +341222,Industry,Industry +332136,Industry,Industry +332135,Industry,Industry +332134,Industry,Industry +332133,Industry,Industry +332130,Industry,Industry +332129,Industry,Industry +329695,Industry,Industry +329693,Industry,Industry +329692,Industry,Industry +326476,Industry,Industry +326475,Industry,Industry +326474,Industry,Industry +326473,Industry,Industry +326472,Industry,Industry +326471,Industry,Industry +323789,Industry,Industry +323788,Industry,Industry +323785,Industry,Industry +314217,Industry,Industry +314216,Industry,Industry +314214,Industry,Industry +314212,Industry,Industry +301812,Industry,Industry +301811,Industry,Industry +301810,Industry,Industry +301769,Industry,Industry +294929,Industry,Industry +294915,Industry,Industry +294914,Industry,Industry +294911,Industry,Industry +284460,Industry,Industry +284459,Industry,Industry +284457,Industry,Industry +284455,Industry,Industry +449827,Industry,Industry +449826,Industry,Industry +447438,Industry,Industry +447249,Industry,Industry +447248,Industry,Industry +441418,Industry,Industry +441417,Industry,Industry +441416,Industry,Industry +441413,Industry,Industry +441412,Industry,Industry +439114,Industry,Industry +439113,Industry,Industry +439110,Industry,Industry +439107,Industry,Industry +439106,Industry,Industry +439080,Industry,Industry +439077,Industry,Industry +439073,Industry,Industry +439070,Industry,Industry +439068,Industry,Industry +439067,Industry,Industry +439066,Industry,Industry +439064,Industry,Industry +436120,Industry,Industry +436119,Industry,Industry +436118,Industry,Industry +436117,Industry,Industry +436116,Industry,Industry +436115,Industry,Industry +433716,Industry,Industry +430481,Industry,Industry +430478,Industry,Industry +430476,Industry,Industry +429185,Industry,Industry +429184,Industry,Industry +429182,Industry,Industry +429180,Industry,Industry +429179,Industry,Industry +429177,Industry,Industry +429175,Industry,Industry +429173,Industry,Industry +429171,Industry,Industry +429170,Industry,Industry +429168,Industry,Industry +429167,Industry,Industry +429166,Industry,Industry +429163,Industry,Industry +429161,Industry,Industry +429159,Industry,Industry +429156,Industry,Industry +429154,Industry,Industry +429087,Industry,Industry +429085,Industry,Industry +429083,Industry,Industry +429081,Industry,Industry +428852,Industry,Industry +428846,Industry,Industry +428845,Industry,Industry +428840,Industry,Industry +428837,Industry,Industry +428836,Industry,Industry +428835,Industry,Industry +423813,Industry,Industry +423804,Industry,Industry +423796,Industry,Industry +420715,Industry,Industry +420714,Industry,Industry +415076,Industry,Industry +415075,Industry,Industry +412398,Industry,Industry +412397,Industry,Industry +412396,Industry,Industry +412395,Industry,Industry +412394,Industry,Industry +412078,Industry,Industry +412076,Industry,Industry +412074,Industry,Industry +412071,Industry,Industry +412069,Industry,Industry +412066,Industry,Industry +412062,Industry,Industry +412059,Industry,Industry +412057,Industry,Industry +412054,Industry,Industry +412052,Industry,Industry +412049,Industry,Industry +412044,Industry,Industry +412038,Industry,Industry +412036,Industry,Industry +412035,Industry,Industry +412033,Industry,Industry +412032,Industry,Industry +410302,Industry,Industry +410301,Industry,Industry +410300,Industry,Industry +407807,Industry,Industry +407806,Industry,Industry +407804,Industry,Industry +407803,Industry,Industry +407802,Industry,Industry +407800,Industry,Industry +407799,Industry,Industry +405860,Industry,Industry +405859,Industry,Industry +403528,Industry,Industry +399267,Industry,Industry +399266,Industry,Industry +399265,Industry,Industry +399264,Industry,Industry +399263,Industry,Industry +399260,Industry,Industry +399255,Industry,Industry +399254,Industry,Industry +399253,Industry,Industry +399251,Industry,Industry +399250,Industry,Industry +399248,Industry,Industry +399247,Industry,Industry +399246,Industry,Industry +399245,Industry,Industry +399244,Industry,Industry +399241,Industry,Industry +395998,Industry,Industry +395996,Industry,Industry +395994,Industry,Industry +393700,Industry,Industry +393699,Industry,Industry +393698,Industry,Industry +393697,Industry,Industry +393695,Industry,Industry +393694,Industry,Industry +393693,Industry,Industry +393692,Industry,Industry +393691,Industry,Industry +393690,Industry,Industry +392806,Industry,Industry +389324,Industry,Industry +389323,Industry,Industry +389322,Industry,Industry +389321,Industry,Industry +389320,Industry,Industry +389319,Industry,Industry +387307,Industry,Industry +387304,Industry,Industry +387303,Industry,Industry +387302,Industry,Industry +387301,Industry,Industry +387300,Industry,Industry +387299,Industry,Industry +387298,Industry,Industry +387297,Industry,Industry +387296,Industry,Industry +387294,Industry,Industry +387293,Industry,Industry +385091,Industry,Industry +385089,Industry,Industry +385088,Industry,Industry +385087,Industry,Industry +545111,Industry,Industry +545110,Industry,Industry +545109,Industry,Industry +543748,Industry,Industry +543459,Industry,Industry +543457,Industry,Industry +543453,Industry,Industry +543451,Industry,Industry +541385,Industry,Industry +541382,Industry,Industry +541380,Industry,Industry +541378,Industry,Industry +538730,Industry,Industry +536053,Industry,Industry +531049,Industry,Industry +531048,Industry,Industry +528535,Industry,Industry +528533,Industry,Industry +528532,Industry,Industry +528530,Industry,Industry +528528,Industry,Industry +528524,Industry,Industry +528523,Industry,Industry +528522,Industry,Industry +528520,Industry,Industry +528517,Industry,Industry +528514,Industry,Industry +528511,Industry,Industry +528508,Industry,Industry +528504,Industry,Industry +528501,Industry,Industry +528498,Industry,Industry +524847,Industry,Industry +524844,Industry,Industry +520096,Industry,Industry +516870,Industry,Industry +516869,Industry,Industry +516868,Industry,Industry +516867,Industry,Industry +516866,Industry,Industry +513958,Industry,Industry +510478,Industry,Industry +510476,Industry,Industry +510474,Industry,Industry +509256,Industry,Industry +509255,Industry,Industry +509254,Industry,Industry +509253,Industry,Industry +508095,Industry,Industry +508092,Industry,Industry +508086,Industry,Industry +508085,Industry,Industry +508081,Industry,Industry +508077,Industry,Industry +508075,Industry,Industry +508064,Industry,Industry +503941,Industry,Industry +501347,Industry,Industry +492977,Industry,Industry +490407,Industry,Industry +490405,Industry,Industry +490404,Industry,Industry +490403,Industry,Industry +487210,Industry,Industry +487208,Industry,Industry +487193,Industry,Industry +481739,Industry,Industry +479341,Industry,Industry +470093,Industry,Industry +467914,Industry,Industry +467900,Industry,Industry +467891,Industry,Industry +467884,Industry,Industry +467878,Industry,Industry +467867,Industry,Industry +467860,Industry,Industry +467817,Industry,Industry +467814,Industry,Industry +467800,Industry,Industry +467751,Industry,Industry +467736,Industry,Industry +462825,Industry,Industry +462824,Industry,Industry +369775,Infrastructure,Infrastructure +501349,Infrastructure,Infrastructure +80574,Infrastructure,Infrastructure +349159,Infrastructure,Infrastructure +349158,Infrastructure,Infrastructure +326476,Infrastructure,Infrastructure +294915,Infrastructure,Infrastructure +294912,Infrastructure,Infrastructure +294910,Infrastructure,Infrastructure +225069,Infrastructure,Infrastructure +374346,Infrastructure,Infrastructure +372670,Infrastructure,Infrastructure +372666,Infrastructure,Infrastructure +372665,Infrastructure,Infrastructure +372662,Infrastructure,Infrastructure +372660,Infrastructure,Infrastructure +372657,Infrastructure,Infrastructure +372655,Infrastructure,Infrastructure +372653,Infrastructure,Infrastructure +372650,Infrastructure,Infrastructure +372647,Infrastructure,Infrastructure +372643,Infrastructure,Infrastructure +372640,Infrastructure,Infrastructure +372636,Infrastructure,Infrastructure +372635,Infrastructure,Infrastructure +372631,Infrastructure,Infrastructure +372629,Infrastructure,Infrastructure +372624,Infrastructure,Infrastructure +369777,Infrastructure,Infrastructure +349149,Intellectual Property,Intellectual Property +349147,Intellectual Property,Intellectual Property +372670,Intellectual Property,Intellectual Property +372666,Intellectual Property,Intellectual Property +372665,Intellectual Property,Intellectual Property +372662,Intellectual Property,Intellectual Property +372660,Intellectual Property,Intellectual Property +372657,Intellectual Property,Intellectual Property +372655,Intellectual Property,Intellectual Property +372653,Intellectual Property,Intellectual Property +372650,Intellectual Property,Intellectual Property +372647,Intellectual Property,Intellectual Property +372643,Intellectual Property,Intellectual Property +372640,Intellectual Property,Intellectual Property +372636,Intellectual Property,Intellectual Property +372635,Intellectual Property,Intellectual Property +372631,Intellectual Property,Intellectual Property +372629,Intellectual Property,Intellectual Property +372624,Intellectual Property,Intellectual Property +349164,Intellectual Property,Intellectual Property +349160,Intellectual Property,Intellectual Property +372665,Internal Trade,Internal Trade +372662,Internal Trade,Internal Trade +372660,Internal Trade,Internal Trade +372657,Internal Trade,Internal Trade +372655,Internal Trade,Internal Trade +372653,Internal Trade,Internal Trade +372650,Internal Trade,Internal Trade +372647,Internal Trade,Internal Trade +372643,Internal Trade,Internal Trade +372640,Internal Trade,Internal Trade +372636,Internal Trade,Internal Trade +372635,Internal Trade,Internal Trade +372631,Internal Trade,Internal Trade +372629,Internal Trade,Internal Trade +372624,Internal Trade,Internal Trade +372670,Internal Trade,Internal Trade +428846,Labour,Labour +412032,Labour,Labour +332134,Labour,Labour +329693,Labour,Labour +329692,Labour,Labour +326475,Labour,Labour +326474,Labour,Labour +326473,Labour,Labour +349143,Labour,Labour +429185,Labour,Labour +429184,Labour,Labour +429182,Labour,Labour +429180,Labour,Labour +429179,Labour,Labour +429177,Labour,Labour +429175,Labour,Labour +429085,Labour,Labour +429083,Labour,Labour +429081,Labour,Labour +369775,Regional Development,Regional Development +369776,Small Business,Small Business +369775,Small Business,Small Business +225073,Small Business,Small Business +225067,Small Business,Small Business +148657,Small Business,Small Business +148653,Small Business,Small Business +349164,Small Business,Small Business +349160,Small Business,Small Business +349151,Small Business,Small Business +349149,Small Business,Small Business +349147,Small Business,Small Business +349145,Small Business,Small Business +323787,Small Business,Small Business +323785,Small Business,Small Business +231789,Small Business,Small Business +372670,Small Business,Small Business +372666,Small Business,Small Business +372665,Small Business,Small Business +372662,Small Business,Small Business +372660,Small Business,Small Business +372657,Small Business,Small Business +372655,Small Business,Small Business +372653,Small Business,Small Business +372650,Small Business,Small Business +372647,Small Business,Small Business +372643,Small Business,Small Business +372640,Small Business,Small Business +372636,Small Business,Small Business +372635,Small Business,Small Business +372631,Small Business,Small Business +372629,Small Business,Small Business +372629,Taxation and Finance,Taxation and Finance +372624,Taxation and Finance,Taxation and Finance +80575,Taxation and Finance,Taxation and Finance +323785,Taxation and Finance,Taxation and Finance +294913,Taxation and Finance,Taxation and Finance +372670,Taxation and Finance,Taxation and Finance +372666,Taxation and Finance,Taxation and Finance +372665,Taxation and Finance,Taxation and Finance +372662,Taxation and Finance,Taxation and Finance +372660,Taxation and Finance,Taxation and Finance +372657,Taxation and Finance,Taxation and Finance +372655,Taxation and Finance,Taxation and Finance +372653,Taxation and Finance,Taxation and Finance +372650,Taxation and Finance,Taxation and Finance +372647,Taxation and Finance,Taxation and Finance +372643,Taxation and Finance,Taxation and Finance +372640,Taxation and Finance,Taxation and Finance +372636,Taxation and Finance,Taxation and Finance +372635,Taxation and Finance,Taxation and Finance +542811,Education,Education +542805,Education,Education +170898,Education,Education +170894,Education,Education +166050,Education,Education +207518,Education,Education +207511,Education,Education +207490,Education,Education +207477,Education,Education +482485,Education,Education +480331,Education,Education +480329,Education,Education +478262,Education,Education +478248,Education,Education +459688,Education,Education +415181,Education,Education +392786,Education,Education +371095,Education,Education +371092,Education,Education +333950,Education,Education +331392,Education,Education +331391,Education,Education +331390,Education,Education +331388,Education,Education +542820,Education,Education +542811,Employment and Training,Employment and Training +500521,Employment and Training,Employment and Training +166050,Employment and Training,Employment and Training +202913,Employment and Training,Employment and Training +170898,Employment and Training,Employment and Training +415173,Employment and Training,Employment and Training +415139,Employment and Training,Employment and Training +313173,Employment and Training,Employment and Training +304254,Employment and Training,Employment and Training +542803,Energy,Energy +468170,Energy,Energy +77758,Energy,Energy +545225,Energy,Energy +545224,Energy,Energy +542823,Energy,Energy +542818,Energy,Energy +542807,Energy,Energy +380042,Environment,Environment +380036,Environment,Environment +98574,Environment,Environment +96894,Environment,Environment +90630,Environment,Environment +88241,Environment,Environment +88239,Environment,Environment +88236,Environment,Environment +85364,Environment,Environment +251031,Environment,Environment +426812,Environment,Environment +415175,Environment,Environment +534789,Health,Health +534784,Health,Health +88236,Health,Health +85367,Health,Health +85364,Health,Health +207490,Health,Health +199659,Health,Health +199656,Health,Health +199654,Health,Health +199651,Health,Health +199634,Health,Health +170898,Health,Health +125622,Health,Health +125618,Health,Health +125617,Health,Health +125616,Health,Health +369323,Health,Health +358268,Health,Health +358266,Health,Health +358263,Health,Health +356394,Health,Health +356391,Health,Health +342096,Health,Health +342094,Health,Health +342093,Health,Health +338645,Health,Health +338644,Health,Health +338638,Health,Health +338633,Health,Health +338628,Health,Health +335928,Health,Health +335919,Health,Health +335764,Health,Health +333950,Health,Health +331392,Health,Health +331391,Health,Health +331390,Health,Health +331388,Health,Health +315995,Health,Health +315993,Health,Health +304253,Health,Health +304250,Health,Health +277353,Health,Health +273737,Health,Health +259579,Health,Health +251051,Health,Health +251050,Health,Health +241057,Health,Health +237213,Health,Health +233846,Health,Health +207494,Health,Health +462873,Health,Health +462871,Health,Health +460732,Health,Health +460236,Health,Health +460235,Health,Health +460231,Health,Health +456899,Health,Health +456898,Health,Health +456897,Health,Health +456896,Health,Health +456291,Health,Health +456290,Health,Health +456289,Health,Health +456288,Health,Health +452143,Health,Health +452140,Health,Health +447554,Health,Health +447552,Health,Health +447550,Health,Health +447547,Health,Health +445706,Health,Health +445701,Health,Health +444051,Health,Health +444049,Health,Health +444048,Health,Health +442732,Health,Health +442731,Health,Health +442730,Health,Health +442728,Health,Health +442727,Health,Health +439392,Health,Health +439366,Health,Health +439180,Health,Health +439175,Health,Health +439172,Health,Health +439171,Health,Health +438983,Health,Health +438971,Health,Health +438969,Health,Health +435456,Health,Health +433689,Health,Health +433687,Health,Health +429349,Health,Health +429347,Health,Health +424320,Health,Health +424318,Health,Health +424316,Health,Health +422436,Health,Health +422434,Health,Health +422428,Health,Health +420297,Health,Health +420295,Health,Health +415170,Health,Health +415145,Health,Health +415144,Health,Health +415142,Health,Health +409575,Health,Health +409571,Health,Health +409568,Health,Health +409566,Health,Health +409560,Health,Health +395186,Health,Health +395184,Health,Health +394035,Health,Health +394033,Health,Health +392789,Health,Health +392788,Health,Health +391736,Health,Health +391735,Health,Health +391733,Health,Health +391732,Health,Health +391729,Health,Health +391728,Health,Health +388411,Health,Health +385836,Health,Health +385826,Health,Health +385824,Health,Health +385823,Health,Health +383819,Health,Health +383000,Health,Health +382664,Health,Health +382663,Health,Health +381725,Health,Health +375017,Health,Health +375016,Health,Health +375015,Health,Health +375014,Health,Health +375011,Health,Health +372458,Health,Health +372451,Health,Health +372448,Health,Health +371112,Health,Health +371110,Health,Health +371108,Health,Health +371107,Health,Health +371106,Health,Health +371104,Health,Health +371103,Health,Health +531806,Health,Health +531803,Health,Health +531784,Health,Health +531776,Health,Health +531767,Health,Health +529145,Health,Health +529137,Health,Health +525615,Health,Health +525513,Health,Health +525510,Health,Health +525508,Health,Health +525506,Health,Health +525502,Health,Health +525495,Health,Health +525485,Health,Health +525439,Health,Health +521238,Health,Health +521237,Health,Health +521236,Health,Health +521234,Health,Health +521233,Health,Health +521232,Health,Health +521230,Health,Health +521229,Health,Health +517520,Health,Health +517513,Health,Health +517507,Health,Health +517505,Health,Health +517504,Health,Health +517503,Health,Health +516440,Health,Health +516439,Health,Health +516436,Health,Health +516435,Health,Health +516434,Health,Health +516433,Health,Health +516432,Health,Health +515050,Health,Health +515049,Health,Health +515048,Health,Health +515047,Health,Health +514404,Health,Health +514396,Health,Health +513674,Health,Health +512526,Health,Health +512525,Health,Health +512222,Health,Health +512218,Health,Health +510116,Health,Health +509628,Health,Health +509627,Health,Health +509626,Health,Health +508962,Health,Health +508959,Health,Health +508955,Health,Health +503600,Health,Health +503599,Health,Health +503598,Health,Health +503597,Health,Health +503596,Health,Health +503595,Health,Health +503594,Health,Health +500519,Health,Health +500517,Health,Health +497181,Health,Health +497180,Health,Health +497179,Health,Health +497177,Health,Health +494742,Health,Health +494740,Health,Health +494739,Health,Health +494737,Health,Health +494735,Health,Health +492298,Health,Health +492297,Health,Health +492294,Health,Health +492293,Health,Health +492290,Health,Health +492288,Health,Health +492286,Health,Health +492285,Health,Health +488849,Health,Health +488848,Health,Health +488846,Health,Health +488845,Health,Health +488843,Health,Health +488842,Health,Health +486950,Health,Health +486948,Health,Health +486947,Health,Health +486945,Health,Health +486943,Health,Health +486941,Health,Health +486940,Health,Health +486921,Health,Health +484877,Health,Health +484871,Health,Health +484869,Health,Health +484865,Health,Health +484860,Health,Health +482493,Health,Health +482491,Health,Health +482488,Health,Health +476029,Health,Health +473728,Health,Health +473725,Health,Health +473687,Health,Health +470945,Health,Health +470929,Health,Health +470912,Health,Health +470902,Health,Health +470886,Health,Health +468167,Health,Health +468166,Health,Health +468165,Health,Health +468164,Health,Health +465055,Health,Health +464882,Health,Health +464873,Health,Health +464867,Health,Health +464864,Health,Health +464860,Health,Health +464859,Health,Health +464856,Health,Health +464847,Health,Health +545225,Health,Health +545223,Health,Health +545222,Health,Health +545221,Health,Health +545220,Health,Health +545219,Health,Health +545218,Health,Health +545217,Health,Health +545216,Health,Health +545215,Health,Health +543196,Health,Health +542826,Health,Health +542825,Health,Health +542824,Health,Health +542822,Health,Health +542821,Health,Health +542817,Health,Health +542816,Health,Health +542815,Health,Health +542814,Health,Health +542813,Health,Health +542812,Health,Health +542810,Health,Health +542809,Health,Health +542806,Health,Health +542805,Health,Health +540986,Health,Health +539894,Health,Health +539887,Health,Health +539886,Health,Health +539882,Health,Health +539872,Health,Health +538215,Health,Health +534802,Health,Health +534795,Health,Health +529144,Immigration,Immigration +500518,Immigration,Immigration +388422,Immigration,Immigration +382662,Immigration,Immigration +310783,Immigration,Immigration +521228,Industry,Industry +521226,Industry,Industry +160122,Industry,Industry +90630,Industry,Industry +199626,Industry,Industry +540954,Industry,Industry +525504,Industry,Industry +521241,Industry,Industry +521240,Industry,Industry +521239,Industry,Industry +512221,Infrastructure,Infrastructure +503600,Infrastructure,Infrastructure +109810,Infrastructure,Infrastructure +101350,Infrastructure,Infrastructure +97917,Infrastructure,Infrastructure +372451,Infrastructure,Infrastructure +372448,Infrastructure,Infrastructure +369324,Infrastructure,Infrastructure +369323,Infrastructure,Infrastructure +488842,Infrastructure,Infrastructure +426812,Infrastructure,Infrastructure +422418,Infrastructure,Infrastructure +420301,Infrastructure,Infrastructure +395185,Infrastructure,Infrastructure +385826,Infrastructure,Infrastructure +380045,Infrastructure,Infrastructure +380042,Infrastructure,Infrastructure +380036,Infrastructure,Infrastructure +545224,Infrastructure,Infrastructure +480329,International Relations,International Relations +139177,International Trade,International Trade +170895,International Trade,International Trade +139179,International Trade,International Trade +464826,Taxation and Finance,Taxation and Finance +426817,Taxation and Finance,Taxation and Finance +207494,Taxation and Finance,Taxation and Finance +90626,Other,Research +88241,Other,Research +85367,Other,Research +85355,Other,Research +77758,Other,Research +139177,Other,Research +133875,Other,Research +129676,Other,Research +129674,Other,Research +98574,Other,Research +109813,Other,Innovation +96894,Other,Innovation +88239,Other,Innovation +77758,Other,Innovation +139179,Other,Innovation +129694,Other,Innovation +129676,Other,Innovation +129675,Other,Commercialization +129674,Other,Commercialization +139179,Other,Commercialization +139178,Other,Commercialization +139177,Other,Commercialization +129694,Other,Commercialization +414433,Financial Institutions,Financial Institutions +414431,Financial Institutions,Financial Institutions +327494,Financial Institutions,Financial Institutions +403196,Financial Institutions,Financial Institutions +392485,Financial Institutions,Financial Institutions +531671,Financial Institutions,Financial Institutions +531669,Financial Institutions,Financial Institutions +467619,Financial Institutions,Financial Institutions +414433,Taxation and Finance,Taxation and Finance +414431,Taxation and Finance,Taxation and Finance +281929,Taxation and Finance,Taxation and Finance +403196,Taxation and Finance,Taxation and Finance +392485,Taxation and Finance,Taxation and Finance +327494,Taxation and Finance,Taxation and Finance +531671,Taxation and Finance,Taxation and Finance +531669,Taxation and Finance,Taxation and Finance +467619,Taxation and Finance,Taxation and Finance +267529,Defence,Defence +315850,Defence,Defence +158834,Defence,Defence +267538,Defence,Defence +267537,Defence,Defence +267536,Defence,Defence +267535,Defence,Defence +267534,Defence,Defence +267533,Defence,Defence +267532,Defence,Defence +267531,Government Procurement,Government Procurement +267529,Government Procurement,Government Procurement +315850,Government Procurement,Government Procurement +267538,Government Procurement,Government Procurement +267537,Government Procurement,Government Procurement +267536,Government Procurement,Government Procurement +267535,Government Procurement,Government Procurement +267534,Government Procurement,Government Procurement +267533,Government Procurement,Government Procurement +199708,Defence,Defence +199706,Defence,Defence +192207,Employment and Training,Employment and Training +192206,Employment and Training,Employment and Training +192205,Employment and Training,Employment and Training +192204,Employment and Training,Employment and Training +199709,Employment and Training,Employment and Training +199708,Employment and Training,Employment and Training +199706,Employment and Training,Employment and Training +192209,Employment and Training,Employment and Training +192205,Energy,Energy +192204,Energy,Energy +199709,Energy,Energy +199708,Energy,Energy +199706,Energy,Energy +192209,Energy,Energy +192208,Energy,Energy +192207,Energy,Energy +192205,Environment,Environment +192204,Environment,Environment +192209,Environment,Environment +192208,Environment,Environment +192207,Environment,Environment +125204,Infrastructure,Infrastructure +275251,Infrastructure,Infrastructure +199709,Infrastructure,Infrastructure +199708,Infrastructure,Infrastructure +199706,Infrastructure,Infrastructure +192209,Infrastructure,Infrastructure +192208,Infrastructure,Infrastructure +192207,Infrastructure,Infrastructure +192206,Infrastructure,Infrastructure +192205,Infrastructure,Infrastructure +192204,Infrastructure,Infrastructure +199708,Regional Development,Regional Development +199706,Regional Development,Regional Development +192209,Regional Development,Regional Development +192208,Regional Development,Regional Development +192207,Regional Development,Regional Development +192206,Regional Development,Regional Development +192205,Regional Development,Regional Development +192204,Regional Development,Regional Development +192204,Taxation and Finance,Taxation and Finance +275251,Taxation and Finance,Taxation and Finance +101280,Taxation and Finance,Taxation and Finance +97452,Taxation and Finance,Taxation and Finance +97430,Taxation and Finance,Taxation and Finance +97426,Taxation and Finance,Taxation and Finance +192209,Taxation and Finance,Taxation and Finance +192208,Taxation and Finance,Taxation and Finance +192207,Taxation and Finance,Taxation and Finance +192206,Taxation and Finance,Taxation and Finance +192205,Tourism,Tourism +192204,Tourism,Tourism +192209,Tourism,Tourism +192208,Tourism,Tourism +192207,Tourism,Tourism +192204,Transportation,Transportation +275251,Transportation,Transportation +199709,Transportation,Transportation +199708,Transportation,Transportation +199706,Transportation,Transportation +192209,Transportation,Transportation +192208,Transportation,Transportation +192207,Transportation,Transportation +192206,Transportation,Transportation +101269,Health,Health +152186,Infrastructure,Infrastructure +150310,Infrastructure,Infrastructure +160189,Infrastructure,Infrastructure +407174,Regional Development,Regional Development +407007,Regional Development,Regional Development +398523,Regional Development,Regional Development +431582,Regional Development,Regional Development +431581,Regional Development,Regional Development +450873,Defence,Defence +450872,Defence,Defence +126734,Defence,Defence +125834,Defence,Defence +111337,Defence,Defence +111336,Defence,Defence +111334,Defence,Defence +106555,Defence,Defence +89097,Defence,Defence +280491,Defence,Defence +201088,Defence,Defence +150479,Defence,Defence +150478,Defence,Defence +150477,Defence,Defence +378023,Defence,Defence +368295,Defence,Defence +398064,Defence,Defence +395350,Defence,Defence +395019,Defence,Defence +393769,Defence,Defence +450873,Government Procurement,Government Procurement +450872,Government Procurement,Government Procurement +111337,Government Procurement,Government Procurement +111336,Government Procurement,Government Procurement +111334,Government Procurement,Government Procurement +106555,Government Procurement,Government Procurement +150479,Government Procurement,Government Procurement +150478,Government Procurement,Government Procurement +150477,Government Procurement,Government Procurement +126734,Government Procurement,Government Procurement +125834,Government Procurement,Government Procurement +280491,Government Procurement,Government Procurement +201088,Government Procurement,Government Procurement +398064,Government Procurement,Government Procurement +395350,Government Procurement,Government Procurement +395019,Government Procurement,Government Procurement +378023,Government Procurement,Government Procurement +368295,Government Procurement,Government Procurement +456370,Industry,Industry +450873,Industry,Industry +150479,Industry,Industry +150478,Industry,Industry +150477,Industry,Industry +111336,Industry,Industry +106555,Industry,Industry +280491,Industry,Industry +201088,Industry,Industry +398064,Industry,Industry +395350,Industry,Industry +395019,Industry,Industry +393769,Industry,Industry +378023,Industry,Industry +134314,Health,Health +269161,Justice and Law Enforcement,Justice and Law Enforcement +97540,Justice and Law Enforcement,Justice and Law Enforcement +97538,Justice and Law Enforcement,Justice and Law Enforcement +105778,Justice and Law Enforcement,Justice and Law Enforcement +105776,Justice and Law Enforcement,Justice and Law Enforcement +105774,Justice and Law Enforcement,Justice and Law Enforcement +101415,Justice and Law Enforcement,Justice and Law Enforcement +77469,Sports,Sports +77468,Sports,Sports +105781,Sports,Sports +132969,Sports,Sports +377083,Consumer Issues,Consumer Issues +362562,Consumer Issues,Consumer Issues +97145,Consumer Issues,Consumer Issues +93021,Consumer Issues,Consumer Issues +81078,Consumer Issues,Consumer Issues +81077,Consumer Issues,Consumer Issues +77649,Consumer Issues,Consumer Issues +153120,Consumer Issues,Consumer Issues +148225,Consumer Issues,Consumer Issues +148219,Consumer Issues,Consumer Issues +102762,Consumer Issues,Consumer Issues +102757,Consumer Issues,Consumer Issues +469213,Consumer Issues,Consumer Issues +463933,Consumer Issues,Consumer Issues +456401,Consumer Issues,Consumer Issues +456400,Consumer Issues,Consumer Issues +456399,Consumer Issues,Consumer Issues +387382,Consumer Issues,Consumer Issues +387380,Consumer Issues,Consumer Issues +381223,Consumer Issues,Consumer Issues +280487,Industry,Industry +280484,Industry,Industry +102763,Industry,Industry +171846,Industry,Industry +171845,Industry,Industry +171844,Industry,Industry +161500,Industry,Industry +150420,Industry,Industry +145961,Industry,Industry +377088,Industry,Industry +377083,Industry,Industry +295980,Industry,Industry +121334,Other,Electronic Commerce +113376,Other,Electronic Commerce +148215,Other,Electronic Commerce +135676,Other,Electronic Commerce +124280,Other,Electronic Commerce +124278,Other,Electronic Commerce +124276,Other,Electronic Commerce +436907,Environment,Environment +434502,Environment,Environment +132895,Environment,Environment +424847,Environment,Environment +424845,Environment,Environment +424844,Environment,Environment +424843,Environment,Environment +424842,Environment,Environment +394700,Environment,Environment +340114,Environment,Environment +479050,Environment,Environment +479049,Environment,Environment +545232,Forestry,Forestry +494486,Forestry,Forestry +156009,Forestry,Forestry +156008,Forestry,Forestry +192502,Forestry,Forestry +177305,Forestry,Forestry +340114,Forestry,Forestry +477122,Forestry,Forestry +463514,Forestry,Forestry +463513,Forestry,Forestry +463511,Forestry,Forestry +463510,Forestry,Forestry +463503,Forestry,Forestry +462241,Forestry,Forestry +440478,Forestry,Forestry +440476,Forestry,Forestry +440475,Forestry,Forestry +424846,Forestry,Forestry +424843,Forestry,Forestry +418800,Forestry,Forestry +545236,Forestry,Forestry +545235,Forestry,Forestry +132895,Industry,Industry +424846,Industry,Industry +92777,Industry,Industry +433073,International Trade,International Trade +424846,International Trade,International Trade +167424,International Trade,International Trade +169950,International Trade,International Trade +418800,International Trade,International Trade +463514,International Trade,International Trade +463512,International Trade,International Trade +463511,International Trade,International Trade +463510,International Trade,International Trade +463507,International Trade,International Trade +463506,International Trade,International Trade +463503,International Trade,International Trade +440477,International Trade,International Trade +440474,Taxation and Finance,Taxation and Finance +424846,Taxation and Finance,Taxation and Finance +506913,Health,Health +497966,Health,Health +111874,Health,Health +152959,Health,Health +152958,Health,Health +152957,Health,Health +335843,Health,Health +319532,Health,Health +316130,Health,Health +316129,Health,Health +307929,Health,Health +307912,Health,Health +307911,Health,Health +307910,Health,Health +307909,Health,Health +307889,Health,Health +275330,Health,Health +275329,Health,Health +220327,Health,Health +495116,Health,Health +495112,Health,Health +495107,Health,Health +486812,Health,Health +486680,Health,Health +486679,Health,Health +483443,Health,Health +477639,Health,Health +477638,Health,Health +475700,Health,Health +472369,Health,Health +471094,Health,Health +455781,Health,Health +454844,Health,Health +448304,Health,Health +448302,Health,Health +444256,Health,Health +443750,Health,Health +443517,Health,Health +439848,Health,Health +437545,Health,Health +437542,Health,Health +437537,Health,Health +436876,Health,Health +436875,Health,Health +434203,Health,Health +432193,Health,Health +432191,Health,Health +428735,Health,Health +428726,Health,Health +428683,Health,Health +428679,Health,Health +424116,Health,Health +423574,Health,Health +422586,Health,Health +415704,Health,Health +414866,Health,Health +414864,Health,Health +411215,Health,Health +411214,Health,Health +410559,Health,Health +408338,Health,Health +407323,Health,Health +405909,Health,Health +401385,Health,Health +393380,Health,Health +387639,Health,Health +377670,Health,Health +377669,Health,Health +377668,Health,Health +375606,Health,Health +374204,Health,Health +542866,Health,Health +541288,Health,Health +537379,Health,Health +534272,Health,Health +534270,Health,Health +534268,Health,Health +531021,Health,Health +531020,Health,Health +527904,Health,Health +527901,Health,Health +527900,Health,Health +527866,Health,Health +521400,Health,Health +513871,Health,Health +512444,Health,Health +510029,Health,Health +410559,Industry,Industry +537379,Industry,Industry +111874,Industry,Industry +220327,Industry,Industry +152959,Industry,Industry +152958,Industry,Industry +408339,Industry,Industry +407323,Industry,Industry +406575,Industry,Industry +401385,Industry,Industry +387639,Industry,Industry +377670,Industry,Industry +377669,Industry,Industry +375606,Industry,Industry +374735,Industry,Industry +374733,Industry,Industry +374204,Industry,Industry +371452,Industry,Industry +371443,Industry,Industry +371440,Industry,Industry +371438,Industry,Industry +371435,Industry,Industry +371431,Industry,Industry +371429,Industry,Industry +366601,Industry,Industry +335847,Industry,Industry +335843,Industry,Industry +335835,Industry,Industry +332329,Industry,Industry +307909,Industry,Industry +454844,Industry,Industry +448304,Industry,Industry +448302,Industry,Industry +444256,Industry,Industry +439848,Industry,Industry +436876,Industry,Industry +436875,Industry,Industry +434203,Industry,Industry +428683,Industry,Industry +428679,Industry,Industry +424116,Industry,Industry +423574,Industry,Industry +415704,Industry,Industry +414866,Industry,Industry +537379,Intellectual Property,Intellectual Property +471094,Intellectual Property,Intellectual Property +111876,Intellectual Property,Intellectual Property +111874,Intellectual Property,Intellectual Property +152959,Intellectual Property,Intellectual Property +152958,Intellectual Property,Intellectual Property +152957,Intellectual Property,Intellectual Property +366601,Intellectual Property,Intellectual Property +307912,Intellectual Property,Intellectual Property +307911,Intellectual Property,Intellectual Property +307889,Intellectual Property,Intellectual Property +275330,Intellectual Property,Intellectual Property +275329,Intellectual Property,Intellectual Property +269836,Intellectual Property,Intellectual Property +245083,Intellectual Property,Intellectual Property +245019,Intellectual Property,Intellectual Property +436875,Intellectual Property,Intellectual Property +411215,Intellectual Property,Intellectual Property +411214,Intellectual Property,Intellectual Property +406575,Intellectual Property,Intellectual Property +401385,Intellectual Property,Intellectual Property +393380,Intellectual Property,Intellectual Property +389106,Intellectual Property,Intellectual Property +387639,Intellectual Property,Intellectual Property +381305,Intellectual Property,Intellectual Property +381302,Intellectual Property,Intellectual Property +381295,Intellectual Property,Intellectual Property +377670,Intellectual Property,Intellectual Property +377669,Intellectual Property,Intellectual Property +374735,Intellectual Property,Intellectual Property +374730,Intellectual Property,Intellectual Property +374725,Intellectual Property,Intellectual Property +374722,Intellectual Property,Intellectual Property +371452,Intellectual Property,Intellectual Property +371448,Intellectual Property,Intellectual Property +152958,International Trade,International Trade +220327,International Trade,International Trade +111874,International Trade,International Trade +111874,Taxation and Finance,Taxation and Finance +77643,Government Procurement,Government Procurement +77642,Government Procurement,Government Procurement +97485,Government Procurement,Government Procurement +90420,Government Procurement,Government Procurement +88110,Government Procurement,Government Procurement +85392,Government Procurement,Government Procurement +83023,Government Procurement,Government Procurement +85395,Infrastructure,Infrastructure +85394,Infrastructure,Infrastructure +97171,Infrastructure,Infrastructure +97168,Infrastructure,Infrastructure +87195,Consumer Issues,Consumer Issues +87194,Consumer Issues,Consumer Issues +90367,Consumer Issues,Consumer Issues +430549,Health,Health +430547,Health,Health +90367,Health,Health +90362,Health,Health +87195,Health,Health +87194,Health,Health +77233,Health,Health +77229,Health,Health +170805,Health,Health +170803,Health,Health +162086,Health,Health +162079,Health,Health +162078,Health,Health +162076,Health,Health +162074,Health,Health +162072,Health,Health +159255,Health,Health +156837,Health,Health +156835,Health,Health +154617,Health,Health +153488,Health,Health +153487,Health,Health +153486,Health,Health +152128,Health,Health +152127,Health,Health +152126,Health,Health +152125,Health,Health +152124,Health,Health +152123,Health,Health +149757,Health,Health +146283,Health,Health +109874,Health,Health +329971,Health,Health +328310,Health,Health +322266,Health,Health +312757,Health,Health +310995,Health,Health +310994,Health,Health +286814,Health,Health +281050,Health,Health +277491,Health,Health +277489,Health,Health +258512,Health,Health +258511,Health,Health +258509,Health,Health +258493,Health,Health +258489,Health,Health +254140,Health,Health +239909,Health,Health +228369,Health,Health +220168,Health,Health +211530,Health,Health +211528,Health,Health +211513,Health,Health +211512,Health,Health +170858,Health,Health +170808,Health,Health +170806,Health,Health +430533,Health,Health +430524,Health,Health +428029,Health,Health +428008,Health,Health +428007,Health,Health +428006,Health,Health +425548,Health,Health +425545,Health,Health +425542,Health,Health +423139,Health,Health +423137,Health,Health +423136,Health,Health +423135,Health,Health +423134,Health,Health +423133,Health,Health +423126,Health,Health +421377,Health,Health +421376,Health,Health +421371,Health,Health +421366,Health,Health +419233,Health,Health +419232,Health,Health +419230,Health,Health +419224,Health,Health +418996,Health,Health +417517,Health,Health +417516,Health,Health +414744,Health,Health +414743,Health,Health +411430,Health,Health +411429,Health,Health +411427,Health,Health +409143,Health,Health +409135,Health,Health +409019,Health,Health +409013,Health,Health +407559,Health,Health +406463,Health,Health +406460,Health,Health +406459,Health,Health +406457,Health,Health +406454,Health,Health +400613,Health,Health +396737,Health,Health +396725,Health,Health +387658,Health,Health +374747,Health,Health +364875,Health,Health +362086,Health,Health +349351,Health,Health +349349,Health,Health +349187,Health,Health +349181,Health,Health +347352,Health,Health +343460,Health,Health +342065,Health,Health +342062,Health,Health +543570,Health,Health +543568,Health,Health +543566,Health,Health +541016,Health,Health +540367,Health,Health +538096,Health,Health +538094,Health,Health +538091,Health,Health +533870,Health,Health +533869,Health,Health +533868,Health,Health +533867,Health,Health +533866,Health,Health +533865,Health,Health +532489,Health,Health +532488,Health,Health +531869,Health,Health +528736,Health,Health +528735,Health,Health +528733,Health,Health +525146,Health,Health +525144,Health,Health +524798,Health,Health +524797,Health,Health +522067,Health,Health +522066,Health,Health +522065,Health,Health +522064,Health,Health +522063,Health,Health +522062,Health,Health +522061,Health,Health +522060,Health,Health +520241,Health,Health +520240,Health,Health +520238,Health,Health +520237,Health,Health +520236,Health,Health +517040,Health,Health +517038,Health,Health +517037,Health,Health +517036,Health,Health +517035,Health,Health +517034,Health,Health +517030,Health,Health +515145,Health,Health +515144,Health,Health +515143,Health,Health +515142,Health,Health +515141,Health,Health +514548,Health,Health +514547,Health,Health +514546,Health,Health +514545,Health,Health +514544,Health,Health +514542,Health,Health +514540,Health,Health +513796,Health,Health +513795,Health,Health +512719,Health,Health +512716,Health,Health +512714,Health,Health +510176,Health,Health +510174,Health,Health +510172,Health,Health +510171,Health,Health +507338,Health,Health +507336,Health,Health +507335,Health,Health +507334,Health,Health +504284,Health,Health +504283,Health,Health +504281,Health,Health +504277,Health,Health +501207,Health,Health +501203,Health,Health +501200,Health,Health +497493,Health,Health +497491,Health,Health +497489,Health,Health +494863,Health,Health +492535,Health,Health +490043,Health,Health +490041,Health,Health +490037,Health,Health +489899,Health,Health +487576,Health,Health +487571,Health,Health +487568,Health,Health +487567,Health,Health +487563,Health,Health +487560,Health,Health +487549,Health,Health +484051,Health,Health +484050,Health,Health +484047,Health,Health +484045,Health,Health +484044,Health,Health +484043,Health,Health +479822,Health,Health +479817,Health,Health +477579,Health,Health +472253,Health,Health +472252,Health,Health +472251,Health,Health +472248,Health,Health +472246,Health,Health +472240,Health,Health +472238,Health,Health +472237,Health,Health +472236,Health,Health +472235,Health,Health +469337,Health,Health +469336,Health,Health +469331,Health,Health +466808,Health,Health +464327,Health,Health +464324,Health,Health +464323,Health,Health +464317,Health,Health +460909,Health,Health +460908,Health,Health +460907,Health,Health +459738,Health,Health +458925,Health,Health +457481,Health,Health +457479,Health,Health +454890,Health,Health +454888,Health,Health +454886,Health,Health +445985,Health,Health +445984,Health,Health +445983,Health,Health +445982,Health,Health +445981,Health,Health +445980,Health,Health +445979,Health,Health +445976,Health,Health +444449,Health,Health +443415,Health,Health +443410,Health,Health +440908,Health,Health +439739,Health,Health +439738,Health,Health +439736,Health,Health +439733,Health,Health +439732,Health,Health +439731,Health,Health +439730,Health,Health +439728,Health,Health +439727,Health,Health +435837,Health,Health +435836,Health,Health +435834,Health,Health +435832,Health,Health +435823,Health,Health +433439,Health,Health +433438,Health,Health +432662,Health,Health +432661,Health,Health +432660,Health,Health +457481,Industry,Industry +457479,Industry,Industry +162080,Industry,Industry +159255,Industry,Industry +109874,Industry,Industry +90367,Industry,Industry +90362,Industry,Industry +87195,Industry,Industry +87194,Industry,Industry +239910,Industry,Industry +233649,Industry,Industry +228369,Industry,Industry +220168,Industry,Industry +211530,Industry,Industry +211528,Industry,Industry +211513,Industry,Industry +211512,Industry,Industry +189886,Industry,Industry +189885,Industry,Industry +189884,Industry,Industry +189868,Industry,Industry +184984,Industry,Industry +184944,Industry,Industry +170820,Industry,Industry +170818,Industry,Industry +170816,Industry,Industry +170814,Industry,Industry +170806,Industry,Industry +162085,Industry,Industry +162083,Industry,Industry +162082,Industry,Industry +454893,Industry,Industry +454892,Industry,Industry +454891,Industry,Industry +454890,Industry,Industry +454888,Industry,Industry +454886,Industry,Industry +451963,Industry,Industry +445985,Industry,Industry +445984,Industry,Industry +445983,Industry,Industry +445981,Industry,Industry +445980,Industry,Industry +445979,Industry,Industry +445976,Industry,Industry +421378,Industry,Industry +409001,Industry,Industry +408997,Industry,Industry +408996,Industry,Industry +408995,Industry,Industry +408993,Industry,Industry +407553,Industry,Industry +407552,Industry,Industry +398516,Industry,Industry +398513,Industry,Industry +398507,Industry,Industry +393952,Industry,Industry +333564,Industry,Industry +538105,Industry,Industry +538104,Industry,Industry +525146,Industry,Industry +525144,Industry,Industry +517027,Industry,Industry +513794,Industry,Industry +507339,Industry,Industry +507333,Industry,Industry +504281,Industry,Industry +504276,Industry,Industry +501205,Industry,Industry +501196,Industry,Industry +497495,Industry,Industry +497494,Industry,Industry +497492,Industry,Industry +494867,Industry,Industry +494866,Industry,Industry +494860,Industry,Industry +492514,Industry,Industry +487576,Industry,Industry +487571,Industry,Industry +487556,Industry,Industry +484047,Industry,Industry +472252,Industry,Industry +472248,Industry,Industry +472240,Industry,Industry +472237,Industry,Industry +472236,Industry,Industry +472235,Industry,Industry +469339,Industry,Industry +469338,Industry,Industry +469335,Industry,Industry +469334,Industry,Industry +469331,Industry,Industry +466808,Industry,Industry +464327,Industry,Industry +464324,Industry,Industry +464323,Industry,Industry +464317,Industry,Industry +189885,Infrastructure,Infrastructure +189884,Infrastructure,Infrastructure +504281,Intellectual Property,Intellectual Property +460908,Intellectual Property,Intellectual Property +90367,Intellectual Property,Intellectual Property +90362,Intellectual Property,Intellectual Property +114394,Intellectual Property,Intellectual Property +109874,Intellectual Property,Intellectual Property +211530,Intellectual Property,Intellectual Property +211528,Intellectual Property,Intellectual Property +211513,Intellectual Property,Intellectual Property +211512,Intellectual Property,Intellectual Property +170806,Intellectual Property,Intellectual Property +162074,Intellectual Property,Intellectual Property +159255,Intellectual Property,Intellectual Property +153488,Intellectual Property,Intellectual Property +153487,Intellectual Property,Intellectual Property +152125,Intellectual Property,Intellectual Property +152124,Intellectual Property,Intellectual Property +152123,Intellectual Property,Intellectual Property +149757,Intellectual Property,Intellectual Property +393954,Intellectual Property,Intellectual Property +389743,Intellectual Property,Intellectual Property +353859,Intellectual Property,Intellectual Property +349182,Intellectual Property,Intellectual Property +347354,Intellectual Property,Intellectual Property +335834,Intellectual Property,Intellectual Property +331183,Intellectual Property,Intellectual Property +331182,Intellectual Property,Intellectual Property +328310,Intellectual Property,Intellectual Property +322266,Intellectual Property,Intellectual Property +304251,Intellectual Property,Intellectual Property +296758,Intellectual Property,Intellectual Property +286814,Intellectual Property,Intellectual Property +286812,Intellectual Property,Intellectual Property +504281,Internal Trade,Internal Trade +208907,International Trade,International Trade +199735,International Trade,International Trade +109874,International Trade,International Trade +170806,International Trade,International Trade +152125,International Trade,International Trade +152124,International Trade,International Trade +349182,International Trade,International Trade +310996,International Trade,International Trade +211530,International Trade,International Trade +211528,International Trade,International Trade +211513,International Trade,International Trade +162082,Taxation and Finance,Taxation and Finance +153486,Taxation and Finance,Taxation and Finance +109874,Taxation and Finance,Taxation and Finance +90367,Taxation and Finance,Taxation and Finance +90362,Taxation and Finance,Taxation and Finance +162085,Taxation and Finance,Taxation and Finance +77180,Government Procurement,Government Procurement +135176,Government Procurement,Government Procurement +135175,Government Procurement,Government Procurement +95420,Government Procurement,Government Procurement +93549,Government Procurement,Government Procurement +88071,Government Procurement,Government Procurement +231430,Defence,Defence +231429,Defence,Defence +197475,Energy,Energy +193710,Energy,Energy +76937,Energy,Energy +76763,Energy,Energy +76456,Energy,Energy +76455,Energy,Energy +76277,Energy,Energy +76276,Energy,Energy +76275,Energy,Energy +75954,Energy,Energy +75334,Energy,Energy +75214,Energy,Energy +75034,Energy,Energy +93637,Energy,Energy +87582,Energy,Energy +87581,Energy,Energy +87580,Energy,Energy +87579,Energy,Energy +87578,Energy,Energy +87577,Energy,Energy +87576,Energy,Energy +87575,Energy,Energy +87574,Energy,Energy +84898,Energy,Energy +84582,Energy,Energy +84581,Energy,Energy +84580,Energy,Energy +84579,Energy,Energy +82761,Energy,Energy +82758,Energy,Energy +80448,Energy,Energy +80441,Energy,Energy +79934,Energy,Energy +79916,Energy,Energy +79915,Energy,Energy +79914,Energy,Energy +79895,Energy,Energy +79894,Energy,Energy +79875,Energy,Energy +156888,Energy,Energy +156842,Energy,Energy +154631,Energy,Energy +154629,Energy,Energy +153142,Energy,Energy +153137,Energy,Energy +151820,Energy,Energy +151818,Energy,Energy +151817,Energy,Energy +149576,Energy,Energy +147192,Energy,Energy +147191,Energy,Energy +145036,Energy,Energy +145034,Energy,Energy +137940,Energy,Energy +137939,Energy,Energy +137938,Energy,Energy +137937,Energy,Energy +137936,Energy,Energy +137935,Energy,Energy +137934,Energy,Energy +137918,Energy,Energy +137917,Energy,Energy +137916,Energy,Energy +137915,Energy,Energy +137914,Energy,Energy +133780,Energy,Energy +117295,Energy,Energy +114734,Energy,Energy +193707,Energy,Energy +193694,Energy,Energy +193692,Energy,Energy +193690,Energy,Energy +193689,Energy,Energy +193680,Energy,Energy +193678,Energy,Energy +193671,Energy,Energy +193666,Energy,Energy +193664,Energy,Energy +193663,Energy,Energy +193659,Energy,Energy +193655,Energy,Energy +193653,Energy,Energy +193650,Energy,Energy +193145,Energy,Energy +193144,Energy,Energy +193007,Energy,Energy +193006,Energy,Energy +193004,Energy,Energy +192993,Energy,Energy +192989,Energy,Energy +192987,Energy,Energy +192986,Energy,Energy +188887,Energy,Energy +188883,Energy,Energy +188706,Energy,Energy +188705,Energy,Energy +188699,Energy,Energy +188694,Energy,Energy +183205,Energy,Energy +183204,Energy,Energy +177726,Energy,Energy +177724,Energy,Energy +177549,Energy,Energy +177504,Energy,Energy +177485,Energy,Energy +177484,Energy,Energy +175275,Energy,Energy +175274,Energy,Energy +175187,Energy,Energy +175183,Energy,Energy +175182,Energy,Energy +175181,Energy,Energy +172929,Energy,Energy +171765,Energy,Energy +170389,Energy,Energy +170387,Energy,Energy +170385,Energy,Energy +170383,Energy,Energy +170380,Energy,Energy +167988,Energy,Energy +167986,Energy,Energy +167983,Energy,Energy +166944,Energy,Energy +166724,Energy,Energy +165762,Energy,Energy +165599,Energy,Energy +165469,Energy,Energy +165468,Energy,Energy +165467,Energy,Energy +165466,Energy,Energy +165465,Energy,Energy +161879,Energy,Energy +161874,Energy,Energy +158681,Energy,Energy +158680,Energy,Energy +156893,Energy,Energy +156892,Energy,Energy +156891,Energy,Energy +156889,Energy,Energy +284410,Energy,Energy +284409,Energy,Energy +239790,Energy,Energy +236024,Energy,Energy +236023,Energy,Energy +236021,Energy,Energy +232810,Energy,Energy +232809,Energy,Energy +229957,Energy,Energy +225569,Energy,Energy +222568,Energy,Energy +222567,Energy,Energy +215929,Energy,Energy +215928,Energy,Energy +215832,Energy,Energy +215831,Energy,Energy +215830,Energy,Energy +215829,Energy,Energy +215828,Energy,Energy +215827,Energy,Energy +211138,Energy,Energy +211137,Energy,Energy +211136,Energy,Energy +211135,Energy,Energy +211134,Energy,Energy +211133,Energy,Energy +211131,Energy,Energy +206134,Energy,Energy +206132,Energy,Energy +206130,Energy,Energy +206129,Energy,Energy +206128,Energy,Energy +202545,Energy,Energy +202543,Energy,Energy +202534,Energy,Energy +202531,Energy,Energy +199409,Energy,Energy +199408,Energy,Energy +199387,Energy,Energy +199367,Energy,Energy +199348,Energy,Energy +199287,Energy,Energy +199252,Energy,Energy +215928,Environment,Environment +211137,Environment,Environment +79917,Environment,Environment +75334,Environment,Environment +206132,Environment,Environment +202531,Environment,Environment +188708,Environment,Environment +175275,Environment,Environment +175274,Environment,Environment +175180,Environment,Environment +175178,Environment,Environment +172929,Environment,Environment +170377,Environment,Environment +167983,Environment,Environment +166724,Environment,Environment +284410,Environment,Environment +229957,Environment,Environment +222568,Environment,Environment +453123,Consumer Issues,Consumer Issues +475772,Financial Institutions,Financial Institutions +475768,Financial Institutions,Financial Institutions +205207,Financial Institutions,Financial Institutions +330345,Financial Institutions,Financial Institutions +328830,Financial Institutions,Financial Institutions +326764,Financial Institutions,Financial Institutions +322771,Financial Institutions,Financial Institutions +322770,Financial Institutions,Financial Institutions +322769,Financial Institutions,Financial Institutions +313491,Financial Institutions,Financial Institutions +313490,Financial Institutions,Financial Institutions +278509,Financial Institutions,Financial Institutions +267551,Financial Institutions,Financial Institutions +267550,Financial Institutions,Financial Institutions +265329,Financial Institutions,Financial Institutions +262329,Financial Institutions,Financial Institutions +256869,Financial Institutions,Financial Institutions +253711,Financial Institutions,Financial Institutions +253709,Financial Institutions,Financial Institutions +252756,Financial Institutions,Financial Institutions +252714,Financial Institutions,Financial Institutions +242229,Financial Institutions,Financial Institutions +471270,Financial Institutions,Financial Institutions +464155,Financial Institutions,Financial Institutions +464154,Financial Institutions,Financial Institutions +464153,Financial Institutions,Financial Institutions +459832,Financial Institutions,Financial Institutions +456902,Financial Institutions,Financial Institutions +456900,Financial Institutions,Financial Institutions +456618,Financial Institutions,Financial Institutions +454384,Financial Institutions,Financial Institutions +453722,Financial Institutions,Financial Institutions +453123,Financial Institutions,Financial Institutions +450695,Financial Institutions,Financial Institutions +450693,Financial Institutions,Financial Institutions +443691,Financial Institutions,Financial Institutions +443238,Financial Institutions,Financial Institutions +440607,Financial Institutions,Financial Institutions +439553,Financial Institutions,Financial Institutions +439552,Financial Institutions,Financial Institutions +433941,Financial Institutions,Financial Institutions +432610,Financial Institutions,Financial Institutions +430404,Financial Institutions,Financial Institutions +427383,Financial Institutions,Financial Institutions +413036,Financial Institutions,Financial Institutions +413032,Financial Institutions,Financial Institutions +413031,Financial Institutions,Financial Institutions +408807,Financial Institutions,Financial Institutions +407685,Financial Institutions,Financial Institutions +394100,Financial Institutions,Financial Institutions +387000,Financial Institutions,Financial Institutions +350014,Financial Institutions,Financial Institutions +347883,Financial Institutions,Financial Institutions +543933,Financial Institutions,Financial Institutions +543929,Financial Institutions,Financial Institutions +541349,Financial Institutions,Financial Institutions +537122,Financial Institutions,Financial Institutions +537120,Financial Institutions,Financial Institutions +537119,Financial Institutions,Financial Institutions +537118,Financial Institutions,Financial Institutions +534956,Financial Institutions,Financial Institutions +528200,Financial Institutions,Financial Institutions +518957,Financial Institutions,Financial Institutions +518956,Financial Institutions,Financial Institutions +515552,Financial Institutions,Financial Institutions +499564,Financial Institutions,Financial Institutions +499556,Financial Institutions,Financial Institutions +495128,Financial Institutions,Financial Institutions +495127,Financial Institutions,Financial Institutions +491722,Financial Institutions,Financial Institutions +475791,Financial Institutions,Financial Institutions +475788,Financial Institutions,Financial Institutions +475785,Financial Institutions,Financial Institutions +475783,Financial Institutions,Financial Institutions +475782,Financial Institutions,Financial Institutions +475777,Financial Institutions,Financial Institutions +450695,Health,Health +450693,Health,Health +210495,Health,Health +204248,Health,Health +444884,Health,Health +444883,Health,Health +444882,Health,Health +444881,Health,Health +444880,Health,Health +444879,Health,Health +444878,Health,Health +444877,Health,Health +444876,Health,Health +444875,Health,Health +444874,Health,Health +444831,Health,Health +443689,Health,Health +443670,Health,Health +443237,Health,Health +440711,Health,Health +440710,Health,Health +440709,Health,Health +440607,Health,Health +439552,Health,Health +436260,Health,Health +433946,Health,Health +433945,Health,Health +433944,Health,Health +433943,Health,Health +433942,Health,Health +433941,Health,Health +427468,Health,Health +427467,Health,Health +427466,Health,Health +427465,Health,Health +422954,Health,Health +422953,Health,Health +422952,Health,Health +422951,Health,Health +422617,Health,Health +420445,Health,Health +420444,Health,Health +420443,Health,Health +420441,Health,Health +420439,Health,Health +393422,Health,Health +393416,Health,Health +537121,Health,Health +537117,Health,Health +534956,Health,Health +534942,Health,Health +534939,Health,Health +534933,Health,Health +534925,Health,Health +534923,Health,Health +534917,Health,Health +534913,Health,Health +534649,Health,Health +528203,Health,Health +528190,Health,Health +518989,Health,Health +518974,Health,Health +518958,Health,Health +518957,Health,Health +514510,Health,Health +513652,Health,Health +511997,Health,Health +509557,Health,Health +509556,Health,Health +509555,Health,Health +509552,Health,Health +507880,Health,Health +499564,Health,Health +495128,Health,Health +494122,Health,Health +491932,Health,Health +491733,Health,Health +491730,Health,Health +491727,Health,Health +491726,Health,Health +491725,Health,Health +491721,Health,Health +491718,Health,Health +488088,Health,Health +486499,Health,Health +485446,Health,Health +485445,Health,Health +485444,Health,Health +485443,Health,Health +485442,Health,Health +466021,Health,Health +466020,Health,Health +466019,Health,Health +464155,Health,Health +464154,Health,Health +464153,Health,Health +463070,Health,Health +462955,Health,Health +462164,Health,Health +459830,Health,Health +456847,Health,Health +454384,Health,Health +453722,Health,Health +453149,Health,Health +432608,International Relations,International Relations +511997,International Relations,International Relations +453180,International Relations,International Relations +453179,International Relations,International Relations +511997,International Trade,International Trade +495126,International Trade,International Trade +242995,International Trade,International Trade +242994,International Trade,International Trade +239452,International Trade,International Trade +239450,International Trade,International Trade +231009,International Trade,International Trade +228049,International Trade,International Trade +210495,International Trade,International Trade +365043,International Trade,International Trade +359905,International Trade,International Trade +349614,International Trade,International Trade +328833,International Trade,International Trade +328832,International Trade,International Trade +328830,International Trade,International Trade +299090,International Trade,International Trade +294392,International Trade,International Trade +288149,International Trade,International Trade +275849,International Trade,International Trade +267551,International Trade,International Trade +265329,International Trade,International Trade +261769,International Trade,International Trade +256869,International Trade,International Trade +254347,International Trade,International Trade +491723,International Trade,International Trade +465116,International Trade,International Trade +465115,International Trade,International Trade +465113,International Trade,International Trade +465112,International Trade,International Trade +465109,International Trade,International Trade +462163,International Trade,International Trade +456618,International Trade,International Trade +453180,International Trade,International Trade +453179,International Trade,International Trade +453177,International Trade,International Trade +439553,International Trade,International Trade +432608,International Trade,International Trade +420841,International Trade,International Trade +420840,International Trade,International Trade +404018,International Trade,International Trade +396106,International Trade,International Trade +387000,International Trade,International Trade +534951,International Trade,International Trade +534949,International Trade,International Trade +486499,Taxation and Finance,Taxation and Finance +485442,Taxation and Finance,Taxation and Finance +77717,Taxation and Finance,Taxation and Finance +210495,Taxation and Finance,Taxation and Finance +400364,Taxation and Finance,Taxation and Finance +393427,Taxation and Finance,Taxation and Finance +393422,Taxation and Finance,Taxation and Finance +393416,Taxation and Finance,Taxation and Finance +391944,Taxation and Finance,Taxation and Finance +543933,Taxation and Finance,Taxation and Finance +543929,Taxation and Finance,Taxation and Finance +541422,Taxation and Finance,Taxation and Finance +534956,Taxation and Finance,Taxation and Finance +534945,Taxation and Finance,Taxation and Finance +534933,Taxation and Finance,Taxation and Finance +534926,Taxation and Finance,Taxation and Finance +534905,Taxation and Finance,Taxation and Finance +528208,Taxation and Finance,Taxation and Finance +524760,Taxation and Finance,Taxation and Finance +522296,Taxation and Finance,Taxation and Finance +518958,Taxation and Finance,Taxation and Finance +518957,Taxation and Finance,Taxation and Finance +518956,Taxation and Finance,Taxation and Finance +515552,Taxation and Finance,Taxation and Finance +514510,Taxation and Finance,Taxation and Finance +513653,Taxation and Finance,Taxation and Finance +164368,Government Procurement,Government Procurement +250588,Employment and Training,Employment and Training +223452,Employment and Training,Employment and Training +153159,Employment and Training,Employment and Training +250571,Environment,Environment +319146,Environment,Environment +200654,Environment,Environment +185084,Environment,Environment +179744,Environment,Environment +171804,Environment,Environment +473191,Financial Institutions,Financial Institutions +473187,Financial Institutions,Financial Institutions +211568,Financial Institutions,Financial Institutions +505041,Financial Institutions,Financial Institutions +505039,Financial Institutions,Financial Institutions +505027,Financial Institutions,Financial Institutions +505017,Financial Institutions,Financial Institutions +475974,Financial Institutions,Financial Institutions +475961,Financial Institutions,Financial Institutions +475959,Financial Institutions,Financial Institutions +475957,Financial Institutions,Financial Institutions +475950,Financial Institutions,Financial Institutions +475928,Financial Institutions,Financial Institutions +467785,Government Procurement,Government Procurement +467780,Government Procurement,Government Procurement +76894,Government Procurement,Government Procurement +174965,Government Procurement,Government Procurement +174964,Government Procurement,Government Procurement +165244,Government Procurement,Government Procurement +250571,Government Procurement,Government Procurement +228976,Government Procurement,Government Procurement +471197,Industry,Industry +471195,Industry,Industry +200655,Industry,Industry +185084,Industry,Industry +523003,Industry,Industry +507894,Industry,Industry +479977,Industry,Industry +478282,Industry,Industry +475928,Industry,Industry +475924,Industry,Industry +446701,Labour,Labour +428582,Labour,Labour +109691,Labour,Labour +150293,Labour,Labour +280369,Labour,Labour +275911,Labour,Labour +240991,Labour,Labour +223452,Labour,Labour +215750,Labour,Labour +418273,Labour,Labour +416115,Labour,Labour +406591,Labour,Labour +401178,Labour,Labour +351241,Labour,Labour +336319,Labour,Labour +329211,Labour,Labour +319147,Labour,Labour +431070,Transportation,Transportation +431065,Transportation,Transportation +76908,Transportation,Transportation +109695,Transportation,Transportation +82834,Transportation,Transportation +206528,Transportation,Transportation +185084,Transportation,Transportation +172685,Transportation,Transportation +172684,Transportation,Transportation +171805,Transportation,Transportation +161682,Transportation,Transportation +161114,Transportation,Transportation +428622,Transportation,Transportation +428618,Transportation,Transportation +426564,Transportation,Transportation +421260,Transportation,Transportation +404728,Transportation,Transportation +404007,Transportation,Transportation +398790,Transportation,Transportation +398787,Transportation,Transportation +392051,Transportation,Transportation +387323,Transportation,Transportation +383802,Transportation,Transportation +379626,Transportation,Transportation +379610,Transportation,Transportation +376789,Transportation,Transportation +376787,Transportation,Transportation +376776,Transportation,Transportation +366583,Transportation,Transportation +351238,Transportation,Transportation +351237,Transportation,Transportation +351233,Transportation,Transportation +351228,Transportation,Transportation +349001,Transportation,Transportation +336318,Transportation,Transportation +331191,Transportation,Transportation +302509,Transportation,Transportation +295890,Transportation,Transportation +280370,Transportation,Transportation +262213,Transportation,Transportation +258730,Transportation,Transportation +244893,Transportation,Transportation +226668,Transportation,Transportation +223436,Transportation,Transportation +510878,Transportation,Transportation +510874,Transportation,Transportation +507894,Transportation,Transportation +505041,Transportation,Transportation +505039,Transportation,Transportation +505027,Transportation,Transportation +505017,Transportation,Transportation +504790,Transportation,Transportation +504773,Transportation,Transportation +504766,Transportation,Transportation +504753,Transportation,Transportation +499682,Transportation,Transportation +499194,Transportation,Transportation +495417,Transportation,Transportation +493471,Transportation,Transportation +490955,Transportation,Transportation +482082,Transportation,Transportation +479977,Transportation,Transportation +471197,Transportation,Transportation +471195,Transportation,Transportation +471191,Transportation,Transportation +471190,Transportation,Transportation +460194,Transportation,Transportation +459510,Transportation,Transportation +445568,Transportation,Transportation +445562,Transportation,Transportation +444029,Transportation,Transportation +435924,Transportation,Transportation +402256,Financial Institutions,Financial Institutions +543965,Financial Institutions,Financial Institutions +129735,Government Procurement,Government Procurement +83494,Government Procurement,Government Procurement +142822,Government Procurement,Government Procurement +374127,Consumer Issues,Consumer Issues +374124,Consumer Issues,Consumer Issues +374156,Consumer Issues,Consumer Issues +374145,Consumer Issues,Consumer Issues +374136,Consumer Issues,Consumer Issues +539138,Employment and Training,Employment and Training +539135,Employment and Training,Employment and Training +451729,Energy,Energy +447117,Environment,Environment +447116,Environment,Environment +109057,Environment,Environment +230307,Environment,Environment +230306,Environment,Environment +230304,Environment,Environment +230302,Environment,Environment +230301,Environment,Environment +212673,Environment,Environment +200597,Environment,Environment +145768,Environment,Environment +330100,Environment,Environment +330098,Environment,Environment +318958,Environment,Environment +318950,Environment,Environment +309735,Environment,Environment +309734,Environment,Environment +309733,Environment,Environment +309732,Environment,Environment +303436,Environment,Environment +303349,Environment,Environment +298149,Environment,Environment +296812,Environment,Environment +282369,Environment,Environment +264349,Environment,Environment +246929,Environment,Environment +245392,Environment,Environment +230318,Environment,Environment +230315,Environment,Environment +230312,Environment,Environment +230308,Environment,Environment +443623,Environment,Environment +438394,Environment,Environment +438387,Environment,Environment +438381,Environment,Environment +438376,Environment,Environment +435725,Environment,Environment +430675,Environment,Environment +429054,Environment,Environment +429051,Environment,Environment +428772,Environment,Environment +425285,Environment,Environment +413300,Environment,Environment +408793,Environment,Environment +406363,Environment,Environment +405057,Environment,Environment +400055,Environment,Environment +390916,Environment,Environment +384495,Environment,Environment +383517,Environment,Environment +379174,Environment,Environment +366525,Environment,Environment +359677,Environment,Environment +335606,Environment,Environment +335604,Environment,Environment +542722,Environment,Environment +542721,Environment,Environment +539140,Environment,Environment +528880,Environment,Environment +528875,Environment,Environment +528866,Environment,Environment +528863,Environment,Environment +528853,Environment,Environment +525730,Environment,Environment +525670,Environment,Environment +514455,Environment,Environment +513114,Environment,Environment +510682,Environment,Environment +501531,Environment,Environment +499109,Environment,Environment +499069,Environment,Environment +494928,Environment,Environment +490991,Environment,Environment +490979,Environment,Environment +479231,Environment,Environment +477382,Environment,Environment +477374,Environment,Environment +477355,Environment,Environment +470631,Environment,Environment +466722,Environment,Environment +466721,Environment,Environment +466717,Environment,Environment +466707,Environment,Environment +463947,Environment,Environment +463946,Environment,Environment +463944,Environment,Environment +463943,Environment,Environment +463941,Environment,Environment +462238,Environment,Environment +461441,Environment,Environment +457040,Environment,Environment +457034,Environment,Environment +451740,Environment,Environment +519641,Industry,Industry +519640,Industry,Industry +83101,Industry,Industry +83099,Industry,Industry +83096,Industry,Industry +83092,Industry,Industry +80906,Industry,Industry +80903,Industry,Industry +80895,Industry,Industry +80496,Industry,Industry +79455,Industry,Industry +79454,Industry,Industry +76385,Industry,Industry +76383,Industry,Industry +76382,Industry,Industry +97388,Industry,Industry +97385,Industry,Industry +93560,Industry,Industry +93558,Industry,Industry +93555,Industry,Industry +93554,Industry,Industry +93546,Industry,Industry +93541,Industry,Industry +91514,Industry,Industry +90529,Industry,Industry +90526,Industry,Industry +90525,Industry,Industry +90524,Industry,Industry +90523,Industry,Industry +90522,Industry,Industry +90520,Industry,Industry +88129,Industry,Industry +88125,Industry,Industry +88121,Industry,Industry +88115,Industry,Industry +88114,Industry,Industry +88111,Industry,Industry +88109,Industry,Industry +88108,Industry,Industry +88104,Industry,Industry +88100,Industry,Industry +85535,Industry,Industry +83105,Industry,Industry +83104,Industry,Industry +109061,Industry,Industry +109059,Industry,Industry +109058,Industry,Industry +109056,Industry,Industry +109055,Industry,Industry +109054,Industry,Industry +109053,Industry,Industry +109052,Industry,Industry +109051,Industry,Industry +109050,Industry,Industry +109049,Industry,Industry +109048,Industry,Industry +109047,Industry,Industry +109046,Industry,Industry +109045,Industry,Industry +109044,Industry,Industry +109043,Industry,Industry +109042,Industry,Industry +109041,Industry,Industry +109040,Industry,Industry +109039,Industry,Industry +109038,Industry,Industry +109037,Industry,Industry +109036,Industry,Industry +109035,Industry,Industry +109034,Industry,Industry +109032,Industry,Industry +109030,Industry,Industry +109029,Industry,Industry +109026,Industry,Industry +105420,Industry,Industry +105416,Industry,Industry +105414,Industry,Industry +105394,Industry,Industry +105378,Industry,Industry +105375,Industry,Industry +105362,Industry,Industry +105360,Industry,Industry +105358,Industry,Industry +105356,Industry,Industry +105333,Industry,Industry +105330,Industry,Industry +105326,Industry,Industry +105324,Industry,Industry +105322,Industry,Industry +105320,Industry,Industry +105316,Industry,Industry +100465,Industry,Industry +100464,Industry,Industry +100463,Industry,Industry +100462,Industry,Industry +100461,Industry,Industry +100460,Industry,Industry +100459,Industry,Industry +100457,Industry,Industry +100456,Industry,Industry +100455,Industry,Industry +100454,Industry,Industry +97486,Industry,Industry +97418,Industry,Industry +97416,Industry,Industry +97413,Industry,Industry +97409,Industry,Industry +97404,Industry,Industry +97401,Industry,Industry +152207,Industry,Industry +152205,Industry,Industry +152203,Industry,Industry +152201,Industry,Industry +152200,Industry,Industry +152199,Industry,Industry +152198,Industry,Industry +152197,Industry,Industry +152195,Industry,Industry +152194,Industry,Industry +149844,Industry,Industry +149843,Industry,Industry +149841,Industry,Industry +149825,Industry,Industry +149824,Industry,Industry +149823,Industry,Industry +149822,Industry,Industry +149821,Industry,Industry +149820,Industry,Industry +149819,Industry,Industry +149818,Industry,Industry +149817,Industry,Industry +147750,Industry,Industry +147749,Industry,Industry +147748,Industry,Industry +147747,Industry,Industry +147746,Industry,Industry +147745,Industry,Industry +147744,Industry,Industry +147743,Industry,Industry +147742,Industry,Industry +147741,Industry,Industry +147740,Industry,Industry +147739,Industry,Industry +147738,Industry,Industry +147737,Industry,Industry +145779,Industry,Industry +145778,Industry,Industry +145777,Industry,Industry +145776,Industry,Industry +145774,Industry,Industry +145772,Industry,Industry +145771,Industry,Industry +145770,Industry,Industry +142838,Industry,Industry +142837,Industry,Industry +142836,Industry,Industry +137065,Industry,Industry +137064,Industry,Industry +137063,Industry,Industry +137062,Industry,Industry +137061,Industry,Industry +137060,Industry,Industry +137059,Industry,Industry +137058,Industry,Industry +137057,Industry,Industry +137056,Industry,Industry +137055,Industry,Industry +137054,Industry,Industry +135846,Industry,Industry +135845,Industry,Industry +135843,Industry,Industry +135842,Industry,Industry +132507,Industry,Industry +132506,Industry,Industry +132505,Industry,Industry +132504,Industry,Industry +132503,Industry,Industry +132502,Industry,Industry +132501,Industry,Industry +132500,Industry,Industry +132497,Industry,Industry +132496,Industry,Industry +128890,Industry,Industry +128181,Industry,Industry +128180,Industry,Industry +128179,Industry,Industry +128178,Industry,Industry +128175,Industry,Industry +128174,Industry,Industry +124560,Industry,Industry +124559,Industry,Industry +124558,Industry,Industry +124557,Industry,Industry +124556,Industry,Industry +124555,Industry,Industry +124535,Industry,Industry +124534,Industry,Industry +124516,Industry,Industry +124515,Industry,Industry +120282,Industry,Industry +120280,Industry,Industry +120279,Industry,Industry +120278,Industry,Industry +120277,Industry,Industry +120276,Industry,Industry +120275,Industry,Industry +120274,Industry,Industry +117085,Industry,Industry +117082,Industry,Industry +117081,Industry,Industry +117080,Industry,Industry +117079,Industry,Industry +117078,Industry,Industry +117076,Industry,Industry +113439,Industry,Industry +113437,Industry,Industry +113436,Industry,Industry +113421,Industry,Industry +113419,Industry,Industry +113418,Industry,Industry +113417,Industry,Industry +113415,Industry,Industry +111976,Industry,Industry +111975,Industry,Industry +111974,Industry,Industry +109078,Industry,Industry +109076,Industry,Industry +109075,Industry,Industry +109073,Industry,Industry +109071,Industry,Industry +109070,Industry,Industry +109069,Industry,Industry +109068,Industry,Industry +109067,Industry,Industry +109065,Industry,Industry +109064,Industry,Industry +109063,Industry,Industry +109062,Industry,Industry +282333,Industry,Industry +282331,Industry,Industry +277329,Industry,Industry +277322,Industry,Industry +277295,Industry,Industry +277289,Industry,Industry +273565,Industry,Industry +269353,Industry,Industry +269334,Industry,Industry +269210,Industry,Industry +269157,Industry,Industry +269151,Industry,Industry +269130,Industry,Industry +269122,Industry,Industry +264471,Industry,Industry +264454,Industry,Industry +264451,Industry,Industry +264412,Industry,Industry +264313,Industry,Industry +264254,Industry,Industry +260530,Industry,Industry +259473,Industry,Industry +259373,Industry,Industry +259371,Industry,Industry +259370,Industry,Industry +259364,Industry,Industry +259309,Industry,Industry +254430,Industry,Industry +254213,Industry,Industry +254208,Industry,Industry +254205,Industry,Industry +254202,Industry,Industry +254197,Industry,Industry +254194,Industry,Industry +254192,Industry,Industry +254190,Industry,Industry +254187,Industry,Industry +254185,Industry,Industry +254182,Industry,Industry +250326,Industry,Industry +250288,Industry,Industry +250272,Industry,Industry +250264,Industry,Industry +250249,Industry,Industry +250233,Industry,Industry +250209,Industry,Industry +245401,Industry,Industry +241003,Industry,Industry +241002,Industry,Industry +240984,Industry,Industry +240979,Industry,Industry +240978,Industry,Industry +240975,Industry,Industry +240971,Industry,Industry +236850,Industry,Industry +236832,Industry,Industry +236829,Industry,Industry +233703,Industry,Industry +233699,Industry,Industry +231152,Industry,Industry +231151,Industry,Industry +231150,Industry,Industry +230352,Industry,Industry +228167,Industry,Industry +228166,Industry,Industry +228163,Industry,Industry +228162,Industry,Industry +223469,Industry,Industry +223467,Industry,Industry +223464,Industry,Industry +223461,Industry,Industry +223453,Industry,Industry +223448,Industry,Industry +223444,Industry,Industry +218769,Industry,Industry +217591,Industry,Industry +217587,Industry,Industry +217573,Industry,Industry +217571,Industry,Industry +217568,Industry,Industry +217550,Industry,Industry +217547,Industry,Industry +217514,Industry,Industry +217511,Industry,Industry +212259,Industry,Industry +212256,Industry,Industry +212250,Industry,Industry +212233,Industry,Industry +207547,Industry,Industry +207544,Industry,Industry +207538,Industry,Industry +202602,Industry,Industry +202600,Industry,Industry +202598,Industry,Industry +202595,Industry,Industry +202594,Industry,Industry +202590,Industry,Industry +202577,Industry,Industry +200606,Industry,Industry +200604,Industry,Industry +200593,Industry,Industry +200592,Industry,Industry +191371,Industry,Industry +191370,Industry,Industry +191369,Industry,Industry +187688,Industry,Industry +187687,Industry,Industry +187686,Industry,Industry +187685,Industry,Industry +183174,Industry,Industry +183173,Industry,Industry +183172,Industry,Industry +183171,Industry,Industry +183170,Industry,Industry +183169,Industry,Industry +182664,Industry,Industry +182644,Industry,Industry +182624,Industry,Industry +177145,Industry,Industry +174713,Industry,Industry +174670,Industry,Industry +174669,Industry,Industry +174667,Industry,Industry +174666,Industry,Industry +173864,Industry,Industry +172726,Industry,Industry +172725,Industry,Industry +170508,Industry,Industry +170506,Industry,Industry +170505,Industry,Industry +167348,Industry,Industry +167347,Industry,Industry +167346,Industry,Industry +167345,Industry,Industry +167344,Industry,Industry +167339,Industry,Industry +167338,Industry,Industry +167337,Industry,Industry +167336,Industry,Industry +167335,Industry,Industry +167334,Industry,Industry +167085,Industry,Industry +167084,Industry,Industry +167083,Industry,Industry +167081,Industry,Industry +165262,Industry,Industry +165259,Industry,Industry +165257,Industry,Industry +165255,Industry,Industry +165254,Industry,Industry +165253,Industry,Industry +165251,Industry,Industry +165249,Industry,Industry +165248,Industry,Industry +165247,Industry,Industry +163277,Industry,Industry +163276,Industry,Industry +163275,Industry,Industry +163274,Industry,Industry +163273,Industry,Industry +163272,Industry,Industry +161381,Industry,Industry +161380,Industry,Industry +161379,Industry,Industry +161378,Industry,Industry +159590,Industry,Industry +159079,Industry,Industry +159077,Industry,Industry +159076,Industry,Industry +159075,Industry,Industry +159074,Industry,Industry +159073,Industry,Industry +159072,Industry,Industry +159071,Industry,Industry +159070,Industry,Industry +159069,Industry,Industry +159068,Industry,Industry +159067,Industry,Industry +159066,Industry,Industry +159065,Industry,Industry +159063,Industry,Industry +159062,Industry,Industry +159060,Industry,Industry +159058,Industry,Industry +159056,Industry,Industry +159054,Industry,Industry +156979,Industry,Industry +156974,Industry,Industry +156972,Industry,Industry +154953,Industry,Industry +154952,Industry,Industry +154951,Industry,Industry +154950,Industry,Industry +154949,Industry,Industry +154948,Industry,Industry +154947,Industry,Industry +154946,Industry,Industry +154828,Industry,Industry +517502,Industry,Industry +517501,Industry,Industry +517498,Industry,Industry +517494,Industry,Industry +515362,Industry,Industry +515361,Industry,Industry +515360,Industry,Industry +515359,Industry,Industry +514457,Industry,Industry +514455,Industry,Industry +513885,Industry,Industry +513884,Industry,Industry +513883,Industry,Industry +513124,Industry,Industry +513122,Industry,Industry +513117,Industry,Industry +510696,Industry,Industry +510693,Industry,Industry +510689,Industry,Industry +510686,Industry,Industry +510684,Industry,Industry +510682,Industry,Industry +507947,Industry,Industry +507917,Industry,Industry +507905,Industry,Industry +507902,Industry,Industry +507899,Industry,Industry +507893,Industry,Industry +507888,Industry,Industry +504635,Industry,Industry +504632,Industry,Industry +504628,Industry,Industry +504622,Industry,Industry +504344,Industry,Industry +504341,Industry,Industry +504340,Industry,Industry +504335,Industry,Industry +504331,Industry,Industry +504330,Industry,Industry +504329,Industry,Industry +504327,Industry,Industry +504322,Industry,Industry +501651,Industry,Industry +501540,Industry,Industry +501523,Industry,Industry +501514,Industry,Industry +499183,Industry,Industry +499175,Industry,Industry +499154,Industry,Industry +499123,Industry,Industry +494951,Industry,Industry +494949,Industry,Industry +494946,Industry,Industry +494945,Industry,Industry +494943,Industry,Industry +494940,Industry,Industry +494938,Industry,Industry +494937,Industry,Industry +494935,Industry,Industry +494932,Industry,Industry +494930,Industry,Industry +493031,Industry,Industry +490991,Industry,Industry +490979,Industry,Industry +490976,Industry,Industry +490974,Industry,Industry +490972,Industry,Industry +490968,Industry,Industry +487329,Industry,Industry +487322,Industry,Industry +483391,Industry,Industry +483390,Industry,Industry +481736,Industry,Industry +481734,Industry,Industry +479230,Industry,Industry +474972,Industry,Industry +472708,Industry,Industry +472704,Industry,Industry +469708,Industry,Industry +469705,Industry,Industry +466722,Industry,Industry +459526,Industry,Industry +459525,Industry,Industry +457040,Industry,Industry +457034,Industry,Industry +451738,Industry,Industry +450526,Industry,Industry +447120,Industry,Industry +445622,Industry,Industry +445612,Industry,Industry +442244,Industry,Industry +442241,Industry,Industry +442236,Industry,Industry +442231,Industry,Industry +442226,Industry,Industry +442223,Industry,Industry +442181,Industry,Industry +442175,Industry,Industry +438387,Industry,Industry +438376,Industry,Industry +435718,Industry,Industry +435706,Industry,Industry +433678,Industry,Industry +433676,Industry,Industry +431843,Industry,Industry +428769,Industry,Industry +428767,Industry,Industry +425298,Industry,Industry +425291,Industry,Industry +425290,Industry,Industry +425286,Industry,Industry +423844,Industry,Industry +420062,Industry,Industry +420060,Industry,Industry +420058,Industry,Industry +420056,Industry,Industry +417851,Industry,Industry +415643,Industry,Industry +415636,Industry,Industry +410420,Industry,Industry +408797,Industry,Industry +408794,Industry,Industry +408791,Industry,Industry +406366,Industry,Industry +406361,Industry,Industry +406355,Industry,Industry +405061,Industry,Industry +405060,Industry,Industry +405059,Industry,Industry +405058,Industry,Industry +403722,Industry,Industry +400055,Industry,Industry +400053,Industry,Industry +400049,Industry,Industry +400048,Industry,Industry +400047,Industry,Industry +400045,Industry,Industry +400030,Industry,Industry +398922,Industry,Industry +393962,Industry,Industry +393957,Industry,Industry +393955,Industry,Industry +393951,Industry,Industry +393945,Industry,Industry +393942,Industry,Industry +393866,Industry,Industry +393865,Industry,Industry +392410,Industry,Industry +390949,Industry,Industry +390947,Industry,Industry +390941,Industry,Industry +390897,Industry,Industry +390892,Industry,Industry +390888,Industry,Industry +390885,Industry,Industry +390872,Industry,Industry +388085,Industry,Industry +388082,Industry,Industry +388080,Industry,Industry +388072,Industry,Industry +388066,Industry,Industry +387309,Industry,Industry +387306,Industry,Industry +387247,Industry,Industry +384534,Industry,Industry +384533,Industry,Industry +384531,Industry,Industry +384530,Industry,Industry +384529,Industry,Industry +384493,Industry,Industry +384492,Industry,Industry +383505,Industry,Industry +383490,Industry,Industry +383488,Industry,Industry +383484,Industry,Industry +383483,Industry,Industry +382306,Industry,Industry +381275,Industry,Industry +381185,Industry,Industry +380745,Industry,Industry +380744,Industry,Industry +380742,Industry,Industry +380741,Industry,Industry +380740,Industry,Industry +380733,Industry,Industry +380731,Industry,Industry +379195,Industry,Industry +379164,Industry,Industry +379160,Industry,Industry +376018,Industry,Industry +376016,Industry,Industry +374122,Industry,Industry +374117,Industry,Industry +374116,Industry,Industry +374115,Industry,Industry +374114,Industry,Industry +374112,Industry,Industry +374109,Industry,Industry +374107,Industry,Industry +371837,Industry,Industry +371835,Industry,Industry +371833,Industry,Industry +371832,Industry,Industry +371829,Industry,Industry +371828,Industry,Industry +371826,Industry,Industry +371825,Industry,Industry +371821,Industry,Industry +371818,Industry,Industry +371815,Industry,Industry +371813,Industry,Industry +371801,Industry,Industry +371784,Industry,Industry +371773,Industry,Industry +371771,Industry,Industry +371770,Industry,Industry +371769,Industry,Industry +368800,Industry,Industry +368798,Industry,Industry +366523,Industry,Industry +365196,Industry,Industry +365194,Industry,Industry +361926,Industry,Industry +361924,Industry,Industry +360970,Industry,Industry +357461,Industry,Industry +357456,Industry,Industry +357449,Industry,Industry +356337,Industry,Industry +356334,Industry,Industry +356332,Industry,Industry +353402,Industry,Industry +353400,Industry,Industry +353398,Industry,Industry +353397,Industry,Industry +353396,Industry,Industry +353385,Industry,Industry +353384,Industry,Industry +353382,Industry,Industry +350804,Industry,Industry +350720,Industry,Industry +350719,Industry,Industry +350718,Industry,Industry +350717,Industry,Industry +350716,Industry,Industry +350715,Industry,Industry +350711,Industry,Industry +349617,Industry,Industry +348767,Industry,Industry +348764,Industry,Industry +348762,Industry,Industry +348761,Industry,Industry +348760,Industry,Industry +348759,Industry,Industry +348433,Industry,Industry +348432,Industry,Industry +348431,Industry,Industry +348430,Industry,Industry +348429,Industry,Industry +348428,Industry,Industry +348427,Industry,Industry +348426,Industry,Industry +347203,Industry,Industry +347171,Industry,Industry +347170,Industry,Industry +347169,Industry,Industry +347168,Industry,Industry +347167,Industry,Industry +347166,Industry,Industry +347165,Industry,Industry +347164,Industry,Industry +347162,Industry,Industry +347160,Industry,Industry +343939,Industry,Industry +343937,Industry,Industry +343936,Industry,Industry +343934,Industry,Industry +343932,Industry,Industry +343930,Industry,Industry +343927,Industry,Industry +343923,Industry,Industry +341636,Industry,Industry +339352,Industry,Industry +338319,Industry,Industry +338316,Industry,Industry +338315,Industry,Industry +338309,Industry,Industry +338272,Industry,Industry +338269,Industry,Industry +335598,Industry,Industry +335596,Industry,Industry +335595,Industry,Industry +335594,Industry,Industry +335593,Industry,Industry +330101,Industry,Industry +330099,Industry,Industry +330096,Industry,Industry +330095,Industry,Industry +330092,Industry,Industry +322212,Industry,Industry +319078,Industry,Industry +319076,Industry,Industry +318959,Industry,Industry +318938,Industry,Industry +318933,Industry,Industry +318928,Industry,Industry +318890,Industry,Industry +318889,Industry,Industry +315833,Industry,Industry +315832,Industry,Industry +315830,Industry,Industry +313044,Industry,Industry +313043,Industry,Industry +313040,Industry,Industry +313039,Industry,Industry +313037,Industry,Industry +313036,Industry,Industry +313035,Industry,Industry +313033,Industry,Industry +309954,Industry,Industry +309943,Industry,Industry +309941,Industry,Industry +309940,Industry,Industry +309938,Industry,Industry +309936,Industry,Industry +309933,Industry,Industry +309740,Industry,Industry +309737,Industry,Industry +309730,Industry,Industry +309727,Industry,Industry +309725,Industry,Industry +309724,Industry,Industry +309723,Industry,Industry +309722,Industry,Industry +309721,Industry,Industry +309720,Industry,Industry +309716,Industry,Industry +309706,Industry,Industry +309705,Industry,Industry +309704,Industry,Industry +309697,Industry,Industry +309696,Industry,Industry +309694,Industry,Industry +309691,Industry,Industry +305989,Industry,Industry +304090,Industry,Industry +303437,Industry,Industry +303435,Industry,Industry +303434,Industry,Industry +303433,Industry,Industry +303429,Industry,Industry +303420,Industry,Industry +303415,Industry,Industry +303354,Industry,Industry +303353,Industry,Industry +303349,Industry,Industry +297430,Industry,Industry +296812,Industry,Industry +296797,Industry,Industry +296796,Industry,Industry +296795,Industry,Industry +290794,Industry,Industry +290790,Industry,Industry +290789,Industry,Industry +282354,Industry,Industry +282352,Industry,Industry +282350,Industry,Industry +282335,Industry,Industry +542722,Industry,Industry +542721,Industry,Industry +542720,Industry,Industry +542719,Industry,Industry +542718,Industry,Industry +542717,Industry,Industry +542716,Industry,Industry +542715,Industry,Industry +542714,Industry,Industry +542713,Industry,Industry +542712,Industry,Industry +542711,Industry,Industry +541095,Industry,Industry +541093,Industry,Industry +541092,Industry,Industry +541091,Industry,Industry +541090,Industry,Industry +541087,Industry,Industry +539141,Industry,Industry +539140,Industry,Industry +539139,Industry,Industry +539138,Industry,Industry +539135,Industry,Industry +537734,Industry,Industry +537730,Industry,Industry +537729,Industry,Industry +537727,Industry,Industry +537724,Industry,Industry +537719,Industry,Industry +537682,Industry,Industry +537679,Industry,Industry +537678,Industry,Industry +534773,Industry,Industry +534730,Industry,Industry +534727,Industry,Industry +534722,Industry,Industry +531268,Industry,Industry +531260,Industry,Industry +531259,Industry,Industry +531257,Industry,Industry +528880,Industry,Industry +528875,Industry,Industry +528869,Industry,Industry +528866,Industry,Industry +528863,Industry,Industry +528857,Industry,Industry +528853,Industry,Industry +525741,Industry,Industry +525736,Industry,Industry +525732,Industry,Industry +525730,Industry,Industry +525726,Industry,Industry +525707,Industry,Industry +525693,Industry,Industry +525679,Industry,Industry +522856,Industry,Industry +522855,Industry,Industry +522853,Industry,Industry +522851,Industry,Industry +522849,Industry,Industry +522847,Industry,Industry +522843,Industry,Industry +519649,Industry,Industry +519644,Industry,Industry +422301,International Relations,International Relations +525666,International Trade,International Trade +499082,International Trade,International Trade +124554,International Trade,International Trade +85534,International Trade,International Trade +200605,International Trade,International Trade +303411,International Trade,International Trade +303356,International Trade,International Trade +296812,International Trade,International Trade +296810,International Trade,International Trade +296801,International Trade,International Trade +296800,International Trade,International Trade +296791,International Trade,International Trade +290796,International Trade,International Trade +282389,International Trade,International Trade +282329,International Trade,International Trade +264442,International Trade,International Trade +264429,International Trade,International Trade +264372,International Trade,International Trade +259490,International Trade,International Trade +254196,International Trade,International Trade +250291,International Trade,International Trade +245391,International Trade,International Trade +245369,International Trade,International Trade +245364,International Trade,International Trade +245359,International Trade,International Trade +245357,International Trade,International Trade +240977,International Trade,International Trade +240975,International Trade,International Trade +240974,International Trade,International Trade +240971,International Trade,International Trade +236839,International Trade,International Trade +233828,International Trade,International Trade +230356,International Trade,International Trade +228165,International Trade,International Trade +228161,International Trade,International Trade +228160,International Trade,International Trade +228159,International Trade,International Trade +228156,International Trade,International Trade +228153,International Trade,International Trade +228151,International Trade,International Trade +223543,International Trade,International Trade +223456,International Trade,International Trade +406366,International Trade,International Trade +406362,International Trade,International Trade +405481,International Trade,International Trade +405072,International Trade,International Trade +405061,International Trade,International Trade +405060,International Trade,International Trade +405059,International Trade,International Trade +405058,International Trade,International Trade +403737,International Trade,International Trade +400049,International Trade,International Trade +400048,International Trade,International Trade +400047,International Trade,International Trade +400045,International Trade,International Trade +400025,International Trade,International Trade +393962,International Trade,International Trade +393951,International Trade,International Trade +368808,International Trade,International Trade +366524,International Trade,International Trade +363422,International Trade,International Trade +361925,International Trade,International Trade +348758,International Trade,International Trade +347163,International Trade,International Trade +338319,International Trade,International Trade +330465,International Trade,International Trade +318963,International Trade,International Trade +318962,International Trade,International Trade +318961,International Trade,International Trade +318960,International Trade,International Trade +318947,International Trade,International Trade +318938,International Trade,International Trade +318933,International Trade,International Trade +318931,International Trade,International Trade +318890,International Trade,International Trade +318889,International Trade,International Trade +315832,International Trade,International Trade +315830,International Trade,International Trade +313044,International Trade,International Trade +313043,International Trade,International Trade +313040,International Trade,International Trade +313037,International Trade,International Trade +313036,International Trade,International Trade +313035,International Trade,International Trade +309953,International Trade,International Trade +309951,International Trade,International Trade +309950,International Trade,International Trade +309948,International Trade,International Trade +309946,International Trade,International Trade +303421,International Trade,International Trade +303420,International Trade,International Trade +303415,International Trade,International Trade +483391,International Trade,International Trade +483390,International Trade,International Trade +481736,International Trade,International Trade +481732,International Trade,International Trade +481728,International Trade,International Trade +481726,International Trade,International Trade +481725,International Trade,International Trade +481718,International Trade,International Trade +477694,International Trade,International Trade +472715,International Trade,International Trade +472712,International Trade,International Trade +469710,International Trade,International Trade +469709,International Trade,International Trade +466719,International Trade,International Trade +443614,International Trade,International Trade +442175,International Trade,International Trade +439373,International Trade,International Trade +439369,International Trade,International Trade +438398,International Trade,International Trade +435746,International Trade,International Trade +435718,International Trade,International Trade +435706,International Trade,International Trade +433681,International Trade,International Trade +433679,International Trade,International Trade +433678,International Trade,International Trade +433676,International Trade,International Trade +431844,International Trade,International Trade +431843,International Trade,International Trade +430683,International Trade,International Trade +430672,International Trade,International Trade +430669,International Trade,International Trade +430667,International Trade,International Trade +430666,International Trade,International Trade +430665,International Trade,International Trade +430664,International Trade,International Trade +430663,International Trade,International Trade +430661,International Trade,International Trade +429054,International Trade,International Trade +429051,International Trade,International Trade +428839,International Trade,International Trade +428774,International Trade,International Trade +428762,International Trade,International Trade +428760,International Trade,International Trade +428758,International Trade,International Trade +428754,International Trade,International Trade +425296,International Trade,International Trade +425294,International Trade,International Trade +425292,International Trade,International Trade +423913,International Trade,International Trade +423866,International Trade,International Trade +423860,International Trade,International Trade +423856,International Trade,International Trade +423853,International Trade,International Trade +423848,International Trade,International Trade +423844,International Trade,International Trade +423842,International Trade,International Trade +423840,International Trade,International Trade +423837,International Trade,International Trade +423834,International Trade,International Trade +422293,International Trade,International Trade +422288,International Trade,International Trade +422280,International Trade,International Trade +422272,International Trade,International Trade +415641,International Trade,International Trade +415640,International Trade,International Trade +415637,International Trade,International Trade +413294,International Trade,International Trade +408798,International Trade,International Trade +408797,International Trade,International Trade +408796,International Trade,International Trade +408794,International Trade,International Trade +408789,International Trade,International Trade +408784,International Trade,International Trade +408781,International Trade,International Trade +407854,International Trade,International Trade +407845,International Trade,International Trade +407844,International Trade,International Trade +407842,International Trade,International Trade +490968,Labour,Labour +481734,Labour,Labour +76385,Labour,Labour +228164,Labour,Labour +228150,Labour,Labour +407844,Labour,Labour +469708,Taxation and Finance,Taxation and Finance +469705,Taxation and Finance,Taxation and Finance +230343,Taxation and Finance,Taxation and Finance +371780,Taxation and Finance,Taxation and Finance +350721,Taxation and Finance,Taxation and Finance +348763,Taxation and Finance,Taxation and Finance +338314,Taxation and Finance,Taxation and Finance +318933,Taxation and Finance,Taxation and Finance +318890,Taxation and Finance,Taxation and Finance +315835,Taxation and Finance,Taxation and Finance +315834,Taxation and Finance,Taxation and Finance +250280,Taxation and Finance,Taxation and Finance +233769,Taxation and Finance,Taxation and Finance +388085,Taxation and Finance,Taxation and Finance +490991,Taxation and Finance,Taxation and Finance +408791,Transportation,Transportation +408788,Transportation,Transportation +93550,Transportation,Transportation +83106,Transportation,Transportation +83103,Transportation,Transportation +80899,Transportation,Transportation +80874,Transportation,Transportation +76380,Transportation,Transportation +74815,Transportation,Transportation +120281,Transportation,Transportation +113416,Transportation,Transportation +109060,Transportation,Transportation +97403,Transportation,Transportation +97397,Transportation,Transportation +97395,Transportation,Transportation +97392,Transportation,Transportation +277322,Transportation,Transportation +277295,Transportation,Transportation +217595,Transportation,Transportation +212265,Transportation,Transportation +202583,Transportation,Transportation +200603,Transportation,Transportation +200602,Transportation,Transportation +200601,Transportation,Transportation +200599,Transportation,Transportation +200598,Transportation,Transportation +400048,Transportation,Transportation +400047,Transportation,Transportation +400045,Transportation,Transportation +400034,Transportation,Transportation +392409,Transportation,Transportation +390900,Transportation,Transportation +387247,Transportation,Transportation +380743,Transportation,Transportation +379167,Transportation,Transportation +374156,Transportation,Transportation +374145,Transportation,Transportation +374136,Transportation,Transportation +374133,Transportation,Transportation +374127,Transportation,Transportation +374124,Transportation,Transportation +371846,Transportation,Transportation +371839,Transportation,Transportation +371805,Transportation,Transportation +366527,Transportation,Transportation +363423,Transportation,Transportation +361923,Transportation,Transportation +359676,Transportation,Transportation +357458,Transportation,Transportation +350804,Transportation,Transportation +348765,Transportation,Transportation +343922,Transportation,Transportation +343920,Transportation,Transportation +343916,Transportation,Transportation +330464,Transportation,Transportation +309737,Transportation,Transportation +304094,Transportation,Transportation +290794,Transportation,Transportation +531260,Transportation,Transportation +528857,Transportation,Transportation +525670,Transportation,Transportation +510684,Transportation,Transportation +507882,Transportation,Transportation +501551,Transportation,Transportation +499118,Transportation,Transportation +477390,Transportation,Transportation +462237,Transportation,Transportation +462236,Transportation,Transportation +462235,Transportation,Transportation +451725,Transportation,Transportation +451720,Transportation,Transportation +442179,Transportation,Transportation +438386,Transportation,Transportation +435733,Transportation,Transportation +435713,Transportation,Transportation +430679,Transportation,Transportation +428769,Transportation,Transportation +428767,Transportation,Transportation +422301,Transportation,Transportation +422300,Transportation,Transportation +415639,Transportation,Transportation +413297,Transportation,Transportation +160737,Consumer Issues,Consumer Issues +160736,Consumer Issues,Consumer Issues +160741,Consumer Issues,Consumer Issues +160740,Consumer Issues,Consumer Issues +160739,Consumer Issues,Consumer Issues +160737,Industry,Industry +160736,Industry,Industry +160741,Industry,Industry +160740,Industry,Industry +160739,Industry,Industry +160737,Justice and Law Enforcement,Justice and Law Enforcement +160736,Justice and Law Enforcement,Justice and Law Enforcement +160741,Justice and Law Enforcement,Justice and Law Enforcement +160740,Justice and Law Enforcement,Justice and Law Enforcement +160739,Justice and Law Enforcement,Justice and Law Enforcement +160740,Other,PRIVACY +160739,Other,PRIVACY +160738,Other,PRIVACY +160737,Other,PRIVACY +160736,Other,PRIVACY +138471,Education,Education +138470,Education,Education +138471,Industry,Industry +138470,Industry,Industry +80762,Agriculture,Agriculture +114316,Government Procurement,Government Procurement +417177,Consumer Issues,Consumer Issues +417175,Consumer Issues,Consumer Issues +422500,Consumer Issues,Consumer Issues +418318,Consumer Issues,Consumer Issues +417185,Consumer Issues,Consumer Issues +417182,Consumer Issues,Consumer Issues +417181,Consumer Issues,Consumer Issues +424329,Employment and Training,Employment and Training +422500,Employment and Training,Employment and Training +417177,Industry,Industry +417175,Industry,Industry +227512,Industry,Industry +227510,Industry,Industry +422500,Industry,Industry +418319,Industry,Industry +418318,Industry,Industry +424330,Intellectual Property,Intellectual Property +424329,Intellectual Property,Intellectual Property +227512,Intellectual Property,Intellectual Property +227511,Intellectual Property,Intellectual Property +417181,Sports,Sports +417180,Sports,Sports +227512,Sports,Sports +227511,Sports,Sports +227510,Sports,Sports +418319,Sports,Sports +418318,Sports,Sports +417185,Sports,Sports +227511,Tourism,Tourism +227510,Tourism,Tourism +414750,Consumer Issues,Consumer Issues +414747,Consumer Issues,Consumer Issues +460625,Consumer Issues,Consumer Issues +434728,Consumer Issues,Consumer Issues +434727,Consumer Issues,Consumer Issues +434726,Consumer Issues,Consumer Issues +434723,Consumer Issues,Consumer Issues +434721,Consumer Issues,Consumer Issues +433076,Consumer Issues,Consumer Issues +433056,Consumer Issues,Consumer Issues +433055,Consumer Issues,Consumer Issues +432764,Consumer Issues,Consumer Issues +432762,Consumer Issues,Consumer Issues +432761,Consumer Issues,Consumer Issues +432760,Consumer Issues,Consumer Issues +432759,Consumer Issues,Consumer Issues +432758,Consumer Issues,Consumer Issues +431018,Consumer Issues,Consumer Issues +424525,Consumer Issues,Consumer Issues +424524,Consumer Issues,Consumer Issues +424523,Consumer Issues,Consumer Issues +421688,Consumer Issues,Consumer Issues +421686,Consumer Issues,Consumer Issues +421682,Consumer Issues,Consumer Issues +421681,Consumer Issues,Consumer Issues +421679,Consumer Issues,Consumer Issues +419877,Consumer Issues,Consumer Issues +419875,Consumer Issues,Consumer Issues +415782,Consumer Issues,Consumer Issues +415778,Consumer Issues,Consumer Issues +415777,Consumer Issues,Consumer Issues +415775,Consumer Issues,Consumer Issues +471747,Health,Health +471746,Health,Health +102337,Health,Health +460624,Health,Health +460623,Health,Health +460622,Health,Health +452904,Health,Health +452901,Health,Health +452892,Health,Health +434728,Health,Health +434727,Health,Health +434726,Health,Health +434723,Health,Health +434721,Health,Health +433076,Health,Health +433056,Health,Health +433055,Health,Health +432764,Health,Health +432762,Health,Health +432761,Health,Health +432760,Health,Health +432759,Health,Health +432758,Health,Health +431018,Health,Health +424525,Health,Health +424524,Health,Health +424523,Health,Health +421688,Health,Health +421686,Health,Health +421682,Health,Health +421681,Health,Health +421679,Health,Health +419877,Health,Health +419875,Health,Health +415782,Health,Health +415778,Health,Health +415777,Health,Health +415775,Health,Health +414751,Health,Health +414750,Health,Health +414747,Health,Health +506615,Health,Health +414750,Industry,Industry +414747,Industry,Industry +460625,Industry,Industry +460624,Industry,Industry +434728,Industry,Industry +434727,Industry,Industry +434726,Industry,Industry +434723,Industry,Industry +434721,Industry,Industry +433076,Industry,Industry +433056,Industry,Industry +433055,Industry,Industry +432764,Industry,Industry +432762,Industry,Industry +432761,Industry,Industry +432760,Industry,Industry +432759,Industry,Industry +432758,Industry,Industry +431018,Industry,Industry +424525,Industry,Industry +424524,Industry,Industry +424523,Industry,Industry +421688,Industry,Industry +421686,Industry,Industry +421682,Industry,Industry +421681,Industry,Industry +421679,Industry,Industry +419877,Industry,Industry +419875,Industry,Industry +415782,Industry,Industry +415778,Industry,Industry +415777,Industry,Industry +415775,Industry,Industry +106600,Infrastructure,Infrastructure +146734,Infrastructure,Infrastructure +107514,Infrastructure,Infrastructure +329921,Financial Institutions,Financial Institutions +313142,Financial Institutions,Financial Institutions +88195,Financial Institutions,Financial Institutions +172066,Financial Institutions,Financial Institutions +152498,Financial Institutions,Financial Institutions +93388,Financial Institutions,Financial Institutions +259550,Financial Institutions,Financial Institutions +227253,Financial Institutions,Financial Institutions +223530,Financial Institutions,Financial Institutions +223524,Financial Institutions,Financial Institutions +223521,Financial Institutions,Financial Institutions +219472,Financial Institutions,Financial Institutions +194955,Financial Institutions,Financial Institutions +354029,Financial Institutions,Financial Institutions +269532,International Relations,International Relations +250786,International Relations,International Relations +227253,International Relations,International Relations +212444,International Relations,International Relations +200828,International Relations,International Relations +194955,International Relations,International Relations +189567,International Relations,International Relations +174873,International Relations,International Relations +174871,International Relations,International Relations +173497,International Relations,International Relations +173493,International Relations,International Relations +172066,International Relations,International Relations +164224,International Relations,International Relations +319231,International Relations,International Relations +319226,International Relations,International Relations +88195,Other,microfinance +427592,Defence,Defence +411926,Defence,Defence +77223,Defence,Defence +290831,Defence,Defence +286251,Defence,Defence +280874,Defence,Defence +280872,Defence,Defence +279669,Defence,Defence +273675,Defence,Defence +273674,Defence,Defence +273666,Defence,Defence +273648,Defence,Defence +267569,Defence,Defence +251541,Defence,Defence +245216,Defence,Defence +245214,Defence,Defence +245211,Defence,Defence +245206,Defence,Defence +245205,Defence,Defence +245203,Defence,Defence +245199,Defence,Defence +245197,Defence,Defence +245194,Defence,Defence +228329,Defence,Defence +223447,Defence,Defence +211027,Defence,Defence +194815,Defence,Defence +194810,Defence,Defence +194802,Defence,Defence +194787,Defence,Defence +194785,Defence,Defence +194774,Defence,Defence +175620,Defence,Defence +170412,Defence,Defence +168125,Defence,Defence +165576,Defence,Defence +165575,Defence,Defence +165574,Defence,Defence +159608,Defence,Defence +159606,Defence,Defence +159605,Defence,Defence +389664,Defence,Defence +358134,Defence,Defence +354119,Defence,Defence +354118,Defence,Defence +439286,Agriculture,Agriculture +75984,International Relations,International Relations +75984,International Trade,International Trade +382310,Consumer Issues,Consumer Issues +348928,Industry,Industry +151286,Intellectual Property,Intellectual Property +360012,Internal Trade,Internal Trade +301812,Consumer Issues,Consumer Issues +428852,Education,Education +372666,Employment and Training,Employment and Training +459697,Government Procurement,Government Procurement +143874,Health,Health +372631,Immigration,Immigration +460173,Industry,Industry +369776,Infrastructure,Infrastructure +349151,Intellectual Property,Intellectual Property +372666,Internal Trade,Internal Trade +428852,Labour,Labour +374346,Regional Development,Regional Development +372624,Small Business,Small Business +372631,Taxation and Finance,Taxation and Finance +542819,Education,Education +542819,Employment and Training,Employment and Training +542804,Energy,Energy +380045,Environment,Environment +534791,Health,Health +542820,Immigration,Immigration +521235,Industry,Industry +513673,Infrastructure,Infrastructure +480331,International Relations,International Relations +139178,International Trade,International Trade +207490,Taxation and Finance,Taxation and Finance +97917,Other,Research +129675,Other,Innovation +129676,Other,Commercialization +454950,Financial Institutions,Financial Institutions +454950,International Trade,International Trade +454950,Taxation and Finance,Taxation and Finance +267531,Defence,Defence +267532,Government Procurement,Government Procurement +315850,Industry,Industry +315850,International Trade,International Trade +315850,Regional Development,Regional Development +315850,Small Business,Small Business +315850,Taxation and Finance,Taxation and Finance +315850,Transportation,Transportation +199709,Defence,Defence +192208,Employment and Training,Employment and Training +192206,Energy,Energy +192206,Environment,Environment +125206,Infrastructure,Infrastructure +199709,Regional Development,Regional Development +192205,Taxation and Finance,Taxation and Finance +192206,Tourism,Tourism +192205,Transportation,Transportation +101277,Health,Health +158884,Infrastructure,Infrastructure +411564,Regional Development,Regional Development +398523,Taxation and Finance,Taxation and Finance +132976,International Relations,International Relations +456370,Defence,Defence +456370,Government Procurement,Government Procurement +368295,Industry,Industry +134334,Health,Health +269169,Justice and Law Enforcement,Justice and Law Enforcement +97541,Justice and Law Enforcement,Justice and Law Enforcement +87796,Sports,Sports +377088,Consumer Issues,Consumer Issues +295979,Industry,Industry +175005,Labour,Labour +100901,Other,Postal Issues +124275,Other,Electronic Commerce +109104,Environment,Environment +109104,Financial Institutions,Financial Institutions +479047,Environment,Environment +235530,Fisheries,Fisheries +545234,Forestry,Forestry +154188,Industry,Industry +440476,International Trade,International Trade +368945,Taxation and Finance,Taxation and Finance +510028,Health,Health +414864,Industry,Industry +371438,Intellectual Property,Intellectual Property +152959,International Trade,International Trade +111876,Taxation and Finance,Taxation and Finance +80818,Government Procurement,Government Procurement +88107,Infrastructure,Infrastructure +324775,Infrastructure,Infrastructure +90362,Consumer Issues,Consumer Issues +77233,Government Procurement,Government Procurement +430550,Health,Health +460908,Industry,Industry +195544,Infrastructure,Infrastructure +233649,Intellectual Property,Intellectual Property +310994,Internal Trade,Internal Trade +159255,International Relations,International Relations +211512,International Trade,International Trade +329972,Labour,Labour +162083,Taxation and Finance,Taxation and Finance +83497,Government Procurement,Government Procurement +83495,Government Procurement,Government Procurement +90695,Defence,Defence +170589,Government Procurement,Government Procurement +160958,Regional Development,Regional Development +80394,Defence,Defence +197477,Energy,Energy +222567,Environment,Environment +432610,Consumer Issues,Consumer Issues +475773,Financial Institutions,Financial Institutions +453132,Health,Health +531136,Industry,Industry +453177,International Relations,International Relations +515549,International Trade,International Trade +491720,Taxation and Finance,Taxation and Finance +164369,Government Procurement,Government Procurement +211588,Defence,Defence +346597,Employment and Training,Employment and Training +262212,Environment,Environment +475921,Financial Institutions,Financial Institutions +513240,Government Procurement,Government Procurement +407767,Immigration,Immigration +475918,Industry,Industry +493471,Labour,Labour +431073,Transportation,Transportation +402257,Financial Institutions,Financial Institutions +543965,Taxation and Finance,Taxation and Finance +134874,Government Procurement,Government Procurement +348536,Transportation,Transportation +374133,Consumer Issues,Consumer Issues +303352,Employment and Training,Employment and Training +379180,Energy,Energy +447119,Environment,Environment +519643,Industry,Industry +97392,Infrastructure,Infrastructure +228154,International Relations,International Relations +537730,International Trade,International Trade +490972,Labour,Labour +490979,Taxation and Finance,Taxation and Finance +413292,Transportation,Transportation +160738,Consumer Issues,Consumer Issues +160738,Industry,Industry +160738,Justice and Law Enforcement,Justice and Law Enforcement +160741,Other,PRIVACY +77645,Health,Health +100468,Education,Education +138472,Education,Education +138472,Industry,Industry +259132,Energy,Energy +259132,Industry,Industry +259132,Regional Development,Regional Development +83043,Agriculture,Agriculture +114317,Government Procurement,Government Procurement +417180,Consumer Issues,Consumer Issues +424330,Employment and Training,Employment and Training +482500,Immigration,Immigration +417180,Industry,Industry +227510,Intellectual Property,Intellectual Property +417182,Sports,Sports +227512,Tourism,Tourism +414751,Consumer Issues,Consumer Issues +506614,Health,Health +414751,Industry,Industry +106934,Infrastructure,Infrastructure +329922,Financial Institutions,Financial Institutions +310438,International Relations,International Relations +319226,Small Business,Small Business +93388,Other,microfinance +438977,Defence,Defence +380488,Industry,Industry +411718,Regional Development,Regional Development +77226,Other,Defence Procurement Regional Development +77225,Other,Technology Partnership Canada +84760,Other,Investment Tax Credit +350777,Defence,Defence +350566,Defence,Defence +331497,Defence,Defence +331493,Defence,Defence +330044,Defence,Defence +321912,Defence,Defence +310526,Defence,Defence +304010,Defence,Defence +296189,Defence,Defence +296180,Defence,Defence +296169,Defence,Defence +291070,Defence,Defence +529603,Defence,Defence +493521,Defence,Defence +493517,Defence,Defence +490549,Defence,Defence +482316,Defence,Defence +466059,Defence,Defence +456748,Defence,Defence +450382,Defence,Defence +376556,Industry,Industry +374689,Industry,Industry +194815,Industry,Industry +168130,Industry,Industry +168129,Industry,Industry +168126,Industry,Industry +163807,Industry,Industry +163806,Industry,Industry +163802,Industry,Industry +153458,Industry,Industry +151958,Industry,Industry +151957,Industry,Industry +358425,Industry,Industry +358134,Industry,Industry +331494,Industry,Industry +324994,Industry,Industry +321915,Industry,Industry +321914,Industry,Industry +316396,Industry,Industry +316395,Industry,Industry +310528,Industry,Industry +310521,Industry,Industry +296179,Industry,Industry +296172,Industry,Industry +291115,Industry,Industry +291111,Industry,Industry +290830,Industry,Industry +286250,Industry,Industry +286249,Industry,Industry +279669,Industry,Industry +277790,Industry,Industry +277492,Industry,Industry +273650,Industry,Industry +268510,Industry,Industry +259971,Industry,Industry +259970,Industry,Industry +259969,Industry,Industry +217934,Industry,Industry +395366,Industry,Industry +381873,Industry,Industry +414413,Regional Development,Regional Development +84756,Other,Investment Tax Credit +526814,Financial Institutions,Financial Institutions +523671,Financial Institutions,Financial Institutions +399308,Financial Institutions,Financial Institutions +399306,Financial Institutions,Financial Institutions +393338,Financial Institutions,Financial Institutions +392924,Financial Institutions,Financial Institutions +392923,Financial Institutions,Financial Institutions +385959,Financial Institutions,Financial Institutions +385954,Financial Institutions,Financial Institutions +365993,Financial Institutions,Financial Institutions +400279,Financial Institutions,Financial Institutions +399312,Financial Institutions,Financial Institutions +542543,Financial Institutions,Financial Institutions +538623,Financial Institutions,Financial Institutions +533692,Financial Institutions,Financial Institutions +406824,Defence,Defence +406817,Defence,Defence +88974,Defence,Defence +88000,Defence,Defence +87996,Defence,Defence +87993,Defence,Defence +163850,Defence,Defence +163845,Defence,Defence +161993,Defence,Defence +161990,Defence,Defence +159116,Defence,Defence +159115,Defence,Defence +159114,Defence,Defence +159113,Defence,Defence +159112,Defence,Defence +159106,Defence,Defence +319142,Defence,Defence +310239,Defence,Defence +310230,Defence,Defence +310210,Defence,Defence +279749,Defence,Defence +277307,Defence,Defence +277305,Defence,Defence +277303,Defence,Defence +277296,Defence,Defence +273120,Defence,Defence +254136,Defence,Defence +254133,Defence,Defence +250777,Defence,Defence +240512,Defence,Defence +223351,Defence,Defence +217273,Defence,Defence +217270,Defence,Defence +200166,Defence,Defence +402904,Defence,Defence +402903,Defence,Defence +402836,Defence,Defence +400522,Defence,Defence +400520,Defence,Defence +400514,Defence,Defence +400512,Defence,Defence +400511,Defence,Defence +400509,Defence,Defence +398766,Defence,Defence +398764,Defence,Defence +398761,Defence,Defence +398757,Defence,Defence +398750,Defence,Defence +398745,Defence,Defence +398735,Defence,Defence +398732,Defence,Defence +398730,Defence,Defence +398729,Defence,Defence +398727,Defence,Defence +398726,Defence,Defence +398722,Defence,Defence +398717,Defence,Defence +398713,Defence,Defence +398709,Defence,Defence +398707,Defence,Defence +398706,Defence,Defence +398705,Defence,Defence +398704,Defence,Defence +398652,Defence,Defence +398646,Defence,Defence +398636,Defence,Defence +396410,Defence,Defence +396399,Defence,Defence +396391,Defence,Defence +396388,Defence,Defence +396381,Defence,Defence +396377,Defence,Defence +396371,Defence,Defence +396178,Defence,Defence +393463,Defence,Defence +393459,Defence,Defence +393442,Defence,Defence +392492,Defence,Defence +387953,Defence,Defence +385572,Defence,Defence +385562,Defence,Defence +385546,Defence,Defence +382269,Defence,Defence +381013,Defence,Defence +374499,Defence,Defence +374494,Defence,Defence +372028,Defence,Defence +372026,Defence,Defence +366445,Defence,Defence +358093,Defence,Defence +347257,Defence,Defence +341255,Defence,Defence +341196,Defence,Defence +341178,Defence,Defence +335879,Defence,Defence +335871,Defence,Defence +335862,Defence,Defence +326813,Defence,Defence +326810,Defence,Defence +529131,Defence,Defence +529105,Defence,Defence +508485,Defence,Defence +508478,Defence,Defence +508473,Defence,Defence +504681,Defence,Defence +504680,Defence,Defence +504679,Defence,Defence +504678,Defence,Defence +504677,Defence,Defence +495227,Defence,Defence +495222,Defence,Defence +493090,Defence,Defence +493085,Defence,Defence +493081,Defence,Defence +484976,Defence,Defence +481818,Defence,Defence +470595,Defence,Defence +470587,Defence,Defence +470582,Defence,Defence +470581,Defence,Defence +470575,Defence,Defence +470568,Defence,Defence +467034,Defence,Defence +467030,Defence,Defence +467023,Defence,Defence +467016,Defence,Defence +467012,Defence,Defence +467011,Defence,Defence +467003,Defence,Defence +467000,Defence,Defence +461621,Defence,Defence +458780,Defence,Defence +458779,Defence,Defence +458778,Defence,Defence +458776,Defence,Defence +443784,Defence,Defence +442484,Defence,Defence +442479,Defence,Defence +442447,Defence,Defence +442431,Defence,Defence +438968,Defence,Defence +438953,Defence,Defence +438943,Defence,Defence +438941,Defence,Defence +438940,Defence,Defence +438939,Defence,Defence +435176,Defence,Defence +435129,Defence,Defence +433516,Defence,Defence +433512,Defence,Defence +433506,Defence,Defence +431811,Defence,Defence +431810,Defence,Defence +431809,Defence,Defence +431808,Defence,Defence +431807,Defence,Defence +431806,Defence,Defence +431805,Defence,Defence +431804,Defence,Defence +431803,Defence,Defence +431802,Defence,Defence +431801,Defence,Defence +430364,Defence,Defence +428740,Defence,Defence +428685,Defence,Defence +423949,Defence,Defence +423940,Defence,Defence +423852,Defence,Defence +423839,Defence,Defence +419906,Defence,Defence +418057,Defence,Defence +418052,Defence,Defence +416475,Defence,Defence +416466,Defence,Defence +416462,Defence,Defence +416449,Defence,Defence +416433,Defence,Defence +413023,Defence,Defence +413021,Defence,Defence +413019,Defence,Defence +413018,Defence,Defence +413017,Defence,Defence +413016,Defence,Defence +413015,Defence,Defence +413012,Defence,Defence +413011,Defence,Defence +413010,Defence,Defence +409425,Defence,Defence +407982,Defence,Defence +407981,Defence,Defence +407980,Defence,Defence +407979,Defence,Defence +393474,Government Procurement,Government Procurement +393470,Government Procurement,Government Procurement +101301,Government Procurement,Government Procurement +97235,Government Procurement,Government Procurement +97234,Government Procurement,Government Procurement +90431,Government Procurement,Government Procurement +128946,Government Procurement,Government Procurement +128945,Government Procurement,Government Procurement +128944,Government Procurement,Government Procurement +128942,Government Procurement,Government Procurement +128939,Government Procurement,Government Procurement +128926,Government Procurement,Government Procurement +128922,Government Procurement,Government Procurement +128916,Government Procurement,Government Procurement +128915,Government Procurement,Government Procurement +124177,Government Procurement,Government Procurement +124176,Government Procurement,Government Procurement +117537,Government Procurement,Government Procurement +117536,Government Procurement,Government Procurement +114056,Government Procurement,Government Procurement +114035,Government Procurement,Government Procurement +109622,Government Procurement,Government Procurement +167924,Government Procurement,Government Procurement +163848,Government Procurement,Government Procurement +159107,Government Procurement,Government Procurement +157000,Government Procurement,Government Procurement +152051,Government Procurement,Government Procurement +152048,Government Procurement,Government Procurement +150195,Government Procurement,Government Procurement +148080,Government Procurement,Government Procurement +148079,Government Procurement,Government Procurement +145946,Government Procurement,Government Procurement +145940,Government Procurement,Government Procurement +145937,Government Procurement,Government Procurement +145935,Government Procurement,Government Procurement +145934,Government Procurement,Government Procurement +145932,Government Procurement,Government Procurement +145930,Government Procurement,Government Procurement +145926,Government Procurement,Government Procurement +143007,Government Procurement,Government Procurement +143002,Government Procurement,Government Procurement +142995,Government Procurement,Government Procurement +142978,Government Procurement,Government Procurement +139100,Government Procurement,Government Procurement +139099,Government Procurement,Government Procurement +139098,Government Procurement,Government Procurement +139097,Government Procurement,Government Procurement +135851,Government Procurement,Government Procurement +135849,Government Procurement,Government Procurement +135847,Government Procurement,Government Procurement +132729,Government Procurement,Government Procurement +132723,Government Procurement,Government Procurement +132720,Government Procurement,Government Procurement +132715,Government Procurement,Government Procurement +132712,Government Procurement,Government Procurement +132710,Government Procurement,Government Procurement +335874,Government Procurement,Government Procurement +335867,Government Procurement,Government Procurement +335865,Government Procurement,Government Procurement +335861,Government Procurement,Government Procurement +335858,Government Procurement,Government Procurement +333615,Government Procurement,Government Procurement +331627,Government Procurement,Government Procurement +326819,Government Procurement,Government Procurement +326816,Government Procurement,Government Procurement +326813,Government Procurement,Government Procurement +324876,Government Procurement,Government Procurement +324875,Government Procurement,Government Procurement +322238,Government Procurement,Government Procurement +322220,Government Procurement,Government Procurement +315974,Government Procurement,Government Procurement +315971,Government Procurement,Government Procurement +315965,Government Procurement,Government Procurement +315963,Government Procurement,Government Procurement +313026,Government Procurement,Government Procurement +313025,Government Procurement,Government Procurement +313024,Government Procurement,Government Procurement +313022,Government Procurement,Government Procurement +313020,Government Procurement,Government Procurement +310205,Government Procurement,Government Procurement +296809,Government Procurement,Government Procurement +291059,Government Procurement,Government Procurement +280875,Government Procurement,Government Procurement +279749,Government Procurement,Government Procurement +277313,Government Procurement,Government Procurement +277305,Government Procurement,Government Procurement +277303,Government Procurement,Government Procurement +277296,Government Procurement,Government Procurement +264136,Government Procurement,Government Procurement +258309,Government Procurement,Government Procurement +254136,Government Procurement,Government Procurement +245317,Government Procurement,Government Procurement +245196,Government Procurement,Government Procurement +245192,Government Procurement,Government Procurement +245190,Government Procurement,Government Procurement +245185,Government Procurement,Government Procurement +245175,Government Procurement,Government Procurement +240514,Government Procurement,Government Procurement +237070,Government Procurement,Government Procurement +237069,Government Procurement,Government Procurement +229352,Government Procurement,Government Procurement +229351,Government Procurement,Government Procurement +229350,Government Procurement,Government Procurement +226849,Government Procurement,Government Procurement +223349,Government Procurement,Government Procurement +221809,Government Procurement,Government Procurement +217265,Government Procurement,Government Procurement +212275,Government Procurement,Government Procurement +212237,Government Procurement,Government Procurement +194705,Government Procurement,Government Procurement +194699,Government Procurement,Government Procurement +194697,Government Procurement,Government Procurement +194694,Government Procurement,Government Procurement +194689,Government Procurement,Government Procurement +194683,Government Procurement,Government Procurement +174714,Government Procurement,Government Procurement +393466,Government Procurement,Government Procurement +393465,Government Procurement,Government Procurement +393462,Government Procurement,Government Procurement +393461,Government Procurement,Government Procurement +393460,Government Procurement,Government Procurement +393458,Government Procurement,Government Procurement +393457,Government Procurement,Government Procurement +393456,Government Procurement,Government Procurement +393455,Government Procurement,Government Procurement +393443,Government Procurement,Government Procurement +392499,Government Procurement,Government Procurement +392497,Government Procurement,Government Procurement +391236,Government Procurement,Government Procurement +391202,Government Procurement,Government Procurement +391182,Government Procurement,Government Procurement +387977,Government Procurement,Government Procurement +387975,Government Procurement,Government Procurement +387957,Government Procurement,Government Procurement +385618,Government Procurement,Government Procurement +385579,Government Procurement,Government Procurement +385519,Government Procurement,Government Procurement +385512,Government Procurement,Government Procurement +385499,Government Procurement,Government Procurement +383615,Government Procurement,Government Procurement +381016,Government Procurement,Government Procurement +381014,Government Procurement,Government Procurement +379114,Government Procurement,Government Procurement +379112,Government Procurement,Government Procurement +376598,Government Procurement,Government Procurement +374502,Government Procurement,Government Procurement +374500,Government Procurement,Government Procurement +374497,Government Procurement,Government Procurement +369505,Government Procurement,Government Procurement +369504,Government Procurement,Government Procurement +365207,Government Procurement,Government Procurement +363443,Government Procurement,Government Procurement +362374,Government Procurement,Government Procurement +361112,Government Procurement,Government Procurement +361111,Government Procurement,Government Procurement +359735,Government Procurement,Government Procurement +358084,Government Procurement,Government Procurement +356409,Government Procurement,Government Procurement +356408,Government Procurement,Government Procurement +353725,Government Procurement,Government Procurement +351366,Government Procurement,Government Procurement +351365,Government Procurement,Government Procurement +349111,Government Procurement,Government Procurement +349110,Government Procurement,Government Procurement +349109,Government Procurement,Government Procurement +347282,Government Procurement,Government Procurement +347275,Government Procurement,Government Procurement +347267,Government Procurement,Government Procurement +347265,Government Procurement,Government Procurement +343885,Government Procurement,Government Procurement +338582,Government Procurement,Government Procurement +526122,Government Procurement,Government Procurement +526070,Government Procurement,Government Procurement +522773,Government Procurement,Government Procurement +519482,Government Procurement,Government Procurement +502350,Government Procurement,Government Procurement +491019,Government Procurement,Government Procurement +490982,Government Procurement,Government Procurement +464481,Government Procurement,Government Procurement +464478,Government Procurement,Government Procurement +464471,Government Procurement,Government Procurement +422104,Government Procurement,Government Procurement +422082,Government Procurement,Government Procurement +409431,Government Procurement,Government Procurement +406837,Government Procurement,Government Procurement +406835,Government Procurement,Government Procurement +406833,Government Procurement,Government Procurement +405536,Government Procurement,Government Procurement +405441,Government Procurement,Government Procurement +405435,Government Procurement,Government Procurement +405434,Government Procurement,Government Procurement +405433,Government Procurement,Government Procurement +405430,Government Procurement,Government Procurement +405426,Government Procurement,Government Procurement +405421,Government Procurement,Government Procurement +405418,Government Procurement,Government Procurement +396431,Government Procurement,Government Procurement +396425,Government Procurement,Government Procurement +396422,Government Procurement,Government Procurement +396412,Government Procurement,Government Procurement +396407,Government Procurement,Government Procurement +396403,Government Procurement,Government Procurement +396386,Government Procurement,Government Procurement +522780,Industry,Industry +519480,Industry,Industry +88975,Industry,Industry +87984,Industry,Industry +156997,Industry,Industry +128922,Industry,Industry +121234,Industry,Industry +121217,Industry,Industry +326820,Industry,Industry +326810,Industry,Industry +322233,Industry,Industry +310235,Industry,Industry +291062,Industry,Industry +286509,Industry,Industry +264131,Industry,Industry +245177,Industry,Industry +240510,Industry,Industry +223348,Industry,Industry +161991,Industry,Industry +422117,Industry,Industry +422113,Industry,Industry +422104,Industry,Industry +422098,Industry,Industry +422087,Industry,Industry +422082,Industry,Industry +419907,Industry,Industry +419905,Industry,Industry +419904,Industry,Industry +418065,Industry,Industry +418052,Industry,Industry +416469,Industry,Industry +416436,Industry,Industry +416433,Industry,Industry +416429,Industry,Industry +409428,Industry,Industry +409427,Industry,Industry +402899,Industry,Industry +402831,Industry,Industry +393467,Industry,Industry +393464,Industry,Industry +392509,Industry,Industry +392507,Industry,Industry +392504,Industry,Industry +392503,Industry,Industry +392500,Industry,Industry +392496,Industry,Industry +392494,Industry,Industry +392491,Industry,Industry +392468,Industry,Industry +392462,Industry,Industry +391178,Industry,Industry +385550,Industry,Industry +382272,Industry,Industry +382271,Industry,Industry +382267,Industry,Industry +372001,Industry,Industry +369511,Industry,Industry +369507,Industry,Industry +365209,Industry,Industry +353726,Industry,Industry +341161,Industry,Industry +513955,Industry,Industry +512606,Industry,Industry +512604,Industry,Industry +512601,Industry,Industry +512599,Industry,Industry +510680,Industry,Industry +510678,Industry,Industry +510665,Industry,Industry +510660,Industry,Industry +510658,Industry,Industry +502333,Industry,Industry +502227,Industry,Industry +502226,Industry,Industry +502211,Industry,Industry +498993,Industry,Industry +498897,Industry,Industry +498885,Industry,Industry +498879,Industry,Industry +498875,Industry,Industry +493074,Industry,Industry +491005,Industry,Industry +490964,Industry,Industry +490944,Industry,Industry +486825,Industry,Industry +486816,Industry,Industry +486803,Industry,Industry +486800,Industry,Industry +486794,Industry,Industry +486789,Industry,Industry +486728,Industry,Industry +486723,Industry,Industry +486706,Industry,Industry +486693,Industry,Industry +485031,Industry,Industry +485007,Industry,Industry +485003,Industry,Industry +484984,Industry,Industry +484976,Industry,Industry +484973,Industry,Industry +484967,Industry,Industry +481836,Industry,Industry +481805,Industry,Industry +479782,Industry,Industry +479776,Industry,Industry +476787,Industry,Industry +476784,Industry,Industry +476783,Industry,Industry +476781,Industry,Industry +476777,Industry,Industry +476775,Industry,Industry +475077,Industry,Industry +475073,Industry,Industry +475069,Industry,Industry +473134,Industry,Industry +473129,Industry,Industry +473126,Industry,Industry +473114,Industry,Industry +473112,Industry,Industry +470604,Industry,Industry +470599,Industry,Industry +470595,Industry,Industry +470587,Industry,Industry +470584,Industry,Industry +470582,Industry,Industry +470581,Industry,Industry +470575,Industry,Industry +470573,Industry,Industry +470568,Industry,Industry +470561,Industry,Industry +470554,Industry,Industry +460062,Industry,Industry +459513,Industry,Industry +458775,Industry,Industry +457076,Industry,Industry +457074,Industry,Industry +455504,Industry,Industry +455500,Industry,Industry +455496,Industry,Industry +455494,Industry,Industry +455493,Industry,Industry +455488,Industry,Industry +455462,Industry,Industry +455459,Industry,Industry +455455,Industry,Industry +452220,Industry,Industry +452218,Industry,Industry +452215,Industry,Industry +452206,Industry,Industry +452205,Industry,Industry +452200,Industry,Industry +452193,Industry,Industry +449694,Industry,Industry +449693,Industry,Industry +449692,Industry,Industry +449691,Industry,Industry +449687,Industry,Industry +449685,Industry,Industry +449681,Industry,Industry +449680,Industry,Industry +447917,Industry,Industry +447913,Industry,Industry +447902,Industry,Industry +447896,Industry,Industry +447889,Industry,Industry +447885,Industry,Industry +447883,Industry,Industry +447877,Industry,Industry +447876,Industry,Industry +447875,Industry,Industry +445339,Industry,Industry +445333,Industry,Industry +445329,Industry,Industry +445328,Industry,Industry +445327,Industry,Industry +443708,Industry,Industry +443701,Industry,Industry +442493,Industry,Industry +442488,Industry,Industry +442447,Industry,Industry +442431,Industry,Industry +438939,Industry,Industry +435205,Industry,Industry +435176,Industry,Industry +435172,Industry,Industry +435168,Industry,Industry +435167,Industry,Industry +435129,Industry,Industry +433536,Industry,Industry +433532,Industry,Industry +433529,Industry,Industry +433516,Industry,Industry +433514,Industry,Industry +433513,Industry,Industry +433508,Industry,Industry +433506,Industry,Industry +431813,Industry,Industry +431811,Industry,Industry +431810,Industry,Industry +431809,Industry,Industry +431808,Industry,Industry +431807,Industry,Industry +431800,Industry,Industry +431799,Industry,Industry +430364,Industry,Industry +430360,Industry,Industry +430359,Industry,Industry +430356,Industry,Industry +430354,Industry,Industry +430351,Industry,Industry +428770,Industry,Industry +428740,Industry,Industry +428681,Industry,Industry +426660,Industry,Industry +426651,Industry,Industry +426641,Industry,Industry +426636,Industry,Industry +426625,Industry,Industry +426613,Industry,Industry +426576,Industry,Industry +426551,Industry,Industry +426533,Industry,Industry +423956,Industry,Industry +423945,Industry,Industry +423936,Industry,Industry +423835,Industry,Industry +423832,Industry,Industry +422121,Industry,Industry +543402,Industry,Industry +541723,Industry,Industry +541692,Industry,Industry +537821,Industry,Industry +537819,Industry,Industry +537789,Industry,Industry +534570,Industry,Industry +530929,Industry,Industry +530915,Industry,Industry +529139,Industry,Industry +529134,Industry,Industry +529086,Industry,Industry +529077,Industry,Industry +529073,Industry,Industry +529058,Industry,Industry +529056,Industry,Industry +526103,Industry,Industry +526054,Industry,Industry +526050,Industry,Industry +526037,Industry,Industry +526033,Industry,Industry +525691,Industry,Industry +525623,Industry,Industry +525613,Industry,Industry +428820,Environment,Environment +412956,Environment,Environment +222728,Environment,Environment +222727,Environment,Environment +196488,Environment,Environment +173593,Environment,Environment +173408,Environment,Environment +173407,Environment,Environment +173406,Environment,Environment +173405,Environment,Environment +173404,Environment,Environment +322929,Environment,Environment +318956,Environment,Environment +259091,Environment,Environment +255751,Environment,Environment +246089,Environment,Environment +222729,Environment,Environment +443662,Environment,Environment +441409,Environment,Environment +441408,Environment,Environment +441406,Environment,Environment +441405,Environment,Environment +441403,Environment,Environment +441402,Environment,Environment +441400,Environment,Environment +441359,Environment,Environment +441358,Environment,Environment +441356,Environment,Environment +435102,Environment,Environment +435099,Environment,Environment +430414,Environment,Environment +428820,Government Procurement,Government Procurement +428825,Taxation and Finance,Taxation and Finance +428820,Taxation and Finance,Taxation and Finance +232729,Taxation and Finance,Taxation and Finance +337190,Taxation and Finance,Taxation and Finance +334809,Taxation and Finance,Taxation and Finance +331525,Taxation and Finance,Taxation and Finance +327009,Taxation and Finance,Taxation and Finance +325749,Taxation and Finance,Taxation and Finance +318956,Taxation and Finance,Taxation and Finance +318954,Taxation and Finance,Taxation and Finance +259091,Taxation and Finance,Taxation and Finance +255751,Taxation and Finance,Taxation and Finance +255750,Taxation and Finance,Taxation and Finance +255749,Taxation and Finance,Taxation and Finance +247509,Taxation and Finance,Taxation and Finance +428820,Transportation,Transportation +412956,Transportation,Transportation +90262,Transportation,Transportation +160430,Transportation,Transportation +160429,Transportation,Transportation +160428,Transportation,Transportation +157599,Transportation,Transportation +157598,Transportation,Transportation +157597,Transportation,Transportation +157596,Transportation,Transportation +157595,Transportation,Transportation +157594,Transportation,Transportation +157593,Transportation,Transportation +157592,Transportation,Transportation +157591,Transportation,Transportation +157590,Transportation,Transportation +157589,Transportation,Transportation +150288,Transportation,Transportation +150279,Transportation,Transportation +150278,Transportation,Transportation +144375,Transportation,Transportation +192604,Transportation,Transportation +192565,Transportation,Transportation +192564,Transportation,Transportation +187769,Transportation,Transportation +187768,Transportation,Transportation +187767,Transportation,Transportation +187766,Transportation,Transportation +187585,Transportation,Transportation +187584,Transportation,Transportation +187004,Transportation,Transportation +183304,Transportation,Transportation +173593,Transportation,Transportation +173408,Transportation,Transportation +173407,Transportation,Transportation +173406,Transportation,Transportation +173405,Transportation,Transportation +173404,Transportation,Transportation +169571,Transportation,Transportation +169569,Transportation,Transportation +169567,Transportation,Transportation +167883,Transportation,Transportation +167882,Transportation,Transportation +166805,Transportation,Transportation +166280,Transportation,Transportation +166278,Transportation,Transportation +166276,Transportation,Transportation +166274,Transportation,Transportation +165766,Transportation,Transportation +165764,Transportation,Transportation +165051,Transportation,Transportation +165049,Transportation,Transportation +165047,Transportation,Transportation +165046,Transportation,Transportation +165045,Transportation,Transportation +165044,Transportation,Transportation +164868,Transportation,Transportation +164867,Transportation,Transportation +163617,Transportation,Transportation +162111,Transportation,Transportation +162110,Transportation,Transportation +161325,Transportation,Transportation +161324,Transportation,Transportation +161323,Transportation,Transportation +161077,Transportation,Transportation +161076,Transportation,Transportation +161075,Transportation,Transportation +161074,Transportation,Transportation +160436,Transportation,Transportation +160435,Transportation,Transportation +160434,Transportation,Transportation +160433,Transportation,Transportation +160432,Transportation,Transportation +160431,Transportation,Transportation +337190,Transportation,Transportation +334809,Transportation,Transportation +331525,Transportation,Transportation +327009,Transportation,Transportation +325749,Transportation,Transportation +322929,Transportation,Transportation +318956,Transportation,Transportation +318954,Transportation,Transportation +259091,Transportation,Transportation +255751,Transportation,Transportation +255750,Transportation,Transportation +255749,Transportation,Transportation +247509,Transportation,Transportation +246089,Transportation,Transportation +245889,Transportation,Transportation +245583,Transportation,Transportation +243669,Transportation,Transportation +232729,Transportation,Transportation +222729,Transportation,Transportation +222728,Transportation,Transportation +222727,Transportation,Transportation +212208,Transportation,Transportation +212207,Transportation,Transportation +200627,Transportation,Transportation +196489,Transportation,Transportation +196488,Transportation,Transportation +195865,Transportation,Transportation +195864,Transportation,Transportation +544828,Transportation,Transportation +472086,Transportation,Transportation +472084,Transportation,Transportation +472083,Transportation,Transportation +472082,Transportation,Transportation +472081,Transportation,Transportation +472079,Transportation,Transportation +443662,Transportation,Transportation +441410,Transportation,Transportation +441409,Transportation,Transportation +441408,Transportation,Transportation +441406,Transportation,Transportation +441405,Transportation,Transportation +441403,Transportation,Transportation +441402,Transportation,Transportation +441400,Transportation,Transportation +441359,Transportation,Transportation +441358,Transportation,Transportation +441356,Transportation,Transportation +435102,Transportation,Transportation +435099,Transportation,Transportation +430414,Transportation,Transportation +113988,Environment,Environment +106278,Environment,Environment +97157,Environment,Environment +80762,Environment,Environment +121154,Environment,Environment +77660,Infrastructure,Infrastructure +340701,Defence,Defence +329981,Defence,Defence +191646,Government Procurement,Government Procurement +329981,Government Procurement,Government Procurement +94294,Government Procurement,Government Procurement +153915,Government Procurement,Government Procurement +172404,Government Procurement,Government Procurement +256895,Government Procurement,Government Procurement +238609,Government Procurement,Government Procurement +234369,Government Procurement,Government Procurement +238609,Industry,Industry +234369,Industry,Industry +161312,Industry,Industry +161311,Industry,Industry +160249,Industry,Industry +156449,Industry,Industry +156448,Industry,Industry +156447,Industry,Industry +156446,Industry,Industry +196065,Industry,Industry +191646,Industry,Industry +368497,Industry,Industry +364647,Industry,Industry +364646,Industry,Industry +364645,Industry,Industry +364644,Industry,Industry +363026,Industry,Industry +363025,Industry,Industry +362217,Industry,Industry +362215,Industry,Industry +355203,Industry,Industry +346765,Industry,Industry +346764,Industry,Industry +344401,Industry,Industry +344399,Industry,Industry +342477,Industry,Industry +340703,Industry,Industry +340694,Industry,Industry +339422,Industry,Industry +339421,Industry,Industry +336135,Industry,Industry +334495,Industry,Industry +328350,Industry,Industry +322781,Industry,Industry +322779,Industry,Industry +322778,Industry,Industry +322777,Industry,Industry +322411,Industry,Industry +317770,Industry,Industry +314755,Industry,Industry +314751,Industry,Industry +314749,Industry,Industry +311392,Industry,Industry +300470,Industry,Industry +283430,Industry,Industry +278890,Industry,Industry +264709,Industry,Industry +278889,International Trade,International Trade +274709,International Trade,International Trade +524403,Regional Development,Regional Development +144674,Other,Canadian Space Agency +114097,Other,Canadian Space Agency +91115,Other,Canadian Space Agency +91114,Other,Canadian Space Agency +90834,Other,Canadian Space Agency +145114,Other,Canadian Space Plan +144675,Other,Canadian Space Plan +114097,Other,Canadian Space Plan +99116,Other,Canadian Space Plan +91115,Other,Canadian Space Plan +91114,Other,Canadian Space Plan +79995,Employment and Training,Employment and Training +79994,Employment and Training,Employment and Training +79999,Employment and Training,Employment and Training +79998,Employment and Training,Employment and Training +79997,Employment and Training,Employment and Training +89177,Energy,Energy +89176,Energy,Energy +89175,Energy,Energy +89174,Energy,Energy +86114,Energy,Energy +79999,Energy,Energy +79998,Energy,Energy +79997,Energy,Energy +79996,Energy,Energy +79995,Energy,Energy +79994,Energy,Energy +89185,Energy,Energy +89184,Energy,Energy +79995,Environment,Environment +79994,Environment,Environment +79999,Environment,Environment +79998,Environment,Environment +79997,Environment,Environment +79995,Industry,Industry +79994,Industry,Industry +86114,Industry,Industry +79999,Industry,Industry +79998,Industry,Industry +79997,Industry,Industry +89175,Transportation,Transportation +89174,Transportation,Transportation +89185,Transportation,Transportation +89184,Transportation,Transportation +89178,Transportation,Transportation +89177,Transportation,Transportation +141494,Transportation,Transportation +418360,Transportation,Transportation +113614,Transportation,Transportation +81836,Transportation,Transportation +464813,Consumer Issues,Consumer Issues +498333,Consumer Issues,Consumer Issues +222574,Consumer Issues,Consumer Issues +222571,Consumer Issues,Consumer Issues +167794,Consumer Issues,Consumer Issues +398667,Financial Institutions,Financial Institutions +398666,Financial Institutions,Financial Institutions +161487,Financial Institutions,Financial Institutions +159687,Financial Institutions,Financial Institutions +159684,Financial Institutions,Financial Institutions +159675,Financial Institutions,Financial Institutions +159670,Financial Institutions,Financial Institutions +145784,Financial Institutions,Financial Institutions +132293,Financial Institutions,Financial Institutions +193600,Financial Institutions,Financial Institutions +193535,Financial Institutions,Financial Institutions +193534,Financial Institutions,Financial Institutions +193533,Financial Institutions,Financial Institutions +193532,Financial Institutions,Financial Institutions +193530,Financial Institutions,Financial Institutions +193529,Financial Institutions,Financial Institutions +193528,Financial Institutions,Financial Institutions +193527,Financial Institutions,Financial Institutions +193525,Financial Institutions,Financial Institutions +193524,Financial Institutions,Financial Institutions +193523,Financial Institutions,Financial Institutions +193522,Financial Institutions,Financial Institutions +193521,Financial Institutions,Financial Institutions +193520,Financial Institutions,Financial Institutions +193518,Financial Institutions,Financial Institutions +193517,Financial Institutions,Financial Institutions +193515,Financial Institutions,Financial Institutions +193510,Financial Institutions,Financial Institutions +193508,Financial Institutions,Financial Institutions +193507,Financial Institutions,Financial Institutions +193505,Financial Institutions,Financial Institutions +193504,Financial Institutions,Financial Institutions +189532,Financial Institutions,Financial Institutions +189529,Financial Institutions,Financial Institutions +184464,Financial Institutions,Financial Institutions +183724,Financial Institutions,Financial Institutions +183704,Financial Institutions,Financial Institutions +183664,Financial Institutions,Financial Institutions +183644,Financial Institutions,Financial Institutions +183624,Financial Institutions,Financial Institutions +179344,Financial Institutions,Financial Institutions +167794,Financial Institutions,Financial Institutions +281001,Financial Institutions,Financial Institutions +277519,Financial Institutions,Financial Institutions +273111,Financial Institutions,Financial Institutions +273110,Financial Institutions,Financial Institutions +273095,Financial Institutions,Financial Institutions +273089,Financial Institutions,Financial Institutions +268369,Financial Institutions,Financial Institutions +264055,Financial Institutions,Financial Institutions +263990,Financial Institutions,Financial Institutions +258431,Financial Institutions,Financial Institutions +258430,Financial Institutions,Financial Institutions +258429,Financial Institutions,Financial Institutions +254137,Financial Institutions,Financial Institutions +249960,Financial Institutions,Financial Institutions +249956,Financial Institutions,Financial Institutions +249954,Financial Institutions,Financial Institutions +249953,Financial Institutions,Financial Institutions +249952,Financial Institutions,Financial Institutions +249951,Financial Institutions,Financial Institutions +245009,Financial Institutions,Financial Institutions +240517,Financial Institutions,Financial Institutions +230241,Financial Institutions,Financial Institutions +230239,Financial Institutions,Financial Institutions +225967,Financial Institutions,Financial Institutions +222575,Financial Institutions,Financial Institutions +222574,Financial Institutions,Financial Institutions +222571,Financial Institutions,Financial Institutions +206208,Financial Institutions,Financial Institutions +193754,Financial Institutions,Financial Institutions +193737,Financial Institutions,Financial Institutions +193735,Financial Institutions,Financial Institutions +193730,Financial Institutions,Financial Institutions +193729,Financial Institutions,Financial Institutions +193727,Financial Institutions,Financial Institutions +193722,Financial Institutions,Financial Institutions +193719,Financial Institutions,Financial Institutions +193718,Financial Institutions,Financial Institutions +193717,Financial Institutions,Financial Institutions +193714,Financial Institutions,Financial Institutions +193712,Financial Institutions,Financial Institutions +193708,Financial Institutions,Financial Institutions +193706,Financial Institutions,Financial Institutions +193703,Financial Institutions,Financial Institutions +193702,Financial Institutions,Financial Institutions +193701,Financial Institutions,Financial Institutions +193699,Financial Institutions,Financial Institutions +193698,Financial Institutions,Financial Institutions +193697,Financial Institutions,Financial Institutions +193695,Financial Institutions,Financial Institutions +193608,Financial Institutions,Financial Institutions +193606,Financial Institutions,Financial Institutions +193604,Financial Institutions,Financial Institutions +395931,Financial Institutions,Financial Institutions +395928,Financial Institutions,Financial Institutions +394079,Financial Institutions,Financial Institutions +392467,Financial Institutions,Financial Institutions +390159,Financial Institutions,Financial Institutions +390158,Financial Institutions,Financial Institutions +390157,Financial Institutions,Financial Institutions +387996,Financial Institutions,Financial Institutions +387993,Financial Institutions,Financial Institutions +385238,Financial Institutions,Financial Institutions +385236,Financial Institutions,Financial Institutions +385235,Financial Institutions,Financial Institutions +385234,Financial Institutions,Financial Institutions +385231,Financial Institutions,Financial Institutions +381433,Financial Institutions,Financial Institutions +381431,Financial Institutions,Financial Institutions +379860,Financial Institutions,Financial Institutions +379827,Financial Institutions,Financial Institutions +379764,Financial Institutions,Financial Institutions +379763,Financial Institutions,Financial Institutions +379758,Financial Institutions,Financial Institutions +379755,Financial Institutions,Financial Institutions +376945,Financial Institutions,Financial Institutions +376941,Financial Institutions,Financial Institutions +376924,Financial Institutions,Financial Institutions +376915,Financial Institutions,Financial Institutions +374601,Financial Institutions,Financial Institutions +372600,Financial Institutions,Financial Institutions +369162,Financial Institutions,Financial Institutions +366715,Financial Institutions,Financial Institutions +365223,Financial Institutions,Financial Institutions +363478,Financial Institutions,Financial Institutions +363476,Financial Institutions,Financial Institutions +362174,Financial Institutions,Financial Institutions +362172,Financial Institutions,Financial Institutions +361024,Financial Institutions,Financial Institutions +361023,Financial Institutions,Financial Institutions +361022,Financial Institutions,Financial Institutions +359871,Financial Institutions,Financial Institutions +359870,Financial Institutions,Financial Institutions +357941,Financial Institutions,Financial Institutions +355960,Financial Institutions,Financial Institutions +355959,Financial Institutions,Financial Institutions +355958,Financial Institutions,Financial Institutions +355957,Financial Institutions,Financial Institutions +353808,Financial Institutions,Financial Institutions +351161,Financial Institutions,Financial Institutions +340949,Financial Institutions,Financial Institutions +340945,Financial Institutions,Financial Institutions +340943,Financial Institutions,Financial Institutions +329909,Financial Institutions,Financial Institutions +329908,Financial Institutions,Financial Institutions +327527,Financial Institutions,Financial Institutions +310652,Financial Institutions,Financial Institutions +310452,Financial Institutions,Financial Institutions +310449,Financial Institutions,Financial Institutions +310445,Financial Institutions,Financial Institutions +310442,Financial Institutions,Financial Institutions +303669,Financial Institutions,Financial Institutions +296793,Financial Institutions,Financial Institutions +543394,Financial Institutions,Financial Institutions +543392,Financial Institutions,Financial Institutions +543391,Financial Institutions,Financial Institutions +538517,Financial Institutions,Financial Institutions +538516,Financial Institutions,Financial Institutions +538515,Financial Institutions,Financial Institutions +534094,Financial Institutions,Financial Institutions +534093,Financial Institutions,Financial Institutions +522517,Financial Institutions,Financial Institutions +517458,Financial Institutions,Financial Institutions +517457,Financial Institutions,Financial Institutions +515394,Financial Institutions,Financial Institutions +510344,Financial Institutions,Financial Institutions +508062,Financial Institutions,Financial Institutions +498333,Financial Institutions,Financial Institutions +498329,Financial Institutions,Financial Institutions +494805,Financial Institutions,Financial Institutions +491096,Financial Institutions,Financial Institutions +464813,Financial Institutions,Financial Institutions +455552,Financial Institutions,Financial Institutions +435556,Financial Institutions,Financial Institutions +428437,Financial Institutions,Financial Institutions +428436,Financial Institutions,Financial Institutions +428435,Financial Institutions,Financial Institutions +428433,Financial Institutions,Financial Institutions +428430,Financial Institutions,Financial Institutions +428428,Financial Institutions,Financial Institutions +428427,Financial Institutions,Financial Institutions +421898,Financial Institutions,Financial Institutions +421896,Financial Institutions,Financial Institutions +415748,Financial Institutions,Financial Institutions +415746,Financial Institutions,Financial Institutions +415743,Financial Institutions,Financial Institutions +413524,Financial Institutions,Financial Institutions +412907,Financial Institutions,Financial Institutions +412905,Financial Institutions,Financial Institutions +412902,Financial Institutions,Financial Institutions +412898,Financial Institutions,Financial Institutions +412894,Financial Institutions,Financial Institutions +412890,Financial Institutions,Financial Institutions +409874,Financial Institutions,Financial Institutions +409872,Financial Institutions,Financial Institutions +409870,Financial Institutions,Financial Institutions +409869,Financial Institutions,Financial Institutions +407883,Financial Institutions,Financial Institutions +407881,Financial Institutions,Financial Institutions +407880,Financial Institutions,Financial Institutions +407879,Financial Institutions,Financial Institutions +406590,Financial Institutions,Financial Institutions +406588,Financial Institutions,Financial Institutions +406587,Financial Institutions,Financial Institutions +405513,Financial Institutions,Financial Institutions +405509,Financial Institutions,Financial Institutions +405503,Financial Institutions,Financial Institutions +405501,Financial Institutions,Financial Institutions +403520,Financial Institutions,Financial Institutions +403519,Financial Institutions,Financial Institutions +403518,Financial Institutions,Financial Institutions +403498,Financial Institutions,Financial Institutions +403494,Financial Institutions,Financial Institutions +403493,Financial Institutions,Financial Institutions +403489,Financial Institutions,Financial Institutions +403488,Financial Institutions,Financial Institutions +403487,Financial Institutions,Financial Institutions +400431,Financial Institutions,Financial Institutions +400430,Financial Institutions,Financial Institutions +400428,Financial Institutions,Financial Institutions +398677,Financial Institutions,Financial Institutions +398674,Financial Institutions,Financial Institutions +398672,Financial Institutions,Financial Institutions +543392,Taxation and Finance,Taxation and Finance +538517,Taxation and Finance,Taxation and Finance +428428,Taxation and Finance,Taxation and Finance +428427,Taxation and Finance,Taxation and Finance +213787,Industry,Industry +193024,Industry,Industry +246829,Industry,Industry +228110,Industry,Industry +77616,Health,Health +539375,Agriculture,Agriculture +539367,Agriculture,Agriculture +191601,Agriculture,Agriculture +191598,Agriculture,Agriculture +191594,Agriculture,Agriculture +191591,Agriculture,Agriculture +539369,Health,Health +539368,Health,Health +189867,Health,Health +189866,Health,Health +174825,Health,Health +166585,Health,Health +166584,Health,Health +276849,Health,Health +79734,Financial Institutions,Financial Institutions +456012,Regional Development,Regional Development +135929,Tourism,Tourism +456012,Tourism,Tourism +154882,Transportation,Transportation +212465,Transportation,Transportation +106288,Transportation,Transportation +106287,Transportation,Transportation +159920,Transportation,Transportation +429052,Financial Institutions,Financial Institutions +423538,Financial Institutions,Financial Institutions +88714,Financial Institutions,Financial Institutions +245508,Financial Institutions,Financial Institutions +230414,Financial Institutions,Financial Institutions +223276,Financial Institutions,Financial Institutions +223272,Financial Institutions,Financial Institutions +223265,Financial Institutions,Financial Institutions +212305,Financial Institutions,Financial Institutions +207193,Financial Institutions,Financial Institutions +207191,Financial Institutions,Financial Institutions +202834,Financial Institutions,Financial Institutions +178304,Financial Institutions,Financial Institutions +168135,Financial Institutions,Financial Institutions +161981,Financial Institutions,Financial Institutions +149677,Financial Institutions,Financial Institutions +133314,Financial Institutions,Financial Institutions +372367,Financial Institutions,Financial Institutions +372363,Financial Institutions,Financial Institutions +369526,Financial Institutions,Financial Institutions +369524,Financial Institutions,Financial Institutions +369523,Financial Institutions,Financial Institutions +362205,Financial Institutions,Financial Institutions +357955,Financial Institutions,Financial Institutions +353834,Financial Institutions,Financial Institutions +353830,Financial Institutions,Financial Institutions +351292,Financial Institutions,Financial Institutions +343943,Financial Institutions,Financial Institutions +341093,Financial Institutions,Financial Institutions +335940,Financial Institutions,Financial Institutions +324898,Financial Institutions,Financial Institutions +315650,Financial Institutions,Financial Institutions +315649,Financial Institutions,Financial Institutions +313149,Financial Institutions,Financial Institutions +296734,Financial Institutions,Financial Institutions +296717,Financial Institutions,Financial Institutions +277374,Financial Institutions,Financial Institutions +273457,Financial Institutions,Financial Institutions +273454,Financial Institutions,Financial Institutions +273453,Financial Institutions,Financial Institutions +273450,Financial Institutions,Financial Institutions +269590,Financial Institutions,Financial Institutions +415897,Financial Institutions,Financial Institutions +411855,Financial Institutions,Financial Institutions +411851,Financial Institutions,Financial Institutions +406684,Financial Institutions,Financial Institutions +406097,Financial Institutions,Financial Institutions +405300,Financial Institutions,Financial Institutions +405296,Financial Institutions,Financial Institutions +403018,Financial Institutions,Financial Institutions +403017,Financial Institutions,Financial Institutions +403009,Financial Institutions,Financial Institutions +400302,Financial Institutions,Financial Institutions +397186,Financial Institutions,Financial Institutions +394344,Financial Institutions,Financial Institutions +394338,Financial Institutions,Financial Institutions +390398,Financial Institutions,Financial Institutions +390382,Financial Institutions,Financial Institutions +387313,Financial Institutions,Financial Institutions +385295,Financial Institutions,Financial Institutions +385283,Financial Institutions,Financial Institutions +382975,Financial Institutions,Financial Institutions +379690,Financial Institutions,Financial Institutions +379686,Financial Institutions,Financial Institutions +379673,Financial Institutions,Financial Institutions +379666,Financial Institutions,Financial Institutions +376710,Financial Institutions,Financial Institutions +376704,Financial Institutions,Financial Institutions +374188,Financial Institutions,Financial Institutions +543268,Financial Institutions,Financial Institutions +543264,Financial Institutions,Financial Institutions +541220,Financial Institutions,Financial Institutions +539029,Financial Institutions,Financial Institutions +536974,Financial Institutions,Financial Institutions +536971,Financial Institutions,Financial Institutions +536509,Financial Institutions,Financial Institutions +525299,Financial Institutions,Financial Institutions +522976,Financial Institutions,Financial Institutions +519329,Financial Institutions,Financial Institutions +517684,Financial Institutions,Financial Institutions +517676,Financial Institutions,Financial Institutions +515776,Financial Institutions,Financial Institutions +515220,Financial Institutions,Financial Institutions +514085,Financial Institutions,Financial Institutions +513675,Financial Institutions,Financial Institutions +511949,Financial Institutions,Financial Institutions +510836,Financial Institutions,Financial Institutions +508432,Financial Institutions,Financial Institutions +493625,Financial Institutions,Financial Institutions +491282,Financial Institutions,Financial Institutions +491269,Financial Institutions,Financial Institutions +491249,Financial Institutions,Financial Institutions +487230,Financial Institutions,Financial Institutions +487225,Financial Institutions,Financial Institutions +484244,Financial Institutions,Financial Institutions +484208,Financial Institutions,Financial Institutions +477770,Financial Institutions,Financial Institutions +470155,Financial Institutions,Financial Institutions +470151,Financial Institutions,Financial Institutions +467874,Financial Institutions,Financial Institutions +467861,Financial Institutions,Financial Institutions +463858,Financial Institutions,Financial Institutions +463856,Financial Institutions,Financial Institutions +461739,Financial Institutions,Financial Institutions +458584,Financial Institutions,Financial Institutions +458574,Financial Institutions,Financial Institutions +455159,Financial Institutions,Financial Institutions +451909,Financial Institutions,Financial Institutions +451908,Financial Institutions,Financial Institutions +450109,Financial Institutions,Financial Institutions +445263,Financial Institutions,Financial Institutions +445262,Financial Institutions,Financial Institutions +445260,Financial Institutions,Financial Institutions +435709,Financial Institutions,Financial Institutions +435704,Financial Institutions,Financial Institutions +435693,Financial Institutions,Financial Institutions +435675,Financial Institutions,Financial Institutions +432283,Financial Institutions,Financial Institutions +432282,Financial Institutions,Financial Institutions +430724,Financial Institutions,Financial Institutions +430722,Financial Institutions,Financial Institutions +429198,Financial Institutions,Financial Institutions +429112,Financial Institutions,Financial Institutions +429109,Financial Institutions,Financial Institutions +429108,Financial Institutions,Financial Institutions +429106,Financial Institutions,Financial Institutions +429104,Financial Institutions,Financial Institutions +429102,Financial Institutions,Financial Institutions +429101,Financial Institutions,Financial Institutions +429100,Financial Institutions,Financial Institutions +463858,Justice and Law Enforcement,Justice and Law Enforcement +461739,Justice and Law Enforcement,Justice and Law Enforcement +162846,Justice and Law Enforcement,Justice and Law Enforcement +151889,Justice and Law Enforcement,Justice and Law Enforcement +296717,Justice and Law Enforcement,Justice and Law Enforcement +273454,Justice and Law Enforcement,Justice and Law Enforcement +435704,Justice and Law Enforcement,Justice and Law Enforcement +435693,Justice and Law Enforcement,Justice and Law Enforcement +429112,Justice and Law Enforcement,Justice and Law Enforcement +429104,Justice and Law Enforcement,Justice and Law Enforcement +411851,Justice and Law Enforcement,Justice and Law Enforcement +406097,Justice and Law Enforcement,Justice and Law Enforcement +405300,Justice and Law Enforcement,Justice and Law Enforcement +405296,Justice and Law Enforcement,Justice and Law Enforcement +403009,Justice and Law Enforcement,Justice and Law Enforcement +543264,Justice and Law Enforcement,Justice and Law Enforcement +536971,Justice and Law Enforcement,Justice and Law Enforcement +515776,Justice and Law Enforcement,Justice and Law Enforcement +515220,Justice and Law Enforcement,Justice and Law Enforcement +510836,Justice and Law Enforcement,Justice and Law Enforcement +491282,Justice and Law Enforcement,Justice and Law Enforcement +491269,Justice and Law Enforcement,Justice and Law Enforcement +491249,Justice and Law Enforcement,Justice and Law Enforcement +355356,International Relations,International Relations +355354,International Relations,International Relations +353177,International Relations,International Relations +353174,International Relations,International Relations +353173,International Relations,International Relations +353171,International Relations,International Relations +353170,International Relations,International Relations +353169,International Relations,International Relations +353168,International Relations,International Relations +325669,International Relations,International Relations +355369,International Relations,International Relations +355366,International Relations,International Relations +355364,International Relations,International Relations +355362,International Relations,International Relations +353168,International Trade,International Trade +325669,International Trade,International Trade +359082,International Trade,International Trade +355369,International Trade,International Trade +355366,International Trade,International Trade +355364,International Trade,International Trade +355362,International Trade,International Trade +355359,International Trade,International Trade +355356,International Trade,International Trade +355354,International Trade,International Trade +353177,International Trade,International Trade +353174,International Trade,International Trade +353173,International Trade,International Trade +353171,International Trade,International Trade +353170,International Trade,International Trade +96677,Agriculture,Agriculture +88400,Agriculture,Agriculture +104797,Agriculture,Agriculture +88400,Energy,Energy +112874,Energy,Energy +104798,Energy,Energy +104794,Energy,Energy +101582,Energy,Energy +101579,Energy,Energy +96733,Energy,Energy +96730,Energy,Energy +96679,Energy,Energy +96678,Energy,Energy +96677,Energy,Energy +96676,Energy,Energy +96675,Energy,Energy +96674,Energy,Energy +88636,Energy,Energy +88635,Energy,Energy +148104,Energy,Energy +145238,Energy,Energy +144035,Energy,Energy +128884,Energy,Energy +88636,Environment,Environment +144035,Environment,Environment +88635,Environment,Environment +88634,Environment,Environment +88400,Environment,Environment +128884,Environment,Environment +112874,Environment,Environment +104795,Environment,Environment +101582,Environment,Environment +101579,Environment,Environment +96733,Environment,Environment +96730,Environment,Environment +96679,Environment,Environment +96678,Environment,Environment +96677,Environment,Environment +96676,Environment,Environment +96675,Environment,Environment +112874,Transportation,Transportation +429004,Education,Education +538268,Education,Education +125073,Education,Education +111174,Education,Education +91334,Education,Education +158237,Education,Education +158235,Education,Education +323955,Education,Education +323951,Education,Education +275550,Education,Education +261490,Education,Education +246389,Education,Education +246372,Education,Education +246371,Education,Education +238850,Education,Education +229031,Education,Education +229029,Education,Education +196365,Education,Education +195808,Education,Education +175738,Education,Education +175737,Education,Education +175736,Education,Education +175735,Education,Education +170129,Education,Education +170128,Education,Education +418406,Education,Education +418405,Education,Education +349785,Education,Education +349717,Education,Education +338995,Education,Education +335328,Education,Education +335315,Education,Education +335312,Education,Education +331178,Education,Education +523149,Education,Education +517279,Education,Education +517277,Education,Education +517273,Education,Education +495415,Education,Education +492410,Education,Education +492409,Education,Education +492408,Education,Education +492406,Education,Education +492404,Education,Education +488513,Education,Education +480580,Education,Education +480579,Education,Education +468623,Education,Education +453822,Education,Education +447178,Education,Education +447177,Education,Education +444778,Education,Education +444777,Education,Education +441625,Education,Education +441624,Education,Education +441622,Education,Education +438966,Education,Education +436146,Education,Education +436145,Education,Education +433256,Education,Education +431195,Education,Education +431191,Education,Education +431189,Education,Education +429007,Education,Education +339042,Environment,Environment +339040,Environment,Environment +94476,Environment,Environment +92414,Environment,Environment +91735,Environment,Environment +91714,Environment,Environment +157777,Environment,Environment +157775,Environment,Environment +139614,Environment,Environment +139595,Environment,Environment +193738,Environment,Environment +193734,Environment,Environment +193725,Environment,Environment +193709,Environment,Environment +193252,Environment,Environment +193247,Environment,Environment +161234,Environment,Environment +161233,Environment,Environment +161232,Environment,Environment +161231,Environment,Environment +161229,Environment,Environment +224899,Environment,Environment +224870,Environment,Environment +224867,Environment,Environment +407260,Environment,Environment +407257,Environment,Environment +407256,Environment,Environment +407255,Environment,Environment +407253,Environment,Environment +407252,Environment,Environment +339044,Environment,Environment +224870,International Trade,International Trade +224867,International Trade,International Trade +354542,International Trade,International Trade +354541,International Trade,International Trade +354540,International Trade,International Trade +224870,Mining,Mining +224867,Mining,Mining +92414,Mining,Mining +91735,Mining,Mining +91714,Mining,Mining +94476,Mining,Mining +161234,Mining,Mining +161233,Mining,Mining +161232,Mining,Mining +161231,Mining,Mining +161229,Mining,Mining +160479,Mining,Mining +160478,Mining,Mining +160477,Mining,Mining +157777,Mining,Mining +157775,Mining,Mining +139614,Mining,Mining +139595,Mining,Mining +193738,Mining,Mining +193734,Mining,Mining +193725,Mining,Mining +193709,Mining,Mining +193252,Mining,Mining +193247,Mining,Mining +169965,Mining,Mining +407264,Mining,Mining +407263,Mining,Mining +407262,Mining,Mining +407250,Mining,Mining +354542,Mining,Mining +354541,Mining,Mining +354540,Mining,Mining +339044,Mining,Mining +339043,Mining,Mining +339042,Mining,Mining +339040,Mining,Mining +293389,Mining,Mining +272087,Mining,Mining +268149,Mining,Mining +263110,Mining,Mining +260489,Mining,Mining +246510,Mining,Mining +242869,Mining,Mining +224899,Mining,Mining +224898,Mining,Mining +157777,Taxation and Finance,Taxation and Finance +157775,Taxation and Finance,Taxation and Finance +94476,Taxation and Finance,Taxation and Finance +92414,Taxation and Finance,Taxation and Finance +91735,Taxation and Finance,Taxation and Finance +91714,Taxation and Finance,Taxation and Finance +161234,Taxation and Finance,Taxation and Finance +161233,Taxation and Finance,Taxation and Finance +161232,Taxation and Finance,Taxation and Finance +161231,Taxation and Finance,Taxation and Finance +522441,Education,Education +522439,Education,Education +129214,Education,Education +128794,Education,Education +159916,Education,Education +159909,Education,Education +159907,Education,Education +159853,Education,Education +159851,Education,Education +159835,Education,Education +157149,Education,Education +129234,Education,Education +129215,Education,Education +194532,Education,Education +194531,Education,Education +194529,Education,Education +194528,Education,Education +194526,Education,Education +194524,Education,Education +194505,Education,Education +194484,Education,Education +194464,Education,Education +194444,Education,Education +194424,Education,Education +194405,Education,Education +194404,Education,Education +194384,Education,Education +194364,Education,Education +194344,Education,Education +194324,Education,Education +194304,Education,Education +194284,Education,Education +194264,Education,Education +194244,Education,Education +194226,Education,Education +194225,Education,Education +194224,Education,Education +194206,Education,Education +194205,Education,Education +194204,Education,Education +194184,Education,Education +194165,Education,Education +194164,Education,Education +194144,Education,Education +194125,Education,Education +194124,Education,Education +194104,Education,Education +194084,Education,Education +194067,Education,Education +194066,Education,Education +194065,Education,Education +194064,Education,Education +194045,Education,Education +194044,Education,Education +341180,Education,Education +341176,Education,Education +341174,Education,Education +194604,Education,Education +194603,Education,Education +194602,Education,Education +194601,Education,Education +194600,Education,Education +194599,Education,Education +194598,Education,Education +194597,Education,Education +194596,Education,Education +194595,Education,Education +194594,Education,Education +194593,Education,Education +194592,Education,Education +194591,Education,Education +194590,Education,Education +194589,Education,Education +194588,Education,Education +194587,Education,Education +194586,Education,Education +194585,Education,Education +194584,Education,Education +194565,Education,Education +194564,Education,Education +194554,Education,Education +194552,Education,Education +194550,Education,Education +194548,Education,Education +194547,Education,Education +194545,Education,Education +194544,Education,Education +194538,Education,Education +194536,Education,Education +194534,Education,Education +372267,Education,Education +372266,Education,Education +372265,Education,Education +372264,Education,Education +372263,Education,Education +372261,Education,Education +372260,Education,Education +372259,Education,Education +372258,Education,Education +372257,Education,Education +372217,Education,Education +372216,Education,Education +372215,Education,Education +372214,Education,Education +372211,Education,Education +372210,Education,Education +372208,Education,Education +372207,Education,Education +372205,Education,Education +372203,Education,Education +372202,Education,Education +372200,Education,Education +372197,Education,Education +372194,Education,Education +372192,Education,Education +372191,Education,Education +372190,Education,Education +372188,Education,Education +372185,Education,Education +372184,Education,Education +372183,Education,Education +372182,Education,Education +372181,Education,Education +372179,Education,Education +372173,Education,Education +372171,Education,Education +372170,Education,Education +372168,Education,Education +372167,Education,Education +372165,Education,Education +372164,Education,Education +372162,Education,Education +372159,Education,Education +372155,Education,Education +372153,Education,Education +372152,Education,Education +372149,Education,Education +372147,Education,Education +372143,Education,Education +372142,Education,Education +372141,Education,Education +372139,Education,Education +372136,Education,Education +372135,Education,Education +372134,Education,Education +372133,Education,Education +372131,Education,Education +372129,Education,Education +372127,Education,Education +372126,Education,Education +372125,Education,Education +372124,Education,Education +372122,Education,Education +372119,Education,Education +372118,Education,Education +372117,Education,Education +372116,Education,Education +372112,Education,Education +372110,Education,Education +372105,Education,Education +372102,Education,Education +372099,Education,Education +372096,Education,Education +372095,Education,Education +372093,Education,Education +372090,Education,Education +372089,Education,Education +372085,Education,Education +372082,Education,Education +372080,Education,Education +372079,Education,Education +372077,Education,Education +372076,Education,Education +372072,Education,Education +372064,Education,Education +372061,Education,Education +372055,Education,Education +372051,Education,Education +372046,Education,Education +372045,Education,Education +372040,Education,Education +372039,Education,Education +372038,Education,Education +371998,Education,Education +371994,Education,Education +371988,Education,Education +371986,Education,Education +371984,Education,Education +371983,Education,Education +371981,Education,Education +371978,Education,Education +371977,Education,Education +371976,Education,Education +371967,Education,Education +371959,Education,Education +371957,Education,Education +371955,Education,Education +371952,Education,Education +371948,Education,Education +371946,Education,Education +371944,Education,Education +371943,Education,Education +371942,Education,Education +371934,Education,Education +371931,Education,Education +371866,Education,Education +371864,Education,Education +371844,Education,Education +371842,Education,Education +371824,Education,Education +371822,Education,Education +371820,Education,Education +371819,Education,Education +371817,Education,Education +371816,Education,Education +371810,Education,Education +371806,Education,Education +371804,Education,Education +371802,Education,Education +371799,Education,Education +371796,Education,Education +371792,Education,Education +371790,Education,Education +371787,Education,Education +371786,Education,Education +371767,Education,Education +371766,Education,Education +354716,Education,Education +352380,Education,Education +341712,Education,Education +341709,Education,Education +341684,Education,Education +341642,Education,Education +341640,Education,Education +341612,Education,Education +341413,Education,Education +341412,Education,Education +341411,Education,Education +341410,Education,Education +341409,Education,Education +341408,Education,Education +341407,Education,Education +341406,Education,Education +341405,Education,Education +341404,Education,Education +341403,Education,Education +341402,Education,Education +341401,Education,Education +341400,Education,Education +341399,Education,Education +341394,Education,Education +341391,Education,Education +341389,Education,Education +341387,Education,Education +341385,Education,Education +341382,Education,Education +341379,Education,Education +341377,Education,Education +341374,Education,Education +341372,Education,Education +341370,Education,Education +341368,Education,Education +341367,Education,Education +341364,Education,Education +341359,Education,Education +341356,Education,Education +341354,Education,Education +341353,Education,Education +341351,Education,Education +341350,Education,Education +341346,Education,Education +341345,Education,Education +341343,Education,Education +341340,Education,Education +341338,Education,Education +341336,Education,Education +341334,Education,Education +341332,Education,Education +341331,Education,Education +341330,Education,Education +341329,Education,Education +341327,Education,Education +341326,Education,Education +341324,Education,Education +341322,Education,Education +341321,Education,Education +341318,Education,Education +341314,Education,Education +341312,Education,Education +341311,Education,Education +341310,Education,Education +341307,Education,Education +341306,Education,Education +341304,Education,Education +341303,Education,Education +341302,Education,Education +341301,Education,Education +341300,Education,Education +341299,Education,Education +341298,Education,Education +341297,Education,Education +341296,Education,Education +341295,Education,Education +341294,Education,Education +341293,Education,Education +341292,Education,Education +341290,Education,Education +341289,Education,Education +341288,Education,Education +341286,Education,Education +341285,Education,Education +341284,Education,Education +341283,Education,Education +341282,Education,Education +341281,Education,Education +341280,Education,Education +341278,Education,Education +341276,Education,Education +341274,Education,Education +341271,Education,Education +341269,Education,Education +341266,Education,Education +341261,Education,Education +341244,Education,Education +341242,Education,Education +341238,Education,Education +341236,Education,Education +341232,Education,Education +341230,Education,Education +341209,Education,Education +341207,Education,Education +341204,Education,Education +341202,Education,Education +341197,Education,Education +341195,Education,Education +341194,Education,Education +341191,Education,Education +341189,Education,Education +341184,Education,Education +341183,Education,Education +341182,Education,Education +509199,Education,Education +506008,Education,Education +499390,Education,Education +499388,Education,Education +499387,Education,Education +499385,Education,Education +499384,Education,Education +499382,Education,Education +499381,Education,Education +499380,Education,Education +499378,Education,Education +499377,Education,Education +499374,Education,Education +499361,Education,Education +499359,Education,Education +499355,Education,Education +499341,Education,Education +499334,Education,Education +499329,Education,Education +499327,Education,Education +499321,Education,Education +492250,Education,Education +492249,Education,Education +492248,Education,Education +492247,Education,Education +492246,Education,Education +492245,Education,Education +492244,Education,Education +462992,Education,Education +459120,Education,Education +449505,Education,Education +449502,Education,Education +446889,Education,Education +446887,Education,Education +446886,Education,Education +446885,Education,Education +446884,Education,Education +446883,Education,Education +446882,Education,Education +446881,Education,Education +446880,Education,Education +446879,Education,Education +446878,Education,Education +446876,Education,Education +446875,Education,Education +446874,Education,Education +446871,Education,Education +446870,Education,Education +446868,Education,Education +446865,Education,Education +446864,Education,Education +446863,Education,Education +446861,Education,Education +446860,Education,Education +446858,Education,Education +446856,Education,Education +446855,Education,Education +446854,Education,Education +446853,Education,Education +446852,Education,Education +446850,Education,Education +446849,Education,Education +446848,Education,Education +446847,Education,Education +446846,Education,Education +446844,Education,Education +446843,Education,Education +446842,Education,Education +446840,Education,Education +446838,Education,Education +446837,Education,Education +446836,Education,Education +446835,Education,Education +446834,Education,Education +446833,Education,Education +446832,Education,Education +446830,Education,Education +446829,Education,Education +446828,Education,Education +446827,Education,Education +446826,Education,Education +446825,Education,Education +446823,Education,Education +446819,Education,Education +446817,Education,Education +446814,Education,Education +446813,Education,Education +446809,Education,Education +446808,Education,Education +446806,Education,Education +446803,Education,Education +446798,Education,Education +446797,Education,Education +446796,Education,Education +446794,Education,Education +446792,Education,Education +446790,Education,Education +446788,Education,Education +446787,Education,Education +446786,Education,Education +446785,Education,Education +424801,Education,Education +424800,Education,Education +424799,Education,Education +424667,Education,Education +424665,Education,Education +424662,Education,Education +422057,Education,Education +422056,Education,Education +421910,Education,Education +421908,Education,Education +421904,Education,Education +421597,Education,Education +421596,Education,Education +421595,Education,Education +421591,Education,Education +421590,Education,Education +421589,Education,Education +421587,Education,Education +421586,Education,Education +421555,Education,Education +421554,Education,Education +421552,Education,Education +421550,Education,Education +421547,Education,Education +421545,Education,Education +421537,Education,Education +421502,Education,Education +421456,Education,Education +421453,Education,Education +421439,Education,Education +421438,Education,Education +421419,Education,Education +421411,Education,Education +421408,Education,Education +421407,Education,Education +421404,Education,Education +421402,Education,Education +421399,Education,Education +421397,Education,Education +421396,Education,Education +421392,Education,Education +421077,Education,Education +421070,Education,Education +421069,Education,Education +421067,Education,Education +421065,Education,Education +421064,Education,Education +421063,Education,Education +421062,Education,Education +421061,Education,Education +421060,Education,Education +421058,Education,Education +421057,Education,Education +421056,Education,Education +421055,Education,Education +421054,Education,Education +421044,Education,Education +421043,Education,Education +421042,Education,Education +421041,Education,Education +421039,Education,Education +421037,Education,Education +421034,Education,Education +421033,Education,Education +421032,Education,Education +421031,Education,Education +421030,Education,Education +421029,Education,Education +421028,Education,Education +421027,Education,Education +421025,Education,Education +421024,Education,Education +421023,Education,Education +421022,Education,Education +421021,Education,Education +421020,Education,Education +420920,Education,Education +420918,Education,Education +420917,Education,Education +420916,Education,Education +420913,Education,Education +420909,Education,Education +420907,Education,Education +420906,Education,Education +420905,Education,Education +420904,Education,Education +420903,Education,Education +420901,Education,Education +420899,Education,Education +420898,Education,Education +420897,Education,Education +420896,Education,Education +420895,Education,Education +420894,Education,Education +420893,Education,Education +420892,Education,Education +420891,Education,Education +420887,Education,Education +420879,Education,Education +420878,Education,Education +420877,Education,Education +420874,Education,Education +420869,Education,Education +420868,Education,Education +420867,Education,Education +418359,Education,Education +416888,Education,Education +414872,Education,Education +405542,Education,Education +403396,Education,Education +397124,Education,Education +397123,Education,Education +397120,Education,Education +397118,Education,Education +397115,Education,Education +397112,Education,Education +397111,Education,Education +397110,Education,Education +397109,Education,Education +397108,Education,Education +397107,Education,Education +397106,Education,Education +397089,Education,Education +397087,Education,Education +397081,Education,Education +397079,Education,Education +397078,Education,Education +397076,Education,Education +397073,Education,Education +397072,Education,Education +397071,Education,Education +397070,Education,Education +397069,Education,Education +397068,Education,Education +397067,Education,Education +397066,Education,Education +397065,Education,Education +397064,Education,Education +397062,Education,Education +397058,Education,Education +397052,Education,Education +397034,Education,Education +397032,Education,Education +397028,Education,Education +397026,Education,Education +397021,Education,Education +397020,Education,Education +397018,Education,Education +397011,Education,Education +397007,Education,Education +397005,Education,Education +397004,Education,Education +397001,Education,Education +397000,Education,Education +396998,Education,Education +396997,Education,Education +396996,Education,Education +396995,Education,Education +396994,Education,Education +396990,Education,Education +396988,Education,Education +396984,Education,Education +396983,Education,Education +396980,Education,Education +396963,Education,Education +396956,Education,Education +396952,Education,Education +396947,Education,Education +396945,Education,Education +396937,Education,Education +396935,Education,Education +396933,Education,Education +396917,Education,Education +396912,Education,Education +396885,Education,Education +396881,Education,Education +396872,Education,Education +396847,Education,Education +396839,Education,Education +396823,Education,Education +396819,Education,Education +396810,Education,Education +396796,Education,Education +396738,Education,Education +396257,Education,Education +396255,Education,Education +396253,Education,Education +396250,Education,Education +396247,Education,Education +396244,Education,Education +396223,Education,Education +396221,Education,Education +396218,Education,Education +396216,Education,Education +396215,Education,Education +396214,Education,Education +396213,Education,Education +396212,Education,Education +396207,Education,Education +396204,Education,Education +395737,Education,Education +395736,Education,Education +395735,Education,Education +395733,Education,Education +395732,Education,Education +395730,Education,Education +395725,Education,Education +395720,Education,Education +395719,Education,Education +395715,Education,Education +395713,Education,Education +395708,Education,Education +395701,Education,Education +395620,Education,Education +395619,Education,Education +395618,Education,Education +395617,Education,Education +395616,Education,Education +395614,Education,Education +395611,Education,Education +395610,Education,Education +395609,Education,Education +395608,Education,Education +395603,Education,Education +395598,Education,Education +395597,Education,Education +395594,Education,Education +395534,Education,Education +395533,Education,Education +395532,Education,Education +395531,Education,Education +395527,Education,Education +395526,Education,Education +395524,Education,Education +395523,Education,Education +395520,Education,Education +395519,Education,Education +395518,Education,Education +395504,Education,Education +395419,Education,Education +393476,Education,Education +393250,Education,Education +393249,Education,Education +393247,Education,Education +393246,Education,Education +393245,Education,Education +393243,Education,Education +393242,Education,Education +393241,Education,Education +393240,Education,Education +393238,Education,Education +393237,Education,Education +372312,Education,Education +372311,Education,Education +372310,Education,Education +372309,Education,Education +372308,Education,Education +372307,Education,Education +372305,Education,Education +372304,Education,Education +372303,Education,Education +372302,Education,Education +372299,Education,Education +372298,Education,Education +372297,Education,Education +372296,Education,Education +372295,Education,Education +372294,Education,Education +372293,Education,Education +372292,Education,Education +372291,Education,Education +372290,Education,Education +372289,Education,Education +372288,Education,Education +372287,Education,Education +372286,Education,Education +372285,Education,Education +372284,Education,Education +372283,Education,Education +372282,Education,Education +372280,Education,Education +372279,Education,Education +372278,Education,Education +372277,Education,Education +372276,Education,Education +372275,Education,Education +372274,Education,Education +372273,Education,Education +372272,Education,Education +372271,Education,Education +372270,Education,Education +372269,Education,Education +372268,Education,Education +539273,Education,Education +539272,Education,Education +533237,Education,Education +533234,Education,Education +533233,Education,Education +533131,Education,Education +531459,Education,Education +529311,Education,Education +529307,Education,Education +529297,Education,Education +529274,Education,Education +529258,Education,Education +529247,Education,Education +529245,Education,Education +529234,Education,Education +529228,Education,Education +529222,Education,Education +529212,Education,Education +529207,Education,Education +526456,Education,Education +526455,Education,Education +526447,Education,Education +526429,Education,Education +526414,Education,Education +526398,Education,Education +526391,Education,Education +525864,Education,Education +525856,Education,Education +525844,Education,Education +525835,Education,Education +525828,Education,Education +525824,Education,Education +525804,Education,Education +525796,Education,Education +525793,Education,Education +525789,Education,Education +525777,Education,Education +525758,Education,Education +525660,Education,Education +393237,Employment and Training,Employment and Training +392934,Employment and Training,Employment and Training +194044,Employment and Training,Employment and Training +159923,Employment and Training,Employment and Training +157149,Employment and Training,Employment and Training +194597,Employment and Training,Employment and Training +194596,Employment and Training,Employment and Training +194595,Employment and Training,Employment and Training +194594,Employment and Training,Employment and Training +194593,Employment and Training,Employment and Training +194592,Employment and Training,Employment and Training +194591,Employment and Training,Employment and Training +194590,Employment and Training,Employment and Training +194589,Employment and Training,Employment and Training +194588,Employment and Training,Employment and Training +194587,Employment and Training,Employment and Training +194586,Employment and Training,Employment and Training +194585,Employment and Training,Employment and Training +194584,Employment and Training,Employment and Training +194565,Employment and Training,Employment and Training +194564,Employment and Training,Employment and Training +194554,Employment and Training,Employment and Training +194552,Employment and Training,Employment and Training +194550,Employment and Training,Employment and Training +194548,Employment and Training,Employment and Training +194547,Employment and Training,Employment and Training +194545,Employment and Training,Employment and Training +194544,Employment and Training,Employment and Training +194538,Employment and Training,Employment and Training +194536,Employment and Training,Employment and Training +194534,Employment and Training,Employment and Training +194532,Employment and Training,Employment and Training +194531,Employment and Training,Employment and Training +194529,Employment and Training,Employment and Training +194528,Employment and Training,Employment and Training +194526,Employment and Training,Employment and Training +194524,Employment and Training,Employment and Training +194505,Employment and Training,Employment and Training +194484,Employment and Training,Employment and Training +194464,Employment and Training,Employment and Training +194444,Employment and Training,Employment and Training +194424,Employment and Training,Employment and Training +194405,Employment and Training,Employment and Training +194404,Employment and Training,Employment and Training +194384,Employment and Training,Employment and Training +194364,Employment and Training,Employment and Training +194344,Employment and Training,Employment and Training +194324,Employment and Training,Employment and Training +194304,Employment and Training,Employment and Training +194284,Employment and Training,Employment and Training +194264,Employment and Training,Employment and Training +194244,Employment and Training,Employment and Training +194226,Employment and Training,Employment and Training +194225,Employment and Training,Employment and Training +194224,Employment and Training,Employment and Training +194206,Employment and Training,Employment and Training +194205,Employment and Training,Employment and Training +194204,Employment and Training,Employment and Training +194184,Employment and Training,Employment and Training +194165,Employment and Training,Employment and Training +194164,Employment and Training,Employment and Training +194144,Employment and Training,Employment and Training +194125,Employment and Training,Employment and Training +194124,Employment and Training,Employment and Training +194104,Employment and Training,Employment and Training +194084,Employment and Training,Employment and Training +194067,Employment and Training,Employment and Training +194066,Employment and Training,Employment and Training +194065,Employment and Training,Employment and Training +194064,Employment and Training,Employment and Training +194045,Employment and Training,Employment and Training +341324,Employment and Training,Employment and Training +341322,Employment and Training,Employment and Training +341321,Employment and Training,Employment and Training +341318,Employment and Training,Employment and Training +341314,Employment and Training,Employment and Training +341312,Employment and Training,Employment and Training +341311,Employment and Training,Employment and Training +341310,Employment and Training,Employment and Training +341307,Employment and Training,Employment and Training +341306,Employment and Training,Employment and Training +341304,Employment and Training,Employment and Training +341303,Employment and Training,Employment and Training +341302,Employment and Training,Employment and Training +341301,Employment and Training,Employment and Training +341300,Employment and Training,Employment and Training +341299,Employment and Training,Employment and Training +341298,Employment and Training,Employment and Training +341297,Employment and Training,Employment and Training +341296,Employment and Training,Employment and Training +341295,Employment and Training,Employment and Training +341294,Employment and Training,Employment and Training +341293,Employment and Training,Employment and Training +341292,Employment and Training,Employment and Training +341290,Employment and Training,Employment and Training +341289,Employment and Training,Employment and Training +341288,Employment and Training,Employment and Training +341286,Employment and Training,Employment and Training +341285,Employment and Training,Employment and Training +341284,Employment and Training,Employment and Training +341283,Employment and Training,Employment and Training +341282,Employment and Training,Employment and Training +341281,Employment and Training,Employment and Training +341280,Employment and Training,Employment and Training +341278,Employment and Training,Employment and Training +341276,Employment and Training,Employment and Training +341274,Employment and Training,Employment and Training +341271,Employment and Training,Employment and Training +341269,Employment and Training,Employment and Training +341266,Employment and Training,Employment and Training +341261,Employment and Training,Employment and Training +341244,Employment and Training,Employment and Training +341242,Employment and Training,Employment and Training +341238,Employment and Training,Employment and Training +341236,Employment and Training,Employment and Training +341232,Employment and Training,Employment and Training +341230,Employment and Training,Employment and Training +341209,Employment and Training,Employment and Training +341207,Employment and Training,Employment and Training +341204,Employment and Training,Employment and Training +341202,Employment and Training,Employment and Training +341197,Employment and Training,Employment and Training +341195,Employment and Training,Employment and Training +341194,Employment and Training,Employment and Training +341191,Employment and Training,Employment and Training +341189,Employment and Training,Employment and Training +341184,Employment and Training,Employment and Training +341183,Employment and Training,Employment and Training +341182,Employment and Training,Employment and Training +341174,Employment and Training,Employment and Training +194604,Employment and Training,Employment and Training +194603,Employment and Training,Employment and Training +194602,Employment and Training,Employment and Training +194601,Employment and Training,Employment and Training +194600,Employment and Training,Employment and Training +194599,Employment and Training,Employment and Training +194598,Employment and Training,Employment and Training +392623,Employment and Training,Employment and Training +372312,Employment and Training,Employment and Training +372311,Employment and Training,Employment and Training +372310,Employment and Training,Employment and Training +372309,Employment and Training,Employment and Training +372308,Employment and Training,Employment and Training +372307,Employment and Training,Employment and Training +372305,Employment and Training,Employment and Training +372304,Employment and Training,Employment and Training +372303,Employment and Training,Employment and Training +372302,Employment and Training,Employment and Training +372299,Employment and Training,Employment and Training +372298,Employment and Training,Employment and Training +372297,Employment and Training,Employment and Training +372296,Employment and Training,Employment and Training +372295,Employment and Training,Employment and Training +372294,Employment and Training,Employment and Training +372293,Employment and Training,Employment and Training +372292,Employment and Training,Employment and Training +372291,Employment and Training,Employment and Training +372290,Employment and Training,Employment and Training +372289,Employment and Training,Employment and Training +372288,Employment and Training,Employment and Training +372287,Employment and Training,Employment and Training +372286,Employment and Training,Employment and Training +372285,Employment and Training,Employment and Training +372284,Employment and Training,Employment and Training +372283,Employment and Training,Employment and Training +372282,Employment and Training,Employment and Training +372280,Employment and Training,Employment and Training +372279,Employment and Training,Employment and Training +372278,Employment and Training,Employment and Training +372277,Employment and Training,Employment and Training +372276,Employment and Training,Employment and Training +372275,Employment and Training,Employment and Training +372274,Employment and Training,Employment and Training +372273,Employment and Training,Employment and Training +372272,Employment and Training,Employment and Training +372271,Employment and Training,Employment and Training +372270,Employment and Training,Employment and Training +372269,Employment and Training,Employment and Training +372268,Employment and Training,Employment and Training +372267,Employment and Training,Employment and Training +372266,Employment and Training,Employment and Training +372265,Employment and Training,Employment and Training +372264,Employment and Training,Employment and Training +372263,Employment and Training,Employment and Training +372261,Employment and Training,Employment and Training +372260,Employment and Training,Employment and Training +372259,Employment and Training,Employment and Training +372258,Employment and Training,Employment and Training +372257,Employment and Training,Employment and Training +372217,Employment and Training,Employment and Training +372216,Employment and Training,Employment and Training +372215,Employment and Training,Employment and Training +372214,Employment and Training,Employment and Training +372211,Employment and Training,Employment and Training +372210,Employment and Training,Employment and Training +372208,Employment and Training,Employment and Training +372207,Employment and Training,Employment and Training +372205,Employment and Training,Employment and Training +372203,Employment and Training,Employment and Training +372202,Employment and Training,Employment and Training +372200,Employment and Training,Employment and Training +372197,Employment and Training,Employment and Training +372194,Employment and Training,Employment and Training +372192,Employment and Training,Employment and Training +372191,Employment and Training,Employment and Training +372190,Employment and Training,Employment and Training +372188,Employment and Training,Employment and Training +372185,Employment and Training,Employment and Training +372184,Employment and Training,Employment and Training +372183,Employment and Training,Employment and Training +372182,Employment and Training,Employment and Training +372181,Employment and Training,Employment and Training +372179,Employment and Training,Employment and Training +372173,Employment and Training,Employment and Training +372171,Employment and Training,Employment and Training +372170,Employment and Training,Employment and Training +372168,Employment and Training,Employment and Training +372167,Employment and Training,Employment and Training +372165,Employment and Training,Employment and Training +372164,Employment and Training,Employment and Training +372162,Employment and Training,Employment and Training +372159,Employment and Training,Employment and Training +372155,Employment and Training,Employment and Training +372153,Employment and Training,Employment and Training +372152,Employment and Training,Employment and Training +372149,Employment and Training,Employment and Training +372147,Employment and Training,Employment and Training +372143,Employment and Training,Employment and Training +372142,Employment and Training,Employment and Training +372141,Employment and Training,Employment and Training +372139,Employment and Training,Employment and Training +372136,Employment and Training,Employment and Training +372135,Employment and Training,Employment and Training +372134,Employment and Training,Employment and Training +372133,Employment and Training,Employment and Training +372131,Employment and Training,Employment and Training +372129,Employment and Training,Employment and Training +372127,Employment and Training,Employment and Training +372126,Employment and Training,Employment and Training +372125,Employment and Training,Employment and Training +372124,Employment and Training,Employment and Training +372122,Employment and Training,Employment and Training +372119,Employment and Training,Employment and Training +372118,Employment and Training,Employment and Training +372117,Employment and Training,Employment and Training +372116,Employment and Training,Employment and Training +372112,Employment and Training,Employment and Training +372110,Employment and Training,Employment and Training +372105,Employment and Training,Employment and Training +372102,Employment and Training,Employment and Training +372099,Employment and Training,Employment and Training +372096,Employment and Training,Employment and Training +372095,Employment and Training,Employment and Training +372093,Employment and Training,Employment and Training +372090,Employment and Training,Employment and Training +372089,Employment and Training,Employment and Training +372085,Employment and Training,Employment and Training +372082,Employment and Training,Employment and Training +372080,Employment and Training,Employment and Training +372079,Employment and Training,Employment and Training +372077,Employment and Training,Employment and Training +372076,Employment and Training,Employment and Training +372072,Employment and Training,Employment and Training +372064,Employment and Training,Employment and Training +372061,Employment and Training,Employment and Training +372055,Employment and Training,Employment and Training +372051,Employment and Training,Employment and Training +372046,Employment and Training,Employment and Training +372045,Employment and Training,Employment and Training +372040,Employment and Training,Employment and Training +372039,Employment and Training,Employment and Training +372038,Employment and Training,Employment and Training +371998,Employment and Training,Employment and Training +371994,Employment and Training,Employment and Training +371988,Employment and Training,Employment and Training +371986,Employment and Training,Employment and Training +371984,Employment and Training,Employment and Training +371983,Employment and Training,Employment and Training +371981,Employment and Training,Employment and Training +371978,Employment and Training,Employment and Training +371977,Employment and Training,Employment and Training +371976,Employment and Training,Employment and Training +371967,Employment and Training,Employment and Training +371959,Employment and Training,Employment and Training +371957,Employment and Training,Employment and Training +371955,Employment and Training,Employment and Training +371952,Employment and Training,Employment and Training +371948,Employment and Training,Employment and Training +371946,Employment and Training,Employment and Training +371944,Employment and Training,Employment and Training +371943,Employment and Training,Employment and Training +371942,Employment and Training,Employment and Training +371934,Employment and Training,Employment and Training +371931,Employment and Training,Employment and Training +371866,Employment and Training,Employment and Training +371864,Employment and Training,Employment and Training +371844,Employment and Training,Employment and Training +371842,Employment and Training,Employment and Training +371824,Employment and Training,Employment and Training +371822,Employment and Training,Employment and Training +371820,Employment and Training,Employment and Training +371819,Employment and Training,Employment and Training +371817,Employment and Training,Employment and Training +371816,Employment and Training,Employment and Training +371810,Employment and Training,Employment and Training +371806,Employment and Training,Employment and Training +371804,Employment and Training,Employment and Training +371802,Employment and Training,Employment and Training +371799,Employment and Training,Employment and Training +371796,Employment and Training,Employment and Training +371792,Employment and Training,Employment and Training +371790,Employment and Training,Employment and Training +371787,Employment and Training,Employment and Training +371786,Employment and Training,Employment and Training +371767,Employment and Training,Employment and Training +371766,Employment and Training,Employment and Training +354716,Employment and Training,Employment and Training +341712,Employment and Training,Employment and Training +341709,Employment and Training,Employment and Training +341684,Employment and Training,Employment and Training +341642,Employment and Training,Employment and Training +341640,Employment and Training,Employment and Training +341612,Employment and Training,Employment and Training +341413,Employment and Training,Employment and Training +341412,Employment and Training,Employment and Training +341411,Employment and Training,Employment and Training +341410,Employment and Training,Employment and Training +341409,Employment and Training,Employment and Training +341408,Employment and Training,Employment and Training +341407,Employment and Training,Employment and Training +341406,Employment and Training,Employment and Training +341405,Employment and Training,Employment and Training +341404,Employment and Training,Employment and Training +341403,Employment and Training,Employment and Training +341402,Employment and Training,Employment and Training +341401,Employment and Training,Employment and Training +341400,Employment and Training,Employment and Training +341399,Employment and Training,Employment and Training +341394,Employment and Training,Employment and Training +341391,Employment and Training,Employment and Training +341389,Employment and Training,Employment and Training +341387,Employment and Training,Employment and Training +341385,Employment and Training,Employment and Training +341382,Employment and Training,Employment and Training +341379,Employment and Training,Employment and Training +341377,Employment and Training,Employment and Training +341374,Employment and Training,Employment and Training +341372,Employment and Training,Employment and Training +341370,Employment and Training,Employment and Training +341368,Employment and Training,Employment and Training +341367,Employment and Training,Employment and Training +341364,Employment and Training,Employment and Training +341359,Employment and Training,Employment and Training +341356,Employment and Training,Employment and Training +341354,Employment and Training,Employment and Training +341353,Employment and Training,Employment and Training +341351,Employment and Training,Employment and Training +341350,Employment and Training,Employment and Training +341346,Employment and Training,Employment and Training +341345,Employment and Training,Employment and Training +341343,Employment and Training,Employment and Training +341340,Employment and Training,Employment and Training +341338,Employment and Training,Employment and Training +341336,Employment and Training,Employment and Training +341334,Employment and Training,Employment and Training +341332,Employment and Training,Employment and Training +341331,Employment and Training,Employment and Training +341330,Employment and Training,Employment and Training +341329,Employment and Training,Employment and Training +341327,Employment and Training,Employment and Training +341326,Employment and Training,Employment and Training +533233,Employment and Training,Employment and Training +525758,Employment and Training,Employment and Training +499390,Employment and Training,Employment and Training +499388,Employment and Training,Employment and Training +499387,Employment and Training,Employment and Training +499385,Employment and Training,Employment and Training +499384,Employment and Training,Employment and Training +499382,Employment and Training,Employment and Training +499381,Employment and Training,Employment and Training +499380,Employment and Training,Employment and Training +499378,Employment and Training,Employment and Training +499377,Employment and Training,Employment and Training +499374,Employment and Training,Employment and Training +499361,Employment and Training,Employment and Training +492250,Employment and Training,Employment and Training +492248,Employment and Training,Employment and Training +492247,Employment and Training,Employment and Training +492246,Employment and Training,Employment and Training +424801,Employment and Training,Employment and Training +424800,Employment and Training,Employment and Training +424799,Employment and Training,Employment and Training +424667,Employment and Training,Employment and Training +424665,Employment and Training,Employment and Training +424662,Employment and Training,Employment and Training +424651,Employment and Training,Employment and Training +422057,Employment and Training,Employment and Training +422056,Employment and Training,Employment and Training +421910,Employment and Training,Employment and Training +421908,Employment and Training,Employment and Training +421904,Employment and Training,Employment and Training +421597,Employment and Training,Employment and Training +421596,Employment and Training,Employment and Training +421595,Employment and Training,Employment and Training +421591,Employment and Training,Employment and Training +421590,Employment and Training,Employment and Training +421589,Employment and Training,Employment and Training +421587,Employment and Training,Employment and Training +421586,Employment and Training,Employment and Training +421555,Employment and Training,Employment and Training +421554,Employment and Training,Employment and Training +421552,Employment and Training,Employment and Training +421550,Employment and Training,Employment and Training +421547,Employment and Training,Employment and Training +421545,Employment and Training,Employment and Training +421537,Employment and Training,Employment and Training +421502,Employment and Training,Employment and Training +421456,Employment and Training,Employment and Training +421453,Employment and Training,Employment and Training +421439,Employment and Training,Employment and Training +421438,Employment and Training,Employment and Training +421419,Employment and Training,Employment and Training +421411,Employment and Training,Employment and Training +421408,Employment and Training,Employment and Training +421407,Employment and Training,Employment and Training +421404,Employment and Training,Employment and Training +421402,Employment and Training,Employment and Training +421399,Employment and Training,Employment and Training +421397,Employment and Training,Employment and Training +421396,Employment and Training,Employment and Training +421392,Employment and Training,Employment and Training +421077,Employment and Training,Employment and Training +421070,Employment and Training,Employment and Training +421069,Employment and Training,Employment and Training +421067,Employment and Training,Employment and Training +421065,Employment and Training,Employment and Training +421064,Employment and Training,Employment and Training +421063,Employment and Training,Employment and Training +421062,Employment and Training,Employment and Training +421061,Employment and Training,Employment and Training +421060,Employment and Training,Employment and Training +421058,Employment and Training,Employment and Training +421057,Employment and Training,Employment and Training +421056,Employment and Training,Employment and Training +421055,Employment and Training,Employment and Training +421054,Employment and Training,Employment and Training +421044,Employment and Training,Employment and Training +421043,Employment and Training,Employment and Training +421042,Employment and Training,Employment and Training +421041,Employment and Training,Employment and Training +421039,Employment and Training,Employment and Training +421037,Employment and Training,Employment and Training +421034,Employment and Training,Employment and Training +421033,Employment and Training,Employment and Training +421032,Employment and Training,Employment and Training +421031,Employment and Training,Employment and Training +421030,Employment and Training,Employment and Training +421029,Employment and Training,Employment and Training +421028,Employment and Training,Employment and Training +421027,Employment and Training,Employment and Training +421025,Employment and Training,Employment and Training +421024,Employment and Training,Employment and Training +421023,Employment and Training,Employment and Training +421022,Employment and Training,Employment and Training +421021,Employment and Training,Employment and Training +421020,Employment and Training,Employment and Training +420920,Employment and Training,Employment and Training +420918,Employment and Training,Employment and Training +420917,Employment and Training,Employment and Training +420916,Employment and Training,Employment and Training +420913,Employment and Training,Employment and Training +420909,Employment and Training,Employment and Training +420907,Employment and Training,Employment and Training +420906,Employment and Training,Employment and Training +420905,Employment and Training,Employment and Training +420904,Employment and Training,Employment and Training +420903,Employment and Training,Employment and Training +420901,Employment and Training,Employment and Training +420899,Employment and Training,Employment and Training +420898,Employment and Training,Employment and Training +420897,Employment and Training,Employment and Training +420896,Employment and Training,Employment and Training +420895,Employment and Training,Employment and Training +420894,Employment and Training,Employment and Training +420893,Employment and Training,Employment and Training +420892,Employment and Training,Employment and Training +420891,Employment and Training,Employment and Training +420887,Employment and Training,Employment and Training +420879,Employment and Training,Employment and Training +420878,Employment and Training,Employment and Training +420877,Employment and Training,Employment and Training +420874,Employment and Training,Employment and Training +420869,Employment and Training,Employment and Training +420868,Employment and Training,Employment and Training +420867,Employment and Training,Employment and Training +397124,Employment and Training,Employment and Training +397123,Employment and Training,Employment and Training +397120,Employment and Training,Employment and Training +397118,Employment and Training,Employment and Training +397115,Employment and Training,Employment and Training +397112,Employment and Training,Employment and Training +397111,Employment and Training,Employment and Training +397110,Employment and Training,Employment and Training +397109,Employment and Training,Employment and Training +397108,Employment and Training,Employment and Training +397107,Employment and Training,Employment and Training +397106,Employment and Training,Employment and Training +397089,Employment and Training,Employment and Training +397087,Employment and Training,Employment and Training +397081,Employment and Training,Employment and Training +397079,Employment and Training,Employment and Training +397078,Employment and Training,Employment and Training +397076,Employment and Training,Employment and Training +397073,Employment and Training,Employment and Training +397072,Employment and Training,Employment and Training +397071,Employment and Training,Employment and Training +397070,Employment and Training,Employment and Training +397069,Employment and Training,Employment and Training +397068,Employment and Training,Employment and Training +397067,Employment and Training,Employment and Training +397066,Employment and Training,Employment and Training +397065,Employment and Training,Employment and Training +397064,Employment and Training,Employment and Training +397062,Employment and Training,Employment and Training +397058,Employment and Training,Employment and Training +397052,Employment and Training,Employment and Training +397034,Employment and Training,Employment and Training +397032,Employment and Training,Employment and Training +397028,Employment and Training,Employment and Training +397026,Employment and Training,Employment and Training +397021,Employment and Training,Employment and Training +397020,Employment and Training,Employment and Training +397018,Employment and Training,Employment and Training +397011,Employment and Training,Employment and Training +397007,Employment and Training,Employment and Training +397005,Employment and Training,Employment and Training +397004,Employment and Training,Employment and Training +397001,Employment and Training,Employment and Training +397000,Employment and Training,Employment and Training +396998,Employment and Training,Employment and Training +396997,Employment and Training,Employment and Training +396996,Employment and Training,Employment and Training +396995,Employment and Training,Employment and Training +396994,Employment and Training,Employment and Training +396990,Employment and Training,Employment and Training +396988,Employment and Training,Employment and Training +396984,Employment and Training,Employment and Training +396983,Employment and Training,Employment and Training +396980,Employment and Training,Employment and Training +396963,Employment and Training,Employment and Training +396956,Employment and Training,Employment and Training +396952,Employment and Training,Employment and Training +396947,Employment and Training,Employment and Training +396945,Employment and Training,Employment and Training +396937,Employment and Training,Employment and Training +396935,Employment and Training,Employment and Training +396933,Employment and Training,Employment and Training +396917,Employment and Training,Employment and Training +396912,Employment and Training,Employment and Training +396885,Employment and Training,Employment and Training +396881,Employment and Training,Employment and Training +396872,Employment and Training,Employment and Training +396847,Employment and Training,Employment and Training +396839,Employment and Training,Employment and Training +396823,Employment and Training,Employment and Training +396819,Employment and Training,Employment and Training +396810,Employment and Training,Employment and Training +396796,Employment and Training,Employment and Training +396738,Employment and Training,Employment and Training +396257,Employment and Training,Employment and Training +396255,Employment and Training,Employment and Training +396253,Employment and Training,Employment and Training +396250,Employment and Training,Employment and Training +396247,Employment and Training,Employment and Training +396244,Employment and Training,Employment and Training +396223,Employment and Training,Employment and Training +396221,Employment and Training,Employment and Training +396218,Employment and Training,Employment and Training +396216,Employment and Training,Employment and Training +396215,Employment and Training,Employment and Training +396214,Employment and Training,Employment and Training +396213,Employment and Training,Employment and Training +396212,Employment and Training,Employment and Training +396207,Employment and Training,Employment and Training +396204,Employment and Training,Employment and Training +395737,Employment and Training,Employment and Training +395736,Employment and Training,Employment and Training +395735,Employment and Training,Employment and Training +395733,Employment and Training,Employment and Training +395732,Employment and Training,Employment and Training +395730,Employment and Training,Employment and Training +395725,Employment and Training,Employment and Training +395720,Employment and Training,Employment and Training +395719,Employment and Training,Employment and Training +395715,Employment and Training,Employment and Training +395713,Employment and Training,Employment and Training +395708,Employment and Training,Employment and Training +395701,Employment and Training,Employment and Training +395620,Employment and Training,Employment and Training +395619,Employment and Training,Employment and Training +395618,Employment and Training,Employment and Training +395617,Employment and Training,Employment and Training +395616,Employment and Training,Employment and Training +395614,Employment and Training,Employment and Training +395611,Employment and Training,Employment and Training +395610,Employment and Training,Employment and Training +395609,Employment and Training,Employment and Training +395608,Employment and Training,Employment and Training +395603,Employment and Training,Employment and Training +395598,Employment and Training,Employment and Training +395597,Employment and Training,Employment and Training +395594,Employment and Training,Employment and Training +395534,Employment and Training,Employment and Training +395533,Employment and Training,Employment and Training +395532,Employment and Training,Employment and Training +395531,Employment and Training,Employment and Training +395527,Employment and Training,Employment and Training +395526,Employment and Training,Employment and Training +395524,Employment and Training,Employment and Training +395523,Employment and Training,Employment and Training +395520,Employment and Training,Employment and Training +395519,Employment and Training,Employment and Training +395518,Employment and Training,Employment and Training +395504,Employment and Training,Employment and Training +395419,Employment and Training,Employment and Training +393476,Employment and Training,Employment and Training +393250,Employment and Training,Employment and Training +393247,Employment and Training,Employment and Training +393246,Employment and Training,Employment and Training +393243,Employment and Training,Employment and Training +424651,Intellectual Property,Intellectual Property +424800,International Trade,International Trade +446880,Taxation and Finance,Taxation and Finance +446879,Taxation and Finance,Taxation and Finance +159923,Taxation and Finance,Taxation and Finance +157149,Taxation and Finance,Taxation and Finance +395504,Taxation and Finance,Taxation and Finance +446878,Taxation and Finance,Taxation and Finance +446876,Taxation and Finance,Taxation and Finance +446875,Taxation and Finance,Taxation and Finance +446874,Taxation and Finance,Taxation and Finance +446871,Taxation and Finance,Taxation and Finance +446870,Taxation and Finance,Taxation and Finance +446868,Taxation and Finance,Taxation and Finance +446865,Taxation and Finance,Taxation and Finance +446864,Taxation and Finance,Taxation and Finance +446861,Taxation and Finance,Taxation and Finance +446860,Taxation and Finance,Taxation and Finance +446858,Taxation and Finance,Taxation and Finance +446856,Taxation and Finance,Taxation and Finance +446855,Taxation and Finance,Taxation and Finance +446854,Taxation and Finance,Taxation and Finance +446853,Taxation and Finance,Taxation and Finance +446852,Taxation and Finance,Taxation and Finance +446850,Taxation and Finance,Taxation and Finance +446849,Taxation and Finance,Taxation and Finance +446848,Taxation and Finance,Taxation and Finance +446847,Taxation and Finance,Taxation and Finance +446846,Taxation and Finance,Taxation and Finance +446844,Taxation and Finance,Taxation and Finance +446843,Taxation and Finance,Taxation and Finance +446842,Taxation and Finance,Taxation and Finance +446840,Taxation and Finance,Taxation and Finance +446838,Taxation and Finance,Taxation and Finance +446837,Taxation and Finance,Taxation and Finance +446836,Taxation and Finance,Taxation and Finance +446835,Taxation and Finance,Taxation and Finance +446834,Taxation and Finance,Taxation and Finance +446833,Taxation and Finance,Taxation and Finance +446832,Taxation and Finance,Taxation and Finance +446830,Taxation and Finance,Taxation and Finance +446829,Taxation and Finance,Taxation and Finance +446828,Taxation and Finance,Taxation and Finance +446827,Taxation and Finance,Taxation and Finance +446826,Taxation and Finance,Taxation and Finance +446825,Taxation and Finance,Taxation and Finance +446823,Taxation and Finance,Taxation and Finance +446819,Taxation and Finance,Taxation and Finance +446817,Taxation and Finance,Taxation and Finance +446814,Taxation and Finance,Taxation and Finance +446813,Taxation and Finance,Taxation and Finance +446809,Taxation and Finance,Taxation and Finance +446808,Taxation and Finance,Taxation and Finance +446806,Taxation and Finance,Taxation and Finance +446803,Taxation and Finance,Taxation and Finance +446798,Taxation and Finance,Taxation and Finance +446797,Taxation and Finance,Taxation and Finance +446796,Taxation and Finance,Taxation and Finance +446794,Taxation and Finance,Taxation and Finance +446792,Taxation and Finance,Taxation and Finance +446790,Taxation and Finance,Taxation and Finance +446788,Taxation and Finance,Taxation and Finance +446787,Taxation and Finance,Taxation and Finance +446786,Taxation and Finance,Taxation and Finance +446785,Taxation and Finance,Taxation and Finance +421077,Taxation and Finance,Taxation and Finance +420867,Taxation and Finance,Taxation and Finance +529247,Taxation and Finance,Taxation and Finance +529212,Taxation and Finance,Taxation and Finance +529207,Taxation and Finance,Taxation and Finance +526456,Taxation and Finance,Taxation and Finance +526447,Taxation and Finance,Taxation and Finance +526429,Taxation and Finance,Taxation and Finance +526414,Taxation and Finance,Taxation and Finance +526398,Taxation and Finance,Taxation and Finance +526391,Taxation and Finance,Taxation and Finance +525864,Taxation and Finance,Taxation and Finance +525856,Taxation and Finance,Taxation and Finance +525835,Taxation and Finance,Taxation and Finance +525828,Taxation and Finance,Taxation and Finance +525824,Taxation and Finance,Taxation and Finance +525804,Taxation and Finance,Taxation and Finance +525796,Taxation and Finance,Taxation and Finance +525793,Taxation and Finance,Taxation and Finance +525789,Taxation and Finance,Taxation and Finance +525777,Taxation and Finance,Taxation and Finance +525758,Taxation and Finance,Taxation and Finance +525660,Taxation and Finance,Taxation and Finance +522441,Taxation and Finance,Taxation and Finance +522439,Taxation and Finance,Taxation and Finance +449505,Taxation and Finance,Taxation and Finance +449502,Taxation and Finance,Taxation and Finance +446889,Taxation and Finance,Taxation and Finance +446887,Taxation and Finance,Taxation and Finance +446886,Taxation and Finance,Taxation and Finance +446885,Taxation and Finance,Taxation and Finance +446884,Taxation and Finance,Taxation and Finance +446883,Taxation and Finance,Taxation and Finance +446882,Taxation and Finance,Taxation and Finance +97154,Government Procurement,Government Procurement +80819,Government Procurement,Government Procurement +80723,Government Procurement,Government Procurement +77673,Government Procurement,Government Procurement +77664,Government Procurement,Government Procurement +77662,Government Procurement,Government Procurement +106285,Government Procurement,Government Procurement +106283,Government Procurement,Government Procurement +97280,Agriculture,Agriculture +97277,Agriculture,Agriculture +97274,Agriculture,Agriculture +82959,Agriculture,Agriculture +77192,Agriculture,Agriculture +148023,Agriculture,Agriculture +148022,Agriculture,Agriculture +142417,Agriculture,Agriculture +142415,Agriculture,Agriculture +135776,Agriculture,Agriculture +132475,Agriculture,Agriculture +124867,Agriculture,Agriculture +124865,Agriculture,Agriculture +120875,Agriculture,Agriculture +118354,Agriculture,Agriculture +115195,Agriculture,Agriculture +115194,Agriculture,Agriculture +111136,Agriculture,Agriculture +101070,Agriculture,Agriculture +97287,Agriculture,Agriculture +97286,Agriculture,Agriculture +97285,Agriculture,Agriculture +207350,Agriculture,Agriculture +197233,Agriculture,Agriculture +197232,Agriculture,Agriculture +197089,Agriculture,Agriculture +197072,Agriculture,Agriculture +197070,Agriculture,Agriculture +197068,Agriculture,Agriculture +197067,Agriculture,Agriculture +197066,Agriculture,Agriculture +197065,Agriculture,Agriculture +197064,Agriculture,Agriculture +197063,Agriculture,Agriculture +197062,Agriculture,Agriculture +197061,Agriculture,Agriculture +197060,Agriculture,Agriculture +197059,Agriculture,Agriculture +197058,Agriculture,Agriculture +197050,Agriculture,Agriculture +196066,Agriculture,Agriculture +189047,Agriculture,Agriculture +182244,Agriculture,Agriculture +182225,Agriculture,Agriculture +182224,Agriculture,Agriculture +176024,Agriculture,Agriculture +171225,Agriculture,Agriculture +169009,Agriculture,Agriculture +169008,Agriculture,Agriculture +169006,Agriculture,Agriculture +167064,Agriculture,Agriculture +165884,Agriculture,Agriculture +163696,Agriculture,Agriculture +161980,Agriculture,Agriculture +161977,Agriculture,Agriculture +160311,Agriculture,Agriculture +160310,Agriculture,Agriculture +160309,Agriculture,Agriculture +156952,Agriculture,Agriculture +156951,Agriculture,Agriculture +154812,Agriculture,Agriculture +152579,Agriculture,Agriculture +152578,Agriculture,Agriculture +152577,Agriculture,Agriculture +151599,Agriculture,Agriculture +150777,Agriculture,Agriculture +150597,Agriculture,Agriculture +150519,Agriculture,Agriculture +148476,Agriculture,Agriculture +361146,Agriculture,Agriculture +359764,Agriculture,Agriculture +349818,Agriculture,Agriculture +349487,Agriculture,Agriculture +349162,Agriculture,Agriculture +347779,Agriculture,Agriculture +347063,Agriculture,Agriculture +347062,Agriculture,Agriculture +347060,Agriculture,Agriculture +346999,Agriculture,Agriculture +346949,Agriculture,Agriculture +346942,Agriculture,Agriculture +346940,Agriculture,Agriculture +340471,Agriculture,Agriculture +339955,Agriculture,Agriculture +339954,Agriculture,Agriculture +336450,Agriculture,Agriculture +335755,Agriculture,Agriculture +334493,Agriculture,Agriculture +333614,Agriculture,Agriculture +332470,Agriculture,Agriculture +332469,Agriculture,Agriculture +326470,Agriculture,Agriculture +325356,Agriculture,Agriculture +324715,Agriculture,Agriculture +321946,Agriculture,Agriculture +317655,Agriculture,Agriculture +317331,Agriculture,Agriculture +315600,Agriculture,Agriculture +315599,Agriculture,Agriculture +309595,Agriculture,Agriculture +309594,Agriculture,Agriculture +309570,Agriculture,Agriculture +309569,Agriculture,Agriculture +302396,Agriculture,Agriculture +302395,Agriculture,Agriculture +301569,Agriculture,Agriculture +301555,Agriculture,Agriculture +301552,Agriculture,Agriculture +301551,Agriculture,Agriculture +293869,Agriculture,Agriculture +293120,Agriculture,Agriculture +293119,Agriculture,Agriculture +293118,Agriculture,Agriculture +293117,Agriculture,Agriculture +293116,Agriculture,Agriculture +293115,Agriculture,Agriculture +293114,Agriculture,Agriculture +293113,Agriculture,Agriculture +293112,Agriculture,Agriculture +293111,Agriculture,Agriculture +293110,Agriculture,Agriculture +293109,Agriculture,Agriculture +293105,Agriculture,Agriculture +293104,Agriculture,Agriculture +293103,Agriculture,Agriculture +293102,Agriculture,Agriculture +293101,Agriculture,Agriculture +293100,Agriculture,Agriculture +293099,Agriculture,Agriculture +293097,Agriculture,Agriculture +293096,Agriculture,Agriculture +293095,Agriculture,Agriculture +293094,Agriculture,Agriculture +293093,Agriculture,Agriculture +293092,Agriculture,Agriculture +293091,Agriculture,Agriculture +293090,Agriculture,Agriculture +293089,Agriculture,Agriculture +293053,Agriculture,Agriculture +293052,Agriculture,Agriculture +293050,Agriculture,Agriculture +289130,Agriculture,Agriculture +289129,Agriculture,Agriculture +284229,Agriculture,Agriculture +283829,Agriculture,Agriculture +283609,Agriculture,Agriculture +279429,Agriculture,Agriculture +277089,Agriculture,Agriculture +276119,Agriculture,Agriculture +275236,Agriculture,Agriculture +275218,Agriculture,Agriculture +271209,Agriculture,Agriculture +263749,Agriculture,Agriculture +260869,Agriculture,Agriculture +257854,Agriculture,Agriculture +255230,Agriculture,Agriculture +255229,Agriculture,Agriculture +250960,Agriculture,Agriculture +250959,Agriculture,Agriculture +242309,Agriculture,Agriculture +241789,Agriculture,Agriculture +239053,Agriculture,Agriculture +239050,Agriculture,Agriculture +238429,Agriculture,Agriculture +234649,Agriculture,Agriculture +231951,Agriculture,Agriculture +229130,Agriculture,Agriculture +228989,Agriculture,Agriculture +227269,Agriculture,Agriculture +217257,Agriculture,Agriculture +212215,Agriculture,Agriculture +496639,Agriculture,Agriculture +496638,Agriculture,Agriculture +496637,Agriculture,Agriculture +496636,Agriculture,Agriculture +496635,Agriculture,Agriculture +496634,Agriculture,Agriculture +496633,Agriculture,Agriculture +496631,Agriculture,Agriculture +496630,Agriculture,Agriculture +496629,Agriculture,Agriculture +496628,Agriculture,Agriculture +496626,Agriculture,Agriculture +496625,Agriculture,Agriculture +496624,Agriculture,Agriculture +496623,Agriculture,Agriculture +496622,Agriculture,Agriculture +496621,Agriculture,Agriculture +496620,Agriculture,Agriculture +494315,Agriculture,Agriculture +489086,Agriculture,Agriculture +486937,Agriculture,Agriculture +486933,Agriculture,Agriculture +486931,Agriculture,Agriculture +485861,Agriculture,Agriculture +485860,Agriculture,Agriculture +485858,Agriculture,Agriculture +483264,Agriculture,Agriculture +483259,Agriculture,Agriculture +483258,Agriculture,Agriculture +483257,Agriculture,Agriculture +483110,Agriculture,Agriculture +480945,Agriculture,Agriculture +480944,Agriculture,Agriculture +479014,Agriculture,Agriculture +474578,Agriculture,Agriculture +471702,Agriculture,Agriculture +463878,Agriculture,Agriculture +463874,Agriculture,Agriculture +463873,Agriculture,Agriculture +463644,Agriculture,Agriculture +463643,Agriculture,Agriculture +463310,Agriculture,Agriculture +462672,Agriculture,Agriculture +462671,Agriculture,Agriculture +462670,Agriculture,Agriculture +462206,Agriculture,Agriculture +461062,Agriculture,Agriculture +461061,Agriculture,Agriculture +460800,Agriculture,Agriculture +460368,Agriculture,Agriculture +459944,Agriculture,Agriculture +459113,Agriculture,Agriculture +459104,Agriculture,Agriculture +459102,Agriculture,Agriculture +458087,Agriculture,Agriculture +458086,Agriculture,Agriculture +458085,Agriculture,Agriculture +458084,Agriculture,Agriculture +458083,Agriculture,Agriculture +457988,Agriculture,Agriculture +457721,Agriculture,Agriculture +456654,Agriculture,Agriculture +453090,Agriculture,Agriculture +452895,Agriculture,Agriculture +452894,Agriculture,Agriculture +452893,Agriculture,Agriculture +452891,Agriculture,Agriculture +452890,Agriculture,Agriculture +451280,Agriculture,Agriculture +448877,Agriculture,Agriculture +448875,Agriculture,Agriculture +448873,Agriculture,Agriculture +448872,Agriculture,Agriculture +447545,Agriculture,Agriculture +447540,Agriculture,Agriculture +447362,Agriculture,Agriculture +447361,Agriculture,Agriculture +445054,Agriculture,Agriculture +434493,Agriculture,Agriculture +423642,Agriculture,Agriculture +423638,Agriculture,Agriculture +414504,Agriculture,Agriculture +413275,Agriculture,Agriculture +409537,Agriculture,Agriculture +408291,Agriculture,Agriculture +408288,Agriculture,Agriculture +408287,Agriculture,Agriculture +401425,Agriculture,Agriculture +396628,Agriculture,Agriculture +396191,Agriculture,Agriculture +396189,Agriculture,Agriculture +396184,Agriculture,Agriculture +396181,Agriculture,Agriculture +394528,Agriculture,Agriculture +388296,Agriculture,Agriculture +385263,Agriculture,Agriculture +383957,Agriculture,Agriculture +383956,Agriculture,Agriculture +383955,Agriculture,Agriculture +383954,Agriculture,Agriculture +380568,Agriculture,Agriculture +380110,Agriculture,Agriculture +380109,Agriculture,Agriculture +379657,Agriculture,Agriculture +378264,Agriculture,Agriculture +378263,Agriculture,Agriculture +378194,Agriculture,Agriculture +377248,Agriculture,Agriculture +373876,Agriculture,Agriculture +371665,Agriculture,Agriculture +370531,Agriculture,Agriculture +370530,Agriculture,Agriculture +370529,Agriculture,Agriculture +370527,Agriculture,Agriculture +370526,Agriculture,Agriculture +370072,Agriculture,Agriculture +369715,Agriculture,Agriculture +369714,Agriculture,Agriculture +369712,Agriculture,Agriculture +369710,Agriculture,Agriculture +369706,Agriculture,Agriculture +369701,Agriculture,Agriculture +367449,Agriculture,Agriculture +367448,Agriculture,Agriculture +366709,Agriculture,Agriculture +363276,Agriculture,Agriculture +363275,Agriculture,Agriculture +363274,Agriculture,Agriculture +363192,Agriculture,Agriculture +363190,Agriculture,Agriculture +363189,Agriculture,Agriculture +363188,Agriculture,Agriculture +363184,Agriculture,Agriculture +363183,Agriculture,Agriculture +362353,Agriculture,Agriculture +362349,Agriculture,Agriculture +362348,Agriculture,Agriculture +362347,Agriculture,Agriculture +362346,Agriculture,Agriculture +362249,Agriculture,Agriculture +541697,Agriculture,Agriculture +540096,Agriculture,Agriculture +540091,Agriculture,Agriculture +540089,Agriculture,Agriculture +540085,Agriculture,Agriculture +539474,Agriculture,Agriculture +538573,Agriculture,Agriculture +538572,Agriculture,Agriculture +538571,Agriculture,Agriculture +538570,Agriculture,Agriculture +538569,Agriculture,Agriculture +538568,Agriculture,Agriculture +538567,Agriculture,Agriculture +538566,Agriculture,Agriculture +538565,Agriculture,Agriculture +538564,Agriculture,Agriculture +538562,Agriculture,Agriculture +538561,Agriculture,Agriculture +536162,Agriculture,Agriculture +536161,Agriculture,Agriculture +536160,Agriculture,Agriculture +536159,Agriculture,Agriculture +536158,Agriculture,Agriculture +536157,Agriculture,Agriculture +536156,Agriculture,Agriculture +536155,Agriculture,Agriculture +536154,Agriculture,Agriculture +536153,Agriculture,Agriculture +536152,Agriculture,Agriculture +536151,Agriculture,Agriculture +531390,Agriculture,Agriculture +531389,Agriculture,Agriculture +531388,Agriculture,Agriculture +528660,Agriculture,Agriculture +528659,Agriculture,Agriculture +528658,Agriculture,Agriculture +528657,Agriculture,Agriculture +528654,Agriculture,Agriculture +528652,Agriculture,Agriculture +528650,Agriculture,Agriculture +528649,Agriculture,Agriculture +521345,Agriculture,Agriculture +521342,Agriculture,Agriculture +521341,Agriculture,Agriculture +521339,Agriculture,Agriculture +521337,Agriculture,Agriculture +521335,Agriculture,Agriculture +521334,Agriculture,Agriculture +521331,Agriculture,Agriculture +521330,Agriculture,Agriculture +521327,Agriculture,Agriculture +521326,Agriculture,Agriculture +521323,Agriculture,Agriculture +521321,Agriculture,Agriculture +521320,Agriculture,Agriculture +521318,Agriculture,Agriculture +521316,Agriculture,Agriculture +521314,Agriculture,Agriculture +521301,Agriculture,Agriculture +521268,Agriculture,Agriculture +521267,Agriculture,Agriculture +521265,Agriculture,Agriculture +521264,Agriculture,Agriculture +521262,Agriculture,Agriculture +521260,Agriculture,Agriculture +521258,Agriculture,Agriculture +521248,Agriculture,Agriculture +521247,Agriculture,Agriculture +521245,Agriculture,Agriculture +521244,Agriculture,Agriculture +521243,Agriculture,Agriculture +519301,Agriculture,Agriculture +516361,Agriculture,Agriculture +516359,Agriculture,Agriculture +513662,Agriculture,Agriculture +512518,Agriculture,Agriculture +512153,Agriculture,Agriculture +512152,Agriculture,Agriculture +511825,Agriculture,Agriculture +511823,Agriculture,Agriculture +509543,Agriculture,Agriculture +509399,Agriculture,Agriculture +506644,Agriculture,Agriculture +506595,Agriculture,Agriculture +503593,Agriculture,Agriculture +503506,Agriculture,Agriculture +500007,Agriculture,Agriculture +496750,Agriculture,Agriculture +496708,Agriculture,Agriculture +496707,Agriculture,Agriculture +496652,Agriculture,Agriculture +496648,Agriculture,Agriculture +496645,Agriculture,Agriculture +496642,Agriculture,Agriculture +496641,Agriculture,Agriculture +496640,Agriculture,Agriculture +531390,Consumer Issues,Consumer Issues +528649,Consumer Issues,Consumer Issues +97286,Consumer Issues,Consumer Issues +97285,Consumer Issues,Consumer Issues +97283,Consumer Issues,Consumer Issues +97280,Consumer Issues,Consumer Issues +97277,Consumer Issues,Consumer Issues +97274,Consumer Issues,Consumer Issues +171225,Consumer Issues,Consumer Issues +156952,Consumer Issues,Consumer Issues +156951,Consumer Issues,Consumer Issues +377248,Consumer Issues,Consumer Issues +538568,Consumer Issues,Consumer Issues +538567,Consumer Issues,Consumer Issues +538566,Consumer Issues,Consumer Issues +538565,Consumer Issues,Consumer Issues +538562,Consumer Issues,Consumer Issues +536158,Consumer Issues,Consumer Issues +536157,Consumer Issues,Consumer Issues +536156,Consumer Issues,Consumer Issues +536155,Consumer Issues,Consumer Issues +536153,Consumer Issues,Consumer Issues +520428,Environment,Environment +506644,Environment,Environment +97277,Environment,Environment +97274,Environment,Environment +154048,Environment,Environment +154047,Environment,Environment +106202,Environment,Environment +106194,Environment,Environment +97286,Environment,Environment +97285,Environment,Environment +97283,Environment,Environment +97280,Environment,Environment +197062,Environment,Environment +197061,Environment,Environment +197060,Environment,Environment +197059,Environment,Environment +197058,Environment,Environment +197050,Environment,Environment +317331,Environment,Environment +528659,Environment,Environment +528658,Environment,Environment +520849,Health,Health +518976,Health,Health +97286,Health,Health +97285,Health,Health +97283,Health,Health +97280,Health,Health +97277,Health,Health +169006,Health,Health +260612,Health,Health +260611,Health,Health +260610,Health,Health +259778,Health,Health +259777,Health,Health +259776,Health,Health +259775,Health,Health +259774,Health,Health +259773,Health,Health +259772,Health,Health +259771,Health,Health +259770,Health,Health +259769,Health,Health +420990,Health,Health +420627,Health,Health +420625,Health,Health +420624,Health,Health +420623,Health,Health +417501,Health,Health +414295,Health,Health +414132,Health,Health +414131,Health,Health +414129,Health,Health +412616,Health,Health +409528,Health,Health +408301,Health,Health +398042,Health,Health +377248,Health,Health +347289,Health,Health +347248,Health,Health +347210,Health,Health +466215,Health,Health +466214,Health,Health +466213,Health,Health +466212,Health,Health +466201,Health,Health +465848,Health,Health +465846,Health,Health +465844,Health,Health +465843,Health,Health +465841,Health,Health +465107,Health,Health +463891,Health,Health +463889,Health,Health +463887,Health,Health +463886,Health,Health +463885,Health,Health +463883,Health,Health +463881,Health,Health +463880,Health,Health +463879,Health,Health +463644,Health,Health +463307,Health,Health +462205,Health,Health +458105,Health,Health +454212,Health,Health +453090,Health,Health +451563,Health,Health +448925,Health,Health +447081,Health,Health +447080,Health,Health +447079,Health,Health +447078,Health,Health +447077,Health,Health +447076,Health,Health +447074,Health,Health +447072,Health,Health +447070,Health,Health +445053,Health,Health +444896,Health,Health +444893,Health,Health +444892,Health,Health +443920,Health,Health +443399,Health,Health +443397,Health,Health +443395,Health,Health +443367,Health,Health +443366,Health,Health +443362,Health,Health +443361,Health,Health +441231,Health,Health +440671,Health,Health +440668,Health,Health +440663,Health,Health +438685,Health,Health +438683,Health,Health +438680,Health,Health +438677,Health,Health +438674,Health,Health +438670,Health,Health +438661,Health,Health +438657,Health,Health +438654,Health,Health +438650,Health,Health +438645,Health,Health +438644,Health,Health +438641,Health,Health +438639,Health,Health +438636,Health,Health +438633,Health,Health +438630,Health,Health +438627,Health,Health +438625,Health,Health +438624,Health,Health +438622,Health,Health +438619,Health,Health +437118,Health,Health +437115,Health,Health +436904,Health,Health +436898,Health,Health +430214,Health,Health +430213,Health,Health +428944,Health,Health +428294,Health,Health +428285,Health,Health +428284,Health,Health +428283,Health,Health +428281,Health,Health +428280,Health,Health +428279,Health,Health +428278,Health,Health +428275,Health,Health +428271,Health,Health +428269,Health,Health +428268,Health,Health +427999,Health,Health +427998,Health,Health +427817,Health,Health +427816,Health,Health +425106,Health,Health +425105,Health,Health +423315,Health,Health +423314,Health,Health +423313,Health,Health +423196,Health,Health +423192,Health,Health +423165,Health,Health +423163,Health,Health +420991,Health,Health +540096,Health,Health +540091,Health,Health +538568,Health,Health +538567,Health,Health +538566,Health,Health +538565,Health,Health +538562,Health,Health +536158,Health,Health +536157,Health,Health +536156,Health,Health +536155,Health,Health +536153,Health,Health +536151,Health,Health +531388,Health,Health +528654,Health,Health +528652,Health,Health +434487,International Trade,International Trade +434485,International Trade,International Trade +85083,International Trade,International Trade +85082,International Trade,International Trade +85081,International Trade,International Trade +85080,International Trade,International Trade +85079,International Trade,International Trade +85078,International Trade,International Trade +85077,International Trade,International Trade +85076,International Trade,International Trade +82959,International Trade,International Trade +77199,International Trade,International Trade +77190,International Trade,International Trade +77185,International Trade,International Trade +113905,International Trade,International Trade +113900,International Trade,International Trade +111136,International Trade,International Trade +97286,International Trade,International Trade +97285,International Trade,International Trade +97283,International Trade,International Trade +97280,International Trade,International Trade +97277,International Trade,International Trade +97274,International Trade,International Trade +97258,International Trade,International Trade +97257,International Trade,International Trade +97255,International Trade,International Trade +93399,International Trade,International Trade +90394,International Trade,International Trade +90392,International Trade,International Trade +90390,International Trade,International Trade +90389,International Trade,International Trade +90387,International Trade,International Trade +90385,International Trade,International Trade +90383,International Trade,International Trade +90381,International Trade,International Trade +88168,International Trade,International Trade +88166,International Trade,International Trade +88165,International Trade,International Trade +88164,International Trade,International Trade +88163,International Trade,International Trade +88160,International Trade,International Trade +88159,International Trade,International Trade +85085,International Trade,International Trade +85084,International Trade,International Trade +197070,International Trade,International Trade +197068,International Trade,International Trade +197067,International Trade,International Trade +197066,International Trade,International Trade +197065,International Trade,International Trade +197064,International Trade,International Trade +197063,International Trade,International Trade +197062,International Trade,International Trade +197061,International Trade,International Trade +197060,International Trade,International Trade +197059,International Trade,International Trade +197058,International Trade,International Trade +197050,International Trade,International Trade +196066,International Trade,International Trade +196064,International Trade,International Trade +182244,International Trade,International Trade +176025,International Trade,International Trade +167064,International Trade,International Trade +161980,International Trade,International Trade +160312,International Trade,International Trade +156952,International Trade,International Trade +156951,International Trade,International Trade +154812,International Trade,International Trade +150777,International Trade,International Trade +150519,International Trade,International Trade +148476,International Trade,International Trade +142415,International Trade,International Trade +142395,International Trade,International Trade +142394,International Trade,International Trade +135776,International Trade,International Trade +132473,International Trade,International Trade +128861,International Trade,International Trade +124867,International Trade,International Trade +120875,International Trade,International Trade +118354,International Trade,International Trade +115195,International Trade,International Trade +321193,International Trade,International Trade +321192,International Trade,International Trade +321191,International Trade,International Trade +321190,International Trade,International Trade +321189,International Trade,International Trade +317331,International Trade,International Trade +315600,International Trade,International Trade +315599,International Trade,International Trade +309595,International Trade,International Trade +309594,International Trade,International Trade +309572,International Trade,International Trade +309570,International Trade,International Trade +309569,International Trade,International Trade +302396,International Trade,International Trade +302395,International Trade,International Trade +302289,International Trade,International Trade +301592,International Trade,International Trade +301591,International Trade,International Trade +301590,International Trade,International Trade +301589,International Trade,International Trade +301569,International Trade,International Trade +301557,International Trade,International Trade +301556,International Trade,International Trade +301552,International Trade,International Trade +301551,International Trade,International Trade +301137,International Trade,International Trade +301136,International Trade,International Trade +301135,International Trade,International Trade +301134,International Trade,International Trade +301133,International Trade,International Trade +301132,International Trade,International Trade +301131,International Trade,International Trade +301130,International Trade,International Trade +301129,International Trade,International Trade +295409,International Trade,International Trade +293120,International Trade,International Trade +293119,International Trade,International Trade +293118,International Trade,International Trade +293117,International Trade,International Trade +293116,International Trade,International Trade +293115,International Trade,International Trade +293114,International Trade,International Trade +293113,International Trade,International Trade +293112,International Trade,International Trade +293111,International Trade,International Trade +293110,International Trade,International Trade +293109,International Trade,International Trade +293105,International Trade,International Trade +293104,International Trade,International Trade +293103,International Trade,International Trade +293102,International Trade,International Trade +293101,International Trade,International Trade +293100,International Trade,International Trade +293099,International Trade,International Trade +293097,International Trade,International Trade +293096,International Trade,International Trade +293095,International Trade,International Trade +293094,International Trade,International Trade +293093,International Trade,International Trade +293092,International Trade,International Trade +293091,International Trade,International Trade +293090,International Trade,International Trade +293089,International Trade,International Trade +293054,International Trade,International Trade +293053,International Trade,International Trade +293051,International Trade,International Trade +289129,International Trade,International Trade +284229,International Trade,International Trade +284129,International Trade,International Trade +277089,International Trade,International Trade +276119,International Trade,International Trade +275236,International Trade,International Trade +275218,International Trade,International Trade +275217,International Trade,International Trade +275216,International Trade,International Trade +275215,International Trade,International Trade +257855,International Trade,International Trade +257852,International Trade,International Trade +255231,International Trade,International Trade +255230,International Trade,International Trade +255229,International Trade,International Trade +250960,International Trade,International Trade +250959,International Trade,International Trade +250958,International Trade,International Trade +250956,International Trade,International Trade +243429,International Trade,International Trade +241631,International Trade,International Trade +241630,International Trade,International Trade +241629,International Trade,International Trade +239050,International Trade,International Trade +234649,International Trade,International Trade +229129,International Trade,International Trade +223361,International Trade,International Trade +197233,International Trade,International Trade +197232,International Trade,International Trade +197089,International Trade,International Trade +197072,International Trade,International Trade +432988,International Trade,International Trade +432986,International Trade,International Trade +432984,International Trade,International Trade +432982,International Trade,International Trade +432981,International Trade,International Trade +432980,International Trade,International Trade +431651,International Trade,International Trade +431650,International Trade,International Trade +430216,International Trade,International Trade +430215,International Trade,International Trade +430214,International Trade,International Trade +430213,International Trade,International Trade +428944,International Trade,International Trade +428294,International Trade,International Trade +428285,International Trade,International Trade +428284,International Trade,International Trade +428283,International Trade,International Trade +428281,International Trade,International Trade +428280,International Trade,International Trade +428279,International Trade,International Trade +428278,International Trade,International Trade +428275,International Trade,International Trade +428271,International Trade,International Trade +428269,International Trade,International Trade +428268,International Trade,International Trade +427967,International Trade,International Trade +427966,International Trade,International Trade +427965,International Trade,International Trade +427964,International Trade,International Trade +427962,International Trade,International Trade +427817,International Trade,International Trade +427816,International Trade,International Trade +425666,International Trade,International Trade +425665,International Trade,International Trade +425664,International Trade,International Trade +425663,International Trade,International Trade +425662,International Trade,International Trade +425661,International Trade,International Trade +425660,International Trade,International Trade +425659,International Trade,International Trade +423647,International Trade,International Trade +423644,International Trade,International Trade +423636,International Trade,International Trade +423315,International Trade,International Trade +423196,International Trade,International Trade +423192,International Trade,International Trade +423165,International Trade,International Trade +423163,International Trade,International Trade +421084,International Trade,International Trade +421083,International Trade,International Trade +421082,International Trade,International Trade +421081,International Trade,International Trade +420991,International Trade,International Trade +420990,International Trade,International Trade +420625,International Trade,International Trade +420624,International Trade,International Trade +420623,International Trade,International Trade +419398,International Trade,International Trade +419337,International Trade,International Trade +417631,International Trade,International Trade +417630,International Trade,International Trade +417629,International Trade,International Trade +417628,International Trade,International Trade +417627,International Trade,International Trade +417626,International Trade,International Trade +417501,International Trade,International Trade +417500,International Trade,International Trade +414503,International Trade,International Trade +414502,International Trade,International Trade +414501,International Trade,International Trade +414500,International Trade,International Trade +414499,International Trade,International Trade +414498,International Trade,International Trade +414497,International Trade,International Trade +414496,International Trade,International Trade +414130,International Trade,International Trade +413273,International Trade,International Trade +413272,International Trade,International Trade +413241,International Trade,International Trade +413236,International Trade,International Trade +413231,International Trade,International Trade +413228,International Trade,International Trade +413224,International Trade,International Trade +412621,International Trade,International Trade +408290,International Trade,International Trade +408064,International Trade,International Trade +408063,International Trade,International Trade +403887,International Trade,International Trade +400519,International Trade,International Trade +400517,International Trade,International Trade +400515,International Trade,International Trade +399435,International Trade,International Trade +396628,International Trade,International Trade +396191,International Trade,International Trade +396189,International Trade,International Trade +394529,International Trade,International Trade +394528,International Trade,International Trade +385263,International Trade,International Trade +380568,International Trade,International Trade +378263,International Trade,International Trade +377248,International Trade,International Trade +373876,International Trade,International Trade +369715,International Trade,International Trade +367449,International Trade,International Trade +366717,International Trade,International Trade +366713,International Trade,International Trade +366709,International Trade,International Trade +363276,International Trade,International Trade +363274,International Trade,International Trade +363192,International Trade,International Trade +363190,International Trade,International Trade +363189,International Trade,International Trade +363188,International Trade,International Trade +362353,International Trade,International Trade +362349,International Trade,International Trade +362348,International Trade,International Trade +362347,International Trade,International Trade +362346,International Trade,International Trade +361146,International Trade,International Trade +356552,International Trade,International Trade +353108,International Trade,International Trade +350444,International Trade,International Trade +349819,International Trade,International Trade +349487,International Trade,International Trade +349486,International Trade,International Trade +349162,International Trade,International Trade +349157,International Trade,International Trade +349154,International Trade,International Trade +347779,International Trade,International Trade +347202,International Trade,International Trade +346946,International Trade,International Trade +343577,International Trade,International Trade +343576,International Trade,International Trade +340465,International Trade,International Trade +339954,International Trade,International Trade +338853,International Trade,International Trade +336450,International Trade,International Trade +335754,International Trade,International Trade +335677,International Trade,International Trade +332470,International Trade,International Trade +332469,International Trade,International Trade +331642,International Trade,International Trade +331641,International Trade,International Trade +330606,International Trade,International Trade +330605,International Trade,International Trade +330020,International Trade,International Trade +326470,International Trade,International Trade +325352,International Trade,International Trade +325351,International Trade,International Trade +325350,International Trade,International Trade +325349,International Trade,International Trade +324715,International Trade,International Trade +321197,International Trade,International Trade +321196,International Trade,International Trade +321195,International Trade,International Trade +321194,International Trade,International Trade +540089,International Trade,International Trade +540085,International Trade,International Trade +539474,International Trade,International Trade +538571,International Trade,International Trade +538570,International Trade,International Trade +538569,International Trade,International Trade +536162,International Trade,International Trade +536161,International Trade,International Trade +536160,International Trade,International Trade +536159,International Trade,International Trade +536154,International Trade,International Trade +536152,International Trade,International Trade +531389,International Trade,International Trade +521639,International Trade,International Trade +521637,International Trade,International Trade +521345,International Trade,International Trade +521342,International Trade,International Trade +521341,International Trade,International Trade +521339,International Trade,International Trade +521337,International Trade,International Trade +521335,International Trade,International Trade +521334,International Trade,International Trade +521331,International Trade,International Trade +521330,International Trade,International Trade +521327,International Trade,International Trade +521326,International Trade,International Trade +521323,International Trade,International Trade +521321,International Trade,International Trade +521320,International Trade,International Trade +521318,International Trade,International Trade +521316,International Trade,International Trade +521314,International Trade,International Trade +521301,International Trade,International Trade +521268,International Trade,International Trade +521267,International Trade,International Trade +521265,International Trade,International Trade +521264,International Trade,International Trade +521262,International Trade,International Trade +521260,International Trade,International Trade +521258,International Trade,International Trade +521248,International Trade,International Trade +521247,International Trade,International Trade +521245,International Trade,International Trade +521244,International Trade,International Trade +521243,International Trade,International Trade +520849,International Trade,International Trade +516360,International Trade,International Trade +516358,International Trade,International Trade +516357,International Trade,International Trade +516356,International Trade,International Trade +516353,International Trade,International Trade +511821,International Trade,International Trade +511081,International Trade,International Trade +509542,International Trade,International Trade +509541,International Trade,International Trade +509400,International Trade,International Trade +506643,International Trade,International Trade +506595,International Trade,International Trade +506594,International Trade,International Trade +503503,International Trade,International Trade +503449,International Trade,International Trade +500413,International Trade,International Trade +500007,International Trade,International Trade +500002,International Trade,International Trade +497387,International Trade,International Trade +496708,International Trade,International Trade +496707,International Trade,International Trade +496652,International Trade,International Trade +496648,International Trade,International Trade +496645,International Trade,International Trade +496642,International Trade,International Trade +496641,International Trade,International Trade +496640,International Trade,International Trade +496639,International Trade,International Trade +496638,International Trade,International Trade +496637,International Trade,International Trade +496636,International Trade,International Trade +496635,International Trade,International Trade +496634,International Trade,International Trade +496633,International Trade,International Trade +496631,International Trade,International Trade +496630,International Trade,International Trade +496629,International Trade,International Trade +496628,International Trade,International Trade +496626,International Trade,International Trade +496625,International Trade,International Trade +496624,International Trade,International Trade +496623,International Trade,International Trade +496622,International Trade,International Trade +496621,International Trade,International Trade +496620,International Trade,International Trade +494317,International Trade,International Trade +492646,International Trade,International Trade +492645,International Trade,International Trade +492644,International Trade,International Trade +492643,International Trade,International Trade +489086,International Trade,International Trade +486937,International Trade,International Trade +486933,International Trade,International Trade +486931,International Trade,International Trade +483264,International Trade,International Trade +483259,International Trade,International Trade +483258,International Trade,International Trade +483257,International Trade,International Trade +483199,International Trade,International Trade +483197,International Trade,International Trade +480948,International Trade,International Trade +480945,International Trade,International Trade +480944,International Trade,International Trade +477609,International Trade,International Trade +477608,International Trade,International Trade +476939,International Trade,International Trade +474577,International Trade,International Trade +474354,International Trade,International Trade +471910,International Trade,International Trade +471909,International Trade,International Trade +471908,International Trade,International Trade +470073,International Trade,International Trade +470072,International Trade,International Trade +470071,International Trade,International Trade +466215,International Trade,International Trade +466214,International Trade,International Trade +466213,International Trade,International Trade +466212,International Trade,International Trade +466201,International Trade,International Trade +465848,International Trade,International Trade +465846,International Trade,International Trade +465844,International Trade,International Trade +465843,International Trade,International Trade +465107,International Trade,International Trade +463891,International Trade,International Trade +463889,International Trade,International Trade +463887,International Trade,International Trade +463886,International Trade,International Trade +463885,International Trade,International Trade +463883,International Trade,International Trade +463882,International Trade,International Trade +463881,International Trade,International Trade +463880,International Trade,International Trade +463879,International Trade,International Trade +463877,International Trade,International Trade +463875,International Trade,International Trade +463648,International Trade,International Trade +463644,International Trade,International Trade +463310,International Trade,International Trade +462669,International Trade,International Trade +461062,International Trade,International Trade +460800,International Trade,International Trade +460357,International Trade,International Trade +460356,International Trade,International Trade +459117,International Trade,International Trade +459116,International Trade,International Trade +459115,International Trade,International Trade +459114,International Trade,International Trade +459112,International Trade,International Trade +459111,International Trade,International Trade +459110,International Trade,International Trade +459104,International Trade,International Trade +459103,International Trade,International Trade +459101,International Trade,International Trade +459100,International Trade,International Trade +458139,International Trade,International Trade +458138,International Trade,International Trade +458105,International Trade,International Trade +454212,International Trade,International Trade +453090,International Trade,International Trade +451563,International Trade,International Trade +451279,International Trade,International Trade +448881,International Trade,International Trade +448878,International Trade,International Trade +448874,International Trade,International Trade +447081,International Trade,International Trade +447080,International Trade,International Trade +447079,International Trade,International Trade +447078,International Trade,International Trade +447077,International Trade,International Trade +447076,International Trade,International Trade +447074,International Trade,International Trade +447072,International Trade,International Trade +447070,International Trade,International Trade +444900,International Trade,International Trade +444899,International Trade,International Trade +444898,International Trade,International Trade +444897,International Trade,International Trade +444896,International Trade,International Trade +444895,International Trade,International Trade +444894,International Trade,International Trade +443399,International Trade,International Trade +443397,International Trade,International Trade +443395,International Trade,International Trade +443367,International Trade,International Trade +443366,International Trade,International Trade +443362,International Trade,International Trade +443361,International Trade,International Trade +443266,International Trade,International Trade +443265,International Trade,International Trade +443184,International Trade,International Trade +443183,International Trade,International Trade +443182,International Trade,International Trade +441232,International Trade,International Trade +441115,International Trade,International Trade +441113,International Trade,International Trade +440795,International Trade,International Trade +440794,International Trade,International Trade +438685,International Trade,International Trade +438683,International Trade,International Trade +438680,International Trade,International Trade +438677,International Trade,International Trade +438674,International Trade,International Trade +438670,International Trade,International Trade +438661,International Trade,International Trade +438657,International Trade,International Trade +438654,International Trade,International Trade +438650,International Trade,International Trade +438645,International Trade,International Trade +438644,International Trade,International Trade +438641,International Trade,International Trade +438639,International Trade,International Trade +438636,International Trade,International Trade +438633,International Trade,International Trade +438630,International Trade,International Trade +438627,International Trade,International Trade +438625,International Trade,International Trade +438624,International Trade,International Trade +438622,International Trade,International Trade +438619,International Trade,International Trade +437374,International Trade,International Trade +437371,International Trade,International Trade +437368,International Trade,International Trade +437118,International Trade,International Trade +437115,International Trade,International Trade +436950,International Trade,International Trade +436949,International Trade,International Trade +436948,International Trade,International Trade +436903,International Trade,International Trade +436901,International Trade,International Trade +436900,International Trade,International Trade +436899,International Trade,International Trade +434661,International Trade,International Trade +434660,International Trade,International Trade +434659,International Trade,International Trade +434658,International Trade,International Trade +434657,International Trade,International Trade +434656,International Trade,International Trade +434655,International Trade,International Trade +434497,International Trade,International Trade +434496,International Trade,International Trade +434493,International Trade,International Trade +434492,International Trade,International Trade +434491,International Trade,International Trade +434490,International Trade,International Trade +519091,International Trade,International Trade +481030,International Trade,International Trade +405911,International Trade,International Trade +404066,International Trade,International Trade +401731,International Trade,International Trade +401730,International Trade,International Trade +401729,International Trade,International Trade +401728,International Trade,International Trade +401727,International Trade,International Trade +401724,International Trade,International Trade +401723,International Trade,International Trade +401721,International Trade,International Trade +401716,International Trade,International Trade +389640,International Trade,International Trade +389628,International Trade,International Trade +373000,International Trade,International Trade +372999,International Trade,International Trade +372997,International Trade,International Trade +372995,International Trade,International Trade +372993,International Trade,International Trade +544288,International Trade,International Trade +539795,International Trade,International Trade +527815,International Trade,International Trade +522669,International Trade,International Trade +519095,International Trade,International Trade +519094,International Trade,International Trade +519093,International Trade,International Trade +528911,Health,Health +528907,Health,Health +101097,Health,Health +101094,Health,Health +92739,Health,Health +92738,Health,Health +89902,Health,Health +89899,Health,Health +84314,Health,Health +149959,Health,Health +149958,Health,Health +144096,Health,Health +113873,Health,Health +108754,Health,Health +188769,Health,Health +188768,Health,Health +188766,Health,Health +188763,Health,Health +185530,Health,Health +170411,Health,Health +162116,Health,Health +162115,Health,Health +162114,Health,Health +162112,Health,Health +162109,Health,Health +162107,Health,Health +162106,Health,Health +162105,Health,Health +161036,Health,Health +157302,Health,Health +157301,Health,Health +157299,Health,Health +157298,Health,Health +157290,Health,Health +157289,Health,Health +157288,Health,Health +157287,Health,Health +157286,Health,Health +388397,Health,Health +384537,Health,Health +360322,Health,Health +335916,Health,Health +277293,Health,Health +240750,Health,Health +236411,Health,Health +230213,Health,Health +528904,Health,Health +524996,Health,Health +524995,Health,Health +524994,Health,Health +524991,Health,Health +521288,Health,Health +521287,Health,Health +521286,Health,Health +519185,Health,Health +519183,Health,Health +517791,Health,Health +517790,Health,Health +517789,Health,Health +517788,Health,Health +517786,Health,Health +517785,Health,Health +517784,Health,Health +517782,Health,Health +517781,Health,Health +517780,Health,Health +517779,Health,Health +515408,Health,Health +515407,Health,Health +515406,Health,Health +515405,Health,Health +515404,Health,Health +513753,Health,Health +512275,Health,Health +512274,Health,Health +512273,Health,Health +512272,Health,Health +512271,Health,Health +510218,Health,Health +510217,Health,Health +510216,Health,Health +510213,Health,Health +508479,Health,Health +508472,Health,Health +507831,Health,Health +507822,Health,Health +504156,Health,Health +503825,Health,Health +500921,Health,Health +500920,Health,Health +500918,Health,Health +500916,Health,Health +497708,Health,Health +497702,Health,Health +484304,Health,Health +471312,Health,Health +464169,Health,Health +464166,Health,Health +462036,Health,Health +460451,Health,Health +460265,Health,Health +459815,Health,Health +458519,Health,Health +456881,Health,Health +454975,Health,Health +451333,Health,Health +451331,Health,Health +451326,Health,Health +451325,Health,Health +445253,Health,Health +433987,Health,Health +433986,Health,Health +429942,Health,Health +429941,Health,Health +429940,Health,Health +429939,Health,Health +429938,Health,Health +429937,Health,Health +416181,Health,Health +416178,Health,Health +416176,Health,Health +416172,Health,Health +416167,Health,Health +393780,Health,Health +539371,Health,Health +539370,Health,Health +537205,Health,Health +537203,Health,Health +537201,Health,Health +537196,Health,Health +537194,Health,Health +534120,Health,Health +534116,Health,Health +532034,Health,Health +532033,Health,Health +528921,Health,Health +528919,Health,Health +519184,Industry,Industry +519183,Industry,Industry +92739,Industry,Industry +92738,Industry,Industry +89902,Industry,Industry +89899,Industry,Industry +87374,Industry,Industry +84314,Industry,Industry +185530,Industry,Industry +149960,Industry,Industry +149959,Industry,Industry +149958,Industry,Industry +113873,Industry,Industry +108754,Industry,Industry +393780,Industry,Industry +236411,Industry,Industry +233371,Industry,Industry +517791,Industry,Industry +517790,Industry,Industry +517788,Industry,Industry +517786,Industry,Industry +517785,Industry,Industry +517784,Industry,Industry +517782,Industry,Industry +517781,Industry,Industry +515408,Industry,Industry +515407,Industry,Industry +515406,Industry,Industry +515405,Industry,Industry +515403,Industry,Industry +513753,Industry,Industry +512275,Industry,Industry +512274,Industry,Industry +512273,Industry,Industry +512272,Industry,Industry +512271,Industry,Industry +510218,Industry,Industry +510217,Industry,Industry +510216,Industry,Industry +508479,Industry,Industry +508472,Industry,Industry +507831,Industry,Industry +507822,Industry,Industry +504156,Industry,Industry +503825,Industry,Industry +500921,Industry,Industry +500920,Industry,Industry +500918,Industry,Industry +500916,Industry,Industry +497708,Industry,Industry +497702,Industry,Industry +454975,Industry,Industry +451333,Industry,Industry +451331,Industry,Industry +451326,Industry,Industry +451325,Industry,Industry +445253,Industry,Industry +537205,Industry,Industry +537203,Industry,Industry +537201,Industry,Industry +537196,Industry,Industry +537194,Industry,Industry +534120,Industry,Industry +534116,Industry,Industry +532034,Industry,Industry +532033,Industry,Industry +528918,Industry,Industry +528914,Industry,Industry +528911,Industry,Industry +528910,Industry,Industry +528907,Industry,Industry +528904,Industry,Industry +524996,Industry,Industry +524995,Industry,Industry +524994,Industry,Industry +524991,Industry,Industry +521288,Industry,Industry +521287,Industry,Industry +521286,Industry,Industry +497708,Intellectual Property,Intellectual Property +497702,Intellectual Property,Intellectual Property +149958,Intellectual Property,Intellectual Property +113873,Intellectual Property,Intellectual Property +108754,Intellectual Property,Intellectual Property +92739,Intellectual Property,Intellectual Property +92738,Intellectual Property,Intellectual Property +89902,Intellectual Property,Intellectual Property +89899,Intellectual Property,Intellectual Property +236411,Intellectual Property,Intellectual Property +185530,Intellectual Property,Intellectual Property +149959,Intellectual Property,Intellectual Property +445253,Intellectual Property,Intellectual Property +393780,Intellectual Property,Intellectual Property +379728,Intellectual Property,Intellectual Property +510218,Intellectual Property,Intellectual Property +510216,Intellectual Property,Intellectual Property +508479,Intellectual Property,Intellectual Property +508472,Intellectual Property,Intellectual Property +507831,Intellectual Property,Intellectual Property +507822,Intellectual Property,Intellectual Property +504156,Intellectual Property,Intellectual Property +503825,Intellectual Property,Intellectual Property +500921,Intellectual Property,Intellectual Property +500920,Intellectual Property,Intellectual Property +500918,Intellectual Property,Intellectual Property +277299,International Trade,International Trade +503825,International Trade,International Trade +185530,International Trade,International Trade +149959,International Trade,International Trade +149958,International Trade,International Trade +92738,International Trade,International Trade +236411,International Trade,International Trade +194857,International Trade,International Trade +393780,International Trade,International Trade +471749,Agriculture,Agriculture +509846,Energy,Energy +509843,Energy,Energy +90509,Energy,Energy +90508,Energy,Energy +90504,Energy,Energy +90457,Energy,Energy +168671,Energy,Energy +125195,Energy,Energy +117414,Energy,Energy +109646,Energy,Energy +106657,Energy,Energy +106654,Energy,Energy +106640,Energy,Energy +442925,Energy,Energy +429738,Environment,Environment +429737,Environment,Environment +211840,Environment,Environment +545104,Environment,Environment +545102,Environment,Environment +544464,Environment,Environment +536739,Environment,Environment +536738,Environment,Environment +536737,Environment,Environment +533360,Environment,Environment +533358,Environment,Environment +530524,Environment,Environment +530523,Environment,Environment +530522,Environment,Environment +527572,Environment,Environment +527570,Environment,Environment +524114,Environment,Environment +524113,Environment,Environment +524110,Environment,Environment +521302,Environment,Environment +521300,Environment,Environment +521298,Environment,Environment +519225,Environment,Environment +513671,Environment,Environment +509850,Environment,Environment +509846,Environment,Environment +509843,Environment,Environment +509840,Environment,Environment +506533,Environment,Environment +500455,Environment,Environment +499757,Environment,Environment +497197,Environment,Environment +471752,Environment,Environment +471751,Environment,Environment +471750,Environment,Environment +442929,Environment,Environment +442928,Environment,Environment +442925,Environment,Environment +440816,Environment,Environment +433006,Environment,Environment +429740,Environment,Environment +106154,Industry,Industry +414141,Infrastructure,Infrastructure +474288,Infrastructure,Infrastructure +373132,Infrastructure,Infrastructure +373131,Infrastructure,Infrastructure +373124,Infrastructure,Infrastructure +344906,Infrastructure,Infrastructure +314613,Infrastructure,Infrastructure +314612,Infrastructure,Infrastructure +275070,Infrastructure,Infrastructure +166565,Infrastructure,Infrastructure +166564,Infrastructure,Infrastructure +462092,Infrastructure,Infrastructure +436445,Infrastructure,Infrastructure +436444,Infrastructure,Infrastructure +418918,Infrastructure,Infrastructure +438445,Environment,Environment +438428,Environment,Environment +381566,Environment,Environment +379630,Environment,Environment +379614,Environment,Environment +376721,Environment,Environment +413118,Environment,Environment +409784,Environment,Environment +409779,Environment,Environment +405148,Environment,Environment +403468,Environment,Environment +403465,Environment,Environment +403458,Environment,Environment +401104,Environment,Environment +400648,Environment,Environment +396394,Environment,Environment +522857,Environment,Environment +511147,Environment,Environment +508654,Environment,Environment +508650,Environment,Environment +505886,Environment,Environment +505879,Environment,Environment +499085,Financial Institutions,Financial Institutions +499075,Financial Institutions,Financial Institutions +152061,Financial Institutions,Financial Institutions +259431,Financial Institutions,Financial Institutions +259420,Financial Institutions,Financial Institutions +259396,Financial Institutions,Financial Institutions +254360,Financial Institutions,Financial Institutions +250890,Financial Institutions,Financial Institutions +250876,Financial Institutions,Financial Institutions +245532,Financial Institutions,Financial Institutions +240815,Financial Institutions,Financial Institutions +240814,Financial Institutions,Financial Institutions +237036,Financial Institutions,Financial Institutions +226907,Financial Institutions,Financial Institutions +226898,Financial Institutions,Financial Institutions +223625,Financial Institutions,Financial Institutions +206592,Financial Institutions,Financial Institutions +162385,Financial Institutions,Financial Institutions +379608,Financial Institutions,Financial Institutions +374848,Financial Institutions,Financial Institutions +373049,Financial Institutions,Financial Institutions +370108,Financial Institutions,Financial Institutions +370103,Financial Institutions,Financial Institutions +365006,Financial Institutions,Financial Institutions +365005,Financial Institutions,Financial Institutions +354078,Financial Institutions,Financial Institutions +351542,Financial Institutions,Financial Institutions +349220,Financial Institutions,Financial Institutions +342031,Financial Institutions,Financial Institutions +342016,Financial Institutions,Financial Institutions +341991,Financial Institutions,Financial Institutions +338384,Financial Institutions,Financial Institutions +338379,Financial Institutions,Financial Institutions +335961,Financial Institutions,Financial Institutions +333671,Financial Institutions,Financial Institutions +331588,Financial Institutions,Financial Institutions +331587,Financial Institutions,Financial Institutions +331586,Financial Institutions,Financial Institutions +331577,Financial Institutions,Financial Institutions +330213,Financial Institutions,Financial Institutions +327694,Financial Institutions,Financial Institutions +327653,Financial Institutions,Financial Institutions +325103,Financial Institutions,Financial Institutions +325100,Financial Institutions,Financial Institutions +325094,Financial Institutions,Financial Institutions +325092,Financial Institutions,Financial Institutions +325090,Financial Institutions,Financial Institutions +322289,Financial Institutions,Financial Institutions +319259,Financial Institutions,Financial Institutions +313195,Financial Institutions,Financial Institutions +313177,Financial Institutions,Financial Institutions +296990,Financial Institutions,Financial Institutions +296904,Financial Institutions,Financial Institutions +291146,Financial Institutions,Financial Institutions +291142,Financial Institutions,Financial Institutions +291140,Financial Institutions,Financial Institutions +287031,Financial Institutions,Financial Institutions +287030,Financial Institutions,Financial Institutions +473641,Financial Institutions,Financial Institutions +441918,Financial Institutions,Financial Institutions +438378,Financial Institutions,Financial Institutions +435527,Financial Institutions,Financial Institutions +432444,Financial Institutions,Financial Institutions +427542,Financial Institutions,Financial Institutions +417890,Financial Institutions,Financial Institutions +416723,Financial Institutions,Financial Institutions +416625,Financial Institutions,Financial Institutions +394266,Financial Institutions,Financial Institutions +392809,Financial Institutions,Financial Institutions +391195,Financial Institutions,Financial Institutions +391159,Financial Institutions,Financial Institutions +388162,Financial Institutions,Financial Institutions +388133,Financial Institutions,Financial Institutions +388061,Financial Institutions,Financial Institutions +387963,Financial Institutions,Financial Institutions +383637,Financial Institutions,Financial Institutions +518182,Financial Institutions,Financial Institutions +518154,Financial Institutions,Financial Institutions +518127,Financial Institutions,Financial Institutions +516775,Financial Institutions,Financial Institutions +505892,Financial Institutions,Financial Institutions +505861,Financial Institutions,Financial Institutions +441963,Government Procurement,Government Procurement +419866,Government Procurement,Government Procurement +150045,Government Procurement,Government Procurement +153380,Government Procurement,Government Procurement +150047,Government Procurement,Government Procurement +406782,Government Procurement,Government Procurement +391130,Government Procurement,Government Procurement +379594,Government Procurement,Government Procurement +374798,Government Procurement,Government Procurement +358098,Government Procurement,Government Procurement +322285,Government Procurement,Government Procurement +313175,Government Procurement,Government Procurement +240811,Government Procurement,Government Procurement +217615,Government Procurement,Government Procurement +200455,Government Procurement,Government Procurement +175642,Government Procurement,Government Procurement +171205,Government Procurement,Government Procurement +167995,Government Procurement,Government Procurement +162320,Government Procurement,Government Procurement +156688,Government Procurement,Government Procurement +487199,Government Procurement,Government Procurement +471066,Health,Health +471061,Health,Health +156692,Health,Health +374845,Health,Health +359721,Health,Health +520015,Health,Health +520013,Health,Health +520010,Health,Health +511164,Health,Health +502540,Health,Health +499103,Health,Health +475840,Health,Health +475803,Health,Health +473634,Health,Health +471071,Health,Health +471070,Health,Health +471069,Health,Health +528425,Immigration,Immigration +518173,Immigration,Immigration +76901,Immigration,Immigration +152049,Immigration,Immigration +342035,Immigration,Immigration +342028,Immigration,Immigration +333677,Immigration,Immigration +333676,Immigration,Immigration +333674,Immigration,Immigration +333667,Immigration,Immigration +325102,Immigration,Immigration +471056,Immigration,Immigration +471046,Immigration,Immigration +471013,Immigration,Immigration +467879,Immigration,Immigration +467850,Immigration,Immigration +467336,Immigration,Immigration +440689,Immigration,Immigration +432452,Immigration,Immigration +406777,Immigration,Immigration +391163,Immigration,Immigration +385395,Immigration,Immigration +385364,Immigration,Immigration +382446,Immigration,Immigration +382445,Immigration,Immigration +382443,Immigration,Immigration +382439,Immigration,Immigration +382438,Immigration,Immigration +379695,Immigration,Immigration +379694,Immigration,Immigration +379649,Immigration,Immigration +374784,Immigration,Immigration +372923,Immigration,Immigration +372922,Immigration,Immigration +370104,Immigration,Immigration +421606,Industry,Industry +421534,Industry,Industry +226897,Industry,Industry +217619,Industry,Industry +200461,Industry,Industry +416679,Industry,Industry +518154,Industry,Industry +495284,Industry,Industry +491777,Industry,Industry +487203,Industry,Industry +277166,Infrastructure,Infrastructure +372948,Infrastructure,Infrastructure +297012,Infrastructure,Infrastructure +296929,Infrastructure,Infrastructure +341998,Intellectual Property,Intellectual Property +327686,Intellectual Property,Intellectual Property +202897,Intellectual Property,Intellectual Property +538726,Internal Trade,Internal Trade +538725,Internal Trade,Internal Trade +141476,Internal Trade,Internal Trade +379671,Internal Trade,Internal Trade +379661,Internal Trade,Internal Trade +379649,Internal Trade,Internal Trade +372931,Internal Trade,Internal Trade +356354,Internal Trade,Internal Trade +354082,Internal Trade,Internal Trade +347286,Internal Trade,Internal Trade +338378,Internal Trade,Internal Trade +335975,Internal Trade,Internal Trade +322283,Internal Trade,Internal Trade +313192,Internal Trade,Internal Trade +538724,Internal Trade,Internal Trade +532074,Internal Trade,Internal Trade +482112,Internal Trade,Internal Trade +447289,Internal Trade,Internal Trade +443307,Internal Trade,Internal Trade +441922,Internal Trade,Internal Trade +438432,Internal Trade,Internal Trade +424003,Internal Trade,Internal Trade +421612,Internal Trade,Internal Trade +421534,Internal Trade,Internal Trade +416749,Internal Trade,Internal Trade +409798,Internal Trade,Internal Trade +405128,Internal Trade,Internal Trade +400632,Internal Trade,Internal Trade +400627,Internal Trade,Internal Trade +455495,International Trade,International Trade +445342,International Trade,International Trade +97480,International Trade,International Trade +189573,International Trade,International Trade +189088,International Trade,International Trade +189072,International Trade,International Trade +189065,International Trade,International Trade +185482,International Trade,International Trade +180411,International Trade,International Trade +167992,International Trade,International Trade +141476,International Trade,International Trade +304439,International Trade,International Trade +304438,International Trade,International Trade +282852,International Trade,International Trade +240828,International Trade,International Trade +234090,International Trade,International Trade +233780,International Trade,International Trade +226910,International Trade,International Trade +430889,International Trade,International Trade +426013,International Trade,International Trade +424083,International Trade,International Trade +424003,International Trade,International Trade +419958,International Trade,International Trade +419863,International Trade,International Trade +416749,International Trade,International Trade +409798,International Trade,International Trade +408001,International Trade,International Trade +405133,International Trade,International Trade +403475,International Trade,International Trade +403471,International Trade,International Trade +403463,International Trade,International Trade +403461,International Trade,International Trade +400643,International Trade,International Trade +398763,International Trade,International Trade +398762,International Trade,International Trade +398759,International Trade,International Trade +398728,International Trade,International Trade +394327,International Trade,International Trade +391176,International Trade,International Trade +387978,International Trade,International Trade +381535,International Trade,International Trade +374826,International Trade,International Trade +372949,International Trade,International Trade +372924,International Trade,International Trade +370107,International Trade,International Trade +370106,International Trade,International Trade +365006,International Trade,International Trade +362376,International Trade,International Trade +359720,International Trade,International Trade +356359,International Trade,International Trade +349244,International Trade,International Trade +338378,International Trade,International Trade +325093,International Trade,International Trade +322304,International Trade,International Trade +322235,International Trade,International Trade +322232,International Trade,International Trade +322231,International Trade,International Trade +322229,International Trade,International Trade +322226,International Trade,International Trade +319256,International Trade,International Trade +319251,International Trade,International Trade +313179,International Trade,International Trade +499062,International Trade,International Trade +459536,Labour,Labour +458438,Labour,Labour +109271,Labour,Labour +152060,Labour,Labour +152049,Labour,Labour +141481,Labour,Labour +162308,Labour,Labour +331573,Labour,Labour +330211,Labour,Labour +327738,Labour,Labour +327709,Labour,Labour +327705,Labour,Labour +327666,Labour,Labour +327592,Labour,Labour +325096,Labour,Labour +322306,Labour,Labour +322290,Labour,Labour +322288,Labour,Labour +322258,Labour,Labour +322256,Labour,Labour +322255,Labour,Labour +322241,Labour,Labour +310488,Labour,Labour +304439,Labour,Labour +297009,Labour,Labour +291145,Labour,Labour +291134,Labour,Labour +282892,Labour,Labour +277159,Labour,Labour +273209,Labour,Labour +264467,Labour,Labour +233775,Labour,Labour +223591,Labour,Labour +217618,Labour,Labour +432447,Labour,Labour +417923,Labour,Labour +416679,Labour,Labour +416667,Labour,Labour +416647,Labour,Labour +416629,Labour,Labour +413187,Labour,Labour +413156,Labour,Labour +409791,Labour,Labour +400637,Labour,Labour +391163,Labour,Labour +391138,Labour,Labour +391133,Labour,Labour +379667,Labour,Labour +372917,Labour,Labour +367362,Labour,Labour +354075,Labour,Labour +354058,Labour,Labour +354050,Labour,Labour +351535,Labour,Labour +351532,Labour,Labour +351531,Labour,Labour +344036,Labour,Labour +344035,Labour,Labour +342035,Labour,Labour +342028,Labour,Labour +338391,Labour,Labour +336008,Labour,Labour +336005,Labour,Labour +336004,Labour,Labour +336002,Labour,Labour +336000,Labour,Labour +335998,Labour,Labour +333692,Labour,Labour +333691,Labour,Labour +333688,Labour,Labour +333687,Labour,Labour +333684,Labour,Labour +333682,Labour,Labour +333681,Labour,Labour +333680,Labour,Labour +333679,Labour,Labour +333678,Labour,Labour +331588,Labour,Labour +331587,Labour,Labour +331586,Labour,Labour +535905,Labour,Labour +528425,Labour,Labour +528398,Labour,Labour +528397,Labour,Labour +528396,Labour,Labour +528032,Labour,Labour +526337,Labour,Labour +526326,Labour,Labour +526324,Labour,Labour +526320,Labour,Labour +526162,Labour,Labour +526159,Labour,Labour +526157,Labour,Labour +526155,Labour,Labour +526153,Labour,Labour +526145,Labour,Labour +522858,Labour,Labour +522854,Labour,Labour +522840,Labour,Labour +520044,Labour,Labour +520042,Labour,Labour +520036,Labour,Labour +520028,Labour,Labour +520019,Labour,Labour +520015,Labour,Labour +520013,Labour,Labour +520010,Labour,Labour +518197,Labour,Labour +518195,Labour,Labour +518173,Labour,Labour +502623,Labour,Labour +482112,Labour,Labour +471018,Labour,Labour +463976,Labour,Labour +463975,Labour,Labour +421606,Regional Development,Regional Development +401105,Regional Development,Regional Development +344040,Regional Development,Regional Development +344036,Regional Development,Regional Development +325103,Regional Development,Regional Development +515379,Regional Development,Regional Development +493433,Regional Development,Regional Development +487204,Regional Development,Regional Development +480278,Regional Development,Regional Development +447271,Regional Development,Regional Development +457647,Small Business,Small Business +457646,Small Business,Small Business +137555,Small Business,Small Business +137554,Small Business,Small Business +137536,Small Business,Small Business +137535,Small Business,Small Business +97490,Small Business,Small Business +156680,Small Business,Small Business +156678,Small Business,Small Business +156675,Small Business,Small Business +154645,Small Business,Small Business +154644,Small Business,Small Business +153380,Small Business,Small Business +152064,Small Business,Small Business +152063,Small Business,Small Business +152061,Small Business,Small Business +152060,Small Business,Small Business +152056,Small Business,Small Business +152053,Small Business,Small Business +152049,Small Business,Small Business +150047,Small Business,Small Business +150046,Small Business,Small Business +150045,Small Business,Small Business +147794,Small Business,Small Business +145517,Small Business,Small Business +145475,Small Business,Small Business +141481,Small Business,Small Business +141477,Small Business,Small Business +141476,Small Business,Small Business +141475,Small Business,Small Business +180412,Small Business,Small Business +180411,Small Business,Small Business +175642,Small Business,Small Business +175640,Small Business,Small Business +175639,Small Business,Small Business +171205,Small Business,Small Business +171204,Small Business,Small Business +167995,Small Business,Small Business +167994,Small Business,Small Business +167992,Small Business,Small Business +167990,Small Business,Small Business +167984,Small Business,Small Business +167982,Small Business,Small Business +167981,Small Business,Small Business +167979,Small Business,Small Business +167978,Small Business,Small Business +167976,Small Business,Small Business +167975,Small Business,Small Business +167974,Small Business,Small Business +167972,Small Business,Small Business +167969,Small Business,Small Business +167968,Small Business,Small Business +167966,Small Business,Small Business +167965,Small Business,Small Business +165853,Small Business,Small Business +165851,Small Business,Small Business +165849,Small Business,Small Business +165847,Small Business,Small Business +165845,Small Business,Small Business +165843,Small Business,Small Business +165841,Small Business,Small Business +165839,Small Business,Small Business +163951,Small Business,Small Business +163949,Small Business,Small Business +163944,Small Business,Small Business +162385,Small Business,Small Business +162375,Small Business,Small Business +162371,Small Business,Small Business +162362,Small Business,Small Business +162329,Small Business,Small Business +162320,Small Business,Small Business +162308,Small Business,Small Business +159810,Small Business,Small Business +159809,Small Business,Small Business +159804,Small Business,Small Business +159801,Small Business,Small Business +159799,Small Business,Small Business +156899,Small Business,Small Business +156693,Small Business,Small Business +156692,Small Business,Small Business +156691,Small Business,Small Business +156690,Small Business,Small Business +156689,Small Business,Small Business +156688,Small Business,Small Business +156681,Small Business,Small Business +240827,Small Business,Small Business +240826,Small Business,Small Business +240824,Small Business,Small Business +240823,Small Business,Small Business +240820,Small Business,Small Business +240819,Small Business,Small Business +240818,Small Business,Small Business +240817,Small Business,Small Business +240815,Small Business,Small Business +240814,Small Business,Small Business +240811,Small Business,Small Business +237040,Small Business,Small Business +237039,Small Business,Small Business +237038,Small Business,Small Business +237037,Small Business,Small Business +237036,Small Business,Small Business +237035,Small Business,Small Business +234090,Small Business,Small Business +233780,Small Business,Small Business +233778,Small Business,Small Business +233775,Small Business,Small Business +233773,Small Business,Small Business +230154,Small Business,Small Business +230152,Small Business,Small Business +230150,Small Business,Small Business +230149,Small Business,Small Business +226910,Small Business,Small Business +226907,Small Business,Small Business +226899,Small Business,Small Business +226898,Small Business,Small Business +226897,Small Business,Small Business +226896,Small Business,Small Business +226894,Small Business,Small Business +226893,Small Business,Small Business +226892,Small Business,Small Business +226891,Small Business,Small Business +226890,Small Business,Small Business +226889,Small Business,Small Business +226888,Small Business,Small Business +226887,Small Business,Small Business +223625,Small Business,Small Business +223604,Small Business,Small Business +223602,Small Business,Small Business +223599,Small Business,Small Business +223596,Small Business,Small Business +223591,Small Business,Small Business +217629,Small Business,Small Business +217628,Small Business,Small Business +217623,Small Business,Small Business +217622,Small Business,Small Business +217621,Small Business,Small Business +217619,Small Business,Small Business +217618,Small Business,Small Business +217617,Small Business,Small Business +217615,Small Business,Small Business +217613,Small Business,Small Business +217610,Small Business,Small Business +217607,Small Business,Small Business +217600,Small Business,Small Business +217598,Small Business,Small Business +217594,Small Business,Small Business +217590,Small Business,Small Business +217588,Small Business,Small Business +212430,Small Business,Small Business +212426,Small Business,Small Business +212422,Small Business,Small Business +212419,Small Business,Small Business +212417,Small Business,Small Business +212415,Small Business,Small Business +206611,Small Business,Small Business +206610,Small Business,Small Business +206609,Small Business,Small Business +206608,Small Business,Small Business +206607,Small Business,Small Business +206598,Small Business,Small Business +206597,Small Business,Small Business +206596,Small Business,Small Business +206595,Small Business,Small Business +206594,Small Business,Small Business +206592,Small Business,Small Business +202910,Small Business,Small Business +202906,Small Business,Small Business +202897,Small Business,Small Business +200476,Small Business,Small Business +200471,Small Business,Small Business +200461,Small Business,Small Business +200458,Small Business,Small Business +200457,Small Business,Small Business +200455,Small Business,Small Business +200446,Small Business,Small Business +200432,Small Business,Small Business +200428,Small Business,Small Business +200420,Small Business,Small Business +194912,Small Business,Small Business +194910,Small Business,Small Business +194908,Small Business,Small Business +194906,Small Business,Small Business +194901,Small Business,Small Business +194898,Small Business,Small Business +189573,Small Business,Small Business +189112,Small Business,Small Business +189109,Small Business,Small Business +189106,Small Business,Small Business +189096,Small Business,Small Business +189093,Small Business,Small Business +189092,Small Business,Small Business +189090,Small Business,Small Business +189088,Small Business,Small Business +189073,Small Business,Small Business +189072,Small Business,Small Business +189065,Small Business,Small Business +186926,Small Business,Small Business +186925,Small Business,Small Business +185493,Small Business,Small Business +185492,Small Business,Small Business +185490,Small Business,Small Business +185489,Small Business,Small Business +185488,Small Business,Small Business +185487,Small Business,Small Business +185486,Small Business,Small Business +185484,Small Business,Small Business +185482,Small Business,Small Business +185481,Small Business,Small Business +185480,Small Business,Small Business +185478,Small Business,Small Business +180414,Small Business,Small Business +180413,Small Business,Small Business +333682,Small Business,Small Business +333681,Small Business,Small Business +333680,Small Business,Small Business +333679,Small Business,Small Business +333678,Small Business,Small Business +333677,Small Business,Small Business +333676,Small Business,Small Business +333674,Small Business,Small Business +333673,Small Business,Small Business +333672,Small Business,Small Business +333671,Small Business,Small Business +333670,Small Business,Small Business +333669,Small Business,Small Business +333667,Small Business,Small Business +333664,Small Business,Small Business +333660,Small Business,Small Business +333658,Small Business,Small Business +333657,Small Business,Small Business +333656,Small Business,Small Business +331588,Small Business,Small Business +331587,Small Business,Small Business +331586,Small Business,Small Business +331577,Small Business,Small Business +331573,Small Business,Small Business +331566,Small Business,Small Business +331565,Small Business,Small Business +330222,Small Business,Small Business +330220,Small Business,Small Business +330218,Small Business,Small Business +330217,Small Business,Small Business +330216,Small Business,Small Business +330215,Small Business,Small Business +330214,Small Business,Small Business +330213,Small Business,Small Business +330211,Small Business,Small Business +330210,Small Business,Small Business +330209,Small Business,Small Business +330205,Small Business,Small Business +330203,Small Business,Small Business +330195,Small Business,Small Business +327738,Small Business,Small Business +327737,Small Business,Small Business +327733,Small Business,Small Business +327731,Small Business,Small Business +327729,Small Business,Small Business +327725,Small Business,Small Business +327709,Small Business,Small Business +327705,Small Business,Small Business +327694,Small Business,Small Business +327686,Small Business,Small Business +327680,Small Business,Small Business +327666,Small Business,Small Business +327592,Small Business,Small Business +325105,Small Business,Small Business +325104,Small Business,Small Business +325103,Small Business,Small Business +325102,Small Business,Small Business +325101,Small Business,Small Business +325100,Small Business,Small Business +325096,Small Business,Small Business +325095,Small Business,Small Business +325094,Small Business,Small Business +325093,Small Business,Small Business +325092,Small Business,Small Business +325090,Small Business,Small Business +325089,Small Business,Small Business +325088,Small Business,Small Business +325087,Small Business,Small Business +322306,Small Business,Small Business +322304,Small Business,Small Business +322297,Small Business,Small Business +322295,Small Business,Small Business +322293,Small Business,Small Business +322290,Small Business,Small Business +322289,Small Business,Small Business +322288,Small Business,Small Business +322285,Small Business,Small Business +322283,Small Business,Small Business +322282,Small Business,Small Business +322279,Small Business,Small Business +322258,Small Business,Small Business +322256,Small Business,Small Business +322255,Small Business,Small Business +322241,Small Business,Small Business +322235,Small Business,Small Business +322232,Small Business,Small Business +322231,Small Business,Small Business +322229,Small Business,Small Business +322226,Small Business,Small Business +319259,Small Business,Small Business +319258,Small Business,Small Business +319256,Small Business,Small Business +319255,Small Business,Small Business +319254,Small Business,Small Business +319251,Small Business,Small Business +319250,Small Business,Small Business +319248,Small Business,Small Business +316041,Small Business,Small Business +316039,Small Business,Small Business +316036,Small Business,Small Business +316034,Small Business,Small Business +316033,Small Business,Small Business +316032,Small Business,Small Business +316031,Small Business,Small Business +316030,Small Business,Small Business +316029,Small Business,Small Business +316028,Small Business,Small Business +316026,Small Business,Small Business +316025,Small Business,Small Business +316024,Small Business,Small Business +316022,Small Business,Small Business +316021,Small Business,Small Business +316020,Small Business,Small Business +313195,Small Business,Small Business +313193,Small Business,Small Business +313192,Small Business,Small Business +313191,Small Business,Small Business +313189,Small Business,Small Business +313187,Small Business,Small Business +313185,Small Business,Small Business +313183,Small Business,Small Business +313179,Small Business,Small Business +313178,Small Business,Small Business +313177,Small Business,Small Business +313175,Small Business,Small Business +310492,Small Business,Small Business +310490,Small Business,Small Business +310488,Small Business,Small Business +310487,Small Business,Small Business +310486,Small Business,Small Business +310476,Small Business,Small Business +310473,Small Business,Small Business +310467,Small Business,Small Business +304488,Small Business,Small Business +304485,Small Business,Small Business +304484,Small Business,Small Business +304481,Small Business,Small Business +304478,Small Business,Small Business +304476,Small Business,Small Business +304474,Small Business,Small Business +304473,Small Business,Small Business +304471,Small Business,Small Business +304470,Small Business,Small Business +304451,Small Business,Small Business +304449,Small Business,Small Business +304439,Small Business,Small Business +304438,Small Business,Small Business +304437,Small Business,Small Business +304435,Small Business,Small Business +304433,Small Business,Small Business +304432,Small Business,Small Business +304431,Small Business,Small Business +297013,Small Business,Small Business +297012,Small Business,Small Business +297011,Small Business,Small Business +297009,Small Business,Small Business +296990,Small Business,Small Business +296969,Small Business,Small Business +296929,Small Business,Small Business +296909,Small Business,Small Business +296908,Small Business,Small Business +296906,Small Business,Small Business +296904,Small Business,Small Business +296903,Small Business,Small Business +291190,Small Business,Small Business +291189,Small Business,Small Business +291155,Small Business,Small Business +291148,Small Business,Small Business +291146,Small Business,Small Business +291145,Small Business,Small Business +291142,Small Business,Small Business +291140,Small Business,Small Business +291138,Small Business,Small Business +291137,Small Business,Small Business +291134,Small Business,Small Business +291132,Small Business,Small Business +287031,Small Business,Small Business +287030,Small Business,Small Business +286969,Small Business,Small Business +286950,Small Business,Small Business +282892,Small Business,Small Business +282869,Small Business,Small Business +282855,Small Business,Small Business +282852,Small Business,Small Business +282850,Small Business,Small Business +282838,Small Business,Small Business +282837,Small Business,Small Business +282835,Small Business,Small Business +282572,Small Business,Small Business +282570,Small Business,Small Business +282569,Small Business,Small Business +282530,Small Business,Small Business +282529,Small Business,Small Business +282515,Small Business,Small Business +282514,Small Business,Small Business +282513,Small Business,Small Business +278149,Small Business,Small Business +277177,Small Business,Small Business +277171,Small Business,Small Business +277169,Small Business,Small Business +277166,Small Business,Small Business +277162,Small Business,Small Business +277159,Small Business,Small Business +275450,Small Business,Small Business +273209,Small Business,Small Business +273190,Small Business,Small Business +273189,Small Business,Small Business +273176,Small Business,Small Business +269603,Small Business,Small Business +269601,Small Business,Small Business +269598,Small Business,Small Business +269596,Small Business,Small Business +269593,Small Business,Small Business +269589,Small Business,Small Business +269587,Small Business,Small Business +264467,Small Business,Small Business +264466,Small Business,Small Business +264465,Small Business,Small Business +264462,Small Business,Small Business +264461,Small Business,Small Business +264460,Small Business,Small Business +264459,Small Business,Small Business +264458,Small Business,Small Business +264457,Small Business,Small Business +264455,Small Business,Small Business +264453,Small Business,Small Business +264452,Small Business,Small Business +264448,Small Business,Small Business +264447,Small Business,Small Business +264444,Small Business,Small Business +264439,Small Business,Small Business +259531,Small Business,Small Business +259434,Small Business,Small Business +259431,Small Business,Small Business +259429,Small Business,Small Business +259427,Small Business,Small Business +259420,Small Business,Small Business +259419,Small Business,Small Business +259415,Small Business,Small Business +259409,Small Business,Small Business +259396,Small Business,Small Business +259394,Small Business,Small Business +254364,Small Business,Small Business +254362,Small Business,Small Business +254361,Small Business,Small Business +254360,Small Business,Small Business +254359,Small Business,Small Business +254358,Small Business,Small Business +250890,Small Business,Small Business +250887,Small Business,Small Business +250882,Small Business,Small Business +250876,Small Business,Small Business +250871,Small Business,Small Business +250868,Small Business,Small Business +245532,Small Business,Small Business +245530,Small Business,Small Business +245528,Small Business,Small Business +245525,Small Business,Small Business +245495,Small Business,Small Business +245494,Small Business,Small Business +245491,Small Business,Small Business +245488,Small Business,Small Business +245485,Small Business,Small Business +245483,Small Business,Small Business +245481,Small Business,Small Business +240828,Small Business,Small Business +457645,Small Business,Small Business +457644,Small Business,Small Business +457643,Small Business,Small Business +457642,Small Business,Small Business +457641,Small Business,Small Business +457639,Small Business,Small Business +455503,Small Business,Small Business +455502,Small Business,Small Business +455499,Small Business,Small Business +455497,Small Business,Small Business +455495,Small Business,Small Business +452020,Small Business,Small Business +451972,Small Business,Small Business +451971,Small Business,Small Business +451970,Small Business,Small Business +451969,Small Business,Small Business +451968,Small Business,Small Business +450018,Small Business,Small Business +445337,Small Business,Small Business +445336,Small Business,Small Business +443300,Small Business,Small Business +441958,Small Business,Small Business +441955,Small Business,Small Business +441930,Small Business,Small Business +441913,Small Business,Small Business +440741,Small Business,Small Business +440739,Small Business,Small Business +440737,Small Business,Small Business +440735,Small Business,Small Business +440734,Small Business,Small Business +438445,Small Business,Small Business +438440,Small Business,Small Business +438437,Small Business,Small Business +438432,Small Business,Small Business +438428,Small Business,Small Business +438425,Small Business,Small Business +438423,Small Business,Small Business +438414,Small Business,Small Business +435528,Small Business,Small Business +435527,Small Business,Small Business +435523,Small Business,Small Business +435518,Small Business,Small Business +433626,Small Business,Small Business +432457,Small Business,Small Business +432456,Small Business,Small Business +430912,Small Business,Small Business +430909,Small Business,Small Business +430907,Small Business,Small Business +430903,Small Business,Small Business +430902,Small Business,Small Business +430900,Small Business,Small Business +430897,Small Business,Small Business +430892,Small Business,Small Business +430889,Small Business,Small Business +429295,Small Business,Small Business +429293,Small Business,Small Business +429290,Small Business,Small Business +429289,Small Business,Small Business +429285,Small Business,Small Business +429279,Small Business,Small Business +429272,Small Business,Small Business +429270,Small Business,Small Business +429263,Small Business,Small Business +429261,Small Business,Small Business +429256,Small Business,Small Business +429245,Small Business,Small Business +429232,Small Business,Small Business +429231,Small Business,Small Business +429228,Small Business,Small Business +429226,Small Business,Small Business +429223,Small Business,Small Business +429219,Small Business,Small Business +429211,Small Business,Small Business +429207,Small Business,Small Business +429205,Small Business,Small Business +429202,Small Business,Small Business +427542,Small Business,Small Business +426051,Small Business,Small Business +426049,Small Business,Small Business +426047,Small Business,Small Business +426045,Small Business,Small Business +426043,Small Business,Small Business +426042,Small Business,Small Business +426040,Small Business,Small Business +426036,Small Business,Small Business +426032,Small Business,Small Business +426026,Small Business,Small Business +426013,Small Business,Small Business +424348,Small Business,Small Business +424114,Small Business,Small Business +424099,Small Business,Small Business +424097,Small Business,Small Business +424095,Small Business,Small Business +424094,Small Business,Small Business +424090,Small Business,Small Business +424088,Small Business,Small Business +424083,Small Business,Small Business +424078,Small Business,Small Business +424076,Small Business,Small Business +424072,Small Business,Small Business +424063,Small Business,Small Business +424058,Small Business,Small Business +424053,Small Business,Small Business +424032,Small Business,Small Business +424003,Small Business,Small Business +421612,Small Business,Small Business +421611,Small Business,Small Business +421534,Small Business,Small Business +419860,Small Business,Small Business +419858,Small Business,Small Business +417929,Small Business,Small Business +417923,Small Business,Small Business +417920,Small Business,Small Business +417919,Small Business,Small Business +417893,Small Business,Small Business +417891,Small Business,Small Business +417890,Small Business,Small Business +416749,Small Business,Small Business +416746,Small Business,Small Business +416723,Small Business,Small Business +416694,Small Business,Small Business +416679,Small Business,Small Business +416676,Small Business,Small Business +416667,Small Business,Small Business +416660,Small Business,Small Business +416647,Small Business,Small Business +416639,Small Business,Small Business +416625,Small Business,Small Business +416623,Small Business,Small Business +413192,Small Business,Small Business +413187,Small Business,Small Business +413156,Small Business,Small Business +413147,Small Business,Small Business +413144,Small Business,Small Business +413120,Small Business,Small Business +413118,Small Business,Small Business +413116,Small Business,Small Business +413097,Small Business,Small Business +413062,Small Business,Small Business +409821,Small Business,Small Business +409817,Small Business,Small Business +409813,Small Business,Small Business +409810,Small Business,Small Business +409808,Small Business,Small Business +409805,Small Business,Small Business +409798,Small Business,Small Business +409796,Small Business,Small Business +409791,Small Business,Small Business +409776,Small Business,Small Business +409766,Small Business,Small Business +409764,Small Business,Small Business +409761,Small Business,Small Business +409755,Small Business,Small Business +408018,Small Business,Small Business +408016,Small Business,Small Business +408015,Small Business,Small Business +408010,Small Business,Small Business +408006,Small Business,Small Business +408004,Small Business,Small Business +408003,Small Business,Small Business +408001,Small Business,Small Business +407999,Small Business,Small Business +407998,Small Business,Small Business +407990,Small Business,Small Business +407988,Small Business,Small Business +406789,Small Business,Small Business +406788,Small Business,Small Business +406787,Small Business,Small Business +406782,Small Business,Small Business +406777,Small Business,Small Business +405173,Small Business,Small Business +405171,Small Business,Small Business +405169,Small Business,Small Business +405167,Small Business,Small Business +405164,Small Business,Small Business +405160,Small Business,Small Business +405150,Small Business,Small Business +405148,Small Business,Small Business +405147,Small Business,Small Business +405138,Small Business,Small Business +405133,Small Business,Small Business +405130,Small Business,Small Business +405128,Small Business,Small Business +404548,Small Business,Small Business +403475,Small Business,Small Business +403471,Small Business,Small Business +403468,Small Business,Small Business +403466,Small Business,Small Business +403465,Small Business,Small Business +403463,Small Business,Small Business +403462,Small Business,Small Business +403461,Small Business,Small Business +403458,Small Business,Small Business +401107,Small Business,Small Business +401106,Small Business,Small Business +401105,Small Business,Small Business +401104,Small Business,Small Business +400655,Small Business,Small Business +400648,Small Business,Small Business +400643,Small Business,Small Business +400642,Small Business,Small Business +400637,Small Business,Small Business +400634,Small Business,Small Business +400632,Small Business,Small Business +400629,Small Business,Small Business +400627,Small Business,Small Business +400592,Small Business,Small Business +400568,Small Business,Small Business +398774,Small Business,Small Business +398771,Small Business,Small Business +398767,Small Business,Small Business +398765,Small Business,Small Business +398763,Small Business,Small Business +398762,Small Business,Small Business +398759,Small Business,Small Business +398754,Small Business,Small Business +398749,Small Business,Small Business +398740,Small Business,Small Business +398728,Small Business,Small Business +396394,Small Business,Small Business +396393,Small Business,Small Business +396372,Small Business,Small Business +396363,Small Business,Small Business +396362,Small Business,Small Business +396361,Small Business,Small Business +396357,Small Business,Small Business +394327,Small Business,Small Business +394270,Small Business,Small Business +394269,Small Business,Small Business +394268,Small Business,Small Business +394266,Small Business,Small Business +392838,Small Business,Small Business +392811,Small Business,Small Business +392810,Small Business,Small Business +392809,Small Business,Small Business +391207,Small Business,Small Business +391195,Small Business,Small Business +391176,Small Business,Small Business +391163,Small Business,Small Business +391159,Small Business,Small Business +391155,Small Business,Small Business +391149,Small Business,Small Business +391138,Small Business,Small Business +391137,Small Business,Small Business +391133,Small Business,Small Business +391128,Small Business,Small Business +391118,Small Business,Small Business +388162,Small Business,Small Business +388133,Small Business,Small Business +388113,Small Business,Small Business +388112,Small Business,Small Business +388108,Small Business,Small Business +388103,Small Business,Small Business +388093,Small Business,Small Business +388081,Small Business,Small Business +388073,Small Business,Small Business +388061,Small Business,Small Business +388059,Small Business,Small Business +388043,Small Business,Small Business +388041,Small Business,Small Business +388040,Small Business,Small Business +388038,Small Business,Small Business +388031,Small Business,Small Business +387976,Small Business,Small Business +387973,Small Business,Small Business +387972,Small Business,Small Business +387963,Small Business,Small Business +387961,Small Business,Small Business +385434,Small Business,Small Business +385364,Small Business,Small Business +385355,Small Business,Small Business +385351,Small Business,Small Business +385343,Small Business,Small Business +385340,Small Business,Small Business +383637,Small Business,Small Business +382446,Small Business,Small Business +382445,Small Business,Small Business +382443,Small Business,Small Business +382440,Small Business,Small Business +382439,Small Business,Small Business +382438,Small Business,Small Business +382435,Small Business,Small Business +381580,Small Business,Small Business +381552,Small Business,Small Business +381550,Small Business,Small Business +381547,Small Business,Small Business +381545,Small Business,Small Business +381543,Small Business,Small Business +379695,Small Business,Small Business +379694,Small Business,Small Business +379684,Small Business,Small Business +379683,Small Business,Small Business +379681,Small Business,Small Business +379677,Small Business,Small Business +379672,Small Business,Small Business +379671,Small Business,Small Business +379661,Small Business,Small Business +379649,Small Business,Small Business +379643,Small Business,Small Business +379618,Small Business,Small Business +379614,Small Business,Small Business +379602,Small Business,Small Business +379600,Small Business,Small Business +379594,Small Business,Small Business +379592,Small Business,Small Business +379590,Small Business,Small Business +379589,Small Business,Small Business +379583,Small Business,Small Business +379579,Small Business,Small Business +376758,Small Business,Small Business +376721,Small Business,Small Business +376623,Small Business,Small Business +376618,Small Business,Small Business +376615,Small Business,Small Business +374849,Small Business,Small Business +374848,Small Business,Small Business +374847,Small Business,Small Business +374846,Small Business,Small Business +374845,Small Business,Small Business +374844,Small Business,Small Business +374843,Small Business,Small Business +374842,Small Business,Small Business +374841,Small Business,Small Business +374826,Small Business,Small Business +374800,Small Business,Small Business +372923,Small Business,Small Business +372921,Small Business,Small Business +365006,Small Business,Small Business +365005,Small Business,Small Business +365003,Small Business,Small Business +362376,Small Business,Small Business +362371,Small Business,Small Business +361199,Small Business,Small Business +361198,Small Business,Small Business +359721,Small Business,Small Business +359720,Small Business,Small Business +358104,Small Business,Small Business +358102,Small Business,Small Business +358099,Small Business,Small Business +358098,Small Business,Small Business +358096,Small Business,Small Business +358095,Small Business,Small Business +358073,Small Business,Small Business +358062,Small Business,Small Business +358061,Small Business,Small Business +358058,Small Business,Small Business +358054,Small Business,Small Business +358052,Small Business,Small Business +358049,Small Business,Small Business +356372,Small Business,Small Business +356367,Small Business,Small Business +356364,Small Business,Small Business +356360,Small Business,Small Business +356359,Small Business,Small Business +356354,Small Business,Small Business +354082,Small Business,Small Business +354080,Small Business,Small Business +354078,Small Business,Small Business +354075,Small Business,Small Business +354073,Small Business,Small Business +354068,Small Business,Small Business +354066,Small Business,Small Business +354063,Small Business,Small Business +354060,Small Business,Small Business +354059,Small Business,Small Business +354058,Small Business,Small Business +354050,Small Business,Small Business +353965,Small Business,Small Business +351544,Small Business,Small Business +351543,Small Business,Small Business +351542,Small Business,Small Business +351541,Small Business,Small Business +351540,Small Business,Small Business +351539,Small Business,Small Business +351538,Small Business,Small Business +351537,Small Business,Small Business +351536,Small Business,Small Business +351535,Small Business,Small Business +351534,Small Business,Small Business +351532,Small Business,Small Business +351531,Small Business,Small Business +349252,Small Business,Small Business +349248,Small Business,Small Business +349244,Small Business,Small Business +349242,Small Business,Small Business +349240,Small Business,Small Business +349238,Small Business,Small Business +349234,Small Business,Small Business +349224,Small Business,Small Business +349220,Small Business,Small Business +347292,Small Business,Small Business +347286,Small Business,Small Business +347279,Small Business,Small Business +347274,Small Business,Small Business +344045,Small Business,Small Business +344042,Small Business,Small Business +344040,Small Business,Small Business +344038,Small Business,Small Business +344036,Small Business,Small Business +344035,Small Business,Small Business +344029,Small Business,Small Business +342035,Small Business,Small Business +342032,Small Business,Small Business +342031,Small Business,Small Business +342028,Small Business,Small Business +342024,Small Business,Small Business +342016,Small Business,Small Business +342009,Small Business,Small Business +341998,Small Business,Small Business +341991,Small Business,Small Business +338391,Small Business,Small Business +338390,Small Business,Small Business +338389,Small Business,Small Business +338388,Small Business,Small Business +338386,Small Business,Small Business +338384,Small Business,Small Business +338383,Small Business,Small Business +338381,Small Business,Small Business +338379,Small Business,Small Business +338378,Small Business,Small Business +338377,Small Business,Small Business +336008,Small Business,Small Business +336005,Small Business,Small Business +336004,Small Business,Small Business +336002,Small Business,Small Business +336000,Small Business,Small Business +335998,Small Business,Small Business +335996,Small Business,Small Business +335995,Small Business,Small Business +335994,Small Business,Small Business +335992,Small Business,Small Business +335984,Small Business,Small Business +335975,Small Business,Small Business +335966,Small Business,Small Business +335964,Small Business,Small Business +335961,Small Business,Small Business +333693,Small Business,Small Business +333692,Small Business,Small Business +333691,Small Business,Small Business +333689,Small Business,Small Business +333688,Small Business,Small Business +333687,Small Business,Small Business +333684,Small Business,Small Business +333683,Small Business,Small Business +538726,Small Business,Small Business +538725,Small Business,Small Business +538724,Small Business,Small Business +535905,Small Business,Small Business +532074,Small Business,Small Business +528428,Small Business,Small Business +528426,Small Business,Small Business +528416,Small Business,Small Business +528408,Small Business,Small Business +528406,Small Business,Small Business +528404,Small Business,Small Business +528401,Small Business,Small Business +528400,Small Business,Small Business +528399,Small Business,Small Business +528398,Small Business,Small Business +528397,Small Business,Small Business +528396,Small Business,Small Business +528032,Small Business,Small Business +528030,Small Business,Small Business +526337,Small Business,Small Business +526331,Small Business,Small Business +526326,Small Business,Small Business +526324,Small Business,Small Business +526320,Small Business,Small Business +526163,Small Business,Small Business +526162,Small Business,Small Business +526160,Small Business,Small Business +526159,Small Business,Small Business +526157,Small Business,Small Business +526155,Small Business,Small Business +526153,Small Business,Small Business +526145,Small Business,Small Business +522858,Small Business,Small Business +522857,Small Business,Small Business +522854,Small Business,Small Business +522848,Small Business,Small Business +522845,Small Business,Small Business +522841,Small Business,Small Business +522840,Small Business,Small Business +520054,Small Business,Small Business +520052,Small Business,Small Business +520051,Small Business,Small Business +520050,Small Business,Small Business +520044,Small Business,Small Business +520042,Small Business,Small Business +520036,Small Business,Small Business +520033,Small Business,Small Business +520028,Small Business,Small Business +520019,Small Business,Small Business +520015,Small Business,Small Business +520013,Small Business,Small Business +520010,Small Business,Small Business +518197,Small Business,Small Business +518195,Small Business,Small Business +518182,Small Business,Small Business +518173,Small Business,Small Business +518170,Small Business,Small Business +518168,Small Business,Small Business +518159,Small Business,Small Business +518154,Small Business,Small Business +518146,Small Business,Small Business +518138,Small Business,Small Business +518130,Small Business,Small Business +518128,Small Business,Small Business +518127,Small Business,Small Business +518126,Small Business,Small Business +518125,Small Business,Small Business +518124,Small Business,Small Business +518122,Small Business,Small Business +516773,Small Business,Small Business +512944,Small Business,Small Business +512943,Small Business,Small Business +512942,Small Business,Small Business +512941,Small Business,Small Business +512939,Small Business,Small Business +512938,Small Business,Small Business +512936,Small Business,Small Business +512934,Small Business,Small Business +511170,Small Business,Small Business +511167,Small Business,Small Business +511164,Small Business,Small Business +511161,Small Business,Small Business +511159,Small Business,Small Business +511151,Small Business,Small Business +511147,Small Business,Small Business +508675,Small Business,Small Business +508674,Small Business,Small Business +508668,Small Business,Small Business +508665,Small Business,Small Business +508664,Small Business,Small Business +508661,Small Business,Small Business +508660,Small Business,Small Business +508657,Small Business,Small Business +508655,Small Business,Small Business +508654,Small Business,Small Business +508652,Small Business,Small Business +508651,Small Business,Small Business +508650,Small Business,Small Business +508649,Small Business,Small Business +508646,Small Business,Small Business +505892,Small Business,Small Business +505889,Small Business,Small Business +505886,Small Business,Small Business +505885,Small Business,Small Business +505883,Small Business,Small Business +505881,Small Business,Small Business +505879,Small Business,Small Business +505869,Small Business,Small Business +505866,Small Business,Small Business +505863,Small Business,Small Business +505862,Small Business,Small Business +505861,Small Business,Small Business +505860,Small Business,Small Business +505858,Small Business,Small Business +505856,Small Business,Small Business +502630,Small Business,Small Business +502628,Small Business,Small Business +502627,Small Business,Small Business +502626,Small Business,Small Business +502624,Small Business,Small Business +502623,Small Business,Small Business +502620,Small Business,Small Business +502617,Small Business,Small Business +502610,Small Business,Small Business +502608,Small Business,Small Business +502604,Small Business,Small Business +502600,Small Business,Small Business +502597,Small Business,Small Business +502593,Small Business,Small Business +502591,Small Business,Small Business +502584,Small Business,Small Business +502580,Small Business,Small Business +502575,Small Business,Small Business +502572,Small Business,Small Business +502565,Small Business,Small Business +502561,Small Business,Small Business +502559,Small Business,Small Business +502555,Small Business,Small Business +502552,Small Business,Small Business +502543,Small Business,Small Business +502540,Small Business,Small Business +499103,Small Business,Small Business +499097,Small Business,Small Business +499094,Small Business,Small Business +499091,Small Business,Small Business +499088,Small Business,Small Business +499085,Small Business,Small Business +499079,Small Business,Small Business +499075,Small Business,Small Business +499062,Small Business,Small Business +499051,Small Business,Small Business +499048,Small Business,Small Business +499044,Small Business,Small Business +499042,Small Business,Small Business +495294,Small Business,Small Business +495293,Small Business,Small Business +495292,Small Business,Small Business +495290,Small Business,Small Business +495284,Small Business,Small Business +495279,Small Business,Small Business +493439,Small Business,Small Business +493437,Small Business,Small Business +493433,Small Business,Small Business +493421,Small Business,Small Business +493417,Small Business,Small Business +491785,Small Business,Small Business +491777,Small Business,Small Business +491773,Small Business,Small Business +491767,Small Business,Small Business +491762,Small Business,Small Business +491760,Small Business,Small Business +491755,Small Business,Small Business +487204,Small Business,Small Business +487203,Small Business,Small Business +487202,Small Business,Small Business +487201,Small Business,Small Business +487199,Small Business,Small Business +487197,Small Business,Small Business +487195,Small Business,Small Business +487192,Small Business,Small Business +487190,Small Business,Small Business +487186,Small Business,Small Business +487183,Small Business,Small Business +487180,Small Business,Small Business +487175,Small Business,Small Business +485133,Small Business,Small Business +485128,Small Business,Small Business +485119,Small Business,Small Business +485116,Small Business,Small Business +485111,Small Business,Small Business +485098,Small Business,Small Business +485096,Small Business,Small Business +482128,Small Business,Small Business +482124,Small Business,Small Business +482119,Small Business,Small Business +482116,Small Business,Small Business +482112,Small Business,Small Business +482103,Small Business,Small Business +480283,Small Business,Small Business +480281,Small Business,Small Business +480278,Small Business,Small Business +480277,Small Business,Small Business +480276,Small Business,Small Business +480275,Small Business,Small Business +478061,Small Business,Small Business +478059,Small Business,Small Business +478058,Small Business,Small Business +478057,Small Business,Small Business +478056,Small Business,Small Business +478054,Small Business,Small Business +475904,Small Business,Small Business +475903,Small Business,Small Business +475900,Small Business,Small Business +475894,Small Business,Small Business +475893,Small Business,Small Business +475860,Small Business,Small Business +475856,Small Business,Small Business +475851,Small Business,Small Business +475847,Small Business,Small Business +475840,Small Business,Small Business +475803,Small Business,Small Business +473665,Small Business,Small Business +473663,Small Business,Small Business +473662,Small Business,Small Business +473659,Small Business,Small Business +473658,Small Business,Small Business +473656,Small Business,Small Business +473653,Small Business,Small Business +473649,Small Business,Small Business +473647,Small Business,Small Business +473643,Small Business,Small Business +473641,Small Business,Small Business +473639,Small Business,Small Business +473634,Small Business,Small Business +471071,Small Business,Small Business +471070,Small Business,Small Business +471069,Small Business,Small Business +471067,Small Business,Small Business +471066,Small Business,Small Business +471065,Small Business,Small Business +471064,Small Business,Small Business +471061,Small Business,Small Business +471059,Small Business,Small Business +471056,Small Business,Small Business +471046,Small Business,Small Business +471043,Small Business,Small Business +471038,Small Business,Small Business +471032,Small Business,Small Business +471022,Small Business,Small Business +471018,Small Business,Small Business +471013,Small Business,Small Business +467897,Small Business,Small Business +467895,Small Business,Small Business +467886,Small Business,Small Business +467882,Small Business,Small Business +467879,Small Business,Small Business +467859,Small Business,Small Business +467854,Small Business,Small Business +467850,Small Business,Small Business +467843,Small Business,Small Business +467831,Small Business,Small Business +467807,Small Business,Small Business +467336,Small Business,Small Business +463975,Small Business,Small Business +463955,Small Business,Small Business +463954,Small Business,Small Business +462472,Small Business,Small Business +460792,Small Business,Small Business +460003,Small Business,Small Business +459536,Small Business,Small Business +459530,Small Business,Small Business +458438,Small Business,Small Business +457913,Small Business,Small Business +457682,Small Business,Small Business +457679,Small Business,Small Business +457677,Small Business,Small Business +457673,Small Business,Small Business +457671,Small Business,Small Business +457669,Small Business,Small Business +457667,Small Business,Small Business +457666,Small Business,Small Business +457661,Small Business,Small Business +457660,Small Business,Small Business +457659,Small Business,Small Business +457658,Small Business,Small Business +457657,Small Business,Small Business +457655,Small Business,Small Business +457652,Small Business,Small Business +457649,Small Business,Small Business +512938,Taxation and Finance,Taxation and Finance +512936,Taxation and Finance,Taxation and Finance +141477,Taxation and Finance,Taxation and Finance +137555,Taxation and Finance,Taxation and Finance +137535,Taxation and Finance,Taxation and Finance +137534,Taxation and Finance,Taxation and Finance +114166,Taxation and Finance,Taxation and Finance +114164,Taxation and Finance,Taxation and Finance +101314,Taxation and Finance,Taxation and Finance +165839,Taxation and Finance,Taxation and Finance +162362,Taxation and Finance,Taxation and Finance +162329,Taxation and Finance,Taxation and Finance +156899,Taxation and Finance,Taxation and Finance +156693,Taxation and Finance,Taxation and Finance +156691,Taxation and Finance,Taxation and Finance +156690,Taxation and Finance,Taxation and Finance +156689,Taxation and Finance,Taxation and Finance +156681,Taxation and Finance,Taxation and Finance +156680,Taxation and Finance,Taxation and Finance +156678,Taxation and Finance,Taxation and Finance +154645,Taxation and Finance,Taxation and Finance +154644,Taxation and Finance,Taxation and Finance +152064,Taxation and Finance,Taxation and Finance +152063,Taxation and Finance,Taxation and Finance +152061,Taxation and Finance,Taxation and Finance +152060,Taxation and Finance,Taxation and Finance +152056,Taxation and Finance,Taxation and Finance +152053,Taxation and Finance,Taxation and Finance +147799,Taxation and Finance,Taxation and Finance +147797,Taxation and Finance,Taxation and Finance +147778,Taxation and Finance,Taxation and Finance +145517,Taxation and Finance,Taxation and Finance +145475,Taxation and Finance,Taxation and Finance +304449,Taxation and Finance,Taxation and Finance +304437,Taxation and Finance,Taxation and Finance +304433,Taxation and Finance,Taxation and Finance +304432,Taxation and Finance,Taxation and Finance +304431,Taxation and Finance,Taxation and Finance +296969,Taxation and Finance,Taxation and Finance +296909,Taxation and Finance,Taxation and Finance +296903,Taxation and Finance,Taxation and Finance +291155,Taxation and Finance,Taxation and Finance +291132,Taxation and Finance,Taxation and Finance +287031,Taxation and Finance,Taxation and Finance +282855,Taxation and Finance,Taxation and Finance +282850,Taxation and Finance,Taxation and Finance +282838,Taxation and Finance,Taxation and Finance +282835,Taxation and Finance,Taxation and Finance +282572,Taxation and Finance,Taxation and Finance +282569,Taxation and Finance,Taxation and Finance +269603,Taxation and Finance,Taxation and Finance +264439,Taxation and Finance,Taxation and Finance +259531,Taxation and Finance,Taxation and Finance +259429,Taxation and Finance,Taxation and Finance +259409,Taxation and Finance,Taxation and Finance +254364,Taxation and Finance,Taxation and Finance +254362,Taxation and Finance,Taxation and Finance +250871,Taxation and Finance,Taxation and Finance +230150,Taxation and Finance,Taxation and Finance +226887,Taxation and Finance,Taxation and Finance +217610,Taxation and Finance,Taxation and Finance +212422,Taxation and Finance,Taxation and Finance +206609,Taxation and Finance,Taxation and Finance +206594,Taxation and Finance,Taxation and Finance +200471,Taxation and Finance,Taxation and Finance +185487,Taxation and Finance,Taxation and Finance +185486,Taxation and Finance,Taxation and Finance +185484,Taxation and Finance,Taxation and Finance +175639,Taxation and Finance,Taxation and Finance +167984,Taxation and Finance,Taxation and Finance +167969,Taxation and Finance,Taxation and Finance +165853,Taxation and Finance,Taxation and Finance +165851,Taxation and Finance,Taxation and Finance +165849,Taxation and Finance,Taxation and Finance +165845,Taxation and Finance,Taxation and Finance +385355,Taxation and Finance,Taxation and Finance +385340,Taxation and Finance,Taxation and Finance +383637,Taxation and Finance,Taxation and Finance +382439,Taxation and Finance,Taxation and Finance +382438,Taxation and Finance,Taxation and Finance +381566,Taxation and Finance,Taxation and Finance +381560,Taxation and Finance,Taxation and Finance +381554,Taxation and Finance,Taxation and Finance +381550,Taxation and Finance,Taxation and Finance +381547,Taxation and Finance,Taxation and Finance +381545,Taxation and Finance,Taxation and Finance +381543,Taxation and Finance,Taxation and Finance +381540,Taxation and Finance,Taxation and Finance +379683,Taxation and Finance,Taxation and Finance +379681,Taxation and Finance,Taxation and Finance +379677,Taxation and Finance,Taxation and Finance +379672,Taxation and Finance,Taxation and Finance +379661,Taxation and Finance,Taxation and Finance +379649,Taxation and Finance,Taxation and Finance +379618,Taxation and Finance,Taxation and Finance +379614,Taxation and Finance,Taxation and Finance +379608,Taxation and Finance,Taxation and Finance +379605,Taxation and Finance,Taxation and Finance +379602,Taxation and Finance,Taxation and Finance +379600,Taxation and Finance,Taxation and Finance +379592,Taxation and Finance,Taxation and Finance +379590,Taxation and Finance,Taxation and Finance +379589,Taxation and Finance,Taxation and Finance +379583,Taxation and Finance,Taxation and Finance +379579,Taxation and Finance,Taxation and Finance +376761,Taxation and Finance,Taxation and Finance +376605,Taxation and Finance,Taxation and Finance +374849,Taxation and Finance,Taxation and Finance +374844,Taxation and Finance,Taxation and Finance +374800,Taxation and Finance,Taxation and Finance +374791,Taxation and Finance,Taxation and Finance +374789,Taxation and Finance,Taxation and Finance +372929,Taxation and Finance,Taxation and Finance +372923,Taxation and Finance,Taxation and Finance +372921,Taxation and Finance,Taxation and Finance +370108,Taxation and Finance,Taxation and Finance +370103,Taxation and Finance,Taxation and Finance +359721,Taxation and Finance,Taxation and Finance +358104,Taxation and Finance,Taxation and Finance +358102,Taxation and Finance,Taxation and Finance +358099,Taxation and Finance,Taxation and Finance +358095,Taxation and Finance,Taxation and Finance +358062,Taxation and Finance,Taxation and Finance +358058,Taxation and Finance,Taxation and Finance +358052,Taxation and Finance,Taxation and Finance +358049,Taxation and Finance,Taxation and Finance +356372,Taxation and Finance,Taxation and Finance +356367,Taxation and Finance,Taxation and Finance +356364,Taxation and Finance,Taxation and Finance +356360,Taxation and Finance,Taxation and Finance +354078,Taxation and Finance,Taxation and Finance +354068,Taxation and Finance,Taxation and Finance +354060,Taxation and Finance,Taxation and Finance +354059,Taxation and Finance,Taxation and Finance +351544,Taxation and Finance,Taxation and Finance +351538,Taxation and Finance,Taxation and Finance +351537,Taxation and Finance,Taxation and Finance +351535,Taxation and Finance,Taxation and Finance +351531,Taxation and Finance,Taxation and Finance +349248,Taxation and Finance,Taxation and Finance +349240,Taxation and Finance,Taxation and Finance +349238,Taxation and Finance,Taxation and Finance +349224,Taxation and Finance,Taxation and Finance +347292,Taxation and Finance,Taxation and Finance +347279,Taxation and Finance,Taxation and Finance +347274,Taxation and Finance,Taxation and Finance +344035,Taxation and Finance,Taxation and Finance +344029,Taxation and Finance,Taxation and Finance +342024,Taxation and Finance,Taxation and Finance +342016,Taxation and Finance,Taxation and Finance +342009,Taxation and Finance,Taxation and Finance +338391,Taxation and Finance,Taxation and Finance +338390,Taxation and Finance,Taxation and Finance +338389,Taxation and Finance,Taxation and Finance +338388,Taxation and Finance,Taxation and Finance +338377,Taxation and Finance,Taxation and Finance +335964,Taxation and Finance,Taxation and Finance +333689,Taxation and Finance,Taxation and Finance +333683,Taxation and Finance,Taxation and Finance +333676,Taxation and Finance,Taxation and Finance +333670,Taxation and Finance,Taxation and Finance +333669,Taxation and Finance,Taxation and Finance +333667,Taxation and Finance,Taxation and Finance +333664,Taxation and Finance,Taxation and Finance +333660,Taxation and Finance,Taxation and Finance +333658,Taxation and Finance,Taxation and Finance +333657,Taxation and Finance,Taxation and Finance +331588,Taxation and Finance,Taxation and Finance +331587,Taxation and Finance,Taxation and Finance +331586,Taxation and Finance,Taxation and Finance +331566,Taxation and Finance,Taxation and Finance +330222,Taxation and Finance,Taxation and Finance +330220,Taxation and Finance,Taxation and Finance +330214,Taxation and Finance,Taxation and Finance +330210,Taxation and Finance,Taxation and Finance +330205,Taxation and Finance,Taxation and Finance +327694,Taxation and Finance,Taxation and Finance +327680,Taxation and Finance,Taxation and Finance +327653,Taxation and Finance,Taxation and Finance +325105,Taxation and Finance,Taxation and Finance +325104,Taxation and Finance,Taxation and Finance +325102,Taxation and Finance,Taxation and Finance +322282,Taxation and Finance,Taxation and Finance +322279,Taxation and Finance,Taxation and Finance +316032,Taxation and Finance,Taxation and Finance +316026,Taxation and Finance,Taxation and Finance +313187,Taxation and Finance,Taxation and Finance +310490,Taxation and Finance,Taxation and Finance +310487,Taxation and Finance,Taxation and Finance +304476,Taxation and Finance,Taxation and Finance +304474,Taxation and Finance,Taxation and Finance +304471,Taxation and Finance,Taxation and Finance +511161,Taxation and Finance,Taxation and Finance +508655,Taxation and Finance,Taxation and Finance +499079,Taxation and Finance,Taxation and Finance +499048,Taxation and Finance,Taxation and Finance +499044,Taxation and Finance,Taxation and Finance +495284,Taxation and Finance,Taxation and Finance +487201,Taxation and Finance,Taxation and Finance +487175,Taxation and Finance,Taxation and Finance +485133,Taxation and Finance,Taxation and Finance +482119,Taxation and Finance,Taxation and Finance +473659,Taxation and Finance,Taxation and Finance +471065,Taxation and Finance,Taxation and Finance +467897,Taxation and Finance,Taxation and Finance +467854,Taxation and Finance,Taxation and Finance +467843,Taxation and Finance,Taxation and Finance +463954,Taxation and Finance,Taxation and Finance +462472,Taxation and Finance,Taxation and Finance +459536,Taxation and Finance,Taxation and Finance +457671,Taxation and Finance,Taxation and Finance +455497,Taxation and Finance,Taxation and Finance +443311,Taxation and Finance,Taxation and Finance +443309,Taxation and Finance,Taxation and Finance +443300,Taxation and Finance,Taxation and Finance +438435,Taxation and Finance,Taxation and Finance +438354,Taxation and Finance,Taxation and Finance +435523,Taxation and Finance,Taxation and Finance +433626,Taxation and Finance,Taxation and Finance +433625,Taxation and Finance,Taxation and Finance +432454,Taxation and Finance,Taxation and Finance +430909,Taxation and Finance,Taxation and Finance +430907,Taxation and Finance,Taxation and Finance +430903,Taxation and Finance,Taxation and Finance +430902,Taxation and Finance,Taxation and Finance +430900,Taxation and Finance,Taxation and Finance +430897,Taxation and Finance,Taxation and Finance +430892,Taxation and Finance,Taxation and Finance +430889,Taxation and Finance,Taxation and Finance +429295,Taxation and Finance,Taxation and Finance +429293,Taxation and Finance,Taxation and Finance +429290,Taxation and Finance,Taxation and Finance +429289,Taxation and Finance,Taxation and Finance +429285,Taxation and Finance,Taxation and Finance +429279,Taxation and Finance,Taxation and Finance +429272,Taxation and Finance,Taxation and Finance +429270,Taxation and Finance,Taxation and Finance +429261,Taxation and Finance,Taxation and Finance +429256,Taxation and Finance,Taxation and Finance +429232,Taxation and Finance,Taxation and Finance +429231,Taxation and Finance,Taxation and Finance +429228,Taxation and Finance,Taxation and Finance +429226,Taxation and Finance,Taxation and Finance +429219,Taxation and Finance,Taxation and Finance +429211,Taxation and Finance,Taxation and Finance +429205,Taxation and Finance,Taxation and Finance +429202,Taxation and Finance,Taxation and Finance +427542,Taxation and Finance,Taxation and Finance +426049,Taxation and Finance,Taxation and Finance +426047,Taxation and Finance,Taxation and Finance +426045,Taxation and Finance,Taxation and Finance +426043,Taxation and Finance,Taxation and Finance +426042,Taxation and Finance,Taxation and Finance +426040,Taxation and Finance,Taxation and Finance +426036,Taxation and Finance,Taxation and Finance +426032,Taxation and Finance,Taxation and Finance +426026,Taxation and Finance,Taxation and Finance +424099,Taxation and Finance,Taxation and Finance +424097,Taxation and Finance,Taxation and Finance +424095,Taxation and Finance,Taxation and Finance +424094,Taxation and Finance,Taxation and Finance +424090,Taxation and Finance,Taxation and Finance +424088,Taxation and Finance,Taxation and Finance +424078,Taxation and Finance,Taxation and Finance +424076,Taxation and Finance,Taxation and Finance +424063,Taxation and Finance,Taxation and Finance +424058,Taxation and Finance,Taxation and Finance +424053,Taxation and Finance,Taxation and Finance +424032,Taxation and Finance,Taxation and Finance +419858,Taxation and Finance,Taxation and Finance +419854,Taxation and Finance,Taxation and Finance +419850,Taxation and Finance,Taxation and Finance +417920,Taxation and Finance,Taxation and Finance +417919,Taxation and Finance,Taxation and Finance +417893,Taxation and Finance,Taxation and Finance +417891,Taxation and Finance,Taxation and Finance +416679,Taxation and Finance,Taxation and Finance +416676,Taxation and Finance,Taxation and Finance +416667,Taxation and Finance,Taxation and Finance +416639,Taxation and Finance,Taxation and Finance +416625,Taxation and Finance,Taxation and Finance +416623,Taxation and Finance,Taxation and Finance +413192,Taxation and Finance,Taxation and Finance +413147,Taxation and Finance,Taxation and Finance +413144,Taxation and Finance,Taxation and Finance +413120,Taxation and Finance,Taxation and Finance +413116,Taxation and Finance,Taxation and Finance +409821,Taxation and Finance,Taxation and Finance +409817,Taxation and Finance,Taxation and Finance +409813,Taxation and Finance,Taxation and Finance +409810,Taxation and Finance,Taxation and Finance +409808,Taxation and Finance,Taxation and Finance +409805,Taxation and Finance,Taxation and Finance +409796,Taxation and Finance,Taxation and Finance +409784,Taxation and Finance,Taxation and Finance +409779,Taxation and Finance,Taxation and Finance +409776,Taxation and Finance,Taxation and Finance +409766,Taxation and Finance,Taxation and Finance +409764,Taxation and Finance,Taxation and Finance +409761,Taxation and Finance,Taxation and Finance +409755,Taxation and Finance,Taxation and Finance +408018,Taxation and Finance,Taxation and Finance +408016,Taxation and Finance,Taxation and Finance +408015,Taxation and Finance,Taxation and Finance +408010,Taxation and Finance,Taxation and Finance +408006,Taxation and Finance,Taxation and Finance +408004,Taxation and Finance,Taxation and Finance +408003,Taxation and Finance,Taxation and Finance +407999,Taxation and Finance,Taxation and Finance +407998,Taxation and Finance,Taxation and Finance +407990,Taxation and Finance,Taxation and Finance +407988,Taxation and Finance,Taxation and Finance +406788,Taxation and Finance,Taxation and Finance +406787,Taxation and Finance,Taxation and Finance +405171,Taxation and Finance,Taxation and Finance +405160,Taxation and Finance,Taxation and Finance +405130,Taxation and Finance,Taxation and Finance +403466,Taxation and Finance,Taxation and Finance +401107,Taxation and Finance,Taxation and Finance +401106,Taxation and Finance,Taxation and Finance +400642,Taxation and Finance,Taxation and Finance +400568,Taxation and Finance,Taxation and Finance +398767,Taxation and Finance,Taxation and Finance +398765,Taxation and Finance,Taxation and Finance +398754,Taxation and Finance,Taxation and Finance +398749,Taxation and Finance,Taxation and Finance +396394,Taxation and Finance,Taxation and Finance +396393,Taxation and Finance,Taxation and Finance +396362,Taxation and Finance,Taxation and Finance +396361,Taxation and Finance,Taxation and Finance +396357,Taxation and Finance,Taxation and Finance +394327,Taxation and Finance,Taxation and Finance +394266,Taxation and Finance,Taxation and Finance +392838,Taxation and Finance,Taxation and Finance +392811,Taxation and Finance,Taxation and Finance +392809,Taxation and Finance,Taxation and Finance +391195,Taxation and Finance,Taxation and Finance +391149,Taxation and Finance,Taxation and Finance +391137,Taxation and Finance,Taxation and Finance +388133,Taxation and Finance,Taxation and Finance +388093,Taxation and Finance,Taxation and Finance +388073,Taxation and Finance,Taxation and Finance +388061,Taxation and Finance,Taxation and Finance +387976,Taxation and Finance,Taxation and Finance +387973,Taxation and Finance,Taxation and Finance +387963,Taxation and Finance,Taxation and Finance +528406,Taxation and Finance,Taxation and Finance +528401,Taxation and Finance,Taxation and Finance +528399,Taxation and Finance,Taxation and Finance +526331,Taxation and Finance,Taxation and Finance +526160,Taxation and Finance,Taxation and Finance +522841,Taxation and Finance,Taxation and Finance +520052,Taxation and Finance,Taxation and Finance +520051,Taxation and Finance,Taxation and Finance +520044,Taxation and Finance,Taxation and Finance +520033,Taxation and Finance,Taxation and Finance +520010,Taxation and Finance,Taxation and Finance +518197,Taxation and Finance,Taxation and Finance +518182,Taxation and Finance,Taxation and Finance +518170,Taxation and Finance,Taxation and Finance +518168,Taxation and Finance,Taxation and Finance +518159,Taxation and Finance,Taxation and Finance +518154,Taxation and Finance,Taxation and Finance +518146,Taxation and Finance,Taxation and Finance +518138,Taxation and Finance,Taxation and Finance +518130,Taxation and Finance,Taxation and Finance +518128,Taxation and Finance,Taxation and Finance +518127,Taxation and Finance,Taxation and Finance +518126,Taxation and Finance,Taxation and Finance +518125,Taxation and Finance,Taxation and Finance +518124,Taxation and Finance,Taxation and Finance +518122,Taxation and Finance,Taxation and Finance +516775,Taxation and Finance,Taxation and Finance +516773,Taxation and Finance,Taxation and Finance +515379,Taxation and Finance,Taxation and Finance +515378,Taxation and Finance,Taxation and Finance +515377,Taxation and Finance,Taxation and Finance +515375,Taxation and Finance,Taxation and Finance +518138,Tourism,Tourism +438100,Agriculture,Agriculture +188747,Agriculture,Agriculture +188745,Agriculture,Agriculture +188744,Agriculture,Agriculture +188741,Agriculture,Agriculture +172884,Agriculture,Agriculture +370332,Agriculture,Agriculture +370331,Agriculture,Agriculture +370330,Agriculture,Agriculture +370329,Agriculture,Agriculture +350248,Agriculture,Agriculture +350247,Agriculture,Agriculture +350246,Agriculture,Agriculture +350242,Agriculture,Agriculture +348384,Agriculture,Agriculture +348383,Agriculture,Agriculture +348382,Agriculture,Agriculture +348381,Agriculture,Agriculture +348380,Agriculture,Agriculture +348379,Agriculture,Agriculture +348378,Agriculture,Agriculture +348377,Agriculture,Agriculture +309624,Agriculture,Agriculture +309623,Agriculture,Agriculture +417095,Agriculture,Agriculture +417094,Agriculture,Agriculture +417093,Agriculture,Agriculture +417092,Agriculture,Agriculture +417091,Agriculture,Agriculture +417090,Agriculture,Agriculture +417089,Agriculture,Agriculture +417087,Agriculture,Agriculture +417086,Agriculture,Agriculture +417085,Agriculture,Agriculture +405846,Agriculture,Agriculture +405845,Agriculture,Agriculture +405844,Agriculture,Agriculture +405843,Agriculture,Agriculture +405842,Agriculture,Agriculture +405841,Agriculture,Agriculture +394784,Agriculture,Agriculture +394781,Agriculture,Agriculture +394776,Agriculture,Agriculture +394775,Agriculture,Agriculture +394774,Agriculture,Agriculture +392058,Agriculture,Agriculture +384124,Agriculture,Agriculture +384123,Agriculture,Agriculture +384122,Agriculture,Agriculture +384119,Agriculture,Agriculture +384118,Agriculture,Agriculture +384116,Agriculture,Agriculture +384115,Agriculture,Agriculture +377976,Agriculture,Agriculture +377974,Agriculture,Agriculture +377972,Agriculture,Agriculture +377971,Agriculture,Agriculture +377970,Agriculture,Agriculture +377969,Agriculture,Agriculture +373505,Agriculture,Agriculture +373504,Agriculture,Agriculture +373501,Agriculture,Agriculture +465102,International Trade,International Trade +344555,Transportation,Transportation +465102,Transportation,Transportation +158376,Transportation,Transportation +113374,Transportation,Transportation +196562,Transportation,Transportation +188747,Transportation,Transportation +188745,Transportation,Transportation +188744,Transportation,Transportation +188741,Transportation,Transportation +309624,Transportation,Transportation +309623,Transportation,Transportation +228813,Transportation,Transportation +228812,Transportation,Transportation +228811,Transportation,Transportation +228810,Transportation,Transportation +228809,Transportation,Transportation +438100,Transportation,Transportation +417095,Transportation,Transportation +417094,Transportation,Transportation +417093,Transportation,Transportation +417092,Transportation,Transportation +417091,Transportation,Transportation +417090,Transportation,Transportation +417089,Transportation,Transportation +417087,Transportation,Transportation +417086,Transportation,Transportation +417085,Transportation,Transportation +405846,Transportation,Transportation +405845,Transportation,Transportation +405844,Transportation,Transportation +405843,Transportation,Transportation +405842,Transportation,Transportation +405841,Transportation,Transportation +394784,Transportation,Transportation +394781,Transportation,Transportation +394776,Transportation,Transportation +394775,Transportation,Transportation +394774,Transportation,Transportation +392058,Transportation,Transportation +384124,Transportation,Transportation +384123,Transportation,Transportation +384122,Transportation,Transportation +384119,Transportation,Transportation +384118,Transportation,Transportation +384116,Transportation,Transportation +384115,Transportation,Transportation +377976,Transportation,Transportation +377974,Transportation,Transportation +377972,Transportation,Transportation +377971,Transportation,Transportation +377970,Transportation,Transportation +377969,Transportation,Transportation +373505,Transportation,Transportation +373504,Transportation,Transportation +373501,Transportation,Transportation +370332,Transportation,Transportation +370331,Transportation,Transportation +370330,Transportation,Transportation +370329,Transportation,Transportation +350248,Transportation,Transportation +350247,Transportation,Transportation +350246,Transportation,Transportation +350242,Transportation,Transportation +348384,Transportation,Transportation +348383,Transportation,Transportation +348382,Transportation,Transportation +348381,Transportation,Transportation +348380,Transportation,Transportation +348379,Transportation,Transportation +348378,Transportation,Transportation +348377,Transportation,Transportation +102715,Energy,Energy +102715,Regional Development,Regional Development +390596,Consumer Issues,Consumer Issues +389010,Consumer Issues,Consumer Issues +153383,Consumer Issues,Consumer Issues +148272,Consumer Issues,Consumer Issues +109620,Consumer Issues,Consumer Issues +109615,Consumer Issues,Consumer Issues +97691,Consumer Issues,Consumer Issues +386303,Consumer Issues,Consumer Issues +386302,Consumer Issues,Consumer Issues +386287,Consumer Issues,Consumer Issues +386286,Consumer Issues,Consumer Issues +386285,Consumer Issues,Consumer Issues +504216,Consumer Issues,Consumer Issues +499938,Consumer Issues,Consumer Issues +491865,Consumer Issues,Consumer Issues +486139,Consumer Issues,Consumer Issues +414113,Consumer Issues,Consumer Issues +414112,Consumer Issues,Consumer Issues +414111,Consumer Issues,Consumer Issues +399996,Consumer Issues,Consumer Issues +397982,Consumer Issues,Consumer Issues +397979,Consumer Issues,Consumer Issues +397692,Consumer Issues,Consumer Issues +390603,Consumer Issues,Consumer Issues +414111,Health,Health +411149,Health,Health +109620,Health,Health +109615,Health,Health +153383,Health,Health +148272,Health,Health +399996,Health,Health +397982,Health,Health +397979,Health,Health +397692,Health,Health +390603,Health,Health +390600,Health,Health +390596,Health,Health +389010,Health,Health +386303,Health,Health +386302,Health,Health +386287,Health,Health +386286,Health,Health +386285,Health,Health +377510,Health,Health +377443,Health,Health +377442,Health,Health +377441,Health,Health +334472,Health,Health +511682,Health,Health +504216,Health,Health +499938,Health,Health +491865,Health,Health +486139,Health,Health +414113,Health,Health +486139,Taxation and Finance,Taxation and Finance +476249,Taxation and Finance,Taxation and Finance +109620,Taxation and Finance,Taxation and Finance +109615,Taxation and Finance,Taxation and Finance +109574,Taxation and Finance,Taxation and Finance +97691,Taxation and Finance,Taxation and Finance +77216,Taxation and Finance,Taxation and Finance +229099,Taxation and Finance,Taxation and Finance +161788,Taxation and Finance,Taxation and Finance +159318,Taxation and Finance,Taxation and Finance +334473,Taxation and Finance,Taxation and Finance +334472,Taxation and Finance,Taxation and Finance +411149,Taxation and Finance,Taxation and Finance +399997,Taxation and Finance,Taxation and Finance +390603,Taxation and Finance,Taxation and Finance +389010,Taxation and Finance,Taxation and Finance +377510,Taxation and Finance,Taxation and Finance +377443,Taxation and Finance,Taxation and Finance +377442,Taxation and Finance,Taxation and Finance +377441,Taxation and Finance,Taxation and Finance +504216,Taxation and Finance,Taxation and Finance +499938,Taxation and Finance,Taxation and Finance +499937,Taxation and Finance,Taxation and Finance +491865,Taxation and Finance,Taxation and Finance +486290,Taxation and Finance,Taxation and Finance +113838,Defence,Defence +113838,Government Procurement,Government Procurement +89100,Government Procurement,Government Procurement +381392,Education,Education +381383,Education,Education +166374,Education,Education +166366,Education,Education +166364,Education,Education +166346,Education,Education +166345,Education,Education +164361,Education,Education +162063,Education,Education +162061,Education,Education +162060,Education,Education +162054,Education,Education +162053,Education,Education +162052,Education,Education +162050,Education,Education +160132,Education,Education +160111,Education,Education +160110,Education,Education +160106,Education,Education +160102,Education,Education +160099,Education,Education +160097,Education,Education +160095,Education,Education +157257,Education,Education +157233,Education,Education +148448,Education,Education +200967,Education,Education +195485,Education,Education +195484,Education,Education +195031,Education,Education +195030,Education,Education +195029,Education,Education +190168,Education,Education +190165,Education,Education +187346,Education,Education +187344,Education,Education +187327,Education,Education +187325,Education,Education +187324,Education,Education +180476,Education,Education +180475,Education,Education +180474,Education,Education +180473,Education,Education +180471,Education,Education +180468,Education,Education +180466,Education,Education +176077,Education,Education +176076,Education,Education +176074,Education,Education +176072,Education,Education +176071,Education,Education +176070,Education,Education +176069,Education,Education +176068,Education,Education +174184,Education,Education +173765,Education,Education +172124,Education,Education +171057,Education,Education +171055,Education,Education +171050,Education,Education +171046,Education,Education +171044,Education,Education +171028,Education,Education +171022,Education,Education +168115,Education,Education +167855,Education,Education +167854,Education,Education +167853,Education,Education +167852,Education,Education +166376,Education,Education +166375,Education,Education +251542,Education,Education +251489,Education,Education +251469,Education,Education +251442,Education,Education +251436,Education,Education +251435,Education,Education +251432,Education,Education +245315,Education,Education +245314,Education,Education +245310,Education,Education +245123,Education,Education +245122,Education,Education +245121,Education,Education +245120,Education,Education +245119,Education,Education +245118,Education,Education +245117,Education,Education +241298,Education,Education +240757,Education,Education +237098,Education,Education +233221,Education,Education +233220,Education,Education +233219,Education,Education +230279,Education,Education +230277,Education,Education +227342,Education,Education +227338,Education,Education +226068,Education,Education +225931,Education,Education +225930,Education,Education +225929,Education,Education +225928,Education,Education +225927,Education,Education +223649,Education,Education +223644,Education,Education +223641,Education,Education +223640,Education,Education +223638,Education,Education +219347,Education,Education +212364,Education,Education +208327,Education,Education +207867,Education,Education +203568,Education,Education +203567,Education,Education +369154,Education,Education +362386,Education,Education +322216,Education,Education +322213,Education,Education +322211,Education,Education +322209,Education,Education +319819,Education,Education +319818,Education,Education +319715,Education,Education +319714,Education,Education +319713,Education,Education +319712,Education,Education +318109,Education,Education +316394,Education,Education +316393,Education,Education +316392,Education,Education +316391,Education,Education +316389,Education,Education +316387,Education,Education +316385,Education,Education +316382,Education,Education +316380,Education,Education +316378,Education,Education +316377,Education,Education +316375,Education,Education +316372,Education,Education +316371,Education,Education +316369,Education,Education +313271,Education,Education +313270,Education,Education +313269,Education,Education +311439,Education,Education +311438,Education,Education +311437,Education,Education +311435,Education,Education +311434,Education,Education +311433,Education,Education +311432,Education,Education +311431,Education,Education +311430,Education,Education +311429,Education,Education +311428,Education,Education +311427,Education,Education +311423,Education,Education +311420,Education,Education +311419,Education,Education +311417,Education,Education +311414,Education,Education +311413,Education,Education +311412,Education,Education +311411,Education,Education +311410,Education,Education +308549,Education,Education +308529,Education,Education +308451,Education,Education +308449,Education,Education +308431,Education,Education +308430,Education,Education +308429,Education,Education +308389,Education,Education +303769,Education,Education +303749,Education,Education +303729,Education,Education +303709,Education,Education +303689,Education,Education +303671,Education,Education +303670,Education,Education +303652,Education,Education +303651,Education,Education +303649,Education,Education +303647,Education,Education +303645,Education,Education +303644,Education,Education +297670,Education,Education +297669,Education,Education +297311,Education,Education +297310,Education,Education +297292,Education,Education +297291,Education,Education +297290,Education,Education +297289,Education,Education +297270,Education,Education +297269,Education,Education +297250,Education,Education +291969,Education,Education +273890,Education,Education +273869,Education,Education +259542,Education,Education +539507,Education,Education +536772,Education,Education +536771,Education,Education +536769,Education,Education +536767,Education,Education +536764,Education,Education +536763,Education,Education +531785,Education,Education +531780,Education,Education +531775,Education,Education +531773,Education,Education +531768,Education,Education +530599,Education,Education +463401,Education,Education +463400,Education,Education +442585,Education,Education +442583,Education,Education +442581,Education,Education +442579,Education,Education +438865,Education,Education +438864,Education,Education +438862,Education,Education +438861,Education,Education +438832,Education,Education +438831,Education,Education +438829,Education,Education +438828,Education,Education +438827,Education,Education +438825,Education,Education +438818,Education,Education +438813,Education,Education +422389,Education,Education +420100,Education,Education +413493,Education,Education +409947,Education,Education +409946,Education,Education +409944,Education,Education +409943,Education,Education +409942,Education,Education +409941,Education,Education +409940,Education,Education +409939,Education,Education +409938,Education,Education +409937,Education,Education +408183,Education,Education +408178,Education,Education +381394,Education,Education +487334,Environment,Environment +467563,Environment,Environment +83257,Environment,Environment +83256,Environment,Environment +162061,Environment,Environment +160132,Environment,Environment +160131,Environment,Environment +160110,Environment,Environment +160106,Environment,Environment +160102,Environment,Environment +160099,Environment,Environment +160097,Environment,Environment +160007,Environment,Environment +157264,Environment,Environment +157248,Environment,Environment +157245,Environment,Environment +157224,Environment,Environment +187346,Environment,Environment +187344,Environment,Environment +187324,Environment,Environment +180476,Environment,Environment +180475,Environment,Environment +180473,Environment,Environment +180471,Environment,Environment +180468,Environment,Environment +176077,Environment,Environment +176076,Environment,Environment +176074,Environment,Environment +176072,Environment,Environment +173765,Environment,Environment +171050,Environment,Environment +171046,Environment,Environment +171044,Environment,Environment +171028,Environment,Environment +171022,Environment,Environment +168116,Environment,Environment +168115,Environment,Environment +168113,Environment,Environment +167854,Environment,Environment +166376,Environment,Environment +166375,Environment,Environment +166371,Environment,Environment +166346,Environment,Environment +166345,Environment,Environment +164361,Environment,Environment +297311,Environment,Environment +297310,Environment,Environment +297292,Environment,Environment +297291,Environment,Environment +297290,Environment,Environment +297289,Environment,Environment +297270,Environment,Environment +297269,Environment,Environment +297250,Environment,Environment +273869,Environment,Environment +251542,Environment,Environment +251436,Environment,Environment +251435,Environment,Environment +245123,Environment,Environment +245122,Environment,Environment +245120,Environment,Environment +245119,Environment,Environment +245118,Environment,Environment +245117,Environment,Environment +241298,Environment,Environment +240757,Environment,Environment +237098,Environment,Environment +233219,Environment,Environment +230277,Environment,Environment +227342,Environment,Environment +227338,Environment,Environment +226068,Environment,Environment +225931,Environment,Environment +225930,Environment,Environment +225928,Environment,Environment +223649,Environment,Environment +223644,Environment,Environment +223641,Environment,Environment +223640,Environment,Environment +212364,Environment,Environment +212358,Environment,Environment +208327,Environment,Environment +207869,Environment,Environment +203568,Environment,Environment +200967,Environment,Environment +195042,Environment,Environment +195039,Environment,Environment +195036,Environment,Environment +195033,Environment,Environment +195031,Environment,Environment +438866,Environment,Environment +385555,Environment,Environment +385538,Environment,Environment +385254,Environment,Environment +385253,Environment,Environment +324965,Environment,Environment +322216,Environment,Environment +322213,Environment,Environment +322211,Environment,Environment +322209,Environment,Environment +319819,Environment,Environment +319818,Environment,Environment +319715,Environment,Environment +319714,Environment,Environment +319713,Environment,Environment +319712,Environment,Environment +318109,Environment,Environment +316394,Environment,Environment +316393,Environment,Environment +316392,Environment,Environment +316391,Environment,Environment +316389,Environment,Environment +316387,Environment,Environment +316385,Environment,Environment +316382,Environment,Environment +316380,Environment,Environment +316378,Environment,Environment +316377,Environment,Environment +316375,Environment,Environment +316372,Environment,Environment +316371,Environment,Environment +316369,Environment,Environment +313271,Environment,Environment +313270,Environment,Environment +313269,Environment,Environment +311439,Environment,Environment +311437,Environment,Environment +311435,Environment,Environment +311434,Environment,Environment +311433,Environment,Environment +311432,Environment,Environment +311431,Environment,Environment +311430,Environment,Environment +311429,Environment,Environment +311428,Environment,Environment +311427,Environment,Environment +311423,Environment,Environment +311420,Environment,Environment +311419,Environment,Environment +311417,Environment,Environment +311414,Environment,Environment +311413,Environment,Environment +311412,Environment,Environment +311411,Environment,Environment +311410,Environment,Environment +308529,Environment,Environment +308451,Environment,Environment +308449,Environment,Environment +308431,Environment,Environment +308430,Environment,Environment +308429,Environment,Environment +308389,Environment,Environment +303769,Environment,Environment +303749,Environment,Environment +303709,Environment,Environment +303689,Environment,Environment +303671,Environment,Environment +303670,Environment,Environment +303652,Environment,Environment +303651,Environment,Environment +303649,Environment,Environment +303647,Environment,Environment +303645,Environment,Environment +303644,Environment,Environment +531783,Environment,Environment +515205,Environment,Environment +515204,Environment,Environment +515176,Environment,Environment +515174,Environment,Environment +513862,Environment,Environment +513861,Environment,Environment +513858,Environment,Environment +513857,Environment,Environment +512254,Environment,Environment +512253,Environment,Environment +512252,Environment,Environment +512251,Environment,Environment +510090,Environment,Environment +510089,Environment,Environment +510088,Environment,Environment +510087,Environment,Environment +510086,Environment,Environment +510084,Environment,Environment +510083,Environment,Environment +510081,Environment,Environment +507212,Environment,Environment +507210,Environment,Environment +507209,Environment,Environment +507208,Environment,Environment +503911,Environment,Environment +503909,Environment,Environment +503908,Environment,Environment +503904,Environment,Environment +497999,Environment,Environment +497998,Environment,Environment +495306,Environment,Environment +495304,Environment,Environment +493440,Environment,Environment +491260,Environment,Environment +491257,Environment,Environment +491252,Environment,Environment +491252,Fisheries,Fisheries +487339,Fisheries,Fisheries +324966,Fisheries,Fisheries +487334,Fisheries,Fisheries +479962,Fisheries,Fisheries +479959,Fisheries,Fisheries +479958,Fisheries,Fisheries +479955,Fisheries,Fisheries +479937,Fisheries,Fisheries +475468,Fisheries,Fisheries +472007,Fisheries,Fisheries +472006,Fisheries,Fisheries +472004,Fisheries,Fisheries +471997,Fisheries,Fisheries +469953,Fisheries,Fisheries +469951,Fisheries,Fisheries +469949,Fisheries,Fisheries +469946,Fisheries,Fisheries +469943,Fisheries,Fisheries +469939,Fisheries,Fisheries +469933,Fisheries,Fisheries +469927,Fisheries,Fisheries +469921,Fisheries,Fisheries +467618,Fisheries,Fisheries +467615,Fisheries,Fisheries +467613,Fisheries,Fisheries +467609,Fisheries,Fisheries +467607,Fisheries,Fisheries +467604,Fisheries,Fisheries +467595,Fisheries,Fisheries +467589,Fisheries,Fisheries +467579,Fisheries,Fisheries +467574,Fisheries,Fisheries +467568,Fisheries,Fisheries +467559,Fisheries,Fisheries +467552,Fisheries,Fisheries +467536,Fisheries,Fisheries +460008,Fisheries,Fisheries +459805,Fisheries,Fisheries +459804,Fisheries,Fisheries +458505,Fisheries,Fisheries +455743,Fisheries,Fisheries +455738,Fisheries,Fisheries +455707,Fisheries,Fisheries +452373,Fisheries,Fisheries +442582,Fisheries,Fisheries +438866,Fisheries,Fisheries +515205,Fisheries,Fisheries +515204,Fisheries,Fisheries +515176,Fisheries,Fisheries +515174,Fisheries,Fisheries +513862,Fisheries,Fisheries +513861,Fisheries,Fisheries +513858,Fisheries,Fisheries +513857,Fisheries,Fisheries +512254,Fisheries,Fisheries +512253,Fisheries,Fisheries +512252,Fisheries,Fisheries +512251,Fisheries,Fisheries +510090,Fisheries,Fisheries +510089,Fisheries,Fisheries +510088,Fisheries,Fisheries +510087,Fisheries,Fisheries +510086,Fisheries,Fisheries +510084,Fisheries,Fisheries +510083,Fisheries,Fisheries +510081,Fisheries,Fisheries +507212,Fisheries,Fisheries +507210,Fisheries,Fisheries +507209,Fisheries,Fisheries +507208,Fisheries,Fisheries +503911,Fisheries,Fisheries +503909,Fisheries,Fisheries +503908,Fisheries,Fisheries +503904,Fisheries,Fisheries +497999,Fisheries,Fisheries +497998,Fisheries,Fisheries +495306,Fisheries,Fisheries +495304,Fisheries,Fisheries +493440,Fisheries,Fisheries +277789,Health,Health +477544,Health,Health +157123,Health,Health +136114,Health,Health +132845,Health,Health +132841,Health,Health +132834,Health,Health +212358,Health,Health +162063,Health,Health +109824,Energy,Energy +154928,Energy,Energy +139214,Energy,Energy +130375,Energy,Energy +388951,Energy,Energy +381491,Energy,Energy +426197,Environment,Environment +420581,Environment,Environment +137814,Environment,Environment +414629,Environment,Environment +397587,Environment,Environment +392581,Environment,Environment +388951,Environment,Environment +167248,Environment,Environment +167246,Environment,Environment +167244,Environment,Environment +544121,Environment,Environment +489238,Environment,Environment +447745,Environment,Environment +445065,Environment,Environment +414638,Industry,Industry +414628,Transportation,Transportation +544121,Transportation,Transportation +109824,Transportation,Transportation +167248,Transportation,Transportation +167247,Transportation,Transportation +167246,Transportation,Transportation +167244,Transportation,Transportation +162244,Transportation,Transportation +162241,Transportation,Transportation +162238,Transportation,Transportation +162233,Transportation,Transportation +160136,Transportation,Transportation +154928,Transportation,Transportation +151662,Transportation,Transportation +145815,Transportation,Transportation +397587,Transportation,Transportation +392581,Transportation,Transportation +388951,Transportation,Transportation +382681,Transportation,Transportation +378379,Transportation,Transportation +366222,Transportation,Transportation +489238,Transportation,Transportation +445065,Transportation,Transportation +443005,Transportation,Transportation +523006,Agriculture,Agriculture +85438,Education,Education +304486,Employment and Training,Employment and Training +357736,Employment and Training,Employment and Training +87938,Employment and Training,Employment and Training +87937,Employment and Training,Employment and Training +87936,Employment and Training,Employment and Training +87935,Employment and Training,Employment and Training +87934,Employment and Training,Employment and Training +85438,Employment and Training,Employment and Training +344905,Employment and Training,Employment and Training +344901,Employment and Training,Employment and Training +344900,Employment and Training,Employment and Training +344899,Employment and Training,Employment and Training +344898,Employment and Training,Employment and Training +344831,Employment and Training,Employment and Training +340760,Employment and Training,Employment and Training +333731,Employment and Training,Employment and Training +310927,Employment and Training,Employment and Training +310924,Employment and Training,Employment and Training +310918,Employment and Training,Employment and Training +442564,Energy,Energy +442562,Energy,Energy +87938,Energy,Energy +87937,Energy,Energy +87936,Energy,Energy +87935,Energy,Energy +87934,Energy,Energy +87864,Energy,Energy +85440,Energy,Energy +85439,Energy,Energy +82356,Energy,Energy +82334,Energy,Energy +115794,Energy,Energy +114477,Energy,Energy +113182,Energy,Energy +113180,Energy,Energy +108896,Energy,Energy +105014,Energy,Energy +104998,Energy,Energy +104996,Energy,Energy +100830,Energy,Energy +96684,Energy,Energy +96683,Energy,Energy +95036,Energy,Energy +93680,Energy,Energy +93174,Energy,Energy +90137,Energy,Energy +90128,Energy,Energy +90124,Energy,Energy +185986,Energy,Energy +185985,Energy,Energy +185984,Energy,Energy +178924,Energy,Energy +178904,Energy,Energy +178884,Energy,Energy +178864,Energy,Energy +178844,Energy,Energy +178824,Energy,Energy +178804,Energy,Energy +178784,Energy,Energy +178764,Energy,Energy +178744,Energy,Energy +178724,Energy,Energy +178704,Energy,Energy +175546,Energy,Energy +175545,Energy,Energy +175544,Energy,Energy +175303,Energy,Energy +173637,Energy,Energy +173635,Energy,Energy +173633,Energy,Energy +173630,Energy,Energy +173629,Energy,Energy +167174,Energy,Energy +165204,Energy,Energy +163620,Energy,Energy +163619,Energy,Energy +161527,Energy,Energy +161526,Energy,Energy +161525,Energy,Energy +161520,Energy,Energy +161519,Energy,Energy +161518,Energy,Energy +161517,Energy,Energy +161516,Energy,Energy +159109,Energy,Energy +159108,Energy,Energy +159105,Energy,Energy +154687,Energy,Energy +154686,Energy,Energy +149966,Energy,Energy +147997,Energy,Energy +147996,Energy,Energy +147994,Energy,Energy +147993,Energy,Energy +147992,Energy,Energy +147991,Energy,Energy +145867,Energy,Energy +145261,Energy,Energy +141878,Energy,Energy +141877,Energy,Energy +141876,Energy,Energy +131978,Energy,Energy +131977,Energy,Energy +131415,Energy,Energy +131414,Energy,Energy +297034,Energy,Energy +297033,Energy,Energy +297032,Energy,Energy +297031,Energy,Energy +293473,Energy,Energy +293472,Energy,Energy +293470,Energy,Energy +293469,Energy,Energy +293249,Energy,Energy +291316,Energy,Energy +291315,Energy,Energy +291314,Energy,Energy +291313,Energy,Energy +291312,Energy,Energy +291269,Energy,Energy +287054,Energy,Energy +287051,Energy,Energy +287050,Energy,Energy +286210,Energy,Energy +283336,Energy,Energy +283335,Energy,Energy +283231,Energy,Energy +283009,Energy,Energy +282990,Energy,Energy +282989,Energy,Energy +282951,Energy,Energy +282930,Energy,Energy +282832,Energy,Energy +281129,Energy,Energy +277656,Energy,Energy +277655,Energy,Energy +277654,Energy,Energy +277653,Energy,Energy +277652,Energy,Energy +277651,Energy,Energy +277650,Energy,Energy +275230,Energy,Energy +275229,Energy,Energy +273769,Energy,Energy +273757,Energy,Energy +273756,Energy,Energy +273755,Energy,Energy +273754,Energy,Energy +273753,Energy,Energy +273752,Energy,Energy +273749,Energy,Energy +265369,Energy,Energy +264852,Energy,Energy +264653,Energy,Energy +264652,Energy,Energy +264651,Energy,Energy +259074,Energy,Energy +259066,Energy,Energy +254094,Energy,Energy +250932,Energy,Energy +250931,Energy,Energy +250930,Energy,Energy +250929,Energy,Energy +240804,Energy,Energy +240802,Energy,Energy +240799,Energy,Energy +240795,Energy,Energy +236910,Energy,Energy +236909,Energy,Energy +233874,Energy,Energy +230477,Energy,Energy +230475,Energy,Energy +230472,Energy,Energy +230470,Energy,Energy +230469,Energy,Energy +230466,Energy,Energy +227215,Energy,Energy +227211,Energy,Energy +227200,Energy,Energy +223639,Energy,Energy +223637,Energy,Energy +223635,Energy,Energy +212567,Energy,Energy +212565,Energy,Energy +207447,Energy,Energy +207278,Energy,Energy +207171,Energy,Energy +207166,Energy,Energy +207162,Energy,Energy +207159,Energy,Energy +202948,Energy,Energy +202833,Energy,Energy +202832,Energy,Energy +202830,Energy,Energy +202829,Energy,Energy +202812,Energy,Energy +200521,Energy,Energy +200514,Energy,Energy +200508,Energy,Energy +200503,Energy,Energy +200497,Energy,Energy +200487,Energy,Energy +200481,Energy,Energy +200467,Energy,Energy +195404,Energy,Energy +195403,Energy,Energy +195402,Energy,Energy +195399,Energy,Energy +195398,Energy,Energy +195396,Energy,Energy +195394,Energy,Energy +195393,Energy,Energy +195392,Energy,Energy +195391,Energy,Energy +195390,Energy,Energy +195389,Energy,Energy +190394,Energy,Energy +190393,Energy,Energy +190392,Energy,Energy +190390,Energy,Energy +190388,Energy,Energy +190109,Energy,Energy +189745,Energy,Energy +189744,Energy,Energy +185987,Energy,Energy +439230,Energy,Energy +439228,Energy,Energy +439224,Energy,Energy +438984,Energy,Energy +438978,Energy,Energy +436049,Energy,Energy +433746,Energy,Energy +433740,Energy,Energy +433635,Energy,Energy +431039,Energy,Energy +428202,Energy,Energy +428168,Energy,Energy +428166,Energy,Energy +428129,Energy,Energy +428124,Energy,Energy +426507,Energy,Energy +426364,Energy,Energy +426352,Energy,Energy +426343,Energy,Energy +424423,Energy,Energy +424412,Energy,Energy +424406,Energy,Energy +424405,Energy,Energy +424404,Energy,Energy +422235,Energy,Energy +422234,Energy,Energy +422212,Energy,Energy +422208,Energy,Energy +422200,Energy,Energy +420003,Energy,Energy +417742,Energy,Energy +417740,Energy,Energy +417739,Energy,Energy +417738,Energy,Energy +416409,Energy,Energy +416358,Energy,Energy +416258,Energy,Energy +416254,Energy,Energy +416247,Energy,Energy +416243,Energy,Energy +416234,Energy,Energy +416195,Energy,Energy +416185,Energy,Energy +416166,Energy,Energy +416162,Energy,Energy +413191,Energy,Energy +413168,Energy,Energy +413132,Energy,Energy +409911,Energy,Energy +409907,Energy,Energy +409903,Energy,Energy +409897,Energy,Energy +409093,Energy,Energy +407864,Energy,Energy +407721,Energy,Energy +406954,Energy,Energy +406951,Energy,Energy +406949,Energy,Energy +406947,Energy,Energy +406933,Energy,Energy +406930,Energy,Energy +405694,Energy,Energy +405693,Energy,Energy +405691,Energy,Energy +405686,Energy,Energy +405683,Energy,Energy +405670,Energy,Energy +405667,Energy,Energy +403899,Energy,Energy +403815,Energy,Energy +403796,Energy,Energy +400638,Energy,Energy +398874,Energy,Energy +398871,Energy,Energy +398867,Energy,Energy +398862,Energy,Energy +396993,Energy,Energy +396985,Energy,Energy +396981,Energy,Energy +396977,Energy,Energy +393939,Energy,Energy +392688,Energy,Energy +392686,Energy,Energy +391491,Energy,Energy +388486,Energy,Energy +385652,Energy,Energy +385646,Energy,Energy +385644,Energy,Energy +385640,Energy,Energy +385638,Energy,Energy +385635,Energy,Energy +385628,Energy,Energy +385590,Energy,Energy +382493,Energy,Energy +382490,Energy,Energy +382489,Energy,Energy +382488,Energy,Energy +382486,Energy,Energy +381365,Energy,Energy +381361,Energy,Energy +381358,Energy,Energy +381356,Energy,Energy +381353,Energy,Energy +381350,Energy,Energy +381348,Energy,Energy +381347,Energy,Energy +377243,Energy,Energy +377242,Energy,Energy +377241,Energy,Energy +377240,Energy,Energy +377239,Energy,Energy +377238,Energy,Energy +374874,Energy,Energy +374864,Energy,Energy +374853,Energy,Energy +369594,Energy,Energy +369593,Energy,Energy +369591,Energy,Energy +369590,Energy,Energy +366604,Energy,Energy +366603,Energy,Energy +366600,Energy,Energy +366591,Energy,Energy +365439,Energy,Energy +365438,Energy,Energy +365330,Energy,Energy +365329,Energy,Energy +359440,Energy,Energy +357738,Energy,Energy +357737,Energy,Energy +357734,Energy,Energy +357733,Energy,Energy +355835,Energy,Energy +355645,Energy,Energy +355644,Energy,Energy +355643,Energy,Energy +355642,Energy,Energy +353247,Energy,Energy +353245,Energy,Energy +353244,Energy,Energy +353241,Energy,Energy +348563,Energy,Energy +348560,Energy,Energy +348558,Energy,Energy +348557,Energy,Energy +344903,Energy,Energy +344833,Energy,Energy +340786,Energy,Energy +340781,Energy,Energy +340778,Energy,Energy +340777,Energy,Energy +340775,Energy,Energy +340772,Energy,Energy +340771,Energy,Energy +340770,Energy,Energy +340769,Energy,Energy +340766,Energy,Energy +338868,Energy,Energy +338867,Energy,Energy +336108,Energy,Energy +336106,Energy,Energy +330466,Energy,Energy +330249,Energy,Energy +330244,Energy,Energy +327993,Energy,Energy +325110,Energy,Energy +325109,Energy,Energy +322317,Energy,Energy +322316,Energy,Energy +322315,Energy,Energy +319393,Energy,Energy +318971,Energy,Energy +318969,Energy,Energy +316079,Energy,Energy +316076,Energy,Energy +313314,Energy,Energy +313313,Energy,Energy +313312,Energy,Energy +313311,Energy,Energy +313310,Energy,Energy +313309,Energy,Energy +313308,Energy,Energy +313307,Energy,Energy +313306,Energy,Energy +311170,Energy,Energy +311169,Energy,Energy +310928,Energy,Energy +310925,Energy,Energy +310924,Energy,Energy +310923,Energy,Energy +310922,Energy,Energy +310921,Energy,Energy +310920,Energy,Energy +310919,Energy,Energy +310918,Energy,Energy +310916,Energy,Energy +310915,Energy,Energy +310913,Energy,Energy +310912,Energy,Energy +310911,Energy,Energy +304490,Energy,Energy +304479,Energy,Energy +298709,Energy,Energy +297035,Energy,Energy +544394,Energy,Energy +544393,Energy,Energy +544392,Energy,Energy +544390,Energy,Energy +544388,Energy,Energy +544387,Energy,Energy +541486,Energy,Energy +541485,Energy,Energy +541484,Energy,Energy +541483,Energy,Energy +540035,Energy,Energy +540032,Energy,Energy +536882,Energy,Energy +536881,Energy,Energy +535305,Energy,Energy +535297,Energy,Energy +535285,Energy,Energy +531693,Energy,Energy +531689,Energy,Energy +528954,Energy,Energy +526229,Energy,Energy +523028,Energy,Energy +523023,Energy,Energy +523008,Energy,Energy +523006,Energy,Energy +523002,Energy,Energy +522998,Energy,Energy +519862,Energy,Energy +519858,Energy,Energy +519855,Energy,Energy +519851,Energy,Energy +518020,Energy,Energy +518016,Energy,Energy +518009,Energy,Energy +518003,Energy,Energy +517990,Energy,Energy +515733,Energy,Energy +515730,Energy,Energy +515727,Energy,Energy +514155,Energy,Energy +514153,Energy,Energy +512837,Energy,Energy +512815,Energy,Energy +511033,Energy,Energy +510990,Energy,Energy +510988,Energy,Energy +510981,Energy,Energy +510967,Energy,Energy +510965,Energy,Energy +510954,Energy,Energy +508673,Energy,Energy +508669,Energy,Energy +508645,Energy,Energy +508638,Energy,Energy +508632,Energy,Energy +508629,Energy,Energy +508627,Energy,Energy +504482,Energy,Energy +504477,Energy,Energy +502390,Energy,Energy +502384,Energy,Energy +502380,Energy,Energy +502371,Energy,Energy +502370,Energy,Energy +502362,Energy,Energy +498991,Energy,Energy +495266,Energy,Energy +493061,Energy,Energy +491344,Energy,Energy +491300,Energy,Energy +491293,Energy,Energy +491271,Energy,Energy +488177,Energy,Energy +484954,Energy,Energy +484858,Energy,Energy +482221,Energy,Energy +482185,Energy,Energy +479260,Energy,Energy +479257,Energy,Energy +477839,Energy,Energy +477820,Energy,Energy +477815,Energy,Energy +473581,Energy,Energy +473394,Energy,Energy +473390,Energy,Energy +473386,Energy,Energy +473348,Energy,Energy +473021,Energy,Energy +473014,Energy,Energy +473010,Energy,Energy +473002,Energy,Energy +470785,Energy,Energy +470782,Energy,Energy +470778,Energy,Energy +470776,Energy,Energy +470761,Energy,Energy +470752,Energy,Energy +470751,Energy,Energy +470744,Energy,Energy +467735,Energy,Energy +467710,Energy,Energy +467698,Energy,Energy +467689,Energy,Energy +464670,Energy,Energy +464667,Energy,Energy +464666,Energy,Energy +464665,Energy,Energy +464597,Energy,Energy +464591,Energy,Energy +464588,Energy,Energy +462975,Energy,Energy +461719,Energy,Energy +461716,Energy,Energy +461615,Energy,Energy +461612,Energy,Energy +461610,Energy,Energy +461599,Energy,Energy +461586,Energy,Energy +460635,Energy,Energy +460634,Energy,Energy +460633,Energy,Energy +460631,Energy,Energy +460628,Energy,Energy +460627,Energy,Energy +460179,Energy,Energy +460178,Energy,Energy +460177,Energy,Energy +460176,Energy,Energy +460113,Energy,Energy +455578,Energy,Energy +455556,Energy,Energy +455551,Energy,Energy +455547,Energy,Energy +449997,Energy,Energy +449979,Energy,Energy +445502,Energy,Energy +445499,Energy,Energy +443837,Energy,Energy +443836,Energy,Energy +443834,Energy,Energy +443833,Energy,Energy +442574,Energy,Energy +442570,Energy,Energy +439234,Environment,Environment +439230,Environment,Environment +90124,Environment,Environment +87938,Environment,Environment +87937,Environment,Environment +87936,Environment,Environment +87935,Environment,Environment +87934,Environment,Environment +87864,Environment,Environment +85440,Environment,Environment +85439,Environment,Environment +82356,Environment,Environment +77507,Environment,Environment +75854,Environment,Environment +147991,Environment,Environment +145867,Environment,Environment +145261,Environment,Environment +141876,Environment,Environment +132557,Environment,Environment +132556,Environment,Environment +131977,Environment,Environment +131415,Environment,Environment +131414,Environment,Environment +113182,Environment,Environment +113180,Environment,Environment +108896,Environment,Environment +104998,Environment,Environment +104996,Environment,Environment +100830,Environment,Environment +96684,Environment,Environment +96683,Environment,Environment +95036,Environment,Environment +93680,Environment,Environment +93174,Environment,Environment +185984,Environment,Environment +178924,Environment,Environment +178904,Environment,Environment +178884,Environment,Environment +178864,Environment,Environment +178844,Environment,Environment +178824,Environment,Environment +178804,Environment,Environment +178784,Environment,Environment +178764,Environment,Environment +178744,Environment,Environment +178724,Environment,Environment +178704,Environment,Environment +175546,Environment,Environment +175545,Environment,Environment +175544,Environment,Environment +175303,Environment,Environment +167174,Environment,Environment +163620,Environment,Environment +163619,Environment,Environment +161527,Environment,Environment +161526,Environment,Environment +161525,Environment,Environment +161524,Environment,Environment +161523,Environment,Environment +161522,Environment,Environment +161521,Environment,Environment +161520,Environment,Environment +161519,Environment,Environment +161518,Environment,Environment +161517,Environment,Environment +161516,Environment,Environment +159109,Environment,Environment +159108,Environment,Environment +159105,Environment,Environment +154687,Environment,Environment +154686,Environment,Environment +149966,Environment,Environment +147997,Environment,Environment +147996,Environment,Environment +147994,Environment,Environment +147993,Environment,Environment +147992,Environment,Environment +291312,Environment,Environment +291269,Environment,Environment +287054,Environment,Environment +282951,Environment,Environment +282832,Environment,Environment +277656,Environment,Environment +277655,Environment,Environment +277654,Environment,Environment +277653,Environment,Environment +275229,Environment,Environment +273769,Environment,Environment +273757,Environment,Environment +273756,Environment,Environment +273755,Environment,Environment +273754,Environment,Environment +273753,Environment,Environment +273752,Environment,Environment +273751,Environment,Environment +273750,Environment,Environment +273749,Environment,Environment +265369,Environment,Environment +264653,Environment,Environment +264651,Environment,Environment +259073,Environment,Environment +254094,Environment,Environment +250932,Environment,Environment +250931,Environment,Environment +250930,Environment,Environment +250929,Environment,Environment +240804,Environment,Environment +240802,Environment,Environment +240799,Environment,Environment +240795,Environment,Environment +236910,Environment,Environment +233874,Environment,Environment +230475,Environment,Environment +230472,Environment,Environment +230470,Environment,Environment +230469,Environment,Environment +230466,Environment,Environment +227200,Environment,Environment +207278,Environment,Environment +207162,Environment,Environment +207159,Environment,Environment +202948,Environment,Environment +202833,Environment,Environment +202832,Environment,Environment +202830,Environment,Environment +202829,Environment,Environment +200767,Environment,Environment +200503,Environment,Environment +200497,Environment,Environment +200491,Environment,Environment +200487,Environment,Environment +200480,Environment,Environment +195389,Environment,Environment +189744,Environment,Environment +439228,Environment,Environment +439224,Environment,Environment +439211,Environment,Environment +439097,Environment,Environment +436054,Environment,Environment +436052,Environment,Environment +436050,Environment,Environment +436048,Environment,Environment +433711,Environment,Environment +433637,Environment,Environment +433635,Environment,Environment +431039,Environment,Environment +428202,Environment,Environment +428198,Environment,Environment +428186,Environment,Environment +428174,Environment,Environment +428166,Environment,Environment +428138,Environment,Environment +426352,Environment,Environment +424423,Environment,Environment +424419,Environment,Environment +424412,Environment,Environment +424405,Environment,Environment +422235,Environment,Environment +422234,Environment,Environment +422212,Environment,Environment +422208,Environment,Environment +420003,Environment,Environment +417742,Environment,Environment +416358,Environment,Environment +416258,Environment,Environment +416247,Environment,Environment +416243,Environment,Environment +416234,Environment,Environment +416195,Environment,Environment +416185,Environment,Environment +416166,Environment,Environment +416162,Environment,Environment +413203,Environment,Environment +413191,Environment,Environment +409897,Environment,Environment +409091,Environment,Environment +407867,Environment,Environment +407864,Environment,Environment +407719,Environment,Environment +406954,Environment,Environment +406947,Environment,Environment +406940,Environment,Environment +406936,Environment,Environment +406933,Environment,Environment +406854,Environment,Environment +405696,Environment,Environment +405694,Environment,Environment +405693,Environment,Environment +405691,Environment,Environment +405686,Environment,Environment +405683,Environment,Environment +405670,Environment,Environment +405667,Environment,Environment +403899,Environment,Environment +403815,Environment,Environment +400677,Environment,Environment +398874,Environment,Environment +398871,Environment,Environment +398867,Environment,Environment +398862,Environment,Environment +398860,Environment,Environment +396985,Environment,Environment +396981,Environment,Environment +393939,Environment,Environment +392690,Environment,Environment +391492,Environment,Environment +388494,Environment,Environment +388486,Environment,Environment +385652,Environment,Environment +385646,Environment,Environment +385644,Environment,Environment +385640,Environment,Environment +385638,Environment,Environment +385635,Environment,Environment +385628,Environment,Environment +381350,Environment,Environment +381341,Environment,Environment +377243,Environment,Environment +369595,Environment,Environment +369594,Environment,Environment +369591,Environment,Environment +369590,Environment,Environment +369589,Environment,Environment +369588,Environment,Environment +369587,Environment,Environment +369582,Environment,Environment +368716,Environment,Environment +368714,Environment,Environment +366604,Environment,Environment +366603,Environment,Environment +366600,Environment,Environment +366594,Environment,Environment +366591,Environment,Environment +365438,Environment,Environment +365345,Environment,Environment +365343,Environment,Environment +365336,Environment,Environment +365335,Environment,Environment +365334,Environment,Environment +365333,Environment,Environment +365332,Environment,Environment +365330,Environment,Environment +365328,Environment,Environment +362329,Environment,Environment +362327,Environment,Environment +355834,Environment,Environment +355832,Environment,Environment +353247,Environment,Environment +353245,Environment,Environment +353244,Environment,Environment +348563,Environment,Environment +340783,Environment,Environment +340782,Environment,Environment +340760,Environment,Environment +340759,Environment,Environment +340758,Environment,Environment +340757,Environment,Environment +340698,Environment,Environment +338867,Environment,Environment +336108,Environment,Environment +336106,Environment,Environment +330243,Environment,Environment +322315,Environment,Environment +313307,Environment,Environment +313306,Environment,Environment +311170,Environment,Environment +311169,Environment,Environment +310927,Environment,Environment +310925,Environment,Environment +310924,Environment,Environment +310918,Environment,Environment +310913,Environment,Environment +310912,Environment,Environment +310911,Environment,Environment +297033,Environment,Environment +297032,Environment,Environment +544388,Environment,Environment +541484,Environment,Environment +541483,Environment,Environment +535285,Environment,Environment +531695,Environment,Environment +531693,Environment,Environment +531689,Environment,Environment +523008,Environment,Environment +522998,Environment,Environment +518020,Environment,Environment +518016,Environment,Environment +518003,Environment,Environment +518000,Environment,Environment +517990,Environment,Environment +515730,Environment,Environment +514155,Environment,Environment +512837,Environment,Environment +512815,Environment,Environment +511033,Environment,Environment +509473,Environment,Environment +502371,Environment,Environment +502362,Environment,Environment +495268,Environment,Environment +495266,Environment,Environment +491344,Environment,Environment +491271,Environment,Environment +488172,Environment,Environment +488167,Environment,Environment +484858,Environment,Environment +482221,Environment,Environment +477820,Environment,Environment +473581,Environment,Environment +473348,Environment,Environment +470785,Environment,Environment +470782,Environment,Environment +470778,Environment,Environment +470776,Environment,Environment +470736,Environment,Environment +464670,Environment,Environment +464666,Environment,Environment +462737,Environment,Environment +461599,Environment,Environment +458740,Environment,Environment +458732,Environment,Environment +458727,Environment,Environment +455578,Environment,Environment +445503,Environment,Environment +443839,Environment,Environment +443837,Environment,Environment +443836,Environment,Environment +443834,Environment,Environment +443833,Environment,Environment +443828,Environment,Environment +442574,Environment,Environment +442573,Environment,Environment +442570,Environment,Environment +442569,Environment,Environment +442564,Environment,Environment +442549,Environment,Environment +439377,Environment,Environment +200481,Fisheries,Fisheries +502354,Fisheries,Fisheries +161527,Fisheries,Fisheries +161520,Fisheries,Fisheries +161518,Fisheries,Fisheries +147992,Fisheries,Fisheries +178924,Fisheries,Fisheries +178904,Fisheries,Fisheries +178884,Fisheries,Fisheries +178864,Fisheries,Fisheries +178844,Fisheries,Fisheries +178824,Fisheries,Fisheries +178804,Fisheries,Fisheries +178784,Fisheries,Fisheries +178764,Fisheries,Fisheries +178744,Fisheries,Fisheries +365335,Fisheries,Fisheries +365334,Fisheries,Fisheries +310925,Fisheries,Fisheries +200503,Fisheries,Fisheries +223635,Immigration,Immigration +212567,Immigration,Immigration +85438,Immigration,Immigration +165204,Immigration,Immigration +275230,Immigration,Immigration +264652,Immigration,Immigration +245363,Immigration,Immigration +473002,Industry,Industry +470751,Industry,Industry +105014,Industry,Industry +95037,Industry,Industry +93174,Industry,Industry +87938,Industry,Industry +87937,Industry,Industry +87936,Industry,Industry +87935,Industry,Industry +87934,Industry,Industry +87864,Industry,Industry +175546,Industry,Industry +175545,Industry,Industry +175544,Industry,Industry +161521,Industry,Industry +161519,Industry,Industry +161518,Industry,Industry +151620,Industry,Industry +151619,Industry,Industry +141875,Industry,Industry +141874,Industry,Industry +132557,Industry,Industry +132556,Industry,Industry +131979,Industry,Industry +131978,Industry,Industry +131976,Industry,Industry +131414,Industry,Industry +374862,Industry,Industry +371845,Industry,Industry +368714,Industry,Industry +348554,Industry,Industry +343462,Industry,Industry +343458,Industry,Industry +207166,Industry,Industry +200767,Industry,Industry +443846,Industry,Industry +443839,Industry,Industry +443828,Industry,Industry +443827,Industry,Industry +436048,Industry,Industry +428129,Industry,Industry +424410,Industry,Industry +416373,Industry,Industry +416258,Industry,Industry +416254,Industry,Industry +413271,Industry,Industry +413155,Industry,Industry +413121,Industry,Industry +383573,Industry,Industry +535305,Industry,Industry +491300,Industry,Industry +491293,Industry,Industry +491271,Industry,Industry +488177,Industry,Industry +488172,Industry,Industry +482214,Industry,Industry +482185,Industry,Industry +479258,Industry,Industry +477839,Industry,Industry +477815,Industry,Industry +475665,Industry,Industry +475658,Industry,Industry +475652,Industry,Industry +475641,Industry,Industry +475613,Industry,Industry +475591,Industry,Industry +473581,Industry,Industry +473027,Industry,Industry +473014,Industry,Industry +461599,Infrastructure,Infrastructure +458740,Infrastructure,Infrastructure +141875,Infrastructure,Infrastructure +131978,Infrastructure,Infrastructure +96684,Infrastructure,Infrastructure +96683,Infrastructure,Infrastructure +348558,Infrastructure,Infrastructure +348557,Infrastructure,Infrastructure +344903,Infrastructure,Infrastructure +311169,Infrastructure,Infrastructure +310928,Infrastructure,Infrastructure +310918,Infrastructure,Infrastructure +283231,Infrastructure,Infrastructure +277652,Infrastructure,Infrastructure +277651,Infrastructure,Infrastructure +405696,Infrastructure,Infrastructure +403899,Infrastructure,Infrastructure +403806,Infrastructure,Infrastructure +403789,Infrastructure,Infrastructure +400651,Infrastructure,Infrastructure +400638,Infrastructure,Infrastructure +398874,Infrastructure,Infrastructure +398871,Infrastructure,Infrastructure +398862,Infrastructure,Infrastructure +398848,Infrastructure,Infrastructure +396989,Infrastructure,Infrastructure +396977,Infrastructure,Infrastructure +396967,Infrastructure,Infrastructure +392690,Infrastructure,Infrastructure +392688,Infrastructure,Infrastructure +392686,Infrastructure,Infrastructure +457542,Infrastructure,Infrastructure +455515,Infrastructure,Infrastructure +449997,Infrastructure,Infrastructure +449979,Infrastructure,Infrastructure +445503,Infrastructure,Infrastructure +443915,Infrastructure,Infrastructure +443846,Infrastructure,Infrastructure +443827,Infrastructure,Infrastructure +439219,Infrastructure,Infrastructure +439097,Infrastructure,Infrastructure +439044,Infrastructure,Infrastructure +436052,Infrastructure,Infrastructure +436049,Infrastructure,Infrastructure +436048,Infrastructure,Infrastructure +433750,Infrastructure,Infrastructure +433740,Infrastructure,Infrastructure +433635,Infrastructure,Infrastructure +431043,Infrastructure,Infrastructure +428202,Infrastructure,Infrastructure +428198,Infrastructure,Infrastructure +428186,Infrastructure,Infrastructure +428168,Infrastructure,Infrastructure +428166,Infrastructure,Infrastructure +428129,Infrastructure,Infrastructure +424410,Infrastructure,Infrastructure +422230,Infrastructure,Infrastructure +420003,Infrastructure,Infrastructure +417739,Infrastructure,Infrastructure +416234,Infrastructure,Infrastructure +531693,Infrastructure,Infrastructure +498991,Infrastructure,Infrastructure +470752,Infrastructure,Infrastructure +470744,Infrastructure,Infrastructure +461719,Infrastructure,Infrastructure +461705,Infrastructure,Infrastructure +461603,Infrastructure,Infrastructure +461602,Infrastructure,Infrastructure +512825,Internal Trade,Internal Trade +512819,Internal Trade,Internal Trade +355642,Internal Trade,Internal Trade +311169,Internal Trade,Internal Trade +310924,Internal Trade,Internal Trade +322315,International Trade,International Trade +287054,International Trade,International Trade +131978,International Trade,International Trade +131415,International Trade,International Trade +96684,International Trade,International Trade +87938,International Trade,International Trade +87937,International Trade,International Trade +87935,International Trade,International Trade +87934,International Trade,International Trade +161523,International Trade,International Trade +161522,International Trade,International Trade +161521,International Trade,International Trade +151620,International Trade,International Trade +151619,International Trade,International Trade +141874,International Trade,International Trade +131979,International Trade,International Trade +185987,International Trade,International Trade +185986,International Trade,International Trade +185985,International Trade,International Trade +185984,International Trade,International Trade +170804,International Trade,International Trade +169087,International Trade,International Trade +452764,International Trade,International Trade +422236,International Trade,International Trade +417739,International Trade,International Trade +416258,International Trade,International Trade +416247,International Trade,International Trade +413140,International Trade,International Trade +406851,International Trade,International Trade +403806,International Trade,International Trade +398848,International Trade,International Trade +396993,International Trade,International Trade +362327,International Trade,International Trade +355834,International Trade,International Trade +355832,International Trade,International Trade +355645,International Trade,International Trade +495276,Labour,Labour +493070,Labour,Labour +87938,Labour,Labour +87935,Labour,Labour +85438,Labour,Labour +190394,Labour,Labour +190393,Labour,Labour +190392,Labour,Labour +190390,Labour,Labour +190388,Labour,Labour +190109,Labour,Labour +189745,Labour,Labour +165204,Labour,Labour +396993,Labour,Labour +396967,Labour,Labour +348560,Labour,Labour +348558,Labour,Labour +348557,Labour,Labour +330251,Labour,Labour +330250,Labour,Labour +330249,Labour,Labour +330248,Labour,Labour +330247,Labour,Labour +330246,Labour,Labour +330245,Labour,Labour +330244,Labour,Labour +327989,Labour,Labour +327971,Labour,Labour +327970,Labour,Labour +327969,Labour,Labour +326771,Labour,Labour +326770,Labour,Labour +325113,Labour,Labour +325110,Labour,Labour +325109,Labour,Labour +322315,Labour,Labour +322312,Labour,Labour +311169,Labour,Labour +310927,Labour,Labour +310924,Labour,Labour +291313,Labour,Labour +275230,Labour,Labour +273757,Labour,Labour +264652,Labour,Labour +223637,Labour,Labour +223635,Labour,Labour +212567,Labour,Labour +200491,Labour,Labour +195399,Labour,Labour +195392,Labour,Labour +195391,Labour,Labour +195390,Labour,Labour +495289,Labour,Labour +461716,Mining,Mining +442567,Mining,Mining +93174,Mining,Mining +90124,Mining,Mining +87938,Mining,Mining +87937,Mining,Mining +87936,Mining,Mining +87935,Mining,Mining +87934,Mining,Mining +82356,Mining,Mining +132557,Mining,Mining +132556,Mining,Mining +131979,Mining,Mining +131978,Mining,Mining +131977,Mining,Mining +131976,Mining,Mining +131817,Mining,Mining +264852,Mining,Mining +200508,Mining,Mining +200503,Mining,Mining +178924,Mining,Mining +178904,Mining,Mining +178884,Mining,Mining +178864,Mining,Mining +178844,Mining,Mining +178824,Mining,Mining +178804,Mining,Mining +178784,Mining,Mining +178764,Mining,Mining +178744,Mining,Mining +178724,Mining,Mining +178704,Mining,Mining +175546,Mining,Mining +175545,Mining,Mining +175544,Mining,Mining +161526,Mining,Mining +161523,Mining,Mining +161522,Mining,Mining +161521,Mining,Mining +161520,Mining,Mining +161519,Mining,Mining +161518,Mining,Mining +406930,Mining,Mining +365336,Mining,Mining +340765,Mining,Mining +340764,Mining,Mining +340763,Mining,Mining +340762,Mining,Mining +340761,Mining,Mining +310927,Mining,Mining +467789,Mining,Mining +428174,Taxation and Finance,Taxation and Finance +420003,Taxation and Finance,Taxation and Finance +78494,Taxation and Finance,Taxation and Finance +95037,Taxation and Finance,Taxation and Finance +93174,Taxation and Finance,Taxation and Finance +87938,Taxation and Finance,Taxation and Finance +87937,Taxation and Finance,Taxation and Finance +87936,Taxation and Finance,Taxation and Finance +87935,Taxation and Finance,Taxation and Finance +87934,Taxation and Finance,Taxation and Finance +151620,Taxation and Finance,Taxation and Finance +151619,Taxation and Finance,Taxation and Finance +131978,Taxation and Finance,Taxation and Finance +161519,Taxation and Finance,Taxation and Finance +398848,Taxation and Finance,Taxation and Finance +396993,Taxation and Finance,Taxation and Finance +393940,Taxation and Finance,Taxation and Finance +393939,Taxation and Finance,Taxation and Finance +385640,Taxation and Finance,Taxation and Finance +385635,Taxation and Finance,Taxation and Finance +385628,Taxation and Finance,Taxation and Finance +369585,Taxation and Finance,Taxation and Finance +368716,Taxation and Finance,Taxation and Finance +353247,Taxation and Finance,Taxation and Finance +344910,Taxation and Finance,Taxation and Finance +336105,Taxation and Finance,Taxation and Finance +330251,Taxation and Finance,Taxation and Finance +316077,Taxation and Finance,Taxation and Finance +310918,Taxation and Finance,Taxation and Finance +273770,Taxation and Finance,Taxation and Finance +536881,Taxation and Finance,Taxation and Finance +535297,Taxation and Finance,Taxation and Finance +515727,Taxation and Finance,Taxation and Finance +508673,Taxation and Finance,Taxation and Finance +508645,Taxation and Finance,Taxation and Finance +473382,Taxation and Finance,Taxation and Finance +473379,Taxation and Finance,Taxation and Finance +473359,Taxation and Finance,Taxation and Finance +473357,Taxation and Finance,Taxation and Finance +473001,Taxation and Finance,Taxation and Finance +457535,Taxation and Finance,Taxation and Finance +442564,Taxation and Finance,Taxation and Finance +439088,Taxation and Finance,Taxation and Finance +436049,Taxation and Finance,Taxation and Finance +416144,Transportation,Transportation +413271,Transportation,Transportation +141875,Transportation,Transportation +131817,Transportation,Transportation +168003,Transportation,Transportation +167973,Transportation,Transportation +154687,Transportation,Transportation +154686,Transportation,Transportation +145261,Transportation,Transportation +400638,Transportation,Transportation +391506,Transportation,Transportation +385590,Transportation,Transportation +379950,Transportation,Transportation +353253,Transportation,Transportation +348560,Transportation,Transportation +348553,Transportation,Transportation +347022,Transportation,Transportation +344903,Transportation,Transportation +338869,Transportation,Transportation +336108,Transportation,Transportation +322316,Transportation,Transportation +310928,Transportation,Transportation +310924,Transportation,Transportation +291316,Transportation,Transportation +265369,Transportation,Transportation +212565,Transportation,Transportation +515728,Transportation,Transportation +482214,Transportation,Transportation +470767,Transportation,Transportation +467853,Transportation,Transportation +467789,Transportation,Transportation +467770,Transportation,Transportation +426507,Transportation,Transportation +325224,Education,Education +540795,Education,Education +102956,Education,Education +157729,Education,Education +131694,Education,Education +293009,Education,Education +190367,Education,Education +394709,Education,Education +384058,Education,Education +518068,Employment and Training,Employment and Training +518040,Employment and Training,Employment and Training +190367,Employment and Training,Employment and Training +293009,Employment and Training,Employment and Training +288729,Employment and Training,Employment and Training +271489,Employment and Training,Employment and Training +224547,Employment and Training,Employment and Training +374049,Employment and Training,Employment and Training +370083,Employment and Training,Employment and Training +367605,Employment and Training,Employment and Training +357138,Employment and Training,Employment and Training +357137,Employment and Training,Employment and Training +357136,Employment and Training,Employment and Training +356883,Employment and Training,Employment and Training +350127,Employment and Training,Employment and Training +349003,Employment and Training,Employment and Training +344541,Employment and Training,Employment and Training +328572,Employment and Training,Employment and Training +325224,Employment and Training,Employment and Training +500337,Employment and Training,Employment and Training +489261,Employment and Training,Employment and Training +489044,Employment and Training,Employment and Training +489043,Employment and Training,Employment and Training +446170,Employment and Training,Employment and Training +444216,Employment and Training,Employment and Training +443104,Employment and Training,Employment and Training +441087,Employment and Training,Employment and Training +440921,Employment and Training,Employment and Training +440920,Employment and Training,Employment and Training +440551,Employment and Training,Employment and Training +424768,Employment and Training,Employment and Training +424681,Employment and Training,Employment and Training +424680,Employment and Training,Employment and Training +424679,Employment and Training,Employment and Training +397902,Employment and Training,Employment and Training +394708,Employment and Training,Employment and Training +393973,Employment and Training,Employment and Training +384058,Employment and Training,Employment and Training +540795,Employment and Training,Employment and Training +521680,Employment and Training,Employment and Training +404167,Environment,Environment +463851,Environment,Environment +190046,Environment,Environment +380332,Environment,Environment +375469,Environment,Environment +375468,Environment,Environment +374206,Environment,Environment +350127,Environment,Environment +429019,Government Procurement,Government Procurement +427527,Government Procurement,Government Procurement +102956,Government Procurement,Government Procurement +102955,Government Procurement,Government Procurement +102954,Government Procurement,Government Procurement +94896,Government Procurement,Government Procurement +94895,Government Procurement,Government Procurement +94894,Government Procurement,Government Procurement +293009,Government Procurement,Government Procurement +399640,Government Procurement,Government Procurement +399639,Government Procurement,Government Procurement +395306,Government Procurement,Government Procurement +394709,Government Procurement,Government Procurement +394075,Government Procurement,Government Procurement +393852,Government Procurement,Government Procurement +389357,Government Procurement,Government Procurement +384058,Government Procurement,Government Procurement +382668,Government Procurement,Government Procurement +382667,Government Procurement,Government Procurement +375303,Government Procurement,Government Procurement +374049,Government Procurement,Government Procurement +367605,Government Procurement,Government Procurement +356883,Government Procurement,Government Procurement +350221,Government Procurement,Government Procurement +350127,Government Procurement,Government Procurement +347624,Government Procurement,Government Procurement +521680,Government Procurement,Government Procurement +518070,Government Procurement,Government Procurement +518068,Government Procurement,Government Procurement +518040,Government Procurement,Government Procurement +500337,Government Procurement,Government Procurement +463852,Government Procurement,Government Procurement +440555,Government Procurement,Government Procurement +394708,Immigration,Immigration +393973,Immigration,Immigration +102954,Immigration,Immigration +146415,Immigration,Immigration +252633,Immigration,Immigration +252632,Immigration,Immigration +252629,Immigration,Immigration +190367,Immigration,Immigration +350127,Immigration,Immigration +344541,Immigration,Immigration +420956,Industry,Industry +419218,Industry,Industry +252633,Industry,Industry +182044,Industry,Industry +325224,Industry,Industry +325223,Industry,Industry +350221,Industry,Industry +350127,Industry,Industry +342439,Industry,Industry +393500,Infrastructure,Infrastructure +393498,Infrastructure,Infrastructure +102956,Infrastructure,Infrastructure +102955,Infrastructure,Infrastructure +102954,Infrastructure,Infrastructure +101954,Infrastructure,Infrastructure +94896,Infrastructure,Infrastructure +94895,Infrastructure,Infrastructure +89757,Infrastructure,Infrastructure +169007,Infrastructure,Infrastructure +157729,Infrastructure,Infrastructure +157728,Infrastructure,Infrastructure +156042,Infrastructure,Infrastructure +155866,Infrastructure,Infrastructure +146415,Infrastructure,Infrastructure +141534,Infrastructure,Infrastructure +325224,Infrastructure,Infrastructure +314137,Infrastructure,Infrastructure +300629,Infrastructure,Infrastructure +271253,Infrastructure,Infrastructure +257209,Infrastructure,Infrastructure +252633,Infrastructure,Infrastructure +252632,Infrastructure,Infrastructure +182044,Infrastructure,Infrastructure +382667,Infrastructure,Infrastructure +375467,Infrastructure,Infrastructure +374049,Infrastructure,Infrastructure +374048,Infrastructure,Infrastructure +373615,Infrastructure,Infrastructure +370083,Infrastructure,Infrastructure +367605,Infrastructure,Infrastructure +366750,Infrastructure,Infrastructure +365406,Infrastructure,Infrastructure +357138,Infrastructure,Infrastructure +357137,Infrastructure,Infrastructure +357136,Infrastructure,Infrastructure +356883,Infrastructure,Infrastructure +350127,Infrastructure,Infrastructure +344547,Infrastructure,Infrastructure +521680,Infrastructure,Infrastructure +518070,Infrastructure,Infrastructure +518068,Infrastructure,Infrastructure +518040,Infrastructure,Infrastructure +494351,Infrastructure,Infrastructure +489261,Infrastructure,Infrastructure +489226,Infrastructure,Infrastructure +489044,Infrastructure,Infrastructure +489043,Infrastructure,Infrastructure +463852,Infrastructure,Infrastructure +446170,Infrastructure,Infrastructure +444216,Infrastructure,Infrastructure +443104,Infrastructure,Infrastructure +441087,Infrastructure,Infrastructure +440921,Infrastructure,Infrastructure +440920,Infrastructure,Infrastructure +440555,Infrastructure,Infrastructure +429019,Infrastructure,Infrastructure +427529,Infrastructure,Infrastructure +427527,Infrastructure,Infrastructure +424768,Infrastructure,Infrastructure +424767,Infrastructure,Infrastructure +424766,Infrastructure,Infrastructure +424681,Infrastructure,Infrastructure +424680,Infrastructure,Infrastructure +424679,Infrastructure,Infrastructure +398043,Infrastructure,Infrastructure +397904,Infrastructure,Infrastructure +397902,Infrastructure,Infrastructure +397464,Infrastructure,Infrastructure +395306,Infrastructure,Infrastructure +394710,Infrastructure,Infrastructure +394709,Infrastructure,Infrastructure +394075,Infrastructure,Infrastructure +393973,Infrastructure,Infrastructure +350127,Internal Trade,Internal Trade +494351,Internal Trade,Internal Trade +342439,International Trade,International Trade +271253,International Trade,International Trade +397464,International Trade,International Trade +375303,International Trade,International Trade +357138,International Trade,International Trade +357136,International Trade,International Trade +540795,Labour,Labour +489261,Labour,Labour +102955,Labour,Labour +102954,Labour,Labour +157729,Labour,Labour +157728,Labour,Labour +146415,Labour,Labour +190367,Labour,Labour +182044,Labour,Labour +375303,Labour,Labour +370083,Labour,Labour +367605,Labour,Labour +356883,Labour,Labour +350127,Labour,Labour +349003,Labour,Labour +344547,Labour,Labour +325224,Labour,Labour +293009,Labour,Labour +271489,Labour,Labour +271253,Labour,Labour +252632,Labour,Labour +444216,Labour,Labour +443104,Labour,Labour +399639,Labour,Labour +397902,Labour,Labour +394710,Labour,Labour +394709,Labour,Labour +440551,Small Business,Small Business +394709,Small Business,Small Business +356883,Small Business,Small Business +350127,Small Business,Small Business +314138,Small Business,Small Business +190367,Small Business,Small Business +440554,Taxation and Finance,Taxation and Finance +436462,Taxation and Finance,Taxation and Finance +146415,Taxation and Finance,Taxation and Finance +102956,Taxation and Finance,Taxation and Finance +102955,Taxation and Finance,Taxation and Finance +102954,Taxation and Finance,Taxation and Finance +367605,Taxation and Finance,Taxation and Finance +357138,Taxation and Finance,Taxation and Finance +357137,Taxation and Finance,Taxation and Finance +357136,Taxation and Finance,Taxation and Finance +350127,Taxation and Finance,Taxation and Finance +349003,Taxation and Finance,Taxation and Finance +344547,Taxation and Finance,Taxation and Finance +314138,Taxation and Finance,Taxation and Finance +308089,Taxation and Finance,Taxation and Finance +288731,Taxation and Finance,Taxation and Finance +252632,Taxation and Finance,Taxation and Finance +190367,Taxation and Finance,Taxation and Finance +481572,Energy,Energy +481570,Energy,Energy +264493,Energy,Energy +264490,Energy,Energy +256632,Energy,Energy +256631,Energy,Energy +256630,Energy,Energy +256629,Energy,Energy +256611,Energy,Energy +256610,Energy,Energy +256609,Energy,Energy +256590,Energy,Energy +256589,Energy,Energy +256571,Energy,Energy +449039,Energy,Energy +448966,Energy,Energy +448933,Energy,Energy +388171,Energy,Energy +362104,Energy,Energy +362103,Energy,Energy +518006,Energy,Energy +517995,Energy,Energy +487718,Energy,Energy +481596,Energy,Energy +481593,Energy,Energy +481589,Energy,Energy +481586,Energy,Energy +481584,Energy,Energy +481580,Energy,Energy +481578,Energy,Energy +481575,Energy,Energy +481574,Energy,Energy +481589,Taxation and Finance,Taxation and Finance +481586,Taxation and Finance,Taxation and Finance +336373,Taxation and Finance,Taxation and Finance +336372,Taxation and Finance,Taxation and Finance +335917,Taxation and Finance,Taxation and Finance +319414,Taxation and Finance,Taxation and Finance +319411,Taxation and Finance,Taxation and Finance +269531,Taxation and Finance,Taxation and Finance +256649,Taxation and Finance,Taxation and Finance +256633,Taxation and Finance,Taxation and Finance +394381,Taxation and Finance,Taxation and Finance +394351,Taxation and Finance,Taxation and Finance +394346,Taxation and Finance,Taxation and Finance +388178,Taxation and Finance,Taxation and Finance +388166,Taxation and Finance,Taxation and Finance +373541,Taxation and Finance,Taxation and Finance +362104,Taxation and Finance,Taxation and Finance +362103,Taxation and Finance,Taxation and Finance +361264,Taxation and Finance,Taxation and Finance +481584,Taxation and Finance,Taxation and Finance +481580,Taxation and Finance,Taxation and Finance +481578,Taxation and Finance,Taxation and Finance +481575,Taxation and Finance,Taxation and Finance +481574,Taxation and Finance,Taxation and Finance +481573,Taxation and Finance,Taxation and Finance +481572,Taxation and Finance,Taxation and Finance +481570,Taxation and Finance,Taxation and Finance +465996,Taxation and Finance,Taxation and Finance +465995,Taxation and Finance,Taxation and Finance +465993,Taxation and Finance,Taxation and Finance +465992,Taxation and Finance,Taxation and Finance +465991,Taxation and Finance,Taxation and Finance +465989,Taxation and Finance,Taxation and Finance +465163,Taxation and Finance,Taxation and Finance +465162,Taxation and Finance,Taxation and Finance +460813,Taxation and Finance,Taxation and Finance +460812,Taxation and Finance,Taxation and Finance +460811,Taxation and Finance,Taxation and Finance +460810,Taxation and Finance,Taxation and Finance +458365,Taxation and Finance,Taxation and Finance +457703,Taxation and Finance,Taxation and Finance +449039,Taxation and Finance,Taxation and Finance +448489,Taxation and Finance,Taxation and Finance +448488,Taxation and Finance,Taxation and Finance +448486,Taxation and Finance,Taxation and Finance +448483,Taxation and Finance,Taxation and Finance +448478,Taxation and Finance,Taxation and Finance +448477,Taxation and Finance,Taxation and Finance +448475,Taxation and Finance,Taxation and Finance +397279,Taxation and Finance,Taxation and Finance +397278,Taxation and Finance,Taxation and Finance +487719,Taxation and Finance,Taxation and Finance +487718,Taxation and Finance,Taxation and Finance +483865,Taxation and Finance,Taxation and Finance +483864,Taxation and Finance,Taxation and Finance +483862,Taxation and Finance,Taxation and Finance +481596,Taxation and Finance,Taxation and Finance +465644,Health,Health +465643,Health,Health +166507,Health,Health +166506,Health,Health +166505,Health,Health +166504,Health,Health +144774,Health,Health +124498,Health,Health +110595,Health,Health +92174,Health,Health +238529,Health,Health +166647,Health,Health +166525,Health,Health +166513,Health,Health +166512,Health,Health +166511,Health,Health +166509,Health,Health +166508,Health,Health +389255,Health,Health +389238,Health,Health +388769,Health,Health +388716,Health,Health +381919,Health,Health +376853,Health,Health +345480,Health,Health +345479,Health,Health +345478,Health,Health +345477,Health,Health +335009,Health,Health +334610,Health,Health +328809,Health,Health +298356,Health,Health +298355,Health,Health +298354,Health,Health +298353,Health,Health +298352,Health,Health +298351,Health,Health +287990,Health,Health +287989,Health,Health +275690,Health,Health +275689,Health,Health +238531,Health,Health +238530,Health,Health +457516,Health,Health +456293,Health,Health +455677,Health,Health +455666,Health,Health +449365,Health,Health +448649,Health,Health +446427,Health,Health +424962,Health,Health +422716,Health,Health +540934,Health,Health +540933,Health,Health +540932,Health,Health +540931,Health,Health +536667,Health,Health +533168,Health,Health +533167,Health,Health +533166,Health,Health +533165,Health,Health +530711,Health,Health +530710,Health,Health +530709,Health,Health +528149,Health,Health +526690,Health,Health +522790,Health,Health +505219,Health,Health +503230,Health,Health +503228,Health,Health +502984,Health,Health +502983,Health,Health +502982,Health,Health +502980,Health,Health +502979,Health,Health +494653,Health,Health +494110,Health,Health +494109,Health,Health +494108,Health,Health +493618,Health,Health +492277,Health,Health +489722,Health,Health +488411,Health,Health +487221,Health,Health +483329,Health,Health +474474,Health,Health +145856,Energy,Energy +117569,Energy,Energy +108997,International Trade,International Trade +93466,International Trade,International Trade +161566,Employment and Training,Employment and Training +335029,Employment and Training,Employment and Training +229612,Employment and Training,Employment and Training +192438,Employment and Training,Employment and Training +192436,Employment and Training,Employment and Training +185945,Employment and Training,Employment and Training +185944,Employment and Training,Employment and Training +185941,Employment and Training,Employment and Training +159818,Industry,Industry +155006,Industry,Industry +211566,Internal Trade,Internal Trade +200504,Internal Trade,Internal Trade +109173,Internal Trade,Internal Trade +185945,Internal Trade,Internal Trade +185944,Internal Trade,Internal Trade +185941,Internal Trade,Internal Trade +168117,Internal Trade,Internal Trade +151932,Internal Trade,Internal Trade +151930,Internal Trade,Internal Trade +148479,Internal Trade,Internal Trade +148478,Internal Trade,Internal Trade +331251,Internal Trade,Internal Trade +329763,Internal Trade,Internal Trade +329761,Internal Trade,Internal Trade +324752,Internal Trade,Internal Trade +324735,Internal Trade,Internal Trade +321885,Internal Trade,Internal Trade +300171,Internal Trade,Internal Trade +300050,Internal Trade,Internal Trade +280812,Internal Trade,Internal Trade +245456,Internal Trade,Internal Trade +245454,Internal Trade,Internal Trade +245446,Internal Trade,Internal Trade +229609,Internal Trade,Internal Trade +159844,International Trade,International Trade +159818,International Trade,International Trade +188535,Small Business,Small Business +175089,Small Business,Small Business +150250,Small Business,Small Business +150249,Small Business,Small Business +150248,Small Business,Small Business +150237,Small Business,Small Business +148482,Small Business,Small Business +148481,Small Business,Small Business +148480,Small Business,Small Business +146031,Small Business,Small Business +163765,Small Business,Small Business +163764,Small Business,Small Business +163763,Small Business,Small Business +163760,Small Business,Small Business +161561,Small Business,Small Business +161557,Small Business,Small Business +159945,Small Business,Small Business +159942,Small Business,Small Business +159940,Small Business,Small Business +159938,Small Business,Small Business +159935,Small Business,Small Business +159933,Small Business,Small Business +159932,Small Business,Small Business +159927,Small Business,Small Business +159925,Small Business,Small Business +159922,Small Business,Small Business +159919,Small Business,Small Business +159917,Small Business,Small Business +159914,Small Business,Small Business +159913,Small Business,Small Business +159912,Small Business,Small Business +159910,Small Business,Small Business +159908,Small Business,Small Business +159903,Small Business,Small Business +159897,Small Business,Small Business +159891,Small Business,Small Business +159881,Small Business,Small Business +159877,Small Business,Small Business +159863,Small Business,Small Business +155006,Small Business,Small Business +150251,Small Business,Small Business +333571,Small Business,Small Business +321887,Small Business,Small Business +318929,Small Business,Small Business +318921,Small Business,Small Business +318919,Small Business,Small Business +312836,Small Business,Small Business +300190,Small Business,Small Business +300050,Small Business,Small Business +273374,Small Business,Small Business +263786,Small Business,Small Business +202914,Small Business,Small Business +310041,Taxation and Finance,Taxation and Finance +300052,Taxation and Finance,Taxation and Finance +153378,Taxation and Finance,Taxation and Finance +153377,Taxation and Finance,Taxation and Finance +148482,Taxation and Finance,Taxation and Finance +148481,Taxation and Finance,Taxation and Finance +148480,Taxation and Finance,Taxation and Finance +146031,Taxation and Finance,Taxation and Finance +106758,Taxation and Finance,Taxation and Finance +188539,Taxation and Finance,Taxation and Finance +188538,Taxation and Finance,Taxation and Finance +188537,Taxation and Finance,Taxation and Finance +188536,Taxation and Finance,Taxation and Finance +185948,Taxation and Finance,Taxation and Finance +175091,Taxation and Finance,Taxation and Finance +175088,Taxation and Finance,Taxation and Finance +173170,Taxation and Finance,Taxation and Finance +173168,Taxation and Finance,Taxation and Finance +173166,Taxation and Finance,Taxation and Finance +170821,Taxation and Finance,Taxation and Finance +170431,Taxation and Finance,Taxation and Finance +168114,Taxation and Finance,Taxation and Finance +165584,Taxation and Finance,Taxation and Finance +165583,Taxation and Finance,Taxation and Finance +163766,Taxation and Finance,Taxation and Finance +163765,Taxation and Finance,Taxation and Finance +163764,Taxation and Finance,Taxation and Finance +163763,Taxation and Finance,Taxation and Finance +163760,Taxation and Finance,Taxation and Finance +161561,Taxation and Finance,Taxation and Finance +161557,Taxation and Finance,Taxation and Finance +159951,Taxation and Finance,Taxation and Finance +159945,Taxation and Finance,Taxation and Finance +159942,Taxation and Finance,Taxation and Finance +159940,Taxation and Finance,Taxation and Finance +159938,Taxation and Finance,Taxation and Finance +159935,Taxation and Finance,Taxation and Finance +159933,Taxation and Finance,Taxation and Finance +159932,Taxation and Finance,Taxation and Finance +159927,Taxation and Finance,Taxation and Finance +159925,Taxation and Finance,Taxation and Finance +159922,Taxation and Finance,Taxation and Finance +159919,Taxation and Finance,Taxation and Finance +159917,Taxation and Finance,Taxation and Finance +159914,Taxation and Finance,Taxation and Finance +159913,Taxation and Finance,Taxation and Finance +159912,Taxation and Finance,Taxation and Finance +159910,Taxation and Finance,Taxation and Finance +159908,Taxation and Finance,Taxation and Finance +159903,Taxation and Finance,Taxation and Finance +159897,Taxation and Finance,Taxation and Finance +159891,Taxation and Finance,Taxation and Finance +159881,Taxation and Finance,Taxation and Finance +159877,Taxation and Finance,Taxation and Finance +159863,Taxation and Finance,Taxation and Finance +157201,Taxation and Finance,Taxation and Finance +157196,Taxation and Finance,Taxation and Finance +155008,Taxation and Finance,Taxation and Finance +155007,Taxation and Finance,Taxation and Finance +300051,Taxation and Finance,Taxation and Finance +300049,Taxation and Finance,Taxation and Finance +295331,Taxation and Finance,Taxation and Finance +295330,Taxation and Finance,Taxation and Finance +289189,Taxation and Finance,Taxation and Finance +280811,Taxation and Finance,Taxation and Finance +280810,Taxation and Finance,Taxation and Finance +276289,Taxation and Finance,Taxation and Finance +276031,Taxation and Finance,Taxation and Finance +276030,Taxation and Finance,Taxation and Finance +276029,Taxation and Finance,Taxation and Finance +273376,Taxation and Finance,Taxation and Finance +273374,Taxation and Finance,Taxation and Finance +273373,Taxation and Finance,Taxation and Finance +268411,Taxation and Finance,Taxation and Finance +268410,Taxation and Finance,Taxation and Finance +268409,Taxation and Finance,Taxation and Finance +264449,Taxation and Finance,Taxation and Finance +264443,Taxation and Finance,Taxation and Finance +264402,Taxation and Finance,Taxation and Finance +263786,Taxation and Finance,Taxation and Finance +263784,Taxation and Finance,Taxation and Finance +263778,Taxation and Finance,Taxation and Finance +251490,Taxation and Finance,Taxation and Finance +250310,Taxation and Finance,Taxation and Finance +250302,Taxation and Finance,Taxation and Finance +245459,Taxation and Finance,Taxation and Finance +245456,Taxation and Finance,Taxation and Finance +245454,Taxation and Finance,Taxation and Finance +245451,Taxation and Finance,Taxation and Finance +245446,Taxation and Finance,Taxation and Finance +245439,Taxation and Finance,Taxation and Finance +245424,Taxation and Finance,Taxation and Finance +240851,Taxation and Finance,Taxation and Finance +240850,Taxation and Finance,Taxation and Finance +236509,Taxation and Finance,Taxation and Finance +233861,Taxation and Finance,Taxation and Finance +233859,Taxation and Finance,Taxation and Finance +233856,Taxation and Finance,Taxation and Finance +233733,Taxation and Finance,Taxation and Finance +229731,Taxation and Finance,Taxation and Finance +229730,Taxation and Finance,Taxation and Finance +229612,Taxation and Finance,Taxation and Finance +229611,Taxation and Finance,Taxation and Finance +229610,Taxation and Finance,Taxation and Finance +229609,Taxation and Finance,Taxation and Finance +226996,Taxation and Finance,Taxation and Finance +226992,Taxation and Finance,Taxation and Finance +226980,Taxation and Finance,Taxation and Finance +226962,Taxation and Finance,Taxation and Finance +222584,Taxation and Finance,Taxation and Finance +222582,Taxation and Finance,Taxation and Finance +222580,Taxation and Finance,Taxation and Finance +217773,Taxation and Finance,Taxation and Finance +211587,Taxation and Finance,Taxation and Finance +211567,Taxation and Finance,Taxation and Finance +211562,Taxation and Finance,Taxation and Finance +211560,Taxation and Finance,Taxation and Finance +206593,Taxation and Finance,Taxation and Finance +206591,Taxation and Finance,Taxation and Finance +202914,Taxation and Finance,Taxation and Finance +200509,Taxation and Finance,Taxation and Finance +335031,Taxation and Finance,Taxation and Finance +333572,Taxation and Finance,Taxation and Finance +331252,Taxation and Finance,Taxation and Finance +330145,Taxation and Finance,Taxation and Finance +330144,Taxation and Finance,Taxation and Finance +324743,Taxation and Finance,Taxation and Finance +324742,Taxation and Finance,Taxation and Finance +324738,Taxation and Finance,Taxation and Finance +321880,Taxation and Finance,Taxation and Finance +318953,Taxation and Finance,Taxation and Finance +318921,Taxation and Finance,Taxation and Finance +318918,Taxation and Finance,Taxation and Finance +315590,Taxation and Finance,Taxation and Finance +310066,Taxation and Finance,Taxation and Finance +310053,Taxation and Finance,Taxation and Finance +310046,Taxation and Finance,Taxation and Finance +151930,Other,Competition +101297,Other,Securities Regulation +97542,Other,Securities Regulation +87818,Other,Securities Regulation +106760,Other,Securities Regulation +106759,Other,Securities Regulation +543067,Agriculture,Agriculture +543063,Agriculture,Agriculture +88894,Agriculture,Agriculture +138684,Agriculture,Agriculture +138683,Agriculture,Agriculture +135823,Agriculture,Agriculture +133596,Agriculture,Agriculture +133594,Agriculture,Agriculture +132688,Agriculture,Agriculture +127615,Agriculture,Agriculture +124354,Agriculture,Agriculture +124342,Agriculture,Agriculture +124340,Agriculture,Agriculture +124318,Agriculture,Agriculture +124314,Agriculture,Agriculture +124277,Agriculture,Agriculture +124274,Agriculture,Agriculture +124235,Agriculture,Agriculture +119577,Agriculture,Agriculture +119576,Agriculture,Agriculture +118774,Agriculture,Agriculture +112338,Agriculture,Agriculture +109632,Agriculture,Agriculture +109625,Agriculture,Agriculture +106201,Agriculture,Agriculture +106196,Agriculture,Agriculture +106114,Agriculture,Agriculture +106076,Agriculture,Agriculture +173268,Agriculture,Agriculture +171485,Agriculture,Agriculture +170981,Agriculture,Agriculture +170977,Agriculture,Agriculture +170974,Agriculture,Agriculture +170966,Agriculture,Agriculture +170961,Agriculture,Agriculture +170954,Agriculture,Agriculture +169148,Agriculture,Agriculture +169147,Agriculture,Agriculture +165056,Agriculture,Agriculture +165055,Agriculture,Agriculture +165054,Agriculture,Agriculture +165053,Agriculture,Agriculture +162470,Agriculture,Agriculture +162278,Agriculture,Agriculture +162277,Agriculture,Agriculture +162276,Agriculture,Agriculture +162275,Agriculture,Agriculture +162274,Agriculture,Agriculture +162273,Agriculture,Agriculture +162258,Agriculture,Agriculture +162257,Agriculture,Agriculture +162256,Agriculture,Agriculture +162255,Agriculture,Agriculture +162253,Agriculture,Agriculture +162252,Agriculture,Agriculture +162251,Agriculture,Agriculture +162250,Agriculture,Agriculture +162249,Agriculture,Agriculture +162246,Agriculture,Agriculture +162242,Agriculture,Agriculture +162237,Agriculture,Agriculture +162231,Agriculture,Agriculture +157095,Agriculture,Agriculture +157093,Agriculture,Agriculture +157092,Agriculture,Agriculture +157053,Agriculture,Agriculture +157052,Agriculture,Agriculture +157050,Agriculture,Agriculture +157047,Agriculture,Agriculture +157044,Agriculture,Agriculture +154813,Agriculture,Agriculture +154810,Agriculture,Agriculture +153575,Agriculture,Agriculture +152159,Agriculture,Agriculture +150407,Agriculture,Agriculture +150405,Agriculture,Agriculture +150399,Agriculture,Agriculture +150397,Agriculture,Agriculture +150396,Agriculture,Agriculture +148133,Agriculture,Agriculture +148129,Agriculture,Agriculture +148127,Agriculture,Agriculture +148125,Agriculture,Agriculture +146067,Agriculture,Agriculture +146065,Agriculture,Agriculture +146058,Agriculture,Agriculture +142255,Agriculture,Agriculture +138689,Agriculture,Agriculture +138685,Agriculture,Agriculture +244707,Agriculture,Agriculture +244705,Agriculture,Agriculture +244702,Agriculture,Agriculture +244700,Agriculture,Agriculture +244698,Agriculture,Agriculture +244697,Agriculture,Agriculture +244695,Agriculture,Agriculture +244692,Agriculture,Agriculture +244690,Agriculture,Agriculture +244689,Agriculture,Agriculture +244687,Agriculture,Agriculture +244685,Agriculture,Agriculture +244684,Agriculture,Agriculture +244681,Agriculture,Agriculture +244679,Agriculture,Agriculture +244678,Agriculture,Agriculture +244656,Agriculture,Agriculture +244655,Agriculture,Agriculture +244652,Agriculture,Agriculture +244647,Agriculture,Agriculture +240358,Agriculture,Agriculture +240357,Agriculture,Agriculture +240356,Agriculture,Agriculture +240354,Agriculture,Agriculture +240353,Agriculture,Agriculture +240350,Agriculture,Agriculture +240349,Agriculture,Agriculture +240336,Agriculture,Agriculture +240334,Agriculture,Agriculture +240333,Agriculture,Agriculture +240332,Agriculture,Agriculture +240331,Agriculture,Agriculture +240330,Agriculture,Agriculture +240325,Agriculture,Agriculture +240321,Agriculture,Agriculture +228979,Agriculture,Agriculture +225873,Agriculture,Agriculture +225872,Agriculture,Agriculture +225871,Agriculture,Agriculture +225870,Agriculture,Agriculture +225868,Agriculture,Agriculture +223519,Agriculture,Agriculture +223516,Agriculture,Agriculture +223513,Agriculture,Agriculture +223512,Agriculture,Agriculture +223511,Agriculture,Agriculture +223508,Agriculture,Agriculture +223504,Agriculture,Agriculture +223502,Agriculture,Agriculture +223499,Agriculture,Agriculture +223496,Agriculture,Agriculture +223494,Agriculture,Agriculture +223488,Agriculture,Agriculture +223484,Agriculture,Agriculture +223478,Agriculture,Agriculture +223477,Agriculture,Agriculture +223476,Agriculture,Agriculture +223462,Agriculture,Agriculture +223458,Agriculture,Agriculture +223455,Agriculture,Agriculture +223454,Agriculture,Agriculture +223445,Agriculture,Agriculture +223443,Agriculture,Agriculture +223441,Agriculture,Agriculture +223440,Agriculture,Agriculture +223438,Agriculture,Agriculture +223437,Agriculture,Agriculture +223434,Agriculture,Agriculture +223431,Agriculture,Agriculture +223428,Agriculture,Agriculture +223426,Agriculture,Agriculture +223423,Agriculture,Agriculture +223422,Agriculture,Agriculture +223418,Agriculture,Agriculture +223415,Agriculture,Agriculture +223413,Agriculture,Agriculture +223412,Agriculture,Agriculture +223410,Agriculture,Agriculture +223379,Agriculture,Agriculture +223363,Agriculture,Agriculture +222674,Agriculture,Agriculture +222672,Agriculture,Agriculture +218111,Agriculture,Agriculture +218109,Agriculture,Agriculture +218090,Agriculture,Agriculture +218067,Agriculture,Agriculture +218048,Agriculture,Agriculture +218038,Agriculture,Agriculture +218034,Agriculture,Agriculture +218033,Agriculture,Agriculture +218032,Agriculture,Agriculture +212498,Agriculture,Agriculture +199653,Agriculture,Agriculture +199650,Agriculture,Agriculture +199649,Agriculture,Agriculture +199648,Agriculture,Agriculture +199647,Agriculture,Agriculture +199644,Agriculture,Agriculture +199642,Agriculture,Agriculture +199640,Agriculture,Agriculture +199638,Agriculture,Agriculture +199637,Agriculture,Agriculture +199635,Agriculture,Agriculture +199633,Agriculture,Agriculture +199631,Agriculture,Agriculture +199628,Agriculture,Agriculture +189488,Agriculture,Agriculture +189484,Agriculture,Agriculture +189305,Agriculture,Agriculture +189248,Agriculture,Agriculture +189164,Agriculture,Agriculture +189161,Agriculture,Agriculture +189158,Agriculture,Agriculture +189155,Agriculture,Agriculture +189154,Agriculture,Agriculture +189152,Agriculture,Agriculture +189150,Agriculture,Agriculture +189147,Agriculture,Agriculture +189144,Agriculture,Agriculture +189142,Agriculture,Agriculture +189140,Agriculture,Agriculture +189138,Agriculture,Agriculture +189136,Agriculture,Agriculture +189134,Agriculture,Agriculture +189132,Agriculture,Agriculture +189125,Agriculture,Agriculture +189122,Agriculture,Agriculture +185862,Agriculture,Agriculture +175765,Agriculture,Agriculture +374440,Agriculture,Agriculture +374435,Agriculture,Agriculture +374422,Agriculture,Agriculture +374420,Agriculture,Agriculture +374419,Agriculture,Agriculture +374417,Agriculture,Agriculture +373216,Agriculture,Agriculture +373214,Agriculture,Agriculture +371491,Agriculture,Agriculture +371480,Agriculture,Agriculture +371476,Agriculture,Agriculture +371473,Agriculture,Agriculture +371468,Agriculture,Agriculture +370383,Agriculture,Agriculture +370032,Agriculture,Agriculture +370016,Agriculture,Agriculture +370015,Agriculture,Agriculture +370014,Agriculture,Agriculture +370013,Agriculture,Agriculture +370012,Agriculture,Agriculture +370006,Agriculture,Agriculture +370005,Agriculture,Agriculture +370004,Agriculture,Agriculture +370003,Agriculture,Agriculture +370002,Agriculture,Agriculture +370001,Agriculture,Agriculture +370000,Agriculture,Agriculture +369638,Agriculture,Agriculture +368864,Agriculture,Agriculture +368138,Agriculture,Agriculture +368136,Agriculture,Agriculture +368135,Agriculture,Agriculture +368134,Agriculture,Agriculture +368133,Agriculture,Agriculture +368131,Agriculture,Agriculture +368130,Agriculture,Agriculture +368129,Agriculture,Agriculture +368128,Agriculture,Agriculture +368127,Agriculture,Agriculture +368126,Agriculture,Agriculture +364949,Agriculture,Agriculture +364948,Agriculture,Agriculture +364946,Agriculture,Agriculture +364945,Agriculture,Agriculture +364944,Agriculture,Agriculture +364943,Agriculture,Agriculture +363222,Agriculture,Agriculture +354853,Agriculture,Agriculture +354852,Agriculture,Agriculture +354845,Agriculture,Agriculture +354844,Agriculture,Agriculture +354843,Agriculture,Agriculture +354842,Agriculture,Agriculture +354841,Agriculture,Agriculture +354840,Agriculture,Agriculture +354839,Agriculture,Agriculture +354838,Agriculture,Agriculture +354837,Agriculture,Agriculture +354836,Agriculture,Agriculture +354835,Agriculture,Agriculture +353277,Agriculture,Agriculture +353276,Agriculture,Agriculture +353275,Agriculture,Agriculture +353273,Agriculture,Agriculture +353271,Agriculture,Agriculture +353270,Agriculture,Agriculture +353269,Agriculture,Agriculture +353268,Agriculture,Agriculture +353267,Agriculture,Agriculture +353266,Agriculture,Agriculture +353265,Agriculture,Agriculture +352805,Agriculture,Agriculture +352804,Agriculture,Agriculture +352803,Agriculture,Agriculture +352802,Agriculture,Agriculture +352801,Agriculture,Agriculture +352800,Agriculture,Agriculture +352780,Agriculture,Agriculture +352530,Agriculture,Agriculture +352529,Agriculture,Agriculture +352528,Agriculture,Agriculture +352527,Agriculture,Agriculture +352526,Agriculture,Agriculture +352525,Agriculture,Agriculture +352524,Agriculture,Agriculture +352523,Agriculture,Agriculture +352522,Agriculture,Agriculture +352521,Agriculture,Agriculture +352520,Agriculture,Agriculture +351941,Agriculture,Agriculture +351940,Agriculture,Agriculture +349821,Agriculture,Agriculture +343233,Agriculture,Agriculture +339507,Agriculture,Agriculture +339506,Agriculture,Agriculture +339505,Agriculture,Agriculture +339504,Agriculture,Agriculture +339503,Agriculture,Agriculture +339502,Agriculture,Agriculture +339501,Agriculture,Agriculture +339500,Agriculture,Agriculture +339499,Agriculture,Agriculture +339498,Agriculture,Agriculture +339497,Agriculture,Agriculture +339495,Agriculture,Agriculture +339494,Agriculture,Agriculture +339493,Agriculture,Agriculture +339436,Agriculture,Agriculture +339434,Agriculture,Agriculture +339243,Agriculture,Agriculture +339242,Agriculture,Agriculture +339240,Agriculture,Agriculture +339238,Agriculture,Agriculture +339237,Agriculture,Agriculture +339235,Agriculture,Agriculture +339234,Agriculture,Agriculture +339233,Agriculture,Agriculture +339232,Agriculture,Agriculture +339231,Agriculture,Agriculture +339230,Agriculture,Agriculture +339229,Agriculture,Agriculture +334687,Agriculture,Agriculture +334686,Agriculture,Agriculture +334684,Agriculture,Agriculture +334682,Agriculture,Agriculture +334681,Agriculture,Agriculture +334680,Agriculture,Agriculture +334679,Agriculture,Agriculture +334678,Agriculture,Agriculture +334677,Agriculture,Agriculture +334676,Agriculture,Agriculture +334675,Agriculture,Agriculture +334674,Agriculture,Agriculture +334673,Agriculture,Agriculture +334672,Agriculture,Agriculture +334671,Agriculture,Agriculture +334612,Agriculture,Agriculture +334611,Agriculture,Agriculture +333589,Agriculture,Agriculture +333109,Agriculture,Agriculture +333072,Agriculture,Agriculture +326536,Agriculture,Agriculture +326535,Agriculture,Agriculture +326534,Agriculture,Agriculture +325994,Agriculture,Agriculture +325992,Agriculture,Agriculture +325991,Agriculture,Agriculture +325990,Agriculture,Agriculture +325890,Agriculture,Agriculture +325889,Agriculture,Agriculture +323576,Agriculture,Agriculture +323575,Agriculture,Agriculture +323574,Agriculture,Agriculture +323572,Agriculture,Agriculture +323570,Agriculture,Agriculture +323568,Agriculture,Agriculture +323564,Agriculture,Agriculture +323563,Agriculture,Agriculture +323556,Agriculture,Agriculture +322738,Agriculture,Agriculture +321732,Agriculture,Agriculture +321731,Agriculture,Agriculture +321721,Agriculture,Agriculture +321718,Agriculture,Agriculture +321717,Agriculture,Agriculture +321716,Agriculture,Agriculture +321713,Agriculture,Agriculture +321712,Agriculture,Agriculture +321711,Agriculture,Agriculture +321710,Agriculture,Agriculture +321709,Agriculture,Agriculture +321708,Agriculture,Agriculture +320352,Agriculture,Agriculture +320351,Agriculture,Agriculture +320350,Agriculture,Agriculture +319370,Agriculture,Agriculture +315921,Agriculture,Agriculture +315910,Agriculture,Agriculture +314409,Agriculture,Agriculture +309329,Agriculture,Agriculture +309109,Agriculture,Agriculture +309090,Agriculture,Agriculture +309089,Agriculture,Agriculture +307309,Agriculture,Agriculture +297829,Agriculture,Agriculture +292929,Agriculture,Agriculture +291101,Agriculture,Agriculture +291100,Agriculture,Agriculture +291099,Agriculture,Agriculture +291098,Agriculture,Agriculture +291096,Agriculture,Agriculture +291095,Agriculture,Agriculture +291094,Agriculture,Agriculture +291093,Agriculture,Agriculture +291091,Agriculture,Agriculture +291090,Agriculture,Agriculture +277523,Agriculture,Agriculture +273346,Agriculture,Agriculture +273256,Agriculture,Agriculture +268277,Agriculture,Agriculture +266970,Agriculture,Agriculture +259467,Agriculture,Agriculture +259457,Agriculture,Agriculture +259249,Agriculture,Agriculture +252391,Agriculture,Agriculture +252390,Agriculture,Agriculture +252389,Agriculture,Agriculture +250095,Agriculture,Agriculture +249749,Agriculture,Agriculture +249741,Agriculture,Agriculture +249740,Agriculture,Agriculture +249738,Agriculture,Agriculture +249737,Agriculture,Agriculture +249735,Agriculture,Agriculture +249734,Agriculture,Agriculture +249732,Agriculture,Agriculture +249731,Agriculture,Agriculture +249729,Agriculture,Agriculture +249724,Agriculture,Agriculture +249722,Agriculture,Agriculture +249719,Agriculture,Agriculture +249713,Agriculture,Agriculture +249706,Agriculture,Agriculture +249700,Agriculture,Agriculture +245149,Agriculture,Agriculture +244775,Agriculture,Agriculture +244774,Agriculture,Agriculture +244773,Agriculture,Agriculture +244771,Agriculture,Agriculture +244768,Agriculture,Agriculture +244767,Agriculture,Agriculture +244764,Agriculture,Agriculture +244760,Agriculture,Agriculture +244716,Agriculture,Agriculture +244709,Agriculture,Agriculture +244708,Agriculture,Agriculture +462619,Agriculture,Agriculture +462618,Agriculture,Agriculture +462616,Agriculture,Agriculture +462615,Agriculture,Agriculture +462613,Agriculture,Agriculture +462609,Agriculture,Agriculture +462607,Agriculture,Agriculture +462603,Agriculture,Agriculture +462602,Agriculture,Agriculture +462600,Agriculture,Agriculture +462597,Agriculture,Agriculture +462594,Agriculture,Agriculture +462591,Agriculture,Agriculture +462586,Agriculture,Agriculture +462582,Agriculture,Agriculture +462579,Agriculture,Agriculture +461833,Agriculture,Agriculture +461832,Agriculture,Agriculture +460388,Agriculture,Agriculture +460381,Agriculture,Agriculture +457890,Agriculture,Agriculture +457888,Agriculture,Agriculture +456396,Agriculture,Agriculture +456371,Agriculture,Agriculture +456369,Agriculture,Agriculture +456368,Agriculture,Agriculture +456367,Agriculture,Agriculture +454230,Agriculture,Agriculture +454229,Agriculture,Agriculture +454228,Agriculture,Agriculture +454217,Agriculture,Agriculture +454216,Agriculture,Agriculture +454214,Agriculture,Agriculture +454213,Agriculture,Agriculture +454063,Agriculture,Agriculture +454062,Agriculture,Agriculture +454060,Agriculture,Agriculture +454059,Agriculture,Agriculture +454058,Agriculture,Agriculture +454057,Agriculture,Agriculture +454056,Agriculture,Agriculture +454055,Agriculture,Agriculture +454054,Agriculture,Agriculture +454053,Agriculture,Agriculture +453332,Agriculture,Agriculture +453331,Agriculture,Agriculture +453330,Agriculture,Agriculture +453329,Agriculture,Agriculture +453328,Agriculture,Agriculture +453327,Agriculture,Agriculture +453326,Agriculture,Agriculture +453325,Agriculture,Agriculture +453324,Agriculture,Agriculture +453323,Agriculture,Agriculture +453322,Agriculture,Agriculture +453321,Agriculture,Agriculture +453320,Agriculture,Agriculture +453319,Agriculture,Agriculture +453318,Agriculture,Agriculture +453317,Agriculture,Agriculture +453316,Agriculture,Agriculture +453311,Agriculture,Agriculture +451646,Agriculture,Agriculture +451645,Agriculture,Agriculture +451378,Agriculture,Agriculture +451371,Agriculture,Agriculture +451369,Agriculture,Agriculture +451366,Agriculture,Agriculture +451365,Agriculture,Agriculture +451364,Agriculture,Agriculture +451362,Agriculture,Agriculture +451361,Agriculture,Agriculture +451360,Agriculture,Agriculture +451247,Agriculture,Agriculture +451246,Agriculture,Agriculture +451245,Agriculture,Agriculture +451244,Agriculture,Agriculture +451243,Agriculture,Agriculture +451242,Agriculture,Agriculture +451241,Agriculture,Agriculture +451240,Agriculture,Agriculture +451239,Agriculture,Agriculture +450466,Agriculture,Agriculture +450465,Agriculture,Agriculture +450463,Agriculture,Agriculture +450460,Agriculture,Agriculture +450459,Agriculture,Agriculture +449953,Agriculture,Agriculture +449952,Agriculture,Agriculture +449948,Agriculture,Agriculture +449946,Agriculture,Agriculture +449945,Agriculture,Agriculture +449943,Agriculture,Agriculture +449940,Agriculture,Agriculture +449939,Agriculture,Agriculture +449936,Agriculture,Agriculture +449933,Agriculture,Agriculture +449931,Agriculture,Agriculture +449925,Agriculture,Agriculture +449924,Agriculture,Agriculture +449915,Agriculture,Agriculture +449909,Agriculture,Agriculture +449888,Agriculture,Agriculture +448526,Agriculture,Agriculture +448525,Agriculture,Agriculture +448523,Agriculture,Agriculture +448522,Agriculture,Agriculture +448521,Agriculture,Agriculture +448520,Agriculture,Agriculture +448519,Agriculture,Agriculture +448518,Agriculture,Agriculture +448517,Agriculture,Agriculture +448516,Agriculture,Agriculture +448514,Agriculture,Agriculture +448512,Agriculture,Agriculture +448511,Agriculture,Agriculture +448509,Agriculture,Agriculture +448508,Agriculture,Agriculture +446242,Agriculture,Agriculture +446092,Agriculture,Agriculture +446090,Agriculture,Agriculture +446089,Agriculture,Agriculture +446087,Agriculture,Agriculture +440402,Agriculture,Agriculture +440400,Agriculture,Agriculture +440398,Agriculture,Agriculture +440397,Agriculture,Agriculture +440394,Agriculture,Agriculture +440393,Agriculture,Agriculture +440392,Agriculture,Agriculture +440391,Agriculture,Agriculture +440390,Agriculture,Agriculture +440389,Agriculture,Agriculture +440388,Agriculture,Agriculture +439934,Agriculture,Agriculture +439933,Agriculture,Agriculture +439932,Agriculture,Agriculture +439930,Agriculture,Agriculture +439928,Agriculture,Agriculture +439927,Agriculture,Agriculture +439926,Agriculture,Agriculture +439925,Agriculture,Agriculture +439924,Agriculture,Agriculture +439923,Agriculture,Agriculture +439922,Agriculture,Agriculture +439921,Agriculture,Agriculture +439920,Agriculture,Agriculture +439919,Agriculture,Agriculture +439917,Agriculture,Agriculture +439916,Agriculture,Agriculture +439914,Agriculture,Agriculture +439913,Agriculture,Agriculture +439911,Agriculture,Agriculture +439910,Agriculture,Agriculture +439909,Agriculture,Agriculture +439908,Agriculture,Agriculture +439907,Agriculture,Agriculture +439905,Agriculture,Agriculture +436151,Agriculture,Agriculture +436150,Agriculture,Agriculture +434435,Agriculture,Agriculture +434434,Agriculture,Agriculture +434433,Agriculture,Agriculture +434432,Agriculture,Agriculture +434431,Agriculture,Agriculture +434430,Agriculture,Agriculture +434429,Agriculture,Agriculture +434428,Agriculture,Agriculture +434427,Agriculture,Agriculture +434426,Agriculture,Agriculture +434424,Agriculture,Agriculture +431428,Agriculture,Agriculture +427635,Agriculture,Agriculture +427633,Agriculture,Agriculture +427632,Agriculture,Agriculture +427629,Agriculture,Agriculture +427610,Agriculture,Agriculture +427386,Agriculture,Agriculture +427385,Agriculture,Agriculture +427384,Agriculture,Agriculture +427382,Agriculture,Agriculture +427379,Agriculture,Agriculture +427378,Agriculture,Agriculture +427377,Agriculture,Agriculture +427375,Agriculture,Agriculture +427373,Agriculture,Agriculture +427370,Agriculture,Agriculture +427368,Agriculture,Agriculture +425603,Agriculture,Agriculture +425601,Agriculture,Agriculture +425600,Agriculture,Agriculture +425598,Agriculture,Agriculture +425595,Agriculture,Agriculture +425594,Agriculture,Agriculture +425591,Agriculture,Agriculture +425587,Agriculture,Agriculture +425586,Agriculture,Agriculture +425585,Agriculture,Agriculture +425582,Agriculture,Agriculture +425580,Agriculture,Agriculture +425579,Agriculture,Agriculture +425578,Agriculture,Agriculture +425408,Agriculture,Agriculture +425407,Agriculture,Agriculture +425406,Agriculture,Agriculture +425405,Agriculture,Agriculture +425404,Agriculture,Agriculture +425403,Agriculture,Agriculture +425401,Agriculture,Agriculture +425386,Agriculture,Agriculture +424515,Agriculture,Agriculture +424514,Agriculture,Agriculture +424513,Agriculture,Agriculture +424512,Agriculture,Agriculture +424511,Agriculture,Agriculture +424510,Agriculture,Agriculture +424509,Agriculture,Agriculture +424501,Agriculture,Agriculture +423394,Agriculture,Agriculture +423393,Agriculture,Agriculture +423392,Agriculture,Agriculture +423391,Agriculture,Agriculture +423390,Agriculture,Agriculture +423389,Agriculture,Agriculture +423388,Agriculture,Agriculture +423387,Agriculture,Agriculture +423386,Agriculture,Agriculture +423385,Agriculture,Agriculture +423383,Agriculture,Agriculture +423381,Agriculture,Agriculture +423379,Agriculture,Agriculture +423378,Agriculture,Agriculture +423377,Agriculture,Agriculture +423376,Agriculture,Agriculture +423374,Agriculture,Agriculture +423373,Agriculture,Agriculture +423372,Agriculture,Agriculture +420583,Agriculture,Agriculture +420580,Agriculture,Agriculture +415832,Agriculture,Agriculture +415825,Agriculture,Agriculture +415820,Agriculture,Agriculture +415818,Agriculture,Agriculture +415815,Agriculture,Agriculture +415813,Agriculture,Agriculture +415809,Agriculture,Agriculture +414361,Agriculture,Agriculture +414360,Agriculture,Agriculture +414359,Agriculture,Agriculture +414358,Agriculture,Agriculture +414357,Agriculture,Agriculture +414200,Agriculture,Agriculture +414198,Agriculture,Agriculture +414195,Agriculture,Agriculture +414191,Agriculture,Agriculture +414186,Agriculture,Agriculture +411780,Agriculture,Agriculture +411777,Agriculture,Agriculture +411775,Agriculture,Agriculture +411772,Agriculture,Agriculture +411771,Agriculture,Agriculture +411769,Agriculture,Agriculture +411767,Agriculture,Agriculture +411765,Agriculture,Agriculture +411764,Agriculture,Agriculture +411762,Agriculture,Agriculture +411760,Agriculture,Agriculture +411757,Agriculture,Agriculture +411382,Agriculture,Agriculture +411375,Agriculture,Agriculture +411371,Agriculture,Agriculture +411010,Agriculture,Agriculture +411005,Agriculture,Agriculture +411002,Agriculture,Agriculture +411000,Agriculture,Agriculture +410998,Agriculture,Agriculture +410996,Agriculture,Agriculture +410994,Agriculture,Agriculture +408502,Agriculture,Agriculture +408501,Agriculture,Agriculture +408500,Agriculture,Agriculture +408499,Agriculture,Agriculture +408498,Agriculture,Agriculture +408497,Agriculture,Agriculture +408496,Agriculture,Agriculture +404993,Agriculture,Agriculture +402602,Agriculture,Agriculture +402578,Agriculture,Agriculture +402572,Agriculture,Agriculture +402567,Agriculture,Agriculture +402558,Agriculture,Agriculture +402551,Agriculture,Agriculture +402546,Agriculture,Agriculture +399762,Agriculture,Agriculture +399761,Agriculture,Agriculture +399760,Agriculture,Agriculture +399759,Agriculture,Agriculture +399758,Agriculture,Agriculture +399757,Agriculture,Agriculture +399537,Agriculture,Agriculture +399536,Agriculture,Agriculture +399535,Agriculture,Agriculture +399534,Agriculture,Agriculture +399533,Agriculture,Agriculture +398408,Agriculture,Agriculture +398407,Agriculture,Agriculture +398321,Agriculture,Agriculture +398320,Agriculture,Agriculture +398318,Agriculture,Agriculture +398316,Agriculture,Agriculture +398315,Agriculture,Agriculture +398314,Agriculture,Agriculture +398313,Agriculture,Agriculture +398312,Agriculture,Agriculture +398311,Agriculture,Agriculture +398310,Agriculture,Agriculture +398309,Agriculture,Agriculture +398308,Agriculture,Agriculture +398307,Agriculture,Agriculture +396085,Agriculture,Agriculture +396083,Agriculture,Agriculture +396080,Agriculture,Agriculture +396071,Agriculture,Agriculture +396070,Agriculture,Agriculture +396069,Agriculture,Agriculture +396068,Agriculture,Agriculture +396067,Agriculture,Agriculture +396066,Agriculture,Agriculture +396064,Agriculture,Agriculture +396062,Agriculture,Agriculture +396061,Agriculture,Agriculture +396058,Agriculture,Agriculture +396057,Agriculture,Agriculture +396055,Agriculture,Agriculture +393483,Agriculture,Agriculture +393482,Agriculture,Agriculture +392023,Agriculture,Agriculture +392022,Agriculture,Agriculture +392021,Agriculture,Agriculture +392020,Agriculture,Agriculture +392019,Agriculture,Agriculture +392018,Agriculture,Agriculture +392017,Agriculture,Agriculture +392016,Agriculture,Agriculture +392015,Agriculture,Agriculture +392014,Agriculture,Agriculture +392013,Agriculture,Agriculture +392012,Agriculture,Agriculture +390750,Agriculture,Agriculture +390747,Agriculture,Agriculture +390744,Agriculture,Agriculture +390743,Agriculture,Agriculture +390740,Agriculture,Agriculture +390739,Agriculture,Agriculture +390736,Agriculture,Agriculture +390722,Agriculture,Agriculture +390720,Agriculture,Agriculture +390715,Agriculture,Agriculture +390711,Agriculture,Agriculture +390708,Agriculture,Agriculture +390705,Agriculture,Agriculture +390704,Agriculture,Agriculture +390703,Agriculture,Agriculture +390702,Agriculture,Agriculture +390698,Agriculture,Agriculture +390696,Agriculture,Agriculture +390693,Agriculture,Agriculture +390692,Agriculture,Agriculture +390689,Agriculture,Agriculture +390686,Agriculture,Agriculture +390685,Agriculture,Agriculture +390684,Agriculture,Agriculture +390683,Agriculture,Agriculture +390681,Agriculture,Agriculture +390680,Agriculture,Agriculture +390679,Agriculture,Agriculture +390678,Agriculture,Agriculture +390676,Agriculture,Agriculture +390675,Agriculture,Agriculture +390670,Agriculture,Agriculture +390666,Agriculture,Agriculture +390665,Agriculture,Agriculture +390661,Agriculture,Agriculture +390645,Agriculture,Agriculture +388603,Agriculture,Agriculture +388602,Agriculture,Agriculture +388600,Agriculture,Agriculture +388597,Agriculture,Agriculture +385923,Agriculture,Agriculture +385922,Agriculture,Agriculture +385921,Agriculture,Agriculture +385920,Agriculture,Agriculture +385919,Agriculture,Agriculture +383263,Agriculture,Agriculture +383262,Agriculture,Agriculture +383261,Agriculture,Agriculture +383259,Agriculture,Agriculture +379556,Agriculture,Agriculture +379550,Agriculture,Agriculture +379548,Agriculture,Agriculture +379544,Agriculture,Agriculture +379542,Agriculture,Agriculture +379539,Agriculture,Agriculture +379530,Agriculture,Agriculture +378526,Agriculture,Agriculture +378525,Agriculture,Agriculture +378522,Agriculture,Agriculture +378521,Agriculture,Agriculture +378520,Agriculture,Agriculture +378519,Agriculture,Agriculture +378517,Agriculture,Agriculture +378515,Agriculture,Agriculture +378514,Agriculture,Agriculture +378513,Agriculture,Agriculture +378511,Agriculture,Agriculture +378510,Agriculture,Agriculture +378508,Agriculture,Agriculture +378498,Agriculture,Agriculture +378495,Agriculture,Agriculture +378494,Agriculture,Agriculture +378337,Agriculture,Agriculture +375293,Agriculture,Agriculture +375292,Agriculture,Agriculture +375291,Agriculture,Agriculture +375290,Agriculture,Agriculture +375289,Agriculture,Agriculture +375288,Agriculture,Agriculture +375287,Agriculture,Agriculture +375286,Agriculture,Agriculture +375285,Agriculture,Agriculture +375283,Agriculture,Agriculture +375281,Agriculture,Agriculture +375280,Agriculture,Agriculture +375279,Agriculture,Agriculture +375278,Agriculture,Agriculture +375276,Agriculture,Agriculture +375275,Agriculture,Agriculture +375273,Agriculture,Agriculture +374584,Agriculture,Agriculture +374582,Agriculture,Agriculture +543061,Agriculture,Agriculture +543059,Agriculture,Agriculture +543058,Agriculture,Agriculture +543057,Agriculture,Agriculture +543053,Agriculture,Agriculture +543050,Agriculture,Agriculture +543048,Agriculture,Agriculture +543047,Agriculture,Agriculture +543045,Agriculture,Agriculture +543044,Agriculture,Agriculture +543040,Agriculture,Agriculture +543036,Agriculture,Agriculture +541434,Agriculture,Agriculture +541432,Agriculture,Agriculture +541431,Agriculture,Agriculture +541424,Agriculture,Agriculture +539431,Agriculture,Agriculture +537831,Agriculture,Agriculture +537801,Agriculture,Agriculture +537800,Agriculture,Agriculture +537799,Agriculture,Agriculture +537797,Agriculture,Agriculture +537796,Agriculture,Agriculture +537795,Agriculture,Agriculture +537791,Agriculture,Agriculture +537790,Agriculture,Agriculture +537788,Agriculture,Agriculture +537785,Agriculture,Agriculture +537784,Agriculture,Agriculture +537783,Agriculture,Agriculture +534182,Agriculture,Agriculture +533986,Agriculture,Agriculture +533984,Agriculture,Agriculture +533980,Agriculture,Agriculture +533975,Agriculture,Agriculture +533972,Agriculture,Agriculture +533970,Agriculture,Agriculture +533917,Agriculture,Agriculture +533916,Agriculture,Agriculture +533915,Agriculture,Agriculture +533914,Agriculture,Agriculture +533913,Agriculture,Agriculture +533912,Agriculture,Agriculture +533911,Agriculture,Agriculture +533910,Agriculture,Agriculture +533909,Agriculture,Agriculture +533908,Agriculture,Agriculture +533907,Agriculture,Agriculture +533906,Agriculture,Agriculture +533905,Agriculture,Agriculture +533904,Agriculture,Agriculture +533903,Agriculture,Agriculture +533902,Agriculture,Agriculture +533901,Agriculture,Agriculture +533900,Agriculture,Agriculture +533899,Agriculture,Agriculture +533898,Agriculture,Agriculture +533897,Agriculture,Agriculture +533896,Agriculture,Agriculture +533895,Agriculture,Agriculture +533894,Agriculture,Agriculture +533893,Agriculture,Agriculture +533892,Agriculture,Agriculture +533891,Agriculture,Agriculture +533890,Agriculture,Agriculture +533889,Agriculture,Agriculture +533888,Agriculture,Agriculture +533887,Agriculture,Agriculture +533886,Agriculture,Agriculture +530739,Agriculture,Agriculture +527952,Agriculture,Agriculture +527951,Agriculture,Agriculture +527950,Agriculture,Agriculture +527949,Agriculture,Agriculture +527948,Agriculture,Agriculture +527947,Agriculture,Agriculture +527946,Agriculture,Agriculture +527945,Agriculture,Agriculture +527944,Agriculture,Agriculture +527943,Agriculture,Agriculture +527942,Agriculture,Agriculture +527941,Agriculture,Agriculture +527940,Agriculture,Agriculture +527939,Agriculture,Agriculture +527938,Agriculture,Agriculture +527937,Agriculture,Agriculture +527936,Agriculture,Agriculture +527935,Agriculture,Agriculture +527934,Agriculture,Agriculture +527933,Agriculture,Agriculture +527932,Agriculture,Agriculture +527931,Agriculture,Agriculture +527930,Agriculture,Agriculture +527929,Agriculture,Agriculture +527928,Agriculture,Agriculture +527927,Agriculture,Agriculture +527926,Agriculture,Agriculture +527925,Agriculture,Agriculture +527924,Agriculture,Agriculture +527923,Agriculture,Agriculture +527922,Agriculture,Agriculture +527921,Agriculture,Agriculture +527920,Agriculture,Agriculture +527919,Agriculture,Agriculture +525215,Agriculture,Agriculture +525214,Agriculture,Agriculture +525213,Agriculture,Agriculture +525212,Agriculture,Agriculture +525211,Agriculture,Agriculture +525210,Agriculture,Agriculture +525209,Agriculture,Agriculture +522085,Agriculture,Agriculture +522084,Agriculture,Agriculture +522083,Agriculture,Agriculture +522082,Agriculture,Agriculture +522081,Agriculture,Agriculture +522080,Agriculture,Agriculture +522079,Agriculture,Agriculture +522078,Agriculture,Agriculture +522077,Agriculture,Agriculture +520073,Agriculture,Agriculture +520072,Agriculture,Agriculture +520071,Agriculture,Agriculture +519856,Agriculture,Agriculture +519853,Agriculture,Agriculture +519852,Agriculture,Agriculture +519243,Agriculture,Agriculture +519242,Agriculture,Agriculture +519240,Agriculture,Agriculture +519239,Agriculture,Agriculture +519238,Agriculture,Agriculture +519236,Agriculture,Agriculture +519235,Agriculture,Agriculture +519234,Agriculture,Agriculture +519233,Agriculture,Agriculture +519230,Agriculture,Agriculture +519228,Agriculture,Agriculture +519227,Agriculture,Agriculture +519222,Agriculture,Agriculture +517016,Agriculture,Agriculture +517014,Agriculture,Agriculture +517013,Agriculture,Agriculture +517010,Agriculture,Agriculture +517009,Agriculture,Agriculture +517008,Agriculture,Agriculture +515418,Agriculture,Agriculture +513842,Agriculture,Agriculture +513840,Agriculture,Agriculture +513838,Agriculture,Agriculture +513834,Agriculture,Agriculture +513833,Agriculture,Agriculture +513008,Agriculture,Agriculture +513007,Agriculture,Agriculture +513005,Agriculture,Agriculture +513000,Agriculture,Agriculture +512999,Agriculture,Agriculture +512997,Agriculture,Agriculture +512996,Agriculture,Agriculture +512995,Agriculture,Agriculture +512994,Agriculture,Agriculture +512992,Agriculture,Agriculture +512986,Agriculture,Agriculture +512984,Agriculture,Agriculture +512980,Agriculture,Agriculture +512971,Agriculture,Agriculture +510063,Agriculture,Agriculture +510062,Agriculture,Agriculture +510061,Agriculture,Agriculture +510060,Agriculture,Agriculture +510059,Agriculture,Agriculture +510058,Agriculture,Agriculture +510057,Agriculture,Agriculture +510056,Agriculture,Agriculture +510055,Agriculture,Agriculture +510054,Agriculture,Agriculture +510053,Agriculture,Agriculture +510052,Agriculture,Agriculture +510051,Agriculture,Agriculture +510050,Agriculture,Agriculture +510049,Agriculture,Agriculture +510048,Agriculture,Agriculture +510047,Agriculture,Agriculture +510033,Agriculture,Agriculture +509095,Agriculture,Agriculture +509090,Agriculture,Agriculture +509088,Agriculture,Agriculture +507316,Agriculture,Agriculture +507315,Agriculture,Agriculture +507314,Agriculture,Agriculture +507313,Agriculture,Agriculture +507312,Agriculture,Agriculture +507311,Agriculture,Agriculture +507310,Agriculture,Agriculture +507309,Agriculture,Agriculture +507308,Agriculture,Agriculture +507307,Agriculture,Agriculture +507306,Agriculture,Agriculture +507305,Agriculture,Agriculture +507304,Agriculture,Agriculture +507303,Agriculture,Agriculture +507302,Agriculture,Agriculture +507301,Agriculture,Agriculture +507300,Agriculture,Agriculture +507299,Agriculture,Agriculture +507298,Agriculture,Agriculture +507297,Agriculture,Agriculture +507296,Agriculture,Agriculture +507295,Agriculture,Agriculture +507294,Agriculture,Agriculture +507293,Agriculture,Agriculture +507292,Agriculture,Agriculture +507291,Agriculture,Agriculture +507289,Agriculture,Agriculture +507288,Agriculture,Agriculture +507287,Agriculture,Agriculture +507286,Agriculture,Agriculture +507285,Agriculture,Agriculture +507284,Agriculture,Agriculture +507283,Agriculture,Agriculture +507282,Agriculture,Agriculture +507281,Agriculture,Agriculture +507278,Agriculture,Agriculture +507275,Agriculture,Agriculture +507272,Agriculture,Agriculture +507270,Agriculture,Agriculture +507268,Agriculture,Agriculture +507266,Agriculture,Agriculture +507265,Agriculture,Agriculture +507264,Agriculture,Agriculture +507261,Agriculture,Agriculture +507260,Agriculture,Agriculture +505559,Agriculture,Agriculture +505555,Agriculture,Agriculture +505554,Agriculture,Agriculture +505551,Agriculture,Agriculture +505548,Agriculture,Agriculture +505547,Agriculture,Agriculture +505546,Agriculture,Agriculture +505544,Agriculture,Agriculture +505543,Agriculture,Agriculture +505542,Agriculture,Agriculture +505540,Agriculture,Agriculture +505539,Agriculture,Agriculture +505537,Agriculture,Agriculture +505536,Agriculture,Agriculture +503012,Agriculture,Agriculture +503011,Agriculture,Agriculture +503010,Agriculture,Agriculture +503009,Agriculture,Agriculture +503008,Agriculture,Agriculture +503007,Agriculture,Agriculture +503006,Agriculture,Agriculture +503005,Agriculture,Agriculture +503004,Agriculture,Agriculture +503003,Agriculture,Agriculture +503002,Agriculture,Agriculture +503001,Agriculture,Agriculture +502999,Agriculture,Agriculture +502997,Agriculture,Agriculture +502996,Agriculture,Agriculture +499011,Agriculture,Agriculture +498995,Agriculture,Agriculture +498994,Agriculture,Agriculture +498990,Agriculture,Agriculture +498976,Agriculture,Agriculture +498975,Agriculture,Agriculture +495993,Agriculture,Agriculture +495991,Agriculture,Agriculture +492598,Agriculture,Agriculture +492597,Agriculture,Agriculture +492590,Agriculture,Agriculture +492585,Agriculture,Agriculture +492584,Agriculture,Agriculture +490816,Agriculture,Agriculture +490815,Agriculture,Agriculture +489968,Agriculture,Agriculture +489966,Agriculture,Agriculture +489965,Agriculture,Agriculture +489964,Agriculture,Agriculture +489963,Agriculture,Agriculture +489962,Agriculture,Agriculture +489961,Agriculture,Agriculture +489960,Agriculture,Agriculture +489959,Agriculture,Agriculture +489958,Agriculture,Agriculture +489957,Agriculture,Agriculture +489955,Agriculture,Agriculture +489953,Agriculture,Agriculture +489952,Agriculture,Agriculture +489951,Agriculture,Agriculture +489950,Agriculture,Agriculture +489948,Agriculture,Agriculture +489947,Agriculture,Agriculture +489946,Agriculture,Agriculture +489945,Agriculture,Agriculture +489943,Agriculture,Agriculture +489941,Agriculture,Agriculture +489940,Agriculture,Agriculture +489937,Agriculture,Agriculture +489935,Agriculture,Agriculture +489933,Agriculture,Agriculture +486012,Agriculture,Agriculture +486006,Agriculture,Agriculture +486005,Agriculture,Agriculture +486003,Agriculture,Agriculture +484114,Agriculture,Agriculture +484111,Agriculture,Agriculture +484110,Agriculture,Agriculture +484109,Agriculture,Agriculture +484108,Agriculture,Agriculture +484107,Agriculture,Agriculture +484106,Agriculture,Agriculture +484105,Agriculture,Agriculture +484104,Agriculture,Agriculture +484101,Agriculture,Agriculture +484091,Agriculture,Agriculture +481160,Agriculture,Agriculture +481159,Agriculture,Agriculture +479779,Agriculture,Agriculture +479773,Agriculture,Agriculture +479771,Agriculture,Agriculture +476375,Agriculture,Agriculture +476374,Agriculture,Agriculture +476373,Agriculture,Agriculture +476372,Agriculture,Agriculture +476371,Agriculture,Agriculture +476370,Agriculture,Agriculture +476369,Agriculture,Agriculture +476368,Agriculture,Agriculture +476367,Agriculture,Agriculture +476340,Agriculture,Agriculture +476339,Agriculture,Agriculture +474841,Agriculture,Agriculture +474840,Agriculture,Agriculture +474839,Agriculture,Agriculture +474838,Agriculture,Agriculture +474837,Agriculture,Agriculture +474053,Agriculture,Agriculture +474051,Agriculture,Agriculture +474050,Agriculture,Agriculture +474048,Agriculture,Agriculture +474047,Agriculture,Agriculture +474046,Agriculture,Agriculture +474045,Agriculture,Agriculture +474044,Agriculture,Agriculture +474043,Agriculture,Agriculture +474042,Agriculture,Agriculture +474041,Agriculture,Agriculture +474040,Agriculture,Agriculture +474039,Agriculture,Agriculture +474038,Agriculture,Agriculture +474037,Agriculture,Agriculture +471604,Agriculture,Agriculture +471603,Agriculture,Agriculture +471602,Agriculture,Agriculture +471600,Agriculture,Agriculture +471599,Agriculture,Agriculture +471598,Agriculture,Agriculture +471432,Agriculture,Agriculture +471431,Agriculture,Agriculture +471430,Agriculture,Agriculture +471429,Agriculture,Agriculture +471428,Agriculture,Agriculture +471427,Agriculture,Agriculture +471426,Agriculture,Agriculture +471425,Agriculture,Agriculture +471424,Agriculture,Agriculture +471423,Agriculture,Agriculture +471422,Agriculture,Agriculture +471421,Agriculture,Agriculture +471420,Agriculture,Agriculture +471419,Agriculture,Agriculture +468817,Agriculture,Agriculture +468816,Agriculture,Agriculture +468815,Agriculture,Agriculture +468814,Agriculture,Agriculture +468813,Agriculture,Agriculture +468812,Agriculture,Agriculture +468811,Agriculture,Agriculture +468810,Agriculture,Agriculture +468809,Agriculture,Agriculture +468808,Agriculture,Agriculture +468807,Agriculture,Agriculture +468806,Agriculture,Agriculture +468784,Agriculture,Agriculture +468783,Agriculture,Agriculture +468782,Agriculture,Agriculture +468781,Agriculture,Agriculture +468774,Agriculture,Agriculture +468772,Agriculture,Agriculture +468771,Agriculture,Agriculture +468768,Agriculture,Agriculture +468767,Agriculture,Agriculture +468766,Agriculture,Agriculture +468765,Agriculture,Agriculture +468764,Agriculture,Agriculture +468763,Agriculture,Agriculture +468762,Agriculture,Agriculture +468761,Agriculture,Agriculture +468760,Agriculture,Agriculture +468242,Agriculture,Agriculture +468241,Agriculture,Agriculture +468239,Agriculture,Agriculture +468237,Agriculture,Agriculture +468236,Agriculture,Agriculture +468232,Agriculture,Agriculture +468231,Agriculture,Agriculture +468229,Agriculture,Agriculture +468228,Agriculture,Agriculture +468226,Agriculture,Agriculture +468222,Agriculture,Agriculture +468221,Agriculture,Agriculture +468219,Agriculture,Agriculture +465120,Agriculture,Agriculture +465119,Agriculture,Agriculture +465118,Agriculture,Agriculture +463279,Agriculture,Agriculture +463278,Agriculture,Agriculture +463277,Agriculture,Agriculture +463276,Agriculture,Agriculture +463271,Agriculture,Agriculture +463270,Agriculture,Agriculture +463269,Agriculture,Agriculture +463267,Agriculture,Agriculture +463266,Agriculture,Agriculture +463264,Agriculture,Agriculture +463262,Agriculture,Agriculture +463261,Agriculture,Agriculture +463260,Agriculture,Agriculture +463259,Agriculture,Agriculture +463257,Agriculture,Agriculture +463253,Agriculture,Agriculture +463248,Agriculture,Agriculture +463243,Agriculture,Agriculture +463242,Agriculture,Agriculture +462623,Agriculture,Agriculture +468760,Environment,Environment +468229,Environment,Environment +150399,Environment,Environment +148133,Environment,Environment +146065,Environment,Environment +146063,Environment,Environment +124342,Environment,Environment +124340,Environment,Environment +124314,Environment,Environment +354838,Environment,Environment +354837,Environment,Environment +354836,Environment,Environment +354835,Environment,Environment +354834,Environment,Environment +323575,Environment,Environment +319369,Environment,Environment +218032,Environment,Environment +218028,Environment,Environment +189125,Environment,Environment +175765,Environment,Environment +169147,Environment,Environment +165055,Environment,Environment +154813,Environment,Environment +153575,Environment,Environment +465120,Environment,Environment +463279,Environment,Environment +463266,Environment,Environment +463264,Environment,Environment +462622,Environment,Environment +462579,Environment,Environment +454217,Environment,Environment +454063,Environment,Environment +454062,Environment,Environment +454060,Environment,Environment +454059,Environment,Environment +454058,Environment,Environment +453325,Environment,Environment +451646,Environment,Environment +451645,Environment,Environment +451371,Environment,Environment +451247,Environment,Environment +451245,Environment,Environment +451244,Environment,Environment +451243,Environment,Environment +451242,Environment,Environment +451241,Environment,Environment +451240,Environment,Environment +446242,Environment,Environment +446090,Environment,Environment +439905,Environment,Environment +427385,Environment,Environment +411005,Environment,Environment +408502,Environment,Environment +408501,Environment,Environment +408500,Environment,Environment +408499,Environment,Environment +408497,Environment,Environment +408496,Environment,Environment +399536,Environment,Environment +399535,Environment,Environment +398321,Environment,Environment +398320,Environment,Environment +398318,Environment,Environment +398316,Environment,Environment +398315,Environment,Environment +398314,Environment,Environment +398313,Environment,Environment +398312,Environment,Environment +398311,Environment,Environment +398310,Environment,Environment +398309,Environment,Environment +398308,Environment,Environment +398307,Environment,Environment +390740,Environment,Environment +390715,Environment,Environment +390670,Environment,Environment +390666,Environment,Environment +385921,Environment,Environment +378337,Environment,Environment +375288,Environment,Environment +368134,Environment,Environment +354853,Environment,Environment +354852,Environment,Environment +354845,Environment,Environment +354844,Environment,Environment +354843,Environment,Environment +354842,Environment,Environment +354841,Environment,Environment +354840,Environment,Environment +354839,Environment,Environment +543036,Environment,Environment +541434,Environment,Environment +537791,Environment,Environment +537785,Environment,Environment +533986,Environment,Environment +533980,Environment,Environment +533975,Environment,Environment +533972,Environment,Environment +533913,Environment,Environment +533912,Environment,Environment +533911,Environment,Environment +533898,Environment,Environment +533888,Environment,Environment +533887,Environment,Environment +533886,Environment,Environment +530739,Environment,Environment +527952,Environment,Environment +527922,Environment,Environment +525215,Environment,Environment +525213,Environment,Environment +525211,Environment,Environment +525209,Environment,Environment +513008,Environment,Environment +512992,Environment,Environment +512971,Environment,Environment +510062,Environment,Environment +510060,Environment,Environment +510058,Environment,Environment +510057,Environment,Environment +510056,Environment,Environment +510055,Environment,Environment +510054,Environment,Environment +510053,Environment,Environment +510052,Environment,Environment +510051,Environment,Environment +510050,Environment,Environment +510049,Environment,Environment +510048,Environment,Environment +510047,Environment,Environment +510033,Environment,Environment +510032,Environment,Environment +509088,Environment,Environment +507312,Environment,Environment +507306,Environment,Environment +507305,Environment,Environment +507302,Environment,Environment +507300,Environment,Environment +507291,Environment,Environment +507288,Environment,Environment +507286,Environment,Environment +507284,Environment,Environment +507283,Environment,Environment +507281,Environment,Environment +507273,Environment,Environment +507272,Environment,Environment +507270,Environment,Environment +507268,Environment,Environment +507266,Environment,Environment +505554,Environment,Environment +505551,Environment,Environment +505547,Environment,Environment +505543,Environment,Environment +505542,Environment,Environment +503011,Environment,Environment +503009,Environment,Environment +503001,Environment,Environment +498975,Environment,Environment +495993,Environment,Environment +486005,Environment,Environment +484111,Environment,Environment +484110,Environment,Environment +484109,Environment,Environment +484108,Environment,Environment +484107,Environment,Environment +484105,Environment,Environment +484104,Environment,Environment +484091,Environment,Environment +476375,Environment,Environment +476374,Environment,Environment +476373,Environment,Environment +476372,Environment,Environment +476371,Environment,Environment +476370,Environment,Environment +476369,Environment,Environment +476368,Environment,Environment +476367,Environment,Environment +468774,Environment,Environment +162258,Financial Institutions,Financial Institutions +162257,Financial Institutions,Financial Institutions +162256,Financial Institutions,Financial Institutions +162255,Financial Institutions,Financial Institutions +162253,Financial Institutions,Financial Institutions +162252,Financial Institutions,Financial Institutions +162251,Financial Institutions,Financial Institutions +162250,Financial Institutions,Financial Institutions +162249,Financial Institutions,Financial Institutions +162246,Financial Institutions,Financial Institutions +162242,Financial Institutions,Financial Institutions +162237,Financial Institutions,Financial Institutions +162231,Financial Institutions,Financial Institutions +124277,Financial Institutions,Financial Institutions +189488,Financial Institutions,Financial Institutions +189484,Financial Institutions,Financial Institutions +189305,Financial Institutions,Financial Institutions +189248,Financial Institutions,Financial Institutions +189164,Financial Institutions,Financial Institutions +189161,Financial Institutions,Financial Institutions +189158,Financial Institutions,Financial Institutions +189155,Financial Institutions,Financial Institutions +189154,Financial Institutions,Financial Institutions +189152,Financial Institutions,Financial Institutions +189150,Financial Institutions,Financial Institutions +189147,Financial Institutions,Financial Institutions +189144,Financial Institutions,Financial Institutions +189142,Financial Institutions,Financial Institutions +189138,Financial Institutions,Financial Institutions +189136,Financial Institutions,Financial Institutions +189134,Financial Institutions,Financial Institutions +189132,Financial Institutions,Financial Institutions +189125,Financial Institutions,Financial Institutions +449888,Health,Health +439920,Health,Health +259251,Health,Health +375292,Health,Health +368129,Health,Health +402602,Health,Health +390750,Health,Health +390715,Health,Health +390705,Health,Health +390693,Health,Health +390689,Health,Health +390675,Health,Health +533916,Health,Health +533915,Health,Health +530741,Health,Health +530740,Health,Health +530739,Health,Health +507308,Health,Health +507299,Health,Health +505548,Health,Health +474839,Health,Health +474837,Health,Health +471599,Health,Health +471598,Health,Health +471432,Health,Health +471431,Health,Health +471430,Health,Health +471429,Health,Health +471428,Health,Health +471427,Health,Health +471426,Health,Health +471425,Health,Health +471424,Health,Health +471423,Health,Health +471422,Health,Health +471421,Health,Health +471420,Health,Health +471419,Health,Health +465119,Health,Health +465118,Health,Health +463266,Health,Health +463243,Health,Health +462622,Health,Health +460388,Health,Health +449953,Health,Health +449952,Health,Health +449948,Health,Health +449946,Health,Health +449945,Health,Health +449943,Health,Health +449940,Health,Health +449939,Health,Health +449936,Health,Health +449933,Health,Health +449931,Health,Health +449925,Health,Health +449924,Health,Health +449915,Health,Health +448508,Industry,Industry +446087,Industry,Industry +99476,Industry,Industry +99475,Industry,Industry +99474,Industry,Industry +85715,Industry,Industry +85714,Industry,Industry +79477,Industry,Industry +75275,Industry,Industry +175765,Industry,Industry +169148,Industry,Industry +169147,Industry,Industry +165053,Industry,Industry +162470,Industry,Industry +162258,Industry,Industry +162257,Industry,Industry +162256,Industry,Industry +162255,Industry,Industry +162246,Industry,Industry +162242,Industry,Industry +162237,Industry,Industry +162231,Industry,Industry +153575,Industry,Industry +150397,Industry,Industry +148161,Industry,Industry +146058,Industry,Industry +138689,Industry,Industry +113483,Industry,Industry +109632,Industry,Industry +101053,Industry,Industry +101046,Industry,Industry +101040,Industry,Industry +99477,Industry,Industry +344581,Industry,Industry +344579,Industry,Industry +344578,Industry,Industry +344539,Industry,Industry +321731,Industry,Industry +321721,Industry,Industry +321718,Industry,Industry +321717,Industry,Industry +321716,Industry,Industry +321713,Industry,Industry +321712,Industry,Industry +189488,Industry,Industry +189484,Industry,Industry +189164,Industry,Industry +189161,Industry,Industry +189158,Industry,Industry +189155,Industry,Industry +189154,Industry,Industry +189152,Industry,Industry +189150,Industry,Industry +189144,Industry,Industry +189140,Industry,Industry +189136,Industry,Industry +189134,Industry,Industry +189132,Industry,Industry +440402,Industry,Industry +440400,Industry,Industry +440397,Industry,Industry +440394,Industry,Industry +440393,Industry,Industry +440392,Industry,Industry +440391,Industry,Industry +440390,Industry,Industry +440389,Industry,Industry +440388,Industry,Industry +439926,Industry,Industry +439921,Industry,Industry +431428,Industry,Industry +427384,Industry,Industry +425405,Industry,Industry +408502,Industry,Industry +408501,Industry,Industry +408500,Industry,Industry +408498,Industry,Industry +402578,Industry,Industry +402572,Industry,Industry +402567,Industry,Industry +402558,Industry,Industry +402551,Industry,Industry +399536,Industry,Industry +398407,Industry,Industry +390743,Industry,Industry +390722,Industry,Industry +390698,Industry,Industry +390686,Industry,Industry +390681,Industry,Industry +390661,Industry,Industry +385923,Industry,Industry +385921,Industry,Industry +383261,Industry,Industry +378517,Industry,Industry +378510,Industry,Industry +378508,Industry,Industry +375282,Industry,Industry +373216,Industry,Industry +474839,Industry,Industry +474837,Industry,Industry +474051,Industry,Industry +474050,Industry,Industry +474048,Industry,Industry +474047,Industry,Industry +474045,Industry,Industry +474043,Industry,Industry +474042,Industry,Industry +474039,Industry,Industry +474038,Industry,Industry +474037,Industry,Industry +471604,Industry,Industry +471603,Industry,Industry +471600,Industry,Industry +471599,Industry,Industry +471598,Industry,Industry +471432,Industry,Industry +471431,Industry,Industry +471430,Industry,Industry +471428,Industry,Industry +471427,Industry,Industry +471426,Industry,Industry +471425,Industry,Industry +471424,Industry,Industry +471423,Industry,Industry +471422,Industry,Industry +471421,Industry,Industry +471420,Industry,Industry +471419,Industry,Industry +468817,Industry,Industry +468816,Industry,Industry +468815,Industry,Industry +468813,Industry,Industry +468812,Industry,Industry +468811,Industry,Industry +468810,Industry,Industry +468809,Industry,Industry +468808,Industry,Industry +468807,Industry,Industry +468806,Industry,Industry +468783,Industry,Industry +468782,Industry,Industry +468781,Industry,Industry +461833,Industry,Industry +461832,Industry,Industry +461829,Industry,Industry +454229,Industry,Industry +454228,Industry,Industry +454214,Industry,Industry +454063,Industry,Industry +454062,Industry,Industry +454060,Industry,Industry +454059,Industry,Industry +454058,Industry,Industry +454057,Industry,Industry +454056,Industry,Industry +454055,Industry,Industry +454054,Industry,Industry +453328,Industry,Industry +451360,Industry,Industry +448525,Industry,Industry +448523,Industry,Industry +448522,Industry,Industry +448521,Industry,Industry +448520,Industry,Industry +448519,Industry,Industry +448518,Industry,Industry +448517,Industry,Industry +448516,Industry,Industry +448514,Industry,Industry +448512,Industry,Industry +448511,Industry,Industry +533888,Internal Trade,Internal Trade +486012,Internal Trade,Internal Trade +119577,Internal Trade,Internal Trade +112334,Internal Trade,Internal Trade +106076,Internal Trade,Internal Trade +88894,Internal Trade,Internal Trade +85715,Internal Trade,Internal Trade +83854,Internal Trade,Internal Trade +165053,Internal Trade,Internal Trade +153575,Internal Trade,Internal Trade +152159,Internal Trade,Internal Trade +142255,Internal Trade,Internal Trade +138689,Internal Trade,Internal Trade +138685,Internal Trade,Internal Trade +135823,Internal Trade,Internal Trade +133596,Internal Trade,Internal Trade +132688,Internal Trade,Internal Trade +225868,Internal Trade,Internal Trade +189488,Internal Trade,Internal Trade +189484,Internal Trade,Internal Trade +189305,Internal Trade,Internal Trade +189248,Internal Trade,Internal Trade +189164,Internal Trade,Internal Trade +189161,Internal Trade,Internal Trade +189158,Internal Trade,Internal Trade +189155,Internal Trade,Internal Trade +189154,Internal Trade,Internal Trade +189152,Internal Trade,Internal Trade +189150,Internal Trade,Internal Trade +189147,Internal Trade,Internal Trade +189142,Internal Trade,Internal Trade +189140,Internal Trade,Internal Trade +189138,Internal Trade,Internal Trade +189136,Internal Trade,Internal Trade +189134,Internal Trade,Internal Trade +189132,Internal Trade,Internal Trade +189125,Internal Trade,Internal Trade +440398,Internal Trade,Internal Trade +439925,Internal Trade,Internal Trade +390683,Internal Trade,Internal Trade +325890,Internal Trade,Internal Trade +325889,Internal Trade,Internal Trade +322738,Internal Trade,Internal Trade +321731,Internal Trade,Internal Trade +321721,Internal Trade,Internal Trade +321717,Internal Trade,Internal Trade +321716,Internal Trade,Internal Trade +321713,Internal Trade,Internal Trade +321711,Internal Trade,Internal Trade +321710,Internal Trade,Internal Trade +162256,International Relations,International Relations +162255,International Relations,International Relations +138683,International Relations,International Relations +127618,International Relations,International Relations +162253,International Relations,International Relations +162252,International Relations,International Relations +162251,International Relations,International Relations +162250,International Relations,International Relations +162249,International Relations,International Relations +162246,International Relations,International Relations +162242,International Relations,International Relations +162237,International Relations,International Relations +162231,International Relations,International Relations +157095,International Relations,International Relations +157093,International Relations,International Relations +157092,International Relations,International Relations +157053,International Relations,International Relations +157052,International Relations,International Relations +157050,International Relations,International Relations +157047,International Relations,International Relations +157044,International Relations,International Relations +154810,International Relations,International Relations +153575,International Relations,International Relations +150407,International Relations,International Relations +150405,International Relations,International Relations +148127,International Relations,International Relations +148125,International Relations,International Relations +138684,International Relations,International Relations +199653,International Relations,International Relations +199650,International Relations,International Relations +199649,International Relations,International Relations +199648,International Relations,International Relations +199647,International Relations,International Relations +199644,International Relations,International Relations +199642,International Relations,International Relations +199640,International Relations,International Relations +199638,International Relations,International Relations +199637,International Relations,International Relations +199633,International Relations,International Relations +199631,International Relations,International Relations +189488,International Relations,International Relations +189484,International Relations,International Relations +189305,International Relations,International Relations +189248,International Relations,International Relations +189164,International Relations,International Relations +189158,International Relations,International Relations +189155,International Relations,International Relations +189154,International Relations,International Relations +189152,International Relations,International Relations +189150,International Relations,International Relations +189147,International Relations,International Relations +189144,International Relations,International Relations +189142,International Relations,International Relations +189140,International Relations,International Relations +189138,International Relations,International Relations +189136,International Relations,International Relations +189134,International Relations,International Relations +189132,International Relations,International Relations +171485,International Relations,International Relations +165056,International Relations,International Relations +165054,International Relations,International Relations +162258,International Relations,International Relations +507261,International Trade,International Trade +507260,International Trade,International Trade +79477,International Trade,International Trade +75274,International Trade,International Trade +138683,International Trade,International Trade +133594,International Trade,International Trade +127618,International Trade,International Trade +127615,International Trade,International Trade +113483,International Trade,International Trade +112334,International Trade,International Trade +106201,International Trade,International Trade +106196,International Trade,International Trade +106114,International Trade,International Trade +101053,International Trade,International Trade +101046,International Trade,International Trade +101040,International Trade,International Trade +100887,International Trade,International Trade +99480,International Trade,International Trade +99477,International Trade,International Trade +99476,International Trade,International Trade +99475,International Trade,International Trade +99474,International Trade,International Trade +189122,International Trade,International Trade +173268,International Trade,International Trade +171485,International Trade,International Trade +170981,International Trade,International Trade +170977,International Trade,International Trade +170974,International Trade,International Trade +170966,International Trade,International Trade +170961,International Trade,International Trade +170954,International Trade,International Trade +169148,International Trade,International Trade +165056,International Trade,International Trade +165054,International Trade,International Trade +162470,International Trade,International Trade +162278,International Trade,International Trade +162277,International Trade,International Trade +162276,International Trade,International Trade +162275,International Trade,International Trade +162274,International Trade,International Trade +162273,International Trade,International Trade +162258,International Trade,International Trade +162257,International Trade,International Trade +162256,International Trade,International Trade +162255,International Trade,International Trade +162253,International Trade,International Trade +162252,International Trade,International Trade +162251,International Trade,International Trade +162250,International Trade,International Trade +162249,International Trade,International Trade +162246,International Trade,International Trade +162242,International Trade,International Trade +162237,International Trade,International Trade +162231,International Trade,International Trade +157095,International Trade,International Trade +157093,International Trade,International Trade +157092,International Trade,International Trade +157053,International Trade,International Trade +157052,International Trade,International Trade +157050,International Trade,International Trade +157047,International Trade,International Trade +153575,International Trade,International Trade +152159,International Trade,International Trade +150407,International Trade,International Trade +150405,International Trade,International Trade +150397,International Trade,International Trade +150396,International Trade,International Trade +148129,International Trade,International Trade +146067,International Trade,International Trade +138684,International Trade,International Trade +244678,International Trade,International Trade +244656,International Trade,International Trade +244655,International Trade,International Trade +244652,International Trade,International Trade +244647,International Trade,International Trade +240358,International Trade,International Trade +240357,International Trade,International Trade +240356,International Trade,International Trade +240354,International Trade,International Trade +240353,International Trade,International Trade +240350,International Trade,International Trade +240349,International Trade,International Trade +240336,International Trade,International Trade +240334,International Trade,International Trade +240333,International Trade,International Trade +240332,International Trade,International Trade +240331,International Trade,International Trade +240330,International Trade,International Trade +240325,International Trade,International Trade +240321,International Trade,International Trade +228979,International Trade,International Trade +225874,International Trade,International Trade +225873,International Trade,International Trade +225872,International Trade,International Trade +225871,International Trade,International Trade +225870,International Trade,International Trade +223519,International Trade,International Trade +223516,International Trade,International Trade +223513,International Trade,International Trade +223512,International Trade,International Trade +223511,International Trade,International Trade +223508,International Trade,International Trade +223504,International Trade,International Trade +223502,International Trade,International Trade +223499,International Trade,International Trade +223496,International Trade,International Trade +223494,International Trade,International Trade +223488,International Trade,International Trade +223484,International Trade,International Trade +223478,International Trade,International Trade +223477,International Trade,International Trade +223476,International Trade,International Trade +223462,International Trade,International Trade +223458,International Trade,International Trade +223455,International Trade,International Trade +223454,International Trade,International Trade +223445,International Trade,International Trade +223443,International Trade,International Trade +223441,International Trade,International Trade +223440,International Trade,International Trade +223438,International Trade,International Trade +223437,International Trade,International Trade +223434,International Trade,International Trade +223431,International Trade,International Trade +223428,International Trade,International Trade +223426,International Trade,International Trade +223423,International Trade,International Trade +223422,International Trade,International Trade +223418,International Trade,International Trade +223415,International Trade,International Trade +223413,International Trade,International Trade +223412,International Trade,International Trade +223410,International Trade,International Trade +223379,International Trade,International Trade +223363,International Trade,International Trade +222674,International Trade,International Trade +222672,International Trade,International Trade +218109,International Trade,International Trade +218090,International Trade,International Trade +218087,International Trade,International Trade +218072,International Trade,International Trade +218070,International Trade,International Trade +218048,International Trade,International Trade +218034,International Trade,International Trade +218033,International Trade,International Trade +212498,International Trade,International Trade +212494,International Trade,International Trade +212493,International Trade,International Trade +212490,International Trade,International Trade +212487,International Trade,International Trade +212486,International Trade,International Trade +212483,International Trade,International Trade +212479,International Trade,International Trade +212477,International Trade,International Trade +212475,International Trade,International Trade +212474,International Trade,International Trade +212470,International Trade,International Trade +212467,International Trade,International Trade +212464,International Trade,International Trade +212458,International Trade,International Trade +212453,International Trade,International Trade +207411,International Trade,International Trade +207403,International Trade,International Trade +205988,International Trade,International Trade +199635,International Trade,International Trade +199628,International Trade,International Trade +189488,International Trade,International Trade +189484,International Trade,International Trade +189305,International Trade,International Trade +189248,International Trade,International Trade +189164,International Trade,International Trade +189161,International Trade,International Trade +189158,International Trade,International Trade +189155,International Trade,International Trade +189154,International Trade,International Trade +189152,International Trade,International Trade +189150,International Trade,International Trade +189147,International Trade,International Trade +189144,International Trade,International Trade +189142,International Trade,International Trade +189140,International Trade,International Trade +189138,International Trade,International Trade +189136,International Trade,International Trade +189134,International Trade,International Trade +189132,International Trade,International Trade +189125,International Trade,International Trade +390675,International Trade,International Trade +390645,International Trade,International Trade +388602,International Trade,International Trade +388597,International Trade,International Trade +385923,International Trade,International Trade +385921,International Trade,International Trade +385920,International Trade,International Trade +385919,International Trade,International Trade +383263,International Trade,International Trade +383262,International Trade,International Trade +379556,International Trade,International Trade +379548,International Trade,International Trade +379544,International Trade,International Trade +379542,International Trade,International Trade +379539,International Trade,International Trade +379530,International Trade,International Trade +378526,International Trade,International Trade +378525,International Trade,International Trade +378522,International Trade,International Trade +378521,International Trade,International Trade +378520,International Trade,International Trade +378519,International Trade,International Trade +378517,International Trade,International Trade +378515,International Trade,International Trade +378513,International Trade,International Trade +378511,International Trade,International Trade +378510,International Trade,International Trade +378508,International Trade,International Trade +378495,International Trade,International Trade +378494,International Trade,International Trade +375293,International Trade,International Trade +375291,International Trade,International Trade +375290,International Trade,International Trade +375289,International Trade,International Trade +375288,International Trade,International Trade +375287,International Trade,International Trade +375286,International Trade,International Trade +375285,International Trade,International Trade +375283,International Trade,International Trade +375282,International Trade,International Trade +375281,International Trade,International Trade +375280,International Trade,International Trade +375279,International Trade,International Trade +375278,International Trade,International Trade +375276,International Trade,International Trade +375275,International Trade,International Trade +375273,International Trade,International Trade +374584,International Trade,International Trade +374582,International Trade,International Trade +374440,International Trade,International Trade +374435,International Trade,International Trade +374422,International Trade,International Trade +374420,International Trade,International Trade +374419,International Trade,International Trade +374417,International Trade,International Trade +373214,International Trade,International Trade +371480,International Trade,International Trade +371476,International Trade,International Trade +371473,International Trade,International Trade +371468,International Trade,International Trade +370383,International Trade,International Trade +370015,International Trade,International Trade +370013,International Trade,International Trade +370012,International Trade,International Trade +370006,International Trade,International Trade +370005,International Trade,International Trade +370004,International Trade,International Trade +370003,International Trade,International Trade +370002,International Trade,International Trade +370001,International Trade,International Trade +369638,International Trade,International Trade +368864,International Trade,International Trade +368138,International Trade,International Trade +368135,International Trade,International Trade +368133,International Trade,International Trade +368131,International Trade,International Trade +368130,International Trade,International Trade +368128,International Trade,International Trade +368127,International Trade,International Trade +368126,International Trade,International Trade +364949,International Trade,International Trade +364948,International Trade,International Trade +364946,International Trade,International Trade +364945,International Trade,International Trade +354853,International Trade,International Trade +354852,International Trade,International Trade +354845,International Trade,International Trade +354844,International Trade,International Trade +354843,International Trade,International Trade +354842,International Trade,International Trade +354841,International Trade,International Trade +354840,International Trade,International Trade +354839,International Trade,International Trade +354838,International Trade,International Trade +354837,International Trade,International Trade +354836,International Trade,International Trade +354835,International Trade,International Trade +354834,International Trade,International Trade +353277,International Trade,International Trade +353276,International Trade,International Trade +353275,International Trade,International Trade +353273,International Trade,International Trade +353271,International Trade,International Trade +353270,International Trade,International Trade +353269,International Trade,International Trade +353268,International Trade,International Trade +353267,International Trade,International Trade +353266,International Trade,International Trade +353265,International Trade,International Trade +352805,International Trade,International Trade +352804,International Trade,International Trade +352803,International Trade,International Trade +352802,International Trade,International Trade +352801,International Trade,International Trade +352800,International Trade,International Trade +352780,International Trade,International Trade +352531,International Trade,International Trade +352530,International Trade,International Trade +352529,International Trade,International Trade +352528,International Trade,International Trade +352527,International Trade,International Trade +352526,International Trade,International Trade +352525,International Trade,International Trade +352524,International Trade,International Trade +352523,International Trade,International Trade +352522,International Trade,International Trade +352521,International Trade,International Trade +352520,International Trade,International Trade +351940,International Trade,International Trade +344581,International Trade,International Trade +344580,International Trade,International Trade +344579,International Trade,International Trade +344578,International Trade,International Trade +344577,International Trade,International Trade +344539,International Trade,International Trade +343233,International Trade,International Trade +339505,International Trade,International Trade +339504,International Trade,International Trade +339502,International Trade,International Trade +339501,International Trade,International Trade +339436,International Trade,International Trade +330787,International Trade,International Trade +330786,International Trade,International Trade +330785,International Trade,International Trade +328831,International Trade,International Trade +328829,International Trade,International Trade +325994,International Trade,International Trade +325992,International Trade,International Trade +325991,International Trade,International Trade +323576,International Trade,International Trade +323563,International Trade,International Trade +323556,International Trade,International Trade +322742,International Trade,International Trade +321732,International Trade,International Trade +321718,International Trade,International Trade +321712,International Trade,International Trade +321709,International Trade,International Trade +321708,International Trade,International Trade +320351,International Trade,International Trade +319370,International Trade,International Trade +315921,International Trade,International Trade +273245,International Trade,International Trade +266910,International Trade,International Trade +259464,International Trade,International Trade +259460,International Trade,International Trade +252391,International Trade,International Trade +252390,International Trade,International Trade +252389,International Trade,International Trade +250095,International Trade,International Trade +249749,International Trade,International Trade +249741,International Trade,International Trade +249740,International Trade,International Trade +249738,International Trade,International Trade +354771,Taxation and Finance,Taxation and Finance +131754,Environment,Environment +131754,Health,Health +530306,Financial Institutions,Financial Institutions +145951,Consumer Issues,Consumer Issues +407978,Defence,Defence +396367,Government Procurement,Government Procurement +525546,Industry,Industry +165895,International Trade,International Trade +87992,Transportation,Transportation +428825,Environment,Environment +430414,Government Procurement,Government Procurement +245583,Taxation and Finance,Taxation and Finance +428825,Transportation,Transportation +90262,Other,Alternative fuels +117668,Environment,Environment +80699,Infrastructure,Infrastructure +344400,Defence,Defence +196065,Government Procurement,Government Procurement +256895,Industry,Industry +283430,International Trade,International Trade +153915,Regional Development,Regional Development +144675,Other,Canadian Space Agency +85157,Other,Canadian Space Plan +101438,Energy,Energy +115434,Environment,Environment +79996,Employment and Training,Employment and Training +89178,Energy,Energy +79996,Environment,Environment +79996,Industry,Industry +89176,Transportation,Transportation +81058,Immigration,Immigration +81058,Labour,Labour +81835,Transportation,Transportation +357940,Consumer Issues,Consumer Issues +398670,Financial Institutions,Financial Institutions +403500,Taxation and Finance,Taxation and Finance +228109,Industry,Industry +100918,Health,Health +90416,Transportation,Transportation +253109,Agriculture,Agriculture +253109,Health,Health +87816,Financial Institutions,Financial Institutions +154883,Environment,Environment +456012,Industry,Industry +154885,Regional Development,Regional Development +135931,Tourism,Tourism +154886,Transportation,Transportation +429063,Financial Institutions,Financial Institutions +477770,Justice and Law Enforcement,Justice and Law Enforcement +89137,Other,Protection des renseignements personnels +149677,Other,Assurance-dépôt +149677,Other,blanchiment d'argent et anti-terrorisme +355359,International Relations,International Relations +353169,International Trade,International Trade +96730,Agriculture,Agriculture +88634,Energy,Energy +96674,Environment,Environment +148104,Transportation,Transportation +429006,Education,Education +339043,Environment,Environment +157777,Financial Institutions,Financial Institutions +268149,International Trade,International Trade +224893,Mining,Mining +161229,Taxation and Finance,Taxation and Finance +522442,Education,Education +393240,Employment and Training,Employment and Training +157149,Intellectual Property,Intellectual Property +157149,International Trade,International Trade +446881,Taxation and Finance,Taxation and Finance +101199,Government Procurement,Government Procurement +97283,Agriculture,Agriculture +536151,Consumer Issues,Consumer Issues +520849,Environment,Environment +528650,Health,Health +434489,International Trade,International Trade +519092,International Trade,International Trade +528914,Health,Health +519185,Industry,Industry +500916,Intellectual Property,Intellectual Property +445253,Internal Trade,Internal Trade +194859,International Relations,International Relations +379728,International Trade,International Trade +500457,Agriculture,Agriculture +509850,Energy,Energy +429739,Environment,Environment +512034,Industry,Industry +429740,International Trade,International Trade +138034,Health,Health +138034,Industry,Industry +138034,Intellectual Property,Intellectual Property +163756,Environment,Environment +106157,Industry,Industry +418917,Infrastructure,Infrastructure +440734,Environment,Environment +502575,Financial Institutions,Financial Institutions +450018,Government Procurement,Government Procurement +471067,Health,Health +370101,Immigration,Immigration +421612,Industry,Industry +282838,Infrastructure,Infrastructure +162371,Intellectual Property,Intellectual Property +543991,Internal Trade,Internal Trade +478059,International Trade,International Trade +462470,Labour,Labour +421611,Regional Development,Regional Development +457648,Small Business,Small Business +512941,Taxation and Finance,Taxation and Finance +322304,Tourism,Tourism +325101,Transportation,Transportation +465102,Agriculture,Agriculture +377976,Employment and Training,Employment and Training +377976,International Trade,International Trade +344556,Transportation,Transportation +102716,Energy,Energy +102716,Regional Development,Regional Development +102716,Transportation,Transportation +390600,Consumer Issues,Consumer Issues +414112,Health,Health +486288,Taxation and Finance,Taxation and Finance +81155,Financial Institutions,Financial Institutions +130514,Defence,Defence +130514,Government Procurement,Government Procurement +130514,Industry,Industry +381393,Education,Education +487339,Environment,Environment +491260,Fisheries,Fisheries +160008,Health,Health +378379,Energy,Energy +443005,Environment,Environment +436108,Industry,Industry +420581,Transportation,Transportation +104998,Agriculture,Agriculture +113182,Consumer Issues,Consumer Issues +87934,Education,Education +310910,Employment and Training,Employment and Training +442569,Energy,Energy +439367,Environment,Environment +200497,Fisheries,Fisheries +223637,Immigration,Immigration +473010,Industry,Industry +461600,Infrastructure,Infrastructure +422236,Internal Trade,Internal Trade +348552,International Trade,International Trade +495287,Labour,Labour +461719,Mining,Mining +436047,Taxation and Finance,Taxation and Finance +422236,Transportation,Transportation +350127,Education,Education +518070,Employment and Training,Employment and Training +254689,Environment,Environment +440554,Government Procurement,Government Procurement +440921,Immigration,Immigration +440553,Industry,Industry +393852,Infrastructure,Infrastructure +357137,Internal Trade,Internal Trade +350127,International Trade,International Trade +394708,Labour,Labour +182044,Small Business,Small Business +157728,Taxation and Finance,Taxation and Finance +481573,Energy,Energy +481593,Taxation and Finance,Taxation and Finance +79634,Environment,Environment +465645,Health,Health +87137,Energy,Energy +120895,International Trade,International Trade +168119,Employment and Training,Employment and Training +165582,Financial Institutions,Financial Institutions +159844,Industry,Industry +226992,Internal Trade,Internal Trade +101290,International Trade,International Trade +188539,Small Business,Small Business +310042,Taxation and Finance,Taxation and Finance +151932,Other,Competition +106758,Other,Securities Regulation +462620,Agriculture,Agriculture +133594,Consumer Issues,Consumer Issues +468772,Environment,Environment +169148,Financial Institutions,Financial Institutions +449909,Health,Health +448509,Industry,Industry +124235,Intellectual Property,Intellectual Property +320350,Internal Trade,Internal Trade +162257,International Relations,International Relations +507275,International Trade,International Trade +189144,Justice and Law Enforcement,Justice and Law Enforcement +468234,Regional Development,Regional Development +249737,International Trade,International Trade +249735,International Trade,International Trade +249734,International Trade,International Trade +249732,International Trade,International Trade +249731,International Trade,International Trade +249729,International Trade,International Trade +249724,International Trade,International Trade +249722,International Trade,International Trade +249719,International Trade,International Trade +249713,International Trade,International Trade +249706,International Trade,International Trade +249700,International Trade,International Trade +245149,International Trade,International Trade +244775,International Trade,International Trade +244774,International Trade,International Trade +244773,International Trade,International Trade +244771,International Trade,International Trade +244768,International Trade,International Trade +244767,International Trade,International Trade +244764,International Trade,International Trade +244760,International Trade,International Trade +244716,International Trade,International Trade +244709,International Trade,International Trade +244708,International Trade,International Trade +244707,International Trade,International Trade +244705,International Trade,International Trade +244702,International Trade,International Trade +244700,International Trade,International Trade +244698,International Trade,International Trade +244697,International Trade,International Trade +244695,International Trade,International Trade +244692,International Trade,International Trade +244690,International Trade,International Trade +244689,International Trade,International Trade +244687,International Trade,International Trade +244685,International Trade,International Trade +244684,International Trade,International Trade +244681,International Trade,International Trade +244679,International Trade,International Trade +505537,International Trade,International Trade +503012,International Trade,International Trade +503005,International Trade,International Trade +502999,International Trade,International Trade +499011,International Trade,International Trade +492598,International Trade,International Trade +492597,International Trade,International Trade +492590,International Trade,International Trade +492585,International Trade,International Trade +492584,International Trade,International Trade +490815,International Trade,International Trade +489968,International Trade,International Trade +489966,International Trade,International Trade +489965,International Trade,International Trade +489964,International Trade,International Trade +489963,International Trade,International Trade +489962,International Trade,International Trade +486012,International Trade,International Trade +486003,International Trade,International Trade +484114,International Trade,International Trade +484111,International Trade,International Trade +484106,International Trade,International Trade +484091,International Trade,International Trade +479784,International Trade,International Trade +479781,International Trade,International Trade +479778,International Trade,International Trade +479774,International Trade,International Trade +479773,International Trade,International Trade +479772,International Trade,International Trade +476340,International Trade,International Trade +476339,International Trade,International Trade +474841,International Trade,International Trade +474840,International Trade,International Trade +474050,International Trade,International Trade +474047,International Trade,International Trade +474046,International Trade,International Trade +474043,International Trade,International Trade +468781,International Trade,International Trade +468772,International Trade,International Trade +468767,International Trade,International Trade +468761,International Trade,International Trade +468242,International Trade,International Trade +468241,International Trade,International Trade +468239,International Trade,International Trade +468237,International Trade,International Trade +468236,International Trade,International Trade +468231,International Trade,International Trade +468228,International Trade,International Trade +468226,International Trade,International Trade +468222,International Trade,International Trade +468219,International Trade,International Trade +463278,International Trade,International Trade +463277,International Trade,International Trade +463276,International Trade,International Trade +463270,International Trade,International Trade +463269,International Trade,International Trade +463267,International Trade,International Trade +463266,International Trade,International Trade +463262,International Trade,International Trade +463261,International Trade,International Trade +463260,International Trade,International Trade +463248,International Trade,International Trade +463243,International Trade,International Trade +463242,International Trade,International Trade +462623,International Trade,International Trade +462620,International Trade,International Trade +462607,International Trade,International Trade +462602,International Trade,International Trade +461833,International Trade,International Trade +461832,International Trade,International Trade +460381,International Trade,International Trade +457890,International Trade,International Trade +457888,International Trade,International Trade +456396,International Trade,International Trade +456371,International Trade,International Trade +456369,International Trade,International Trade +456368,International Trade,International Trade +456367,International Trade,International Trade +456302,International Trade,International Trade +454230,International Trade,International Trade +454229,International Trade,International Trade +454228,International Trade,International Trade +454217,International Trade,International Trade +454216,International Trade,International Trade +454214,International Trade,International Trade +454213,International Trade,International Trade +454063,International Trade,International Trade +454062,International Trade,International Trade +454060,International Trade,International Trade +454059,International Trade,International Trade +454058,International Trade,International Trade +454057,International Trade,International Trade +454056,International Trade,International Trade +454055,International Trade,International Trade +454054,International Trade,International Trade +454053,International Trade,International Trade +453331,International Trade,International Trade +453330,International Trade,International Trade +453329,International Trade,International Trade +453328,International Trade,International Trade +453327,International Trade,International Trade +453326,International Trade,International Trade +453324,International Trade,International Trade +453322,International Trade,International Trade +453321,International Trade,International Trade +453320,International Trade,International Trade +453319,International Trade,International Trade +453318,International Trade,International Trade +453317,International Trade,International Trade +453316,International Trade,International Trade +453311,International Trade,International Trade +451369,International Trade,International Trade +451365,International Trade,International Trade +451361,International Trade,International Trade +451360,International Trade,International Trade +451247,International Trade,International Trade +451246,International Trade,International Trade +451245,International Trade,International Trade +451244,International Trade,International Trade +451243,International Trade,International Trade +451242,International Trade,International Trade +451241,International Trade,International Trade +451240,International Trade,International Trade +451239,International Trade,International Trade +450466,International Trade,International Trade +449953,International Trade,International Trade +449952,International Trade,International Trade +449948,International Trade,International Trade +449946,International Trade,International Trade +449945,International Trade,International Trade +449943,International Trade,International Trade +449940,International Trade,International Trade +449939,International Trade,International Trade +449936,International Trade,International Trade +449933,International Trade,International Trade +449931,International Trade,International Trade +449925,International Trade,International Trade +449924,International Trade,International Trade +449915,International Trade,International Trade +449909,International Trade,International Trade +449888,International Trade,International Trade +448525,International Trade,International Trade +448523,International Trade,International Trade +446092,International Trade,International Trade +446090,International Trade,International Trade +446089,International Trade,International Trade +446087,International Trade,International Trade +440402,International Trade,International Trade +440400,International Trade,International Trade +440398,International Trade,International Trade +440397,International Trade,International Trade +440394,International Trade,International Trade +440393,International Trade,International Trade +440392,International Trade,International Trade +440391,International Trade,International Trade +440390,International Trade,International Trade +440389,International Trade,International Trade +440388,International Trade,International Trade +439934,International Trade,International Trade +439933,International Trade,International Trade +439932,International Trade,International Trade +439930,International Trade,International Trade +439928,International Trade,International Trade +439927,International Trade,International Trade +439926,International Trade,International Trade +439925,International Trade,International Trade +439924,International Trade,International Trade +439923,International Trade,International Trade +439922,International Trade,International Trade +439921,International Trade,International Trade +439920,International Trade,International Trade +439919,International Trade,International Trade +439917,International Trade,International Trade +439916,International Trade,International Trade +439914,International Trade,International Trade +439913,International Trade,International Trade +439911,International Trade,International Trade +439910,International Trade,International Trade +439909,International Trade,International Trade +439908,International Trade,International Trade +439907,International Trade,International Trade +439905,International Trade,International Trade +436151,International Trade,International Trade +436150,International Trade,International Trade +434435,International Trade,International Trade +434434,International Trade,International Trade +434433,International Trade,International Trade +434432,International Trade,International Trade +434431,International Trade,International Trade +434430,International Trade,International Trade +434429,International Trade,International Trade +434428,International Trade,International Trade +434427,International Trade,International Trade +434426,International Trade,International Trade +434424,International Trade,International Trade +431428,International Trade,International Trade +427635,International Trade,International Trade +427633,International Trade,International Trade +427632,International Trade,International Trade +427629,International Trade,International Trade +427610,International Trade,International Trade +427386,International Trade,International Trade +427385,International Trade,International Trade +427384,International Trade,International Trade +427382,International Trade,International Trade +427379,International Trade,International Trade +427378,International Trade,International Trade +427377,International Trade,International Trade +427375,International Trade,International Trade +427373,International Trade,International Trade +427370,International Trade,International Trade +427368,International Trade,International Trade +425603,International Trade,International Trade +425601,International Trade,International Trade +425600,International Trade,International Trade +425598,International Trade,International Trade +425595,International Trade,International Trade +425594,International Trade,International Trade +425591,International Trade,International Trade +425587,International Trade,International Trade +425586,International Trade,International Trade +425585,International Trade,International Trade +425582,International Trade,International Trade +425580,International Trade,International Trade +425579,International Trade,International Trade +425578,International Trade,International Trade +425408,International Trade,International Trade +425407,International Trade,International Trade +425406,International Trade,International Trade +425405,International Trade,International Trade +425404,International Trade,International Trade +425403,International Trade,International Trade +425401,International Trade,International Trade +425386,International Trade,International Trade +424515,International Trade,International Trade +424514,International Trade,International Trade +424513,International Trade,International Trade +424512,International Trade,International Trade +424511,International Trade,International Trade +424510,International Trade,International Trade +424509,International Trade,International Trade +424501,International Trade,International Trade +423394,International Trade,International Trade +423393,International Trade,International Trade +423392,International Trade,International Trade +423391,International Trade,International Trade +423390,International Trade,International Trade +423389,International Trade,International Trade +423388,International Trade,International Trade +423387,International Trade,International Trade +423386,International Trade,International Trade +423385,International Trade,International Trade +423383,International Trade,International Trade +423381,International Trade,International Trade +423379,International Trade,International Trade +423378,International Trade,International Trade +423377,International Trade,International Trade +423376,International Trade,International Trade +423374,International Trade,International Trade +423373,International Trade,International Trade +423372,International Trade,International Trade +420583,International Trade,International Trade +420580,International Trade,International Trade +418544,International Trade,International Trade +418543,International Trade,International Trade +418542,International Trade,International Trade +415832,International Trade,International Trade +415825,International Trade,International Trade +415820,International Trade,International Trade +415818,International Trade,International Trade +415815,International Trade,International Trade +415813,International Trade,International Trade +415809,International Trade,International Trade +414361,International Trade,International Trade +414360,International Trade,International Trade +414359,International Trade,International Trade +414358,International Trade,International Trade +414357,International Trade,International Trade +414200,International Trade,International Trade +414198,International Trade,International Trade +414195,International Trade,International Trade +414191,International Trade,International Trade +414186,International Trade,International Trade +411780,International Trade,International Trade +411777,International Trade,International Trade +411775,International Trade,International Trade +411772,International Trade,International Trade +411771,International Trade,International Trade +411769,International Trade,International Trade +411767,International Trade,International Trade +411765,International Trade,International Trade +411764,International Trade,International Trade +411762,International Trade,International Trade +411760,International Trade,International Trade +411757,International Trade,International Trade +411382,International Trade,International Trade +411375,International Trade,International Trade +411371,International Trade,International Trade +411010,International Trade,International Trade +411005,International Trade,International Trade +411000,International Trade,International Trade +410998,International Trade,International Trade +410996,International Trade,International Trade +410994,International Trade,International Trade +408502,International Trade,International Trade +408501,International Trade,International Trade +408500,International Trade,International Trade +408499,International Trade,International Trade +408498,International Trade,International Trade +408497,International Trade,International Trade +408496,International Trade,International Trade +404993,International Trade,International Trade +402602,International Trade,International Trade +402578,International Trade,International Trade +402572,International Trade,International Trade +402567,International Trade,International Trade +402558,International Trade,International Trade +402551,International Trade,International Trade +402546,International Trade,International Trade +399762,International Trade,International Trade +399761,International Trade,International Trade +399760,International Trade,International Trade +399759,International Trade,International Trade +399758,International Trade,International Trade +399757,International Trade,International Trade +399536,International Trade,International Trade +399535,International Trade,International Trade +399534,International Trade,International Trade +399533,International Trade,International Trade +398408,International Trade,International Trade +398407,International Trade,International Trade +398321,International Trade,International Trade +398320,International Trade,International Trade +398318,International Trade,International Trade +398316,International Trade,International Trade +398314,International Trade,International Trade +398313,International Trade,International Trade +398312,International Trade,International Trade +398311,International Trade,International Trade +398310,International Trade,International Trade +398309,International Trade,International Trade +398308,International Trade,International Trade +396085,International Trade,International Trade +396083,International Trade,International Trade +396080,International Trade,International Trade +396071,International Trade,International Trade +396070,International Trade,International Trade +396069,International Trade,International Trade +396068,International Trade,International Trade +396067,International Trade,International Trade +396066,International Trade,International Trade +396064,International Trade,International Trade +396062,International Trade,International Trade +396061,International Trade,International Trade +396058,International Trade,International Trade +396057,International Trade,International Trade +396055,International Trade,International Trade +393482,International Trade,International Trade +392023,International Trade,International Trade +392022,International Trade,International Trade +392021,International Trade,International Trade +392020,International Trade,International Trade +392019,International Trade,International Trade +392018,International Trade,International Trade +392017,International Trade,International Trade +392016,International Trade,International Trade +392015,International Trade,International Trade +392014,International Trade,International Trade +392013,International Trade,International Trade +392012,International Trade,International Trade +390750,International Trade,International Trade +390747,International Trade,International Trade +390744,International Trade,International Trade +390743,International Trade,International Trade +390740,International Trade,International Trade +390739,International Trade,International Trade +390736,International Trade,International Trade +390722,International Trade,International Trade +390720,International Trade,International Trade +390715,International Trade,International Trade +390711,International Trade,International Trade +390708,International Trade,International Trade +390705,International Trade,International Trade +390704,International Trade,International Trade +390703,International Trade,International Trade +390698,International Trade,International Trade +390696,International Trade,International Trade +390693,International Trade,International Trade +390692,International Trade,International Trade +390686,International Trade,International Trade +390685,International Trade,International Trade +390684,International Trade,International Trade +390680,International Trade,International Trade +390679,International Trade,International Trade +390678,International Trade,International Trade +390676,International Trade,International Trade +537796,International Trade,International Trade +537790,International Trade,International Trade +537788,International Trade,International Trade +534182,International Trade,International Trade +533986,International Trade,International Trade +533980,International Trade,International Trade +533975,International Trade,International Trade +533917,International Trade,International Trade +533909,International Trade,International Trade +533908,International Trade,International Trade +533907,International Trade,International Trade +533906,International Trade,International Trade +533905,International Trade,International Trade +533904,International Trade,International Trade +533903,International Trade,International Trade +533902,International Trade,International Trade +533901,International Trade,International Trade +533900,International Trade,International Trade +533899,International Trade,International Trade +533898,International Trade,International Trade +533897,International Trade,International Trade +533896,International Trade,International Trade +533895,International Trade,International Trade +533894,International Trade,International Trade +533893,International Trade,International Trade +533892,International Trade,International Trade +533891,International Trade,International Trade +533890,International Trade,International Trade +533889,International Trade,International Trade +527921,International Trade,International Trade +525214,International Trade,International Trade +525212,International Trade,International Trade +522083,International Trade,International Trade +522080,International Trade,International Trade +522078,International Trade,International Trade +520073,International Trade,International Trade +520072,International Trade,International Trade +520071,International Trade,International Trade +519235,International Trade,International Trade +519233,International Trade,International Trade +519223,International Trade,International Trade +519222,International Trade,International Trade +515418,International Trade,International Trade +512997,International Trade,International Trade +512971,International Trade,International Trade +510062,International Trade,International Trade +510058,International Trade,International Trade +510056,International Trade,International Trade +510055,International Trade,International Trade +510054,International Trade,International Trade +510053,International Trade,International Trade +510052,International Trade,International Trade +510051,International Trade,International Trade +510050,International Trade,International Trade +510049,International Trade,International Trade +510048,International Trade,International Trade +510047,International Trade,International Trade +510032,International Trade,International Trade +509088,International Trade,International Trade +507307,International Trade,International Trade +463279,Regional Development,Regional Development +453327,Regional Development,Regional Development +189488,Regional Development,Regional Development +189484,Regional Development,Regional Development +189305,Regional Development,Regional Development +189248,Regional Development,Regional Development +189164,Regional Development,Regional Development +189161,Regional Development,Regional Development +189158,Regional Development,Regional Development +189155,Regional Development,Regional Development +189154,Regional Development,Regional Development +189152,Regional Development,Regional Development +189150,Regional Development,Regional Development +189147,Regional Development,Regional Development +189144,Regional Development,Regional Development +189142,Regional Development,Regional Development +189140,Regional Development,Regional Development +189138,Regional Development,Regional Development +189136,Regional Development,Regional Development +189134,Regional Development,Regional Development +189132,Regional Development,Regional Development +189125,Regional Development,Regional Development +169147,Regional Development,Regional Development +146058,Regional Development,Regional Development +368134,Regional Development,Regional Development +353277,Regional Development,Regional Development +353276,Regional Development,Regional Development +353275,Regional Development,Regional Development +353273,Regional Development,Regional Development +353271,Regional Development,Regional Development +353270,Regional Development,Regional Development +353269,Regional Development,Regional Development +353268,Regional Development,Regional Development +353267,Regional Development,Regional Development +353266,Regional Development,Regional Development +353265,Regional Development,Regional Development +352805,Regional Development,Regional Development +352804,Regional Development,Regional Development +352803,Regional Development,Regional Development +352802,Regional Development,Regional Development +352801,Regional Development,Regional Development +352800,Regional Development,Regional Development +352780,Regional Development,Regional Development +378514,Regional Development,Regional Development +537801,Regional Development,Regional Development +445755,Constitutional Issues,Constitutional Issues +444289,Constitutional Issues,Constitutional Issues +474484,Constitutional Issues,Constitutional Issues +445771,Constitutional Issues,Constitutional Issues +445755,Justice and Law Enforcement,Justice and Law Enforcement +444289,Justice and Law Enforcement,Justice and Law Enforcement +445771,Justice and Law Enforcement,Justice and Law Enforcement +351479,Consumer Issues,Consumer Issues +309955,Consumer Issues,Consumer Issues +102695,Consumer Issues,Consumer Issues +91615,Consumer Issues,Consumer Issues +393117,Consumer Issues,Consumer Issues +379247,Consumer Issues,Consumer Issues +373479,Consumer Issues,Consumer Issues +371954,Consumer Issues,Consumer Issues +371950,Consumer Issues,Consumer Issues +355129,Consumer Issues,Consumer Issues +508471,Energy,Energy +483320,Energy,Energy +102695,Energy,Energy +373479,Energy,Energy +355131,Energy,Energy +327687,Energy,Energy +327608,Energy,Energy +327573,Energy,Energy +448954,Energy,Energy +459186,Environment,Environment +458316,Environment,Environment +448954,Environment,Environment +395960,Environment,Environment +395959,Environment,Environment +395958,Environment,Environment +395957,Environment,Environment +395956,Environment,Environment +395955,Environment,Environment +395954,Environment,Environment +395953,Environment,Environment +395952,Environment,Environment +395951,Environment,Environment +395950,Environment,Environment +395949,Environment,Environment +395947,Environment,Environment +395944,Environment,Environment +395940,Environment,Environment +395938,Environment,Environment +395937,Environment,Environment +395934,Environment,Environment +395926,Environment,Environment +395923,Environment,Environment +395921,Environment,Environment +395920,Environment,Environment +395918,Environment,Environment +395917,Environment,Environment +395916,Environment,Environment +395915,Environment,Environment +395914,Environment,Environment +395913,Environment,Environment +395912,Environment,Environment +395909,Environment,Environment +395908,Environment,Environment +395906,Environment,Environment +395901,Environment,Environment +395899,Environment,Environment +395898,Environment,Environment +395897,Environment,Environment +395895,Environment,Environment +395893,Environment,Environment +395892,Environment,Environment +395891,Environment,Environment +395889,Environment,Environment +395886,Environment,Environment +395884,Environment,Environment +395883,Environment,Environment +395882,Environment,Environment +395879,Environment,Environment +395876,Environment,Environment +395874,Environment,Environment +395870,Environment,Environment +374233,Environment,Environment +373479,Environment,Environment +373113,Environment,Environment +373112,Environment,Environment +373111,Environment,Environment +373110,Environment,Environment +373109,Environment,Environment +373108,Environment,Environment +373107,Environment,Environment +373106,Environment,Environment +373105,Environment,Environment +373104,Environment,Environment +373103,Environment,Environment +373102,Environment,Environment +373101,Environment,Environment +373100,Environment,Environment +373099,Environment,Environment +373098,Environment,Environment +373097,Environment,Environment +373096,Environment,Environment +373095,Environment,Environment +373094,Environment,Environment +373093,Environment,Environment +373092,Environment,Environment +373091,Environment,Environment +373090,Environment,Environment +373089,Environment,Environment +373088,Environment,Environment +373087,Environment,Environment +373086,Environment,Environment +373085,Environment,Environment +373084,Environment,Environment +373083,Environment,Environment +373082,Environment,Environment +373081,Environment,Environment +373080,Environment,Environment +373079,Environment,Environment +373078,Environment,Environment +373077,Environment,Environment +373076,Environment,Environment +373075,Environment,Environment +373074,Environment,Environment +373073,Environment,Environment +373072,Environment,Environment +373071,Environment,Environment +373070,Environment,Environment +373069,Environment,Environment +373068,Environment,Environment +373066,Environment,Environment +373065,Environment,Environment +373063,Environment,Environment +373062,Environment,Environment +373061,Environment,Environment +373060,Environment,Environment +355139,Environment,Environment +355135,Environment,Environment +355106,Environment,Environment +355104,Environment,Environment +327687,Environment,Environment +327626,Environment,Environment +327608,Environment,Environment +467304,Financial Institutions,Financial Institutions +464564,Financial Institutions,Financial Institutions +102698,Financial Institutions,Financial Institutions +102695,Financial Institutions,Financial Institutions +91614,Financial Institutions,Financial Institutions +327532,Financial Institutions,Financial Institutions +526693,Financial Institutions,Financial Institutions +481034,Financial Institutions,Financial Institutions +476807,Financial Institutions,Financial Institutions +444073,Health,Health +526703,Immigration,Immigration +526696,Immigration,Immigration +309960,Immigration,Immigration +355124,Immigration,Immigration +355123,Immigration,Immigration +355119,Immigration,Immigration +327682,Immigration,Immigration +483320,Industry,Industry +479254,Industry,Industry +395884,Industry,Industry +395870,Industry,Industry +393117,Industry,Industry +329589,Industry,Industry +327602,Industry,Industry +526698,Industry,Industry +511085,Industry,Industry +511083,Industry,Industry +526701,Infrastructure,Infrastructure +418533,Infrastructure,Infrastructure +309955,Infrastructure,Infrastructure +395960,Infrastructure,Infrastructure +395959,Infrastructure,Infrastructure +395958,Infrastructure,Infrastructure +395957,Infrastructure,Infrastructure +395956,Infrastructure,Infrastructure +395955,Infrastructure,Infrastructure +395954,Infrastructure,Infrastructure +395953,Infrastructure,Infrastructure +395952,Infrastructure,Infrastructure +395951,Infrastructure,Infrastructure +395950,Infrastructure,Infrastructure +395949,Infrastructure,Infrastructure +395947,Infrastructure,Infrastructure +395944,Infrastructure,Infrastructure +395942,Infrastructure,Infrastructure +395940,Infrastructure,Infrastructure +395938,Infrastructure,Infrastructure +395937,Infrastructure,Infrastructure +395934,Infrastructure,Infrastructure +395926,Infrastructure,Infrastructure +395923,Infrastructure,Infrastructure +395921,Infrastructure,Infrastructure +395920,Infrastructure,Infrastructure +395918,Infrastructure,Infrastructure +395917,Infrastructure,Infrastructure +395916,Infrastructure,Infrastructure +395915,Infrastructure,Infrastructure +395914,Infrastructure,Infrastructure +395913,Infrastructure,Infrastructure +395912,Infrastructure,Infrastructure +395909,Infrastructure,Infrastructure +395908,Infrastructure,Infrastructure +395906,Infrastructure,Infrastructure +395901,Infrastructure,Infrastructure +395899,Infrastructure,Infrastructure +395898,Infrastructure,Infrastructure +395897,Infrastructure,Infrastructure +395895,Infrastructure,Infrastructure +395893,Infrastructure,Infrastructure +395892,Infrastructure,Infrastructure +395891,Infrastructure,Infrastructure +395889,Infrastructure,Infrastructure +395886,Infrastructure,Infrastructure +395883,Infrastructure,Infrastructure +395882,Infrastructure,Infrastructure +395879,Infrastructure,Infrastructure +395876,Infrastructure,Infrastructure +395874,Infrastructure,Infrastructure +395870,Infrastructure,Infrastructure +375058,Infrastructure,Infrastructure +374232,Infrastructure,Infrastructure +373113,Infrastructure,Infrastructure +373112,Infrastructure,Infrastructure +373111,Infrastructure,Infrastructure +373110,Infrastructure,Infrastructure +373109,Infrastructure,Infrastructure +373108,Infrastructure,Infrastructure +373107,Infrastructure,Infrastructure +373106,Infrastructure,Infrastructure +373105,Infrastructure,Infrastructure +373104,Infrastructure,Infrastructure +373103,Infrastructure,Infrastructure +373102,Infrastructure,Infrastructure +373101,Infrastructure,Infrastructure +373100,Infrastructure,Infrastructure +373099,Infrastructure,Infrastructure +373098,Infrastructure,Infrastructure +373097,Infrastructure,Infrastructure +373096,Infrastructure,Infrastructure +373095,Infrastructure,Infrastructure +373094,Infrastructure,Infrastructure +373093,Infrastructure,Infrastructure +373092,Infrastructure,Infrastructure +373091,Infrastructure,Infrastructure +373090,Infrastructure,Infrastructure +373089,Infrastructure,Infrastructure +373088,Infrastructure,Infrastructure +373087,Infrastructure,Infrastructure +373086,Infrastructure,Infrastructure +373085,Infrastructure,Infrastructure +373084,Infrastructure,Infrastructure +373083,Infrastructure,Infrastructure +373082,Infrastructure,Infrastructure +373081,Infrastructure,Infrastructure +373080,Infrastructure,Infrastructure +373079,Infrastructure,Infrastructure +373078,Infrastructure,Infrastructure +373077,Infrastructure,Infrastructure +373076,Infrastructure,Infrastructure +373075,Infrastructure,Infrastructure +373074,Infrastructure,Infrastructure +373073,Infrastructure,Infrastructure +373072,Infrastructure,Infrastructure +373071,Infrastructure,Infrastructure +373070,Infrastructure,Infrastructure +373069,Infrastructure,Infrastructure +373068,Infrastructure,Infrastructure +373066,Infrastructure,Infrastructure +373065,Infrastructure,Infrastructure +373063,Infrastructure,Infrastructure +373062,Infrastructure,Infrastructure +373061,Infrastructure,Infrastructure +373060,Infrastructure,Infrastructure +371954,Infrastructure,Infrastructure +371950,Infrastructure,Infrastructure +355150,Infrastructure,Infrastructure +355121,Infrastructure,Infrastructure +355120,Infrastructure,Infrastructure +355117,Infrastructure,Infrastructure +355116,Infrastructure,Infrastructure +355115,Infrastructure,Infrastructure +355107,Infrastructure,Infrastructure +327661,Infrastructure,Infrastructure +327612,Infrastructure,Infrastructure +327561,Infrastructure,Infrastructure +545240,Infrastructure,Infrastructure +475214,Labour,Labour +475213,Labour,Labour +545004,Labour,Labour +526703,Labour,Labour +526702,Labour,Labour +526696,Labour,Labour +526695,Labour,Labour +526694,Labour,Labour +526693,Labour,Labour +475218,Labour,Labour +475217,Labour,Labour +475214,Small Business,Small Business +475213,Small Business,Small Business +395876,Small Business,Small Business +395874,Small Business,Small Business +395870,Small Business,Small Business +371954,Small Business,Small Business +371950,Small Business,Small Business +355133,Small Business,Small Business +339453,Small Business,Small Business +418533,Small Business,Small Business +395960,Small Business,Small Business +395959,Small Business,Small Business +395958,Small Business,Small Business +395957,Small Business,Small Business +395956,Small Business,Small Business +395955,Small Business,Small Business +395954,Small Business,Small Business +395953,Small Business,Small Business +395952,Small Business,Small Business +395951,Small Business,Small Business +395950,Small Business,Small Business +395949,Small Business,Small Business +395947,Small Business,Small Business +395944,Small Business,Small Business +395942,Small Business,Small Business +395940,Small Business,Small Business +395938,Small Business,Small Business +395937,Small Business,Small Business +395934,Small Business,Small Business +395926,Small Business,Small Business +395923,Small Business,Small Business +395921,Small Business,Small Business +395920,Small Business,Small Business +395918,Small Business,Small Business +395917,Small Business,Small Business +395916,Small Business,Small Business +395915,Small Business,Small Business +395914,Small Business,Small Business +395913,Small Business,Small Business +395912,Small Business,Small Business +395909,Small Business,Small Business +395908,Small Business,Small Business +395906,Small Business,Small Business +395901,Small Business,Small Business +395899,Small Business,Small Business +395898,Small Business,Small Business +395897,Small Business,Small Business +395895,Small Business,Small Business +395893,Small Business,Small Business +395892,Small Business,Small Business +395891,Small Business,Small Business +395889,Small Business,Small Business +395886,Small Business,Small Business +395884,Small Business,Small Business +395883,Small Business,Small Business +395882,Small Business,Small Business +395879,Small Business,Small Business +476810,Small Business,Small Business +476808,Small Business,Small Business +475218,Small Business,Small Business +475217,Small Business,Small Business +475216,Small Business,Small Business +526693,Taxation and Finance,Taxation and Finance +523848,Taxation and Finance,Taxation and Finance +151537,Taxation and Finance,Taxation and Finance +150364,Taxation and Finance,Taxation and Finance +329589,Taxation and Finance,Taxation and Finance +327690,Taxation and Finance,Taxation and Finance +327677,Taxation and Finance,Taxation and Finance +327658,Taxation and Finance,Taxation and Finance +327652,Taxation and Finance,Taxation and Finance +327647,Taxation and Finance,Taxation and Finance +327640,Taxation and Finance,Taxation and Finance +327632,Taxation and Finance,Taxation and Finance +327604,Taxation and Finance,Taxation and Finance +327602,Taxation and Finance,Taxation and Finance +327597,Taxation and Finance,Taxation and Finance +327581,Taxation and Finance,Taxation and Finance +327561,Taxation and Finance,Taxation and Finance +327550,Taxation and Finance,Taxation and Finance +327538,Taxation and Finance,Taxation and Finance +278790,Taxation and Finance,Taxation and Finance +230430,Taxation and Finance,Taxation and Finance +230427,Taxation and Finance,Taxation and Finance +379247,Taxation and Finance,Taxation and Finance +371950,Taxation and Finance,Taxation and Finance +355110,Taxation and Finance,Taxation and Finance +355105,Taxation and Finance,Taxation and Finance +355102,Taxation and Finance,Taxation and Finance +355100,Taxation and Finance,Taxation and Finance +351479,Taxation and Finance,Taxation and Finance +339453,Taxation and Finance,Taxation and Finance +494521,Taxation and Finance,Taxation and Finance +489237,Taxation and Finance,Taxation and Finance +483323,Taxation and Finance,Taxation and Finance +481034,Taxation and Finance,Taxation and Finance +481033,Taxation and Finance,Taxation and Finance +479256,Taxation and Finance,Taxation and Finance +479255,Taxation and Finance,Taxation and Finance +476810,Taxation and Finance,Taxation and Finance +476809,Taxation and Finance,Taxation and Finance +476808,Taxation and Finance,Taxation and Finance +476807,Taxation and Finance,Taxation and Finance +476806,Taxation and Finance,Taxation and Finance +475218,Taxation and Finance,Taxation and Finance +475217,Taxation and Finance,Taxation and Finance +475216,Taxation and Finance,Taxation and Finance +475215,Taxation and Finance,Taxation and Finance +475214,Taxation and Finance,Taxation and Finance +467297,Taxation and Finance,Taxation and Finance +464564,Taxation and Finance,Taxation and Finance +418533,Taxation and Finance,Taxation and Finance +410735,Taxation and Finance,Taxation and Finance +395960,Taxation and Finance,Taxation and Finance +395959,Taxation and Finance,Taxation and Finance +395958,Taxation and Finance,Taxation and Finance +395957,Taxation and Finance,Taxation and Finance +395956,Taxation and Finance,Taxation and Finance +395955,Taxation and Finance,Taxation and Finance +395954,Taxation and Finance,Taxation and Finance +395953,Taxation and Finance,Taxation and Finance +395952,Taxation and Finance,Taxation and Finance +395951,Taxation and Finance,Taxation and Finance +395950,Taxation and Finance,Taxation and Finance +395949,Taxation and Finance,Taxation and Finance +395947,Taxation and Finance,Taxation and Finance +395944,Taxation and Finance,Taxation and Finance +395942,Taxation and Finance,Taxation and Finance +395940,Taxation and Finance,Taxation and Finance +395938,Taxation and Finance,Taxation and Finance +395937,Taxation and Finance,Taxation and Finance +395934,Taxation and Finance,Taxation and Finance +395926,Taxation and Finance,Taxation and Finance +395923,Taxation and Finance,Taxation and Finance +395921,Taxation and Finance,Taxation and Finance +395920,Taxation and Finance,Taxation and Finance +395918,Taxation and Finance,Taxation and Finance +395917,Taxation and Finance,Taxation and Finance +395916,Taxation and Finance,Taxation and Finance +395915,Taxation and Finance,Taxation and Finance +395914,Taxation and Finance,Taxation and Finance +395913,Taxation and Finance,Taxation and Finance +395912,Taxation and Finance,Taxation and Finance +395909,Taxation and Finance,Taxation and Finance +395908,Taxation and Finance,Taxation and Finance +395906,Taxation and Finance,Taxation and Finance +395899,Taxation and Finance,Taxation and Finance +395898,Taxation and Finance,Taxation and Finance +395897,Taxation and Finance,Taxation and Finance +395895,Taxation and Finance,Taxation and Finance +395893,Taxation and Finance,Taxation and Finance +395892,Taxation and Finance,Taxation and Finance +395891,Taxation and Finance,Taxation and Finance +395889,Taxation and Finance,Taxation and Finance +395884,Taxation and Finance,Taxation and Finance +395883,Taxation and Finance,Taxation and Finance +395882,Taxation and Finance,Taxation and Finance +395879,Taxation and Finance,Taxation and Finance +395876,Taxation and Finance,Taxation and Finance +395874,Taxation and Finance,Taxation and Finance +395870,Taxation and Finance,Taxation and Finance +393117,Taxation and Finance,Taxation and Finance +545004,Taxation and Finance,Taxation and Finance +526697,Taxation and Finance,Taxation and Finance +102695,Other,housing affordability +126095,Other,Ocean Sciences +126034,Other,Ocean Sciences +129654,Other,Ocean Sciences +126116,Other,Ocean Sciences +126115,Other,Ocean Sciences +534457,Agriculture,Agriculture +528045,Agriculture,Agriculture +413822,Agriculture,Agriculture +413821,Agriculture,Agriculture +413820,Agriculture,Agriculture +413819,Agriculture,Agriculture +413818,Agriculture,Agriculture +413817,Agriculture,Agriculture +413816,Agriculture,Agriculture +413815,Agriculture,Agriculture +413762,Agriculture,Agriculture +413760,Agriculture,Agriculture +413758,Agriculture,Agriculture +413924,Agriculture,Agriculture +413823,Agriculture,Agriculture +542392,Agriculture,Agriculture +542303,Agriculture,Agriculture +541153,Agriculture,Agriculture +413760,Industry,Industry +413758,Industry,Industry +413924,Industry,Industry +413823,Industry,Industry +413822,Industry,Industry +413821,Industry,Industry +413820,Industry,Industry +413819,Industry,Industry +413818,Industry,Industry +413817,Industry,Industry +413816,Industry,Industry +413815,Industry,Industry +428550,Energy,Energy +425764,Energy,Energy +125034,Energy,Energy +125014,Energy,Energy +121297,Energy,Energy +117557,Energy,Energy +100475,Energy,Energy +156926,Energy,Energy +184364,Energy,Energy +175549,Energy,Energy +368549,Energy,Energy +357623,Energy,Energy +273558,Energy,Energy +413717,Environment,Environment +413712,Environment,Environment +100484,Environment,Environment +100480,Environment,Environment +100475,Environment,Environment +77172,Environment,Environment +156926,Environment,Environment +153337,Environment,Environment +125034,Environment,Environment +125014,Environment,Environment +121297,Environment,Environment +117557,Environment,Environment +114160,Environment,Environment +327252,Environment,Environment +277435,Environment,Environment +273550,Environment,Environment +264371,Environment,Environment +264370,Environment,Environment +259493,Environment,Environment +245400,Environment,Environment +238129,Environment,Environment +236810,Environment,Environment +230671,Environment,Environment +227160,Environment,Environment +223550,Environment,Environment +223549,Environment,Environment +200239,Environment,Environment +184364,Environment,Environment +180496,Environment,Environment +175549,Environment,Environment +413708,Environment,Environment +413707,Environment,Environment +413704,Environment,Environment +413702,Environment,Environment +413699,Environment,Environment +413697,Environment,Environment +413695,Environment,Environment +413692,Environment,Environment +413691,Environment,Environment +413688,Environment,Environment +413684,Environment,Environment +413680,Environment,Environment +413669,Environment,Environment +413660,Environment,Environment +413592,Environment,Environment +413586,Environment,Environment +413576,Environment,Environment +413565,Environment,Environment +413532,Environment,Environment +413511,Environment,Environment +413492,Environment,Environment +413477,Environment,Environment +413471,Environment,Environment +413463,Environment,Environment +413454,Environment,Environment +413451,Environment,Environment +413445,Environment,Environment +413442,Environment,Environment +413438,Environment,Environment +413429,Environment,Environment +413428,Environment,Environment +413426,Environment,Environment +407230,Environment,Environment +407229,Environment,Environment +406860,Environment,Environment +399937,Environment,Environment +388641,Environment,Environment +388640,Environment,Environment +388639,Environment,Environment +388638,Environment,Environment +388637,Environment,Environment +388636,Environment,Environment +388635,Environment,Environment +388634,Environment,Environment +388633,Environment,Environment +388632,Environment,Environment +388631,Environment,Environment +388629,Environment,Environment +388628,Environment,Environment +382075,Environment,Environment +380927,Environment,Environment +376517,Environment,Environment +375873,Environment,Environment +375872,Environment,Environment +368549,Environment,Environment +357623,Environment,Environment +353603,Environment,Environment +338780,Environment,Environment +338779,Environment,Environment +338778,Environment,Environment +338775,Environment,Environment +338774,Environment,Environment +338724,Environment,Environment +338723,Environment,Environment +338722,Environment,Environment +338721,Environment,Environment +338717,Environment,Environment +338712,Environment,Environment +338711,Environment,Environment +338707,Environment,Environment +338705,Environment,Environment +338701,Environment,Environment +338696,Environment,Environment +338694,Environment,Environment +338693,Environment,Environment +338692,Environment,Environment +338690,Environment,Environment +338687,Environment,Environment +338684,Environment,Environment +338683,Environment,Environment +338681,Environment,Environment +338680,Environment,Environment +338677,Environment,Environment +338675,Environment,Environment +338674,Environment,Environment +338673,Environment,Environment +338671,Environment,Environment +338670,Environment,Environment +338668,Environment,Environment +338667,Environment,Environment +540197,Environment,Environment +540196,Environment,Environment +540195,Environment,Environment +538488,Environment,Environment +538486,Environment,Environment +538483,Environment,Environment +535733,Environment,Environment +535729,Environment,Environment +531881,Environment,Environment +531880,Environment,Environment +529534,Environment,Environment +529533,Environment,Environment +529532,Environment,Environment +529531,Environment,Environment +529526,Environment,Environment +529524,Environment,Environment +511139,Environment,Environment +511131,Environment,Environment +511123,Environment,Environment +511119,Environment,Environment +511109,Environment,Environment +511104,Environment,Environment +508946,Environment,Environment +508944,Environment,Environment +508942,Environment,Environment +508938,Environment,Environment +508937,Environment,Environment +508932,Environment,Environment +505114,Environment,Environment +505103,Environment,Environment +505089,Environment,Environment +502783,Environment,Environment +502777,Environment,Environment +502775,Environment,Environment +502771,Environment,Environment +499015,Environment,Environment +499010,Environment,Environment +499005,Environment,Environment +499003,Environment,Environment +493428,Environment,Environment +484940,Environment,Environment +479933,Environment,Environment +479927,Environment,Environment +474533,Environment,Environment +473633,Environment,Environment +473629,Environment,Environment +465427,Environment,Environment +464463,Environment,Environment +458681,Environment,Environment +458680,Environment,Environment +457490,Environment,Environment +452563,Environment,Environment +452561,Environment,Environment +452558,Environment,Environment +449916,Environment,Environment +449913,Environment,Environment +447762,Environment,Environment +447759,Environment,Environment +447753,Environment,Environment +447751,Environment,Environment +444994,Environment,Environment +443665,Environment,Environment +443664,Environment,Environment +442557,Environment,Environment +442551,Environment,Environment +439062,Environment,Environment +439058,Environment,Environment +435312,Environment,Environment +435311,Environment,Environment +433517,Environment,Environment +432275,Environment,Environment +428550,Environment,Environment +425764,Environment,Environment +423878,Environment,Environment +423877,Environment,Environment +423864,Environment,Environment +423861,Environment,Environment +423857,Environment,Environment +413808,Environment,Environment +413806,Environment,Environment +413804,Environment,Environment +413801,Environment,Environment +413799,Environment,Environment +413797,Environment,Environment +413796,Environment,Environment +413795,Environment,Environment +413794,Environment,Environment +413793,Environment,Environment +413792,Environment,Environment +413790,Environment,Environment +413789,Environment,Environment +413788,Environment,Environment +413787,Environment,Environment +413785,Environment,Environment +413784,Environment,Environment +413783,Environment,Environment +413769,Environment,Environment +413767,Environment,Environment +413763,Environment,Environment +413724,Environment,Environment +413692,Government Procurement,Government Procurement +413691,Government Procurement,Government Procurement +238129,Government Procurement,Government Procurement +236809,Government Procurement,Government Procurement +162552,Government Procurement,Government Procurement +353603,Government Procurement,Government Procurement +338780,Government Procurement,Government Procurement +338779,Government Procurement,Government Procurement +338778,Government Procurement,Government Procurement +338775,Government Procurement,Government Procurement +338774,Government Procurement,Government Procurement +338724,Government Procurement,Government Procurement +338723,Government Procurement,Government Procurement +338722,Government Procurement,Government Procurement +338721,Government Procurement,Government Procurement +338717,Government Procurement,Government Procurement +338712,Government Procurement,Government Procurement +338711,Government Procurement,Government Procurement +338707,Government Procurement,Government Procurement +338705,Government Procurement,Government Procurement +338701,Government Procurement,Government Procurement +338696,Government Procurement,Government Procurement +338694,Government Procurement,Government Procurement +338693,Government Procurement,Government Procurement +338692,Government Procurement,Government Procurement +338690,Government Procurement,Government Procurement +338687,Government Procurement,Government Procurement +338684,Government Procurement,Government Procurement +338683,Government Procurement,Government Procurement +338681,Government Procurement,Government Procurement +338680,Government Procurement,Government Procurement +338677,Government Procurement,Government Procurement +338675,Government Procurement,Government Procurement +338674,Government Procurement,Government Procurement +338673,Government Procurement,Government Procurement +338671,Government Procurement,Government Procurement +338670,Government Procurement,Government Procurement +338668,Government Procurement,Government Procurement +338667,Government Procurement,Government Procurement +327253,Government Procurement,Government Procurement +327252,Government Procurement,Government Procurement +290874,Government Procurement,Government Procurement +413688,Government Procurement,Government Procurement +413684,Government Procurement,Government Procurement +413680,Government Procurement,Government Procurement +413669,Government Procurement,Government Procurement +413660,Government Procurement,Government Procurement +413592,Government Procurement,Government Procurement +413586,Government Procurement,Government Procurement +413576,Government Procurement,Government Procurement +413565,Government Procurement,Government Procurement +413532,Government Procurement,Government Procurement +413511,Government Procurement,Government Procurement +413492,Government Procurement,Government Procurement +413477,Government Procurement,Government Procurement +413471,Government Procurement,Government Procurement +413463,Government Procurement,Government Procurement +413454,Government Procurement,Government Procurement +413451,Government Procurement,Government Procurement +413445,Government Procurement,Government Procurement +413442,Government Procurement,Government Procurement +413438,Government Procurement,Government Procurement +413429,Government Procurement,Government Procurement +413428,Government Procurement,Government Procurement +413426,Government Procurement,Government Procurement +407230,Government Procurement,Government Procurement +407229,Government Procurement,Government Procurement +388641,Government Procurement,Government Procurement +388640,Government Procurement,Government Procurement +388639,Government Procurement,Government Procurement +388638,Government Procurement,Government Procurement +388637,Government Procurement,Government Procurement +388636,Government Procurement,Government Procurement +388635,Government Procurement,Government Procurement +388634,Government Procurement,Government Procurement +388633,Government Procurement,Government Procurement +388632,Government Procurement,Government Procurement +388631,Government Procurement,Government Procurement +388629,Government Procurement,Government Procurement +388628,Government Procurement,Government Procurement +382075,Government Procurement,Government Procurement +368549,Government Procurement,Government Procurement +540197,Government Procurement,Government Procurement +540196,Government Procurement,Government Procurement +540195,Government Procurement,Government Procurement +538488,Government Procurement,Government Procurement +538486,Government Procurement,Government Procurement +538483,Government Procurement,Government Procurement +535733,Government Procurement,Government Procurement +535729,Government Procurement,Government Procurement +531881,Government Procurement,Government Procurement +531880,Government Procurement,Government Procurement +529534,Government Procurement,Government Procurement +529533,Government Procurement,Government Procurement +529532,Government Procurement,Government Procurement +529531,Government Procurement,Government Procurement +529529,Government Procurement,Government Procurement +529526,Government Procurement,Government Procurement +529524,Government Procurement,Government Procurement +529520,Government Procurement,Government Procurement +529513,Government Procurement,Government Procurement +511139,Government Procurement,Government Procurement +511133,Government Procurement,Government Procurement +511131,Government Procurement,Government Procurement +511123,Government Procurement,Government Procurement +511119,Government Procurement,Government Procurement +511117,Government Procurement,Government Procurement +511109,Government Procurement,Government Procurement +511104,Government Procurement,Government Procurement +508946,Government Procurement,Government Procurement +508944,Government Procurement,Government Procurement +508942,Government Procurement,Government Procurement +508938,Government Procurement,Government Procurement +508937,Government Procurement,Government Procurement +508932,Government Procurement,Government Procurement +505114,Government Procurement,Government Procurement +505103,Government Procurement,Government Procurement +505096,Government Procurement,Government Procurement +505089,Government Procurement,Government Procurement +505083,Government Procurement,Government Procurement +505079,Government Procurement,Government Procurement +502783,Government Procurement,Government Procurement +502775,Government Procurement,Government Procurement +499010,Government Procurement,Government Procurement +493431,Government Procurement,Government Procurement +493428,Government Procurement,Government Procurement +479933,Government Procurement,Government Procurement +479927,Government Procurement,Government Procurement +478229,Government Procurement,Government Procurement +473633,Government Procurement,Government Procurement +473629,Government Procurement,Government Procurement +473625,Government Procurement,Government Procurement +465427,Government Procurement,Government Procurement +464463,Government Procurement,Government Procurement +458680,Government Procurement,Government Procurement +457490,Government Procurement,Government Procurement +444994,Government Procurement,Government Procurement +439058,Government Procurement,Government Procurement +423878,Government Procurement,Government Procurement +423877,Government Procurement,Government Procurement +423864,Government Procurement,Government Procurement +423861,Government Procurement,Government Procurement +423857,Government Procurement,Government Procurement +413808,Government Procurement,Government Procurement +413806,Government Procurement,Government Procurement +413804,Government Procurement,Government Procurement +413801,Government Procurement,Government Procurement +413799,Government Procurement,Government Procurement +413797,Government Procurement,Government Procurement +413796,Government Procurement,Government Procurement +413795,Government Procurement,Government Procurement +413794,Government Procurement,Government Procurement +413793,Government Procurement,Government Procurement +413792,Government Procurement,Government Procurement +413790,Government Procurement,Government Procurement +413789,Government Procurement,Government Procurement +413788,Government Procurement,Government Procurement +413787,Government Procurement,Government Procurement +413785,Government Procurement,Government Procurement +413784,Government Procurement,Government Procurement +413783,Government Procurement,Government Procurement +413769,Government Procurement,Government Procurement +413767,Government Procurement,Government Procurement +413763,Government Procurement,Government Procurement +413724,Government Procurement,Government Procurement +413720,Government Procurement,Government Procurement +413717,Government Procurement,Government Procurement +413712,Government Procurement,Government Procurement +413708,Government Procurement,Government Procurement +413707,Government Procurement,Government Procurement +413704,Government Procurement,Government Procurement +413702,Government Procurement,Government Procurement +413699,Government Procurement,Government Procurement +413697,Government Procurement,Government Procurement +324959,Health,Health +324957,Health,Health +324962,Health,Health +273558,Industry,Industry +259508,Industry,Industry +259498,Industry,Industry +316150,Industry,Industry +433518,Industry,Industry +465427,Infrastructure,Infrastructure +464463,Infrastructure,Infrastructure +100479,Infrastructure,Infrastructure +129375,Infrastructure,Infrastructure +353603,Infrastructure,Infrastructure +338780,Infrastructure,Infrastructure +338779,Infrastructure,Infrastructure +338778,Infrastructure,Infrastructure +338775,Infrastructure,Infrastructure +338774,Infrastructure,Infrastructure +338724,Infrastructure,Infrastructure +338723,Infrastructure,Infrastructure +338722,Infrastructure,Infrastructure +338721,Infrastructure,Infrastructure +338717,Infrastructure,Infrastructure +338712,Infrastructure,Infrastructure +338711,Infrastructure,Infrastructure +338707,Infrastructure,Infrastructure +338705,Infrastructure,Infrastructure +338701,Infrastructure,Infrastructure +338696,Infrastructure,Infrastructure +338694,Infrastructure,Infrastructure +338693,Infrastructure,Infrastructure +338692,Infrastructure,Infrastructure +338690,Infrastructure,Infrastructure +338687,Infrastructure,Infrastructure +338684,Infrastructure,Infrastructure +338683,Infrastructure,Infrastructure +338681,Infrastructure,Infrastructure +338680,Infrastructure,Infrastructure +338677,Infrastructure,Infrastructure +338675,Infrastructure,Infrastructure +338674,Infrastructure,Infrastructure +338673,Infrastructure,Infrastructure +338671,Infrastructure,Infrastructure +338670,Infrastructure,Infrastructure +338668,Infrastructure,Infrastructure +338667,Infrastructure,Infrastructure +327253,Infrastructure,Infrastructure +327252,Infrastructure,Infrastructure +324962,Infrastructure,Infrastructure +324961,Infrastructure,Infrastructure +324959,Infrastructure,Infrastructure +324957,Infrastructure,Infrastructure +316149,Infrastructure,Infrastructure +290874,Infrastructure,Infrastructure +273554,Infrastructure,Infrastructure +273550,Infrastructure,Infrastructure +259515,Infrastructure,Infrastructure +259493,Infrastructure,Infrastructure +238129,Infrastructure,Infrastructure +236809,Infrastructure,Infrastructure +458681,Infrastructure,Infrastructure +458680,Infrastructure,Infrastructure +457490,Infrastructure,Infrastructure +444994,Infrastructure,Infrastructure +439058,Infrastructure,Infrastructure +413808,Infrastructure,Infrastructure +413806,Infrastructure,Infrastructure +413804,Infrastructure,Infrastructure +413801,Infrastructure,Infrastructure +413799,Infrastructure,Infrastructure +413797,Infrastructure,Infrastructure +413796,Infrastructure,Infrastructure +413795,Infrastructure,Infrastructure +413794,Infrastructure,Infrastructure +413793,Infrastructure,Infrastructure +413792,Infrastructure,Infrastructure +413790,Infrastructure,Infrastructure +413789,Infrastructure,Infrastructure +413788,Infrastructure,Infrastructure +413787,Infrastructure,Infrastructure +413785,Infrastructure,Infrastructure +413784,Infrastructure,Infrastructure +413783,Infrastructure,Infrastructure +413769,Infrastructure,Infrastructure +413767,Infrastructure,Infrastructure +413763,Infrastructure,Infrastructure +413724,Infrastructure,Infrastructure +413720,Infrastructure,Infrastructure +413717,Infrastructure,Infrastructure +413712,Infrastructure,Infrastructure +413708,Infrastructure,Infrastructure +413707,Infrastructure,Infrastructure +413704,Infrastructure,Infrastructure +413702,Infrastructure,Infrastructure +413699,Infrastructure,Infrastructure +413697,Infrastructure,Infrastructure +413695,Infrastructure,Infrastructure +413692,Infrastructure,Infrastructure +413691,Infrastructure,Infrastructure +413688,Infrastructure,Infrastructure +413684,Infrastructure,Infrastructure +413680,Infrastructure,Infrastructure +413669,Infrastructure,Infrastructure +413660,Infrastructure,Infrastructure +413592,Infrastructure,Infrastructure +413586,Infrastructure,Infrastructure +413576,Infrastructure,Infrastructure +413565,Infrastructure,Infrastructure +413532,Infrastructure,Infrastructure +413511,Infrastructure,Infrastructure +413492,Infrastructure,Infrastructure +413477,Infrastructure,Infrastructure +413471,Infrastructure,Infrastructure +413463,Infrastructure,Infrastructure +413454,Infrastructure,Infrastructure +413451,Infrastructure,Infrastructure +413445,Infrastructure,Infrastructure +413442,Infrastructure,Infrastructure +413438,Infrastructure,Infrastructure +413429,Infrastructure,Infrastructure +413428,Infrastructure,Infrastructure +413426,Infrastructure,Infrastructure +407230,Infrastructure,Infrastructure +407229,Infrastructure,Infrastructure +388639,Infrastructure,Infrastructure +388638,Infrastructure,Infrastructure +388637,Infrastructure,Infrastructure +388636,Infrastructure,Infrastructure +388635,Infrastructure,Infrastructure +382075,Infrastructure,Infrastructure +375872,Infrastructure,Infrastructure +540197,Infrastructure,Infrastructure +540196,Infrastructure,Infrastructure +540195,Infrastructure,Infrastructure +538488,Infrastructure,Infrastructure +538486,Infrastructure,Infrastructure +538483,Infrastructure,Infrastructure +535733,Infrastructure,Infrastructure +535729,Infrastructure,Infrastructure +531881,Infrastructure,Infrastructure +531880,Infrastructure,Infrastructure +529534,Infrastructure,Infrastructure +529533,Infrastructure,Infrastructure +529532,Infrastructure,Infrastructure +529531,Infrastructure,Infrastructure +529529,Infrastructure,Infrastructure +529526,Infrastructure,Infrastructure +529524,Infrastructure,Infrastructure +529520,Infrastructure,Infrastructure +529513,Infrastructure,Infrastructure +511139,Infrastructure,Infrastructure +511131,Infrastructure,Infrastructure +511123,Infrastructure,Infrastructure +511119,Infrastructure,Infrastructure +511117,Infrastructure,Infrastructure +511109,Infrastructure,Infrastructure +511104,Infrastructure,Infrastructure +508946,Infrastructure,Infrastructure +508944,Infrastructure,Infrastructure +508938,Infrastructure,Infrastructure +508937,Infrastructure,Infrastructure +508932,Infrastructure,Infrastructure +505111,Infrastructure,Infrastructure +505103,Infrastructure,Infrastructure +505096,Infrastructure,Infrastructure +505083,Infrastructure,Infrastructure +505079,Infrastructure,Infrastructure +502775,Infrastructure,Infrastructure +499015,Infrastructure,Infrastructure +499005,Infrastructure,Infrastructure +499003,Infrastructure,Infrastructure +493428,Infrastructure,Infrastructure +479933,Infrastructure,Infrastructure +478234,Infrastructure,Infrastructure +478232,Infrastructure,Infrastructure +478231,Infrastructure,Infrastructure +478230,Infrastructure,Infrastructure +478229,Infrastructure,Infrastructure +473633,Infrastructure,Infrastructure +473629,Infrastructure,Infrastructure +77172,International Relations,International Relations +264371,International Relations,International Relations +439062,International Trade,International Trade +433518,International Trade,International Trade +227159,International Trade,International Trade +194809,International Trade,International Trade +175548,International Trade,International Trade +316150,International Trade,International Trade +273552,International Trade,International Trade +259508,International Trade,International Trade +259498,International Trade,International Trade +413787,International Trade,International Trade +511133,International Trade,International Trade +511117,International Trade,International Trade +508942,International Trade,International Trade +505114,International Trade,International Trade +433518,Taxation and Finance,Taxation and Finance +432275,Taxation and Finance,Taxation and Finance +338724,Transportation,Transportation +338723,Transportation,Transportation +338722,Transportation,Transportation +338721,Transportation,Transportation +338717,Transportation,Transportation +338712,Transportation,Transportation +338711,Transportation,Transportation +338707,Transportation,Transportation +338705,Transportation,Transportation +338701,Transportation,Transportation +338696,Transportation,Transportation +338694,Transportation,Transportation +338693,Transportation,Transportation +338692,Transportation,Transportation +338690,Transportation,Transportation +338687,Transportation,Transportation +338684,Transportation,Transportation +338683,Transportation,Transportation +338681,Transportation,Transportation +338680,Transportation,Transportation +338677,Transportation,Transportation +338675,Transportation,Transportation +338674,Transportation,Transportation +338673,Transportation,Transportation +338671,Transportation,Transportation +338670,Transportation,Transportation +338668,Transportation,Transportation +327252,Transportation,Transportation +316149,Transportation,Transportation +273554,Transportation,Transportation +273550,Transportation,Transportation +264371,Transportation,Transportation +259515,Transportation,Transportation +259493,Transportation,Transportation +238129,Transportation,Transportation +175548,Transportation,Transportation +444994,Transportation,Transportation +413787,Transportation,Transportation +353603,Transportation,Transportation +338780,Transportation,Transportation +338779,Transportation,Transportation +338778,Transportation,Transportation +338775,Transportation,Transportation +89057,International Relations,International Relations +322373,Consumer Issues,Consumer Issues +322370,Consumer Issues,Consumer Issues +99658,Consumer Issues,Consumer Issues +86902,Consumer Issues,Consumer Issues +118723,Consumer Issues,Consumer Issues +118722,Consumer Issues,Consumer Issues +118721,Consumer Issues,Consumer Issues +118720,Consumer Issues,Consumer Issues +118719,Consumer Issues,Consumer Issues +118718,Consumer Issues,Consumer Issues +118717,Consumer Issues,Consumer Issues +188638,Consumer Issues,Consumer Issues +319796,Consumer Issues,Consumer Issues +319794,Consumer Issues,Consumer Issues +319792,Consumer Issues,Consumer Issues +266329,Consumer Issues,Consumer Issues +264632,Consumer Issues,Consumer Issues +264629,Consumer Issues,Consumer Issues +245929,Consumer Issues,Consumer Issues +425355,Consumer Issues,Consumer Issues +424202,Consumer Issues,Consumer Issues +424196,Consumer Issues,Consumer Issues +424192,Consumer Issues,Consumer Issues +424196,Energy,Energy +424192,Energy,Energy +518422,Energy,Energy +523345,Environment,Environment +520598,Environment,Environment +95775,Environment,Environment +91597,Environment,Environment +91596,Environment,Environment +91595,Environment,Environment +91594,Environment,Environment +86902,Environment,Environment +86901,Environment,Environment +86899,Environment,Environment +148603,Environment,Environment +147757,Environment,Environment +147752,Environment,Environment +142715,Environment,Environment +142714,Environment,Environment +99656,Environment,Environment +97958,Environment,Environment +97957,Environment,Environment +97956,Environment,Environment +97955,Environment,Environment +95777,Environment,Environment +95776,Environment,Environment +310773,Environment,Environment +298789,Environment,Environment +273449,Environment,Environment +266329,Environment,Environment +264629,Environment,Environment +252331,Environment,Environment +245909,Environment,Environment +235289,Environment,Environment +196827,Environment,Environment +188638,Environment,Environment +188636,Environment,Environment +188635,Environment,Environment +188634,Environment,Environment +392116,Environment,Environment +392115,Environment,Environment +392114,Environment,Environment +392112,Environment,Environment +392110,Environment,Environment +392109,Environment,Environment +392105,Environment,Environment +392104,Environment,Environment +392103,Environment,Environment +392102,Environment,Environment +392101,Environment,Environment +392099,Environment,Environment +389065,Environment,Environment +387788,Environment,Environment +387785,Environment,Environment +387784,Environment,Environment +387783,Environment,Environment +387779,Environment,Environment +382824,Environment,Environment +374988,Environment,Environment +374987,Environment,Environment +357658,Environment,Environment +349422,Environment,Environment +349419,Environment,Environment +349417,Environment,Environment +336115,Environment,Environment +336112,Environment,Environment +336109,Environment,Environment +335864,Environment,Environment +335863,Environment,Environment +335833,Environment,Environment +335823,Environment,Environment +330153,Environment,Environment +322373,Environment,Environment +322370,Environment,Environment +322369,Environment,Environment +319794,Environment,Environment +319791,Environment,Environment +310777,Environment,Environment +310776,Environment,Environment +310775,Environment,Environment +518676,Environment,Environment +518429,Environment,Environment +518427,Environment,Environment +518425,Environment,Environment +518424,Environment,Environment +518422,Environment,Environment +518417,Environment,Environment +518416,Environment,Environment +508127,Environment,Environment +504671,Environment,Environment +500777,Environment,Environment +497062,Environment,Environment +496999,Environment,Environment +496998,Environment,Environment +496997,Environment,Environment +489406,Environment,Environment +489299,Environment,Environment +483271,Environment,Environment +483270,Environment,Environment +469247,Environment,Environment +463961,Environment,Environment +463953,Environment,Environment +459049,Environment,Environment +459040,Environment,Environment +454651,Environment,Environment +454650,Environment,Environment +448714,Environment,Environment +448712,Environment,Environment +446357,Environment,Environment +443094,Environment,Environment +440803,Environment,Environment +440800,Environment,Environment +438944,Environment,Environment +438942,Environment,Environment +438725,Environment,Environment +438626,Environment,Environment +430312,Environment,Environment +430311,Environment,Environment +429953,Environment,Environment +425357,Environment,Environment +424202,Environment,Environment +424192,Environment,Environment +420409,Environment,Environment +418940,Environment,Environment +418934,Environment,Environment +413972,Environment,Environment +413970,Environment,Environment +413969,Environment,Environment +413965,Environment,Environment +413963,Environment,Environment +413962,Environment,Environment +413961,Environment,Environment +396437,Environment,Environment +542453,Environment,Environment +542452,Environment,Environment +542451,Environment,Environment +542071,Environment,Environment +542069,Environment,Environment +533429,Environment,Environment +530672,Environment,Environment +530671,Environment,Environment +530669,Environment,Environment +530668,Environment,Environment +530656,Environment,Environment +527110,Environment,Environment +526669,Environment,Environment +526667,Environment,Environment +526664,Environment,Environment +526658,Environment,Environment +483270,Industry,Industry +469247,Industry,Industry +99659,Industry,Industry +156467,Industry,Industry +156466,Industry,Industry +221769,Industry,Industry +196827,Industry,Industry +188639,Industry,Industry +188638,Industry,Industry +188637,Industry,Industry +188636,Industry,Industry +188635,Industry,Industry +188634,Industry,Industry +188633,Industry,Industry +167226,Industry,Industry +167225,Industry,Industry +167224,Industry,Industry +167223,Industry,Industry +167222,Industry,Industry +167221,Industry,Industry +167219,Industry,Industry +167218,Industry,Industry +167214,Industry,Industry +463961,Industry,Industry +463960,Industry,Industry +454651,Industry,Industry +454650,Industry,Industry +446357,Industry,Industry +440880,Industry,Industry +440800,Industry,Industry +438963,Industry,Industry +438944,Industry,Industry +438725,Industry,Industry +438626,Industry,Industry +429953,Industry,Industry +425357,Industry,Industry +424208,Industry,Industry +424206,Industry,Industry +424202,Industry,Industry +424196,Industry,Industry +424181,Industry,Industry +424172,Industry,Industry +418934,Industry,Industry +413968,Industry,Industry +413966,Industry,Industry +413965,Industry,Industry +413964,Industry,Industry +413963,Industry,Industry +413961,Industry,Industry +413960,Industry,Industry +407099,Industry,Industry +399441,Industry,Industry +399439,Industry,Industry +396429,Industry,Industry +396417,Industry,Industry +396414,Industry,Industry +396402,Industry,Industry +396398,Industry,Industry +392105,Industry,Industry +392104,Industry,Industry +392103,Industry,Industry +392102,Industry,Industry +392101,Industry,Industry +392099,Industry,Industry +389402,Industry,Industry +389395,Industry,Industry +389065,Industry,Industry +387788,Industry,Industry +387787,Industry,Industry +387784,Industry,Industry +387783,Industry,Industry +382823,Industry,Industry +374988,Industry,Industry +370342,Industry,Industry +370341,Industry,Industry +369423,Industry,Industry +369422,Industry,Industry +349441,Industry,Industry +349438,Industry,Industry +349422,Industry,Industry +335864,Industry,Industry +335863,Industry,Industry +335823,Industry,Industry +330158,Industry,Industry +330153,Industry,Industry +322373,Industry,Industry +322370,Industry,Industry +322369,Industry,Industry +319796,Industry,Industry +319794,Industry,Industry +319792,Industry,Industry +310776,Industry,Industry +310775,Industry,Industry +310773,Industry,Industry +274789,Industry,Industry +273462,Industry,Industry +273460,Industry,Industry +266329,Industry,Industry +264632,Industry,Industry +264629,Industry,Industry +252332,Industry,Industry +252329,Industry,Industry +245950,Industry,Industry +245949,Industry,Industry +221770,Industry,Industry +542453,Industry,Industry +542451,Industry,Industry +542071,Industry,Industry +542070,Industry,Industry +542069,Industry,Industry +533429,Industry,Industry +530672,Industry,Industry +530671,Industry,Industry +530669,Industry,Industry +530668,Industry,Industry +530656,Industry,Industry +527110,Industry,Industry +526669,Industry,Industry +526667,Industry,Industry +526664,Industry,Industry +526658,Industry,Industry +526657,Industry,Industry +523345,Industry,Industry +520598,Industry,Industry +518676,Industry,Industry +518425,Industry,Industry +518420,Industry,Industry +518417,Industry,Industry +518416,Industry,Industry +508127,Industry,Industry +506768,Industry,Industry +504673,Industry,Industry +504672,Industry,Industry +504671,Industry,Industry +500777,Industry,Industry +497062,Industry,Industry +496983,Industry,Industry +489406,Industry,Industry +425357,Infrastructure,Infrastructure +518422,Internal Trade,Internal Trade +425355,International Relations,International Relations +506769,International Trade,International Trade +506768,International Trade,International Trade +97954,International Trade,International Trade +245910,International Trade,International Trade +196827,International Trade,International Trade +192510,International Trade,International Trade +188639,International Trade,International Trade +188638,International Trade,International Trade +188637,International Trade,International Trade +188634,International Trade,International Trade +188633,International Trade,International Trade +156464,International Trade,International Trade +357659,International Trade,International Trade +349441,International Trade,International Trade +349438,International Trade,International Trade +349422,International Trade,International Trade +349417,International Trade,International Trade +336113,International Trade,International Trade +335860,International Trade,International Trade +330153,International Trade,International Trade +319796,International Trade,International Trade +319792,International Trade,International Trade +319791,International Trade,International Trade +319790,International Trade,International Trade +319789,International Trade,International Trade +310776,International Trade,International Trade +310774,International Trade,International Trade +274789,International Trade,International Trade +273462,International Trade,International Trade +273460,International Trade,International Trade +252332,International Trade,International Trade +443093,International Trade,International Trade +443092,International Trade,International Trade +440880,International Trade,International Trade +440803,International Trade,International Trade +440800,International Trade,International Trade +438963,International Trade,International Trade +438725,International Trade,International Trade +438626,International Trade,International Trade +430313,International Trade,International Trade +429953,International Trade,International Trade +425355,International Trade,International Trade +424208,International Trade,International Trade +424206,International Trade,International Trade +424202,International Trade,International Trade +424181,International Trade,International Trade +424172,International Trade,International Trade +418940,International Trade,International Trade +418936,International Trade,International Trade +413972,International Trade,International Trade +413971,International Trade,International Trade +413970,International Trade,International Trade +413968,International Trade,International Trade +413966,International Trade,International Trade +413964,International Trade,International Trade +413961,International Trade,International Trade +413960,International Trade,International Trade +407100,International Trade,International Trade +407097,International Trade,International Trade +407096,International Trade,International Trade +399440,International Trade,International Trade +396402,International Trade,International Trade +389396,International Trade,International Trade +389395,International Trade,International Trade +389065,International Trade,International Trade +387787,International Trade,International Trade +387784,International Trade,International Trade +374986,International Trade,International Trade +370341,International Trade,International Trade +369423,International Trade,International Trade +369422,International Trade,International Trade +542453,International Trade,International Trade +542452,International Trade,International Trade +542070,International Trade,International Trade +523345,International Trade,International Trade +518676,International Trade,International Trade +518436,International Trade,International Trade +518434,International Trade,International Trade +518433,International Trade,International Trade +518431,International Trade,International Trade +518425,International Trade,International Trade +518424,International Trade,International Trade +518419,International Trade,International Trade +518418,International Trade,International Trade +518417,International Trade,International Trade +533429,Taxation and Finance,Taxation and Finance +463950,Taxation and Finance,Taxation and Finance +156467,Taxation and Finance,Taxation and Finance +156466,Taxation and Finance,Taxation and Finance +420408,Transportation,Transportation +420407,Transportation,Transportation +99657,Transportation,Transportation +91598,Transportation,Transportation +188637,Transportation,Transportation +188636,Transportation,Transportation +188635,Transportation,Transportation +167226,Transportation,Transportation +167225,Transportation,Transportation +167224,Transportation,Transportation +167223,Transportation,Transportation +167222,Transportation,Transportation +167221,Transportation,Transportation +167219,Transportation,Transportation +167218,Transportation,Transportation +167214,Transportation,Transportation +148602,Transportation,Transportation +148601,Transportation,Transportation +147755,Transportation,Transportation +147754,Transportation,Transportation +370342,Transportation,Transportation +369422,Transportation,Transportation +349443,Transportation,Transportation +349440,Transportation,Transportation +349439,Transportation,Transportation +349438,Transportation,Transportation +336110,Transportation,Transportation +335860,Transportation,Transportation +331731,Transportation,Transportation +331730,Transportation,Transportation +330160,Transportation,Transportation +330158,Transportation,Transportation +326989,Transportation,Transportation +322370,Transportation,Transportation +319790,Transportation,Transportation +310772,Transportation,Transportation +273460,Transportation,Transportation +252330,Transportation,Transportation +252329,Transportation,Transportation +245949,Transportation,Transportation +221767,Transportation,Transportation +188639,Transportation,Transportation +188638,Transportation,Transportation +413970,Transportation,Transportation +396417,Transportation,Transportation +396414,Transportation,Transportation +392120,Transportation,Transportation +392115,Transportation,Transportation +392114,Transportation,Transportation +392112,Transportation,Transportation +392111,Transportation,Transportation +392108,Transportation,Transportation +392107,Transportation,Transportation +392105,Transportation,Transportation +392104,Transportation,Transportation +392103,Transportation,Transportation +392102,Transportation,Transportation +392101,Transportation,Transportation +392099,Transportation,Transportation +389402,Transportation,Transportation +389396,Transportation,Transportation +387788,Transportation,Transportation +387785,Transportation,Transportation +387779,Transportation,Transportation +374986,Transportation,Transportation +530669,Transportation,Transportation +530668,Transportation,Transportation +527110,Transportation,Transportation +518422,Transportation,Transportation +518420,Transportation,Transportation +463961,Transportation,Transportation +463960,Transportation,Transportation +463953,Transportation,Transportation +454651,Transportation,Transportation +454650,Transportation,Transportation +443094,Transportation,Transportation +443092,Transportation,Transportation +443091,Transportation,Transportation +440803,Transportation,Transportation +440800,Transportation,Transportation +424208,Transportation,Transportation +424206,Transportation,Transportation +424196,Transportation,Transportation +424192,Transportation,Transportation +424172,Transportation,Transportation +469492,Health,Health +382943,Health,Health +255590,Immigration,Immigration +255589,Immigration,Immigration +228831,Immigration,Immigration +228830,Immigration,Immigration +204987,Immigration,Immigration +350468,Immigration,Immigration +350467,Immigration,Immigration +350466,Immigration,Immigration +350465,Immigration,Immigration +350464,Immigration,Immigration +350461,Immigration,Immigration +350460,Immigration,Immigration +348595,Immigration,Immigration +338285,Immigration,Immigration +314269,Immigration,Immigration +313262,Immigration,Immigration +313260,Immigration,Immigration +458309,Industry,Industry +457727,Industry,Industry +314802,Industry,Industry +255591,Industry,Industry +231210,Industry,Industry +204989,Industry,Industry +167296,Industry,Industry +167295,Industry,Industry +384900,Industry,Industry +350468,Industry,Industry +350466,Industry,Industry +350464,Industry,Industry +350461,Industry,Industry +498650,Industry,Industry +495906,Industry,Industry +299690,International Trade,International Trade +457730,International Trade,International Trade +228453,International Trade,International Trade +228452,International Trade,International Trade +228451,International Trade,International Trade +228450,International Trade,International Trade +228449,International Trade,International Trade +204988,International Trade,International Trade +447665,International Trade,International Trade +350468,International Trade,International Trade +350467,International Trade,International Trade +350466,International Trade,International Trade +350465,International Trade,International Trade +350464,International Trade,International Trade +350461,International Trade,International Trade +350460,International Trade,International Trade +348601,International Trade,International Trade +348598,International Trade,International Trade +348596,International Trade,International Trade +348592,International Trade,International Trade +371273,Employment and Training,Employment and Training +371270,Employment and Training,Employment and Training +296732,Employment and Training,Employment and Training +436928,Employment and Training,Employment and Training +436927,Employment and Training,Employment and Training +436926,Employment and Training,Employment and Training +436925,Employment and Training,Employment and Training +436924,Employment and Training,Employment and Training +427589,Employment and Training,Employment and Training +427588,Employment and Training,Employment and Training +427587,Employment and Training,Employment and Training +427585,Employment and Training,Employment and Training +411397,Employment and Training,Employment and Training +411388,Employment and Training,Employment and Training +411385,Employment and Training,Employment and Training +371281,Employment and Training,Employment and Training +371279,Employment and Training,Employment and Training +427586,Immigration,Immigration +427589,Immigration,Immigration +371279,Industry,Industry +371276,Industry,Industry +371273,Industry,Industry +371270,Industry,Industry +348386,Industry,Industry +411397,Industry,Industry +411395,Industry,Industry +411388,Industry,Industry +411385,Industry,Industry +436928,Infrastructure,Infrastructure +436927,Infrastructure,Infrastructure +411395,Infrastructure,Infrastructure +411388,Infrastructure,Infrastructure +411385,Infrastructure,Infrastructure +400155,Infrastructure,Infrastructure +400152,Infrastructure,Infrastructure +400151,Infrastructure,Infrastructure +400146,Infrastructure,Infrastructure +400143,Infrastructure,Infrastructure +371281,Infrastructure,Infrastructure +371279,Infrastructure,Infrastructure +371276,Infrastructure,Infrastructure +371273,Infrastructure,Infrastructure +371270,Infrastructure,Infrastructure +436925,Intellectual Property,Intellectual Property +436924,Intellectual Property,Intellectual Property +371281,Intellectual Property,Intellectual Property +371279,Intellectual Property,Intellectual Property +371276,Intellectual Property,Intellectual Property +371273,Intellectual Property,Intellectual Property +371270,Intellectual Property,Intellectual Property +436928,Intellectual Property,Intellectual Property +436927,Intellectual Property,Intellectual Property +371273,Labour,Labour +371270,Labour,Labour +371281,Labour,Labour +371279,Labour,Labour +400152,Regional Development,Regional Development +400143,Regional Development,Regional Development +371281,Regional Development,Regional Development +371279,Regional Development,Regional Development +371276,Regional Development,Regional Development +371273,Regional Development,Regional Development +371270,Regional Development,Regional Development +427587,Small Business,Small Business +427586,Small Business,Small Business +371281,Small Business,Small Business +371279,Small Business,Small Business +371276,Small Business,Small Business +371273,Small Business,Small Business +371270,Small Business,Small Business +411397,Small Business,Small Business +411388,Small Business,Small Business +411385,Small Business,Small Business +400155,Small Business,Small Business +400152,Small Business,Small Business +436928,Small Business,Small Business +436927,Small Business,Small Business +436926,Small Business,Small Business +436925,Small Business,Small Business +436924,Small Business,Small Business +427589,Small Business,Small Business +411388,Taxation and Finance,Taxation and Finance +411385,Taxation and Finance,Taxation and Finance +371281,Taxation and Finance,Taxation and Finance +371279,Taxation and Finance,Taxation and Finance +371276,Taxation and Finance,Taxation and Finance +371273,Taxation and Finance,Taxation and Finance +371270,Taxation and Finance,Taxation and Finance +436928,Taxation and Finance,Taxation and Finance +436927,Taxation and Finance,Taxation and Finance +436926,Taxation and Finance,Taxation and Finance +436925,Taxation and Finance,Taxation and Finance +93164,Taxation and Finance,Taxation and Finance +93162,Taxation and Finance,Taxation and Finance +99277,Consumer Issues,Consumer Issues +99275,Consumer Issues,Consumer Issues +99274,Consumer Issues,Consumer Issues +95355,Consumer Issues,Consumer Issues +95354,Consumer Issues,Consumer Issues +109994,Consumer Issues,Consumer Issues +109746,Consumer Issues,Consumer Issues +99287,Consumer Issues,Consumer Issues +99286,Consumer Issues,Consumer Issues +99284,Consumer Issues,Consumer Issues +99283,Consumer Issues,Consumer Issues +99282,Consumer Issues,Consumer Issues +99281,Consumer Issues,Consumer Issues +99280,Consumer Issues,Consumer Issues +294109,Defence,Defence +272112,Defence,Defence +327317,Defence,Defence +327316,Defence,Defence +272112,Government Procurement,Government Procurement +327317,Government Procurement,Government Procurement +327316,Government Procurement,Government Procurement +324362,Industry,Industry +294109,Industry,Industry +327317,Industry,Industry +327316,International Trade,International Trade +324362,International Trade,International Trade +172584,Internal Trade,Internal Trade +165025,Internal Trade,Internal Trade +140516,Internal Trade,Internal Trade +140515,Internal Trade,Internal Trade +208048,Internal Trade,Internal Trade +192684,Internal Trade,Internal Trade +174090,Internal Trade,Internal Trade +384591,International Trade,International Trade +382855,International Trade,International Trade +101132,International Trade,International Trade +174088,International Trade,International Trade +172764,International Trade,International Trade +171144,International Trade,International Trade +165025,International Trade,International Trade +165024,International Trade,International Trade +146195,International Trade,International Trade +140494,International Trade,International Trade +358662,International Trade,International Trade +357139,International Trade,International Trade +352120,International Trade,International Trade +352119,International Trade,International Trade +352118,International Trade,International Trade +352117,International Trade,International Trade +352116,International Trade,International Trade +352115,International Trade,International Trade +352114,International Trade,International Trade +352113,International Trade,International Trade +352112,International Trade,International Trade +350523,International Trade,International Trade +348641,International Trade,International Trade +344560,International Trade,International Trade +344530,International Trade,International Trade +344529,International Trade,International Trade +344528,International Trade,International Trade +344527,International Trade,International Trade +329941,International Trade,International Trade +329939,International Trade,International Trade +328909,International Trade,International Trade +316891,International Trade,International Trade +269839,International Trade,International Trade +269837,International Trade,International Trade +252434,International Trade,International Trade +252433,International Trade,International Trade +223890,International Trade,International Trade +223889,International Trade,International Trade +223888,International Trade,International Trade +223887,International Trade,International Trade +222468,International Trade,International Trade +222467,International Trade,International Trade +220389,International Trade,International Trade +220387,International Trade,International Trade +208187,International Trade,International Trade +208167,International Trade,International Trade +208127,International Trade,International Trade +208087,International Trade,International Trade +207988,International Trade,International Trade +207987,International Trade,International Trade +207967,International Trade,International Trade +207947,International Trade,International Trade +207010,International Trade,International Trade +207009,International Trade,International Trade +207008,International Trade,International Trade +207007,International Trade,International Trade +205547,International Trade,International Trade +202877,International Trade,International Trade +202755,International Trade,International Trade +198487,International Trade,International Trade +192686,International Trade,International Trade +192685,International Trade,International Trade +174091,International Trade,International Trade +410446,International Trade,International Trade +407578,International Trade,International Trade +405941,International Trade,International Trade +402945,International Trade,International Trade +402939,International Trade,International Trade +397835,International Trade,International Trade +394078,International Trade,International Trade +394077,International Trade,International Trade +394076,International Trade,International Trade +394074,International Trade,International Trade +393849,International Trade,International Trade +393841,International Trade,International Trade +393838,International Trade,International Trade +392039,International Trade,International Trade +384594,International Trade,International Trade +384593,International Trade,International Trade +231210,Taxation and Finance,Taxation and Finance +505125,Taxation and Finance,Taxation and Finance +167296,Taxation and Finance,Taxation and Finance +167295,Taxation and Finance,Taxation and Finance +375399,Agriculture,Agriculture +413478,Agriculture,Agriculture +100565,Agriculture,Agriculture +92874,Agriculture,Agriculture +197329,Agriculture,Agriculture +161392,Agriculture,Agriculture +316574,Education,Education +460566,Education,Education +100562,Education,Education +100561,Education,Education +100553,Education,Education +135137,Education,Education +135136,Education,Education +100955,Education,Education +264312,Education,Education +238931,Education,Education +211068,Education,Education +211067,Education,Education +197344,Education,Education +197341,Education,Education +197340,Education,Education +197338,Education,Education +197337,Education,Education +197334,Education,Education +197330,Education,Education +197329,Education,Education +175112,Education,Education +167357,Education,Education +167356,Education,Education +167355,Education,Education +163349,Education,Education +162075,Education,Education +162073,Education,Education +162069,Education,Education +162068,Education,Education +162064,Education,Education +161394,Education,Education +161391,Education,Education +161390,Education,Education +413567,Education,Education +413551,Education,Education +413478,Education,Education +413466,Education,Education +413460,Education,Education +389076,Education,Education +389074,Education,Education +389073,Education,Education +389069,Education,Education +389068,Education,Education +379209,Education,Education +379206,Education,Education +378861,Education,Education +378860,Education,Education +378859,Education,Education +378858,Education,Education +378856,Education,Education +375400,Education,Education +375399,Education,Education +375398,Education,Education +375397,Education,Education +375396,Education,Education +375395,Education,Education +369136,Education,Education +369134,Education,Education +355029,Education,Education +355028,Education,Education +340508,Education,Education +336890,Education,Education +316580,Education,Education +316571,Employment and Training,Employment and Training +295369,Employment and Training,Employment and Training +197340,Employment and Training,Employment and Training +197334,Employment and Training,Employment and Training +197330,Employment and Training,Employment and Training +132440,Employment and Training,Employment and Training +100955,Employment and Training,Employment and Training +100562,Employment and Training,Employment and Training +389076,Employment and Training,Employment and Training +336890,Employment and Training,Employment and Training +320934,Employment and Training,Employment and Training +316580,Employment and Training,Employment and Training +316579,Employment and Training,Employment and Training +383355,Environment,Environment +383354,Environment,Environment +100560,Environment,Environment +100559,Environment,Environment +100553,Environment,Environment +93642,Environment,Environment +92876,Environment,Environment +92874,Environment,Environment +92709,Environment,Environment +92708,Environment,Environment +211068,Environment,Environment +197333,Environment,Environment +161386,Environment,Environment +135137,Environment,Environment +135136,Environment,Environment +132440,Environment,Environment +132438,Environment,Environment +100955,Environment,Environment +100564,Environment,Environment +100563,Environment,Environment +197334,Health,Health +229669,Health,Health +100950,Health,Health +413488,Industry,Industry +461747,Industry,Industry +161387,Industry,Industry +375398,Infrastructure,Infrastructure +375396,Infrastructure,Infrastructure +100955,Infrastructure,Infrastructure +100565,Infrastructure,Infrastructure +100564,Infrastructure,Infrastructure +100563,Infrastructure,Infrastructure +100561,Infrastructure,Infrastructure +100560,Infrastructure,Infrastructure +375395,Infrastructure,Infrastructure +316575,Infrastructure,Infrastructure +316573,Infrastructure,Infrastructure +161385,Infrastructure,Infrastructure +161384,Infrastructure,Infrastructure +320934,Regional Development,Regional Development +413608,Regional Development,Regional Development +100563,Regional Development,Regional Development +100561,Regional Development,Regional Development +100560,Regional Development,Regional Development +100559,Regional Development,Regional Development +100557,Regional Development,Regional Development +100553,Regional Development,Regional Development +100550,Regional Development,Regional Development +93642,Regional Development,Regional Development +92876,Regional Development,Regional Development +92709,Regional Development,Regional Development +264312,Regional Development,Regional Development +162075,Regional Development,Regional Development +161394,Regional Development,Regional Development +161387,Regional Development,Regional Development +159088,Regional Development,Regional Development +159086,Regional Development,Regional Development +132440,Regional Development,Regional Development +132438,Regional Development,Regional Development +124775,Regional Development,Regional Development +100565,Regional Development,Regional Development +100564,Regional Development,Regional Development +389074,Regional Development,Regional Development +389073,Regional Development,Regional Development +389071,Regional Development,Regional Development +389069,Regional Development,Regional Development +389068,Regional Development,Regional Development +379209,Regional Development,Regional Development +375398,Regional Development,Regional Development +132440,Other,Information and Communication Technology +132438,Other,Information and Communication Technology +100557,Other,Information and Communication Technology +186009,Health,Health +186008,Health,Health +101774,Health,Health +82774,Health,Health +78475,Health,Health +78474,Health,Health +160614,Health,Health +138314,Health,Health +499502,Industry,Industry +499497,Industry,Industry +185965,Industry,Industry +168662,Industry,Industry +164054,Industry,Industry +154923,Industry,Industry +291009,Industry,Industry +286933,Industry,Industry +286931,Industry,Industry +286929,Industry,Industry +282110,Industry,Industry +282089,Industry,Industry +282069,Industry,Industry +282030,Industry,Industry +282012,Industry,Industry +282010,Industry,Industry +277588,Industry,Industry +277587,Industry,Industry +277586,Industry,Industry +277585,Industry,Industry +277584,Industry,Industry +277583,Industry,Industry +277577,Industry,Industry +277575,Industry,Industry +202516,Industry,Industry +194782,Industry,Industry +189653,Industry,Industry +336040,Industry,Industry +336039,Industry,Industry +333362,Industry,Industry +333360,Industry,Industry +333359,Industry,Industry +333358,Industry,Industry +333357,Industry,Industry +333354,Industry,Industry +333352,Industry,Industry +333351,Industry,Industry +331663,Industry,Industry +331662,Industry,Industry +331661,Industry,Industry +330140,Industry,Industry +330139,Industry,Industry +330039,Industry,Industry +330037,Industry,Industry +327286,Industry,Industry +326957,Industry,Industry +326956,Industry,Industry +326955,Industry,Industry +326954,Industry,Industry +326953,Industry,Industry +326952,Industry,Industry +326951,Industry,Industry +326950,Industry,Industry +326949,Industry,Industry +324549,Industry,Industry +324548,Industry,Industry +324545,Industry,Industry +322228,Industry,Industry +322227,Industry,Industry +322197,Industry,Industry +322195,Industry,Industry +322192,Industry,Industry +322189,Industry,Industry +319140,Industry,Industry +319138,Industry,Industry +319133,Industry,Industry +315986,Industry,Industry +315980,Industry,Industry +315975,Industry,Industry +315973,Industry,Industry +310418,Industry,Industry +310410,Industry,Industry +310405,Industry,Industry +310398,Industry,Industry +310394,Industry,Industry +310386,Industry,Industry +310379,Industry,Industry +310373,Industry,Industry +310362,Industry,Industry +303812,Industry,Industry +303811,Industry,Industry +303810,Industry,Industry +303809,Industry,Industry +296429,Industry,Industry +291012,Industry,Industry +291011,Industry,Industry +383516,Industry,Industry +383515,Industry,Industry +383511,Industry,Industry +383509,Industry,Industry +383508,Industry,Industry +383507,Industry,Industry +383506,Industry,Industry +383504,Industry,Industry +383496,Industry,Industry +383493,Industry,Industry +383492,Industry,Industry +383489,Industry,Industry +382195,Industry,Industry +382174,Industry,Industry +381473,Industry,Industry +381385,Industry,Industry +381153,Industry,Industry +381152,Industry,Industry +379989,Industry,Industry +379988,Industry,Industry +379986,Industry,Industry +379984,Industry,Industry +379982,Industry,Industry +374087,Industry,Industry +369580,Industry,Industry +369578,Industry,Industry +369577,Industry,Industry +369575,Industry,Industry +369285,Industry,Industry +369284,Industry,Industry +369283,Industry,Industry +369282,Industry,Industry +365322,Industry,Industry +363714,Industry,Industry +363713,Industry,Industry +363712,Industry,Industry +362245,Industry,Industry +362244,Industry,Industry +362243,Industry,Industry +362242,Industry,Industry +362185,Industry,Industry +362183,Industry,Industry +361161,Industry,Industry +361160,Industry,Industry +361159,Industry,Industry +359842,Industry,Industry +359841,Industry,Industry +359840,Industry,Industry +359839,Industry,Industry +359838,Industry,Industry +359837,Industry,Industry +359835,Industry,Industry +358146,Industry,Industry +357991,Industry,Industry +357989,Industry,Industry +357987,Industry,Industry +355981,Industry,Industry +355979,Industry,Industry +355976,Industry,Industry +355973,Industry,Industry +355972,Industry,Industry +355970,Industry,Industry +354027,Industry,Industry +354026,Industry,Industry +354024,Industry,Industry +354023,Industry,Industry +354021,Industry,Industry +351335,Industry,Industry +351331,Industry,Industry +351329,Industry,Industry +351328,Industry,Industry +351315,Industry,Industry +351307,Industry,Industry +349346,Industry,Industry +349345,Industry,Industry +349344,Industry,Industry +349341,Industry,Industry +349340,Industry,Industry +347149,Industry,Industry +347146,Industry,Industry +347134,Industry,Industry +343802,Industry,Industry +343799,Industry,Industry +341320,Industry,Industry +341316,Industry,Industry +341309,Industry,Industry +341305,Industry,Industry +338814,Industry,Industry +338813,Industry,Industry +338812,Industry,Industry +338811,Industry,Industry +338810,Industry,Industry +338809,Industry,Industry +338808,Industry,Industry +495555,Industry,Industry +495543,Industry,Industry +495537,Industry,Industry +493045,Industry,Industry +493038,Industry,Industry +487624,Industry,Industry +487623,Industry,Industry +487621,Industry,Industry +487616,Industry,Industry +487612,Industry,Industry +487610,Industry,Industry +487601,Industry,Industry +487600,Industry,Industry +487599,Industry,Industry +487587,Industry,Industry +485235,Industry,Industry +485219,Industry,Industry +485218,Industry,Industry +485217,Industry,Industry +485216,Industry,Industry +485213,Industry,Industry +485211,Industry,Industry +485210,Industry,Industry +482444,Industry,Industry +481994,Industry,Industry +480125,Industry,Industry +479748,Industry,Industry +479746,Industry,Industry +478376,Industry,Industry +478374,Industry,Industry +478372,Industry,Industry +478028,Industry,Industry +475120,Industry,Industry +473719,Industry,Industry +473715,Industry,Industry +473712,Industry,Industry +473706,Industry,Industry +471231,Industry,Industry +471228,Industry,Industry +471227,Industry,Industry +471226,Industry,Industry +471222,Industry,Industry +471221,Industry,Industry +471220,Industry,Industry +471217,Industry,Industry +471215,Industry,Industry +466801,Industry,Industry +464273,Industry,Industry +464271,Industry,Industry +462459,Industry,Industry +461802,Industry,Industry +461800,Industry,Industry +461798,Industry,Industry +461797,Industry,Industry +461796,Industry,Industry +460662,Industry,Industry +460660,Industry,Industry +460659,Industry,Industry +460658,Industry,Industry +460654,Industry,Industry +460653,Industry,Industry +460652,Industry,Industry +459614,Industry,Industry +459612,Industry,Industry +459609,Industry,Industry +457218,Industry,Industry +457216,Industry,Industry +457215,Industry,Industry +455660,Industry,Industry +455659,Industry,Industry +455657,Industry,Industry +455655,Industry,Industry +455652,Industry,Industry +452838,Industry,Industry +452831,Industry,Industry +452269,Industry,Industry +449780,Industry,Industry +449779,Industry,Industry +449773,Industry,Industry +449772,Industry,Industry +447613,Industry,Industry +447612,Industry,Industry +447611,Industry,Industry +447610,Industry,Industry +447609,Industry,Industry +447608,Industry,Industry +447607,Industry,Industry +447606,Industry,Industry +447605,Industry,Industry +447604,Industry,Industry +447603,Industry,Industry +445006,Industry,Industry +445005,Industry,Industry +445004,Industry,Industry +445003,Industry,Industry +445002,Industry,Industry +445001,Industry,Industry +445000,Industry,Industry +444999,Industry,Industry +444998,Industry,Industry +444997,Industry,Industry +420153,Industry,Industry +420151,Industry,Industry +420145,Industry,Industry +420141,Industry,Industry +409956,Industry,Industry +409955,Industry,Industry +409954,Industry,Industry +409953,Industry,Industry +409952,Industry,Industry +409951,Industry,Industry +409949,Industry,Industry +409948,Industry,Industry +406818,Industry,Industry +406809,Industry,Industry +403890,Industry,Industry +403884,Industry,Industry +403880,Industry,Industry +403876,Industry,Industry +403866,Industry,Industry +400180,Industry,Industry +400178,Industry,Industry +400177,Industry,Industry +398956,Industry,Industry +398953,Industry,Industry +398951,Industry,Industry +398926,Industry,Industry +398916,Industry,Industry +398912,Industry,Industry +398906,Industry,Industry +396002,Industry,Industry +395974,Industry,Industry +395910,Industry,Industry +395767,Industry,Industry +395766,Industry,Industry +395765,Industry,Industry +394080,Industry,Industry +394071,Industry,Industry +394069,Industry,Industry +394067,Industry,Industry +394042,Industry,Industry +394040,Industry,Industry +394038,Industry,Industry +394027,Industry,Industry +394022,Industry,Industry +394018,Industry,Industry +394017,Industry,Industry +394015,Industry,Industry +393993,Industry,Industry +392133,Industry,Industry +390451,Industry,Industry +390449,Industry,Industry +390448,Industry,Industry +390447,Industry,Industry +390446,Industry,Industry +390445,Industry,Industry +388106,Industry,Industry +388105,Industry,Industry +388101,Industry,Industry +384998,Industry,Industry +384996,Industry,Industry +384995,Industry,Industry +384994,Industry,Industry +383520,Industry,Industry +543442,Industry,Industry +541882,Industry,Industry +541877,Industry,Industry +541875,Industry,Industry +539767,Industry,Industry +539765,Industry,Industry +539763,Industry,Industry +539758,Industry,Industry +539754,Industry,Industry +539753,Industry,Industry +539750,Industry,Industry +539736,Industry,Industry +539732,Industry,Industry +536778,Industry,Industry +536777,Industry,Industry +536774,Industry,Industry +536770,Industry,Industry +536762,Industry,Industry +536760,Industry,Industry +536759,Industry,Industry +536758,Industry,Industry +536757,Industry,Industry +534817,Industry,Industry +534815,Industry,Industry +534813,Industry,Industry +534811,Industry,Industry +534807,Industry,Industry +534805,Industry,Industry +534803,Industry,Industry +534801,Industry,Industry +534798,Industry,Industry +534310,Industry,Industry +534273,Industry,Industry +531199,Industry,Industry +531198,Industry,Industry +527918,Industry,Industry +527917,Industry,Industry +527916,Industry,Industry +527915,Industry,Industry +527914,Industry,Industry +527912,Industry,Industry +525186,Industry,Industry +525184,Industry,Industry +525183,Industry,Industry +525180,Industry,Industry +525177,Industry,Industry +519988,Industry,Industry +519987,Industry,Industry +519982,Industry,Industry +519981,Industry,Industry +519980,Industry,Industry +519977,Industry,Industry +519973,Industry,Industry +519972,Industry,Industry +519969,Industry,Industry +519959,Industry,Industry +518208,Industry,Industry +518207,Industry,Industry +515873,Industry,Industry +515872,Industry,Industry +515870,Industry,Industry +514794,Industry,Industry +514793,Industry,Industry +514792,Industry,Industry +514791,Industry,Industry +514790,Industry,Industry +514253,Industry,Industry +514252,Industry,Industry +514251,Industry,Industry +512696,Industry,Industry +512695,Industry,Industry +512694,Industry,Industry +512693,Industry,Industry +512692,Industry,Industry +511251,Industry,Industry +511250,Industry,Industry +511248,Industry,Industry +511246,Industry,Industry +511245,Industry,Industry +511243,Industry,Industry +511242,Industry,Industry +511241,Industry,Industry +511240,Industry,Industry +511237,Industry,Industry +508912,Industry,Industry +508910,Industry,Industry +508907,Industry,Industry +508906,Industry,Industry +508904,Industry,Industry +508902,Industry,Industry +508899,Industry,Industry +505088,Industry,Industry +505084,Industry,Industry +502670,Industry,Industry +502667,Industry,Industry +502664,Industry,Industry +502660,Industry,Industry +502657,Industry,Industry +502652,Industry,Industry +499546,Industry,Industry +499542,Industry,Industry +499540,Industry,Industry +499539,Industry,Industry +499530,Industry,Industry +499528,Industry,Industry +499525,Industry,Industry +499522,Industry,Industry +499517,Industry,Industry +499510,Industry,Industry +460653,International Relations,International Relations +460652,International Relations,International Relations +185965,International Relations,International Relations +436144,International Relations,International Relations +436143,International Relations,International Relations +324547,International Relations,International Relations +310418,International Relations,International Relations +310405,International Relations,International Relations +310398,International Relations,International Relations +534817,International Relations,International Relations +534813,International Relations,International Relations +534811,International Relations,International Relations +531199,International Relations,International Relations +525180,International Relations,International Relations +519987,International Relations,International Relations +519981,International Relations,International Relations +519977,International Relations,International Relations +515873,International Relations,International Relations +515872,International Relations,International Relations +511251,International Relations,International Relations +511250,International Relations,International Relations +511237,International Relations,International Relations +502670,International Relations,International Relations +502657,International Relations,International Relations +495534,International Relations,International Relations +475120,International Relations,International Relations +473719,International Relations,International Relations +473715,International Relations,International Relations +473712,International Relations,International Relations +473706,International Relations,International Relations +461802,International Relations,International Relations +461800,International Relations,International Relations +461797,International Relations,International Relations +460662,International Relations,International Relations +460660,International Relations,International Relations +460659,International Relations,International Relations +460658,International Relations,International Relations +442072,Transportation,Transportation +442070,Transportation,Transportation +164054,Transportation,Transportation +162588,Transportation,Transportation +162586,Transportation,Transportation +159773,Transportation,Transportation +152292,Transportation,Transportation +152260,Transportation,Transportation +135984,Transportation,Transportation +296429,Transportation,Transportation +291011,Transportation,Transportation +291009,Transportation,Transportation +286933,Transportation,Transportation +286931,Transportation,Transportation +286929,Transportation,Transportation +282110,Transportation,Transportation +282089,Transportation,Transportation +282069,Transportation,Transportation +282030,Transportation,Transportation +282012,Transportation,Transportation +282010,Transportation,Transportation +277588,Transportation,Transportation +277587,Transportation,Transportation +277586,Transportation,Transportation +277585,Transportation,Transportation +277584,Transportation,Transportation +277583,Transportation,Transportation +277577,Transportation,Transportation +277575,Transportation,Transportation +202516,Transportation,Transportation +194782,Transportation,Transportation +189653,Transportation,Transportation +359835,Transportation,Transportation +355981,Transportation,Transportation +355979,Transportation,Transportation +354027,Transportation,Transportation +354026,Transportation,Transportation +354024,Transportation,Transportation +354023,Transportation,Transportation +354021,Transportation,Transportation +351335,Transportation,Transportation +351331,Transportation,Transportation +351329,Transportation,Transportation +351328,Transportation,Transportation +351315,Transportation,Transportation +351307,Transportation,Transportation +349348,Transportation,Transportation +349347,Transportation,Transportation +349346,Transportation,Transportation +349345,Transportation,Transportation +349344,Transportation,Transportation +349341,Transportation,Transportation +349340,Transportation,Transportation +349283,Transportation,Transportation +347146,Transportation,Transportation +347134,Transportation,Transportation +338811,Transportation,Transportation +333354,Transportation,Transportation +333352,Transportation,Transportation +333351,Transportation,Transportation +331663,Transportation,Transportation +331662,Transportation,Transportation +326950,Transportation,Transportation +324549,Transportation,Transportation +324548,Transportation,Transportation +324547,Transportation,Transportation +324545,Transportation,Transportation +322228,Transportation,Transportation +322227,Transportation,Transportation +322197,Transportation,Transportation +322195,Transportation,Transportation +322192,Transportation,Transportation +319140,Transportation,Transportation +319138,Transportation,Transportation +319133,Transportation,Transportation +315986,Transportation,Transportation +315975,Transportation,Transportation +310418,Transportation,Transportation +310405,Transportation,Transportation +310398,Transportation,Transportation +310394,Transportation,Transportation +310386,Transportation,Transportation +310379,Transportation,Transportation +310373,Transportation,Transportation +310362,Transportation,Transportation +303812,Transportation,Transportation +303811,Transportation,Transportation +303810,Transportation,Transportation +303809,Transportation,Transportation +438467,Transportation,Transportation +438461,Transportation,Transportation +436144,Transportation,Transportation +436143,Transportation,Transportation +436142,Transportation,Transportation +434981,Transportation,Transportation +433781,Transportation,Transportation +433780,Transportation,Transportation +433777,Transportation,Transportation +433774,Transportation,Transportation +433772,Transportation,Transportation +433769,Transportation,Transportation +432213,Transportation,Transportation +431291,Transportation,Transportation +431290,Transportation,Transportation +431289,Transportation,Transportation +431287,Transportation,Transportation +431283,Transportation,Transportation +430960,Transportation,Transportation +429428,Transportation,Transportation +429426,Transportation,Transportation +429422,Transportation,Transportation +429421,Transportation,Transportation +429420,Transportation,Transportation +428884,Transportation,Transportation +425993,Transportation,Transportation +425759,Transportation,Transportation +425758,Transportation,Transportation +425757,Transportation,Transportation +423679,Transportation,Transportation +423670,Transportation,Transportation +423669,Transportation,Transportation +423668,Transportation,Transportation +423666,Transportation,Transportation +423665,Transportation,Transportation +421724,Transportation,Transportation +421723,Transportation,Transportation +421722,Transportation,Transportation +421721,Transportation,Transportation +421719,Transportation,Transportation +421718,Transportation,Transportation +421717,Transportation,Transportation +420153,Transportation,Transportation +420151,Transportation,Transportation +420145,Transportation,Transportation +420141,Transportation,Transportation +416946,Transportation,Transportation +416945,Transportation,Transportation +416943,Transportation,Transportation +416942,Transportation,Transportation +416938,Transportation,Transportation +416931,Transportation,Transportation +416928,Transportation,Transportation +416926,Transportation,Transportation +416924,Transportation,Transportation +416922,Transportation,Transportation +416879,Transportation,Transportation +416875,Transportation,Transportation +409956,Transportation,Transportation +409955,Transportation,Transportation +409954,Transportation,Transportation +409953,Transportation,Transportation +409952,Transportation,Transportation +409951,Transportation,Transportation +409949,Transportation,Transportation +409948,Transportation,Transportation +406831,Transportation,Transportation +406830,Transportation,Transportation +406829,Transportation,Transportation +406827,Transportation,Transportation +406825,Transportation,Transportation +406822,Transportation,Transportation +406819,Transportation,Transportation +406818,Transportation,Transportation +406809,Transportation,Transportation +403866,Transportation,Transportation +400180,Transportation,Transportation +400178,Transportation,Transportation +400177,Transportation,Transportation +398956,Transportation,Transportation +398953,Transportation,Transportation +398951,Transportation,Transportation +398926,Transportation,Transportation +398916,Transportation,Transportation +398912,Transportation,Transportation +395910,Transportation,Transportation +395767,Transportation,Transportation +395766,Transportation,Transportation +394040,Transportation,Transportation +394027,Transportation,Transportation +394022,Transportation,Transportation +394018,Transportation,Transportation +392133,Transportation,Transportation +388106,Transportation,Transportation +388105,Transportation,Transportation +388101,Transportation,Transportation +383496,Transportation,Transportation +374087,Transportation,Transportation +543442,Transportation,Transportation +541882,Transportation,Transportation +541877,Transportation,Transportation +541875,Transportation,Transportation +539767,Transportation,Transportation +539765,Transportation,Transportation +539763,Transportation,Transportation +539758,Transportation,Transportation +539754,Transportation,Transportation +539753,Transportation,Transportation +539750,Transportation,Transportation +539745,Transportation,Transportation +539736,Transportation,Transportation +539732,Transportation,Transportation +536778,Transportation,Transportation +536777,Transportation,Transportation +536774,Transportation,Transportation +536770,Transportation,Transportation +536765,Transportation,Transportation +536762,Transportation,Transportation +536760,Transportation,Transportation +536759,Transportation,Transportation +536758,Transportation,Transportation +536757,Transportation,Transportation +534817,Transportation,Transportation +534815,Transportation,Transportation +534813,Transportation,Transportation +534811,Transportation,Transportation +534805,Transportation,Transportation +534801,Transportation,Transportation +534798,Transportation,Transportation +534321,Transportation,Transportation +534269,Transportation,Transportation +534227,Transportation,Transportation +534216,Transportation,Transportation +534193,Transportation,Transportation +525186,Transportation,Transportation +525184,Transportation,Transportation +525183,Transportation,Transportation +525180,Transportation,Transportation +518208,Transportation,Transportation +518207,Transportation,Transportation +515873,Transportation,Transportation +515872,Transportation,Transportation +514790,Transportation,Transportation +511246,Transportation,Transportation +511245,Transportation,Transportation +511243,Transportation,Transportation +511241,Transportation,Transportation +508907,Transportation,Transportation +508902,Transportation,Transportation +493038,Transportation,Transportation +466801,Transportation,Transportation +464273,Transportation,Transportation +461802,Transportation,Transportation +461796,Transportation,Transportation +460654,Transportation,Transportation +459614,Transportation,Transportation +459612,Transportation,Transportation +459609,Transportation,Transportation +457218,Transportation,Transportation +457216,Transportation,Transportation +457215,Transportation,Transportation +455660,Transportation,Transportation +455659,Transportation,Transportation +455657,Transportation,Transportation +455655,Transportation,Transportation +455652,Transportation,Transportation +452838,Transportation,Transportation +452831,Transportation,Transportation +452269,Transportation,Transportation +449780,Transportation,Transportation +449779,Transportation,Transportation +449773,Transportation,Transportation +449772,Transportation,Transportation +449771,Transportation,Transportation +447613,Transportation,Transportation +447612,Transportation,Transportation +447611,Transportation,Transportation +447610,Transportation,Transportation +447609,Transportation,Transportation +447608,Transportation,Transportation +447607,Transportation,Transportation +447606,Transportation,Transportation +447605,Transportation,Transportation +447604,Transportation,Transportation +447603,Transportation,Transportation +445006,Transportation,Transportation +445005,Transportation,Transportation +445004,Transportation,Transportation +445003,Transportation,Transportation +445002,Transportation,Transportation +445001,Transportation,Transportation +445000,Transportation,Transportation +444999,Transportation,Transportation +444998,Transportation,Transportation +444997,Transportation,Transportation +444996,Transportation,Transportation +442078,Transportation,Transportation +442077,Transportation,Transportation +442075,Transportation,Transportation +442074,Transportation,Transportation +246036,Energy,Energy +245201,Energy,Energy +103575,Energy,Energy +103574,Energy,Energy +383284,Consumer Issues,Consumer Issues +383274,Consumer Issues,Consumer Issues +383297,Consumer Issues,Consumer Issues +383295,Consumer Issues,Consumer Issues +383294,Consumer Issues,Consumer Issues +383292,Consumer Issues,Consumer Issues +383290,Consumer Issues,Consumer Issues +383289,Consumer Issues,Consumer Issues +383288,Consumer Issues,Consumer Issues +383287,Consumer Issues,Consumer Issues +383284,Health,Health +383274,Health,Health +383297,Health,Health +383295,Health,Health +383294,Health,Health +383292,Health,Health +383290,Health,Health +383289,Health,Health +383288,Health,Health +383287,Health,Health +383286,Health,Health +530343,International Trade,International Trade +530342,International Trade,International Trade +98595,International Trade,International Trade +98594,International Trade,International Trade +132355,International Trade,International Trade +415059,International Trade,International Trade +408779,International Trade,International Trade +408776,International Trade,International Trade +408775,International Trade,International Trade +408774,International Trade,International Trade +408770,International Trade,International Trade +408129,International Trade,International Trade +408124,International Trade,International Trade +407219,International Trade,International Trade +405946,International Trade,International Trade +405945,International Trade,International Trade +405944,International Trade,International Trade +405943,International Trade,International Trade +400373,International Trade,International Trade +400372,International Trade,International Trade +394830,International Trade,International Trade +385303,International Trade,International Trade +385302,International Trade,International Trade +385300,International Trade,International Trade +383301,International Trade,International Trade +506596,International Trade,International Trade +506593,International Trade,International Trade +506592,International Trade,International Trade +500492,International Trade,International Trade +500491,International Trade,International Trade +500490,International Trade,International Trade +494663,International Trade,International Trade +494657,International Trade,International Trade +490309,International Trade,International Trade +489517,International Trade,International Trade +489513,International Trade,International Trade +489511,International Trade,International Trade +485559,International Trade,International Trade +485558,International Trade,International Trade +474392,International Trade,International Trade +474391,International Trade,International Trade +474390,International Trade,International Trade +468175,International Trade,International Trade +464963,International Trade,International Trade +464947,International Trade,International Trade +462016,International Trade,International Trade +459976,International Trade,International Trade +457210,International Trade,International Trade +456658,International Trade,International Trade +456657,International Trade,International Trade +445877,International Trade,International Trade +445876,International Trade,International Trade +445875,International Trade,International Trade +445874,International Trade,International Trade +434146,International Trade,International Trade +434145,International Trade,International Trade +430588,International Trade,International Trade +430587,International Trade,International Trade +421734,International Trade,International Trade +421733,International Trade,International Trade +419978,International Trade,International Trade +419975,International Trade,International Trade +419974,International Trade,International Trade +419972,International Trade,International Trade +419970,International Trade,International Trade +419968,International Trade,International Trade +419967,International Trade,International Trade +419965,International Trade,International Trade +418532,International Trade,International Trade +418531,International Trade,International Trade +418530,International Trade,International Trade +418529,International Trade,International Trade +418528,International Trade,International Trade +415251,International Trade,International Trade +415082,International Trade,International Trade +415081,International Trade,International Trade +415079,International Trade,International Trade +415078,International Trade,International Trade +415073,International Trade,International Trade +415072,International Trade,International Trade +415069,International Trade,International Trade +415068,International Trade,International Trade +415067,International Trade,International Trade +415064,International Trade,International Trade +540311,International Trade,International Trade +530348,International Trade,International Trade +160274,Energy,Energy +160273,Energy,Energy +96600,Energy,Energy +86916,Energy,Energy +160147,Energy,Energy +158886,Energy,Energy +158829,Energy,Energy +158828,Energy,Energy +158505,Energy,Energy +157799,Energy,Energy +157798,Energy,Energy +157797,Energy,Energy +157795,Energy,Energy +157794,Energy,Energy +157793,Energy,Energy +156122,Energy,Energy +155988,Energy,Energy +155986,Energy,Energy +155386,Energy,Energy +149699,Energy,Energy +149698,Energy,Energy +144097,Energy,Energy +195486,Energy,Energy +195400,Energy,Energy +192527,Energy,Energy +192526,Energy,Energy +192525,Energy,Energy +188134,Energy,Energy +188133,Energy,Energy +188132,Energy,Energy +188131,Energy,Energy +187565,Energy,Energy +187564,Energy,Energy +182704,Energy,Energy +174887,Energy,Energy +173964,Energy,Energy +172864,Energy,Energy +167757,Energy,Energy +167756,Energy,Energy +167755,Energy,Energy +167045,Energy,Energy +166427,Energy,Energy +166426,Energy,Energy +166425,Energy,Energy +165159,Energy,Energy +165158,Energy,Energy +165157,Energy,Energy +164846,Energy,Energy +164845,Energy,Energy +164844,Energy,Energy +164675,Energy,Energy +164627,Energy,Energy +163124,Energy,Energy +162806,Energy,Energy +162804,Energy,Energy +161238,Energy,Energy +161237,Energy,Energy +161236,Energy,Energy +160803,Energy,Energy +160308,Energy,Energy +165157,Environment,Environment +164846,Environment,Environment +86916,Environment,Environment +164845,Environment,Environment +164844,Environment,Environment +164675,Environment,Environment +164627,Environment,Environment +163124,Environment,Environment +162806,Environment,Environment +162804,Environment,Environment +161238,Environment,Environment +161237,Environment,Environment +161236,Environment,Environment +160803,Environment,Environment +160308,Environment,Environment +160275,Environment,Environment +160274,Environment,Environment +160273,Environment,Environment +160147,Environment,Environment +158886,Environment,Environment +158829,Environment,Environment +158828,Environment,Environment +158505,Environment,Environment +157799,Environment,Environment +157798,Environment,Environment +157797,Environment,Environment +157795,Environment,Environment +157794,Environment,Environment +157793,Environment,Environment +156122,Environment,Environment +155988,Environment,Environment +155986,Environment,Environment +195486,Environment,Environment +195400,Environment,Environment +192527,Environment,Environment +192526,Environment,Environment +192525,Environment,Environment +188134,Environment,Environment +188133,Environment,Environment +188132,Environment,Environment +188131,Environment,Environment +187565,Environment,Environment +182704,Environment,Environment +174887,Environment,Environment +173964,Environment,Environment +172864,Environment,Environment +167757,Environment,Environment +167756,Environment,Environment +167755,Environment,Environment +167045,Environment,Environment +166427,Environment,Environment +166426,Environment,Environment +166425,Environment,Environment +165159,Environment,Environment +155986,Transportation,Transportation +155386,Transportation,Transportation +86916,Transportation,Transportation +149699,Transportation,Transportation +195486,Transportation,Transportation +195400,Transportation,Transportation +192527,Transportation,Transportation +192526,Transportation,Transportation +192525,Transportation,Transportation +188134,Transportation,Transportation +188133,Transportation,Transportation +188132,Transportation,Transportation +188131,Transportation,Transportation +187565,Transportation,Transportation +187564,Transportation,Transportation +182704,Transportation,Transportation +174887,Transportation,Transportation +173964,Transportation,Transportation +172864,Transportation,Transportation +167757,Transportation,Transportation +167756,Transportation,Transportation +167755,Transportation,Transportation +167045,Transportation,Transportation +166427,Transportation,Transportation +166426,Transportation,Transportation +166425,Transportation,Transportation +165159,Transportation,Transportation +165158,Transportation,Transportation +165157,Transportation,Transportation +164846,Transportation,Transportation +164845,Transportation,Transportation +164844,Transportation,Transportation +164675,Transportation,Transportation +164627,Transportation,Transportation +163124,Transportation,Transportation +162806,Transportation,Transportation +162804,Transportation,Transportation +161238,Transportation,Transportation +161237,Transportation,Transportation +161236,Transportation,Transportation +160803,Transportation,Transportation +160308,Transportation,Transportation +160275,Transportation,Transportation +160274,Transportation,Transportation +160273,Transportation,Transportation +160147,Transportation,Transportation +158886,Transportation,Transportation +158829,Transportation,Transportation +158828,Transportation,Transportation +158505,Transportation,Transportation +157799,Transportation,Transportation +157798,Transportation,Transportation +157797,Transportation,Transportation +157795,Transportation,Transportation +157794,Transportation,Transportation +157793,Transportation,Transportation +156122,Transportation,Transportation +81814,Government Procurement,Government Procurement +226677,Consumer Issues,Consumer Issues +226675,Consumer Issues,Consumer Issues +191372,Consumer Issues,Consumer Issues +191366,Consumer Issues,Consumer Issues +191365,Consumer Issues,Consumer Issues +226680,Consumer Issues,Consumer Issues +226679,Consumer Issues,Consumer Issues +402910,Financial Institutions,Financial Institutions +402909,Financial Institutions,Financial Institutions +76384,Financial Institutions,Financial Institutions +165532,Financial Institutions,Financial Institutions +165531,Financial Institutions,Financial Institutions +165530,Financial Institutions,Financial Institutions +165146,Financial Institutions,Financial Institutions +165145,Financial Institutions,Financial Institutions +165144,Financial Institutions,Financial Institutions +164586,Financial Institutions,Financial Institutions +164585,Financial Institutions,Financial Institutions +163815,Financial Institutions,Financial Institutions +163812,Financial Institutions,Financial Institutions +242750,Financial Institutions,Financial Institutions +242749,Financial Institutions,Financial Institutions +239810,Financial Institutions,Financial Institutions +226680,Financial Institutions,Financial Institutions +226679,Financial Institutions,Financial Institutions +226678,Financial Institutions,Financial Institutions +226677,Financial Institutions,Financial Institutions +226675,Financial Institutions,Financial Institutions +206390,Financial Institutions,Financial Institutions +191372,Financial Institutions,Financial Institutions +191366,Financial Institutions,Financial Institutions +191365,Financial Institutions,Financial Institutions +172664,Financial Institutions,Financial Institutions +402907,Financial Institutions,Financial Institutions +325186,Financial Institutions,Financial Institutions +306690,Financial Institutions,Financial Institutions +306689,Financial Institutions,Financial Institutions +261013,Financial Institutions,Financial Institutions +261012,Financial Institutions,Financial Institutions +261011,Financial Institutions,Financial Institutions +261010,Financial Institutions,Financial Institutions +472778,Infrastructure,Infrastructure +472773,Infrastructure,Infrastructure +120758,Infrastructure,Infrastructure +120754,Infrastructure,Infrastructure +472332,Infrastructure,Infrastructure +472327,Infrastructure,Infrastructure +472326,Infrastructure,Infrastructure +472322,Infrastructure,Infrastructure +471001,Infrastructure,Infrastructure +470279,Infrastructure,Infrastructure +470263,Infrastructure,Infrastructure +457584,Infrastructure,Infrastructure +455509,Infrastructure,Infrastructure +452535,Infrastructure,Infrastructure +447835,Infrastructure,Infrastructure +447825,Infrastructure,Infrastructure +447786,Infrastructure,Infrastructure +417461,Infrastructure,Infrastructure +400552,Infrastructure,Infrastructure +544111,Infrastructure,Infrastructure +544110,Infrastructure,Infrastructure +525172,Infrastructure,Infrastructure +522049,Infrastructure,Infrastructure +514089,Infrastructure,Infrastructure +512681,Infrastructure,Infrastructure +475605,Infrastructure,Infrastructure +475596,Infrastructure,Infrastructure +475594,Infrastructure,Infrastructure +475593,Infrastructure,Infrastructure +475592,Infrastructure,Infrastructure +475590,Infrastructure,Infrastructure +475588,Infrastructure,Infrastructure +474969,Infrastructure,Infrastructure +474961,Infrastructure,Infrastructure +472787,Infrastructure,Infrastructure +447816,International Relations,International Relations +519792,International Trade,International Trade +472332,International Trade,International Trade +425096,Tourism,Tourism +538365,Tourism,Tourism +150174,Tourism,Tourism +113297,Tourism,Tourism +184784,Tourism,Tourism +356307,Tourism,Tourism +472332,Tourism,Tourism +459676,Tourism,Tourism +459675,Tourism,Tourism +459674,Tourism,Tourism +459673,Tourism,Tourism +457685,Tourism,Tourism +457587,Tourism,Tourism +457584,Tourism,Tourism +455509,Tourism,Tourism +452535,Tourism,Tourism +447806,Tourism,Tourism +447786,Tourism,Tourism +400574,Transportation,Transportation +400572,Transportation,Transportation +75499,Transportation,Transportation +75498,Transportation,Transportation +128538,Transportation,Transportation +120758,Transportation,Transportation +120754,Transportation,Transportation +159332,Transportation,Transportation +159330,Transportation,Transportation +159328,Transportation,Transportation +159326,Transportation,Transportation +159321,Transportation,Transportation +159319,Transportation,Transportation +159314,Transportation,Transportation +156671,Transportation,Transportation +154554,Transportation,Transportation +154550,Transportation,Transportation +154548,Transportation,Transportation +154547,Transportation,Transportation +152069,Transportation,Transportation +152068,Transportation,Transportation +150174,Transportation,Transportation +150168,Transportation,Transportation +150164,Transportation,Transportation +150162,Transportation,Transportation +150159,Transportation,Transportation +147922,Transportation,Transportation +147920,Transportation,Transportation +145824,Transportation,Transportation +145823,Transportation,Transportation +142375,Transportation,Transportation +135236,Transportation,Transportation +135235,Transportation,Transportation +135234,Transportation,Transportation +128540,Transportation,Transportation +233297,Transportation,Transportation +233296,Transportation,Transportation +233295,Transportation,Transportation +233294,Transportation,Transportation +233293,Transportation,Transportation +230190,Transportation,Transportation +230189,Transportation,Transportation +226455,Transportation,Transportation +226454,Transportation,Transportation +226453,Transportation,Transportation +223082,Transportation,Transportation +223080,Transportation,Transportation +223078,Transportation,Transportation +223076,Transportation,Transportation +223075,Transportation,Transportation +223072,Transportation,Transportation +223071,Transportation,Transportation +223070,Transportation,Transportation +223069,Transportation,Transportation +216548,Transportation,Transportation +216547,Transportation,Transportation +211490,Transportation,Transportation +211489,Transportation,Transportation +211488,Transportation,Transportation +211487,Transportation,Transportation +206993,Transportation,Transportation +206992,Transportation,Transportation +206991,Transportation,Transportation +206990,Transportation,Transportation +206989,Transportation,Transportation +206988,Transportation,Transportation +206987,Transportation,Transportation +202917,Transportation,Transportation +202916,Transportation,Transportation +202915,Transportation,Transportation +202912,Transportation,Transportation +202908,Transportation,Transportation +202907,Transportation,Transportation +200044,Transportation,Transportation +200042,Transportation,Transportation +200038,Transportation,Transportation +200035,Transportation,Transportation +200032,Transportation,Transportation +200030,Transportation,Transportation +200029,Transportation,Transportation +194003,Transportation,Transportation +194002,Transportation,Transportation +194001,Transportation,Transportation +194000,Transportation,Transportation +193999,Transportation,Transportation +193998,Transportation,Transportation +193997,Transportation,Transportation +193996,Transportation,Transportation +193994,Transportation,Transportation +193993,Transportation,Transportation +193992,Transportation,Transportation +189034,Transportation,Transportation +189032,Transportation,Transportation +189030,Transportation,Transportation +189029,Transportation,Transportation +189028,Transportation,Transportation +189027,Transportation,Transportation +189026,Transportation,Transportation +189025,Transportation,Transportation +189024,Transportation,Transportation +189023,Transportation,Transportation +189022,Transportation,Transportation +189021,Transportation,Transportation +189020,Transportation,Transportation +189019,Transportation,Transportation +189007,Transportation,Transportation +184784,Transportation,Transportation +184764,Transportation,Transportation +184746,Transportation,Transportation +184745,Transportation,Transportation +184744,Transportation,Transportation +184704,Transportation,Transportation +184684,Transportation,Transportation +184664,Transportation,Transportation +184644,Transportation,Transportation +180371,Transportation,Transportation +180370,Transportation,Transportation +180369,Transportation,Transportation +180368,Transportation,Transportation +180367,Transportation,Transportation +180366,Transportation,Transportation +175306,Transportation,Transportation +175305,Transportation,Transportation +171826,Transportation,Transportation +171825,Transportation,Transportation +170588,Transportation,Transportation +170586,Transportation,Transportation +167372,Transportation,Transportation +167371,Transportation,Transportation +167370,Transportation,Transportation +167367,Transportation,Transportation +165725,Transportation,Transportation +165724,Transportation,Transportation +161831,Transportation,Transportation +161830,Transportation,Transportation +161828,Transportation,Transportation +161827,Transportation,Transportation +161826,Transportation,Transportation +161825,Transportation,Transportation +400569,Transportation,Transportation +400559,Transportation,Transportation +400556,Transportation,Transportation +400555,Transportation,Transportation +400554,Transportation,Transportation +400552,Transportation,Transportation +398756,Transportation,Transportation +398753,Transportation,Transportation +398743,Transportation,Transportation +398739,Transportation,Transportation +398738,Transportation,Transportation +398737,Transportation,Transportation +398734,Transportation,Transportation +396775,Transportation,Transportation +396773,Transportation,Transportation +394415,Transportation,Transportation +394413,Transportation,Transportation +392835,Transportation,Transportation +392834,Transportation,Transportation +391707,Transportation,Transportation +391702,Transportation,Transportation +391699,Transportation,Transportation +387999,Transportation,Transportation +387997,Transportation,Transportation +387992,Transportation,Transportation +387254,Transportation,Transportation +387253,Transportation,Transportation +387251,Transportation,Transportation +385896,Transportation,Transportation +385384,Transportation,Transportation +385380,Transportation,Transportation +385379,Transportation,Transportation +385374,Transportation,Transportation +383701,Transportation,Transportation +383699,Transportation,Transportation +383694,Transportation,Transportation +382711,Transportation,Transportation +382710,Transportation,Transportation +382709,Transportation,Transportation +382708,Transportation,Transportation +382707,Transportation,Transportation +382706,Transportation,Transportation +382705,Transportation,Transportation +382704,Transportation,Transportation +382703,Transportation,Transportation +380067,Transportation,Transportation +379889,Transportation,Transportation +379885,Transportation,Transportation +379884,Transportation,Transportation +377367,Transportation,Transportation +377365,Transportation,Transportation +377359,Transportation,Transportation +374900,Transportation,Transportation +374898,Transportation,Transportation +374896,Transportation,Transportation +374887,Transportation,Transportation +372358,Transportation,Transportation +372356,Transportation,Transportation +372355,Transportation,Transportation +369510,Transportation,Transportation +369508,Transportation,Transportation +369501,Transportation,Transportation +369500,Transportation,Transportation +369499,Transportation,Transportation +369498,Transportation,Transportation +369497,Transportation,Transportation +369496,Transportation,Transportation +369495,Transportation,Transportation +369493,Transportation,Transportation +366873,Transportation,Transportation +366872,Transportation,Transportation +366871,Transportation,Transportation +366869,Transportation,Transportation +366868,Transportation,Transportation +366867,Transportation,Transportation +366866,Transportation,Transportation +366865,Transportation,Transportation +366864,Transportation,Transportation +366863,Transportation,Transportation +359697,Transportation,Transportation +359695,Transportation,Transportation +359694,Transportation,Transportation +359693,Transportation,Transportation +358360,Transportation,Transportation +358359,Transportation,Transportation +358357,Transportation,Transportation +358355,Transportation,Transportation +358353,Transportation,Transportation +358352,Transportation,Transportation +356308,Transportation,Transportation +356307,Transportation,Transportation +356304,Transportation,Transportation +354160,Transportation,Transportation +354156,Transportation,Transportation +351054,Transportation,Transportation +351050,Transportation,Transportation +351049,Transportation,Transportation +351048,Transportation,Transportation +351046,Transportation,Transportation +349253,Transportation,Transportation +349141,Transportation,Transportation +349140,Transportation,Transportation +349135,Transportation,Transportation +349133,Transportation,Transportation +347161,Transportation,Transportation +347157,Transportation,Transportation +347156,Transportation,Transportation +343633,Transportation,Transportation +343631,Transportation,Transportation +337521,Transportation,Transportation +337519,Transportation,Transportation +337518,Transportation,Transportation +337517,Transportation,Transportation +337515,Transportation,Transportation +337514,Transportation,Transportation +335967,Transportation,Transportation +333332,Transportation,Transportation +333331,Transportation,Transportation +333330,Transportation,Transportation +331436,Transportation,Transportation +331435,Transportation,Transportation +331434,Transportation,Transportation +331433,Transportation,Transportation +331432,Transportation,Transportation +331431,Transportation,Transportation +331430,Transportation,Transportation +331429,Transportation,Transportation +329979,Transportation,Transportation +327130,Transportation,Transportation +327119,Transportation,Transportation +327118,Transportation,Transportation +327117,Transportation,Transportation +327116,Transportation,Transportation +327115,Transportation,Transportation +327114,Transportation,Transportation +324276,Transportation,Transportation +324274,Transportation,Transportation +324273,Transportation,Transportation +324272,Transportation,Transportation +324270,Transportation,Transportation +321849,Transportation,Transportation +319075,Transportation,Transportation +319074,Transportation,Transportation +315812,Transportation,Transportation +315811,Transportation,Transportation +315810,Transportation,Transportation +315809,Transportation,Transportation +312779,Transportation,Transportation +310179,Transportation,Transportation +310178,Transportation,Transportation +310177,Transportation,Transportation +310176,Transportation,Transportation +303213,Transportation,Transportation +303210,Transportation,Transportation +303209,Transportation,Transportation +303190,Transportation,Transportation +303171,Transportation,Transportation +303169,Transportation,Transportation +296167,Transportation,Transportation +296165,Transportation,Transportation +289591,Transportation,Transportation +285190,Transportation,Transportation +285189,Transportation,Transportation +281004,Transportation,Transportation +281002,Transportation,Transportation +281000,Transportation,Transportation +280997,Transportation,Transportation +280996,Transportation,Transportation +280994,Transportation,Transportation +280993,Transportation,Transportation +280992,Transportation,Transportation +280990,Transportation,Transportation +280989,Transportation,Transportation +276970,Transportation,Transportation +273149,Transportation,Transportation +273148,Transportation,Transportation +273145,Transportation,Transportation +273143,Transportation,Transportation +267273,Transportation,Transportation +267272,Transportation,Transportation +267271,Transportation,Transportation +267270,Transportation,Transportation +263852,Transportation,Transportation +263851,Transportation,Transportation +263850,Transportation,Transportation +263849,Transportation,Transportation +258949,Transportation,Transportation +253909,Transportation,Transportation +253893,Transportation,Transportation +253892,Transportation,Transportation +250597,Transportation,Transportation +250596,Transportation,Transportation +244874,Transportation,Transportation +244872,Transportation,Transportation +244871,Transportation,Transportation +244870,Transportation,Transportation +240338,Transportation,Transportation +240337,Transportation,Transportation +235850,Transportation,Transportation +235849,Transportation,Transportation +544112,Transportation,Transportation +544111,Transportation,Transportation +543518,Transportation,Transportation +543516,Transportation,Transportation +543506,Transportation,Transportation +543503,Transportation,Transportation +541986,Transportation,Transportation +541966,Transportation,Transportation +541965,Transportation,Transportation +541964,Transportation,Transportation +541957,Transportation,Transportation +541923,Transportation,Transportation +541921,Transportation,Transportation +540179,Transportation,Transportation +540171,Transportation,Transportation +540162,Transportation,Transportation +540152,Transportation,Transportation +540150,Transportation,Transportation +540149,Transportation,Transportation +540146,Transportation,Transportation +538416,Transportation,Transportation +538412,Transportation,Transportation +538410,Transportation,Transportation +538407,Transportation,Transportation +538406,Transportation,Transportation +538400,Transportation,Transportation +538397,Transportation,Transportation +538394,Transportation,Transportation +538389,Transportation,Transportation +538387,Transportation,Transportation +538378,Transportation,Transportation +538371,Transportation,Transportation +538369,Transportation,Transportation +538367,Transportation,Transportation +538365,Transportation,Transportation +538362,Transportation,Transportation +538358,Transportation,Transportation +538354,Transportation,Transportation +535625,Transportation,Transportation +535620,Transportation,Transportation +535617,Transportation,Transportation +535616,Transportation,Transportation +535610,Transportation,Transportation +535606,Transportation,Transportation +535598,Transportation,Transportation +535591,Transportation,Transportation +535586,Transportation,Transportation +535583,Transportation,Transportation +535581,Transportation,Transportation +535544,Transportation,Transportation +531667,Transportation,Transportation +531666,Transportation,Transportation +531665,Transportation,Transportation +531664,Transportation,Transportation +531663,Transportation,Transportation +531662,Transportation,Transportation +531657,Transportation,Transportation +531652,Transportation,Transportation +529342,Transportation,Transportation +529341,Transportation,Transportation +529338,Transportation,Transportation +529336,Transportation,Transportation +529335,Transportation,Transportation +529333,Transportation,Transportation +528637,Transportation,Transportation +528627,Transportation,Transportation +528614,Transportation,Transportation +526537,Transportation,Transportation +526536,Transportation,Transportation +525189,Transportation,Transportation +525187,Transportation,Transportation +525172,Transportation,Transportation +525170,Transportation,Transportation +523604,Transportation,Transportation +523591,Transportation,Transportation +523210,Transportation,Transportation +523209,Transportation,Transportation +522050,Transportation,Transportation +522032,Transportation,Transportation +522030,Transportation,Transportation +522016,Transportation,Transportation +522015,Transportation,Transportation +522011,Transportation,Transportation +521979,Transportation,Transportation +521969,Transportation,Transportation +521890,Transportation,Transportation +519812,Transportation,Transportation +519807,Transportation,Transportation +519800,Transportation,Transportation +519796,Transportation,Transportation +519792,Transportation,Transportation +519785,Transportation,Transportation +519584,Transportation,Transportation +519582,Transportation,Transportation +519580,Transportation,Transportation +519578,Transportation,Transportation +519561,Transportation,Transportation +519543,Transportation,Transportation +518152,Transportation,Transportation +518145,Transportation,Transportation +518141,Transportation,Transportation +517711,Transportation,Transportation +517706,Transportation,Transportation +517617,Transportation,Transportation +516988,Transportation,Transportation +516023,Transportation,Transportation +516022,Transportation,Transportation +515813,Transportation,Transportation +515499,Transportation,Transportation +515492,Transportation,Transportation +515319,Transportation,Transportation +515318,Transportation,Transportation +515201,Transportation,Transportation +515200,Transportation,Transportation +514804,Transportation,Transportation +514803,Transportation,Transportation +514802,Transportation,Transportation +514801,Transportation,Transportation +514800,Transportation,Transportation +514112,Transportation,Transportation +514111,Transportation,Transportation +514106,Transportation,Transportation +514105,Transportation,Transportation +514095,Transportation,Transportation +514086,Transportation,Transportation +512682,Transportation,Transportation +512429,Transportation,Transportation +512428,Transportation,Transportation +512426,Transportation,Transportation +512425,Transportation,Transportation +512423,Transportation,Transportation +512422,Transportation,Transportation +512421,Transportation,Transportation +512419,Transportation,Transportation +512417,Transportation,Transportation +510637,Transportation,Transportation +510634,Transportation,Transportation +510632,Transportation,Transportation +510631,Transportation,Transportation +510629,Transportation,Transportation +510628,Transportation,Transportation +510623,Transportation,Transportation +510620,Transportation,Transportation +510616,Transportation,Transportation +510610,Transportation,Transportation +508034,Transportation,Transportation +508024,Transportation,Transportation +508014,Transportation,Transportation +508002,Transportation,Transportation +507996,Transportation,Transportation +504852,Transportation,Transportation +504849,Transportation,Transportation +504847,Transportation,Transportation +504840,Transportation,Transportation +504839,Transportation,Transportation +504838,Transportation,Transportation +504823,Transportation,Transportation +504820,Transportation,Transportation +504818,Transportation,Transportation +504810,Transportation,Transportation +504805,Transportation,Transportation +504798,Transportation,Transportation +504796,Transportation,Transportation +504794,Transportation,Transportation +504786,Transportation,Transportation +504778,Transportation,Transportation +504771,Transportation,Transportation +502473,Transportation,Transportation +502464,Transportation,Transportation +502457,Transportation,Transportation +502455,Transportation,Transportation +502452,Transportation,Transportation +502447,Transportation,Transportation +502444,Transportation,Transportation +502437,Transportation,Transportation +502430,Transportation,Transportation +502428,Transportation,Transportation +502419,Transportation,Transportation +502415,Transportation,Transportation +502393,Transportation,Transportation +502389,Transportation,Transportation +502385,Transportation,Transportation +502382,Transportation,Transportation +502378,Transportation,Transportation +502376,Transportation,Transportation +502374,Transportation,Transportation +502369,Transportation,Transportation +500062,Transportation,Transportation +498222,Transportation,Transportation +498221,Transportation,Transportation +498218,Transportation,Transportation +498217,Transportation,Transportation +498216,Transportation,Transportation +498215,Transportation,Transportation +498214,Transportation,Transportation +498209,Transportation,Transportation +495265,Transportation,Transportation +495262,Transportation,Transportation +495260,Transportation,Transportation +495257,Transportation,Transportation +495255,Transportation,Transportation +495254,Transportation,Transportation +495249,Transportation,Transportation +495247,Transportation,Transportation +495246,Transportation,Transportation +495244,Transportation,Transportation +495242,Transportation,Transportation +495238,Transportation,Transportation +495232,Transportation,Transportation +495231,Transportation,Transportation +495229,Transportation,Transportation +495225,Transportation,Transportation +495220,Transportation,Transportation +495219,Transportation,Transportation +495216,Transportation,Transportation +495214,Transportation,Transportation +495211,Transportation,Transportation +492906,Transportation,Transportation +492903,Transportation,Transportation +492902,Transportation,Transportation +492901,Transportation,Transportation +492900,Transportation,Transportation +492897,Transportation,Transportation +492896,Transportation,Transportation +492893,Transportation,Transportation +492890,Transportation,Transportation +492888,Transportation,Transportation +492887,Transportation,Transportation +492885,Transportation,Transportation +490630,Transportation,Transportation +490623,Transportation,Transportation +490621,Transportation,Transportation +490619,Transportation,Transportation +490616,Transportation,Transportation +490611,Transportation,Transportation +490603,Transportation,Transportation +490597,Transportation,Transportation +490577,Transportation,Transportation +490571,Transportation,Transportation +490568,Transportation,Transportation +490563,Transportation,Transportation +490552,Transportation,Transportation +490550,Transportation,Transportation +490542,Transportation,Transportation +487442,Transportation,Transportation +487436,Transportation,Transportation +487419,Transportation,Transportation +487148,Transportation,Transportation +487147,Transportation,Transportation +487146,Transportation,Transportation +487143,Transportation,Transportation +487141,Transportation,Transportation +487136,Transportation,Transportation +487131,Transportation,Transportation +487116,Transportation,Transportation +487109,Transportation,Transportation +485343,Transportation,Transportation +485123,Transportation,Transportation +485113,Transportation,Transportation +485109,Transportation,Transportation +485058,Transportation,Transportation +485053,Transportation,Transportation +485045,Transportation,Transportation +485042,Transportation,Transportation +485029,Transportation,Transportation +481802,Transportation,Transportation +481801,Transportation,Transportation +481799,Transportation,Transportation +481798,Transportation,Transportation +481797,Transportation,Transportation +481794,Transportation,Transportation +481787,Transportation,Transportation +480461,Transportation,Transportation +479705,Transportation,Transportation +477744,Transportation,Transportation +477742,Transportation,Transportation +475605,Transportation,Transportation +475596,Transportation,Transportation +475594,Transportation,Transportation +475593,Transportation,Transportation +475592,Transportation,Transportation +475590,Transportation,Transportation +475588,Transportation,Transportation +474969,Transportation,Transportation +474961,Transportation,Transportation +472790,Transportation,Transportation +472787,Transportation,Transportation +472781,Transportation,Transportation +472778,Transportation,Transportation +472773,Transportation,Transportation +472332,Transportation,Transportation +472330,Transportation,Transportation +472327,Transportation,Transportation +472326,Transportation,Transportation +472322,Transportation,Transportation +472320,Transportation,Transportation +471001,Transportation,Transportation +470999,Transportation,Transportation +470279,Transportation,Transportation +470278,Transportation,Transportation +470274,Transportation,Transportation +470269,Transportation,Transportation +470255,Transportation,Transportation +467343,Transportation,Transportation +465324,Transportation,Transportation +461923,Transportation,Transportation +461851,Transportation,Transportation +459673,Transportation,Transportation +457686,Transportation,Transportation +457685,Transportation,Transportation +457683,Transportation,Transportation +457676,Transportation,Transportation +457674,Transportation,Transportation +457672,Transportation,Transportation +457589,Transportation,Transportation +457587,Transportation,Transportation +457584,Transportation,Transportation +455509,Transportation,Transportation +452585,Transportation,Transportation +452582,Transportation,Transportation +452540,Transportation,Transportation +452535,Transportation,Transportation +447837,Transportation,Transportation +447835,Transportation,Transportation +447831,Transportation,Transportation +447828,Transportation,Transportation +447825,Transportation,Transportation +447822,Transportation,Transportation +447820,Transportation,Transportation +447818,Transportation,Transportation +447812,Transportation,Transportation +447806,Transportation,Transportation +447799,Transportation,Transportation +447796,Transportation,Transportation +447786,Transportation,Transportation +443900,Transportation,Transportation +443649,Transportation,Transportation +440942,Transportation,Transportation +440748,Transportation,Transportation +440723,Transportation,Transportation +440722,Transportation,Transportation +438511,Transportation,Transportation +438122,Transportation,Transportation +438111,Transportation,Transportation +437528,Transportation,Transportation +437515,Transportation,Transportation +435297,Transportation,Transportation +435263,Transportation,Transportation +433553,Transportation,Transportation +433552,Transportation,Transportation +433549,Transportation,Transportation +433547,Transportation,Transportation +432073,Transportation,Transportation +432072,Transportation,Transportation +432071,Transportation,Transportation +432070,Transportation,Transportation +429327,Transportation,Transportation +429325,Transportation,Transportation +429321,Transportation,Transportation +426714,Transportation,Transportation +426709,Transportation,Transportation +426704,Transportation,Transportation +426702,Transportation,Transportation +426699,Transportation,Transportation +426693,Transportation,Transportation +426691,Transportation,Transportation +426689,Transportation,Transportation +424129,Transportation,Transportation +424111,Transportation,Transportation +421933,Transportation,Transportation +421930,Transportation,Transportation +421927,Transportation,Transportation +421926,Transportation,Transportation +420101,Transportation,Transportation +420087,Transportation,Transportation +420085,Transportation,Transportation +420083,Transportation,Transportation +417461,Transportation,Transportation +417459,Transportation,Transportation +417458,Transportation,Transportation +417457,Transportation,Transportation +417456,Transportation,Transportation +416706,Transportation,Transportation +416702,Transportation,Transportation +416700,Transportation,Transportation +413402,Transportation,Transportation +413401,Transportation,Transportation +413399,Transportation,Transportation +413392,Transportation,Transportation +413391,Transportation,Transportation +413385,Transportation,Transportation +413382,Transportation,Transportation +413378,Transportation,Transportation +413373,Transportation,Transportation +413368,Transportation,Transportation +413364,Transportation,Transportation +413361,Transportation,Transportation +410105,Transportation,Transportation +410104,Transportation,Transportation +410103,Transportation,Transportation +410102,Transportation,Transportation +410101,Transportation,Transportation +410100,Transportation,Transportation +410099,Transportation,Transportation +410098,Transportation,Transportation +410097,Transportation,Transportation +410096,Transportation,Transportation +410090,Transportation,Transportation +410089,Transportation,Transportation +410088,Transportation,Transportation +408138,Transportation,Transportation +408136,Transportation,Transportation +408134,Transportation,Transportation +408130,Transportation,Transportation +408127,Transportation,Transportation +408122,Transportation,Transportation +408121,Transportation,Transportation +408106,Transportation,Transportation +406779,Transportation,Transportation +406774,Transportation,Transportation +406772,Transportation,Transportation +406770,Transportation,Transportation +406769,Transportation,Transportation +406768,Transportation,Transportation +405562,Transportation,Transportation +405561,Transportation,Transportation +405560,Transportation,Transportation +405555,Transportation,Transportation +403752,Transportation,Transportation +403744,Transportation,Transportation +403742,Transportation,Transportation +403740,Transportation,Transportation +403718,Transportation,Transportation +403706,Transportation,Transportation +403704,Transportation,Transportation +403703,Transportation,Transportation +403702,Transportation,Transportation +403699,Transportation,Transportation +403693,Transportation,Transportation +403689,Transportation,Transportation +403687,Transportation,Transportation +400603,Transportation,Transportation +400602,Transportation,Transportation +400599,Transportation,Transportation +379293,Agriculture,Agriculture +413397,Agriculture,Agriculture +244205,Agriculture,Agriculture +461312,Consumer Issues,Consumer Issues +455054,Consumer Issues,Consumer Issues +167724,Consumer Issues,Consumer Issues +134988,Consumer Issues,Consumer Issues +134987,Consumer Issues,Consumer Issues +134981,Consumer Issues,Consumer Issues +335351,Consumer Issues,Consumer Issues +313052,Consumer Issues,Consumer Issues +268749,Consumer Issues,Consumer Issues +252873,Consumer Issues,Consumer Issues +226767,Consumer Issues,Consumer Issues +223035,Consumer Issues,Consumer Issues +223034,Consumer Issues,Consumer Issues +218467,Consumer Issues,Consumer Issues +384062,Consumer Issues,Consumer Issues +498354,Consumer Issues,Consumer Issues +492784,Consumer Issues,Consumer Issues +470305,Consumer Issues,Consumer Issues +463845,Consumer Issues,Consumer Issues +510066,Employment and Training,Employment and Training +498949,Employment and Training,Employment and Training +444846,Employment and Training,Employment and Training +428675,Employment and Training,Employment and Training +406578,Employment and Training,Employment and Training +519598,Employment and Training,Employment and Training +519597,Employment and Training,Employment and Training +486311,Energy,Energy +447164,Energy,Energy +531077,Energy,Energy +498509,Energy,Energy +444846,Financial Institutions,Financial Institutions +441549,Financial Institutions,Financial Institutions +151912,Financial Institutions,Financial Institutions +277649,Financial Institutions,Financial Institutions +276369,Financial Institutions,Financial Institutions +276309,Financial Institutions,Financial Institutions +273474,Financial Institutions,Financial Institutions +268750,Financial Institutions,Financial Institutions +268749,Financial Institutions,Financial Institutions +252875,Financial Institutions,Financial Institutions +252874,Financial Institutions,Financial Institutions +252873,Financial Institutions,Financial Institutions +246390,Financial Institutions,Financial Institutions +244203,Financial Institutions,Financial Institutions +244201,Financial Institutions,Financial Institutions +244199,Financial Institutions,Financial Institutions +235670,Financial Institutions,Financial Institutions +235669,Financial Institutions,Financial Institutions +233269,Financial Institutions,Financial Institutions +231849,Financial Institutions,Financial Institutions +226767,Financial Institutions,Financial Institutions +226747,Financial Institutions,Financial Institutions +223035,Financial Institutions,Financial Institutions +223034,Financial Institutions,Financial Institutions +222327,Financial Institutions,Financial Institutions +218467,Financial Institutions,Financial Institutions +211467,Financial Institutions,Financial Institutions +211427,Financial Institutions,Financial Institutions +206852,Financial Institutions,Financial Institutions +206851,Financial Institutions,Financial Institutions +206850,Financial Institutions,Financial Institutions +206849,Financial Institutions,Financial Institutions +202725,Financial Institutions,Financial Institutions +202720,Financial Institutions,Financial Institutions +194712,Financial Institutions,Financial Institutions +194711,Financial Institutions,Financial Institutions +188843,Financial Institutions,Financial Institutions +175291,Financial Institutions,Financial Institutions +175290,Financial Institutions,Financial Institutions +175289,Financial Institutions,Financial Institutions +175288,Financial Institutions,Financial Institutions +175285,Financial Institutions,Financial Institutions +171928,Financial Institutions,Financial Institutions +171927,Financial Institutions,Financial Institutions +167724,Financial Institutions,Financial Institutions +163724,Financial Institutions,Financial Institutions +161894,Financial Institutions,Financial Institutions +438305,Financial Institutions,Financial Institutions +438299,Financial Institutions,Financial Institutions +438181,Financial Institutions,Financial Institutions +435061,Financial Institutions,Financial Institutions +435059,Financial Institutions,Financial Institutions +435058,Financial Institutions,Financial Institutions +435057,Financial Institutions,Financial Institutions +432211,Financial Institutions,Financial Institutions +430431,Financial Institutions,Financial Institutions +430430,Financial Institutions,Financial Institutions +428701,Financial Institutions,Financial Institutions +428695,Financial Institutions,Financial Institutions +428693,Financial Institutions,Financial Institutions +428691,Financial Institutions,Financial Institutions +428688,Financial Institutions,Financial Institutions +428686,Financial Institutions,Financial Institutions +428684,Financial Institutions,Financial Institutions +428682,Financial Institutions,Financial Institutions +428680,Financial Institutions,Financial Institutions +428678,Financial Institutions,Financial Institutions +428675,Financial Institutions,Financial Institutions +428671,Financial Institutions,Financial Institutions +425902,Financial Institutions,Financial Institutions +424046,Financial Institutions,Financial Institutions +424044,Financial Institutions,Financial Institutions +424040,Financial Institutions,Financial Institutions +424035,Financial Institutions,Financial Institutions +422143,Financial Institutions,Financial Institutions +422139,Financial Institutions,Financial Institutions +422119,Financial Institutions,Financial Institutions +419532,Financial Institutions,Financial Institutions +416471,Financial Institutions,Financial Institutions +413408,Financial Institutions,Financial Institutions +413400,Financial Institutions,Financial Institutions +413397,Financial Institutions,Financial Institutions +409724,Financial Institutions,Financial Institutions +409723,Financial Institutions,Financial Institutions +409722,Financial Institutions,Financial Institutions +405399,Financial Institutions,Financial Institutions +405390,Financial Institutions,Financial Institutions +403095,Financial Institutions,Financial Institutions +403093,Financial Institutions,Financial Institutions +403091,Financial Institutions,Financial Institutions +400533,Financial Institutions,Financial Institutions +394081,Financial Institutions,Financial Institutions +390101,Financial Institutions,Financial Institutions +390100,Financial Institutions,Financial Institutions +388273,Financial Institutions,Financial Institutions +388261,Financial Institutions,Financial Institutions +385750,Financial Institutions,Financial Institutions +385747,Financial Institutions,Financial Institutions +384062,Financial Institutions,Financial Institutions +383838,Financial Institutions,Financial Institutions +383795,Financial Institutions,Financial Institutions +379318,Financial Institutions,Financial Institutions +379314,Financial Institutions,Financial Institutions +379310,Financial Institutions,Financial Institutions +379306,Financial Institutions,Financial Institutions +379300,Financial Institutions,Financial Institutions +376238,Financial Institutions,Financial Institutions +376235,Financial Institutions,Financial Institutions +368845,Financial Institutions,Financial Institutions +368844,Financial Institutions,Financial Institutions +368790,Financial Institutions,Financial Institutions +365265,Financial Institutions,Financial Institutions +362022,Financial Institutions,Financial Institutions +358165,Financial Institutions,Financial Institutions +351462,Financial Institutions,Financial Institutions +351459,Financial Institutions,Financial Institutions +347305,Financial Institutions,Financial Institutions +347302,Financial Institutions,Financial Institutions +344105,Financial Institutions,Financial Institutions +341265,Financial Institutions,Financial Institutions +341260,Financial Institutions,Financial Institutions +335351,Financial Institutions,Financial Institutions +333386,Financial Institutions,Financial Institutions +332990,Financial Institutions,Financial Institutions +330033,Financial Institutions,Financial Institutions +330032,Financial Institutions,Financial Institutions +326694,Financial Institutions,Financial Institutions +326371,Financial Institutions,Financial Institutions +324522,Financial Institutions,Financial Institutions +313052,Financial Institutions,Financial Institutions +301232,Financial Institutions,Financial Institutions +296762,Financial Institutions,Financial Institutions +296761,Financial Institutions,Financial Institutions +543956,Financial Institutions,Financial Institutions +543936,Financial Institutions,Financial Institutions +543932,Financial Institutions,Financial Institutions +541556,Financial Institutions,Financial Institutions +537229,Financial Institutions,Financial Institutions +537228,Financial Institutions,Financial Institutions +537222,Financial Institutions,Financial Institutions +537221,Financial Institutions,Financial Institutions +537220,Financial Institutions,Financial Institutions +537219,Financial Institutions,Financial Institutions +537218,Financial Institutions,Financial Institutions +537217,Financial Institutions,Financial Institutions +531078,Financial Institutions,Financial Institutions +531077,Financial Institutions,Financial Institutions +531075,Financial Institutions,Financial Institutions +528321,Financial Institutions,Financial Institutions +522387,Financial Institutions,Financial Institutions +522383,Financial Institutions,Financial Institutions +521113,Financial Institutions,Financial Institutions +519600,Financial Institutions,Financial Institutions +519599,Financial Institutions,Financial Institutions +517716,Financial Institutions,Financial Institutions +515449,Financial Institutions,Financial Institutions +513876,Financial Institutions,Financial Institutions +510065,Financial Institutions,Financial Institutions +510064,Financial Institutions,Financial Institutions +507730,Financial Institutions,Financial Institutions +504320,Financial Institutions,Financial Institutions +498950,Financial Institutions,Financial Institutions +498354,Financial Institutions,Financial Institutions +494611,Financial Institutions,Financial Institutions +492760,Financial Institutions,Financial Institutions +490651,Financial Institutions,Financial Institutions +490289,Financial Institutions,Financial Institutions +487134,Financial Institutions,Financial Institutions +487119,Financial Institutions,Financial Institutions +484248,Financial Institutions,Financial Institutions +484247,Financial Institutions,Financial Institutions +476872,Financial Institutions,Financial Institutions +476868,Financial Institutions,Financial Institutions +472532,Financial Institutions,Financial Institutions +470308,Financial Institutions,Financial Institutions +470305,Financial Institutions,Financial Institutions +467145,Financial Institutions,Financial Institutions +463845,Financial Institutions,Financial Institutions +463844,Financial Institutions,Financial Institutions +461487,Financial Institutions,Financial Institutions +460031,Financial Institutions,Financial Institutions +458557,Financial Institutions,Financial Institutions +457168,Financial Institutions,Financial Institutions +457167,Financial Institutions,Financial Institutions +455572,Financial Institutions,Financial Institutions +455054,Financial Institutions,Financial Institutions +455053,Financial Institutions,Financial Institutions +451778,Financial Institutions,Financial Institutions +451776,Financial Institutions,Financial Institutions +451772,Financial Institutions,Financial Institutions +449761,Financial Institutions,Financial Institutions +447166,Financial Institutions,Financial Institutions +447165,Financial Institutions,Financial Institutions +445148,Financial Institutions,Financial Institutions +445145,Financial Institutions,Financial Institutions +382687,Infrastructure,Infrastructure +381588,Infrastructure,Infrastructure +447161,International Trade,International Trade +428675,International Trade,International Trade +403096,International Trade,International Trade +543936,Justice and Law Enforcement,Justice and Law Enforcement +537228,Justice and Law Enforcement,Justice and Law Enforcement +149975,Justice and Law Enforcement,Justice and Law Enforcement +510065,Justice and Law Enforcement,Justice and Law Enforcement +490289,Justice and Law Enforcement,Justice and Law Enforcement +476872,Justice and Law Enforcement,Justice and Law Enforcement +463845,Justice and Law Enforcement,Justice and Law Enforcement +461487,Justice and Law Enforcement,Justice and Law Enforcement +435061,Justice and Law Enforcement,Justice and Law Enforcement +435057,Justice and Law Enforcement,Justice and Law Enforcement +428695,Justice and Law Enforcement,Justice and Law Enforcement +428682,Justice and Law Enforcement,Justice and Law Enforcement +405399,Justice and Law Enforcement,Justice and Law Enforcement +405390,Justice and Law Enforcement,Justice and Law Enforcement +533946,Taxation and Finance,Taxation and Finance +522387,Taxation and Finance,Taxation and Finance +132454,Taxation and Finance,Taxation and Finance +403096,Taxation and Finance,Taxation and Finance +400533,Taxation and Finance,Taxation and Finance +390102,Taxation and Finance,Taxation and Finance +381706,Taxation and Finance,Taxation and Finance +472534,Taxation and Finance,Taxation and Finance +458559,Taxation and Finance,Taxation and Finance +451772,Taxation and Finance,Taxation and Finance +428698,Taxation and Finance,Taxation and Finance +428675,Taxation and Finance,Taxation and Finance +543956,Taxation and Finance,Taxation and Finance +537230,Taxation and Finance,Taxation and Finance +537228,Taxation and Finance,Taxation and Finance +342328,Employment and Training,Employment and Training +329756,Employment and Training,Employment and Training +233609,Employment and Training,Employment and Training +222565,Employment and Training,Employment and Training +222563,Employment and Training,Employment and Training +222559,Employment and Training,Employment and Training +222558,Employment and Training,Employment and Training +222555,Employment and Training,Employment and Training +222548,Employment and Training,Employment and Training +192418,Employment and Training,Employment and Training +329754,Employment and Training,Employment and Training +321927,Employment and Training,Employment and Training +315886,Employment and Training,Employment and Training +315885,Employment and Training,Employment and Training +310173,Employment and Training,Employment and Training +287889,Employment and Training,Employment and Training +268605,Employment and Training,Employment and Training +268390,Employment and Training,Employment and Training +268389,Employment and Training,Employment and Training +268189,Employment and Training,Employment and Training +268183,Employment and Training,Employment and Training +268182,Employment and Training,Employment and Training +268181,Employment and Training,Employment and Training +268179,Employment and Training,Employment and Training +268177,Employment and Training,Employment and Training +268176,Employment and Training,Employment and Training +268173,Employment and Training,Employment and Training +361222,Employment and Training,Employment and Training +296352,Energy,Energy +287889,Energy,Energy +97836,Energy,Energy +94004,Energy,Energy +94003,Energy,Energy +94002,Energy,Energy +94001,Energy,Energy +90519,Energy,Energy +90518,Energy,Energy +90507,Energy,Energy +90505,Energy,Energy +90500,Energy,Energy +88235,Energy,Energy +85456,Energy,Energy +118756,Energy,Energy +109954,Energy,Energy +106354,Energy,Energy +101564,Energy,Energy +101563,Energy,Energy +101562,Energy,Energy +101561,Energy,Energy +101560,Energy,Energy +101558,Energy,Energy +101557,Energy,Energy +101548,Energy,Energy +101547,Energy,Energy +101543,Energy,Energy +101542,Energy,Energy +101541,Energy,Energy +101540,Energy,Energy +101539,Energy,Energy +101538,Energy,Energy +101537,Energy,Energy +101536,Energy,Energy +101535,Energy,Energy +101534,Energy,Energy +97841,Energy,Energy +97840,Energy,Energy +97839,Energy,Energy +97838,Energy,Energy +166043,Energy,Energy +166042,Energy,Energy +166040,Energy,Energy +166039,Energy,Energy +161400,Energy,Energy +161398,Energy,Energy +161397,Energy,Energy +161396,Energy,Energy +161395,Energy,Energy +161393,Energy,Energy +143276,Energy,Energy +143275,Energy,Energy +143274,Energy,Energy +132887,Energy,Energy +123474,Energy,Energy +123455,Energy,Energy +123454,Energy,Energy +121256,Energy,Energy +118757,Energy,Energy +285730,Energy,Energy +281013,Energy,Energy +281012,Energy,Energy +281011,Energy,Energy +277369,Energy,Energy +277367,Energy,Energy +272812,Energy,Energy +268605,Energy,Energy +268390,Energy,Energy +268389,Energy,Energy +268189,Energy,Energy +268183,Energy,Energy +268182,Energy,Energy +268181,Energy,Energy +268179,Energy,Energy +268177,Energy,Energy +268176,Energy,Energy +268173,Energy,Energy +263693,Energy,Energy +263691,Energy,Energy +263690,Energy,Energy +257103,Energy,Energy +257102,Energy,Energy +257101,Energy,Energy +257100,Energy,Energy +257099,Energy,Energy +257098,Energy,Energy +257096,Energy,Energy +257092,Energy,Energy +257091,Energy,Energy +253981,Energy,Energy +253978,Energy,Energy +253976,Energy,Energy +244192,Energy,Energy +244191,Energy,Energy +244190,Energy,Energy +239572,Energy,Energy +239571,Energy,Energy +233613,Energy,Energy +233612,Energy,Energy +233609,Energy,Energy +233608,Energy,Energy +229430,Energy,Energy +229429,Energy,Energy +226703,Energy,Energy +226701,Energy,Energy +226699,Energy,Energy +226698,Energy,Energy +226697,Energy,Energy +226694,Energy,Energy +226691,Energy,Energy +226690,Energy,Energy +226688,Energy,Energy +226686,Energy,Energy +222565,Energy,Energy +222564,Energy,Energy +222563,Energy,Energy +222559,Energy,Energy +222558,Energy,Energy +222555,Energy,Energy +222554,Energy,Energy +222553,Energy,Energy +222552,Energy,Energy +222549,Energy,Energy +222548,Energy,Energy +218830,Energy,Energy +218328,Energy,Energy +218327,Energy,Energy +213427,Energy,Energy +211687,Energy,Energy +208627,Energy,Energy +200568,Energy,Energy +197137,Energy,Energy +197135,Energy,Energy +197134,Energy,Energy +192576,Energy,Energy +192575,Energy,Energy +192574,Energy,Energy +192573,Energy,Energy +192572,Energy,Energy +192571,Energy,Energy +192570,Energy,Energy +192569,Energy,Energy +192568,Energy,Energy +192567,Energy,Energy +192489,Energy,Energy +192488,Energy,Energy +192487,Energy,Energy +192486,Energy,Energy +192485,Energy,Energy +192484,Energy,Energy +192424,Energy,Energy +192421,Energy,Energy +192419,Energy,Energy +191617,Energy,Energy +191616,Energy,Energy +191614,Energy,Energy +179104,Energy,Energy +179084,Energy,Energy +179064,Energy,Energy +179044,Energy,Energy +179024,Energy,Energy +179004,Energy,Energy +178984,Energy,Energy +178964,Energy,Energy +178944,Energy,Energy +177445,Energy,Energy +177444,Energy,Energy +392156,Energy,Energy +392155,Energy,Energy +392154,Energy,Energy +392153,Energy,Energy +392152,Energy,Energy +392151,Energy,Energy +375973,Energy,Energy +375971,Energy,Energy +375970,Energy,Energy +375968,Energy,Energy +375967,Energy,Energy +375966,Energy,Energy +375965,Energy,Energy +375964,Energy,Energy +374743,Energy,Energy +374741,Energy,Energy +365020,Energy,Energy +361222,Energy,Energy +359844,Energy,Energy +357761,Energy,Energy +353264,Energy,Energy +353263,Energy,Energy +353262,Energy,Energy +353260,Energy,Energy +353259,Energy,Energy +353258,Energy,Energy +353257,Energy,Energy +351037,Energy,Energy +349120,Energy,Energy +347247,Energy,Energy +342330,Energy,Energy +342329,Energy,Energy +342328,Energy,Energy +342326,Energy,Energy +342325,Energy,Energy +342202,Energy,Energy +338615,Energy,Energy +335952,Energy,Energy +335949,Energy,Energy +335947,Energy,Energy +335945,Energy,Energy +333629,Energy,Energy +333628,Energy,Energy +333627,Energy,Energy +331478,Energy,Energy +329760,Energy,Energy +329759,Energy,Energy +329758,Energy,Energy +329756,Energy,Energy +329755,Energy,Energy +329754,Energy,Energy +327544,Energy,Energy +327542,Energy,Energy +321927,Energy,Energy +318695,Energy,Energy +318694,Energy,Energy +315886,Energy,Energy +315885,Energy,Energy +315884,Energy,Energy +315516,Energy,Energy +310174,Energy,Energy +310173,Energy,Energy +310172,Energy,Energy +310171,Energy,Energy +310170,Energy,Energy +310169,Energy,Energy +303358,Energy,Energy +310170,Environment,Environment +310169,Environment,Environment +85456,Environment,Environment +177444,Environment,Environment +197137,Environment,Environment +197135,Environment,Environment +197134,Environment,Environment +192576,Environment,Environment +192575,Environment,Environment +192574,Environment,Environment +192573,Environment,Environment +192572,Environment,Environment +192571,Environment,Environment +192570,Environment,Environment +192569,Environment,Environment +192568,Environment,Environment +192567,Environment,Environment +192489,Environment,Environment +192488,Environment,Environment +192487,Environment,Environment +192486,Environment,Environment +192485,Environment,Environment +192484,Environment,Environment +192424,Environment,Environment +192421,Environment,Environment +192419,Environment,Environment +179104,Environment,Environment +179084,Environment,Environment +179064,Environment,Environment +179044,Environment,Environment +179024,Environment,Environment +179004,Environment,Environment +178984,Environment,Environment +178964,Environment,Environment +178944,Environment,Environment +177445,Environment,Environment +303358,Environment,Environment +296352,Environment,Environment +272812,Environment,Environment +268605,Environment,Environment +268390,Environment,Environment +268389,Environment,Environment +268189,Environment,Environment +268183,Environment,Environment +268182,Environment,Environment +268181,Environment,Environment +268179,Environment,Environment +268177,Environment,Environment +268176,Environment,Environment +268173,Environment,Environment +263693,Environment,Environment +263691,Environment,Environment +263690,Environment,Environment +257103,Environment,Environment +257102,Environment,Environment +257101,Environment,Environment +257100,Environment,Environment +257099,Environment,Environment +257098,Environment,Environment +257096,Environment,Environment +257092,Environment,Environment +257091,Environment,Environment +253981,Environment,Environment +253978,Environment,Environment +253976,Environment,Environment +244192,Environment,Environment +239572,Environment,Environment +239571,Environment,Environment +234050,Environment,Environment +233609,Environment,Environment +233608,Environment,Environment +229430,Environment,Environment +229429,Environment,Environment +226698,Environment,Environment +226697,Environment,Environment +226694,Environment,Environment +226691,Environment,Environment +226690,Environment,Environment +226688,Environment,Environment +222566,Environment,Environment +222563,Environment,Environment +222558,Environment,Environment +222554,Environment,Environment +222553,Environment,Environment +222552,Environment,Environment +222548,Environment,Environment +218830,Environment,Environment +218328,Environment,Environment +208627,Environment,Environment +392156,Environment,Environment +392155,Environment,Environment +392154,Environment,Environment +392153,Environment,Environment +392152,Environment,Environment +392151,Environment,Environment +375973,Environment,Environment +375971,Environment,Environment +375970,Environment,Environment +375968,Environment,Environment +375967,Environment,Environment +375966,Environment,Environment +375965,Environment,Environment +375964,Environment,Environment +374743,Environment,Environment +374741,Environment,Environment +361222,Environment,Environment +359844,Environment,Environment +349120,Environment,Environment +338615,Environment,Environment +329757,Environment,Environment +329754,Environment,Environment +327544,Environment,Environment +327542,Environment,Environment +315516,Environment,Environment +310174,Environment,Environment +310173,Environment,Environment +310172,Environment,Environment +338615,Fisheries,Fisheries +327542,Fisheries,Fisheries +329754,Industry,Industry +327544,Industry,Industry +85456,Industry,Industry +253976,Industry,Industry +233609,Industry,Industry +233608,Industry,Industry +226698,Industry,Industry +226691,Industry,Industry +218328,Industry,Industry +218327,Industry,Industry +197137,Industry,Industry +197135,Industry,Industry +197134,Industry,Industry +192576,Industry,Industry +192575,Industry,Industry +192574,Industry,Industry +192573,Industry,Industry +192572,Industry,Industry +192571,Industry,Industry +192570,Industry,Industry +192567,Industry,Industry +192489,Industry,Industry +192488,Industry,Industry +192487,Industry,Industry +192486,Industry,Industry +192485,Industry,Industry +192484,Industry,Industry +192424,Industry,Industry +192421,Industry,Industry +192419,Industry,Industry +192418,Industry,Industry +191614,Industry,Industry +179104,Industry,Industry +179084,Industry,Industry +179064,Industry,Industry +179044,Industry,Industry +179024,Industry,Industry +179004,Industry,Industry +178984,Industry,Industry +178964,Industry,Industry +177445,Industry,Industry +177444,Industry,Industry +310171,Industry,Industry +310169,Industry,Industry +281013,Industry,Industry +281011,Industry,Industry +277369,Industry,Industry +359844,Industry,Industry +343559,Industry,Industry +342330,Industry,Industry +342329,Industry,Industry +342328,Industry,Industry +342326,Industry,Industry +342325,Industry,Industry +342202,Industry,Industry +335952,Industry,Industry +335945,Industry,Industry +329760,Industry,Industry +329759,Industry,Industry +347247,International Relations,International Relations +281011,International Relations,International Relations +233609,International Relations,International Relations +233608,International Relations,International Relations +226698,International Relations,International Relations +226694,International Relations,International Relations +226691,International Relations,International Relations +226690,International Relations,International Relations +226688,International Relations,International Relations +222563,International Relations,International Relations +222559,International Relations,International Relations +222558,International Relations,International Relations +222555,International Relations,International Relations +222554,International Relations,International Relations +222553,International Relations,International Relations +222552,International Relations,International Relations +218327,International Relations,International Relations +208627,International Relations,International Relations +329756,International Trade,International Trade +329754,International Trade,International Trade +192572,International Trade,International Trade +192571,International Trade,International Trade +192570,International Trade,International Trade +192569,International Trade,International Trade +192567,International Trade,International Trade +192489,International Trade,International Trade +192488,International Trade,International Trade +192487,International Trade,International Trade +192486,International Trade,International Trade +192485,International Trade,International Trade +192484,International Trade,International Trade +192424,International Trade,International Trade +192421,International Trade,International Trade +192419,International Trade,International Trade +192418,International Trade,International Trade +191617,International Trade,International Trade +191616,International Trade,International Trade +191614,International Trade,International Trade +179104,International Trade,International Trade +179084,International Trade,International Trade +179064,International Trade,International Trade +179044,International Trade,International Trade +179024,International Trade,International Trade +179004,International Trade,International Trade +178984,International Trade,International Trade +178964,International Trade,International Trade +315516,International Trade,International Trade +310174,International Trade,International Trade +310173,International Trade,International Trade +310172,International Trade,International Trade +310171,International Trade,International Trade +310170,International Trade,International Trade +303358,International Trade,International Trade +303357,International Trade,International Trade +285730,International Trade,International Trade +281013,International Trade,International Trade +281011,International Trade,International Trade +244192,International Trade,International Trade +239572,International Trade,International Trade +239571,International Trade,International Trade +233612,International Trade,International Trade +233609,International Trade,International Trade +233608,International Trade,International Trade +226701,International Trade,International Trade +226699,International Trade,International Trade +226698,International Trade,International Trade +226697,International Trade,International Trade +226694,International Trade,International Trade +226691,International Trade,International Trade +226686,International Trade,International Trade +222565,International Trade,International Trade +222564,International Trade,International Trade +222548,International Trade,International Trade +211687,International Trade,International Trade +200568,International Trade,International Trade +197137,International Trade,International Trade +197135,International Trade,International Trade +192576,International Trade,International Trade +192573,International Trade,International Trade +361222,International Trade,International Trade +353262,International Trade,International Trade +351037,International Trade,International Trade +333628,International Trade,International Trade +333627,International Trade,International Trade +329760,International Trade,International Trade +329759,International Trade,International Trade +244192,Labour,Labour +239571,Labour,Labour +233612,Labour,Labour +233608,Labour,Labour +222565,Labour,Labour +222563,Labour,Labour +222559,Labour,Labour +222555,Labour,Labour +222552,Labour,Labour +222549,Labour,Labour +200568,Labour,Labour +192489,Labour,Labour +192488,Labour,Labour +192486,Labour,Labour +192485,Labour,Labour +192484,Labour,Labour +192424,Labour,Labour +192421,Labour,Labour +192419,Labour,Labour +192418,Labour,Labour +359844,Labour,Labour +353260,Labour,Labour +353257,Labour,Labour +343559,Labour,Labour +342329,Labour,Labour +342326,Labour,Labour +342325,Labour,Labour +342202,Labour,Labour +329759,Labour,Labour +329758,Labour,Labour +329757,Labour,Labour +329756,Labour,Labour +329755,Labour,Labour +329754,Labour,Labour +327544,Labour,Labour +327542,Labour,Labour +321927,Labour,Labour +315516,Labour,Labour +285730,Labour,Labour +281011,Labour,Labour +192418,Regional Development,Regional Development +177445,Regional Development,Regional Development +335947,Regional Development,Regional Development +244192,Regional Development,Regional Development +229429,Regional Development,Regional Development +200568,Regional Development,Regional Development +197135,Regional Development,Regional Development +197134,Regional Development,Regional Development +192576,Regional Development,Regional Development +192570,Regional Development,Regional Development +192424,Regional Development,Regional Development +244192,Taxation and Finance,Taxation and Finance +192571,Taxation and Finance,Taxation and Finance +192485,Taxation and Finance,Taxation and Finance +88077,Energy,Energy +88076,Energy,Energy +88095,Energy,Energy +88092,Energy,Energy +88090,Energy,Energy +88087,Energy,Energy +88081,Energy,Energy +88079,Energy,Energy +88077,Environment,Environment +88076,Environment,Environment +88095,Environment,Environment +88092,Environment,Environment +88090,Environment,Environment +88087,Environment,Environment +88079,Environment,Environment +88554,Industry,Industry +88081,Industry,Industry +88087,Taxation and Finance,Taxation and Finance +88081,Taxation and Finance,Taxation and Finance +445768,Constitutional Issues,Constitutional Issues +456673,Defence,Defence +456631,Health,Health +445755,International Relations,International Relations +445768,Justice and Law Enforcement,Justice and Law Enforcement +456630,Small Business,Small Business +355102,Consumer Issues,Consumer Issues +395942,Energy,Energy +327573,Environment,Environment +476806,Financial Institutions,Financial Institutions +444103,Health,Health +327594,Immigration,Immigration +483323,Industry,Industry +526703,Infrastructure,Infrastructure +475216,Labour,Labour +309955,Regional Development,Regional Development +475215,Small Business,Small Business +526694,Taxation and Finance,Taxation and Finance +545240,Transportation,Transportation +91614,Other,housing affordability +91614,Other,building codes +129535,Consumer Issues,Consumer Issues +126098,Other,Ocean Sciences +534462,Agriculture,Agriculture +413762,Industry,Industry +238129,Energy,Energy +413720,Environment,Environment +403833,Fisheries,Fisheries +493431,Forestry,Forestry +413695,Government Procurement,Government Procurement +324961,Health,Health +277435,Industry,Industry +473625,Infrastructure,Infrastructure +264371,Internal Trade,Internal Trade +114160,International Relations,International Relations +499010,International Trade,International Trade +245400,Labour,Labour +277435,Mining,Mining +316150,Regional Development,Regional Development +290874,Taxation and Finance,Taxation and Finance +338774,Transportation,Transportation +89058,International Relations,International Relations +349422,Consumer Issues,Consumer Issues +188635,Energy,Energy +526657,Environment,Environment +489299,Industry,Industry +188637,Infrastructure,Infrastructure +374988,Internal Trade,Internal Trade +336111,International Relations,International Relations +518416,International Trade,International Trade +188633,Regional Development,Regional Development +425357,Taxation and Finance,Taxation and Finance +420409,Transportation,Transportation +313264,Health,Health +313211,Immigration,Immigration +458312,Industry,Industry +309470,International Trade,International Trade +371276,Employment and Training,Employment and Training +427588,Immigration,Immigration +371281,Industry,Industry +348386,Infrastructure,Infrastructure +436926,Intellectual Property,Intellectual Property +296732,Internal Trade,Internal Trade +371276,Labour,Labour +400155,Regional Development,Regional Development +427588,Small Business,Small Business +436924,Taxation and Finance,Taxation and Finance +100891,Industry,Industry +96456,Taxation and Finance,Taxation and Finance +99279,Consumer Issues,Consumer Issues +324362,Defence,Defence +294109,Government Procurement,Government Procurement +327316,Industry,Industry +294109,International Relations,International Relations +327317,International Trade,International Trade +89857,Industry,Industry +101111,Agriculture,Agriculture +459181,Consumer Issues,Consumer Issues +174089,Internal Trade,Internal Trade +384592,International Trade,International Trade +164244,Taxation and Finance,Taxation and Finance +383357,Agriculture,Agriculture +316576,Education,Education +316576,Employment and Training,Employment and Training +132440,Energy,Energy +229669,Environment,Environment +100552,Health,Health +100562,Immigration,Immigration +413608,Industry,Industry +389071,Infrastructure,Infrastructure +369136,Regional Development,Regional Development +100550,Other,Information and Communication Technology +82774,Consumer Issues,Consumer Issues +129774,Health,Health +138314,International Relations,International Relations +160614,International Trade,International Trade +499508,Industry,Industry +460654,International Relations,International Relations +442073,Transportation,Transportation +273150,Energy,Energy +115094,Industry,Industry +383286,Consumer Issues,Consumer Issues +383285,Health,Health +530344,International Trade,International Trade +75915,Industry,Industry +239071,Industry,Industry +160275,Energy,Energy +165158,Environment,Environment +155988,Transportation,Transportation +149697,Government Procurement,Government Procurement +226678,Consumer Issues,Consumer Issues +261009,Financial Institutions,Financial Institutions +317876,Industry,Industry +317877,Taxation and Finance,Taxation and Finance +75498,Environment,Environment +472781,Infrastructure,Infrastructure +457685,International Relations,International Relations +175305,International Trade,International Trade +443650,Tourism,Tourism +400575,Transportation,Transportation +188844,Agriculture,Agriculture +463844,Consumer Issues,Consumer Issues +515443,Employment and Training,Employment and Training +494612,Energy,Energy +486311,Environment,Environment +445144,Financial Institutions,Financial Institutions +296761,Industry,Industry +424035,Infrastructure,Infrastructure +413408,Internal Trade,Internal Trade +461312,International Trade,International Trade +403091,Justice and Law Enforcement,Justice and Law Enforcement +409726,Labour,Labour +537227,Taxation and Finance,Taxation and Finance +353257,Employment and Training,Employment and Training +303357,Energy,Energy +310171,Environment,Environment +361222,Fisheries,Fisheries +329757,Industry,Industry +192487,International Relations,International Relations +329758,International Trade,International Trade +277367,Labour,Labour +192421,Regional Development,Regional Development +192484,Taxation and Finance,Taxation and Finance +88078,Energy,Energy +88078,Environment,Environment +88555,Industry,Industry +88090,Taxation and Finance,Taxation and Finance +105676,Energy,Energy +105676,Environment,Environment +405590,Energy,Energy +405590,Environment,Environment +157769,Employment and Training,Employment and Training +112036,Energy,Energy +157768,Environment,Environment +157770,Industry,Industry +405588,Energy,Energy +405585,Energy,Energy +405588,Environment,Environment +405585,Environment,Environment +243150,Energy,Energy +243149,Energy,Energy +103781,Energy,Energy +103777,Energy,Energy +101043,Energy,Energy +101042,Energy,Energy +101037,Energy,Energy +157784,Energy,Energy +157783,Energy,Energy +157782,Energy,Energy +157781,Energy,Energy +157780,Energy,Energy +157779,Energy,Energy +157778,Energy,Energy +157770,Energy,Energy +157769,Energy,Energy +157768,Energy,Energy +146874,Energy,Energy +146874,Environment,Environment +243150,Environment,Environment +112036,Environment,Environment +103781,Environment,Environment +103777,Environment,Environment +101043,Environment,Environment +101042,Environment,Environment +101037,Environment,Environment +157784,Environment,Environment +157783,Environment,Environment +157782,Environment,Environment +157781,Environment,Environment +157780,Environment,Environment +157779,Environment,Environment +157778,Environment,Environment +157770,Environment,Environment +157769,Environment,Environment +243150,Industry,Industry +243149,Industry,Industry +157769,Industry,Industry +157768,Industry,Industry +146874,Industry,Industry +112036,Industry,Industry +157784,Industry,Industry +157783,Industry,Industry +157782,Industry,Industry +157781,Industry,Industry +157780,Industry,Industry +157779,Industry,Industry +157778,Industry,Industry +434207,Government Procurement,Government Procurement +431765,Government Procurement,Government Procurement +331040,Government Procurement,Government Procurement +299051,Government Procurement,Government Procurement +429836,Government Procurement,Government Procurement +427583,Government Procurement,Government Procurement +422867,Government Procurement,Government Procurement +415130,Government Procurement,Government Procurement +415055,Government Procurement,Government Procurement +402686,Government Procurement,Government Procurement +402684,Government Procurement,Government Procurement +395403,Government Procurement,Government Procurement +393214,Government Procurement,Government Procurement +386772,Government Procurement,Government Procurement +386771,Government Procurement,Government Procurement +384943,Government Procurement,Government Procurement +384940,Government Procurement,Government Procurement +459863,Government Procurement,Government Procurement +458419,Government Procurement,Government Procurement +444751,Government Procurement,Government Procurement +443258,Government Procurement,Government Procurement +440623,Government Procurement,Government Procurement +458070,Environment,Environment +454076,Environment,Environment +89697,Environment,Environment +87985,Environment,Environment +134034,Environment,Environment +124860,Environment,Environment +124857,Environment,Environment +219168,Environment,Environment +162354,Environment,Environment +521095,Environment,Environment +515080,Environment,Environment +512293,Environment,Environment +510341,Environment,Environment +508045,Environment,Environment +508041,Environment,Environment +508040,Environment,Environment +499806,Environment,Environment +481972,Environment,Environment +479830,Environment,Environment +477120,Environment,Environment +468403,Environment,Environment +468402,Environment,Environment +468400,Environment,Environment +468398,Environment,Environment +468394,Environment,Environment +463921,Environment,Environment +463918,Environment,Environment +463915,Environment,Environment +463911,Environment,Environment +536600,Industry,Industry +530686,Industry,Industry +264831,Industry,Industry +524230,Industry,Industry +521096,Industry,Industry +512293,Industry,Industry +512292,Industry,Industry +510339,Industry,Industry +508045,Industry,Industry +508044,Industry,Industry +508040,Industry,Industry +499809,Industry,Industry +499807,Industry,Industry +495302,Industry,Industry +495300,Industry,Industry +492975,Industry,Industry +492973,Industry,Industry +487159,Industry,Industry +487156,Industry,Industry +487154,Industry,Industry +487152,Industry,Industry +487149,Industry,Industry +484939,Industry,Industry +484933,Industry,Industry +484931,Industry,Industry +484926,Industry,Industry +484917,Industry,Industry +484914,Industry,Industry +484912,Industry,Industry +477120,Industry,Industry +477117,Industry,Industry +468400,Industry,Industry +463921,Industry,Industry +463918,Industry,Industry +460061,Industry,Industry +457387,Energy,Energy +452134,Energy,Energy +211947,Energy,Energy +165565,Energy,Energy +165564,Energy,Energy +165562,Energy,Energy +163147,Energy,Energy +163146,Energy,Energy +163145,Energy,Energy +160392,Energy,Energy +375987,Energy,Energy +369467,Energy,Energy +329907,Energy,Energy +326654,Energy,Energy +313118,Energy,Energy +310119,Energy,Energy +284650,Energy,Energy +284649,Energy,Energy +273511,Energy,Energy +273509,Energy,Energy +273507,Energy,Energy +273503,Energy,Energy +273501,Energy,Energy +273499,Energy,Energy +250314,Energy,Energy +223384,Energy,Energy +217612,Energy,Energy +217609,Energy,Energy +447136,Energy,Energy +442096,Energy,Energy +442095,Energy,Energy +442094,Energy,Energy +439349,Energy,Energy +435461,Energy,Energy +435460,Energy,Energy +435459,Energy,Energy +435457,Energy,Energy +435455,Energy,Energy +435454,Energy,Energy +435451,Energy,Energy +435450,Energy,Energy +435449,Energy,Energy +432564,Energy,Energy +432387,Energy,Energy +432386,Energy,Energy +432385,Energy,Energy +422461,Energy,Energy +422458,Energy,Energy +415354,Energy,Energy +415350,Energy,Energy +412963,Energy,Energy +412959,Energy,Energy +406626,Energy,Energy +404954,Energy,Energy +404953,Energy,Energy +404952,Energy,Energy +403421,Energy,Energy +403420,Energy,Energy +403419,Energy,Energy +403418,Energy,Energy +400756,Energy,Energy +400754,Energy,Energy +396688,Energy,Energy +396683,Energy,Energy +396682,Energy,Energy +390050,Energy,Energy +390049,Energy,Energy +390048,Energy,Energy +383655,Energy,Energy +381112,Energy,Energy +376343,Energy,Energy +375991,Energy,Energy +375990,Energy,Energy +375989,Energy,Energy +375988,Energy,Energy +541815,Energy,Energy +519947,Energy,Energy +519946,Energy,Energy +511694,Energy,Energy +508607,Energy,Energy +501633,Energy,Energy +496080,Energy,Energy +493287,Energy,Energy +491242,Energy,Energy +491240,Energy,Energy +487040,Energy,Energy +484401,Energy,Energy +484399,Energy,Energy +484397,Energy,Energy +481951,Energy,Energy +480180,Energy,Energy +480179,Energy,Energy +477024,Energy,Energy +477023,Energy,Energy +475161,Energy,Energy +473232,Energy,Energy +473228,Energy,Energy +473225,Energy,Energy +471049,Energy,Energy +471042,Energy,Energy +467851,Energy,Energy +467847,Energy,Energy +467845,Energy,Energy +467837,Energy,Energy +462379,Energy,Energy +461768,Energy,Energy +519946,Environment,Environment +467851,Environment,Environment +390050,Environment,Environment +390049,Environment,Environment +390048,Environment,Environment +284650,Environment,Environment +284649,Environment,Environment +273511,Environment,Environment +273509,Environment,Environment +273503,Environment,Environment +273501,Environment,Environment +273499,Environment,Environment +250318,Environment,Environment +445368,Environment,Environment +445367,Environment,Environment +435461,Environment,Environment +435457,Environment,Environment +432387,Environment,Environment +432386,Environment,Environment +426774,Environment,Environment +422461,Environment,Environment +422458,Environment,Environment +415350,Environment,Environment +412963,Environment,Environment +412959,Environment,Environment +406627,Environment,Environment +403421,Environment,Environment +403420,Environment,Environment +403419,Environment,Environment +399095,Environment,Environment +396688,Environment,Environment +396683,Environment,Environment +396682,Environment,Environment +176906,Intellectual Property,Intellectual Property +176905,Intellectual Property,Intellectual Property +162973,Intellectual Property,Intellectual Property +162971,Intellectual Property,Intellectual Property +153984,Intellectual Property,Intellectual Property +81016,Defence,Defence +81014,Defence,Defence +77756,Defence,Defence +138840,Defence,Defence +129002,Defence,Defence +129000,Defence,Defence +125118,Defence,Defence +121293,Defence,Defence +121289,Defence,Defence +117690,Defence,Defence +117685,Defence,Defence +111799,Defence,Defence +109759,Defence,Defence +109756,Defence,Defence +106416,Defence,Defence +106415,Defence,Defence +101403,Defence,Defence +101400,Defence,Defence +97503,Defence,Defence +97500,Defence,Defence +97495,Defence,Defence +97503,Industry,Industry +97495,Industry,Industry +125118,Industry,Industry +121293,Industry,Industry +121289,Industry,Industry +117690,Industry,Industry +247132,Agriculture,Agriculture +247129,Agriculture,Agriculture +182104,Agriculture,Agriculture +182084,Agriculture,Agriculture +169386,Agriculture,Agriculture +169385,Infrastructure,Infrastructure +169384,Infrastructure,Infrastructure +92982,Infrastructure,Infrastructure +92974,Infrastructure,Infrastructure +104039,Infrastructure,Infrastructure +104038,Infrastructure,Infrastructure +104037,Infrastructure,Infrastructure +104035,Infrastructure,Infrastructure +95195,Infrastructure,Infrastructure +301349,Infrastructure,Infrastructure +247132,Infrastructure,Infrastructure +247130,Infrastructure,Infrastructure +247129,Infrastructure,Infrastructure +207150,Infrastructure,Infrastructure +301349,Regional Development,Regional Development +247132,Transportation,Transportation +247130,Transportation,Transportation +207150,Transportation,Transportation +182104,Transportation,Transportation +182084,Transportation,Transportation +169386,Transportation,Transportation +169385,Transportation,Transportation +169384,Transportation,Transportation +339963,Transportation,Transportation +155216,Transportation,Transportation +340448,Transportation,Transportation +169464,Transportation,Transportation +155778,Transportation,Transportation +155777,Transportation,Transportation +116338,Health,Health +165726,Industry,Industry +309832,Environment,Environment +259414,Environment,Environment +150395,Environment,Environment +150392,Environment,Environment +150391,Environment,Environment +150388,Environment,Environment +150386,Environment,Environment +233836,Environment,Environment +233835,Environment,Environment +215515,Environment,Environment +199958,Environment,Environment +194938,Environment,Environment +389547,Environment,Environment +389538,Environment,Environment +402294,Transportation,Transportation +389538,Transportation,Transportation +150395,Transportation,Transportation +150392,Transportation,Transportation +150391,Transportation,Transportation +150388,Transportation,Transportation +150386,Transportation,Transportation +309835,Transportation,Transportation +259414,Transportation,Transportation +233836,Transportation,Transportation +233835,Transportation,Transportation +215515,Transportation,Transportation +199958,Transportation,Transportation +194938,Transportation,Transportation +402296,Transportation,Transportation +418615,Defence,Defence +418615,Government Procurement,Government Procurement +153535,Energy,Energy +132461,Energy,Energy +94576,Energy,Energy +91535,Energy,Energy +153535,Environment,Environment +132461,Environment,Environment +91535,Environment,Environment +153548,Fisheries,Fisheries +153535,Fisheries,Fisheries +94576,Fisheries,Fisheries +91535,Fisheries,Fisheries +125334,Fisheries,Fisheries +125334,Industry,Industry +106376,Industry,Industry +91535,Industry,Industry +153535,Industry,Industry +290090,Employment and Training,Employment and Training +536494,Environment,Environment +480917,Environment,Environment +370481,Environment,Environment +364352,Environment,Environment +344894,Environment,Environment +337200,Environment,Environment +337199,Environment,Environment +334683,Environment,Environment +331790,Environment,Environment +330285,Environment,Environment +329193,Environment,Environment +314769,Environment,Environment +314750,Environment,Environment +301025,Environment,Environment +301024,Environment,Environment +301023,Environment,Environment +301020,Environment,Environment +298455,Environment,Environment +290090,Environment,Environment +287349,Environment,Environment +270409,Environment,Environment +270370,Environment,Environment +446508,Environment,Environment +446505,Environment,Environment +444367,Environment,Environment +427428,Environment,Environment +411112,Environment,Environment +407313,Environment,Environment +392912,Environment,Environment +382685,Environment,Environment +382684,Environment,Environment +382683,Environment,Environment +373600,Environment,Environment +359142,Infrastructure,Infrastructure +337199,Infrastructure,Infrastructure +83714,Infrastructure,Infrastructure +301023,Infrastructure,Infrastructure +290090,Infrastructure,Infrastructure +427428,Infrastructure,Infrastructure +407312,Infrastructure,Infrastructure +370481,Infrastructure,Infrastructure +364353,Infrastructure,Infrastructure +298455,Regional Development,Regional Development +290090,Regional Development,Regional Development +314769,Regional Development,Regional Development +301029,Regional Development,Regional Development +301028,Regional Development,Regional Development +301027,Regional Development,Regional Development +301026,Regional Development,Regional Development +301023,Regional Development,Regional Development +480918,Tourism,Tourism +427428,Tourism,Tourism +301026,Tourism,Tourism +298455,Tourism,Tourism +290090,Tourism,Tourism +407312,Tourism,Tourism +392912,Tourism,Tourism +370481,Tourism,Tourism +364354,Tourism,Tourism +364353,Tourism,Tourism +364352,Tourism,Tourism +360905,Tourism,Tourism +360904,Tourism,Tourism +360903,Tourism,Tourism +360902,Tourism,Tourism +359142,Tourism,Tourism +353813,Tourism,Tourism +353812,Tourism,Tourism +331793,Tourism,Tourism +314750,Tourism,Tourism +301029,Tourism,Tourism +301028,Tourism,Tourism +301027,Tourism,Tourism +536496,Tourism,Tourism +536494,Tourism,Tourism +239275,Health,Health +239274,Health,Health +110155,Health,Health +206148,Health,Health +187725,Health,Health +175788,Health,Health +174793,Health,Health +165815,Health,Health +337090,Health,Health +311649,Health,Health +305810,Health,Health +305809,Health,Health +305790,Health,Health +305789,Health,Health +271449,Health,Health +245011,Health,Health +245010,Health,Health +156267,Transportation,Transportation +267250,Transportation,Transportation +99614,Transportation,Transportation +267249,Transportation,Transportation +233092,Transportation,Transportation +233089,Transportation,Transportation +230728,Transportation,Transportation +169565,Transportation,Transportation +169564,Transportation,Transportation +167212,Transportation,Transportation +167211,Transportation,Transportation +167210,Transportation,Transportation +167209,Transportation,Transportation +167208,Transportation,Transportation +167207,Transportation,Transportation +167206,Transportation,Transportation +167205,Transportation,Transportation +167204,Transportation,Transportation +160318,Transportation,Transportation +378086,Infrastructure,Infrastructure +378085,Infrastructure,Infrastructure +467667,Infrastructure,Infrastructure +467665,Infrastructure,Infrastructure +440538,Infrastructure,Infrastructure +440368,Infrastructure,Infrastructure +378086,International Trade,International Trade +378085,International Trade,International Trade +374352,International Trade,International Trade +374351,International Trade,International Trade +467667,International Trade,International Trade +467665,International Trade,International Trade +440540,International Trade,International Trade +440538,International Trade,International Trade +440368,International Trade,International Trade +467667,Regional Development,Regional Development +467665,Regional Development,Regional Development +467667,Transportation,Transportation +467665,Transportation,Transportation +378086,Transportation,Transportation +378085,Transportation,Transportation +374352,Transportation,Transportation +374351,Transportation,Transportation +440540,Transportation,Transportation +440538,Transportation,Transportation +440368,Transportation,Transportation +165427,Employment and Training,Employment and Training +165426,Employment and Training,Employment and Training +165430,Employment and Training,Employment and Training +165429,Employment and Training,Employment and Training +165427,Energy,Energy +165426,Energy,Energy +165430,Energy,Energy +165429,Energy,Energy +165427,Environment,Environment +165426,Environment,Environment +165430,Environment,Environment +165429,Environment,Environment +165427,Industry,Industry +165426,Industry,Industry +165430,Industry,Industry +165429,Industry,Industry +127355,Energy,Energy +127354,Energy,Energy +112034,Energy,Energy +101066,Energy,Energy +101063,Energy,Energy +101061,Energy,Energy +101058,Energy,Energy +101047,Energy,Energy +157786,Energy,Energy +157785,Energy,Energy +146896,Environment,Environment +127355,Environment,Environment +127354,Environment,Environment +112034,Environment,Environment +101066,Environment,Environment +101063,Environment,Environment +101061,Environment,Environment +101058,Environment,Environment +101047,Environment,Environment +157786,Environment,Environment +157785,Industry,Industry +146896,Industry,Industry +192926,Employment and Training,Employment and Training +192925,Employment and Training,Employment and Training +192933,Employment and Training,Employment and Training +192932,Employment and Training,Employment and Training +192930,Employment and Training,Employment and Training +192929,Employment and Training,Employment and Training +192928,Employment and Training,Employment and Training +192926,Energy,Energy +192925,Energy,Energy +192933,Energy,Energy +192932,Energy,Energy +192930,Energy,Energy +192929,Energy,Energy +192928,Energy,Energy +192926,Environment,Environment +192925,Environment,Environment +192933,Environment,Environment +192932,Environment,Environment +192930,Environment,Environment +192929,Environment,Environment +192928,Environment,Environment +192929,Industry,Industry +192928,Industry,Industry +192927,Industry,Industry +192926,Industry,Industry +192925,Industry,Industry +192933,Industry,Industry +192932,Industry,Industry +171810,Energy,Energy +175300,Consumer Issues,Consumer Issues +175299,Consumer Issues,Consumer Issues +107154,Consumer Issues,Consumer Issues +102499,Consumer Issues,Consumer Issues +102497,Consumer Issues,Consumer Issues +102496,Consumer Issues,Consumer Issues +101137,Consumer Issues,Consumer Issues +175298,Consumer Issues,Consumer Issues +132694,Consumer Issues,Consumer Issues +115874,Consumer Issues,Consumer Issues +107158,Consumer Issues,Consumer Issues +107156,Consumer Issues,Consumer Issues +107155,Consumer Issues,Consumer Issues +175304,Consumer Issues,Consumer Issues +175302,Consumer Issues,Consumer Issues +175298,Industry,Industry +132694,Industry,Industry +115874,Industry,Industry +102499,Industry,Industry +102497,Industry,Industry +102496,Industry,Industry +101137,Industry,Industry +96715,Industry,Industry +89181,Industry,Industry +175304,Industry,Industry +175302,Industry,Industry +175301,Industry,Industry +175300,Industry,Industry +89179,Taxation and Finance,Taxation and Finance +107158,Taxation and Finance,Taxation and Finance +107156,Taxation and Finance,Taxation and Finance +107155,Taxation and Finance,Taxation and Finance +107154,Taxation and Finance,Taxation and Finance +102499,Taxation and Finance,Taxation and Finance +102497,Taxation and Finance,Taxation and Finance +102496,Taxation and Finance,Taxation and Finance +101137,Taxation and Finance,Taxation and Finance +102496,Tourism,Tourism +101137,Tourism,Tourism +102499,Tourism,Tourism +175298,Transportation,Transportation +169150,Transportation,Transportation +101137,Transportation,Transportation +96715,Transportation,Transportation +89181,Transportation,Transportation +89179,Transportation,Transportation +160745,Transportation,Transportation +160414,Transportation,Transportation +115874,Transportation,Transportation +175304,Transportation,Transportation +175302,Transportation,Transportation +175301,Transportation,Transportation +175300,Transportation,Transportation +238989,Industry,Industry +222372,Industry,Industry +238989,Tourism,Tourism +238349,Tourism,Tourism +118375,Tourism,Tourism +258508,Tourism,Tourism +238349,Transportation,Transportation +222372,Transportation,Transportation +118375,Transportation,Transportation +264772,Transportation,Transportation +258508,Transportation,Transportation +256769,Transportation,Transportation +255309,Transportation,Transportation +196968,Regional Development,Regional Development +196967,Regional Development,Regional Development +196977,Regional Development,Regional Development +196976,Regional Development,Regional Development +196975,Regional Development,Regional Development +196974,Regional Development,Regional Development +196970,Regional Development,Regional Development +196968,Small Business,Small Business +196967,Small Business,Small Business +196977,Small Business,Small Business +196976,Small Business,Small Business +196975,Small Business,Small Business +196974,Small Business,Small Business +196970,Small Business,Small Business +196968,Tourism,Tourism +196967,Tourism,Tourism +99755,Tourism,Tourism +99754,Tourism,Tourism +99735,Tourism,Tourism +158808,Tourism,Tourism +158755,Tourism,Tourism +158754,Tourism,Tourism +158753,Tourism,Tourism +158751,Tourism,Tourism +145198,Tourism,Tourism +145197,Tourism,Tourism +145196,Tourism,Tourism +144975,Tourism,Tourism +144974,Tourism,Tourism +196977,Tourism,Tourism +196976,Tourism,Tourism +196975,Tourism,Tourism +196974,Tourism,Tourism +196970,Tourism,Tourism +196968,Transportation,Transportation +196967,Transportation,Transportation +99755,Transportation,Transportation +99754,Transportation,Transportation +99735,Transportation,Transportation +145198,Transportation,Transportation +145197,Transportation,Transportation +145196,Transportation,Transportation +144975,Transportation,Transportation +144974,Transportation,Transportation +196977,Transportation,Transportation +196976,Transportation,Transportation +196975,Transportation,Transportation +196974,Transportation,Transportation +196970,Transportation,Transportation +197527,Regional Development,Regional Development +196971,Regional Development,Regional Development +197527,Small Business,Small Business +196971,Small Business,Small Business +278689,Small Business,Small Business +278669,Small Business,Small Business +247597,Small Business,Small Business +247596,Small Business,Small Business +247595,Small Business,Small Business +247594,Small Business,Small Business +247593,Small Business,Small Business +247592,Small Business,Small Business +247590,Small Business,Small Business +173640,Industry,Industry +173605,Industry,Industry +223627,Industry,Industry +223626,Industry,Industry +223603,Industry,Industry +223601,Industry,Industry +162744,Taxation and Finance,Taxation and Finance +156638,Taxation and Finance,Taxation and Finance +97326,Taxation and Finance,Taxation and Finance +380553,Consumer Issues,Consumer Issues +373671,Consumer Issues,Consumer Issues +100301,Consumer Issues,Consumer Issues +373671,Health,Health +397840,Taxation and Finance,Taxation and Finance +389036,Taxation and Finance,Taxation and Finance +542511,Consumer Issues,Consumer Issues +542510,Consumer Issues,Consumer Issues +405698,Consumer Issues,Consumer Issues +400036,Consumer Issues,Consumer Issues +400032,Consumer Issues,Consumer Issues +398237,Consumer Issues,Consumer Issues +398236,Consumer Issues,Consumer Issues +398234,Consumer Issues,Consumer Issues +398232,Consumer Issues,Consumer Issues +396010,Consumer Issues,Consumer Issues +396009,Consumer Issues,Consumer Issues +396007,Consumer Issues,Consumer Issues +390694,Consumer Issues,Consumer Issues +387856,Consumer Issues,Consumer Issues +387850,Consumer Issues,Consumer Issues +385079,Consumer Issues,Consumer Issues +316270,Consumer Issues,Consumer Issues +316269,Consumer Issues,Consumer Issues +542079,Consumer Issues,Consumer Issues +542078,Consumer Issues,Consumer Issues +539109,Consumer Issues,Consumer Issues +536318,Consumer Issues,Consumer Issues +533426,Consumer Issues,Consumer Issues +527560,Consumer Issues,Consumer Issues +527559,Consumer Issues,Consumer Issues +525035,Consumer Issues,Consumer Issues +525034,Consumer Issues,Consumer Issues +525033,Consumer Issues,Consumer Issues +525029,Consumer Issues,Consumer Issues +525017,Consumer Issues,Consumer Issues +521501,Consumer Issues,Consumer Issues +521500,Consumer Issues,Consumer Issues +521498,Consumer Issues,Consumer Issues +521494,Consumer Issues,Consumer Issues +511987,Consumer Issues,Consumer Issues +509595,Consumer Issues,Consumer Issues +508640,Consumer Issues,Consumer Issues +508639,Consumer Issues,Consumer Issues +503877,Consumer Issues,Consumer Issues +503873,Consumer Issues,Consumer Issues +489292,Consumer Issues,Consumer Issues +489291,Consumer Issues,Consumer Issues +486340,Consumer Issues,Consumer Issues +486337,Consumer Issues,Consumer Issues +483814,Consumer Issues,Consumer Issues +483812,Consumer Issues,Consumer Issues +483811,Consumer Issues,Consumer Issues +481337,Consumer Issues,Consumer Issues +479337,Consumer Issues,Consumer Issues +474264,Consumer Issues,Consumer Issues +471796,Consumer Issues,Consumer Issues +471793,Consumer Issues,Consumer Issues +471790,Consumer Issues,Consumer Issues +471787,Consumer Issues,Consumer Issues +465823,Consumer Issues,Consumer Issues +462211,Consumer Issues,Consumer Issues +462210,Consumer Issues,Consumer Issues +461023,Consumer Issues,Consumer Issues +459926,Consumer Issues,Consumer Issues +458234,Consumer Issues,Consumer Issues +458233,Consumer Issues,Consumer Issues +456329,Consumer Issues,Consumer Issues +454389,Consumer Issues,Consumer Issues +454387,Consumer Issues,Consumer Issues +454386,Consumer Issues,Consumer Issues +454385,Consumer Issues,Consumer Issues +451187,Consumer Issues,Consumer Issues +448716,Consumer Issues,Consumer Issues +448715,Consumer Issues,Consumer Issues +445112,Consumer Issues,Consumer Issues +445110,Consumer Issues,Consumer Issues +445109,Consumer Issues,Consumer Issues +440826,Consumer Issues,Consumer Issues +440825,Consumer Issues,Consumer Issues +437119,Consumer Issues,Consumer Issues +437116,Consumer Issues,Consumer Issues +434243,Consumer Issues,Consumer Issues +434242,Consumer Issues,Consumer Issues +434241,Consumer Issues,Consumer Issues +432991,Consumer Issues,Consumer Issues +432227,Consumer Issues,Consumer Issues +425227,Consumer Issues,Consumer Issues +422982,Consumer Issues,Consumer Issues +422981,Consumer Issues,Consumer Issues +422979,Consumer Issues,Consumer Issues +420862,Consumer Issues,Consumer Issues +420860,Consumer Issues,Consumer Issues +418832,Consumer Issues,Consumer Issues +418243,Consumer Issues,Consumer Issues +418240,Consumer Issues,Consumer Issues +418238,Consumer Issues,Consumer Issues +418237,Consumer Issues,Consumer Issues +415083,Consumer Issues,Consumer Issues +415070,Consumer Issues,Consumer Issues +413051,Consumer Issues,Consumer Issues +413047,Consumer Issues,Consumer Issues +407913,Consumer Issues,Consumer Issues +454387,Environment,Environment +406659,Environment,Environment +93014,Environment,Environment +530438,Infrastructure,Infrastructure +530437,Infrastructure,Infrastructure +93014,Infrastructure,Infrastructure +203647,Infrastructure,Infrastructure +203631,Infrastructure,Infrastructure +203630,Infrastructure,Infrastructure +407911,Infrastructure,Infrastructure +406659,Infrastructure,Infrastructure +406654,Infrastructure,Infrastructure +398238,Infrastructure,Infrastructure +396008,Infrastructure,Infrastructure +393946,Infrastructure,Infrastructure +392449,Infrastructure,Infrastructure +390690,Infrastructure,Infrastructure +387857,Infrastructure,Infrastructure +387854,Infrastructure,Infrastructure +385078,Infrastructure,Infrastructure +385076,Infrastructure,Infrastructure +378998,Infrastructure,Infrastructure +371974,Infrastructure,Infrastructure +371505,Infrastructure,Infrastructure +339433,Infrastructure,Infrastructure +317211,Infrastructure,Infrastructure +317210,Infrastructure,Infrastructure +521498,Infrastructure,Infrastructure +479338,Infrastructure,Infrastructure +461023,Infrastructure,Infrastructure +456329,Infrastructure,Infrastructure +508640,Tourism,Tourism +503877,Tourism,Tourism +461023,Transportation,Transportation +459926,Transportation,Transportation +147919,Transportation,Transportation +147914,Transportation,Transportation +147898,Transportation,Transportation +317213,Transportation,Transportation +316270,Transportation,Transportation +316269,Transportation,Transportation +203647,Transportation,Transportation +203631,Transportation,Transportation +371974,Transportation,Transportation +371505,Transportation,Transportation +330405,Transportation,Transportation +330404,Transportation,Transportation +458234,Transportation,Transportation +458233,Transportation,Transportation +456329,Transportation,Transportation +454389,Transportation,Transportation +454387,Transportation,Transportation +454386,Transportation,Transportation +454385,Transportation,Transportation +451187,Transportation,Transportation +448716,Transportation,Transportation +448715,Transportation,Transportation +445112,Transportation,Transportation +445110,Transportation,Transportation +445109,Transportation,Transportation +440826,Transportation,Transportation +440825,Transportation,Transportation +437119,Transportation,Transportation +437116,Transportation,Transportation +434243,Transportation,Transportation +434242,Transportation,Transportation +434241,Transportation,Transportation +432991,Transportation,Transportation +432227,Transportation,Transportation +425227,Transportation,Transportation +422982,Transportation,Transportation +422981,Transportation,Transportation +422979,Transportation,Transportation +420862,Transportation,Transportation +420860,Transportation,Transportation +418832,Transportation,Transportation +418243,Transportation,Transportation +418240,Transportation,Transportation +418238,Transportation,Transportation +418237,Transportation,Transportation +415099,Transportation,Transportation +415083,Transportation,Transportation +415070,Transportation,Transportation +415058,Transportation,Transportation +413051,Transportation,Transportation +407913,Transportation,Transportation +407912,Transportation,Transportation +407911,Transportation,Transportation +406659,Transportation,Transportation +406654,Transportation,Transportation +400036,Transportation,Transportation +400032,Transportation,Transportation +398237,Transportation,Transportation +398236,Transportation,Transportation +398234,Transportation,Transportation +398232,Transportation,Transportation +396010,Transportation,Transportation +396009,Transportation,Transportation +396007,Transportation,Transportation +392448,Transportation,Transportation +387856,Transportation,Transportation +387854,Transportation,Transportation +387850,Transportation,Transportation +387844,Transportation,Transportation +385079,Transportation,Transportation +382877,Transportation,Transportation +381363,Transportation,Transportation +380940,Transportation,Transportation +380939,Transportation,Transportation +380938,Transportation,Transportation +542511,Transportation,Transportation +542510,Transportation,Transportation +542078,Transportation,Transportation +536318,Transportation,Transportation +533426,Transportation,Transportation +530438,Transportation,Transportation +530437,Transportation,Transportation +527560,Transportation,Transportation +527559,Transportation,Transportation +525035,Transportation,Transportation +525034,Transportation,Transportation +525033,Transportation,Transportation +525029,Transportation,Transportation +525017,Transportation,Transportation +521501,Transportation,Transportation +521500,Transportation,Transportation +521498,Transportation,Transportation +521494,Transportation,Transportation +511987,Transportation,Transportation +509595,Transportation,Transportation +508640,Transportation,Transportation +508639,Transportation,Transportation +503877,Transportation,Transportation +503873,Transportation,Transportation +489292,Transportation,Transportation +489291,Transportation,Transportation +486340,Transportation,Transportation +486337,Transportation,Transportation +483814,Transportation,Transportation +483812,Transportation,Transportation +481337,Transportation,Transportation +479338,Transportation,Transportation +479337,Transportation,Transportation +474264,Transportation,Transportation +471796,Transportation,Transportation +471793,Transportation,Transportation +471790,Transportation,Transportation +471787,Transportation,Transportation +462211,Transportation,Transportation +536328,Consumer Issues,Consumer Issues +536326,Consumer Issues,Consumer Issues +536325,Consumer Issues,Consumer Issues +536115,Consumer Issues,Consumer Issues +536114,Consumer Issues,Consumer Issues +536111,Consumer Issues,Consumer Issues +530282,Consumer Issues,Consumer Issues +516700,Consumer Issues,Consumer Issues +515718,Consumer Issues,Consumer Issues +515715,Consumer Issues,Consumer Issues +505905,Consumer Issues,Consumer Issues +494306,Consumer Issues,Consumer Issues +491337,Consumer Issues,Consumer Issues +491319,Consumer Issues,Consumer Issues +488354,Consumer Issues,Consumer Issues +488352,Consumer Issues,Consumer Issues +488351,Consumer Issues,Consumer Issues +469961,Consumer Issues,Consumer Issues +448352,Consumer Issues,Consumer Issues +448351,Consumer Issues,Consumer Issues +440324,Consumer Issues,Consumer Issues +437952,Consumer Issues,Consumer Issues +437950,Consumer Issues,Consumer Issues +436400,Consumer Issues,Consumer Issues +435617,Consumer Issues,Consumer Issues +422385,Consumer Issues,Consumer Issues +418383,Consumer Issues,Consumer Issues +418382,Consumer Issues,Consumer Issues +418133,Consumer Issues,Consumer Issues +418132,Consumer Issues,Consumer Issues +416852,Consumer Issues,Consumer Issues +416849,Consumer Issues,Consumer Issues +416833,Consumer Issues,Consumer Issues +416830,Consumer Issues,Consumer Issues +416828,Consumer Issues,Consumer Issues +416826,Consumer Issues,Consumer Issues +404211,Consumer Issues,Consumer Issues +404209,Consumer Issues,Consumer Issues +400858,Consumer Issues,Consumer Issues +400854,Consumer Issues,Consumer Issues +400851,Consumer Issues,Consumer Issues +400846,Consumer Issues,Consumer Issues +400841,Consumer Issues,Consumer Issues +396383,Consumer Issues,Consumer Issues +396380,Consumer Issues,Consumer Issues +396378,Consumer Issues,Consumer Issues +396376,Consumer Issues,Consumer Issues +542074,Consumer Issues,Consumer Issues +542072,Consumer Issues,Consumer Issues +540818,Consumer Issues,Consumer Issues +539017,Consumer Issues,Consumer Issues +515718,Financial Institutions,Financial Institutions +515715,Financial Institutions,Financial Institutions +454240,Financial Institutions,Financial Institutions +454238,Financial Institutions,Financial Institutions +448352,Financial Institutions,Financial Institutions +448351,Financial Institutions,Financial Institutions +440324,Financial Institutions,Financial Institutions +437952,Financial Institutions,Financial Institutions +437950,Financial Institutions,Financial Institutions +436400,Financial Institutions,Financial Institutions +435617,Financial Institutions,Financial Institutions +422385,Financial Institutions,Financial Institutions +418386,Financial Institutions,Financial Institutions +418383,Financial Institutions,Financial Institutions +418382,Financial Institutions,Financial Institutions +418133,Financial Institutions,Financial Institutions +418132,Financial Institutions,Financial Institutions +416852,Financial Institutions,Financial Institutions +416849,Financial Institutions,Financial Institutions +416833,Financial Institutions,Financial Institutions +416830,Financial Institutions,Financial Institutions +416828,Financial Institutions,Financial Institutions +416826,Financial Institutions,Financial Institutions +404211,Financial Institutions,Financial Institutions +404209,Financial Institutions,Financial Institutions +400858,Financial Institutions,Financial Institutions +400854,Financial Institutions,Financial Institutions +400851,Financial Institutions,Financial Institutions +400846,Financial Institutions,Financial Institutions +400841,Financial Institutions,Financial Institutions +396383,Financial Institutions,Financial Institutions +396380,Financial Institutions,Financial Institutions +396378,Financial Institutions,Financial Institutions +396376,Financial Institutions,Financial Institutions +542074,Financial Institutions,Financial Institutions +542072,Financial Institutions,Financial Institutions +540818,Financial Institutions,Financial Institutions +539017,Financial Institutions,Financial Institutions +536329,Financial Institutions,Financial Institutions +536328,Financial Institutions,Financial Institutions +536326,Financial Institutions,Financial Institutions +536325,Financial Institutions,Financial Institutions +536115,Financial Institutions,Financial Institutions +536114,Financial Institutions,Financial Institutions +536111,Financial Institutions,Financial Institutions +535872,Financial Institutions,Financial Institutions +530282,Financial Institutions,Financial Institutions +535872,Industry,Industry +505905,Industry,Industry +304369,Industry,Industry +469961,Industry,Industry +195566,Consumer Issues,Consumer Issues +195565,Consumer Issues,Consumer Issues +448855,Environment,Environment +448854,Environment,Environment +162667,Environment,Environment +195566,Environment,Environment +195565,Environment,Environment +195564,Environment,Environment +173032,Environment,Environment +364342,Environment,Environment +436724,Environment,Environment +431028,Environment,Environment +408579,Environment,Environment +406494,Environment,Environment +404831,Environment,Environment +386765,Environment,Environment +380591,Environment,Environment +380477,Environment,Environment +542953,Environment,Environment +540607,Environment,Environment +540606,Environment,Environment +540605,Environment,Environment +540604,Environment,Environment +540603,Environment,Environment +509647,Environment,Environment +509646,Environment,Environment +507134,Environment,Environment +481752,Environment,Environment +466503,Environment,Environment +463102,Environment,Environment +463101,Environment,Environment +461982,Environment,Environment +461981,Environment,Environment +461979,Environment,Environment +461978,Environment,Environment +497767,Industry,Industry +436727,Industry,Industry +116114,Industry,Industry +116062,Industry,Industry +116061,Industry,Industry +116059,Industry,Industry +90957,Industry,Industry +90955,Industry,Industry +89016,Industry,Industry +89015,Industry,Industry +149797,Industry,Industry +116121,Industry,Industry +116119,Industry,Industry +116117,Industry,Industry +365172,Industry,Industry +365167,Industry,Industry +365166,Industry,Industry +431032,Industry,Industry +415275,Industry,Industry +408579,Industry,Industry +406494,Industry,Industry +394802,Industry,Industry +380438,Industry,Industry +380437,Industry,Industry +380420,Industry,Industry +542956,Industry,Industry +542954,Industry,Industry +542953,Industry,Industry +540607,Industry,Industry +540606,Industry,Industry +540605,Industry,Industry +540604,Industry,Industry +431216,International Trade,International Trade +542954,International Trade,International Trade +90954,International Trade,International Trade +81774,International Trade,International Trade +168725,International Trade,International Trade +168707,International Trade,International Trade +168684,International Trade,International Trade +168681,International Trade,International Trade +168679,International Trade,International Trade +168674,International Trade,International Trade +168669,International Trade,International Trade +168344,International Trade,International Trade +168343,International Trade,International Trade +168342,International Trade,International Trade +168341,International Trade,International Trade +168340,International Trade,International Trade +168339,International Trade,International Trade +168338,International Trade,International Trade +168337,International Trade,International Trade +168324,International Trade,International Trade +406491,International Trade,International Trade +404840,International Trade,International Trade +404839,International Trade,International Trade +404838,International Trade,International Trade +397427,International Trade,International Trade +397425,International Trade,International Trade +397424,International Trade,International Trade +394800,International Trade,International Trade +393370,International Trade,International Trade +365172,International Trade,International Trade +365171,International Trade,International Trade +269709,International Trade,International Trade +258506,International Trade,International Trade +258498,International Trade,International Trade +448855,Taxation and Finance,Taxation and Finance +448854,Taxation and Finance,Taxation and Finance +89014,Taxation and Finance,Taxation and Finance +81774,Taxation and Finance,Taxation and Finance +151437,Taxation and Finance,Taxation and Finance +116116,Taxation and Finance,Taxation and Finance +116115,Taxation and Finance,Taxation and Finance +397427,Taxation and Finance,Taxation and Finance +397424,Taxation and Finance,Taxation and Finance +394801,Taxation and Finance,Taxation and Finance +394800,Taxation and Finance,Taxation and Finance +393371,Taxation and Finance,Taxation and Finance +393370,Taxation and Finance,Taxation and Finance +463103,Taxation and Finance,Taxation and Finance +448861,Taxation and Finance,Taxation and Finance +448860,Taxation and Finance,Taxation and Finance +448859,Taxation and Finance,Taxation and Finance +489186,Transportation,Transportation +481752,Transportation,Transportation +89016,Transportation,Transportation +168339,Transportation,Transportation +168338,Transportation,Transportation +168337,Transportation,Transportation +168336,Transportation,Transportation +168335,Transportation,Transportation +168334,Transportation,Transportation +168333,Transportation,Transportation +168332,Transportation,Transportation +168331,Transportation,Transportation +168330,Transportation,Transportation +168329,Transportation,Transportation +168328,Transportation,Transportation +168327,Transportation,Transportation +168326,Transportation,Transportation +168325,Transportation,Transportation +386766,Transportation,Transportation +386765,Transportation,Transportation +386764,Transportation,Transportation +380591,Transportation,Transportation +380477,Transportation,Transportation +380438,Transportation,Transportation +380437,Transportation,Transportation +380420,Transportation,Transportation +380414,Transportation,Transportation +368802,Transportation,Transportation +368793,Transportation,Transportation +365169,Transportation,Transportation +173032,Transportation,Transportation +169088,Transportation,Transportation +168707,Transportation,Transportation +168704,Transportation,Transportation +168684,Transportation,Transportation +168681,Transportation,Transportation +168679,Transportation,Transportation +168674,Transportation,Transportation +168669,Transportation,Transportation +168348,Transportation,Transportation +168347,Transportation,Transportation +168346,Transportation,Transportation +168345,Transportation,Transportation +168340,Transportation,Transportation +463104,Transportation,Transportation +463102,Transportation,Transportation +463101,Transportation,Transportation +461982,Transportation,Transportation +461981,Transportation,Transportation +461979,Transportation,Transportation +461978,Transportation,Transportation +461977,Transportation,Transportation +451376,Transportation,Transportation +448861,Transportation,Transportation +448860,Transportation,Transportation +448859,Transportation,Transportation +448856,Transportation,Transportation +448855,Transportation,Transportation +448854,Transportation,Transportation +443335,Transportation,Transportation +442996,Transportation,Transportation +442995,Transportation,Transportation +436727,Transportation,Transportation +436724,Transportation,Transportation +431028,Transportation,Transportation +424827,Transportation,Transportation +415275,Transportation,Transportation +411490,Transportation,Transportation +408579,Transportation,Transportation +406494,Transportation,Transportation +404849,Transportation,Transportation +404848,Transportation,Transportation +404847,Transportation,Transportation +404846,Transportation,Transportation +404844,Transportation,Transportation +404843,Transportation,Transportation +404841,Transportation,Transportation +404837,Transportation,Transportation +404836,Transportation,Transportation +404835,Transportation,Transportation +404834,Transportation,Transportation +404833,Transportation,Transportation +404831,Transportation,Transportation +404830,Transportation,Transportation +397425,Transportation,Transportation +394801,Transportation,Transportation +393371,Transportation,Transportation +393370,Transportation,Transportation +393369,Transportation,Transportation +386770,Transportation,Transportation +386769,Transportation,Transportation +386768,Transportation,Transportation +386767,Transportation,Transportation +542956,Transportation,Transportation +542954,Transportation,Transportation +542953,Transportation,Transportation +540607,Transportation,Transportation +540606,Transportation,Transportation +540605,Transportation,Transportation +540604,Transportation,Transportation +540603,Transportation,Transportation +509647,Transportation,Transportation +509646,Transportation,Transportation +507134,Transportation,Transportation +497767,Transportation,Transportation +147896,Transportation,Transportation +116337,Health,Health +147074,Other,Internet Security +142554,Other,Internet Security +137694,Other,Internet Security +111147,Other,Internet Security +111146,Other,Internet Security +111145,Other,Internet Security +111037,Other,Internet Security +111036,Other,Internet Security +111035,Other,Internet Security +263049,Agriculture,Agriculture +263020,Agriculture,Agriculture +176945,Agriculture,Agriculture +109735,Agriculture,Agriculture +194716,Agriculture,Agriculture +194702,Agriculture,Agriculture +176947,Agriculture,Agriculture +162147,Environment,Environment +392498,Environment,Environment +162146,Environment,Environment +151877,Environment,Environment +131515,Environment,Environment +117556,Environment,Environment +109730,Environment,Environment +100945,Environment,Environment +188853,Environment,Environment +171895,Environment,Environment +274990,Financial Institutions,Financial Institutions +240655,Financial Institutions,Financial Institutions +504922,Health,Health +503342,Health,Health +113175,Health,Health +396879,Health,Health +522246,Health,Health +503342,International Relations,International Relations +483168,International Relations,International Relations +113175,International Relations,International Relations +113174,International Relations,International Relations +109735,International Relations,International Relations +106373,International Relations,International Relations +230240,International Relations,International Relations +162148,International Relations,International Relations +145911,International Relations,International Relations +396882,International Relations,International Relations +396864,International Relations,International Relations +384869,International Relations,International Relations +535967,International Relations,International Relations +535965,International Trade,International Trade +483171,International Trade,International Trade +93195,International Trade,International Trade +162148,International Trade,International Trade +396851,International Trade,International Trade +538451,International Trade,International Trade +538447,International Trade,International Trade +538441,International Trade,International Trade +95779,Other,International Development Assistance +95778,Other,International Development Assistance +93196,Other,International Development Assistance +89274,Other,International Development Assistance +87814,Other,International Development Assistance +85427,Other,International Development Assistance +119474,Other,International Development Assistance +100886,Other,International Development Assistance +100882,Other,International Development Assistance +95794,Other,International Development Assistance +119474,Other,Women's Rights and Gender Equality +93198,Other,Women's Rights and Gender Equality +124195,Other,Women's Rights and Gender Equality +124194,Other,Human Rights +109787,Other,Human Rights +129059,Other,Human Rights +129044,Other,Human Rights +87814,Other,"Peacebuilding, Capacity Building, Civil Society Development" +438502,Energy,Energy +438487,Energy,Energy +88056,Energy,Energy +77484,Energy,Energy +156925,Energy,Energy +153779,Energy,Energy +153261,Energy,Energy +153260,Energy,Energy +153259,Energy,Energy +153258,Energy,Energy +152644,Energy,Energy +145964,Energy,Energy +142441,Energy,Energy +132479,Energy,Energy +132478,Energy,Energy +128695,Energy,Energy +125312,Energy,Energy +125311,Energy,Energy +125310,Energy,Energy +125309,Energy,Energy +125303,Energy,Energy +117156,Energy,Energy +117155,Energy,Energy +101104,Energy,Energy +170538,Energy,Energy +170536,Energy,Energy +168931,Energy,Energy +168869,Energy,Energy +168854,Energy,Energy +166017,Energy,Energy +166014,Energy,Energy +166012,Energy,Energy +166011,Energy,Energy +166010,Energy,Energy +166008,Energy,Energy +165999,Energy,Energy +164826,Energy,Energy +164825,Energy,Energy +164824,Energy,Energy +164064,Energy,Energy +164063,Energy,Energy +164062,Energy,Energy +164061,Energy,Energy +164058,Energy,Energy +164057,Energy,Energy +163173,Energy,Energy +163172,Energy,Energy +163171,Energy,Energy +163170,Energy,Energy +162826,Energy,Energy +162627,Energy,Energy +162626,Energy,Energy +162625,Energy,Energy +162624,Energy,Energy +162623,Energy,Energy +162622,Energy,Energy +162621,Energy,Energy +162620,Energy,Energy +162619,Energy,Energy +162618,Energy,Energy +162617,Energy,Energy +162616,Energy,Energy +162614,Energy,Energy +162613,Energy,Energy +162612,Energy,Energy +162611,Energy,Energy +162610,Energy,Energy +162609,Energy,Energy +162608,Energy,Energy +162595,Energy,Energy +160476,Energy,Energy +160475,Energy,Energy +160474,Energy,Energy +160472,Energy,Energy +160258,Energy,Energy +160257,Energy,Energy +160256,Energy,Energy +160254,Energy,Energy +160253,Energy,Energy +280495,Energy,Energy +280494,Energy,Energy +280493,Energy,Energy +273523,Energy,Energy +273521,Energy,Energy +273520,Energy,Energy +273518,Energy,Energy +268438,Energy,Energy +263714,Energy,Energy +263713,Energy,Energy +263712,Energy,Energy +263711,Energy,Energy +258889,Energy,Energy +254406,Energy,Energy +254405,Energy,Energy +254403,Energy,Energy +254401,Energy,Energy +254399,Energy,Energy +254397,Energy,Energy +254396,Energy,Energy +251441,Energy,Energy +251440,Energy,Energy +251439,Energy,Energy +251438,Energy,Energy +251024,Energy,Energy +251023,Energy,Energy +251022,Energy,Energy +251021,Energy,Energy +251020,Energy,Energy +251019,Energy,Energy +251018,Energy,Energy +251017,Energy,Energy +251016,Energy,Energy +251014,Energy,Energy +251007,Energy,Energy +251006,Energy,Energy +251005,Energy,Energy +248510,Energy,Energy +245413,Energy,Energy +245410,Energy,Energy +245409,Energy,Energy +245408,Energy,Energy +245397,Energy,Energy +240653,Energy,Energy +240652,Energy,Energy +240651,Energy,Energy +237629,Energy,Energy +233880,Energy,Energy +233879,Energy,Energy +233878,Energy,Energy +233877,Energy,Energy +233868,Energy,Energy +233866,Energy,Energy +230445,Energy,Energy +225467,Energy,Energy +223657,Energy,Energy +223656,Energy,Energy +223655,Energy,Energy +223654,Energy,Energy +223652,Energy,Energy +218170,Energy,Energy +212127,Energy,Energy +209867,Energy,Energy +209229,Energy,Energy +207672,Energy,Energy +207670,Energy,Energy +202964,Energy,Energy +200554,Energy,Energy +200359,Energy,Energy +200353,Energy,Energy +200349,Energy,Energy +192043,Energy,Energy +192042,Energy,Energy +192041,Energy,Energy +192040,Energy,Energy +192039,Energy,Energy +192038,Energy,Energy +192037,Energy,Energy +192036,Energy,Energy +192035,Energy,Energy +192033,Energy,Energy +192031,Energy,Energy +188698,Energy,Energy +188697,Energy,Energy +188696,Energy,Energy +188692,Energy,Energy +188690,Energy,Energy +188689,Energy,Energy +188688,Energy,Energy +188687,Energy,Energy +188686,Energy,Energy +188684,Energy,Energy +188683,Energy,Energy +188682,Energy,Energy +188680,Energy,Energy +188679,Energy,Energy +188676,Energy,Energy +188675,Energy,Energy +188674,Energy,Energy +188673,Energy,Energy +180486,Energy,Energy +180484,Energy,Energy +180483,Energy,Energy +180481,Energy,Energy +180479,Energy,Energy +176707,Energy,Energy +176706,Energy,Energy +176705,Energy,Energy +176704,Energy,Energy +176685,Energy,Energy +176684,Energy,Energy +176325,Energy,Energy +170549,Energy,Energy +170548,Energy,Energy +170547,Energy,Energy +170546,Energy,Energy +170545,Energy,Energy +438482,Energy,Energy +438371,Energy,Energy +438364,Energy,Energy +438358,Energy,Energy +435363,Energy,Energy +435362,Energy,Energy +435360,Energy,Energy +435359,Energy,Energy +435358,Energy,Energy +435357,Energy,Energy +435355,Energy,Energy +435354,Energy,Energy +435353,Energy,Energy +435352,Energy,Energy +435351,Energy,Energy +433673,Energy,Energy +433670,Energy,Energy +433669,Energy,Energy +433668,Energy,Energy +433666,Energy,Energy +433664,Energy,Energy +433661,Energy,Energy +433659,Energy,Energy +433657,Energy,Energy +433650,Energy,Energy +433648,Energy,Energy +433645,Energy,Energy +433643,Energy,Energy +433642,Energy,Energy +433640,Energy,Energy +433639,Energy,Energy +433638,Energy,Energy +432027,Energy,Energy +432025,Energy,Energy +432022,Energy,Energy +432020,Energy,Energy +432018,Energy,Energy +432017,Energy,Energy +432016,Energy,Energy +432015,Energy,Energy +432014,Energy,Energy +432013,Energy,Energy +431060,Energy,Energy +431056,Energy,Energy +431054,Energy,Energy +431050,Energy,Energy +430989,Energy,Energy +430985,Energy,Energy +430982,Energy,Energy +430980,Energy,Energy +430977,Energy,Energy +430976,Energy,Energy +430963,Energy,Energy +430958,Energy,Energy +428883,Energy,Energy +428882,Energy,Energy +428881,Energy,Energy +428880,Energy,Energy +428879,Energy,Energy +428878,Energy,Energy +428876,Energy,Energy +428831,Energy,Energy +428819,Energy,Energy +428811,Energy,Energy +426185,Energy,Energy +426184,Energy,Energy +426182,Energy,Energy +425829,Energy,Energy +423990,Energy,Energy +423986,Energy,Energy +423983,Energy,Energy +423980,Energy,Energy +423978,Energy,Energy +423977,Energy,Energy +423975,Energy,Energy +423972,Energy,Energy +423969,Energy,Energy +421715,Energy,Energy +421714,Energy,Energy +421713,Energy,Energy +421712,Energy,Energy +421711,Energy,Energy +418884,Energy,Energy +418883,Energy,Energy +417935,Energy,Energy +417932,Energy,Energy +417931,Energy,Energy +415006,Energy,Energy +415004,Energy,Energy +415000,Energy,Energy +414997,Energy,Energy +414996,Energy,Energy +414995,Energy,Energy +414993,Energy,Energy +412958,Energy,Energy +409412,Energy,Energy +409203,Energy,Energy +409202,Energy,Energy +409201,Energy,Energy +409200,Energy,Energy +409199,Energy,Energy +409196,Energy,Energy +409195,Energy,Energy +409099,Energy,Energy +409097,Energy,Energy +407620,Energy,Energy +407619,Energy,Energy +407618,Energy,Energy +406572,Energy,Energy +406571,Energy,Energy +406570,Energy,Energy +404897,Energy,Energy +404896,Energy,Energy +403427,Energy,Energy +403425,Energy,Energy +403423,Energy,Energy +402741,Energy,Energy +402739,Energy,Energy +402738,Energy,Energy +402736,Energy,Energy +402735,Energy,Energy +402730,Energy,Energy +400241,Energy,Energy +400239,Energy,Energy +400237,Energy,Energy +400232,Energy,Energy +400229,Energy,Energy +398298,Energy,Energy +398291,Energy,Energy +398289,Energy,Energy +395161,Energy,Energy +395160,Energy,Energy +395159,Energy,Energy +395158,Energy,Energy +395153,Energy,Energy +395152,Energy,Energy +395151,Energy,Energy +395149,Energy,Energy +395148,Energy,Energy +380987,Energy,Energy +380986,Energy,Energy +380985,Energy,Energy +380984,Energy,Energy +380982,Energy,Energy +380981,Energy,Energy +380979,Energy,Energy +375604,Energy,Energy +375603,Energy,Energy +375602,Energy,Energy +375601,Energy,Energy +375600,Energy,Energy +375599,Energy,Energy +367911,Energy,Energy +367908,Energy,Energy +367907,Energy,Energy +367905,Energy,Energy +367870,Energy,Energy +360006,Energy,Energy +360005,Energy,Energy +353321,Energy,Energy +353320,Energy,Energy +353319,Energy,Energy +350637,Energy,Energy +350636,Energy,Energy +350635,Energy,Energy +337724,Energy,Energy +337723,Energy,Energy +337722,Energy,Energy +337720,Energy,Energy +331207,Energy,Energy +327285,Energy,Energy +327284,Energy,Energy +327281,Energy,Energy +327177,Energy,Energy +321589,Energy,Energy +316074,Energy,Energy +312197,Energy,Energy +309611,Energy,Energy +309610,Energy,Energy +309609,Energy,Energy +309608,Energy,Energy +309607,Energy,Energy +309606,Energy,Energy +286882,Energy,Energy +280499,Energy,Energy +280498,Energy,Energy +280497,Energy,Energy +280496,Energy,Energy +541015,Energy,Energy +534312,Energy,Energy +534308,Energy,Energy +534306,Energy,Energy +534305,Energy,Energy +534303,Energy,Energy +534302,Energy,Energy +534299,Energy,Energy +534285,Energy,Energy +534280,Energy,Energy +521716,Energy,Energy +519477,Energy,Energy +486935,Energy,Energy +475099,Energy,Energy +472561,Energy,Energy +469506,Energy,Energy +469504,Energy,Energy +463421,Energy,Energy +463420,Energy,Energy +449413,Energy,Energy +449411,Energy,Energy +449410,Energy,Energy +449408,Energy,Energy +449407,Energy,Energy +449406,Energy,Energy +447149,Energy,Energy +447148,Energy,Energy +447147,Energy,Energy +444676,Energy,Energy +444675,Energy,Energy +443678,Energy,Energy +443669,Energy,Energy +443663,Energy,Energy +443659,Energy,Energy +443654,Energy,Energy +443651,Energy,Energy +441772,Energy,Energy +441771,Energy,Energy +441769,Energy,Energy +441768,Energy,Energy +441766,Energy,Energy +441764,Energy,Energy +441756,Energy,Energy +438757,Energy,Energy +438755,Energy,Energy +438754,Energy,Energy +438751,Energy,Energy +438748,Energy,Energy +438745,Energy,Energy +438744,Energy,Energy +438738,Energy,Energy +438732,Energy,Energy +438728,Energy,Energy +438570,Energy,Energy +438543,Energy,Energy +438536,Energy,Energy +407619,Environment,Environment +407618,Environment,Environment +101105,Environment,Environment +101101,Environment,Environment +97301,Environment,Environment +88062,Environment,Environment +77484,Environment,Environment +126176,Environment,Environment +125302,Environment,Environment +125301,Environment,Environment +101112,Environment,Environment +101109,Environment,Environment +176684,Environment,Environment +176325,Environment,Environment +170549,Environment,Environment +170548,Environment,Environment +170547,Environment,Environment +170546,Environment,Environment +170545,Environment,Environment +170538,Environment,Environment +170536,Environment,Environment +164826,Environment,Environment +164064,Environment,Environment +164063,Environment,Environment +164062,Environment,Environment +164061,Environment,Environment +237629,Environment,Environment +233880,Environment,Environment +223655,Environment,Environment +218170,Environment,Environment +209867,Environment,Environment +207672,Environment,Environment +207670,Environment,Environment +192033,Environment,Environment +188687,Environment,Environment +188683,Environment,Environment +188682,Environment,Environment +188675,Environment,Environment +188674,Environment,Environment +188673,Environment,Environment +176685,Environment,Environment +406572,Environment,Environment +406570,Environment,Environment +404897,Environment,Environment +404896,Environment,Environment +403423,Environment,Environment +402741,Environment,Environment +402739,Environment,Environment +402738,Environment,Environment +402735,Environment,Environment +402730,Environment,Environment +400241,Environment,Environment +400239,Environment,Environment +400237,Environment,Environment +400232,Environment,Environment +400229,Environment,Environment +398298,Environment,Environment +398291,Environment,Environment +398289,Environment,Environment +395161,Environment,Environment +395160,Environment,Environment +395159,Environment,Environment +395158,Environment,Environment +395153,Environment,Environment +395151,Environment,Environment +395149,Environment,Environment +380983,Environment,Environment +380980,Environment,Environment +375604,Environment,Environment +375603,Environment,Environment +375602,Environment,Environment +375601,Environment,Environment +375600,Environment,Environment +367907,Environment,Environment +367870,Environment,Environment +350634,Environment,Environment +337724,Environment,Environment +337723,Environment,Environment +337722,Environment,Environment +337720,Environment,Environment +331207,Environment,Environment +327285,Environment,Environment +327284,Environment,Environment +327281,Environment,Environment +321589,Environment,Environment +316074,Environment,Environment +309611,Environment,Environment +309609,Environment,Environment +263714,Environment,Environment +251021,Environment,Environment +251018,Environment,Environment +541015,Environment,Environment +534305,Environment,Environment +519477,Environment,Environment +426185,Environment,Environment +426184,Environment,Environment +426182,Environment,Environment +425829,Environment,Environment +423990,Environment,Environment +423986,Environment,Environment +423983,Environment,Environment +423980,Environment,Environment +423978,Environment,Environment +423975,Environment,Environment +421715,Environment,Environment +421714,Environment,Environment +421713,Environment,Environment +421712,Environment,Environment +421711,Environment,Environment +418884,Environment,Environment +418883,Environment,Environment +417935,Environment,Environment +417932,Environment,Environment +417931,Environment,Environment +415006,Environment,Environment +415004,Environment,Environment +414997,Environment,Environment +414995,Environment,Environment +412958,Environment,Environment +409412,Environment,Environment +409202,Environment,Environment +409201,Environment,Environment +409199,Environment,Environment +409195,Environment,Environment +409099,Environment,Environment +409097,Environment,Environment +212127,Industry,Industry +209867,Industry,Industry +88051,Industry,Industry +85315,Industry,Industry +85314,Industry,Industry +83065,Industry,Industry +83063,Industry,Industry +188692,Industry,Industry +188689,Industry,Industry +188688,Industry,Industry +188684,Industry,Industry +188680,Industry,Industry +188679,Industry,Industry +188676,Industry,Industry +176685,Industry,Industry +176684,Industry,Industry +170549,Industry,Industry +170548,Industry,Industry +170547,Industry,Industry +170546,Industry,Industry +170545,Industry,Industry +170538,Industry,Industry +170536,Industry,Industry +168931,Industry,Industry +168869,Industry,Industry +168854,Industry,Industry +166017,Industry,Industry +166014,Industry,Industry +166012,Industry,Industry +166011,Industry,Industry +166010,Industry,Industry +166008,Industry,Industry +165999,Industry,Industry +164825,Industry,Industry +164824,Industry,Industry +164057,Industry,Industry +398298,Industry,Industry +398291,Industry,Industry +350636,Industry,Industry +176684,Infrastructure,Infrastructure +176325,Infrastructure,Infrastructure +395160,International Relations,International Relations +395153,International Relations,International Relations +165999,International Relations,International Relations +395158,International Trade,International Trade +395148,International Trade,International Trade +176685,International Trade,International Trade +176684,International Trade,International Trade +353321,International Trade,International Trade +254406,International Trade,International Trade +254405,International Trade,International Trade +254403,International Trade,International Trade +254401,International Trade,International Trade +254399,International Trade,International Trade +254397,International Trade,International Trade +254396,International Trade,International Trade +414996,International Trade,International Trade +403427,International Trade,International Trade +486935,Taxation and Finance,Taxation and Finance +475099,Taxation and Finance,Taxation and Finance +109016,Taxation and Finance,Taxation and Finance +93710,Taxation and Finance,Taxation and Finance +164826,Taxation and Finance,Taxation and Finance +164825,Taxation and Finance,Taxation and Finance +164824,Taxation and Finance,Taxation and Finance +163173,Taxation and Finance,Taxation and Finance +163172,Taxation and Finance,Taxation and Finance +163171,Taxation and Finance,Taxation and Finance +163170,Taxation and Finance,Taxation and Finance +162826,Taxation and Finance,Taxation and Finance +162627,Taxation and Finance,Taxation and Finance +162626,Taxation and Finance,Taxation and Finance +162625,Taxation and Finance,Taxation and Finance +162624,Taxation and Finance,Taxation and Finance +162623,Taxation and Finance,Taxation and Finance +162622,Taxation and Finance,Taxation and Finance +162621,Taxation and Finance,Taxation and Finance +162620,Taxation and Finance,Taxation and Finance +162619,Taxation and Finance,Taxation and Finance +162618,Taxation and Finance,Taxation and Finance +162617,Taxation and Finance,Taxation and Finance +162616,Taxation and Finance,Taxation and Finance +162614,Taxation and Finance,Taxation and Finance +162613,Taxation and Finance,Taxation and Finance +162612,Taxation and Finance,Taxation and Finance +162611,Taxation and Finance,Taxation and Finance +162610,Taxation and Finance,Taxation and Finance +162609,Taxation and Finance,Taxation and Finance +160476,Taxation and Finance,Taxation and Finance +160258,Taxation and Finance,Taxation and Finance +160257,Taxation and Finance,Taxation and Finance +160256,Taxation and Finance,Taxation and Finance +160254,Taxation and Finance,Taxation and Finance +160253,Taxation and Finance,Taxation and Finance +156925,Taxation and Finance,Taxation and Finance +152644,Taxation and Finance,Taxation and Finance +142442,Taxation and Finance,Taxation and Finance +245410,Taxation and Finance,Taxation and Finance +245409,Taxation and Finance,Taxation and Finance +245408,Taxation and Finance,Taxation and Finance +240653,Taxation and Finance,Taxation and Finance +240652,Taxation and Finance,Taxation and Finance +240651,Taxation and Finance,Taxation and Finance +192043,Taxation and Finance,Taxation and Finance +192041,Taxation and Finance,Taxation and Finance +192037,Taxation and Finance,Taxation and Finance +192036,Taxation and Finance,Taxation and Finance +192035,Taxation and Finance,Taxation and Finance +192031,Taxation and Finance,Taxation and Finance +176685,Taxation and Finance,Taxation and Finance +176684,Taxation and Finance,Taxation and Finance +170549,Taxation and Finance,Taxation and Finance +170548,Taxation and Finance,Taxation and Finance +170547,Taxation and Finance,Taxation and Finance +170546,Taxation and Finance,Taxation and Finance +170545,Taxation and Finance,Taxation and Finance +170538,Taxation and Finance,Taxation and Finance +170536,Taxation and Finance,Taxation and Finance +168931,Taxation and Finance,Taxation and Finance +168869,Taxation and Finance,Taxation and Finance +168854,Taxation and Finance,Taxation and Finance +166017,Taxation and Finance,Taxation and Finance +166014,Taxation and Finance,Taxation and Finance +166012,Taxation and Finance,Taxation and Finance +166011,Taxation and Finance,Taxation and Finance +166010,Taxation and Finance,Taxation and Finance +166008,Taxation and Finance,Taxation and Finance +412958,Taxation and Finance,Taxation and Finance +395161,Taxation and Finance,Taxation and Finance +395160,Taxation and Finance,Taxation and Finance +395159,Taxation and Finance,Taxation and Finance +415000,Transportation,Transportation +402739,Transportation,Transportation +162608,Transportation,Transportation +180481,Transportation,Transportation +180479,Transportation,Transportation +176685,Transportation,Transportation +176684,Transportation,Transportation +176325,Transportation,Transportation +170548,Transportation,Transportation +170547,Transportation,Transportation +170546,Transportation,Transportation +170545,Transportation,Transportation +170538,Transportation,Transportation +170536,Transportation,Transportation +168931,Transportation,Transportation +168869,Transportation,Transportation +168854,Transportation,Transportation +166017,Transportation,Transportation +166014,Transportation,Transportation +166012,Transportation,Transportation +166011,Transportation,Transportation +166010,Transportation,Transportation +166008,Transportation,Transportation +165999,Transportation,Transportation +164826,Transportation,Transportation +164064,Transportation,Transportation +164063,Transportation,Transportation +164062,Transportation,Transportation +164061,Transportation,Transportation +163173,Transportation,Transportation +163172,Transportation,Transportation +163171,Transportation,Transportation +163170,Transportation,Transportation +162826,Transportation,Transportation +162627,Transportation,Transportation +162626,Transportation,Transportation +162625,Transportation,Transportation +162624,Transportation,Transportation +162623,Transportation,Transportation +162622,Transportation,Transportation +162621,Transportation,Transportation +162620,Transportation,Transportation +162619,Transportation,Transportation +162618,Transportation,Transportation +162617,Transportation,Transportation +162616,Transportation,Transportation +162614,Transportation,Transportation +162613,Transportation,Transportation +162612,Transportation,Transportation +162611,Transportation,Transportation +162610,Transportation,Transportation +162609,Transportation,Transportation +209229,Transportation,Transportation +200359,Transportation,Transportation +200353,Transportation,Transportation +200349,Transportation,Transportation +192043,Transportation,Transportation +192042,Transportation,Transportation +192041,Transportation,Transportation +192040,Transportation,Transportation +192039,Transportation,Transportation +192038,Transportation,Transportation +192037,Transportation,Transportation +192036,Transportation,Transportation +192035,Transportation,Transportation +192033,Transportation,Transportation +192031,Transportation,Transportation +188698,Transportation,Transportation +188697,Transportation,Transportation +188692,Transportation,Transportation +188689,Transportation,Transportation +188675,Transportation,Transportation +188674,Transportation,Transportation +188673,Transportation,Transportation +180486,Transportation,Transportation +180484,Transportation,Transportation +423850,Environment,Environment +422244,Environment,Environment +374690,Environment,Environment +374686,Environment,Environment +421259,Environment,Environment +421257,Environment,Environment +421256,Environment,Environment +421255,Environment,Environment +421254,Environment,Environment +421253,Environment,Environment +419955,Environment,Environment +415125,Environment,Environment +415124,Environment,Environment +415123,Environment,Environment +415122,Environment,Environment +415121,Environment,Environment +415120,Environment,Environment +415118,Environment,Environment +415117,Environment,Environment +415115,Environment,Environment +415114,Environment,Environment +415112,Environment,Environment +415111,Environment,Environment +415110,Environment,Environment +415109,Environment,Environment +415108,Environment,Environment +415107,Environment,Environment +415106,Environment,Environment +415105,Environment,Environment +415104,Environment,Environment +415102,Environment,Environment +415101,Environment,Environment +415100,Environment,Environment +412979,Environment,Environment +411971,Environment,Environment +411970,Environment,Environment +411969,Environment,Environment +411968,Environment,Environment +411967,Environment,Environment +411966,Environment,Environment +411965,Environment,Environment +411964,Environment,Environment +411963,Environment,Environment +411962,Environment,Environment +411961,Environment,Environment +410086,Environment,Environment +409150,Environment,Environment +409149,Environment,Environment +409147,Environment,Environment +409146,Environment,Environment +409145,Environment,Environment +409142,Environment,Environment +409140,Environment,Environment +408055,Environment,Environment +407574,Environment,Environment +407572,Environment,Environment +407571,Environment,Environment +407569,Environment,Environment +407568,Environment,Environment +407566,Environment,Environment +407564,Environment,Environment +406388,Environment,Environment +406387,Environment,Environment +406386,Environment,Environment +406385,Environment,Environment +406384,Environment,Environment +406383,Environment,Environment +406382,Environment,Environment +404855,Environment,Environment +403998,Environment,Environment +403997,Environment,Environment +403996,Environment,Environment +401790,Environment,Environment +399877,Environment,Environment +399876,Environment,Environment +399874,Environment,Environment +399873,Environment,Environment +399712,Environment,Environment +399711,Environment,Environment +399710,Environment,Environment +399708,Environment,Environment +399705,Environment,Environment +399185,Environment,Environment +399184,Environment,Environment +399182,Environment,Environment +399178,Environment,Environment +399176,Environment,Environment +399173,Environment,Environment +396036,Environment,Environment +395857,Environment,Environment +394118,Environment,Environment +394117,Environment,Environment +394116,Environment,Environment +394114,Environment,Environment +390907,Environment,Environment +390899,Environment,Environment +387181,Environment,Environment +387180,Environment,Environment +387179,Environment,Environment +387172,Environment,Environment +387090,Environment,Environment +385857,Environment,Environment +385778,Environment,Environment +383135,Environment,Environment +378689,Environment,Environment +376240,Environment,Environment +374695,Environment,Environment +374694,Environment,Environment +374693,Environment,Environment +374692,Environment,Environment +374691,Environment,Environment +536512,Environment,Environment +531888,Environment,Environment +531887,Environment,Environment +531886,Environment,Environment +529801,Environment,Environment +526596,Environment,Environment +526594,Environment,Environment +513087,Environment,Environment +511331,Environment,Environment +511330,Environment,Environment +511329,Environment,Environment +509023,Environment,Environment +495600,Environment,Environment +493585,Environment,Environment +493582,Environment,Environment +493578,Environment,Environment +492283,Environment,Environment +486964,Environment,Environment +486962,Environment,Environment +482270,Environment,Environment +480001,Environment,Environment +475853,Environment,Environment +475849,Environment,Environment +475843,Environment,Environment +475834,Environment,Environment +471134,Environment,Environment +470896,Environment,Environment +467958,Environment,Environment +467957,Environment,Environment +467956,Environment,Environment +467955,Environment,Environment +463994,Environment,Environment +463991,Environment,Environment +461379,Environment,Environment +461360,Environment,Environment +461359,Environment,Environment +461358,Environment,Environment +460546,Environment,Environment +458618,Environment,Environment +458617,Environment,Environment +458616,Environment,Environment +458614,Environment,Environment +457718,Environment,Environment +457038,Environment,Environment +457036,Environment,Environment +457033,Environment,Environment +457027,Environment,Environment +457026,Environment,Environment +457025,Environment,Environment +454722,Environment,Environment +454721,Environment,Environment +454720,Environment,Environment +454719,Environment,Environment +454717,Environment,Environment +454716,Environment,Environment +452440,Environment,Environment +452439,Environment,Environment +452438,Environment,Environment +449219,Environment,Environment +449218,Environment,Environment +449217,Environment,Environment +449216,Environment,Environment +447360,Environment,Environment +445168,Environment,Environment +443749,Environment,Environment +443748,Environment,Environment +443747,Environment,Environment +443746,Environment,Environment +443745,Environment,Environment +441163,Environment,Environment +441161,Environment,Environment +441160,Environment,Environment +441158,Environment,Environment +441157,Environment,Environment +441156,Environment,Environment +441155,Environment,Environment +441154,Environment,Environment +441152,Environment,Environment +441151,Environment,Environment +441149,Environment,Environment +441148,Environment,Environment +439561,Environment,Environment +439557,Environment,Environment +439537,Environment,Environment +439451,Environment,Environment +439179,Environment,Environment +439176,Environment,Environment +438843,Environment,Environment +438839,Environment,Environment +438838,Environment,Environment +438837,Environment,Environment +438836,Environment,Environment +438835,Environment,Environment +438834,Environment,Environment +435633,Environment,Environment +435632,Environment,Environment +435631,Environment,Environment +435630,Environment,Environment +435628,Environment,Environment +435627,Environment,Environment +435623,Environment,Environment +432235,Environment,Environment +432234,Environment,Environment +430460,Environment,Environment +430459,Environment,Environment +430458,Environment,Environment +430457,Environment,Environment +428109,Environment,Environment +425901,Environment,Environment +425899,Environment,Environment +425898,Environment,Environment +425897,Environment,Environment +425895,Environment,Environment +425894,Environment,Environment +425893,Environment,Environment +531887,Fisheries,Fisheries +526594,Fisheries,Fisheries +415108,Fisheries,Fisheries +403996,Fisheries,Fisheries +401790,Fisheries,Fisheries +394118,Fisheries,Fisheries +394117,Fisheries,Fisheries +394116,Fisheries,Fisheries +390884,Fisheries,Fisheries +390880,Fisheries,Fisheries +387179,Fisheries,Fisheries +383138,Fisheries,Fisheries +383137,Fisheries,Fisheries +378698,Fisheries,Fisheries +378694,Fisheries,Fisheries +376262,Fisheries,Fisheries +376249,Fisheries,Fisheries +376243,Fisheries,Fisheries +376241,Fisheries,Fisheries +374690,Fisheries,Fisheries +536512,Fisheries,Fisheries +385778,Transportation,Transportation +519574,Agriculture,Agriculture +519562,Agriculture,Agriculture +217827,Agriculture,Agriculture +217809,Agriculture,Agriculture +217807,Agriculture,Agriculture +217784,Agriculture,Agriculture +207190,Agriculture,Agriculture +178684,Agriculture,Agriculture +372413,Agriculture,Agriculture +372403,Agriculture,Agriculture +368688,Agriculture,Agriculture +362965,Agriculture,Agriculture +359606,Agriculture,Agriculture +359604,Agriculture,Agriculture +357059,Agriculture,Agriculture +335713,Agriculture,Agriculture +327751,Agriculture,Agriculture +327744,Agriculture,Agriculture +327742,Agriculture,Agriculture +325081,Agriculture,Agriculture +322307,Agriculture,Agriculture +322301,Agriculture,Agriculture +322300,Agriculture,Agriculture +314453,Agriculture,Agriculture +313410,Agriculture,Agriculture +305112,Agriculture,Agriculture +305111,Agriculture,Agriculture +296877,Agriculture,Agriculture +287058,Agriculture,Agriculture +277536,Agriculture,Agriculture +277532,Agriculture,Agriculture +273677,Agriculture,Agriculture +264503,Agriculture,Agriculture +264499,Agriculture,Agriculture +259598,Agriculture,Agriculture +241077,Agriculture,Agriculture +241071,Agriculture,Agriculture +230073,Agriculture,Agriculture +496073,Agriculture,Agriculture +493644,Agriculture,Agriculture +493637,Agriculture,Agriculture +493632,Agriculture,Agriculture +489395,Agriculture,Agriculture +481501,Agriculture,Agriculture +481497,Agriculture,Agriculture +477852,Agriculture,Agriculture +475151,Agriculture,Agriculture +473036,Agriculture,Agriculture +473024,Agriculture,Agriculture +473009,Agriculture,Agriculture +466649,Agriculture,Agriculture +460712,Agriculture,Agriculture +460710,Agriculture,Agriculture +459950,Agriculture,Agriculture +459949,Agriculture,Agriculture +459948,Agriculture,Agriculture +454993,Agriculture,Agriculture +448949,Agriculture,Agriculture +447104,Agriculture,Agriculture +447102,Agriculture,Agriculture +444441,Agriculture,Agriculture +441620,Agriculture,Agriculture +438786,Agriculture,Agriculture +435145,Agriculture,Agriculture +433558,Agriculture,Agriculture +433557,Agriculture,Agriculture +430142,Agriculture,Agriculture +430141,Agriculture,Agriculture +430140,Agriculture,Agriculture +424912,Agriculture,Agriculture +423938,Agriculture,Agriculture +423933,Agriculture,Agriculture +410355,Agriculture,Agriculture +410354,Agriculture,Agriculture +405333,Agriculture,Agriculture +398873,Agriculture,Agriculture +394105,Agriculture,Agriculture +383840,Agriculture,Agriculture +375875,Agriculture,Agriculture +374961,Agriculture,Agriculture +536945,Agriculture,Agriculture +535644,Agriculture,Agriculture +531187,Agriculture,Agriculture +531181,Agriculture,Agriculture +531179,Agriculture,Agriculture +531177,Agriculture,Agriculture +527969,Agriculture,Agriculture +524548,Agriculture,Agriculture +524547,Agriculture,Agriculture +524545,Agriculture,Agriculture +524544,Agriculture,Agriculture +524543,Agriculture,Agriculture +524541,Agriculture,Agriculture +524540,Agriculture,Agriculture +524537,Agriculture,Agriculture +522583,Agriculture,Agriculture +522581,Agriculture,Agriculture +88150,Constitutional Issues,Constitutional Issues +513242,Consumer Issues,Consumer Issues +513241,Consumer Issues,Consumer Issues +108538,Consumer Issues,Consumer Issues +132227,Consumer Issues,Consumer Issues +338358,Consumer Issues,Consumer Issues +338357,Consumer Issues,Consumer Issues +335715,Consumer Issues,Consumer Issues +331373,Consumer Issues,Consumer Issues +327745,Consumer Issues,Consumer Issues +310735,Consumer Issues,Consumer Issues +296877,Consumer Issues,Consumer Issues +430141,Consumer Issues,Consumer Issues +430140,Consumer Issues,Consumer Issues +424912,Consumer Issues,Consumer Issues +421361,Consumer Issues,Consumer Issues +419620,Consumer Issues,Consumer Issues +410356,Consumer Issues,Consumer Issues +394105,Consumer Issues,Consumer Issues +375875,Consumer Issues,Consumer Issues +368694,Consumer Issues,Consumer Issues +366452,Consumer Issues,Consumer Issues +359606,Consumer Issues,Consumer Issues +355807,Consumer Issues,Consumer Issues +351420,Consumer Issues,Consumer Issues +348612,Consumer Issues,Consumer Issues +347181,Consumer Issues,Consumer Issues +510767,Consumer Issues,Consumer Issues +510764,Consumer Issues,Consumer Issues +510755,Consumer Issues,Consumer Issues +507530,Consumer Issues,Consumer Issues +507529,Consumer Issues,Consumer Issues +503816,Consumer Issues,Consumer Issues +503815,Consumer Issues,Consumer Issues +499013,Consumer Issues,Consumer Issues +499008,Consumer Issues,Consumer Issues +499002,Consumer Issues,Consumer Issues +499000,Consumer Issues,Consumer Issues +498997,Consumer Issues,Consumer Issues +498989,Consumer Issues,Consumer Issues +498977,Consumer Issues,Consumer Issues +498963,Consumer Issues,Consumer Issues +498956,Consumer Issues,Consumer Issues +493646,Consumer Issues,Consumer Issues +489399,Consumer Issues,Consumer Issues +489387,Consumer Issues,Consumer Issues +486955,Consumer Issues,Consumer Issues +486954,Consumer Issues,Consumer Issues +486936,Consumer Issues,Consumer Issues +483486,Consumer Issues,Consumer Issues +483484,Consumer Issues,Consumer Issues +481501,Consumer Issues,Consumer Issues +479729,Consumer Issues,Consumer Issues +479403,Consumer Issues,Consumer Issues +479399,Consumer Issues,Consumer Issues +477858,Consumer Issues,Consumer Issues +477848,Consumer Issues,Consumer Issues +477844,Consumer Issues,Consumer Issues +477828,Consumer Issues,Consumer Issues +477825,Consumer Issues,Consumer Issues +477822,Consumer Issues,Consumer Issues +477818,Consumer Issues,Consumer Issues +475162,Consumer Issues,Consumer Issues +475160,Consumer Issues,Consumer Issues +475158,Consumer Issues,Consumer Issues +475153,Consumer Issues,Consumer Issues +473042,Consumer Issues,Consumer Issues +473039,Consumer Issues,Consumer Issues +473037,Consumer Issues,Consumer Issues +473034,Consumer Issues,Consumer Issues +473032,Consumer Issues,Consumer Issues +472989,Consumer Issues,Consumer Issues +472984,Consumer Issues,Consumer Issues +470729,Consumer Issues,Consumer Issues +470713,Consumer Issues,Consumer Issues +470702,Consumer Issues,Consumer Issues +470696,Consumer Issues,Consumer Issues +466649,Consumer Issues,Consumer Issues +466648,Consumer Issues,Consumer Issues +466647,Consumer Issues,Consumer Issues +466646,Consumer Issues,Consumer Issues +463416,Consumer Issues,Consumer Issues +463415,Consumer Issues,Consumer Issues +463408,Consumer Issues,Consumer Issues +462540,Consumer Issues,Consumer Issues +462536,Consumer Issues,Consumer Issues +462532,Consumer Issues,Consumer Issues +461170,Consumer Issues,Consumer Issues +461169,Consumer Issues,Consumer Issues +459584,Consumer Issues,Consumer Issues +459582,Consumer Issues,Consumer Issues +459579,Consumer Issues,Consumer Issues +458390,Consumer Issues,Consumer Issues +458389,Consumer Issues,Consumer Issues +456705,Consumer Issues,Consumer Issues +456702,Consumer Issues,Consumer Issues +454991,Consumer Issues,Consumer Issues +454990,Consumer Issues,Consumer Issues +454989,Consumer Issues,Consumer Issues +454982,Consumer Issues,Consumer Issues +451042,Consumer Issues,Consumer Issues +451039,Consumer Issues,Consumer Issues +448948,Consumer Issues,Consumer Issues +447100,Consumer Issues,Consumer Issues +441638,Consumer Issues,Consumer Issues +435145,Consumer Issues,Consumer Issues +433556,Consumer Issues,Consumer Issues +543507,Consumer Issues,Consumer Issues +541323,Consumer Issues,Consumer Issues +541316,Consumer Issues,Consumer Issues +536942,Consumer Issues,Consumer Issues +535667,Consumer Issues,Consumer Issues +531185,Consumer Issues,Consumer Issues +531179,Consumer Issues,Consumer Issues +531177,Consumer Issues,Consumer Issues +527982,Consumer Issues,Consumer Issues +524437,Consumer Issues,Consumer Issues +524436,Consumer Issues,Consumer Issues +519574,Consumer Issues,Consumer Issues +517412,Consumer Issues,Consumer Issues +517384,Consumer Issues,Consumer Issues +514727,Consumer Issues,Consumer Issues +514724,Consumer Issues,Consumer Issues +527976,Defence,Defence +527975,Defence,Defence +92990,Defence,Defence +146025,Defence,Defence +138587,Defence,Defence +128708,Defence,Defence +101158,Defence,Defence +175634,Defence,Defence +287063,Defence,Defence +287061,Defence,Defence +374957,Defence,Defence +359605,Defence,Defence +522583,Defence,Defence +438771,Defence,Defence +428309,Defence,Defence +423932,Defence,Defence +543524,Defence,Defence +543520,Defence,Defence +543514,Defence,Defence +541322,Defence,Defence +361325,Education,Education +359602,Education,Education +97059,Education,Education +165854,Education,Education +148249,Education,Education +146021,Education,Education +135215,Education,Education +247661,Education,Education +247660,Education,Education +241077,Education,Education +241071,Education,Education +226964,Education,Education +223598,Education,Education +207183,Education,Education +353683,Education,Education +353682,Education,Education +331366,Education,Education +318287,Education,Education +318280,Education,Education +314454,Education,Education +310733,Education,Education +305112,Education,Education +287052,Education,Education +277545,Education,Education +277541,Education,Education +273687,Education,Education +264501,Education,Education +463410,Education,Education +456706,Education,Education +456704,Education,Education +451037,Education,Education +444441,Education,Education +441634,Education,Education +438784,Education,Education +433558,Education,Education +432500,Education,Education +423935,Education,Education +423928,Education,Education +419621,Education,Education +414491,Education,Education +407221,Education,Education +400955,Education,Education +382041,Education,Education +536937,Employment and Training,Employment and Training +531179,Employment and Training,Employment and Training +121294,Employment and Training,Employment and Training +114122,Employment and Training,Employment and Training +113736,Employment and Training,Employment and Training +108545,Employment and Training,Employment and Training +101166,Employment and Training,Employment and Training +99538,Employment and Training,Employment and Training +97059,Employment and Training,Employment and Training +90133,Employment and Training,Employment and Training +82216,Employment and Training,Employment and Training +194872,Employment and Training,Employment and Training +185980,Employment and Training,Employment and Training +175625,Employment and Training,Employment and Training +165856,Employment and Training,Employment and Training +165854,Employment and Training,Employment and Training +165852,Employment and Training,Employment and Training +165840,Employment and Training,Employment and Training +159848,Employment and Training,Employment and Training +159819,Employment and Training,Employment and Training +157263,Employment and Training,Employment and Training +152291,Employment and Training,Employment and Training +152290,Employment and Training,Employment and Training +150041,Employment and Training,Employment and Training +148249,Employment and Training,Employment and Training +146021,Employment and Training,Employment and Training +141415,Employment and Training,Employment and Training +132228,Employment and Training,Employment and Training +132222,Employment and Training,Employment and Training +128710,Employment and Training,Employment and Training +296877,Employment and Training,Employment and Training +287052,Employment and Training,Employment and Training +282851,Employment and Training,Employment and Training +273693,Employment and Training,Employment and Training +273690,Employment and Training,Employment and Training +273687,Employment and Training,Employment and Training +264501,Employment and Training,Employment and Training +259598,Employment and Training,Employment and Training +245097,Employment and Training,Employment and Training +241077,Employment and Training,Employment and Training +241071,Employment and Training,Employment and Training +240838,Employment and Training,Employment and Training +240833,Employment and Training,Employment and Training +233692,Employment and Training,Employment and Training +226964,Employment and Training,Employment and Training +223598,Employment and Training,Employment and Training +207196,Employment and Training,Employment and Training +207190,Employment and Training,Employment and Training +207183,Employment and Training,Employment and Training +200326,Employment and Training,Employment and Training +386733,Employment and Training,Employment and Training +383842,Employment and Training,Employment and Training +382041,Employment and Training,Employment and Training +382040,Employment and Training,Employment and Training +380429,Employment and Training,Employment and Training +379904,Employment and Training,Employment and Training +373134,Employment and Training,Employment and Training +368694,Employment and Training,Employment and Training +366452,Employment and Training,Employment and Training +362426,Employment and Training,Employment and Training +362425,Employment and Training,Employment and Training +359602,Employment and Training,Employment and Training +355807,Employment and Training,Employment and Training +353683,Employment and Training,Employment and Training +353682,Employment and Training,Employment and Training +348613,Employment and Training,Employment and Training +348610,Employment and Training,Employment and Training +348609,Employment and Training,Employment and Training +348608,Employment and Training,Employment and Training +347181,Employment and Training,Employment and Training +343854,Employment and Training,Employment and Training +341263,Employment and Training,Employment and Training +341212,Employment and Training,Employment and Training +338360,Employment and Training,Employment and Training +331374,Employment and Training,Employment and Training +331372,Employment and Training,Employment and Training +331366,Employment and Training,Employment and Training +331365,Employment and Training,Employment and Training +329830,Employment and Training,Employment and Training +322303,Employment and Training,Employment and Training +322294,Employment and Training,Employment and Training +318287,Employment and Training,Employment and Training +318280,Employment and Training,Employment and Training +314454,Employment and Training,Employment and Training +314452,Employment and Training,Employment and Training +310737,Employment and Training,Employment and Training +310735,Employment and Training,Employment and Training +310734,Employment and Training,Employment and Training +310733,Employment and Training,Employment and Training +305112,Employment and Training,Employment and Training +305111,Employment and Training,Employment and Training +527980,Employment and Training,Employment and Training +527978,Employment and Training,Employment and Training +527976,Employment and Training,Employment and Training +527975,Employment and Training,Employment and Training +527974,Employment and Training,Employment and Training +527972,Employment and Training,Employment and Training +527970,Employment and Training,Employment and Training +524551,Employment and Training,Employment and Training +524550,Employment and Training,Employment and Training +524536,Employment and Training,Employment and Training +524437,Employment and Training,Employment and Training +524436,Employment and Training,Employment and Training +524432,Employment and Training,Employment and Training +522578,Employment and Training,Employment and Training +522572,Employment and Training,Employment and Training +519574,Employment and Training,Employment and Training +519568,Employment and Training,Employment and Training +519565,Employment and Training,Employment and Training +517412,Employment and Training,Employment and Training +517403,Employment and Training,Employment and Training +517395,Employment and Training,Employment and Training +517384,Employment and Training,Employment and Training +517364,Employment and Training,Employment and Training +514727,Employment and Training,Employment and Training +514725,Employment and Training,Employment and Training +514724,Employment and Training,Employment and Training +514193,Employment and Training,Employment and Training +513242,Employment and Training,Employment and Training +513241,Employment and Training,Employment and Training +507531,Employment and Training,Employment and Training +507528,Employment and Training,Employment and Training +503818,Employment and Training,Employment and Training +503813,Employment and Training,Employment and Training +502942,Employment and Training,Employment and Training +502941,Employment and Training,Employment and Training +502938,Employment and Training,Employment and Training +499013,Employment and Training,Employment and Training +499008,Employment and Training,Employment and Training +498997,Employment and Training,Employment and Training +498984,Employment and Training,Employment and Training +498977,Employment and Training,Employment and Training +498968,Employment and Training,Employment and Training +498958,Employment and Training,Employment and Training +498956,Employment and Training,Employment and Training +493646,Employment and Training,Employment and Training +493627,Employment and Training,Employment and Training +493626,Employment and Training,Employment and Training +489400,Employment and Training,Employment and Training +489399,Employment and Training,Employment and Training +489398,Employment and Training,Employment and Training +489396,Employment and Training,Employment and Training +489394,Employment and Training,Employment and Training +489391,Employment and Training,Employment and Training +489388,Employment and Training,Employment and Training +489387,Employment and Training,Employment and Training +486960,Employment and Training,Employment and Training +486952,Employment and Training,Employment and Training +486951,Employment and Training,Employment and Training +486942,Employment and Training,Employment and Training +486939,Employment and Training,Employment and Training +486936,Employment and Training,Employment and Training +483486,Employment and Training,Employment and Training +483484,Employment and Training,Employment and Training +481500,Employment and Training,Employment and Training +481492,Employment and Training,Employment and Training +481487,Employment and Training,Employment and Training +481485,Employment and Training,Employment and Training +481484,Employment and Training,Employment and Training +479729,Employment and Training,Employment and Training +479399,Employment and Training,Employment and Training +477858,Employment and Training,Employment and Training +477848,Employment and Training,Employment and Training +477844,Employment and Training,Employment and Training +477834,Employment and Training,Employment and Training +477828,Employment and Training,Employment and Training +477825,Employment and Training,Employment and Training +477822,Employment and Training,Employment and Training +477818,Employment and Training,Employment and Training +475162,Employment and Training,Employment and Training +475158,Employment and Training,Employment and Training +473043,Employment and Training,Employment and Training +473042,Employment and Training,Employment and Training +473039,Employment and Training,Employment and Training +473037,Employment and Training,Employment and Training +473034,Employment and Training,Employment and Training +473032,Employment and Training,Employment and Training +473024,Employment and Training,Employment and Training +472989,Employment and Training,Employment and Training +470729,Employment and Training,Employment and Training +470718,Employment and Training,Employment and Training +470713,Employment and Training,Employment and Training +470709,Employment and Training,Employment and Training +470702,Employment and Training,Employment and Training +466648,Employment and Training,Employment and Training +463410,Employment and Training,Employment and Training +462536,Employment and Training,Employment and Training +462535,Employment and Training,Employment and Training +462533,Employment and Training,Employment and Training +459950,Employment and Training,Employment and Training +456704,Employment and Training,Employment and Training +451043,Employment and Training,Employment and Training +451037,Employment and Training,Employment and Training +448948,Employment and Training,Employment and Training +448947,Employment and Training,Employment and Training +448944,Employment and Training,Employment and Training +441634,Employment and Training,Employment and Training +435147,Employment and Training,Employment and Training +433558,Employment and Training,Employment and Training +432504,Employment and Training,Employment and Training +432500,Employment and Training,Employment and Training +423928,Employment and Training,Employment and Training +419619,Employment and Training,Employment and Training +414491,Employment and Training,Employment and Training +400961,Employment and Training,Employment and Training +400955,Employment and Training,Employment and Training +543509,Employment and Training,Employment and Training +536950,Employment and Training,Employment and Training +435151,Energy,Energy +433559,Energy,Energy +92988,Energy,Energy +92987,Energy,Energy +88139,Energy,Energy +82678,Energy,Energy +82677,Energy,Energy +80478,Energy,Energy +175629,Energy,Energy +173418,Energy,Energy +173416,Energy,Energy +171970,Energy,Energy +171968,Energy,Energy +171967,Energy,Energy +168076,Energy,Energy +168067,Energy,Energy +165854,Energy,Energy +159959,Energy,Energy +159829,Energy,Energy +157265,Energy,Energy +152288,Energy,Energy +150040,Energy,Energy +138587,Energy,Energy +128708,Energy,Energy +121279,Energy,Energy +101162,Energy,Energy +97063,Energy,Energy +287061,Energy,Energy +287058,Energy,Energy +287057,Energy,Energy +277541,Energy,Energy +273690,Energy,Energy +273684,Energy,Energy +273677,Energy,Energy +269621,Energy,Energy +264503,Energy,Energy +264501,Energy,Energy +259598,Energy,Energy +247658,Energy,Energy +247656,Energy,Energy +245105,Energy,Energy +241077,Energy,Energy +241071,Energy,Energy +240973,Energy,Energy +240972,Energy,Energy +240835,Energy,Energy +237077,Energy,Energy +237074,Energy,Energy +233693,Energy,Energy +233692,Energy,Energy +226964,Energy,Energy +223595,Energy,Energy +217809,Energy,Energy +217807,Energy,Energy +217784,Energy,Energy +217781,Energy,Energy +207196,Energy,Energy +207195,Energy,Energy +207190,Energy,Energy +207186,Energy,Energy +207183,Energy,Energy +207181,Energy,Energy +202901,Energy,Energy +200323,Energy,Energy +194872,Energy,Energy +194869,Energy,Energy +194868,Energy,Energy +189602,Energy,Energy +189595,Energy,Energy +189575,Energy,Energy +185992,Energy,Energy +185991,Energy,Energy +185990,Energy,Energy +185980,Energy,Energy +178544,Energy,Energy +178524,Energy,Energy +175631,Energy,Energy +433558,Energy,Energy +432509,Energy,Energy +432506,Energy,Energy +432504,Energy,Energy +432502,Energy,Energy +423938,Energy,Energy +417781,Energy,Energy +414495,Energy,Energy +414493,Energy,Energy +414492,Energy,Energy +414487,Energy,Energy +410357,Energy,Energy +410355,Energy,Energy +410354,Energy,Energy +410351,Energy,Energy +407223,Energy,Energy +402802,Energy,Energy +400955,Energy,Energy +396385,Energy,Energy +382041,Energy,Energy +380427,Energy,Energy +379902,Energy,Energy +375876,Energy,Energy +375875,Energy,Energy +374961,Energy,Energy +374958,Energy,Energy +374955,Energy,Energy +373134,Energy,Energy +368691,Energy,Energy +366453,Energy,Energy +366452,Energy,Energy +362965,Energy,Energy +361323,Energy,Energy +359602,Energy,Energy +355808,Energy,Energy +355806,Energy,Energy +353176,Energy,Energy +353175,Energy,Energy +353172,Energy,Energy +351423,Energy,Energy +351422,Energy,Energy +351421,Energy,Energy +348613,Energy,Energy +348611,Energy,Energy +348609,Energy,Energy +348608,Energy,Energy +341263,Energy,Energy +341215,Energy,Energy +338360,Energy,Energy +338359,Energy,Energy +335713,Energy,Energy +331367,Energy,Energy +329830,Energy,Energy +327751,Energy,Energy +327744,Energy,Energy +327742,Energy,Energy +325081,Energy,Energy +322302,Energy,Energy +322294,Energy,Energy +313410,Energy,Energy +310739,Energy,Energy +310738,Energy,Energy +310736,Energy,Energy +310735,Energy,Energy +310734,Energy,Energy +310733,Energy,Energy +305112,Energy,Energy +305111,Energy,Energy +296877,Energy,Energy +543514,Energy,Energy +541320,Energy,Energy +540289,Energy,Energy +536950,Energy,Energy +536947,Energy,Energy +536943,Energy,Energy +536926,Energy,Energy +535649,Energy,Energy +531181,Energy,Energy +531180,Energy,Energy +527977,Energy,Energy +527976,Energy,Energy +527975,Energy,Energy +527974,Energy,Energy +527972,Energy,Energy +527970,Energy,Energy +527969,Energy,Energy +524547,Energy,Energy +524545,Energy,Energy +524544,Energy,Energy +524541,Energy,Energy +522584,Energy,Energy +522581,Energy,Energy +519572,Energy,Energy +519564,Energy,Energy +519563,Energy,Energy +517412,Energy,Energy +517364,Energy,Energy +514724,Energy,Energy +514193,Energy,Energy +513244,Energy,Energy +510775,Energy,Energy +510767,Energy,Energy +510762,Energy,Energy +510751,Energy,Energy +509447,Energy,Energy +507534,Energy,Energy +507531,Energy,Energy +507527,Energy,Energy +507526,Energy,Energy +503817,Energy,Energy +503816,Energy,Energy +503814,Energy,Energy +502938,Energy,Energy +498971,Energy,Energy +493627,Energy,Energy +489398,Energy,Energy +489394,Energy,Energy +489391,Energy,Energy +489390,Energy,Energy +489389,Energy,Energy +489384,Energy,Energy +486960,Energy,Energy +486952,Energy,Energy +486951,Energy,Energy +483494,Energy,Energy +483491,Energy,Energy +483488,Energy,Energy +483482,Energy,Energy +482666,Energy,Energy +479397,Energy,Energy +477836,Energy,Energy +473043,Energy,Energy +470718,Energy,Energy +466649,Energy,Energy +463418,Energy,Energy +463413,Energy,Energy +463411,Energy,Energy +462539,Energy,Energy +462535,Energy,Energy +462533,Energy,Energy +459949,Energy,Energy +459579,Energy,Energy +456704,Energy,Energy +456703,Energy,Energy +456702,Energy,Energy +455003,Energy,Energy +455001,Energy,Energy +454999,Energy,Energy +454997,Energy,Energy +454988,Energy,Energy +454987,Energy,Energy +454986,Energy,Energy +454984,Energy,Energy +451043,Energy,Energy +451035,Energy,Energy +451033,Energy,Energy +448947,Energy,Energy +448946,Energy,Energy +447096,Energy,Energy +447094,Energy,Energy +444445,Energy,Energy +444443,Energy,Energy +444441,Energy,Energy +443445,Energy,Energy +441643,Energy,Energy +441638,Energy,Energy +441630,Energy,Energy +441628,Energy,Energy +441621,Energy,Energy +441620,Energy,Energy +438787,Energy,Energy +438786,Energy,Energy +438777,Energy,Energy +438775,Energy,Energy +438767,Energy,Energy +435163,Energy,Energy +435159,Energy,Energy +432504,Environment,Environment +432502,Environment,Environment +85420,Environment,Environment +82678,Environment,Environment +82677,Environment,Environment +114109,Environment,Environment +114107,Environment,Environment +114106,Environment,Environment +101162,Environment,Environment +99540,Environment,Environment +99535,Environment,Environment +97063,Environment,Environment +92988,Environment,Environment +92987,Environment,Environment +88143,Environment,Environment +88139,Environment,Environment +165854,Environment,Environment +159959,Environment,Environment +159829,Environment,Environment +157265,Environment,Environment +157263,Environment,Environment +153278,Environment,Environment +152288,Environment,Environment +150040,Environment,Environment +146029,Environment,Environment +138589,Environment,Environment +138587,Environment,Environment +138580,Environment,Environment +128708,Environment,Environment +128706,Environment,Environment +121284,Environment,Environment +121279,Environment,Environment +117462,Environment,Environment +310738,Environment,Environment +310735,Environment,Environment +310733,Environment,Environment +287057,Environment,Environment +273690,Environment,Environment +259599,Environment,Environment +259598,Environment,Environment +247658,Environment,Environment +241077,Environment,Environment +241071,Environment,Environment +240835,Environment,Environment +233692,Environment,Environment +217809,Environment,Environment +217781,Environment,Environment +217777,Environment,Environment +207186,Environment,Environment +200332,Environment,Environment +194872,Environment,Environment +194869,Environment,Environment +194868,Environment,Environment +189602,Environment,Environment +185992,Environment,Environment +185980,Environment,Environment +171967,Environment,Environment +417781,Environment,Environment +414495,Environment,Environment +414493,Environment,Environment +414492,Environment,Environment +414487,Environment,Environment +410357,Environment,Environment +410356,Environment,Environment +410351,Environment,Environment +407223,Environment,Environment +407220,Environment,Environment +402802,Environment,Environment +400955,Environment,Environment +386665,Environment,Environment +382041,Environment,Environment +380427,Environment,Environment +379902,Environment,Environment +374958,Environment,Environment +374955,Environment,Environment +368691,Environment,Environment +366453,Environment,Environment +359602,Environment,Environment +355806,Environment,Environment +353172,Environment,Environment +351423,Environment,Environment +351422,Environment,Environment +351421,Environment,Environment +348613,Environment,Environment +348609,Environment,Environment +348608,Environment,Environment +341263,Environment,Environment +341215,Environment,Environment +541320,Environment,Environment +536926,Environment,Environment +519563,Environment,Environment +509447,Environment,Environment +489390,Environment,Environment +489389,Environment,Environment +489384,Environment,Environment +486960,Environment,Environment +486951,Environment,Environment +483494,Environment,Environment +483491,Environment,Environment +483488,Environment,Environment +483482,Environment,Environment +482666,Environment,Environment +479397,Environment,Environment +463418,Environment,Environment +463413,Environment,Environment +463411,Environment,Environment +462539,Environment,Environment +459579,Environment,Environment +456704,Environment,Environment +456703,Environment,Environment +455003,Environment,Environment +455001,Environment,Environment +454999,Environment,Environment +454997,Environment,Environment +454988,Environment,Environment +454986,Environment,Environment +454984,Environment,Environment +454982,Environment,Environment +451035,Environment,Environment +451033,Environment,Environment +448947,Environment,Environment +448946,Environment,Environment +447094,Environment,Environment +444445,Environment,Environment +444443,Environment,Environment +443445,Environment,Environment +441643,Environment,Environment +441638,Environment,Environment +441630,Environment,Environment +441628,Environment,Environment +441621,Environment,Environment +438787,Environment,Environment +438786,Environment,Environment +438777,Environment,Environment +438775,Environment,Environment +435163,Environment,Environment +435159,Environment,Environment +435154,Environment,Environment +435151,Environment,Environment +433558,Environment,Environment +432509,Environment,Environment +458390,Financial Institutions,Financial Institutions +454989,Financial Institutions,Financial Institutions +146032,Financial Institutions,Financial Institutions +146028,Financial Institutions,Financial Institutions +146020,Financial Institutions,Financial Institutions +141395,Financial Institutions,Financial Institutions +138588,Financial Institutions,Financial Institutions +138585,Financial Institutions,Financial Institutions +128710,Financial Institutions,Financial Institutions +101166,Financial Institutions,Financial Institutions +101163,Financial Institutions,Financial Institutions +101158,Financial Institutions,Financial Institutions +86996,Financial Institutions,Financial Institutions +86995,Financial Institutions,Financial Institutions +85417,Financial Institutions,Financial Institutions +85416,Financial Institutions,Financial Institutions +194870,Financial Institutions,Financial Institutions +189595,Financial Institutions,Financial Institutions +185979,Financial Institutions,Financial Institutions +178584,Financial Institutions,Financial Institutions +168064,Financial Institutions,Financial Institutions +165840,Financial Institutions,Financial Institutions +157255,Financial Institutions,Financial Institutions +157253,Financial Institutions,Financial Institutions +157251,Financial Institutions,Financial Institutions +152288,Financial Institutions,Financial Institutions +152287,Financial Institutions,Financial Institutions +152286,Financial Institutions,Financial Institutions +152283,Financial Institutions,Financial Institutions +152280,Financial Institutions,Financial Institutions +148262,Financial Institutions,Financial Institutions +355805,Financial Institutions,Financial Institutions +327748,Financial Institutions,Financial Institutions +327745,Financial Institutions,Financial Institutions +318280,Financial Institutions,Financial Institutions +314455,Financial Institutions,Financial Institutions +273684,Financial Institutions,Financial Institutions +264501,Financial Institutions,Financial Institutions +264499,Financial Institutions,Financial Institutions +233690,Financial Institutions,Financial Institutions +207196,Financial Institutions,Financial Institutions +207190,Financial Institutions,Financial Institutions +207181,Financial Institutions,Financial Institutions +202898,Financial Institutions,Financial Institutions +451039,Financial Institutions,Financial Institutions +444442,Financial Institutions,Financial Institutions +438763,Financial Institutions,Financial Institutions +435147,Financial Institutions,Financial Institutions +433556,Financial Institutions,Financial Institutions +419620,Financial Institutions,Financial Institutions +410348,Financial Institutions,Financial Institutions +405337,Financial Institutions,Financial Institutions +400961,Financial Institutions,Financial Institutions +374957,Financial Institutions,Financial Institutions +366452,Financial Institutions,Financial Institutions +364814,Financial Institutions,Financial Institutions +359603,Financial Institutions,Financial Institutions +543507,Financial Institutions,Financial Institutions +541316,Financial Institutions,Financial Institutions +536923,Financial Institutions,Financial Institutions +535667,Financial Institutions,Financial Institutions +535657,Financial Institutions,Financial Institutions +535647,Financial Institutions,Financial Institutions +498963,Financial Institutions,Financial Institutions +479729,Financial Institutions,Financial Institutions +479403,Financial Institutions,Financial Institutions +479399,Financial Institutions,Financial Institutions +475158,Financial Institutions,Financial Institutions +473042,Financial Institutions,Financial Institutions +473039,Financial Institutions,Financial Institutions +473037,Financial Institutions,Financial Institutions +473032,Financial Institutions,Financial Institutions +470702,Financial Institutions,Financial Institutions +463415,Financial Institutions,Financial Institutions +463411,Financial Institutions,Financial Institutions +462540,Financial Institutions,Financial Institutions +481497,Forestry,Forestry +479401,Forestry,Forestry +475149,Forestry,Forestry +438775,Forestry,Forestry +435154,Forestry,Forestry +527976,Government Procurement,Government Procurement +519574,Government Procurement,Government Procurement +348610,Government Procurement,Government Procurement +347181,Government Procurement,Government Procurement +343854,Government Procurement,Government Procurement +341252,Government Procurement,Government Procurement +341249,Government Procurement,Government Procurement +341246,Government Procurement,Government Procurement +341240,Government Procurement,Government Procurement +341223,Government Procurement,Government Procurement +335713,Government Procurement,Government Procurement +277536,Government Procurement,Government Procurement +277532,Government Procurement,Government Procurement +269621,Government Procurement,Government Procurement +264499,Government Procurement,Government Procurement +233697,Government Procurement,Government Procurement +230076,Government Procurement,Government Procurement +230073,Government Procurement,Government Procurement +226970,Government Procurement,Government Procurement +207196,Government Procurement,Government Procurement +430140,Government Procurement,Government Procurement +424912,Government Procurement,Government Procurement +423938,Government Procurement,Government Procurement +423935,Government Procurement,Government Procurement +419625,Government Procurement,Government Procurement +419621,Government Procurement,Government Procurement +419619,Government Procurement,Government Procurement +419616,Government Procurement,Government Procurement +417783,Government Procurement,Government Procurement +414494,Government Procurement,Government Procurement +414489,Government Procurement,Government Procurement +410356,Government Procurement,Government Procurement +410355,Government Procurement,Government Procurement +410354,Government Procurement,Government Procurement +407222,Government Procurement,Government Procurement +405333,Government Procurement,Government Procurement +405331,Government Procurement,Government Procurement +405330,Government Procurement,Government Procurement +402799,Government Procurement,Government Procurement +398873,Government Procurement,Government Procurement +396385,Government Procurement,Government Procurement +394105,Government Procurement,Government Procurement +383840,Government Procurement,Government Procurement +380432,Government Procurement,Government Procurement +380430,Government Procurement,Government Procurement +380428,Government Procurement,Government Procurement +375875,Government Procurement,Government Procurement +372413,Government Procurement,Government Procurement +372403,Government Procurement,Government Procurement +366451,Government Procurement,Government Procurement +362426,Government Procurement,Government Procurement +362425,Government Procurement,Government Procurement +361325,Government Procurement,Government Procurement +359606,Government Procurement,Government Procurement +355807,Government Procurement,Government Procurement +348612,Government Procurement,Government Procurement +510764,Government Procurement,Government Procurement +503815,Government Procurement,Government Procurement +499013,Government Procurement,Government Procurement +498989,Government Procurement,Government Procurement +498984,Government Procurement,Government Procurement +498974,Government Procurement,Government Procurement +496071,Government Procurement,Government Procurement +496068,Government Procurement,Government Procurement +493631,Government Procurement,Government Procurement +489399,Government Procurement,Government Procurement +486954,Government Procurement,Government Procurement +483484,Government Procurement,Government Procurement +477852,Government Procurement,Government Procurement +473036,Government Procurement,Government Procurement +470729,Government Procurement,Government Procurement +470718,Government Procurement,Government Procurement +470713,Government Procurement,Government Procurement +470702,Government Procurement,Government Procurement +466649,Government Procurement,Government Procurement +460712,Government Procurement,Government Procurement +460710,Government Procurement,Government Procurement +459950,Government Procurement,Government Procurement +459948,Government Procurement,Government Procurement +458389,Government Procurement,Government Procurement +454976,Government Procurement,Government Procurement +448949,Government Procurement,Government Procurement +448948,Government Procurement,Government Procurement +447102,Government Procurement,Government Procurement +438784,Government Procurement,Government Procurement +438767,Government Procurement,Government Procurement +435145,Government Procurement,Government Procurement +433558,Government Procurement,Government Procurement +433557,Government Procurement,Government Procurement +539599,Government Procurement,Government Procurement +461170,Health,Health +454982,Health,Health +185980,Health,Health +128708,Health,Health +447100,Health,Health +424912,Health,Health +421361,Health,Health +407220,Health,Health +524550,Health,Health +524432,Health,Health +519568,Health,Health +519560,Health,Health +517395,Health,Health +514727,Health,Health +514724,Health,Health +514193,Health,Health +513242,Health,Health +513241,Health,Health +510755,Health,Health +507531,Health,Health +507530,Health,Health +507529,Health,Health +503815,Health,Health +503813,Health,Health +502942,Health,Health +499013,Health,Health +499008,Health,Health +499000,Health,Health +498997,Health,Health +498984,Health,Health +498977,Health,Health +498968,Health,Health +498958,Health,Health +498956,Health,Health +493646,Health,Health +493644,Health,Health +493637,Health,Health +493632,Health,Health +493631,Health,Health +489398,Health,Health +489394,Health,Health +489391,Health,Health +489389,Health,Health +489388,Health,Health +489387,Health,Health +486960,Health,Health +486954,Health,Health +486952,Health,Health +486951,Health,Health +486942,Health,Health +486939,Health,Health +486936,Health,Health +483486,Health,Health +483484,Health,Health +481494,Health,Health +481492,Health,Health +481487,Health,Health +481485,Health,Health +481484,Health,Health +479729,Health,Health +479399,Health,Health +479397,Health,Health +477858,Health,Health +477848,Health,Health +477844,Health,Health +477834,Health,Health +477828,Health,Health +477825,Health,Health +477822,Health,Health +477818,Health,Health +475162,Health,Health +475160,Health,Health +475158,Health,Health +475153,Health,Health +473043,Health,Health +473042,Health,Health +473039,Health,Health +473037,Health,Health +473034,Health,Health +473032,Health,Health +473024,Health,Health +472989,Health,Health +472984,Health,Health +470729,Health,Health +470718,Health,Health +470713,Health,Health +470702,Health,Health +470696,Health,Health +463418,Health,Health +463416,Health,Health +462536,Health,Health +466649,Immigration,Immigration +466648,Immigration,Immigration +146025,Immigration,Immigration +141415,Immigration,Immigration +128708,Immigration,Immigration +223598,Immigration,Immigration +217784,Immigration,Immigration +211289,Immigration,Immigration +207190,Immigration,Immigration +207181,Immigration,Immigration +202905,Immigration,Immigration +194869,Immigration,Immigration +189602,Immigration,Immigration +185992,Immigration,Immigration +185980,Immigration,Immigration +178604,Immigration,Immigration +178564,Immigration,Immigration +178544,Immigration,Immigration +178524,Immigration,Immigration +175636,Immigration,Immigration +175635,Immigration,Immigration +175634,Immigration,Immigration +175631,Immigration,Immigration +175629,Immigration,Immigration +175627,Immigration,Immigration +175625,Immigration,Immigration +171967,Immigration,Immigration +165854,Immigration,Immigration +159819,Immigration,Immigration +146823,Immigration,Immigration +146033,Immigration,Immigration +351422,Immigration,Immigration +351421,Immigration,Immigration +348613,Immigration,Immigration +348610,Immigration,Immigration +348609,Immigration,Immigration +348608,Immigration,Immigration +341263,Immigration,Immigration +341212,Immigration,Immigration +338360,Immigration,Immigration +331369,Immigration,Immigration +331367,Immigration,Immigration +329830,Immigration,Immigration +322303,Immigration,Immigration +322302,Immigration,Immigration +318287,Immigration,Immigration +318280,Immigration,Immigration +314454,Immigration,Immigration +314453,Immigration,Immigration +296877,Immigration,Immigration +290689,Immigration,Immigration +287064,Immigration,Immigration +287058,Immigration,Immigration +287052,Immigration,Immigration +277541,Immigration,Immigration +273693,Immigration,Immigration +273692,Immigration,Immigration +273687,Immigration,Immigration +273684,Immigration,Immigration +273677,Immigration,Immigration +269621,Immigration,Immigration +264501,Immigration,Immigration +259598,Immigration,Immigration +245105,Immigration,Immigration +245100,Immigration,Immigration +245098,Immigration,Immigration +241077,Immigration,Immigration +241071,Immigration,Immigration +240973,Immigration,Immigration +240841,Immigration,Immigration +237076,Immigration,Immigration +233697,Immigration,Immigration +226967,Immigration,Immigration +226964,Immigration,Immigration +463410,Immigration,Immigration +462533,Immigration,Immigration +460712,Immigration,Immigration +459950,Immigration,Immigration +459949,Immigration,Immigration +459579,Immigration,Immigration +456704,Immigration,Immigration +456702,Immigration,Immigration +451043,Immigration,Immigration +451037,Immigration,Immigration +447104,Immigration,Immigration +447102,Immigration,Immigration +447097,Immigration,Immigration +444442,Immigration,Immigration +444441,Immigration,Immigration +438767,Immigration,Immigration +435145,Immigration,Immigration +433559,Immigration,Immigration +423938,Immigration,Immigration +419616,Immigration,Immigration +414494,Immigration,Immigration +414491,Immigration,Immigration +414490,Immigration,Immigration +414489,Immigration,Immigration +410355,Immigration,Immigration +410354,Immigration,Immigration +406977,Immigration,Immigration +405333,Immigration,Immigration +402797,Immigration,Immigration +400955,Immigration,Immigration +398873,Immigration,Immigration +396385,Immigration,Immigration +396382,Immigration,Immigration +394194,Immigration,Immigration +394105,Immigration,Immigration +383840,Immigration,Immigration +382041,Immigration,Immigration +379899,Immigration,Immigration +375876,Immigration,Immigration +375875,Immigration,Immigration +374961,Immigration,Immigration +374958,Immigration,Immigration +368688,Immigration,Immigration +366451,Immigration,Immigration +362965,Immigration,Immigration +362426,Immigration,Immigration +362425,Immigration,Immigration +361322,Immigration,Immigration +357060,Immigration,Immigration +355808,Immigration,Immigration +353682,Immigration,Immigration +353176,Immigration,Immigration +353175,Immigration,Immigration +351423,Immigration,Immigration +543524,Immigration,Immigration +543509,Immigration,Immigration +541322,Immigration,Immigration +539600,Immigration,Immigration +536950,Immigration,Immigration +536947,Immigration,Immigration +536945,Immigration,Immigration +536937,Immigration,Immigration +535651,Immigration,Immigration +535644,Immigration,Immigration +531187,Immigration,Immigration +531185,Immigration,Immigration +531181,Immigration,Immigration +527980,Immigration,Immigration +527979,Immigration,Immigration +527978,Immigration,Immigration +527972,Immigration,Immigration +524548,Immigration,Immigration +524547,Immigration,Immigration +524543,Immigration,Immigration +524536,Immigration,Immigration +524432,Immigration,Immigration +522583,Immigration,Immigration +522581,Immigration,Immigration +522578,Immigration,Immigration +522575,Immigration,Immigration +522572,Immigration,Immigration +519564,Immigration,Immigration +517412,Immigration,Immigration +517384,Immigration,Immigration +514193,Immigration,Immigration +513244,Immigration,Immigration +510767,Immigration,Immigration +507528,Immigration,Immigration +503818,Immigration,Immigration +503817,Immigration,Immigration +503812,Immigration,Immigration +502940,Immigration,Immigration +498977,Immigration,Immigration +498974,Immigration,Immigration +498971,Immigration,Immigration +498966,Immigration,Immigration +493644,Immigration,Immigration +493637,Immigration,Immigration +493632,Immigration,Immigration +489397,Immigration,Immigration +489393,Immigration,Immigration +486955,Immigration,Immigration +486952,Immigration,Immigration +481500,Immigration,Immigration +481494,Immigration,Immigration +477858,Immigration,Immigration +477832,Immigration,Immigration +483483,Industry,Industry +483482,Industry,Industry +90126,Industry,Industry +90122,Industry,Industry +88156,Industry,Industry +88150,Industry,Industry +88143,Industry,Industry +88139,Industry,Industry +85417,Industry,Industry +85416,Industry,Industry +82215,Industry,Industry +80485,Industry,Industry +80474,Industry,Industry +77201,Industry,Industry +132227,Industry,Industry +128710,Industry,Industry +128708,Industry,Industry +128702,Industry,Industry +121294,Industry,Industry +121284,Industry,Industry +121279,Industry,Industry +117463,Industry,Industry +114125,Industry,Industry +114122,Industry,Industry +114120,Industry,Industry +114115,Industry,Industry +114107,Industry,Industry +114106,Industry,Industry +108538,Industry,Industry +105756,Industry,Industry +101158,Industry,Industry +99540,Industry,Industry +99538,Industry,Industry +99536,Industry,Industry +97337,Industry,Industry +92988,Industry,Industry +92986,Industry,Industry +90138,Industry,Industry +90133,Industry,Industry +90129,Industry,Industry +161058,Industry,Industry +161057,Industry,Industry +161056,Industry,Industry +161055,Industry,Industry +160094,Industry,Industry +159959,Industry,Industry +159848,Industry,Industry +159842,Industry,Industry +159833,Industry,Industry +159829,Industry,Industry +159819,Industry,Industry +159815,Industry,Industry +157265,Industry,Industry +157263,Industry,Industry +157255,Industry,Industry +157253,Industry,Industry +157251,Industry,Industry +157250,Industry,Industry +154671,Industry,Industry +153278,Industry,Industry +152291,Industry,Industry +152290,Industry,Industry +152288,Industry,Industry +152287,Industry,Industry +152286,Industry,Industry +150040,Industry,Industry +149939,Industry,Industry +148262,Industry,Industry +148259,Industry,Industry +148248,Industry,Industry +148246,Industry,Industry +148245,Industry,Industry +148243,Industry,Industry +146029,Industry,Industry +146028,Industry,Industry +146025,Industry,Industry +141416,Industry,Industry +141395,Industry,Industry +138588,Industry,Industry +138587,Industry,Industry +138585,Industry,Industry +138584,Industry,Industry +241077,Industry,Industry +241071,Industry,Industry +240973,Industry,Industry +240972,Industry,Industry +240846,Industry,Industry +240844,Industry,Industry +240841,Industry,Industry +240838,Industry,Industry +240835,Industry,Industry +240833,Industry,Industry +237078,Industry,Industry +237077,Industry,Industry +237076,Industry,Industry +237074,Industry,Industry +233697,Industry,Industry +233696,Industry,Industry +233695,Industry,Industry +233693,Industry,Industry +233692,Industry,Industry +233691,Industry,Industry +233690,Industry,Industry +230078,Industry,Industry +230077,Industry,Industry +230076,Industry,Industry +230074,Industry,Industry +230073,Industry,Industry +226970,Industry,Industry +226964,Industry,Industry +223598,Industry,Industry +223595,Industry,Industry +217853,Industry,Industry +217827,Industry,Industry +217807,Industry,Industry +217784,Industry,Industry +217781,Industry,Industry +217777,Industry,Industry +211292,Industry,Industry +211291,Industry,Industry +211290,Industry,Industry +211289,Industry,Industry +207196,Industry,Industry +207195,Industry,Industry +207190,Industry,Industry +207186,Industry,Industry +207183,Industry,Industry +207181,Industry,Industry +202911,Industry,Industry +202905,Industry,Industry +202901,Industry,Industry +202898,Industry,Industry +200326,Industry,Industry +200323,Industry,Industry +194880,Industry,Industry +194872,Industry,Industry +194870,Industry,Industry +194869,Industry,Industry +194868,Industry,Industry +189602,Industry,Industry +189600,Industry,Industry +189595,Industry,Industry +189591,Industry,Industry +189586,Industry,Industry +189579,Industry,Industry +189577,Industry,Industry +189575,Industry,Industry +185992,Industry,Industry +185991,Industry,Industry +185990,Industry,Industry +185988,Industry,Industry +185980,Industry,Industry +185979,Industry,Industry +178684,Industry,Industry +178644,Industry,Industry +178624,Industry,Industry +178604,Industry,Industry +178564,Industry,Industry +178544,Industry,Industry +178524,Industry,Industry +178504,Industry,Industry +175636,Industry,Industry +175635,Industry,Industry +175634,Industry,Industry +175632,Industry,Industry +175631,Industry,Industry +175629,Industry,Industry +175627,Industry,Industry +175626,Industry,Industry +175625,Industry,Industry +175624,Industry,Industry +173418,Industry,Industry +173416,Industry,Industry +171970,Industry,Industry +171969,Industry,Industry +171968,Industry,Industry +171967,Industry,Industry +171107,Industry,Industry +171105,Industry,Industry +168076,Industry,Industry +168067,Industry,Industry +168064,Industry,Industry +168060,Industry,Industry +168057,Industry,Industry +168054,Industry,Industry +168052,Industry,Industry +165856,Industry,Industry +165854,Industry,Industry +165852,Industry,Industry +165850,Industry,Industry +165846,Industry,Industry +165840,Industry,Industry +163983,Industry,Industry +359603,Industry,Industry +359602,Industry,Industry +357060,Industry,Industry +357059,Industry,Industry +355808,Industry,Industry +355807,Industry,Industry +355806,Industry,Industry +355805,Industry,Industry +353683,Industry,Industry +353682,Industry,Industry +353176,Industry,Industry +353175,Industry,Industry +353172,Industry,Industry +351423,Industry,Industry +351422,Industry,Industry +351421,Industry,Industry +351420,Industry,Industry +348613,Industry,Industry +348612,Industry,Industry +348611,Industry,Industry +348610,Industry,Industry +348609,Industry,Industry +348608,Industry,Industry +347181,Industry,Industry +347179,Industry,Industry +347178,Industry,Industry +343854,Industry,Industry +341263,Industry,Industry +341257,Industry,Industry +341252,Industry,Industry +341249,Industry,Industry +341246,Industry,Industry +341240,Industry,Industry +341234,Industry,Industry +341223,Industry,Industry +341215,Industry,Industry +341212,Industry,Industry +338360,Industry,Industry +338359,Industry,Industry +338358,Industry,Industry +338357,Industry,Industry +335715,Industry,Industry +335713,Industry,Industry +331374,Industry,Industry +331373,Industry,Industry +331372,Industry,Industry +331369,Industry,Industry +331367,Industry,Industry +331366,Industry,Industry +331365,Industry,Industry +329831,Industry,Industry +329830,Industry,Industry +327751,Industry,Industry +327748,Industry,Industry +327745,Industry,Industry +327744,Industry,Industry +327742,Industry,Industry +325082,Industry,Industry +325081,Industry,Industry +322307,Industry,Industry +322303,Industry,Industry +322302,Industry,Industry +322301,Industry,Industry +322300,Industry,Industry +322298,Industry,Industry +322294,Industry,Industry +322292,Industry,Industry +318286,Industry,Industry +318284,Industry,Industry +318280,Industry,Industry +314689,Industry,Industry +314455,Industry,Industry +314454,Industry,Industry +314453,Industry,Industry +314452,Industry,Industry +314451,Industry,Industry +314450,Industry,Industry +314449,Industry,Industry +313410,Industry,Industry +310739,Industry,Industry +310738,Industry,Industry +310737,Industry,Industry +310736,Industry,Industry +310735,Industry,Industry +310734,Industry,Industry +310733,Industry,Industry +305112,Industry,Industry +305111,Industry,Industry +296877,Industry,Industry +290689,Industry,Industry +287064,Industry,Industry +287063,Industry,Industry +287061,Industry,Industry +287058,Industry,Industry +287057,Industry,Industry +282851,Industry,Industry +277545,Industry,Industry +277541,Industry,Industry +277536,Industry,Industry +277532,Industry,Industry +277530,Industry,Industry +273693,Industry,Industry +273692,Industry,Industry +273691,Industry,Industry +273690,Industry,Industry +273689,Industry,Industry +273687,Industry,Industry +273684,Industry,Industry +273679,Industry,Industry +273677,Industry,Industry +269621,Industry,Industry +264503,Industry,Industry +264501,Industry,Industry +264499,Industry,Industry +264498,Industry,Industry +259598,Industry,Industry +247661,Industry,Industry +247660,Industry,Industry +247656,Industry,Industry +245106,Industry,Industry +245105,Industry,Industry +245100,Industry,Industry +245098,Industry,Industry +245097,Industry,Industry +245095,Industry,Industry +482666,Industry,Industry +481501,Industry,Industry +481500,Industry,Industry +481497,Industry,Industry +481494,Industry,Industry +481492,Industry,Industry +481487,Industry,Industry +481485,Industry,Industry +481484,Industry,Industry +479729,Industry,Industry +479403,Industry,Industry +479401,Industry,Industry +479399,Industry,Industry +479397,Industry,Industry +477858,Industry,Industry +477852,Industry,Industry +477848,Industry,Industry +477844,Industry,Industry +477836,Industry,Industry +477834,Industry,Industry +477832,Industry,Industry +477828,Industry,Industry +477825,Industry,Industry +477822,Industry,Industry +477818,Industry,Industry +475162,Industry,Industry +475160,Industry,Industry +475158,Industry,Industry +475153,Industry,Industry +475151,Industry,Industry +475149,Industry,Industry +473043,Industry,Industry +473042,Industry,Industry +473039,Industry,Industry +473037,Industry,Industry +473036,Industry,Industry +473034,Industry,Industry +473032,Industry,Industry +473024,Industry,Industry +473009,Industry,Industry +472989,Industry,Industry +472984,Industry,Industry +470729,Industry,Industry +470718,Industry,Industry +470713,Industry,Industry +470709,Industry,Industry +470702,Industry,Industry +470696,Industry,Industry +466649,Industry,Industry +466648,Industry,Industry +466647,Industry,Industry +466646,Industry,Industry +463418,Industry,Industry +463416,Industry,Industry +463415,Industry,Industry +463413,Industry,Industry +463411,Industry,Industry +463410,Industry,Industry +463408,Industry,Industry +462540,Industry,Industry +462539,Industry,Industry +462536,Industry,Industry +462535,Industry,Industry +462533,Industry,Industry +462532,Industry,Industry +461170,Industry,Industry +461169,Industry,Industry +460712,Industry,Industry +460710,Industry,Industry +459950,Industry,Industry +459949,Industry,Industry +459948,Industry,Industry +459587,Industry,Industry +459584,Industry,Industry +459582,Industry,Industry +459579,Industry,Industry +458390,Industry,Industry +458389,Industry,Industry +458387,Industry,Industry +456706,Industry,Industry +456705,Industry,Industry +456704,Industry,Industry +456703,Industry,Industry +456702,Industry,Industry +455003,Industry,Industry +455001,Industry,Industry +454999,Industry,Industry +454997,Industry,Industry +454993,Industry,Industry +454991,Industry,Industry +454990,Industry,Industry +454989,Industry,Industry +454988,Industry,Industry +454987,Industry,Industry +454986,Industry,Industry +454984,Industry,Industry +454982,Industry,Industry +454976,Industry,Industry +451043,Industry,Industry +451042,Industry,Industry +451039,Industry,Industry +451037,Industry,Industry +451036,Industry,Industry +451034,Industry,Industry +451033,Industry,Industry +448949,Industry,Industry +448948,Industry,Industry +448947,Industry,Industry +448946,Industry,Industry +448945,Industry,Industry +448944,Industry,Industry +447104,Industry,Industry +447102,Industry,Industry +447100,Industry,Industry +447097,Industry,Industry +447096,Industry,Industry +447094,Industry,Industry +444445,Industry,Industry +444443,Industry,Industry +444442,Industry,Industry +444441,Industry,Industry +443445,Industry,Industry +443444,Industry,Industry +441643,Industry,Industry +441638,Industry,Industry +441630,Industry,Industry +441628,Industry,Industry +441621,Industry,Industry +441620,Industry,Industry +441614,Industry,Industry +438789,Industry,Industry +438787,Industry,Industry +438786,Industry,Industry +438784,Industry,Industry +438781,Industry,Industry +438779,Industry,Industry +438777,Industry,Industry +438775,Industry,Industry +438772,Industry,Industry +438771,Industry,Industry +438767,Industry,Industry +438766,Industry,Industry +438764,Industry,Industry +438763,Industry,Industry +435163,Industry,Industry +435159,Industry,Industry +435154,Industry,Industry +435151,Industry,Industry +435147,Industry,Industry +435145,Industry,Industry +433559,Industry,Industry +433558,Industry,Industry +433557,Industry,Industry +433556,Industry,Industry +432515,Industry,Industry +432509,Industry,Industry +432506,Industry,Industry +432504,Industry,Industry +432502,Industry,Industry +432500,Industry,Industry +430142,Industry,Industry +430141,Industry,Industry +430140,Industry,Industry +428309,Industry,Industry +428308,Industry,Industry +428304,Industry,Industry +424912,Industry,Industry +423938,Industry,Industry +423937,Industry,Industry +423935,Industry,Industry +423934,Industry,Industry +423933,Industry,Industry +423932,Industry,Industry +423930,Industry,Industry +423928,Industry,Industry +421362,Industry,Industry +421361,Industry,Industry +421360,Industry,Industry +421359,Industry,Industry +421358,Industry,Industry +419628,Industry,Industry +419625,Industry,Industry +419622,Industry,Industry +419621,Industry,Industry +419620,Industry,Industry +419619,Industry,Industry +419616,Industry,Industry +417783,Industry,Industry +417781,Industry,Industry +414495,Industry,Industry +414494,Industry,Industry +414493,Industry,Industry +414492,Industry,Industry +414491,Industry,Industry +414490,Industry,Industry +414489,Industry,Industry +414488,Industry,Industry +414487,Industry,Industry +410357,Industry,Industry +410356,Industry,Industry +410355,Industry,Industry +410354,Industry,Industry +410352,Industry,Industry +410351,Industry,Industry +410350,Industry,Industry +410349,Industry,Industry +410348,Industry,Industry +407223,Industry,Industry +407222,Industry,Industry +407221,Industry,Industry +407220,Industry,Industry +406977,Industry,Industry +406898,Industry,Industry +405337,Industry,Industry +405333,Industry,Industry +405331,Industry,Industry +405330,Industry,Industry +402802,Industry,Industry +402799,Industry,Industry +402797,Industry,Industry +400961,Industry,Industry +400955,Industry,Industry +398873,Industry,Industry +396385,Industry,Industry +396382,Industry,Industry +394194,Industry,Industry +394105,Industry,Industry +392186,Industry,Industry +392185,Industry,Industry +386733,Industry,Industry +386665,Industry,Industry +383842,Industry,Industry +382041,Industry,Industry +382040,Industry,Industry +382039,Industry,Industry +380432,Industry,Industry +380430,Industry,Industry +380429,Industry,Industry +380428,Industry,Industry +380427,Industry,Industry +379904,Industry,Industry +379902,Industry,Industry +379899,Industry,Industry +375877,Industry,Industry +375876,Industry,Industry +375875,Industry,Industry +374961,Industry,Industry +374958,Industry,Industry +374957,Industry,Industry +374955,Industry,Industry +373134,Industry,Industry +372413,Industry,Industry +372403,Industry,Industry +368694,Industry,Industry +368691,Industry,Industry +368688,Industry,Industry +366453,Industry,Industry +366452,Industry,Industry +366451,Industry,Industry +364814,Industry,Industry +364813,Industry,Industry +362965,Industry,Industry +362427,Industry,Industry +362426,Industry,Industry +362425,Industry,Industry +361325,Industry,Industry +361323,Industry,Industry +361322,Industry,Industry +359606,Industry,Industry +359605,Industry,Industry +359604,Industry,Industry +543524,Industry,Industry +543520,Industry,Industry +543514,Industry,Industry +543509,Industry,Industry +543507,Industry,Industry +541323,Industry,Industry +541322,Industry,Industry +541320,Industry,Industry +541317,Industry,Industry +541316,Industry,Industry +540289,Industry,Industry +540107,Industry,Industry +539600,Industry,Industry +539599,Industry,Industry +536950,Industry,Industry +536947,Industry,Industry +536946,Industry,Industry +536945,Industry,Industry +536943,Industry,Industry +536942,Industry,Industry +536939,Industry,Industry +536937,Industry,Industry +536934,Industry,Industry +536931,Industry,Industry +536926,Industry,Industry +536923,Industry,Industry +536919,Industry,Industry +535667,Industry,Industry +535661,Industry,Industry +535657,Industry,Industry +535651,Industry,Industry +535649,Industry,Industry +535647,Industry,Industry +535644,Industry,Industry +531187,Industry,Industry +531183,Industry,Industry +531181,Industry,Industry +531180,Industry,Industry +531179,Industry,Industry +531177,Industry,Industry +527982,Industry,Industry +527980,Industry,Industry +527979,Industry,Industry +527978,Industry,Industry +527977,Industry,Industry +527976,Industry,Industry +527975,Industry,Industry +527974,Industry,Industry +527973,Industry,Industry +527972,Industry,Industry +527971,Industry,Industry +527970,Industry,Industry +527969,Industry,Industry +524551,Industry,Industry +524550,Industry,Industry +524548,Industry,Industry +524547,Industry,Industry +524546,Industry,Industry +524545,Industry,Industry +524544,Industry,Industry +524543,Industry,Industry +524542,Industry,Industry +524541,Industry,Industry +524540,Industry,Industry +524537,Industry,Industry +524536,Industry,Industry +524437,Industry,Industry +524436,Industry,Industry +524432,Industry,Industry +522584,Industry,Industry +522583,Industry,Industry +522581,Industry,Industry +522578,Industry,Industry +522575,Industry,Industry +522572,Industry,Industry +522570,Industry,Industry +519574,Industry,Industry +519572,Industry,Industry +519568,Industry,Industry +519565,Industry,Industry +519564,Industry,Industry +519563,Industry,Industry +519562,Industry,Industry +519560,Industry,Industry +517412,Industry,Industry +517403,Industry,Industry +517395,Industry,Industry +517390,Industry,Industry +517384,Industry,Industry +517377,Industry,Industry +517364,Industry,Industry +514727,Industry,Industry +514725,Industry,Industry +514724,Industry,Industry +514193,Industry,Industry +513244,Industry,Industry +513242,Industry,Industry +513241,Industry,Industry +510775,Industry,Industry +510767,Industry,Industry +510764,Industry,Industry +510762,Industry,Industry +510755,Industry,Industry +510751,Industry,Industry +509447,Industry,Industry +507534,Industry,Industry +507531,Industry,Industry +507530,Industry,Industry +507529,Industry,Industry +507528,Industry,Industry +507527,Industry,Industry +507526,Industry,Industry +503818,Industry,Industry +503817,Industry,Industry +503816,Industry,Industry +503815,Industry,Industry +503814,Industry,Industry +503813,Industry,Industry +502942,Industry,Industry +502941,Industry,Industry +502940,Industry,Industry +502938,Industry,Industry +502937,Industry,Industry +499013,Industry,Industry +499008,Industry,Industry +499002,Industry,Industry +499000,Industry,Industry +498997,Industry,Industry +498989,Industry,Industry +498984,Industry,Industry +498977,Industry,Industry +498974,Industry,Industry +498971,Industry,Industry +498968,Industry,Industry +498966,Industry,Industry +498963,Industry,Industry +498958,Industry,Industry +498956,Industry,Industry +496073,Industry,Industry +496071,Industry,Industry +496068,Industry,Industry +493646,Industry,Industry +493644,Industry,Industry +493637,Industry,Industry +493632,Industry,Industry +493631,Industry,Industry +493627,Industry,Industry +493626,Industry,Industry +489400,Industry,Industry +489399,Industry,Industry +489398,Industry,Industry +489397,Industry,Industry +489396,Industry,Industry +489395,Industry,Industry +489394,Industry,Industry +489393,Industry,Industry +489391,Industry,Industry +489390,Industry,Industry +489389,Industry,Industry +489388,Industry,Industry +489387,Industry,Industry +489386,Industry,Industry +489384,Industry,Industry +486960,Industry,Industry +486955,Industry,Industry +486954,Industry,Industry +486952,Industry,Industry +486951,Industry,Industry +486942,Industry,Industry +486939,Industry,Industry +486936,Industry,Industry +483494,Industry,Industry +483491,Industry,Industry +483488,Industry,Industry +473043,Infrastructure,Infrastructure +473036,Infrastructure,Infrastructure +121294,Infrastructure,Infrastructure +92988,Infrastructure,Infrastructure +92986,Infrastructure,Infrastructure +90138,Infrastructure,Infrastructure +88156,Infrastructure,Infrastructure +161058,Infrastructure,Infrastructure +161055,Infrastructure,Infrastructure +159833,Infrastructure,Infrastructure +157253,Infrastructure,Infrastructure +141416,Infrastructure,Infrastructure +141395,Infrastructure,Infrastructure +138588,Infrastructure,Infrastructure +138587,Infrastructure,Infrastructure +138585,Infrastructure,Infrastructure +128710,Infrastructure,Infrastructure +128708,Infrastructure,Infrastructure +273690,Infrastructure,Infrastructure +273679,Infrastructure,Infrastructure +259598,Infrastructure,Infrastructure +245105,Infrastructure,Infrastructure +245100,Infrastructure,Infrastructure +245098,Infrastructure,Infrastructure +241077,Infrastructure,Infrastructure +241071,Infrastructure,Infrastructure +240841,Infrastructure,Infrastructure +240835,Infrastructure,Infrastructure +240833,Infrastructure,Infrastructure +237077,Infrastructure,Infrastructure +237074,Infrastructure,Infrastructure +217809,Infrastructure,Infrastructure +207196,Infrastructure,Infrastructure +207186,Infrastructure,Infrastructure +202911,Infrastructure,Infrastructure +200326,Infrastructure,Infrastructure +200323,Infrastructure,Infrastructure +194872,Infrastructure,Infrastructure +194869,Infrastructure,Infrastructure +185992,Infrastructure,Infrastructure +185990,Infrastructure,Infrastructure +185980,Infrastructure,Infrastructure +178604,Infrastructure,Infrastructure +178544,Infrastructure,Infrastructure +178524,Infrastructure,Infrastructure +175636,Infrastructure,Infrastructure +175635,Infrastructure,Infrastructure +175629,Infrastructure,Infrastructure +175627,Infrastructure,Infrastructure +173416,Infrastructure,Infrastructure +171967,Infrastructure,Infrastructure +171107,Infrastructure,Infrastructure +171105,Infrastructure,Infrastructure +168076,Infrastructure,Infrastructure +168067,Infrastructure,Infrastructure +165856,Infrastructure,Infrastructure +165854,Infrastructure,Infrastructure +163983,Infrastructure,Infrastructure +380427,Infrastructure,Infrastructure +379902,Infrastructure,Infrastructure +379899,Infrastructure,Infrastructure +375876,Infrastructure,Infrastructure +375875,Infrastructure,Infrastructure +374961,Infrastructure,Infrastructure +374958,Infrastructure,Infrastructure +374957,Infrastructure,Infrastructure +373134,Infrastructure,Infrastructure +368694,Infrastructure,Infrastructure +368691,Infrastructure,Infrastructure +368688,Infrastructure,Infrastructure +366453,Infrastructure,Infrastructure +366452,Infrastructure,Infrastructure +366451,Infrastructure,Infrastructure +364814,Infrastructure,Infrastructure +362965,Infrastructure,Infrastructure +362427,Infrastructure,Infrastructure +362426,Infrastructure,Infrastructure +362425,Infrastructure,Infrastructure +361323,Infrastructure,Infrastructure +361322,Infrastructure,Infrastructure +359606,Infrastructure,Infrastructure +359605,Infrastructure,Infrastructure +355808,Infrastructure,Infrastructure +355807,Infrastructure,Infrastructure +351423,Infrastructure,Infrastructure +351422,Infrastructure,Infrastructure +351421,Infrastructure,Infrastructure +348613,Infrastructure,Infrastructure +348611,Infrastructure,Infrastructure +348609,Infrastructure,Infrastructure +348608,Infrastructure,Infrastructure +343854,Infrastructure,Infrastructure +341263,Infrastructure,Infrastructure +341257,Infrastructure,Infrastructure +341215,Infrastructure,Infrastructure +341212,Infrastructure,Infrastructure +338360,Infrastructure,Infrastructure +338359,Infrastructure,Infrastructure +338358,Infrastructure,Infrastructure +335713,Infrastructure,Infrastructure +331374,Infrastructure,Infrastructure +331373,Infrastructure,Infrastructure +331372,Infrastructure,Infrastructure +331367,Infrastructure,Infrastructure +331365,Infrastructure,Infrastructure +329831,Infrastructure,Infrastructure +329830,Infrastructure,Infrastructure +327751,Infrastructure,Infrastructure +327744,Infrastructure,Infrastructure +322307,Infrastructure,Infrastructure +322303,Infrastructure,Infrastructure +322302,Infrastructure,Infrastructure +322301,Infrastructure,Infrastructure +322300,Infrastructure,Infrastructure +322298,Infrastructure,Infrastructure +318286,Infrastructure,Infrastructure +318280,Infrastructure,Infrastructure +310739,Infrastructure,Infrastructure +310738,Infrastructure,Infrastructure +310737,Infrastructure,Infrastructure +310736,Infrastructure,Infrastructure +310735,Infrastructure,Infrastructure +310734,Infrastructure,Infrastructure +310733,Infrastructure,Infrastructure +305112,Infrastructure,Infrastructure +305111,Infrastructure,Infrastructure +296877,Infrastructure,Infrastructure +290689,Infrastructure,Infrastructure +287064,Infrastructure,Infrastructure +287063,Infrastructure,Infrastructure +287061,Infrastructure,Infrastructure +287057,Infrastructure,Infrastructure +277545,Infrastructure,Infrastructure +277536,Infrastructure,Infrastructure +277530,Infrastructure,Infrastructure +273692,Infrastructure,Infrastructure +273691,Infrastructure,Infrastructure +473024,Infrastructure,Infrastructure +473009,Infrastructure,Infrastructure +466649,Infrastructure,Infrastructure +466648,Infrastructure,Infrastructure +466647,Infrastructure,Infrastructure +463418,Infrastructure,Infrastructure +463415,Infrastructure,Infrastructure +463413,Infrastructure,Infrastructure +463411,Infrastructure,Infrastructure +463408,Infrastructure,Infrastructure +462540,Infrastructure,Infrastructure +462539,Infrastructure,Infrastructure +462535,Infrastructure,Infrastructure +462533,Infrastructure,Infrastructure +461169,Infrastructure,Infrastructure +460712,Infrastructure,Infrastructure +460710,Infrastructure,Infrastructure +459950,Infrastructure,Infrastructure +459949,Infrastructure,Infrastructure +459948,Infrastructure,Infrastructure +459587,Infrastructure,Infrastructure +459584,Infrastructure,Infrastructure +459582,Infrastructure,Infrastructure +459579,Infrastructure,Infrastructure +458390,Infrastructure,Infrastructure +458387,Infrastructure,Infrastructure +456706,Infrastructure,Infrastructure +456705,Infrastructure,Infrastructure +456704,Infrastructure,Infrastructure +456703,Infrastructure,Infrastructure +456702,Infrastructure,Infrastructure +455003,Infrastructure,Infrastructure +455001,Infrastructure,Infrastructure +454999,Infrastructure,Infrastructure +454997,Infrastructure,Infrastructure +454993,Infrastructure,Infrastructure +454991,Infrastructure,Infrastructure +454990,Infrastructure,Infrastructure +454989,Infrastructure,Infrastructure +454988,Infrastructure,Infrastructure +454987,Infrastructure,Infrastructure +454986,Infrastructure,Infrastructure +454984,Infrastructure,Infrastructure +454976,Infrastructure,Infrastructure +451043,Infrastructure,Infrastructure +451042,Infrastructure,Infrastructure +451039,Infrastructure,Infrastructure +451037,Infrastructure,Infrastructure +451036,Infrastructure,Infrastructure +451035,Infrastructure,Infrastructure +451034,Infrastructure,Infrastructure +451033,Infrastructure,Infrastructure +448949,Infrastructure,Infrastructure +448948,Infrastructure,Infrastructure +448947,Infrastructure,Infrastructure +448946,Infrastructure,Infrastructure +448945,Infrastructure,Infrastructure +448944,Infrastructure,Infrastructure +447104,Infrastructure,Infrastructure +447102,Infrastructure,Infrastructure +447097,Infrastructure,Infrastructure +447096,Infrastructure,Infrastructure +447094,Infrastructure,Infrastructure +444445,Infrastructure,Infrastructure +444443,Infrastructure,Infrastructure +444442,Infrastructure,Infrastructure +444441,Infrastructure,Infrastructure +443445,Infrastructure,Infrastructure +443444,Infrastructure,Infrastructure +441643,Infrastructure,Infrastructure +441638,Infrastructure,Infrastructure +441630,Infrastructure,Infrastructure +441628,Infrastructure,Infrastructure +441621,Infrastructure,Infrastructure +441620,Infrastructure,Infrastructure +441614,Infrastructure,Infrastructure +438789,Infrastructure,Infrastructure +438787,Infrastructure,Infrastructure +438786,Infrastructure,Infrastructure +438784,Infrastructure,Infrastructure +438781,Infrastructure,Infrastructure +438779,Infrastructure,Infrastructure +438775,Infrastructure,Infrastructure +438772,Infrastructure,Infrastructure +438771,Infrastructure,Infrastructure +438767,Infrastructure,Infrastructure +438766,Infrastructure,Infrastructure +435163,Infrastructure,Infrastructure +435159,Infrastructure,Infrastructure +435154,Infrastructure,Infrastructure +435151,Infrastructure,Infrastructure +435145,Infrastructure,Infrastructure +433559,Infrastructure,Infrastructure +433558,Infrastructure,Infrastructure +433557,Infrastructure,Infrastructure +433556,Infrastructure,Infrastructure +432515,Infrastructure,Infrastructure +432509,Infrastructure,Infrastructure +432506,Infrastructure,Infrastructure +432504,Infrastructure,Infrastructure +432502,Infrastructure,Infrastructure +432500,Infrastructure,Infrastructure +430141,Infrastructure,Infrastructure +430140,Infrastructure,Infrastructure +428309,Infrastructure,Infrastructure +428308,Infrastructure,Infrastructure +428304,Infrastructure,Infrastructure +423938,Infrastructure,Infrastructure +423935,Infrastructure,Infrastructure +423933,Infrastructure,Infrastructure +423932,Infrastructure,Infrastructure +423930,Infrastructure,Infrastructure +423928,Infrastructure,Infrastructure +421362,Infrastructure,Infrastructure +421360,Infrastructure,Infrastructure +421359,Infrastructure,Infrastructure +421358,Infrastructure,Infrastructure +419628,Infrastructure,Infrastructure +419625,Infrastructure,Infrastructure +419622,Infrastructure,Infrastructure +419621,Infrastructure,Infrastructure +419620,Infrastructure,Infrastructure +419619,Infrastructure,Infrastructure +419616,Infrastructure,Infrastructure +417783,Infrastructure,Infrastructure +417781,Infrastructure,Infrastructure +414494,Infrastructure,Infrastructure +414493,Infrastructure,Infrastructure +414490,Infrastructure,Infrastructure +414489,Infrastructure,Infrastructure +414488,Infrastructure,Infrastructure +414487,Infrastructure,Infrastructure +410357,Infrastructure,Infrastructure +410355,Infrastructure,Infrastructure +410354,Infrastructure,Infrastructure +410352,Infrastructure,Infrastructure +410351,Infrastructure,Infrastructure +410348,Infrastructure,Infrastructure +407223,Infrastructure,Infrastructure +407222,Infrastructure,Infrastructure +407221,Infrastructure,Infrastructure +406977,Infrastructure,Infrastructure +406898,Infrastructure,Infrastructure +405337,Infrastructure,Infrastructure +405333,Infrastructure,Infrastructure +405330,Infrastructure,Infrastructure +402802,Infrastructure,Infrastructure +402799,Infrastructure,Infrastructure +400961,Infrastructure,Infrastructure +400955,Infrastructure,Infrastructure +398873,Infrastructure,Infrastructure +396385,Infrastructure,Infrastructure +396382,Infrastructure,Infrastructure +394194,Infrastructure,Infrastructure +394105,Infrastructure,Infrastructure +386733,Infrastructure,Infrastructure +383842,Infrastructure,Infrastructure +383840,Infrastructure,Infrastructure +382041,Infrastructure,Infrastructure +543520,Infrastructure,Infrastructure +543514,Infrastructure,Infrastructure +541322,Infrastructure,Infrastructure +541320,Infrastructure,Infrastructure +541316,Infrastructure,Infrastructure +540289,Infrastructure,Infrastructure +540107,Infrastructure,Infrastructure +536950,Infrastructure,Infrastructure +536947,Infrastructure,Infrastructure +536943,Infrastructure,Infrastructure +536942,Infrastructure,Infrastructure +536939,Infrastructure,Infrastructure +536934,Infrastructure,Infrastructure +536931,Infrastructure,Infrastructure +536926,Infrastructure,Infrastructure +536923,Infrastructure,Infrastructure +536920,Infrastructure,Infrastructure +535657,Infrastructure,Infrastructure +535649,Infrastructure,Infrastructure +535647,Infrastructure,Infrastructure +531183,Infrastructure,Infrastructure +531180,Infrastructure,Infrastructure +531177,Infrastructure,Infrastructure +527982,Infrastructure,Infrastructure +527976,Infrastructure,Infrastructure +527975,Infrastructure,Infrastructure +527974,Infrastructure,Infrastructure +527973,Infrastructure,Infrastructure +527972,Infrastructure,Infrastructure +527970,Infrastructure,Infrastructure +527969,Infrastructure,Infrastructure +524550,Infrastructure,Infrastructure +524545,Infrastructure,Infrastructure +524544,Infrastructure,Infrastructure +524541,Infrastructure,Infrastructure +524540,Infrastructure,Infrastructure +524537,Infrastructure,Infrastructure +524437,Infrastructure,Infrastructure +524436,Infrastructure,Infrastructure +524432,Infrastructure,Infrastructure +522584,Infrastructure,Infrastructure +522581,Infrastructure,Infrastructure +519572,Infrastructure,Infrastructure +519564,Infrastructure,Infrastructure +519563,Infrastructure,Infrastructure +519562,Infrastructure,Infrastructure +519560,Infrastructure,Infrastructure +517377,Infrastructure,Infrastructure +517364,Infrastructure,Infrastructure +514724,Infrastructure,Infrastructure +514193,Infrastructure,Infrastructure +513244,Infrastructure,Infrastructure +513241,Infrastructure,Infrastructure +510775,Infrastructure,Infrastructure +510767,Infrastructure,Infrastructure +510764,Infrastructure,Infrastructure +510755,Infrastructure,Infrastructure +510751,Infrastructure,Infrastructure +509447,Infrastructure,Infrastructure +507534,Infrastructure,Infrastructure +507531,Infrastructure,Infrastructure +507527,Infrastructure,Infrastructure +507526,Infrastructure,Infrastructure +503816,Infrastructure,Infrastructure +503814,Infrastructure,Infrastructure +503813,Infrastructure,Infrastructure +502942,Infrastructure,Infrastructure +502941,Infrastructure,Infrastructure +502940,Infrastructure,Infrastructure +502938,Infrastructure,Infrastructure +502937,Infrastructure,Infrastructure +499002,Infrastructure,Infrastructure +499000,Infrastructure,Infrastructure +498971,Infrastructure,Infrastructure +498963,Infrastructure,Infrastructure +498958,Infrastructure,Infrastructure +489400,Infrastructure,Infrastructure +489398,Infrastructure,Infrastructure +489396,Infrastructure,Infrastructure +489394,Infrastructure,Infrastructure +489391,Infrastructure,Infrastructure +489390,Infrastructure,Infrastructure +489389,Infrastructure,Infrastructure +489388,Infrastructure,Infrastructure +489384,Infrastructure,Infrastructure +486960,Infrastructure,Infrastructure +486955,Infrastructure,Infrastructure +486952,Infrastructure,Infrastructure +486951,Infrastructure,Infrastructure +486942,Infrastructure,Infrastructure +486939,Infrastructure,Infrastructure +486936,Infrastructure,Infrastructure +483494,Infrastructure,Infrastructure +483491,Infrastructure,Infrastructure +483488,Infrastructure,Infrastructure +483482,Infrastructure,Infrastructure +482666,Infrastructure,Infrastructure +481501,Infrastructure,Infrastructure +481497,Infrastructure,Infrastructure +481487,Infrastructure,Infrastructure +479403,Infrastructure,Infrastructure +479397,Infrastructure,Infrastructure +477852,Infrastructure,Infrastructure +477848,Infrastructure,Infrastructure +402797,Intellectual Property,Intellectual Property +398873,Intellectual Property,Intellectual Property +148248,Intellectual Property,Intellectual Property +138587,Intellectual Property,Intellectual Property +128708,Intellectual Property,Intellectual Property +121279,Intellectual Property,Intellectual Property +175636,Intellectual Property,Intellectual Property +175634,Intellectual Property,Intellectual Property +175631,Intellectual Property,Intellectual Property +175629,Intellectual Property,Intellectual Property +173418,Intellectual Property,Intellectual Property +171968,Intellectual Property,Intellectual Property +171967,Intellectual Property,Intellectual Property +171107,Intellectual Property,Intellectual Property +171105,Intellectual Property,Intellectual Property +168057,Intellectual Property,Intellectual Property +165854,Intellectual Property,Intellectual Property +159959,Intellectual Property,Intellectual Property +159848,Intellectual Property,Intellectual Property +159833,Intellectual Property,Intellectual Property +157250,Intellectual Property,Intellectual Property +154671,Intellectual Property,Intellectual Property +247656,Intellectual Property,Intellectual Property +245105,Intellectual Property,Intellectual Property +241077,Intellectual Property,Intellectual Property +241071,Intellectual Property,Intellectual Property +237078,Intellectual Property,Intellectual Property +233697,Intellectual Property,Intellectual Property +233696,Intellectual Property,Intellectual Property +233695,Intellectual Property,Intellectual Property +230078,Intellectual Property,Intellectual Property +230077,Intellectual Property,Intellectual Property +230076,Intellectual Property,Intellectual Property +230073,Intellectual Property,Intellectual Property +226970,Intellectual Property,Intellectual Property +223595,Intellectual Property,Intellectual Property +217853,Intellectual Property,Intellectual Property +217827,Intellectual Property,Intellectual Property +217784,Intellectual Property,Intellectual Property +211289,Intellectual Property,Intellectual Property +207195,Intellectual Property,Intellectual Property +207190,Intellectual Property,Intellectual Property +207186,Intellectual Property,Intellectual Property +207181,Intellectual Property,Intellectual Property +202905,Intellectual Property,Intellectual Property +202901,Intellectual Property,Intellectual Property +200326,Intellectual Property,Intellectual Property +194872,Intellectual Property,Intellectual Property +194869,Intellectual Property,Intellectual Property +189602,Intellectual Property,Intellectual Property +189575,Intellectual Property,Intellectual Property +185992,Intellectual Property,Intellectual Property +185991,Intellectual Property,Intellectual Property +185990,Intellectual Property,Intellectual Property +185980,Intellectual Property,Intellectual Property +185979,Intellectual Property,Intellectual Property +178684,Intellectual Property,Intellectual Property +178624,Intellectual Property,Intellectual Property +178564,Intellectual Property,Intellectual Property +178544,Intellectual Property,Intellectual Property +178524,Intellectual Property,Intellectual Property +178504,Intellectual Property,Intellectual Property +396385,Intellectual Property,Intellectual Property +396382,Intellectual Property,Intellectual Property +394105,Intellectual Property,Intellectual Property +392185,Intellectual Property,Intellectual Property +383842,Intellectual Property,Intellectual Property +383840,Intellectual Property,Intellectual Property +382040,Intellectual Property,Intellectual Property +382039,Intellectual Property,Intellectual Property +375876,Intellectual Property,Intellectual Property +375875,Intellectual Property,Intellectual Property +374961,Intellectual Property,Intellectual Property +374957,Intellectual Property,Intellectual Property +373134,Intellectual Property,Intellectual Property +372413,Intellectual Property,Intellectual Property +372403,Intellectual Property,Intellectual Property +368688,Intellectual Property,Intellectual Property +366451,Intellectual Property,Intellectual Property +362965,Intellectual Property,Intellectual Property +362426,Intellectual Property,Intellectual Property +362425,Intellectual Property,Intellectual Property +361325,Intellectual Property,Intellectual Property +361323,Intellectual Property,Intellectual Property +359606,Intellectual Property,Intellectual Property +359605,Intellectual Property,Intellectual Property +359604,Intellectual Property,Intellectual Property +357059,Intellectual Property,Intellectual Property +355807,Intellectual Property,Intellectual Property +353176,Intellectual Property,Intellectual Property +353175,Intellectual Property,Intellectual Property +351420,Intellectual Property,Intellectual Property +341257,Intellectual Property,Intellectual Property +335713,Intellectual Property,Intellectual Property +331373,Intellectual Property,Intellectual Property +329831,Intellectual Property,Intellectual Property +329830,Intellectual Property,Intellectual Property +322302,Intellectual Property,Intellectual Property +322294,Intellectual Property,Intellectual Property +314689,Intellectual Property,Intellectual Property +314453,Intellectual Property,Intellectual Property +313410,Intellectual Property,Intellectual Property +310735,Intellectual Property,Intellectual Property +296877,Intellectual Property,Intellectual Property +287064,Intellectual Property,Intellectual Property +287063,Intellectual Property,Intellectual Property +287058,Intellectual Property,Intellectual Property +277545,Intellectual Property,Intellectual Property +277541,Intellectual Property,Intellectual Property +277536,Intellectual Property,Intellectual Property +277532,Intellectual Property,Intellectual Property +273692,Intellectual Property,Intellectual Property +273677,Intellectual Property,Intellectual Property +269621,Intellectual Property,Intellectual Property +264503,Intellectual Property,Intellectual Property +264501,Intellectual Property,Intellectual Property +264499,Intellectual Property,Intellectual Property +536942,Intellectual Property,Intellectual Property +536931,Intellectual Property,Intellectual Property +527982,Intellectual Property,Intellectual Property +510764,Intellectual Property,Intellectual Property +502941,Intellectual Property,Intellectual Property +502940,Intellectual Property,Intellectual Property +502938,Intellectual Property,Intellectual Property +498966,Intellectual Property,Intellectual Property +493644,Intellectual Property,Intellectual Property +493637,Intellectual Property,Intellectual Property +489397,Intellectual Property,Intellectual Property +486955,Intellectual Property,Intellectual Property +483483,Intellectual Property,Intellectual Property +481501,Intellectual Property,Intellectual Property +481497,Intellectual Property,Intellectual Property +481494,Intellectual Property,Intellectual Property +479403,Intellectual Property,Intellectual Property +477852,Intellectual Property,Intellectual Property +477832,Intellectual Property,Intellectual Property +470696,Intellectual Property,Intellectual Property +466649,Intellectual Property,Intellectual Property +466647,Intellectual Property,Intellectual Property +463416,Intellectual Property,Intellectual Property +463415,Intellectual Property,Intellectual Property +462540,Intellectual Property,Intellectual Property +462536,Intellectual Property,Intellectual Property +462532,Intellectual Property,Intellectual Property +461170,Intellectual Property,Intellectual Property +461169,Intellectual Property,Intellectual Property +460712,Intellectual Property,Intellectual Property +460710,Intellectual Property,Intellectual Property +459949,Intellectual Property,Intellectual Property +459948,Intellectual Property,Intellectual Property +459587,Intellectual Property,Intellectual Property +459584,Intellectual Property,Intellectual Property +459582,Intellectual Property,Intellectual Property +458390,Intellectual Property,Intellectual Property +458389,Intellectual Property,Intellectual Property +456706,Intellectual Property,Intellectual Property +456705,Intellectual Property,Intellectual Property +456702,Intellectual Property,Intellectual Property +454991,Intellectual Property,Intellectual Property +454976,Intellectual Property,Intellectual Property +451042,Intellectual Property,Intellectual Property +451039,Intellectual Property,Intellectual Property +448948,Intellectual Property,Intellectual Property +448944,Intellectual Property,Intellectual Property +447104,Intellectual Property,Intellectual Property +447102,Intellectual Property,Intellectual Property +447100,Intellectual Property,Intellectual Property +444442,Intellectual Property,Intellectual Property +441620,Intellectual Property,Intellectual Property +441614,Intellectual Property,Intellectual Property +438789,Intellectual Property,Intellectual Property +438784,Intellectual Property,Intellectual Property +438772,Intellectual Property,Intellectual Property +438771,Intellectual Property,Intellectual Property +438767,Intellectual Property,Intellectual Property +435147,Intellectual Property,Intellectual Property +435145,Intellectual Property,Intellectual Property +433558,Intellectual Property,Intellectual Property +433557,Intellectual Property,Intellectual Property +433556,Intellectual Property,Intellectual Property +432500,Intellectual Property,Intellectual Property +430141,Intellectual Property,Intellectual Property +430140,Intellectual Property,Intellectual Property +428308,Intellectual Property,Intellectual Property +428304,Intellectual Property,Intellectual Property +423938,Intellectual Property,Intellectual Property +423935,Intellectual Property,Intellectual Property +423932,Intellectual Property,Intellectual Property +423930,Intellectual Property,Intellectual Property +423928,Intellectual Property,Intellectual Property +421362,Intellectual Property,Intellectual Property +419628,Intellectual Property,Intellectual Property +419625,Intellectual Property,Intellectual Property +419622,Intellectual Property,Intellectual Property +419621,Intellectual Property,Intellectual Property +419620,Intellectual Property,Intellectual Property +419619,Intellectual Property,Intellectual Property +419616,Intellectual Property,Intellectual Property +417783,Intellectual Property,Intellectual Property +414494,Intellectual Property,Intellectual Property +414491,Intellectual Property,Intellectual Property +414490,Intellectual Property,Intellectual Property +414488,Intellectual Property,Intellectual Property +410355,Intellectual Property,Intellectual Property +410354,Intellectual Property,Intellectual Property +410352,Intellectual Property,Intellectual Property +410349,Intellectual Property,Intellectual Property +410348,Intellectual Property,Intellectual Property +407222,Intellectual Property,Intellectual Property +407221,Intellectual Property,Intellectual Property +406977,Intellectual Property,Intellectual Property +406898,Intellectual Property,Intellectual Property +424912,Internal Trade,Internal Trade +423930,Internal Trade,Internal Trade +92986,Internal Trade,Internal Trade +128710,Internal Trade,Internal Trade +351420,Internal Trade,Internal Trade +348611,Internal Trade,Internal Trade +347181,Internal Trade,Internal Trade +331374,Internal Trade,Internal Trade +331373,Internal Trade,Internal Trade +331372,Internal Trade,Internal Trade +331366,Internal Trade,Internal Trade +331365,Internal Trade,Internal Trade +318280,Internal Trade,Internal Trade +310738,Internal Trade,Internal Trade +273693,Internal Trade,Internal Trade +410356,Internal Trade,Internal Trade +410352,Internal Trade,Internal Trade +531179,Internal Trade,Internal Trade +531177,Internal Trade,Internal Trade +519574,Internal Trade,Internal Trade +498989,Internal Trade,Internal Trade +489400,Internal Trade,Internal Trade +489399,Internal Trade,Internal Trade +466646,Internal Trade,Internal Trade +355807,International Relations,International Relations +355806,International Relations,International Relations +82217,International Relations,International Relations +82214,International Relations,International Relations +81396,International Relations,International Relations +80485,International Relations,International Relations +80484,International Relations,International Relations +80479,International Relations,International Relations +80478,International Relations,International Relations +80476,International Relations,International Relations +80475,International Relations,International Relations +80462,International Relations,International Relations +77202,International Relations,International Relations +90144,International Relations,International Relations +90142,International Relations,International Relations +90136,International Relations,International Relations +90135,International Relations,International Relations +90132,International Relations,International Relations +90130,International Relations,International Relations +90129,International Relations,International Relations +90126,International Relations,International Relations +90118,International Relations,International Relations +88151,International Relations,International Relations +88149,International Relations,International Relations +88147,International Relations,International Relations +88143,International Relations,International Relations +88136,International Relations,International Relations +88133,International Relations,International Relations +86996,International Relations,International Relations +86995,International Relations,International Relations +85420,International Relations,International Relations +85417,International Relations,International Relations +85416,International Relations,International Relations +85414,International Relations,International Relations +85413,International Relations,International Relations +85410,International Relations,International Relations +82679,International Relations,International Relations +82678,International Relations,International Relations +82677,International Relations,International Relations +82675,International Relations,International Relations +82218,International Relations,International Relations +124754,International Relations,International Relations +124738,International Relations,International Relations +124737,International Relations,International Relations +124736,International Relations,International Relations +124735,International Relations,International Relations +124734,International Relations,International Relations +121294,International Relations,International Relations +121285,International Relations,International Relations +121283,International Relations,International Relations +121282,International Relations,International Relations +121279,International Relations,International Relations +121278,International Relations,International Relations +117467,International Relations,International Relations +117466,International Relations,International Relations +117465,International Relations,International Relations +117464,International Relations,International Relations +117463,International Relations,International Relations +117462,International Relations,International Relations +117461,International Relations,International Relations +114125,International Relations,International Relations +114112,International Relations,International Relations +114109,International Relations,International Relations +114107,International Relations,International Relations +113735,International Relations,International Relations +109305,International Relations,International Relations +109302,International Relations,International Relations +109301,International Relations,International Relations +109300,International Relations,International Relations +108547,International Relations,International Relations +108546,International Relations,International Relations +108544,International Relations,International Relations +108543,International Relations,International Relations +108541,International Relations,International Relations +105760,International Relations,International Relations +105759,International Relations,International Relations +105758,International Relations,International Relations +105757,International Relations,International Relations +105755,International Relations,International Relations +101166,International Relations,International Relations +101165,International Relations,International Relations +101163,International Relations,International Relations +101162,International Relations,International Relations +101158,International Relations,International Relations +99541,International Relations,International Relations +99540,International Relations,International Relations +99536,International Relations,International Relations +99534,International Relations,International Relations +97337,International Relations,International Relations +97061,International Relations,International Relations +97057,International Relations,International Relations +92990,International Relations,International Relations +92985,International Relations,International Relations +92984,International Relations,International Relations +92983,International Relations,International Relations +92981,International Relations,International Relations +92978,International Relations,International Relations +92976,International Relations,International Relations +92760,International Relations,International Relations +90146,International Relations,International Relations +185979,International Relations,International Relations +178684,International Relations,International Relations +178644,International Relations,International Relations +178624,International Relations,International Relations +178604,International Relations,International Relations +178584,International Relations,International Relations +178564,International Relations,International Relations +178544,International Relations,International Relations +178524,International Relations,International Relations +178504,International Relations,International Relations +175636,International Relations,International Relations +175635,International Relations,International Relations +175634,International Relations,International Relations +175632,International Relations,International Relations +175631,International Relations,International Relations +175629,International Relations,International Relations +175627,International Relations,International Relations +175626,International Relations,International Relations +175625,International Relations,International Relations +175624,International Relations,International Relations +173421,International Relations,International Relations +173418,International Relations,International Relations +173416,International Relations,International Relations +173415,International Relations,International Relations +171970,International Relations,International Relations +171969,International Relations,International Relations +171968,International Relations,International Relations +171967,International Relations,International Relations +171107,International Relations,International Relations +171106,International Relations,International Relations +171105,International Relations,International Relations +171104,International Relations,International Relations +168076,International Relations,International Relations +168067,International Relations,International Relations +168064,International Relations,International Relations +168060,International Relations,International Relations +168057,International Relations,International Relations +168054,International Relations,International Relations +168052,International Relations,International Relations +165856,International Relations,International Relations +165854,International Relations,International Relations +165850,International Relations,International Relations +165844,International Relations,International Relations +161058,International Relations,International Relations +161056,International Relations,International Relations +161055,International Relations,International Relations +161054,International Relations,International Relations +160094,International Relations,International Relations +159959,International Relations,International Relations +159955,International Relations,International Relations +159848,International Relations,International Relations +159842,International Relations,International Relations +159833,International Relations,International Relations +159829,International Relations,International Relations +159819,International Relations,International Relations +159815,International Relations,International Relations +157265,International Relations,International Relations +157263,International Relations,International Relations +157260,International Relations,International Relations +157258,International Relations,International Relations +157253,International Relations,International Relations +153279,International Relations,International Relations +152288,International Relations,International Relations +152287,International Relations,International Relations +152286,International Relations,International Relations +152283,International Relations,International Relations +152280,International Relations,International Relations +150197,International Relations,International Relations +150042,International Relations,International Relations +150041,International Relations,International Relations +150040,International Relations,International Relations +149943,International Relations,International Relations +149941,International Relations,International Relations +149940,International Relations,International Relations +149939,International Relations,International Relations +148262,International Relations,International Relations +148259,International Relations,International Relations +148257,International Relations,International Relations +148256,International Relations,International Relations +148255,International Relations,International Relations +148252,International Relations,International Relations +148251,International Relations,International Relations +148246,International Relations,International Relations +148245,International Relations,International Relations +148243,International Relations,International Relations +146823,International Relations,International Relations +146038,International Relations,International Relations +146036,International Relations,International Relations +146032,International Relations,International Relations +146029,International Relations,International Relations +146028,International Relations,International Relations +146025,International Relations,International Relations +146020,International Relations,International Relations +146017,International Relations,International Relations +141414,International Relations,International Relations +138589,International Relations,International Relations +138587,International Relations,International Relations +138583,International Relations,International Relations +138580,International Relations,International Relations +138579,International Relations,International Relations +138578,International Relations,International Relations +132226,International Relations,International Relations +132223,International Relations,International Relations +128710,International Relations,International Relations +128708,International Relations,International Relations +128707,International Relations,International Relations +128706,International Relations,International Relations +128705,International Relations,International Relations +128704,International Relations,International Relations +128703,International Relations,International Relations +128702,International Relations,International Relations +353176,International Relations,International Relations +353175,International Relations,International Relations +353172,International Relations,International Relations +351423,International Relations,International Relations +351422,International Relations,International Relations +351421,International Relations,International Relations +348613,International Relations,International Relations +348611,International Relations,International Relations +348610,International Relations,International Relations +348609,International Relations,International Relations +348608,International Relations,International Relations +347179,International Relations,International Relations +347178,International Relations,International Relations +343854,International Relations,International Relations +341263,International Relations,International Relations +341257,International Relations,International Relations +341252,International Relations,International Relations +341249,International Relations,International Relations +341246,International Relations,International Relations +341240,International Relations,International Relations +341234,International Relations,International Relations +341223,International Relations,International Relations +341215,International Relations,International Relations +341212,International Relations,International Relations +338360,International Relations,International Relations +338358,International Relations,International Relations +338357,International Relations,International Relations +335715,International Relations,International Relations +335713,International Relations,International Relations +331369,International Relations,International Relations +331367,International Relations,International Relations +329830,International Relations,International Relations +327751,International Relations,International Relations +327744,International Relations,International Relations +327742,International Relations,International Relations +325081,International Relations,International Relations +322307,International Relations,International Relations +322303,International Relations,International Relations +322302,International Relations,International Relations +322294,International Relations,International Relations +322292,International Relations,International Relations +318287,International Relations,International Relations +318286,International Relations,International Relations +318284,International Relations,International Relations +318280,International Relations,International Relations +314689,International Relations,International Relations +314455,International Relations,International Relations +314454,International Relations,International Relations +314453,International Relations,International Relations +314451,International Relations,International Relations +314450,International Relations,International Relations +314449,International Relations,International Relations +313410,International Relations,International Relations +310739,International Relations,International Relations +310738,International Relations,International Relations +310737,International Relations,International Relations +310736,International Relations,International Relations +310735,International Relations,International Relations +310734,International Relations,International Relations +310733,International Relations,International Relations +305112,International Relations,International Relations +305111,International Relations,International Relations +296877,International Relations,International Relations +290689,International Relations,International Relations +287064,International Relations,International Relations +287063,International Relations,International Relations +287061,International Relations,International Relations +287058,International Relations,International Relations +277541,International Relations,International Relations +277536,International Relations,International Relations +277532,International Relations,International Relations +273692,International Relations,International Relations +273691,International Relations,International Relations +273689,International Relations,International Relations +273687,International Relations,International Relations +273684,International Relations,International Relations +273679,International Relations,International Relations +273677,International Relations,International Relations +269621,International Relations,International Relations +264503,International Relations,International Relations +264501,International Relations,International Relations +264499,International Relations,International Relations +264498,International Relations,International Relations +259599,International Relations,International Relations +259598,International Relations,International Relations +247661,International Relations,International Relations +247660,International Relations,International Relations +247658,International Relations,International Relations +247656,International Relations,International Relations +245106,International Relations,International Relations +245105,International Relations,International Relations +245100,International Relations,International Relations +245098,International Relations,International Relations +241077,International Relations,International Relations +241071,International Relations,International Relations +240973,International Relations,International Relations +240972,International Relations,International Relations +240846,International Relations,International Relations +240841,International Relations,International Relations +240835,International Relations,International Relations +237078,International Relations,International Relations +237077,International Relations,International Relations +237076,International Relations,International Relations +237074,International Relations,International Relations +233697,International Relations,International Relations +233693,International Relations,International Relations +233691,International Relations,International Relations +230076,International Relations,International Relations +230074,International Relations,International Relations +230073,International Relations,International Relations +230072,International Relations,International Relations +226970,International Relations,International Relations +226967,International Relations,International Relations +223598,International Relations,International Relations +223595,International Relations,International Relations +217827,International Relations,International Relations +217809,International Relations,International Relations +217807,International Relations,International Relations +217784,International Relations,International Relations +217781,International Relations,International Relations +217777,International Relations,International Relations +211292,International Relations,International Relations +211291,International Relations,International Relations +211290,International Relations,International Relations +211289,International Relations,International Relations +207195,International Relations,International Relations +207190,International Relations,International Relations +207186,International Relations,International Relations +207181,International Relations,International Relations +202911,International Relations,International Relations +202905,International Relations,International Relations +202901,International Relations,International Relations +202898,International Relations,International Relations +200326,International Relations,International Relations +200323,International Relations,International Relations +194880,International Relations,International Relations +194872,International Relations,International Relations +194870,International Relations,International Relations +194869,International Relations,International Relations +189602,International Relations,International Relations +189600,International Relations,International Relations +189595,International Relations,International Relations +189591,International Relations,International Relations +189586,International Relations,International Relations +189579,International Relations,International Relations +189577,International Relations,International Relations +189575,International Relations,International Relations +185992,International Relations,International Relations +185991,International Relations,International Relations +185990,International Relations,International Relations +185988,International Relations,International Relations +185980,International Relations,International Relations +543524,International Relations,International Relations +543520,International Relations,International Relations +543514,International Relations,International Relations +543509,International Relations,International Relations +541322,International Relations,International Relations +541320,International Relations,International Relations +541317,International Relations,International Relations +540289,International Relations,International Relations +539600,International Relations,International Relations +539599,International Relations,International Relations +536950,International Relations,International Relations +536947,International Relations,International Relations +536946,International Relations,International Relations +536945,International Relations,International Relations +536939,International Relations,International Relations +536937,International Relations,International Relations +536923,International Relations,International Relations +536920,International Relations,International Relations +536919,International Relations,International Relations +535661,International Relations,International Relations +535651,International Relations,International Relations +535644,International Relations,International Relations +531187,International Relations,International Relations +531183,International Relations,International Relations +531181,International Relations,International Relations +527980,International Relations,International Relations +527979,International Relations,International Relations +527973,International Relations,International Relations +527971,International Relations,International Relations +527969,International Relations,International Relations +524550,International Relations,International Relations +524548,International Relations,International Relations +524547,International Relations,International Relations +524545,International Relations,International Relations +524544,International Relations,International Relations +524543,International Relations,International Relations +524541,International Relations,International Relations +524540,International Relations,International Relations +524537,International Relations,International Relations +524436,International Relations,International Relations +524432,International Relations,International Relations +522583,International Relations,International Relations +522581,International Relations,International Relations +522578,International Relations,International Relations +522575,International Relations,International Relations +522572,International Relations,International Relations +522570,International Relations,International Relations +519564,International Relations,International Relations +519562,International Relations,International Relations +519560,International Relations,International Relations +517390,International Relations,International Relations +517377,International Relations,International Relations +517364,International Relations,International Relations +514725,International Relations,International Relations +513244,International Relations,International Relations +510767,International Relations,International Relations +510764,International Relations,International Relations +510762,International Relations,International Relations +510755,International Relations,International Relations +507528,International Relations,International Relations +503818,International Relations,International Relations +503817,International Relations,International Relations +503812,International Relations,International Relations +502942,International Relations,International Relations +502940,International Relations,International Relations +502937,International Relations,International Relations +499002,International Relations,International Relations +498974,International Relations,International Relations +498971,International Relations,International Relations +498966,International Relations,International Relations +498963,International Relations,International Relations +498956,International Relations,International Relations +496073,International Relations,International Relations +496071,International Relations,International Relations +496068,International Relations,International Relations +493644,International Relations,International Relations +493637,International Relations,International Relations +493632,International Relations,International Relations +489397,International Relations,International Relations +489395,International Relations,International Relations +489393,International Relations,International Relations +489386,International Relations,International Relations +486955,International Relations,International Relations +486936,International Relations,International Relations +483483,International Relations,International Relations +481501,International Relations,International Relations +481500,International Relations,International Relations +481497,International Relations,International Relations +481494,International Relations,International Relations +479401,International Relations,International Relations +477858,International Relations,International Relations +477852,International Relations,International Relations +477832,International Relations,International Relations +477828,International Relations,International Relations +477825,International Relations,International Relations +475151,International Relations,International Relations +475149,International Relations,International Relations +473036,International Relations,International Relations +473024,International Relations,International Relations +473009,International Relations,International Relations +472984,International Relations,International Relations +470696,International Relations,International Relations +466649,International Relations,International Relations +463410,International Relations,International Relations +461169,International Relations,International Relations +460712,International Relations,International Relations +460710,International Relations,International Relations +459950,International Relations,International Relations +459949,International Relations,International Relations +459948,International Relations,International Relations +459587,International Relations,International Relations +459579,International Relations,International Relations +458390,International Relations,International Relations +458389,International Relations,International Relations +458387,International Relations,International Relations +456704,International Relations,International Relations +456703,International Relations,International Relations +456702,International Relations,International Relations +454993,International Relations,International Relations +454988,International Relations,International Relations +454987,International Relations,International Relations +454984,International Relations,International Relations +451043,International Relations,International Relations +451039,International Relations,International Relations +451037,International Relations,International Relations +451036,International Relations,International Relations +451034,International Relations,International Relations +451033,International Relations,International Relations +448949,International Relations,International Relations +448947,International Relations,International Relations +448946,International Relations,International Relations +448945,International Relations,International Relations +447104,International Relations,International Relations +447102,International Relations,International Relations +447100,International Relations,International Relations +447097,International Relations,International Relations +447096,International Relations,International Relations +444442,International Relations,International Relations +444441,International Relations,International Relations +441643,International Relations,International Relations +441630,International Relations,International Relations +441620,International Relations,International Relations +441614,International Relations,International Relations +438789,International Relations,International Relations +438786,International Relations,International Relations +438781,International Relations,International Relations +438779,International Relations,International Relations +438775,International Relations,International Relations +438771,International Relations,International Relations +438767,International Relations,International Relations +438766,International Relations,International Relations +435163,International Relations,International Relations +435159,International Relations,International Relations +435147,International Relations,International Relations +435145,International Relations,International Relations +433559,International Relations,International Relations +433558,International Relations,International Relations +433557,International Relations,International Relations +432515,International Relations,International Relations +432509,International Relations,International Relations +432506,International Relations,International Relations +432502,International Relations,International Relations +430142,International Relations,International Relations +430141,International Relations,International Relations +430140,International Relations,International Relations +423938,International Relations,International Relations +423937,International Relations,International Relations +423933,International Relations,International Relations +421360,International Relations,International Relations +421359,International Relations,International Relations +419628,International Relations,International Relations +419616,International Relations,International Relations +417783,International Relations,International Relations +414494,International Relations,International Relations +414491,International Relations,International Relations +414490,International Relations,International Relations +414489,International Relations,International Relations +414487,International Relations,International Relations +410357,International Relations,International Relations +410355,International Relations,International Relations +410354,International Relations,International Relations +410351,International Relations,International Relations +406977,International Relations,International Relations +405333,International Relations,International Relations +402797,International Relations,International Relations +400961,International Relations,International Relations +400955,International Relations,International Relations +398873,International Relations,International Relations +396385,International Relations,International Relations +396382,International Relations,International Relations +394194,International Relations,International Relations +394105,International Relations,International Relations +392185,International Relations,International Relations +383840,International Relations,International Relations +382041,International Relations,International Relations +380427,International Relations,International Relations +379902,International Relations,International Relations +379899,International Relations,International Relations +375876,International Relations,International Relations +375875,International Relations,International Relations +374961,International Relations,International Relations +374958,International Relations,International Relations +374957,International Relations,International Relations +374955,International Relations,International Relations +373134,International Relations,International Relations +372413,International Relations,International Relations +372403,International Relations,International Relations +368691,International Relations,International Relations +368688,International Relations,International Relations +366451,International Relations,International Relations +362965,International Relations,International Relations +362426,International Relations,International Relations +362425,International Relations,International Relations +361325,International Relations,International Relations +361323,International Relations,International Relations +361322,International Relations,International Relations +359606,International Relations,International Relations +359605,International Relations,International Relations +359604,International Relations,International Relations +359603,International Relations,International Relations +359602,International Relations,International Relations +357060,International Relations,International Relations +357059,International Relations,International Relations +394194,International Trade,International Trade +394105,International Trade,International Trade +82217,International Trade,International Trade +82215,International Trade,International Trade +82214,International Trade,International Trade +81396,International Trade,International Trade +80485,International Trade,International Trade +80484,International Trade,International Trade +80479,International Trade,International Trade +80478,International Trade,International Trade +80476,International Trade,International Trade +80475,International Trade,International Trade +80462,International Trade,International Trade +77202,International Trade,International Trade +77200,International Trade,International Trade +92760,International Trade,International Trade +90146,International Trade,International Trade +90145,International Trade,International Trade +90144,International Trade,International Trade +90142,International Trade,International Trade +90136,International Trade,International Trade +90135,International Trade,International Trade +90132,International Trade,International Trade +90130,International Trade,International Trade +90122,International Trade,International Trade +90118,International Trade,International Trade +88151,International Trade,International Trade +88149,International Trade,International Trade +88147,International Trade,International Trade +88136,International Trade,International Trade +88133,International Trade,International Trade +85414,International Trade,International Trade +85413,International Trade,International Trade +85410,International Trade,International Trade +82679,International Trade,International Trade +82678,International Trade,International Trade +82677,International Trade,International Trade +82218,International Trade,International Trade +121285,International Trade,International Trade +121283,International Trade,International Trade +121282,International Trade,International Trade +121279,International Trade,International Trade +121278,International Trade,International Trade +117467,International Trade,International Trade +117466,International Trade,International Trade +117465,International Trade,International Trade +117464,International Trade,International Trade +117463,International Trade,International Trade +117462,International Trade,International Trade +117461,International Trade,International Trade +114125,International Trade,International Trade +114112,International Trade,International Trade +113735,International Trade,International Trade +109305,International Trade,International Trade +109302,International Trade,International Trade +109301,International Trade,International Trade +109300,International Trade,International Trade +108547,International Trade,International Trade +108546,International Trade,International Trade +108544,International Trade,International Trade +108543,International Trade,International Trade +108541,International Trade,International Trade +105760,International Trade,International Trade +105759,International Trade,International Trade +105758,International Trade,International Trade +105757,International Trade,International Trade +105755,International Trade,International Trade +101165,International Trade,International Trade +101158,International Trade,International Trade +99541,International Trade,International Trade +99536,International Trade,International Trade +99534,International Trade,International Trade +97337,International Trade,International Trade +97335,International Trade,International Trade +97061,International Trade,International Trade +97057,International Trade,International Trade +92988,International Trade,International Trade +92985,International Trade,International Trade +92984,International Trade,International Trade +92983,International Trade,International Trade +92981,International Trade,International Trade +92978,International Trade,International Trade +92976,International Trade,International Trade +175632,International Trade,International Trade +175631,International Trade,International Trade +175629,International Trade,International Trade +175627,International Trade,International Trade +175626,International Trade,International Trade +175625,International Trade,International Trade +175624,International Trade,International Trade +173421,International Trade,International Trade +173418,International Trade,International Trade +173416,International Trade,International Trade +173415,International Trade,International Trade +171970,International Trade,International Trade +171969,International Trade,International Trade +171968,International Trade,International Trade +171967,International Trade,International Trade +171107,International Trade,International Trade +171106,International Trade,International Trade +171105,International Trade,International Trade +171104,International Trade,International Trade +168076,International Trade,International Trade +168067,International Trade,International Trade +168064,International Trade,International Trade +168060,International Trade,International Trade +168057,International Trade,International Trade +168054,International Trade,International Trade +168052,International Trade,International Trade +165856,International Trade,International Trade +165854,International Trade,International Trade +165850,International Trade,International Trade +165844,International Trade,International Trade +163983,International Trade,International Trade +161058,International Trade,International Trade +161056,International Trade,International Trade +161055,International Trade,International Trade +161054,International Trade,International Trade +160094,International Trade,International Trade +159959,International Trade,International Trade +159955,International Trade,International Trade +159848,International Trade,International Trade +159842,International Trade,International Trade +159833,International Trade,International Trade +159819,International Trade,International Trade +159815,International Trade,International Trade +157265,International Trade,International Trade +157260,International Trade,International Trade +157258,International Trade,International Trade +153279,International Trade,International Trade +152288,International Trade,International Trade +152287,International Trade,International Trade +152286,International Trade,International Trade +152283,International Trade,International Trade +152280,International Trade,International Trade +150197,International Trade,International Trade +150042,International Trade,International Trade +149943,International Trade,International Trade +149941,International Trade,International Trade +149940,International Trade,International Trade +149939,International Trade,International Trade +148262,International Trade,International Trade +148259,International Trade,International Trade +148257,International Trade,International Trade +148256,International Trade,International Trade +148255,International Trade,International Trade +148252,International Trade,International Trade +148251,International Trade,International Trade +148246,International Trade,International Trade +148245,International Trade,International Trade +148243,International Trade,International Trade +146823,International Trade,International Trade +146038,International Trade,International Trade +146036,International Trade,International Trade +146028,International Trade,International Trade +146017,International Trade,International Trade +141414,International Trade,International Trade +138587,International Trade,International Trade +138583,International Trade,International Trade +138579,International Trade,International Trade +138578,International Trade,International Trade +132226,International Trade,International Trade +132223,International Trade,International Trade +128710,International Trade,International Trade +128708,International Trade,International Trade +128707,International Trade,International Trade +128705,International Trade,International Trade +128704,International Trade,International Trade +128703,International Trade,International Trade +128702,International Trade,International Trade +124754,International Trade,International Trade +124738,International Trade,International Trade +124737,International Trade,International Trade +124736,International Trade,International Trade +124735,International Trade,International Trade +124734,International Trade,International Trade +121294,International Trade,International Trade +392185,International Trade,International Trade +383840,International Trade,International Trade +382041,International Trade,International Trade +382039,International Trade,International Trade +380427,International Trade,International Trade +379902,International Trade,International Trade +379899,International Trade,International Trade +375876,International Trade,International Trade +375875,International Trade,International Trade +374961,International Trade,International Trade +374958,International Trade,International Trade +374955,International Trade,International Trade +373134,International Trade,International Trade +372413,International Trade,International Trade +372403,International Trade,International Trade +368691,International Trade,International Trade +368688,International Trade,International Trade +366451,International Trade,International Trade +362965,International Trade,International Trade +362427,International Trade,International Trade +362426,International Trade,International Trade +362425,International Trade,International Trade +361325,International Trade,International Trade +361323,International Trade,International Trade +361322,International Trade,International Trade +359606,International Trade,International Trade +359604,International Trade,International Trade +359603,International Trade,International Trade +359602,International Trade,International Trade +357060,International Trade,International Trade +357059,International Trade,International Trade +355808,International Trade,International Trade +355807,International Trade,International Trade +353176,International Trade,International Trade +353175,International Trade,International Trade +351423,International Trade,International Trade +351422,International Trade,International Trade +351421,International Trade,International Trade +348613,International Trade,International Trade +348611,International Trade,International Trade +348610,International Trade,International Trade +348609,International Trade,International Trade +348608,International Trade,International Trade +347179,International Trade,International Trade +347178,International Trade,International Trade +343854,International Trade,International Trade +341263,International Trade,International Trade +341257,International Trade,International Trade +341252,International Trade,International Trade +341249,International Trade,International Trade +341234,International Trade,International Trade +341215,International Trade,International Trade +341212,International Trade,International Trade +338360,International Trade,International Trade +338359,International Trade,International Trade +338358,International Trade,International Trade +338357,International Trade,International Trade +335715,International Trade,International Trade +335713,International Trade,International Trade +331372,International Trade,International Trade +331369,International Trade,International Trade +331367,International Trade,International Trade +331365,International Trade,International Trade +329831,International Trade,International Trade +329830,International Trade,International Trade +327751,International Trade,International Trade +327748,International Trade,International Trade +327745,International Trade,International Trade +327744,International Trade,International Trade +327742,International Trade,International Trade +325081,International Trade,International Trade +322307,International Trade,International Trade +322303,International Trade,International Trade +322302,International Trade,International Trade +322301,International Trade,International Trade +322300,International Trade,International Trade +322298,International Trade,International Trade +322294,International Trade,International Trade +322292,International Trade,International Trade +318287,International Trade,International Trade +318286,International Trade,International Trade +318284,International Trade,International Trade +318280,International Trade,International Trade +314689,International Trade,International Trade +314455,International Trade,International Trade +314453,International Trade,International Trade +314451,International Trade,International Trade +314450,International Trade,International Trade +314449,International Trade,International Trade +313410,International Trade,International Trade +310739,International Trade,International Trade +310738,International Trade,International Trade +310737,International Trade,International Trade +310736,International Trade,International Trade +310735,International Trade,International Trade +310734,International Trade,International Trade +310733,International Trade,International Trade +305112,International Trade,International Trade +305111,International Trade,International Trade +296877,International Trade,International Trade +290689,International Trade,International Trade +287064,International Trade,International Trade +287063,International Trade,International Trade +287061,International Trade,International Trade +287058,International Trade,International Trade +277541,International Trade,International Trade +277536,International Trade,International Trade +277532,International Trade,International Trade +273692,International Trade,International Trade +273691,International Trade,International Trade +273689,International Trade,International Trade +273684,International Trade,International Trade +273679,International Trade,International Trade +273677,International Trade,International Trade +269621,International Trade,International Trade +264503,International Trade,International Trade +264501,International Trade,International Trade +264499,International Trade,International Trade +264498,International Trade,International Trade +259598,International Trade,International Trade +247661,International Trade,International Trade +247660,International Trade,International Trade +247656,International Trade,International Trade +245106,International Trade,International Trade +245105,International Trade,International Trade +245100,International Trade,International Trade +245098,International Trade,International Trade +241077,International Trade,International Trade +241071,International Trade,International Trade +240973,International Trade,International Trade +240972,International Trade,International Trade +240846,International Trade,International Trade +240841,International Trade,International Trade +240835,International Trade,International Trade +240833,International Trade,International Trade +237078,International Trade,International Trade +237077,International Trade,International Trade +237076,International Trade,International Trade +237074,International Trade,International Trade +233697,International Trade,International Trade +233695,International Trade,International Trade +233693,International Trade,International Trade +233691,International Trade,International Trade +230076,International Trade,International Trade +230074,International Trade,International Trade +230073,International Trade,International Trade +230072,International Trade,International Trade +226970,International Trade,International Trade +226967,International Trade,International Trade +223598,International Trade,International Trade +223595,International Trade,International Trade +217827,International Trade,International Trade +217809,International Trade,International Trade +217807,International Trade,International Trade +217784,International Trade,International Trade +211292,International Trade,International Trade +211291,International Trade,International Trade +211290,International Trade,International Trade +211289,International Trade,International Trade +207195,International Trade,International Trade +207190,International Trade,International Trade +207186,International Trade,International Trade +207181,International Trade,International Trade +202911,International Trade,International Trade +202905,International Trade,International Trade +202901,International Trade,International Trade +202898,International Trade,International Trade +200326,International Trade,International Trade +200323,International Trade,International Trade +194880,International Trade,International Trade +194872,International Trade,International Trade +194870,International Trade,International Trade +194869,International Trade,International Trade +189602,International Trade,International Trade +189600,International Trade,International Trade +189595,International Trade,International Trade +189591,International Trade,International Trade +189586,International Trade,International Trade +189579,International Trade,International Trade +189577,International Trade,International Trade +189575,International Trade,International Trade +185992,International Trade,International Trade +185991,International Trade,International Trade +185990,International Trade,International Trade +185988,International Trade,International Trade +185980,International Trade,International Trade +185979,International Trade,International Trade +178684,International Trade,International Trade +178644,International Trade,International Trade +178624,International Trade,International Trade +178604,International Trade,International Trade +178584,International Trade,International Trade +178564,International Trade,International Trade +178544,International Trade,International Trade +178524,International Trade,International Trade +175636,International Trade,International Trade +175635,International Trade,International Trade +175634,International Trade,International Trade +543524,International Trade,International Trade +543514,International Trade,International Trade +541322,International Trade,International Trade +541317,International Trade,International Trade +540289,International Trade,International Trade +539600,International Trade,International Trade +539599,International Trade,International Trade +536947,International Trade,International Trade +536945,International Trade,International Trade +536939,International Trade,International Trade +536920,International Trade,International Trade +536919,International Trade,International Trade +535661,International Trade,International Trade +535651,International Trade,International Trade +535644,International Trade,International Trade +531187,International Trade,International Trade +531183,International Trade,International Trade +531181,International Trade,International Trade +527979,International Trade,International Trade +527973,International Trade,International Trade +527972,International Trade,International Trade +527971,International Trade,International Trade +527969,International Trade,International Trade +524550,International Trade,International Trade +524548,International Trade,International Trade +524547,International Trade,International Trade +524545,International Trade,International Trade +524544,International Trade,International Trade +524543,International Trade,International Trade +524541,International Trade,International Trade +524540,International Trade,International Trade +524537,International Trade,International Trade +524436,International Trade,International Trade +524432,International Trade,International Trade +522583,International Trade,International Trade +522581,International Trade,International Trade +522575,International Trade,International Trade +522570,International Trade,International Trade +519564,International Trade,International Trade +519562,International Trade,International Trade +519560,International Trade,International Trade +517412,International Trade,International Trade +517390,International Trade,International Trade +517377,International Trade,International Trade +517364,International Trade,International Trade +514725,International Trade,International Trade +513244,International Trade,International Trade +510767,International Trade,International Trade +510762,International Trade,International Trade +510755,International Trade,International Trade +503818,International Trade,International Trade +503817,International Trade,International Trade +503812,International Trade,International Trade +502942,International Trade,International Trade +502940,International Trade,International Trade +502937,International Trade,International Trade +498974,International Trade,International Trade +498971,International Trade,International Trade +498966,International Trade,International Trade +496073,International Trade,International Trade +496071,International Trade,International Trade +496068,International Trade,International Trade +493644,International Trade,International Trade +493637,International Trade,International Trade +493632,International Trade,International Trade +489397,International Trade,International Trade +489395,International Trade,International Trade +489393,International Trade,International Trade +489386,International Trade,International Trade +486955,International Trade,International Trade +486936,International Trade,International Trade +483494,International Trade,International Trade +483483,International Trade,International Trade +481501,International Trade,International Trade +481497,International Trade,International Trade +481494,International Trade,International Trade +479403,International Trade,International Trade +479401,International Trade,International Trade +477852,International Trade,International Trade +477832,International Trade,International Trade +477828,International Trade,International Trade +477825,International Trade,International Trade +475151,International Trade,International Trade +475149,International Trade,International Trade +473036,International Trade,International Trade +473024,International Trade,International Trade +473009,International Trade,International Trade +472984,International Trade,International Trade +466649,International Trade,International Trade +460712,International Trade,International Trade +460710,International Trade,International Trade +459950,International Trade,International Trade +459949,International Trade,International Trade +459948,International Trade,International Trade +459587,International Trade,International Trade +459579,International Trade,International Trade +458387,International Trade,International Trade +456704,International Trade,International Trade +456703,International Trade,International Trade +456702,International Trade,International Trade +454993,International Trade,International Trade +454988,International Trade,International Trade +454987,International Trade,International Trade +451043,International Trade,International Trade +451039,International Trade,International Trade +451036,International Trade,International Trade +451034,International Trade,International Trade +451033,International Trade,International Trade +448949,International Trade,International Trade +448947,International Trade,International Trade +448945,International Trade,International Trade +447104,International Trade,International Trade +447102,International Trade,International Trade +447097,International Trade,International Trade +447096,International Trade,International Trade +444442,International Trade,International Trade +444441,International Trade,International Trade +441643,International Trade,International Trade +441630,International Trade,International Trade +441620,International Trade,International Trade +441614,International Trade,International Trade +438789,International Trade,International Trade +438786,International Trade,International Trade +438781,International Trade,International Trade +438779,International Trade,International Trade +438775,International Trade,International Trade +438771,International Trade,International Trade +438767,International Trade,International Trade +438766,International Trade,International Trade +435163,International Trade,International Trade +435147,International Trade,International Trade +435145,International Trade,International Trade +433559,International Trade,International Trade +433558,International Trade,International Trade +433557,International Trade,International Trade +432515,International Trade,International Trade +430142,International Trade,International Trade +430141,International Trade,International Trade +430140,International Trade,International Trade +423938,International Trade,International Trade +423937,International Trade,International Trade +423933,International Trade,International Trade +421360,International Trade,International Trade +421359,International Trade,International Trade +419628,International Trade,International Trade +419616,International Trade,International Trade +417783,International Trade,International Trade +414494,International Trade,International Trade +414490,International Trade,International Trade +414489,International Trade,International Trade +410357,International Trade,International Trade +410355,International Trade,International Trade +410354,International Trade,International Trade +406977,International Trade,International Trade +405333,International Trade,International Trade +402797,International Trade,International Trade +400961,International Trade,International Trade +400955,International Trade,International Trade +398873,International Trade,International Trade +396385,International Trade,International Trade +503812,Justice and Law Enforcement,Justice and Law Enforcement +475151,Justice and Law Enforcement,Justice and Law Enforcement +105756,Justice and Law Enforcement,Justice and Law Enforcement +161058,Justice and Law Enforcement,Justice and Law Enforcement +161055,Justice and Law Enforcement,Justice and Law Enforcement +157263,Justice and Law Enforcement,Justice and Law Enforcement +132227,Justice and Law Enforcement,Justice and Law Enforcement +128708,Justice and Law Enforcement,Justice and Law Enforcement +114115,Justice and Law Enforcement,Justice and Law Enforcement +108538,Justice and Law Enforcement,Justice and Law Enforcement +364814,Justice and Law Enforcement,Justice and Law Enforcement +359605,Justice and Law Enforcement,Justice and Law Enforcement +348610,Justice and Law Enforcement,Justice and Law Enforcement +341252,Justice and Law Enforcement,Justice and Law Enforcement +341249,Justice and Law Enforcement,Justice and Law Enforcement +341246,Justice and Law Enforcement,Justice and Law Enforcement +341240,Justice and Law Enforcement,Justice and Law Enforcement +341223,Justice and Law Enforcement,Justice and Law Enforcement +310736,Justice and Law Enforcement,Justice and Law Enforcement +273679,Justice and Law Enforcement,Justice and Law Enforcement +245100,Justice and Law Enforcement,Justice and Law Enforcement +245098,Justice and Law Enforcement,Justice and Law Enforcement +451033,Justice and Law Enforcement,Justice and Law Enforcement +430142,Justice and Law Enforcement,Justice and Law Enforcement +423932,Justice and Law Enforcement,Justice and Law Enforcement +414493,Justice and Law Enforcement,Justice and Law Enforcement +405331,Justice and Law Enforcement,Justice and Law Enforcement +405330,Justice and Law Enforcement,Justice and Law Enforcement +392186,Justice and Law Enforcement,Justice and Law Enforcement +386733,Justice and Law Enforcement,Justice and Law Enforcement +380432,Justice and Law Enforcement,Justice and Law Enforcement +380430,Justice and Law Enforcement,Justice and Law Enforcement +380428,Justice and Law Enforcement,Justice and Law Enforcement +374957,Justice and Law Enforcement,Justice and Law Enforcement +543520,Justice and Law Enforcement,Justice and Law Enforcement +541323,Justice and Law Enforcement,Justice and Law Enforcement +514193,Labour,Labour +513244,Labour,Labour +150041,Labour,Labour +296877,Labour,Labour +287052,Labour,Labour +282851,Labour,Labour +273693,Labour,Labour +273690,Labour,Labour +230076,Labour,Labour +226964,Labour,Labour +223598,Labour,Labour +165840,Labour,Labour +379904,Labour,Labour +359602,Labour,Labour +353683,Labour,Labour +353682,Labour,Labour +331372,Labour,Labour +331366,Labour,Labour +322307,Labour,Labour +322303,Labour,Labour +318287,Labour,Labour +314454,Labour,Labour +310738,Labour,Labour +499013,Labour,Labour +499008,Labour,Labour +498997,Labour,Labour +498984,Labour,Labour +498977,Labour,Labour +493626,Labour,Labour +481485,Labour,Labour +481484,Labour,Labour +479399,Labour,Labour +477834,Labour,Labour +475162,Labour,Labour +475160,Labour,Labour +475153,Labour,Labour +470729,Labour,Labour +470718,Labour,Labour +470709,Labour,Labour +470702,Labour,Labour +463410,Labour,Labour +462532,Labour,Labour +461170,Labour,Labour +441634,Labour,Labour +423928,Labour,Labour +536950,Labour,Labour +527980,Labour,Labour +527978,Labour,Labour +524536,Labour,Labour +522578,Labour,Labour +522572,Labour,Labour +519574,Labour,Labour +517403,Labour,Labour +531180,Mining,Mining +509447,Mining,Mining +233692,Mining,Mining +157263,Mining,Mining +455003,Mining,Mining +455001,Mining,Mining +448946,Mining,Mining +447094,Mining,Mining +435163,Mining,Mining +435154,Mining,Mining +435151,Mining,Mining +432515,Regional Development,Regional Development +406898,Regional Development,Regional Development +92988,Regional Development,Regional Development +163983,Regional Development,Regional Development +296877,Regional Development,Regional Development +259598,Regional Development,Regional Development +366452,Regional Development,Regional Development +359603,Regional Development,Regional Development +348612,Regional Development,Regional Development +347181,Regional Development,Regional Development +331373,Regional Development,Regional Development +489400,Regional Development,Regional Development +489399,Regional Development,Regional Development +483494,Regional Development,Regional Development +483488,Regional Development,Regional Development +455003,Regional Development,Regional Development +454999,Regional Development,Regional Development +454997,Regional Development,Regional Development +451033,Regional Development,Regional Development +438786,Regional Development,Regional Development +438775,Regional Development,Regional Development +435151,Regional Development,Regional Development +441638,Small Business,Small Business +441634,Small Business,Small Business +132222,Small Business,Small Business +113736,Small Business,Small Business +99538,Small Business,Small Business +97059,Small Business,Small Business +90133,Small Business,Small Business +217853,Small Business,Small Business +165852,Small Business,Small Business +152291,Small Business,Small Business +152290,Small Business,Small Business +152283,Small Business,Small Business +148249,Small Business,Small Business +146021,Small Business,Small Business +138585,Small Business,Small Business +132228,Small Business,Small Business +375877,Small Business,Small Business +374961,Small Business,Small Business +373134,Small Business,Small Business +368694,Small Business,Small Business +366452,Small Business,Small Business +362965,Small Business,Small Business +362427,Small Business,Small Business +359606,Small Business,Small Business +359604,Small Business,Small Business +359603,Small Business,Small Business +359602,Small Business,Small Business +355805,Small Business,Small Business +351420,Small Business,Small Business +348612,Small Business,Small Business +347181,Small Business,Small Business +338360,Small Business,Small Business +338359,Small Business,Small Business +338358,Small Business,Small Business +338357,Small Business,Small Business +335715,Small Business,Small Business +331366,Small Business,Small Business +318280,Small Business,Small Business +310738,Small Business,Small Business +310737,Small Business,Small Business +310735,Small Business,Small Business +282851,Small Business,Small Business +273693,Small Business,Small Business +273687,Small Business,Small Business +241077,Small Business,Small Business +241071,Small Business,Small Business +438789,Small Business,Small Business +438786,Small Business,Small Business +438781,Small Business,Small Business +438779,Small Business,Small Business +438772,Small Business,Small Business +438764,Small Business,Small Business +438763,Small Business,Small Business +435145,Small Business,Small Business +433558,Small Business,Small Business +432515,Small Business,Small Business +430142,Small Business,Small Business +430141,Small Business,Small Business +430140,Small Business,Small Business +428304,Small Business,Small Business +424912,Small Business,Small Business +423934,Small Business,Small Business +421360,Small Business,Small Business +414489,Small Business,Small Business +410356,Small Business,Small Business +410350,Small Business,Small Business +405337,Small Business,Small Business +405333,Small Business,Small Business +400955,Small Business,Small Business +394105,Small Business,Small Business +380429,Small Business,Small Business +524551,Small Business,Small Business +524550,Small Business,Small Business +524536,Small Business,Small Business +522578,Small Business,Small Business +522572,Small Business,Small Business +519574,Small Business,Small Business +517403,Small Business,Small Business +517384,Small Business,Small Business +514193,Small Business,Small Business +513242,Small Business,Small Business +510767,Small Business,Small Business +507529,Small Business,Small Business +503813,Small Business,Small Business +499000,Small Business,Small Business +498989,Small Business,Small Business +498958,Small Business,Small Business +498956,Small Business,Small Business +496068,Small Business,Small Business +493646,Small Business,Small Business +493627,Small Business,Small Business +493626,Small Business,Small Business +489400,Small Business,Small Business +489398,Small Business,Small Business +489396,Small Business,Small Business +489394,Small Business,Small Business +489391,Small Business,Small Business +489388,Small Business,Small Business +489387,Small Business,Small Business +486960,Small Business,Small Business +486951,Small Business,Small Business +486942,Small Business,Small Business +486939,Small Business,Small Business +486936,Small Business,Small Business +483486,Small Business,Small Business +483484,Small Business,Small Business +481500,Small Business,Small Business +481492,Small Business,Small Business +481487,Small Business,Small Business +481485,Small Business,Small Business +481484,Small Business,Small Business +479729,Small Business,Small Business +479399,Small Business,Small Business +477858,Small Business,Small Business +477848,Small Business,Small Business +477844,Small Business,Small Business +477834,Small Business,Small Business +477828,Small Business,Small Business +477825,Small Business,Small Business +477822,Small Business,Small Business +477818,Small Business,Small Business +475160,Small Business,Small Business +475158,Small Business,Small Business +475153,Small Business,Small Business +473042,Small Business,Small Business +473039,Small Business,Small Business +473037,Small Business,Small Business +473034,Small Business,Small Business +472989,Small Business,Small Business +472984,Small Business,Small Business +470729,Small Business,Small Business +470709,Small Business,Small Business +470702,Small Business,Small Business +466648,Small Business,Small Business +466647,Small Business,Small Business +466646,Small Business,Small Business +463408,Small Business,Small Business +454990,Small Business,Small Business +448948,Small Business,Small Business +444445,Small Business,Small Business +443445,Small Business,Small Business +531180,Taxation and Finance,Taxation and Finance +527978,Taxation and Finance,Taxation and Finance +90126,Taxation and Finance,Taxation and Finance +88156,Taxation and Finance,Taxation and Finance +86996,Taxation and Finance,Taxation and Finance +86995,Taxation and Finance,Taxation and Finance +85417,Taxation and Finance,Taxation and Finance +85416,Taxation and Finance,Taxation and Finance +82675,Taxation and Finance,Taxation and Finance +141416,Taxation and Finance,Taxation and Finance +141395,Taxation and Finance,Taxation and Finance +138588,Taxation and Finance,Taxation and Finance +138585,Taxation and Finance,Taxation and Finance +138584,Taxation and Finance,Taxation and Finance +132223,Taxation and Finance,Taxation and Finance +128710,Taxation and Finance,Taxation and Finance +128708,Taxation and Finance,Taxation and Finance +121294,Taxation and Finance,Taxation and Finance +114120,Taxation and Finance,Taxation and Finance +108545,Taxation and Finance,Taxation and Finance +101166,Taxation and Finance,Taxation and Finance +101163,Taxation and Finance,Taxation and Finance +101158,Taxation and Finance,Taxation and Finance +97062,Taxation and Finance,Taxation and Finance +92988,Taxation and Finance,Taxation and Finance +92986,Taxation and Finance,Taxation and Finance +92983,Taxation and Finance,Taxation and Finance +90129,Taxation and Finance,Taxation and Finance +217853,Taxation and Finance,Taxation and Finance +207196,Taxation and Finance,Taxation and Finance +194872,Taxation and Finance,Taxation and Finance +194870,Taxation and Finance,Taxation and Finance +185980,Taxation and Finance,Taxation and Finance +171967,Taxation and Finance,Taxation and Finance +168060,Taxation and Finance,Taxation and Finance +165856,Taxation and Finance,Taxation and Finance +165854,Taxation and Finance,Taxation and Finance +165852,Taxation and Finance,Taxation and Finance +165846,Taxation and Finance,Taxation and Finance +165840,Taxation and Finance,Taxation and Finance +163983,Taxation and Finance,Taxation and Finance +161057,Taxation and Finance,Taxation and Finance +159959,Taxation and Finance,Taxation and Finance +159848,Taxation and Finance,Taxation and Finance +159842,Taxation and Finance,Taxation and Finance +159833,Taxation and Finance,Taxation and Finance +159815,Taxation and Finance,Taxation and Finance +157255,Taxation and Finance,Taxation and Finance +157253,Taxation and Finance,Taxation and Finance +157251,Taxation and Finance,Taxation and Finance +157250,Taxation and Finance,Taxation and Finance +152288,Taxation and Finance,Taxation and Finance +152287,Taxation and Finance,Taxation and Finance +152286,Taxation and Finance,Taxation and Finance +152283,Taxation and Finance,Taxation and Finance +152280,Taxation and Finance,Taxation and Finance +150041,Taxation and Finance,Taxation and Finance +149943,Taxation and Finance,Taxation and Finance +149941,Taxation and Finance,Taxation and Finance +149940,Taxation and Finance,Taxation and Finance +148248,Taxation and Finance,Taxation and Finance +148246,Taxation and Finance,Taxation and Finance +148245,Taxation and Finance,Taxation and Finance +148243,Taxation and Finance,Taxation and Finance +146032,Taxation and Finance,Taxation and Finance +146028,Taxation and Finance,Taxation and Finance +146020,Taxation and Finance,Taxation and Finance +400961,Taxation and Finance,Taxation and Finance +400955,Taxation and Finance,Taxation and Finance +392186,Taxation and Finance,Taxation and Finance +386733,Taxation and Finance,Taxation and Finance +386665,Taxation and Finance,Taxation and Finance +383842,Taxation and Finance,Taxation and Finance +382041,Taxation and Finance,Taxation and Finance +382039,Taxation and Finance,Taxation and Finance +380429,Taxation and Finance,Taxation and Finance +379904,Taxation and Finance,Taxation and Finance +375877,Taxation and Finance,Taxation and Finance +375875,Taxation and Finance,Taxation and Finance +373134,Taxation and Finance,Taxation and Finance +368694,Taxation and Finance,Taxation and Finance +366452,Taxation and Finance,Taxation and Finance +366451,Taxation and Finance,Taxation and Finance +364813,Taxation and Finance,Taxation and Finance +362427,Taxation and Finance,Taxation and Finance +361325,Taxation and Finance,Taxation and Finance +359603,Taxation and Finance,Taxation and Finance +359602,Taxation and Finance,Taxation and Finance +355807,Taxation and Finance,Taxation and Finance +355805,Taxation and Finance,Taxation and Finance +351420,Taxation and Finance,Taxation and Finance +348612,Taxation and Finance,Taxation and Finance +343854,Taxation and Finance,Taxation and Finance +341257,Taxation and Finance,Taxation and Finance +338360,Taxation and Finance,Taxation and Finance +338359,Taxation and Finance,Taxation and Finance +338358,Taxation and Finance,Taxation and Finance +338357,Taxation and Finance,Taxation and Finance +335715,Taxation and Finance,Taxation and Finance +331374,Taxation and Finance,Taxation and Finance +331373,Taxation and Finance,Taxation and Finance +331372,Taxation and Finance,Taxation and Finance +331365,Taxation and Finance,Taxation and Finance +329831,Taxation and Finance,Taxation and Finance +327748,Taxation and Finance,Taxation and Finance +327745,Taxation and Finance,Taxation and Finance +325082,Taxation and Finance,Taxation and Finance +322294,Taxation and Finance,Taxation and Finance +318287,Taxation and Finance,Taxation and Finance +318286,Taxation and Finance,Taxation and Finance +318280,Taxation and Finance,Taxation and Finance +314455,Taxation and Finance,Taxation and Finance +314454,Taxation and Finance,Taxation and Finance +314453,Taxation and Finance,Taxation and Finance +314452,Taxation and Finance,Taxation and Finance +310738,Taxation and Finance,Taxation and Finance +310737,Taxation and Finance,Taxation and Finance +310735,Taxation and Finance,Taxation and Finance +310734,Taxation and Finance,Taxation and Finance +305112,Taxation and Finance,Taxation and Finance +305111,Taxation and Finance,Taxation and Finance +296877,Taxation and Finance,Taxation and Finance +287063,Taxation and Finance,Taxation and Finance +287061,Taxation and Finance,Taxation and Finance +282851,Taxation and Finance,Taxation and Finance +277532,Taxation and Finance,Taxation and Finance +273690,Taxation and Finance,Taxation and Finance +273684,Taxation and Finance,Taxation and Finance +264499,Taxation and Finance,Taxation and Finance +259598,Taxation and Finance,Taxation and Finance +247656,Taxation and Finance,Taxation and Finance +245097,Taxation and Finance,Taxation and Finance +245095,Taxation and Finance,Taxation and Finance +241071,Taxation and Finance,Taxation and Finance +240844,Taxation and Finance,Taxation and Finance +240838,Taxation and Finance,Taxation and Finance +240833,Taxation and Finance,Taxation and Finance +237074,Taxation and Finance,Taxation and Finance +233696,Taxation and Finance,Taxation and Finance +233695,Taxation and Finance,Taxation and Finance +233691,Taxation and Finance,Taxation and Finance +233690,Taxation and Finance,Taxation and Finance +230078,Taxation and Finance,Taxation and Finance +230077,Taxation and Finance,Taxation and Finance +527977,Taxation and Finance,Taxation and Finance +527976,Taxation and Finance,Taxation and Finance +527975,Taxation and Finance,Taxation and Finance +527974,Taxation and Finance,Taxation and Finance +527972,Taxation and Finance,Taxation and Finance +527970,Taxation and Finance,Taxation and Finance +524551,Taxation and Finance,Taxation and Finance +524550,Taxation and Finance,Taxation and Finance +524546,Taxation and Finance,Taxation and Finance +524542,Taxation and Finance,Taxation and Finance +524437,Taxation and Finance,Taxation and Finance +522584,Taxation and Finance,Taxation and Finance +519572,Taxation and Finance,Taxation and Finance +519568,Taxation and Finance,Taxation and Finance +519565,Taxation and Finance,Taxation and Finance +519563,Taxation and Finance,Taxation and Finance +517412,Taxation and Finance,Taxation and Finance +517403,Taxation and Finance,Taxation and Finance +517395,Taxation and Finance,Taxation and Finance +517384,Taxation and Finance,Taxation and Finance +517364,Taxation and Finance,Taxation and Finance +514727,Taxation and Finance,Taxation and Finance +514725,Taxation and Finance,Taxation and Finance +514724,Taxation and Finance,Taxation and Finance +514193,Taxation and Finance,Taxation and Finance +513242,Taxation and Finance,Taxation and Finance +513241,Taxation and Finance,Taxation and Finance +510775,Taxation and Finance,Taxation and Finance +510762,Taxation and Finance,Taxation and Finance +510751,Taxation and Finance,Taxation and Finance +507534,Taxation and Finance,Taxation and Finance +507531,Taxation and Finance,Taxation and Finance +507530,Taxation and Finance,Taxation and Finance +507526,Taxation and Finance,Taxation and Finance +503816,Taxation and Finance,Taxation and Finance +503813,Taxation and Finance,Taxation and Finance +502942,Taxation and Finance,Taxation and Finance +502941,Taxation and Finance,Taxation and Finance +499000,Taxation and Finance,Taxation and Finance +498968,Taxation and Finance,Taxation and Finance +498958,Taxation and Finance,Taxation and Finance +493631,Taxation and Finance,Taxation and Finance +493627,Taxation and Finance,Taxation and Finance +493626,Taxation and Finance,Taxation and Finance +489400,Taxation and Finance,Taxation and Finance +489399,Taxation and Finance,Taxation and Finance +489398,Taxation and Finance,Taxation and Finance +489396,Taxation and Finance,Taxation and Finance +489391,Taxation and Finance,Taxation and Finance +489390,Taxation and Finance,Taxation and Finance +489388,Taxation and Finance,Taxation and Finance +489387,Taxation and Finance,Taxation and Finance +486960,Taxation and Finance,Taxation and Finance +486952,Taxation and Finance,Taxation and Finance +486951,Taxation and Finance,Taxation and Finance +486942,Taxation and Finance,Taxation and Finance +486939,Taxation and Finance,Taxation and Finance +486936,Taxation and Finance,Taxation and Finance +483486,Taxation and Finance,Taxation and Finance +483484,Taxation and Finance,Taxation and Finance +481501,Taxation and Finance,Taxation and Finance +481500,Taxation and Finance,Taxation and Finance +481492,Taxation and Finance,Taxation and Finance +481487,Taxation and Finance,Taxation and Finance +481485,Taxation and Finance,Taxation and Finance +481484,Taxation and Finance,Taxation and Finance +479729,Taxation and Finance,Taxation and Finance +479399,Taxation and Finance,Taxation and Finance +477848,Taxation and Finance,Taxation and Finance +477844,Taxation and Finance,Taxation and Finance +477836,Taxation and Finance,Taxation and Finance +477834,Taxation and Finance,Taxation and Finance +477818,Taxation and Finance,Taxation and Finance +475162,Taxation and Finance,Taxation and Finance +475158,Taxation and Finance,Taxation and Finance +473043,Taxation and Finance,Taxation and Finance +473042,Taxation and Finance,Taxation and Finance +473039,Taxation and Finance,Taxation and Finance +473037,Taxation and Finance,Taxation and Finance +473034,Taxation and Finance,Taxation and Finance +473032,Taxation and Finance,Taxation and Finance +472989,Taxation and Finance,Taxation and Finance +470729,Taxation and Finance,Taxation and Finance +470709,Taxation and Finance,Taxation and Finance +466648,Taxation and Finance,Taxation and Finance +466646,Taxation and Finance,Taxation and Finance +463416,Taxation and Finance,Taxation and Finance +463415,Taxation and Finance,Taxation and Finance +463411,Taxation and Finance,Taxation and Finance +463410,Taxation and Finance,Taxation and Finance +463408,Taxation and Finance,Taxation and Finance +462540,Taxation and Finance,Taxation and Finance +462536,Taxation and Finance,Taxation and Finance +462535,Taxation and Finance,Taxation and Finance +462533,Taxation and Finance,Taxation and Finance +462532,Taxation and Finance,Taxation and Finance +461169,Taxation and Finance,Taxation and Finance +459950,Taxation and Finance,Taxation and Finance +459579,Taxation and Finance,Taxation and Finance +456706,Taxation and Finance,Taxation and Finance +456705,Taxation and Finance,Taxation and Finance +456702,Taxation and Finance,Taxation and Finance +454990,Taxation and Finance,Taxation and Finance +454976,Taxation and Finance,Taxation and Finance +451043,Taxation and Finance,Taxation and Finance +451042,Taxation and Finance,Taxation and Finance +451039,Taxation and Finance,Taxation and Finance +451036,Taxation and Finance,Taxation and Finance +451034,Taxation and Finance,Taxation and Finance +451033,Taxation and Finance,Taxation and Finance +448949,Taxation and Finance,Taxation and Finance +448948,Taxation and Finance,Taxation and Finance +448947,Taxation and Finance,Taxation and Finance +448945,Taxation and Finance,Taxation and Finance +448944,Taxation and Finance,Taxation and Finance +447104,Taxation and Finance,Taxation and Finance +447102,Taxation and Finance,Taxation and Finance +447100,Taxation and Finance,Taxation and Finance +447097,Taxation and Finance,Taxation and Finance +444445,Taxation and Finance,Taxation and Finance +444442,Taxation and Finance,Taxation and Finance +443445,Taxation and Finance,Taxation and Finance +443444,Taxation and Finance,Taxation and Finance +441643,Taxation and Finance,Taxation and Finance +441638,Taxation and Finance,Taxation and Finance +441630,Taxation and Finance,Taxation and Finance +441628,Taxation and Finance,Taxation and Finance +441621,Taxation and Finance,Taxation and Finance +438789,Taxation and Finance,Taxation and Finance +438787,Taxation and Finance,Taxation and Finance +438786,Taxation and Finance,Taxation and Finance +438784,Taxation and Finance,Taxation and Finance +438781,Taxation and Finance,Taxation and Finance +438779,Taxation and Finance,Taxation and Finance +438777,Taxation and Finance,Taxation and Finance +438775,Taxation and Finance,Taxation and Finance +438772,Taxation and Finance,Taxation and Finance +438767,Taxation and Finance,Taxation and Finance +438766,Taxation and Finance,Taxation and Finance +438764,Taxation and Finance,Taxation and Finance +438763,Taxation and Finance,Taxation and Finance +435163,Taxation and Finance,Taxation and Finance +435159,Taxation and Finance,Taxation and Finance +435154,Taxation and Finance,Taxation and Finance +435151,Taxation and Finance,Taxation and Finance +433558,Taxation and Finance,Taxation and Finance +432515,Taxation and Finance,Taxation and Finance +432509,Taxation and Finance,Taxation and Finance +432506,Taxation and Finance,Taxation and Finance +432504,Taxation and Finance,Taxation and Finance +432502,Taxation and Finance,Taxation and Finance +432500,Taxation and Finance,Taxation and Finance +428308,Taxation and Finance,Taxation and Finance +428304,Taxation and Finance,Taxation and Finance +424912,Taxation and Finance,Taxation and Finance +423935,Taxation and Finance,Taxation and Finance +423934,Taxation and Finance,Taxation and Finance +423930,Taxation and Finance,Taxation and Finance +423928,Taxation and Finance,Taxation and Finance +421362,Taxation and Finance,Taxation and Finance +421360,Taxation and Finance,Taxation and Finance +421359,Taxation and Finance,Taxation and Finance +421358,Taxation and Finance,Taxation and Finance +419628,Taxation and Finance,Taxation and Finance +419625,Taxation and Finance,Taxation and Finance +419622,Taxation and Finance,Taxation and Finance +419621,Taxation and Finance,Taxation and Finance +419620,Taxation and Finance,Taxation and Finance +414491,Taxation and Finance,Taxation and Finance +414488,Taxation and Finance,Taxation and Finance +410356,Taxation and Finance,Taxation and Finance +410350,Taxation and Finance,Taxation and Finance +407223,Taxation and Finance,Taxation and Finance +407222,Taxation and Finance,Taxation and Finance +407221,Taxation and Finance,Taxation and Finance +405337,Taxation and Finance,Taxation and Finance +402799,Taxation and Finance,Taxation and Finance +402797,Taxation and Finance,Taxation and Finance +541322,Taxation and Finance,Taxation and Finance +541320,Taxation and Finance,Taxation and Finance +540107,Taxation and Finance,Taxation and Finance +536943,Taxation and Finance,Taxation and Finance +447097,Transportation,Transportation +443445,Transportation,Transportation +310738,Transportation,Transportation +310733,Transportation,Transportation +290689,Transportation,Transportation +277530,Transportation,Transportation +273691,Transportation,Transportation +259598,Transportation,Transportation +245105,Transportation,Transportation +245100,Transportation,Transportation +245098,Transportation,Transportation +241077,Transportation,Transportation +241071,Transportation,Transportation +202911,Transportation,Transportation +194869,Transportation,Transportation +432506,Transportation,Transportation +414489,Transportation,Transportation +414487,Transportation,Transportation +410357,Transportation,Transportation +410355,Transportation,Transportation +410354,Transportation,Transportation +410351,Transportation,Transportation +402802,Transportation,Transportation +402799,Transportation,Transportation +379902,Transportation,Transportation +374958,Transportation,Transportation +366453,Transportation,Transportation +361322,Transportation,Transportation +351423,Transportation,Transportation +351422,Transportation,Transportation +351421,Transportation,Transportation +348613,Transportation,Transportation +348610,Transportation,Transportation +348609,Transportation,Transportation +348608,Transportation,Transportation +341263,Transportation,Transportation +338360,Transportation,Transportation +338359,Transportation,Transportation +329830,Transportation,Transportation +327744,Transportation,Transportation +322307,Transportation,Transportation +322303,Transportation,Transportation +322302,Transportation,Transportation +322301,Transportation,Transportation +322300,Transportation,Transportation +322298,Transportation,Transportation +522584,Transportation,Transportation +510767,Transportation,Transportation +510755,Transportation,Transportation +509447,Transportation,Transportation +507534,Transportation,Transportation +507529,Transportation,Transportation +507527,Transportation,Transportation +507526,Transportation,Transportation +503816,Transportation,Transportation +498974,Transportation,Transportation +489396,Transportation,Transportation +466649,Transportation,Transportation +462539,Transportation,Transportation +458387,Transportation,Transportation +455001,Transportation,Transportation +454999,Transportation,Transportation +454997,Transportation,Transportation +454986,Transportation,Transportation +454984,Transportation,Transportation +448949,Transportation,Transportation +448946,Transportation,Transportation +99363,Education,Education +99361,Education,Education +99361,Intellectual Property,Intellectual Property +99317,Intellectual Property,Intellectual Property +398523,Agriculture,Agriculture +400077,Employment and Training,Employment and Training +398523,Employment and Training,Employment and Training +400077,Environment,Environment +398523,Environment,Environment +431582,Environment,Environment +400077,Industry,Industry +398523,Industry,Industry +431581,Mining,Mining +278689,Tourism,Tourism +278669,Tourism,Tourism +145200,Tourism,Tourism +247597,Tourism,Tourism +247596,Tourism,Tourism +247595,Tourism,Tourism +247594,Tourism,Tourism +247593,Tourism,Tourism +247592,Tourism,Tourism +247590,Tourism,Tourism +203871,Tourism,Tourism +197527,Tourism,Tourism +203871,Transportation,Transportation +197527,Transportation,Transportation +145200,Transportation,Transportation +196971,Transportation,Transportation +278689,Transportation,Transportation +278669,Transportation,Transportation +247597,Transportation,Transportation +247596,Transportation,Transportation +247595,Transportation,Transportation +247594,Transportation,Transportation +247593,Transportation,Transportation +247592,Transportation,Transportation +511751,Education,Education +511750,Education,Education +109650,Education,Education +109066,Education,Education +120996,Education,Education +258051,Education,Education +250631,Education,Education +250586,Education,Education +244492,Education,Education +240981,Education,Education +240980,Education,Education +230869,Education,Education +225987,Education,Education +223472,Education,Education +223466,Education,Education +378389,Education,Education +373746,Education,Education +367988,Education,Education +367983,Education,Education +367846,Education,Education +367564,Education,Education +367103,Education,Education +365949,Education,Education +356681,Education,Education +356680,Education,Education +355128,Education,Education +350802,Education,Education +350798,Education,Education +348219,Education,Education +347588,Education,Education +343277,Education,Education +340879,Education,Education +340219,Education,Education +340218,Education,Education +340217,Education,Education +338627,Education,Education +326917,Education,Education +326916,Education,Education +326691,Education,Education +326689,Education,Education +325951,Education,Education +320369,Education,Education +315735,Education,Education +315734,Education,Education +315733,Education,Education +315732,Education,Education +310371,Education,Education +310367,Education,Education +310364,Education,Education +310360,Education,Education +310350,Education,Education +283271,Education,Education +276500,Education,Education +276498,Education,Education +276497,Education,Education +276495,Education,Education +276494,Education,Education +273124,Education,Education +273117,Education,Education +273094,Education,Education +273093,Education,Education +273092,Education,Education +492308,Education,Education +488952,Education,Education +488951,Education,Education +454711,Education,Education +454709,Education,Education +450947,Education,Education +450945,Education,Education +449341,Education,Education +449329,Education,Education +449293,Education,Education +449292,Education,Education +449291,Education,Education +449290,Education,Education +449289,Education,Education +449288,Education,Education +449287,Education,Education +449286,Education,Education +448912,Education,Education +448911,Education,Education +448906,Education,Education +448858,Education,Education +448857,Education,Education +439737,Education,Education +439729,Education,Education +439726,Education,Education +429625,Education,Education +425205,Education,Education +419773,Education,Education +411834,Education,Education +411833,Education,Education +403605,Education,Education +403598,Education,Education +394101,Education,Education +393165,Education,Education +378735,Education,Education +378730,Education,Education +544734,Education,Education +393165,Health,Health +391927,Health,Health +244492,Health,Health +230869,Health,Health +225987,Health,Health +223472,Health,Health +223466,Health,Health +207109,Health,Health +378735,Health,Health +378730,Health,Health +378389,Health,Health +373746,Health,Health +367988,Health,Health +367983,Health,Health +367846,Health,Health +367564,Health,Health +367103,Health,Health +365949,Health,Health +356681,Health,Health +356680,Health,Health +355128,Health,Health +350802,Health,Health +348219,Health,Health +343277,Health,Health +340879,Health,Health +340219,Health,Health +340218,Health,Health +340217,Health,Health +338627,Health,Health +326917,Health,Health +326916,Health,Health +326691,Health,Health +326689,Health,Health +325951,Health,Health +320369,Health,Health +315735,Health,Health +315734,Health,Health +315733,Health,Health +315732,Health,Health +310371,Health,Health +310367,Health,Health +310364,Health,Health +310360,Health,Health +310350,Health,Health +283271,Health,Health +276500,Health,Health +276498,Health,Health +276497,Health,Health +276495,Health,Health +276494,Health,Health +273124,Health,Health +273117,Health,Health +273094,Health,Health +273093,Health,Health +273092,Health,Health +269369,Health,Health +258051,Health,Health +250631,Health,Health +250586,Health,Health +544734,Health,Health +532749,Health,Health +532427,Health,Health +532426,Health,Health +532424,Health,Health +511752,Health,Health +511751,Health,Health +511750,Health,Health +499834,Health,Health +492308,Health,Health +488952,Health,Health +488951,Health,Health +454711,Health,Health +454709,Health,Health +450947,Health,Health +450945,Health,Health +449341,Health,Health +449329,Health,Health +449293,Health,Health +449292,Health,Health +449291,Health,Health +449290,Health,Health +449289,Health,Health +449288,Health,Health +449287,Health,Health +449286,Health,Health +448912,Health,Health +448911,Health,Health +448906,Health,Health +448858,Health,Health +448857,Health,Health +439737,Health,Health +439729,Health,Health +439726,Health,Health +429625,Health,Health +425205,Health,Health +419773,Health,Health +411834,Health,Health +411833,Health,Health +404959,Health,Health +403605,Health,Health +403598,Health,Health +488952,Industry,Industry +499834,Industry,Industry +193654,Other,HEALTH RESEARCH +193651,Other,HEALTH RESEARCH +79416,Other,HEALTH RESEARCH +79415,Other,HEALTH RESEARCH +79414,Other,HEALTH RESEARCH +77402,Other,HEALTH RESEARCH +77075,Other,HEALTH RESEARCH +173561,Other,HEALTH RESEARCH +173560,Other,HEALTH RESEARCH +173559,Other,HEALTH RESEARCH +173554,Other,HEALTH RESEARCH +173548,Other,HEALTH RESEARCH +168447,Other,HEALTH RESEARCH +164568,Other,HEALTH RESEARCH +162180,Other,HEALTH RESEARCH +159209,Other,HEALTH RESEARCH +120997,Other,HEALTH RESEARCH +113517,Other,HEALTH RESEARCH +109066,Other,HEALTH RESEARCH +95394,Other,HEALTH RESEARCH +91539,Other,HEALTH RESEARCH +86555,Other,HEALTH RESEARCH +193648,Other,HEALTH RESEARCH +193646,Other,HEALTH RESEARCH +193643,Other,HEALTH RESEARCH +193642,Other,HEALTH RESEARCH +193641,Other,HEALTH RESEARCH +193636,Other,HEALTH RESEARCH +193634,Other,HEALTH RESEARCH +193629,Other,HEALTH RESEARCH +193628,Other,HEALTH RESEARCH +193624,Other,HEALTH RESEARCH +193622,Other,HEALTH RESEARCH +193620,Other,HEALTH RESEARCH +193601,Other,HEALTH RESEARCH +193597,Other,HEALTH RESEARCH +193595,Other,HEALTH RESEARCH +193591,Other,HEALTH RESEARCH +193590,Other,HEALTH RESEARCH +193589,Other,HEALTH RESEARCH +193587,Other,HEALTH RESEARCH +193586,Other,HEALTH RESEARCH +193585,Other,HEALTH RESEARCH +193584,Other,HEALTH RESEARCH +193578,Other,HEALTH RESEARCH +189086,Other,HEALTH RESEARCH +189085,Other,HEALTH RESEARCH +189084,Other,HEALTH RESEARCH +186084,Other,HEALTH RESEARCH +185548,Other,HEALTH RESEARCH +436872,Government Procurement,Government Procurement +462462,Environment,Environment +454077,Industry,Industry +458344,Energy,Energy +519947,Environment,Environment +176907,Intellectual Property,Intellectual Property +106834,Energy,Energy +90255,Defence,Defence +109762,Industry,Industry +80956,Energy,Energy +80956,Environment,Environment +169384,Agriculture,Agriculture +169386,Infrastructure,Infrastructure +207150,Regional Development,Regional Development +301349,Transportation,Transportation +155217,Transportation,Transportation +77492,Health,Health +77504,Industry,Industry +77504,Intellectual Property,Intellectual Property +309840,Environment,Environment +402295,Transportation,Transportation +100810,Other,National Security +113839,Defence,Defence +418615,Fisheries,Fisheries +113839,Government Procurement,Government Procurement +153548,Energy,Energy +153548,Environment,Environment +106376,Fisheries,Fisheries +132461,Industry,Industry +298455,Employment and Training,Employment and Training +541647,Environment,Environment +360903,Infrastructure,Infrastructure +301022,Regional Development,Regional Development +486076,Tourism,Tourism +241461,Health,Health +110155,Other,Public Health Capacity +156269,Transportation,Transportation +400109,Infrastructure,Infrastructure +400109,International Trade,International Trade +400109,Regional Development,Regional Development +400109,Transportation,Transportation +243149,Taxation and Finance,Taxation and Finance +165428,Employment and Training,Employment and Training +165428,Energy,Energy +165428,Environment,Environment +165428,Industry,Industry +146896,Employment and Training,Employment and Training +146896,Energy,Energy +157785,Environment,Environment +157786,Industry,Industry +192927,Employment and Training,Employment and Training +192927,Energy,Energy +192927,Environment,Environment +192930,Industry,Industry +171810,Employment and Training,Employment and Training +112019,Energy,Energy +112019,Environment,Environment +171810,Industry,Industry +175301,Consumer Issues,Consumer Issues +175299,Industry,Industry +89179,International Trade,International Trade +96715,Taxation and Finance,Taxation and Finance +102497,Tourism,Tourism +175299,Transportation,Transportation +118375,Consumer Issues,Consumer Issues +118375,Industry,Industry +256769,Taxation and Finance,Taxation and Finance +255309,Tourism,Tourism +238989,Transportation,Transportation +196969,Regional Development,Regional Development +196969,Small Business,Small Business +196969,Tourism,Tourism +196969,Transportation,Transportation +203871,Regional Development,Regional Development +203871,Small Business,Small Business +223594,Industry,Industry +166125,Taxation and Finance,Taxation and Finance +384789,Consumer Issues,Consumer Issues +380553,Health,Health +369667,Taxation and Finance,Taxation and Finance +407912,Consumer Issues,Consumer Issues +461023,Environment,Environment +454387,Infrastructure,Infrastructure +106358,Tourism,Tourism +462210,Transportation,Transportation +536329,Consumer Issues,Consumer Issues +516700,Financial Institutions,Financial Institutions +404211,Industry,Industry +195564,Consumer Issues,Consumer Issues +162667,Employment and Training,Employment and Training +461977,Environment,Environment +365172,Government Procurement,Government Procurement +540603,Industry,Industry +442996,International Trade,International Trade +448856,Taxation and Finance,Taxation and Finance +489187,Transportation,Transportation +147897,Transportation,Transportation +77486,Health,Health +77502,Industry,Industry +97434,Government Procurement,Government Procurement +239809,Government Procurement,Government Procurement +74334,Other,Internet Security +176946,Agriculture,Agriculture +171894,Environment,Environment +159796,Financial Institutions,Financial Institutions +522245,Health,Health +504928,International Relations,International Relations +535970,International Trade,International Trade +95781,Other,International Development Assistance +124194,Other,Women's Rights and Gender Equality +124195,Other,Human Rights +109787,Other,"Peacebuilding, Capacity Building, Civil Society Development" +88056,Defence,Defence +438510,Energy,Energy +407620,Environment,Environment +223657,Industry,Industry +176685,Infrastructure,Infrastructure +395159,Internal Trade,Internal Trade +223656,International Relations,International Relations +402741,International Trade,International Trade +395158,Taxation and Finance,Taxation and Finance +180483,Transportation,Transportation +396036,Constitutional Issues,Constitutional Issues +403997,Energy,Energy +425892,Environment,Environment +531888,Fisheries,Fisheries +385857,Transportation,Transportation +522570,Agriculture,Agriculture +88156,Constitutional Issues,Constitutional Issues +514193,Consumer Issues,Consumer Issues +536946,Defence,Defence +382040,Education,Education +536945,Employment and Training,Employment and Training +435154,Energy,Energy +432506,Environment,Environment +459950,Financial Institutions,Financial Institutions +483483,Forestry,Forestry +531177,Government Procurement,Government Procurement +462532,Health,Health +473009,Immigration,Immigration +483486,Industry,Industry +477836,Infrastructure,Infrastructure +405333,Intellectual Property,Intellectual Property +443445,Internal Trade,Internal Trade +355808,International Relations,International Relations +396382,International Trade,International Trade +536923,Justice and Law Enforcement,Justice and Law Enforcement +517384,Labour,Labour +536950,Mining,Mining +435147,Regional Development,Regional Development +443444,Small Business,Small Business +531185,Taxation and Finance,Taxation and Finance +447104,Transportation,Transportation +99365,Education,Education +99317,Industry,Industry +99365,Intellectual Property,Intellectual Property +407007,Agriculture,Agriculture +407174,Employment and Training,Employment and Training +431581,Environment,Environment +398523,Financial Institutions,Financial Institutions +431581,Industry,Industry +429786,International Relations,International Relations +431582,Mining,Mining +196971,Tourism,Tourism +247590,Transportation,Transportation +511752,Education,Education +394101,Health,Health +347588,Industry,Industry +193657,Other,HEALTH RESEARCH +147395,Financial Institutions,Financial Institutions +175404,Other,HEALTH RESEARCH +175403,Other,HEALTH RESEARCH +175402,Other,HEALTH RESEARCH +175400,Other,HEALTH RESEARCH +175399,Other,HEALTH RESEARCH +175271,Other,HEALTH RESEARCH +175270,Other,HEALTH RESEARCH +175269,Other,HEALTH RESEARCH +175268,Other,HEALTH RESEARCH +175267,Other,HEALTH RESEARCH +175266,Other,HEALTH RESEARCH +175265,Other,HEALTH RESEARCH +175264,Other,HEALTH RESEARCH +175262,Other,HEALTH RESEARCH +175261,Other,HEALTH RESEARCH +175260,Other,HEALTH RESEARCH +175259,Other,HEALTH RESEARCH +175258,Other,HEALTH RESEARCH +175257,Other,HEALTH RESEARCH +175256,Other,HEALTH RESEARCH +175253,Other,HEALTH RESEARCH +175252,Other,HEALTH RESEARCH +175251,Other,HEALTH RESEARCH +175248,Other,HEALTH RESEARCH +175246,Other,HEALTH RESEARCH +175244,Other,HEALTH RESEARCH +175242,Other,HEALTH RESEARCH +175241,Other,HEALTH RESEARCH +175239,Other,HEALTH RESEARCH +173564,Other,HEALTH RESEARCH +173563,Other,HEALTH RESEARCH +173562,Other,HEALTH RESEARCH +194757,Other,HEALTH RESEARCH +194753,Other,HEALTH RESEARCH +194750,Other,HEALTH RESEARCH +194747,Other,HEALTH RESEARCH +194740,Other,HEALTH RESEARCH +194738,Other,HEALTH RESEARCH +193753,Other,HEALTH RESEARCH +193752,Other,HEALTH RESEARCH +193751,Other,HEALTH RESEARCH +193750,Other,HEALTH RESEARCH +193749,Other,HEALTH RESEARCH +193748,Other,HEALTH RESEARCH +193747,Other,HEALTH RESEARCH +193746,Other,HEALTH RESEARCH +193745,Other,HEALTH RESEARCH +193742,Other,HEALTH RESEARCH +193741,Other,HEALTH RESEARCH +193736,Other,HEALTH RESEARCH +193731,Other,HEALTH RESEARCH +193728,Other,HEALTH RESEARCH +193726,Other,HEALTH RESEARCH +193723,Other,HEALTH RESEARCH +193721,Other,HEALTH RESEARCH +193704,Other,HEALTH RESEARCH +193691,Other,HEALTH RESEARCH +193688,Other,HEALTH RESEARCH +193687,Other,HEALTH RESEARCH +193685,Other,HEALTH RESEARCH +193681,Other,HEALTH RESEARCH +193679,Other,HEALTH RESEARCH +193677,Other,HEALTH RESEARCH +193670,Other,HEALTH RESEARCH +193668,Other,HEALTH RESEARCH +193667,Other,HEALTH RESEARCH +193665,Other,HEALTH RESEARCH +193662,Other,HEALTH RESEARCH +193661,Other,HEALTH RESEARCH +193658,Other,HEALTH RESEARCH +518309,Consumer Issues,Consumer Issues +515999,Consumer Issues,Consumer Issues +168431,Consumer Issues,Consumer Issues +237195,Consumer Issues,Consumer Issues +413184,Consumer Issues,Consumer Issues +413177,Consumer Issues,Consumer Issues +396553,Consumer Issues,Consumer Issues +396548,Consumer Issues,Consumer Issues +396546,Consumer Issues,Consumer Issues +396544,Consumer Issues,Consumer Issues +506528,Consumer Issues,Consumer Issues +506527,Consumer Issues,Consumer Issues +476086,Consumer Issues,Consumer Issues +468572,Consumer Issues,Consumer Issues +468570,Consumer Issues,Consumer Issues +462025,Consumer Issues,Consumer Issues +450293,Consumer Issues,Consumer Issues +431066,Consumer Issues,Consumer Issues +431061,Consumer Issues,Consumer Issues +429332,Consumer Issues,Consumer Issues +429329,Consumer Issues,Consumer Issues +538943,Consumer Issues,Consumer Issues +523957,Consumer Issues,Consumer Issues +520344,Consumer Issues,Consumer Issues +413177,Employment and Training,Employment and Training +168431,Employment and Training,Employment and Training +523957,Employment and Training,Employment and Training +506527,Employment and Training,Employment and Training +462025,Employment and Training,Employment and Training +450293,Employment and Training,Employment and Training +429332,Employment and Training,Employment and Training +429329,Employment and Training,Employment and Training +506528,Energy,Energy +468572,Energy,Energy +450293,Environment,Environment +450288,Environment,Environment +168431,Environment,Environment +168428,Environment,Environment +429332,Environment,Environment +429329,Environment,Environment +538943,Environment,Environment +506528,Environment,Environment +506527,Environment,Environment +468572,Environment,Environment +468571,Environment,Environment +413184,Financial Institutions,Financial Institutions +413177,Financial Institutions,Financial Institutions +396553,Financial Institutions,Financial Institutions +396548,Financial Institutions,Financial Institutions +396546,Financial Institutions,Financial Institutions +396544,Financial Institutions,Financial Institutions +462025,Financial Institutions,Financial Institutions +431066,Financial Institutions,Financial Institutions +506528,Industry,Industry +502932,Industry,Industry +168428,Industry,Industry +237195,Industry,Industry +468570,Industry,Industry +462025,Industry,Industry +450287,Industry,Industry +429329,Industry,Industry +413184,Industry,Industry +413177,Industry,Industry +396553,Industry,Industry +396548,Industry,Industry +538943,Industry,Industry +520345,Industry,Industry +520343,Industry,Industry +476086,Internal Trade,Internal Trade +518309,International Trade,International Trade +515999,International Trade,International Trade +168431,International Trade,International Trade +450293,International Trade,International Trade +450290,International Trade,International Trade +450287,International Trade,International Trade +431061,Small Business,Small Business +413184,Small Business,Small Business +413177,Small Business,Small Business +396553,Small Business,Small Business +396548,Small Business,Small Business +520345,Small Business,Small Business +506527,Small Business,Small Business +462025,Small Business,Small Business +396553,Taxation and Finance,Taxation and Finance +396548,Taxation and Finance,Taxation and Finance +520343,Transportation,Transportation +515999,Transportation,Transportation +168428,Transportation,Transportation +450287,Transportation,Transportation +523957,Transportation,Transportation +520345,Transportation,Transportation +392278,Education,Education +380672,Education,Education +329372,Education,Education +316381,Education,Education +263149,Education,Education +419067,Education,Education +406152,Education,Education +404895,Education,Education +404894,Education,Education +397949,Education,Education +393084,Education,Education +393083,Education,Education +393076,Education,Education +472814,Health,Health +472807,Health,Health +105720,Health,Health +100885,Health,Health +87296,Health,Health +87295,Health,Health +132628,Health,Health +132625,Health,Health +132624,Health,Health +132623,Health,Health +132621,Health,Health +132620,Health,Health +132619,Health,Health +132618,Health,Health +132617,Health,Health +132615,Health,Health +132614,Health,Health +128096,Health,Health +128095,Health,Health +128094,Health,Health +124106,Health,Health +124101,Health,Health +124096,Health,Health +120598,Health,Health +120597,Health,Health +113001,Health,Health +112999,Health,Health +112998,Health,Health +112997,Health,Health +112996,Health,Health +112995,Health,Health +112994,Health,Health +108696,Health,Health +108694,Health,Health +165686,Health,Health +165685,Health,Health +165684,Health,Health +164022,Health,Health +162372,Health,Health +162317,Health,Health +162286,Health,Health +162281,Health,Health +159522,Health,Health +159521,Health,Health +159520,Health,Health +159519,Health,Health +159518,Health,Health +159517,Health,Health +159516,Health,Health +159515,Health,Health +159514,Health,Health +159513,Health,Health +159511,Health,Health +159508,Health,Health +159505,Health,Health +157084,Health,Health +157082,Health,Health +157081,Health,Health +157079,Health,Health +157075,Health,Health +157066,Health,Health +157062,Health,Health +153311,Health,Health +153310,Health,Health +153309,Health,Health +153308,Health,Health +153307,Health,Health +153306,Health,Health +153305,Health,Health +153304,Health,Health +153303,Health,Health +153302,Health,Health +153301,Health,Health +153300,Health,Health +153299,Health,Health +152088,Health,Health +152086,Health,Health +150051,Health,Health +150050,Health,Health +150049,Health,Health +148263,Health,Health +148178,Health,Health +148175,Health,Health +133783,Health,Health +133782,Health,Health +133781,Health,Health +133779,Health,Health +133776,Health,Health +133775,Health,Health +239890,Health,Health +235869,Health,Health +230096,Health,Health +230095,Health,Health +230094,Health,Health +230093,Health,Health +230092,Health,Health +226569,Health,Health +226568,Health,Health +226567,Health,Health +222835,Health,Health +222833,Health,Health +222832,Health,Health +222830,Health,Health +222828,Health,Health +222827,Health,Health +217748,Health,Health +217708,Health,Health +217697,Health,Health +212116,Health,Health +212111,Health,Health +212109,Health,Health +212108,Health,Health +212107,Health,Health +212100,Health,Health +212099,Health,Health +207303,Health,Health +207301,Health,Health +207300,Health,Health +207297,Health,Health +207294,Health,Health +207286,Health,Health +207282,Health,Health +203349,Health,Health +202938,Health,Health +202937,Health,Health +200033,Health,Health +200031,Health,Health +200024,Health,Health +193995,Health,Health +193988,Health,Health +193300,Health,Health +193298,Health,Health +193296,Health,Health +193293,Health,Health +193292,Health,Health +193291,Health,Health +193290,Health,Health +193289,Health,Health +193288,Health,Health +193287,Health,Health +193286,Health,Health +193285,Health,Health +191684,Health,Health +189676,Health,Health +189675,Health,Health +189673,Health,Health +189672,Health,Health +189671,Health,Health +185949,Health,Health +185946,Health,Health +180402,Health,Health +180401,Health,Health +180395,Health,Health +180393,Health,Health +180389,Health,Health +175435,Health,Health +175434,Health,Health +175433,Health,Health +175432,Health,Health +175431,Health,Health +175430,Health,Health +175429,Health,Health +175428,Health,Health +175427,Health,Health +175426,Health,Health +175425,Health,Health +175424,Health,Health +175423,Health,Health +175422,Health,Health +175421,Health,Health +173600,Health,Health +173598,Health,Health +173596,Health,Health +173595,Health,Health +173594,Health,Health +173592,Health,Health +173591,Health,Health +173590,Health,Health +173588,Health,Health +173586,Health,Health +173572,Health,Health +173568,Health,Health +171955,Health,Health +171954,Health,Health +171953,Health,Health +171066,Health,Health +171065,Health,Health +171063,Health,Health +171062,Health,Health +171061,Health,Health +171059,Health,Health +171047,Health,Health +171043,Health,Health +171037,Health,Health +171034,Health,Health +171031,Health,Health +171025,Health,Health +171021,Health,Health +171018,Health,Health +171016,Health,Health +168831,Health,Health +168824,Health,Health +168693,Health,Health +168690,Health,Health +168687,Health,Health +168685,Health,Health +168683,Health,Health +168678,Health,Health +165699,Health,Health +165698,Health,Health +165697,Health,Health +165696,Health,Health +165695,Health,Health +165694,Health,Health +165693,Health,Health +165692,Health,Health +165690,Health,Health +165689,Health,Health +165688,Health,Health +165687,Health,Health +428362,Health,Health +423396,Health,Health +419110,Health,Health +419108,Health,Health +415195,Health,Health +380674,Health,Health +380672,Health,Health +377924,Health,Health +375844,Health,Health +368023,Health,Health +364502,Health,Health +355472,Health,Health +353080,Health,Health +352566,Health,Health +347913,Health,Health +344658,Health,Health +335396,Health,Health +335395,Health,Health +335391,Health,Health +330514,Health,Health +330512,Health,Health +330510,Health,Health +330509,Health,Health +329374,Health,Health +328111,Health,Health +328110,Health,Health +326514,Health,Health +326512,Health,Health +326511,Health,Health +326510,Health,Health +326509,Health,Health +324129,Health,Health +317929,Health,Health +316384,Health,Health +316383,Health,Health +316379,Health,Health +315494,Health,Health +315493,Health,Health +315492,Health,Health +310030,Health,Health +310029,Health,Health +310028,Health,Health +310026,Health,Health +310025,Health,Health +310023,Health,Health +304650,Health,Health +303636,Health,Health +303633,Health,Health +303631,Health,Health +303629,Health,Health +295393,Health,Health +295392,Health,Health +295391,Health,Health +295390,Health,Health +295389,Health,Health +280403,Health,Health +280401,Health,Health +280399,Health,Health +280397,Health,Health +276453,Health,Health +276452,Health,Health +276451,Health,Health +276450,Health,Health +276449,Health,Health +272778,Health,Health +272777,Health,Health +272776,Health,Health +272775,Health,Health +272774,Health,Health +263010,Health,Health +258274,Health,Health +258273,Health,Health +258272,Health,Health +258271,Health,Health +258270,Health,Health +258269,Health,Health +250111,Health,Health +250110,Health,Health +244273,Health,Health +244272,Health,Health +244271,Health,Health +244270,Health,Health +244269,Health,Health +488754,International Trade,International Trade +488746,International Trade,International Trade +485975,International Trade,International Trade +482857,International Trade,International Trade +481128,International Trade,International Trade +481126,International Trade,International Trade +478543,International Trade,International Trade +478369,International Trade,International Trade +477406,International Trade,International Trade +464016,International Trade,International Trade +464013,International Trade,International Trade +459824,International Trade,International Trade +450952,International Trade,International Trade +435580,International Trade,International Trade +432865,International Trade,International Trade +366922,International Trade,International Trade +544818,International Trade,International Trade +544817,International Trade,International Trade +544676,International Trade,International Trade +542761,International Trade,International Trade +531278,International Trade,International Trade +530636,International Trade,International Trade +513466,International Trade,International Trade +506067,International Trade,International Trade +506066,International Trade,International Trade +506065,International Trade,International Trade +441578,Agriculture,Agriculture +399840,Consumer Issues,Consumer Issues +399837,Consumer Issues,Consumer Issues +398675,Consumer Issues,Consumer Issues +398673,Consumer Issues,Consumer Issues +398651,Consumer Issues,Consumer Issues +398650,Consumer Issues,Consumer Issues +398649,Consumer Issues,Consumer Issues +396657,Consumer Issues,Consumer Issues +396651,Consumer Issues,Consumer Issues +396639,Consumer Issues,Consumer Issues +396607,Consumer Issues,Consumer Issues +396601,Consumer Issues,Consumer Issues +396598,Consumer Issues,Consumer Issues +396595,Consumer Issues,Consumer Issues +396591,Consumer Issues,Consumer Issues +396589,Consumer Issues,Consumer Issues +396586,Consumer Issues,Consumer Issues +396582,Consumer Issues,Consumer Issues +396578,Consumer Issues,Consumer Issues +396574,Consumer Issues,Consumer Issues +396531,Consumer Issues,Consumer Issues +396529,Consumer Issues,Consumer Issues +396526,Consumer Issues,Consumer Issues +396525,Consumer Issues,Consumer Issues +396522,Consumer Issues,Consumer Issues +396520,Consumer Issues,Consumer Issues +396514,Consumer Issues,Consumer Issues +396512,Consumer Issues,Consumer Issues +396510,Consumer Issues,Consumer Issues +396507,Consumer Issues,Consumer Issues +396505,Consumer Issues,Consumer Issues +396503,Consumer Issues,Consumer Issues +396500,Consumer Issues,Consumer Issues +396496,Consumer Issues,Consumer Issues +396492,Consumer Issues,Consumer Issues +396490,Consumer Issues,Consumer Issues +396485,Consumer Issues,Consumer Issues +396482,Consumer Issues,Consumer Issues +396480,Consumer Issues,Consumer Issues +396477,Consumer Issues,Consumer Issues +396476,Consumer Issues,Consumer Issues +396475,Consumer Issues,Consumer Issues +396471,Consumer Issues,Consumer Issues +396469,Consumer Issues,Consumer Issues +396466,Consumer Issues,Consumer Issues +396463,Consumer Issues,Consumer Issues +396460,Consumer Issues,Consumer Issues +396459,Consumer Issues,Consumer Issues +396458,Consumer Issues,Consumer Issues +396455,Consumer Issues,Consumer Issues +396453,Consumer Issues,Consumer Issues +396452,Consumer Issues,Consumer Issues +396449,Consumer Issues,Consumer Issues +396440,Consumer Issues,Consumer Issues +396438,Consumer Issues,Consumer Issues +396427,Consumer Issues,Consumer Issues +393657,Consumer Issues,Consumer Issues +393654,Consumer Issues,Consumer Issues +392864,Consumer Issues,Consumer Issues +392863,Consumer Issues,Consumer Issues +392862,Consumer Issues,Consumer Issues +392563,Consumer Issues,Consumer Issues +392562,Consumer Issues,Consumer Issues +392561,Consumer Issues,Consumer Issues +392560,Consumer Issues,Consumer Issues +392455,Consumer Issues,Consumer Issues +392454,Consumer Issues,Consumer Issues +392453,Consumer Issues,Consumer Issues +391815,Consumer Issues,Consumer Issues +390768,Consumer Issues,Consumer Issues +390760,Consumer Issues,Consumer Issues +390756,Consumer Issues,Consumer Issues +390751,Consumer Issues,Consumer Issues +390748,Consumer Issues,Consumer Issues +390746,Consumer Issues,Consumer Issues +390738,Consumer Issues,Consumer Issues +390732,Consumer Issues,Consumer Issues +390730,Consumer Issues,Consumer Issues +390727,Consumer Issues,Consumer Issues +390725,Consumer Issues,Consumer Issues +390061,Consumer Issues,Consumer Issues +390060,Consumer Issues,Consumer Issues +390059,Consumer Issues,Consumer Issues +435298,Consumer Issues,Consumer Issues +435294,Consumer Issues,Consumer Issues +435291,Consumer Issues,Consumer Issues +435287,Consumer Issues,Consumer Issues +433297,Consumer Issues,Consumer Issues +432281,Consumer Issues,Consumer Issues +430190,Consumer Issues,Consumer Issues +430188,Consumer Issues,Consumer Issues +427505,Consumer Issues,Consumer Issues +423307,Consumer Issues,Consumer Issues +423306,Consumer Issues,Consumer Issues +419198,Consumer Issues,Consumer Issues +419192,Consumer Issues,Consumer Issues +419191,Consumer Issues,Consumer Issues +419190,Consumer Issues,Consumer Issues +419189,Consumer Issues,Consumer Issues +419188,Consumer Issues,Consumer Issues +419187,Consumer Issues,Consumer Issues +419186,Consumer Issues,Consumer Issues +419185,Consumer Issues,Consumer Issues +419184,Consumer Issues,Consumer Issues +419183,Consumer Issues,Consumer Issues +419182,Consumer Issues,Consumer Issues +419181,Consumer Issues,Consumer Issues +419180,Consumer Issues,Consumer Issues +419179,Consumer Issues,Consumer Issues +419178,Consumer Issues,Consumer Issues +416511,Consumer Issues,Consumer Issues +416508,Consumer Issues,Consumer Issues +416506,Consumer Issues,Consumer Issues +416505,Consumer Issues,Consumer Issues +416503,Consumer Issues,Consumer Issues +412127,Consumer Issues,Consumer Issues +412119,Consumer Issues,Consumer Issues +410196,Consumer Issues,Consumer Issues +404869,Consumer Issues,Consumer Issues +404868,Consumer Issues,Consumer Issues +404867,Consumer Issues,Consumer Issues +404866,Consumer Issues,Consumer Issues +402305,Consumer Issues,Consumer Issues +402304,Consumer Issues,Consumer Issues +402303,Consumer Issues,Consumer Issues +402301,Consumer Issues,Consumer Issues +402300,Consumer Issues,Consumer Issues +401436,Consumer Issues,Consumer Issues +401435,Consumer Issues,Consumer Issues +399852,Consumer Issues,Consumer Issues +469970,Health,Health +469968,Health,Health +138859,Health,Health +135417,Health,Health +135416,Health,Health +135415,Health,Health +135414,Health,Health +111795,Health,Health +167785,Health,Health +165171,Health,Health +165170,Health,Health +165169,Health,Health +165168,Health,Health +165167,Health,Health +165166,Health,Health +165165,Health,Health +163541,Health,Health +163540,Health,Health +163538,Health,Health +163537,Health,Health +161432,Health,Health +161430,Health,Health +145683,Health,Health +145682,Health,Health +145681,Health,Health +145679,Health,Health +138861,Health,Health +138860,Health,Health +240678,Health,Health +240677,Health,Health +240675,Health,Health +240674,Health,Health +240673,Health,Health +240672,Health,Health +240671,Health,Health +240670,Health,Health +240654,Health,Health +240633,Health,Health +240624,Health,Health +240623,Health,Health +240622,Health,Health +240621,Health,Health +240618,Health,Health +240617,Health,Health +240615,Health,Health +240611,Health,Health +240513,Health,Health +236700,Health,Health +236699,Health,Health +236698,Health,Health +236697,Health,Health +236696,Health,Health +236695,Health,Health +236694,Health,Health +236693,Health,Health +236692,Health,Health +236691,Health,Health +236690,Health,Health +236689,Health,Health +236671,Health,Health +236670,Health,Health +236669,Health,Health +231369,Health,Health +223360,Health,Health +212255,Health,Health +195224,Health,Health +171098,Health,Health +171096,Health,Health +171095,Health,Health +171094,Health,Health +337963,Health,Health +337962,Health,Health +337961,Health,Health +337960,Health,Health +337959,Health,Health +337958,Health,Health +337957,Health,Health +337956,Health,Health +337955,Health,Health +337954,Health,Health +337953,Health,Health +337952,Health,Health +337951,Health,Health +337950,Health,Health +337949,Health,Health +335559,Health,Health +335558,Health,Health +335557,Health,Health +335554,Health,Health +333251,Health,Health +331426,Health,Health +329885,Health,Health +327132,Health,Health +327128,Health,Health +327126,Health,Health +324485,Health,Health +321962,Health,Health +318647,Health,Health +318645,Health,Health +318643,Health,Health +318642,Health,Health +318641,Health,Health +318640,Health,Health +318638,Health,Health +318637,Health,Health +318636,Health,Health +318633,Health,Health +318631,Health,Health +318624,Health,Health +318620,Health,Health +318619,Health,Health +318617,Health,Health +318615,Health,Health +318613,Health,Health +315553,Health,Health +315551,Health,Health +315550,Health,Health +312839,Health,Health +312834,Health,Health +312832,Health,Health +312830,Health,Health +312816,Health,Health +310328,Health,Health +310327,Health,Health +310326,Health,Health +310325,Health,Health +310324,Health,Health +310323,Health,Health +310321,Health,Health +310316,Health,Health +310310,Health,Health +302673,Health,Health +302671,Health,Health +302669,Health,Health +296652,Health,Health +290666,Health,Health +280479,Health,Health +280477,Health,Health +280475,Health,Health +277165,Health,Health +277160,Health,Health +268441,Health,Health +268440,Health,Health +268431,Health,Health +268430,Health,Health +268394,Health,Health +268393,Health,Health +268392,Health,Health +268391,Health,Health +261677,Health,Health +261676,Health,Health +261675,Health,Health +261674,Health,Health +261673,Health,Health +261672,Health,Health +261671,Health,Health +259133,Health,Health +250252,Health,Health +250248,Health,Health +250244,Health,Health +246610,Health,Health +246609,Health,Health +246409,Health,Health +244501,Health,Health +244499,Health,Health +244498,Health,Health +244497,Health,Health +244496,Health,Health +244495,Health,Health +244494,Health,Health +244493,Health,Health +240684,Health,Health +240683,Health,Health +240682,Health,Health +240681,Health,Health +373729,Health,Health +373728,Health,Health +373727,Health,Health +373726,Health,Health +373725,Health,Health +373724,Health,Health +373722,Health,Health +373721,Health,Health +373720,Health,Health +373719,Health,Health +373718,Health,Health +373717,Health,Health +373716,Health,Health +373715,Health,Health +373714,Health,Health +373713,Health,Health +373712,Health,Health +373711,Health,Health +373709,Health,Health +373708,Health,Health +373666,Health,Health +373665,Health,Health +373664,Health,Health +373663,Health,Health +373662,Health,Health +373661,Health,Health +373660,Health,Health +373633,Health,Health +373632,Health,Health +373631,Health,Health +373630,Health,Health +373629,Health,Health +373628,Health,Health +373627,Health,Health +373626,Health,Health +373625,Health,Health +373624,Health,Health +373623,Health,Health +373606,Health,Health +373605,Health,Health +373596,Health,Health +373595,Health,Health +373594,Health,Health +373593,Health,Health +373590,Health,Health +373589,Health,Health +373588,Health,Health +373587,Health,Health +373586,Health,Health +373585,Health,Health +373584,Health,Health +373583,Health,Health +373582,Health,Health +373581,Health,Health +373580,Health,Health +373579,Health,Health +373578,Health,Health +373577,Health,Health +373576,Health,Health +371857,Health,Health +371854,Health,Health +371852,Health,Health +371851,Health,Health +369131,Health,Health +369130,Health,Health +366562,Health,Health +366561,Health,Health +366560,Health,Health +366559,Health,Health +362176,Health,Health +359203,Health,Health +357772,Health,Health +357771,Health,Health +357770,Health,Health +356038,Health,Health +356037,Health,Health +356036,Health,Health +356035,Health,Health +356034,Health,Health +350714,Health,Health +350713,Health,Health +350712,Health,Health +348943,Health,Health +348942,Health,Health +348941,Health,Health +348939,Health,Health +348938,Health,Health +348937,Health,Health +348936,Health,Health +348934,Health,Health +348933,Health,Health +348932,Health,Health +348930,Health,Health +348903,Health,Health +348902,Health,Health +348901,Health,Health +348900,Health,Health +347918,Health,Health +347304,Health,Health +347284,Health,Health +347277,Health,Health +347268,Health,Health +347261,Health,Health +344357,Health,Health +343755,Health,Health +343752,Health,Health +343748,Health,Health +343747,Health,Health +343745,Health,Health +343744,Health,Health +343740,Health,Health +343739,Health,Health +343733,Health,Health +343717,Health,Health +341983,Health,Health +341974,Health,Health +341946,Health,Health +341943,Health,Health +341935,Health,Health +341882,Health,Health +341771,Health,Health +341429,Health,Health +341428,Health,Health +341427,Health,Health +341426,Health,Health +341425,Health,Health +341424,Health,Health +341423,Health,Health +341422,Health,Health +341421,Health,Health +341420,Health,Health +341419,Health,Health +341418,Health,Health +341417,Health,Health +341268,Health,Health +341267,Health,Health +341264,Health,Health +341262,Health,Health +341259,Health,Health +341258,Health,Health +341250,Health,Health +341245,Health,Health +341241,Health,Health +341235,Health,Health +341229,Health,Health +341225,Health,Health +341219,Health,Health +341214,Health,Health +341213,Health,Health +341211,Health,Health +341208,Health,Health +341205,Health,Health +341201,Health,Health +341199,Health,Health +341198,Health,Health +341186,Health,Health +340934,Health,Health +340933,Health,Health +340932,Health,Health +340930,Health,Health +340929,Health,Health +340921,Health,Health +340920,Health,Health +340918,Health,Health +340916,Health,Health +340914,Health,Health +340913,Health,Health +340912,Health,Health +340910,Health,Health +340909,Health,Health +340907,Health,Health +340906,Health,Health +340904,Health,Health +340903,Health,Health +340902,Health,Health +340901,Health,Health +340899,Health,Health +340897,Health,Health +340896,Health,Health +340894,Health,Health +340892,Health,Health +340889,Health,Health +340887,Health,Health +340886,Health,Health +340883,Health,Health +340882,Health,Health +340856,Health,Health +340854,Health,Health +340852,Health,Health +340851,Health,Health +340850,Health,Health +340849,Health,Health +340848,Health,Health +340847,Health,Health +340846,Health,Health +340845,Health,Health +340844,Health,Health +340843,Health,Health +340842,Health,Health +340841,Health,Health +340840,Health,Health +340839,Health,Health +340836,Health,Health +340359,Health,Health +340302,Health,Health +339821,Health,Health +338036,Health,Health +338034,Health,Health +338032,Health,Health +338031,Health,Health +338015,Health,Health +338014,Health,Health +338013,Health,Health +338012,Health,Health +338011,Health,Health +338010,Health,Health +338009,Health,Health +338008,Health,Health +338007,Health,Health +338005,Health,Health +338004,Health,Health +338002,Health,Health +338001,Health,Health +338000,Health,Health +337999,Health,Health +337998,Health,Health +337994,Health,Health +337993,Health,Health +337992,Health,Health +337991,Health,Health +337977,Health,Health +337976,Health,Health +337975,Health,Health +337974,Health,Health +337973,Health,Health +337972,Health,Health +337971,Health,Health +337970,Health,Health +337969,Health,Health +337968,Health,Health +337967,Health,Health +337966,Health,Health +337965,Health,Health +337964,Health,Health +469966,Health,Health +469965,Health,Health +469964,Health,Health +469963,Health,Health +469962,Health,Health +469960,Health,Health +469958,Health,Health +469957,Health,Health +469956,Health,Health +469955,Health,Health +469947,Health,Health +469945,Health,Health +469944,Health,Health +469942,Health,Health +469941,Health,Health +469940,Health,Health +469938,Health,Health +469936,Health,Health +469934,Health,Health +469932,Health,Health +469929,Health,Health +469926,Health,Health +469924,Health,Health +469923,Health,Health +469922,Health,Health +469920,Health,Health +469919,Health,Health +469917,Health,Health +469916,Health,Health +469915,Health,Health +469913,Health,Health +469909,Health,Health +469907,Health,Health +469905,Health,Health +467491,Health,Health +464290,Health,Health +464285,Health,Health +464280,Health,Health +464279,Health,Health +464278,Health,Health +464277,Health,Health +464275,Health,Health +462455,Health,Health +462454,Health,Health +462453,Health,Health +460972,Health,Health +460534,Health,Health +460533,Health,Health +459938,Health,Health +459341,Health,Health +458304,Health,Health +458303,Health,Health +458302,Health,Health +456799,Health,Health +456798,Health,Health +454842,Health,Health +454841,Health,Health +454840,Health,Health +454839,Health,Health +454838,Health,Health +454837,Health,Health +454836,Health,Health +454835,Health,Health +451576,Health,Health +451575,Health,Health +451574,Health,Health +450235,Health,Health +450183,Health,Health +450180,Health,Health +447973,Health,Health +447972,Health,Health +447970,Health,Health +447968,Health,Health +447964,Health,Health +447963,Health,Health +447960,Health,Health +447957,Health,Health +447956,Health,Health +447954,Health,Health +447953,Health,Health +447951,Health,Health +447950,Health,Health +447947,Health,Health +447943,Health,Health +447936,Health,Health +447932,Health,Health +447929,Health,Health +447927,Health,Health +446258,Health,Health +445537,Health,Health +445319,Health,Health +445317,Health,Health +443625,Health,Health +443621,Health,Health +443619,Health,Health +443533,Health,Health +441590,Health,Health +441588,Health,Health +441583,Health,Health +441580,Health,Health +441578,Health,Health +441576,Health,Health +441573,Health,Health +441569,Health,Health +441568,Health,Health +441565,Health,Health +441564,Health,Health +441563,Health,Health +441555,Health,Health +441553,Health,Health +441551,Health,Health +441545,Health,Health +441322,Health,Health +437414,Health,Health +437413,Health,Health +437217,Health,Health +437216,Health,Health +437215,Health,Health +437214,Health,Health +437213,Health,Health +437212,Health,Health +437211,Health,Health +437210,Health,Health +437209,Health,Health +437206,Health,Health +437205,Health,Health +437199,Health,Health +437197,Health,Health +437196,Health,Health +437187,Health,Health +437183,Health,Health +437181,Health,Health +436641,Health,Health +435298,Health,Health +435294,Health,Health +435291,Health,Health +435287,Health,Health +435272,Health,Health +433297,Health,Health +432281,Health,Health +430190,Health,Health +430188,Health,Health +429867,Health,Health +427505,Health,Health +423307,Health,Health +423306,Health,Health +421530,Health,Health +421528,Health,Health +421527,Health,Health +421526,Health,Health +421525,Health,Health +421523,Health,Health +421522,Health,Health +421513,Health,Health +421511,Health,Health +421510,Health,Health +421501,Health,Health +421499,Health,Health +421498,Health,Health +421496,Health,Health +421495,Health,Health +421494,Health,Health +421493,Health,Health +421492,Health,Health +421491,Health,Health +421490,Health,Health +421489,Health,Health +421487,Health,Health +421484,Health,Health +421483,Health,Health +421482,Health,Health +421480,Health,Health +421479,Health,Health +421478,Health,Health +421477,Health,Health +421476,Health,Health +421475,Health,Health +421473,Health,Health +421472,Health,Health +421471,Health,Health +421470,Health,Health +421469,Health,Health +421468,Health,Health +421466,Health,Health +421465,Health,Health +421464,Health,Health +421463,Health,Health +421462,Health,Health +421461,Health,Health +421458,Health,Health +421437,Health,Health +421436,Health,Health +421435,Health,Health +421434,Health,Health +421433,Health,Health +419198,Health,Health +419192,Health,Health +419191,Health,Health +419190,Health,Health +419189,Health,Health +419188,Health,Health +419187,Health,Health +419186,Health,Health +419185,Health,Health +419184,Health,Health +419183,Health,Health +419182,Health,Health +419181,Health,Health +419180,Health,Health +419179,Health,Health +419178,Health,Health +417498,Health,Health +417407,Health,Health +417406,Health,Health +417403,Health,Health +417401,Health,Health +417400,Health,Health +417399,Health,Health +417398,Health,Health +417397,Health,Health +417396,Health,Health +417395,Health,Health +417394,Health,Health +417393,Health,Health +416511,Health,Health +416508,Health,Health +416506,Health,Health +416505,Health,Health +416503,Health,Health +412131,Health,Health +412127,Health,Health +412124,Health,Health +412123,Health,Health +412119,Health,Health +410197,Health,Health +410196,Health,Health +404869,Health,Health +404868,Health,Health +404867,Health,Health +404866,Health,Health +402305,Health,Health +402304,Health,Health +402303,Health,Health +402302,Health,Health +402301,Health,Health +402300,Health,Health +401436,Health,Health +401435,Health,Health +399852,Health,Health +399847,Health,Health +399845,Health,Health +399840,Health,Health +399837,Health,Health +398675,Health,Health +398673,Health,Health +398651,Health,Health +398650,Health,Health +398649,Health,Health +396675,Health,Health +396657,Health,Health +396651,Health,Health +396639,Health,Health +396607,Health,Health +396601,Health,Health +396598,Health,Health +396595,Health,Health +396591,Health,Health +396589,Health,Health +396586,Health,Health +396582,Health,Health +396578,Health,Health +396574,Health,Health +396531,Health,Health +396529,Health,Health +396526,Health,Health +396525,Health,Health +396522,Health,Health +396520,Health,Health +396514,Health,Health +396512,Health,Health +396510,Health,Health +396507,Health,Health +396505,Health,Health +396503,Health,Health +396500,Health,Health +396496,Health,Health +396492,Health,Health +396490,Health,Health +396485,Health,Health +396482,Health,Health +396480,Health,Health +396477,Health,Health +396476,Health,Health +396475,Health,Health +396471,Health,Health +396469,Health,Health +396466,Health,Health +396463,Health,Health +396460,Health,Health +396459,Health,Health +396458,Health,Health +396455,Health,Health +396453,Health,Health +396452,Health,Health +396449,Health,Health +396440,Health,Health +396438,Health,Health +396427,Health,Health +393657,Health,Health +393656,Health,Health +393654,Health,Health +392864,Health,Health +392863,Health,Health +392862,Health,Health +392563,Health,Health +392562,Health,Health +392561,Health,Health +392560,Health,Health +392455,Health,Health +392454,Health,Health +392453,Health,Health +391815,Health,Health +390768,Health,Health +390760,Health,Health +390756,Health,Health +390751,Health,Health +390748,Health,Health +390746,Health,Health +390742,Health,Health +390738,Health,Health +390732,Health,Health +390730,Health,Health +390727,Health,Health +390725,Health,Health +390061,Health,Health +390060,Health,Health +390059,Health,Health +390057,Health,Health +390056,Health,Health +390055,Health,Health +390054,Health,Health +390053,Health,Health +390052,Health,Health +388577,Health,Health +388576,Health,Health +388574,Health,Health +388572,Health,Health +388569,Health,Health +388568,Health,Health +388566,Health,Health +388563,Health,Health +388561,Health,Health +388557,Health,Health +388555,Health,Health +388552,Health,Health +388551,Health,Health +388547,Health,Health +388545,Health,Health +388544,Health,Health +388543,Health,Health +388542,Health,Health +388541,Health,Health +388540,Health,Health +388539,Health,Health +388537,Health,Health +388536,Health,Health +388534,Health,Health +388533,Health,Health +388531,Health,Health +388530,Health,Health +385734,Health,Health +385733,Health,Health +385732,Health,Health +385731,Health,Health +385730,Health,Health +385729,Health,Health +385728,Health,Health +385727,Health,Health +385726,Health,Health +385723,Health,Health +385719,Health,Health +385717,Health,Health +385714,Health,Health +383869,Health,Health +383868,Health,Health +383866,Health,Health +383864,Health,Health +383863,Health,Health +383859,Health,Health +383857,Health,Health +382259,Health,Health +382258,Health,Health +382257,Health,Health +381594,Health,Health +381589,Health,Health +381586,Health,Health +381582,Health,Health +381573,Health,Health +381571,Health,Health +379154,Health,Health +379153,Health,Health +379152,Health,Health +379151,Health,Health +379150,Health,Health +379149,Health,Health +379148,Health,Health +376446,Health,Health +376442,Health,Health +376440,Health,Health +376438,Health,Health +376437,Health,Health +376436,Health,Health +376434,Health,Health +376433,Health,Health +376431,Health,Health +376429,Health,Health +376428,Health,Health +376427,Health,Health +376426,Health,Health +376425,Health,Health +376424,Health,Health +376422,Health,Health +375262,Health,Health +374108,Health,Health +373861,Health,Health +373860,Health,Health +373859,Health,Health +373858,Health,Health +373857,Health,Health +373856,Health,Health +373855,Health,Health +373854,Health,Health +373853,Health,Health +373852,Health,Health +373851,Health,Health +373850,Health,Health +373849,Health,Health +373847,Health,Health +373846,Health,Health +373845,Health,Health +373844,Health,Health +373843,Health,Health +373842,Health,Health +373841,Health,Health +373840,Health,Health +373839,Health,Health +373838,Health,Health +373837,Health,Health +373836,Health,Health +373834,Health,Health +373833,Health,Health +373832,Health,Health +373831,Health,Health +373830,Health,Health +373829,Health,Health +373828,Health,Health +373827,Health,Health +373826,Health,Health +373825,Health,Health +373823,Health,Health +373822,Health,Health +373821,Health,Health +373788,Health,Health +373787,Health,Health +373786,Health,Health +373785,Health,Health +373784,Health,Health +373783,Health,Health +373782,Health,Health +373781,Health,Health +373780,Health,Health +373779,Health,Health +373778,Health,Health +373777,Health,Health +373776,Health,Health +373775,Health,Health +373774,Health,Health +373773,Health,Health +373730,Health,Health +538939,Health,Health +537452,Health,Health +537447,Health,Health +537444,Health,Health +537386,Health,Health +531873,Health,Health +531872,Health,Health +531871,Health,Health +529409,Health,Health +525575,Health,Health +525568,Health,Health +525565,Health,Health +525563,Health,Health +522319,Health,Health +522312,Health,Health +522309,Health,Health +522307,Health,Health +522301,Health,Health +519330,Health,Health +513947,Health,Health +512288,Health,Health +510904,Health,Health +510903,Health,Health +510901,Health,Health +510900,Health,Health +510899,Health,Health +510898,Health,Health +503864,Health,Health +503862,Health,Health +503861,Health,Health +503859,Health,Health +503857,Health,Health +503856,Health,Health +503854,Health,Health +503853,Health,Health +502206,Health,Health +502205,Health,Health +502204,Health,Health +502203,Health,Health +502202,Health,Health +502201,Health,Health +502199,Health,Health +502198,Health,Health +502195,Health,Health +502194,Health,Health +502190,Health,Health +502186,Health,Health +497537,Health,Health +497536,Health,Health +497535,Health,Health +497534,Health,Health +497533,Health,Health +497532,Health,Health +497531,Health,Health +497530,Health,Health +497529,Health,Health +494651,Health,Health +494650,Health,Health +494648,Health,Health +494646,Health,Health +492818,Health,Health +492816,Health,Health +490461,Health,Health +490448,Health,Health +490447,Health,Health +490445,Health,Health +490443,Health,Health +490441,Health,Health +483678,Health,Health +483676,Health,Health +483675,Health,Health +483673,Health,Health +483670,Health,Health +483668,Health,Health +481332,Health,Health +481331,Health,Health +481329,Health,Health +479147,Health,Health +479145,Health,Health +479144,Health,Health +477722,Health,Health +477721,Health,Health +477720,Health,Health +477717,Health,Health +477714,Health,Health +477712,Health,Health +477708,Health,Health +477703,Health,Health +477702,Health,Health +477699,Health,Health +477696,Health,Health +474618,Health,Health +474617,Health,Health +474616,Health,Health +474615,Health,Health +474614,Health,Health +474613,Health,Health +474611,Health,Health +474610,Health,Health +472282,Health,Health +472279,Health,Health +472278,Health,Health +470164,Health,Health +470163,Health,Health +470153,Health,Health +469999,Health,Health +469997,Health,Health +469995,Health,Health +469994,Health,Health +469992,Health,Health +469990,Health,Health +469989,Health,Health +469988,Health,Health +469987,Health,Health +469986,Health,Health +469985,Health,Health +469984,Health,Health +469983,Health,Health +469981,Health,Health +469980,Health,Health +469979,Health,Health +469978,Health,Health +469977,Health,Health +469976,Health,Health +469975,Health,Health +469974,Health,Health +469973,Health,Health +416505,Industry,Industry +416503,Industry,Industry +412127,Industry,Industry +412119,Industry,Industry +410196,Industry,Industry +402305,Industry,Industry +402304,Industry,Industry +402303,Industry,Industry +402301,Industry,Industry +402300,Industry,Industry +399845,Industry,Industry +399840,Industry,Industry +398675,Industry,Industry +398673,Industry,Industry +398651,Industry,Industry +398649,Industry,Industry +396657,Industry,Industry +396651,Industry,Industry +396639,Industry,Industry +396607,Industry,Industry +396601,Industry,Industry +396598,Industry,Industry +396595,Industry,Industry +396591,Industry,Industry +396589,Industry,Industry +396586,Industry,Industry +396582,Industry,Industry +396578,Industry,Industry +396574,Industry,Industry +396531,Industry,Industry +396529,Industry,Industry +396526,Industry,Industry +396525,Industry,Industry +396522,Industry,Industry +396520,Industry,Industry +396514,Industry,Industry +396512,Industry,Industry +396510,Industry,Industry +396507,Industry,Industry +396505,Industry,Industry +396503,Industry,Industry +396500,Industry,Industry +396496,Industry,Industry +396492,Industry,Industry +396490,Industry,Industry +396485,Industry,Industry +396482,Industry,Industry +396477,Industry,Industry +396476,Industry,Industry +396475,Industry,Industry +396471,Industry,Industry +396469,Industry,Industry +396466,Industry,Industry +396463,Industry,Industry +396460,Industry,Industry +396459,Industry,Industry +396458,Industry,Industry +396455,Industry,Industry +396453,Industry,Industry +396452,Industry,Industry +396449,Industry,Industry +396440,Industry,Industry +396438,Industry,Industry +396427,Industry,Industry +435298,Industry,Industry +435291,Industry,Industry +435287,Industry,Industry +429867,Industry,Industry +427505,Industry,Industry +423307,Industry,Industry +421530,Industry,Industry +421528,Industry,Industry +421527,Industry,Industry +421526,Industry,Industry +421525,Industry,Industry +421523,Industry,Industry +421522,Industry,Industry +421513,Industry,Industry +421511,Industry,Industry +421510,Industry,Industry +421501,Industry,Industry +421499,Industry,Industry +421498,Industry,Industry +421496,Industry,Industry +421495,Industry,Industry +421494,Industry,Industry +421493,Industry,Industry +421492,Industry,Industry +421491,Industry,Industry +421490,Industry,Industry +421489,Industry,Industry +421487,Industry,Industry +421484,Industry,Industry +421483,Industry,Industry +421482,Industry,Industry +421480,Industry,Industry +421479,Industry,Industry +421478,Industry,Industry +421477,Industry,Industry +421476,Industry,Industry +421475,Industry,Industry +421473,Industry,Industry +421472,Industry,Industry +421471,Industry,Industry +421470,Industry,Industry +421469,Industry,Industry +421468,Industry,Industry +421466,Industry,Industry +421465,Industry,Industry +421464,Industry,Industry +421463,Industry,Industry +421462,Industry,Industry +421461,Industry,Industry +421458,Industry,Industry +421437,Industry,Industry +421436,Industry,Industry +421435,Industry,Industry +421434,Industry,Industry +421433,Industry,Industry +419192,Industry,Industry +419191,Industry,Industry +419190,Industry,Industry +419189,Industry,Industry +419188,Industry,Industry +419187,Industry,Industry +419186,Industry,Industry +419185,Industry,Industry +419184,Industry,Industry +419183,Industry,Industry +419182,Industry,Industry +419181,Industry,Industry +419180,Industry,Industry +419179,Industry,Industry +419178,Industry,Industry +417498,Industry,Industry +417407,Industry,Industry +417406,Industry,Industry +417403,Industry,Industry +417401,Industry,Industry +417400,Industry,Industry +417399,Industry,Industry +417398,Industry,Industry +417397,Industry,Industry +417396,Industry,Industry +417394,Industry,Industry +417393,Industry,Industry +416511,Industry,Industry +416508,Industry,Industry +343719,Infrastructure,Infrastructure +340925,Infrastructure,Infrastructure +93106,Infrastructure,Infrastructure +324485,Infrastructure,Infrastructure +321962,Infrastructure,Infrastructure +318645,Infrastructure,Infrastructure +318617,Infrastructure,Infrastructure +318615,Infrastructure,Infrastructure +318613,Infrastructure,Infrastructure +261677,Infrastructure,Infrastructure +259133,Infrastructure,Infrastructure +396423,Infrastructure,Infrastructure +393656,Infrastructure,Infrastructure +382256,Infrastructure,Infrastructure +381573,Infrastructure,Infrastructure +381571,Infrastructure,Infrastructure +379154,Infrastructure,Infrastructure +379153,Infrastructure,Infrastructure +374108,Infrastructure,Infrastructure +373833,Infrastructure,Infrastructure +371858,Infrastructure,Infrastructure +347300,Infrastructure,Infrastructure +390054,Taxation and Finance,Taxation and Finance +490445,Taxation and Finance,Taxation and Finance +280475,Taxation and Finance,Taxation and Finance +268439,Taxation and Finance,Taxation and Finance +268431,Taxation and Finance,Taxation and Finance +261677,Taxation and Finance,Taxation and Finance +390053,Taxation and Finance,Taxation and Finance +390052,Taxation and Finance,Taxation and Finance +376442,Taxation and Finance,Taxation and Finance +376425,Taxation and Finance,Taxation and Finance +333251,Taxation and Finance,Taxation and Finance +310328,Taxation and Finance,Taxation and Finance +310327,Taxation and Finance,Taxation and Finance +310326,Taxation and Finance,Taxation and Finance +310325,Taxation and Finance,Taxation and Finance +310324,Taxation and Finance,Taxation and Finance +310323,Taxation and Finance,Taxation and Finance +310322,Taxation and Finance,Taxation and Finance +310321,Taxation and Finance,Taxation and Finance +310316,Taxation and Finance,Taxation and Finance +310310,Taxation and Finance,Taxation and Finance +302673,Taxation and Finance,Taxation and Finance +302669,Taxation and Finance,Taxation and Finance +421434,Taxation and Finance,Taxation and Finance +399852,Taxation and Finance,Taxation and Finance +399845,Taxation and Finance,Taxation and Finance +398675,Taxation and Finance,Taxation and Finance +398651,Taxation and Finance,Taxation and Finance +398650,Taxation and Finance,Taxation and Finance +398649,Taxation and Finance,Taxation and Finance +396607,Taxation and Finance,Taxation and Finance +396601,Taxation and Finance,Taxation and Finance +396598,Taxation and Finance,Taxation and Finance +396595,Taxation and Finance,Taxation and Finance +396591,Taxation and Finance,Taxation and Finance +396589,Taxation and Finance,Taxation and Finance +396586,Taxation and Finance,Taxation and Finance +396582,Taxation and Finance,Taxation and Finance +396578,Taxation and Finance,Taxation and Finance +396574,Taxation and Finance,Taxation and Finance +396531,Taxation and Finance,Taxation and Finance +396529,Taxation and Finance,Taxation and Finance +396526,Taxation and Finance,Taxation and Finance +396525,Taxation and Finance,Taxation and Finance +396522,Taxation and Finance,Taxation and Finance +396520,Taxation and Finance,Taxation and Finance +396514,Taxation and Finance,Taxation and Finance +396512,Taxation and Finance,Taxation and Finance +396510,Taxation and Finance,Taxation and Finance +396507,Taxation and Finance,Taxation and Finance +396505,Taxation and Finance,Taxation and Finance +396503,Taxation and Finance,Taxation and Finance +396500,Taxation and Finance,Taxation and Finance +396496,Taxation and Finance,Taxation and Finance +396492,Taxation and Finance,Taxation and Finance +396490,Taxation and Finance,Taxation and Finance +396485,Taxation and Finance,Taxation and Finance +396482,Taxation and Finance,Taxation and Finance +396480,Taxation and Finance,Taxation and Finance +396477,Taxation and Finance,Taxation and Finance +396476,Taxation and Finance,Taxation and Finance +396475,Taxation and Finance,Taxation and Finance +396471,Taxation and Finance,Taxation and Finance +396469,Taxation and Finance,Taxation and Finance +396466,Taxation and Finance,Taxation and Finance +396463,Taxation and Finance,Taxation and Finance +396460,Taxation and Finance,Taxation and Finance +396459,Taxation and Finance,Taxation and Finance +396458,Taxation and Finance,Taxation and Finance +396455,Taxation and Finance,Taxation and Finance +396453,Taxation and Finance,Taxation and Finance +396452,Taxation and Finance,Taxation and Finance +396449,Taxation and Finance,Taxation and Finance +396440,Taxation and Finance,Taxation and Finance +396438,Taxation and Finance,Taxation and Finance +396427,Taxation and Finance,Taxation and Finance +393657,Taxation and Finance,Taxation and Finance +393654,Taxation and Finance,Taxation and Finance +392863,Taxation and Finance,Taxation and Finance +392862,Taxation and Finance,Taxation and Finance +392563,Taxation and Finance,Taxation and Finance +392562,Taxation and Finance,Taxation and Finance +392561,Taxation and Finance,Taxation and Finance +392560,Taxation and Finance,Taxation and Finance +392455,Taxation and Finance,Taxation and Finance +392454,Taxation and Finance,Taxation and Finance +392453,Taxation and Finance,Taxation and Finance +390768,Taxation and Finance,Taxation and Finance +390760,Taxation and Finance,Taxation and Finance +390756,Taxation and Finance,Taxation and Finance +390751,Taxation and Finance,Taxation and Finance +390748,Taxation and Finance,Taxation and Finance +390746,Taxation and Finance,Taxation and Finance +390742,Taxation and Finance,Taxation and Finance +390738,Taxation and Finance,Taxation and Finance +390732,Taxation and Finance,Taxation and Finance +390730,Taxation and Finance,Taxation and Finance +390727,Taxation and Finance,Taxation and Finance +390725,Taxation and Finance,Taxation and Finance +390061,Taxation and Finance,Taxation and Finance +390060,Taxation and Finance,Taxation and Finance +390059,Taxation and Finance,Taxation and Finance +390057,Taxation and Finance,Taxation and Finance +390056,Taxation and Finance,Taxation and Finance +318615,Transportation,Transportation +318613,Transportation,Transportation +261677,Transportation,Transportation +396423,Transportation,Transportation +343719,Transportation,Transportation +321962,Transportation,Transportation +318645,Transportation,Transportation +448024,Transportation,Transportation +446637,Transportation,Transportation +173324,Transportation,Transportation +168894,Transportation,Transportation +168808,Transportation,Transportation +168802,Transportation,Transportation +168791,Transportation,Transportation +163873,Transportation,Transportation +163872,Transportation,Transportation +163870,Transportation,Transportation +163868,Transportation,Transportation +163866,Transportation,Transportation +163865,Transportation,Transportation +163864,Transportation,Transportation +163863,Transportation,Transportation +163861,Transportation,Transportation +162471,Transportation,Transportation +162444,Transportation,Transportation +162438,Transportation,Transportation +162429,Transportation,Transportation +162425,Transportation,Transportation +162421,Transportation,Transportation +162416,Transportation,Transportation +162408,Transportation,Transportation +162394,Transportation,Transportation +162380,Transportation,Transportation +162376,Transportation,Transportation +162370,Transportation,Transportation +162364,Transportation,Transportation +162350,Transportation,Transportation +162315,Transportation,Transportation +162306,Transportation,Transportation +162301,Transportation,Transportation +162292,Transportation,Transportation +162272,Transportation,Transportation +162271,Transportation,Transportation +162266,Transportation,Transportation +159906,Transportation,Transportation +159898,Transportation,Transportation +159885,Transportation,Transportation +226929,Transportation,Transportation +226928,Transportation,Transportation +217711,Transportation,Transportation +216947,Transportation,Transportation +212274,Transportation,Transportation +212272,Transportation,Transportation +212271,Transportation,Transportation +212269,Transportation,Transportation +212264,Transportation,Transportation +212257,Transportation,Transportation +212253,Transportation,Transportation +212251,Transportation,Transportation +212249,Transportation,Transportation +212245,Transportation,Transportation +212238,Transportation,Transportation +211647,Transportation,Transportation +207139,Transportation,Transportation +207125,Transportation,Transportation +207124,Transportation,Transportation +202872,Transportation,Transportation +202869,Transportation,Transportation +202863,Transportation,Transportation +202860,Transportation,Transportation +202859,Transportation,Transportation +202858,Transportation,Transportation +202847,Transportation,Transportation +202845,Transportation,Transportation +202842,Transportation,Transportation +202836,Transportation,Transportation +197486,Transportation,Transportation +197482,Transportation,Transportation +197481,Transportation,Transportation +197480,Transportation,Transportation +197479,Transportation,Transportation +197478,Transportation,Transportation +197476,Transportation,Transportation +197474,Transportation,Transportation +197472,Transportation,Transportation +197469,Transportation,Transportation +197464,Transportation,Transportation +197461,Transportation,Transportation +197459,Transportation,Transportation +197453,Transportation,Transportation +197451,Transportation,Transportation +197449,Transportation,Transportation +197448,Transportation,Transportation +197447,Transportation,Transportation +192895,Transportation,Transportation +192893,Transportation,Transportation +192892,Transportation,Transportation +192891,Transportation,Transportation +188955,Transportation,Transportation +188935,Transportation,Transportation +188930,Transportation,Transportation +185064,Transportation,Transportation +312254,Transportation,Transportation +310346,Transportation,Transportation +310342,Transportation,Transportation +310312,Transportation,Transportation +310308,Transportation,Transportation +310296,Transportation,Transportation +310289,Transportation,Transportation +300777,Transportation,Transportation +300772,Transportation,Transportation +300770,Transportation,Transportation +300769,Transportation,Transportation +300750,Transportation,Transportation +300749,Transportation,Transportation +296156,Transportation,Transportation +296154,Transportation,Transportation +286878,Transportation,Transportation +286630,Transportation,Transportation +281101,Transportation,Transportation +281100,Transportation,Transportation +281098,Transportation,Transportation +281096,Transportation,Transportation +281095,Transportation,Transportation +281094,Transportation,Transportation +281091,Transportation,Transportation +281089,Transportation,Transportation +281088,Transportation,Transportation +281085,Transportation,Transportation +281080,Transportation,Transportation +281075,Transportation,Transportation +281072,Transportation,Transportation +276697,Transportation,Transportation +273291,Transportation,Transportation +273272,Transportation,Transportation +273270,Transportation,Transportation +273265,Transportation,Transportation +273263,Transportation,Transportation +273260,Transportation,Transportation +273259,Transportation,Transportation +268449,Transportation,Transportation +263429,Transportation,Transportation +263427,Transportation,Transportation +263426,Transportation,Transportation +257150,Transportation,Transportation +257149,Transportation,Transportation +253137,Transportation,Transportation +253136,Transportation,Transportation +253135,Transportation,Transportation +253133,Transportation,Transportation +253130,Transportation,Transportation +250665,Transportation,Transportation +250661,Transportation,Transportation +250656,Transportation,Transportation +250610,Transportation,Transportation +250609,Transportation,Transportation +250595,Transportation,Transportation +250593,Transportation,Transportation +245399,Transportation,Transportation +245396,Transportation,Transportation +245395,Transportation,Transportation +245393,Transportation,Transportation +245390,Transportation,Transportation +245370,Transportation,Transportation +245290,Transportation,Transportation +245289,Transportation,Transportation +245272,Transportation,Transportation +245257,Transportation,Transportation +245255,Transportation,Transportation +245253,Transportation,Transportation +245240,Transportation,Transportation +245237,Transportation,Transportation +245073,Transportation,Transportation +245072,Transportation,Transportation +245067,Transportation,Transportation +245058,Transportation,Transportation +226963,Transportation,Transportation +226959,Transportation,Transportation +226953,Transportation,Transportation +226952,Transportation,Transportation +226951,Transportation,Transportation +226949,Transportation,Transportation +226947,Transportation,Transportation +226945,Transportation,Transportation +226943,Transportation,Transportation +226941,Transportation,Transportation +226938,Transportation,Transportation +226935,Transportation,Transportation +226933,Transportation,Transportation +443687,Transportation,Transportation +443683,Transportation,Transportation +441404,Transportation,Transportation +441399,Transportation,Transportation +438799,Transportation,Transportation +438798,Transportation,Transportation +438796,Transportation,Transportation +438795,Transportation,Transportation +438793,Transportation,Transportation +438782,Transportation,Transportation +438778,Transportation,Transportation +438774,Transportation,Transportation +438769,Transportation,Transportation +438761,Transportation,Transportation +435293,Transportation,Transportation +435276,Transportation,Transportation +435261,Transportation,Transportation +435255,Transportation,Transportation +433546,Transportation,Transportation +430199,Transportation,Transportation +430198,Transportation,Transportation +430193,Transportation,Transportation +430191,Transportation,Transportation +428877,Transportation,Transportation +428875,Transportation,Transportation +428860,Transportation,Transportation +428844,Transportation,Transportation +428805,Transportation,Transportation +428785,Transportation,Transportation +425499,Transportation,Transportation +425498,Transportation,Transportation +422014,Transportation,Transportation +422010,Transportation,Transportation +421999,Transportation,Transportation +419469,Transportation,Transportation +417778,Transportation,Transportation +417770,Transportation,Transportation +415401,Transportation,Transportation +412843,Transportation,Transportation +412832,Transportation,Transportation +412830,Transportation,Transportation +412827,Transportation,Transportation +412815,Transportation,Transportation +412811,Transportation,Transportation +412808,Transportation,Transportation +412802,Transportation,Transportation +412767,Transportation,Transportation +412741,Transportation,Transportation +412728,Transportation,Transportation +412713,Transportation,Transportation +409386,Transportation,Transportation +409384,Transportation,Transportation +407945,Transportation,Transportation +407942,Transportation,Transportation +407939,Transportation,Transportation +407938,Transportation,Transportation +407929,Transportation,Transportation +407928,Transportation,Transportation +406225,Transportation,Transportation +405477,Transportation,Transportation +405474,Transportation,Transportation +405473,Transportation,Transportation +405471,Transportation,Transportation +405456,Transportation,Transportation +402766,Transportation,Transportation +402763,Transportation,Transportation +402762,Transportation,Transportation +400787,Transportation,Transportation +400784,Transportation,Transportation +398555,Transportation,Transportation +393969,Transportation,Transportation +393963,Transportation,Transportation +392665,Transportation,Transportation +391848,Transportation,Transportation +391847,Transportation,Transportation +390779,Transportation,Transportation +387881,Transportation,Transportation +387880,Transportation,Transportation +387879,Transportation,Transportation +387876,Transportation,Transportation +387873,Transportation,Transportation +387863,Transportation,Transportation +387319,Transportation,Transportation +385245,Transportation,Transportation +385244,Transportation,Transportation +385243,Transportation,Transportation +385242,Transportation,Transportation +385228,Transportation,Transportation +383630,Transportation,Transportation +383522,Transportation,Transportation +383510,Transportation,Transportation +383468,Transportation,Transportation +382361,Transportation,Transportation +382355,Transportation,Transportation +382353,Transportation,Transportation +382352,Transportation,Transportation +382346,Transportation,Transportation +382343,Transportation,Transportation +382340,Transportation,Transportation +381253,Transportation,Transportation +381252,Transportation,Transportation +381248,Transportation,Transportation +381243,Transportation,Transportation +381238,Transportation,Transportation +381237,Transportation,Transportation +381227,Transportation,Transportation +381217,Transportation,Transportation +378925,Transportation,Transportation +378924,Transportation,Transportation +378923,Transportation,Transportation +378896,Transportation,Transportation +376996,Transportation,Transportation +376985,Transportation,Transportation +376966,Transportation,Transportation +374642,Transportation,Transportation +374633,Transportation,Transportation +374613,Transportation,Transportation +374609,Transportation,Transportation +372002,Transportation,Transportation +371995,Transportation,Transportation +371982,Transportation,Transportation +371972,Transportation,Transportation +371969,Transportation,Transportation +371965,Transportation,Transportation +371945,Transportation,Transportation +371939,Transportation,Transportation +371917,Transportation,Transportation +371887,Transportation,Transportation +369223,Transportation,Transportation +369220,Transportation,Transportation +369216,Transportation,Transportation +369212,Transportation,Transportation +369202,Transportation,Transportation +369195,Transportation,Transportation +369187,Transportation,Transportation +366586,Transportation,Transportation +366584,Transportation,Transportation +366582,Transportation,Transportation +365068,Transportation,Transportation +359583,Transportation,Transportation +359582,Transportation,Transportation +359580,Transportation,Transportation +356725,Transportation,Transportation +355947,Transportation,Transportation +355942,Transportation,Transportation +355924,Transportation,Transportation +350463,Transportation,Transportation +347104,Transportation,Transportation +347103,Transportation,Transportation +341504,Transportation,Transportation +341499,Transportation,Transportation +341497,Transportation,Transportation +341489,Transportation,Transportation +341486,Transportation,Transportation +341484,Transportation,Transportation +341477,Transportation,Transportation +341474,Transportation,Transportation +341472,Transportation,Transportation +341467,Transportation,Transportation +341465,Transportation,Transportation +341458,Transportation,Transportation +338777,Transportation,Transportation +338771,Transportation,Transportation +338739,Transportation,Transportation +338736,Transportation,Transportation +338734,Transportation,Transportation +338732,Transportation,Transportation +338720,Transportation,Transportation +338714,Transportation,Transportation +335298,Transportation,Transportation +335294,Transportation,Transportation +335292,Transportation,Transportation +335291,Transportation,Transportation +333290,Transportation,Transportation +330869,Transportation,Transportation +330868,Transportation,Transportation +330867,Transportation,Transportation +330866,Transportation,Transportation +330865,Transportation,Transportation +329819,Transportation,Transportation +327667,Transportation,Transportation +327655,Transportation,Transportation +327638,Transportation,Transportation +327617,Transportation,Transportation +327590,Transportation,Transportation +327578,Transportation,Transportation +327568,Transportation,Transportation +327562,Transportation,Transportation +327556,Transportation,Transportation +327540,Transportation,Transportation +327529,Transportation,Transportation +323829,Transportation,Transportation +323828,Transportation,Transportation +318723,Transportation,Transportation +318718,Transportation,Transportation +318715,Transportation,Transportation +315763,Transportation,Transportation +315761,Transportation,Transportation +315753,Transportation,Transportation +315749,Transportation,Transportation +315744,Transportation,Transportation +315743,Transportation,Transportation +315741,Transportation,Transportation +312259,Transportation,Transportation +312258,Transportation,Transportation +312257,Transportation,Transportation +312256,Transportation,Transportation +312255,Transportation,Transportation +487882,Transportation,Transportation +487878,Transportation,Transportation +483610,Transportation,Transportation +483605,Transportation,Transportation +483603,Transportation,Transportation +482413,Transportation,Transportation +482409,Transportation,Transportation +479710,Transportation,Transportation +479706,Transportation,Transportation +479703,Transportation,Transportation +475053,Transportation,Transportation +475049,Transportation,Transportation +472996,Transportation,Transportation +472992,Transportation,Transportation +472987,Transportation,Transportation +470985,Transportation,Transportation +470974,Transportation,Transportation +467556,Transportation,Transportation +467550,Transportation,Transportation +467540,Transportation,Transportation +465037,Transportation,Transportation +462849,Transportation,Transportation +462848,Transportation,Transportation +462847,Transportation,Transportation +462846,Transportation,Transportation +461750,Transportation,Transportation +460600,Transportation,Transportation +459402,Transportation,Transportation +459401,Transportation,Transportation +455732,Transportation,Transportation +448046,Transportation,Transportation +88220,Employment and Training,Employment and Training +109806,Employment and Training,Employment and Training +109803,Employment and Training,Employment and Training +109801,Employment and Training,Employment and Training +109797,Employment and Training,Employment and Training +109796,Employment and Training,Employment and Training +109794,Employment and Training,Employment and Training +109788,Employment and Training,Employment and Training +171048,Employment and Training,Employment and Training +171045,Employment and Training,Employment and Training +171041,Employment and Training,Employment and Training +162472,Employment and Training,Employment and Training +162420,Employment and Training,Employment and Training +162391,Employment and Training,Employment and Training +158504,Employment and Training,Employment and Training +158503,Employment and Training,Employment and Training +158502,Employment and Training,Employment and Training +158501,Employment and Training,Employment and Training +158499,Employment and Training,Employment and Training +158498,Employment and Training,Employment and Training +158497,Employment and Training,Employment and Training +158496,Employment and Training,Employment and Training +158495,Employment and Training,Employment and Training +158493,Employment and Training,Employment and Training +158473,Employment and Training,Employment and Training +158472,Employment and Training,Employment and Training +158471,Employment and Training,Employment and Training +158470,Employment and Training,Employment and Training +158469,Employment and Training,Employment and Training +158468,Employment and Training,Employment and Training +158466,Employment and Training,Employment and Training +158465,Employment and Training,Employment and Training +158462,Employment and Training,Employment and Training +158458,Employment and Training,Employment and Training +158456,Employment and Training,Employment and Training +150438,Employment and Training,Employment and Training +150437,Employment and Training,Employment and Training +142821,Employment and Training,Employment and Training +142818,Employment and Training,Employment and Training +142815,Employment and Training,Employment and Training +135762,Employment and Training,Employment and Training +135760,Employment and Training,Employment and Training +135759,Employment and Training,Employment and Training +324088,Employment and Training,Employment and Training +309599,Employment and Training,Employment and Training +290935,Employment and Training,Employment and Training +287190,Employment and Training,Employment and Training +279553,Employment and Training,Employment and Training +279551,Employment and Training,Employment and Training +268529,Employment and Training,Employment and Training +218428,Employment and Training,Employment and Training +218427,Employment and Training,Employment and Training +218417,Employment and Training,Employment and Training +207609,Employment and Training,Employment and Training +207607,Employment and Training,Employment and Training +202950,Employment and Training,Employment and Training +202519,Employment and Training,Employment and Training +200430,Employment and Training,Employment and Training +194854,Employment and Training,Employment and Training +194849,Employment and Training,Employment and Training +194840,Employment and Training,Employment and Training +487908,Employment and Training,Employment and Training +449652,Employment and Training,Employment and Training +449605,Employment and Training,Employment and Training +447506,Employment and Training,Employment and Training +447498,Employment and Training,Employment and Training +438240,Employment and Training,Employment and Training +425467,Employment and Training,Employment and Training +416763,Employment and Training,Employment and Training +416761,Employment and Training,Employment and Training +416757,Employment and Training,Employment and Training +416753,Employment and Training,Employment and Training +412348,Employment and Training,Employment and Training +412310,Employment and Training,Employment and Training +412300,Employment and Training,Employment and Training +412295,Employment and Training,Employment and Training +412281,Employment and Training,Employment and Training +412242,Employment and Training,Employment and Training +412213,Employment and Training,Employment and Training +306709,Energy,Energy +412265,Environment,Environment +412233,Environment,Environment +150437,Environment,Environment +162481,Environment,Environment +162465,Environment,Environment +162460,Environment,Environment +162457,Environment,Environment +162420,Environment,Environment +162404,Environment,Environment +162391,Environment,Environment +158504,Environment,Environment +158503,Environment,Environment +158502,Environment,Environment +158501,Environment,Environment +158499,Environment,Environment +158498,Environment,Environment +158497,Environment,Environment +158496,Environment,Environment +158495,Environment,Environment +158493,Environment,Environment +158473,Environment,Environment +158472,Environment,Environment +158471,Environment,Environment +152284,Environment,Environment +152281,Environment,Environment +150438,Environment,Environment +327741,Environment,Environment +324473,Environment,Environment +324090,Environment,Environment +312762,Environment,Environment +301218,Environment,Environment +233704,Environment,Environment +218428,Environment,Environment +218417,Environment,Environment +218410,Environment,Environment +202950,Environment,Environment +194846,Environment,Environment +189670,Environment,Environment +189668,Environment,Environment +189667,Environment,Environment +189666,Environment,Environment +185947,Environment,Environment +171048,Environment,Environment +171045,Environment,Environment +171041,Environment,Environment +171038,Environment,Environment +171036,Environment,Environment +171033,Environment,Environment +171032,Environment,Environment +171029,Environment,Environment +171026,Environment,Environment +171024,Environment,Environment +171020,Environment,Environment +171019,Environment,Environment +171012,Environment,Environment +171008,Environment,Environment +408088,Environment,Environment +370213,Environment,Environment +370193,Environment,Environment +370192,Environment,Environment +370188,Environment,Environment +368173,Environment,Environment +365440,Environment,Environment +529639,Environment,Environment +510642,Environment,Environment +506091,Environment,Environment +487925,Environment,Environment +487922,Environment,Environment +487905,Environment,Environment +487902,Environment,Environment +487898,Environment,Environment +458639,Environment,Environment +456871,Environment,Environment +454707,Environment,Environment +454705,Environment,Environment +449605,Environment,Environment +447522,Environment,Environment +447513,Environment,Environment +447509,Environment,Environment +447507,Environment,Environment +447498,Environment,Environment +442164,Environment,Environment +442162,Environment,Environment +442161,Environment,Environment +438255,Environment,Environment +438254,Environment,Environment +438253,Environment,Environment +438252,Environment,Environment +438251,Environment,Environment +438250,Environment,Environment +438249,Environment,Environment +438248,Environment,Environment +438247,Environment,Environment +438246,Environment,Environment +438245,Environment,Environment +438244,Environment,Environment +438243,Environment,Environment +438242,Environment,Environment +438241,Environment,Environment +438240,Environment,Environment +438239,Environment,Environment +438238,Environment,Environment +438237,Environment,Environment +438236,Environment,Environment +438235,Environment,Environment +438234,Environment,Environment +438233,Environment,Environment +438232,Environment,Environment +438231,Environment,Environment +438230,Environment,Environment +438228,Environment,Environment +438227,Environment,Environment +438225,Environment,Environment +438223,Environment,Environment +438222,Environment,Environment +438220,Environment,Environment +438219,Environment,Environment +438218,Environment,Environment +438217,Environment,Environment +438215,Environment,Environment +438214,Environment,Environment +437725,Environment,Environment +437724,Environment,Environment +431670,Environment,Environment +431669,Environment,Environment +427308,Environment,Environment +427298,Environment,Environment +427297,Environment,Environment +427294,Environment,Environment +425471,Environment,Environment +425469,Environment,Environment +425467,Environment,Environment +425414,Environment,Environment +425412,Environment,Environment +421849,Environment,Environment +416763,Environment,Environment +416761,Environment,Environment +416757,Environment,Environment +416753,Environment,Environment +412371,Environment,Environment +412346,Environment,Environment +412344,Environment,Environment +412338,Environment,Environment +412300,Environment,Environment +412281,Environment,Environment +287211,Financial Institutions,Financial Institutions +487902,Financial Institutions,Financial Institutions +425468,Financial Institutions,Financial Institutions +412387,Financial Institutions,Financial Institutions +412386,Financial Institutions,Financial Institutions +412385,Financial Institutions,Financial Institutions +431669,Fisheries,Fisheries +510642,Fisheries,Fisheries +150439,Fisheries,Fisheries +109791,Fisheries,Fisheries +109786,Fisheries,Fisheries +109784,Fisheries,Fisheries +162472,Fisheries,Fisheries +162465,Fisheries,Fisheries +158504,Fisheries,Fisheries +158503,Fisheries,Fisheries +158502,Fisheries,Fisheries +158501,Fisheries,Fisheries +158499,Fisheries,Fisheries +158498,Fisheries,Fisheries +158497,Fisheries,Fisheries +158496,Fisheries,Fisheries +158495,Fisheries,Fisheries +158493,Fisheries,Fisheries +158473,Fisheries,Fisheries +158472,Fisheries,Fisheries +158471,Fisheries,Fisheries +152284,Fisheries,Fisheries +152281,Fisheries,Fisheries +150442,Fisheries,Fisheries +150441,Fisheries,Fisheries +309600,Fisheries,Fisheries +194846,Fisheries,Fisheries +447507,Fisheries,Fisheries +438255,Fisheries,Fisheries +438254,Fisheries,Fisheries +438253,Fisheries,Fisheries +438252,Fisheries,Fisheries +438251,Fisheries,Fisheries +438250,Fisheries,Fisheries +438249,Fisheries,Fisheries +438248,Fisheries,Fisheries +438247,Fisheries,Fisheries +438246,Fisheries,Fisheries +438245,Fisheries,Fisheries +438244,Fisheries,Fisheries +438243,Fisheries,Fisheries +438242,Fisheries,Fisheries +438241,Fisheries,Fisheries +438240,Fisheries,Fisheries +438239,Fisheries,Fisheries +438238,Fisheries,Fisheries +438237,Fisheries,Fisheries +438236,Fisheries,Fisheries +438235,Fisheries,Fisheries +438234,Fisheries,Fisheries +438233,Fisheries,Fisheries +438232,Fisheries,Fisheries +438231,Fisheries,Fisheries +438230,Fisheries,Fisheries +438228,Fisheries,Fisheries +438227,Fisheries,Fisheries +438225,Fisheries,Fisheries +438223,Fisheries,Fisheries +438222,Fisheries,Fisheries +438220,Fisheries,Fisheries +438219,Fisheries,Fisheries +438218,Fisheries,Fisheries +438217,Fisheries,Fisheries +438215,Fisheries,Fisheries +438214,Fisheries,Fisheries +437725,Fisheries,Fisheries +162453,Industry,Industry +162435,Industry,Industry +162472,Industry,Industry +458639,Infrastructure,Infrastructure +449605,Infrastructure,Infrastructure +135761,Infrastructure,Infrastructure +322711,Infrastructure,Infrastructure +320092,Infrastructure,Infrastructure +313369,Infrastructure,Infrastructure +312763,Infrastructure,Infrastructure +306709,Infrastructure,Infrastructure +294310,Infrastructure,Infrastructure +292650,Infrastructure,Infrastructure +287190,Infrastructure,Infrastructure +279551,Infrastructure,Infrastructure +268529,Infrastructure,Infrastructure +200430,Infrastructure,Infrastructure +194840,Infrastructure,Infrastructure +171048,Infrastructure,Infrastructure +171045,Infrastructure,Infrastructure +171041,Infrastructure,Infrastructure +386122,Infrastructure,Infrastructure +386121,Infrastructure,Infrastructure +386120,Infrastructure,Infrastructure +386119,Infrastructure,Infrastructure +386118,Infrastructure,Infrastructure +386117,Infrastructure,Infrastructure +386116,Infrastructure,Infrastructure +386070,Infrastructure,Infrastructure +386069,Infrastructure,Infrastructure +386068,Infrastructure,Infrastructure +386067,Infrastructure,Infrastructure +386064,Infrastructure,Infrastructure +385554,Infrastructure,Infrastructure +385548,Infrastructure,Infrastructure +385547,Infrastructure,Infrastructure +383392,Infrastructure,Infrastructure +378979,Infrastructure,Infrastructure +378973,Infrastructure,Infrastructure +374465,Infrastructure,Infrastructure +370221,Infrastructure,Infrastructure +370217,Infrastructure,Infrastructure +370194,Infrastructure,Infrastructure +370193,Infrastructure,Infrastructure +370190,Infrastructure,Infrastructure +370184,Infrastructure,Infrastructure +368178,Infrastructure,Infrastructure +368177,Infrastructure,Infrastructure +368175,Infrastructure,Infrastructure +368173,Infrastructure,Infrastructure +356446,Infrastructure,Infrastructure +356439,Infrastructure,Infrastructure +347339,Infrastructure,Infrastructure +347333,Infrastructure,Infrastructure +340853,Infrastructure,Infrastructure +333291,Infrastructure,Infrastructure +326437,Infrastructure,Infrastructure +326433,Infrastructure,Infrastructure +324465,Infrastructure,Infrastructure +324088,Infrastructure,Infrastructure +447507,Infrastructure,Infrastructure +447506,Infrastructure,Infrastructure +447498,Infrastructure,Infrastructure +442164,Infrastructure,Infrastructure +442161,Infrastructure,Infrastructure +438255,Infrastructure,Infrastructure +438254,Infrastructure,Infrastructure +438253,Infrastructure,Infrastructure +438252,Infrastructure,Infrastructure +438251,Infrastructure,Infrastructure +438250,Infrastructure,Infrastructure +438249,Infrastructure,Infrastructure +438248,Infrastructure,Infrastructure +438247,Infrastructure,Infrastructure +438246,Infrastructure,Infrastructure +438245,Infrastructure,Infrastructure +438244,Infrastructure,Infrastructure +438243,Infrastructure,Infrastructure +438242,Infrastructure,Infrastructure +438241,Infrastructure,Infrastructure +438240,Infrastructure,Infrastructure +438239,Infrastructure,Infrastructure +438238,Infrastructure,Infrastructure +438237,Infrastructure,Infrastructure +438236,Infrastructure,Infrastructure +438235,Infrastructure,Infrastructure +438234,Infrastructure,Infrastructure +438233,Infrastructure,Infrastructure +438232,Infrastructure,Infrastructure +438231,Infrastructure,Infrastructure +438230,Infrastructure,Infrastructure +438228,Infrastructure,Infrastructure +438227,Infrastructure,Infrastructure +438225,Infrastructure,Infrastructure +438223,Infrastructure,Infrastructure +438222,Infrastructure,Infrastructure +438220,Infrastructure,Infrastructure +438219,Infrastructure,Infrastructure +438217,Infrastructure,Infrastructure +438215,Infrastructure,Infrastructure +438214,Infrastructure,Infrastructure +437725,Infrastructure,Infrastructure +437724,Infrastructure,Infrastructure +437723,Infrastructure,Infrastructure +437722,Infrastructure,Infrastructure +432672,Infrastructure,Infrastructure +431670,Infrastructure,Infrastructure +431669,Infrastructure,Infrastructure +421849,Infrastructure,Infrastructure +416763,Infrastructure,Infrastructure +416761,Infrastructure,Infrastructure +416757,Infrastructure,Infrastructure +416753,Infrastructure,Infrastructure +412386,Infrastructure,Infrastructure +412328,Infrastructure,Infrastructure +412286,Infrastructure,Infrastructure +412265,Infrastructure,Infrastructure +400518,Infrastructure,Infrastructure +531446,Infrastructure,Infrastructure +529637,Infrastructure,Infrastructure +529633,Infrastructure,Infrastructure +506091,Infrastructure,Infrastructure +487930,Infrastructure,Infrastructure +487922,Infrastructure,Infrastructure +487916,Infrastructure,Infrastructure +487911,Infrastructure,Infrastructure +487908,Infrastructure,Infrastructure +487907,Infrastructure,Infrastructure +487905,Infrastructure,Infrastructure +487904,Infrastructure,Infrastructure +487901,Infrastructure,Infrastructure +487897,Infrastructure,Infrastructure +250275,Internal Trade,Internal Trade +250253,Internal Trade,Internal Trade +253134,Internal Trade,Internal Trade +253132,Internal Trade,Internal Trade +253089,Internal Trade,Internal Trade +252989,Internal Trade,Internal Trade +250792,Internal Trade,Internal Trade +287190,International Relations,International Relations +279552,International Relations,International Relations +109792,International Relations,International Relations +275254,International Relations,International Relations +200451,International Relations,International Relations +200448,International Relations,International Relations +200440,International Relations,International Relations +185947,International Relations,International Relations +171051,International Relations,International Relations +158472,International Relations,International Relations +427307,International Relations,International Relations +427301,International Relations,International Relations +427292,International Relations,International Relations +425470,International Relations,International Relations +425469,International Relations,International Relations +421849,International Relations,International Relations +417695,International Relations,International Relations +417694,International Relations,International Relations +417692,International Relations,International Relations +412389,International Relations,International Relations +412388,International Relations,International Relations +382163,International Relations,International Relations +312759,International Relations,International Relations +312755,International Relations,International Relations +287229,International Relations,International Relations +376566,International Trade,International Trade +370213,International Trade,International Trade +88226,International Trade,International Trade +88220,International Trade,International Trade +158752,International Trade,International Trade +158504,International Trade,International Trade +158503,International Trade,International Trade +158502,International Trade,International Trade +158501,International Trade,International Trade +158499,International Trade,International Trade +158498,International Trade,International Trade +158497,International Trade,International Trade +158496,International Trade,International Trade +158495,International Trade,International Trade +158493,International Trade,International Trade +158473,International Trade,International Trade +158471,International Trade,International Trade +150438,International Trade,International Trade +150437,International Trade,International Trade +145554,International Trade,International Trade +200440,International Trade,International Trade +194854,International Trade,International Trade +194835,International Trade,International Trade +189670,International Trade,International Trade +189668,International Trade,International Trade +189667,International Trade,International Trade +189666,International Trade,International Trade +185947,International Trade,International Trade +171051,International Trade,International Trade +333292,International Trade,International Trade +331204,International Trade,International Trade +331039,International Trade,International Trade +324466,International Trade,International Trade +312759,International Trade,International Trade +312755,International Trade,International Trade +298070,International Trade,International Trade +287229,International Trade,International Trade +287210,International Trade,International Trade +279552,International Trade,International Trade +275254,International Trade,International Trade +250283,International Trade,International Trade +250269,International Trade,International Trade +226740,International Trade,International Trade +218417,International Trade,International Trade +218410,International Trade,International Trade +212507,International Trade,International Trade +207609,International Trade,International Trade +207607,International Trade,International Trade +202951,International Trade,International Trade +200451,International Trade,International Trade +200448,International Trade,International Trade +468178,International Trade,International Trade +465054,International Trade,International Trade +462447,International Trade,International Trade +461817,International Trade,International Trade +457941,International Trade,International Trade +456872,International Trade,International Trade +456871,International Trade,International Trade +454708,International Trade,International Trade +454706,International Trade,International Trade +454705,International Trade,International Trade +451562,International Trade,International Trade +451560,International Trade,International Trade +451557,International Trade,International Trade +442164,International Trade,International Trade +442162,International Trade,International Trade +442161,International Trade,International Trade +431670,International Trade,International Trade +431669,International Trade,International Trade +427307,International Trade,International Trade +427301,International Trade,International Trade +427292,International Trade,International Trade +425470,International Trade,International Trade +425469,International Trade,International Trade +417695,International Trade,International Trade +417694,International Trade,International Trade +417692,International Trade,International Trade +413283,International Trade,International Trade +412387,International Trade,International Trade +412339,International Trade,International Trade +412268,International Trade,International Trade +412254,International Trade,International Trade +412222,International Trade,International Trade +412218,International Trade,International Trade +400521,International Trade,International Trade +378982,International Trade,International Trade +378975,International Trade,International Trade +378971,International Trade,International Trade +162481,Labour,Labour +162472,Labour,Labour +162420,Labour,Labour +162391,Labour,Labour +326437,Labour,Labour +324088,Labour,Labour +312755,Labour,Labour +312754,Labour,Labour +454708,Mining,Mining +454707,Mining,Mining +109792,Mining,Mining +88220,Mining,Mining +88216,Mining,Mining +88213,Mining,Mining +88207,Mining,Mining +158465,Mining,Mining +158462,Mining,Mining +158458,Mining,Mining +158456,Mining,Mining +152284,Mining,Mining +152281,Mining,Mining +150438,Mining,Mining +150437,Mining,Mining +145554,Mining,Mining +142821,Mining,Mining +142818,Mining,Mining +142815,Mining,Mining +135762,Mining,Mining +135761,Mining,Mining +135760,Mining,Mining +135759,Mining,Mining +109806,Mining,Mining +109803,Mining,Mining +109801,Mining,Mining +109797,Mining,Mining +109796,Mining,Mining +109794,Mining,Mining +194850,Mining,Mining +194849,Mining,Mining +194846,Mining,Mining +194843,Mining,Mining +194840,Mining,Mining +194835,Mining,Mining +189670,Mining,Mining +189668,Mining,Mining +189667,Mining,Mining +189666,Mining,Mining +185947,Mining,Mining +173104,Mining,Mining +171053,Mining,Mining +171051,Mining,Mining +171048,Mining,Mining +171045,Mining,Mining +171041,Mining,Mining +171038,Mining,Mining +171036,Mining,Mining +171033,Mining,Mining +171032,Mining,Mining +171029,Mining,Mining +171026,Mining,Mining +171024,Mining,Mining +171020,Mining,Mining +171019,Mining,Mining +171012,Mining,Mining +171008,Mining,Mining +166072,Mining,Mining +166071,Mining,Mining +162481,Mining,Mining +162472,Mining,Mining +162465,Mining,Mining +162457,Mining,Mining +162453,Mining,Mining +162435,Mining,Mining +162420,Mining,Mining +162404,Mining,Mining +162391,Mining,Mining +158504,Mining,Mining +158503,Mining,Mining +158502,Mining,Mining +158501,Mining,Mining +158499,Mining,Mining +158498,Mining,Mining +158497,Mining,Mining +158496,Mining,Mining +158495,Mining,Mining +158493,Mining,Mining +158473,Mining,Mining +158472,Mining,Mining +158471,Mining,Mining +158470,Mining,Mining +158469,Mining,Mining +158468,Mining,Mining +158466,Mining,Mining +331204,Mining,Mining +331039,Mining,Mining +326435,Mining,Mining +326433,Mining,Mining +324473,Mining,Mining +324472,Mining,Mining +324470,Mining,Mining +324469,Mining,Mining +324466,Mining,Mining +324465,Mining,Mining +324090,Mining,Mining +324088,Mining,Mining +323213,Mining,Mining +322714,Mining,Mining +322712,Mining,Mining +322711,Mining,Mining +320092,Mining,Mining +320091,Mining,Mining +320090,Mining,Mining +320089,Mining,Mining +313369,Mining,Mining +312762,Mining,Mining +312761,Mining,Mining +312760,Mining,Mining +312759,Mining,Mining +310461,Mining,Mining +310460,Mining,Mining +309599,Mining,Mining +306709,Mining,Mining +301218,Mining,Mining +298070,Mining,Mining +298069,Mining,Mining +294310,Mining,Mining +292650,Mining,Mining +292649,Mining,Mining +290949,Mining,Mining +290935,Mining,Mining +290931,Mining,Mining +287969,Mining,Mining +287229,Mining,Mining +287211,Mining,Mining +287210,Mining,Mining +287209,Mining,Mining +287190,Mining,Mining +280190,Mining,Mining +280189,Mining,Mining +279553,Mining,Mining +279552,Mining,Mining +279551,Mining,Mining +275256,Mining,Mining +275255,Mining,Mining +275254,Mining,Mining +275253,Mining,Mining +274031,Mining,Mining +274030,Mining,Mining +274029,Mining,Mining +271109,Mining,Mining +268529,Mining,Mining +259595,Mining,Mining +254834,Mining,Mining +254832,Mining,Mining +254831,Mining,Mining +254830,Mining,Mining +254214,Mining,Mining +253134,Mining,Mining +253132,Mining,Mining +253089,Mining,Mining +252989,Mining,Mining +250792,Mining,Mining +250287,Mining,Mining +250283,Mining,Mining +250275,Mining,Mining +250253,Mining,Mining +234071,Mining,Mining +233700,Mining,Mining +226740,Mining,Mining +218447,Mining,Mining +218428,Mining,Mining +218427,Mining,Mining +218417,Mining,Mining +218410,Mining,Mining +212507,Mining,Mining +207609,Mining,Mining +207607,Mining,Mining +202951,Mining,Mining +202950,Mining,Mining +202519,Mining,Mining +200451,Mining,Mining +200448,Mining,Mining +200440,Mining,Mining +200430,Mining,Mining +194856,Mining,Mining +194855,Mining,Mining +194854,Mining,Mining +454706,Mining,Mining +454705,Mining,Mining +451562,Mining,Mining +451560,Mining,Mining +451557,Mining,Mining +449652,Mining,Mining +449605,Mining,Mining +447522,Mining,Mining +447513,Mining,Mining +447509,Mining,Mining +447507,Mining,Mining +447506,Mining,Mining +447498,Mining,Mining +442164,Mining,Mining +442162,Mining,Mining +442161,Mining,Mining +442157,Mining,Mining +438255,Mining,Mining +438254,Mining,Mining +438253,Mining,Mining +438252,Mining,Mining +438251,Mining,Mining +438250,Mining,Mining +438249,Mining,Mining +438248,Mining,Mining +438247,Mining,Mining +438246,Mining,Mining +438245,Mining,Mining +438244,Mining,Mining +438243,Mining,Mining +438242,Mining,Mining +438241,Mining,Mining +438240,Mining,Mining +438239,Mining,Mining +438238,Mining,Mining +438237,Mining,Mining +438236,Mining,Mining +438235,Mining,Mining +438234,Mining,Mining +438233,Mining,Mining +438232,Mining,Mining +438231,Mining,Mining +438230,Mining,Mining +438228,Mining,Mining +438227,Mining,Mining +438225,Mining,Mining +438223,Mining,Mining +438222,Mining,Mining +438220,Mining,Mining +438219,Mining,Mining +438218,Mining,Mining +438217,Mining,Mining +438215,Mining,Mining +438214,Mining,Mining +437725,Mining,Mining +437724,Mining,Mining +437723,Mining,Mining +437722,Mining,Mining +432672,Mining,Mining +431670,Mining,Mining +431669,Mining,Mining +427308,Mining,Mining +427307,Mining,Mining +427301,Mining,Mining +427299,Mining,Mining +427298,Mining,Mining +427297,Mining,Mining +427294,Mining,Mining +427293,Mining,Mining +427292,Mining,Mining +425471,Mining,Mining +425470,Mining,Mining +425469,Mining,Mining +425468,Mining,Mining +425467,Mining,Mining +425414,Mining,Mining +425412,Mining,Mining +421849,Mining,Mining +417695,Mining,Mining +417694,Mining,Mining +417692,Mining,Mining +416763,Mining,Mining +416761,Mining,Mining +416757,Mining,Mining +416753,Mining,Mining +412386,Mining,Mining +412371,Mining,Mining +412286,Mining,Mining +412284,Mining,Mining +412278,Mining,Mining +412268,Mining,Mining +412265,Mining,Mining +412254,Mining,Mining +412247,Mining,Mining +412233,Mining,Mining +412227,Mining,Mining +412222,Mining,Mining +412218,Mining,Mining +412162,Mining,Mining +408088,Mining,Mining +400521,Mining,Mining +400518,Mining,Mining +400516,Mining,Mining +398589,Mining,Mining +398517,Mining,Mining +386122,Mining,Mining +386121,Mining,Mining +386120,Mining,Mining +386119,Mining,Mining +386118,Mining,Mining +386117,Mining,Mining +386116,Mining,Mining +386070,Mining,Mining +386069,Mining,Mining +386068,Mining,Mining +386067,Mining,Mining +386064,Mining,Mining +385554,Mining,Mining +385548,Mining,Mining +385547,Mining,Mining +383396,Mining,Mining +383393,Mining,Mining +383392,Mining,Mining +382163,Mining,Mining +380871,Mining,Mining +380869,Mining,Mining +378982,Mining,Mining +378979,Mining,Mining +378976,Mining,Mining +378975,Mining,Mining +378973,Mining,Mining +378971,Mining,Mining +378969,Mining,Mining +376566,Mining,Mining +374465,Mining,Mining +370221,Mining,Mining +370217,Mining,Mining +370215,Mining,Mining +370213,Mining,Mining +370212,Mining,Mining +370194,Mining,Mining +370193,Mining,Mining +370192,Mining,Mining +370190,Mining,Mining +370188,Mining,Mining +370186,Mining,Mining +368178,Mining,Mining +368177,Mining,Mining +368175,Mining,Mining +368173,Mining,Mining +368171,Mining,Mining +365943,Mining,Mining +365942,Mining,Mining +359442,Mining,Mining +359441,Mining,Mining +359439,Mining,Mining +356450,Mining,Mining +356446,Mining,Mining +356439,Mining,Mining +350632,Mining,Mining +350630,Mining,Mining +347346,Mining,Mining +347343,Mining,Mining +347342,Mining,Mining +347339,Mining,Mining +347333,Mining,Mining +335314,Mining,Mining +334477,Mining,Mining +333294,Mining,Mining +333293,Mining,Mining +333292,Mining,Mining +333291,Mining,Mining +531447,Mining,Mining +531446,Mining,Mining +531443,Mining,Mining +529639,Mining,Mining +529637,Mining,Mining +529633,Mining,Mining +520289,Mining,Mining +506091,Mining,Mining +487930,Mining,Mining +487929,Mining,Mining +487927,Mining,Mining +487925,Mining,Mining +487922,Mining,Mining +487920,Mining,Mining +487916,Mining,Mining +487914,Mining,Mining +487911,Mining,Mining +487909,Mining,Mining +487908,Mining,Mining +487907,Mining,Mining +487906,Mining,Mining +487905,Mining,Mining +487904,Mining,Mining +487902,Mining,Mining +487901,Mining,Mining +487900,Mining,Mining +487899,Mining,Mining +487898,Mining,Mining +487897,Mining,Mining +487896,Mining,Mining +485357,Mining,Mining +485356,Mining,Mining +485351,Mining,Mining +480271,Mining,Mining +476085,Mining,Mining +476084,Mining,Mining +473757,Mining,Mining +473756,Mining,Mining +473754,Mining,Mining +468179,Mining,Mining +468178,Mining,Mining +468177,Mining,Mining +465054,Mining,Mining +462449,Mining,Mining +462447,Mining,Mining +461817,Mining,Mining +458639,Mining,Mining +457941,Mining,Mining +456872,Mining,Mining +487901,Regional Development,Regional Development +485357,Regional Development,Regional Development +171020,Regional Development,Regional Development +171019,Regional Development,Regional Development +171012,Regional Development,Regional Development +171008,Regional Development,Regional Development +166072,Regional Development,Regional Development +166071,Regional Development,Regional Development +135762,Regional Development,Regional Development +109806,Regional Development,Regional Development +109803,Regional Development,Regional Development +109801,Regional Development,Regional Development +109797,Regional Development,Regional Development +88216,Regional Development,Regional Development +306709,Regional Development,Regional Development +294310,Regional Development,Regional Development +290931,Regional Development,Regional Development +287190,Regional Development,Regional Development +280190,Regional Development,Regional Development +280189,Regional Development,Regional Development +279553,Regional Development,Regional Development +279551,Regional Development,Regional Development +218427,Regional Development,Regional Development +212507,Regional Development,Regional Development +207609,Regional Development,Regional Development +202950,Regional Development,Regional Development +202519,Regional Development,Regional Development +200430,Regional Development,Regional Development +194855,Regional Development,Regional Development +194854,Regional Development,Regional Development +194849,Regional Development,Regional Development +194843,Regional Development,Regional Development +194840,Regional Development,Regional Development +171053,Regional Development,Regional Development +171048,Regional Development,Regional Development +171045,Regional Development,Regional Development +171041,Regional Development,Regional Development +171038,Regional Development,Regional Development +171036,Regional Development,Regional Development +171033,Regional Development,Regional Development +171032,Regional Development,Regional Development +171029,Regional Development,Regional Development +171026,Regional Development,Regional Development +171024,Regional Development,Regional Development +447506,Regional Development,Regional Development +378969,Regional Development,Regional Development +370186,Regional Development,Regional Development +368173,Regional Development,Regional Development +356446,Regional Development,Regional Development +350630,Regional Development,Regional Development +326437,Regional Development,Regional Development +326436,Regional Development,Regional Development +326435,Regional Development,Regional Development +324088,Regional Development,Regional Development +322711,Regional Development,Regional Development +312761,Regional Development,Regional Development +312760,Regional Development,Regional Development +309599,Regional Development,Regional Development +487927,Regional Development,Regional Development +487911,Regional Development,Regional Development +487908,Regional Development,Regional Development +487906,Regional Development,Regional Development +487905,Regional Development,Regional Development +287211,Small Business,Small Business +279551,Small Business,Small Business +437723,Taxation and Finance,Taxation and Finance +437722,Taxation and Finance,Taxation and Finance +109806,Taxation and Finance,Taxation and Finance +109803,Taxation and Finance,Taxation and Finance +109801,Taxation and Finance,Taxation and Finance +109797,Taxation and Finance,Taxation and Finance +101396,Taxation and Finance,Taxation and Finance +101394,Taxation and Finance,Taxation and Finance +101392,Taxation and Finance,Taxation and Finance +158497,Taxation and Finance,Taxation and Finance +158496,Taxation and Finance,Taxation and Finance +158495,Taxation and Finance,Taxation and Finance +158493,Taxation and Finance,Taxation and Finance +158473,Taxation and Finance,Taxation and Finance +158472,Taxation and Finance,Taxation and Finance +158471,Taxation and Finance,Taxation and Finance +158468,Taxation and Finance,Taxation and Finance +158466,Taxation and Finance,Taxation and Finance +158458,Taxation and Finance,Taxation and Finance +158456,Taxation and Finance,Taxation and Finance +150438,Taxation and Finance,Taxation and Finance +150437,Taxation and Finance,Taxation and Finance +142821,Taxation and Finance,Taxation and Finance +142818,Taxation and Finance,Taxation and Finance +142815,Taxation and Finance,Taxation and Finance +135762,Taxation and Finance,Taxation and Finance +135761,Taxation and Finance,Taxation and Finance +292649,Taxation and Finance,Taxation and Finance +290935,Taxation and Finance,Taxation and Finance +287211,Taxation and Finance,Taxation and Finance +279551,Taxation and Finance,Taxation and Finance +275256,Taxation and Finance,Taxation and Finance +275255,Taxation and Finance,Taxation and Finance +271109,Taxation and Finance,Taxation and Finance +268529,Taxation and Finance,Taxation and Finance +254214,Taxation and Finance,Taxation and Finance +253134,Taxation and Finance,Taxation and Finance +253132,Taxation and Finance,Taxation and Finance +253089,Taxation and Finance,Taxation and Finance +252989,Taxation and Finance,Taxation and Finance +250792,Taxation and Finance,Taxation and Finance +250287,Taxation and Finance,Taxation and Finance +250283,Taxation and Finance,Taxation and Finance +250275,Taxation and Finance,Taxation and Finance +250269,Taxation and Finance,Taxation and Finance +250253,Taxation and Finance,Taxation and Finance +218428,Taxation and Finance,Taxation and Finance +218417,Taxation and Finance,Taxation and Finance +207609,Taxation and Finance,Taxation and Finance +207607,Taxation and Finance,Taxation and Finance +202950,Taxation and Finance,Taxation and Finance +194855,Taxation and Finance,Taxation and Finance +194854,Taxation and Finance,Taxation and Finance +194849,Taxation and Finance,Taxation and Finance +194840,Taxation and Finance,Taxation and Finance +189666,Taxation and Finance,Taxation and Finance +173104,Taxation and Finance,Taxation and Finance +171048,Taxation and Finance,Taxation and Finance +171045,Taxation and Finance,Taxation and Finance +171041,Taxation and Finance,Taxation and Finance +171038,Taxation and Finance,Taxation and Finance +171036,Taxation and Finance,Taxation and Finance +171033,Taxation and Finance,Taxation and Finance +171032,Taxation and Finance,Taxation and Finance +171029,Taxation and Finance,Taxation and Finance +171026,Taxation and Finance,Taxation and Finance +171024,Taxation and Finance,Taxation and Finance +171020,Taxation and Finance,Taxation and Finance +171019,Taxation and Finance,Taxation and Finance +171012,Taxation and Finance,Taxation and Finance +171008,Taxation and Finance,Taxation and Finance +166072,Taxation and Finance,Taxation and Finance +166071,Taxation and Finance,Taxation and Finance +158504,Taxation and Finance,Taxation and Finance +158503,Taxation and Finance,Taxation and Finance +158502,Taxation and Finance,Taxation and Finance +158501,Taxation and Finance,Taxation and Finance +158499,Taxation and Finance,Taxation and Finance +158498,Taxation and Finance,Taxation and Finance +412346,Taxation and Finance,Taxation and Finance +412290,Taxation and Finance,Taxation and Finance +412286,Taxation and Finance,Taxation and Finance +412278,Taxation and Finance,Taxation and Finance +412233,Taxation and Finance,Taxation and Finance +412162,Taxation and Finance,Taxation and Finance +408088,Taxation and Finance,Taxation and Finance +400516,Taxation and Finance,Taxation and Finance +398517,Taxation and Finance,Taxation and Finance +394845,Taxation and Finance,Taxation and Finance +386122,Taxation and Finance,Taxation and Finance +386121,Taxation and Finance,Taxation and Finance +386120,Taxation and Finance,Taxation and Finance +386119,Taxation and Finance,Taxation and Finance +386118,Taxation and Finance,Taxation and Finance +386117,Taxation and Finance,Taxation and Finance +386116,Taxation and Finance,Taxation and Finance +386070,Taxation and Finance,Taxation and Finance +386069,Taxation and Finance,Taxation and Finance +386068,Taxation and Finance,Taxation and Finance +386067,Taxation and Finance,Taxation and Finance +386064,Taxation and Finance,Taxation and Finance +385554,Taxation and Finance,Taxation and Finance +385548,Taxation and Finance,Taxation and Finance +385547,Taxation and Finance,Taxation and Finance +383396,Taxation and Finance,Taxation and Finance +383393,Taxation and Finance,Taxation and Finance +383392,Taxation and Finance,Taxation and Finance +380871,Taxation and Finance,Taxation and Finance +378982,Taxation and Finance,Taxation and Finance +378979,Taxation and Finance,Taxation and Finance +378973,Taxation and Finance,Taxation and Finance +378969,Taxation and Finance,Taxation and Finance +374465,Taxation and Finance,Taxation and Finance +370221,Taxation and Finance,Taxation and Finance +370215,Taxation and Finance,Taxation and Finance +370194,Taxation and Finance,Taxation and Finance +370193,Taxation and Finance,Taxation and Finance +370190,Taxation and Finance,Taxation and Finance +370188,Taxation and Finance,Taxation and Finance +370186,Taxation and Finance,Taxation and Finance +370184,Taxation and Finance,Taxation and Finance +368178,Taxation and Finance,Taxation and Finance +368177,Taxation and Finance,Taxation and Finance +365942,Taxation and Finance,Taxation and Finance +356439,Taxation and Finance,Taxation and Finance +350632,Taxation and Finance,Taxation and Finance +350630,Taxation and Finance,Taxation and Finance +347346,Taxation and Finance,Taxation and Finance +347343,Taxation and Finance,Taxation and Finance +347342,Taxation and Finance,Taxation and Finance +347339,Taxation and Finance,Taxation and Finance +347333,Taxation and Finance,Taxation and Finance +340853,Taxation and Finance,Taxation and Finance +333291,Taxation and Finance,Taxation and Finance +326436,Taxation and Finance,Taxation and Finance +324465,Taxation and Finance,Taxation and Finance +306709,Taxation and Finance,Taxation and Finance +531446,Taxation and Finance,Taxation and Finance +531443,Taxation and Finance,Taxation and Finance +529639,Taxation and Finance,Taxation and Finance +529637,Taxation and Finance,Taxation and Finance +520289,Taxation and Finance,Taxation and Finance +506091,Taxation and Finance,Taxation and Finance +487930,Taxation and Finance,Taxation and Finance +487929,Taxation and Finance,Taxation and Finance +487927,Taxation and Finance,Taxation and Finance +487920,Taxation and Finance,Taxation and Finance +487916,Taxation and Finance,Taxation and Finance +487914,Taxation and Finance,Taxation and Finance +487911,Taxation and Finance,Taxation and Finance +487909,Taxation and Finance,Taxation and Finance +487908,Taxation and Finance,Taxation and Finance +487907,Taxation and Finance,Taxation and Finance +487906,Taxation and Finance,Taxation and Finance +487905,Taxation and Finance,Taxation and Finance +487904,Taxation and Finance,Taxation and Finance +487902,Taxation and Finance,Taxation and Finance +487901,Taxation and Finance,Taxation and Finance +487900,Taxation and Finance,Taxation and Finance +487899,Taxation and Finance,Taxation and Finance +487898,Taxation and Finance,Taxation and Finance +487897,Taxation and Finance,Taxation and Finance +487896,Taxation and Finance,Taxation and Finance +485356,Taxation and Finance,Taxation and Finance +485351,Taxation and Finance,Taxation and Finance +480271,Taxation and Finance,Taxation and Finance +476085,Taxation and Finance,Taxation and Finance +476084,Taxation and Finance,Taxation and Finance +473757,Taxation and Finance,Taxation and Finance +473756,Taxation and Finance,Taxation and Finance +473754,Taxation and Finance,Taxation and Finance +447522,Taxation and Finance,Taxation and Finance +438255,Taxation and Finance,Taxation and Finance +438254,Taxation and Finance,Taxation and Finance +438253,Taxation and Finance,Taxation and Finance +438252,Taxation and Finance,Taxation and Finance +438251,Taxation and Finance,Taxation and Finance +438250,Taxation and Finance,Taxation and Finance +438249,Taxation and Finance,Taxation and Finance +438248,Taxation and Finance,Taxation and Finance +438247,Taxation and Finance,Taxation and Finance +438246,Taxation and Finance,Taxation and Finance +438245,Taxation and Finance,Taxation and Finance +438244,Taxation and Finance,Taxation and Finance +438243,Taxation and Finance,Taxation and Finance +438242,Taxation and Finance,Taxation and Finance +438241,Taxation and Finance,Taxation and Finance +438240,Taxation and Finance,Taxation and Finance +438239,Taxation and Finance,Taxation and Finance +438238,Taxation and Finance,Taxation and Finance +438237,Taxation and Finance,Taxation and Finance +438236,Taxation and Finance,Taxation and Finance +438235,Taxation and Finance,Taxation and Finance +438234,Taxation and Finance,Taxation and Finance +438233,Taxation and Finance,Taxation and Finance +438232,Taxation and Finance,Taxation and Finance +438231,Taxation and Finance,Taxation and Finance +438230,Taxation and Finance,Taxation and Finance +438228,Taxation and Finance,Taxation and Finance +438227,Taxation and Finance,Taxation and Finance +438225,Taxation and Finance,Taxation and Finance +438223,Taxation and Finance,Taxation and Finance +438222,Taxation and Finance,Taxation and Finance +438220,Taxation and Finance,Taxation and Finance +438219,Taxation and Finance,Taxation and Finance +438217,Taxation and Finance,Taxation and Finance +438215,Taxation and Finance,Taxation and Finance +438214,Taxation and Finance,Taxation and Finance +437725,Taxation and Finance,Taxation and Finance +321310,Transportation,Transportation +427574,Transportation,Transportation +162669,Transportation,Transportation +162668,Transportation,Transportation +156687,Transportation,Transportation +298210,Transportation,Transportation +298209,Transportation,Transportation +247389,Transportation,Transportation +233469,Transportation,Transportation +196067,Transportation,Transportation +171179,Transportation,Transportation +171174,Transportation,Transportation +407729,Transportation,Transportation +407723,Transportation,Transportation +407722,Transportation,Transportation +388961,Transportation,Transportation +340915,Energy,Energy +257912,Environment,Environment +246249,Environment,Environment +92758,Environment,Environment +92757,Environment,Environment +92756,Environment,Environment +89603,Environment,Environment +89598,Environment,Environment +87116,Environment,Environment +78676,Environment,Environment +78674,Environment,Environment +76216,Environment,Environment +76215,Environment,Environment +334029,Environment,Environment +155347,Financial Institutions,Financial Institutions +146254,Financial Institutions,Financial Institutions +161004,Industry,Industry +155346,Industry,Industry +76214,Industry,Industry +146047,Industry,Industry +92757,Infrastructure,Infrastructure +160774,Infrastructure,Infrastructure +146047,Infrastructure,Infrastructure +126815,Infrastructure,Infrastructure +475776,Taxation and Finance,Taxation and Finance +475770,Taxation and Finance,Taxation and Finance +89597,Taxation and Finance,Taxation and Finance +89596,Taxation and Finance,Taxation and Finance +89595,Taxation and Finance,Taxation and Finance +87115,Taxation and Finance,Taxation and Finance +82295,Taxation and Finance,Taxation and Finance +82294,Taxation and Finance,Taxation and Finance +78675,Taxation and Finance,Taxation and Finance +160774,Taxation and Finance,Taxation and Finance +155347,Taxation and Finance,Taxation and Finance +155346,Taxation and Finance,Taxation and Finance +155225,Taxation and Finance,Taxation and Finance +146254,Taxation and Finance,Taxation and Finance +146047,Taxation and Finance,Taxation and Finance +143954,Taxation and Finance,Taxation and Finance +130714,Taxation and Finance,Taxation and Finance +124221,Taxation and Finance,Taxation and Finance +124220,Taxation and Finance,Taxation and Finance +124218,Taxation and Finance,Taxation and Finance +124216,Taxation and Finance,Taxation and Finance +124214,Taxation and Finance,Taxation and Finance +120116,Taxation and Finance,Taxation and Finance +112696,Taxation and Finance,Taxation and Finance +102534,Taxation and Finance,Taxation and Finance +102256,Taxation and Finance,Taxation and Finance +92758,Taxation and Finance,Taxation and Finance +92755,Taxation and Finance,Taxation and Finance +92754,Taxation and Finance,Taxation and Finance +89603,Taxation and Finance,Taxation and Finance +89602,Taxation and Finance,Taxation and Finance +89601,Taxation and Finance,Taxation and Finance +89600,Taxation and Finance,Taxation and Finance +89599,Taxation and Finance,Taxation and Finance +89598,Taxation and Finance,Taxation and Finance +257949,Taxation and Finance,Taxation and Finance +257931,Taxation and Finance,Taxation and Finance +257912,Taxation and Finance,Taxation and Finance +238729,Taxation and Finance,Taxation and Finance +165125,Taxation and Finance,Taxation and Finance +161004,Taxation and Finance,Taxation and Finance +500711,Taxation and Finance,Taxation and Finance +475787,Taxation and Finance,Taxation and Finance +484495,Agriculture,Agriculture +484492,Agriculture,Agriculture +82770,Agriculture,Agriculture +116892,Agriculture,Agriculture +116891,Agriculture,Agriculture +116889,Agriculture,Agriculture +156796,Agriculture,Agriculture +153291,Agriculture,Agriculture +132476,Agriculture,Agriculture +240731,Agriculture,Agriculture +240729,Agriculture,Agriculture +233514,Agriculture,Agriculture +233512,Agriculture,Agriculture +230209,Agriculture,Agriculture +227162,Agriculture,Agriculture +223387,Agriculture,Agriculture +214267,Agriculture,Agriculture +214247,Agriculture,Agriculture +214227,Agriculture,Agriculture +207176,Agriculture,Agriculture +207170,Agriculture,Agriculture +202512,Agriculture,Agriculture +202509,Agriculture,Agriculture +189131,Agriculture,Agriculture +189130,Agriculture,Agriculture +185515,Agriculture,Agriculture +179465,Agriculture,Agriculture +179445,Agriculture,Agriculture +170509,Agriculture,Agriculture +168151,Agriculture,Agriculture +165910,Agriculture,Agriculture +165909,Agriculture,Agriculture +163695,Agriculture,Agriculture +161857,Agriculture,Agriculture +161855,Agriculture,Agriculture +159794,Agriculture,Agriculture +359667,Agriculture,Agriculture +359665,Agriculture,Agriculture +359664,Agriculture,Agriculture +359663,Agriculture,Agriculture +359662,Agriculture,Agriculture +359660,Agriculture,Agriculture +359658,Agriculture,Agriculture +359653,Agriculture,Agriculture +359651,Agriculture,Agriculture +359648,Agriculture,Agriculture +359645,Agriculture,Agriculture +357890,Agriculture,Agriculture +357889,Agriculture,Agriculture +357886,Agriculture,Agriculture +353738,Agriculture,Agriculture +353663,Agriculture,Agriculture +353661,Agriculture,Agriculture +353657,Agriculture,Agriculture +353655,Agriculture,Agriculture +351415,Agriculture,Agriculture +351412,Agriculture,Agriculture +347260,Agriculture,Agriculture +347258,Agriculture,Agriculture +343896,Agriculture,Agriculture +343895,Agriculture,Agriculture +343894,Agriculture,Agriculture +343892,Agriculture,Agriculture +343812,Agriculture,Agriculture +338255,Agriculture,Agriculture +338252,Agriculture,Agriculture +338250,Agriculture,Agriculture +335580,Agriculture,Agriculture +335577,Agriculture,Agriculture +331193,Agriculture,Agriculture +329869,Agriculture,Agriculture +324544,Agriculture,Agriculture +324543,Agriculture,Agriculture +324542,Agriculture,Agriculture +324541,Agriculture,Agriculture +324540,Agriculture,Agriculture +321727,Agriculture,Agriculture +321725,Agriculture,Agriculture +321724,Agriculture,Agriculture +321722,Agriculture,Agriculture +321719,Agriculture,Agriculture +315988,Agriculture,Agriculture +312891,Agriculture,Agriculture +312887,Agriculture,Agriculture +310229,Agriculture,Agriculture +304272,Agriculture,Agriculture +304269,Agriculture,Agriculture +304268,Agriculture,Agriculture +304265,Agriculture,Agriculture +304262,Agriculture,Agriculture +295489,Agriculture,Agriculture +290592,Agriculture,Agriculture +286729,Agriculture,Agriculture +286632,Agriculture,Agriculture +286629,Agriculture,Agriculture +280671,Agriculture,Agriculture +277013,Agriculture,Agriculture +277004,Agriculture,Agriculture +273469,Agriculture,Agriculture +268991,Agriculture,Agriculture +268989,Agriculture,Agriculture +264432,Agriculture,Agriculture +264424,Agriculture,Agriculture +264417,Agriculture,Agriculture +259470,Agriculture,Agriculture +254013,Agriculture,Agriculture +250811,Agriculture,Agriculture +250802,Agriculture,Agriculture +244995,Agriculture,Agriculture +481957,Agriculture,Agriculture +481918,Agriculture,Agriculture +479471,Agriculture,Agriculture +479437,Agriculture,Agriculture +477022,Agriculture,Agriculture +477008,Agriculture,Agriculture +476148,Agriculture,Agriculture +476147,Agriculture,Agriculture +464494,Agriculture,Agriculture +462572,Agriculture,Agriculture +462569,Agriculture,Agriculture +462568,Agriculture,Agriculture +460899,Agriculture,Agriculture +459507,Agriculture,Agriculture +458461,Agriculture,Agriculture +456858,Agriculture,Agriculture +454980,Agriculture,Agriculture +443340,Agriculture,Agriculture +443339,Agriculture,Agriculture +443338,Agriculture,Agriculture +443337,Agriculture,Agriculture +443336,Agriculture,Agriculture +438137,Agriculture,Agriculture +438135,Agriculture,Agriculture +438132,Agriculture,Agriculture +438123,Agriculture,Agriculture +438110,Agriculture,Agriculture +438106,Agriculture,Agriculture +435142,Agriculture,Agriculture +433432,Agriculture,Agriculture +433430,Agriculture,Agriculture +428364,Agriculture,Agriculture +428334,Agriculture,Agriculture +428326,Agriculture,Agriculture +428322,Agriculture,Agriculture +426038,Agriculture,Agriculture +426033,Agriculture,Agriculture +426024,Agriculture,Agriculture +426016,Agriculture,Agriculture +419855,Agriculture,Agriculture +419852,Agriculture,Agriculture +417719,Agriculture,Agriculture +417716,Agriculture,Agriculture +417712,Agriculture,Agriculture +415590,Agriculture,Agriculture +415577,Agriculture,Agriculture +415565,Agriculture,Agriculture +415562,Agriculture,Agriculture +415560,Agriculture,Agriculture +413371,Agriculture,Agriculture +413363,Agriculture,Agriculture +413334,Agriculture,Agriculture +413301,Agriculture,Agriculture +409715,Agriculture,Agriculture +407837,Agriculture,Agriculture +407829,Agriculture,Agriculture +405157,Agriculture,Agriculture +403313,Agriculture,Agriculture +403307,Agriculture,Agriculture +395971,Agriculture,Agriculture +393757,Agriculture,Agriculture +392228,Agriculture,Agriculture +384992,Agriculture,Agriculture +383634,Agriculture,Agriculture +382140,Agriculture,Agriculture +380962,Agriculture,Agriculture +380959,Agriculture,Agriculture +377255,Agriculture,Agriculture +376509,Agriculture,Agriculture +376508,Agriculture,Agriculture +374774,Agriculture,Agriculture +374763,Agriculture,Agriculture +371834,Agriculture,Agriculture +371765,Agriculture,Agriculture +371763,Agriculture,Agriculture +368652,Agriculture,Agriculture +366516,Agriculture,Agriculture +363404,Agriculture,Agriculture +363403,Agriculture,Agriculture +363402,Agriculture,Agriculture +363400,Agriculture,Agriculture +363399,Agriculture,Agriculture +363396,Agriculture,Agriculture +363393,Agriculture,Agriculture +362359,Agriculture,Agriculture +362357,Agriculture,Agriculture +362354,Agriculture,Agriculture +361144,Agriculture,Agriculture +361143,Agriculture,Agriculture +543981,Agriculture,Agriculture +543976,Agriculture,Agriculture +539864,Agriculture,Agriculture +537254,Agriculture,Agriculture +537093,Agriculture,Agriculture +535099,Agriculture,Agriculture +534749,Agriculture,Agriculture +531688,Agriculture,Agriculture +522281,Agriculture,Agriculture +522268,Agriculture,Agriculture +522264,Agriculture,Agriculture +517629,Agriculture,Agriculture +517626,Agriculture,Agriculture +517524,Agriculture,Agriculture +515520,Agriculture,Agriculture +515517,Agriculture,Agriculture +512388,Agriculture,Agriculture +512386,Agriculture,Agriculture +510930,Agriculture,Agriculture +507972,Agriculture,Agriculture +507968,Agriculture,Agriculture +507892,Agriculture,Agriculture +507886,Agriculture,Agriculture +506418,Agriculture,Agriculture +505063,Agriculture,Agriculture +505062,Agriculture,Agriculture +505060,Agriculture,Agriculture +504828,Agriculture,Agriculture +502618,Agriculture,Agriculture +495271,Agriculture,Agriculture +492981,Agriculture,Agriculture +490548,Agriculture,Agriculture +490541,Agriculture,Agriculture +490372,Agriculture,Agriculture +490359,Agriculture,Agriculture +490353,Agriculture,Agriculture +487331,Agriculture,Agriculture +484988,Agriculture,Agriculture +484505,Agriculture,Agriculture +510930,Consumer Issues,Consumer Issues +484500,Consumer Issues,Consumer Issues +324542,Consumer Issues,Consumer Issues +321727,Consumer Issues,Consumer Issues +321725,Consumer Issues,Consumer Issues +321724,Consumer Issues,Consumer Issues +321722,Consumer Issues,Consumer Issues +321719,Consumer Issues,Consumer Issues +264424,Consumer Issues,Consumer Issues +244986,Consumer Issues,Consumer Issues +443340,Consumer Issues,Consumer Issues +443339,Consumer Issues,Consumer Issues +443338,Consumer Issues,Consumer Issues +443337,Consumer Issues,Consumer Issues +443336,Consumer Issues,Consumer Issues +419855,Consumer Issues,Consumer Issues +419852,Consumer Issues,Consumer Issues +417719,Consumer Issues,Consumer Issues +417716,Consumer Issues,Consumer Issues +417712,Consumer Issues,Consumer Issues +409715,Consumer Issues,Consumer Issues +335580,Consumer Issues,Consumer Issues +522268,Environment,Environment +522264,Environment,Environment +510930,Environment,Environment +507972,Environment,Environment +507968,Environment,Environment +507892,Environment,Environment +507886,Environment,Environment +443336,Health,Health +409715,Health,Health +490541,Health,Health +490372,Health,Health +443340,Health,Health +443339,Health,Health +443338,Health,Health +543981,Internal Trade,Internal Trade +543976,Internal Trade,Internal Trade +312891,Internal Trade,Internal Trade +459507,International Trade,International Trade +456858,International Trade,International Trade +116894,International Trade,International Trade +264432,International Trade,International Trade +264424,International Trade,International Trade +264417,International Trade,International Trade +259470,International Trade,International Trade +250830,International Trade,International Trade +250816,International Trade,International Trade +250811,International Trade,International Trade +250802,International Trade,International Trade +230209,International Trade,International Trade +207176,International Trade,International Trade +207170,International Trade,International Trade +202509,International Trade,International Trade +189131,International Trade,International Trade +165910,International Trade,International Trade +165909,International Trade,International Trade +159794,International Trade,International Trade +371763,International Trade,International Trade +368652,International Trade,International Trade +366516,International Trade,International Trade +363404,International Trade,International Trade +363403,International Trade,International Trade +363402,International Trade,International Trade +363400,International Trade,International Trade +363399,International Trade,International Trade +363396,International Trade,International Trade +363393,International Trade,International Trade +362359,International Trade,International Trade +362357,International Trade,International Trade +362354,International Trade,International Trade +361144,International Trade,International Trade +361143,International Trade,International Trade +359667,International Trade,International Trade +359665,International Trade,International Trade +359664,International Trade,International Trade +359663,International Trade,International Trade +359662,International Trade,International Trade +359660,International Trade,International Trade +359658,International Trade,International Trade +359653,International Trade,International Trade +359651,International Trade,International Trade +359648,International Trade,International Trade +359645,International Trade,International Trade +357890,International Trade,International Trade +357889,International Trade,International Trade +357886,International Trade,International Trade +353738,International Trade,International Trade +353663,International Trade,International Trade +353661,International Trade,International Trade +353657,International Trade,International Trade +353655,International Trade,International Trade +351412,International Trade,International Trade +343812,International Trade,International Trade +338255,International Trade,International Trade +338252,International Trade,International Trade +338250,International Trade,International Trade +335580,International Trade,International Trade +335577,International Trade,International Trade +331193,International Trade,International Trade +329869,International Trade,International Trade +324541,International Trade,International Trade +324540,International Trade,International Trade +319160,International Trade,International Trade +315988,International Trade,International Trade +310229,International Trade,International Trade +304272,International Trade,International Trade +304269,International Trade,International Trade +304268,International Trade,International Trade +304265,International Trade,International Trade +304262,International Trade,International Trade +290592,International Trade,International Trade +286632,International Trade,International Trade +286629,International Trade,International Trade +277013,International Trade,International Trade +277004,International Trade,International Trade +273469,International Trade,International Trade +443340,International Trade,International Trade +443339,International Trade,International Trade +443338,International Trade,International Trade +443337,International Trade,International Trade +443336,International Trade,International Trade +438137,International Trade,International Trade +438135,International Trade,International Trade +438132,International Trade,International Trade +438123,International Trade,International Trade +438110,International Trade,International Trade +438106,International Trade,International Trade +435142,International Trade,International Trade +433432,International Trade,International Trade +433430,International Trade,International Trade +428364,International Trade,International Trade +428334,International Trade,International Trade +428326,International Trade,International Trade +428322,International Trade,International Trade +426038,International Trade,International Trade +426033,International Trade,International Trade +426024,International Trade,International Trade +426016,International Trade,International Trade +419855,International Trade,International Trade +419852,International Trade,International Trade +415590,International Trade,International Trade +415577,International Trade,International Trade +415565,International Trade,International Trade +415562,International Trade,International Trade +415560,International Trade,International Trade +413371,International Trade,International Trade +413363,International Trade,International Trade +413334,International Trade,International Trade +413301,International Trade,International Trade +409715,International Trade,International Trade +407837,International Trade,International Trade +407829,International Trade,International Trade +405157,International Trade,International Trade +403313,International Trade,International Trade +403307,International Trade,International Trade +395971,International Trade,International Trade +382140,International Trade,International Trade +380962,International Trade,International Trade +380959,International Trade,International Trade +377255,International Trade,International Trade +376509,International Trade,International Trade +376508,International Trade,International Trade +374774,International Trade,International Trade +371834,International Trade,International Trade +371765,International Trade,International Trade +539864,International Trade,International Trade +537254,International Trade,International Trade +535099,International Trade,International Trade +531688,International Trade,International Trade +522281,International Trade,International Trade +522268,International Trade,International Trade +522264,International Trade,International Trade +517629,International Trade,International Trade +517626,International Trade,International Trade +517524,International Trade,International Trade +515517,International Trade,International Trade +512388,International Trade,International Trade +512386,International Trade,International Trade +507972,International Trade,International Trade +507968,International Trade,International Trade +507892,International Trade,International Trade +507886,International Trade,International Trade +506418,International Trade,International Trade +505063,International Trade,International Trade +505062,International Trade,International Trade +505060,International Trade,International Trade +490541,International Trade,International Trade +490372,International Trade,International Trade +490359,International Trade,International Trade +490353,International Trade,International Trade +487331,International Trade,International Trade +479471,International Trade,International Trade +479437,International Trade,International Trade +477022,International Trade,International Trade +477008,International Trade,International Trade +464494,International Trade,International Trade +462572,International Trade,International Trade +462569,International Trade,International Trade +462568,International Trade,International Trade +161142,Defence,Defence +161141,Defence,Defence +161140,Defence,Defence +161139,Defence,Defence +160540,Defence,Defence +158243,Health,Health +157714,Health,Health +160449,Health,Health +160448,Health,Health +452257,Defence,Defence +447199,Defence,Defence +90734,Defence,Defence +87840,Defence,Defence +87837,Defence,Defence +87835,Defence,Defence +84861,Defence,Defence +152640,Defence,Defence +152639,Defence,Defence +152638,Defence,Defence +152637,Defence,Defence +117093,Defence,Defence +117090,Defence,Defence +117088,Defence,Defence +117086,Defence,Defence +107604,Defence,Defence +107603,Defence,Defence +107599,Defence,Defence +107597,Defence,Defence +107595,Defence,Defence +107594,Defence,Defence +320489,Defence,Defence +276511,Defence,Defence +272229,Defence,Defence +269752,Defence,Defence +225950,Defence,Defence +225948,Defence,Defence +200158,Defence,Defence +172852,Defence,Defence +172851,Defence,Defence +172850,Defence,Defence +172849,Defence,Defence +172845,Defence,Defence +395549,Defence,Defence +389117,Defence,Defence +388254,Defence,Defence +383257,Defence,Defence +383255,Defence,Defence +378076,Defence,Defence +378055,Defence,Defence +377494,Defence,Defence +377493,Defence,Defence +377492,Defence,Defence +377491,Defence,Defence +371647,Defence,Defence +365248,Defence,Defence +365247,Defence,Defence +365246,Defence,Defence +355887,Defence,Defence +355884,Defence,Defence +355882,Defence,Defence +355880,Defence,Defence +355879,Defence,Defence +355878,Defence,Defence +355877,Defence,Defence +355876,Defence,Defence +355874,Defence,Defence +355873,Defence,Defence +355872,Defence,Defence +355871,Defence,Defence +355844,Defence,Defence +355843,Defence,Defence +355840,Defence,Defence +355838,Defence,Defence +355837,Defence,Defence +352041,Defence,Defence +351670,Defence,Defence +351668,Defence,Defence +351664,Defence,Defence +351662,Defence,Defence +339011,Defence,Defence +331544,Defence,Defence +330872,Defence,Defence +327461,Defence,Defence +327453,Defence,Defence +320490,Defence,Defence +438274,Defence,Defence +435083,Defence,Defence +435082,Defence,Defence +428817,Defence,Defence +428814,Defence,Defence +428809,Defence,Defence +422092,Defence,Defence +419973,Defence,Defence +419969,Defence,Defence +419844,Defence,Defence +419838,Defence,Defence +419721,Defence,Defence +415887,Defence,Defence +411909,Defence,Defence +405113,Defence,Defence +541175,Defence,Defence +537232,Defence,Defence +537231,Defence,Defence +533509,Defence,Defence +533507,Defence,Defence +533500,Defence,Defence +522326,Defence,Defence +504208,Defence,Defence +497070,Defence,Defence +497066,Defence,Defence +495162,Defence,Defence +495161,Defence,Defence +486527,Defence,Defence +486525,Defence,Defence +486523,Defence,Defence +486517,Defence,Defence +483263,Defence,Defence +461896,Defence,Defence +460880,Defence,Defence +458375,Industry,Industry +458374,Industry,Industry +80498,Industry,Industry +159093,Industry,Industry +152640,Industry,Industry +152639,Industry,Industry +152638,Industry,Industry +152637,Industry,Industry +298850,Industry,Industry +438274,Industry,Industry +428821,Industry,Industry +428817,Industry,Industry +428814,Industry,Industry +419851,Industry,Industry +395549,Industry,Industry +378076,Industry,Industry +378055,Industry,Industry +377494,Industry,Industry +377493,Industry,Industry +377492,Industry,Industry +377491,Industry,Industry +371647,Industry,Industry +371536,Industry,Industry +365248,Industry,Industry +365247,Industry,Industry +365246,Industry,Industry +355887,Industry,Industry +355884,Industry,Industry +355882,Industry,Industry +355880,Industry,Industry +355879,Industry,Industry +355878,Industry,Industry +355877,Industry,Industry +355876,Industry,Industry +355874,Industry,Industry +355873,Industry,Industry +355872,Industry,Industry +355871,Industry,Industry +355844,Industry,Industry +355843,Industry,Industry +355840,Industry,Industry +355838,Industry,Industry +355837,Industry,Industry +352041,Industry,Industry +351671,Industry,Industry +351670,Industry,Industry +351664,Industry,Industry +339011,Industry,Industry +339010,Industry,Industry +330872,Industry,Industry +460880,Internal Trade,Internal Trade +435082,International Relations,International Relations +435081,International Relations,International Relations +172852,International Relations,International Relations +371536,International Relations,International Relations +351670,International Relations,International Relations +351667,International Relations,International Relations +497064,International Trade,International Trade +497063,International Trade,International Trade +107602,International Trade,International Trade +80498,International Trade,International Trade +269752,International Trade,International Trade +269751,International Trade,International Trade +399720,International Trade,International Trade +378076,International Trade,International Trade +378055,International Trade,International Trade +377494,International Trade,International Trade +377493,International Trade,International Trade +377492,International Trade,International Trade +371647,International Trade,International Trade +371536,International Trade,International Trade +358044,International Trade,International Trade +351670,International Trade,International Trade +351668,International Trade,International Trade +351667,International Trade,International Trade +327461,International Trade,International Trade +272229,International Trade,International Trade +495162,International Trade,International Trade +495161,International Trade,International Trade +488623,International Trade,International Trade +488619,International Trade,International Trade +488618,International Trade,International Trade +486517,International Trade,International Trade +483263,International Trade,International Trade +467039,International Trade,International Trade +462397,International Trade,International Trade +462396,International Trade,International Trade +460523,International Trade,International Trade +458376,International Trade,International Trade +443520,International Trade,International Trade +438276,International Trade,International Trade +438275,International Trade,International Trade +435081,International Trade,International Trade +433419,International Trade,International Trade +433416,International Trade,International Trade +428821,International Trade,International Trade +428809,International Trade,International Trade +419973,International Trade,International Trade +419969,International Trade,International Trade +525286,International Trade,International Trade +525285,International Trade,International Trade +507006,International Trade,International Trade +504208,International Trade,International Trade +504194,International Trade,International Trade +504192,International Trade,International Trade +501665,International Trade,International Trade +497070,International Trade,International Trade +497066,International Trade,International Trade +339010,Regional Development,Regional Development +330872,Regional Development,Regional Development +378076,Regional Development,Regional Development +378055,Regional Development,Regional Development +377494,Regional Development,Regional Development +377493,Regional Development,Regional Development +377492,Regional Development,Regional Development +377491,Regional Development,Regional Development +351670,Regional Development,Regional Development +351664,Regional Development,Regional Development +351664,Small Business,Small Business +351662,Small Business,Small Business +533268,Health,Health +532600,Health,Health +188027,Health,Health +174284,Health,Health +148376,Health,Health +146114,Health,Health +271751,Health,Health +271750,Health,Health +271749,Health,Health +245569,Health,Health +238810,Health,Health +238809,Health,Health +235089,Health,Health +224988,Health,Health +224987,Health,Health +218308,Health,Health +218307,Health,Health +211351,Health,Health +211349,Health,Health +211348,Health,Health +211347,Health,Health +200108,Health,Health +192471,Health,Health +192469,Health,Health +191604,Health,Health +191603,Health,Health +191599,Health,Health +191597,Health,Health +191593,Health,Health +188448,Health,Health +188045,Health,Health +188028,Health,Health +393324,Health,Health +393323,Health,Health +392304,Health,Health +386667,Health,Health +386663,Health,Health +386661,Health,Health +380295,Health,Health +380294,Health,Health +376874,Health,Health +376870,Health,Health +374512,Health,Health +374511,Health,Health +374510,Health,Health +374508,Health,Health +371779,Health,Health +352962,Health,Health +347353,Health,Health +347351,Health,Health +342997,Health,Health +338852,Health,Health +338851,Health,Health +338850,Health,Health +338849,Health,Health +333534,Health,Health +333533,Health,Health +327994,Health,Health +327992,Health,Health +327991,Health,Health +530327,Health,Health +526870,Health,Health +521145,Health,Health +521144,Health,Health +516377,Health,Health +509471,Health,Health +509226,Health,Health +506891,Health,Health +506002,Health,Health +503795,Health,Health +503794,Health,Health +503792,Health,Health +503791,Health,Health +444401,Health,Health +422901,Health,Health +414874,Health,Health +414194,Health,Health +414193,Health,Health +414190,Health,Health +414188,Health,Health +414187,Health,Health +407186,Health,Health +407185,Health,Health +545249,Health,Health +545248,Health,Health +545247,Health,Health +540821,Health,Health +540434,Health,Health +539492,Health,Health +536285,Health,Health +536284,Health,Health +536040,Health,Health +533273,Health,Health +533272,Health,Health +533271,Health,Health +533270,Health,Health +503792,Industry,Industry +503791,Industry,Industry +188448,Industry,Industry +158172,Industry,Industry +386667,Industry,Industry +380295,Industry,Industry +380294,Industry,Industry +374511,Industry,Industry +374510,Industry,Industry +374508,Industry,Industry +352962,Industry,Industry +444401,Industry,Industry +422901,Industry,Industry +414874,Industry,Industry +414194,Industry,Industry +414193,Industry,Industry +407186,Industry,Industry +407185,Industry,Industry +393324,Industry,Industry +393323,Industry,Industry +545249,Industry,Industry +545248,Industry,Industry +545247,Industry,Industry +540434,Industry,Industry +539492,Industry,Industry +536285,Industry,Industry +536284,Industry,Industry +536040,Industry,Industry +533273,Industry,Industry +533272,Industry,Industry +533271,Industry,Industry +533269,Industry,Industry +533268,Industry,Industry +532600,Industry,Industry +530329,Industry,Industry +530327,Industry,Industry +526870,Industry,Industry +521145,Industry,Industry +521144,Industry,Industry +509471,Industry,Industry +509226,Industry,Industry +506891,Industry,Industry +506002,Industry,Industry +503795,Industry,Industry +380295,Intellectual Property,Intellectual Property +380294,Intellectual Property,Intellectual Property +224988,Intellectual Property,Intellectual Property +211352,Intellectual Property,Intellectual Property +211350,Intellectual Property,Intellectual Property +191603,Intellectual Property,Intellectual Property +191599,Intellectual Property,Intellectual Property +191597,Intellectual Property,Intellectual Property +191593,Intellectual Property,Intellectual Property +188448,Intellectual Property,Intellectual Property +188028,Intellectual Property,Intellectual Property +169186,Intellectual Property,Intellectual Property +169185,Intellectual Property,Intellectual Property +158172,Intellectual Property,Intellectual Property +352962,Intellectual Property,Intellectual Property +235089,Intellectual Property,Intellectual Property +422901,Taxation and Finance,Taxation and Finance +132675,Government Procurement,Government Procurement +100864,Government Procurement,Government Procurement +88958,Government Procurement,Government Procurement +403953,Agriculture,Agriculture +392769,Agriculture,Agriculture +97934,Agriculture,Agriculture +89895,Agriculture,Agriculture +77777,Agriculture,Agriculture +74194,Agriculture,Agriculture +111214,Agriculture,Agriculture +105054,Agriculture,Agriculture +189674,Agriculture,Agriculture +168161,Agriculture,Agriculture +159236,Agriculture,Agriculture +273029,Agriculture,Agriculture +251030,Agriculture,Agriculture +251029,Agriculture,Agriculture +230809,Agriculture,Agriculture +386763,Agriculture,Agriculture +380963,Agriculture,Agriculture +380961,Agriculture,Agriculture +375010,Agriculture,Agriculture +375006,Agriculture,Agriculture +354220,Agriculture,Agriculture +392769,Internal Trade,Internal Trade +251029,International Trade,International Trade +230809,International Trade,International Trade +89895,International Trade,International Trade +77777,International Trade,International Trade +111214,International Trade,International Trade +105054,International Trade,International Trade +97934,International Trade,International Trade +189674,International Trade,International Trade +165624,International Trade,International Trade +159236,International Trade,International Trade +473174,Agriculture,Agriculture +473172,Agriculture,Agriculture +123514,Agriculture,Agriculture +94994,Agriculture,Agriculture +213347,Agriculture,Agriculture +187424,Agriculture,Agriculture +167328,Agriculture,Agriculture +158178,Agriculture,Agriculture +158175,Agriculture,Agriculture +153555,Agriculture,Agriculture +150375,Agriculture,Agriculture +150372,Agriculture,Agriculture +128559,Agriculture,Agriculture +386776,Agriculture,Agriculture +386775,Agriculture,Agriculture +386503,Agriculture,Agriculture +369657,Agriculture,Agriculture +369655,Agriculture,Agriculture +369654,Agriculture,Agriculture +369652,Agriculture,Agriculture +369649,Agriculture,Agriculture +369648,Agriculture,Agriculture +362923,Agriculture,Agriculture +362922,Agriculture,Agriculture +362666,Agriculture,Agriculture +362665,Agriculture,Agriculture +347065,Agriculture,Agriculture +347064,Agriculture,Agriculture +338988,Agriculture,Agriculture +338987,Agriculture,Agriculture +338986,Agriculture,Agriculture +338985,Agriculture,Agriculture +301214,Agriculture,Agriculture +299242,Agriculture,Agriculture +299241,Agriculture,Agriculture +299240,Agriculture,Agriculture +299236,Agriculture,Agriculture +298769,Agriculture,Agriculture +291770,Agriculture,Agriculture +272510,Agriculture,Agriculture +271289,Agriculture,Agriculture +270996,Agriculture,Agriculture +270989,Agriculture,Agriculture +237949,Agriculture,Agriculture +224150,Agriculture,Agriculture +473171,Agriculture,Agriculture +473169,Agriculture,Agriculture +473168,Agriculture,Agriculture +473165,Agriculture,Agriculture +473163,Agriculture,Agriculture +473161,Agriculture,Agriculture +473157,Agriculture,Agriculture +472885,Agriculture,Agriculture +472881,Agriculture,Agriculture +472879,Agriculture,Agriculture +472877,Agriculture,Agriculture +472874,Agriculture,Agriculture +472871,Agriculture,Agriculture +472869,Agriculture,Agriculture +472864,Agriculture,Agriculture +470423,Agriculture,Agriculture +470422,Agriculture,Agriculture +470420,Agriculture,Agriculture +470417,Agriculture,Agriculture +470416,Agriculture,Agriculture +470414,Agriculture,Agriculture +470412,Agriculture,Agriculture +470410,Agriculture,Agriculture +470403,Agriculture,Agriculture +470399,Agriculture,Agriculture +470390,Agriculture,Agriculture +469716,Agriculture,Agriculture +469345,Agriculture,Agriculture +469344,Agriculture,Agriculture +469090,Agriculture,Agriculture +464444,Agriculture,Agriculture +464442,Agriculture,Agriculture +464440,Agriculture,Agriculture +464439,Agriculture,Agriculture +460312,Agriculture,Agriculture +460309,Agriculture,Agriculture +460308,Agriculture,Agriculture +460307,Agriculture,Agriculture +459274,Agriculture,Agriculture +459070,Agriculture,Agriculture +459038,Agriculture,Agriculture +459026,Agriculture,Agriculture +457989,Agriculture,Agriculture +457974,Agriculture,Agriculture +450523,Agriculture,Agriculture +444598,Agriculture,Agriculture +444596,Agriculture,Agriculture +444595,Agriculture,Agriculture +444594,Agriculture,Agriculture +444261,Agriculture,Agriculture +444243,Agriculture,Agriculture +420406,Agriculture,Agriculture +419049,Agriculture,Agriculture +534239,Agriculture,Agriculture +530303,Agriculture,Agriculture +527166,Agriculture,Agriculture +523499,Agriculture,Agriculture +520825,Agriculture,Agriculture +518681,Agriculture,Agriculture +503474,Agriculture,Agriculture +503472,Agriculture,Agriculture +500525,Agriculture,Agriculture +500524,Agriculture,Agriculture +496723,Agriculture,Agriculture +496717,Agriculture,Agriculture +496716,Agriculture,Agriculture +496715,Agriculture,Agriculture +496714,Agriculture,Agriculture +496713,Agriculture,Agriculture +496712,Agriculture,Agriculture +496711,Agriculture,Agriculture +496709,Agriculture,Agriculture +492428,Agriculture,Agriculture +492427,Agriculture,Agriculture +492426,Agriculture,Agriculture +492425,Agriculture,Agriculture +492423,Agriculture,Agriculture +492411,Agriculture,Agriculture +489656,Agriculture,Agriculture +489653,Agriculture,Agriculture +489650,Agriculture,Agriculture +489649,Agriculture,Agriculture +487989,Agriculture,Agriculture +487988,Agriculture,Agriculture +487986,Agriculture,Agriculture +487984,Agriculture,Agriculture +487983,Agriculture,Agriculture +487979,Agriculture,Agriculture +487978,Agriculture,Agriculture +487976,Agriculture,Agriculture +487975,Agriculture,Agriculture +484025,Agriculture,Agriculture +484023,Agriculture,Agriculture +484020,Agriculture,Agriculture +484014,Agriculture,Agriculture +484007,Agriculture,Agriculture +481636,Agriculture,Agriculture +479314,Agriculture,Agriculture +479313,Agriculture,Agriculture +479306,Agriculture,Agriculture +479305,Agriculture,Agriculture +477057,Agriculture,Agriculture +477056,Agriculture,Agriculture +477052,Agriculture,Agriculture +477042,Agriculture,Agriculture +477040,Agriculture,Agriculture +477038,Agriculture,Agriculture +477036,Agriculture,Agriculture +477035,Agriculture,Agriculture +477032,Agriculture,Agriculture +474724,Agriculture,Agriculture +474723,Agriculture,Agriculture +474722,Agriculture,Agriculture +474721,Agriculture,Agriculture +474719,Agriculture,Agriculture +474718,Agriculture,Agriculture +474717,Agriculture,Agriculture +474716,Agriculture,Agriculture +474714,Agriculture,Agriculture +474711,Agriculture,Agriculture +474709,Agriculture,Agriculture +474706,Agriculture,Agriculture +474705,Agriculture,Agriculture +473180,Agriculture,Agriculture +473177,Agriculture,Agriculture +473176,Agriculture,Agriculture +270996,Employment and Training,Employment and Training +270989,Employment and Training,Employment and Training +272510,Employment and Training,Employment and Training +527804,Industry,Industry +527065,Industry,Industry +524646,Industry,Industry +523499,Industry,Industry +520825,Industry,Industry +509625,Industry,Industry +509624,Industry,Industry +496715,Industry,Industry +496714,Industry,Industry +473175,Industry,Industry +473171,Industry,Industry +473169,Industry,Industry +473163,Industry,Industry +472885,Industry,Industry +472877,Industry,Industry +464444,Industry,Industry +420406,Industry,Industry +299236,Internal Trade,Internal Trade +459026,International Trade,International Trade +419049,International Trade,International Trade +301214,International Trade,International Trade +299241,International Trade,International Trade +299240,International Trade,International Trade +298769,International Trade,International Trade +237949,International Trade,International Trade +213347,International Trade,International Trade +530303,International Trade,International Trade +527065,International Trade,International Trade +523499,International Trade,International Trade +518681,International Trade,International Trade +492428,International Trade,International Trade +484025,International Trade,International Trade +477045,International Trade,International Trade +473184,International Trade,International Trade +470390,International Trade,International Trade +459274,International Trade,International Trade +459070,International Trade,International Trade +444022,Agriculture,Agriculture +441783,Agriculture,Agriculture +165039,Agriculture,Agriculture +165038,Agriculture,Agriculture +165037,Agriculture,Agriculture +176771,Agriculture,Agriculture +176770,Agriculture,Agriculture +391212,Agriculture,Agriculture +391210,Agriculture,Agriculture +388132,Agriculture,Agriculture +388130,Agriculture,Agriculture +388127,Agriculture,Agriculture +388125,Agriculture,Agriculture +385876,Agriculture,Agriculture +381191,Agriculture,Agriculture +379781,Agriculture,Agriculture +379778,Agriculture,Agriculture +379776,Agriculture,Agriculture +376858,Agriculture,Agriculture +376850,Agriculture,Agriculture +376845,Agriculture,Agriculture +376843,Agriculture,Agriculture +376835,Agriculture,Agriculture +376828,Agriculture,Agriculture +374762,Agriculture,Agriculture +374759,Agriculture,Agriculture +374753,Agriculture,Agriculture +367263,Agriculture,Agriculture +367262,Agriculture,Agriculture +364984,Agriculture,Agriculture +364983,Agriculture,Agriculture +364982,Agriculture,Agriculture +363883,Agriculture,Agriculture +363882,Agriculture,Agriculture +361825,Agriculture,Agriculture +361824,Agriculture,Agriculture +360725,Agriculture,Agriculture +348083,Agriculture,Agriculture +348082,Agriculture,Agriculture +348081,Agriculture,Agriculture +348078,Agriculture,Agriculture +441782,Agriculture,Agriculture +441780,Agriculture,Agriculture +441779,Agriculture,Agriculture +439091,Agriculture,Agriculture +436238,Agriculture,Agriculture +436237,Agriculture,Agriculture +436236,Agriculture,Agriculture +436235,Agriculture,Agriculture +436234,Agriculture,Agriculture +436233,Agriculture,Agriculture +436232,Agriculture,Agriculture +436231,Agriculture,Agriculture +436230,Agriculture,Agriculture +436229,Agriculture,Agriculture +436228,Agriculture,Agriculture +436227,Agriculture,Agriculture +436226,Agriculture,Agriculture +436225,Agriculture,Agriculture +436224,Agriculture,Agriculture +436223,Agriculture,Agriculture +436222,Agriculture,Agriculture +436221,Agriculture,Agriculture +436220,Agriculture,Agriculture +436219,Agriculture,Agriculture +436218,Agriculture,Agriculture +436217,Agriculture,Agriculture +436216,Agriculture,Agriculture +436215,Agriculture,Agriculture +436214,Agriculture,Agriculture +436211,Agriculture,Agriculture +436210,Agriculture,Agriculture +436209,Agriculture,Agriculture +436208,Agriculture,Agriculture +436207,Agriculture,Agriculture +436206,Agriculture,Agriculture +432542,Agriculture,Agriculture +429629,Agriculture,Agriculture +423854,Agriculture,Agriculture +423851,Agriculture,Agriculture +422307,Agriculture,Agriculture +419564,Agriculture,Agriculture +419563,Agriculture,Agriculture +419562,Agriculture,Agriculture +419560,Agriculture,Agriculture +417079,Agriculture,Agriculture +417077,Agriculture,Agriculture +412769,Agriculture,Agriculture +412762,Agriculture,Agriculture +412759,Agriculture,Agriculture +412754,Agriculture,Agriculture +412751,Agriculture,Agriculture +412744,Agriculture,Agriculture +412739,Agriculture,Agriculture +412735,Agriculture,Agriculture +412730,Agriculture,Agriculture +412718,Agriculture,Agriculture +412714,Agriculture,Agriculture +412711,Agriculture,Agriculture +412709,Agriculture,Agriculture +412708,Agriculture,Agriculture +412706,Agriculture,Agriculture +412702,Agriculture,Agriculture +412694,Agriculture,Agriculture +410253,Agriculture,Agriculture +410252,Agriculture,Agriculture +410250,Agriculture,Agriculture +406971,Agriculture,Agriculture +400544,Agriculture,Agriculture +400541,Agriculture,Agriculture +400538,Agriculture,Agriculture +398800,Agriculture,Agriculture +398797,Agriculture,Agriculture +396901,Agriculture,Agriculture +391228,Agriculture,Agriculture +391227,Agriculture,Agriculture +391224,Agriculture,Agriculture +391221,Agriculture,Agriculture +391219,Agriculture,Agriculture +391216,Agriculture,Agriculture +391215,Agriculture,Agriculture +391214,Agriculture,Agriculture +391213,Agriculture,Agriculture +543420,Agriculture,Agriculture +535901,Agriculture,Agriculture +526790,Agriculture,Agriculture +522977,Agriculture,Agriculture +498763,Agriculture,Agriculture +493353,Agriculture,Agriculture +467712,Agriculture,Agriculture +461620,Agriculture,Agriculture +461073,Agriculture,Agriculture +458033,Agriculture,Agriculture +457631,Agriculture,Agriculture +457626,Agriculture,Agriculture +455445,Agriculture,Agriculture +455436,Agriculture,Agriculture +450084,Agriculture,Agriculture +450083,Agriculture,Agriculture +450080,Agriculture,Agriculture +448300,Agriculture,Agriculture +445501,Agriculture,Agriculture +445500,Agriculture,Agriculture +444030,Agriculture,Agriculture +444027,Agriculture,Agriculture +398797,Consumer Issues,Consumer Issues +391228,Consumer Issues,Consumer Issues +391227,Consumer Issues,Consumer Issues +391224,Consumer Issues,Consumer Issues +391221,Consumer Issues,Consumer Issues +391219,Consumer Issues,Consumer Issues +391216,Consumer Issues,Consumer Issues +391215,Consumer Issues,Consumer Issues +391214,Consumer Issues,Consumer Issues +391213,Consumer Issues,Consumer Issues +391212,Consumer Issues,Consumer Issues +391210,Consumer Issues,Consumer Issues +385876,Consumer Issues,Consumer Issues +376858,Consumer Issues,Consumer Issues +376850,Consumer Issues,Consumer Issues +376843,Consumer Issues,Consumer Issues +376835,Consumer Issues,Consumer Issues +376828,Consumer Issues,Consumer Issues +361825,Consumer Issues,Consumer Issues +419562,Environment,Environment +419560,Environment,Environment +400544,Environment,Environment +400541,Environment,Environment +400538,Environment,Environment +388132,Environment,Environment +388130,Environment,Environment +388127,Environment,Environment +388125,Environment,Environment +461073,Environment,Environment +458033,Environment,Environment +445501,Environment,Environment +445500,Environment,Environment +432542,Environment,Environment +441779,Industry,Industry +439091,Industry,Industry +400538,Industry,Industry +398800,Industry,Industry +398797,Industry,Industry +396901,Industry,Industry +391228,Industry,Industry +391227,Industry,Industry +391224,Industry,Industry +391221,Industry,Industry +391219,Industry,Industry +391216,Industry,Industry +391215,Industry,Industry +391214,Industry,Industry +391213,Industry,Industry +391212,Industry,Industry +391210,Industry,Industry +388132,Industry,Industry +388130,Industry,Industry +388127,Industry,Industry +388125,Industry,Industry +385876,Industry,Industry +379781,Industry,Industry +376858,Industry,Industry +376850,Industry,Industry +376843,Industry,Industry +376835,Industry,Industry +376828,Industry,Industry +374762,Industry,Industry +374759,Industry,Industry +374753,Industry,Industry +360726,Industry,Industry +436238,Industry,Industry +436237,Industry,Industry +436236,Industry,Industry +436235,Industry,Industry +436234,Industry,Industry +436233,Industry,Industry +436232,Industry,Industry +436231,Industry,Industry +436230,Industry,Industry +436229,Industry,Industry +436228,Industry,Industry +436227,Industry,Industry +436226,Industry,Industry +436225,Industry,Industry +436224,Industry,Industry +436223,Industry,Industry +436222,Industry,Industry +436221,Industry,Industry +436220,Industry,Industry +436219,Industry,Industry +436218,Industry,Industry +436217,Industry,Industry +436216,Industry,Industry +436215,Industry,Industry +436214,Industry,Industry +436211,Industry,Industry +436210,Industry,Industry +436209,Industry,Industry +436208,Industry,Industry +436207,Industry,Industry +436206,Industry,Industry +432542,Industry,Industry +429629,Industry,Industry +423854,Industry,Industry +423851,Industry,Industry +422307,Industry,Industry +419564,Industry,Industry +419563,Industry,Industry +419562,Industry,Industry +419560,Industry,Industry +417079,Industry,Industry +417077,Industry,Industry +412769,Industry,Industry +412762,Industry,Industry +412759,Industry,Industry +412754,Industry,Industry +412751,Industry,Industry +412744,Industry,Industry +412739,Industry,Industry +412735,Industry,Industry +412730,Industry,Industry +412718,Industry,Industry +412714,Industry,Industry +412711,Industry,Industry +412709,Industry,Industry +412708,Industry,Industry +412706,Industry,Industry +412702,Industry,Industry +412694,Industry,Industry +410253,Industry,Industry +410252,Industry,Industry +410250,Industry,Industry +406971,Industry,Industry +400544,Industry,Industry +400541,Industry,Industry +498763,Industry,Industry +467712,Industry,Industry +461620,Industry,Industry +461073,Industry,Industry +458033,Industry,Industry +457631,Industry,Industry +457626,Industry,Industry +455445,Industry,Industry +455436,Industry,Industry +448300,Industry,Industry +445501,Industry,Industry +445500,Industry,Industry +444030,Industry,Industry +444027,Industry,Industry +444023,Industry,Industry +444022,Industry,Industry +441783,Industry,Industry +441782,Industry,Industry +176770,Internal Trade,Internal Trade +444022,International Relations,International Relations +522977,International Trade,International Trade +461620,International Trade,International Trade +145910,International Trade,International Trade +176770,International Trade,International Trade +388132,International Trade,International Trade +388130,International Trade,International Trade +388127,International Trade,International Trade +388125,International Trade,International Trade +379781,International Trade,International Trade +379778,International Trade,International Trade +374759,International Trade,International Trade +363882,International Trade,International Trade +360726,International Trade,International Trade +448687,Agriculture,Agriculture +440364,Agriculture,Agriculture +408052,Agriculture,Agriculture +388119,Agriculture,Agriculture +382874,Agriculture,Agriculture +382873,Agriculture,Agriculture +513561,Agriculture,Agriculture +513560,Agriculture,Agriculture +484853,Agriculture,Agriculture +484851,Agriculture,Agriculture +484850,Agriculture,Agriculture +480881,Agriculture,Agriculture +480880,Agriculture,Agriculture +480879,Agriculture,Agriculture +471275,Agriculture,Agriculture +465195,Agriculture,Agriculture +458628,Agriculture,Agriculture +458627,Agriculture,Agriculture +458626,Agriculture,Agriculture +543488,Internal Trade,Internal Trade +539608,Internal Trade,Internal Trade +77716,Internal Trade,Internal Trade +524204,Internal Trade,Internal Trade +468715,International Trade,International Trade +465195,International Trade,International Trade +76045,International Trade,International Trade +413561,International Trade,International Trade +408052,International Trade,International Trade +543488,International Trade,International Trade +539608,International Trade,International Trade +533482,International Trade,International Trade +513561,International Trade,International Trade +513560,International Trade,International Trade +488312,International Trade,International Trade +488310,International Trade,International Trade +484848,International Trade,International Trade +482678,International Trade,International Trade +482677,International Trade,International Trade +480881,International Trade,International Trade +480880,International Trade,International Trade +480879,International Trade,International Trade +130534,Government Procurement,Government Procurement +130534,Health,Health +151848,Taxation and Finance,Taxation and Finance +263109,Taxation and Finance,Taxation and Finance +132075,Taxation and Finance,Taxation and Finance +132074,Taxation and Finance,Taxation and Finance +114714,Taxation and Finance,Taxation and Finance +153623,Taxation and Finance,Taxation and Finance +153622,Taxation and Finance,Taxation and Finance +437762,Transportation,Transportation +437757,Transportation,Transportation +114714,Transportation,Transportation +83654,Transportation,Transportation +79176,Transportation,Transportation +79175,Transportation,Transportation +167079,Transportation,Transportation +167077,Transportation,Transportation +153623,Transportation,Transportation +153622,Transportation,Transportation +151851,Transportation,Transportation +151848,Transportation,Transportation +132075,Transportation,Transportation +132074,Transportation,Transportation +342762,Transportation,Transportation +322469,Transportation,Transportation +312329,Transportation,Transportation +271429,Transportation,Transportation +263109,Transportation,Transportation +248650,Transportation,Transportation +437754,Transportation,Transportation +434200,Transportation,Transportation +434199,Transportation,Transportation +433049,Transportation,Transportation +408508,Transportation,Transportation +408507,Transportation,Transportation +408316,Transportation,Transportation +400176,Transportation,Transportation +399497,Transportation,Transportation +399443,Transportation,Transportation +399322,Transportation,Transportation +393298,Transportation,Transportation +381027,Transportation,Transportation +367663,Transportation,Transportation +367662,Transportation,Transportation +365226,Transportation,Transportation +463681,Transportation,Transportation +463680,Transportation,Transportation +463674,Transportation,Transportation +460367,Transportation,Transportation +460366,Transportation,Transportation +460365,Transportation,Transportation +459065,Transportation,Transportation +454093,Transportation,Transportation +446432,Transportation,Transportation +437777,Transportation,Transportation +437771,Transportation,Transportation +76699,Energy,Energy +145758,Energy,Energy +94575,Energy,Energy +76699,Environment,Environment +145760,Environment,Environment +91534,Fisheries,Fisheries +76699,Fisheries,Fisheries +106374,Fisheries,Fisheries +91534,Industry,Industry +442334,Education,Education +442265,Education,Education +150370,Education,Education +254311,Education,Education +467598,Education,Education +464403,Education,Education +464401,Education,Education +461853,Education,Education +451023,Education,Education +371140,Employment and Training,Employment and Training +542580,Employment and Training,Employment and Training +148336,Employment and Training,Employment and Training +273613,Employment and Training,Employment and Training +273606,Employment and Training,Employment and Training +269699,Employment and Training,Employment and Training +269618,Employment and Training,Employment and Training +261632,Employment and Training,Employment and Training +261619,Employment and Training,Employment and Training +261618,Employment and Training,Employment and Training +261616,Employment and Training,Employment and Training +261615,Employment and Training,Employment and Training +261613,Employment and Training,Employment and Training +261611,Employment and Training,Employment and Training +254314,Employment and Training,Employment and Training +244557,Employment and Training,Employment and Training +244555,Employment and Training,Employment and Training +244554,Employment and Training,Employment and Training +244552,Employment and Training,Employment and Training +244551,Employment and Training,Employment and Training +244549,Employment and Training,Employment and Training +241197,Employment and Training,Employment and Training +241189,Employment and Training,Employment and Training +236635,Employment and Training,Employment and Training +236630,Employment and Training,Employment and Training +218555,Employment and Training,Employment and Training +218550,Employment and Training,Employment and Training +218549,Employment and Training,Employment and Training +210210,Employment and Training,Employment and Training +207540,Employment and Training,Employment and Training +207535,Employment and Training,Employment and Training +338181,Employment and Training,Employment and Training +338180,Employment and Training,Employment and Training +338179,Employment and Training,Employment and Training +338178,Employment and Training,Employment and Training +338177,Employment and Training,Employment and Training +338176,Employment and Training,Employment and Training +338175,Employment and Training,Employment and Training +338174,Employment and Training,Employment and Training +338173,Employment and Training,Employment and Training +338172,Employment and Training,Employment and Training +338171,Employment and Training,Employment and Training +338170,Employment and Training,Employment and Training +338169,Employment and Training,Employment and Training +338130,Employment and Training,Employment and Training +338129,Employment and Training,Employment and Training +338128,Employment and Training,Employment and Training +338124,Employment and Training,Employment and Training +338106,Employment and Training,Employment and Training +338104,Employment and Training,Employment and Training +337584,Employment and Training,Employment and Training +337583,Employment and Training,Employment and Training +337582,Employment and Training,Employment and Training +337581,Employment and Training,Employment and Training +337576,Employment and Training,Employment and Training +337575,Employment and Training,Employment and Training +337574,Employment and Training,Employment and Training +337572,Employment and Training,Employment and Training +337571,Employment and Training,Employment and Training +337570,Employment and Training,Employment and Training +337569,Employment and Training,Employment and Training +337568,Employment and Training,Employment and Training +337567,Employment and Training,Employment and Training +337566,Employment and Training,Employment and Training +337565,Employment and Training,Employment and Training +337559,Employment and Training,Employment and Training +337558,Employment and Training,Employment and Training +337556,Employment and Training,Employment and Training +337555,Employment and Training,Employment and Training +337553,Employment and Training,Employment and Training +337552,Employment and Training,Employment and Training +337551,Employment and Training,Employment and Training +337550,Employment and Training,Employment and Training +337512,Employment and Training,Employment and Training +331571,Employment and Training,Employment and Training +327572,Employment and Training,Employment and Training +325130,Employment and Training,Employment and Training +322332,Employment and Training,Employment and Training +318044,Employment and Training,Employment and Training +318043,Employment and Training,Employment and Training +318036,Employment and Training,Employment and Training +313263,Employment and Training,Employment and Training +313148,Employment and Training,Employment and Training +313130,Employment and Training,Employment and Training +302490,Employment and Training,Employment and Training +302471,Employment and Training,Employment and Training +302469,Employment and Training,Employment and Training +291449,Employment and Training,Employment and Training +282391,Employment and Training,Employment and Training +277405,Employment and Training,Employment and Training +277401,Employment and Training,Employment and Training +277361,Employment and Training,Employment and Training +273616,Employment and Training,Employment and Training +273614,Employment and Training,Employment and Training +371139,Employment and Training,Employment and Training +371138,Employment and Training,Employment and Training +371137,Employment and Training,Employment and Training +371135,Employment and Training,Employment and Training +371134,Employment and Training,Employment and Training +371132,Employment and Training,Employment and Training +371131,Employment and Training,Employment and Training +371130,Employment and Training,Employment and Training +371129,Employment and Training,Employment and Training +371127,Employment and Training,Employment and Training +371126,Employment and Training,Employment and Training +371125,Employment and Training,Employment and Training +371124,Employment and Training,Employment and Training +371123,Employment and Training,Employment and Training +371101,Employment and Training,Employment and Training +371100,Employment and Training,Employment and Training +371099,Employment and Training,Employment and Training +371098,Employment and Training,Employment and Training +371096,Employment and Training,Employment and Training +371094,Employment and Training,Employment and Training +371093,Employment and Training,Employment and Training +371091,Employment and Training,Employment and Training +371090,Employment and Training,Employment and Training +371086,Employment and Training,Employment and Training +371084,Employment and Training,Employment and Training +371078,Employment and Training,Employment and Training +371074,Employment and Training,Employment and Training +371070,Employment and Training,Employment and Training +371069,Employment and Training,Employment and Training +371067,Employment and Training,Employment and Training +371066,Employment and Training,Employment and Training +371065,Employment and Training,Employment and Training +371064,Employment and Training,Employment and Training +371062,Employment and Training,Employment and Training +371061,Employment and Training,Employment and Training +371059,Employment and Training,Employment and Training +371057,Employment and Training,Employment and Training +371055,Employment and Training,Employment and Training +371054,Employment and Training,Employment and Training +371053,Employment and Training,Employment and Training +371051,Employment and Training,Employment and Training +371036,Employment and Training,Employment and Training +371035,Employment and Training,Employment and Training +371034,Employment and Training,Employment and Training +371033,Employment and Training,Employment and Training +371032,Employment and Training,Employment and Training +371030,Employment and Training,Employment and Training +371029,Employment and Training,Employment and Training +371028,Employment and Training,Employment and Training +371027,Employment and Training,Employment and Training +371026,Employment and Training,Employment and Training +371025,Employment and Training,Employment and Training +371024,Employment and Training,Employment and Training +371023,Employment and Training,Employment and Training +371022,Employment and Training,Employment and Training +371021,Employment and Training,Employment and Training +371020,Employment and Training,Employment and Training +371019,Employment and Training,Employment and Training +371018,Employment and Training,Employment and Training +371017,Employment and Training,Employment and Training +371016,Employment and Training,Employment and Training +371015,Employment and Training,Employment and Training +371014,Employment and Training,Employment and Training +371012,Employment and Training,Employment and Training +371011,Employment and Training,Employment and Training +371010,Employment and Training,Employment and Training +371009,Employment and Training,Employment and Training +371007,Employment and Training,Employment and Training +371005,Employment and Training,Employment and Training +371004,Employment and Training,Employment and Training +371003,Employment and Training,Employment and Training +371001,Employment and Training,Employment and Training +370998,Employment and Training,Employment and Training +370997,Employment and Training,Employment and Training +370992,Employment and Training,Employment and Training +370988,Employment and Training,Employment and Training +370986,Employment and Training,Employment and Training +370972,Employment and Training,Employment and Training +370965,Employment and Training,Employment and Training +369557,Employment and Training,Employment and Training +358286,Employment and Training,Employment and Training +356515,Employment and Training,Employment and Training +356507,Employment and Training,Employment and Training +351596,Employment and Training,Employment and Training +338565,Employment and Training,Employment and Training +338562,Employment and Training,Employment and Training +338561,Employment and Training,Employment and Training +338537,Employment and Training,Employment and Training +338535,Employment and Training,Employment and Training +338534,Employment and Training,Employment and Training +338533,Employment and Training,Employment and Training +338529,Employment and Training,Employment and Training +338526,Employment and Training,Employment and Training +338523,Employment and Training,Employment and Training +338521,Employment and Training,Employment and Training +338519,Employment and Training,Employment and Training +338516,Employment and Training,Employment and Training +338515,Employment and Training,Employment and Training +338513,Employment and Training,Employment and Training +338510,Employment and Training,Employment and Training +338467,Employment and Training,Employment and Training +338466,Employment and Training,Employment and Training +338465,Employment and Training,Employment and Training +338464,Employment and Training,Employment and Training +338463,Employment and Training,Employment and Training +338462,Employment and Training,Employment and Training +338461,Employment and Training,Employment and Training +338460,Employment and Training,Employment and Training +338459,Employment and Training,Employment and Training +338457,Employment and Training,Employment and Training +338456,Employment and Training,Employment and Training +338364,Employment and Training,Employment and Training +338361,Employment and Training,Employment and Training +338348,Employment and Training,Employment and Training +338347,Employment and Training,Employment and Training +338346,Employment and Training,Employment and Training +338345,Employment and Training,Employment and Training +338343,Employment and Training,Employment and Training +338332,Employment and Training,Employment and Training +338330,Employment and Training,Employment and Training +338327,Employment and Training,Employment and Training +338326,Employment and Training,Employment and Training +338325,Employment and Training,Employment and Training +338324,Employment and Training,Employment and Training +338189,Employment and Training,Employment and Training +338188,Employment and Training,Employment and Training +338187,Employment and Training,Employment and Training +338186,Employment and Training,Employment and Training +338185,Employment and Training,Employment and Training +338184,Employment and Training,Employment and Training +338183,Employment and Training,Employment and Training +338182,Employment and Training,Employment and Training +531338,Employment and Training,Employment and Training +529785,Employment and Training,Employment and Training +526023,Employment and Training,Employment and Training +526021,Employment and Training,Employment and Training +517800,Employment and Training,Employment and Training +513700,Employment and Training,Employment and Training +512953,Employment and Training,Employment and Training +512952,Employment and Training,Employment and Training +512951,Employment and Training,Employment and Training +496358,Employment and Training,Employment and Training +487184,Employment and Training,Employment and Training +484151,Employment and Training,Employment and Training +484149,Employment and Training,Employment and Training +479756,Employment and Training,Employment and Training +475320,Employment and Training,Employment and Training +475318,Employment and Training,Employment and Training +467598,Employment and Training,Employment and Training +464403,Employment and Training,Employment and Training +464401,Employment and Training,Employment and Training +461853,Employment and Training,Employment and Training +457092,Employment and Training,Employment and Training +457078,Employment and Training,Employment and Training +451022,Employment and Training,Employment and Training +449202,Employment and Training,Employment and Training +449201,Employment and Training,Employment and Training +442352,Employment and Training,Employment and Training +442334,Employment and Training,Employment and Training +442265,Employment and Training,Employment and Training +412276,Employment and Training,Employment and Training +412274,Employment and Training,Employment and Training +412270,Employment and Training,Employment and Training +412267,Employment and Training,Employment and Training +412264,Employment and Training,Employment and Training +412263,Employment and Training,Employment and Training +412259,Employment and Training,Employment and Training +412257,Employment and Training,Employment and Training +412245,Employment and Training,Employment and Training +412241,Employment and Training,Employment and Training +412239,Employment and Training,Employment and Training +412238,Employment and Training,Employment and Training +412236,Employment and Training,Employment and Training +412232,Employment and Training,Employment and Training +412228,Employment and Training,Employment and Training +412225,Employment and Training,Employment and Training +412224,Employment and Training,Employment and Training +412221,Employment and Training,Employment and Training +412219,Employment and Training,Employment and Training +412217,Employment and Training,Employment and Training +412216,Employment and Training,Employment and Training +412214,Employment and Training,Employment and Training +412212,Employment and Training,Employment and Training +412210,Employment and Training,Employment and Training +412208,Employment and Training,Employment and Training +412202,Employment and Training,Employment and Training +412201,Employment and Training,Employment and Training +412188,Employment and Training,Employment and Training +412187,Employment and Training,Employment and Training +412185,Employment and Training,Employment and Training +412184,Employment and Training,Employment and Training +412183,Employment and Training,Employment and Training +412182,Employment and Training,Employment and Training +412181,Employment and Training,Employment and Training +412179,Employment and Training,Employment and Training +412178,Employment and Training,Employment and Training +412176,Employment and Training,Employment and Training +412175,Employment and Training,Employment and Training +412161,Employment and Training,Employment and Training +412158,Employment and Training,Employment and Training +412156,Employment and Training,Employment and Training +412151,Employment and Training,Employment and Training +412150,Employment and Training,Employment and Training +412148,Employment and Training,Employment and Training +412146,Employment and Training,Employment and Training +412143,Employment and Training,Employment and Training +412140,Employment and Training,Employment and Training +412135,Employment and Training,Employment and Training +412133,Employment and Training,Employment and Training +412122,Employment and Training,Employment and Training +412120,Employment and Training,Employment and Training +412116,Employment and Training,Employment and Training +412114,Employment and Training,Employment and Training +412111,Employment and Training,Employment and Training +412108,Employment and Training,Employment and Training +412106,Employment and Training,Employment and Training +412098,Employment and Training,Employment and Training +412068,Employment and Training,Employment and Training +412064,Employment and Training,Employment and Training +412060,Employment and Training,Employment and Training +412056,Employment and Training,Employment and Training +412042,Employment and Training,Employment and Training +412029,Employment and Training,Employment and Training +412017,Employment and Training,Employment and Training +395771,Employment and Training,Employment and Training +374380,Employment and Training,Employment and Training +374379,Employment and Training,Employment and Training +374376,Employment and Training,Employment and Training +371489,Employment and Training,Employment and Training +371486,Employment and Training,Employment and Training +371481,Employment and Training,Employment and Training +371477,Employment and Training,Employment and Training +371475,Employment and Training,Employment and Training +371472,Employment and Training,Employment and Training +371470,Employment and Training,Employment and Training +371469,Employment and Training,Employment and Training +371463,Employment and Training,Employment and Training +371458,Employment and Training,Employment and Training +371456,Employment and Training,Employment and Training +371444,Employment and Training,Employment and Training +371441,Employment and Training,Employment and Training +371439,Employment and Training,Employment and Training +371433,Employment and Training,Employment and Training +371424,Employment and Training,Employment and Training +371149,Employment and Training,Employment and Training +371147,Employment and Training,Employment and Training +371146,Employment and Training,Employment and Training +371145,Employment and Training,Employment and Training +371144,Employment and Training,Employment and Training +371143,Employment and Training,Employment and Training +371142,Employment and Training,Employment and Training +412239,Energy,Energy +159840,Energy,Energy +125104,Energy,Energy +217627,Energy,Energy +210212,Energy,Energy +189151,Energy,Energy +318025,Energy,Energy +302481,Energy,Energy +302474,Energy,Energy +302472,Energy,Energy +302470,Energy,Energy +498543,Energy,Energy +461861,Energy,Energy +458799,Energy,Energy +449202,Energy,Energy +442334,Energy,Energy +442265,Energy,Energy +435315,Energy,Energy +159840,Environment,Environment +125098,Environment,Environment +122135,Environment,Environment +318009,Environment,Environment +316209,Environment,Environment +244554,Environment,Environment +244550,Environment,Environment +230220,Environment,Environment +223151,Environment,Environment +217627,Environment,Environment +200594,Environment,Environment +189151,Environment,Environment +189146,Environment,Environment +167578,Environment,Environment +442334,Environment,Environment +442265,Environment,Environment +442227,Environment,Environment +435315,Environment,Environment +416927,Environment,Environment +408046,Environment,Environment +385798,Environment,Environment +517064,Environment,Environment +513289,Environment,Environment +512864,Environment,Environment +510004,Environment,Environment +507402,Environment,Environment +507399,Environment,Environment +507395,Environment,Environment +507393,Environment,Environment +504727,Environment,Environment +504725,Environment,Environment +504723,Environment,Environment +504722,Environment,Environment +504694,Environment,Environment +501635,Environment,Environment +501634,Environment,Environment +500552,Environment,Environment +498543,Environment,Environment +498542,Environment,Environment +498540,Environment,Environment +498539,Environment,Environment +498538,Environment,Environment +498512,Environment,Environment +492962,Environment,Environment +492956,Environment,Environment +484192,Environment,Environment +484191,Environment,Environment +481770,Environment,Environment +479762,Environment,Environment +479761,Environment,Environment +475278,Environment,Environment +475277,Environment,Environment +475276,Environment,Environment +475275,Environment,Environment +472685,Environment,Environment +472684,Environment,Environment +472683,Environment,Environment +472682,Environment,Environment +472680,Environment,Environment +472666,Environment,Environment +470086,Environment,Environment +470083,Environment,Environment +470081,Environment,Environment +470079,Environment,Environment +470078,Environment,Environment +470075,Environment,Environment +465384,Environment,Environment +461861,Environment,Environment +459514,Environment,Environment +457091,Environment,Environment +457090,Environment,Environment +457068,Environment,Environment +456253,Environment,Environment +456252,Environment,Environment +456251,Environment,Environment +450076,Environment,Environment +449202,Environment,Environment +449201,Environment,Environment +449200,Environment,Environment +534370,Environment,Environment +531332,Environment,Environment +531327,Environment,Environment +531325,Environment,Environment +528004,Environment,Environment +528001,Environment,Environment +523575,Environment,Environment +521629,Environment,Environment +451008,Forestry,Forestry +421536,Government Procurement,Government Procurement +344104,Government Procurement,Government Procurement +162704,Government Procurement,Government Procurement +189151,Government Procurement,Government Procurement +341860,Government Procurement,Government Procurement +341857,Government Procurement,Government Procurement +338821,Government Procurement,Government Procurement +338820,Government Procurement,Government Procurement +338565,Government Procurement,Government Procurement +338562,Government Procurement,Government Procurement +338561,Government Procurement,Government Procurement +338537,Government Procurement,Government Procurement +338535,Government Procurement,Government Procurement +338534,Government Procurement,Government Procurement +338533,Government Procurement,Government Procurement +338529,Government Procurement,Government Procurement +338526,Government Procurement,Government Procurement +338523,Government Procurement,Government Procurement +338521,Government Procurement,Government Procurement +338519,Government Procurement,Government Procurement +338516,Government Procurement,Government Procurement +338515,Government Procurement,Government Procurement +338513,Government Procurement,Government Procurement +338510,Government Procurement,Government Procurement +338467,Government Procurement,Government Procurement +338466,Government Procurement,Government Procurement +338465,Government Procurement,Government Procurement +338464,Government Procurement,Government Procurement +338463,Government Procurement,Government Procurement +338462,Government Procurement,Government Procurement +338461,Government Procurement,Government Procurement +338460,Government Procurement,Government Procurement +338459,Government Procurement,Government Procurement +338457,Government Procurement,Government Procurement +338456,Government Procurement,Government Procurement +338364,Government Procurement,Government Procurement +338361,Government Procurement,Government Procurement +338348,Government Procurement,Government Procurement +338347,Government Procurement,Government Procurement +338346,Government Procurement,Government Procurement +338345,Government Procurement,Government Procurement +338343,Government Procurement,Government Procurement +338332,Government Procurement,Government Procurement +338330,Government Procurement,Government Procurement +338327,Government Procurement,Government Procurement +338326,Government Procurement,Government Procurement +338325,Government Procurement,Government Procurement +338324,Government Procurement,Government Procurement +337584,Government Procurement,Government Procurement +337583,Government Procurement,Government Procurement +337582,Government Procurement,Government Procurement +337581,Government Procurement,Government Procurement +337576,Government Procurement,Government Procurement +337575,Government Procurement,Government Procurement +337574,Government Procurement,Government Procurement +337572,Government Procurement,Government Procurement +337571,Government Procurement,Government Procurement +337570,Government Procurement,Government Procurement +337569,Government Procurement,Government Procurement +337568,Government Procurement,Government Procurement +337567,Government Procurement,Government Procurement +337566,Government Procurement,Government Procurement +337565,Government Procurement,Government Procurement +337559,Government Procurement,Government Procurement +337558,Government Procurement,Government Procurement +337556,Government Procurement,Government Procurement +337555,Government Procurement,Government Procurement +337553,Government Procurement,Government Procurement +337552,Government Procurement,Government Procurement +337551,Government Procurement,Government Procurement +337550,Government Procurement,Government Procurement +337512,Government Procurement,Government Procurement +331597,Government Procurement,Government Procurement +331595,Government Procurement,Government Procurement +322308,Government Procurement,Government Procurement +318219,Government Procurement,Government Procurement +318218,Government Procurement,Government Procurement +318216,Government Procurement,Government Procurement +318042,Government Procurement,Government Procurement +313790,Government Procurement,Government Procurement +313280,Government Procurement,Government Procurement +310784,Government Procurement,Government Procurement +302478,Government Procurement,Government Procurement +302477,Government Procurement,Government Procurement +302476,Government Procurement,Government Procurement +302475,Government Procurement,Government Procurement +259136,Government Procurement,Government Procurement +254318,Government Procurement,Government Procurement +500556,Government Procurement,Government Procurement +486713,Government Procurement,Government Procurement +477381,Government Procurement,Government Procurement +477358,Government Procurement,Government Procurement +470154,Government Procurement,Government Procurement +470133,Government Procurement,Government Procurement +464995,Government Procurement,Government Procurement +484024,Health,Health +539207,Immigration,Immigration +522545,Immigration,Immigration +218552,Immigration,Immigration +313148,Immigration,Immigration +302469,Immigration,Immigration +241189,Immigration,Immigration +484151,Immigration,Immigration +448104,Immigration,Immigration +426174,Immigration,Immigration +476697,Industry,Industry +476696,Industry,Industry +152315,Industry,Industry +150370,Industry,Industry +145848,Industry,Industry +145846,Industry,Industry +139974,Industry,Industry +139954,Industry,Industry +139336,Industry,Industry +139334,Industry,Industry +114914,Industry,Industry +177765,Industry,Industry +175245,Industry,Industry +175243,Industry,Industry +175240,Industry,Industry +175236,Industry,Industry +175235,Industry,Industry +173449,Industry,Industry +173448,Industry,Industry +173447,Industry,Industry +173446,Industry,Industry +173445,Industry,Industry +173444,Industry,Industry +171011,Industry,Industry +171009,Industry,Industry +171006,Industry,Industry +171005,Industry,Industry +171004,Industry,Industry +171002,Industry,Industry +171000,Industry,Industry +170997,Industry,Industry +170996,Industry,Industry +168503,Industry,Industry +168497,Industry,Industry +167578,Industry,Industry +167577,Industry,Industry +167576,Industry,Industry +167575,Industry,Industry +167574,Industry,Industry +167573,Industry,Industry +167572,Industry,Industry +167571,Industry,Industry +167570,Industry,Industry +167569,Industry,Industry +166059,Industry,Industry +166057,Industry,Industry +166054,Industry,Industry +166051,Industry,Industry +166048,Industry,Industry +166047,Industry,Industry +166045,Industry,Industry +166038,Industry,Industry +166037,Industry,Industry +166036,Industry,Industry +166035,Industry,Industry +166034,Industry,Industry +164332,Industry,Industry +164194,Industry,Industry +164066,Industry,Industry +162709,Industry,Industry +162708,Industry,Industry +162706,Industry,Industry +159846,Industry,Industry +159840,Industry,Industry +157313,Industry,Industry +157312,Industry,Industry +157311,Industry,Industry +304749,Industry,Industry +304738,Industry,Industry +302481,Industry,Industry +302474,Industry,Industry +302472,Industry,Industry +302470,Industry,Industry +297085,Industry,Industry +297084,Industry,Industry +297082,Industry,Industry +297080,Industry,Industry +297076,Industry,Industry +291509,Industry,Industry +291469,Industry,Industry +286872,Industry,Industry +282355,Industry,Industry +282351,Industry,Industry +277404,Industry,Industry +277402,Industry,Industry +277400,Industry,Industry +273622,Industry,Industry +273619,Industry,Industry +269699,Industry,Industry +261632,Industry,Industry +261619,Industry,Industry +261618,Industry,Industry +261617,Industry,Industry +261616,Industry,Industry +261615,Industry,Industry +261613,Industry,Industry +261611,Industry,Industry +254340,Industry,Industry +254332,Industry,Industry +254326,Industry,Industry +254322,Industry,Industry +254318,Industry,Industry +254314,Industry,Industry +254311,Industry,Industry +250281,Industry,Industry +244559,Industry,Industry +244558,Industry,Industry +244557,Industry,Industry +244555,Industry,Industry +244554,Industry,Industry +244552,Industry,Industry +244551,Industry,Industry +244549,Industry,Industry +244528,Industry,Industry +244527,Industry,Industry +244525,Industry,Industry +244521,Industry,Industry +242389,Industry,Industry +241197,Industry,Industry +241192,Industry,Industry +241189,Industry,Industry +241188,Industry,Industry +236634,Industry,Industry +236632,Industry,Industry +236612,Industry,Industry +233772,Industry,Industry +233770,Industry,Industry +230692,Industry,Industry +230691,Industry,Industry +230220,Industry,Industry +226500,Industry,Industry +226498,Industry,Industry +226494,Industry,Industry +218550,Industry,Industry +218549,Industry,Industry +217596,Industry,Industry +212573,Industry,Industry +212568,Industry,Industry +210247,Industry,Industry +210227,Industry,Industry +210210,Industry,Industry +210207,Industry,Industry +207534,Industry,Industry +207517,Industry,Industry +207184,Industry,Industry +202809,Industry,Industry +202807,Industry,Industry +202799,Industry,Industry +202778,Industry,Industry +202611,Industry,Industry +202610,Industry,Industry +202607,Industry,Industry +202604,Industry,Industry +202601,Industry,Industry +202580,Industry,Industry +202574,Industry,Industry +202571,Industry,Industry +200596,Industry,Industry +200594,Industry,Industry +200479,Industry,Industry +200465,Industry,Industry +200462,Industry,Industry +200459,Industry,Industry +194784,Industry,Industry +194771,Industry,Industry +189828,Industry,Industry +189827,Industry,Industry +189826,Industry,Industry +189151,Industry,Industry +189146,Industry,Industry +185889,Industry,Industry +185887,Industry,Industry +180524,Industry,Industry +177766,Industry,Industry +354010,Industry,Industry +351601,Industry,Industry +351598,Industry,Industry +351597,Industry,Industry +351595,Industry,Industry +351593,Industry,Industry +351590,Industry,Industry +351589,Industry,Industry +351587,Industry,Industry +351497,Industry,Industry +351489,Industry,Industry +351487,Industry,Industry +351485,Industry,Industry +351481,Industry,Industry +351478,Industry,Industry +351466,Industry,Industry +351464,Industry,Industry +351461,Industry,Industry +351458,Industry,Industry +351456,Industry,Industry +351452,Industry,Industry +348872,Industry,Industry +348871,Industry,Industry +348870,Industry,Industry +348869,Industry,Industry +348868,Industry,Industry +348867,Industry,Industry +348732,Industry,Industry +348727,Industry,Industry +348724,Industry,Industry +348722,Industry,Industry +348720,Industry,Industry +347507,Industry,Industry +347506,Industry,Industry +347505,Industry,Industry +347503,Industry,Industry +347502,Industry,Industry +347498,Industry,Industry +344108,Industry,Industry +344107,Industry,Industry +344106,Industry,Industry +344104,Industry,Industry +344103,Industry,Industry +344102,Industry,Industry +344101,Industry,Industry +344100,Industry,Industry +341854,Industry,Industry +341847,Industry,Industry +341843,Industry,Industry +341835,Industry,Industry +341828,Industry,Industry +341819,Industry,Industry +341809,Industry,Industry +338821,Industry,Industry +338820,Industry,Industry +338565,Industry,Industry +338562,Industry,Industry +338561,Industry,Industry +338537,Industry,Industry +338535,Industry,Industry +338534,Industry,Industry +338533,Industry,Industry +338529,Industry,Industry +338526,Industry,Industry +338523,Industry,Industry +338521,Industry,Industry +338519,Industry,Industry +338516,Industry,Industry +338515,Industry,Industry +338513,Industry,Industry +338510,Industry,Industry +338467,Industry,Industry +338466,Industry,Industry +338465,Industry,Industry +338464,Industry,Industry +338463,Industry,Industry +338462,Industry,Industry +338461,Industry,Industry +338460,Industry,Industry +338459,Industry,Industry +338457,Industry,Industry +338456,Industry,Industry +338364,Industry,Industry +338361,Industry,Industry +338348,Industry,Industry +338347,Industry,Industry +338346,Industry,Industry +338345,Industry,Industry +338343,Industry,Industry +338332,Industry,Industry +338330,Industry,Industry +338327,Industry,Industry +338326,Industry,Industry +338325,Industry,Industry +338324,Industry,Industry +338189,Industry,Industry +338188,Industry,Industry +338187,Industry,Industry +338186,Industry,Industry +338185,Industry,Industry +338184,Industry,Industry +338183,Industry,Industry +338182,Industry,Industry +338181,Industry,Industry +338180,Industry,Industry +338179,Industry,Industry +338178,Industry,Industry +338177,Industry,Industry +338176,Industry,Industry +338175,Industry,Industry +338174,Industry,Industry +338173,Industry,Industry +338172,Industry,Industry +338171,Industry,Industry +338170,Industry,Industry +338169,Industry,Industry +338130,Industry,Industry +338129,Industry,Industry +338128,Industry,Industry +338124,Industry,Industry +338106,Industry,Industry +338104,Industry,Industry +337584,Industry,Industry +337583,Industry,Industry +337582,Industry,Industry +337581,Industry,Industry +337576,Industry,Industry +337575,Industry,Industry +337574,Industry,Industry +337572,Industry,Industry +337571,Industry,Industry +337570,Industry,Industry +337569,Industry,Industry +337568,Industry,Industry +337567,Industry,Industry +337566,Industry,Industry +337565,Industry,Industry +337559,Industry,Industry +337558,Industry,Industry +337556,Industry,Industry +337555,Industry,Industry +337553,Industry,Industry +337552,Industry,Industry +337551,Industry,Industry +337550,Industry,Industry +337512,Industry,Industry +336219,Industry,Industry +336218,Industry,Industry +336217,Industry,Industry +333764,Industry,Industry +333762,Industry,Industry +333760,Industry,Industry +331571,Industry,Industry +331570,Industry,Industry +331569,Industry,Industry +327564,Industry,Industry +325137,Industry,Industry +325135,Industry,Industry +325134,Industry,Industry +325132,Industry,Industry +322332,Industry,Industry +322327,Industry,Industry +322318,Industry,Industry +322313,Industry,Industry +322311,Industry,Industry +318053,Industry,Industry +318051,Industry,Industry +318044,Industry,Industry +318043,Industry,Industry +318038,Industry,Industry +318037,Industry,Industry +318036,Industry,Industry +318032,Industry,Industry +318031,Industry,Industry +318030,Industry,Industry +318029,Industry,Industry +318028,Industry,Industry +318025,Industry,Industry +318020,Industry,Industry +318018,Industry,Industry +318015,Industry,Industry +318014,Industry,Industry +316190,Industry,Industry +313814,Industry,Industry +313812,Industry,Industry +313811,Industry,Industry +313810,Industry,Industry +313794,Industry,Industry +313791,Industry,Industry +313790,Industry,Industry +313789,Industry,Industry +313300,Industry,Industry +313299,Industry,Industry +313298,Industry,Industry +313296,Industry,Industry +313291,Industry,Industry +313290,Industry,Industry +313289,Industry,Industry +313281,Industry,Industry +313263,Industry,Industry +313261,Industry,Industry +313258,Industry,Industry +313257,Industry,Industry +313256,Industry,Industry +313255,Industry,Industry +313254,Industry,Industry +313253,Industry,Industry +313252,Industry,Industry +313251,Industry,Industry +313250,Industry,Industry +313249,Industry,Industry +313247,Industry,Industry +313246,Industry,Industry +313245,Industry,Industry +313244,Industry,Industry +313243,Industry,Industry +313242,Industry,Industry +313241,Industry,Industry +313240,Industry,Industry +313237,Industry,Industry +313236,Industry,Industry +313235,Industry,Industry +313234,Industry,Industry +313233,Industry,Industry +313232,Industry,Industry +313231,Industry,Industry +313230,Industry,Industry +313229,Industry,Industry +313228,Industry,Industry +313227,Industry,Industry +313226,Industry,Industry +313225,Industry,Industry +313223,Industry,Industry +313222,Industry,Industry +313221,Industry,Industry +313219,Industry,Industry +313218,Industry,Industry +313217,Industry,Industry +313216,Industry,Industry +313215,Industry,Industry +313214,Industry,Industry +313213,Industry,Industry +313212,Industry,Industry +313210,Industry,Industry +313209,Industry,Industry +313207,Industry,Industry +313156,Industry,Industry +313155,Industry,Industry +313152,Industry,Industry +313150,Industry,Industry +313148,Industry,Industry +313138,Industry,Industry +313137,Industry,Industry +313136,Industry,Industry +313135,Industry,Industry +313134,Industry,Industry +313132,Industry,Industry +476689,Industry,Industry +475315,Industry,Industry +475271,Industry,Industry +475270,Industry,Industry +475269,Industry,Industry +475268,Industry,Industry +472709,Industry,Industry +472707,Industry,Industry +472703,Industry,Industry +472699,Industry,Industry +472693,Industry,Industry +472690,Industry,Industry +472689,Industry,Industry +472688,Industry,Industry +472686,Industry,Industry +470150,Industry,Industry +470149,Industry,Industry +470145,Industry,Industry +470144,Industry,Industry +470142,Industry,Industry +470140,Industry,Industry +470132,Industry,Industry +470112,Industry,Industry +470108,Industry,Industry +467598,Industry,Industry +467588,Industry,Industry +465384,Industry,Industry +465381,Industry,Industry +464995,Industry,Industry +464994,Industry,Industry +464993,Industry,Industry +464992,Industry,Industry +464405,Industry,Industry +464403,Industry,Industry +464401,Industry,Industry +464400,Industry,Industry +462251,Industry,Industry +461861,Industry,Industry +461859,Industry,Industry +461858,Industry,Industry +461857,Industry,Industry +461856,Industry,Industry +461854,Industry,Industry +461853,Industry,Industry +461852,Industry,Industry +460273,Industry,Industry +459516,Industry,Industry +459514,Industry,Industry +459512,Industry,Industry +459511,Industry,Industry +458810,Industry,Industry +458808,Industry,Industry +458806,Industry,Industry +458804,Industry,Industry +458800,Industry,Industry +458799,Industry,Industry +458797,Industry,Industry +458795,Industry,Industry +457092,Industry,Industry +457091,Industry,Industry +457090,Industry,Industry +457083,Industry,Industry +457078,Industry,Industry +457077,Industry,Industry +457068,Industry,Industry +456252,Industry,Industry +456251,Industry,Industry +455714,Industry,Industry +455713,Industry,Industry +455710,Industry,Industry +455708,Industry,Industry +451024,Industry,Industry +451023,Industry,Industry +451022,Industry,Industry +451021,Industry,Industry +451008,Industry,Industry +450076,Industry,Industry +449209,Industry,Industry +449208,Industry,Industry +449207,Industry,Industry +449206,Industry,Industry +449205,Industry,Industry +449204,Industry,Industry +449202,Industry,Industry +449201,Industry,Industry +449200,Industry,Industry +448104,Industry,Industry +448061,Industry,Industry +448057,Industry,Industry +445928,Industry,Industry +445927,Industry,Industry +442352,Industry,Industry +442334,Industry,Industry +442265,Industry,Industry +442263,Industry,Industry +442253,Industry,Industry +442250,Industry,Industry +442246,Industry,Industry +442238,Industry,Industry +442227,Industry,Industry +439521,Industry,Industry +439517,Industry,Industry +439498,Industry,Industry +439495,Industry,Industry +439493,Industry,Industry +435629,Industry,Industry +435316,Industry,Industry +435315,Industry,Industry +435314,Industry,Industry +435313,Industry,Industry +433760,Industry,Industry +433755,Industry,Industry +433745,Industry,Industry +433744,Industry,Industry +433743,Industry,Industry +432423,Industry,Industry +432332,Industry,Industry +432328,Industry,Industry +430853,Industry,Industry +430850,Industry,Industry +430843,Industry,Industry +430840,Industry,Industry +429399,Industry,Industry +429107,Industry,Industry +429105,Industry,Industry +426174,Industry,Industry +423881,Industry,Industry +423876,Industry,Industry +423873,Industry,Industry +423868,Industry,Industry +421558,Industry,Industry +421553,Industry,Industry +421538,Industry,Industry +421536,Industry,Industry +419843,Industry,Industry +418790,Industry,Industry +416936,Industry,Industry +416932,Industry,Industry +416930,Industry,Industry +416927,Industry,Industry +412299,Industry,Industry +412298,Industry,Industry +412294,Industry,Industry +412289,Industry,Industry +412285,Industry,Industry +412282,Industry,Industry +412280,Industry,Industry +412279,Industry,Industry +412277,Industry,Industry +412276,Industry,Industry +412274,Industry,Industry +412270,Industry,Industry +412267,Industry,Industry +412264,Industry,Industry +412263,Industry,Industry +412259,Industry,Industry +412257,Industry,Industry +412245,Industry,Industry +412241,Industry,Industry +412239,Industry,Industry +412238,Industry,Industry +412236,Industry,Industry +412232,Industry,Industry +412228,Industry,Industry +412225,Industry,Industry +412224,Industry,Industry +412221,Industry,Industry +412219,Industry,Industry +412217,Industry,Industry +412216,Industry,Industry +412214,Industry,Industry +412212,Industry,Industry +412210,Industry,Industry +412208,Industry,Industry +412202,Industry,Industry +412201,Industry,Industry +412188,Industry,Industry +412187,Industry,Industry +412185,Industry,Industry +412184,Industry,Industry +412183,Industry,Industry +412182,Industry,Industry +412181,Industry,Industry +412179,Industry,Industry +412178,Industry,Industry +412176,Industry,Industry +412175,Industry,Industry +412161,Industry,Industry +412158,Industry,Industry +412156,Industry,Industry +412151,Industry,Industry +412150,Industry,Industry +412148,Industry,Industry +412146,Industry,Industry +412143,Industry,Industry +412140,Industry,Industry +412135,Industry,Industry +412133,Industry,Industry +412122,Industry,Industry +412120,Industry,Industry +412116,Industry,Industry +412114,Industry,Industry +412111,Industry,Industry +412108,Industry,Industry +412106,Industry,Industry +412098,Industry,Industry +412068,Industry,Industry +412064,Industry,Industry +412060,Industry,Industry +412056,Industry,Industry +412042,Industry,Industry +412029,Industry,Industry +412017,Industry,Industry +408046,Industry,Industry +408045,Industry,Industry +408044,Industry,Industry +408043,Industry,Industry +404006,Industry,Industry +404005,Industry,Industry +404004,Industry,Industry +399034,Industry,Industry +399033,Industry,Industry +399031,Industry,Industry +395773,Industry,Industry +395772,Industry,Industry +395771,Industry,Industry +395769,Industry,Industry +394573,Industry,Industry +394571,Industry,Industry +394568,Industry,Industry +394566,Industry,Industry +392797,Industry,Industry +392795,Industry,Industry +392794,Industry,Industry +391188,Industry,Industry +391185,Industry,Industry +388591,Industry,Industry +388590,Industry,Industry +388588,Industry,Industry +388586,Industry,Industry +388585,Industry,Industry +388584,Industry,Industry +388583,Industry,Industry +388582,Industry,Industry +388581,Industry,Industry +388580,Industry,Industry +388579,Industry,Industry +388570,Industry,Industry +388567,Industry,Industry +388565,Industry,Industry +388562,Industry,Industry +388560,Industry,Industry +388556,Industry,Industry +388553,Industry,Industry +388206,Industry,Industry +388204,Industry,Industry +388202,Industry,Industry +388199,Industry,Industry +388196,Industry,Industry +388195,Industry,Industry +388194,Industry,Industry +388193,Industry,Industry +388191,Industry,Industry +388190,Industry,Industry +388189,Industry,Industry +388188,Industry,Industry +388183,Industry,Industry +388181,Industry,Industry +388179,Industry,Industry +388175,Industry,Industry +388173,Industry,Industry +388170,Industry,Industry +388168,Industry,Industry +388165,Industry,Industry +388163,Industry,Industry +388161,Industry,Industry +388158,Industry,Industry +388157,Industry,Industry +388156,Industry,Industry +388153,Industry,Industry +388150,Industry,Industry +388149,Industry,Industry +388148,Industry,Industry +388146,Industry,Industry +388138,Industry,Industry +388131,Industry,Industry +388129,Industry,Industry +385798,Industry,Industry +383500,Industry,Industry +383498,Industry,Industry +383497,Industry,Industry +382655,Industry,Industry +382654,Industry,Industry +379929,Industry,Industry +379927,Industry,Industry +379923,Industry,Industry +379920,Industry,Industry +379917,Industry,Industry +379913,Industry,Industry +377226,Industry,Industry +374386,Industry,Industry +374384,Industry,Industry +374383,Industry,Industry +371489,Industry,Industry +371486,Industry,Industry +371481,Industry,Industry +371477,Industry,Industry +371475,Industry,Industry +371472,Industry,Industry +371470,Industry,Industry +371469,Industry,Industry +371463,Industry,Industry +371458,Industry,Industry +371456,Industry,Industry +371444,Industry,Industry +371441,Industry,Industry +371439,Industry,Industry +371433,Industry,Industry +371428,Industry,Industry +371149,Industry,Industry +371147,Industry,Industry +371146,Industry,Industry +371145,Industry,Industry +371144,Industry,Industry +371143,Industry,Industry +371142,Industry,Industry +371141,Industry,Industry +371140,Industry,Industry +371139,Industry,Industry +371138,Industry,Industry +371137,Industry,Industry +371135,Industry,Industry +371134,Industry,Industry +371132,Industry,Industry +371131,Industry,Industry +371130,Industry,Industry +371129,Industry,Industry +371127,Industry,Industry +371126,Industry,Industry +371125,Industry,Industry +371124,Industry,Industry +371123,Industry,Industry +371101,Industry,Industry +371100,Industry,Industry +371099,Industry,Industry +371098,Industry,Industry +371096,Industry,Industry +371094,Industry,Industry +371093,Industry,Industry +371091,Industry,Industry +371090,Industry,Industry +371086,Industry,Industry +371084,Industry,Industry +371078,Industry,Industry +371074,Industry,Industry +371070,Industry,Industry +371069,Industry,Industry +371067,Industry,Industry +371066,Industry,Industry +371065,Industry,Industry +371064,Industry,Industry +371062,Industry,Industry +371061,Industry,Industry +371059,Industry,Industry +371057,Industry,Industry +371055,Industry,Industry +371054,Industry,Industry +371051,Industry,Industry +371036,Industry,Industry +371035,Industry,Industry +371034,Industry,Industry +371033,Industry,Industry +371032,Industry,Industry +371030,Industry,Industry +371029,Industry,Industry +371028,Industry,Industry +371027,Industry,Industry +371026,Industry,Industry +371025,Industry,Industry +371024,Industry,Industry +371023,Industry,Industry +371022,Industry,Industry +371021,Industry,Industry +371020,Industry,Industry +371019,Industry,Industry +371018,Industry,Industry +371017,Industry,Industry +371016,Industry,Industry +371015,Industry,Industry +371014,Industry,Industry +371012,Industry,Industry +371011,Industry,Industry +371010,Industry,Industry +371009,Industry,Industry +371007,Industry,Industry +371005,Industry,Industry +371004,Industry,Industry +371003,Industry,Industry +371001,Industry,Industry +370998,Industry,Industry +370997,Industry,Industry +370992,Industry,Industry +370988,Industry,Industry +370986,Industry,Industry +370972,Industry,Industry +370965,Industry,Industry +369561,Industry,Industry +369559,Industry,Industry +366759,Industry,Industry +366757,Industry,Industry +365041,Industry,Industry +362442,Industry,Industry +362439,Industry,Industry +362437,Industry,Industry +362434,Industry,Industry +362433,Industry,Industry +361272,Industry,Industry +361270,Industry,Industry +361267,Industry,Industry +361266,Industry,Industry +359832,Industry,Industry +359829,Industry,Industry +359824,Industry,Industry +359823,Industry,Industry +358285,Industry,Industry +358284,Industry,Industry +358283,Industry,Industry +358273,Industry,Industry +356514,Industry,Industry +356504,Industry,Industry +356490,Industry,Industry +356488,Industry,Industry +356484,Industry,Industry +356483,Industry,Industry +356482,Industry,Industry +356481,Industry,Industry +356480,Industry,Industry +356479,Industry,Industry +356478,Industry,Industry +356477,Industry,Industry +356476,Industry,Industry +356475,Industry,Industry +355888,Industry,Industry +542593,Industry,Industry +542592,Industry,Industry +541532,Industry,Industry +541530,Industry,Industry +541356,Industry,Industry +538594,Industry,Industry +538592,Industry,Industry +538588,Industry,Industry +538586,Industry,Industry +534367,Industry,Industry +531810,Industry,Industry +531341,Industry,Industry +529142,Industry,Industry +528008,Industry,Industry +528006,Industry,Industry +528004,Industry,Industry +528002,Industry,Industry +528001,Industry,Industry +526024,Industry,Industry +526013,Industry,Industry +525906,Industry,Industry +525905,Industry,Industry +525904,Industry,Industry +525903,Industry,Industry +525902,Industry,Industry +523575,Industry,Industry +522545,Industry,Industry +522540,Industry,Industry +522149,Industry,Industry +522148,Industry,Industry +522147,Industry,Industry +521630,Industry,Industry +521628,Industry,Industry +519967,Industry,Industry +519965,Industry,Industry +519957,Industry,Industry +518456,Industry,Industry +518455,Industry,Industry +517802,Industry,Industry +517799,Industry,Industry +517798,Industry,Industry +517064,Industry,Industry +517062,Industry,Industry +517060,Industry,Industry +517057,Industry,Industry +517056,Industry,Industry +517055,Industry,Industry +517052,Industry,Industry +517051,Industry,Industry +515751,Industry,Industry +515749,Industry,Industry +515747,Industry,Industry +515567,Industry,Industry +515566,Industry,Industry +515565,Industry,Industry +515563,Industry,Industry +515356,Industry,Industry +514509,Industry,Industry +513700,Industry,Industry +513289,Industry,Industry +512950,Industry,Industry +512882,Industry,Industry +512874,Industry,Industry +512870,Industry,Industry +512864,Industry,Industry +511612,Industry,Industry +509921,Industry,Industry +509805,Industry,Industry +504727,Industry,Industry +504696,Industry,Industry +501634,Industry,Industry +500555,Industry,Industry +500554,Industry,Industry +500553,Industry,Industry +500552,Industry,Industry +498549,Industry,Industry +498548,Industry,Industry +498544,Industry,Industry +498525,Industry,Industry +496389,Industry,Industry +496387,Industry,Industry +496359,Industry,Industry +496357,Industry,Industry +495715,Industry,Industry +495712,Industry,Industry +495710,Industry,Industry +492962,Industry,Industry +490272,Industry,Industry +487184,Industry,Industry +487181,Industry,Industry +487177,Industry,Industry +487174,Industry,Industry +486719,Industry,Industry +486708,Industry,Industry +484149,Industry,Industry +484032,Industry,Industry +484019,Industry,Industry +481772,Industry,Industry +481767,Industry,Industry +481765,Industry,Industry +481746,Industry,Industry +481743,Industry,Industry +479762,Industry,Industry +479761,Industry,Industry +477377,Industry,Industry +477358,Industry,Industry +477353,Industry,Industry +477345,Industry,Industry +477342,Industry,Industry +477339,Industry,Industry +477338,Industry,Industry +477121,Industry,Industry +477116,Industry,Industry +477113,Industry,Industry +476742,Industry,Industry +476741,Industry,Industry +476740,Industry,Industry +476739,Industry,Industry +476738,Industry,Industry +476737,Industry,Industry +476736,Industry,Industry +476735,Industry,Industry +476734,Industry,Industry +476733,Industry,Industry +476732,Industry,Industry +476731,Industry,Industry +476730,Industry,Industry +476729,Industry,Industry +476728,Industry,Industry +476727,Industry,Industry +476726,Industry,Industry +476725,Industry,Industry +476724,Industry,Industry +476723,Industry,Industry +476722,Industry,Industry +476721,Industry,Industry +476720,Industry,Industry +476719,Industry,Industry +476718,Industry,Industry +476715,Industry,Industry +476714,Industry,Industry +476713,Industry,Industry +476712,Industry,Industry +476711,Industry,Industry +476710,Industry,Industry +476709,Industry,Industry +476708,Industry,Industry +476707,Industry,Industry +476706,Industry,Industry +476705,Industry,Industry +476704,Industry,Industry +476703,Industry,Industry +476702,Industry,Industry +476701,Industry,Industry +476700,Industry,Industry +476699,Industry,Industry +458797,Infrastructure,Infrastructure +442265,Infrastructure,Infrastructure +202811,Infrastructure,Infrastructure +164194,Infrastructure,Infrastructure +388150,Infrastructure,Infrastructure +371489,Infrastructure,Infrastructure +371486,Infrastructure,Infrastructure +371481,Infrastructure,Infrastructure +371477,Infrastructure,Infrastructure +371475,Infrastructure,Infrastructure +371472,Infrastructure,Infrastructure +371470,Infrastructure,Infrastructure +371469,Infrastructure,Infrastructure +371463,Infrastructure,Infrastructure +371458,Infrastructure,Infrastructure +371456,Infrastructure,Infrastructure +371444,Infrastructure,Infrastructure +371441,Infrastructure,Infrastructure +371439,Infrastructure,Infrastructure +322308,Infrastructure,Infrastructure +318219,Infrastructure,Infrastructure +318218,Infrastructure,Infrastructure +313280,Infrastructure,Infrastructure +310784,Infrastructure,Infrastructure +302478,Infrastructure,Infrastructure +302477,Infrastructure,Infrastructure +302476,Infrastructure,Infrastructure +302475,Infrastructure,Infrastructure +273595,Infrastructure,Infrastructure +269509,Infrastructure,Infrastructure +261616,Infrastructure,Infrastructure +426166,Internal Trade,Internal Trade +381521,Internal Trade,Internal Trade +175235,Internal Trade,Internal Trade +241195,Internal Trade,Internal Trade +202802,Internal Trade,Internal Trade +534483,Internal Trade,Internal Trade +526014,Internal Trade,Internal Trade +522540,Internal Trade,Internal Trade +522147,Internal Trade,Internal Trade +517799,Internal Trade,Internal Trade +499188,Internal Trade,Internal Trade +498547,Internal Trade,Internal Trade +498546,Internal Trade,Internal Trade +490275,Internal Trade,Internal Trade +486708,Internal Trade,Internal Trade +481772,Internal Trade,Internal Trade +464405,Internal Trade,Internal Trade +457077,Internal Trade,Internal Trade +454189,Internal Trade,Internal Trade +448061,Internal Trade,Internal Trade +528000,International Relations,International Relations +512874,International Relations,International Relations +175235,International Relations,International Relations +173446,International Relations,International Relations +171006,International Relations,International Relations +171005,International Relations,International Relations +159834,International Relations,International Relations +244523,International Relations,International Relations +241195,International Relations,International Relations +236633,International Relations,International Relations +230219,International Relations,International Relations +218554,International Relations,International Relations +218548,International Relations,International Relations +218547,International Relations,International Relations +217624,International Relations,International Relations +202809,International Relations,International Relations +202807,International Relations,International Relations +202802,International Relations,International Relations +202799,International Relations,International Relations +202795,International Relations,International Relations +202791,International Relations,International Relations +202611,International Relations,International Relations +202610,International Relations,International Relations +202601,International Relations,International Relations +371146,International Relations,International Relations +371053,International Relations,International Relations +363636,International Relations,International Relations +363635,International Relations,International Relations +347501,International Relations,International Relations +347499,International Relations,International Relations +341796,International Relations,International Relations +338513,International Relations,International Relations +338510,International Relations,International Relations +338467,International Relations,International Relations +337566,International Relations,International Relations +322333,International Relations,International Relations +318037,International Relations,International Relations +313815,International Relations,International Relations +304778,International Relations,International Relations +304777,International Relations,International Relations +304772,International Relations,International Relations +273610,International Relations,International Relations +261589,International Relations,International Relations +467598,International Relations,International Relations +464994,International Relations,International Relations +461857,International Relations,International Relations +461856,International Relations,International Relations +461854,International Relations,International Relations +459514,International Relations,International Relations +458804,International Relations,International Relations +458795,International Relations,International Relations +451023,International Relations,International Relations +451022,International Relations,International Relations +445928,International Relations,International Relations +442334,International Relations,International Relations +442253,International Relations,International Relations +442250,International Relations,International Relations +435316,International Relations,International Relations +432332,International Relations,International Relations +382656,International Relations,International Relations +432328,International Trade,International Trade +430850,International Trade,International Trade +125101,International Trade,International Trade +113877,International Trade,International Trade +113868,International Trade,International Trade +113866,International Trade,International Trade +113864,International Trade,International Trade +77619,International Trade,International Trade +77615,International Trade,International Trade +77595,International Trade,International Trade +154958,International Trade,International Trade +152314,International Trade,International Trade +150367,International Trade,International Trade +148338,International Trade,International Trade +148337,International Trade,International Trade +141274,International Trade,International Trade +139995,International Trade,International Trade +139994,International Trade,International Trade +139976,International Trade,International Trade +139975,International Trade,International Trade +139337,International Trade,International Trade +139317,International Trade,International Trade +139316,International Trade,International Trade +139315,International Trade,International Trade +132992,International Trade,International Trade +175233,International Trade,International Trade +175232,International Trade,International Trade +173449,International Trade,International Trade +173448,International Trade,International Trade +173447,International Trade,International Trade +173446,International Trade,International Trade +173445,International Trade,International Trade +171985,International Trade,International Trade +171011,International Trade,International Trade +171009,International Trade,International Trade +171006,International Trade,International Trade +171005,International Trade,International Trade +171004,International Trade,International Trade +171002,International Trade,International Trade +171000,International Trade,International Trade +170996,International Trade,International Trade +168503,International Trade,International Trade +167578,International Trade,International Trade +167573,International Trade,International Trade +167571,International Trade,International Trade +167570,International Trade,International Trade +167569,International Trade,International Trade +162705,International Trade,International Trade +162704,International Trade,International Trade +159860,International Trade,International Trade +159856,International Trade,International Trade +159834,International Trade,International Trade +159827,International Trade,International Trade +157314,International Trade,International Trade +244558,International Trade,International Trade +244557,International Trade,International Trade +244555,International Trade,International Trade +244554,International Trade,International Trade +244552,International Trade,International Trade +244525,International Trade,International Trade +244524,International Trade,International Trade +244523,International Trade,International Trade +244522,International Trade,International Trade +241199,International Trade,International Trade +241198,International Trade,International Trade +241185,International Trade,International Trade +236633,International Trade,International Trade +236631,International Trade,International Trade +236629,International Trade,International Trade +236615,International Trade,International Trade +233782,International Trade,International Trade +233777,International Trade,International Trade +233771,International Trade,International Trade +230693,International Trade,International Trade +230690,International Trade,International Trade +230217,International Trade,International Trade +226486,International Trade,International Trade +226482,International Trade,International Trade +226480,International Trade,International Trade +226477,International Trade,International Trade +226476,International Trade,International Trade +226474,International Trade,International Trade +226471,International Trade,International Trade +223140,International Trade,International Trade +223137,International Trade,International Trade +223135,International Trade,International Trade +223132,International Trade,International Trade +218558,International Trade,International Trade +218557,International Trade,International Trade +218556,International Trade,International Trade +218554,International Trade,International Trade +217624,International Trade,International Trade +217611,International Trade,International Trade +217608,International Trade,International Trade +217596,International Trade,International Trade +217593,International Trade,International Trade +210210,International Trade,International Trade +210209,International Trade,International Trade +210208,International Trade,International Trade +207187,International Trade,International Trade +202817,International Trade,International Trade +202816,International Trade,International Trade +202815,International Trade,International Trade +202813,International Trade,International Trade +202804,International Trade,International Trade +202799,International Trade,International Trade +202791,International Trade,International Trade +202778,International Trade,International Trade +202611,International Trade,International Trade +202610,International Trade,International Trade +202607,International Trade,International Trade +202604,International Trade,International Trade +202601,International Trade,International Trade +202580,International Trade,International Trade +202574,International Trade,International Trade +202571,International Trade,International Trade +200477,International Trade,International Trade +200473,International Trade,International Trade +200469,International Trade,International Trade +200462,International Trade,International Trade +194798,International Trade,International Trade +194796,International Trade,International Trade +194794,International Trade,International Trade +194788,International Trade,International Trade +194786,International Trade,International Trade +189828,International Trade,International Trade +189827,International Trade,International Trade +189826,International Trade,International Trade +189170,International Trade,International Trade +189167,International Trade,International Trade +189166,International Trade,International Trade +189151,International Trade,International Trade +185892,International Trade,International Trade +185891,International Trade,International Trade +180504,International Trade,International Trade +177765,International Trade,International Trade +177764,International Trade,International Trade +175247,International Trade,International Trade +175245,International Trade,International Trade +175240,International Trade,International Trade +175236,International Trade,International Trade +175234,International Trade,International Trade +337565,International Trade,International Trade +337559,International Trade,International Trade +337558,International Trade,International Trade +337556,International Trade,International Trade +337555,International Trade,International Trade +337553,International Trade,International Trade +337552,International Trade,International Trade +337551,International Trade,International Trade +337550,International Trade,International Trade +337512,International Trade,International Trade +336223,International Trade,International Trade +336222,International Trade,International Trade +336221,International Trade,International Trade +336220,International Trade,International Trade +336216,International Trade,International Trade +336215,International Trade,International Trade +336214,International Trade,International Trade +336213,International Trade,International Trade +336212,International Trade,International Trade +336211,International Trade,International Trade +336210,International Trade,International Trade +336104,International Trade,International Trade +333763,International Trade,International Trade +333761,International Trade,International Trade +333758,International Trade,International Trade +331597,International Trade,International Trade +331595,International Trade,International Trade +331585,International Trade,International Trade +322333,International Trade,International Trade +322329,International Trade,International Trade +322327,International Trade,International Trade +318219,International Trade,International Trade +318218,International Trade,International Trade +318057,International Trade,International Trade +318056,International Trade,International Trade +318049,International Trade,International Trade +318048,International Trade,International Trade +318046,International Trade,International Trade +318045,International Trade,International Trade +318042,International Trade,International Trade +318032,International Trade,International Trade +318031,International Trade,International Trade +318030,International Trade,International Trade +318028,International Trade,International Trade +318024,International Trade,International Trade +318023,International Trade,International Trade +318018,International Trade,International Trade +318017,International Trade,International Trade +318016,International Trade,International Trade +318015,International Trade,International Trade +318013,International Trade,International Trade +318011,International Trade,International Trade +318010,International Trade,International Trade +316193,International Trade,International Trade +316192,International Trade,International Trade +316191,International Trade,International Trade +313815,International Trade,International Trade +313794,International Trade,International Trade +313300,International Trade,International Trade +313299,International Trade,International Trade +313298,International Trade,International Trade +313297,International Trade,International Trade +313296,International Trade,International Trade +313295,International Trade,International Trade +313294,International Trade,International Trade +313292,International Trade,International Trade +313290,International Trade,International Trade +313289,International Trade,International Trade +313263,International Trade,International Trade +313259,International Trade,International Trade +310782,International Trade,International Trade +310780,International Trade,International Trade +310779,International Trade,International Trade +304776,International Trade,International Trade +304775,International Trade,International Trade +304774,International Trade,International Trade +304773,International Trade,International Trade +304771,International Trade,International Trade +304770,International Trade,International Trade +304769,International Trade,International Trade +304737,International Trade,International Trade +304736,International Trade,International Trade +304735,International Trade,International Trade +304734,International Trade,International Trade +304733,International Trade,International Trade +304731,International Trade,International Trade +304730,International Trade,International Trade +304729,International Trade,International Trade +302472,International Trade,International Trade +291489,International Trade,International Trade +291429,International Trade,International Trade +277384,International Trade,International Trade +273624,International Trade,International Trade +273618,International Trade,International Trade +273602,International Trade,International Trade +273595,International Trade,International Trade +269695,International Trade,International Trade +269694,International Trade,International Trade +269693,International Trade,International Trade +269614,International Trade,International Trade +269613,International Trade,International Trade +269610,International Trade,International Trade +269607,International Trade,International Trade +269529,International Trade,International Trade +269490,International Trade,International Trade +261655,International Trade,International Trade +261654,International Trade,International Trade +261653,International Trade,International Trade +261652,International Trade,International Trade +261651,International Trade,International Trade +261650,International Trade,International Trade +261634,International Trade,International Trade +261632,International Trade,International Trade +261618,International Trade,International Trade +261617,International Trade,International Trade +261616,International Trade,International Trade +261615,International Trade,International Trade +261613,International Trade,International Trade +261611,International Trade,International Trade +261589,International Trade,International Trade +259135,International Trade,International Trade +259134,International Trade,International Trade +259130,International Trade,International Trade +254338,International Trade,International Trade +254337,International Trade,International Trade +254335,International Trade,International Trade +254334,International Trade,International Trade +254314,International Trade,International Trade +250282,International Trade,International Trade +250279,International Trade,International Trade +250276,International Trade,International Trade +429107,International Trade,International Trade +426172,International Trade,International Trade +426170,International Trade,International Trade +426169,International Trade,International Trade +426164,International Trade,International Trade +426163,International Trade,International Trade +423876,International Trade,International Trade +423873,International Trade,International Trade +421538,International Trade,International Trade +419843,International Trade,International Trade +419822,International Trade,International Trade +418790,International Trade,International Trade +416936,International Trade,International Trade +416932,International Trade,International Trade +416930,International Trade,International Trade +412299,International Trade,International Trade +412294,International Trade,International Trade +412289,International Trade,International Trade +412276,International Trade,International Trade +412274,International Trade,International Trade +412270,International Trade,International Trade +412267,International Trade,International Trade +412264,International Trade,International Trade +412263,International Trade,International Trade +412259,International Trade,International Trade +412257,International Trade,International Trade +412245,International Trade,International Trade +412241,International Trade,International Trade +412239,International Trade,International Trade +412238,International Trade,International Trade +412236,International Trade,International Trade +412232,International Trade,International Trade +412228,International Trade,International Trade +412225,International Trade,International Trade +412224,International Trade,International Trade +412221,International Trade,International Trade +412219,International Trade,International Trade +412217,International Trade,International Trade +412216,International Trade,International Trade +412214,International Trade,International Trade +412212,International Trade,International Trade +412210,International Trade,International Trade +412208,International Trade,International Trade +412202,International Trade,International Trade +412201,International Trade,International Trade +412188,International Trade,International Trade +412187,International Trade,International Trade +412185,International Trade,International Trade +412184,International Trade,International Trade +412183,International Trade,International Trade +412182,International Trade,International Trade +412181,International Trade,International Trade +412179,International Trade,International Trade +412178,International Trade,International Trade +412176,International Trade,International Trade +412175,International Trade,International Trade +412161,International Trade,International Trade +412158,International Trade,International Trade +412156,International Trade,International Trade +412151,International Trade,International Trade +412150,International Trade,International Trade +412148,International Trade,International Trade +412146,International Trade,International Trade +412143,International Trade,International Trade +412140,International Trade,International Trade +412135,International Trade,International Trade +412133,International Trade,International Trade +412122,International Trade,International Trade +412120,International Trade,International Trade +412116,International Trade,International Trade +412114,International Trade,International Trade +412111,International Trade,International Trade +412108,International Trade,International Trade +412106,International Trade,International Trade +412098,International Trade,International Trade +412068,International Trade,International Trade +412064,International Trade,International Trade +412060,International Trade,International Trade +412056,International Trade,International Trade +412042,International Trade,International Trade +412029,International Trade,International Trade +412017,International Trade,International Trade +409750,International Trade,International Trade +409741,International Trade,International Trade +409730,International Trade,International Trade +409729,International Trade,International Trade +408045,International Trade,International Trade +407054,International Trade,International Trade +407053,International Trade,International Trade +404006,International Trade,International Trade +399037,International Trade,International Trade +399036,International Trade,International Trade +399035,International Trade,International Trade +399034,International Trade,International Trade +399033,International Trade,International Trade +399032,International Trade,International Trade +395773,International Trade,International Trade +395772,International Trade,International Trade +395770,International Trade,International Trade +394573,International Trade,International Trade +394571,International Trade,International Trade +388148,International Trade,International Trade +383503,International Trade,International Trade +380040,International Trade,International Trade +380039,International Trade,International Trade +379948,International Trade,International Trade +379947,International Trade,International Trade +379945,International Trade,International Trade +379944,International Trade,International Trade +379937,International Trade,International Trade +379935,International Trade,International Trade +379929,International Trade,International Trade +379927,International Trade,International Trade +379920,International Trade,International Trade +377230,International Trade,International Trade +377228,International Trade,International Trade +371433,International Trade,International Trade +371426,International Trade,International Trade +371149,International Trade,International Trade +371147,International Trade,International Trade +371145,International Trade,International Trade +371144,International Trade,International Trade +371143,International Trade,International Trade +371142,International Trade,International Trade +371141,International Trade,International Trade +371140,International Trade,International Trade +371139,International Trade,International Trade +371138,International Trade,International Trade +371137,International Trade,International Trade +371135,International Trade,International Trade +371134,International Trade,International Trade +371132,International Trade,International Trade +371131,International Trade,International Trade +371130,International Trade,International Trade +371129,International Trade,International Trade +371127,International Trade,International Trade +371126,International Trade,International Trade +371125,International Trade,International Trade +371124,International Trade,International Trade +371123,International Trade,International Trade +371101,International Trade,International Trade +371100,International Trade,International Trade +371099,International Trade,International Trade +371098,International Trade,International Trade +371096,International Trade,International Trade +371094,International Trade,International Trade +371093,International Trade,International Trade +371091,International Trade,International Trade +371090,International Trade,International Trade +371086,International Trade,International Trade +371084,International Trade,International Trade +371078,International Trade,International Trade +371074,International Trade,International Trade +371070,International Trade,International Trade +371069,International Trade,International Trade +371067,International Trade,International Trade +371066,International Trade,International Trade +371065,International Trade,International Trade +371064,International Trade,International Trade +371062,International Trade,International Trade +371061,International Trade,International Trade +371059,International Trade,International Trade +371057,International Trade,International Trade +371055,International Trade,International Trade +371054,International Trade,International Trade +371051,International Trade,International Trade +371036,International Trade,International Trade +371035,International Trade,International Trade +371034,International Trade,International Trade +371033,International Trade,International Trade +371032,International Trade,International Trade +371030,International Trade,International Trade +371029,International Trade,International Trade +371028,International Trade,International Trade +371027,International Trade,International Trade +371026,International Trade,International Trade +371025,International Trade,International Trade +371024,International Trade,International Trade +371023,International Trade,International Trade +371022,International Trade,International Trade +371021,International Trade,International Trade +371020,International Trade,International Trade +371019,International Trade,International Trade +371018,International Trade,International Trade +371017,International Trade,International Trade +371016,International Trade,International Trade +371015,International Trade,International Trade +371014,International Trade,International Trade +371012,International Trade,International Trade +371011,International Trade,International Trade +371010,International Trade,International Trade +371009,International Trade,International Trade +371007,International Trade,International Trade +371005,International Trade,International Trade +371004,International Trade,International Trade +371003,International Trade,International Trade +371001,International Trade,International Trade +370998,International Trade,International Trade +370997,International Trade,International Trade +370992,International Trade,International Trade +370988,International Trade,International Trade +370986,International Trade,International Trade +370972,International Trade,International Trade +370965,International Trade,International Trade +369562,International Trade,International Trade +369560,International Trade,International Trade +369558,International Trade,International Trade +366758,International Trade,International Trade +363634,International Trade,International Trade +362443,International Trade,International Trade +362441,International Trade,International Trade +362438,International Trade,International Trade +361269,International Trade,International Trade +361265,International Trade,International Trade +359827,International Trade,International Trade +359822,International Trade,International Trade +358386,International Trade,International Trade +358282,International Trade,International Trade +358281,International Trade,International Trade +358280,International Trade,International Trade +358278,International Trade,International Trade +358277,International Trade,International Trade +358276,International Trade,International Trade +358275,International Trade,International Trade +358274,International Trade,International Trade +356513,International Trade,International Trade +356511,International Trade,International Trade +356484,International Trade,International Trade +356482,International Trade,International Trade +356481,International Trade,International Trade +356476,International Trade,International Trade +356473,International Trade,International Trade +356472,International Trade,International Trade +356471,International Trade,International Trade +356470,International Trade,International Trade +356469,International Trade,International Trade +355885,International Trade,International Trade +355881,International Trade,International Trade +351600,International Trade,International Trade +351599,International Trade,International Trade +351593,International Trade,International Trade +351591,International Trade,International Trade +351588,International Trade,International Trade +351586,International Trade,International Trade +351500,International Trade,International Trade +351481,International Trade,International Trade +348872,International Trade,International Trade +348870,International Trade,International Trade +348868,International Trade,International Trade +348734,International Trade,International Trade +348729,International Trade,International Trade +347501,International Trade,International Trade +347499,International Trade,International Trade +341838,International Trade,International Trade +341788,International Trade,International Trade +338565,International Trade,International Trade +338562,International Trade,International Trade +338561,International Trade,International Trade +338537,International Trade,International Trade +338535,International Trade,International Trade +338534,International Trade,International Trade +338533,International Trade,International Trade +338529,International Trade,International Trade +338526,International Trade,International Trade +338523,International Trade,International Trade +338521,International Trade,International Trade +338519,International Trade,International Trade +338516,International Trade,International Trade +338515,International Trade,International Trade +338466,International Trade,International Trade +338465,International Trade,International Trade +338464,International Trade,International Trade +338463,International Trade,International Trade +338462,International Trade,International Trade +338461,International Trade,International Trade +338460,International Trade,International Trade +338459,International Trade,International Trade +338457,International Trade,International Trade +338456,International Trade,International Trade +338364,International Trade,International Trade +338361,International Trade,International Trade +338348,International Trade,International Trade +338347,International Trade,International Trade +338346,International Trade,International Trade +338345,International Trade,International Trade +338343,International Trade,International Trade +338332,International Trade,International Trade +338330,International Trade,International Trade +338327,International Trade,International Trade +338326,International Trade,International Trade +338325,International Trade,International Trade +338324,International Trade,International Trade +338189,International Trade,International Trade +338188,International Trade,International Trade +338187,International Trade,International Trade +338186,International Trade,International Trade +338185,International Trade,International Trade +338184,International Trade,International Trade +338183,International Trade,International Trade +338182,International Trade,International Trade +338181,International Trade,International Trade +338180,International Trade,International Trade +338179,International Trade,International Trade +338178,International Trade,International Trade +338177,International Trade,International Trade +338176,International Trade,International Trade +338175,International Trade,International Trade +338174,International Trade,International Trade +338173,International Trade,International Trade +338172,International Trade,International Trade +338171,International Trade,International Trade +338170,International Trade,International Trade +338169,International Trade,International Trade +338130,International Trade,International Trade +338129,International Trade,International Trade +338128,International Trade,International Trade +338124,International Trade,International Trade +338106,International Trade,International Trade +338104,International Trade,International Trade +337584,International Trade,International Trade +337583,International Trade,International Trade +337582,International Trade,International Trade +337581,International Trade,International Trade +337576,International Trade,International Trade +337575,International Trade,International Trade +337574,International Trade,International Trade +337572,International Trade,International Trade +337571,International Trade,International Trade +337570,International Trade,International Trade +337569,International Trade,International Trade +337568,International Trade,International Trade +337567,International Trade,International Trade +538594,International Trade,International Trade +538587,International Trade,International Trade +534369,International Trade,International Trade +534367,International Trade,International Trade +534366,International Trade,International Trade +532408,International Trade,International Trade +531333,International Trade,International Trade +529787,International Trade,International Trade +529786,International Trade,International Trade +529142,International Trade,International Trade +528008,International Trade,International Trade +528007,International Trade,International Trade +528006,International Trade,International Trade +526016,International Trade,International Trade +526014,International Trade,International Trade +525409,International Trade,International Trade +522540,International Trade,International Trade +522147,International Trade,International Trade +521630,International Trade,International Trade +521627,International Trade,International Trade +519736,International Trade,International Trade +517802,International Trade,International Trade +517799,International Trade,International Trade +517062,International Trade,International Trade +517060,International Trade,International Trade +517057,International Trade,International Trade +517056,International Trade,International Trade +517052,International Trade,International Trade +517044,International Trade,International Trade +515254,International Trade,International Trade +514505,International Trade,International Trade +513699,International Trade,International Trade +512882,International Trade,International Trade +512325,International Trade,International Trade +511613,International Trade,International Trade +509804,International Trade,International Trade +508463,International Trade,International Trade +506836,International Trade,International Trade +504708,International Trade,International Trade +504701,International Trade,International Trade +504699,International Trade,International Trade +504691,International Trade,International Trade +503836,International Trade,International Trade +500557,International Trade,International Trade +500554,International Trade,International Trade +500548,International Trade,International Trade +499192,International Trade,International Trade +499190,International Trade,International Trade +499188,International Trade,International Trade +498569,International Trade,International Trade +498547,International Trade,International Trade +498546,International Trade,International Trade +498510,International Trade,International Trade +498507,International Trade,International Trade +496386,International Trade,International Trade +496361,International Trade,International Trade +495710,International Trade,International Trade +492963,International Trade,International Trade +491051,International Trade,International Trade +491043,International Trade,International Trade +490284,International Trade,International Trade +490275,International Trade,International Trade +486726,International Trade,International Trade +486708,International Trade,International Trade +486704,International Trade,International Trade +486702,International Trade,International Trade +484012,International Trade,International Trade +479760,International Trade,International Trade +477377,International Trade,International Trade +470148,International Trade,International Trade +470139,International Trade,International Trade +470118,International Trade,International Trade +467598,International Trade,International Trade +467588,International Trade,International Trade +464994,International Trade,International Trade +464993,International Trade,International Trade +461857,International Trade,International Trade +461854,International Trade,International Trade +459514,International Trade,International Trade +458810,International Trade,International Trade +458808,International Trade,International Trade +458800,International Trade,International Trade +458795,International Trade,International Trade +457083,International Trade,International Trade +457078,International Trade,International Trade +455714,International Trade,International Trade +455713,International Trade,International Trade +455710,International Trade,International Trade +454189,International Trade,International Trade +451024,International Trade,International Trade +451023,International Trade,International Trade +451022,International Trade,International Trade +451021,International Trade,International Trade +449209,International Trade,International Trade +449207,International Trade,International Trade +449206,International Trade,International Trade +449205,International Trade,International Trade +449204,International Trade,International Trade +449202,International Trade,International Trade +449201,International Trade,International Trade +448057,International Trade,International Trade +445928,International Trade,International Trade +445927,International Trade,International Trade +443294,International Trade,International Trade +442352,International Trade,International Trade +442334,International Trade,International Trade +442265,International Trade,International Trade +442263,International Trade,International Trade +442253,International Trade,International Trade +442250,International Trade,International Trade +442246,International Trade,International Trade +439517,International Trade,International Trade +439498,International Trade,International Trade +439495,International Trade,International Trade +439493,International Trade,International Trade +435316,International Trade,International Trade +435314,International Trade,International Trade +433760,International Trade,International Trade +433755,International Trade,International Trade +481768,Justice and Law Enforcement,Justice and Law Enforcement +479758,Justice and Law Enforcement,Justice and Law Enforcement +509921,Justice and Law Enforcement,Justice and Law Enforcement +508465,Justice and Law Enforcement,Justice and Law Enforcement +491055,Justice and Law Enforcement,Justice and Law Enforcement +491047,Justice and Law Enforcement,Justice and Law Enforcement +486705,Justice and Law Enforcement,Justice and Law Enforcement +442238,Labour,Labour +426174,Labour,Labour +218549,Labour,Labour +202795,Labour,Labour +202610,Labour,Labour +202607,Labour,Labour +316192,Labour,Labour +302471,Labour,Labour +277361,Labour,Labour +277201,Labour,Labour +254332,Labour,Labour +254314,Labour,Labour +244558,Labour,Labour +244557,Labour,Labour +244555,Labour,Labour +244554,Labour,Labour +244552,Labour,Labour +242389,Labour,Labour +233770,Labour,Labour +531807,Labour,Labour +531805,Labour,Labour +531802,Labour,Labour +531797,Labour,Labour +531338,Labour,Labour +531337,Labour,Labour +531335,Labour,Labour +529785,Labour,Labour +528002,Labour,Labour +525905,Labour,Labour +525410,Labour,Labour +525402,Labour,Labour +522548,Labour,Labour +522547,Labour,Labour +522545,Labour,Labour +522147,Labour,Labour +520452,Labour,Labour +519950,Labour,Labour +515564,Labour,Labour +512953,Labour,Labour +512952,Labour,Labour +512951,Labour,Labour +509806,Labour,Labour +504453,Labour,Labour +504450,Labour,Labour +504448,Labour,Labour +504445,Labour,Labour +504444,Labour,Labour +501547,Labour,Labour +500558,Labour,Labour +498569,Labour,Labour +498559,Labour,Labour +498557,Labour,Labour +498545,Labour,Labour +496358,Labour,Labour +484151,Labour,Labour +484027,Labour,Labour +484024,Labour,Labour +481762,Labour,Labour +481760,Labour,Labour +481755,Labour,Labour +481751,Labour,Labour +477353,Labour,Labour +476741,Labour,Labour +475320,Labour,Labour +472662,Labour,Labour +459514,Labour,Labour +459512,Labour,Labour +458797,Labour,Labour +457092,Labour,Labour +454189,Labour,Labour +449202,Labour,Labour +442334,Labour,Labour +470146,Mining,Mining +451008,Mining,Mining +458799,Regional Development,Regional Development +458797,Regional Development,Regional Development +244559,Regional Development,Regional Development +371098,Regional Development,Regional Development +371067,Regional Development,Regional Development +370998,Regional Development,Regional Development +348872,Regional Development,Regional Development +442334,Regional Development,Regional Development +504701,Small Business,Small Business +504699,Small Business,Small Business +114914,Small Business,Small Business +348871,Small Business,Small Business +322313,Small Business,Small Business +241188,Small Business,Small Business +236634,Small Business,Small Business +207517,Small Business,Small Business +189828,Small Business,Small Business +189826,Small Business,Small Business +189151,Small Business,Small Business +185887,Small Business,Small Business +177766,Small Business,Small Business +490275,Small Business,Small Business +477377,Small Business,Small Business +458806,Small Business,Small Business +456253,Small Business,Small Business +449202,Small Business,Small Business +449201,Small Business,Small Business +442334,Small Business,Small Business +442265,Small Business,Small Business +435314,Small Business,Small Business +433744,Small Business,Small Business +433743,Small Business,Small Business +426172,Small Business,Small Business +426170,Small Business,Small Business +412298,Small Business,Small Business +412285,Small Business,Small Business +412212,Taxation and Finance,Taxation and Finance +412210,Taxation and Finance,Taxation and Finance +80415,Taxation and Finance,Taxation and Finance +77637,Taxation and Finance,Taxation and Finance +77594,Taxation and Finance,Taxation and Finance +139974,Taxation and Finance,Taxation and Finance +139336,Taxation and Finance,Taxation and Finance +210210,Taxation and Finance,Taxation and Finance +207536,Taxation and Finance,Taxation and Finance +202778,Taxation and Finance,Taxation and Finance +202610,Taxation and Finance,Taxation and Finance +202607,Taxation and Finance,Taxation and Finance +202601,Taxation and Finance,Taxation and Finance +202580,Taxation and Finance,Taxation and Finance +202574,Taxation and Finance,Taxation and Finance +202571,Taxation and Finance,Taxation and Finance +200465,Taxation and Finance,Taxation and Finance +189826,Taxation and Finance,Taxation and Finance +189151,Taxation and Finance,Taxation and Finance +180524,Taxation and Finance,Taxation and Finance +175243,Taxation and Finance,Taxation and Finance +168503,Taxation and Finance,Taxation and Finance +168497,Taxation and Finance,Taxation and Finance +167577,Taxation and Finance,Taxation and Finance +167576,Taxation and Finance,Taxation and Finance +167575,Taxation and Finance,Taxation and Finance +166059,Taxation and Finance,Taxation and Finance +166057,Taxation and Finance,Taxation and Finance +166054,Taxation and Finance,Taxation and Finance +166051,Taxation and Finance,Taxation and Finance +166048,Taxation and Finance,Taxation and Finance +166047,Taxation and Finance,Taxation and Finance +166045,Taxation and Finance,Taxation and Finance +166038,Taxation and Finance,Taxation and Finance +166037,Taxation and Finance,Taxation and Finance +164066,Taxation and Finance,Taxation and Finance +162709,Taxation and Finance,Taxation and Finance +162708,Taxation and Finance,Taxation and Finance +338467,Taxation and Finance,Taxation and Finance +338466,Taxation and Finance,Taxation and Finance +338465,Taxation and Finance,Taxation and Finance +338464,Taxation and Finance,Taxation and Finance +338463,Taxation and Finance,Taxation and Finance +338462,Taxation and Finance,Taxation and Finance +338461,Taxation and Finance,Taxation and Finance +338460,Taxation and Finance,Taxation and Finance +338459,Taxation and Finance,Taxation and Finance +338457,Taxation and Finance,Taxation and Finance +338456,Taxation and Finance,Taxation and Finance +338364,Taxation and Finance,Taxation and Finance +338361,Taxation and Finance,Taxation and Finance +338348,Taxation and Finance,Taxation and Finance +338347,Taxation and Finance,Taxation and Finance +338346,Taxation and Finance,Taxation and Finance +338345,Taxation and Finance,Taxation and Finance +338343,Taxation and Finance,Taxation and Finance +338332,Taxation and Finance,Taxation and Finance +338330,Taxation and Finance,Taxation and Finance +338327,Taxation and Finance,Taxation and Finance +338326,Taxation and Finance,Taxation and Finance +338325,Taxation and Finance,Taxation and Finance +338324,Taxation and Finance,Taxation and Finance +338189,Taxation and Finance,Taxation and Finance +338188,Taxation and Finance,Taxation and Finance +338187,Taxation and Finance,Taxation and Finance +338186,Taxation and Finance,Taxation and Finance +338185,Taxation and Finance,Taxation and Finance +338184,Taxation and Finance,Taxation and Finance +338183,Taxation and Finance,Taxation and Finance +338182,Taxation and Finance,Taxation and Finance +338181,Taxation and Finance,Taxation and Finance +338180,Taxation and Finance,Taxation and Finance +338179,Taxation and Finance,Taxation and Finance +338178,Taxation and Finance,Taxation and Finance +338177,Taxation and Finance,Taxation and Finance +338176,Taxation and Finance,Taxation and Finance +338175,Taxation and Finance,Taxation and Finance +338174,Taxation and Finance,Taxation and Finance +338173,Taxation and Finance,Taxation and Finance +338172,Taxation and Finance,Taxation and Finance +338171,Taxation and Finance,Taxation and Finance +338170,Taxation and Finance,Taxation and Finance +338169,Taxation and Finance,Taxation and Finance +338130,Taxation and Finance,Taxation and Finance +338129,Taxation and Finance,Taxation and Finance +338128,Taxation and Finance,Taxation and Finance +338124,Taxation and Finance,Taxation and Finance +338106,Taxation and Finance,Taxation and Finance +338104,Taxation and Finance,Taxation and Finance +337584,Taxation and Finance,Taxation and Finance +337583,Taxation and Finance,Taxation and Finance +337582,Taxation and Finance,Taxation and Finance +337581,Taxation and Finance,Taxation and Finance +337576,Taxation and Finance,Taxation and Finance +337575,Taxation and Finance,Taxation and Finance +337574,Taxation and Finance,Taxation and Finance +337572,Taxation and Finance,Taxation and Finance +337571,Taxation and Finance,Taxation and Finance +337570,Taxation and Finance,Taxation and Finance +337569,Taxation and Finance,Taxation and Finance +337568,Taxation and Finance,Taxation and Finance +337567,Taxation and Finance,Taxation and Finance +337566,Taxation and Finance,Taxation and Finance +337565,Taxation and Finance,Taxation and Finance +337559,Taxation and Finance,Taxation and Finance +337558,Taxation and Finance,Taxation and Finance +337556,Taxation and Finance,Taxation and Finance +337555,Taxation and Finance,Taxation and Finance +337553,Taxation and Finance,Taxation and Finance +337552,Taxation and Finance,Taxation and Finance +337551,Taxation and Finance,Taxation and Finance +337550,Taxation and Finance,Taxation and Finance +337512,Taxation and Finance,Taxation and Finance +318032,Taxation and Finance,Taxation and Finance +318018,Taxation and Finance,Taxation and Finance +318015,Taxation and Finance,Taxation and Finance +313791,Taxation and Finance,Taxation and Finance +313263,Taxation and Finance,Taxation and Finance +297085,Taxation and Finance,Taxation and Finance +297084,Taxation and Finance,Taxation and Finance +297082,Taxation and Finance,Taxation and Finance +297080,Taxation and Finance,Taxation and Finance +261632,Taxation and Finance,Taxation and Finance +261618,Taxation and Finance,Taxation and Finance +261616,Taxation and Finance,Taxation and Finance +261615,Taxation and Finance,Taxation and Finance +261613,Taxation and Finance,Taxation and Finance +261611,Taxation and Finance,Taxation and Finance +254332,Taxation and Finance,Taxation and Finance +254314,Taxation and Finance,Taxation and Finance +250286,Taxation and Finance,Taxation and Finance +250282,Taxation and Finance,Taxation and Finance +244558,Taxation and Finance,Taxation and Finance +244557,Taxation and Finance,Taxation and Finance +244555,Taxation and Finance,Taxation and Finance +244554,Taxation and Finance,Taxation and Finance +244552,Taxation and Finance,Taxation and Finance +244551,Taxation and Finance,Taxation and Finance +244530,Taxation and Finance,Taxation and Finance +242389,Taxation and Finance,Taxation and Finance +241201,Taxation and Finance,Taxation and Finance +241192,Taxation and Finance,Taxation and Finance +236631,Taxation and Finance,Taxation and Finance +230224,Taxation and Finance,Taxation and Finance +230217,Taxation and Finance,Taxation and Finance +412208,Taxation and Finance,Taxation and Finance +412202,Taxation and Finance,Taxation and Finance +412201,Taxation and Finance,Taxation and Finance +412188,Taxation and Finance,Taxation and Finance +412187,Taxation and Finance,Taxation and Finance +412185,Taxation and Finance,Taxation and Finance +412184,Taxation and Finance,Taxation and Finance +412183,Taxation and Finance,Taxation and Finance +412182,Taxation and Finance,Taxation and Finance +412181,Taxation and Finance,Taxation and Finance +412179,Taxation and Finance,Taxation and Finance +412178,Taxation and Finance,Taxation and Finance +412176,Taxation and Finance,Taxation and Finance +412175,Taxation and Finance,Taxation and Finance +412161,Taxation and Finance,Taxation and Finance +412158,Taxation and Finance,Taxation and Finance +412156,Taxation and Finance,Taxation and Finance +412151,Taxation and Finance,Taxation and Finance +412150,Taxation and Finance,Taxation and Finance +412148,Taxation and Finance,Taxation and Finance +412146,Taxation and Finance,Taxation and Finance +412143,Taxation and Finance,Taxation and Finance +412140,Taxation and Finance,Taxation and Finance +412135,Taxation and Finance,Taxation and Finance +412133,Taxation and Finance,Taxation and Finance +412122,Taxation and Finance,Taxation and Finance +412120,Taxation and Finance,Taxation and Finance +412116,Taxation and Finance,Taxation and Finance +412114,Taxation and Finance,Taxation and Finance +412111,Taxation and Finance,Taxation and Finance +412108,Taxation and Finance,Taxation and Finance +412106,Taxation and Finance,Taxation and Finance +412098,Taxation and Finance,Taxation and Finance +412068,Taxation and Finance,Taxation and Finance +412064,Taxation and Finance,Taxation and Finance +412060,Taxation and Finance,Taxation and Finance +412056,Taxation and Finance,Taxation and Finance +412042,Taxation and Finance,Taxation and Finance +412029,Taxation and Finance,Taxation and Finance +412017,Taxation and Finance,Taxation and Finance +409756,Taxation and Finance,Taxation and Finance +409750,Taxation and Finance,Taxation and Finance +392796,Taxation and Finance,Taxation and Finance +392795,Taxation and Finance,Taxation and Finance +380040,Taxation and Finance,Taxation and Finance +380039,Taxation and Finance,Taxation and Finance +379948,Taxation and Finance,Taxation and Finance +379947,Taxation and Finance,Taxation and Finance +379945,Taxation and Finance,Taxation and Finance +379944,Taxation and Finance,Taxation and Finance +379937,Taxation and Finance,Taxation and Finance +379935,Taxation and Finance,Taxation and Finance +379929,Taxation and Finance,Taxation and Finance +371433,Taxation and Finance,Taxation and Finance +371149,Taxation and Finance,Taxation and Finance +371147,Taxation and Finance,Taxation and Finance +371146,Taxation and Finance,Taxation and Finance +371145,Taxation and Finance,Taxation and Finance +371144,Taxation and Finance,Taxation and Finance +371143,Taxation and Finance,Taxation and Finance +371142,Taxation and Finance,Taxation and Finance +371141,Taxation and Finance,Taxation and Finance +371140,Taxation and Finance,Taxation and Finance +371139,Taxation and Finance,Taxation and Finance +371138,Taxation and Finance,Taxation and Finance +371137,Taxation and Finance,Taxation and Finance +371135,Taxation and Finance,Taxation and Finance +371134,Taxation and Finance,Taxation and Finance +371132,Taxation and Finance,Taxation and Finance +371131,Taxation and Finance,Taxation and Finance +371130,Taxation and Finance,Taxation and Finance +371129,Taxation and Finance,Taxation and Finance +371127,Taxation and Finance,Taxation and Finance +371126,Taxation and Finance,Taxation and Finance +371125,Taxation and Finance,Taxation and Finance +371124,Taxation and Finance,Taxation and Finance +371123,Taxation and Finance,Taxation and Finance +371101,Taxation and Finance,Taxation and Finance +371100,Taxation and Finance,Taxation and Finance +371099,Taxation and Finance,Taxation and Finance +371098,Taxation and Finance,Taxation and Finance +371096,Taxation and Finance,Taxation and Finance +371094,Taxation and Finance,Taxation and Finance +371093,Taxation and Finance,Taxation and Finance +371091,Taxation and Finance,Taxation and Finance +371090,Taxation and Finance,Taxation and Finance +371086,Taxation and Finance,Taxation and Finance +371084,Taxation and Finance,Taxation and Finance +371078,Taxation and Finance,Taxation and Finance +371074,Taxation and Finance,Taxation and Finance +371070,Taxation and Finance,Taxation and Finance +371069,Taxation and Finance,Taxation and Finance +371067,Taxation and Finance,Taxation and Finance +371066,Taxation and Finance,Taxation and Finance +371065,Taxation and Finance,Taxation and Finance +371064,Taxation and Finance,Taxation and Finance +371062,Taxation and Finance,Taxation and Finance +371061,Taxation and Finance,Taxation and Finance +371059,Taxation and Finance,Taxation and Finance +371057,Taxation and Finance,Taxation and Finance +371055,Taxation and Finance,Taxation and Finance +371054,Taxation and Finance,Taxation and Finance +371053,Taxation and Finance,Taxation and Finance +371051,Taxation and Finance,Taxation and Finance +371036,Taxation and Finance,Taxation and Finance +371035,Taxation and Finance,Taxation and Finance +371034,Taxation and Finance,Taxation and Finance +371033,Taxation and Finance,Taxation and Finance +371032,Taxation and Finance,Taxation and Finance +371030,Taxation and Finance,Taxation and Finance +371029,Taxation and Finance,Taxation and Finance +371028,Taxation and Finance,Taxation and Finance +371027,Taxation and Finance,Taxation and Finance +371026,Taxation and Finance,Taxation and Finance +371025,Taxation and Finance,Taxation and Finance +371024,Taxation and Finance,Taxation and Finance +371023,Taxation and Finance,Taxation and Finance +371022,Taxation and Finance,Taxation and Finance +371021,Taxation and Finance,Taxation and Finance +371020,Taxation and Finance,Taxation and Finance +371019,Taxation and Finance,Taxation and Finance +371018,Taxation and Finance,Taxation and Finance +371017,Taxation and Finance,Taxation and Finance +371016,Taxation and Finance,Taxation and Finance +371015,Taxation and Finance,Taxation and Finance +371014,Taxation and Finance,Taxation and Finance +371012,Taxation and Finance,Taxation and Finance +371011,Taxation and Finance,Taxation and Finance +371010,Taxation and Finance,Taxation and Finance +371009,Taxation and Finance,Taxation and Finance +371007,Taxation and Finance,Taxation and Finance +371005,Taxation and Finance,Taxation and Finance +371004,Taxation and Finance,Taxation and Finance +371003,Taxation and Finance,Taxation and Finance +371001,Taxation and Finance,Taxation and Finance +370998,Taxation and Finance,Taxation and Finance +370997,Taxation and Finance,Taxation and Finance +370992,Taxation and Finance,Taxation and Finance +370988,Taxation and Finance,Taxation and Finance +370986,Taxation and Finance,Taxation and Finance +370972,Taxation and Finance,Taxation and Finance +370965,Taxation and Finance,Taxation and Finance +362442,Taxation and Finance,Taxation and Finance +348869,Taxation and Finance,Taxation and Finance +348868,Taxation and Finance,Taxation and Finance +338565,Taxation and Finance,Taxation and Finance +338562,Taxation and Finance,Taxation and Finance +338561,Taxation and Finance,Taxation and Finance +338537,Taxation and Finance,Taxation and Finance +338535,Taxation and Finance,Taxation and Finance +338534,Taxation and Finance,Taxation and Finance +338533,Taxation and Finance,Taxation and Finance +338529,Taxation and Finance,Taxation and Finance +338526,Taxation and Finance,Taxation and Finance +338523,Taxation and Finance,Taxation and Finance +338521,Taxation and Finance,Taxation and Finance +338519,Taxation and Finance,Taxation and Finance +338516,Taxation and Finance,Taxation and Finance +338515,Taxation and Finance,Taxation and Finance +338513,Taxation and Finance,Taxation and Finance +338510,Taxation and Finance,Taxation and Finance +541532,Taxation and Finance,Taxation and Finance +534371,Taxation and Finance,Taxation and Finance +534370,Taxation and Finance,Taxation and Finance +531808,Taxation and Finance,Taxation and Finance +531332,Taxation and Finance,Taxation and Finance +519965,Taxation and Finance,Taxation and Finance +517797,Taxation and Finance,Taxation and Finance +507395,Taxation and Finance,Taxation and Finance +504722,Taxation and Finance,Taxation and Finance +504718,Taxation and Finance,Taxation and Finance +504715,Taxation and Finance,Taxation and Finance +504694,Taxation and Finance,Taxation and Finance +504448,Taxation and Finance,Taxation and Finance +504446,Taxation and Finance,Taxation and Finance +498504,Taxation and Finance,Taxation and Finance +486722,Taxation and Finance,Taxation and Finance +484027,Taxation and Finance,Taxation and Finance +481750,Taxation and Finance,Taxation and Finance +479759,Taxation and Finance,Taxation and Finance +477392,Taxation and Finance,Taxation and Finance +477370,Taxation and Finance,Taxation and Finance +477350,Taxation and Finance,Taxation and Finance +477123,Taxation and Finance,Taxation and Finance +475317,Taxation and Finance,Taxation and Finance +472692,Taxation and Finance,Taxation and Finance +472675,Taxation and Finance,Taxation and Finance +461856,Taxation and Finance,Taxation and Finance +459514,Taxation and Finance,Taxation and Finance +458810,Taxation and Finance,Taxation and Finance +458808,Taxation and Finance,Taxation and Finance +458804,Taxation and Finance,Taxation and Finance +458795,Taxation and Finance,Taxation and Finance +456253,Taxation and Finance,Taxation and Finance +456252,Taxation and Finance,Taxation and Finance +456251,Taxation and Finance,Taxation and Finance +455714,Taxation and Finance,Taxation and Finance +455713,Taxation and Finance,Taxation and Finance +455710,Taxation and Finance,Taxation and Finance +455708,Taxation and Finance,Taxation and Finance +451024,Taxation and Finance,Taxation and Finance +451021,Taxation and Finance,Taxation and Finance +449209,Taxation and Finance,Taxation and Finance +449202,Taxation and Finance,Taxation and Finance +449201,Taxation and Finance,Taxation and Finance +442334,Taxation and Finance,Taxation and Finance +442265,Taxation and Finance,Taxation and Finance +442253,Taxation and Finance,Taxation and Finance +433745,Taxation and Finance,Taxation and Finance +433744,Taxation and Finance,Taxation and Finance +433743,Taxation and Finance,Taxation and Finance +430843,Taxation and Finance,Taxation and Finance +426169,Taxation and Finance,Taxation and Finance +423881,Taxation and Finance,Taxation and Finance +421564,Taxation and Finance,Taxation and Finance +412298,Taxation and Finance,Taxation and Finance +412285,Taxation and Finance,Taxation and Finance +412276,Taxation and Finance,Taxation and Finance +412274,Taxation and Finance,Taxation and Finance +412270,Taxation and Finance,Taxation and Finance +412267,Taxation and Finance,Taxation and Finance +412264,Taxation and Finance,Taxation and Finance +412263,Taxation and Finance,Taxation and Finance +412259,Taxation and Finance,Taxation and Finance +412257,Taxation and Finance,Taxation and Finance +412245,Taxation and Finance,Taxation and Finance +412241,Taxation and Finance,Taxation and Finance +412239,Taxation and Finance,Taxation and Finance +412238,Taxation and Finance,Taxation and Finance +412236,Taxation and Finance,Taxation and Finance +412232,Taxation and Finance,Taxation and Finance +412228,Taxation and Finance,Taxation and Finance +412225,Taxation and Finance,Taxation and Finance +412224,Taxation and Finance,Taxation and Finance +412221,Taxation and Finance,Taxation and Finance +412219,Taxation and Finance,Taxation and Finance +412217,Taxation and Finance,Taxation and Finance +412216,Taxation and Finance,Taxation and Finance +517804,Transportation,Transportation +479757,Transportation,Transportation +520343,Consumer Issues,Consumer Issues +413184,Employment and Training,Employment and Training +168431,Energy,Energy +468570,Environment,Environment +431061,Financial Institutions,Financial Institutions +520343,Immigration,Immigration +515999,Industry,Industry +168431,Internal Trade,Internal Trade +237195,International Relations,International Relations +520345,International Trade,International Trade +396553,Regional Development,Regional Development +431066,Small Business,Small Business +237195,Taxation and Finance,Taxation and Finance +520344,Transportation,Transportation +76043,International Trade,International Trade +77720,Intellectual Property,Intellectual Property +393075,Education,Education +239891,Health,Health +263149,Sports,Sports +108695,Other,Canadian Heritage +488861,International Trade,International Trade +443533,Agriculture,Agriculture +399845,Consumer Issues,Consumer Issues +469971,Health,Health +416506,Industry,Industry +343750,Infrastructure,Infrastructure +393656,Sports,Sports +390055,Taxation and Finance,Taxation and Finance +318617,Transportation,Transportation +448028,Transportation,Transportation +88226,Employment and Training,Employment and Training +162404,Energy,Energy +412268,Environment,Environment +378976,Financial Institutions,Financial Institutions +437724,Fisheries,Fisheries +162472,Health,Health +162465,Industry,Industry +487896,Infrastructure,Infrastructure +250287,Internal Trade,Internal Trade +287209,International Relations,International Relations +378969,International Trade,International Trade +312752,Labour,Labour +456871,Mining,Mining +487902,Regional Development,Regional Development +135761,Small Business,Small Business +437724,Taxation and Finance,Taxation and Finance +113487,Education,Education +388961,Infrastructure,Infrastructure +171179,International Trade,International Trade +387011,Transportation,Transportation +257912,Consumer Issues,Consumer Issues +261409,Energy,Energy +261409,Environment,Environment +239570,Financial Institutions,Financial Institutions +102255,Industry,Industry +126814,Infrastructure,Infrastructure +161004,Small Business,Small Business +475779,Taxation and Finance,Taxation and Finance +484500,Agriculture,Agriculture +335577,Consumer Issues,Consumer Issues +522281,Environment,Environment +443337,Health,Health +312887,Internal Trade,Internal Trade +460899,International Trade,International Trade +160539,Defence,Defence +158789,Health,Health +460523,Defence,Defence +327453,Industry,Industry +377491,Internal Trade,Internal Trade +327453,International Relations,International Relations +497065,International Trade,International Trade +351662,Regional Development,Regional Development +351668,Small Business,Small Business +337770,International Trade,International Trade +454237,Small Business,Small Business +533269,Health,Health +503794,Industry,Industry +386667,Intellectual Property,Intellectual Property +188028,Taxation and Finance,Taxation and Finance +79194,International Trade,International Trade +86074,Government Procurement,Government Procurement +89134,Government Procurement,Government Procurement +418050,Agriculture,Agriculture +74194,Internal Trade,Internal Trade +251030,International Trade,International Trade +473175,Agriculture,Agriculture +271289,Employment and Training,Employment and Training +496714,Health,Health +534239,Industry,Industry +299242,Internal Trade,Internal Trade +459038,International Trade,International Trade +520825,Transportation,Transportation +444023,Agriculture,Agriculture +361824,Consumer Issues,Consumer Issues +419564,Environment,Environment +145910,Fisheries,Fisheries +360725,Forestry,Forestry +410252,Health,Health +441780,Industry,Industry +176771,Internal Trade,Internal Trade +364984,International Relations,International Relations +360724,International Trade,International Trade +145910,Other,Protection of organic integrity +451390,Agriculture,Agriculture +513561,Internal Trade,Internal Trade +473577,International Trade,International Trade +77716,Regional Development,Regional Development +130554,Government Procurement,Government Procurement +130554,Health,Health +151851,Taxation and Finance,Taxation and Finance +437766,Transportation,Transportation +91534,Energy,Energy +91534,Environment,Environment +94575,Fisheries,Fisheries +106374,Industry,Industry +100994,Industry,Industry +521630,Consumer Issues,Consumer Issues +451022,Education,Education +371141,Employment and Training,Employment and Training +416927,Energy,Energy +164332,Environment,Environment +498554,Forestry,Forestry +464992,Government Procurement,Government Procurement +486705,Health,Health +541350,Immigration,Immigration +476698,Industry,Industry +233779,Infrastructure,Infrastructure +442265,Internal Trade,Internal Trade +381521,International Relations,International Relations +432332,International Trade,International Trade +484027,Justice and Law Enforcement,Justice and Law Enforcement +442265,Labour,Labour +498542,Mining,Mining +442265,Regional Development,Regional Development +409756,Small Business,Small Business +412214,Taxation and Finance,Taxation and Finance +521630,Transportation,Transportation +80937,Taxation and Finance,Taxation and Finance +79517,Financial Institutions,Financial Institutions +75797,Transportation,Transportation +172244,International Relations,International Relations +172244,Mining,Mining +242491,Consumer Issues,Consumer Issues +273129,Health,Health +249671,Industry,Industry +77722,Energy,Energy +349259,Environment,Environment +77722,Industry,Industry +111615,International Trade,International Trade +349260,Taxation and Finance,Taxation and Finance +85345,Other,Sustainable Development +87255,Financial Institutions,Financial Institutions +117604,Industry,Industry +89696,Other,Emergency Management and Public Safety +114874,Agriculture,Agriculture +114874,International Trade,International Trade +94514,Agriculture,Agriculture +94514,Environment,Environment +94514,Health,Health +94514,International Trade,International Trade +110356,Mining,Mines +98695,Health,Health +108542,Taxation and Finance,Impôts et finances +135979,Health,Health +314709,Industry,Industry +215687,International Trade,International Trade +273627,Transportation,Transportation +167578,Transportation,Transportation +442334,Transportation,Transportation +442265,Transportation,Transportation +526020,Transportation,Transportation +526018,Transportation,Transportation +526017,Transportation,Transportation +526016,Transportation,Transportation +526015,Transportation,Transportation +75099,Transportation,Transportation +75095,Transportation,Transportation +241349,Consumer Issues,Consumer Issues +221848,Consumer Issues,Consumer Issues +87058,Consumer Issues,Consumer Issues +87057,Consumer Issues,Consumer Issues +87056,Consumer Issues,Consumer Issues +87055,Consumer Issues,Consumer Issues +87054,Consumer Issues,Consumer Issues +84134,Consumer Issues,Consumer Issues +273871,Consumer Issues,Consumer Issues +273137,Consumer Issues,Consumer Issues +273136,Consumer Issues,Consumer Issues +273135,Consumer Issues,Consumer Issues +273133,Consumer Issues,Consumer Issues +273129,Consumer Issues,Consumer Issues +249694,Consumer Issues,Consumer Issues +249677,Consumer Issues,Consumer Issues +249671,Consumer Issues,Consumer Issues +246854,Consumer Issues,Consumer Issues +241349,Health,Health +221848,Health,Health +160580,Health,Health +273871,Health,Health +273137,Health,Health +273136,Health,Health +273135,Health,Health +273133,Health,Health +242491,Industry,Industry +241349,Industry,Industry +192417,Industry,Industry +192416,Industry,Industry +192415,Industry,Industry +192414,Industry,Industry +192413,Industry,Industry +192412,Industry,Industry +192411,Industry,Industry +192410,Industry,Industry +192409,Industry,Industry +192408,Industry,Industry +192407,Industry,Industry +192406,Industry,Industry +192405,Industry,Industry +252190,Industry,Industry +249694,Industry,Industry +249677,Industry,Industry +324705,Energy,Energy +273714,Environment,Environment +88185,Environment,Environment +85345,Environment,Environment +77722,Environment,Environment +122655,Environment,Environment +120716,Environment,Environment +120714,Environment,Environment +111614,Environment,Environment +349260,Environment,Environment +324710,International Trade,International Trade +349259,Taxation and Finance,Taxation and Finance +87254,Financial Institutions,Financial Institutions +117603,Industry,Industry +117602,Industry,Industry +93813,Industry,Industry +117601,Industry,Industry +117600,Industry,Industry +117598,Industry,Industry +117596,Industry,Industry +117595,Industry,Industry +121277,Industry,Industry +89695,Other,Emergency Management and Public Safety +89694,Other,Emergency Management and Public Safety +132914,Other,Emergency Management and Public Safety +114635,Other,Emergency Management and Public Safety +114634,Other,Emergency Management and Public Safety +109995,Other,Emergency Management and Public Safety +246010,Agriculture,Agriculture +246009,Agriculture,Agriculture +187925,International Trade,International Trade +287369,International Trade,International Trade +110355,Mining,Mines +110354,Mining,Mines +98694,Health,Health +108539,Taxation and Finance,Impôts et finances +76815,Taxation and Finance,Impôts et finances +121306,Health,Health +312691,Industry,Industry +295171,Industry,Industry +164566,Industry,Industry +164565,Industry,Industry +157370,Industry,Industry +156953,Industry,Industry +150878,Industry,Industry +150877,Industry,Industry +221507,Industry,Industry +195303,Industry,Industry +195302,Industry,Industry +189539,Industry,Industry +175514,Industry,Industry +175513,Industry,Industry +167404,Industry,Industry +167403,Industry,Industry +167402,Industry,Industry +167401,Industry,Industry +167398,Industry,Industry +394360,Industry,Industry +379715,Industry,Industry +377305,Industry,Industry +369024,Industry,Industry +369022,Industry,Industry +369015,Industry,Industry +369013,Industry,Industry +366553,Industry,Industry +363391,Industry,Industry +363388,Industry,Industry +356326,Industry,Industry +353857,Industry,Industry +344826,Industry,Industry +344825,Industry,Industry +343570,Industry,Industry +337839,Industry,Industry +337592,Industry,Industry +337334,Industry,Industry +337333,Industry,Industry +337332,Industry,Industry +337331,Industry,Industry +337330,Industry,Industry +334314,Industry,Industry +323830,Industry,Industry +321496,Industry,Industry +314714,Industry,Industry +314713,Industry,Industry +314712,Industry,Industry +314711,Industry,Industry +314710,Industry,Industry +207568,International Trade,International Trade +396669,International Trade,International Trade +160574,International Trade,International Trade +157370,International Trade,International Trade +157369,International Trade,International Trade +156953,International Trade,International Trade +150878,International Trade,International Trade +150877,International Trade,International Trade +202367,International Trade,International Trade +195302,International Trade,International Trade +189539,International Trade,International Trade +175514,International Trade,International Trade +167404,International Trade,International Trade +167403,International Trade,International Trade +167402,International Trade,International Trade +167401,International Trade,International Trade +167398,International Trade,International Trade +164566,International Trade,International Trade +164564,International Trade,International Trade +318491,International Trade,International Trade +259056,International Trade,International Trade +490065,Infrastructure,Infrastructure +486833,Infrastructure,Infrastructure +164291,Infrastructure,Infrastructure +162572,Infrastructure,Infrastructure +160002,Infrastructure,Infrastructure +160000,Infrastructure,Infrastructure +159995,Infrastructure,Infrastructure +313076,Infrastructure,Infrastructure +313048,Infrastructure,Infrastructure +269696,Infrastructure,Infrastructure +254209,Infrastructure,Infrastructure +244423,Infrastructure,Infrastructure +207495,Infrastructure,Infrastructure +207492,Infrastructure,Infrastructure +207491,Infrastructure,Infrastructure +207486,Infrastructure,Infrastructure +207476,Infrastructure,Infrastructure +207307,Infrastructure,Infrastructure +200935,Infrastructure,Infrastructure +189780,Infrastructure,Infrastructure +186324,Infrastructure,Infrastructure +173636,Infrastructure,Infrastructure +170647,Infrastructure,Infrastructure +170646,Infrastructure,Infrastructure +170641,Infrastructure,Infrastructure +170635,Infrastructure,Infrastructure +479968,Infrastructure,Infrastructure +475061,Infrastructure,Infrastructure +448119,Infrastructure,Infrastructure +420499,Infrastructure,Infrastructure +412952,Infrastructure,Infrastructure +412812,Infrastructure,Infrastructure +407676,Infrastructure,Infrastructure +397143,Infrastructure,Infrastructure +397141,Infrastructure,Infrastructure +390817,Infrastructure,Infrastructure +388049,Infrastructure,Infrastructure +382519,Infrastructure,Infrastructure +381460,Infrastructure,Infrastructure +379324,Infrastructure,Infrastructure +376706,Infrastructure,Infrastructure +376703,Infrastructure,Infrastructure +376699,Infrastructure,Infrastructure +376698,Infrastructure,Infrastructure +372511,Infrastructure,Infrastructure +372508,Infrastructure,Infrastructure +372507,Infrastructure,Infrastructure +372505,Infrastructure,Infrastructure +369011,Infrastructure,Infrastructure +369009,Infrastructure,Infrastructure +369007,Infrastructure,Infrastructure +365230,Infrastructure,Infrastructure +365229,Infrastructure,Infrastructure +358105,Infrastructure,Infrastructure +358103,Infrastructure,Infrastructure +351379,Infrastructure,Infrastructure +351377,Infrastructure,Infrastructure +351376,Infrastructure,Infrastructure +349016,Infrastructure,Infrastructure +347222,Infrastructure,Infrastructure +347219,Infrastructure,Infrastructure +529000,Infrastructure,Infrastructure +522464,Infrastructure,Infrastructure +519880,Infrastructure,Infrastructure +517585,Infrastructure,Infrastructure +500714,Infrastructure,Infrastructure +500713,Infrastructure,Infrastructure +497886,Infrastructure,Infrastructure +273382,Regional Development,Regional Development +486832,Regional Development,Regional Development +273381,Regional Development,Regional Development +189779,Regional Development,Regional Development +187544,Regional Development,Regional Development +170644,Regional Development,Regional Development +313048,Regional Development,Regional Development +310331,Regional Development,Regional Development +98154,Other,Telecommunications +89054,Other,Application of GST Direct Sellers Mechanism +90296,Taxation and Finance,Taxation and Finance +76386,Taxation and Finance,Taxation and Finance +96135,Taxation and Finance,Taxation and Finance +77192,Other,Federal-Provincial Relations +77190,Other,Federal-Provincial Relations +77199,Other,Federal-Provincial Relations +463305,Industry,Industry +538564,Industry,Industry +160312,Industry,Industry +242309,Industry,Industry +377248,Industry,Industry +541697,Internal Trade,Internal Trade +528657,Internal Trade,Internal Trade +135774,Internal Trade,Internal Trade +132474,Internal Trade,Internal Trade +128857,Internal Trade,Internal Trade +85075,Internal Trade,Internal Trade +377248,Internal Trade,Internal Trade +347206,Internal Trade,Internal Trade +347063,Internal Trade,Internal Trade +408283,International Relations,International Relations +400515,International Relations,International Relations +324033,International Relations,International Relations +106284,Other,International Trade +97287,Other,International Trade +88167,Other,International Trade +80815,Other,International Trade +77196,Other,International Trade +77193,Other,International Trade +77192,Other,International Trade +138780,Other,International Trade +132474,Other,International Trade +115194,Other,International Trade +138780,Other,Research +128857,Other,Research +97286,Other,Research +97285,Other,Research +97283,Other,Research +97277,Other,Research +97274,Other,Research +77192,Other,Research +77185,Other,Research +433095,Defence,Défense +430285,Defence,Défense +98438,Defence,Défense +98437,Defence,Défense +95136,Defence,Défense +95135,Defence,Défense +95134,Defence,Défense +94257,Defence,Défense +90215,Defence,Défense +85596,Defence,Défense +81635,Defence,Défense +200907,Defence,Défense +195467,Defence,Défense +195466,Defence,Défense +195464,Defence,Défense +190564,Defence,Défense +175913,Defence,Défense +175912,Defence,Défense +173904,Defence,Défense +165915,Defence,Défense +160168,Defence,Défense +157352,Defence,Défense +157351,Defence,Défense +154966,Defence,Défense +154799,Defence,Défense +384089,Defence,Défense +384088,Defence,Défense +381417,Defence,Défense +359042,Defence,Défense +335564,Defence,Défense +236149,Defence,Défense +233989,Defence,Défense +447557,Defence,Défense +447553,Defence,Défense +436644,Defence,Défense +433097,Defence,Défense +132719,Industry,Industry +132714,Industry,Industry +132726,Industry,Industry +132724,Industry,Industry +77770,Infrastructure,Infrastructure +77765,Infrastructure,Infrastructure +90466,Infrastructure,Infrastructure +90459,Infrastructure,Infrastructure +77996,Infrastructure,Infrastructure +103580,Other,aviation weather services +103579,Other,aviation weather services +100905,Other,aviation weather services +100902,Other,aviation weather services +96198,Other,aviation weather services +93457,Other,aviation weather services +89941,Other,aviation weather services +84477,Other,aviation weather services +84476,Other,aviation weather services +84475,Other,aviation weather services +124262,Other,aviation weather services +120937,Other,aviation weather services +120934,Other,aviation weather services +116840,Other,aviation weather services +113554,Other,aviation weather services +507220,Immigration,Immigration +87298,Environment,Environment +87297,Environment,Environment +87298,Fisheries,Fisheries +87297,Fisheries,Fisheries +87298,Industry,Industry +87297,Industry,Industry +77532,Energy,Energy +76160,Environment,Environment +98036,Other,Lung Health Framework +94174,Other,Lung Health Framework +88514,Other,Lung Health Framework +87715,Other,Lung Health Framework +412518,Energy,Energy +493988,Environment,Environment +492114,Environment,Environment +109769,Environment,Environment +109758,Environment,Environment +109744,Environment,Environment +300809,Environment,Environment +300549,Environment,Environment +300529,Environment,Environment +300509,Environment,Environment +299149,Environment,Environment +419547,Environment,Environment +419545,Environment,Environment +415943,Environment,Environment +412518,Environment,Environment +412516,Environment,Environment +407232,Environment,Environment +407231,Environment,Environment +403993,Environment,Environment +400861,Environment,Environment +388116,Environment,Environment +351700,Environment,Environment +339070,Environment,Environment +339012,Environment,Environment +336011,Environment,Environment +336009,Environment,Environment +334939,Environment,Environment +320012,Environment,Environment +320009,Environment,Environment +311589,Environment,Environment +311495,Environment,Environment +476428,Environment,Environment +470182,Environment,Environment +462041,Environment,Environment +459592,Environment,Environment +440676,Environment,Environment +434322,Environment,Environment +434320,Environment,Environment +434318,Environment,Environment +434026,Environment,Environment +434025,Environment,Environment +433009,Environment,Environment +433005,Environment,Environment +431407,Environment,Environment +431406,Environment,Environment +419555,Environment,Environment +419551,Environment,Environment +419549,Environment,Environment +543515,Environment,Environment +540537,Environment,Environment +540536,Environment,Environment +540533,Environment,Environment +530785,Environment,Environment +530783,Environment,Environment +530285,Environment,Environment +526963,Environment,Environment +526962,Environment,Environment +524456,Environment,Environment +524453,Environment,Environment +524452,Environment,Environment +524450,Environment,Environment +523667,Environment,Environment +523666,Environment,Environment +522108,Environment,Environment +521277,Environment,Environment +521275,Environment,Environment +516216,Environment,Environment +90454,Industry,Industry +90382,Industry,Industry +83098,Industry,Industry +83094,Industry,Industry +79854,Industry,Industry +79834,Industry,Industry +109761,Industry,Industry +283929,Industry,Industry +200790,Industry,Industry +200789,Industry,Industry +338978,Industry,Industry +338975,Industry,Industry +335971,Industry,Industry +322715,Industry,Industry +322713,Industry,Industry +320011,Industry,Industry +319990,Industry,Industry +311695,Industry,Industry +311694,Industry,Industry +311590,Industry,Industry +432007,Industry,Industry +432003,Industry,Industry +431999,Industry,Industry +431998,Industry,Industry +431407,Industry,Industry +431406,Industry,Industry +427539,Industry,Industry +424352,Industry,Industry +422659,Industry,Industry +419565,Industry,Industry +419551,Industry,Industry +419549,Industry,Industry +419547,Industry,Industry +419533,Industry,Industry +412518,Industry,Industry +412516,Industry,Industry +412515,Industry,Industry +412514,Industry,Industry +412513,Industry,Industry +408958,Industry,Industry +407233,Industry,Industry +407232,Industry,Industry +407231,Industry,Industry +406434,Industry,Industry +400880,Industry,Industry +400824,Industry,Industry +384720,Industry,Industry +384719,Industry,Industry +381698,Industry,Industry +381697,Industry,Industry +381695,Industry,Industry +381694,Industry,Industry +543551,Industry,Industry +543515,Industry,Industry +543504,Industry,Industry +540537,Industry,Industry +540536,Industry,Industry +540534,Industry,Industry +540533,Industry,Industry +540532,Industry,Industry +538763,Industry,Industry +537659,Industry,Industry +537638,Industry,Industry +537629,Industry,Industry +536476,Industry,Industry +532967,Industry,Industry +530785,Industry,Industry +530783,Industry,Industry +530781,Industry,Industry +530285,Industry,Industry +526963,Industry,Industry +526962,Industry,Industry +524459,Industry,Industry +524458,Industry,Industry +524456,Industry,Industry +524453,Industry,Industry +524452,Industry,Industry +524450,Industry,Industry +523667,Industry,Industry +523666,Industry,Industry +523665,Industry,Industry +522108,Industry,Industry +521277,Industry,Industry +521275,Industry,Industry +519173,Industry,Industry +519171,Industry,Industry +519170,Industry,Industry +519169,Industry,Industry +519168,Industry,Industry +519167,Industry,Industry +519166,Industry,Industry +519165,Industry,Industry +519164,Industry,Industry +517023,Industry,Industry +517021,Industry,Industry +516216,Industry,Industry +516215,Industry,Industry +516214,Industry,Industry +516211,Industry,Industry +515536,Industry,Industry +512642,Industry,Industry +509926,Industry,Industry +509528,Industry,Industry +503306,Industry,Industry +501544,Industry,Industry +500394,Industry,Industry +500392,Industry,Industry +496753,Industry,Industry +493986,Industry,Industry +492115,Industry,Industry +488642,Industry,Industry +488641,Industry,Industry +488640,Industry,Industry +477051,Industry,Industry +477011,Industry,Industry +477005,Industry,Industry +475155,Industry,Industry +473543,Industry,Industry +466522,Industry,Industry +466519,Industry,Industry +466517,Industry,Industry +465476,Industry,Industry +277784,International Relations,International Relations +412518,International Relations,International Relations +98075,International Relations,International Relations +76914,International Relations,International Relations +200790,International Relations,International Relations +316409,International Relations,International Relations +516216,Taxation and Finance,Taxation and Finance +496754,Taxation and Finance,Taxation and Finance +109775,Taxation and Finance,Taxation and Finance +83087,Taxation and Finance,Taxation and Finance +489349,Taxation and Finance,Taxation and Finance +488635,Taxation and Finance,Taxation and Finance +466519,Taxation and Finance,Taxation and Finance +465964,Taxation and Finance,Taxation and Finance +432003,Taxation and Finance,Taxation and Finance +431998,Taxation and Finance,Taxation and Finance +392670,Taxation and Finance,Taxation and Finance +543551,Taxation and Finance,Taxation and Finance +536487,Taxation and Finance,Taxation and Finance +536485,Taxation and Finance,Taxation and Finance +536484,Taxation and Finance,Taxation and Finance +536483,Taxation and Finance,Taxation and Finance +536476,Taxation and Finance,Taxation and Finance +530781,Taxation and Finance,Taxation and Finance +524459,Taxation and Finance,Taxation and Finance +523665,Taxation and Finance,Taxation and Finance +438156,Transportation,Transportation +536476,Transportation,Transportation +311509,Transportation,Transportation +300530,Transportation,Transportation +299929,Transportation,Transportation +283931,Transportation,Transportation +277791,Transportation,Transportation +360062,Transportation,Transportation +351702,Transportation,Transportation +339009,Transportation,Transportation +336010,Transportation,Transportation +320010,Transportation,Transportation +311695,Transportation,Transportation +311694,Transportation,Transportation +311692,Transportation,Transportation +311590,Transportation,Transportation +438154,Transportation,Transportation +438150,Transportation,Transportation +438143,Transportation,Transportation +437107,Transportation,Transportation +437105,Transportation,Transportation +437104,Transportation,Transportation +437103,Transportation,Transportation +431999,Transportation,Transportation +431407,Transportation,Transportation +431406,Transportation,Transportation +419565,Transportation,Transportation +419549,Transportation,Transportation +419547,Transportation,Transportation +419545,Transportation,Transportation +415943,Transportation,Transportation +408958,Transportation,Transportation +400842,Transportation,Transportation +392674,Transportation,Transportation +390964,Transportation,Transportation +381696,Transportation,Transportation +381693,Transportation,Transportation +532967,Transportation,Transportation +530785,Transportation,Transportation +530783,Transportation,Transportation +530782,Transportation,Transportation +530781,Transportation,Transportation +524459,Transportation,Transportation +524458,Transportation,Transportation +524456,Transportation,Transportation +523667,Transportation,Transportation +523665,Transportation,Transportation +519173,Transportation,Transportation +503306,Transportation,Transportation +496754,Transportation,Transportation +492114,Transportation,Transportation +489349,Transportation,Transportation +488641,Transportation,Transportation +488640,Transportation,Transportation +488635,Transportation,Transportation +470182,Transportation,Transportation +466783,Transportation,Transportation +466562,Transportation,Transportation +466520,Transportation,Transportation +466517,Transportation,Transportation +466516,Transportation,Transportation +465476,Transportation,Transportation +462949,Transportation,Transportation +462041,Transportation,Transportation +456347,Transportation,Transportation +449095,Transportation,Transportation +444347,Transportation,Transportation +444038,Transportation,Transportation +441153,Transportation,Transportation +441150,Transportation,Transportation +441146,Transportation,Transportation +441144,Transportation,Transportation +440770,Transportation,Transportation +440769,Transportation,Transportation +440768,Transportation,Transportation +440767,Transportation,Transportation +440766,Transportation,Transportation +270209,Industry,Industry +241869,Industry,Industry +98206,Industry,Industry +96878,Industry,Industry +93670,Industry,Industry +164947,Industry,Industry +270211,Industry,Industry +97519,Agriculture,Agriculture +85384,Agriculture,Agriculture +97423,Other,Natural Resources +97419,Other,Natural Resources +132856,Other,Natural Resources +101413,Other,Natural Resources +101412,Other,Natural Resources +101410,Other,Natural Resources +212302,Labour,Labour +508945,Labour,Labour +376398,Labour,Labour +362173,Labour,Labour +362169,Labour,Labour +362167,Labour,Labour +361216,Labour,Labour +361215,Labour,Labour +361214,Labour,Labour +359880,Labour,Labour +359879,Labour,Labour +357893,Labour,Labour +343724,Labour,Labour +340498,Labour,Labour +338127,Labour,Labour +338125,Labour,Labour +335562,Labour,Labour +331910,Labour,Labour +330930,Labour,Labour +330928,Labour,Labour +330927,Labour,Labour +330926,Labour,Labour +330925,Labour,Labour +330924,Labour,Labour +327272,Labour,Labour +327271,Labour,Labour +139574,Industry,Industry +106369,International Trade,International Trade +540029,Defence,Defence +538491,Defence,Defence +80555,Defence,Defence +80554,Defence,Defence +100829,Defence,Defence +97144,Defence,Defence +96654,Defence,Defence +153059,Defence,Defence +150256,Defence,Defence +146080,Defence,Defence +143176,Defence,Defence +143175,Defence,Defence +136294,Defence,Defence +128868,Defence,Defence +128867,Defence,Defence +128863,Defence,Defence +383645,Defence,Defence +382452,Defence,Defence +374524,Defence,Defence +457329,Defence,Defence +455774,Defence,Defence +455767,Defence,Defence +455764,Defence,Defence +455760,Defence,Defence +455755,Defence,Defence +391098,Defence,Defence +543876,Defence,Defence +543871,Defence,Defence +543851,Defence,Defence +543779,Defence,Defence +541990,Defence,Defence +541989,Defence,Defence +540033,Defence,Defence +245360,Financial Institutions,Financial Institutions +356414,Financial Institutions,Financial Institutions +96654,Financial Institutions,Financial Institutions +310506,Financial Institutions,Financial Institutions +310504,Financial Institutions,Financial Institutions +310500,Financial Institutions,Financial Institutions +426224,Industry,Industry +426223,Industry,Industry +96654,Industry,Industry +93700,Industry,Industry +80556,Industry,Industry +80555,Industry,Industry +80554,Industry,Industry +80514,Industry,Industry +77444,Industry,Industry +77443,Industry,Industry +77442,Industry,Industry +77440,Industry,Industry +77439,Industry,Industry +77436,Industry,Industry +153570,Industry,Industry +153567,Industry,Industry +153062,Industry,Industry +153061,Industry,Industry +150256,Industry,Industry +128868,Industry,Industry +128867,Industry,Industry +128863,Industry,Industry +104799,Industry,Industry +100829,Industry,Industry +97144,Industry,Industry +233851,Industry,Industry +230296,Industry,Industry +227340,Industry,Industry +227336,Industry,Industry +223597,Industry,Industry +223593,Industry,Industry +223589,Industry,Industry +217987,Industry,Industry +212365,Industry,Industry +212361,Industry,Industry +212360,Industry,Industry +212357,Industry,Industry +212355,Industry,Industry +207577,Industry,Industry +207574,Industry,Industry +202827,Industry,Industry +200273,Industry,Industry +200269,Industry,Industry +200267,Industry,Industry +173583,Industry,Industry +173582,Industry,Industry +173576,Industry,Industry +173575,Industry,Industry +165953,Industry,Industry +153573,Industry,Industry +153572,Industry,Industry +370861,Industry,Industry +370810,Industry,Industry +369113,Industry,Industry +369110,Industry,Industry +369107,Industry,Industry +369104,Industry,Industry +369100,Industry,Industry +369099,Industry,Industry +369098,Industry,Industry +369096,Industry,Industry +366670,Industry,Industry +366669,Industry,Industry +366668,Industry,Industry +366667,Industry,Industry +365128,Industry,Industry +365123,Industry,Industry +365112,Industry,Industry +361108,Industry,Industry +359661,Industry,Industry +359659,Industry,Industry +359657,Industry,Industry +359656,Industry,Industry +359654,Industry,Industry +359652,Industry,Industry +358214,Industry,Industry +358213,Industry,Industry +358211,Industry,Industry +358209,Industry,Industry +358207,Industry,Industry +358205,Industry,Industry +358203,Industry,Industry +358201,Industry,Industry +358199,Industry,Industry +358195,Industry,Industry +358194,Industry,Industry +354079,Industry,Industry +354074,Industry,Industry +354072,Industry,Industry +354069,Industry,Industry +354067,Industry,Industry +351511,Industry,Industry +342037,Industry,Industry +338741,Industry,Industry +338738,Industry,Industry +338737,Industry,Industry +338713,Industry,Industry +336186,Industry,Industry +331643,Industry,Industry +331639,Industry,Industry +331638,Industry,Industry +331637,Industry,Industry +327623,Industry,Industry +324983,Industry,Industry +322249,Industry,Industry +322237,Industry,Industry +319228,Industry,Industry +319225,Industry,Industry +319219,Industry,Industry +316059,Industry,Industry +316056,Industry,Industry +316055,Industry,Industry +316054,Industry,Industry +316053,Industry,Industry +313166,Industry,Industry +313165,Industry,Industry +313163,Industry,Industry +313162,Industry,Industry +313160,Industry,Industry +313159,Industry,Industry +313158,Industry,Industry +310499,Industry,Industry +310496,Industry,Industry +304429,Industry,Industry +296828,Industry,Industry +296824,Industry,Industry +291106,Industry,Industry +282894,Industry,Industry +282853,Industry,Industry +269557,Industry,Industry +269555,Industry,Industry +269554,Industry,Industry +269552,Industry,Industry +269549,Industry,Industry +264456,Industry,Industry +254317,Industry,Industry +254315,Industry,Industry +426222,Industry,Industry +426221,Industry,Industry +423729,Industry,Industry +423728,Industry,Industry +423726,Industry,Industry +423724,Industry,Industry +423722,Industry,Industry +423721,Industry,Industry +423719,Industry,Industry +421716,Industry,Industry +420404,Industry,Industry +416654,Industry,Industry +416652,Industry,Industry +416650,Industry,Industry +416645,Industry,Industry +416636,Industry,Industry +416630,Industry,Industry +416628,Industry,Industry +416627,Industry,Industry +416626,Industry,Industry +413509,Industry,Industry +413489,Industry,Industry +413486,Industry,Industry +413483,Industry,Industry +413479,Industry,Industry +413469,Industry,Industry +413446,Industry,Industry +410134,Industry,Industry +410133,Industry,Industry +410132,Industry,Industry +410131,Industry,Industry +410128,Industry,Industry +410124,Industry,Industry +410123,Industry,Industry +410122,Industry,Industry +410120,Industry,Industry +410116,Industry,Industry +410111,Industry,Industry +410109,Industry,Industry +410108,Industry,Industry +410106,Industry,Industry +408156,Industry,Industry +408155,Industry,Industry +408152,Industry,Industry +408151,Industry,Industry +408150,Industry,Industry +408148,Industry,Industry +408147,Industry,Industry +408146,Industry,Industry +408145,Industry,Industry +408144,Industry,Industry +408141,Industry,Industry +408140,Industry,Industry +408137,Industry,Industry +406946,Industry,Industry +406945,Industry,Industry +406944,Industry,Industry +406941,Industry,Industry +406939,Industry,Industry +406938,Industry,Industry +406937,Industry,Industry +406935,Industry,Industry +405719,Industry,Industry +405715,Industry,Industry +405713,Industry,Industry +405711,Industry,Industry +405709,Industry,Industry +405699,Industry,Industry +403407,Industry,Industry +403405,Industry,Industry +403403,Industry,Industry +403402,Industry,Industry +403401,Industry,Industry +403398,Industry,Industry +403397,Industry,Industry +403395,Industry,Industry +403394,Industry,Industry +403391,Industry,Industry +403390,Industry,Industry +401042,Industry,Industry +401041,Industry,Industry +401038,Industry,Industry +401036,Industry,Industry +401035,Industry,Industry +401031,Industry,Industry +401028,Industry,Industry +401026,Industry,Industry +401024,Industry,Industry +401023,Industry,Industry +401022,Industry,Industry +401021,Industry,Industry +401018,Industry,Industry +401016,Industry,Industry +401013,Industry,Industry +399073,Industry,Industry +399072,Industry,Industry +399071,Industry,Industry +399069,Industry,Industry +399066,Industry,Industry +399064,Industry,Industry +399061,Industry,Industry +399060,Industry,Industry +399058,Industry,Industry +399056,Industry,Industry +396978,Industry,Industry +396976,Industry,Industry +396975,Industry,Industry +394172,Industry,Industry +394169,Industry,Industry +394167,Industry,Industry +394161,Industry,Industry +394158,Industry,Industry +394155,Industry,Industry +394149,Industry,Industry +392742,Industry,Industry +392741,Industry,Industry +392740,Industry,Industry +392737,Industry,Industry +392714,Industry,Industry +392711,Industry,Industry +391123,Industry,Industry +391121,Industry,Industry +391113,Industry,Industry +391102,Industry,Industry +391096,Industry,Industry +391095,Industry,Industry +391081,Industry,Industry +391075,Industry,Industry +387912,Industry,Industry +387909,Industry,Industry +387907,Industry,Industry +387905,Industry,Industry +387903,Industry,Industry +385787,Industry,Industry +385786,Industry,Industry +385785,Industry,Industry +385784,Industry,Industry +385783,Industry,Industry +385782,Industry,Industry +385781,Industry,Industry +383988,Industry,Industry +383833,Industry,Industry +383649,Industry,Industry +383645,Industry,Industry +383644,Industry,Industry +383639,Industry,Industry +383636,Industry,Industry +383512,Industry,Industry +382878,Industry,Industry +382453,Industry,Industry +382452,Industry,Industry +382349,Industry,Industry +382118,Industry,Industry +381038,Industry,Industry +379350,Industry,Industry +379347,Industry,Industry +379328,Industry,Industry +379326,Industry,Industry +376252,Industry,Industry +376246,Industry,Industry +376211,Industry,Industry +376208,Industry,Industry +376207,Industry,Industry +376205,Industry,Industry +376202,Industry,Industry +376201,Industry,Industry +376200,Industry,Industry +376198,Industry,Industry +376195,Industry,Industry +376194,Industry,Industry +376091,Industry,Industry +376077,Industry,Industry +374740,Industry,Industry +374629,Industry,Industry +374598,Industry,Industry +374589,Industry,Industry +374573,Industry,Industry +374570,Industry,Industry +374565,Industry,Industry +374562,Industry,Industry +374560,Industry,Industry +374559,Industry,Industry +374557,Industry,Industry +374556,Industry,Industry +374554,Industry,Industry +374541,Industry,Industry +370880,Industry,Industry +370879,Industry,Industry +370866,Industry,Industry +370865,Industry,Industry +370864,Industry,Industry +370863,Industry,Industry +370862,Industry,Industry +543848,Industry,Industry +543844,Industry,Industry +541990,Industry,Industry +541989,Industry,Industry +540038,Industry,Industry +540033,Industry,Industry +540031,Industry,Industry +540029,Industry,Industry +540028,Industry,Industry +538495,Industry,Industry +538493,Industry,Industry +538491,Industry,Industry +538490,Industry,Industry +534739,Industry,Industry +534735,Industry,Industry +534721,Industry,Industry +534720,Industry,Industry +534716,Industry,Industry +534715,Industry,Industry +534699,Industry,Industry +534694,Industry,Industry +532317,Industry,Industry +532309,Industry,Industry +532306,Industry,Industry +532305,Industry,Industry +532303,Industry,Industry +532301,Industry,Industry +532299,Industry,Industry +532298,Industry,Industry +526198,Industry,Industry +526197,Industry,Industry +526188,Industry,Industry +526173,Industry,Industry +522716,Industry,Industry +522713,Industry,Industry +522711,Industry,Industry +522706,Industry,Industry +519448,Industry,Industry +519447,Industry,Industry +519446,Industry,Industry +519445,Industry,Industry +519442,Industry,Industry +518031,Industry,Industry +518027,Industry,Industry +518025,Industry,Industry +518015,Industry,Industry +518008,Industry,Industry +518004,Industry,Industry +515638,Industry,Industry +515637,Industry,Industry +515636,Industry,Industry +515635,Industry,Industry +515634,Industry,Industry +512906,Industry,Industry +512904,Industry,Industry +512895,Industry,Industry +512890,Industry,Industry +512887,Industry,Industry +510624,Industry,Industry +510618,Industry,Industry +510617,Industry,Industry +510613,Industry,Industry +510611,Industry,Industry +510607,Industry,Industry +508245,Industry,Industry +508241,Industry,Industry +508238,Industry,Industry +508236,Industry,Industry +508234,Industry,Industry +508231,Industry,Industry +508228,Industry,Industry +508223,Industry,Industry +505001,Industry,Industry +504998,Industry,Industry +504990,Industry,Industry +504986,Industry,Industry +504985,Industry,Industry +501685,Industry,Industry +501684,Industry,Industry +501683,Industry,Industry +501679,Industry,Industry +501677,Industry,Industry +499570,Industry,Industry +499058,Industry,Industry +499049,Industry,Industry +499046,Industry,Industry +499043,Industry,Industry +495882,Industry,Industry +495880,Industry,Industry +495877,Industry,Industry +495871,Industry,Industry +495866,Industry,Industry +495864,Industry,Industry +495859,Industry,Industry +493133,Industry,Industry +493128,Industry,Industry +493127,Industry,Industry +493124,Industry,Industry +490252,Industry,Industry +487289,Industry,Industry +487284,Industry,Industry +487279,Industry,Industry +487275,Industry,Industry +487272,Industry,Industry +484272,Industry,Industry +484271,Industry,Industry +484269,Industry,Industry +484266,Industry,Industry +484263,Industry,Industry +484260,Industry,Industry +484256,Industry,Industry +484254,Industry,Industry +484249,Industry,Industry +484245,Industry,Industry +481954,Industry,Industry +481953,Industry,Industry +481952,Industry,Industry +479473,Industry,Industry +479469,Industry,Industry +479454,Industry,Industry +477407,Industry,Industry +477401,Industry,Industry +477395,Industry,Industry +477393,Industry,Industry +477386,Industry,Industry +477384,Industry,Industry +477361,Industry,Industry +477356,Industry,Industry +475845,Industry,Industry +475822,Industry,Industry +475816,Industry,Industry +475812,Industry,Industry +475808,Industry,Industry +475806,Industry,Industry +475802,Industry,Industry +475798,Industry,Industry +475775,Industry,Industry +475767,Industry,Industry +475763,Industry,Industry +475751,Industry,Industry +473627,Industry,Industry +473619,Industry,Industry +473615,Industry,Industry +473612,Industry,Industry +473609,Industry,Industry +470459,Industry,Industry +470457,Industry,Industry +470455,Industry,Industry +470454,Industry,Industry +462525,Industry,Industry +462515,Industry,Industry +460608,Industry,Industry +460607,Industry,Industry +459458,Industry,Industry +459457,Industry,Industry +458506,Industry,Industry +458503,Industry,Industry +458501,Industry,Industry +458499,Industry,Industry +458496,Industry,Industry +457329,Industry,Industry +457328,Industry,Industry +457313,Industry,Industry +455774,Industry,Industry +455772,Industry,Industry +455770,Industry,Industry +455768,Industry,Industry +455767,Industry,Industry +455766,Industry,Industry +455764,Industry,Industry +455760,Industry,Industry +455755,Industry,Industry +452534,Industry,Industry +452532,Industry,Industry +452530,Industry,Industry +452525,Industry,Industry +452521,Industry,Industry +452509,Industry,Industry +452503,Industry,Industry +449768,Industry,Industry +449767,Industry,Industry +441547,Industry,Industry +441546,Industry,Industry +441544,Industry,Industry +441543,Industry,Industry +441542,Industry,Industry +441541,Industry,Industry +441540,Industry,Industry +441539,Industry,Industry +437021,Industry,Industry +434887,Industry,Industry +430593,Industry,Industry +430592,Industry,Industry +430591,Industry,Industry +430590,Industry,Industry +430589,Industry,Industry +428956,Industry,Industry +428955,Industry,Industry +428954,Industry,Industry +428953,Industry,Industry +428952,Industry,Industry +428951,Industry,Industry +428950,Industry,Industry +428948,Industry,Industry +426229,Industry,Industry +426228,Industry,Industry +426227,Industry,Industry +426226,Industry,Industry +443587,International Relations,International Relations +443583,International Relations,International Relations +77440,International Relations,International Relations +162484,International Relations,International Relations +162477,International Relations,International Relations +128873,International Relations,International Relations +128869,International Relations,International Relations +322247,International Relations,International Relations +322243,International Relations,International Relations +322242,International Relations,International Relations +200262,International Relations,International Relations +194725,International Relations,International Relations +385782,International Relations,International Relations +370877,International Relations,International Relations +370876,International Relations,International Relations +369102,International Relations,International Relations +369098,International Relations,International Relations +366666,International Relations,International Relations +366665,International Relations,International Relations +365126,International Relations,International Relations +358216,International Relations,International Relations +358215,International Relations,International Relations +354076,International Relations,International Relations +351509,International Relations,International Relations +351504,International Relations,International Relations +347205,International Relations,International Relations +327633,International Relations,International Relations +327629,International Relations,International Relations +540033,International Relations,International Relations +538493,International Relations,International Relations +538490,International Relations,International Relations +534718,International Relations,International Relations +529046,International Relations,International Relations +529036,International Relations,International Relations +526191,International Relations,International Relations +526175,International Relations,International Relations +512902,International Trade,International Trade +512890,International Trade,International Trade +80514,International Trade,International Trade +77444,International Trade,International Trade +77438,International Trade,International Trade +132896,International Trade,International Trade +120495,International Trade,International Trade +117406,International Trade,International Trade +117396,International Trade,International Trade +154899,International Trade,International Trade +153573,International Trade,International Trade +153572,International Trade,International Trade +153570,International Trade,International Trade +153567,International Trade,International Trade +153063,International Trade,International Trade +153060,International Trade,International Trade +153057,International Trade,International Trade +152278,International Trade,International Trade +139215,International Trade,International Trade +135975,International Trade,International Trade +223600,International Trade,International Trade +212363,International Trade,International Trade +207574,International Trade,International Trade +200275,International Trade,International Trade +200252,International Trade,International Trade +194722,International Trade,International Trade +189049,International Trade,International Trade +185913,International Trade,International Trade +185911,International Trade,International Trade +185907,International Trade,International Trade +173578,International Trade,International Trade +171952,International Trade,International Trade +170185,International Trade,International Trade +170184,International Trade,International Trade +165953,International Trade,International Trade +165948,International Trade,International Trade +163965,International Trade,International Trade +163964,International Trade,International Trade +163961,International Trade,International Trade +370878,International Trade,International Trade +369104,International Trade,International Trade +363508,International Trade,International Trade +363507,International Trade,International Trade +356420,International Trade,International Trade +356419,International Trade,International Trade +356414,International Trade,International Trade +349150,International Trade,International Trade +338747,International Trade,International Trade +338744,International Trade,International Trade +336185,International Trade,International Trade +336184,International Trade,International Trade +336183,International Trade,International Trade +336182,International Trade,International Trade +336181,International Trade,International Trade +336180,International Trade,International Trade +336179,International Trade,International Trade +336178,International Trade,International Trade +329980,International Trade,International Trade +327639,International Trade,International Trade +324985,International Trade,International Trade +297230,International Trade,International Trade +245361,International Trade,International Trade +237058,International Trade,International Trade +230298,International Trade,International Trade +477373,International Trade,International Trade +477351,International Trade,International Trade +475832,International Trade,International Trade +470453,International Trade,International Trade +467938,International Trade,International Trade +467936,International Trade,International Trade +467935,International Trade,International Trade +467933,International Trade,International Trade +467932,International Trade,International Trade +467930,International Trade,International Trade +464830,International Trade,International Trade +464827,International Trade,International Trade +464825,International Trade,International Trade +464822,International Trade,International Trade +462527,International Trade,International Trade +462519,International Trade,International Trade +458506,International Trade,International Trade +458503,International Trade,International Trade +443587,International Trade,International Trade +443584,International Trade,International Trade +443583,International Trade,International Trade +441547,International Trade,International Trade +441546,International Trade,International Trade +441544,International Trade,International Trade +441543,International Trade,International Trade +441542,International Trade,International Trade +441541,International Trade,International Trade +441540,International Trade,International Trade +441539,International Trade,International Trade +437021,International Trade,International Trade +434887,International Trade,International Trade +430593,International Trade,International Trade +430592,International Trade,International Trade +430591,International Trade,International Trade +430590,International Trade,International Trade +430589,International Trade,International Trade +428956,International Trade,International Trade +428955,International Trade,International Trade +428954,International Trade,International Trade +428953,International Trade,International Trade +428952,International Trade,International Trade +428951,International Trade,International Trade +428950,International Trade,International Trade +428948,International Trade,International Trade +426229,International Trade,International Trade +426228,International Trade,International Trade +426227,International Trade,International Trade +426226,International Trade,International Trade +426225,International Trade,International Trade +426224,International Trade,International Trade +426223,International Trade,International Trade +426222,International Trade,International Trade +426221,International Trade,International Trade +423729,International Trade,International Trade +423728,International Trade,International Trade +423726,International Trade,International Trade +423724,International Trade,International Trade +423722,International Trade,International Trade +423721,International Trade,International Trade +423719,International Trade,International Trade +421716,International Trade,International Trade +420404,International Trade,International Trade +416654,International Trade,International Trade +416652,International Trade,International Trade +416650,International Trade,International Trade +416645,International Trade,International Trade +416636,International Trade,International Trade +416630,International Trade,International Trade +416628,International Trade,International Trade +416627,International Trade,International Trade +416626,International Trade,International Trade +413509,International Trade,International Trade +413489,International Trade,International Trade +413486,International Trade,International Trade +413483,International Trade,International Trade +413479,International Trade,International Trade +413469,International Trade,International Trade +413446,International Trade,International Trade +410134,International Trade,International Trade +410133,International Trade,International Trade +410132,International Trade,International Trade +410131,International Trade,International Trade +410128,International Trade,International Trade +410124,International Trade,International Trade +410123,International Trade,International Trade +410122,International Trade,International Trade +410120,International Trade,International Trade +410116,International Trade,International Trade +410111,International Trade,International Trade +410109,International Trade,International Trade +410108,International Trade,International Trade +410106,International Trade,International Trade +408156,International Trade,International Trade +408155,International Trade,International Trade +408152,International Trade,International Trade +408151,International Trade,International Trade +408150,International Trade,International Trade +408148,International Trade,International Trade +408147,International Trade,International Trade +408146,International Trade,International Trade +408145,International Trade,International Trade +408144,International Trade,International Trade +408141,International Trade,International Trade +408140,International Trade,International Trade +408137,International Trade,International Trade +406946,International Trade,International Trade +406945,International Trade,International Trade +406944,International Trade,International Trade +406941,International Trade,International Trade +406939,International Trade,International Trade +406938,International Trade,International Trade +406937,International Trade,International Trade +406935,International Trade,International Trade +405719,International Trade,International Trade +405715,International Trade,International Trade +405713,International Trade,International Trade +405711,International Trade,International Trade +405709,International Trade,International Trade +405699,International Trade,International Trade +403407,International Trade,International Trade +403405,International Trade,International Trade +403403,International Trade,International Trade +403402,International Trade,International Trade +403401,International Trade,International Trade +403398,International Trade,International Trade +403397,International Trade,International Trade +403395,International Trade,International Trade +403394,International Trade,International Trade +403391,International Trade,International Trade +403390,International Trade,International Trade +401042,International Trade,International Trade +401041,International Trade,International Trade +401038,International Trade,International Trade +401036,International Trade,International Trade +401035,International Trade,International Trade +401031,International Trade,International Trade +401028,International Trade,International Trade +401026,International Trade,International Trade +401024,International Trade,International Trade +401023,International Trade,International Trade +401021,International Trade,International Trade +401018,International Trade,International Trade +401016,International Trade,International Trade +401013,International Trade,International Trade +399073,International Trade,International Trade +399072,International Trade,International Trade +399071,International Trade,International Trade +399069,International Trade,International Trade +399066,International Trade,International Trade +399064,International Trade,International Trade +399061,International Trade,International Trade +399060,International Trade,International Trade +399058,International Trade,International Trade +399056,International Trade,International Trade +396978,International Trade,International Trade +396976,International Trade,International Trade +396975,International Trade,International Trade +394172,International Trade,International Trade +394169,International Trade,International Trade +394167,International Trade,International Trade +394161,International Trade,International Trade +394158,International Trade,International Trade +394155,International Trade,International Trade +394149,International Trade,International Trade +392742,International Trade,International Trade +392741,International Trade,International Trade +392740,International Trade,International Trade +392737,International Trade,International Trade +392714,International Trade,International Trade +392713,International Trade,International Trade +392711,International Trade,International Trade +391123,International Trade,International Trade +391121,International Trade,International Trade +391113,International Trade,International Trade +391102,International Trade,International Trade +391096,International Trade,International Trade +391095,International Trade,International Trade +391081,International Trade,International Trade +391075,International Trade,International Trade +387907,International Trade,International Trade +387905,International Trade,International Trade +385787,International Trade,International Trade +385786,International Trade,International Trade +385783,International Trade,International Trade +383833,International Trade,International Trade +383645,International Trade,International Trade +383639,International Trade,International Trade +383636,International Trade,International Trade +383512,International Trade,International Trade +382453,International Trade,International Trade +382349,International Trade,International Trade +381028,International Trade,International Trade +379336,International Trade,International Trade +379329,International Trade,International Trade +379319,International Trade,International Trade +540033,International Trade,International Trade +538493,International Trade,International Trade +534718,International Trade,International Trade +532298,International Trade,International Trade +529046,International Trade,International Trade +529036,International Trade,International Trade +526197,International Trade,International Trade +526191,International Trade,International Trade +526175,International Trade,International Trade +515638,Taxation and Finance,Taxation and Finance +515637,Taxation and Finance,Taxation and Finance +132899,Taxation and Finance,Taxation and Finance +132890,Taxation and Finance,Taxation and Finance +117406,Taxation and Finance,Taxation and Finance +117394,Taxation and Finance,Taxation and Finance +112595,Taxation and Finance,Taxation and Finance +237058,Taxation and Finance,Taxation and Finance +227340,Taxation and Finance,Taxation and Finance +227336,Taxation and Finance,Taxation and Finance +223597,Taxation and Finance,Taxation and Finance +207580,Taxation and Finance,Taxation and Finance +207577,Taxation and Finance,Taxation and Finance +207574,Taxation and Finance,Taxation and Finance +175617,Taxation and Finance,Taxation and Finance +175616,Taxation and Finance,Taxation and Finance +165958,Taxation and Finance,Taxation and Finance +165955,Taxation and Finance,Taxation and Finance +163955,Taxation and Finance,Taxation and Finance +443584,Taxation and Finance,Taxation and Finance +369100,Taxation and Finance,Taxation and Finance +343914,Taxation and Finance,Taxation and Finance +342048,Taxation and Finance,Taxation and Finance +304434,Taxation and Finance,Taxation and Finance +297229,Taxation and Finance,Taxation and Finance +282912,Taxation and Finance,Taxation and Finance +282750,Taxation and Finance,Taxation and Finance +543844,Taxation and Finance,Taxation and Finance +540038,Taxation and Finance,Taxation and Finance +540037,Taxation and Finance,Taxation and Finance +540036,Taxation and Finance,Taxation and Finance +534739,Taxation and Finance,Taxation and Finance +534735,Taxation and Finance,Taxation and Finance +534721,Taxation and Finance,Taxation and Finance +534720,Taxation and Finance,Taxation and Finance +534716,Taxation and Finance,Taxation and Finance +534715,Taxation and Finance,Taxation and Finance +534704,Taxation and Finance,Taxation and Finance +534699,Taxation and Finance,Taxation and Finance +534694,Taxation and Finance,Taxation and Finance +532309,Taxation and Finance,Taxation and Finance +532306,Taxation and Finance,Taxation and Finance +532305,Taxation and Finance,Taxation and Finance +532303,Taxation and Finance,Taxation and Finance +532301,Taxation and Finance,Taxation and Finance +532299,Taxation and Finance,Taxation and Finance +532298,Taxation and Finance,Taxation and Finance +529046,Taxation and Finance,Taxation and Finance +529040,Taxation and Finance,Taxation and Finance +526188,Taxation and Finance,Taxation and Finance +526172,Taxation and Finance,Taxation and Finance +522716,Taxation and Finance,Taxation and Finance +522713,Taxation and Finance,Taxation and Finance +522711,Taxation and Finance,Taxation and Finance +522709,Taxation and Finance,Taxation and Finance +522706,Taxation and Finance,Taxation and Finance +519448,Taxation and Finance,Taxation and Finance +519447,Taxation and Finance,Taxation and Finance +519445,Taxation and Finance,Taxation and Finance +518031,Taxation and Finance,Taxation and Finance +518027,Taxation and Finance,Taxation and Finance +518025,Taxation and Finance,Taxation and Finance +518015,Taxation and Finance,Taxation and Finance +518008,Taxation and Finance,Taxation and Finance +441540,Transportation,Transportation +441539,Transportation,Transportation +77444,Transportation,Transportation +77437,Transportation,Transportation +120496,Transportation,Transportation +116214,Transportation,Transportation +112618,Transportation,Transportation +112617,Transportation,Transportation +112615,Transportation,Transportation +112614,Transportation,Transportation +109273,Transportation,Transportation +104799,Transportation,Transportation +100829,Transportation,Transportation +93700,Transportation,Transportation +89878,Transportation,Transportation +296826,Transportation,Transportation +291110,Transportation,Transportation +282910,Transportation,Transportation +282769,Transportation,Transportation +277514,Transportation,Transportation +273664,Transportation,Transportation +259471,Transportation,Transportation +237053,Transportation,Transportation +230296,Transportation,Transportation +381050,Transportation,Transportation +381048,Transportation,Transportation +381043,Transportation,Transportation +381041,Transportation,Transportation +381036,Transportation,Transportation +381032,Transportation,Transportation +381030,Transportation,Transportation +381023,Transportation,Transportation +379333,Transportation,Transportation +370875,Transportation,Transportation +370870,Transportation,Transportation +370869,Transportation,Transportation +370811,Transportation,Transportation +366664,Transportation,Transportation +365127,Transportation,Transportation +365121,Transportation,Transportation +356429,Transportation,Transportation +356428,Transportation,Transportation +356427,Transportation,Transportation +356413,Transportation,Transportation +356411,Transportation,Transportation +351503,Transportation,Transportation +331636,Transportation,Transportation +329982,Transportation,Transportation +322234,Transportation,Transportation +319227,Transportation,Transportation +319222,Transportation,Transportation +495857,Transportation,Transportation +493133,Transportation,Transportation +493128,Transportation,Transportation +493127,Transportation,Transportation +493125,Transportation,Transportation +493124,Transportation,Transportation +493123,Transportation,Transportation +490248,Transportation,Transportation +490232,Transportation,Transportation +481958,Transportation,Transportation +481955,Transportation,Transportation +473624,Transportation,Transportation +473622,Transportation,Transportation +458494,Transportation,Transportation +458493,Transportation,Transportation +458492,Transportation,Transportation +455768,Transportation,Transportation +455766,Transportation,Transportation +452534,Transportation,Transportation +452532,Transportation,Transportation +452530,Transportation,Transportation +452525,Transportation,Transportation +452521,Transportation,Transportation +452509,Transportation,Transportation +452503,Transportation,Transportation +449768,Transportation,Transportation +441547,Transportation,Transportation +441546,Transportation,Transportation +441544,Transportation,Transportation +441543,Transportation,Transportation +441542,Transportation,Transportation +132778,Taxation and Finance,Taxation and Finance +132777,Taxation and Finance,Taxation and Finance +139374,Taxation and Finance,Taxation and Finance +233558,Employment and Training,Employment and Training +233555,Employment and Training,Employment and Training +503993,Environment,Environment +480920,Environment,Environment +154246,Environment,Environment +147878,Environment,Environment +118988,Environment,Environment +193610,Environment,Environment +193609,Environment,Environment +193607,Environment,Environment +193605,Environment,Environment +193603,Environment,Environment +193599,Environment,Environment +193598,Environment,Environment +193596,Environment,Environment +193594,Environment,Environment +193593,Environment,Environment +193592,Environment,Environment +193581,Environment,Environment +193580,Environment,Environment +193576,Environment,Environment +193573,Environment,Environment +193570,Environment,Environment +193569,Environment,Environment +193566,Environment,Environment +185287,Environment,Environment +185285,Environment,Environment +185284,Environment,Environment +176744,Environment,Environment +174446,Environment,Environment +174445,Environment,Environment +174444,Environment,Environment +172749,Environment,Environment +172748,Environment,Environment +172746,Environment,Environment +172745,Environment,Environment +171808,Environment,Environment +315425,Environment,Environment +312852,Environment,Environment +300730,Environment,Environment +295109,Environment,Environment +289632,Environment,Environment +289630,Environment,Environment +271404,Environment,Environment +271251,Environment,Environment +271250,Environment,Environment +268090,Environment,Environment +230229,Environment,Environment +225488,Environment,Environment +220887,Environment,Environment +220607,Environment,Environment +198167,Environment,Environment +193637,Environment,Environment +193635,Environment,Environment +193632,Environment,Environment +193631,Environment,Environment +193627,Environment,Environment +193626,Environment,Environment +193619,Environment,Environment +193617,Environment,Environment +193614,Environment,Environment +193613,Environment,Environment +193611,Environment,Environment +438090,Environment,Environment +432050,Environment,Environment +406539,Environment,Environment +387124,Environment,Environment +387122,Environment,Environment +387121,Environment,Environment +387120,Environment,Environment +387119,Environment,Environment +387116,Environment,Environment +387115,Environment,Environment +387057,Environment,Environment +385197,Environment,Environment +378673,Environment,Environment +378670,Environment,Environment +376223,Environment,Environment +376222,Environment,Environment +152357,Energy,Energy +494749,Infrastructure,Infrastructure +273384,Regional Development,Regional Development +98134,Other,Telecommunications +132822,Other,Application of GST Direct Sellers Mechanism +76386,Energy,Energy +90296,Industry,Industry +92774,Taxation and Finance,Taxation and Finance +124865,Other,Animal Welfare +77196,Other,Federal-Provincial Relations +483195,Industry,Industry +463305,Internal Trade,Internal Trade +408287,International Relations,International Relations +111136,Other,International Trade +142394,Other,Research +433096,Defence,Défense +132722,Industry,Industry +77995,Infrastructure,Infrastructure +113534,Other,aviation weather services +512139,Immigration,Immigration +87299,Environment,Environment +87299,Fisheries,Fisheries +87299,Industry,Industry +77809,Taxation and Finance,Taxation and Finance +77534,Energy,Energy +79315,Other,Obtain contributions from Western Economic Diversification for the construction and/or operational and/or equipment for the new Centre of Applied Technologies building on campus. +74614,Defence,Defence +74154,Industry,Industry +76161,Environment,Environment +74235,Other,Lung Health Framework +432007,Employment and Training,Employment and Training +419547,Energy,Energy +515536,Environment,Environment +93885,Industry,Industry +278031,International Relations,International Relations +519173,Taxation and Finance,Taxation and Finance +438158,Transportation,Transportation +97469,Other,Publishing Assistance +270210,Industry,Industry +223514,Agriculture,Agriculture +85384,International Trade,International Trade +101054,Other,Natural Resources +106377,Health,Health +302954,Labour,Labour +106369,Industry,Industry +121305,Transportation,Transportation +139574,International Trade,International Trade +540031,Defence,Defence +259469,Financial Institutions,Financial Institutions +426225,Industry,Industry +207574,Infrastructure,Infrastructure +526174,International Relations,International Relations +526174,International Trade,International Trade +518004,Taxation and Finance,Taxation and Finance +441541,Transportation,Transportation +134957,Taxation and Finance,Taxation and Finance +236029,Agriculture,Agriculture +337769,Employment and Training,Employment and Training +503994,Environment,Environment +387116,Health,Health +521844,Industry,Industry +411862,International Trade,International Trade +376217,Small Business,Small Business +111240,Other,Healthcare +159435,Intellectual Property,Propriété intellectuelle +76135,Defence,Defence +80953,Industry,Industry +98874,Other,treaty negotiations +385784,Internal Trade,Internal Trade +215449,International Trade,International Trade +114654,Agriculture,Agriculture +336353,Fisheries,Fisheries +263333,International Relations,International Relations +267851,International Trade,International Trade +123375,Environment,Environment +123375,Fisheries,Fisheries +123375,Industry,Industry +123375,International Relations,International Relations +123375,Mining,Mining +123375,Tourism,Tourism +123375,Transportation,Transportation +80765,Taxation and Finance,Taxation and Finance +129092,Industry,Industry +113977,Taxation and Finance,Taxation and Finance +80726,Taxation and Finance,Taxation and Finance +112295,Financial Institutions,Financial Institutions +90495,Health,Health +80738,Government Procurement,Government Procurement +78821,Intellectual Property,Intellectual Property +106757,Industry,Industry +106757,International Relations,International Relations +400620,Health,Health +77617,Other,Media +473254,Taxation and Finance,Taxation and Finance +134435,Other,Bird Conservation +93459,Education,Education +443914,Infrastructure,Infrastructure +459520,Regional Development,Regional Development +75094,Other,Vehicle Scrappage +75134,Other,Go Solar +87235,Other,ecoEnergy for buildings and houses +150411,Other,Competition Policy +403363,International Trade,International Trade +77467,Taxation and Finance,Taxation and Finance +111174,Other,Bluepint for the Future Career Fair +111174,Other,National Aboriginal Achievement Awards +96755,Agriculture,Agriculture +148194,Education,Education +148194,Energy,Energy +159924,International Relations,International Relations +148194,Labour,Labour +83156,Agriculture,Agriculture +118018,Other,Internet gaming +382010,Consumer Issues,Consumer Issues +404572,Taxation and Finance,Taxation and Finance +376220,Environment,Environment +376219,Environment,Environment +376218,Environment,Environment +371446,Environment,Environment +371442,Environment,Environment +359566,Environment,Environment +357622,Environment,Environment +355905,Environment,Environment +353121,Environment,Environment +352991,Environment,Environment +350610,Environment,Environment +340857,Environment,Environment +337771,Environment,Environment +335552,Environment,Environment +323533,Environment,Environment +323531,Environment,Environment +323529,Environment,Environment +321232,Environment,Environment +541451,Environment,Environment +537236,Environment,Environment +531461,Environment,Environment +531460,Environment,Environment +521848,Environment,Environment +507543,Environment,Environment +507541,Environment,Environment +387115,Health,Health +387057,Health,Health +147880,Health,Health +147879,Health,Health +147877,Health,Health +147876,Health,Health +147874,Health,Health +131577,Health,Health +131576,Health,Health +118988,Health,Health +118975,Health,Health +185290,Health,Health +171808,Health,Health +161347,Health,Health +161346,Health,Health +161345,Health,Health +159301,Health,Health +159299,Health,Health +159296,Health,Health +155990,Health,Health +155989,Health,Health +155987,Health,Health +152031,Health,Health +150119,Health,Health +257169,Health,Health +244343,Health,Health +244341,Health,Health +236030,Health,Health +234509,Health,Health +232833,Health,Health +230230,Health,Health +225488,Health,Health +220887,Health,Health +220647,Health,Health +220607,Health,Health +207433,Health,Health +202487,Health,Health +193672,Health,Health +193645,Health,Health +193637,Health,Health +193635,Health,Health +193632,Health,Health +193631,Health,Health +193627,Health,Health +193626,Health,Health +193619,Health,Health +193617,Health,Health +193614,Health,Health +193613,Health,Health +193611,Health,Health +193610,Health,Health +193609,Health,Health +193607,Health,Health +193605,Health,Health +193603,Health,Health +193599,Health,Health +193598,Health,Health +193596,Health,Health +193594,Health,Health +193593,Health,Health +193592,Health,Health +193581,Health,Health +193580,Health,Health +193576,Health,Health +193573,Health,Health +193570,Health,Health +193569,Health,Health +193566,Health,Health +385197,Health,Health +381344,Health,Health +381342,Health,Health +381339,Health,Health +381338,Health,Health +381336,Health,Health +381334,Health,Health +378669,Health,Health +378667,Health,Health +376223,Health,Health +376221,Health,Health +376220,Health,Health +376219,Health,Health +376218,Health,Health +376217,Health,Health +376214,Health,Health +376212,Health,Health +373498,Health,Health +371446,Health,Health +359567,Health,Health +357622,Health,Health +357613,Health,Health +355904,Health,Health +355903,Health,Health +355902,Health,Health +355901,Health,Health +353121,Health,Health +352991,Health,Health +352990,Health,Health +350608,Health,Health +350607,Health,Health +350606,Health,Health +348575,Health,Health +346879,Health,Health +340860,Health,Health +340859,Health,Health +340858,Health,Health +337772,Health,Health +337771,Health,Health +329999,Health,Health +329998,Health,Health +329997,Health,Health +327110,Health,Health +327109,Health,Health +323532,Health,Health +323531,Health,Health +323529,Health,Health +321233,Health,Health +321232,Health,Health +315424,Health,Health +312855,Health,Health +312853,Health,Health +312850,Health,Health +309718,Health,Health +309717,Health,Health +300730,Health,Health +300729,Health,Health +295109,Health,Health +289634,Health,Health +289631,Health,Health +289629,Health,Health +289611,Health,Health +275913,Health,Health +271404,Health,Health +271251,Health,Health +271250,Health,Health +268090,Health,Health +261810,Health,Health +537234,Health,Health +533310,Health,Health +533308,Health,Health +527551,Health,Health +524670,Health,Health +521859,Health,Health +521854,Health,Health +521843,Health,Health +521833,Health,Health +518829,Health,Health +518827,Health,Health +516504,Health,Health +516503,Health,Health +516502,Health,Health +510075,Health,Health +507542,Health,Health +507539,Health,Health +507538,Health,Health +503992,Health,Health +497315,Health,Health +489156,Health,Health +489155,Health,Health +489154,Health,Health +486980,Health,Health +483501,Health,Health +483500,Health,Health +483498,Health,Health +480921,Health,Health +462380,Health,Health +461181,Health,Health +461180,Health,Health +459345,Health,Health +458549,Health,Health +457000,Health,Health +454374,Health,Health +454373,Health,Health +454372,Health,Health +454371,Health,Health +452617,Health,Health +452615,Health,Health +452613,Health,Health +448711,Health,Health +446604,Health,Health +443280,Health,Health +443279,Health,Health +441557,Health,Health +438092,Health,Health +438091,Health,Health +435007,Health,Health +433632,Health,Health +430131,Health,Health +428394,Health,Health +425777,Health,Health +425776,Health,Health +423233,Health,Health +421521,Health,Health +421519,Health,Health +421517,Health,Health +421516,Health,Health +421515,Health,Health +421514,Health,Health +421512,Health,Health +419602,Health,Health +417658,Health,Health +417657,Health,Health +417655,Health,Health +415466,Health,Health +415465,Health,Health +407408,Health,Health +406537,Health,Health +405088,Health,Health +402089,Health,Health +399871,Health,Health +390351,Health,Health +390349,Health,Health +390348,Health,Health +390344,Health,Health +387126,Health,Health +387124,Health,Health +387122,Health,Health +387121,Health,Health +387120,Health,Health +387119,Health,Health +507540,Industry,Industry +492615,Industry,Industry +170643,Industry,Industry +170642,Industry,Industry +170640,Industry,Industry +170639,Industry,Industry +170638,Industry,Industry +170636,Industry,Industry +167999,Industry,Industry +167996,Industry,Industry +147875,Industry,Industry +353121,Industry,Industry +352991,Industry,Industry +352989,Industry,Industry +350609,Industry,Industry +343038,Industry,Industry +323531,Industry,Industry +323529,Industry,Industry +321232,Industry,Industry +309719,Industry,Industry +261811,Industry,Industry +244343,Industry,Industry +202489,Industry,Industry +202488,Industry,Industry +476559,Industry,Industry +476558,Industry,Industry +476557,Industry,Industry +476555,Industry,Industry +461182,Industry,Industry +458550,Industry,Industry +435006,Industry,Industry +428397,Industry,Industry +421519,Industry,Industry +406536,Industry,Industry +406534,Industry,Industry +392368,Industry,Industry +376217,Industry,Industry +366421,Industry,Industry +357622,Industry,Industry +357614,Industry,Industry +533314,Industry,Industry +533312,Industry,Industry +399908,International Trade,International Trade +399870,International Trade,International Trade +387124,International Trade,International Trade +387122,International Trade,International Trade +387121,International Trade,International Trade +387120,International Trade,International Trade +387119,International Trade,International Trade +387116,International Trade,International Trade +387115,International Trade,International Trade +387057,International Trade,International Trade +385197,International Trade,International Trade +376223,International Trade,International Trade +376218,International Trade,International Trade +337769,International Trade,International Trade +329995,International Trade,International Trade +433633,International Trade,International Trade +411866,International Trade,International Trade +411865,International Trade,International Trade +411864,International Trade,International Trade +111237,Other,Healthcare +159434,Intellectual Property,Propriété intellectuelle +159431,Intellectual Property,Propriété intellectuelle +82615,Intellectual Property,Propriété intellectuelle +74274,Intellectual Property,Propriété intellectuelle +165803,Intellectual Property,Propriété intellectuelle +165801,Intellectual Property,Propriété intellectuelle +163693,Intellectual Property,Propriété intellectuelle +163692,Intellectual Property,Propriété intellectuelle +163690,Intellectual Property,Propriété intellectuelle +162280,Intellectual Property,Propriété intellectuelle +159438,Intellectual Property,Propriété intellectuelle +159436,Intellectual Property,Propriété intellectuelle +162169,Defence,Defence +162166,Defence,Defence +109614,Defence,Defence +106375,Defence,Defence +97754,Defence,Defence +80955,Defence,Defence +76137,Defence,Defence +76134,Industry,Industry +139594,Industry,Industry +385781,Internal Trade,Internal Trade +383644,Internal Trade,Internal Trade +117394,Internal Trade,Internal Trade +179764,Internal Trade,Internal Trade +401022,Internal Trade,Internal Trade +385785,Internal Trade,Internal Trade +215448,International Trade,International Trade +401761,International Trade,International Trade +102774,International Trade,International Trade +204367,International Trade,International Trade +190605,International Trade,International Trade +190604,International Trade,International Trade +175742,International Trade,International Trade +309776,International Trade,International Trade +287529,International Trade,International Trade +287511,International Trade,International Trade +272710,International Trade,International Trade +264090,International Trade,International Trade +247820,International Trade,International Trade +244895,International Trade,International Trade +244894,International Trade,International Trade +224489,International Trade,International Trade +336352,Fisheries,Fisheries +335121,Fisheries,Fisheries +225601,Fisheries,Fisheries +218829,Fisheries,Fisheries +196927,Fisheries,Fisheries +174244,Fisheries,Fisheries +160411,Fisheries,Fisheries +321693,Fisheries,Fisheries +317749,Fisheries,Fisheries +314991,Fisheries,Fisheries +314990,Fisheries,Fisheries +311415,Fisheries,Fisheries +305329,Fisheries,Fisheries +289371,Fisheries,Fisheries +279309,Fisheries,Fisheries +279249,Fisheries,Fisheries +274089,Fisheries,Fisheries +267863,Fisheries,Fisheries +267862,Fisheries,Fisheries +267861,Fisheries,Fisheries +267860,Fisheries,Fisheries +267858,Fisheries,Fisheries +267857,Fisheries,Fisheries +267851,Fisheries,Fisheries +267850,Fisheries,Fisheries +263333,Fisheries,Fisheries +260110,Fisheries,Fisheries +260109,Fisheries,Fisheries +249255,Fisheries,Fisheries +249253,Fisheries,Fisheries +249251,Fisheries,Fisheries +249250,Fisheries,Fisheries +249236,Fisheries,Fisheries +244556,Fisheries,Fisheries +239492,Fisheries,Fisheries +390140,Fisheries,Fisheries +390139,Fisheries,Fisheries +368770,Fisheries,Fisheries +368474,Fisheries,Fisheries +368472,Fisheries,Fisheries +368462,Fisheries,Fisheries +368460,Fisheries,Fisheries +368458,Fisheries,Fisheries +368457,Fisheries,Fisheries +368456,Fisheries,Fisheries +368455,Fisheries,Fisheries +368454,Fisheries,Fisheries +356780,Fisheries,Fisheries +356779,Fisheries,Fisheries +356778,Fisheries,Fisheries +356777,Fisheries,Fisheries +356776,Fisheries,Fisheries +244556,International Relations,International Relations +263333,International Trade,International Trade +347329,International Trade,International Trade +225601,International Trade,International Trade +311415,International Trade,International Trade +138414,Environment,Environment +138414,Fisheries,Fisheries +113939,Taxation and Finance,Taxation and Finance +109690,Taxation and Finance,Taxation and Finance +101189,Taxation and Finance,Taxation and Finance +101188,Taxation and Finance,Taxation and Finance +101187,Taxation and Finance,Taxation and Finance +90396,Taxation and Finance,Taxation and Finance +90395,Taxation and Finance,Taxation and Finance +90388,Taxation and Finance,Taxation and Finance +90384,Taxation and Finance,Taxation and Finance +83022,Taxation and Finance,Taxation and Finance +132917,Taxation and Finance,Taxation and Finance +117688,Taxation and Finance,Taxation and Finance +117686,Taxation and Finance,Taxation and Finance +82534,Financial Institutions,Financial Institutions +90494,Health,Health +80234,Health,Health +80735,Government Procurement,Government Procurement +78820,Intellectual Property,Intellectual Property +78819,Intellectual Property,Intellectual Property +106756,Industry,Industry +106755,Industry,Industry +400597,Health,Health +400594,Health,Health +398755,Health,Health +398752,Health,Health +398747,Health,Health +398744,Health,Health +396158,Health,Health +396153,Health,Health +396150,Health,Health +396148,Health,Health +396147,Health,Health +379141,Health,Health +379140,Health,Health +426151,Health,Health +426148,Health,Health +423618,Health,Health +423617,Health,Health +423616,Health,Health +409696,Health,Health +409689,Health,Health +407727,Health,Health +405134,Health,Health +403582,Health,Health +403575,Health,Health +473251,Taxation and Finance,Taxation and Finance +470692,Taxation and Finance,Taxation and Finance +477551,Taxation and Finance,Taxation and Finance +475403,Taxation and Finance,Taxation and Finance +475394,Taxation and Finance,Taxation and Finance +475385,Taxation and Finance,Taxation and Finance +473284,Taxation and Finance,Taxation and Finance +473273,Taxation and Finance,Taxation and Finance +473271,Taxation and Finance,Taxation and Finance +473268,Taxation and Finance,Taxation and Finance +134434,Other,Bird Conservation +93350,Education,Education +432606,Education,Education +93463,Education,Education +93461,Education,Education +93460,Education,Education +443913,Infrastructure,Infrastructure +432606,Regional Development,Regional Development +75114,Other,Go Solar +75096,Other,Go Solar +75799,Other,Go Solar +75154,Other,ecoEnergy for buildings and houses +385439,International Trade,International Trade +381332,International Trade,International Trade +273640,International Trade,International Trade +273638,International Trade,International Trade +273632,International Trade,International Trade +273612,International Trade,International Trade +250270,International Trade,International Trade +241186,International Trade,International Trade +203114,International Trade,International Trade +203113,International Trade,International Trade +203112,International Trade,International Trade +203111,International Trade,International Trade +175767,International Trade,International Trade +175652,International Trade,International Trade +175650,International Trade,International Trade +381331,International Trade,International Trade +379425,International Trade,International Trade +366698,International Trade,International Trade +366692,International Trade,International Trade +365234,International Trade,International Trade +356045,International Trade,International Trade +354043,International Trade,International Trade +349307,International Trade,International Trade +342025,International Trade,International Trade +325023,International Trade,International Trade +325012,International Trade,International Trade +316100,International Trade,International Trade +316099,International Trade,International Trade +316098,International Trade,International Trade +316097,International Trade,International Trade +316093,International Trade,International Trade +456346,International Trade,International Trade +456344,International Trade,International Trade +435678,International Trade,International Trade +435674,International Trade,International Trade +435667,International Trade,International Trade +428474,International Trade,International Trade +424029,International Trade,International Trade +93499,Taxation and Finance,Taxation and Finance +91334,Other,National Aboriginal Achievement Awards +77435,Agriculture,Agriculture +77434,Agriculture,Agriculture +83155,Agriculture,Agriculture +83154,Agriculture,Agriculture +80740,Agriculture,Agriculture +80739,Agriculture,Agriculture +80734,Agriculture,Agriculture +80727,Agriculture,Agriculture +80725,Agriculture,Agriculture +80709,Agriculture,Agriculture +80706,Agriculture,Agriculture +76777,Agriculture,Agriculture +76776,Agriculture,Agriculture +76775,Agriculture,Agriculture +96335,Agriculture,Agriculture +96334,Agriculture,Agriculture +87302,Agriculture,Agriculture +87301,Agriculture,Agriculture +87300,Agriculture,Agriculture +397976,Taxation and Finance,Taxation and Finance +419720,Taxation and Finance,Taxation and Finance +229034,Consumer Issues,Consumer Issues +229033,Consumer Issues,Consumer Issues +229032,Consumer Issues,Consumer Issues +229030,Consumer Issues,Consumer Issues +153566,Consumer Issues,Consumer Issues +251418,Energy,Energy +233629,Energy,Energy +269052,Energy,Energy +264253,Energy,Energy +233629,Environment,Environment +227141,Environment,Environment +269052,Environment,Environment +427016,Industry,Industry +421141,Industry,Industry +164267,Industry,Industry +276870,Industry,Industry +276869,Industry,Industry +473872,Industry,Industry +430411,Industry,Industry +220388,Infrastructure,Infrastructure +473872,Infrastructure,Infrastructure +157004,Infrastructure,Infrastructure +281509,Infrastructure,Infrastructure +276870,Infrastructure,Infrastructure +276869,Infrastructure,Infrastructure +269052,Infrastructure,Infrastructure +269051,Infrastructure,Infrastructure +269033,Infrastructure,Infrastructure +264253,Infrastructure,Infrastructure +262889,Infrastructure,Infrastructure +260509,Infrastructure,Infrastructure +251418,Infrastructure,Infrastructure +233629,Infrastructure,Infrastructure +227141,Infrastructure,Infrastructure +428254,International Relations,International Relations +430411,Taxation and Finance,Taxation and Finance +189865,Tourism,Tourism +189864,Tourism,Tourism +113880,Tourism,Tourism +168412,Tourism,Tourism +168409,Tourism,Tourism +421167,Transportation,Transportation +421141,Transportation,Transportation +80949,Transportation,Transportation +76910,Transportation,Transportation +197787,Transportation,Transportation +194756,Transportation,Transportation +194748,Transportation,Transportation +175454,Transportation,Transportation +173496,Transportation,Transportation +173492,Transportation,Transportation +168412,Transportation,Transportation +168409,Transportation,Transportation +168406,Transportation,Transportation +165894,Transportation,Transportation +164266,Transportation,Transportation +162279,Transportation,Transportation +162269,Transportation,Transportation +159738,Transportation,Transportation +159735,Transportation,Transportation +159733,Transportation,Transportation +157007,Transportation,Transportation +157006,Transportation,Transportation +155026,Transportation,Transportation +153566,Transportation,Transportation +113882,Transportation,Transportation +113880,Transportation,Transportation +337253,Transportation,Transportation +332680,Transportation,Transportation +320109,Transportation,Transportation +316451,Transportation,Transportation +316450,Transportation,Transportation +281509,Transportation,Transportation +276870,Transportation,Transportation +276869,Transportation,Transportation +269051,Transportation,Transportation +269033,Transportation,Transportation +264253,Transportation,Transportation +262889,Transportation,Transportation +260551,Transportation,Transportation +260509,Transportation,Transportation +251418,Transportation,Transportation +239369,Transportation,Transportation +233629,Transportation,Transportation +229034,Transportation,Transportation +229033,Transportation,Transportation +229032,Transportation,Transportation +229030,Transportation,Transportation +227143,Transportation,Transportation +227141,Transportation,Transportation +223465,Transportation,Transportation +220388,Transportation,Transportation +212294,Transportation,Transportation +207153,Transportation,Transportation +207151,Transportation,Transportation +398510,Transportation,Transportation +393055,Transportation,Transportation +386576,Transportation,Transportation +377779,Transportation,Transportation +365603,Transportation,Transportation +364082,Transportation,Transportation +530197,Transportation,Transportation +473872,Transportation,Transportation +473871,Transportation,Transportation +460947,Transportation,Transportation +445062,Transportation,Transportation +430411,Transportation,Transportation +428254,Transportation,Transportation +133235,Other,"Social Finance, Non-Profit Corporation Law, Housing" +117608,Other,"Social Finance, Non-Profit Corporation Law, Housing" +74394,Other,"Social Finance, Non-Profit Corporation Law, Housing" +110434,Other,"Social Finance, Non-Profit Corporation Law, Housing" +97900,Other,"Social Finance, Non-Profit Corporation Law, Housing" +97899,Other,"Social Finance, Non-Profit Corporation Law, Housing" +97898,Other,"Social Finance, Non-Profit Corporation Law, Housing" +97896,Other,"Social Finance, Non-Profit Corporation Law, Housing" +75496,Other,Customs & Border policies +75494,Other,Customs & Border policies +86394,Other,Customs & Border policies +75498,Other,Duty Free Regulations +75500,Other,International Air Policy +75498,Other,International Air Policy +84860,Other,International Air Policy +81900,Other,International Air Policy +102656,Other,Policies Related To Aviation Security +102655,Other,Policies Related To Aviation Security +84860,Other,Policies Related To Aviation Security +79717,Other,Policies Related To Aviation Security +145823,Other,Policies Related To Aviation Security +140134,Other,Policies Related To Aviation Security +138556,Other,Policies Related To Aviation Security +138554,Other,Policies Related To Aviation Security +81900,Other,Policies Related To Aviation Transportation +75498,Other,Policies Related To Aviation Transportation +89136,Other,Policies Related To Aviation Transportation +84859,Other,Policies Related To Aviation Transportation +84857,Other,Policies Related To Aviation Transportation +81917,Other,Policies Related To Aviation Transportation +103414,Other,Policies Related To The Development Of A Regional System Of Airports In The Greater Toronto Area +84860,Other,Policies Related To The Development Of A Regional System Of Airports In The Greater Toronto Area +445307,Energy,Energy +445301,Energy,Energy +258770,Energy,Energy +258501,Energy,Energy +258213,Energy,Energy +443600,Energy,Energy +443598,Energy,Energy +443595,Energy,Energy +442296,Energy,Energy +442295,Energy,Energy +442293,Energy,Energy +442291,Energy,Energy +405785,Energy,Energy +402061,Energy,Energy +269269,Energy,Energy +269209,Energy,Energy +264132,Energy,Energy +264130,Energy,Energy +534840,Energy,Energy +407413,Environment,Environment +407412,Environment,Environment +165950,Environment,Environment +260309,Environment,Environment +258794,Environment,Environment +258790,Environment,Environment +258770,Environment,Environment +258749,Environment,Environment +258729,Environment,Environment +258710,Environment,Environment +258709,Environment,Environment +258689,Environment,Environment +258632,Environment,Environment +258574,Environment,Environment +258570,Environment,Environment +258558,Environment,Environment +258553,Environment,Environment +258540,Environment,Environment +258501,Environment,Environment +258213,Environment,Environment +250772,Environment,Environment +250771,Environment,Environment +250769,Environment,Environment +250767,Environment,Environment +250766,Environment,Environment +250765,Environment,Environment +250763,Environment,Environment +250761,Environment,Environment +244339,Environment,Environment +244336,Environment,Environment +244335,Environment,Environment +215797,Environment,Environment +201090,Environment,Environment +201089,Environment,Environment +201087,Environment,Environment +343477,Environment,Environment +341626,Environment,Environment +341624,Environment,Environment +341619,Environment,Environment +341613,Environment,Environment +341584,Environment,Environment +338472,Environment,Environment +338469,Environment,Environment +335806,Environment,Environment +335805,Environment,Environment +335802,Environment,Environment +335798,Environment,Environment +329823,Environment,Environment +321751,Environment,Environment +319098,Environment,Environment +310267,Environment,Environment +310245,Environment,Environment +310241,Environment,Environment +310234,Environment,Environment +303129,Environment,Environment +303111,Environment,Environment +303110,Environment,Environment +303109,Environment,Environment +276611,Environment,Environment +273017,Environment,Environment +272629,Environment,Environment +269269,Environment,Environment +269209,Environment,Environment +264132,Environment,Environment +264130,Environment,Environment +264129,Environment,Environment +264109,Environment,Environment +405786,Environment,Environment +405785,Environment,Environment +402178,Environment,Environment +402061,Environment,Environment +396113,Environment,Environment +395516,Environment,Environment +391829,Environment,Environment +391826,Environment,Environment +391825,Environment,Environment +391824,Environment,Environment +387982,Environment,Environment +387980,Environment,Environment +387979,Environment,Environment +385630,Environment,Environment +385619,Environment,Environment +385615,Environment,Environment +385489,Environment,Environment +385485,Environment,Environment +383616,Environment,Environment +381446,Environment,Environment +381445,Environment,Environment +379559,Environment,Environment +374758,Environment,Environment +374757,Environment,Environment +372426,Environment,Environment +372419,Environment,Environment +372383,Environment,Environment +372377,Environment,Environment +369126,Environment,Environment +369125,Environment,Environment +366682,Environment,Environment +366678,Environment,Environment +357884,Environment,Environment +355357,Environment,Environment +352806,Environment,Environment +350831,Environment,Environment +543641,Environment,Environment +543639,Environment,Environment +543635,Environment,Environment +541364,Environment,Environment +539747,Environment,Environment +539569,Environment,Environment +539568,Environment,Environment +537743,Environment,Environment +534848,Environment,Environment +534844,Environment,Environment +534837,Environment,Environment +534835,Environment,Environment +534830,Environment,Environment +534812,Environment,Environment +531821,Environment,Environment +531731,Environment,Environment +528493,Environment,Environment +528490,Environment,Environment +528480,Environment,Environment +528443,Environment,Environment +525028,Environment,Environment +525026,Environment,Environment +525025,Environment,Environment +525023,Environment,Environment +525021,Environment,Environment +525020,Environment,Environment +525011,Environment,Environment +525005,Environment,Environment +523095,Environment,Environment +523091,Environment,Environment +523067,Environment,Environment +519507,Environment,Environment +519502,Environment,Environment +519501,Environment,Environment +519500,Environment,Environment +516728,Environment,Environment +516726,Environment,Environment +516725,Environment,Environment +516724,Environment,Environment +515754,Environment,Environment +514108,Environment,Environment +512636,Environment,Environment +510636,Environment,Environment +510630,Environment,Environment +510622,Environment,Environment +508050,Environment,Environment +504945,Environment,Environment +498973,Environment,Environment +495104,Environment,Environment +486879,Environment,Environment +482131,Environment,Environment +482125,Environment,Environment +482121,Environment,Environment +482118,Environment,Environment +482114,Environment,Environment +478157,Environment,Environment +478149,Environment,Environment +477060,Environment,Environment +472277,Environment,Environment +472274,Environment,Environment +470173,Environment,Environment +470168,Environment,Environment +470167,Environment,Environment +467182,Environment,Environment +467178,Environment,Environment +467166,Environment,Environment +467161,Environment,Environment +467159,Environment,Environment +467153,Environment,Environment +467152,Environment,Environment +467148,Environment,Environment +464079,Environment,Environment +464073,Environment,Environment +461611,Environment,Environment +461608,Environment,Environment +461605,Environment,Environment +459509,Environment,Environment +459508,Environment,Environment +458751,Environment,Environment +458750,Environment,Environment +458749,Environment,Environment +457147,Environment,Environment +457143,Environment,Environment +457139,Environment,Environment +457136,Environment,Environment +456737,Environment,Environment +453839,Environment,Environment +453838,Environment,Environment +453837,Environment,Environment +452009,Environment,Environment +452008,Environment,Environment +452007,Environment,Environment +452006,Environment,Environment +452005,Environment,Environment +452003,Environment,Environment +451999,Environment,Environment +451998,Environment,Environment +449393,Environment,Environment +449392,Environment,Environment +449391,Environment,Environment +449390,Environment,Environment +449388,Environment,Environment +447414,Environment,Environment +445309,Environment,Environment +445308,Environment,Environment +445307,Environment,Environment +445301,Environment,Environment +443600,Environment,Environment +443598,Environment,Environment +443595,Environment,Environment +442299,Environment,Environment +442296,Environment,Environment +442295,Environment,Environment +442293,Environment,Environment +442291,Environment,Environment +438000,Environment,Environment +437998,Environment,Environment +437994,Environment,Environment +435074,Environment,Environment +435073,Environment,Environment +435072,Environment,Environment +434956,Environment,Environment +430645,Environment,Environment +429824,Environment,Environment +427808,Environment,Environment +423336,Environment,Environment +423334,Environment,Environment +422644,Environment,Environment +422605,Environment,Environment +419944,Environment,Environment +419940,Environment,Environment +418924,Environment,Environment +418353,Environment,Environment +418351,Environment,Environment +418350,Environment,Environment +417681,Environment,Environment +415827,Environment,Environment +415821,Environment,Environment +415812,Environment,Environment +415789,Environment,Environment +415780,Environment,Environment +415772,Environment,Environment +415761,Environment,Environment +415753,Environment,Environment +415751,Environment,Environment +415740,Environment,Environment +413359,Environment,Environment +413353,Environment,Environment +409950,Environment,Environment +408128,Environment,Environment +407416,Environment,Environment +407415,Environment,Environment +467158,Fisheries,Fisheries +442299,Fisheries,Fisheries +303129,Fisheries,Fisheries +272629,Fisheries,Fisheries +264129,Fisheries,Fisheries +264109,Fisheries,Fisheries +258553,Fisheries,Fisheries +407414,Fisheries,Fisheries +387982,Fisheries,Fisheries +387980,Fisheries,Fisheries +418924,Forestry,Forestry +525019,Health,Health +525015,Health,Health +372426,Health,Health +366678,Health,Health +357884,Health,Health +352806,Health,Health +338472,Health,Health +338469,Health,Health +335805,Health,Health +335802,Health,Health +418353,Health,Health +418351,Health,Health +418350,Health,Health +417681,Health,Health +405786,Health,Health +402178,Health,Health +543636,Health,Health +258550,Taxation and Finance,Taxation and Finance +215797,Taxation and Finance,Taxation and Finance +258561,Transportation,Transportation +75497,Consumer Issues,Consumer Issues +84860,Consumer Issues,Consumer Issues +79718,Consumer Issues,Consumer Issues +458802,Health,Health +458798,Health,Health +93056,Health,Health +93055,Health,Health +130596,Health,Health +316711,Health,Health +316710,Health,Health +316709,Health,Health +172757,Health,Health +160675,Health,Health +157649,Health,Health +334492,Health,Health +334491,Health,Health +334490,Health,Health +333833,Health,Health +333832,Health,Health +322339,Health,Health +322338,Health,Health +458796,Health,Health +458793,Health,Health +457656,Health,Health +455301,Health,Health +455293,Health,Health +455265,Health,Health +543073,Health,Health +543072,Health,Health +543071,Health,Health +543070,Health,Health +542978,Health,Health +529418,Health,Health +529417,Health,Health +524873,Health,Health +524870,Health,Health +524869,Health,Health +521661,Health,Health +512846,Health,Health +506647,Health,Health +501280,Health,Health +491372,Health,Health +491368,Health,Health +491358,Health,Health +487716,Health,Health +487715,Health,Health +487714,Health,Health +485077,Health,Health +485064,Health,Health +485059,Health,Health +485052,Health,Health +482052,Health,Health +482047,Health,Health +479574,Health,Health +475577,Health,Health +473113,Health,Health +462030,Health,Health +224367,Taxation and Finance,Taxation and Finance +157649,Taxation and Finance,Taxation and Finance +150392,Consumer Issues,Consumer Issues +150391,Consumer Issues,Consumer Issues +150388,Consumer Issues,Consumer Issues +150386,Consumer Issues,Consumer Issues +309840,Consumer Issues,Consumer Issues +309832,Consumer Issues,Consumer Issues +233836,Consumer Issues,Consumer Issues +233835,Consumer Issues,Consumer Issues +389543,Immigration,Immigration +352914,Immigration,Immigration +350291,Immigration,Immigration +402296,Immigration,Immigration +374186,Industry,Industry +374185,Industry,Industry +150395,Industry,Industry +150392,Industry,Industry +150391,Industry,Industry +150388,Industry,Industry +150386,Industry,Industry +374191,Industry,Industry +374189,Industry,Industry +309849,Infrastructure,Infrastructure +309847,Infrastructure,Infrastructure +100816,Infrastructure,Infrastructure +100815,Infrastructure,Infrastructure +100814,Infrastructure,Infrastructure +100813,Infrastructure,Infrastructure +100812,Infrastructure,Infrastructure +194938,Infrastructure,Infrastructure +402295,Infrastructure,Infrastructure +402294,Infrastructure,Infrastructure +389547,Infrastructure,Infrastructure +389545,Infrastructure,Infrastructure +389543,Infrastructure,Infrastructure +389542,Infrastructure,Infrastructure +389538,Infrastructure,Infrastructure +389537,Infrastructure,Infrastructure +389536,Infrastructure,Infrastructure +389535,Infrastructure,Infrastructure +374191,Infrastructure,Infrastructure +374189,Infrastructure,Infrastructure +374187,Infrastructure,Infrastructure +374186,Infrastructure,Infrastructure +374185,Labour,Labour +389545,Labour,Labour +374191,Labour,Labour +374189,Labour,Labour +374187,Labour,Labour +352914,Regional Development,Regional Development +350291,Regional Development,Regional Development +100816,Regional Development,Regional Development +100815,Regional Development,Regional Development +100814,Regional Development,Regional Development +100813,Regional Development,Regional Development +100812,Regional Development,Regional Development +309840,Regional Development,Regional Development +309832,Regional Development,Regional Development +309826,Regional Development,Regional Development +150395,Regional Development,Regional Development +150392,Regional Development,Regional Development +389547,Regional Development,Regional Development +389545,Regional Development,Regional Development +389542,Regional Development,Regional Development +389538,Regional Development,Regional Development +389537,Regional Development,Regional Development +389536,Regional Development,Regional Development +389535,Regional Development,Regional Development +374191,Regional Development,Regional Development +374189,Regional Development,Regional Development +374187,Regional Development,Regional Development +374186,Regional Development,Regional Development +374186,Taxation and Finance,Taxation and Finance +374185,Taxation and Finance,Taxation and Finance +374191,Taxation and Finance,Taxation and Finance +374189,Taxation and Finance,Taxation and Finance +402295,Tourism,Tourism +402294,Tourism,Tourism +150386,Tourism,Tourism +100816,Tourism,Tourism +100815,Tourism,Tourism +100814,Tourism,Tourism +100813,Tourism,Tourism +100812,Tourism,Tourism +100810,Tourism,Tourism +309835,Tourism,Tourism +309832,Tourism,Tourism +309826,Tourism,Tourism +233836,Tourism,Tourism +233835,Tourism,Tourism +194950,Tourism,Tourism +194948,Tourism,Tourism +194945,Tourism,Tourism +194943,Tourism,Tourism +194942,Tourism,Tourism +194941,Tourism,Tourism +194939,Tourism,Tourism +194938,Tourism,Tourism +150395,Tourism,Tourism +150392,Tourism,Tourism +150391,Tourism,Tourism +150388,Tourism,Tourism +352914,Tourism,Tourism +350291,Tourism,Tourism +309852,Tourism,Tourism +309849,Tourism,Tourism +309847,Tourism,Tourism +309843,Tourism,Tourism +309840,Tourism,Tourism +389547,Tourism,Tourism +389545,Tourism,Tourism +389542,Tourism,Tourism +389538,Tourism,Tourism +389537,Tourism,Tourism +389536,Tourism,Tourism +389535,Tourism,Tourism +374191,Tourism,Tourism +374189,Tourism,Tourism +374187,Tourism,Tourism +374186,Tourism,Tourism +374185,Tourism,Tourism +75799,Other,Car Heaven +75798,Other,Car Heaven +75815,Employment and Training,Employment and Training +84906,Infrastructure,Infrastructure +84903,Infrastructure,Infrastructure +93780,Infrastructure,Infrastructure +89796,Infrastructure,Infrastructure +89355,Infrastructure,Infrastructure +89354,Infrastructure,Infrastructure +86895,Infrastructure,Infrastructure +111454,Other,International trade negotiations with reference to supply management +81694,Other,Federal Framework on Air Emissions +80595,Other,Federal Framework on Air Emissions +77795,Other,Federal Framework on Air Emissions +77793,Other,Federal Framework on Air Emissions +76041,Other,Federal Framework on Air Emissions +75976,Other,Federal Framework on Air Emissions +106409,Other,Federal Framework on Air Emissions +101322,Other,Federal Framework on Air Emissions +101318,Other,Federal Framework on Air Emissions +101316,Other,Federal Framework on Air Emissions +101202,Other,Federal Framework on Air Emissions +101116,Other,Federal Framework on Air Emissions +101114,Other,Federal Framework on Air Emissions +101107,Other,Federal Framework on Air Emissions +101106,Other,Federal Framework on Air Emissions +101103,Other,Federal Framework on Air Emissions +94200,Other,Federal Framework on Air Emissions +94199,Other,Federal Framework on Air Emissions +87872,Other,Federal Framework on Air Emissions +123494,Other,Federal Framework on Air Emissions +109727,Other,Federal Framework on Air Emissions +109726,Other,Federal Framework on Air Emissions +109724,Other,Federal Framework on Air Emissions +109697,Other,Federal Framework on Air Emissions +76034,Other,ecoEnergy for buildings and houses +76034,Financial Institutions,Financial Institutions +76048,Other,Exit program for tobacco farmers +76047,Other,Exit program for tobacco farmers +77039,Other,Exit program for tobacco farmers +433843,Energy,Energy +433842,Energy,Energy +81114,Energy,Energy +77801,Energy,Energy +77800,Energy,Energy +77797,Energy,Energy +77796,Energy,Energy +77794,Energy,Energy +77791,Energy,Energy +77790,Energy,Energy +77786,Energy,Energy +77781,Energy,Energy +77778,Energy,Energy +77775,Energy,Energy +77771,Energy,Energy +153468,Energy,Energy +153461,Energy,Energy +153460,Energy,Energy +152307,Energy,Energy +152304,Energy,Energy +85602,Energy,Energy +85600,Energy,Energy +85599,Energy,Energy +83089,Energy,Energy +83086,Energy,Energy +83084,Energy,Energy +83083,Energy,Energy +83078,Energy,Energy +81121,Energy,Energy +81120,Energy,Energy +81119,Energy,Energy +81118,Energy,Energy +81116,Energy,Energy +81115,Energy,Energy +189788,Energy,Energy +189787,Energy,Energy +189786,Energy,Energy +189785,Energy,Energy +189784,Energy,Energy +180304,Energy,Energy +180284,Energy,Energy +180264,Energy,Energy +175654,Energy,Energy +175653,Energy,Energy +172047,Energy,Energy +168908,Energy,Energy +168900,Energy,Energy +166032,Energy,Energy +166028,Energy,Energy +166025,Energy,Energy +153474,Energy,Energy +153472,Energy,Energy +153469,Energy,Energy +232431,Energy,Energy +232430,Energy,Energy +232429,Energy,Energy +230275,Energy,Energy +230274,Energy,Energy +230273,Energy,Energy +227065,Energy,Energy +227064,Energy,Energy +227063,Energy,Energy +227062,Energy,Energy +227061,Energy,Energy +227060,Energy,Energy +227056,Energy,Energy +227050,Energy,Energy +227048,Energy,Energy +227047,Energy,Energy +216607,Energy,Energy +216590,Energy,Energy +216589,Energy,Energy +216588,Energy,Energy +216587,Energy,Energy +211829,Energy,Energy +209267,Energy,Energy +206928,Energy,Energy +206927,Energy,Energy +203208,Energy,Energy +203207,Energy,Energy +200559,Energy,Energy +200558,Energy,Energy +200557,Energy,Energy +200556,Energy,Energy +200555,Energy,Energy +200553,Energy,Energy +200552,Energy,Energy +195080,Energy,Energy +195079,Energy,Energy +195078,Energy,Energy +195077,Energy,Energy +195076,Energy,Energy +195075,Energy,Energy +195074,Energy,Energy +195073,Energy,Energy +195072,Energy,Energy +195071,Energy,Energy +195070,Energy,Energy +195069,Energy,Energy +195067,Energy,Energy +195066,Energy,Energy +195065,Energy,Energy +195063,Energy,Energy +195060,Energy,Energy +195058,Energy,Energy +195057,Energy,Energy +195055,Energy,Energy +195054,Energy,Energy +195053,Energy,Energy +195052,Energy,Energy +195051,Energy,Energy +195050,Energy,Energy +195049,Energy,Energy +195048,Energy,Energy +195047,Energy,Energy +195044,Energy,Energy +363644,Energy,Energy +362335,Energy,Energy +362333,Energy,Energy +362332,Energy,Energy +361260,Energy,Energy +361259,Energy,Energy +361257,Energy,Energy +359669,Energy,Energy +359668,Energy,Energy +357998,Energy,Energy +357997,Energy,Energy +357996,Energy,Energy +357995,Energy,Energy +357994,Energy,Energy +357993,Energy,Energy +357992,Energy,Energy +357990,Energy,Energy +356033,Energy,Energy +356030,Energy,Energy +356029,Energy,Energy +356028,Energy,Energy +356021,Energy,Energy +356017,Energy,Energy +354141,Energy,Energy +354140,Energy,Energy +351068,Energy,Energy +349276,Energy,Energy +349275,Energy,Energy +349274,Energy,Energy +349273,Energy,Energy +347189,Energy,Energy +347188,Energy,Energy +347187,Energy,Energy +344096,Energy,Energy +340881,Energy,Energy +340880,Energy,Energy +338773,Energy,Energy +338772,Energy,Energy +338761,Energy,Energy +338756,Energy,Energy +338750,Energy,Energy +338746,Energy,Energy +338742,Energy,Energy +336037,Energy,Energy +336036,Energy,Energy +336035,Energy,Energy +333743,Energy,Energy +333742,Energy,Energy +333741,Energy,Energy +332169,Energy,Energy +329829,Energy,Energy +329828,Energy,Energy +322351,Energy,Energy +322350,Energy,Energy +322349,Energy,Energy +319252,Energy,Energy +319246,Energy,Energy +319243,Energy,Energy +319242,Energy,Energy +316089,Energy,Energy +312973,Energy,Energy +312972,Energy,Energy +310525,Energy,Energy +310520,Energy,Energy +310517,Energy,Energy +310513,Energy,Energy +310508,Energy,Energy +310503,Energy,Energy +304509,Energy,Energy +304504,Energy,Energy +297022,Energy,Energy +297021,Energy,Energy +297019,Energy,Energy +297018,Energy,Energy +297017,Energy,Energy +297016,Energy,Energy +297014,Energy,Energy +287672,Energy,Energy +287671,Energy,Energy +287670,Energy,Energy +287669,Energy,Energy +282709,Energy,Energy +282690,Energy,Energy +282689,Energy,Energy +282670,Energy,Energy +282652,Energy,Energy +282650,Energy,Energy +282629,Energy,Energy +282609,Energy,Energy +282249,Energy,Energy +282229,Energy,Energy +282209,Energy,Energy +282190,Energy,Energy +282189,Energy,Energy +277420,Energy,Energy +277418,Energy,Energy +269628,Energy,Energy +269627,Energy,Energy +264540,Energy,Energy +264535,Energy,Energy +259451,Energy,Energy +259450,Energy,Energy +259449,Energy,Energy +254589,Energy,Energy +251491,Energy,Energy +245433,Energy,Energy +245416,Energy,Energy +245414,Energy,Energy +245412,Energy,Energy +245406,Energy,Energy +241133,Energy,Energy +241131,Energy,Energy +241126,Energy,Energy +430318,Energy,Energy +430317,Energy,Energy +428865,Energy,Energy +428862,Energy,Energy +428850,Energy,Energy +428848,Energy,Energy +426792,Energy,Energy +426791,Energy,Energy +426790,Energy,Energy +426788,Energy,Energy +426787,Energy,Energy +426786,Energy,Energy +426785,Energy,Energy +426783,Energy,Energy +426781,Energy,Energy +426780,Energy,Energy +424269,Energy,Energy +422545,Energy,Energy +422544,Energy,Energy +416902,Energy,Energy +413813,Energy,Energy +413812,Energy,Energy +413811,Energy,Energy +413810,Energy,Energy +413809,Energy,Energy +413807,Energy,Energy +413805,Energy,Energy +413803,Energy,Energy +413802,Energy,Energy +413800,Energy,Energy +413798,Energy,Energy +408198,Energy,Energy +408196,Energy,Energy +408195,Energy,Energy +406735,Energy,Energy +405535,Energy,Energy +405533,Energy,Energy +405530,Energy,Energy +405525,Energy,Energy +405519,Energy,Energy +405516,Energy,Energy +405341,Energy,Energy +405335,Energy,Energy +403724,Energy,Energy +403715,Energy,Energy +400761,Energy,Energy +400752,Energy,Energy +400751,Energy,Energy +399011,Energy,Energy +399010,Energy,Energy +396969,Energy,Energy +396968,Energy,Energy +396966,Energy,Energy +396961,Energy,Energy +393531,Energy,Energy +392804,Energy,Energy +392803,Energy,Energy +392800,Energy,Energy +388759,Energy,Energy +388758,Energy,Energy +388757,Energy,Energy +388756,Energy,Energy +388755,Energy,Energy +382484,Energy,Energy +382483,Energy,Energy +382481,Energy,Energy +382480,Energy,Energy +382479,Energy,Energy +381388,Energy,Energy +381387,Energy,Energy +381386,Energy,Energy +381382,Energy,Energy +377098,Energy,Energy +377097,Energy,Energy +377095,Energy,Energy +377094,Energy,Energy +377093,Energy,Energy +377092,Energy,Energy +377090,Energy,Energy +377087,Energy,Energy +374964,Energy,Energy +374960,Energy,Energy +374950,Energy,Energy +372785,Energy,Energy +372782,Energy,Energy +372780,Energy,Energy +372777,Energy,Energy +372774,Energy,Energy +372773,Energy,Energy +372770,Energy,Energy +372767,Energy,Energy +372766,Energy,Energy +372764,Energy,Energy +372763,Energy,Energy +372762,Energy,Energy +372761,Energy,Energy +372759,Energy,Energy +372758,Energy,Energy +372756,Energy,Energy +372754,Energy,Energy +369259,Energy,Energy +369257,Energy,Energy +369256,Energy,Energy +369255,Energy,Energy +369254,Energy,Energy +369251,Energy,Energy +369250,Energy,Energy +366805,Energy,Energy +366804,Energy,Energy +365299,Energy,Energy +365297,Energy,Energy +365294,Energy,Energy +365291,Energy,Energy +365288,Energy,Energy +365287,Energy,Energy +365285,Energy,Energy +363645,Energy,Energy +502491,Energy,Energy +502489,Energy,Energy +496334,Energy,Energy +496245,Energy,Energy +482389,Energy,Energy +478095,Energy,Energy +473430,Energy,Energy +473417,Energy,Energy +468470,Energy,Energy +468427,Energy,Energy +468426,Energy,Energy +468425,Energy,Energy +468424,Energy,Energy +468419,Energy,Energy +468416,Energy,Energy +468390,Energy,Energy +468374,Energy,Energy +460302,Energy,Energy +460221,Energy,Energy +460220,Energy,Energy +460219,Energy,Energy +459623,Energy,Energy +458886,Energy,Energy +458884,Energy,Energy +457287,Energy,Energy +457284,Energy,Energy +457281,Energy,Energy +454826,Energy,Energy +454811,Energy,Energy +454808,Energy,Energy +454806,Energy,Energy +454804,Energy,Energy +454802,Energy,Energy +454801,Energy,Energy +454799,Energy,Energy +454797,Energy,Energy +454794,Energy,Energy +454792,Energy,Energy +454790,Energy,Energy +454788,Energy,Energy +454784,Energy,Energy +451594,Energy,Energy +451593,Energy,Energy +451591,Energy,Energy +451589,Energy,Energy +451587,Energy,Energy +451586,Energy,Energy +451585,Energy,Energy +451584,Energy,Energy +451583,Energy,Energy +451582,Energy,Energy +451581,Energy,Energy +451580,Energy,Energy +450301,Energy,Energy +449788,Energy,Energy +449787,Energy,Energy +449785,Energy,Energy +447984,Energy,Energy +447974,Energy,Energy +447959,Energy,Energy +447948,Energy,Energy +445754,Energy,Energy +445753,Energy,Energy +445751,Energy,Energy +445750,Energy,Energy +445749,Energy,Energy +439592,Energy,Energy +439589,Energy,Energy +439588,Energy,Energy +439584,Energy,Energy +439582,Energy,Energy +439581,Energy,Energy +439578,Energy,Energy +439575,Energy,Energy +439572,Energy,Energy +439559,Energy,Energy +433846,Energy,Energy +433845,Energy,Energy +365299,Environment,Environment +365294,Environment,Environment +77800,Environment,Environment +77797,Environment,Environment +77796,Environment,Environment +77791,Environment,Environment +77775,Environment,Environment +152307,Environment,Environment +152304,Environment,Environment +117711,Environment,Environment +109818,Environment,Environment +109817,Environment,Environment +106496,Environment,Environment +200559,Environment,Environment +200558,Environment,Environment +200557,Environment,Environment +200556,Environment,Environment +200555,Environment,Environment +200553,Environment,Environment +200552,Environment,Environment +195080,Environment,Environment +195078,Environment,Environment +195077,Environment,Environment +195076,Environment,Environment +195075,Environment,Environment +195074,Environment,Environment +195070,Environment,Environment +195069,Environment,Environment +195067,Environment,Environment +195066,Environment,Environment +195065,Environment,Environment +195055,Environment,Environment +195051,Environment,Environment +195050,Environment,Environment +195047,Environment,Environment +168908,Environment,Environment +166025,Environment,Environment +153474,Environment,Environment +153472,Environment,Environment +153469,Environment,Environment +153468,Environment,Environment +153461,Environment,Environment +153460,Environment,Environment +363644,Environment,Environment +362335,Environment,Environment +362333,Environment,Environment +362332,Environment,Environment +357998,Environment,Environment +357997,Environment,Environment +357996,Environment,Environment +357995,Environment,Environment +357994,Environment,Environment +357993,Environment,Environment +357992,Environment,Environment +357990,Environment,Environment +356029,Environment,Environment +356028,Environment,Environment +356021,Environment,Environment +356017,Environment,Environment +354141,Environment,Environment +349276,Environment,Environment +349275,Environment,Environment +349274,Environment,Environment +349273,Environment,Environment +347188,Environment,Environment +344096,Environment,Environment +338773,Environment,Environment +338761,Environment,Environment +333743,Environment,Environment +329829,Environment,Environment +322351,Environment,Environment +310525,Environment,Environment +310520,Environment,Environment +310517,Environment,Environment +304509,Environment,Environment +297021,Environment,Environment +297017,Environment,Environment +297014,Environment,Environment +282670,Environment,Environment +282629,Environment,Environment +282609,Environment,Environment +282249,Environment,Environment +282229,Environment,Environment +282209,Environment,Environment +282190,Environment,Environment +282189,Environment,Environment +277420,Environment,Environment +269628,Environment,Environment +269627,Environment,Environment +264535,Environment,Environment +259449,Environment,Environment +254589,Environment,Environment +251491,Environment,Environment +245433,Environment,Environment +245414,Environment,Environment +245412,Environment,Environment +245406,Environment,Environment +241131,Environment,Environment +230275,Environment,Environment +230273,Environment,Environment +227064,Environment,Environment +227063,Environment,Environment +216607,Environment,Environment +216590,Environment,Environment +216589,Environment,Environment +216588,Environment,Environment +211829,Environment,Environment +209267,Environment,Environment +206928,Environment,Environment +206927,Environment,Environment +203208,Environment,Environment +510258,Environment,Environment +505825,Environment,Environment +505823,Environment,Environment +470667,Environment,Environment +468416,Environment,Environment +468390,Environment,Environment +458884,Environment,Environment +457287,Environment,Environment +457284,Environment,Environment +457281,Environment,Environment +454826,Environment,Environment +454808,Environment,Environment +454806,Environment,Environment +454804,Environment,Environment +454802,Environment,Environment +454801,Environment,Environment +454799,Environment,Environment +454797,Environment,Environment +454794,Environment,Environment +454792,Environment,Environment +454790,Environment,Environment +454788,Environment,Environment +454784,Environment,Environment +451594,Environment,Environment +451593,Environment,Environment +451591,Environment,Environment +451589,Environment,Environment +451587,Environment,Environment +451586,Environment,Environment +451585,Environment,Environment +451584,Environment,Environment +451583,Environment,Environment +451582,Environment,Environment +451581,Environment,Environment +451580,Environment,Environment +450301,Environment,Environment +449788,Environment,Environment +449787,Environment,Environment +449785,Environment,Environment +447984,Environment,Environment +447974,Environment,Environment +447959,Environment,Environment +447948,Environment,Environment +445754,Environment,Environment +445753,Environment,Environment +445751,Environment,Environment +445750,Environment,Environment +445749,Environment,Environment +439592,Environment,Environment +439589,Environment,Environment +439588,Environment,Environment +439584,Environment,Environment +439582,Environment,Environment +439581,Environment,Environment +439578,Environment,Environment +439575,Environment,Environment +439572,Environment,Environment +439559,Environment,Environment +433846,Environment,Environment +433845,Environment,Environment +430318,Environment,Environment +428850,Environment,Environment +428848,Environment,Environment +426791,Environment,Environment +426790,Environment,Environment +426788,Environment,Environment +426787,Environment,Environment +426786,Environment,Environment +426785,Environment,Environment +426783,Environment,Environment +426781,Environment,Environment +426780,Environment,Environment +424269,Environment,Environment +422545,Environment,Environment +422544,Environment,Environment +416902,Environment,Environment +413813,Environment,Environment +413812,Environment,Environment +413811,Environment,Environment +413810,Environment,Environment +413809,Environment,Environment +413807,Environment,Environment +413805,Environment,Environment +413803,Environment,Environment +413802,Environment,Environment +413800,Environment,Environment +413798,Environment,Environment +408198,Environment,Environment +408196,Environment,Environment +406735,Environment,Environment +405535,Environment,Environment +405533,Environment,Environment +405530,Environment,Environment +405525,Environment,Environment +405519,Environment,Environment +405516,Environment,Environment +405341,Environment,Environment +403724,Environment,Environment +403715,Environment,Environment +400761,Environment,Environment +400751,Environment,Environment +399011,Environment,Environment +399010,Environment,Environment +396968,Environment,Environment +396966,Environment,Environment +396961,Environment,Environment +392803,Environment,Environment +392800,Environment,Environment +388758,Environment,Environment +388757,Environment,Environment +388755,Environment,Environment +382483,Environment,Environment +381387,Environment,Environment +381382,Environment,Environment +377098,Environment,Environment +377090,Environment,Environment +374964,Environment,Environment +372767,Environment,Environment +372764,Environment,Environment +361260,Fisheries,Fisheries +357996,Fisheries,Fisheries +81121,Fisheries,Fisheries +81120,Fisheries,Fisheries +81119,Fisheries,Fisheries +81118,Fisheries,Fisheries +81116,Fisheries,Fisheries +81115,Fisheries,Fisheries +81114,Fisheries,Fisheries +77778,Fisheries,Fisheries +77771,Fisheries,Fisheries +282229,Fisheries,Fisheries +277420,Fisheries,Fisheries +264535,Fisheries,Fisheries +241131,Fisheries,Fisheries +195078,Fisheries,Fisheries +195070,Fisheries,Fisheries +396966,Fisheries,Fisheries +377095,Fisheries,Fisheries +470667,Industry,Industry +413803,Industry,Industry +117708,Industry,Industry +117701,Industry,Industry +117698,Industry,Industry +195079,Industry,Industry +382479,Industry,Industry +377098,Industry,Industry +374950,Industry,Industry +372759,Industry,Industry +372756,Industry,Industry +369254,Industry,Industry +366804,Industry,Industry +365285,Industry,Industry +363645,Industry,Industry +363644,Industry,Industry +362333,Industry,Industry +362332,Industry,Industry +227065,Industry,Industry +227062,Industry,Industry +227061,Industry,Industry +227060,Industry,Industry +227056,Industry,Industry +227050,Industry,Industry +227048,Industry,Industry +227047,Industry,Industry +516961,Industry,Industry +511387,Industry,Industry +511385,Industry,Industry +511381,Industry,Industry +511379,Industry,Industry +508874,Industry,Industry +508867,Industry,Industry +508859,Industry,Industry +508854,Industry,Industry +505825,Industry,Industry +505823,Industry,Industry +502488,Industry,Industry +502487,Industry,Industry +499451,Industry,Industry +499449,Industry,Industry +496334,Industry,Industry +496245,Industry,Industry +491953,Industry,Industry +488233,Industry,Industry +486570,Industry,Industry +485233,Industry,Industry +485231,Industry,Industry +482389,Industry,Industry +482387,Industry,Industry +482384,Industry,Industry +480272,Industry,Industry +478099,Industry,Industry +478095,Industry,Industry +475888,Industry,Industry +475881,Industry,Industry +473498,Industry,Industry +473482,Industry,Industry +473467,Industry,Industry +470853,Industry,Industry +470688,Industry,Industry +451586,Infrastructure,Infrastructure +451585,Infrastructure,Infrastructure +83084,Infrastructure,Infrastructure +83083,Infrastructure,Infrastructure +83078,Infrastructure,Infrastructure +81121,Infrastructure,Infrastructure +81120,Infrastructure,Infrastructure +81119,Infrastructure,Infrastructure +81118,Infrastructure,Infrastructure +81116,Infrastructure,Infrastructure +81115,Infrastructure,Infrastructure +81114,Infrastructure,Infrastructure +77790,Infrastructure,Infrastructure +77786,Infrastructure,Infrastructure +77781,Infrastructure,Infrastructure +113994,Infrastructure,Infrastructure +83089,Infrastructure,Infrastructure +83086,Infrastructure,Infrastructure +200558,Infrastructure,Infrastructure +200557,Infrastructure,Infrastructure +200556,Infrastructure,Infrastructure +200555,Infrastructure,Infrastructure +200553,Infrastructure,Infrastructure +195080,Infrastructure,Infrastructure +195079,Infrastructure,Infrastructure +195078,Infrastructure,Infrastructure +195077,Infrastructure,Infrastructure +195076,Infrastructure,Infrastructure +195074,Infrastructure,Infrastructure +195073,Infrastructure,Infrastructure +195072,Infrastructure,Infrastructure +195071,Infrastructure,Infrastructure +195070,Infrastructure,Infrastructure +195069,Infrastructure,Infrastructure +195067,Infrastructure,Infrastructure +195066,Infrastructure,Infrastructure +195065,Infrastructure,Infrastructure +195063,Infrastructure,Infrastructure +195060,Infrastructure,Infrastructure +195058,Infrastructure,Infrastructure +195057,Infrastructure,Infrastructure +195055,Infrastructure,Infrastructure +195054,Infrastructure,Infrastructure +195053,Infrastructure,Infrastructure +195052,Infrastructure,Infrastructure +195050,Infrastructure,Infrastructure +195049,Infrastructure,Infrastructure +195048,Infrastructure,Infrastructure +195047,Infrastructure,Infrastructure +195044,Infrastructure,Infrastructure +189788,Infrastructure,Infrastructure +189787,Infrastructure,Infrastructure +189786,Infrastructure,Infrastructure +189785,Infrastructure,Infrastructure +189784,Infrastructure,Infrastructure +180304,Infrastructure,Infrastructure +180264,Infrastructure,Infrastructure +166032,Infrastructure,Infrastructure +166028,Infrastructure,Infrastructure +153474,Infrastructure,Infrastructure +153472,Infrastructure,Infrastructure +153469,Infrastructure,Infrastructure +153468,Infrastructure,Infrastructure +153461,Infrastructure,Infrastructure +357994,Infrastructure,Infrastructure +357993,Infrastructure,Infrastructure +357992,Infrastructure,Infrastructure +357990,Infrastructure,Infrastructure +356033,Infrastructure,Infrastructure +356030,Infrastructure,Infrastructure +356029,Infrastructure,Infrastructure +356028,Infrastructure,Infrastructure +356021,Infrastructure,Infrastructure +356017,Infrastructure,Infrastructure +354141,Infrastructure,Infrastructure +354140,Infrastructure,Infrastructure +351068,Infrastructure,Infrastructure +349276,Infrastructure,Infrastructure +349275,Infrastructure,Infrastructure +349274,Infrastructure,Infrastructure +349273,Infrastructure,Infrastructure +347189,Infrastructure,Infrastructure +347187,Infrastructure,Infrastructure +344096,Infrastructure,Infrastructure +340881,Infrastructure,Infrastructure +340880,Infrastructure,Infrastructure +338773,Infrastructure,Infrastructure +338772,Infrastructure,Infrastructure +338761,Infrastructure,Infrastructure +338756,Infrastructure,Infrastructure +338750,Infrastructure,Infrastructure +338746,Infrastructure,Infrastructure +338742,Infrastructure,Infrastructure +336037,Infrastructure,Infrastructure +336036,Infrastructure,Infrastructure +336035,Infrastructure,Infrastructure +333743,Infrastructure,Infrastructure +333742,Infrastructure,Infrastructure +333741,Infrastructure,Infrastructure +332169,Infrastructure,Infrastructure +329829,Infrastructure,Infrastructure +329828,Infrastructure,Infrastructure +322351,Infrastructure,Infrastructure +322350,Infrastructure,Infrastructure +322349,Infrastructure,Infrastructure +316089,Infrastructure,Infrastructure +312973,Infrastructure,Infrastructure +312972,Infrastructure,Infrastructure +310525,Infrastructure,Infrastructure +310520,Infrastructure,Infrastructure +310517,Infrastructure,Infrastructure +310513,Infrastructure,Infrastructure +310508,Infrastructure,Infrastructure +310503,Infrastructure,Infrastructure +304509,Infrastructure,Infrastructure +304504,Infrastructure,Infrastructure +297016,Infrastructure,Infrastructure +297014,Infrastructure,Infrastructure +287672,Infrastructure,Infrastructure +282709,Infrastructure,Infrastructure +282690,Infrastructure,Infrastructure +282689,Infrastructure,Infrastructure +282670,Infrastructure,Infrastructure +282652,Infrastructure,Infrastructure +282650,Infrastructure,Infrastructure +282629,Infrastructure,Infrastructure +282609,Infrastructure,Infrastructure +282249,Infrastructure,Infrastructure +282229,Infrastructure,Infrastructure +282209,Infrastructure,Infrastructure +282190,Infrastructure,Infrastructure +282189,Infrastructure,Infrastructure +277418,Infrastructure,Infrastructure +269628,Infrastructure,Infrastructure +269627,Infrastructure,Infrastructure +264540,Infrastructure,Infrastructure +264535,Infrastructure,Infrastructure +259451,Infrastructure,Infrastructure +259450,Infrastructure,Infrastructure +254589,Infrastructure,Infrastructure +251491,Infrastructure,Infrastructure +245433,Infrastructure,Infrastructure +245416,Infrastructure,Infrastructure +245414,Infrastructure,Infrastructure +245412,Infrastructure,Infrastructure +245406,Infrastructure,Infrastructure +241133,Infrastructure,Infrastructure +241131,Infrastructure,Infrastructure +241126,Infrastructure,Infrastructure +232431,Infrastructure,Infrastructure +232430,Infrastructure,Infrastructure +232429,Infrastructure,Infrastructure +230274,Infrastructure,Infrastructure +230273,Infrastructure,Infrastructure +227064,Infrastructure,Infrastructure +216607,Infrastructure,Infrastructure +216590,Infrastructure,Infrastructure +216589,Infrastructure,Infrastructure +216588,Infrastructure,Infrastructure +216587,Infrastructure,Infrastructure +211829,Infrastructure,Infrastructure +209267,Infrastructure,Infrastructure +206928,Infrastructure,Infrastructure +206927,Infrastructure,Infrastructure +203208,Infrastructure,Infrastructure +203207,Infrastructure,Infrastructure +200559,Infrastructure,Infrastructure +451584,Infrastructure,Infrastructure +451583,Infrastructure,Infrastructure +451582,Infrastructure,Infrastructure +451581,Infrastructure,Infrastructure +451580,Infrastructure,Infrastructure +450301,Infrastructure,Infrastructure +449788,Infrastructure,Infrastructure +449787,Infrastructure,Infrastructure +449785,Infrastructure,Infrastructure +447984,Infrastructure,Infrastructure +447974,Infrastructure,Infrastructure +447959,Infrastructure,Infrastructure +447948,Infrastructure,Infrastructure +445754,Infrastructure,Infrastructure +445753,Infrastructure,Infrastructure +445751,Infrastructure,Infrastructure +445750,Infrastructure,Infrastructure +445749,Infrastructure,Infrastructure +439592,Infrastructure,Infrastructure +439589,Infrastructure,Infrastructure +439588,Infrastructure,Infrastructure +439584,Infrastructure,Infrastructure +439582,Infrastructure,Infrastructure +439581,Infrastructure,Infrastructure +439578,Infrastructure,Infrastructure +439575,Infrastructure,Infrastructure +439572,Infrastructure,Infrastructure +439559,Infrastructure,Infrastructure +433846,Infrastructure,Infrastructure +433845,Infrastructure,Infrastructure +433844,Infrastructure,Infrastructure +433843,Infrastructure,Infrastructure +433842,Infrastructure,Infrastructure +430318,Infrastructure,Infrastructure +430317,Infrastructure,Infrastructure +428865,Infrastructure,Infrastructure +428862,Infrastructure,Infrastructure +428850,Infrastructure,Infrastructure +428848,Infrastructure,Infrastructure +426792,Infrastructure,Infrastructure +426791,Infrastructure,Infrastructure +426790,Infrastructure,Infrastructure +426788,Infrastructure,Infrastructure +426787,Infrastructure,Infrastructure +426786,Infrastructure,Infrastructure +426785,Infrastructure,Infrastructure +426783,Infrastructure,Infrastructure +426781,Infrastructure,Infrastructure +426780,Infrastructure,Infrastructure +424269,Infrastructure,Infrastructure +416902,Infrastructure,Infrastructure +413813,Infrastructure,Infrastructure +413812,Infrastructure,Infrastructure +413811,Infrastructure,Infrastructure +413810,Infrastructure,Infrastructure +413809,Infrastructure,Infrastructure +413807,Infrastructure,Infrastructure +413805,Infrastructure,Infrastructure +413803,Infrastructure,Infrastructure +413802,Infrastructure,Infrastructure +413800,Infrastructure,Infrastructure +413798,Infrastructure,Infrastructure +408198,Infrastructure,Infrastructure +408196,Infrastructure,Infrastructure +408195,Infrastructure,Infrastructure +406735,Infrastructure,Infrastructure +405535,Infrastructure,Infrastructure +405533,Infrastructure,Infrastructure +405530,Infrastructure,Infrastructure +405525,Infrastructure,Infrastructure +405519,Infrastructure,Infrastructure +405516,Infrastructure,Infrastructure +405341,Infrastructure,Infrastructure +405335,Infrastructure,Infrastructure +403724,Infrastructure,Infrastructure +403715,Infrastructure,Infrastructure +400761,Infrastructure,Infrastructure +400751,Infrastructure,Infrastructure +399011,Infrastructure,Infrastructure +399010,Infrastructure,Infrastructure +396969,Infrastructure,Infrastructure +396968,Infrastructure,Infrastructure +396961,Infrastructure,Infrastructure +393531,Infrastructure,Infrastructure +392804,Infrastructure,Infrastructure +392803,Infrastructure,Infrastructure +392800,Infrastructure,Infrastructure +388759,Infrastructure,Infrastructure +388758,Infrastructure,Infrastructure +388757,Infrastructure,Infrastructure +388756,Infrastructure,Infrastructure +388755,Infrastructure,Infrastructure +382484,Infrastructure,Infrastructure +382483,Infrastructure,Infrastructure +382481,Infrastructure,Infrastructure +382480,Infrastructure,Infrastructure +382479,Infrastructure,Infrastructure +381388,Infrastructure,Infrastructure +381386,Infrastructure,Infrastructure +381382,Infrastructure,Infrastructure +377098,Infrastructure,Infrastructure +377097,Infrastructure,Infrastructure +377095,Infrastructure,Infrastructure +377094,Infrastructure,Infrastructure +377093,Infrastructure,Infrastructure +377092,Infrastructure,Infrastructure +377090,Infrastructure,Infrastructure +377087,Infrastructure,Infrastructure +374964,Infrastructure,Infrastructure +374960,Infrastructure,Infrastructure +374950,Infrastructure,Infrastructure +372785,Infrastructure,Infrastructure +372782,Infrastructure,Infrastructure +372780,Infrastructure,Infrastructure +372777,Infrastructure,Infrastructure +372774,Infrastructure,Infrastructure +372773,Infrastructure,Infrastructure +372770,Infrastructure,Infrastructure +372767,Infrastructure,Infrastructure +372766,Infrastructure,Infrastructure +372764,Infrastructure,Infrastructure +372763,Infrastructure,Infrastructure +372762,Infrastructure,Infrastructure +372761,Infrastructure,Infrastructure +372759,Infrastructure,Infrastructure +372758,Infrastructure,Infrastructure +372756,Infrastructure,Infrastructure +372754,Infrastructure,Infrastructure +369259,Infrastructure,Infrastructure +369257,Infrastructure,Infrastructure +369256,Infrastructure,Infrastructure +369255,Infrastructure,Infrastructure +369254,Infrastructure,Infrastructure +369251,Infrastructure,Infrastructure +369250,Infrastructure,Infrastructure +366805,Infrastructure,Infrastructure +366804,Infrastructure,Infrastructure +365299,Infrastructure,Infrastructure +365297,Infrastructure,Infrastructure +365294,Infrastructure,Infrastructure +365291,Infrastructure,Infrastructure +365288,Infrastructure,Infrastructure +365287,Infrastructure,Infrastructure +365285,Infrastructure,Infrastructure +363645,Infrastructure,Infrastructure +362335,Infrastructure,Infrastructure +361260,Infrastructure,Infrastructure +361259,Infrastructure,Infrastructure +361257,Infrastructure,Infrastructure +359669,Infrastructure,Infrastructure +359668,Infrastructure,Infrastructure +357998,Infrastructure,Infrastructure +357997,Infrastructure,Infrastructure +357996,Infrastructure,Infrastructure +357995,Infrastructure,Infrastructure +485233,Infrastructure,Infrastructure +468470,Infrastructure,Infrastructure +468424,Infrastructure,Infrastructure +460302,Infrastructure,Infrastructure +460221,Infrastructure,Infrastructure +460220,Infrastructure,Infrastructure +460219,Infrastructure,Infrastructure +459623,Infrastructure,Infrastructure +458886,Infrastructure,Infrastructure +458884,Infrastructure,Infrastructure +457287,Infrastructure,Infrastructure +457284,Infrastructure,Infrastructure +457281,Infrastructure,Infrastructure +454826,Infrastructure,Infrastructure +454811,Infrastructure,Infrastructure +454808,Infrastructure,Infrastructure +454806,Infrastructure,Infrastructure +454804,Infrastructure,Infrastructure +454802,Infrastructure,Infrastructure +454801,Infrastructure,Infrastructure +454799,Infrastructure,Infrastructure +454797,Infrastructure,Infrastructure +454794,Infrastructure,Infrastructure +454792,Infrastructure,Infrastructure +454790,Infrastructure,Infrastructure +454788,Infrastructure,Infrastructure +454784,Infrastructure,Infrastructure +451594,Infrastructure,Infrastructure +451593,Infrastructure,Infrastructure +451591,Infrastructure,Infrastructure +451589,Infrastructure,Infrastructure +470667,International Relations,International Relations +400752,International Relations,International Relations +77791,International Relations,International Relations +153460,International Relations,International Relations +470661,International Trade,International Trade +459623,International Trade,International Trade +77791,International Trade,International Trade +269628,International Trade,International Trade +259449,International Trade,International Trade +245433,International Trade,International Trade +245416,International Trade,International Trade +245406,International Trade,International Trade +241126,International Trade,International Trade +232430,International Trade,International Trade +232429,International Trade,International Trade +230273,International Trade,International Trade +209267,International Trade,International Trade +206928,International Trade,International Trade +206927,International Trade,International Trade +203208,International Trade,International Trade +200559,International Trade,International Trade +200558,International Trade,International Trade +200557,International Trade,International Trade +200556,International Trade,International Trade +200555,International Trade,International Trade +200553,International Trade,International Trade +200552,International Trade,International Trade +195080,International Trade,International Trade +195079,International Trade,International Trade +195076,International Trade,International Trade +195073,International Trade,International Trade +195072,International Trade,International Trade +195071,International Trade,International Trade +195060,International Trade,International Trade +195058,International Trade,International Trade +195055,International Trade,International Trade +195054,International Trade,International Trade +195053,International Trade,International Trade +195052,International Trade,International Trade +195051,International Trade,International Trade +195050,International Trade,International Trade +195049,International Trade,International Trade +195047,International Trade,International Trade +405341,International Trade,International Trade +400752,International Trade,International Trade +338772,International Trade,International Trade +338761,International Trade,International Trade +338756,International Trade,International Trade +338750,International Trade,International Trade +333743,International Trade,International Trade +282670,International Trade,International Trade +282629,International Trade,International Trade +282609,International Trade,International Trade +282249,International Trade,International Trade +282229,International Trade,International Trade +282209,International Trade,International Trade +282190,International Trade,International Trade +282189,International Trade,International Trade +396961,Regional Development,Regional Development +433844,Taxation and Finance,Taxation and Finance +458886,Transportation,Transportation +430317,Transportation,Transportation +129544,Transportation,Transportation +117701,Transportation,Transportation +322350,Transportation,Transportation +195063,Transportation,Transportation +195044,Transportation,Transportation +382484,Transportation,Transportation +382480,Transportation,Transportation +381387,Transportation,Transportation +377095,Transportation,Transportation +377094,Transportation,Transportation +377093,Transportation,Transportation +377092,Transportation,Transportation +377087,Transportation,Transportation +372777,Transportation,Transportation +365287,Transportation,Transportation +357995,Transportation,Transportation +89179,Immigration,Immigration +264772,Immigration,Immigration +76154,Taxation and Finance,Taxation and Finance +76074,Taxation and Finance,Taxation and Finance +78816,Taxation and Finance,Taxation and Finance +244912,Health,Health +244911,Health,Health +157188,Health,Health +154636,Health,Health +241237,Health,Health +241232,Health,Health +241222,Health,Health +236869,Health,Health +236865,Health,Health +230371,Health,Health +227132,Health,Health +227129,Health,Health +227127,Health,Health +223148,Health,Health +207253,Health,Health +202468,Health,Health +199853,Health,Health +199842,Health,Health +199836,Health,Health +169937,Health,Health +280991,Health,Health +277333,Health,Health +277330,Health,Health +269032,Health,Health +269009,Health,Health +264350,Health,Health +264256,Health,Health +264255,Health,Health +254169,Health,Health +250230,Health,Health +458605,Agriculture,Agriculture +525716,Agriculture,Agriculture +97318,Agriculture,Agriculture +85760,Agriculture,Agriculture +85759,Agriculture,Agriculture +85757,Agriculture,Agriculture +85756,Agriculture,Agriculture +85755,Agriculture,Agriculture +150501,Agriculture,Agriculture +150500,Agriculture,Agriculture +148156,Agriculture,Agriculture +148155,Agriculture,Agriculture +148149,Agriculture,Agriculture +141235,Agriculture,Agriculture +141234,Agriculture,Agriculture +130854,Agriculture,Agriculture +128815,Agriculture,Agriculture +128814,Agriculture,Agriculture +223938,Agriculture,Agriculture +223937,Agriculture,Agriculture +223936,Agriculture,Agriculture +223935,Agriculture,Agriculture +219947,Agriculture,Agriculture +217368,Agriculture,Agriculture +214847,Agriculture,Agriculture +211728,Agriculture,Agriculture +211727,Agriculture,Agriculture +209187,Agriculture,Agriculture +209172,Agriculture,Agriculture +209171,Agriculture,Agriculture +209170,Agriculture,Agriculture +209169,Agriculture,Agriculture +209167,Agriculture,Agriculture +196226,Agriculture,Agriculture +190664,Agriculture,Agriculture +190424,Agriculture,Agriculture +190224,Agriculture,Agriculture +190204,Agriculture,Agriculture +184384,Agriculture,Agriculture +183084,Agriculture,Agriculture +172704,Agriculture,Agriculture +172465,Agriculture,Agriculture +172464,Agriculture,Agriculture +169546,Agriculture,Agriculture +167264,Agriculture,Agriculture +167190,Agriculture,Agriculture +167188,Agriculture,Agriculture +167184,Agriculture,Agriculture +165293,Agriculture,Agriculture +165292,Agriculture,Agriculture +165287,Agriculture,Agriculture +163007,Agriculture,Agriculture +160688,Agriculture,Agriculture +158629,Agriculture,Agriculture +333769,Agriculture,Agriculture +333749,Agriculture,Agriculture +323489,Agriculture,Agriculture +323051,Agriculture,Agriculture +323050,Agriculture,Agriculture +323049,Agriculture,Agriculture +319742,Agriculture,Agriculture +319741,Agriculture,Agriculture +319740,Agriculture,Agriculture +319739,Agriculture,Agriculture +319738,Agriculture,Agriculture +319737,Agriculture,Agriculture +319736,Agriculture,Agriculture +319735,Agriculture,Agriculture +319734,Agriculture,Agriculture +319733,Agriculture,Agriculture +319732,Agriculture,Agriculture +319731,Agriculture,Agriculture +319730,Agriculture,Agriculture +311750,Agriculture,Agriculture +306635,Agriculture,Agriculture +290310,Agriculture,Agriculture +267191,Agriculture,Agriculture +267190,Agriculture,Agriculture +267189,Agriculture,Agriculture +265691,Agriculture,Agriculture +265689,Agriculture,Agriculture +263462,Agriculture,Agriculture +262483,Agriculture,Agriculture +262482,Agriculture,Agriculture +262481,Agriculture,Agriculture +262479,Agriculture,Agriculture +262478,Agriculture,Agriculture +262477,Agriculture,Agriculture +262476,Agriculture,Agriculture +262475,Agriculture,Agriculture +262472,Agriculture,Agriculture +262471,Agriculture,Agriculture +262470,Agriculture,Agriculture +262469,Agriculture,Agriculture +257309,Agriculture,Agriculture +257231,Agriculture,Agriculture +257229,Agriculture,Agriculture +255869,Agriculture,Agriculture +254729,Agriculture,Agriculture +247073,Agriculture,Agriculture +247072,Agriculture,Agriculture +247071,Agriculture,Agriculture +247070,Agriculture,Agriculture +247069,Agriculture,Agriculture +244289,Agriculture,Agriculture +241570,Agriculture,Agriculture +241569,Agriculture,Agriculture +240457,Agriculture,Agriculture +240455,Agriculture,Agriculture +240129,Agriculture,Agriculture +236053,Agriculture,Agriculture +236051,Agriculture,Agriculture +226628,Agriculture,Agriculture +226588,Agriculture,Agriculture +226419,Agriculture,Agriculture +223944,Agriculture,Agriculture +223940,Agriculture,Agriculture +223939,Agriculture,Agriculture +422751,Agriculture,Agriculture +420236,Agriculture,Agriculture +420235,Agriculture,Agriculture +418129,Agriculture,Agriculture +415180,Agriculture,Agriculture +415061,Agriculture,Agriculture +411579,Agriculture,Agriculture +411563,Agriculture,Agriculture +408682,Agriculture,Agriculture +408681,Agriculture,Agriculture +408443,Agriculture,Agriculture +408441,Agriculture,Agriculture +408432,Agriculture,Agriculture +405924,Agriculture,Agriculture +404357,Agriculture,Agriculture +403031,Agriculture,Agriculture +403030,Agriculture,Agriculture +403028,Agriculture,Agriculture +403026,Agriculture,Agriculture +400056,Agriculture,Agriculture +399506,Agriculture,Agriculture +398619,Agriculture,Agriculture +398034,Agriculture,Agriculture +397776,Agriculture,Agriculture +397713,Agriculture,Agriculture +397712,Agriculture,Agriculture +397711,Agriculture,Agriculture +395123,Agriculture,Agriculture +394908,Agriculture,Agriculture +394906,Agriculture,Agriculture +393292,Agriculture,Agriculture +393291,Agriculture,Agriculture +391833,Agriculture,Agriculture +389881,Agriculture,Agriculture +389875,Agriculture,Agriculture +385888,Agriculture,Agriculture +385887,Agriculture,Agriculture +382932,Agriculture,Agriculture +382931,Agriculture,Agriculture +380956,Agriculture,Agriculture +380068,Agriculture,Agriculture +377964,Agriculture,Agriculture +376348,Agriculture,Agriculture +376335,Agriculture,Agriculture +376334,Agriculture,Agriculture +376330,Agriculture,Agriculture +376329,Agriculture,Agriculture +376328,Agriculture,Agriculture +373273,Agriculture,Agriculture +373272,Agriculture,Agriculture +371514,Agriculture,Agriculture +371513,Agriculture,Agriculture +371501,Agriculture,Agriculture +371500,Agriculture,Agriculture +371498,Agriculture,Agriculture +371496,Agriculture,Agriculture +371415,Agriculture,Agriculture +370081,Agriculture,Agriculture +370078,Agriculture,Agriculture +370075,Agriculture,Agriculture +368860,Agriculture,Agriculture +368010,Agriculture,Agriculture +367996,Agriculture,Agriculture +364627,Agriculture,Agriculture +364505,Agriculture,Agriculture +364504,Agriculture,Agriculture +364503,Agriculture,Agriculture +361763,Agriculture,Agriculture +357667,Agriculture,Agriculture +356836,Agriculture,Agriculture +355860,Agriculture,Agriculture +352241,Agriculture,Agriculture +350299,Agriculture,Agriculture +350073,Agriculture,Agriculture +350072,Agriculture,Agriculture +350070,Agriculture,Agriculture +350069,Agriculture,Agriculture +350013,Agriculture,Agriculture +350012,Agriculture,Agriculture +350011,Agriculture,Agriculture +350010,Agriculture,Agriculture +350009,Agriculture,Agriculture +350008,Agriculture,Agriculture +350007,Agriculture,Agriculture +350006,Agriculture,Agriculture +350005,Agriculture,Agriculture +350004,Agriculture,Agriculture +350003,Agriculture,Agriculture +350002,Agriculture,Agriculture +350001,Agriculture,Agriculture +349998,Agriculture,Agriculture +349251,Agriculture,Agriculture +348098,Agriculture,Agriculture +348097,Agriculture,Agriculture +348096,Agriculture,Agriculture +348095,Agriculture,Agriculture +348094,Agriculture,Agriculture +348093,Agriculture,Agriculture +348092,Agriculture,Agriculture +348091,Agriculture,Agriculture +347699,Agriculture,Agriculture +344595,Agriculture,Agriculture +340274,Agriculture,Agriculture +339711,Agriculture,Agriculture +339415,Agriculture,Agriculture +510015,Agriculture,Agriculture +510014,Agriculture,Agriculture +486485,Agriculture,Agriculture +480118,Agriculture,Agriculture +473563,Agriculture,Agriculture +466725,Agriculture,Agriculture +452542,Labour,Labour +443905,Labour,Labour +148156,Labour,Labour +271796,Labour,Labour +271795,Labour,Labour +271794,Labour,Labour +271793,Labour,Labour +271792,Labour,Labour +271791,Labour,Labour +271790,Labour,Labour +357667,Labour,Labour +355860,Labour,Labour +352247,Labour,Labour +352246,Labour,Labour +352245,Labour,Labour +352244,Labour,Labour +352243,Labour,Labour +352242,Labour,Labour +352241,Labour,Labour +350073,Labour,Labour +350072,Labour,Labour +350070,Labour,Labour +350069,Labour,Labour +350013,Labour,Labour +350012,Labour,Labour +350011,Labour,Labour +350010,Labour,Labour +350009,Labour,Labour +350008,Labour,Labour +350007,Labour,Labour +350006,Labour,Labour +350005,Labour,Labour +350003,Labour,Labour +350002,Labour,Labour +350001,Labour,Labour +348098,Labour,Labour +348097,Labour,Labour +348096,Labour,Labour +348095,Labour,Labour +348094,Labour,Labour +348093,Labour,Labour +348092,Labour,Labour +348091,Labour,Labour +347730,Labour,Labour +344597,Labour,Labour +344595,Labour,Labour +340274,Labour,Labour +339964,Labour,Labour +339711,Labour,Labour +335581,Labour,Labour +335579,Labour,Labour +335578,Labour,Labour +335576,Labour,Labour +333769,Labour,Labour +333074,Labour,Labour +330041,Labour,Labour +330040,Labour,Labour +329056,Labour,Labour +326854,Labour,Labour +325894,Labour,Labour +325893,Labour,Labour +325881,Labour,Labour +325880,Labour,Labour +325879,Labour,Labour +325878,Labour,Labour +325877,Labour,Labour +325876,Labour,Labour +325875,Labour,Labour +325874,Labour,Labour +325873,Labour,Labour +319742,Labour,Labour +319741,Labour,Labour +319740,Labour,Labour +319739,Labour,Labour +319738,Labour,Labour +319737,Labour,Labour +319736,Labour,Labour +319735,Labour,Labour +319734,Labour,Labour +319733,Labour,Labour +319732,Labour,Labour +311755,Labour,Labour +311754,Labour,Labour +311753,Labour,Labour +311752,Labour,Labour +311751,Labour,Labour +431234,Labour,Labour +430442,Labour,Labour +430441,Labour,Labour +428649,Labour,Labour +428640,Labour,Labour +425917,Labour,Labour +424011,Labour,Labour +423879,Labour,Labour +422751,Labour,Labour +403031,Labour,Labour +399506,Labour,Labour +398619,Labour,Labour +398034,Labour,Labour +395123,Labour,Labour +393292,Labour,Labour +393291,Labour,Labour +377964,Labour,Labour +376335,Labour,Labour +373273,Labour,Labour +373272,Labour,Labour +371514,Labour,Labour +371513,Labour,Labour +370081,Labour,Labour +364627,Labour,Labour +364504,Labour,Labour +499560,Labour,Labour +459022,Labour,Labour +135838,Other,Acces to Natural Health Products +115135,Other,Regulations +102154,Other,Regulations +89927,Other,Regulations +89925,Other,Regulations +89924,Other,Regulations +89923,Other,Regulations +89922,Other,Regulations +89921,Other,Regulations +89920,Other,Regulations +89919,Other,Regulations +89917,Other,Regulations +158892,Defence,Defence +158891,Defence,Defence +160797,Defence,Defence +158894,Defence,Defence +169645,Immigration,Immigration +321249,Immigration,Immigration +404258,Education,Education +521647,Education,Education +157588,Education,Education +157509,Education,Education +207519,Education,Education +161774,Education,Education +161773,Education,Education +379983,Education,Education +379980,Education,Education +379956,Education,Education +367868,Education,Education +367867,Education,Education +271150,Education,Education +485025,Education,Education +470935,Education,Education +470933,Education,Education +470927,Education,Education +470925,Education,Education +470916,Education,Education +470914,Education,Education +470834,Education,Education +470831,Education,Education +470828,Education,Education +462324,Education,Education +461168,Education,Education +489012,Health,Health +485025,Health,Health +471363,Health,Health +471362,Health,Health +470935,Health,Health +470933,Health,Health +470927,Health,Health +470925,Health,Health +470916,Health,Health +470914,Health,Health +470834,Health,Health +470831,Health,Health +470828,Health,Health +526461,Health,Health +525363,Health,Health +525360,Health,Health +525357,Health,Health +525354,Health,Health +525161,Health,Health +523660,Health,Health +523642,Health,Health +523641,Health,Health +518818,Health,Health +516716,Health,Health +516322,Health,Health +506874,Health,Health +506873,Health,Health +503035,Health,Health +503034,Health,Health +503033,Health,Health +503032,Health,Health +410192,Employment and Training,Employment and Training +500136,Employment and Training,Employment and Training +166053,Employment and Training,Employment and Training +157509,Employment and Training,Employment and Training +154682,Employment and Training,Employment and Training +379983,Employment and Training,Employment and Training +379980,Employment and Training,Employment and Training +379956,Employment and Training,Employment and Training +471362,Infrastructure,Infrastructure +470925,Infrastructure,Infrastructure +106394,Infrastructure,Infrastructure +106393,Infrastructure,Infrastructure +106391,Infrastructure,Infrastructure +101594,Infrastructure,Infrastructure +100040,Infrastructure,Infrastructure +100039,Infrastructure,Infrastructure +100038,Infrastructure,Infrastructure +97734,Infrastructure,Infrastructure +232410,Infrastructure,Infrastructure +207519,Infrastructure,Infrastructure +166056,Infrastructure,Infrastructure +379983,Infrastructure,Infrastructure +379980,Infrastructure,Infrastructure +379956,Infrastructure,Infrastructure +367868,Infrastructure,Infrastructure +367867,Infrastructure,Infrastructure +461168,Infrastructure,Infrastructure +436659,Infrastructure,Infrastructure +526461,Infrastructure,Infrastructure +525363,Infrastructure,Infrastructure +525360,Infrastructure,Infrastructure +525357,Infrastructure,Infrastructure +525354,Infrastructure,Infrastructure +525161,Infrastructure,Infrastructure +523660,Infrastructure,Infrastructure +523642,Infrastructure,Infrastructure +523641,Infrastructure,Infrastructure +516716,Infrastructure,Infrastructure +516322,Infrastructure,Infrastructure +506874,Infrastructure,Infrastructure +506873,Infrastructure,Infrastructure +503035,Infrastructure,Infrastructure +503034,Infrastructure,Infrastructure +503033,Infrastructure,Infrastructure +503032,Infrastructure,Infrastructure +500136,Infrastructure,Infrastructure +489012,Infrastructure,Infrastructure +440546,International Relations,International Relations +440539,International Relations,International Relations +207519,International Relations,International Relations +161773,International Relations,International Relations +154682,International Relations,International Relations +151606,International Relations,International Relations +175789,Health,Health +165585,Health,Health +111194,Health,Health +93646,Health,Health +92254,Health,Health +92234,Health,Health +163625,Health,Health +163624,Health,Health +161169,Health,Health +160109,Health,Health +160108,Health,Health +159380,Health,Health +159374,Health,Health +159372,Health,Health +157858,Health,Health +157213,Health,Health +157118,Health,Health +154055,Health,Health +154054,Health,Health +154053,Health,Health +154052,Health,Health +143414,Health,Health +105540,Other,Food processing competitiveness +105537,Other,Food processing competitiveness +105458,Other,Food processing competitiveness +105456,Other,Food processing competitiveness +76454,Other,Food processing competitiveness +144879,Other,Food processing competitiveness +144877,Other,Food processing competitiveness +133399,Other,Food processing competitiveness +130694,Other,Food processing competitiveness +122474,Other,Food processing competitiveness +122455,Other,Food processing competitiveness +109177,Other,Food processing competitiveness +105436,Other,Food processing competitiveness +96855,Other,Food processing competitiveness +87798,Other,Food processing competitiveness +84905,Other,Food processing competitiveness +82777,Other,Food processing competitiveness +82776,Other,Food processing competitiveness +80760,Other,Food processing competitiveness +80758,Other,Food processing competitiveness +76454,Other,Food processing competitiveness +148939,Other,Food processing competitiveness +136594,Other,Food processing competitiveness +115995,Other,Food processing competitiveness +111236,Other,Food processing competitiveness +105536,Other,Food processing competitiveness +105457,Other,Food processing competitiveness +329151,Industry,Industry +329150,Industry,Industry +182024,Industry,Industry +174344,Industry,Industry +163702,Industry,Industry +154634,Industry,Industry +375200,Industry,Industry +375199,Industry,Industry +375198,Industry,Industry +329155,Industry,Industry +329153,Industry,Industry +375197,Tourism,Tourism +373159,Tourism,Tourism +182004,Tourism,Tourism +165908,Tourism,Tourism +373158,Tourism,Tourism +369974,Tourism,Tourism +369780,Tourism,Tourism +369686,Tourism,Tourism +368288,Tourism,Tourism +368287,Tourism,Tourism +367707,Tourism,Tourism +367706,Tourism,Tourism +367705,Tourism,Tourism +367704,Tourism,Tourism +367703,Tourism,Tourism +366341,Tourism,Tourism +347978,Tourism,Tourism +347977,Tourism,Tourism +347718,Tourism,Tourism +347717,Tourism,Tourism +344779,Tourism,Tourism +344733,Tourism,Tourism +342985,Tourism,Tourism +342984,Tourism,Tourism +342983,Tourism,Tourism +340655,Tourism,Tourism +340654,Tourism,Tourism +340653,Tourism,Tourism +340652,Tourism,Tourism +340637,Tourism,Tourism +329154,Tourism,Tourism +329152,Tourism,Tourism +329151,Tourism,Tourism +329150,Tourism,Tourism +375960,Tourism,Tourism +375200,Tourism,Tourism +375199,Tourism,Tourism +451442,Transportation,Transportation +451441,Transportation,Transportation +114032,Transportation,Transportation +106314,Transportation,Transportation +97442,Transportation,Transportation +97440,Transportation,Transportation +92496,Transportation,Transportation +84979,Transportation,Transportation +76674,Transportation,Transportation +162143,Transportation,Transportation +162139,Transportation,Transportation +158986,Transportation,Transportation +158985,Transportation,Transportation +158878,Transportation,Transportation +158877,Transportation,Transportation +158876,Transportation,Transportation +158875,Transportation,Transportation +156602,Transportation,Transportation +151855,Transportation,Transportation +151854,Transportation,Transportation +151318,Transportation,Transportation +145427,Transportation,Transportation +129415,Transportation,Transportation +124899,Transportation,Transportation +253309,Transportation,Transportation +250294,Transportation,Transportation +250293,Transportation,Transportation +250292,Transportation,Transportation +236434,Transportation,Transportation +236431,Transportation,Transportation +223540,Transportation,Transportation +210550,Transportation,Transportation +202774,Transportation,Transportation +197458,Transportation,Transportation +197428,Transportation,Transportation +197427,Transportation,Transportation +192894,Transportation,Transportation +183604,Transportation,Transportation +183584,Transportation,Transportation +183544,Transportation,Transportation +183524,Transportation,Transportation +170314,Transportation,Transportation +170313,Transportation,Transportation +169184,Transportation,Transportation +167171,Transportation,Transportation +167170,Transportation,Transportation +167169,Transportation,Transportation +167168,Transportation,Transportation +167167,Transportation,Transportation +167164,Transportation,Transportation +165980,Transportation,Transportation +165977,Transportation,Transportation +165916,Transportation,Transportation +162145,Transportation,Transportation +442791,Transportation,Transportation +442790,Transportation,Transportation +428089,Transportation,Transportation +428086,Transportation,Transportation +423474,Transportation,Transportation +415505,Transportation,Transportation +409597,Transportation,Transportation +409586,Transportation,Transportation +409582,Transportation,Transportation +409580,Transportation,Transportation +409577,Transportation,Transportation +409572,Transportation,Transportation +407604,Transportation,Transportation +404863,Transportation,Transportation +404656,Transportation,Transportation +400105,Transportation,Transportation +400104,Transportation,Transportation +400101,Transportation,Transportation +398599,Transportation,Transportation +398592,Transportation,Transportation +395462,Transportation,Transportation +395461,Transportation,Transportation +393439,Transportation,Transportation +389476,Transportation,Transportation +389475,Transportation,Transportation +389474,Transportation,Transportation +389473,Transportation,Transportation +387123,Transportation,Transportation +387113,Transportation,Transportation +381860,Transportation,Transportation +381859,Transportation,Transportation +378991,Transportation,Transportation +378987,Transportation,Transportation +370974,Transportation,Transportation +366677,Transportation,Transportation +362204,Transportation,Transportation +359555,Transportation,Transportation +349444,Transportation,Transportation +329862,Transportation,Transportation +327120,Transportation,Transportation +323952,Transportation,Transportation +310083,Transportation,Transportation +310034,Transportation,Transportation +304373,Transportation,Transportation +304360,Transportation,Transportation +291593,Transportation,Transportation +277203,Transportation,Transportation +276269,Transportation,Transportation +273007,Transportation,Transportation +273000,Transportation,Transportation +541097,Transportation,Transportation +536657,Transportation,Transportation +533354,Transportation,Transportation +531516,Transportation,Transportation +527755,Transportation,Transportation +527751,Transportation,Transportation +527749,Transportation,Transportation +524012,Transportation,Transportation +519443,Transportation,Transportation +513978,Transportation,Transportation +513976,Transportation,Transportation +513972,Transportation,Transportation +512328,Transportation,Transportation +509764,Transportation,Transportation +498000,Transportation,Transportation +494545,Transportation,Transportation +492683,Transportation,Transportation +482044,Transportation,Transportation +481527,Transportation,Transportation +347155,Health,Health +497766,Health,Health +224064,Health,Health +193740,Health,Health +165870,Health,Health +478516,Industry,Industry +463444,Industry,Industry +165870,Industry,Industry +397305,Industry,Industry +396348,Industry,Industry +396347,Industry,Industry +396346,Industry,Industry +390501,Industry,Industry +390500,Industry,Industry +390499,Industry,Industry +390498,Industry,Industry +386786,Industry,Industry +386784,Industry,Industry +386782,Industry,Industry +386778,Industry,Industry +382277,Industry,Industry +382275,Industry,Industry +382274,Industry,Industry +382273,Industry,Industry +531076,Industry,Industry +531073,Industry,Industry +531071,Industry,Industry +531065,Industry,Industry +531064,Industry,Industry +494261,Industry,Industry +485681,Industry,Industry +485680,Industry,Industry +390499,Taxation and Finance,Taxation and Finance +531065,Taxation and Finance,Taxation and Finance +90016,Taxation and Finance,Taxation and Finance +134959,Taxation and Finance,Taxation and Finance +132779,Taxation and Finance,Taxation and Finance +390498,Taxation and Finance,Taxation and Finance +386786,Taxation and Finance,Taxation and Finance +386784,Taxation and Finance,Taxation and Finance +386778,Taxation and Finance,Taxation and Finance +497766,Taxation and Finance,Taxation and Finance +485681,Taxation and Finance,Taxation and Finance +485680,Taxation and Finance,Taxation and Finance +480528,Taxation and Finance,Taxation and Finance +478516,Taxation and Finance,Taxation and Finance +471816,Taxation and Finance,Taxation and Finance +469241,Taxation and Finance,Taxation and Finance +427079,Taxation and Finance,Taxation and Finance +427077,Taxation and Finance,Taxation and Finance +427075,Taxation and Finance,Taxation and Finance +397305,Taxation and Finance,Taxation and Finance +396348,Taxation and Finance,Taxation and Finance +396347,Taxation and Finance,Taxation and Finance +396346,Taxation and Finance,Taxation and Finance +390501,Taxation and Finance,Taxation and Finance +485681,Employment and Training,Employment and Training +485680,Employment and Training,Employment and Training +148644,Employment and Training,Employment and Training +128872,Employment and Training,Employment and Training +128871,Employment and Training,Employment and Training +156770,Employment and Training,Employment and Training +156769,Employment and Training,Employment and Training +397305,Employment and Training,Employment and Training +396348,Employment and Training,Employment and Training +396347,Employment and Training,Employment and Training +396346,Employment and Training,Employment and Training +390501,Employment and Training,Employment and Training +390500,Employment and Training,Employment and Training +390499,Employment and Training,Employment and Training +390498,Employment and Training,Employment and Training +386786,Employment and Training,Employment and Training +386784,Employment and Training,Employment and Training +386782,Employment and Training,Employment and Training +386778,Employment and Training,Employment and Training +382277,Employment and Training,Employment and Training +382275,Employment and Training,Employment and Training +382274,Employment and Training,Employment and Training +382273,Employment and Training,Employment and Training +480528,Employment and Training,Employment and Training +478516,Employment and Training,Employment and Training +469241,Employment and Training,Employment and Training +463445,Employment and Training,Employment and Training +451101,Employment and Training,Employment and Training +441669,Employment and Training,Employment and Training +436614,Employment and Training,Employment and Training +427079,Employment and Training,Employment and Training +427075,Employment and Training,Employment and Training +531079,Employment and Training,Employment and Training +531073,Employment and Training,Employment and Training +531071,Employment and Training,Employment and Training +531065,Employment and Training,Employment and Training +531064,Employment and Training,Employment and Training +521491,Employment and Training,Employment and Training +521488,Employment and Training,Employment and Training +77163,Agriculture,Agriculture +77159,Agriculture,Agriculture +77158,Agriculture,Agriculture +96394,Agriculture,Agriculture +83051,Agriculture,Agriculture +83046,Agriculture,Agriculture +83040,Agriculture,Agriculture +83038,Agriculture,Agriculture +96317,Agriculture,Agriculture +96315,Agriculture,Agriculture +84882,Agriculture,Agriculture +83054,Agriculture,Agriculture +83053,Agriculture,Agriculture +83050,Agriculture,Agriculture +83048,Agriculture,Agriculture +83047,Agriculture,Agriculture +80562,Agriculture,Agriculture +80561,Agriculture,Agriculture +80559,Agriculture,Agriculture +77169,Agriculture,Agriculture +77168,Agriculture,Agriculture +77167,Agriculture,Agriculture +96176,Agriculture,Agriculture +96174,Agriculture,Agriculture +87303,Agriculture,Agriculture +84875,Agriculture,Agriculture +84874,Agriculture,Agriculture +83064,Agriculture,Agriculture +77174,Agriculture,Agriculture +145414,Agriculture,Agriculture +145401,Agriculture,Agriculture +123395,Agriculture,Agriculture +123394,Agriculture,Agriculture +120054,Agriculture,Agriculture +111636,Agriculture,Agriculture +77042,Agriculture,Agriculture +77040,Agriculture,Agriculture +96338,Agriculture,Agriculture +84878,Agriculture,Agriculture +84877,Agriculture,Agriculture +80748,Agriculture,Agriculture +80742,Agriculture,Agriculture +77045,Agriculture,Agriculture +77034,Agriculture,Agriculture +76995,Agriculture,Agriculture +80894,Agriculture,Agriculture +80750,Agriculture,Agriculture +77179,Agriculture,Agriculture +77047,Agriculture,Agriculture +77046,Agriculture,Agriculture +438492,Energy,Energy +435199,Energy,Energy +93875,Energy,Energy +80858,Energy,Energy +76986,Energy,Energy +76984,Energy,Energy +76983,Energy,Energy +76981,Energy,Energy +76979,Energy,Energy +76978,Energy,Energy +76977,Energy,Energy +76976,Energy,Energy +76974,Energy,Energy +132691,Energy,Energy +128935,Energy,Energy +128932,Energy,Energy +128930,Energy,Energy +128927,Energy,Energy +128920,Energy,Energy +128917,Energy,Energy +124640,Energy,Energy +124638,Energy,Energy +124636,Energy,Energy +124635,Energy,Energy +124634,Energy,Energy +120616,Energy,Energy +120615,Energy,Energy +120614,Energy,Energy +117854,Energy,Energy +110342,Energy,Energy +110341,Energy,Energy +110338,Energy,Energy +110336,Energy,Energy +105975,Energy,Energy +105974,Energy,Energy +101221,Energy,Energy +101219,Energy,Energy +101214,Energy,Energy +101211,Energy,Energy +101206,Energy,Energy +101201,Energy,Energy +93878,Energy,Energy +93877,Energy,Energy +164118,Energy,Energy +164117,Energy,Energy +164116,Energy,Energy +164114,Energy,Energy +164113,Energy,Energy +164111,Energy,Energy +164110,Energy,Energy +164108,Energy,Energy +164107,Energy,Energy +164106,Energy,Energy +164105,Energy,Energy +164104,Energy,Energy +164103,Energy,Energy +164102,Energy,Energy +164101,Energy,Energy +164100,Energy,Energy +164099,Energy,Energy +164098,Energy,Energy +164097,Energy,Energy +164096,Energy,Energy +164095,Energy,Energy +164094,Energy,Energy +164093,Energy,Energy +164092,Energy,Energy +164091,Energy,Energy +164090,Energy,Energy +164089,Energy,Energy +164088,Energy,Energy +164087,Energy,Energy +164086,Energy,Energy +164085,Energy,Energy +164084,Energy,Energy +162585,Energy,Energy +162584,Energy,Energy +162583,Energy,Energy +162581,Energy,Energy +159473,Energy,Energy +159472,Energy,Energy +159471,Energy,Energy +159470,Energy,Energy +159469,Energy,Energy +159468,Energy,Energy +157043,Energy,Energy +157042,Energy,Energy +157040,Energy,Energy +154746,Energy,Energy +153140,Energy,Energy +153138,Energy,Energy +153136,Energy,Energy +152047,Energy,Energy +152046,Energy,Energy +152044,Energy,Energy +152040,Energy,Energy +152035,Energy,Energy +150537,Energy,Energy +148294,Energy,Energy +139095,Energy,Energy +139094,Energy,Energy +135997,Energy,Energy +132693,Energy,Energy +356306,Energy,Energy +353825,Energy,Energy +341670,Energy,Energy +263216,Energy,Energy +263215,Energy,Energy +263214,Energy,Energy +263212,Energy,Energy +263211,Energy,Energy +263210,Energy,Energy +263209,Energy,Energy +185899,Energy,Energy +172064,Energy,Energy +168495,Energy,Energy +168493,Energy,Energy +168487,Energy,Energy +168485,Energy,Energy +168482,Energy,Energy +168480,Energy,Energy +168476,Energy,Energy +168474,Energy,Energy +168469,Energy,Energy +165938,Energy,Energy +165936,Energy,Energy +165935,Energy,Energy +164176,Energy,Energy +164131,Energy,Energy +164130,Energy,Energy +164129,Energy,Energy +164128,Energy,Energy +164127,Energy,Energy +164126,Energy,Energy +164125,Energy,Energy +164124,Energy,Energy +164123,Energy,Energy +164119,Energy,Energy +430465,Energy,Energy +430464,Energy,Energy +430462,Energy,Energy +429586,Energy,Energy +428652,Energy,Energy +428651,Energy,Energy +426061,Energy,Energy +426060,Energy,Energy +426055,Energy,Energy +425729,Energy,Energy +425727,Energy,Energy +425726,Energy,Energy +425724,Energy,Energy +421752,Energy,Energy +419663,Energy,Energy +417856,Energy,Energy +417854,Energy,Energy +415449,Energy,Energy +412746,Energy,Energy +409442,Energy,Energy +405122,Energy,Energy +402851,Energy,Energy +398326,Energy,Energy +393960,Energy,Energy +393959,Energy,Energy +393956,Energy,Energy +393950,Energy,Energy +393947,Energy,Energy +393938,Energy,Energy +392077,Energy,Energy +387710,Energy,Energy +385138,Energy,Energy +385097,Energy,Energy +385095,Energy,Energy +384237,Energy,Energy +384235,Energy,Energy +384230,Energy,Energy +384229,Energy,Energy +384226,Energy,Energy +384225,Energy,Energy +384224,Energy,Energy +384044,Energy,Energy +383911,Energy,Energy +378426,Energy,Energy +370552,Energy,Energy +366403,Energy,Energy +366402,Energy,Energy +363663,Energy,Energy +361211,Energy,Energy +357928,Energy,Energy +543852,Energy,Energy +543850,Energy,Energy +541760,Energy,Energy +541745,Energy,Energy +541739,Energy,Energy +539946,Energy,Energy +539943,Energy,Energy +539942,Energy,Energy +539939,Energy,Energy +539936,Energy,Energy +537827,Energy,Energy +537825,Energy,Energy +537824,Energy,Energy +537822,Energy,Energy +537820,Energy,Energy +537815,Energy,Energy +535046,Energy,Energy +535045,Energy,Energy +535042,Energy,Energy +532064,Energy,Energy +531573,Energy,Energy +531570,Energy,Energy +529070,Energy,Energy +525486,Energy,Energy +525483,Energy,Energy +522367,Energy,Energy +522196,Energy,Energy +522195,Energy,Energy +522194,Energy,Energy +522193,Energy,Energy +519606,Energy,Energy +518363,Energy,Energy +518362,Energy,Energy +518361,Energy,Energy +517444,Energy,Energy +517381,Energy,Energy +516371,Energy,Energy +516369,Energy,Energy +516368,Energy,Energy +515681,Energy,Energy +515672,Energy,Energy +515668,Energy,Energy +515666,Energy,Energy +515659,Energy,Energy +514125,Energy,Energy +514124,Energy,Energy +512765,Energy,Energy +510444,Energy,Energy +510443,Energy,Energy +509444,Energy,Energy +509443,Energy,Energy +507898,Energy,Energy +507503,Energy,Energy +507502,Energy,Energy +507500,Energy,Energy +501392,Energy,Energy +498232,Energy,Energy +495261,Energy,Energy +495256,Energy,Energy +495251,Energy,Energy +493109,Energy,Energy +491115,Energy,Energy +481783,Energy,Energy +481782,Energy,Energy +479791,Energy,Energy +479786,Energy,Energy +479783,Energy,Energy +479777,Energy,Energy +472721,Energy,Energy +470249,Energy,Energy +470245,Energy,Energy +470243,Energy,Energy +470239,Energy,Energy +470236,Energy,Energy +470234,Energy,Energy +467252,Energy,Energy +467076,Energy,Energy +467070,Energy,Energy +467055,Energy,Energy +464522,Energy,Energy +464520,Energy,Energy +464517,Energy,Energy +464515,Energy,Energy +464510,Energy,Energy +464506,Energy,Energy +464503,Energy,Energy +464499,Energy,Energy +464497,Energy,Energy +464492,Energy,Energy +464472,Energy,Energy +464469,Energy,Energy +464466,Energy,Energy +464457,Energy,Energy +458539,Energy,Energy +457142,Energy,Energy +457137,Energy,Energy +449246,Energy,Energy +449244,Energy,Energy +449242,Energy,Energy +447253,Energy,Energy +447252,Energy,Energy +444959,Energy,Energy +444943,Energy,Energy +438508,Energy,Energy +429588,Environment,Environment +428651,Environment,Environment +76986,Environment,Environment +76984,Environment,Environment +76983,Environment,Environment +76981,Environment,Environment +76979,Environment,Environment +76978,Environment,Environment +76977,Environment,Environment +76976,Environment,Environment +76974,Environment,Environment +128917,Environment,Environment +124640,Environment,Environment +124638,Environment,Environment +124636,Environment,Environment +124635,Environment,Environment +124634,Environment,Environment +120616,Environment,Environment +120615,Environment,Environment +120614,Environment,Environment +117854,Environment,Environment +110342,Environment,Environment +110341,Environment,Environment +110338,Environment,Environment +110336,Environment,Environment +105975,Environment,Environment +101214,Environment,Environment +101211,Environment,Environment +101206,Environment,Environment +101201,Environment,Environment +93878,Environment,Environment +93877,Environment,Environment +93875,Environment,Environment +80858,Environment,Environment +185899,Environment,Environment +173546,Environment,Environment +172064,Environment,Environment +168495,Environment,Environment +168493,Environment,Environment +168482,Environment,Environment +168480,Environment,Environment +168476,Environment,Environment +168474,Environment,Environment +168469,Environment,Environment +165936,Environment,Environment +165935,Environment,Environment +164176,Environment,Environment +162585,Environment,Environment +162584,Environment,Environment +162583,Environment,Environment +162581,Environment,Environment +159473,Environment,Environment +159471,Environment,Environment +159470,Environment,Environment +159469,Environment,Environment +159468,Environment,Environment +157043,Environment,Environment +157042,Environment,Environment +157040,Environment,Environment +154746,Environment,Environment +153140,Environment,Environment +153138,Environment,Environment +153136,Environment,Environment +152047,Environment,Environment +152046,Environment,Environment +152044,Environment,Environment +152040,Environment,Environment +152035,Environment,Environment +150537,Environment,Environment +148294,Environment,Environment +139095,Environment,Environment +139094,Environment,Environment +135997,Environment,Environment +132693,Environment,Environment +132691,Environment,Environment +128935,Environment,Environment +128932,Environment,Environment +128930,Environment,Environment +128927,Environment,Environment +128920,Environment,Environment +426101,Environment,Environment +426095,Environment,Environment +417856,Environment,Environment +417854,Environment,Environment +409442,Environment,Environment +406645,Environment,Environment +405122,Environment,Environment +405120,Environment,Environment +402851,Environment,Environment +392077,Environment,Environment +387715,Environment,Environment +387710,Environment,Environment +385138,Environment,Environment +385097,Environment,Environment +385095,Environment,Environment +384237,Environment,Environment +384235,Environment,Environment +384230,Environment,Environment +384229,Environment,Environment +384226,Environment,Environment +384225,Environment,Environment +384224,Environment,Environment +384044,Environment,Environment +383911,Environment,Environment +378426,Environment,Environment +366403,Environment,Environment +366402,Environment,Environment +363663,Environment,Environment +361211,Environment,Environment +357928,Environment,Environment +356306,Environment,Environment +353825,Environment,Environment +336322,Environment,Environment +296262,Environment,Environment +296259,Environment,Environment +286614,Environment,Environment +284151,Environment,Environment +268351,Environment,Environment +268349,Environment,Environment +268331,Environment,Environment +263209,Environment,Environment +543852,Environment,Environment +543850,Environment,Environment +541760,Environment,Environment +541757,Environment,Environment +541745,Environment,Environment +541739,Environment,Environment +539946,Environment,Environment +539943,Environment,Environment +539942,Environment,Environment +539939,Environment,Environment +537827,Environment,Environment +537825,Environment,Environment +537824,Environment,Environment +537820,Environment,Environment +537815,Environment,Environment +535045,Environment,Environment +529070,Environment,Environment +517385,Environment,Environment +509446,Environment,Environment +509445,Environment,Environment +467084,Environment,Environment +467080,Environment,Environment +464466,Environment,Environment +460554,Environment,Environment +452025,Environment,Environment +449247,Environment,Environment +449246,Environment,Environment +447253,Environment,Environment +447252,Environment,Environment +444959,Environment,Environment +444952,Environment,Environment +444949,Environment,Environment +444943,Environment,Environment +444937,Environment,Environment +438508,Environment,Environment +438504,Environment,Environment +438492,Environment,Environment +435197,Environment,Environment +435196,Environment,Environment +430465,Environment,Environment +430464,Environment,Environment +430463,Environment,Environment +517385,Fisheries,Fisheries +509443,Fisheries,Fisheries +268351,Fisheries,Fisheries +268331,Fisheries,Fisheries +259890,Fisheries,Fisheries +259877,Fisheries,Fisheries +259870,Fisheries,Fisheries +164176,Fisheries,Fisheries +153141,Fisheries,Fisheries +406645,Fisheries,Fisheries +370552,Fisheries,Fisheries +361211,Fisheries,Fisheries +353825,Fisheries,Fisheries +339209,Fisheries,Fisheries +336322,Fisheries,Fisheries +324296,Fisheries,Fisheries +311050,Fisheries,Fisheries +296262,Fisheries,Fisheries +296259,Fisheries,Fisheries +277208,Fisheries,Fisheries +467085,Fisheries,Fisheries +464532,Fisheries,Fisheries +464526,Fisheries,Fisheries +460554,Fisheries,Fisheries +460552,Fisheries,Fisheries +458537,Fisheries,Fisheries +452060,Fisheries,Fisheries +452026,Fisheries,Fisheries +452023,Fisheries,Fisheries +449247,Fisheries,Fisheries +449245,Fisheries,Fisheries +449243,Fisheries,Fisheries +444949,Fisheries,Fisheries +444943,Fisheries,Fisheries +438501,Fisheries,Fisheries +435199,Fisheries,Fisheries +435197,Fisheries,Fisheries +435196,Fisheries,Fisheries +431721,Fisheries,Fisheries +428652,Fisheries,Fisheries +428651,Fisheries,Fisheries +417854,Fisheries,Fisheries +438492,Industry,Industry +417854,Industry,Industry +80858,Industry,Industry +76986,Industry,Industry +76984,Industry,Industry +76983,Industry,Industry +76981,Industry,Industry +76979,Industry,Industry +76978,Industry,Industry +76977,Industry,Industry +76976,Industry,Industry +76974,Industry,Industry +185899,Industry,Industry +172064,Industry,Industry +153138,Industry,Industry +93878,Industry,Industry +93877,Industry,Industry +93875,Industry,Industry +393938,Industry,Industry +541737,Industry,Industry +458539,Industry,Industry +398433,International Trade,International Trade +398410,International Trade,International Trade +97358,International Trade,International Trade +97357,International Trade,International Trade +97355,International Trade,International Trade +95634,International Trade,International Trade +80515,International Trade,International Trade +212669,International Trade,International Trade +196331,International Trade,International Trade +168049,International Trade,International Trade +157197,International Trade,International Trade +109736,International Trade,International Trade +395961,International Trade,International Trade +393152,International Trade,International Trade +392261,International Trade,International Trade +392259,International Trade,International Trade +392257,International Trade,International Trade +379094,International Trade,International Trade +373982,International Trade,International Trade +355789,International Trade,International Trade +355787,International Trade,International Trade +351165,International Trade,International Trade +350967,International Trade,International Trade +342321,International Trade,International Trade +342320,International Trade,International Trade +342319,International Trade,International Trade +319113,International Trade,International Trade +319110,International Trade,International Trade +305972,International Trade,International Trade +305969,International Trade,International Trade +278511,International Trade,International Trade +246790,International Trade,International Trade +246789,International Trade,International Trade +232051,International Trade,International Trade +232050,International Trade,International Trade +232049,International Trade,International Trade +221887,International Trade,International Trade +423521,International Trade,International Trade +423514,International Trade,International Trade +423512,International Trade,International Trade +423510,International Trade,International Trade +415412,International Trade,International Trade +412345,International Trade,International Trade +407328,International Trade,International Trade +404972,International Trade,International Trade +473508,Mining,Mining +473238,Mining,Mining +109736,Mining,Mining +90424,Mining,Mining +80534,Mining,Mining +80515,Mining,Mining +161372,Mining,Mining +161371,Mining,Mining +161369,Mining,Mining +159338,Mining,Mining +159337,Mining,Mining +159336,Mining,Mining +159335,Mining,Mining +159327,Mining,Mining +159323,Mining,Mining +157208,Mining,Mining +157207,Mining,Mining +157204,Mining,Mining +157200,Mining,Mining +157197,Mining,Mining +157191,Mining,Mining +150257,Mining,Mining +150212,Mining,Mining +246790,Mining,Mining +246789,Mining,Mining +212669,Mining,Mining +196331,Mining,Mining +168049,Mining,Mining +165901,Mining,Mining +380813,Mining,Mining +379094,Mining,Mining +379093,Mining,Mining +379092,Mining,Mining +379090,Mining,Mining +379087,Mining,Mining +379085,Mining,Mining +379083,Mining,Mining +379079,Mining,Mining +373982,Mining,Mining +355789,Mining,Mining +355787,Mining,Mining +351165,Mining,Mining +350967,Mining,Mining +347620,Mining,Mining +342321,Mining,Mining +342320,Mining,Mining +342319,Mining,Mining +336149,Mining,Mining +331626,Mining,Mining +331625,Mining,Mining +319112,Mining,Mining +319111,Mining,Mining +319110,Mining,Mining +319108,Mining,Mining +305972,Mining,Mining +305969,Mining,Mining +278511,Mining,Mining +274969,Mining,Mining +467796,Mining,Mining +467792,Mining,Mining +467781,Mining,Mining +464514,Mining,Mining +464513,Mining,Mining +464508,Mining,Mining +457235,Mining,Mining +457234,Mining,Mining +457232,Mining,Mining +436463,Mining,Mining +434666,Mining,Mining +433257,Mining,Mining +432353,Mining,Mining +429337,Mining,Mining +429335,Mining,Mining +429333,Mining,Mining +429331,Mining,Mining +423521,Mining,Mining +423514,Mining,Mining +423512,Mining,Mining +423510,Mining,Mining +418017,Mining,Mining +415412,Mining,Mining +412345,Mining,Mining +407328,Mining,Mining +404973,Mining,Mining +404972,Mining,Mining +404970,Mining,Mining +398487,Mining,Mining +398436,Mining,Mining +398433,Mining,Mining +398413,Mining,Mining +398410,Mining,Mining +398409,Mining,Mining +395961,Mining,Mining +393152,Mining,Mining +392261,Mining,Mining +392259,Mining,Mining +392257,Mining,Mining +534356,Mining,Mining +483902,Mining,Mining +477075,Mining,Mining +113906,Other,Education and Higher Education +109511,Other,Education and Higher Education +90368,Other,Education and Higher Education +90365,Other,Education and Higher Education +90360,Other,Education and Higher Education +85293,Other,Education and Higher Education +85290,Other,Education and Higher Education +85288,Other,Education and Higher Education +85287,Other,Education and Higher Education +85286,Other,Education and Higher Education +85284,Other,Education and Higher Education +82778,Other,Education and Higher Education +109510,Other,Education and Higher Education +109505,Other,Education and Higher Education +109456,Other,Education and Higher Education +106066,Other,Education and Higher Education +106064,Other,Education and Higher Education +101455,Other,Education and Higher Education +101152,Other,Education and Higher Education +101149,Other,Education and Higher Education +101147,Other,Education and Higher Education +101144,Other,Education and Higher Education +97784,Other,Education and Higher Education +97783,Other,Education and Higher Education +97779,Other,Education and Higher Education +97773,Other,Education and Higher Education +97772,Other,Education and Higher Education +97765,Other,Education and Higher Education +97764,Other,Education and Higher Education +97760,Other,Education and Higher Education +97759,Other,Education and Higher Education +97758,Other,Education and Higher Education +94146,Other,Education and Higher Education +94145,Other,Education and Higher Education +94144,Other,Education and Higher Education +94142,Other,Education and Higher Education +94139,Other,Education and Higher Education +94138,Other,Education and Higher Education +94136,Other,Education and Higher Education +90370,Other,Education and Higher Education +137095,Other,Education and Higher Education +137094,Other,Education and Higher Education +137074,Other,Education and Higher Education +135614,Other,Education and Higher Education +131659,Other,Education and Higher Education +131658,Other,Education and Higher Education +131657,Other,Education and Higher Education +128130,Other,Education and Higher Education +128128,Other,Education and Higher Education +128120,Other,Education and Higher Education +128119,Other,Education and Higher Education +128118,Other,Education and Higher Education +128114,Other,Education and Higher Education +124855,Other,Education and Higher Education +124852,Other,Education and Higher Education +124850,Other,Education and Higher Education +124845,Other,Education and Higher Education +124841,Other,Education and Higher Education +124839,Other,Education and Higher Education +124838,Other,Education and Higher Education +124836,Other,Education and Higher Education +124850,Other,Student Assistance +109510,Other,Student Assistance +97784,Other,Student Assistance +97783,Other,Student Assistance +85293,Other,Student Assistance +85290,Other,Student Assistance +85288,Other,Student Assistance +85287,Other,Student Assistance +85286,Other,Student Assistance +85282,Other,Student Assistance +196637,Energy,Energy +196566,Energy,Energy +196565,Energy,Energy +196564,Energy,Energy +191990,Energy,Energy +191988,Energy,Energy +191986,Energy,Energy +191984,Energy,Energy +191965,Energy,Energy +190765,Energy,Energy +187204,Energy,Energy +183124,Energy,Energy +181764,Energy,Energy +167762,Energy,Energy +167761,Energy,Energy +167760,Energy,Energy +228949,Energy,Energy +220487,Energy,Energy +212648,Energy,Energy +210150,Energy,Energy +210149,Energy,Energy +207810,Energy,Energy +207809,Energy,Energy +207808,Energy,Energy +207807,Energy,Energy +206247,Energy,Energy +200934,Energy,Energy +200309,Energy,Energy +200308,Energy,Energy +200306,Energy,Energy +124847,Other,Aboriginal Education +113935,Other,Aboriginal Education +113934,Other,Aboriginal Education +113916,Other,Aboriginal Education +109454,Other,Aboriginal Education +85293,Other,Aboriginal Education +85290,Other,Aboriginal Education +85288,Other,Aboriginal Education +85287,Other,Aboriginal Education +85286,Other,Aboriginal Education +85282,Other,Aboriginal Education +85281,Other,Aboriginal Education +142440,Other,Aboriginal Education +142439,Other,Aboriginal Education +142436,Other,Aboriginal Education +137135,Other,Aboriginal Education +131661,Other,Aboriginal Education +131660,Other,Aboriginal Education +131659,Other,Aboriginal Education +131658,Other,Aboriginal Education +131657,Other,Aboriginal Education +128120,Other,Aboriginal Education +128119,Other,Aboriginal Education +128118,Other,Aboriginal Education +128117,Other,Aboriginal Education +209508,Environment,Environment +200991,Environment,Environment +136616,Environment,Environment +129954,Environment,Environment +116854,Environment,Environment +91474,Environment,Environment +86256,Environment,Environment +156045,Environment,Environment +147314,Environment,Environment +190847,Environment,Environment +188138,Environment,Environment +181124,Environment,Environment +173484,Environment,Environment +168434,Environment,Environment +165730,Environment,Environment +161156,Environment,Environment +247409,Environment,Environment +211557,Environment,Environment +126515,Fisheries,Fisheries +77035,Government Procurement,Government Procurement +167983,Infrastructure,Infrastructure +165465,Infrastructure,Infrastructure +156842,Infrastructure,Infrastructure +149576,Infrastructure,Infrastructure +76277,Infrastructure,Infrastructure +199409,Infrastructure,Infrastructure +199387,Infrastructure,Infrastructure +193692,Infrastructure,Infrastructure +193655,Infrastructure,Infrastructure +193007,Infrastructure,Infrastructure +188705,Infrastructure,Infrastructure +177485,Infrastructure,Infrastructure +75954,Infrastructure,Infrastructure +84581,Infrastructure,Infrastructure +80448,Infrastructure,Infrastructure +192987,Infrastructure,Infrastructure +188694,Infrastructure,Infrastructure +87579,Infrastructure,Infrastructure +87575,Infrastructure,Infrastructure +76455,Infrastructure,Infrastructure +199408,Infrastructure,Infrastructure +193689,Infrastructure,Infrastructure +193678,Infrastructure,Infrastructure +193671,Infrastructure,Infrastructure +79895,Other,Natural Resources +76455,Other,Natural Resources +97462,Other,Natural Resources +193006,Infrastructure,Infrastructure +192989,Infrastructure,Infrastructure +87581,Infrastructure,Infrastructure +87577,Infrastructure,Infrastructure +80441,Infrastructure,Infrastructure +79916,Infrastructure,Infrastructure +75034,Infrastructure,Infrastructure +183205,Infrastructure,Infrastructure +175187,Infrastructure,Infrastructure +175183,Infrastructure,Infrastructure +175182,Infrastructure,Infrastructure +170389,Infrastructure,Infrastructure +170380,Infrastructure,Infrastructure +167988,Infrastructure,Infrastructure +166724,Infrastructure,Infrastructure +165599,Infrastructure,Infrastructure +151817,Infrastructure,Infrastructure +202545,Infrastructure,Infrastructure +193680,Infrastructure,Infrastructure +193666,Infrastructure,Infrastructure +75034,Other,Natural Resources +117295,Other,Natural Resources +93639,Other,Natural Resources +87577,Other,Natural Resources +170385,Infrastructure,Infrastructure +202543,Infrastructure,Infrastructure +87580,Infrastructure,Infrastructure +79895,Infrastructure,Infrastructure +76276,Infrastructure,Infrastructure +199287,Infrastructure,Infrastructure +197477,Infrastructure,Infrastructure +193707,Infrastructure,Infrastructure +193690,Infrastructure,Infrastructure +193664,Infrastructure,Infrastructure +193650,Infrastructure,Infrastructure +183204,Infrastructure,Infrastructure +175181,Infrastructure,Infrastructure +76937,Other,Natural Resources +76276,Other,Natural Resources +113462,Other,Natural Resources +87575,Other,Natural Resources +165468,Infrastructure,Infrastructure +153137,Infrastructure,Infrastructure +87578,Infrastructure,Infrastructure +87576,Infrastructure,Infrastructure +84898,Infrastructure,Infrastructure +79934,Infrastructure,Infrastructure +79894,Infrastructure,Infrastructure +76937,Infrastructure,Infrastructure +76275,Infrastructure,Infrastructure +193659,Infrastructure,Infrastructure +193144,Infrastructure,Infrastructure +193004,Infrastructure,Infrastructure +192986,Infrastructure,Infrastructure +188699,Infrastructure,Infrastructure +177484,Infrastructure,Infrastructure +84898,Other,Natural Resources +113463,Other,Natural Resources +79915,Other,Natural Resources +79875,Other,Natural Resources +76275,Other,Natural Resources +97451,Other,Natural Resources +96857,Other,Natural Resources +76763,Other,Infrastructure +76456,Other,Infrastructure +79915,Other,Infrastructure +76456,Other,Natural Resources +76277,Other,Natural Resources +97457,Other,Natural Resources +79916,Other,Natural Resources +517625,Health,Health +513294,Health,Health +143094,Health,Health +143074,Health,Health +129167,Health,Health +351221,Health,Health +351216,Health,Health +351213,Health,Health +347264,Health,Health +398961,Health,Health +396991,Health,Health +396602,Health,Health +382204,Health,Health +377064,Health,Health +377058,Health,Health +362320,Health,Health +351223,Health,Health +464970,Health,Health +464934,Health,Health +457749,Health,Health +444211,Health,Health +443446,Health,Health +430531,Health,Health +428901,Health,Health +425838,Health,Health +425837,Health,Health +416908,Health,Health +409636,Health,Health +544253,Health,Health +544248,Health,Health +541903,Health,Health +541902,Health,Health +541901,Health,Health +541900,Health,Health +541896,Health,Health +541844,Health,Health +541842,Health,Health +540138,Health,Health +540137,Health,Health +538295,Health,Health +538278,Health,Health +538224,Health,Health +538223,Health,Health +535209,Health,Health +535206,Health,Health +535201,Health,Health +535185,Health,Health +535182,Health,Health +535169,Health,Health +535159,Health,Health +532179,Health,Health +532178,Health,Health +526371,Health,Health +522942,Health,Health +93799,Constitutional Issues,Constitutional Issues +88127,Constitutional Issues,Constitutional Issues +88127,Health,Health +80315,Health,Health +101164,Health,Health +80316,Justice and Law Enforcement,Justice and Law Enforcement +80315,Justice and Law Enforcement,Justice and Law Enforcement +93799,Justice and Law Enforcement,Justice and Law Enforcement +88137,Constitutional Issues,Constitutional Issues +88137,Health,Health +80296,Health,Health +80295,Health,Health +80938,Other,Caregivers +145235,Other,Caregivers +115336,Other,Caregivers +108995,Other,Caregivers +90158,Other,Caregivers +132744,Other,Tobacco +132727,Other,Tobacco +90157,Other,Tobacco +90155,Other,Tobacco +87694,Other,Tobacco +80938,Other,Tobacco +132716,Other,Tobacco +124854,Other,Tobacco +108994,Other,Tobacco +108978,Other,Tobacco +95374,Other,Tobacco +94140,Other,Tobacco +94137,Other,Tobacco +143836,Other,Tobacco +453524,Agriculture,Agriculture +453521,Agriculture,Agriculture +93995,Agriculture,Agriculture +237409,Agriculture,Agriculture +220507,Agriculture,Agriculture +201288,Agriculture,Agriculture +201287,Agriculture,Agriculture +175733,Agriculture,Agriculture +175732,Agriculture,Agriculture +175731,Agriculture,Agriculture +123274,Agriculture,Agriculture +120035,Agriculture,Agriculture +116615,Agriculture,Agriculture +237411,Agriculture,Agriculture +237410,Agriculture,Agriculture +453520,Agriculture,Agriculture +453519,Agriculture,Agriculture +453517,Agriculture,Agriculture +453516,Agriculture,Agriculture +453515,Agriculture,Agriculture +453500,Agriculture,Agriculture +453499,Agriculture,Agriculture +453498,Agriculture,Agriculture +453497,Agriculture,Agriculture +453496,Agriculture,Agriculture +453495,Agriculture,Agriculture +453493,Agriculture,Agriculture +453490,Agriculture,Agriculture +453489,Agriculture,Agriculture +453487,Agriculture,Agriculture +453486,Agriculture,Agriculture +453483,Agriculture,Agriculture +453481,Agriculture,Agriculture +453479,Agriculture,Agriculture +453478,Agriculture,Agriculture +453477,Agriculture,Agriculture +453476,Agriculture,Agriculture +453475,Agriculture,Agriculture +453474,Agriculture,Agriculture +453471,Agriculture,Agriculture +453470,Agriculture,Agriculture +453467,Agriculture,Agriculture +453436,Agriculture,Agriculture +453435,Agriculture,Agriculture +453434,Agriculture,Agriculture +453433,Agriculture,Agriculture +453431,Agriculture,Agriculture +453430,Agriculture,Agriculture +453429,Agriculture,Agriculture +453428,Agriculture,Agriculture +453426,Agriculture,Agriculture +453425,Agriculture,Agriculture +453424,Agriculture,Agriculture +453423,Agriculture,Agriculture +453422,Agriculture,Agriculture +453421,Agriculture,Agriculture +453420,Agriculture,Agriculture +453419,Agriculture,Agriculture +453418,Agriculture,Agriculture +453417,Agriculture,Agriculture +453416,Agriculture,Agriculture +453415,Agriculture,Agriculture +453414,Agriculture,Agriculture +453408,Agriculture,Agriculture +453406,Agriculture,Agriculture +453404,Agriculture,Agriculture +453403,Agriculture,Agriculture +453402,Agriculture,Agriculture +453401,Agriculture,Agriculture +453400,Agriculture,Agriculture +453399,Agriculture,Agriculture +453397,Agriculture,Agriculture +453396,Agriculture,Agriculture +453394,Agriculture,Agriculture +453393,Agriculture,Agriculture +453392,Agriculture,Agriculture +453391,Agriculture,Agriculture +453389,Agriculture,Agriculture +453388,Agriculture,Agriculture +453387,Agriculture,Agriculture +453385,Agriculture,Agriculture +453384,Agriculture,Agriculture +453376,Agriculture,Agriculture +453375,Agriculture,Agriculture +453371,Agriculture,Agriculture +453370,Agriculture,Agriculture +453357,Agriculture,Agriculture +453353,Agriculture,Agriculture +453352,Agriculture,Agriculture +453349,Agriculture,Agriculture +453344,Agriculture,Agriculture +453343,Agriculture,Agriculture +453340,Agriculture,Agriculture +453338,Agriculture,Agriculture +453335,Agriculture,Agriculture +453334,Agriculture,Agriculture +453333,Agriculture,Agriculture +453315,Agriculture,Agriculture +453313,Agriculture,Agriculture +453312,Agriculture,Agriculture +453310,Agriculture,Agriculture +453309,Agriculture,Agriculture +453307,Agriculture,Agriculture +453303,Agriculture,Agriculture +453300,Agriculture,Agriculture +453298,Agriculture,Agriculture +453295,Agriculture,Agriculture +453294,Agriculture,Agriculture +453291,Agriculture,Agriculture +453289,Agriculture,Agriculture +453287,Agriculture,Agriculture +453285,Agriculture,Agriculture +453283,Agriculture,Agriculture +453280,Agriculture,Agriculture +453279,Agriculture,Agriculture +453278,Agriculture,Agriculture +453276,Agriculture,Agriculture +453275,Agriculture,Agriculture +453273,Agriculture,Agriculture +453270,Agriculture,Agriculture +453267,Agriculture,Agriculture +453266,Agriculture,Agriculture +453265,Agriculture,Agriculture +453263,Agriculture,Agriculture +453262,Agriculture,Agriculture +453261,Agriculture,Agriculture +453259,Agriculture,Agriculture +453258,Agriculture,Agriculture +453256,Agriculture,Agriculture +453255,Agriculture,Agriculture +453254,Agriculture,Agriculture +453253,Agriculture,Agriculture +453252,Agriculture,Agriculture +453249,Agriculture,Agriculture +453248,Agriculture,Agriculture +453247,Agriculture,Agriculture +453246,Agriculture,Agriculture +453245,Agriculture,Agriculture +453244,Agriculture,Agriculture +453243,Agriculture,Agriculture +453242,Agriculture,Agriculture +453241,Agriculture,Agriculture +453239,Agriculture,Agriculture +453238,Agriculture,Agriculture +543894,Agriculture,Agriculture +543893,Agriculture,Agriculture +543891,Agriculture,Agriculture +543888,Agriculture,Agriculture +541259,Agriculture,Agriculture +541257,Agriculture,Agriculture +539741,Agriculture,Agriculture +539740,Agriculture,Agriculture +535358,Agriculture,Agriculture +529567,Agriculture,Agriculture +529566,Agriculture,Agriculture +529565,Agriculture,Agriculture +529564,Agriculture,Agriculture +529563,Agriculture,Agriculture +529562,Agriculture,Agriculture +529561,Agriculture,Agriculture +529560,Agriculture,Agriculture +529559,Agriculture,Agriculture +529558,Agriculture,Agriculture +529557,Agriculture,Agriculture +529556,Agriculture,Agriculture +529554,Agriculture,Agriculture +529553,Agriculture,Agriculture +529552,Agriculture,Agriculture +529550,Agriculture,Agriculture +529549,Agriculture,Agriculture +529548,Agriculture,Agriculture +529546,Agriculture,Agriculture +529543,Agriculture,Agriculture +529540,Agriculture,Agriculture +525487,Agriculture,Agriculture +525482,Agriculture,Agriculture +525481,Agriculture,Agriculture +525480,Agriculture,Agriculture +525476,Agriculture,Agriculture +525475,Agriculture,Agriculture +525474,Agriculture,Agriculture +525468,Agriculture,Agriculture +525465,Agriculture,Agriculture +525463,Agriculture,Agriculture +525461,Agriculture,Agriculture +525457,Agriculture,Agriculture +525454,Agriculture,Agriculture +525449,Agriculture,Agriculture +523231,Agriculture,Agriculture +523227,Agriculture,Agriculture +519927,Agriculture,Agriculture +519924,Agriculture,Agriculture +516753,Agriculture,Agriculture +516751,Agriculture,Agriculture +516749,Agriculture,Agriculture +516748,Agriculture,Agriculture +514191,Agriculture,Agriculture +512972,Agriculture,Agriculture +512967,Agriculture,Agriculture +512965,Agriculture,Agriculture +512962,Agriculture,Agriculture +512961,Agriculture,Agriculture +512960,Agriculture,Agriculture +512959,Agriculture,Agriculture +511056,Agriculture,Agriculture +508125,Agriculture,Agriculture +506043,Agriculture,Agriculture +506042,Agriculture,Agriculture +506041,Agriculture,Agriculture +502589,Agriculture,Agriculture +502581,Agriculture,Agriculture +502577,Agriculture,Agriculture +502563,Agriculture,Agriculture +502558,Agriculture,Agriculture +502554,Agriculture,Agriculture +498996,Agriculture,Agriculture +498970,Agriculture,Agriculture +498969,Agriculture,Agriculture +498967,Agriculture,Agriculture +496154,Agriculture,Agriculture +496153,Agriculture,Agriculture +496152,Agriculture,Agriculture +496151,Agriculture,Agriculture +491918,Agriculture,Agriculture +491917,Agriculture,Agriculture +491916,Agriculture,Agriculture +491914,Agriculture,Agriculture +487036,Agriculture,Agriculture +487035,Agriculture,Agriculture +487033,Agriculture,Agriculture +487031,Agriculture,Agriculture +487029,Agriculture,Agriculture +487028,Agriculture,Agriculture +487027,Agriculture,Agriculture +487025,Agriculture,Agriculture +487024,Agriculture,Agriculture +487021,Agriculture,Agriculture +487020,Agriculture,Agriculture +487019,Agriculture,Agriculture +487017,Agriculture,Agriculture +487016,Agriculture,Agriculture +487015,Agriculture,Agriculture +487013,Agriculture,Agriculture +487012,Agriculture,Agriculture +487010,Agriculture,Agriculture +487007,Agriculture,Agriculture +487006,Agriculture,Agriculture +487004,Agriculture,Agriculture +483480,Agriculture,Agriculture +481888,Agriculture,Agriculture +479183,Agriculture,Agriculture +479181,Agriculture,Agriculture +479180,Agriculture,Agriculture +479179,Agriculture,Agriculture +479178,Agriculture,Agriculture +479177,Agriculture,Agriculture +479175,Agriculture,Agriculture +479173,Agriculture,Agriculture +479171,Agriculture,Agriculture +479169,Agriculture,Agriculture +479168,Agriculture,Agriculture +479167,Agriculture,Agriculture +477620,Agriculture,Agriculture +477619,Agriculture,Agriculture +477618,Agriculture,Agriculture +473958,Agriculture,Agriculture +472250,Agriculture,Agriculture +472239,Agriculture,Agriculture +472229,Agriculture,Agriculture +472227,Agriculture,Agriculture +472225,Agriculture,Agriculture +472223,Agriculture,Agriculture +472222,Agriculture,Agriculture +472220,Agriculture,Agriculture +472219,Agriculture,Agriculture +473872,Constitutional Issues,Constitutional Issues +142938,Consumer Issues,Consumer Issues +421167,Education,Education +262889,Energy,Energy +269051,Environment,Environment +428254,Industry,Industry +223465,Infrastructure,Infrastructure +109623,International Relations,International Relations +473871,Taxation and Finance,Taxation and Finance +168406,Tourism,Tourism +427016,Transportation,Transportation +97894,Other,"Social Finance, Non-Profit Corporation Law, Housing" +96014,Industry,Industry +75534,Other,Housing +75534,Other,Social Finance +75499,Other,Customs & Border policies +81900,Other,Duty Free Regulations +75694,Other,International Air Policy +103415,Other,Policies Related To Aviation Security +81901,Other,Policies Related To Aviation Transportation +105254,Other,Policies Related To The Development Of A Regional System Of Airports In The Greater Toronto Area +84860,Other,Rapid Transit Link +501694,Energy,Energy +407414,Environment,Environment +476992,Fisheries,Fisheries +258770,Forestry,Forestry +528454,Health,Health +264130,Industry,Industry +258558,Infrastructure,Infrastructure +201090,Taxation and Finance,Taxation and Finance +258790,Transportation,Transportation +75695,Consumer Issues,Consumer Issues +458805,Health,Health +265229,Taxation and Finance,Taxation and Finance +150395,Consumer Issues,Consumer Issues +389545,Immigration,Immigration +374187,Industry,Industry +374185,Infrastructure,Infrastructure +374186,Labour,Labour +374185,Regional Development,Regional Development +374187,Taxation and Finance,Taxation and Finance +402296,Tourism,Tourism +75796,Other,Air Force Projects +75800,Other,Car Heaven +75816,Employment and Training,Employment and Training +87880,Infrastructure,Infrastructure +86874,Infrastructure,Infrastructure +75934,Other,Lung Health Framework +75935,Other,Lung Health Framework +118315,Other,"International Trade negotiations, with reference to supply management" +118314,Other,International trade with reference to supply management +122677,Other,International trade negotiations with reference to supply management +118316,Other,International trade with reference to supply management +84594,Other,Federal Framework on Air Emissions +76014,Other,History of Parliament +76014,Constitutional Issues,Constitutional Issues +76015,Other,Liberal Green Shift +76019,Other,Liberal Green Shift +76021,Other,Liberal Green Shift +76022,Other,COASTING TRADE DUTY +96014,Other,ecoEnergy for buildings and houses +96014,Financial Institutions,Financial Institutions +76035,Constitutional Issues,Constitutional Issues +76035,Other,History of Parliament +76037,Other,Liberal Green Shift +76038,Other,Liberal Green shift +76039,Other,Liberal Green Shift +77036,Other,Exit program for tobacco farmers +76049,Other,Fundraising rules for charities +153461,Employment and Training,Employment and Training +433844,Energy,Energy +369256,Environment,Environment +372785,Fisheries,Fisheries +450301,Forestry,Forestry +470677,Industry,Industry +451587,Infrastructure,Infrastructure +357994,Internal Trade,Internal Trade +338750,International Relations,International Relations +470667,International Trade,International Trade +245433,Labour,Labour +428862,Regional Development,Regional Development +445750,Taxation and Finance,Taxation and Finance +347189,Transportation,Transportation +89181,Immigration,Immigration +222372,Immigration,Immigration +255309,International Relations,International Relations +78234,Taxation and Finance,Taxation and Finance +250189,Health,Health +76142,Consumer Issues,Consumer Issues +459020,Agriculture,Agriculture +459020,Labour,Labour +76255,Other,Food Safety +76255,Other,Meat Inspection +76256,Agriculture,Agriculture +76256,Agriculture,Agriculture +76256,Other,Meat Inspection +76258,Other,Regulation +76294,Other,International Trade +76295,Other,Meat Inspection Fees +81755,Other,Goods and Services Tax +76314,Other,Meat Inspection Fee Review +114815,Other,expected process; anticipated outcome as related to supply management +114815,Other,status of ministerial negotiations +76334,Other,"Status, expectations, Canadian position and industry views regarding the WTO ministerial level negotiations regarding supply management" +114814,Other,Issues potentially confronting turkey sector/supply management +114814,Other,Overview of third revised WTO Agriculture Modalities Text +135840,Other,Acces to Natural Health Products +115137,Other,Regulations +76336,Other,AAFC reduced funding under agreement for implementation of On-Farm Food Safety Program +76336,Other,status and next steps of the Growing Forward initiative +76336,Other,status of the deliberations by Federal/Provincial/Territorial Agriculture Ministers on the Agreement on Internal Trade as related to supply management +76336,Other,WTO negotiations +76338,Other,TD Summer Reading Program +87863,Other,Generic Drug Sector Study +76379,Other,Border Services +76381,Other,Electricity and Gas Inspection Act +158893,Defence,Defence +76399,Other,Energy Sector Sustainability Table +76402,Other,Electricity and Gas Inspection Act +82674,Other,Dualité linguistique +80995,Immigration,Immigration +102504,Other,Jeux 2010 +76401,Other,Passage of Bill C-33 +425248,Education,Education +500136,Health,Health +98157,Immigration,Immigration +462324,Employment and Training,Employment and Training +471363,Infrastructure,Infrastructure +440549,International Relations,International Relations +143374,Health,Health +105541,Other,Food processing competitiveness +105455,Other,Food processing competitiveness +329152,Industry,Industry +375198,Tourism,Tourism +88955,Other,Canada Korea Free Trade negotiations +383035,Taxation and Finance,Taxation and Finance +76534,Other,Citizenship and Immigration +76614,Other,Oil Sands +76635,Other,Non-ICL Chicken Quota +76636,Transportation,Transportation +457195,Transportation,Transportation +165869,Health,Health +480528,Industry,Industry +390500,Taxation and Finance,Taxation and Finance +494261,Employment and Training,Employment and Training +83032,Environment,Environment +83032,Mining,Mining +80438,Other,Potential SADI Application +77164,Agriculture,Agriculture +77160,Agriculture,Agriculture +77166,Agriculture,Agriculture +99710,Agriculture,Agriculture +76874,Infrastructure,Infrastructure +76875,Infrastructure,Infrastructure +76877,Infrastructure,Infrastructure +77043,Agriculture,Agriculture +76876,Other,PMs proposed trip to Israel; Bill C51; government response to Israel-Lebanon prisoner exchange +77037,Agriculture,Agriculture +76896,Other,Visit to Jordan by Gerry Schwartz; proposed meeting with Kng Abdullah +76898,Other,Tax policy +80753,Agriculture,Agriculture +98203,Agriculture,Agriculture +76902,Other,Canada Labour Code Part III +76894,Other,aviation weather services contract +76904,Other,Canada Labour Code Part III +76911,Other,CFIB Tax survey +76912,Other,CFIB tax survey +76913,Other,Tax Rebate Discount Act +76915,Other,Automotive Innovation Fund +438504,Energy,Energy +430462,Environment,Environment +417853,Fisheries,Fisheries +444943,Industry,Industry +76916,Other,Auto Innovation Fund +398487,International Trade,International Trade +474942,Mining,Mining +76935,Other,Planning for Farnborough Air Show +120674,Other,Education and Higher Education +85281,Other,Student Assistance +200305,Energy,Energy +128114,Other,Aboriginal Education +211556,Environment,Environment +126516,Fisheries,Fisheries +77015,Other,Electricity and Gas Inspection Act +77035,Defence,Defence +90196,Government Procurement,Government Procurement +87668,Taxation and Finance,Taxation and Finance +77051,Other,GHG and Air Pollutant Frameworks +170383,Infrastructure,Infrastructure +79875,Infrastructure,Infrastructure +75954,Other,Natural Resources +193145,Infrastructure,Infrastructure +97445,Other,Natural Resources +193653,Infrastructure,Infrastructure +79914,Other,Natural Resources +162666,Other,Agriculture +170387,Infrastructure,Infrastructure +79894,Other,Natural Resources +165469,Infrastructure,Infrastructure +87578,Other,Natural Resources +79914,Other,Infrastructure +76763,Other,Natural Resources +77078,Other,CNSC/CNA Regulatory Advisory Committee +77079,Other,CNSC/CNA Regulatory Advisory Committee +77082,Other,IAEA Safeguards +80744,Environment,Environment +519761,Health,Health +101164,Constitutional Issues,Constitutional Issues +93799,Health,Health +88127,Justice and Law Enforcement,Justice and Law Enforcement +101138,Constitutional Issues,Constitutional Issues +101138,Health,Health +88137,Justice and Law Enforcement,Justice and Law Enforcement +88202,Energy,Energy +80940,Other,Caregivers +143835,Other,Tobacco +77817,Taxation and Finance,Taxation and Finance +77183,Other,tobacco control +77184,Other,tobacco control +77186,Agriculture,Agriculture +77186,Other,tobacco control +77188,Other,Caregivers +77201,Other,Airline Policy +453529,Agriculture,Agriculture +453247,Employment and Training,Employment and Training +461993,Health,Health +453286,Immigration,Immigration +453373,International Trade,International Trade +77779,Other,TD Securities +446007,Environment,Environment +384830,Intellectual Property,Intellectual Property +77206,Other,Stategic and Aerospace and Defence Initiative +77208,Other,Strategic and Aerospace Initiative +74636,Other,Energy +74636,Other,Renewable and Alternative Energy supply +77217,Other,Vehicle Safety Regulations +77218,Other,Canadian Vehicle Fuel Consumption Regulations +77220,Other,Innovation Project with Council of Canadian Academies +77220,Other,SADI Program for CAE +86594,Other,Financial services +77225,Other,SADI +77225,Other,Innovation +74654,Other,Participate in Hydrogren and Fuel Cells Canada meetings on renewable and alternative energy supply +74637,Other,participate in Hydrogen and Fuel Cells Canada meetings on renewable and alternative energy supply +74638,Other,Participate in Hydrogen and Fuel Cells Canada meetings on renewable and alternative energy supply +74634,Other,Participate in Hydrogen and Fuel Cells Canada meetings on renewable and alternative energy supply +82974,Other,Regulatory streamlining +74635,Other,Regulatory streamlining +81935,Other,Human Resources +472215,Agriculture,Agriculture +468917,Agriculture,Agriculture +468916,Agriculture,Agriculture +468913,Agriculture,Agriculture +468909,Agriculture,Agriculture +468908,Agriculture,Agriculture +468906,Agriculture,Agriculture +468904,Agriculture,Agriculture +468900,Agriculture,Agriculture +468899,Agriculture,Agriculture +468898,Agriculture,Agriculture +468896,Agriculture,Agriculture +468894,Agriculture,Agriculture +468893,Agriculture,Agriculture +468892,Agriculture,Agriculture +462001,Agriculture,Agriculture +462000,Agriculture,Agriculture +461998,Agriculture,Agriculture +461996,Agriculture,Agriculture +461995,Agriculture,Agriculture +461993,Agriculture,Agriculture +461991,Agriculture,Agriculture +461990,Agriculture,Agriculture +461989,Agriculture,Agriculture +461988,Agriculture,Agriculture +461086,Agriculture,Agriculture +457852,Agriculture,Agriculture +453559,Agriculture,Agriculture +453555,Agriculture,Agriculture +453545,Agriculture,Agriculture +453544,Agriculture,Agriculture +453543,Agriculture,Agriculture +453542,Agriculture,Agriculture +453540,Agriculture,Agriculture +453536,Agriculture,Agriculture +453535,Agriculture,Agriculture +453532,Agriculture,Agriculture +498967,Employment and Training,Employment and Training +479183,Employment and Training,Employment and Training +220507,Employment and Training,Employment and Training +237410,Employment and Training,Employment and Training +468902,Employment and Training,Employment and Training +461086,Employment and Training,Employment and Training +453556,Employment and Training,Employment and Training +453531,Employment and Training,Employment and Training +453530,Employment and Training,Employment and Training +453520,Employment and Training,Employment and Training +453518,Employment and Training,Employment and Training +453517,Employment and Training,Employment and Training +453500,Employment and Training,Employment and Training +453499,Employment and Training,Employment and Training +453498,Employment and Training,Employment and Training +453496,Employment and Training,Employment and Training +453495,Employment and Training,Employment and Training +453493,Employment and Training,Employment and Training +453491,Employment and Training,Employment and Training +453481,Employment and Training,Employment and Training +453480,Employment and Training,Employment and Training +453479,Employment and Training,Employment and Training +453477,Employment and Training,Employment and Training +453476,Employment and Training,Employment and Training +453475,Employment and Training,Employment and Training +453474,Employment and Training,Employment and Training +453473,Employment and Training,Employment and Training +453471,Employment and Training,Employment and Training +453470,Employment and Training,Employment and Training +453469,Employment and Training,Employment and Training +453437,Employment and Training,Employment and Training +453436,Employment and Training,Employment and Training +453434,Employment and Training,Employment and Training +453433,Employment and Training,Employment and Training +453431,Employment and Training,Employment and Training +453429,Employment and Training,Employment and Training +453428,Employment and Training,Employment and Training +453426,Employment and Training,Employment and Training +453425,Employment and Training,Employment and Training +453424,Employment and Training,Employment and Training +453423,Employment and Training,Employment and Training +453422,Employment and Training,Employment and Training +453416,Employment and Training,Employment and Training +453414,Employment and Training,Employment and Training +453412,Employment and Training,Employment and Training +453408,Employment and Training,Employment and Training +453401,Employment and Training,Employment and Training +453399,Employment and Training,Employment and Training +453397,Employment and Training,Employment and Training +453396,Employment and Training,Employment and Training +453393,Employment and Training,Employment and Training +453392,Employment and Training,Employment and Training +453391,Employment and Training,Employment and Training +453387,Employment and Training,Employment and Training +453386,Employment and Training,Employment and Training +453385,Employment and Training,Employment and Training +453375,Employment and Training,Employment and Training +453371,Employment and Training,Employment and Training +453360,Employment and Training,Employment and Training +453355,Employment and Training,Employment and Training +453353,Employment and Training,Employment and Training +453349,Employment and Training,Employment and Training +453344,Employment and Training,Employment and Training +453341,Employment and Training,Employment and Training +453338,Employment and Training,Employment and Training +453336,Employment and Training,Employment and Training +453333,Employment and Training,Employment and Training +453313,Employment and Training,Employment and Training +453303,Employment and Training,Employment and Training +453300,Employment and Training,Employment and Training +453291,Employment and Training,Employment and Training +453287,Employment and Training,Employment and Training +453286,Employment and Training,Employment and Training +453285,Employment and Training,Employment and Training +453283,Employment and Training,Employment and Training +453280,Employment and Training,Employment and Training +453279,Employment and Training,Employment and Training +453278,Employment and Training,Employment and Training +453275,Employment and Training,Employment and Training +453272,Employment and Training,Employment and Training +453270,Employment and Training,Employment and Training +453267,Employment and Training,Employment and Training +453263,Employment and Training,Employment and Training +453258,Employment and Training,Employment and Training +453256,Employment and Training,Employment and Training +453255,Employment and Training,Employment and Training +453254,Employment and Training,Employment and Training +453253,Employment and Training,Employment and Training +453540,Health,Health +453521,Health,Health +116615,Health,Health +453519,Health,Health +453489,Health,Health +453486,Health,Health +453478,Health,Health +453432,Health,Health +453421,Health,Health +453419,Health,Health +453410,Health,Health +453400,Health,Health +453394,Health,Health +453384,Health,Health +453335,Health,Health +453315,Health,Health +453298,Health,Health +453295,Health,Health +453261,Health,Health +453251,Health,Health +535358,Health,Health +531334,Health,Health +529540,Health,Health +516751,Health,Health +468911,Health,Health +468900,Health,Health +502585,Immigration,Immigration +468902,Immigration,Immigration +201287,Immigration,Immigration +462001,Immigration,Immigration +456523,Immigration,Immigration +453556,Immigration,Immigration +453476,Immigration,Immigration +453469,Immigration,Immigration +453437,Immigration,Immigration +453426,Immigration,Immigration +453412,Immigration,Immigration +453399,Immigration,Immigration +453387,Immigration,Immigration +453386,Immigration,Immigration +453355,Immigration,Immigration +453372,International Trade,International Trade +453371,International Trade,International Trade +93994,International Trade,International Trade +123274,International Trade,International Trade +116618,International Trade,International Trade +237409,International Trade,International Trade +201288,International Trade,International Trade +201287,International Trade,International Trade +175732,International Trade,International Trade +175731,International Trade,International Trade +453359,International Trade,International Trade +453358,International Trade,International Trade +453354,International Trade,International Trade +453353,International Trade,International Trade +453352,International Trade,International Trade +453351,International Trade,International Trade +453350,International Trade,International Trade +453349,International Trade,International Trade +453345,International Trade,International Trade +453344,International Trade,International Trade +453343,International Trade,International Trade +453340,International Trade,International Trade +453339,International Trade,International Trade +453334,International Trade,International Trade +453333,International Trade,International Trade +453315,International Trade,International Trade +453314,International Trade,International Trade +453313,International Trade,International Trade +453312,International Trade,International Trade +453303,International Trade,International Trade +453300,International Trade,International Trade +453291,International Trade,International Trade +453287,International Trade,International Trade +453285,International Trade,International Trade +453283,International Trade,International Trade +453280,International Trade,International Trade +453279,International Trade,International Trade +453278,International Trade,International Trade +453277,International Trade,International Trade +453276,International Trade,International Trade +453275,International Trade,International Trade +453273,International Trade,International Trade +453270,International Trade,International Trade +453269,International Trade,International Trade +453267,International Trade,International Trade +453266,International Trade,International Trade +453264,International Trade,International Trade +453263,International Trade,International Trade +453262,International Trade,International Trade +453260,International Trade,International Trade +453255,International Trade,International Trade +453250,International Trade,International Trade +453240,International Trade,International Trade +537892,International Trade,International Trade +529555,International Trade,International Trade +529544,International Trade,International Trade +525487,International Trade,International Trade +525482,International Trade,International Trade +525478,International Trade,International Trade +525476,International Trade,International Trade +525475,International Trade,International Trade +525454,International Trade,International Trade +525449,International Trade,International Trade +523230,International Trade,International Trade +516746,International Trade,International Trade +512961,International Trade,International Trade +506042,International Trade,International Trade +502574,International Trade,International Trade +502569,International Trade,International Trade +502560,International Trade,International Trade +498970,International Trade,International Trade +498967,International Trade,International Trade +496154,International Trade,International Trade +491917,International Trade,International Trade +487036,International Trade,International Trade +487033,International Trade,International Trade +487029,International Trade,International Trade +487028,International Trade,International Trade +487027,International Trade,International Trade +487026,International Trade,International Trade +487024,International Trade,International Trade +479183,International Trade,International Trade +479170,International Trade,International Trade +477616,International Trade,International Trade +477615,International Trade,International Trade +468916,International Trade,International Trade +468909,International Trade,International Trade +468908,International Trade,International Trade +468899,International Trade,International Trade +462001,International Trade,International Trade +461996,International Trade,International Trade +461995,International Trade,International Trade +461991,International Trade,International Trade +461986,International Trade,International Trade +461086,International Trade,International Trade +456524,International Trade,International Trade +456522,International Trade,International Trade +453558,International Trade,International Trade +453555,International Trade,International Trade +453553,International Trade,International Trade +453550,International Trade,International Trade +453548,International Trade,International Trade +453547,International Trade,International Trade +453546,International Trade,International Trade +453539,International Trade,International Trade +453538,International Trade,International Trade +453528,International Trade,International Trade +453527,International Trade,International Trade +453520,International Trade,International Trade +453500,International Trade,International Trade +453499,International Trade,International Trade +453498,International Trade,International Trade +453496,International Trade,International Trade +453495,International Trade,International Trade +453494,International Trade,International Trade +453493,International Trade,International Trade +453492,International Trade,International Trade +453490,International Trade,International Trade +453488,International Trade,International Trade +453487,International Trade,International Trade +453486,International Trade,International Trade +453483,International Trade,International Trade +453481,International Trade,International Trade +453479,International Trade,International Trade +453477,International Trade,International Trade +453475,International Trade,International Trade +453474,International Trade,International Trade +453473,International Trade,International Trade +453471,International Trade,International Trade +453470,International Trade,International Trade +453468,International Trade,International Trade +453467,International Trade,International Trade +453466,International Trade,International Trade +453465,International Trade,International Trade +453464,International Trade,International Trade +453462,International Trade,International Trade +453460,International Trade,International Trade +453436,International Trade,International Trade +453434,International Trade,International Trade +453433,International Trade,International Trade +453431,International Trade,International Trade +453429,International Trade,International Trade +453428,International Trade,International Trade +453426,International Trade,International Trade +453425,International Trade,International Trade +453424,International Trade,International Trade +453423,International Trade,International Trade +453422,International Trade,International Trade +453420,International Trade,International Trade +453418,International Trade,International Trade +453417,International Trade,International Trade +453416,International Trade,International Trade +453415,International Trade,International Trade +453414,International Trade,International Trade +453411,International Trade,International Trade +453409,International Trade,International Trade +453408,International Trade,International Trade +453406,International Trade,International Trade +453405,International Trade,International Trade +453404,International Trade,International Trade +453402,International Trade,International Trade +453399,International Trade,International Trade +453397,International Trade,International Trade +453395,International Trade,International Trade +453393,International Trade,International Trade +453392,International Trade,International Trade +453391,International Trade,International Trade +453390,International Trade,International Trade +453389,International Trade,International Trade +453385,International Trade,International Trade +453383,International Trade,International Trade +453376,International Trade,International Trade +453375,International Trade,International Trade +453374,International Trade,International Trade +77776,Other,TD Securities +77203,Other,TD Securities +77784,Other,TD Securities +446006,Environment,Environment +440978,Environment,Environment +384829,Intellectual Property,Intellectual Property +384828,Intellectual Property,Intellectual Property +158932,Intellectual Property,Intellectual Property +158923,Intellectual Property,Intellectual Property +145415,Intellectual Property,Intellectual Property +132318,Intellectual Property,Intellectual Property +126534,Intellectual Property,Intellectual Property +97393,Intellectual Property,Intellectual Property +299770,Intellectual Property,Intellectual Property +299769,Intellectual Property,Intellectual Property +245001,Intellectual Property,Intellectual Property +244999,Intellectual Property,Intellectual Property +239052,Intellectual Property,Intellectual Property +227551,Intellectual Property,Intellectual Property +197032,Intellectual Property,Intellectual Property +194662,Intellectual Property,Intellectual Property +194661,Intellectual Property,Intellectual Property +184564,Intellectual Property,Intellectual Property +184544,Intellectual Property,Intellectual Property +169847,Intellectual Property,Intellectual Property +371209,Intellectual Property,Intellectual Property +371207,Intellectual Property,Intellectual Property +348773,Intellectual Property,Intellectual Property +348772,Intellectual Property,Intellectual Property +82074,Other,Financial services +82555,Other,Regulatory streamlining +77228,Other,Regulatory streamlining +103059,Other,Regulatory streamlining +84765,Other,Regulatory streamlining +84764,Other,Regulatory streamlining +84763,Other,Regulatory streamlining +84762,Other,Regulatory streamlining +82976,Other,Regulatory streamlining +82975,Other,Regulatory streamlining +78536,Other,Human Resources +75194,Other,Human Resources +79635,Other,Air navigation services in support of 2010 Olympics +76908,Other,Air navigation services in support of 2010 Olympics +499616,Consumer Issues,Consumer Issues +499615,Consumer Issues,Consumer Issues +79814,Consumer Issues,Consumer Issues +166120,Consumer Issues,Consumer Issues +166119,Consumer Issues,Consumer Issues +166118,Consumer Issues,Consumer Issues +166117,Consumer Issues,Consumer Issues +166116,Consumer Issues,Consumer Issues +166115,Consumer Issues,Consumer Issues +166114,Consumer Issues,Consumer Issues +278090,Consumer Issues,Consumer Issues +278089,Consumer Issues,Consumer Issues +278069,Consumer Issues,Consumer Issues +264374,Consumer Issues,Consumer Issues +252716,Consumer Issues,Consumer Issues +252715,Consumer Issues,Consumer Issues +245442,Consumer Issues,Consumer Issues +237330,Consumer Issues,Consumer Issues +225071,Consumer Issues,Consumer Issues +223677,Consumer Issues,Consumer Issues +223673,Consumer Issues,Consumer Issues +207252,Consumer Issues,Consumer Issues +207249,Consumer Issues,Consumer Issues +207248,Consumer Issues,Consumer Issues +207247,Consumer Issues,Consumer Issues +207228,Consumer Issues,Consumer Issues +207227,Consumer Issues,Consumer Issues +207226,Consumer Issues,Consumer Issues +207225,Consumer Issues,Consumer Issues +207223,Consumer Issues,Consumer Issues +207206,Consumer Issues,Consumer Issues +377468,Consumer Issues,Consumer Issues +377466,Consumer Issues,Consumer Issues +377465,Consumer Issues,Consumer Issues +377463,Consumer Issues,Consumer Issues +373150,Consumer Issues,Consumer Issues +373149,Consumer Issues,Consumer Issues +373148,Consumer Issues,Consumer Issues +373147,Consumer Issues,Consumer Issues +373145,Consumer Issues,Consumer Issues +369700,Consumer Issues,Consumer Issues +369698,Consumer Issues,Consumer Issues +369697,Consumer Issues,Consumer Issues +369696,Consumer Issues,Consumer Issues +369694,Consumer Issues,Consumer Issues +354013,Consumer Issues,Consumer Issues +354011,Consumer Issues,Consumer Issues +349311,Consumer Issues,Consumer Issues +344238,Consumer Issues,Consumer Issues +338492,Consumer Issues,Consumer Issues +338490,Consumer Issues,Consumer Issues +337030,Consumer Issues,Consumer Issues +337029,Consumer Issues,Consumer Issues +334251,Consumer Issues,Consumer Issues +334250,Consumer Issues,Consumer Issues +333032,Consumer Issues,Consumer Issues +332793,Consumer Issues,Consumer Issues +332792,Consumer Issues,Consumer Issues +330264,Consumer Issues,Consumer Issues +326430,Consumer Issues,Consumer Issues +326429,Consumer Issues,Consumer Issues +326071,Consumer Issues,Consumer Issues +324728,Consumer Issues,Consumer Issues +324006,Consumer Issues,Consumer Issues +324004,Consumer Issues,Consumer Issues +323349,Consumer Issues,Consumer Issues +321857,Consumer Issues,Consumer Issues +313279,Consumer Issues,Consumer Issues +313278,Consumer Issues,Consumer Issues +297692,Consumer Issues,Consumer Issues +297690,Consumer Issues,Consumer Issues +297689,Consumer Issues,Consumer Issues +463368,Consumer Issues,Consumer Issues +446590,Consumer Issues,Consumer Issues +445890,Consumer Issues,Consumer Issues +445889,Consumer Issues,Consumer Issues +445888,Consumer Issues,Consumer Issues +436792,Consumer Issues,Consumer Issues +436791,Consumer Issues,Consumer Issues +436790,Consumer Issues,Consumer Issues +405653,Consumer Issues,Consumer Issues +405652,Consumer Issues,Consumer Issues +403060,Consumer Issues,Consumer Issues +386012,Consumer Issues,Consumer Issues +545116,Consumer Issues,Consumer Issues +543326,Consumer Issues,Consumer Issues +534687,Consumer Issues,Consumer Issues +534683,Consumer Issues,Consumer Issues +534680,Consumer Issues,Consumer Issues +534673,Consumer Issues,Consumer Issues +526924,Consumer Issues,Consumer Issues +519816,Consumer Issues,Consumer Issues +519815,Consumer Issues,Consumer Issues +519814,Consumer Issues,Consumer Issues +518204,Consumer Issues,Consumer Issues +518200,Consumer Issues,Consumer Issues +502619,Consumer Issues,Consumer Issues +502615,Consumer Issues,Consumer Issues +502606,Consumer Issues,Consumer Issues +500009,Consumer Issues,Consumer Issues +499615,Financial Institutions,Financial Institutions +463368,Financial Institutions,Financial Institutions +100423,Financial Institutions,Financial Institutions +100417,Financial Institutions,Financial Institutions +100415,Financial Institutions,Financial Institutions +92616,Financial Institutions,Financial Institutions +79814,Financial Institutions,Financial Institutions +207252,Financial Institutions,Financial Institutions +207249,Financial Institutions,Financial Institutions +207248,Financial Institutions,Financial Institutions +207247,Financial Institutions,Financial Institutions +207228,Financial Institutions,Financial Institutions +207226,Financial Institutions,Financial Institutions +207225,Financial Institutions,Financial Institutions +207223,Financial Institutions,Financial Institutions +207206,Financial Institutions,Financial Institutions +373150,Financial Institutions,Financial Institutions +373149,Financial Institutions,Financial Institutions +373148,Financial Institutions,Financial Institutions +373147,Financial Institutions,Financial Institutions +373145,Financial Institutions,Financial Institutions +369700,Financial Institutions,Financial Institutions +369698,Financial Institutions,Financial Institutions +369697,Financial Institutions,Financial Institutions +369696,Financial Institutions,Financial Institutions +369694,Financial Institutions,Financial Institutions +344238,Financial Institutions,Financial Institutions +337030,Financial Institutions,Financial Institutions +337029,Financial Institutions,Financial Institutions +334251,Financial Institutions,Financial Institutions +278090,Financial Institutions,Financial Institutions +278069,Financial Institutions,Financial Institutions +252716,Financial Institutions,Financial Institutions +225071,Financial Institutions,Financial Institutions +223673,Financial Institutions,Financial Institutions +446590,Financial Institutions,Financial Institutions +445890,Financial Institutions,Financial Institutions +445889,Financial Institutions,Financial Institutions +445888,Financial Institutions,Financial Institutions +436792,Financial Institutions,Financial Institutions +436791,Financial Institutions,Financial Institutions +405653,Financial Institutions,Financial Institutions +405652,Financial Institutions,Financial Institutions +377466,Financial Institutions,Financial Institutions +377465,Financial Institutions,Financial Institutions +377463,Financial Institutions,Financial Institutions +543326,Financial Institutions,Financial Institutions +534687,Financial Institutions,Financial Institutions +534683,Financial Institutions,Financial Institutions +534680,Financial Institutions,Financial Institutions +534673,Financial Institutions,Financial Institutions +526924,Financial Institutions,Financial Institutions +519816,Financial Institutions,Financial Institutions +519815,Financial Institutions,Financial Institutions +519814,Financial Institutions,Financial Institutions +502619,Financial Institutions,Financial Institutions +502615,Financial Institutions,Financial Institutions +502606,Financial Institutions,Financial Institutions +500009,Financial Institutions,Financial Institutions +499619,Financial Institutions,Financial Institutions +200360,Intellectual Property,Intellectual Property +161743,International Trade,International Trade +142574,Other,Competition +199738,Infrastructure,Infrastructure +199737,Infrastructure,Infrastructure +96901,Infrastructure,Infrastructure +87874,Infrastructure,Infrastructure +87873,Infrastructure,Infrastructure +87870,Infrastructure,Infrastructure +85425,Infrastructure,Infrastructure +85422,Infrastructure,Infrastructure +80548,Infrastructure,Infrastructure +77389,Infrastructure,Infrastructure +77383,Infrastructure,Infrastructure +185527,Infrastructure,Infrastructure +177725,Infrastructure,Infrastructure +177705,Infrastructure,Infrastructure +109753,Infrastructure,Infrastructure +100954,Infrastructure,Infrastructure +217592,Infrastructure,Infrastructure +217589,Infrastructure,Infrastructure +211959,Infrastructure,Infrastructure +211954,Infrastructure,Infrastructure +207137,Infrastructure,Infrastructure +207135,Infrastructure,Infrastructure +202292,Infrastructure,Infrastructure +199746,Infrastructure,Infrastructure +199744,Infrastructure,Infrastructure +199742,Infrastructure,Infrastructure +93283,Other,Natural Resources +93281,Other,Natural Resources +93267,Other,Natural Resources +89958,Other,Natural Resources +89955,Other,Natural Resources +87875,Other,Natural Resources +87874,Other,Natural Resources +87873,Other,Natural Resources +87870,Other,Natural Resources +85425,Other,Natural Resources +85422,Other,Natural Resources +77397,Other,Natural Resources +77389,Other,Natural Resources +77383,Other,Natural Resources +156857,Other,Natural Resources +151933,Other,Natural Resources +146239,Other,Natural Resources +114137,Other,Natural Resources +114135,Other,Natural Resources +114134,Other,Natural Resources +114132,Other,Natural Resources +114129,Other,Natural Resources +114127,Other,Natural Resources +109809,Other,Natural Resources +109802,Other,Natural Resources +109799,Other,Natural Resources +100962,Other,Natural Resources +100959,Other,Natural Resources +100957,Other,Natural Resources +100954,Other,Natural Resources +96906,Other,Natural Resources +96905,Other,Natural Resources +96901,Other,Natural Resources +117000,Other,Mackenzie Gas Project +116994,Other,Mackenzie Gas Project +77399,Other,Mackenzie Gas Project +77396,Other,Mackenzie Gas Project +154005,Other,Mackenzie Gas Project +146240,Other,Mackenzie Gas Project +146239,Other,Mackenzie Gas Project +146238,Other,Mackenzie Gas Project +142551,Other,Mackenzie Gas Project +142545,Other,Mackenzie Gas Project +132881,Other,Mackenzie Gas Project +128713,Other,Mackenzie Gas Project +124898,Other,Mackenzie Gas Project +124894,Other,Mackenzie Gas Project +121018,Other,Mackenzie Gas Project +121016,Other,Mackenzie Gas Project +121014,Other,Mackenzie Gas Project +117004,Other,Mackenzie Gas Project +151930,Other,Privacy +465111,Agriculture,Agriculture +465110,Agriculture,Agriculture +77463,Agriculture,Agriculture +156251,Agriculture,Agriculture +155635,Agriculture,Agriculture +155634,Agriculture,Agriculture +153541,Agriculture,Agriculture +153537,Agriculture,Agriculture +107516,Agriculture,Agriculture +299433,Agriculture,Agriculture +299429,Agriculture,Agriculture +271314,Agriculture,Agriculture +243010,Agriculture,Agriculture +243009,Agriculture,Agriculture +243001,Agriculture,Agriculture +224568,Agriculture,Agriculture +224567,Agriculture,Agriculture +166626,Agriculture,Agriculture +166625,Agriculture,Agriculture +157749,Agriculture,Agriculture +157748,Agriculture,Agriculture +376521,Agriculture,Agriculture +331831,Agriculture,Agriculture +320496,Agriculture,Agriculture +499905,Agriculture,Agriculture +107494,Other,Regulation of animal feed industry +88454,Other,Regulation of animal feed industry +77463,Other,Regulation of animal feed industry +144556,Other,Regulation of animal feed industry +144555,Other,Regulation of animal feed industry +100678,Other,Copyright +100677,Other,Copyright +100676,Other,Copyright +97466,Other,Copyright +97329,Other,Copyright +93358,Other,Copyright +93357,Other,Copyright +93355,Other,Copyright +93344,Other,Copyright +90218,Other,Copyright +87764,Other,Copyright +87761,Other,Copyright +78915,Other,Copyright +78914,Other,Copyright +142575,Other,Copyright +142574,Other,Copyright +138700,Other,Copyright +138696,Other,Copyright +128888,Other,Copyright +125078,Other,Copyright +120909,Other,Copyright +120908,Other,Copyright +120906,Other,Copyright +120904,Other,Copyright +120903,Other,Copyright +113863,Other,Copyright +113862,Other,Copyright +100970,Other,Foreign Affairs +514149,Environment,Environment +502669,Environment,Environment +124598,Environment,Environment +120194,Environment,Environment +197450,Environment,Environment +385046,Environment,Environment +385045,Environment,Environment +385043,Environment,Environment +385042,Environment,Environment +385041,Environment,Environment +385039,Environment,Environment +383841,Environment,Environment +379282,Environment,Environment +264380,Environment,Environment +435944,Environment,Environment +406966,Environment,Environment +392776,Environment,Environment +392770,Environment,Environment +388413,Environment,Environment +385048,Environment,Environment +385047,Environment,Environment +464368,Environment,Environment +448103,Environment,Environment +448088,Environment,Environment +448043,Environment,Environment +442115,Environment,Environment +439198,Environment,Environment +439192,Environment,Environment +439177,Environment,Environment +439173,Environment,Environment +543584,Environment,Environment +77635,Other,Tobacco packaging and taxation +156916,Other,Advanced Skills Gaps +148220,Other,Advanced Skills Gaps +81755,Other,Advanced Skills Gaps +132717,Other,Advanced Skills Gaps +132521,Other,Advanced Skills Gaps +126518,Other,Advanced Skills Gaps +126414,Other,Advanced Skills Gaps +162211,Other,Advanced Skills Gaps +162210,Other,Advanced Skills Gaps +162209,Other,Advanced Skills Gaps +162200,Other,Advanced Skills Gaps +162194,Other,Advanced Skills Gaps +162192,Other,Advanced Skills Gaps +159220,Other,Advanced Skills Gaps +156919,Other,Advanced Skills Gaps +156918,Other,Advanced Skills Gaps +133894,Other,College Applied Research +133854,Other,College Applied Research +132528,Other,College Applied Research +132527,Other,College Applied Research +132525,Other,College Applied Research +132521,Other,College Applied Research +81755,Other,College Applied Research +165761,Other,College Applied Research +162287,Other,College Applied Research +162211,Other,College Applied Research +162200,Other,College Applied Research +162198,Other,College Applied Research +159234,Other,College Applied Research +159233,Other,College Applied Research +159232,Other,College Applied Research +159222,Other,College Applied Research +159220,Other,College Applied Research +159217,Other,College Applied Research +145945,Other,College Applied Research +138719,Other,College Applied Research +162198,Other,Infrastructure +162188,Other,Infrastructure +93547,Other,Infrastructure +93544,Other,Infrastructure +93542,Other,Infrastructure +93539,Other,Infrastructure +93537,Other,Infrastructure +159234,Other,Infrastructure +159222,Other,Infrastructure +154026,Other,Infrastructure +135932,Other,Infrastructure +133894,Other,Infrastructure +132528,Other,Infrastructure +132527,Other,Infrastructure +126518,Other,Infrastructure +126456,Other,Infrastructure +126414,Other,Infrastructure +94454,Other,Infrastructure +93559,Other,Infrastructure +93552,Other,Infrastructure +162211,Other,Infrastructure +126456,Other,Small and Medium Sized Businesses +162211,Other,Small and Medium Sized Businesses +135932,Other,Small and Medium Sized Businesses +133854,Other,Small and Medium Sized Businesses +132528,Other,Small and Medium Sized Businesses +138715,Other,Student Mobility +132717,Other,Student Mobility +126455,Other,Student Mobility +156919,Other,Student Mobility +156918,Other,Student Mobility +156917,Other,Student Mobility +425781,Consumer Issues,Consumer Issues +513592,Consumer Issues,Consumer Issues +221847,Consumer Issues,Consumer Issues +196069,Consumer Issues,Consumer Issues +306791,Consumer Issues,Consumer Issues +306790,Consumer Issues,Consumer Issues +306789,Consumer Issues,Consumer Issues +284489,Consumer Issues,Consumer Issues +273139,Consumer Issues,Consumer Issues +268652,Consumer Issues,Consumer Issues +260270,Consumer Issues,Consumer Issues +260269,Consumer Issues,Consumer Issues +256791,Consumer Issues,Consumer Issues +256789,Consumer Issues,Consumer Issues +252189,Consumer Issues,Consumer Issues +249691,Consumer Issues,Consumer Issues +249681,Consumer Issues,Consumer Issues +249668,Consumer Issues,Consumer Issues +246849,Consumer Issues,Consumer Issues +242492,Consumer Issues,Consumer Issues +242490,Consumer Issues,Consumer Issues +238689,Consumer Issues,Consumer Issues +230129,Consumer Issues,Consumer Issues +229071,Consumer Issues,Consumer Issues +229070,Consumer Issues,Consumer Issues +227953,Consumer Issues,Consumer Issues +227888,Consumer Issues,Consumer Issues +387025,Consumer Issues,Consumer Issues +355756,Consumer Issues,Consumer Issues +355755,Consumer Issues,Consumer Issues +313531,Consumer Issues,Consumer Issues +312095,Consumer Issues,Consumer Issues +310615,Consumer Issues,Consumer Issues +310614,Consumer Issues,Consumer Issues +306810,Consumer Issues,Consumer Issues +306809,Consumer Issues,Consumer Issues +306795,Consumer Issues,Consumer Issues +306794,Consumer Issues,Consumer Issues +306793,Consumer Issues,Consumer Issues +306792,Consumer Issues,Consumer Issues +475713,Consumer Issues,Consumer Issues +459415,Consumer Issues,Consumer Issues +458217,Consumer Issues,Consumer Issues +440999,Consumer Issues,Consumer Issues +434316,Consumer Issues,Consumer Issues +432461,Consumer Issues,Consumer Issues +432458,Consumer Issues,Consumer Issues +501957,Health,Health +501955,Health,Health +183147,Health,Health +183146,Health,Health +160579,Health,Health +273139,Health,Health +268652,Health,Health +249668,Health,Health +246853,Health,Health +246852,Health,Health +246850,Health,Health +246849,Health,Health +242789,Health,Health +242490,Health,Health +229071,Health,Health +372146,Health,Health +372130,Health,Health +368825,Health,Health +368824,Health,Health +368823,Health,Health +368817,Health,Health +368814,Health,Health +368812,Health,Health +368811,Health,Health +368810,Health,Health +368807,Health,Health +368804,Health,Health +368797,Health,Health +365031,Health,Health +355752,Health,Health +355751,Health,Health +355749,Health,Health +355748,Health,Health +313531,Health,Health +299710,Health,Health +284489,Health,Health +475713,Health,Health +475545,Health,Health +475543,Health,Health +461081,Health,Health +461080,Health,Health +461079,Health,Health +459415,Health,Health +458217,Health,Health +457568,Health,Health +457565,Health,Health +454759,Health,Health +454704,Health,Health +454702,Health,Health +454701,Health,Health +454699,Health,Health +441002,Health,Health +440999,Health,Health +440991,Health,Health +436666,Health,Health +436665,Health,Health +436664,Health,Health +436663,Health,Health +434316,Health,Health +432461,Health,Health +432455,Health,Health +430002,Health,Health +427956,Health,Health +425781,Health,Health +424254,Health,Health +416478,Health,Health +415935,Health,Health +409634,Health,Health +400187,Health,Health +398437,Health,Health +393347,Health,Health +393346,Health,Health +393345,Health,Health +393344,Health,Health +387025,Health,Health +384886,Health,Health +383593,Health,Health +382469,Health,Health +380907,Health,Health +378824,Health,Health +377030,Health,Health +377021,Health,Health +377011,Health,Health +377008,Health,Health +377001,Health,Health +544276,Health,Health +541307,Health,Health +541306,Health,Health +535608,Health,Health +535572,Health,Health +532055,Health,Health +528791,Health,Health +526290,Health,Health +526285,Health,Health +519078,Health,Health +519077,Health,Health +519076,Health,Health +519075,Health,Health +516587,Health,Health +513592,Health,Health +513316,Health,Health +513314,Health,Health +511007,Health,Health +511001,Health,Health +510779,Health,Health +510769,Health,Health +508750,Health,Health +501969,Health,Health +501967,Health,Health +501966,Health,Health +501965,Health,Health +501963,Health,Health +501960,Health,Health +475543,Industry,Industry +461081,Industry,Industry +192455,Industry,Industry +192454,Industry,Industry +192453,Industry,Industry +192452,Industry,Industry +192451,Industry,Industry +192450,Industry,Industry +192449,Industry,Industry +192448,Industry,Industry +192447,Industry,Industry +192446,Industry,Industry +192445,Industry,Industry +192444,Industry,Industry +192443,Industry,Industry +192403,Industry,Industry +192400,Industry,Industry +192395,Industry,Industry +192393,Industry,Industry +192391,Industry,Industry +192390,Industry,Industry +192389,Industry,Industry +192388,Industry,Industry +192387,Industry,Industry +192386,Industry,Industry +192385,Industry,Industry +166784,Industry,Industry +368825,Industry,Industry +368811,Industry,Industry +353147,Industry,Industry +353146,Industry,Industry +352588,Industry,Industry +352548,Industry,Industry +313531,Industry,Industry +312095,Industry,Industry +299709,Industry,Industry +270131,Industry,Industry +260270,Industry,Industry +260269,Industry,Industry +256789,Industry,Industry +252189,Industry,Industry +249691,Industry,Industry +242789,Industry,Industry +242492,Industry,Industry +242490,Industry,Industry +230129,Industry,Industry +221847,Industry,Industry +192461,Industry,Industry +192460,Industry,Industry +192459,Industry,Industry +192458,Industry,Industry +192457,Industry,Industry +192456,Industry,Industry +461080,Industry,Industry +457568,Industry,Industry +457565,Industry,Industry +440999,Industry,Industry +440997,Industry,Industry +440995,Industry,Industry +440992,Industry,Industry +440991,Industry,Industry +436666,Industry,Industry +436664,Industry,Industry +436663,Industry,Industry +432458,Industry,Industry +544276,Industry,Industry +541310,Industry,Industry +541306,Industry,Industry +541305,Industry,Industry +539284,Industry,Industry +532055,Industry,Industry +531422,Industry,Industry +531421,Industry,Industry +528789,Industry,Industry +526317,Industry,Industry +526309,Industry,Industry +511007,Industry,Industry +511001,Industry,Industry +510781,Industry,Industry +510779,Industry,Industry +510777,Industry,Industry +510769,Industry,Industry +501969,Industry,Industry +501967,Industry,Industry +501965,Industry,Industry +501957,Industry,Industry +501955,Industry,Industry +475713,Industry,Industry +85277,Other,International Academic Mobility +513493,Constitutional Issues,Constitutional Issues +500968,Constitutional Issues,Constitutional Issues +151698,Financial Institutions,Financial Institutions +499811,Immigration,Immigration +451765,Immigration,Immigration +175907,Immigration,Immigration +154642,Immigration,Immigration +151699,Immigration,Immigration +427656,Immigration,Immigration +412326,Immigration,Immigration +412324,Immigration,Immigration +412321,Immigration,Immigration +533719,Justice and Law Enforcement,Justice and Law Enforcement +518711,Justice and Law Enforcement,Justice and Law Enforcement +175906,Justice and Law Enforcement,Justice and Law Enforcement +167341,Justice and Law Enforcement,Justice and Law Enforcement +317909,Justice and Law Enforcement,Justice and Law Enforcement +314179,Justice and Law Enforcement,Justice and Law Enforcement +314178,Justice and Law Enforcement,Justice and Law Enforcement +314177,Justice and Law Enforcement,Justice and Law Enforcement +276717,Justice and Law Enforcement,Justice and Law Enforcement +276716,Justice and Law Enforcement,Justice and Law Enforcement +254650,Justice and Law Enforcement,Justice and Law Enforcement +221527,Justice and Law Enforcement,Justice and Law Enforcement +219428,Justice and Law Enforcement,Justice and Law Enforcement +207645,Justice and Law Enforcement,Justice and Law Enforcement +207644,Justice and Law Enforcement,Justice and Law Enforcement +207643,Justice and Law Enforcement,Justice and Law Enforcement +200463,Justice and Law Enforcement,Justice and Law Enforcement +175909,Justice and Law Enforcement,Justice and Law Enforcement +175908,Justice and Law Enforcement,Justice and Law Enforcement +393777,Justice and Law Enforcement,Justice and Law Enforcement +393776,Justice and Law Enforcement,Justice and Law Enforcement +393775,Justice and Law Enforcement,Justice and Law Enforcement +393773,Justice and Law Enforcement,Justice and Law Enforcement +393772,Justice and Law Enforcement,Justice and Law Enforcement +393770,Justice and Law Enforcement,Justice and Law Enforcement +393768,Justice and Law Enforcement,Justice and Law Enforcement +393766,Justice and Law Enforcement,Justice and Law Enforcement +393765,Justice and Law Enforcement,Justice and Law Enforcement +393764,Justice and Law Enforcement,Justice and Law Enforcement +393763,Justice and Law Enforcement,Justice and Law Enforcement +393762,Justice and Law Enforcement,Justice and Law Enforcement +393761,Justice and Law Enforcement,Justice and Law Enforcement +392992,Justice and Law Enforcement,Justice and Law Enforcement +392991,Justice and Law Enforcement,Justice and Law Enforcement +392990,Justice and Law Enforcement,Justice and Law Enforcement +392989,Justice and Law Enforcement,Justice and Law Enforcement +392988,Justice and Law Enforcement,Justice and Law Enforcement +392986,Justice and Law Enforcement,Justice and Law Enforcement +392985,Justice and Law Enforcement,Justice and Law Enforcement +389372,Justice and Law Enforcement,Justice and Law Enforcement +389370,Justice and Law Enforcement,Justice and Law Enforcement +387457,Justice and Law Enforcement,Justice and Law Enforcement +387454,Justice and Law Enforcement,Justice and Law Enforcement +387450,Justice and Law Enforcement,Justice and Law Enforcement +380402,Justice and Law Enforcement,Justice and Law Enforcement +380401,Justice and Law Enforcement,Justice and Law Enforcement +380400,Justice and Law Enforcement,Justice and Law Enforcement +373684,Justice and Law Enforcement,Justice and Law Enforcement +370047,Justice and Law Enforcement,Justice and Law Enforcement +370046,Justice and Law Enforcement,Justice and Law Enforcement +370045,Justice and Law Enforcement,Justice and Law Enforcement +370044,Justice and Law Enforcement,Justice and Law Enforcement +370043,Justice and Law Enforcement,Justice and Law Enforcement +355237,Justice and Law Enforcement,Justice and Law Enforcement +355235,Justice and Law Enforcement,Justice and Law Enforcement +355234,Justice and Law Enforcement,Justice and Law Enforcement +355229,Justice and Law Enforcement,Justice and Law Enforcement +355228,Justice and Law Enforcement,Justice and Law Enforcement +355227,Justice and Law Enforcement,Justice and Law Enforcement +355226,Justice and Law Enforcement,Justice and Law Enforcement +355225,Justice and Law Enforcement,Justice and Law Enforcement +355224,Justice and Law Enforcement,Justice and Law Enforcement +349437,Justice and Law Enforcement,Justice and Law Enforcement +349436,Justice and Law Enforcement,Justice and Law Enforcement +349435,Justice and Law Enforcement,Justice and Law Enforcement +349434,Justice and Law Enforcement,Justice and Law Enforcement +515759,Justice and Law Enforcement,Justice and Law Enforcement +513493,Justice and Law Enforcement,Justice and Law Enforcement +510037,Justice and Law Enforcement,Justice and Law Enforcement +500968,Justice and Law Enforcement,Justice and Law Enforcement +500966,Justice and Law Enforcement,Justice and Law Enforcement +500965,Justice and Law Enforcement,Justice and Law Enforcement +499819,Justice and Law Enforcement,Justice and Law Enforcement +499811,Justice and Law Enforcement,Justice and Law Enforcement +484795,Justice and Law Enforcement,Justice and Law Enforcement +466763,Justice and Law Enforcement,Justice and Law Enforcement +463222,Justice and Law Enforcement,Justice and Law Enforcement +463221,Justice and Law Enforcement,Justice and Law Enforcement +463220,Justice and Law Enforcement,Justice and Law Enforcement +463219,Justice and Law Enforcement,Justice and Law Enforcement +451765,Justice and Law Enforcement,Justice and Law Enforcement +451105,Justice and Law Enforcement,Justice and Law Enforcement +451104,Justice and Law Enforcement,Justice and Law Enforcement +448557,Justice and Law Enforcement,Justice and Law Enforcement +448556,Justice and Law Enforcement,Justice and Law Enforcement +430507,Justice and Law Enforcement,Justice and Law Enforcement +427657,Justice and Law Enforcement,Justice and Law Enforcement +417809,Justice and Law Enforcement,Justice and Law Enforcement +417807,Justice and Law Enforcement,Justice and Law Enforcement +417806,Justice and Law Enforcement,Justice and Law Enforcement +417804,Justice and Law Enforcement,Justice and Law Enforcement +417554,Justice and Law Enforcement,Justice and Law Enforcement +417553,Justice and Law Enforcement,Justice and Law Enforcement +412327,Justice and Law Enforcement,Justice and Law Enforcement +412326,Justice and Law Enforcement,Justice and Law Enforcement +412325,Justice and Law Enforcement,Justice and Law Enforcement +412323,Justice and Law Enforcement,Justice and Law Enforcement +412322,Justice and Law Enforcement,Justice and Law Enforcement +412321,Justice and Law Enforcement,Justice and Law Enforcement +412318,Justice and Law Enforcement,Justice and Law Enforcement +405013,Justice and Law Enforcement,Justice and Law Enforcement +405012,Justice and Law Enforcement,Justice and Law Enforcement +395469,Justice and Law Enforcement,Justice and Law Enforcement +393779,Justice and Law Enforcement,Justice and Law Enforcement +393778,Justice and Law Enforcement,Justice and Law Enforcement +542517,Justice and Law Enforcement,Justice and Law Enforcement +90544,Immigration,Immigration +82838,Immigration,Immigration +143814,Justice and Law Enforcement,Justice and Law Enforcement +432146,Labour,Labour +431502,Labour,Labour +301954,Labour,Labour +269691,Labour,Labour +521112,Labour,Labour +520754,Labour,Labour +514936,Labour,Labour +487414,Labour,Labour +93669,Other,Funding for young entrepreneurs nationally. +109819,Other,Pipelines +97821,Other,Pipelines +88203,Other,Pipelines +85602,Other,Pipelines +85600,Other,Pipelines +85599,Other,Pipelines +85595,Other,Pipelines +85594,Other,Pipelines +83089,Other,Pipelines +83086,Other,Pipelines +83084,Other,Pipelines +83083,Other,Pipelines +83078,Other,Pipelines +77801,Other,Pipelines +152309,Other,Pipelines +143197,Other,Pipelines +135987,Other,Pipelines +135985,Other,Pipelines +129545,Other,Pipelines +129544,Other,Pipelines +129542,Other,Pipelines +117711,Other,Pipelines +135986,Other,Regulation +129545,Other,Regulation +113986,Other,Regulation +106495,Other,Regulation +106494,Other,Regulation +93832,Other,Regulation +85594,Other,Regulation +77801,Other,Regulation +152309,Other,Regulation +151221,Other,Regulation +151218,Other,Regulation +139676,Other,Regulation +340069,Agriculture,Agriculture +312035,Agriculture,Agriculture +77802,Agriculture,Agriculture +252491,Agriculture,Agriculture +195795,Agriculture,Agriculture +195794,Agriculture,Agriculture +312032,Agriculture,Agriculture +311772,Agriculture,Agriculture +80794,Agriculture,Agriculture +296369,Agriculture,Agriculture +252489,Agriculture,Agriculture +195790,Agriculture,Agriculture +195789,Agriculture,Agriculture +77815,Other,Framework for regulating air emissions +111037,Government Procurement,Government Procurement +84054,Government Procurement,Government Procurement +158049,Government Procurement,Government Procurement +152774,Government Procurement,Government Procurement +122594,Government Procurement,Government Procurement +111147,Government Procurement,Government Procurement +147397,Other,Information Technology Security +142555,Other,Information Technology Security +122595,Other,Information Technology Security +111038,Other,Information Technology Security +111034,Other,Information Technology Security +84054,Other,Information Technology Security +91794,Other,Critical Infrastructure +156916,Other,Essential Skills +156915,Other,Essential Skills +148220,Other,Essential Skills +126517,Other,Essential Skills +126454,Other,Essential Skills +162211,Other,Essential Skills +162209,Other,Essential Skills +162208,Other,Essential Skills +162200,Other,Essential Skills +159233,Other,Essential Skills +159232,Other,Essential Skills +159221,Other,Essential Skills +156919,Other,Essential Skills +156918,Other,Essential Skills +420334,Financial Institutions,Financial Institutions +414099,Financial Institutions,Financial Institutions +137894,Financial Institutions,Financial Institutions +320549,Financial Institutions,Financial Institutions +311330,Financial Institutions,Financial Institutions +408517,Financial Institutions,Financial Institutions +399403,Financial Institutions,Financial Institutions +395173,Financial Institutions,Financial Institutions +328014,Financial Institutions,Financial Institutions +424982,Financial Institutions,Financial Institutions +311409,Taxation and Finance,Taxation and Finance +311330,Taxation and Finance,Taxation and Finance +92074,Taxation and Finance,Taxation and Finance +458544,Financial Institutions,Financial Institutions +456300,Financial Institutions,Financial Institutions +137897,Financial Institutions,Financial Institutions +259589,Financial Institutions,Financial Institutions +410594,Financial Institutions,Financial Institutions +151340,Taxation and Finance,Taxation and Finance +340426,Taxation and Finance,Taxation and Finance +151338,Taxation and Finance,Taxation and Finance +80839,Forestry,Forestry +80697,Taxation and Finance,Taxation and Finance +80696,Taxation and Finance,Taxation and Finance +88696,Taxation and Finance,Taxation and Finance +85937,Taxation and Finance,Taxation and Finance +88594,Other,Lung Health Framework +78054,Other,Lung Health Framework +98037,Other,Lung Health Framework +157469,Agriculture,Agriculture +311349,Agriculture,Agriculture +104734,Agriculture,Agriculture +82842,Agriculture,Agriculture +82836,Agriculture,Agriculture +82815,Agriculture,Agriculture +229711,Agriculture,Agriculture +486598,Agriculture,Agriculture +478261,Agriculture,Agriculture +81242,Agriculture,Agriculture +81240,Agriculture,Agriculture +81238,Agriculture,Agriculture +81237,Agriculture,Agriculture +81236,Agriculture,Agriculture +81235,Agriculture,Agriculture +78135,Agriculture,Agriculture +78134,Agriculture,Agriculture +97015,Agriculture,Agriculture +93923,Agriculture,Agriculture +90776,Agriculture,Agriculture +88146,Agriculture,Agriculture +88144,Agriculture,Agriculture +85294,Agriculture,Agriculture +85292,Agriculture,Agriculture +85289,Agriculture,Agriculture +82935,Agriculture,Agriculture +82934,Agriculture,Agriculture +82927,Agriculture,Agriculture +82923,Agriculture,Agriculture +82921,Agriculture,Agriculture +82903,Agriculture,Agriculture +173289,Agriculture,Agriculture +170511,Agriculture,Agriculture +170510,Agriculture,Agriculture +168062,Agriculture,Agriculture +150193,Agriculture,Agriculture +150192,Agriculture,Agriculture +150190,Agriculture,Agriculture +150188,Agriculture,Agriculture +150184,Agriculture,Agriculture +150175,Agriculture,Agriculture +148315,Agriculture,Agriculture +134935,Agriculture,Agriculture +129360,Agriculture,Agriculture +129256,Agriculture,Agriculture +129255,Agriculture,Agriculture +129254,Agriculture,Agriculture +124263,Agriculture,Agriculture +124261,Agriculture,Agriculture +124260,Agriculture,Agriculture +124257,Agriculture,Agriculture +386124,Agriculture,Agriculture +386123,Agriculture,Agriculture +377390,Agriculture,Agriculture +374397,Agriculture,Agriculture +374393,Agriculture,Agriculture +374389,Agriculture,Agriculture +374382,Agriculture,Agriculture +367805,Agriculture,Agriculture +362483,Agriculture,Agriculture +354361,Agriculture,Agriculture +351160,Agriculture,Agriculture +325369,Agriculture,Agriculture +322196,Agriculture,Agriculture +322194,Agriculture,Agriculture +316109,Agriculture,Agriculture +304389,Agriculture,Agriculture +304381,Agriculture,Agriculture +304379,Agriculture,Agriculture +304371,Agriculture,Agriculture +269834,Agriculture,Agriculture +269829,Agriculture,Agriculture +264081,Agriculture,Agriculture +264072,Agriculture,Agriculture +259636,Agriculture,Agriculture +259634,Agriculture,Agriculture +259630,Agriculture,Agriculture +259629,Agriculture,Agriculture +251313,Agriculture,Agriculture +240931,Agriculture,Agriculture +240930,Agriculture,Agriculture +240929,Agriculture,Agriculture +226829,Agriculture,Agriculture +226828,Agriculture,Agriculture +226827,Agriculture,Agriculture +223048,Agriculture,Agriculture +223047,Agriculture,Agriculture +203049,Agriculture,Agriculture +203048,Agriculture,Agriculture +203047,Agriculture,Agriculture +193623,Agriculture,Agriculture +189803,Agriculture,Agriculture +468336,Agriculture,Agriculture +468332,Agriculture,Agriculture +468329,Agriculture,Agriculture +468326,Agriculture,Agriculture +468324,Agriculture,Agriculture +468321,Agriculture,Agriculture +468318,Agriculture,Agriculture +451618,Agriculture,Agriculture +450518,Agriculture,Agriculture +447872,Agriculture,Agriculture +447871,Agriculture,Agriculture +447870,Agriculture,Agriculture +443475,Agriculture,Agriculture +439391,Agriculture,Agriculture +435468,Agriculture,Agriculture +435467,Agriculture,Agriculture +430477,Agriculture,Agriculture +396035,Agriculture,Agriculture +396034,Agriculture,Agriculture +396033,Agriculture,Agriculture +391752,Agriculture,Agriculture +541863,Agriculture,Agriculture +541858,Agriculture,Agriculture +519346,Agriculture,Agriculture +508150,Agriculture,Agriculture +508143,Agriculture,Agriculture +502791,Agriculture,Agriculture +502790,Agriculture,Agriculture +493789,Agriculture,Agriculture +114084,Consumer Issues,Consumer Issues +458910,Consumer Issues,Consumer Issues +82935,Consumer Issues,Consumer Issues +82934,Consumer Issues,Consumer Issues +82927,Consumer Issues,Consumer Issues +82923,Consumer Issues,Consumer Issues +82921,Consumer Issues,Consumer Issues +78136,Consumer Issues,Consumer Issues +189802,Consumer Issues,Consumer Issues +189801,Consumer Issues,Consumer Issues +170511,Consumer Issues,Consumer Issues +168066,Consumer Issues,Consumer Issues +150190,Consumer Issues,Consumer Issues +150188,Consumer Issues,Consumer Issues +129256,Consumer Issues,Consumer Issues +129254,Consumer Issues,Consumer Issues +124263,Consumer Issues,Consumer Issues +124258,Consumer Issues,Consumer Issues +124255,Consumer Issues,Consumer Issues +114095,Consumer Issues,Consumer Issues +304374,Energy,Energy +269835,Energy,Energy +200228,Energy,Energy +396032,Health,Health +396029,Health,Health +88144,Health,Health +85294,Health,Health +85292,Health,Health +85289,Health,Health +82931,Health,Health +81242,Health,Health +81241,Health,Health +81240,Health,Health +81238,Health,Health +81237,Health,Health +81236,Health,Health +81235,Health,Health +78136,Health,Health +150193,Health,Health +150191,Health,Health +150190,Health,Health +150183,Health,Health +150179,Health,Health +150176,Health,Health +150175,Health,Health +150173,Health,Health +150171,Health,Health +150170,Health,Health +148314,Health,Health +148242,Health,Health +129541,Health,Health +129540,Health,Health +129539,Health,Health +129361,Health,Health +124258,Health,Health +117762,Health,Health +117761,Health,Health +100694,Health,Health +97014,Health,Health +93923,Health,Health +88146,Health,Health +240930,Health,Health +226829,Health,Health +226828,Health,Health +226827,Health,Health +223048,Health,Health +203048,Health,Health +193621,Health,Health +193618,Health,Health +189803,Health,Health +189802,Health,Health +189801,Health,Health +168066,Health,Health +159591,Health,Health +159586,Health,Health +155127,Health,Health +153438,Health,Health +153437,Health,Health +153433,Health,Health +153432,Health,Health +153431,Health,Health +153428,Health,Health +387606,Health,Health +374397,Health,Health +374391,Health,Health +365009,Health,Health +356120,Health,Health +354361,Health,Health +340767,Health,Health +325369,Health,Health +304381,Health,Health +269834,Health,Health +269829,Health,Health +259636,Health,Health +259634,Health,Health +259631,Health,Health +259629,Health,Health +511601,Health,Health +502791,Health,Health +472638,Health,Health +472637,Health,Health +443474,Health,Health +421975,Health,Health +421936,Health,Health +410014,Health,Health +410013,Health,Health +407808,Health,Health +407805,Health,Health +407801,Health,Health +327917,Immigration,Immigration +327916,Immigration,Immigration +278170,Immigration,Immigration +264084,Immigration,Immigration +264075,Immigration,Immigration +259636,Immigration,Immigration +351160,Immigration,Immigration +349227,Immigration,Immigration +349218,Immigration,Immigration +347557,Immigration,Immigration +338468,Immigration,Immigration +335493,Immigration,Immigration +331496,Immigration,Immigration +330334,Immigration,Immigration +330333,Immigration,Immigration +327924,Immigration,Immigration +327923,Immigration,Immigration +327922,Immigration,Immigration +327921,Immigration,Immigration +327920,Immigration,Immigration +327919,Immigration,Immigration +412945,International Trade,International Trade +412934,International Trade,International Trade +134938,International Trade,International Trade +129360,International Trade,International Trade +82933,International Trade,International Trade +264072,International Trade,International Trade +264069,International Trade,International Trade +259630,International Trade,International Trade +245178,International Trade,International Trade +226829,International Trade,International Trade +211990,International Trade,International Trade +211989,International Trade,International Trade +211987,International Trade,International Trade +211968,International Trade,International Trade +207090,International Trade,International Trade +207089,International Trade,International Trade +203049,International Trade,International Trade +203047,International Trade,International Trade +200223,International Trade,International Trade +155127,International Trade,International Trade +150193,International Trade,International Trade +150175,International Trade,International Trade +410017,International Trade,International Trade +410016,International Trade,International Trade +407813,International Trade,International Trade +396031,International Trade,International Trade +396030,International Trade,International Trade +377390,International Trade,International Trade +370507,International Trade,International Trade +356120,International Trade,International Trade +347557,International Trade,International Trade +322194,International Trade,International Trade +322193,International Trade,International Trade +316110,International Trade,International Trade +278169,International Trade,International Trade +269829,International Trade,International Trade +264081,International Trade,International Trade +264079,International Trade,International Trade +264077,International Trade,International Trade +264075,International Trade,International Trade +483879,International Trade,International Trade +483878,International Trade,International Trade +483877,International Trade,International Trade +481569,International Trade,International Trade +481568,International Trade,International Trade +459672,International Trade,International Trade +478257,Taxation and Finance,Taxation and Finance +172811,Energy,Energy +167801,Energy,Energy +83954,Energy,Energy +83815,Energy,Energy +83814,Energy,Energy +80957,Energy,Energy +80950,Energy,Energy +78141,Energy,Energy +78140,Energy,Energy +78138,Energy,Energy +78137,Energy,Energy +112541,Energy,Energy +112540,Energy,Energy +112538,Energy,Energy +112537,Energy,Energy +112536,Energy,Energy +112516,Energy,Energy +112515,Energy,Energy +112514,Energy,Energy +112499,Energy,Energy +87822,Energy,Energy +87821,Energy,Energy +167800,Energy,Energy +167799,Energy,Energy +156147,Energy,Energy +156146,Energy,Energy +147256,Energy,Energy +140683,Energy,Energy +140682,Energy,Energy +140681,Energy,Energy +140680,Energy,Energy +140679,Energy,Energy +140678,Energy,Energy +140677,Energy,Energy +140675,Energy,Energy +140674,Energy,Energy +135635,Energy,Energy +124929,Energy,Energy +117565,Energy,Energy +117564,Energy,Energy +117561,Energy,Energy +117559,Energy,Energy +117558,Energy,Energy +117555,Energy,Energy +252449,Energy,Energy +210589,Energy,Energy +210588,Energy,Energy +210587,Energy,Energy +207767,Energy,Energy +188458,Energy,Energy +188457,Energy,Energy +188456,Energy,Energy +188455,Energy,Energy +188454,Energy,Energy +188453,Energy,Energy +188452,Energy,Energy +188451,Energy,Energy +188450,Energy,Energy +188449,Energy,Energy +188141,Energy,Energy +179524,Energy,Energy +179504,Energy,Energy +179484,Energy,Energy +179464,Energy,Energy +179444,Energy,Energy +179424,Energy,Energy +179404,Energy,Energy +172813,Energy,Energy +135635,Regional Development,Regional Development +252449,Regional Development,Regional Development +83954,Regional Development,Regional Development +83834,Regional Development,Regional Development +83815,Regional Development,Regional Development +83814,Regional Development,Regional Development +80957,Regional Development,Regional Development +80950,Regional Development,Regional Development +78141,Regional Development,Regional Development +78140,Regional Development,Regional Development +78139,Regional Development,Regional Development +78138,Regional Development,Regional Development +78137,Regional Development,Regional Development +124929,Regional Development,Regional Development +117565,Regional Development,Regional Development +117564,Regional Development,Regional Development +117561,Regional Development,Regional Development +117559,Regional Development,Regional Development +117558,Regional Development,Regional Development +117555,Regional Development,Regional Development +112541,Regional Development,Regional Development +112540,Regional Development,Regional Development +112539,Regional Development,Regional Development +112538,Regional Development,Regional Development +112537,Regional Development,Regional Development +112536,Regional Development,Regional Development +112535,Regional Development,Regional Development +112534,Regional Development,Regional Development +112516,Regional Development,Regional Development +112515,Regional Development,Regional Development +112514,Regional Development,Regional Development +112499,Regional Development,Regional Development +87822,Regional Development,Regional Development +87821,Regional Development,Regional Development +210589,Regional Development,Regional Development +210588,Regional Development,Regional Development +210587,Regional Development,Regional Development +207767,Regional Development,Regional Development +188458,Regional Development,Regional Development +188457,Regional Development,Regional Development +188456,Regional Development,Regional Development +188455,Regional Development,Regional Development +188454,Regional Development,Regional Development +188453,Regional Development,Regional Development +188452,Regional Development,Regional Development +188451,Regional Development,Regional Development +188450,Regional Development,Regional Development +188449,Regional Development,Regional Development +188141,Regional Development,Regional Development +179524,Regional Development,Regional Development +179504,Regional Development,Regional Development +179484,Regional Development,Regional Development +179464,Regional Development,Regional Development +179444,Regional Development,Regional Development +179424,Regional Development,Regional Development +179404,Regional Development,Regional Development +172813,Regional Development,Regional Development +172812,Regional Development,Regional Development +172811,Regional Development,Regional Development +167801,Regional Development,Regional Development +167800,Regional Development,Regional Development +167799,Regional Development,Regional Development +156147,Regional Development,Regional Development +156146,Regional Development,Regional Development +147256,Regional Development,Regional Development +140683,Regional Development,Regional Development +140682,Regional Development,Regional Development +140681,Regional Development,Regional Development +140680,Regional Development,Regional Development +140679,Regional Development,Regional Development +140678,Regional Development,Regional Development +140677,Regional Development,Regional Development +140675,Regional Development,Regional Development +85954,Agriculture,Agriculture +78174,Agriculture,Agriculture +158854,Health,Health +158854,Industry,Industry +151506,Industry,Industry +191354,Industry,Industry +191353,Industry,Industry +191352,Industry,Industry +191351,Industry,Industry +191350,Industry,Industry +191348,Industry,Industry +191346,Industry,Industry +191345,Industry,Industry +79754,Other,Safey inspections +153571,Taxation and Finance,Taxation and Finance +153569,Taxation and Finance,Taxation and Finance +146234,Health,Health +109648,Health,Health +109644,Health,Health +109389,Health,Health +97660,Health,Health +143334,Transportation,Transportation +138715,Other,international Education +126455,Other,international Education +162287,Other,international Education +159214,Other,international Education +498648,Industry,Industry +459689,Industry,Industry +94045,Industry,Industry +94044,Industry,Industry +94042,Industry,Industry +94039,Industry,Industry +82877,Industry,Industry +78378,Industry,Industry +78377,Industry,Industry +78376,Industry,Industry +164244,Industry,Industry +154059,Industry,Industry +350467,Industry,Industry +350466,Industry,Industry +350465,Industry,Industry +350460,Industry,Industry +313262,Industry,Industry +458311,Industry,Industry +456060,Industry,Industry +437064,Industry,Industry +399543,Industry,Industry +399540,Industry,Industry +188049,Education,Education +197589,Employment and Training,Employment and Training +197588,Employment and Training,Employment and Training +156726,Employment and Training,Employment and Training +156725,Employment and Training,Employment and Training +156724,Employment and Training,Employment and Training +79794,Employment and Training,Employment and Training +79434,Employment and Training,Employment and Training +79114,Employment and Training,Employment and Training +192890,Employment and Training,Employment and Training +192804,Employment and Training,Employment and Training +192766,Employment and Training,Employment and Training +189647,Employment and Training,Employment and Training +189645,Employment and Training,Employment and Training +189643,Employment and Training,Employment and Training +174844,Employment and Training,Employment and Training +174840,Employment and Training,Employment and Training +174267,Employment and Training,Employment and Training +165369,Employment and Training,Employment and Training +164048,Employment and Training,Employment and Training +161816,Employment and Training,Employment and Training +161815,Employment and Training,Employment and Training +161814,Employment and Training,Employment and Training +161813,Employment and Training,Employment and Training +161812,Employment and Training,Employment and Training +161809,Employment and Training,Employment and Training +331771,Employment and Training,Employment and Training +331770,Employment and Training,Employment and Training +331769,Employment and Training,Employment and Training +319235,Employment and Training,Employment and Training +319230,Employment and Training,Employment and Training +276655,Employment and Training,Employment and Training +273142,Employment and Training,Employment and Training +273140,Employment and Training,Employment and Training +273134,Employment and Training,Employment and Training +273126,Employment and Training,Employment and Training +273119,Employment and Training,Employment and Training +250273,Employment and Training,Employment and Training +250271,Employment and Training,Employment and Training +229830,Employment and Training,Employment and Training +227370,Employment and Training,Employment and Training +223104,Employment and Training,Employment and Training +223097,Employment and Training,Employment and Training +223089,Employment and Training,Employment and Training +219807,Employment and Training,Employment and Training +216009,Employment and Training,Employment and Training +211871,Employment and Training,Employment and Training +211855,Employment and Training,Employment and Training +77296,Other,Veterinary accreditation +77296,Other,Veterinary accreditation and Canadian Veterinary Reserve +79654,Other,Air navigation services in support of 2010 Olympics +85758,Other,Health +499619,Consumer Issues,Consumer Issues +499616,Financial Institutions,Financial Institutions +185324,Government Procurement,Government Procurement +207227,Industry,Industry +200227,Intellectual Property,Intellectual Property +73734,Other,Communications Approach on Chemical Management Plan (CEPA) +77356,Other,WTO +161744,International Trade,International Trade +120955,Environment,Environnement +77360,Other,Procedural Issues Pertaining to Group Licence Renewals +77364,Government Procurement,Government Procurement +77369,Other,Timing of approval of Corus Entertainment's application for authority to acquire Canadian Learning Television from CTVglobemedia +77375,International Trade,International Trade +77375,Other,Natural Resources +142575,Other,Competition +76234,Other,CWB Corporate Plan approval status +77380,Other,Lawful interception of telecommunications +199740,Infrastructure,Infrastructure +96899,Other,Natural Resources +77357,Other,CWB director election regulations changes - third party advertising +77355,Other,CWB investment in variety distribution rights +77355,Other,Implications of CWB mandate changes +77395,Other,Mackenzie Gas Project +117002,Other,Mackenzie Gas Project +87820,Other,Corporate governance +151932,Other,Privacy +77454,Industry,Industry +77459,Other,Announcement of XWave's DSA acquisition +77461,Other,Rail service review +77458,Other,Canada Newfoundland Offshore Accord Act with respect to exploration license terms +472080,Agriculture,Agriculture +107496,Other,Regulation of animal feed industry +77462,Other,1. Customs Tariff Act with respect to import duties on foreign flagged mobile offshore drilling units. +77462,Other,2. Coasting Trade Act with respect to exemptions for mobile offshore drilling units and seismic vessels. +77462,Other,3. Climate Change Regulatory Framework +77465,Other,1. Climate Change Regulatory Framework with respect to C02 sequestration plans and objectives. +77465,Other,2. Customs Tariff Act with respect to import duties on foreign flagged mobile offshore drilling units. +77472,Other,Space Program and Policies in Canada +77474,Other,Space Program and Policies in Canada +77476,Other,Space Industry and Hawkins Panel +109237,Other,Copyright +100973,Other,Foreign Affairs +77495,Other,Foreign Affairs +77502,Intellectual Property,Intellectual Property +77514,Other,Space Program and Policies in Canada +77515,Other,Space Program and Policies in Canada +537775,Environment,Environment +77535,Other,Environment +77620,Taxation and Finance,Taxation and Finance +77636,Other,Tobacco packaging and taxation +77536,Other,Immigration +77475,Other,Governance of Canada's Airports +156917,Other,Advanced Skills Gaps +135932,Other,College Applied Research +162200,Other,Copyright and Intellectual Property +162200,Other,Infrastructure +132527,Other,Small and Medium Sized Businesses +77639,Other,Section 95 co-op program +77638,Other,Infrastructure +156916,Other,Student Mobility +432455,Consumer Issues,Consumer Issues +501958,Health,Health +475545,Industry,Industry +77212,Other,Copyright +77656,Other,Governor-in-Council Appointments +77657,Other,Funding +77665,Environment,Environment +77667,Other,peridocal program review +77677,Other,Funding +85279,Other,International Academic Mobility +137114,Other,Official Languages +77654,Other,Telecommunications +77676,Other,Copyright +412323,Constitutional Issues,Constitutional Issues +499811,Consumer Issues,Consumer Issues +166155,Financial Institutions,Financial Institutions +542517,Immigration,Immigration +539395,Justice and Law Enforcement,Justice and Law Enforcement +97674,Immigration,Immigration +77718,Other,Regional Development +97671,Immigration,Immigration +77719,Other,Liberal Green Shift +77719,Other,Liberal Green Shift +77721,Other,Liberal Green Shift +77456,Other,Environment +81314,Justice and Law Enforcement,Justice and Law Enforcement +449530,Labour,Labour +77758,Other,attend presentation by Energy Solutions at NRC +77758,Other,isotope manufacturing location +77760,Other,Long-Term Clean Air Study of the Energy Sector Sustainability Table +77762,Other,governance +77762,Other,industrial research policy +77762,Other,transfer of non-regulatory Federal labs +80447,Intellectual Property,Propriété intellectuelle +80447,Health,Santé +77763,Other,Copyright +77763,Other,Telecommunications +93831,Other,Funding for young entrepreneurs nationally. +77789,Other,Consumer Affairs +77789,Other,Health +77792,Agriculture,Agriculture +77788,Other,Governance of Canada's airports +77799,Agriculture,Agriculture +113986,Other,Pipelines +139674,Other,Regulation +355681,Agriculture,Agriculture +109793,Agriculture,Agriculture +134197,Government Procurement,Government Procurement +151700,Other,Framework for regulating air emissions +111146,Government Procurement,Government Procurement +147398,Other,Information Technology Security +91795,Other,Critical Infrastructure +91794,Other,Sustainable Community +156917,Other,Essential Skills +424980,Financial Institutions,Financial Institutions +151337,Taxation and Finance,Taxation and Finance +340426,Consumer Issues,Consumer Issues +340426,Financial Institutions,Financial Institutions +92115,Taxation and Finance,Taxation and Finance +137895,Financial Institutions,Financial Institutions +92116,Taxation and Finance,Taxation and Finance +77954,Other,climate change +90652,Forestry,Forestry +80839,Industry,Industry +85936,Taxation and Finance,Taxation and Finance +98035,Other,Lung Health Framework +98414,International Trade,International Trade +157470,Agriculture,Agriculture +82842,International Trade,Commerce international +213827,Government Procurement,Government Procurement +493787,Agriculture,Agriculture +114091,Consumer Issues,Consumer Issues +304377,Energy,Energy +405790,Health,Health +327918,Immigration,Immigration +421936,International Trade,International Trade +259636,Taxation and Finance,Taxation and Finance +78094,Other,"AIT & Review of Chapter 9, WTO, Growing Forward" +83778,Health,Health +172812,Energy,Energy +112540,Industry,Industry +140674,Regional Development,Regional Development +85955,Agriculture,Agriculture +191351,Health,Health +191344,Industry,Industry +80174,Other,Safey inspections +78314,Other,Expansion of Engineering School +78315,Other,Ocean's policy +78316,Other,Oceans policy +114131,Agriculture,Agriculture +156985,Taxation and Finance,Taxation and Finance +97034,Health,Health +143354,Transportation,Transportation +148096,Other,international Education +384902,Industry,Industry +156726,Education,Education +197607,Employment and Training,Employment and Training +319233,Energy,Energy +223100,Environment,Environment +161809,Immigration,Immigration +227362,International Relations,International Relations +250229,International Trade,International Trade +206529,Labour,Labour +188047,Mining,Mining +285030,Taxation and Finance,Taxation and Finance +135916,Transportation,Transportation +134866,Taxation and Finance,Taxation and Finance +188024,Other,Health care policy +78537,Other,CN Commercialization Act +78574,Other,CN Commercialization Act +78575,Other,CN Commercialization Act +78576,Other,CN Commercialization Act +78577,Other,CN Commercialization Act +503882,Energy,Energy +484286,Environment,Environment +414578,Industry,Industry +500707,Taxation and Finance,Taxation and Finance +88695,Taxation and Finance,Taxation and Finance +78655,Other,COASTING TRADE AND THE 25% VESSEL IMPORT DUTY +82835,Energy,Energy +109672,Health,Health +90609,Other,Arts and culture programs +78814,Other,Co-operative Development Initiative (CDI) +78814,Other,Co-operative Investment Plan (CIP) +78815,Regional Development,Regional Development +82813,Government Procurement,Government Procurement +211848,Employment and Training,Employment and Training +211825,Employment and Training,Employment and Training +211590,Employment and Training,Employment and Training +211589,Employment and Training,Employment and Training +211569,Employment and Training,Employment and Training +211563,Employment and Training,Employment and Training +200449,Employment and Training,Employment and Training +200013,Employment and Training,Employment and Training +198027,Employment and Training,Employment and Training +198007,Employment and Training,Employment and Training +197990,Employment and Training,Employment and Training +197612,Employment and Training,Employment and Training +197611,Employment and Training,Employment and Training +197610,Employment and Training,Employment and Training +197609,Employment and Training,Employment and Training +197608,Employment and Training,Employment and Training +223096,Environment,Environment +206233,Environment,Environment +80155,Environment,Environment +80134,Environment,Environment +80054,Environment,Environment +79096,Environment,Environment +79095,Environment,Environment +79094,Environment,Environment +154698,Environment,Environment +198027,Environment,Environment +197612,Environment,Environment +197611,Environment,Environment +197610,Environment,Environment +197609,Environment,Environment +197608,Environment,Environment +197592,Environment,Environment +197590,Environment,Environment +197588,Environment,Environment +197587,Environment,Environment +189643,Environment,Environment +188049,Environment,Environment +181345,Environment,Environment +181344,Environment,Environment +176147,Environment,Environment +176108,Environment,Environment +176107,Environment,Environment +176106,Environment,Environment +175064,Environment,Environment +168968,Environment,Environment +165369,Environment,Environment +164148,Environment,Environment +161824,Environment,Environment +161816,Environment,Environment +161815,Environment,Environment +161814,Environment,Environment +161813,Environment,Environment +161812,Environment,Environment +161810,Environment,Environment +161808,Environment,Environment +161807,Environment,Environment +161806,Environment,Environment +161805,Environment,Environment +161803,Environment,Environment +331772,Environment,Environment +331771,Environment,Environment +331769,Environment,Environment +299949,Environment,Environment +276663,Environment,Environment +276657,Environment,Environment +276653,Environment,Environment +270793,Environment,Environment +266389,Environment,Environment +229833,Environment,Environment +227370,Environment,Environment +227367,Environment,Environment +227360,Environment,Environment +223105,International Relations,International Relations +211868,International Relations,International Relations +132630,International Relations,International Relations +125216,International Relations,International Relations +198027,International Relations,International Relations +198007,International Relations,International Relations +197990,International Relations,International Relations +197612,International Relations,International Relations +179184,International Relations,International Relations +156730,International Relations,International Relations +156727,International Relations,International Relations +156725,International Relations,International Relations +156724,International Relations,International Relations +156723,International Relations,International Relations +135925,International Relations,International Relations +227374,International Trade,International Trade +109513,International Trade,International Trade +99814,International Trade,International Trade +96914,International Trade,International Trade +89294,International Trade,International Trade +86554,International Trade,International Trade +80074,International Trade,International Trade +80054,International Trade,International Trade +79774,International Trade,International Trade +79434,International Trade,International Trade +149297,International Trade,International Trade +149296,International Trade,International Trade +142735,International Trade,International Trade +135916,International Trade,International Trade +125216,International Trade,International Trade +227362,International Trade,International Trade +223091,International Trade,International Trade +216011,International Trade,International Trade +216010,International Trade,International Trade +211857,International Trade,International Trade +206951,International Trade,International Trade +206235,International Trade,International Trade +198027,International Trade,International Trade +198007,International Trade,International Trade +197612,International Trade,International Trade +195405,International Trade,International Trade +185933,International Trade,International Trade +181344,International Trade,International Trade +179184,International Trade,International Trade +170337,International Trade,International Trade +168969,International Trade,International Trade +168968,International Trade,International Trade +168621,International Trade,International Trade +161824,International Trade,International Trade +161811,International Trade,International Trade +161806,International Trade,International Trade +161805,International Trade,International Trade +161803,International Trade,International Trade +161666,International Trade,International Trade +156730,International Trade,International Trade +156727,International Trade,International Trade +156725,International Trade,International Trade +156724,International Trade,International Trade +156723,International Trade,International Trade +273142,International Trade,International Trade +273140,International Trade,International Trade +273134,International Trade,International Trade +273126,International Trade,International Trade +273119,International Trade,International Trade +266394,International Trade,International Trade +266393,International Trade,International Trade +266392,International Trade,International Trade +250271,International Trade,International Trade +250259,International Trade,International Trade +250246,International Trade,International Trade +250234,International Trade,International Trade +206236,Labour,Labour +206235,Labour,Labour +142735,Labour,Labour +142734,Labour,Labour +142637,Labour,Labour +138868,Labour,Labour +138866,Labour,Labour +138592,Labour,Labour +135925,Labour,Labour +132630,Labour,Labour +128558,Labour,Labour +128557,Labour,Labour +125219,Labour,Labour +125218,Labour,Labour +125217,Labour,Labour +125215,Labour,Labour +125214,Labour,Labour +120943,Labour,Labour +120941,Labour,Labour +120938,Labour,Labour +116982,Labour,Labour +200013,Labour,Labour +197609,Labour,Labour +197608,Labour,Labour +197589,Labour,Labour +174844,Labour,Labour +174269,Labour,Labour +174268,Labour,Labour +174267,Labour,Labour +174266,Labour,Labour +174265,Labour,Labour +174264,Labour,Labour +170338,Labour,Labour +164052,Labour,Labour +164051,Labour,Labour +164049,Labour,Labour +164048,Labour,Labour +164045,Labour,Labour +164044,Labour,Labour +161824,Labour,Labour +161816,Labour,Labour +161815,Labour,Labour +161813,Labour,Labour +161812,Labour,Labour +161809,Labour,Labour +161808,Labour,Labour +161669,Labour,Labour +161668,Labour,Labour +156729,Labour,Labour +156728,Labour,Labour +156727,Labour,Labour +156726,Labour,Labour +156725,Labour,Labour +156724,Labour,Labour +156722,Labour,Labour +156717,Labour,Labour +154697,Labour,Labour +149297,Labour,Labour +149296,Labour,Labour +146095,Labour,Labour +146093,Labour,Labour +146092,Labour,Labour +146090,Labour,Labour +146089,Labour,Labour +300593,Labour,Labour +300592,Labour,Labour +300591,Labour,Labour +300590,Labour,Labour +300589,Labour,Labour +285050,Labour,Labour +285049,Labour,Labour +285030,Labour,Labour +285029,Labour,Labour +223104,Labour,Labour +223097,Labour,Labour +223096,Labour,Labour +211871,Labour,Labour +211855,Labour,Labour +211825,Labour,Labour +356032,Mining,Mining +356026,Mining,Mining +103974,Mining,Mining +99814,Mining,Mining +96920,Mining,Mining +96914,Mining,Mining +86554,Mining,Mining +80155,Mining,Mining +80134,Mining,Mining +80074,Mining,Mining +80054,Mining,Mining +79794,Mining,Mining +79774,Mining,Mining +79434,Mining,Mining +79094,Mining,Mining +156727,Mining,Mining +156726,Mining,Mining +156725,Mining,Mining +156724,Mining,Mining +156723,Mining,Mining +156722,Mining,Mining +156717,Mining,Mining +154698,Mining,Mining +154697,Mining,Mining +152254,Mining,Mining +152253,Mining,Mining +149297,Mining,Mining +149296,Mining,Mining +146095,Mining,Mining +146093,Mining,Mining +146092,Mining,Mining +146090,Mining,Mining +146089,Mining,Mining +142735,Mining,Mining +142734,Mining,Mining +135925,Mining,Mining +135924,Mining,Mining +132630,Mining,Mining +125220,Mining,Mining +125219,Mining,Mining +125218,Mining,Mining +125217,Mining,Mining +116982,Mining,Mining +109513,Mining,Mining +103994,Mining,Mining +103975,Mining,Mining +188046,Mining,Mining +181345,Mining,Mining +181344,Mining,Mining +179184,Mining,Mining +176147,Mining,Mining +176108,Mining,Mining +176107,Mining,Mining +176106,Mining,Mining +174844,Mining,Mining +174840,Mining,Mining +174839,Mining,Mining +174269,Mining,Mining +174268,Mining,Mining +174267,Mining,Mining +174266,Mining,Mining +174265,Mining,Mining +174264,Mining,Mining +173409,Mining,Mining +173402,Mining,Mining +173401,Mining,Mining +170724,Mining,Mining +170338,Mining,Mining +170337,Mining,Mining +168970,Mining,Mining +168969,Mining,Mining +168621,Mining,Mining +165369,Mining,Mining +164148,Mining,Mining +164052,Mining,Mining +164051,Mining,Mining +164049,Mining,Mining +164048,Mining,Mining +164045,Mining,Mining +164044,Mining,Mining +161979,Mining,Mining +161975,Mining,Mining +161824,Mining,Mining +161816,Mining,Mining +161815,Mining,Mining +161814,Mining,Mining +161813,Mining,Mining +161812,Mining,Mining +161811,Mining,Mining +161810,Mining,Mining +161809,Mining,Mining +161808,Mining,Mining +161807,Mining,Mining +161806,Mining,Mining +161805,Mining,Mining +161803,Mining,Mining +161669,Mining,Mining +161668,Mining,Mining +161666,Mining,Mining +156797,Mining,Mining +156730,Mining,Mining +156729,Mining,Mining +156728,Mining,Mining +319235,Mining,Mining +319233,Mining,Mining +319230,Mining,Mining +300593,Mining,Mining +300592,Mining,Mining +300591,Mining,Mining +300590,Mining,Mining +300589,Mining,Mining +299949,Mining,Mining +285050,Mining,Mining +285049,Mining,Mining +285030,Mining,Mining +285029,Mining,Mining +276663,Mining,Mining +276657,Mining,Mining +276653,Mining,Mining +273142,Mining,Mining +273140,Mining,Mining +273134,Mining,Mining +273126,Mining,Mining +273119,Mining,Mining +270793,Mining,Mining +266394,Mining,Mining +266393,Mining,Mining +266392,Mining,Mining +266391,Mining,Mining +266390,Mining,Mining +266389,Mining,Mining +250278,Mining,Mining +250273,Mining,Mining +250271,Mining,Mining +250259,Mining,Mining +250246,Mining,Mining +250234,Mining,Mining +250229,Mining,Mining +240812,Mining,Mining +240809,Mining,Mining +240803,Mining,Mining +240796,Mining,Mining +240793,Mining,Mining +240792,Mining,Mining +240789,Mining,Mining +240769,Mining,Mining +240730,Mining,Mining +229851,Mining,Mining +229841,Mining,Mining +227374,Mining,Mining +227370,Mining,Mining +223096,Mining,Mining +223093,Mining,Mining +219807,Mining,Mining +216010,Mining,Mining +211871,Mining,Mining +211868,Mining,Mining +211848,Mining,Mining +206951,Mining,Mining +206529,Mining,Mining +206236,Mining,Mining +206235,Mining,Mining +206233,Mining,Mining +201527,Mining,Mining +200449,Mining,Mining +200013,Mining,Mining +198027,Mining,Mining +198007,Mining,Mining +197990,Mining,Mining +197612,Mining,Mining +197611,Mining,Mining +197610,Mining,Mining +197609,Mining,Mining +197608,Mining,Mining +197607,Mining,Mining +197592,Mining,Mining +197590,Mining,Mining +197589,Mining,Mining +197588,Mining,Mining +197587,Mining,Mining +189647,Mining,Mining +189645,Mining,Mining +189643,Mining,Mining +188049,Mining,Mining +188048,Mining,Mining +285029,Taxation and Finance,Taxation and Finance +250234,Taxation and Finance,Taxation and Finance +116979,Taxation and Finance,Taxation and Finance +96920,Taxation and Finance,Taxation and Finance +223096,Taxation and Finance,Taxation and Finance +161809,Taxation and Finance,Taxation and Finance +161808,Taxation and Finance,Taxation and Finance +161806,Taxation and Finance,Taxation and Finance +285050,Taxation and Finance,Taxation and Finance +285049,Taxation and Finance,Taxation and Finance +135911,Transportation,Transportation +216011,Transportation,Transportation +98376,Taxation and Finance,Taxation and Finance +98375,Taxation and Finance,Taxation and Finance +152497,Other,Health care policy +148373,Other,Health care policy +500811,Energy,Energy +500707,Energy,Energy +104434,Energy,Energy +100547,Energy,Energy +100544,Energy,Energy +154696,Energy,Energy +153456,Energy,Energy +153455,Energy,Energy +153445,Energy,Energy +123896,Energy,Energy +123895,Energy,Energy +123894,Energy,Energy +120777,Energy,Energy +120776,Energy,Energy +120774,Energy,Energy +116914,Energy,Energy +104475,Energy,Energy +104454,Energy,Energy +253736,Energy,Energy +250231,Energy,Energy +244972,Energy,Energy +230253,Energy,Energy +227609,Energy,Energy +199984,Energy,Energy +168713,Energy,Energy +168709,Energy,Energy +168703,Energy,Energy +168700,Energy,Energy +168688,Energy,Energy +168677,Energy,Energy +160015,Energy,Energy +159970,Energy,Energy +159937,Energy,Energy +159904,Energy,Energy +379200,Energy,Energy +379191,Energy,Energy +379186,Energy,Energy +379181,Energy,Energy +379173,Energy,Energy +364815,Energy,Energy +363296,Energy,Energy +363295,Energy,Energy +363293,Energy,Energy +363292,Energy,Energy +363291,Energy,Energy +359584,Energy,Energy +358351,Energy,Energy +358350,Energy,Energy +357986,Energy,Energy +357985,Energy,Energy +357984,Energy,Energy +357983,Energy,Energy +357981,Energy,Energy +355950,Energy,Energy +355948,Energy,Energy +355944,Energy,Energy +351250,Energy,Energy +351246,Energy,Energy +348545,Energy,Energy +343767,Energy,Energy +343764,Energy,Energy +343761,Energy,Energy +343756,Energy,Energy +343753,Energy,Energy +343749,Energy,Energy +340995,Energy,Energy +340993,Energy,Energy +340990,Energy,Energy +340988,Energy,Energy +340986,Energy,Energy +340981,Energy,Energy +340978,Energy,Energy +335588,Energy,Energy +333368,Energy,Energy +333366,Energy,Energy +331008,Energy,Energy +331004,Energy,Energy +324727,Energy,Energy +324723,Energy,Energy +318726,Energy,Energy +312971,Energy,Energy +312970,Energy,Energy +312969,Energy,Energy +303231,Energy,Energy +303230,Energy,Energy +302709,Energy,Energy +282129,Energy,Energy +282111,Energy,Energy +282109,Energy,Energy +282070,Energy,Energy +273331,Energy,Energy +263731,Energy,Energy +260090,Energy,Energy +484286,Energy,Energy +481357,Energy,Energy +475497,Energy,Energy +475494,Energy,Energy +475488,Energy,Energy +472664,Energy,Energy +470552,Energy,Energy +468421,Energy,Energy +464391,Energy,Energy +464390,Energy,Energy +453680,Energy,Energy +453666,Energy,Energy +453665,Energy,Energy +450055,Energy,Energy +444993,Energy,Energy +444992,Energy,Energy +441893,Energy,Energy +441889,Energy,Energy +441883,Energy,Energy +441876,Energy,Energy +441869,Energy,Energy +441863,Energy,Energy +433482,Energy,Energy +433481,Energy,Energy +433478,Energy,Energy +433475,Energy,Energy +433472,Energy,Energy +432358,Energy,Energy +430436,Energy,Energy +430434,Energy,Energy +429298,Energy,Energy +425013,Energy,Energy +425012,Energy,Energy +425011,Energy,Energy +424990,Energy,Energy +424987,Energy,Energy +424862,Energy,Energy +424326,Energy,Energy +422261,Energy,Energy +422257,Energy,Energy +414718,Energy,Energy +414693,Energy,Energy +414586,Energy,Energy +414582,Energy,Energy +414578,Energy,Energy +414577,Energy,Energy +412041,Energy,Energy +411600,Energy,Energy +411466,Energy,Energy +411452,Energy,Energy +401859,Energy,Energy +401857,Energy,Energy +401849,Energy,Energy +387376,Energy,Energy +387374,Energy,Energy +387373,Energy,Energy +387372,Energy,Energy +387370,Energy,Energy +383557,Energy,Energy +383551,Energy,Energy +383535,Energy,Energy +544806,Energy,Energy +543781,Energy,Energy +541951,Energy,Energy +541597,Energy,Energy +541594,Energy,Energy +541592,Energy,Energy +539807,Energy,Energy +529233,Energy,Energy +529014,Energy,Energy +529013,Energy,Energy +522983,Energy,Energy +522024,Energy,Energy +516992,Energy,Energy +516979,Energy,Energy +481357,Environment,Environment +468421,Environment,Environment +116896,Environment,Environment +104454,Environment,Environment +100547,Environment,Environment +100544,Environment,Environment +312971,Environment,Environment +312970,Environment,Environment +312969,Environment,Environment +273331,Environment,Environment +260090,Environment,Environment +253736,Environment,Environment +211819,Environment,Environment +199984,Environment,Environment +387374,Environment,Environment +387370,Environment,Environment +363296,Environment,Environment +363295,Environment,Environment +363293,Environment,Environment +363292,Environment,Environment +363291,Environment,Environment +358351,Environment,Environment +355950,Environment,Environment +355948,Environment,Environment +355944,Environment,Environment +318726,Environment,Environment +464391,Environment,Environment +464390,Environment,Environment +450055,Environment,Environment +444993,Environment,Environment +444992,Environment,Environment +441893,Environment,Environment +441889,Environment,Environment +441883,Environment,Environment +441876,Environment,Environment +441869,Environment,Environment +441863,Environment,Environment +433482,Environment,Environment +433481,Environment,Environment +433478,Environment,Environment +433475,Environment,Environment +433472,Environment,Environment +432358,Environment,Environment +430436,Environment,Environment +430434,Environment,Environment +429298,Environment,Environment +425013,Environment,Environment +425012,Environment,Environment +424990,Environment,Environment +424987,Environment,Environment +424862,Environment,Environment +424326,Environment,Environment +422261,Environment,Environment +412041,Environment,Environment +411600,Environment,Environment +411466,Environment,Environment +544806,Environment,Environment +543781,Environment,Environment +541951,Environment,Environment +529233,Environment,Environment +529013,Environment,Environment +522983,Environment,Environment +522024,Environment,Environment +516992,Environment,Environment +516979,Environment,Environment +503882,Environment,Environment +500707,Environment,Environment +414577,Industry,Industry +539807,Industry,Industry +250231,Industry,Industry +516992,Industry,Industry +516979,Industry,Industry +500811,Industry,Industry +484286,Industry,Industry +481357,Industry,Industry +444993,Industry,Industry +444992,Industry,Industry +441893,Industry,Industry +441889,Industry,Industry +441883,Industry,Industry +441876,Industry,Industry +441869,Industry,Industry +441863,Industry,Industry +433481,Industry,Industry +433478,Industry,Industry +433475,Industry,Industry +433472,Industry,Industry +432358,Industry,Industry +430436,Industry,Industry +430434,Industry,Industry +429298,Industry,Industry +425013,Industry,Industry +425012,Industry,Industry +425011,Industry,Industry +424990,Industry,Industry +424987,Industry,Industry +422261,Industry,Industry +422257,Industry,Industry +414693,Industry,Industry +414586,Industry,Industry +414582,Industry,Industry +484286,Taxation and Finance,Taxation and Finance +481357,Taxation and Finance,Taxation and Finance +348696,Taxation and Finance,Taxation and Finance +441889,Taxation and Finance,Taxation and Finance +441883,Taxation and Finance,Taxation and Finance +441876,Taxation and Finance,Taxation and Finance +433472,Taxation and Finance,Taxation and Finance +425011,Taxation and Finance,Taxation and Finance +424862,Taxation and Finance,Taxation and Finance +414693,Taxation and Finance,Taxation and Finance +544806,Taxation and Finance,Taxation and Finance +541594,Taxation and Finance,Taxation and Finance +529233,Taxation and Finance,Taxation and Finance +522020,Taxation and Finance,Taxation and Finance +85935,Taxation and Finance,Taxation and Finance +80698,Taxation and Finance,Taxation and Finance +97461,Taxation and Finance,Taxation and Finance +97458,Taxation and Finance,Taxation and Finance +97456,Taxation and Finance,Taxation and Finance +97453,Taxation and Finance,Taxation and Finance +109674,Energy,Energy +109672,Energy,Energy +109670,Health,Health +82812,Government Procurement,Government Procurement +82811,Government Procurement,Government Procurement +151417,Other,Mortgage Insurance Industry +137659,Other,Mortgage Insurance Industry +78855,Other,Mortgage Insurance Industry +104754,Other,Mortgage Insurance Industry +99374,Other,Mortgage Insurance Industry +86856,Other,Mortgage Insurance Industry +83777,Other,Mortgage Insurance Industry +83776,Other,Mortgage Insurance Industry +83775,Other,Mortgage Insurance Industry +83774,Other,Mortgage Insurance Industry +153778,Other,Mortgage Insurance Industry +137658,Other,Mortgage Insurance Industry +410739,Energy,Energy +410738,Energy,Energy +87356,Energy,Energy +87355,Energy,Energy +87354,Energy,Energy +79975,Energy,Energy +289689,Energy,Energy +386639,Energy,Energy +386072,Energy,Energy +355600,Energy,Energy +354681,Energy,Energy +337072,Energy,Energy +337071,Energy,Energy +334551,Energy,Energy +509808,Energy,Energy +509706,Energy,Energy +509705,Energy,Energy +509701,Energy,Energy +509695,Energy,Energy +436737,Energy,Energy +436736,Energy,Energy +436735,Energy,Energy +411039,Energy,Energy +386639,Environment,Environment +386071,Environment,Environment +355602,Environment,Environment +98935,Health,Health +98934,Health,Health +79976,Health,Health +436735,Industry,Industry +436716,Industry,Industry +128251,Industry,Industry +112015,Industry,Industry +112014,Industry,Industry +98954,Industry,Industry +163264,Industry,Industry +395261,Industry,Industry +386639,Industry,Industry +436737,Industry,Industry +428292,International Trade,International Trade +395261,International Trade,International Trade +147016,International Trade,International Trade +436716,International Trade,International Trade +428297,International Trade,International Trade +428296,International Trade,International Trade +428295,International Trade,International Trade +83375,International Trade,International Trade +134916,Other,Mortgage Insurance Industry +134896,Other,Mortgage Insurance Industry +95419,Other,Mortgage Insurance Industry +89195,Other,Mortgage Insurance Industry +86734,Other,Mortgage Insurance Industry +83796,Other,Mortgage Insurance Industry +83795,Other,Mortgage Insurance Industry +83794,Other,Mortgage Insurance Industry +83574,Other,Mortgage Insurance Industry +82036,Other,Mortgage Insurance Industry +78934,Other,Mortgage Insurance Industry +134894,Other,Mortgage Insurance Industry +132215,Other,Mortgage Insurance Industry +104634,Other,Mortgage Insurance Industry +104615,Other,Mortgage Insurance Industry +104614,Other,Mortgage Insurance Industry +104595,Other,Mortgage Insurance Industry +104575,Other,Mortgage Insurance Industry +100156,Other,Mortgage Insurance Industry +100145,Other,Mortgage Insurance Industry +100144,Other,Mortgage Insurance Industry +96657,Other,Mortgage Insurance Industry +164765,Other,Mortgage Insurance Industry +164764,Other,Mortgage Insurance Industry +164735,Other,Mortgage Insurance Industry +164734,Other,Mortgage Insurance Industry +164544,Other,Mortgage Insurance Industry +164304,Other,Mortgage Insurance Industry +163698,Other,Mortgage Insurance Industry +163697,Other,Mortgage Insurance Industry +162716,Other,Mortgage Insurance Industry +162715,Other,Mortgage Insurance Industry +162714,Other,Mortgage Insurance Industry +159003,Other,Mortgage Insurance Industry +158974,Other,Mortgage Insurance Industry +158672,Other,Mortgage Insurance Industry +158671,Other,Mortgage Insurance Industry +158670,Other,Mortgage Insurance Industry +158669,Other,Mortgage Insurance Industry +158668,Other,Mortgage Insurance Industry +157568,Other,Mortgage Insurance Industry +155568,Other,Mortgage Insurance Industry +155567,Other,Mortgage Insurance Industry +155566,Other,Mortgage Insurance Industry +153777,Other,Mortgage Insurance Industry +153776,Other,Mortgage Insurance Industry +150998,Other,Mortgage Insurance Industry +150997,Other,Mortgage Insurance Industry +149118,Other,Mortgage Insurance Industry +146794,Other,Mortgage Insurance Industry +145733,Other,Mortgage Insurance Industry +137656,Other,Mortgage Insurance Industry +137655,Other,Mortgage Insurance Industry +92618,Education,Education +92618,Industry,Industry +145703,Environment,Environment +167369,Environment,Environment +141780,Environment,Environment +135708,Environment,Environment +127976,Environment,Environment +123175,Environment,Environment +123174,Environment,Environment +119261,Environment,Environment +92619,Environment,Environment +161650,Environment,Environment +161649,Environment,Environment +161648,Environment,Environment +161647,Environment,Environment +161646,Environment,Environment +161645,Environment,Environment +161643,Environment,Environment +160801,Environment,Environment +160800,Environment,Environment +160687,Environment,Environment +158210,Environment,Environment +155851,Environment,Environment +155850,Environment,Environment +153204,Environment,Environment +153203,Environment,Environment +151852,Environment,Environment +151850,Environment,Environment +151849,Environment,Environment +123174,Fisheries,Fisheries +119261,Fisheries,Fisheries +92619,Fisheries,Fisheries +160687,Fisheries,Fisheries +155851,Fisheries,Fisheries +155850,Fisheries,Fisheries +151852,Fisheries,Fisheries +151847,Fisheries,Fisheries +149840,Fisheries,Fisheries +147857,Fisheries,Fisheries +141780,Fisheries,Fisheries +135708,Fisheries,Fisheries +123174,Industry,Industry +119261,Industry,Industry +92619,Industry,Industry +155851,Industry,Industry +155850,Industry,Industry +151852,Industry,Industry +141780,Industry,Industry +135708,Industry,Industry +141780,International Relations,International Relations +135708,International Relations,International Relations +123175,International Relations,International Relations +123174,International Relations,International Relations +119261,International Relations,International Relations +92619,International Relations,International Relations +151852,Mining,Mining +141780,Mining,Mining +135708,Mining,Mining +123175,Mining,Mining +123174,Mining,Mining +119261,Mining,Mining +123174,Tourism,Tourism +119261,Tourism,Tourism +92619,Tourism,Tourism +151852,Tourism,Tourism +141780,Tourism,Tourism +135708,Tourism,Tourism +119261,Transportation,Transportation +92619,Transportation,Transportation +151852,Transportation,Transportation +141780,Transportation,Transportation +135708,Transportation,Transportation +123175,Transportation,Transportation +120783,Other,Security +79035,Other,Security +143614,Other,Security +260969,Financial Institutions,Financial Institutions +260911,Financial Institutions,Financial Institutions +260969,Government Procurement,Government Procurement +260911,Government Procurement,Government Procurement +79275,Other,Empty Trailers +79274,Other,Empty Trailers +117642,Other,Empty Trailers +79294,Other,National Pension Reform Summit +135055,Other,National Pension Reform Summit +135054,Other,National Pension Reform Summit +133114,Other,National Pension Reform Summit +129395,Other,National Pension Reform Summit +109218,Other,Major Projects Management Office +90423,Other,Major Projects Management Office +86715,Other,Major Projects Management Office +86714,Other,Major Projects Management Office +86695,Other,Major Projects Management Office +86694,Other,Major Projects Management Office +86675,Other,Major Projects Management Office +86658,Other,Major Projects Management Office +86656,Other,Major Projects Management Office +86655,Other,Major Projects Management Office +86654,Other,Major Projects Management Office +86634,Other,Major Projects Management Office +86615,Other,Major Projects Management Office +86614,Other,Major Projects Management Office +132529,Other,Major Projects Management Office +132319,Other,Major Projects Management Office +132317,Other,Major Projects Management Office +132316,Other,Major Projects Management Office +132315,Other,Major Projects Management Office +132300,Other,Major Projects Management Office +132288,Other,Major Projects Management Office +132286,Other,Major Projects Management Office +79456,Other,Canada Post Shipping +106814,Other,Legal Aid +79494,Other,Legal Aid +154676,Other,Privacy Act +79494,Other,Privacy Act +101170,Other,Canadian Television Fund (CTF) +88004,Other,Canadian Television Fund (CTF) +79594,Other,Canadian Television Fund (CTF) +101388,Other,Energy Sector Sustainability Table (ESST) +88206,Other,Energy Sector Sustainability Table (ESST) +124946,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +117338,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +90573,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +90550,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +88212,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +88199,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +88189,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +88179,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +84435,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +84414,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +79719,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +117337,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +117336,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +117334,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +111143,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +109728,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +109715,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +109712,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +105725,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +105719,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +101391,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +101388,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +101383,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +101379,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +101373,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +98442,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +98440,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +98439,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +93803,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +90581,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +150353,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +145939,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +143034,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +138855,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +135480,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +135479,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +132871,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +154698,Industry,Industry +154697,Industry,Industry +103994,Industry,Industry +103975,Industry,Industry +103974,Industry,Industry +79434,Industry,Industry +149297,Industry,Industry +149296,Industry,Industry +142735,Industry,Industry +142734,Industry,Industry +135925,Industry,Industry +135916,Industry,Industry +135911,Industry,Industry +125220,Industry,Industry +125219,Industry,Industry +125218,Industry,Industry +125217,Industry,Industry +116982,Industry,Industry +276655,Industry,Industry +276653,Industry,Industry +250271,Industry,Industry +250259,Industry,Industry +250246,Industry,Industry +216009,Industry,Industry +197990,Industry,Industry +197590,Industry,Industry +197588,Industry,Industry +197587,Industry,Industry +181345,Industry,Industry +181344,Industry,Industry +176344,Industry,Industry +176326,Industry,Industry +176147,Industry,Industry +174844,Industry,Industry +174839,Industry,Industry +174265,Industry,Industry +174264,Industry,Industry +170338,Industry,Industry +164148,Industry,Industry +164052,Industry,Industry +164051,Industry,Industry +164049,Industry,Industry +164048,Industry,Industry +161669,Industry,Industry +161668,Industry,Industry +161666,Industry,Industry +156797,Industry,Industry +156729,Industry,Industry +156728,Industry,Industry +397611,Consumer Issues,Consumer Issues +395303,Consumer Issues,Consumer Issues +158192,Consumer Issues,Consumer Issues +252412,Consumer Issues,Consumer Issues +252411,Consumer Issues,Consumer Issues +158193,Consumer Issues,Consumer Issues +395302,Consumer Issues,Consumer Issues +395301,Consumer Issues,Consumer Issues +395300,Consumer Issues,Consumer Issues +395299,Consumer Issues,Consumer Issues +395298,Consumer Issues,Consumer Issues +395297,Consumer Issues,Consumer Issues +393213,Consumer Issues,Consumer Issues +392047,Consumer Issues,Consumer Issues +392046,Consumer Issues,Consumer Issues +388982,Consumer Issues,Consumer Issues +388981,Consumer Issues,Consumer Issues +384368,Consumer Issues,Consumer Issues +384367,Consumer Issues,Consumer Issues +380537,Consumer Issues,Consumer Issues +380536,Consumer Issues,Consumer Issues +377989,Consumer Issues,Consumer Issues +377988,Consumer Issues,Consumer Issues +377975,Consumer Issues,Consumer Issues +377973,Consumer Issues,Consumer Issues +375514,Consumer Issues,Consumer Issues +375512,Consumer Issues,Consumer Issues +375511,Consumer Issues,Consumer Issues +375509,Consumer Issues,Consumer Issues +375507,Consumer Issues,Consumer Issues +375506,Consumer Issues,Consumer Issues +348208,Consumer Issues,Consumer Issues +343020,Consumer Issues,Consumer Issues +472553,Consumer Issues,Consumer Issues +467578,Consumer Issues,Consumer Issues +467572,Consumer Issues,Consumer Issues +460980,Consumer Issues,Consumer Issues +427327,Consumer Issues,Consumer Issues +427326,Consumer Issues,Consumer Issues +412659,Consumer Issues,Consumer Issues +412657,Consumer Issues,Consumer Issues +410310,Consumer Issues,Consumer Issues +404142,Consumer Issues,Consumer Issues +404141,Consumer Issues,Consumer Issues +404140,Consumer Issues,Consumer Issues +401947,Consumer Issues,Consumer Issues +401946,Consumer Issues,Consumer Issues +399626,Consumer Issues,Consumer Issues +399625,Consumer Issues,Consumer Issues +401947,Health,Health +401946,Health,Health +377989,Health,Health +377988,Health,Health +377975,Health,Health +377973,Health,Health +343020,Health,Health +252412,Health,Health +252411,Health,Health +188424,Health,Health +158193,Health,Health +158192,Health,Health +472553,Health,Health +404142,Health,Health +404141,Health,Health +404141,Industry,Industry +404140,Industry,Industry +397612,Industry,Industry +397611,Industry,Industry +395303,Industry,Industry +395302,Industry,Industry +395301,Industry,Industry +395300,Industry,Industry +395299,Industry,Industry +395298,Industry,Industry +395297,Industry,Industry +380537,Industry,Industry +380536,Industry,Industry +412659,Industry,Industry +412657,Industry,Industry +410310,Industry,Industry +445257,Justice and Law Enforcement,Justice and Law Enforcement +445256,Justice and Law Enforcement,Justice and Law Enforcement +82116,Justice and Law Enforcement,Justice and Law Enforcement +252412,Justice and Law Enforcement,Justice and Law Enforcement +252411,Justice and Law Enforcement,Justice and Law Enforcement +158193,Justice and Law Enforcement,Justice and Law Enforcement +158192,Justice and Law Enforcement,Justice and Law Enforcement +375506,Justice and Law Enforcement,Justice and Law Enforcement +412659,Justice and Law Enforcement,Justice and Law Enforcement +412657,Justice and Law Enforcement,Justice and Law Enforcement +410310,Justice and Law Enforcement,Justice and Law Enforcement +375514,Justice and Law Enforcement,Justice and Law Enforcement +375512,Justice and Law Enforcement,Justice and Law Enforcement +375511,Justice and Law Enforcement,Justice and Law Enforcement +375509,Justice and Law Enforcement,Justice and Law Enforcement +375507,Justice and Law Enforcement,Justice and Law Enforcement +538455,Justice and Law Enforcement,Justice and Law Enforcement +538454,Justice and Law Enforcement,Justice and Law Enforcement +528939,Justice and Law Enforcement,Justice and Law Enforcement +460980,Justice and Law Enforcement,Justice and Law Enforcement +455753,Justice and Law Enforcement,Justice and Law Enforcement +455750,Justice and Law Enforcement,Justice and Law Enforcement +158192,Small Business,Small Business +538455,Taxation and Finance,Taxation and Finance +538454,Taxation and Finance,Taxation and Finance +158193,Taxation and Finance,Taxation and Finance +158192,Taxation and Finance,Taxation and Finance +252412,Taxation and Finance,Taxation and Finance +188424,Taxation and Finance,Taxation and Finance +460980,Taxation and Finance,Taxation and Finance +399626,Taxation and Finance,Taxation and Finance +399625,Taxation and Finance,Taxation and Finance +397612,Taxation and Finance,Taxation and Finance +397611,Taxation and Finance,Taxation and Finance +395303,Taxation and Finance,Taxation and Finance +395302,Taxation and Finance,Taxation and Finance +395301,Taxation and Finance,Taxation and Finance +395300,Taxation and Finance,Taxation and Finance +395299,Taxation and Finance,Taxation and Finance +395298,Taxation and Finance,Taxation and Finance +395297,Taxation and Finance,Taxation and Finance +393213,Taxation and Finance,Taxation and Finance +392047,Taxation and Finance,Taxation and Finance +392046,Taxation and Finance,Taxation and Finance +388981,Taxation and Finance,Taxation and Finance +384367,Taxation and Finance,Taxation and Finance +380537,Taxation and Finance,Taxation and Finance +380536,Taxation and Finance,Taxation and Finance +375514,Taxation and Finance,Taxation and Finance +375512,Taxation and Finance,Taxation and Finance +375511,Taxation and Finance,Taxation and Finance +375509,Taxation and Finance,Taxation and Finance +375507,Taxation and Finance,Taxation and Finance +375506,Taxation and Finance,Taxation and Finance +82256,Education,Education +82255,Education,Education +85353,Education,Education +85351,Education,Education +83434,Education,Education +88298,Government Procurement,Government Procurement +88296,Government Procurement,Government Procurement +88302,Government Procurement,Government Procurement +88300,Government Procurement,Government Procurement +176748,Intellectual Property,Intellectual Property +150172,Taxation and Finance,Taxation and Finance +150160,Taxation and Finance,Taxation and Finance +109766,Taxation and Finance,Taxation and Finance +94075,Taxation and Finance,Taxation and Finance +150189,Taxation and Finance,Taxation and Finance +150187,Taxation and Finance,Taxation and Finance +150185,Taxation and Finance,Taxation and Finance +150182,Taxation and Finance,Taxation and Finance +150180,Taxation and Finance,Taxation and Finance +150178,Taxation and Finance,Taxation and Finance +146830,Other,ecoENERGY for Renewable Power Program +146829,Other,ecoENERGY for Renewable Power Program +98055,Other,ecoENERGY for Renewable Power Program +98054,Other,ecoENERGY for Renewable Power Program +98034,Other,ecoENERGY for Renewable Power Program +90815,Other,ecoENERGY for Renewable Power Program +90814,Other,ecoENERGY for Renewable Power Program +88238,Other,ecoENERGY for Renewable Power Program +80435,Other,ecoENERGY for Renewable Power Program +131214,Other,ecoENERGY for Renewable Power Program +123016,Other,ecoENERGY for Renewable Power Program +123015,Other,ecoENERGY for Renewable Power Program +123014,Other,ecoENERGY for Renewable Power Program +119614,Other,ecoENERGY for Renewable Power Program +116980,Other,ecoENERGY for Renewable Power Program +112804,Other,ecoENERGY for Renewable Power Program +112803,Other,ecoENERGY for Renewable Power Program +112802,Other,ecoENERGY for Renewable Power Program +112801,Other,ecoENERGY for Renewable Power Program +112800,Other,ecoENERGY for Renewable Power Program +112799,Other,ecoENERGY for Renewable Power Program +112798,Other,ecoENERGY for Renewable Power Program +112797,Other,ecoENERGY for Renewable Power Program +112795,Other,ecoENERGY for Renewable Power Program +107903,Other,ecoENERGY for Renewable Power Program +107902,Other,ecoENERGY for Renewable Power Program +107900,Other,ecoENERGY for Renewable Power Program +107899,Other,ecoENERGY for Renewable Power Program +107898,Other,ecoENERGY for Renewable Power Program +107897,Other,ecoENERGY for Renewable Power Program +107574,Other,ecoENERGY for Renewable Power Program +107560,Other,ecoENERGY for Renewable Power Program +107559,Other,ecoENERGY for Renewable Power Program +107558,Other,ecoENERGY for Renewable Power Program +107557,Other,ecoENERGY for Renewable Power Program +107556,Other,ecoENERGY for Renewable Power Program +107555,Other,ecoENERGY for Renewable Power Program +107554,Other,ecoENERGY for Renewable Power Program +98057,Other,ecoENERGY for Renewable Power Program +98056,Other,ecoENERGY for Renewable Power Program +85362,Other,General Administration relating to existing funding relationships +80414,Other,General Administration relating to existing funding relationships +100523,Other,General Administration relating to existing funding relationships +88035,Other,General Administration relating to existing funding relationships +88034,Other,General Administration relating to existing funding relationships +88032,Other,General Administration relating to existing funding relationships +145156,Other,Food and Drug Legislation +145155,Other,Food and Drug Legislation +136274,Other,Food and Drug Legislation +108034,Other,Food and Drug Legislation +107274,Other,Food and Drug Legislation +94534,Other,Food and Drug Legislation +80455,Other,Food and Drug Legislation +162740,Other,Food and Drug Legislation +162739,Other,Food and Drug Legislation +162738,Other,Food and Drug Legislation +162737,Other,Food and Drug Legislation +162736,Other,Food and Drug Legislation +162735,Other,Food and Drug Legislation +162734,Other,Food and Drug Legislation +162733,Other,Food and Drug Legislation +162732,Other,Food and Drug Legislation +162731,Other,Food and Drug Legislation +424454,Environment,Environment +420451,Environment,Environment +339029,Environment,Environment +328023,Environment,Environment +328021,Environment,Environment +301963,Environment,Environment +301962,Environment,Environment +301959,Environment,Environment +301953,Environment,Environment +301952,Environment,Environment +301951,Environment,Environment +301950,Environment,Environment +296651,Environment,Environment +296650,Environment,Environment +272929,Environment,Environment +180344,Environment,Environment +168919,Environment,Environment +382136,Environment,Environment +382135,Environment,Environment +371711,Environment,Environment +371703,Environment,Environment +371701,Environment,Environment +347322,Environment,Environment +343757,Environment,Environment +343751,Environment,Environment +542808,Environment,Environment +540725,Environment,Environment +539131,Environment,Environment +538745,Environment,Environment +536912,Environment,Environment +536909,Environment,Environment +536541,Environment,Environment +533928,Environment,Environment +533264,Environment,Environment +515169,Environment,Environment +507432,Environment,Environment +506780,Environment,Environment +506779,Environment,Environment +500513,Environment,Environment +492240,Environment,Environment +492239,Environment,Environment +487414,Environment,Environment +454618,Environment,Environment +453047,Environment,Environment +442620,Environment,Environment +427854,Environment,Environment +80534,Other,community projects +80515,Other,community projects +148217,Other,Introductory Meeting +134975,Other,Introductory Meeting +83082,Other,ESA ExoMars Mission +83080,Other,ESA ExoMars Mission +83097,Other,ESA ExoMars Mission +83095,Other,ESA ExoMars Mission +83088,Other,ESA ExoMars Mission +157968,Other,Family caregiving +149078,Other,Family caregiving +449946,Labour,Labour +449945,Labour,Labour +352804,Labour,Labour +352803,Labour,Labour +352802,Labour,Labour +352801,Labour,Labour +352800,Labour,Labour +352780,Labour,Labour +349821,Labour,Labour +349523,Labour,Labour +348148,Labour,Labour +348146,Labour,Labour +344581,Labour,Labour +344579,Labour,Labour +344578,Labour,Labour +344577,Labour,Labour +344539,Labour,Labour +344538,Labour,Labour +344537,Labour,Labour +340024,Labour,Labour +340023,Labour,Labour +340022,Labour,Labour +339507,Labour,Labour +339506,Labour,Labour +339505,Labour,Labour +339504,Labour,Labour +339503,Labour,Labour +339502,Labour,Labour +339501,Labour,Labour +339500,Labour,Labour +339499,Labour,Labour +339498,Labour,Labour +339497,Labour,Labour +339494,Labour,Labour +339493,Labour,Labour +339243,Labour,Labour +339242,Labour,Labour +339238,Labour,Labour +339237,Labour,Labour +339235,Labour,Labour +339234,Labour,Labour +339233,Labour,Labour +339232,Labour,Labour +339231,Labour,Labour +339230,Labour,Labour +339229,Labour,Labour +336405,Labour,Labour +326536,Labour,Labour +326534,Labour,Labour +325994,Labour,Labour +323572,Labour,Labour +323565,Labour,Labour +277523,Labour,Labour +449943,Labour,Labour +449940,Labour,Labour +449939,Labour,Labour +449936,Labour,Labour +449933,Labour,Labour +449931,Labour,Labour +449925,Labour,Labour +449924,Labour,Labour +449915,Labour,Labour +449909,Labour,Labour +449888,Labour,Labour +434431,Labour,Labour +427368,Labour,Labour +398321,Labour,Labour +398320,Labour,Labour +390681,Labour,Labour +378525,Labour,Labour +378498,Labour,Labour +375290,Labour,Labour +375287,Labour,Labour +375280,Labour,Labour +354853,Labour,Labour +354852,Labour,Labour +354845,Labour,Labour +354844,Labour,Labour +354843,Labour,Labour +354842,Labour,Labour +354841,Labour,Labour +354840,Labour,Labour +354839,Labour,Labour +354838,Labour,Labour +354837,Labour,Labour +354835,Labour,Labour +354834,Labour,Labour +353277,Labour,Labour +353276,Labour,Labour +353275,Labour,Labour +353273,Labour,Labour +353271,Labour,Labour +353270,Labour,Labour +353269,Labour,Labour +353268,Labour,Labour +353267,Labour,Labour +353266,Labour,Labour +353265,Labour,Labour +352805,Labour,Labour +527936,Labour,Labour +527932,Labour,Labour +527931,Labour,Labour +527930,Labour,Labour +527929,Labour,Labour +527928,Labour,Labour +527927,Labour,Labour +527926,Labour,Labour +527925,Labour,Labour +527924,Labour,Labour +527923,Labour,Labour +468781,Labour,Labour +462620,Labour,Labour +462619,Labour,Labour +462618,Labour,Labour +462616,Labour,Labour +462615,Labour,Labour +462613,Labour,Labour +462609,Labour,Labour +462607,Labour,Labour +462603,Labour,Labour +462602,Labour,Labour +462594,Labour,Labour +457890,Labour,Labour +457888,Labour,Labour +456396,Labour,Labour +454230,Labour,Labour +454229,Labour,Labour +454228,Labour,Labour +454217,Labour,Labour +454216,Labour,Labour +454214,Labour,Labour +454213,Labour,Labour +454063,Labour,Labour +454062,Labour,Labour +454060,Labour,Labour +454059,Labour,Labour +454058,Labour,Labour +454057,Labour,Labour +454056,Labour,Labour +454055,Labour,Labour +454054,Labour,Labour +453331,Labour,Labour +453330,Labour,Labour +453329,Labour,Labour +453328,Labour,Labour +453327,Labour,Labour +453326,Labour,Labour +453324,Labour,Labour +453323,Labour,Labour +453322,Labour,Labour +453321,Labour,Labour +453320,Labour,Labour +453319,Labour,Labour +453318,Labour,Labour +453317,Labour,Labour +453316,Labour,Labour +453311,Labour,Labour +451361,Labour,Labour +451247,Labour,Labour +451246,Labour,Labour +451245,Labour,Labour +451244,Labour,Labour +451243,Labour,Labour +451242,Labour,Labour +451241,Labour,Labour +451240,Labour,Labour +451239,Labour,Labour +449953,Labour,Labour +449952,Labour,Labour +83037,Defence,Defence +109668,Defence,Defence +97919,Defence,Defence +92630,Defence,Defence +92629,Defence,Defence +109668,Government Procurement,Government Procurement +97919,Government Procurement,Government Procurement +92630,Government Procurement,Government Procurement +92629,Government Procurement,Government Procurement +88275,Government Procurement,Government Procurement +88274,Government Procurement,Government Procurement +83377,Government Procurement,Government Procurement +109668,Industry,Industry +97919,Industry,Industry +111238,Other,Food Labelling +109182,Other,Food Labelling +109181,Other,Food Labelling +97200,Other,Food Labelling +96867,Other,Food Labelling +96854,Other,Food Labelling +91635,Other,Food Labelling +89876,Other,Food Labelling +87799,Other,Food Labelling +84909,Other,Food Labelling +80761,Other,Food Labelling +133834,Other,Food Labelling +122474,Other,Food Labelling +115995,Other,Food Labelling +80765,Other,Security/Border Issues +80842,Environment,Environment +80841,Environment,Environment +101309,Environment,Environment +80842,Other,Innovation +80841,Other,Innovation +101309,Other,Innovation +134237,International Relations,International Relations +129041,Other,Issues affecting the broadcasting industry +129036,Other,Issues affecting the broadcasting industry +88103,Other,Issues affecting the broadcasting industry +88098,Other,Issues affecting the broadcasting industry +85347,Other,Issues affecting the broadcasting industry +82979,Other,Issues affecting the broadcasting industry +82978,Other,Issues affecting the broadcasting industry +80860,Other,Issues affecting the broadcasting industry +101260,Other,Issues affecting the broadcasting industry +101259,Other,Issues affecting the broadcasting industry +101257,Other,Issues affecting the broadcasting industry +101255,Other,Issues affecting the broadcasting industry +101254,Other,Issues affecting the broadcasting industry +101247,Other,Issues affecting the broadcasting industry +101245,Other,Issues affecting the broadcasting industry +96876,Other,Issues affecting the broadcasting industry +96875,Other,Issues affecting the broadcasting industry +96873,Other,Issues affecting the broadcasting industry +96859,Other,Issues affecting the broadcasting industry +93401,Other,Issues affecting the broadcasting industry +93397,Other,Issues affecting the broadcasting industry +93395,Other,Issues affecting the broadcasting industry +93394,Other,Issues affecting the broadcasting industry +93390,Other,Issues affecting the broadcasting industry +129032,Other,Issues affecting the broadcasting industry +129030,Other,Issues affecting the broadcasting industry +129027,Other,Issues affecting the broadcasting industry +129025,Other,Issues affecting the broadcasting industry +129023,Other,Issues affecting the broadcasting industry +125056,Other,Issues affecting the broadcasting industry +125055,Other,Issues affecting the broadcasting industry +125053,Other,Issues affecting the broadcasting industry +125052,Other,Issues affecting the broadcasting industry +125051,Other,Issues affecting the broadcasting industry +125049,Other,Issues affecting the broadcasting industry +125048,Other,Issues affecting the broadcasting industry +125047,Other,Issues affecting the broadcasting industry +125046,Other,Issues affecting the broadcasting industry +125045,Other,Issues affecting the broadcasting industry +125044,Other,Issues affecting the broadcasting industry +125043,Other,Issues affecting the broadcasting industry +125042,Other,Issues affecting the broadcasting industry +125041,Other,Issues affecting the broadcasting industry +125039,Other,Issues affecting the broadcasting industry +125038,Other,Issues affecting the broadcasting industry +124926,Other,Issues affecting the broadcasting industry +124924,Other,Issues affecting the broadcasting industry +124923,Other,Issues affecting the broadcasting industry +124919,Other,Issues affecting the broadcasting industry +124918,Other,Issues affecting the broadcasting industry +124916,Other,Issues affecting the broadcasting industry +124915,Other,Issues affecting the broadcasting industry +124914,Other,Issues affecting the broadcasting industry +124913,Other,Issues affecting the broadcasting industry +124911,Other,Issues affecting the broadcasting industry +124910,Other,Issues affecting the broadcasting industry +124908,Other,Issues affecting the broadcasting industry +124907,Other,Issues affecting the broadcasting industry +124906,Other,Issues affecting the broadcasting industry +124905,Other,Issues affecting the broadcasting industry +124904,Other,Issues affecting the broadcasting industry +121243,Other,Issues affecting the broadcasting industry +116837,Other,Issues affecting the broadcasting industry +116834,Other,Issues affecting the broadcasting industry +113954,Other,Issues affecting the broadcasting industry +109631,Other,Issues affecting the broadcasting industry +109629,Other,Issues affecting the broadcasting industry +145821,Other,Issues affecting the broadcasting industry +145819,Other,Issues affecting the broadcasting industry +145818,Other,Issues affecting the broadcasting industry +145817,Other,Issues affecting the broadcasting industry +145816,Other,Issues affecting the broadcasting industry +142425,Other,Issues affecting the broadcasting industry +138675,Other,Issues affecting the broadcasting industry +132426,Other,Issues affecting the broadcasting industry +132425,Other,Issues affecting the broadcasting industry +132424,Other,Issues affecting the broadcasting industry +129054,Other,Issues affecting the broadcasting industry +129052,Other,Issues affecting the broadcasting industry +129045,Other,Issues affecting the broadcasting industry +102814,Other,Canadian Space Agency +80975,Other,Canadian Space Agency +144914,Other,Aid Effectiveness +129040,Other,Aid Effectiveness +81056,Other,Aid Effectiveness +154892,Other,Aid Effectiveness +154876,Other,Aid Effectiveness +153424,Other,Aid Effectiveness +145991,Other,Aid Effectiveness +145985,Other,Aid Effectiveness +212298,Energy,Energy +202844,Energy,Energy +88019,Energy,Energy +152557,Energy,Energy +152520,Energy,Energy +202844,Environment,Environment +202839,Environment,Environment +90080,Environment,Environment +90079,Environment,Environment +90077,Environment,Environment +90076,Environment,Environment +90075,Environment,Environment +90074,Environment,Environment +90054,Environment,Environment +90039,Environment,Environment +90035,Environment,Environment +89994,Environment,Environment +89894,Environment,Environment +88116,Environment,Environment +88019,Environment,Environment +133515,Environment,Environment +133514,Environment,Environment +129101,Environment,Environment +129100,Environment,Environment +129096,Environment,Environment +100928,Environment,Environment +100884,Environment,Environment +100881,Environment,Environment +97187,Environment,Environment +97181,Environment,Environment +97174,Environment,Environment +97169,Environment,Environment +97160,Environment,Environment +93155,Environment,Environment +93153,Environment,Environment +93145,Environment,Environment +93136,Environment,Environment +93017,Environment,Environment +93016,Environment,Environment +90099,Environment,Environment +90098,Environment,Environment +90096,Environment,Environment +90092,Environment,Environment +90083,Environment,Environment +90082,Environment,Environment +90081,Environment,Environment +200289,Environment,Environment +200280,Environment,Environment +200260,Environment,Environment +200257,Environment,Environment +200251,Environment,Environment +200245,Environment,Environment +200219,Environment,Environment +200216,Environment,Environment +200209,Environment,Environment +194799,Environment,Environment +194797,Environment,Environment +194793,Environment,Environment +194790,Environment,Environment +194755,Environment,Environment +189631,Environment,Environment +189628,Environment,Environment +189627,Environment,Environment +189625,Environment,Environment +189624,Environment,Environment +189619,Environment,Environment +175730,Environment,Environment +175729,Environment,Environment +175728,Environment,Environment +175727,Environment,Environment +175526,Environment,Environment +175525,Environment,Environment +175504,Environment,Environment +173624,Environment,Environment +171960,Environment,Environment +168593,Environment,Environment +168589,Environment,Environment +168582,Environment,Environment +164393,Environment,Environment +164392,Environment,Environment +164391,Environment,Environment +164390,Environment,Environment +164389,Environment,Environment +164385,Environment,Environment +162223,Environment,Environment +162222,Environment,Environment +162219,Environment,Environment +159736,Environment,Environment +159732,Environment,Environment +154919,Environment,Environment +152557,Environment,Environment +152520,Environment,Environment +152518,Environment,Environment +150419,Environment,Environment +150415,Environment,Environment +150414,Environment,Environment +150413,Environment,Environment +142796,Environment,Environment +133520,Environment,Environment +230894,Environment,Environment +230893,Environment,Environment +230892,Environment,Environment +230890,Environment,Environment +230889,Environment,Environment +218115,Environment,Environment +218110,Environment,Environment +218107,Environment,Environment +218089,Environment,Environment +212310,Environment,Environment +212309,Environment,Environment +212307,Environment,Environment +212298,Environment,Environment +246429,Fisheries,Fisheries +233869,Fisheries,Fisheries +97187,Fisheries,Fisheries +97181,Fisheries,Fisheries +97174,Fisheries,Fisheries +97169,Fisheries,Fisheries +97160,Fisheries,Fisheries +88116,Fisheries,Fisheries +84215,Fisheries,Fisheries +152558,Fisheries,Fisheries +152519,Fisheries,Fisheries +150417,Fisheries,Fisheries +142798,Fisheries,Fisheries +142796,Fisheries,Fisheries +133519,Fisheries,Fisheries +133518,Fisheries,Fisheries +133517,Fisheries,Fisheries +233867,Fisheries,Fisheries +230894,Fisheries,Fisheries +230893,Fisheries,Fisheries +230892,Fisheries,Fisheries +218089,Fisheries,Fisheries +212310,Fisheries,Fisheries +212307,Fisheries,Fisheries +207271,Fisheries,Fisheries +202839,Fisheries,Fisheries +200260,Fisheries,Fisheries +194799,Fisheries,Fisheries +194797,Fisheries,Fisheries +194795,Fisheries,Fisheries +194793,Fisheries,Fisheries +194790,Fisheries,Fisheries +175504,Fisheries,Fisheries +168584,Fisheries,Fisheries +166123,Fisheries,Fisheries +164387,Fisheries,Fisheries +164386,Fisheries,Fisheries +164385,Fisheries,Fisheries +162222,Fisheries,Fisheries +158749,Fisheries,Fisheries +342070,Fisheries,Fisheries +310749,Fisheries,Fisheries +286469,Fisheries,Fisheries +283334,Fisheries,Fisheries +283331,Fisheries,Fisheries +283330,Fisheries,Fisheries +164387,Government Procurement,Government Procurement +218115,International Relations,International Relations +218110,International Relations,International Relations +93015,International Relations,International Relations +135985,Other,Regulation +129542,Other,Regulation +85595,Other,Regulation +81119,Other,Regulation +81118,Other,Regulation +81114,Other,Regulation +109818,Other,Regulation +101381,Other,Regulation +97821,Other,Regulation +93827,Other,Regulation +93826,Other,Regulation +145868,Other,Regulation +139678,Other,Regulation +109815,Other,Regulation +106496,Other,Regulation +97819,Other,Regulation +93811,Other,Regulation +88203,Other,Regulation +85602,Other,Regulation +83089,Other,Regulation +81121,Other,Regulation +81120,Other,Regulation +81116,Other,Regulation +81115,Other,Regulation +151220,Other,Regulation +151219,Other,Regulation +145872,Other,Regulation +143197,Other,Regulation +139675,Other,Regulation +135987,Other,Regulation +80197,Other,Airport security +132554,Other,Airport security +109170,Other,Airport security +115752,Health,Health +115751,Health,Health +115750,Health,Health +115749,Health,Health +115748,Health,Health +115747,Health,Health +115746,Health,Health +115754,Health,Health +475511,Employment and Training,Employment and Training +405864,Employment and Training,Employment and Training +161987,Employment and Training,Employment and Training +159174,Employment and Training,Employment and Training +159173,Employment and Training,Employment and Training +331239,Employment and Training,Employment and Training +318713,Employment and Training,Employment and Training +309814,Employment and Training,Employment and Training +295771,Employment and Training,Employment and Training +295770,Employment and Training,Employment and Training +249859,Employment and Training,Employment and Training +240432,Employment and Training,Employment and Training +230271,Employment and Training,Employment and Training +207396,Employment and Training,Employment and Training +200061,Employment and Training,Employment and Training +200054,Employment and Training,Employment and Training +200053,Employment and Training,Employment and Training +200052,Employment and Training,Employment and Training +200051,Employment and Training,Employment and Training +189691,Employment and Training,Employment and Training +399699,Employment and Training,Employment and Training +380604,Employment and Training,Employment and Training +355651,Employment and Training,Employment and Training +355262,Employment and Training,Employment and Training +355261,Employment and Training,Employment and Training +355243,Employment and Training,Employment and Training +355240,Employment and Training,Employment and Training +355239,Employment and Training,Employment and Training +355238,Employment and Training,Employment and Training +355236,Employment and Training,Employment and Training +355233,Employment and Training,Employment and Training +355231,Employment and Training,Employment and Training +355230,Employment and Training,Employment and Training +350458,Employment and Training,Employment and Training +335036,Employment and Training,Employment and Training +331241,Employment and Training,Employment and Training +537736,Employment and Training,Employment and Training +513027,Employment and Training,Employment and Training +207647,Fisheries,Fisheries +188428,Fisheries,Fisheries +81274,Fisheries,Fisheries +129895,Fisheries,Fisheries +129894,Fisheries,Fisheries +129874,Fisheries,Fisheries +129854,Fisheries,Fisheries +250758,Fisheries,Fisheries +233844,Fisheries,Fisheries +233841,Fisheries,Fisheries +207649,Fisheries,Fisheries +169263,Health,Health +161292,Health,Health +138601,Health,Health +138599,Health,Health +138598,Health,Health +138597,Health,Health +138596,Health,Health +125874,Health,Health +154401,Health,Health +154400,Health,Health +154399,Health,Health +154398,Health,Health +154397,Health,Health +154396,Health,Health +138602,Health,Health +169281,Health,Health +169271,Health,Health +169269,Health,Health +169255,Health,Health +169254,Health,Health +169258,Health,Health +169135,Health,Health +169134,Health,Health +324187,Health,Health +324186,Health,Health +324073,Health,Health +323971,Health,Health +290674,Health,Health +276676,Health,Health +169137,Health,Health +452647,Health,Health +452643,Health,Health +460486,Health,Health +459747,Health,Health +456920,Health,Health +456457,Health,Health +445248,Industry,Industry +445245,Industry,Industry +162138,Industry,Industry +82376,Industry,Industry +82374,Industry,Industry +81674,Industry,Industry +162142,Industry,Industry +280313,Industry,Industry +544075,Industry,Industry +543860,Industry,Industry +543777,Industry,Industry +472205,Industry,Industry +472204,Industry,Industry +472203,Industry,Industry +472202,Industry,Industry +472201,Industry,Industry +472200,Industry,Industry +463075,Industry,Industry +460486,Industry,Industry +459747,Industry,Industry +456920,Industry,Industry +456457,Industry,Industry +454783,Industry,Industry +454781,Industry,Industry +452647,Industry,Industry +452647,Infrastructure,Infrastructure +452643,Infrastructure,Infrastructure +100236,Infrastructure,Infrastructure +100235,Infrastructure,Infrastructure +94357,Infrastructure,Infrastructure +89743,Infrastructure,Infrastructure +82375,Infrastructure,Infrastructure +164324,Infrastructure,Infrastructure +125081,Infrastructure,Infrastructure +109871,Infrastructure,Infrastructure +109870,Infrastructure,Infrastructure +378792,Infrastructure,Infrastructure +378791,Infrastructure,Infrastructure +378790,Infrastructure,Infrastructure +311989,Infrastructure,Infrastructure +544085,Infrastructure,Infrastructure +538364,Infrastructure,Infrastructure +456457,Infrastructure,Infrastructure +81415,Other,Lung Health Framework +98038,Other,Lung Health Framework +88595,Other,Lung Health Framework +81434,Other,Risk +88180,Other,Risk +81436,Other,Risk +241115,Mining,Mining +202537,Mining,Mining +156802,Mining,Mining +163755,Mining,Mining +162039,Mining,Mining +180490,Mining,Mining +173550,Mining,Mining +277486,Mining,Mining +81494,Other,Presented input and recommendations relating to development of long term space plan to the CSA Executive Committee. +531816,Education,Education +531815,Education,Education +422870,Education,Education +415186,Education,Education +411090,Education,Education +427419,Education,Education +535978,Education,Education +531818,Education,Education +92626,Other,Income Security +92625,Other,Income Security +108860,Other,Income Security +407205,Transportation,Transportation +145177,Agriculture,Agriculture +145176,Agriculture,Agriculture +99494,Agriculture,Agriculture +145179,Agriculture,Agriculture +99495,Industry,Industry +95434,Industry,Industry +101307,Other,Procurement strategy +101303,Other,Procurement strategy +109170,Other,"Public Safety, border security, mass transit & port security" +105395,Other,"Public Safety, border security, mass transit & port security" +422547,Small Business,Small Business +526124,Small Business,Small Business +391858,Small Business,Small Business +447979,Small Business,Small Business +447965,Small Business,Small Business +447962,Small Business,Small Business +447955,Small Business,Small Business +437964,Small Business,Small Business +437963,Small Business,Small Business +437961,Small Business,Small Business +84135,Other,financial and other incentives from Canada Mortgage and Housing Corporation to encourage building energy retrofits +142494,Other,Aerospace & Defence +101312,Other,Aerospace & Defence +87665,Other,Aerospace & Defence +85042,Other,Aerospace & Defence +85036,Other,Aerospace & Defence +473419,Energy,Energy +473416,Energy,Energy +93094,Energy,Energy +87869,Energy,Energy +87868,Energy,Energy +87862,Energy,Energy +87860,Energy,Energy +87859,Energy,Energy +87858,Energy,Energy +84619,Energy,Energy +84617,Energy,Energy +84616,Energy,Energy +152050,Energy,Energy +150260,Energy,Energy +148001,Energy,Energy +148000,Energy,Energy +147999,Energy,Energy +147998,Energy,Energy +145955,Energy,Energy +145954,Energy,Energy +145953,Energy,Energy +145947,Energy,Energy +145944,Energy,Energy +145942,Energy,Energy +143035,Energy,Energy +143001,Energy,Energy +138610,Energy,Energy +120855,Energy,Energy +117103,Energy,Energy +109323,Energy,Energy +100712,Energy,Energy +97356,Energy,Energy +96902,Energy,Energy +93103,Energy,Energy +93095,Energy,Energy +170654,Energy,Energy +167771,Energy,Energy +167769,Energy,Energy +167768,Energy,Energy +167767,Energy,Energy +167765,Energy,Energy +165972,Energy,Energy +165970,Energy,Energy +165966,Energy,Energy +165965,Energy,Energy +165963,Energy,Energy +165961,Energy,Energy +165960,Energy,Energy +165959,Energy,Energy +165954,Energy,Energy +165952,Energy,Energy +165951,Energy,Energy +165943,Energy,Energy +164292,Energy,Energy +164287,Energy,Energy +164285,Energy,Energy +164283,Energy,Energy +164282,Energy,Energy +164281,Energy,Energy +164280,Energy,Energy +164279,Energy,Energy +164277,Energy,Energy +164274,Energy,Energy +164273,Energy,Energy +164272,Energy,Energy +164271,Energy,Energy +163753,Energy,Energy +163745,Energy,Energy +163741,Energy,Energy +163739,Energy,Energy +163736,Energy,Energy +161914,Energy,Energy +161911,Energy,Energy +161910,Energy,Energy +161909,Energy,Energy +161908,Energy,Energy +161907,Energy,Energy +161906,Energy,Energy +161903,Energy,Energy +161902,Energy,Energy +161895,Energy,Energy +160141,Energy,Energy +160138,Energy,Energy +153558,Energy,Energy +153557,Energy,Energy +152062,Energy,Energy +152059,Energy,Energy +152058,Energy,Energy +152057,Energy,Energy +152055,Energy,Energy +152054,Energy,Energy +152052,Energy,Energy +216271,Energy,Energy +216269,Energy,Energy +216268,Energy,Energy +216267,Energy,Energy +216154,Energy,Energy +212067,Energy,Energy +212027,Energy,Energy +212025,Energy,Energy +212023,Energy,Energy +212022,Energy,Energy +212018,Energy,Energy +212017,Energy,Energy +212013,Energy,Energy +212011,Energy,Energy +212010,Energy,Energy +212009,Energy,Energy +207275,Energy,Energy +207273,Energy,Energy +207269,Energy,Energy +207267,Energy,Energy +206447,Energy,Energy +202418,Energy,Energy +202409,Energy,Energy +202407,Energy,Energy +199772,Energy,Energy +199771,Energy,Energy +199770,Energy,Energy +199768,Energy,Energy +199767,Energy,Energy +199766,Energy,Energy +199765,Energy,Energy +199764,Energy,Energy +199763,Energy,Energy +199762,Energy,Energy +199760,Energy,Energy +199758,Energy,Energy +199757,Energy,Energy +199756,Energy,Energy +199753,Energy,Energy +199751,Energy,Energy +199748,Energy,Energy +199747,Energy,Energy +199745,Energy,Energy +199743,Energy,Energy +199728,Energy,Energy +199721,Energy,Energy +199718,Energy,Energy +199716,Energy,Energy +199713,Energy,Energy +199712,Energy,Energy +199711,Energy,Energy +199710,Energy,Energy +199707,Energy,Energy +199610,Energy,Energy +199605,Energy,Energy +199603,Energy,Energy +199600,Energy,Energy +199455,Energy,Energy +199454,Energy,Energy +199453,Energy,Energy +199452,Energy,Energy +199450,Energy,Energy +199448,Energy,Energy +199447,Energy,Energy +194834,Energy,Energy +194830,Energy,Energy +194828,Energy,Energy +194826,Energy,Energy +194825,Energy,Energy +194823,Energy,Energy +194807,Energy,Energy +194803,Energy,Energy +194801,Energy,Energy +193307,Energy,Energy +193306,Energy,Energy +193305,Energy,Energy +193304,Energy,Energy +193301,Energy,Energy +193299,Energy,Energy +193297,Energy,Energy +193295,Energy,Energy +188737,Energy,Energy +188736,Energy,Energy +188735,Energy,Energy +188732,Energy,Energy +188730,Energy,Energy +188727,Energy,Energy +188726,Energy,Energy +188723,Energy,Energy +188711,Energy,Energy +188710,Energy,Energy +188704,Energy,Energy +188703,Energy,Energy +188702,Energy,Energy +188701,Energy,Energy +188700,Energy,Energy +185404,Energy,Energy +178444,Energy,Energy +177465,Energy,Energy +175410,Energy,Energy +175281,Energy,Energy +175280,Energy,Energy +175279,Energy,Energy +175216,Energy,Energy +175215,Energy,Energy +175213,Energy,Energy +175212,Energy,Energy +175211,Energy,Energy +175210,Energy,Energy +175209,Energy,Energy +175208,Energy,Energy +175207,Energy,Energy +175206,Energy,Energy +175195,Energy,Energy +175193,Energy,Energy +175192,Energy,Energy +175191,Energy,Energy +175190,Energy,Energy +175189,Energy,Energy +175188,Energy,Energy +175185,Energy,Energy +175184,Energy,Energy +175179,Energy,Energy +173613,Energy,Energy +173607,Energy,Energy +173606,Energy,Energy +173604,Energy,Energy +173603,Energy,Energy +173597,Energy,Energy +171853,Energy,Energy +171851,Energy,Energy +170662,Energy,Energy +326009,Energy,Energy +324904,Energy,Energy +324901,Energy,Energy +324891,Energy,Energy +324890,Energy,Energy +321905,Energy,Energy +321901,Energy,Energy +321900,Energy,Energy +321898,Energy,Energy +321897,Energy,Energy +321886,Energy,Energy +318913,Energy,Energy +318912,Energy,Energy +318911,Energy,Energy +318910,Energy,Energy +318908,Energy,Energy +318907,Energy,Energy +318905,Energy,Energy +318902,Energy,Energy +318900,Energy,Energy +318899,Energy,Energy +318896,Energy,Energy +315177,Energy,Energy +315175,Energy,Energy +312833,Energy,Energy +312831,Energy,Energy +312829,Energy,Energy +309854,Energy,Energy +309848,Energy,Energy +309846,Energy,Energy +309833,Energy,Energy +309830,Energy,Energy +309827,Energy,Energy +302808,Energy,Energy +302805,Energy,Energy +302800,Energy,Energy +302796,Energy,Energy +302793,Energy,Energy +302733,Energy,Energy +302729,Energy,Energy +302715,Energy,Energy +302714,Energy,Energy +302713,Energy,Energy +302712,Energy,Energy +302711,Energy,Energy +302710,Energy,Energy +296175,Energy,Energy +296173,Energy,Energy +296171,Energy,Energy +296170,Energy,Energy +296164,Energy,Energy +296162,Energy,Energy +296161,Energy,Energy +296158,Energy,Energy +296157,Energy,Energy +296155,Energy,Energy +290735,Energy,Energy +290734,Energy,Energy +290733,Energy,Energy +290730,Energy,Energy +285874,Energy,Energy +285873,Energy,Energy +285871,Energy,Energy +285869,Energy,Energy +283831,Energy,Energy +280763,Energy,Energy +280761,Energy,Energy +280760,Energy,Energy +280759,Energy,Energy +280758,Energy,Energy +280756,Energy,Energy +280755,Energy,Energy +280753,Energy,Energy +280752,Energy,Energy +280751,Energy,Energy +280750,Energy,Energy +280749,Energy,Energy +280732,Energy,Energy +280731,Energy,Energy +277366,Energy,Energy +277362,Energy,Energy +277358,Energy,Energy +277355,Energy,Energy +277352,Energy,Energy +277344,Energy,Energy +277341,Energy,Energy +277339,Energy,Energy +277336,Energy,Energy +273407,Energy,Energy +273406,Energy,Energy +273405,Energy,Energy +273404,Energy,Energy +273403,Energy,Energy +273402,Energy,Energy +273401,Energy,Energy +273400,Energy,Energy +273399,Energy,Energy +273398,Energy,Energy +273397,Energy,Energy +273396,Energy,Energy +273395,Energy,Energy +273394,Energy,Energy +273393,Energy,Energy +273392,Energy,Energy +273391,Energy,Energy +273390,Energy,Energy +268091,Energy,Energy +268089,Energy,Energy +268072,Energy,Energy +268070,Energy,Energy +268069,Energy,Energy +268056,Energy,Energy +268053,Energy,Energy +263791,Energy,Energy +263790,Energy,Energy +263780,Energy,Energy +263776,Energy,Energy +263773,Energy,Energy +263772,Energy,Energy +263771,Energy,Energy +263769,Energy,Energy +259071,Energy,Energy +259061,Energy,Energy +259057,Energy,Energy +253732,Energy,Energy +253731,Energy,Energy +253730,Energy,Energy +253729,Energy,Energy +253691,Energy,Energy +253671,Energy,Energy +253670,Energy,Energy +253409,Energy,Energy +250376,Energy,Energy +250375,Energy,Energy +250373,Energy,Energy +250370,Energy,Energy +250367,Energy,Energy +250366,Energy,Energy +250365,Energy,Energy +250364,Energy,Energy +250363,Energy,Energy +250362,Energy,Energy +250361,Energy,Energy +250360,Energy,Energy +250359,Energy,Energy +250358,Energy,Energy +250357,Energy,Energy +250352,Energy,Energy +250350,Energy,Energy +250349,Energy,Energy +250348,Energy,Energy +250344,Energy,Energy +250329,Energy,Energy +250322,Energy,Energy +250315,Energy,Energy +245251,Energy,Energy +245250,Energy,Energy +245249,Energy,Energy +245248,Energy,Energy +245246,Energy,Energy +245245,Energy,Energy +245243,Energy,Energy +245054,Energy,Energy +245053,Energy,Energy +245052,Energy,Energy +245049,Energy,Energy +245046,Energy,Energy +245044,Energy,Energy +245043,Energy,Energy +245037,Energy,Energy +245034,Energy,Energy +245031,Energy,Energy +245029,Energy,Energy +245025,Energy,Energy +245021,Energy,Energy +244996,Energy,Energy +244994,Energy,Energy +240452,Energy,Energy +240451,Energy,Energy +240442,Energy,Energy +240440,Energy,Energy +240438,Energy,Energy +240435,Energy,Energy +240113,Energy,Energy +236660,Energy,Energy +236653,Energy,Energy +236649,Energy,Energy +233509,Energy,Energy +233508,Energy,Energy +233505,Energy,Energy +233504,Energy,Energy +233503,Energy,Energy +233502,Energy,Energy +233501,Energy,Energy +233498,Energy,Energy +233492,Energy,Energy +230171,Energy,Energy +229840,Energy,Energy +229838,Energy,Energy +229835,Energy,Energy +229771,Energy,Energy +229770,Energy,Energy +229769,Energy,Energy +229749,Energy,Energy +229742,Energy,Energy +229740,Energy,Energy +229734,Energy,Energy +229733,Energy,Energy +229543,Energy,Energy +228089,Energy,Energy +227895,Energy,Energy +227892,Energy,Energy +227891,Energy,Energy +227890,Energy,Energy +227889,Energy,Energy +227887,Energy,Energy +227886,Energy,Energy +227885,Energy,Energy +227882,Energy,Energy +227881,Energy,Energy +227880,Energy,Energy +227879,Energy,Energy +227878,Energy,Energy +227877,Energy,Energy +227876,Energy,Energy +227875,Energy,Energy +227874,Energy,Energy +227872,Energy,Energy +227870,Energy,Energy +227869,Energy,Energy +227375,Energy,Energy +227351,Energy,Energy +227346,Energy,Energy +227321,Energy,Energy +227319,Energy,Energy +227311,Energy,Energy +227309,Energy,Energy +227303,Energy,Energy +226966,Energy,Energy +224039,Energy,Energy +223128,Energy,Energy +223127,Energy,Energy +223111,Energy,Energy +223110,Energy,Energy +223103,Energy,Energy +216512,Energy,Energy +216510,Energy,Energy +216507,Energy,Energy +216488,Energy,Energy +216275,Energy,Energy +216274,Energy,Energy +216272,Energy,Energy +473414,Energy,Energy +473411,Energy,Energy +473405,Energy,Energy +473402,Energy,Energy +473399,Energy,Energy +473391,Energy,Energy +473388,Energy,Energy +473385,Energy,Energy +473383,Energy,Energy +473380,Energy,Energy +473378,Energy,Energy +473377,Energy,Energy +473372,Energy,Energy +473371,Energy,Energy +473370,Energy,Energy +473286,Energy,Energy +473280,Energy,Energy +473275,Energy,Energy +473272,Energy,Energy +473270,Energy,Energy +473267,Energy,Energy +473265,Energy,Energy +473263,Energy,Energy +473258,Energy,Energy +470915,Energy,Energy +470913,Energy,Energy +470911,Energy,Energy +470910,Energy,Energy +470909,Energy,Energy +470908,Energy,Energy +470905,Energy,Energy +470904,Energy,Energy +470901,Energy,Energy +470898,Energy,Energy +470887,Energy,Energy +470885,Energy,Energy +470881,Energy,Energy +470880,Energy,Energy +470879,Energy,Energy +470876,Energy,Energy +470874,Energy,Energy +470871,Energy,Energy +470869,Energy,Energy +470866,Energy,Energy +470864,Energy,Energy +470860,Energy,Energy +470858,Energy,Energy +470857,Energy,Energy +470854,Energy,Energy +470851,Energy,Energy +470850,Energy,Energy +470848,Energy,Energy +470847,Energy,Energy +470846,Energy,Energy +470844,Energy,Energy +470843,Energy,Energy +468516,Energy,Energy +468514,Energy,Energy +468513,Energy,Energy +468512,Energy,Energy +468510,Energy,Energy +468509,Energy,Energy +468507,Energy,Energy +468506,Energy,Energy +468505,Energy,Energy +468503,Energy,Energy +468499,Energy,Energy +468498,Energy,Energy +468496,Energy,Energy +468492,Energy,Energy +468489,Energy,Energy +468488,Energy,Energy +468486,Energy,Energy +468468,Energy,Energy +468467,Energy,Energy +468466,Energy,Energy +468465,Energy,Energy +464656,Energy,Energy +464652,Energy,Energy +464651,Energy,Energy +464649,Energy,Energy +464646,Energy,Energy +464644,Energy,Energy +464641,Energy,Energy +464636,Energy,Energy +464631,Energy,Energy +462792,Energy,Energy +462791,Energy,Energy +462790,Energy,Energy +462789,Energy,Energy +462788,Energy,Energy +462787,Energy,Energy +461787,Energy,Energy +461786,Energy,Energy +461785,Energy,Energy +461784,Energy,Energy +461783,Energy,Energy +461782,Energy,Energy +461781,Energy,Energy +461780,Energy,Energy +460721,Energy,Energy +460720,Energy,Energy +460719,Energy,Energy +460718,Energy,Energy +460717,Energy,Energy +460208,Energy,Energy +460205,Energy,Energy +459713,Energy,Energy +459712,Energy,Energy +459711,Energy,Energy +459710,Energy,Energy +458829,Energy,Energy +458828,Energy,Energy +458827,Energy,Energy +458826,Energy,Energy +458824,Energy,Energy +458821,Energy,Energy +456996,Energy,Energy +456995,Energy,Energy +456994,Energy,Energy +456993,Energy,Energy +456991,Energy,Energy +447212,Energy,Energy +443694,Energy,Energy +443693,Energy,Energy +443692,Energy,Energy +442310,Energy,Energy +438564,Energy,Energy +438562,Energy,Energy +438544,Energy,Energy +438534,Energy,Energy +436134,Energy,Energy +435299,Energy,Energy +435296,Energy,Energy +435292,Energy,Energy +435271,Energy,Energy +435267,Energy,Energy +435254,Energy,Energy +435248,Energy,Energy +435235,Energy,Energy +433584,Energy,Energy +433581,Energy,Energy +433580,Energy,Energy +433579,Energy,Energy +433578,Energy,Energy +433577,Energy,Energy +433576,Energy,Energy +433575,Energy,Energy +433574,Energy,Energy +433573,Energy,Energy +433571,Energy,Energy +433570,Energy,Energy +432224,Energy,Energy +432223,Energy,Energy +432221,Energy,Energy +430296,Energy,Energy +430295,Energy,Energy +428832,Energy,Energy +428815,Energy,Energy +428810,Energy,Energy +426020,Energy,Energy +426015,Energy,Energy +426014,Energy,Energy +426012,Energy,Energy +426010,Energy,Energy +426008,Energy,Energy +423895,Energy,Energy +423887,Energy,Energy +423884,Energy,Energy +423882,Energy,Energy +423874,Energy,Energy +423867,Energy,Energy +423858,Energy,Energy +421838,Energy,Energy +421837,Energy,Energy +419836,Energy,Energy +417606,Energy,Energy +415513,Energy,Energy +415511,Energy,Energy +415509,Energy,Energy +415506,Energy,Energy +415503,Energy,Energy +415501,Energy,Energy +415498,Energy,Energy +415496,Energy,Energy +415493,Energy,Energy +415492,Energy,Energy +415489,Energy,Energy +415487,Energy,Energy +415482,Energy,Energy +412272,Energy,Energy +412269,Energy,Energy +412261,Energy,Energy +412246,Energy,Energy +412243,Energy,Energy +412234,Energy,Energy +409121,Energy,Energy +409119,Energy,Energy +409113,Energy,Energy +407701,Energy,Energy +405055,Energy,Energy +405054,Energy,Energy +403169,Energy,Energy +403150,Energy,Energy +403137,Energy,Energy +403134,Energy,Energy +403132,Energy,Energy +398859,Energy,Energy +398855,Energy,Energy +398849,Energy,Energy +396875,Energy,Energy +396866,Energy,Energy +396862,Energy,Energy +396846,Energy,Energy +396840,Energy,Energy +393880,Energy,Energy +392191,Energy,Energy +391013,Energy,Energy +391009,Energy,Energy +391008,Energy,Energy +391006,Energy,Energy +391004,Energy,Energy +390994,Energy,Energy +390990,Energy,Energy +390988,Energy,Energy +390985,Energy,Energy +390982,Energy,Energy +390979,Energy,Energy +390974,Energy,Energy +384663,Energy,Energy +384658,Energy,Energy +383425,Energy,Energy +383424,Energy,Energy +383422,Energy,Energy +381138,Energy,Energy +378964,Energy,Energy +378961,Energy,Energy +378960,Energy,Energy +378958,Energy,Energy +378955,Energy,Energy +378953,Energy,Energy +378948,Energy,Energy +376371,Energy,Energy +376370,Energy,Energy +376369,Energy,Energy +376367,Energy,Energy +376366,Energy,Energy +376364,Energy,Energy +376361,Energy,Energy +376358,Energy,Energy +376356,Energy,Energy +374837,Energy,Energy +374836,Energy,Energy +374832,Energy,Energy +371380,Energy,Energy +371378,Energy,Energy +371375,Energy,Energy +371374,Energy,Energy +371371,Energy,Energy +371369,Energy,Energy +371366,Energy,Energy +370766,Energy,Energy +368930,Energy,Energy +364902,Energy,Energy +364900,Energy,Energy +363209,Energy,Energy +361973,Energy,Energy +361972,Energy,Energy +359450,Energy,Energy +357820,Energy,Energy +356061,Energy,Energy +356059,Energy,Energy +356058,Energy,Energy +351297,Energy,Energy +351295,Energy,Energy +351294,Energy,Energy +351282,Energy,Energy +351275,Energy,Energy +349241,Energy,Energy +349231,Energy,Energy +349211,Energy,Energy +347174,Energy,Energy +343602,Energy,Energy +341395,Energy,Energy +341392,Energy,Energy +341390,Energy,Energy +341388,Energy,Energy +341386,Energy,Energy +341384,Energy,Energy +341381,Energy,Energy +341380,Energy,Energy +341378,Energy,Energy +341376,Energy,Energy +341375,Energy,Energy +341373,Energy,Energy +341371,Energy,Energy +341369,Energy,Energy +341366,Energy,Energy +341365,Energy,Energy +341363,Energy,Energy +341362,Energy,Energy +341360,Energy,Energy +341358,Energy,Energy +341357,Energy,Energy +341355,Energy,Energy +341349,Energy,Energy +341347,Energy,Energy +341339,Energy,Energy +338579,Energy,Energy +338575,Energy,Energy +338572,Energy,Energy +338569,Energy,Energy +338566,Energy,Energy +338563,Energy,Energy +338559,Energy,Energy +338558,Energy,Energy +338557,Energy,Energy +338555,Energy,Energy +338552,Energy,Energy +335567,Energy,Energy +335194,Energy,Energy +335193,Energy,Energy +335192,Energy,Energy +335191,Energy,Energy +333401,Energy,Energy +333400,Energy,Energy +333398,Energy,Energy +333396,Energy,Energy +329950,Energy,Energy +329949,Energy,Energy +329947,Energy,Energy +329946,Energy,Energy +329945,Energy,Energy +329944,Energy,Energy +329940,Energy,Energy +329937,Energy,Energy +329934,Energy,Energy +329925,Energy,Energy +327370,Energy,Energy +327367,Energy,Energy +327365,Energy,Energy +327363,Energy,Energy +327362,Energy,Energy +327360,Energy,Energy +327359,Energy,Energy +327357,Energy,Energy +327356,Energy,Energy +327353,Energy,Energy +327352,Energy,Energy +327349,Energy,Energy +327348,Energy,Energy +543675,Energy,Energy +543672,Energy,Energy +543669,Energy,Energy +543668,Energy,Energy +543666,Energy,Energy +543665,Energy,Energy +543664,Energy,Energy +543662,Energy,Energy +543660,Energy,Energy +543659,Energy,Energy +543658,Energy,Energy +543655,Energy,Energy +543651,Energy,Energy +543645,Energy,Energy +541683,Energy,Energy +541682,Energy,Energy +541681,Energy,Energy +541680,Energy,Energy +540069,Energy,Energy +540067,Energy,Energy +540065,Energy,Energy +540063,Energy,Energy +540062,Energy,Energy +540056,Energy,Energy +540055,Energy,Energy +540054,Energy,Energy +540053,Energy,Energy +540051,Energy,Energy +540048,Energy,Energy +538280,Energy,Energy +538279,Energy,Energy +538274,Energy,Energy +538271,Energy,Energy +538270,Energy,Energy +538269,Energy,Energy +538267,Energy,Energy +538266,Energy,Energy +538264,Energy,Energy +538263,Energy,Energy +538259,Energy,Energy +538256,Energy,Energy +538252,Energy,Energy +538250,Energy,Energy +538247,Energy,Energy +538243,Energy,Energy +538238,Energy,Energy +538236,Energy,Energy +538233,Energy,Energy +538231,Energy,Energy +538229,Energy,Energy +538213,Energy,Energy +538212,Energy,Energy +538210,Energy,Energy +538205,Energy,Energy +535322,Energy,Energy +535320,Energy,Energy +535318,Energy,Energy +535310,Energy,Energy +535304,Energy,Energy +535302,Energy,Energy +535301,Energy,Energy +535299,Energy,Energy +535296,Energy,Energy +535293,Energy,Energy +535292,Energy,Energy +535286,Energy,Energy +535283,Energy,Energy +535281,Energy,Energy +535280,Energy,Energy +535278,Energy,Energy +535272,Energy,Energy +531295,Energy,Energy +531294,Energy,Energy +531292,Energy,Energy +531291,Energy,Energy +529530,Energy,Energy +529528,Energy,Energy +529527,Energy,Energy +529525,Energy,Energy +529523,Energy,Energy +529522,Energy,Energy +529521,Energy,Energy +529519,Energy,Energy +529518,Energy,Energy +529517,Energy,Energy +529516,Energy,Energy +529515,Energy,Energy +529514,Energy,Energy +529512,Energy,Energy +529511,Energy,Energy +529510,Energy,Energy +529509,Energy,Energy +529508,Energy,Energy +526055,Energy,Energy +526053,Energy,Energy +526051,Energy,Energy +526049,Energy,Energy +526046,Energy,Energy +526045,Energy,Energy +526043,Energy,Energy +526041,Energy,Energy +526040,Energy,Energy +526038,Energy,Energy +522668,Energy,Energy +522667,Energy,Energy +522666,Energy,Energy +522665,Energy,Energy +522664,Energy,Energy +522663,Energy,Energy +522662,Energy,Energy +522661,Energy,Energy +522660,Energy,Energy +522659,Energy,Energy +522658,Energy,Energy +522657,Energy,Energy +522656,Energy,Energy +519734,Energy,Energy +519732,Energy,Energy +519728,Energy,Energy +519727,Energy,Energy +519723,Energy,Energy +519720,Energy,Energy +519719,Energy,Energy +518165,Energy,Energy +518162,Energy,Energy +518161,Energy,Energy +518156,Energy,Energy +518155,Energy,Energy +518151,Energy,Energy +518137,Energy,Energy +518136,Energy,Energy +518132,Energy,Energy +515868,Energy,Energy +515867,Energy,Energy +514687,Energy,Energy +514686,Energy,Energy +513980,Energy,Energy +513979,Energy,Energy +513045,Energy,Energy +513044,Energy,Energy +513043,Energy,Energy +513042,Energy,Energy +513041,Energy,Energy +513040,Energy,Energy +510694,Energy,Energy +510691,Energy,Energy +510687,Energy,Energy +510685,Energy,Energy +510683,Energy,Energy +510681,Energy,Energy +510252,Energy,Energy +507745,Energy,Energy +507744,Energy,Energy +507743,Energy,Energy +507742,Energy,Energy +507741,Energy,Energy +507740,Energy,Energy +507739,Energy,Energy +507738,Energy,Energy +507737,Energy,Energy +507735,Energy,Energy +507733,Energy,Energy +507732,Energy,Energy +505094,Energy,Energy +504970,Energy,Energy +504968,Energy,Energy +504966,Energy,Energy +504964,Energy,Energy +504963,Energy,Energy +504958,Energy,Energy +504953,Energy,Energy +504949,Energy,Energy +504939,Energy,Energy +504936,Energy,Energy +504934,Energy,Energy +504913,Energy,Energy +501597,Energy,Energy +501596,Energy,Energy +501595,Energy,Energy +501594,Energy,Energy +501593,Energy,Energy +501592,Energy,Energy +501591,Energy,Energy +501590,Energy,Energy +501589,Energy,Energy +501588,Energy,Energy +501587,Energy,Energy +501586,Energy,Energy +501585,Energy,Energy +501584,Energy,Energy +501583,Energy,Energy +501582,Energy,Energy +501581,Energy,Energy +501580,Energy,Energy +501579,Energy,Energy +501578,Energy,Energy +501577,Energy,Energy +501576,Energy,Energy +501575,Energy,Energy +501573,Energy,Energy +501572,Energy,Energy +501571,Energy,Energy +501570,Energy,Energy +498582,Energy,Energy +498581,Energy,Energy +498580,Energy,Energy +498579,Energy,Energy +498578,Energy,Energy +498577,Energy,Energy +498576,Energy,Energy +498575,Energy,Energy +498573,Energy,Energy +498572,Energy,Energy +495682,Energy,Energy +495680,Energy,Energy +495679,Energy,Energy +495677,Energy,Energy +495675,Energy,Energy +495671,Energy,Energy +493279,Energy,Energy +493278,Energy,Energy +493276,Energy,Energy +493272,Energy,Energy +493271,Energy,Energy +493270,Energy,Energy +493269,Energy,Energy +493268,Energy,Energy +493266,Energy,Energy +493265,Energy,Energy +491382,Energy,Energy +491380,Energy,Energy +491377,Energy,Energy +491373,Energy,Energy +491369,Energy,Energy +491360,Energy,Energy +491357,Energy,Energy +491353,Energy,Energy +491352,Energy,Energy +491350,Energy,Energy +491349,Energy,Energy +491328,Energy,Energy +491326,Energy,Energy +491322,Energy,Energy +491314,Energy,Energy +491312,Energy,Energy +491308,Energy,Energy +491304,Energy,Energy +491297,Energy,Energy +487822,Energy,Energy +487819,Energy,Energy +487814,Energy,Energy +487810,Energy,Energy +487805,Energy,Energy +487804,Energy,Energy +487800,Energy,Energy +487798,Energy,Energy +487796,Energy,Energy +487795,Energy,Energy +487794,Energy,Energy +487791,Energy,Energy +487788,Energy,Energy +487787,Energy,Energy +487785,Energy,Energy +487784,Energy,Energy +487783,Energy,Energy +487780,Energy,Energy +487779,Energy,Energy +484581,Energy,Energy +484577,Energy,Energy +484575,Energy,Energy +484574,Energy,Energy +484572,Energy,Energy +484571,Energy,Energy +484569,Energy,Energy +484568,Energy,Energy +484567,Energy,Energy +484566,Energy,Energy +484565,Energy,Energy +484564,Energy,Energy +484560,Energy,Energy +484557,Energy,Energy +484556,Energy,Energy +484554,Energy,Energy +484553,Energy,Energy +484550,Energy,Energy +484549,Energy,Energy +484548,Energy,Energy +484546,Energy,Energy +484542,Energy,Energy +484539,Energy,Energy +484536,Energy,Energy +484534,Energy,Energy +484531,Energy,Energy +484525,Energy,Energy +484520,Energy,Energy +484518,Energy,Energy +481968,Energy,Energy +481967,Energy,Energy +481966,Energy,Energy +481965,Energy,Energy +481964,Energy,Energy +481963,Energy,Energy +481962,Energy,Energy +481960,Energy,Energy +481959,Energy,Energy +481956,Energy,Energy +480209,Energy,Energy +480207,Energy,Energy +480206,Energy,Energy +480205,Energy,Energy +480204,Energy,Energy +480203,Energy,Energy +480200,Energy,Energy +480199,Energy,Energy +480198,Energy,Energy +480197,Energy,Energy +480196,Energy,Energy +480195,Energy,Energy +480194,Energy,Energy +480193,Energy,Energy +480192,Energy,Energy +477604,Energy,Energy +477603,Energy,Energy +477600,Energy,Energy +477599,Energy,Energy +477598,Energy,Energy +477597,Energy,Energy +477596,Energy,Energy +477595,Energy,Energy +477594,Energy,Energy +477593,Energy,Energy +477591,Energy,Energy +477590,Energy,Energy +477587,Energy,Energy +477585,Energy,Energy +477583,Energy,Energy +477582,Energy,Energy +477580,Energy,Energy +475575,Energy,Energy +475573,Energy,Energy +475572,Energy,Energy +475570,Energy,Energy +475569,Energy,Energy +475568,Energy,Energy +475567,Energy,Energy +475565,Energy,Energy +475564,Energy,Energy +475562,Energy,Energy +475560,Energy,Energy +475559,Energy,Energy +475558,Energy,Energy +475556,Energy,Energy +475554,Energy,Energy +475552,Energy,Energy +475548,Energy,Energy +475546,Energy,Energy +475531,Energy,Energy +475529,Energy,Energy +475526,Energy,Energy +475524,Energy,Energy +475521,Energy,Energy +475519,Energy,Energy +475517,Energy,Energy +475515,Energy,Energy +475513,Energy,Energy +473463,Energy,Energy +473460,Energy,Energy +473459,Energy,Energy +473456,Energy,Energy +473455,Energy,Energy +473451,Energy,Energy +473447,Energy,Energy +473441,Energy,Energy +473437,Energy,Energy +473433,Energy,Energy +473431,Energy,Energy +473427,Energy,Energy +473426,Energy,Energy +473424,Energy,Energy +443705,Environment,Environment +442325,Environment,Environment +87862,Environment,Environment +87860,Environment,Environment +87859,Environment,Environment +84616,Environment,Environment +159239,Environment,Environment +154446,Environment,Environment +145956,Environment,Environment +143004,Environment,Environment +142998,Environment,Environment +142979,Environment,Environment +100712,Environment,Environment +96900,Environment,Environment +93101,Environment,Environment +93097,Environment,Environment +199751,Environment,Environment +199748,Environment,Environment +199719,Environment,Environment +199713,Environment,Environment +199710,Environment,Environment +199707,Environment,Environment +199610,Environment,Environment +199603,Environment,Environment +199600,Environment,Environment +199456,Environment,Environment +199452,Environment,Environment +199450,Environment,Environment +199448,Environment,Environment +194811,Environment,Environment +194806,Environment,Environment +193307,Environment,Environment +193306,Environment,Environment +193305,Environment,Environment +188727,Environment,Environment +188723,Environment,Environment +188711,Environment,Environment +188709,Environment,Environment +178444,Environment,Environment +177464,Environment,Environment +175219,Environment,Environment +175217,Environment,Environment +175214,Environment,Environment +175213,Environment,Environment +175208,Environment,Environment +175193,Environment,Environment +175190,Environment,Environment +175184,Environment,Environment +175179,Environment,Environment +173614,Environment,Environment +173607,Environment,Environment +173604,Environment,Environment +173603,Environment,Environment +173602,Environment,Environment +173589,Environment,Environment +171851,Environment,Environment +167769,Environment,Environment +167766,Environment,Environment +167764,Environment,Environment +165966,Environment,Environment +165960,Environment,Environment +165959,Environment,Environment +165954,Environment,Environment +165952,Environment,Environment +165945,Environment,Environment +164292,Environment,Environment +164287,Environment,Environment +164285,Environment,Environment +164283,Environment,Environment +164274,Environment,Environment +161927,Environment,Environment +161912,Environment,Environment +312835,Environment,Environment +309844,Environment,Environment +309842,Environment,Environment +309839,Environment,Environment +309821,Environment,Environment +302807,Environment,Environment +296160,Environment,Environment +296159,Environment,Environment +290733,Environment,Environment +290732,Environment,Environment +290729,Environment,Environment +287569,Environment,Environment +285872,Environment,Environment +280762,Environment,Environment +263800,Environment,Environment +263789,Environment,Environment +263788,Environment,Environment +263787,Environment,Environment +263783,Environment,Environment +263775,Environment,Environment +263774,Environment,Environment +259064,Environment,Environment +255929,Environment,Environment +250376,Environment,Environment +250375,Environment,Environment +250374,Environment,Environment +250372,Environment,Environment +250371,Environment,Environment +250369,Environment,Environment +250319,Environment,Environment +245239,Environment,Environment +245051,Environment,Environment +245048,Environment,Environment +245022,Environment,Environment +244993,Environment,Environment +244991,Environment,Environment +244989,Environment,Environment +244985,Environment,Environment +244984,Environment,Environment +244981,Environment,Environment +244980,Environment,Environment +240453,Environment,Environment +240450,Environment,Environment +240449,Environment,Environment +240437,Environment,Environment +240436,Environment,Environment +240112,Environment,Environment +240111,Environment,Environment +236664,Environment,Environment +236656,Environment,Environment +236655,Environment,Environment +236654,Environment,Environment +233509,Environment,Environment +233505,Environment,Environment +233504,Environment,Environment +233503,Environment,Environment +233502,Environment,Environment +233501,Environment,Environment +233498,Environment,Environment +233492,Environment,Environment +229774,Environment,Environment +229770,Environment,Environment +229769,Environment,Environment +229543,Environment,Environment +227895,Environment,Environment +227892,Environment,Environment +227891,Environment,Environment +227890,Environment,Environment +227889,Environment,Environment +227887,Environment,Environment +227886,Environment,Environment +227885,Environment,Environment +227884,Environment,Environment +227883,Environment,Environment +227882,Environment,Environment +227881,Environment,Environment +227880,Environment,Environment +227879,Environment,Environment +227878,Environment,Environment +227877,Environment,Environment +227875,Environment,Environment +227874,Environment,Environment +223128,Environment,Environment +223127,Environment,Environment +223111,Environment,Environment +216275,Environment,Environment +216274,Environment,Environment +216272,Environment,Environment +216271,Environment,Environment +216269,Environment,Environment +216268,Environment,Environment +216267,Environment,Environment +212025,Environment,Environment +207276,Environment,Environment +207272,Environment,Environment +207267,Environment,Environment +206447,Environment,Environment +202420,Environment,Environment +202418,Environment,Environment +199766,Environment,Environment +199765,Environment,Environment +199764,Environment,Environment +199763,Environment,Environment +199754,Environment,Environment +442324,Environment,Environment +442321,Environment,Environment +442318,Environment,Environment +442317,Environment,Environment +442314,Environment,Environment +442312,Environment,Environment +438576,Environment,Environment +438574,Environment,Environment +438568,Environment,Environment +438566,Environment,Environment +438558,Environment,Environment +438555,Environment,Environment +438539,Environment,Environment +438520,Environment,Environment +438512,Environment,Environment +435305,Environment,Environment +435289,Environment,Environment +435274,Environment,Environment +435265,Environment,Environment +435260,Environment,Environment +435251,Environment,Environment +435246,Environment,Environment +435242,Environment,Environment +433586,Environment,Environment +433585,Environment,Environment +433583,Environment,Environment +433582,Environment,Environment +433572,Environment,Environment +433568,Environment,Environment +432226,Environment,Environment +432225,Environment,Environment +430293,Environment,Environment +428818,Environment,Environment +428790,Environment,Environment +426027,Environment,Environment +426011,Environment,Environment +421847,Environment,Environment +421845,Environment,Environment +421844,Environment,Environment +421843,Environment,Environment +421842,Environment,Environment +417605,Environment,Environment +417604,Environment,Environment +417603,Environment,Environment +415515,Environment,Environment +412275,Environment,Environment +412250,Environment,Environment +412240,Environment,Environment +409118,Environment,Environment +409111,Environment,Environment +409095,Environment,Environment +407703,Environment,Environment +407697,Environment,Environment +407693,Environment,Environment +406550,Environment,Environment +406549,Environment,Environment +406547,Environment,Environment +406546,Environment,Environment +405052,Environment,Environment +405051,Environment,Environment +403171,Environment,Environment +403170,Environment,Environment +403147,Environment,Environment +403143,Environment,Environment +403139,Environment,Environment +400589,Environment,Environment +400585,Environment,Environment +398861,Environment,Environment +398845,Environment,Environment +396874,Environment,Environment +396836,Environment,Environment +391010,Environment,Environment +390999,Environment,Environment +387761,Environment,Environment +387759,Environment,Environment +387756,Environment,Environment +387753,Environment,Environment +387752,Environment,Environment +387750,Environment,Environment +387747,Environment,Environment +384664,Environment,Environment +383421,Environment,Environment +378951,Environment,Environment +374838,Environment,Environment +374835,Environment,Environment +374834,Environment,Environment +374833,Environment,Environment +371377,Environment,Environment +371370,Environment,Environment +368929,Environment,Environment +364901,Environment,Environment +359452,Environment,Environment +359451,Environment,Environment +359449,Environment,Environment +357822,Environment,Environment +357821,Environment,Environment +351300,Environment,Environment +349228,Environment,Environment +341398,Environment,Environment +341396,Environment,Environment +341352,Environment,Environment +341341,Environment,Environment +338550,Environment,Environment +333404,Environment,Environment +333393,Environment,Environment +329948,Environment,Environment +329942,Environment,Environment +327354,Environment,Environment +327351,Environment,Environment +324968,Environment,Environment +324896,Environment,Environment +324892,Environment,Environment +321894,Environment,Environment +321890,Environment,Environment +315179,Environment,Environment +315176,Environment,Environment +543675,Environment,Environment +543672,Environment,Environment +543669,Environment,Environment +543668,Environment,Environment +543666,Environment,Environment +543665,Environment,Environment +543664,Environment,Environment +543658,Environment,Environment +543651,Environment,Environment +541683,Environment,Environment +541682,Environment,Environment +541681,Environment,Environment +541680,Environment,Environment +540063,Environment,Environment +540056,Environment,Environment +540055,Environment,Environment +540053,Environment,Environment +538280,Environment,Environment +538275,Environment,Environment +538274,Environment,Environment +538271,Environment,Environment +538270,Environment,Environment +538252,Environment,Environment +538250,Environment,Environment +538236,Environment,Environment +538233,Environment,Environment +538231,Environment,Environment +538229,Environment,Environment +535310,Environment,Environment +535304,Environment,Environment +535302,Environment,Environment +535299,Environment,Environment +535296,Environment,Environment +535293,Environment,Environment +535292,Environment,Environment +535283,Environment,Environment +531295,Environment,Environment +531292,Environment,Environment +529523,Environment,Environment +529515,Environment,Environment +529512,Environment,Environment +529504,Environment,Environment +526055,Environment,Environment +526049,Environment,Environment +526045,Environment,Environment +526043,Environment,Environment +526038,Environment,Environment +522668,Environment,Environment +522667,Environment,Environment +522666,Environment,Environment +522665,Environment,Environment +522664,Environment,Environment +522660,Environment,Environment +522659,Environment,Environment +522658,Environment,Environment +522657,Environment,Environment +522656,Environment,Environment +519734,Environment,Environment +519732,Environment,Environment +519728,Environment,Environment +519720,Environment,Environment +519719,Environment,Environment +519717,Environment,Environment +518165,Environment,Environment +518162,Environment,Environment +518157,Environment,Environment +518155,Environment,Environment +518136,Environment,Environment +518135,Environment,Environment +515868,Environment,Environment +513980,Environment,Environment +513979,Environment,Environment +513045,Environment,Environment +513044,Environment,Environment +513043,Environment,Environment +513042,Environment,Environment +513041,Environment,Environment +513040,Environment,Environment +510687,Environment,Environment +510685,Environment,Environment +510683,Environment,Environment +510681,Environment,Environment +507745,Environment,Environment +507744,Environment,Environment +507743,Environment,Environment +507742,Environment,Environment +507741,Environment,Environment +507740,Environment,Environment +507739,Environment,Environment +507738,Environment,Environment +507737,Environment,Environment +507734,Environment,Environment +507733,Environment,Environment +507732,Environment,Environment +505094,Environment,Environment +504970,Environment,Environment +504964,Environment,Environment +504963,Environment,Environment +504960,Environment,Environment +504958,Environment,Environment +504941,Environment,Environment +504939,Environment,Environment +501597,Environment,Environment +501595,Environment,Environment +501594,Environment,Environment +501593,Environment,Environment +501592,Environment,Environment +501591,Environment,Environment +501590,Environment,Environment +501589,Environment,Environment +501588,Environment,Environment +501587,Environment,Environment +501585,Environment,Environment +501584,Environment,Environment +501581,Environment,Environment +501580,Environment,Environment +501573,Environment,Environment +501572,Environment,Environment +501571,Environment,Environment +498580,Environment,Environment +498579,Environment,Environment +498575,Environment,Environment +498574,Environment,Environment +495673,Environment,Environment +493278,Environment,Environment +493276,Environment,Environment +493272,Environment,Environment +493271,Environment,Environment +493270,Environment,Environment +493269,Environment,Environment +493268,Environment,Environment +493266,Environment,Environment +493265,Environment,Environment +491382,Environment,Environment +491380,Environment,Environment +491369,Environment,Environment +491350,Environment,Environment +491304,Environment,Environment +491301,Environment,Environment +487823,Environment,Environment +487822,Environment,Environment +487815,Environment,Environment +487793,Environment,Environment +481962,Environment,Environment +477602,Environment,Environment +477601,Environment,Environment +468509,Environment,Environment +468507,Environment,Environment +468506,Environment,Environment +468505,Environment,Environment +464664,Environment,Environment +464661,Environment,Environment +464647,Environment,Environment +464635,Environment,Environment +456997,Environment,Environment +456992,Environment,Environment +455537,Environment,Environment +455536,Environment,Environment +455535,Environment,Environment +455534,Environment,Environment +455531,Environment,Environment +455529,Environment,Environment +455528,Environment,Environment +455525,Environment,Environment +455523,Environment,Environment +452318,Environment,Environment +452316,Environment,Environment +452314,Environment,Environment +452312,Environment,Environment +452311,Environment,Environment +452309,Environment,Environment +452306,Environment,Environment +452294,Environment,Environment +449554,Environment,Environment +449548,Environment,Environment +447236,Environment,Environment +447234,Environment,Environment +447233,Environment,Environment +447232,Environment,Environment +447231,Environment,Environment +447227,Environment,Environment +447225,Environment,Environment +447218,Environment,Environment +447216,Environment,Environment +446862,Environment,Environment +446859,Environment,Environment +446857,Environment,Environment +445171,Environment,Environment +443956,Environment,Environment +403158,Fisheries,Fisheries +447215,Fisheries,Fisheries +290731,Fisheries,Fisheries +250333,Fisheries,Fisheries +250331,Fisheries,Fisheries +233507,Fisheries,Fisheries +376355,Fisheries,Fisheries +406543,Industry,Industry +405053,Industry,Industry +216148,Industry,Industry +216147,Industry,Industry +212088,Industry,Industry +202633,Industry,Industry +202632,Industry,Industry +202631,Industry,Industry +202630,Industry,Industry +202413,Industry,Industry +202412,Industry,Industry +202411,Industry,Industry +202410,Industry,Industry +200529,Industry,Industry +199447,Industry,Industry +351298,Industry,Industry +331375,Industry,Industry +268066,Industry,Industry +268065,Industry,Industry +535324,Industry,Industry +535316,Industry,Industry +535314,Industry,Industry +501597,Industry,Industry +501595,Industry,Industry +501586,Industry,Industry +501583,Industry,Industry +501575,Industry,Industry +498581,Industry,Industry +498580,Industry,Industry +498579,Industry,Industry +498578,Industry,Industry +498577,Industry,Industry +498572,Industry,Industry +423898,Industry,Industry +423871,Industry,Industry +409132,Industry,Industry +268063,International Trade,International Trade +504968,International Trade,International Trade +97360,International Trade,International Trade +93098,International Trade,International Trade +233508,International Trade,International Trade +223134,International Trade,International Trade +223131,International Trade,International Trade +150258,International Trade,International Trade +432222,International Trade,International Trade +421841,International Trade,International Trade +421840,International Trade,International Trade +421839,International Trade,International Trade +417607,International Trade,International Trade +103139,Other,Oil Sands +100712,Other,Oil Sands +96911,Other,Oil Sands +96903,Other,Oil Sands +89740,Other,Oil Sands +89736,Other,Oil Sands +87862,Other,Oil Sands +87860,Other,Oil Sands +87859,Other,Oil Sands +84616,Other,Oil Sands +126934,Other,Oil Sands +126915,Other,Oil Sands +126914,Other,Oil Sands +124887,Other,Oil Sands +120834,Other,Oil Sands +117105,Other,Oil Sands +117099,Other,Oil Sands +113218,Other,Oil Sands +185404,Regional Development,Regional Development +538203,Regional Development,Regional Development +173606,Regional Development,Regional Development +171853,Regional Development,Regional Development +170662,Regional Development,Regional Development +202630,Regional Development,Regional Development +543665,Taxation and Finance,Taxation and Finance +538238,Taxation and Finance,Taxation and Finance +97360,Taxation and Finance,Taxation and Finance +93098,Taxation and Finance,Taxation and Finance +165965,Taxation and Finance,Taxation and Finance +165963,Taxation and Finance,Taxation and Finance +165949,Taxation and Finance,Taxation and Finance +165943,Taxation and Finance,Taxation and Finance +164282,Taxation and Finance,Taxation and Finance +164281,Taxation and Finance,Taxation and Finance +164280,Taxation and Finance,Taxation and Finance +164279,Taxation and Finance,Taxation and Finance +164277,Taxation and Finance,Taxation and Finance +164273,Taxation and Finance,Taxation and Finance +164272,Taxation and Finance,Taxation and Finance +164271,Taxation and Finance,Taxation and Finance +163745,Taxation and Finance,Taxation and Finance +163743,Taxation and Finance,Taxation and Finance +163737,Taxation and Finance,Taxation and Finance +163736,Taxation and Finance,Taxation and Finance +161898,Taxation and Finance,Taxation and Finance +161897,Taxation and Finance,Taxation and Finance +159238,Taxation and Finance,Taxation and Finance +150258,Taxation and Finance,Taxation and Finance +128417,Taxation and Finance,Taxation and Finance +128416,Taxation and Finance,Taxation and Finance +128415,Taxation and Finance,Taxation and Finance +128414,Taxation and Finance,Taxation and Finance +128395,Taxation and Finance,Taxation and Finance +347173,Taxation and Finance,Taxation and Finance +333403,Taxation and Finance,Taxation and Finance +331377,Taxation and Finance,Taxation and Finance +277373,Taxation and Finance,Taxation and Finance +264138,Taxation and Finance,Taxation and Finance +259070,Taxation and Finance,Taxation and Finance +233493,Taxation and Finance,Taxation and Finance +223134,Taxation and Finance,Taxation and Finance +223131,Taxation and Finance,Taxation and Finance +212020,Taxation and Finance,Taxation and Finance +212007,Taxation and Finance,Taxation and Finance +207267,Taxation and Finance,Taxation and Finance +202419,Taxation and Finance,Taxation and Finance +202418,Taxation and Finance,Taxation and Finance +202415,Taxation and Finance,Taxation and Finance +202409,Taxation and Finance,Taxation and Finance +199766,Taxation and Finance,Taxation and Finance +199765,Taxation and Finance,Taxation and Finance +199764,Taxation and Finance,Taxation and Finance +199763,Taxation and Finance,Taxation and Finance +199748,Taxation and Finance,Taxation and Finance +199716,Taxation and Finance,Taxation and Finance +199612,Taxation and Finance,Taxation and Finance +199611,Taxation and Finance,Taxation and Finance +199455,Taxation and Finance,Taxation and Finance +199453,Taxation and Finance,Taxation and Finance +188704,Taxation and Finance,Taxation and Finance +188703,Taxation and Finance,Taxation and Finance +188702,Taxation and Finance,Taxation and Finance +188701,Taxation and Finance,Taxation and Finance +188700,Taxation and Finance,Taxation and Finance +175215,Taxation and Finance,Taxation and Finance +175212,Taxation and Finance,Taxation and Finance +175211,Taxation and Finance,Taxation and Finance +175210,Taxation and Finance,Taxation and Finance +175209,Taxation and Finance,Taxation and Finance +442328,Taxation and Finance,Taxation and Finance +442327,Taxation and Finance,Taxation and Finance +435264,Taxation and Finance,Taxation and Finance +430291,Taxation and Finance,Taxation and Finance +428828,Taxation and Finance,Taxation and Finance +428826,Taxation and Finance,Taxation and Finance +428823,Taxation and Finance,Taxation and Finance +428813,Taxation and Finance,Taxation and Finance +426022,Taxation and Finance,Taxation and Finance +412226,Taxation and Finance,Taxation and Finance +409117,Taxation and Finance,Taxation and Finance +409115,Taxation and Finance,Taxation and Finance +393880,Taxation and Finance,Taxation and Finance +391011,Taxation and Finance,Taxation and Finance +381137,Taxation and Finance,Taxation and Finance +376359,Taxation and Finance,Taxation and Finance +519717,Taxation and Finance,Taxation and Finance +518132,Taxation and Finance,Taxation and Finance +515868,Taxation and Finance,Taxation and Finance +510691,Taxation and Finance,Taxation and Finance +507737,Taxation and Finance,Taxation and Finance +507735,Taxation and Finance,Taxation and Finance +507734,Taxation and Finance,Taxation and Finance +504966,Taxation and Finance,Taxation and Finance +501586,Taxation and Finance,Taxation and Finance +501577,Taxation and Finance,Taxation and Finance +498582,Taxation and Finance,Taxation and Finance +495682,Taxation and Finance,Taxation and Finance +491349,Taxation and Finance,Taxation and Finance +491326,Taxation and Finance,Taxation and Finance +491322,Taxation and Finance,Taxation and Finance +487814,Taxation and Finance,Taxation and Finance +487805,Taxation and Finance,Taxation and Finance +487804,Taxation and Finance,Taxation and Finance +487800,Taxation and Finance,Taxation and Finance +487798,Taxation and Finance,Taxation and Finance +487796,Taxation and Finance,Taxation and Finance +487795,Taxation and Finance,Taxation and Finance +487794,Taxation and Finance,Taxation and Finance +487791,Taxation and Finance,Taxation and Finance +487788,Taxation and Finance,Taxation and Finance +487785,Taxation and Finance,Taxation and Finance +487784,Taxation and Finance,Taxation and Finance +487783,Taxation and Finance,Taxation and Finance +487780,Taxation and Finance,Taxation and Finance +487779,Taxation and Finance,Taxation and Finance +484581,Taxation and Finance,Taxation and Finance +484575,Taxation and Finance,Taxation and Finance +484572,Taxation and Finance,Taxation and Finance +484571,Taxation and Finance,Taxation and Finance +484569,Taxation and Finance,Taxation and Finance +484567,Taxation and Finance,Taxation and Finance +484566,Taxation and Finance,Taxation and Finance +484564,Taxation and Finance,Taxation and Finance +484560,Taxation and Finance,Taxation and Finance +484557,Taxation and Finance,Taxation and Finance +484556,Taxation and Finance,Taxation and Finance +484554,Taxation and Finance,Taxation and Finance +484553,Taxation and Finance,Taxation and Finance +484550,Taxation and Finance,Taxation and Finance +484549,Taxation and Finance,Taxation and Finance +484548,Taxation and Finance,Taxation and Finance +484546,Taxation and Finance,Taxation and Finance +484542,Taxation and Finance,Taxation and Finance +484539,Taxation and Finance,Taxation and Finance +484536,Taxation and Finance,Taxation and Finance +484534,Taxation and Finance,Taxation and Finance +484531,Taxation and Finance,Taxation and Finance +484525,Taxation and Finance,Taxation and Finance +484520,Taxation and Finance,Taxation and Finance +484518,Taxation and Finance,Taxation and Finance +481968,Taxation and Finance,Taxation and Finance +481965,Taxation and Finance,Taxation and Finance +481963,Taxation and Finance,Taxation and Finance +481960,Taxation and Finance,Taxation and Finance +481959,Taxation and Finance,Taxation and Finance +481956,Taxation and Finance,Taxation and Finance +480209,Taxation and Finance,Taxation and Finance +480207,Taxation and Finance,Taxation and Finance +480206,Taxation and Finance,Taxation and Finance +480203,Taxation and Finance,Taxation and Finance +480198,Taxation and Finance,Taxation and Finance +480197,Taxation and Finance,Taxation and Finance +480196,Taxation and Finance,Taxation and Finance +477604,Taxation and Finance,Taxation and Finance +477603,Taxation and Finance,Taxation and Finance +477600,Taxation and Finance,Taxation and Finance +477599,Taxation and Finance,Taxation and Finance +477598,Taxation and Finance,Taxation and Finance +477597,Taxation and Finance,Taxation and Finance +477595,Taxation and Finance,Taxation and Finance +477594,Taxation and Finance,Taxation and Finance +477593,Taxation and Finance,Taxation and Finance +477590,Taxation and Finance,Taxation and Finance +477587,Taxation and Finance,Taxation and Finance +477585,Taxation and Finance,Taxation and Finance +477582,Taxation and Finance,Taxation and Finance +475575,Taxation and Finance,Taxation and Finance +475573,Taxation and Finance,Taxation and Finance +475572,Taxation and Finance,Taxation and Finance +475570,Taxation and Finance,Taxation and Finance +475568,Taxation and Finance,Taxation and Finance +475567,Taxation and Finance,Taxation and Finance +475565,Taxation and Finance,Taxation and Finance +475564,Taxation and Finance,Taxation and Finance +475560,Taxation and Finance,Taxation and Finance +475559,Taxation and Finance,Taxation and Finance +475558,Taxation and Finance,Taxation and Finance +475556,Taxation and Finance,Taxation and Finance +475554,Taxation and Finance,Taxation and Finance +475552,Taxation and Finance,Taxation and Finance +475548,Taxation and Finance,Taxation and Finance +475546,Taxation and Finance,Taxation and Finance +475529,Taxation and Finance,Taxation and Finance +475526,Taxation and Finance,Taxation and Finance +475521,Taxation and Finance,Taxation and Finance +475519,Taxation and Finance,Taxation and Finance +475517,Taxation and Finance,Taxation and Finance +475513,Taxation and Finance,Taxation and Finance +473463,Taxation and Finance,Taxation and Finance +473460,Taxation and Finance,Taxation and Finance +473459,Taxation and Finance,Taxation and Finance +473456,Taxation and Finance,Taxation and Finance +473455,Taxation and Finance,Taxation and Finance +473451,Taxation and Finance,Taxation and Finance +473447,Taxation and Finance,Taxation and Finance +473441,Taxation and Finance,Taxation and Finance +473437,Taxation and Finance,Taxation and Finance +473433,Taxation and Finance,Taxation and Finance +473431,Taxation and Finance,Taxation and Finance +473427,Taxation and Finance,Taxation and Finance +473426,Taxation and Finance,Taxation and Finance +473424,Taxation and Finance,Taxation and Finance +473421,Taxation and Finance,Taxation and Finance +473419,Taxation and Finance,Taxation and Finance +473416,Taxation and Finance,Taxation and Finance +473414,Taxation and Finance,Taxation and Finance +473411,Taxation and Finance,Taxation and Finance +473405,Taxation and Finance,Taxation and Finance +473402,Taxation and Finance,Taxation and Finance +473399,Taxation and Finance,Taxation and Finance +473391,Taxation and Finance,Taxation and Finance +473388,Taxation and Finance,Taxation and Finance +473385,Taxation and Finance,Taxation and Finance +473383,Taxation and Finance,Taxation and Finance +473380,Taxation and Finance,Taxation and Finance +473378,Taxation and Finance,Taxation and Finance +473377,Taxation and Finance,Taxation and Finance +473372,Taxation and Finance,Taxation and Finance +473371,Taxation and Finance,Taxation and Finance +473370,Taxation and Finance,Taxation and Finance +473286,Taxation and Finance,Taxation and Finance +473280,Taxation and Finance,Taxation and Finance +473275,Taxation and Finance,Taxation and Finance +473270,Taxation and Finance,Taxation and Finance +473267,Taxation and Finance,Taxation and Finance +473265,Taxation and Finance,Taxation and Finance +473263,Taxation and Finance,Taxation and Finance +473258,Taxation and Finance,Taxation and Finance +470915,Taxation and Finance,Taxation and Finance +470913,Taxation and Finance,Taxation and Finance +470911,Taxation and Finance,Taxation and Finance +470910,Taxation and Finance,Taxation and Finance +470909,Taxation and Finance,Taxation and Finance +470908,Taxation and Finance,Taxation and Finance +470905,Taxation and Finance,Taxation and Finance +470904,Taxation and Finance,Taxation and Finance +470901,Taxation and Finance,Taxation and Finance +470898,Taxation and Finance,Taxation and Finance +470887,Taxation and Finance,Taxation and Finance +470885,Taxation and Finance,Taxation and Finance +470881,Taxation and Finance,Taxation and Finance +470880,Taxation and Finance,Taxation and Finance +470879,Taxation and Finance,Taxation and Finance +470876,Taxation and Finance,Taxation and Finance +470874,Taxation and Finance,Taxation and Finance +470871,Taxation and Finance,Taxation and Finance +470869,Taxation and Finance,Taxation and Finance +470866,Taxation and Finance,Taxation and Finance +470864,Taxation and Finance,Taxation and Finance +470860,Taxation and Finance,Taxation and Finance +470858,Taxation and Finance,Taxation and Finance +470857,Taxation and Finance,Taxation and Finance +470854,Taxation and Finance,Taxation and Finance +470851,Taxation and Finance,Taxation and Finance +470850,Taxation and Finance,Taxation and Finance +470848,Taxation and Finance,Taxation and Finance +470847,Taxation and Finance,Taxation and Finance +543675,Taxation and Finance,Taxation and Finance +543672,Taxation and Finance,Taxation and Finance +543669,Taxation and Finance,Taxation and Finance +543668,Taxation and Finance,Taxation and Finance +442326,Transportation,Transportation +428807,Transportation,Transportation +87869,Transportation,Transportation +87868,Transportation,Transportation +349239,Transportation,Transportation +341344,Transportation,Transportation +335568,Transportation,Transportation +321896,Transportation,Transportation +428803,Transportation,Transportation +428801,Transportation,Transportation +428796,Transportation,Transportation +535316,Transportation,Transportation +484565,Transportation,Transportation +468492,Transportation,Transportation +468491,Transportation,Transportation +452304,Transportation,Transportation +452298,Transportation,Transportation +452296,Transportation,Transportation +452295,Transportation,Transportation +452292,Transportation,Transportation +452290,Transportation,Transportation +384660,Employment and Training,Employment and Training +384659,Employment and Training,Employment and Training +117101,Employment and Training,Employment and Training +84618,Employment and Training,Employment and Training +338552,Employment and Training,Employment and Training +331376,Employment and Training,Employment and Training +329931,Employment and Training,Employment and Training +263798,Employment and Training,Employment and Training +212117,Employment and Training,Employment and Training +212096,Employment and Training,Employment and Training +384662,Employment and Training,Employment and Training +470848,Health,Health +470847,Health,Health +193309,Health,Health +393878,Health,Health +393876,Health,Health +393875,Health,Health +393873,Health,Health +393872,Health,Health +510691,Health,Health +495682,Health,Health +491349,Health,Health +491326,Health,Health +491322,Health,Health +487814,Health,Health +487805,Health,Health +487804,Health,Health +487800,Health,Health +487798,Health,Health +487796,Health,Health +487795,Health,Health +487794,Health,Health +487791,Health,Health +487788,Health,Health +487785,Health,Health +487784,Health,Health +487783,Health,Health +487780,Health,Health +487779,Health,Health +484581,Health,Health +484575,Health,Health +484572,Health,Health +484571,Health,Health +484569,Health,Health +484567,Health,Health +484566,Health,Health +484564,Health,Health +484560,Health,Health +484557,Health,Health +484556,Health,Health +484554,Health,Health +484553,Health,Health +484550,Health,Health +484549,Health,Health +484548,Health,Health +484546,Health,Health +484542,Health,Health +484539,Health,Health +484536,Health,Health +484534,Health,Health +484531,Health,Health +484525,Health,Health +484520,Health,Health +484518,Health,Health +481968,Health,Health +481965,Health,Health +481963,Health,Health +481960,Health,Health +481959,Health,Health +481956,Health,Health +480209,Health,Health +480207,Health,Health +480206,Health,Health +480203,Health,Health +480198,Health,Health +480197,Health,Health +480196,Health,Health +477604,Health,Health +477603,Health,Health +477600,Health,Health +477599,Health,Health +477598,Health,Health +477597,Health,Health +477595,Health,Health +477594,Health,Health +477593,Health,Health +477590,Health,Health +477587,Health,Health +477582,Health,Health +475575,Health,Health +475573,Health,Health +475572,Health,Health +475570,Health,Health +475568,Health,Health +475567,Health,Health +475565,Health,Health +475564,Health,Health +475560,Health,Health +475559,Health,Health +475558,Health,Health +475556,Health,Health +475554,Health,Health +475552,Health,Health +475548,Health,Health +475546,Health,Health +475529,Health,Health +475526,Health,Health +475521,Health,Health +475519,Health,Health +475517,Health,Health +475513,Health,Health +473463,Health,Health +473460,Health,Health +473459,Health,Health +473456,Health,Health +473455,Health,Health +473451,Health,Health +473447,Health,Health +473441,Health,Health +473437,Health,Health +473433,Health,Health +473431,Health,Health +473427,Health,Health +473426,Health,Health +473424,Health,Health +473421,Health,Health +473419,Health,Health +473416,Health,Health +473414,Health,Health +473411,Health,Health +473405,Health,Health +473402,Health,Health +473399,Health,Health +473391,Health,Health +473388,Health,Health +473385,Health,Health +473383,Health,Health +473380,Health,Health +473378,Health,Health +473377,Health,Health +473372,Health,Health +473371,Health,Health +473370,Health,Health +473286,Health,Health +473280,Health,Health +473275,Health,Health +473270,Health,Health +473267,Health,Health +473265,Health,Health +473263,Health,Health +473258,Health,Health +470915,Health,Health +470913,Health,Health +470911,Health,Health +470910,Health,Health +470909,Health,Health +470908,Health,Health +470905,Health,Health +470904,Health,Health +470901,Health,Health +470898,Health,Health +470887,Health,Health +470885,Health,Health +470881,Health,Health +470880,Health,Health +470879,Health,Health +470876,Health,Health +470874,Health,Health +470871,Health,Health +470869,Health,Health +470866,Health,Health +470864,Health,Health +470860,Health,Health +470858,Health,Health +470857,Health,Health +470854,Health,Health +470851,Health,Health +100261,Agriculture,Agriculture +100260,Agriculture,Agriculture +103619,Agriculture,Agriculture +103617,Agriculture,Agriculture +103616,Agriculture,Agriculture +100264,Agriculture,Agriculture +100263,Agriculture,Agriculture +100261,Financial Institutions,Financial Institutions +100260,Financial Institutions,Financial Institutions +103619,Financial Institutions,Financial Institutions +103617,Financial Institutions,Financial Institutions +103616,Financial Institutions,Financial Institutions +100264,Financial Institutions,Financial Institutions +100263,Financial Institutions,Financial Institutions +103619,Industry,Industry +103617,Industry,Industry +103616,Industry,Industry +100264,Industry,Industry +100263,Industry,Industry +100262,Industry,Industry +100261,Industry,Industry +100260,Industry,Industry +160802,Industry,Industry +100260,Transportation,Transportation +92622,Transportation,Transportation +138165,Transportation,Transportation +138164,Transportation,Transportation +103619,Transportation,Transportation +103617,Transportation,Transportation +103616,Transportation,Transportation +103615,Transportation,Transportation +100264,Transportation,Transportation +100263,Transportation,Transportation +100262,Transportation,Transportation +459736,Agriculture,Agriculture +459499,Agriculture,Agriculture +111454,Agriculture,Agriculture +106536,Agriculture,Agriculture +105854,Agriculture,Agriculture +105834,Agriculture,Agriculture +97530,Agriculture,Agriculture +159680,Agriculture,Agriculture +159678,Agriculture,Agriculture +159676,Agriculture,Agriculture +159672,Agriculture,Agriculture +159661,Agriculture,Agriculture +150018,Agriculture,Agriculture +150017,Agriculture,Agriculture +146914,Agriculture,Agriculture +144014,Agriculture,Agriculture +140094,Agriculture,Agriculture +136535,Agriculture,Agriculture +136515,Agriculture,Agriculture +136514,Agriculture,Agriculture +122694,Agriculture,Agriculture +122677,Agriculture,Agriculture +118316,Agriculture,Agriculture +118315,Agriculture,Agriculture +118314,Agriculture,Agriculture +273514,Agriculture,Agriculture +266249,Agriculture,Agriculture +233471,Agriculture,Agriculture +230727,Agriculture,Agriculture +227133,Agriculture,Agriculture +222373,Agriculture,Agriculture +222371,Agriculture,Agriculture +217787,Agriculture,Agriculture +199662,Agriculture,Agriculture +199660,Agriculture,Agriculture +193487,Agriculture,Agriculture +188678,Agriculture,Agriculture +175095,Agriculture,Agriculture +175090,Agriculture,Agriculture +170873,Agriculture,Agriculture +170872,Agriculture,Agriculture +170871,Agriculture,Agriculture +170870,Agriculture,Agriculture +170869,Agriculture,Agriculture +170868,Agriculture,Agriculture +170867,Agriculture,Agriculture +170863,Agriculture,Agriculture +170862,Agriculture,Agriculture +170861,Agriculture,Agriculture +170860,Agriculture,Agriculture +170859,Agriculture,Agriculture +170856,Agriculture,Agriculture +170855,Agriculture,Agriculture +170854,Agriculture,Agriculture +170853,Agriculture,Agriculture +170851,Agriculture,Agriculture +170850,Agriculture,Agriculture +170849,Agriculture,Agriculture +170848,Agriculture,Agriculture +170847,Agriculture,Agriculture +170845,Agriculture,Agriculture +170844,Agriculture,Agriculture +170842,Agriculture,Agriculture +170841,Agriculture,Agriculture +170840,Agriculture,Agriculture +170838,Agriculture,Agriculture +170837,Agriculture,Agriculture +170836,Agriculture,Agriculture +170834,Agriculture,Agriculture +170833,Agriculture,Agriculture +170831,Agriculture,Agriculture +170830,Agriculture,Agriculture +170829,Agriculture,Agriculture +170827,Agriculture,Agriculture +170826,Agriculture,Agriculture +170824,Agriculture,Agriculture +170789,Agriculture,Agriculture +170788,Agriculture,Agriculture +170787,Agriculture,Agriculture +170785,Agriculture,Agriculture +170784,Agriculture,Agriculture +170783,Agriculture,Agriculture +170781,Agriculture,Agriculture +170780,Agriculture,Agriculture +170779,Agriculture,Agriculture +170777,Agriculture,Agriculture +170776,Agriculture,Agriculture +170774,Agriculture,Agriculture +170773,Agriculture,Agriculture +170768,Agriculture,Agriculture +455546,Agriculture,Agriculture +450120,Agriculture,Agriculture +450117,Agriculture,Agriculture +444795,Agriculture,Agriculture +440943,Agriculture,Agriculture +440839,Agriculture,Agriculture +440838,Agriculture,Agriculture +440837,Agriculture,Agriculture +440836,Agriculture,Agriculture +440835,Agriculture,Agriculture +440834,Agriculture,Agriculture +440831,Agriculture,Agriculture +440830,Agriculture,Agriculture +440829,Agriculture,Agriculture +432788,Agriculture,Agriculture +416064,Agriculture,Agriculture +416062,Agriculture,Agriculture +416061,Agriculture,Agriculture +416060,Agriculture,Agriculture +416056,Agriculture,Agriculture +416046,Agriculture,Agriculture +414304,Agriculture,Agriculture +414303,Agriculture,Agriculture +414302,Agriculture,Agriculture +414300,Agriculture,Agriculture +414289,Agriculture,Agriculture +390991,Agriculture,Agriculture +390961,Agriculture,Agriculture +384641,Agriculture,Agriculture +383047,Agriculture,Agriculture +375885,Agriculture,Agriculture +375883,Agriculture,Agriculture +375878,Agriculture,Agriculture +365424,Agriculture,Agriculture +365016,Agriculture,Agriculture +362218,Agriculture,Agriculture +351506,Agriculture,Agriculture +351498,Agriculture,Agriculture +351495,Agriculture,Agriculture +340401,Agriculture,Agriculture +339929,Agriculture,Agriculture +327586,Agriculture,Agriculture +323805,Agriculture,Agriculture +323803,Agriculture,Agriculture +302359,Agriculture,Agriculture +543434,Agriculture,Agriculture +543428,Agriculture,Agriculture +542373,Agriculture,Agriculture +542372,Agriculture,Agriculture +542371,Agriculture,Agriculture +529977,Agriculture,Agriculture +524702,Agriculture,Agriculture +524701,Agriculture,Agriculture +521999,Agriculture,Agriculture +521997,Agriculture,Agriculture +521996,Agriculture,Agriculture +521993,Agriculture,Agriculture +521991,Agriculture,Agriculture +521989,Agriculture,Agriculture +521985,Agriculture,Agriculture +521981,Agriculture,Agriculture +521973,Agriculture,Agriculture +521970,Agriculture,Agriculture +521967,Agriculture,Agriculture +521964,Agriculture,Agriculture +516576,Agriculture,Agriculture +512318,Agriculture,Agriculture +512317,Agriculture,Agriculture +512316,Agriculture,Agriculture +510430,Agriculture,Agriculture +510425,Agriculture,Agriculture +507559,Agriculture,Agriculture +507555,Agriculture,Agriculture +507554,Agriculture,Agriculture +504526,Agriculture,Agriculture +504525,Agriculture,Agriculture +504522,Agriculture,Agriculture +504520,Agriculture,Agriculture +504518,Agriculture,Agriculture +504515,Agriculture,Agriculture +504514,Agriculture,Agriculture +504513,Agriculture,Agriculture +501236,Agriculture,Agriculture +496352,Agriculture,Agriculture +490601,Agriculture,Agriculture +490589,Agriculture,Agriculture +490582,Agriculture,Agriculture +490558,Agriculture,Agriculture +490553,Agriculture,Agriculture +488131,Agriculture,Agriculture +488127,Agriculture,Agriculture +488119,Agriculture,Agriculture +488086,Agriculture,Agriculture +485695,Agriculture,Agriculture +485694,Agriculture,Agriculture +485085,Agriculture,Agriculture +481737,Agriculture,Agriculture +481735,Agriculture,Agriculture +478043,Agriculture,Agriculture +478036,Agriculture,Agriculture +478033,Agriculture,Agriculture +475778,Agriculture,Agriculture +475761,Agriculture,Agriculture +469386,Agriculture,Agriculture +466688,Agriculture,Agriculture +466686,Agriculture,Agriculture +466685,Agriculture,Agriculture +466684,Agriculture,Agriculture +466683,Agriculture,Agriculture +466682,Agriculture,Agriculture +466674,Agriculture,Agriculture +464064,Agriculture,Agriculture +461871,Agriculture,Agriculture +460215,Agriculture,Agriculture +521981,Consumer Issues,Consumer Issues +521973,Consumer Issues,Consumer Issues +150018,Consumer Issues,Consumer Issues +150017,Consumer Issues,Consumer Issues +521999,Consumer Issues,Consumer Issues +521996,Consumer Issues,Consumer Issues +521993,Consumer Issues,Consumer Issues +521989,Consumer Issues,Consumer Issues +466683,Environment,Environment +542372,Environment,Environment +524701,Environment,Environment +521999,Environment,Environment +521997,Environment,Environment +521996,Environment,Environment +521993,Environment,Environment +521989,Environment,Environment +521985,Environment,Environment +521981,Environment,Environment +521973,Environment,Environment +521970,Environment,Environment +521967,Environment,Environment +521964,Environment,Environment +510425,Environment,Environment +507555,Environment,Environment +507554,Environment,Environment +504526,Environment,Environment +504525,Environment,Environment +504522,Environment,Environment +504520,Environment,Environment +466686,Environment,Environment +466685,Environment,Environment +504513,Health,Health +466688,Health,Health +466686,Health,Health +466685,Health,Health +466684,Health,Health +466683,Health,Health +440839,Health,Health +440838,Health,Health +440837,Health,Health +440836,Health,Health +440835,Health,Health +440834,Health,Health +440833,Health,Health +440831,Health,Health +440830,Health,Health +440829,Health,Health +414301,Health,Health +414299,Health,Health +414289,Health,Health +414288,Health,Health +529977,Health,Health +524701,Health,Health +521999,Health,Health +521996,Health,Health +521993,Health,Health +521991,Health,Health +521985,Health,Health +521973,Health,Health +521970,Health,Health +521967,Health,Health +521964,Health,Health +510425,Health,Health +507554,Health,Health +504526,Health,Health +504525,Health,Health +504520,Health,Health +323805,Internal Trade,Internal Trade +432788,Internal Trade,Internal Trade +122677,Internal Trade,Internal Trade +140094,Internal Trade,Internal Trade +136514,Internal Trade,Internal Trade +362219,Internal Trade,Internal Trade +362218,Internal Trade,Internal Trade +446931,International Trade,International Trade +542371,International Trade,International Trade +97528,International Trade,International Trade +87834,International Trade,International Trade +87829,International Trade,International Trade +85343,International Trade,International Trade +82554,International Trade,International Trade +159680,International Trade,International Trade +159678,International Trade,International Trade +159676,International Trade,International Trade +159672,International Trade,International Trade +159669,International Trade,International Trade +159661,International Trade,International Trade +150018,International Trade,International Trade +150017,International Trade,International Trade +122694,International Trade,International Trade +106536,International Trade,International Trade +105854,International Trade,International Trade +105834,International Trade,International Trade +105814,International Trade,International Trade +199662,International Trade,International Trade +199660,International Trade,International Trade +188678,International Trade,International Trade +175095,International Trade,International Trade +175090,International Trade,International Trade +340401,International Trade,International Trade +339929,International Trade,International Trade +327586,International Trade,International Trade +323805,International Trade,International Trade +273514,International Trade,International Trade +266249,International Trade,International Trade +227133,International Trade,International Trade +444795,International Trade,International Trade +440839,International Trade,International Trade +440838,International Trade,International Trade +440837,International Trade,International Trade +440836,International Trade,International Trade +440835,International Trade,International Trade +440834,International Trade,International Trade +440831,International Trade,International Trade +440830,International Trade,International Trade +440829,International Trade,International Trade +429743,International Trade,International Trade +429742,International Trade,International Trade +429741,International Trade,International Trade +429676,International Trade,International Trade +416064,International Trade,International Trade +416062,International Trade,International Trade +416061,International Trade,International Trade +416060,International Trade,International Trade +416056,International Trade,International Trade +416052,International Trade,International Trade +416051,International Trade,International Trade +416048,International Trade,International Trade +416044,International Trade,International Trade +414300,International Trade,International Trade +414289,International Trade,International Trade +402231,International Trade,International Trade +402230,International Trade,International Trade +365424,International Trade,International Trade +365016,International Trade,International Trade +529977,International Trade,International Trade +524702,International Trade,International Trade +524701,International Trade,International Trade +521999,International Trade,International Trade +521996,International Trade,International Trade +521993,International Trade,International Trade +521991,International Trade,International Trade +521989,International Trade,International Trade +521985,International Trade,International Trade +521981,International Trade,International Trade +521973,International Trade,International Trade +521970,International Trade,International Trade +521967,International Trade,International Trade +521964,International Trade,International Trade +510430,International Trade,International Trade +504514,International Trade,International Trade +490601,International Trade,International Trade +490582,International Trade,International Trade +490558,International Trade,International Trade +490553,International Trade,International Trade +488131,International Trade,International Trade +488127,International Trade,International Trade +488119,International Trade,International Trade +485695,International Trade,International Trade +485694,International Trade,International Trade +485085,International Trade,International Trade +481737,International Trade,International Trade +481735,International Trade,International Trade +479336,International Trade,International Trade +479335,International Trade,International Trade +479334,International Trade,International Trade +479332,International Trade,International Trade +478043,International Trade,International Trade +478036,International Trade,International Trade +478033,International Trade,International Trade +469386,International Trade,International Trade +466688,International Trade,International Trade +466687,International Trade,International Trade +466686,International Trade,International Trade +466685,International Trade,International Trade +466684,International Trade,International Trade +466683,International Trade,International Trade +466682,International Trade,International Trade +466674,International Trade,International Trade +464064,International Trade,International Trade +460215,International Trade,International Trade +459737,International Trade,International Trade +459736,International Trade,International Trade +459499,International Trade,International Trade +455546,International Trade,International Trade +450117,International Trade,International Trade +324131,Health,Health +324071,Health,Health +276908,Health,Health +276907,Health,Health +324165,Health,Health +324164,Health,Health +148223,Other,Automotive Innovation Fund +121716,Other,Automotive Innovation Fund +90572,Other,Automotive Innovation Fund +90548,Other,Automotive Innovation Fund +82930,Other,Automotive Innovation Fund +82929,Other,Automotive Innovation Fund +82928,Other,Automotive Innovation Fund +82926,Other,Automotive Innovation Fund +98403,Other,Canadian Vehicle Fuel Consumption Regulations +98354,Other,Canadian Vehicle Fuel Consumption Regulations +148223,Other,Canadian Vehicle Fuel Consumption Regulations +148247,Consumer Issues,Consumer Issues +148223,Consumer Issues,Consumer Issues +90572,Consumer Issues,Consumer Issues +90548,Consumer Issues,Consumer Issues +117524,Consumer Issues,Consumer Issues +117522,Consumer Issues,Consumer Issues +109780,Consumer Issues,Consumer Issues +109661,Consumer Issues,Consumer Issues +109659,Consumer Issues,Consumer Issues +109658,Consumer Issues,Consumer Issues +186005,Consumer Issues,Consumer Issues +458695,Energy,Energy +510221,Energy,Energy +148247,Energy,Energy +121237,Energy,Energy +260590,Energy,Energy +260589,Energy,Energy +260570,Energy,Energy +186006,Energy,Energy +168111,Energy,Energy +165957,Energy,Energy +165944,Energy,Energy +163225,Energy,Energy +378457,Energy,Energy +504845,Environment,Environment +504836,Environment,Environment +101273,Environment,Environment +152118,Environment,Environment +148247,Environment,Environment +148223,Environment,Environment +145948,Environment,Environment +145943,Environment,Environment +143055,Environment,Environment +121718,Environment,Environment +121714,Environment,Environment +121237,Environment,Environment +117520,Environment,Environment +117518,Environment,Environment +117515,Environment,Environment +104574,Environment,Environment +104556,Environment,Environment +104555,Environment,Environment +104554,Environment,Environment +104535,Environment,Environment +104534,Environment,Environment +104515,Environment,Environment +101620,Environment,Environment +101618,Environment,Environment +101284,Environment,Environment +260590,Environment,Environment +246669,Environment,Environment +230339,Environment,Environment +216167,Environment,Environment +210407,Environment,Environment +201488,Environment,Environment +190264,Environment,Environment +190113,Environment,Environment +190111,Environment,Environment +190066,Environment,Environment +190064,Environment,Environment +186006,Environment,Environment +175786,Environment,Environment +172225,Environment,Environment +168369,Environment,Environment +168111,Environment,Environment +165957,Environment,Environment +165944,Environment,Environment +162970,Environment,Environment +162965,Environment,Environment +157194,Environment,Environment +153242,Environment,Environment +153241,Environment,Environment +395707,Environment,Environment +395699,Environment,Environment +392695,Environment,Environment +386026,Environment,Environment +386025,Environment,Environment +378454,Environment,Environment +370943,Environment,Environment +370942,Environment,Environment +370941,Environment,Environment +370940,Environment,Environment +370939,Environment,Environment +370938,Environment,Environment +370937,Environment,Environment +370936,Environment,Environment +370935,Environment,Environment +370934,Environment,Environment +370933,Environment,Environment +370932,Environment,Environment +370931,Environment,Environment +370930,Environment,Environment +370924,Environment,Environment +370923,Environment,Environment +370921,Environment,Environment +370919,Environment,Environment +370918,Environment,Environment +370917,Environment,Environment +370916,Environment,Environment +370915,Environment,Environment +370913,Environment,Environment +370912,Environment,Environment +370909,Environment,Environment +370907,Environment,Environment +369468,Environment,Environment +363343,Environment,Environment +359026,Environment,Environment +351325,Environment,Environment +343825,Environment,Environment +336189,Environment,Environment +329714,Environment,Environment +329713,Environment,Environment +329711,Environment,Environment +321390,Environment,Environment +318670,Environment,Environment +318668,Environment,Environment +307549,Environment,Environment +301598,Environment,Environment +295449,Environment,Environment +295429,Environment,Environment +280710,Environment,Environment +498471,Environment,Environment +498466,Environment,Environment +498458,Environment,Environment +498455,Environment,Environment +498454,Environment,Environment +498453,Environment,Environment +498443,Environment,Environment +495466,Environment,Environment +494713,Environment,Environment +470296,Environment,Environment +465273,Environment,Environment +464028,Environment,Environment +464022,Environment,Environment +462176,Environment,Environment +462175,Environment,Environment +462173,Environment,Environment +462172,Environment,Environment +462160,Environment,Environment +452291,Environment,Environment +452289,Environment,Environment +452287,Environment,Environment +452286,Environment,Environment +450338,Environment,Environment +450335,Environment,Environment +447152,Environment,Environment +447151,Environment,Environment +447150,Environment,Environment +441411,Environment,Environment +441407,Environment,Environment +440379,Environment,Environment +439002,Environment,Environment +438987,Environment,Environment +435471,Environment,Environment +435470,Environment,Environment +435338,Environment,Environment +435337,Environment,Environment +435332,Environment,Environment +432403,Environment,Environment +430759,Environment,Environment +430756,Environment,Environment +428061,Environment,Environment +427100,Environment,Environment +427099,Environment,Environment +413388,Environment,Environment +410004,Environment,Environment +410002,Environment,Environment +405697,Environment,Environment +395710,Environment,Environment +543670,Environment,Environment +537986,Environment,Environment +537243,Environment,Environment +537242,Environment,Environment +531250,Environment,Environment +528549,Environment,Environment +528546,Environment,Environment +528545,Environment,Environment +528541,Environment,Environment +528142,Environment,Environment +525344,Environment,Environment +525335,Environment,Environment +234712,Financial Institutions,Financial Institutions +223607,Financial Institutions,Financial Institutions +148247,Financial Institutions,Financial Institutions +146074,Financial Institutions,Financial Institutions +145950,Financial Institutions,Financial Institutions +145943,Financial Institutions,Financial Institutions +145900,Financial Institutions,Financial Institutions +88069,Financial Institutions,Financial Institutions +441446,Industry,Industry +441445,Industry,Industry +101273,Industry,Industry +98614,Industry,Industry +98396,Industry,Industry +90572,Industry,Industry +90548,Industry,Industry +87980,Industry,Industry +87979,Industry,Industry +145948,Industry,Industry +145943,Industry,Industry +145900,Industry,Industry +124941,Industry,Industry +121716,Industry,Industry +121715,Industry,Industry +121714,Industry,Industry +117524,Industry,Industry +117522,Industry,Industry +117520,Industry,Industry +117518,Industry,Industry +109780,Industry,Industry +109661,Industry,Industry +109659,Industry,Industry +109658,Industry,Industry +104574,Industry,Industry +104556,Industry,Industry +104555,Industry,Industry +104554,Industry,Industry +104535,Industry,Industry +104534,Industry,Industry +104515,Industry,Industry +101620,Industry,Industry +101618,Industry,Industry +101284,Industry,Industry +241291,Industry,Industry +241283,Industry,Industry +241273,Industry,Industry +241268,Industry,Industry +241265,Industry,Industry +241264,Industry,Industry +241263,Industry,Industry +241262,Industry,Industry +241261,Industry,Industry +241260,Industry,Industry +241259,Industry,Industry +241258,Industry,Industry +241257,Industry,Industry +241256,Industry,Industry +241255,Industry,Industry +241254,Industry,Industry +241251,Industry,Industry +241248,Industry,Industry +241246,Industry,Industry +241245,Industry,Industry +241244,Industry,Industry +241243,Industry,Industry +241242,Industry,Industry +241239,Industry,Industry +241235,Industry,Industry +241233,Industry,Industry +241224,Industry,Industry +227190,Industry,Industry +223624,Industry,Industry +223615,Industry,Industry +223612,Industry,Industry +210549,Industry,Industry +205915,Industry,Industry +205914,Industry,Industry +205913,Industry,Industry +205912,Industry,Industry +203369,Industry,Industry +203368,Industry,Industry +195924,Industry,Industry +190113,Industry,Industry +190111,Industry,Industry +190066,Industry,Industry +190064,Industry,Industry +186006,Industry,Industry +172225,Industry,Industry +168925,Industry,Industry +168369,Industry,Industry +165957,Industry,Industry +165946,Industry,Industry +165944,Industry,Industry +162970,Industry,Industry +162969,Industry,Industry +162965,Industry,Industry +162964,Industry,Industry +148247,Industry,Industry +148223,Industry,Industry +146074,Industry,Industry +145950,Industry,Industry +145949,Industry,Industry +337907,Industry,Industry +337906,Industry,Industry +337905,Industry,Industry +337904,Industry,Industry +337902,Industry,Industry +337899,Industry,Industry +337898,Industry,Industry +337897,Industry,Industry +337894,Industry,Industry +335693,Industry,Industry +335690,Industry,Industry +335688,Industry,Industry +335687,Industry,Industry +335686,Industry,Industry +335652,Industry,Industry +335649,Industry,Industry +335648,Industry,Industry +335644,Industry,Industry +335642,Industry,Industry +335639,Industry,Industry +335636,Industry,Industry +335635,Industry,Industry +333221,Industry,Industry +333220,Industry,Industry +333219,Industry,Industry +333218,Industry,Industry +333215,Industry,Industry +333214,Industry,Industry +333213,Industry,Industry +333212,Industry,Industry +331200,Industry,Industry +331199,Industry,Industry +331198,Industry,Industry +331197,Industry,Industry +331196,Industry,Industry +324347,Industry,Industry +324339,Industry,Industry +321388,Industry,Industry +321387,Industry,Industry +315817,Industry,Industry +315816,Industry,Industry +315815,Industry,Industry +315814,Industry,Industry +315813,Industry,Industry +312533,Industry,Industry +312532,Industry,Industry +312531,Industry,Industry +312530,Industry,Industry +312529,Industry,Industry +312516,Industry,Industry +312515,Industry,Industry +312514,Industry,Industry +312512,Industry,Industry +312510,Industry,Industry +312509,Industry,Industry +308029,Industry,Industry +307876,Industry,Industry +307875,Industry,Industry +307850,Industry,Industry +307849,Industry,Industry +307830,Industry,Industry +307829,Industry,Industry +307558,Industry,Industry +307557,Industry,Industry +307556,Industry,Industry +306909,Industry,Industry +306871,Industry,Industry +306870,Industry,Industry +306869,Industry,Industry +306853,Industry,Industry +306852,Industry,Industry +306849,Industry,Industry +306653,Industry,Industry +306652,Industry,Industry +306651,Industry,Industry +306650,Industry,Industry +306649,Industry,Industry +306646,Industry,Industry +306645,Industry,Industry +306644,Industry,Industry +306643,Industry,Industry +306642,Industry,Industry +306641,Industry,Industry +306640,Industry,Industry +306639,Industry,Industry +306638,Industry,Industry +306637,Industry,Industry +306634,Industry,Industry +306633,Industry,Industry +306632,Industry,Industry +306631,Industry,Industry +306630,Industry,Industry +306629,Industry,Industry +306628,Industry,Industry +306627,Industry,Industry +306626,Industry,Industry +306625,Industry,Industry +306624,Industry,Industry +306623,Industry,Industry +306622,Industry,Industry +306621,Industry,Industry +306620,Industry,Industry +306619,Industry,Industry +306618,Industry,Industry +306617,Industry,Industry +306616,Industry,Industry +306615,Industry,Industry +306614,Industry,Industry +306613,Industry,Industry +306612,Industry,Industry +306611,Industry,Industry +306610,Industry,Industry +306609,Industry,Industry +301598,Industry,Industry +301573,Industry,Industry +301572,Industry,Industry +301570,Industry,Industry +301559,Industry,Industry +301558,Industry,Industry +301554,Industry,Industry +295451,Industry,Industry +290910,Industry,Industry +285451,Industry,Industry +285450,Industry,Industry +285431,Industry,Industry +265169,Industry,Industry +241295,Industry,Industry +241294,Industry,Industry +241293,Industry,Industry +241292,Industry,Industry +441444,Industry,Industry +441398,Industry,Industry +441397,Industry,Industry +441392,Industry,Industry +441390,Industry,Industry +440413,Industry,Industry +440411,Industry,Industry +440410,Industry,Industry +440409,Industry,Industry +440408,Industry,Industry +440386,Industry,Industry +440383,Industry,Industry +440382,Industry,Industry +440381,Industry,Industry +440380,Industry,Industry +440379,Industry,Industry +439002,Industry,Industry +438998,Industry,Industry +435323,Industry,Industry +435322,Industry,Industry +433378,Industry,Industry +433377,Industry,Industry +432402,Industry,Industry +432398,Industry,Industry +432396,Industry,Industry +430779,Industry,Industry +430778,Industry,Industry +430776,Industry,Industry +430773,Industry,Industry +430768,Industry,Industry +430765,Industry,Industry +430763,Industry,Industry +430762,Industry,Industry +430760,Industry,Industry +422118,Industry,Industry +422116,Industry,Industry +422115,Industry,Industry +419728,Industry,Industry +416214,Industry,Industry +416212,Industry,Industry +414362,Industry,Industry +414347,Industry,Industry +413423,Industry,Industry +413420,Industry,Industry +413419,Industry,Industry +413409,Industry,Industry +413396,Industry,Industry +413395,Industry,Industry +413394,Industry,Industry +413390,Industry,Industry +410005,Industry,Industry +410002,Industry,Industry +407210,Industry,Industry +406435,Industry,Industry +403652,Industry,Industry +401812,Industry,Industry +401811,Industry,Industry +401563,Industry,Industry +400427,Industry,Industry +400426,Industry,Industry +400425,Industry,Industry +398468,Industry,Industry +398466,Industry,Industry +398465,Industry,Industry +398463,Industry,Industry +398462,Industry,Industry +398461,Industry,Industry +398460,Industry,Industry +398459,Industry,Industry +398458,Industry,Industry +396028,Industry,Industry +396027,Industry,Industry +396026,Industry,Industry +396025,Industry,Industry +396024,Industry,Industry +396023,Industry,Industry +396022,Industry,Industry +396021,Industry,Industry +396020,Industry,Industry +396019,Industry,Industry +396018,Industry,Industry +396017,Industry,Industry +396016,Industry,Industry +396015,Industry,Industry +394063,Industry,Industry +394060,Industry,Industry +394059,Industry,Industry +394057,Industry,Industry +392696,Industry,Industry +392694,Industry,Industry +389351,Industry,Industry +389350,Industry,Industry +389349,Industry,Industry +389348,Industry,Industry +389347,Industry,Industry +389346,Industry,Industry +387353,Industry,Industry +387352,Industry,Industry +387351,Industry,Industry +387350,Industry,Industry +385056,Industry,Industry +382133,Industry,Industry +382132,Industry,Industry +382131,Industry,Industry +382130,Industry,Industry +378468,Industry,Industry +374348,Industry,Industry +374345,Industry,Industry +374343,Industry,Industry +371117,Industry,Industry +371116,Industry,Industry +370943,Industry,Industry +370942,Industry,Industry +370941,Industry,Industry +370940,Industry,Industry +370939,Industry,Industry +370938,Industry,Industry +370937,Industry,Industry +370936,Industry,Industry +370935,Industry,Industry +370934,Industry,Industry +370933,Industry,Industry +370932,Industry,Industry +370931,Industry,Industry +370930,Industry,Industry +370925,Industry,Industry +370924,Industry,Industry +370923,Industry,Industry +370922,Industry,Industry +370921,Industry,Industry +370919,Industry,Industry +370918,Industry,Industry +370917,Industry,Industry +370916,Industry,Industry +370915,Industry,Industry +370913,Industry,Industry +370912,Industry,Industry +370909,Industry,Industry +370907,Industry,Industry +369468,Industry,Industry +369465,Industry,Industry +366303,Industry,Industry +366302,Industry,Industry +364880,Industry,Industry +363626,Industry,Industry +360883,Industry,Industry +359027,Industry,Industry +359003,Industry,Industry +357964,Industry,Industry +357962,Industry,Industry +353824,Industry,Industry +353668,Industry,Industry +353667,Industry,Industry +351060,Industry,Industry +350983,Industry,Industry +350974,Industry,Industry +350973,Industry,Industry +350971,Industry,Industry +350970,Industry,Industry +350969,Industry,Industry +350968,Industry,Industry +350952,Industry,Industry +350950,Industry,Industry +350946,Industry,Industry +350941,Industry,Industry +348585,Industry,Industry +348584,Industry,Industry +348583,Industry,Industry +348580,Industry,Industry +340517,Industry,Industry +338542,Industry,Industry +338538,Industry,Industry +338531,Industry,Industry +338527,Industry,Industry +338520,Industry,Industry +338518,Industry,Industry +338514,Industry,Industry +338512,Industry,Industry +338509,Industry,Industry +338503,Industry,Industry +338500,Industry,Industry +338499,Industry,Industry +338497,Industry,Industry +337934,Industry,Industry +337933,Industry,Industry +337932,Industry,Industry +337931,Industry,Industry +337930,Industry,Industry +337929,Industry,Industry +337928,Industry,Industry +337927,Industry,Industry +337926,Industry,Industry +337924,Industry,Industry +337923,Industry,Industry +337922,Industry,Industry +337921,Industry,Industry +337920,Industry,Industry +337919,Industry,Industry +337918,Industry,Industry +337917,Industry,Industry +337916,Industry,Industry +337915,Industry,Industry +337914,Industry,Industry +337913,Industry,Industry +337912,Industry,Industry +337911,Industry,Industry +337910,Industry,Industry +337909,Industry,Industry +337908,Industry,Industry +544057,Industry,Industry +543670,Industry,Industry +543667,Industry,Industry +541887,Industry,Industry +541886,Industry,Industry +541540,Industry,Industry +541539,Industry,Industry +541538,Industry,Industry +539987,Industry,Industry +539986,Industry,Industry +539985,Industry,Industry +537989,Industry,Industry +537987,Industry,Industry +537986,Industry,Industry +537243,Industry,Industry +537242,Industry,Industry +537241,Industry,Industry +534249,Industry,Industry +531250,Industry,Industry +531249,Industry,Industry +531246,Industry,Industry +531243,Industry,Industry +531235,Industry,Industry +531232,Industry,Industry +531226,Industry,Industry +531224,Industry,Industry +531222,Industry,Industry +531221,Industry,Industry +531220,Industry,Industry +528549,Industry,Industry +528546,Industry,Industry +528545,Industry,Industry +528541,Industry,Industry +528143,Industry,Industry +528142,Industry,Industry +528141,Industry,Industry +525344,Industry,Industry +525335,Industry,Industry +525333,Industry,Industry +525332,Industry,Industry +525321,Industry,Industry +525314,Industry,Industry +525312,Industry,Industry +525310,Industry,Industry +522445,Industry,Industry +522436,Industry,Industry +521811,Industry,Industry +521362,Industry,Industry +521361,Industry,Industry +521360,Industry,Industry +519790,Industry,Industry +519496,Industry,Industry +519493,Industry,Industry +519491,Industry,Industry +519490,Industry,Industry +517382,Industry,Industry +517373,Industry,Industry +517359,Industry,Industry +515402,Industry,Industry +515398,Industry,Industry +515396,Industry,Industry +515395,Industry,Industry +514674,Industry,Industry +513028,Industry,Industry +513025,Industry,Industry +513024,Industry,Industry +512738,Industry,Industry +512737,Industry,Industry +510228,Industry,Industry +510227,Industry,Industry +510226,Industry,Industry +510220,Industry,Industry +510219,Industry,Industry +507389,Industry,Industry +507387,Industry,Industry +507384,Industry,Industry +507382,Industry,Industry +504896,Industry,Industry +504894,Industry,Industry +504891,Industry,Industry +504873,Industry,Industry +504867,Industry,Industry +504861,Industry,Industry +504860,Industry,Industry +504858,Industry,Industry +504845,Industry,Industry +504829,Industry,Industry +501840,Industry,Industry +501813,Industry,Industry +501812,Industry,Industry +501799,Industry,Industry +501796,Industry,Industry +501791,Industry,Industry +501787,Industry,Industry +501783,Industry,Industry +501779,Industry,Industry +501773,Industry,Industry +498471,Industry,Industry +498466,Industry,Industry +498465,Industry,Industry +498464,Industry,Industry +498462,Industry,Industry +498461,Industry,Industry +498460,Industry,Industry +498459,Industry,Industry +498458,Industry,Industry +498455,Industry,Industry +498454,Industry,Industry +498453,Industry,Industry +498450,Industry,Industry +498448,Industry,Industry +498445,Industry,Industry +498443,Industry,Industry +498439,Industry,Industry +495466,Industry,Industry +495465,Industry,Industry +494719,Industry,Industry +494715,Industry,Industry +494714,Industry,Industry +491007,Industry,Industry +491003,Industry,Industry +490489,Industry,Industry +488012,Industry,Industry +487453,Industry,Industry +487450,Industry,Industry +487448,Industry,Industry +487446,Industry,Industry +487445,Industry,Industry +484828,Industry,Industry +484825,Industry,Industry +484822,Industry,Industry +484644,Industry,Industry +484643,Industry,Industry +484642,Industry,Industry +484641,Industry,Industry +484639,Industry,Industry +484638,Industry,Industry +484637,Industry,Industry +484635,Industry,Industry +484633,Industry,Industry +482373,Industry,Industry +482368,Industry,Industry +481938,Industry,Industry +481937,Industry,Industry +481936,Industry,Industry +481933,Industry,Industry +481932,Industry,Industry +479843,Industry,Industry +477257,Industry,Industry +477256,Industry,Industry +477254,Industry,Industry +477251,Industry,Industry +477246,Industry,Industry +477245,Industry,Industry +477244,Industry,Industry +477243,Industry,Industry +477241,Industry,Industry +477240,Industry,Industry +477239,Industry,Industry +475312,Industry,Industry +472466,Industry,Industry +472461,Industry,Industry +470296,Industry,Industry +470293,Industry,Industry +467240,Industry,Industry +467237,Industry,Industry +467234,Industry,Industry +467233,Industry,Industry +465273,Industry,Industry +464028,Industry,Industry +464025,Industry,Industry +464024,Industry,Industry +464022,Industry,Industry +464020,Industry,Industry +462176,Industry,Industry +462175,Industry,Industry +462173,Industry,Industry +462172,Industry,Industry +462160,Industry,Industry +459489,Industry,Industry +459488,Industry,Industry +459354,Industry,Industry +458703,Industry,Industry +458700,Industry,Industry +458698,Industry,Industry +458695,Industry,Industry +457470,Industry,Industry +457116,Industry,Industry +457115,Industry,Industry +457114,Industry,Industry +457113,Industry,Industry +457112,Industry,Industry +452293,Industry,Industry +450338,Industry,Industry +450335,Industry,Industry +449845,Industry,Industry +449844,Industry,Industry +447192,Industry,Industry +447190,Industry,Industry +447189,Industry,Industry +447188,Industry,Industry +447187,Industry,Industry +447185,Industry,Industry +447153,Industry,Industry +445735,Industry,Industry +442030,Industry,Industry +464028,Infrastructure,Infrastructure +452286,Infrastructure,Infrastructure +168925,Infrastructure,Infrastructure +168369,Infrastructure,Infrastructure +165957,Infrastructure,Infrastructure +165946,Infrastructure,Infrastructure +105775,Infrastructure,Infrastructure +260570,Infrastructure,Infrastructure +190113,Infrastructure,Infrastructure +190066,Infrastructure,Infrastructure +190064,Infrastructure,Infrastructure +205910,Internal Trade,Internal Trade +146074,Internal Trade,Internal Trade +301559,International Relations,International Relations +440380,International Relations,International Relations +203309,International Relations,International Relations +190264,International Relations,International Relations +163226,International Relations,International Relations +162964,International Relations,International Relations +105775,International Relations,International Relations +205910,International Relations,International Relations +203329,International Relations,International Relations +370937,International Relations,International Relations +301594,International Relations,International Relations +440408,International Trade,International Trade +440386,International Trade,International Trade +124941,International Trade,International Trade +117517,International Trade,International Trade +101618,International Trade,International Trade +101284,International Trade,International Trade +98614,International Trade,International Trade +98396,International Trade,International Trade +190111,International Trade,International Trade +190066,International Trade,International Trade +190064,International Trade,International Trade +186006,International Trade,International Trade +172226,International Trade,International Trade +170887,International Trade,International Trade +168925,International Trade,International Trade +168369,International Trade,International Trade +168111,International Trade,International Trade +165946,International Trade,International Trade +165944,International Trade,International Trade +163226,International Trade,International Trade +162970,International Trade,International Trade +162969,International Trade,International Trade +162964,International Trade,International Trade +148247,International Trade,International Trade +148223,International Trade,International Trade +145950,International Trade,International Trade +145949,International Trade,International Trade +145948,International Trade,International Trade +145943,International Trade,International Trade +145900,International Trade,International Trade +143136,International Trade,International Trade +142996,International Trade,International Trade +132692,International Trade,International Trade +128881,International Trade,International Trade +126374,International Trade,International Trade +306617,International Trade,International Trade +306616,International Trade,International Trade +306615,International Trade,International Trade +306614,International Trade,International Trade +306613,International Trade,International Trade +306612,International Trade,International Trade +306611,International Trade,International Trade +306610,International Trade,International Trade +306609,International Trade,International Trade +301597,International Trade,International Trade +301596,International Trade,International Trade +301573,International Trade,International Trade +301572,International Trade,International Trade +301570,International Trade,International Trade +301558,International Trade,International Trade +301554,International Trade,International Trade +295451,International Trade,International Trade +295450,International Trade,International Trade +276800,International Trade,International Trade +260590,International Trade,International Trade +260589,International Trade,International Trade +241295,International Trade,International Trade +241294,International Trade,International Trade +241293,International Trade,International Trade +241292,International Trade,International Trade +241291,International Trade,International Trade +241283,International Trade,International Trade +241273,International Trade,International Trade +241268,International Trade,International Trade +241265,International Trade,International Trade +241264,International Trade,International Trade +241263,International Trade,International Trade +241262,International Trade,International Trade +241261,International Trade,International Trade +241260,International Trade,International Trade +241259,International Trade,International Trade +241258,International Trade,International Trade +241257,International Trade,International Trade +241256,International Trade,International Trade +241255,International Trade,International Trade +241254,International Trade,International Trade +241251,International Trade,International Trade +241248,International Trade,International Trade +241246,International Trade,International Trade +241245,International Trade,International Trade +241244,International Trade,International Trade +241243,International Trade,International Trade +241242,International Trade,International Trade +241239,International Trade,International Trade +241235,International Trade,International Trade +241233,International Trade,International Trade +241224,International Trade,International Trade +234711,International Trade,International Trade +234710,International Trade,International Trade +223623,International Trade,International Trade +223619,International Trade,International Trade +203329,International Trade,International Trade +203309,International Trade,International Trade +190113,International Trade,International Trade +369465,International Trade,International Trade +366303,International Trade,International Trade +366302,International Trade,International Trade +364880,International Trade,International Trade +360883,International Trade,International Trade +360746,International Trade,International Trade +351060,International Trade,International Trade +350983,International Trade,International Trade +350974,International Trade,International Trade +350973,International Trade,International Trade +350971,International Trade,International Trade +350970,International Trade,International Trade +350969,International Trade,International Trade +350968,International Trade,International Trade +350952,International Trade,International Trade +350950,International Trade,International Trade +350946,International Trade,International Trade +350941,International Trade,International Trade +348585,International Trade,International Trade +348583,International Trade,International Trade +348580,International Trade,International Trade +347081,International Trade,International Trade +347080,International Trade,International Trade +340510,International Trade,International Trade +338538,International Trade,International Trade +338531,International Trade,International Trade +338499,International Trade,International Trade +338497,International Trade,International Trade +337934,International Trade,International Trade +337933,International Trade,International Trade +337932,International Trade,International Trade +337931,International Trade,International Trade +337930,International Trade,International Trade +337929,International Trade,International Trade +337928,International Trade,International Trade +337927,International Trade,International Trade +337926,International Trade,International Trade +337924,International Trade,International Trade +337923,International Trade,International Trade +337922,International Trade,International Trade +337921,International Trade,International Trade +337920,International Trade,International Trade +337919,International Trade,International Trade +337918,International Trade,International Trade +337917,International Trade,International Trade +337916,International Trade,International Trade +337915,International Trade,International Trade +337914,International Trade,International Trade +337913,International Trade,International Trade +337912,International Trade,International Trade +337911,International Trade,International Trade +337910,International Trade,International Trade +337909,International Trade,International Trade +337908,International Trade,International Trade +337907,International Trade,International Trade +337906,International Trade,International Trade +337905,International Trade,International Trade +337904,International Trade,International Trade +337902,International Trade,International Trade +337899,International Trade,International Trade +337898,International Trade,International Trade +337897,International Trade,International Trade +337894,International Trade,International Trade +335691,International Trade,International Trade +331200,International Trade,International Trade +331199,International Trade,International Trade +331198,International Trade,International Trade +329992,International Trade,International Trade +324347,International Trade,International Trade +324339,International Trade,International Trade +322069,International Trade,International Trade +321388,International Trade,International Trade +321387,International Trade,International Trade +321386,International Trade,International Trade +321385,International Trade,International Trade +315817,International Trade,International Trade +315816,International Trade,International Trade +315815,International Trade,International Trade +315814,International Trade,International Trade +315813,International Trade,International Trade +312533,International Trade,International Trade +312532,International Trade,International Trade +312531,International Trade,International Trade +312530,International Trade,International Trade +312529,International Trade,International Trade +312516,International Trade,International Trade +312515,International Trade,International Trade +312514,International Trade,International Trade +312512,International Trade,International Trade +312510,International Trade,International Trade +312509,International Trade,International Trade +307876,International Trade,International Trade +307874,International Trade,International Trade +307873,International Trade,International Trade +307872,International Trade,International Trade +307870,International Trade,International Trade +306649,International Trade,International Trade +306646,International Trade,International Trade +306645,International Trade,International Trade +306644,International Trade,International Trade +306643,International Trade,International Trade +306642,International Trade,International Trade +306641,International Trade,International Trade +306640,International Trade,International Trade +306639,International Trade,International Trade +306638,International Trade,International Trade +306637,International Trade,International Trade +306634,International Trade,International Trade +306633,International Trade,International Trade +306632,International Trade,International Trade +306631,International Trade,International Trade +306630,International Trade,International Trade +306629,International Trade,International Trade +306628,International Trade,International Trade +306627,International Trade,International Trade +306626,International Trade,International Trade +306625,International Trade,International Trade +306624,International Trade,International Trade +306623,International Trade,International Trade +306622,International Trade,International Trade +306621,International Trade,International Trade +306620,International Trade,International Trade +306619,International Trade,International Trade +306618,International Trade,International Trade +440383,International Trade,International Trade +440381,International Trade,International Trade +440379,International Trade,International Trade +438989,International Trade,International Trade +435329,International Trade,International Trade +435327,International Trade,International Trade +435321,International Trade,International Trade +435319,International Trade,International Trade +433382,International Trade,International Trade +433381,International Trade,International Trade +433380,International Trade,International Trade +433379,International Trade,International Trade +433378,International Trade,International Trade +433377,International Trade,International Trade +432402,International Trade,International Trade +432401,International Trade,International Trade +432400,International Trade,International Trade +432399,International Trade,International Trade +432398,International Trade,International Trade +432396,International Trade,International Trade +432256,International Trade,International Trade +432249,International Trade,International Trade +430776,International Trade,International Trade +430768,International Trade,International Trade +430766,International Trade,International Trade +430763,International Trade,International Trade +428063,International Trade,International Trade +428062,International Trade,International Trade +428049,International Trade,International Trade +428048,International Trade,International Trade +426599,International Trade,International Trade +426589,International Trade,International Trade +424335,International Trade,International Trade +423531,International Trade,International Trade +423530,International Trade,International Trade +423529,International Trade,International Trade +423528,International Trade,International Trade +423527,International Trade,International Trade +423526,International Trade,International Trade +423524,International Trade,International Trade +423516,International Trade,International Trade +423509,International Trade,International Trade +423508,International Trade,International Trade +422118,International Trade,International Trade +422116,International Trade,International Trade +422115,International Trade,International Trade +419745,International Trade,International Trade +419740,International Trade,International Trade +419738,International Trade,International Trade +419736,International Trade,International Trade +419735,International Trade,International Trade +419728,International Trade,International Trade +417862,International Trade,International Trade +417860,International Trade,International Trade +416219,International Trade,International Trade +416214,International Trade,International Trade +414349,International Trade,International Trade +414348,International Trade,International Trade +414347,International Trade,International Trade +413456,International Trade,International Trade +413423,International Trade,International Trade +413415,International Trade,International Trade +413411,International Trade,International Trade +413409,International Trade,International Trade +410005,International Trade,International Trade +410003,International Trade,International Trade +410002,International Trade,International Trade +407210,International Trade,International Trade +401812,International Trade,International Trade +401811,International Trade,International Trade +401563,International Trade,International Trade +400427,International Trade,International Trade +400426,International Trade,International Trade +400425,International Trade,International Trade +398467,International Trade,International Trade +382133,International Trade,International Trade +378467,International Trade,International Trade +371119,International Trade,International Trade +371116,International Trade,International Trade +370944,International Trade,International Trade +370943,International Trade,International Trade +370942,International Trade,International Trade +370941,International Trade,International Trade +370940,International Trade,International Trade +370939,International Trade,International Trade +370938,International Trade,International Trade +370936,International Trade,International Trade +370935,International Trade,International Trade +370934,International Trade,International Trade +370933,International Trade,International Trade +370932,International Trade,International Trade +370931,International Trade,International Trade +370930,International Trade,International Trade +370925,International Trade,International Trade +370924,International Trade,International Trade +370923,International Trade,International Trade +370922,International Trade,International Trade +370921,International Trade,International Trade +370919,International Trade,International Trade +370918,International Trade,International Trade +370917,International Trade,International Trade +370916,International Trade,International Trade +370915,International Trade,International Trade +370913,International Trade,International Trade +370912,International Trade,International Trade +370909,International Trade,International Trade +370907,International Trade,International Trade +369468,International Trade,International Trade +537987,International Trade,International Trade +531235,International Trade,International Trade +525335,International Trade,International Trade +525321,International Trade,International Trade +515402,International Trade,International Trade +510226,International Trade,International Trade +510224,International Trade,International Trade +510222,International Trade,International Trade +510220,International Trade,International Trade +507389,International Trade,International Trade +504873,International Trade,International Trade +504845,International Trade,International Trade +504829,International Trade,International Trade +498445,International Trade,International Trade +491007,International Trade,International Trade +482373,International Trade,International Trade +481937,International Trade,International Trade +477239,International Trade,International Trade +470749,International Trade,International Trade +460020,International Trade,International Trade +459489,International Trade,International Trade +459354,International Trade,International Trade +449843,International Trade,International Trade +447192,International Trade,International Trade +447190,International Trade,International Trade +447185,International Trade,International Trade +445735,International Trade,International Trade +442030,International Trade,International Trade +441398,International Trade,International Trade +441397,International Trade,International Trade +441392,International Trade,International Trade +441390,International Trade,International Trade +440413,International Trade,International Trade +440411,International Trade,International Trade +440410,International Trade,International Trade +543670,Taxation and Finance,Taxation and Finance +528541,Taxation and Finance,Taxation and Finance +98614,Taxation and Finance,Taxation and Finance +98396,Taxation and Finance,Taxation and Finance +93698,Taxation and Finance,Taxation and Finance +90572,Taxation and Finance,Taxation and Finance +90548,Taxation and Finance,Taxation and Finance +128881,Taxation and Finance,Taxation and Finance +128876,Taxation and Finance,Taxation and Finance +124941,Taxation and Finance,Taxation and Finance +113334,Taxation and Finance,Taxation and Finance +109780,Taxation and Finance,Taxation and Finance +109661,Taxation and Finance,Taxation and Finance +109659,Taxation and Finance,Taxation and Finance +109658,Taxation and Finance,Taxation and Finance +104574,Taxation and Finance,Taxation and Finance +104556,Taxation and Finance,Taxation and Finance +104555,Taxation and Finance,Taxation and Finance +104554,Taxation and Finance,Taxation and Finance +104535,Taxation and Finance,Taxation and Finance +104534,Taxation and Finance,Taxation and Finance +104515,Taxation and Finance,Taxation and Finance +101620,Taxation and Finance,Taxation and Finance +101618,Taxation and Finance,Taxation and Finance +101289,Taxation and Finance,Taxation and Finance +101284,Taxation and Finance,Taxation and Finance +101273,Taxation and Finance,Taxation and Finance +190113,Taxation and Finance,Taxation and Finance +190111,Taxation and Finance,Taxation and Finance +190066,Taxation and Finance,Taxation and Finance +190064,Taxation and Finance,Taxation and Finance +148247,Taxation and Finance,Taxation and Finance +148223,Taxation and Finance,Taxation and Finance +146074,Taxation and Finance,Taxation and Finance +145950,Taxation and Finance,Taxation and Finance +371116,Taxation and Finance,Taxation and Finance +359003,Taxation and Finance,Taxation and Finance +285449,Taxation and Finance,Taxation and Finance +276799,Taxation and Finance,Taxation and Finance +260589,Taxation and Finance,Taxation and Finance +230325,Taxation and Finance,Taxation and Finance +224227,Taxation and Finance,Taxation and Finance +205916,Taxation and Finance,Taxation and Finance +203329,Taxation and Finance,Taxation and Finance +203309,Taxation and Finance,Taxation and Finance +203288,Taxation and Finance,Taxation and Finance +498450,Taxation and Finance,Taxation and Finance +495465,Taxation and Finance,Taxation and Finance +482373,Taxation and Finance,Taxation and Finance +472461,Taxation and Finance,Taxation and Finance +467240,Taxation and Finance,Taxation and Finance +467233,Taxation and Finance,Taxation and Finance +464025,Taxation and Finance,Taxation and Finance +458703,Taxation and Finance,Taxation and Finance +439002,Taxation and Finance,Taxation and Finance +410309,Taxation and Finance,Taxation and Finance +410000,Taxation and Finance,Taxation and Finance +400426,Transportation,Transportation +400425,Transportation,Transportation +93698,Transportation,Transportation +148247,Transportation,Transportation +148223,Transportation,Transportation +124941,Transportation,Transportation +121718,Transportation,Transportation +121716,Transportation,Transportation +121715,Transportation,Transportation +105775,Transportation,Transportation +190066,Transportation,Transportation +190064,Transportation,Transportation +186006,Transportation,Transportation +175787,Transportation,Transportation +172225,Transportation,Transportation +168369,Transportation,Transportation +168111,Transportation,Transportation +168090,Transportation,Transportation +165967,Transportation,Transportation +165957,Transportation,Transportation +165946,Transportation,Transportation +165944,Transportation,Transportation +163226,Transportation,Transportation +163225,Transportation,Transportation +162970,Transportation,Transportation +162969,Transportation,Transportation +162965,Transportation,Transportation +160661,Transportation,Transportation +160660,Transportation,Transportation +160659,Transportation,Transportation +160601,Transportation,Transportation +160599,Transportation,Transportation +389354,Transportation,Transportation +389352,Transportation,Transportation +389351,Transportation,Transportation +387347,Transportation,Transportation +387346,Transportation,Transportation +381403,Transportation,Transportation +371115,Transportation,Transportation +363342,Transportation,Transportation +362123,Transportation,Transportation +359025,Transportation,Transportation +348586,Transportation,Transportation +348585,Transportation,Transportation +343832,Transportation,Transportation +338538,Transportation,Transportation +329709,Transportation,Transportation +326656,Transportation,Transportation +307555,Transportation,Transportation +307553,Transportation,Transportation +307550,Transportation,Transportation +301553,Transportation,Transportation +276470,Transportation,Transportation +276469,Transportation,Transportation +210408,Transportation,Transportation +195924,Transportation,Transportation +190113,Transportation,Transportation +190111,Transportation,Transportation +541539,Transportation,Transportation +537986,Transportation,Transportation +537243,Transportation,Transportation +537242,Transportation,Transportation +534249,Transportation,Transportation +531250,Transportation,Transportation +531249,Transportation,Transportation +531246,Transportation,Transportation +531232,Transportation,Transportation +531224,Transportation,Transportation +531222,Transportation,Transportation +528549,Transportation,Transportation +528546,Transportation,Transportation +528142,Transportation,Transportation +525333,Transportation,Transportation +525310,Transportation,Transportation +507140,Transportation,Transportation +504873,Transportation,Transportation +501783,Transportation,Transportation +494713,Transportation,Transportation +467240,Transportation,Transportation +452291,Transportation,Transportation +452287,Transportation,Transportation +452286,Transportation,Transportation +449845,Transportation,Transportation +449844,Transportation,Transportation +441420,Transportation,Transportation +441419,Transportation,Transportation +430760,Transportation,Transportation +428058,Transportation,Transportation +428055,Transportation,Transportation +414362,Transportation,Transportation +128877,Other,Vehicle Safety Regulations +121237,Other,Vehicle Safety Regulations +88074,Other,Vehicle Safety Regulations +88073,Other,Vehicle Safety Regulations +85194,Other,Vehicle Safety Regulations +101321,Other,Vehicle Safety Regulations +145949,Other,Vehicle Safety Regulations +145948,Other,Vehicle Safety Regulations +149057,Other,hydropower +145443,Other,hydropower +143997,Other,hydropower +138854,Other,hydropower +137299,Other,hydropower +410416,Environment,Environment +407651,Environment,Environment +103360,Environment,Environment +103359,Environment,Environment +103358,Environment,Environment +103356,Environment,Environment +189669,Environment,Environment +189664,Environment,Environment +189658,Environment,Environment +189657,Environment,Environment +185505,Environment,Environment +185504,Environment,Environment +175379,Environment,Environment +175376,Environment,Environment +175375,Environment,Environment +175370,Environment,Environment +175369,Environment,Environment +175367,Environment,Environment +175363,Environment,Environment +173622,Environment,Environment +173621,Environment,Environment +173620,Environment,Environment +173533,Environment,Environment +172924,Environment,Environment +168851,Environment,Environment +168841,Environment,Environment +164226,Environment,Environment +164225,Environment,Environment +162664,Environment,Environment +250825,Environment,Environment +250819,Environment,Environment +242498,Environment,Environment +242497,Environment,Environment +242496,Environment,Environment +242495,Environment,Environment +242494,Environment,Environment +242493,Environment,Environment +242450,Environment,Environment +230365,Environment,Environment +227365,Environment,Environment +202861,Environment,Environment +200202,Environment,Environment +194953,Environment,Environment +194866,Environment,Environment +194864,Environment,Environment +113917,Other,Procurement Practice Review +92294,Other,Trade Policy +81854,Other,Trade Policy +92556,Other,Trade Policy +158560,Justice and Law Enforcement,Justice and Law Enforcement +421969,Justice and Law Enforcement,Justice and Law Enforcement +112074,Justice and Law Enforcement,Justice and Law Enforcement +81874,Justice and Law Enforcement,Justice and Law Enforcement +82914,Environment,Environment +235549,Environment,Environment +119974,Environment,Environment +82915,Industry,Industry +82914,Industry,Industry +147860,Other,Human Resources +147859,Other,Human Resources +142420,Other,dairy production research +142420,Other,Internal Trade +120355,Other,Labelling +120354,Other,Labelling +115975,Other,Labelling +148035,Education,Education +497235,Environment,Environment +493971,Environment,Environment +148121,Environment,Environment +148036,Environment,Environment +148035,Environment,Environment +148031,Environment,Environment +147174,Environment,Environment +158901,Environment,Environment +158900,Environment,Environment +148126,Environment,Environment +148124,Environment,Environment +387769,Environment,Environment +387767,Environment,Environment +385123,Environment,Environment +382169,Environment,Environment +382168,Environment,Environment +382167,Environment,Environment +382166,Environment,Environment +382164,Environment,Environment +382162,Environment,Environment +375592,Environment,Environment +375591,Environment,Environment +375590,Environment,Environment +375588,Environment,Environment +375585,Environment,Environment +306529,Environment,Environment +488719,Environment,Environment +488717,Environment,Environment +466384,Environment,Environment +463708,Environment,Environment +463707,Environment,Environment +460531,Environment,Environment +460530,Environment,Environment +460529,Environment,Environment +460514,Environment,Environment +446824,Environment,Environment +446822,Environment,Environment +446820,Environment,Environment +446818,Environment,Environment +445161,Environment,Environment +443111,Environment,Environment +435907,Environment,Environment +435904,Environment,Environment +435896,Environment,Environment +435895,Environment,Environment +435892,Environment,Environment +435889,Environment,Environment +435870,Environment,Environment +428404,Environment,Environment +428390,Environment,Environment +428388,Environment,Environment +428386,Environment,Environment +424215,Environment,Environment +421147,Environment,Environment +421146,Environment,Environment +421145,Environment,Environment +421144,Environment,Environment +421143,Environment,Environment +417468,Environment,Environment +417467,Environment,Environment +417466,Environment,Environment +415325,Environment,Environment +415317,Environment,Environment +415316,Environment,Environment +415315,Environment,Environment +415312,Environment,Environment +411389,Environment,Environment +411387,Environment,Environment +408727,Environment,Environment +408723,Environment,Environment +408722,Environment,Environment +408721,Environment,Environment +407446,Environment,Environment +406156,Environment,Environment +404260,Environment,Environment +402772,Environment,Environment +400438,Environment,Environment +400437,Environment,Environment +399565,Environment,Environment +398063,Environment,Environment +395487,Environment,Environment +395486,Environment,Environment +395484,Environment,Environment +395481,Environment,Environment +395478,Environment,Environment +395476,Environment,Environment +395472,Environment,Environment +393985,Environment,Environment +393981,Environment,Environment +393976,Environment,Environment +392557,Environment,Environment +389741,Environment,Environment +389739,Environment,Environment +389737,Environment,Environment +389736,Environment,Environment +389735,Environment,Environment +387770,Environment,Environment +389737,Infrastructure,Infrastructure +389734,Infrastructure,Infrastructure +428506,Infrastructure,Infrastructure +428404,Infrastructure,Infrastructure +148033,International Relations,International Relations +147178,International Relations,International Relations +147174,International Trade,International Trade +520919,International Trade,International Trade +148124,International Trade,International Trade +148121,International Trade,International Trade +460514,Transportation,Transportation +459083,Transportation,Transportation +158901,Transportation,Transportation +158900,Transportation,Transportation +148126,Transportation,Transportation +148036,Transportation,Transportation +148035,Transportation,Transportation +395484,Transportation,Transportation +395481,Transportation,Transportation +395478,Transportation,Transportation +395476,Transportation,Transportation +395472,Transportation,Transportation +393985,Transportation,Transportation +393981,Transportation,Transportation +393976,Transportation,Transportation +392557,Transportation,Transportation +392556,Transportation,Transportation +389741,Transportation,Transportation +389739,Transportation,Transportation +389737,Transportation,Transportation +389736,Transportation,Transportation +389735,Transportation,Transportation +389734,Transportation,Transportation +387773,Transportation,Transportation +387770,Transportation,Transportation +387769,Transportation,Transportation +387767,Transportation,Transportation +387764,Transportation,Transportation +387762,Transportation,Transportation +387757,Transportation,Transportation +385123,Transportation,Transportation +383306,Transportation,Transportation +382169,Transportation,Transportation +382168,Transportation,Transportation +382167,Transportation,Transportation +382166,Transportation,Transportation +382165,Transportation,Transportation +382164,Transportation,Transportation +382162,Transportation,Transportation +375593,Transportation,Transportation +375592,Transportation,Transportation +375591,Transportation,Transportation +375590,Transportation,Transportation +375588,Transportation,Transportation +375585,Transportation,Transportation +454523,Transportation,Transportation +446824,Transportation,Transportation +446822,Transportation,Transportation +446820,Transportation,Transportation +446818,Transportation,Transportation +445161,Transportation,Transportation +443111,Transportation,Transportation +435907,Transportation,Transportation +435904,Transportation,Transportation +435896,Transportation,Transportation +435895,Transportation,Transportation +435892,Transportation,Transportation +435889,Transportation,Transportation +435870,Transportation,Transportation +428506,Transportation,Transportation +428404,Transportation,Transportation +428390,Transportation,Transportation +428388,Transportation,Transportation +428386,Transportation,Transportation +424215,Transportation,Transportation +421147,Transportation,Transportation +421146,Transportation,Transportation +421145,Transportation,Transportation +421144,Transportation,Transportation +421143,Transportation,Transportation +417469,Transportation,Transportation +417468,Transportation,Transportation +417467,Transportation,Transportation +417466,Transportation,Transportation +417464,Transportation,Transportation +415326,Transportation,Transportation +415325,Transportation,Transportation +415322,Transportation,Transportation +415317,Transportation,Transportation +415316,Transportation,Transportation +415315,Transportation,Transportation +415312,Transportation,Transportation +412896,Transportation,Transportation +411389,Transportation,Transportation +411387,Transportation,Transportation +408727,Transportation,Transportation +408723,Transportation,Transportation +408722,Transportation,Transportation +408721,Transportation,Transportation +407446,Transportation,Transportation +406156,Transportation,Transportation +404260,Transportation,Transportation +402772,Transportation,Transportation +400438,Transportation,Transportation +400437,Transportation,Transportation +399565,Transportation,Transportation +398063,Transportation,Transportation +395487,Transportation,Transportation +395486,Transportation,Transportation +520922,Transportation,Transportation +520921,Transportation,Transportation +520919,Transportation,Transportation +501954,Transportation,Transportation +499955,Transportation,Transportation +191550,Taxation and Finance,Taxation and Finance +163808,Other,Mortgage Insurance Industry +78856,Other,Mortgage Insurance Industry +410740,Energy,Energy +354681,Environment,Environment +105398,Health,Health +436736,Industry,Industry +428293,International Trade,International Trade +83378,International Trade,International Trade +78895,Other,Telecommunications +78894,Other,Copyright +137654,Other,Mortgage Insurance Industry +161433,Other,"International Trade - Softwood Lumber Agreement - joint social event (including sawmill tour) with BC Provincial, USTR & DoC reps in Prince George" +92620,Education,Education +92620,Industry,Industry +149842,Environment,Environment +123175,Fisheries,Fisheries +123175,Industry,Industry +151852,International Relations,International Relations +92619,Mining,Mining +123175,Tourism,Tourism +123174,Transportation,Transportation +143594,Other,Security +79054,Other,Apprenticeship +79054,Other,Essential Skills +79054,Other,Sector Councils +79074,Other,Apprenticeship +79074,Other,Essential Skills +79074,Other,Sector Councils +79074,Other,Skills Shortages +82782,Consumer Issues,Consumer Issues +308269,Financial Institutions,Financial Institutions +99920,Government Procurement,Government Procurement +222407,Industry,Industry +308269,Taxation and Finance,Taxation and Finance +79276,Other,Empty Trailers +129394,Other,National Pension Reform Summit +79297,Other,New Canadian bank +79314,Other,New Canadian bank +79315,Other,"Tour of NAIT: Discussion of Applied Research, Commercialization and Marketization at NAIT" +79315,Other,"Tour of NAIT: Discussion of Applied Research, Commercialization and Marketization at NAIT" +132282,Other,Major Projects Management Office +97191,Other,Canada Post Shipping +79494,Other,Agents of the Crown +106815,Other,Legal Aid +154678,Other,Privacy Act +79517,Other,Mortgage Insurance +101172,Other,Canadian Television Fund (CTF) +79595,Other,Terms of Trade +79719,Other,Dialogue on Carbon Pricing +79719,Other,Energy Sector Sustainability Table (ESST) +79719,Other,Natural Gas Prices +129137,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +79994,Other,"Proposed second oil refinery in Saint John, NB" +79995,Other,"Proposed second oil refinery in Saint John, NB" +79996,Other,"Proposed second oil refinery in Saint John, NB" +79997,Other,"Proposed second oil refinery in Saint John, NB" +79998,Other,"Proposed second oil refinery in Saint John, NB" +79999,Other,"Proposed second oil refinery in Saint John, NB" +156727,Industry,Industry +397612,Consumer Issues,Consumer Issues +404140,Health,Health +404142,Industry,Industry +455748,Justice and Law Enforcement,Justice and Law Enforcement +158193,Small Business,Small Business +348208,Taxation and Finance,Taxation and Finance +79754,Other,Certifications +125354,Regional Development,Regional Development +82258,Education,Education +76409,Other,CWB Corporate Plan/CWB variety investment +88299,Government Procurement,Government Procurement +162205,Intellectual Property,Intellectual Property +148185,Justice and Law Enforcement,Justice and Law Enforcement +150177,Taxation and Finance,Taxation and Finance +146831,Other,ecoENERGY for Renewable Power Program +80434,Other,Update on X-Wave DSA & Description of CAE military training +88029,Other,General Administration relating to existing funding relationships +80443,Other,Montreal - Museum of Fine Arts +80451,Other,Entente pour projet RPS +80452,Other,Entente pour projet RPS +153736,Other,Food and Drug Legislation +80454,Other,International Development +427853,Environment,Environment +80494,Other,Prime Minister's tour of London facility +87976,Other,community projects +80534,Other,Sharing of information with respect to private sector-CIDA potential projects +80537,Other,Introductory Meeting +80544,Other,Screening & assessing DSL substances +80620,Labour,Labour +80620,Other,Noctua - Labour Issue +83085,Other,ESA ExoMars Mission +80634,Other,Family caregiving +80654,Other,"Discussion about Canada's positions in climate change negotiations in Accra, Ghana" +449948,Labour,Labour +83377,Defence,Defence +83037,Government Procurement,Government Procurement +83377,Industry,Industry +80751,Other,Competition Policy +80751,Other,Regulatory Trends & Issues +115994,Other,Food Labelling +80763,Other,Vehicle Technology +80816,Other,Security/Border Issues +80765,Other,Ships +101309,Energy,Energy +80844,Environment,Environment +80843,Industry,Industry +80843,Other,Innovation +150757,International Relations,International Relations +87117,International Trade,International Trade +80856,Other,Noctua Project +129042,Other,Issues affecting the broadcasting industry +90480,Other,Issues affecting the broadcast industry +80907,Other,Border Security +80938,Other,Asbestos +80942,Other,AgriStability and Agrilnvest +80942,Other,Canadian Wheat Board +80942,Other,CFIA +80942,Other,Fuel Taxes +80942,Other,Growing Forward Business Risk management programming +80947,Other,Unconventional Oil and Gas +80974,Other,Oceans Election Platform +102815,Other,Canadian Space Agency +80975,Other,Meeting to discuss future direction of program +80994,Other,Strategic Aerospace & Defence Initiative +80994,Other,SADI Announcement +81015,Other,Endangered Species Recovery Fund +144915,Other,Aid Effectiveness +81056,Other,"Outcomes of the 3rd High Level Forum on Aid Effectiveness, Accra, Ghana" +212310,Energy,Energy +207271,Environment,Environment +251870,Fisheries,Fisheries +218107,Government Procurement,Government Procurement +92334,International Relations,International Relations +81065,Other,Site tour +135988,Other,Regulation +129543,Other,Regulation +105555,Other,Airport security +80197,Transportation,Transportation +115753,Health,Health +491346,Employment and Training,Employment and Training +207648,Fisheries,Fisheries +81294,Other,Legislation +169267,Health,Health +169256,Health,Health +169136,Health,Health +159007,Health,Health +454783,Health,Health +452643,Industry,Industry +454783,Infrastructure,Infrastructure +81414,Other,Copyright +81416,Other,Lung Health Framework +81435,Other,Risk +277484,Mining,Mining +84478,Other,Presented input and recommendations relating to development of long term space plan to the CSA Executive Committee. +81394,Other,Pacific Salmon Treaty +531817,Education,Education +92627,Other,Income Security +411090,Transportation,Transportation +82315,Infrastructure,Infrastructure +145178,Agriculture,Agriculture +99497,Industry,Industry +145176,Regional Development,Regional Development +101312,Other,Procurement strategy +85040,Other,"Public Safety, border security, mass transit & port security" +464910,Government Procurement,Government Procurement +378323,International Trade,International Trade +422556,Small Business,Small Business +86900,Other,financial and other incentives from Canada Mortgage and Housing Corporation to encourage building energy retrofits +142496,Other,Aerospace & Defence +473421,Energy,Energy +443706,Environment,Environment +405056,Fisheries,Fisheries +406545,Industry,Industry +309836,International Trade,International Trade +109321,Other,Oil Sands +188726,Regional Development,Regional Development +543666,Taxation and Finance,Taxation and Finance +447221,Transportation,Transportation +384661,Employment and Training,Employment and Training +470850,Health,Health +100262,Agriculture,Agriculture +100262,Financial Institutions,Financial Institutions +160799,Industry,Industry +100261,Transportation,Transportation +98314,Other,Strategic Aerospace and Defence Initiative (SADI) +459737,Agriculture,Agriculture +521985,Consumer Issues,Consumer Issues +466684,Environment,Environment +504518,Health,Health +362214,Internal Trade,Internal Trade +446933,International Trade,International Trade +89180,Industry,Industry +324163,Health,Health +81794,Other,"Introductory meeting at request of ADM on occasion of his visit to Halifax, in his role as ADM responsible for 'Nova Scotia' trade issues." +82922,Other,Automotive Innovation Fund +128879,Other,Canadian Vehicle Fuel Consumption Regulations +186004,Consumer Issues,Consumer Issues +458700,Energy,Energy +525321,Environment,Environment +87980,Financial Institutions,Financial Institutions +442028,Industry,Industry +504891,Infrastructure,Infrastructure +227193,Internal Trade,Internal Trade +301593,International Relations,International Relations +440409,International Trade,International Trade +165946,Regional Development,Regional Development +544057,Taxation and Finance,Taxation and Finance +400427,Transportation,Transportation +145900,Other,Vehicle Safety Regulations +441608,Fisheries,Fisheries +155086,Other,hydropower +441612,Environment,Environment +81814,Other,Procurement Practice Review +81834,Other,Exemption order +92555,Other,Trade Policy +158562,Justice and Law Enforcement,Justice and Law Enforcement +82915,Environment,Environment +82917,Health,Health +82917,Industry,Industry +81894,Other,General/Plans +136994,Other,Health Policy +103735,Other,Human Resources +128918,Other,dairy production research +128918,Other,Internal Trade +95759,Other,Labelling +148126,Education,Education +499955,Environment,Environment +417464,Infrastructure,Infrastructure +153715,International Relations,International Relations +148033,International Trade,International Trade +158901,Labour,Labour +460529,Transportation,Transportation +81994,Other,Meeting regarding provisions of the Canada Transportation Act +82014,Other,AIAC Speech +82014,Other,Innovation Expert Panel +122574,Other,Tourism +113913,Other,International Cooperation and Development +268830,Intellectual Property,Intellectual Property +130835,Mining,Mining +130835,Regional Development,Regional Development +131657,Other,International Academic and Student Mobility +410311,Taxation and Finance,Taxation and Finance +133294,Employment and Training,Employment and Training +133295,Environment,Environment +133295,Industry,Industry +85154,Mining,Mining +84135,Other,"spoke to and arranged meeting with Chair of CMHC on Sept 17, 23 and 24/08" +82234,Other,Great Lakes Pilotage Authority Regulations +82274,Other,Competition Bureau/CBA Competition Law Section Colloboration Agreement - Implementation +82274,Other,Competition Policy Review Panel +82274,Other,Gover Report +82274,Other,Waivers +90086,Labour,Labour +253231,Education,Education +212473,Employment and Training,Employment and Training +212455,Intellectual Property,Intellectual Property +95154,Environment,Environment +123536,Other,Humanitarian Assisstance +135056,Other,International Development +141234,Other,Food Safety +497235,Transportation,Transportation +493971,Transportation,Transportation +488719,Transportation,Transportation +488717,Transportation,Transportation +476580,Transportation,Transportation +466384,Transportation,Transportation +463708,Transportation,Transportation +463707,Transportation,Transportation +460532,Transportation,Transportation +460531,Transportation,Transportation +460530,Transportation,Transportation +109518,Other,International Cooperation and Development +109511,Other,International Cooperation and Development +109502,Other,International Cooperation and Development +109463,Other,International Cooperation and Development +109462,Other,International Cooperation and Development +101455,Other,International Cooperation and Development +101152,Other,International Cooperation and Development +97782,Other,International Cooperation and Development +97777,Other,International Cooperation and Development +97776,Other,International Cooperation and Development +142422,Other,International Cooperation and Development +128131,Other,International Cooperation and Development +128130,Other,International Cooperation and Development +128129,Other,International Cooperation and Development +113924,Other,International Cooperation and Development +113922,Other,International Cooperation and Development +113920,Other,International Cooperation and Development +264831,Intellectual Property,Intellectual Property +97779,Other,International Academic and Student Mobility +97769,Other,International Academic and Student Mobility +94147,Other,International Academic and Student Mobility +90360,Other,International Academic and Student Mobility +88061,Other,International Academic and Student Mobility +85285,Other,International Academic and Student Mobility +85282,Other,International Academic and Student Mobility +85281,Other,International Academic and Student Mobility +131655,Other,International Academic and Student Mobility +128130,Other,International Academic and Student Mobility +128129,Other,International Academic and Student Mobility +128125,Other,International Academic and Student Mobility +128120,Other,International Academic and Student Mobility +128119,Other,International Academic and Student Mobility +128118,Other,International Academic and Student Mobility +128115,Other,International Academic and Student Mobility +128114,Other,International Academic and Student Mobility +124850,Other,International Academic and Student Mobility +124847,Other,International Academic and Student Mobility +124845,Other,International Academic and Student Mobility +113908,Other,International Academic and Student Mobility +113906,Other,International Academic and Student Mobility +109511,Other,International Academic and Student Mobility +109510,Other,International Academic and Student Mobility +109507,Other,International Academic and Student Mobility +109456,Other,International Academic and Student Mobility +106066,Other,International Academic and Student Mobility +101167,Other,International Academic and Student Mobility +101161,Other,International Academic and Student Mobility +101160,Other,International Academic and Student Mobility +101157,Other,International Academic and Student Mobility +101155,Other,International Academic and Student Mobility +142440,Other,International Academic and Student Mobility +142439,Other,International Academic and Student Mobility +142436,Other,International Academic and Student Mobility +131659,Other,International Academic and Student Mobility +131658,Other,International Academic and Student Mobility +82114,Taxation and Finance,Taxation and Finance +229273,Taxation and Finance,Taxation and Finance +197466,Taxation and Finance,Taxation and Finance +197462,Taxation and Finance,Taxation and Finance +176786,Taxation and Finance,Taxation and Finance +176785,Taxation and Finance,Taxation and Finance +404145,Taxation and Finance,Taxation and Finance +404144,Taxation and Finance,Taxation and Finance +404143,Taxation and Finance,Taxation and Finance +380535,Taxation and Finance,Taxation and Finance +380533,Taxation and Finance,Taxation and Finance +380532,Taxation and Finance,Taxation and Finance +380531,Taxation and Finance,Taxation and Finance +380530,Taxation and Finance,Taxation and Finance +380529,Taxation and Finance,Taxation and Finance +375500,Taxation and Finance,Taxation and Finance +375499,Taxation and Finance,Taxation and Finance +493048,Taxation and Finance,Taxation and Finance +452266,Taxation and Finance,Taxation and Finance +429719,Taxation and Finance,Taxation and Finance +410313,Taxation and Finance,Taxation and Finance +133294,Environment,Environment +85154,Environment,Environment +133295,Mining,Mining +133294,Mining,Mining +82134,Other,"spoke to and arranged meeting with Chair of CMHC on Sept 17, 23 and 24/08" +89520,Labour,Labour +89296,Labour,Labour +97305,Labour,Labour +95054,Labour,Labour +253230,Education,Education +253211,Education,Education +212484,Education,Education +212473,Education,Education +212469,Education,Education +212460,Education,Education +212455,Education,Education +212448,Education,Education +212436,Education,Education +212421,Education,Education +212408,Education,Education +209727,Education,Education +278210,Education,Education +278209,Education,Education +212469,Employment and Training,Employment and Training +212460,Employment and Training,Employment and Training +212436,Employment and Training,Employment and Training +253211,Employment and Training,Employment and Training +212484,Employment and Training,Employment and Training +212448,Intellectual Property,Intellectual Property +212421,Intellectual Property,Intellectual Property +130456,Intellectual Property,Intellectual Property +130455,Intellectual Property,Intellectual Property +130454,Intellectual Property,Intellectual Property +123535,Other,Humanitarian Assisstance +117457,Other,Humanitarian Assisstance +101234,Other,Humanitarian Assisstance +97076,Other,Humanitarian Assisstance +90159,Other,Humanitarian Assisstance +88200,Other,Humanitarian Assisstance +88198,Other,Humanitarian Assisstance +88188,Other,Humanitarian Assisstance +84976,Other,Humanitarian Assisstance +84974,Other,Humanitarian Assisstance +135056,Other,Humanitarian Assisstance +123534,Other,International Development +117457,Other,International Development +108734,Other,International Development +106367,Other,International Development +106364,Other,International Development +90162,Other,International Development +90161,Other,International Development +90159,Other,International Development +153457,Other,International Development +152217,Other,International Development +152214,Other,International Development +152210,Other,International Development +150506,Other,International Development +150503,Other,International Development +150385,Other,International Development +146694,Other,International Development +97318,Other,Food Safety +93572,Other,Food Safety +89835,Other,Food Safety +89834,Other,Food Safety +85760,Other,Food Safety +85754,Other,Food Safety +82714,Other,Food Safety +141235,Other,Food Safety +510554,Education,Education +510552,Education,Education +149945,Education,Education +145685,Education,Education +109263,Education,Education +526077,Employment and Training,Employment and Training +526074,Employment and Training,Employment and Training +237052,Employment and Training,Employment and Training +237048,Employment and Training,Employment and Training +237046,Employment and Training,Employment and Training +515355,Employment and Training,Employment and Training +515354,Employment and Training,Employment and Training +515353,Employment and Training,Employment and Training +543439,Employment and Training,Employment and Training +541714,Employment and Training,Employment and Training +541713,Employment and Training,Employment and Training +541708,Employment and Training,Employment and Training +541705,Employment and Training,Employment and Training +539664,Employment and Training,Employment and Training +537433,Employment and Training,Employment and Training +537432,Employment and Training,Employment and Training +537431,Employment and Training,Employment and Training +537429,Employment and Training,Employment and Training +537428,Employment and Training,Employment and Training +533747,Employment and Training,Employment and Training +531544,Employment and Training,Employment and Training +531541,Employment and Training,Employment and Training +531539,Employment and Training,Employment and Training +529419,Employment and Training,Employment and Training +528877,Employment and Training,Employment and Training +528872,Employment and Training,Employment and Training +528870,Employment and Training,Employment and Training +528868,Employment and Training,Employment and Training +528864,Employment and Training,Employment and Training +528860,Employment and Training,Employment and Training +528854,Employment and Training,Employment and Training +528825,Employment and Training,Employment and Training +528815,Employment and Training,Employment and Training +528811,Employment and Training,Employment and Training +528807,Employment and Training,Employment and Training +526092,Employment and Training,Employment and Training +526083,Employment and Training,Employment and Training +526081,Employment and Training,Employment and Training +539665,Environment,Environment +462702,Environment,Environment +519516,Health,Health +519510,Health,Health +103794,Health,Health +103779,Health,Health +100481,Health,Health +100477,Health,Health +100474,Health,Health +96816,Health,Health +96815,Health,Health +93663,Health,Health +93662,Health,Health +93660,Health,Health +90274,Health,Health +88247,Health,Health +85435,Health,Health +137474,Health,Health +135394,Health,Health +135378,Health,Health +135376,Health,Health +135375,Health,Health +135374,Health,Health +131125,Health,Health +131123,Health,Health +131122,Health,Health +131121,Health,Health +131119,Health,Health +125854,Health,Health +124014,Health,Health +123694,Health,Health +123674,Health,Health +120396,Health,Health +120395,Health,Health +120394,Health,Health +119994,Health,Health +116838,Health,Health +113074,Health,Health +109263,Health,Health +108235,Health,Health +108234,Health,Health +105616,Health,Health +105594,Health,Health +103796,Health,Health +168557,Health,Health +168553,Health,Health +168551,Health,Health +168547,Health,Health +168542,Health,Health +168537,Health,Health +168533,Health,Health +168527,Health,Health +168518,Health,Health +168510,Health,Health +168477,Health,Health +168473,Health,Health +168467,Health,Health +167763,Health,Health +167753,Health,Health +167696,Health,Health +167695,Health,Health +167694,Health,Health +167693,Health,Health +167664,Health,Health +167663,Health,Health +165578,Health,Health +165571,Health,Health +164264,Health,Health +164246,Health,Health +163444,Health,Health +161285,Health,Health +161227,Health,Health +161195,Health,Health +161194,Health,Health +158484,Health,Health +158482,Health,Health +158481,Health,Health +158479,Health,Health +156428,Health,Health +156426,Health,Health +154354,Health,Health +154353,Health,Health +154352,Health,Health +154351,Health,Health +154350,Health,Health +154349,Health,Health +154348,Health,Health +153716,Health,Health +153621,Health,Health +153620,Health,Health +153619,Health,Health +153618,Health,Health +153617,Health,Health +153616,Health,Health +153615,Health,Health +149950,Health,Health +149949,Health,Health +149948,Health,Health +149945,Health,Health +148444,Health,Health +145685,Health,Health +145684,Health,Health +142155,Health,Health +142154,Health,Health +137479,Health,Health +137478,Health,Health +137477,Health,Health +137476,Health,Health +137475,Health,Health +276589,Health,Health +276573,Health,Health +276572,Health,Health +276570,Health,Health +276569,Health,Health +276568,Health,Health +276567,Health,Health +276566,Health,Health +276565,Health,Health +276564,Health,Health +276563,Health,Health +276562,Health,Health +276561,Health,Health +276560,Health,Health +276559,Health,Health +276558,Health,Health +276557,Health,Health +276556,Health,Health +276555,Health,Health +276554,Health,Health +276553,Health,Health +276552,Health,Health +276551,Health,Health +276550,Health,Health +276549,Health,Health +273668,Health,Health +273529,Health,Health +269058,Health,Health +269056,Health,Health +269054,Health,Health +269050,Health,Health +264949,Health,Health +264930,Health,Health +256749,Health,Health +254029,Health,Health +254011,Health,Health +254009,Health,Health +251860,Health,Health +251425,Health,Health +251423,Health,Health +251422,Health,Health +251419,Health,Health +251417,Health,Health +251414,Health,Health +245514,Health,Health +245503,Health,Health +237057,Health,Health +237052,Health,Health +237048,Health,Health +237046,Health,Health +233809,Health,Health +230711,Health,Health +230710,Health,Health +230709,Health,Health +223579,Health,Health +223575,Health,Health +223570,Health,Health +219713,Health,Health +217940,Health,Health +217937,Health,Health +217927,Health,Health +212757,Health,Health +212756,Health,Health +212755,Health,Health +207505,Health,Health +202931,Health,Health +202929,Health,Health +202926,Health,Health +202925,Health,Health +202922,Health,Health +202919,Health,Health +200551,Health,Health +200550,Health,Health +200547,Health,Health +200545,Health,Health +200544,Health,Health +200542,Health,Health +200538,Health,Health +197374,Health,Health +174736,Health,Health +174735,Health,Health +174733,Health,Health +172857,Health,Health +170534,Health,Health +170533,Health,Health +169089,Health,Health +168921,Health,Health +168887,Health,Health +168881,Health,Health +168874,Health,Health +168868,Health,Health +168863,Health,Health +168856,Health,Health +168848,Health,Health +168838,Health,Health +168830,Health,Health +168826,Health,Health +168821,Health,Health +168811,Health,Health +168801,Health,Health +168794,Health,Health +168743,Health,Health +168739,Health,Health +168735,Health,Health +168731,Health,Health +168728,Health,Health +168722,Health,Health +168712,Health,Health +168696,Health,Health +168651,Health,Health +168648,Health,Health +168645,Health,Health +168637,Health,Health +168631,Health,Health +168628,Health,Health +168625,Health,Health +168619,Health,Health +168614,Health,Health +168611,Health,Health +168571,Health,Health +168567,Health,Health +370724,Health,Health +370722,Health,Health +369999,Health,Health +369639,Health,Health +369637,Health,Health +369635,Health,Health +369634,Health,Health +369632,Health,Health +369631,Health,Health +369630,Health,Health +369629,Health,Health +369628,Health,Health +369627,Health,Health +369625,Health,Health +366699,Health,Health +366697,Health,Health +366696,Health,Health +366695,Health,Health +366693,Health,Health +365293,Health,Health +364022,Health,Health +362428,Health,Health +362423,Health,Health +362422,Health,Health +361247,Health,Health +361246,Health,Health +361245,Health,Health +361244,Health,Health +361242,Health,Health +361241,Health,Health +361240,Health,Health +359861,Health,Health +359859,Health,Health +359858,Health,Health +359855,Health,Health +359854,Health,Health +359852,Health,Health +356416,Health,Health +356415,Health,Health +356323,Health,Health +354070,Health,Health +354065,Health,Health +354064,Health,Health +354061,Health,Health +351296,Health,Health +351291,Health,Health +351289,Health,Health +351287,Health,Health +351285,Health,Health +351283,Health,Health +351281,Health,Health +351279,Health,Health +349200,Health,Health +349196,Health,Health +349172,Health,Health +347326,Health,Health +347325,Health,Health +347324,Health,Health +341994,Health,Health +341992,Health,Health +341790,Health,Health +341784,Health,Health +341774,Health,Health +341747,Health,Health +338620,Health,Health +338618,Health,Health +335670,Health,Health +333406,Health,Health +333395,Health,Health +333392,Health,Health +333389,Health,Health +333387,Health,Health +333385,Health,Health +331628,Health,Health +331610,Health,Health +331608,Health,Health +329474,Health,Health +329473,Health,Health +329472,Health,Health +329471,Health,Health +327525,Health,Health +327523,Health,Health +327344,Health,Health +327342,Health,Health +324886,Health,Health +324885,Health,Health +324884,Health,Health +324883,Health,Health +324882,Health,Health +324881,Health,Health +324880,Health,Health +323827,Health,Health +323826,Health,Health +323825,Health,Health +323824,Health,Health +323823,Health,Health +323820,Health,Health +323819,Health,Health +323818,Health,Health +323817,Health,Health +323816,Health,Health +323815,Health,Health +323814,Health,Health +323813,Health,Health +323812,Health,Health +323811,Health,Health +323809,Health,Health +323808,Health,Health +323801,Health,Health +323800,Health,Health +323799,Health,Health +323798,Health,Health +323797,Health,Health +323796,Health,Health +323795,Health,Health +323794,Health,Health +323793,Health,Health +323792,Health,Health +323791,Health,Health +323790,Health,Health +323786,Health,Health +323784,Health,Health +323780,Health,Health +323779,Health,Health +323778,Health,Health +323777,Health,Health +323776,Health,Health +323775,Health,Health +323774,Health,Health +323773,Health,Health +323772,Health,Health +323771,Health,Health +323768,Health,Health +323766,Health,Health +323765,Health,Health +323763,Health,Health +323762,Health,Health +323761,Health,Health +323760,Health,Health +323758,Health,Health +323757,Health,Health +323756,Health,Health +323755,Health,Health +323754,Health,Health +323753,Health,Health +323752,Health,Health +323751,Health,Health +323750,Health,Health +323749,Health,Health +323748,Health,Health +323746,Health,Health +323745,Health,Health +323744,Health,Health +323743,Health,Health +323742,Health,Health +323741,Health,Health +323740,Health,Health +323738,Health,Health +323737,Health,Health +323736,Health,Health +323735,Health,Health +323734,Health,Health +323733,Health,Health +323732,Health,Health +323731,Health,Health +323729,Health,Health +322013,Health,Health +322009,Health,Health +322007,Health,Health +322003,Health,Health +321999,Health,Health +321997,Health,Health +321989,Health,Health +321984,Health,Health +321981,Health,Health +321979,Health,Health +319054,Health,Health +319053,Health,Health +319052,Health,Health +319051,Health,Health +319050,Health,Health +319049,Health,Health +316017,Health,Health +316016,Health,Health +316015,Health,Health +316014,Health,Health +316013,Health,Health +313352,Health,Health +313351,Health,Health +313350,Health,Health +313349,Health,Health +310484,Health,Health +310471,Health,Health +310468,Health,Health +305092,Health,Health +305091,Health,Health +305090,Health,Health +305089,Health,Health +303531,Health,Health +303530,Health,Health +303518,Health,Health +303514,Health,Health +303471,Health,Health +303449,Health,Health +303419,Health,Health +303417,Health,Health +303416,Health,Health +303414,Health,Health +303413,Health,Health +296842,Health,Health +296837,Health,Health +296836,Health,Health +290656,Health,Health +286811,Health,Health +286810,Health,Health +286809,Health,Health +286792,Health,Health +285261,Health,Health +283830,Health,Health +277557,Health,Health +277553,Health,Health +277549,Health,Health +277546,Health,Health +277533,Health,Health +276609,Health,Health +276608,Health,Health +276606,Health,Health +276605,Health,Health +276604,Health,Health +276603,Health,Health +276602,Health,Health +276601,Health,Health +276600,Health,Health +276599,Health,Health +276598,Health,Health +276597,Health,Health +276595,Health,Health +276594,Health,Health +276593,Health,Health +276592,Health,Health +276591,Health,Health +276590,Health,Health +517313,Health,Health +517312,Health,Health +517310,Health,Health +517306,Health,Health +517303,Health,Health +517301,Health,Health +517300,Health,Health +517299,Health,Health +515355,Health,Health +515354,Health,Health +515353,Health,Health +514607,Health,Health +514605,Health,Health +514602,Health,Health +514202,Health,Health +512910,Health,Health +510554,Health,Health +510552,Health,Health +510509,Health,Health +510506,Health,Health +510460,Health,Health +504600,Health,Health +504597,Health,Health +504595,Health,Health +504590,Health,Health +504273,Health,Health +504272,Health,Health +504271,Health,Health +501602,Health,Health +501600,Health,Health +501599,Health,Health +501598,Health,Health +501301,Health,Health +501300,Health,Health +501298,Health,Health +500975,Health,Health +498263,Health,Health +495087,Health,Health +495085,Health,Health +495082,Health,Health +495076,Health,Health +495075,Health,Health +492755,Health,Health +492754,Health,Health +492753,Health,Health +492752,Health,Health +490874,Health,Health +490530,Health,Health +490524,Health,Health +490504,Health,Health +490493,Health,Health +490490,Health,Health +490483,Health,Health +487231,Health,Health +487229,Health,Health +487223,Health,Health +487211,Health,Health +483884,Health,Health +483883,Health,Health +483882,Health,Health +483881,Health,Health +481617,Health,Health +481616,Health,Health +481615,Health,Health +481612,Health,Health +479943,Health,Health +478609,Health,Health +478266,Health,Health +478265,Health,Health +478264,Health,Health +478260,Health,Health +478258,Health,Health +478256,Health,Health +478254,Health,Health +478251,Health,Health +478242,Health,Health +478240,Health,Health +478239,Health,Health +478238,Health,Health +478236,Health,Health +478206,Health,Health +478204,Health,Health +475633,Health,Health +475632,Health,Health +475631,Health,Health +475630,Health,Health +475628,Health,Health +475627,Health,Health +475625,Health,Health +475624,Health,Health +475622,Health,Health +475620,Health,Health +475615,Health,Health +475610,Health,Health +475608,Health,Health +475607,Health,Health +473368,Health,Health +473349,Health,Health +473347,Health,Health +473344,Health,Health +473341,Health,Health +473334,Health,Health +473332,Health,Health +473328,Health,Health +473326,Health,Health +473325,Health,Health +470835,Health,Health +470827,Health,Health +470824,Health,Health +470822,Health,Health +470821,Health,Health +470820,Health,Health +470811,Health,Health +470809,Health,Health +467518,Health,Health +467516,Health,Health +467514,Health,Health +467512,Health,Health +467511,Health,Health +467508,Health,Health +467505,Health,Health +467476,Health,Health +464550,Health,Health +464549,Health,Health +464546,Health,Health +464545,Health,Health +464543,Health,Health +462702,Health,Health +462701,Health,Health +462700,Health,Health +462699,Health,Health +462696,Health,Health +461715,Health,Health +461713,Health,Health +461710,Health,Health +461708,Health,Health +460978,Health,Health +460977,Health,Health +460695,Health,Health +459626,Health,Health +457558,Health,Health +457557,Health,Health +455434,Health,Health +455433,Health,Health +455432,Health,Health +455431,Health,Health +452667,Health,Health +452665,Health,Health +450308,Health,Health +450125,Health,Health +450122,Health,Health +447679,Health,Health +447678,Health,Health +447677,Health,Health +447676,Health,Health +443580,Health,Health +443579,Health,Health +443577,Health,Health +443575,Health,Health +443572,Health,Health +443571,Health,Health +443568,Health,Health +441975,Health,Health +441942,Health,Health +441938,Health,Health +441934,Health,Health +441925,Health,Health +441924,Health,Health +438982,Health,Health +438973,Health,Health +433505,Health,Health +433501,Health,Health +433499,Health,Health +432202,Health,Health +430472,Health,Health +430471,Health,Health +430470,Health,Health +428580,Health,Health +428549,Health,Health +428545,Health,Health +428543,Health,Health +428541,Health,Health +428539,Health,Health +428538,Health,Health +428536,Health,Health +425615,Health,Health +425614,Health,Health +423359,Health,Health +423356,Health,Health +423353,Health,Health +423350,Health,Health +423347,Health,Health +423346,Health,Health +423344,Health,Health +423343,Health,Health +423339,Health,Health +423337,Health,Health +421234,Health,Health +421233,Health,Health +421232,Health,Health +421231,Health,Health +421230,Health,Health +419900,Health,Health +419897,Health,Health +417768,Health,Health +415931,Health,Health +411854,Health,Health +407585,Health,Health +407429,Health,Health +407427,Health,Health +407426,Health,Health +407425,Health,Health +406558,Health,Health +406555,Health,Health +406551,Health,Health +404743,Health,Health +402332,Health,Health +402327,Health,Health +402276,Health,Health +402274,Health,Health +402271,Health,Health +399991,Health,Health +399980,Health,Health +399972,Health,Health +399935,Health,Health +399933,Health,Health +398921,Health,Health +398917,Health,Health +396672,Health,Health +396642,Health,Health +395862,Health,Health +393477,Health,Health +392447,Health,Health +392444,Health,Health +392438,Health,Health +391510,Health,Health +391507,Health,Health +391504,Health,Health +391497,Health,Health +388593,Health,Health +388592,Health,Health +388589,Health,Health +388558,Health,Health +388554,Health,Health +388549,Health,Health +388546,Health,Health +388535,Health,Health +385840,Health,Health +385839,Health,Health +385838,Health,Health +385837,Health,Health +383587,Health,Health +383586,Health,Health +383582,Health,Health +383581,Health,Health +383576,Health,Health +383572,Health,Health +383564,Health,Health +382643,Health,Health +382641,Health,Health +382636,Health,Health +381669,Health,Health +381662,Health,Health +381660,Health,Health +381658,Health,Health +381653,Health,Health +381649,Health,Health +381647,Health,Health +381646,Health,Health +381645,Health,Health +380013,Health,Health +380011,Health,Health +380009,Health,Health +380006,Health,Health +380004,Health,Health +379999,Health,Health +379996,Health,Health +379995,Health,Health +379994,Health,Health +379993,Health,Health +379992,Health,Health +379759,Health,Health +379756,Health,Health +379752,Health,Health +379745,Health,Health +379740,Health,Health +377378,Health,Health +377349,Health,Health +375078,Health,Health +375074,Health,Health +375073,Health,Health +375072,Health,Health +375070,Health,Health +374720,Health,Health +374719,Health,Health +374717,Health,Health +374716,Health,Health +374711,Health,Health +374710,Health,Health +374709,Health,Health +373500,Health,Health +373485,Health,Health +372750,Health,Health +372681,Health,Health +543439,Health,Health +543432,Health,Health +543426,Health,Health +541714,Health,Health +541713,Health,Health +541708,Health,Health +541705,Health,Health +539667,Health,Health +539665,Health,Health +539664,Health,Health +537433,Health,Health +537432,Health,Health +537431,Health,Health +537429,Health,Health +537428,Health,Health +533747,Health,Health +531544,Health,Health +531541,Health,Health +531539,Health,Health +529419,Health,Health +528877,Health,Health +528872,Health,Health +528870,Health,Health +528868,Health,Health +528864,Health,Health +528860,Health,Health +528854,Health,Health +528845,Health,Health +528838,Health,Health +528828,Health,Health +528825,Health,Health +528815,Health,Health +528811,Health,Health +528807,Health,Health +526092,Health,Health +526086,Health,Health +526083,Health,Health +526081,Health,Health +526078,Health,Health +526077,Health,Health +526076,Health,Health +526074,Health,Health +522496,Health,Health +522495,Health,Health +522494,Health,Health +522492,Health,Health +522490,Health,Health +522486,Health,Health +522482,Health,Health +522481,Health,Health +522477,Health,Health +520732,Health,Health +520731,Health,Health +520730,Health,Health +520729,Health,Health +520728,Health,Health +520726,Health,Health +520725,Health,Health +520724,Health,Health +519530,Health,Health +519523,Health,Health +93662,Other,Health Human Resources +93660,Other,Health Human Resources +149950,Other,Health Human Resources +149949,Other,Health Human Resources +149948,Other,Health Human Resources +135378,Other,Health Human Resources +135376,Other,Health Human Resources +135375,Other,Health Human Resources +135374,Other,Health Human Resources +103794,Other,Health Human Resources +100481,Other,Health Human Resources +100477,Other,Health Human Resources +100472,Other,Health Human Resources +100471,Other,Health Human Resources +100470,Other,Health Human Resources +520724,Justice and Law Enforcement,Justice and Law Enforcement +519530,Justice and Law Enforcement,Justice and Law Enforcement +372750,Justice and Law Enforcement,Justice and Law Enforcement +399980,Justice and Law Enforcement,Justice and Law Enforcement +399972,Justice and Law Enforcement,Justice and Law Enforcement +399935,Justice and Law Enforcement,Justice and Law Enforcement +399933,Justice and Law Enforcement,Justice and Law Enforcement +398917,Justice and Law Enforcement,Justice and Law Enforcement +392447,Justice and Law Enforcement,Justice and Law Enforcement +381646,Justice and Law Enforcement,Justice and Law Enforcement +381645,Justice and Law Enforcement,Justice and Law Enforcement +380011,Justice and Law Enforcement,Justice and Law Enforcement +380009,Justice and Law Enforcement,Justice and Law Enforcement +380006,Justice and Law Enforcement,Justice and Law Enforcement +380004,Justice and Law Enforcement,Justice and Law Enforcement +379999,Justice and Law Enforcement,Justice and Law Enforcement +379996,Justice and Law Enforcement,Justice and Law Enforcement +379995,Justice and Law Enforcement,Justice and Law Enforcement +379994,Justice and Law Enforcement,Justice and Law Enforcement +379993,Justice and Law Enforcement,Justice and Law Enforcement +379992,Justice and Law Enforcement,Justice and Law Enforcement +379756,Justice and Law Enforcement,Justice and Law Enforcement +379752,Justice and Law Enforcement,Justice and Law Enforcement +379745,Justice and Law Enforcement,Justice and Law Enforcement +374720,Justice and Law Enforcement,Justice and Law Enforcement +374719,Justice and Law Enforcement,Justice and Law Enforcement +374717,Justice and Law Enforcement,Justice and Law Enforcement +519523,Justice and Law Enforcement,Justice and Law Enforcement +519521,Justice and Law Enforcement,Justice and Law Enforcement +519516,Justice and Law Enforcement,Justice and Law Enforcement +519510,Justice and Law Enforcement,Justice and Law Enforcement +517313,Justice and Law Enforcement,Justice and Law Enforcement +517312,Justice and Law Enforcement,Justice and Law Enforcement +517310,Justice and Law Enforcement,Justice and Law Enforcement +517306,Justice and Law Enforcement,Justice and Law Enforcement +517303,Justice and Law Enforcement,Justice and Law Enforcement +517301,Justice and Law Enforcement,Justice and Law Enforcement +514607,Justice and Law Enforcement,Justice and Law Enforcement +514605,Justice and Law Enforcement,Justice and Law Enforcement +514602,Justice and Law Enforcement,Justice and Law Enforcement +500975,Justice and Law Enforcement,Justice and Law Enforcement +490524,Justice and Law Enforcement,Justice and Law Enforcement +487211,Justice and Law Enforcement,Justice and Law Enforcement +473332,Justice and Law Enforcement,Justice and Law Enforcement +470827,Justice and Law Enforcement,Justice and Law Enforcement +467511,Justice and Law Enforcement,Justice and Law Enforcement +467508,Justice and Law Enforcement,Justice and Law Enforcement +464549,Justice and Law Enforcement,Justice and Law Enforcement +462700,Justice and Law Enforcement,Justice and Law Enforcement +462699,Justice and Law Enforcement,Justice and Law Enforcement +461715,Justice and Law Enforcement,Justice and Law Enforcement +528845,Justice and Law Enforcement,Justice and Law Enforcement +526086,Justice and Law Enforcement,Justice and Law Enforcement +522492,Justice and Law Enforcement,Justice and Law Enforcement +522490,Justice and Law Enforcement,Justice and Law Enforcement +522482,Justice and Law Enforcement,Justice and Law Enforcement +522481,Justice and Law Enforcement,Justice and Law Enforcement +522477,Justice and Law Enforcement,Justice and Law Enforcement +520731,Justice and Law Enforcement,Justice and Law Enforcement +520730,Justice and Law Enforcement,Justice and Law Enforcement +520729,Justice and Law Enforcement,Justice and Law Enforcement +520726,Justice and Law Enforcement,Justice and Law Enforcement +460978,Taxation and Finance,Taxation and Finance +460977,Taxation and Finance,Taxation and Finance +135394,Taxation and Finance,Taxation and Finance +388554,Taxation and Finance,Taxation and Finance +388546,Taxation and Finance,Taxation and Finance +388535,Taxation and Finance,Taxation and Finance +388532,Taxation and Finance,Taxation and Finance +385936,Taxation and Finance,Taxation and Finance +385935,Taxation and Finance,Taxation and Finance +385869,Taxation and Finance,Taxation and Finance +385868,Taxation and Finance,Taxation and Finance +385841,Taxation and Finance,Taxation and Finance +385840,Taxation and Finance,Taxation and Finance +385839,Taxation and Finance,Taxation and Finance +383586,Taxation and Finance,Taxation and Finance +383585,Taxation and Finance,Taxation and Finance +383584,Taxation and Finance,Taxation and Finance +383583,Taxation and Finance,Taxation and Finance +383580,Taxation and Finance,Taxation and Finance +383578,Taxation and Finance,Taxation and Finance +383574,Taxation and Finance,Taxation and Finance +383571,Taxation and Finance,Taxation and Finance +383570,Taxation and Finance,Taxation and Finance +382642,Taxation and Finance,Taxation and Finance +382640,Taxation and Finance,Taxation and Finance +377374,Taxation and Finance,Taxation and Finance +377354,Taxation and Finance,Taxation and Finance +374715,Taxation and Finance,Taxation and Finance +369628,Taxation and Finance,Taxation and Finance +366696,Taxation and Finance,Taxation and Finance +366695,Taxation and Finance,Taxation and Finance +415931,Taxation and Finance,Taxation and Finance +411852,Taxation and Finance,Taxation and Finance +409342,Taxation and Finance,Taxation and Finance +409333,Taxation and Finance,Taxation and Finance +407585,Taxation and Finance,Taxation and Finance +407429,Taxation and Finance,Taxation and Finance +407427,Taxation and Finance,Taxation and Finance +407426,Taxation and Finance,Taxation and Finance +407425,Taxation and Finance,Taxation and Finance +391497,Taxation and Finance,Taxation and Finance +388593,Taxation and Finance,Taxation and Finance +388592,Taxation and Finance,Taxation and Finance +388589,Taxation and Finance,Taxation and Finance +514607,Taxation and Finance,Taxation and Finance +514605,Taxation and Finance,Taxation and Finance +514602,Taxation and Finance,Taxation and Finance +514202,Taxation and Finance,Taxation and Finance +510506,Taxation and Finance,Taxation and Finance +510460,Taxation and Finance,Taxation and Finance +501602,Taxation and Finance,Taxation and Finance +501600,Taxation and Finance,Taxation and Finance +501599,Taxation and Finance,Taxation and Finance +501598,Taxation and Finance,Taxation and Finance +501301,Taxation and Finance,Taxation and Finance +501300,Taxation and Finance,Taxation and Finance +501298,Taxation and Finance,Taxation and Finance +495075,Taxation and Finance,Taxation and Finance +492752,Taxation and Finance,Taxation and Finance +478266,Taxation and Finance,Taxation and Finance +478265,Taxation and Finance,Taxation and Finance +478264,Taxation and Finance,Taxation and Finance +478260,Taxation and Finance,Taxation and Finance +478258,Taxation and Finance,Taxation and Finance +478254,Taxation and Finance,Taxation and Finance +478251,Taxation and Finance,Taxation and Finance +478239,Taxation and Finance,Taxation and Finance +478238,Taxation and Finance,Taxation and Finance +478236,Taxation and Finance,Taxation and Finance +478206,Taxation and Finance,Taxation and Finance +478204,Taxation and Finance,Taxation and Finance +475633,Taxation and Finance,Taxation and Finance +97142,Other,regulatory process for the implementation of the federal governments renewable fuels standard +97139,Other,regulatory process for the implementation of the federal governments renewable fuels standard +93377,Other,regulatory process for the implementation of the federal governments renewable fuels standard +93375,Other,regulatory process for the implementation of the federal governments renewable fuels standard +93374,Other,regulatory process for the implementation of the federal governments renewable fuels standard +90109,Other,regulatory process for the implementation of the federal governments renewable fuels standard +90108,Other,regulatory process for the implementation of the federal governments renewable fuels standard +90104,Other,regulatory process for the implementation of the federal governments renewable fuels standard +90101,Other,regulatory process for the implementation of the federal governments renewable fuels standard +88018,Other,regulatory process for the implementation of the federal governments renewable fuels standard +82755,Other,regulatory process for the implementation of the federal governments renewable fuels standard +152000,Other,regulatory process for the implementation of the federal governments renewable fuels standard +151998,Other,regulatory process for the implementation of the federal governments renewable fuels standard +142960,Other,regulatory process for the implementation of the federal governments renewable fuels standard +142956,Other,regulatory process for the implementation of the federal governments renewable fuels standard +132544,Other,regulatory process for the implementation of the federal governments renewable fuels standard +132543,Other,regulatory process for the implementation of the federal governments renewable fuels standard +132542,Other,regulatory process for the implementation of the federal governments renewable fuels standard +132540,Other,regulatory process for the implementation of the federal governments renewable fuels standard +129117,Other,regulatory process for the implementation of the federal governments renewable fuels standard +129116,Other,regulatory process for the implementation of the federal governments renewable fuels standard +124385,Other,regulatory process for the implementation of the federal governments renewable fuels standard +117541,Other,regulatory process for the implementation of the federal governments renewable fuels standard +117534,Other,regulatory process for the implementation of the federal governments renewable fuels standard +109504,Other,regulatory process for the implementation of the federal governments renewable fuels standard +105615,Other,regulatory process for the implementation of the federal governments renewable fuels standard +100259,Other,regulatory process for the implementation of the federal governments renewable fuels standard +286649,Financial Institutions,Financial Institutions +249234,Financial Institutions,Financial Institutions +83535,Financial Institutions,Financial Institutions +162547,Financial Institutions,Financial Institutions +162544,Financial Institutions,Financial Institutions +162541,Financial Institutions,Financial Institutions +162540,Financial Institutions,Financial Institutions +162537,Financial Institutions,Financial Institutions +162533,Financial Institutions,Financial Institutions +132875,Financial Institutions,Financial Institutions +87217,Infrastructure,Infrastructure +87215,Infrastructure,Infrastructure +87220,Infrastructure,Infrastructure +87217,Tourism,Tourism +87215,Tourism,Tourism +87220,Tourism,Tourism +85096,Environment,Environment +85095,Environment,Environment +81514,Other,Implementation of the Federal Susatinable Development Act +132839,Other,Implementation of the Federal Susatinable Development Act +84216,Other,Endangered Species Recovery Fund +81534,Other,Endangered Species Recovery Fund +92014,Other,Endangered Species Recovery Fund +94954,Energy,Energy +94954,Environment,Environment +94954,Transportation,Transportation +90597,Other,CFIB's CRA Report card +82924,Other,CFIB's CRA Report card +150394,Other,General Business Update +135938,Other,General Business Update +83543,Other,General Business Update +83542,Other,General Business Update +83541,Other,General Business Update +83539,Other,General Business Update +82932,Other,General Business Update +82955,Other,agriculture +83016,Other,Energy +83014,Other,Energy +83016,Other,Infrastructure +83014,Other,Infrastructure +139175,Other,Infrastructure +106642,Other,Automotive Research +101369,Other,Automotive Research +96894,Other,Automotive Research +90630,Other,Automotive Research +88239,Other,Automotive Research +88236,Other,Automotive Research +85364,Other,Automotive Research +83024,Other,Automotive Research +150505,Other,Automotive Research +125622,Other,Automotive Research +125619,Other,Automotive Research +125615,Other,Automotive Research +125614,Other,Automotive Research +83041,Other,Striving for Best Decisions +101112,Other,Energy Policy +101109,Other,Energy Policy +101105,Other,Energy Policy +101101,Other,Energy Policy +93710,Other,Energy Policy +90488,Other,Energy Policy +88055,Other,Energy Policy +85315,Other,Energy Policy +85314,Other,Energy Policy +83066,Other,Energy Policy +83065,Other,Energy Policy +83063,Other,Energy Policy +145237,Other,Energy Policy +142441,Other,Energy Policy +139474,Other,Energy Policy +134455,Other,Energy Policy +132494,Other,Energy Policy +132489,Other,Energy Policy +132486,Other,Energy Policy +132482,Other,Energy Policy +128701,Other,Energy Policy +128698,Other,Energy Policy +128697,Other,Energy Policy +128696,Other,Energy Policy +109018,Other,Energy Policy +109017,Other,Energy Policy +277387,Industry,Industry +277256,Industry,Industry +112976,Industry,Industry +112975,Industry,Industry +112974,Industry,Industry +109074,Industry,Industry +104997,Industry,Industry +104994,Industry,Industry +101351,Industry,Industry +93677,Industry,Industry +89954,Industry,Industry +89952,Industry,Industry +83073,Industry,Industry +164042,Industry,Industry +162092,Industry,Industry +162089,Industry,Industry +162088,Industry,Industry +154347,Industry,Industry +152209,Industry,Industry +152135,Industry,Industry +152133,Industry,Industry +152132,Industry,Industry +152131,Industry,Industry +152130,Industry,Industry +150224,Industry,Industry +150221,Industry,Industry +150213,Industry,Industry +146054,Industry,Industry +146048,Industry,Industry +146044,Industry,Industry +130096,Industry,Industry +125197,Industry,Industry +125196,Industry,Industry +277253,Industry,Industry +277252,Industry,Industry +272291,Industry,Industry +272290,Industry,Industry +268608,Industry,Industry +268602,Industry,Industry +268600,Industry,Industry +268598,Industry,Industry +264056,Industry,Industry +264054,Industry,Industry +264050,Industry,Industry +259257,Industry,Industry +259256,Industry,Industry +254184,Industry,Industry +240810,Industry,Industry +233599,Industry,Industry +233597,Industry,Industry +230399,Industry,Industry +230397,Industry,Industry +230394,Industry,Industry +217729,Industry,Industry +217727,Industry,Industry +217719,Industry,Industry +217718,Industry,Industry +199954,Industry,Industry +199896,Industry,Industry +193972,Industry,Industry +188997,Industry,Industry +188996,Industry,Industry +174888,Industry,Industry +172948,Industry,Industry +172565,Industry,Industry +170558,Industry,Industry +170557,Industry,Industry +168124,Industry,Industry +168122,Industry,Industry +164043,Industry,Industry +420152,Industry,Industry +406917,Industry,Industry +397298,Industry,Industry +397297,Industry,Industry +391356,Industry,Industry +380310,Industry,Industry +379762,Industry,Industry +379760,Industry,Industry +371841,Industry,Industry +363493,Industry,Industry +341722,Industry,Industry +333236,Industry,Industry +331601,Industry,Industry +329988,Industry,Industry +329987,Industry,Industry +327569,Industry,Industry +327507,Industry,Industry +327506,Industry,Industry +324593,Industry,Industry +324592,Industry,Industry +324591,Industry,Industry +324590,Industry,Industry +318812,Industry,Industry +316070,Industry,Industry +316069,Industry,Industry +316068,Industry,Industry +316066,Industry,Industry +309901,Industry,Industry +303572,Industry,Industry +303570,Industry,Industry +290655,Industry,Industry +286510,Industry,Industry +134985,Other,Introductory Meeting +134984,Other,Introductory Meeting +88041,Other,Introductory Meeting +83077,Other,Introductory Meeting +121336,Other,Long Term Space Plan +113181,Other,Long Term Space Plan +84995,Other,Long Term Space Plan +83080,Other,Long Term Space Plan +138336,Other,Long Term Space Plan +135922,Other,Long Term Space Plan +83082,Other,Long Term Space Plan +132239,Other,Long Term Space Plan +113154,Other,Long Term Space Plan +101296,Other,Long Term Space Plan +85000,Other,Long Term Space Plan +83085,Other,Long Term Space Plan +138335,Other,Long Term Space Plan +132234,Other,Long Term Space Plan +101351,Other,Long Term Space Plan +97545,Other,Long Term Space Plan +138337,Other,Long Term Space Plan +138334,Other,Long Term Space Plan +97547,Other,Long Term Space Plan +93682,Other,Long Term Space Plan +93673,Other,Long Term Space Plan +89950,Other,Long Term Space Plan +84999,Other,Long Term Space Plan +83088,Other,Long Term Space Plan +132240,Other,Long Term Space Plan +130095,Other,Long Term Space Plan +112976,Other,Long Term Space Plan +89949,Other,Long Term Space Plan +83095,Other,Long Term Space Plan +104995,Other,Long Term Space Plan +83114,Other,Long Term Space Plan +135904,Other,Long Term Space Plan +105034,Other,Long Term Space Plan +83116,Other,Long Term Space Plan +135905,Other,Long Term Space Plan +83117,Other,Long Term Space Plan +147969,Other,Long Term Space Plan +113220,Other,Long Term Space Plan +101364,Other,Long Term Space Plan +87594,Other,Long Term Space Plan +83119,Other,Long Term Space Plan +97549,Other,Long Term Space Plan +93754,Other,Long Term Space Plan +93750,Other,Long Term Space Plan +89961,Other,Long Term Space Plan +85003,Other,Long Term Space Plan +83120,Other,Long Term Space Plan +83127,Other,Issues surrounding Radarsat 2 Operating License +114031,Other,Long Term Space Plan +114030,Other,Long Term Space Plan +105074,Other,Long Term Space Plan +101390,Other,Long Term Space Plan +97539,Other,Long Term Space Plan +97537,Other,Long Term Space Plan +97536,Other,Long Term Space Plan +93475,Other,Long Term Space Plan +114057,Other,Long Term Space Plan +230589,Industry,Industry +428915,Industry,Industry +83195,Industry,Industry +416939,Industry,Industry +409653,Industry,Industry +310522,Industry,Industry +310518,Industry,Industry +310514,Industry,Industry +310510,Industry,Industry +310509,Industry,Industry +310507,Industry,Industry +310501,Industry,Industry +310498,Industry,Industry +310497,Industry,Industry +310495,Industry,Industry +264552,Industry,Industry +264548,Industry,Industry +264543,Industry,Industry +250814,Industry,Industry +245116,Industry,Industry +245114,Industry,Industry +162684,Energy,Energy +159967,Energy,Energy +85454,Energy,Energy +101274,Energy,Energy +101270,Energy,Energy +101229,Energy,Energy +93842,Energy,Energy +93840,Energy,Energy +93836,Energy,Energy +88258,Energy,Energy +88257,Energy,Energy +88252,Energy,Energy +88248,Energy,Energy +88246,Energy,Energy +152341,Energy,Energy +152340,Energy,Energy +152339,Energy,Energy +152338,Energy,Energy +150430,Energy,Energy +146046,Energy,Energy +135839,Energy,Energy +135837,Energy,Energy +121375,Energy,Energy +117411,Energy,Energy +117405,Energy,Energy +117404,Energy,Energy +117402,Energy,Energy +117400,Energy,Energy +114241,Energy,Energy +109015,Energy,Energy +106429,Energy,Energy +106427,Energy,Energy +106426,Energy,Energy +106424,Energy,Energy +106422,Energy,Energy +213007,Energy,Energy +167076,Energy,Energy +166130,Energy,Energy +166129,Energy,Energy +166128,Energy,Energy +84756,Other,Innovation Expert Panel Report - Council of Canadian Academies +85428,Other,Future developmental satellite projects to be considered for funding +83314,Other,Future developmental satellite projects to be considered for funding +87657,Other,Future developmental satellite projects to be considered for funding +85428,Other,Future strategic direction of the CSA +83314,Other,Future strategic direction of the CSA +87657,Other,Future strategic direction of the CSA +85854,Taxation and Finance,Taxation and Finance +354902,Immigration,Immigration +436103,Immigration,Immigration +144015,Other,Market & Economic Issues +139454,Other,Market & Economic Issues +83545,Other,Market & Economic Issues +83543,Other,Market & Economic Issues +103242,Other,Market & Economic Issues +103239,Other,Market & Economic Issues +93743,Other,Market & Economic Issues +93742,Other,Market & Economic Issues +93738,Other,Market & Economic Issues +93729,Other,Market & Economic Issues +93725,Other,Market & Economic Issues +93722,Other,Market & Economic Issues +85736,Other,Market & Economic Issues +85735,Other,Market & Economic Issues +85734,Other,Market & Economic Issues +150404,Other,Market & Economic Issues +150403,Other,Market & Economic Issues +187304,Intellectual Property,Intellectual Property +186964,Intellectual Property,Intellectual Property +96034,Intellectual Property,Intellectual Property +181047,Intellectual Property,Intellectual Property +181045,Intellectual Property,Intellectual Property +178144,Intellectual Property,Intellectual Property +175587,Intellectual Property,Intellectual Property +85411,Infrastructure,Infrastructure +84834,Infrastructure,Infrastructure +93074,Infrastructure,Infrastructure +164784,Energy,Energy +163930,Energy,Energy +91094,Energy,Energy +88415,Energy,Energy +164784,Environment,Environment +163930,Environment,Environment +87298,Mining,Mining +87297,Mining,Mining +124324,Agriculture,Agriculture +124322,Agriculture,Agriculture +124321,Agriculture,Agriculture +124319,Agriculture,Agriculture +119575,Agriculture,Agriculture +119574,Agriculture,Agriculture +118775,Agriculture,Agriculture +85717,Agriculture,Agriculture +146056,Agriculture,Agriculture +146045,Agriculture,Agriculture +138698,Agriculture,Agriculture +138693,Agriculture,Agriculture +135819,Agriculture,Agriculture +135816,Agriculture,Agriculture +127614,Internal Trade,Internal Trade +119575,Internal Trade,Internal Trade +135819,Internal Trade,Internal Trade +138693,International Relations,International Relations +83874,International Trade,International Trade +146056,International Trade,International Trade +138698,International Trade,International Trade +138693,International Trade,International Trade +101916,International Trade,International Trade +101914,International Trade,International Trade +128918,Other,Research +115975,Other,Research +95759,Other,Research +158991,Other,Credit Card Fees +153560,Other,Credit Card Fees +194761,Taxation and Finance,Taxation and Finance +194759,Taxation and Finance,Taxation and Finance +194715,Taxation and Finance,Taxation and Finance +263910,Taxation and Finance,Taxation and Finance +263909,Taxation and Finance,Taxation and Finance +230059,Taxation and Finance,Taxation and Finance +222948,Taxation and Finance,Taxation and Finance +210922,Taxation and Finance,Taxation and Finance +210918,Taxation and Finance,Taxation and Finance +91234,International Trade,International Trade +84214,International Trade,International Trade +136335,International Trade,International Trade +158192,Other,contraband tobacco +141819,Other,contraband tobacco +100321,Other,contraband tobacco +84255,Other,contraband tobacco +137137,Other,contraband tobacco +109120,Other,payments industry issues +102720,Other,payments industry issues +102718,Other,payments industry issues +84259,Other,payments industry issues +84260,Other,payments industry issues +84257,Other,payments industry issues +445246,Consumer Issues,Consumer Issues +445234,Consumer Issues,Consumer Issues +92738,Consumer Issues,Consumer Issues +89902,Consumer Issues,Consumer Issues +89899,Consumer Issues,Consumer Issues +84314,Consumer Issues,Consumer Issues +447024,Consumer Issues,Consumer Issues +447023,Consumer Issues,Consumer Issues +125460,Other,"Broadcasting Policy, Canadian Television Fund" +125459,Other,"Broadcasting Policy, Canadian Television Fund" +84315,Other,"Broadcasting Policy, Canadian Television Fund" +106674,Other,"Broadcasting Policy, Canadian Television Fund" +106658,Other,"Broadcasting Policy, Canadian Television Fund" +106656,Other,"Broadcasting Policy, Canadian Television Fund" +125534,Other,Broadcasting Policy +106641,Other,Broadcasting Policy +84335,Other,"Chemicals Management Plan (D4, D5, D6)" +127794,Other,Health +150357,Other,Natural Gas Vehicles +150344,Other,Natural Gas Vehicles +138858,Other,Natural Gas Vehicles +138855,Other,Natural Gas Vehicles +135480,Other,Natural Gas Vehicles +84435,Other,Industry Sustainability +105735,Other,Industry Sustainability +90581,Other,Industry Sustainability +90573,Other,Industry Sustainability +90571,Other,Industry Sustainability +88212,Other,Industry Sustainability +88196,Other,Opportunity for Board members to meet with Minister +84436,Other,Opportunity for Board members to meet with Minister +90581,Other,Opportunity for Board members to meet with Minister +89415,Government Procurement,Government Procurement +103395,Other,Federal Land Acquisition +84534,Other,Federal Land Acquisition +109496,Other,Federal Land Acquisition +401174,Taxation and Finance,Taxation and Finance +401172,Taxation and Finance,Taxation and Finance +168726,Taxation and Finance,Taxation and Finance +150347,Taxation and Finance,Taxation and Finance +150343,Taxation and Finance,Taxation and Finance +143228,Taxation and Finance,Taxation and Finance +143227,Taxation and Finance,Taxation and Finance +143226,Taxation and Finance,Taxation and Finance +143224,Taxation and Finance,Taxation and Finance +143222,Taxation and Finance,Taxation and Finance +143220,Taxation and Finance,Taxation and Finance +389541,Taxation and Finance,Taxation and Finance +389539,Taxation and Finance,Taxation and Finance +388661,Taxation and Finance,Taxation and Finance +384345,Taxation and Finance,Taxation and Finance +384343,Taxation and Finance,Taxation and Finance +370038,Taxation and Finance,Taxation and Finance +370037,Taxation and Finance,Taxation and Finance +370036,Taxation and Finance,Taxation and Finance +370026,Taxation and Finance,Taxation and Finance +351258,Taxation and Finance,Taxation and Finance +254163,Taxation and Finance,Taxation and Finance +533671,Taxation and Finance,Taxation and Finance +533665,Taxation and Finance,Taxation and Finance +465490,Taxation and Finance,Taxation and Finance +465489,Taxation and Finance,Taxation and Finance +460969,Taxation and Finance,Taxation and Finance +445287,Taxation and Finance,Taxation and Finance +444360,Taxation and Finance,Taxation and Finance +444359,Taxation and Finance,Taxation and Finance +434283,Taxation and Finance,Taxation and Finance +422891,Taxation and Finance,Taxation and Finance +422889,Taxation and Finance,Taxation and Finance +411032,Taxation and Finance,Taxation and Finance +404095,Taxation and Finance,Taxation and Finance +109834,Transportation,Transportation +237149,Transportation,Transportation +146096,Transportation,Transportation +145496,Transportation,Transportation +471553,Financial Institutions,Financial Institutions +469282,Financial Institutions,Financial Institutions +137896,Financial Institutions,Financial Institutions +536347,Financial Institutions,Financial Institutions +532856,Financial Institutions,Financial Institutions +532697,Financial Institutions,Financial Institutions +532691,Financial Institutions,Financial Institutions +530693,Financial Institutions,Financial Institutions +530466,Financial Institutions,Financial Institutions +523917,Financial Institutions,Financial Institutions +514387,Financial Institutions,Financial Institutions +489342,Financial Institutions,Financial Institutions +489341,Financial Institutions,Financial Institutions +486995,Financial Institutions,Financial Institutions +485943,Financial Institutions,Financial Institutions +479676,Financial Institutions,Financial Institutions +520434,Taxation and Finance,Taxation and Finance +520433,Taxation and Finance,Taxation and Finance +151339,Taxation and Finance,Taxation and Finance +92117,Taxation and Finance,Taxation and Finance +489346,Taxation and Finance,Taxation and Finance +482822,Taxation and Finance,Taxation and Finance +466312,Taxation and Finance,Taxation and Finance +532857,Taxation and Finance,Taxation and Finance +523507,Taxation and Finance,Taxation and Finance +100708,Other,Climate Change +84614,Other,Climate Change +109322,Other,Climate Change +103148,Other,Climate Change +103147,Other,Climate Change +103145,Other,Climate Change +103144,Other,Climate Change +145825,Other,Science and Technology +129914,Other,Science and Technology +87878,Other,Science and Technology +196749,Transportation,Transportation +196748,Transportation,Transportation +196747,Transportation,Transportation +167797,Transportation,Transportation +162893,Transportation,Transportation +162892,Transportation,Transportation +162891,Transportation,Transportation +162890,Transportation,Transportation +154587,Transportation,Transportation +258069,Transportation,Transportation +237889,Transportation,Transportation +223487,Transportation,Transportation +85316,Employment and Training,Employment and Training +132275,Environment,Environment +165245,Environment,Environment +165245,Mining,Mining +85297,Regional Development,Regional Development +165245,Regional Development,Regional Development +132280,Transportation,Transportation +84756,Other,SADI Program +84755,Other,SADI Program +93564,Other,SADI Program +93548,Other,SADI Program +93540,Other,SADI Program +90515,Other,SADI Program +90513,Other,SADI Program +425755,Taxation and Finance,Taxation and Finance +425754,Taxation and Finance,Taxation and Finance +166150,Taxation and Finance,Taxation and Finance +166147,Taxation and Finance,Taxation and Finance +158088,Taxation and Finance,Taxation and Finance +325929,Taxation and Finance,Taxation and Finance +321478,Taxation and Finance,Taxation and Finance +321477,Taxation and Finance,Taxation and Finance +321475,Taxation and Finance,Taxation and Finance +321472,Taxation and Finance,Taxation and Finance +284073,Taxation and Finance,Taxation and Finance +188253,Taxation and Finance,Taxation and Finance +166154,Taxation and Finance,Taxation and Finance +166152,Taxation and Finance,Taxation and Finance +340507,Taxation and Finance,Taxation and Finance +340505,Taxation and Finance,Taxation and Finance +340502,Taxation and Finance,Taxation and Finance +340500,Taxation and Finance,Taxation and Finance +334454,Taxation and Finance,Taxation and Finance +334453,Taxation and Finance,Taxation and Finance +334451,Taxation and Finance,Taxation and Finance +334450,Taxation and Finance,Taxation and Finance +329029,Taxation and Finance,Taxation and Finance +325932,Taxation and Finance,Taxation and Finance +325931,Taxation and Finance,Taxation and Finance +325930,Taxation and Finance,Taxation and Finance +429618,Taxation and Finance,Taxation and Finance +429617,Taxation and Finance,Taxation and Finance +429614,Taxation and Finance,Taxation and Finance +117955,Other,Biofuels +117954,Other,Biofuels +84904,Other,Biofuels +109826,Other,Biofuels +99016,Other,Biofuels +99015,Other,Biofuels +99014,Other,Biofuels +152302,Other,Biofuels +152301,Other,Biofuels +152300,Other,Biofuels +152299,Other,Biofuels +150304,Other,Biofuels +148518,Other,Biofuels +146212,Other,Biofuels +146211,Other,Biofuels +143219,Other,Biofuels +143218,Other,Biofuels +143217,Other,Biofuels +143216,Other,Biofuels +143215,Other,Biofuels +143214,Other,Biofuels +140176,Other,Biofuels +223579,Education,Education +526078,Employment and Training,Employment and Training +539667,Environment,Environment +519521,Health,Health +93663,Other,Health Human Resources +223575,Immigration,Immigration +520725,Justice and Law Enforcement,Justice and Law Enforcement +475631,Taxation and Finance,Taxation and Finance +373485,Transportation,Transportation +100255,Other,regulatory process for the implementation of the federal governments renewable fuels standard +132873,Financial Institutions,Financial Institutions +82765,Other,General Pipeline Matters +82766,Employment and Training,Employment and Training +82774,Other,health +87219,Infrastructure,Infrastructure +87219,Tourism,Tourism +82779,Other,"To discuss possible participation of the Minister to the launch of Momentum, an AUCC publication on the results of university research" +85097,Environment,Environment +82795,Other,Staff Appointments +87221,Infrastructure,Infrastructure +87221,Tourism,Tourism +82860,Other,the possible promotion of INTERVAC to the scientific community through Science dinners held by Ambassador Wilson +83044,Other,Implementation of the Federal Susatinable Development Act +82896,Other,Hours of Service Regulations +82896,Transportation,Transportation +82897,Other,Infrastructure spending +84217,Other,Endangered Species Recovery Fund +94977,Energy,Energy +94977,Environment,Environment +94977,Transportation,Transportation +82916,Other,Risk Management +90598,Other,CFIB's CRA Report card +82924,Other,CFIB's Hidden tax research report +150406,Other,General Business Update +85390,Other,agriculture +148200,Other,Energy +83018,Other,Infrastructure +83028,Other,Critical Habitat +106655,Other,Automotive Research +83035,Environment,Environment +83033,Other,"Outcomes from the High Level Meeting in Accra, Ghana" +83061,Other,Striving for Best Decisions +83057,Other,Accessibility Hearing Procedure +105421,Other,Energy Policy +83066,Other,Unconventional Oil and Gas +286489,Industry,Industry +83072,Other,North 2 North Program (student exchange) +83073,Other,Announcement of new CSA President +148115,Other,Introductory Meeting +125198,Other,Long Term Space Plan +93688,Other,Long Term Space Plan +83082,Other,Presentation of Company Capabilities +83081,Other,Agriculture Bioproducts Innovation Program +83081,Other,HIV/AIDS prevention projects around the world +87662,Other,Long Term Space Plan +112975,Other,Long Term Space Plan +83091,Other,Plant Tour of Brampton Facility - Demonstration of Technologies +93678,Other,Long Term Space Plan +83107,Other,International Relations +83114,Other,ExoMars Mission +89962,Other,Long Term Space Plan +83116,Other,ExoMars Mission +93744,Other,Long Term Space Plan +83117,Other,ExoMars Mission +85004,Other,Long Term Space Plan +83119,Other,ExoMars Mission +85002,Other,Long Term Space Plan +83120,Other,ExoMars Mission +113219,Other,Long Term Space Plan +84994,Other,Issues surrounding Radarsat 2 Operating License +114054,Other,Long Term Space Plan +237116,Industry,Industry +162888,Energy,Energy +83254,Other,public safety +83256,Other,"CFI, CRC and Indirect Costs programs" +83257,Other,"CFI, CRC and Indirect Costs programs" +84674,Taxation and Finance,Taxation and Finance +83294,Other,WTO and bilateral negotiations update +83294,Other,WTO and bilateral negotiations update +87853,Other,Innovation Expert Panel Report - Council of Canadian Academies +87655,Other,Future developmental satellite projects to be considered for funding +87655,Other,Future strategic direction of the CSA +83354,Other,Labelling Registration Process +83355,Other,Cheese Regulations +83394,Other,Funding +83395,Other,Funding +83396,Other,Funding +83397,Other,Funding +91414,Taxation and Finance,Taxation and Finance +354909,Immigration,Immigration +148576,Other,Market & Economic Issues +83614,Other,Workplace health +83694,International Relations,International Relations +83695,Other,Canadian Light Source synchroton +83696,Other,Canadian Light Source Synchroton +83697,Other,Canadian Light Source Synchrotron +148363,Defence,Defence +152110,Intellectual Property,Intellectual Property +87988,Agriculture,Agriculture +84334,Health,Health +84334,Environment,Environment +90527,Infrastructure,Infrastructure +125814,Other,WTO and bilateral negotiations +164785,Consumer Issues,Consumer Issues +164785,Energy,Energy +164785,Environment,Environment +164785,Industry,Industry +87299,Mining,Mining +127614,Agriculture,Agriculture +146056,Consumer Issues,Consumer Issues +135816,Internal Trade,Internal Trade +138698,International Relations,International Relations +85717,International Trade,International Trade +114034,Other,Tobacco Control Programme +148227,Other,Consumer Issues - Standards and Safety +98754,Transportation,Transportation +84014,Other,Federal-Provincial Relations +154880,Transportation,Transportation +84015,Other,Federal-Provincial Relations +84016,Other,Federal-Provincial Relations +84017,Other,Federal-Provincial Relations +84019,Other,Research +158992,Other,Credit Card Fees +210914,Taxation and Finance,Taxation and Finance +84074,Other,"Impact of credit crisis on Canadian exporters; Appointment of CME representative in Washington, DC." +84094,Other,Impact of credit crisis on Canadian manufacturers. +84135,Other,"Met with Dino Chiesa in Toronto on Oct 28/08 to discuss financial incentives, guarantees for retrofit financing" +131494,International Trade,International Trade +84254,Other,payments systems issues +112875,Other,contraband tobacco +84256,Other,payments industry issues +102719,Other,payments industry issues +445251,Consumer Issues,Consumer Issues +106641,Other,"Broadcasting Policy, Canadian Television Fund" +84316,Other,Bill C-10 +84317,Other,Broadcasting Policy +84336,Other,"Chemicals Management Plan (D4, D5, D6)" +84354,Other,Health +84394,Other,Legal issues regarding ports +84397,Other,Legal issues regarding ports +84414,Other,Natural Gas Supply in the community +84414,Other,Natural Gas Vehicles +88179,Other,Industry Sustainability +90565,Other,Opportunity for Board members to meet with Minister +89418,Government Procurement,Government Procurement +84474,Other,Capabilities / familiarization presentation +90675,Financial Institutions,Financial Institutions +103396,Other,Federal Land Acquisition +401176,Taxation and Finance,Taxation and Finance +100430,Education,Education +311330,Consumer Issues,Consumer Issues +109835,Transportation,Transportation +479668,Financial Institutions,Financial Institutions +520946,Taxation and Finance,Taxation and Finance +103143,Other,Climate Change +89415,Defence,Defence +84657,Other,Courtesy Call +84676,Other,International Research +84696,Other,Science and Technology +215067,Transportation,Transportation +132280,Employment and Training,Employment and Training +132275,Energy,Energy +132283,Environment,Environment +85297,Mining,Mining +132280,Regional Development,Regional Development +165245,Transportation,Transportation +84757,Other,SADI Program +429612,Taxation and Finance,Taxation and Finance +145719,Other,Applied Research +120898,Other,Biofuels +105338,Other,Competition policy/legal reform +84901,Other,Regulatory +129517,Other,Fish Habitat Protection Program +87537,Other,Noctua - UAV Project +129294,Other,Shipbuilding Industry +84992,Other,Environment - update on matters affecting airports +435501,International Relations,International Relations +84993,Other,Inter Pares meets with various Canadian ambassadors to discuss Canada's international cooperation +84994,Other,Bill C-25 Specific Item +85014,Other,Financial Policy Concerning Federally Regulated Pensions +85014,Other,Follow-up RSA Panel Report +85014,Other,Future Rail Technology Development +85039,Other,Broad Government Public Policy Program +85039,Other,Fuel Excise Tax +85039,Other,Future Legislative Priorities +85039,Other,Pension +85039,Other,Rail Service Review +85047,Other,multilateral and bilateral international trade issues +85048,Other,Election Commitments to Business +85046,Other,Railway Noise & Vibration Guidelines (Publication of Guidelines) +85044,Other,CBSA Priorities +135337,Other,State of Automotive Industry in Canada +85114,Other,Bill C-46 +85115,Other,Financial Services +324333,Health,Health +106431,Other,AIS satellite constellation as an option for inclusion in the Canadian space plan +106437,Other,AIS satellite constellation as an option for inclusion in the CSA's next Long Term Space Plan +144674,Other,Canadian Space Plan +113298,Other,National Airports Policy with respect to airport development +243306,Regional Development,Regional Development +115354,Consumer Issues,Consumer Issues +196104,Intellectual Property,Intellectual Property +350124,Consumer Issues,Consumer Issues +401973,Health,Health +412932,Industry,Industry +509251,International Trade,International Trade +370703,Justice and Law Enforcement,Justice and Law Enforcement +158202,Small Business,Small Business +158202,Taxation and Finance,Taxation and Finance +85337,Other,the National Do Not Call List regulations +105854,Other,Business Risk Management +87831,Other,Business Risk Management +85345,Other,Environment +273712,Mining,Mining +85342,Other,Business Risk Management +85349,Other,Business Risk Management +99076,Other,Challenging data needs of municipalities +106020,Other,Government Sponsored National Vaccination Program +85350,Other,Vehicle Safety +89939,Other,Government Sponsored National Vaccination Program +124659,Other,Government Sponsored National Vaccination Program +85360,Other,Industry +85363,Other,Industry +85366,Other,Industry +129279,Other,International Trade and Agriculture +85400,Other,Discussion of Commercialization of University Research +85396,Other,Technology transfer initiatives at the University of Manitoba +85407,Other,Border Transaction and Infrastructure Issues +86035,Other,AWS Spectrum Auction +88295,Other,Pension policies +85434,Other,Pacific Institute for Climate Solutions Advisory Board +85436,Other,Pacific Institute for Climate Solutions Advisory Board +126098,Other,Funding for science research in Canada +110419,Consumer Issues,Consumer Issues +109738,Other,"Chemicals Management Plan (D4, D5, D6)" +85598,Other,Canada's Space Program +85601,Other,To discuss Canada's Space Program +85634,Other,Harm reduction measures in federal prisons +140175,Other,Biofuels +140174,Other,Biofuels +132499,Other,Biofuels +132492,Other,Biofuels +129006,Other,Biofuels +129005,Other,Biofuels +129004,Other,Biofuels +128999,Other,Biofuels +128995,Other,Biofuels +125396,Other,Biofuels +125395,Other,Biofuels +84907,Other,Competition policy/legal reform +84934,Other,Noctua - UAV Project +121292,Other,Shipbuilding Industry +121286,Other,Shipbuilding Industry +117255,Other,Shipbuilding Industry +109683,Other,Shipbuilding Industry +105396,Other,Shipbuilding Industry +84985,Other,Shipbuilding Industry +84978,Other,Shipbuilding Industry +158973,Other,Shipbuilding Industry +158972,Other,Shipbuilding Industry +158971,Other,Shipbuilding Industry +158970,Other,Shipbuilding Industry +158969,Other,Shipbuilding Industry +150857,Other,Shipbuilding Industry +129315,Other,Shipbuilding Industry +129314,Other,Shipbuilding Industry +129295,Other,Shipbuilding Industry +435498,International Relations,International Relations +381496,International Relations,International Relations +84993,International Relations,International Relations +273003,International Relations,International Relations +273001,International Relations,International Relations +243550,International Relations,International Relations +243549,International Relations,International Relations +243531,International Relations,International Relations +226539,International Relations,International Relations +226538,International Relations,International Relations +215769,International Relations,International Relations +215768,International Relations,International Relations +133575,Other,State of Automotive Industry in Canada +324177,Health,Health +324176,Health,Health +217970,Health,Health +207530,Health,Health +180584,Health,Health +171792,Health,Health +171791,Health,Health +171790,Health,Health +169294,Health,Health +169293,Health,Health +169292,Health,Health +169291,Health,Health +169290,Health,Health +324132,Health,Health +323851,Health,Health +316012,Health,Health +276712,Health,Health +276711,Health,Health +276710,Health,Health +276709,Health,Health +333407,Health,Health +94294,Other,AIS satellite constellation as an option for inclusion in the Canadian space plan +85157,Other,AIS satellite constellation as an option for inclusion in the Canadian space plan +114097,Other,AIS satellite constellation as an option for inclusion in the Canadian space plan +106435,Other,AIS satellite constellation as an option for inclusion in the CSA's next Long Term Space Plan +85157,Other,AIS satellite constellation as an option for inclusion in the CSA's next Long Term Space Plan +153915,Other,Canadian Space Plan +84859,Other,National Airports Policy with respect to airport development +84857,Other,National Airports Policy with respect to airport development +158183,Consumer Issues,Consumer Issues +158182,Consumer Issues,Consumer Issues +158183,Intellectual Property,Intellectual Property +158182,Intellectual Property,Intellectual Property +115354,Intellectual Property,Intellectual Property +434553,Consumer Issues,Consumer Issues +416675,Consumer Issues,Consumer Issues +158202,Consumer Issues,Consumer Issues +156041,Consumer Issues,Consumer Issues +412932,Consumer Issues,Consumer Issues +401974,Consumer Issues,Consumer Issues +401973,Consumer Issues,Consumer Issues +392050,Consumer Issues,Consumer Issues +392049,Consumer Issues,Consumer Issues +384371,Consumer Issues,Consumer Issues +380524,Consumer Issues,Consumer Issues +380522,Consumer Issues,Consumer Issues +377985,Consumer Issues,Consumer Issues +377983,Consumer Issues,Consumer Issues +377981,Consumer Issues,Consumer Issues +377979,Consumer Issues,Consumer Issues +375517,Consumer Issues,Consumer Issues +375516,Consumer Issues,Consumer Issues +375515,Consumer Issues,Consumer Issues +350129,Consumer Issues,Consumer Issues +350128,Consumer Issues,Consumer Issues +509251,Health,Health +500096,Health,Health +158202,Health,Health +156041,Health,Health +377985,Health,Health +377983,Health,Health +377981,Health,Health +377979,Health,Health +350128,Health,Health +350124,Health,Health +491853,Health,Health +449267,Health,Health +434553,Health,Health +416675,Health,Health +401974,Health,Health +380524,Industry,Industry +380522,Industry,Industry +156041,Industry,Industry +416675,Industry,Industry +350124,Justice and Law Enforcement,Justice and Law Enforcement +446981,Justice and Law Enforcement,Justice and Law Enforcement +158202,Justice and Law Enforcement,Justice and Law Enforcement +156041,Justice and Law Enforcement,Justice and Law Enforcement +416675,Justice and Law Enforcement,Justice and Law Enforcement +412932,Justice and Law Enforcement,Justice and Law Enforcement +375517,Justice and Law Enforcement,Justice and Law Enforcement +375516,Justice and Law Enforcement,Justice and Law Enforcement +375515,Justice and Law Enforcement,Justice and Law Enforcement +370705,Justice and Law Enforcement,Justice and Law Enforcement +156041,Taxation and Finance,Taxation and Finance +392050,Taxation and Finance,Taxation and Finance +392049,Taxation and Finance,Taxation and Finance +380524,Taxation and Finance,Taxation and Finance +380522,Taxation and Finance,Taxation and Finance +375517,Taxation and Finance,Taxation and Finance +375516,Taxation and Finance,Taxation and Finance +375515,Taxation and Finance,Taxation and Finance +373657,Taxation and Finance,Taxation and Finance +373656,Taxation and Finance,Taxation and Finance +370708,Taxation and Finance,Taxation and Finance +370707,Taxation and Finance,Taxation and Finance +370705,Taxation and Finance,Taxation and Finance +370704,Taxation and Finance,Taxation and Finance +370703,Taxation and Finance,Taxation and Finance +370702,Taxation and Finance,Taxation and Finance +370701,Taxation and Finance,Taxation and Finance +350129,Taxation and Finance,Taxation and Finance +416675,Taxation and Finance,Taxation and Finance +412932,Taxation and Finance,Taxation and Finance +90874,Other,Business Risk Management +85344,Other,Business Risk Management +106536,Other,Business Risk Management +85344,Other,Business Risk Management +273711,Mining,Mining +273710,Mining,Mining +85345,Mining,Mining +269571,Mining,Mining +269505,Mining,Mining +269494,Mining,Mining +349263,Mining,Mining +349262,Mining,Mining +349260,Mining,Mining +349259,Mining,Mining +349258,Mining,Mining +327522,Mining,Mining +324712,Mining,Mining +324710,Mining,Mining +324706,Mining,Mining +324705,Mining,Mining +324704,Mining,Mining +324703,Mining,Mining +324701,Mining,Mining +324700,Mining,Mining +273714,Mining,Mining +273713,Mining,Mining +85348,Other,Challenging data needs of municipalities +96336,Other,Government Sponsored National Vaccination Program +89936,Other,Government Sponsored National Vaccination Program +106016,Other,Government Sponsored National Vaccination Program +100517,Other,Government Sponsored National Vaccination Program +89942,Other,Government Sponsored National Vaccination Program +106019,Other,Government Sponsored National Vaccination Program +100518,Other,Government Sponsored National Vaccination Program +96342,Other,Government Sponsored National Vaccination Program +96339,Other,Government Sponsored National Vaccination Program +92595,Other,Government Sponsored National Vaccination Program +92594,Other,Government Sponsored National Vaccination Program +124760,Other,International Trade and Agriculture +124758,Other,International Trade and Agriculture +85365,Other,International Trade and Agriculture +142451,Other,International Trade and Agriculture +88294,Other,Pension policies +134174,Other,Pension policies +126095,Other,Funding for science research in Canada +126034,Other,Funding for science research in Canada +85437,Other,Funding for science research in Canada +126116,Other,Funding for science research in Canada +126115,Other,Funding for science research in Canada +110416,Consumer Issues,Consumer Issues +87915,Other,"Chemicals Management Plan (D4, D5, D6)" +108057,Health,Health +302751,Energy,Energy +302750,Energy,Energy +302831,Energy,Energy +302830,Energy,Energy +302812,Energy,Energy +302769,Energy,Energy +302758,Energy,Energy +302757,Energy,Energy +302751,Environment,Environment +302750,Environment,Environment +302831,Environment,Environment +302830,Environment,Environment +302812,Environment,Environment +302769,Environment,Environment +302758,Environment,Environment +302757,Environment,Environment +85794,International Trade,International Trade +163689,International Trade,International Trade +91235,International Trade,International Trade +163691,International Trade,International Trade +143154,Other,Future Regulations +143134,Other,Future Regulations +85875,Other,Future Regulations +324701,Employment and Training,Employment and Training +273712,Employment and Training,Employment and Training +273710,Employment and Training,Employment and Training +327522,Employment and Training,Employment and Training +324706,Employment and Training,Employment and Training +324705,Employment and Training,Employment and Training +324704,Employment and Training,Employment and Training +324704,Transportation,Transportation +324700,Transportation,Transportation +273713,Transportation,Transportation +96343,Energy,Energy +96340,Energy,Energy +101064,Energy,Energy +101060,Energy,Energy +155588,Defence,Défense +155587,Defence,Défense +155586,Defence,Défense +145854,Defence,Défense +109254,Defence,Défense +109232,Defence,Défense +97854,Defence,Défense +97842,Defence,Défense +153629,Other,sanofi-aventis Biotalent Challenge +85994,Other,sanofi-aventis Biotalent Challenge +86014,Other,NHP Regulations +135840,Other,NHP Regulations +115136,Other,NHP Regulations +145718,Consumer Issues,Consumer Issues +145715,Consumer Issues,Consumer Issues +145714,Consumer Issues,Consumer Issues +123337,Consumer Issues,Consumer Issues +189549,Consumer Issues,Consumer Issues +158543,Consumer Issues,Consumer Issues +158541,Consumer Issues,Consumer Issues +156651,Consumer Issues,Consumer Issues +145714,Financial Institutions,Financial Institutions +189549,Financial Institutions,Financial Institutions +123337,Financial Institutions,Financial Institutions +145718,Financial Institutions,Financial Institutions +145714,Taxation and Finance,Taxation and Finance +123337,Taxation and Finance,Taxation and Finance +189549,Taxation and Finance,Taxation and Finance +145718,Taxation and Finance,Taxation and Finance +91694,Other,Electricity sector issues +86154,Other,Electricity sector issues +88162,Intellectual Property,Intellectual Property +105698,Intellectual Property,Intellectual Property +88173,Intellectual Property,Intellectual Property +109752,Agriculture,Agriculture +107716,Agriculture,Agriculture +90430,Agriculture,Agriculture +89215,Agriculture,Agriculture +114557,Agriculture,Agriculture +88049,Health,Health +97895,Other,family Caregiving +86295,Other,family Caregiving +109937,Agriculture,Agriculture +109936,Agriculture,Agriculture +142972,Agriculture,Agriculture +142965,Environment,Environment +109936,Infrastructure,Infrastructure +142965,Transportation,Transportation +86334,Other,Tobacco stamping +86356,Other,National Refining Strategy +86394,Other,"Customs & Border policies, regarding passenger facilitation initiatives" +86394,Other,"Customs Act Amendments, regarding Customs Controlled Areas" +85717,Other,Industry +147795,Other,Deterrence of Terrorism and treatment of terror victims +145580,Other,Deterrence of Terrorism and treatment of terror victims +132459,Other,Deterrence of Terrorism and treatment of terror victims +132458,Other,Deterrence of Terrorism and treatment of terror victims +128295,Other,Deterrence of Terrorism and treatment of terror victims +113079,Other,Deterrence of Terrorism and treatment of terror victims +113076,Other,Deterrence of Terrorism and treatment of terror victims +113075,Other,Deterrence of Terrorism and treatment of terror victims +101072,Other,Deterrence of Terrorism and treatment of terror victims +138460,Industry,Industry +138458,Industry,Industry +138460,Infrastructure,Infrastructure +138458,Infrastructure,Infrastructure +116036,Regional Development,Regional Development +111760,Regional Development,Regional Development +109122,Regional Development,Regional Development +100309,Regional Development,Regional Development +132317,Other,Northern Regulatory Improvement Initiative +132316,Other,Northern Regulatory Improvement Initiative +90429,Other,Northern Regulatory Improvement Initiative +86675,Other,Northern Regulatory Improvement Initiative +86658,Other,Northern Regulatory Improvement Initiative +86654,Other,Northern Regulatory Improvement Initiative +86614,Other,Northern Regulatory Improvement Initiative +132315,Other,Northern Regulatory Improvement Initiative +132286,Other,Northern Regulatory Improvement Initiative +114414,Other,Northern Regulatory Improvement Initiative +100800,Other,Climate Change and Clean Air +90423,Other,Climate Change and Clean Air +86675,Other,Climate Change and Clean Air +86658,Other,Climate Change and Clean Air +86655,Other,Climate Change and Clean Air +86654,Other,Climate Change and Clean Air +86615,Other,Climate Change and Clean Air +134962,Other,Climate Change and Clean Air +132288,Other,Climate Change and Clean Air +111316,Other,Climate Change and Clean Air +111294,Other,Climate Change and Clean Air +86655,Other,Corporate and Social Responsibility & Human Rights +86654,Other,Corporate and Social Responsibility & Human Rights +86634,Other,Corporate and Social Responsibility & Human Rights +86615,Other,Corporate and Social Responsibility & Human Rights +134962,Other,Corporate and Social Responsibility & Human Rights +132317,Other,Corporate and Social Responsibility & Human Rights +132315,Other,Corporate and Social Responsibility & Human Rights +132301,Other,Corporate and Social Responsibility & Human Rights +132288,Other,Corporate and Social Responsibility & Human Rights +132285,Other,Corporate and Social Responsibility & Human Rights +131995,Other,Corporate and Social Responsibility & Human Rights +111354,Other,Corporate and Social Responsibility & Human Rights +111318,Other,Corporate and Social Responsibility & Human Rights +111316,Other,Corporate and Social Responsibility & Human Rights +110895,Other,Corporate and Social Responsibility & Human Rights +86675,Other,Corporate and Social Responsibility & Human Rights +86658,Other,Corporate and Social Responsibility & Human Rights +86615,Other,Foreign investment and trade +132317,Other,Foreign investment and trade +132315,Other,Foreign investment and trade +86675,Other,Foreign investment and trade +86658,Other,Foreign investment and trade +86656,Other,Foreign investment and trade +86655,Other,Foreign investment and trade +86654,Other,Foreign investment and trade +138798,Transportation,Transportation +138796,Transportation,Transportation +135828,Transportation,Transportation +135827,Transportation,Transportation +135824,Transportation,Transportation +145660,Transportation,Transportation +145659,Transportation,Transportation +143005,Transportation,Transportation +143003,Transportation,Transportation +134054,Other,Policy support for heavy-duty natural gas vehicle fleets +157890,Energy,Energy +157787,Energy,Energy +89083,Energy,Energy +89082,Energy,Energy +89080,Energy,Energy +89079,Energy,Energy +89078,Energy,Energy +89077,Energy,Energy +89076,Energy,Energy +89075,Energy,Energy +89074,Energy,Energy +157890,Environment,Environment +157787,Environment,Environment +89083,Environment,Environment +89082,Environment,Environment +89080,Environment,Environment +89079,Environment,Environment +89078,Environment,Environment +89076,Environment,Environment +89075,Environment,Environment +89074,Environment,Environment +89081,Industry,Industry +89077,Industry,Industry +157891,Industry,Industry +157890,Industry,Industry +157787,Industry,Industry +87321,Industry,Industry +140974,Other,Government funding for genomics research +140961,Other,Government funding for genomics research +140960,Other,Government funding for genomics research +137182,Other,Government funding for genomics research +116436,Other,Government funding for genomics research +93020,Other,Government funding for genomics research +87095,Other,Government funding for genomics research +101038,Transportation,Transportation +150137,Transportation,Transportation +145581,Transportation,Transportation +138577,Transportation,Transportation +101045,Transportation,Transportation +89414,Taxation and Finance,Taxation and Finance +87214,Taxation and Finance,Taxation and Finance +135705,Other,Land use planning in Northern Canada +108059,Other,Land use planning in Northern Canada +93455,Other,Defined pension plan +87320,Other,Defined pension plan +148099,Other,Defined pension plan +132842,Other,Defined pension plan +87334,Other,State of manufacturing sector and policy measures in support of manufacturing. +87330,Other,State of manufacturing sector and policy measures in support of manufacturing. +87325,Other,State of manufacturing sector and policy measures in support of manufacturing. +87329,Other,Common securities regulator +87324,Other,Common securities regulator +130754,Other,Common securities regulator +87329,Other,Impact of current financial crisis +87324,Other,Impact of current financial crisis +116835,Other,Defined pension plan +87328,Other,Defined pension plan +113441,Other,Pensions +113435,Other,Pensions +108676,Other,Pensions +104374,Other,Pensions +104334,Other,Pensions +104322,Other,Pensions +101380,Other,Pensions +99707,Other,Pensions +99544,Other,Pensions +99537,Other,Pensions +87415,Other,Pensions +157198,Other,Pensions +87496,Immigration,Immigration +87852,Other,World Trade Organization negociations +141779,Other,World Trade Organization negociations +141778,Other,World Trade Organization negociations +97164,Other,World Trade Organization negociations +125050,Other,Droits d'auteur +120257,Other,Droits d'auteur +88356,Other,Competition Policy +88355,Other,Competition Policy +125050,Other,Développment du contenu canadien +109199,Other,Développment du contenu canadien +100817,Other,Développment du contenu canadien +96760,Other,Développment du contenu canadien +87546,Other,Développment du contenu canadien +103636,Other,Pension regulations +87583,Other,Financial Institutions - capital and risk management +87661,Other,"Introduce Telesat; highlight issues; Telesat has applied for two spectrum licences in the 17 GHz BSS band, the use of the Extended Ku band for DTH services;" +87661,Other,Telesat’s desire to see the foreign ownership restrictions relaxed for Canadian satellite operators. +132457,Transportation,Transportation +87735,Other,Bilateral Air Agreements / Negotiations +143716,Other,industry +143715,Other,industry +145135,Other,industry +115996,Other,food fortification regulations +115995,Other,food fortification regulations +111236,Other,food fortification regulations +109180,Other,food fortification regulations +87798,Other,food fortification regulations +133834,Other,food fortification regulations +130695,Other,food fortification regulations +126835,Other,food fortification regulations +115994,Other,product of Canada +96837,Other,product of Canada +87824,Other,Seaway labour issues +87823,Other,Seaway labour issues +87827,Other,Seaway labour issues +105854,Other,Farm Animal Care +87833,Other,Farm Animal Care +525285,Government Procurement,Government Procurement +522282,Government Procurement,Government Procurement +90734,Government Procurement,Government Procurement +87835,Government Procurement,Government Procurement +152640,Government Procurement,Government Procurement +117093,Government Procurement,Government Procurement +117088,Government Procurement,Government Procurement +107603,Government Procurement,Government Procurement +107601,Government Procurement,Government Procurement +107600,Government Procurement,Government Procurement +298870,Government Procurement,Government Procurement +298850,Government Procurement,Government Procurement +279169,Government Procurement,Government Procurement +276513,Government Procurement,Government Procurement +272229,Government Procurement,Government Procurement +269752,Government Procurement,Government Procurement +199573,Government Procurement,Government Procurement +388254,Government Procurement,Government Procurement +378055,Government Procurement,Government Procurement +377494,Government Procurement,Government Procurement +377493,Government Procurement,Government Procurement +377491,Government Procurement,Government Procurement +365246,Government Procurement,Government Procurement +355887,Government Procurement,Government Procurement +355884,Government Procurement,Government Procurement +355882,Government Procurement,Government Procurement +355880,Government Procurement,Government Procurement +355879,Government Procurement,Government Procurement +355874,Government Procurement,Government Procurement +355873,Government Procurement,Government Procurement +355872,Government Procurement,Government Procurement +355843,Government Procurement,Government Procurement +355837,Government Procurement,Government Procurement +352041,Government Procurement,Government Procurement +351671,Government Procurement,Government Procurement +351668,Government Procurement,Government Procurement +351664,Government Procurement,Government Procurement +339010,Government Procurement,Government Procurement +331544,Government Procurement,Government Procurement +330872,Government Procurement,Government Procurement +327461,Government Procurement,Government Procurement +514528,Government Procurement,Government Procurement +513458,Government Procurement,Government Procurement +504189,Government Procurement,Government Procurement +497069,Government Procurement,Government Procurement +463890,Government Procurement,Government Procurement +460525,Government Procurement,Government Procurement +419721,Government Procurement,Government Procurement +411909,Government Procurement,Government Procurement +537232,Government Procurement,Government Procurement +405113,Government Procurement,Government Procurement +389117,Government Procurement,Government Procurement +117090,Government Procurement,Government Procurement +117086,Government Procurement,Government Procurement +117084,Government Procurement,Government Procurement +107594,Government Procurement,Government Procurement +87838,Government Procurement,Government Procurement +225949,Government Procurement,Government Procurement +201470,Government Procurement,Government Procurement +200158,Government Procurement,Government Procurement +383257,Government Procurement,Government Procurement +383255,Government Procurement,Government Procurement +378076,Government Procurement,Government Procurement +377492,Government Procurement,Government Procurement +355878,Government Procurement,Government Procurement +355877,Government Procurement,Government Procurement +355876,Government Procurement,Government Procurement +355871,Government Procurement,Government Procurement +355844,Government Procurement,Government Procurement +355840,Government Procurement,Government Procurement +355838,Government Procurement,Government Procurement +351670,Government Procurement,Government Procurement +351667,Government Procurement,Government Procurement +351662,Government Procurement,Government Procurement +339011,Government Procurement,Government Procurement +320490,Government Procurement,Government Procurement +320489,Government Procurement,Government Procurement +298869,Government Procurement,Government Procurement +276509,Government Procurement,Government Procurement +269751,Government Procurement,Government Procurement +245670,Government Procurement,Government Procurement +541175,Government Procurement,Government Procurement +537231,Government Procurement,Government Procurement +533509,Government Procurement,Government Procurement +533507,Government Procurement,Government Procurement +533500,Government Procurement,Government Procurement +525286,Government Procurement,Government Procurement +525284,Government Procurement,Government Procurement +525283,Government Procurement,Government Procurement +514527,Government Procurement,Government Procurement +513951,Government Procurement,Government Procurement +513950,Government Procurement,Government Procurement +469558,Government Procurement,Government Procurement +463894,Government Procurement,Government Procurement +463892,Government Procurement,Government Procurement +460523,Government Procurement,Government Procurement +456910,Government Procurement,Government Procurement +419844,Government Procurement,Government Procurement +419838,Government Procurement,Government Procurement +152639,Other,DEFENCE PROCUREMENT +152638,Other,DEFENCE PROCUREMENT +152637,Other,DEFENCE PROCUREMENT +107594,Other,DEFENCE PROCUREMENT +87840,Other,DEFENCE PROCUREMENT +172852,Other,DEFENCE PROCUREMENT +172851,Other,DEFENCE PROCUREMENT +172850,Other,DEFENCE PROCUREMENT +172849,Other,DEFENCE PROCUREMENT +172848,Other,DEFENCE PROCUREMENT +172847,Other,DEFENCE PROCUREMENT +172846,Other,DEFENCE PROCUREMENT +159111,Other,DEFENCE PROCUREMENT +159110,Other,DEFENCE PROCUREMENT +159103,Other,DEFENCE PROCUREMENT +159102,Other,DEFENCE PROCUREMENT +327293,International Trade,International Trade +327292,International Trade,International Trade +378758,International Trade,International Trade +378757,International Trade,International Trade +327296,International Trade,International Trade +327295,International Trade,International Trade +106535,Agriculture,Agriculture +170877,Agriculture,Agriculture +106534,Agriculture,Agriculture +105794,Agriculture,Agriculture +97524,Agriculture,Agriculture +92865,Agriculture,Agriculture +159689,Agriculture,Agriculture +159688,Agriculture,Agriculture +159686,Agriculture,Agriculture +159681,Agriculture,Agriculture +150020,Agriculture,Agriculture +150019,Agriculture,Agriculture +145979,Agriculture,Agriculture +144017,Agriculture,Agriculture +136517,Agriculture,Agriculture +127694,Agriculture,Agriculture +150019,Consumer Issues,Consumer Issues +159683,International Trade,International Trade +159681,International Trade,International Trade +87845,International Trade,International Trade +150020,International Trade,International Trade +150019,International Trade,International Trade +122714,International Trade,International Trade +106535,International Trade,International Trade +106534,International Trade,International Trade +105794,International Trade,International Trade +159688,International Trade,International Trade +276171,International Trade,International Trade +276169,International Trade,International Trade +225609,International Trade,International Trade +225608,International Trade,International Trade +225607,International Trade,International Trade +225606,International Trade,International Trade +205088,International Trade,International Trade +399479,Employment and Training,Employment and Training +375454,Employment and Training,Employment and Training +386162,Industry,Industry +386161,Industry,Industry +375454,Industry,Industry +399998,Industry,Industry +145516,Intellectual Property,Intellectual Property +462208,Intellectual Property,Intellectual Property +277989,Intellectual Property,Intellectual Property +202771,Intellectual Property,Intellectual Property +202767,Intellectual Property,Intellectual Property +200453,Intellectual Property,Intellectual Property +193974,Intellectual Property,Intellectual Property +193971,Intellectual Property,Intellectual Property +399479,Taxation and Finance,Taxation and Finance +375454,Taxation and Finance,Taxation and Finance +123955,Taxation and Finance,Taxation and Finance +277989,Taxation and Finance,Taxation and Finance +237014,Taxation and Finance,Taxation and Finance +202771,Taxation and Finance,Taxation and Finance +188964,Taxation and Finance,Taxation and Finance +162405,Taxation and Finance,Taxation and Finance +157356,Taxation and Finance,Taxation and Finance +145516,Taxation and Finance,Taxation and Finance +141334,Taxation and Finance,Taxation and Finance +133857,Taxation and Finance,Taxation and Finance +133856,Taxation and Finance,Taxation and Finance +124889,Other,Climate Change +124885,Other,Climate Change +113224,Other,Climate Change +113222,Other,Climate Change +103196,Other,Climate Change +103146,Other,Climate Change +103142,Other,Climate Change +103141,Other,Climate Change +103140,Other,Climate Change +103138,Other,Climate Change +96913,Other,Climate Change +87865,Other,Climate Change +100714,Other,Biotechnology +97348,Other,Biotechnology +91995,Other,Biotechnology +90195,Other,Biotechnology +87957,Other,Biotechnology +120535,Other,Public Safety +107174,Other,Public Safety +97543,Other,Public Safety +87981,Other,Public Safety +142795,Other,Public Safety +142794,Other,Public Safety +134035,Other,Public Safety +134034,Other,Public Safety +124860,Other,Public Safety +124858,Other,Public Safety +129007,Other,MHLH +124882,Other,MHLH +124880,Other,MHLH +124879,Other,MHLH +109655,Other,MHLH +106175,Other,MHLH +106155,Other,MHLH +97379,Other,MHLH +88002,Other,MHLH +87998,Other,MHLH +87997,Other,MHLH +93418,Other,Boeing Potential Programs in Canada +87998,Other,Boeing Potential Programs in Canada +129014,Other,Boeing Potential Programs in Canada +109186,Other,G-8 Summit +88030,Other,International Relations +87999,Other,International Relations +124389,Other,ecoEnergy for Biofuels program +124388,Other,ecoEnergy for Biofuels program +124380,Other,ecoEnergy for Biofuels program +121184,Other,ecoEnergy for Biofuels program +121182,Other,ecoEnergy for Biofuels program +117542,Other,ecoEnergy for Biofuels program +117541,Other,ecoEnergy for Biofuels program +117534,Other,ecoEnergy for Biofuels program +109504,Other,ecoEnergy for Biofuels program +97136,Other,ecoEnergy for Biofuels program +88018,Other,ecoEnergy for Biofuels program +142958,Other,ecoEnergy for Biofuels program +135674,Other,ecoEnergy for Biofuels program +129115,Other,ecoEnergy for Biofuels program +88015,Other,Student Finance +97526,Other,Student Finance +88020,Other,Student Finance +109186,Other,Student Finance +97531,Other,Student Finance +510304,Health,Health +510303,Health,Health +152208,Health,Health +152204,Health,Health +412807,Health,Health +412782,Health,Health +353964,Health,Health +281099,Health,Health +276172,Health,Health +223295,Health,Health +186284,Health,Health +510302,Health,Health +510296,Health,Health +510292,Health,Health +510283,Health,Health +500636,Health,Health +500625,Health,Health +494730,Health,Health +494726,Health,Health +494724,Health,Health +494721,Health,Health +494716,Health,Health +483651,Health,Health +479968,Health,Health +441035,Health,Health +441032,Health,Health +439156,Health,Health +432713,Health,Health +430975,Health,Health +420537,Health,Health +541006,Health,Health +539926,Health,Health +538604,Health,Health +538603,Health,Health +534204,Health,Health +88064,Other,Distribution and transmission +199027,Energy,Energy +198887,Energy,Energy +101173,Energy,Energy +101171,Energy,Energy +93822,Energy,Energy +88224,Energy,Energy +88214,Energy,Energy +149678,Energy,Energy +142277,Energy,Energy +142275,Energy,Energy +135474,Energy,Energy +128596,Energy,Energy +123137,Energy,Energy +123136,Energy,Energy +123135,Energy,Energy +117354,Energy,Energy +112775,Energy,Energy +112774,Energy,Energy +106341,Energy,Energy +106339,Energy,Energy +106337,Energy,Energy +106275,Energy,Energy +101174,Energy,Energy +193105,Energy,Energy +193103,Energy,Energy +193102,Energy,Energy +193100,Energy,Energy +180244,Energy,Energy +172606,Energy,Energy +172605,Energy,Energy +172604,Energy,Energy +167090,Energy,Energy +164965,Energy,Energy +164964,Energy,Energy +152799,Energy,Energy +318369,Energy,Energy +272395,Energy,Energy +272394,Energy,Energy +272392,Energy,Energy +272371,Energy,Energy +272370,Energy,Energy +272369,Energy,Energy +244419,Energy,Energy +244418,Energy,Energy +221228,Energy,Energy +221227,Energy,Energy +216012,Energy,Energy +216008,Energy,Energy +216007,Energy,Energy +216008,Environment,Environment +199067,Environment,Environment +117354,Environment,Environment +112775,Environment,Environment +112774,Environment,Environment +106341,Environment,Environment +106339,Environment,Environment +106337,Environment,Environment +106275,Environment,Environment +101174,Environment,Environment +101173,Environment,Environment +101171,Environment,Environment +93822,Environment,Environment +88224,Environment,Environment +88214,Environment,Environment +199027,Environment,Environment +198887,Environment,Environment +193105,Environment,Environment +193103,Environment,Environment +193100,Environment,Environment +180244,Environment,Environment +172606,Environment,Environment +172604,Environment,Environment +167090,Environment,Environment +164964,Environment,Environment +152799,Environment,Environment +149678,Environment,Environment +142277,Environment,Environment +142275,Environment,Environment +135474,Environment,Environment +128596,Environment,Environment +123137,Environment,Environment +123136,Environment,Environment +123135,Environment,Environment +318370,Environment,Environment +272395,Environment,Environment +272394,Environment,Environment +272392,Environment,Environment +272371,Environment,Environment +272370,Environment,Environment +244420,Environment,Environment +244419,Environment,Environment +244418,Environment,Environment +221227,Environment,Environment +112774,International Relations,International Relations +221228,International Relations,International Relations +101173,International Relations,International Relations +101171,International Relations,International Relations +167090,International Trade,International Trade +272369,International Trade,International Trade +152799,International Trade,International Trade +112774,International Trade,International Trade +101174,International Trade,International Trade +93822,International Trade,International Trade +88224,International Trade,International Trade +193105,International Trade,International Trade +88214,Mining,Mining +88214,Regional Development,Regional Development +88084,Other,Bilateral air agreements/negotiations +132745,Other,Taxation and Finance +114178,Other,Subsequent Entry Biologics +109846,Other,Subsequent Entry Biologics +88130,Other,Subsequent Entry Biologics +88128,Other,Subsequent Entry Biologics +88124,Other,Subsequent Entry Biologics +88118,Other,Subsequent Entry Biologics +152127,Other,Subsequent Entry Biologics +152126,Other,Subsequent Entry Biologics +128378,Other,Subsequent Entry Biologics +88170,Other,Mining Day on the Hill re Major Projects Management office's review of projects in the mineral industry +88152,Other,Mining Day on the Hill re Major Projects Management office's review of projects in the mineral industry +88175,Other,Mining Day on the Hill re Major Projects Management office's review of projects in the mineral industry +88152,Other,Mining Day on the Hill re Canadian Environmental Act re mining industry +88170,Other,Mining Day on the Hill re climate change and strategies/processesto address greenhouse gas emissions +88152,Other,Mining Day on the Hill re climate change and strategies/processesto address greenhouse gas emissions +88152,Other,Mining Day on the Hill re Corporate and Social Responsility and Human Rights in respect of the Roundtale Report +88170,Other,Mining Day on the Hill re economic and fiscal policiesre financial and tax issues +88152,Other,Mining Day on the Hill re economic and fiscal policiesre financial and tax issues +88175,Other,Mining Day on the Hill re economic and fiscal policiesre financial and tax issues +88170,Other,Mining Day on the Hill re foreign investment and trade re Trade and Investment negotiations and strategies +88152,Other,Mining Day on the Hill re foreign investment and trade re Trade and Investment negotiations and strategies +88170,Other,Mining Day on the Hill re geomapping for energy and minerals +88152,Other,Mining Day on the Hill re geomapping for energy and minerals +88170,Other,"Mining Day on the Hill re Human Resources, Aboriginal particiaption in mining and participation by under-represented groups in mmining" +88152,Other,"Mining Day on the Hill re Human Resources, Aboriginal particiaption in mining and participation by under-represented groups in mmining" +88175,Other,"Mining Day on the Hill re Human Resources, Aboriginal particiaption in mining and participation by under-represented groups in mmining" +106067,Other,Transportation +106058,Other,Transportation +94484,Other,Transportation +94481,Other,Transportation +94480,Other,Transportation +94478,Other,Transportation +94394,Other,Transportation +90474,Other,Transportation +88182,Other,Transportation +146315,Other,Transportation +146314,Other,Transportation +109704,Other,Transportation +88177,Other,infrastructure and community relations +87394,Other,Pensions +157189,Other,Pensions +104354,Other,Pensions +108058,Health,Health +85758,Consumer Issues,Consumer Issues +302754,Energy,Energy +302754,Environment,Environment +131495,International Trade,International Trade +85794,International Trade,International Trade +88048,Sports,Sports +85814,International Trade,International Trade +85815,Other,Beef and Pork Market Access Workshop +85815,International Trade,International Trade +156882,Other,Future Regulations +324703,Employment and Training,Employment and Training +324704,Infrastructure,Infrastructure +90610,Labour,Labour +269571,Regional Development,Regional Development +324706,Transportation,Transportation +175144,Environment,Environment +101056,Energy,Energy +101056,Industry,Industry +97421,Defence,Défense +153630,Other,sanofi-aventis Biotalent Challenge +115134,Other,NHP Regulations +86035,Other,AWS Spectrum Auction +101456,Health,Health +156650,Consumer Issues,Consumer Issues +145715,Financial Institutions,Financial Institutions +145715,Taxation and Finance,Taxation and Finance +119260,Agriculture,Agriculture +119260,Environment,Environment +119260,Fisheries,Fisheries +119260,Taxation and Finance,Taxation and Finance +119260,Industry,Industry +91695,Other,Electricity sector issues +86155,Other,Electricity sector issues +86174,Other,Housing +86194,Other,Network management issues +86196,Other,Network management issues +105698,Health,Health +88169,Intellectual Property,Intellectual Property +98015,Infrastructure,Infrastructure +111094,Agriculture,Agriculture +96337,Agriculture,Agriculture +90503,Health,Health +97896,Other,family Caregiving +142965,Agriculture,Agriculture +142972,Environment,Environment +109937,Infrastructure,Infrastructure +142972,Transportation,Transportation +107774,Other,Tobacco stamping +86354,Other,Introduction of the new Chamber of Shipping President +107714,Other,National Refining Strategy +86376,Other,Marine Services Fees - future outlook +86376,Other,Requirements for new Marine Aids to Navigation +86376,Other,VTS on the North coast with respect to future tanker traffic +89136,Other,"Customs & Border policies, regarding passenger facilitation initiatives" +89136,Other,"Customs Act Amendments, regarding Customs Controlled Areas" +86414,Health,Health +101914,Other,Industry +86416,Other,Support for supply chain pilot project +101068,Other,Deterrence of Terrorism and treatment of terror victims +138461,Industry,Industry +138461,Infrastructure,Infrastructure +134401,International Trade,International Trade +134401,Regional Development,Regional Development +134401,Taxation and Finance,Taxation and Finance +138797,Other,Northern Regulatory Improvement Initiative +100811,Other,Climate Change and Clean Air +86656,Other,Corporate and Social Responsibility & Human Rights +86634,Other,Foreign investment and trade +86657,Health,Health +86695,Other,Climate Change and Clean Air +86695,Other,Corporate and Social Responsibility & Human Rights +86695,Other,Foreign investment and trade +86695,Other,Aboriginal Participation in Mining +86714,Other,Corporate and Social Responsibility & Human Rights +86714,Other,Foreign investment and trade +86694,Other,Northern Regulatory Improvement Initiative +86694,Other,Geomapping for Energy and Minerals +86715,Other,Climate Change and Clean Air +86715,Other,Corporate and Social Responsibility & Human Rights +86715,Other,Foreign investment and trade +86715,Other,Aboriginal participation and mining +86715,Other,Geomapping for Energy and Minerals +109207,Infrastructure,Infrastructure +143000,Transportation,Transportation +86916,Other,Policy support for heavy-duty natural gas vehicle fleets +157891,Energy,Energy +157891,Environment,Environment +89084,Industry,Industry +87074,Other,mortgage insurance industry +87322,Industry,Industry +87096,Justice and Law Enforcement,Justice and Law Enforcement +140975,Other,Government funding for genomics research +87098,Other,Government funding for genomics research +101041,Transportation,Transportation +97256,Taxation and Finance,Taxation and Finance +87234,Other,Land use planning in Northern Canada +87317,Financial Institutions,Financial Institutions +87319,Financial Institutions,Financial Institutions +103578,Other,Defined pension plan +128315,Other,State of manufacturing sector and policy measures in support of manufacturing. +87326,Other,"Climate Action Network, COP 14, Environment" +87332,Other,Common securities regulator +87332,Other,Impact of current financial crisis +141035,Other,Defined pension plan +87333,Other,"CLC participation as part of the Official Canadian Delegation to the 14th Conference of the Parties (COP 14) to the UNFCCC in Poznan, Poland" +87336,Infrastructure,Infrastructure +87336,Regional Development,Regional Development +87336,Sports,Sports +87336,Tourism,Tourism +87337,Other,mortgage insurance industry +148275,Other,Pensions +87497,Immigration,Immigration +87856,Other,World Trade Organization negociations +87514,Other,State of the Automotive Industry in Canada +87535,Other,Canadian Projects - ADM (IM) +87537,Other,ADM (Mat) Projects +87538,Other,Droits d'auteur +88357,Other,Competition Policy +139074,Other,Développment du contenu canadien +87547,Other,Capital Adequacy and Risk Management +87553,Other,Pension regulations +92914,Other,Financial Institutions - capital and risk management +86536,Other,Richard Gold Intellectual Property report and copyright +87654,Other,Richard Gold Intellectual Property report and copyright +87660,Other,Timing of Gazette Notice release for two satellite applications in the 17 GHz BSS band +89454,Other,"Introduce Telesat; highlight issues; Telesat has applied for two spectrum licences in the 17 GHz BSS band, the use of the Extended Ku band for DTH services;" +89454,Other,Telesat’s desire to see the foreign ownership restrictions relaxed for Canadian satellite operators. +87664,Other,Agriculture regulation +87664,Other,Policy +150302,Transportation,Transportation +87666,Other,Multilateral & Bilateral Agriculture Trade +90623,Financial Institutions,Financial Institutions +87734,Other,"Skills development and availability, employment insurance issues" +87734,Other,NSERC Research priorities and support prgrams +109838,Other,Bilateral Air Agreements / Negotiations +87756,Other,Research & Development +143734,Other,industry +87795,Other,Great Lakes Pilotage Authority Regulations +122474,Other,food fortification regulations +87799,Other,product of Canada +87816,Other,Regulatory Issues +87819,Other,Seaway Labour Issues +87826,Other,Seaway labour issues +87824,Other,Seaway labour issues +87828,Other,International Joint Commission +87832,Other,National Farmed Animal Health Strategy +106536,Other,Farm Animal Care +530691,Government Procurement,Government Procurement +415887,Government Procurement,Government Procurement +159097,Other,DEFENCE PROCUREMENT +327294,International Trade,International Trade +122714,Agriculture,Agriculture +150020,Consumer Issues,Consumer Issues +159686,International Trade,International Trade +225608,Health,Health +276829,International Trade,International Trade +237013,Employment and Training,Employment and Training +399479,Industry,Industry +188964,Intellectual Property,Intellectual Property +399998,Taxation and Finance,Taxation and Finance +127375,Other,Climate Change +93269,Infrastructure,Infrastructure +87880,Other,Infrastructure +87954,Other,Biotechnology +87955,Other,Biotechnology +87956,Other,biotechnology +87957,Other,Biologics +108895,Other,Biotechnology +87977,Other,Industry Canada work plan 2009 +87978,Other,multilateral infrastructure initiatives +124857,Other,Public Safety +87994,Other,Coast Guard +87995,Other,MHLH +129009,Other,Boeing Potential Programs in Canada +88001,Industry,Industry +87999,Other,G-8 Summit +125103,Other,International Relations +87983,Other,current challenges in the livestock sector +87983,Other,management of Richardson ground squirrel populations +129114,Other,ecoEnergy for Biofuels program +90461,Other,Student Finance +88021,Other,Infrastructure funding +88024,Other,Regulatory environment for financial institutions as governed by OSFI +88025,Other,Copyright Legislation +97529,Other,Student Finance +534201,Health,Health +117874,Other,Climate Change +94200,Other,Distribution and transmission +88064,Other,Electricity market regulations +88224,Employment and Training,Employment and Training +199067,Energy,Energy +216012,Environment,Environment +216007,Industry,Industry +172605,International Relations,International Relations +193103,International Trade,International Trade +88224,Mining,Mining +88224,Regional Development,Regional Development +97517,Other,Bilateral air agreements/negotiations +88084,Other,Environment +88084,Other,Taxation/Finance +88088,Other,Health Research +88091,Other,Shore power initiative +124883,Other,Taxation and Finance +88096,Other,Shore power initiative +101252,Other,International Trade and Investment +128377,Other,Subsequent Entry Biologics +124876,Other,Taxation and Finance +88172,Other,Mining Day on the Hill re Major Projects Management office's review of projects in the mineral industry +88161,Other,Elder Care +88161,Health,Health +88170,Other,Mining Day on the Hill re Canadian Environmental Act re mining industry +88175,Other,Mining Day on the Hill re climate change and strategies/processesto address greenhouse gas emissions +88170,Other,Mining Day on the Hill re Corporate and Social Responsility and Human Rights in respect of the Roundtale Report +88172,Other,Mining Day on the Hill re economic and fiscal policiesre financial and tax issues +88175,Other,Mining Day on the Hill re foreign investment and trade re Trade and Investment negotiations and strategies +88172,Other,Mining Day on the Hill re geomapping for energy and minerals +88172,Other,"Mining Day on the Hill re Human Resources, Aboriginal particiaption in mining and participation by under-represented groups in mmining" +88172,Other,Mining Day on the Hill re Canadian Environmental Assessment Act re the mineral industry +88172,Other,Mining Day on the Hill re Northern Regulatory Improvement Initiative +106074,Other,Transportation +88177,Other,infrastructure and community relations +129794,Other,infrastructure and community relations +88191,Other,Privacy +87415,Other,Competitiveness +93806,Other,Pensions +88186,Other,Universiade 2015 +98042,Other,Pensions +88217,Other,Baggage acceptance process regulations +158462,Other,Major Projects Management Office +88221,Other,Capital Adequacy and Risk Management +104324,Other,Pensions +104306,Other,Pensions +99539,Other,Pensions +98041,Other,Pensions +93810,Other,Pensions +88181,Other,Universiade 2015 +93844,Other,Universiade 2015 +90472,Other,Universiade 2015 +90471,Other,Universiade 2015 +87434,Other,Pensions +162526,Other,Pensions +113438,Other,Pensions +108675,Other,Pensions +104317,Other,Pensions +104315,Other,Pensions +99542,Other,Pensions +88226,Other,Major Projects Management Office +88220,Other,Major Projects Management Office +117412,Environment,Environment +117409,Environment,Environment +117408,Environment,Environment +117407,Environment,Environment +114240,Environment,Environment +114237,Environment,Environment +114229,Environment,Environment +93840,Environment,Environment +93836,Environment,Environment +90487,Environment,Environment +152341,Environment,Environment +152340,Environment,Environment +152338,Environment,Environment +150430,Environment,Environment +146051,Environment,Environment +142842,Environment,Environment +142835,Environment,Environment +125175,Environment,Environment +125174,Environment,Environment +121380,Environment,Environment +121379,Environment,Environment +121378,Environment,Environment +121377,Environment,Environment +93840,Other,Natural Resources +93836,Other,Natural Resources +90194,Other,Product of Canada and Made in Canada Claims +88335,Other,Product of Canada and Made in Canada Claims +90200,Other,Product of Canada and Made in Canada Claims +90199,Other,Product of Canada and Made in Canada Claims +103522,Infrastructure,Infrastructure +103521,Infrastructure,Infrastructure +103520,Infrastructure,Infrastructure +103519,Infrastructure,Infrastructure +103518,Infrastructure,Infrastructure +493934,Employment and Training,Employment and Training +493933,Employment and Training,Employment and Training +96301,Employment and Training,Employment and Training +96300,Employment and Training,Employment and Training +96299,Employment and Training,Employment and Training +96297,Employment and Training,Employment and Training +96295,Employment and Training,Employment and Training +96294,Employment and Training,Employment and Training +158650,Employment and Training,Employment and Training +158649,Employment and Training,Employment and Training +158648,Employment and Training,Employment and Training +146976,Employment and Training,Employment and Training +146756,Employment and Training,Employment and Training +141954,Employment and Training,Employment and Training +136474,Employment and Training,Employment and Training +123254,Employment and Training,Employment and Training +111634,Employment and Training,Employment and Training +102334,Employment and Training,Employment and Training +99359,Employment and Training,Employment and Training +99358,Employment and Training,Employment and Training +99357,Employment and Training,Employment and Training +99356,Employment and Training,Employment and Training +99355,Employment and Training,Employment and Training +99354,Employment and Training,Employment and Training +96302,Employment and Training,Employment and Training +311909,Employment and Training,Employment and Training +275371,Employment and Training,Employment and Training +275370,Employment and Training,Employment and Training +275369,Employment and Training,Employment and Training +197353,Employment and Training,Employment and Training +195796,Employment and Training,Employment and Training +194660,Employment and Training,Employment and Training +190307,Employment and Training,Employment and Training +190306,Employment and Training,Employment and Training +389927,Employment and Training,Employment and Training +389926,Employment and Training,Employment and Training +389924,Employment and Training,Employment and Training +389923,Employment and Training,Employment and Training +389921,Employment and Training,Employment and Training +389919,Employment and Training,Employment and Training +389917,Employment and Training,Employment and Training +389916,Employment and Training,Employment and Training +389909,Employment and Training,Employment and Training +388978,Employment and Training,Employment and Training +388977,Employment and Training,Employment and Training +388976,Employment and Training,Employment and Training +387311,Employment and Training,Employment and Training +387308,Employment and Training,Employment and Training +383455,Employment and Training,Employment and Training +382016,Employment and Training,Employment and Training +382015,Employment and Training,Employment and Training +382014,Employment and Training,Employment and Training +376499,Employment and Training,Employment and Training +376497,Employment and Training,Employment and Training +375767,Employment and Training,Employment and Training +375766,Employment and Training,Employment and Training +375130,Employment and Training,Employment and Training +375129,Employment and Training,Employment and Training +375127,Employment and Training,Employment and Training +374462,Employment and Training,Employment and Training +374461,Employment and Training,Employment and Training +373575,Employment and Training,Employment and Training +373404,Employment and Training,Employment and Training +373360,Employment and Training,Employment and Training +373359,Employment and Training,Employment and Training +373358,Employment and Training,Employment and Training +373171,Employment and Training,Employment and Training +373170,Employment and Training,Employment and Training +371233,Employment and Training,Employment and Training +371230,Employment and Training,Employment and Training +370892,Employment and Training,Employment and Training +370717,Employment and Training,Employment and Training +370417,Employment and Training,Employment and Training +370018,Employment and Training,Employment and Training +369342,Employment and Training,Employment and Training +367984,Employment and Training,Employment and Training +367903,Employment and Training,Employment and Training +367901,Employment and Training,Employment and Training +367848,Employment and Training,Employment and Training +367847,Employment and Training,Employment and Training +367664,Employment and Training,Employment and Training +367506,Employment and Training,Employment and Training +367505,Employment and Training,Employment and Training +367463,Employment and Training,Employment and Training +367447,Employment and Training,Employment and Training +367202,Employment and Training,Employment and Training +366441,Employment and Training,Employment and Training +366440,Employment and Training,Employment and Training +366438,Employment and Training,Employment and Training +366371,Employment and Training,Employment and Training +366370,Employment and Training,Employment and Training +366264,Employment and Training,Employment and Training +366263,Employment and Training,Employment and Training +366262,Employment and Training,Employment and Training +363782,Employment and Training,Employment and Training +352985,Employment and Training,Employment and Training +352984,Employment and Training,Employment and Training +352983,Employment and Training,Employment and Training +352982,Employment and Training,Employment and Training +350438,Employment and Training,Employment and Training +350437,Employment and Training,Employment and Training +344281,Employment and Training,Employment and Training +344280,Employment and Training,Employment and Training +334870,Employment and Training,Employment and Training +334869,Employment and Training,Employment and Training +326416,Employment and Training,Employment and Training +326415,Employment and Training,Employment and Training +493029,Employment and Training,Employment and Training +492940,Employment and Training,Employment and Training +492939,Employment and Training,Employment and Training +492938,Employment and Training,Employment and Training +492614,Employment and Training,Employment and Training +492613,Employment and Training,Employment and Training +492359,Employment and Training,Employment and Training +492358,Employment and Training,Employment and Training +492009,Employment and Training,Employment and Training +492007,Employment and Training,Employment and Training +489736,Employment and Training,Employment and Training +489218,Employment and Training,Employment and Training +487736,Employment and Training,Employment and Training +486051,Employment and Training,Employment and Training +484985,Employment and Training,Employment and Training +484784,Employment and Training,Employment and Training +483565,Employment and Training,Employment and Training +483564,Employment and Training,Employment and Training +483563,Employment and Training,Employment and Training +483014,Employment and Training,Employment and Training +483013,Employment and Training,Employment and Training +479089,Employment and Training,Employment and Training +479087,Employment and Training,Employment and Training +477265,Employment and Training,Employment and Training +476937,Employment and Training,Employment and Training +476931,Employment and Training,Employment and Training +476930,Employment and Training,Employment and Training +476929,Employment and Training,Employment and Training +476928,Employment and Training,Employment and Training +475294,Employment and Training,Employment and Training +475291,Employment and Training,Employment and Training +474000,Employment and Training,Employment and Training +473995,Employment and Training,Employment and Training +473969,Employment and Training,Employment and Training +472184,Employment and Training,Employment and Training +472177,Employment and Training,Employment and Training +472103,Employment and Training,Employment and Training +472053,Employment and Training,Employment and Training +471445,Employment and Training,Employment and Training +471293,Employment and Training,Employment and Training +471136,Employment and Training,Employment and Training +469694,Employment and Training,Employment and Training +469410,Employment and Training,Employment and Training +466612,Employment and Training,Employment and Training +465670,Employment and Training,Employment and Training +465669,Employment and Training,Employment and Training +463490,Employment and Training,Employment and Training +462889,Employment and Training,Employment and Training +462352,Employment and Training,Employment and Training +462018,Employment and Training,Employment and Training +459122,Employment and Training,Employment and Training +459121,Employment and Training,Employment and Training +456771,Employment and Training,Employment and Training +456770,Employment and Training,Employment and Training +456388,Employment and Training,Employment and Training +456343,Employment and Training,Employment and Training +456342,Employment and Training,Employment and Training +453727,Employment and Training,Employment and Training +451174,Employment and Training,Employment and Training +451173,Employment and Training,Employment and Training +451171,Employment and Training,Employment and Training +451170,Employment and Training,Employment and Training +451169,Employment and Training,Employment and Training +451168,Employment and Training,Employment and Training +450710,Employment and Training,Employment and Training +450315,Employment and Training,Employment and Training +447297,Employment and Training,Employment and Training +444590,Employment and Training,Employment and Training +441556,Employment and Training,Employment and Training +441554,Employment and Training,Employment and Training +441552,Employment and Training,Employment and Training +436620,Employment and Training,Employment and Training +436456,Employment and Training,Employment and Training +436455,Employment and Training,Employment and Training +436454,Employment and Training,Employment and Training +436452,Employment and Training,Employment and Training +436451,Employment and Training,Employment and Training +436449,Employment and Training,Employment and Training +436448,Employment and Training,Employment and Training +436446,Employment and Training,Employment and Training +436399,Employment and Training,Employment and Training +436398,Employment and Training,Employment and Training +436397,Employment and Training,Employment and Training +436396,Employment and Training,Employment and Training +436395,Employment and Training,Employment and Training +436394,Employment and Training,Employment and Training +436393,Employment and Training,Employment and Training +436161,Employment and Training,Employment and Training +436077,Employment and Training,Employment and Training +436076,Employment and Training,Employment and Training +436075,Employment and Training,Employment and Training +436073,Employment and Training,Employment and Training +434833,Employment and Training,Employment and Training +434832,Employment and Training,Employment and Training +434118,Employment and Training,Employment and Training +434110,Employment and Training,Employment and Training +434109,Employment and Training,Employment and Training +434107,Employment and Training,Employment and Training +433970,Employment and Training,Employment and Training +432639,Employment and Training,Employment and Training +432638,Employment and Training,Employment and Training +432186,Employment and Training,Employment and Training +432183,Employment and Training,Employment and Training +431528,Employment and Training,Employment and Training +429749,Employment and Training,Employment and Training +429748,Employment and Training,Employment and Training +429632,Employment and Training,Employment and Training +429628,Employment and Training,Employment and Training +429626,Employment and Training,Employment and Training +427259,Employment and Training,Employment and Training +427257,Employment and Training,Employment and Training +427256,Employment and Training,Employment and Training +427255,Employment and Training,Employment and Training +427254,Employment and Training,Employment and Training +424755,Employment and Training,Employment and Training +423635,Employment and Training,Employment and Training +423632,Employment and Training,Employment and Training +420682,Employment and Training,Employment and Training +420681,Employment and Training,Employment and Training +420680,Employment and Training,Employment and Training +420679,Employment and Training,Employment and Training +419283,Employment and Training,Employment and Training +419256,Employment and Training,Employment and Training +414438,Employment and Training,Employment and Training +414025,Employment and Training,Employment and Training +411510,Employment and Training,Employment and Training +411508,Employment and Training,Employment and Training +410796,Employment and Training,Employment and Training +410795,Employment and Training,Employment and Training +410721,Employment and Training,Employment and Training +410720,Employment and Training,Employment and Training +410719,Employment and Training,Employment and Training +410718,Employment and Training,Employment and Training +410717,Employment and Training,Employment and Training +410716,Employment and Training,Employment and Training +410715,Employment and Training,Employment and Training +410714,Employment and Training,Employment and Training +410713,Employment and Training,Employment and Training +410712,Employment and Training,Employment and Training +410711,Employment and Training,Employment and Training +410710,Employment and Training,Employment and Training +410709,Employment and Training,Employment and Training +410708,Employment and Training,Employment and Training +410707,Employment and Training,Employment and Training +410705,Employment and Training,Employment and Training +410082,Employment and Training,Employment and Training +410081,Employment and Training,Employment and Training +410080,Employment and Training,Employment and Training +404231,Employment and Training,Employment and Training +404230,Employment and Training,Employment and Training +403114,Employment and Training,Employment and Training +401410,Employment and Training,Employment and Training +401409,Employment and Training,Employment and Training +401404,Employment and Training,Employment and Training +401403,Employment and Training,Employment and Training +399487,Employment and Training,Employment and Training +399486,Employment and Training,Employment and Training +399484,Employment and Training,Employment and Training +399273,Employment and Training,Employment and Training +397575,Employment and Training,Employment and Training +397292,Employment and Training,Employment and Training +397291,Employment and Training,Employment and Training +395018,Employment and Training,Employment and Training +395006,Employment and Training,Employment and Training +393518,Employment and Training,Employment and Training +392060,Employment and Training,Employment and Training +389945,Employment and Training,Employment and Training +389943,Employment and Training,Employment and Training +389942,Employment and Training,Employment and Training +389940,Employment and Training,Employment and Training +389939,Employment and Training,Employment and Training +389938,Employment and Training,Employment and Training +389937,Employment and Training,Employment and Training +389935,Employment and Training,Employment and Training +389934,Employment and Training,Employment and Training +389933,Employment and Training,Employment and Training +389932,Employment and Training,Employment and Training +389931,Employment and Training,Employment and Training +389930,Employment and Training,Employment and Training +389929,Employment and Training,Employment and Training +389928,Employment and Training,Employment and Training +542444,Employment and Training,Employment and Training +542270,Employment and Training,Employment and Training +542269,Employment and Training,Employment and Training +542173,Employment and Training,Employment and Training +542172,Employment and Training,Employment and Training +541036,Employment and Training,Employment and Training +541034,Employment and Training,Employment and Training +541033,Employment and Training,Employment and Training +541032,Employment and Training,Employment and Training +541031,Employment and Training,Employment and Training +541030,Employment and Training,Employment and Training +541029,Employment and Training,Employment and Training +541028,Employment and Training,Employment and Training +541027,Employment and Training,Employment and Training +539090,Employment and Training,Employment and Training +537044,Employment and Training,Employment and Training +537033,Employment and Training,Employment and Training +537031,Employment and Training,Employment and Training +535730,Employment and Training,Employment and Training +535728,Employment and Training,Employment and Training +533498,Employment and Training,Employment and Training +533497,Employment and Training,Employment and Training +533143,Employment and Training,Employment and Training +533141,Employment and Training,Employment and Training +533140,Employment and Training,Employment and Training +533139,Employment and Training,Employment and Training +533138,Employment and Training,Employment and Training +533137,Employment and Training,Employment and Training +533136,Employment and Training,Employment and Training +533135,Employment and Training,Employment and Training +531996,Employment and Training,Employment and Training +531995,Employment and Training,Employment and Training +530828,Employment and Training,Employment and Training +530824,Employment and Training,Employment and Training +530818,Employment and Training,Employment and Training +530817,Employment and Training,Employment and Training +530815,Employment and Training,Employment and Training +530814,Employment and Training,Employment and Training +530812,Employment and Training,Employment and Training +530396,Employment and Training,Employment and Training +530395,Employment and Training,Employment and Training +524054,Employment and Training,Employment and Training +524053,Employment and Training,Employment and Training +524052,Employment and Training,Employment and Training +524051,Employment and Training,Employment and Training +524050,Employment and Training,Employment and Training +520665,Employment and Training,Employment and Training +520647,Employment and Training,Employment and Training +520646,Employment and Training,Employment and Training +518710,Employment and Training,Employment and Training +518709,Employment and Training,Employment and Training +517112,Employment and Training,Employment and Training +517098,Employment and Training,Employment and Training +517097,Employment and Training,Employment and Training +516068,Employment and Training,Employment and Training +514840,Employment and Training,Employment and Training +513557,Employment and Training,Employment and Training +512038,Employment and Training,Employment and Training +511924,Employment and Training,Employment and Training +511923,Employment and Training,Employment and Training +508158,Employment and Training,Employment and Training +507002,Employment and Training,Employment and Training +506945,Employment and Training,Employment and Training +506815,Employment and Training,Employment and Training +506814,Employment and Training,Employment and Training +506813,Employment and Training,Employment and Training +506317,Employment and Training,Employment and Training +506316,Employment and Training,Employment and Training +506315,Employment and Training,Employment and Training +506314,Employment and Training,Employment and Training +503450,Employment and Training,Employment and Training +503205,Employment and Training,Employment and Training +503202,Employment and Training,Employment and Training +503201,Employment and Training,Employment and Training +500586,Employment and Training,Employment and Training +500584,Employment and Training,Employment and Training +500582,Employment and Training,Employment and Training +497843,Employment and Training,Employment and Training +497645,Employment and Training,Employment and Training +497518,Employment and Training,Employment and Training +497517,Employment and Training,Employment and Training +497516,Employment and Training,Employment and Training +497233,Employment and Training,Employment and Training +497231,Employment and Training,Employment and Training +496937,Employment and Training,Employment and Training +496673,Employment and Training,Employment and Training +496672,Employment and Training,Employment and Training +496671,Employment and Training,Employment and Training +496670,Employment and Training,Employment and Training +369342,Immigration,Immigration +516068,Immigration,Immigration +275371,Immigration,Immigration +275370,Immigration,Immigration +275369,Immigration,Immigration +242809,Immigration,Immigration +156686,Immigration,Immigration +462018,Immigration,Immigration +436161,Immigration,Immigration +436076,Immigration,Immigration +436075,Immigration,Immigration +433970,Immigration,Immigration +411508,Immigration,Immigration +410081,Immigration,Immigration +410078,Immigration,Immigration +404255,Immigration,Immigration +401407,Immigration,Immigration +399484,Immigration,Immigration +399273,Immigration,Immigration +395006,Immigration,Immigration +393518,Immigration,Immigration +393515,Immigration,Immigration +392061,Immigration,Immigration +392060,Immigration,Immigration +388977,Immigration,Immigration +387312,Immigration,Immigration +387311,Immigration,Immigration +387308,Immigration,Immigration +383455,Immigration,Immigration +382015,Immigration,Immigration +382014,Immigration,Immigration +375429,Immigration,Immigration +371233,Immigration,Immigration +371230,Immigration,Immigration +475295,Infrastructure,Infrastructure +475294,Infrastructure,Infrastructure +99362,Infrastructure,Infrastructure +96298,Infrastructure,Infrastructure +96296,Infrastructure,Infrastructure +123254,Infrastructure,Infrastructure +366441,Infrastructure,Infrastructure +366440,Infrastructure,Infrastructure +366438,Infrastructure,Infrastructure +366371,Infrastructure,Infrastructure +366370,Infrastructure,Infrastructure +363782,Infrastructure,Infrastructure +352985,Infrastructure,Infrastructure +352984,Infrastructure,Infrastructure +352983,Infrastructure,Infrastructure +352982,Infrastructure,Infrastructure +350437,Infrastructure,Infrastructure +344281,Infrastructure,Infrastructure +344280,Infrastructure,Infrastructure +242811,Infrastructure,Infrastructure +475291,Infrastructure,Infrastructure +474232,Infrastructure,Infrastructure +474000,Infrastructure,Infrastructure +473995,Infrastructure,Infrastructure +473969,Infrastructure,Infrastructure +472103,Infrastructure,Infrastructure +472053,Infrastructure,Infrastructure +471624,Infrastructure,Infrastructure +471445,Infrastructure,Infrastructure +469290,Infrastructure,Infrastructure +469072,Infrastructure,Infrastructure +466612,Infrastructure,Infrastructure +456342,Infrastructure,Infrastructure +441556,Infrastructure,Infrastructure +436161,Infrastructure,Infrastructure +436077,Infrastructure,Infrastructure +436076,Infrastructure,Infrastructure +432639,Infrastructure,Infrastructure +429746,Infrastructure,Infrastructure +429628,Infrastructure,Infrastructure +427257,Infrastructure,Infrastructure +423634,Infrastructure,Infrastructure +420679,Infrastructure,Infrastructure +419287,Infrastructure,Infrastructure +410707,Infrastructure,Infrastructure +404231,Infrastructure,Infrastructure +404229,Infrastructure,Infrastructure +393518,Infrastructure,Infrastructure +383455,Infrastructure,Infrastructure +376497,Infrastructure,Infrastructure +375767,Infrastructure,Infrastructure +375766,Infrastructure,Infrastructure +375620,Infrastructure,Infrastructure +373575,Infrastructure,Infrastructure +373360,Infrastructure,Infrastructure +373359,Infrastructure,Infrastructure +373358,Infrastructure,Infrastructure +373171,Infrastructure,Infrastructure +371233,Infrastructure,Infrastructure +371230,Infrastructure,Infrastructure +370892,Infrastructure,Infrastructure +370717,Infrastructure,Infrastructure +370153,Infrastructure,Infrastructure +370018,Infrastructure,Infrastructure +369342,Infrastructure,Infrastructure +367984,Infrastructure,Infrastructure +367906,Infrastructure,Infrastructure +367903,Infrastructure,Infrastructure +367901,Infrastructure,Infrastructure +367848,Infrastructure,Infrastructure +367847,Infrastructure,Infrastructure +367664,Infrastructure,Infrastructure +367506,Infrastructure,Infrastructure +367463,Infrastructure,Infrastructure +367447,Infrastructure,Infrastructure +367202,Infrastructure,Infrastructure +517101,Infrastructure,Infrastructure +517097,Infrastructure,Infrastructure +511923,Infrastructure,Infrastructure +506815,Infrastructure,Infrastructure +506813,Infrastructure,Infrastructure +506315,Infrastructure,Infrastructure +503450,Infrastructure,Infrastructure +500584,Infrastructure,Infrastructure +500582,Infrastructure,Infrastructure +499915,Infrastructure,Infrastructure +497843,Infrastructure,Infrastructure +497645,Infrastructure,Infrastructure +497636,Infrastructure,Infrastructure +497518,Infrastructure,Infrastructure +497517,Infrastructure,Infrastructure +497516,Infrastructure,Infrastructure +497233,Infrastructure,Infrastructure +497231,Infrastructure,Infrastructure +497196,Infrastructure,Infrastructure +497194,Infrastructure,Infrastructure +494375,Infrastructure,Infrastructure +494374,Infrastructure,Infrastructure +492614,Infrastructure,Infrastructure +489736,Infrastructure,Infrastructure +489218,Infrastructure,Infrastructure +487736,Infrastructure,Infrastructure +487735,Infrastructure,Infrastructure +486615,Infrastructure,Infrastructure +486051,Infrastructure,Infrastructure +484985,Infrastructure,Infrastructure +484784,Infrastructure,Infrastructure +484345,Infrastructure,Infrastructure +483565,Infrastructure,Infrastructure +483564,Infrastructure,Infrastructure +483563,Infrastructure,Infrastructure +483014,Infrastructure,Infrastructure +483013,Infrastructure,Infrastructure +481344,Infrastructure,Infrastructure +481342,Infrastructure,Infrastructure +481340,Infrastructure,Infrastructure +479430,Infrastructure,Infrastructure +479094,Infrastructure,Infrastructure +479089,Infrastructure,Infrastructure +479087,Infrastructure,Infrastructure +477265,Infrastructure,Infrastructure +476937,Infrastructure,Infrastructure +476931,Infrastructure,Infrastructure +476930,Infrastructure,Infrastructure +476929,Infrastructure,Infrastructure +367847,Internal Trade,Internal Trade +473995,Internal Trade,Internal Trade +91054,Internal Trade,Internal Trade +469051,Labour,Labour +468971,Labour,Labour +123254,Labour,Labour +99359,Labour,Labour +99358,Labour,Labour +99356,Labour,Labour +96302,Labour,Labour +96295,Labour,Labour +91054,Labour,Labour +309573,Labour,Labour +278530,Labour,Labour +275371,Labour,Labour +275370,Labour,Labour +275369,Labour,Labour +260112,Labour,Labour +260111,Labour,Labour +242809,Labour,Labour +197353,Labour,Labour +195796,Labour,Labour +194660,Labour,Labour +190307,Labour,Labour +190306,Labour,Labour +146976,Labour,Labour +146756,Labour,Labour +375127,Labour,Labour +374462,Labour,Labour +374461,Labour,Labour +373575,Labour,Labour +373404,Labour,Labour +373360,Labour,Labour +373359,Labour,Labour +373358,Labour,Labour +373171,Labour,Labour +373170,Labour,Labour +371233,Labour,Labour +371230,Labour,Labour +370894,Labour,Labour +370892,Labour,Labour +370718,Labour,Labour +370717,Labour,Labour +370716,Labour,Labour +370417,Labour,Labour +370153,Labour,Labour +370018,Labour,Labour +369897,Labour,Labour +369896,Labour,Labour +369342,Labour,Labour +367906,Labour,Labour +367903,Labour,Labour +367901,Labour,Labour +367848,Labour,Labour +367847,Labour,Labour +367664,Labour,Labour +367506,Labour,Labour +367505,Labour,Labour +367463,Labour,Labour +367447,Labour,Labour +367202,Labour,Labour +366441,Labour,Labour +366440,Labour,Labour +366438,Labour,Labour +366437,Labour,Labour +366371,Labour,Labour +366370,Labour,Labour +366264,Labour,Labour +366263,Labour,Labour +366262,Labour,Labour +363782,Labour,Labour +352985,Labour,Labour +352984,Labour,Labour +352983,Labour,Labour +352982,Labour,Labour +352981,Labour,Labour +350441,Labour,Labour +350440,Labour,Labour +350438,Labour,Labour +350437,Labour,Labour +344280,Labour,Labour +334870,Labour,Labour +334869,Labour,Labour +326416,Labour,Labour +326415,Labour,Labour +404255,Labour,Labour +404234,Labour,Labour +404231,Labour,Labour +404230,Labour,Labour +403114,Labour,Labour +403101,Labour,Labour +403097,Labour,Labour +403092,Labour,Labour +402090,Labour,Labour +401410,Labour,Labour +401409,Labour,Labour +401407,Labour,Labour +401404,Labour,Labour +401403,Labour,Labour +399487,Labour,Labour +399486,Labour,Labour +399484,Labour,Labour +399483,Labour,Labour +397292,Labour,Labour +397291,Labour,Labour +395018,Labour,Labour +395010,Labour,Labour +395008,Labour,Labour +395006,Labour,Labour +395004,Labour,Labour +393518,Labour,Labour +393515,Labour,Labour +393424,Labour,Labour +393092,Labour,Labour +392060,Labour,Labour +392059,Labour,Labour +389945,Labour,Labour +389943,Labour,Labour +389942,Labour,Labour +389940,Labour,Labour +389939,Labour,Labour +389938,Labour,Labour +389937,Labour,Labour +389935,Labour,Labour +389934,Labour,Labour +389933,Labour,Labour +389932,Labour,Labour +389931,Labour,Labour +389930,Labour,Labour +389929,Labour,Labour +389928,Labour,Labour +389927,Labour,Labour +389926,Labour,Labour +389924,Labour,Labour +389923,Labour,Labour +389921,Labour,Labour +389919,Labour,Labour +389917,Labour,Labour +389916,Labour,Labour +389909,Labour,Labour +389751,Labour,Labour +388978,Labour,Labour +388977,Labour,Labour +388976,Labour,Labour +387312,Labour,Labour +387311,Labour,Labour +387308,Labour,Labour +383455,Labour,Labour +382015,Labour,Labour +382014,Labour,Labour +379215,Labour,Labour +379214,Labour,Labour +379212,Labour,Labour +379163,Labour,Labour +379158,Labour,Labour +376499,Labour,Labour +376497,Labour,Labour +375767,Labour,Labour +375766,Labour,Labour +375620,Labour,Labour +375429,Labour,Labour +375130,Labour,Labour +375129,Labour,Labour +375128,Labour,Labour +466612,Labour,Labour +466610,Labour,Labour +465673,Labour,Labour +465671,Labour,Labour +465670,Labour,Labour +465669,Labour,Labour +465668,Labour,Labour +465667,Labour,Labour +465665,Labour,Labour +463490,Labour,Labour +462889,Labour,Labour +462353,Labour,Labour +462352,Labour,Labour +462018,Labour,Labour +459122,Labour,Labour +459121,Labour,Labour +456771,Labour,Labour +456770,Labour,Labour +456388,Labour,Labour +456343,Labour,Labour +456342,Labour,Labour +456341,Labour,Labour +453727,Labour,Labour +451173,Labour,Labour +451171,Labour,Labour +451170,Labour,Labour +451169,Labour,Labour +451168,Labour,Labour +451167,Labour,Labour +450315,Labour,Labour +447301,Labour,Labour +447300,Labour,Labour +447299,Labour,Labour +447297,Labour,Labour +444592,Labour,Labour +444591,Labour,Labour +444590,Labour,Labour +443264,Labour,Labour +442965,Labour,Labour +441561,Labour,Labour +441556,Labour,Labour +441554,Labour,Labour +441552,Labour,Labour +440399,Labour,Labour +438479,Labour,Labour +438475,Labour,Labour +436690,Labour,Labour +436620,Labour,Labour +436456,Labour,Labour +436455,Labour,Labour +436454,Labour,Labour +436452,Labour,Labour +436451,Labour,Labour +436449,Labour,Labour +436448,Labour,Labour +436446,Labour,Labour +436399,Labour,Labour +436398,Labour,Labour +436397,Labour,Labour +436396,Labour,Labour +436395,Labour,Labour +436394,Labour,Labour +436393,Labour,Labour +436392,Labour,Labour +436161,Labour,Labour +436160,Labour,Labour +436159,Labour,Labour +436158,Labour,Labour +436077,Labour,Labour +436076,Labour,Labour +436075,Labour,Labour +436074,Labour,Labour +436073,Labour,Labour +434832,Labour,Labour +434119,Labour,Labour +434118,Labour,Labour +434117,Labour,Labour +434116,Labour,Labour +434115,Labour,Labour +434114,Labour,Labour +434113,Labour,Labour +434112,Labour,Labour +434111,Labour,Labour +434110,Labour,Labour +434109,Labour,Labour +434107,Labour,Labour +433970,Labour,Labour +432639,Labour,Labour +432638,Labour,Labour +432186,Labour,Labour +432183,Labour,Labour +429918,Labour,Labour +429873,Labour,Labour +429749,Labour,Labour +429748,Labour,Labour +429746,Labour,Labour +429632,Labour,Labour +429631,Labour,Labour +429628,Labour,Labour +429627,Labour,Labour +429626,Labour,Labour +427259,Labour,Labour +427257,Labour,Labour +427256,Labour,Labour +427255,Labour,Labour +427254,Labour,Labour +424755,Labour,Labour +423635,Labour,Labour +423634,Labour,Labour +423632,Labour,Labour +423630,Labour,Labour +420682,Labour,Labour +420681,Labour,Labour +420680,Labour,Labour +420677,Labour,Labour +419287,Labour,Labour +419286,Labour,Labour +419284,Labour,Labour +419283,Labour,Labour +419256,Labour,Labour +419254,Labour,Labour +419252,Labour,Labour +414439,Labour,Labour +414438,Labour,Labour +414437,Labour,Labour +414117,Labour,Labour +414116,Labour,Labour +414115,Labour,Labour +414027,Labour,Labour +414025,Labour,Labour +411510,Labour,Labour +410797,Labour,Labour +410796,Labour,Labour +410795,Labour,Labour +410721,Labour,Labour +410720,Labour,Labour +410719,Labour,Labour +410718,Labour,Labour +410717,Labour,Labour +410716,Labour,Labour +410715,Labour,Labour +410714,Labour,Labour +410713,Labour,Labour +410712,Labour,Labour +410711,Labour,Labour +410710,Labour,Labour +410709,Labour,Labour +410708,Labour,Labour +410707,Labour,Labour +410705,Labour,Labour +410082,Labour,Labour +410081,Labour,Labour +410080,Labour,Labour +410078,Labour,Labour +542444,Labour,Labour +542270,Labour,Labour +542269,Labour,Labour +542173,Labour,Labour +542172,Labour,Labour +541036,Labour,Labour +541034,Labour,Labour +541033,Labour,Labour +541032,Labour,Labour +541031,Labour,Labour +541030,Labour,Labour +541029,Labour,Labour +541028,Labour,Labour +541027,Labour,Labour +539090,Labour,Labour +539085,Labour,Labour +539084,Labour,Labour +537044,Labour,Labour +537037,Labour,Labour +537033,Labour,Labour +537031,Labour,Labour +535730,Labour,Labour +535728,Labour,Labour +533498,Labour,Labour +533497,Labour,Labour +533143,Labour,Labour +533141,Labour,Labour +533140,Labour,Labour +533139,Labour,Labour +533138,Labour,Labour +533137,Labour,Labour +533136,Labour,Labour +531996,Labour,Labour +531995,Labour,Labour +531994,Labour,Labour +530828,Labour,Labour +530824,Labour,Labour +530818,Labour,Labour +530817,Labour,Labour +530815,Labour,Labour +530814,Labour,Labour +530812,Labour,Labour +530396,Labour,Labour +530395,Labour,Labour +524054,Labour,Labour +524052,Labour,Labour +520665,Labour,Labour +520647,Labour,Labour +520646,Labour,Labour +518710,Labour,Labour +518709,Labour,Labour +517112,Labour,Labour +517102,Labour,Labour +517101,Labour,Labour +517098,Labour,Labour +517097,Labour,Labour +516068,Labour,Labour +514840,Labour,Labour +513557,Labour,Labour +511924,Labour,Labour +511923,Labour,Labour +508158,Labour,Labour +507002,Labour,Labour +506946,Labour,Labour +506945,Labour,Labour +506815,Labour,Labour +506814,Labour,Labour +506813,Labour,Labour +506317,Labour,Labour +506316,Labour,Labour +506315,Labour,Labour +506314,Labour,Labour +503915,Labour,Labour +503914,Labour,Labour +503845,Labour,Labour +503450,Labour,Labour +503205,Labour,Labour +503202,Labour,Labour +503201,Labour,Labour +503027,Labour,Labour +500586,Labour,Labour +500584,Labour,Labour +500582,Labour,Labour +497843,Labour,Labour +497645,Labour,Labour +497636,Labour,Labour +497518,Labour,Labour +497517,Labour,Labour +497516,Labour,Labour +497514,Labour,Labour +497233,Labour,Labour +497231,Labour,Labour +497196,Labour,Labour +496760,Labour,Labour +496676,Labour,Labour +496675,Labour,Labour +496673,Labour,Labour +496672,Labour,Labour +496671,Labour,Labour +496670,Labour,Labour +494655,Labour,Labour +494376,Labour,Labour +494375,Labour,Labour +494374,Labour,Labour +494121,Labour,Labour +493934,Labour,Labour +493933,Labour,Labour +493932,Labour,Labour +493029,Labour,Labour +492940,Labour,Labour +492939,Labour,Labour +492938,Labour,Labour +492614,Labour,Labour +492613,Labour,Labour +492359,Labour,Labour +492358,Labour,Labour +492010,Labour,Labour +492007,Labour,Labour +489736,Labour,Labour +489218,Labour,Labour +488430,Labour,Labour +487735,Labour,Labour +486051,Labour,Labour +484985,Labour,Labour +484784,Labour,Labour +484345,Labour,Labour +483565,Labour,Labour +483564,Labour,Labour +483014,Labour,Labour +483013,Labour,Labour +481344,Labour,Labour +481342,Labour,Labour +481340,Labour,Labour +481338,Labour,Labour +479430,Labour,Labour +479089,Labour,Labour +479087,Labour,Labour +477265,Labour,Labour +476937,Labour,Labour +476931,Labour,Labour +476930,Labour,Labour +476929,Labour,Labour +476928,Labour,Labour +475295,Labour,Labour +475294,Labour,Labour +475291,Labour,Labour +474534,Labour,Labour +474364,Labour,Labour +474232,Labour,Labour +474064,Labour,Labour +474000,Labour,Labour +473969,Labour,Labour +472177,Labour,Labour +472103,Labour,Labour +472053,Labour,Labour +471903,Labour,Labour +471902,Labour,Labour +471634,Labour,Labour +471624,Labour,Labour +471501,Labour,Labour +471445,Labour,Labour +471412,Labour,Labour +471411,Labour,Labour +471293,Labour,Labour +471136,Labour,Labour +471135,Labour,Labour +469694,Labour,Labour +469410,Labour,Labour +469290,Labour,Labour +469179,Labour,Labour +469072,Labour,Labour +469053,Labour,Labour +474535,Taxation and Finance,Taxation and Finance +471293,Taxation and Finance,Taxation and Finance +275371,Taxation and Finance,Taxation and Finance +275369,Taxation and Finance,Taxation and Finance +260112,Taxation and Finance,Taxation and Finance +260111,Taxation and Finance,Taxation and Finance +352985,Taxation and Finance,Taxation and Finance +350437,Taxation and Finance,Taxation and Finance +420681,Taxation and Finance,Taxation and Finance +420680,Taxation and Finance,Taxation and Finance +402174,Taxation and Finance,Taxation and Finance +399273,Taxation and Finance,Taxation and Finance +395004,Taxation and Finance,Taxation and Finance +393424,Taxation and Finance,Taxation and Finance +392063,Taxation and Finance,Taxation and Finance +392059,Taxation and Finance,Taxation and Finance +389934,Taxation and Finance,Taxation and Finance +376499,Taxation and Finance,Taxation and Finance +376497,Taxation and Finance,Taxation and Finance +375129,Taxation and Finance,Taxation and Finance +375128,Taxation and Finance,Taxation and Finance +373170,Taxation and Finance,Taxation and Finance +88594,Other,2009 Federal Budget +88514,Other,2009 Federal Budget +92314,Industry,Industry +88934,Taxation and Finance,Taxation and Finance +93468,Other,Amendments to Copyright Act +93468,Other,"Arts and Culture funding policy, including Canadian Television Fund and Consumer Advertising" +93739,Other,Broadcasting +93468,Other,Broadcasting +109304,Other,Broadcasting +104320,Other,Broadcasting +97117,Other,Broadcasting +97115,Other,Broadcasting +93468,Other,Broadcasting Industry +88936,Other,Broadcasting Industry +93468,Other,Consumer Advertising +93468,Consumer Issues,Consumer Issues +93468,Other,Emergency Alerting +93468,Other,Federal Accountability Act +93468,Other,Government in Council Appointments +93468,Health,Health +93468,Other,Industry +88936,Other,Industry +93468,Other,Intellectual Property +93468,International Relations,International Relations +93468,Other,International Trade +93468,Labour,Labour +93468,Other,Legislation and signal delivery +93468,Other,Licence renewal process for television channels +93468,Other,Licensing for broadcasting assests +93468,Other,Radiocommunications Act +93468,Regional Development,Regional Development +93468,Other,Review of New Media +93468,Taxation and Finance,Taxation and Finance +88936,Taxation and Finance,Taxation and Finance +93468,Other,Technological chnages impacting broadcast policy +134854,Other,Supply Management +129043,Other,Supply Management +129011,Other,Supply Management +113078,Other,Supply Management +110634,Other,Supply Management +88914,Other,Supply Management +145834,Other,Supply Management +109595,Government Procurement,Government Procurement +109594,Government Procurement,Government Procurement +88934,Industry,Industry +108998,Industry,Industry +88934,International Trade,International Trade +93215,Infrastructure,Infrastructure +93254,Education,Education +93254,Employment and Training,Employment and Training +93254,Health,Health +93254,Infrastructure,Infrastructure +93214,Employment and Training,Employment and Training +93214,Industry,Industry +93214,Infrastructure,Infrastructure +93239,Employment and Training,Employment and Training +93239,Industry,Industry +93239,Infrastructure,Infrastructure +391399,Education,Education +385972,Education,Education +126395,Education,Education +99214,Education,Education +373738,Education,Education +366455,Education,Education +354660,Education,Education +319570,Education,Education +218927,Education,Education +212671,Education,Education +230155,Employment and Training,Employment and Training +373738,Employment and Training,Employment and Training +126395,Employment and Training,Employment and Training +218927,Employment and Training,Employment and Training +212671,Employment and Training,Employment and Training +188107,Employment and Training,Employment and Training +319570,Infrastructure,Infrastructure +230155,Infrastructure,Infrastructure +126395,Infrastructure,Infrastructure +218927,Infrastructure,Infrastructure +212671,Infrastructure,Infrastructure +89034,Other,Canada Grain Act +89078,Taxation and Finance,Taxation and Finance +89077,Taxation and Finance,Taxation and Finance +123874,Energy,Energy +122734,Energy,Energy +143135,Energy,Energy +519089,Energy,Energy +514359,Energy,Energy +100780,Energy,Energy +100779,Energy,Energy +100777,Energy,Energy +100776,Energy,Energy +100775,Energy,Energy +97686,Energy,Energy +93720,Energy,Energy +93718,Energy,Energy +93717,Energy,Energy +120863,Energy,Energy +120859,Energy,Energy +120858,Energy,Energy +113820,Energy,Energy +113819,Energy,Energy +109716,Energy,Energy +104305,Energy,Energy +104303,Energy,Energy +104302,Energy,Energy +104299,Energy,Energy +104297,Energy,Energy +372501,Energy,Energy +372329,Energy,Energy +367552,Energy,Energy +364988,Energy,Energy +364987,Energy,Energy +364985,Energy,Energy +360008,Energy,Energy +357760,Energy,Energy +357759,Energy,Energy +357758,Energy,Energy +357757,Energy,Energy +349093,Energy,Energy +349089,Energy,Energy +349087,Energy,Energy +349085,Energy,Energy +342468,Energy,Energy +342467,Energy,Energy +327417,Energy,Energy +327416,Energy,Energy +254295,Energy,Energy +254292,Energy,Energy +242331,Energy,Energy +242330,Energy,Energy +241182,Energy,Energy +241178,Energy,Energy +227245,Energy,Energy +227242,Energy,Energy +227240,Energy,Energy +227239,Energy,Energy +227236,Energy,Energy +227235,Energy,Energy +212008,Energy,Energy +211996,Energy,Energy +204807,Energy,Energy +194878,Energy,Energy +170607,Energy,Energy +170604,Energy,Energy +170603,Energy,Energy +170599,Energy,Energy +170596,Energy,Energy +165991,Energy,Energy +157151,Energy,Energy +145840,Energy,Energy +145839,Energy,Energy +136754,Energy,Energy +500637,Energy,Energy +495270,Energy,Energy +492809,Energy,Energy +482229,Energy,Energy +482227,Energy,Energy +478370,Energy,Energy +478273,Energy,Energy +476243,Energy,Energy +476203,Energy,Energy +471090,Energy,Energy +471088,Energy,Energy +471087,Energy,Energy +467709,Energy,Energy +461386,Energy,Energy +460101,Energy,Energy +460099,Energy,Energy +457580,Energy,Energy +457577,Energy,Energy +455802,Energy,Energy +455796,Energy,Energy +451962,Energy,Energy +451961,Energy,Energy +451960,Energy,Energy +449859,Energy,Energy +447869,Energy,Energy +447867,Energy,Energy +445297,Energy,Energy +442268,Energy,Energy +442256,Energy,Energy +442243,Energy,Energy +442033,Energy,Energy +438320,Energy,Energy +433458,Energy,Energy +433457,Energy,Energy +433456,Energy,Energy +433455,Energy,Energy +428518,Energy,Energy +426139,Energy,Energy +426001,Energy,Energy +423581,Energy,Energy +423580,Energy,Energy +423579,Energy,Energy +423578,Energy,Energy +423577,Energy,Energy +423576,Energy,Energy +423575,Energy,Energy +420885,Energy,Energy +420884,Energy,Energy +420883,Energy,Energy +419282,Energy,Energy +417677,Energy,Energy +416050,Energy,Energy +409611,Energy,Energy +409609,Energy,Energy +409605,Energy,Energy +407400,Energy,Energy +406298,Energy,Energy +404874,Energy,Energy +404873,Energy,Energy +404872,Energy,Energy +396059,Energy,Energy +396056,Energy,Energy +396054,Energy,Energy +396053,Energy,Energy +396052,Energy,Energy +396048,Energy,Energy +396045,Energy,Energy +396042,Energy,Energy +396041,Energy,Energy +394066,Energy,Energy +394058,Energy,Energy +394056,Energy,Energy +394054,Energy,Energy +389521,Energy,Energy +389182,Energy,Energy +389181,Energy,Energy +387646,Energy,Energy +379888,Energy,Energy +544509,Energy,Energy +543805,Energy,Energy +541057,Energy,Energy +536469,Energy,Energy +536395,Energy,Energy +536392,Energy,Energy +536374,Energy,Energy +533650,Energy,Energy +533649,Energy,Energy +533648,Energy,Energy +532988,Energy,Energy +532987,Energy,Energy +532986,Energy,Energy +532985,Energy,Energy +532984,Energy,Energy +530791,Energy,Energy +530790,Energy,Energy +530787,Energy,Energy +527721,Energy,Energy +527154,Energy,Energy +527153,Energy,Energy +527152,Energy,Energy +519089,Environment,Environment +509608,Environment,Environment +170599,Environment,Environment +170596,Environment,Environment +104299,Environment,Environment +254292,Environment,Environment +194878,Environment,Environment +170607,Environment,Environment +170604,Environment,Environment +170603,Environment,Environment +379888,Environment,Environment +372501,Environment,Environment +367552,Environment,Environment +364988,Environment,Environment +364985,Environment,Environment +360008,Environment,Environment +357759,Environment,Environment +357758,Environment,Environment +357757,Environment,Environment +349093,Environment,Environment +349089,Environment,Environment +349087,Environment,Environment +349085,Environment,Environment +347719,Environment,Environment +342468,Environment,Environment +342467,Environment,Environment +327417,Environment,Environment +409611,Environment,Environment +406298,Environment,Environment +396053,Environment,Environment +396045,Environment,Environment +396041,Environment,Environment +394054,Environment,Environment +389521,Environment,Environment +389182,Environment,Environment +389181,Environment,Environment +387646,Environment,Environment +500637,Environment,Environment +495270,Environment,Environment +460099,Environment,Environment +449859,Environment,Environment +447869,Environment,Environment +445297,Environment,Environment +442033,Environment,Environment +438320,Environment,Environment +433457,Environment,Environment +433455,Environment,Environment +422031,Environment,Environment +420885,Environment,Environment +420884,Environment,Environment +420883,Environment,Environment +419282,Environment,Environment +416050,Environment,Environment +544509,Environment,Environment +543805,Environment,Environment +445297,Industry,Industry +442268,Industry,Industry +93720,Industry,Industry +93718,Industry,Industry +93717,Industry,Industry +97686,Industry,Industry +442256,Industry,Industry +442243,Industry,Industry +442033,Industry,Industry +438320,Industry,Industry +433458,Industry,Industry +433457,Industry,Industry +433456,Industry,Industry +433455,Industry,Industry +428518,Industry,Industry +426139,Industry,Industry +426001,Industry,Industry +423582,Industry,Industry +423581,Industry,Industry +423580,Industry,Industry +423579,Industry,Industry +423578,Industry,Industry +423577,Industry,Industry +423576,Industry,Industry +423575,Industry,Industry +422031,Industry,Industry +420885,Industry,Industry +420884,Industry,Industry +420883,Industry,Industry +419282,Industry,Industry +417677,Industry,Industry +407400,Industry,Industry +536356,Industry,Industry +530791,Industry,Industry +530790,Industry,Industry +527721,Industry,Industry +527154,Industry,Industry +527153,Industry,Industry +527152,Industry,Industry +527151,Industry,Industry +471091,Industry,Industry +471083,Industry,Industry +460101,Industry,Industry +460099,Industry,Industry +457580,Industry,Industry +457577,Industry,Industry +455802,Industry,Industry +455796,Industry,Industry +451962,Industry,Industry +451961,Industry,Industry +451960,Industry,Industry +449859,Industry,Industry +447869,Industry,Industry +442256,Infrastructure,Infrastructure +442243,Infrastructure,Infrastructure +97686,Infrastructure,Infrastructure +93720,Infrastructure,Infrastructure +93718,Infrastructure,Infrastructure +93717,Infrastructure,Infrastructure +145840,Infrastructure,Infrastructure +145839,Infrastructure,Infrastructure +113820,Infrastructure,Infrastructure +104307,Infrastructure,Infrastructure +104305,Infrastructure,Infrastructure +104303,Infrastructure,Infrastructure +104302,Infrastructure,Infrastructure +104301,Infrastructure,Infrastructure +104297,Infrastructure,Infrastructure +100780,Infrastructure,Infrastructure +100776,Infrastructure,Infrastructure +100775,Infrastructure,Infrastructure +396042,Infrastructure,Infrastructure +394054,Infrastructure,Infrastructure +372501,Infrastructure,Infrastructure +364988,Infrastructure,Infrastructure +364987,Infrastructure,Infrastructure +357760,Infrastructure,Infrastructure +396052,Regional Development,Regional Development +476243,Regional Development,Regional Development +372501,Regional Development,Regional Development +364988,Regional Development,Regional Development +364987,Regional Development,Regional Development +445297,Taxation and Finance,Taxation and Finance +442256,Taxation and Finance,Taxation and Finance +442033,Taxation and Finance,Taxation and Finance +433457,Taxation and Finance,Taxation and Finance +420885,Taxation and Finance,Taxation and Finance +420884,Taxation and Finance,Taxation and Finance +419282,Taxation and Finance,Taxation and Finance +416050,Taxation and Finance,Taxation and Finance +406298,Taxation and Finance,Taxation and Finance +457580,Taxation and Finance,Taxation and Finance +457577,Taxation and Finance,Taxation and Finance +451962,Taxation and Finance,Taxation and Finance +451961,Taxation and Finance,Taxation and Finance +449859,Taxation and Finance,Taxation and Finance +447869,Taxation and Finance,Taxation and Finance +467726,Transportation,Transportation +467721,Transportation,Transportation +120859,Transportation,Transportation +327417,Transportation,Transportation +327416,Transportation,Transportation +396059,Transportation,Transportation +396056,Transportation,Transportation +396054,Transportation,Transportation +396053,Transportation,Transportation +396048,Transportation,Transportation +394066,Transportation,Transportation +394058,Transportation,Transportation +394056,Transportation,Transportation +364985,Transportation,Transportation +342468,Transportation,Transportation +342467,Transportation,Transportation +461386,Transportation,Transportation +420883,Transportation,Transportation +404872,Transportation,Transportation +543805,Transportation,Transportation +536395,Transportation,Transportation +536392,Transportation,Transportation +536374,Transportation,Transportation +533650,Transportation,Transportation +533649,Transportation,Transportation +533648,Transportation,Transportation +532987,Transportation,Transportation +532984,Transportation,Transportation +530791,Transportation,Transportation +530790,Transportation,Transportation +511886,International Trade,International Trade +511885,International Trade,International Trade +113819,International Trade,International Trade +109716,International Trade,International Trade +104297,International Trade,International Trade +194878,International Trade,International Trade +360008,International Trade,International Trade +357759,International Trade,International Trade +357758,International Trade,International Trade +357757,International Trade,International Trade +349093,International Trade,International Trade +349089,International Trade,International Trade +349087,International Trade,International Trade +349085,International Trade,International Trade +347719,International Trade,International Trade +342468,International Trade,International Trade +342467,International Trade,International Trade +433458,International Trade,International Trade +433456,International Trade,International Trade +420883,International Trade,International Trade +419282,International Trade,International Trade +417677,International Trade,International Trade +409609,International Trade,International Trade +409605,International Trade,International Trade +407400,International Trade,International Trade +404874,International Trade,International Trade +404873,International Trade,International Trade +404872,International Trade,International Trade +396059,International Trade,International Trade +396054,International Trade,International Trade +396053,International Trade,International Trade +396052,International Trade,International Trade +394066,International Trade,International Trade +389182,International Trade,International Trade +389181,International Trade,International Trade +442268,International Trade,International Trade +527721,International Trade,International Trade +527154,International Trade,International Trade +527153,International Trade,International Trade +527152,International Trade,International Trade +527151,International Trade,International Trade +111095,Taxation and Finance,Taxation and Finance +106775,Taxation and Finance,Taxation and Finance +131057,Taxation and Finance,Taxation and Finance +99056,Forestry,Forestry +97680,Forestry,Forestry +93266,Forestry,Forestry +93264,Forestry,Forestry +93264,Regional Development,Regional Development +93261,Regional Development,Regional Development +99056,Regional Development,Regional Development +97680,Regional Development,Regional Development +93264,Taxation and Finance,Taxation and Finance +93261,Taxation and Finance,Taxation and Finance +99056,Taxation and Finance,Taxation and Finance +97680,Taxation and Finance,Taxation and Finance +92355,Industry,Industry +448466,Labour,Labour +448465,Labour,Labour +89745,Labour,Labour +89318,Labour,Labour +89317,Labour,Labour +89316,Labour,Labour +371490,Labour,Labour +371485,Labour,Labour +371478,Labour,Labour +371471,Labour,Labour +233136,Labour,Labour +233133,Labour,Labour +228213,Labour,Labour +228212,Labour,Labour +228211,Labour,Labour +226215,Labour,Labour +226212,Labour,Labour +226209,Labour,Labour +226208,Labour,Labour +226207,Labour,Labour +223011,Labour,Labour +544037,Labour,Labour +544035,Labour,Labour +466173,Labour,Labour +458328,Labour,Labour +131154,Environment,Environment +242771,Environment,Environment +242770,Environment,Environment +242770,Health,Health +158211,Health,Health +242771,Industry,Industry +242770,Industry,Industry +190964,Industry,Industry +158211,Industry,Industry +97215,Other,Alaska Pipeline +97214,Other,Alaska Pipeline +89354,Other,Alaska Pipeline +158891,Government Procurement,Government Procurement +102454,Government Procurement,Government Procurement +160797,Government Procurement,Government Procurement +158894,Government Procurement,Government Procurement +158893,Government Procurement,Government Procurement +158193,Other,contraband tobacco +131215,Other,contraband tobacco +109114,Other,contraband tobacco +102717,Other,contraband tobacco +141820,Other,contraband tobacco +131216,Other,contraband tobacco +96325,Other,contraband tobacco +89517,Other,contraband tobacco +188424,Other,contraband tobacco +174710,Other,contraband tobacco +169624,Other,contraband tobacco +89518,Other,contraband tobacco +134400,Other,contraband tobacco +89519,Other,Payments Industry +109116,Other,Canada-UAE Air Transport Agreement +89521,Other,Canada-UAE Air Transport Agreement +124951,Other,Canada-UAE Air Transport Agreement +89538,Other,Dairy Product Regulations +151661,Other,Dairy Product Regulations +151660,Other,Dairy Product Regulations +151657,Other,Dairy Product Regulations +89555,Other,Import Control Licenses +89557,Other,New Dairy Product Regulations +89634,Other,Energy Infrastructure +123637,Other,Energy Infrastructure +97462,Other,Energy Infrastructure +97451,Other,Energy Infrastructure +89635,Other,Energy Infrastructure +93639,Other,Energy Infrastructure +89636,Other,Energy Infrastructure +97447,Other,Energy Infrastructure +97445,Other,Energy Infrastructure +93285,Forestry,Forestry +97679,Regional Development,Regional Development +93285,Regional Development,Regional Development +93285,Taxation and Finance,Taxation and Finance +97457,Other,Energy Infrastructure +89637,Other,Energy Infrastructure +124400,Other,Energy Infrastructure +123634,Other,Energy Infrastructure +121717,Other,Energy Infrastructure +89638,Other,Energy Infrastructure +123639,Other,Energy Infrastructure +93217,Infrastructure,Infrastructure +230300,Industry,Industry +515105,Industry,Industry +100827,Industry,Industry +100693,Industry,Industry +227014,Industry,Industry +227008,Industry,Industry +222967,Industry,Industry +206949,Industry,Industry +202967,Industry,Industry +202966,Industry,Industry +202965,Industry,Industry +199775,Industry,Industry +185494,Industry,Industry +185450,Industry,Industry +177025,Industry,Industry +177004,Industry,Industry +167900,Industry,Industry +167899,Industry,Industry +167898,Industry,Industry +167897,Industry,Industry +167896,Industry,Industry +166001,Industry,Industry +163878,Industry,Industry +163604,Industry,Industry +161936,Industry,Industry +161935,Industry,Industry +161429,Industry,Industry +161428,Industry,Industry +161427,Industry,Industry +161425,Industry,Industry +161424,Industry,Industry +161423,Industry,Industry +473943,Industry,Industry +473941,Industry,Industry +313357,Industry,Industry +313356,Industry,Industry +304892,Industry,Industry +304891,Industry,Industry +304890,Industry,Industry +304889,Industry,Industry +296551,Industry,Industry +296549,Industry,Industry +283249,Industry,Industry +273837,Industry,Industry +273836,Industry,Industry +273835,Industry,Industry +273834,Industry,Industry +273833,Industry,Industry +269585,Industry,Industry +269570,Industry,Industry +269564,Industry,Industry +269559,Industry,Industry +269553,Industry,Industry +264175,Industry,Industry +264174,Industry,Industry +264173,Industry,Industry +264172,Industry,Industry +258914,Industry,Industry +258913,Industry,Industry +258912,Industry,Industry +258911,Industry,Industry +258910,Industry,Industry +258909,Industry,Industry +250759,Industry,Industry +250757,Industry,Industry +250755,Industry,Industry +250747,Industry,Industry +250744,Industry,Industry +239232,Industry,Industry +230310,Industry,Industry +100688,Other,Biocarburants +100687,Other,Biocarburants +100686,Other,Biocarburants +100685,Other,Biocarburants +100684,Other,Biocarburants +151929,Other,Biocarburants +151928,Other,Biocarburants +102758,Other,Biocarburants +100686,Other,Changements climatiques +100685,Other,Changements climatiques +100689,Other,Changements climatiques +100688,Other,Changements climatiques +324237,Energy,Énergie +324236,Energy,Énergie +96575,Energy,Énergie +96574,Energy,Énergie +199700,Energy,Énergie +199697,Energy,Énergie +199695,Energy,Énergie +199693,Energy,Énergie +199692,Energy,Énergie +199690,Energy,Énergie +180365,Energy,Énergie +170312,Energy,Énergie +170311,Energy,Énergie +170310,Energy,Énergie +324235,Energy,Énergie +324233,Energy,Énergie +263914,Energy,Énergie +263912,Energy,Énergie +263911,Energy,Énergie +257689,Energy,Énergie +249470,Energy,Énergie +244431,Energy,Énergie +244430,Energy,Énergie +244428,Energy,Énergie +244427,Energy,Énergie +226428,Energy,Énergie +376312,Energy,Énergie +363803,Energy,Énergie +363802,Energy,Énergie +358430,Energy,Énergie +340587,Energy,Énergie +199690,Environment,Environnement +180365,Environment,Environnement +173155,Environment,Environnement +173153,Environment,Environnement +170312,Environment,Environnement +170311,Environment,Environnement +170310,Environment,Environnement +163504,Environment,Environnement +163484,Environment,Environnement +263914,Environment,Environnement +121376,Environment,Environment +97222,Other,Natural Resources +88248,Environment,Environment +88248,Other,Natural Resources +88252,Other,Natural Resources +88258,Environment,Environment +88258,Other,Natural Resources +88252,Environment,Environment +88297,Other,Privacy issues +88301,Other,BCE transaction issues +90198,Other,Product of Canada and Made in Canada Claims +103514,Infrastructure,Infrastructure +111254,Defence,Defence +494374,Employment and Training,Employment and Training +369897,Immigration,Immigration +476928,Infrastructure,Infrastructure +382016,Internal Trade,Internal Trade +469052,Labour,Labour +367847,Taxation and Finance,Taxation and Finance +88474,Other,Mortgage Insurance +85496,Other,Mortgage Insurance +88494,Other,Mortgage Insurance +88595,Other,2009 Federal Budget +88534,Other,Business challenges +89114,Taxation and Finance,Taxation and Finance +93884,Taxation and Finance,Taxation and Finance +92354,Industry,Industry +88774,Other,Canadian Chamber National Transportation Strategy +88775,Other,Copyright/Digital Rights Management Tools +93272,Employment and Training,Employment and Training +93272,Industry,Industry +93272,Infrastructure,Infrastructure +88935,Taxation and Finance,Taxation and Finance +93268,Employment and Training,Employment and Training +93268,Industry,Industry +93268,Infrastructure,Infrastructure +93275,Education,Education +93275,Employment and Training,Employment and Training +93275,Health,Health +93275,Infrastructure,Infrastructure +93739,Other,Amendments to Copyright Act +93739,Other,"Arts and Culture funding policy, including Canadian Television Fund and Consumer Advertising" +97114,Other,Broadcasting +93739,Other,Broadcasting Industry +93739,Other,Consumer Advertising +93739,Consumer Issues,Consumer Issues +93739,Other,Emergency Alerting +93739,Other,Federal Accountability Act +93739,Other,Government in Council Appointments +93739,Health,Health +93739,Other,Industry +93739,Other,Intellectual Property +93739,International Relations,International Relations +93739,Other,International Trade +93739,Labour,Labour +93739,Other,Legislation and signal delivery +93739,Other,Licence renewal process for television channels +93739,Other,Licensing for broadcasting assests +93739,Other,Radiocommunications Act +93739,Regional Development,Regional Development +93739,Other,Review of New Media +93739,Taxation and Finance,Taxation and Finance +93739,Other,Technological chnages impacting broadcast policy +97001,Health,Health +134855,Other,Supply Management +109596,Government Procurement,Government Procurement +88935,Industry,Industry +88935,International Trade,International Trade +88937,Other,Information Technology and Internet Economy Issues +88955,Industry,Industry +93248,Infrastructure,Infrastructure +94495,Education,Education +94495,Employment and Training,Employment and Training +94495,Health,Health +94495,Infrastructure,Infrastructure +90641,Employment and Training,Employment and Training +90641,Industry,Industry +90641,Infrastructure,Infrastructure +93247,Employment and Training,Employment and Training +93247,Industry,Industry +93247,Infrastructure,Infrastructure +90638,Employment and Training,Employment and Training +90638,Industry,Industry +90638,Infrastructure,Infrastructure +93251,Employment and Training,Employment and Training +93251,Industry,Industry +93251,Infrastructure,Infrastructure +188107,Education,Education +188106,Employment and Training,Employment and Training +188107,Infrastructure,Infrastructure +100034,Other,Canada Grain Act +89079,Taxation and Finance,Taxation and Finance +89098,Other,Pension Regulation +89110,Other,Shared Services +89111,Other,Telecommunication Regulation +89112,Other,Telecommunication Regulation +283629,Infrastructure,Infrastructure +172045,Government Procurement,Government Procurement +264157,Justice and Law Enforcement,Justice and Law Enforcement +123875,Energy,Energy +89178,Infrastructure,Infrastructure +136754,Employment and Training,Employment and Training +527151,Energy,Energy +541057,Environment,Environment +447867,Industry,Industry +327416,Infrastructure,Infrastructure +396054,Regional Development,Regional Development +447867,Taxation and Finance,Taxation and Finance +530787,Transportation,Transportation +511888,International Trade,International Trade +89176,Infrastructure,Infrastructure +89175,Infrastructure,Infrastructure +89174,Infrastructure,Infrastructure +89177,Infrastructure,Infrastructure +89184,Infrastructure,Infrastructure +89185,Infrastructure,Infrastructure +89108,Taxation and Finance,Taxation and Finance +89194,Other,current WTO negotiations +116981,Taxation and Finance,Taxation and Finance +93261,Forestry,Forestry +93266,Regional Development,Regional Development +93266,Taxation and Finance,Taxation and Finance +89295,Other,Worker Assistance - Video conference meeting to discuss worker assistance to forestry industry and other sectors of economy +89295,Other,"Meeting with officials from DFAIT, CRA & NRCan and forest industry Business Advisory Council on SLA 2006" +150737,Industry,Industry +89295,Other,"Meeting with Canadian Embassy Officials in Washington, DC on SLA 2006" +458206,Labour,Labour +89314,Other,Economy +158211,Environment,Environment +242771,Health,Health +131154,Industry,Industry +89417,Education,Education +89417,Taxation and Finance,Taxation and Finance +97217,Other,Alaska Pipeline +89355,Other,Alaska Pipeline +93801,Justice and Law Enforcement,Justice and Law Enforcement +93801,Labour,Labour +158892,Government Procurement,Government Procurement +89394,Other,Land Claim Negotiations +89395,Other,regulation +89415,Other,Consultant introduction +89416,Other,Consultant introduction +89416,Small Business,Small Business +89418,Other,"Consultant introduction, ITT teaming, ATESS meeting." +89454,Other,Licence Fees and Other Obligations +89516,Other,contraband tobacco +163252,Other,contraband tobacco +124891,Other,contraband tobacco +100319,Other,Payments Industry +124892,Other,Canada-UAE Air Transport Agreement +89522,Other,Canada-UAE Air Tranport Agreement +89537,Other,dairy product regulations +89534,Other,Improving Canada's Trade System +89557,Other,Dairy Product Regulations +89539,Other,Economic conditions - the Government's response to the financial crisis +89543,Other,General consultation regarding the upcoming Federal Budget plans +89544,Other,Economic condition of manufacturers - Budget recommendations +89546,Other,Economic condition of manufacturers - Budget recommendations +89545,Other,Regulations +89549,Other,New Dairy Task Force +89547,Other,Productivity and the AMI program success +89556,Other,Import Control Licenses +89558,Other,New Dairy Product Regulations +89559,Other,Support Prices Evaluation +106835,Infrastructure,Infrastructure +89574,Other,Tax/liquidity and capital deployment +89594,Other,"Collection, use and protection of personal information" +89594,Other,"Collection, use and protection of personal information" +93641,Other,Energy Infrastructure +113463,Other,Energy Infrastructure +96857,Other,Energy Infrastructure +97679,Forestry,Forestry +103335,Regional Development,Regional Development +97679,Taxation and Finance,Taxation and Finance +120911,Other,Energy Infrastructure +123638,Other,Energy Infrastructure +93271,Infrastructure,Infrastructure +93271,Sports,Sports +93250,Infrastructure,Infrastructure +93250,Sports,Sports +230305,Industry,Industry +100689,Other,Biocarburants +100687,Other,Changements climatiques +340586,Energy,Énergie +199692,Environment,Environnement +89735,Other,Airport community update +89735,Other,CentrePort Canada Inc. update +89735,Other,Competitiveness of Canadian airports relative to other countries +89735,Other,Economic stimulus suggestions +89738,Other,Airport community update +89738,Other,CentrePort Canada Inc. update +89738,Other,Competitiveness of Canadian airports relative to other countries +89738,Other,Economic stimulus suggestions +120835,Other,Regulatory Effectiveness +112934,Other,Assistance being provided to financial services organizations to enhance liquidity +89765,Other,Montreal Accord and the Canadian Lenders Assurance Fund +97215,Other,Regulatory process for northern resource projects +89837,Other,Ongoing discussions regarding state of the automotive industry at Toyota Motor Manufacturing Canada Woodstock Grand Opening +147454,Other,Industrial Policy -Shipbuilding +106637,Consumer Issues,Consumer Issues +106636,Industry,Industry +106643,Taxation and Finance,Taxation and Finance +106634,Tourism,Tourism +106637,Transportation,Transportation +96837,Other,Food Safety +89877,Other,Health Canada Changes to allowable Thresholds of Melamine in infant formula/WHO changes +85045,Other,Transportation Policy +89899,Taxation and Finance,Taxation and Finance +137177,Other,Government funding for genomics research +89908,Other,Government funding for genomics research +90433,Taxation and Finance,Taxation and Finance +89926,Other,"International Trade, Agriculture" +89937,Other,Defined pension plan +89947,Other,Defined pension plan +145983,Other,Fisheries +93849,Consumer Issues,Consumer Issues +93849,Energy,Energy +93849,Health,Health +93749,Infrastructure,Infrastructure +93849,Taxation and Finance,Taxation and Finance +89974,Other,e-coli vaccine +96476,Other,Pre-budget consultation +93563,Other,Phase II E911 service +93569,Other,Wireless broadband infrastructure - Budget 2009 +90084,Other,Wireless broadband infrastructure - Budget 2009 +90085,Other,Wireless broadband infrastructure - Budget 2009 +103394,Other,Federal renewable fuel standard +90088,Other,Wireless broadband infrastructure - Budget 2009 +90090,Other,Wireless broadband infrastructure - budget 2009 +90095,Other,Management of Canada-U.S. border +96476,Other,Pre-Budget Consulation +96476,Other,Regulatory Reform +90121,Other,Pre-Budget Consultation +148194,Other,Regulatory Reform +90120,Other,"Personal Information Protection and Electronic Document Act (PIPEDA) with respect to the banking industry's collection, use and protection of personal information" +90114,Taxation and Finance,Taxation and Finance +90127,Other,Postal Rates +113556,Other,"Return to Work Program, Primary Care, Operational Stress Initiative" +90160,Other,Defined benefit pension regulations +90167,Other,Defined benefit pension regulations +120354,Other,WTO Negotiations on Agriculture with respect to Canada's supply management system +90171,Other,Defined benefit pension regulations +90174,Other,Defined benefit pension regulations +90175,Other,Defined benefit pension regulations +105735,Other,Carbon pricing +105735,Other,Climate Change +150357,Other,Energy Efficiency +150353,Other,Energy Policy +124946,Other,natural gas markets +90214,Other,WTO Negotiations on Agriculture with respect to Canada's supply management system +90217,Other,Defined benefit pension regulations +90234,Other,Defined benefit pension regulations +90236,Other,Defined benefit pension regulations +97667,Transportation,Transportation +90262,Other,Heavy-duty natural gas vehicles +90261,Agriculture,Agriculture +90276,Other,Finance +90277,Other,Finance +90279,Other,Finance +90280,Other,Finance +159975,Other,Canada's Access to Medicines Regime +100510,Other,Health Human Resources +93778,Other,Health Human Resources +90334,Other,Introduction to Rail Industry +90358,Other,biotechnology +90358,Other,SEBs +119514,Other,Canada-U.S. Border +93348,Other,Transportation +90366,Other,Pre-Budget consultation meeting +90373,Other,Border Efficiency +90386,Other,Port of Prescott infrastructure needs +106277,Infrastructure,Infrastructure +90421,Other,Finance +90422,Other,Finance +539700,Taxation and Finance,Taxation and Finance +146046,Industry,Industry +114239,Taxation and Finance,Taxation and Finance +101102,Other,Health Human Resources +92734,Infrastructure,Infrastructure +90485,Other,Canada's negotiating position in international climate change negotiations +157330,Other,Canada's negotiating position in international climate change negotiations +90456,Other,"Personal Information Protection and Electronic Document Act (PIPEDA) with respect to the banking industry's collection, use and protection of personal information" +90460,Other,Canada's negotiating position in international climate change negotiations +113798,Other,Canada's negotiating position in international climate change negotiations +90464,Other,Canada's negotiating position in international climate change negotiations +90461,Other,Research Commercialization +90465,Other,Canada's negotiating position in international climate change negotiations +117715,Other,Canada's negotiating position in international climate change negotiations +110034,Other,Canada's negotiating position in international climate change negotiations +90470,Other,Canada's negotiating position in international climate change negotiations +90475,Other,Canada's negotiating position in international climate change negotiations +90473,Other,"Personal Information Protection and Electronic Document Act (PIPEDA) with respect to the banking industry’s collection, use and protection of personal information" +133239,Other,Budget recommendations +90484,Other,World Heritage Sites +90487,Industry,Industry +93684,Other,New environmental loan fund for energy-saving building retrofits +106156,Other,Provision of repayable loans for affordable hsg repair through CMHC's direct lending program +93684,Other,Targeted spending on new affordable hsg devt through the Affordable Housing Initiative +90491,Other,Climate Change +158201,Industry,Industry +141825,Intellectual Property,Intellectual Property +158201,Taxation and Finance,Taxation and Finance +90513,Other,Stimulus package for aerospace +90517,Other,Export Development Corp. (EDC) files +90521,Other,"Personal Information Protection and Electronic Document Act (PIPEDA) with respect to the banking industry’s collection, use and protection of personal information" +93851,Constitutional Issues,Constitutional Issues +93851,Consumer Issues,Consumer Issues +93851,Employment and Training,Employment and Training +93851,Financial Institutions,Financial Institutions +93851,Government Procurement,Government Procurement +109194,Health,Health +93851,Industry,Industry +93851,Intellectual Property,Intellectual Property +93851,Internal Trade,Internal Trade +93851,International Relations,International Relations +93851,International Trade,International Trade +93851,Labour,Labour +93851,Regional Development,Regional Development +93851,Taxation and Finance,Taxation and Finance +90539,Transportation,Transportation +90528,Other,Airport Rent; Federal Budget 2009 +90542,Transportation,Transportation +97669,Transportation,Transportation +132546,Other,Airport Policing +90536,Other,CATSA +90540,Other,Air bilaterals (Canada-EU) +90552,Other,International issues +90476,Other,Nuclear Power in Ontario +90605,Other,Budget 2009 +124600,Other,Bank/Financing +90478,Other,Nuclear Power in Ontario +93940,Other,Nuclear Power in Ontario +109270,Other,Bank/Financing +90606,Other,Labour +132986,Other,Carbon Pricing +90619,Other,Carbon Pricing +90620,Other,Official Languages +90621,Other,Carbon pricing +90622,Other,Climate Change +125207,Other,Official Languages +90628,Other,"CoP 14, Poznan" +90632,Other,Climate Change +90635,Other,"CoP 14, Poznan" +136734,Other,Funding for municipal infrastructure +90636,Other,Climate Change +129516,Other,Climate Change +90640,Other,Climate Change +90642,Other,Climate Change +90644,Other,"CoP 14, Poznan" +158473,Other,Pre-Budget Consultation +90646,Other,Carbon Pricing +90645,Other,pre-budget consultations +90648,Other,Climate Change +158462,Other,Regulatory reform +90649,Other,pre Budget consultation +90653,Other,pre budget consultation +97383,Other,Budget 2009 +162712,Other,Energy +191558,Environment,Environment +114439,Other,Wireless technology developments +90716,Other,New media issues +90754,Taxation and Finance,Taxation and Finance +90774,Other,Taxation and Finance +92194,Other,Fisheries +93054,Education,Education +93054,Industry,Industry +424667,Immigration,Immigration +106098,Other,Pensions +125298,Other,Privacy +263912,Environment,Environnement +263911,Environment,Environnement +257689,Environment,Environnement +249470,Environment,Environnement +244431,Environment,Environnement +244428,Environment,Environnement +244427,Environment,Environnement +216369,Environment,Environnement +199700,Environment,Environnement +199697,Environment,Environnement +199695,Environment,Environnement +199693,Environment,Environnement +109324,Other,Regulatory Effectiveness +103137,Other,Regulatory Effectiveness +103136,Other,Regulatory Effectiveness +103135,Other,Regulatory Effectiveness +93104,Other,Regulatory Effectiveness +93100,Other,Regulatory Effectiveness +89739,Other,Regulatory Effectiveness +150255,Other,Regulatory Effectiveness +131874,Other,Regulatory Effectiveness +103756,Other,Assistance being provided to financial services organizations to enhance liquidity +97298,Other,Assistance being provided to financial services organizations to enhance liquidity +93557,Other,Assistance being provided to financial services organizations to enhance liquidity +93551,Other,Assistance being provided to financial services organizations to enhance liquidity +89764,Other,Assistance being provided to financial services organizations to enhance liquidity +89763,Other,Assistance being provided to financial services organizations to enhance liquidity +89762,Other,Assistance being provided to financial services organizations to enhance liquidity +89761,Other,Assistance being provided to financial services organizations to enhance liquidity +89760,Other,Assistance being provided to financial services organizations to enhance liquidity +89759,Other,Assistance being provided to financial services organizations to enhance liquidity +89756,Other,Assistance being provided to financial services organizations to enhance liquidity +112935,Other,Assistance being provided to financial services organizations to enhance liquidity +97214,Other,Regulatory process for northern resource projects +89796,Other,Regulatory process for northern resource projects +97217,Other,Regulatory process for northern resource projects +140054,Other,Industrial Policy -Shipbuilding +135094,Other,Industrial Policy -Shipbuilding +107194,Other,Industrial Policy -Shipbuilding +100512,Other,Industrial Policy -Shipbuilding +100509,Other,Industrial Policy -Shipbuilding +89857,Other,Industrial Policy -Shipbuilding +106636,Consumer Issues,Consumer Issues +106634,Consumer Issues,Consumer Issues +94152,Consumer Issues,Consumer Issues +94151,Consumer Issues,Consumer Issues +94149,Consumer Issues,Consumer Issues +94148,Consumer Issues,Consumer Issues +129635,Consumer Issues,Consumer Issues +118017,Consumer Issues,Consumer Issues +118016,Consumer Issues,Consumer Issues +106643,Consumer Issues,Consumer Issues +106639,Consumer Issues,Consumer Issues +106634,Industry,Industry +106639,Taxation and Finance,Taxation and Finance +106637,Taxation and Finance,Taxation and Finance +106636,Taxation and Finance,Taxation and Finance +106634,Taxation and Finance,Taxation and Finance +94152,Taxation and Finance,Taxation and Finance +94151,Taxation and Finance,Taxation and Finance +94149,Taxation and Finance,Taxation and Finance +94148,Taxation and Finance,Taxation and Finance +129635,Taxation and Finance,Taxation and Finance +118017,Taxation and Finance,Taxation and Finance +118016,Taxation and Finance,Taxation and Finance +118017,Tourism,Tourism +118016,Tourism,Tourism +106643,Tourism,Tourism +106639,Tourism,Tourism +106637,Tourism,Tourism +106636,Tourism,Tourism +106634,Transportation,Transportation +118017,Transportation,Transportation +106643,Transportation,Transportation +106639,Transportation,Transportation +89874,Other,Food Safety +113873,Taxation and Finance,Taxation and Finance +108754,Taxation and Finance,Taxation and Finance +92738,Taxation and Finance,Taxation and Finance +89902,Taxation and Finance,Taxation and Finance +137176,Other,Government funding for genomics research +137175,Other,Government funding for genomics research +116435,Other,Government funding for genomics research +89904,Other,Government funding for genomics research +140962,Other,Government funding for genomics research +140956,Other,Government funding for genomics research +137228,Other,Government funding for genomics research +137227,Other,Government funding for genomics research +137199,Other,Government funding for genomics research +137183,Other,Government funding for genomics research +137181,Other,Government funding for genomics research +132824,Other,Fisheries +89960,Other,Fisheries +93752,Consumer Issues,Consumer Issues +93749,Consumer Issues,Consumer Issues +93850,Consumer Issues,Consumer Issues +93752,Energy,Energy +93749,Energy,Energy +93850,Energy,Energy +93752,Health,Health +93749,Health,Health +93850,Health,Health +113869,Infrastructure,Infrastructure +113860,Infrastructure,Infrastructure +93850,Infrastructure,Infrastructure +93849,Infrastructure,Infrastructure +93752,Infrastructure,Infrastructure +93752,Taxation and Finance,Taxation and Finance +93749,Taxation and Finance,Taxation and Finance +93850,Taxation and Finance,Taxation and Finance +93568,Other,Wireless broadband infrastructure - Budget 2009 +93566,Other,Wireless broadband infrastructure - Budget 2009 +97060,Other,Wireless broadband infrastructure - Budget 2009 +93573,Other,Wireless broadband infrastructure - Budget 2009 +93570,Other,Wireless broadband infrastructure - Budget 2009 +103054,Other,Federal renewable fuel standard +102726,Other,Federal renewable fuel standard +102725,Other,Federal renewable fuel standard +100871,Other,Federal renewable fuel standard +100858,Other,Federal renewable fuel standard +92715,Other,Federal renewable fuel standard +92394,Other,Federal renewable fuel standard +90087,Other,Federal renewable fuel standard +147304,Other,Federal renewable fuel standard +147303,Other,Federal renewable fuel standard +147302,Other,Federal renewable fuel standard +147300,Other,Federal renewable fuel standard +147298,Other,Federal renewable fuel standard +145278,Other,Federal renewable fuel standard +145277,Other,Federal renewable fuel standard +145276,Other,Federal renewable fuel standard +141178,Other,Federal renewable fuel standard +141177,Other,Federal renewable fuel standard +141176,Other,Federal renewable fuel standard +141175,Other,Federal renewable fuel standard +141174,Other,Federal renewable fuel standard +134534,Other,Federal renewable fuel standard +116314,Other,Federal renewable fuel standard +107715,Other,Federal renewable fuel standard +107714,Other,Federal renewable fuel standard +90117,Other,Pre-Budget Consultation +90115,Other,Pre-Budget Consultation +109643,Other,Regulatory Reform +159924,Other,Regulatory Reform +90117,Other,Regulatory Reform +115978,Other,WTO Negotiations on Agriculture with respect to Canada's supply management system +115975,Other,WTO Negotiations on Agriculture with respect to Canada's supply management system +95759,Other,WTO Negotiations on Agriculture with respect to Canada's supply management system +95758,Other,WTO Negotiations on Agriculture with respect to Canada's supply management system +95756,Other,WTO Negotiations on Agriculture with respect to Canada's supply management system +90169,Other,WTO Negotiations on Agriculture with respect to Canada's supply management system +135702,Other,WTO Negotiations on Agriculture with respect to Canada's supply management system +135677,Other,WTO Negotiations on Agriculture with respect to Canada's supply management system +128929,Other,WTO Negotiations on Agriculture with respect to Canada's supply management system +101386,Other,Climate Change +150353,Other,Energy Efficiency +150344,Other,Energy Efficiency +135478,Other,Energy Efficiency +135477,Other,Energy Efficiency +129141,Other,Energy Efficiency +117335,Other,Energy Efficiency +105735,Other,Energy Efficiency +150350,Other,Energy Policy +150344,Other,Energy Policy +101384,Other,Energy Policy +101383,Other,Energy Policy +101382,Other,Energy Policy +101379,Other,Energy Policy +101378,Other,Energy Policy +143034,Other,Energy Policy +135481,Other,Energy Policy +135480,Other,Energy Policy +111143,Other,Energy Policy +110956,Other,Energy Policy +109728,Other,Energy Policy +109719,Other,Energy Policy +109715,Other,Energy Policy +105735,Other,Energy Policy +101389,Other,Energy Policy +150357,Other,Energy Policy +124942,Other,natural gas markets +124939,Other,natural gas markets +105735,Other,natural gas markets +93803,Other,natural gas markets +90573,Other,natural gas markets +150357,Other,natural gas markets +150353,Other,natural gas markets +150344,Other,natural gas markets +129145,Other,natural gas markets +97666,Transportation,Transportation +97663,Transportation,Transportation +90541,Transportation,Transportation +90254,Transportation,Transportation +159974,Other,Canada's Access to Medicines Regime +159973,Other,Canada's Access to Medicines Regime +103475,Other,Canada's Access to Medicines Regime +159972,Other,Canada's Access to Medicines Regime +159971,Other,Canada's Access to Medicines Regime +159969,Other,Canada's Access to Medicines Regime +159968,Other,Canada's Access to Medicines Regime +159966,Other,Canada's Access to Medicines Regime +159965,Other,Canada's Access to Medicines Regime +159964,Other,Canada's Access to Medicines Regime +159963,Other,Canada's Access to Medicines Regime +159961,Other,Canada's Access to Medicines Regime +159960,Other,Canada's Access to Medicines Regime +159958,Other,Canada's Access to Medicines Regime +159956,Other,Canada's Access to Medicines Regime +159953,Other,Canada's Access to Medicines Regime +159949,Other,Canada's Access to Medicines Regime +159947,Other,Canada's Access to Medicines Regime +162542,Other,Canada's Access to Medicines Regime +160484,Other,Canada's Access to Medicines Regime +160483,Other,Canada's Access to Medicines Regime +160482,Other,Canada's Access to Medicines Regime +160006,Other,Canada's Access to Medicines Regime +160005,Other,Canada's Access to Medicines Regime +160004,Other,Canada's Access to Medicines Regime +160003,Other,Canada's Access to Medicines Regime +160001,Other,Canada's Access to Medicines Regime +159999,Other,Canada's Access to Medicines Regime +159998,Other,Canada's Access to Medicines Regime +159997,Other,Canada's Access to Medicines Regime +159996,Other,Canada's Access to Medicines Regime +159994,Other,Canada's Access to Medicines Regime +159993,Other,Canada's Access to Medicines Regime +159986,Other,Canada's Access to Medicines Regime +159984,Other,Canada's Access to Medicines Regime +159982,Other,Canada's Access to Medicines Regime +159981,Other,Canada's Access to Medicines Regime +159978,Other,Canada's Access to Medicines Regime +159977,Other,Canada's Access to Medicines Regime +159976,Other,Canada's Access to Medicines Regime +100507,Other,Health Human Resources +93776,Other,Health Human Resources +93774,Other,Health Human Resources +100504,Other,Health Human Resources +100501,Other,Health Human Resources +100497,Other,Health Human Resources +85045,Other,Introduction to Rail Industry +101178,Other,biotechnology +114515,Other,Canada-U.S. Border +114514,Other,Canada-U.S. Border +109897,Other,Canada-U.S. Border +106855,Other,Canada-U.S. Border +105361,Other,Canada-U.S. Border +100431,Other,Canada-U.S. Border +100428,Other,Canada-U.S. Border +97288,Other,Canada-U.S. Border +94158,Other,Canada-U.S. Border +90364,Other,Canada-U.S. Border +123623,Other,Canada-U.S. Border +123622,Other,Canada-U.S. Border +123621,Other,Canada-U.S. Border +123618,Other,Canada-U.S. Border +123617,Other,Canada-U.S. Border +123616,Other,Canada-U.S. Border +123615,Other,Canada-U.S. Border +123614,Other,Canada-U.S. Border +123594,Other,Canada-U.S. Border +90363,Other,Transportation +101196,Infrastructure,Infrastructure +101193,Infrastructure,Infrastructure +90415,Infrastructure,Infrastructure +526308,Taxation and Finance,Taxation and Finance +522945,Taxation and Finance,Taxation and Finance +90425,Taxation and Finance,Taxation and Finance +202717,Taxation and Finance,Taxation and Finance +264146,Taxation and Finance,Taxation and Finance +233489,Taxation and Finance,Taxation and Finance +331629,Taxation and Finance,Taxation and Finance +374477,Taxation and Finance,Taxation and Finance +372041,Taxation and Finance,Taxation and Finance +142842,Industry,Industry +142839,Industry,Industry +114254,Industry,Industry +114238,Industry,Industry +93840,Industry,Industry +93836,Industry,Industry +150430,Industry,Industry +146051,Industry,Industry +114234,Taxation and Finance,Taxation and Finance +114222,Taxation and Finance,Taxation and Finance +93840,Taxation and Finance,Taxation and Finance +114275,Taxation and Finance,Taxation and Finance +90295,Other,Canada's negotiating position in international climate change negotiations +113797,Other,Canada's negotiating position in international climate change negotiations +113796,Other,Canada's negotiating position in international climate change negotiations +90458,Other,Canada's negotiating position in international climate change negotiations +132733,Other,Canada's negotiating position in international climate change negotiations +113794,Other,Canada's negotiating position in international climate change negotiations +90462,Other,Canada's negotiating position in international climate change negotiations +113795,Other,Canada's negotiating position in international climate change negotiations +90467,Other,Canada's negotiating position in international climate change negotiations +90469,Other,Canada's negotiating position in international climate change negotiations +133238,Other,Budget recommendations +133237,Other,Budget recommendations +90482,Other,Budget recommendations +90479,Other,Budget recommendations +90477,Other,Budget recommendations +133246,Other,Budget recommendations +133245,Other,Budget recommendations +133244,Other,Budget recommendations +133243,Other,Budget recommendations +133242,Other,Budget recommendations +133241,Other,Budget recommendations +133240,Other,Budget recommendations +90489,Other,New environmental loan fund for energy-saving building retrofits +106138,Other,Provision of repayable loans for affordable hsg repair through CMHC's direct lending program +159282,Other,Provision of repayable loans for affordable hsg repair through CMHC's direct lending program +93684,Other,Provision of repayable loans for affordable hsg repair through CMHC's direct lending program +90489,Other,Provision of repayable loans for affordable hsg repair through CMHC's direct lending program +157476,Other,Provision of repayable loans for affordable hsg repair through CMHC's direct lending program +153559,Other,Provision of repayable loans for affordable hsg repair through CMHC's direct lending program +149077,Other,Provision of repayable loans for affordable hsg repair through CMHC's direct lending program +149076,Other,Provision of repayable loans for affordable hsg repair through CMHC's direct lending program +139874,Other,Provision of repayable loans for affordable hsg repair through CMHC's direct lending program +135557,Other,Provision of repayable loans for affordable hsg repair through CMHC's direct lending program +131935,Other,Provision of repayable loans for affordable hsg repair through CMHC's direct lending program +121129,Other,Provision of repayable loans for affordable hsg repair through CMHC's direct lending program +121128,Other,Provision of repayable loans for affordable hsg repair through CMHC's direct lending program +121125,Other,Provision of repayable loans for affordable hsg repair through CMHC's direct lending program +106174,Other,Provision of repayable loans for affordable hsg repair through CMHC's direct lending program +106158,Other,Provision of repayable loans for affordable hsg repair through CMHC's direct lending program +90489,Other,Targeted spending on new affordable hsg devt through the Affordable Housing Initiative +109019,Other,Climate Change +106874,Other,Climate Change +101127,Other,Climate Change +101124,Other,Climate Change +101118,Other,Climate Change +101115,Other,Climate Change +101112,Other,Climate Change +93712,Other,Climate Change +158201,Intellectual Property,Intellectual Property +135796,Government Procurement,Government Procurement +109192,Health,Health +93851,Health,Health +117571,Health,Health +90530,Transportation,Transportation +90533,Transportation,Transportation +97668,Transportation,Transportation +90537,Transportation,Transportation +97670,Transportation,Transportation +90536,Other,Airport Policing +90602,Other,Budget 2009 +90589,Other,Budget 2009 +97490,Other,Budget 2009 +93734,Other,Budget 2009 +90589,Other,Bank/Financing +90478,Other,Nuclear Power in Ontario +117658,Other,Nuclear Power in Ontario +109267,Other,Bank/Financing +97490,Other,Bank/Financing +90601,Other,Bank/Financing +147799,Other,Bank/Financing +147798,Other,Bank/Financing +147797,Other,Bank/Financing +147796,Other,Bank/Financing +147794,Other,Bank/Financing +145475,Other,Bank/Financing +132835,Other,Carbon Pricing +129515,Other,Carbon Pricing +90616,Other,Carbon Pricing +132984,Other,Carbon Pricing +125203,Other,Official Languages +90625,Other,Official Languages +90631,Other,Funding for municipal infrastructure +132835,Other,Climate Change +129515,Other,Climate Change +90639,Other,Climate Change +129514,Other,Climate Change +158472,Other,Pre-Budget Consultation +158471,Other,Pre-Budget Consultation +90643,Other,Pre-Budget Consultation +142821,Other,Pre-Budget Consultation +142818,Other,Pre-Budget Consultation +142815,Other,Pre-Budget Consultation +158504,Other,Pre-Budget Consultation +158503,Other,Pre-Budget Consultation +158502,Other,Pre-Budget Consultation +158501,Other,Pre-Budget Consultation +158499,Other,Pre-Budget Consultation +158498,Other,Pre-Budget Consultation +158497,Other,Pre-Budget Consultation +158496,Other,Pre-Budget Consultation +158495,Other,Pre-Budget Consultation +158493,Other,Pre-Budget Consultation +158458,Other,Regulatory reform +158456,Other,Regulatory reform +90649,Other,Regulatory reform +109806,Other,Regulatory reform +109803,Other,Regulatory reform +109801,Other,Regulatory reform +109797,Other,Regulatory reform +109796,Other,Regulatory reform +109794,Other,Regulatory reform +109791,Other,Regulatory reform +109788,Other,Regulatory reform +109786,Other,Regulatory reform +109784,Other,Regulatory reform +152284,Other,Regulatory reform +152281,Other,Regulatory reform +150442,Other,Regulatory reform +150441,Other,Regulatory reform +150439,Other,Regulatory reform +150438,Other,Regulatory reform +150437,Other,Regulatory reform +142821,Other,Regulatory reform +142818,Other,Regulatory reform +142815,Other,Regulatory reform +135762,Other,Regulatory reform +135760,Other,Regulatory reform +135759,Other,Regulatory reform +158504,Other,Regulatory reform +158503,Other,Regulatory reform +158502,Other,Regulatory reform +158501,Other,Regulatory reform +158499,Other,Regulatory reform +158498,Other,Regulatory reform +158497,Other,Regulatory reform +158496,Other,Regulatory reform +158495,Other,Regulatory reform +158493,Other,Regulatory reform +158473,Other,Regulatory reform +158472,Other,Regulatory reform +158471,Other,Regulatory reform +158470,Other,Regulatory reform +158469,Other,Regulatory reform +158468,Other,Regulatory reform +158466,Other,Regulatory reform +158465,Other,Regulatory reform +97381,Other,Budget 2009 +97376,Other,Budget 2009 +97366,Other,Budget 2009 +97363,Other,Budget 2009 +94696,Other,Budget 2009 +94695,Other,Budget 2009 +90660,Other,Budget 2009 +90659,Other,Budget 2009 +97876,Other,Budget 2009 +97874,Other,Budget 2009 +162711,Other,Energy +162710,Other,Energy +106094,Other,Energy +106075,Other,Energy +97391,Other,Energy +97386,Other,Energy +90678,Other,Energy +90677,Other,Energy +147675,Other,Energy +147674,Other,Energy +132512,Other,Energy +132510,Other,Energy +132508,Other,Energy +174509,Other,Energy +174508,Other,Energy +168720,Other,Energy +168711,Other,Energy +191556,Environment,Environment +191555,Environment,Environment +90678,Environment,Environment +90677,Environment,Environment +106094,Environment,Environment +106075,Environment,Environment +100843,Environment,Environment +97391,Environment,Environment +97386,Environment,Environment +174509,Environment,Environment +174508,Environment,Environment +168720,Environment,Environment +168711,Environment,Environment +162712,Environment,Environment +162711,Environment,Environment +162710,Environment,Environment +147675,Environment,Environment +147674,Environment,Environment +132512,Environment,Environment +132510,Environment,Environment +132508,Environment,Environment +226501,Environment,Environment +209448,Environment,Environment +209447,Environment,Environment +100838,Other,Wireless technology developments +97996,Other,Wireless technology developments +90721,Other,Wireless technology developments +424665,Immigration,Immigration +424662,Immigration,Immigration +157149,Immigration,Immigration +341318,Immigration,Immigration +341302,Immigration,Immigration +539273,Immigration,Immigration +533234,Immigration,Immigration +533233,Immigration,Immigration +533131,Immigration,Immigration +529234,Immigration,Immigration +529222,Immigration,Immigration +529212,Immigration,Immigration +526456,Immigration,Immigration +526447,Immigration,Immigration +526429,Immigration,Immigration +525864,Immigration,Immigration +525844,Immigration,Immigration +525828,Immigration,Immigration +525824,Immigration,Immigration +525804,Immigration,Immigration +525796,Immigration,Immigration +525793,Immigration,Immigration +525789,Immigration,Immigration +525758,Immigration,Immigration +525660,Immigration,Immigration +424801,Immigration,Immigration +424800,Immigration,Immigration +424799,Immigration,Immigration +98554,Other,Pensions +148189,Other,Pensions +114437,Other,Pensions +114436,Other,Pensions +106099,Other,Pensions +163254,Consumer Issues,Consumer Issues +163253,Consumer Issues,Consumer Issues +141824,Consumer Issues,Consumer Issues +141822,Consumer Issues,Consumer Issues +115974,Consumer Issues,Consumer Issues +141822,Financial Institutions,Financial Institutions +115974,Financial Institutions,Financial Institutions +96374,Financial Institutions,Financial Institutions +163254,Financial Institutions,Financial Institutions +163253,Financial Institutions,Financial Institutions +163254,Industry,Industry +163253,Industry,Industry +158968,Energy,Energy +144236,Energy,Energy +144235,Energy,Energy +102659,Energy,Energy +98914,Energy,Energy +96356,Energy,Energy +96354,Energy,Energy +94334,Energy,Energy +90938,Energy,Energy +158968,Environment,Environment +102659,Environment,Environment +98914,Environment,Environment +96356,Environment,Environment +96354,Environment,Environment +94334,Environment,Environment +90938,Environment,Environment +158968,Infrastructure,Infrastructure +144235,Infrastructure,Infrastructure +197460,Industry,Industry +135875,Regional Development,Regional Development +135874,Regional Development,Regional Development +102616,Environment,Environment +102615,Environment,Environment +102615,Industry,Industry +94755,Industry,Industry +102615,Regional Development,Regional Development +91018,Other,Federal budget +90994,Other,Federal budget +94255,Other,Federal budget +92706,Other,Federal budget +92701,Other,Federal budget +92699,Other,Federal budget +91035,Other,Federal budget +90994,Other,Federal budget +94240,Other,Federal budget +94239,Other,Federal budget +92702,Other,Federal budget +92698,Other,Federal budget +92696,Other,Federal budget +91036,Other,Federal budget +93161,Taxation and Finance,Taxation and Finance +93160,Taxation and Finance,Taxation and Finance +93176,Taxation and Finance,Taxation and Finance +93168,Taxation and Finance,Taxation and Finance +93167,Taxation and Finance,Taxation and Finance +93166,Taxation and Finance,Taxation and Finance +93165,Taxation and Finance,Taxation and Finance +94238,Other,Federal budget +92705,Other,Federal budget +92704,Other,Federal budget +91017,Other,Federal budget +91014,Other,Federal budget +90995,Other,Federal budget +91015,Other,Federal budget +90995,Other,Federal budget +92703,Other,Federal budget +92697,Other,Federal budget +93538,Taxation and Finance,Taxation and Finance +325050,Defence,Defence +325049,Defence,Defence +309189,Defence,Defence +293471,Defence,Defence +143995,Defence,Defence +353381,Defence,Defence +353380,Defence,Defence +340768,Defence,Defence +337670,Defence,Defence +335297,Defence,Defence +335296,Defence,Defence +333616,Defence,Defence +329851,Defence,Defence +329850,Defence,Defence +327419,Defence,Defence +143995,Other,Joint Support Ship Project +93580,Health,Health +101341,International Trade,International Trade +101333,International Trade,International Trade +101349,International Trade,International Trade +101345,International Trade,International Trade +139558,Labour,Labour +139557,Labour,Labour +101330,Labour,Labour +101349,Labour,Labour +101345,Labour,Labour +101343,Labour,Labour +101341,Labour,Labour +101333,Labour,Labour +145841,Labour,Labour +101349,Transportation,Transportation +101345,Transportation,Transportation +101343,Transportation,Transportation +101341,Transportation,Transportation +101333,Transportation,Transportation +148267,Transportation,Transportation +225597,Agriculture,Agriculture +205567,Health,Health +205213,Health,Health +93458,Health,Health +93456,Health,Health +190305,Health,Health +185529,Health,Health +169745,Health,Health +166110,Health,Health +166109,Health,Health +157532,Health,Health +157531,Health,Health +157530,Health,Health +157529,Health,Health +157528,Health,Health +370989,Health,Health +254851,Health,Health +245673,Health,Health +223237,Health,Health +157531,Industry,Industry +157530,Industry,Industry +157529,Industry,Industry +157528,Industry,Industry +148182,Industry,Industry +127474,Industry,Industry +103034,Industry,Industry +370989,Industry,Industry +254851,Industry,Industry +245673,Industry,Industry +223239,Industry,Industry +223237,Industry,Industry +223234,Industry,Industry +223232,Industry,Industry +216567,Industry,Industry +213388,Industry,Industry +213387,Industry,Industry +209307,Industry,Industry +205215,Industry,Industry +205213,Industry,Industry +205212,Industry,Industry +204287,Industry,Industry +195824,Industry,Industry +190305,Industry,Industry +185529,Industry,Industry +169745,Industry,Industry +166110,Industry,Industry +166109,Industry,Industry +223234,Intellectual Property,Intellectual Property +223232,Intellectual Property,Intellectual Property +127474,Intellectual Property,Intellectual Property +93458,Intellectual Property,Intellectual Property +157532,Intellectual Property,Intellectual Property +157531,Intellectual Property,Intellectual Property +157530,Intellectual Property,Intellectual Property +157529,Intellectual Property,Intellectual Property +157528,Intellectual Property,Intellectual Property +148182,Intellectual Property,Intellectual Property +216567,Intellectual Property,Intellectual Property +213388,Intellectual Property,Intellectual Property +213387,Intellectual Property,Intellectual Property +205215,Intellectual Property,Intellectual Property +205213,Intellectual Property,Intellectual Property +195469,Intellectual Property,Intellectual Property +190305,Intellectual Property,Intellectual Property +185529,Intellectual Property,Intellectual Property +169745,Intellectual Property,Intellectual Property +166110,Intellectual Property,Intellectual Property +166109,Intellectual Property,Intellectual Property +245673,Intellectual Property,Intellectual Property +223239,Intellectual Property,Intellectual Property +94017,Other,Liquidity in the alternative mortgage market +94016,Other,Liquidity in the alternative mortgage market +115459,Other,Liquidity in the alternative mortgage market +102995,Justice and Law Enforcement,Justice and Law Enforcement +131020,Other,Defence Procurement +124814,Other,Defence Procurement +101578,Other,Defence Procurement +101576,Other,Defence Procurement +94877,Other,Defence Procurement +94876,Other,Defence Procurement +94875,Other,Defence Procurement +94874,Other,Defence Procurement +94868,Other,Defence Procurement +139274,Other,Defence Procurement +101576,Other,International Trade Promotion +94875,Other,International Trade Promotion +101581,Other,International Trade Promotion +94877,Other,Science and Technology +94868,Other,Science and Technology +101581,Other,Science and Technology +101578,Other,Science and Technology +94877,Other,Taxation Policy and Business Assistance Programs +94876,Other,Taxation Policy and Business Assistance Programs +94875,Other,Taxation Policy and Business Assistance Programs +91457,Transportation,Transportation +91455,Transportation,Transportation +91460,Transportation,Transportation +404590,Government Procurement,Marchés Publics +404587,Government Procurement,Marchés Publics +150097,Government Procurement,Marchés Publics +148077,Government Procurement,Marchés Publics +242871,Government Procurement,Marchés Publics +241076,Government Procurement,Marchés Publics +223375,Government Procurement,Marchés Publics +211821,Government Procurement,Marchés Publics +190805,Government Procurement,Marchés Publics +190764,Government Procurement,Marchés Publics +188671,Government Procurement,Marchés Publics +188669,Government Procurement,Marchés Publics +188666,Government Procurement,Marchés Publics +186165,Government Procurement,Marchés Publics +161943,Government Procurement,Marchés Publics +152885,Government Procurement,Marchés Publics +150879,Government Procurement,Marchés Publics +388963,Government Procurement,Marchés Publics +388962,Government Procurement,Marchés Publics +388960,Government Procurement,Marchés Publics +388959,Government Procurement,Marchés Publics +385895,Government Procurement,Marchés Publics +383310,Government Procurement,Marchés Publics +381882,Government Procurement,Marchés Publics +375354,Government Procurement,Marchés Publics +375353,Government Procurement,Marchés Publics +375352,Government Procurement,Marchés Publics +375351,Government Procurement,Marchés Publics +375350,Government Procurement,Marchés Publics +375348,Government Procurement,Marchés Publics +375347,Government Procurement,Marchés Publics +369432,Government Procurement,Marchés Publics +359708,Government Procurement,Marchés Publics +357502,Government Procurement,Marchés Publics +357500,Government Procurement,Marchés Publics +349156,Government Procurement,Marchés Publics +335880,Government Procurement,Marchés Publics +331464,Government Procurement,Marchés Publics +327438,Government Procurement,Marchés Publics +327435,Government Procurement,Marchés Publics +303149,Government Procurement,Marchés Publics +296780,Government Procurement,Marchés Publics +291010,Government Procurement,Marchés Publics +279890,Government Procurement,Marchés Publics +279889,Government Procurement,Marchés Publics +277428,Government Procurement,Marchés Publics +277424,Government Procurement,Marchés Publics +272989,Government Procurement,Marchés Publics +269392,Government Procurement,Marchés Publics +269390,Government Procurement,Marchés Publics +263928,Government Procurement,Marchés Publics +259090,Government Procurement,Marchés Publics +249554,Government Procurement,Marchés Publics +249553,Government Procurement,Marchés Publics +541641,Government Procurement,Marchés Publics +541582,Government Procurement,Marchés Publics +539888,Government Procurement,Marchés Publics +539879,Government Procurement,Marchés Publics +534344,Government Procurement,Marchés Publics +528065,Government Procurement,Marchés Publics +528063,Government Procurement,Marchés Publics +516563,Government Procurement,Marchés Publics +498645,Government Procurement,Marchés Publics +480989,Government Procurement,Marchés Publics +457478,Government Procurement,Marchés Publics +457473,Government Procurement,Marchés Publics +452202,Government Procurement,Marchés Publics +450073,Government Procurement,Marchés Publics +437730,Government Procurement,Marchés Publics +433423,Government Procurement,Marchés Publics +432354,Government Procurement,Marchés Publics +432351,Government Procurement,Marchés Publics +432317,Government Procurement,Marchés Publics +406765,Government Procurement,Marchés Publics +122734,Environment,Environment +122020,Environment,Environment +93173,Industry,Industry +93172,Industry,Industry +106112,Industry,Industry +106111,Industry,Industry +106110,Industry,Industry +180838,Infrastructure,Infrastructure +180836,Infrastructure,Infrastructure +385271,Infrastructure,Infrastructure +382795,Infrastructure,Infrastructure +373130,Infrastructure,Infrastructure +367243,Infrastructure,Infrastructure +367242,Infrastructure,Infrastructure +366102,Infrastructure,Infrastructure +365437,Infrastructure,Infrastructure +360368,Infrastructure,Infrastructure +351960,Infrastructure,Infrastructure +349780,Infrastructure,Infrastructure +337213,Infrastructure,Infrastructure +337212,Infrastructure,Infrastructure +323259,Infrastructure,Infrastructure +317661,Infrastructure,Infrastructure +317651,Infrastructure,Infrastructure +299329,Infrastructure,Infrastructure +299232,Infrastructure,Infrastructure +239090,Infrastructure,Infrastructure +239089,Infrastructure,Infrastructure +224350,Infrastructure,Infrastructure +224307,Infrastructure,Infrastructure +203947,Infrastructure,Infrastructure +299232,Environment,Environment +382795,Environment,Environment +239090,Environment,Environment +239089,Environment,Environment +203947,Environment,Environment +180839,Environment,Environment +180838,Environment,Environment +180836,Environment,Environment +367243,Environment,Environment +367242,Environment,Environment +366102,Environment,Environment +365437,Environment,Environment +351960,Environment,Environment +337213,Environment,Environment +337212,Environment,Environment +323259,Environment,Environment +299329,Regional Development,Regional Development +299232,Regional Development,Regional Development +203947,Regional Development,Regional Development +180839,Regional Development,Regional Development +180838,Regional Development,Regional Development +180836,Regional Development,Regional Development +382795,Regional Development,Regional Development +373130,Regional Development,Regional Development +367243,Regional Development,Regional Development +367242,Regional Development,Regional Development +360368,Regional Development,Regional Development +351960,Regional Development,Regional Development +337213,Regional Development,Regional Development +337212,Regional Development,Regional Development +317661,Regional Development,Regional Development +239090,Tourism,Tourism +239089,Tourism,Tourism +224350,Tourism,Tourism +224307,Tourism,Tourism +203947,Tourism,Tourism +180839,Tourism,Tourism +180838,Tourism,Tourism +180836,Tourism,Tourism +385271,Tourism,Tourism +382795,Tourism,Tourism +373130,Tourism,Tourism +367243,Tourism,Tourism +367242,Tourism,Tourism +366102,Tourism,Tourism +365437,Tourism,Tourism +360368,Tourism,Tourism +351960,Tourism,Tourism +349780,Tourism,Tourism +337213,Tourism,Tourism +337212,Tourism,Tourism +323259,Tourism,Tourism +317661,Tourism,Tourism +317651,Tourism,Tourism +299329,Tourism,Tourism +328027,Industry,Industry +280673,Industry,Industry +192953,Industry,Industry +192950,Industry,Industry +192945,Industry,Industry +249950,Industry,Industry +235550,Industry,Industry +233551,Industry,Industry +213527,Industry,Industry +192950,Intellectual Property,Intellectual Property +192945,Intellectual Property,Intellectual Property +328027,Intellectual Property,Intellectual Property +249950,Intellectual Property,Intellectual Property +235550,Intellectual Property,Intellectual Property +233551,Intellectual Property,Intellectual Property +213527,Intellectual Property,Intellectual Property +192956,Intellectual Property,Intellectual Property +192950,International Trade,International Trade +192945,International Trade,International Trade +96374,Consumer Issues,Consumer Issues +141824,Financial Institutions,Financial Institutions +115974,Industry,Industry +90937,Energy,Energy +90937,Environment,Environment +98914,Infrastructure,Infrastructure +111015,Defence,Defence +111015,Government Procurement,Government Procurement +90914,Other,Canadian Veterinary Reserve +94754,Defence,Defence +94754,Industry,Industry +94754,Regional Development,Regional Development +102617,Environment,Environment +102617,Industry,Industry +102617,Regional Development,Regional Development +94755,Transportation,Transportation +91034,Other,Federal budget +91016,Other,Federal budget +93167,International Trade,International Trade +93169,Small Business,Small Business +93163,Taxation and Finance,Taxation and Finance +94241,Other,Federal budget +92695,Other,Federal budget +93574,Taxation and Finance,Taxation and Finance +327418,Defence,Defence +91154,Other,Joint Support Ship Project +116339,Health,Health +91255,Other,Pediatric Standards of Evidence +101220,Infrastructure,Infrastructure +101343,International Trade,International Trade +139559,Labour,Labour +142627,Transportation,Transportation +225598,Agriculture,Agriculture +209307,Health,Health +157532,Industry,Industry +223237,Intellectual Property,Intellectual Property +91274,Other,Canada-UAE Air Transport Agreement +91294,Other,Canada-UAE Air Transport Agreement +94018,Other,Liquidity in the alternative mortgage market +93564,Other,Application for a SADI Program with respect of R&D in Aerospace Secotr +115180,Justice and Law Enforcement,Justice and Law Enforcement +91434,Other,2009 budget: expansion of scope of flow through share deductibility +91435,Other,Outlook for Junior oil and gas sector for 2009: budget stimulus/flow through shares +134276,Other,Defence Procurement +101578,Other,International Trade Promotion +101576,Other,Science and Technology +94874,Other,Taxation Policy and Business Assistance Programs +91459,Transportation,Transportation +404593,Government Procurement,Marchés Publics +103782,Infrastructure,Infrastructure +91615,Other,Economic outlook +91615,Employment and Training,Employment and Training +91615,Other,Financing of housing +91615,Other,Labour supply +142215,Environment,Environment +101346,Regional Development,Regional Development +94243,Other,To share recommendations on brief for Budget 2009 +106109,Industry,Industry +96376,Consumer Issues,Consumer Issues +96376,Financial Institutions,Financial Institutions +91835,Other,Public Alerting +91875,Other,Crime Prevention +91937,Other,to encourage government to obtain a mandate to negotiate a land claim for client +180839,Infrastructure,Infrastructure +299329,Environment,Environment +317651,Regional Development,Regional Development +299232,Tourism,Tourism +95095,Other,Education +192956,Industry,Industry +192953,Intellectual Property,Intellectual Property +192953,International Trade,International Trade +97354,Other,Energy +92155,Other,IPTV Demonstration +92194,Mining,Mining +92214,Other,Hosted Minister as guest speaker presenting details on federal economic statement to CME/Business audience. +92274,Other,Health +92294,Other,User Fees +107534,Justice and Law Enforcement,Justice and Law Enforcement +396518,Forestry,Forestry +319770,Industry,Industry +396509,International Trade,International Trade +97116,Other,ecoENERGY for Biofuels Program +515198,Health,Health +488341,Industry,Industry +223374,Intellectual Property,Intellectual Property +388813,International Trade,International Trade +145678,Other,Alaska Pipeline +516979,Infrastructure,Infrastructure +100544,International Trade,International Trade +100547,Other,Regulatory process for northern resource projects +92435,Other,Developing a regulatory framework for multiple equity markets in Canada +92435,Other,Developing a regulatory framework for multiple equity markets in Canada +100274,Other,"Legislative Proposal, Bill or Regulation" +92498,Other,IIF Recommendations on Best Practices of Risk Management +139514,Other,Strengthening links with U of C +95554,Infrastructure,Infrastructure +92554,Other,"Federal Budget, Green Infrastructure Fund" +114000,Government Procurement,Government Procurement +226323,Financial Institutions,Financial Institutions +92617,Other,Federal government guarantee program: Canadian Lenders Assurance Facility +92628,Other,National vehicle srappage +92634,Other,Federal government guarantee program: Canadian Lenders Insurance Assurance Facility +92635,Other,PCB Regulations +104514,Sports,Sports +92655,Other,ecoEnergy +92700,Other,Broadband +129538,Government Procurement,Government Procurement +92714,Other,Federal Budget +103621,Infrastructure,Infrastructure +113555,Other,Canada Labour Code Part III - Employment Standards +109745,Other,Employment Insurance Financing Board +93208,Other,HRSDC - Employment Insurance Act +132552,Other,HRSDC - Old Age Security +102722,Environment,Environment +141823,Mining,Mining +128634,Regional Development,Regional Development +102722,Taxation and Finance,Taxation and Finance +92739,Consumer Issues,Consumer Issues +100855,Other,Department of Finance +100840,Other,Department on Foreign Affairs and International Trade +528953,Energy,Energy +458706,Environment,Environment +313649,International Relations,International Relations +313649,International Trade,International Trade +160686,Taxation and Finance,Taxation and Finance +92759,Other,Regulation +92778,Other,Budget Consultations +155807,Industry,Industry +155806,Intellectual Property,Intellectual Property +155808,International Trade,International Trade +92795,Other,Budget priorities for manufacturers (meeting) +92798,Other,Budget priorities for manufacturers (telephone call) +92814,Tourism,Tourism +92865,Other,Business Risk Management programs when animals ordered destroyed +92870,Other,Pre-Budget Consultation +92871,Other,Health of Animals Act Compensation for Animals Ordered Destroyed +141781,Other,Canadian Human Rights Act +92897,Other,Budget +92934,Other,Matters related to AI. +92954,Other,Email and follow-up telephone conversation to receive clarity on provisions pertaining to Revision #4 of the draft WTO modalities on agriculture. +104036,Other,Infrastructure Funding +92979,Other,Infrastructure funding consultations +200047,Transportation,Transportation +92989,Other,China Transit Trial +92989,Other,R-280 MOU +92989,Other,Transit Without Visa +100320,Infrastructure,Infrastructure +100320,Transportation,Transportation +100320,Environment,Environment +100320,Industry,Industry +398436,International Relations,International Relations +395961,Taxation and Finance,Taxation and Finance +147414,Agriculture,Agriculture +147414,International Trade,International Trade +147414,Taxation and Finance,Taxation and Finance +99916,Regional Development,Regional Development +93109,Other,Cdn Sustainable Development Act +93109,Other,Federal Sustainable Development Act +93109,Other,Species At Rrisk Act +93110,Other,CDN Environmental Protection Act +93110,Other,Federal Sustainable Developmen Act +93110,Other,Species At Risk Act +132851,Other,Carbon Pricing +93151,Other,Budget +100316,Other,Border controls +95297,Other,Port policy +93197,Other,Climate Change +123336,Infrastructure,Infrastructure +93194,Other,Strengthening the Regulator - CSIC +93204,Other,Labour Relations +93207,Other,Pre-Budget +128376,Other,Pandemic Planning +93279,Education,Education +93279,Infrastructure,Infrastructure +93279,Regional Development,Regional Development +93234,Other,Pre Budget consulation - infrastructure funding +93237,Other,Pre Budget consultation - infrastructure +100738,Government Procurement,Government Procurement +96714,Government Procurement,Government Procurement +93315,Other,Federal Budget +93315,Other,Railway Safety Statistics +473302,Taxation and Finance,Taxation and Finance +450774,Taxation and Finance,Taxation and Finance +93341,Other,Overview of General Dynamics OTS-C's activities in Canada +93341,Other,Discussion about Canadian defense industrial base +93341,Other,Presentation of Munitions Supply Program +93341,Other,Short briefing about Suburb train project and impact on OTS-C in terms of employment and ability to address DND's requirements +105722,Other,Broadcasting Licence Fee Regulations +93344,Other,CRTC Regulatory Proceedings +93354,Other,Budget +93355,Other,Broadcasting Licence Fee Regulations +113859,Other,CRTC Regulatory Proceedings +93356,Other,Budget +93357,Other,Broadcasting Licence Fee Regulations +93357,Other,CRTC Regulatory Proceedings +93358,Other,Broadcasting Licence Fee Regulations +109237,Other,CRTC Regulatory Proceedings +93402,Other,Feasibility Study undertaken by Bristol Aerospace. +93414,Other,Boeing Programs in Canada +93414,Other,Defence +134986,Other,Centre of Excellence +145785,Other,Federal Funding Announcement +194761,Energy,Energy +93435,Other,Copyright +109382,Other,Credit Card Fees +93462,Other,Credit Card Fees +93464,Other,Credit Card Fees +93474,Other,Feedback on Government plans for AECL +93475,Other,MDA Business Summary +93475,Other,Current CSA-MDA programs +93476,Other,DND Programs +93477,Other,DND Programs +109025,Other,DND Programs +93514,Other,Agriculture +93561,Other,To discuss the importance of including dditional investment in the Canadian Space Program as part of the government's stimulus initiatives in Budget 2009. +93571,Other,Telecommunications regulation and consumer issues +112695,Other,Pending Lawful Access legislation +93583,Other,To discuss the importance of including additional investment in the Canadian Space Program as part of the government's stimulus initiatives in Budget 2009. +93616,Other,To discuss the importance of including additional investment in the Canadian Space Program as part of the government's stimulus initiatives in Budget 2009. +93625,Other,To discuss the importance of including additional investment in the Canadian Space Program as part of the government's stimulus initiatives in Budget 2009. +96555,Environment,Environment +162024,Other,Security Infrastructure Program +99834,Other,Broadband +93673,Other,Stimulus Package +93678,Other,Stimulus Package +93685,Other,Space Radar pursuits in U.S. +97547,Other,Stimulus Package +93691,Other,"The budget, the oil sands, energy and nuclear policy" +132238,Other,Unmanned Aerial Vehicles (UAVs) +93692,Other,To discuss the importance of including additional investment in the Canadian Space Program as part of the government's stimulus initiatives in Budget 2009. +93694,Other,To discuss the importance of including additional investment in the Canadian Space Program as part of the government's stimulus initiatives in Budget 2009. +93696,Other,To discuss the importance of including additional investment in the Canadian Space Program as part of the government's stimulus initiatives in Budget 2009. +93702,Other,To discuss the importance of including additional investment in the Canadian Space Program as part of the government's stimulus initiatives in Budget 2009. +93690,Other,Nuclear Liability Act & Pollicy +163686,Transportation,Transportation +93708,Other,Federal Budgets and the Ten-Year Plan to Strengthen Health Care (2004 Accord): Financing of the Health System including the Canada Health Transfer and Equalization Program +93708,Other,Health Infrastructure +93715,Other,No specific ask +93714,Other,Oilsands issues +93715,Other,"No specific ask, reaction to budget" +427815,Health,Health +427815,Industry,Industry +409007,Intellectual Property,Intellectual Property +163590,Infrastructure,Infrastructure +93731,Other,Budget announcement +93731,Other,Budget Announcement January 27/09 +93730,Other,Capital Markets +152258,Education,Education +152258,Industry,Industry +137536,Other,Credit card issue +93744,Other,Stimulus Package +93750,Other,Stimulus Package +93751,Other,Space Radar pursuits in US +97549,Other,Stimulus Package +99814,Other,Corporate Social Responsibility (CSR) +93780,Other,Mackenzie Gas Pipeline +148130,Agriculture,Agriculture +93669,Other,Proposal to Industry Canada +93807,Other,Potential communication opportunity +135986,Other,Energy Policy +93828,Other,Federal Budget 2009 +93828,Other,Infrastructure spending +93820,International Trade,International Trade +93814,Other,Potential Communication Opportunity +93831,Other,Small Business +101370,Education,Education +93466,Other,Canada's International and Trade Policy +93466,Other,Canadian Environmental Assessment Act +93466,Other,Canadian Environmental Protection Act +93466,Other,Clean Energy +93466,Other,Climate Change +93466,Other,Major Project Management Office Regulations +93466,Other,Nuclear Energy +93466,Other,Nuclear Safety and Control Act +93466,Other,Regulations of the Canadian Environmental Assessment Act +93466,Other,Regulations of the Canadian Environment Protection Act +93466,Other,Regulations of the Nuclear Safety and Control Act +328027,International Trade,International Trade +249950,International Trade,International Trade +235550,International Trade,International Trade +233551,International Trade,International Trade +213527,International Trade,International Trade +192956,International Trade,International Trade +92154,Other,IPTV Demonstration +95556,Justice and Law Enforcement,Justice and Law Enforcement +95555,Justice and Law Enforcement,Justice and Law Enforcement +118054,Justice and Law Enforcement,Justice and Law Enforcement +396509,Forestry,Forestry +506519,Forestry,Forestry +148368,Forestry,Forestry +127854,Forestry,Forestry +110678,Forestry,Forestry +110677,Forestry,Forestry +110676,Forestry,Forestry +110675,Forestry,Forestry +319776,Forestry,Forestry +319775,Forestry,Forestry +319774,Forestry,Forestry +319773,Forestry,Forestry +319772,Forestry,Forestry +319770,Forestry,Forestry +319769,Forestry,Forestry +227515,Forestry,Forestry +227514,Forestry,Forestry +218654,Forestry,Forestry +218653,Forestry,Forestry +358306,Forestry,Forestry +349404,Forestry,Forestry +349403,Forestry,Forestry +349402,Forestry,Forestry +349401,Forestry,Forestry +349400,Forestry,Forestry +347454,Forestry,Forestry +347453,Forestry,Forestry +347452,Forestry,Forestry +347450,Forestry,Forestry +347447,Forestry,Forestry +427062,Forestry,Forestry +410076,Forestry,Forestry +410075,Forestry,Forestry +410073,Forestry,Forestry +404049,Forestry,Forestry +396539,Forestry,Forestry +396533,Forestry,Forestry +427062,Industry,Industry +410076,Industry,Industry +110675,Industry,Industry +227515,Industry,Industry +227514,Industry,Industry +218654,Industry,Industry +218653,Industry,Industry +404049,Industry,Industry +396539,Industry,Industry +319776,Industry,Industry +319775,Industry,Industry +319773,Industry,Industry +319772,Industry,Industry +358306,International Trade,International Trade +506519,International Trade,International Trade +227515,International Trade,International Trade +227514,International Trade,International Trade +148368,International Trade,International Trade +127854,International Trade,International Trade +110678,International Trade,International Trade +110677,International Trade,International Trade +110676,International Trade,International Trade +110675,International Trade,International Trade +349403,International Trade,International Trade +349402,International Trade,International Trade +349401,International Trade,International Trade +349400,International Trade,International Trade +347454,International Trade,International Trade +347453,International Trade,International Trade +347452,International Trade,International Trade +347450,International Trade,International Trade +347447,International Trade,International Trade +319776,International Trade,International Trade +319775,International Trade,International Trade +319773,International Trade,International Trade +319772,International Trade,International Trade +319770,International Trade,International Trade +427062,International Trade,International Trade +410076,International Trade,International Trade +410075,International Trade,International Trade +410073,International Trade,International Trade +404049,International Trade,International Trade +396539,International Trade,International Trade +396533,International Trade,International Trade +396518,International Trade,International Trade +507433,Health,Health +500154,Health,Health +174105,Health,Health +169948,Health,Health +161796,Health,Health +161794,Health,Health +161793,Health,Health +161792,Health,Health +160487,Health,Health +156027,Health,Health +156026,Health,Health +371479,Health,Health +255609,Health,Health +250120,Health,Health +226950,Health,Health +223374,Health,Health +216094,Health,Health +201027,Health,Health +199988,Health,Health +199985,Health,Health +185351,Health,Health +488341,Health,Health +485676,Health,Health +471385,Health,Health +456397,Health,Health +446397,Health,Health +432855,Health,Health +431540,Health,Health +427208,Health,Health +427207,Health,Health +424593,Health,Health +421448,Health,Health +418478,Health,Health +381793,Health,Health +380516,Health,Health +542140,Health,Health +535413,Health,Health +518906,Health,Health +517826,Health,Health +516639,Health,Health +485676,Industry,Industry +456397,Industry,Industry +199985,Industry,Industry +185351,Industry,Industry +174105,Industry,Industry +169948,Industry,Industry +161796,Industry,Industry +161794,Industry,Industry +161793,Industry,Industry +161792,Industry,Industry +160487,Industry,Industry +156027,Industry,Industry +156026,Industry,Industry +148180,Industry,Industry +128154,Industry,Industry +109461,Industry,Industry +255609,Industry,Industry +250120,Industry,Industry +226950,Industry,Industry +223374,Industry,Industry +216094,Industry,Industry +201027,Industry,Industry +199988,Industry,Industry +427207,Industry,Industry +424593,Industry,Industry +388813,Industry,Industry +381793,Industry,Industry +375356,Industry,Industry +535413,Industry,Industry +516639,Industry,Industry +507433,Industry,Industry +500154,Industry,Industry +488341,Intellectual Property,Intellectual Property +156026,Intellectual Property,Intellectual Property +148180,Intellectual Property,Intellectual Property +128154,Intellectual Property,Intellectual Property +199988,Intellectual Property,Intellectual Property +174105,Intellectual Property,Intellectual Property +169948,Intellectual Property,Intellectual Property +161796,Intellectual Property,Intellectual Property +161794,Intellectual Property,Intellectual Property +161793,Intellectual Property,Intellectual Property +161792,Intellectual Property,Intellectual Property +160487,Intellectual Property,Intellectual Property +156027,Intellectual Property,Intellectual Property +388813,Intellectual Property,Intellectual Property +488341,International Trade,International Trade +456397,International Trade,International Trade +161792,International Trade,International Trade +160487,International Trade,International Trade +156027,International Trade,International Trade +156026,International Trade,International Trade +223374,International Trade,International Trade +199988,International Trade,International Trade +174105,International Trade,International Trade +169948,International Trade,International Trade +161796,International Trade,International Trade +161794,International Trade,International Trade +161793,International Trade,International Trade +128275,Other,Alaska Pipeline +116893,Other,Alaska Pipeline +108195,Other,Alaska Pipeline +108194,Other,Alaska Pipeline +100536,Other,Alaska Pipeline +100533,Other,Alaska Pipeline +150518,Other,Alaska Pipeline +484286,Infrastructure,Infrastructure +475494,Infrastructure,Infrastructure +401857,Infrastructure,Infrastructure +401854,Infrastructure,Infrastructure +401849,Infrastructure,Infrastructure +401835,Infrastructure,Infrastructure +475488,Infrastructure,Infrastructure +444993,Infrastructure,Infrastructure +444992,Infrastructure,Infrastructure +441889,Infrastructure,Infrastructure +441883,Infrastructure,Infrastructure +441876,Infrastructure,Infrastructure +441869,Infrastructure,Infrastructure +441863,Infrastructure,Infrastructure +433475,Infrastructure,Infrastructure +433472,Infrastructure,Infrastructure +432358,Infrastructure,Infrastructure +430436,Infrastructure,Infrastructure +430434,Infrastructure,Infrastructure +429298,Infrastructure,Infrastructure +425013,Infrastructure,Infrastructure +425012,Infrastructure,Infrastructure +425011,Infrastructure,Infrastructure +424990,Infrastructure,Infrastructure +424987,Infrastructure,Infrastructure +424862,Infrastructure,Infrastructure +422261,Infrastructure,Infrastructure +414718,Infrastructure,Infrastructure +414693,Infrastructure,Infrastructure +414586,Infrastructure,Infrastructure +414582,Infrastructure,Infrastructure +414578,Infrastructure,Infrastructure +414577,Infrastructure,Infrastructure +529013,Infrastructure,Infrastructure +104434,International Trade,International Trade +100547,International Trade,International Trade +100544,Other,Regulatory process for northern resource projects +146995,Other,"Legislative Proposal, Bill or Regulation" +142457,Other,"Legislative Proposal, Bill or Regulation" +100275,Other,"Legislative Proposal, Bill or Regulation" +129165,Other,Strengthening links with U of C +129163,Other,Strengthening links with U of C +129154,Other,Strengthening links with U of C +126877,Other,Strengthening links with U of C +126876,Other,Strengthening links with U of C +126875,Other,Strengthening links with U of C +126874,Other,Strengthening links with U of C +101281,Other,Strengthening links with U of C +92515,Other,Strengthening links with U of C +139516,Other,Strengthening links with U of C +139515,Other,Strengthening links with U of C +106289,Government Procurement,Government Procurement +106279,Government Procurement,Government Procurement +101212,Government Procurement,Government Procurement +101208,Government Procurement,Government Procurement +101204,Government Procurement,Government Procurement +92863,Government Procurement,Government Procurement +138399,Government Procurement,Government Procurement +132911,Government Procurement,Government Procurement +386831,Financial Institutions,Financial Institutions +103620,Infrastructure,Infrastructure +100266,Infrastructure,Infrastructure +116144,Infrastructure,Infrastructure +103622,Infrastructure,Infrastructure +105538,Other,Employment Insurance Financing Board +132552,Other,Employment Insurance Financing Board +109763,Other,Employment Insurance Financing Board +109757,Other,Employment Insurance Financing Board +109755,Other,Employment Insurance Financing Board +93151,Other,HRSDC - Employment Insurance Act +128634,Mining,Mining +102722,Mining,Mining +124178,Regional Development,Regional Development +102722,Regional Development,Regional Development +141823,Regional Development,Regional Development +524366,Energy,Energy +524365,Energy,Energy +118794,Energy,Energy +107439,Energy,Energy +107438,Energy,Energy +107437,Energy,Energy +107436,Energy,Energy +107435,Energy,Energy +107434,Energy,Energy +160809,Energy,Energy +160808,Energy,Energy +160805,Energy,Energy +413057,Energy,Energy +413056,Energy,Energy +413053,Energy,Energy +413052,Energy,Energy +410367,Energy,Energy +410366,Energy,Energy +410365,Energy,Energy +407950,Energy,Energy +407948,Energy,Energy +407946,Energy,Energy +407943,Energy,Energy +406808,Energy,Energy +405867,Energy,Energy +403455,Energy,Energy +403453,Energy,Energy +401092,Energy,Energy +400794,Energy,Energy +400565,Energy,Energy +392820,Energy,Energy +392819,Energy,Energy +392816,Energy,Energy +391211,Energy,Energy +391208,Energy,Energy +391203,Energy,Energy +385354,Energy,Energy +383685,Energy,Energy +381627,Energy,Energy +360223,Energy,Energy +360222,Energy,Energy +313649,Energy,Energy +309780,Energy,Energy +507214,Energy,Energy +503542,Energy,Energy +485735,Energy,Energy +480900,Energy,Energy +458707,Energy,Energy +458706,Energy,Energy +458704,Energy,Energy +457522,Energy,Energy +457519,Energy,Energy +457511,Energy,Energy +452872,Energy,Energy +449610,Energy,Energy +443991,Energy,Energy +443988,Energy,Energy +443986,Energy,Energy +443981,Energy,Energy +442916,Energy,Energy +439724,Energy,Energy +439723,Energy,Energy +429599,Energy,Energy +429598,Energy,Energy +429597,Energy,Energy +429596,Energy,Energy +429595,Energy,Energy +429594,Energy,Energy +429593,Energy,Energy +426478,Energy,Energy +423905,Energy,Energy +423904,Energy,Energy +423901,Energy,Energy +423899,Energy,Energy +423896,Energy,Energy +422313,Energy,Energy +422311,Energy,Energy +419688,Energy,Energy +419684,Energy,Energy +417846,Energy,Energy +417845,Energy,Energy +417842,Energy,Energy +417840,Energy,Energy +540128,Energy,Energy +539658,Energy,Energy +537921,Energy,Energy +537919,Energy,Energy +531907,Energy,Energy +528964,Energy,Energy +439722,Environment,Environment +504407,Environment,Environment +118794,Environment,Environment +107437,Environment,Environment +107436,Environment,Environment +131035,Environment,Environment +131034,Environment,Environment +131024,Environment,Environment +131022,Environment,Environment +131021,Environment,Environment +458707,Environment,Environment +480900,International Trade,International Trade +360223,Taxation and Finance,Taxation and Finance +155806,Industry,Industry +148238,Industry,Industry +127754,Industry,Industry +156530,Industry,Industry +155808,Industry,Industry +148238,Intellectual Property,Intellectual Property +127754,Intellectual Property,Intellectual Property +156530,Intellectual Property,Intellectual Property +155808,Intellectual Property,Intellectual Property +155807,Intellectual Property,Intellectual Property +155807,International Trade,International Trade +155806,International Trade,International Trade +156530,International Trade,International Trade +92794,Other,Budget priorities for manufacturers (meeting) +92796,Other,Budget priorities for manufacturers (telephone call) +141854,Other,Canadian Human Rights Act +92977,Other,Infrastructure Funding +200045,Transportation,Transportation +170595,Transportation,Transportation +206994,Transportation,Transportation +96016,Infrastructure,Infrastructure +96016,Transportation,Transportation +96016,Environment,Environment +96016,Industry,Industry +398433,International Relations,International Relations +520519,International Relations,International Relations +157197,International Relations,International Relations +97355,International Relations,International Relations +278511,International Relations,International Relations +274969,International Relations,International Relations +246791,International Relations,International Relations +246790,International Relations,International Relations +246789,International Relations,International Relations +232051,International Relations,International Relations +232050,International Relations,International Relations +232049,International Relations,International Relations +221887,International Relations,International Relations +379093,International Relations,International Relations +379087,International Relations,International Relations +351165,International Relations,International Relations +350967,International Relations,International Relations +342321,International Relations,International Relations +336149,International Relations,International Relations +331626,International Relations,International Relations +474942,International Relations,International Relations +473508,International Relations,International Relations +473238,International Relations,International Relations +464514,International Relations,International Relations +464513,International Relations,International Relations +433257,International Relations,International Relations +398487,International Relations,International Relations +392261,Taxation and Finance,Taxation and Finance +342320,Taxation and Finance,Taxation and Finance +305969,Taxation and Finance,Taxation and Finance +99914,Regional Development,Regional Development +142881,Other,Federal Sustainable Development Act +142878,Other,Federal Sustainable Development Act +121287,Other,Federal Sustainable Developmen Act +93137,Other,Border controls +93141,Other,Port policy +93143,Other,Climate Change +93201,Other,Labour Relations +93199,Other,Labour Relations +143434,Other,Labour Relations +100857,Other,Labour Relations +97341,Other,Labour Relations +93205,Other,Labour Relations +93203,Other,Pre-Budget +93202,Other,Pre-Budget +125200,Other,Pandemic Planning +121122,Other,Pandemic Planning +114178,Other,Pandemic Planning +109845,Other,Pandemic Planning +109844,Other,Pandemic Planning +101185,Other,Pandemic Planning +101183,Other,Pandemic Planning +146282,Other,Pandemic Planning +142823,Other,Pandemic Planning +128378,Other,Pandemic Planning +128377,Other,Pandemic Planning +100736,Government Procurement,Government Procurement +100734,Government Procurement,Government Procurement +468471,Taxation and Finance,Taxation and Finance +468461,Taxation and Finance,Taxation and Finance +93340,Taxation and Finance,Taxation and Finance +405933,Taxation and Finance,Taxation and Finance +388231,Taxation and Finance,Taxation and Finance +384001,Taxation and Finance,Taxation and Finance +525430,Taxation and Finance,Taxation and Finance +525425,Taxation and Finance,Taxation and Finance +525423,Taxation and Finance,Taxation and Finance +525419,Taxation and Finance,Taxation and Finance +516882,Taxation and Finance,Taxation and Finance +499178,Taxation and Finance,Taxation and Finance +499174,Taxation and Finance,Taxation and Finance +499171,Taxation and Finance,Taxation and Finance +499169,Taxation and Finance,Taxation and Finance +499126,Taxation and Finance,Taxation and Finance +478140,Taxation and Finance,Taxation and Finance +473318,Taxation and Finance,Taxation and Finance +473309,Taxation and Finance,Taxation and Finance +473308,Taxation and Finance,Taxation and Finance +450773,Taxation and Finance,Taxation and Finance +450772,Taxation and Finance,Taxation and Finance +93342,Taxation and Finance,Taxation and Finance +409136,Taxation and Finance,Taxation and Finance +405934,Taxation and Finance,Taxation and Finance +543412,Taxation and Finance,Taxation and Finance +525421,Taxation and Finance,Taxation and Finance +525418,Taxation and Finance,Taxation and Finance +525417,Taxation and Finance,Taxation and Finance +525415,Taxation and Finance,Taxation and Finance +525413,Taxation and Finance,Taxation and Finance +525406,Taxation and Finance,Taxation and Finance +525404,Taxation and Finance,Taxation and Finance +525401,Taxation and Finance,Taxation and Finance +517947,Taxation and Finance,Taxation and Finance +502404,Taxation and Finance,Taxation and Finance +499176,Taxation and Finance,Taxation and Finance +499164,Taxation and Finance,Taxation and Finance +499161,Taxation and Finance,Taxation and Finance +499116,Taxation and Finance,Taxation and Finance +499114,Taxation and Finance,Taxation and Finance +476094,Taxation and Finance,Taxation and Finance +473311,Taxation and Finance,Taxation and Finance +473306,Taxation and Finance,Taxation and Finance +470571,Taxation and Finance,Taxation and Finance +470550,Taxation and Finance,Taxation and Finance +450775,Taxation and Finance,Taxation and Finance +145851,Other,Overview of General Dynamics OTS-C's activities in Canada +93344,Other,Broadcasting Licence Fee Regulations +120909,Other,CRTC Regulatory Proceedings +93355,Other,CRTC Regulatory Proceedings +125078,Other,CRTC Regulatory Proceedings +109238,Other,CRTC Regulatory Proceedings +109237,Other,Broadcasting Licence Fee Regulations +93358,Other,CRTC Regulatory Proceedings +129007,Other,Boeing Programs in Canada +124882,Other,Boeing Programs in Canada +124880,Other,Boeing Programs in Canada +124879,Other,Boeing Programs in Canada +93422,Other,Boeing Programs in Canada +93419,Other,Boeing Programs in Canada +93417,Other,Boeing Programs in Canada +134974,Other,Centre of Excellence +98094,Other,Centre of Excellence +152206,Other,Centre of Excellence +148114,Other,Centre of Excellence +194759,Energy,Energy +194715,Energy,Energy +93434,Energy,Energy +149680,Energy,Energy +145201,Energy,Energy +105399,Energy,Energy +105397,Energy,Energy +173085,Energy,Energy +173084,Energy,Energy +165871,Energy,Energy +158992,Energy,Energy +230058,Energy,Energy +109381,Other,Credit Card Fees +93436,Other,Credit Card Fees +109638,Other,Credit Card Fees +109386,Other,Credit Card Fees +109024,Other,DND Programs +106056,Other,Telecommunications regulation and consumer issues +93573,Other,Pending Lawful Access legislation +93649,Other,Security Infrastructure Program +93670,Other,Broadband +142599,Other,Broadband +99835,Other,Broadband +93688,Other,Stimulus Package +93689,Other,Unmanned Aerial Vehicles (UAVs) +161681,Transportation,Transportation +245038,Transportation,Transportation +172686,Transportation,Transportation +425313,Health,Health +419370,Health,Health +93726,Health,Health +93719,Health,Health +166547,Health,Health +166546,Health,Health +166545,Health,Health +166544,Health,Health +165928,Health,Health +165888,Health,Health +165887,Health,Health +165885,Health,Health +321673,Health,Health +315539,Health,Health +302441,Health,Health +296271,Health,Health +289996,Health,Health +285950,Health,Health +285949,Health,Health +280591,Health,Health +276118,Health,Health +275598,Health,Health +275597,Health,Health +245693,Health,Health +234931,Health,Health +234929,Health,Health +234349,Health,Health +230357,Health,Health +230342,Health,Health +217168,Health,Health +217148,Health,Health +209017,Health,Health +209016,Health,Health +209015,Health,Health +209014,Health,Health +209013,Health,Health +209012,Health,Health +209011,Health,Health +209010,Health,Health +209009,Health,Health +209008,Health,Health +209007,Health,Health +205393,Health,Health +201449,Health,Health +201448,Health,Health +201447,Health,Health +199960,Health,Health +192265,Health,Health +192264,Health,Health +170346,Health,Health +170345,Health,Health +169035,Health,Health +403276,Health,Health +382128,Health,Health +381091,Health,Health +378909,Health,Health +378846,Health,Health +371039,Health,Health +366022,Health,Health +359642,Health,Health +359427,Health,Health +356041,Health,Health +350859,Health,Health +350857,Health,Health +335538,Health,Health +333203,Health,Health +333202,Health,Health +517268,Health,Health +517263,Health,Health +512684,Health,Health +489363,Health,Health +489360,Health,Health +479354,Health,Health +479353,Health,Health +467046,Health,Health +456756,Health,Health +455521,Health,Health +455501,Health,Health +451085,Health,Health +425313,Industry,Industry +419370,Industry,Industry +93726,Industry,Industry +201449,Industry,Industry +201448,Industry,Industry +201447,Industry,Industry +199960,Industry,Industry +192265,Industry,Industry +192264,Industry,Industry +185526,Industry,Industry +170346,Industry,Industry +170345,Industry,Industry +169035,Industry,Industry +166547,Industry,Industry +166546,Industry,Industry +166545,Industry,Industry +166544,Industry,Industry +165928,Industry,Industry +165888,Industry,Industry +165887,Industry,Industry +165885,Industry,Industry +130434,Industry,Industry +335538,Industry,Industry +333203,Industry,Industry +333202,Industry,Industry +321673,Industry,Industry +315539,Industry,Industry +302441,Industry,Industry +296271,Industry,Industry +285950,Industry,Industry +285949,Industry,Industry +280591,Industry,Industry +275598,Industry,Industry +275597,Industry,Industry +249811,Industry,Industry +245693,Industry,Industry +235130,Industry,Industry +234931,Industry,Industry +234929,Industry,Industry +234349,Industry,Industry +231969,Industry,Industry +230357,Industry,Industry +230342,Industry,Industry +217168,Industry,Industry +217148,Industry,Industry +217147,Industry,Industry +212522,Industry,Industry +209017,Industry,Industry +209016,Industry,Industry +209015,Industry,Industry +209014,Industry,Industry +209013,Industry,Industry +209012,Industry,Industry +209011,Industry,Industry +209010,Industry,Industry +209009,Industry,Industry +209008,Industry,Industry +209007,Industry,Industry +205394,Industry,Industry +205393,Industry,Industry +409180,Industry,Industry +409007,Industry,Industry +403276,Industry,Industry +389551,Industry,Industry +387670,Industry,Industry +382128,Industry,Industry +381091,Industry,Industry +378909,Industry,Industry +378846,Industry,Industry +371039,Industry,Industry +366022,Industry,Industry +356041,Industry,Industry +350859,Industry,Industry +350857,Industry,Industry +338313,Industry,Industry +338274,Industry,Industry +513975,Industry,Industry +503601,Industry,Industry +489363,Industry,Industry +489362,Industry,Industry +479354,Industry,Industry +479353,Industry,Industry +389551,Intellectual Property,Intellectual Property +387670,Intellectual Property,Intellectual Property +93726,Intellectual Property,Intellectual Property +130434,Intellectual Property,Intellectual Property +234931,Intellectual Property,Intellectual Property +234929,Intellectual Property,Intellectual Property +234349,Intellectual Property,Intellectual Property +231969,Intellectual Property,Intellectual Property +230357,Intellectual Property,Intellectual Property +230342,Intellectual Property,Intellectual Property +217168,Intellectual Property,Intellectual Property +217147,Intellectual Property,Intellectual Property +212522,Intellectual Property,Intellectual Property +209017,Intellectual Property,Intellectual Property +209016,Intellectual Property,Intellectual Property +209015,Intellectual Property,Intellectual Property +209014,Intellectual Property,Intellectual Property +209013,Intellectual Property,Intellectual Property +209012,Intellectual Property,Intellectual Property +209011,Intellectual Property,Intellectual Property +209010,Intellectual Property,Intellectual Property +209009,Intellectual Property,Intellectual Property +209008,Intellectual Property,Intellectual Property +209007,Intellectual Property,Intellectual Property +205394,Intellectual Property,Intellectual Property +205393,Intellectual Property,Intellectual Property +201448,Intellectual Property,Intellectual Property +201447,Intellectual Property,Intellectual Property +199960,Intellectual Property,Intellectual Property +192265,Intellectual Property,Intellectual Property +192264,Intellectual Property,Intellectual Property +170346,Intellectual Property,Intellectual Property +170345,Intellectual Property,Intellectual Property +169035,Intellectual Property,Intellectual Property +166547,Intellectual Property,Intellectual Property +166546,Intellectual Property,Intellectual Property +166545,Intellectual Property,Intellectual Property +166544,Intellectual Property,Intellectual Property +165928,Intellectual Property,Intellectual Property +165888,Intellectual Property,Intellectual Property +165887,Intellectual Property,Intellectual Property +165885,Intellectual Property,Intellectual Property +378909,Intellectual Property,Intellectual Property +366022,Intellectual Property,Intellectual Property +362377,Intellectual Property,Intellectual Property +350859,Intellectual Property,Intellectual Property +350857,Intellectual Property,Intellectual Property +338274,Intellectual Property,Intellectual Property +335538,Intellectual Property,Intellectual Property +333203,Intellectual Property,Intellectual Property +333202,Intellectual Property,Intellectual Property +321673,Intellectual Property,Intellectual Property +315539,Intellectual Property,Intellectual Property +302441,Intellectual Property,Intellectual Property +296271,Intellectual Property,Intellectual Property +289996,Intellectual Property,Intellectual Property +285950,Intellectual Property,Intellectual Property +285949,Intellectual Property,Intellectual Property +280591,Intellectual Property,Intellectual Property +275598,Intellectual Property,Intellectual Property +275597,Intellectual Property,Intellectual Property +249811,Intellectual Property,Intellectual Property +245693,Intellectual Property,Intellectual Property +235130,Intellectual Property,Intellectual Property +489363,Intellectual Property,Intellectual Property +419370,Intellectual Property,Intellectual Property +409180,Intellectual Property,Intellectual Property +409018,Intellectual Property,Intellectual Property +150371,Industry,Industry +150368,Industry,Industry +137534,Other,Credit card issue +129132,Other,Credit card issue +124600,Other,Credit card issue +114170,Other,Credit card issue +114166,Other,Credit card issue +109270,Other,Credit card issue +109267,Other,Credit card issue +106115,Other,Credit card issue +93741,Other,Credit card issue +93735,Other,Credit card issue +141477,Other,Credit card issue +141475,Other,Credit card issue +137554,Other,Credit card issue +93754,Other,Stimulus Package +93779,Other,Corporate Social Responsibility (CSR) +132630,Other,Corporate Social Responsibility (CSR) +116978,Other,Corporate Social Responsibility (CSR) +120977,Agriculture,Agriculture +114098,Agriculture,Agriculture +94555,Agriculture,Agriculture +159396,Agriculture,Agriculture +159393,Agriculture,Agriculture +159390,Agriculture,Agriculture +159382,Agriculture,Agriculture +149396,Agriculture,Agriculture +148131,Agriculture,Agriculture +129545,Other,Energy Policy +129543,Other,Energy Policy +101367,Other,Energy Policy +97825,Other,Energy Policy +97824,Other,Energy Policy +97823,Other,Energy Policy +97819,Other,Energy Policy +93829,Other,Energy Policy +93824,Other,Energy Policy +93815,Other,Energy Policy +125599,Other,Energy Policy +125598,Other,Energy Policy +125597,Other,Energy Policy +125596,Other,Energy Policy +125595,Other,Energy Policy +117711,Other,Energy Policy +117708,Other,Energy Policy +117701,Other,Energy Policy +117698,Other,Energy Policy +114014,Other,Energy Policy +114011,Other,Energy Policy +114002,Other,Energy Policy +113999,Other,Energy Policy +113994,Other,Energy Policy +113991,Other,Energy Policy +113986,Other,Energy Policy +113981,Other,Energy Policy +109819,Other,Energy Policy +109818,Other,Energy Policy +109817,Other,Energy Policy +109815,Other,Energy Policy +106496,Other,Energy Policy +106495,Other,Energy Policy +152307,Other,Energy Policy +152304,Other,Energy Policy +151221,Other,Energy Policy +151220,Other,Energy Policy +151219,Other,Energy Policy +151218,Other,Energy Policy +145872,Other,Energy Policy +145870,Other,Energy Policy +145868,Other,Energy Policy +143197,Other,Energy Policy +139678,Other,Energy Policy +139676,Other,Energy Policy +139675,Other,Energy Policy +139674,Other,Energy Policy +135988,Other,Energy Policy +135987,Other,Energy Policy +93825,Other,Federal Budget 2009 +93817,Other,Federal Budget 2009 +93837,Other,Federal Budget 2009 +93835,Other,Federal Budget 2009 +93833,Other,Federal Budget 2009 +93825,Other,Infrastructure spending +93817,Other,Infrastructure spending +93837,Other,Infrastructure spending +93835,Other,Infrastructure spending +93833,Other,Infrastructure spending +96517,Other,Financial Support for Auto Industry. Assist in getting financial support to help the automotive sector with their Canadian operations. +93852,Other,Financial Support for Auto Industry. Assist in getting financial support to help the automotive sector with their Canadian operations. +104675,Other,Financial Support for Auto Industry. Assist in getting financial support to help the automotive sector with their Canadian operations. +104674,Other,Financial Support for Auto Industry. Assist in getting financial support to help the automotive sector with their Canadian operations. +97822,Other,Financial Support for Auto Industry. Assist in getting financial support to help the automotive sector with their Canadian operations. +97820,Other,Financial Support for Auto Industry. Assist in getting financial support to help the automotive sector with their Canadian operations. +138397,Sports,Sports +135795,Sports,Sports +117567,Sports,Sports +109204,Sports,Sports +109203,Sports,Sports +109198,Sports,Sports +109196,Sports,Sports +104216,Sports,Sports +100778,Sports,Sports +97095,Sports,Sports +135700,Environment,Environment +135699,Environment,Environment +125159,Other,Institutional Costs of Research +93928,Other,Potential Communication Opportunity +93938,Other,Potential Communication Opportunity +93935,Other,Potential Communication Opportunity +93939,Other,Nuclear Power in Ontario +159988,Other,Oil sands development +159980,Other,Oil sands development +142654,Other,Oil sands development +132705,Other,Oil sands development +132704,Other,Oil sands development +132703,Other,Oil sands development +94000,Other,Oil sands development +93997,Other,Oil sands development +159991,Other,Oil sands development +194766,Consumer Issues,Consumer Issues +344055,Consumer Issues,Consumer Issues +94034,Consumer Issues,Consumer Issues +233224,Consumer Issues,Consumer Issues +233223,Consumer Issues,Consumer Issues +194778,Consumer Issues,Consumer Issues +194769,Consumer Issues,Consumer Issues +405802,Consumer Issues,Consumer Issues +94041,Consumer Issues,Consumer Issues +94034,Consumer Issues,Consumer Issues +194779,Consumer Issues,Consumer Issues +220108,Taxation and Finance,Taxation and Finance +220107,Taxation and Finance,Taxation and Finance +110014,Taxation and Finance,Taxation and Finance +94041,Taxation and Finance,Taxation and Finance +168974,Taxation and Finance,Taxation and Finance +168973,Taxation and Finance,Taxation and Finance +233225,Taxation and Finance,Taxation and Finance +230689,Taxation and Finance,Taxation and Finance +299691,Intellectual Property,Intellectual Property +456060,Intellectual Property,Intellectual Property +94045,Intellectual Property,Intellectual Property +94044,Intellectual Property,Intellectual Property +115056,Intellectual Property,Intellectual Property +105216,Intellectual Property,Intellectual Property +290634,Consumer Issues,Consumer Issues +290633,Consumer Issues,Consumer Issues +144856,Consumer Issues,Consumer Issues +133440,Consumer Issues,Consumer Issues +106414,Consumer Issues,Consumer Issues +175648,Consumer Issues,Consumer Issues +175647,Consumer Issues,Consumer Issues +175646,Consumer Issues,Consumer Issues +175644,Consumer Issues,Consumer Issues +175643,Consumer Issues,Consumer Issues +175641,Consumer Issues,Consumer Issues +175638,Consumer Issues,Consumer Issues +175637,Consumer Issues,Consumer Issues +166112,Consumer Issues,Consumer Issues +160024,Consumer Issues,Consumer Issues +160023,Consumer Issues,Consumer Issues +157411,Consumer Issues,Consumer Issues +157410,Consumer Issues,Consumer Issues +157409,Consumer Issues,Consumer Issues +144861,Consumer Issues,Consumer Issues +230702,Consumer Issues,Consumer Issues +230701,Consumer Issues,Consumer Issues +228269,Consumer Issues,Consumer Issues +227315,Consumer Issues,Consumer Issues +227313,Consumer Issues,Consumer Issues +223202,Consumer Issues,Consumer Issues +223198,Consumer Issues,Consumer Issues +223193,Consumer Issues,Consumer Issues +219567,Consumer Issues,Consumer Issues +212510,Consumer Issues,Consumer Issues +212509,Consumer Issues,Consumer Issues +203027,Consumer Issues,Consumer Issues +200034,Consumer Issues,Consumer Issues +194551,Consumer Issues,Consumer Issues +194537,Consumer Issues,Consumer Issues +194535,Consumer Issues,Consumer Issues +194533,Consumer Issues,Consumer Issues +194530,Consumer Issues,Consumer Issues +194527,Consumer Issues,Consumer Issues +194525,Consumer Issues,Consumer Issues +194504,Consumer Issues,Consumer Issues +194465,Consumer Issues,Consumer Issues +190854,Consumer Issues,Consumer Issues +189614,Consumer Issues,Consumer Issues +189613,Consumer Issues,Consumer Issues +189611,Consumer Issues,Consumer Issues +189609,Consumer Issues,Consumer Issues +189587,Consumer Issues,Consumer Issues +185566,Consumer Issues,Consumer Issues +185565,Consumer Issues,Consumer Issues +185564,Consumer Issues,Consumer Issues +185563,Consumer Issues,Consumer Issues +185562,Consumer Issues,Consumer Issues +185561,Consumer Issues,Consumer Issues +185560,Consumer Issues,Consumer Issues +185559,Consumer Issues,Consumer Issues +185558,Consumer Issues,Consumer Issues +290632,Consumer Issues,Consumer Issues +290631,Consumer Issues,Consumer Issues +290630,Consumer Issues,Consumer Issues +290616,Consumer Issues,Consumer Issues +290615,Consumer Issues,Consumer Issues +290614,Consumer Issues,Consumer Issues +290613,Consumer Issues,Consumer Issues +290612,Consumer Issues,Consumer Issues +290611,Consumer Issues,Consumer Issues +290595,Consumer Issues,Consumer Issues +290594,Consumer Issues,Consumer Issues +290593,Consumer Issues,Consumer Issues +290591,Consumer Issues,Consumer Issues +290590,Consumer Issues,Consumer Issues +290589,Consumer Issues,Consumer Issues +290191,Consumer Issues,Consumer Issues +290190,Consumer Issues,Consumer Issues +290189,Consumer Issues,Consumer Issues +290170,Consumer Issues,Consumer Issues +290169,Consumer Issues,Consumer Issues +290159,Consumer Issues,Consumer Issues +290158,Consumer Issues,Consumer Issues +290157,Consumer Issues,Consumer Issues +290156,Consumer Issues,Consumer Issues +290155,Consumer Issues,Consumer Issues +290154,Consumer Issues,Consumer Issues +290153,Consumer Issues,Consumer Issues +290152,Consumer Issues,Consumer Issues +290151,Consumer Issues,Consumer Issues +290149,Consumer Issues,Consumer Issues +289871,Consumer Issues,Consumer Issues +289870,Consumer Issues,Consumer Issues +289869,Consumer Issues,Consumer Issues +289852,Consumer Issues,Consumer Issues +289851,Consumer Issues,Consumer Issues +289850,Consumer Issues,Consumer Issues +289849,Consumer Issues,Consumer Issues +289834,Consumer Issues,Consumer Issues +289833,Consumer Issues,Consumer Issues +289832,Consumer Issues,Consumer Issues +289830,Consumer Issues,Consumer Issues +289829,Consumer Issues,Consumer Issues +286191,Consumer Issues,Consumer Issues +286189,Consumer Issues,Consumer Issues +286181,Consumer Issues,Consumer Issues +286180,Consumer Issues,Consumer Issues +286179,Consumer Issues,Consumer Issues +286177,Consumer Issues,Consumer Issues +286173,Consumer Issues,Consumer Issues +286172,Consumer Issues,Consumer Issues +286171,Consumer Issues,Consumer Issues +286170,Consumer Issues,Consumer Issues +286169,Consumer Issues,Consumer Issues +286160,Consumer Issues,Consumer Issues +286159,Consumer Issues,Consumer Issues +286158,Consumer Issues,Consumer Issues +285910,Consumer Issues,Consumer Issues +285909,Consumer Issues,Consumer Issues +277781,Consumer Issues,Consumer Issues +277178,Consumer Issues,Consumer Issues +276692,Consumer Issues,Consumer Issues +276690,Consumer Issues,Consumer Issues +276682,Consumer Issues,Consumer Issues +276678,Consumer Issues,Consumer Issues +276677,Consumer Issues,Consumer Issues +276675,Consumer Issues,Consumer Issues +276673,Consumer Issues,Consumer Issues +276671,Consumer Issues,Consumer Issues +259670,Consumer Issues,Consumer Issues +251055,Consumer Issues,Consumer Issues +251054,Consumer Issues,Consumer Issues +251053,Consumer Issues,Consumer Issues +245650,Consumer Issues,Consumer Issues +241669,Consumer Issues,Consumer Issues +241296,Consumer Issues,Consumer Issues +241290,Consumer Issues,Consumer Issues +241288,Consumer Issues,Consumer Issues +241278,Consumer Issues,Consumer Issues +241276,Consumer Issues,Consumer Issues +241275,Consumer Issues,Consumer Issues +241274,Consumer Issues,Consumer Issues +241272,Consumer Issues,Consumer Issues +241270,Consumer Issues,Consumer Issues +241267,Consumer Issues,Consumer Issues +241266,Consumer Issues,Consumer Issues +237220,Consumer Issues,Consumer Issues +237218,Consumer Issues,Consumer Issues +237217,Consumer Issues,Consumer Issues +449876,Consumer Issues,Consumer Issues +436082,Consumer Issues,Consumer Issues +417497,Consumer Issues,Consumer Issues +400265,Consumer Issues,Consumer Issues +383536,Consumer Issues,Consumer Issues +371907,Consumer Issues,Consumer Issues +354053,Consumer Issues,Consumer Issues +349328,Consumer Issues,Consumer Issues +349327,Consumer Issues,Consumer Issues +349324,Consumer Issues,Consumer Issues +349323,Consumer Issues,Consumer Issues +347423,Consumer Issues,Consumer Issues +347417,Consumer Issues,Consumer Issues +341592,Consumer Issues,Consumer Issues +341578,Consumer Issues,Consumer Issues +335389,Consumer Issues,Consumer Issues +335347,Consumer Issues,Consumer Issues +335339,Consumer Issues,Consumer Issues +335333,Consumer Issues,Consumer Issues +330110,Consumer Issues,Consumer Issues +330104,Consumer Issues,Consumer Issues +324893,Consumer Issues,Consumer Issues +317726,Consumer Issues,Consumer Issues +317725,Consumer Issues,Consumer Issues +317724,Consumer Issues,Consumer Issues +317723,Consumer Issues,Consumer Issues +317722,Consumer Issues,Consumer Issues +317721,Consumer Issues,Consumer Issues +317720,Consumer Issues,Consumer Issues +317719,Consumer Issues,Consumer Issues +317718,Consumer Issues,Consumer Issues +317717,Consumer Issues,Consumer Issues +317716,Consumer Issues,Consumer Issues +316007,Consumer Issues,Consumer Issues +316005,Consumer Issues,Consumer Issues +316003,Consumer Issues,Consumer Issues +315999,Consumer Issues,Consumer Issues +315998,Consumer Issues,Consumer Issues +313019,Consumer Issues,Consumer Issues +313018,Consumer Issues,Consumer Issues +313017,Consumer Issues,Consumer Issues +313016,Consumer Issues,Consumer Issues +313015,Consumer Issues,Consumer Issues +310459,Consumer Issues,Consumer Issues +310458,Consumer Issues,Consumer Issues +310457,Consumer Issues,Consumer Issues +303512,Consumer Issues,Consumer Issues +302952,Consumer Issues,Consumer Issues +302951,Consumer Issues,Consumer Issues +302950,Consumer Issues,Consumer Issues +302949,Consumer Issues,Consumer Issues +302929,Consumer Issues,Consumer Issues +302852,Consumer Issues,Consumer Issues +295988,Consumer Issues,Consumer Issues +295986,Consumer Issues,Consumer Issues +295985,Consumer Issues,Consumer Issues +295984,Consumer Issues,Consumer Issues +295983,Consumer Issues,Consumer Issues +295982,Consumer Issues,Consumer Issues +295981,Consumer Issues,Consumer Issues +295978,Consumer Issues,Consumer Issues +295976,Consumer Issues,Consumer Issues +295972,Consumer Issues,Consumer Issues +295971,Consumer Issues,Consumer Issues +295970,Consumer Issues,Consumer Issues +295969,Consumer Issues,Consumer Issues +292109,Consumer Issues,Consumer Issues +291949,Consumer Issues,Consumer Issues +291557,Consumer Issues,Consumer Issues +291556,Consumer Issues,Consumer Issues +291555,Consumer Issues,Consumer Issues +291552,Consumer Issues,Consumer Issues +291551,Consumer Issues,Consumer Issues +291549,Consumer Issues,Consumer Issues +290647,Consumer Issues,Consumer Issues +290646,Consumer Issues,Consumer Issues +290645,Consumer Issues,Consumer Issues +290644,Consumer Issues,Consumer Issues +290643,Consumer Issues,Consumer Issues +290640,Consumer Issues,Consumer Issues +290639,Consumer Issues,Consumer Issues +290638,Consumer Issues,Consumer Issues +290637,Consumer Issues,Consumer Issues +290636,Consumer Issues,Consumer Issues +316003,Industry,Industry +315999,Industry,Industry +144861,Industry,Industry +144860,Industry,Industry +109839,Industry,Industry +175648,Industry,Industry +175646,Industry,Industry +175645,Industry,Industry +175644,Industry,Industry +175643,Industry,Industry +175641,Industry,Industry +175638,Industry,Industry +172006,Industry,Industry +166111,Industry,Industry +164190,Industry,Industry +160027,Industry,Industry +160024,Industry,Industry +160023,Industry,Industry +157411,Industry,Industry +157410,Industry,Industry +157409,Industry,Industry +276660,Industry,Industry +273412,Industry,Industry +273410,Industry,Industry +273409,Industry,Industry +273008,Industry,Industry +264273,Industry,Industry +251055,Industry,Industry +251054,Industry,Industry +230701,Industry,Industry +227313,Industry,Industry +219567,Industry,Industry +190855,Industry,Industry +185566,Industry,Industry +185565,Industry,Industry +185564,Industry,Industry +185563,Industry,Industry +185559,Industry,Industry +180224,Industry,Industry +180204,Industry,Industry +315998,Industry,Industry +313019,Industry,Industry +313018,Industry,Industry +313017,Industry,Industry +313016,Industry,Industry +313015,Industry,Industry +310458,Industry,Industry +310457,Industry,Industry +303512,Industry,Industry +302952,Industry,Industry +302951,Industry,Industry +302950,Industry,Industry +302949,Industry,Industry +302929,Industry,Industry +302852,Industry,Industry +295988,Industry,Industry +295986,Industry,Industry +295985,Industry,Industry +295984,Industry,Industry +295983,Industry,Industry +295982,Industry,Industry +295981,Industry,Industry +295978,Industry,Industry +295976,Industry,Industry +295972,Industry,Industry +295971,Industry,Industry +295970,Industry,Industry +295969,Industry,Industry +292109,Industry,Industry +291949,Industry,Industry +291557,Industry,Industry +291556,Industry,Industry +291555,Industry,Industry +291552,Industry,Industry +291551,Industry,Industry +291549,Industry,Industry +290647,Industry,Industry +290646,Industry,Industry +290645,Industry,Industry +290644,Industry,Industry +290643,Industry,Industry +290640,Industry,Industry +290639,Industry,Industry +290638,Industry,Industry +290637,Industry,Industry +290636,Industry,Industry +290635,Industry,Industry +290634,Industry,Industry +290633,Industry,Industry +290632,Industry,Industry +290631,Industry,Industry +290630,Industry,Industry +290616,Industry,Industry +290615,Industry,Industry +290614,Industry,Industry +290613,Industry,Industry +290612,Industry,Industry +290611,Industry,Industry +290595,Industry,Industry +290594,Industry,Industry +290593,Industry,Industry +290591,Industry,Industry +290590,Industry,Industry +290589,Industry,Industry +290191,Industry,Industry +290190,Industry,Industry +290189,Industry,Industry +290170,Industry,Industry +290169,Industry,Industry +290159,Industry,Industry +290158,Industry,Industry +290157,Industry,Industry +290156,Industry,Industry +290155,Industry,Industry +290154,Industry,Industry +290153,Industry,Industry +290152,Industry,Industry +290151,Industry,Industry +290149,Industry,Industry +289871,Industry,Industry +289870,Industry,Industry +289869,Industry,Industry +289852,Industry,Industry +289851,Industry,Industry +289850,Industry,Industry +289849,Industry,Industry +289834,Industry,Industry +289833,Industry,Industry +289832,Industry,Industry +289830,Industry,Industry +289829,Industry,Industry +286191,Industry,Industry +286189,Industry,Industry +286181,Industry,Industry +286180,Industry,Industry +286179,Industry,Industry +286177,Industry,Industry +286173,Industry,Industry +286172,Industry,Industry +286171,Industry,Industry +286170,Industry,Industry +286169,Industry,Industry +286160,Industry,Industry +286159,Industry,Industry +286158,Industry,Industry +285910,Industry,Industry +285909,Industry,Industry +283296,Industry,Industry +283294,Industry,Industry +283293,Industry,Industry +283291,Industry,Industry +283290,Industry,Industry +283289,Industry,Industry +277781,Industry,Industry +277178,Industry,Industry +276692,Industry,Industry +276690,Industry,Industry +276682,Industry,Industry +276678,Industry,Industry +276677,Industry,Industry +276675,Industry,Industry +276673,Industry,Industry +276671,Industry,Industry +276666,Industry,Industry +276664,Industry,Industry +276661,Industry,Industry +436083,Industry,Industry +436082,Industry,Industry +436080,Industry,Industry +433162,Industry,Industry +417549,Industry,Industry +409409,Industry,Industry +408397,Industry,Industry +405049,Industry,Industry +395243,Industry,Industry +395036,Industry,Industry +393337,Industry,Industry +391031,Industry,Industry +386752,Industry,Industry +386573,Industry,Industry +386572,Industry,Industry +386571,Industry,Industry +379341,Industry,Industry +371960,Industry,Industry +371958,Industry,Industry +371930,Industry,Industry +371898,Industry,Industry +371894,Industry,Industry +371892,Industry,Industry +371890,Industry,Industry +371886,Industry,Industry +371811,Industry,Industry +366689,Industry,Industry +365327,Industry,Industry +365325,Industry,Industry +352599,Industry,Industry +349328,Industry,Industry +349326,Industry,Industry +349324,Industry,Industry +349323,Industry,Industry +347423,Industry,Industry +347422,Industry,Industry +347421,Industry,Industry +347420,Industry,Industry +347419,Industry,Industry +347417,Industry,Industry +342266,Industry,Industry +342265,Industry,Industry +341597,Industry,Industry +341591,Industry,Industry +341580,Industry,Industry +341578,Industry,Industry +341574,Industry,Industry +341573,Industry,Industry +341566,Industry,Industry +341563,Industry,Industry +337258,Industry,Industry +337256,Industry,Industry +337254,Industry,Industry +337251,Industry,Industry +337250,Industry,Industry +337249,Industry,Industry +335401,Industry,Industry +335398,Industry,Industry +335392,Industry,Industry +335389,Industry,Industry +335342,Industry,Industry +335330,Industry,Industry +335329,Industry,Industry +335326,Industry,Industry +335325,Industry,Industry +335324,Industry,Industry +335323,Industry,Industry +333802,Industry,Industry +333801,Industry,Industry +333800,Industry,Industry +333799,Industry,Industry +333798,Industry,Industry +325169,Industry,Industry +317726,Industry,Industry +317725,Industry,Industry +317724,Industry,Industry +317723,Industry,Industry +317722,Industry,Industry +317721,Industry,Industry +317720,Industry,Industry +317719,Industry,Industry +317718,Industry,Industry +317717,Industry,Industry +317716,Industry,Industry +316007,Industry,Industry +402987,Infrastructure,Infrastructure +402985,Infrastructure,Infrastructure +109839,Infrastructure,Infrastructure +109837,Infrastructure,Infrastructure +109836,Infrastructure,Infrastructure +398185,Infrastructure,Infrastructure +398170,Infrastructure,Infrastructure +398167,Infrastructure,Infrastructure +395294,Infrastructure,Infrastructure +393341,Infrastructure,Infrastructure +393337,Infrastructure,Infrastructure +391916,Infrastructure,Infrastructure +391915,Infrastructure,Infrastructure +391914,Infrastructure,Infrastructure +391913,Infrastructure,Infrastructure +391912,Infrastructure,Infrastructure +390930,Infrastructure,Infrastructure +389804,Infrastructure,Infrastructure +388810,Infrastructure,Infrastructure +388788,Infrastructure,Infrastructure +388717,Infrastructure,Infrastructure +386573,Infrastructure,Infrastructure +386572,Infrastructure,Infrastructure +386571,Infrastructure,Infrastructure +385933,Infrastructure,Infrastructure +383533,Infrastructure,Infrastructure +350404,Infrastructure,Infrastructure +350399,Infrastructure,Infrastructure +350396,Infrastructure,Infrastructure +350395,Infrastructure,Infrastructure +350390,Infrastructure,Infrastructure +350389,Infrastructure,Infrastructure +350388,Infrastructure,Infrastructure +337306,Infrastructure,Infrastructure +335344,Infrastructure,Infrastructure +310459,Infrastructure,Infrastructure +479938,Infrastructure,Infrastructure +467695,Infrastructure,Infrastructure +460954,Infrastructure,Infrastructure +460953,Infrastructure,Infrastructure +455058,Infrastructure,Infrastructure +448313,Infrastructure,Infrastructure +436083,Infrastructure,Infrastructure +408272,Infrastructure,Infrastructure +406689,Infrastructure,Infrastructure +406010,Infrastructure,Infrastructure +405955,Infrastructure,Infrastructure +404576,Infrastructure,Infrastructure +404154,Infrastructure,Infrastructure +404152,Infrastructure,Infrastructure +403155,Infrastructure,Infrastructure +349324,Labour,Labour +511515,Labour,Labour +160024,Labour,Labour +160023,Labour,Labour +164192,Labour,Labour +400266,Taxation and Finance,Taxation and Finance +341596,Taxation and Finance,Taxation and Finance +150558,Taxation and Finance,Taxation and Finance +109836,Taxation and Finance,Taxation and Finance +227316,Taxation and Finance,Taxation and Finance +207632,Taxation and Finance,Taxation and Finance +185566,Taxation and Finance,Taxation and Finance +185565,Taxation and Finance,Taxation and Finance +185564,Taxation and Finance,Taxation and Finance +185563,Taxation and Finance,Taxation and Finance +185559,Taxation and Finance,Taxation and Finance +175648,Taxation and Finance,Taxation and Finance +175647,Taxation and Finance,Taxation and Finance +175637,Taxation and Finance,Taxation and Finance +337306,Taxation and Finance,Taxation and Finance +325169,Taxation and Finance,Taxation and Finance +264274,Taxation and Finance,Taxation and Finance +241286,Taxation and Finance,Taxation and Finance +447688,Taxation and Finance,Taxation and Finance +443365,Taxation and Finance,Taxation and Finance +437790,Taxation and Finance,Taxation and Finance +406694,Taxation and Finance,Taxation and Finance +400647,Taxation and Finance,Taxation and Finance +400644,Taxation and Finance,Taxation and Finance +400635,Taxation and Finance,Taxation and Finance +94156,Other,Canada-U.S. Trade Policy +148356,International Trade,International Trade +128616,Transportation,Transportation +157243,Transportation,Transportation +97292,Other,Corporate Social Responsibility +176726,Consumer Issues,Consumer Issues +152978,Consumer Issues,Consumer Issues +131822,Environment,Environment +176726,Environment,Environment +152978,Environment,Environment +152977,Health,Health +131822,Health,Health +152977,Industry,Industry +176726,Industry,Industry +131822,Industry,Industry +152977,Other,Manufacturing +94200,Other,Budget 2009 +94199,Other,Green Energy Fund +123494,Other,Green Energy Fund +94200,Other,Alignment of US and Canadian Cap and Trade programs +94199,Other,Alignment of US and Canadian Cap and Trade programs +115075,Defence,Defence +115074,Defence,Defence +94236,Other,Canada-EU Agreement +94242,Other,Energy Policy +97917,Other,nuclear energy +94314,Other,nuclear energy +121281,Other,nuclear energy +109807,Other,nuclear energy +101353,Other,nuclear energy +129675,Other,infrastructure program +150436,Other,Research and innovation policy +150435,Other,Research and innovation policy +94316,Other,Research and innovation policy +129676,Other,Research and innovation policy +129675,Other,Research and innovation policy +129674,Other,Research and innovation policy +125622,Other,Research and innovation policy +125621,Other,Research and innovation policy +125620,Other,Research and innovation policy +125619,Other,Research and innovation policy +125615,Other,Research and innovation policy +125614,Other,Research and innovation policy +96594,Other,Carbon Algae Recycling System (CARS) +94475,Other,Carbon Algae Recycling System (CARS) +107315,Other,Carbon Algae Recycling System (CARS) +107314,Other,Carbon Algae Recycling System (CARS) +94934,Energy,Energy +162360,Other,Research & Development +100824,Other,Research & Development +112839,Education,Education +112836,Education,Education +95114,Education,Education +165573,Education,Education +148119,Education,Education +112845,Education,Education +112844,Education,Education +112841,Education,Education +103315,Health,Health +103314,Health,Health +100943,Health,Health +100942,Health,Health +100940,Health,Health +95114,Health,Health +148144,Health,Health +148119,Health,Health +146184,Health,Health +112846,Health,Health +108356,Health,Health +103319,Health,Health +103318,Health,Health +103317,Health,Health +100784,Infrastructure,Infrastructure +100783,Infrastructure,Infrastructure +100782,Infrastructure,Infrastructure +94638,Other,Disability Issues +94638,Employment and Training,Employment and Training +94638,Other,Income Security +94638,Taxation and Finance,Taxation and Finance +114005,Environment,Environnement +114005,Industry,Industrie +114005,Transportation,Transports +140514,Transportation,Transports +321050,Education,Education +442187,Education,Education +207351,Education,Education +175460,Education,Education +173265,Education,Education +505029,Health,Health +124853,Other,Aeronautics Act +100177,Other,National Airports Policy +109515,Other,Natural Resources +463852,Defence,Defence +463851,Defence,Defence +94894,Defence,Defence +94895,Defence,Defence +350127,Defence,Defence +489226,Regional Development,Regional Development +489044,Regional Development,Regional Development +393500,Transportation,Transportation +350127,Transportation,Transportation +157729,Transportation,Transportation +157728,Transportation,Transportation +156043,Transportation,Transportation +398043,Transportation,Transportation +397464,Transportation,Transportation +120634,Employment and Training,Employment and Training +120474,Employment and Training,Employment and Training +101035,Employment and Training,Employment and Training +96054,Employment and Training,Employment and Training +120636,Employment and Training,Employment and Training +120634,Mining,Mining +120474,Mining,Mining +96054,Mining,Mining +101035,Mining,Mining +120636,Mining,Mining +96054,Regional Development,Regional Development +137715,Regional Development,Regional Development +120474,Transportation,Transportation +101035,Transportation,Transportation +120636,Transportation,Transportation +120635,Transportation,Transportation +212827,Government Procurement,Government Procurement +197207,Government Procurement,Government Procurement +162829,Government Procurement,Government Procurement +108334,Other,International Trade +124853,Other,Security +105754,Other,Security +103914,Other,Security +100180,Other,Security +100177,Other,Security +142335,Other,Security +135196,Other,Security +135194,Other,Security +311332,Agriculture,Agriculture +311331,Agriculture,Agriculture +108672,Agriculture,Agriculture +108671,Agriculture,Agriculture +108670,Agriculture,Agriculture +108669,Agriculture,Agriculture +108668,Agriculture,Agriculture +108667,Agriculture,Agriculture +108664,Agriculture,Agriculture +162289,Agriculture,Agriculture +158730,Agriculture,Agriculture +158729,Agriculture,Agriculture +158728,Agriculture,Agriculture +158710,Agriculture,Agriculture +158709,Agriculture,Agriculture +158708,Agriculture,Agriculture +147781,Agriculture,Agriculture +147780,Agriculture,Agriculture +147779,Agriculture,Agriculture +147777,Agriculture,Agriculture +147776,Agriculture,Agriculture +147775,Agriculture,Agriculture +147774,Agriculture,Agriculture +147773,Agriculture,Agriculture +147770,Agriculture,Agriculture +147769,Agriculture,Agriculture +147768,Agriculture,Agriculture +136696,Agriculture,Agriculture +136695,Agriculture,Agriculture +136694,Agriculture,Agriculture +121967,Agriculture,Agriculture +121966,Agriculture,Agriculture +121965,Agriculture,Agriculture +121964,Agriculture,Agriculture +121963,Agriculture,Agriculture +121962,Agriculture,Agriculture +293952,Agriculture,Agriculture +293950,Agriculture,Agriculture +285678,Agriculture,Agriculture +285677,Agriculture,Agriculture +285676,Agriculture,Agriculture +285675,Agriculture,Agriculture +285674,Agriculture,Agriculture +285672,Agriculture,Agriculture +285670,Agriculture,Agriculture +285669,Agriculture,Agriculture +276230,Agriculture,Agriculture +275111,Agriculture,Agriculture +275110,Agriculture,Agriculture +275109,Agriculture,Agriculture +266492,Agriculture,Agriculture +266490,Agriculture,Agriculture +260658,Agriculture,Agriculture +260657,Agriculture,Agriculture +260656,Agriculture,Agriculture +260655,Agriculture,Agriculture +260654,Agriculture,Agriculture +260653,Agriculture,Agriculture +260652,Agriculture,Agriculture +260650,Agriculture,Agriculture +260649,Agriculture,Agriculture +228293,Agriculture,Agriculture +228292,Agriculture,Agriculture +228289,Agriculture,Agriculture +226978,Agriculture,Agriculture +224294,Agriculture,Agriculture +224291,Agriculture,Agriculture +224290,Agriculture,Agriculture +224289,Agriculture,Agriculture +224287,Agriculture,Agriculture +219529,Agriculture,Agriculture +219527,Agriculture,Agriculture +219507,Agriculture,Agriculture +219489,Agriculture,Agriculture +219488,Agriculture,Agriculture +219487,Agriculture,Agriculture +205992,Agriculture,Agriculture +205990,Agriculture,Agriculture +192304,Agriculture,Agriculture +192288,Agriculture,Agriculture +192287,Agriculture,Agriculture +192286,Agriculture,Agriculture +192285,Agriculture,Agriculture +192284,Agriculture,Agriculture +189445,Agriculture,Agriculture +189406,Agriculture,Agriculture +189404,Agriculture,Agriculture +171484,Agriculture,Agriculture +165058,Agriculture,Agriculture +165057,Agriculture,Agriculture +162464,Agriculture,Agriculture +162303,Agriculture,Agriculture +162299,Agriculture,Agriculture +162297,Agriculture,Agriculture +162293,Agriculture,Agriculture +162290,Agriculture,Agriculture +192285,Internal Trade,Internal Trade +192284,Internal Trade,Internal Trade +121967,Internal Trade,Internal Trade +121966,Internal Trade,Internal Trade +121965,Internal Trade,Internal Trade +121964,Internal Trade,Internal Trade +121963,Internal Trade,Internal Trade +121962,Internal Trade,Internal Trade +136696,Internal Trade,Internal Trade +136695,Internal Trade,Internal Trade +136694,Internal Trade,Internal Trade +205992,Internal Trade,Internal Trade +192304,Internal Trade,Internal Trade +192288,Internal Trade,Internal Trade +192287,Internal Trade,Internal Trade +169283,Health,Health +169282,Health,Health +333702,Health,Health +324431,Health,Health +324138,Health,Health +323849,Health,Health +276902,Health,Health +276901,Health,Health +132536,Industry,Industry +132535,Industry,Industry +143254,Industry,Industry +100004,Mining,Mining +100003,Mining,Mining +143254,Mining,Mining +132537,Mining,Mining +132536,Mining,Mining +132535,Mining,Mining +100007,Mining,Mining +132536,Transportation,Transportation +132535,Transportation,Transportation +100005,Transportation,Transportation +143254,Transportation,Transportation +139234,Transportation,Transportation +98205,Other,Health - Chronic disease prevention and management - health and aging +114224,Immigration,Immigration +106368,Immigration,Immigration +100916,Immigration,Immigration +100914,Immigration,Immigration +97443,Immigration,Immigration +142997,Immigration,Immigration +101494,Government Procurement,Government Procurement +95234,Other,Update on Talisman activities worldwide +95214,Other,Update on Talisman activities worldwide +120039,Other,Update on Talisman activities worldwide +95294,Other,"Safety, port policy and branch lines" +96378,Energy,Energy +96377,Energy,Energy +102714,Energy,Energy +96377,Environment,Environment +102714,Environment,Environment +100322,Environment,Environment +96377,Industry,Industry +124338,Mining,Mining +124338,Regional Development,Regional Development +124337,Regional Development,Regional Development +152102,Other,Processed Product Regulations +125040,Other,Processed Product Regulations +109771,Other,Processed Product Regulations +109770,Other,Processed Product Regulations +106615,Other,Processed Product Regulations +101236,Other,Processed Product Regulations +95316,Other,Processed Product Regulations +95315,Other,Processed Product Regulations +428507,Environment,Environment +417472,Environment,Environment +197227,Environment,Environment +197225,Environment,Environment +158902,Environment,Environment +340537,Environment,Environment +324275,Environment,Environment +376306,Environment,Environment +376268,Environment,Environment +504245,Environment,Environment +488720,Environment,Environment +460527,Environment,Environment +451748,Environment,Environment +428507,Infrastructure,Infrastructure +417472,Labour,Labour +451748,Transportation,Transportation +439764,Transportation,Transportation +93843,Other,Negotiations at UN CND regarding political declaration +93847,Other,Canada's International and Trade Policy +93847,Other,Canadian Environmental Assessment Act +93847,Other,Canadian Environmental Protection Act +93847,Other,Clean Energy +93847,Other,Climate Change +93847,Other,Major Project Management Office Regulations +93847,Other,Nuclear Energy +93847,Other,Nuclear Safety and Control Act +93847,Other,Regulations of the Canadian Environmental Assessment Act +93847,Other,Regulations of the Canadian Environment Protection Act +93847,Other,Regulations of the Nuclear Safety and Control Act +97818,Other,Financial Support for Auto Industry. Assist in getting financial support to help the automotive sector with their Canadian operations. +93856,Sports,Sports +135703,Environment,Environment +168449,Health,Health +170037,Transportation,Transportation +93879,Other,Impact de lanouvelle politique du Conseil sur la distribution ( Avis public 2008-100) sur les stations de télévision indépendantes des petits marchés +93883,Other,Impact de la nouvelle politique du Conseil sur la distribution( Avis public 2008-100) sur les stations de télévision indépendantes des petits marchés +93895,Other,Institutional Costs of Research +93831,Other,Industry Canada +93831,Other,Industry Canada +93830,Other,Industry Canada funding 2009 budget +93927,Other,Potential Communication Opportunity +93934,Other,Potential Communication Opportunity +93929,Other,Potential Communication Opportunity +93930,Other,Potential Communication Opportunity +93933,Other,Potential Communication Opportunity +132923,Other,Potential Communication Opportunity +93936,Other,Potential Communication Opportunity +93942,Other,Nuclear Power in Ontario +93940,Other,Nuclear power in Ontario +93955,Other,IC contract re 2009 budget +159989,Other,Oil sands development +194773,Consumer Issues,Consumer Issues +194776,Consumer Issues,Consumer Issues +226602,Taxation and Finance,Taxation and Finance +105214,Intellectual Property,Intellectual Property +145897,Employment and Training,Employment and Training +94076,Labour,Labour +94101,Other,économie +101370,Other,Environment +290635,Consumer Issues,Consumer Issues +316005,Industry,Industry +402990,Infrastructure,Infrastructure +160025,Labour,Labour +400631,Taxation and Finance,Taxation and Finance +114216,International Relations,International Relations +94154,Other,Credit Card Fees +94158,Other,Canada-U.S. Trade Policy +128616,International Relations,International Relations +157243,International Trade,International Trade +128616,Tourism,Tourism +148356,Transportation,Transportation +100395,Other,Corporate Social Responsibility +131822,Consumer Issues,Consumer Issues +176726,Energy,Energy +152977,Environment,Environment +152978,Health,Health +152978,Industry,Industry +152978,Other,Manufacturing +152978,Regional Development,Regional Development +123494,Other,Budget 2009 +94200,Other,Green Energy Fund +123494,Other,Alignment of US and Canadian Cap and Trade programs +115076,Defence,Defence +94234,Other,Trade Policy +109897,Other,Canada-EU Agreement +94243,Other,To share recommendations on brief for Budget 2009 +94256,Other,Energy Policy +97918,Other,nuclear energy +94316,Other,infrastructure program +121281,Other,Research and innovation policy +94335,Taxation and Finance,Taxation and Finance +102174,Employment and Training,Employment and Training +96577,Infrastructure,Infrastructure +96577,Regional Development,Regional Development +96599,Other,Carbon Algae Recycling System (CARS) +102175,Energy,Energy +99234,Infrastructure,Infrastructure +162388,Other,Research & Development +96196,Consumer Issues,Consumer Issues +96196,Financial Institutions,Financial Institutions +109523,Justice and Law Enforcement,Justice and Law Enforcement +97675,Education,Education +97675,Employment and Training,Employment and Training +97675,Infrastructure,Infrastructure +97675,Regional Development,Regional Development +112840,Education,Education +103316,Health,Health +168123,International Relations,International Relations +100790,Infrastructure,Infrastructure +94639,Other,Disability Issues +94639,Employment and Training,Employment and Training +94639,Other,Income Security +94639,Taxation and Finance,Taxation and Finance +94654,Other,Trade - Canada - EU agreement +117015,Regional Development,Développement régional +117015,Environment,Environnement +117015,Industry,Industrie +117014,Regional Development,Développement régional +117014,Environment,Environnement +117014,Industry,Industrie +117014,Transportation,Transports +111375,Infrastructure,Infrastructure +163530,Education,Education +521329,Health,Health +100177,Other,Aeronautics Act +100177,Other,Excise Tax +121094,Other,National Airports Policy +94862,Other,Financial support (seed money) to help launch the Canadian Construction Innovation Council +121236,Other,Natural Resources +500337,Defence,Defence +350127,Regional Development,Regional Development +393852,Transportation,Transportation +120635,Employment and Training,Employment and Training +101035,Industry,Industry +120635,Mining,Mining +101035,Regional Development,Regional Development +120634,Transportation,Transportation +158374,Government Procurement,Government Procurement +124853,Other,International Trade +128334,Other,Security +311333,Agriculture,Agriculture +192286,Internal Trade,Internal Trade +169284,Health,Health +132537,Industry,Industry +132537,Labour,Labour +100006,Mining,Mining +132537,Transportation,Transportation +98207,Other,Health - Chronic disease prevention and management - health and aging +101203,Industry,Industry +114235,Immigration,Immigration +95094,Other,support for construction development of Level 5 lab +101216,Tourism,Tourism +114754,Taxation and Finance,Taxation and Finance +101495,Government Procurement,Government Procurement +95254,Other,Update on Talisman activities worldwide +97276,Consumer Issues,Consumer Issues +97276,Financial Institutions,Financial Institutions +100318,Other,Contraband tobacco +95295,Other,"Safety, port policy and branch lines" +100322,Energy,Energy +96378,Environment,Environment +102714,Industry,Industry +95296,Other,Port Policy +128597,Mining,Mining +128597,Regional Development,Regional Development +153125,Other,Processed Product Regulations +95317,Other,"DFIAT-sponsored luncheon with visiting dignitaries from Norway, UK, Switzerland and Iceland" +439764,Environment,Environment +417472,Infrastructure,Infrastructure +428507,Labour,Labour +460527,Transportation,Transportation +96761,Other,Crown Corporation Governance +96761,Industry,Industry +96761,Mining,Mining +96761,Regional Development,Regional Development +110536,Other,New product development and commercialisation +441025,Transportation,Transportation +101915,Transportation,Transports +314757,Transportation,Transports +97134,Energy,Energy +95416,Other,"International Air Policy, regarding liberalization" +95417,Other,"Bill S2: An Act to Amend the Customs Act, regarding Customs Controlled Areas" +95417,Other,"Duty Free Regulations, regarding Arrivals Duty Free" +95417,Other,"International Air Policy, regarding liberalization" +95417,Other,National Airports Policy with respect to airport development +95418,Other,"S2: An Act to Amend the Customs Act, regarding Customs Controlled Areas" +95434,Other,Regulatory Affairs +108374,Other,"Consumer Issues, related to airport response to economic downturn" +113297,Other,"Consumer Issues, related to airport response to economic downturn" +108374,Other,"Airport security policies, regarding liquids, aerosols and gels" +113298,Other,"Consumer Issues, related to airport response to economic downturn" +95454,Other,"Bill S2: An Act to Amend the Customs Act, regarding Customs Controlled Areas" +95454,Other,"Duty Free Regulations, regarding Arrivals Duty Free" +417488,International Trade,International Trade +518384,International Trade,International Trade +153127,Justice and Law Enforcement,Justice and Law Enforcement +192492,Infrastructure,Infrastructure +95595,Other,Government of Canada Support for Aerospace and Defence (R&D) and the Industrial and Regional Benefits Policy +95595,Other,Research and Development +539024,Education,Education +436953,Health,Health +459745,International Trade,International Trade +100374,Other,DFC Annual Dairy Policy Conference & DFC's 75th anniversary +95759,Other,Dairy Product Regluations +163632,Consumer Issues,Consumer Issues +174936,Health,Health +97915,Environment,Environment +97915,Health,Health +427147,Industry,Industry +467705,International Trade,International Trade +198847,Taxation and Finance,Taxation and Finance +344699,Energy,Energy +196224,Environment,Environment +192356,International Relations,International Relations +95903,Other,General Politics +95914,Other,Power project in Ghana +194979,Tourism,Tourism +100789,Consumer Issues,Consumer Issues +100789,Health,Health +100789,International Trade,International Trade +96015,Other,Workplace Skills Initiative program and potential funding +96018,Other,ecoEnergy +145715,Other,Payments industry +443757,Infrastructure,Infrastructure +419725,Regional Development,Regional Development +148183,Industry,Industry +148183,Intellectual Property,Intellectual Property +96136,Other,Potential communication opportunity +197227,Transportation,Transportation +197225,Transportation,Transportation +158902,Transportation,Transportation +340537,Transportation,Transportation +324275,Transportation,Transportation +271689,Transportation,Transportation +428507,Transportation,Transportation +417472,Transportation,Transportation +376306,Transportation,Transportation +376268,Transportation,Transportation +504245,Transportation,Transportation +488720,Transportation,Transportation +96758,Other,Crown Corporation Governance +96758,Industry,Industry +96758,Mining,Mining +96758,Regional Development,Regional Development +105194,Other,New product development and commercialisation +97595,Other,New product development and commercialisation +113274,Other,New product development and commercialisation +433061,Transportation,Transportation +433060,Transportation,Transportation +377576,Transportation,Transportation +168047,Transportation,Transportation +397423,Transportation,Transportation +313909,Transportation,Transports +271718,Transportation,Transports +134356,Transportation,Transports +134355,Transportation,Transports +134354,Transportation,Transports +101917,Transportation,Transports +97196,Energy,Energy +113297,Other,"International Air Policy, regarding liberalization" +116057,Other,"Duty Free Regulations, regarding Arrivals Duty Free" +145178,Other,Regulatory Affairs +102656,Other,"Consumer Issues, related to airport response to economic downturn" +95414,Other,"Consumer Issues, related to airport response to economic downturn" +116064,Other,"Consumer Issues, related to airport response to economic downturn" +95415,Other,"Consumer Issues, related to airport response to economic downturn" +95417,Other,"Airport security policies, regarding liquids, aerosols and gels" +95417,Other,"Consumer Issues, related to airport response to economic downturn" +113298,Other,"Duty Free Regulations, regarding Arrivals Duty Free" +108374,Other,"Duty Free Regulations, regarding Arrivals Duty Free" +377853,International Trade,International Trade +518380,International Trade,International Trade +95474,International Trade,International Trade +417489,International Trade,International Trade +518382,International Trade,International Trade +518381,International Trade,International Trade +154126,International Trade,International Trade +123415,International Trade,International Trade +115015,International Trade,International Trade +95475,International Trade,International Trade +434303,International Trade,International Trade +434302,International Trade,International Trade +433099,International Trade,International Trade +422987,International Trade,International Trade +417487,International Trade,International Trade +350528,Justice and Law Enforcement,Justice and Law Enforcement +350524,Justice and Law Enforcement,Justice and Law Enforcement +148958,Justice and Law Enforcement,Justice and Law Enforcement +137455,Justice and Law Enforcement,Justice and Law Enforcement +126196,Justice and Law Enforcement,Justice and Law Enforcement +126181,Justice and Law Enforcement,Justice and Law Enforcement +126178,Justice and Law Enforcement,Justice and Law Enforcement +126177,Justice and Law Enforcement,Justice and Law Enforcement +126134,Justice and Law Enforcement,Justice and Law Enforcement +153875,Justice and Law Enforcement,Justice and Law Enforcement +327534,Infrastructure,Infrastructure +327530,Infrastructure,Infrastructure +153157,Infrastructure,Infrastructure +152770,Infrastructure,Infrastructure +152769,Infrastructure,Infrastructure +152768,Infrastructure,Infrastructure +152767,Infrastructure,Infrastructure +152766,Infrastructure,Infrastructure +152765,Infrastructure,Infrastructure +152764,Infrastructure,Infrastructure +129079,Infrastructure,Infrastructure +129077,Infrastructure,Infrastructure +129074,Infrastructure,Infrastructure +129071,Infrastructure,Infrastructure +129070,Infrastructure,Infrastructure +291409,Infrastructure,Infrastructure +250410,Infrastructure,Infrastructure +226709,Infrastructure,Infrastructure +202221,Infrastructure,Infrastructure +202220,Infrastructure,Infrastructure +202219,Infrastructure,Infrastructure +192494,Infrastructure,Infrastructure +192493,Infrastructure,Infrastructure +532935,Education,Education +516080,Education,Education +436953,Education,Education +434694,Education,Education +434688,Education,Education +434687,Education,Education +411083,Education,Education +411082,Education,Education +411081,Education,Education +411080,Education,Education +411079,Education,Education +411078,Education,Education +411077,Education,Education +411076,Education,Education +411038,Education,Education +404726,Education,Education +449082,Education,Education +449079,Education,Education +459540,International Trade,International Trade +458179,International Trade,International Trade +108077,International Trade,International Trade +97554,International Trade,International Trade +95695,International Trade,International Trade +152943,International Trade,International Trade +147983,International Trade,International Trade +147982,International Trade,International Trade +144855,International Trade,International Trade +139458,International Trade,International Trade +139456,International Trade,International Trade +139455,International Trade,International Trade +136336,International Trade,International Trade +133622,International Trade,International Trade +204170,International Trade,International Trade +204169,International Trade,International Trade +204168,International Trade,International Trade +204167,International Trade,International Trade +201451,International Trade,International Trade +201450,International Trade,International Trade +195447,International Trade,International Trade +195446,International Trade,International Trade +195445,International Trade,International Trade +195444,International Trade,International Trade +190724,International Trade,International Trade +177808,International Trade,International Trade +177807,International Trade,International Trade +173812,International Trade,International Trade +173811,International Trade,International Trade +173810,International Trade,International Trade +172765,International Trade,International Trade +172486,International Trade,International Trade +172485,International Trade,International Trade +170513,International Trade,International Trade +170512,International Trade,International Trade +166322,International Trade,International Trade +166319,International Trade,International Trade +166318,International Trade,International Trade +166317,International Trade,International Trade +166316,International Trade,International Trade +166315,International Trade,International Trade +166314,International Trade,International Trade +166313,International Trade,International Trade +166312,International Trade,International Trade +166311,International Trade,International Trade +166310,International Trade,International Trade +166309,International Trade,International Trade +160516,International Trade,International Trade +160515,International Trade,International Trade +356494,International Trade,International Trade +354049,International Trade,International Trade +354048,International Trade,International Trade +349500,International Trade,International Trade +349499,International Trade,International Trade +349498,International Trade,International Trade +349497,International Trade,International Trade +349496,International Trade,International Trade +349495,International Trade,International Trade +349494,International Trade,International Trade +349493,International Trade,International Trade +349492,International Trade,International Trade +349491,International Trade,International Trade +349490,International Trade,International Trade +344070,International Trade,International Trade +344069,International Trade,International Trade +274530,International Trade,International Trade +274529,International Trade,International Trade +270249,International Trade,International Trade +265135,International Trade,International Trade +265134,International Trade,International Trade +265133,International Trade,International Trade +265132,International Trade,International Trade +265130,International Trade,International Trade +265129,International Trade,International Trade +256529,International Trade,International Trade +255570,International Trade,International Trade +255553,International Trade,International Trade +255549,International Trade,International Trade +252009,International Trade,International Trade +247602,International Trade,International Trade +246029,International Trade,International Trade +240030,International Trade,International Trade +240029,International Trade,International Trade +238310,International Trade,International Trade +218289,International Trade,International Trade +218288,International Trade,International Trade +213588,International Trade,International Trade +213587,International Trade,International Trade +208768,International Trade,International Trade +208767,International Trade,International Trade +205228,International Trade,International Trade +457571,International Trade,International Trade +455779,International Trade,International Trade +455777,International Trade,International Trade +450202,International Trade,International Trade +450199,International Trade,International Trade +450198,International Trade,International Trade +450193,International Trade,International Trade +450192,International Trade,International Trade +448069,International Trade,International Trade +448068,International Trade,International Trade +448059,International Trade,International Trade +448055,International Trade,International Trade +448052,International Trade,International Trade +448048,International Trade,International Trade +448045,International Trade,International Trade +448042,International Trade,International Trade +448038,International Trade,International Trade +448036,International Trade,International Trade +448030,International Trade,International Trade +448026,International Trade,International Trade +445601,International Trade,International Trade +439286,International Trade,International Trade +439285,International Trade,International Trade +439284,International Trade,International Trade +439280,International Trade,International Trade +439277,International Trade,International Trade +439273,International Trade,International Trade +439248,International Trade,International Trade +439239,International Trade,International Trade +439236,International Trade,International Trade +437046,International Trade,International Trade +437044,International Trade,International Trade +437042,International Trade,International Trade +437041,International Trade,International Trade +437040,International Trade,International Trade +437039,International Trade,International Trade +437038,International Trade,International Trade +437037,International Trade,International Trade +437034,International Trade,International Trade +435879,International Trade,International Trade +425462,International Trade,International Trade +425460,International Trade,International Trade +425457,International Trade,International Trade +425453,International Trade,International Trade +425450,International Trade,International Trade +425443,International Trade,International Trade +425439,International Trade,International Trade +425438,International Trade,International Trade +425436,International Trade,International Trade +425435,International Trade,International Trade +425433,International Trade,International Trade +425430,International Trade,International Trade +425429,International Trade,International Trade +425428,International Trade,International Trade +425427,International Trade,International Trade +425425,International Trade,International Trade +425424,International Trade,International Trade +425423,International Trade,International Trade +425422,International Trade,International Trade +425421,International Trade,International Trade +424030,International Trade,International Trade +424027,International Trade,International Trade +424025,International Trade,International Trade +424024,International Trade,International Trade +424023,International Trade,International Trade +424022,International Trade,International Trade +424019,International Trade,International Trade +416621,International Trade,International Trade +416618,International Trade,International Trade +416616,International Trade,International Trade +416608,International Trade,International Trade +416606,International Trade,International Trade +416577,International Trade,International Trade +416568,International Trade,International Trade +416563,International Trade,International Trade +416561,International Trade,International Trade +416558,International Trade,International Trade +416556,International Trade,International Trade +409695,International Trade,International Trade +409690,International Trade,International Trade +409686,International Trade,International Trade +409683,International Trade,International Trade +409681,International Trade,International Trade +409679,International Trade,International Trade +409676,International Trade,International Trade +409671,International Trade,International Trade +405423,International Trade,International Trade +400820,International Trade,International Trade +400816,International Trade,International Trade +400806,International Trade,International Trade +400788,International Trade,International Trade +400782,International Trade,International Trade +400774,International Trade,International Trade +400773,International Trade,International Trade +400771,International Trade,International Trade +400770,International Trade,International Trade +400767,International Trade,International Trade +400766,International Trade,International Trade +400765,International Trade,International Trade +400764,International Trade,International Trade +400759,International Trade,International Trade +395600,International Trade,International Trade +395596,International Trade,International Trade +392501,International Trade,International Trade +385389,International Trade,International Trade +380970,International Trade,International Trade +380969,International Trade,International Trade +380966,International Trade,International Trade +498845,International Trade,International Trade +465956,International Trade,International Trade +465955,International Trade,International Trade +465954,International Trade,International Trade +465951,International Trade,International Trade +465947,International Trade,International Trade +465946,International Trade,International Trade +465733,International Trade,International Trade +465732,International Trade,International Trade +465730,International Trade,International Trade +465727,International Trade,International Trade +465726,International Trade,International Trade +465723,International Trade,International Trade +465722,International Trade,International Trade +465721,International Trade,International Trade +465720,International Trade,International Trade +465716,International Trade,International Trade +465714,International Trade,International Trade +465708,International Trade,International Trade +465706,International Trade,International Trade +462748,International Trade,International Trade +461628,International Trade,International Trade +461626,International Trade,International Trade +461624,International Trade,International Trade +461623,International Trade,International Trade +461622,International Trade,International Trade +460162,International Trade,International Trade +459748,International Trade,International Trade +95759,Other,DFC Annual Dairy Policy Conference & DFC's 75th anniversary +142420,Other,Dairy Product Regluations +387240,Consumer Issues,Consumer Issues +350543,Consumer Issues,Consumer Issues +113034,Consumer Issues,Consumer Issues +109652,Consumer Issues,Consumer Issues +105342,Consumer Issues,Consumer Issues +242350,Consumer Issues,Consumer Issues +174936,Consumer Issues,Consumer Issues +163632,Health,Health +387240,Health,Health +113034,Health,Health +109652,Health,Health +105342,Health,Health +242350,Health,Health +421158,Industry,Industry +417647,Industry,Industry +114195,Industry,Industry +146039,Industry,Industry +133755,Industry,Industry +342137,Industry,Industry +338063,Industry,Industry +338057,Industry,Industry +302851,Industry,Industry +272870,Industry,Industry +230252,Industry,Industry +198847,Industry,Industry +168025,Industry,Industry +166216,Industry,Industry +413880,Industry,Industry +396249,Industry,Industry +377796,Industry,Industry +371379,Industry,Industry +344478,Industry,Industry +467746,Industry,Industry +467705,Industry,Industry +457097,Industry,Industry +451456,Industry,Industry +429989,Industry,Industry +457097,International Trade,International Trade +451456,International Trade,International Trade +114195,International Trade,International Trade +95814,International Trade,International Trade +348391,International Trade,International Trade +344478,International Trade,International Trade +342137,International Trade,International Trade +338063,International Trade,International Trade +338057,International Trade,International Trade +333797,International Trade,International Trade +302851,International Trade,International Trade +272870,International Trade,International Trade +255829,International Trade,International Trade +230252,International Trade,International Trade +213129,International Trade,International Trade +198847,International Trade,International Trade +168025,International Trade,International Trade +166216,International Trade,International Trade +133755,International Trade,International Trade +436106,International Trade,International Trade +429989,International Trade,International Trade +429986,International Trade,International Trade +427147,International Trade,International Trade +421158,International Trade,International Trade +417647,International Trade,International Trade +413880,International Trade,International Trade +396249,International Trade,International Trade +377796,International Trade,International Trade +371379,International Trade,International Trade +362170,International Trade,International Trade +359755,International Trade,International Trade +359752,International Trade,International Trade +355171,International Trade,International Trade +355162,International Trade,International Trade +467772,International Trade,International Trade +467746,International Trade,International Trade +316498,Energy,Energy +275596,Energy,Energy +103115,Energy,Energy +149137,Energy,Energy +148616,Energy,Energy +146974,Energy,Energy +141115,Energy,Energy +141114,Energy,Energy +132451,Energy,Energy +270697,Energy,Energy +270696,Energy,Energy +270695,Energy,Energy +270694,Energy,Energy +270693,Energy,Energy +270692,Energy,Energy +270691,Energy,Energy +242253,Energy,Energy +242251,Energy,Energy +242250,Energy,Energy +220488,Energy,Energy +210732,Energy,Energy +210729,Energy,Energy +203727,Energy,Energy +196225,Energy,Energy +196224,Energy,Energy +192904,Energy,Energy +191746,Energy,Energy +191745,Energy,Energy +171864,Energy,Energy +171863,Energy,Energy +171862,Energy,Energy +164733,Energy,Energy +164732,Energy,Energy +353587,Energy,Energy +192904,Environment,Environment +191746,Environment,Environment +141115,Environment,Environment +141114,Environment,Environment +191745,Environment,Environment +171864,Environment,Environment +171863,Environment,Environment +171862,Environment,Environment +164733,Environment,Environment +164732,Environment,Environment +364588,Environment,Environment +316499,Environment,Environment +242253,Environment,Environment +242251,Environment,Environment +242250,Environment,Environment +210732,Environment,Environment +210729,Environment,Environment +203727,Environment,Environment +196225,Environment,Environment +192353,International Relations,International Relations +192351,International Relations,International Relations +306150,International Relations,International Relations +306129,International Relations,International Relations +306112,International Relations,International Relations +306111,International Relations,International Relations +192358,International Relations,International Relations +110934,Other,Power project in Ghana +145714,Other,Payments industry +123337,Other,Payments industry +96021,Other,Payments industry +96020,Other,Payments industry +145718,Other,Payments industry +443756,Infrastructure,Infrastructure +443755,Infrastructure,Infrastructure +146187,Agriculture,Agriculture +100002,Agriculture,Agriculture +100001,Agriculture,Agriculture +100000,Agriculture,Agriculture +159816,Other,Industry Canada Broadband - Federal budget announcement of funding for broadband deployment +96318,Other,Impaired Driving Legislation +491861,Industry,Industry +445977,Industry,Industry +96323,Industry,Industry +292189,Industry,Industry +231709,Industry,Industry +383035,Industry,Industry +356685,Industry,Industry +311244,Industry,Industry +311243,Industry,Industry +311236,Industry,Industry +311235,Industry,Industry +311234,Industry,Industry +311233,Industry,Industry +311232,Industry,Industry +120457,Other,Climate Change +115795,Other,Climate Change +108896,Other,Climate Change +96684,Other,Climate Change +96683,Other,Climate Change +96682,Other,Climate Change +131977,Other,Climate Change +131976,Other,Climate Change +127536,Other,Climate Change +123574,Other,Climate Change +128598,Other,Animal welfare +96735,Other,Animal welfare +96734,Other,Animal welfare +159424,Consumer Issues,Consumer Issues +159423,Consumer Issues,Consumer Issues +159423,Health,Health +159422,Health,Health +159425,Health,Health +96435,Other,Energy and Environment +96436,Other,Energy and Environment +96437,Other,Energy and Environment +145664,Other,Energy and Environment +330007,Small Business,Small Business +142472,Agriculture,Agriculture +142471,Agriculture,Agriculture +117625,Agriculture,Agriculture +105917,Agriculture,Agriculture +105916,Agriculture,Agriculture +168909,Agriculture,Agriculture +168905,Agriculture,Agriculture +168904,Agriculture,Agriculture +142471,International Trade,International Trade +168904,International Trade,International Trade +132354,Other,Transportation +129120,Other,Transportation +97594,Other,Transportation +96598,Other,Transportation +96620,Other,Yogourt Regulations +96619,Other,Yogourt Regulations +96625,Other,Yogourt Regulations +96624,Other,Yogourt Regulations +96623,Other,Yogourt Regulations +96621,Other,Cheese Regulations +96620,Other,Cheese Regulations +96625,Other,Cheese Regulations +96624,Other,Cheese Regulations +166884,Other,Structural Surplus +157328,Other,Structural Surplus +96625,Other,Structural Surplus +96624,Other,Structural Surplus +96623,Other,Structural Surplus +96621,Other,Structural Surplus +134977,Other,UArctic +134976,Other,UArctic +145787,Other,UArctic +142851,Other,UArctic +142850,Other,UArctic +142848,Other,UArctic +441784,Consumer Issues,Consumer Issues +387238,Consumer Issues,Consumer Issues +97294,Consumer Issues,Consumer Issues +350797,Consumer Issues,Consumer Issues +242349,Consumer Issues,Consumer Issues +441784,Health,Health +387238,Health,Health +174937,Health,Health +441784,International Trade,International Trade +350797,International Trade,International Trade +97294,International Trade,International Trade +147335,Other,Infrastructure +96722,Other,Bi-lateral agreements +96721,Other,Bi-lateral agreements +96728,Other,Bi-lateral agreements +96724,Other,Bi-lateral agreements +96729,Other,Dairy supply management +494043,Government Procurement,Marchés Publics +466523,Government Procurement,Marchés Publics +176324,Government Procurement,Marchés Publics +164984,Government Procurement,Marchés Publics +146455,Government Procurement,Marchés Publics +145861,Government Procurement,Marchés Publics +96756,Government Procurement,Marchés Publics +450753,Government Procurement,Marchés Publics +450752,Government Procurement,Marchés Publics +444350,Government Procurement,Marchés Publics +408515,Government Procurement,Marchés Publics +404528,Government Procurement,Marchés Publics +383066,Government Procurement,Marchés Publics +380367,Government Procurement,Marchés Publics +373873,Government Procurement,Marchés Publics +273023,Government Procurement,Marchés Publics +255989,Government Procurement,Marchés Publics +195884,Government Procurement,Marchés Publics +420476,Government Procurement,Marchés Publics +398464,Government Procurement,Marchés Publics +96759,Government Procurement,Marchés Publics +149016,Government Procurement,Marchés Publics +123294,Government Procurement,Marchés Publics +191136,Government Procurement,Marchés Publics +188838,Government Procurement,Marchés Publics +266169,Government Procurement,Marchés Publics +236349,Government Procurement,Marchés Publics +388740,Government Procurement,Marchés Publics +374699,Government Procurement,Marchés Publics +374697,Government Procurement,Marchés Publics +358347,Government Procurement,Marchés Publics +331446,Government Procurement,Marchés Publics +322253,Government Procurement,Marchés Publics +286689,Government Procurement,Marchés Publics +541105,Government Procurement,Marchés Publics +530813,Government Procurement,Marchés Publics +516910,Government Procurement,Marchés Publics +153454,Agriculture,Agriculture +148153,Agriculture,Agriculture +105939,Agriculture,Agriculture +105938,Agriculture,Agriculture +142476,Agriculture,Agriculture +142475,Agriculture,Agriculture +117627,Agriculture,Agriculture +142476,International Trade,International Trade +142475,International Trade,International Trade +168911,Agriculture,Agriculture +168910,Agriculture,Agriculture +105935,Agriculture,Agriculture +105934,Agriculture,Agriculture +153453,Agriculture,Agriculture +148151,Agriculture,Agriculture +142474,Agriculture,Agriculture +142473,Agriculture,Agriculture +129287,Agriculture,Agriculture +117626,Agriculture,Agriculture +245575,Agriculture,Agriculture +241454,Agriculture,Agriculture +233786,Agriculture,Agriculture +223520,Agriculture,Agriculture +212480,Agriculture,Agriculture +196098,Agriculture,Agriculture +196097,Agriculture,Agriculture +196096,Agriculture,Agriculture +196095,Agriculture,Agriculture +175385,Agriculture,Agriculture +142473,International Trade,International Trade +129287,International Trade,International Trade +168910,International Trade,International Trade +153453,International Trade,International Trade +99254,Other,Work Sharing and Workshops +96794,Other,Work Sharing and Workshops +115741,Education,Education +115739,Education,Education +115743,Education,Education +113227,Other,Energy Policy +96904,Other,Energy Policy +135943,Other,Energy Policy +135939,Other,Energy Policy +132934,Other,Energy Policy +127134,Other,Energy Policy +127136,Other,Energy Policy +96907,Other,Energy Policy +132930,Other,Energy Policy +132929,Other,Energy Policy +127135,Other,Energy Policy +125161,Other,Energy Policy +96911,Other,Energy Policy +132932,Other,Energy Policy +101231,Environment,Environment +101227,Environment,Environment +96934,Other,"Aerospatial, Garde côtière canadienne" +137379,Other,"Aerospatial, Garde côtière canadienne" +132758,Other,"Aerospatial, Garde côtière canadienne" +132755,Other,"Aerospatial, Garde côtière canadienne" +146294,Energy,Energy +199613,Energy,Energy +125458,Energy,Energy +125457,Energy,Energy +125456,Energy,Energy +125455,Energy,Energy +102314,Energy,Energy +96976,Energy,Energy +96962,Energy,Energy +173907,Energy,Energy +171916,Energy,Energy +171915,Energy,Energy +167554,Energy,Energy +167553,Energy,Energy +167551,Energy,Energy +167550,Energy,Energy +161363,Energy,Energy +158019,Energy,Energy +158018,Energy,Energy +103647,Environment,Environment +123902,Environment,Environment +103646,Agriculture,Agriculture +100258,Agriculture,Agriculture +103646,Environment,Environment +100258,Environment,Environment +128478,Environment,Environment +135710,Infrastructure,Infrastructure +131611,Infrastructure,Infrastructure +131608,Infrastructure,Infrastructure +131607,Infrastructure,Infrastructure +116142,Infrastructure,Infrastructure +152127,Other,Biologics +152126,Other,Biologics +106139,Other,Biologics +97143,Other,Biologics +97141,Other,Biologics +97140,Other,Biologics +97138,Other,Biologics +97137,Other,Biologics +97137,Other,Biotech policy +97135,Other,Biotech policy +106139,Other,Biotech policy +97143,Other,Biotech policy +97141,Other,Biotech policy +97140,Other,Biotech policy +145726,Other,Payments Industry +128637,Other,Payments Industry +124774,Other,Payments Industry +145726,Other,Payments Industry +129516,Other,Carbon Pricing +129514,Other,Carbon Pricing +97195,Other,Copyright related +161983,Transportation,Transportation +399699,Transportation,Transportation +390207,Transportation,Transportation +378305,Transportation,Transportation +355651,Transportation,Transportation +355262,Transportation,Transportation +355261,Transportation,Transportation +355243,Transportation,Transportation +355240,Transportation,Transportation +355238,Transportation,Transportation +355236,Transportation,Transportation +355233,Transportation,Transportation +355231,Transportation,Transportation +355230,Transportation,Transportation +353440,Transportation,Transportation +350459,Transportation,Transportation +343630,Transportation,Transportation +491342,Transportation,Transportation +442503,Transportation,Transportation +423740,Transportation,Transportation +132473,Other,Dairy Products Standards +97255,Other,Dairy Products Standards +97274,Other,DAIRY PRODUCT REGULATIONS +97274,Other,LABELLING +124865,Other,DAIRY PRODUCTS REGULATIONS +128859,Other,LABELLING +97280,Other,LABELLING +101326,Other,School of Public Service +135775,Other,DAIRY PRODUCTS REGULATIONS +138783,Other,LABELLING +138780,Other,LABELLING +124865,Other,LABELLING +97286,Other,LABELLING +223517,Agriculture,Agriculture +212476,Agriculture,Agriculture +148147,Agriculture,Agriculture +142470,Agriculture,Agriculture +142469,Agriculture,Agriculture +129286,Agriculture,Agriculture +117624,Agriculture,Agriculture +105914,Agriculture,Agriculture +105894,Agriculture,Agriculture +175381,Agriculture,Agriculture +168902,Agriculture,Agriculture +168898,Agriculture,Agriculture +168896,Agriculture,Agriculture +153452,Agriculture,Agriculture +265084,Agriculture,Agriculture +265083,Agriculture,Agriculture +265082,Agriculture,Agriculture +245574,Agriculture,Agriculture +241453,Agriculture,Agriculture +265083,Environment,Environment +265082,Environment,Environment +168896,Environment,Environment +265083,International Trade,International Trade +265082,International Trade,International Trade +153452,International Trade,International Trade +142470,International Trade,International Trade +142469,International Trade,International Trade +129286,International Trade,International Trade +168896,International Trade,International Trade +473563,Infrastructure,Infrastructure +97314,Other,Canada-U.S. environmental cooperation +430442,Consumer Issues,Consumer Issues +425908,Consumer Issues,Consumer Issues +97318,Consumer Issues,Consumer Issues +223935,Consumer Issues,Consumer Issues +219947,Consumer Issues,Consumer Issues +196226,Consumer Issues,Consumer Issues +190664,Consumer Issues,Consumer Issues +184384,Consumer Issues,Consumer Issues +148156,Consumer Issues,Consumer Issues +340274,Consumer Issues,Consumer Issues +267189,Consumer Issues,Consumer Issues +119514,Other,Climate Change Policy +109915,Other,Climate Change Policy +109897,Other,Climate Change Policy +100427,Other,Climate Change Policy +100425,Other,Climate Change Policy +97319,Other,Competition Policy Reform +135535,Other,Monetary policies and regulations +135534,Other,Monetary policies and regulations +496307,Labour,Labour +496297,Labour,Labour +97334,Labour,Labour +174093,Labour,Labour +167331,Labour,Labour +162347,Labour,Labour +160070,Labour,Labour +160062,Labour,Labour +157182,Labour,Labour +157177,Labour,Labour +157171,Labour,Labour +157156,Labour,Labour +153099,Labour,Labour +152265,Labour,Labour +152263,Labour,Labour +151478,Labour,Labour +149976,Labour,Labour +147995,Labour,Labour +147856,Labour,Labour +143634,Labour,Labour +141455,Labour,Labour +293449,Labour,Labour +264151,Labour,Labour +258142,Labour,Labour +244824,Labour,Labour +244820,Labour,Labour +244807,Labour,Labour +244806,Labour,Labour +244804,Labour,Labour +244802,Labour,Labour +244793,Labour,Labour +244789,Labour,Labour +244786,Labour,Labour +244783,Labour,Labour +244780,Labour,Labour +244777,Labour,Labour +244776,Labour,Labour +244770,Labour,Labour +244769,Labour,Labour +244765,Labour,Labour +244761,Labour,Labour +244759,Labour,Labour +244757,Labour,Labour +244755,Labour,Labour +244750,Labour,Labour +244749,Labour,Labour +244744,Labour,Labour +244743,Labour,Labour +244740,Labour,Labour +244739,Labour,Labour +244737,Labour,Labour +244736,Labour,Labour +244734,Labour,Labour +244731,Labour,Labour +237589,Labour,Labour +237536,Labour,Labour +237535,Labour,Labour +237534,Labour,Labour +234129,Labour,Labour +227989,Labour,Labour +222641,Labour,Labour +222638,Labour,Labour +211771,Labour,Labour +192168,Labour,Labour +192167,Labour,Labour +191047,Labour,Labour +190270,Labour,Labour +174853,Labour,Labour +410455,Labour,Labour +405506,Labour,Labour +405504,Labour,Labour +405495,Labour,Labour +405491,Labour,Labour +403486,Labour,Labour +399526,Labour,Labour +399525,Labour,Labour +399521,Labour,Labour +399520,Labour,Labour +396464,Labour,Labour +394621,Labour,Labour +394617,Labour,Labour +394615,Labour,Labour +394614,Labour,Labour +394604,Labour,Labour +394602,Labour,Labour +394601,Labour,Labour +391754,Labour,Labour +391753,Labour,Labour +389092,Labour,Labour +389089,Labour,Labour +385309,Labour,Labour +383716,Labour,Labour +383627,Labour,Labour +383626,Labour,Labour +383625,Labour,Labour +383624,Labour,Labour +383622,Labour,Labour +96137,Other,Potential Communication Opportunity +97916,Environment,Environment +97916,Health,Health +116140,Other,Funding +146255,Agriculture,Agriculture +96314,Other,Industry Canada Broadband - Federal budget announcement of funding for broadband deployment +96316,Government Procurement,Government Procurement +100301,Other,Impaired Driving Legislation +311229,Industry,Industry +96375,Other,Oceans Election Platform +120458,Other,Climate Change +96731,Other,Animal welfare +113335,Agriculture,Agriculture +96434,Other,Energy and Environment +159425,Consumer Issues,Consumer Issues +159424,Health,Health +103174,Other,Energy and Environment +103175,Other,Energy and Environment +99695,Other,Energy and Environment +96454,Other,Energy and Environment +96455,Other,Energy and Environment +96515,Other,participate in Fuel Cells Industry Association meetings +96516,Other,participate in Fuel Cells industry association meetings +355101,Small Business,Small Business +96554,Infrastructure,Infrastructure +96575,Health,Santé +148148,Agriculture,Agriculture +168904,Environment,Environment +142472,International Trade,International Trade +96595,Other,Transportation +96621,Other,Yogourt Regulations +96623,Other,Cheese Regulations +96620,Other,Structural Surplus +100335,Consumer Issues,Consumer Issues +100335,Health,Health +100335,Industry,Industry +100335,International Trade,International Trade +142847,Other,UArctic +174937,Consumer Issues,Consumer Issues +242349,Health,Health +242349,International Trade,International Trade +96680,Other,Preliminary free-trade discussion +96694,Other,Operation Lifesaver Program +96694,Other,Infrastructure +96720,Other,Border controls +96723,Other,Bi-lateral agreements +96727,Other,Multilateral agreements +96732,Other,Dairy supply management +188600,Government Procurement,Marchés Publics +449570,Government Procurement,Marchés Publics +212482,Agriculture,Agriculture +153454,International Trade,International Trade +96779,Other,Funding of federal research granting councils +96779,Other,NSERC +96779,Other,SSHRC +168913,Agriculture,Agriculture +168910,Environment,Environment +142474,International Trade,International Trade +99255,Other,Work Sharing and Workshops +96795,Sports,Sports +96795,Other,AltaGas Sponsors Cross Country Canada the World Cup was being held in BC and as Minister of Sport we invited him as our guest. No business specific to AltaGas was discussed. +105374,Other,Contraband tobacco +115742,Education,Education +96863,Other,Olympics +96895,Other,Budget Consultations +96896,Other,Natural Resources +96898,Other,Worker Assistance +117104,Other,Energy Policy +135941,Other,Energy Policy +96909,Other,Energy Policy +127137,Other,Energy Policy +109517,Environment,Environment +101225,Education,Education +132742,Other,"Aerospatial, Garde côtière canadienne" +148776,Energy,Energy +146276,Other,"Current financial/economic crisis.GE's business presence in Canada.GE supports: open trade/markets,USCAP,eco,green technology,wind power,nuclear liability,IP protection,oil s&s dev. & carbon capture" +96975,Other,Knowledge Infrastructure Program +96994,Other,Proposed changes to the Corruption of Foreign Public Officials Act +96995,Other,Knowledge Infrastructure Program +96997,Other,Knowledge Infrastructure Program +97054,Other,Lawful Access +103649,Environment,Environment +97055,Other,Upcoming CRTC proceedings +97058,Other,Bill C-10 in relation to legislative amendments +103648,Agriculture,Agriculture +103648,Environment,Environment +97096,Other,payments industry +141784,Infrastructure,Infrastructure +116140,Industry,Industry +116140,Infrastructure,Infrastructure +97135,Other,Biologics +97138,Other,Biotech policy +97170,Other,payments industry +97166,Other,Payments Industry +97182,Other,Payments Industry +97184,Other,Payments Industry +97192,Other,Carbon Pricing +132514,Other,Copyright related +97197,Other,Copyright related +100494,Health,Health +97194,Other,Women in Politics +100257,Other,Funding +100257,Industry,Industry +100257,Infrastructure,Infrastructure +161987,Transportation,Transportation +100498,Infrastructure,Infrastructure +132474,Other,Dairy Products Standards +97257,Other,Dairy Products Standards +97258,Other,DAIRY PRODUCTS STANDARDS +128857,Other,DAIRY PRODUCT REGULATIONS +132474,Other,LABELLING +97277,Other,DAIRY PRODUCTS REGULATIONS +97277,Other,LABELLING +97280,Other,DAIRY PRODUCTS REGULATIONS +132473,Other,LABELLING +97281,Other,School of Public Service +97283,Other,DAIRY PRODUCTS REGULATIONS +97283,Other,LABELLING +97285,Other,DAIRY PRODUCTS REGULATIONS +97285,Other,LABELLING +97286,Other,DAIRY PRODUCTS REGULATIONS +135775,Other,LABELLING +233784,Agriculture,Agriculture +265084,Environment,Environment +265084,International Trade,International Trade +97293,Other,Electronic Health Records +148156,Infrastructure,Infrastructure +97319,Other,Canada-U.S. environmental cooperation +97292,Other,"Free Trade Agreements: Europe, Peru, Columbia" +459544,Consumer Issues,Consumer Issues +97319,Other,Climate Change Policy +97321,Other,Competition Policy Reform +95274,Other,regulatory process for the implementation of the federal governments renewable fuels standard +97325,Other,Temporary Replacement Workers +97325,Other,Temporary Replacement Workers +97327,Other,"Canada Labour Code, Part III Review as pertains to federally regulated entities" +97328,Other,Monetary policies and regulations +97330,Other,Financial Consumer Agency of Canada +97331,Other,Monetary policies and regulations +505973,Labour,Labour +97339,Other,Personal Information Protection and Electronic Documents Act Compliance related to clarification +97346,Other,Labour Relations +97347,Other,World Anti Doping Association (WADA) and Amgen's effort on Anti doping front +97348,Other,"Biotechnology, update on Biosimilars and CDR" +158199,Environment,Environment +192397,Health,Health +97361,Other,Participate in Fuel Cell Association meetings +131775,Other,climate change +97359,Other,transit +131778,Other,waste water regulations +97369,Other,Housing +97329,Other,Canadian Content and Program +117005,Other,Heritage +454166,Immigration,Immigration +151251,Other,Education +146023,Other,Economic State of the Chemical Industry +114154,Other,Regulatory Dissonance +97420,Other,Responsilbe Care and Commitment to Sustainability +96857,Other,Climate Change Policies +97428,Other,Climate Change Policies +132534,Other,Green Mining Initiative +97432,Other,Green Fund +97436,Other,Pipeline Regulation +404020,International Trade,International Trade +404021,International Trade,International Trade +129039,Other,Labelling +97425,Other,Research & Development +97439,Other,Budget +97438,Other,Participate in Fuel Cells Industry Association meetings +97447,Other,Climate Change Policies +97447,Other,Major Projects Management Office +97447,Other,Nuclear Development +97375,Other,Participate in Fuel Cells Industry Association meetings +97450,Other,Participate in Fuel Cells Industry Association Meetings +97457,Other,Major Projects Management Office +145992,Other,Fisheries Act +97465,Other,Participate in Fuel Cell Industry Association Meetings +97466,Other,Canadian Content and Program +97468,Other,Radio Communications Act +97467,Other,Participate in fuel Cells Industry Association meetings +97472,Other,Participate in Fuel Cells Industry Association Meetings +97476,Other,Participate in Fuel Cells industry Association meetings +97482,Other,Participate in Fuel Cells Industry Association meetings +97473,Other,Industry Canada Agreement +97491,Other,Industry Canada Agreement +137555,Other,regulatory reform +437363,Infrastructure,Infrastructure +505222,Infrastructure,Infrastructure +97496,Other,Health Infrastructure +422850,Infrastructure,Infrastructure +97527,Other,release of Batch 5 risk assessments under CEPA Chemical management plan +97525,Other,Automotive Innovation Fund +97533,Other,Automotive Innovation Fund +97539,Other,MDA suggestions for 2009 Stimulus Budget Activities +97547,Other,Industrial Regional Benefits (IRBs) +97547,Other,Radarsat Constellation Mission (RCM) +121516,Other,"Bill C-4, Canada Not-for-Profit Corporations Act" +97549,Other,Industrial Regional Benefits (IRBs) +97549,Other,Radarsat Constellation Mission (RCM) +133015,Other,Grain transportation +97658,Other,Goods and Services Tax (Canada) +97702,Other,Policies or Program - Government of Canada response to Buy America amendments included in the American Recovery and Reinvestment Act +97703,Other,Policies or Program - Joint Canada-US policy approach to energy efficiency and climate change +97704,Other,Policies or Program - EI reforms contained in federal budget; workplace training initiatives +97705,Other,Regulation: Proposed introduction of Importer Data Requirements +97706,Other,Impact de l'avis public 2008-100 sur les stations des petits marchés +97708,Other,Impact de l'avis public 2008-100 sur les dtations des petits marchés +97710,Other,politique de radiodiffusioin en matière de licence spécialisée +125035,Other,Academic Research Infrastructure +128918,Other,Dairy Product Regulations +145135,Defence,Defence +145135,Industry,Industry +100789,Industry,Industry +97842,Other,Discussion about suburban train impact on defence production capacity +97854,Other,Discussion about Munitions Supply Program and Suburban Train Impact on Defence production capacity +97875,Other,Regulation and Policies or Program: CBSA's proposed Importer Data Requirements and Government of Canada response to Buy America amendments included in the American Recovery and Reinvestment Act +117664,Other,International Development +97896,Other,Disability +138163,Environment,Environment +138163,Industry,Industry +108056,Infrastructure,Infrastructure +97900,Infrastructure,Infrastructure +123854,Environment,Environment +123854,Industry,Industry +123854,Infrastructure,Infrastructure +223405,Agriculture,Agriculture +97975,Other,Safety & Security Policing +98256,Intellectual Property,Intellectual Property +98016,Other,Infrastructure +98036,Other,Tobacco Issues +98037,Other,Tobacco Issues +102614,Energy,Energy +165826,Consumer Issues,Consumer Issues +102618,Financial Institutions,Financial Institutions +148166,Taxation and Finance,Taxation and Finance +98074,Other,net-zero energy housing +98114,Other,Environment - air quality management +98174,Other,"Student Finance, Knowledge/Innovation" +98194,Other,"Research, Science and Technology" +98195,Other,"Research, Science and Technology" +98196,Other,"Research, Science and Technology" +98198,Other,"Research, Science and Technology" +98199,Other,"Research, Science and Technology" +112143,Financial Institutions,Financial Institutions +119259,Environment,Environment +119259,Industry,Industry +101317,Energy,Energy +98255,Other,Canada's Access to Medicines Regime +204788,Government Procurement,Government Procurement +98276,Other,Integrated Community Energy Systems +98294,Other,Strategic and Operational Planning +146281,Other,Copyright +98314,Other,Government of Canada support for Aerospace and Defence R&D and the Industrial and Regional Benefits Policy +147395,Taxation and Finance,Taxation and Finance +114220,Industry,Industry +98434,International Relations,International Relations +98434,Other,"Talent Recruitment, Science and Technology" +98436,International Relations,International Relations +98436,Other,"Talent Recruitment, Science and Technology" +98436,International Relations,International Relations +98436,Other,"Talent Recruitment, Science and Technology" +108514,Other,Amendments to the Navigable Waters Protection Act via Bill C-10 +154286,Justice and Law Enforcement,Justice et application des lois +142963,Other,Climate Change +460225,Government Procurement,Government Procurement +105657,Other,Responsible Care and Commitment to Sustainability +98534,Health,Health +98574,Other,governance of non-regulatory federal labs +191558,Industry,Industry +162529,Other,International Air Policy Regulations +211275,Consumer Issues,Consumer Issues +211275,Financial Institutions,Financial Institutions +211275,Small Business,Small Business +211275,Taxation and Finance,Taxation and Finance +98774,Other,housing programs +98774,Other,low cost municipal loan program +385875,Consumer Issues,Consumer Issues +395629,Financial Institutions,Financial Institutions +365276,Industry,Industry +209647,Health,Health +98795,Taxation and Finance,Taxation and Finance +272449,Transportation,Transportation +105174,Consumer Issues,Consumer Issues +105174,Health,Health +376653,Labour,Labour +376639,Labour,Labour +372685,Labour,Labour +372683,Labour,Labour +372611,Labour,Labour +372608,Labour,Labour +372606,Labour,Labour +372590,Labour,Labour +372585,Labour,Labour +369894,Labour,Labour +369892,Labour,Labour +346741,Labour,Labour +313813,Labour,Labour +313049,Labour,Labour +482576,Labour,Labour +469291,Labour,Labour +468433,Labour,Labour +468432,Labour,Labour +468430,Labour,Labour +468429,Labour,Labour +468422,Labour,Labour +468420,Labour,Labour +468417,Labour,Labour +468384,Labour,Labour +468383,Labour,Labour +468379,Labour,Labour +468373,Labour,Labour +468371,Labour,Labour +468361,Labour,Labour +468359,Labour,Labour +468343,Labour,Labour +468328,Labour,Labour +468303,Labour,Labour +468297,Labour,Labour +468292,Labour,Labour +468272,Labour,Labour +468268,Labour,Labour +467694,Labour,Labour +467690,Labour,Labour +467688,Labour,Labour +467686,Labour,Labour +467684,Labour,Labour +467680,Labour,Labour +467673,Labour,Labour +467627,Labour,Labour +467622,Labour,Labour +467620,Labour,Labour +467617,Labour,Labour +467612,Labour,Labour +467606,Labour,Labour +467602,Labour,Labour +467599,Labour,Labour +467596,Labour,Labour +467591,Labour,Labour +467586,Labour,Labour +467580,Labour,Labour +467553,Labour,Labour +467548,Labour,Labour +467544,Labour,Labour +467539,Labour,Labour +467354,Labour,Labour +467232,Labour,Labour +467231,Labour,Labour +467230,Labour,Labour +467229,Labour,Labour +467228,Labour,Labour +467197,Labour,Labour +467186,Labour,Labour +467172,Labour,Labour +467165,Labour,Labour +467160,Labour,Labour +467156,Labour,Labour +467141,Labour,Labour +467139,Labour,Labour +467121,Labour,Labour +467108,Labour,Labour +467071,Labour,Labour +467053,Labour,Labour +467052,Labour,Labour +467050,Labour,Labour +467049,Labour,Labour +467042,Labour,Labour +467031,Labour,Labour +467025,Labour,Labour +467021,Labour,Labour +467006,Labour,Labour +466999,Labour,Labour +466981,Labour,Labour +466977,Labour,Labour +466975,Labour,Labour +466962,Labour,Labour +466954,Labour,Labour +466946,Labour,Labour +466934,Labour,Labour +466929,Labour,Labour +466866,Labour,Labour +466865,Labour,Labour +466864,Labour,Labour +466861,Labour,Labour +466860,Labour,Labour +466859,Labour,Labour +466857,Labour,Labour +466855,Labour,Labour +466853,Labour,Labour +466852,Labour,Labour +466799,Labour,Labour +466795,Labour,Labour +466792,Labour,Labour +466790,Labour,Labour +466789,Labour,Labour +466788,Labour,Labour +466786,Labour,Labour +466782,Labour,Labour +466775,Labour,Labour +466772,Labour,Labour +466768,Labour,Labour +466762,Labour,Labour +466760,Labour,Labour +466758,Labour,Labour +466756,Labour,Labour +466754,Labour,Labour +466753,Labour,Labour +466751,Labour,Labour +466744,Labour,Labour +466743,Labour,Labour +466742,Labour,Labour +466741,Labour,Labour +466740,Labour,Labour +466735,Labour,Labour +466729,Labour,Labour +466728,Labour,Labour +466724,Labour,Labour +466698,Labour,Labour +466690,Labour,Labour +466689,Labour,Labour +466679,Labour,Labour +466673,Labour,Labour +466672,Labour,Labour +466645,Labour,Labour +466638,Labour,Labour +466635,Labour,Labour +466634,Labour,Labour +466628,Labour,Labour +466625,Labour,Labour +466621,Labour,Labour +466445,Labour,Labour +466437,Labour,Labour +466436,Labour,Labour +466433,Labour,Labour +466428,Labour,Labour +466426,Labour,Labour +466422,Labour,Labour +466418,Labour,Labour +466417,Labour,Labour +466414,Labour,Labour +466374,Labour,Labour +466372,Labour,Labour +466364,Labour,Labour +466362,Labour,Labour +466359,Labour,Labour +466352,Labour,Labour +466329,Labour,Labour +466309,Labour,Labour +447860,Labour,Labour +445868,Labour,Labour +442898,Labour,Labour +436255,Labour,Labour +436253,Labour,Labour +422923,Labour,Labour +422922,Labour,Labour +422921,Labour,Labour +422920,Labour,Labour +422919,Labour,Labour +422917,Labour,Labour +422916,Labour,Labour +422915,Labour,Labour +422914,Labour,Labour +422913,Labour,Labour +422912,Labour,Labour +422911,Labour,Labour +422910,Labour,Labour +422909,Labour,Labour +422908,Labour,Labour +422907,Labour,Labour +422906,Labour,Labour +422905,Labour,Labour +422904,Labour,Labour +422903,Labour,Labour +422902,Labour,Labour +422900,Labour,Labour +422899,Labour,Labour +422898,Labour,Labour +422897,Labour,Labour +422896,Labour,Labour +422895,Labour,Labour +422892,Labour,Labour +422888,Labour,Labour +422887,Labour,Labour +418380,Labour,Labour +544159,Labour,Labour +541496,Labour,Labour +537302,Labour,Labour +528985,Labour,Labour +528837,Labour,Labour +143454,Other,Labour Relations +158198,Environment,Environment +158191,Environment,Environment +158200,Environment,Environment +192396,Health,Health +158200,Health,Health +158199,Health,Health +158198,Health,Health +158191,Health,Health +192399,Health,Health +97359,Other,climate change +97359,Other,waste water regulations +454165,Immigration,Immigration +418887,Immigration,Immigration +467652,Immigration,Immigration +454167,Immigration,Immigration +151250,Other,Education +151248,Other,Education +97420,Other,Economic State of the Chemical Industry +97417,Other,Economic State of the Chemical Industry +97420,Other,Regulatory Dissonance +97417,Other,Regulatory Dissonance +97417,Other,Responsilbe Care and Commitment to Sustainability +97429,Other,Green Mining Initiative +400104,International Trade,International Trade +523971,International Trade,International Trade +163270,International Trade,International Trade +162141,International Trade,International Trade +158987,International Trade,International Trade +158984,International Trade,International Trade +113865,International Trade,International Trade +97437,International Trade,International Trade +228249,International Trade,International Trade +202774,International Trade,International Trade +192894,International Trade,International Trade +177347,International Trade,International Trade +380276,International Trade,International Trade +378983,International Trade,International Trade +378981,International Trade,International Trade +378980,International Trade,International Trade +378978,International Trade,International Trade +330005,International Trade,International Trade +304372,International Trade,International Trade +296814,International Trade,International Trade +273000,International Trade,International Trade +523969,International Trade,International Trade +521004,International Trade,International Trade +516672,International Trade,International Trade +516670,International Trade,International Trade +516669,International Trade,International Trade +516667,International Trade,International Trade +512344,International Trade,International Trade +509755,International Trade,International Trade +507060,International Trade,International Trade +507057,International Trade,International Trade +507052,International Trade,International Trade +507047,International Trade,International Trade +498004,International Trade,International Trade +498003,International Trade,International Trade +495851,International Trade,International Trade +494534,International Trade,International Trade +489042,International Trade,International Trade +484021,International Trade,International Trade +481526,International Trade,International Trade +470602,International Trade,International Trade +445076,International Trade,International Trade +442788,International Trade,International Trade +442787,International Trade,International Trade +438391,International Trade,International Trade +434895,International Trade,International Trade +432026,International Trade,International Trade +428084,International Trade,International Trade +428080,International Trade,International Trade +426119,International Trade,International Trade +423473,International Trade,International Trade +423471,International Trade,International Trade +423468,International Trade,International Trade +421582,International Trade,International Trade +421579,International Trade,International Trade +421575,International Trade,International Trade +419730,International Trade,International Trade +419723,International Trade,International Trade +413904,International Trade,International Trade +409601,International Trade,International Trade +409593,International Trade,International Trade +400105,International Trade,International Trade +400101,International Trade,International Trade +97437,International Trade,International Trade +145427,International Trade,International Trade +124899,International Trade,International Trade +224087,International Trade,International Trade +223548,International Trade,International Trade +177346,International Trade,International Trade +175405,International Trade,International Trade +169184,International Trade,International Trade +273006,International Trade,International Trade +270610,International Trade,International Trade +398596,International Trade,International Trade +378985,International Trade,International Trade +376162,International Trade,International Trade +536698,International Trade,International Trade +536660,International Trade,International Trade +531520,International Trade,International Trade +523968,International Trade,International Trade +520892,International Trade,International Trade +516664,International Trade,International Trade +516663,International Trade,International Trade +515385,International Trade,International Trade +512330,International Trade,International Trade +509765,International Trade,International Trade +509760,International Trade,International Trade +507058,International Trade,International Trade +503640,International Trade,International Trade +500680,International Trade,International Trade +498005,International Trade,International Trade +494543,International Trade,International Trade +486878,International Trade,International Trade +482049,International Trade,International Trade +458190,International Trade,International Trade +457191,International Trade,International Trade +457190,International Trade,International Trade +457188,International Trade,International Trade +457185,International Trade,International Trade +455274,International Trade,International Trade +451445,International Trade,International Trade +446611,International Trade,International Trade +442785,International Trade,International Trade +438427,International Trade,International Trade +438389,International Trade,International Trade +438385,International Trade,International Trade +434894,International Trade,International Trade +433538,International Trade,International Trade +433454,International Trade,International Trade +433453,International Trade,International Trade +430789,International Trade,International Trade +426121,International Trade,International Trade +426092,International Trade,International Trade +423472,International Trade,International Trade +423470,International Trade,International Trade +423462,International Trade,International Trade +419733,International Trade,International Trade +419726,International Trade,International Trade +106335,Other,Labelling +97425,Other,Labelling +146050,Other,Labelling +159802,Other,Research & Development +125086,Other,Fisheries Act +97463,Other,Fisheries Act +153427,Other,Fisheries Act +137554,Other,regulatory reform +137534,Other,regulatory reform +97490,Other,regulatory reform +141477,Other,regulatory reform +141476,Other,regulatory reform +141475,Other,regulatory reform +430297,Infrastructure,Infrastructure +427928,Infrastructure,Infrastructure +97496,Infrastructure,Infrastructure +374916,Infrastructure,Infrastructure +374207,Infrastructure,Infrastructure +374193,Infrastructure,Infrastructure +371255,Infrastructure,Infrastructure +371241,Infrastructure,Infrastructure +371240,Infrastructure,Infrastructure +369615,Infrastructure,Infrastructure +424563,Infrastructure,Infrastructure +422034,Infrastructure,Infrastructure +422030,Infrastructure,Infrastructure +422027,Infrastructure,Infrastructure +422021,Infrastructure,Infrastructure +418392,Infrastructure,Infrastructure +416906,Infrastructure,Infrastructure +416873,Infrastructure,Infrastructure +414161,Infrastructure,Infrastructure +414158,Infrastructure,Infrastructure +411835,Infrastructure,Infrastructure +411553,Infrastructure,Infrastructure +411546,Infrastructure,Infrastructure +411542,Infrastructure,Infrastructure +411535,Infrastructure,Infrastructure +411533,Infrastructure,Infrastructure +411525,Infrastructure,Infrastructure +411524,Infrastructure,Infrastructure +411459,Infrastructure,Infrastructure +404109,Infrastructure,Infrastructure +398938,Infrastructure,Infrastructure +395851,Infrastructure,Infrastructure +394523,Infrastructure,Infrastructure +389514,Infrastructure,Infrastructure +389511,Infrastructure,Infrastructure +389508,Infrastructure,Infrastructure +389503,Infrastructure,Infrastructure +389490,Infrastructure,Infrastructure +389482,Infrastructure,Infrastructure +384535,Infrastructure,Infrastructure +377908,Infrastructure,Infrastructure +377907,Infrastructure,Infrastructure +377905,Infrastructure,Infrastructure +377904,Infrastructure,Infrastructure +377674,Infrastructure,Infrastructure +505220,Infrastructure,Infrastructure +501244,Infrastructure,Infrastructure +496282,Infrastructure,Infrastructure +496132,Infrastructure,Infrastructure +488222,Infrastructure,Infrastructure +453679,Infrastructure,Infrastructure +450914,Infrastructure,Infrastructure +448658,Infrastructure,Infrastructure +439406,Infrastructure,Infrastructure +439400,Infrastructure,Infrastructure +439256,Infrastructure,Infrastructure +439235,Infrastructure,Infrastructure +439085,Infrastructure,Infrastructure +439081,Infrastructure,Infrastructure +439074,Infrastructure,Infrastructure +438623,Infrastructure,Infrastructure +437373,Infrastructure,Infrastructure +492859,Infrastructure,Infrastructure +453695,Infrastructure,Infrastructure +97496,Infrastructure,Infrastructure +371237,Infrastructure,Infrastructure +371235,Infrastructure,Infrastructure +371232,Infrastructure,Infrastructure +371206,Infrastructure,Infrastructure +371205,Infrastructure,Infrastructure +439271,Infrastructure,Infrastructure +439261,Infrastructure,Infrastructure +439244,Infrastructure,Infrastructure +439240,Infrastructure,Infrastructure +439217,Infrastructure,Infrastructure +438628,Infrastructure,Infrastructure +438617,Infrastructure,Infrastructure +437316,Infrastructure,Infrastructure +427946,Infrastructure,Infrastructure +422019,Infrastructure,Infrastructure +422017,Infrastructure,Infrastructure +411558,Infrastructure,Infrastructure +411550,Infrastructure,Infrastructure +411549,Infrastructure,Infrastructure +411548,Infrastructure,Infrastructure +411540,Infrastructure,Infrastructure +411539,Infrastructure,Infrastructure +411538,Infrastructure,Infrastructure +411536,Infrastructure,Infrastructure +411530,Infrastructure,Infrastructure +411527,Infrastructure,Infrastructure +411456,Infrastructure,Infrastructure +406426,Infrastructure,Infrastructure +400903,Infrastructure,Infrastructure +400887,Infrastructure,Infrastructure +398946,Infrastructure,Infrastructure +396114,Infrastructure,Infrastructure +395854,Infrastructure,Infrastructure +394711,Infrastructure,Infrastructure +394510,Infrastructure,Infrastructure +394503,Infrastructure,Infrastructure +389518,Infrastructure,Infrastructure +389515,Infrastructure,Infrastructure +389510,Infrastructure,Infrastructure +389505,Infrastructure,Infrastructure +384536,Infrastructure,Infrastructure +371263,Infrastructure,Infrastructure +371245,Infrastructure,Infrastructure +371242,Infrastructure,Infrastructure +516836,Infrastructure,Infrastructure +422023,Infrastructure,Infrastructure +516833,Infrastructure,Infrastructure +97496,Infrastructure,Infrastructure +369617,Infrastructure,Infrastructure +416910,Infrastructure,Infrastructure +416901,Infrastructure,Infrastructure +411557,Infrastructure,Infrastructure +411544,Infrastructure,Infrastructure +411543,Infrastructure,Infrastructure +411534,Infrastructure,Infrastructure +411523,Infrastructure,Infrastructure +404107,Infrastructure,Infrastructure +404099,Infrastructure,Infrastructure +404092,Infrastructure,Infrastructure +400899,Infrastructure,Infrastructure +394525,Infrastructure,Infrastructure +394505,Infrastructure,Infrastructure +389493,Infrastructure,Infrastructure +389481,Infrastructure,Infrastructure +377906,Infrastructure,Infrastructure +374208,Infrastructure,Infrastructure +371506,Infrastructure,Infrastructure +371260,Infrastructure,Infrastructure +371258,Infrastructure,Infrastructure +371253,Infrastructure,Infrastructure +371252,Infrastructure,Infrastructure +371250,Infrastructure,Infrastructure +371248,Infrastructure,Infrastructure +371247,Infrastructure,Infrastructure +371244,Infrastructure,Infrastructure +371243,Infrastructure,Infrastructure +510485,Infrastructure,Infrastructure +498891,Infrastructure,Infrastructure +487554,Infrastructure,Infrastructure +446378,Infrastructure,Infrastructure +444609,Infrastructure,Infrastructure +444600,Infrastructure,Infrastructure +439404,Infrastructure,Infrastructure +439267,Infrastructure,Infrastructure +439252,Infrastructure,Infrastructure +439249,Infrastructure,Infrastructure +439232,Infrastructure,Infrastructure +437376,Infrastructure,Infrastructure +437366,Infrastructure,Infrastructure +428044,Infrastructure,Infrastructure +427945,Infrastructure,Infrastructure +425822,Infrastructure,Infrastructure +97523,Other,release of Batch 5 risk assessments under CEPA Chemical management plan +97546,Other,"Bill C-4, Canada Not-for-Profit Corporations Act" +127635,Other,Grain transportation +127634,Other,Grain transportation +97553,Other,Grain transportation +152943,Other,Grain transportation +133017,Other,Grain transportation +97657,Other,Goods and Services Tax (Canada) +97655,Other,Goods and Services Tax (Canada) +97709,Other,politique de radiodiffusioin en matière de licence spécialisée +118936,Other,Academic Research Infrastructure +118935,Other,Academic Research Infrastructure +118934,Other,Academic Research Infrastructure +108955,Other,Academic Research Infrastructure +108954,Other,Academic Research Infrastructure +144497,Other,Academic Research Infrastructure +120355,Other,Dairy Product Regulations +97895,Other,Disability +108056,Environment,Environment +108056,Industry,Industry +138163,Infrastructure,Infrastructure +136414,Other,Tobacco Issues +148159,Energy,Energy +102618,Consumer Issues,Consumer Issues +112142,Financial Institutions,Financial Institutions +112141,Financial Institutions,Financial Institutions +112140,Financial Institutions,Financial Institutions +112139,Financial Institutions,Financial Institutions +112138,Financial Institutions,Financial Institutions +112137,Financial Institutions,Financial Institutions +112136,Financial Institutions,Financial Institutions +112135,Financial Institutions,Financial Institutions +112134,Financial Institutions,Financial Institutions +112146,Financial Institutions,Financial Institutions +112145,Financial Institutions,Financial Institutions +112144,Financial Institutions,Financial Institutions +101315,Energy,Energy +98275,Other,Integrated Community Energy Systems +98274,Other,Integrated Community Energy Systems +146280,Other,Copyright +146278,Other,Copyright +98374,Taxation and Finance,Taxation and Finance +100534,Other,Amendments to the Navigable Waters Protection Act via Bill C-10 +98441,Other,Amendments to the Navigable Waters Protection Act via Bill C-10 +433189,Justice and Law Enforcement,Justice et application des lois +432792,Justice and Law Enforcement,Justice et application des lois +152167,Justice and Law Enforcement,Justice et application des lois +114159,Other,Climate Change +114156,Other,Climate Change +105654,Other,Climate Change +105639,Other,Responsible Care and Commitment to Sustainability +191556,Industry,Industry +191555,Industry,Industry +157220,Other,International Air Policy Regulations +157189,Other,International Air Policy Regulations +98254,Other,International Air Policy Regulations +162632,Other,International Air Policy Regulations +211273,Consumer Issues,Consumer Issues +211271,Consumer Issues,Consumer Issues +211273,Financial Institutions,Financial Institutions +211273,Small Business,Small Business +131777,Other,housing programs +131776,Other,housing programs +131777,Other,low cost municipal loan program +131776,Other,low cost municipal loan program +379035,Consumer Issues,Consumer Issues +379032,Consumer Issues,Consumer Issues +372150,Consumer Issues,Consumer Issues +370068,Consumer Issues,Consumer Issues +365276,Consumer Issues,Consumer Issues +362299,Consumer Issues,Consumer Issues +447223,Consumer Issues,Consumer Issues +393948,Consumer Issues,Consumer Issues +392666,Consumer Issues,Consumer Issues +393948,Financial Institutions,Financial Institutions +392666,Financial Institutions,Financial Institutions +250805,Financial Institutions,Financial Institutions +124281,Financial Institutions,Financial Institutions +385875,Financial Institutions,Financial Institutions +379035,Financial Institutions,Financial Institutions +379032,Financial Institutions,Financial Institutions +372150,Financial Institutions,Financial Institutions +370068,Financial Institutions,Financial Institutions +366552,Financial Institutions,Financial Institutions +365276,Financial Institutions,Financial Institutions +362299,Financial Institutions,Financial Institutions +348497,Financial Institutions,Financial Institutions +344043,Financial Institutions,Financial Institutions +340794,Financial Institutions,Financial Institutions +339045,Financial Institutions,Financial Institutions +331624,Financial Institutions,Financial Institutions +327897,Financial Institutions,Financial Institutions +327896,Financial Institutions,Financial Institutions +327895,Financial Institutions,Financial Institutions +325131,Financial Institutions,Financial Institutions +325025,Financial Institutions,Financial Institutions +322269,Financial Institutions,Financial Institutions +322268,Financial Institutions,Financial Institutions +318510,Financial Institutions,Financial Institutions +318509,Financial Institutions,Financial Institutions +317130,Financial Institutions,Financial Institutions +317129,Financial Institutions,Financial Institutions +313492,Financial Institutions,Financial Institutions +310674,Financial Institutions,Financial Institutions +310673,Financial Institutions,Financial Institutions +264474,Financial Institutions,Financial Institutions +259596,Financial Institutions,Financial Institutions +254143,Financial Institutions,Financial Institutions +460100,Financial Institutions,Financial Institutions +459664,Financial Institutions,Financial Institutions +447223,Financial Institutions,Financial Institutions +432366,Financial Institutions,Financial Institutions +432365,Financial Institutions,Financial Institutions +432364,Financial Institutions,Financial Institutions +432363,Financial Institutions,Financial Institutions +430552,Financial Institutions,Financial Institutions +427847,Financial Institutions,Financial Institutions +408677,Financial Institutions,Financial Institutions +404720,Financial Institutions,Financial Institutions +404719,Financial Institutions,Financial Institutions +404716,Financial Institutions,Financial Institutions +400019,Financial Institutions,Financial Institutions +400015,Financial Institutions,Financial Institutions +363283,Industry,Industry +362299,Industry,Industry +124281,Industry,Industry +348497,Industry,Industry +344043,Industry,Industry +339046,Industry,Industry +335982,Industry,Industry +264469,Industry,Industry +395631,Industry,Industry +395630,Industry,Industry +395629,Industry,Industry +385875,Industry,Industry +201257,Health,Health +242730,Transportation,Transportation +378222,Transportation,Transportation +98854,Transportation,Transportation +445467,International Trade,International Trade +445463,International Trade,International Trade +101714,International Trade,International Trade +98834,International Trade,International Trade +153039,International Trade,International Trade +148086,International Trade,International Trade +109435,International Trade,International Trade +106660,International Trade,International Trade +106292,International Trade,International Trade +106290,International Trade,International Trade +106254,International Trade,International Trade +106199,International Trade,International Trade +106176,International Trade,International Trade +106140,International Trade,International Trade +350281,International Trade,International Trade +350280,International Trade,International Trade +344907,International Trade,International Trade +335115,International Trade,International Trade +335113,International Trade,International Trade +335112,International Trade,International Trade +335111,International Trade,International Trade +335110,International Trade,International Trade +335109,International Trade,International Trade +330262,International Trade,International Trade +330261,International Trade,International Trade +328349,International Trade,International Trade +321513,International Trade,International Trade +321512,International Trade,International Trade +321511,International Trade,International Trade +320790,International Trade,International Trade +318027,International Trade,International Trade +318022,International Trade,International Trade +318021,International Trade,International Trade +318019,International Trade,International Trade +316577,International Trade,International Trade +316572,International Trade,International Trade +316570,International Trade,International Trade +316569,International Trade,International Trade +314613,International Trade,International Trade +314612,International Trade,International Trade +305010,International Trade,International Trade +294854,International Trade,International Trade +288009,International Trade,International Trade +286830,International Trade,International Trade +267649,International Trade,International Trade +258929,International Trade,International Trade +257930,International Trade,International Trade +233113,International Trade,International Trade +211887,International Trade,International Trade +437507,International Trade,International Trade +437506,International Trade,International Trade +437505,International Trade,International Trade +437504,International Trade,International Trade +436443,International Trade,International Trade +430156,International Trade,International Trade +427295,International Trade,International Trade +424647,International Trade,International Trade +420604,International Trade,International Trade +414331,International Trade,International Trade +414142,International Trade,International Trade +414140,International Trade,International Trade +414138,International Trade,International Trade +414060,International Trade,International Trade +410413,International Trade,International Trade +410412,International Trade,International Trade +407846,International Trade,International Trade +407060,International Trade,International Trade +406103,International Trade,International Trade +404302,International Trade,International Trade +404301,International Trade,International Trade +401270,International Trade,International Trade +400002,International Trade,International Trade +400001,International Trade,International Trade +399666,International Trade,International Trade +399665,International Trade,International Trade +399663,International Trade,International Trade +397666,International Trade,International Trade +397554,International Trade,International Trade +397553,International Trade,International Trade +395776,International Trade,International Trade +395259,International Trade,International Trade +395258,International Trade,International Trade +394771,International Trade,International Trade +393917,International Trade,International Trade +393503,International Trade,International Trade +393159,International Trade,International Trade +509504,International Trade,International Trade +506431,International Trade,International Trade +482744,International Trade,International Trade +474288,International Trade,International Trade +465469,International Trade,International Trade +457976,International Trade,International Trade +457740,International Trade,International Trade +456250,International Trade,International Trade +454510,International Trade,International Trade +454507,International Trade,International Trade +450896,International Trade,International Trade +450895,International Trade,International Trade +450894,International Trade,International Trade +446623,International Trade,International Trade +446622,International Trade,International Trade +446086,International Trade,International Trade +446085,International Trade,International Trade +446083,International Trade,International Trade +446082,International Trade,International Trade +446077,International Trade,International Trade +446064,International Trade,International Trade +445856,International Trade,International Trade +106980,Industry,Industry +106980,Regional Development,Regional Development +106977,Infrastructure,Infrastructure +106976,Infrastructure,Infrastructure +106979,Infrastructure,Infrastructure +106984,Infrastructure,Infrastructure +106983,Infrastructure,Infrastructure +104775,Consumer Issues,Consumer Issues +104774,Consumer Issues,Consumer Issues +104775,Financial Institutions,Financial Institutions +104774,Financial Institutions,Financial Institutions +104774,Small Business,Small Business +104775,Taxation and Finance,Taxation and Finance +99976,Other,Agence de Revenu du Canada +122894,Other,Foreign ownership rules for Canadian satellite providers +103534,Other,Foreign ownership rules for Canadian satellite providers +140755,Other,Foreign ownership rules for Canadian satellite providers +140737,Other,Foreign ownership rules for Canadian satellite providers +140736,Other,Foreign ownership rules for Canadian satellite providers +140735,Other,Foreign ownership rules for Canadian satellite providers +140734,Other,Foreign ownership rules for Canadian satellite providers +123154,Other,Foreign ownership rules for Canadian satellite providers +334956,International Trade,International Trade +125374,International Trade,International Trade +112455,International Trade,International Trade +197393,International Trade,International Trade +155406,International Trade,International Trade +308649,International Trade,International Trade +308640,International Trade,International Trade +268829,International Trade,International Trade +264057,International Trade,International Trade +244425,International Trade,International Trade +240276,International Trade,International Trade +210147,International Trade,International Trade +357774,International Trade,International Trade +353322,International Trade,International Trade +351324,International Trade,International Trade +346497,International Trade,International Trade +346477,International Trade,International Trade +102194,Regional Development,Regional Development +129534,Regional Development,Regional Development +102197,Regional Development,Regional Development +102196,Regional Development,Regional Development +99276,Other,Consumer Issues +99277,Intellectual Property,Intellectual Property +99276,Intellectual Property,Intellectual Property +99278,Other,Airline Advertising +99288,Other,Canadian Space Policy +99299,Other,Federal Government's Water Policy and Climate Change Policy +352540,Environment,Environment +513592,Environment,Environment +459415,Environment,Environment +372103,Environment,Environment +368825,Environment,Environment +368814,Environment,Environment +368812,Environment,Environment +368804,Environment,Environment +355753,Environment,Environment +352545,Environment,Environment +352543,Environment,Environment +352542,Environment,Environment +227389,Defence,Defence +380254,Defence,Defence +380253,Defence,Defence +106406,Defence,Defence +106404,Defence,Defence +132626,Defence,Defence +132616,Defence,Defence +192979,Defence,Defence +192978,Defence,Defence +188528,Defence,Defence +188527,Defence,Defence +188526,Defence,Defence +188525,Defence,Defence +201987,Defence,Defence +450528,Defence,Defence +381791,Defence,Defence +380261,Defence,Defence +380260,Defence,Defence +380259,Defence,Defence +106404,Other,Research & Development Funding +99515,Other,Bio-digestors +99519,Other,Federal telecom system +99519,Other,Municipal Rights-of-Way +142335,Other,Aviation Safety +124853,Other,Aviation Safety +108334,Other,Aviation Safety +108314,Other,Aviation Safety +116775,Other,Rail Related Issues +99698,Other,Rail Related Issues +99701,Other,Rail Related Issues +200475,Employment and Training,Employment and Training +200466,Employment and Training,Employment and Training +233390,Employment and Training,Employment and Training +206570,Employment and Training,Employment and Training +161221,Energy,Energy +156679,Energy,Energy +233396,Energy,Energy +206570,Energy,Energy +216948,Environment,Environment +206570,Environment,Environment +200478,Environment,Environment +200475,Environment,Environment +200470,Environment,Environment +200466,Environment,Environment +168816,Environment,Environment +161221,Environment,Environment +233399,Environment,Environment +233398,Environment,Environment +165558,Industry,Industry +200475,Labour,Labour +200466,Labour,Labour +233396,Labour,Labour +200466,Mining,Mining +200460,Mining,Mining +100867,Mining,Mining +151466,Mining,Mining +168816,Mining,Mining +165558,Mining,Mining +161221,Mining,Mining +156679,Mining,Mining +268753,Mining,Mining +268752,Mining,Mining +258373,Mining,Mining +258372,Mining,Mining +258369,Mining,Mining +258352,Mining,Mining +250815,Mining,Mining +250812,Mining,Mining +250808,Mining,Mining +250806,Mining,Mining +250743,Mining,Mining +248112,Mining,Mining +248111,Mining,Mining +248110,Mining,Mining +248109,Mining,Mining +240630,Mining,Mining +233401,Mining,Mining +233399,Mining,Mining +233396,Mining,Mining +233393,Mining,Mining +233392,Mining,Mining +233390,Mining,Mining +216948,Mining,Mining +206570,Mining,Mining +200478,Mining,Mining +200475,Mining,Mining +136000,Employment and Training,Employment and Training +207532,Employment and Training,Employment and Training +109434,Infrastructure,Infrastructure +106015,Infrastructure,Infrastructure +106014,Infrastructure,Infrastructure +120907,Infrastructure,Infrastructure +120905,Infrastructure,Infrastructure +117835,Infrastructure,Infrastructure +162437,Agriculture,Agriculture +162423,Agriculture,Agriculture +109922,Agriculture,Agriculture +109920,Agriculture,Agriculture +150383,Agriculture,Agriculture +124323,Agriculture,Agriculture +340512,Agriculture,Agriculture +340511,Agriculture,Agriculture +340509,Agriculture,Agriculture +340477,Agriculture,Agriculture +223435,Agriculture,Agriculture +199953,Agriculture,Agriculture +199948,Agriculture,Agriculture +199943,Agriculture,Agriculture +162454,Agriculture,Agriculture +162450,Agriculture,Agriculture +162445,Agriculture,Agriculture +109920,Other,Animal Welfare +162423,Consumer Issues,Consumer Issues +324955,Consumer Issues,Consumer Issues +109922,Consumer Issues,Consumer Issues +109920,Consumer Issues,Consumer Issues +162454,Consumer Issues,Consumer Issues +162450,Consumer Issues,Consumer Issues +162445,Consumer Issues,Consumer Issues +162437,Health,Health +162423,Health,Health +109922,Health,Health +109920,Health,Health +162454,Health,Health +162450,Health,Health +162445,Health,Health +162437,Industry,Industry +162423,Industry,Industry +162454,Industry,Industry +162450,Industry,Industry +162445,Industry,Industry +199948,Internal Trade,Internal Trade +109922,International Relations,International Relations +109920,International Relations,International Relations +103775,Other,Automotive +101474,Other,Automotive +99977,Other,Compositional cheese standards +101319,Other,Droits d'auteur +106034,Infrastructure,Infrastructure +125100,Infrastructure,Infrastructure +113815,Infrastructure,Infrastructure +106055,Infrastructure,Infrastructure +106054,Infrastructure,Infrastructure +106054,International Trade,International Trade +106034,International Trade,International Trade +113815,Regional Development,Regional Development +100157,Other,Bill C-33 +100155,Other,Bill C-33 +100182,Other,Canada Transportation Act - Proposed Amendments +131858,Consumer Issues,Consumer Issues +131857,Consumer Issues,Consumer Issues +128183,Consumer Issues,Consumer Issues +124843,Consumer Issues,Consumer Issues +124842,Consumer Issues,Consumer Issues +124840,Consumer Issues,Consumer Issues +124835,Consumer Issues,Consumer Issues +124842,Financial Institutions,Financial Institutions +124840,Financial Institutions,Financial Institutions +445248,Agriculture,Agriculture +445245,Agriculture,Agriculture +113901,Agriculture,Agriculture +100238,Agriculture,Agriculture +288590,Agriculture,Agriculture +288589,Agriculture,Agriculture +285430,Agriculture,Agriculture +285429,Agriculture,Agriculture +284109,Agriculture,Agriculture +284092,Agriculture,Agriculture +284091,Agriculture,Agriculture +284090,Agriculture,Agriculture +284089,Agriculture,Agriculture +280313,Agriculture,Agriculture +164325,Agriculture,Agriculture +460486,Agriculture,Agriculture +456920,Agriculture,Agriculture +456457,Agriculture,Agriculture +454783,Agriculture,Agriculture +452647,Agriculture,Agriculture +459741,Intellectual Property,Intellectual Property +100540,Other,Mackenzie Gas Pipeline +120779,Other,Mackenzie Gas Pipeline +120778,Other,Mackenzie Gas Pipeline +116899,Other,Mackenzie Gas Pipeline +116898,Other,Mackenzie Gas Pipeline +108434,Other,Mackenzie Gas Pipeline +108275,Other,Mackenzie Gas Pipeline +149139,Other,Financial Sector Policy +100306,Other,Financial Sector Policy +108640,Other,Knowledge Infrastructure Program Application +101153,Other,Climate Change Policies +101148,Other,Climate Change Policies +109222,Other,Energy Infrastructure +193004,Environment,Environment +192993,Environment,Environment +156888,Environment,Environment +117315,Environment,Environment +175182,Environment,Environment +175181,Environment,Environment +170380,Environment,Environment +167986,Environment,Environment +284409,Environment,Environment +236020,Environment,Environment +225573,Environment,Environment +225571,Environment,Environment +225569,Environment,Environment +215929,Environment,Environment +206427,Environment,Environment +206130,Environment,Environment +165467,Infrastructure,Infrastructure +165466,Infrastructure,Infrastructure +117295,Infrastructure,Infrastructure +199252,Infrastructure,Infrastructure +193710,Infrastructure,Infrastructure +193694,Infrastructure,Infrastructure +193663,Infrastructure,Infrastructure +192993,Infrastructure,Infrastructure +188706,Infrastructure,Infrastructure +536590,Energy,Énergie +535262,Energy,Énergie +124895,Energy,Énergie +109956,Energy,Énergie +212707,Energy,Énergie +206047,Energy,Énergie +202954,Energy,Énergie +202953,Energy,Énergie +202952,Energy,Énergie +202408,Energy,Énergie +199686,Energy,Énergie +199685,Energy,Énergie +199487,Energy,Énergie +197144,Energy,Énergie +190884,Energy,Énergie +350600,Energy,Énergie +350598,Energy,Énergie +350594,Energy,Énergie +350593,Energy,Énergie +350590,Energy,Énergie +350561,Energy,Énergie +350559,Energy,Énergie +350557,Energy,Énergie +350556,Energy,Énergie +350555,Energy,Énergie +350553,Energy,Énergie +350552,Energy,Énergie +350550,Energy,Énergie +348038,Energy,Énergie +348037,Energy,Énergie +347882,Energy,Énergie +341914,Energy,Énergie +341911,Energy,Énergie +338609,Energy,Énergie +338605,Energy,Énergie +332729,Energy,Énergie +307010,Energy,Énergie +296781,Energy,Énergie +275990,Energy,Énergie +274231,Energy,Énergie +274230,Energy,Énergie +274229,Energy,Énergie +274210,Energy,Énergie +274209,Energy,Énergie +274110,Energy,Énergie +274109,Energy,Énergie +254176,Energy,Énergie +254171,Energy,Énergie +242889,Energy,Énergie +242850,Energy,Énergie +444218,Energy,Énergie +440319,Energy,Énergie +440318,Energy,Énergie +440317,Energy,Énergie +440315,Energy,Énergie +438705,Energy,Énergie +438307,Energy,Énergie +438306,Energy,Énergie +438304,Energy,Énergie +438301,Energy,Énergie +420689,Energy,Énergie +420050,Energy,Énergie +420048,Energy,Énergie +420047,Energy,Énergie +420046,Energy,Énergie +420045,Energy,Énergie +420044,Energy,Énergie +420043,Energy,Énergie +403314,Energy,Énergie +403310,Energy,Énergie +403309,Energy,Énergie +403305,Energy,Énergie +403298,Energy,Énergie +398751,Energy,Énergie +398748,Energy,Énergie +398741,Energy,Énergie +387577,Energy,Énergie +387576,Energy,Énergie +384718,Energy,Énergie +384717,Energy,Énergie +384716,Energy,Énergie +383448,Energy,Énergie +383447,Energy,Énergie +382336,Energy,Énergie +382331,Energy,Énergie +382329,Energy,Énergie +378530,Energy,Énergie +378528,Energy,Énergie +378527,Energy,Énergie +375914,Energy,Énergie +375911,Energy,Énergie +375908,Energy,Énergie +372623,Energy,Énergie +372622,Energy,Énergie +372620,Energy,Énergie +372618,Energy,Énergie +357287,Energy,Énergie +357285,Energy,Énergie +357284,Energy,Énergie +357282,Energy,Énergie +357281,Energy,Énergie +355184,Energy,Énergie +352942,Energy,Énergie +352941,Energy,Énergie +352940,Energy,Énergie +350604,Energy,Énergie +350603,Energy,Énergie +350602,Energy,Énergie +511895,Energy,Énergie +479039,Energy,Énergie +479031,Energy,Énergie +476269,Energy,Énergie +476268,Energy,Énergie +476137,Energy,Énergie +474889,Energy,Énergie +474887,Energy,Énergie +471715,Energy,Énergie +471505,Energy,Énergie +471404,Energy,Énergie +470088,Energy,Énergie +469280,Energy,Énergie +469098,Energy,Énergie +468337,Energy,Énergie +467524,Energy,Énergie +465662,Energy,Énergie +465661,Energy,Énergie +465660,Energy,Énergie +465656,Energy,Énergie +465655,Energy,Énergie +465654,Energy,Énergie +465653,Energy,Énergie +465652,Energy,Énergie +462499,Energy,Énergie +462498,Energy,Énergie +461997,Energy,Énergie +460892,Energy,Énergie +460891,Energy,Énergie +459975,Energy,Énergie +459956,Energy,Énergie +458416,Energy,Énergie +458353,Energy,Énergie +458351,Energy,Énergie +458350,Energy,Énergie +458348,Energy,Énergie +458346,Energy,Énergie +458345,Energy,Énergie +458342,Energy,Énergie +458339,Energy,Énergie +457929,Energy,Énergie +456857,Energy,Énergie +454158,Energy,Énergie +454157,Energy,Énergie +454156,Energy,Énergie +454155,Energy,Énergie +451016,Energy,Énergie +451015,Energy,Énergie +450765,Energy,Énergie +448388,Energy,Énergie +448329,Energy,Énergie +448325,Energy,Énergie +544215,Energy,Énergie +541742,Energy,Énergie +541736,Energy,Énergie +541735,Energy,Énergie +536614,Energy,Énergie +536613,Energy,Énergie +536612,Energy,Énergie +536611,Energy,Énergie +536610,Energy,Énergie +536609,Energy,Énergie +536607,Energy,Énergie +536606,Energy,Énergie +536604,Energy,Énergie +536598,Energy,Énergie +536596,Energy,Énergie +536594,Energy,Énergie +536592,Energy,Énergie +420043,Environment,Environnement +418163,Environment,Environnement +206047,Environment,Environnement +202954,Environment,Environnement +202953,Environment,Environnement +202952,Environment,Environnement +202408,Environment,Environnement +199686,Environment,Environnement +199685,Environment,Environnement +199487,Environment,Environnement +197144,Environment,Environnement +190884,Environment,Environnement +296781,Environment,Environnement +275990,Environment,Environnement +274231,Environment,Environnement +274230,Environment,Environnement +274229,Environment,Environnement +274210,Environment,Environnement +274209,Environment,Environnement +274110,Environment,Environnement +274109,Environment,Environnement +242889,Environment,Environnement +242850,Environment,Environnement +212707,Environment,Environnement +415140,Environment,Environnement +415138,Environment,Environnement +415134,Environment,Environnement +412405,Environment,Environnement +409855,Environment,Environnement +409614,Environment,Environnement +405353,Environment,Environnement +405351,Environment,Environnement +403349,Environment,Environnement +403314,Environment,Environnement +403310,Environment,Environnement +403309,Environment,Environnement +403305,Environment,Environnement +403298,Environment,Environnement +400938,Environment,Environnement +400934,Environment,Environnement +400915,Environment,Environnement +398751,Environment,Environnement +398748,Environment,Environnement +398741,Environment,Environnement +395734,Environment,Environnement +395731,Environment,Environnement +395729,Environment,Environnement +395727,Environment,Environnement +395722,Environment,Environnement +395718,Environment,Environnement +395716,Environment,Environnement +395711,Environment,Environnement +393505,Environment,Environnement +390953,Environment,Environnement +387577,Environment,Environnement +387576,Environment,Environnement +384718,Environment,Environnement +384717,Environment,Environnement +384716,Environment,Environnement +383448,Environment,Environnement +383447,Environment,Environnement +382336,Environment,Environnement +382331,Environment,Environnement +382329,Environment,Environnement +378530,Environment,Environnement +378528,Environment,Environnement +378527,Environment,Environnement +375914,Environment,Environnement +375911,Environment,Environnement +375908,Environment,Environnement +372623,Environment,Environnement +372622,Environment,Environnement +372620,Environment,Environnement +372618,Environment,Environnement +357287,Environment,Environnement +357285,Environment,Environnement +357284,Environment,Environnement +357282,Environment,Environnement +357281,Environment,Environnement +355184,Environment,Environnement +352942,Environment,Environnement +352941,Environment,Environnement +352940,Environment,Environnement +350604,Environment,Environnement +350603,Environment,Environnement +350602,Environment,Environnement +350600,Environment,Environnement +350598,Environment,Environnement +350594,Environment,Environnement +350593,Environment,Environnement +350590,Environment,Environnement +350561,Environment,Environnement +350559,Environment,Environnement +350557,Environment,Environnement +350556,Environment,Environnement +350555,Environment,Environnement +350553,Environment,Environnement +350552,Environment,Environnement +350550,Environment,Environnement +348038,Environment,Environnement +348037,Environment,Environnement +347882,Environment,Environnement +341914,Environment,Environnement +341911,Environment,Environnement +338609,Environment,Environnement +338605,Environment,Environnement +332729,Environment,Environnement +307010,Environment,Environnement +536607,Environment,Environnement +535262,Environment,Environnement +511895,Environment,Environnement +479039,Environment,Environnement +479031,Environment,Environnement +476269,Environment,Environnement +476268,Environment,Environnement +476137,Environment,Environnement +474889,Environment,Environnement +474887,Environment,Environnement +471715,Environment,Environnement +471505,Environment,Environnement +471404,Environment,Environnement +470088,Environment,Environnement +469280,Environment,Environnement +469098,Environment,Environnement +467524,Environment,Environnement +465662,Environment,Environnement +465661,Environment,Environnement +465660,Environment,Environnement +465656,Environment,Environnement +465655,Environment,Environnement +465654,Environment,Environnement +465653,Environment,Environnement +465652,Environment,Environnement +462499,Environment,Environnement +462498,Environment,Environnement +461997,Environment,Environnement +460892,Environment,Environnement +460891,Environment,Environnement +459975,Environment,Environnement +459956,Environment,Environnement +458416,Environment,Environnement +458353,Environment,Environnement +458351,Environment,Environnement +458350,Environment,Environnement +458348,Environment,Environnement +458346,Environment,Environnement +458345,Environment,Environnement +458342,Environment,Environnement +458339,Environment,Environnement +457929,Environment,Environnement +456857,Environment,Environnement +454158,Environment,Environnement +454157,Environment,Environnement +454156,Environment,Environnement +454155,Environment,Environnement +451016,Environment,Environnement +451015,Environment,Environnement +450765,Environment,Environnement +448388,Environment,Environnement +448329,Environment,Environnement +448325,Environment,Environnement +444218,Environment,Environnement +440319,Environment,Environnement +440317,Environment,Environnement +440315,Environment,Environnement +438705,Environment,Environnement +438307,Environment,Environnement +438306,Environment,Environnement +438304,Environment,Environnement +438301,Environment,Environnement +430634,Environment,Environnement +429098,Environment,Environnement +429096,Environment,Environnement +423594,Environment,Environnement +420689,Environment,Environnement +420050,Environment,Environnement +420048,Environment,Environnement +420047,Environment,Environnement +420046,Environment,Environnement +420045,Environment,Environnement +131606,Environment,Environment +116139,Environment,Environment +108055,Environment,Environment +108054,Environment,Environment +103623,Environment,Environment +103614,Environment,Environment +100394,Environment,Environment +141783,Environment,Environment +138162,Environment,Environment +138156,Environment,Environment +135709,Industry,Industry +131606,Industry,Industry +116139,Industry,Industry +108055,Industry,Industry +108054,Industry,Industry +103623,Industry,Industry +103614,Industry,Industry +100394,Industry,Industry +141783,Industry,Industry +138162,Industry,Industry +100396,Other,Privacy issues related to copyright reform +340509,International Trade,International Trade +340477,International Trade,International Trade +223435,International Trade,International Trade +162454,International Trade,International Trade +162450,International Trade,International Trade +162445,International Trade,International Trade +162442,International Trade,International Trade +162437,International Trade,International Trade +150383,International Trade,International Trade +132728,International Trade,International Trade +324955,International Trade,International Trade +340512,International Trade,International Trade +100424,Other,Fiscal Policy +100424,Other,G 20 Summit +131125,Other,Communications +131123,Other,Communications +131122,Other,Communications +131121,Other,Communications +131119,Other,Communications +125854,Other,Communications +120396,Other,Communications +120395,Other,Communications +120394,Other,Communications +119994,Other,Communications +148444,Other,Communications +142155,Other,Communications +142154,Other,Communications +100792,Other,"CIDA policy and programming priorities for good governance, human rights and rule of law." +100502,Other,"CIDA policy and programming priorities for good governance, human rights and rule of law." +100525,Other,Amendments to the Navigable Waters Protection Act via Bill C-10 +100522,Other,Amendments to the Navigable Waters Protection Act via Bill C-10 +100532,Other,Amendments to the Navigable Waters Protection Act via Bill C-10 +100527,Other,Environmental Assessment Law Changes +100526,Other,Environmental Assessment Law Changes +100529,Other,Environmental Assessment Law Changes +100542,Other,"Bill C-311, the Climate Change Accountability Act" +100541,Other,"Bill C-311, the Climate Change Accountability Act" +100539,Other,"Bill C-311, the Climate Change Accountability Act" +100537,Other,"Bill C-311, the Climate Change Accountability Act" +108517,Other,"Bill C-311, the Climate Change Accountability Act" +108516,Other,"Bill C-311, the Climate Change Accountability Act" +100546,Other,"Bill C-311, the Climate Change Accountability Act" +100545,Other,"Bill C-311, the Climate Change Accountability Act" +100841,Other,Corporate structure +100837,Other,Corporate structure +120458,Other,Corporate structure +120457,Other,Corporate structure +113182,Other,Corporate structure +100844,Other,Corporate structure +515731,International Relations,International Relations +422200,International Relations,International Relations +131815,International Relations,International Relations +127535,International Relations,International Relations +127534,International Relations,International Relations +173637,International Relations,International Relations +173635,International Relations,International Relations +173633,International Relations,International Relations +173630,International Relations,International Relations +173629,International Relations,International Relations +170804,International Relations,International Relations +169087,International Relations,International Relations +151620,International Relations,International Relations +151619,International Relations,International Relations +145259,International Relations,International Relations +141878,International Relations,International Relations +134864,International Relations,International Relations +134863,International Relations,International Relations +357737,International Relations,International Relations +316078,International Relations,International Relations +311169,International Relations,International Relations +254096,International Relations,International Relations +236909,International Relations,International Relations +227211,International Relations,International Relations +369890,Infrastructure,Infrastructure +192245,Agriculture,Agriculture +192244,Agriculture,Agriculture +192227,Agriculture,Agriculture +107715,Other,Climate Change +100872,Other,Climate Change +134534,Other,Climate Change +108636,Other,Knowledge Infrastructure Program Application +108644,Other,Knowledge Infrastructure Program Application +108638,Other,Knowledge Infrastructure Program Application +109755,Other,Pensions +105538,Other,Pensions +100880,Other,Pensions +135554,Other,Pensions +132552,Other,Pensions +129457,Other,Pensions +124138,Other,Pensions +124134,Other,Pensions +113555,Other,Pensions +109763,Other,Pensions +108642,Other,Knowledge Infrastructure Program Application +175106,Environment,Environment +294990,Environment,Environment +137034,Environment,Environment +108634,Other,Knowledge Infrastructure Program Application +162493,Other,Telecommunication Policy and Regulation +162430,Other,Telecommunication Policy and Regulation +100906,Other,Telecommunication Policy and Regulation +100904,Other,Telecommunication Policy and Regulation +100903,Other,Telecommunication Policy and Regulation +100898,Other,Telecommunication Policy and Regulation +162284,Other,Telecommunication Policy and Regulation +162004,Other,Telecommunication Policy and Regulation +159816,Other,Telecommunication Policy and Regulation +159780,Other,Telecommunication Policy and Regulation +159777,Other,Telecommunication Policy and Regulation +157008,Other,Telecommunication Policy and Regulation +157003,Other,Telecommunication Policy and Regulation +157001,Other,Telecommunication Policy and Regulation +156999,Other,Telecommunication Policy and Regulation +156994,Other,Telecommunication Policy and Regulation +156990,Other,Telecommunication Policy and Regulation +150659,Other,Telecommunication Policy and Regulation +150658,Other,Telecommunication Policy and Regulation +146059,Other,Telecommunication Policy and Regulation +146057,Other,Telecommunication Policy and Regulation +146055,Other,Telecommunication Policy and Regulation +146049,Other,Telecommunication Policy and Regulation +143177,Other,Telecommunication Policy and Regulation +131116,Other,Telecommunication Policy and Regulation +103155,Other,Telecommunication Policy and Regulation +100912,Other,Telecommunication Policy and Regulation +100910,Other,Telecommunication Policy and Regulation +100908,Other,Telecommunication Policy and Regulation +142544,Other,Federal-Provincial relations +156857,Other,Research/R&D +121178,Infrastructure,Infrastructure +121177,Infrastructure,Infrastructure +121176,Infrastructure,Infrastructure +121174,Infrastructure,Infrastructure +121166,Infrastructure,Infrastructure +201887,Infrastructure,Infrastructure +180651,Infrastructure,Infrastructure +151078,Infrastructure,Infrastructure +151077,Infrastructure,Infrastructure +136166,Infrastructure,Infrastructure +136165,Infrastructure,Infrastructure +136164,Infrastructure,Infrastructure +136163,Infrastructure,Infrastructure +136161,Infrastructure,Infrastructure +136160,Infrastructure,Infrastructure +121185,Infrastructure,Infrastructure +121181,Infrastructure,Infrastructure +136160,Transportation,Transportation +180651,Transportation,Transportation +162947,Transportation,Transportation +162946,Transportation,Transportation +162945,Transportation,Transportation +151078,Transportation,Transportation +151077,Transportation,Transportation +136166,Transportation,Transportation +136165,Transportation,Transportation +136164,Transportation,Transportation +136163,Transportation,Transportation +101036,Other,Technology Development Funding +100867,Other,Sustainable Development Initiatives +109220,Other,Energy +109216,Other,Energy +101143,Other,Energy +123636,Other,Energy +123635,Other,Energy +109231,Other,Northern Pipeline Act +109222,Other,Northern Pipeline Act +101159,Other,Northern Pipeline Act +101181,Other,Canada's response to Buy America provisions in US legislation / Canada-US border conditions +101179,Other,Canada's response to Buy America provisions in US legislation / Canada-US border conditions +160582,Industry,Industry +160581,Industry,Industry +106384,Industry,Industry +160581,Transportation,Transportation +106384,Transportation,Transportation +160638,Transportation,Transportation +540165,Regional Development,Regional Development +538298,Regional Development,Regional Development +101180,Regional Development,Regional Development +310498,Regional Development,Regional Development +405219,Regional Development,Regional Development +405218,Regional Development,Regional Development +403280,Regional Development,Regional Development +403271,Regional Development,Regional Development +394411,Regional Development,Regional Development +383804,Regional Development,Regional Development +383801,Regional Development,Regional Development +101282,Other,FPC introduction +394435,Regional Development,Regional Development +383787,Regional Development,Regional Development +101283,Regional Development,Regional Development +207144,Regional Development,Regional Development +482190,Regional Development,Regional Development +457751,Regional Development,Regional Development +457749,Regional Development,Regional Development +457748,Regional Development,Regional Development +445565,Regional Development,Regional Development +444212,Regional Development,Regional Development +413585,Regional Development,Regional Development +413573,Regional Development,Regional Development +409645,Regional Development,Regional Development +405223,Regional Development,Regional Development +403282,Regional Development,Regional Development +403274,Regional Development,Regional Development +197093,Transportation,Transports +197091,Transportation,Transports +197098,Transportation,Transports +101336,Other,Borders +101332,Other,Automotive Innovation Fund +145941,Other,Automotive Innovation Fund +101335,Other,Costs +101335,Other,Taxation +145732,Other,Climate Change and Energy Policy +142654,Other,Climate Change and Energy Policy +101406,Other,Climate Change and Energy Policy +161956,Other,Climate Change and Energy Policy +161949,Other,Climate Change and Energy Policy +159991,Other,Climate Change and Energy Policy +159987,Other,Climate Change and Energy Policy +159983,Other,Climate Change and Energy Policy +159979,Other,Climate Change and Energy Policy +471530,Employment and Training,Employment and Training +471529,Employment and Training,Employment and Training +128243,Employment and Training,Employment and Training +128239,Employment and Training,Employment and Training +128238,Employment and Training,Employment and Training +128237,Employment and Training,Employment and Training +128236,Employment and Training,Employment and Training +124624,Employment and Training,Employment and Training +124621,Employment and Training,Employment and Training +124617,Employment and Training,Employment and Training +124615,Employment and Training,Employment and Training +203331,Employment and Training,Employment and Training +189705,Employment and Training,Employment and Training +189704,Employment and Training,Employment and Training +132978,Employment and Training,Employment and Training +132977,Employment and Training,Employment and Training +132975,Employment and Training,Employment and Training +132974,Employment and Training,Employment and Training +132973,Employment and Training,Employment and Training +132972,Employment and Training,Employment and Training +132970,Employment and Training,Employment and Training +132964,Employment and Training,Employment and Training +132961,Employment and Training,Employment and Training +132960,Employment and Training,Employment and Training +276514,Employment and Training,Employment and Training +276512,Employment and Training,Employment and Training +276499,Employment and Training,Employment and Training +269071,Employment and Training,Employment and Training +262955,Employment and Training,Employment and Training +262954,Employment and Training,Employment and Training +262953,Employment and Training,Employment and Training +262952,Employment and Training,Employment and Training +262951,Employment and Training,Employment and Training +262950,Employment and Training,Employment and Training +262949,Employment and Training,Employment and Training +254270,Employment and Training,Employment and Training +254269,Employment and Training,Employment and Training +254256,Employment and Training,Employment and Training +254255,Employment and Training,Employment and Training +254251,Employment and Training,Employment and Training +254249,Employment and Training,Employment and Training +250745,Employment and Training,Employment and Training +250742,Employment and Training,Employment and Training +250740,Employment and Training,Employment and Training +250737,Employment and Training,Employment and Training +250734,Employment and Training,Employment and Training +250733,Employment and Training,Employment and Training +250732,Employment and Training,Employment and Training +250729,Employment and Training,Employment and Training +250728,Employment and Training,Employment and Training +250726,Employment and Training,Employment and Training +250724,Employment and Training,Employment and Training +250722,Employment and Training,Employment and Training +250721,Employment and Training,Employment and Training +250720,Employment and Training,Employment and Training +250719,Employment and Training,Employment and Training +250717,Employment and Training,Employment and Training +250715,Employment and Training,Employment and Training +250714,Employment and Training,Employment and Training +250713,Employment and Training,Employment and Training +250711,Employment and Training,Employment and Training +250710,Employment and Training,Employment and Training +250694,Employment and Training,Employment and Training +250691,Employment and Training,Employment and Training +250689,Employment and Training,Employment and Training +250686,Employment and Training,Employment and Training +245309,Employment and Training,Employment and Training +241075,Employment and Training,Employment and Training +241072,Employment and Training,Employment and Training +241070,Employment and Training,Employment and Training +241066,Employment and Training,Employment and Training +241062,Employment and Training,Employment and Training +241060,Employment and Training,Employment and Training +241056,Employment and Training,Employment and Training +233329,Employment and Training,Employment and Training +211707,Employment and Training,Employment and Training +207516,Employment and Training,Employment and Training +207510,Employment and Training,Employment and Training +373952,Employment and Training,Employment and Training +373950,Employment and Training,Employment and Training +373949,Employment and Training,Employment and Training +373948,Employment and Training,Employment and Training +373947,Employment and Training,Employment and Training +373946,Employment and Training,Employment and Training +373942,Employment and Training,Employment and Training +373912,Employment and Training,Employment and Training +373898,Employment and Training,Employment and Training +373877,Employment and Training,Employment and Training +371746,Employment and Training,Employment and Training +371745,Employment and Training,Employment and Training +371742,Employment and Training,Employment and Training +371738,Employment and Training,Employment and Training +371735,Employment and Training,Employment and Training +371734,Employment and Training,Employment and Training +371730,Employment and Training,Employment and Training +368778,Employment and Training,Employment and Training +368777,Employment and Training,Employment and Training +364865,Employment and Training,Employment and Training +355997,Employment and Training,Employment and Training +355992,Employment and Training,Employment and Training +350948,Employment and Training,Employment and Training +350947,Employment and Training,Employment and Training +350944,Employment and Training,Employment and Training +344641,Employment and Training,Employment and Training +344640,Employment and Training,Employment and Training +344639,Employment and Training,Employment and Training +344638,Employment and Training,Employment and Training +343537,Employment and Training,Employment and Training +342083,Employment and Training,Employment and Training +342081,Employment and Training,Employment and Training +342080,Employment and Training,Employment and Training +342079,Employment and Training,Employment and Training +342077,Employment and Training,Employment and Training +342019,Employment and Training,Employment and Training +342017,Employment and Training,Employment and Training +342015,Employment and Training,Employment and Training +342014,Employment and Training,Employment and Training +342012,Employment and Training,Employment and Training +342010,Employment and Training,Employment and Training +342002,Employment and Training,Employment and Training +342001,Employment and Training,Employment and Training +336241,Employment and Training,Employment and Training +336240,Employment and Training,Employment and Training +336239,Employment and Training,Employment and Training +336238,Employment and Training,Employment and Training +336237,Employment and Training,Employment and Training +336236,Employment and Training,Employment and Training +336235,Employment and Training,Employment and Training +333575,Employment and Training,Employment and Training +333574,Employment and Training,Employment and Training +333573,Employment and Training,Employment and Training +329893,Employment and Training,Employment and Training +329892,Employment and Training,Employment and Training +329891,Employment and Training,Employment and Training +329890,Employment and Training,Employment and Training +329887,Employment and Training,Employment and Training +319120,Employment and Training,Employment and Training +316045,Employment and Training,Employment and Training +316043,Employment and Training,Employment and Training +316040,Employment and Training,Employment and Training +316035,Employment and Training,Employment and Training +310265,Employment and Training,Employment and Training +310261,Employment and Training,Employment and Training +310260,Employment and Training,Employment and Training +310259,Employment and Training,Employment and Training +310257,Employment and Training,Employment and Training +310256,Employment and Training,Employment and Training +310255,Employment and Training,Employment and Training +310254,Employment and Training,Employment and Training +310253,Employment and Training,Employment and Training +310252,Employment and Training,Employment and Training +310246,Employment and Training,Employment and Training +310243,Employment and Training,Employment and Training +310242,Employment and Training,Employment and Training +310238,Employment and Training,Employment and Training +310225,Employment and Training,Employment and Training +310223,Employment and Training,Employment and Training +310220,Employment and Training,Employment and Training +302295,Employment and Training,Employment and Training +302294,Employment and Training,Employment and Training +302293,Employment and Training,Employment and Training +445831,International Trade,International Trade +98875,Infrastructure,Infrastructure +98875,Other,Building Canada Fund +106981,Industry,Industry +106982,Infrastructure,Infrastructure +106981,Regional Development,Regional Development +106978,Infrastructure,Infrastructure +106985,Infrastructure,Infrastructure +119877,Consumer Issues,Consumer Issues +119877,Financial Institutions,Financial Institutions +104775,Small Business,Small Business +104774,Taxation and Finance,Taxation and Finance +99036,Other,Canadian Association of University Research Parks; need for national strategy +101207,Consumer Issues,Consumer Issues +102703,Other,State of Economy and Current Rail Industry Performance +165036,Government Procurement,Government Procurement +102654,Other,Status of Economy and Current Rail Industry Performance +99994,Other,Agence de Revenu du Canada +99195,Other,Science and Technology +122914,Other,Foreign ownership rules for Canadian satellite providers +343841,International Trade,International Trade +99235,Agriculture,Agriculture +129534,Infrastructure,Infrastructure +102195,Regional Development,Regional Development +99256,Other,HR Capital Summit Workshop +102574,Other,Consumer Issues +99284,Intellectual Property,Intellectual Property +99285,Other,Airline Advertising +99290,Other,Canadian Space Policy +99295,Other,Canadian Space Policy +99296,Other,Canadian Space Policy +99298,Other,Canadian Space Policy +113875,Other,Federal Government's Water Policy and Climate Change Policy +99301,Other,payments-in-lieu of taxes +352541,Environment,Environment +275412,Defence,Defence +380255,Defence,Defence +132616,Other,Research & Development Funding +99516,Other,Bio-digestors +99521,Other,Federal telecom system +99521,Other,Municipal Rights-of-Way +99555,Agriculture,Agriculture +99555,Energy,Energy +99594,Other,Copyright Board of Canada +103914,Other,Aviation Safety +108334,Other,Accessibility Issues and Licensing +127839,Other,Rail Related Issues +99700,Other,Rail Related Issues +99700,Other,Rail Related Issues +123835,Other,Rail Related Issues +99702,Other,Operation of Canadian Ports +99703,Other,Arranging meeting with Minister +99706,Other,Overview of Marathon's oil sands operations +99709,Other,Overview of Marathon's oil sands operations +100240,Infrastructure,Infrastructure +200478,Employment and Training,Employment and Training +200460,Energy,Energy +233392,Environment,Environment +156679,Industry,Industry +216948,Labour,Labour +200470,Mining,Mining +105554,Other,Natural Resources +100867,Other,Research/R&D +240630,Taxation and Finance,Taxation and Finance +101293,Financial Institutions,Financial Institutions +99754,Taxation and Finance,Taxation and Finance +99794,Other,Reporting Statistics +99815,Other,Renewable Fuel Standards +99816,Other,Renewable Fuel Standards +99817,Other,Renewable Fuel Standards +121341,Industry,Industry +129794,Other,"international relations with regard to Middle east, Asian and European affairs" +139434,Employment and Training,Employment and Training +113817,Infrastructure,Infrastructure +162442,Agriculture,Agriculture +109922,Other,Animal Welfare +162437,Consumer Issues,Consumer Issues +162442,Health,Health +162442,Industry,Industry +199953,Internal Trade,Internal Trade +132728,International Relations,International Relations +222407,Small Business,Small Business +99917,Other,"Consumer Issues, related to airport response to economic downturn" +99917,Other,National Airports Policy with respect to airport development in Greater Toronto Area +99919,Other,"Airport security policies, regarding liquids, aerosols and gels" +99919,Other,"Bill S2: An Act to Amend the Customs Act, regarding Customs Controlled Areas" +99919,Other,"Consumer Issues, related to airport response to economic downturn" +99919,Other,"Customs & Border policies, regarding implementation of passenger facilitation initiatives to improve customer service" +99919,Other,"Duty Free Regulations, regarding Arrivals Duty Free" +99919,Other,"International Air Policy, regarding liberalization of air policy and bilateral air service agreements" +99934,Small Business,Small Business +106379,Infrastructure,Infrastructure +103776,Other,Automotive +103776,Regional Development,Regional Development +99976,Other,Agence de Revenu du Canada +99978,Other,Compositional cheese standards +99994,Other,Agence de Revenu Canada +105705,Other,Droits d'auteur +106037,Infrastructure,Infrastructure +106055,International Trade,International Trade +125100,Regional Development,Regional Development +100094,Other,Funding for the RCM +100158,Other,Bill C-33 +100357,Other,Bill C-33 +100159,Other,ecoEngery +100182,Other,Bill C310 +108334,Other,Canada Transportation Act - Proposed Amendments +131859,Consumer Issues,Consumer Issues +124843,Financial Institutions,Financial Institutions +452643,Agriculture,Agriculture +100238,Intellectual Property,Intellectual Property +100254,Other,PCB regulations regime deadline on March 19 +100256,Other,Nahanni protected areas +100683,Energy,Energy +100683,Environment,Environment +100683,Infrastructure,Infrastructure +100547,Other,Mackenzie Gas Pipeline +149140,Other,Financial Sector Policy +108641,Other,Knowledge Infrastructure Program Application +100681,Infrastructure,Infrastructure +109222,Other,Climate Change Policies +113462,Other,Energy Infrastructure +202534,Environment,Environment +167986,Infrastructure,Infrastructure +100358,Other,Status of WTO agricultural negotiations and the upcoming free trade negotiations with the European Union. +536591,Energy,Énergie +420044,Environment,Environnement +135709,Environment,Environment +138156,Industry,Industry +100420,Other,Privacy issues related to copyright reform +223405,International Trade,International Trade +340511,International Trade,International Trade +100429,Other,Fiscal Policy +100429,Other,G 20 Summit +100431,Other,International competitiveness +135376,Other,Communications +100482,Other,ecoEnergy funding +100483,Other,ecoEnergy funding +100485,Other,ecoEnergy funding +100487,Other,ecoEnergy +100488,Other,ecoEnergy +100489,Other,ecoEnergy funding +100490,Other,short sea shipping +100491,Other,short sea shipping +100492,Other,funding +100486,Other,Communications +100486,Other,Communications +100494,Other,FedNor +100793,Other,"CIDA policy and programming priorities for good governance, human rights and rule of law." +100520,Other,Air Quality +100523,Other,Amend Existing Funding Relationship +100530,Other,Amendments to the Navigable Waters Protection Act via Bill C-10 +100524,Other,Marchés financiers canadiens +100528,Other,Environmental Assessment Law Changes +100531,Other,WTO and vacancy for Chief Agriculture Negotiator +100535,Other,Water initiatives of EC +100543,Other,"Bill C-311, the Climate Change Accountability Act" +104034,Infrastructure,Infrastructure +100676,Other,Canadian Content and Program Funding +100678,Other,Canadian Content and Program Funding +100690,Energy,Energy +100692,Energy,Energy +129517,Other,2009 Pacific Salmon Fishing Plan +100709,Other,Energy Policy +100710,Other,Energy Policy +100842,Other,Corporate structure +202812,International Relations,International Relations +100714,Other,Biotech industry needs +100715,Other,Canadian Club Luncheon - Attended the lunch at Amgen's table +100716,Other,Canadian Club Luncheon - Attended the lunch at Amgen's table +100717,Other,Canadian Club Luncheon - Attended the lunch at Amgen's table +100718,Other,Manning Center Dinner - Attended the dinner at Amgen's table +100719,Other,Manning Center Dinner - Attended the dinner at Amgen's table +100735,Industry,Industry +100781,Other,Trade Issues +100794,Other,"Environment Assessment matters, with respect to Air Rail Link" +100794,Other,"Corporate governance matters, regarding ground lease requirements and corporate bylaws" +100818,Infrastructure,Infrastructure +100831,Other,Proposed negotiations between Canada and the EU +192246,Agriculture,Agriculture +100859,Other,Part III Canada Labour Code- department consultations +145074,Other,Briefing and discussion of the Canadian Space Plan +100866,Other,Briefing and discussion of the Canadian Space Plan +100868,Other,Regulatory process for the Renewable Fuel Standard +100869,Other,Regulatory Process for the Renewable Fuel Standard +131574,Other,Climate Change +100870,Other,Discussion related to the process for developing the Canadian Space Plan. +100874,Other,Climate Change +100875,Other,US Secure Flight Initative +108637,Other,Knowledge Infrastructure Program Application +108645,Other,Knowledge Infrastructure Program Application +100878,Other,US Secure Flight Initiative +108639,Other,Knowledge Infrastructure Program Application +109757,Other,Pensions +100879,Other,"Follow-up to NACC Budget Request, Airport Rents, Fuel Excise Tax, CATSA" +108643,Other,Knowledge Infrastructure Program Application +100883,Other,"Follow-up to NACC Budget Request-Airport Rents, Fuel Excise, CATSA" +118654,Environment,Environment +149276,Other,Knowledge Infrastructure Program Application +162498,Other,Telecommunication Policy and Regulation +100923,Other,level of service policies and initiatives +100924,Other,level of service policies and initiatives +100941,Other,Federal-Provincial relations +102354,Other,Primary and secondary ticket markets +100947,Other,Corporate Structure +102355,Other,Primary and secondary ticket markets +100959,Other,Research/R&D +100962,Other,Research/R&D +121179,Infrastructure,Infrastructure +136161,Transportation,Transportation +100968,Other,Airport financials & regulatory opportunities +101014,Other,U.S. Secure Flight Program +105234,Other,Technology Development Funding +101049,Other,Sensibilisation au développement international +101065,Other,Commerce international +101095,Environment,Environment +101095,Fisheries,Fisheries +101095,Mining,Mining +100867,Other,Energy Projects +105554,Other,Sustainable Development Initiatives +101113,Other,Economic stimulus funding for First Nations water and health projects +101117,Other,Economic stimulus funding for First Nations water and health projects +101119,Other,Canada's policy on greenhouse gas and NOx and SOx emissions and Canada-U.S. co-operation on the environment +101121,Other,Canada's policy on greenhouse gas and NOx and SOx emissions and Canada-U.S. co-operation on the environment +101133,Other,Discussion on EDC's increased capitalization and broader mandate and ways in which GE and EDC could work together +101135,Other,Discussion on the need to provide government support for the commercial paper market and the possibility of providing regular reports on the operation of capital markets +113464,Other,Energy +101138,Other,Privacy +101156,Other,Landowner Matters +101156,Other,Pipeline Jurisdiction +101159,Other,Landowner Matters +128035,Other,Northern Pipeline Act +101159,Other,Pipeline Jurisdiction +101164,Other,Privacy +101184,Other,Canada's response to Buy America provisions in US legislation / Canada-US border conditions +101178,Other,Economy +160638,Industry,Industry +160582,Transportation,Transportation +444213,Regional Development,Regional Development +101236,Other,FPC strategic plan +101237,Other,Research and Development Priorities +101237,Other,Status of Economy and Current Rail Industry Performance +101237,Other,Status Report on Response to Railway Safety Act Review +101243,Other,FPC annual business conference +109765,Other,FPC introduction +403262,Regional Development,Regional Development +101285,Other,Foreign Credential Recognition +197096,Transportation,Transports +101296,Other,"International Astronautical Congress (Daejon, Korea)" +101298,Other,Consultation on Bill C-11 +113870,Environment,Environment +124384,Industry,Industry +101325,Other,Aid to automotive suppliers +101326,Other,Government Career Fair +101331,Other,Automotive Innovation Fund +141476,Other,Borders +121156,Other,Automotive Innovation Fund +101342,Other,Temporary Foreign Workers program +131274,Other,Costs +113398,Other,Taxation +101348,Other,Student Affairs +101347,Other,Application of US secure flight program +101354,Other,Financial Reporting +101358,Other,Water policy and overall agenda of Environment Canada +101364,Other,"International Astronautical Congress (Daejon, Korea)" +101363,Other,Discussion of economic situation facing chemical industry and overall priorities of chemical industry on greenhouse gases and clean air agenda +101366,Other,Financial Reporting +101371,Other,General Direction of Climate Change Policy +101375,Other,General Direction of International Climate Change Policy +101377,Other,General State of the Chemical Industry and Industry Canada Role +101370,Other,Education +101370,Regional Development,Regional Development +101387,Other,National Institute of Nanotechnology (NINT) +157329,Other,Climate Change and Energy Policy +471532,Employment and Training,Employment and Training +432627,Industry,Industry +381748,Government Procurement,Marchés Publics +109154,Justice and Law Enforcement,Justice and Law Enforcement +101457,Other,WWWF Oceans Policy Proposal +101545,Other,UVic research in social sciences and humanities +101546,Other,General discussion of funding directions for CIHR and how to better support the social dimensions of health +101549,Other,Recruitment and renewal for the Canadian public service; the Economic Action Plan for Canada's Future +101550,Other,Canada's Economic Action Plan and regional infrastructure projects +101551,Other,"Ocean research, climate change initiative" +101553,Other,Post-secondary education and training +101554,Other,Post-secondary education and training +101556,Other,"Science and research agenda, major science projects" +108677,Other,Bill C-310 +125775,Other,Issues affecting the broadcasting and distribution industries +101575,Other,Issues affecting broadcasting and distribution industries +101577,Other,Issues affecting broadcasting and distribution industries +101580,Other,Issues affecting broadcasting and distrubition industries +134454,Employment and Training,Employment and Training +162833,Industry,Industry +134454,Regional Development,Regional Development +101615,Other,Enhance communication to support/inform policy decisions +101616,Other,Discuss new money allotted to infrastructure from the 2009 Federal Budget +101617,Other,Discuss new money allotted to infrastructure from the 2009 Federal Budget +101619,Other,Discuss new money allotted to infrastructure from the 2009 Federal Budget +101634,Other,Automotive Innovation Fund +443921,Agriculture,Agriculture +518352,Environment,Environment +120378,Health,Health +140639,Environment,Environment +140639,Industry,Industry +127954,Consumer Issues,Consumer Issues +127954,Financial Institutions,Financial Institutions +127954,Industry,Industry +127954,Taxation and Finance,Taxation and Finance +101694,Other,TPC Project#7720-492480 +140637,Environment,Environment +131638,Other,"Natural Resources, Environment" +106836,Transportation,Transportation +118274,Infrastructure,Infrastructure +106365,Immigration,Immigration +461113,Health,Health +525820,Taxation and Finance,Taxation and Finance +109645,Education,Education +113918,Infrastructure,Infrastructure +101898,Other,Budget 2009 +118162,Other,Agriculture/Agri-food: CFIA: Listeria enquiry +101902,Other,Budget 2009-EI rules and regulation +146045,Other,Industry +302292,Employment and Training,Employment and Training +302291,Employment and Training,Employment and Training +302290,Employment and Training,Employment and Training +297116,Employment and Training,Employment and Training +297115,Employment and Training,Employment and Training +297114,Employment and Training,Employment and Training +297113,Employment and Training,Employment and Training +297112,Employment and Training,Employment and Training +297111,Employment and Training,Employment and Training +297110,Employment and Training,Employment and Training +290816,Employment and Training,Employment and Training +290814,Employment and Training,Employment and Training +290813,Employment and Training,Employment and Training +290811,Employment and Training,Employment and Training +290810,Employment and Training,Employment and Training +290809,Employment and Training,Employment and Training +280692,Employment and Training,Employment and Training +280691,Employment and Training,Employment and Training +280690,Employment and Training,Employment and Training +280689,Employment and Training,Employment and Training +276535,Employment and Training,Employment and Training +276532,Employment and Training,Employment and Training +276531,Employment and Training,Employment and Training +471497,Employment and Training,Employment and Training +471494,Employment and Training,Employment and Training +471492,Employment and Training,Employment and Training +471491,Employment and Training,Employment and Training +470603,Employment and Training,Employment and Training +470597,Employment and Training,Employment and Training +470594,Employment and Training,Employment and Training +468378,Employment and Training,Employment and Training +468376,Employment and Training,Employment and Training +468257,Employment and Training,Employment and Training +468255,Employment and Training,Employment and Training +468251,Employment and Training,Employment and Training +465132,Employment and Training,Employment and Training +465130,Employment and Training,Employment and Training +465124,Employment and Training,Employment and Training +465122,Employment and Training,Employment and Training +462571,Employment and Training,Employment and Training +461940,Employment and Training,Employment and Training +461939,Employment and Training,Employment and Training +461938,Employment and Training,Employment and Training +461937,Employment and Training,Employment and Training +461936,Employment and Training,Employment and Training +461935,Employment and Training,Employment and Training +461934,Employment and Training,Employment and Training +461933,Employment and Training,Employment and Training +461932,Employment and Training,Employment and Training +461931,Employment and Training,Employment and Training +461930,Employment and Training,Employment and Training +461929,Employment and Training,Employment and Training +461925,Employment and Training,Employment and Training +460615,Employment and Training,Employment and Training +460122,Employment and Training,Employment and Training +460120,Employment and Training,Employment and Training +460119,Employment and Training,Employment and Training +460117,Employment and Training,Employment and Training +460114,Employment and Training,Employment and Training +459617,Employment and Training,Employment and Training +459613,Employment and Training,Employment and Training +459611,Employment and Training,Employment and Training +459610,Employment and Training,Employment and Training +459606,Employment and Training,Employment and Training +459605,Employment and Training,Employment and Training +459604,Employment and Training,Employment and Training +459600,Employment and Training,Employment and Training +459275,Employment and Training,Employment and Training +458277,Employment and Training,Employment and Training +458276,Employment and Training,Employment and Training +458275,Employment and Training,Employment and Training +458274,Employment and Training,Employment and Training +458273,Employment and Training,Employment and Training +458271,Employment and Training,Employment and Training +457160,Employment and Training,Employment and Training +455248,Employment and Training,Employment and Training +455246,Employment and Training,Employment and Training +455243,Employment and Training,Employment and Training +455239,Employment and Training,Employment and Training +455238,Employment and Training,Employment and Training +455233,Employment and Training,Employment and Training +455229,Employment and Training,Employment and Training +455228,Employment and Training,Employment and Training +455224,Employment and Training,Employment and Training +455223,Employment and Training,Employment and Training +455221,Employment and Training,Employment and Training +455216,Employment and Training,Employment and Training +455214,Employment and Training,Employment and Training +451488,Employment and Training,Employment and Training +451485,Employment and Training,Employment and Training +451483,Employment and Training,Employment and Training +451482,Employment and Training,Employment and Training +451480,Employment and Training,Employment and Training +451479,Employment and Training,Employment and Training +446559,Employment and Training,Employment and Training +446557,Employment and Training,Employment and Training +446554,Employment and Training,Employment and Training +446553,Employment and Training,Employment and Training +446433,Employment and Training,Employment and Training +441249,Employment and Training,Employment and Training +440900,Employment and Training,Employment and Training +440899,Employment and Training,Employment and Training +440898,Employment and Training,Employment and Training +440897,Employment and Training,Employment and Training +440896,Employment and Training,Employment and Training +440894,Employment and Training,Employment and Training +440891,Employment and Training,Employment and Training +440888,Employment and Training,Employment and Training +440886,Employment and Training,Employment and Training +440885,Employment and Training,Employment and Training +440884,Employment and Training,Employment and Training +440883,Employment and Training,Employment and Training +440881,Employment and Training,Employment and Training +440879,Employment and Training,Employment and Training +440878,Employment and Training,Employment and Training +440877,Employment and Training,Employment and Training +440876,Employment and Training,Employment and Training +440875,Employment and Training,Employment and Training +440874,Employment and Training,Employment and Training +440873,Employment and Training,Employment and Training +440872,Employment and Training,Employment and Training +440871,Employment and Training,Employment and Training +440870,Employment and Training,Employment and Training +440869,Employment and Training,Employment and Training +440868,Employment and Training,Employment and Training +440867,Employment and Training,Employment and Training +440866,Employment and Training,Employment and Training +440865,Employment and Training,Employment and Training +440864,Employment and Training,Employment and Training +440863,Employment and Training,Employment and Training +440862,Employment and Training,Employment and Training +440861,Employment and Training,Employment and Training +440860,Employment and Training,Employment and Training +439593,Employment and Training,Employment and Training +439590,Employment and Training,Employment and Training +439585,Employment and Training,Employment and Training +439580,Employment and Training,Employment and Training +439576,Employment and Training,Employment and Training +439565,Employment and Training,Employment and Training +432630,Employment and Training,Employment and Training +432628,Employment and Training,Employment and Training +432627,Employment and Training,Employment and Training +432624,Employment and Training,Employment and Training +430898,Employment and Training,Employment and Training +417148,Employment and Training,Employment and Training +417147,Employment and Training,Employment and Training +417146,Employment and Training,Employment and Training +415478,Employment and Training,Employment and Training +409074,Employment and Training,Employment and Training +407532,Employment and Training,Employment and Training +400475,Employment and Training,Employment and Training +396861,Employment and Training,Employment and Training +396860,Employment and Training,Employment and Training +394659,Employment and Training,Employment and Training +394658,Employment and Training,Employment and Training +394657,Employment and Training,Employment and Training +392282,Employment and Training,Employment and Training +392281,Employment and Training,Employment and Training +390072,Employment and Training,Employment and Training +384818,Employment and Training,Employment and Training +384812,Employment and Training,Employment and Training +383260,Employment and Training,Employment and Training +382305,Employment and Training,Employment and Training +380377,Employment and Training,Employment and Training +380376,Employment and Training,Employment and Training +379582,Employment and Training,Employment and Training +376696,Employment and Training,Employment and Training +376695,Employment and Training,Employment and Training +376693,Employment and Training,Employment and Training +376689,Employment and Training,Employment and Training +374100,Employment and Training,Employment and Training +373980,Employment and Training,Employment and Training +373979,Employment and Training,Employment and Training +373978,Employment and Training,Employment and Training +373977,Employment and Training,Employment and Training +373976,Employment and Training,Employment and Training +373975,Employment and Training,Employment and Training +373974,Employment and Training,Employment and Training +373970,Employment and Training,Employment and Training +373969,Employment and Training,Employment and Training +373965,Employment and Training,Employment and Training +373959,Employment and Training,Employment and Training +373954,Employment and Training,Employment and Training +541894,Employment and Training,Employment and Training +540079,Employment and Training,Employment and Training +538115,Employment and Training,Employment and Training +538112,Employment and Training,Employment and Training +535364,Employment and Training,Employment and Training +535354,Employment and Training,Employment and Training +535265,Employment and Training,Employment and Training +532320,Employment and Training,Employment and Training +532318,Employment and Training,Employment and Training +532304,Employment and Training,Employment and Training +532300,Employment and Training,Employment and Training +532294,Employment and Training,Employment and Training +529152,Employment and Training,Employment and Training +529146,Employment and Training,Employment and Training +526464,Employment and Training,Employment and Training +523064,Employment and Training,Employment and Training +519883,Employment and Training,Employment and Training +519881,Employment and Training,Employment and Training +519879,Employment and Training,Employment and Training +519875,Employment and Training,Employment and Training +519874,Employment and Training,Employment and Training +519868,Employment and Training,Employment and Training +517853,Employment and Training,Employment and Training +517851,Employment and Training,Employment and Training +517850,Employment and Training,Employment and Training +517849,Employment and Training,Employment and Training +517847,Employment and Training,Employment and Training +517846,Employment and Training,Employment and Training +517842,Employment and Training,Employment and Training +517839,Employment and Training,Employment and Training +512200,Employment and Training,Employment and Training +512199,Employment and Training,Employment and Training +512198,Employment and Training,Employment and Training +511806,Employment and Training,Employment and Training +511792,Employment and Training,Employment and Training +511790,Employment and Training,Employment and Training +511789,Employment and Training,Employment and Training +509051,Employment and Training,Employment and Training +509048,Employment and Training,Employment and Training +509047,Employment and Training,Employment and Training +509045,Employment and Training,Employment and Training +509044,Employment and Training,Employment and Training +509043,Employment and Training,Employment and Training +509042,Employment and Training,Employment and Training +509038,Employment and Training,Employment and Training +505509,Employment and Training,Employment and Training +505508,Employment and Training,Employment and Training +505507,Employment and Training,Employment and Training +505505,Employment and Training,Employment and Training +505502,Employment and Training,Employment and Training +505500,Employment and Training,Employment and Training +501416,Employment and Training,Employment and Training +501413,Employment and Training,Employment and Training +501410,Employment and Training,Employment and Training +501408,Employment and Training,Employment and Training +501406,Employment and Training,Employment and Training +501405,Employment and Training,Employment and Training +499033,Employment and Training,Employment and Training +499032,Employment and Training,Employment and Training +499031,Employment and Training,Employment and Training +499030,Employment and Training,Employment and Training +499029,Employment and Training,Employment and Training +499028,Employment and Training,Employment and Training +499026,Employment and Training,Employment and Training +495959,Employment and Training,Employment and Training +492827,Employment and Training,Employment and Training +492826,Employment and Training,Employment and Training +492824,Employment and Training,Employment and Training +492823,Employment and Training,Employment and Training +492821,Employment and Training,Employment and Training +492820,Employment and Training,Employment and Training +492814,Employment and Training,Employment and Training +492812,Employment and Training,Employment and Training +492811,Employment and Training,Employment and Training +491201,Employment and Training,Employment and Training +491200,Employment and Training,Employment and Training +491197,Employment and Training,Employment and Training +491195,Employment and Training,Employment and Training +491192,Employment and Training,Employment and Training +491187,Employment and Training,Employment and Training +491184,Employment and Training,Employment and Training +491176,Employment and Training,Employment and Training +491169,Employment and Training,Employment and Training +491168,Employment and Training,Employment and Training +491166,Employment and Training,Employment and Training +491161,Employment and Training,Employment and Training +491154,Employment and Training,Employment and Training +491147,Employment and Training,Employment and Training +491144,Employment and Training,Employment and Training +491136,Employment and Training,Employment and Training +491135,Employment and Training,Employment and Training +491134,Employment and Training,Employment and Training +491133,Employment and Training,Employment and Training +491131,Employment and Training,Employment and Training +488008,Employment and Training,Employment and Training +488007,Employment and Training,Employment and Training +488006,Employment and Training,Employment and Training +488005,Employment and Training,Employment and Training +487958,Employment and Training,Employment and Training +487956,Employment and Training,Employment and Training +487955,Employment and Training,Employment and Training +487952,Employment and Training,Employment and Training +487950,Employment and Training,Employment and Training +487948,Employment and Training,Employment and Training +487947,Employment and Training,Employment and Training +487946,Employment and Training,Employment and Training +483254,Employment and Training,Employment and Training +483253,Employment and Training,Employment and Training +483252,Employment and Training,Employment and Training +481325,Employment and Training,Employment and Training +480349,Employment and Training,Employment and Training +480347,Employment and Training,Employment and Training +480346,Employment and Training,Employment and Training +480345,Employment and Training,Employment and Training +478171,Employment and Training,Employment and Training +478170,Employment and Training,Employment and Training +478165,Employment and Training,Employment and Training +478162,Employment and Training,Employment and Training +475557,Employment and Training,Employment and Training +475553,Employment and Training,Employment and Training +475550,Employment and Training,Employment and Training +475549,Employment and Training,Employment and Training +473237,Employment and Training,Employment and Training +473235,Employment and Training,Employment and Training +473233,Employment and Training,Employment and Training +473230,Employment and Training,Employment and Training +473226,Employment and Training,Employment and Training +473222,Employment and Training,Employment and Training +473219,Employment and Training,Employment and Training +432624,Industry,Industry +430898,Industry,Industry +180494,Industry,Industry +180493,Industry,Industry +175665,Industry,Industry +175664,Industry,Industry +175663,Industry,Industry +175662,Industry,Industry +175661,Industry,Industry +171068,Industry,Industry +168945,Industry,Industry +132978,Industry,Industry +132972,Industry,Industry +132964,Industry,Industry +132961,Industry,Industry +132960,Industry,Industry +132958,Industry,Industry +128243,Industry,Industry +128237,Industry,Industry +250745,Industry,Industry +250742,Industry,Industry +250740,Industry,Industry +250737,Industry,Industry +250734,Industry,Industry +250733,Industry,Industry +250732,Industry,Industry +250729,Industry,Industry +250728,Industry,Industry +250726,Industry,Industry +250724,Industry,Industry +250722,Industry,Industry +250721,Industry,Industry +250720,Industry,Industry +250719,Industry,Industry +250717,Industry,Industry +250715,Industry,Industry +250714,Industry,Industry +250713,Industry,Industry +245309,Industry,Industry +241072,Industry,Industry +241070,Industry,Industry +241065,Industry,Industry +241062,Industry,Industry +241060,Industry,Industry +230428,Industry,Industry +230424,Industry,Industry +230401,Industry,Industry +227237,Industry,Industry +223275,Industry,Industry +223273,Industry,Industry +218047,Industry,Industry +212105,Industry,Industry +212104,Industry,Industry +211712,Industry,Industry +207533,Industry,Industry +207528,Industry,Industry +207506,Industry,Industry +203333,Industry,Industry +200532,Industry,Industry +195046,Industry,Industry +195043,Industry,Industry +189725,Industry,Industry +189705,Industry,Industry +180495,Industry,Industry +336241,Industry,Industry +336240,Industry,Industry +336239,Industry,Industry +336238,Industry,Industry +336237,Industry,Industry +336236,Industry,Industry +336235,Industry,Industry +333575,Industry,Industry +333574,Industry,Industry +333573,Industry,Industry +329893,Industry,Industry +329892,Industry,Industry +329891,Industry,Industry +329890,Industry,Industry +329887,Industry,Industry +319120,Industry,Industry +316045,Industry,Industry +316043,Industry,Industry +316040,Industry,Industry +316035,Industry,Industry +310261,Industry,Industry +310260,Industry,Industry +310259,Industry,Industry +310257,Industry,Industry +310256,Industry,Industry +310255,Industry,Industry +310254,Industry,Industry +310253,Industry,Industry +310252,Industry,Industry +310246,Industry,Industry +310238,Industry,Industry +310225,Industry,Industry +310223,Industry,Industry +310220,Industry,Industry +302295,Industry,Industry +302294,Industry,Industry +302293,Industry,Industry +302292,Industry,Industry +302291,Industry,Industry +302290,Industry,Industry +290816,Industry,Industry +290814,Industry,Industry +290813,Industry,Industry +290811,Industry,Industry +290810,Industry,Industry +290809,Industry,Industry +280692,Industry,Industry +280691,Industry,Industry +280690,Industry,Industry +280689,Industry,Industry +417148,Industry,Industry +417147,Industry,Industry +417146,Industry,Industry +415478,Industry,Industry +409074,Industry,Industry +407532,Industry,Industry +400475,Industry,Industry +396861,Industry,Industry +396860,Industry,Industry +394659,Industry,Industry +394658,Industry,Industry +394657,Industry,Industry +392282,Industry,Industry +392281,Industry,Industry +390072,Industry,Industry +384818,Industry,Industry +384812,Industry,Industry +383260,Industry,Industry +382305,Industry,Industry +379582,Industry,Industry +376696,Industry,Industry +376695,Industry,Industry +376693,Industry,Industry +376689,Industry,Industry +374100,Industry,Industry +373980,Industry,Industry +373979,Industry,Industry +373978,Industry,Industry +373977,Industry,Industry +373976,Industry,Industry +373975,Industry,Industry +373974,Industry,Industry +373970,Industry,Industry +373969,Industry,Industry +373965,Industry,Industry +373959,Industry,Industry +373954,Industry,Industry +373952,Industry,Industry +373950,Industry,Industry +373949,Industry,Industry +373948,Industry,Industry +373947,Industry,Industry +373946,Industry,Industry +373942,Industry,Industry +373912,Industry,Industry +373898,Industry,Industry +373877,Industry,Industry +371746,Industry,Industry +371745,Industry,Industry +371742,Industry,Industry +371738,Industry,Industry +371735,Industry,Industry +371734,Industry,Industry +371730,Industry,Industry +368778,Industry,Industry +368777,Industry,Industry +364865,Industry,Industry +355997,Industry,Industry +355992,Industry,Industry +350948,Industry,Industry +350947,Industry,Industry +350944,Industry,Industry +344641,Industry,Industry +344640,Industry,Industry +344639,Industry,Industry +344638,Industry,Industry +343537,Industry,Industry +342083,Industry,Industry +342081,Industry,Industry +342080,Industry,Industry +342079,Industry,Industry +342077,Industry,Industry +342019,Industry,Industry +342017,Industry,Industry +342015,Industry,Industry +342014,Industry,Industry +342012,Industry,Industry +342010,Industry,Industry +342002,Industry,Industry +342001,Industry,Industry +436147,Industry,Industry +432630,Industry,Industry +432628,Industry,Industry +431821,Government Procurement,Marchés Publics +480638,Government Procurement,Marchés Publics +117566,Government Procurement,Marchés Publics +101454,Government Procurement,Marchés Publics +288069,Government Procurement,Marchés Publics +188044,Government Procurement,Marchés Publics +187104,Government Procurement,Marchés Publics +185372,Government Procurement,Marchés Publics +181644,Government Procurement,Marchés Publics +168136,Government Procurement,Marchés Publics +144316,Government Procurement,Marchés Publics +374701,Government Procurement,Marchés Publics +374698,Government Procurement,Marchés Publics +358348,Government Procurement,Marchés Publics +404326,Government Procurement,Marchés Publics +404322,Government Procurement,Marchés Publics +388742,Government Procurement,Marchés Publics +388741,Government Procurement,Marchés Publics +386502,Government Procurement,Marchés Publics +101574,Other,Issues affecting the broadcasting and distribution industries +132523,Other,Issues affecting the broadcasting and distribution industries +132555,Other,Issues affecting broadcasting and distribution industries +153106,Industry,Industry +134454,Industry,Industry +125836,Industry,Industry +170309,Industry,Industry +169005,Industry,Industry +439491,Agriculture,Agriculture +439476,Agriculture,Agriculture +101980,Agriculture,Agriculture +101979,Agriculture,Agriculture +101978,Agriculture,Agriculture +101976,Agriculture,Agriculture +101975,Agriculture,Agriculture +148361,Agriculture,Agriculture +148360,Agriculture,Agriculture +139055,Agriculture,Agriculture +133163,Agriculture,Agriculture +133159,Agriculture,Agriculture +133156,Agriculture,Agriculture +126695,Agriculture,Agriculture +126694,Agriculture,Agriculture +125776,Agriculture,Agriculture +124628,Agriculture,Agriculture +120380,Agriculture,Agriculture +120379,Agriculture,Agriculture +120378,Agriculture,Agriculture +120377,Agriculture,Agriculture +120376,Agriculture,Agriculture +120375,Agriculture,Agriculture +115674,Agriculture,Agriculture +249556,Agriculture,Agriculture +249555,Agriculture,Agriculture +235770,Agriculture,Agriculture +235769,Agriculture,Agriculture +220247,Agriculture,Agriculture +174865,Agriculture,Agriculture +174864,Agriculture,Agriculture +171544,Agriculture,Agriculture +165899,Agriculture,Agriculture +165898,Agriculture,Agriculture +165897,Agriculture,Agriculture +162129,Agriculture,Agriculture +162127,Agriculture,Agriculture +157908,Agriculture,Agriculture +152111,Agriculture,Agriculture +151357,Agriculture,Agriculture +150290,Agriculture,Agriculture +432279,Agriculture,Agriculture +423295,Agriculture,Agriculture +413470,Agriculture,Agriculture +394321,Agriculture,Agriculture +391225,Agriculture,Agriculture +391222,Agriculture,Agriculture +389978,Agriculture,Agriculture +384278,Agriculture,Agriculture +384220,Agriculture,Agriculture +384219,Agriculture,Agriculture +370510,Agriculture,Agriculture +365428,Agriculture,Agriculture +344137,Agriculture,Agriculture +340294,Agriculture,Agriculture +330805,Agriculture,Agriculture +315369,Agriculture,Agriculture +536105,Agriculture,Agriculture +536104,Agriculture,Agriculture +536103,Agriculture,Agriculture +526825,Agriculture,Agriculture +526824,Agriculture,Agriculture +518352,Agriculture,Agriculture +515189,Agriculture,Agriculture +488187,Agriculture,Agriculture +479548,Agriculture,Agriculture +469879,Agriculture,Agriculture +468345,Agriculture,Agriculture +460735,Agriculture,Agriculture +455220,Agriculture,Agriculture +455219,Agriculture,Agriculture +455210,Agriculture,Agriculture +455206,Agriculture,Agriculture +449412,Agriculture,Agriculture +449404,Agriculture,Agriculture +448013,Agriculture,Agriculture +515189,Environment,Environment +488187,Environment,Environment +162129,Environment,Environment +133159,Environment,Environment +133156,Environment,Environment +125776,Environment,Environment +120375,Environment,Environment +449412,Environment,Environment +391222,Environment,Environment +536105,Environment,Environment +536103,Environment,Environment +526825,Environment,Environment +526824,Environment,Environment +120377,Health,Health +391222,Health,Health +101974,Health,Health +148360,Health,Health +139055,Health,Health +126695,Health,Health +123434,Health,Health +120380,Health,Health +120379,Health,Health +131635,Other,"Natural Resources, Environment" +124954,Other,"Natural Resources, Environment" +131639,Other,"Natural Resources, Environment" +458395,Health,Health +433253,Health,Health +433252,Health,Health +432097,Health,Health +423245,Health,Health +394726,Health,Health +393150,Health,Health +533386,Health,Health +525820,Health,Health +511739,Health,Health +461114,Health,Health +533386,Taxation and Finance,Taxation and Finance +118159,Other,Agriculture/Agri-food: CFIA: Listeria enquiry +118158,Other,Agriculture/Agri-food: CFIA: Listeria enquiry +118191,Other,Agriculture/Agri-food: CFIA: Listeria enquiry +118186,Other,Agriculture/Agri-food: CFIA: Listeria enquiry +118183,Other,Agriculture/Agri-food: CFIA: Listeria enquiry +118174,Other,Agriculture/Agri-food: CFIA: Listeria enquiry +118170,Other,Agriculture/Agri-food: CFIA: Listeria enquiry +118165,Other,Agriculture/Agri-food: CFIA: Listeria enquiry +135819,Other,Industry +135816,Other,Industry +101916,Other,Industry +101914,Other,Industry +146056,Other,Industry +134521,Health,Health +134521,Justice and Law Enforcement,Justice and Law Enforcement +134521,Small Business,Small Business +134521,Taxation and Finance,Taxation and Finance +124282,Other,Financial support for capital Improvements +146415,Other,Meeting Request +144916,Other,Meeting Request +209631,Constitutional Issues,Constitutional Issues +209630,Constitutional Issues,Constitutional Issues +227593,Constitutional Issues,Constitutional Issues +209630,Consumer Issues,Consumer Issues +227593,Consumer Issues,Consumer Issues +209632,Consumer Issues,Consumer Issues +209630,Taxation and Finance,Taxation and Finance +110974,Infrastructure,Infrastructure +110955,Infrastructure,Infrastructure +209594,Constitutional Issues,Constitutional Issues +203791,Constitutional Issues,Constitutional Issues +196636,Constitutional Issues,Constitutional Issues +196633,Constitutional Issues,Constitutional Issues +196632,Constitutional Issues,Constitutional Issues +190632,Constitutional Issues,Constitutional Issues +190631,Constitutional Issues,Constitutional Issues +190628,Constitutional Issues,Constitutional Issues +190627,Constitutional Issues,Constitutional Issues +190626,Constitutional Issues,Constitutional Issues +190624,Constitutional Issues,Constitutional Issues +171815,Constitutional Issues,Constitutional Issues +171814,Constitutional Issues,Constitutional Issues +171812,Constitutional Issues,Constitutional Issues +171811,Constitutional Issues,Constitutional Issues +166299,Constitutional Issues,Constitutional Issues +166298,Constitutional Issues,Constitutional Issues +166297,Constitutional Issues,Constitutional Issues +166296,Constitutional Issues,Constitutional Issues +166283,Constitutional Issues,Constitutional Issues +166282,Constitutional Issues,Constitutional Issues +166281,Constitutional Issues,Constitutional Issues +166279,Constitutional Issues,Constitutional Issues +166277,Constitutional Issues,Constitutional Issues +166275,Constitutional Issues,Constitutional Issues +166273,Constitutional Issues,Constitutional Issues +166272,Constitutional Issues,Constitutional Issues +166271,Constitutional Issues,Constitutional Issues +166269,Constitutional Issues,Constitutional Issues +166268,Constitutional Issues,Constitutional Issues +160297,Constitutional Issues,Constitutional Issues +160293,Constitutional Issues,Constitutional Issues +160290,Constitutional Issues,Constitutional Issues +158870,Constitutional Issues,Constitutional Issues +158869,Constitutional Issues,Constitutional Issues +158868,Constitutional Issues,Constitutional Issues +158867,Constitutional Issues,Constitutional Issues +158856,Constitutional Issues,Constitutional Issues +157562,Constitutional Issues,Constitutional Issues +157561,Constitutional Issues,Constitutional Issues +157560,Constitutional Issues,Constitutional Issues +157559,Constitutional Issues,Constitutional Issues +157555,Constitutional Issues,Constitutional Issues +157554,Constitutional Issues,Constitutional Issues +155310,Constitutional Issues,Constitutional Issues +155308,Constitutional Issues,Constitutional Issues +149437,Constitutional Issues,Constitutional Issues +314874,Constitutional Issues,Constitutional Issues +314872,Constitutional Issues,Constitutional Issues +314870,Constitutional Issues,Constitutional Issues +273959,Constitutional Issues,Constitutional Issues +273956,Constitutional Issues,Constitutional Issues +227594,Constitutional Issues,Constitutional Issues +224529,Constitutional Issues,Constitutional Issues +219802,Constitutional Issues,Constitutional Issues +219801,Constitutional Issues,Constitutional Issues +219800,Constitutional Issues,Constitutional Issues +219769,Constitutional Issues,Constitutional Issues +219768,Constitutional Issues,Constitutional Issues +219767,Constitutional Issues,Constitutional Issues +209599,Constitutional Issues,Constitutional Issues +209598,Constitutional Issues,Constitutional Issues +209597,Constitutional Issues,Constitutional Issues +209596,Constitutional Issues,Constitutional Issues +190628,Consumer Issues,Consumer Issues +190627,Consumer Issues,Consumer Issues +155308,Consumer Issues,Consumer Issues +149437,Consumer Issues,Consumer Issues +190626,Consumer Issues,Consumer Issues +190624,Consumer Issues,Consumer Issues +171815,Consumer Issues,Consumer Issues +171814,Consumer Issues,Consumer Issues +171812,Consumer Issues,Consumer Issues +171811,Consumer Issues,Consumer Issues +166299,Consumer Issues,Consumer Issues +166298,Consumer Issues,Consumer Issues +166297,Consumer Issues,Consumer Issues +166296,Consumer Issues,Consumer Issues +166283,Consumer Issues,Consumer Issues +166282,Consumer Issues,Consumer Issues +166281,Consumer Issues,Consumer Issues +166279,Consumer Issues,Consumer Issues +166277,Consumer Issues,Consumer Issues +166275,Consumer Issues,Consumer Issues +166273,Consumer Issues,Consumer Issues +166272,Consumer Issues,Consumer Issues +166271,Consumer Issues,Consumer Issues +166269,Consumer Issues,Consumer Issues +166268,Consumer Issues,Consumer Issues +160297,Consumer Issues,Consumer Issues +160293,Consumer Issues,Consumer Issues +158870,Consumer Issues,Consumer Issues +158869,Consumer Issues,Consumer Issues +158868,Consumer Issues,Consumer Issues +158867,Consumer Issues,Consumer Issues +158856,Consumer Issues,Consumer Issues +157562,Consumer Issues,Consumer Issues +157561,Consumer Issues,Consumer Issues +157560,Consumer Issues,Consumer Issues +157559,Consumer Issues,Consumer Issues +157555,Consumer Issues,Consumer Issues +157554,Consumer Issues,Consumer Issues +155310,Consumer Issues,Consumer Issues +314874,Consumer Issues,Consumer Issues +314872,Consumer Issues,Consumer Issues +314870,Consumer Issues,Consumer Issues +273959,Consumer Issues,Consumer Issues +273956,Consumer Issues,Consumer Issues +227594,Consumer Issues,Consumer Issues +224529,Consumer Issues,Consumer Issues +219802,Consumer Issues,Consumer Issues +219801,Consumer Issues,Consumer Issues +219769,Consumer Issues,Consumer Issues +219768,Consumer Issues,Consumer Issues +219767,Consumer Issues,Consumer Issues +209599,Consumer Issues,Consumer Issues +209598,Consumer Issues,Consumer Issues +209597,Consumer Issues,Consumer Issues +209596,Consumer Issues,Consumer Issues +209595,Consumer Issues,Consumer Issues +209594,Consumer Issues,Consumer Issues +203791,Consumer Issues,Consumer Issues +203790,Consumer Issues,Consumer Issues +203789,Consumer Issues,Consumer Issues +203788,Consumer Issues,Consumer Issues +196636,Consumer Issues,Consumer Issues +196633,Consumer Issues,Consumer Issues +196632,Consumer Issues,Consumer Issues +196629,Consumer Issues,Consumer Issues +190632,Consumer Issues,Consumer Issues +203789,Health,Health +196636,Health,Health +160297,Health,Health +160293,Health,Health +160290,Health,Health +158856,Health,Health +157562,Health,Health +157560,Health,Health +157559,Health,Health +157555,Health,Health +155310,Health,Health +155308,Health,Health +149437,Health,Health +196633,Health,Health +196632,Health,Health +196629,Health,Health +190628,Health,Health +190627,Health,Health +190626,Health,Health +190624,Health,Health +171815,Health,Health +171814,Health,Health +171812,Health,Health +171811,Health,Health +166299,Health,Health +166298,Health,Health +166297,Health,Health +166296,Health,Health +166283,Health,Health +166282,Health,Health +166281,Health,Health +166279,Health,Health +166277,Health,Health +166275,Health,Health +166273,Health,Health +166272,Health,Health +166271,Health,Health +166269,Health,Health +166268,Health,Health +314874,Health,Health +314872,Health,Health +314870,Health,Health +273959,Health,Health +273956,Health,Health +227594,Health,Health +224529,Health,Health +219802,Health,Health +219801,Health,Health +219800,Health,Health +219769,Health,Health +219768,Health,Health +219767,Health,Health +209599,Health,Health +209598,Health,Health +209596,Health,Health +209595,Health,Health +203791,Health,Health +190632,Internal Trade,Internal Trade +155310,Internal Trade,Internal Trade +155308,Internal Trade,Internal Trade +227594,Internal Trade,Internal Trade +224529,Internal Trade,Internal Trade +219802,Internal Trade,Internal Trade +219801,Internal Trade,Internal Trade +219800,Internal Trade,Internal Trade +219769,Internal Trade,Internal Trade +219768,Internal Trade,Internal Trade +219767,Internal Trade,Internal Trade +209599,Internal Trade,Internal Trade +314872,International Trade,International Trade +314870,International Trade,International Trade +149437,International Trade,International Trade +166298,International Trade,International Trade +166283,International Trade,International Trade +166282,International Trade,International Trade +166281,International Trade,International Trade +166279,International Trade,International Trade +166277,International Trade,International Trade +166275,International Trade,International Trade +166273,International Trade,International Trade +166272,International Trade,International Trade +166271,International Trade,International Trade +166269,International Trade,International Trade +166268,International Trade,International Trade +155310,International Trade,International Trade +155308,International Trade,International Trade +314872,Justice and Law Enforcement,Justice and Law Enforcement +314870,Justice and Law Enforcement,Justice and Law Enforcement +158870,Justice and Law Enforcement,Justice and Law Enforcement +158869,Justice and Law Enforcement,Justice and Law Enforcement +158868,Justice and Law Enforcement,Justice and Law Enforcement +158867,Justice and Law Enforcement,Justice and Law Enforcement +158856,Justice and Law Enforcement,Justice and Law Enforcement +157562,Justice and Law Enforcement,Justice and Law Enforcement +157561,Justice and Law Enforcement,Justice and Law Enforcement +157560,Justice and Law Enforcement,Justice and Law Enforcement +157559,Justice and Law Enforcement,Justice and Law Enforcement +157555,Justice and Law Enforcement,Justice and Law Enforcement +157554,Justice and Law Enforcement,Justice and Law Enforcement +155308,Justice and Law Enforcement,Justice and Law Enforcement +149437,Justice and Law Enforcement,Justice and Law Enforcement +273959,Small Business,Small Business +273956,Small Business,Small Business +160297,Small Business,Small Business +160293,Small Business,Small Business +160290,Small Business,Small Business +158870,Small Business,Small Business +158869,Small Business,Small Business +158868,Small Business,Small Business +158867,Small Business,Small Business +158856,Small Business,Small Business +157562,Small Business,Small Business +157561,Small Business,Small Business +157560,Small Business,Small Business +157559,Small Business,Small Business +157555,Small Business,Small Business +157554,Small Business,Small Business +155310,Small Business,Small Business +155308,Small Business,Small Business +149437,Small Business,Small Business +227594,Small Business,Small Business +224529,Small Business,Small Business +219802,Small Business,Small Business +219801,Small Business,Small Business +219800,Small Business,Small Business +219769,Small Business,Small Business +219768,Small Business,Small Business +219767,Small Business,Small Business +209599,Small Business,Small Business +209598,Small Business,Small Business +209597,Small Business,Small Business +209596,Small Business,Small Business +209595,Small Business,Small Business +209594,Small Business,Small Business +203791,Small Business,Small Business +203790,Small Business,Small Business +203789,Small Business,Small Business +203788,Small Business,Small Business +196636,Small Business,Small Business +196633,Small Business,Small Business +196632,Small Business,Small Business +196629,Small Business,Small Business +190632,Small Business,Small Business +190631,Small Business,Small Business +190628,Small Business,Small Business +190627,Small Business,Small Business +190626,Small Business,Small Business +190624,Small Business,Small Business +171815,Small Business,Small Business +171814,Small Business,Small Business +171812,Small Business,Small Business +171811,Small Business,Small Business +166299,Small Business,Small Business +166298,Small Business,Small Business +166297,Small Business,Small Business +166296,Small Business,Small Business +166283,Small Business,Small Business +166282,Small Business,Small Business +166281,Small Business,Small Business +166279,Small Business,Small Business +166277,Small Business,Small Business +166275,Small Business,Small Business +166273,Small Business,Small Business +166272,Small Business,Small Business +166271,Small Business,Small Business +166269,Small Business,Small Business +314874,Small Business,Small Business +314872,Small Business,Small Business +190626,Taxation and Finance,Taxation and Finance +190624,Taxation and Finance,Taxation and Finance +219767,Taxation and Finance,Taxation and Finance +209599,Taxation and Finance,Taxation and Finance +209597,Taxation and Finance,Taxation and Finance +209594,Taxation and Finance,Taxation and Finance +190632,Taxation and Finance,Taxation and Finance +190631,Taxation and Finance,Taxation and Finance +190628,Taxation and Finance,Taxation and Finance +209589,Constitutional Issues,Constitutional Issues +203796,Constitutional Issues,Constitutional Issues +173686,Constitutional Issues,Constitutional Issues +173685,Constitutional Issues,Constitutional Issues +173684,Constitutional Issues,Constitutional Issues +314875,Constitutional Issues,Constitutional Issues +314873,Constitutional Issues,Constitutional Issues +314871,Constitutional Issues,Constitutional Issues +314869,Constitutional Issues,Constitutional Issues +273953,Constitutional Issues,Constitutional Issues +273952,Constitutional Issues,Constitutional Issues +273950,Constitutional Issues,Constitutional Issues +273949,Constitutional Issues,Constitutional Issues +219783,Constitutional Issues,Constitutional Issues +219782,Constitutional Issues,Constitutional Issues +209592,Constitutional Issues,Constitutional Issues +209591,Constitutional Issues,Constitutional Issues +209589,Consumer Issues,Consumer Issues +203796,Consumer Issues,Consumer Issues +158073,Consumer Issues,Consumer Issues +173686,Consumer Issues,Consumer Issues +173685,Consumer Issues,Consumer Issues +173684,Consumer Issues,Consumer Issues +314875,Consumer Issues,Consumer Issues +314873,Consumer Issues,Consumer Issues +314871,Consumer Issues,Consumer Issues +314869,Consumer Issues,Consumer Issues +273953,Consumer Issues,Consumer Issues +273952,Consumer Issues,Consumer Issues +273950,Consumer Issues,Consumer Issues +273949,Consumer Issues,Consumer Issues +219799,Consumer Issues,Consumer Issues +219781,Consumer Issues,Consumer Issues +209592,Consumer Issues,Consumer Issues +209591,Consumer Issues,Consumer Issues +273952,Health,Health +273950,Health,Health +203796,Health,Health +314873,Health,Health +314871,Health,Health +314869,Health,Health +314871,International Trade,International Trade +314869,International Trade,International Trade +158073,International Trade,International Trade +314875,International Trade,International Trade +314869,Justice and Law Enforcement,Justice and Law Enforcement +273950,Justice and Law Enforcement,Justice and Law Enforcement +314875,Justice and Law Enforcement,Justice and Law Enforcement +314873,Justice and Law Enforcement,Justice and Law Enforcement +219782,Small Business,Small Business +219781,Small Business,Small Business +158073,Small Business,Small Business +209592,Small Business,Small Business +209591,Small Business,Small Business +209590,Small Business,Small Business +209589,Small Business,Small Business +314875,Small Business,Small Business +314873,Small Business,Small Business +314871,Small Business,Small Business +314869,Small Business,Small Business +273953,Small Business,Small Business +273952,Small Business,Small Business +273950,Small Business,Small Business +273949,Small Business,Small Business +219799,Small Business,Small Business +209590,Taxation and Finance,Taxation and Finance +209589,Taxation and Finance,Taxation and Finance +219799,Taxation and Finance,Taxation and Finance +219783,Taxation and Finance,Taxation and Finance +219782,Taxation and Finance,Taxation and Finance +219781,Taxation and Finance,Taxation and Finance +209592,Taxation and Finance,Taxation and Finance +136554,Other,Foreign Investment +102475,International Relations,International Relations +245172,Constitutional Issues,Constitutional Issues +245172,Consumer Issues,Consumer Issues +245172,Small Business,Small Business +145574,Regional Development,Regional Development +142354,Regional Development,Regional Development +145619,Taxation and Finance,Taxation and Finance +131534,Taxation and Finance,Taxation and Finance +107395,Taxation and Finance,Taxation and Finance +104014,Government Procurement,Government Procurement +147140,Internal Trade,Commerce intérieur +147137,Internal Trade,Commerce intérieur +183744,Internal Trade,Commerce intérieur +172768,Internal Trade,Commerce intérieur +168971,Internal Trade,Commerce intérieur +168961,Internal Trade,Commerce intérieur +168304,Internal Trade,Commerce intérieur +168285,Internal Trade,Commerce intérieur +165461,Internal Trade,Commerce intérieur +103256,Consumer Issues,Consumer Issues +103255,Consumer Issues,Consumer Issues +102535,Other,Competition Policy +102255,Other,Competition Policy +120119,Other,Competition Policy +120118,Other,Competition Policy +120115,Other,Competition Policy +104715,Agriculture,Agriculture +104714,Agriculture,Agriculture +104714,Consumer Issues,Consumer Issues +104716,Consumer Issues,Consumer Issues +104715,Health,Health +104714,Health,Health +104715,Industry,Industry +104714,Industry,Industry +104715,International Trade,International Trade +104714,International Trade,International Trade +102338,Other,"Science and Technology, Infrastructure" +140314,Other,"Science and Technology, Infrastructure" +113594,Other,"Science and Technology, Infrastructure" +113575,Other,"Science and Technology, Infrastructure" +205872,International Trade,International Trade +205870,International Trade,International Trade +148885,International Trade,International Trade +148883,International Trade,International Trade +148882,International Trade,International Trade +148881,International Trade,International Trade +148880,International Trade,International Trade +148879,International Trade,International Trade +148878,International Trade,International Trade +148877,International Trade,International Trade +185525,International Trade,International Trade +185524,International Trade,International Trade +185512,International Trade,International Trade +185511,International Trade,International Trade +185510,International Trade,International Trade +185509,International Trade,International Trade +185502,International Trade,International Trade +166365,International Trade,International Trade +154925,International Trade,International Trade +148976,International Trade,International Trade +148900,International Trade,International Trade +148899,International Trade,International Trade +148898,International Trade,International Trade +148896,International Trade,International Trade +148894,International Trade,International Trade +148893,International Trade,International Trade +148889,International Trade,International Trade +148888,International Trade,International Trade +285290,International Trade,International Trade +285289,International Trade,International Trade +285275,International Trade,International Trade +285274,International Trade,International Trade +285273,International Trade,International Trade +285272,International Trade,International Trade +285270,International Trade,International Trade +285259,International Trade,International Trade +285253,International Trade,International Trade +285251,International Trade,International Trade +285250,International Trade,International Trade +285249,International Trade,International Trade +256351,International Trade,International Trade +232422,International Trade,International Trade +232419,International Trade,International Trade +232418,International Trade,International Trade +232416,International Trade,International Trade +232371,International Trade,International Trade +232370,International Trade,International Trade +205899,International Trade,International Trade +205898,International Trade,International Trade +205896,International Trade,International Trade +205890,International Trade,International Trade +166365,Labour,Labour +154925,Labour,Labour +147193,Labour,Labour +147190,Labour,Labour +147189,Labour,Labour +147188,Labour,Labour +147187,Labour,Labour +147186,Labour,Labour +147184,Labour,Labour +147183,Labour,Labour +147181,Labour,Labour +147179,Labour,Labour +148976,Labour,Labour +148900,Labour,Labour +148899,Labour,Labour +148898,Labour,Labour +148896,Labour,Labour +148894,Labour,Labour +148893,Labour,Labour +148889,Labour,Labour +148888,Labour,Labour +148885,Labour,Labour +148883,Labour,Labour +148882,Labour,Labour +148881,Labour,Labour +148880,Labour,Labour +148879,Labour,Labour +148878,Labour,Labour +148877,Labour,Labour +147202,Labour,Labour +147201,Labour,Labour +147200,Labour,Labour +147199,Labour,Labour +147198,Labour,Labour +147197,Labour,Labour +147196,Labour,Labour +147195,Labour,Labour +147194,Labour,Labour +285289,Labour,Labour +285275,Labour,Labour +285273,Labour,Labour +285272,Labour,Labour +285271,Labour,Labour +285270,Labour,Labour +285259,Labour,Labour +285258,Labour,Labour +285257,Labour,Labour +285255,Labour,Labour +285253,Labour,Labour +285251,Labour,Labour +285249,Labour,Labour +256351,Labour,Labour +256349,Labour,Labour +232422,Labour,Labour +232421,Labour,Labour +232420,Labour,Labour +232419,Labour,Labour +232418,Labour,Labour +232414,Labour,Labour +232412,Labour,Labour +232375,Labour,Labour +232371,Labour,Labour +232349,Labour,Labour +205899,Labour,Labour +205898,Labour,Labour +205897,Labour,Labour +205896,Labour,Labour +205895,Labour,Labour +205893,Labour,Labour +205892,Labour,Labour +205891,Labour,Labour +205890,Labour,Labour +205889,Labour,Labour +205888,Labour,Labour +205872,Labour,Labour +205870,Labour,Labour +205868,Labour,Labour +185525,Labour,Labour +185524,Labour,Labour +185514,Labour,Labour +185513,Labour,Labour +185512,Labour,Labour +185511,Labour,Labour +185510,Labour,Labour +185509,Labour,Labour +185508,Labour,Labour +256351,Transportation,Transportation +256350,Transportation,Transportation +147189,Transportation,Transportation +147188,Transportation,Transportation +147187,Transportation,Transportation +147186,Transportation,Transportation +147184,Transportation,Transportation +147183,Transportation,Transportation +147181,Transportation,Transportation +147179,Transportation,Transportation +232424,Transportation,Transportation +232423,Transportation,Transportation +232422,Transportation,Transportation +232419,Transportation,Transportation +232418,Transportation,Transportation +232417,Transportation,Transportation +232415,Transportation,Transportation +232412,Transportation,Transportation +232374,Transportation,Transportation +232373,Transportation,Transportation +232372,Transportation,Transportation +232371,Transportation,Transportation +232369,Transportation,Transportation +205896,Transportation,Transportation +205894,Transportation,Transportation +205890,Transportation,Transportation +205889,Transportation,Transportation +205872,Transportation,Transportation +205870,Transportation,Transportation +205868,Transportation,Transportation +185525,Transportation,Transportation +185524,Transportation,Transportation +185514,Transportation,Transportation +185513,Transportation,Transportation +185512,Transportation,Transportation +185511,Transportation,Transportation +185510,Transportation,Transportation +185509,Transportation,Transportation +185502,Transportation,Transportation +166365,Transportation,Transportation +154925,Transportation,Transportation +148976,Transportation,Transportation +148900,Transportation,Transportation +148899,Transportation,Transportation +148898,Transportation,Transportation +148896,Transportation,Transportation +148894,Transportation,Transportation +148893,Transportation,Transportation +148889,Transportation,Transportation +148888,Transportation,Transportation +148885,Transportation,Transportation +148883,Transportation,Transportation +148882,Transportation,Transportation +148881,Transportation,Transportation +148880,Transportation,Transportation +148879,Transportation,Transportation +148878,Transportation,Transportation +148877,Transportation,Transportation +285289,Transportation,Transportation +285276,Transportation,Transportation +285275,Transportation,Transportation +285273,Transportation,Transportation +285272,Transportation,Transportation +285270,Transportation,Transportation +285259,Transportation,Transportation +285257,Transportation,Transportation +285256,Transportation,Transportation +285253,Transportation,Transportation +285252,Transportation,Transportation +285251,Transportation,Transportation +285249,Transportation,Transportation +110317,Infrastructure,Infrastructure +339814,Infrastructure,Infrastructure +382929,Infrastructure,Infrastructure +306129,Infrastructure,Infrastructure +306110,Infrastructure,Infrastructure +102503,Infrastructure,Infrastructure +102502,Infrastructure,Infrastructure +102501,Infrastructure,Infrastructure +102500,Infrastructure,Infrastructure +102498,Infrastructure,Infrastructure +102495,Infrastructure,Infrastructure +102494,Infrastructure,Infrastructure +306152,Infrastructure,Infrastructure +306150,Infrastructure,Infrastructure +148164,Agriculture,Agriculture +109522,Other,2010 Olympics +109521,Other,2010 Olympics +112339,Other,2010 Olympics +102654,Other,Safety +111154,Other,Co-operative Development Initiative +111155,Other,Co-operative Development Initiative +110319,Infrastructure,Infrastructure +353900,Infrastructure,Infrastructure +175657,Infrastructure,Infrastructure +175656,Infrastructure,Infrastructure +174821,Infrastructure,Infrastructure +158989,International Trade,International Trade +172758,International Trade,International Trade +161962,International Trade,International Trade +102795,Other,World Health Organization Global Alcohol Policy; Allergen Labeling Regulatory Proposal +161287,International Trade,Commerce international +219647,International Trade,Commerce international +169595,International Trade,Commerce international +169594,International Trade,Commerce international +169593,International Trade,Commerce international +161293,International Trade,Commerce international +161290,International Trade,Commerce international +356864,Industry,Industrie +219647,Industry,Industrie +169595,Industry,Industrie +169594,Industry,Industrie +169593,Industry,Industrie +161293,Industry,Industrie +161290,Industry,Industrie +161288,Industry,Industrie +169594,Intellectual Property,Propriété intellectuelle +169593,Intellectual Property,Propriété intellectuelle +161293,Intellectual Property,Propriété intellectuelle +161290,Intellectual Property,Propriété intellectuelle +161288,Intellectual Property,Propriété intellectuelle +161287,Intellectual Property,Propriété intellectuelle +219647,Intellectual Property,Propriété intellectuelle +169595,Health,Santé +169594,Health,Santé +169593,Health,Santé +161293,Health,Santé +161290,Health,Santé +161288,Health,Santé +161287,Health,Santé +219647,Health,Santé +109161,Other,Product reformulation - sodium +109160,Other,Product reformulation - sodium +109159,Other,Product reformulation - sodium +102875,Other,Product reformulation - sodium +449896,Consumer Issues,Consumer Issues +449892,Consumer Issues,Consumer Issues +149162,Consumer Issues,Consumer Issues +149161,Consumer Issues,Consumer Issues +147396,Consumer Issues,Consumer Issues +131875,Consumer Issues,Consumer Issues +131840,Consumer Issues,Consumer Issues +116014,Consumer Issues,Consumer Issues +261454,Consumer Issues,Consumer Issues +261453,Consumer Issues,Consumer Issues +261452,Consumer Issues,Consumer Issues +261451,Consumer Issues,Consumer Issues +261450,Consumer Issues,Consumer Issues +261449,Consumer Issues,Consumer Issues +249453,Consumer Issues,Consumer Issues +243350,Consumer Issues,Consumer Issues +229590,Consumer Issues,Consumer Issues +229589,Consumer Issues,Consumer Issues +210288,Consumer Issues,Consumer Issues +197989,Consumer Issues,Consumer Issues +197988,Consumer Issues,Consumer Issues +197987,Consumer Issues,Consumer Issues +197967,Consumer Issues,Consumer Issues +197947,Consumer Issues,Consumer Issues +177068,Consumer Issues,Consumer Issues +177067,Consumer Issues,Consumer Issues +177066,Consumer Issues,Consumer Issues +158207,Consumer Issues,Consumer Issues +158206,Consumer Issues,Consumer Issues +158204,Consumer Issues,Consumer Issues +423323,Consumer Issues,Consumer Issues +423322,Consumer Issues,Consumer Issues +423321,Consumer Issues,Consumer Issues +423320,Consumer Issues,Consumer Issues +423319,Consumer Issues,Consumer Issues +423318,Consumer Issues,Consumer Issues +421204,Consumer Issues,Consumer Issues +414520,Consumer Issues,Consumer Issues +409037,Consumer Issues,Consumer Issues +409035,Consumer Issues,Consumer Issues +409032,Consumer Issues,Consumer Issues +409031,Consumer Issues,Consumer Issues +407151,Consumer Issues,Consumer Issues +405086,Consumer Issues,Consumer Issues +405085,Consumer Issues,Consumer Issues +405084,Consumer Issues,Consumer Issues +405083,Consumer Issues,Consumer Issues +405082,Consumer Issues,Consumer Issues +402849,Consumer Issues,Consumer Issues +402847,Consumer Issues,Consumer Issues +402845,Consumer Issues,Consumer Issues +402843,Consumer Issues,Consumer Issues +398399,Consumer Issues,Consumer Issues +398398,Consumer Issues,Consumer Issues +398397,Consumer Issues,Consumer Issues +398396,Consumer Issues,Consumer Issues +398394,Consumer Issues,Consumer Issues +398393,Consumer Issues,Consumer Issues +398392,Consumer Issues,Consumer Issues +398390,Consumer Issues,Consumer Issues +398387,Consumer Issues,Consumer Issues +398386,Consumer Issues,Consumer Issues +395665,Consumer Issues,Consumer Issues +393536,Consumer Issues,Consumer Issues +390112,Consumer Issues,Consumer Issues +390111,Consumer Issues,Consumer Issues +390110,Consumer Issues,Consumer Issues +390107,Consumer Issues,Consumer Issues +390106,Consumer Issues,Consumer Issues +386607,Consumer Issues,Consumer Issues +384888,Consumer Issues,Consumer Issues +384885,Consumer Issues,Consumer Issues +384879,Consumer Issues,Consumer Issues +384877,Consumer Issues,Consumer Issues +384871,Consumer Issues,Consumer Issues +380476,Consumer Issues,Consumer Issues +380467,Consumer Issues,Consumer Issues +380466,Consumer Issues,Consumer Issues +380465,Consumer Issues,Consumer Issues +380464,Consumer Issues,Consumer Issues +380463,Consumer Issues,Consumer Issues +380462,Consumer Issues,Consumer Issues +380461,Consumer Issues,Consumer Issues +380460,Consumer Issues,Consumer Issues +380459,Consumer Issues,Consumer Issues +380458,Consumer Issues,Consumer Issues +380457,Consumer Issues,Consumer Issues +380456,Consumer Issues,Consumer Issues +380455,Consumer Issues,Consumer Issues +380454,Consumer Issues,Consumer Issues +380451,Consumer Issues,Consumer Issues +378161,Consumer Issues,Consumer Issues +378160,Consumer Issues,Consumer Issues +378159,Consumer Issues,Consumer Issues +378158,Consumer Issues,Consumer Issues +378157,Consumer Issues,Consumer Issues +378156,Consumer Issues,Consumer Issues +378155,Consumer Issues,Consumer Issues +378153,Consumer Issues,Consumer Issues +376520,Consumer Issues,Consumer Issues +376519,Consumer Issues,Consumer Issues +376518,Consumer Issues,Consumer Issues +375325,Consumer Issues,Consumer Issues +375323,Consumer Issues,Consumer Issues +375322,Consumer Issues,Consumer Issues +375320,Consumer Issues,Consumer Issues +374309,Consumer Issues,Consumer Issues +371552,Consumer Issues,Consumer Issues +330586,Consumer Issues,Consumer Issues +309995,Consumer Issues,Consumer Issues +309210,Consumer Issues,Consumer Issues +302972,Consumer Issues,Consumer Issues +302971,Consumer Issues,Consumer Issues +302970,Consumer Issues,Consumer Issues +296349,Consumer Issues,Consumer Issues +285277,Consumer Issues,Consumer Issues +276294,Consumer Issues,Consumer Issues +271313,Consumer Issues,Consumer Issues +271312,Consumer Issues,Consumer Issues +271310,Consumer Issues,Consumer Issues +266594,Consumer Issues,Consumer Issues +474248,Consumer Issues,Consumer Issues +474247,Consumer Issues,Consumer Issues +456578,Consumer Issues,Consumer Issues +453452,Consumer Issues,Consumer Issues +474247,Financial Institutions,Financial Institutions +471763,Financial Institutions,Financial Institutions +131875,Financial Institutions,Financial Institutions +131840,Financial Institutions,Financial Institutions +158207,Financial Institutions,Financial Institutions +158206,Financial Institutions,Financial Institutions +158204,Financial Institutions,Financial Institutions +149162,Financial Institutions,Financial Institutions +149161,Financial Institutions,Financial Institutions +147396,Financial Institutions,Financial Institutions +324902,Financial Institutions,Financial Institutions +322490,Financial Institutions,Financial Institutions +322489,Financial Institutions,Financial Institutions +316169,Financial Institutions,Financial Institutions +312894,Financial Institutions,Financial Institutions +312892,Financial Institutions,Financial Institutions +309995,Financial Institutions,Financial Institutions +309210,Financial Institutions,Financial Institutions +302972,Financial Institutions,Financial Institutions +302971,Financial Institutions,Financial Institutions +302970,Financial Institutions,Financial Institutions +296349,Financial Institutions,Financial Institutions +285277,Financial Institutions,Financial Institutions +276295,Financial Institutions,Financial Institutions +276294,Financial Institutions,Financial Institutions +271313,Financial Institutions,Financial Institutions +271312,Financial Institutions,Financial Institutions +271311,Financial Institutions,Financial Institutions +271310,Financial Institutions,Financial Institutions +266594,Financial Institutions,Financial Institutions +261454,Financial Institutions,Financial Institutions +261453,Financial Institutions,Financial Institutions +261452,Financial Institutions,Financial Institutions +261451,Financial Institutions,Financial Institutions +261450,Financial Institutions,Financial Institutions +261449,Financial Institutions,Financial Institutions +259543,Financial Institutions,Financial Institutions +253631,Financial Institutions,Financial Institutions +249453,Financial Institutions,Financial Institutions +243350,Financial Institutions,Financial Institutions +229590,Financial Institutions,Financial Institutions +223168,Financial Institutions,Financial Institutions +223161,Financial Institutions,Financial Institutions +210288,Financial Institutions,Financial Institutions +197989,Financial Institutions,Financial Institutions +197988,Financial Institutions,Financial Institutions +197987,Financial Institutions,Financial Institutions +197967,Financial Institutions,Financial Institutions +197947,Financial Institutions,Financial Institutions +177068,Financial Institutions,Financial Institutions +177067,Financial Institutions,Financial Institutions +177066,Financial Institutions,Financial Institutions +390111,Financial Institutions,Financial Institutions +390110,Financial Institutions,Financial Institutions +390107,Financial Institutions,Financial Institutions +390106,Financial Institutions,Financial Institutions +386607,Financial Institutions,Financial Institutions +384888,Financial Institutions,Financial Institutions +384885,Financial Institutions,Financial Institutions +384881,Financial Institutions,Financial Institutions +384879,Financial Institutions,Financial Institutions +384877,Financial Institutions,Financial Institutions +384872,Financial Institutions,Financial Institutions +384871,Financial Institutions,Financial Institutions +384868,Financial Institutions,Financial Institutions +383142,Financial Institutions,Financial Institutions +383140,Financial Institutions,Financial Institutions +380476,Financial Institutions,Financial Institutions +380467,Financial Institutions,Financial Institutions +380466,Financial Institutions,Financial Institutions +380465,Financial Institutions,Financial Institutions +380464,Financial Institutions,Financial Institutions +380463,Financial Institutions,Financial Institutions +380462,Financial Institutions,Financial Institutions +380461,Financial Institutions,Financial Institutions +380460,Financial Institutions,Financial Institutions +380459,Financial Institutions,Financial Institutions +380458,Financial Institutions,Financial Institutions +380457,Financial Institutions,Financial Institutions +380456,Financial Institutions,Financial Institutions +380455,Financial Institutions,Financial Institutions +380454,Financial Institutions,Financial Institutions +380451,Financial Institutions,Financial Institutions +378161,Financial Institutions,Financial Institutions +378160,Financial Institutions,Financial Institutions +378159,Financial Institutions,Financial Institutions +378158,Financial Institutions,Financial Institutions +378157,Financial Institutions,Financial Institutions +378156,Financial Institutions,Financial Institutions +378155,Financial Institutions,Financial Institutions +378153,Financial Institutions,Financial Institutions +376520,Financial Institutions,Financial Institutions +376519,Financial Institutions,Financial Institutions +376518,Financial Institutions,Financial Institutions +375325,Financial Institutions,Financial Institutions +375323,Financial Institutions,Financial Institutions +375322,Financial Institutions,Financial Institutions +375320,Financial Institutions,Financial Institutions +375319,Financial Institutions,Financial Institutions +374309,Financial Institutions,Financial Institutions +371552,Financial Institutions,Financial Institutions +339957,Financial Institutions,Financial Institutions +339956,Financial Institutions,Financial Institutions +338017,Financial Institutions,Financial Institutions +338016,Financial Institutions,Financial Institutions +333593,Financial Institutions,Financial Institutions +333592,Financial Institutions,Financial Institutions +333591,Financial Institutions,Financial Institutions +333590,Financial Institutions,Financial Institutions +330586,Financial Institutions,Financial Institutions +330585,Financial Institutions,Financial Institutions +329791,Financial Institutions,Financial Institutions +326934,Financial Institutions,Financial Institutions +326933,Financial Institutions,Financial Institutions +469471,Financial Institutions,Financial Institutions +469470,Financial Institutions,Financial Institutions +469469,Financial Institutions,Financial Institutions +468304,Financial Institutions,Financial Institutions +468296,Financial Institutions,Financial Institutions +468291,Financial Institutions,Financial Institutions +468279,Financial Institutions,Financial Institutions +468273,Financial Institutions,Financial Institutions +468271,Financial Institutions,Financial Institutions +466780,Financial Institutions,Financial Institutions +466779,Financial Institutions,Financial Institutions +466778,Financial Institutions,Financial Institutions +466777,Financial Institutions,Financial Institutions +462177,Financial Institutions,Financial Institutions +462167,Financial Institutions,Financial Institutions +461274,Financial Institutions,Financial Institutions +461270,Financial Institutions,Financial Institutions +461268,Financial Institutions,Financial Institutions +461266,Financial Institutions,Financial Institutions +461261,Financial Institutions,Financial Institutions +461257,Financial Institutions,Financial Institutions +461255,Financial Institutions,Financial Institutions +461252,Financial Institutions,Financial Institutions +460453,Financial Institutions,Financial Institutions +460452,Financial Institutions,Financial Institutions +459889,Financial Institutions,Financial Institutions +459382,Financial Institutions,Financial Institutions +459381,Financial Institutions,Financial Institutions +456599,Financial Institutions,Financial Institutions +456578,Financial Institutions,Financial Institutions +453574,Financial Institutions,Financial Institutions +453572,Financial Institutions,Financial Institutions +453452,Financial Institutions,Financial Institutions +453450,Financial Institutions,Financial Institutions +449896,Financial Institutions,Financial Institutions +449894,Financial Institutions,Financial Institutions +449892,Financial Institutions,Financial Institutions +449887,Financial Institutions,Financial Institutions +446546,Financial Institutions,Financial Institutions +446545,Financial Institutions,Financial Institutions +446544,Financial Institutions,Financial Institutions +443346,Financial Institutions,Financial Institutions +440576,Financial Institutions,Financial Institutions +440575,Financial Institutions,Financial Institutions +440574,Financial Institutions,Financial Institutions +440573,Financial Institutions,Financial Institutions +440572,Financial Institutions,Financial Institutions +440571,Financial Institutions,Financial Institutions +440570,Financial Institutions,Financial Institutions +440569,Financial Institutions,Financial Institutions +434772,Financial Institutions,Financial Institutions +434771,Financial Institutions,Financial Institutions +434770,Financial Institutions,Financial Institutions +434769,Financial Institutions,Financial Institutions +433473,Financial Institutions,Financial Institutions +431269,Financial Institutions,Financial Institutions +430340,Financial Institutions,Financial Institutions +430339,Financial Institutions,Financial Institutions +430338,Financial Institutions,Financial Institutions +423325,Financial Institutions,Financial Institutions +423323,Financial Institutions,Financial Institutions +423322,Financial Institutions,Financial Institutions +423321,Financial Institutions,Financial Institutions +423320,Financial Institutions,Financial Institutions +423319,Financial Institutions,Financial Institutions +423318,Financial Institutions,Financial Institutions +421204,Financial Institutions,Financial Institutions +419722,Financial Institutions,Financial Institutions +419408,Financial Institutions,Financial Institutions +417801,Financial Institutions,Financial Institutions +417800,Financial Institutions,Financial Institutions +417797,Financial Institutions,Financial Institutions +414522,Financial Institutions,Financial Institutions +414521,Financial Institutions,Financial Institutions +414520,Financial Institutions,Financial Institutions +409038,Financial Institutions,Financial Institutions +409037,Financial Institutions,Financial Institutions +409035,Financial Institutions,Financial Institutions +409034,Financial Institutions,Financial Institutions +409032,Financial Institutions,Financial Institutions +409031,Financial Institutions,Financial Institutions +407153,Financial Institutions,Financial Institutions +407152,Financial Institutions,Financial Institutions +407151,Financial Institutions,Financial Institutions +406451,Financial Institutions,Financial Institutions +406450,Financial Institutions,Financial Institutions +406449,Financial Institutions,Financial Institutions +405086,Financial Institutions,Financial Institutions +405085,Financial Institutions,Financial Institutions +405084,Financial Institutions,Financial Institutions +405083,Financial Institutions,Financial Institutions +405082,Financial Institutions,Financial Institutions +405081,Financial Institutions,Financial Institutions +402849,Financial Institutions,Financial Institutions +402847,Financial Institutions,Financial Institutions +402845,Financial Institutions,Financial Institutions +402843,Financial Institutions,Financial Institutions +398400,Financial Institutions,Financial Institutions +398399,Financial Institutions,Financial Institutions +398398,Financial Institutions,Financial Institutions +398397,Financial Institutions,Financial Institutions +398396,Financial Institutions,Financial Institutions +398394,Financial Institutions,Financial Institutions +398393,Financial Institutions,Financial Institutions +398392,Financial Institutions,Financial Institutions +398390,Financial Institutions,Financial Institutions +398388,Financial Institutions,Financial Institutions +398387,Financial Institutions,Financial Institutions +398386,Financial Institutions,Financial Institutions +395667,Financial Institutions,Financial Institutions +395666,Financial Institutions,Financial Institutions +395665,Financial Institutions,Financial Institutions +395664,Financial Institutions,Financial Institutions +395663,Financial Institutions,Financial Institutions +395662,Financial Institutions,Financial Institutions +395661,Financial Institutions,Financial Institutions +393536,Financial Institutions,Financial Institutions +393535,Financial Institutions,Financial Institutions +390112,Financial Institutions,Financial Institutions +542529,Financial Institutions,Financial Institutions +540680,Financial Institutions,Financial Institutions +536508,Financial Institutions,Financial Institutions +533266,Financial Institutions,Financial Institutions +533265,Financial Institutions,Financial Institutions +531038,Financial Institutions,Financial Institutions +531036,Financial Institutions,Financial Institutions +528157,Financial Institutions,Financial Institutions +528156,Financial Institutions,Financial Institutions +521805,Financial Institutions,Financial Institutions +521804,Financial Institutions,Financial Institutions +521133,Financial Institutions,Financial Institutions +518496,Financial Institutions,Financial Institutions +516494,Financial Institutions,Financial Institutions +516493,Financial Institutions,Financial Institutions +516492,Financial Institutions,Financial Institutions +516491,Financial Institutions,Financial Institutions +511943,Financial Institutions,Financial Institutions +511942,Financial Institutions,Financial Institutions +503848,Financial Institutions,Financial Institutions +503847,Financial Institutions,Financial Institutions +500332,Financial Institutions,Financial Institutions +500329,Financial Institutions,Financial Institutions +500327,Financial Institutions,Financial Institutions +500326,Financial Institutions,Financial Institutions +500324,Financial Institutions,Financial Institutions +500323,Financial Institutions,Financial Institutions +494355,Financial Institutions,Financial Institutions +494354,Financial Institutions,Financial Institutions +494353,Financial Institutions,Financial Institutions +489549,Financial Institutions,Financial Institutions +489548,Financial Institutions,Financial Institutions +489530,Financial Institutions,Financial Institutions +479210,Financial Institutions,Financial Institutions +479083,Financial Institutions,Financial Institutions +476818,Financial Institutions,Financial Institutions +474250,Financial Institutions,Financial Institutions +131875,Other,Financial Sector Policy +131840,Other,Financial Sector Policy +444811,Industry,Industry +440569,Industry,Industry +229590,Industry,Industry +229589,Industry,Industry +223168,Industry,Industry +223161,Industry,Industry +210288,Industry,Industry +177068,Industry,Industry +177067,Industry,Industry +177066,Industry,Industry +158207,Industry,Industry +158206,Industry,Industry +158204,Industry,Industry +149162,Industry,Industry +149161,Industry,Industry +147396,Industry,Industry +259543,Industry,Industry +531037,Industry,Industry +524325,Industry,Industry +521133,Industry,Industry +516495,Industry,Industry +516490,Industry,Industry +511944,Industry,Industry +466770,Industry,Industry +462983,Industry,Industry +462982,Industry,Industry +462171,Industry,Industry +461271,Industry,Industry +461261,Industry,Industry +461255,Industry,Industry +461247,Industry,Industry +460453,Industry,Industry +460452,Industry,Industry +105294,Energy,Energy +105294,Regional Development,Regional Development +137255,Agriculture,Agriculture +137255,Health,Health +137255,Industry,Industry +137255,Justice and Law Enforcement,Justice and Law Enforcement +137255,Small Business,Small Business +137255,Taxation and Finance,Taxation and Finance +114658,Other,Financial support for capital Improvements +114658,Infrastructure,Infrastructure +101954,Other,Meeting Request +209632,Constitutional Issues,Constitutional Issues +209631,Consumer Issues,Consumer Issues +227593,Internal Trade,Internal Trade +209632,International Trade,International Trade +209631,Taxation and Finance,Taxation and Finance +102054,Other,"CSICs developments, challenges, and recommendations to further protect consumers" +102055,Other,"CSICs developments, challenges, and recommendations to further protect consumers" +111115,Infrastructure,Infrastructure +110954,Infrastructure,Infrastructure +155308,Agriculture,Agriculture +209595,Constitutional Issues,Constitutional Issues +190631,Consumer Issues,Consumer Issues +203790,Health,Health +209595,Internal Trade,Internal Trade +314874,International Trade,International Trade +314874,Justice and Law Enforcement,Justice and Law Enforcement +314870,Small Business,Small Business +190627,Taxation and Finance,Taxation and Finance +102115,Other,Foreign Investment +209590,Constitutional Issues,Constitutional Issues +209590,Consumer Issues,Consumer Issues +273953,Health,Health +158073,Internal Trade,Internal Trade +314873,International Trade,International Trade +314871,Justice and Law Enforcement,Justice and Law Enforcement +219783,Small Business,Small Business +209591,Taxation and Finance,Taxation and Finance +102137,Other,Foreign Investment +102138,Other,Foreign Investment +102139,Other,CSIC regulatory issues +102140,Other,DFAIT 100th Anniversary Celebration +102142,Other,CSIC regulatory issues +102144,Other,Foreign Investment +102146,Other,Foreign Investment +102147,Other,Foreign Investment +102147,Other,Research and Development +102147,Other,Foreign Investment +102147,Other,Research and Development +102476,International Relations,International Relations +102474,Mining,Mining +166285,Constitutional Issues,Constitutional Issues +166285,Consumer Issues,Consumer Issues +245172,Health,Health +166285,Internal Trade,Internal Trade +166285,Small Business,Small Business +142354,Education,Education +137139,Regional Development,Regional Development +102214,Other,Copyright Act re Application of Section 66 +107394,Taxation and Finance,Taxation and Finance +131821,Government Procurement,Government Procurement +102234,Other,Discuss the termination of the Intellectual Property Mobilization Program +102235,Other,Discuss an alternate to the Intellectual Property Mobilization Program +147141,Internal Trade,Commerce intérieur +103257,Consumer Issues,Consumer Issues +112654,Other,Competition Policy +104716,Agriculture,Agriculture +104715,Consumer Issues,Consumer Issues +104716,Health,Health +104716,Industry,Industry +104716,International Trade,International Trade +102335,Other,"Science and Technology, Infrastructure" +102336,Other,Research +110337,Other,"Science and Technology, Infrastructure" +175420,International Trade,International Trade +131254,Government Procurement,Government Procurement +205889,International Trade,International Trade +185502,Labour,Labour +256352,Transportation,Transportation +110318,Infrastructure,Infrastructure +196832,Infrastructure,Infrastructure +77283,Other,Agriculture +123276,Infrastructure,Infrastructure +306130,Infrastructure,Infrastructure +102504,Other,Jeux 2010 +150408,Agriculture,Agriculture +150408,International Relations,International Relations +148164,International Trade,International Trade +109524,Other,2010 Olympics +119875,Other,2010 Olympics +119875,Other,Official Languages +115744,Education,Education +106461,Other,Government speeches and Communications +103594,Energy,Energy +103594,Environment,Environment +103594,Regional Development,Regional Development +102654,Other,Gateway Initiatives +102654,Other,Proximity +154660,Other,Safety +102654,Other,Security +102654,Other,Technology +102655,Other,"Canadian Aviation Security Regulations, regarding airport security" +102656,Other,"Canadian Aviation Security Regulations, regarding airport security" +102674,Other,Transportation Policies related to the Ontario/Quebec Gateway and Trade Corridor Initiative +103517,International Trade,International Trade +103517,Mining,Mining +102694,Other,Co-operative Development Initiative +102696,Other,Co-operative Development Initiative +102697,Other,Co-operative Development Initiative +102699,Other,Co-operative Development Initiative +102700,Other,Co-operative Development Initiative +102701,Other,Co-operative Development Initiative +102702,Other,Co-operative Development Initiative +102703,Other,Border Issues +102703,Other,Technology +110320,Infrastructure,Infrastructure +112634,Regional Development,Développement régional +112634,Mining,Mines +102734,Other,Rail Safety +102734,Other,Status of Response to the Railway Safety Act (RSA) Review Panel Report +161959,International Trade,International Trade +102796,Other,Food Security Policy +118874,Other,World Health Organization Global Alcohol Policy; Allergen Labeling Regulatory Proposal +161288,International Trade,Commerce international +161287,Industry,Industrie +169595,Intellectual Property,Propriété intellectuelle +356864,Health,Santé +109162,Other,Product reformulation - sodium +453450,Consumer Issues,Consumer Issues +474248,Financial Institutions,Financial Institutions +116014,Other,Financial Sector Policy +446540,Industry,Industry +158207,Justice and Law Enforcement,Justice and Law Enforcement +134402,Other,Payments Systems Issues +225651,Agriculture,Agriculture +276115,International Trade,International Trade +123121,Industry,Industry +355142,Agriculture,Agriculture +379962,Health,Health +308636,Internal Trade,Internal Trade +308633,International Trade,International Trade +102974,Other,PMPRB +539911,Employment and Training,Employment and Training +103018,Other,Talent Recruitment +103019,Other,"Infrastructure, Research, and Regional Development" +400111,Infrastructure,Infrastructure +261213,Regional Development,Regional Development +103021,Other,Employment Insurance +103028,Other,Infrastructure and Research +308654,Internal Trade,Internal Trade +308654,International Trade,International Trade +103034,Other,PMPRB +225627,Agriculture,Agriculture +225627,International Trade,International Trade +103076,Other,General meeting and introductions +103077,Other,General meeting and introductions +103094,Other,Blueprint for Pharmacy Initiative +109335,Other,Overview of Marathon's oil sands operation +103115,Other,Overview of Marathon's Oil Sands operations +148026,Other,Financial Industry +373123,Taxation and Finance,Taxation and Finance +103134,Other,Energy Policy +103154,Other,Pension Reform +130754,Other,FINANCE +124954,Industry,Industry +103215,Other,Long Term Space Plan Consultation +103246,Other,Briefing on LNG heavy duty vehicles +145575,Agriculture,Agriculture +132256,Energy,Energy +132257,Industry,Industry +167384,Taxation and Finance,Taxation and Finance +103357,Energy,Energy +103375,Other,Records of Employment (ROE) Automation +112056,Infrastructure,Infrastructure +114184,Environment,Environment +114184,Industry,Industry +114184,Infrastructure,Infrastructure +103415,Other,"Canadian Aviation Security Regulations, regarding airport security" +116176,Other,Internal Credential Management Initiative +103434,Other,Secure Channel Service +504774,Financial Institutions,Financial Institutions +525384,Industry,Industry +162038,Financial Institutions,Financial Institutions +162038,Industry,Industry +103495,Other,patent medicines Review Board +103515,Transportation,Transportation +103534,Other,Overview of Telesat +103554,Other,Renewal of military training facilities contract with NAV CANADA Training and Conference Centre +103576,Other,Rail Service Review +121075,Other,International Health +103634,Other,Set up meeting +103638,Other,Port infrastructure +109022,Environment,Environment +109022,Mining,Mining +109022,Regional Development,Regional Development +123902,Other,Boreal forests +123902,Other,Land use planning +103650,Other,procurement of INI power unit +103651,Other,Funding for INI facility in Kingston +345177,Education,Education +354713,Health,Health +112754,Other,Développement du contenu canadien +103714,Infrastructure,Infrastructure +192589,Consumer Issues,Consumer Issues +124955,Industry,Industry +192589,Internal Trade,Internal Trade +192585,International Trade,International Trade +344780,Taxation and Finance,Taxation and Finance +192586,Transportation,Transportation +103715,Other,Infrastructure +103755,Other,Discussion relating to the regulations of credit cards +103756,Other,Discussion relating to the regulations of credit cards +103774,Other,Energy +145830,Other,Research +150408,Internal Trade,Internal Trade +129914,Other,Oceans Science and Technology Iniitiative +103916,Other,Bank Act Regulations +125215,Other,Corporate Announcement +115734,Industry,Industry +275890,Financial Institutions,Financial Institutions +318944,Industry,Industry +115745,Justice and Law Enforcement,Justice and Law Enforcement +104095,Other,Aerospace and Defence R&D and the Industrial and Regional Benefits Policy +104114,Other,"Consumer Product Safety Act; GS1 Canada's work enabling identification, authentication and recall of products in the supply chain." +104174,Other,"Consumer Product Safety Act, Work of GS1 Canada to enable identification, authentication and recall of products in the supply chain." +104335,Other,Introduction +104454,Other,Climate Change +104536,Other,Long Term Space Plan (LTSP) +104635,Other,Credit market developments / access to credit +145239,Other,Child Poverty +106359,Other,Funding +108562,Infrastructure,Infrastructure +104835,Taxation and Finance,Taxation and Finance +104894,Other,Patented Medicine Prices Review Board (PMPRB) +104914,Other,Non Resident Ownership Policy +104915,Other,Patented Medicine Prices Review Board (PMPRB) +104955,Taxation and Finance,Taxation and Finance +104996,Other,Climate change +116146,Agriculture,Agriculture +112275,Energy,Energy +116134,Environment,Environment +116136,Industry,Industry +116134,Regional Development,Regional Development +116135,Transportation,Transportation +105094,Other,Non-Insured Health Benefits (NIHB) Reimbursement Issues +152139,Other,Pricing controls in Canada +106854,Other,C-10 +105355,Other,Economic stimulus +106854,Other,Internal trade barriers +152202,Other,Knowledge Infrastructure Program (KIP) +105314,Other,Arming of Border Guards training process +105335,Other,Trade Issues +105327,Other,Consultations on capital issues +105355,Other,Bill C-10 +105350,Other,Bill C-273 +105355,Other,Bill C-300 +105355,Other,Biopharmaceuticals +105355,Other,Canadian industry program for energy conservation +105355,Other,Capital support bio bio-products +105355,Other,digital economy and ICT +105355,Other,Funding approval process for bio-product applications +109921,Other,Identity Theft +105355,Other,Intellectual property rights and copyright +105355,Other,Interprovincial trade barriers for wine +105355,Other,Mining and mineral strategy +105355,Other,National automotive strategy for Canada +105355,Other,Privacy +105355,Other,Research & Development in Canada +105355,Other,Skilled workforce +105361,Other,Information and Communication Technologies/E-Commerce paper +105361,Other,Skills +105361,Other,Small/Medium enterprises pandemic planning +105361,Other,Attracting U.S. Small/Medium enterprises to Canada +105376,Other,Impact of climate change strategy on businesses and consumers +114515,Other,CBSA core services review +105377,Other,Enhancement of the NEXUS program +117397,Other,Canada-EU Free Trade +105379,Other,Canada-India and Canada-China trade relations +132882,Other,Canada-U.S. Trade +105379,Other,Federal Government's Corporate Social Responsibility plan +121259,Other,Foreign Trade Zones +105379,Other,G-8 Business Summit +105379,Other,Open Skies agreement +117399,Other,Buy American provisions +105379,Other,Canada's gateway strategy +105379,Other,Canada-Columbia free trade agreement +449883,Industry,Industry +446543,Industry,Industry +446542,Industry,Industry +446541,Industry,Industry +158206,Justice and Law Enforcement,Justice and Law Enforcement +158204,Justice and Law Enforcement,Justice and Law Enforcement +147396,Justice and Law Enforcement,Justice and Law Enforcement +131875,Other,Payments Systems Issues +131840,Other,Payments Systems Issues +109157,Other,Payments Systems Issues +225650,Agriculture,Agriculture +225649,Agriculture,Agriculture +225652,Agriculture,Agriculture +276113,International Trade,International Trade +276112,International Trade,International Trade +225652,International Trade,International Trade +225651,International Trade,International Trade +225650,International Trade,International Trade +225649,International Trade,International Trade +355138,Agriculture,Agriculture +308635,Agriculture,Agriculture +169859,Agriculture,Agriculture +169858,Agriculture,Agriculture +162042,Agriculture,Agriculture +162041,Agriculture,Agriculture +355149,Agriculture,Agriculture +355146,Agriculture,Agriculture +379955,Health,Health +294589,International Trade,International Trade +276669,International Trade,International Trade +162041,International Trade,International Trade +276665,International Trade,International Trade +276662,International Trade,International Trade +379962,International Trade,International Trade +379955,International Trade,International Trade +355149,International Trade,International Trade +355146,International Trade,International Trade +355142,International Trade,International Trade +355138,International Trade,International Trade +327282,International Trade,International Trade +327280,International Trade,International Trade +327279,International Trade,International Trade +327278,International Trade,International Trade +308636,International Trade,International Trade +308634,International Trade,International Trade +512071,Employment and Training,Employment and Training +486591,Employment and Training,Employment and Training +103018,Employment and Training,Employment and Training +337374,Employment and Training,Employment and Training +335774,Employment and Training,Employment and Training +334163,Employment and Training,Employment and Training +317291,Employment and Training,Employment and Training +236070,Employment and Training,Employment and Training +453759,Employment and Training,Employment and Training +444438,Employment and Training,Employment and Training +437844,Employment and Training,Employment and Training +434465,Employment and Training,Employment and Training +434450,Employment and Training,Employment and Training +430953,Employment and Training,Employment and Training +396498,Employment and Training,Employment and Training +396502,Infrastructure,Infrastructure +388075,Infrastructure,Infrastructure +109711,Infrastructure,Infrastructure +109699,Infrastructure,Infrastructure +103030,Infrastructure,Infrastructure +103020,Infrastructure,Infrastructure +262869,Infrastructure,Infrastructure +250575,Infrastructure,Infrastructure +250267,Infrastructure,Infrastructure +380836,Infrastructure,Infrastructure +373176,Infrastructure,Infrastructure +369699,Infrastructure,Infrastructure +369691,Infrastructure,Infrastructure +369232,Infrastructure,Infrastructure +369226,Infrastructure,Infrastructure +369221,Infrastructure,Infrastructure +369217,Infrastructure,Infrastructure +369210,Infrastructure,Infrastructure +369198,Infrastructure,Infrastructure +369085,Infrastructure,Infrastructure +369041,Infrastructure,Infrastructure +369040,Infrastructure,Infrastructure +369039,Infrastructure,Infrastructure +369038,Infrastructure,Infrastructure +369037,Infrastructure,Infrastructure +369036,Infrastructure,Infrastructure +369035,Infrastructure,Infrastructure +369033,Infrastructure,Infrastructure +369030,Infrastructure,Infrastructure +368296,Infrastructure,Infrastructure +346258,Infrastructure,Infrastructure +340464,Infrastructure,Infrastructure +338021,Infrastructure,Infrastructure +337375,Infrastructure,Infrastructure +334160,Infrastructure,Infrastructure +334153,Infrastructure,Infrastructure +531015,Infrastructure,Infrastructure +531014,Infrastructure,Infrastructure +528599,Infrastructure,Infrastructure +524806,Infrastructure,Infrastructure +514313,Infrastructure,Infrastructure +512083,Infrastructure,Infrastructure +509970,Infrastructure,Infrastructure +503490,Infrastructure,Infrastructure +503487,Infrastructure,Infrastructure +503486,Infrastructure,Infrastructure +472209,Infrastructure,Infrastructure +445116,Infrastructure,Infrastructure +445115,Infrastructure,Infrastructure +437844,Infrastructure,Infrastructure +437050,Infrastructure,Infrastructure +434462,Infrastructure,Infrastructure +434460,Infrastructure,Infrastructure +418927,Infrastructure,Infrastructure +408833,Infrastructure,Infrastructure +401101,Infrastructure,Infrastructure +400118,Infrastructure,Infrastructure +400117,Infrastructure,Infrastructure +400115,Infrastructure,Infrastructure +437844,Regional Development,Regional Development +437842,Regional Development,Regional Development +103030,Regional Development,Regional Development +103020,Regional Development,Regional Development +140294,Regional Development,Regional Development +408834,Regional Development,Regional Development +408832,Regional Development,Regional Development +396504,Regional Development,Regional Development +388818,Regional Development,Regional Development +388075,Regional Development,Regional Development +380836,Regional Development,Regional Development +369041,Regional Development,Regional Development +350316,Regional Development,Regional Development +349521,Regional Development,Regional Development +348349,Regional Development,Regional Development +338024,Regional Development,Regional Development +338021,Regional Development,Regional Development +103023,Other,Infrastructure and Research +308653,Internal Trade,Internal Trade +308653,International Trade,International Trade +225626,Agriculture,Agriculture +225625,Agriculture,Agriculture +252313,Agriculture,Agriculture +252312,Agriculture,Agriculture +225626,International Trade,International Trade +225625,International Trade,International Trade +252312,International Trade,International Trade +109334,Other,Overview of Marathon's oil sands operation +103114,Other,Overview of Marathon's oil sands operation +132451,Other,Overview of Marathon's oil sands operation +122436,Other,Overview of Marathon's oil sands operation +122435,Other,Overview of Marathon's oil sands operation +122434,Other,Overview of Marathon's oil sands operation +138478,Other,Financial Industry +138476,Other,Financial Industry +460165,Taxation and Finance,Taxation and Finance +433410,Taxation and Finance,Taxation and Finance +138482,Taxation and Finance,Taxation and Finance +138481,Taxation and Finance,Taxation and Finance +138480,Taxation and Finance,Taxation and Finance +138478,Taxation and Finance,Taxation and Finance +138476,Taxation and Finance,Taxation and Finance +138475,Taxation and Finance,Taxation and Finance +138474,Taxation and Finance,Taxation and Finance +223192,Taxation and Finance,Taxation and Finance +223187,Taxation and Finance,Taxation and Finance +218367,Taxation and Finance,Taxation and Finance +211942,Taxation and Finance,Taxation and Finance +211940,Taxation and Finance,Taxation and Finance +211939,Taxation and Finance,Taxation and Finance +211928,Taxation and Finance,Taxation and Finance +211927,Taxation and Finance,Taxation and Finance +156551,Taxation and Finance,Taxation and Finance +151503,Taxation and Finance,Taxation and Finance +145795,Taxation and Finance,Taxation and Finance +140775,Taxation and Finance,Taxation and Finance +140774,Taxation and Finance,Taxation and Finance +140758,Taxation and Finance,Taxation and Finance +140757,Taxation and Finance,Taxation and Finance +140756,Taxation and Finance,Taxation and Finance +138488,Taxation and Finance,Taxation and Finance +138483,Taxation and Finance,Taxation and Finance +365029,Taxation and Finance,Taxation and Finance +365027,Taxation and Finance,Taxation and Finance +348747,Taxation and Finance,Taxation and Finance +347798,Taxation and Finance,Taxation and Finance +342092,Taxation and Finance,Taxation and Finance +342091,Taxation and Finance,Taxation and Finance +331654,Taxation and Finance,Taxation and Finance +325129,Taxation and Finance,Taxation and Finance +294089,Taxation and Finance,Taxation and Finance +277852,Taxation and Finance,Taxation and Finance +277850,Taxation and Finance,Taxation and Finance +271871,Taxation and Finance,Taxation and Finance +271870,Taxation and Finance,Taxation and Finance +271869,Taxation and Finance,Taxation and Finance +270169,Taxation and Finance,Taxation and Finance +267510,Taxation and Finance,Taxation and Finance +267509,Taxation and Finance,Taxation and Finance +267489,Taxation and Finance,Taxation and Finance +261631,Taxation and Finance,Taxation and Finance +375752,Taxation and Finance,Taxation and Finance +132255,Energy,Energy +124495,Energy,Energy +145575,Energy,Energy +132509,Energy,Energy +132257,Energy,Energy +132256,Industry,Industry +132255,Industry,Industry +205407,Taxation and Finance,Taxation and Finance +103434,Other,Internal Credential Management Initiative +501994,Financial Institutions,Financial Institutions +494583,Financial Institutions,Financial Institutions +369609,Financial Institutions,Financial Institutions +369608,Financial Institutions,Financial Institutions +350808,Financial Institutions,Financial Institutions +350807,Financial Institutions,Financial Institutions +350806,Financial Institutions,Financial Institutions +350805,Financial Institutions,Financial Institutions +349519,Financial Institutions,Financial Institutions +349518,Financial Institutions,Financial Institutions +349517,Financial Institutions,Financial Institutions +348292,Financial Institutions,Financial Institutions +348291,Financial Institutions,Financial Institutions +326338,Financial Institutions,Financial Institutions +326336,Financial Institutions,Financial Institutions +326335,Financial Institutions,Financial Institutions +321958,Financial Institutions,Financial Institutions +321950,Financial Institutions,Financial Institutions +321945,Financial Institutions,Financial Institutions +303492,Financial Institutions,Financial Institutions +271609,Financial Institutions,Financial Institutions +465101,Financial Institutions,Financial Institutions +443087,Financial Institutions,Financial Institutions +439705,Financial Institutions,Financial Institutions +439704,Financial Institutions,Financial Institutions +410807,Financial Institutions,Financial Institutions +404937,Financial Institutions,Financial Institutions +395310,Financial Institutions,Financial Institutions +395309,Financial Institutions,Financial Institutions +395308,Financial Institutions,Financial Institutions +391787,Financial Institutions,Financial Institutions +386243,Financial Institutions,Financial Institutions +382006,Financial Institutions,Financial Institutions +380098,Financial Institutions,Financial Institutions +374199,Financial Institutions,Financial Institutions +517167,Financial Institutions,Financial Institutions +504789,Financial Institutions,Financial Institutions +504785,Financial Institutions,Financial Institutions +504780,Financial Institutions,Financial Institutions +517167,Industry,Industry +514165,Industry,Industry +349519,Industry,Industry +349518,Industry,Industry +349517,Industry,Industry +348292,Industry,Industry +348291,Industry,Industry +321958,Industry,Industry +321950,Industry,Industry +321945,Industry,Industry +477656,Industry,Industry +443087,Industry,Industry +443083,Industry,Industry +162035,Financial Institutions,Financial Institutions +162032,Financial Institutions,Financial Institutions +106361,Financial Institutions,Financial Institutions +154616,Financial Institutions,Financial Institutions +148214,Financial Institutions,Financial Institutions +148211,Financial Institutions,Financial Institutions +148207,Financial Institutions,Financial Institutions +143015,Financial Institutions,Financial Institutions +135822,Financial Institutions,Financial Institutions +132347,Financial Institutions,Financial Institutions +132346,Financial Institutions,Financial Institutions +106362,Financial Institutions,Financial Institutions +223848,Financial Institutions,Financial Institutions +212585,Financial Institutions,Financial Institutions +212584,Financial Institutions,Financial Institutions +200398,Financial Institutions,Financial Institutions +200394,Financial Institutions,Financial Institutions +200388,Financial Institutions,Financial Institutions +185969,Financial Institutions,Financial Institutions +185967,Financial Institutions,Financial Institutions +165604,Financial Institutions,Financial Institutions +162035,Industry,Industry +162032,Industry,Industry +106363,Industry,Industry +154616,Industry,Industry +241114,Industry,Industry +212585,Industry,Industry +212584,Industry,Industry +168011,Industry,Industry +168009,Industry,Industry +121074,Other,International Health +106875,Other,International Health +121076,Other,International Health +145584,Other,Port infrastructure +117519,Other,Port infrastructure +108575,Other,Port infrastructure +108574,Other,Port infrastructure +103645,Other,Port infrastructure +103644,Other,Port infrastructure +103643,Other,Port infrastructure +103642,Other,Port infrastructure +103641,Other,Port infrastructure +103640,Other,Port infrastructure +103639,Other,Port infrastructure +109021,Environment,Environment +109020,Environment,Environment +109023,Environment,Environment +109021,Mining,Mining +109020,Mining,Mining +109023,Mining,Mining +109021,Regional Development,Regional Development +109020,Regional Development,Regional Development +109023,Regional Development,Regional Development +103649,Other,Boreal forests +103649,Other,Land use planning +220727,Education,Education +220687,Education,Education +345177,Health,Health +345157,Health,Health +148638,Health,Health +316495,Health,Health +220727,Health,Health +220687,Health,Health +354714,Health,Health +109201,Other,Développement du contenu canadien +103694,Other,Développement du contenu canadien +120256,Other,Développement du contenu canadien +192586,Consumer Issues,Consumer Issues +192585,Consumer Issues,Consumer Issues +184345,Consumer Issues,Consumer Issues +124955,Consumer Issues,Consumer Issues +258795,Consumer Issues,Consumer Issues +195001,Consumer Issues,Consumer Issues +195001,Industry,Industry +184345,Industry,Industry +152070,Industry,Industry +152066,Industry,Industry +192586,Internal Trade,Internal Trade +192585,Internal Trade,Internal Trade +195001,Internal Trade,Internal Trade +345678,International Trade,International Trade +344893,International Trade,International Trade +152070,International Trade,International Trade +152066,International Trade,International Trade +289894,International Trade,International Trade +289893,International Trade,International Trade +289892,International Trade,International Trade +289890,International Trade,International Trade +289889,International Trade,International Trade +258806,International Trade,International Trade +258805,International Trade,International Trade +258804,International Trade,International Trade +258803,International Trade,International Trade +258797,International Trade,International Trade +258795,International Trade,International Trade +227955,International Trade,International Trade +192586,International Trade,International Trade +275549,Taxation and Finance,Taxation and Finance +258795,Taxation and Finance,Taxation and Finance +344893,Taxation and Finance,Taxation and Finance +192585,Transportation,Transportation +184345,Transportation,Transportation +152070,Transportation,Transportation +152066,Transportation,Transportation +117794,Transportation,Transportation +205408,Transportation,Transportation +195001,Transportation,Transportation +192589,Transportation,Transportation +145829,Other,Research +145826,Other,Research +103754,Other,Research +148164,Internal Trade,Internal Trade +103782,Other,Oceans Science and Technology Iniitiative +125214,Other,Corporate Announcement +116982,Other,Corporate Announcement +116977,Other,Corporate Announcement +116976,Other,Corporate Announcement +116975,Other,Corporate Announcement +116974,Other,Corporate Announcement +110242,Other,Corporate Announcement +110241,Other,Corporate Announcement +110240,Other,Corporate Announcement +110238,Other,Corporate Announcement +103994,Other,Corporate Announcement +103975,Other,Corporate Announcement +103974,Other,Corporate Announcement +138868,Other,Corporate Announcement +138866,Other,Corporate Announcement +263169,Financial Institutions,Financial Institutions +251249,Financial Institutions,Financial Institutions +132532,Financial Institutions,Financial Institutions +367879,Financial Institutions,Financial Institutions +367877,Financial Institutions,Financial Institutions +367876,Financial Institutions,Financial Institutions +351900,Financial Institutions,Financial Institutions +325974,Financial Institutions,Financial Institutions +325973,Financial Institutions,Financial Institutions +318944,Financial Institutions,Financial Institutions +318932,Financial Institutions,Financial Institutions +302049,Financial Institutions,Financial Institutions +302010,Financial Institutions,Financial Institutions +302009,Financial Institutions,Financial Institutions +318932,Industry,Industry +263172,Industry,Industry +110035,Industry,Industry +132532,Industry,Industry +367879,Industry,Industry +367877,Industry,Industry +367876,Industry,Industry +325973,Industry,Industry +132224,Other,Child Poverty +116234,Infrastructure,Infrastructure +116145,Agriculture,Agriculture +116141,Agriculture,Agriculture +116137,Agriculture,Agriculture +116136,Agriculture,Agriculture +116135,Agriculture,Agriculture +116134,Agriculture,Agriculture +116035,Agriculture,Agriculture +116034,Agriculture,Agriculture +116015,Agriculture,Agriculture +112277,Agriculture,Agriculture +112276,Agriculture,Agriculture +112275,Agriculture,Agriculture +112274,Agriculture,Agriculture +112255,Agriculture,Agriculture +122954,Agriculture,Agriculture +119795,Agriculture,Agriculture +119794,Agriculture,Agriculture +112274,Energy,Energy +112255,Energy,Energy +122954,Energy,Energy +119795,Energy,Energy +119794,Energy,Energy +116146,Energy,Energy +116145,Energy,Energy +116141,Energy,Energy +116137,Energy,Energy +116136,Energy,Energy +116135,Energy,Energy +116134,Energy,Energy +116035,Energy,Energy +116034,Energy,Energy +116015,Energy,Energy +112277,Energy,Energy +112276,Energy,Energy +116035,Environment,Environment +116015,Environment,Environment +122954,Environment,Environment +116141,Environment,Environment +116136,Environment,Environment +116135,Environment,Environment +116135,Industry,Industry +112277,Industry,Industry +105674,Other,C-10 +105350,Other,Economic stimulus +105317,Other,Economic stimulus +109897,Other,Economic stimulus +109895,Other,Economic stimulus +106854,Other,Economic stimulus +105674,Other,Economic stimulus +105361,Other,Economic stimulus +105674,Other,Internal trade barriers +134995,Other,Knowledge Infrastructure Program (KIP) +105350,Other,Bill C-10 +105317,Other,Bill C-10 +105317,Other,Bill C-273 +109921,Other,Bill C-273 +109919,Other,Bill C-273 +105361,Other,Bill C-273 +105355,Other,Bill C-273 +105350,Other,Bill C-300 +105317,Other,Bill C-300 +109921,Other,Bill C-300 +109919,Other,Bill C-300 +105361,Other,Bill C-300 +105350,Other,Biopharmaceuticals +105317,Other,Biopharmaceuticals +105350,Other,Canadian industry program for energy conservation +105317,Other,Canadian industry program for energy conservation +105350,Other,Capital support bio bio-products +105317,Other,Capital support bio bio-products +105350,Other,digital economy and ICT +105317,Other,digital economy and ICT +105350,Other,Funding approval process for bio-product applications +105317,Other,Funding approval process for bio-product applications +109919,Other,Identity Theft +105355,Other,Identity Theft +105350,Other,Identity Theft +105317,Other,Identity Theft +105350,Other,Intellectual property rights and copyright +105317,Other,Intellectual property rights and copyright +105350,Other,Interprovincial trade barriers for wine +105317,Other,Interprovincial trade barriers for wine +105350,Other,Mining and mineral strategy +105317,Other,Mining and mineral strategy +105350,Other,National automotive strategy for Canada +105317,Other,National automotive strategy for Canada +105350,Other,Privacy +105317,Other,Privacy +105350,Other,Research & Development in Canada +105317,Other,Research & Development in Canada +105350,Other,Skilled workforce +105317,Other,Skilled workforce +114514,Other,CBSA core services review +105377,Other,CBSA core services review +105379,Other,Canada-EU Free Trade +105379,Other,Canada-U.S. Trade +109895,Other,Foreign Trade Zones +106855,Other,Foreign Trade Zones +105379,Other,Foreign Trade Zones +117398,Other,Buy American provisions +117395,Other,Buy American provisions +115954,Other,Buy American provisions +109918,Other,Buy American provisions +109917,Other,Buy American provisions +109916,Other,Buy American provisions +105379,Other,Buy American provisions +125814,Other,Buy American provisions +123619,Other,Buy American provisions +121261,Other,Buy American provisions +121254,Other,Buy American provisions +117403,Other,Buy American provisions +106855,Other,Airport Rent +106855,Other,National Transportation Strategy +105515,Other,To discuss the Canadian Space Agency's Long Term Space Plan +461903,Intellectual Property,Intellectual Property +458952,Intellectual Property,Intellectual Property +111417,Intellectual Property,Intellectual Property +161964,Intellectual Property,Intellectual Property +161963,Intellectual Property,Intellectual Property +161960,Intellectual Property,Intellectual Property +161947,Intellectual Property,Intellectual Property +161861,Intellectual Property,Intellectual Property +159248,Intellectual Property,Intellectual Property +159247,Intellectual Property,Intellectual Property +156887,Intellectual Property,Intellectual Property +156880,Intellectual Property,Intellectual Property +242909,Intellectual Property,Intellectual Property +234429,Intellectual Property,Intellectual Property +213415,Intellectual Property,Intellectual Property +213413,Intellectual Property,Intellectual Property +200007,Intellectual Property,Intellectual Property +200006,Intellectual Property,Intellectual Property +200004,Intellectual Property,Intellectual Property +200003,Intellectual Property,Intellectual Property +200000,Intellectual Property,Intellectual Property +199999,Intellectual Property,Intellectual Property +199996,Intellectual Property,Intellectual Property +199994,Intellectual Property,Intellectual Property +199990,Intellectual Property,Intellectual Property +199987,Intellectual Property,Intellectual Property +199873,Intellectual Property,Intellectual Property +199872,Intellectual Property,Intellectual Property +198428,Intellectual Property,Intellectual Property +198407,Intellectual Property,Intellectual Property +198308,Intellectual Property,Intellectual Property +196531,Intellectual Property,Intellectual Property +177904,Intellectual Property,Intellectual Property +165911,Intellectual Property,Intellectual Property +318439,Intellectual Property,Intellectual Property +314219,Intellectual Property,Intellectual Property +314218,Intellectual Property,Intellectual Property +314215,Intellectual Property,Intellectual Property +314213,Intellectual Property,Intellectual Property +314211,Intellectual Property,Intellectual Property +314210,Intellectual Property,Intellectual Property +314209,Intellectual Property,Intellectual Property +314176,Intellectual Property,Intellectual Property +314175,Intellectual Property,Intellectual Property +314174,Intellectual Property,Intellectual Property +314173,Intellectual Property,Intellectual Property +314172,Intellectual Property,Intellectual Property +314171,Intellectual Property,Intellectual Property +314170,Intellectual Property,Intellectual Property +314169,Intellectual Property,Intellectual Property +314168,Intellectual Property,Intellectual Property +314167,Intellectual Property,Intellectual Property +314166,Intellectual Property,Intellectual Property +314165,Intellectual Property,Intellectual Property +314163,Intellectual Property,Intellectual Property +314162,Intellectual Property,Intellectual Property +314161,Intellectual Property,Intellectual Property +314160,Intellectual Property,Intellectual Property +314158,Intellectual Property,Intellectual Property +314157,Intellectual Property,Intellectual Property +314155,Intellectual Property,Intellectual Property +314154,Intellectual Property,Intellectual Property +314153,Intellectual Property,Intellectual Property +314152,Intellectual Property,Intellectual Property +314151,Intellectual Property,Intellectual Property +314150,Intellectual Property,Intellectual Property +314149,Intellectual Property,Intellectual Property +264771,Intellectual Property,Intellectual Property +244800,Intellectual Property,Intellectual Property +244799,Intellectual Property,Intellectual Property +244798,Intellectual Property,Intellectual Property +244796,Intellectual Property,Intellectual Property +244795,Intellectual Property,Intellectual Property +244794,Intellectual Property,Intellectual Property +244791,Intellectual Property,Intellectual Property +244788,Intellectual Property,Intellectual Property +244784,Intellectual Property,Intellectual Property +244782,Intellectual Property,Intellectual Property +244779,Intellectual Property,Intellectual Property +244778,Intellectual Property,Intellectual Property +244758,Intellectual Property,Intellectual Property +244745,Intellectual Property,Intellectual Property +244742,Intellectual Property,Intellectual Property +244741,Intellectual Property,Intellectual Property +244677,Intellectual Property,Intellectual Property +244675,Intellectual Property,Intellectual Property +244673,Intellectual Property,Intellectual Property +244672,Intellectual Property,Intellectual Property +244669,Intellectual Property,Intellectual Property +244668,Intellectual Property,Intellectual Property +244667,Intellectual Property,Intellectual Property +244666,Intellectual Property,Intellectual Property +244665,Intellectual Property,Intellectual Property +244664,Intellectual Property,Intellectual Property +244662,Intellectual Property,Intellectual Property +244661,Intellectual Property,Intellectual Property +244660,Intellectual Property,Intellectual Property +244658,Intellectual Property,Intellectual Property +244657,Intellectual Property,Intellectual Property +436558,Intellectual Property,Intellectual Property +436557,Intellectual Property,Intellectual Property +436556,Intellectual Property,Intellectual Property +432904,Intellectual Property,Intellectual Property +429872,Intellectual Property,Intellectual Property +412020,Intellectual Property,Intellectual Property +411804,Intellectual Property,Intellectual Property +411794,Intellectual Property,Intellectual Property +411791,Intellectual Property,Intellectual Property +411788,Intellectual Property,Intellectual Property +370868,Intellectual Property,Intellectual Property +370867,Intellectual Property,Intellectual Property +370860,Intellectual Property,Intellectual Property +370859,Intellectual Property,Intellectual Property +370858,Intellectual Property,Intellectual Property +370857,Intellectual Property,Intellectual Property +370856,Intellectual Property,Intellectual Property +370855,Intellectual Property,Intellectual Property +370854,Intellectual Property,Intellectual Property +370853,Intellectual Property,Intellectual Property +370852,Intellectual Property,Intellectual Property +370851,Intellectual Property,Intellectual Property +370850,Intellectual Property,Intellectual Property +370849,Intellectual Property,Intellectual Property +370848,Intellectual Property,Intellectual Property +370847,Intellectual Property,Intellectual Property +370846,Intellectual Property,Intellectual Property +370845,Intellectual Property,Intellectual Property +370844,Intellectual Property,Intellectual Property +370843,Intellectual Property,Intellectual Property +370841,Intellectual Property,Intellectual Property +370840,Intellectual Property,Intellectual Property +370839,Intellectual Property,Intellectual Property +370838,Intellectual Property,Intellectual Property +370837,Intellectual Property,Intellectual Property +370836,Intellectual Property,Intellectual Property +370834,Intellectual Property,Intellectual Property +370832,Intellectual Property,Intellectual Property +370831,Intellectual Property,Intellectual Property +370827,Intellectual Property,Intellectual Property +370825,Intellectual Property,Intellectual Property +370824,Intellectual Property,Intellectual Property +343520,Intellectual Property,Intellectual Property +343519,Intellectual Property,Intellectual Property +343518,Intellectual Property,Intellectual Property +343517,Intellectual Property,Intellectual Property +343516,Intellectual Property,Intellectual Property +343515,Intellectual Property,Intellectual Property +343514,Intellectual Property,Intellectual Property +343512,Intellectual Property,Intellectual Property +343511,Intellectual Property,Intellectual Property +343510,Intellectual Property,Intellectual Property +343509,Intellectual Property,Intellectual Property +343508,Intellectual Property,Intellectual Property +343507,Intellectual Property,Intellectual Property +343506,Intellectual Property,Intellectual Property +343505,Intellectual Property,Intellectual Property +343504,Intellectual Property,Intellectual Property +343503,Intellectual Property,Intellectual Property +343502,Intellectual Property,Intellectual Property +343501,Intellectual Property,Intellectual Property +343500,Intellectual Property,Intellectual Property +343498,Intellectual Property,Intellectual Property +343497,Intellectual Property,Intellectual Property +343496,Intellectual Property,Intellectual Property +343494,Intellectual Property,Intellectual Property +343493,Intellectual Property,Intellectual Property +343492,Intellectual Property,Intellectual Property +343491,Intellectual Property,Intellectual Property +343490,Intellectual Property,Intellectual Property +343489,Intellectual Property,Intellectual Property +343488,Intellectual Property,Intellectual Property +343487,Intellectual Property,Intellectual Property +343485,Intellectual Property,Intellectual Property +343484,Intellectual Property,Intellectual Property +343482,Intellectual Property,Intellectual Property +503064,Intellectual Property,Intellectual Property +503062,Intellectual Property,Intellectual Property +463396,Intellectual Property,Intellectual Property +463395,Intellectual Property,Intellectual Property +463394,Intellectual Property,Intellectual Property +463392,Intellectual Property,Intellectual Property +115455,Transportation,Transportation +115454,Transportation,Transportation +109842,Transportation,Transportation +109841,Transportation,Transportation +109840,Transportation,Transportation +121400,Transportation,Transportation +121398,Transportation,Transportation +115458,Transportation,Transportation +115457,Transportation,Transportation +536288,Government Procurement,Government Procurement +536287,Government Procurement,Government Procurement +132740,Government Procurement,Government Procurement +109464,Government Procurement,Government Procurement +109459,Government Procurement,Government Procurement +169444,Government Procurement,Government Procurement +167267,Government Procurement,Government Procurement +158186,Government Procurement,Government Procurement +157354,Government Procurement,Government Procurement +381781,Government Procurement,Government Procurement +257014,Government Procurement,Government Procurement +426758,Government Procurement,Government Procurement +391389,Government Procurement,Government Procurement +496254,Infrastructure,Infrastructure +496253,Infrastructure,Infrastructure +109474,Infrastructure,Infrastructure +132740,Infrastructure,Infrastructure +167267,Infrastructure,Infrastructure +158186,Infrastructure,Infrastructure +371044,Infrastructure,Infrastructure +342397,Infrastructure,Infrastructure +340676,Infrastructure,Infrastructure +340669,Infrastructure,Infrastructure +337739,Infrastructure,Infrastructure +319611,Infrastructure,Infrastructure +319610,Infrastructure,Infrastructure +301189,Infrastructure,Infrastructure +299990,Infrastructure,Infrastructure +274692,Infrastructure,Infrastructure +263592,Infrastructure,Infrastructure +263591,Infrastructure,Infrastructure +244898,Infrastructure,Infrastructure +229170,Infrastructure,Infrastructure +207096,Infrastructure,Infrastructure +207095,Infrastructure,Infrastructure +207094,Infrastructure,Infrastructure +207091,Infrastructure,Infrastructure +193224,Infrastructure,Infrastructure +494368,Infrastructure,Infrastructure +494154,Infrastructure,Infrastructure +494151,Infrastructure,Infrastructure +493999,Infrastructure,Infrastructure +493998,Infrastructure,Infrastructure +485758,Infrastructure,Infrastructure +485757,Infrastructure,Infrastructure +485756,Infrastructure,Infrastructure +479228,Infrastructure,Infrastructure +456529,Infrastructure,Infrastructure +456528,Infrastructure,Infrastructure +456527,Infrastructure,Infrastructure +456526,Infrastructure,Infrastructure +456525,Infrastructure,Infrastructure +430894,Infrastructure,Infrastructure +424162,Infrastructure,Infrastructure +424160,Infrastructure,Infrastructure +417535,Infrastructure,Infrastructure +403902,Infrastructure,Infrastructure +403901,Infrastructure,Infrastructure +403896,Infrastructure,Infrastructure +403891,Infrastructure,Infrastructure +403871,Infrastructure,Infrastructure +400301,Infrastructure,Infrastructure +400297,Infrastructure,Infrastructure +400296,Infrastructure,Infrastructure +396136,Infrastructure,Infrastructure +396131,Infrastructure,Infrastructure +396128,Infrastructure,Infrastructure +396127,Infrastructure,Infrastructure +393701,Infrastructure,Infrastructure +393048,Infrastructure,Infrastructure +384560,Infrastructure,Infrastructure +378024,Infrastructure,Infrastructure +375312,Infrastructure,Infrastructure +536288,Infrastructure,Infrastructure +536287,Infrastructure,Infrastructure +532714,Infrastructure,Infrastructure +524972,Infrastructure,Infrastructure +524970,Infrastructure,Infrastructure +524968,Infrastructure,Infrastructure +524929,Infrastructure,Infrastructure +509397,Infrastructure,Infrastructure +499404,Infrastructure,Infrastructure +497286,Infrastructure,Infrastructure +496764,Infrastructure,Infrastructure +105634,Other,Income Tax Act +143006,Other,Income Tax Act +105635,Other,Canadian Government's response to US Buy America restrictions +105639,Other,Efficient operation of the Chemical Management Plan +105654,Other,Clean Air +535205,Industry,Industry +535194,Industry,Industry +109627,Industry,Industry +109621,Industry,Industry +105703,Industry,Industry +105701,Industry,Industry +105699,Industry,Industry +105697,Industry,Industry +161553,Industry,Industry +161552,Industry,Industry +161551,Industry,Industry +161550,Industry,Industry +161549,Industry,Industry +161548,Industry,Industry +159016,Industry,Industry +159015,Industry,Industry +159014,Industry,Industry +159013,Industry,Industry +153543,Industry,Industry +153542,Industry,Industry +148082,Industry,Industry +148081,Industry,Industry +114028,Industry,Industry +114023,Industry,Industry +114017,Industry,Industry +114010,Industry,Industry +113989,Industry,Industry +109628,Industry,Industry +185453,Industry,Industry +180675,Industry,Industry +180673,Industry,Industry +180672,Industry,Industry +180671,Industry,Industry +180670,Industry,Industry +180668,Industry,Industry +180667,Industry,Industry +168152,Industry,Industry +165577,Industry,Industry +161565,Industry,Industry +161564,Industry,Industry +161563,Industry,Industry +161560,Industry,Industry +161559,Industry,Industry +161558,Industry,Industry +161556,Industry,Industry +161555,Industry,Industry +373529,Industry,Industry +373528,Industry,Industry +373527,Industry,Industry +373526,Industry,Industry +371490,Industry,Industry +371485,Industry,Industry +371483,Industry,Industry +371478,Industry,Industry +371474,Industry,Industry +368783,Industry,Industry +368781,Industry,Industry +368780,Industry,Industry +368779,Industry,Industry +356341,Industry,Industry +356340,Industry,Industry +356338,Industry,Industry +350828,Industry,Industry +350822,Industry,Industry +348706,Industry,Industry +348705,Industry,Industry +348704,Industry,Industry +343722,Industry,Industry +343721,Industry,Industry +343718,Industry,Industry +341618,Industry,Industry +341616,Industry,Industry +341611,Industry,Industry +341605,Industry,Industry +333341,Industry,Industry +333340,Industry,Industry +333339,Industry,Industry +330341,Industry,Industry +330340,Industry,Industry +330339,Industry,Industry +330337,Industry,Industry +330336,Industry,Industry +330335,Industry,Industry +327030,Industry,Industry +327029,Industry,Industry +327027,Industry,Industry +327026,Industry,Industry +327025,Industry,Industry +327023,Industry,Industry +290213,Industry,Industry +290212,Industry,Industry +290211,Industry,Industry +290209,Industry,Industry +280783,Industry,Industry +273091,Industry,Industry +273090,Industry,Industry +266551,Industry,Industry +266550,Industry,Industry +266549,Industry,Industry +265911,Industry,Industry +265910,Industry,Industry +265909,Industry,Industry +259314,Industry,Industry +259313,Industry,Industry +259312,Industry,Industry +259310,Industry,Industry +255409,Industry,Industry +250627,Industry,Industry +250623,Industry,Industry +250619,Industry,Industry +250612,Industry,Industry +245498,Industry,Industry +245496,Industry,Industry +245489,Industry,Industry +245487,Industry,Industry +240620,Industry,Industry +237470,Industry,Industry +237469,Industry,Industry +233138,Industry,Industry +233137,Industry,Industry +233136,Industry,Industry +233135,Industry,Industry +233134,Industry,Industry +233133,Industry,Industry +228213,Industry,Industry +228212,Industry,Industry +228211,Industry,Industry +226215,Industry,Industry +226212,Industry,Industry +226209,Industry,Industry +226208,Industry,Industry +226207,Industry,Industry +223011,Industry,Industry +206848,Industry,Industry +491156,Industry,Industry +491150,Industry,Industry +488089,Industry,Industry +488084,Industry,Industry +488083,Industry,Industry +488079,Industry,Industry +488078,Industry,Industry +488063,Industry,Industry +485171,Industry,Industry +485169,Industry,Industry +485167,Industry,Industry +482374,Industry,Industry +482338,Industry,Industry +480535,Industry,Industry +479162,Industry,Industry +479161,Industry,Industry +479159,Industry,Industry +476552,Industry,Industry +476551,Industry,Industry +476549,Industry,Industry +476548,Industry,Industry +476143,Industry,Industry +476141,Industry,Industry +471347,Industry,Industry +471346,Industry,Industry +471344,Industry,Industry +471343,Industry,Industry +466172,Industry,Industry +466171,Industry,Industry +466170,Industry,Industry +466169,Industry,Industry +466168,Industry,Industry +462277,Industry,Industry +462275,Industry,Industry +462274,Industry,Industry +456492,Industry,Industry +456491,Industry,Industry +456490,Industry,Industry +456489,Industry,Industry +454983,Industry,Industry +454981,Industry,Industry +454461,Industry,Industry +444440,Industry,Industry +444439,Industry,Industry +444437,Industry,Industry +444436,Industry,Industry +438087,Industry,Industry +438086,Industry,Industry +438085,Industry,Industry +438084,Industry,Industry +438082,Industry,Industry +438078,Industry,Industry +438074,Industry,Industry +438073,Industry,Industry +438071,Industry,Industry +436551,Industry,Industry +436550,Industry,Industry +436549,Industry,Industry +432924,Industry,Industry +432914,Industry,Industry +432913,Industry,Industry +432912,Industry,Industry +432911,Industry,Industry +431902,Industry,Industry +431900,Industry,Industry +424806,Industry,Industry +424805,Industry,Industry +424804,Industry,Industry +424803,Industry,Industry +421829,Industry,Industry +416378,Industry,Industry +416377,Industry,Industry +416375,Industry,Industry +416374,Industry,Industry +416372,Industry,Industry +416369,Industry,Industry +416368,Industry,Industry +416366,Industry,Industry +416365,Industry,Industry +416363,Industry,Industry +412081,Industry,Industry +412079,Industry,Industry +412077,Industry,Industry +407672,Industry,Industry +407671,Industry,Industry +406093,Industry,Industry +406092,Industry,Industry +406091,Industry,Industry +406089,Industry,Industry +405962,Industry,Industry +405932,Industry,Industry +405930,Industry,Industry +405929,Industry,Industry +405928,Industry,Industry +405927,Industry,Industry +405926,Industry,Industry +405925,Industry,Industry +405923,Industry,Industry +405922,Industry,Industry +405921,Industry,Industry +402649,Industry,Industry +402646,Industry,Industry +402645,Industry,Industry +399930,Industry,Industry +399929,Industry,Industry +399928,Industry,Industry +389749,Industry,Industry +389748,Industry,Industry +389747,Industry,Industry +389746,Industry,Industry +383322,Industry,Industry +383321,Industry,Industry +382055,Industry,Industry +382054,Industry,Industry +382053,Industry,Industry +378429,Industry,Industry +378428,Industry,Industry +378427,Industry,Industry +376046,Industry,Industry +376044,Industry,Industry +376042,Industry,Industry +148112,Health,Health +106156,Other,The need to create a federal accountability framework for federal housing transfers to the provinces/territories by requiring measurable outcome in housing need reduction +106202,Other,Climate Change +106194,Other,Climate Change +106235,Other,Growing Forward +106234,Other,Growing Forward +106194,Other,Growing Forward +106197,Other,Supply management +120875,Other,Supply management +106280,Other,CHEESE +142419,Other,dairy industry +106282,Other,dairy industry +143015,Consumer Issues,Consumer Issues +135822,Consumer Issues,Consumer Issues +106361,Consumer Issues,Consumer Issues +223848,Consumer Issues,Consumer Issues +162035,Consumer Issues,Consumer Issues +200394,Consumer Issues,Consumer Issues +200388,Consumer Issues,Consumer Issues +135820,Consumer Issues,Consumer Issues +132347,Consumer Issues,Consumer Issues +106362,Consumer Issues,Consumer Issues +185969,Consumer Issues,Consumer Issues +165604,Consumer Issues,Consumer Issues +165603,Consumer Issues,Consumer Issues +154616,Consumer Issues,Consumer Issues +148214,Consumer Issues,Consumer Issues +148207,Consumer Issues,Consumer Issues +241114,Consumer Issues,Consumer Issues +132346,Consumer Issues,Consumer Issues +185967,Consumer Issues,Consumer Issues +106363,Consumer Issues,Consumer Issues +168009,Consumer Issues,Consumer Issues +162038,Consumer Issues,Consumer Issues +350318,Defence,Defence +350315,Defence,Defence +340963,Defence,Defence +340961,Defence,Defence +338477,Defence,Defence +338476,Defence,Defence +338473,Defence,Defence +237055,Defence,Defence +350318,Government Procurement,Government Procurement +350315,Government Procurement,Government Procurement +129062,Government Procurement,Government Procurement +129060,Government Procurement,Government Procurement +129058,Government Procurement,Government Procurement +129056,Government Procurement,Government Procurement +125139,Government Procurement,Government Procurement +121133,Government Procurement,Government Procurement +121132,Government Procurement,Government Procurement +121130,Government Procurement,Government Procurement +117673,Government Procurement,Government Procurement +113984,Government Procurement,Government Procurement +189486,Government Procurement,Government Procurement +189465,Government Procurement,Government Procurement +168572,Government Procurement,Government Procurement +162351,Government Procurement,Government Procurement +375693,Government Procurement,Government Procurement +375689,Government Procurement,Government Procurement +350318,Industry,Industry +380253,Government Procurement,Government Procurement +254869,Government Procurement,Government Procurement +106406,Government Procurement,Government Procurement +201987,Government Procurement,Government Procurement +192979,Government Procurement,Government Procurement +192978,Government Procurement,Government Procurement +188527,Government Procurement,Government Procurement +188526,Government Procurement,Government Procurement +188525,Government Procurement,Government Procurement +132634,Government Procurement,Government Procurement +132632,Government Procurement,Government Procurement +381791,Government Procurement,Government Procurement +380261,Government Procurement,Government Procurement +380260,Government Procurement,Government Procurement +380259,Government Procurement,Government Procurement +380255,Government Procurement,Government Procurement +106410,Other,Cap and Trade +106408,Other,Cap and Trade +106413,Other,Cap and Trade +106412,Other,Cap and Trade +129104,Other,C-310 Act to Provide Certain Rights to Air Passengers +123294,Other,Fermeture de la tour de contrôle de l'aéroport de Mirabel +117566,Other,Fermeture de la tour de contrôle de l'aéroport de Mirabel +115034,Other,Fermeture de la tour de contrôle de l'aéroport de Mirabel +106438,Other,Fermeture de la tour de contrôle de l'aéroport de Mirabel +528798,Government Procurement,Marchés Publics +516909,Government Procurement,Marchés Publics +161456,Government Procurement,Marchés Publics +146454,Government Procurement,Marchés Publics +115034,Government Procurement,Marchés Publics +106438,Government Procurement,Marchés Publics +263829,Government Procurement,Marchés Publics +224308,Government Procurement,Marchés Publics +374700,Government Procurement,Marchés Publics +374696,Government Procurement,Marchés Publics +373302,Government Procurement,Marchés Publics +355021,Government Procurement,Marchés Publics +292389,Government Procurement,Marchés Publics +279671,Government Procurement,Marchés Publics +279670,Government Procurement,Marchés Publics +270997,Government Procurement,Marchés Publics +444276,Government Procurement,Marchés Publics +434889,Government Procurement,Marchés Publics +431790,Government Procurement,Marchés Publics +408341,Government Procurement,Marchés Publics +388736,Government Procurement,Marchés Publics +382953,Government Procurement,Marchés Publics +106714,Other,Seniors Oral Health Care +453084,Health,Health +442645,Health,Health +209049,Health,Health +209048,Health,Health +194863,Health,Health +139736,Health,Health +108174,Health,Health +273069,Health,Health +271810,Health,Health +249660,Health,Health +249659,Health,Health +249654,Health,Health +249652,Health,Health +222569,Health,Health +209054,Health,Health +209053,Health,Health +209052,Health,Health +209051,Health,Health +209050,Health,Health +382170,Health,Health +380543,Health,Health +380542,Health,Health +380540,Health,Health +380539,Health,Health +380521,Health,Health +379665,Health,Health +378656,Health,Health +378652,Health,Health +378650,Health,Health +378629,Health,Health +377567,Health,Health +377284,Health,Health +377282,Health,Health +377276,Health,Health +377273,Health,Health +377271,Health,Health +377263,Health,Health +377260,Health,Health +376753,Health,Health +376750,Health,Health +376749,Health,Health +376736,Health,Health +376731,Health,Health +376729,Health,Health +374007,Health,Health +374006,Health,Health +373996,Health,Health +373995,Health,Health +373994,Health,Health +373993,Health,Health +373992,Health,Health +373990,Health,Health +373989,Health,Health +373987,Health,Health +373986,Health,Health +368231,Health,Health +368230,Health,Health +366416,Health,Health +364709,Health,Health +364707,Health,Health +364706,Health,Health +364705,Health,Health +358903,Health,Health +358902,Health,Health +358901,Health,Health +358899,Health,Health +358897,Health,Health +358895,Health,Health +358894,Health,Health +334566,Health,Health +334564,Health,Health +442408,Health,Health +442390,Health,Health +442388,Health,Health +442373,Health,Health +442368,Health,Health +439683,Health,Health +439682,Health,Health +439680,Health,Health +439679,Health,Health +439678,Health,Health +439676,Health,Health +439665,Health,Health +439663,Health,Health +439661,Health,Health +439660,Health,Health +439657,Health,Health +439654,Health,Health +439653,Health,Health +439650,Health,Health +439649,Health,Health +439648,Health,Health +439635,Health,Health +439634,Health,Health +439633,Health,Health +439632,Health,Health +439627,Health,Health +439625,Health,Health +439624,Health,Health +439619,Health,Health +436001,Health,Health +433811,Health,Health +427872,Health,Health +426770,Health,Health +426745,Health,Health +423012,Health,Health +423011,Health,Health +423010,Health,Health +416343,Health,Health +416342,Health,Health +416325,Health,Health +416324,Health,Health +416323,Health,Health +416322,Health,Health +416320,Health,Health +412595,Health,Health +412591,Health,Health +412574,Health,Health +412572,Health,Health +412554,Health,Health +412551,Health,Health +412546,Health,Health +412542,Health,Health +408359,Health,Health +408357,Health,Health +399132,Health,Health +398888,Health,Health +398884,Health,Health +396129,Health,Health +396104,Health,Health +396101,Health,Health +393705,Health,Health +393703,Health,Health +392853,Health,Health +392766,Health,Health +392765,Health,Health +392761,Health,Health +392759,Health,Health +392758,Health,Health +391030,Health,Health +391029,Health,Health +391027,Health,Health +391026,Health,Health +391023,Health,Health +391021,Health,Health +391019,Health,Health +391014,Health,Health +391001,Health,Health +390997,Health,Health +390948,Health,Health +390852,Health,Health +390845,Health,Health +390835,Health,Health +390805,Health,Health +390781,Health,Health +390717,Health,Health +390714,Health,Health +390713,Health,Health +390707,Health,Health +390699,Health,Health +390691,Health,Health +390688,Health,Health +390682,Health,Health +390672,Health,Health +387538,Health,Health +387536,Health,Health +387534,Health,Health +387528,Health,Health +387522,Health,Health +385064,Health,Health +385063,Health,Health +509257,Health,Health +509228,Health,Health +508807,Health,Health +508794,Health,Health +505285,Health,Health +505279,Health,Health +501970,Health,Health +501968,Health,Health +501964,Health,Health +499547,Health,Health +499541,Health,Health +499533,Health,Health +499521,Health,Health +499132,Health,Health +495706,Health,Health +495696,Health,Health +492222,Health,Health +492219,Health,Health +492217,Health,Health +492193,Health,Health +492192,Health,Health +492191,Health,Health +492190,Health,Health +492189,Health,Health +492188,Health,Health +492187,Health,Health +492186,Health,Health +492184,Health,Health +492183,Health,Health +492182,Health,Health +492181,Health,Health +492178,Health,Health +492177,Health,Health +492176,Health,Health +492175,Health,Health +492174,Health,Health +492173,Health,Health +492172,Health,Health +492171,Health,Health +492165,Health,Health +492158,Health,Health +492157,Health,Health +492156,Health,Health +492155,Health,Health +492154,Health,Health +492153,Health,Health +492150,Health,Health +492149,Health,Health +492147,Health,Health +488399,Health,Health +481178,Health,Health +479319,Health,Health +469063,Health,Health +464688,Health,Health +464685,Health,Health +464683,Health,Health +464682,Health,Health +464678,Health,Health +462002,Health,Health +272155,Justice and Law Enforcement,Justice and Law Enforcement +272079,Justice and Law Enforcement,Justice and Law Enforcement +111142,Justice and Law Enforcement,Justice and Law Enforcement +111141,Justice and Law Enforcement,Justice and Law Enforcement +111140,Justice and Law Enforcement,Justice and Law Enforcement +111139,Justice and Law Enforcement,Justice and Law Enforcement +111138,Justice and Law Enforcement,Justice and Law Enforcement +111137,Justice and Law Enforcement,Justice and Law Enforcement +272077,Justice and Law Enforcement,Justice and Law Enforcement +270751,Justice and Law Enforcement,Justice and Law Enforcement +262449,Justice and Law Enforcement,Justice and Law Enforcement +262351,Justice and Law Enforcement,Justice and Law Enforcement +262350,Justice and Law Enforcement,Justice and Law Enforcement +261229,Justice and Law Enforcement,Justice and Law Enforcement +250256,Justice and Law Enforcement,Justice and Law Enforcement +242870,Justice and Law Enforcement,Justice and Law Enforcement +225828,Justice and Law Enforcement,Justice and Law Enforcement +225827,Justice and Law Enforcement,Justice and Law Enforcement +211847,Justice and Law Enforcement,Justice and Law Enforcement +209387,Justice and Law Enforcement,Justice and Law Enforcement +193231,Justice and Law Enforcement,Justice and Law Enforcement +188067,Justice and Law Enforcement,Justice and Law Enforcement +184344,Justice and Law Enforcement,Justice and Law Enforcement +172866,Justice and Law Enforcement,Justice and Law Enforcement +172865,Justice and Law Enforcement,Justice and Law Enforcement +168146,Justice and Law Enforcement,Justice and Law Enforcement +168142,Justice and Law Enforcement,Justice and Law Enforcement +160404,Justice and Law Enforcement,Justice and Law Enforcement +124953,Justice and Law Enforcement,Justice and Law Enforcement +340549,Justice and Law Enforcement,Justice and Law Enforcement +339670,Justice and Law Enforcement,Justice and Law Enforcement +334585,Justice and Law Enforcement,Justice and Law Enforcement +324746,Justice and Law Enforcement,Justice and Law Enforcement +324744,Justice and Law Enforcement,Justice and Law Enforcement +324741,Justice and Law Enforcement,Justice and Law Enforcement +324740,Justice and Law Enforcement,Justice and Law Enforcement +324737,Justice and Law Enforcement,Justice and Law Enforcement +315972,Justice and Law Enforcement,Justice and Law Enforcement +306289,Justice and Law Enforcement,Justice and Law Enforcement +299889,Justice and Law Enforcement,Justice and Law Enforcement +299432,Justice and Law Enforcement,Justice and Law Enforcement +299310,Justice and Law Enforcement,Justice and Law Enforcement +225828,Labour,Labour +225827,Labour,Labour +324737,Transportation,Transportation +299310,Transportation,Transportation +175378,Agriculture,Agriculture +168891,Agriculture,Agriculture +129285,Agriculture,Agriculture +129284,Agriculture,Agriculture +117623,Agriculture,Agriculture +168889,Agriculture,Agriculture +168886,Agriculture,Agriculture +159555,Agriculture,Agriculture +159553,Agriculture,Agriculture +159552,Agriculture,Agriculture +159551,Agriculture,Agriculture +159549,Agriculture,Agriculture +159548,Agriculture,Agriculture +153449,Agriculture,Agriculture +148143,Agriculture,Agriculture +142468,Agriculture,Agriculture +142465,International Trade,International Trade +168886,International Trade,International Trade +129285,International Trade,International Trade +153449,International Trade,International Trade +159549,Transportation,Transportation +159548,Transportation,Transportation +129284,Transportation,Transportation +159555,Transportation,Transportation +159553,Transportation,Transportation +159552,Transportation,Transportation +146155,Education,Education +131776,Other,Federal Infrastructure Stimulus Plan +128241,Other,Federal Infrastructure Stimulus Plan +115234,Other,Federal Infrastructure Stimulus Plan +107059,Other,Federal Infrastructure Stimulus Plan +107056,Other,Federal Infrastructure Stimulus Plan +145476,Other,Federal Infrastructure Stimulus Plan +138690,Other,Federal Infrastructure Stimulus Plan +106995,Other,Federal Infrastructure Stimulus Plan +141976,Other,Federal Infrastructure Stimulus Plan +107057,Other,Federal Infrastructure Stimulus Plan +107034,Other,Federal Infrastructure Stimulus plan +107014,Other,Federal Infrastructure Stimulus plan +138687,Other,Federal Infrastructure Stimulus plan +131777,Other,Federal Infrastructure Stimulus plan +128244,Other,Federal Infrastructure Stimulus plan +124479,Other,Federal Infrastructure Stimulus plan +124478,Other,Federal Infrastructure Stimulus plan +124477,Other,Federal Infrastructure Stimulus plan +109705,Other,Federal Infrastructure Stimulus plan +107060,Other,Federal Infrastructure Stimulus plan +107035,Other,Federal Infrastucture Stimulus Plan +141974,Other,Federal Infrastucture Stimulus Plan +113397,Other,Federal Infrastucture Stimulus Plan +241552,Energy,Energy +241551,Energy,Energy +241554,Energy,Energy +241552,Mining,Mining +241551,Mining,Mining +145474,Mining,Mining +241554,Mining,Mining +241552,Regional Development,Regional Development +241551,Regional Development,Regional Development +182205,Regional Development,Regional Development +182204,Regional Development,Regional Development +166985,Regional Development,Regional Development +162108,Regional Development,Regional Development +156348,Regional Development,Regional Development +155826,Regional Development,Regional Development +145474,Regional Development,Regional Development +241554,Regional Development,Regional Development +241552,Transportation,Transportation +241551,Transportation,Transportation +182205,Transportation,Transportation +182204,Transportation,Transportation +166985,Transportation,Transportation +162108,Transportation,Transportation +156348,Transportation,Transportation +155826,Transportation,Transportation +145474,Transportation,Transportation +241554,Transportation,Transportation +159294,Mining,Mining +159293,Mining,Mining +159291,Mining,Mining +157990,Mining,Mining +137276,Regional Development,Regional Development +137275,Regional Development,Regional Development +169149,Regional Development,Regional Development +145420,Transportation,Transportation +137276,Transportation,Transportation +137275,Transportation,Transportation +169149,Transportation,Transportation +368458,Environment,Environment +347329,Environment,Environment +339600,Environment,Environment +339598,Environment,Environment +339597,Environment,Environment +321695,Environment,Environment +321694,Environment,Environment +321693,Environment,Environment +317749,Environment,Environment +417122,Environment,Environment +408747,Environment,Environment +200510,Industry,Industry +200507,Industry,Industry +113734,Industry,Industry +109118,Industry,Industry +132988,Other,SMART Program +132987,Other,SMART Program +128316,Other,SMART Program +107596,Other,SMART Program +136005,Other,SMART Program +136004,Other,SMART Program +136002,Other,SMART Program +332573,Health,Health +320509,Health,Health +159161,Health,Health +159159,Health,Health +156846,Health,Health +154628,Health,Health +107674,Health,Health +313370,Health,Health +270919,Health,Health +270918,Health,Health +270917,Health,Health +166788,Health,Health +146182,Justice and Law Enforcement,Justice and Law Enforcement +134520,Justice and Law Enforcement,Justice and Law Enforcement +123974,Justice and Law Enforcement,Justice and Law Enforcement +115274,Justice and Law Enforcement,Justice and Law Enforcement +116554,Infrastructure,Infrastructure +108875,Infrastructure,Infrastructure +110095,Defence,Defence +113897,Industry,Industry +159496,Industry,Industry +145798,Industry,Industry +145738,Industry,Industry +145737,Industry,Industry +145736,Industry,Industry +145735,Industry,Industry +138775,Industry,Industry +138774,Industry,Industry +135441,Industry,Industry +135439,Industry,Industry +132279,Industry,Industry +132278,Industry,Industry +132277,Industry,Industry +132276,Industry,Industry +128885,Industry,Industry +128866,Industry,Industry +120679,Industry,Industry +120677,Industry,Industry +107894,Other,Green Fund +493369,Infrastructure,Infrastructure +460225,Infrastructure,Infrastructure +107895,Infrastructure,Infrastructure +107894,Infrastructure,Infrastructure +273660,Infrastructure,Infrastructure +540163,Infrastructure,Infrastructure +372328,Government Procurement,Government Procurement +109095,Infrastructure,Infrastructure +109094,Infrastructure,Infrastructure +109102,Infrastructure,Infrastructure +109100,Infrastructure,Infrastructure +117003,Other,Infrastructure investments directly related to post-secondary education +117001,Other,Infrastructure investments directly related to post-secondary education +116999,Other,Infrastructure investments directly related to post-secondary education +116998,Other,Infrastructure investments directly related to post-secondary education +116995,Other,Infrastructure investments directly related to post-secondary education +152697,Other,Infrastructure investments directly related to post-secondary education +151251,Other,Infrastructure investments directly related to post-secondary education +151250,Other,Infrastructure investments directly related to post-secondary education +151249,Other,Infrastructure investments directly related to post-secondary education +151248,Other,Infrastructure investments directly related to post-secondary education +151243,Other,Infrastructure investments directly related to post-secondary education +121454,Other,Infrastructure investments directly related to post-secondary education +117006,Other,Infrastructure investments directly related to post-secondary education +132949,Other,Environment +146322,Intellectual Property,Intellectual Property +146321,Intellectual Property,Intellectual Property +156032,Intellectual Property,Intellectual Property +156031,Intellectual Property,Intellectual Property +156030,Intellectual Property,Intellectual Property +146326,Intellectual Property,Intellectual Property +146325,Intellectual Property,Intellectual Property +112054,Environment,Environment +112057,Infrastructure,Infrastructure +112055,Infrastructure,Infrastructure +117996,Infrastructure,Infrastructure +117995,Infrastructure,Infrastructure +112060,Infrastructure,Infrastructure +112059,Infrastructure,Infrastructure +112058,Regional Development,Regional Development +117995,Regional Development,Regional Development +115256,Other,Finance +115255,Other,Finance +150285,Other,Finance +138407,Other,Finance +123374,Other,Finance +119438,Other,Finance +115256,Industry,Industry +115255,Industry,Industry +147980,Industry,Industry +147979,Industry,Industry +147977,Industry,Industry +145970,Industry,Industry +123374,Industry,Industry +115256,Infrastructure,Infrastructure +115255,Infrastructure,Infrastructure +123374,Infrastructure,Infrastructure +197327,Internal Trade,Commerce intérieur +379680,Internal Trade,Commerce intérieur +167662,Internal Trade,Commerce intérieur +167661,Internal Trade,Commerce intérieur +167660,Internal Trade,Commerce intérieur +167659,Internal Trade,Commerce intérieur +108334,Other,Costs +108314,Other,Costs +142335,Other,Costs +108467,Other,Mining +108466,Other,Mining +108465,Other,Mining +108464,Other,Mining +108463,Other,Mining +108462,Other,Mining +108461,Other,Mining +108459,Other,Mining +108458,Other,Mining +108456,Other,Mining +108455,Other,Mining +108454,Other,Mining +108576,Other,Issues related to collective bargaining +220727,International Relations,International Relations +220687,International Relations,International Relations +354714,International Relations,International Relations +354713,International Relations,International Relations +164730,Industry,Industry +260650,International Trade,International Trade +260649,International Trade,International Trade +108670,International Trade,International Trade +108669,International Trade,International Trade +108668,International Trade,International Trade +108667,International Trade,International Trade +108664,International Trade,International Trade +158709,International Trade,International Trade +158708,International Trade,International Trade +147781,International Trade,International Trade +147780,International Trade,International Trade +147779,International Trade,International Trade +147777,International Trade,International Trade +147776,International Trade,International Trade +147775,International Trade,International Trade +147774,International Trade,International Trade +147773,International Trade,International Trade +147770,International Trade,International Trade +147768,International Trade,International Trade +108678,International Trade,International Trade +108672,International Trade,International Trade +108671,International Trade,International Trade +205992,International Trade,International Trade +205990,International Trade,International Trade +192304,International Trade,International Trade +192288,International Trade,International Trade +192287,International Trade,International Trade +192286,International Trade,International Trade +192285,International Trade,International Trade +192284,International Trade,International Trade +189445,International Trade,International Trade +189406,International Trade,International Trade +189404,International Trade,International Trade +171484,International Trade,International Trade +165058,International Trade,International Trade +165057,International Trade,International Trade +162464,International Trade,International Trade +162303,International Trade,International Trade +162299,International Trade,International Trade +162297,International Trade,International Trade +162293,International Trade,International Trade +162290,International Trade,International Trade +162289,International Trade,International Trade +158730,International Trade,International Trade +158729,International Trade,International Trade +158728,International Trade,International Trade +158710,International Trade,International Trade +311333,International Trade,International Trade +311332,International Trade,International Trade +311331,International Trade,International Trade +293952,International Trade,International Trade +293950,International Trade,International Trade +285678,International Trade,International Trade +285677,International Trade,International Trade +285676,International Trade,International Trade +285675,International Trade,International Trade +285674,International Trade,International Trade +285672,International Trade,International Trade +285670,International Trade,International Trade +285669,International Trade,International Trade +276230,International Trade,International Trade +275111,International Trade,International Trade +275110,International Trade,International Trade +275109,International Trade,International Trade +266492,International Trade,International Trade +266490,International Trade,International Trade +260658,International Trade,International Trade +260657,International Trade,International Trade +260656,International Trade,International Trade +260655,International Trade,International Trade +260654,International Trade,International Trade +260653,International Trade,International Trade +189445,International Relations,International Relations +189406,International Relations,International Relations +147769,International Relations,International Relations +171484,International Relations,International Relations +165058,International Relations,International Relations +165057,International Relations,International Relations +192304,International Relations,International Relations +192288,International Relations,International Relations +192287,International Relations,International Relations +192286,International Relations,International Relations +192285,International Relations,International Relations +210739,Infrastructure,Infrastructure +124853,Other,Competition +108334,Other,Competition +108334,Other,Environment (Greenhouse Gas Emissions) +108861,Infrastructure,Infrastructure +228024,Agriculture,Agriculture +228023,Agriculture,Agriculture +129414,Agriculture,Agriculture +124716,Agriculture,Agriculture +228022,Agriculture,Agriculture +228021,Agriculture,Agriculture +228020,Agriculture,Agriculture +225307,Agriculture,Agriculture +225290,Agriculture,Agriculture +222676,Agriculture,Agriculture +222675,Agriculture,Agriculture +221447,Agriculture,Agriculture +221427,Agriculture,Agriculture +206752,Agriculture,Agriculture +206751,Agriculture,Agriculture +206750,Agriculture,Agriculture +206748,Agriculture,Agriculture +188332,Agriculture,Agriculture +188137,Agriculture,Agriculture +188136,Agriculture,Agriculture +188135,Agriculture,Agriculture +186007,Agriculture,Agriculture +175684,Agriculture,Agriculture +169027,Agriculture,Agriculture +164112,Agriculture,Agriculture +145980,Agriculture,Agriculture +257250,Agriculture,Agriculture +256949,Agriculture,Agriculture +256409,Agriculture,Agriculture +255109,Agriculture,Agriculture +246370,Agriculture,Agriculture +246369,Agriculture,Agriculture +105498,Other,To discuss the Canadian Space Agency's Long Term Space Plan. +109895,Other,Airport Rent +109897,Other,National Transportation Strategy +143674,Other,To discuss the Canadian Space Agency's Long Term Space Plan +463390,Intellectual Property,Intellectual Property +115456,Transportation,Transportation +105535,Other,To discuss the proposed AIS Project (Automated Identification System) which will collect data from space to maintain a near real-time geographically specific database of ships around the world. +105574,Other,Income Tax Act +105614,Other,Income Tax Act +109475,Other,CIDA funding +384560,Government Procurement,Government Procurement +496255,Infrastructure,Infrastructure +132751,Other,Income Tax Act +113866,Other,Canadian Government's response to US Buy America restrictions +137380,Government Procurement,Government Procurement +105657,Other,Efficient operation of the Chemical Management Plan +105641,Other,ecoENERGY for Biofuels Program +114156,Other,Clean Air +105654,Other,Responsible Care +105655,Other,ecoENERGY for Biofuels Program +535210,Industry,Industry +105696,Other,Research and Development +105708,Health,Health +105705,Industry,Industry +105716,Other,Export Development Canada supplier receivables insurance +105718,Other,Food and Drugs Act +105721,Other,Automotive Innovation Fund +105722,Other,Food and Drugs Act +105724,Other,Canadian Content and Program Funding +105643,Other,Privacy +105726,Other,Automotive Innovation Fund +105734,Other,Export Development Canada Supplier Receivables Insurance Program +105736,Other,Export Development Canada Supplier Receivables Insurance Program +105737,Other,Export Development Canada Supplier Receivables Insurance Program +105738,Other,Export Development Canada Supplier Receivables Insurance Program +106057,Other,Senate Committee for Transport and Communication study on Canada's wireless sector +106096,Other,Dedicated Post-Secondary Education transfer payments +106096,Other,Enhanced grants for post-secondary students +106100,Other,Book Importation Regulation +106100,Other,Canada Student Grant Program +106100,Other,Copyright reform +106100,Other,Repayment Assistance +106100,Other,Tri-Agency funding +106103,Other,Book Importation Regulation +106103,Other,Canada Student Grant Program +106103,Other,Copyright Reform +106103,Other,Repayment Assistance +106103,Other,Tri-Agency funding +106104,Other,Book Importation Regulation +106104,Other,Canada Student Grant Program +106104,Other,Copyright Reform +106104,Other,Repayment Assistance +106104,Other,Tri-Agency funding +106107,Other,Canada Student Grant +106107,Other,Needs-based grants for Graduate Students +106107,Other,Repayment Assistance +106113,Other,Book Importation Regulation +106113,Other,Canada Student Grant Program +106113,Other,Copyright Reform +106113,Other,Repayment Assistance +106113,Other,Tri-Agency funding +106116,Other,Book Importation Regulation +106116,Other,Canada Student Grant Program +106116,Other,Copyright Reform +106116,Other,Repayment Assistance +106116,Other,Tri-Agency funding +106134,Other,Copyright Reform +106135,Other,Book Importation Regulation +106135,Other,Graduate Student funding +106135,Other,Tri-Agency funding +106136,Other,Accumulated Deferred Maintenance +106136,Other,Dedicated Post-Secondary Education transfer funding +106136,Other,Non-repayable grants +106136,Other,Student loan interest rates +106137,Other,Accumulated Deferred Maintenance +106137,Other,Canada Student Grant Program +106137,Other,Dedicated Post-Secondary transfer funding +106137,Other,Non-repayable grants +106137,Other,Repayment Assistance +106137,Other,Student Loan interest rates +106138,Other,"The need to create a federal accountability framework for federal housing transfers to the provinces/territories, by requiring measurable outcomes in housing need reduction" +106138,Other,The development of a new program to protect the RGI capacity for Canada's affordabel housing stock. +106156,Other,The development of a new program to protect the RGI capacity for Canada's affordable housing stock. +159282,Other,The need to create a federal accountability framework for federal housing transfers to the provinces/territories by requiring measurable outcome in housing need reduction +106158,Other,The development of a new program to protect the RGI capacity for Canada's affordable housing stock. +106158,Other,The need to create a federal accountability framework for federal housing transfers to provs/terrs by requiring measurable outcomes in housing need reduction. +106174,Other,The development of a new program to protect the RGI capacity for Canada's affordable housing stock. +106174,Other,The need to create a federal accountability framework for federal housing transfers to the provs/terrs by rqeuiring measurable outcomes in housing need reduction. +128857,Other,Climate Change +106236,Other,Growing Forward +106195,Other,Growing Forward Implementation +106202,Other,Supply management +128859,Other,CHEESE +142420,Other,dairy industry +106286,Other,Religious Freedom +106294,Other,food fortification +106296,Other,Religious Freedom +106299,Other,Human Trafficking +106356,Other,US Overflight and Secure Flight Program +106356,Other,C-310 Act to Provide Certain Rights to Air Passengers +162032,Consumer Issues,Consumer Issues +200398,Consumer Issues,Consumer Issues +148211,Consumer Issues,Consumer Issues +106378,Other,Strategy for Canadian Agrifood Policy +106380,Other,Deputy Minister University Champion Program +106381,Other,Science and technology agenda; ocean research +106383,Other,"Organized crime, fraud, anti-money laundering and anti-terrorist financing" +106385,Other,Outcomes from the Fall 2008 Federal Recruitment event at UVic and plans for another event in 2009 +106386,Other,Canadian Secured Credit Facility +106387,Other,Discussion of memorandum of understanding between UVic and Department of Fisheries and Oceans for collaborative research +106388,Other,Knowledge of infrastructure funding announcement for post-secondary institutions +106390,Other,Science and technology agenda and the role of post-secondary institutions +106390,Other,Science and technology agenda and the role of post-secondary institutions +106389,Other,"Subject of Communication: Bill C-310, An Act to Provide Certain Rights to Air Passengers" +106392,Other,Development of assistive technology for disabled persons +230330,Defence,Defence +355788,Government Procurement,Government Procurement +350315,Industry,Industry +106389,Other,Bill C-310 +106401,Other,General State of the Economy +380254,Government Procurement,Government Procurement +106411,Other,Cap and Trade +106417,Other,C-310 Act to Provide Certain Rights to Air Passengers +106421,Other,Carbon Capture and Storage +106430,Other,Carbon Capture and Storage +130436,Other,Fermeture de la tour de contrôle de l'aéroport de Mirabel +382804,Government Procurement,Marchés Publics +106534,Other,Business Risk Management +106534,Other,Farn Animal Care +106535,Other,Business Risk Management +106535,Other,Farm Animal Care +109127,Health,Health +109127,Small Business,Small Business +106556,Other,Patented Medicine Prices Review Board (PMPRB) +106558,Other,Patented Medicine Prices Review Board (PMPRB) +106574,Other,FWSAR +106575,Other,FWSAR +106576,Other,FWSAR +218807,Health,Santé +106614,Other,American Regulatory Priorities +106695,Energy,Energy +106696,Other,Energy +112114,Other,Seniors Oral Health Care +106717,International Trade,International Trade +456537,Health,Health +106798,Other,"Bill C-10: with respect to implementation of Competition Act amendments on merger review, conspiracy, abuse of dominance and deceptive marketing practices" +121415,Health,Health +106815,Other,Bill C-19: with respect to reintroduction of preventive arrest and investigative hearings in the Criminal Code +106815,Other,Legislative Proposal: Criminal Code s. 347 with respect to application of criminal interest rate +106815,Other,Legislative Proposal: Privacy Act with respect to Parliamentary review +121163,Infrastructure,Infrastructure +106876,Other,Climate Change +107115,Constitutional Issues,Constitutional Issues +156070,Employment and Training,Employment and Training +272156,Justice and Law Enforcement,Justice and Law Enforcement +242870,Labour,Labour +242870,Transportation,Transportation +142465,Agriculture,Agriculture +168886,Environment,Environment +142468,International Trade,International Trade +159551,Transportation,Transportation +106983,Transportation,Transportation +109576,Education,Education +109414,Education,Education +109414,Employment and Training,Employment and Training +135114,Other,Federal Infrastructure Stimulus Plan +107035,Other,Federal Infrastructure Stimulus Plan +107055,Other,Federal Infrastructure Stimulus plan +107054,Other,Federal Infrastucture Stimulus Plan +107074,Other,Contraband issue +107075,Other,Briefing on the history of tobacco control +241553,Energy,Energy +241553,Mining,Mining +241553,Regional Development,Regional Development +241553,Transportation,Transportation +157670,Mining,Mining +145420,Mining,Mining +156356,Regional Development,Regional Development +156356,Transportation,Transportation +107274,Other,Pending new Food and Drug Act +107275,Other,Pending new Legislation +107297,Other,Internal Credential Management Initiative +107297,Other,Secure Channel +107396,Other,Recent Changes to the Competition Act +408746,Environment,Environment +115254,Other,Continued Space Allocation +200526,Industry,Industry +109118,Taxation and Finance,Taxation and Finance +132989,Other,SMART Program +166124,Health,Health +146183,Justice and Law Enforcement,Justice and Law Enforcement +124335,Financial Institutions,Financial Institutions +108874,Infrastructure,Infrastructure +116555,Infrastructure,Infrastructure +110115,Defence,Defence +114574,Industry,Industry +107814,International Trade,International Trade +107814,Other,International Trade Agriculture +107895,Other,Green Fund +514199,Infrastructure,Infrastructure +107894,Other,Rail Freight Service Review +107895,Other,Rail Freight Service Review +379127,Government Procurement,Government Procurement +379126,Health,Health +107904,Other,The role of the Canadian Society of Immigration Consultants (CSIC) +109099,Infrastructure,Infrastructure +107941,International Relations,International Relations +107936,International Relations,International Relations +107936,Other,International Relations +107938,International Relations,International Relations +107939,International Relations,International Relations +107940,International Relations,International Relations +107954,Other,Energy +107954,Other,Mining +117647,Other,Urban Energy Systems for Tomorrow (QUEST) +112554,Other,International Development +191864,Health,Health +117005,Other,Infrastructure investments directly related to post-secondary education +125199,Other,Environment +146323,Intellectual Property,Intellectual Property +108060,Other,Support for funding application to NRCan +108061,Other,Tobacco Legislation +108062,Other,ecoEnergy +108063,Other,Banking +108064,Other,Banking +112058,Environment,Environment +112058,Infrastructure,Infrastructure +112060,Regional Development,Regional Development +115258,Other,Finance +115258,Industry,Industry +113054,Infrastructure,Infrastructure +237050,Defence,Defence +125121,Industry,Industry +108155,Other,Copyright +108175,Other,Periodic updates on Wildlife Habitat Canada activities +115258,Infrastructure,Infrastructure +108254,Other,Tourism - to raise awareness of the need for a strategic approach to issues that impact aviation and tourism +147139,Internal Trade,Commerce intérieur +124853,Other,Costs +108354,Other,Health Research +108354,Other,HHR observatory +108354,Other,Aboriginal health and public health social accountability projects +108354,Other,The Future of Medical Education in Canada project +108374,Other,"Canadian Aviation Security Regulations, regarding airport security" +108374,Other,"National Airports Policy, with respect to impact of potential industry labour issues" +108469,Other,Mining +108577,Other,Issues related to collective bargaining +227956,International Relations,International Relations +164731,Industry,Industry +171724,Small Business,Small Business +108619,Other,SADI +260652,International Trade,International Trade +192284,International Relations,International Relations +108823,Other,Economy +108834,Other,Economy +108838,Other,Economy +108839,Infrastructure,Infrastructure +142335,Other,Competition +124853,Other,Environment (Greenhouse Gas Emissions) +207280,Infrastructure,Infrastructure +113858,Other,US Secure Flight +228025,Agriculture,Agriculture +108894,Other,Anti-Doping +128015,Other,Government Procurement - relative to a decision regarding the Joint Strike Fighter Program. +108976,Other,Brewing in Canada's significant contribution to the economy +108976,Justice and Law Enforcement,Justice and Law Enforcement +150740,Environment,Environment +163902,Infrastructure,Infrastructure +112099,Regional Development,Regional Development +109014,Other,Corporate Socail Responsibility +109072,Other,Space Policy +109097,Other,Information & Communications Technology +109096,Other,Value-added manufacturing +124951,Other,Airline competition +109124,Other,reinstatement of CISTI funding +109125,Other,Canada-UAE air transport agreement +141814,Other,Canada-UAE air transport agreement +109165,Other,Credit Card Fees +109169,Other,Greenhouse Gas Regulations +109175,Other,Canada-UAE air transport agreement +109178,Other,Discussions related to potential infrastructure spending on an Automatic Identification System (AIS) to provide coastal and maritime situation awareness. +109179,Other,Canada-UAE air transport agreement +109202,Other,Développement du contenu canadien +109222,Other,Energy Transmission +109232,Other,Repentigny Suburb train project issues +109237,Other,Canadian Content and Program Funding +109237,Other,Copyright Tariff Proceedings +136157,Other,Briefing on GD-OTS Canada's activities and also on Repentigny Suburban train project issues +135815,Other,supply management +109257,Other,FCM Annual Conference +109259,Other,Economic conditions affecting manufacturers +109264,Other,Rural Issues +109257,Other,Stimulus Spending +109261,Other,Financing +109261,Other,regulation/paperburden +109261,Other,Right to Repair +109276,Other,New EDC financing mechanisms for manufacturers and exporters +137554,Other,Economy +109265,Other,Canadian response to US Buy American legislation +113872,Other,Workplace Training and future of Work and Learning Knowledge Centre +109279,Other,Canadian response to US Buy American legislation +109271,Other,Canada Labour Code Part II +109274,Other,Global Commercial Strategy +109277,Other,International procurement opportunities +109278,Other,Tariff Elimination on Industrial Equipment +109280,Other,Access to credit for manufacturers +113864,Other,Canadian response to US Buy American legislation +109280,Other,Science and Technology strategy +109283,Other,Speaking at CME's Global Business Summit on Canada's Trade Policy +109284,Other,Minister Day's Speaking Engagement at CME's Global Business Summit +170680,Labour,Labour +233820,Agriculture,Agriculture +230473,Agriculture,Agriculture +228026,Agriculture,Agriculture +196044,Justice and Law Enforcement,Justice and Law Enforcement +112099,Environment,Environment +112095,Environment,Environment +180324,Environment,Environment +167042,Environment,Environment +167040,Environment,Environment +163902,Environment,Environment +350294,Infrastructure,Infrastructure +336042,Infrastructure,Infrastructure +153494,Infrastructure,Infrastructure +150741,Infrastructure,Infrastructure +146174,Infrastructure,Infrastructure +140194,Infrastructure,Infrastructure +134956,Infrastructure,Infrastructure +132230,Infrastructure,Infrastructure +132229,Infrastructure,Infrastructure +122835,Infrastructure,Infrastructure +117999,Infrastructure,Infrastructure +117998,Infrastructure,Infrastructure +112635,Infrastructure,Infrastructure +112099,Infrastructure,Infrastructure +112098,Infrastructure,Infrastructure +112097,Infrastructure,Infrastructure +112096,Infrastructure,Infrastructure +207642,Infrastructure,Infrastructure +180324,Infrastructure,Infrastructure +167043,Infrastructure,Infrastructure +167042,Infrastructure,Infrastructure +167040,Infrastructure,Infrastructure +167039,Infrastructure,Infrastructure +112094,Regional Development,Regional Development +180324,Regional Development,Regional Development +150741,Regional Development,Regional Development +117998,Regional Development,Regional Development +124892,Other,Airline competition +109117,Other,Airline competition +124886,Other,Canada-UAE air transport agreement +109205,Other,Canada-UAE air transport agreement +141816,Other,Canada-UAE air transport agreement +141815,Other,Canada-UAE air transport agreement +132427,Other,Credit Card Fees +109172,Other,Greenhouse Gas Regulations +109171,Other,Greenhouse Gas Regulations +136156,Other,Briefing on GD-OTS Canada's activities and also on Repentigny Suburban train project issues +136155,Other,Briefing on GD-OTS Canada's activities and also on Repentigny Suburban train project issues +119034,Other,Briefing on GD-OTS Canada's activities and also on Repentigny Suburban train project issues +109254,Other,Briefing on GD-OTS Canada's activities and also on Repentigny Suburban train project issues +135814,Other,supply management +109255,Other,supply management +135850,Other,supply management +135848,Other,supply management +135841,Other,supply management +135834,Other,supply management +135818,Other,supply management +135817,Other,supply management +109257,Other,Rural Issues +113396,Other,Rural Issues +109262,Other,New EDC financing mechanisms for manufacturers and exporters +137535,Other,Economy +109261,Other,Economy +141475,Other,Economy +137555,Other,Economy +109282,Other,Canadian response to US Buy American legislation +109275,Other,Canadian response to US Buy American legislation +109272,Other,Canadian response to US Buy American legislation +109266,Other,Workplace Training and future of Work and Learning Knowledge Centre +109269,Other,Canadian response to US Buy American legislation +109268,Other,Canadian response to US Buy American legislation +113871,Other,Canadian response to US Buy American legislation +113868,Other,Canadian response to US Buy American legislation +109280,Other,Canadian response to US Buy American legislation +135999,Other,Canadian response to US Buy American legislation +113874,Other,Canadian response to US Buy American legislation +342124,Labour,Labour +342123,Labour,Labour +165084,Labour,Labour +285629,Labour,Labour +170690,Labour,Labour +170685,Labour,Labour +170683,Labour,Labour +111714,Other,Fisheries and Oceans +135935,Other,Fisheries and Aqualculture +132985,Other,Fisheries and Aqualculture +124994,Other,Fisheries and Aqualculture +109503,Other,CF-18 +147337,Other,Investment in wine tourism infrastructure +148236,Other,Investment in wine tourism infrastructure +146050,Other,Investment in wine tourism infrastructure +109665,Other,air navigation services +129155,Other,Financial services regulation +159884,Other,Financial services regulation +109676,Other,Financial services regulation +153403,Other,Financial services regulation +148145,Other,Financial services regulation +132730,Other,Financial services regulation +132711,Other,Financial services regulation +132709,Other,Financial services regulation +109686,Other,University Funding +109682,Other,University Funding +397364,Transportation,Transportation +397363,Transportation,Transportation +109720,Transportation,Transportation +109713,Transportation,Transportation +109706,Transportation,Transportation +109701,Transportation,Transportation +173432,Transportation,Transportation +387680,Transportation,Transportation +330311,Transportation,Transportation +511270,Transportation,Transportation +109706,Other,Potential funding for electric vehicle activities +158473,Other,Social Responsibility and e3 Plus +158472,Other,Social Responsibility and e3 Plus +109806,Other,Social Responsibility and e3 Plus +109803,Other,Social Responsibility and e3 Plus +109801,Other,Social Responsibility and e3 Plus +109797,Other,Social Responsibility and e3 Plus +109796,Other,Social Responsibility and e3 Plus +109794,Other,Social Responsibility and e3 Plus +109792,Other,Social Responsibility and e3 Plus +158471,Other,Social Responsibility and e3 Plus +158469,Other,Social Responsibility and e3 Plus +158468,Other,Social Responsibility and e3 Plus +158466,Other,Social Responsibility and e3 Plus +158465,Other,Social Responsibility and e3 Plus +158462,Other,Social Responsibility and e3 Plus +158458,Other,Social Responsibility and e3 Plus +158456,Other,Social Responsibility and e3 Plus +150438,Other,Social Responsibility and e3 Plus +150437,Other,Social Responsibility and e3 Plus +142821,Other,Social Responsibility and e3 Plus +142818,Other,Social Responsibility and e3 Plus +142815,Other,Social Responsibility and e3 Plus +135762,Other,Social Responsibility and e3 Plus +135760,Other,Social Responsibility and e3 Plus +135759,Other,Social Responsibility and e3 Plus +158752,Other,Social Responsibility and e3 Plus +158504,Other,Social Responsibility and e3 Plus +158503,Other,Social Responsibility and e3 Plus +158502,Other,Social Responsibility and e3 Plus +158501,Other,Social Responsibility and e3 Plus +158499,Other,Social Responsibility and e3 Plus +158498,Other,Social Responsibility and e3 Plus +158497,Other,Social Responsibility and e3 Plus +158496,Other,Social Responsibility and e3 Plus +158495,Other,Social Responsibility and e3 Plus +150438,Other,Mines Ministers Conference +150437,Other,Mines Ministers Conference +109806,Other,Mines Ministers Conference +109803,Other,Mines Ministers Conference +109801,Other,Mines Ministers Conference +109897,Other,Employment Insurance +175053,Education,Education +175052,Education,Education +175049,Energy,Energy +162836,Energy,Energy +129547,Energy,Energy +129546,Energy,Energy +122534,Energy,Energy +205027,Energy,Energy +201788,Energy,Energy +201787,Energy,Energy +201767,Energy,Energy +366372,Infrastructure,Infrastructure +290983,Infrastructure,Infrastructure +110054,Infrastructure,Infrastructure +143876,Other,Science and Technology +110134,Other,Science and Technology +148647,Other,National ICT Strategy +148646,Other,National ICT Strategy +110156,Other,National ICT Strategy +152443,Other,National ICT Strategy +152107,Other,National ICT Strategy +152106,Other,National ICT Strategy +148659,Other,National ICT Strategy +148658,Other,National ICT Strategy +148656,Other,National ICT Strategy +148655,Other,National ICT Strategy +148654,Other,National ICT Strategy +148652,Other,National ICT Strategy +148651,Other,National ICT Strategy +148650,Other,National ICT Strategy +133920,Other,Discussion on meeting May 13 and feedback regarding need for National Information and Communications Technology Strategy +110434,Other,Social Finance +189504,Justice and Law Enforcement,Justice and Law Enforcement +171007,Justice and Law Enforcement,Justice and Law Enforcement +163905,Justice and Law Enforcement,Justice and Law Enforcement +157239,Justice and Law Enforcement,Justice and Law Enforcement +157238,Justice and Law Enforcement,Justice and Law Enforcement +150349,Justice and Law Enforcement,Justice and Law Enforcement +150346,Justice and Law Enforcement,Justice and Law Enforcement +132913,Justice and Law Enforcement,Justice and Law Enforcement +132912,Justice and Law Enforcement,Justice and Law Enforcement +129029,Justice and Law Enforcement,Justice and Law Enforcement +129028,Justice and Law Enforcement,Justice and Law Enforcement +129024,Justice and Law Enforcement,Justice and Law Enforcement +129021,Justice and Law Enforcement,Justice and Law Enforcement +129018,Justice and Law Enforcement,Justice and Law Enforcement +121159,Justice and Law Enforcement,Justice and Law Enforcement +117683,Justice and Law Enforcement,Justice and Law Enforcement +241249,Justice and Law Enforcement,Justice and Law Enforcement +194976,Justice and Law Enforcement,Justice and Law Enforcement +189537,Justice and Law Enforcement,Justice and Law Enforcement +189534,Justice and Law Enforcement,Justice and Law Enforcement +189531,Justice and Law Enforcement,Justice and Law Enforcement +189526,Justice and Law Enforcement,Justice and Law Enforcement +170384,Intellectual Property,Intellectual Property +382680,Intellectual Property,Intellectual Property +147255,Intellectual Property,Intellectual Property +241027,Intellectual Property,Intellectual Property +217949,Intellectual Property,Intellectual Property +217947,Intellectual Property,Intellectual Property +217945,Intellectual Property,Intellectual Property +217942,Intellectual Property,Intellectual Property +217939,Intellectual Property,Intellectual Property +217935,Intellectual Property,Intellectual Property +212563,Intellectual Property,Intellectual Property +212561,Intellectual Property,Intellectual Property +212558,Intellectual Property,Intellectual Property +212557,Intellectual Property,Intellectual Property +204087,Intellectual Property,Intellectual Property +124316,Other,Traceability +146614,Other,Citizenship +146954,International Trade,International Trade +247009,International Trade,International Trade +443102,Health,Health +397131,Health,Health +453721,Health,Health +138468,Infrastructure,Infrastructure +138466,Infrastructure,Infrastructure +115257,Infrastructure,Infrastructure +150289,Infrastructure,Infrastructure +150286,Infrastructure,Infrastructure +138466,Tourism,Tourism +115257,Tourism,Tourism +150289,Tourism,Tourism +150286,Tourism,Tourism +138469,Tourism,Tourism +138469,Transportation,Transportation +138468,Transportation,Transportation +138466,Transportation,Transportation +115257,Transportation,Transportation +150289,Transportation,Transportation +477426,Energy,Energy +477421,Energy,Energy +116194,Energy,Energy +125756,Energy,Energy +125755,Energy,Energy +125754,Energy,Energy +121288,Energy,Energy +192029,Energy,Energy +174085,Energy,Energy +174084,Energy,Energy +360747,Energy,Energy +359447,Energy,Energy +359446,Energy,Energy +359443,Energy,Energy +540007,Energy,Energy +540005,Energy,Energy +532008,Energy,Energy +512722,Energy,Energy +505306,Energy,Energy +502231,Energy,Energy +502223,Energy,Energy +502222,Energy,Energy +482443,Energy,Energy +482442,Energy,Energy +482441,Energy,Energy +482438,Energy,Energy +477438,Energy,Energy +477433,Energy,Energy +477426,Environment,Environment +477421,Environment,Environment +125756,Environment,Environment +125755,Environment,Environment +125754,Environment,Environment +121288,Environment,Environment +116194,Environment,Environment +192029,Environment,Environment +174085,Environment,Environment +540007,Environment,Environment +540005,Environment,Environment +512722,Environment,Environment +505306,Environment,Environment +502223,Environment,Environment +502222,Environment,Environment +482443,Environment,Environment +482442,Environment,Environment +482441,Environment,Environment +482440,Environment,Environment +482438,Environment,Environment +477438,Environment,Environment +477433,Environment,Environment +125754,Infrastructure,Infrastructure +121291,Infrastructure,Infrastructure +110754,Other,Alcohol and Pregnancy (Fetal Alcohol Spectrum Disorder) +130156,Other,National Alcohol Strategy +130155,Other,National Alcohol Strategy +130134,Other,National Alcohol Strategy +118874,Other,National Alcohol Strategy +110754,Other,National Alcohol Strategy +130158,Other,National Alcohol Strategy +135014,Fisheries,Fisheries +118854,Fisheries,Fisheries +151931,Fisheries,Fisheries +118854,Justice and Law Enforcement,Justice and Law Enforcement +151931,Justice and Law Enforcement,Justice and Law Enforcement +145866,Justice and Law Enforcement,Justice and Law Enforcement +267452,Regional Development,Développement régional +267450,Regional Development,Développement régional +115315,Regional Development,Développement régional +115314,Regional Development,Développement régional +267452,Environment,Environnement +267450,Environment,Environnement +115315,Environment,Environnement +267452,Industry,Industrie +267450,Industry,Industrie +115314,Industry,Industrie +267452,Mining,Mines +267450,Mining,Mines +115314,Mining,Mines +138777,Other,Economy +528902,International Relations,International Relations +525385,International Relations,International Relations +118015,International Relations,International Relations +117975,International Relations,International Relations +117974,International Relations,International Relations +112675,International Relations,International Relations +112674,International Relations,International Relations +159570,International Relations,International Relations +159556,International Relations,International Relations +126798,International Relations,International Relations +126796,International Relations,International Relations +126795,International Relations,International Relations +226930,International Relations,International Relations +226535,International Relations,International Relations +222696,International Relations,International Relations +222678,International Relations,International Relations +222648,International Relations,International Relations +222646,International Relations,International Relations +222579,International Relations,International Relations +222578,International Relations,International Relations +188346,International Relations,International Relations +188345,International Relations,International Relations +188342,International Relations,International Relations +188337,International Relations,International Relations +188335,International Relations,International Relations +188333,International Relations,International Relations +188330,International Relations,International Relations +188325,International Relations,International Relations +188316,International Relations,International Relations +188312,International Relations,International Relations +188279,International Relations,International Relations +188278,International Relations,International Relations +188275,International Relations,International Relations +188272,International Relations,International Relations +188260,International Relations,International Relations +188252,International Relations,International Relations +188251,International Relations,International Relations +188250,International Relations,International Relations +188249,International Relations,International Relations +188247,International Relations,International Relations +188239,International Relations,International Relations +188234,International Relations,International Relations +188232,International Relations,International Relations +188231,International Relations,International Relations +188228,International Relations,International Relations +188218,International Relations,International Relations +188217,International Relations,International Relations +188213,International Relations,International Relations +188197,International Relations,International Relations +188196,International Relations,International Relations +188194,International Relations,International Relations +180674,International Relations,International Relations +173150,International Relations,International Relations +169987,International Relations,International Relations +165350,International Relations,International Relations +165349,International Relations,International Relations +165348,International Relations,International Relations +165346,International Relations,International Relations +163372,International Relations,International Relations +163371,International Relations,International Relations +163370,International Relations,International Relations +163365,International Relations,International Relations +163364,International Relations,International Relations +163359,International Relations,International Relations +163356,International Relations,International Relations +163355,International Relations,International Relations +163354,International Relations,International Relations +163352,International Relations,International Relations +163348,International Relations,International Relations +163346,International Relations,International Relations +161279,International Relations,International Relations +161275,International Relations,International Relations +161187,International Relations,International Relations +161185,International Relations,International Relations +161184,International Relations,International Relations +161181,International Relations,International Relations +388403,International Relations,International Relations +388219,International Relations,International Relations +385525,International Relations,International Relations +385473,International Relations,International Relations +385470,International Relations,International Relations +383964,International Relations,International Relations +383963,International Relations,International Relations +383961,International Relations,International Relations +383960,International Relations,International Relations +383865,International Relations,International Relations +382604,International Relations,International Relations +382579,International Relations,International Relations +382574,International Relations,International Relations +379897,International Relations,International Relations +379880,International Relations,International Relations +379868,International Relations,International Relations +376694,International Relations,International Relations +376666,International Relations,International Relations +376664,International Relations,International Relations +374806,International Relations,International Relations +374661,International Relations,International Relations +374005,International Relations,International Relations +372704,International Relations,International Relations +372696,International Relations,International Relations +369143,International Relations,International Relations +366578,International Relations,International Relations +366577,International Relations,International Relations +366576,International Relations,International Relations +361445,International Relations,International Relations +361444,International Relations,International Relations +359713,International Relations,International Relations +355797,International Relations,International Relations +349080,International Relations,International Relations +349071,International Relations,International Relations +349063,International Relations,International Relations +349057,International Relations,International Relations +349051,International Relations,International Relations +349049,International Relations,International Relations +341115,International Relations,International Relations +341112,International Relations,International Relations +340800,International Relations,International Relations +340710,International Relations,International Relations +340708,International Relations,International Relations +340704,International Relations,International Relations +340548,International Relations,International Relations +337721,International Relations,International Relations +333429,International Relations,International Relations +333365,International Relations,International Relations +332440,International Relations,International Relations +327593,International Relations,International Relations +327580,International Relations,International Relations +324992,International Relations,International Relations +324991,International Relations,International Relations +321753,International Relations,International Relations +313749,International Relations,International Relations +307189,International Relations,International Relations +307171,International Relations,International Relations +307156,International Relations,International Relations +307154,International Relations,International Relations +307152,International Relations,International Relations +307149,International Relations,International Relations +307129,International Relations,International Relations +287129,International Relations,International Relations +286930,International Relations,International Relations +283295,International Relations,International Relations +276638,International Relations,International Relations +276634,International Relations,International Relations +276633,International Relations,International Relations +276392,International Relations,International Relations +265309,International Relations,International Relations +263421,International Relations,International Relations +258370,International Relations,International Relations +258236,International Relations,International Relations +258232,International Relations,International Relations +253869,International Relations,International Relations +251311,International Relations,International Relations +251309,International Relations,International Relations +251292,International Relations,International Relations +249852,International Relations,International Relations +249837,International Relations,International Relations +249835,International Relations,International Relations +244790,International Relations,International Relations +240999,International Relations,International Relations +236614,International Relations,International Relations +233572,International Relations,International Relations +231214,International Relations,International Relations +228736,International Relations,International Relations +228735,International Relations,International Relations +228734,International Relations,International Relations +226991,International Relations,International Relations +226987,International Relations,International Relations +226979,International Relations,International Relations +226971,International Relations,International Relations +519782,International Relations,International Relations +519748,International Relations,International Relations +519658,International Relations,International Relations +517949,International Relations,International Relations +517939,International Relations,International Relations +517898,International Relations,International Relations +517895,International Relations,International Relations +516881,International Relations,International Relations +516874,International Relations,International Relations +515825,International Relations,International Relations +515823,International Relations,International Relations +515822,International Relations,International Relations +514734,International Relations,International Relations +514733,International Relations,International Relations +514123,International Relations,International Relations +513335,International Relations,International Relations +513333,International Relations,International Relations +513332,International Relations,International Relations +511210,International Relations,International Relations +511209,International Relations,International Relations +511188,International Relations,International Relations +508802,International Relations,International Relations +508690,International Relations,International Relations +508687,International Relations,International Relations +505612,International Relations,International Relations +505610,International Relations,International Relations +502434,International Relations,International Relations +502406,International Relations,International Relations +499215,International Relations,International Relations +499199,International Relations,International Relations +495881,International Relations,International Relations +493545,International Relations,International Relations +493539,International Relations,International Relations +493536,International Relations,International Relations +491125,International Relations,International Relations +488348,International Relations,International Relations +488346,International Relations,International Relations +485041,International Relations,International Relations +482287,International Relations,International Relations +478333,International Relations,International Relations +478324,International Relations,International Relations +476109,International Relations,International Relations +468474,International Relations,International Relations +468460,International Relations,International Relations +468459,International Relations,International Relations +468449,International Relations,International Relations +464729,International Relations,International Relations +464724,International Relations,International Relations +464721,International Relations,International Relations +462644,International Relations,International Relations +462632,International Relations,International Relations +462631,International Relations,International Relations +462629,International Relations,International Relations +461918,International Relations,International Relations +461908,International Relations,International Relations +459775,International Relations,International Relations +459769,International Relations,International Relations +459765,International Relations,International Relations +459756,International Relations,International Relations +459753,International Relations,International Relations +458825,International Relations,International Relations +458752,International Relations,International Relations +455631,International Relations,International Relations +455629,International Relations,International Relations +455620,International Relations,International Relations +455616,International Relations,International Relations +452962,International Relations,International Relations +452960,International Relations,International Relations +452938,International Relations,International Relations +452502,International Relations,International Relations +450106,International Relations,International Relations +450099,International Relations,International Relations +450097,International Relations,International Relations +450090,International Relations,International Relations +447790,International Relations,International Relations +445590,International Relations,International Relations +445585,International Relations,International Relations +443951,International Relations,International Relations +443948,International Relations,International Relations +443946,International Relations,International Relations +443930,International Relations,International Relations +439691,International Relations,International Relations +439681,International Relations,International Relations +439157,International Relations,International Relations +439152,International Relations,International Relations +439150,International Relations,International Relations +439139,International Relations,International Relations +439135,International Relations,International Relations +439128,International Relations,International Relations +439119,International Relations,International Relations +439118,International Relations,International Relations +439112,International Relations,International Relations +435849,International Relations,International Relations +435842,International Relations,International Relations +435841,International Relations,International Relations +435829,International Relations,International Relations +435821,International Relations,International Relations +435818,International Relations,International Relations +434045,International Relations,International Relations +433181,International Relations,International Relations +433179,International Relations,International Relations +433176,International Relations,International Relations +432597,International Relations,International Relations +432595,International Relations,International Relations +432594,International Relations,International Relations +432567,International Relations,International Relations +432557,International Relations,International Relations +431307,International Relations,International Relations +431306,International Relations,International Relations +428737,International Relations,International Relations +428734,International Relations,International Relations +428723,International Relations,International Relations +428714,International Relations,International Relations +428689,International Relations,International Relations +426493,International Relations,International Relations +426491,International Relations,International Relations +426486,International Relations,International Relations +426482,International Relations,International Relations +424449,International Relations,International Relations +424441,International Relations,International Relations +423673,International Relations,International Relations +423627,International Relations,International Relations +423536,International Relations,International Relations +422269,International Relations,International Relations +420005,International Relations,International Relations +419989,International Relations,International Relations +418272,International Relations,International Relations +417078,International Relations,International Relations +417062,International Relations,International Relations +417059,International Relations,International Relations +417058,International Relations,International Relations +417054,International Relations,International Relations +409157,International Relations,International Relations +409156,International Relations,International Relations +409154,International Relations,International Relations +409134,International Relations,International Relations +406910,International Relations,International Relations +406908,International Relations,International Relations +406899,International Relations,International Relations +405938,International Relations,International Relations +404364,International Relations,International Relations +403894,International Relations,International Relations +403882,International Relations,International Relations +403861,International Relations,International Relations +400945,International Relations,International Relations +400942,International Relations,International Relations +398205,International Relations,International Relations +398200,International Relations,International Relations +398198,International Relations,International Relations +398197,International Relations,International Relations +396788,International Relations,International Relations +396782,International Relations,International Relations +396679,International Relations,International Relations +396643,International Relations,International Relations +396625,International Relations,International Relations +396266,International Relations,International Relations +395142,International Relations,International Relations +394491,International Relations,International Relations +394469,International Relations,International Relations +392579,International Relations,International Relations +392577,International Relations,International Relations +391425,International Relations,International Relations +391403,International Relations,International Relations +391390,International Relations,International Relations +391378,International Relations,International Relations +537175,International Relations,International Relations +531486,International Relations,International Relations +401925,Agriculture,Agriculture +365823,Agriculture,Agriculture +275902,Agriculture,Agriculture +378759,International Trade,International Trade +365823,International Trade,International Trade +275910,International Trade,International Trade +275909,International Trade,International Trade +401933,International Trade,International Trade +424835,Taxation and Finance,Taxation and Finance +424833,Taxation and Finance,Taxation and Finance +247352,Taxation and Finance,Taxation and Finance +381795,Taxation and Finance,Taxation and Finance +380306,Taxation and Finance,Taxation and Finance +380305,Taxation and Finance,Taxation and Finance +380303,Taxation and Finance,Taxation and Finance +373178,Taxation and Finance,Taxation and Finance +347897,Taxation and Finance,Taxation and Finance +140255,Energy,Energy +140254,Energy,Energy +140258,Energy,Energy +140257,Energy,Energy +140255,Environment,Environment +140254,Environment,Environment +140258,Environment,Environment +140257,Environment,Environment +140255,Regional Development,Regional Development +140254,Regional Development,Regional Development +140258,Regional Development,Regional Development +140257,Regional Development,Regional Development +436965,Employment and Training,Employment and Training +432859,Employment and Training,Employment and Training +168375,Employment and Training,Employment and Training +168373,Employment and Training,Employment and Training +250309,Employment and Training,Employment and Training +250305,Employment and Training,Employment and Training +250303,Employment and Training,Employment and Training +245258,Employment and Training,Employment and Training +245256,Employment and Training,Employment and Training +217250,Employment and Training,Employment and Training +199914,Employment and Training,Employment and Training +199911,Employment and Training,Employment and Training +199909,Employment and Training,Employment and Training +199907,Employment and Training,Employment and Training +199903,Employment and Training,Employment and Training +194789,Employment and Training,Employment and Training +185704,Employment and Training,Employment and Training +409982,Employment and Training,Employment and Training +394599,Employment and Training,Employment and Training +378807,Employment and Training,Employment and Training +378805,Employment and Training,Employment and Training +371798,Employment and Training,Employment and Training +371794,Employment and Training,Employment and Training +371791,Employment and Training,Employment and Training +371788,Employment and Training,Employment and Training +338797,Employment and Training,Employment and Training +338795,Employment and Training,Employment and Training +338794,Employment and Training,Employment and Training +338792,Employment and Training,Employment and Training +338790,Employment and Training,Employment and Training +338788,Employment and Training,Employment and Training +338787,Employment and Training,Employment and Training +335544,Employment and Training,Employment and Training +335542,Employment and Training,Employment and Training +335541,Employment and Training,Employment and Training +310413,Employment and Training,Employment and Training +310411,Employment and Training,Employment and Training +310408,Employment and Training,Employment and Training +310406,Employment and Training,Employment and Training +310404,Employment and Training,Employment and Training +310400,Employment and Training,Employment and Training +310399,Employment and Training,Employment and Training +310397,Employment and Training,Employment and Training +310384,Employment and Training,Employment and Training +310375,Employment and Training,Employment and Training +292249,Employment and Training,Employment and Training +273242,Employment and Training,Employment and Training +268716,Employment and Training,Employment and Training +268715,Employment and Training,Employment and Training +268714,Employment and Training,Employment and Training +268713,Employment and Training,Employment and Training +268712,Employment and Training,Employment and Training +268710,Employment and Training,Employment and Training +268709,Employment and Training,Employment and Training +268689,Employment and Training,Employment and Training +504926,Employment and Training,Employment and Training +490319,Employment and Training,Employment and Training +464621,Employment and Training,Employment and Training +464620,Employment and Training,Employment and Training +461954,Employment and Training,Employment and Training +445265,Employment and Training,Employment and Training +477059,Health,Health +464620,Health,Health +152161,Health,Health +168375,Health,Health +168373,Health,Health +292249,Health,Health +273242,Health,Health +253969,Health,Health +250309,Health,Health +250305,Health,Health +250303,Health,Health +245258,Health,Health +245256,Health,Health +217250,Health,Health +353760,Health,Health +335542,Health,Health +322012,Health,Health +322010,Health,Health +322008,Health,Health +310375,Health,Health +409982,Health,Health +383477,Health,Health +371798,Health,Health +371794,Health,Health +371788,Health,Health +369127,Health,Health +250303,Labour,Labour +464620,Labour,Labour +292249,Labour,Labour +250309,Labour,Labour +119094,Health,Health +244895,Taxation and Finance,Impôts et finances +395338,Taxation and Finance,Impôts et finances +160315,Taxation and Finance,Impôts et finances +155728,Taxation and Finance,Impôts et finances +155727,Taxation and Finance,Impôts et finances +155726,Taxation and Finance,Impôts et finances +126894,Taxation and Finance,Impôts et finances +116674,Taxation and Finance,Impôts et finances +111114,Taxation and Finance,Impôts et finances +325469,Taxation and Finance,Impôts et finances +307011,Health,Health +307009,Health,Health +158114,Health,Health +158113,Health,Health +158111,Health,Health +259876,Health,Health +259875,Health,Health +259874,Health,Health +259873,Health,Health +259872,Health,Health +242692,Health,Health +242691,Health,Health +242690,Health,Health +242689,Health,Health +242671,Health,Health +242670,Health,Health +242669,Health,Health +234529,Health,Health +211453,Health,Health +211452,Health,Health +211451,Health,Health +211450,Health,Health +190548,Health,Health +190547,Health,Health +190546,Health,Health +190545,Health,Health +188670,Health,Health +188668,Health,Health +188667,Health,Health +188664,Health,Health +169635,Health,Health +167509,Health,Health +167507,Health,Health +167506,Health,Health +167503,Health,Health +396065,Health,Health +396063,Health,Health +395104,Health,Health +388882,Health,Health +307052,Health,Health +307051,Health,Health +307050,Health,Health +322389,Taxation and Finance,Taxation and Finance +259869,Taxation and Finance,Taxation and Finance +188670,Taxation and Finance,Taxation and Finance +188668,Taxation and Finance,Taxation and Finance +188667,Taxation and Finance,Taxation and Finance +188664,Taxation and Finance,Taxation and Finance +341170,Taxation and Finance,Taxation and Finance +341169,Taxation and Finance,Taxation and Finance +341168,Taxation and Finance,Taxation and Finance +341165,Taxation and Finance,Taxation and Finance +334460,Taxation and Finance,Taxation and Finance +334459,Taxation and Finance,Taxation and Finance +334458,Taxation and Finance,Taxation and Finance +334457,Taxation and Finance,Taxation and Finance +334456,Taxation and Finance,Taxation and Finance +329210,Taxation and Finance,Taxation and Finance +325872,Taxation and Finance,Taxation and Finance +325871,Taxation and Finance,Taxation and Finance +325870,Taxation and Finance,Taxation and Finance +111315,Other,Northern Development +223687,Infrastructure,Infrastructure +169626,Infrastructure,Infrastructure +278150,Regional Development,Regional Development +169626,Transportation,Transportation +278150,Transportation,Transportation +264829,Transportation,Transportation +111757,Other,Climate Change +111754,Other,Climate Change +147177,Other,Climate Change +147176,Other,Climate Change +111757,Energy,Energy +111754,Energy,Energy +147177,Energy,Energy +147176,Energy,Energy +111754,Environment,Environment +147177,Environment,Environment +111235,Other,Traceability and Recalls +399190,Education,Education +269061,Education,Education +394356,Education,Education +394343,Education,Education +393634,Education,Education +387189,Education,Education +387187,Education,Education +383159,Education,Education +382285,Education,Education +381261,Education,Education +381260,Education,Education +381255,Education,Education +379670,Education,Education +379631,Education,Education +379619,Education,Education +377049,Education,Education +376962,Education,Education +376926,Education,Education +374954,Education,Education +372617,Education,Education +372614,Education,Education +361193,Education,Education +359705,Education,Education +358197,Education,Education +358191,Education,Education +358181,Education,Education +358175,Education,Education +355989,Education,Education +351570,Education,Education +351568,Education,Education +120075,Other,Fisheries and Oceans +113254,Other,Federal Sustainable Development Act +135944,Other,Fisheries and Aqualculture +109394,Other,Tour de contrôle de l'aéroport de Mirabel +109414,Other,"Post Secondary Education, Skills and Training" +109461,Other,PMPRB +109494,Other,Discretionary Food Fortification +109499,Other,FWSAR +146414,Other,CF-18 +109509,Other,Land Grant +109519,Other,Investment in wine tourism infrastructure +109575,Other,Future Boeing Winnipeg Operations +109619,Other,Future Boeing Winnipeg Operations +132701,Other,KIP +109639,Other,"Minister's ""Digital Economy Forum"" in relation to CWTA participation" +109666,Other,Investment in wine tourism infrastructure +117535,Other,air navigation services +129156,Other,Financial services regulation +109687,Other,University Funding +109687,Other,Internationalization efforts +109693,Other,Southern Ontario Development Agency +109698,Other,EDC Supplier Program +109703,Justice and Law Enforcement,Justice and Law Enforcement +109701,Other,Potential funding for electric vehicle activities +397365,Transportation,Transportation +109723,Other,Potential funding for electric vehicle activities +109711,Other,Innovation +109709,Other,Brewing in Canada's significant contribution to the economy +109713,Other,Potential funding for electric vehicle activities +109720,Other,Potential funding for electric vehicle activities +124935,Other,Échanges à titre de grand partenaire avec l’Agence et partage des orientations récentes et futures de l’ACDI +109734,Other,Échanges sur les nouvelles orientations de l’aide en Amérique latine +109767,Other,ICT Skills +109767,Labour,Labour +109768,Other,"Discussions relative to JSF program moving forward, with SADI funding and further project cooperation with the Composit Innovation Centre, Red River College and the Winnipeg Airport Authority" +158493,Other,Social Responsibility and e3 Plus +109793,Other,Country of Origin Labelling +109793,Other,Agriflexibility +109795,Other,rural development +109797,Other,Mines Ministers Conference +109798,Other,Building Canada Fund +146714,Other,"Renewal of the salmon conservation stamp agreement, funding of community based salmon programs in BC, revised independent fisheries advisory council" +109823,Other,"Renewal of the salmon conservation stamp agreement, funding of community based salmon programs in BC, revised independent fisheries advisory council." +150504,Other,Introduction to Pacific Salmon Foundation and BC fisheries products +109865,Other,"Industry - competitiveness of the airline industry, with regard to domestic capacity and freedoms of the air" +109866,Other,product reformulation to reduce sodium +109867,Other,product reformulation to reduce sodium +109868,Other,product reformulation to reduce sodium +109869,Other,product reformulation to reduce sodium +110774,Infrastructure,Infrastructure +109896,Other,Tour de contrôle de l'aéroport de Mirabel +109897,Other,Business Access to Credit +119514,Other,Employment Insurance +109917,Other,Country of origin labelling requirements in the United States +109918,Other,Country or origin labelling requirements in the US +109919,Other,Bill C-310 +109919,Other,Correctional services in Canada +109919,Other,Criminal victimization survey +109919,Other,Illegal cigarette trade in Canada +109919,Other,Intellectual property rights and border enforcement +109919,Other,Organized Crime Task Force +109921,Other,Bill C-310 +109921,Other,Criminal victimization survey +109921,Other,Illegal cigarette trade in Canada +109921,Other,intellectual property rights and border enforcement +109921,Other,Organized Crime Task Force +109895,Other,"Fiscal Policy (Deficits, Debt, Spending, Taxation)" +109895,Other,Alternative Fuels +109895,Other,Amending the Canada Pension Plan +109895,Other,Canadian Chamber's National Economic Summit +109895,Other,competitiveness +109895,Other,Economic Outlook +109895,Other,Federal alignment of liens policy +109895,Other,GST applied to local government infrastructure +109895,Other,Implementation of tax law changes +109895,Other,Investing in transportation infrastructure +109895,Other,Invitation to attend Dinner/Roundtable discussion with corporate members +109895,Other,Mature Worker participation in labour market +109895,Other,Retroactive legislation +109895,Other,Small Business Deduction +147947,Education,Education +175050,Energy,Energy +113714,Intellectual Property,Intellectual Property +205887,Infrastructure,Infrastructure +143877,Other,Science and Technology +110135,Other,Industry coalition on talent issues +110154,Other,"Industry issues including: immigration, budget, venture capital, microelectronics Bromont project" +148649,Other,National ICT Strategy +110157,Other,Roundtable discussion on need for an Information and Communications Technology Strategy +110174,Other,ITAC views on the need for the Government Enterprise Network Services project in PWGSC +110175,Other,Social +110176,Other,Planning for June 22 Summit with industry leaders +110177,Other,Plans for ITAC member companies' chief executive officers and Minister Clement +110178,Other,Discussion on meeting May 13 and feedback regarding need for National Information and Communications Technology Strategy +110179,Other,Discussion on meeting May 13 and plans for June 22 for meeting with Minister and executives of ITAC companies +110194,Other,To make Minister aware of small business and its place in the ICT (information and communications technology) sector as well as the impacts the economic downturn is having on this vital sector. +115214,Transportation,Transportation +110274,Other,"Industry - Discussed Canada's biotechnology industry and the role of sanofi-aventis in vaccine research, development and manufacture. Discussed the PMPRB and Intellectual Property (IP) protection." +110335,Other,International Development and the role of universities and higher education +110340,Other,"Science and Technology Agenda, and Infrastructure" +110343,Other,"Science and Technology, Infrastructure" +110354,Regional Development,Développement régional +110354,Industry,Industrie +110355,Regional Development,Développement régional +110355,Industry,Industrie +110356,Regional Development,Développement régional +110356,Environment,Environnement +110356,Industry,Industrie +110374,Other,Work and Learning Knowledge Centre - Skills development +110814,Health,Health +110815,Health,Health +128617,Consumer Issues,Consumer Issues +128617,Industry,Industry +128617,Small Business,Small Business +110816,Health,Health +119634,Consumer Issues,Consumer Issues +133235,Other,Social Finance +110434,Other,Social Innovation +189525,Justice and Law Enforcement,Justice and Law Enforcement +170388,Intellectual Property,Intellectual Property +110515,Other,State of the British Columbia Economy +110534,Other,New graduate support program +110534,Other,Research project financial assistance application filing +110535,Other,Request meeting to discuss new product development assistance. +124315,Other,Traceability +147354,Other,Citizenship +158508,International Trade,International Trade +443103,Health,Health +138469,Infrastructure,Infrastructure +138468,Tourism,Tourism +150286,Transportation,Transportation +477428,Energy,Energy +477428,Environment,Environment +125756,Infrastructure,Infrastructure +118874,Other,Alcohol and Pregnancy (Fetal Alcohol Spectrum Disorder) +110754,Other,General overview of the brewing industry in Canada +110754,Other,Impaired Driving +130157,Other,National Alcohol Strategy +110755,Other,Future of Medical Education in Canada Project Update +110755,Other,Health human resources observatory +110755,Other,Health Research Action Plan for Canada +110755,Other,Medical Education Innovation Fund +110755,Other,Visa Trainees +145866,Fisheries,Fisheries +135014,Justice and Law Enforcement,Justice and Law Enforcement +272249,Regional Development,Développement régional +272249,Environment,Environnement +272249,Industry,Industrie +272249,Mining,Mines +111318,Other,Economy +111316,Other,Economy +531130,International Relations,International Relations +127394,International Trade,International Trade +401933,Agriculture,Agriculture +401925,International Trade,International Trade +424836,Taxation and Finance,Taxation and Finance +140256,Energy,Energy +140256,Environment,Environment +140256,Regional Development,Regional Development +445264,Employment and Training,Employment and Training +477065,Health,Health +146494,Other,Hunger and Food Bank Use in Canada +250305,Labour,Labour +119114,Health,Health +272710,Taxation and Finance,Impôts et finances +188667,Consumer Issues,Consumer Issues +307049,Health,Health +325869,Taxation and Finance,Taxation and Finance +111314,Other,Northern Development +111315,Other,Economy +134960,Other,Northern Development +120315,Infrastructure,Infrastructure +111154,Other,Co-operative Development Initiative +223687,Government Procurement,Government Procurement +278150,Infrastructure,Infrastructure +223687,Regional Development,Regional Development +223687,Transportation,Transportation +147175,Other,Climate Change +147175,Energy,Energy +111757,Environment,Environment +118166,Infrastructure,Infrastructure +118166,Regional Development,Regional Development +118834,Other,Traceability and Recalls +111236,Other,food regulatory system +405444,Education,Education +111239,Other,Recalls and Traceability +141156,Other,Product Recalls +111240,Other,Product Recalls +111241,Other,"Public Safety and Emergency Preparedness, Traceability and Recalls" +133014,Other,Product Recalls and Traceability +111243,Other,"Healthcare, Product Recalls" +111244,Other,"Healthcare, Product Recalls" +111274,Agriculture,Agriculture +111314,Other,Infratstructure +111315,Other,Infrastructure +111315,Other,Innovation +111316,Other,Innovation +111318,Other,Innovation +111318,Other,Infrastructure +111318,Other,Northern Development +188245,Agriculture,Agriculture +197263,Financial Institutions,Financial Institutions +111416,Other,Major initiatives in Science and Technology +111417,Other,Canadian Media Fund +145241,Other,Copyright +135981,Other,Funding for cultural institutions +458952,Taxation and Finance,Taxation and Finance +418824,International Trade,International Trade +168797,Taxation and Finance,Taxation and Finance +145717,Health,Health +111474,Other,CF-18 OWSM & SESC +111475,Other,CF-18 OWSM & SESC +192244,International Trade,International Trade +111536,Other,CF-18 OWSM +111538,Other,Introduction L-3 MAS +111539,Other,CF-18 OWSM +111540,Other,CF-18 OWSM +373119,Tourism,Tourisme +131607,Transportation,Transportation +134195,Government Procurement,Government Procurement +116143,Industry,Industry +116143,Infrastructure,Infrastructure +116143,Transportation,Transportation +111677,Other,Foreign Affairs +145218,Other,Tourism Strategy +145216,Other,Tourism Strategy +134534,Other,Fuel Quality +111996,Other,Public Opinion Research by Government +135058,Other,Housing +138135,Other,ecoEnergy +112101,Other,ecoEnergy +112114,Other,amalgam +112114,Other,Fluoride +112114,Other,non-insured health benefits +129594,Other,Illegal Tobacco and Cigarette Trade +142449,Other,Pilotage Regulations and Certification +117694,Transportation,Transportation +142237,Other,"Ongoing spectrum policy reviews, in relation to CWTA recommendations" +112695,Other,"Bill C-37, Electronic Commerce Protection Act, in relation to CWTA recommendations" +143134,Other,Food Safety +114934,Energy,Energy +116074,Financial Institutions,Financial Institutions +112847,Other,Canadian industry participation on current military government procurements +112854,Other,OTSP Program and CH47 +112875,Other,Bill C-32 An Act to amend the Tobacco Act +112876,Other,OTSP and CH47 +112901,Other,2010 Winter Olympics +112914,Other,2010 Winter Olympics +112934,Other,Credit Card Regulations +112935,Other,Credit Card Regulations +201116,Employment and Training,Employment and Training +163997,Other,Foreign Affairs +113114,Other,Bill C-51 +113179,Other,Mining +113217,Other,Energy regulation +113221,Other,Energy regulation +113223,Other,Energy regulation +113440,Other,Energy policy +113294,Other,Energy Pipeline Construction in New Brunswick +113296,Other,Energy Pipeline Construction in NB +145830,Education,Education +113374,Other,Rail Service Review +113399,Other,"Building a strategic, long-term relationship between municipal government and CIDA" +134555,Other,Building relationships between municipal government and CIDA +113400,Other,Building relationship between municipal government and CIDA +113420,Other,Customs & Border Services Issues +141254,Other,Passenger Facilitation Issues +115834,Other,Access to Capital +113442,Other,Air cargo issues +113456,Other,Alaska Pipeline Project +113459,Other,Alaska Pipeline Project +113458,Other,Alaska Pipeline Project +113460,Other,Alaska Pipeline Project +113461,Other,Alaska Pipeline Project +113479,Other,Regulations +113482,Other,Pensions +113484,Other,Pensions +113485,Other,Gateway +113485,Other,Pensions +113486,Other,Pensions +113494,Other,Cancer Patient Services +113515,Industry,Industry +113498,Other,Bill C-32 +113515,Other,ARP +113535,Other,Health research +113535,Other,Health research +113594,Other,International Relations +120316,Infrastructure,Infrastructure +113555,Other,Employment Insurance; Changes +146156,Government Procurement,Government Procurement +117568,Tourism,Tourisme +113496,Other,Bill C-32 +113497,Other,Bill C-32 +113840,Other,Bill C-32 +113856,Other,Tourism +113861,Other,Heritage Committee Report +113858,Other,Customs and Border Services Issues +113863,Other,Canadian Content and Program Funding +113876,Other,Industry access to capital +113877,Other,DFAITC programs and services +113877,Other,support for Canadian Exporters in global markets +113878,Other,Industry access to capital +113879,Other,Concerns on proposed importer admissibility data requirements +114314,Other,Industry access to capital +113896,Other,Industry access to capital +113895,Other,Tourism marketing +113900,Other,Cairns Group +113898,Other,Canada Border Services Agency (CBSA) Core Services Review and applicability of policy going forward and priorities vis a vis border issues at airports +113905,Other,Cairns Group +113909,Other,Briefing on transportation of natural resource products +113912,Other,General transportation policy and training opportunities +113938,Other,Religious Freedom - Egypt +347374,Education,Education +347369,Education,Education +335965,Education,Education +335963,Education,Education +335959,Education,Education +333255,Education,Education +329811,Education,Education +290329,Education,Education +539597,Education,Education +539596,Education,Education +514719,Education,Education +508422,Education,Education +508415,Education,Education +498881,Education,Education +498779,Education,Education +495331,Education,Education +493552,Education,Education +493546,Education,Education +493540,Education,Education +491021,Education,Education +490988,Education,Education +487314,Education,Education +487312,Education,Education +484711,Education,Education +484708,Education,Education +484707,Education,Education +484706,Education,Education +481791,Education,Education +481784,Education,Education +479724,Education,Education +479723,Education,Education +475301,Education,Education +472827,Education,Education +467457,Education,Education +467429,Education,Education +462516,Education,Education +461565,Education,Education +461564,Education,Education +460563,Education,Education +460032,Education,Education +460030,Education,Education +459487,Education,Education +455141,Education,Education +435612,Education,Education +406872,Education,Education +136534,Other,Product Recalls +111237,Other,Product Recalls +141155,Other,Product Recalls +141154,Other,Product Recalls +126554,Other,Product Recalls and Traceability +111242,Other,Product Recalls and Traceability +175739,Agriculture,Agriculture +174866,Agriculture,Agriculture +197263,Agriculture,Agriculture +197262,Agriculture,Agriculture +192030,Agriculture,Agriculture +197262,Financial Institutions,Financial Institutions +111417,Other,Copyright +111417,Other,Funding for cultural institutions +161947,Other,Funding for cultural institutions +145241,Other,Funding for cultural institutions +458446,Taxation and Finance,Taxation and Finance +449062,Taxation and Finance,Taxation and Finance +111417,Taxation and Finance,Taxation and Finance +200006,Taxation and Finance,Taxation and Finance +200004,Taxation and Finance,Taxation and Finance +200003,Taxation and Finance,Taxation and Finance +200000,Taxation and Finance,Taxation and Finance +199999,Taxation and Finance,Taxation and Finance +199996,Taxation and Finance,Taxation and Finance +199994,Taxation and Finance,Taxation and Finance +199990,Taxation and Finance,Taxation and Finance +199987,Taxation and Finance,Taxation and Finance +199873,Taxation and Finance,Taxation and Finance +199872,Taxation and Finance,Taxation and Finance +199869,Taxation and Finance,Taxation and Finance +198428,Taxation and Finance,Taxation and Finance +198407,Taxation and Finance,Taxation and Finance +198308,Taxation and Finance,Taxation and Finance +196531,Taxation and Finance,Taxation and Finance +161964,Taxation and Finance,Taxation and Finance +161960,Taxation and Finance,Taxation and Finance +161947,Taxation and Finance,Taxation and Finance +135981,Taxation and Finance,Taxation and Finance +135704,Taxation and Finance,Taxation and Finance +314166,Taxation and Finance,Taxation and Finance +314165,Taxation and Finance,Taxation and Finance +314163,Taxation and Finance,Taxation and Finance +314162,Taxation and Finance,Taxation and Finance +314161,Taxation and Finance,Taxation and Finance +314160,Taxation and Finance,Taxation and Finance +314159,Taxation and Finance,Taxation and Finance +314158,Taxation and Finance,Taxation and Finance +314157,Taxation and Finance,Taxation and Finance +314155,Taxation and Finance,Taxation and Finance +314154,Taxation and Finance,Taxation and Finance +314153,Taxation and Finance,Taxation and Finance +314152,Taxation and Finance,Taxation and Finance +314151,Taxation and Finance,Taxation and Finance +314150,Taxation and Finance,Taxation and Finance +314149,Taxation and Finance,Taxation and Finance +264771,Taxation and Finance,Taxation and Finance +244800,Taxation and Finance,Taxation and Finance +244799,Taxation and Finance,Taxation and Finance +244798,Taxation and Finance,Taxation and Finance +244796,Taxation and Finance,Taxation and Finance +244795,Taxation and Finance,Taxation and Finance +244794,Taxation and Finance,Taxation and Finance +244791,Taxation and Finance,Taxation and Finance +244788,Taxation and Finance,Taxation and Finance +244784,Taxation and Finance,Taxation and Finance +244782,Taxation and Finance,Taxation and Finance +244779,Taxation and Finance,Taxation and Finance +244778,Taxation and Finance,Taxation and Finance +244758,Taxation and Finance,Taxation and Finance +244745,Taxation and Finance,Taxation and Finance +244742,Taxation and Finance,Taxation and Finance +244741,Taxation and Finance,Taxation and Finance +244677,Taxation and Finance,Taxation and Finance +244675,Taxation and Finance,Taxation and Finance +244673,Taxation and Finance,Taxation and Finance +244672,Taxation and Finance,Taxation and Finance +244669,Taxation and Finance,Taxation and Finance +244668,Taxation and Finance,Taxation and Finance +244667,Taxation and Finance,Taxation and Finance +244666,Taxation and Finance,Taxation and Finance +244665,Taxation and Finance,Taxation and Finance +244664,Taxation and Finance,Taxation and Finance +244662,Taxation and Finance,Taxation and Finance +244661,Taxation and Finance,Taxation and Finance +244660,Taxation and Finance,Taxation and Finance +244658,Taxation and Finance,Taxation and Finance +244657,Taxation and Finance,Taxation and Finance +242909,Taxation and Finance,Taxation and Finance +234430,Taxation and Finance,Taxation and Finance +234429,Taxation and Finance,Taxation and Finance +200007,Taxation and Finance,Taxation and Finance +370868,Taxation and Finance,Taxation and Finance +370867,Taxation and Finance,Taxation and Finance +370860,Taxation and Finance,Taxation and Finance +370859,Taxation and Finance,Taxation and Finance +370858,Taxation and Finance,Taxation and Finance +370857,Taxation and Finance,Taxation and Finance +370856,Taxation and Finance,Taxation and Finance +370855,Taxation and Finance,Taxation and Finance +370854,Taxation and Finance,Taxation and Finance +370853,Taxation and Finance,Taxation and Finance +370852,Taxation and Finance,Taxation and Finance +370851,Taxation and Finance,Taxation and Finance +370850,Taxation and Finance,Taxation and Finance +370849,Taxation and Finance,Taxation and Finance +370848,Taxation and Finance,Taxation and Finance +370847,Taxation and Finance,Taxation and Finance +370846,Taxation and Finance,Taxation and Finance +370845,Taxation and Finance,Taxation and Finance +370844,Taxation and Finance,Taxation and Finance +370843,Taxation and Finance,Taxation and Finance +370841,Taxation and Finance,Taxation and Finance +370840,Taxation and Finance,Taxation and Finance +370839,Taxation and Finance,Taxation and Finance +370838,Taxation and Finance,Taxation and Finance +370837,Taxation and Finance,Taxation and Finance +370836,Taxation and Finance,Taxation and Finance +370834,Taxation and Finance,Taxation and Finance +370832,Taxation and Finance,Taxation and Finance +370831,Taxation and Finance,Taxation and Finance +370827,Taxation and Finance,Taxation and Finance +370825,Taxation and Finance,Taxation and Finance +370824,Taxation and Finance,Taxation and Finance +343520,Taxation and Finance,Taxation and Finance +343519,Taxation and Finance,Taxation and Finance +343518,Taxation and Finance,Taxation and Finance +343517,Taxation and Finance,Taxation and Finance +343516,Taxation and Finance,Taxation and Finance +343515,Taxation and Finance,Taxation and Finance +343514,Taxation and Finance,Taxation and Finance +343512,Taxation and Finance,Taxation and Finance +343511,Taxation and Finance,Taxation and Finance +343510,Taxation and Finance,Taxation and Finance +343509,Taxation and Finance,Taxation and Finance +343508,Taxation and Finance,Taxation and Finance +343507,Taxation and Finance,Taxation and Finance +343506,Taxation and Finance,Taxation and Finance +343505,Taxation and Finance,Taxation and Finance +343504,Taxation and Finance,Taxation and Finance +343503,Taxation and Finance,Taxation and Finance +343502,Taxation and Finance,Taxation and Finance +343501,Taxation and Finance,Taxation and Finance +343500,Taxation and Finance,Taxation and Finance +343499,Taxation and Finance,Taxation and Finance +343498,Taxation and Finance,Taxation and Finance +343497,Taxation and Finance,Taxation and Finance +343496,Taxation and Finance,Taxation and Finance +343494,Taxation and Finance,Taxation and Finance +343493,Taxation and Finance,Taxation and Finance +343492,Taxation and Finance,Taxation and Finance +343491,Taxation and Finance,Taxation and Finance +343490,Taxation and Finance,Taxation and Finance +343489,Taxation and Finance,Taxation and Finance +343488,Taxation and Finance,Taxation and Finance +343487,Taxation and Finance,Taxation and Finance +343486,Taxation and Finance,Taxation and Finance +343485,Taxation and Finance,Taxation and Finance +343484,Taxation and Finance,Taxation and Finance +343482,Taxation and Finance,Taxation and Finance +318439,Taxation and Finance,Taxation and Finance +314219,Taxation and Finance,Taxation and Finance +314218,Taxation and Finance,Taxation and Finance +314215,Taxation and Finance,Taxation and Finance +314213,Taxation and Finance,Taxation and Finance +314211,Taxation and Finance,Taxation and Finance +314210,Taxation and Finance,Taxation and Finance +314209,Taxation and Finance,Taxation and Finance +314176,Taxation and Finance,Taxation and Finance +314175,Taxation and Finance,Taxation and Finance +314174,Taxation and Finance,Taxation and Finance +314173,Taxation and Finance,Taxation and Finance +314172,Taxation and Finance,Taxation and Finance +314171,Taxation and Finance,Taxation and Finance +314170,Taxation and Finance,Taxation and Finance +314169,Taxation and Finance,Taxation and Finance +314168,Taxation and Finance,Taxation and Finance +314167,Taxation and Finance,Taxation and Finance +496295,Taxation and Finance,Taxation and Finance +492062,Taxation and Finance,Taxation and Finance +488033,Taxation and Finance,Taxation and Finance +485078,Taxation and Finance,Taxation and Finance +478678,Taxation and Finance,Taxation and Finance +476547,Taxation and Finance,Taxation and Finance +476546,Taxation and Finance,Taxation and Finance +411036,International Trade,International Trade +403766,International Trade,International Trade +354014,International Trade,International Trade +354007,International Trade,International Trade +354006,International Trade,International Trade +259417,International Trade,International Trade +171506,International Trade,International Trade +171505,International Trade,International Trade +168797,International Trade,International Trade +418843,International Trade,International Trade +171506,Taxation and Finance,Taxation and Finance +171505,Taxation and Finance,Taxation and Finance +145716,Health,Health +192227,International Trade,International Trade +192246,International Trade,International Trade +192245,International Trade,International Trade +373116,Tourism,Tourisme +373115,Tourism,Tourisme +132983,Tourism,Tourisme +284920,Tourism,Tourisme +284917,Tourism,Tourisme +284911,Tourism,Tourisme +284809,Tourism,Tourisme +224897,Tourism,Tourisme +224895,Tourism,Tourisme +224890,Tourism,Tourisme +224888,Tourism,Tourisme +224887,Tourism,Tourisme +224851,Tourism,Tourisme +111654,Transportation,Transportation +141784,Transportation,Transportation +135710,Transportation,Transportation +131611,Transportation,Transportation +131608,Transportation,Transportation +112734,Industry,Industry +112734,Infrastructure,Infrastructure +112734,Transportation,Transportation +145217,Other,Tourism Strategy +145215,Other,Tourism Strategy +111794,Other,Tourism Strategy +145219,Other,Tourism Strategy +111894,Other,Tourism Strategy +111914,Other,Fuel Quality +147303,Other,Fuel Quality +116756,Other,Housing +116755,Other,Housing +116754,Other,Housing +112100,Other,ecoEnergy +114034,Other,Illegal Tobacco and Cigarette Trade +142235,Other,"Ongoing spectrum policy reviews, in relation to CWTA recommendations" +112695,Other,"Ongoing spectrum policy reviews, in relation to CWTA recommendations" +142240,Other,"Ongoing spectrum policy reviews, in relation to CWTA recommendations" +142239,Other,"Ongoing spectrum policy reviews, in relation to CWTA recommendations" +125040,Other,Food Safety +117663,Other,Food Safety +143154,Other,Food Safety +423958,Employment and Training,Employment and Training +423944,Employment and Training,Employment and Training +168820,Employment and Training,Employment and Training +212508,Employment and Training,Employment and Training +163899,Other,Foreign Affairs +145828,Education,Education +113314,Education,Education +134554,Other,Building relationships between municipal government and CIDA +113399,Other,Building relationships between municipal government and CIDA +141054,Other,Passenger Facilitation Issues +113420,Other,Passenger Facilitation Issues +113438,Other,Access to Capital +113435,Other,Access to Capital +133780,Other,Alaska Pipeline Project +131599,Other,Alaska Pipeline Project +128035,Other,Alaska Pipeline Project +113575,Other,International Relations +124138,Other,Employment Insurance; Changes +124134,Other,Employment Insurance; Changes +119578,Other,Employment Insurance; Changes +115036,Tourism,Tourisme +113936,Other,Religious Freedom - Egypt +124859,Other,Bill C-32 +125115,Other,Bill C-32 +114098,International Trade,International Trade +396626,International Relations,International Relations +396606,International Relations,International Relations +114127,International Relations,International Relations +421929,Agriculture,Agriculture +399212,Agriculture,Agriculture +114176,Agriculture,Agriculture +114147,Agriculture,Agriculture +230829,Agriculture,Agriculture +226452,Agriculture,Agriculture +198747,Agriculture,Agriculture +198689,Agriculture,Agriculture +198687,Agriculture,Agriculture +198627,Agriculture,Agriculture +340632,Agriculture,Agriculture +340630,Agriculture,Agriculture +335968,Agriculture,Agriculture +333179,Agriculture,Agriculture +324277,Agriculture,Agriculture +302030,Agriculture,Agriculture +302029,Agriculture,Agriculture +286879,Agriculture,Agriculture +277109,Agriculture,Agriculture +269572,Agriculture,Agriculture +253629,Agriculture,Agriculture +368888,Agriculture,Agriculture +368887,Agriculture,Agriculture +354077,Agriculture,Agriculture +354071,Agriculture,Agriculture +541722,Agriculture,Agriculture +468700,Agriculture,Agriculture +458883,Agriculture,Agriculture +448176,Agriculture,Agriculture +445770,Agriculture,Agriculture +445757,Agriculture,Agriculture +540116,Industry,Industry +540108,Industry,Industry +149316,Industry,Industry +125296,Industry,Industry +114167,Industry,Industry +312711,Industry,Industry +308989,Industry,Industry +302030,Industry,Industry +302029,Industry,Industry +289531,Industry,Industry +289529,Industry,Industry +286879,Industry,Industry +277109,Industry,Industry +269576,Industry,Industry +269572,Industry,Industry +253629,Industry,Industry +247050,Industry,Industry +237389,Industry,Industry +230829,Industry,Industry +163623,Industry,Industry +149317,Industry,Industry +424213,Industry,Industry +424194,Industry,Industry +421928,Industry,Industry +418799,Industry,Industry +354081,Industry,Industry +354077,Industry,Industry +354071,Industry,Industry +349144,Industry,Industry +344140,Industry,Industry +344138,Industry,Industry +340632,Industry,Industry +340630,Industry,Industry +335968,Industry,Industry +333179,Industry,Industry +315716,Industry,Industry +315715,Industry,Industry +315711,Industry,Industry +491384,Industry,Industry +491378,Industry,Industry +468700,Industry,Industry +468057,Industry,Industry +460191,Industry,Industry +460189,Industry,Industry +460188,Industry,Industry +459637,Industry,Industry +459636,Industry,Industry +458885,Industry,Industry +458883,Industry,Industry +454824,Industry,Industry +454821,Industry,Industry +454820,Industry,Industry +448173,Industry,Industry +445775,Industry,Industry +445774,Industry,Industry +445772,Industry,Industry +445762,Industry,Industry +445759,Industry,Industry +445758,Industry,Industry +445757,Industry,Industry +445756,Industry,Industry +444308,Industry,Industry +442993,Industry,Industry +436896,Industry,Industry +428060,Industry,Industry +541728,Industry,Industry +142835,Other,Natural Resources +117917,Other,Food Mail Policy +117916,Other,Food Mail Policy +114434,Other,CWB +161402,Other,CWB +158029,Other,CWB +145960,Other,Food Safety +145959,Other,Food Safety +144815,Other,Food Safety +144794,Other,Food Safety +144775,Other,Food Safety +129617,Other,Food Safety +114434,Other,Food Safety +161402,Other,Food Safety +115614,Other,National Traceability +114434,Other,National Traceability +158029,Other,National Traceability +156264,Other,National Traceability +156263,Other,National Traceability +156263,Other,Priority Beef Markets +156262,Other,Priority Beef Markets +114434,Other,Priority Beef Markets +166289,Industry,Industry +158858,Industry,Industry +149436,Industry,Industry +224528,Industry,Industry +209625,Industry,Industry +146205,Other,Security of communications networks +366730,Industry,Industry +365189,Industry,Industry +117644,Industry,Industry +117630,Industry,Industry +117629,Industry,Industry +117628,Industry,Industry +117617,Industry,Industry +153936,Industry,Industry +151182,Industry,Industry +128594,Industry,Industry +122274,Industry,Industry +117648,Industry,Industry +117646,Industry,Industry +223159,Industry,Industry +223154,Industry,Industry +217688,Industry,Industry +217668,Industry,Industry +216747,Industry,Industry +216729,Industry,Industry +216728,Industry,Industry +216727,Industry,Industry +197471,Industry,Industry +197463,Industry,Industry +197457,Industry,Industry +192874,Industry,Industry +188977,Industry,Industry +188975,Industry,Industry +188840,Industry,Industry +188837,Industry,Industry +187789,Industry,Industry +187787,Industry,Industry +187786,Industry,Industry +187785,Industry,Industry +180744,Industry,Industry +170004,Industry,Industry +223160,Industry,Industry +393889,Industry,Industry +382279,Industry,Industry +381236,Industry,Industry +381235,Industry,Industry +381232,Industry,Industry +379534,Industry,Industry +379531,Industry,Industry +114454,Other,Pesticide Registration pertaining to Empty Pesticide Container Program +114459,Other,Confined Field Trials +114455,Other,Confined Field Trials +114459,Other,Plant Made Industrial Products +114455,Other,Plant Made Industrial Products +146077,Other,Plant Made Industrial Products +151777,Consumer Issues,Consumer Issues +151777,Infrastructure,Infrastructure +118715,Regional Development,Regional Development +118714,Regional Development,Regional Development +151777,Regional Development,Regional Development +151777,Sports,Sports +118714,Sports,Sports +153186,Sports,Sports +153183,Sports,Sports +153181,Sports,Sports +153101,Sports,Sports +152164,Tourism,Tourism +151777,Tourism,Tourism +156172,Other,Awareness of StandardAero Capabilities +156171,Other,Awareness of StandardAero Capabilities +156170,Other,Awareness of StandardAero Capabilities +152564,Other,Awareness of StandardAero Capabilities +152563,Other,Awareness of StandardAero Capabilities +151253,Other,Awareness of StandardAero Capabilities +117194,Agriculture,Agriculture +163633,Health,Health +148537,Health,Health +117196,Health,Health +163634,Industry,Industry +163633,Industry,Industry +117196,Industry,Industry +163634,International Relations,International Relations +163633,International Relations,International Relations +148537,International Relations,International Relations +148537,Mining,Mining +126834,Health,Health +117195,Health,Health +126834,International Relations,International Relations +117195,International Relations,International Relations +121164,Infrastructure,Infrastructure +330130,Infrastructure,Infrastructure +330129,Infrastructure,Infrastructure +121124,Infrastructure,Infrastructure +121114,Employment and Training,Employment and Training +372711,Energy,Energy +372709,Energy,Energy +153381,Energy,Energy +150217,Energy,Energy +148228,Energy,Energy +148188,Energy,Energy +125295,Energy,Energy +122115,Energy,Energy +117734,Energy,Energy +202962,Energy,Energy +202961,Energy,Energy +202960,Energy,Energy +202959,Energy,Energy +202958,Energy,Energy +175486,Energy,Energy +175485,Energy,Energy +175483,Energy,Energy +175482,Energy,Energy +175481,Energy,Energy +175476,Energy,Energy +164032,Energy,Energy +164031,Energy,Energy +164030,Energy,Energy +164026,Energy,Energy +153425,Energy,Energy +361251,Energy,Energy +327702,Energy,Energy +327700,Energy,Energy +327695,Energy,Energy +327693,Energy,Energy +327689,Energy,Energy +304255,Energy,Energy +304252,Energy,Energy +280229,Energy,Energy +277412,Energy,Energy +277411,Energy,Energy +277410,Energy,Energy +277409,Energy,Energy +277408,Energy,Energy +277407,Energy,Energy +273593,Energy,Energy +241287,Energy,Energy +241285,Energy,Energy +241282,Energy,Energy +241280,Energy,Energy +218287,Energy,Energy +202963,Energy,Energy +439132,Energy,Energy +439129,Energy,Energy +439124,Energy,Energy +439120,Energy,Energy +439104,Energy,Energy +439101,Energy,Energy +436592,Energy,Energy +434288,Energy,Energy +434249,Energy,Energy +434247,Energy,Energy +434246,Energy,Energy +433733,Energy,Energy +432953,Energy,Energy +432946,Energy,Energy +432937,Energy,Energy +432936,Energy,Energy +429400,Energy,Energy +399082,Energy,Energy +399081,Energy,Energy +396915,Energy,Energy +394400,Energy,Energy +391485,Energy,Energy +391469,Energy,Energy +377218,Energy,Energy +374947,Energy,Energy +372717,Energy,Energy +122115,Other,Research/R&D +117734,Other,Research/R&D +117275,Transportation,Transportation +117274,Transportation,Transportation +117278,Transportation,Transportation +117277,Transportation,Transportation +304189,Industry,Industry +304169,Industry,Industry +230391,Transportation,Transportation +230390,Transportation,Transportation +193904,Transportation,Transportation +304189,Transportation,Transportation +304169,Transportation,Transportation +117696,Other,Telecommunications +377549,Infrastructure,Infrastructure +375721,Infrastructure,Infrastructure +399619,Infrastructure,Infrastructure +397462,Infrastructure,Infrastructure +380511,Infrastructure,Infrastructure +381740,Energy,Energy +340441,Energy,Energy +121302,Energy,Energy +192028,Energy,Energy +174087,Energy,Energy +442944,Energy,Energy +442943,Energy,Energy +192028,Environment,Environment +340441,Environment,Environment +121298,Infrastructure,Infrastructure +117914,Infrastructure,Infrastructure +117914,Mining,Mining +117914,Regional Development,Regional Development +115634,Other,Bill C-46 (Investigative Powers for the 21st Century Act) and Bill C-47 (Technical Assistance for Law Enforcement Act) +369273,Energy,Energy +369272,Energy,Energy +115696,Energy,Energy +115695,Energy,Energy +115694,Energy,Energy +203287,Energy,Energy +203268,Energy,Energy +193130,Energy,Energy +193129,Energy,Energy +193127,Energy,Energy +193125,Energy,Energy +193124,Energy,Energy +118878,Energy,Energy +118877,Energy,Energy +118876,Energy,Energy +115703,Energy,Energy +115702,Energy,Energy +115701,Energy,Energy +115700,Energy,Energy +115699,Energy,Energy +115698,Energy,Energy +115697,Energy,Energy +277238,Energy,Energy +277237,Energy,Energy +277236,Energy,Energy +277234,Energy,Energy +273027,Energy,Energy +273026,Energy,Energy +273025,Energy,Energy +273024,Energy,Energy +273022,Energy,Energy +273021,Energy,Energy +273020,Energy,Energy +273019,Energy,Energy +273016,Energy,Energy +273015,Energy,Energy +273014,Energy,Energy +268604,Energy,Energy +267889,Energy,Energy +263782,Energy,Energy +258409,Energy,Energy +258093,Energy,Energy +258092,Energy,Energy +255073,Energy,Energy +255072,Energy,Energy +255071,Energy,Energy +255070,Energy,Energy +255069,Energy,Energy +255009,Energy,Energy +254995,Energy,Energy +254994,Energy,Energy +254993,Energy,Energy +254992,Energy,Energy +254991,Energy,Energy +254990,Energy,Energy +254989,Energy,Energy +254969,Energy,Energy +254404,Energy,Energy +254402,Energy,Energy +254400,Energy,Energy +254398,Energy,Energy +254395,Energy,Energy +254393,Energy,Energy +254392,Energy,Energy +254391,Energy,Energy +254390,Energy,Energy +254389,Energy,Energy +254375,Energy,Energy +211956,Energy,Energy +211951,Energy,Energy +205873,Energy,Energy +205869,Energy,Energy +205867,Energy,Energy +366587,Energy,Energy +366585,Energy,Energy +362247,Energy,Energy +362246,Energy,Energy +355999,Energy,Energy +355995,Energy,Energy +352563,Energy,Energy +352562,Energy,Energy +349264,Energy,Energy +347366,Energy,Energy +341361,Energy,Energy +338409,Energy,Energy +338408,Energy,Energy +338407,Energy,Energy +338406,Energy,Energy +338405,Energy,Energy +338404,Energy,Energy +338403,Energy,Energy +338402,Energy,Energy +338401,Energy,Energy +338400,Energy,Energy +335720,Energy,Energy +335573,Energy,Energy +335571,Energy,Energy +335570,Energy,Energy +335566,Energy,Energy +333297,Energy,Energy +333296,Energy,Energy +333295,Energy,Energy +331889,Energy,Energy +331507,Energy,Energy +331504,Energy,Energy +331502,Energy,Energy +331501,Energy,Energy +331500,Energy,Energy +329739,Energy,Energy +329736,Energy,Energy +329734,Energy,Energy +327762,Energy,Energy +327758,Energy,Energy +324834,Energy,Energy +324833,Energy,Energy +324832,Energy,Energy +324831,Energy,Energy +324830,Energy,Energy +324829,Energy,Energy +324809,Energy,Energy +324795,Energy,Energy +319238,Energy,Energy +319237,Energy,Energy +319236,Energy,Energy +315905,Energy,Energy +313472,Energy,Energy +312902,Energy,Energy +312900,Energy,Energy +312898,Energy,Energy +312569,Energy,Energy +312452,Energy,Energy +312451,Energy,Energy +312450,Energy,Energy +310426,Energy,Energy +310422,Energy,Energy +303378,Energy,Energy +303360,Energy,Energy +303359,Energy,Energy +303355,Energy,Energy +303350,Energy,Energy +296176,Energy,Energy +296174,Energy,Energy +290702,Energy,Energy +286613,Energy,Energy +286372,Energy,Energy +286371,Energy,Energy +281110,Energy,Energy +281107,Energy,Energy +281106,Energy,Energy +281105,Energy,Energy +281104,Energy,Energy +281103,Energy,Energy +281102,Energy,Energy +426168,Energy,Energy +423567,Energy,Energy +423566,Energy,Energy +423565,Energy,Energy +422565,Energy,Energy +422562,Energy,Energy +422561,Energy,Energy +422559,Energy,Energy +422546,Energy,Energy +422543,Energy,Energy +416287,Energy,Energy +409969,Energy,Energy +409968,Energy,Energy +409967,Energy,Energy +409966,Energy,Energy +407962,Energy,Energy +407959,Energy,Energy +406738,Energy,Energy +406737,Energy,Energy +406736,Energy,Energy +405648,Energy,Energy +405647,Energy,Energy +405639,Energy,Energy +403416,Energy,Energy +403414,Energy,Energy +403412,Energy,Energy +403410,Energy,Energy +400473,Energy,Energy +398952,Energy,Energy +398924,Energy,Energy +396292,Energy,Energy +396286,Energy,Energy +394119,Energy,Energy +392709,Energy,Energy +392708,Energy,Energy +391544,Energy,Energy +391543,Energy,Energy +391538,Energy,Energy +391532,Energy,Energy +387930,Energy,Energy +387928,Energy,Energy +387926,Energy,Energy +387924,Energy,Energy +385762,Energy,Energy +385761,Energy,Energy +383548,Energy,Energy +383544,Energy,Energy +383541,Energy,Energy +383538,Energy,Energy +381396,Energy,Energy +379475,Energy,Energy +379418,Energy,Energy +379413,Energy,Energy +379407,Energy,Energy +379392,Energy,Energy +379389,Energy,Energy +379378,Energy,Energy +379374,Energy,Energy +373817,Energy,Energy +373816,Energy,Energy +372256,Energy,Energy +372237,Energy,Energy +372232,Energy,Energy +372231,Energy,Energy +372229,Energy,Energy +372227,Energy,Energy +372225,Energy,Energy +372223,Energy,Energy +369277,Energy,Energy +324832,Environment,Environment +324831,Environment,Environment +211956,Environment,Environment +211951,Environment,Environment +205871,Environment,Environment +205869,Environment,Environment +203268,Environment,Environment +118878,Environment,Environment +118877,Environment,Environment +118876,Environment,Environment +115703,Environment,Environment +115702,Environment,Environment +115701,Environment,Environment +115700,Environment,Environment +115699,Environment,Environment +115698,Environment,Environment +115697,Environment,Environment +115696,Environment,Environment +115695,Environment,Environment +115694,Environment,Environment +324830,Environment,Environment +324829,Environment,Environment +324809,Environment,Environment +324795,Environment,Environment +315905,Environment,Environment +312902,Environment,Environment +312900,Environment,Environment +312569,Environment,Environment +312450,Environment,Environment +310426,Environment,Environment +303378,Environment,Environment +303359,Environment,Environment +303355,Environment,Environment +303350,Environment,Environment +296174,Environment,Environment +290702,Environment,Environment +286372,Environment,Environment +286371,Environment,Environment +273027,Environment,Environment +273026,Environment,Environment +273025,Environment,Environment +273024,Environment,Environment +273020,Environment,Environment +273019,Environment,Environment +273014,Environment,Environment +113974,Other,Bill C-32 +113976,Other,Bill C-32 +113982,Other,Bill C-32 +114013,Other,Aviation security; privacy rights +113985,Other,Exploration of potential Private / Public R&D Projects in the field of Plant Breeding and Seed Product Development +114019,Other,Aviation security; privacy rights +114022,Other,Privacy rights +114022,Other,Aviation security +115334,Other,Bill C-32 +114008,Other,"Canadian Regulatory Policy, International Trade" +125116,Other,Bill C-32 +125114,Other,Bill C-32 +114075,Other,Multicultural Banking +114074,Other,"Airport Rents, Federal Domestic Fuel Excise Tax" +114077,Other,Temporary Foreign Workers +114078,Other,Airports Rents and Federal Domestic Fuel Excise Tax +114085,Other,"US Secure Flight Initiative, Canada Border Services Agency consultations" +122836,Other,Chemical Management Plan +114094,Other,"US Secure Flight Initiative, Canada Border SErvice Agency consultations" +114099,Other,"US Secure Flight Initiative, Canada Border Security Agency consultations" +159382,International Trade,International Trade +114116,Other,Drinking during pregnancy (Fetal Alcohol Spectrum Disorder) +114116,Other,General overview of the Brewing Industry +114116,Other,Impaired Driving +114116,Other,National Alcohol Strategy +114124,Other,Drinking during pregnancy (Fetal Alcohol Spectrum Disorder) +114124,Other,General overview of the Brewing Industry +114124,Other,Impaired Driving +114124,Other,National Alcohol Strategy +114119,Other,Government leadership and improved departmental cooperation on illicit tobacco +217599,International Relations,International Relations +149238,Other,Briefing on the Canadian Space Program +114141,Health,Health +114154,Other,Toxic Substance Management and Environment +424209,Agriculture,Agriculture +541722,Industry,Industry +114179,Other,Industry access to capital +114178,Other,Data Protection Regulations +114178,Other,Financing for Emerging Biotech Companies +114178,Other,Right of Appeal +142840,Other,Natural Resources +114295,Other,Food Mail Policy +114296,Other,Food Mail Policy +114395,Other,Auto Package +114414,Other,Northern Infrastructure Investment +114415,Other,Non-Resident Ownership Policy +144814,Other,CWB +145962,Other,Food Safety +156262,Other,National Traceability +161402,Other,Priority Beef Markets +203797,Industry,Industry +114440,Other,Security of communications networks +376542,Industry,Industry +116038,Taxation and Finance,Taxation and Finance +135696,Other,Pesticide Registration pertaining to Empty Pesticide Container Program +114460,Other,Confined Field Trials +114455,Other,International Trade +114460,Other,Plant Made Industrial Products +114476,Other,RE: Nomination on the board of the Laurentian Pilotage Authority – support of the re-nomination of current Chair for another mandate. +114494,Other,1) Small ports security guards charges – request to stop billing ships. +114494,Other,2) Dredging at the port of Baie Comeau - request to have actual dredging matching published data +114494,Other,3) Regional port divestiture program - request that TC makes pressure to assure the presence of CBSA to process the clearance of passenger vessels +275412,Government Procurement,Government Procurement +114514,Other,Canada's trade remedy system +114515,Other,Canada's trade remedy system +114516,Other,Cornwall Border Crossing +114555,Industry,Industrie +114554,Other,human rights reforms within the Olympic movement +152164,Consumer Issues,Consumer Issues +151777,Industry,Industry +118714,Infrastructure,Infrastructure +118716,Regional Development,Regional Development +152164,Sports,Sports +151777,Taxation and Finance,Taxation and Finance +153101,Tourism,Tourism +114555,Other,Organiser rencontre pour client +114636,Other,International Operations Strategy +114694,Other,Awareness of StandardAero Capabilities +117214,Agriculture,Agriculture +117196,Agriculture,Agriculture +117196,Environment,Environment +163634,Health,Health +148537,Industry,Industry +117196,International Relations,International Relations +117196,Mining,Mining +117195,Agriculture,Agriculture +117195,Environment,Environment +148536,Health,Health +117195,Industry,Industry +148536,International Relations,International Relations +117195,Mining,Mining +114814,Other,Agriculture and International Trade +114815,Other,Agriculture and International Trade +123120,Infrastructure,Infrastructure +114854,Other,Shipping Industry issues +114894,Other,Marine Service Fees +114895,Other,Marine Industry in Canada +114914,Other,Human Resources +114994,Other,CF-18 OWSM +121123,Infrastructure,Infrastructure +119294,Other,CF-18 OWSM +114996,Other,Intro L-3 +121121,Employment and Training,Employment and Training +372715,Energy,Energy +117734,Other,Natural Resources +125295,Other,Research/R&D +115136,Other,Legislation +115137,Other,Legislation +117278,Industry,Industry +117276,Transportation,Transportation +193904,Employment and Training,Employment and Training +193904,Industry,Industry +230392,Transportation,Transportation +117699,Other,Telecommunications +172324,Industry,Industry +117713,Consumer Issues,Consumer Issues +159498,Taxation and Finance,Taxation and Finance +125066,Infrastructure,Infrastructure +125066,Regional Development,Regional Development +125066,Tourism,Tourism +377551,Infrastructure,Infrastructure +442941,Energy,Energy +121302,Environment,Environment +121300,Infrastructure,Infrastructure +115394,Other,Credit Cards Regulations and liquidity programs +115394,Financial Institutions,Financial Institutions +115474,Other,Airport competitiveness +115474,Other,Economic development (airports) +115474,Other,Regulatory burden (on airports) +115475,Other,Airport competitiveness +115475,Other,Economic development (airports) +115475,Other,Regulatory burden (on airports) +115495,Other,Foreign Trade Zones (FTZ) +115514,Other,Outcome of June 22 Ministerial Conference with information and communications technology leaders +118434,Other,International Development +115574,Other,Secure Channel +115575,Other,Secure Channel +115575,Other,Secure Channel +115576,Other,Secure Channel +117915,Infrastructure,Infrastructure +117915,Mining,Mining +117915,Regional Development,Regional Development +142234,Other,Bill C-46 (Investigative Powers for the 21st Century Act) and Bill C-47 (Technical Assistance for Law Enforcement Act) +369274,Energy,Energy +324833,Environment,Environment +115699,Fisheries,Fisheries +115696,Government Procurement,Government Procurement +338400,Industry,Industry +381396,Infrastructure,Infrastructure +115698,Other,Natural Resources +329734,Transportation,Transportation +124678,Financial Institutions,Financial Institutions +124678,Taxation and Finance,Taxation and Finance +117577,Other,Foreign Investment +117577,Industry,Industry +117577,Infrastructure,Infrastructure +117577,Other,National Security +117577,Other,Research and Development +117574,Other,Foreign Investment +117574,Industry,Industry +117574,Infrastructure,Infrastructure +117574,Other,National Security +117574,Other,Research and Development +454618,Infrastructure,Infrastructure +381408,Energy,Energy +135934,Other,Refugees - Iraq +115934,Other,Chiropractic Care +115975,Other,FPT Agriculture Ministers' Meeting +115978,Other,Canada-EU trade with respect to supply management and dairy +133254,Environment,Environment +121054,Forestry,Forestry +133254,Regional Development,Regional Development +133834,Other,Pre-market approvals +115996,Other,Transfat +115996,Other,Health claims +117527,Health,Health +116016,Other,Bill C-426 An Act to amend the Bank Act and other Acts (cost of borrowing for credit cards) +131820,Other,Credit card regulations +116016,Other,Senate Banking Committee recommendations regarding Canada's credit and debit card systems +160737,Other,Electronic waste +120695,Energy,Energy +120696,Environment,Environment +116064,Other,"Airport Rent Policy, regarding formula of calculation and its impact on airport finances" +116064,Other,National Airports Policy with respect to responsibility for aviation security +116064,Other,"Corporate Governance matters, regarding general operating by-laws" +116064,Other,"Regional Transportation Issues, regarding Toronto Pearson's role as a mobility hub" +116055,Other,National Airports Policy with respect to responsibility for aviation security +151620,Financial Institutions,Financial Institutions +116138,Other,Regulatory Issues +116143,Health,Health +116275,Government Procurement,Government Procurement +145713,Health,Health +333951,Infrastructure,Infrastructure +222487,Infrastructure,Infrastructure +119254,Other,Finance +119256,Industry,Industry +123903,Transportation,Transportation +135726,Environment,Environment +135726,Other,Finance +131674,Industry,Industry +135726,Transportation,Transportation +116314,Other,Fuel Quality +274909,Health,Health +116394,Other,infrastructure +116394,Other,infrastructure +116394,Other,infrastructure +116394,Other,infrastructure +116396,Other,infrastructure +116434,Other,Multicultural banking +128721,Other,Defence Procurement Policy with respect to increasing CDN content on various programs to be procured +135514,Other,Follow-up on OTSP +117678,Other,Industrial Regional Benefits (IRBs) +116494,Other,Gondola +116534,Other,EDC 10 year review +120760,Other,To discuss ecoEnergy for biofuels Program. +116656,Other,To discuss fueling the NRCan fleet with cellulosic ethanol. +128882,Other,To discuss the current status and future of Biofuels in Canada. +315009,Infrastructure,Infrastructure +315009,Tourism,Tourism +118374,Infrastructure,Infrastructure +116757,Other,Invite to Banff Forum event +125275,Other,Northern Development +116774,Other,Port issues +416598,Taxation and Finance,Taxation and Finance +116854,Other,Periodic updates on Wildlife Habitat Canada +157716,Health,Health +116877,Other,"Priorities for negotiating a resolution to Buy American, Status of federal-provincial talks on developing a negotiating proposal" +116879,Other,"Status of federal-provincial talks on developing a negotiating proposal on procurement with the United States, strategy for launching procurement negotiations with the United States" +116880,Other,"Status of federal-provincial talks on developing a negotiating proposal on procurement with the United States, strategy for launching procurement negotiations with the United States" +116882,Other,"Status of federal-provincial talks on developing a negotiating proposal on procurement with the United States, strategy for launching procurement negotiations with the United States" +116883,Other,"Status of federal-provincial talks on developing a negotiating proposal on procurement with the United States, strategy for launching procurement negotiations with the United States" +116884,Other,"Status of federal-provincial talks on developing a negotiating proposal on procurement with the United States, strategy for launching procurement negotiations with the United States" +116885,Other,"Status of federal-provincial talks on developing a negotiating proposal on procurement with the United States, strategy for launching procurement negotiations with the United States" +120037,Industry,Industry +120037,International Trade,International Trade +116934,Other,Initial Introduction to Canadian Rail Industry Priorities and Issues +117003,Other,Research funding +117006,Other,Research funding +128454,Health,Health +128454,Industry,Industry +117098,Other,National Pollutant Release Inventory (NPRI) +117100,Other,National Pollutant Release Inventory (NPRI) +142521,Other,National Pollutant Release Inventory (NPRI) +117108,Other,Research Awards and Scholarships +117375,Other,The future of the David Suzuki Foundation +117455,Other,Federal funding +117456,Other,ecoEnergy +117495,Energy,Energy +117494,Infrastructure,Infrastructure +117494,Other,State of the British Columbia Economy +117494,Taxation and Finance,Taxation and Finance +117578,Other,Broadcasting Licence Fee Regulations +117620,Other,Investment Canada Act +117636,Other,Investment Canada Act +117632,Other,Investment Canada Act +117633,Other,Investment Canada Act +117634,Other,Investment Canada Act +117637,Other,Investment Canada Act +117641,Other,Investment Canada Act +117645,Other,Investment Canada Act +117649,Other,Investment Canada Act +117640,Environment,Environment +117654,Other,Investment Canada Act +117665,Other,Investment Canada Act +117664,Other,International Development Policy in Africa +117670,Other,Investment Canada Act +383968,Taxation and Finance,Impôts et finances +145895,Other,CAE's work on CH-47 +117672,Other,Investment Canada Act +117674,Other,Investment Canada Act +117679,Other,Investment Canada Act +194969,Defence,Defence +237089,Regional Development,Regional Development +125141,Other,Government Procurement +410189,Taxation and Finance,Impôts et finances +372711,Industry,Industry +117734,Other,Regulatory Environment +117796,Infrastructure,Infrastructure +131296,Education,Education +131296,Environment,Environment +122686,Employment and Training,Emploi et formation +120215,Energy,Energy +120215,Environment,Environment +263782,Environment,Environment +258093,Environment,Environment +258092,Environment,Environment +255073,Environment,Environment +255072,Environment,Environment +255071,Environment,Environment +255069,Environment,Environment +255009,Environment,Environment +254995,Environment,Environment +254993,Environment,Environment +254991,Environment,Environment +254990,Environment,Environment +254404,Environment,Environment +254402,Environment,Environment +254400,Environment,Environment +254398,Environment,Environment +254395,Environment,Environment +254393,Environment,Environment +254392,Environment,Environment +254391,Environment,Environment +254390,Environment,Environment +254389,Environment,Environment +254375,Environment,Environment +426168,Environment,Environment +406736,Environment,Environment +403410,Environment,Environment +398924,Environment,Environment +391532,Environment,Environment +387930,Environment,Environment +387928,Environment,Environment +387926,Environment,Environment +387924,Environment,Environment +383544,Environment,Environment +383541,Environment,Environment +379374,Environment,Environment +373816,Environment,Environment +372232,Environment,Environment +369276,Environment,Environment +349264,Environment,Environment +338409,Environment,Environment +335573,Environment,Environment +335570,Environment,Environment +335566,Environment,Environment +331889,Environment,Environment +324809,Fisheries,Fisheries +205871,Fisheries,Fisheries +115695,Government Procurement,Government Procurement +115694,Government Procurement,Government Procurement +115698,Government Procurement,Government Procurement +115697,Government Procurement,Government Procurement +426168,Industry,Industry +416287,Industry,Industry +118878,Industry,Industry +118877,Industry,Industry +118876,Industry,Industry +115703,Industry,Industry +115702,Industry,Industry +115701,Industry,Industry +115700,Industry,Industry +115699,Industry,Industry +115698,Industry,Industry +115697,Industry,Industry +115696,Industry,Industry +115695,Industry,Industry +115694,Industry,Industry +335573,Industry,Industry +335570,Industry,Industry +335566,Industry,Industry +333295,Industry,Industry +329739,Industry,Industry +327762,Industry,Industry +324834,Industry,Industry +310422,Industry,Industry +273026,Industry,Industry +273020,Industry,Industry +267889,Industry,Industry +263782,Industry,Industry +254992,Industry,Industry +254991,Industry,Industry +254989,Industry,Industry +254392,Industry,Industry +205873,Industry,Industry +205871,Industry,Industry +205869,Industry,Industry +205867,Industry,Industry +193130,Industry,Industry +193129,Industry,Industry +193127,Industry,Industry +193125,Industry,Industry +193124,Industry,Industry +406736,Industry,Industry +405647,Industry,Industry +405639,Industry,Industry +387924,Industry,Industry +369277,Industry,Industry +366585,Industry,Industry +355995,Industry,Industry +379475,Infrastructure,Infrastructure +379418,Infrastructure,Infrastructure +115702,Infrastructure,Infrastructure +115701,Infrastructure,Infrastructure +115700,Infrastructure,Infrastructure +115699,Infrastructure,Infrastructure +115698,Infrastructure,Infrastructure +115697,Infrastructure,Infrastructure +115696,Infrastructure,Infrastructure +115695,Infrastructure,Infrastructure +115694,Infrastructure,Infrastructure +205869,Infrastructure,Infrastructure +205867,Infrastructure,Infrastructure +203287,Infrastructure,Infrastructure +203268,Infrastructure,Infrastructure +193130,Infrastructure,Infrastructure +193129,Infrastructure,Infrastructure +193127,Infrastructure,Infrastructure +193125,Infrastructure,Infrastructure +193124,Infrastructure,Infrastructure +258409,Infrastructure,Infrastructure +258093,Infrastructure,Infrastructure +258092,Infrastructure,Infrastructure +255073,Infrastructure,Infrastructure +255072,Infrastructure,Infrastructure +255071,Infrastructure,Infrastructure +255070,Infrastructure,Infrastructure +255069,Infrastructure,Infrastructure +255009,Infrastructure,Infrastructure +254995,Infrastructure,Infrastructure +254994,Infrastructure,Infrastructure +254993,Infrastructure,Infrastructure +254990,Infrastructure,Infrastructure +254989,Infrastructure,Infrastructure +254969,Infrastructure,Infrastructure +254404,Infrastructure,Infrastructure +254402,Infrastructure,Infrastructure +254400,Infrastructure,Infrastructure +254398,Infrastructure,Infrastructure +254395,Infrastructure,Infrastructure +254393,Infrastructure,Infrastructure +254391,Infrastructure,Infrastructure +254390,Infrastructure,Infrastructure +254389,Infrastructure,Infrastructure +254375,Infrastructure,Infrastructure +211956,Infrastructure,Infrastructure +211951,Infrastructure,Infrastructure +205873,Infrastructure,Infrastructure +205871,Infrastructure,Infrastructure +379413,Infrastructure,Infrastructure +379407,Infrastructure,Infrastructure +379392,Infrastructure,Infrastructure +379389,Infrastructure,Infrastructure +379378,Infrastructure,Infrastructure +379374,Infrastructure,Infrastructure +373817,Infrastructure,Infrastructure +373816,Infrastructure,Infrastructure +372256,Infrastructure,Infrastructure +372237,Infrastructure,Infrastructure +372232,Infrastructure,Infrastructure +372231,Infrastructure,Infrastructure +372229,Infrastructure,Infrastructure +372227,Infrastructure,Infrastructure +372225,Infrastructure,Infrastructure +372223,Infrastructure,Infrastructure +369276,Infrastructure,Infrastructure +369274,Infrastructure,Infrastructure +369273,Infrastructure,Infrastructure +369272,Infrastructure,Infrastructure +366587,Infrastructure,Infrastructure +366585,Infrastructure,Infrastructure +362247,Infrastructure,Infrastructure +362246,Infrastructure,Infrastructure +355999,Infrastructure,Infrastructure +355995,Infrastructure,Infrastructure +352563,Infrastructure,Infrastructure +352562,Infrastructure,Infrastructure +347366,Infrastructure,Infrastructure +338408,Infrastructure,Infrastructure +338407,Infrastructure,Infrastructure +338406,Infrastructure,Infrastructure +338405,Infrastructure,Infrastructure +338404,Infrastructure,Infrastructure +338403,Infrastructure,Infrastructure +338402,Infrastructure,Infrastructure +338401,Infrastructure,Infrastructure +338400,Infrastructure,Infrastructure +335720,Infrastructure,Infrastructure +335573,Infrastructure,Infrastructure +335571,Infrastructure,Infrastructure +335570,Infrastructure,Infrastructure +335566,Infrastructure,Infrastructure +333297,Infrastructure,Infrastructure +333296,Infrastructure,Infrastructure +331889,Infrastructure,Infrastructure +331507,Infrastructure,Infrastructure +331504,Infrastructure,Infrastructure +331502,Infrastructure,Infrastructure +331501,Infrastructure,Infrastructure +331500,Infrastructure,Infrastructure +329739,Infrastructure,Infrastructure +329736,Infrastructure,Infrastructure +329734,Infrastructure,Infrastructure +327762,Infrastructure,Infrastructure +327758,Infrastructure,Infrastructure +324833,Infrastructure,Infrastructure +324832,Infrastructure,Infrastructure +324831,Infrastructure,Infrastructure +324830,Infrastructure,Infrastructure +324829,Infrastructure,Infrastructure +324795,Infrastructure,Infrastructure +319238,Infrastructure,Infrastructure +319237,Infrastructure,Infrastructure +319236,Infrastructure,Infrastructure +315905,Infrastructure,Infrastructure +313472,Infrastructure,Infrastructure +312898,Infrastructure,Infrastructure +312451,Infrastructure,Infrastructure +310426,Infrastructure,Infrastructure +310422,Infrastructure,Infrastructure +303378,Infrastructure,Infrastructure +303359,Infrastructure,Infrastructure +303355,Infrastructure,Infrastructure +303350,Infrastructure,Infrastructure +296176,Infrastructure,Infrastructure +296174,Infrastructure,Infrastructure +290702,Infrastructure,Infrastructure +286613,Infrastructure,Infrastructure +286372,Infrastructure,Infrastructure +286371,Infrastructure,Infrastructure +281110,Infrastructure,Infrastructure +281107,Infrastructure,Infrastructure +281106,Infrastructure,Infrastructure +281105,Infrastructure,Infrastructure +281104,Infrastructure,Infrastructure +281103,Infrastructure,Infrastructure +281102,Infrastructure,Infrastructure +277238,Infrastructure,Infrastructure +277237,Infrastructure,Infrastructure +277236,Infrastructure,Infrastructure +277234,Infrastructure,Infrastructure +273026,Infrastructure,Infrastructure +273025,Infrastructure,Infrastructure +273024,Infrastructure,Infrastructure +273021,Infrastructure,Infrastructure +273020,Infrastructure,Infrastructure +273019,Infrastructure,Infrastructure +273016,Infrastructure,Infrastructure +273015,Infrastructure,Infrastructure +273014,Infrastructure,Infrastructure +268604,Infrastructure,Infrastructure +267889,Infrastructure,Infrastructure +263782,Infrastructure,Infrastructure +426168,Infrastructure,Infrastructure +423567,Infrastructure,Infrastructure +423566,Infrastructure,Infrastructure +423565,Infrastructure,Infrastructure +422565,Infrastructure,Infrastructure +422562,Infrastructure,Infrastructure +422561,Infrastructure,Infrastructure +422559,Infrastructure,Infrastructure +422546,Infrastructure,Infrastructure +422543,Infrastructure,Infrastructure +409969,Infrastructure,Infrastructure +409968,Infrastructure,Infrastructure +409967,Infrastructure,Infrastructure +409966,Infrastructure,Infrastructure +407962,Infrastructure,Infrastructure +407959,Infrastructure,Infrastructure +406738,Infrastructure,Infrastructure +406737,Infrastructure,Infrastructure +405648,Infrastructure,Infrastructure +403410,Infrastructure,Infrastructure +400473,Infrastructure,Infrastructure +398952,Infrastructure,Infrastructure +398924,Infrastructure,Infrastructure +396292,Infrastructure,Infrastructure +396286,Infrastructure,Infrastructure +392709,Infrastructure,Infrastructure +392708,Infrastructure,Infrastructure +391544,Infrastructure,Infrastructure +391543,Infrastructure,Infrastructure +391538,Infrastructure,Infrastructure +391532,Infrastructure,Infrastructure +387930,Infrastructure,Infrastructure +387928,Infrastructure,Infrastructure +387926,Infrastructure,Infrastructure +387924,Infrastructure,Infrastructure +385762,Infrastructure,Infrastructure +385761,Infrastructure,Infrastructure +383548,Infrastructure,Infrastructure +383544,Infrastructure,Infrastructure +383541,Infrastructure,Infrastructure +383538,Infrastructure,Infrastructure +115697,Other,Natural Resources +115696,Other,Natural Resources +118877,Other,Natural Resources +118876,Other,Natural Resources +327762,Transportation,Transportation +327758,Transportation,Transportation +115695,Transportation,Transportation +115694,Transportation,Transportation +211956,Transportation,Transportation +211951,Transportation,Transportation +205873,Transportation,Transportation +205871,Transportation,Transportation +205869,Transportation,Transportation +205867,Transportation,Transportation +203287,Transportation,Transportation +203268,Transportation,Transportation +193130,Transportation,Transportation +193129,Transportation,Transportation +193127,Transportation,Transportation +324833,Transportation,Transportation +324832,Transportation,Transportation +324831,Transportation,Transportation +324830,Transportation,Transportation +324829,Transportation,Transportation +324809,Transportation,Transportation +324795,Transportation,Transportation +319238,Transportation,Transportation +319237,Transportation,Transportation +319236,Transportation,Transportation +315905,Transportation,Transportation +313472,Transportation,Transportation +312902,Transportation,Transportation +312900,Transportation,Transportation +312898,Transportation,Transportation +312452,Transportation,Transportation +312451,Transportation,Transportation +312450,Transportation,Transportation +310426,Transportation,Transportation +310422,Transportation,Transportation +303378,Transportation,Transportation +303359,Transportation,Transportation +303355,Transportation,Transportation +303350,Transportation,Transportation +296176,Transportation,Transportation +296174,Transportation,Transportation +290702,Transportation,Transportation +286613,Transportation,Transportation +286372,Transportation,Transportation +286371,Transportation,Transportation +281110,Transportation,Transportation +281107,Transportation,Transportation +281106,Transportation,Transportation +281105,Transportation,Transportation +281104,Transportation,Transportation +281103,Transportation,Transportation +281102,Transportation,Transportation +277238,Transportation,Transportation +277237,Transportation,Transportation +277236,Transportation,Transportation +277234,Transportation,Transportation +273026,Transportation,Transportation +273025,Transportation,Transportation +273024,Transportation,Transportation +273021,Transportation,Transportation +273020,Transportation,Transportation +273019,Transportation,Transportation +273016,Transportation,Transportation +273015,Transportation,Transportation +273014,Transportation,Transportation +268604,Transportation,Transportation +267889,Transportation,Transportation +263782,Transportation,Transportation +258409,Transportation,Transportation +258093,Transportation,Transportation +258092,Transportation,Transportation +255073,Transportation,Transportation +255072,Transportation,Transportation +255071,Transportation,Transportation +255070,Transportation,Transportation +255069,Transportation,Transportation +255009,Transportation,Transportation +254995,Transportation,Transportation +254994,Transportation,Transportation +254993,Transportation,Transportation +254992,Transportation,Transportation +254991,Transportation,Transportation +254990,Transportation,Transportation +254989,Transportation,Transportation +254969,Transportation,Transportation +254404,Transportation,Transportation +254402,Transportation,Transportation +254400,Transportation,Transportation +254398,Transportation,Transportation +254395,Transportation,Transportation +254393,Transportation,Transportation +254392,Transportation,Transportation +254391,Transportation,Transportation +254390,Transportation,Transportation +254389,Transportation,Transportation +254375,Transportation,Transportation +423567,Transportation,Transportation +423566,Transportation,Transportation +423565,Transportation,Transportation +422565,Transportation,Transportation +422562,Transportation,Transportation +422561,Transportation,Transportation +422559,Transportation,Transportation +422546,Transportation,Transportation +422543,Transportation,Transportation +409969,Transportation,Transportation +409968,Transportation,Transportation +409967,Transportation,Transportation +409966,Transportation,Transportation +407959,Transportation,Transportation +406738,Transportation,Transportation +406737,Transportation,Transportation +405648,Transportation,Transportation +400473,Transportation,Transportation +398952,Transportation,Transportation +398924,Transportation,Transportation +396292,Transportation,Transportation +396286,Transportation,Transportation +392709,Transportation,Transportation +392708,Transportation,Transportation +391544,Transportation,Transportation +391543,Transportation,Transportation +391538,Transportation,Transportation +391532,Transportation,Transportation +387930,Transportation,Transportation +387928,Transportation,Transportation +387926,Transportation,Transportation +387924,Transportation,Transportation +385762,Transportation,Transportation +385761,Transportation,Transportation +383548,Transportation,Transportation +383544,Transportation,Transportation +383541,Transportation,Transportation +383538,Transportation,Transportation +381396,Transportation,Transportation +379475,Transportation,Transportation +379418,Transportation,Transportation +379413,Transportation,Transportation +379407,Transportation,Transportation +379392,Transportation,Transportation +379389,Transportation,Transportation +379378,Transportation,Transportation +379374,Transportation,Transportation +373817,Transportation,Transportation +373816,Transportation,Transportation +372256,Transportation,Transportation +372246,Transportation,Transportation +372237,Transportation,Transportation +372232,Transportation,Transportation +372231,Transportation,Transportation +372229,Transportation,Transportation +372227,Transportation,Transportation +372225,Transportation,Transportation +372223,Transportation,Transportation +369276,Transportation,Transportation +369274,Transportation,Transportation +369273,Transportation,Transportation +369272,Transportation,Transportation +366587,Transportation,Transportation +366585,Transportation,Transportation +362247,Transportation,Transportation +362246,Transportation,Transportation +355999,Transportation,Transportation +355995,Transportation,Transportation +352563,Transportation,Transportation +352562,Transportation,Transportation +349264,Transportation,Transportation +347366,Transportation,Transportation +341361,Transportation,Transportation +338409,Transportation,Transportation +338407,Transportation,Transportation +338406,Transportation,Transportation +338405,Transportation,Transportation +338404,Transportation,Transportation +338403,Transportation,Transportation +338402,Transportation,Transportation +338401,Transportation,Transportation +338400,Transportation,Transportation +335720,Transportation,Transportation +335573,Transportation,Transportation +335571,Transportation,Transportation +335570,Transportation,Transportation +335566,Transportation,Transportation +333297,Transportation,Transportation +333296,Transportation,Transportation +331889,Transportation,Transportation +331507,Transportation,Transportation +331504,Transportation,Transportation +331502,Transportation,Transportation +331501,Transportation,Transportation +331500,Transportation,Transportation +329736,Transportation,Transportation +121437,Financial Institutions,Financial Institutions +121437,Taxation and Finance,Taxation and Finance +250649,Taxation and Finance,Taxation and Finance +145927,Taxation and Finance,Taxation and Finance +117576,Other,Foreign Investment +117576,Industry,Industry +117576,Infrastructure,Infrastructure +117576,Other,National Security +117576,Other,Research and Development +117573,Other,Foreign Investment +117573,Industry,Industry +117573,Infrastructure,Infrastructure +117573,Other,National Security +117573,Other,Research and Development +453049,Infrastructure,Infrastructure +420451,Infrastructure,Infrastructure +251035,Infrastructure,Infrastructure +343758,Infrastructure,Infrastructure +514384,Infrastructure,Infrastructure +514383,Infrastructure,Infrastructure +514382,Infrastructure,Infrastructure +514381,Infrastructure,Infrastructure +513770,Infrastructure,Infrastructure +509927,Infrastructure,Infrastructure +509535,Infrastructure,Infrastructure +509236,Infrastructure,Infrastructure +509212,Infrastructure,Infrastructure +507431,Infrastructure,Infrastructure +507430,Infrastructure,Infrastructure +506780,Infrastructure,Infrastructure +503403,Infrastructure,Infrastructure +494426,Infrastructure,Infrastructure +487414,Infrastructure,Infrastructure +115854,Other,Refugees - Iraq +115996,Other,Pre-market approvals +116016,Other,Credit card regulations +160736,Other,Electronic waste +116054,Other,Electronic waste +160741,Other,Electronic waste +160740,Other,Electronic waste +160739,Other,Electronic waste +160738,Other,Electronic waste +120694,Energy,Energy +120696,Energy,Energy +120695,Environment,Environment +120694,Environment,Environment +151619,Financial Institutions,Financial Institutions +391501,Financial Institutions,Financial Institutions +116274,Government Procurement,Government Procurement +145711,Health,Health +333949,Infrastructure,Infrastructure +323889,Infrastructure,Infrastructure +116254,Infrastructure,Infrastructure +250914,Infrastructure,Infrastructure +210736,Infrastructure,Infrastructure +366373,Infrastructure,Infrastructure +116255,Infrastructure,Infrastructure +329697,Infrastructure,Infrastructure +262389,Infrastructure,Infrastructure +140636,Other,Finance +140635,Other,Finance +123903,Other,Finance +119257,Other,Finance +119256,Other,Finance +119255,Other,Finance +119255,Industry,Industry +119254,Industry,Industry +140636,Industry,Industry +140635,Industry,Industry +123903,Industry,Industry +119257,Industry,Industry +119257,Transportation,Transportation +119256,Transportation,Transportation +119255,Transportation,Transportation +119254,Transportation,Transportation +135718,Environment,Environment +131674,Environment,Environment +135718,Other,Finance +131674,Other,Finance +140638,Other,Finance +135726,Industry,Industry +135718,Industry,Industry +135718,Transportation,Transportation +131674,Transportation,Transportation +147304,Other,Fuel Quality +141694,Other,Fuel Quality +128639,Other,Fuel Quality +132847,Other,Follow-up on OTSP +125307,Other,Follow-up on OTSP +117676,Other,Industrial Regional Benefits (IRBs) +120974,Other,Industrial Regional Benefits (IRBs) +117682,Other,Industrial Regional Benefits (IRBs) +120759,Other,To discuss ecoEnergy for biofuels Program. +116654,Other,To discuss ecoEnergy for biofuels Program. +128886,Other,To discuss fueling the NRCan fleet with cellulosic ethanol. +116657,Other,To discuss the current status and future of Biofuels in Canada. +118214,Infrastructure,Infrastructure +416564,Taxation and Finance,Taxation and Finance +416540,Taxation and Finance,Taxation and Finance +239869,Taxation and Finance,Taxation and Finance +228896,Taxation and Finance,Taxation and Finance +228894,Taxation and Finance,Taxation and Finance +228893,Taxation and Finance,Taxation and Finance +228891,Taxation and Finance,Taxation and Finance +218190,Taxation and Finance,Taxation and Finance +139155,Taxation and Finance,Taxation and Finance +365308,Taxation and Finance,Taxation and Finance +348849,Taxation and Finance,Taxation and Finance +263423,Taxation and Finance,Taxation and Finance +263416,Taxation and Finance,Taxation and Finance +258539,Taxation and Finance,Taxation and Finance +250094,Taxation and Finance,Taxation and Finance +250092,Taxation and Finance,Taxation and Finance +250090,Taxation and Finance,Taxation and Finance +409958,Taxation and Finance,Taxation and Finance +388100,Taxation and Finance,Taxation and Finance +388094,Taxation and Finance,Taxation and Finance +388090,Taxation and Finance,Taxation and Finance +388086,Taxation and Finance,Taxation and Finance +388083,Taxation and Finance,Taxation and Finance +388078,Taxation and Finance,Taxation and Finance +383013,Taxation and Finance,Taxation and Finance +379029,Taxation and Finance,Taxation and Finance +379028,Taxation and Finance,Taxation and Finance +379026,Taxation and Finance,Taxation and Finance +379025,Taxation and Finance,Taxation and Finance +379024,Taxation and Finance,Taxation and Finance +379022,Taxation and Finance,Taxation and Finance +379021,Taxation and Finance,Taxation and Finance +379020,Taxation and Finance,Taxation and Finance +379019,Taxation and Finance,Taxation and Finance +379018,Taxation and Finance,Taxation and Finance +379017,Taxation and Finance,Taxation and Finance +379016,Taxation and Finance,Taxation and Finance +379014,Taxation and Finance,Taxation and Finance +379012,Taxation and Finance,Taxation and Finance +379010,Taxation and Finance,Taxation and Finance +379009,Taxation and Finance,Taxation and Finance +379008,Taxation and Finance,Taxation and Finance +379006,Taxation and Finance,Taxation and Finance +379000,Taxation and Finance,Taxation and Finance +377024,Taxation and Finance,Taxation and Finance +374703,Taxation and Finance,Taxation and Finance +372224,Taxation and Finance,Taxation and Finance +371280,Taxation and Finance,Taxation and Finance +371278,Taxation and Finance,Taxation and Finance +371266,Taxation and Finance,Taxation and Finance +371262,Taxation and Finance,Taxation and Finance +371256,Taxation and Finance,Taxation and Finance +369270,Taxation and Finance,Taxation and Finance +369268,Taxation and Finance,Taxation and Finance +365311,Taxation and Finance,Taxation and Finance +469902,Taxation and Finance,Taxation and Finance +469899,Taxation and Finance,Taxation and Finance +469894,Taxation and Finance,Taxation and Finance +469892,Taxation and Finance,Taxation and Finance +450045,Taxation and Finance,Taxation and Finance +445587,Taxation and Finance,Taxation and Finance +445578,Taxation and Finance,Taxation and Finance +443996,Taxation and Finance,Taxation and Finance +443995,Taxation and Finance,Taxation and Finance +443994,Taxation and Finance,Taxation and Finance +443993,Taxation and Finance,Taxation and Finance +443992,Taxation and Finance,Taxation and Finance +443989,Taxation and Finance,Taxation and Finance +443987,Taxation and Finance,Taxation and Finance +443985,Taxation and Finance,Taxation and Finance +443984,Taxation and Finance,Taxation and Finance +443983,Taxation and Finance,Taxation and Finance +443982,Taxation and Finance,Taxation and Finance +443980,Taxation and Finance,Taxation and Finance +443979,Taxation and Finance,Taxation and Finance +443978,Taxation and Finance,Taxation and Finance +443977,Taxation and Finance,Taxation and Finance +443976,Taxation and Finance,Taxation and Finance +443975,Taxation and Finance,Taxation and Finance +443974,Taxation and Finance,Taxation and Finance +443972,Taxation and Finance,Taxation and Finance +443971,Taxation and Finance,Taxation and Finance +443970,Taxation and Finance,Taxation and Finance +443969,Taxation and Finance,Taxation and Finance +443968,Taxation and Finance,Taxation and Finance +443966,Taxation and Finance,Taxation and Finance +443964,Taxation and Finance,Taxation and Finance +443962,Taxation and Finance,Taxation and Finance +443960,Taxation and Finance,Taxation and Finance +443957,Taxation and Finance,Taxation and Finance +429472,Taxation and Finance,Taxation and Finance +429469,Taxation and Finance,Taxation and Finance +416599,Taxation and Finance,Taxation and Finance +120036,Industry,Industry +120034,Industry,Industry +151248,Other,Research funding +151251,Other,Research funding +151250,Other,Research funding +142540,Other,National Pollutant Release Inventory (NPRI) +142519,Other,National Pollutant Release Inventory (NPRI) +145521,Other,National Pollutant Release Inventory (NPRI) +138795,Other,National Pollutant Release Inventory (NPRI) +138794,Other,National Pollutant Release Inventory (NPRI) +117102,Other,National Pollutant Release Inventory (NPRI) +175116,Infrastructure,Infrastructure +132847,Other,CAE's work on CH-47 +117667,Other,CAE's work on CH-47 +195765,Defence,Defence +117703,Other,Government Procurement +117697,Other,Government Procurement +142858,Other,Government Procurement +142856,Other,Government Procurement +132908,Other,Government Procurement +132904,Other,Government Procurement +129086,Other,Government Procurement +125146,Other,Government Procurement +125144,Other,Government Procurement +125142,Other,Government Procurement +389388,Taxation and Finance,Impôts et finances +449405,Taxation and Finance,Impôts et finances +361251,Industry,Industry +515095,Industry,Industry +150217,Industry,Industry +117734,Industry,Industry +175486,Industry,Industry +175485,Industry,Industry +175483,Industry,Industry +175482,Industry,Industry +175481,Industry,Industry +175476,Industry,Industry +164032,Industry,Industry +164031,Industry,Industry +164030,Industry,Industry +164026,Industry,Industry +153425,Industry,Industry +153381,Industry,Industry +280229,Industry,Industry +277412,Industry,Industry +277411,Industry,Industry +277410,Industry,Industry +277409,Industry,Industry +277408,Industry,Industry +277407,Industry,Industry +273593,Industry,Industry +218287,Industry,Industry +202963,Industry,Industry +202962,Industry,Industry +202961,Industry,Industry +202960,Industry,Industry +202959,Industry,Industry +202958,Industry,Industry +440535,Industry,Industry +440534,Industry,Industry +440532,Industry,Industry +440531,Industry,Industry +440530,Industry,Industry +440529,Industry,Industry +439129,Industry,Industry +439124,Industry,Industry +439120,Industry,Industry +439104,Industry,Industry +439101,Industry,Industry +434249,Industry,Industry +434248,Industry,Industry +434246,Industry,Industry +433733,Industry,Industry +432953,Industry,Industry +432946,Industry,Industry +391485,Industry,Industry +391469,Industry,Industry +377223,Industry,Industry +377218,Industry,Industry +372717,Industry,Industry +372715,Industry,Industry +131295,Environment,Environment +131294,Environment,Environment +135835,Environment,Environment +135832,Environment,Environment +135829,Environment,Environment +135826,Environment,Environment +131297,Environment,Environment +119274,Employment and Training,Emploi et formation +120214,Energy,Energy +120214,Environment,Environment +118000,Consumer Issues,Consumer Issues +157994,Energy,Energy +157790,Energy,Energy +157789,Energy,Energy +140276,Energy,Energy +196554,Energy,Energy +196553,Energy,Energy +201267,Environment,Environment +196553,Infrastructure,Infrastructure +156583,Transportation,Transportation +398970,Defence,Defence +394379,Defence,Defence +168145,Defence,Defence +156580,Defence,Defence +135914,Defence,Defence +135913,Defence,Defence +130115,Defence,Defence +387891,Defence,Defence +387870,Defence,Defence +381501,Defence,Defence +381474,Defence,Defence +250855,Defence,Defence +217713,Defence,Defence +202544,Defence,Defence +202542,Defence,Defence +194005,Defence,Defence +175025,Defence,Defence +172947,Defence,Defence +168153,Defence,Defence +413642,Defence,Defence +410294,Defence,Defence +408074,Defence,Defence +403719,Defence,Defence +403708,Defence,Defence +403701,Defence,Defence +170554,Environment,Environment +379723,Environment,Environment +185244,Environment,Environment +331605,Industry,Industry +327505,Industry,Industry +154346,Industry,Industry +151860,Industry,Industry +151841,Industry,Industry +151837,Industry,Industry +149862,Industry,Industry +149861,Industry,Industry +149860,Industry,Industry +147958,Industry,Industry +146066,Industry,Industry +146064,Industry,Industry +135914,Industry,Industry +135913,Industry,Industry +194007,Industry,Industry +188978,Industry,Industry +185245,Industry,Industry +177827,Industry,Industry +175024,Industry,Industry +174889,Industry,Industry +172945,Industry,Industry +170555,Industry,Industry +170553,Industry,Industry +170552,Industry,Industry +168144,Industry,Industry +168143,Industry,Industry +163998,Industry,Industry +163991,Industry,Industry +162093,Industry,Industry +324589,Industry,Industry +318814,Industry,Industry +316052,Industry,Industry +312940,Industry,Industry +312938,Industry,Industry +303790,Industry,Industry +303592,Industry,Industry +303590,Industry,Industry +303589,Industry,Industry +290651,Industry,Industry +290648,Industry,Industry +268595,Industry,Industry +268592,Industry,Industry +264058,Industry,Industry +259264,Industry,Industry +254089,Industry,Industry +250863,Industry,Industry +240836,Industry,Industry +240834,Industry,Industry +233602,Industry,Industry +230413,Industry,Industry +230412,Industry,Industry +230410,Industry,Industry +217694,Industry,Industry +217693,Industry,Industry +217692,Industry,Industry +217690,Industry,Industry +420036,Industry,Industry +413631,Industry,Industry +413612,Industry,Industry +410294,Industry,Industry +410293,Industry,Industry +410292,Industry,Industry +408077,Industry,Industry +403725,Industry,Industry +403719,Industry,Industry +403708,Industry,Industry +400823,Industry,Industry +400817,Industry,Industry +398958,Industry,Industry +397296,Industry,Industry +394385,Industry,Industry +394379,Industry,Industry +394368,Industry,Industry +391354,Industry,Industry +387883,Industry,Industry +387882,Industry,Industry +387877,Industry,Industry +385482,Industry,Industry +385479,Industry,Industry +385477,Industry,Industry +385475,Industry,Industry +385468,Industry,Industry +385462,Industry,Industry +385460,Industry,Industry +385450,Industry,Industry +385442,Industry,Industry +385433,Industry,Industry +385430,Industry,Industry +385425,Industry,Industry +383731,Industry,Industry +383728,Industry,Industry +383727,Industry,Industry +383714,Industry,Industry +382557,Industry,Industry +382554,Industry,Industry +382522,Industry,Industry +381501,Industry,Industry +376538,Industry,Industry +376537,Industry,Industry +376536,Industry,Industry +376535,Industry,Industry +376534,Industry,Industry +375858,Industry,Industry +374983,Industry,Industry +374972,Industry,Industry +374851,Industry,Industry +371920,Industry,Industry +371915,Industry,Industry +371906,Industry,Industry +371903,Industry,Industry +371850,Industry,Industry +365050,Industry,Industry +359921,Industry,Industry +359709,Industry,Industry +353796,Industry,Industry +353793,Industry,Industry +348918,Industry,Industry +348916,Industry,Industry +338576,Industry,Industry +338570,Industry,Industry +338568,Industry,Industry +212098,International Trade,International Trade +259264,International Trade,International Trade +171860,International Trade,International Trade +233606,International Trade,International Trade +233604,International Trade,International Trade +138355,Other,Long Term Space Plan +138354,Other,Long Term Space Plan +132243,Other,Long Term Space Plan +121260,Other,Long Term Space Plan +130114,Other,Space +125194,Other,Space +135915,Other,Space +132242,Other,Space +123115,International Relations,International Relations +123114,International Relations,International Relations +146674,International Relations,International Relations +126574,Employment and Training,Employment and Training +136674,Other,Regional issues +146935,Health,Health +146934,Health,Health +269933,Energy,Energy +269931,Energy,Energy +187489,Energy,Energy +187486,Energy,Energy +187484,Energy,Energy +176424,Energy,Energy +169764,Energy,Energy +344126,Energy,Energy +270312,Energy,Energy +344128,Environment,Environment +344127,Environment,Environment +169764,Environment,Environment +130874,Environment,Environment +187489,Environment,Environment +187486,Environment,Environment +325472,Industry,Industry +325470,Industry,Industry +187491,Industry,Industry +187490,Industry,Industry +187489,Industry,Industry +187486,Industry,Industry +187484,Industry,Industry +212553,Industry,Industry +325478,Industry,Industry +325475,Industry,Industry +325474,Industry,Industry +118535,Other,ITAR +118496,Other,ITAR +140374,Other,ITAR +140114,Other,ITAR +123294,Other,ITAR +311772,Infrastructure,Infrastructure +311771,Infrastructure,Infrastructure +118536,Infrastructure,Infrastructure +296369,Infrastructure,Infrastructure +252489,Infrastructure,Infrastructure +252350,Infrastructure,Infrastructure +252349,Infrastructure,Infrastructure +195788,Infrastructure,Infrastructure +195784,Infrastructure,Infrastructure +326291,Infrastructure,Infrastructure +326290,Infrastructure,Infrastructure +312032,Infrastructure,Infrastructure +311777,Infrastructure,Infrastructure +311776,Infrastructure,Infrastructure +311775,Infrastructure,Infrastructure +252372,Agriculture,Agriculture +252371,Agriculture,Agriculture +312034,Agriculture,Agriculture +311787,Agriculture,Agriculture +311786,Agriculture,Agriculture +311785,Agriculture,Agriculture +252493,Agriculture,Agriculture +312034,Infrastructure,Infrastructure +252493,Infrastructure,Infrastructure +544074,Agriculture,Agriculture +531786,Agriculture,Agriculture +311783,Agriculture,Agriculture +311782,Agriculture,Agriculture +311781,Agriculture,Agriculture +296370,Agriculture,Agriculture +252490,Agriculture,Agriculture +252363,Agriculture,Agriculture +252362,Agriculture,Agriculture +252361,Agriculture,Agriculture +449157,Agriculture,Agriculture +448580,Agriculture,Agriculture +435886,Agriculture,Agriculture +435875,Agriculture,Agriculture +435759,Agriculture,Agriculture +382749,Agriculture,Agriculture +365662,Agriculture,Agriculture +355703,Agriculture,Agriculture +355702,Agriculture,Agriculture +355673,Agriculture,Agriculture +340064,Agriculture,Agriculture +340063,Agriculture,Agriculture +340062,Agriculture,Agriculture +340061,Agriculture,Agriculture +340060,Agriculture,Agriculture +340059,Agriculture,Agriculture +312033,Agriculture,Agriculture +527049,Agriculture,Agriculture +525148,Agriculture,Agriculture +523370,Agriculture,Agriculture +518615,Agriculture,Agriculture +485964,Agriculture,Agriculture +476434,Agriculture,Agriculture +474363,Agriculture,Agriculture +472270,Agriculture,Agriculture +469458,Agriculture,Agriculture +469365,Agriculture,Agriculture +465929,Agriculture,Agriculture +465736,Agriculture,Agriculture +465735,Agriculture,Agriculture +454352,Agriculture,Agriculture +453736,Agriculture,Agriculture +451094,Agriculture,Agriculture +449468,Agriculture,Agriculture +449466,Agriculture,Agriculture +449464,Agriculture,Agriculture +449462,Agriculture,Agriculture +474363,Infrastructure,Infrastructure +472270,Infrastructure,Infrastructure +252490,Infrastructure,Infrastructure +118575,Infrastructure,Infrastructure +355780,Infrastructure,Infrastructure +355704,Infrastructure,Infrastructure +340062,Infrastructure,Infrastructure +340059,Infrastructure,Infrastructure +340058,Infrastructure,Infrastructure +312033,Infrastructure,Infrastructure +311784,Infrastructure,Infrastructure +311780,Infrastructure,Infrastructure +296370,Infrastructure,Infrastructure +392137,Infrastructure,Infrastructure +372876,Infrastructure,Infrastructure +372875,Infrastructure,Infrastructure +372854,Infrastructure,Infrastructure +372852,Infrastructure,Infrastructure +372849,Infrastructure,Infrastructure +365662,Infrastructure,Infrastructure +469458,Infrastructure,Infrastructure +453736,Infrastructure,Infrastructure +449466,Infrastructure,Infrastructure +449463,Infrastructure,Infrastructure +449461,Infrastructure,Infrastructure +449460,Infrastructure,Infrastructure +444720,Infrastructure,Infrastructure +435886,Infrastructure,Infrastructure +435881,Infrastructure,Infrastructure +435875,Infrastructure,Infrastructure +435741,Infrastructure,Infrastructure +429473,Infrastructure,Infrastructure +540845,Infrastructure,Infrastructure +527049,Infrastructure,Infrastructure +485964,Infrastructure,Infrastructure +355684,Infrastructure,Infrastructure +355680,Infrastructure,Infrastructure +118595,Infrastructure,Infrastructure +195793,Infrastructure,Infrastructure +195791,Infrastructure,Infrastructure +340068,Infrastructure,Infrastructure +340067,Infrastructure,Infrastructure +340066,Infrastructure,Infrastructure +340065,Infrastructure,Infrastructure +312035,Infrastructure,Infrastructure +311779,Infrastructure,Infrastructure +311778,Infrastructure,Infrastructure +252491,Infrastructure,Infrastructure +252354,Infrastructure,Infrastructure +252353,Infrastructure,Infrastructure +252352,Infrastructure,Infrastructure +355781,Infrastructure,Infrastructure +252367,Agriculture,Agriculture +252366,Agriculture,Agriculture +252494,Agriculture,Agriculture +476479,Infrastructure,Infrastructure +469459,Infrastructure,Infrastructure +118614,Infrastructure,Infrastructure +252494,Infrastructure,Infrastructure +372886,Infrastructure,Infrastructure +120763,Government Procurement,Government Procurement +187404,Government Procurement,Government Procurement +146037,Other,"Discussion about Canadian defense industrial base, Overview of General Dynamics OTS-C's activities in Canada and about Munitions Supply Program." +146026,Other,"Discussion about Canadian defense industrial base, Overview of General Dynamics OTS-C's activities in Canada and about Munitions Supply Program." +119054,Other,"Discussion about Canadian defense industrial base, Overview of General Dynamics OTS-C's activities in Canada and about Munitions Supply Program." +472327,Taxation and Finance,Taxation and Finance +470279,Taxation and Finance,Taxation and Finance +443649,Taxation and Finance,Taxation and Finance +514089,Taxation and Finance,Taxation and Finance +512681,Taxation and Finance,Taxation and Finance +507986,Taxation and Finance,Taxation and Finance +502468,Taxation and Finance,Taxation and Finance +502452,Taxation and Finance,Taxation and Finance +495220,Taxation and Finance,Taxation and Finance +492897,Taxation and Finance,Taxation and Finance +490603,Taxation and Finance,Taxation and Finance +490597,Taxation and Finance,Taxation and Finance +490565,Taxation and Finance,Taxation and Finance +487419,Taxation and Finance,Taxation and Finance +487146,Taxation and Finance,Taxation and Finance +475605,Taxation and Finance,Taxation and Finance +122594,Other,Internal Credential Management +471358,Energy,Energy +466224,Energy,Energy +164014,Energy,Energy +162539,Energy,Energy +162519,Energy,Energy +159715,Energy,Energy +156813,Energy,Energy +154871,Energy,Energy +153596,Energy,Energy +153595,Energy,Energy +148021,Energy,Energy +148020,Energy,Energy +148018,Energy,Energy +148016,Energy,Energy +244654,Energy,Energy +244653,Energy,Energy +244650,Energy,Energy +244649,Energy,Energy +170448,Energy,Energy +170443,Energy,Energy +170441,Energy,Energy +170440,Energy,Energy +165903,Energy,Energy +164033,Energy,Energy +164016,Energy,Energy +371870,Energy,Energy +371868,Energy,Energy +453029,Energy,Energy +453028,Energy,Energy +444477,Energy,Energy +444412,Energy,Energy +441185,Energy,Energy +441184,Energy,Energy +441182,Energy,Energy +441179,Energy,Energy +441178,Energy,Energy +441174,Energy,Energy +440395,Energy,Energy +439840,Energy,Energy +439839,Energy,Energy +427738,Energy,Energy +427737,Energy,Energy +418572,Energy,Energy +417379,Energy,Energy +410679,Energy,Energy +410678,Energy,Energy +410658,Energy,Energy +410657,Energy,Energy +410656,Energy,Energy +410655,Energy,Energy +410654,Energy,Energy +405957,Energy,Energy +399701,Energy,Energy +399285,Energy,Energy +399284,Energy,Energy +399283,Energy,Energy +399282,Energy,Energy +399279,Energy,Energy +399277,Energy,Energy +399275,Energy,Energy +387234,Energy,Energy +387012,Energy,Energy +386129,Energy,Energy +386128,Energy,Energy +383046,Energy,Energy +383045,Energy,Energy +543709,Energy,Energy +541857,Energy,Energy +541239,Energy,Energy +541224,Energy,Energy +537894,Energy,Energy +537884,Energy,Energy +537877,Energy,Energy +537873,Energy,Energy +535719,Energy,Energy +535716,Energy,Energy +535712,Energy,Energy +532347,Energy,Energy +532346,Energy,Energy +532345,Energy,Energy +532343,Energy,Energy +532319,Energy,Energy +528338,Energy,Energy +528337,Energy,Energy +528336,Energy,Energy +528333,Energy,Energy +522375,Energy,Energy +522374,Energy,Energy +522373,Energy,Energy +520461,Energy,Energy +520460,Energy,Energy +519945,Energy,Energy +517142,Energy,Energy +517140,Energy,Energy +517138,Energy,Energy +514729,Energy,Energy +514020,Energy,Energy +510079,Energy,Energy +509456,Energy,Energy +507949,Energy,Energy +506019,Energy,Energy +502493,Energy,Energy +502486,Energy,Energy +491363,Energy,Energy +541239,Environment,Environment +541224,Environment,Environment +148018,Environment,Environment +148016,Environment,Environment +129456,Environment,Environment +129455,Environment,Environment +129454,Environment,Environment +165903,Environment,Environment +164033,Environment,Environment +164016,Environment,Environment +164014,Environment,Environment +162539,Environment,Environment +162519,Environment,Environment +159715,Environment,Environment +156813,Environment,Environment +153596,Environment,Environment +153595,Environment,Environment +148021,Environment,Environment +148020,Environment,Environment +241289,Environment,Environment +241284,Environment,Environment +233839,Environment,Environment +233838,Environment,Environment +216511,Environment,Environment +207407,Environment,Environment +199347,Environment,Environment +199327,Environment,Environment +199250,Environment,Environment +185749,Environment,Environment +185748,Environment,Environment +185747,Environment,Environment +181024,Environment,Environment +181004,Environment,Environment +180984,Environment,Environment +180964,Environment,Environment +170448,Environment,Environment +170443,Environment,Environment +170441,Environment,Environment +170440,Environment,Environment +387012,Environment,Environment +386129,Environment,Environment +386128,Environment,Environment +383046,Environment,Environment +379327,Environment,Environment +379321,Environment,Environment +371870,Environment,Environment +355521,Environment,Environment +325670,Environment,Environment +311709,Environment,Environment +283849,Environment,Environment +283589,Environment,Environment +283574,Environment,Environment +283573,Environment,Environment +283572,Environment,Environment +283571,Environment,Environment +283570,Environment,Environment +277399,Environment,Environment +277397,Environment,Environment +244654,Environment,Environment +244653,Environment,Environment +244650,Environment,Environment +244649,Environment,Environment +537894,Environment,Environment +537884,Environment,Environment +537877,Environment,Environment +537873,Environment,Environment +535719,Environment,Environment +535716,Environment,Environment +535712,Environment,Environment +532347,Environment,Environment +532346,Environment,Environment +532345,Environment,Environment +532343,Environment,Environment +532319,Environment,Environment +528338,Environment,Environment +528337,Environment,Environment +528336,Environment,Environment +528333,Environment,Environment +522375,Environment,Environment +522374,Environment,Environment +522373,Environment,Environment +520461,Environment,Environment +520460,Environment,Environment +519945,Environment,Environment +517142,Environment,Environment +517140,Environment,Environment +517138,Environment,Environment +514729,Environment,Environment +514020,Environment,Environment +510079,Environment,Environment +509456,Environment,Environment +507949,Environment,Environment +506019,Environment,Environment +502493,Environment,Environment +502486,Environment,Environment +491363,Environment,Environment +488106,Environment,Environment +484621,Environment,Environment +466224,Environment,Environment +453029,Environment,Environment +453028,Environment,Environment +444477,Environment,Environment +444412,Environment,Environment +441185,Environment,Environment +441184,Environment,Environment +441182,Environment,Environment +441179,Environment,Environment +441178,Environment,Environment +440395,Environment,Environment +439840,Environment,Environment +439839,Environment,Environment +427738,Environment,Environment +427737,Environment,Environment +418572,Environment,Environment +417379,Environment,Environment +410679,Environment,Environment +410678,Environment,Environment +410658,Environment,Environment +410657,Environment,Environment +410656,Environment,Environment +410655,Environment,Environment +410654,Environment,Environment +405957,Environment,Environment +399701,Environment,Environment +399285,Environment,Environment +399284,Environment,Environment +399283,Environment,Environment +399282,Environment,Environment +399279,Environment,Environment +399277,Environment,Environment +399275,Environment,Environment +543709,Environment,Environment +484618,Industry,Industry +520461,Taxation and Finance,Taxation and Finance +514020,Taxation and Finance,Taxation and Finance +148019,Taxation and Finance,Taxation and Finance +139554,Taxation and Finance,Taxation and Finance +311709,Taxation and Finance,Taxation and Finance +537894,Taxation and Finance,Taxation and Finance +528338,Taxation and Finance,Taxation and Finance +528337,Taxation and Finance,Taxation and Finance +528336,Taxation and Finance,Taxation and Finance +528333,Taxation and Finance,Taxation and Finance +483893,Taxation and Finance,Taxation and Finance +481194,Taxation and Finance,Taxation and Finance +176829,Taxation and Finance,Taxation and Finance +170935,Taxation and Finance,Taxation and Finance +161274,Taxation and Finance,Taxation and Finance +321370,Taxation and Finance,Taxation and Finance +309598,Taxation and Finance,Taxation and Finance +305689,Taxation and Finance,Taxation and Finance +289949,Taxation and Finance,Taxation and Finance +259949,Taxation and Finance,Taxation and Finance +252252,Taxation and Finance,Taxation and Finance +246910,Taxation and Finance,Taxation and Finance +392242,Taxation and Finance,Taxation and Finance +392241,Taxation and Finance,Taxation and Finance +386803,Taxation and Finance,Taxation and Finance +375995,Taxation and Finance,Taxation and Finance +356516,Taxation and Finance,Taxation and Finance +348546,Taxation and Finance,Taxation and Finance +348544,Taxation and Finance,Taxation and Finance +348543,Taxation and Finance,Taxation and Finance +344129,Taxation and Finance,Taxation and Finance +340696,Taxation and Finance,Taxation and Finance +339360,Taxation and Finance,Taxation and Finance +451179,Taxation and Finance,Taxation and Finance +451178,Taxation and Finance,Taxation and Finance +451177,Taxation and Finance,Taxation and Finance +433319,Taxation and Finance,Taxation and Finance +401861,Taxation and Finance,Taxation and Finance +399955,Taxation and Finance,Taxation and Finance +543178,Taxation and Finance,Taxation and Finance +528779,Taxation and Finance,Taxation and Finance +524421,Taxation and Finance,Taxation and Finance +518939,Taxation and Finance,Taxation and Finance +517006,Taxation and Finance,Taxation and Finance +512635,Taxation and Finance,Taxation and Finance +512633,Taxation and Finance,Taxation and Finance +512630,Taxation and Finance,Taxation and Finance +507513,Taxation and Finance,Taxation and Finance +494879,Taxation and Finance,Taxation and Finance +119215,Other,Advertising +119214,Other,Sodium Reduction +158487,Health,Health +158485,Health,Health +156606,Health,Health +156605,Health,Health +154407,Health,Health +154406,Health,Health +154405,Health,Health +154404,Health,Health +154403,Health,Health +154402,Health,Health +176806,Health,Health +174737,Health,Health +172858,Health,Health +170537,Health,Health +170535,Health,Health +169127,Health,Health +169126,Health,Health +169125,Health,Health +167772,Health,Health +167666,Health,Health +167665,Health,Health +164265,Health,Health +163445,Health,Health +161289,Health,Health +161196,Health,Health +413455,Defence,Défense +119295,Defence,Défense +413481,Defence,Défense +121268,Environment,Environment +135794,Energy,Energy +124379,Energy,Energy +147915,Energy,Energy +124397,Government Procurement,Government Procurement +124396,Government Procurement,Government Procurement +124395,Government Procurement,Government Procurement +124399,Government Procurement,Government Procurement +485034,International Relations,International Relations +482282,International Relations,International Relations +159561,International Relations,International Relations +159550,International Relations,International Relations +156259,International Relations,International Relations +126799,International Relations,International Relations +126794,International Relations,International Relations +119456,International Relations,International Relations +119455,International Relations,International Relations +188323,International Relations,International Relations +188321,International Relations,International Relations +188320,International Relations,International Relations +188319,International Relations,International Relations +188318,International Relations,International Relations +188317,International Relations,International Relations +188315,International Relations,International Relations +188314,International Relations,International Relations +188309,International Relations,International Relations +188306,International Relations,International Relations +188305,International Relations,International Relations +188277,International Relations,International Relations +188273,International Relations,International Relations +188271,International Relations,International Relations +188269,International Relations,International Relations +188268,International Relations,International Relations +188267,International Relations,International Relations +188266,International Relations,International Relations +188265,International Relations,International Relations +188264,International Relations,International Relations +188258,International Relations,International Relations +188256,International Relations,International Relations +188255,International Relations,International Relations +188235,International Relations,International Relations +188226,International Relations,International Relations +188224,International Relations,International Relations +188222,International Relations,International Relations +188215,International Relations,International Relations +188211,International Relations,International Relations +188195,International Relations,International Relations +188192,International Relations,International Relations +186364,International Relations,International Relations +180680,International Relations,International Relations +180679,International Relations,International Relations +180678,International Relations,International Relations +180677,International Relations,International Relations +180664,International Relations,International Relations +173151,International Relations,International Relations +169993,International Relations,International Relations +169992,International Relations,International Relations +169986,International Relations,International Relations +169985,International Relations,International Relations +168764,International Relations,International Relations +167684,International Relations,International Relations +165352,International Relations,International Relations +165347,International Relations,International Relations +163376,International Relations,International Relations +163374,International Relations,International Relations +163368,International Relations,International Relations +163362,International Relations,International Relations +163361,International Relations,International Relations +163357,International Relations,International Relations +163353,International Relations,International Relations +163347,International Relations,International Relations +163345,International Relations,International Relations +163344,International Relations,International Relations +161280,International Relations,International Relations +161277,International Relations,International Relations +161189,International Relations,International Relations +161183,International Relations,International Relations +161174,International Relations,International Relations +161170,International Relations,International Relations +343787,International Relations,International Relations +340798,International Relations,International Relations +340712,International Relations,International Relations +340709,International Relations,International Relations +340700,International Relations,International Relations +338984,International Relations,International Relations +338980,International Relations,International Relations +338504,International Relations,International Relations +337718,International Relations,International Relations +333363,International Relations,International Relations +333355,International Relations,International Relations +333353,International Relations,International Relations +332444,International Relations,International Relations +332443,International Relations,International Relations +332441,International Relations,International Relations +332439,International Relations,International Relations +332436,International Relations,International Relations +332435,International Relations,International Relations +328096,International Relations,International Relations +327557,International Relations,International Relations +324977,International Relations,International Relations +324975,International Relations,International Relations +321752,International Relations,International Relations +313750,International Relations,International Relations +311689,International Relations,International Relations +310387,International Relations,International Relations +310359,International Relations,International Relations +307153,International Relations,International Relations +287009,International Relations,International Relations +283292,International Relations,International Relations +276636,International Relations,International Relations +276629,International Relations,International Relations +276409,International Relations,International Relations +276394,International Relations,International Relations +276393,International Relations,International Relations +276391,International Relations,International Relations +274169,International Relations,International Relations +272269,International Relations,International Relations +265312,International Relations,International Relations +265311,International Relations,International Relations +263424,International Relations,International Relations +263422,International Relations,International Relations +263420,International Relations,International Relations +263417,International Relations,International Relations +258349,International Relations,International Relations +258238,International Relations,International Relations +254320,International Relations,International Relations +254312,International Relations,International Relations +251293,International Relations,International Relations +251291,International Relations,International Relations +249840,International Relations,International Relations +249834,International Relations,International Relations +244754,International Relations,International Relations +240995,International Relations,International Relations +236613,International Relations,International Relations +233589,International Relations,International Relations +231216,International Relations,International Relations +231215,International Relations,International Relations +231213,International Relations,International Relations +226990,International Relations,International Relations +226985,International Relations,International Relations +226983,International Relations,International Relations +226982,International Relations,International Relations +226981,International Relations,International Relations +226939,International Relations,International Relations +226937,International Relations,International Relations +222687,International Relations,International Relations +222683,International Relations,International Relations +222681,International Relations,International Relations +222679,International Relations,International Relations +222677,International Relations,International Relations +222667,International Relations,International Relations +222650,International Relations,International Relations +222581,International Relations,International Relations +222573,International Relations,International Relations +222369,International Relations,International Relations +188344,International Relations,International Relations +188338,International Relations,International Relations +188336,International Relations,International Relations +188331,International Relations,International Relations +188328,International Relations,International Relations +188327,International Relations,International Relations +188324,International Relations,International Relations +479950,International Relations,International Relations +479948,International Relations,International Relations +479944,International Relations,International Relations +479942,International Relations,International Relations +479935,International Relations,International Relations +478326,International Relations,International Relations +478317,International Relations,International Relations +478315,International Relations,International Relations +478127,International Relations,International Relations +476098,International Relations,International Relations +468478,International Relations,International Relations +468471,International Relations,International Relations +468448,International Relations,International Relations +464748,International Relations,International Relations +464727,International Relations,International Relations +462638,International Relations,International Relations +462626,International Relations,International Relations +462625,International Relations,International Relations +461922,International Relations,International Relations +461917,International Relations,International Relations +461913,International Relations,International Relations +461912,International Relations,International Relations +461911,International Relations,International Relations +459768,International Relations,International Relations +459755,International Relations,International Relations +458848,International Relations,International Relations +458840,International Relations,International Relations +458838,International Relations,International Relations +458832,International Relations,International Relations +458735,International Relations,International Relations +457597,International Relations,International Relations +457593,International Relations,International Relations +455606,International Relations,International Relations +455586,International Relations,International Relations +452931,International Relations,International Relations +452496,International Relations,International Relations +452479,International Relations,International Relations +452477,International Relations,International Relations +450121,International Relations,International Relations +450096,International Relations,International Relations +447856,International Relations,International Relations +447841,International Relations,International Relations +447834,International Relations,International Relations +447815,International Relations,International Relations +447800,International Relations,International Relations +443949,International Relations,International Relations +443935,International Relations,International Relations +442266,International Relations,International Relations +439146,International Relations,International Relations +435858,International Relations,International Relations +435825,International Relations,International Relations +434041,International Relations,International Relations +433182,International Relations,International Relations +433178,International Relations,International Relations +433177,International Relations,International Relations +432598,International Relations,International Relations +432572,International Relations,International Relations +432571,International Relations,International Relations +431511,International Relations,International Relations +431308,International Relations,International Relations +431303,International Relations,International Relations +431301,International Relations,International Relations +431295,International Relations,International Relations +428739,International Relations,International Relations +428732,International Relations,International Relations +428727,International Relations,International Relations +428712,International Relations,International Relations +428704,International Relations,International Relations +428702,International Relations,International Relations +428697,International Relations,International Relations +428687,International Relations,International Relations +426495,International Relations,International Relations +426490,International Relations,International Relations +424438,International Relations,International Relations +423628,International Relations,International Relations +422354,International Relations,International Relations +422294,International Relations,International Relations +422243,International Relations,International Relations +422242,International Relations,International Relations +422240,International Relations,International Relations +420022,International Relations,International Relations +420019,International Relations,International Relations +419997,International Relations,International Relations +419995,International Relations,International Relations +419994,International Relations,International Relations +419992,International Relations,International Relations +419960,International Relations,International Relations +419837,International Relations,International Relations +418254,International Relations,International Relations +418245,International Relations,International Relations +418241,International Relations,International Relations +418234,International Relations,International Relations +417082,International Relations,International Relations +417063,International Relations,International Relations +417060,International Relations,International Relations +413380,International Relations,International Relations +413329,International Relations,International Relations +413320,International Relations,International Relations +413308,International Relations,International Relations +410275,International Relations,International Relations +410274,International Relations,International Relations +410271,International Relations,International Relations +409155,International Relations,International Relations +407919,International Relations,International Relations +407917,International Relations,International Relations +406911,International Relations,International Relations +406907,International Relations,International Relations +406905,International Relations,International Relations +405558,International Relations,International Relations +404365,International Relations,International Relations +404354,International Relations,International Relations +403877,International Relations,International Relations +403867,International Relations,International Relations +403852,International Relations,International Relations +400927,International Relations,International Relations +400920,International Relations,International Relations +398212,International Relations,International Relations +398204,International Relations,International Relations +398201,International Relations,International Relations +397834,International Relations,International Relations +396817,International Relations,International Relations +394489,International Relations,International Relations +392594,International Relations,International Relations +391394,International Relations,International Relations +391393,International Relations,International Relations +391375,International Relations,International Relations +391373,International Relations,International Relations +391363,International Relations,International Relations +388256,International Relations,International Relations +388225,International Relations,International Relations +385523,International Relations,International Relations +385478,International Relations,International Relations +385464,International Relations,International Relations +383999,International Relations,International Relations +383965,International Relations,International Relations +383852,International Relations,International Relations +381732,International Relations,International Relations +381728,International Relations,International Relations +381724,International Relations,International Relations +379870,International Relations,International Relations +379859,International Relations,International Relations +379852,International Relations,International Relations +376714,International Relations,International Relations +376701,International Relations,International Relations +374805,International Relations,International Relations +374793,International Relations,International Relations +374653,International Relations,International Relations +373048,International Relations,International Relations +373047,International Relations,International Relations +372712,International Relations,International Relations +372710,International Relations,International Relations +369926,International Relations,International Relations +369908,International Relations,International Relations +358113,International Relations,International Relations +350680,International Relations,International Relations +350633,International Relations,International Relations +349084,International Relations,International Relations +349065,International Relations,International Relations +346761,International Relations,International Relations +346760,International Relations,International Relations +346759,International Relations,International Relations +344997,International Relations,International Relations +543444,International Relations,International Relations +543429,International Relations,International Relations +543412,International Relations,International Relations +538098,International Relations,International Relations +537187,International Relations,International Relations +537183,International Relations,International Relations +537182,International Relations,International Relations +531146,International Relations,International Relations +531129,International Relations,International Relations +521761,International Relations,International Relations +521758,International Relations,International Relations +521754,International Relations,International Relations +519791,International Relations,International Relations +519788,International Relations,International Relations +519767,International Relations,International Relations +519753,International Relations,International Relations +517918,International Relations,International Relations +517903,International Relations,International Relations +517901,International Relations,International Relations +516877,International Relations,International Relations +514736,International Relations,International Relations +514735,International Relations,International Relations +514127,International Relations,International Relations +514122,International Relations,International Relations +514120,International Relations,International Relations +513336,International Relations,International Relations +513334,International Relations,International Relations +511211,International Relations,International Relations +511208,International Relations,International Relations +120216,Energy,Energy +120216,Environment,Environment +118196,Consumer Issues,Consumer Issues +117994,Energy,Energy +117997,Energy,Energy +157788,Energy,Energy +157994,Environment,Environment +157994,Regional Development,Regional Development +140275,Energy,Energy +201267,Energy,Energy +205370,Environment,Environment +196554,Infrastructure,Infrastructure +118185,Other,Pesticide Regulation +125201,International Trade,International Trade +156584,Transportation,Transportation +400823,Defence,Defence +170555,Environment,Environment +335954,Industry,Industry +230408,International Trade,International Trade +138356,Other,Long Term Space Plan +132241,Other,Space +123116,International Relations,International Relations +118894,Industry,Industry +146154,Transportation,Transportation +136674,Education,Education +126575,Employment and Training,Employment and Training +145095,Other,Regional issues +145873,Health,Health +118336,Justice and Law Enforcement,Justice and Law Enforcement +118394,Other,Briefing and discussion of the Canadian Space Plan +270311,Energy,Energy +187484,Environment,Environment +325473,Industry,Industry +146936,Other,Health Promotion +146180,Government Procurement,Government Procurement +119234,Other,ITAR +311774,Infrastructure,Infrastructure +118536,Other,livestock industry +118554,Infrastructure,Infrastructure +118554,Other,livestock industry +252373,Agriculture,Agriculture +118574,Infrastructure,Infrastructure +118574,Other,livestock industry +121218,Infrastructure,Infrastructure +449460,Agriculture,Agriculture +476434,Infrastructure,Infrastructure +118575,Other,livestock industry +118594,Other,crop & pasture damages caused by Richardson ground squirrels & control research project +118594,Other,Farm & Ranch Water Infrastruture Program +355705,Infrastructure,Infrastructure +118595,Other,livestock industry +252368,Agriculture,Agriculture +372882,Infrastructure,Infrastructure +118614,Other,livestock industry +118615,Infrastructure,Infrastructure +118615,Other,livestock industry +118616,Infrastructure,Infrastructure +118616,Other,livestock industry +118634,Infrastructure,Infrastructure +118634,Other,livestock industry +118674,Other,livestock industry +118674,Other,Infrastructure +129734,Government Procurement,Government Procurement +118754,Other,Climate change +118814,Other,climate change policy +118836,Other,Product Recalls and Traceability +153401,Other,Income Tax +118874,Other,Warning Labels +118955,Other,"Discussion about Canadian defense industrial base, Overview of General Dynamics OTS-C's activities in Canada and about Munitions Supply Program." +118975,Other,C-6 Canada Consumer Products Safety Act +118976,Other,communications on the Chemicals Management Plan under CEPA +118977,Other,William! Won't You Wash Your Hands? announcement +118978,Other,William! Won't You Wash Your Hands announcement +118979,Other,William! Won't You Wash Your Hands? announcement +118980,Other,Bill C-6 Canada Consumer Product Safety Act +118981,Other,Update & overview of Pest Control Products Act and Regulations +118982,Other,Ontario Bill 167 and consistency with the Chemicals Management Plan under CEPA +118983,Other,CEPA - VOC and Phosphorus Regulation +118984,Other,Priorities at Industry Canada in the Resource Manufacturing Branch +118985,Other,Hazardous Products Act +118986,Other,Phosphorus Regulations +118987,Other,"Chemicals Management Plan - Batches 2, 4 and 8" +118988,Other,"Bill C51,Bill C52,Chemicals Management Plan,Phosphorus Concentration Regulations,single jurisdiction for disinfectants" +118989,Other,"Bill C51,Bill C52,Chemicals Management Plan,Phosphorus Concentration Regulations,single jurisdiction for disinfectants" +118990,Other,Bill C51-amendments to Food & Drugs Act +118990,Other,Bill C52-modernization of Hazardous Products Act +118990,Other,possible handwashing initiatives +118991,Other,C-52 +118991,Other,CEPA Chemicals Management Plan +118992,Other,Pest Control Products Act Regulations in respect of Ontario pesticide law +118993,Other,Bill C-52 +118994,Other,Bill C-52 +118994,Other,CEPA +118995,Other,Batch 2 Siloxanes +118995,Other,CEPA +118995,Other,Chemicals Management Plan +118996,Other,communications +118996,Other,cosmetic pesticides +118996,Other,pest control products issues +118997,Other,Accountability Act +118998,Other,CEPA +118998,Other,Chemicals Management Plan +118998,Other,Hazardous Products Act +118999,Other,request for meeting re IMEP for treated articles +119000,Other,PMAC Meeting-pest control issues +119001,Other,Chemicals Management Plan +119003,Other,"C-51, reintroduction of amendments to the Food and Drugs Act" +119003,Other,"C-6, Canada Consumer Product Safety Act and regulations" +472332,Taxation and Finance,Taxation and Finance +127814,Other,Internal Credential Management +227144,Energy,Energy +488106,Energy,Energy +541857,Environment,Environment +488130,Industry,Industry +522375,Taxation and Finance,Taxation and Finance +134978,Other,Pension issues +489628,Taxation and Finance,Taxation and Finance +370327,Consumer Issues,Consumer Issues +136595,Other,Advertising +119214,Other,Allergens +119214,Other,Pre-market approvals for novel foods +136595,Other,Sodium Reduction +119214,Other,Transfat +158488,Health,Health +119296,Other,CF-18 OWSM +413473,Defence,Défense +119314,Other,CF-18 OWSM +119317,Other,CF-18 OWSM +119316,Defence,Défense +119334,Other,Treasury Board Briefing CF-18 +119335,Other,Treasury Board Briefing CF-18 +119354,Other,Treasury Board Briefing CF-18 +121270,Environment,Environment +145864,Energy,Energy +138400,Environment,Environment +124398,Government Procurement,Government Procurement +485039,International Relations,International Relations +153735,Defence,Defence +138605,Other,Economy +146210,Infrastructure,Infrastructure +138593,International Trade,International Trade +138603,Taxation and Finance,Taxation and Finance +119434,Other,Seeking demonstration project funding for underground power +119436,Other,CAF application +119437,Other,Application process for a drug approval +408749,Taxation and Finance,Taxation and Finance +138154,Education,Education +138455,Industry,Industry +119536,Other,International Trade +138154,Infrastructure,Infrastructure +119496,Other,"Port Policy & Port Infrastructure, Via Rail Infrastructure, Rail service review" +119514,Other,Economic Recovery +119514,Other,U.S. Protectionism +119534,International Relations,International Relations +203797,Constitutional Issues,Constitutional Issues +224528,Internal Trade,Internal Trade +158864,Justice and Law Enforcement,Justice and Law Enforcement +129554,Other,Foreign ownership rules for satellite providers +145676,Other,Request for Funding for Canadian Lumber Trade Alliance +137617,Other,International Trade - request for funding for Canadian Lumber Trade Alliance +465545,Education,Education +498413,Financial Institutions,Financial Institutions +138160,Other,federal pensions and benefits +142435,Other,seniors health and social issues +472755,Taxation and Finance,Taxation and Finance +119714,Other,discuss TRIUMF’s proposal to build a new accelerator +119734,Other,Colombia +119734,Other,Human Rights +119735,Other,1. The development dimension and impacts of climate change. +119735,Other,2. What Canada sees as feasible for negotiating a post-2012 climate change agreement in Copenhagen in December of 2009. +119735,Other,3. The new Oxfam report on the humanitarian dimensions of climate change. +119736,Other,Contribution Agreements +119736,Other,Contribution Agreements +119736,Other,Renewal of CCIC members' contribution agreements. +119737,Other,Embassy Magazine article on publicity requirements in proposed contribution agreements. +119738,Other,"A follow-up meeting requested by Stephen Kelly to discuss a memo that was provided to him after the May 12, 2009, meeting." +119739,Other,"Attended by Ingrid Srinath, CIVICUS." +119739,Other,CIVICUS -- World Alliance for Citizen Participation +193234,Taxation and Finance,Taxation and Finance +119914,Other,Cooperation with Veterans Affaiirs on programming for veterans +119914,Other,Modernization of the Accountability Framework for Commissionaires +119934,Other,Bill C-6 Reporting Requirements +119934,Consumer Issues,Consumer Issues +119954,Other,airport infrastructure financing +148297,Industry,Industry +148443,Energy,Energy +148443,Industry,Industry +120120,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +120121,Other,Quality Urban Energy Systems for Tomorrow (QUEST) +129775,Government Procurement,Government Procurement +120175,Health,Health +120235,Other,Introduction to CREA +125315,Taxation and Finance,Taxation and Finance +120256,Other,Radiodiffusion +138042,Other,Rail service review +141720,Other,Rail Safety +120354,Other,Dairy Supply Management +128615,Employment and Training,Employment and Training +128614,Mining,Mining +128615,Regional Development,Regional Development +128615,Transportation,Transportation +124178,Employment and Training,Employment and Training +128634,Transportation,Transportation +128597,Employment and Training,Employment and Training +128597,Transportation,Transportation +120434,Other,Clemency Policy +120434,Other,Aboriginal School Survivors +120454,Other,"Canada/US Energy Dialogue, CCS Roundtable" +120454,Other,"Canada/US Energy Dialogue, CCS Roundtable" +120456,Other,GHG Regulatory Framework +127936,Other,Class Action Law Suit +120775,Other,Foreign Trade Zones (FTZ) +120783,Other,Foreign Trade Zones (FTZ) +120783,Other,H1N1 Planning - for airports +120783,Other,Behavioural Pattern Recognition +120784,Other,Foreign Trade Zones (FTZ) +131779,Industry,Industry +438078,Environment,Environment +290211,Environment,Environment +128887,International Trade,International Trade +121242,Other,Research /Rx&D +120857,Other,Cost Recovery +120897,Other,Winnipeg Airport Authority initiative to locate an advanced composite manufacturing facility on their airport campus site. +120900,Other,Bill C-6 +120903,Other,Food and Drugs Act +120904,Other,Food and Drugs Act +120913,Industry,Industry +120938,Other,Corporate Announcements +120938,Other,Operations +120941,Other,Corporate Announcements +138866,Other,Operations +120943,Other,Corporate Announcements +142637,Other,Operations +120995,Defence,Défense +120995,Environment,Environnement +120995,Infrastructure,Infrastructure +121019,Defence,Défense +121019,Environment,Environnement +121019,Infrastructure,Infrastructure +121094,Other,Federal Jurisdiction of an Aerodrome +121116,Small Business,Small Business +121119,Other,Energy +121127,Environment,Environment +134094,Fisheries,Fisheries +121189,Other,General radio and TV policy matters +121194,Other,Federal Framework on Air Emissions +121191,Other,CRTC Broadcasting licence and ruling +121192,Other,CRTC Broadcasting licence and ruling +121195,Other,CCS Funding +121214,Infrastructure,Infrastructure +121214,Taxation and Finance,Taxation and Finance +125054,Other,Email re setting up a meeting to discuss Corus Entertainment & how advertising on our broadcast assets could help the Government communicate key messages +160142,Other,Issues of importance to Evangelicals as Canadaians +121275,Other,Participation au cocktail sur le 40e anniversaire de la loi sur les langues officielles +121280,Other,"Civil Aviation Policy, as it relates to policies and guidance impacting Jaz Air LP's operations domestically and abroad." +121280,Other,"Environment, as it relates to domestic and international aviation environmental policies and frameworks concerning aviation emissions." +121296,Other,Greenhouse Gas (GHG) +121305,Other,Aerospace +140994,Other,Investment Canada Act +121310,Other,Investment Canada Act +121312,Other,Investment Canada Act +121314,Other,Investment Canada Act +121313,Other,Advanced Composites Manufacturing information request +381406,Sports,Sports +272291,Energy,Energy +121355,Other,Scrappage Program +121357,Other,Scrappage Program +121358,Other,Scrappage Program +121360,Other,Scrappage Program +121383,Other,Protocol +121395,Other,Contrat d'affiliation +124494,Agriculture,Agriculture +124494,Transportation,Transportation +137797,Agriculture,Agriculture +137797,Transportation,Transportation +124864,Agriculture,Agriculture +124864,Transportation,Transportation +121514,Other,Regulatory Harmonization +121534,Other,Buy America Issue +150524,Health,Health +508797,International Relations,International Relations +508696,International Relations,International Relations +508695,International Relations,International Relations +508694,International Relations,International Relations +508689,International Relations,International Relations +508686,International Relations,International Relations +505609,International Relations,International Relations +502440,International Relations,International Relations +502432,International Relations,International Relations +502411,International Relations,International Relations +499218,International Relations,International Relations +495884,International Relations,International Relations +491124,International Relations,International Relations +491117,International Relations,International Relations +488344,International Relations,International Relations +488343,International Relations,International Relations +138603,Other,Economy +138593,Other,Economy +146210,Other,Economy +130594,International Trade,International Trade +150745,International Trade,International Trade +138606,International Trade,International Trade +166022,Taxation and Finance,Taxation and Finance +150745,Taxation and Finance,Taxation and Finance +138605,Taxation and Finance,Taxation and Finance +407298,Taxation and Finance,Taxation and Finance +406325,Taxation and Finance,Taxation and Finance +386984,Taxation and Finance,Taxation and Finance +386453,Taxation and Finance,Taxation and Finance +367624,Taxation and Finance,Taxation and Finance +367551,Taxation and Finance,Taxation and Finance +355483,Taxation and Finance,Taxation and Finance +355482,Taxation and Finance,Taxation and Finance +355481,Taxation and Finance,Taxation and Finance +355480,Taxation and Finance,Taxation and Finance +355478,Taxation and Finance,Taxation and Finance +355477,Taxation and Finance,Taxation and Finance +355476,Taxation and Finance,Taxation and Finance +355473,Taxation and Finance,Taxation and Finance +355467,Taxation and Finance,Taxation and Finance +355464,Taxation and Finance,Taxation and Finance +355462,Taxation and Finance,Taxation and Finance +355459,Taxation and Finance,Taxation and Finance +355451,Taxation and Finance,Taxation and Finance +355448,Taxation and Finance,Taxation and Finance +355446,Taxation and Finance,Taxation and Finance +355444,Taxation and Finance,Taxation and Finance +355442,Taxation and Finance,Taxation and Finance +355439,Taxation and Finance,Taxation and Finance +355437,Taxation and Finance,Taxation and Finance +355434,Taxation and Finance,Taxation and Finance +355431,Taxation and Finance,Taxation and Finance +355430,Taxation and Finance,Taxation and Finance +355428,Taxation and Finance,Taxation and Finance +347957,Taxation and Finance,Taxation and Finance +347956,Taxation and Finance,Taxation and Finance +347955,Taxation and Finance,Taxation and Finance +347953,Taxation and Finance,Taxation and Finance +347952,Taxation and Finance,Taxation and Finance +347951,Taxation and Finance,Taxation and Finance +347950,Taxation and Finance,Taxation and Finance +347949,Taxation and Finance,Taxation and Finance +347948,Taxation and Finance,Taxation and Finance +347947,Taxation and Finance,Taxation and Finance +347946,Taxation and Finance,Taxation and Finance +347945,Taxation and Finance,Taxation and Finance +347944,Taxation and Finance,Taxation and Finance +347943,Taxation and Finance,Taxation and Finance +347942,Taxation and Finance,Taxation and Finance +347941,Taxation and Finance,Taxation and Finance +347940,Taxation and Finance,Taxation and Finance +482950,Taxation and Finance,Taxation and Finance +480851,Taxation and Finance,Taxation and Finance +478822,Taxation and Finance,Taxation and Finance +476262,Taxation and Finance,Taxation and Finance +474181,Taxation and Finance,Taxation and Finance +474178,Taxation and Finance,Taxation and Finance +463668,Taxation and Finance,Taxation and Finance +463666,Taxation and Finance,Taxation and Finance +463665,Taxation and Finance,Taxation and Finance +463465,Taxation and Finance,Taxation and Finance +461068,Taxation and Finance,Taxation and Finance +461067,Taxation and Finance,Taxation and Finance +460915,Taxation and Finance,Taxation and Finance +460913,Taxation and Finance,Taxation and Finance +460911,Taxation and Finance,Taxation and Finance +456784,Taxation and Finance,Taxation and Finance +454182,Taxation and Finance,Taxation and Finance +454178,Taxation and Finance,Taxation and Finance +454177,Taxation and Finance,Taxation and Finance +454175,Taxation and Finance,Taxation and Finance +451223,Taxation and Finance,Taxation and Finance +451217,Taxation and Finance,Taxation and Finance +451216,Taxation and Finance,Taxation and Finance +448918,Taxation and Finance,Taxation and Finance +446377,Taxation and Finance,Taxation and Finance +444478,Taxation and Finance,Taxation and Finance +443125,Taxation and Finance,Taxation and Finance +443043,Taxation and Finance,Taxation and Finance +440309,Taxation and Finance,Taxation and Finance +440301,Taxation and Finance,Taxation and Finance +440293,Taxation and Finance,Taxation and Finance +440292,Taxation and Finance,Taxation and Finance +440291,Taxation and Finance,Taxation and Finance +440290,Taxation and Finance,Taxation and Finance +440289,Taxation and Finance,Taxation and Finance +440288,Taxation and Finance,Taxation and Finance +440287,Taxation and Finance,Taxation and Finance +440286,Taxation and Finance,Taxation and Finance +440284,Taxation and Finance,Taxation and Finance +440283,Taxation and Finance,Taxation and Finance +440282,Taxation and Finance,Taxation and Finance +440281,Taxation and Finance,Taxation and Finance +440279,Taxation and Finance,Taxation and Finance +440277,Taxation and Finance,Taxation and Finance +440276,Taxation and Finance,Taxation and Finance +440275,Taxation and Finance,Taxation and Finance +440274,Taxation and Finance,Taxation and Finance +440273,Taxation and Finance,Taxation and Finance +440270,Taxation and Finance,Taxation and Finance +437441,Taxation and Finance,Taxation and Finance +437436,Taxation and Finance,Taxation and Finance +437434,Taxation and Finance,Taxation and Finance +437433,Taxation and Finance,Taxation and Finance +434571,Taxation and Finance,Taxation and Finance +433187,Taxation and Finance,Taxation and Finance +427568,Taxation and Finance,Taxation and Finance +427561,Taxation and Finance,Taxation and Finance +427558,Taxation and Finance,Taxation and Finance +425275,Taxation and Finance,Taxation and Finance +423205,Taxation and Finance,Taxation and Finance +418842,Taxation and Finance,Taxation and Finance +417513,Taxation and Finance,Taxation and Finance +414451,Taxation and Finance,Taxation and Finance +414450,Taxation and Finance,Taxation and Finance +414449,Taxation and Finance,Taxation and Finance +414448,Taxation and Finance,Taxation and Finance +414445,Taxation and Finance,Taxation and Finance +414390,Taxation and Finance,Taxation and Finance +414388,Taxation and Finance,Taxation and Finance +414385,Taxation and Finance,Taxation and Finance +414383,Taxation and Finance,Taxation and Finance +414380,Taxation and Finance,Taxation and Finance +414375,Taxation and Finance,Taxation and Finance +414374,Taxation and Finance,Taxation and Finance +414373,Taxation and Finance,Taxation and Finance +414372,Taxation and Finance,Taxation and Finance +414371,Taxation and Finance,Taxation and Finance +414370,Taxation and Finance,Taxation and Finance +414369,Taxation and Finance,Taxation and Finance +414367,Taxation and Finance,Taxation and Finance +414365,Taxation and Finance,Taxation and Finance +411239,Taxation and Finance,Taxation and Finance +411237,Taxation and Finance,Taxation and Finance +411235,Taxation and Finance,Taxation and Finance +411233,Taxation and Finance,Taxation and Finance +411232,Taxation and Finance,Taxation and Finance +411221,Taxation and Finance,Taxation and Finance +408753,Taxation and Finance,Taxation and Finance +408752,Taxation and Finance,Taxation and Finance +408751,Taxation and Finance,Taxation and Finance +408750,Taxation and Finance,Taxation and Finance +131612,Education,Education +131609,Education,Education +138455,Education,Education +138166,Education,Education +138155,Education,Education +138166,Industry,Industry +138155,Industry,Industry +138154,Industry,Industry +131612,Industry,Industry +131609,Industry,Industry +131612,Infrastructure,Infrastructure +131609,Infrastructure,Infrastructure +138455,Infrastructure,Infrastructure +138166,Infrastructure,Infrastructure +138155,Infrastructure,Infrastructure +119495,Other,"Port Policy & Port Infrastructure, Via Rail Infrastructure, Rail service review" +119494,Other,"Port Policy & Port Infrastructure, Via Rail Infrastructure, Rail service review" +119499,Other,"Port Policy & Port Infrastructure, Via Rail Infrastructure, Rail service review" +302509,International Relations,International Relations +185084,International Relations,International Relations +119535,International Relations,International Relations +166290,Constitutional Issues,Constitutional Issues +166289,Constitutional Issues,Constitutional Issues +155311,Constitutional Issues,Constitutional Issues +153816,Constitutional Issues,Constitutional Issues +160288,Constitutional Issues,Constitutional Issues +158866,Constitutional Issues,Constitutional Issues +158865,Constitutional Issues,Constitutional Issues +158864,Constitutional Issues,Constitutional Issues +158858,Constitutional Issues,Constitutional Issues +155315,Constitutional Issues,Constitutional Issues +209626,Constitutional Issues,Constitutional Issues +209625,Constitutional Issues,Constitutional Issues +209624,Constitutional Issues,Constitutional Issues +209623,Constitutional Issues,Constitutional Issues +209622,Constitutional Issues,Constitutional Issues +219789,Internal Trade,Internal Trade +209624,Internal Trade,Internal Trade +158070,Internal Trade,Internal Trade +149436,Internal Trade,Internal Trade +158863,Justice and Law Enforcement,Justice and Law Enforcement +153816,Justice and Law Enforcement,Justice and Law Enforcement +158866,Justice and Law Enforcement,Justice and Law Enforcement +158865,Justice and Law Enforcement,Justice and Law Enforcement +119675,Other,Request for Funding for Canadian Lumber Trade Alliance +119677,Other,International Trade - request for funding for Canadian Lumber Trade Alliance +465544,Education,Education +465543,Education,Education +436318,Education,Education +433186,Education,Education +433185,Education,Education +433184,Education,Education +529980,Education,Education +527198,Education,Education +527195,Education,Education +527193,Education,Education +527189,Education,Education +527187,Education,Education +527183,Education,Education +527182,Education,Education +526735,Education,Education +526733,Education,Education +526730,Education,Education +526728,Education,Education +503302,Education,Education +487398,Education,Education +465597,Education,Education +465596,Education,Education +465595,Education,Education +465594,Education,Education +465592,Education,Education +465590,Education,Education +465589,Education,Education +465584,Education,Education +465583,Education,Education +465582,Education,Education +465581,Education,Education +465580,Education,Education +465579,Education,Education +465578,Education,Education +465577,Education,Education +465576,Education,Education +465575,Education,Education +465574,Education,Education +465573,Education,Education +465572,Education,Education +465570,Education,Education +465569,Education,Education +465568,Education,Education +465567,Education,Education +465565,Education,Education +465564,Education,Education +465563,Education,Education +465562,Education,Education +465561,Education,Education +465560,Education,Education +465559,Education,Education +465557,Education,Education +465556,Education,Education +465555,Education,Education +465554,Education,Education +465553,Education,Education +465552,Education,Education +465551,Education,Education +465550,Education,Education +465549,Education,Education +465548,Education,Education +465547,Education,Education +465546,Education,Education +498411,Financial Institutions,Financial Institutions +498409,Financial Institutions,Financial Institutions +163224,Financial Institutions,Financial Institutions +163089,Financial Institutions,Financial Institutions +163088,Financial Institutions,Financial Institutions +163087,Financial Institutions,Financial Institutions +227307,Financial Institutions,Financial Institutions +227305,Financial Institutions,Financial Institutions +224387,Financial Institutions,Financial Institutions +213867,Financial Institutions,Financial Institutions +208487,Financial Institutions,Financial Institutions +181684,Financial Institutions,Financial Institutions +181664,Financial Institutions,Financial Institutions +181604,Financial Institutions,Financial Institutions +297329,Financial Institutions,Financial Institutions +242130,Financial Institutions,Financial Institutions +242129,Financial Institutions,Financial Institutions +436318,Financial Institutions,Financial Institutions +436317,Financial Institutions,Financial Institutions +436316,Financial Institutions,Financial Institutions +436315,Financial Institutions,Financial Institutions +436314,Financial Institutions,Financial Institutions +436313,Financial Institutions,Financial Institutions +436312,Financial Institutions,Financial Institutions +436311,Financial Institutions,Financial Institutions +436310,Financial Institutions,Financial Institutions +436309,Financial Institutions,Financial Institutions +436308,Financial Institutions,Financial Institutions +436307,Financial Institutions,Financial Institutions +436306,Financial Institutions,Financial Institutions +436305,Financial Institutions,Financial Institutions +436304,Financial Institutions,Financial Institutions +436303,Financial Institutions,Financial Institutions +436302,Financial Institutions,Financial Institutions +436301,Financial Institutions,Financial Institutions +436300,Financial Institutions,Financial Institutions +436299,Financial Institutions,Financial Institutions +436292,Financial Institutions,Financial Institutions +436290,Financial Institutions,Financial Institutions +436289,Financial Institutions,Financial Institutions +436288,Financial Institutions,Financial Institutions +436287,Financial Institutions,Financial Institutions +436286,Financial Institutions,Financial Institutions +436283,Financial Institutions,Financial Institutions +436279,Financial Institutions,Financial Institutions +436277,Financial Institutions,Financial Institutions +436275,Financial Institutions,Financial Institutions +436273,Financial Institutions,Financial Institutions +436272,Financial Institutions,Financial Institutions +436271,Financial Institutions,Financial Institutions +436270,Financial Institutions,Financial Institutions +436269,Financial Institutions,Financial Institutions +436268,Financial Institutions,Financial Institutions +436267,Financial Institutions,Financial Institutions +436266,Financial Institutions,Financial Institutions +436265,Financial Institutions,Financial Institutions +436262,Financial Institutions,Financial Institutions +436261,Financial Institutions,Financial Institutions +436259,Financial Institutions,Financial Institutions +436258,Financial Institutions,Financial Institutions +436257,Financial Institutions,Financial Institutions +434415,Financial Institutions,Financial Institutions +434413,Financial Institutions,Financial Institutions +433186,Financial Institutions,Financial Institutions +433185,Financial Institutions,Financial Institutions +433184,Financial Institutions,Financial Institutions +433183,Financial Institutions,Financial Institutions +397203,Financial Institutions,Financial Institutions +397202,Financial Institutions,Financial Institutions +397194,Financial Institutions,Financial Institutions +397191,Financial Institutions,Financial Institutions +391923,Financial Institutions,Financial Institutions +391922,Financial Institutions,Financial Institutions +391769,Financial Institutions,Financial Institutions +498407,Financial Institutions,Financial Institutions +498404,Financial Institutions,Financial Institutions +498403,Financial Institutions,Financial Institutions +498401,Financial Institutions,Financial Institutions +498397,Financial Institutions,Financial Institutions +498395,Financial Institutions,Financial Institutions +498394,Financial Institutions,Financial Institutions +498393,Financial Institutions,Financial Institutions +498391,Financial Institutions,Financial Institutions +498390,Financial Institutions,Financial Institutions +498387,Financial Institutions,Financial Institutions +498386,Financial Institutions,Financial Institutions +498384,Financial Institutions,Financial Institutions +498381,Financial Institutions,Financial Institutions +498308,Financial Institutions,Financial Institutions +498307,Financial Institutions,Financial Institutions +498306,Financial Institutions,Financial Institutions +498305,Financial Institutions,Financial Institutions +498303,Financial Institutions,Financial Institutions +498301,Financial Institutions,Financial Institutions +498300,Financial Institutions,Financial Institutions +498299,Financial Institutions,Financial Institutions +498297,Financial Institutions,Financial Institutions +498296,Financial Institutions,Financial Institutions +498295,Financial Institutions,Financial Institutions +498294,Financial Institutions,Financial Institutions +498293,Financial Institutions,Financial Institutions +498292,Financial Institutions,Financial Institutions +498291,Financial Institutions,Financial Institutions +498290,Financial Institutions,Financial Institutions +498289,Financial Institutions,Financial Institutions +498288,Financial Institutions,Financial Institutions +498285,Financial Institutions,Financial Institutions +498282,Financial Institutions,Financial Institutions +498279,Financial Institutions,Financial Institutions +498277,Financial Institutions,Financial Institutions +497739,Financial Institutions,Financial Institutions +497738,Financial Institutions,Financial Institutions +497737,Financial Institutions,Financial Institutions +497736,Financial Institutions,Financial Institutions +497735,Financial Institutions,Financial Institutions +497734,Financial Institutions,Financial Institutions +497733,Financial Institutions,Financial Institutions +497732,Financial Institutions,Financial Institutions +497731,Financial Institutions,Financial Institutions +497730,Financial Institutions,Financial Institutions +497729,Financial Institutions,Financial Institutions +497728,Financial Institutions,Financial Institutions +497727,Financial Institutions,Financial Institutions +497726,Financial Institutions,Financial Institutions +497725,Financial Institutions,Financial Institutions +497724,Financial Institutions,Financial Institutions +493913,Financial Institutions,Financial Institutions +487398,Financial Institutions,Financial Institutions +485934,Financial Institutions,Financial Institutions +485932,Financial Institutions,Financial Institutions +481430,Financial Institutions,Financial Institutions +478484,Financial Institutions,Financial Institutions +478483,Financial Institutions,Financial Institutions +465597,Financial Institutions,Financial Institutions +465596,Financial Institutions,Financial Institutions +465595,Financial Institutions,Financial Institutions +465594,Financial Institutions,Financial Institutions +465592,Financial Institutions,Financial Institutions +465590,Financial Institutions,Financial Institutions +465589,Financial Institutions,Financial Institutions +465584,Financial Institutions,Financial Institutions +465583,Financial Institutions,Financial Institutions +465582,Financial Institutions,Financial Institutions +465581,Financial Institutions,Financial Institutions +465580,Financial Institutions,Financial Institutions +465579,Financial Institutions,Financial Institutions +465578,Financial Institutions,Financial Institutions +465577,Financial Institutions,Financial Institutions +465576,Financial Institutions,Financial Institutions +465575,Financial Institutions,Financial Institutions +465574,Financial Institutions,Financial Institutions +465573,Financial Institutions,Financial Institutions +465572,Financial Institutions,Financial Institutions +465570,Financial Institutions,Financial Institutions +465569,Financial Institutions,Financial Institutions +465568,Financial Institutions,Financial Institutions +465567,Financial Institutions,Financial Institutions +465565,Financial Institutions,Financial Institutions +465564,Financial Institutions,Financial Institutions +465563,Financial Institutions,Financial Institutions +465562,Financial Institutions,Financial Institutions +465561,Financial Institutions,Financial Institutions +465560,Financial Institutions,Financial Institutions +465559,Financial Institutions,Financial Institutions +465557,Financial Institutions,Financial Institutions +465556,Financial Institutions,Financial Institutions +465555,Financial Institutions,Financial Institutions +465554,Financial Institutions,Financial Institutions +465553,Financial Institutions,Financial Institutions +465552,Financial Institutions,Financial Institutions +465551,Financial Institutions,Financial Institutions +465550,Financial Institutions,Financial Institutions +465549,Financial Institutions,Financial Institutions +465548,Financial Institutions,Financial Institutions +465547,Financial Institutions,Financial Institutions +465546,Financial Institutions,Financial Institutions +465545,Financial Institutions,Financial Institutions +465544,Financial Institutions,Financial Institutions +465543,Financial Institutions,Financial Institutions +465542,Financial Institutions,Financial Institutions +465541,Financial Institutions,Financial Institutions +465540,Financial Institutions,Financial Institutions +465539,Financial Institutions,Financial Institutions +465337,Financial Institutions,Financial Institutions +465336,Financial Institutions,Financial Institutions +462497,Financial Institutions,Financial Institutions +461457,Financial Institutions,Financial Institutions +454480,Financial Institutions,Financial Institutions +454370,Financial Institutions,Financial Institutions +454369,Financial Institutions,Financial Institutions +454368,Financial Institutions,Financial Institutions +454367,Financial Institutions,Financial Institutions +454365,Financial Institutions,Financial Institutions +454360,Financial Institutions,Financial Institutions +454359,Financial Institutions,Financial Institutions +454358,Financial Institutions,Financial Institutions +454357,Financial Institutions,Financial Institutions +454356,Financial Institutions,Financial Institutions +454355,Financial Institutions,Financial Institutions +454354,Financial Institutions,Financial Institutions +454350,Financial Institutions,Financial Institutions +454349,Financial Institutions,Financial Institutions +454348,Financial Institutions,Financial Institutions +454347,Financial Institutions,Financial Institutions +454346,Financial Institutions,Financial Institutions +454344,Financial Institutions,Financial Institutions +454340,Financial Institutions,Financial Institutions +454337,Financial Institutions,Financial Institutions +453794,Financial Institutions,Financial Institutions +453793,Financial Institutions,Financial Institutions +453792,Financial Institutions,Financial Institutions +453791,Financial Institutions,Financial Institutions +453790,Financial Institutions,Financial Institutions +453789,Financial Institutions,Financial Institutions +453788,Financial Institutions,Financial Institutions +453787,Financial Institutions,Financial Institutions +453786,Financial Institutions,Financial Institutions +453785,Financial Institutions,Financial Institutions +453784,Financial Institutions,Financial Institutions +453783,Financial Institutions,Financial Institutions +453782,Financial Institutions,Financial Institutions +453781,Financial Institutions,Financial Institutions +453780,Financial Institutions,Financial Institutions +453779,Financial Institutions,Financial Institutions +453778,Financial Institutions,Financial Institutions +453777,Financial Institutions,Financial Institutions +453776,Financial Institutions,Financial Institutions +453775,Financial Institutions,Financial Institutions +453773,Financial Institutions,Financial Institutions +446107,Financial Institutions,Financial Institutions +446106,Financial Institutions,Financial Institutions +446105,Financial Institutions,Financial Institutions +446104,Financial Institutions,Financial Institutions +446103,Financial Institutions,Financial Institutions +534111,Financial Institutions,Financial Institutions +530807,Financial Institutions,Financial Institutions +530271,Financial Institutions,Financial Institutions +529983,Financial Institutions,Financial Institutions +529981,Financial Institutions,Financial Institutions +529980,Financial Institutions,Financial Institutions +527443,Financial Institutions,Financial Institutions +527439,Financial Institutions,Financial Institutions +527238,Financial Institutions,Financial Institutions +527237,Financial Institutions,Financial Institutions +527236,Financial Institutions,Financial Institutions +527234,Financial Institutions,Financial Institutions +527233,Financial Institutions,Financial Institutions +527232,Financial Institutions,Financial Institutions +527231,Financial Institutions,Financial Institutions +527230,Financial Institutions,Financial Institutions +527229,Financial Institutions,Financial Institutions +527227,Financial Institutions,Financial Institutions +527226,Financial Institutions,Financial Institutions +527225,Financial Institutions,Financial Institutions +527223,Financial Institutions,Financial Institutions +527222,Financial Institutions,Financial Institutions +527221,Financial Institutions,Financial Institutions +527220,Financial Institutions,Financial Institutions +527219,Financial Institutions,Financial Institutions +527218,Financial Institutions,Financial Institutions +527217,Financial Institutions,Financial Institutions +527216,Financial Institutions,Financial Institutions +527215,Financial Institutions,Financial Institutions +527214,Financial Institutions,Financial Institutions +527213,Financial Institutions,Financial Institutions +527212,Financial Institutions,Financial Institutions +527210,Financial Institutions,Financial Institutions +527209,Financial Institutions,Financial Institutions +527208,Financial Institutions,Financial Institutions +527207,Financial Institutions,Financial Institutions +527206,Financial Institutions,Financial Institutions +527205,Financial Institutions,Financial Institutions +527204,Financial Institutions,Financial Institutions +527203,Financial Institutions,Financial Institutions +527202,Financial Institutions,Financial Institutions +527201,Financial Institutions,Financial Institutions +527200,Financial Institutions,Financial Institutions +527199,Financial Institutions,Financial Institutions +527198,Financial Institutions,Financial Institutions +527197,Financial Institutions,Financial Institutions +527195,Financial Institutions,Financial Institutions +527194,Financial Institutions,Financial Institutions +527193,Financial Institutions,Financial Institutions +527192,Financial Institutions,Financial Institutions +527190,Financial Institutions,Financial Institutions +527189,Financial Institutions,Financial Institutions +527188,Financial Institutions,Financial Institutions +527187,Financial Institutions,Financial Institutions +527186,Financial Institutions,Financial Institutions +527184,Financial Institutions,Financial Institutions +527183,Financial Institutions,Financial Institutions +527182,Financial Institutions,Financial Institutions +526735,Financial Institutions,Financial Institutions +526733,Financial Institutions,Financial Institutions +526730,Financial Institutions,Financial Institutions +526728,Financial Institutions,Financial Institutions +526726,Financial Institutions,Financial Institutions +526723,Financial Institutions,Financial Institutions +514908,Financial Institutions,Financial Institutions +511712,Financial Institutions,Financial Institutions +503302,Financial Institutions,Financial Institutions +498420,Financial Institutions,Financial Institutions +498419,Financial Institutions,Financial Institutions +498417,Financial Institutions,Financial Institutions +498416,Financial Institutions,Financial Institutions +498415,Financial Institutions,Financial Institutions +138140,Other,federal pensions and benefits +138139,Other,federal pensions and benefits +138138,Other,federal pensions and benefits +137354,Other,federal pensions and benefits +131019,Other,federal pensions and benefits +131018,Other,federal pensions and benefits +131017,Other,federal pensions and benefits +131016,Other,federal pensions and benefits +131015,Other,federal pensions and benefits +131014,Other,federal pensions and benefits +153037,Other,federal pensions and benefits +145903,Other,federal pensions and benefits +145902,Other,federal pensions and benefits +138536,Other,federal pensions and benefits +138535,Other,federal pensions and benefits +138534,Other,federal pensions and benefits +138175,Other,federal pensions and benefits +138174,Other,federal pensions and benefits +138161,Other,federal pensions and benefits +138159,Other,seniors health and social issues +138158,Other,seniors health and social issues +142438,Other,seniors health and social issues +472754,Taxation and Finance,Taxation and Finance +470174,Taxation and Finance,Taxation and Finance +193254,Taxation and Finance,Taxation and Finance +163728,Taxation and Finance,Taxation and Finance +163727,Taxation and Finance,Taxation and Finance +163726,Taxation and Finance,Taxation and Finance +163725,Taxation and Finance,Taxation and Finance +161471,Taxation and Finance,Taxation and Finance +161468,Taxation and Finance,Taxation and Finance +156749,Taxation and Finance,Taxation and Finance +156748,Taxation and Finance,Taxation and Finance +154806,Taxation and Finance,Taxation and Finance +452224,Taxation and Finance,Taxation and Finance +452221,Taxation and Finance,Taxation and Finance +446679,Taxation and Finance,Taxation and Finance +446678,Taxation and Finance,Taxation and Finance +446677,Taxation and Finance,Taxation and Finance +446676,Taxation and Finance,Taxation and Finance +446675,Taxation and Finance,Taxation and Finance +443777,Taxation and Finance,Taxation and Finance +441964,Taxation and Finance,Taxation and Finance +441961,Taxation and Finance,Taxation and Finance +441956,Taxation and Finance,Taxation and Finance +441949,Taxation and Finance,Taxation and Finance +441947,Taxation and Finance,Taxation and Finance +438595,Taxation and Finance,Taxation and Finance +438594,Taxation and Finance,Taxation and Finance +438592,Taxation and Finance,Taxation and Finance +430096,Taxation and Finance,Taxation and Finance +425506,Taxation and Finance,Taxation and Finance +420711,Taxation and Finance,Taxation and Finance +420710,Taxation and Finance,Taxation and Finance +420709,Taxation and Finance,Taxation and Finance +418745,Taxation and Finance,Taxation and Finance +418009,Taxation and Finance,Taxation and Finance +418005,Taxation and Finance,Taxation and Finance +418001,Taxation and Finance,Taxation and Finance +529038,Taxation and Finance,Taxation and Finance +529034,Taxation and Finance,Taxation and Finance +528969,Taxation and Finance,Taxation and Finance +509835,Taxation and Finance,Taxation and Finance +509834,Taxation and Finance,Taxation and Finance +509833,Taxation and Finance,Taxation and Finance +509832,Taxation and Finance,Taxation and Finance +145871,Industry,Industry +120174,Health,Health +125314,Taxation and Finance,Taxation and Finance +128614,Employment and Training,Employment and Training +124387,Employment and Training,Employment and Training +124387,Mining,Mining +128614,Regional Development,Regional Development +124387,Regional Development,Regional Development +134394,Regional Development,Regional Development +128614,Transportation,Transportation +124387,Transportation,Transportation +134394,Transportation,Transportation +141823,Employment and Training,Employment and Training +128634,Employment and Training,Employment and Training +124338,Employment and Training,Employment and Training +124337,Employment and Training,Employment and Training +124338,Transportation,Transportation +120455,Other,GHG Regulatory Framework +385202,Environment,Environment +202856,Environment,Environment +120816,Environment,Environment +161562,Environment,Environment +520132,Environment,Environment +512762,Environment,Environment +511229,Environment,Environment +506155,Environment,Environment +502699,Environment,Environment +488085,Environment,Environment +120817,Environment,Environment +161565,Environment,Environment +161564,Environment,Environment +161563,Environment,Environment +161560,Environment,Environment +385200,Environment,Environment +121240,International Trade,International Trade +128896,International Trade,International Trade +121241,Other,Research /Rx&D +121240,Other,Research /Rx&D +135925,Other,Operations +125215,Other,Operations +125214,Other,Operations +120941,Other,Operations +138868,Other,Operations +135924,Other,Operations +120943,Other,Operations +121115,Small Business,Small Business +121193,Other,Federal Framework on Air Emissions +121190,Other,Federal Framework on Air Emissions +121198,Other,Federal Framework on Air Emissions +121197,Other,Federal Framework on Air Emissions +121196,Other,Federal Framework on Air Emissions +121239,Other,Issues of importance to Evangelicals as Canadaians +145520,Other,Greenhouse Gas (GHG) +379742,Energy,Energy +379738,Energy,Energy +121337,Energy,Energy +124597,Agriculture,Agriculture +124597,Transportation,Transportation +124476,Other,Buy America Issue +124475,Other,Buy America Issue +124474,Other,Buy America Issue +100639,Aboriginal Affairs,Aboriginal Affairs +100638,Aboriginal Affairs,Aboriginal Affairs +100637,Aboriginal Affairs,Aboriginal Affairs +100636,Aboriginal Affairs,Aboriginal Affairs +100635,Aboriginal Affairs,Aboriginal Affairs +100634,Aboriginal Affairs,Aboriginal Affairs +98741,Aboriginal Affairs,Aboriginal Affairs +98740,Aboriginal Affairs,Aboriginal Affairs +98739,Aboriginal Affairs,Aboriginal Affairs +98737,Aboriginal Affairs,Aboriginal Affairs +223191,Arts and Culture,Arts and Culture +197485,Arts and Culture,Arts and Culture +78416,Arts and Culture,Arts and Culture +113216,Arts and Culture,Arts and Culture +175790,Science and Technology,Science and Technology +223191,Science and Technology,Science and Technology +78416,Science and Technology,Science and Technology +78414,Science and Technology,Science and Technology +144834,Science and Technology,Science and Technology +113215,Science and Technology,Science and Technology +161790,Arts and Culture,Arts and Culture +176645,Science and Technology,Science and Technology +153856,Science and Technology,Science and Technology +109688,Science and Technology,Science and Technology +176648,Science and Technology,Science and Technology +480754,Arts and Culture,Arts and Culture +480578,Arts and Culture,Arts and Culture +370713,Arts and Culture,Arts and Culture +367548,Arts and Culture,Arts and Culture +364122,Arts and Culture,Arts and Culture +356288,Arts and Culture,Arts and Culture +356285,Arts and Culture,Arts and Culture +355763,Arts and Culture,Arts and Culture +355762,Arts and Culture,Arts and Culture +355761,Arts and Culture,Arts and Culture +355760,Arts and Culture,Arts and Culture +355759,Arts and Culture,Arts and Culture +355757,Arts and Culture,Arts and Culture +355417,Arts and Culture,Arts and Culture +353936,Arts and Culture,Arts and Culture +353934,Arts and Culture,Arts and Culture +353931,Arts and Culture,Arts and Culture +353930,Arts and Culture,Arts and Culture +353929,Arts and Culture,Arts and Culture +353928,Arts and Culture,Arts and Culture +308190,Arts and Culture,Arts and Culture +468721,Arts and Culture,Arts and Culture +468720,Arts and Culture,Arts and Culture +468719,Arts and Culture,Arts and Culture +455104,Arts and Culture,Arts and Culture +455099,Arts and Culture,Arts and Culture +455091,Arts and Culture,Arts and Culture +438405,Arts and Culture,Arts and Culture +438397,Arts and Culture,Arts and Culture +438392,Arts and Culture,Arts and Culture +438383,Arts and Culture,Arts and Culture +424394,Arts and Culture,Arts and Culture +424392,Arts and Culture,Arts and Culture +424391,Arts and Culture,Arts and Culture +424388,Arts and Culture,Arts and Culture +402118,Arts and Culture,Arts and Culture +402115,Arts and Culture,Arts and Culture +395444,Arts and Culture,Arts and Culture +395443,Arts and Culture,Arts and Culture +395442,Arts and Culture,Arts and Culture +395441,Arts and Culture,Arts and Culture +395440,Arts and Culture,Arts and Culture +395439,Arts and Culture,Arts and Culture +395437,Arts and Culture,Arts and Culture +540563,Arts and Culture,Arts and Culture +487218,Arts and Culture,Arts and Culture +483420,Arts and Culture,Arts and Culture +468720,Broadcasting,Broadcasting +468719,Broadcasting,Broadcasting +86978,Broadcasting,Broadcasting +544895,Broadcasting,Broadcasting +536295,Broadcasting,Broadcasting +527678,Broadcasting,Broadcasting +527677,Broadcasting,Broadcasting +527676,Broadcasting,Broadcasting +527675,Broadcasting,Broadcasting +527673,Broadcasting,Broadcasting +527670,Broadcasting,Broadcasting +524017,Broadcasting,Broadcasting +523785,Broadcasting,Broadcasting +523782,Broadcasting,Broadcasting +523780,Broadcasting,Broadcasting +518529,Broadcasting,Broadcasting +510163,Broadcasting,Broadcasting +483420,Broadcasting,Broadcasting +482249,Broadcasting,Broadcasting +480754,Broadcasting,Broadcasting +480578,Broadcasting,Broadcasting +89856,Arts and Culture,Arts and Culture +78658,Arts and Culture,Arts and Culture +78654,Arts and Culture,Arts and Culture +473717,Science and Technology,Science and Technology +101134,Science and Technology,Science and Technology +93794,Science and Technology,Science and Technology +88142,Science and Technology,Science and Technology +445052,Science and Technology,Science and Technology +445045,Science and Technology,Science and Technology +443816,Science and Technology,Science and Technology +440742,Science and Technology,Science and Technology +426348,Science and Technology,Science and Technology +424371,Science and Technology,Science and Technology +93797,Science and Technology,Science and Technology +132547,Aboriginal Affairs,Aboriginal Affairs +128355,Aboriginal Affairs,Aboriginal Affairs +468650,Aboriginal Affairs,Aboriginal Affairs +468649,Aboriginal Affairs,Aboriginal Affairs +144958,Aboriginal Affairs,Aboriginal Affairs +144957,Aboriginal Affairs,Aboriginal Affairs +144956,Aboriginal Affairs,Aboriginal Affairs +144955,Aboriginal Affairs,Aboriginal Affairs +144954,Aboriginal Affairs,Aboriginal Affairs +127255,Aboriginal Affairs,Aboriginal Affairs +160975,Aboriginal Affairs,Aboriginal Affairs +160970,Aboriginal Affairs,Aboriginal Affairs +144982,Aboriginal Affairs,Aboriginal Affairs +144981,Aboriginal Affairs,Aboriginal Affairs +144979,Aboriginal Affairs,Aboriginal Affairs +144978,Aboriginal Affairs,Aboriginal Affairs +144976,Aboriginal Affairs,Aboriginal Affairs +252957,Aboriginal Affairs,Aboriginal Affairs +247749,Aboriginal Affairs,Aboriginal Affairs +247731,Aboriginal Affairs,Aboriginal Affairs +247730,Aboriginal Affairs,Aboriginal Affairs +247729,Aboriginal Affairs,Aboriginal Affairs +247716,Aboriginal Affairs,Aboriginal Affairs +247714,Aboriginal Affairs,Aboriginal Affairs +247713,Aboriginal Affairs,Aboriginal Affairs +247711,Aboriginal Affairs,Aboriginal Affairs +247710,Aboriginal Affairs,Aboriginal Affairs +247614,Aboriginal Affairs,Aboriginal Affairs +247613,Aboriginal Affairs,Aboriginal Affairs +247612,Aboriginal Affairs,Aboriginal Affairs +247611,Aboriginal Affairs,Aboriginal Affairs +247610,Aboriginal Affairs,Aboriginal Affairs +247609,Aboriginal Affairs,Aboriginal Affairs +247608,Aboriginal Affairs,Aboriginal Affairs +247607,Aboriginal Affairs,Aboriginal Affairs +247606,Aboriginal Affairs,Aboriginal Affairs +247605,Aboriginal Affairs,Aboriginal Affairs +247603,Aboriginal Affairs,Aboriginal Affairs +247601,Aboriginal Affairs,Aboriginal Affairs +247600,Aboriginal Affairs,Aboriginal Affairs +247598,Aboriginal Affairs,Aboriginal Affairs +247591,Aboriginal Affairs,Aboriginal Affairs +247589,Aboriginal Affairs,Aboriginal Affairs +247579,Aboriginal Affairs,Aboriginal Affairs +247578,Aboriginal Affairs,Aboriginal Affairs +247576,Aboriginal Affairs,Aboriginal Affairs +247575,Aboriginal Affairs,Aboriginal Affairs +247574,Aboriginal Affairs,Aboriginal Affairs +247573,Aboriginal Affairs,Aboriginal Affairs +247572,Aboriginal Affairs,Aboriginal Affairs +247570,Aboriginal Affairs,Aboriginal Affairs +247569,Aboriginal Affairs,Aboriginal Affairs +237929,Aboriginal Affairs,Aboriginal Affairs +228556,Aboriginal Affairs,Aboriginal Affairs +228555,Aboriginal Affairs,Aboriginal Affairs +228554,Aboriginal Affairs,Aboriginal Affairs +228553,Aboriginal Affairs,Aboriginal Affairs +228552,Aboriginal Affairs,Aboriginal Affairs +225811,Aboriginal Affairs,Aboriginal Affairs +211931,Aboriginal Affairs,Aboriginal Affairs +211929,Aboriginal Affairs,Aboriginal Affairs +196848,Aboriginal Affairs,Aboriginal Affairs +196840,Aboriginal Affairs,Aboriginal Affairs +196837,Aboriginal Affairs,Aboriginal Affairs +196832,Aboriginal Affairs,Aboriginal Affairs +188484,Aboriginal Affairs,Aboriginal Affairs +390190,Aboriginal Affairs,Aboriginal Affairs +390186,Aboriginal Affairs,Aboriginal Affairs +390185,Aboriginal Affairs,Aboriginal Affairs +390184,Aboriginal Affairs,Aboriginal Affairs +390183,Aboriginal Affairs,Aboriginal Affairs +390181,Aboriginal Affairs,Aboriginal Affairs +390179,Aboriginal Affairs,Aboriginal Affairs +390177,Aboriginal Affairs,Aboriginal Affairs +390176,Aboriginal Affairs,Aboriginal Affairs +390175,Aboriginal Affairs,Aboriginal Affairs +390174,Aboriginal Affairs,Aboriginal Affairs +390173,Aboriginal Affairs,Aboriginal Affairs +390172,Aboriginal Affairs,Aboriginal Affairs +390170,Aboriginal Affairs,Aboriginal Affairs +390169,Aboriginal Affairs,Aboriginal Affairs +390168,Aboriginal Affairs,Aboriginal Affairs +390166,Aboriginal Affairs,Aboriginal Affairs +390163,Aboriginal Affairs,Aboriginal Affairs +382929,Aboriginal Affairs,Aboriginal Affairs +371706,Aboriginal Affairs,Aboriginal Affairs +371702,Aboriginal Affairs,Aboriginal Affairs +371700,Aboriginal Affairs,Aboriginal Affairs +371691,Aboriginal Affairs,Aboriginal Affairs +371682,Aboriginal Affairs,Aboriginal Affairs +371674,Aboriginal Affairs,Aboriginal Affairs +340547,Aboriginal Affairs,Aboriginal Affairs +340546,Aboriginal Affairs,Aboriginal Affairs +340545,Aboriginal Affairs,Aboriginal Affairs +340538,Aboriginal Affairs,Aboriginal Affairs +340504,Aboriginal Affairs,Aboriginal Affairs +340503,Aboriginal Affairs,Aboriginal Affairs +340501,Aboriginal Affairs,Aboriginal Affairs +340499,Aboriginal Affairs,Aboriginal Affairs +340497,Aboriginal Affairs,Aboriginal Affairs +340479,Aboriginal Affairs,Aboriginal Affairs +340440,Aboriginal Affairs,Aboriginal Affairs +339818,Aboriginal Affairs,Aboriginal Affairs +339814,Aboriginal Affairs,Aboriginal Affairs +339813,Aboriginal Affairs,Aboriginal Affairs +307611,Aboriginal Affairs,Aboriginal Affairs +307610,Aboriginal Affairs,Aboriginal Affairs +307609,Aboriginal Affairs,Aboriginal Affairs +307575,Aboriginal Affairs,Aboriginal Affairs +307574,Aboriginal Affairs,Aboriginal Affairs +307571,Aboriginal Affairs,Aboriginal Affairs +307570,Aboriginal Affairs,Aboriginal Affairs +307569,Aboriginal Affairs,Aboriginal Affairs +307551,Aboriginal Affairs,Aboriginal Affairs +307530,Aboriginal Affairs,Aboriginal Affairs +307529,Aboriginal Affairs,Aboriginal Affairs +307314,Aboriginal Affairs,Aboriginal Affairs +307313,Aboriginal Affairs,Aboriginal Affairs +307312,Aboriginal Affairs,Aboriginal Affairs +307311,Aboriginal Affairs,Aboriginal Affairs +307291,Aboriginal Affairs,Aboriginal Affairs +307290,Aboriginal Affairs,Aboriginal Affairs +307289,Aboriginal Affairs,Aboriginal Affairs +307269,Aboriginal Affairs,Aboriginal Affairs +307249,Aboriginal Affairs,Aboriginal Affairs +307229,Aboriginal Affairs,Aboriginal Affairs +307211,Aboriginal Affairs,Aboriginal Affairs +307210,Aboriginal Affairs,Aboriginal Affairs +307209,Aboriginal Affairs,Aboriginal Affairs +431417,Aboriginal Affairs,Aboriginal Affairs +416117,Aboriginal Affairs,Aboriginal Affairs +416108,Aboriginal Affairs,Aboriginal Affairs +413922,Aboriginal Affairs,Aboriginal Affairs +398055,Aboriginal Affairs,Aboriginal Affairs +397225,Aboriginal Affairs,Aboriginal Affairs +395218,Aboriginal Affairs,Aboriginal Affairs +391255,Aboriginal Affairs,Aboriginal Affairs +390644,Aboriginal Affairs,Aboriginal Affairs +390643,Aboriginal Affairs,Aboriginal Affairs +390638,Aboriginal Affairs,Aboriginal Affairs +390636,Aboriginal Affairs,Aboriginal Affairs +390632,Aboriginal Affairs,Aboriginal Affairs +390629,Aboriginal Affairs,Aboriginal Affairs +390627,Aboriginal Affairs,Aboriginal Affairs +390626,Aboriginal Affairs,Aboriginal Affairs +390625,Aboriginal Affairs,Aboriginal Affairs +390622,Aboriginal Affairs,Aboriginal Affairs +390620,Aboriginal Affairs,Aboriginal Affairs +390619,Aboriginal Affairs,Aboriginal Affairs +390617,Aboriginal Affairs,Aboriginal Affairs +390616,Aboriginal Affairs,Aboriginal Affairs +390614,Aboriginal Affairs,Aboriginal Affairs +390613,Aboriginal Affairs,Aboriginal Affairs +390612,Aboriginal Affairs,Aboriginal Affairs +390611,Aboriginal Affairs,Aboriginal Affairs +390602,Aboriginal Affairs,Aboriginal Affairs +390601,Aboriginal Affairs,Aboriginal Affairs +390599,Aboriginal Affairs,Aboriginal Affairs +390598,Aboriginal Affairs,Aboriginal Affairs +390594,Aboriginal Affairs,Aboriginal Affairs +390593,Aboriginal Affairs,Aboriginal Affairs +390585,Aboriginal Affairs,Aboriginal Affairs +390584,Aboriginal Affairs,Aboriginal Affairs +390582,Aboriginal Affairs,Aboriginal Affairs +390579,Aboriginal Affairs,Aboriginal Affairs +390576,Aboriginal Affairs,Aboriginal Affairs +390575,Aboriginal Affairs,Aboriginal Affairs +390379,Aboriginal Affairs,Aboriginal Affairs +390377,Aboriginal Affairs,Aboriginal Affairs +390374,Aboriginal Affairs,Aboriginal Affairs +390373,Aboriginal Affairs,Aboriginal Affairs +390372,Aboriginal Affairs,Aboriginal Affairs +390370,Aboriginal Affairs,Aboriginal Affairs +390364,Aboriginal Affairs,Aboriginal Affairs +390363,Aboriginal Affairs,Aboriginal Affairs +390361,Aboriginal Affairs,Aboriginal Affairs +390360,Aboriginal Affairs,Aboriginal Affairs +390357,Aboriginal Affairs,Aboriginal Affairs +390356,Aboriginal Affairs,Aboriginal Affairs +390353,Aboriginal Affairs,Aboriginal Affairs +390347,Aboriginal Affairs,Aboriginal Affairs +390342,Aboriginal Affairs,Aboriginal Affairs +390341,Aboriginal Affairs,Aboriginal Affairs +390339,Aboriginal Affairs,Aboriginal Affairs +390337,Aboriginal Affairs,Aboriginal Affairs +390335,Aboriginal Affairs,Aboriginal Affairs +390333,Aboriginal Affairs,Aboriginal Affairs +390329,Aboriginal Affairs,Aboriginal Affairs +390328,Aboriginal Affairs,Aboriginal Affairs +390326,Aboriginal Affairs,Aboriginal Affairs +390324,Aboriginal Affairs,Aboriginal Affairs +390320,Aboriginal Affairs,Aboriginal Affairs +390319,Aboriginal Affairs,Aboriginal Affairs +390318,Aboriginal Affairs,Aboriginal Affairs +390315,Aboriginal Affairs,Aboriginal Affairs +390314,Aboriginal Affairs,Aboriginal Affairs +390313,Aboriginal Affairs,Aboriginal Affairs +390311,Aboriginal Affairs,Aboriginal Affairs +390309,Aboriginal Affairs,Aboriginal Affairs +390308,Aboriginal Affairs,Aboriginal Affairs +390304,Aboriginal Affairs,Aboriginal Affairs +390303,Aboriginal Affairs,Aboriginal Affairs +390302,Aboriginal Affairs,Aboriginal Affairs +390299,Aboriginal Affairs,Aboriginal Affairs +390298,Aboriginal Affairs,Aboriginal Affairs +390296,Aboriginal Affairs,Aboriginal Affairs +390295,Aboriginal Affairs,Aboriginal Affairs +390293,Aboriginal Affairs,Aboriginal Affairs +390290,Aboriginal Affairs,Aboriginal Affairs +390288,Aboriginal Affairs,Aboriginal Affairs +390287,Aboriginal Affairs,Aboriginal Affairs +390285,Aboriginal Affairs,Aboriginal Affairs +390284,Aboriginal Affairs,Aboriginal Affairs +390282,Aboriginal Affairs,Aboriginal Affairs +390281,Aboriginal Affairs,Aboriginal Affairs +390280,Aboriginal Affairs,Aboriginal Affairs +390279,Aboriginal Affairs,Aboriginal Affairs +390278,Aboriginal Affairs,Aboriginal Affairs +390276,Aboriginal Affairs,Aboriginal Affairs +390275,Aboriginal Affairs,Aboriginal Affairs +390274,Aboriginal Affairs,Aboriginal Affairs +390273,Aboriginal Affairs,Aboriginal Affairs +390272,Aboriginal Affairs,Aboriginal Affairs +390271,Aboriginal Affairs,Aboriginal Affairs +390269,Aboriginal Affairs,Aboriginal Affairs +390268,Aboriginal Affairs,Aboriginal Affairs +390267,Aboriginal Affairs,Aboriginal Affairs +390266,Aboriginal Affairs,Aboriginal Affairs +390265,Aboriginal Affairs,Aboriginal Affairs +390264,Aboriginal Affairs,Aboriginal Affairs +390261,Aboriginal Affairs,Aboriginal Affairs +390260,Aboriginal Affairs,Aboriginal Affairs +390259,Aboriginal Affairs,Aboriginal Affairs +390258,Aboriginal Affairs,Aboriginal Affairs +390257,Aboriginal Affairs,Aboriginal Affairs +390254,Aboriginal Affairs,Aboriginal Affairs +390253,Aboriginal Affairs,Aboriginal Affairs +390251,Aboriginal Affairs,Aboriginal Affairs +390250,Aboriginal Affairs,Aboriginal Affairs +390249,Aboriginal Affairs,Aboriginal Affairs +390248,Aboriginal Affairs,Aboriginal Affairs +390247,Aboriginal Affairs,Aboriginal Affairs +390246,Aboriginal Affairs,Aboriginal Affairs +390245,Aboriginal Affairs,Aboriginal Affairs +390244,Aboriginal Affairs,Aboriginal Affairs +390243,Aboriginal Affairs,Aboriginal Affairs +390241,Aboriginal Affairs,Aboriginal Affairs +390240,Aboriginal Affairs,Aboriginal Affairs +390239,Aboriginal Affairs,Aboriginal Affairs +390238,Aboriginal Affairs,Aboriginal Affairs +390234,Aboriginal Affairs,Aboriginal Affairs +390233,Aboriginal Affairs,Aboriginal Affairs +390232,Aboriginal Affairs,Aboriginal Affairs +390230,Aboriginal Affairs,Aboriginal Affairs +390226,Aboriginal Affairs,Aboriginal Affairs +390219,Aboriginal Affairs,Aboriginal Affairs +390216,Aboriginal Affairs,Aboriginal Affairs +390212,Aboriginal Affairs,Aboriginal Affairs +390210,Aboriginal Affairs,Aboriginal Affairs +390209,Aboriginal Affairs,Aboriginal Affairs +390208,Aboriginal Affairs,Aboriginal Affairs +390205,Aboriginal Affairs,Aboriginal Affairs +390204,Aboriginal Affairs,Aboriginal Affairs +390201,Aboriginal Affairs,Aboriginal Affairs +390199,Aboriginal Affairs,Aboriginal Affairs +390197,Aboriginal Affairs,Aboriginal Affairs +390195,Aboriginal Affairs,Aboriginal Affairs +390194,Aboriginal Affairs,Aboriginal Affairs +390193,Aboriginal Affairs,Aboriginal Affairs +526794,Aboriginal Affairs,Aboriginal Affairs +525621,Aboriginal Affairs,Aboriginal Affairs +525616,Aboriginal Affairs,Aboriginal Affairs +525612,Aboriginal Affairs,Aboriginal Affairs +525609,Aboriginal Affairs,Aboriginal Affairs +525608,Aboriginal Affairs,Aboriginal Affairs +525607,Aboriginal Affairs,Aboriginal Affairs +525605,Aboriginal Affairs,Aboriginal Affairs +525604,Aboriginal Affairs,Aboriginal Affairs +525597,Aboriginal Affairs,Aboriginal Affairs +525557,Aboriginal Affairs,Aboriginal Affairs +525551,Aboriginal Affairs,Aboriginal Affairs +525547,Aboriginal Affairs,Aboriginal Affairs +491587,Aboriginal Affairs,Aboriginal Affairs +491562,Aboriginal Affairs,Aboriginal Affairs +491532,Aboriginal Affairs,Aboriginal Affairs +491517,Aboriginal Affairs,Aboriginal Affairs +491514,Aboriginal Affairs,Aboriginal Affairs +491509,Aboriginal Affairs,Aboriginal Affairs +491501,Aboriginal Affairs,Aboriginal Affairs +491499,Aboriginal Affairs,Aboriginal Affairs +491496,Aboriginal Affairs,Aboriginal Affairs +491494,Aboriginal Affairs,Aboriginal Affairs +491482,Aboriginal Affairs,Aboriginal Affairs +491454,Aboriginal Affairs,Aboriginal Affairs +491446,Aboriginal Affairs,Aboriginal Affairs +491438,Aboriginal Affairs,Aboriginal Affairs +491435,Aboriginal Affairs,Aboriginal Affairs +491433,Aboriginal Affairs,Aboriginal Affairs +491431,Aboriginal Affairs,Aboriginal Affairs +491407,Aboriginal Affairs,Aboriginal Affairs +491396,Aboriginal Affairs,Aboriginal Affairs +491392,Aboriginal Affairs,Aboriginal Affairs +491387,Aboriginal Affairs,Aboriginal Affairs +491381,Aboriginal Affairs,Aboriginal Affairs +491374,Aboriginal Affairs,Aboriginal Affairs +491371,Aboriginal Affairs,Aboriginal Affairs +469022,Aboriginal Affairs,Aboriginal Affairs +468960,Aboriginal Affairs,Aboriginal Affairs +468957,Aboriginal Affairs,Aboriginal Affairs +468956,Aboriginal Affairs,Aboriginal Affairs +468941,Aboriginal Affairs,Aboriginal Affairs +468940,Aboriginal Affairs,Aboriginal Affairs +468939,Aboriginal Affairs,Aboriginal Affairs +484815,Science and Technology,Science and Technology +484814,Science and Technology,Science and Technology +222447,Science and Technology,Science and Technology +498749,Science and Technology,Science and Technology +493016,Science and Technology,Science and Technology +493015,Science and Technology,Science and Technology +493013,Science and Technology,Science and Technology +493012,Science and Technology,Science and Technology +493010,Science and Technology,Science and Technology +391347,Science and Technology,Science and Technology +391346,Science and Technology,Science and Technology +391345,Science and Technology,Science and Technology +391342,Science and Technology,Science and Technology +391339,Science and Technology,Science and Technology +391337,Science and Technology,Science and Technology +391334,Science and Technology,Science and Technology +391330,Science and Technology,Science and Technology +391328,Science and Technology,Science and Technology +391325,Science and Technology,Science and Technology +391322,Science and Technology,Science and Technology +391321,Science and Technology,Science and Technology +391320,Science and Technology,Science and Technology +391317,Science and Technology,Science and Technology +391316,Science and Technology,Science and Technology +391315,Science and Technology,Science and Technology +391314,Science and Technology,Science and Technology +391313,Science and Technology,Science and Technology +391306,Science and Technology,Science and Technology +383945,Science and Technology,Science and Technology +380824,Science and Technology,Science and Technology +380818,Science and Technology,Science and Technology +380814,Science and Technology,Science and Technology +541120,Science and Technology,Science and Technology +537032,Science and Technology,Science and Technology +532443,Science and Technology,Science and Technology +530823,Science and Technology,Science and Technology +528950,Science and Technology,Science and Technology +528946,Science and Technology,Science and Technology +527869,Science and Technology,Science and Technology +526457,Science and Technology,Science and Technology +524319,Science and Technology,Science and Technology +523756,Science and Technology,Science and Technology +489658,Science and Technology,Science and Technology +489168,Science and Technology,Science and Technology +480621,Science and Technology,Science and Technology +426503,Science and Technology,Science and Technology +396243,Science and Technology,Science and Technology +391360,Science and Technology,Science and Technology +391359,Science and Technology,Science and Technology +109654,Science and Technology,Science and Technology +212887,Science and Technology,Science and Technology +194649,Science and Technology,Science and Technology +194648,Science and Technology,Science and Technology +194647,Science and Technology,Science and Technology +194646,Science and Technology,Science and Technology +194644,Science and Technology,Science and Technology +190065,Science and Technology,Science and Technology +181744,Science and Technology,Science and Technology +166266,Science and Technology,Science and Technology +166265,Science and Technology,Science and Technology +166264,Science and Technology,Science and Technology +163271,Science and Technology,Science and Technology +152146,Science and Technology,Science and Technology +150269,Science and Technology,Science and Technology +150268,Science and Technology,Science and Technology +341599,Science and Technology,Science and Technology +341593,Science and Technology,Science and Technology +341588,Science and Technology,Science and Technology +341587,Science and Technology,Science and Technology +341586,Science and Technology,Science and Technology +341583,Science and Technology,Science and Technology +341575,Science and Technology,Science and Technology +341572,Science and Technology,Science and Technology +341568,Science and Technology,Science and Technology +338454,Science and Technology,Science and Technology +336131,Science and Technology,Science and Technology +336130,Science and Technology,Science and Technology +336129,Science and Technology,Science and Technology +291609,Science and Technology,Science and Technology +273531,Science and Technology,Science and Technology +273530,Science and Technology,Science and Technology +241392,Science and Technology,Science and Technology +236844,Science and Technology,Science and Technology +236843,Science and Technology,Science and Technology +226895,Science and Technology,Science and Technology +380226,Science and Technology,Science and Technology +380223,Science and Technology,Science and Technology +380222,Science and Technology,Science and Technology +377207,Science and Technology,Science and Technology +377206,Science and Technology,Science and Technology +377205,Science and Technology,Science and Technology +377203,Science and Technology,Science and Technology +377197,Science and Technology,Science and Technology +373574,Science and Technology,Science and Technology +247270,Telecommunications,Telecommunications +164987,Telecommunications,Telecommunications +133714,Telecommunications,Telecommunications +132348,Telecommunications,Telecommunications +394090,Science and Technology,Science and Technology +172104,Science and Technology,Science and Technology +168019,Science and Technology,Science and Technology +168018,Science and Technology,Science and Technology +168016,Science and Technology,Science and Technology +466031,Aboriginal Affairs,Aboriginal Affairs +453985,Aboriginal Affairs,Aboriginal Affairs +331189,Aboriginal Affairs,Aboriginal Affairs +331188,Aboriginal Affairs,Aboriginal Affairs +371041,Aboriginal Affairs,Aboriginal Affairs +106474,Arts and Culture,Arts and Culture +124934,Broadcasting,Broadcasting +124931,Broadcasting,Broadcasting +90586,Broadcasting,Broadcasting +88044,Broadcasting,Broadcasting +88040,Broadcasting,Broadcasting +88039,Broadcasting,Broadcasting +88037,Broadcasting,Broadcasting +85421,Broadcasting,Broadcasting +77317,Broadcasting,Broadcasting +77314,Broadcasting,Broadcasting +77207,Broadcasting,Broadcasting +124928,Broadcasting,Broadcasting +124422,Broadcasting,Broadcasting +124421,Broadcasting,Broadcasting +124420,Broadcasting,Broadcasting +124419,Broadcasting,Broadcasting +124418,Broadcasting,Broadcasting +124416,Broadcasting,Broadcasting +121095,Broadcasting,Broadcasting +117460,Broadcasting,Broadcasting +117459,Broadcasting,Broadcasting +117458,Broadcasting,Broadcasting +109934,Broadcasting,Broadcasting +106203,Broadcasting,Broadcasting +106200,Broadcasting,Broadcasting +97502,Broadcasting,Broadcasting +93755,Broadcasting,Broadcasting +93747,Broadcasting,Broadcasting +93740,Broadcasting,Broadcasting +90617,Broadcasting,Broadcasting +90615,Broadcasting,Broadcasting +90588,Broadcasting,Broadcasting +140894,Broadcasting,Broadcasting +139341,Broadcasting,Broadcasting +139340,Broadcasting,Broadcasting +139339,Broadcasting,Broadcasting +135595,Broadcasting,Broadcasting +132466,Broadcasting,Broadcasting +132465,Broadcasting,Broadcasting +132464,Broadcasting,Broadcasting +132463,Broadcasting,Broadcasting +132462,Broadcasting,Broadcasting +129134,Broadcasting,Broadcasting +129131,Broadcasting,Broadcasting +129128,Broadcasting,Broadcasting +129126,Broadcasting,Broadcasting +129123,Broadcasting,Broadcasting +129119,Broadcasting,Broadcasting +125157,Broadcasting,Broadcasting +110214,Aboriginal Affairs,Aboriginal Affairs +77767,Aboriginal Affairs,Aboriginal Affairs +348816,Science and Technology,Science and Technology +348815,Science and Technology,Science and Technology +348814,Science and Technology,Science and Technology +348813,Science and Technology,Science and Technology +348812,Science and Technology,Science and Technology +348811,Science and Technology,Science and Technology +348810,Science and Technology,Science and Technology +348809,Science and Technology,Science and Technology +348794,Science and Technology,Science and Technology +348793,Science and Technology,Science and Technology +348792,Science and Technology,Science and Technology +348791,Science and Technology,Science and Technology +348782,Science and Technology,Science and Technology +348781,Science and Technology,Science and Technology +347885,Science and Technology,Science and Technology +347884,Science and Technology,Science and Technology +347881,Science and Technology,Science and Technology +338058,Science and Technology,Science and Technology +338056,Science and Technology,Science and Technology +338054,Science and Technology,Science and Technology +338052,Science and Technology,Science and Technology +338050,Science and Technology,Science and Technology +338048,Science and Technology,Science and Technology +338044,Science and Technology,Science and Technology +337840,Science and Technology,Science and Technology +335905,Science and Technology,Science and Technology +335897,Science and Technology,Science and Technology +327496,Science and Technology,Science and Technology +324939,Science and Technology,Science and Technology +324938,Science and Technology,Science and Technology +324937,Science and Technology,Science and Technology +324936,Science and Technology,Science and Technology +324935,Science and Technology,Science and Technology +324929,Science and Technology,Science and Technology +319234,Science and Technology,Science and Technology +319229,Science and Technology,Science and Technology +319224,Science and Technology,Science and Technology +313047,Science and Technology,Science and Technology +296749,Science and Technology,Science and Technology +290849,Science and Technology,Science and Technology +290833,Science and Technology,Science and Technology +290832,Science and Technology,Science and Technology +390376,Science and Technology,Science and Technology +381101,Science and Technology,Science and Technology +381095,Science and Technology,Science and Technology +355401,Science and Technology,Science and Technology +355400,Science and Technology,Science and Technology +354820,Science and Technology,Science and Technology +354547,Science and Technology,Science and Technology +353107,Science and Technology,Science and Technology +353105,Science and Technology,Science and Technology +353104,Science and Technology,Science and Technology +353103,Science and Technology,Science and Technology +352590,Science and Technology,Science and Technology +352589,Science and Technology,Science and Technology +352587,Science and Technology,Science and Technology +350244,Science and Technology,Science and Technology +348865,Science and Technology,Science and Technology +502277,Science and Technology,Science and Technology +502196,Science and Technology,Science and Technology +154884,Science and Technology,Science and Technology +152298,Science and Technology,Science and Technology +97525,Science and Technology,Science and Technology +88396,Science and Technology,Science and Technology +88395,Science and Technology,Science and Technology +88394,Science and Technology,Science and Technology +84911,Science and Technology,Science and Technology +433741,Science and Technology,Science and Technology +432163,Science and Technology,Science and Technology +426454,Science and Technology,Science and Technology +83474,Aboriginal Affairs,Aboriginal Affairs +435805,Science and Technology,Science and Technology +435802,Science and Technology,Science and Technology +156550,Science and Technology,Science and Technology +202742,Science and Technology,Science and Technology +432243,Science and Technology,Science and Technology +430973,Science and Technology,Science and Technology +430972,Science and Technology,Science and Technology +430968,Science and Technology,Science and Technology +428043,Science and Technology,Science and Technology +428040,Science and Technology,Science and Technology +428038,Science and Technology,Science and Technology +428035,Science and Technology,Science and Technology +428033,Science and Technology,Science and Technology +425385,Science and Technology,Science and Technology +425383,Science and Technology,Science and Technology +425382,Science and Technology,Science and Technology +425381,Science and Technology,Science and Technology +424120,Science and Technology,Science and Technology +423534,Science and Technology,Science and Technology +423533,Science and Technology,Science and Technology +422134,Science and Technology,Science and Technology +421594,Science and Technology,Science and Technology +421592,Science and Technology,Science and Technology +391015,Science and Technology,Science and Technology +382159,Science and Technology,Science and Technology +374910,Science and Technology,Science and Technology +458689,Science and Technology,Science and Technology +455209,Science and Technology,Science and Technology +445559,Science and Technology,Science and Technology +445558,Science and Technology,Science and Technology +443409,Science and Technology,Science and Technology +443408,Science and Technology,Science and Technology +443406,Science and Technology,Science and Technology +443405,Science and Technology,Science and Technology +443404,Science and Technology,Science and Technology +443401,Science and Technology,Science and Technology +442529,Science and Technology,Science and Technology +442441,Science and Technology,Science and Technology +442438,Science and Technology,Science and Technology +442433,Science and Technology,Science and Technology +442427,Science and Technology,Science and Technology +442421,Science and Technology,Science and Technology +442415,Science and Technology,Science and Technology +311031,Aboriginal Affairs,Aboriginal Affairs +288173,Aboriginal Affairs,Aboriginal Affairs +110915,Aboriginal Affairs,Aboriginal Affairs +288172,Aboriginal Affairs,Aboriginal Affairs +272450,Aboriginal Affairs,Aboriginal Affairs +272449,Aboriginal Affairs,Aboriginal Affairs +256109,Aboriginal Affairs,Aboriginal Affairs +247351,Aboriginal Affairs,Aboriginal Affairs +162974,Aboriginal Affairs,Aboriginal Affairs +162972,Aboriginal Affairs,Aboriginal Affairs +160678,Aboriginal Affairs,Aboriginal Affairs +351204,Aboriginal Affairs,Aboriginal Affairs +87761,Arts and Culture,Arts and Culture +109238,Broadcasting,Broadcasting +109237,Broadcasting,Broadcasting +80156,Broadcasting,Broadcasting +78915,Broadcasting,Broadcasting +78914,Broadcasting,Broadcasting +78896,Broadcasting,Broadcasting +78895,Broadcasting,Broadcasting +77763,Broadcasting,Broadcasting +77659,Broadcasting,Broadcasting +77656,Broadcasting,Broadcasting +77654,Broadcasting,Broadcasting +77212,Broadcasting,Broadcasting +76895,Broadcasting,Broadcasting +109236,Broadcasting,Broadcasting +109235,Broadcasting,Broadcasting +105724,Broadcasting,Broadcasting +100679,Broadcasting,Broadcasting +100678,Broadcasting,Broadcasting +100677,Broadcasting,Broadcasting +100676,Broadcasting,Broadcasting +97466,Broadcasting,Broadcasting +97329,Broadcasting,Broadcasting +93358,Broadcasting,Broadcasting +93357,Broadcasting,Broadcasting +93355,Broadcasting,Broadcasting +93344,Broadcasting,Broadcasting +90221,Broadcasting,Broadcasting +90219,Broadcasting,Broadcasting +90218,Broadcasting,Broadcasting +87766,Broadcasting,Broadcasting +87764,Broadcasting,Broadcasting +87761,Broadcasting,Broadcasting +87759,Broadcasting,Broadcasting +87758,Broadcasting,Broadcasting +87757,Broadcasting,Broadcasting +85214,Broadcasting,Broadcasting +82857,Broadcasting,Broadcasting +82856,Broadcasting,Broadcasting +82855,Broadcasting,Broadcasting +80157,Broadcasting,Broadcasting +145832,Broadcasting,Broadcasting +145831,Broadcasting,Broadcasting +138696,Broadcasting,Broadcasting +132699,Broadcasting,Broadcasting +128888,Broadcasting,Broadcasting +125076,Broadcasting,Broadcasting +120909,Broadcasting,Broadcasting +113863,Broadcasting,Broadcasting +113862,Broadcasting,Broadcasting +511728,Aboriginal Affairs,Aboriginal Affairs +488049,Aboriginal Affairs,Aboriginal Affairs +327485,Aboriginal Affairs,Aboriginal Affairs +318830,Aboriginal Affairs,Aboriginal Affairs +276351,Aboriginal Affairs,Aboriginal Affairs +423338,Aboriginal Affairs,Aboriginal Affairs +417895,Aboriginal Affairs,Aboriginal Affairs +414596,Aboriginal Affairs,Aboriginal Affairs +414144,Aboriginal Affairs,Aboriginal Affairs +410653,Aboriginal Affairs,Aboriginal Affairs +408268,Aboriginal Affairs,Aboriginal Affairs +404251,Aboriginal Affairs,Aboriginal Affairs +393824,Aboriginal Affairs,Aboriginal Affairs +377454,Aboriginal Affairs,Aboriginal Affairs +375026,Aboriginal Affairs,Aboriginal Affairs +375025,Aboriginal Affairs,Aboriginal Affairs +375023,Aboriginal Affairs,Aboriginal Affairs +375022,Aboriginal Affairs,Aboriginal Affairs +375021,Aboriginal Affairs,Aboriginal Affairs +373282,Aboriginal Affairs,Aboriginal Affairs +152249,Science and Technology,Science and Technology +152247,Science and Technology,Science and Technology +496401,Telecommunications,Telecommunications +496301,Telecommunications,Telecommunications +152251,Telecommunications,Telecommunications +152249,Telecommunications,Telecommunications +152247,Telecommunications,Telecommunications +494812,Telecommunications,Telecommunications +494811,Telecommunications,Telecommunications +494727,Telecommunications,Telecommunications +488869,Telecommunications,Telecommunications +485808,Telecommunications,Telecommunications +482810,Telecommunications,Telecommunications +482797,Telecommunications,Telecommunications +482610,Telecommunications,Telecommunications +482609,Telecommunications,Telecommunications +482259,Telecommunications,Telecommunications +481522,Telecommunications,Telecommunications +481400,Telecommunications,Telecommunications +481399,Telecommunications,Telecommunications +481398,Telecommunications,Telecommunications +524790,Telecommunications,Telecommunications +524448,Telecommunications,Telecommunications +515044,Telecommunications,Telecommunications +511728,Telecommunications,Telecommunications +506771,Telecommunications,Telecommunications +500887,Telecommunications,Telecommunications +500141,Telecommunications,Telecommunications +499887,Telecommunications,Telecommunications +499844,Telecommunications,Telecommunications +499225,Telecommunications,Telecommunications +498377,Telecommunications,Telecommunications +498016,Telecommunications,Telecommunications +497951,Telecommunications,Telecommunications +497382,Telecommunications,Telecommunications +497381,Telecommunications,Telecommunications +497380,Telecommunications,Telecommunications +497379,Telecommunications,Telecommunications +497378,Telecommunications,Telecommunications +497377,Telecommunications,Telecommunications +497376,Telecommunications,Telecommunications +497375,Telecommunications,Telecommunications +497374,Telecommunications,Telecommunications +497373,Telecommunications,Telecommunications +497372,Telecommunications,Telecommunications +497371,Telecommunications,Telecommunications +497370,Telecommunications,Telecommunications +497369,Telecommunications,Telecommunications +497368,Telecommunications,Telecommunications +497367,Telecommunications,Telecommunications +497366,Telecommunications,Telecommunications +497365,Telecommunications,Telecommunications +497364,Telecommunications,Telecommunications +497363,Telecommunications,Telecommunications +497362,Telecommunications,Telecommunications +497361,Telecommunications,Telecommunications +497360,Telecommunications,Telecommunications +497359,Telecommunications,Telecommunications +497357,Telecommunications,Telecommunications +497356,Telecommunications,Telecommunications +497354,Telecommunications,Telecommunications +497353,Telecommunications,Telecommunications +497347,Telecommunications,Telecommunications +497346,Telecommunications,Telecommunications +497345,Telecommunications,Telecommunications +497344,Telecommunications,Telecommunications +497343,Telecommunications,Telecommunications +497340,Telecommunications,Telecommunications +497338,Telecommunications,Telecommunications +497337,Telecommunications,Telecommunications +497336,Telecommunications,Telecommunications +497335,Telecommunications,Telecommunications +497334,Telecommunications,Telecommunications +497333,Telecommunications,Telecommunications +497331,Telecommunications,Telecommunications +497330,Telecommunications,Telecommunications +497329,Telecommunications,Telecommunications +497326,Telecommunications,Telecommunications +497325,Telecommunications,Telecommunications +497324,Telecommunications,Telecommunications +497323,Telecommunications,Telecommunications +497322,Telecommunications,Telecommunications +497321,Telecommunications,Telecommunications +497319,Telecommunications,Telecommunications +497318,Telecommunications,Telecommunications +193086,Science and Technology,Science and Technology +306229,Science and Technology,Science and Technology +193082,Science and Technology,Science and Technology +193081,Science and Technology,Science and Technology +193079,Science and Technology,Science and Technology +193075,Science and Technology,Science and Technology +193071,Science and Technology,Science and Technology +256909,Science and Technology,Science and Technology +241409,Science and Technology,Science and Technology +224627,Science and Technology,Science and Technology +223869,Science and Technology,Science and Technology +204369,Science and Technology,Science and Technology +193086,Telecommunications,Telecommunications +193071,Telecommunications,Telecommunications +306232,Telecommunications,Telecommunications +241409,Telecommunications,Telecommunications +224627,Telecommunications,Telecommunications +401658,Science and Technology,Science and Technology +505974,Science and Technology,Science and Technology +424611,Science and Technology,Science and Technology +420715,Science and Technology,Science and Technology +420714,Science and Technology,Science and Technology +110134,Science and Technology,Science and Technology +80579,Science and Technology,Science and Technology +80576,Science and Technology,Science and Technology +80575,Science and Technology,Science and Technology +80574,Science and Technology,Science and Technology +225089,Science and Technology,Science and Technology +225088,Science and Technology,Science and Technology +225087,Science and Technology,Science and Technology +225075,Science and Technology,Science and Technology +225073,Science and Technology,Science and Technology +225069,Science and Technology,Science and Technology +225068,Science and Technology,Science and Technology +225067,Science and Technology,Science and Technology +159419,Science and Technology,Science and Technology +349164,Science and Technology,Science and Technology +349160,Science and Technology,Science and Technology +349159,Science and Technology,Science and Technology +349158,Science and Technology,Science and Technology +349151,Science and Technology,Science and Technology +349149,Science and Technology,Science and Technology +349147,Science and Technology,Science and Technology +349145,Science and Technology,Science and Technology +347602,Science and Technology,Science and Technology +341254,Science and Technology,Science and Technology +341248,Science and Technology,Science and Technology +341222,Science and Technology,Science and Technology +332135,Science and Technology,Science and Technology +332133,Science and Technology,Science and Technology +332129,Science and Technology,Science and Technology +329693,Science and Technology,Science and Technology +329692,Science and Technology,Science and Technology +326476,Science and Technology,Science and Technology +326474,Science and Technology,Science and Technology +323789,Science and Technology,Science and Technology +323787,Science and Technology,Science and Technology +323785,Science and Technology,Science and Technology +323783,Science and Technology,Science and Technology +323782,Science and Technology,Science and Technology +301812,Science and Technology,Science and Technology +301811,Science and Technology,Science and Technology +301810,Science and Technology,Science and Technology +301769,Science and Technology,Science and Technology +294914,Science and Technology,Science and Technology +294913,Science and Technology,Science and Technology +412033,Science and Technology,Science and Technology +410301,Science and Technology,Science and Technology +410300,Science and Technology,Science and Technology +374350,Science and Technology,Science and Technology +374349,Science and Technology,Science and Technology +374346,Science and Technology,Science and Technology +374333,Science and Technology,Science and Technology +372670,Science and Technology,Science and Technology +372666,Science and Technology,Science and Technology +372665,Science and Technology,Science and Technology +372662,Science and Technology,Science and Technology +372660,Science and Technology,Science and Technology +372657,Science and Technology,Science and Technology +372655,Science and Technology,Science and Technology +372653,Science and Technology,Science and Technology +372650,Science and Technology,Science and Technology +372647,Science and Technology,Science and Technology +372643,Science and Technology,Science and Technology +372640,Science and Technology,Science and Technology +372636,Science and Technology,Science and Technology +372635,Science and Technology,Science and Technology +372631,Science and Technology,Science and Technology +372629,Science and Technology,Science and Technology +372624,Science and Technology,Science and Technology +369777,Science and Technology,Science and Technology +369776,Science and Technology,Science and Technology +369775,Science and Technology,Science and Technology +369774,Science and Technology,Science and Technology +475154,Science and Technology,Science and Technology +423813,Science and Technology,Science and Technology +423804,Science and Technology,Science and Technology +544483,Telecommunications,Telecommunications +487189,Telecommunications,Telecommunications +301769,Telecommunications,Telecommunications +380003,Telecommunications,Telecommunications +380001,Telecommunications,Telecommunications +377819,Telecommunications,Telecommunications +376885,Telecommunications,Telecommunications +372670,Telecommunications,Telecommunications +372666,Telecommunications,Telecommunications +372665,Telecommunications,Telecommunications +372662,Telecommunications,Telecommunications +372660,Telecommunications,Telecommunications +372657,Telecommunications,Telecommunications +372655,Telecommunications,Telecommunications +372653,Telecommunications,Telecommunications +372650,Telecommunications,Telecommunications +372647,Telecommunications,Telecommunications +372643,Telecommunications,Telecommunications +372640,Telecommunications,Telecommunications +372636,Telecommunications,Telecommunications +372635,Telecommunications,Telecommunications +372631,Telecommunications,Telecommunications +372629,Telecommunications,Telecommunications +372624,Telecommunications,Telecommunications +369777,Telecommunications,Telecommunications +369776,Telecommunications,Telecommunications +369775,Telecommunications,Telecommunications +447552,Science and Technology,Science and Technology +447547,Science and Technology,Science and Technology +129694,Science and Technology,Science and Technology +90630,Science and Technology,Science and Technology +85355,Science and Technology,Science and Technology +83031,Science and Technology,Science and Technology +77758,Science and Technology,Science and Technology +207518,Science and Technology,Science and Technology +207511,Science and Technology,Science and Technology +207494,Science and Technology,Science and Technology +207493,Science and Technology,Science and Technology +207490,Science and Technology,Science and Technology +207477,Science and Technology,Science and Technology +202913,Science and Technology,Science and Technology +199659,Science and Technology,Science and Technology +199654,Science and Technology,Science and Technology +199651,Science and Technology,Science and Technology +199634,Science and Technology,Science and Technology +199626,Science and Technology,Science and Technology +170895,Science and Technology,Science and Technology +146594,Science and Technology,Science and Technology +388427,Science and Technology,Science and Technology +388424,Science and Technology,Science and Technology +388422,Science and Technology,Science and Technology +388421,Science and Technology,Science and Technology +382664,Science and Technology,Science and Technology +382663,Science and Technology,Science and Technology +380060,Science and Technology,Science and Technology +380059,Science and Technology,Science and Technology +380058,Science and Technology,Science and Technology +380045,Science and Technology,Science and Technology +380042,Science and Technology,Science and Technology +380036,Science and Technology,Science and Technology +377227,Science and Technology,Science and Technology +375017,Science and Technology,Science and Technology +375015,Science and Technology,Science and Technology +375011,Science and Technology,Science and Technology +372472,Science and Technology,Science and Technology +372465,Science and Technology,Science and Technology +372458,Science and Technology,Science and Technology +372451,Science and Technology,Science and Technology +372448,Science and Technology,Science and Technology +371106,Science and Technology,Science and Technology +371104,Science and Technology,Science and Technology +365175,Science and Technology,Science and Technology +365173,Science and Technology,Science and Technology +361883,Science and Technology,Science and Technology +361882,Science and Technology,Science and Technology +358266,Science and Technology,Science and Technology +358263,Science and Technology,Science and Technology +356394,Science and Technology,Science and Technology +351583,Science and Technology,Science and Technology +351553,Science and Technology,Science and Technology +351552,Science and Technology,Science and Technology +351545,Science and Technology,Science and Technology +343986,Science and Technology,Science and Technology +342096,Science and Technology,Science and Technology +338645,Science and Technology,Science and Technology +338633,Science and Technology,Science and Technology +335928,Science and Technology,Science and Technology +335919,Science and Technology,Science and Technology +327925,Science and Technology,Science and Technology +315997,Science and Technology,Science and Technology +315993,Science and Technology,Science and Technology +310781,Science and Technology,Science and Technology +304270,Science and Technology,Science and Technology +304266,Science and Technology,Science and Technology +304254,Science and Technology,Science and Technology +291331,Science and Technology,Science and Technology +272391,Science and Technology,Science and Technology +272390,Science and Technology,Science and Technology +269395,Science and Technology,Science and Technology +254449,Science and Technology,Science and Technology +251052,Science and Technology,Science and Technology +251051,Science and Technology,Science and Technology +251050,Science and Technology,Science and Technology +251031,Science and Technology,Science and Technology +250530,Science and Technology,Science and Technology +241063,Science and Technology,Science and Technology +445706,Science and Technology,Science and Technology +445705,Science and Technology,Science and Technology +445704,Science and Technology,Science and Technology +445699,Science and Technology,Science and Technology +445694,Science and Technology,Science and Technology +445690,Science and Technology,Science and Technology +444051,Science and Technology,Science and Technology +444049,Science and Technology,Science and Technology +444048,Science and Technology,Science and Technology +442729,Science and Technology,Science and Technology +442727,Science and Technology,Science and Technology +439374,Science and Technology,Science and Technology +439366,Science and Technology,Science and Technology +439200,Science and Technology,Science and Technology +439190,Science and Technology,Science and Technology +439181,Science and Technology,Science and Technology +439175,Science and Technology,Science and Technology +438985,Science and Technology,Science and Technology +438980,Science and Technology,Science and Technology +438974,Science and Technology,Science and Technology +438971,Science and Technology,Science and Technology +438970,Science and Technology,Science and Technology +433689,Science and Technology,Science and Technology +433683,Science and Technology,Science and Technology +430798,Science and Technology,Science and Technology +429351,Science and Technology,Science and Technology +429349,Science and Technology,Science and Technology +429347,Science and Technology,Science and Technology +429345,Science and Technology,Science and Technology +429342,Science and Technology,Science and Technology +429341,Science and Technology,Science and Technology +426846,Science and Technology,Science and Technology +426843,Science and Technology,Science and Technology +426817,Science and Technology,Science and Technology +426815,Science and Technology,Science and Technology +426812,Science and Technology,Science and Technology +424318,Science and Technology,Science and Technology +424317,Science and Technology,Science and Technology +422436,Science and Technology,Science and Technology +422434,Science and Technology,Science and Technology +422428,Science and Technology,Science and Technology +422422,Science and Technology,Science and Technology +422415,Science and Technology,Science and Technology +422412,Science and Technology,Science and Technology +420299,Science and Technology,Science and Technology +420298,Science and Technology,Science and Technology +418085,Science and Technology,Science and Technology +418084,Science and Technology,Science and Technology +418081,Science and Technology,Science and Technology +415175,Science and Technology,Science and Technology +415173,Science and Technology,Science and Technology +415170,Science and Technology,Science and Technology +415168,Science and Technology,Science and Technology +415167,Science and Technology,Science and Technology +415166,Science and Technology,Science and Technology +415165,Science and Technology,Science and Technology +415164,Science and Technology,Science and Technology +415161,Science and Technology,Science and Technology +415159,Science and Technology,Science and Technology +415152,Science and Technology,Science and Technology +415147,Science and Technology,Science and Technology +415145,Science and Technology,Science and Technology +415144,Science and Technology,Science and Technology +415142,Science and Technology,Science and Technology +415141,Science and Technology,Science and Technology +415139,Science and Technology,Science and Technology +415137,Science and Technology,Science and Technology +415136,Science and Technology,Science and Technology +414762,Science and Technology,Science and Technology +414761,Science and Technology,Science and Technology +412801,Science and Technology,Science and Technology +412766,Science and Technology,Science and Technology +412758,Science and Technology,Science and Technology +402718,Science and Technology,Science and Technology +402712,Science and Technology,Science and Technology +394035,Science and Technology,Science and Technology +394033,Science and Technology,Science and Technology +392788,Science and Technology,Science and Technology +391734,Science and Technology,Science and Technology +391731,Science and Technology,Science and Technology +545225,Science and Technology,Science and Technology +545223,Science and Technology,Science and Technology +545222,Science and Technology,Science and Technology +545221,Science and Technology,Science and Technology +545220,Science and Technology,Science and Technology +545219,Science and Technology,Science and Technology +545218,Science and Technology,Science and Technology +545217,Science and Technology,Science and Technology +545216,Science and Technology,Science and Technology +545215,Science and Technology,Science and Technology +543196,Science and Technology,Science and Technology +542826,Science and Technology,Science and Technology +542825,Science and Technology,Science and Technology +542824,Science and Technology,Science and Technology +542823,Science and Technology,Science and Technology +542822,Science and Technology,Science and Technology +542821,Science and Technology,Science and Technology +542818,Science and Technology,Science and Technology +542817,Science and Technology,Science and Technology +542816,Science and Technology,Science and Technology +542815,Science and Technology,Science and Technology +542814,Science and Technology,Science and Technology +542813,Science and Technology,Science and Technology +542812,Science and Technology,Science and Technology +542810,Science and Technology,Science and Technology +542809,Science and Technology,Science and Technology +542807,Science and Technology,Science and Technology +542806,Science and Technology,Science and Technology +542805,Science and Technology,Science and Technology +542804,Science and Technology,Science and Technology +542803,Science and Technology,Science and Technology +540986,Science and Technology,Science and Technology +540954,Science and Technology,Science and Technology +540884,Science and Technology,Science and Technology +531798,Science and Technology,Science and Technology +531793,Science and Technology,Science and Technology +525504,Science and Technology,Science and Technology +525495,Science and Technology,Science and Technology +525489,Science and Technology,Science and Technology +525444,Science and Technology,Science and Technology +523646,Science and Technology,Science and Technology +523579,Science and Technology,Science and Technology +523380,Science and Technology,Science and Technology +523372,Science and Technology,Science and Technology +523371,Science and Technology,Science and Technology +521241,Science and Technology,Science and Technology +521240,Science and Technology,Science and Technology +521239,Science and Technology,Science and Technology +521238,Science and Technology,Science and Technology +521237,Science and Technology,Science and Technology +521236,Science and Technology,Science and Technology +521235,Science and Technology,Science and Technology +521234,Science and Technology,Science and Technology +521233,Science and Technology,Science and Technology +521232,Science and Technology,Science and Technology +521230,Science and Technology,Science and Technology +521229,Science and Technology,Science and Technology +521228,Science and Technology,Science and Technology +521227,Science and Technology,Science and Technology +521226,Science and Technology,Science and Technology +517520,Science and Technology,Science and Technology +517513,Science and Technology,Science and Technology +517507,Science and Technology,Science and Technology +517505,Science and Technology,Science and Technology +517504,Science and Technology,Science and Technology +517503,Science and Technology,Science and Technology +516440,Science and Technology,Science and Technology +516439,Science and Technology,Science and Technology +516436,Science and Technology,Science and Technology +516435,Science and Technology,Science and Technology +516434,Science and Technology,Science and Technology +516433,Science and Technology,Science and Technology +516432,Science and Technology,Science and Technology +513674,Science and Technology,Science and Technology +503596,Science and Technology,Science and Technology +503594,Science and Technology,Science and Technology +488842,Science and Technology,Science and Technology +476029,Science and Technology,Science and Technology +473728,Science and Technology,Science and Technology +470902,Science and Technology,Science and Technology +468168,Science and Technology,Science and Technology +465055,Science and Technology,Science and Technology +464894,Science and Technology,Science and Technology +464890,Science and Technology,Science and Technology +464878,Science and Technology,Science and Technology +464874,Science and Technology,Science and Technology +464873,Science and Technology,Science and Technology +464870,Science and Technology,Science and Technology +464864,Science and Technology,Science and Technology +464860,Science and Technology,Science and Technology +464859,Science and Technology,Science and Technology +464856,Science and Technology,Science and Technology +464847,Science and Technology,Science and Technology +464839,Science and Technology,Science and Technology +464833,Science and Technology,Science and Technology +462872,Science and Technology,Science and Technology +461388,Science and Technology,Science and Technology +456897,Science and Technology,Science and Technology +456291,Science and Technology,Science and Technology +456290,Science and Technology,Science and Technology +456289,Science and Technology,Science and Technology +456288,Science and Technology,Science and Technology +97452,Aboriginal Affairs,Aboriginal Affairs +97430,Aboriginal Affairs,Aboriginal Affairs +97426,Aboriginal Affairs,Aboriginal Affairs +125206,Aboriginal Affairs,Aboriginal Affairs +125204,Aboriginal Affairs,Aboriginal Affairs +275251,Aboriginal Affairs,Aboriginal Affairs +199709,Aboriginal Affairs,Aboriginal Affairs +199708,Aboriginal Affairs,Aboriginal Affairs +199706,Aboriginal Affairs,Aboriginal Affairs +192209,Aboriginal Affairs,Aboriginal Affairs +192208,Aboriginal Affairs,Aboriginal Affairs +192207,Aboriginal Affairs,Aboriginal Affairs +192206,Aboriginal Affairs,Aboriginal Affairs +192205,Aboriginal Affairs,Aboriginal Affairs +192204,Aboriginal Affairs,Aboriginal Affairs +192205,Telecommunications,Telecommunications +192204,Telecommunications,Telecommunications +275251,Telecommunications,Telecommunications +199709,Telecommunications,Telecommunications +199708,Telecommunications,Telecommunications +199706,Telecommunications,Telecommunications +192209,Telecommunications,Telecommunications +192208,Telecommunications,Telecommunications +192207,Telecommunications,Telecommunications +83113,Aboriginal Affairs,Aboriginal Affairs +77806,Aboriginal Affairs,Aboriginal Affairs +97551,Arts and Culture,Arts and Culture +145014,Arts and Culture,Arts and Culture +85174,Arts and Culture,Arts and Culture +83115,Arts and Culture,Arts and Culture +77803,Arts and Culture,Arts and Culture +77469,Arts and Culture,Arts and Culture +77468,Arts and Culture,Arts and Culture +113617,Arts and Culture,Arts and Culture +113616,Arts and Culture,Arts and Culture +109800,Arts and Culture,Arts and Culture +105779,Arts and Culture,Arts and Culture +206811,Telecommunications,Telecommunications +407157,Telecommunications,Telecommunications +88337,Telecommunications,Telecommunications +88336,Telecommunications,Telecommunications +82981,Telecommunications,Telecommunications +82980,Telecommunications,Telecommunications +77649,Telecommunications,Telecommunications +77370,Telecommunications,Telecommunications +150418,Telecommunications,Telecommunications +113376,Telecommunications,Telecommunications +108935,Telecommunications,Telecommunications +108934,Telecommunications,Telecommunications +102761,Telecommunications,Telecommunications +102760,Telecommunications,Telecommunications +102759,Telecommunications,Telecommunications +102756,Telecommunications,Telecommunications +102755,Telecommunications,Telecommunications +102754,Telecommunications,Telecommunications +100899,Telecommunications,Telecommunications +100893,Telecommunications,Telecommunications +100892,Telecommunications,Telecommunications +100890,Telecommunications,Telecommunications +93022,Telecommunications,Telecommunications +335556,Telecommunications,Telecommunications +424116,Science and Technology,Science and Technology +537379,Science and Technology,Science and Technology +111876,Science and Technology,Science and Technology +111874,Science and Technology,Science and Technology +152959,Science and Technology,Science and Technology +152958,Science and Technology,Science and Technology +374204,Science and Technology,Science and Technology +371440,Science and Technology,Science and Technology +335847,Science and Technology,Science and Technology +335835,Science and Technology,Science and Technology +275330,Science and Technology,Science and Technology +269836,Science and Technology,Science and Technology +507337,Science and Technology,Science and Technology +487576,Science and Technology,Science and Technology +109874,Science and Technology,Science and Technology +90367,Science and Technology,Science and Technology +90362,Science and Technology,Science and Technology +87195,Science and Technology,Science and Technology +87194,Science and Technology,Science and Technology +156835,Science and Technology,Science and Technology +152125,Science and Technology,Science and Technology +152124,Science and Technology,Science and Technology +239909,Science and Technology,Science and Technology +233649,Science and Technology,Science and Technology +228369,Science and Technology,Science and Technology +211511,Science and Technology,Science and Technology +199731,Science and Technology,Science and Technology +184964,Science and Technology,Science and Technology +184944,Science and Technology,Science and Technology +170820,Science and Technology,Science and Technology +170816,Science and Technology,Science and Technology +460908,Science and Technology,Science and Technology +78234,Science and Technology,Science and Technology +160958,Science and Technology,Science and Technology +80437,Aboriginal Affairs,Aboriginal Affairs +75214,Aboriginal Affairs,Aboriginal Affairs +97464,Aboriginal Affairs,Aboriginal Affairs +233709,Science and Technology,Science and Technology +353401,Science and Technology,Science and Technology +303349,Science and Technology,Science and Technology +296812,Science and Technology,Science and Technology +290790,Science and Technology,Science and Technology +290789,Science and Technology,Science and Technology +273588,Science and Technology,Science and Technology +259489,Science and Technology,Science and Technology +541929,Arts and Culture,Arts and Culture +541927,Arts and Culture,Arts and Culture +86994,Arts and Culture,Arts and Culture +197328,Arts and Culture,Arts and Culture +193771,Arts and Culture,Arts and Culture +188944,Arts and Culture,Arts and Culture +188922,Arts and Culture,Arts and Culture +184144,Arts and Culture,Arts and Culture +184124,Arts and Culture,Arts and Culture +184104,Arts and Culture,Arts and Culture +184084,Arts and Culture,Arts and Culture +184064,Arts and Culture,Arts and Culture +184024,Arts and Culture,Arts and Culture +184004,Arts and Culture,Arts and Culture +183984,Arts and Culture,Arts and Culture +172544,Arts and Culture,Arts and Culture +161789,Arts and Culture,Arts and Culture +161787,Arts and Culture,Arts and Culture +161785,Arts and Culture,Arts and Culture +132336,Arts and Culture,Arts and Culture +132335,Arts and Culture,Arts and Culture +132334,Arts and Culture,Arts and Culture +340692,Arts and Culture,Arts and Culture +340689,Arts and Culture,Arts and Culture +340627,Arts and Culture,Arts and Culture +340623,Arts and Culture,Arts and Culture +340622,Arts and Culture,Arts and Culture +309838,Arts and Culture,Arts and Culture +309831,Arts and Culture,Arts and Culture +309813,Arts and Culture,Arts and Culture +309798,Arts and Culture,Arts and Culture +275798,Arts and Culture,Arts and Culture +275795,Arts and Culture,Arts and Culture +275794,Arts and Culture,Arts and Culture +268451,Arts and Culture,Arts and Culture +268450,Arts and Culture,Arts and Culture +250775,Arts and Culture,Arts and Culture +250774,Arts and Culture,Arts and Culture +250625,Arts and Culture,Arts and Culture +250616,Arts and Culture,Arts and Culture +250614,Arts and Culture,Arts and Culture +250594,Arts and Culture,Arts and Culture +250579,Arts and Culture,Arts and Culture +221867,Arts and Culture,Arts and Culture +221727,Arts and Culture,Arts and Culture +212035,Arts and Culture,Arts and Culture +212032,Arts and Culture,Arts and Culture +211872,Arts and Culture,Arts and Culture +211867,Arts and Culture,Arts and Culture +198867,Arts and Culture,Arts and Culture +197336,Arts and Culture,Arts and Culture +197335,Arts and Culture,Arts and Culture +197332,Arts and Culture,Arts and Culture +197331,Arts and Culture,Arts and Culture +439684,Arts and Culture,Arts and Culture +434942,Arts and Culture,Arts and Culture +434940,Arts and Culture,Arts and Culture +434939,Arts and Culture,Arts and Culture +430648,Arts and Culture,Arts and Culture +429623,Arts and Culture,Arts and Culture +429622,Arts and Culture,Arts and Culture +425186,Arts and Culture,Arts and Culture +425185,Arts and Culture,Arts and Culture +425184,Arts and Culture,Arts and Culture +422692,Arts and Culture,Arts and Culture +422690,Arts and Culture,Arts and Culture +419354,Arts and Culture,Arts and Culture +419351,Arts and Culture,Arts and Culture +419350,Arts and Culture,Arts and Culture +419349,Arts and Culture,Arts and Culture +414653,Arts and Culture,Arts and Culture +414652,Arts and Culture,Arts and Culture +414619,Arts and Culture,Arts and Culture +411260,Arts and Culture,Arts and Culture +411259,Arts and Culture,Arts and Culture +411258,Arts and Culture,Arts and Culture +406669,Arts and Culture,Arts and Culture +401840,Arts and Culture,Arts and Culture +401839,Arts and Culture,Arts and Culture +399039,Arts and Culture,Arts and Culture +399038,Arts and Culture,Arts and Culture +389415,Arts and Culture,Arts and Culture +389414,Arts and Culture,Arts and Culture +389411,Arts and Culture,Arts and Culture +389409,Arts and Culture,Arts and Culture +387749,Arts and Culture,Arts and Culture +385901,Arts and Culture,Arts and Culture +382283,Arts and Culture,Arts and Culture +376293,Arts and Culture,Arts and Culture +376291,Arts and Culture,Arts and Culture +371102,Arts and Culture,Arts and Culture +371097,Arts and Culture,Arts and Culture +368769,Arts and Culture,Arts and Culture +362942,Arts and Culture,Arts and Culture +360372,Arts and Culture,Arts and Culture +354404,Arts and Culture,Arts and Culture +352300,Arts and Culture,Arts and Culture +340695,Arts and Culture,Arts and Culture +532093,Arts and Culture,Arts and Culture +532091,Arts and Culture,Arts and Culture +528645,Arts and Culture,Arts and Culture +528643,Arts and Culture,Arts and Culture +526531,Arts and Culture,Arts and Culture +526529,Arts and Culture,Arts and Culture +526528,Arts and Culture,Arts and Culture +523102,Arts and Culture,Arts and Culture +523098,Arts and Culture,Arts and Culture +523096,Arts and Culture,Arts and Culture +523094,Arts and Culture,Arts and Culture +520176,Arts and Culture,Arts and Culture +518238,Arts and Culture,Arts and Culture +508643,Arts and Culture,Arts and Culture +502701,Arts and Culture,Arts and Culture +495940,Arts and Culture,Arts and Culture +495939,Arts and Culture,Arts and Culture +495938,Arts and Culture,Arts and Culture +493656,Arts and Culture,Arts and Culture +493654,Arts and Culture,Arts and Culture +493652,Arts and Culture,Arts and Culture +491418,Arts and Culture,Arts and Culture +491414,Arts and Culture,Arts and Culture +491409,Arts and Culture,Arts and Culture +491406,Arts and Culture,Arts and Culture +491397,Arts and Culture,Arts and Culture +491393,Arts and Culture,Arts and Culture +482482,Arts and Culture,Arts and Culture +482480,Arts and Culture,Arts and Culture +480233,Arts and Culture,Arts and Culture +473657,Arts and Culture,Arts and Culture +473655,Arts and Culture,Arts and Culture +468096,Arts and Culture,Arts and Culture +468095,Arts and Culture,Arts and Culture +468094,Arts and Culture,Arts and Culture +468093,Arts and Culture,Arts and Culture +468092,Arts and Culture,Arts and Culture +468091,Arts and Culture,Arts and Culture +468090,Arts and Culture,Arts and Culture +468089,Arts and Culture,Arts and Culture +468088,Arts and Culture,Arts and Culture +468087,Arts and Culture,Arts and Culture +468086,Arts and Culture,Arts and Culture +468085,Arts and Culture,Arts and Culture +468084,Arts and Culture,Arts and Culture +468083,Arts and Culture,Arts and Culture +468082,Arts and Culture,Arts and Culture +468081,Arts and Culture,Arts and Culture +468080,Arts and Culture,Arts and Culture +468079,Arts and Culture,Arts and Culture +468078,Arts and Culture,Arts and Culture +468077,Arts and Culture,Arts and Culture +468076,Arts and Culture,Arts and Culture +465035,Arts and Culture,Arts and Culture +465034,Arts and Culture,Arts and Culture +462508,Arts and Culture,Arts and Culture +462507,Arts and Culture,Arts and Culture +462506,Arts and Culture,Arts and Culture +458360,Arts and Culture,Arts and Culture +458359,Arts and Culture,Arts and Culture +455109,Arts and Culture,Arts and Culture +455108,Arts and Culture,Arts and Culture +455107,Arts and Culture,Arts and Culture +453069,Arts and Culture,Arts and Culture +446484,Arts and Culture,Arts and Culture +445767,Arts and Culture,Arts and Culture +445766,Arts and Culture,Arts and Culture +442202,Arts and Culture,Arts and Culture +441999,Arts and Culture,Arts and Culture +441994,Arts and Culture,Arts and Culture +417181,Arts and Culture,Arts and Culture +417180,Arts and Culture,Arts and Culture +227512,Arts and Culture,Arts and Culture +227511,Arts and Culture,Arts and Culture +227510,Arts and Culture,Arts and Culture +424329,Broadcasting,Broadcasting +422500,Broadcasting,Broadcasting +418319,Broadcasting,Broadcasting +418318,Broadcasting,Broadcasting +417185,Broadcasting,Broadcasting +417181,Broadcasting,Broadcasting +417180,Broadcasting,Broadcasting +417177,Broadcasting,Broadcasting +417175,Broadcasting,Broadcasting +414750,Broadcasting,Broadcasting +414747,Broadcasting,Broadcasting +102337,Broadcasting,Broadcasting +434728,Broadcasting,Broadcasting +434727,Broadcasting,Broadcasting +434726,Broadcasting,Broadcasting +434723,Broadcasting,Broadcasting +434721,Broadcasting,Broadcasting +433076,Broadcasting,Broadcasting +433056,Broadcasting,Broadcasting +433055,Broadcasting,Broadcasting +432764,Broadcasting,Broadcasting +432762,Broadcasting,Broadcasting +432761,Broadcasting,Broadcasting +432760,Broadcasting,Broadcasting +432759,Broadcasting,Broadcasting +432758,Broadcasting,Broadcasting +431018,Broadcasting,Broadcasting +424525,Broadcasting,Broadcasting +424524,Broadcasting,Broadcasting +424523,Broadcasting,Broadcasting +421688,Broadcasting,Broadcasting +421686,Broadcasting,Broadcasting +421682,Broadcasting,Broadcasting +421681,Broadcasting,Broadcasting +421679,Broadcasting,Broadcasting +419877,Broadcasting,Broadcasting +419875,Broadcasting,Broadcasting +415782,Broadcasting,Broadcasting +415778,Broadcasting,Broadcasting +415777,Broadcasting,Broadcasting +415775,Broadcasting,Broadcasting +414750,Telecommunications,Telecommunications +414747,Telecommunications,Telecommunications +434728,Telecommunications,Telecommunications +434727,Telecommunications,Telecommunications +434726,Telecommunications,Telecommunications +434723,Telecommunications,Telecommunications +434721,Telecommunications,Telecommunications +433076,Telecommunications,Telecommunications +433056,Telecommunications,Telecommunications +433055,Telecommunications,Telecommunications +432764,Telecommunications,Telecommunications +432762,Telecommunications,Telecommunications +432761,Telecommunications,Telecommunications +432760,Telecommunications,Telecommunications +432759,Telecommunications,Telecommunications +432758,Telecommunications,Telecommunications +431018,Telecommunications,Telecommunications +424525,Telecommunications,Telecommunications +424524,Telecommunications,Telecommunications +424523,Telecommunications,Telecommunications +421688,Telecommunications,Telecommunications +421686,Telecommunications,Telecommunications +421682,Telecommunications,Telecommunications +421681,Telecommunications,Telecommunications +421679,Telecommunications,Telecommunications +419877,Telecommunications,Telecommunications +419875,Telecommunications,Telecommunications +415782,Telecommunications,Telecommunications +415778,Telecommunications,Telecommunications +415777,Telecommunications,Telecommunications +415775,Telecommunications,Telecommunications +446761,Science and Technology,Science and Technology +430571,Science and Technology,Science and Technology +256895,Science and Technology,Science and Technology +238609,Science and Technology,Science and Technology +234369,Science and Technology,Science and Technology +196065,Science and Technology,Science and Technology +191646,Science and Technology,Science and Technology +172404,Science and Technology,Science and Technology +161312,Science and Technology,Science and Technology +161311,Science and Technology,Science and Technology +160249,Science and Technology,Science and Technology +153915,Science and Technology,Science and Technology +421280,Science and Technology,Science and Technology +417828,Science and Technology,Science and Technology +411742,Science and Technology,Science and Technology +411741,Science and Technology,Science and Technology +411740,Science and Technology,Science and Technology +411409,Science and Technology,Science and Technology +411408,Science and Technology,Science and Technology +411404,Science and Technology,Science and Technology +408692,Science and Technology,Science and Technology +368497,Science and Technology,Science and Technology +364647,Science and Technology,Science and Technology +364646,Science and Technology,Science and Technology +364645,Science and Technology,Science and Technology +364644,Science and Technology,Science and Technology +363026,Science and Technology,Science and Technology +363025,Science and Technology,Science and Technology +362217,Science and Technology,Science and Technology +362215,Science and Technology,Science and Technology +355203,Science and Technology,Science and Technology +346765,Science and Technology,Science and Technology +346764,Science and Technology,Science and Technology +344401,Science and Technology,Science and Technology +344400,Science and Technology,Science and Technology +344399,Science and Technology,Science and Technology +342477,Science and Technology,Science and Technology +340703,Science and Technology,Science and Technology +340701,Science and Technology,Science and Technology +340694,Science and Technology,Science and Technology +339422,Science and Technology,Science and Technology +339421,Science and Technology,Science and Technology +336135,Science and Technology,Science and Technology +334495,Science and Technology,Science and Technology +328350,Science and Technology,Science and Technology +322781,Science and Technology,Science and Technology +322779,Science and Technology,Science and Technology +322778,Science and Technology,Science and Technology +322777,Science and Technology,Science and Technology +322411,Science and Technology,Science and Technology +317770,Science and Technology,Science and Technology +314755,Science and Technology,Science and Technology +314751,Science and Technology,Science and Technology +314749,Science and Technology,Science and Technology +311392,Science and Technology,Science and Technology +300470,Science and Technology,Science and Technology +278890,Science and Technology,Science and Technology +278889,Science and Technology,Science and Technology +264709,Science and Technology,Science and Technology +264073,Science and Technology,Science and Technology +543364,Science and Technology,Science and Technology +530722,Science and Technology,Science and Technology +524403,Science and Technology,Science and Technology +516682,Science and Technology,Science and Technology +514461,Science and Technology,Science and Technology +462279,Science and Technology,Science and Technology +460419,Science and Technology,Science and Technology +155187,Science and Technology,Science and Technology +335312,Arts and Culture,Arts and Culture +534469,Arts and Culture,Arts and Culture +111174,Arts and Culture,Arts and Culture +75174,Arts and Culture,Arts and Culture +196365,Arts and Culture,Arts and Culture +195808,Arts and Culture,Arts and Culture +175738,Arts and Culture,Arts and Culture +175737,Arts and Culture,Arts and Culture +175736,Arts and Culture,Arts and Culture +175735,Arts and Culture,Arts and Culture +170129,Arts and Culture,Arts and Culture +170128,Arts and Culture,Arts and Culture +158237,Arts and Culture,Arts and Culture +263110,Aboriginal Affairs,Aboriginal Affairs +242869,Aboriginal Affairs,Aboriginal Affairs +193738,Aboriginal Affairs,Aboriginal Affairs +193734,Aboriginal Affairs,Aboriginal Affairs +193725,Aboriginal Affairs,Aboriginal Affairs +193709,Aboriginal Affairs,Aboriginal Affairs +139614,Aboriginal Affairs,Aboriginal Affairs +446785,Aboriginal Affairs,Aboriginal Affairs +439323,Aboriginal Affairs,Aboriginal Affairs +194404,Aboriginal Affairs,Aboriginal Affairs +194384,Aboriginal Affairs,Aboriginal Affairs +194364,Aboriginal Affairs,Aboriginal Affairs +194344,Aboriginal Affairs,Aboriginal Affairs +194324,Aboriginal Affairs,Aboriginal Affairs +194304,Aboriginal Affairs,Aboriginal Affairs +194284,Aboriginal Affairs,Aboriginal Affairs +194264,Aboriginal Affairs,Aboriginal Affairs +194244,Aboriginal Affairs,Aboriginal Affairs +194226,Aboriginal Affairs,Aboriginal Affairs +194225,Aboriginal Affairs,Aboriginal Affairs +194224,Aboriginal Affairs,Aboriginal Affairs +194206,Aboriginal Affairs,Aboriginal Affairs +194205,Aboriginal Affairs,Aboriginal Affairs +194204,Aboriginal Affairs,Aboriginal Affairs +194184,Aboriginal Affairs,Aboriginal Affairs +194165,Aboriginal Affairs,Aboriginal Affairs +194164,Aboriginal Affairs,Aboriginal Affairs +194144,Aboriginal Affairs,Aboriginal Affairs +194125,Aboriginal Affairs,Aboriginal Affairs +194124,Aboriginal Affairs,Aboriginal Affairs +194104,Aboriginal Affairs,Aboriginal Affairs +194084,Aboriginal Affairs,Aboriginal Affairs +194067,Aboriginal Affairs,Aboriginal Affairs +194066,Aboriginal Affairs,Aboriginal Affairs +194065,Aboriginal Affairs,Aboriginal Affairs +194064,Aboriginal Affairs,Aboriginal Affairs +194045,Aboriginal Affairs,Aboriginal Affairs +194044,Aboriginal Affairs,Aboriginal Affairs +159916,Aboriginal Affairs,Aboriginal Affairs +159909,Aboriginal Affairs,Aboriginal Affairs +159907,Aboriginal Affairs,Aboriginal Affairs +159853,Aboriginal Affairs,Aboriginal Affairs +159851,Aboriginal Affairs,Aboriginal Affairs +159835,Aboriginal Affairs,Aboriginal Affairs +157149,Aboriginal Affairs,Aboriginal Affairs +194604,Aboriginal Affairs,Aboriginal Affairs +194603,Aboriginal Affairs,Aboriginal Affairs +194602,Aboriginal Affairs,Aboriginal Affairs +194601,Aboriginal Affairs,Aboriginal Affairs +194600,Aboriginal Affairs,Aboriginal Affairs +194599,Aboriginal Affairs,Aboriginal Affairs +194598,Aboriginal Affairs,Aboriginal Affairs +194597,Aboriginal Affairs,Aboriginal Affairs +194596,Aboriginal Affairs,Aboriginal Affairs +194595,Aboriginal Affairs,Aboriginal Affairs +194594,Aboriginal Affairs,Aboriginal Affairs +194593,Aboriginal Affairs,Aboriginal Affairs +194592,Aboriginal Affairs,Aboriginal Affairs +194591,Aboriginal Affairs,Aboriginal Affairs +194590,Aboriginal Affairs,Aboriginal Affairs +194589,Aboriginal Affairs,Aboriginal Affairs +194588,Aboriginal Affairs,Aboriginal Affairs +194587,Aboriginal Affairs,Aboriginal Affairs +194586,Aboriginal Affairs,Aboriginal Affairs +194585,Aboriginal Affairs,Aboriginal Affairs +194584,Aboriginal Affairs,Aboriginal Affairs +194565,Aboriginal Affairs,Aboriginal Affairs +194564,Aboriginal Affairs,Aboriginal Affairs +194554,Aboriginal Affairs,Aboriginal Affairs +194552,Aboriginal Affairs,Aboriginal Affairs +194550,Aboriginal Affairs,Aboriginal Affairs +194548,Aboriginal Affairs,Aboriginal Affairs +194547,Aboriginal Affairs,Aboriginal Affairs +194545,Aboriginal Affairs,Aboriginal Affairs +194544,Aboriginal Affairs,Aboriginal Affairs +194538,Aboriginal Affairs,Aboriginal Affairs +194536,Aboriginal Affairs,Aboriginal Affairs +194534,Aboriginal Affairs,Aboriginal Affairs +194532,Aboriginal Affairs,Aboriginal Affairs +194531,Aboriginal Affairs,Aboriginal Affairs +194529,Aboriginal Affairs,Aboriginal Affairs +194528,Aboriginal Affairs,Aboriginal Affairs +194526,Aboriginal Affairs,Aboriginal Affairs +194524,Aboriginal Affairs,Aboriginal Affairs +194505,Aboriginal Affairs,Aboriginal Affairs +194484,Aboriginal Affairs,Aboriginal Affairs +194464,Aboriginal Affairs,Aboriginal Affairs +194444,Aboriginal Affairs,Aboriginal Affairs +194424,Aboriginal Affairs,Aboriginal Affairs +194405,Aboriginal Affairs,Aboriginal Affairs +341712,Aboriginal Affairs,Aboriginal Affairs +341709,Aboriginal Affairs,Aboriginal Affairs +341684,Aboriginal Affairs,Aboriginal Affairs +341642,Aboriginal Affairs,Aboriginal Affairs +341640,Aboriginal Affairs,Aboriginal Affairs +341612,Aboriginal Affairs,Aboriginal Affairs +341413,Aboriginal Affairs,Aboriginal Affairs +341412,Aboriginal Affairs,Aboriginal Affairs +341411,Aboriginal Affairs,Aboriginal Affairs +341410,Aboriginal Affairs,Aboriginal Affairs +341409,Aboriginal Affairs,Aboriginal Affairs +341408,Aboriginal Affairs,Aboriginal Affairs +341407,Aboriginal Affairs,Aboriginal Affairs +341406,Aboriginal Affairs,Aboriginal Affairs +341405,Aboriginal Affairs,Aboriginal Affairs +341404,Aboriginal Affairs,Aboriginal Affairs +341403,Aboriginal Affairs,Aboriginal Affairs +341402,Aboriginal Affairs,Aboriginal Affairs +341401,Aboriginal Affairs,Aboriginal Affairs +341400,Aboriginal Affairs,Aboriginal Affairs +341399,Aboriginal Affairs,Aboriginal Affairs +341394,Aboriginal Affairs,Aboriginal Affairs +341391,Aboriginal Affairs,Aboriginal Affairs +341389,Aboriginal Affairs,Aboriginal Affairs +341387,Aboriginal Affairs,Aboriginal Affairs +341385,Aboriginal Affairs,Aboriginal Affairs +341382,Aboriginal Affairs,Aboriginal Affairs +341379,Aboriginal Affairs,Aboriginal Affairs +341377,Aboriginal Affairs,Aboriginal Affairs +341374,Aboriginal Affairs,Aboriginal Affairs +341372,Aboriginal Affairs,Aboriginal Affairs +341370,Aboriginal Affairs,Aboriginal Affairs +341368,Aboriginal Affairs,Aboriginal Affairs +341367,Aboriginal Affairs,Aboriginal Affairs +341364,Aboriginal Affairs,Aboriginal Affairs +341359,Aboriginal Affairs,Aboriginal Affairs +341356,Aboriginal Affairs,Aboriginal Affairs +341354,Aboriginal Affairs,Aboriginal Affairs +341353,Aboriginal Affairs,Aboriginal Affairs +341351,Aboriginal Affairs,Aboriginal Affairs +341350,Aboriginal Affairs,Aboriginal Affairs +341346,Aboriginal Affairs,Aboriginal Affairs +341345,Aboriginal Affairs,Aboriginal Affairs +341343,Aboriginal Affairs,Aboriginal Affairs +341340,Aboriginal Affairs,Aboriginal Affairs +341338,Aboriginal Affairs,Aboriginal Affairs +341336,Aboriginal Affairs,Aboriginal Affairs +341334,Aboriginal Affairs,Aboriginal Affairs +341332,Aboriginal Affairs,Aboriginal Affairs +341331,Aboriginal Affairs,Aboriginal Affairs +341330,Aboriginal Affairs,Aboriginal Affairs +341329,Aboriginal Affairs,Aboriginal Affairs +341327,Aboriginal Affairs,Aboriginal Affairs +341326,Aboriginal Affairs,Aboriginal Affairs +341324,Aboriginal Affairs,Aboriginal Affairs +341322,Aboriginal Affairs,Aboriginal Affairs +341321,Aboriginal Affairs,Aboriginal Affairs +341318,Aboriginal Affairs,Aboriginal Affairs +341314,Aboriginal Affairs,Aboriginal Affairs +341312,Aboriginal Affairs,Aboriginal Affairs +341311,Aboriginal Affairs,Aboriginal Affairs +341310,Aboriginal Affairs,Aboriginal Affairs +341307,Aboriginal Affairs,Aboriginal Affairs +341306,Aboriginal Affairs,Aboriginal Affairs +341304,Aboriginal Affairs,Aboriginal Affairs +341303,Aboriginal Affairs,Aboriginal Affairs +341302,Aboriginal Affairs,Aboriginal Affairs +341301,Aboriginal Affairs,Aboriginal Affairs +341300,Aboriginal Affairs,Aboriginal Affairs +341299,Aboriginal Affairs,Aboriginal Affairs +341298,Aboriginal Affairs,Aboriginal Affairs +341297,Aboriginal Affairs,Aboriginal Affairs +341296,Aboriginal Affairs,Aboriginal Affairs +341295,Aboriginal Affairs,Aboriginal Affairs +341294,Aboriginal Affairs,Aboriginal Affairs +341293,Aboriginal Affairs,Aboriginal Affairs +341292,Aboriginal Affairs,Aboriginal Affairs +341290,Aboriginal Affairs,Aboriginal Affairs +341289,Aboriginal Affairs,Aboriginal Affairs +341288,Aboriginal Affairs,Aboriginal Affairs +341286,Aboriginal Affairs,Aboriginal Affairs +341285,Aboriginal Affairs,Aboriginal Affairs +341284,Aboriginal Affairs,Aboriginal Affairs +341283,Aboriginal Affairs,Aboriginal Affairs +341282,Aboriginal Affairs,Aboriginal Affairs +341281,Aboriginal Affairs,Aboriginal Affairs +341280,Aboriginal Affairs,Aboriginal Affairs +341278,Aboriginal Affairs,Aboriginal Affairs +341276,Aboriginal Affairs,Aboriginal Affairs +341274,Aboriginal Affairs,Aboriginal Affairs +341271,Aboriginal Affairs,Aboriginal Affairs +341269,Aboriginal Affairs,Aboriginal Affairs +341266,Aboriginal Affairs,Aboriginal Affairs +341261,Aboriginal Affairs,Aboriginal Affairs +341244,Aboriginal Affairs,Aboriginal Affairs +341242,Aboriginal Affairs,Aboriginal Affairs +341238,Aboriginal Affairs,Aboriginal Affairs +341236,Aboriginal Affairs,Aboriginal Affairs +341232,Aboriginal Affairs,Aboriginal Affairs +341230,Aboriginal Affairs,Aboriginal Affairs +341209,Aboriginal Affairs,Aboriginal Affairs +341207,Aboriginal Affairs,Aboriginal Affairs +341204,Aboriginal Affairs,Aboriginal Affairs +341202,Aboriginal Affairs,Aboriginal Affairs +341197,Aboriginal Affairs,Aboriginal Affairs +341195,Aboriginal Affairs,Aboriginal Affairs +341194,Aboriginal Affairs,Aboriginal Affairs +341191,Aboriginal Affairs,Aboriginal Affairs +341189,Aboriginal Affairs,Aboriginal Affairs +341184,Aboriginal Affairs,Aboriginal Affairs +341183,Aboriginal Affairs,Aboriginal Affairs +341182,Aboriginal Affairs,Aboriginal Affairs +341174,Aboriginal Affairs,Aboriginal Affairs +422057,Aboriginal Affairs,Aboriginal Affairs +422056,Aboriginal Affairs,Aboriginal Affairs +421910,Aboriginal Affairs,Aboriginal Affairs +421908,Aboriginal Affairs,Aboriginal Affairs +421904,Aboriginal Affairs,Aboriginal Affairs +421597,Aboriginal Affairs,Aboriginal Affairs +421596,Aboriginal Affairs,Aboriginal Affairs +421595,Aboriginal Affairs,Aboriginal Affairs +421591,Aboriginal Affairs,Aboriginal Affairs +421590,Aboriginal Affairs,Aboriginal Affairs +421589,Aboriginal Affairs,Aboriginal Affairs +421587,Aboriginal Affairs,Aboriginal Affairs +421586,Aboriginal Affairs,Aboriginal Affairs +421555,Aboriginal Affairs,Aboriginal Affairs +421554,Aboriginal Affairs,Aboriginal Affairs +421552,Aboriginal Affairs,Aboriginal Affairs +421550,Aboriginal Affairs,Aboriginal Affairs +421547,Aboriginal Affairs,Aboriginal Affairs +421545,Aboriginal Affairs,Aboriginal Affairs +421537,Aboriginal Affairs,Aboriginal Affairs +421502,Aboriginal Affairs,Aboriginal Affairs +421456,Aboriginal Affairs,Aboriginal Affairs +421453,Aboriginal Affairs,Aboriginal Affairs +421439,Aboriginal Affairs,Aboriginal Affairs +421438,Aboriginal Affairs,Aboriginal Affairs +421419,Aboriginal Affairs,Aboriginal Affairs +421411,Aboriginal Affairs,Aboriginal Affairs +421408,Aboriginal Affairs,Aboriginal Affairs +421407,Aboriginal Affairs,Aboriginal Affairs +421404,Aboriginal Affairs,Aboriginal Affairs +421402,Aboriginal Affairs,Aboriginal Affairs +421399,Aboriginal Affairs,Aboriginal Affairs +421397,Aboriginal Affairs,Aboriginal Affairs +421396,Aboriginal Affairs,Aboriginal Affairs +421392,Aboriginal Affairs,Aboriginal Affairs +421077,Aboriginal Affairs,Aboriginal Affairs +421070,Aboriginal Affairs,Aboriginal Affairs +421069,Aboriginal Affairs,Aboriginal Affairs +421067,Aboriginal Affairs,Aboriginal Affairs +421065,Aboriginal Affairs,Aboriginal Affairs +421064,Aboriginal Affairs,Aboriginal Affairs +421063,Aboriginal Affairs,Aboriginal Affairs +421062,Aboriginal Affairs,Aboriginal Affairs +421061,Aboriginal Affairs,Aboriginal Affairs +421060,Aboriginal Affairs,Aboriginal Affairs +421058,Aboriginal Affairs,Aboriginal Affairs +421057,Aboriginal Affairs,Aboriginal Affairs +421056,Aboriginal Affairs,Aboriginal Affairs +421055,Aboriginal Affairs,Aboriginal Affairs +421054,Aboriginal Affairs,Aboriginal Affairs +421044,Aboriginal Affairs,Aboriginal Affairs +421043,Aboriginal Affairs,Aboriginal Affairs +421042,Aboriginal Affairs,Aboriginal Affairs +421041,Aboriginal Affairs,Aboriginal Affairs +421039,Aboriginal Affairs,Aboriginal Affairs +421037,Aboriginal Affairs,Aboriginal Affairs +421034,Aboriginal Affairs,Aboriginal Affairs +421033,Aboriginal Affairs,Aboriginal Affairs +421032,Aboriginal Affairs,Aboriginal Affairs +421031,Aboriginal Affairs,Aboriginal Affairs +421030,Aboriginal Affairs,Aboriginal Affairs +421029,Aboriginal Affairs,Aboriginal Affairs +421028,Aboriginal Affairs,Aboriginal Affairs +421027,Aboriginal Affairs,Aboriginal Affairs +421025,Aboriginal Affairs,Aboriginal Affairs +421024,Aboriginal Affairs,Aboriginal Affairs +421023,Aboriginal Affairs,Aboriginal Affairs +421022,Aboriginal Affairs,Aboriginal Affairs +421021,Aboriginal Affairs,Aboriginal Affairs +421020,Aboriginal Affairs,Aboriginal Affairs +420920,Aboriginal Affairs,Aboriginal Affairs +420918,Aboriginal Affairs,Aboriginal Affairs +420917,Aboriginal Affairs,Aboriginal Affairs +420916,Aboriginal Affairs,Aboriginal Affairs +420913,Aboriginal Affairs,Aboriginal Affairs +420909,Aboriginal Affairs,Aboriginal Affairs +420907,Aboriginal Affairs,Aboriginal Affairs +420906,Aboriginal Affairs,Aboriginal Affairs +420905,Aboriginal Affairs,Aboriginal Affairs +420904,Aboriginal Affairs,Aboriginal Affairs +420903,Aboriginal Affairs,Aboriginal Affairs +420901,Aboriginal Affairs,Aboriginal Affairs +420899,Aboriginal Affairs,Aboriginal Affairs +420898,Aboriginal Affairs,Aboriginal Affairs +420897,Aboriginal Affairs,Aboriginal Affairs +420896,Aboriginal Affairs,Aboriginal Affairs +420895,Aboriginal Affairs,Aboriginal Affairs +420894,Aboriginal Affairs,Aboriginal Affairs +420893,Aboriginal Affairs,Aboriginal Affairs +420892,Aboriginal Affairs,Aboriginal Affairs +420891,Aboriginal Affairs,Aboriginal Affairs +420887,Aboriginal Affairs,Aboriginal Affairs +420879,Aboriginal Affairs,Aboriginal Affairs +420878,Aboriginal Affairs,Aboriginal Affairs +420877,Aboriginal Affairs,Aboriginal Affairs +420874,Aboriginal Affairs,Aboriginal Affairs +420869,Aboriginal Affairs,Aboriginal Affairs +420868,Aboriginal Affairs,Aboriginal Affairs +420867,Aboriginal Affairs,Aboriginal Affairs +416858,Aboriginal Affairs,Aboriginal Affairs +414872,Aboriginal Affairs,Aboriginal Affairs +397124,Aboriginal Affairs,Aboriginal Affairs +397123,Aboriginal Affairs,Aboriginal Affairs +397120,Aboriginal Affairs,Aboriginal Affairs +397118,Aboriginal Affairs,Aboriginal Affairs +397115,Aboriginal Affairs,Aboriginal Affairs +397112,Aboriginal Affairs,Aboriginal Affairs +397111,Aboriginal Affairs,Aboriginal Affairs +397110,Aboriginal Affairs,Aboriginal Affairs +397109,Aboriginal Affairs,Aboriginal Affairs +397108,Aboriginal Affairs,Aboriginal Affairs +397107,Aboriginal Affairs,Aboriginal Affairs +397106,Aboriginal Affairs,Aboriginal Affairs +397089,Aboriginal Affairs,Aboriginal Affairs +397087,Aboriginal Affairs,Aboriginal Affairs +397081,Aboriginal Affairs,Aboriginal Affairs +397079,Aboriginal Affairs,Aboriginal Affairs +397078,Aboriginal Affairs,Aboriginal Affairs +397076,Aboriginal Affairs,Aboriginal Affairs +397073,Aboriginal Affairs,Aboriginal Affairs +397072,Aboriginal Affairs,Aboriginal Affairs +397071,Aboriginal Affairs,Aboriginal Affairs +397070,Aboriginal Affairs,Aboriginal Affairs +397069,Aboriginal Affairs,Aboriginal Affairs +397068,Aboriginal Affairs,Aboriginal Affairs +397067,Aboriginal Affairs,Aboriginal Affairs +397066,Aboriginal Affairs,Aboriginal Affairs +397065,Aboriginal Affairs,Aboriginal Affairs +397064,Aboriginal Affairs,Aboriginal Affairs +397062,Aboriginal Affairs,Aboriginal Affairs +397058,Aboriginal Affairs,Aboriginal Affairs +397052,Aboriginal Affairs,Aboriginal Affairs +397034,Aboriginal Affairs,Aboriginal Affairs +397032,Aboriginal Affairs,Aboriginal Affairs +397028,Aboriginal Affairs,Aboriginal Affairs +397026,Aboriginal Affairs,Aboriginal Affairs +397021,Aboriginal Affairs,Aboriginal Affairs +397020,Aboriginal Affairs,Aboriginal Affairs +397018,Aboriginal Affairs,Aboriginal Affairs +397011,Aboriginal Affairs,Aboriginal Affairs +397007,Aboriginal Affairs,Aboriginal Affairs +397005,Aboriginal Affairs,Aboriginal Affairs +397004,Aboriginal Affairs,Aboriginal Affairs +397001,Aboriginal Affairs,Aboriginal Affairs +397000,Aboriginal Affairs,Aboriginal Affairs +396998,Aboriginal Affairs,Aboriginal Affairs +396997,Aboriginal Affairs,Aboriginal Affairs +396996,Aboriginal Affairs,Aboriginal Affairs +396995,Aboriginal Affairs,Aboriginal Affairs +396994,Aboriginal Affairs,Aboriginal Affairs +396990,Aboriginal Affairs,Aboriginal Affairs +396988,Aboriginal Affairs,Aboriginal Affairs +396984,Aboriginal Affairs,Aboriginal Affairs +396983,Aboriginal Affairs,Aboriginal Affairs +396980,Aboriginal Affairs,Aboriginal Affairs +396963,Aboriginal Affairs,Aboriginal Affairs +396956,Aboriginal Affairs,Aboriginal Affairs +396952,Aboriginal Affairs,Aboriginal Affairs +396947,Aboriginal Affairs,Aboriginal Affairs +396945,Aboriginal Affairs,Aboriginal Affairs +396937,Aboriginal Affairs,Aboriginal Affairs +396935,Aboriginal Affairs,Aboriginal Affairs +396933,Aboriginal Affairs,Aboriginal Affairs +396917,Aboriginal Affairs,Aboriginal Affairs +396912,Aboriginal Affairs,Aboriginal Affairs +396885,Aboriginal Affairs,Aboriginal Affairs +396881,Aboriginal Affairs,Aboriginal Affairs +396872,Aboriginal Affairs,Aboriginal Affairs +396847,Aboriginal Affairs,Aboriginal Affairs +396839,Aboriginal Affairs,Aboriginal Affairs +396823,Aboriginal Affairs,Aboriginal Affairs +396819,Aboriginal Affairs,Aboriginal Affairs +396810,Aboriginal Affairs,Aboriginal Affairs +396796,Aboriginal Affairs,Aboriginal Affairs +396738,Aboriginal Affairs,Aboriginal Affairs +396257,Aboriginal Affairs,Aboriginal Affairs +396255,Aboriginal Affairs,Aboriginal Affairs +396253,Aboriginal Affairs,Aboriginal Affairs +396250,Aboriginal Affairs,Aboriginal Affairs +396247,Aboriginal Affairs,Aboriginal Affairs +396244,Aboriginal Affairs,Aboriginal Affairs +396223,Aboriginal Affairs,Aboriginal Affairs +396221,Aboriginal Affairs,Aboriginal Affairs +396218,Aboriginal Affairs,Aboriginal Affairs +396216,Aboriginal Affairs,Aboriginal Affairs +396215,Aboriginal Affairs,Aboriginal Affairs +396214,Aboriginal Affairs,Aboriginal Affairs +396213,Aboriginal Affairs,Aboriginal Affairs +396212,Aboriginal Affairs,Aboriginal Affairs +396207,Aboriginal Affairs,Aboriginal Affairs +396204,Aboriginal Affairs,Aboriginal Affairs +395737,Aboriginal Affairs,Aboriginal Affairs +395736,Aboriginal Affairs,Aboriginal Affairs +395735,Aboriginal Affairs,Aboriginal Affairs +395733,Aboriginal Affairs,Aboriginal Affairs +395732,Aboriginal Affairs,Aboriginal Affairs +395730,Aboriginal Affairs,Aboriginal Affairs +395725,Aboriginal Affairs,Aboriginal Affairs +395720,Aboriginal Affairs,Aboriginal Affairs +395719,Aboriginal Affairs,Aboriginal Affairs +395715,Aboriginal Affairs,Aboriginal Affairs +395713,Aboriginal Affairs,Aboriginal Affairs +395708,Aboriginal Affairs,Aboriginal Affairs +395701,Aboriginal Affairs,Aboriginal Affairs +395620,Aboriginal Affairs,Aboriginal Affairs +395619,Aboriginal Affairs,Aboriginal Affairs +395618,Aboriginal Affairs,Aboriginal Affairs +395617,Aboriginal Affairs,Aboriginal Affairs +395616,Aboriginal Affairs,Aboriginal Affairs +395614,Aboriginal Affairs,Aboriginal Affairs +395611,Aboriginal Affairs,Aboriginal Affairs +395610,Aboriginal Affairs,Aboriginal Affairs +395609,Aboriginal Affairs,Aboriginal Affairs +395608,Aboriginal Affairs,Aboriginal Affairs +395603,Aboriginal Affairs,Aboriginal Affairs +395598,Aboriginal Affairs,Aboriginal Affairs +395597,Aboriginal Affairs,Aboriginal Affairs +395594,Aboriginal Affairs,Aboriginal Affairs +395534,Aboriginal Affairs,Aboriginal Affairs +395533,Aboriginal Affairs,Aboriginal Affairs +395532,Aboriginal Affairs,Aboriginal Affairs +395531,Aboriginal Affairs,Aboriginal Affairs +395527,Aboriginal Affairs,Aboriginal Affairs +395526,Aboriginal Affairs,Aboriginal Affairs +395524,Aboriginal Affairs,Aboriginal Affairs +395523,Aboriginal Affairs,Aboriginal Affairs +395520,Aboriginal Affairs,Aboriginal Affairs +395519,Aboriginal Affairs,Aboriginal Affairs +395518,Aboriginal Affairs,Aboriginal Affairs +395504,Aboriginal Affairs,Aboriginal Affairs +395419,Aboriginal Affairs,Aboriginal Affairs +393476,Aboriginal Affairs,Aboriginal Affairs +393250,Aboriginal Affairs,Aboriginal Affairs +393245,Aboriginal Affairs,Aboriginal Affairs +393244,Aboriginal Affairs,Aboriginal Affairs +393243,Aboriginal Affairs,Aboriginal Affairs +393242,Aboriginal Affairs,Aboriginal Affairs +393241,Aboriginal Affairs,Aboriginal Affairs +393238,Aboriginal Affairs,Aboriginal Affairs +392934,Aboriginal Affairs,Aboriginal Affairs +392623,Aboriginal Affairs,Aboriginal Affairs +372312,Aboriginal Affairs,Aboriginal Affairs +372311,Aboriginal Affairs,Aboriginal Affairs +372310,Aboriginal Affairs,Aboriginal Affairs +372309,Aboriginal Affairs,Aboriginal Affairs +372308,Aboriginal Affairs,Aboriginal Affairs +372307,Aboriginal Affairs,Aboriginal Affairs +372305,Aboriginal Affairs,Aboriginal Affairs +372304,Aboriginal Affairs,Aboriginal Affairs +372303,Aboriginal Affairs,Aboriginal Affairs +372302,Aboriginal Affairs,Aboriginal Affairs +372299,Aboriginal Affairs,Aboriginal Affairs +372298,Aboriginal Affairs,Aboriginal Affairs +372297,Aboriginal Affairs,Aboriginal Affairs +372296,Aboriginal Affairs,Aboriginal Affairs +372295,Aboriginal Affairs,Aboriginal Affairs +372294,Aboriginal Affairs,Aboriginal Affairs +372293,Aboriginal Affairs,Aboriginal Affairs +372292,Aboriginal Affairs,Aboriginal Affairs +372291,Aboriginal Affairs,Aboriginal Affairs +372290,Aboriginal Affairs,Aboriginal Affairs +372289,Aboriginal Affairs,Aboriginal Affairs +372288,Aboriginal Affairs,Aboriginal Affairs +372287,Aboriginal Affairs,Aboriginal Affairs +372286,Aboriginal Affairs,Aboriginal Affairs +372285,Aboriginal Affairs,Aboriginal Affairs +372284,Aboriginal Affairs,Aboriginal Affairs +372283,Aboriginal Affairs,Aboriginal Affairs +372282,Aboriginal Affairs,Aboriginal Affairs +372280,Aboriginal Affairs,Aboriginal Affairs +372279,Aboriginal Affairs,Aboriginal Affairs +372278,Aboriginal Affairs,Aboriginal Affairs +372277,Aboriginal Affairs,Aboriginal Affairs +372276,Aboriginal Affairs,Aboriginal Affairs +372275,Aboriginal Affairs,Aboriginal Affairs +372274,Aboriginal Affairs,Aboriginal Affairs +372273,Aboriginal Affairs,Aboriginal Affairs +372272,Aboriginal Affairs,Aboriginal Affairs +372271,Aboriginal Affairs,Aboriginal Affairs +372270,Aboriginal Affairs,Aboriginal Affairs +372269,Aboriginal Affairs,Aboriginal Affairs +372268,Aboriginal Affairs,Aboriginal Affairs +372267,Aboriginal Affairs,Aboriginal Affairs +372266,Aboriginal Affairs,Aboriginal Affairs +372265,Aboriginal Affairs,Aboriginal Affairs +372264,Aboriginal Affairs,Aboriginal Affairs +372263,Aboriginal Affairs,Aboriginal Affairs +372261,Aboriginal Affairs,Aboriginal Affairs +372260,Aboriginal Affairs,Aboriginal Affairs +372259,Aboriginal Affairs,Aboriginal Affairs +372258,Aboriginal Affairs,Aboriginal Affairs +372257,Aboriginal Affairs,Aboriginal Affairs +372217,Aboriginal Affairs,Aboriginal Affairs +372216,Aboriginal Affairs,Aboriginal Affairs +372215,Aboriginal Affairs,Aboriginal Affairs +372214,Aboriginal Affairs,Aboriginal Affairs +372211,Aboriginal Affairs,Aboriginal Affairs +372210,Aboriginal Affairs,Aboriginal Affairs +372208,Aboriginal Affairs,Aboriginal Affairs +372207,Aboriginal Affairs,Aboriginal Affairs +372205,Aboriginal Affairs,Aboriginal Affairs +372203,Aboriginal Affairs,Aboriginal Affairs +372202,Aboriginal Affairs,Aboriginal Affairs +372200,Aboriginal Affairs,Aboriginal Affairs +372197,Aboriginal Affairs,Aboriginal Affairs +372194,Aboriginal Affairs,Aboriginal Affairs +372192,Aboriginal Affairs,Aboriginal Affairs +372191,Aboriginal Affairs,Aboriginal Affairs +372190,Aboriginal Affairs,Aboriginal Affairs +372188,Aboriginal Affairs,Aboriginal Affairs +372185,Aboriginal Affairs,Aboriginal Affairs +372184,Aboriginal Affairs,Aboriginal Affairs +372183,Aboriginal Affairs,Aboriginal Affairs +372182,Aboriginal Affairs,Aboriginal Affairs +372181,Aboriginal Affairs,Aboriginal Affairs +372179,Aboriginal Affairs,Aboriginal Affairs +372173,Aboriginal Affairs,Aboriginal Affairs +372171,Aboriginal Affairs,Aboriginal Affairs +372170,Aboriginal Affairs,Aboriginal Affairs +372168,Aboriginal Affairs,Aboriginal Affairs +372167,Aboriginal Affairs,Aboriginal Affairs +372165,Aboriginal Affairs,Aboriginal Affairs +372164,Aboriginal Affairs,Aboriginal Affairs +372162,Aboriginal Affairs,Aboriginal Affairs +372159,Aboriginal Affairs,Aboriginal Affairs +372155,Aboriginal Affairs,Aboriginal Affairs +372153,Aboriginal Affairs,Aboriginal Affairs +372152,Aboriginal Affairs,Aboriginal Affairs +372149,Aboriginal Affairs,Aboriginal Affairs +372147,Aboriginal Affairs,Aboriginal Affairs +372143,Aboriginal Affairs,Aboriginal Affairs +372142,Aboriginal Affairs,Aboriginal Affairs +372141,Aboriginal Affairs,Aboriginal Affairs +372139,Aboriginal Affairs,Aboriginal Affairs +372136,Aboriginal Affairs,Aboriginal Affairs +372135,Aboriginal Affairs,Aboriginal Affairs +372134,Aboriginal Affairs,Aboriginal Affairs +372133,Aboriginal Affairs,Aboriginal Affairs +372131,Aboriginal Affairs,Aboriginal Affairs +372129,Aboriginal Affairs,Aboriginal Affairs +372127,Aboriginal Affairs,Aboriginal Affairs +372126,Aboriginal Affairs,Aboriginal Affairs +372125,Aboriginal Affairs,Aboriginal Affairs +372124,Aboriginal Affairs,Aboriginal Affairs +372122,Aboriginal Affairs,Aboriginal Affairs +372119,Aboriginal Affairs,Aboriginal Affairs +372118,Aboriginal Affairs,Aboriginal Affairs +372117,Aboriginal Affairs,Aboriginal Affairs +372116,Aboriginal Affairs,Aboriginal Affairs +372112,Aboriginal Affairs,Aboriginal Affairs +372110,Aboriginal Affairs,Aboriginal Affairs +372105,Aboriginal Affairs,Aboriginal Affairs +372102,Aboriginal Affairs,Aboriginal Affairs +372099,Aboriginal Affairs,Aboriginal Affairs +372096,Aboriginal Affairs,Aboriginal Affairs +372095,Aboriginal Affairs,Aboriginal Affairs +372093,Aboriginal Affairs,Aboriginal Affairs +372090,Aboriginal Affairs,Aboriginal Affairs +372089,Aboriginal Affairs,Aboriginal Affairs +372085,Aboriginal Affairs,Aboriginal Affairs +372082,Aboriginal Affairs,Aboriginal Affairs +372080,Aboriginal Affairs,Aboriginal Affairs +372079,Aboriginal Affairs,Aboriginal Affairs +372077,Aboriginal Affairs,Aboriginal Affairs +372076,Aboriginal Affairs,Aboriginal Affairs +372072,Aboriginal Affairs,Aboriginal Affairs +372064,Aboriginal Affairs,Aboriginal Affairs +372061,Aboriginal Affairs,Aboriginal Affairs +372055,Aboriginal Affairs,Aboriginal Affairs +372051,Aboriginal Affairs,Aboriginal Affairs +372046,Aboriginal Affairs,Aboriginal Affairs +372045,Aboriginal Affairs,Aboriginal Affairs +372040,Aboriginal Affairs,Aboriginal Affairs +372039,Aboriginal Affairs,Aboriginal Affairs +372038,Aboriginal Affairs,Aboriginal Affairs +371998,Aboriginal Affairs,Aboriginal Affairs +371994,Aboriginal Affairs,Aboriginal Affairs +371988,Aboriginal Affairs,Aboriginal Affairs +371986,Aboriginal Affairs,Aboriginal Affairs +371984,Aboriginal Affairs,Aboriginal Affairs +371983,Aboriginal Affairs,Aboriginal Affairs +371981,Aboriginal Affairs,Aboriginal Affairs +371978,Aboriginal Affairs,Aboriginal Affairs +371977,Aboriginal Affairs,Aboriginal Affairs +371976,Aboriginal Affairs,Aboriginal Affairs +371967,Aboriginal Affairs,Aboriginal Affairs +371959,Aboriginal Affairs,Aboriginal Affairs +371957,Aboriginal Affairs,Aboriginal Affairs +371955,Aboriginal Affairs,Aboriginal Affairs +371952,Aboriginal Affairs,Aboriginal Affairs +371948,Aboriginal Affairs,Aboriginal Affairs +371946,Aboriginal Affairs,Aboriginal Affairs +371944,Aboriginal Affairs,Aboriginal Affairs +371943,Aboriginal Affairs,Aboriginal Affairs +371942,Aboriginal Affairs,Aboriginal Affairs +371934,Aboriginal Affairs,Aboriginal Affairs +371931,Aboriginal Affairs,Aboriginal Affairs +371866,Aboriginal Affairs,Aboriginal Affairs +371864,Aboriginal Affairs,Aboriginal Affairs +371844,Aboriginal Affairs,Aboriginal Affairs +371842,Aboriginal Affairs,Aboriginal Affairs +371824,Aboriginal Affairs,Aboriginal Affairs +371822,Aboriginal Affairs,Aboriginal Affairs +371820,Aboriginal Affairs,Aboriginal Affairs +371819,Aboriginal Affairs,Aboriginal Affairs +371817,Aboriginal Affairs,Aboriginal Affairs +371816,Aboriginal Affairs,Aboriginal Affairs +371810,Aboriginal Affairs,Aboriginal Affairs +371806,Aboriginal Affairs,Aboriginal Affairs +371804,Aboriginal Affairs,Aboriginal Affairs +371802,Aboriginal Affairs,Aboriginal Affairs +371799,Aboriginal Affairs,Aboriginal Affairs +371796,Aboriginal Affairs,Aboriginal Affairs +371786,Aboriginal Affairs,Aboriginal Affairs +529274,Aboriginal Affairs,Aboriginal Affairs +529258,Aboriginal Affairs,Aboriginal Affairs +529222,Aboriginal Affairs,Aboriginal Affairs +526456,Aboriginal Affairs,Aboriginal Affairs +526414,Aboriginal Affairs,Aboriginal Affairs +526391,Aboriginal Affairs,Aboriginal Affairs +525844,Aboriginal Affairs,Aboriginal Affairs +525828,Aboriginal Affairs,Aboriginal Affairs +525796,Aboriginal Affairs,Aboriginal Affairs +525793,Aboriginal Affairs,Aboriginal Affairs +525789,Aboriginal Affairs,Aboriginal Affairs +525777,Aboriginal Affairs,Aboriginal Affairs +492248,Aboriginal Affairs,Aboriginal Affairs +492246,Aboriginal Affairs,Aboriginal Affairs +449505,Aboriginal Affairs,Aboriginal Affairs +449502,Aboriginal Affairs,Aboriginal Affairs +446889,Aboriginal Affairs,Aboriginal Affairs +446887,Aboriginal Affairs,Aboriginal Affairs +446886,Aboriginal Affairs,Aboriginal Affairs +446885,Aboriginal Affairs,Aboriginal Affairs +446884,Aboriginal Affairs,Aboriginal Affairs +446883,Aboriginal Affairs,Aboriginal Affairs +446882,Aboriginal Affairs,Aboriginal Affairs +446881,Aboriginal Affairs,Aboriginal Affairs +446880,Aboriginal Affairs,Aboriginal Affairs +446879,Aboriginal Affairs,Aboriginal Affairs +446878,Aboriginal Affairs,Aboriginal Affairs +446876,Aboriginal Affairs,Aboriginal Affairs +446875,Aboriginal Affairs,Aboriginal Affairs +446874,Aboriginal Affairs,Aboriginal Affairs +446871,Aboriginal Affairs,Aboriginal Affairs +446870,Aboriginal Affairs,Aboriginal Affairs +446868,Aboriginal Affairs,Aboriginal Affairs +446865,Aboriginal Affairs,Aboriginal Affairs +446864,Aboriginal Affairs,Aboriginal Affairs +446863,Aboriginal Affairs,Aboriginal Affairs +446861,Aboriginal Affairs,Aboriginal Affairs +446860,Aboriginal Affairs,Aboriginal Affairs +446858,Aboriginal Affairs,Aboriginal Affairs +446856,Aboriginal Affairs,Aboriginal Affairs +446855,Aboriginal Affairs,Aboriginal Affairs +446854,Aboriginal Affairs,Aboriginal Affairs +446853,Aboriginal Affairs,Aboriginal Affairs +446852,Aboriginal Affairs,Aboriginal Affairs +446850,Aboriginal Affairs,Aboriginal Affairs +446849,Aboriginal Affairs,Aboriginal Affairs +446848,Aboriginal Affairs,Aboriginal Affairs +446847,Aboriginal Affairs,Aboriginal Affairs +446846,Aboriginal Affairs,Aboriginal Affairs +446844,Aboriginal Affairs,Aboriginal Affairs +446843,Aboriginal Affairs,Aboriginal Affairs +446842,Aboriginal Affairs,Aboriginal Affairs +446840,Aboriginal Affairs,Aboriginal Affairs +446838,Aboriginal Affairs,Aboriginal Affairs +446837,Aboriginal Affairs,Aboriginal Affairs +446836,Aboriginal Affairs,Aboriginal Affairs +446835,Aboriginal Affairs,Aboriginal Affairs +446834,Aboriginal Affairs,Aboriginal Affairs +446833,Aboriginal Affairs,Aboriginal Affairs +446832,Aboriginal Affairs,Aboriginal Affairs +446830,Aboriginal Affairs,Aboriginal Affairs +446829,Aboriginal Affairs,Aboriginal Affairs +446828,Aboriginal Affairs,Aboriginal Affairs +446827,Aboriginal Affairs,Aboriginal Affairs +446826,Aboriginal Affairs,Aboriginal Affairs +446825,Aboriginal Affairs,Aboriginal Affairs +446823,Aboriginal Affairs,Aboriginal Affairs +446819,Aboriginal Affairs,Aboriginal Affairs +446817,Aboriginal Affairs,Aboriginal Affairs +446814,Aboriginal Affairs,Aboriginal Affairs +446813,Aboriginal Affairs,Aboriginal Affairs +446809,Aboriginal Affairs,Aboriginal Affairs +446808,Aboriginal Affairs,Aboriginal Affairs +446806,Aboriginal Affairs,Aboriginal Affairs +446803,Aboriginal Affairs,Aboriginal Affairs +446798,Aboriginal Affairs,Aboriginal Affairs +446797,Aboriginal Affairs,Aboriginal Affairs +446796,Aboriginal Affairs,Aboriginal Affairs +446794,Aboriginal Affairs,Aboriginal Affairs +446792,Aboriginal Affairs,Aboriginal Affairs +446790,Aboriginal Affairs,Aboriginal Affairs +446788,Aboriginal Affairs,Aboriginal Affairs +446787,Aboriginal Affairs,Aboriginal Affairs +421595,Science and Technology,Science and Technology +421077,Science and Technology,Science and Technology +157149,Science and Technology,Science and Technology +379728,Science and Technology,Science and Technology +327659,Science and Technology,Science and Technology +92739,Science and Technology,Science and Technology +92738,Science and Technology,Science and Technology +92737,Science and Technology,Science and Technology +92736,Science and Technology,Science and Technology +92735,Science and Technology,Science and Technology +89902,Science and Technology,Science and Technology +89899,Science and Technology,Science and Technology +84314,Science and Technology,Science and Technology +149959,Science and Technology,Science and Technology +149958,Science and Technology,Science and Technology +113873,Science and Technology,Science and Technology +108754,Science and Technology,Science and Technology +469387,Science and Technology,Science and Technology +469385,Science and Technology,Science and Technology +376713,Science and Technology,Science and Technology +374841,Science and Technology,Science and Technology +322293,Science and Technology,Science and Technology +200461,Science and Technology,Science and Technology +432456,Science and Technology,Science and Technology +429223,Science and Technology,Science and Technology +400632,Science and Technology,Science and Technology +392810,Science and Technology,Science and Technology +391138,Science and Technology,Science and Technology +335975,Telecommunications,Telecommunications +335966,Telecommunications,Telecommunications +200461,Telecommunications,Telecommunications +333692,Telecommunications,Telecommunications +333691,Telecommunications,Telecommunications +333688,Telecommunications,Telecommunications +333687,Telecommunications,Telecommunications +333684,Telecommunications,Telecommunications +333682,Telecommunications,Telecommunications +333681,Telecommunications,Telecommunications +333680,Telecommunications,Telecommunications +333679,Telecommunications,Telecommunications +333678,Telecommunications,Telecommunications +333677,Telecommunications,Telecommunications +333674,Telecommunications,Telecommunications +333656,Telecommunications,Telecommunications +331588,Telecommunications,Telecommunications +331587,Telecommunications,Telecommunications +331586,Telecommunications,Telecommunications +331565,Telecommunications,Telecommunications +391137,Telecommunications,Telecommunications +379691,Telecommunications,Telecommunications +338378,Telecommunications,Telecommunications +336008,Telecommunications,Telecommunications +336004,Telecommunications,Telecommunications +336002,Telecommunications,Telecommunications +336000,Telecommunications,Telecommunications +414627,Science and Technology,Science and Technology +544121,Science and Technology,Science and Technology +426197,Science and Technology,Science and Technology +518003,Aboriginal Affairs,Aboriginal Affairs +511033,Aboriginal Affairs,Aboriginal Affairs +87938,Aboriginal Affairs,Aboriginal Affairs +87937,Aboriginal Affairs,Aboriginal Affairs +87936,Aboriginal Affairs,Aboriginal Affairs +87935,Aboriginal Affairs,Aboriginal Affairs +87934,Aboriginal Affairs,Aboriginal Affairs +340760,Aboriginal Affairs,Aboriginal Affairs +310927,Aboriginal Affairs,Aboriginal Affairs +310925,Aboriginal Affairs,Aboriginal Affairs +310924,Aboriginal Affairs,Aboriginal Affairs +304489,Aboriginal Affairs,Aboriginal Affairs +223639,Aboriginal Affairs,Aboriginal Affairs +200491,Aboriginal Affairs,Aboriginal Affairs +200487,Aboriginal Affairs,Aboriginal Affairs +161525,Aboriginal Affairs,Aboriginal Affairs +161524,Aboriginal Affairs,Aboriginal Affairs +161522,Aboriginal Affairs,Aboriginal Affairs +424419,Aboriginal Affairs,Aboriginal Affairs +422208,Aboriginal Affairs,Aboriginal Affairs +420003,Aboriginal Affairs,Aboriginal Affairs +416185,Aboriginal Affairs,Aboriginal Affairs +407719,Aboriginal Affairs,Aboriginal Affairs +405696,Aboriginal Affairs,Aboriginal Affairs +400671,Aboriginal Affairs,Aboriginal Affairs +400668,Aboriginal Affairs,Aboriginal Affairs +400651,Aboriginal Affairs,Aboriginal Affairs +393939,Aboriginal Affairs,Aboriginal Affairs +392690,Aboriginal Affairs,Aboriginal Affairs +388494,Aboriginal Affairs,Aboriginal Affairs +388486,Aboriginal Affairs,Aboriginal Affairs +382496,Aboriginal Affairs,Aboriginal Affairs +369593,Aboriginal Affairs,Aboriginal Affairs +368714,Aboriginal Affairs,Aboriginal Affairs +365336,Aboriginal Affairs,Aboriginal Affairs +365335,Aboriginal Affairs,Aboriginal Affairs +365333,Aboriginal Affairs,Aboriginal Affairs +362327,Aboriginal Affairs,Aboriginal Affairs +353247,Aboriginal Affairs,Aboriginal Affairs +461705,Aboriginal Affairs,Aboriginal Affairs +455515,Aboriginal Affairs,Aboriginal Affairs +442573,Aboriginal Affairs,Aboriginal Affairs +442570,Aboriginal Affairs,Aboriginal Affairs +442567,Aboriginal Affairs,Aboriginal Affairs +439063,Aboriginal Affairs,Aboriginal Affairs +439060,Aboriginal Affairs,Aboriginal Affairs +439056,Aboriginal Affairs,Aboriginal Affairs +439018,Aboriginal Affairs,Aboriginal Affairs +439012,Aboriginal Affairs,Aboriginal Affairs +438988,Aboriginal Affairs,Aboriginal Affairs +436049,Aboriginal Affairs,Aboriginal Affairs +433746,Aboriginal Affairs,Aboriginal Affairs +432430,Aboriginal Affairs,Aboriginal Affairs +431038,Aboriginal Affairs,Aboriginal Affairs +428168,Aboriginal Affairs,Aboriginal Affairs +428166,Aboriginal Affairs,Aboriginal Affairs +535290,Aboriginal Affairs,Aboriginal Affairs +517990,Science and Technology,Science and Technology +515733,Science and Technology,Science and Technology +96684,Science and Technology,Science and Technology +96683,Science and Technology,Science and Technology +75854,Science and Technology,Science and Technology +161522,Science and Technology,Science and Technology +161521,Science and Technology,Science and Technology +161520,Science and Technology,Science and Technology +161519,Science and Technology,Science and Technology +161518,Science and Technology,Science and Technology +132557,Science and Technology,Science and Technology +132556,Science and Technology,Science and Technology +163620,Science and Technology,Science and Technology +163619,Science and Technology,Science and Technology +161526,Science and Technology,Science and Technology +161523,Science and Technology,Science and Technology +396981,Science and Technology,Science and Technology +392686,Science and Technology,Science and Technology +385640,Science and Technology,Science and Technology +381365,Science and Technology,Science and Technology +369589,Science and Technology,Science and Technology +344833,Science and Technology,Science and Technology +325111,Science and Technology,Science and Technology +322315,Science and Technology,Science and Technology +310918,Science and Technology,Science and Technology +504482,Science and Technology,Science and Technology +504477,Science and Technology,Science and Technology +502370,Science and Technology,Science and Technology +473021,Science and Technology,Science and Technology +467735,Science and Technology,Science and Technology +467710,Science and Technology,Science and Technology +467698,Science and Technology,Science and Technology +467689,Science and Technology,Science and Technology +464667,Science and Technology,Science and Technology +464666,Science and Technology,Science and Technology +464665,Science and Technology,Science and Technology +464597,Science and Technology,Science and Technology +464591,Science and Technology,Science and Technology +464588,Science and Technology,Science and Technology +462975,Science and Technology,Science and Technology +461719,Science and Technology,Science and Technology +461716,Science and Technology,Science and Technology +461705,Science and Technology,Science and Technology +461610,Science and Technology,Science and Technology +461602,Science and Technology,Science and Technology +461600,Science and Technology,Science and Technology +461599,Science and Technology,Science and Technology +461586,Science and Technology,Science and Technology +460635,Science and Technology,Science and Technology +460634,Science and Technology,Science and Technology +460633,Science and Technology,Science and Technology +460631,Science and Technology,Science and Technology +460628,Science and Technology,Science and Technology +460627,Science and Technology,Science and Technology +458730,Science and Technology,Science and Technology +458729,Science and Technology,Science and Technology +457542,Science and Technology,Science and Technology +455578,Science and Technology,Science and Technology +455556,Science and Technology,Science and Technology +455551,Science and Technology,Science and Technology +455547,Science and Technology,Science and Technology +443831,Science and Technology,Science and Technology +443824,Science and Technology,Science and Technology +439103,Science and Technology,Science and Technology +439088,Science and Technology,Science and Technology +426364,Science and Technology,Science and Technology +426352,Science and Technology,Science and Technology +426343,Science and Technology,Science and Technology +422235,Science and Technology,Science and Technology +422234,Science and Technology,Science and Technology +422220,Science and Technology,Science and Technology +413121,Science and Technology,Science and Technology +398860,Science and Technology,Science and Technology +544394,Science and Technology,Science and Technology +544392,Science and Technology,Science and Technology +544389,Science and Technology,Science and Technology +541486,Science and Technology,Science and Technology +541484,Science and Technology,Science and Technology +519862,Science and Technology,Science and Technology +518020,Science and Technology,Science and Technology +327668,Science and Technology,Science and Technology +327573,Science and Technology,Science and Technology +395901,Science and Technology,Science and Technology +395886,Science and Technology,Science and Technology +429283,Science and Technology,Science and Technology +429281,Science and Technology,Science and Technology +132845,Science and Technology,Science and Technology +132841,Science and Technology,Science and Technology +132834,Science and Technology,Science and Technology +150499,Science and Technology,Science and Technology +148502,Science and Technology,Science and Technology +148501,Science and Technology,Science and Technology +148500,Science and Technology,Science and Technology +148499,Science and Technology,Science and Technology +148456,Science and Technology,Science and Technology +148455,Science and Technology,Science and Technology +148453,Science and Technology,Science and Technology +148452,Science and Technology,Science and Technology +148450,Science and Technology,Science and Technology +148449,Science and Technology,Science and Technology +173765,Science and Technology,Science and Technology +172125,Science and Technology,Science and Technology +171055,Science and Technology,Science and Technology +171050,Science and Technology,Science and Technology +171046,Science and Technology,Science and Technology +171044,Science and Technology,Science and Technology +171028,Science and Technology,Science and Technology +171022,Science and Technology,Science and Technology +168115,Science and Technology,Science and Technology +168113,Science and Technology,Science and Technology +167854,Science and Technology,Science and Technology +167851,Science and Technology,Science and Technology +166376,Science and Technology,Science and Technology +166371,Science and Technology,Science and Technology +166345,Science and Technology,Science and Technology +166324,Science and Technology,Science and Technology +164361,Science and Technology,Science and Technology +164333,Science and Technology,Science and Technology +162052,Science and Technology,Science and Technology +160132,Science and Technology,Science and Technology +160131,Science and Technology,Science and Technology +160110,Science and Technology,Science and Technology +160106,Science and Technology,Science and Technology +160102,Science and Technology,Science and Technology +160099,Science and Technology,Science and Technology +160097,Science and Technology,Science and Technology +160007,Science and Technology,Science and Technology +157264,Science and Technology,Science and Technology +157248,Science and Technology,Science and Technology +157245,Science and Technology,Science and Technology +157224,Science and Technology,Science and Technology +241298,Science and Technology,Science and Technology +240757,Science and Technology,Science and Technology +237098,Science and Technology,Science and Technology +233220,Science and Technology,Science and Technology +233219,Science and Technology,Science and Technology +230278,Science and Technology,Science and Technology +230277,Science and Technology,Science and Technology +230276,Science and Technology,Science and Technology +227342,Science and Technology,Science and Technology +227338,Science and Technology,Science and Technology +226068,Science and Technology,Science and Technology +225931,Science and Technology,Science and Technology +225930,Science and Technology,Science and Technology +225928,Science and Technology,Science and Technology +223649,Science and Technology,Science and Technology +223647,Science and Technology,Science and Technology +223644,Science and Technology,Science and Technology +223641,Science and Technology,Science and Technology +223640,Science and Technology,Science and Technology +223638,Science and Technology,Science and Technology +219327,Science and Technology,Science and Technology +212364,Science and Technology,Science and Technology +212358,Science and Technology,Science and Technology +212356,Science and Technology,Science and Technology +208307,Science and Technology,Science and Technology +207869,Science and Technology,Science and Technology +207868,Science and Technology,Science and Technology +200968,Science and Technology,Science and Technology +195042,Science and Technology,Science and Technology +195039,Science and Technology,Science and Technology +195036,Science and Technology,Science and Technology +195033,Science and Technology,Science and Technology +195030,Science and Technology,Science and Technology +190168,Science and Technology,Science and Technology +187346,Science and Technology,Science and Technology +187345,Science and Technology,Science and Technology +187344,Science and Technology,Science and Technology +187324,Science and Technology,Science and Technology +180471,Science and Technology,Science and Technology +180470,Science and Technology,Science and Technology +176076,Science and Technology,Science and Technology +176074,Science and Technology,Science and Technology +176071,Science and Technology,Science and Technology +176070,Science and Technology,Science and Technology +176069,Science and Technology,Science and Technology +176068,Science and Technology,Science and Technology +336282,Science and Technology,Science and Technology +336281,Science and Technology,Science and Technology +336280,Science and Technology,Science and Technology +336278,Science and Technology,Science and Technology +336277,Science and Technology,Science and Technology +336276,Science and Technology,Science and Technology +336274,Science and Technology,Science and Technology +336273,Science and Technology,Science and Technology +333810,Science and Technology,Science and Technology +333808,Science and Technology,Science and Technology +333805,Science and Technology,Science and Technology +333803,Science and Technology,Science and Technology +331857,Science and Technology,Science and Technology +331855,Science and Technology,Science and Technology +331854,Science and Technology,Science and Technology +331853,Science and Technology,Science and Technology +331849,Science and Technology,Science and Technology +330208,Science and Technology,Science and Technology +330207,Science and Technology,Science and Technology +330204,Science and Technology,Science and Technology +330198,Science and Technology,Science and Technology +330197,Science and Technology,Science and Technology +330196,Science and Technology,Science and Technology +330190,Science and Technology,Science and Technology +330186,Science and Technology,Science and Technology +330184,Science and Technology,Science and Technology +330180,Science and Technology,Science and Technology +330178,Science and Technology,Science and Technology +330174,Science and Technology,Science and Technology +328243,Science and Technology,Science and Technology +328241,Science and Technology,Science and Technology +325078,Science and Technology,Science and Technology +325076,Science and Technology,Science and Technology +325075,Science and Technology,Science and Technology +325072,Science and Technology,Science and Technology +325070,Science and Technology,Science and Technology +325069,Science and Technology,Science and Technology +325067,Science and Technology,Science and Technology +322216,Science and Technology,Science and Technology +322213,Science and Technology,Science and Technology +322211,Science and Technology,Science and Technology +322209,Science and Technology,Science and Technology +319819,Science and Technology,Science and Technology +319818,Science and Technology,Science and Technology +319715,Science and Technology,Science and Technology +319714,Science and Technology,Science and Technology +319713,Science and Technology,Science and Technology +319712,Science and Technology,Science and Technology +318109,Science and Technology,Science and Technology +316394,Science and Technology,Science and Technology +316393,Science and Technology,Science and Technology +316392,Science and Technology,Science and Technology +316391,Science and Technology,Science and Technology +316389,Science and Technology,Science and Technology +316387,Science and Technology,Science and Technology +316385,Science and Technology,Science and Technology +316382,Science and Technology,Science and Technology +316380,Science and Technology,Science and Technology +316378,Science and Technology,Science and Technology +316377,Science and Technology,Science and Technology +316375,Science and Technology,Science and Technology +316372,Science and Technology,Science and Technology +316371,Science and Technology,Science and Technology +316369,Science and Technology,Science and Technology +313271,Science and Technology,Science and Technology +313270,Science and Technology,Science and Technology +313269,Science and Technology,Science and Technology +311439,Science and Technology,Science and Technology +311438,Science and Technology,Science and Technology +311437,Science and Technology,Science and Technology +311435,Science and Technology,Science and Technology +311434,Science and Technology,Science and Technology +311433,Science and Technology,Science and Technology +311432,Science and Technology,Science and Technology +311431,Science and Technology,Science and Technology +311430,Science and Technology,Science and Technology +311429,Science and Technology,Science and Technology +311428,Science and Technology,Science and Technology +311427,Science and Technology,Science and Technology +311423,Science and Technology,Science and Technology +311420,Science and Technology,Science and Technology +311419,Science and Technology,Science and Technology +311417,Science and Technology,Science and Technology +311414,Science and Technology,Science and Technology +311413,Science and Technology,Science and Technology +311412,Science and Technology,Science and Technology +311411,Science and Technology,Science and Technology +311410,Science and Technology,Science and Technology +308549,Science and Technology,Science and Technology +308529,Science and Technology,Science and Technology +308451,Science and Technology,Science and Technology +308449,Science and Technology,Science and Technology +308431,Science and Technology,Science and Technology +308430,Science and Technology,Science and Technology +308429,Science and Technology,Science and Technology +308389,Science and Technology,Science and Technology +303769,Science and Technology,Science and Technology +303749,Science and Technology,Science and Technology +303729,Science and Technology,Science and Technology +303709,Science and Technology,Science and Technology +303689,Science and Technology,Science and Technology +303671,Science and Technology,Science and Technology +303670,Science and Technology,Science and Technology +303652,Science and Technology,Science and Technology +303651,Science and Technology,Science and Technology +303649,Science and Technology,Science and Technology +303647,Science and Technology,Science and Technology +303645,Science and Technology,Science and Technology +303644,Science and Technology,Science and Technology +297670,Science and Technology,Science and Technology +297669,Science and Technology,Science and Technology +297311,Science and Technology,Science and Technology +297310,Science and Technology,Science and Technology +297292,Science and Technology,Science and Technology +297291,Science and Technology,Science and Technology +297290,Science and Technology,Science and Technology +297289,Science and Technology,Science and Technology +297270,Science and Technology,Science and Technology +297269,Science and Technology,Science and Technology +297250,Science and Technology,Science and Technology +291969,Science and Technology,Science and Technology +273869,Science and Technology,Science and Technology +251542,Science and Technology,Science and Technology +251489,Science and Technology,Science and Technology +251469,Science and Technology,Science and Technology +251436,Science and Technology,Science and Technology +251435,Science and Technology,Science and Technology +245315,Science and Technology,Science and Technology +245314,Science and Technology,Science and Technology +245123,Science and Technology,Science and Technology +245122,Science and Technology,Science and Technology +245120,Science and Technology,Science and Technology +245119,Science and Technology,Science and Technology +245118,Science and Technology,Science and Technology +245117,Science and Technology,Science and Technology +429278,Science and Technology,Science and Technology +429276,Science and Technology,Science and Technology +429266,Science and Technology,Science and Technology +426830,Science and Technology,Science and Technology +426829,Science and Technology,Science and Technology +426828,Science and Technology,Science and Technology +426825,Science and Technology,Science and Technology +426824,Science and Technology,Science and Technology +426823,Science and Technology,Science and Technology +426821,Science and Technology,Science and Technology +426819,Science and Technology,Science and Technology +426818,Science and Technology,Science and Technology +424134,Science and Technology,Science and Technology +422386,Science and Technology,Science and Technology +418282,Science and Technology,Science and Technology +418281,Science and Technology,Science and Technology +418280,Science and Technology,Science and Technology +416698,Science and Technology,Science and Technology +416686,Science and Technology,Science and Technology +416657,Science and Technology,Science and Technology +409945,Science and Technology,Science and Technology +409913,Science and Technology,Science and Technology +408187,Science and Technology,Science and Technology +408185,Science and Technology,Science and Technology +408184,Science and Technology,Science and Technology +408177,Science and Technology,Science and Technology +408175,Science and Technology,Science and Technology +408173,Science and Technology,Science and Technology +406316,Science and Technology,Science and Technology +406315,Science and Technology,Science and Technology +405725,Science and Technology,Science and Technology +405724,Science and Technology,Science and Technology +405723,Science and Technology,Science and Technology +403907,Science and Technology,Science and Technology +403905,Science and Technology,Science and Technology +401034,Science and Technology,Science and Technology +401033,Science and Technology,Science and Technology +401032,Science and Technology,Science and Technology +401030,Science and Technology,Science and Technology +399023,Science and Technology,Science and Technology +399022,Science and Technology,Science and Technology +399021,Science and Technology,Science and Technology +399020,Science and Technology,Science and Technology +399019,Science and Technology,Science and Technology +399018,Science and Technology,Science and Technology +399017,Science and Technology,Science and Technology +399015,Science and Technology,Science and Technology +399014,Science and Technology,Science and Technology +397240,Science and Technology,Science and Technology +397063,Science and Technology,Science and Technology +397061,Science and Technology,Science and Technology +397060,Science and Technology,Science and Technology +397054,Science and Technology,Science and Technology +397051,Science and Technology,Science and Technology +397050,Science and Technology,Science and Technology +394535,Science and Technology,Science and Technology +394532,Science and Technology,Science and Technology +394530,Science and Technology,Science and Technology +392338,Science and Technology,Science and Technology +392337,Science and Technology,Science and Technology +391571,Science and Technology,Science and Technology +388462,Science and Technology,Science and Technology +388460,Science and Technology,Science and Technology +388458,Science and Technology,Science and Technology +385623,Science and Technology,Science and Technology +385605,Science and Technology,Science and Technology +385601,Science and Technology,Science and Technology +385598,Science and Technology,Science and Technology +385592,Science and Technology,Science and Technology +385584,Science and Technology,Science and Technology +385574,Science and Technology,Science and Technology +385555,Science and Technology,Science and Technology +385538,Science and Technology,Science and Technology +383351,Science and Technology,Science and Technology +379474,Science and Technology,Science and Technology +379463,Science and Technology,Science and Technology +374664,Science and Technology,Science and Technology +374659,Science and Technology,Science and Technology +343940,Science and Technology,Science and Technology +343938,Science and Technology,Science and Technology +343935,Science and Technology,Science and Technology +517739,Science and Technology,Science and Technology +479937,Science and Technology,Science and Technology +472007,Science and Technology,Science and Technology +472006,Science and Technology,Science and Technology +472004,Science and Technology,Science and Technology +471997,Science and Technology,Science and Technology +467618,Science and Technology,Science and Technology +467615,Science and Technology,Science and Technology +467613,Science and Technology,Science and Technology +467609,Science and Technology,Science and Technology +467607,Science and Technology,Science and Technology +467604,Science and Technology,Science and Technology +467595,Science and Technology,Science and Technology +467589,Science and Technology,Science and Technology +467579,Science and Technology,Science and Technology +467574,Science and Technology,Science and Technology +467568,Science and Technology,Science and Technology +467563,Science and Technology,Science and Technology +467559,Science and Technology,Science and Technology +467552,Science and Technology,Science and Technology +467536,Science and Technology,Science and Technology +463401,Science and Technology,Science and Technology +462661,Science and Technology,Science and Technology +460008,Science and Technology,Science and Technology +459805,Science and Technology,Science and Technology +459804,Science and Technology,Science and Technology +458505,Science and Technology,Science and Technology +455743,Science and Technology,Science and Technology +455738,Science and Technology,Science and Technology +455707,Science and Technology,Science and Technology +442582,Science and Technology,Science and Technology +438867,Science and Technology,Science and Technology +438866,Science and Technology,Science and Technology +433566,Science and Technology,Science and Technology +433564,Science and Technology,Science and Technology +431219,Science and Technology,Science and Technology +430987,Science and Technology,Science and Technology +430986,Science and Technology,Science and Technology +429291,Science and Technology,Science and Technology +413823,Science and Technology,Science and Technology +413822,Science and Technology,Science and Technology +413821,Science and Technology,Science and Technology +413820,Science and Technology,Science and Technology +413819,Science and Technology,Science and Technology +413818,Science and Technology,Science and Technology +413817,Science and Technology,Science and Technology +413816,Science and Technology,Science and Technology +413815,Science and Technology,Science and Technology +413762,Science and Technology,Science and Technology +413760,Science and Technology,Science and Technology +413758,Science and Technology,Science and Technology +502777,Science and Technology,Science and Technology +502771,Science and Technology,Science and Technology +474533,Science and Technology,Science and Technology +458680,Science and Technology,Science and Technology +338667,Science and Technology,Science and Technology +400152,Science and Technology,Science and Technology +371281,Science and Technology,Science and Technology +371279,Science and Technology,Science and Technology +371276,Science and Technology,Science and Technology +371273,Science and Technology,Science and Technology +371270,Science and Technology,Science and Technology +348386,Science and Technology,Science and Technology +296732,Science and Technology,Science and Technology +436928,Science and Technology,Science and Technology +436927,Science and Technology,Science and Technology +436926,Science and Technology,Science and Technology +436925,Science and Technology,Science and Technology +436924,Science and Technology,Science and Technology +427589,Science and Technology,Science and Technology +427588,Science and Technology,Science and Technology +427587,Science and Technology,Science and Technology +427586,Science and Technology,Science and Technology +99288,Science and Technology,Science and Technology +525988,Science and Technology,Science and Technology +525987,Science and Technology,Science and Technology +147182,Science and Technology,Science and Technology +167296,Science and Technology,Science and Technology +167295,Science and Technology,Science and Technology +164245,Science and Technology,Science and Technology +332629,Science and Technology,Science and Technology +326232,Science and Technology,Science and Technology +322671,Science and Technology,Science and Technology +314630,Science and Technology,Science and Technology +299693,Science and Technology,Science and Technology +255594,Science and Technology,Science and Technology +255593,Science and Technology,Science and Technology +255591,Science and Technology,Science and Technology +358607,Science and Technology,Science and Technology +358606,Science and Technology,Science and Technology +348601,Science and Technology,Science and Technology +348598,Science and Technology,Science and Technology +348596,Science and Technology,Science and Technology +338280,Science and Technology,Science and Technology +517778,Science and Technology,Science and Technology +517777,Science and Technology,Science and Technology +517776,Science and Technology,Science and Technology +515764,Science and Technology,Science and Technology +515763,Science and Technology,Science and Technology +515574,Science and Technology,Science and Technology +514757,Science and Technology,Science and Technology +514756,Science and Technology,Science and Technology +514113,Science and Technology,Science and Technology +510293,Science and Technology,Science and Technology +510289,Science and Technology,Science and Technology +510287,Science and Technology,Science and Technology +505125,Science and Technology,Science and Technology +505124,Science and Technology,Science and Technology +505122,Science and Technology,Science and Technology +502238,Science and Technology,Science and Technology +502237,Science and Technology,Science and Technology +502234,Science and Technology,Science and Technology +498650,Science and Technology,Science and Technology +498649,Science and Technology,Science and Technology +498648,Science and Technology,Science and Technology +495913,Science and Technology,Science and Technology +495912,Science and Technology,Science and Technology +495908,Science and Technology,Science and Technology +495906,Science and Technology,Science and Technology +493256,Science and Technology,Science and Technology +493255,Science and Technology,Science and Technology +491143,Science and Technology,Science and Technology +490888,Science and Technology,Science and Technology +490885,Science and Technology,Science and Technology +490884,Science and Technology,Science and Technology +490883,Science and Technology,Science and Technology +490881,Science and Technology,Science and Technology +490880,Science and Technology,Science and Technology +490878,Science and Technology,Science and Technology +490877,Science and Technology,Science and Technology +490875,Science and Technology,Science and Technology +490873,Science and Technology,Science and Technology +490871,Science and Technology,Science and Technology +490867,Science and Technology,Science and Technology +490866,Science and Technology,Science and Technology +490864,Science and Technology,Science and Technology +490863,Science and Technology,Science and Technology +490862,Science and Technology,Science and Technology +490860,Science and Technology,Science and Technology +490859,Science and Technology,Science and Technology +490858,Science and Technology,Science and Technology +490857,Science and Technology,Science and Technology +490856,Science and Technology,Science and Technology +490855,Science and Technology,Science and Technology +490854,Science and Technology,Science and Technology +490853,Science and Technology,Science and Technology +490852,Science and Technology,Science and Technology +490850,Science and Technology,Science and Technology +490847,Science and Technology,Science and Technology +490845,Science and Technology,Science and Technology +490843,Science and Technology,Science and Technology +490841,Science and Technology,Science and Technology +490840,Science and Technology,Science and Technology +490839,Science and Technology,Science and Technology +490838,Science and Technology,Science and Technology +490836,Science and Technology,Science and Technology +490835,Science and Technology,Science and Technology +490833,Science and Technology,Science and Technology +490832,Science and Technology,Science and Technology +490831,Science and Technology,Science and Technology +490830,Science and Technology,Science and Technology +490829,Science and Technology,Science and Technology +490828,Science and Technology,Science and Technology +490827,Science and Technology,Science and Technology +490826,Science and Technology,Science and Technology +490825,Science and Technology,Science and Technology +490824,Science and Technology,Science and Technology +490823,Science and Technology,Science and Technology +490822,Science and Technology,Science and Technology +490821,Science and Technology,Science and Technology +488044,Science and Technology,Science and Technology +488043,Science and Technology,Science and Technology +488042,Science and Technology,Science and Technology +488040,Science and Technology,Science and Technology +484000,Science and Technology,Science and Technology +483999,Science and Technology,Science and Technology +483997,Science and Technology,Science and Technology +483995,Science and Technology,Science and Technology +481627,Science and Technology,Science and Technology +481626,Science and Technology,Science and Technology +481625,Science and Technology,Science and Technology +481624,Science and Technology,Science and Technology +480178,Science and Technology,Science and Technology +480177,Science and Technology,Science and Technology +480176,Science and Technology,Science and Technology +477049,Science and Technology,Science and Technology +477048,Science and Technology,Science and Technology +477026,Science and Technology,Science and Technology +472860,Science and Technology,Science and Technology +472858,Science and Technology,Science and Technology +469492,Science and Technology,Science and Technology +469491,Science and Technology,Science and Technology +469490,Science and Technology,Science and Technology +469489,Science and Technology,Science and Technology +469488,Science and Technology,Science and Technology +469487,Science and Technology,Science and Technology +469486,Science and Technology,Science and Technology +461774,Science and Technology,Science and Technology +461773,Science and Technology,Science and Technology +461772,Science and Technology,Science and Technology +461771,Science and Technology,Science and Technology +461770,Science and Technology,Science and Technology +461769,Science and Technology,Science and Technology +459687,Science and Technology,Science and Technology +458309,Science and Technology,Science and Technology +449834,Science and Technology,Science and Technology +449833,Science and Technology,Science and Technology +449832,Science and Technology,Science and Technology +449831,Science and Technology,Science and Technology +544027,Science and Technology,Science and Technology +544026,Science and Technology,Science and Technology +544021,Science and Technology,Science and Technology +544016,Science and Technology,Science and Technology +544014,Science and Technology,Science and Technology +544012,Science and Technology,Science and Technology +544011,Science and Technology,Science and Technology +544005,Science and Technology,Science and Technology +544003,Science and Technology,Science and Technology +544000,Science and Technology,Science and Technology +543989,Science and Technology,Science and Technology +541690,Science and Technology,Science and Technology +541689,Science and Technology,Science and Technology +541688,Science and Technology,Science and Technology +541687,Science and Technology,Science and Technology +540176,Science and Technology,Science and Technology +540175,Science and Technology,Science and Technology +540172,Science and Technology,Science and Technology +540168,Science and Technology,Science and Technology +539012,Science and Technology,Science and Technology +538480,Science and Technology,Science and Technology +534626,Science and Technology,Science and Technology +532228,Science and Technology,Science and Technology +532227,Science and Technology,Science and Technology +532223,Science and Technology,Science and Technology +532219,Science and Technology,Science and Technology +529551,Science and Technology,Science and Technology +529547,Science and Technology,Science and Technology +529545,Science and Technology,Science and Technology +375399,Aboriginal Affairs,Aboriginal Affairs +375397,Aboriginal Affairs,Aboriginal Affairs +100950,Aboriginal Affairs,Aboriginal Affairs +100561,Aboriginal Affairs,Aboriginal Affairs +100557,Aboriginal Affairs,Aboriginal Affairs +100552,Aboriginal Affairs,Aboriginal Affairs +167357,Aboriginal Affairs,Aboriginal Affairs +167356,Aboriginal Affairs,Aboriginal Affairs +161390,Aboriginal Affairs,Aboriginal Affairs +135137,Aboriginal Affairs,Aboriginal Affairs +135136,Aboriginal Affairs,Aboriginal Affairs +316579,Aboriginal Affairs,Aboriginal Affairs +316571,Aboriginal Affairs,Aboriginal Affairs +295369,Aboriginal Affairs,Aboriginal Affairs +264312,Aboriginal Affairs,Aboriginal Affairs +211067,Aboriginal Affairs,Aboriginal Affairs +197344,Aboriginal Affairs,Aboriginal Affairs +197341,Aboriginal Affairs,Aboriginal Affairs +197340,Aboriginal Affairs,Aboriginal Affairs +197338,Aboriginal Affairs,Aboriginal Affairs +197334,Aboriginal Affairs,Aboriginal Affairs +197330,Aboriginal Affairs,Aboriginal Affairs +460566,Aboriginal Affairs,Aboriginal Affairs +389073,Aboriginal Affairs,Aboriginal Affairs +389069,Aboriginal Affairs,Aboriginal Affairs +316573,Arts and Culture,Arts and Culture +413551,Arts and Culture,Arts and Culture +100549,Arts and Culture,Arts and Culture +100548,Arts and Culture,Arts and Culture +161385,Arts and Culture,Arts and Culture +161384,Arts and Culture,Arts and Culture +316579,Arts and Culture,Arts and Culture +355029,Science and Technology,Science and Technology +340508,Science and Technology,Science and Technology +100955,Science and Technology,Science and Technology +100565,Science and Technology,Science and Technology +100564,Science and Technology,Science and Technology +100563,Science and Technology,Science and Technology +100562,Science and Technology,Science and Technology +100561,Science and Technology,Science and Technology +100560,Science and Technology,Science and Technology +100559,Science and Technology,Science and Technology +100557,Science and Technology,Science and Technology +100553,Science and Technology,Science and Technology +100550,Science and Technology,Science and Technology +132440,Science and Technology,Science and Technology +124775,Science and Technology,Science and Technology +229669,Science and Technology,Science and Technology +223450,Science and Technology,Science and Technology +197337,Science and Technology,Science and Technology +167356,Science and Technology,Science and Technology +162075,Science and Technology,Science and Technology +161394,Science and Technology,Science and Technology +161392,Science and Technology,Science and Technology +161387,Science and Technology,Science and Technology +413608,Science and Technology,Science and Technology +413567,Science and Technology,Science and Technology +413478,Science and Technology,Science and Technology +413466,Science and Technology,Science and Technology +389074,Science and Technology,Science and Technology +389071,Science and Technology,Science and Technology +383357,Science and Technology,Science and Technology +383356,Science and Technology,Science and Technology +383355,Science and Technology,Science and Technology +379209,Science and Technology,Science and Technology +378861,Science and Technology,Science and Technology +378860,Science and Technology,Science and Technology +378858,Science and Technology,Science and Technology +378856,Science and Technology,Science and Technology +373509,Aboriginal Affairs,Aboriginal Affairs +509550,Aboriginal Affairs,Aboriginal Affairs +129555,Telecommunications,Telecommunications +129536,Telecommunications,Telecommunications +109618,Telecommunications,Telecommunications +239070,Science and Technology,Science and Technology +239069,Science and Technology,Science and Technology +260949,Science and Technology,Science and Technology +258669,Science and Technology,Science and Technology +248049,Science and Technology,Science and Technology +239073,Science and Technology,Science and Technology +239072,Science and Technology,Science and Technology +281013,Aboriginal Affairs,Aboriginal Affairs +244192,Aboriginal Affairs,Aboriginal Affairs +239572,Aboriginal Affairs,Aboriginal Affairs +239571,Aboriginal Affairs,Aboriginal Affairs +233609,Aboriginal Affairs,Aboriginal Affairs +233608,Aboriginal Affairs,Aboriginal Affairs +222565,Aboriginal Affairs,Aboriginal Affairs +222558,Aboriginal Affairs,Aboriginal Affairs +222555,Aboriginal Affairs,Aboriginal Affairs +222554,Aboriginal Affairs,Aboriginal Affairs +222553,Aboriginal Affairs,Aboriginal Affairs +222552,Aboriginal Affairs,Aboriginal Affairs +222548,Aboriginal Affairs,Aboriginal Affairs +192418,Aboriginal Affairs,Aboriginal Affairs +375964,Aboriginal Affairs,Aboriginal Affairs +361222,Aboriginal Affairs,Aboriginal Affairs +357761,Aboriginal Affairs,Aboriginal Affairs +347247,Aboriginal Affairs,Aboriginal Affairs +338615,Aboriginal Affairs,Aboriginal Affairs +329758,Aboriginal Affairs,Aboriginal Affairs +329757,Aboriginal Affairs,Aboriginal Affairs +329754,Aboriginal Affairs,Aboriginal Affairs +327544,Aboriginal Affairs,Aboriginal Affairs +327542,Aboriginal Affairs,Aboriginal Affairs +318695,Aboriginal Affairs,Aboriginal Affairs +310171,Aboriginal Affairs,Aboriginal Affairs +287889,Aboriginal Affairs,Aboriginal Affairs +338615,Science and Technology,Science and Technology +335949,Science and Technology,Science and Technology +253978,Science and Technology,Science and Technology +253976,Science and Technology,Science and Technology +226698,Science and Technology,Science and Technology +88555,Aboriginal Affairs,Aboriginal Affairs +88554,Aboriginal Affairs,Aboriginal Affairs +88095,Aboriginal Affairs,Aboriginal Affairs +88092,Aboriginal Affairs,Aboriginal Affairs +88090,Aboriginal Affairs,Aboriginal Affairs +88087,Aboriginal Affairs,Aboriginal Affairs +88079,Aboriginal Affairs,Aboriginal Affairs +88078,Aboriginal Affairs,Aboriginal Affairs +88077,Aboriginal Affairs,Aboriginal Affairs +395163,Broadcasting,Broadcasting +395162,Broadcasting,Broadcasting +94038,Broadcasting,Broadcasting +94037,Broadcasting,Broadcasting +107174,Broadcasting,Broadcasting +162559,Broadcasting,Broadcasting +162361,Broadcasting,Broadcasting +162354,Broadcasting,Broadcasting +162346,Broadcasting,Broadcasting +162334,Broadcasting,Broadcasting +324429,Broadcasting,Broadcasting +273929,Broadcasting,Broadcasting +264830,Broadcasting,Broadcasting +244490,Broadcasting,Broadcasting +197029,Broadcasting,Broadcasting +197028,Broadcasting,Broadcasting +389822,Broadcasting,Broadcasting +389821,Broadcasting,Broadcasting +386248,Broadcasting,Broadcasting +386247,Broadcasting,Broadcasting +386246,Broadcasting,Broadcasting +384467,Broadcasting,Broadcasting +384466,Broadcasting,Broadcasting +384465,Broadcasting,Broadcasting +384464,Broadcasting,Broadcasting +384463,Broadcasting,Broadcasting +382095,Broadcasting,Broadcasting +378892,Broadcasting,Broadcasting +378891,Broadcasting,Broadcasting +378889,Broadcasting,Broadcasting +378888,Broadcasting,Broadcasting +378886,Broadcasting,Broadcasting +378885,Broadcasting,Broadcasting +378884,Broadcasting,Broadcasting +378882,Broadcasting,Broadcasting +378880,Broadcasting,Broadcasting +378879,Broadcasting,Broadcasting +378451,Broadcasting,Broadcasting +368233,Broadcasting,Broadcasting +542937,Broadcasting,Broadcasting +540728,Broadcasting,Broadcasting +536600,Broadcasting,Broadcasting +536599,Broadcasting,Broadcasting +536597,Broadcasting,Broadcasting +530688,Broadcasting,Broadcasting +530686,Broadcasting,Broadcasting +527385,Broadcasting,Broadcasting +527384,Broadcasting,Broadcasting +527383,Broadcasting,Broadcasting +524232,Broadcasting,Broadcasting +524231,Broadcasting,Broadcasting +524229,Broadcasting,Broadcasting +524228,Broadcasting,Broadcasting +521099,Broadcasting,Broadcasting +521098,Broadcasting,Broadcasting +521097,Broadcasting,Broadcasting +521095,Broadcasting,Broadcasting +521093,Broadcasting,Broadcasting +516526,Broadcasting,Broadcasting +516525,Broadcasting,Broadcasting +515081,Broadcasting,Broadcasting +515080,Broadcasting,Broadcasting +512293,Broadcasting,Broadcasting +510341,Broadcasting,Broadcasting +510339,Broadcasting,Broadcasting +508045,Broadcasting,Broadcasting +508044,Broadcasting,Broadcasting +508041,Broadcasting,Broadcasting +508040,Broadcasting,Broadcasting +504124,Broadcasting,Broadcasting +499809,Broadcasting,Broadcasting +499807,Broadcasting,Broadcasting +495302,Broadcasting,Broadcasting +495300,Broadcasting,Broadcasting +492975,Broadcasting,Broadcasting +492973,Broadcasting,Broadcasting +487159,Broadcasting,Broadcasting +487154,Broadcasting,Broadcasting +487152,Broadcasting,Broadcasting +487149,Broadcasting,Broadcasting +484917,Broadcasting,Broadcasting +477120,Broadcasting,Broadcasting +477117,Broadcasting,Broadcasting +477106,Broadcasting,Broadcasting +468405,Broadcasting,Broadcasting +468403,Broadcasting,Broadcasting +468402,Broadcasting,Broadcasting +468400,Broadcasting,Broadcasting +468398,Broadcasting,Broadcasting +468394,Broadcasting,Broadcasting +463921,Broadcasting,Broadcasting +463918,Broadcasting,Broadcasting +463916,Broadcasting,Broadcasting +463915,Broadcasting,Broadcasting +463911,Broadcasting,Broadcasting +462462,Broadcasting,Broadcasting +460505,Broadcasting,Broadcasting +459340,Broadcasting,Broadcasting +457108,Broadcasting,Broadcasting +445068,Broadcasting,Broadcasting +445067,Broadcasting,Broadcasting +435098,Broadcasting,Broadcasting +425299,Broadcasting,Broadcasting +417662,Broadcasting,Broadcasting +411691,Broadcasting,Broadcasting +409584,Broadcasting,Broadcasting +409209,Broadcasting,Broadcasting +409208,Broadcasting,Broadcasting +403011,Broadcasting,Broadcasting +403007,Broadcasting,Broadcasting +403006,Broadcasting,Broadcasting +403004,Broadcasting,Broadcasting +403003,Broadcasting,Broadcasting +403002,Broadcasting,Broadcasting +403001,Broadcasting,Broadcasting +398160,Broadcasting,Broadcasting +397454,Broadcasting,Broadcasting +454080,Telecommunications,Telecommunications +542937,Telecommunications,Telecommunications +324429,Telecommunications,Telecommunications +417662,Telecommunications,Telecommunications +411497,Telecommunications,Telecommunications +395164,Telecommunications,Telecommunications +395163,Telecommunications,Telecommunications +382095,Telecommunications,Telecommunications +378892,Telecommunications,Telecommunications +378891,Telecommunications,Telecommunications +378889,Telecommunications,Telecommunications +378888,Telecommunications,Telecommunications +378886,Telecommunications,Telecommunications +378885,Telecommunications,Telecommunications +378884,Telecommunications,Telecommunications +378882,Telecommunications,Telecommunications +378880,Telecommunications,Telecommunications +378879,Telecommunications,Telecommunications +378451,Telecommunications,Telecommunications +536597,Telecommunications,Telecommunications +527384,Telecommunications,Telecommunications +524229,Telecommunications,Telecommunications +512293,Telecommunications,Telecommunications +510341,Telecommunications,Telecommunications +510339,Telecommunications,Telecommunications +508045,Telecommunications,Telecommunications +508044,Telecommunications,Telecommunications +508041,Telecommunications,Telecommunications +508040,Telecommunications,Telecommunications +504124,Telecommunications,Telecommunications +504122,Telecommunications,Telecommunications +499809,Telecommunications,Telecommunications +499807,Telecommunications,Telecommunications +495302,Telecommunications,Telecommunications +495300,Telecommunications,Telecommunications +492975,Telecommunications,Telecommunications +492973,Telecommunications,Telecommunications +487159,Telecommunications,Telecommunications +487156,Telecommunications,Telecommunications +487154,Telecommunications,Telecommunications +484939,Telecommunications,Telecommunications +484933,Telecommunications,Telecommunications +484931,Telecommunications,Telecommunications +484926,Telecommunications,Telecommunications +484914,Telecommunications,Telecommunications +484912,Telecommunications,Telecommunications +477109,Telecommunications,Telecommunications +477106,Telecommunications,Telecommunications +470471,Telecommunications,Telecommunications +468405,Telecommunications,Telecommunications +468403,Telecommunications,Telecommunications +468402,Telecommunications,Telecommunications +468400,Telecommunications,Telecommunications +468398,Telecommunications,Telecommunications +468394,Telecommunications,Telecommunications +463918,Telecommunications,Telecommunications +463915,Telecommunications,Telecommunications +463911,Telecommunications,Telecommunications +462462,Telecommunications,Telecommunications +460505,Telecommunications,Telecommunications +460061,Telecommunications,Telecommunications +459340,Telecommunications,Telecommunications +458071,Telecommunications,Telecommunications +457108,Telecommunications,Telecommunications +274492,Telecommunications,Telecommunications +376821,Telecommunications,Telecommunications +209527,Telecommunications,Telecommunications +174665,Telecommunications,Telecommunications +174664,Telecommunications,Telecommunications +156575,Telecommunications,Telecommunications +373808,Telecommunications,Telecommunications +342264,Telecommunications,Telecommunications +243150,Science and Technology,Science and Technology +165427,Science and Technology,Science and Technology +165426,Science and Technology,Science and Technology +165430,Science and Technology,Science and Technology +165429,Science and Technology,Science and Technology +127354,Science and Technology,Science and Technology +112034,Science and Technology,Science and Technology +146896,Science and Technology,Science and Technology +192928,Science and Technology,Science and Technology +192927,Science and Technology,Science and Technology +192926,Science and Technology,Science and Technology +192925,Science and Technology,Science and Technology +192933,Science and Technology,Science and Technology +192932,Science and Technology,Science and Technology +192930,Science and Technology,Science and Technology +175337,Aboriginal Affairs,Aboriginal Affairs +185978,Aboriginal Affairs,Aboriginal Affairs +97326,Aboriginal Affairs,Aboriginal Affairs +185977,Aboriginal Affairs,Aboriginal Affairs +185976,Aboriginal Affairs,Aboriginal Affairs +147960,Broadcasting,Broadcasting +317813,Broadcasting,Broadcasting +132925,Broadcasting,Broadcasting +338528,Telecommunications,Telecommunications +330607,Telecommunications,Telecommunications +128037,Telecommunications,Telecommunications +128034,Telecommunications,Telecommunications +113235,Telecommunications,Telecommunications +109789,Telecommunications,Telecommunications +85834,Telecommunications,Telecommunications +159767,Telecommunications,Telecommunications +159756,Telecommunications,Telecommunications +153410,Telecommunications,Telecommunications +153409,Telecommunications,Telecommunications +153407,Telecommunications,Telecommunications +153405,Telecommunications,Telecommunications +153400,Telecommunications,Telecommunications +153399,Telecommunications,Telecommunications +153379,Telecommunications,Telecommunications +150429,Telecommunications,Telecommunications +148002,Telecommunications,Telecommunications +147970,Telecommunications,Telecommunications +147968,Telecommunications,Telecommunications +147966,Telecommunications,Telecommunications +147964,Telecommunications,Telecommunications +147963,Telecommunications,Telecommunications +147962,Telecommunications,Telecommunications +147961,Telecommunications,Telecommunications +147960,Telecommunications,Telecommunications +147959,Telecommunications,Telecommunications +128038,Telecommunications,Telecommunications +202947,Telecommunications,Telecommunications +202924,Telecommunications,Telecommunications +185978,Telecommunications,Telecommunications +185977,Telecommunications,Telecommunications +185976,Telecommunications,Telecommunications +185975,Telecommunications,Telecommunications +185973,Telecommunications,Telecommunications +185972,Telecommunications,Telecommunications +185970,Telecommunications,Telecommunications +185968,Telecommunications,Telecommunications +175340,Telecommunications,Telecommunications +175336,Telecommunications,Telecommunications +175335,Telecommunications,Telecommunications +175333,Telecommunications,Telecommunications +168943,Telecommunications,Telecommunications +168941,Telecommunications,Telecommunications +168939,Telecommunications,Telecommunications +168938,Telecommunications,Telecommunications +159791,Telecommunications,Telecommunications +159789,Telecommunications,Telecommunications +159787,Telecommunications,Telecommunications +159783,Telecommunications,Telecommunications +159782,Telecommunications,Telecommunications +159779,Telecommunications,Telecommunications +325099,Telecommunications,Telecommunications +325098,Telecommunications,Telecommunications +322341,Telecommunications,Telecommunications +317815,Telecommunications,Telecommunications +317809,Telecommunications,Telecommunications +315983,Telecommunications,Telecommunications +313151,Telecommunications,Telecommunications +303289,Telecommunications,Telecommunications +296838,Telecommunications,Telecommunications +296831,Telecommunications,Telecommunications +291104,Telecommunications,Telecommunications +288430,Telecommunications,Telecommunications +287089,Telecommunications,Telecommunications +259437,Telecommunications,Telecommunications +254371,Telecommunications,Telecommunications +254370,Telecommunications,Telecommunications +250687,Telecommunications,Telecommunications +241030,Telecommunications,Telecommunications +233881,Telecommunications,Telecommunications +368900,Telecommunications,Telecommunications +364866,Telecommunications,Telecommunications +357967,Telecommunications,Telecommunications +351098,Telecommunications,Telecommunications +351097,Telecommunications,Telecommunications +209228,Aboriginal Affairs,Aboriginal Affairs +380981,Aboriginal Affairs,Aboriginal Affairs +90637,Aboriginal Affairs,Aboriginal Affairs +90629,Aboriginal Affairs,Aboriginal Affairs +77488,Aboriginal Affairs,Aboriginal Affairs +499002,Arts and Culture,Arts and Culture +498956,Arts and Culture,Arts and Culture +451042,Broadcasting,Broadcasting +451039,Broadcasting,Broadcasting +499002,Broadcasting,Broadcasting +498963,Broadcasting,Broadcasting +466647,Broadcasting,Broadcasting +463415,Broadcasting,Broadcasting +459584,Broadcasting,Broadcasting +423935,Science and Technology,Science and Technology +423934,Science and Technology,Science and Technology +92988,Science and Technology,Science and Technology +92987,Science and Technology,Science and Technology +92986,Science and Technology,Science and Technology +90138,Science and Technology,Science and Technology +159959,Science and Technology,Science and Technology +159848,Science and Technology,Science and Technology +159842,Science and Technology,Science and Technology +159833,Science and Technology,Science and Technology +159815,Science and Technology,Science and Technology +157253,Science and Technology,Science and Technology +157250,Science and Technology,Science and Technology +154671,Science and Technology,Science and Technology +148248,Science and Technology,Science and Technology +141416,Science and Technology,Science and Technology +141395,Science and Technology,Science and Technology +138585,Science and Technology,Science and Technology +128710,Science and Technology,Science and Technology +233697,Science and Technology,Science and Technology +233696,Science and Technology,Science and Technology +233695,Science and Technology,Science and Technology +230078,Science and Technology,Science and Technology +230077,Science and Technology,Science and Technology +230076,Science and Technology,Science and Technology +223595,Science and Technology,Science and Technology +217853,Science and Technology,Science and Technology +207196,Science and Technology,Science and Technology +200326,Science and Technology,Science and Technology +194872,Science and Technology,Science and Technology +194868,Science and Technology,Science and Technology +189602,Science and Technology,Science and Technology +185992,Science and Technology,Science and Technology +185991,Science and Technology,Science and Technology +185980,Science and Technology,Science and Technology +185979,Science and Technology,Science and Technology +178504,Science and Technology,Science and Technology +171968,Science and Technology,Science and Technology +168060,Science and Technology,Science and Technology +165856,Science and Technology,Science and Technology +165854,Science and Technology,Science and Technology +329831,Science and Technology,Science and Technology +329830,Science and Technology,Science and Technology +327744,Science and Technology,Science and Technology +327742,Science and Technology,Science and Technology +325082,Science and Technology,Science and Technology +322294,Science and Technology,Science and Technology +318280,Science and Technology,Science and Technology +310735,Science and Technology,Science and Technology +305112,Science and Technology,Science and Technology +287064,Science and Technology,Science and Technology +287058,Science and Technology,Science and Technology +287057,Science and Technology,Science and Technology +277545,Science and Technology,Science and Technology +277541,Science and Technology,Science and Technology +277536,Science and Technology,Science and Technology +277532,Science and Technology,Science and Technology +273692,Science and Technology,Science and Technology +273690,Science and Technology,Science and Technology +273684,Science and Technology,Science and Technology +269621,Science and Technology,Science and Technology +264503,Science and Technology,Science and Technology +264501,Science and Technology,Science and Technology +264499,Science and Technology,Science and Technology +259598,Science and Technology,Science and Technology +247661,Science and Technology,Science and Technology +247660,Science and Technology,Science and Technology +247656,Science and Technology,Science and Technology +245095,Science and Technology,Science and Technology +241077,Science and Technology,Science and Technology +241071,Science and Technology,Science and Technology +240844,Science and Technology,Science and Technology +240838,Science and Technology,Science and Technology +240833,Science and Technology,Science and Technology +423932,Science and Technology,Science and Technology +423930,Science and Technology,Science and Technology +423928,Science and Technology,Science and Technology +421362,Science and Technology,Science and Technology +421361,Science and Technology,Science and Technology +421360,Science and Technology,Science and Technology +419628,Science and Technology,Science and Technology +419625,Science and Technology,Science and Technology +419622,Science and Technology,Science and Technology +419621,Science and Technology,Science and Technology +419619,Science and Technology,Science and Technology +419616,Science and Technology,Science and Technology +417783,Science and Technology,Science and Technology +414492,Science and Technology,Science and Technology +414491,Science and Technology,Science and Technology +414488,Science and Technology,Science and Technology +410357,Science and Technology,Science and Technology +410355,Science and Technology,Science and Technology +410354,Science and Technology,Science and Technology +410352,Science and Technology,Science and Technology +410351,Science and Technology,Science and Technology +410349,Science and Technology,Science and Technology +410348,Science and Technology,Science and Technology +407222,Science and Technology,Science and Technology +407221,Science and Technology,Science and Technology +407220,Science and Technology,Science and Technology +406977,Science and Technology,Science and Technology +406898,Science and Technology,Science and Technology +400955,Science and Technology,Science and Technology +396385,Science and Technology,Science and Technology +392185,Science and Technology,Science and Technology +386733,Science and Technology,Science and Technology +383842,Science and Technology,Science and Technology +382041,Science and Technology,Science and Technology +382040,Science and Technology,Science and Technology +382039,Science and Technology,Science and Technology +380427,Science and Technology,Science and Technology +379902,Science and Technology,Science and Technology +374961,Science and Technology,Science and Technology +374957,Science and Technology,Science and Technology +368688,Science and Technology,Science and Technology +362427,Science and Technology,Science and Technology +359606,Science and Technology,Science and Technology +355807,Science and Technology,Science and Technology +353683,Science and Technology,Science and Technology +351420,Science and Technology,Science and Technology +348611,Science and Technology,Science and Technology +343854,Science and Technology,Science and Technology +341252,Science and Technology,Science and Technology +341215,Science and Technology,Science and Technology +331365,Science and Technology,Science and Technology +541320,Science and Technology,Science and Technology +541316,Science and Technology,Science and Technology +536950,Science and Technology,Science and Technology +536934,Science and Technology,Science and Technology +536926,Science and Technology,Science and Technology +535657,Science and Technology,Science and Technology +535649,Science and Technology,Science and Technology +531180,Science and Technology,Science and Technology +527982,Science and Technology,Science and Technology +527977,Science and Technology,Science and Technology +527976,Science and Technology,Science and Technology +527975,Science and Technology,Science and Technology +527970,Science and Technology,Science and Technology +524437,Science and Technology,Science and Technology +524436,Science and Technology,Science and Technology +524432,Science and Technology,Science and Technology +519572,Science and Technology,Science and Technology +519565,Science and Technology,Science and Technology +519563,Science and Technology,Science and Technology +517412,Science and Technology,Science and Technology +517395,Science and Technology,Science and Technology +517384,Science and Technology,Science and Technology +517364,Science and Technology,Science and Technology +514727,Science and Technology,Science and Technology +514724,Science and Technology,Science and Technology +510775,Science and Technology,Science and Technology +510764,Science and Technology,Science and Technology +510751,Science and Technology,Science and Technology +507534,Science and Technology,Science and Technology +507531,Science and Technology,Science and Technology +507530,Science and Technology,Science and Technology +503816,Science and Technology,Science and Technology +503815,Science and Technology,Science and Technology +503814,Science and Technology,Science and Technology +502940,Science and Technology,Science and Technology +499013,Science and Technology,Science and Technology +499008,Science and Technology,Science and Technology +499000,Science and Technology,Science and Technology +498997,Science and Technology,Science and Technology +498984,Science and Technology,Science and Technology +498977,Science and Technology,Science and Technology +498971,Science and Technology,Science and Technology +498966,Science and Technology,Science and Technology +498963,Science and Technology,Science and Technology +493644,Science and Technology,Science and Technology +493637,Science and Technology,Science and Technology +493632,Science and Technology,Science and Technology +493631,Science and Technology,Science and Technology +489395,Science and Technology,Science and Technology +489393,Science and Technology,Science and Technology +489389,Science and Technology,Science and Technology +489388,Science and Technology,Science and Technology +489387,Science and Technology,Science and Technology +486954,Science and Technology,Science and Technology +486952,Science and Technology,Science and Technology +486942,Science and Technology,Science and Technology +486939,Science and Technology,Science and Technology +486936,Science and Technology,Science and Technology +483494,Science and Technology,Science and Technology +483486,Science and Technology,Science and Technology +481494,Science and Technology,Science and Technology +479729,Science and Technology,Science and Technology +479399,Science and Technology,Science and Technology +479397,Science and Technology,Science and Technology +477844,Science and Technology,Science and Technology +473043,Science and Technology,Science and Technology +473042,Science and Technology,Science and Technology +473039,Science and Technology,Science and Technology +473037,Science and Technology,Science and Technology +473034,Science and Technology,Science and Technology +473032,Science and Technology,Science and Technology +470729,Science and Technology,Science and Technology +470713,Science and Technology,Science and Technology +470696,Science and Technology,Science and Technology +466649,Science and Technology,Science and Technology +466647,Science and Technology,Science and Technology +463418,Science and Technology,Science and Technology +463416,Science and Technology,Science and Technology +463415,Science and Technology,Science and Technology +463413,Science and Technology,Science and Technology +462540,Science and Technology,Science and Technology +462536,Science and Technology,Science and Technology +462535,Science and Technology,Science and Technology +462533,Science and Technology,Science and Technology +461170,Science and Technology,Science and Technology +461169,Science and Technology,Science and Technology +459950,Science and Technology,Science and Technology +459949,Science and Technology,Science and Technology +459948,Science and Technology,Science and Technology +459584,Science and Technology,Science and Technology +459582,Science and Technology,Science and Technology +459579,Science and Technology,Science and Technology +458390,Science and Technology,Science and Technology +458389,Science and Technology,Science and Technology +456706,Science and Technology,Science and Technology +456705,Science and Technology,Science and Technology +456704,Science and Technology,Science and Technology +456702,Science and Technology,Science and Technology +454993,Science and Technology,Science and Technology +454991,Science and Technology,Science and Technology +454990,Science and Technology,Science and Technology +454989,Science and Technology,Science and Technology +454982,Science and Technology,Science and Technology +454976,Science and Technology,Science and Technology +451043,Science and Technology,Science and Technology +451042,Science and Technology,Science and Technology +451039,Science and Technology,Science and Technology +448949,Science and Technology,Science and Technology +448948,Science and Technology,Science and Technology +447096,Science and Technology,Science and Technology +444442,Science and Technology,Science and Technology +444441,Science and Technology,Science and Technology +441643,Science and Technology,Science and Technology +441634,Science and Technology,Science and Technology +441620,Science and Technology,Science and Technology +441614,Science and Technology,Science and Technology +438789,Science and Technology,Science and Technology +438784,Science and Technology,Science and Technology +433556,Science and Technology,Science and Technology +432515,Science and Technology,Science and Technology +432500,Science and Technology,Science and Technology +430142,Science and Technology,Science and Technology +430141,Science and Technology,Science and Technology +428309,Science and Technology,Science and Technology +428308,Science and Technology,Science and Technology +428304,Science and Technology,Science and Technology +475158,Telecommunications,Telecommunications +475151,Telecommunications,Telecommunications +154671,Telecommunications,Telecommunications +148248,Telecommunications,Telecommunications +329831,Telecommunications,Telecommunications +322303,Telecommunications,Telecommunications +310735,Telecommunications,Telecommunications +305112,Telecommunications,Telecommunications +296877,Telecommunications,Telecommunications +287064,Telecommunications,Telecommunications +287058,Telecommunications,Telecommunications +277545,Telecommunications,Telecommunications +277541,Telecommunications,Telecommunications +277536,Telecommunications,Telecommunications +277532,Telecommunications,Telecommunications +277530,Telecommunications,Telecommunications +273692,Telecommunications,Telecommunications +273691,Telecommunications,Telecommunications +273684,Telecommunications,Telecommunications +273679,Telecommunications,Telecommunications +264501,Telecommunications,Telecommunications +264499,Telecommunications,Telecommunications +259598,Telecommunications,Telecommunications +241077,Telecommunications,Telecommunications +241071,Telecommunications,Telecommunications +202905,Telecommunications,Telecommunications +202901,Telecommunications,Telecommunications +200326,Telecommunications,Telecommunications +366451,Telecommunications,Telecommunications +364814,Telecommunications,Telecommunications +362965,Telecommunications,Telecommunications +351420,Telecommunications,Telecommunications +348610,Telecommunications,Telecommunications +331373,Telecommunications,Telecommunications +466647,Telecommunications,Telecommunications +466646,Telecommunications,Telecommunications +463415,Telecommunications,Telecommunications +462540,Telecommunications,Telecommunications +461169,Telecommunications,Telecommunications +460710,Telecommunications,Telecommunications +459584,Telecommunications,Telecommunications +459582,Telecommunications,Telecommunications +458390,Telecommunications,Telecommunications +458389,Telecommunications,Telecommunications +458387,Telecommunications,Telecommunications +456702,Telecommunications,Telecommunications +454991,Telecommunications,Telecommunications +454990,Telecommunications,Telecommunications +454989,Telecommunications,Telecommunications +451042,Telecommunications,Telecommunications +451039,Telecommunications,Telecommunications +444442,Telecommunications,Telecommunications +444441,Telecommunications,Telecommunications +438789,Telecommunications,Telecommunications +438771,Telecommunications,Telecommunications +435147,Telecommunications,Telecommunications +433556,Telecommunications,Telecommunications +432500,Telecommunications,Telecommunications +428309,Telecommunications,Telecommunications +428308,Telecommunications,Telecommunications +428304,Telecommunications,Telecommunications +423935,Telecommunications,Telecommunications +423932,Telecommunications,Telecommunications +421362,Telecommunications,Telecommunications +421361,Telecommunications,Telecommunications +419619,Telecommunications,Telecommunications +406898,Telecommunications,Telecommunications +379899,Telecommunications,Telecommunications +375875,Telecommunications,Telecommunications +374957,Telecommunications,Telecommunications +543520,Telecommunications,Telecommunications +543507,Telecommunications,Telecommunications +536942,Telecommunications,Telecommunications +536934,Telecommunications,Telecommunications +536931,Telecommunications,Telecommunications +536923,Telecommunications,Telecommunications +535667,Telecommunications,Telecommunications +535647,Telecommunications,Telecommunications +527982,Telecommunications,Telecommunications +510764,Telecommunications,Telecommunications +502938,Telecommunications,Telecommunications +499002,Telecommunications,Telecommunications +498974,Telecommunications,Telecommunications +493644,Telecommunications,Telecommunications +493632,Telecommunications,Telecommunications +489393,Telecommunications,Telecommunications +486955,Telecommunications,Telecommunications +481497,Telecommunications,Telecommunications +479403,Telecommunications,Telecommunications +532426,Science and Technology,Science and Technology +532424,Science and Technology,Science and Technology +350798,Science and Technology,Science and Technology +347588,Science and Technology,Science and Technology +326917,Science and Technology,Science and Technology +326916,Science and Technology,Science and Technology +326691,Science and Technology,Science and Technology +326689,Science and Technology,Science and Technology +283271,Science and Technology,Science and Technology +258051,Science and Technology,Science and Technology +356681,Science and Technology,Science and Technology +356680,Science and Technology,Science and Technology +511752,Science and Technology,Science and Technology +511751,Science and Technology,Science and Technology +511750,Science and Technology,Science and Technology +499834,Science and Technology,Science and Technology +492308,Science and Technology,Science and Technology +488952,Science and Technology,Science and Technology +488951,Science and Technology,Science and Technology +454711,Science and Technology,Science and Technology +454709,Science and Technology,Science and Technology +450947,Science and Technology,Science and Technology +450945,Science and Technology,Science and Technology +449341,Science and Technology,Science and Technology +449329,Science and Technology,Science and Technology +449293,Science and Technology,Science and Technology +449292,Science and Technology,Science and Technology +449291,Science and Technology,Science and Technology +449290,Science and Technology,Science and Technology +449289,Science and Technology,Science and Technology +449288,Science and Technology,Science and Technology +449287,Science and Technology,Science and Technology +449286,Science and Technology,Science and Technology +448912,Science and Technology,Science and Technology +448911,Science and Technology,Science and Technology +448906,Science and Technology,Science and Technology +448858,Science and Technology,Science and Technology +448857,Science and Technology,Science and Technology +439737,Science and Technology,Science and Technology +439729,Science and Technology,Science and Technology +439726,Science and Technology,Science and Technology +544734,Science and Technology,Science and Technology +532749,Science and Technology,Science and Technology +390059,Aboriginal Affairs,Aboriginal Affairs +390054,Aboriginal Affairs,Aboriginal Affairs +145682,Aboriginal Affairs,Aboriginal Affairs +373834,Aboriginal Affairs,Aboriginal Affairs +373788,Aboriginal Affairs,Aboriginal Affairs +373624,Aboriginal Affairs,Aboriginal Affairs +373623,Aboriginal Affairs,Aboriginal Affairs +373583,Aboriginal Affairs,Aboriginal Affairs +347304,Aboriginal Affairs,Aboriginal Affairs +341983,Aboriginal Affairs,Aboriginal Affairs +341974,Aboriginal Affairs,Aboriginal Affairs +443533,Aboriginal Affairs,Aboriginal Affairs +417395,Aboriginal Affairs,Aboriginal Affairs +410197,Aboriginal Affairs,Aboriginal Affairs +393657,Aboriginal Affairs,Aboriginal Affairs +392864,Aboriginal Affairs,Aboriginal Affairs +392562,Aboriginal Affairs,Aboriginal Affairs +390768,Aboriginal Affairs,Aboriginal Affairs +390760,Aboriginal Affairs,Aboriginal Affairs +390756,Aboriginal Affairs,Aboriginal Affairs +390751,Aboriginal Affairs,Aboriginal Affairs +390742,Aboriginal Affairs,Aboriginal Affairs +390738,Aboriginal Affairs,Aboriginal Affairs +390732,Aboriginal Affairs,Aboriginal Affairs +390730,Aboriginal Affairs,Aboriginal Affairs +398650,Broadcasting,Broadcasting +398649,Broadcasting,Broadcasting +404869,Broadcasting,Broadcasting +404868,Broadcasting,Broadcasting +404867,Broadcasting,Broadcasting +399840,Broadcasting,Broadcasting +398675,Broadcasting,Broadcasting +398673,Broadcasting,Broadcasting +520289,Aboriginal Affairs,Aboriginal Affairs +506091,Aboriginal Affairs,Aboriginal Affairs +109788,Aboriginal Affairs,Aboriginal Affairs +101396,Aboriginal Affairs,Aboriginal Affairs +101394,Aboriginal Affairs,Aboriginal Affairs +101392,Aboriginal Affairs,Aboriginal Affairs +90649,Aboriginal Affairs,Aboriginal Affairs +88216,Aboriginal Affairs,Aboriginal Affairs +88213,Aboriginal Affairs,Aboriginal Affairs +88207,Aboriginal Affairs,Aboriginal Affairs +145554,Aboriginal Affairs,Aboriginal Affairs +142821,Aboriginal Affairs,Aboriginal Affairs +142818,Aboriginal Affairs,Aboriginal Affairs +142815,Aboriginal Affairs,Aboriginal Affairs +135762,Aboriginal Affairs,Aboriginal Affairs +135760,Aboriginal Affairs,Aboriginal Affairs +135759,Aboriginal Affairs,Aboriginal Affairs +109806,Aboriginal Affairs,Aboriginal Affairs +109803,Aboriginal Affairs,Aboriginal Affairs +109801,Aboriginal Affairs,Aboriginal Affairs +109797,Aboriginal Affairs,Aboriginal Affairs +109796,Aboriginal Affairs,Aboriginal Affairs +109794,Aboriginal Affairs,Aboriginal Affairs +171053,Aboriginal Affairs,Aboriginal Affairs +171048,Aboriginal Affairs,Aboriginal Affairs +171045,Aboriginal Affairs,Aboriginal Affairs +171041,Aboriginal Affairs,Aboriginal Affairs +171038,Aboriginal Affairs,Aboriginal Affairs +171036,Aboriginal Affairs,Aboriginal Affairs +171033,Aboriginal Affairs,Aboriginal Affairs +171032,Aboriginal Affairs,Aboriginal Affairs +171029,Aboriginal Affairs,Aboriginal Affairs +171026,Aboriginal Affairs,Aboriginal Affairs +171024,Aboriginal Affairs,Aboriginal Affairs +171020,Aboriginal Affairs,Aboriginal Affairs +171019,Aboriginal Affairs,Aboriginal Affairs +171012,Aboriginal Affairs,Aboriginal Affairs +171008,Aboriginal Affairs,Aboriginal Affairs +162481,Aboriginal Affairs,Aboriginal Affairs +162472,Aboriginal Affairs,Aboriginal Affairs +162457,Aboriginal Affairs,Aboriginal Affairs +162420,Aboriginal Affairs,Aboriginal Affairs +158504,Aboriginal Affairs,Aboriginal Affairs +158503,Aboriginal Affairs,Aboriginal Affairs +158502,Aboriginal Affairs,Aboriginal Affairs +158501,Aboriginal Affairs,Aboriginal Affairs +158499,Aboriginal Affairs,Aboriginal Affairs +158498,Aboriginal Affairs,Aboriginal Affairs +158497,Aboriginal Affairs,Aboriginal Affairs +158496,Aboriginal Affairs,Aboriginal Affairs +158495,Aboriginal Affairs,Aboriginal Affairs +158493,Aboriginal Affairs,Aboriginal Affairs +158473,Aboriginal Affairs,Aboriginal Affairs +158472,Aboriginal Affairs,Aboriginal Affairs +158471,Aboriginal Affairs,Aboriginal Affairs +158470,Aboriginal Affairs,Aboriginal Affairs +158469,Aboriginal Affairs,Aboriginal Affairs +158468,Aboriginal Affairs,Aboriginal Affairs +158466,Aboriginal Affairs,Aboriginal Affairs +158465,Aboriginal Affairs,Aboriginal Affairs +158462,Aboriginal Affairs,Aboriginal Affairs +158458,Aboriginal Affairs,Aboriginal Affairs +158456,Aboriginal Affairs,Aboriginal Affairs +150438,Aboriginal Affairs,Aboriginal Affairs +150437,Aboriginal Affairs,Aboriginal Affairs +374465,Aboriginal Affairs,Aboriginal Affairs +370217,Aboriginal Affairs,Aboriginal Affairs +370212,Aboriginal Affairs,Aboriginal Affairs +370193,Aboriginal Affairs,Aboriginal Affairs +370190,Aboriginal Affairs,Aboriginal Affairs +368175,Aboriginal Affairs,Aboriginal Affairs +356446,Aboriginal Affairs,Aboriginal Affairs +333293,Aboriginal Affairs,Aboriginal Affairs +326437,Aboriginal Affairs,Aboriginal Affairs +326435,Aboriginal Affairs,Aboriginal Affairs +326433,Aboriginal Affairs,Aboriginal Affairs +324470,Aboriginal Affairs,Aboriginal Affairs +324469,Aboriginal Affairs,Aboriginal Affairs +324090,Aboriginal Affairs,Aboriginal Affairs +324088,Aboriginal Affairs,Aboriginal Affairs +323213,Aboriginal Affairs,Aboriginal Affairs +312761,Aboriginal Affairs,Aboriginal Affairs +301218,Aboriginal Affairs,Aboriginal Affairs +294310,Aboriginal Affairs,Aboriginal Affairs +292650,Aboriginal Affairs,Aboriginal Affairs +292649,Aboriginal Affairs,Aboriginal Affairs +287190,Aboriginal Affairs,Aboriginal Affairs +280189,Aboriginal Affairs,Aboriginal Affairs +279551,Aboriginal Affairs,Aboriginal Affairs +268529,Aboriginal Affairs,Aboriginal Affairs +257390,Aboriginal Affairs,Aboriginal Affairs +254834,Aboriginal Affairs,Aboriginal Affairs +254832,Aboriginal Affairs,Aboriginal Affairs +254831,Aboriginal Affairs,Aboriginal Affairs +254214,Aboriginal Affairs,Aboriginal Affairs +218428,Aboriginal Affairs,Aboriginal Affairs +218427,Aboriginal Affairs,Aboriginal Affairs +218417,Aboriginal Affairs,Aboriginal Affairs +207609,Aboriginal Affairs,Aboriginal Affairs +207607,Aboriginal Affairs,Aboriginal Affairs +202950,Aboriginal Affairs,Aboriginal Affairs +202519,Aboriginal Affairs,Aboriginal Affairs +194854,Aboriginal Affairs,Aboriginal Affairs +194849,Aboriginal Affairs,Aboriginal Affairs +194843,Aboriginal Affairs,Aboriginal Affairs +194840,Aboriginal Affairs,Aboriginal Affairs +189666,Aboriginal Affairs,Aboriginal Affairs +487930,Aboriginal Affairs,Aboriginal Affairs +487916,Aboriginal Affairs,Aboriginal Affairs +487911,Aboriginal Affairs,Aboriginal Affairs +487905,Aboriginal Affairs,Aboriginal Affairs +487904,Aboriginal Affairs,Aboriginal Affairs +487901,Aboriginal Affairs,Aboriginal Affairs +487900,Aboriginal Affairs,Aboriginal Affairs +458639,Aboriginal Affairs,Aboriginal Affairs +449605,Aboriginal Affairs,Aboriginal Affairs +447522,Aboriginal Affairs,Aboriginal Affairs +447507,Aboriginal Affairs,Aboriginal Affairs +447506,Aboriginal Affairs,Aboriginal Affairs +447498,Aboriginal Affairs,Aboriginal Affairs +442164,Aboriginal Affairs,Aboriginal Affairs +442162,Aboriginal Affairs,Aboriginal Affairs +442161,Aboriginal Affairs,Aboriginal Affairs +438255,Aboriginal Affairs,Aboriginal Affairs +438254,Aboriginal Affairs,Aboriginal Affairs +438253,Aboriginal Affairs,Aboriginal Affairs +438252,Aboriginal Affairs,Aboriginal Affairs +438251,Aboriginal Affairs,Aboriginal Affairs +438250,Aboriginal Affairs,Aboriginal Affairs +438249,Aboriginal Affairs,Aboriginal Affairs +438248,Aboriginal Affairs,Aboriginal Affairs +438247,Aboriginal Affairs,Aboriginal Affairs +438246,Aboriginal Affairs,Aboriginal Affairs +438245,Aboriginal Affairs,Aboriginal Affairs +438244,Aboriginal Affairs,Aboriginal Affairs +438243,Aboriginal Affairs,Aboriginal Affairs +438242,Aboriginal Affairs,Aboriginal Affairs +438241,Aboriginal Affairs,Aboriginal Affairs +438240,Aboriginal Affairs,Aboriginal Affairs +438239,Aboriginal Affairs,Aboriginal Affairs +438238,Aboriginal Affairs,Aboriginal Affairs +438237,Aboriginal Affairs,Aboriginal Affairs +438236,Aboriginal Affairs,Aboriginal Affairs +438235,Aboriginal Affairs,Aboriginal Affairs +438234,Aboriginal Affairs,Aboriginal Affairs +438233,Aboriginal Affairs,Aboriginal Affairs +438232,Aboriginal Affairs,Aboriginal Affairs +438231,Aboriginal Affairs,Aboriginal Affairs +438230,Aboriginal Affairs,Aboriginal Affairs +438228,Aboriginal Affairs,Aboriginal Affairs +438227,Aboriginal Affairs,Aboriginal Affairs +438225,Aboriginal Affairs,Aboriginal Affairs +438223,Aboriginal Affairs,Aboriginal Affairs +438222,Aboriginal Affairs,Aboriginal Affairs +438220,Aboriginal Affairs,Aboriginal Affairs +438219,Aboriginal Affairs,Aboriginal Affairs +438217,Aboriginal Affairs,Aboriginal Affairs +438215,Aboriginal Affairs,Aboriginal Affairs +438214,Aboriginal Affairs,Aboriginal Affairs +437725,Aboriginal Affairs,Aboriginal Affairs +425471,Aboriginal Affairs,Aboriginal Affairs +421849,Aboriginal Affairs,Aboriginal Affairs +416763,Aboriginal Affairs,Aboriginal Affairs +416761,Aboriginal Affairs,Aboriginal Affairs +416757,Aboriginal Affairs,Aboriginal Affairs +416753,Aboriginal Affairs,Aboriginal Affairs +412347,Aboriginal Affairs,Aboriginal Affairs +412334,Aboriginal Affairs,Aboriginal Affairs +412328,Aboriginal Affairs,Aboriginal Affairs +412310,Aboriginal Affairs,Aboriginal Affairs +412300,Aboriginal Affairs,Aboriginal Affairs +412281,Aboriginal Affairs,Aboriginal Affairs +412242,Aboriginal Affairs,Aboriginal Affairs +408088,Aboriginal Affairs,Aboriginal Affairs +386122,Aboriginal Affairs,Aboriginal Affairs +386120,Aboriginal Affairs,Aboriginal Affairs +386119,Aboriginal Affairs,Aboriginal Affairs +386118,Aboriginal Affairs,Aboriginal Affairs +386116,Aboriginal Affairs,Aboriginal Affairs +386070,Aboriginal Affairs,Aboriginal Affairs +386068,Aboriginal Affairs,Aboriginal Affairs +385554,Aboriginal Affairs,Aboriginal Affairs +485357,Science and Technology,Science and Technology +462449,Science and Technology,Science and Technology +162460,Science and Technology,Science and Technology +162404,Science and Technology,Science and Technology +312760,Science and Technology,Science and Technology +309599,Science and Technology,Science and Technology +290931,Science and Technology,Science and Technology +162472,Science and Technology,Science and Technology +162465,Science and Technology,Science and Technology +416763,Science and Technology,Science and Technology +416761,Science and Technology,Science and Technology +416757,Science and Technology,Science and Technology +416753,Science and Technology,Science and Technology +412385,Science and Technology,Science and Technology +412284,Science and Technology,Science and Technology +378976,Science and Technology,Science and Technology +350630,Science and Technology,Science and Technology +326437,Science and Technology,Science and Technology +529639,Science and Technology,Science and Technology +529637,Science and Technology,Science and Technology +520289,Science and Technology,Science and Technology +487930,Science and Technology,Science and Technology +487922,Science and Technology,Science and Technology +487914,Science and Technology,Science and Technology +487909,Science and Technology,Science and Technology +487908,Science and Technology,Science and Technology +487906,Science and Technology,Science and Technology +487905,Science and Technology,Science and Technology +487902,Science and Technology,Science and Technology +487899,Science and Technology,Science and Technology +487897,Science and Technology,Science and Technology +370220,Broadcasting,Broadcasting +365602,Broadcasting,Broadcasting +227731,Broadcasting,Broadcasting +227730,Broadcasting,Broadcasting +225269,Broadcasting,Broadcasting +225267,Broadcasting,Broadcasting +222272,Broadcasting,Broadcasting +222271,Broadcasting,Broadcasting +222270,Broadcasting,Broadcasting +222269,Broadcasting,Broadcasting +305510,Broadcasting,Broadcasting +298849,Broadcasting,Broadcasting +292349,Broadcasting,Broadcasting +273839,Broadcasting,Broadcasting +267349,Broadcasting,Broadcasting +247695,Broadcasting,Broadcasting +247691,Broadcasting,Broadcasting +247689,Broadcasting,Broadcasting +243229,Broadcasting,Broadcasting +238889,Broadcasting,Broadcasting +238749,Broadcasting,Broadcasting +235366,Broadcasting,Broadcasting +235365,Broadcasting,Broadcasting +235364,Broadcasting,Broadcasting +235362,Broadcasting,Broadcasting +235361,Broadcasting,Broadcasting +235358,Broadcasting,Broadcasting +235354,Broadcasting,Broadcasting +351945,Broadcasting,Broadcasting +351944,Broadcasting,Broadcasting +351943,Broadcasting,Broadcasting +351942,Broadcasting,Broadcasting +349839,Broadcasting,Broadcasting +348139,Broadcasting,Broadcasting +348138,Broadcasting,Broadcasting +348137,Broadcasting,Broadcasting +332572,Broadcasting,Broadcasting +329194,Broadcasting,Broadcasting +317391,Broadcasting,Broadcasting +317390,Broadcasting,Broadcasting +317389,Broadcasting,Broadcasting +401099,Broadcasting,Broadcasting +401095,Broadcasting,Broadcasting +401094,Broadcasting,Broadcasting +397432,Broadcasting,Broadcasting +386657,Broadcasting,Broadcasting +386655,Broadcasting,Broadcasting +386653,Broadcasting,Broadcasting +386651,Broadcasting,Broadcasting +386650,Broadcasting,Broadcasting +386649,Broadcasting,Broadcasting +386648,Broadcasting,Broadcasting +386647,Broadcasting,Broadcasting +378438,Broadcasting,Broadcasting +377742,Broadcasting,Broadcasting +377741,Broadcasting,Broadcasting +377740,Broadcasting,Broadcasting +377737,Broadcasting,Broadcasting +370300,Broadcasting,Broadcasting +370234,Broadcasting,Broadcasting +370231,Broadcasting,Broadcasting +370230,Broadcasting,Broadcasting +370226,Broadcasting,Broadcasting +377740,Telecommunications,Telecommunications +377737,Telecommunications,Telecommunications +317390,Telecommunications,Telecommunications +317389,Telecommunications,Telecommunications +370300,Telecommunications,Telecommunications +370234,Telecommunications,Telecommunications +370231,Telecommunications,Telecommunications +370230,Telecommunications,Telecommunications +370226,Telecommunications,Telecommunications +370222,Telecommunications,Telecommunications +370220,Telecommunications,Telecommunications +365602,Telecommunications,Telecommunications +351945,Telecommunications,Telecommunications +351944,Telecommunications,Telecommunications +351943,Telecommunications,Telecommunications +351942,Telecommunications,Telecommunications +348140,Telecommunications,Telecommunications +348139,Telecommunications,Telecommunications +348138,Telecommunications,Telecommunications +348137,Telecommunications,Telecommunications +339269,Telecommunications,Telecommunications +401099,Telecommunications,Telecommunications +401097,Telecommunications,Telecommunications +401095,Telecommunications,Telecommunications +401094,Telecommunications,Telecommunications +397436,Telecommunications,Telecommunications +397435,Telecommunications,Telecommunications +397434,Telecommunications,Telecommunications +397431,Telecommunications,Telecommunications +397429,Telecommunications,Telecommunications +386657,Telecommunications,Telecommunications +386655,Telecommunications,Telecommunications +386653,Telecommunications,Telecommunications +386651,Telecommunications,Telecommunications +386650,Telecommunications,Telecommunications +386649,Telecommunications,Telecommunications +386648,Telecommunications,Telecommunications +386647,Telecommunications,Telecommunications +378438,Telecommunications,Telecommunications +377742,Telecommunications,Telecommunications +458375,Science and Technology,Science and Technology +458374,Science and Technology,Science and Technology +80498,Science and Technology,Science and Technology +245670,Science and Technology,Science and Technology +405113,Science and Technology,Science and Technology +397327,Science and Technology,Science and Technology +378076,Science and Technology,Science and Technology +378055,Science and Technology,Science and Technology +377494,Science and Technology,Science and Technology +377493,Science and Technology,Science and Technology +377492,Science and Technology,Science and Technology +377491,Science and Technology,Science and Technology +351670,Science and Technology,Science and Technology +352962,Science and Technology,Science and Technology +407185,Science and Technology,Science and Technology +238810,Science and Technology,Science and Technology +224988,Science and Technology,Science and Technology +380295,Science and Technology,Science and Technology +380294,Science and Technology,Science and Technology +374511,Science and Technology,Science and Technology +412056,Science and Technology,Science and Technology +412042,Science and Technology,Science and Technology +369561,Science and Technology,Science and Technology +347507,Science and Technology,Science and Technology +344099,Science and Technology,Science and Technology +344097,Science and Technology,Science and Technology +333759,Science and Technology,Science and Technology +322325,Science and Technology,Science and Technology +318029,Science and Technology,Science and Technology +310786,Science and Technology,Science and Technology +297078,Science and Technology,Science and Technology +297077,Science and Technology,Science and Technology +277396,Science and Technology,Science and Technology +277392,Science and Technology,Science and Technology +244528,Science and Technology,Science and Technology +244527,Science and Technology,Science and Technology +202778,Science and Technology,Science and Technology +202610,Science and Technology,Science and Technology +202607,Science and Technology,Science and Technology +202601,Science and Technology,Science and Technology +202580,Science and Technology,Science and Technology +202574,Science and Technology,Science and Technology +202571,Science and Technology,Science and Technology +200479,Science and Technology,Science and Technology +498569,Science and Technology,Science and Technology +498555,Science and Technology,Science and Technology +475315,Science and Technology,Science and Technology +472693,Science and Technology,Science and Technology +462251,Science and Technology,Science and Technology +461859,Science and Technology,Science and Technology +432423,Science and Technology,Science and Technology +430853,Science and Technology,Science and Technology +430840,Science and Technology,Science and Technology +429105,Science and Technology,Science and Technology +268755,Broadcasting,Radiodiffusion +263369,Broadcasting,Radiodiffusion +85386,Broadcasting,Radiodiffusion +85376,Broadcasting,Radiodiffusion +74274,Broadcasting,Radiodiffusion +173504,Broadcasting,Radiodiffusion +167791,Broadcasting,Radiodiffusion +165803,Broadcasting,Radiodiffusion +165801,Broadcasting,Radiodiffusion +163693,Broadcasting,Radiodiffusion +163692,Broadcasting,Radiodiffusion +163690,Broadcasting,Radiodiffusion +159438,Broadcasting,Radiodiffusion +159436,Broadcasting,Radiodiffusion +159435,Broadcasting,Radiodiffusion +159431,Broadcasting,Radiodiffusion +157134,Broadcasting,Radiodiffusion +157126,Broadcasting,Radiodiffusion +157113,Broadcasting,Radiodiffusion +116174,Broadcasting,Radiodiffusion +100820,Broadcasting,Radiodiffusion +236449,Broadcasting,Radiodiffusion +236429,Broadcasting,Radiodiffusion +217888,Broadcasting,Radiodiffusion +202704,Broadcasting,Radiodiffusion +200271,Broadcasting,Radiodiffusion +200243,Broadcasting,Radiodiffusion +188835,Broadcasting,Radiodiffusion +188832,Broadcasting,Radiodiffusion +180400,Broadcasting,Radiodiffusion +361893,Telecommunications,Telecommunications +317531,Telecommunications,Telecommunications +117563,Telecommunications,Telecommunications +100654,Telecommunications,Telecommunications +147654,Telecommunications,Telecommunications +211288,Telecommunications,Telecommunications +190784,Telecommunications,Telecommunications +172809,Telecommunications,Telecommunications +150878,Science and Technology,Science and Technology +150877,Science and Technology,Science and Technology +500636,Science and Technology,Science and Technology +472411,Science and Technology,Science and Technology +316072,Science and Technology,Science and Technology +304068,Science and Technology,Science and Technology +285489,Science and Technology,Science and Technology +240889,Science and Technology,Science and Technology +189778,Science and Technology,Science and Technology +168172,Science and Technology,Science and Technology +168167,Science and Technology,Science and Technology +168165,Science and Technology,Science and Technology +164291,Science and Technology,Science and Technology +164286,Science and Technology,Science and Technology +388049,Science and Technology,Science and Technology +385676,Science and Technology,Science and Technology +382519,Science and Technology,Science and Technology +379308,Science and Technology,Science and Technology +351382,Science and Technology,Science and Technology +351379,Science and Technology,Science and Technology +351377,Science and Technology,Science and Technology +351376,Science and Technology,Science and Technology +347217,Science and Technology,Science and Technology +333642,Science and Technology,Science and Technology +331093,Science and Technology,Science and Technology +319151,Science and Technology,Science and Technology +469793,Science and Technology,Science and Technology +457829,Science and Technology,Science and Technology +439045,Science and Technology,Science and Technology +430975,Science and Technology,Science and Technology +416467,Science and Technology,Science and Technology +412796,Science and Technology,Science and Technology +403503,Science and Technology,Science and Technology +403502,Science and Technology,Science and Technology +399044,Science and Technology,Science and Technology +397144,Science and Technology,Science and Technology +397143,Science and Technology,Science and Technology +397141,Science and Technology,Science and Technology +397139,Science and Technology,Science and Technology +394219,Science and Technology,Science and Technology +394216,Science and Technology,Science and Technology +522469,Science and Technology,Science and Technology +522467,Science and Technology,Science and Technology +519882,Science and Technology,Science and Technology +519880,Science and Technology,Science and Technology +507536,Science and Technology,Science and Technology +501947,Science and Technology,Science and Technology +501105,Science and Technology,Science and Technology +251690,Science and Technology,Science and Technology +377248,Science and Technology,Science and Technology +92700,Science and Technology,Science and Technology +515638,Science and Technology,Science and Technology +515637,Science and Technology,Science and Technology +159876,Science and Technology,Science and Technology +113834,Science and Technology,Science and Technology +354074,Science and Technology,Science and Technology +354072,Science and Technology,Science and Technology +354069,Science and Technology,Science and Technology +543871,Science and Technology,Science and Technology +543848,Science and Technology,Science and Technology +540028,Science and Technology,Science and Technology +538495,Science and Technology,Science and Technology +532317,Science and Technology,Science and Technology +529046,Science and Technology,Science and Technology +526198,Science and Technology,Science and Technology +526172,Science and Technology,Science and Technology +522711,Science and Technology,Science and Technology +519447,Science and Technology,Science and Technology +519446,Science and Technology,Science and Technology +236469,Broadcasting,Radiodiffusion +236450,Broadcasting,Radiodiffusion +87540,Broadcasting,Radiodiffusion +87538,Broadcasting,Radiodiffusion +82614,Broadcasting,Radiodiffusion +149977,Broadcasting,Radiodiffusion +142959,Broadcasting,Radiodiffusion +120257,Broadcasting,Radiodiffusion +103674,Broadcasting,Radiodiffusion +188833,Broadcasting,Radiodiffusion +185943,Broadcasting,Radiodiffusion +180405,Broadcasting,Radiodiffusion +167790,Broadcasting,Radiodiffusion +167788,Broadcasting,Radiodiffusion +162280,Broadcasting,Radiodiffusion +159434,Broadcasting,Radiodiffusion +157117,Broadcasting,Radiodiffusion +157090,Broadcasting,Radiodiffusion +153049,Broadcasting,Radiodiffusion +153043,Broadcasting,Radiodiffusion +257729,Broadcasting,Radiodiffusion +253910,Broadcasting,Radiodiffusion +249429,Broadcasting,Radiodiffusion +240857,Broadcasting,Radiodiffusion +538500,Aboriginal Affairs,Aboriginal Affairs +78820,Arts and Culture,Arts and Culture +78819,Arts and Culture,Arts and Culture +443913,Science and Technology,Science and Technology +540996,Science and Technology,Science and Technology +459520,Science and Technology,Science and Technology +443917,Science and Technology,Science and Technology +168409,Telecommunications,Telecommunications +168406,Telecommunications,Telecommunications +142936,Telecommunications,Telecommunications +269052,Telecommunications,Telecommunications +93055,Science and Technology,Science and Technology +516961,Aboriginal Affairs,Aboriginal Affairs +510258,Aboriginal Affairs,Aboriginal Affairs +81121,Aboriginal Affairs,Aboriginal Affairs +81120,Aboriginal Affairs,Aboriginal Affairs +81119,Aboriginal Affairs,Aboriginal Affairs +81118,Aboriginal Affairs,Aboriginal Affairs +81116,Aboriginal Affairs,Aboriginal Affairs +81115,Aboriginal Affairs,Aboriginal Affairs +81114,Aboriginal Affairs,Aboriginal Affairs +77786,Aboriginal Affairs,Aboriginal Affairs +77781,Aboriginal Affairs,Aboriginal Affairs +216588,Aboriginal Affairs,Aboriginal Affairs +206928,Aboriginal Affairs,Aboriginal Affairs +206927,Aboriginal Affairs,Aboriginal Affairs +195077,Aboriginal Affairs,Aboriginal Affairs +195076,Aboriginal Affairs,Aboriginal Affairs +195069,Aboriginal Affairs,Aboriginal Affairs +195051,Aboriginal Affairs,Aboriginal Affairs +195048,Aboriginal Affairs,Aboriginal Affairs +195047,Aboriginal Affairs,Aboriginal Affairs +377098,Aboriginal Affairs,Aboriginal Affairs +372762,Aboriginal Affairs,Aboriginal Affairs +365288,Aboriginal Affairs,Aboriginal Affairs +356033,Aboriginal Affairs,Aboriginal Affairs +333742,Aboriginal Affairs,Aboriginal Affairs +329829,Aboriginal Affairs,Aboriginal Affairs +282189,Aboriginal Affairs,Aboriginal Affairs +480273,Aboriginal Affairs,Aboriginal Affairs +480272,Aboriginal Affairs,Aboriginal Affairs +475892,Aboriginal Affairs,Aboriginal Affairs +475885,Aboriginal Affairs,Aboriginal Affairs +470667,Aboriginal Affairs,Aboriginal Affairs +468470,Aboriginal Affairs,Aboriginal Affairs +468419,Aboriginal Affairs,Aboriginal Affairs +468416,Aboriginal Affairs,Aboriginal Affairs +468390,Aboriginal Affairs,Aboriginal Affairs +468374,Aboriginal Affairs,Aboriginal Affairs +458884,Aboriginal Affairs,Aboriginal Affairs +457287,Aboriginal Affairs,Aboriginal Affairs +457284,Aboriginal Affairs,Aboriginal Affairs +457281,Aboriginal Affairs,Aboriginal Affairs +454826,Aboriginal Affairs,Aboriginal Affairs +454808,Aboriginal Affairs,Aboriginal Affairs +454806,Aboriginal Affairs,Aboriginal Affairs +454804,Aboriginal Affairs,Aboriginal Affairs +454802,Aboriginal Affairs,Aboriginal Affairs +454801,Aboriginal Affairs,Aboriginal Affairs +454799,Aboriginal Affairs,Aboriginal Affairs +454797,Aboriginal Affairs,Aboriginal Affairs +454794,Aboriginal Affairs,Aboriginal Affairs +454792,Aboriginal Affairs,Aboriginal Affairs +454790,Aboriginal Affairs,Aboriginal Affairs +454788,Aboriginal Affairs,Aboriginal Affairs +454784,Aboriginal Affairs,Aboriginal Affairs +451594,Aboriginal Affairs,Aboriginal Affairs +451593,Aboriginal Affairs,Aboriginal Affairs +451591,Aboriginal Affairs,Aboriginal Affairs +451589,Aboriginal Affairs,Aboriginal Affairs +451587,Aboriginal Affairs,Aboriginal Affairs +451586,Aboriginal Affairs,Aboriginal Affairs +451585,Aboriginal Affairs,Aboriginal Affairs +451584,Aboriginal Affairs,Aboriginal Affairs +451583,Aboriginal Affairs,Aboriginal Affairs +451582,Aboriginal Affairs,Aboriginal Affairs +451581,Aboriginal Affairs,Aboriginal Affairs +451580,Aboriginal Affairs,Aboriginal Affairs +450301,Aboriginal Affairs,Aboriginal Affairs +449788,Aboriginal Affairs,Aboriginal Affairs +449787,Aboriginal Affairs,Aboriginal Affairs +449785,Aboriginal Affairs,Aboriginal Affairs +447984,Aboriginal Affairs,Aboriginal Affairs +447974,Aboriginal Affairs,Aboriginal Affairs +447959,Aboriginal Affairs,Aboriginal Affairs +447948,Aboriginal Affairs,Aboriginal Affairs +445754,Aboriginal Affairs,Aboriginal Affairs +445753,Aboriginal Affairs,Aboriginal Affairs +445751,Aboriginal Affairs,Aboriginal Affairs +445750,Aboriginal Affairs,Aboriginal Affairs +445749,Aboriginal Affairs,Aboriginal Affairs +439592,Aboriginal Affairs,Aboriginal Affairs +439589,Aboriginal Affairs,Aboriginal Affairs +439588,Aboriginal Affairs,Aboriginal Affairs +439584,Aboriginal Affairs,Aboriginal Affairs +439582,Aboriginal Affairs,Aboriginal Affairs +439581,Aboriginal Affairs,Aboriginal Affairs +439578,Aboriginal Affairs,Aboriginal Affairs +439575,Aboriginal Affairs,Aboriginal Affairs +439572,Aboriginal Affairs,Aboriginal Affairs +439559,Aboriginal Affairs,Aboriginal Affairs +433846,Aboriginal Affairs,Aboriginal Affairs +433845,Aboriginal Affairs,Aboriginal Affairs +426792,Aboriginal Affairs,Aboriginal Affairs +424269,Aboriginal Affairs,Aboriginal Affairs +422545,Aboriginal Affairs,Aboriginal Affairs +422544,Aboriginal Affairs,Aboriginal Affairs +416902,Aboriginal Affairs,Aboriginal Affairs +413813,Aboriginal Affairs,Aboriginal Affairs +406735,Aboriginal Affairs,Aboriginal Affairs +403724,Aboriginal Affairs,Aboriginal Affairs +403715,Aboriginal Affairs,Aboriginal Affairs +340881,Science and Technology,Science and Technology +338761,Science and Technology,Science and Technology +338746,Science and Technology,Science and Technology +338742,Science and Technology,Science and Technology +336037,Science and Technology,Science and Technology +336036,Science and Technology,Science and Technology +333743,Science and Technology,Science and Technology +333741,Science and Technology,Science and Technology +312972,Science and Technology,Science and Technology +310520,Science and Technology,Science and Technology +310517,Science and Technology,Science and Technology +310513,Science and Technology,Science and Technology +310508,Science and Technology,Science and Technology +310503,Science and Technology,Science and Technology +297021,Science and Technology,Science and Technology +297019,Science and Technology,Science and Technology +297018,Science and Technology,Science and Technology +287670,Science and Technology,Science and Technology +287669,Science and Technology,Science and Technology +282709,Science and Technology,Science and Technology +282689,Science and Technology,Science and Technology +282670,Science and Technology,Science and Technology +282652,Science and Technology,Science and Technology +227063,Science and Technology,Science and Technology +354141,Science and Technology,Science and Technology +410192,Science and Technology,Science and Technology +404258,Science and Technology,Science and Technology +90794,Science and Technology,Science and Technology +151606,Science and Technology,Science and Technology +207519,Science and Technology,Science and Technology +161773,Science and Technology,Science and Technology +379983,Science and Technology,Science and Technology +379980,Science and Technology,Science and Technology +379956,Science and Technology,Science and Technology +526461,Science and Technology,Science and Technology +525363,Science and Technology,Science and Technology +525360,Science and Technology,Science and Technology +525357,Science and Technology,Science and Technology +525354,Science and Technology,Science and Technology +525161,Science and Technology,Science and Technology +523660,Science and Technology,Science and Technology +523642,Science and Technology,Science and Technology +523641,Science and Technology,Science and Technology +518818,Science and Technology,Science and Technology +516716,Science and Technology,Science and Technology +516322,Science and Technology,Science and Technology +506874,Science and Technology,Science and Technology +506873,Science and Technology,Science and Technology +503035,Science and Technology,Science and Technology +503034,Science and Technology,Science and Technology +503033,Science and Technology,Science and Technology +503032,Science and Technology,Science and Technology +500136,Science and Technology,Science and Technology +489012,Science and Technology,Science and Technology +447565,Broadcasting,Broadcasting +543357,Broadcasting,Broadcasting +338502,Broadcasting,Broadcasting +338258,Broadcasting,Broadcasting +333301,Broadcasting,Broadcasting +331294,Broadcasting,Broadcasting +185994,Broadcasting,Broadcasting +370981,Broadcasting,Broadcasting +400018,Broadcasting,Broadcasting +400016,Broadcasting,Broadcasting +400014,Broadcasting,Broadcasting +400011,Broadcasting,Broadcasting +396334,Broadcasting,Broadcasting +396333,Broadcasting,Broadcasting +396332,Broadcasting,Broadcasting +396331,Broadcasting,Broadcasting +390577,Broadcasting,Broadcasting +543334,Broadcasting,Broadcasting +543333,Broadcasting,Broadcasting +543332,Broadcasting,Broadcasting +543331,Broadcasting,Broadcasting +543330,Broadcasting,Broadcasting +543329,Broadcasting,Broadcasting +541686,Broadcasting,Broadcasting +541685,Broadcasting,Broadcasting +541684,Broadcasting,Broadcasting +540185,Broadcasting,Broadcasting +540184,Broadcasting,Broadcasting +539907,Broadcasting,Broadcasting +539906,Broadcasting,Broadcasting +539905,Broadcasting,Broadcasting +539903,Broadcasting,Broadcasting +539900,Broadcasting,Broadcasting +539899,Broadcasting,Broadcasting +537574,Broadcasting,Broadcasting +537572,Broadcasting,Broadcasting +537571,Broadcasting,Broadcasting +537569,Broadcasting,Broadcasting +537568,Broadcasting,Broadcasting +537567,Broadcasting,Broadcasting +537566,Broadcasting,Broadcasting +537565,Broadcasting,Broadcasting +537564,Broadcasting,Broadcasting +537563,Broadcasting,Broadcasting +537562,Broadcasting,Broadcasting +537561,Broadcasting,Broadcasting +537560,Broadcasting,Broadcasting +537559,Broadcasting,Broadcasting +537558,Broadcasting,Broadcasting +537557,Broadcasting,Broadcasting +534924,Broadcasting,Broadcasting +534922,Broadcasting,Broadcasting +534920,Broadcasting,Broadcasting +534919,Broadcasting,Broadcasting +534912,Broadcasting,Broadcasting +534908,Broadcasting,Broadcasting +534906,Broadcasting,Broadcasting +534899,Broadcasting,Broadcasting +534897,Broadcasting,Broadcasting +534895,Broadcasting,Broadcasting +534892,Broadcasting,Broadcasting +534889,Broadcasting,Broadcasting +534887,Broadcasting,Broadcasting +534885,Broadcasting,Broadcasting +534883,Broadcasting,Broadcasting +534879,Broadcasting,Broadcasting +534876,Broadcasting,Broadcasting +534872,Broadcasting,Broadcasting +534870,Broadcasting,Broadcasting +531911,Broadcasting,Broadcasting +531910,Broadcasting,Broadcasting +531909,Broadcasting,Broadcasting +529498,Broadcasting,Broadcasting +529497,Broadcasting,Broadcasting +529496,Broadcasting,Broadcasting +529495,Broadcasting,Broadcasting +529494,Broadcasting,Broadcasting +529493,Broadcasting,Broadcasting +526178,Broadcasting,Broadcasting +522228,Broadcasting,Broadcasting +522227,Broadcasting,Broadcasting +522225,Broadcasting,Broadcasting +522224,Broadcasting,Broadcasting +522219,Broadcasting,Broadcasting +522216,Broadcasting,Broadcasting +522213,Broadcasting,Broadcasting +517723,Broadcasting,Broadcasting +517722,Broadcasting,Broadcasting +517718,Broadcasting,Broadcasting +515572,Broadcasting,Broadcasting +510375,Broadcasting,Broadcasting +510374,Broadcasting,Broadcasting +510373,Broadcasting,Broadcasting +509277,Broadcasting,Broadcasting +507588,Broadcasting,Broadcasting +507587,Broadcasting,Broadcasting +504261,Broadcasting,Broadcasting +504260,Broadcasting,Broadcasting +504257,Broadcasting,Broadcasting +504256,Broadcasting,Broadcasting +491141,Broadcasting,Broadcasting +491139,Broadcasting,Broadcasting +468367,Broadcasting,Broadcasting +371207,Arts and Culture,Arts and Culture +356636,Arts and Culture,Arts and Culture +145415,Arts and Culture,Arts and Culture +132318,Arts and Culture,Arts and Culture +97394,Arts and Culture,Arts and Culture +84815,Arts and Culture,Arts and Culture +84814,Arts and Culture,Arts and Culture +268052,Arts and Culture,Arts and Culture +245001,Arts and Culture,Arts and Culture +244999,Arts and Culture,Arts and Culture +239052,Arts and Culture,Arts and Culture +218947,Arts and Culture,Arts and Culture +197032,Arts and Culture,Arts and Culture +194662,Arts and Culture,Arts and Culture +194661,Arts and Culture,Arts and Culture +348773,Arts and Culture,Arts and Culture +348772,Arts and Culture,Arts and Culture +310989,Arts and Culture,Arts and Culture +299770,Arts and Culture,Arts and Culture +299769,Arts and Culture,Arts and Culture +278710,Arts and Culture,Arts and Culture +278709,Arts and Culture,Arts and Culture +268054,Arts and Culture,Arts and Culture +384830,Arts and Culture,Arts and Culture +384829,Arts and Culture,Arts and Culture +384828,Arts and Culture,Arts and Culture +372558,Arts and Culture,Arts and Culture +197032,Broadcasting,Broadcasting +384830,Broadcasting,Broadcasting +310989,Broadcasting,Broadcasting +299770,Broadcasting,Broadcasting +299769,Broadcasting,Broadcasting +278710,Broadcasting,Broadcasting +278709,Broadcasting,Broadcasting +268054,Broadcasting,Broadcasting +268052,Broadcasting,Broadcasting +245001,Broadcasting,Broadcasting +291077,Telecommunications,Telecommunications +291076,Telecommunications,Telecommunications +189405,Telecommunications,Telecommunications +189384,Telecommunications,Telecommunications +185745,Telecommunications,Telecommunications +185666,Telecommunications,Telecommunications +175446,Telecommunications,Telecommunications +175445,Telecommunications,Telecommunications +175444,Telecommunications,Telecommunications +77380,Telecommunications,Telecommunications +78915,Telecommunications,Telecommunications +78914,Telecommunications,Telecommunications +93358,Telecommunications,Telecommunications +87766,Telecommunications,Telecommunications +82857,Telecommunications,Telecommunications +383038,Aboriginal Affairs,Aboriginal Affairs +355793,Aboriginal Affairs,Aboriginal Affairs +189091,Aboriginal Affairs,Aboriginal Affairs +342312,Aboriginal Affairs,Aboriginal Affairs +265854,Aboriginal Affairs,Aboriginal Affairs +372027,Aboriginal Affairs,Aboriginal Affairs +87276,Arts and Culture,Arts and Culture +87275,Arts and Culture,Arts and Culture +101874,Arts and Culture,Arts and Culture +87279,Arts and Culture,Arts and Culture +128480,Telecommunications,Telecommunications +124135,Telecommunications,Telecommunications +124115,Telecommunications,Telecommunications +83974,Telecommunications,Telecommunications +239648,Telecommunications,Telecommunications +201471,Telecommunications,Telecommunications +151538,Telecommunications,Telecommunications +80697,Aboriginal Affairs,Aboriginal Affairs +80696,Aboriginal Affairs,Aboriginal Affairs +93777,Aboriginal Affairs,Aboriginal Affairs +90426,Aboriginal Affairs,Aboriginal Affairs +88696,Aboriginal Affairs,Aboriginal Affairs +85937,Aboriginal Affairs,Aboriginal Affairs +85936,Aboriginal Affairs,Aboriginal Affairs +83538,Aboriginal Affairs,Aboriginal Affairs +83537,Aboriginal Affairs,Aboriginal Affairs +464817,Science and Technology,Science and Technology +464815,Science and Technology,Science and Technology +90235,Science and Technology,Science and Technology +87843,Science and Technology,Science and Technology +124949,Science and Technology,Science and Technology +124945,Science and Technology,Science and Technology +124943,Science and Technology,Science and Technology +124938,Science and Technology,Science and Technology +251859,Science and Technology,Science and Technology +251858,Science and Technology,Science and Technology +251856,Science and Technology,Science and Technology +251855,Science and Technology,Science and Technology +251854,Science and Technology,Science and Technology +251853,Science and Technology,Science and Technology +251829,Science and Technology,Science and Technology +381340,Science and Technology,Science and Technology +381337,Science and Technology,Science and Technology +381335,Science and Technology,Science and Technology +378728,Science and Technology,Science and Technology +378727,Science and Technology,Science and Technology +369685,Science and Technology,Science and Technology +369684,Science and Technology,Science and Technology +369683,Science and Technology,Science and Technology +361239,Science and Technology,Science and Technology +361238,Science and Technology,Science and Technology +361237,Science and Technology,Science and Technology +361236,Science and Technology,Science and Technology +361235,Science and Technology,Science and Technology +354486,Science and Technology,Science and Technology +354485,Science and Technology,Science and Technology +354484,Science and Technology,Science and Technology +354483,Science and Technology,Science and Technology +354482,Science and Technology,Science and Technology +354481,Science and Technology,Science and Technology +354460,Science and Technology,Science and Technology +349271,Science and Technology,Science and Technology +341737,Science and Technology,Science and Technology +341703,Science and Technology,Science and Technology +341700,Science and Technology,Science and Technology +338662,Science and Technology,Science and Technology +334166,Science and Technology,Science and Technology +304103,Science and Technology,Science and Technology +304102,Science and Technology,Science and Technology +304099,Science and Technology,Science and Technology +304097,Science and Technology,Science and Technology +304093,Science and Technology,Science and Technology +275269,Science and Technology,Science and Technology +251861,Science and Technology,Science and Technology +464814,Science and Technology,Science and Technology +464792,Science and Technology,Science and Technology +461290,Science and Technology,Science and Technology +461288,Science and Technology,Science and Technology +459528,Science and Technology,Science and Technology +458643,Science and Technology,Science and Technology +458642,Science and Technology,Science and Technology +458640,Science and Technology,Science and Technology +457096,Science and Technology,Science and Technology +456386,Science and Technology,Science and Technology +456382,Science and Technology,Science and Technology +445036,Science and Technology,Science and Technology +445034,Science and Technology,Science and Technology +445032,Science and Technology,Science and Technology +445029,Science and Technology,Science and Technology +445028,Science and Technology,Science and Technology +445027,Science and Technology,Science and Technology +445026,Science and Technology,Science and Technology +445024,Science and Technology,Science and Technology +445023,Science and Technology,Science and Technology +445017,Science and Technology,Science and Technology +445013,Science and Technology,Science and Technology +415119,Science and Technology,Science and Technology +411454,Science and Technology,Science and Technology +411364,Science and Technology,Science and Technology +411362,Science and Technology,Science and Technology +410771,Science and Technology,Science and Technology +408962,Science and Technology,Science and Technology +405033,Science and Technology,Science and Technology +405032,Science and Technology,Science and Technology +405028,Science and Technology,Science and Technology +402691,Science and Technology,Science and Technology +402690,Science and Technology,Science and Technology +402666,Science and Technology,Science and Technology +402665,Science and Technology,Science and Technology +402664,Science and Technology,Science and Technology +400264,Science and Technology,Science and Technology +399181,Science and Technology,Science and Technology +399180,Science and Technology,Science and Technology +399179,Science and Technology,Science and Technology +399177,Science and Technology,Science and Technology +399175,Science and Technology,Science and Technology +396555,Science and Technology,Science and Technology +396552,Science and Technology,Science and Technology +396550,Science and Technology,Science and Technology +396543,Science and Technology,Science and Technology +396536,Science and Technology,Science and Technology +396523,Science and Technology,Science and Technology +396515,Science and Technology,Science and Technology +396508,Science and Technology,Science and Technology +396497,Science and Technology,Science and Technology +394096,Science and Technology,Science and Technology +394095,Science and Technology,Science and Technology +394093,Science and Technology,Science and Technology +394091,Science and Technology,Science and Technology +391028,Science and Technology,Science and Technology +391025,Science and Technology,Science and Technology +387201,Science and Technology,Science and Technology +469303,Science and Technology,Science and Technology +467142,Science and Technology,Science and Technology +467125,Science and Technology,Science and Technology +464834,Science and Technology,Science and Technology +464832,Science and Technology,Science and Technology +112516,Aboriginal Affairs,Aboriginal Affairs +112514,Aboriginal Affairs,Aboriginal Affairs +88058,Aboriginal Affairs,Aboriginal Affairs +88057,Aboriginal Affairs,Aboriginal Affairs +83834,Aboriginal Affairs,Aboriginal Affairs +78139,Aboriginal Affairs,Aboriginal Affairs +112540,Aboriginal Affairs,Aboriginal Affairs +112539,Aboriginal Affairs,Aboriginal Affairs +112535,Aboriginal Affairs,Aboriginal Affairs +174844,Aboriginal Affairs,Aboriginal Affairs +174840,Aboriginal Affairs,Aboriginal Affairs +79794,Aboriginal Affairs,Aboriginal Affairs +79114,Aboriginal Affairs,Aboriginal Affairs +164052,Aboriginal Affairs,Aboriginal Affairs +161810,Aboriginal Affairs,Aboriginal Affairs +161809,Aboriginal Affairs,Aboriginal Affairs +156726,Aboriginal Affairs,Aboriginal Affairs +356032,Aboriginal Affairs,Aboriginal Affairs +356026,Aboriginal Affairs,Aboriginal Affairs +319235,Aboriginal Affairs,Aboriginal Affairs +319233,Aboriginal Affairs,Aboriginal Affairs +319230,Aboriginal Affairs,Aboriginal Affairs +300593,Aboriginal Affairs,Aboriginal Affairs +300592,Aboriginal Affairs,Aboriginal Affairs +300591,Aboriginal Affairs,Aboriginal Affairs +300590,Aboriginal Affairs,Aboriginal Affairs +300589,Aboriginal Affairs,Aboriginal Affairs +273142,Aboriginal Affairs,Aboriginal Affairs +273140,Aboriginal Affairs,Aboriginal Affairs +273134,Aboriginal Affairs,Aboriginal Affairs +273126,Aboriginal Affairs,Aboriginal Affairs +273119,Aboriginal Affairs,Aboriginal Affairs +240730,Aboriginal Affairs,Aboriginal Affairs +211855,Aboriginal Affairs,Aboriginal Affairs +201527,Aboriginal Affairs,Aboriginal Affairs +197588,Aboriginal Affairs,Aboriginal Affairs +188049,Aboriginal Affairs,Aboriginal Affairs +188048,Aboriginal Affairs,Aboriginal Affairs +168969,Science and Technology,Science and Technology +168968,Science and Technology,Science and Technology +161806,Science and Technology,Science and Technology +161805,Science and Technology,Science and Technology +161803,Science and Technology,Science and Technology +156797,Science and Technology,Science and Technology +156724,Science and Technology,Science and Technology +219807,Science and Technology,Science and Technology +197611,Science and Technology,Science and Technology +197610,Science and Technology,Science and Technology +197609,Science and Technology,Science and Technology +197608,Science and Technology,Science and Technology +197607,Science and Technology,Science and Technology +192544,Science and Technology,Science and Technology +355951,Aboriginal Affairs,Aboriginal Affairs +484286,Aboriginal Affairs,Aboriginal Affairs +100547,Aboriginal Affairs,Aboriginal Affairs +100544,Aboriginal Affairs,Aboriginal Affairs +433478,Aboriginal Affairs,Aboriginal Affairs +433475,Aboriginal Affairs,Aboriginal Affairs +433472,Aboriginal Affairs,Aboriginal Affairs +424987,Aboriginal Affairs,Aboriginal Affairs +387379,Aboriginal Affairs,Aboriginal Affairs +387377,Aboriginal Affairs,Aboriginal Affairs +387374,Aboriginal Affairs,Aboriginal Affairs +387373,Aboriginal Affairs,Aboriginal Affairs +387372,Aboriginal Affairs,Aboriginal Affairs +387371,Aboriginal Affairs,Aboriginal Affairs +387369,Aboriginal Affairs,Aboriginal Affairs +379207,Aboriginal Affairs,Aboriginal Affairs +97456,Aboriginal Affairs,Aboriginal Affairs +97453,Aboriginal Affairs,Aboriginal Affairs +93775,Aboriginal Affairs,Aboriginal Affairs +90422,Aboriginal Affairs,Aboriginal Affairs +90421,Aboriginal Affairs,Aboriginal Affairs +90280,Aboriginal Affairs,Aboriginal Affairs +90279,Aboriginal Affairs,Aboriginal Affairs +90277,Aboriginal Affairs,Aboriginal Affairs +90276,Aboriginal Affairs,Aboriginal Affairs +88695,Aboriginal Affairs,Aboriginal Affairs +85935,Aboriginal Affairs,Aboriginal Affairs +85934,Aboriginal Affairs,Aboriginal Affairs +83540,Aboriginal Affairs,Aboriginal Affairs +80698,Aboriginal Affairs,Aboriginal Affairs +101755,Aboriginal Affairs,Aboriginal Affairs +101754,Aboriginal Affairs,Aboriginal Affairs +97461,Aboriginal Affairs,Aboriginal Affairs +119261,Aboriginal Affairs,Aboriginal Affairs +92619,Aboriginal Affairs,Aboriginal Affairs +151852,Aboriginal Affairs,Aboriginal Affairs +141780,Aboriginal Affairs,Aboriginal Affairs +135708,Aboriginal Affairs,Aboriginal Affairs +123175,Aboriginal Affairs,Aboriginal Affairs +158193,Aboriginal Affairs,Aboriginal Affairs +80459,Arts and Culture,Arts and Culture +162206,Broadcasting,Broadcasting +162156,Broadcasting,Broadcasting +94077,Broadcasting,Broadcasting +94074,Broadcasting,Broadcasting +90716,Broadcasting,Broadcasting +80854,Broadcasting,Broadcasting +117815,Broadcasting,Broadcasting +117814,Broadcasting,Broadcasting +114435,Broadcasting,Broadcasting +106098,Broadcasting,Broadcasting +101052,Broadcasting,Broadcasting +159723,Broadcasting,Broadcasting +159720,Broadcasting,Broadcasting +159719,Broadcasting,Broadcasting +159718,Broadcasting,Broadcasting +159659,Broadcasting,Broadcasting +159651,Broadcasting,Broadcasting +157086,Broadcasting,Broadcasting +157074,Broadcasting,Broadcasting +157071,Broadcasting,Broadcasting +157067,Broadcasting,Broadcasting +157061,Broadcasting,Broadcasting +146381,Broadcasting,Broadcasting +146380,Broadcasting,Broadcasting +146379,Broadcasting,Broadcasting +146378,Broadcasting,Broadcasting +146377,Broadcasting,Broadcasting +146376,Broadcasting,Broadcasting +146375,Broadcasting,Broadcasting +146207,Broadcasting,Broadcasting +146201,Broadcasting,Broadcasting +142918,Broadcasting,Broadcasting +173423,Broadcasting,Broadcasting +173422,Broadcasting,Broadcasting +167950,Broadcasting,Broadcasting +165557,Broadcasting,Broadcasting +165556,Broadcasting,Broadcasting +163613,Broadcasting,Broadcasting +163610,Broadcasting,Broadcasting +157059,Telecommunications,Telecommunications +157011,Telecommunications,Telecommunications +97996,Telecommunications,Telecommunications +97995,Telecommunications,Telecommunications +90721,Telecommunications,Telecommunications +90719,Telecommunications,Telecommunications +88301,Telecommunications,Telecommunications +88297,Telecommunications,Telecommunications +86035,Telecommunications,Telecommunications +82843,Telecommunications,Telecommunications +154868,Telecommunications,Telecommunications +154867,Telecommunications,Telecommunications +153546,Telecommunications,Telecommunications +153545,Telecommunications,Telecommunications +152158,Telecommunications,Telecommunications +148184,Telecommunications,Telecommunications +146205,Telecommunications,Telecommunications +125415,Telecommunications,Telecommunications +118694,Telecommunications,Telecommunications +117815,Telecommunications,Telecommunications +117814,Telecommunications,Telecommunications +109764,Telecommunications,Telecommunications +109740,Telecommunications,Telecommunications +109739,Telecommunications,Telecommunications +109737,Telecommunications,Telecommunications +106097,Telecommunications,Telecommunications +106095,Telecommunications,Telecommunications +101052,Telecommunications,Telecommunications +101051,Telecommunications,Telecommunications +100838,Telecommunications,Telecommunications +173426,Telecommunications,Telecommunications +173424,Telecommunications,Telecommunications +173423,Telecommunications,Telecommunications +170593,Telecommunications,Telecommunications +170592,Telecommunications,Telecommunications +170590,Telecommunications,Telecommunications +167957,Telecommunications,Telecommunications +167956,Telecommunications,Telecommunications +167950,Telecommunications,Telecommunications +167949,Telecommunications,Telecommunications +167948,Telecommunications,Telecommunications +167947,Telecommunications,Telecommunications +167946,Telecommunications,Telecommunications +167945,Telecommunications,Telecommunications +167944,Telecommunications,Telecommunications +165557,Telecommunications,Telecommunications +165556,Telecommunications,Telecommunications +162212,Telecommunications,Telecommunications +162158,Telecommunications,Telecommunications +162156,Telecommunications,Telecommunications +159741,Telecommunications,Telecommunications +159740,Telecommunications,Telecommunications +159739,Telecommunications,Telecommunications +159723,Telecommunications,Telecommunications +159720,Telecommunications,Telecommunications +159719,Telecommunications,Telecommunications +159718,Telecommunications,Telecommunications +159717,Telecommunications,Telecommunications +159673,Telecommunications,Telecommunications +159667,Telecommunications,Telecommunications +159662,Telecommunications,Telecommunications +159659,Telecommunications,Telecommunications +159656,Telecommunications,Telecommunications +159654,Telecommunications,Telecommunications +159652,Telecommunications,Telecommunications +159651,Telecommunications,Telecommunications +159648,Telecommunications,Telecommunications +157086,Telecommunications,Telecommunications +157085,Telecommunications,Telecommunications +157080,Telecommunications,Telecommunications +157074,Telecommunications,Telecommunications +157071,Telecommunications,Telecommunications +157067,Telecommunications,Telecommunications +80843,Science and Technology,Science and Technology +158630,Science and Technology,Science and Technology +101309,Science and Technology,Science and Technology +212309,Aboriginal Affairs,Aboriginal Affairs +200251,Aboriginal Affairs,Aboriginal Affairs +100884,Science and Technology,Science and Technology +100881,Science and Technology,Science and Technology +504411,Science and Technology,Science and Technology +504409,Science and Technology,Science and Technology +323806,Science and Technology,Science and Technology +320873,Science and Technology,Science and Technology +319689,Science and Technology,Science and Technology +314110,Science and Technology,Science and Technology +314109,Science and Technology,Science and Technology +301211,Science and Technology,Science and Technology +275252,Science and Technology,Science and Technology +264150,Science and Technology,Science and Technology +257769,Science and Technology,Science and Technology +249725,Science and Technology,Science and Technology +249723,Science and Technology,Science and Technology +249721,Science and Technology,Science and Technology +249717,Science and Technology,Science and Technology +249707,Science and Technology,Science and Technology +232409,Science and Technology,Science and Technology +400830,Science and Technology,Science and Technology +398780,Science and Technology,Science and Technology +396341,Science and Technology,Science and Technology +394192,Science and Technology,Science and Technology +394191,Science and Technology,Science and Technology +394190,Science and Technology,Science and Technology +392365,Science and Technology,Science and Technology +392361,Science and Technology,Science and Technology +392360,Science and Technology,Science and Technology +392358,Science and Technology,Science and Technology +391484,Science and Technology,Science and Technology +391480,Science and Technology,Science and Technology +387328,Science and Technology,Science and Technology +385293,Science and Technology,Science and Technology +385291,Science and Technology,Science and Technology +383456,Science and Technology,Science and Technology +383227,Science and Technology,Science and Technology +381830,Science and Technology,Science and Technology +381829,Science and Technology,Science and Technology +381817,Science and Technology,Science and Technology +379798,Science and Technology,Science and Technology +377646,Science and Technology,Science and Technology +377645,Science and Technology,Science and Technology +376300,Science and Technology,Science and Technology +371453,Science and Technology,Science and Technology +343760,Science and Technology,Science and Technology +499830,Science and Technology,Science and Technology +478355,Science and Technology,Science and Technology +478354,Science and Technology,Science and Technology +471274,Science and Technology,Science and Technology +471273,Science and Technology,Science and Technology +467273,Science and Technology,Science and Technology +466897,Science and Technology,Science and Technology +466704,Science and Technology,Science and Technology +465239,Science and Technology,Science and Technology +464294,Science and Technology,Science and Technology +464170,Science and Technology,Science and Technology +460161,Science and Technology,Science and Technology +441796,Science and Technology,Science and Technology +441794,Science and Technology,Science and Technology +439111,Science and Technology,Science and Technology +439099,Science and Technology,Science and Technology +439094,Science and Technology,Science and Technology +435520,Science and Technology,Science and Technology +433636,Science and Technology,Science and Technology +433608,Science and Technology,Science and Technology +431153,Science and Technology,Science and Technology +428152,Science and Technology,Science and Technology +426268,Science and Technology,Science and Technology +426267,Science and Technology,Science and Technology +426266,Science and Technology,Science and Technology +426264,Science and Technology,Science and Technology +426262,Science and Technology,Science and Technology +426261,Science and Technology,Science and Technology +426259,Science and Technology,Science and Technology +426258,Science and Technology,Science and Technology +426256,Science and Technology,Science and Technology +426255,Science and Technology,Science and Technology +426254,Science and Technology,Science and Technology +420931,Science and Technology,Science and Technology +419451,Science and Technology,Science and Technology +418148,Science and Technology,Science and Technology +418143,Science and Technology,Science and Technology +415976,Science and Technology,Science and Technology +415700,Science and Technology,Science and Technology +410458,Science and Technology,Science and Technology +407143,Science and Technology,Science and Technology +543914,Science and Technology,Science and Technology +543908,Science and Technology,Science and Technology +543899,Science and Technology,Science and Technology +533189,Science and Technology,Science and Technology +533188,Science and Technology,Science and Technology +533187,Science and Technology,Science and Technology +533186,Science and Technology,Science and Technology +533185,Science and Technology,Science and Technology +533183,Science and Technology,Science and Technology +533182,Science and Technology,Science and Technology +533181,Science and Technology,Science and Technology +509388,Science and Technology,Science and Technology +530399,Science and Technology,Science and Technology +523849,Science and Technology,Science and Technology +89855,Science and Technology,Science and Technology +89854,Science and Technology,Science and Technology +89374,Science and Technology,Science and Technology +82376,Science and Technology,Science and Technology +82375,Science and Technology,Science and Technology +81675,Science and Technology,Science and Technology +81574,Science and Technology,Science and Technology +113901,Science and Technology,Science and Technology +102514,Science and Technology,Science and Technology +100239,Science and Technology,Science and Technology +164325,Science and Technology,Science and Technology +162142,Science and Technology,Science and Technology +162138,Science and Technology,Science and Technology +199967,Science and Technology,Science and Technology +322672,Science and Technology,Science and Technology +288590,Science and Technology,Science and Technology +288589,Science and Technology,Science and Technology +285430,Science and Technology,Science and Technology +285429,Science and Technology,Science and Technology +284109,Science and Technology,Science and Technology +284092,Science and Technology,Science and Technology +284091,Science and Technology,Science and Technology +284090,Science and Technology,Science and Technology +284089,Science and Technology,Science and Technology +280313,Science and Technology,Science and Technology +483598,Science and Technology,Science and Technology +463075,Science and Technology,Science and Technology +460486,Science and Technology,Science and Technology +459747,Science and Technology,Science and Technology +456920,Science and Technology,Science and Technology +456457,Science and Technology,Science and Technology +454783,Science and Technology,Science and Technology +452647,Science and Technology,Science and Technology +452643,Science and Technology,Science and Technology +445248,Science and Technology,Science and Technology +445245,Science and Technology,Science and Technology +544091,Science and Technology,Science and Technology +544085,Science and Technology,Science and Technology +544075,Science and Technology,Science and Technology +543860,Science and Technology,Science and Technology +543777,Science and Technology,Science and Technology +415517,Aboriginal Affairs,Aboriginal Affairs +390996,Aboriginal Affairs,Aboriginal Affairs +87867,Aboriginal Affairs,Aboriginal Affairs +236662,Aboriginal Affairs,Aboriginal Affairs +366067,Aboriginal Affairs,Aboriginal Affairs +364903,Aboriginal Affairs,Aboriginal Affairs +359448,Aboriginal Affairs,Aboriginal Affairs +353409,Aboriginal Affairs,Aboriginal Affairs +353408,Aboriginal Affairs,Aboriginal Affairs +338560,Aboriginal Affairs,Aboriginal Affairs +329943,Aboriginal Affairs,Aboriginal Affairs +329927,Aboriginal Affairs,Aboriginal Affairs +315178,Aboriginal Affairs,Aboriginal Affairs +296166,Aboriginal Affairs,Aboriginal Affairs +280754,Aboriginal Affairs,Aboriginal Affairs +259058,Aboriginal Affairs,Aboriginal Affairs +253029,Aboriginal Affairs,Aboriginal Affairs +540056,Aboriginal Affairs,Aboriginal Affairs +538280,Aboriginal Affairs,Aboriginal Affairs +535304,Aboriginal Affairs,Aboriginal Affairs +522663,Aboriginal Affairs,Aboriginal Affairs +519723,Aboriginal Affairs,Aboriginal Affairs +513041,Aboriginal Affairs,Aboriginal Affairs +510694,Aboriginal Affairs,Aboriginal Affairs +507738,Aboriginal Affairs,Aboriginal Affairs +505094,Aboriginal Affairs,Aboriginal Affairs +504953,Aboriginal Affairs,Aboriginal Affairs +504949,Aboriginal Affairs,Aboriginal Affairs +504936,Aboriginal Affairs,Aboriginal Affairs +504934,Aboriginal Affairs,Aboriginal Affairs +504913,Aboriginal Affairs,Aboriginal Affairs +501596,Aboriginal Affairs,Aboriginal Affairs +501582,Aboriginal Affairs,Aboriginal Affairs +501579,Aboriginal Affairs,Aboriginal Affairs +501578,Aboriginal Affairs,Aboriginal Affairs +501576,Aboriginal Affairs,Aboriginal Affairs +501570,Aboriginal Affairs,Aboriginal Affairs +498576,Aboriginal Affairs,Aboriginal Affairs +495680,Aboriginal Affairs,Aboriginal Affairs +493276,Aboriginal Affairs,Aboriginal Affairs +493275,Aboriginal Affairs,Aboriginal Affairs +493274,Aboriginal Affairs,Aboriginal Affairs +491377,Aboriginal Affairs,Aboriginal Affairs +491373,Aboriginal Affairs,Aboriginal Affairs +491360,Aboriginal Affairs,Aboriginal Affairs +491357,Aboriginal Affairs,Aboriginal Affairs +491352,Aboriginal Affairs,Aboriginal Affairs +491326,Aboriginal Affairs,Aboriginal Affairs +491314,Aboriginal Affairs,Aboriginal Affairs +491308,Aboriginal Affairs,Aboriginal Affairs +487822,Aboriginal Affairs,Aboriginal Affairs +487806,Aboriginal Affairs,Aboriginal Affairs +484577,Aboriginal Affairs,Aboriginal Affairs +484574,Aboriginal Affairs,Aboriginal Affairs +484568,Aboriginal Affairs,Aboriginal Affairs +481964,Aboriginal Affairs,Aboriginal Affairs +480204,Aboriginal Affairs,Aboriginal Affairs +480202,Aboriginal Affairs,Aboriginal Affairs +480201,Aboriginal Affairs,Aboriginal Affairs +475531,Aboriginal Affairs,Aboriginal Affairs +470882,Aboriginal Affairs,Aboriginal Affairs +470846,Aboriginal Affairs,Aboriginal Affairs +470844,Aboriginal Affairs,Aboriginal Affairs +468499,Aboriginal Affairs,Aboriginal Affairs +468494,Aboriginal Affairs,Aboriginal Affairs +464657,Aboriginal Affairs,Aboriginal Affairs +464630,Aboriginal Affairs,Aboriginal Affairs +447228,Aboriginal Affairs,Aboriginal Affairs +438550,Aboriginal Affairs,Aboriginal Affairs +438524,Aboriginal Affairs,Aboriginal Affairs +430294,Aboriginal Affairs,Aboriginal Affairs +426031,Aboriginal Affairs,Aboriginal Affairs +423902,Aboriginal Affairs,Aboriginal Affairs +207273,Science and Technology,Science and Technology +477585,Science and Technology,Science and Technology +84615,Science and Technology,Science and Technology +142999,Science and Technology,Science and Technology +428792,Science and Technology,Science and Technology +223134,Science and Technology,Science and Technology +223131,Science and Technology,Science and Technology +223129,Science and Technology,Science and Technology +216275,Science and Technology,Science and Technology +216274,Science and Technology,Science and Technology +216272,Science and Technology,Science and Technology +216271,Science and Technology,Science and Technology +216269,Science and Technology,Science and Technology +216268,Science and Technology,Science and Technology +428058,Science and Technology,Science and Technology +428055,Science and Technology,Science and Technology +163225,Science and Technology,Science and Technology +153242,Science and Technology,Science and Technology +148247,Science and Technology,Science and Technology +148223,Science and Technology,Science and Technology +190064,Science and Technology,Science and Technology +411853,Science and Technology,Science and Technology +367545,Aboriginal Affairs,Aboriginal Affairs +367504,Aboriginal Affairs,Aboriginal Affairs +375420,Aboriginal Affairs,Aboriginal Affairs +375402,Aboriginal Affairs,Aboriginal Affairs +375401,Aboriginal Affairs,Aboriginal Affairs +375394,Aboriginal Affairs,Aboriginal Affairs +367646,Aboriginal Affairs,Aboriginal Affairs +367563,Aboriginal Affairs,Aboriginal Affairs +367562,Aboriginal Affairs,Aboriginal Affairs +367561,Aboriginal Affairs,Aboriginal Affairs +367560,Aboriginal Affairs,Aboriginal Affairs +492019,Arts and Culture,Arts and Culture +489715,Arts and Culture,Arts and Culture +133857,Arts and Culture,Arts and Culture +133856,Arts and Culture,Arts and Culture +123954,Arts and Culture,Arts and Culture +200453,Arts and Culture,Arts and Culture +193974,Arts and Culture,Arts and Culture +193971,Arts and Culture,Arts and Culture +188964,Arts and Culture,Arts and Culture +162405,Arts and Culture,Arts and Culture +157356,Arts and Culture,Arts and Culture +145516,Arts and Culture,Arts and Culture +141334,Arts and Culture,Arts and Culture +355297,Arts and Culture,Arts and Culture +355296,Arts and Culture,Arts and Culture +355292,Arts and Culture,Arts and Culture +352024,Arts and Culture,Arts and Culture +352023,Arts and Culture,Arts and Culture +329133,Arts and Culture,Arts and Culture +323432,Arts and Culture,Arts and Culture +323431,Arts and Culture,Arts and Culture +323430,Arts and Culture,Arts and Culture +323429,Arts and Culture,Arts and Culture +237014,Arts and Culture,Arts and Culture +237013,Arts and Culture,Arts and Culture +202771,Arts and Culture,Arts and Culture +202767,Arts and Culture,Arts and Culture +489714,Arts and Culture,Arts and Culture +489713,Arts and Culture,Arts and Culture +489701,Arts and Culture,Arts and Culture +476610,Arts and Culture,Arts and Culture +476514,Arts and Culture,Arts and Culture +476513,Arts and Culture,Arts and Culture +462208,Arts and Culture,Arts and Culture +460858,Arts and Culture,Arts and Culture +456508,Arts and Culture,Arts and Culture +456507,Arts and Culture,Arts and Culture +448437,Arts and Culture,Arts and Culture +444250,Arts and Culture,Arts and Culture +399998,Arts and Culture,Arts and Culture +386162,Arts and Culture,Arts and Culture +386161,Arts and Culture,Arts and Culture +386160,Arts and Culture,Arts and Culture +375454,Arts and Culture,Arts and Culture +355300,Arts and Culture,Arts and Culture +355299,Arts and Culture,Arts and Culture +355298,Arts and Culture,Arts and Culture +523791,Arts and Culture,Arts and Culture +520593,Arts and Culture,Arts and Culture +519542,Arts and Culture,Arts and Culture +518485,Arts and Culture,Arts and Culture +517256,Arts and Culture,Arts and Culture +514844,Arts and Culture,Arts and Culture +506444,Arts and Culture,Arts and Culture +503473,Arts and Culture,Arts and Culture +489713,Broadcasting,Broadcasting +489701,Broadcasting,Broadcasting +123954,Broadcasting,Broadcasting +334478,Broadcasting,Broadcasting +329133,Broadcasting,Broadcasting +323432,Broadcasting,Broadcasting +323431,Broadcasting,Broadcasting +323430,Broadcasting,Broadcasting +323429,Broadcasting,Broadcasting +277989,Broadcasting,Broadcasting +237014,Broadcasting,Broadcasting +202771,Broadcasting,Broadcasting +386161,Broadcasting,Broadcasting +386160,Broadcasting,Broadcasting +375454,Broadcasting,Broadcasting +355300,Broadcasting,Broadcasting +355299,Broadcasting,Broadcasting +355298,Broadcasting,Broadcasting +355297,Broadcasting,Broadcasting +355296,Broadcasting,Broadcasting +355292,Broadcasting,Broadcasting +352024,Broadcasting,Broadcasting +352023,Broadcasting,Broadcasting +428529,Broadcasting,Broadcasting +462208,Broadcasting,Broadcasting +544761,Broadcasting,Broadcasting +542743,Broadcasting,Broadcasting +542125,Broadcasting,Broadcasting +542124,Broadcasting,Broadcasting +538896,Broadcasting,Broadcasting +538832,Broadcasting,Broadcasting +530331,Broadcasting,Broadcasting +530330,Broadcasting,Broadcasting +530115,Broadcasting,Broadcasting +530114,Broadcasting,Broadcasting +530113,Broadcasting,Broadcasting +527801,Broadcasting,Broadcasting +525203,Broadcasting,Broadcasting +523791,Broadcasting,Broadcasting +521132,Broadcasting,Broadcasting +520593,Broadcasting,Broadcasting +519542,Broadcasting,Broadcasting +518485,Broadcasting,Broadcasting +517256,Broadcasting,Broadcasting +514844,Broadcasting,Broadcasting +506444,Broadcasting,Broadcasting +503473,Broadcasting,Broadcasting +500011,Broadcasting,Broadcasting +492019,Broadcasting,Broadcasting +489715,Broadcasting,Broadcasting +110016,Aboriginal Affairs,Aboriginal Affairs +87175,Arts and Culture,Arts and Culture +87174,Arts and Culture,Arts and Culture +86494,Science and Technology,Science and Technology +243306,Science and Technology,Science and Technology +158183,Arts and Culture,Arts and Culture +158182,Arts and Culture,Arts and Culture +128574,Arts and Culture,Arts and Culture +115354,Arts and Culture,Arts and Culture +324705,Aboriginal Affairs,Aboriginal Affairs +324700,Aboriginal Affairs,Aboriginal Affairs +85345,Aboriginal Affairs,Aboriginal Affairs +273710,Aboriginal Affairs,Aboriginal Affairs +269505,Aboriginal Affairs,Aboriginal Affairs +349263,Aboriginal Affairs,Aboriginal Affairs +349260,Aboriginal Affairs,Aboriginal Affairs +349259,Aboriginal Affairs,Aboriginal Affairs +349258,Aboriginal Affairs,Aboriginal Affairs +327522,Aboriginal Affairs,Aboriginal Affairs +89814,Broadcasting,Radiodiffusion +318669,Broadcasting,Broadcasting +296489,Broadcasting,Broadcasting +296489,Telecommunications,Telecommunications +240515,Telecommunications,Telecommunications +236930,Telecommunications,Telecommunications +234709,Telecommunications,Telecommunications +207092,Telecommunications,Telecommunications +201967,Telecommunications,Telecommunications +173290,Telecommunications,Telecommunications +335272,Telecommunications,Telecommunications +321884,Telecommunications,Telecommunications +321882,Telecommunications,Telecommunications +312499,Telecommunications,Telecommunications +89074,Aboriginal Affairs,Aboriginal Affairs +157787,Aboriginal Affairs,Aboriginal Affairs +89084,Aboriginal Affairs,Aboriginal Affairs +89083,Aboriginal Affairs,Aboriginal Affairs +89082,Aboriginal Affairs,Aboriginal Affairs +89081,Aboriginal Affairs,Aboriginal Affairs +89080,Aboriginal Affairs,Aboriginal Affairs +89079,Aboriginal Affairs,Aboriginal Affairs +89078,Aboriginal Affairs,Aboriginal Affairs +89076,Aboriginal Affairs,Aboriginal Affairs +334478,Telecommunications,Telecommunications +462208,Telecommunications,Telecommunications +399998,Telecommunications,Telecommunications +193102,Aboriginal Affairs,Aboriginal Affairs +172606,Science and Technology,Science and Technology +167090,Science and Technology,Science and Technology +88224,Science and Technology,Science and Technology +123136,Science and Technology,Science and Technology +123135,Science and Technology,Science and Technology +244418,Science and Technology,Science and Technology +216012,Science and Technology,Science and Technology +172264,Telecommunications,Telecommunications +166548,Telecommunications,Telecommunications +108548,Telecommunications,Telecommunications +89495,Telecommunications,Telecommunications +89494,Telecommunications,Telecommunications +151137,Telecommunications,Telecommunications +133598,Telecommunications,Telecommunications +133597,Telecommunications,Telecommunications +133595,Telecommunications,Telecommunications +122394,Telecommunications,Telecommunications +116460,Telecommunications,Telecommunications +110994,Telecommunications,Telecommunications +176812,Telecommunications,Telecommunications +93468,Arts and Culture,Arts and Culture +88936,Arts and Culture,Arts and Culture +93468,Telecommunications,Telecommunications +385972,Science and Technology,Science and Technology +311002,Science and Technology,Science and Technology +311001,Science and Technology,Science and Technology +107611,Science and Technology,Science and Technology +219047,Science and Technology,Science and Technology +219028,Science and Technology,Science and Technology +207575,Science and Technology,Science and Technology +207571,Science and Technology,Science and Technology +207569,Science and Technology,Science and Technology +203489,Science and Technology,Science and Technology +203488,Science and Technology,Science and Technology +203487,Science and Technology,Science and Technology +203467,Science and Technology,Science and Technology +200452,Science and Technology,Science and Technology +102615,Science and Technology,Science and Technology +94755,Science and Technology,Science and Technology +102617,Science and Technology,Science and Technology +93163,Arts and Culture,Arts and Culture +93160,Arts and Culture,Arts and Culture +93171,Arts and Culture,Arts and Culture +93169,Arts and Culture,Arts and Culture +93168,Arts and Culture,Arts and Culture +93538,Arts and Culture,Arts and Culture +444277,Arts and Culture,Arts and Culture +382795,Arts and Culture,Arts and Culture +373130,Arts and Culture,Arts and Culture +367243,Arts and Culture,Arts and Culture +367242,Arts and Culture,Arts and Culture +366102,Arts and Culture,Arts and Culture +351960,Arts and Culture,Arts and Culture +349780,Arts and Culture,Arts and Culture +95095,Arts and Culture,Arts and Culture +516639,Science and Technology,Science and Technology +128634,Aboriginal Affairs,Aboriginal Affairs +124178,Aboriginal Affairs,Aboriginal Affairs +102722,Aboriginal Affairs,Aboriginal Affairs +381627,Aboriginal Affairs,Aboriginal Affairs +378909,Science and Technology,Science and Technology +455067,Telecommunications,Telecommunications +455058,Telecommunications,Telecommunications +117934,Telecommunications,Telecommunications +114230,Telecommunications,Telecommunications +109839,Telecommunications,Telecommunications +109837,Telecommunications,Telecommunications +109836,Telecommunications,Telecommunications +106414,Telecommunications,Telecommunications +160024,Telecommunications,Telecommunications +160023,Telecommunications,Telecommunications +157418,Telecommunications,Telecommunications +157417,Telecommunications,Telecommunications +157416,Telecommunications,Telecommunications +157414,Telecommunications,Telecommunications +157413,Telecommunications,Telecommunications +157412,Telecommunications,Telecommunications +157411,Telecommunications,Telecommunications +157410,Telecommunications,Telecommunications +157409,Telecommunications,Telecommunications +150557,Telecommunications,Telecommunications +144878,Telecommunications,Telecommunications +144874,Telecommunications,Telecommunications +144861,Telecommunications,Telecommunications +144860,Telecommunications,Telecommunications +144859,Telecommunications,Telecommunications +144858,Telecommunications,Telecommunications +144857,Telecommunications,Telecommunications +144856,Telecommunications,Telecommunications +133476,Telecommunications,Telecommunications +133475,Telecommunications,Telecommunications +133474,Telecommunications,Telecommunications +132762,Telecommunications,Telecommunications +132761,Telecommunications,Telecommunications +132760,Telecommunications,Telecommunications +132759,Telecommunications,Telecommunications +132757,Telecommunications,Telecommunications +132756,Telecommunications,Telecommunications +132754,Telecommunications,Telecommunications +132752,Telecommunications,Telecommunications +219567,Telecommunications,Telecommunications +212518,Telecommunications,Telecommunications +212516,Telecommunications,Telecommunications +212513,Telecommunications,Telecommunications +212510,Telecommunications,Telecommunications +212509,Telecommunications,Telecommunications +207638,Telecommunications,Telecommunications +207632,Telecommunications,Telecommunications +207629,Telecommunications,Telecommunications +203027,Telecommunications,Telecommunications +200037,Telecommunications,Telecommunications +200034,Telecommunications,Telecommunications +194553,Telecommunications,Telecommunications +194551,Telecommunications,Telecommunications +194549,Telecommunications,Telecommunications +194537,Telecommunications,Telecommunications +194535,Telecommunications,Telecommunications +194533,Telecommunications,Telecommunications +194530,Telecommunications,Telecommunications +194527,Telecommunications,Telecommunications +194525,Telecommunications,Telecommunications +194504,Telecommunications,Telecommunications +194465,Telecommunications,Telecommunications +190855,Telecommunications,Telecommunications +190854,Telecommunications,Telecommunications +189616,Telecommunications,Telecommunications +189615,Telecommunications,Telecommunications +189614,Telecommunications,Telecommunications +189613,Telecommunications,Telecommunications +189611,Telecommunications,Telecommunications +189609,Telecommunications,Telecommunications +189604,Telecommunications,Telecommunications +189599,Telecommunications,Telecommunications +189592,Telecommunications,Telecommunications +189587,Telecommunications,Telecommunications +189585,Telecommunications,Telecommunications +189583,Telecommunications,Telecommunications +189580,Telecommunications,Telecommunications +189578,Telecommunications,Telecommunications +189576,Telecommunications,Telecommunications +185566,Telecommunications,Telecommunications +185565,Telecommunications,Telecommunications +185564,Telecommunications,Telecommunications +185563,Telecommunications,Telecommunications +185562,Telecommunications,Telecommunications +185561,Telecommunications,Telecommunications +185560,Telecommunications,Telecommunications +185559,Telecommunications,Telecommunications +185558,Telecommunications,Telecommunications +180224,Telecommunications,Telecommunications +180204,Telecommunications,Telecommunications +175648,Telecommunications,Telecommunications +175647,Telecommunications,Telecommunications +175646,Telecommunications,Telecommunications +175645,Telecommunications,Telecommunications +175644,Telecommunications,Telecommunications +175643,Telecommunications,Telecommunications +175641,Telecommunications,Telecommunications +175638,Telecommunications,Telecommunications +175637,Telecommunications,Telecommunications +172006,Telecommunications,Telecommunications +168988,Telecommunications,Telecommunications +168987,Telecommunications,Telecommunications +168986,Telecommunications,Telecommunications +168985,Telecommunications,Telecommunications +168984,Telecommunications,Telecommunications +166112,Telecommunications,Telecommunications +164193,Telecommunications,Telecommunications +164192,Telecommunications,Telecommunications +164191,Telecommunications,Telecommunications +164190,Telecommunications,Telecommunications +160027,Telecommunications,Telecommunications +322612,Telecommunications,Telecommunications +322611,Telecommunications,Telecommunications +322610,Telecommunications,Telecommunications +322609,Telecommunications,Telecommunications +317726,Telecommunications,Telecommunications +317725,Telecommunications,Telecommunications +317724,Telecommunications,Telecommunications +317723,Telecommunications,Telecommunications +317722,Telecommunications,Telecommunications +317721,Telecommunications,Telecommunications +317720,Telecommunications,Telecommunications +317719,Telecommunications,Telecommunications +317718,Telecommunications,Telecommunications +317717,Telecommunications,Telecommunications +317716,Telecommunications,Telecommunications +316007,Telecommunications,Telecommunications +316005,Telecommunications,Telecommunications +316003,Telecommunications,Telecommunications +315999,Telecommunications,Telecommunications +315998,Telecommunications,Telecommunications +313019,Telecommunications,Telecommunications +313018,Telecommunications,Telecommunications +313017,Telecommunications,Telecommunications +313016,Telecommunications,Telecommunications +313015,Telecommunications,Telecommunications +310459,Telecommunications,Telecommunications +310458,Telecommunications,Telecommunications +310457,Telecommunications,Telecommunications +303512,Telecommunications,Telecommunications +302952,Telecommunications,Telecommunications +302951,Telecommunications,Telecommunications +302950,Telecommunications,Telecommunications +302949,Telecommunications,Telecommunications +302929,Telecommunications,Telecommunications +302852,Telecommunications,Telecommunications +295988,Telecommunications,Telecommunications +295986,Telecommunications,Telecommunications +295985,Telecommunications,Telecommunications +295984,Telecommunications,Telecommunications +295983,Telecommunications,Telecommunications +295982,Telecommunications,Telecommunications +295981,Telecommunications,Telecommunications +295978,Telecommunications,Telecommunications +295976,Telecommunications,Telecommunications +295972,Telecommunications,Telecommunications +295971,Telecommunications,Telecommunications +295970,Telecommunications,Telecommunications +295969,Telecommunications,Telecommunications +292109,Telecommunications,Telecommunications +291949,Telecommunications,Telecommunications +291557,Telecommunications,Telecommunications +291556,Telecommunications,Telecommunications +291555,Telecommunications,Telecommunications +291552,Telecommunications,Telecommunications +291551,Telecommunications,Telecommunications +291549,Telecommunications,Telecommunications +290647,Telecommunications,Telecommunications +290646,Telecommunications,Telecommunications +290645,Telecommunications,Telecommunications +290644,Telecommunications,Telecommunications +290643,Telecommunications,Telecommunications +290640,Telecommunications,Telecommunications +290639,Telecommunications,Telecommunications +290638,Telecommunications,Telecommunications +290637,Telecommunications,Telecommunications +290636,Telecommunications,Telecommunications +290635,Telecommunications,Telecommunications +290634,Telecommunications,Telecommunications +290633,Telecommunications,Telecommunications +290632,Telecommunications,Telecommunications +290631,Telecommunications,Telecommunications +290630,Telecommunications,Telecommunications +290616,Telecommunications,Telecommunications +290615,Telecommunications,Telecommunications +290614,Telecommunications,Telecommunications +290613,Telecommunications,Telecommunications +290612,Telecommunications,Telecommunications +290611,Telecommunications,Telecommunications +290595,Telecommunications,Telecommunications +290594,Telecommunications,Telecommunications +290593,Telecommunications,Telecommunications +290591,Telecommunications,Telecommunications +290590,Telecommunications,Telecommunications +290589,Telecommunications,Telecommunications +290191,Telecommunications,Telecommunications +290190,Telecommunications,Telecommunications +290189,Telecommunications,Telecommunications +290170,Telecommunications,Telecommunications +290169,Telecommunications,Telecommunications +290159,Telecommunications,Telecommunications +290158,Telecommunications,Telecommunications +290157,Telecommunications,Telecommunications +290156,Telecommunications,Telecommunications +290155,Telecommunications,Telecommunications +290154,Telecommunications,Telecommunications +290153,Telecommunications,Telecommunications +290152,Telecommunications,Telecommunications +290151,Telecommunications,Telecommunications +290149,Telecommunications,Telecommunications +289871,Telecommunications,Telecommunications +289870,Telecommunications,Telecommunications +289869,Telecommunications,Telecommunications +289852,Telecommunications,Telecommunications +289851,Telecommunications,Telecommunications +289850,Telecommunications,Telecommunications +289849,Telecommunications,Telecommunications +289834,Telecommunications,Telecommunications +289833,Telecommunications,Telecommunications +289832,Telecommunications,Telecommunications +289830,Telecommunications,Telecommunications +289829,Telecommunications,Telecommunications +286191,Telecommunications,Telecommunications +286189,Telecommunications,Telecommunications +286181,Telecommunications,Telecommunications +286180,Telecommunications,Telecommunications +286179,Telecommunications,Telecommunications +286177,Telecommunications,Telecommunications +286173,Telecommunications,Telecommunications +286172,Telecommunications,Telecommunications +286171,Telecommunications,Telecommunications +286170,Telecommunications,Telecommunications +286169,Telecommunications,Telecommunications +286160,Telecommunications,Telecommunications +286159,Telecommunications,Telecommunications +286158,Telecommunications,Telecommunications +285910,Telecommunications,Telecommunications +285909,Telecommunications,Telecommunications +283296,Telecommunications,Telecommunications +283294,Telecommunications,Telecommunications +283293,Telecommunications,Telecommunications +283291,Telecommunications,Telecommunications +283290,Telecommunications,Telecommunications +283289,Telecommunications,Telecommunications +277781,Telecommunications,Telecommunications +277178,Telecommunications,Telecommunications +276690,Telecommunications,Telecommunications +276682,Telecommunications,Telecommunications +276678,Telecommunications,Telecommunications +276677,Telecommunications,Telecommunications +276675,Telecommunications,Telecommunications +276673,Telecommunications,Telecommunications +276671,Telecommunications,Telecommunications +273412,Telecommunications,Telecommunications +273410,Telecommunications,Telecommunications +273409,Telecommunications,Telecommunications +270729,Telecommunications,Telecommunications +264276,Telecommunications,Telecommunications +264275,Telecommunications,Telecommunications +264274,Telecommunications,Telecommunications +259669,Telecommunications,Telecommunications +251055,Telecommunications,Telecommunications +251054,Telecommunications,Telecommunications +251053,Telecommunications,Telecommunications +245650,Telecommunications,Telecommunications +245649,Telecommunications,Telecommunications +241669,Telecommunications,Telecommunications +241296,Telecommunications,Telecommunications +241288,Telecommunications,Telecommunications +241281,Telecommunications,Telecommunications +241278,Telecommunications,Telecommunications +241276,Telecommunications,Telecommunications +241275,Telecommunications,Telecommunications +241274,Telecommunications,Telecommunications +241272,Telecommunications,Telecommunications +241270,Telecommunications,Telecommunications +241267,Telecommunications,Telecommunications +241266,Telecommunications,Telecommunications +237217,Telecommunications,Telecommunications +237214,Telecommunications,Telecommunications +234009,Telecommunications,Telecommunications +230704,Telecommunications,Telecommunications +230703,Telecommunications,Telecommunications +230702,Telecommunications,Telecommunications +230701,Telecommunications,Telecommunications +228269,Telecommunications,Telecommunications +227315,Telecommunications,Telecommunications +227313,Telecommunications,Telecommunications +223202,Telecommunications,Telecommunications +223198,Telecommunications,Telecommunications +223193,Telecommunications,Telecommunications +455052,Telecommunications,Telecommunications +455048,Telecommunications,Telecommunications +455046,Telecommunications,Telecommunications +455044,Telecommunications,Telecommunications +455043,Telecommunications,Telecommunications +455042,Telecommunications,Telecommunications +451703,Telecommunications,Telecommunications +451701,Telecommunications,Telecommunications +451700,Telecommunications,Telecommunications +451699,Telecommunications,Telecommunications +451698,Telecommunications,Telecommunications +451696,Telecommunications,Telecommunications +451695,Telecommunications,Telecommunications +449889,Telecommunications,Telecommunications +449885,Telecommunications,Telecommunications +449884,Telecommunications,Telecommunications +449882,Telecommunications,Telecommunications +449879,Telecommunications,Telecommunications +448317,Telecommunications,Telecommunications +448313,Telecommunications,Telecommunications +447791,Telecommunications,Telecommunications +447699,Telecommunications,Telecommunications +447692,Telecommunications,Telecommunications +447690,Telecommunications,Telecommunications +447688,Telecommunications,Telecommunications +447686,Telecommunications,Telecommunications +447682,Telecommunications,Telecommunications +447681,Telecommunications,Telecommunications +445452,Telecommunications,Telecommunications +445449,Telecommunications,Telecommunications +445447,Telecommunications,Telecommunications +445446,Telecommunications,Telecommunications +445445,Telecommunications,Telecommunications +445444,Telecommunications,Telecommunications +445442,Telecommunications,Telecommunications +445441,Telecommunications,Telecommunications +445438,Telecommunications,Telecommunications +443211,Telecommunications,Telecommunications +443210,Telecommunications,Telecommunications +443208,Telecommunications,Telecommunications +443207,Telecommunications,Telecommunications +443206,Telecommunications,Telecommunications +443204,Telecommunications,Telecommunications +443203,Telecommunications,Telecommunications +443202,Telecommunications,Telecommunications +443201,Telecommunications,Telecommunications +443200,Telecommunications,Telecommunications +443199,Telecommunications,Telecommunications +443198,Telecommunications,Telecommunications +443197,Telecommunications,Telecommunications +443196,Telecommunications,Telecommunications +442475,Telecommunications,Telecommunications +442472,Telecommunications,Telecommunications +442465,Telecommunications,Telecommunications +442462,Telecommunications,Telecommunications +442461,Telecommunications,Telecommunications +438957,Telecommunications,Telecommunications +438952,Telecommunications,Telecommunications +437792,Telecommunications,Telecommunications +437791,Telecommunications,Telecommunications +437790,Telecommunications,Telecommunications +437787,Telecommunications,Telecommunications +437786,Telecommunications,Telecommunications +436083,Telecommunications,Telecommunications +436082,Telecommunications,Telecommunications +436080,Telecommunications,Telecommunications +433165,Telecommunications,Telecommunications +433162,Telecommunications,Telecommunications +432002,Telecommunications,Telecommunications +432001,Telecommunications,Telecommunications +432000,Telecommunications,Telecommunications +429651,Telecommunications,Telecommunications +429650,Telecommunications,Telecommunications +429649,Telecommunications,Telecommunications +429648,Telecommunications,Telecommunications +425996,Telecommunications,Telecommunications +425994,Telecommunications,Telecommunications +425992,Telecommunications,Telecommunications +425991,Telecommunications,Telecommunications +424066,Telecommunications,Telecommunications +424061,Telecommunications,Telecommunications +424057,Telecommunications,Telecommunications +421605,Telecommunications,Telecommunications +421602,Telecommunications,Telecommunications +421600,Telecommunications,Telecommunications +421599,Telecommunications,Telecommunications +421598,Telecommunications,Telecommunications +419827,Telecommunications,Telecommunications +419825,Telecommunications,Telecommunications +419823,Telecommunications,Telecommunications +419807,Telecommunications,Telecommunications +419806,Telecommunications,Telecommunications +419802,Telecommunications,Telecommunications +419800,Telecommunications,Telecommunications +419799,Telecommunications,Telecommunications +419798,Telecommunications,Telecommunications +419797,Telecommunications,Telecommunications +419795,Telecommunications,Telecommunications +419785,Telecommunications,Telecommunications +419784,Telecommunications,Telecommunications +419783,Telecommunications,Telecommunications +419781,Telecommunications,Telecommunications +419780,Telecommunications,Telecommunications +419779,Telecommunications,Telecommunications +419778,Telecommunications,Telecommunications +419776,Telecommunications,Telecommunications +417549,Telecommunications,Telecommunications +417548,Telecommunications,Telecommunications +417547,Telecommunications,Telecommunications +417497,Telecommunications,Telecommunications +416394,Telecommunications,Telecommunications +416360,Telecommunications,Telecommunications +416227,Telecommunications,Telecommunications +416225,Telecommunications,Telecommunications +416224,Telecommunications,Telecommunications +416222,Telecommunications,Telecommunications +412671,Telecommunications,Telecommunications +412658,Telecommunications,Telecommunications +412644,Telecommunications,Telecommunications +412332,Telecommunications,Telecommunications +412319,Telecommunications,Telecommunications +412314,Telecommunications,Telecommunications +412189,Telecommunications,Telecommunications +410838,Telecommunications,Telecommunications +410267,Telecommunications,Telecommunications +409411,Telecommunications,Telecommunications +409409,Telecommunications,Telecommunications +408675,Telecommunications,Telecommunications +408408,Telecommunications,Telecommunications +408397,Telecommunications,Telecommunications +408272,Telecommunications,Telecommunications +407888,Telecommunications,Telecommunications +407887,Telecommunications,Telecommunications +407886,Telecommunications,Telecommunications +407884,Telecommunications,Telecommunications +407878,Telecommunications,Telecommunications +407876,Telecommunications,Telecommunications +407002,Telecommunications,Telecommunications +406791,Telecommunications,Telecommunications +406691,Telecommunications,Telecommunications +406689,Telecommunications,Telecommunications +406688,Telecommunications,Telecommunications +406687,Telecommunications,Telecommunications +406682,Telecommunications,Telecommunications +406681,Telecommunications,Telecommunications +406010,Telecommunications,Telecommunications +405116,Telecommunications,Telecommunications +405115,Telecommunications,Telecommunications +405111,Telecommunications,Telecommunications +405110,Telecommunications,Telecommunications +405109,Telecommunications,Telecommunications +405108,Telecommunications,Telecommunications +405049,Telecommunications,Telecommunications +404576,Telecommunications,Telecommunications +404154,Telecommunications,Telecommunications +404152,Telecommunications,Telecommunications +403155,Telecommunications,Telecommunications +403120,Telecommunications,Telecommunications +403117,Telecommunications,Telecommunications +403108,Telecommunications,Telecommunications +402056,Telecommunications,Telecommunications +402054,Telecommunications,Telecommunications +400268,Telecommunications,Telecommunications +400267,Telecommunications,Telecommunications +400265,Telecommunications,Telecommunications +398185,Telecommunications,Telecommunications +398170,Telecommunications,Telecommunications +398169,Telecommunications,Telecommunications +398167,Telecommunications,Telecommunications +393340,Telecommunications,Telecommunications +393339,Telecommunications,Telecommunications +393336,Telecommunications,Telecommunications +392005,Telecommunications,Telecommunications +391911,Telecommunications,Telecommunications +391910,Telecommunications,Telecommunications +391263,Telecommunications,Telecommunications +391260,Telecommunications,Telecommunications +391257,Telecommunications,Telecommunications +391031,Telecommunications,Telecommunications +390128,Telecommunications,Telecommunications +387725,Telecommunications,Telecommunications +386752,Telecommunications,Telecommunications +385933,Telecommunications,Telecommunications +383533,Telecommunications,Telecommunications +379382,Telecommunications,Telecommunications +379375,Telecommunications,Telecommunications +379360,Telecommunications,Telecommunications +379341,Telecommunications,Telecommunications +376788,Telecommunications,Telecommunications +376785,Telecommunications,Telecommunications +376783,Telecommunications,Telecommunications +376782,Telecommunications,Telecommunications +376781,Telecommunications,Telecommunications +376780,Telecommunications,Telecommunications +376779,Telecommunications,Telecommunications +376777,Telecommunications,Telecommunications +376775,Telecommunications,Telecommunications +376774,Telecommunications,Telecommunications +376773,Telecommunications,Telecommunications +376772,Telecommunications,Telecommunications +374899,Telecommunications,Telecommunications +374897,Telecommunications,Telecommunications +371960,Telecommunications,Telecommunications +371958,Telecommunications,Telecommunications +371956,Telecommunications,Telecommunications +371953,Telecommunications,Telecommunications +371951,Telecommunications,Telecommunications +371949,Telecommunications,Telecommunications +371947,Telecommunications,Telecommunications +371930,Telecommunications,Telecommunications +371926,Telecommunications,Telecommunications +371924,Telecommunications,Telecommunications +371919,Telecommunications,Telecommunications +371914,Telecommunications,Telecommunications +371913,Telecommunications,Telecommunications +371912,Telecommunications,Telecommunications +371910,Telecommunications,Telecommunications +371909,Telecommunications,Telecommunications +371904,Telecommunications,Telecommunications +371898,Telecommunications,Telecommunications +371894,Telecommunications,Telecommunications +371892,Telecommunications,Telecommunications +371890,Telecommunications,Telecommunications +371886,Telecommunications,Telecommunications +371811,Telecommunications,Telecommunications +371809,Telecommunications,Telecommunications +369520,Telecommunications,Telecommunications +369519,Telecommunications,Telecommunications +369518,Telecommunications,Telecommunications +369517,Telecommunications,Telecommunications +366691,Telecommunications,Telecommunications +366690,Telecommunications,Telecommunications +366689,Telecommunications,Telecommunications +366688,Telecommunications,Telecommunications +366687,Telecommunications,Telecommunications +366686,Telecommunications,Telecommunications +366684,Telecommunications,Telecommunications +365326,Telecommunications,Telecommunications +365325,Telecommunications,Telecommunications +361304,Telecommunications,Telecommunications +361303,Telecommunications,Telecommunications +361302,Telecommunications,Telecommunications +360122,Telecommunications,Telecommunications +358272,Telecommunications,Telecommunications +358271,Telecommunications,Telecommunications +358270,Telecommunications,Telecommunications +358269,Telecommunications,Telecommunications +358267,Telecommunications,Telecommunications +358265,Telecommunications,Telecommunications +358264,Telecommunications,Telecommunications +356144,Telecommunications,Telecommunications +356143,Telecommunications,Telecommunications +356142,Telecommunications,Telecommunications +356141,Telecommunications,Telecommunications +356140,Telecommunications,Telecommunications +354053,Telecommunications,Telecommunications +354052,Telecommunications,Telecommunications +352599,Telecommunications,Telecommunications +350404,Telecommunications,Telecommunications +350403,Telecommunications,Telecommunications +350400,Telecommunications,Telecommunications +350399,Telecommunications,Telecommunications +350396,Telecommunications,Telecommunications +350395,Telecommunications,Telecommunications +350390,Telecommunications,Telecommunications +350389,Telecommunications,Telecommunications +350388,Telecommunications,Telecommunications +349324,Telecommunications,Telecommunications +347423,Telecommunications,Telecommunications +347420,Telecommunications,Telecommunications +347419,Telecommunications,Telecommunications +347418,Telecommunications,Telecommunications +347417,Telecommunications,Telecommunications +342266,Telecommunications,Telecommunications +341597,Telecommunications,Telecommunications +341592,Telecommunications,Telecommunications +341591,Telecommunications,Telecommunications +341585,Telecommunications,Telecommunications +341580,Telecommunications,Telecommunications +341578,Telecommunications,Telecommunications +341574,Telecommunications,Telecommunications +341573,Telecommunications,Telecommunications +341566,Telecommunications,Telecommunications +337306,Telecommunications,Telecommunications +337258,Telecommunications,Telecommunications +337256,Telecommunications,Telecommunications +337254,Telecommunications,Telecommunications +337249,Telecommunications,Telecommunications +335401,Telecommunications,Telecommunications +335398,Telecommunications,Telecommunications +335392,Telecommunications,Telecommunications +335389,Telecommunications,Telecommunications +335346,Telecommunications,Telecommunications +335344,Telecommunications,Telecommunications +335342,Telecommunications,Telecommunications +335338,Telecommunications,Telecommunications +335336,Telecommunications,Telecommunications +335334,Telecommunications,Telecommunications +335333,Telecommunications,Telecommunications +335330,Telecommunications,Telecommunications +335329,Telecommunications,Telecommunications +335326,Telecommunications,Telecommunications +335325,Telecommunications,Telecommunications +335324,Telecommunications,Telecommunications +335323,Telecommunications,Telecommunications +335320,Telecommunications,Telecommunications +333802,Telecommunications,Telecommunications +333801,Telecommunications,Telecommunications +333800,Telecommunications,Telecommunications +333799,Telecommunications,Telecommunications +333798,Telecommunications,Telecommunications +330113,Telecommunications,Telecommunications +330110,Telecommunications,Telecommunications +330108,Telecommunications,Telecommunications +330105,Telecommunications,Telecommunications +325779,Telecommunications,Telecommunications +325778,Telecommunications,Telecommunications +325776,Telecommunications,Telecommunications +325775,Telecommunications,Telecommunications +325774,Telecommunications,Telecommunications +325773,Telecommunications,Telecommunications +325772,Telecommunications,Telecommunications +325771,Telecommunications,Telecommunications +325169,Telecommunications,Telecommunications +324909,Telecommunications,Telecommunications +324908,Telecommunications,Telecommunications +324905,Telecommunications,Telecommunications +324903,Telecommunications,Telecommunications +324895,Telecommunications,Telecommunications +324894,Telecommunications,Telecommunications +324893,Telecommunications,Telecommunications +544319,Telecommunications,Telecommunications +544318,Telecommunications,Telecommunications +544317,Telecommunications,Telecommunications +544187,Telecommunications,Telecommunications +544186,Telecommunications,Telecommunications +544185,Telecommunications,Telecommunications +544181,Telecommunications,Telecommunications +544180,Telecommunications,Telecommunications +544179,Telecommunications,Telecommunications +544177,Telecommunications,Telecommunications +542052,Telecommunications,Telecommunications +542049,Telecommunications,Telecommunications +542039,Telecommunications,Telecommunications +542034,Telecommunications,Telecommunications +542033,Telecommunications,Telecommunications +540124,Telecommunications,Telecommunications +540059,Telecommunications,Telecommunications +540058,Telecommunications,Telecommunications +538478,Telecommunications,Telecommunications +538476,Telecommunications,Telecommunications +538473,Telecommunications,Telecommunications +538469,Telecommunications,Telecommunications +538468,Telecommunications,Telecommunications +536075,Telecommunications,Telecommunications +536074,Telecommunications,Telecommunications +536073,Telecommunications,Telecommunications +536072,Telecommunications,Telecommunications +535459,Telecommunications,Telecommunications +535458,Telecommunications,Telecommunications +535456,Telecommunications,Telecommunications +535438,Telecommunications,Telecommunications +535417,Telecommunications,Telecommunications +535414,Telecommunications,Telecommunications +535412,Telecommunications,Telecommunications +535408,Telecommunications,Telecommunications +532158,Telecommunications,Telecommunications +532156,Telecommunications,Telecommunications +532155,Telecommunications,Telecommunications +532154,Telecommunications,Telecommunications +532152,Telecommunications,Telecommunications +532151,Telecommunications,Telecommunications +532150,Telecommunications,Telecommunications +529792,Telecommunications,Telecommunications +529764,Telecommunications,Telecommunications +529763,Telecommunications,Telecommunications +529762,Telecommunications,Telecommunications +529761,Telecommunications,Telecommunications +529760,Telecommunications,Telecommunications +529759,Telecommunications,Telecommunications +529758,Telecommunications,Telecommunications +529757,Telecommunications,Telecommunications +529756,Telecommunications,Telecommunications +529755,Telecommunications,Telecommunications +529754,Telecommunications,Telecommunications +529753,Telecommunications,Telecommunications +529752,Telecommunications,Telecommunications +529751,Telecommunications,Telecommunications +529750,Telecommunications,Telecommunications +529749,Telecommunications,Telecommunications +529748,Telecommunications,Telecommunications +529747,Telecommunications,Telecommunications +526423,Telecommunications,Telecommunications +526419,Telecommunications,Telecommunications +526417,Telecommunications,Telecommunications +526416,Telecommunications,Telecommunications +526410,Telecommunications,Telecommunications +526407,Telecommunications,Telecommunications +526404,Telecommunications,Telecommunications +526403,Telecommunications,Telecommunications +526400,Telecommunications,Telecommunications +523123,Telecommunications,Telecommunications +523122,Telecommunications,Telecommunications +523120,Telecommunications,Telecommunications +523112,Telecommunications,Telecommunications +523083,Telecommunications,Telecommunications +523082,Telecommunications,Telecommunications +523072,Telecommunications,Telecommunications +523071,Telecommunications,Telecommunications +523062,Telecommunications,Telecommunications +523053,Telecommunications,Telecommunications +523051,Telecommunications,Telecommunications +523048,Telecommunications,Telecommunications +520339,Telecommunications,Telecommunications +520337,Telecommunications,Telecommunications +520336,Telecommunications,Telecommunications +520175,Telecommunications,Telecommunications +520173,Telecommunications,Telecommunications +520171,Telecommunications,Telecommunications +520165,Telecommunications,Telecommunications +520162,Telecommunications,Telecommunications +520161,Telecommunications,Telecommunications +518341,Telecommunications,Telecommunications +518339,Telecommunications,Telecommunications +518338,Telecommunications,Telecommunications +518336,Telecommunications,Telecommunications +518335,Telecommunications,Telecommunications +518334,Telecommunications,Telecommunications +518332,Telecommunications,Telecommunications +518331,Telecommunications,Telecommunications +518330,Telecommunications,Telecommunications +515936,Telecommunications,Telecommunications +515935,Telecommunications,Telecommunications +515934,Telecommunications,Telecommunications +515933,Telecommunications,Telecommunications +515932,Telecommunications,Telecommunications +515931,Telecommunications,Telecommunications +515925,Telecommunications,Telecommunications +514781,Telecommunications,Telecommunications +514779,Telecommunications,Telecommunications +514778,Telecommunications,Telecommunications +514775,Telecommunications,Telecommunications +514229,Telecommunications,Telecommunications +514225,Telecommunications,Telecommunications +514224,Telecommunications,Telecommunications +514223,Telecommunications,Telecommunications +514222,Telecommunications,Telecommunications +514221,Telecommunications,Telecommunications +514220,Telecommunications,Telecommunications +514219,Telecommunications,Telecommunications +513427,Telecommunications,Telecommunications +513426,Telecommunications,Telecommunications +513425,Telecommunications,Telecommunications +513424,Telecommunications,Telecommunications +513423,Telecommunications,Telecommunications +513422,Telecommunications,Telecommunications +513421,Telecommunications,Telecommunications +513420,Telecommunications,Telecommunications +513419,Telecommunications,Telecommunications +513418,Telecommunications,Telecommunications +513416,Telecommunications,Telecommunications +513415,Telecommunications,Telecommunications +513414,Telecommunications,Telecommunications +513413,Telecommunications,Telecommunications +513412,Telecommunications,Telecommunications +513411,Telecommunications,Telecommunications +511529,Telecommunications,Telecommunications +511528,Telecommunications,Telecommunications +511527,Telecommunications,Telecommunications +511526,Telecommunications,Telecommunications +511525,Telecommunications,Telecommunications +511524,Telecommunications,Telecommunications +511523,Telecommunications,Telecommunications +511522,Telecommunications,Telecommunications +511521,Telecommunications,Telecommunications +511520,Telecommunications,Telecommunications +511519,Telecommunications,Telecommunications +511518,Telecommunications,Telecommunications +511515,Telecommunications,Telecommunications +511511,Telecommunications,Telecommunications +511508,Telecommunications,Telecommunications +508898,Telecommunications,Telecommunications +508896,Telecommunications,Telecommunications +508893,Telecommunications,Telecommunications +508891,Telecommunications,Telecommunications +508889,Telecommunications,Telecommunications +508888,Telecommunications,Telecommunications +508886,Telecommunications,Telecommunications +508884,Telecommunications,Telecommunications +505175,Telecommunications,Telecommunications +505160,Telecommunications,Telecommunications +505157,Telecommunications,Telecommunications +505150,Telecommunications,Telecommunications +503394,Telecommunications,Telecommunications +502095,Telecommunications,Telecommunications +502091,Telecommunications,Telecommunications +502089,Telecommunications,Telecommunications +502086,Telecommunications,Telecommunications +502084,Telecommunications,Telecommunications +502079,Telecommunications,Telecommunications +502078,Telecommunications,Telecommunications +502076,Telecommunications,Telecommunications +502075,Telecommunications,Telecommunications +502074,Telecommunications,Telecommunications +502073,Telecommunications,Telecommunications +502072,Telecommunications,Telecommunications +499346,Telecommunications,Telecommunications +499345,Telecommunications,Telecommunications +499344,Telecommunications,Telecommunications +499342,Telecommunications,Telecommunications +499339,Telecommunications,Telecommunications +499337,Telecommunications,Telecommunications +499335,Telecommunications,Telecommunications +499296,Telecommunications,Telecommunications +499285,Telecommunications,Telecommunications +499279,Telecommunications,Telecommunications +499274,Telecommunications,Telecommunications +499271,Telecommunications,Telecommunications +495990,Telecommunications,Telecommunications +495989,Telecommunications,Telecommunications +495988,Telecommunications,Telecommunications +495987,Telecommunications,Telecommunications +493702,Telecommunications,Telecommunications +493698,Telecommunications,Telecommunications +493693,Telecommunications,Telecommunications +493691,Telecommunications,Telecommunications +493688,Telecommunications,Telecommunications +493685,Telecommunications,Telecommunications +493682,Telecommunications,Telecommunications +492236,Telecommunications,Telecommunications +491111,Telecommunications,Telecommunications +491108,Telecommunications,Telecommunications +491107,Telecommunications,Telecommunications +491104,Telecommunications,Telecommunications +491099,Telecommunications,Telecommunications +491098,Telecommunications,Telecommunications +491095,Telecommunications,Telecommunications +491092,Telecommunications,Telecommunications +488129,Telecommunications,Telecommunications +488128,Telecommunications,Telecommunications +488123,Telecommunications,Telecommunications +488121,Telecommunications,Telecommunications +488118,Telecommunications,Telecommunications +488117,Telecommunications,Telecommunications +484952,Telecommunications,Telecommunications +484950,Telecommunications,Telecommunications +484949,Telecommunications,Telecommunications +484947,Telecommunications,Telecommunications +484945,Telecommunications,Telecommunications +484935,Telecommunications,Telecommunications +484932,Telecommunications,Telecommunications +482178,Telecommunications,Telecommunications +482147,Telecommunications,Telecommunications +482146,Telecommunications,Telecommunications +482145,Telecommunications,Telecommunications +482143,Telecommunications,Telecommunications +479938,Telecommunications,Telecommunications +479931,Telecommunications,Telecommunications +479929,Telecommunications,Telecommunications +479925,Telecommunications,Telecommunications +479924,Telecommunications,Telecommunications +479922,Telecommunications,Telecommunications +479920,Telecommunications,Telecommunications +476755,Telecommunications,Telecommunications +476754,Telecommunications,Telecommunications +476753,Telecommunications,Telecommunications +475755,Telecommunications,Telecommunications +475747,Telecommunications,Telecommunications +475744,Telecommunications,Telecommunications +475743,Telecommunications,Telecommunications +475739,Telecommunications,Telecommunications +473234,Telecommunications,Telecommunications +473231,Telecommunications,Telecommunications +473227,Telecommunications,Telecommunications +473223,Telecommunications,Telecommunications +470684,Telecommunications,Telecommunications +470681,Telecommunications,Telecommunications +470675,Telecommunications,Telecommunications +470672,Telecommunications,Telecommunications +467766,Telecommunications,Telecommunications +467762,Telecommunications,Telecommunications +467759,Telecommunications,Telecommunications +467753,Telecommunications,Telecommunications +467749,Telecommunications,Telecommunications +467744,Telecommunications,Telecommunications +467741,Telecommunications,Telecommunications +467732,Telecommunications,Telecommunications +467724,Telecommunications,Telecommunications +467720,Telecommunications,Telecommunications +467717,Telecommunications,Telecommunications +467714,Telecommunications,Telecommunications +467711,Telecommunications,Telecommunications +467702,Telecommunications,Telecommunications +467700,Telecommunications,Telecommunications +467699,Telecommunications,Telecommunications +467697,Telecommunications,Telecommunications +467695,Telecommunications,Telecommunications +467693,Telecommunications,Telecommunications +464586,Telecommunications,Telecommunications +464582,Telecommunications,Telecommunications +464579,Telecommunications,Telecommunications +464578,Telecommunications,Telecommunications +464577,Telecommunications,Telecommunications +464575,Telecommunications,Telecommunications +464572,Telecommunications,Telecommunications +464571,Telecommunications,Telecommunications +464570,Telecommunications,Telecommunications +462684,Telecommunications,Telecommunications +462682,Telecommunications,Telecommunications +462029,Telecommunications,Telecommunications +461946,Telecommunications,Telecommunications +461945,Telecommunications,Telecommunications +460954,Telecommunications,Telecommunications +460953,Telecommunications,Telecommunications +460314,Telecommunications,Telecommunications +459726,Telecommunications,Telecommunications +459720,Telecommunications,Telecommunications +459719,Telecommunications,Telecommunications +459718,Telecommunications,Telecommunications +459717,Telecommunications,Telecommunications +458456,Telecommunications,Telecommunications +458455,Telecommunications,Telecommunications +457428,Telecommunications,Telecommunications +457427,Telecommunications,Telecommunications +457426,Telecommunications,Telecommunications +152977,Science and Technology,Science and Technology +423955,Science and Technology,Science and Technology +422516,Science and Technology,Science and Technology +418072,Science and Technology,Science and Technology +418069,Science and Technology,Science and Technology +416996,Science and Technology,Science and Technology +409721,Science and Technology,Science and Technology +404961,Science and Technology,Science and Technology +387970,Science and Technology,Science and Technology +117014,Science and Technology,Sciences et technologies +114005,Science and Technology,Sciences et technologies +463852,Aboriginal Affairs,Aboriginal Affairs +463851,Aboriginal Affairs,Aboriginal Affairs +94896,Aboriginal Affairs,Aboriginal Affairs +146415,Aboriginal Affairs,Aboriginal Affairs +394709,Aboriginal Affairs,Aboriginal Affairs +344547,Science and Technology,Science and Technology +398043,Science and Technology,Science and Technology +124338,Aboriginal Affairs,Aboriginal Affairs +124337,Aboriginal Affairs,Aboriginal Affairs +435458,Aboriginal Affairs,Aboriginal Affairs +419725,Aboriginal Affairs,Aboriginal Affairs +449703,Aboriginal Affairs,Aboriginal Affairs +447598,Aboriginal Affairs,Aboriginal Affairs +447583,Aboriginal Affairs,Aboriginal Affairs +447581,Aboriginal Affairs,Aboriginal Affairs +443757,Aboriginal Affairs,Aboriginal Affairs +443756,Aboriginal Affairs,Aboriginal Affairs +404257,Science and Technology,Science and Technology +401883,Science and Technology,Science and Technology +103895,Science and Technology,Science and Technology +100514,Science and Technology,Science and Technology +100513,Science and Technology,Science and Technology +97618,Science and Technology,Science and Technology +97614,Science and Technology,Science and Technology +175772,Science and Technology,Science and Technology +175771,Science and Technology,Science and Technology +167775,Science and Technology,Science and Technology +149656,Science and Technology,Science and Technology +138634,Science and Technology,Science and Technology +138614,Science and Technology,Science and Technology +135314,Science and Technology,Science and Technology +132687,Science and Technology,Science and Technology +132686,Science and Technology,Science and Technology +132683,Science and Technology,Science and Technology +123737,Science and Technology,Science and Technology +123736,Science and Technology,Science and Technology +123735,Science and Technology,Science and Technology +123734,Science and Technology,Science and Technology +121339,Science and Technology,Science and Technology +121338,Science and Technology,Science and Technology +117759,Science and Technology,Science and Technology +109156,Science and Technology,Science and Technology +334754,Science and Technology,Science and Technology +334752,Science and Technology,Science and Technology +334751,Science and Technology,Science and Technology +334750,Science and Technology,Science and Technology +333509,Science and Technology,Science and Technology +332740,Science and Technology,Science and Technology +332737,Science and Technology,Science and Technology +331646,Science and Technology,Science and Technology +331645,Science and Technology,Science and Technology +331640,Science and Technology,Science and Technology +330221,Science and Technology,Science and Technology +326133,Science and Technology,Science and Technology +326132,Science and Technology,Science and Technology +326131,Science and Technology,Science and Technology +326130,Science and Technology,Science and Technology +326129,Science and Technology,Science and Technology +324849,Science and Technology,Science and Technology +318350,Science and Technology,Science and Technology +318349,Science and Technology,Science and Technology +295829,Science and Technology,Science and Technology +277216,Science and Technology,Science and Technology +277215,Science and Technology,Science and Technology +277214,Science and Technology,Science and Technology +277212,Science and Technology,Science and Technology +277210,Science and Technology,Science and Technology +258289,Science and Technology,Science and Technology +233394,Science and Technology,Science and Technology +233391,Science and Technology,Science and Technology +225187,Science and Technology,Science and Technology +211367,Science and Technology,Science and Technology +398389,Science and Technology,Science and Technology +397703,Science and Technology,Science and Technology +394540,Science and Technology,Science and Technology +394538,Science and Technology,Science and Technology +392982,Science and Technology,Science and Technology +392975,Science and Technology,Science and Technology +389386,Science and Technology,Science and Technology +389385,Science and Technology,Science and Technology +389384,Science and Technology,Science and Technology +389383,Science and Technology,Science and Technology +389382,Science and Technology,Science and Technology +388664,Science and Technology,Science and Technology +384069,Science and Technology,Science and Technology +383253,Science and Technology,Science and Technology +382839,Science and Technology,Science and Technology +380233,Science and Technology,Science and Technology +380118,Science and Technology,Science and Technology +377799,Science and Technology,Science and Technology +377798,Science and Technology,Science and Technology +377495,Science and Technology,Science and Technology +375326,Science and Technology,Science and Technology +374523,Science and Technology,Science and Technology +373426,Science and Technology,Science and Technology +373425,Science and Technology,Science and Technology +373422,Science and Technology,Science and Technology +373419,Science and Technology,Science and Technology +373417,Science and Technology,Science and Technology +373403,Science and Technology,Science and Technology +373402,Science and Technology,Science and Technology +371537,Science and Technology,Science and Technology +368665,Science and Technology,Science and Technology +367943,Science and Technology,Science and Technology +367942,Science and Technology,Science and Technology +366346,Science and Technology,Science and Technology +364423,Science and Technology,Science and Technology +364422,Science and Technology,Science and Technology +364183,Science and Technology,Science and Technology +362723,Science and Technology,Science and Technology +362722,Science and Technology,Science and Technology +360013,Science and Technology,Science and Technology +352660,Science and Technology,Science and Technology +350484,Science and Technology,Science and Technology +350482,Science and Technology,Science and Technology +350480,Science and Technology,Science and Technology +348621,Science and Technology,Science and Technology +348620,Science and Technology,Science and Technology +348619,Science and Technology,Science and Technology +348618,Science and Technology,Science and Technology +348617,Science and Technology,Science and Technology +348616,Science and Technology,Science and Technology +348615,Science and Technology,Science and Technology +348614,Science and Technology,Science and Technology +344741,Science and Technology,Science and Technology +344740,Science and Technology,Science and Technology +344739,Science and Technology,Science and Technology +344737,Science and Technology,Science and Technology +340048,Science and Technology,Science and Technology +340047,Science and Technology,Science and Technology +340046,Science and Technology,Science and Technology +340045,Science and Technology,Science and Technology +340044,Science and Technology,Science and Technology +340043,Science and Technology,Science and Technology +340042,Science and Technology,Science and Technology +340041,Science and Technology,Science and Technology +340040,Science and Technology,Science and Technology +340039,Science and Technology,Science and Technology +541020,Science and Technology,Science and Technology +541019,Science and Technology,Science and Technology +541018,Science and Technology,Science and Technology +530274,Science and Technology,Science and Technology +528323,Science and Technology,Science and Technology +525190,Science and Technology,Science and Technology +524524,Science and Technology,Science and Technology +524521,Science and Technology,Science and Technology +521029,Science and Technology,Science and Technology +521027,Science and Technology,Science and Technology +521026,Science and Technology,Science and Technology +521025,Science and Technology,Science and Technology +521024,Science and Technology,Science and Technology +521023,Science and Technology,Science and Technology +521022,Science and Technology,Science and Technology +521021,Science and Technology,Science and Technology +521020,Science and Technology,Science and Technology +521019,Science and Technology,Science and Technology +521017,Science and Technology,Science and Technology +516973,Science and Technology,Science and Technology +516972,Science and Technology,Science and Technology +515376,Science and Technology,Science and Technology +514475,Science and Technology,Science and Technology +513739,Science and Technology,Science and Technology +513738,Science and Technology,Science and Technology +512259,Science and Technology,Science and Technology +509631,Science and Technology,Science and Technology +503638,Science and Technology,Science and Technology +500486,Science and Technology,Science and Technology +492252,Science and Technology,Science and Technology +492251,Science and Technology,Science and Technology +488903,Science and Technology,Science and Technology +485708,Science and Technology,Science and Technology +485707,Science and Technology,Science and Technology +483841,Science and Technology,Science and Technology +483527,Science and Technology,Science and Technology +461319,Science and Technology,Science and Technology +461240,Science and Technology,Science and Technology +456549,Science and Technology,Science and Technology +451276,Science and Technology,Science and Technology +448960,Science and Technology,Science and Technology +448958,Science and Technology,Science and Technology +448828,Science and Technology,Science and Technology +448826,Science and Technology,Science and Technology +448504,Science and Technology,Science and Technology +448337,Science and Technology,Science and Technology +448336,Science and Technology,Science and Technology +443110,Science and Technology,Science and Technology +442071,Science and Technology,Science and Technology +436981,Science and Technology,Science and Technology +436811,Science and Technology,Science and Technology +436808,Science and Technology,Science and Technology +435071,Science and Technology,Science and Technology +434685,Science and Technology,Science and Technology +434684,Science and Technology,Science and Technology +434683,Science and Technology,Science and Technology +434682,Science and Technology,Science and Technology +434681,Science and Technology,Science and Technology +434680,Science and Technology,Science and Technology +434679,Science and Technology,Science and Technology +434678,Science and Technology,Science and Technology +434677,Science and Technology,Science and Technology +434676,Science and Technology,Science and Technology +434675,Science and Technology,Science and Technology +434674,Science and Technology,Science and Technology +434673,Science and Technology,Science and Technology +434672,Science and Technology,Science and Technology +434671,Science and Technology,Science and Technology +434670,Science and Technology,Science and Technology +434669,Science and Technology,Science and Technology +434668,Science and Technology,Science and Technology +434125,Science and Technology,Science and Technology +433113,Science and Technology,Science and Technology +431717,Science and Technology,Science and Technology +429574,Science and Technology,Science and Technology +428231,Science and Technology,Science and Technology +428230,Science and Technology,Science and Technology +428228,Science and Technology,Science and Technology +423741,Science and Technology,Science and Technology +420772,Science and Technology,Science and Technology +419208,Science and Technology,Science and Technology +418754,Science and Technology,Science and Technology +417297,Science and Technology,Science and Technology +415796,Science and Technology,Science and Technology +414409,Science and Technology,Science and Technology +413935,Science and Technology,Science and Technology +413934,Science and Technology,Science and Technology +413274,Science and Technology,Science and Technology +408337,Science and Technology,Science and Technology +408336,Science and Technology,Science and Technology +405642,Science and Technology,Science and Technology +412770,Science and Technology,Science and Technology +409127,Science and Technology,Science and Technology +193539,Science and Technology,Science and Technology +193538,Science and Technology,Science and Technology +193537,Science and Technology,Science and Technology +193536,Science and Technology,Science and Technology +193531,Science and Technology,Science and Technology +161053,Science and Technology,Science and Technology +161052,Science and Technology,Science and Technology +161048,Science and Technology,Science and Technology +161047,Science and Technology,Science and Technology +161046,Science and Technology,Science and Technology +161045,Science and Technology,Science and Technology +161037,Science and Technology,Science and Technology +157600,Science and Technology,Science and Technology +409124,Science and Technology,Science and Technology +409123,Science and Technology,Science and Technology +407789,Science and Technology,Science and Technology +403326,Science and Technology,Science and Technology +399574,Science and Technology,Science and Technology +353467,Science and Technology,Science and Technology +353465,Science and Technology,Science and Technology +353464,Science and Technology,Science and Technology +353461,Science and Technology,Science and Technology +353459,Science and Technology,Science and Technology +353419,Science and Technology,Science and Technology +353417,Science and Technology,Science and Technology +353414,Science and Technology,Science and Technology +342260,Science and Technology,Science and Technology +342258,Science and Technology,Science and Technology +275458,Science and Technology,Science and Technology +252880,Science and Technology,Science and Technology +252879,Science and Technology,Science and Technology +252878,Science and Technology,Science and Technology +252877,Science and Technology,Science and Technology +252872,Science and Technology,Science and Technology +507944,Science and Technology,Science and Technology +501744,Science and Technology,Science and Technology +501740,Science and Technology,Science and Technology +467862,Science and Technology,Science and Technology +467846,Science and Technology,Science and Technology +467664,Science and Technology,Science and Technology +467652,Science and Technology,Science and Technology +467642,Science and Technology,Science and Technology +467570,Science and Technology,Science and Technology +462452,Science and Technology,Science and Technology +454167,Science and Technology,Science and Technology +454166,Science and Technology,Science and Technology +454165,Science and Technology,Science and Technology +418890,Science and Technology,Science and Technology +418888,Science and Technology,Science and Technology +418887,Science and Technology,Science and Technology +415176,Science and Technology,Science and Technology +415174,Science and Technology,Science and Technology +412793,Science and Technology,Science and Technology +316470,Arts and Culture,Arts and Culture +316351,Arts and Culture,Arts and Culture +156569,Arts and Culture,Arts and Culture +156567,Arts and Culture,Arts and Culture +316350,Arts and Culture,Arts and Culture +306929,Arts and Culture,Arts and Culture +306889,Arts and Culture,Arts and Culture +306829,Arts and Culture,Arts and Culture +306814,Arts and Culture,Arts and Culture +303389,Arts and Culture,Arts and Culture +303376,Arts and Culture,Arts and Culture +303372,Arts and Culture,Arts and Culture +273676,Arts and Culture,Arts and Culture +242292,Arts and Culture,Arts and Culture +242291,Arts and Culture,Arts and Culture +242289,Arts and Culture,Arts and Culture +237649,Arts and Culture,Arts and Culture +226191,Arts and Culture,Arts and Culture +226190,Arts and Culture,Arts and Culture +226189,Arts and Culture,Arts and Culture +226188,Arts and Culture,Arts and Culture +226176,Arts and Culture,Arts and Culture +226175,Arts and Culture,Arts and Culture +226174,Arts and Culture,Arts and Culture +226173,Arts and Culture,Arts and Culture +226171,Arts and Culture,Arts and Culture +226170,Arts and Culture,Arts and Culture +226169,Arts and Culture,Arts and Culture +201188,Arts and Culture,Arts and Culture +201186,Arts and Culture,Arts and Culture +201184,Arts and Culture,Arts and Culture +201183,Arts and Culture,Arts and Culture +201182,Arts and Culture,Arts and Culture +201181,Arts and Culture,Arts and Culture +201180,Arts and Culture,Arts and Culture +201178,Arts and Culture,Arts and Culture +201177,Arts and Culture,Arts and Culture +201176,Arts and Culture,Arts and Culture +201175,Arts and Culture,Arts and Culture +201174,Arts and Culture,Arts and Culture +201171,Arts and Culture,Arts and Culture +175831,Arts and Culture,Arts and Culture +175830,Arts and Culture,Arts and Culture +167472,Arts and Culture,Arts and Culture +167471,Arts and Culture,Arts and Culture +167470,Arts and Culture,Arts and Culture +167468,Arts and Culture,Arts and Culture +167467,Arts and Culture,Arts and Culture +373701,Arts and Culture,Arts and Culture +367557,Arts and Culture,Arts and Culture +367556,Arts and Culture,Arts and Culture +367554,Arts and Culture,Arts and Culture +366048,Arts and Culture,Arts and Culture +366047,Arts and Culture,Arts and Culture +366046,Arts and Culture,Arts and Culture +366044,Arts and Culture,Arts and Culture +366043,Arts and Culture,Arts and Culture +366042,Arts and Culture,Arts and Culture +361503,Arts and Culture,Arts and Culture +361502,Arts and Culture,Arts and Culture +360925,Arts and Culture,Arts and Culture +360924,Arts and Culture,Arts and Culture +360923,Arts and Culture,Arts and Culture +360922,Arts and Culture,Arts and Culture +354642,Arts and Culture,Arts and Culture +354641,Arts and Culture,Arts and Culture +354640,Arts and Culture,Arts and Culture +352680,Arts and Culture,Arts and Culture +350298,Arts and Culture,Arts and Culture +349524,Arts and Culture,Arts and Culture +341397,Arts and Culture,Arts and Culture +341393,Arts and Culture,Arts and Culture +341383,Arts and Culture,Arts and Culture +337529,Arts and Culture,Arts and Culture +334320,Arts and Culture,Arts and Culture +325463,Arts and Culture,Arts and Culture +122894,Broadcasting,Broadcasting +380254,Science and Technology,Science and Technology +380253,Science and Technology,Science and Technology +249751,Science and Technology,Science and Technology +450528,Science and Technology,Science and Technology +381791,Science and Technology,Science and Technology +380261,Science and Technology,Science and Technology +380260,Science and Technology,Science and Technology +380259,Science and Technology,Science and Technology +206570,Aboriginal Affairs,Aboriginal Affairs +200466,Aboriginal Affairs,Aboriginal Affairs +161221,Aboriginal Affairs,Aboriginal Affairs +258373,Aboriginal Affairs,Aboriginal Affairs +235131,Aboriginal Affairs,Aboriginal Affairs +233401,Science and Technology,Science and Technology +233396,Science and Technology,Science and Technology +105656,Telecommunications,Telecommunications +101177,Telecommunications,Telecommunications +125094,Arts and Culture,Arts and Culture +356576,Arts and Culture,Arts and Culture +109434,Arts and Culture,Arts and Culture +106015,Arts and Culture,Arts and Culture +106014,Arts and Culture,Arts and Culture +125094,Broadcasting,Broadcasting +207532,Broadcasting,Broadcasting +139434,Broadcasting,Broadcasting +108055,Science and Technology,Science and Technology +108054,Science and Technology,Science and Technology +103623,Science and Technology,Science and Technology +103614,Science and Technology,Science and Technology +100394,Science and Technology,Science and Technology +141783,Science and Technology,Science and Technology +138162,Science and Technology,Science and Technology +138156,Science and Technology,Science and Technology +135709,Science and Technology,Science and Technology +131606,Science and Technology,Science and Technology +101304,Science and Technology,Science and Technology +101299,Science and Technology,Science and Technology +106112,Science and Technology,Science and Technology +106111,Science and Technology,Science and Technology +106110,Science and Technology,Science and Technology +106109,Science and Technology,Science and Technology +113860,Science and Technology,Science and Technology +415478,Science and Technology,Science and Technology +409074,Science and Technology,Science and Technology +124624,Science and Technology,Science and Technology +124621,Science and Technology,Science and Technology +124617,Science and Technology,Science and Technology +124615,Science and Technology,Science and Technology +113738,Science and Technology,Science and Technology +113737,Science and Technology,Science and Technology +109754,Science and Technology,Science and Technology +109751,Science and Technology,Science and Technology +109747,Science and Technology,Science and Technology +180493,Science and Technology,Science and Technology +175665,Science and Technology,Science and Technology +175664,Science and Technology,Science and Technology +175663,Science and Technology,Science and Technology +175662,Science and Technology,Science and Technology +175661,Science and Technology,Science and Technology +171068,Science and Technology,Science and Technology +168945,Science and Technology,Science and Technology +165985,Science and Technology,Science and Technology +165984,Science and Technology,Science and Technology +161554,Science and Technology,Science and Technology +161547,Science and Technology,Science and Technology +161546,Science and Technology,Science and Technology +132975,Science and Technology,Science and Technology +132970,Science and Technology,Science and Technology +132964,Science and Technology,Science and Technology +132961,Science and Technology,Science and Technology +132960,Science and Technology,Science and Technology +128243,Science and Technology,Science and Technology +128239,Science and Technology,Science and Technology +128238,Science and Technology,Science and Technology +128236,Science and Technology,Science and Technology +128234,Science and Technology,Science and Technology +310223,Science and Technology,Science and Technology +310220,Science and Technology,Science and Technology +302295,Science and Technology,Science and Technology +302294,Science and Technology,Science and Technology +302293,Science and Technology,Science and Technology +302292,Science and Technology,Science and Technology +302291,Science and Technology,Science and Technology +302290,Science and Technology,Science and Technology +297116,Science and Technology,Science and Technology +297115,Science and Technology,Science and Technology +297114,Science and Technology,Science and Technology +297113,Science and Technology,Science and Technology +297112,Science and Technology,Science and Technology +297111,Science and Technology,Science and Technology +297110,Science and Technology,Science and Technology +290816,Science and Technology,Science and Technology +290814,Science and Technology,Science and Technology +290813,Science and Technology,Science and Technology +290811,Science and Technology,Science and Technology +290810,Science and Technology,Science and Technology +290809,Science and Technology,Science and Technology +280692,Science and Technology,Science and Technology +280691,Science and Technology,Science and Technology +280690,Science and Technology,Science and Technology +280689,Science and Technology,Science and Technology +276535,Science and Technology,Science and Technology +276532,Science and Technology,Science and Technology +276531,Science and Technology,Science and Technology +276514,Science and Technology,Science and Technology +276512,Science and Technology,Science and Technology +276499,Science and Technology,Science and Technology +262955,Science and Technology,Science and Technology +262954,Science and Technology,Science and Technology +262953,Science and Technology,Science and Technology +262952,Science and Technology,Science and Technology +250691,Science and Technology,Science and Technology +250689,Science and Technology,Science and Technology +241073,Science and Technology,Science and Technology +241070,Science and Technology,Science and Technology +241060,Science and Technology,Science and Technology +241056,Science and Technology,Science and Technology +230428,Science and Technology,Science and Technology +230418,Science and Technology,Science and Technology +227252,Science and Technology,Science and Technology +227249,Science and Technology,Science and Technology +223275,Science and Technology,Science and Technology +218127,Science and Technology,Science and Technology +212105,Science and Technology,Science and Technology +207533,Science and Technology,Science and Technology +207528,Science and Technology,Science and Technology +207527,Science and Technology,Science and Technology +207516,Science and Technology,Science and Technology +207515,Science and Technology,Science and Technology +207506,Science and Technology,Science and Technology +203331,Science and Technology,Science and Technology +200532,Science and Technology,Science and Technology +195046,Science and Technology,Science and Technology +195043,Science and Technology,Science and Technology +189725,Science and Technology,Science and Technology +189705,Science and Technology,Science and Technology +189704,Science and Technology,Science and Technology +180495,Science and Technology,Science and Technology +180494,Science and Technology,Science and Technology +407532,Science and Technology,Science and Technology +400475,Science and Technology,Science and Technology +396861,Science and Technology,Science and Technology +396860,Science and Technology,Science and Technology +394659,Science and Technology,Science and Technology +394658,Science and Technology,Science and Technology +394657,Science and Technology,Science and Technology +392282,Science and Technology,Science and Technology +392281,Science and Technology,Science and Technology +390072,Science and Technology,Science and Technology +384818,Science and Technology,Science and Technology +384812,Science and Technology,Science and Technology +383260,Science and Technology,Science and Technology +382305,Science and Technology,Science and Technology +380377,Science and Technology,Science and Technology +380376,Science and Technology,Science and Technology +379582,Science and Technology,Science and Technology +376696,Science and Technology,Science and Technology +376695,Science and Technology,Science and Technology +376693,Science and Technology,Science and Technology +376689,Science and Technology,Science and Technology +374100,Science and Technology,Science and Technology +373980,Science and Technology,Science and Technology +373979,Science and Technology,Science and Technology +373978,Science and Technology,Science and Technology +373977,Science and Technology,Science and Technology +373976,Science and Technology,Science and Technology +373975,Science and Technology,Science and Technology +373974,Science and Technology,Science and Technology +373970,Science and Technology,Science and Technology +373969,Science and Technology,Science and Technology +373965,Science and Technology,Science and Technology +373959,Science and Technology,Science and Technology +373954,Science and Technology,Science and Technology +373952,Science and Technology,Science and Technology +373950,Science and Technology,Science and Technology +373949,Science and Technology,Science and Technology +373948,Science and Technology,Science and Technology +373947,Science and Technology,Science and Technology +373946,Science and Technology,Science and Technology +373942,Science and Technology,Science and Technology +373912,Science and Technology,Science and Technology +373898,Science and Technology,Science and Technology +373877,Science and Technology,Science and Technology +371746,Science and Technology,Science and Technology +371745,Science and Technology,Science and Technology +371742,Science and Technology,Science and Technology +371738,Science and Technology,Science and Technology +371735,Science and Technology,Science and Technology +371734,Science and Technology,Science and Technology +371730,Science and Technology,Science and Technology +368778,Science and Technology,Science and Technology +368777,Science and Technology,Science and Technology +364865,Science and Technology,Science and Technology +359547,Science and Technology,Science and Technology +355997,Science and Technology,Science and Technology +355992,Science and Technology,Science and Technology +355990,Science and Technology,Science and Technology +350948,Science and Technology,Science and Technology +350947,Science and Technology,Science and Technology +350944,Science and Technology,Science and Technology +344641,Science and Technology,Science and Technology +344640,Science and Technology,Science and Technology +344639,Science and Technology,Science and Technology +344638,Science and Technology,Science and Technology +343537,Science and Technology,Science and Technology +342083,Science and Technology,Science and Technology +342081,Science and Technology,Science and Technology +342080,Science and Technology,Science and Technology +342079,Science and Technology,Science and Technology +342077,Science and Technology,Science and Technology +342019,Science and Technology,Science and Technology +342017,Science and Technology,Science and Technology +342015,Science and Technology,Science and Technology +342014,Science and Technology,Science and Technology +342012,Science and Technology,Science and Technology +342010,Science and Technology,Science and Technology +342002,Science and Technology,Science and Technology +342001,Science and Technology,Science and Technology +336241,Science and Technology,Science and Technology +336240,Science and Technology,Science and Technology +336239,Science and Technology,Science and Technology +336238,Science and Technology,Science and Technology +336237,Science and Technology,Science and Technology +336236,Science and Technology,Science and Technology +336235,Science and Technology,Science and Technology +333575,Science and Technology,Science and Technology +333574,Science and Technology,Science and Technology +333573,Science and Technology,Science and Technology +329893,Science and Technology,Science and Technology +329892,Science and Technology,Science and Technology +329891,Science and Technology,Science and Technology +329890,Science and Technology,Science and Technology +329887,Science and Technology,Science and Technology +319120,Science and Technology,Science and Technology +316045,Science and Technology,Science and Technology +316043,Science and Technology,Science and Technology +316040,Science and Technology,Science and Technology +316035,Science and Technology,Science and Technology +310265,Science and Technology,Science and Technology +310261,Science and Technology,Science and Technology +310260,Science and Technology,Science and Technology +310259,Science and Technology,Science and Technology +310257,Science and Technology,Science and Technology +310256,Science and Technology,Science and Technology +310255,Science and Technology,Science and Technology +310254,Science and Technology,Science and Technology +310253,Science and Technology,Science and Technology +310252,Science and Technology,Science and Technology +310246,Science and Technology,Science and Technology +310243,Science and Technology,Science and Technology +310242,Science and Technology,Science and Technology +310238,Science and Technology,Science and Technology +310225,Science and Technology,Science and Technology +430898,Science and Technology,Science and Technology +417148,Science and Technology,Science and Technology +417147,Science and Technology,Science and Technology +390295,Science and Technology,Science and Technology +390293,Science and Technology,Science and Technology +144995,Science and Technology,Science and Technology +144994,Science and Technology,Science and Technology +144982,Science and Technology,Science and Technology +144981,Science and Technology,Science and Technology +144980,Science and Technology,Science and Technology +144978,Science and Technology,Science and Technology +144958,Science and Technology,Science and Technology +144957,Science and Technology,Science and Technology +144956,Science and Technology,Science and Technology +144955,Science and Technology,Science and Technology +144954,Science and Technology,Science and Technology +127255,Science and Technology,Science and Technology +307289,Science and Technology,Science and Technology +307269,Science and Technology,Science and Technology +307249,Science and Technology,Science and Technology +307229,Science and Technology,Science and Technology +307211,Science and Technology,Science and Technology +307210,Science and Technology,Science and Technology +307209,Science and Technology,Science and Technology +247749,Science and Technology,Science and Technology +247731,Science and Technology,Science and Technology +247730,Science and Technology,Science and Technology +247729,Science and Technology,Science and Technology +247716,Science and Technology,Science and Technology +247714,Science and Technology,Science and Technology +247713,Science and Technology,Science and Technology +247711,Science and Technology,Science and Technology +247710,Science and Technology,Science and Technology +247614,Science and Technology,Science and Technology +247613,Science and Technology,Science and Technology +247612,Science and Technology,Science and Technology +247611,Science and Technology,Science and Technology +247609,Science and Technology,Science and Technology +247608,Science and Technology,Science and Technology +247607,Science and Technology,Science and Technology +247606,Science and Technology,Science and Technology +247605,Science and Technology,Science and Technology +247603,Science and Technology,Science and Technology +247601,Science and Technology,Science and Technology +247600,Science and Technology,Science and Technology +247598,Science and Technology,Science and Technology +247591,Science and Technology,Science and Technology +247589,Science and Technology,Science and Technology +247579,Science and Technology,Science and Technology +247578,Science and Technology,Science and Technology +247576,Science and Technology,Science and Technology +247575,Science and Technology,Science and Technology +247574,Science and Technology,Science and Technology +247573,Science and Technology,Science and Technology +247572,Science and Technology,Science and Technology +247570,Science and Technology,Science and Technology +247569,Science and Technology,Science and Technology +237929,Science and Technology,Science and Technology +228556,Science and Technology,Science and Technology +228555,Science and Technology,Science and Technology +228554,Science and Technology,Science and Technology +228553,Science and Technology,Science and Technology +228552,Science and Technology,Science and Technology +196848,Science and Technology,Science and Technology +196840,Science and Technology,Science and Technology +196837,Science and Technology,Science and Technology +196833,Science and Technology,Science and Technology +196832,Science and Technology,Science and Technology +188484,Science and Technology,Science and Technology +390290,Science and Technology,Science and Technology +390288,Science and Technology,Science and Technology +390287,Science and Technology,Science and Technology +390285,Science and Technology,Science and Technology +390284,Science and Technology,Science and Technology +390282,Science and Technology,Science and Technology +390281,Science and Technology,Science and Technology +390279,Science and Technology,Science and Technology +390276,Science and Technology,Science and Technology +390275,Science and Technology,Science and Technology +390274,Science and Technology,Science and Technology +390273,Science and Technology,Science and Technology +390272,Science and Technology,Science and Technology +390271,Science and Technology,Science and Technology +390269,Science and Technology,Science and Technology +390268,Science and Technology,Science and Technology +390267,Science and Technology,Science and Technology +390266,Science and Technology,Science and Technology +390265,Science and Technology,Science and Technology +390264,Science and Technology,Science and Technology +390261,Science and Technology,Science and Technology +390258,Science and Technology,Science and Technology +390257,Science and Technology,Science and Technology +390253,Science and Technology,Science and Technology +390251,Science and Technology,Science and Technology +390250,Science and Technology,Science and Technology +390248,Science and Technology,Science and Technology +390243,Science and Technology,Science and Technology +390241,Science and Technology,Science and Technology +390240,Science and Technology,Science and Technology +390239,Science and Technology,Science and Technology +390238,Science and Technology,Science and Technology +390234,Science and Technology,Science and Technology +390233,Science and Technology,Science and Technology +390232,Science and Technology,Science and Technology +390230,Science and Technology,Science and Technology +390226,Science and Technology,Science and Technology +390219,Science and Technology,Science and Technology +390216,Science and Technology,Science and Technology +390212,Science and Technology,Science and Technology +390210,Science and Technology,Science and Technology +390209,Science and Technology,Science and Technology +390208,Science and Technology,Science and Technology +390205,Science and Technology,Science and Technology +390204,Science and Technology,Science and Technology +390201,Science and Technology,Science and Technology +390199,Science and Technology,Science and Technology +390197,Science and Technology,Science and Technology +390195,Science and Technology,Science and Technology +390194,Science and Technology,Science and Technology +390193,Science and Technology,Science and Technology +390190,Science and Technology,Science and Technology +390186,Science and Technology,Science and Technology +390185,Science and Technology,Science and Technology +390184,Science and Technology,Science and Technology +390183,Science and Technology,Science and Technology +390181,Science and Technology,Science and Technology +390179,Science and Technology,Science and Technology +390177,Science and Technology,Science and Technology +390176,Science and Technology,Science and Technology +390175,Science and Technology,Science and Technology +390174,Science and Technology,Science and Technology +390173,Science and Technology,Science and Technology +390170,Science and Technology,Science and Technology +390169,Science and Technology,Science and Technology +390168,Science and Technology,Science and Technology +390166,Science and Technology,Science and Technology +390163,Science and Technology,Science and Technology +386624,Science and Technology,Science and Technology +382929,Science and Technology,Science and Technology +371706,Science and Technology,Science and Technology +371704,Science and Technology,Science and Technology +371702,Science and Technology,Science and Technology +371700,Science and Technology,Science and Technology +371691,Science and Technology,Science and Technology +371682,Science and Technology,Science and Technology +371674,Science and Technology,Science and Technology +371668,Science and Technology,Science and Technology +353853,Science and Technology,Science and Technology +340589,Science and Technology,Science and Technology +340547,Science and Technology,Science and Technology +340546,Science and Technology,Science and Technology +340545,Science and Technology,Science and Technology +340538,Science and Technology,Science and Technology +340506,Science and Technology,Science and Technology +340504,Science and Technology,Science and Technology +340503,Science and Technology,Science and Technology +340501,Science and Technology,Science and Technology +340499,Science and Technology,Science and Technology +340497,Science and Technology,Science and Technology +340479,Science and Technology,Science and Technology +340440,Science and Technology,Science and Technology +339818,Science and Technology,Science and Technology +339817,Science and Technology,Science and Technology +339815,Science and Technology,Science and Technology +339814,Science and Technology,Science and Technology +339809,Science and Technology,Science and Technology +322893,Science and Technology,Science and Technology +307650,Science and Technology,Science and Technology +307611,Science and Technology,Science and Technology +307610,Science and Technology,Science and Technology +307609,Science and Technology,Science and Technology +307589,Science and Technology,Science and Technology +307575,Science and Technology,Science and Technology +307574,Science and Technology,Science and Technology +307571,Science and Technology,Science and Technology +307570,Science and Technology,Science and Technology +307569,Science and Technology,Science and Technology +307551,Science and Technology,Science and Technology +307530,Science and Technology,Science and Technology +307529,Science and Technology,Science and Technology +307314,Science and Technology,Science and Technology +307313,Science and Technology,Science and Technology +307312,Science and Technology,Science and Technology +307311,Science and Technology,Science and Technology +307310,Science and Technology,Science and Technology +307293,Science and Technology,Science and Technology +307292,Science and Technology,Science and Technology +307291,Science and Technology,Science and Technology +307290,Science and Technology,Science and Technology +542864,Science and Technology,Science and Technology +540946,Science and Technology,Science and Technology +413922,Science and Technology,Science and Technology +413921,Science and Technology,Science and Technology +408547,Science and Technology,Science and Technology +408546,Science and Technology,Science and Technology +408509,Science and Technology,Science and Technology +408474,Science and Technology,Science and Technology +407770,Science and Technology,Science and Technology +406976,Science and Technology,Science and Technology +406974,Science and Technology,Science and Technology +406973,Science and Technology,Science and Technology +398055,Science and Technology,Science and Technology +397225,Science and Technology,Science and Technology +390638,Science and Technology,Science and Technology +390379,Science and Technology,Science and Technology +390377,Science and Technology,Science and Technology +390374,Science and Technology,Science and Technology +390373,Science and Technology,Science and Technology +390372,Science and Technology,Science and Technology +390370,Science and Technology,Science and Technology +390363,Science and Technology,Science and Technology +390361,Science and Technology,Science and Technology +390357,Science and Technology,Science and Technology +390356,Science and Technology,Science and Technology +390341,Science and Technology,Science and Technology +390339,Science and Technology,Science and Technology +390337,Science and Technology,Science and Technology +390335,Science and Technology,Science and Technology +390329,Science and Technology,Science and Technology +390328,Science and Technology,Science and Technology +390326,Science and Technology,Science and Technology +390324,Science and Technology,Science and Technology +390320,Science and Technology,Science and Technology +390318,Science and Technology,Science and Technology +390315,Science and Technology,Science and Technology +390313,Science and Technology,Science and Technology +390309,Science and Technology,Science and Technology +390304,Science and Technology,Science and Technology +390303,Science and Technology,Science and Technology +390302,Science and Technology,Science and Technology +390299,Science and Technology,Science and Technology +390298,Science and Technology,Science and Technology +107605,Aboriginal Affairs,Aboriginal Affairs +145054,Aboriginal Affairs,Aboriginal Affairs +110617,Aboriginal Affairs,Aboriginal Affairs +107875,Aboriginal Affairs,Aboriginal Affairs +163004,Aboriginal Affairs,Affaires autochtones +160485,Aboriginal Affairs,Affaires autochtones +148205,Aboriginal Affairs,Affaires autochtones +133960,Aboriginal Affairs,Affaires autochtones +133959,Aboriginal Affairs,Affaires autochtones +133957,Aboriginal Affairs,Affaires autochtones +128934,Aboriginal Affairs,Affaires autochtones +128931,Aboriginal Affairs,Affaires autochtones +128925,Aboriginal Affairs,Affaires autochtones +146316,Aboriginal Affairs,Aboriginal Affairs +142115,Aboriginal Affairs,Aboriginal Affairs +110619,Aboriginal Affairs,Aboriginal Affairs +110618,Aboriginal Affairs,Aboriginal Affairs +107615,Aboriginal Affairs,Aboriginal Affairs +107614,Aboriginal Affairs,Aboriginal Affairs +396673,Arts and Culture,Arts et culture +396535,Arts and Culture,Arts et culture +132443,Arts and Culture,Arts et culture +170429,Arts and Culture,Arts et culture +154657,Arts and Culture,Arts et culture +154655,Arts and Culture,Arts et culture +152026,Arts and Culture,Arts et culture +150512,Arts and Culture,Arts et culture +150511,Arts and Culture,Arts et culture +150510,Arts and Culture,Arts et culture +150509,Arts and Culture,Arts et culture +150508,Arts and Culture,Arts et culture +150410,Arts and Culture,Arts et culture +132445,Arts and Culture,Arts et culture +381508,Arts and Culture,Arts et culture +376806,Arts and Culture,Arts et culture +374644,Arts and Culture,Arts et culture +374623,Arts and Culture,Arts et culture +364989,Arts and Culture,Arts et culture +356384,Arts and Culture,Arts et culture +356342,Arts and Culture,Arts et culture +343564,Arts and Culture,Arts et culture +338098,Arts and Culture,Arts et culture +319122,Arts and Culture,Arts et culture +273303,Arts and Culture,Arts et culture +273297,Arts and Culture,Arts et culture +264280,Arts and Culture,Arts et culture +259109,Arts and Culture,Arts et culture +123121,Telecommunications,Telecommunications +117712,Telecommunications,Telecommunications +382190,Arts and Culture,Arts et culture +381509,Arts and Culture,Arts et culture +154668,Arts and Culture,Arts et culture +154666,Arts and Culture,Arts et culture +154653,Arts and Culture,Arts et culture +154652,Arts and Culture,Arts et culture +154651,Arts and Culture,Arts et culture +153656,Arts and Culture,Arts et culture +153655,Arts and Culture,Arts et culture +132447,Arts and Culture,Arts et culture +188742,Arts and Culture,Arts et culture +185531,Arts and Culture,Arts et culture +179704,Arts and Culture,Arts et culture +179684,Arts and Culture,Arts et culture +173665,Arts and Culture,Arts et culture +161707,Arts and Culture,Arts et culture +159385,Arts and Culture,Arts et culture +156904,Arts and Culture,Arts et culture +156902,Arts and Culture,Arts et culture +374650,Arts and Culture,Arts et culture +364991,Arts and Culture,Arts et culture +362166,Arts and Culture,Arts et culture +356388,Arts and Culture,Arts et culture +356343,Arts and Culture,Arts et culture +348798,Arts and Culture,Arts et culture +343561,Arts and Culture,Arts et culture +338100,Arts and Culture,Arts et culture +338096,Arts and Culture,Arts et culture +324654,Arts and Culture,Arts et culture +322154,Arts and Culture,Arts et culture +322152,Arts and Culture,Arts et culture +319135,Arts and Culture,Arts et culture +319128,Arts and Culture,Arts et culture +277578,Arts and Culture,Arts et culture +253849,Arts and Culture,Arts et culture +251369,Arts and Culture,Arts et culture +223032,Arts and Culture,Arts et culture +217272,Arts and Culture,Arts et culture +206968,Arts and Culture,Arts et culture +206967,Arts and Culture,Arts et culture +396541,Arts and Culture,Arts et culture +396538,Arts and Culture,Arts et culture +396448,Arts and Culture,Arts et culture +396446,Arts and Culture,Arts et culture +392573,Arts and Culture,Arts et culture +260734,Science and Technology,Science and Technology +260732,Science and Technology,Science and Technology +148638,Science and Technology,Science and Technology +148637,Science and Technology,Science and Technology +260730,Science and Technology,Science and Technology +260729,Science and Technology,Science and Technology +227956,Science and Technology,Science and Technology +220727,Science and Technology,Science and Technology +220687,Science and Technology,Science and Technology +367027,Science and Technology,Science and Technology +367026,Science and Technology,Science and Technology +367025,Science and Technology,Science and Technology +354714,Science and Technology,Science and Technology +354713,Science and Technology,Science and Technology +345119,Science and Technology,Science and Technology +345098,Science and Technology,Science and Technology +316497,Science and Technology,Science and Technology +316496,Science and Technology,Science and Technology +316495,Science and Technology,Science and Technology +316494,Science and Technology,Science and Technology +316493,Science and Technology,Science and Technology +260749,Science and Technology,Science and Technology +450677,Aboriginal Affairs,Aboriginal Affairs +528821,Aboriginal Affairs,Aboriginal Affairs +450840,Aboriginal Affairs,Aboriginal Affairs +450839,Aboriginal Affairs,Aboriginal Affairs +450838,Aboriginal Affairs,Aboriginal Affairs +450837,Aboriginal Affairs,Aboriginal Affairs +450836,Aboriginal Affairs,Aboriginal Affairs +450835,Aboriginal Affairs,Aboriginal Affairs +450834,Aboriginal Affairs,Aboriginal Affairs +450833,Aboriginal Affairs,Aboriginal Affairs +450831,Aboriginal Affairs,Aboriginal Affairs +450829,Aboriginal Affairs,Aboriginal Affairs +450827,Aboriginal Affairs,Aboriginal Affairs +450826,Aboriginal Affairs,Aboriginal Affairs +450825,Aboriginal Affairs,Aboriginal Affairs +450824,Aboriginal Affairs,Aboriginal Affairs +450823,Aboriginal Affairs,Aboriginal Affairs +450822,Aboriginal Affairs,Aboriginal Affairs +450821,Aboriginal Affairs,Aboriginal Affairs +450820,Aboriginal Affairs,Aboriginal Affairs +450819,Aboriginal Affairs,Aboriginal Affairs +450817,Aboriginal Affairs,Aboriginal Affairs +450816,Aboriginal Affairs,Aboriginal Affairs +450815,Aboriginal Affairs,Aboriginal Affairs +450814,Aboriginal Affairs,Aboriginal Affairs +450813,Aboriginal Affairs,Aboriginal Affairs +450812,Aboriginal Affairs,Aboriginal Affairs +450811,Aboriginal Affairs,Aboriginal Affairs +450809,Aboriginal Affairs,Aboriginal Affairs +450808,Aboriginal Affairs,Aboriginal Affairs +450800,Aboriginal Affairs,Aboriginal Affairs +450799,Aboriginal Affairs,Aboriginal Affairs +450798,Aboriginal Affairs,Aboriginal Affairs +450797,Aboriginal Affairs,Aboriginal Affairs +450796,Aboriginal Affairs,Aboriginal Affairs +450794,Aboriginal Affairs,Aboriginal Affairs +450792,Aboriginal Affairs,Aboriginal Affairs +450791,Aboriginal Affairs,Aboriginal Affairs +450790,Aboriginal Affairs,Aboriginal Affairs +450789,Aboriginal Affairs,Aboriginal Affairs +450788,Aboriginal Affairs,Aboriginal Affairs +450787,Aboriginal Affairs,Aboriginal Affairs +450786,Aboriginal Affairs,Aboriginal Affairs +450780,Aboriginal Affairs,Aboriginal Affairs +450779,Aboriginal Affairs,Aboriginal Affairs +450778,Aboriginal Affairs,Aboriginal Affairs +450777,Aboriginal Affairs,Aboriginal Affairs +450776,Aboriginal Affairs,Aboriginal Affairs +450771,Aboriginal Affairs,Aboriginal Affairs +450770,Aboriginal Affairs,Aboriginal Affairs +450764,Aboriginal Affairs,Aboriginal Affairs +450763,Aboriginal Affairs,Aboriginal Affairs +450761,Aboriginal Affairs,Aboriginal Affairs +450758,Aboriginal Affairs,Aboriginal Affairs +450738,Aboriginal Affairs,Aboriginal Affairs +450736,Aboriginal Affairs,Aboriginal Affairs +450735,Aboriginal Affairs,Aboriginal Affairs +450734,Aboriginal Affairs,Aboriginal Affairs +450730,Aboriginal Affairs,Aboriginal Affairs +450727,Aboriginal Affairs,Aboriginal Affairs +450726,Aboriginal Affairs,Aboriginal Affairs +450725,Aboriginal Affairs,Aboriginal Affairs +450724,Aboriginal Affairs,Aboriginal Affairs +450723,Aboriginal Affairs,Aboriginal Affairs +450722,Aboriginal Affairs,Aboriginal Affairs +450721,Aboriginal Affairs,Aboriginal Affairs +450720,Aboriginal Affairs,Aboriginal Affairs +450719,Aboriginal Affairs,Aboriginal Affairs +450716,Aboriginal Affairs,Aboriginal Affairs +450715,Aboriginal Affairs,Aboriginal Affairs +450714,Aboriginal Affairs,Aboriginal Affairs +450697,Aboriginal Affairs,Aboriginal Affairs +450696,Aboriginal Affairs,Aboriginal Affairs +450694,Aboriginal Affairs,Aboriginal Affairs +450692,Aboriginal Affairs,Aboriginal Affairs +450687,Aboriginal Affairs,Aboriginal Affairs +450686,Aboriginal Affairs,Aboriginal Affairs +450685,Aboriginal Affairs,Aboriginal Affairs +450680,Aboriginal Affairs,Aboriginal Affairs +413892,Arts and Culture,Arts and Culture +411804,Arts and Culture,Arts and Culture +111417,Arts and Culture,Arts and Culture +161960,Arts and Culture,Arts and Culture +161947,Arts and Culture,Arts and Culture +145241,Arts and Culture,Arts and Culture +234430,Arts and Culture,Arts and Culture +234429,Arts and Culture,Arts and Culture +200007,Arts and Culture,Arts and Culture +200006,Arts and Culture,Arts and Culture +200004,Arts and Culture,Arts and Culture +200003,Arts and Culture,Arts and Culture +200000,Arts and Culture,Arts and Culture +199999,Arts and Culture,Arts and Culture +199996,Arts and Culture,Arts and Culture +199994,Arts and Culture,Arts and Culture +199990,Arts and Culture,Arts and Culture +199987,Arts and Culture,Arts and Culture +199873,Arts and Culture,Arts and Culture +199872,Arts and Culture,Arts and Culture +199869,Arts and Culture,Arts and Culture +198428,Arts and Culture,Arts and Culture +198407,Arts and Culture,Arts and Culture +198308,Arts and Culture,Arts and Culture +196531,Arts and Culture,Arts and Culture +314219,Arts and Culture,Arts and Culture +314218,Arts and Culture,Arts and Culture +314215,Arts and Culture,Arts and Culture +314213,Arts and Culture,Arts and Culture +314211,Arts and Culture,Arts and Culture +314210,Arts and Culture,Arts and Culture +314209,Arts and Culture,Arts and Culture +314176,Arts and Culture,Arts and Culture +314175,Arts and Culture,Arts and Culture +314174,Arts and Culture,Arts and Culture +314173,Arts and Culture,Arts and Culture +314172,Arts and Culture,Arts and Culture +314171,Arts and Culture,Arts and Culture +314170,Arts and Culture,Arts and Culture +314169,Arts and Culture,Arts and Culture +314168,Arts and Culture,Arts and Culture +314167,Arts and Culture,Arts and Culture +314166,Arts and Culture,Arts and Culture +314165,Arts and Culture,Arts and Culture +314163,Arts and Culture,Arts and Culture +314162,Arts and Culture,Arts and Culture +314161,Arts and Culture,Arts and Culture +314160,Arts and Culture,Arts and Culture +314159,Arts and Culture,Arts and Culture +314158,Arts and Culture,Arts and Culture +314157,Arts and Culture,Arts and Culture +314155,Arts and Culture,Arts and Culture +314154,Arts and Culture,Arts and Culture +314153,Arts and Culture,Arts and Culture +314152,Arts and Culture,Arts and Culture +314151,Arts and Culture,Arts and Culture +314150,Arts and Culture,Arts and Culture +314149,Arts and Culture,Arts and Culture +264771,Arts and Culture,Arts and Culture +244800,Arts and Culture,Arts and Culture +244799,Arts and Culture,Arts and Culture +244798,Arts and Culture,Arts and Culture +244796,Arts and Culture,Arts and Culture +244795,Arts and Culture,Arts and Culture +244794,Arts and Culture,Arts and Culture +244791,Arts and Culture,Arts and Culture +244788,Arts and Culture,Arts and Culture +244784,Arts and Culture,Arts and Culture +244782,Arts and Culture,Arts and Culture +244779,Arts and Culture,Arts and Culture +244778,Arts and Culture,Arts and Culture +244758,Arts and Culture,Arts and Culture +244745,Arts and Culture,Arts and Culture +244742,Arts and Culture,Arts and Culture +244741,Arts and Culture,Arts and Culture +244677,Arts and Culture,Arts and Culture +244675,Arts and Culture,Arts and Culture +244673,Arts and Culture,Arts and Culture +244672,Arts and Culture,Arts and Culture +244669,Arts and Culture,Arts and Culture +244668,Arts and Culture,Arts and Culture +244667,Arts and Culture,Arts and Culture +244666,Arts and Culture,Arts and Culture +244665,Arts and Culture,Arts and Culture +244664,Arts and Culture,Arts and Culture +244662,Arts and Culture,Arts and Culture +244661,Arts and Culture,Arts and Culture +244660,Arts and Culture,Arts and Culture +244658,Arts and Culture,Arts and Culture +244657,Arts and Culture,Arts and Culture +242909,Arts and Culture,Arts and Culture +370868,Arts and Culture,Arts and Culture +370867,Arts and Culture,Arts and Culture +370860,Arts and Culture,Arts and Culture +370859,Arts and Culture,Arts and Culture +370858,Arts and Culture,Arts and Culture +370857,Arts and Culture,Arts and Culture +370856,Arts and Culture,Arts and Culture +370855,Arts and Culture,Arts and Culture +370854,Arts and Culture,Arts and Culture +370853,Arts and Culture,Arts and Culture +370852,Arts and Culture,Arts and Culture +370851,Arts and Culture,Arts and Culture +370850,Arts and Culture,Arts and Culture +370849,Arts and Culture,Arts and Culture +370848,Arts and Culture,Arts and Culture +370847,Arts and Culture,Arts and Culture +370846,Arts and Culture,Arts and Culture +370845,Arts and Culture,Arts and Culture +370844,Arts and Culture,Arts and Culture +370843,Arts and Culture,Arts and Culture +370841,Arts and Culture,Arts and Culture +370840,Arts and Culture,Arts and Culture +370839,Arts and Culture,Arts and Culture +370838,Arts and Culture,Arts and Culture +370837,Arts and Culture,Arts and Culture +370836,Arts and Culture,Arts and Culture +370834,Arts and Culture,Arts and Culture +370832,Arts and Culture,Arts and Culture +370831,Arts and Culture,Arts and Culture +370827,Arts and Culture,Arts and Culture +370825,Arts and Culture,Arts and Culture +370824,Arts and Culture,Arts and Culture +347213,Arts and Culture,Arts and Culture +343520,Arts and Culture,Arts and Culture +343519,Arts and Culture,Arts and Culture +343518,Arts and Culture,Arts and Culture +343517,Arts and Culture,Arts and Culture +343516,Arts and Culture,Arts and Culture +343515,Arts and Culture,Arts and Culture +343514,Arts and Culture,Arts and Culture +343512,Arts and Culture,Arts and Culture +343511,Arts and Culture,Arts and Culture +343510,Arts and Culture,Arts and Culture +343509,Arts and Culture,Arts and Culture +343508,Arts and Culture,Arts and Culture +343507,Arts and Culture,Arts and Culture +343506,Arts and Culture,Arts and Culture +343505,Arts and Culture,Arts and Culture +343504,Arts and Culture,Arts and Culture +343503,Arts and Culture,Arts and Culture +343502,Arts and Culture,Arts and Culture +343501,Arts and Culture,Arts and Culture +343500,Arts and Culture,Arts and Culture +343499,Arts and Culture,Arts and Culture +343498,Arts and Culture,Arts and Culture +343497,Arts and Culture,Arts and Culture +343496,Arts and Culture,Arts and Culture +343494,Arts and Culture,Arts and Culture +343493,Arts and Culture,Arts and Culture +343492,Arts and Culture,Arts and Culture +343491,Arts and Culture,Arts and Culture +343490,Arts and Culture,Arts and Culture +343489,Arts and Culture,Arts and Culture +343488,Arts and Culture,Arts and Culture +343487,Arts and Culture,Arts and Culture +343486,Arts and Culture,Arts and Culture +343485,Arts and Culture,Arts and Culture +343484,Arts and Culture,Arts and Culture +343482,Arts and Culture,Arts and Culture +318439,Arts and Culture,Arts and Culture +318432,Arts and Culture,Arts and Culture +544575,Arts and Culture,Arts and Culture +542790,Arts and Culture,Arts and Culture +540432,Arts and Culture,Arts and Culture +537324,Arts and Culture,Arts and Culture +533309,Arts and Culture,Arts and Culture +530122,Arts and Culture,Arts and Culture +523819,Arts and Culture,Arts and Culture +523818,Arts and Culture,Arts and Culture +523817,Arts and Culture,Arts and Culture +523792,Arts and Culture,Arts and Culture +518937,Arts and Culture,Arts and Culture +509510,Arts and Culture,Arts and Culture +509508,Arts and Culture,Arts and Culture +509507,Arts and Culture,Arts and Culture +507133,Arts and Culture,Arts and Culture +507130,Arts and Culture,Arts and Culture +496295,Arts and Culture,Arts and Culture +492062,Arts and Culture,Arts and Culture +490987,Arts and Culture,Arts and Culture +485078,Arts and Culture,Arts and Culture +478678,Arts and Culture,Arts and Culture +476547,Arts and Culture,Arts and Culture +476546,Arts and Culture,Arts and Culture +463396,Arts and Culture,Arts and Culture +463395,Arts and Culture,Arts and Culture +463394,Arts and Culture,Arts and Culture +463392,Arts and Culture,Arts and Culture +463390,Arts and Culture,Arts and Culture +461903,Arts and Culture,Arts and Culture +458952,Arts and Culture,Arts and Culture +458446,Arts and Culture,Arts and Culture +458006,Arts and Culture,Arts and Culture +449062,Arts and Culture,Arts and Culture +436558,Arts and Culture,Arts and Culture +436557,Arts and Culture,Arts and Culture +436556,Arts and Culture,Arts and Culture +432904,Arts and Culture,Arts and Culture +422526,Arts and Culture,Arts and Culture +418645,Arts and Culture,Arts and Culture +418637,Arts and Culture,Arts and Culture +413902,Arts and Culture,Arts and Culture +413900,Arts and Culture,Arts and Culture +413899,Arts and Culture,Arts and Culture +413896,Arts and Culture,Arts and Culture +503062,Broadcasting,Broadcasting +496295,Broadcasting,Broadcasting +111417,Broadcasting,Broadcasting +152562,Broadcasting,Broadcasting +152561,Broadcasting,Broadcasting +145241,Broadcasting,Broadcasting +135981,Broadcasting,Broadcasting +135698,Broadcasting,Broadcasting +244742,Broadcasting,Broadcasting +244741,Broadcasting,Broadcasting +244677,Broadcasting,Broadcasting +244675,Broadcasting,Broadcasting +244673,Broadcasting,Broadcasting +244672,Broadcasting,Broadcasting +244669,Broadcasting,Broadcasting +244668,Broadcasting,Broadcasting +244667,Broadcasting,Broadcasting +244666,Broadcasting,Broadcasting +244665,Broadcasting,Broadcasting +244664,Broadcasting,Broadcasting +244662,Broadcasting,Broadcasting +244661,Broadcasting,Broadcasting +244660,Broadcasting,Broadcasting +244658,Broadcasting,Broadcasting +244657,Broadcasting,Broadcasting +234430,Broadcasting,Broadcasting +234429,Broadcasting,Broadcasting +200007,Broadcasting,Broadcasting +200006,Broadcasting,Broadcasting +200004,Broadcasting,Broadcasting +200003,Broadcasting,Broadcasting +200000,Broadcasting,Broadcasting +199999,Broadcasting,Broadcasting +199996,Broadcasting,Broadcasting +199994,Broadcasting,Broadcasting +199990,Broadcasting,Broadcasting +199987,Broadcasting,Broadcasting +199873,Broadcasting,Broadcasting +199872,Broadcasting,Broadcasting +199869,Broadcasting,Broadcasting +198428,Broadcasting,Broadcasting +198407,Broadcasting,Broadcasting +196531,Broadcasting,Broadcasting +161960,Broadcasting,Broadcasting +161947,Broadcasting,Broadcasting +370844,Broadcasting,Broadcasting +370843,Broadcasting,Broadcasting +370841,Broadcasting,Broadcasting +370840,Broadcasting,Broadcasting +370839,Broadcasting,Broadcasting +370838,Broadcasting,Broadcasting +370837,Broadcasting,Broadcasting +370836,Broadcasting,Broadcasting +370834,Broadcasting,Broadcasting +370832,Broadcasting,Broadcasting +370831,Broadcasting,Broadcasting +370827,Broadcasting,Broadcasting +370825,Broadcasting,Broadcasting +370824,Broadcasting,Broadcasting +343520,Broadcasting,Broadcasting +343519,Broadcasting,Broadcasting +343517,Broadcasting,Broadcasting +343516,Broadcasting,Broadcasting +343515,Broadcasting,Broadcasting +343514,Broadcasting,Broadcasting +343512,Broadcasting,Broadcasting +343511,Broadcasting,Broadcasting +343510,Broadcasting,Broadcasting +343509,Broadcasting,Broadcasting +343508,Broadcasting,Broadcasting +343507,Broadcasting,Broadcasting +343506,Broadcasting,Broadcasting +343505,Broadcasting,Broadcasting +343504,Broadcasting,Broadcasting +343503,Broadcasting,Broadcasting +343502,Broadcasting,Broadcasting +343501,Broadcasting,Broadcasting +343500,Broadcasting,Broadcasting +343499,Broadcasting,Broadcasting +343498,Broadcasting,Broadcasting +343497,Broadcasting,Broadcasting +343496,Broadcasting,Broadcasting +343494,Broadcasting,Broadcasting +343493,Broadcasting,Broadcasting +343492,Broadcasting,Broadcasting +343491,Broadcasting,Broadcasting +343490,Broadcasting,Broadcasting +343489,Broadcasting,Broadcasting +343488,Broadcasting,Broadcasting +343487,Broadcasting,Broadcasting +343486,Broadcasting,Broadcasting +343485,Broadcasting,Broadcasting +343484,Broadcasting,Broadcasting +343482,Broadcasting,Broadcasting +318432,Broadcasting,Broadcasting +314215,Broadcasting,Broadcasting +314213,Broadcasting,Broadcasting +314176,Broadcasting,Broadcasting +314169,Broadcasting,Broadcasting +314166,Broadcasting,Broadcasting +314165,Broadcasting,Broadcasting +314163,Broadcasting,Broadcasting +314159,Broadcasting,Broadcasting +314157,Broadcasting,Broadcasting +314155,Broadcasting,Broadcasting +314152,Broadcasting,Broadcasting +314151,Broadcasting,Broadcasting +314150,Broadcasting,Broadcasting +314149,Broadcasting,Broadcasting +244800,Broadcasting,Broadcasting +244799,Broadcasting,Broadcasting +244798,Broadcasting,Broadcasting +244796,Broadcasting,Broadcasting +244795,Broadcasting,Broadcasting +244794,Broadcasting,Broadcasting +244791,Broadcasting,Broadcasting +244788,Broadcasting,Broadcasting +244784,Broadcasting,Broadcasting +244782,Broadcasting,Broadcasting +244779,Broadcasting,Broadcasting +244778,Broadcasting,Broadcasting +244758,Broadcasting,Broadcasting +244745,Broadcasting,Broadcasting +490987,Broadcasting,Broadcasting +488033,Broadcasting,Broadcasting +485078,Broadcasting,Broadcasting +463396,Broadcasting,Broadcasting +463395,Broadcasting,Broadcasting +463394,Broadcasting,Broadcasting +463392,Broadcasting,Broadcasting +463390,Broadcasting,Broadcasting +461903,Broadcasting,Broadcasting +458952,Broadcasting,Broadcasting +458446,Broadcasting,Broadcasting +458006,Broadcasting,Broadcasting +436557,Broadcasting,Broadcasting +436556,Broadcasting,Broadcasting +432904,Broadcasting,Broadcasting +429871,Broadcasting,Broadcasting +429870,Broadcasting,Broadcasting +422526,Broadcasting,Broadcasting +414839,Broadcasting,Broadcasting +414838,Broadcasting,Broadcasting +413991,Broadcasting,Broadcasting +413989,Broadcasting,Broadcasting +413902,Broadcasting,Broadcasting +413900,Broadcasting,Broadcasting +413899,Broadcasting,Broadcasting +413896,Broadcasting,Broadcasting +413895,Broadcasting,Broadcasting +413892,Broadcasting,Broadcasting +411806,Broadcasting,Broadcasting +411804,Broadcasting,Broadcasting +411794,Broadcasting,Broadcasting +411791,Broadcasting,Broadcasting +411788,Broadcasting,Broadcasting +370868,Broadcasting,Broadcasting +370867,Broadcasting,Broadcasting +370860,Broadcasting,Broadcasting +370859,Broadcasting,Broadcasting +370858,Broadcasting,Broadcasting +370857,Broadcasting,Broadcasting +370856,Broadcasting,Broadcasting +370855,Broadcasting,Broadcasting +370854,Broadcasting,Broadcasting +370853,Broadcasting,Broadcasting +370852,Broadcasting,Broadcasting +370851,Broadcasting,Broadcasting +370850,Broadcasting,Broadcasting +370849,Broadcasting,Broadcasting +370848,Broadcasting,Broadcasting +370847,Broadcasting,Broadcasting +370846,Broadcasting,Broadcasting +370845,Broadcasting,Broadcasting +544575,Broadcasting,Broadcasting +542790,Broadcasting,Broadcasting +540432,Broadcasting,Broadcasting +537324,Broadcasting,Broadcasting +533309,Broadcasting,Broadcasting +530122,Broadcasting,Broadcasting +523819,Broadcasting,Broadcasting +523818,Broadcasting,Broadcasting +523817,Broadcasting,Broadcasting +523792,Broadcasting,Broadcasting +518937,Broadcasting,Broadcasting +509510,Broadcasting,Broadcasting +509508,Broadcasting,Broadcasting +509507,Broadcasting,Broadcasting +507133,Broadcasting,Broadcasting +507130,Broadcasting,Broadcasting +392759,Science and Technology,Science and Technology +392758,Science and Technology,Science and Technology +127214,Science and Technology,Science and Technology +127194,Science and Technology,Science and Technology +119814,Science and Technology,Science and Technology +116574,Science and Technology,Science and Technology +108174,Science and Technology,Science and Technology +222569,Science and Technology,Science and Technology +209054,Science and Technology,Science and Technology +209053,Science and Technology,Science and Technology +209052,Science and Technology,Science and Technology +209051,Science and Technology,Science and Technology +209050,Science and Technology,Science and Technology +209049,Science and Technology,Science and Technology +209048,Science and Technology,Science and Technology +139735,Science and Technology,Science and Technology +139734,Science and Technology,Science and Technology +131663,Science and Technology,Science and Technology +127215,Science and Technology,Science and Technology +368231,Science and Technology,Science and Technology +368230,Science and Technology,Science and Technology +366416,Science and Technology,Science and Technology +364708,Science and Technology,Science and Technology +364707,Science and Technology,Science and Technology +364706,Science and Technology,Science and Technology +364705,Science and Technology,Science and Technology +358903,Science and Technology,Science and Technology +358902,Science and Technology,Science and Technology +358901,Science and Technology,Science and Technology +358899,Science and Technology,Science and Technology +358897,Science and Technology,Science and Technology +358895,Science and Technology,Science and Technology +358894,Science and Technology,Science and Technology +249660,Science and Technology,Science and Technology +249659,Science and Technology,Science and Technology +249654,Science and Technology,Science and Technology +249652,Science and Technology,Science and Technology +391030,Science and Technology,Science and Technology +391029,Science and Technology,Science and Technology +391027,Science and Technology,Science and Technology +391026,Science and Technology,Science and Technology +391023,Science and Technology,Science and Technology +391021,Science and Technology,Science and Technology +391019,Science and Technology,Science and Technology +391014,Science and Technology,Science and Technology +391001,Science and Technology,Science and Technology +390997,Science and Technology,Science and Technology +390948,Science and Technology,Science and Technology +390852,Science and Technology,Science and Technology +390845,Science and Technology,Science and Technology +390835,Science and Technology,Science and Technology +390805,Science and Technology,Science and Technology +390781,Science and Technology,Science and Technology +390717,Science and Technology,Science and Technology +390714,Science and Technology,Science and Technology +390713,Science and Technology,Science and Technology +390707,Science and Technology,Science and Technology +390699,Science and Technology,Science and Technology +390691,Science and Technology,Science and Technology +390688,Science and Technology,Science and Technology +390682,Science and Technology,Science and Technology +390672,Science and Technology,Science and Technology +387538,Science and Technology,Science and Technology +387536,Science and Technology,Science and Technology +387534,Science and Technology,Science and Technology +387528,Science and Technology,Science and Technology +387522,Science and Technology,Science and Technology +385064,Science and Technology,Science and Technology +385063,Science and Technology,Science and Technology +382170,Science and Technology,Science and Technology +380543,Science and Technology,Science and Technology +380542,Science and Technology,Science and Technology +380540,Science and Technology,Science and Technology +380539,Science and Technology,Science and Technology +380521,Science and Technology,Science and Technology +379665,Science and Technology,Science and Technology +378656,Science and Technology,Science and Technology +378652,Science and Technology,Science and Technology +378650,Science and Technology,Science and Technology +378629,Science and Technology,Science and Technology +377567,Science and Technology,Science and Technology +377284,Science and Technology,Science and Technology +377282,Science and Technology,Science and Technology +377276,Science and Technology,Science and Technology +377273,Science and Technology,Science and Technology +377271,Science and Technology,Science and Technology +377263,Science and Technology,Science and Technology +377260,Science and Technology,Science and Technology +376753,Science and Technology,Science and Technology +376750,Science and Technology,Science and Technology +376749,Science and Technology,Science and Technology +376736,Science and Technology,Science and Technology +376731,Science and Technology,Science and Technology +376729,Science and Technology,Science and Technology +374007,Science and Technology,Science and Technology +374006,Science and Technology,Science and Technology +373996,Science and Technology,Science and Technology +373995,Science and Technology,Science and Technology +373994,Science and Technology,Science and Technology +373993,Science and Technology,Science and Technology +373992,Science and Technology,Science and Technology +373990,Science and Technology,Science and Technology +373989,Science and Technology,Science and Technology +373987,Science and Technology,Science and Technology +373986,Science and Technology,Science and Technology +505285,Science and Technology,Science and Technology +505279,Science and Technology,Science and Technology +501970,Science and Technology,Science and Technology +501968,Science and Technology,Science and Technology +501964,Science and Technology,Science and Technology +499547,Science and Technology,Science and Technology +499541,Science and Technology,Science and Technology +499533,Science and Technology,Science and Technology +499521,Science and Technology,Science and Technology +499132,Science and Technology,Science and Technology +495706,Science and Technology,Science and Technology +495696,Science and Technology,Science and Technology +492222,Science and Technology,Science and Technology +492219,Science and Technology,Science and Technology +492217,Science and Technology,Science and Technology +492193,Science and Technology,Science and Technology +492192,Science and Technology,Science and Technology +492191,Science and Technology,Science and Technology +492190,Science and Technology,Science and Technology +492189,Science and Technology,Science and Technology +492188,Science and Technology,Science and Technology +492187,Science and Technology,Science and Technology +492186,Science and Technology,Science and Technology +492184,Science and Technology,Science and Technology +492183,Science and Technology,Science and Technology +492182,Science and Technology,Science and Technology +492181,Science and Technology,Science and Technology +492178,Science and Technology,Science and Technology +492177,Science and Technology,Science and Technology +492176,Science and Technology,Science and Technology +492175,Science and Technology,Science and Technology +492174,Science and Technology,Science and Technology +492173,Science and Technology,Science and Technology +492172,Science and Technology,Science and Technology +492171,Science and Technology,Science and Technology +492165,Science and Technology,Science and Technology +492158,Science and Technology,Science and Technology +492157,Science and Technology,Science and Technology +492156,Science and Technology,Science and Technology +492155,Science and Technology,Science and Technology +492154,Science and Technology,Science and Technology +492153,Science and Technology,Science and Technology +492150,Science and Technology,Science and Technology +492149,Science and Technology,Science and Technology +492147,Science and Technology,Science and Technology +488399,Science and Technology,Science and Technology +481178,Science and Technology,Science and Technology +479319,Science and Technology,Science and Technology +469063,Science and Technology,Science and Technology +464688,Science and Technology,Science and Technology +464685,Science and Technology,Science and Technology +464683,Science and Technology,Science and Technology +464682,Science and Technology,Science and Technology +464678,Science and Technology,Science and Technology +462002,Science and Technology,Science and Technology +456537,Science and Technology,Science and Technology +453084,Science and Technology,Science and Technology +442645,Science and Technology,Science and Technology +442408,Science and Technology,Science and Technology +442390,Science and Technology,Science and Technology +442388,Science and Technology,Science and Technology +442373,Science and Technology,Science and Technology +442368,Science and Technology,Science and Technology +439683,Science and Technology,Science and Technology +439682,Science and Technology,Science and Technology +439680,Science and Technology,Science and Technology +439679,Science and Technology,Science and Technology +439678,Science and Technology,Science and Technology +439676,Science and Technology,Science and Technology +439665,Science and Technology,Science and Technology +439663,Science and Technology,Science and Technology +439661,Science and Technology,Science and Technology +439660,Science and Technology,Science and Technology +439657,Science and Technology,Science and Technology +439654,Science and Technology,Science and Technology +439653,Science and Technology,Science and Technology +439650,Science and Technology,Science and Technology +439649,Science and Technology,Science and Technology +439648,Science and Technology,Science and Technology +439635,Science and Technology,Science and Technology +439634,Science and Technology,Science and Technology +439633,Science and Technology,Science and Technology +439632,Science and Technology,Science and Technology +439627,Science and Technology,Science and Technology +439625,Science and Technology,Science and Technology +439624,Science and Technology,Science and Technology +439619,Science and Technology,Science and Technology +436001,Science and Technology,Science and Technology +433811,Science and Technology,Science and Technology +427872,Science and Technology,Science and Technology +426745,Science and Technology,Science and Technology +423011,Science and Technology,Science and Technology +412595,Science and Technology,Science and Technology +412591,Science and Technology,Science and Technology +412574,Science and Technology,Science and Technology +412572,Science and Technology,Science and Technology +412554,Science and Technology,Science and Technology +412551,Science and Technology,Science and Technology +412546,Science and Technology,Science and Technology +412542,Science and Technology,Science and Technology +408359,Science and Technology,Science and Technology +408357,Science and Technology,Science and Technology +399132,Science and Technology,Science and Technology +398888,Science and Technology,Science and Technology +398884,Science and Technology,Science and Technology +396129,Science and Technology,Science and Technology +396104,Science and Technology,Science and Technology +396101,Science and Technology,Science and Technology +393705,Science and Technology,Science and Technology +393703,Science and Technology,Science and Technology +392853,Science and Technology,Science and Technology +392766,Science and Technology,Science and Technology +392765,Science and Technology,Science and Technology +106983,Science and Technology,Science and Technology +134521,Aboriginal Affairs,Aboriginal Affairs +387381,Science and Technology,Science and Technology +540251,Science and Technology,Science and Technology +394290,Science and Technology,Science and Technology +114315,Aboriginal Affairs,Aboriginal Affairs +114295,Aboriginal Affairs,Aboriginal Affairs +117917,Aboriginal Affairs,Aboriginal Affairs +273564,Science and Technology,Science and Technology +113996,Telecommunications,Telecommunications +113993,Telecommunications,Telecommunications +117661,Telecommunications,Telecommunications +116094,Science and Technology,Science and Technology +111434,Science and Technology,Science and Technology +543013,Science and Technology,Science and Technology +541252,Science and Technology,Science and Technology +109687,Science and Technology,Science and Technology +109686,Science and Technology,Science and Technology +109682,Science and Technology,Science and Technology +172166,Science and Technology,Science and Technology +172165,Science and Technology,Science and Technology +157607,Science and Technology,Science and Technology +140335,Science and Technology,Science and Technology +125895,Science and Technology,Science and Technology +369071,Science and Technology,Science and Technology +369041,Science and Technology,Science and Technology +369040,Science and Technology,Science and Technology +369039,Science and Technology,Science and Technology +369038,Science and Technology,Science and Technology +369037,Science and Technology,Science and Technology +369036,Science and Technology,Science and Technology +369035,Science and Technology,Science and Technology +369033,Science and Technology,Science and Technology +369030,Science and Technology,Science and Technology +368292,Science and Technology,Science and Technology +355269,Science and Technology,Science and Technology +355268,Science and Technology,Science and Technology +346217,Science and Technology,Science and Technology +335778,Science and Technology,Science and Technology +335776,Science and Technology,Science and Technology +334159,Science and Technology,Science and Technology +334156,Science and Technology,Science and Technology +250263,Science and Technology,Science and Technology +236069,Science and Technology,Science and Technology +209208,Science and Technology,Science and Technology +209207,Science and Technology,Science and Technology +172167,Science and Technology,Science and Technology +445146,Science and Technology,Science and Technology +445143,Science and Technology,Science and Technology +445141,Science and Technology,Science and Technology +445116,Science and Technology,Science and Technology +445115,Science and Technology,Science and Technology +438773,Science and Technology,Science and Technology +437847,Science and Technology,Science and Technology +437844,Science and Technology,Science and Technology +437842,Science and Technology,Science and Technology +436515,Science and Technology,Science and Technology +430950,Science and Technology,Science and Technology +422537,Science and Technology,Science and Technology +418930,Science and Technology,Science and Technology +418929,Science and Technology,Science and Technology +418928,Science and Technology,Science and Technology +408834,Science and Technology,Science and Technology +408832,Science and Technology,Science and Technology +407675,Science and Technology,Science and Technology +401572,Science and Technology,Science and Technology +401571,Science and Technology,Science and Technology +401570,Science and Technology,Science and Technology +401569,Science and Technology,Science and Technology +401103,Science and Technology,Science and Technology +401102,Science and Technology,Science and Technology +396504,Science and Technology,Science and Technology +392951,Science and Technology,Science and Technology +388818,Science and Technology,Science and Technology +380836,Science and Technology,Science and Technology +369699,Science and Technology,Science and Technology +369693,Science and Technology,Science and Technology +369692,Science and Technology,Science and Technology +369691,Science and Technology,Science and Technology +369690,Science and Technology,Science and Technology +369238,Science and Technology,Science and Technology +369236,Science and Technology,Science and Technology +369234,Science and Technology,Science and Technology +369232,Science and Technology,Science and Technology +369222,Science and Technology,Science and Technology +369217,Science and Technology,Science and Technology +369215,Science and Technology,Science and Technology +369210,Science and Technology,Science and Technology +369203,Science and Technology,Science and Technology +369078,Science and Technology,Science and Technology +369073,Science and Technology,Science and Technology +533515,Science and Technology,Science and Technology +533513,Science and Technology,Science and Technology +533511,Science and Technology,Science and Technology +531008,Science and Technology,Science and Technology +524865,Science and Technology,Science and Technology +524806,Science and Technology,Science and Technology +516578,Science and Technology,Science and Technology +514314,Science and Technology,Science and Technology +509831,Science and Technology,Science and Technology +506751,Science and Technology,Science and Technology +500450,Science and Technology,Science and Technology +500447,Science and Technology,Science and Technology +500445,Science and Technology,Science and Technology +490265,Science and Technology,Science and Technology +477543,Science and Technology,Science and Technology +477416,Science and Technology,Science and Technology +477412,Science and Technology,Science and Technology +477402,Science and Technology,Science and Technology +477399,Science and Technology,Science and Technology +477396,Science and Technology,Science and Technology +474176,Science and Technology,Science and Technology +474175,Science and Technology,Science and Technology +472349,Science and Technology,Science and Technology +472348,Science and Technology,Science and Technology +472346,Science and Technology,Science and Technology +470134,Science and Technology,Science and Technology +466313,Science and Technology,Science and Technology +466311,Science and Technology,Science and Technology +463397,Science and Technology,Science and Technology +463393,Science and Technology,Science and Technology +98736,Aboriginal Affairs,Aboriginal Affairs +113215,Arts and Culture,Arts and Culture +197485,Science and Technology,Science and Technology +211874,Arts and Culture,Arts and Culture +102459,Aboriginal Affairs,Aboriginal Affairs +176646,Science and Technology,Science and Technology +482249,Arts and Culture,Arts and Culture +468721,Broadcasting,Broadcasting +544895,Telecommunications,Telecommunications +93259,Science and Technology,Science and Technology +156645,Aboriginal Affairs,Aboriginal Affairs +100616,Arts and Culture,Arts and Culture +87222,Arts and Culture,Arts and Culture +415310,Science and Technology,Science and Technology +101136,Science and Technology,Science and Technology +134814,Aboriginal Affairs,Aboriginal Affairs +468938,Aboriginal Affairs,Aboriginal Affairs +493009,Science and Technology,Science and Technology +250324,Science and Technology,Science and Technology +357676,Science and Technology,Science and Technology +87656,Science and Technology,Science and Technology +126674,Telecommunications,Telecommunications +167388,Science and Technology,Science and Technology +470069,Aboriginal Affairs,Aboriginal Affairs +227020,Science and Technology,Science and Technology +109848,Arts and Culture,Arts and Culture +125156,Broadcasting,Broadcasting +110215,Aboriginal Affairs,Aboriginal Affairs +105340,Science and Technology,Science and Technology +348817,Science and Technology,Science and Technology +406781,Science and Technology,Science and Technology +148736,Aboriginal Affairs,Aboriginal Affairs +472912,Science and Technology,Science and Technology +80594,Science and Technology,Science and Technology +109534,Aboriginal Affairs,Aboriginal Affairs +442406,Science and Technology,Science and Technology +202742,Telecommunications,Telecommunications +84434,Arts and Culture,Arts and Culture +84434,Broadcasting,Broadcasting +339417,Aboriginal Affairs,Aboriginal Affairs +90218,Arts and Culture,Arts and Culture +113859,Broadcasting,Broadcasting +515993,Aboriginal Affairs,Aboriginal Affairs +152251,Science and Technology,Science and Technology +497317,Telecommunications,Telecommunications +204368,Science and Technology,Science and Technology +223869,Telecommunications,Telecommunications +483571,Aboriginal Affairs,Aboriginal Affairs +401672,Science and Technology,Science and Technology +423796,Science and Technology,Science and Technology +544484,Telecommunications,Telecommunications +129676,Aboriginal Affairs,Aboriginal Affairs +447554,Science and Technology,Science and Technology +315850,Science and Technology,Science and Technology +101280,Aboriginal Affairs,Aboriginal Affairs +192206,Telecommunications,Telecommunications +101419,Aboriginal Affairs,Aboriginal Affairs +101417,Arts and Culture,Arts and Culture +244514,Telecommunications,Telecommunications +444256,Science and Technology,Science and Technology +510170,Science and Technology,Science and Technology +78816,Science and Technology,Science and Technology +97454,Aboriginal Affairs,Aboriginal Affairs +236838,Science and Technology,Science and Technology +541932,Arts and Culture,Arts and Culture +259132,Aboriginal Affairs,Aboriginal Affairs +417185,Arts and Culture,Arts and Culture +424330,Broadcasting,Broadcasting +414751,Broadcasting,Broadcasting +414751,Telecommunications,Telecommunications +446989,Science and Technology,Science and Technology +76375,Science and Technology,Science and Technology +158235,Arts and Culture,Arts and Culture +139595,Aboriginal Affairs,Aboriginal Affairs +446786,Aboriginal Affairs,Aboriginal Affairs +424651,Science and Technology,Science and Technology +101094,Science and Technology,Science and Technology +469388,Science and Technology,Science and Technology +391133,Science and Technology,Science and Technology +335998,Telecommunications,Telecommunications +414638,Science and Technology,Science and Technology +518020,Aboriginal Affairs,Aboriginal Affairs +518003,Science and Technology,Science and Technology +169147,Science and Technology,Science and Technology +355140,Science and Technology,Science and Technology +429287,Science and Technology,Science and Technology +413924,Science and Technology,Science and Technology +273558,Science and Technology,Science and Technology +424208,Science and Technology,Science and Technology +400155,Science and Technology,Science and Technology +400143,Telecommunications,Telecommunications +99290,Science and Technology,Science and Technology +529542,Science and Technology,Science and Technology +383360,Aboriginal Affairs,Aboriginal Affairs +316575,Arts and Culture,Arts and Culture +375398,Science and Technology,Science and Technology +409233,Aboriginal Affairs,Aboriginal Affairs +154794,Telecommunications,Telecommunications +239071,Science and Technology,Science and Technology +85456,Aboriginal Affairs,Aboriginal Affairs +178944,Science and Technology,Science and Technology +88076,Aboriginal Affairs,Aboriginal Affairs +395164,Broadcasting,Broadcasting +454084,Telecommunications,Telecommunications +289610,Telecommunications,Telecommunications +105331,Science and Technology,Science and Technology +112036,Science and Technology,Science and Technology +165428,Science and Technology,Science and Technology +127355,Science and Technology,Science and Technology +192929,Science and Technology,Science and Technology +112019,Science and Technology,Science and Technology +185975,Aboriginal Affairs,Aboriginal Affairs +125119,Broadcasting,Broadcasting +340581,Telecommunications,Telecommunications +105328,Science and Technology,Science and Technology +90490,Telecommunications,Telecommunications +230445,Aboriginal Affairs,Aboriginal Affairs +396036,Aboriginal Affairs,Aboriginal Affairs +519568,Arts and Culture,Arts and Culture +459582,Broadcasting,Broadcasting +424912,Science and Technology,Science and Technology +477832,Telecommunications,Telecommunications +532427,Science and Technology,Science and Technology +92054,Arts and Culture,Arts and Culture +390727,Aboriginal Affairs,Aboriginal Affairs +398651,Broadcasting,Broadcasting +378969,Aboriginal Affairs,Aboriginal Affairs +487896,Science and Technology,Science and Technology +370222,Broadcasting,Broadcasting +377741,Telecommunications,Telecommunications +351664,Science and Technology,Science and Technology +374510,Science and Technology,Science and Technology +113877,Aboriginal Affairs,Aboriginal Affairs +421553,Science and Technology,Science and Technology +180391,Broadcasting,Radiodiffusion +165444,Telecommunications,Telecommunications +175514,Science and Technology,Science and Technology +500712,Science and Technology,Science and Technology +88168,Science and Technology,Science and Technology +93670,Science and Technology,Science and Technology +519442,Science and Technology,Science and Technology +165805,Arts and Culture,Arts et culture +236470,Broadcasting,Radiodiffusion +538503,Aboriginal Affairs,Aboriginal Affairs +123375,Aboriginal Affairs,Aboriginal Affairs +78821,Arts and Culture,Arts and Culture +443914,Science and Technology,Science and Technology +77466,Science and Technology,Science and Technology +168412,Telecommunications,Telecommunications +75394,Telecommunications,Telecommunications +75414,Telecommunications,Telecommunications +244335,Aboriginal Affairs,Aboriginal Affairs +264109,Science and Technology,Science and Technology +93056,Science and Technology,Science and Technology +75815,Aboriginal Affairs,Aboriginal Affairs +396968,Aboriginal Affairs,Aboriginal Affairs +344096,Science and Technology,Science and Technology +432264,Science and Technology,Science and Technology +81954,Telecommunications,Telecommunications +464695,Broadcasting,Broadcasting +101164,Science and Technology,Science and Technology +101138,Science and Technology,Science and Technology +88202,Aboriginal Affairs,Aboriginal Affairs +371209,Arts and Culture,Arts and Culture +244999,Broadcasting,Broadcasting +173419,Telecommunications,Telecommunications +78175,Telecommunications,Telecommunications +82856,Telecommunications,Telecommunications +189089,Aboriginal Affairs,Aboriginal Affairs +370719,Aboriginal Affairs,Aboriginal Affairs +87277,Arts and Culture,Arts and Culture +77769,Aboriginal Affairs,Aboriginal Affairs +133075,Telecommunications,Telecommunications +124136,Telecommunications,Telecommunications +83536,Aboriginal Affairs,Aboriginal Affairs +84275,Science and Technology,Science and Technology +464820,Science and Technology,Science and Technology +112534,Aboriginal Affairs,Aboriginal Affairs +188047,Aboriginal Affairs,Aboriginal Affairs +175064,Science and Technology,Science and Technology +363297,Aboriginal Affairs,Aboriginal Affairs +97458,Aboriginal Affairs,Aboriginal Affairs +78815,Aboriginal Affairs,Aboriginal Affairs +123174,Aboriginal Affairs,Aboriginal Affairs +158192,Aboriginal Affairs,Aboriginal Affairs +80854,Arts and Culture,Arts and Culture +162212,Broadcasting,Broadcasting +157061,Telecommunications,Telecommunications +98234,Science and Technology,Science and Technology +129096,Aboriginal Affairs,Aboriginal Affairs +100928,Science and Technology,Science and Technology +504412,Science and Technology,Science and Technology +536195,Science and Technology,Science and Technology +119295,Science and Technology,Science and Technology +415519,Aboriginal Affairs,Aboriginal Affairs +216267,Science and Technology,Science and Technology +435323,Science and Technology,Science and Technology +212460,Aboriginal Affairs,Aboriginal Affairs +212448,Science and Technology,Science and Technology +149945,Science and Technology,Science and Technology +87221,Science and Technology,Science and Technology +367555,Aboriginal Affairs,Aboriginal Affairs +500011,Arts and Culture,Arts and Culture +489714,Broadcasting,Broadcasting +146045,Science and Technology,Science and Technology +114975,Aboriginal Affairs,Aboriginal Affairs +90854,Arts and Culture,Arts and Culture +86495,Science and Technology,Science and Technology +196104,Arts and Culture,Arts and Culture +158202,Aboriginal Affairs,Aboriginal Affairs +324706,Aboriginal Affairs,Aboriginal Affairs +151999,Broadcasting,Radiodiffusion +207092,Broadcasting,Broadcasting +201967,Science and Technology,Science and Technology +309772,Telecommunications,Telecommunications +89075,Aboriginal Affairs,Aboriginal Affairs +87335,Aboriginal Affairs,Aboriginal Affairs +87794,Science and Technology,Science and Technology +375454,Telecommunications,Telecommunications +101174,Aboriginal Affairs,Aboriginal Affairs +180244,Science and Technology,Science and Technology +88088,Science and Technology,Science and Technology +92797,Telecommunications,Telecommunications +89114,Arts and Culture,Arts and Culture +172964,Telecommunications,Telecommunications +93739,Arts and Culture,Arts and Culture +93739,Telecommunications,Telecommunications +218927,Aboriginal Affairs,Aboriginal Affairs +188106,Science and Technology,Science and Technology +200443,Science and Technology,Science and Technology +96476,Aboriginal Affairs,Aboriginal Affairs +93851,Science and Technology,Science and Technology +94754,Science and Technology,Science and Technology +102616,Science and Technology,Science and Technology +93167,Arts and Culture,Arts and Culture +93574,Arts and Culture,Arts and Culture +323259,Arts and Culture,Arts and Culture +103237,Arts and Culture,Arts and Culture +500154,Science and Technology,Science and Technology +141823,Aboriginal Affairs,Aboriginal Affairs +169649,Aboriginal Affairs,Aboriginal Affairs +356041,Science and Technology,Science and Technology +455071,Telecommunications,Telecommunications +176726,Science and Technology,Science and Technology +439539,Science and Technology,Science and Technology +140514,Science and Technology,Sciences et technologies +384058,Aboriginal Affairs,Aboriginal Affairs +131694,Science and Technology,Science and Technology +128597,Aboriginal Affairs,Aboriginal Affairs +120255,Broadcasting,Broadcasting +131234,Science and Technology,Sciences et technologies +443755,Aboriginal Affairs,Aboriginal Affairs +96255,Science and Technology,Science and Technology +405636,Science and Technology,Science and Technology +412781,Science and Technology,Science and Technology +325462,Arts and Culture,Arts and Culture +119259,Science and Technology,Science and Technology +140754,Broadcasting,Broadcasting +148112,Aboriginal Affairs,Aboriginal Affairs +380255,Science and Technology,Science and Technology +233390,Aboriginal Affairs,Aboriginal Affairs +168816,Science and Technology,Science and Technology +121341,Telecommunications,Telecommunications +207532,Arts and Culture,Arts and Culture +136000,Broadcasting,Broadcasting +317473,Arts and Culture,Arts and Culture +116139,Science and Technology,Science and Technology +101306,Science and Technology,Science and Technology +113869,Science and Technology,Science and Technology +101370,Arts and Culture,Arts and Culture +101370,Science and Technology,Science and Technology +101370,Aboriginal Affairs,Aboriginal Affairs +417146,Science and Technology,Science and Technology +145670,Aboriginal Affairs,Aboriginal Affairs +102336,Science and Technology,Science and Technology +390296,Science and Technology,Science and Technology +126754,Telecommunications,Telecommunications +107607,Aboriginal Affairs,Aboriginal Affairs +163005,Aboriginal Affairs,Affaires autochtones +107610,Aboriginal Affairs,Aboriginal Affairs +211668,Arts and Culture,Arts et culture +128937,Telecommunications,Telecommunications +382192,Arts and Culture,Arts et culture +260735,Science and Technology,Science and Technology +111135,Science and Technology,Science and Technology +450679,Aboriginal Affairs,Aboriginal Affairs +413895,Arts and Culture,Arts and Culture +503064,Broadcasting,Broadcasting +106402,Aboriginal Affairs,Aboriginal Affairs +392761,Science and Technology,Science and Technology +106985,Science and Technology,Science and Technology +108536,Telecommunications,Telecommunications +137255,Aboriginal Affairs,Aboriginal Affairs +394289,Science and Technology,Science and Technology +114296,Aboriginal Affairs,Aboriginal Affairs +117916,Aboriginal Affairs,Aboriginal Affairs +273566,Science and Technology,Science and Technology +113998,Telecommunications,Telecommunications +109506,Aboriginal Affairs,Aboriginal Affairs +116095,Science and Technology,Science and Technology +445149,Science and Technology,Science and Technology +128617,Arts and Culture,Arts and Culture +119634,Arts and Culture,Arts and Culture +115977,Arts and Culture,Arts and Culture +135014,Aboriginal Affairs,Aboriginal Affairs +224851,Arts and Culture,Arts et culture +403956,Science and Technology,Science and Technology +117669,Aboriginal Affairs,Aboriginal Affairs +112840,Aboriginal Affairs,Aboriginal Affairs +112841,Aboriginal Affairs,Aboriginal Affairs +112844,Aboriginal Affairs,Aboriginal Affairs +117671,Aboriginal Affairs,Aboriginal Affairs +112845,Aboriginal Affairs,Aboriginal Affairs +113295,Science and Technology,Science and Technology +113515,Science and Technology,Science and Technology +117568,Arts and Culture,Arts et culture +113923,Arts and Culture,Arts and Culture +113937,Telecommunications,Telecommunications +219796,Science and Technology,Science and Technology +376542,Telecommunications,Telecommunications +116038,Science and Technology,Science and Technology +164030,Science and Technology,Science and Technology +115915,Telecommunications,Telecommunications +129083,Telecommunications,Telecommunications +117915,Aboriginal Affairs,Aboriginal Affairs +379475,Aboriginal Affairs,Aboriginal Affairs +121303,Science and Technology,Science and Technology +117577,Science and Technology,Science and Technology +117577,Telecommunications,Telecommunications +117574,Science and Technology,Science and Technology +117574,Telecommunications,Telecommunications +192958,Aboriginal Affairs,Aboriginal Affairs +133254,Aboriginal Affairs,Aboriginal Affairs +315009,Arts and Culture,Arts and Culture +118214,Arts and Culture,Arts and Culture +117054,Telecommunications,Telecommunications +128454,Science and Technology,Science and Technology +455526,Broadcasting,Radiodiffusion +117494,Aboriginal Affairs,Aboriginal Affairs +445207,Broadcasting,Radiodiffusion +117754,Science and Technology,Science and Technology +125201,Science and Technology,Science and Technology +376534,Science and Technology,Science and Technology +229192,Science and Technology,Science and Technology +269933,Aboriginal Affairs,Aboriginal Affairs +385282,Telecommunications,Telecommunications +457697,Science and Technology,Science and Technology +457695,Telecommunications,Telecommunications +121267,Aboriginal Affairs,Aboriginal Affairs +138398,Aboriginal Affairs,Aboriginal Affairs +355477,Aboriginal Affairs,Aboriginal Affairs +454175,Science and Technology,Science and Technology +124975,Broadcasting,Broadcasting +536104,Science and Technology,Science and Technology +134394,Aboriginal Affairs,Aboriginal Affairs +121179,Aboriginal Affairs,Aboriginal Affairs +121214,Arts and Culture,Arts and Culture +125072,Aboriginal Affairs,Aboriginal Affairs +538852,Aboriginal Affairs,Aboriginal Affairs +132825,Aboriginal Affairs,Aboriginal Affairs +127838,Aboriginal Affairs,Aboriginal Affairs +373366,Science and Technology,Science and Technology +154003,Telecommunications,Telecommunications +128156,Aboriginal Affairs,Aboriginal Affairs +129051,Arts and Culture,Arts and Culture +126180,Science and Technology,Science and Technology +463391,Science and Technology,Science and Technology +463389,Science and Technology,Science and Technology +461071,Science and Technology,Science and Technology +460787,Science and Technology,Science and Technology +460786,Science and Technology,Science and Technology +460780,Science and Technology,Science and Technology +445151,Science and Technology,Science and Technology +115976,Arts and Culture,Arts and Culture +118854,Aboriginal Affairs,Aboriginal Affairs +151931,Aboriginal Affairs,Aboriginal Affairs +145866,Aboriginal Affairs,Aboriginal Affairs +538867,Arts and Culture,Arts et culture +452499,Arts and Culture,Arts et culture +132983,Arts and Culture,Arts et culture +373119,Arts and Culture,Arts et culture +373116,Arts and Culture,Arts et culture +373115,Arts and Culture,Arts et culture +313809,Arts and Culture,Arts et culture +296149,Arts and Culture,Arts et culture +293209,Arts and Culture,Arts et culture +288070,Arts and Culture,Arts et culture +284920,Arts and Culture,Arts et culture +284918,Arts and Culture,Arts et culture +284917,Arts and Culture,Arts et culture +284911,Arts and Culture,Arts et culture +284910,Arts and Culture,Arts et culture +284909,Arts and Culture,Arts et culture +284894,Arts and Culture,Arts et culture +284809,Arts and Culture,Arts et culture +224897,Arts and Culture,Arts et culture +224895,Arts and Culture,Arts et culture +224890,Arts and Culture,Arts et culture +224888,Arts and Culture,Arts et culture +224887,Arts and Culture,Arts et culture +403950,Science and Technology,Science and Technology +391634,Science and Technology,Science and Technology +112839,Aboriginal Affairs,Aboriginal Affairs +165579,Aboriginal Affairs,Aboriginal Affairs +112845,Aboriginal Affairs,Aboriginal Affairs +115036,Arts and Culture,Arts et culture +209626,Science and Technology,Science and Technology +209623,Science and Technology,Science and Technology +155315,Science and Technology,Science and Technology +149436,Science and Technology,Science and Technology +366730,Telecommunications,Telecommunications +365189,Telecommunications,Telecommunications +151182,Telecommunications,Telecommunications +148596,Telecommunications,Telecommunications +135980,Telecommunications,Telecommunications +128594,Telecommunications,Telecommunications +117648,Telecommunications,Telecommunications +117646,Telecommunications,Telecommunications +117644,Telecommunications,Telecommunications +117635,Telecommunications,Telecommunications +117630,Telecommunications,Telecommunications +117629,Telecommunications,Telecommunications +117628,Telecommunications,Telecommunications +117617,Telecommunications,Telecommunications +197471,Telecommunications,Telecommunications +197463,Telecommunications,Telecommunications +197457,Telecommunications,Telecommunications +192874,Telecommunications,Telecommunications +188977,Telecommunications,Telecommunications +188975,Telecommunications,Telecommunications +188840,Telecommunications,Telecommunications +188837,Telecommunications,Telecommunications +187789,Telecommunications,Telecommunications +187787,Telecommunications,Telecommunications +187786,Telecommunications,Telecommunications +187785,Telecommunications,Telecommunications +180744,Telecommunications,Telecommunications +176844,Telecommunications,Telecommunications +172284,Telecommunications,Telecommunications +170004,Telecommunications,Telecommunications +163778,Telecommunications,Telecommunications +153936,Telecommunications,Telecommunications +280947,Telecommunications,Telecommunications +280945,Telecommunications,Telecommunications +277467,Telecommunications,Telecommunications +273626,Telecommunications,Telecommunications +273506,Telecommunications,Telecommunications +273489,Telecommunications,Telecommunications +268651,Telecommunications,Telecommunications +268650,Telecommunications,Telecommunications +264051,Telecommunications,Telecommunications +259031,Telecommunications,Telecommunications +259030,Telecommunications,Telecommunications +259029,Telecommunications,Telecommunications +254158,Telecommunications,Telecommunications +250578,Telecommunications,Telecommunications +250576,Telecommunications,Telecommunications +250572,Telecommunications,Telecommunications +248129,Telecommunications,Telecommunications +244929,Telecommunications,Telecommunications +244631,Telecommunications,Telecommunications +236189,Telecommunications,Telecommunications +229875,Telecommunications,Telecommunications +229871,Telecommunications,Telecommunications +229869,Telecommunications,Telecommunications +227142,Telecommunications,Telecommunications +227140,Telecommunications,Telecommunications +227138,Telecommunications,Telecommunications +227136,Telecommunications,Telecommunications +223160,Telecommunications,Telecommunications +223159,Telecommunications,Telecommunications +223154,Telecommunications,Telecommunications +217688,Telecommunications,Telecommunications +217668,Telecommunications,Telecommunications +216747,Telecommunications,Telecommunications +216729,Telecommunications,Telecommunications +216728,Telecommunications,Telecommunications +216727,Telecommunications,Telecommunications +362943,Telecommunications,Telecommunications +362926,Telecommunications,Telecommunications +361963,Telecommunications,Telecommunications +361962,Telecommunications,Telecommunications +356353,Telecommunications,Telecommunications +356348,Telecommunications,Telecommunications +354772,Telecommunications,Telecommunications +346657,Telecommunications,Telecommunications +343843,Telecommunications,Telecommunications +341059,Telecommunications,Telecommunications +341058,Telecommunications,Telecommunications +335751,Telecommunications,Telecommunications +335750,Telecommunications,Telecommunications +327560,Telecommunications,Telecommunications +327558,Telecommunications,Telecommunications +327555,Telecommunications,Telecommunications +327553,Telecommunications,Telecommunications +324879,Telecommunications,Telecommunications +324877,Telecommunications,Telecommunications +319153,Telecommunications,Telecommunications +319152,Telecommunications,Telecommunications +316011,Telecommunications,Telecommunications +316010,Telecommunications,Telecommunications +316009,Telecommunications,Telecommunications +316008,Telecommunications,Telecommunications +315987,Telecommunications,Telecommunications +315985,Telecommunications,Telecommunications +310630,Telecommunications,Telecommunications +303412,Telecommunications,Telecommunications +303409,Telecommunications,Telecommunications +296630,Telecommunications,Telecommunications +295170,Telecommunications,Telecommunications +285609,Telecommunications,Telecommunications +393889,Telecommunications,Telecommunications +382279,Telecommunications,Telecommunications +381236,Telecommunications,Telecommunications +381235,Telecommunications,Telecommunications +381232,Telecommunications,Telecommunications +379534,Telecommunications,Telecommunications +379531,Telecommunications,Telecommunications +164026,Science and Technology,Science and Technology +207641,Science and Technology,Science and Technology +164032,Science and Technology,Science and Technology +164031,Science and Technology,Science and Technology +115914,Telecommunications,Telecommunications +129073,Telecommunications,Telecommunications +172324,Telecommunications,Telecommunications +116890,Telecommunications,Telecommunications +116886,Telecommunications,Telecommunications +117914,Aboriginal Affairs,Aboriginal Affairs +372256,Aboriginal Affairs,Aboriginal Affairs +355999,Aboriginal Affairs,Aboriginal Affairs +115698,Aboriginal Affairs,Aboriginal Affairs +115697,Aboriginal Affairs,Aboriginal Affairs +115696,Aboriginal Affairs,Aboriginal Affairs +203268,Aboriginal Affairs,Aboriginal Affairs +338401,Aboriginal Affairs,Aboriginal Affairs +333295,Aboriginal Affairs,Aboriginal Affairs +324829,Aboriginal Affairs,Aboriginal Affairs +324795,Aboriginal Affairs,Aboriginal Affairs +312452,Aboriginal Affairs,Aboriginal Affairs +312451,Aboriginal Affairs,Aboriginal Affairs +303378,Aboriginal Affairs,Aboriginal Affairs +303355,Aboriginal Affairs,Aboriginal Affairs +303350,Aboriginal Affairs,Aboriginal Affairs +273026,Aboriginal Affairs,Aboriginal Affairs +273022,Aboriginal Affairs,Aboriginal Affairs +273021,Aboriginal Affairs,Aboriginal Affairs +273016,Aboriginal Affairs,Aboriginal Affairs +273015,Aboriginal Affairs,Aboriginal Affairs +263782,Aboriginal Affairs,Aboriginal Affairs +258093,Aboriginal Affairs,Aboriginal Affairs +255069,Aboriginal Affairs,Aboriginal Affairs +254991,Aboriginal Affairs,Aboriginal Affairs +254990,Aboriginal Affairs,Aboriginal Affairs +409967,Aboriginal Affairs,Aboriginal Affairs +394119,Aboriginal Affairs,Aboriginal Affairs +391543,Aboriginal Affairs,Aboriginal Affairs +387928,Aboriginal Affairs,Aboriginal Affairs +385762,Aboriginal Affairs,Aboriginal Affairs +383541,Aboriginal Affairs,Aboriginal Affairs +381396,Aboriginal Affairs,Aboriginal Affairs +117576,Science and Technology,Science and Technology +117576,Telecommunications,Telecommunications +117573,Science and Technology,Science and Technology +117573,Telecommunications,Telecommunications +192954,Aboriginal Affairs,Aboriginal Affairs +372862,Aboriginal Affairs,Aboriginal Affairs +115934,Aboriginal Affairs,Aboriginal Affairs +166208,Aboriginal Affairs,Aboriginal Affairs +159148,Aboriginal Affairs,Aboriginal Affairs +159146,Aboriginal Affairs,Aboriginal Affairs +159138,Aboriginal Affairs,Aboriginal Affairs +159137,Aboriginal Affairs,Aboriginal Affairs +159136,Aboriginal Affairs,Aboriginal Affairs +159133,Aboriginal Affairs,Aboriginal Affairs +211460,Aboriginal Affairs,Aboriginal Affairs +210493,Aboriginal Affairs,Aboriginal Affairs +121056,Aboriginal Affairs,Aboriginal Affairs +121055,Aboriginal Affairs,Aboriginal Affairs +161685,Arts and Culture,Arts and Culture +161684,Arts and Culture,Arts and Culture +118374,Arts and Culture,Arts and Culture +447512,Broadcasting,Radiodiffusion +540900,Broadcasting,Radiodiffusion +152771,Broadcasting,Radiodiffusion +140835,Broadcasting,Radiodiffusion +265949,Broadcasting,Radiodiffusion +440198,Broadcasting,Radiodiffusion +429761,Broadcasting,Radiodiffusion +425019,Broadcasting,Radiodiffusion +414080,Broadcasting,Radiodiffusion +375119,Broadcasting,Radiodiffusion +540897,Broadcasting,Radiodiffusion +540892,Broadcasting,Radiodiffusion +533715,Broadcasting,Radiodiffusion +525368,Broadcasting,Radiodiffusion +525362,Broadcasting,Radiodiffusion +517748,Broadcasting,Radiodiffusion +515104,Broadcasting,Radiodiffusion +498372,Broadcasting,Radiodiffusion +479678,Broadcasting,Radiodiffusion +477209,Broadcasting,Radiodiffusion +477208,Broadcasting,Radiodiffusion +473296,Broadcasting,Radiodiffusion +470141,Broadcasting,Radiodiffusion +455579,Broadcasting,Radiodiffusion +455574,Broadcasting,Radiodiffusion +455538,Broadcasting,Radiodiffusion +442915,Broadcasting,Radiodiffusion +442909,Broadcasting,Radiodiffusion +140836,Broadcasting,Radiodiffusion +260229,Broadcasting,Radiodiffusion +238169,Broadcasting,Radiodiffusion +238149,Broadcasting,Radiodiffusion +237869,Broadcasting,Radiodiffusion +237829,Broadcasting,Radiodiffusion +232089,Broadcasting,Radiodiffusion +231995,Broadcasting,Radiodiffusion +231993,Broadcasting,Radiodiffusion +231992,Broadcasting,Radiodiffusion +231991,Broadcasting,Radiodiffusion +231990,Broadcasting,Radiodiffusion +231989,Broadcasting,Radiodiffusion +429760,Broadcasting,Radiodiffusion +427846,Broadcasting,Radiodiffusion +425123,Broadcasting,Radiodiffusion +420390,Broadcasting,Radiodiffusion +334713,Broadcasting,Radiodiffusion +334712,Broadcasting,Radiodiffusion +328097,Broadcasting,Radiodiffusion +375858,Science and Technology,Science and Technology +374983,Science and Technology,Science and Technology +170554,Science and Technology,Science and Technology +170553,Science and Technology,Science and Technology +170552,Science and Technology,Science and Technology +168144,Science and Technology,Science and Technology +168143,Science and Technology,Science and Technology +165833,Science and Technology,Science and Technology +163991,Science and Technology,Science and Technology +162093,Science and Technology,Science and Technology +159190,Science and Technology,Science and Technology +156580,Science and Technology,Science and Technology +156579,Science and Technology,Science and Technology +156578,Science and Technology,Science and Technology +151860,Science and Technology,Science and Technology +151841,Science and Technology,Science and Technology +142622,Science and Technology,Science and Technology +138357,Science and Technology,Science and Technology +223267,Science and Technology,Science and Technology +217694,Science and Technology,Science and Technology +217693,Science and Technology,Science and Technology +217692,Science and Technology,Science and Technology +217690,Science and Technology,Science and Technology +212098,Science and Technology,Science and Technology +207201,Science and Technology,Science and Technology +207200,Science and Technology,Science and Technology +207199,Science and Technology,Science and Technology +207197,Science and Technology,Science and Technology +202546,Science and Technology,Science and Technology +202544,Science and Technology,Science and Technology +202542,Science and Technology,Science and Technology +199881,Science and Technology,Science and Technology +199875,Science and Technology,Science and Technology +199871,Science and Technology,Science and Technology +194008,Science and Technology,Science and Technology +194007,Science and Technology,Science and Technology +188984,Science and Technology,Science and Technology +188978,Science and Technology,Science and Technology +185244,Science and Technology,Science and Technology +174889,Science and Technology,Science and Technology +172946,Science and Technology,Science and Technology +172945,Science and Technology,Science and Technology +171860,Science and Technology,Science and Technology +171849,Science and Technology,Science and Technology +374972,Science and Technology,Science and Technology +374851,Science and Technology,Science and Technology +371920,Science and Technology,Science and Technology +371915,Science and Technology,Science and Technology +371906,Science and Technology,Science and Technology +371903,Science and Technology,Science and Technology +371850,Science and Technology,Science and Technology +365050,Science and Technology,Science and Technology +359921,Science and Technology,Science and Technology +359709,Science and Technology,Science and Technology +353796,Science and Technology,Science and Technology +353793,Science and Technology,Science and Technology +348918,Science and Technology,Science and Technology +348916,Science and Technology,Science and Technology +338576,Science and Technology,Science and Technology +338570,Science and Technology,Science and Technology +338568,Science and Technology,Science and Technology +335954,Science and Technology,Science and Technology +331605,Science and Technology,Science and Technology +327505,Science and Technology,Science and Technology +324589,Science and Technology,Science and Technology +318814,Science and Technology,Science and Technology +316052,Science and Technology,Science and Technology +312940,Science and Technology,Science and Technology +312938,Science and Technology,Science and Technology +303790,Science and Technology,Science and Technology +303592,Science and Technology,Science and Technology +303590,Science and Technology,Science and Technology +303589,Science and Technology,Science and Technology +290651,Science and Technology,Science and Technology +290648,Science and Technology,Science and Technology +268595,Science and Technology,Science and Technology +268592,Science and Technology,Science and Technology +264058,Science and Technology,Science and Technology +259265,Science and Technology,Science and Technology +259263,Science and Technology,Science and Technology +254090,Science and Technology,Science and Technology +254089,Science and Technology,Science and Technology +250873,Science and Technology,Science and Technology +250863,Science and Technology,Science and Technology +250855,Science and Technology,Science and Technology +245356,Science and Technology,Science and Technology +245355,Science and Technology,Science and Technology +240847,Science and Technology,Science and Technology +240843,Science and Technology,Science and Technology +240840,Science and Technology,Science and Technology +240836,Science and Technology,Science and Technology +240834,Science and Technology,Science and Technology +236663,Science and Technology,Science and Technology +236661,Science and Technology,Science and Technology +233606,Science and Technology,Science and Technology +233604,Science and Technology,Science and Technology +233602,Science and Technology,Science and Technology +230408,Science and Technology,Science and Technology +227030,Science and Technology,Science and Technology +223298,Science and Technology,Science and Technology +433729,Science and Technology,Science and Technology +433694,Science and Technology,Science and Technology +432729,Science and Technology,Science and Technology +432721,Science and Technology,Science and Technology +432720,Science and Technology,Science and Technology +431281,Science and Technology,Science and Technology +431188,Science and Technology,Science and Technology +431109,Science and Technology,Science and Technology +431094,Science and Technology,Science and Technology +431079,Science and Technology,Science and Technology +431076,Science and Technology,Science and Technology +431071,Science and Technology,Science and Technology +431067,Science and Technology,Science and Technology +431064,Science and Technology,Science and Technology +431063,Science and Technology,Science and Technology +428909,Science and Technology,Science and Technology +428908,Science and Technology,Science and Technology +428905,Science and Technology,Science and Technology +428903,Science and Technology,Science and Technology +426063,Science and Technology,Science and Technology +426059,Science and Technology,Science and Technology +424182,Science and Technology,Science and Technology +424170,Science and Technology,Science and Technology +424156,Science and Technology,Science and Technology +422390,Science and Technology,Science and Technology +422387,Science and Technology,Science and Technology +420049,Science and Technology,Science and Technology +420042,Science and Technology,Science and Technology +420040,Science and Technology,Science and Technology +420038,Science and Technology,Science and Technology +420036,Science and Technology,Science and Technology +417947,Science and Technology,Science and Technology +417944,Science and Technology,Science and Technology +417943,Science and Technology,Science and Technology +416687,Science and Technology,Science and Technology +416680,Science and Technology,Science and Technology +416673,Science and Technology,Science and Technology +413653,Science and Technology,Science and Technology +413648,Science and Technology,Science and Technology +413646,Science and Technology,Science and Technology +413642,Science and Technology,Science and Technology +413637,Science and Technology,Science and Technology +413621,Science and Technology,Science and Technology +413612,Science and Technology,Science and Technology +413606,Science and Technology,Science and Technology +413600,Science and Technology,Science and Technology +410293,Science and Technology,Science and Technology +410292,Science and Technology,Science and Technology +408077,Science and Technology,Science and Technology +408074,Science and Technology,Science and Technology +403725,Science and Technology,Science and Technology +400817,Science and Technology,Science and Technology +398958,Science and Technology,Science and Technology +391354,Science and Technology,Science and Technology +387891,Science and Technology,Science and Technology +387883,Science and Technology,Science and Technology +387877,Science and Technology,Science and Technology +387870,Science and Technology,Science and Technology +385482,Science and Technology,Science and Technology +385479,Science and Technology,Science and Technology +385477,Science and Technology,Science and Technology +385462,Science and Technology,Science and Technology +385460,Science and Technology,Science and Technology +385450,Science and Technology,Science and Technology +385442,Science and Technology,Science and Technology +385433,Science and Technology,Science and Technology +385430,Science and Technology,Science and Technology +385425,Science and Technology,Science and Technology +382561,Science and Technology,Science and Technology +382560,Science and Technology,Science and Technology +382557,Science and Technology,Science and Technology +381501,Science and Technology,Science and Technology +379723,Science and Technology,Science and Technology +376538,Science and Technology,Science and Technology +376537,Science and Technology,Science and Technology +376536,Science and Technology,Science and Technology +376535,Science and Technology,Science and Technology +229191,Science and Technology,Science and Technology +339253,Science and Technology,Science and Technology +149690,Science and Technology,Science and Technology +149689,Science and Technology,Science and Technology +149688,Science and Technology,Science and Technology +149687,Science and Technology,Science and Technology +149686,Science and Technology,Science and Technology +149685,Science and Technology,Science and Technology +149684,Science and Technology,Science and Technology +149683,Science and Technology,Science and Technology +149682,Science and Technology,Science and Technology +149681,Science and Technology,Science and Technology +149679,Science and Technology,Science and Technology +149670,Science and Technology,Science and Technology +149669,Science and Technology,Science and Technology +149668,Science and Technology,Science and Technology +149667,Science and Technology,Science and Technology +149666,Science and Technology,Science and Technology +149665,Science and Technology,Science and Technology +149664,Science and Technology,Science and Technology +149663,Science and Technology,Science and Technology +149662,Science and Technology,Science and Technology +149661,Science and Technology,Science and Technology +149660,Science and Technology,Science and Technology +139634,Science and Technology,Science and Technology +120899,Science and Technology,Science and Technology +229189,Science and Technology,Science and Technology +207395,Science and Technology,Science and Technology +207381,Science and Technology,Science and Technology +201233,Science and Technology,Science and Technology +201232,Science and Technology,Science and Technology +201231,Science and Technology,Science and Technology +201230,Science and Technology,Science and Technology +201229,Science and Technology,Science and Technology +201228,Science and Technology,Science and Technology +149693,Science and Technology,Science and Technology +149692,Science and Technology,Science and Technology +149691,Science and Technology,Science and Technology +311034,Science and Technology,Science and Technology +245730,Science and Technology,Science and Technology +245709,Science and Technology,Science and Technology +229195,Science and Technology,Science and Technology +229194,Science and Technology,Science and Technology +229193,Science and Technology,Science and Technology +544323,Telecommunications,Telecommunications +465057,Telecommunications,Telecommunications +455513,Telecommunications,Telecommunications +450154,Telecommunications,Telecommunications +443791,Telecommunications,Telecommunications +443790,Telecommunications,Telecommunications +443789,Telecommunications,Telecommunications +398954,Telecommunications,Telecommunications +392473,Telecommunications,Telecommunications +391296,Telecommunications,Telecommunications +457696,Science and Technology,Science and Technology +457695,Science and Technology,Science and Technology +162788,Science and Technology,Science and Technology +162787,Science and Technology,Science and Technology +162786,Science and Technology,Science and Technology +156125,Science and Technology,Science and Technology +156123,Science and Technology,Science and Technology +156118,Science and Technology,Science and Technology +246116,Science and Technology,Science and Technology +237194,Science and Technology,Science and Technology +227509,Science and Technology,Science and Technology +200590,Science and Technology,Science and Technology +444003,Science and Technology,Science and Technology +431069,Science and Technology,Science and Technology +422498,Science and Technology,Science and Technology +420388,Science and Technology,Science and Technology +420387,Science and Technology,Science and Technology +420386,Science and Technology,Science and Technology +418321,Science and Technology,Science and Technology +418320,Science and Technology,Science and Technology +418316,Science and Technology,Science and Technology +418315,Science and Technology,Science and Technology +417183,Science and Technology,Science and Technology +417173,Science and Technology,Science and Technology +410071,Science and Technology,Science and Technology +404041,Science and Technology,Science and Technology +400994,Science and Technology,Science and Technology +400992,Science and Technology,Science and Technology +399110,Science and Technology,Science and Technology +399109,Science and Technology,Science and Technology +399108,Science and Technology,Science and Technology +399107,Science and Technology,Science and Technology +399106,Science and Technology,Science and Technology +399105,Science and Technology,Science and Technology +399104,Science and Technology,Science and Technology +396506,Science and Technology,Science and Technology +396501,Science and Technology,Science and Technology +396489,Science and Technology,Science and Technology +394537,Science and Technology,Science and Technology +394536,Science and Technology,Science and Technology +392717,Science and Technology,Science and Technology +392716,Science and Technology,Science and Technology +391813,Science and Technology,Science and Technology +382658,Science and Technology,Science and Technology +382657,Science and Technology,Science and Technology +342357,Science and Technology,Science and Technology +333753,Science and Technology,Science and Technology +333752,Science and Technology,Science and Technology +333751,Science and Technology,Science and Technology +333750,Science and Technology,Science and Technology +313277,Science and Technology,Science and Technology +313276,Science and Technology,Science and Technology +502931,Science and Technology,Science and Technology +502926,Science and Technology,Science and Technology +488393,Science and Technology,Science and Technology +468569,Science and Technology,Science and Technology +468566,Science and Technology,Science and Technology +458908,Science and Technology,Science and Technology +450292,Telecommunications,Telecommunications +444003,Telecommunications,Telecommunications +227509,Telecommunications,Telecommunications +200590,Telecommunications,Telecommunications +162788,Telecommunications,Telecommunications +162787,Telecommunications,Telecommunications +162786,Telecommunications,Telecommunications +156125,Telecommunications,Telecommunications +156123,Telecommunications,Telecommunications +156118,Telecommunications,Telecommunications +375035,Telecommunications,Telecommunications +342357,Telecommunications,Telecommunications +333753,Telecommunications,Telecommunications +333752,Telecommunications,Telecommunications +333751,Telecommunications,Telecommunications +313277,Telecommunications,Telecommunications +313276,Telecommunications,Telecommunications +246116,Telecommunications,Telecommunications +237194,Telecommunications,Telecommunications +431069,Telecommunications,Telecommunications +422498,Telecommunications,Telecommunications +420388,Telecommunications,Telecommunications +420387,Telecommunications,Telecommunications +420386,Telecommunications,Telecommunications +418321,Telecommunications,Telecommunications +418316,Telecommunications,Telecommunications +418315,Telecommunications,Telecommunications +417183,Telecommunications,Telecommunications +417173,Telecommunications,Telecommunications +410071,Telecommunications,Telecommunications +404042,Telecommunications,Telecommunications +404041,Telecommunications,Telecommunications +400994,Telecommunications,Telecommunications +400992,Telecommunications,Telecommunications +399110,Telecommunications,Telecommunications +399109,Telecommunications,Telecommunications +399108,Telecommunications,Telecommunications +399107,Telecommunications,Telecommunications +399106,Telecommunications,Telecommunications +399105,Telecommunications,Telecommunications +399104,Telecommunications,Telecommunications +396506,Telecommunications,Telecommunications +396501,Telecommunications,Telecommunications +396489,Telecommunications,Telecommunications +394536,Telecommunications,Telecommunications +392717,Telecommunications,Telecommunications +392716,Telecommunications,Telecommunications +391813,Telecommunications,Telecommunications +382658,Telecommunications,Telecommunications +382657,Telecommunications,Telecommunications +529642,Telecommunications,Telecommunications +502931,Telecommunications,Telecommunications +499787,Telecommunications,Telecommunications +491781,Telecommunications,Telecommunications +488393,Telecommunications,Telecommunications +468569,Telecommunications,Telecommunications +468566,Telecommunications,Telecommunications +458908,Telecommunications,Telecommunications +457697,Telecommunications,Telecommunications +457696,Telecommunications,Telecommunications +121266,Aboriginal Affairs,Aboriginal Affairs +121265,Aboriginal Affairs,Aboriginal Affairs +121264,Aboriginal Affairs,Aboriginal Affairs +121262,Aboriginal Affairs,Aboriginal Affairs +121257,Aboriginal Affairs,Aboriginal Affairs +121271,Aboriginal Affairs,Aboriginal Affairs +124377,Aboriginal Affairs,Aboriginal Affairs +124374,Aboriginal Affairs,Aboriginal Affairs +355476,Aboriginal Affairs,Aboriginal Affairs +355473,Aboriginal Affairs,Aboriginal Affairs +154615,Aboriginal Affairs,Aboriginal Affairs +154614,Aboriginal Affairs,Aboriginal Affairs +355467,Aboriginal Affairs,Aboriginal Affairs +355464,Aboriginal Affairs,Aboriginal Affairs +355462,Aboriginal Affairs,Aboriginal Affairs +355459,Aboriginal Affairs,Aboriginal Affairs +355451,Aboriginal Affairs,Aboriginal Affairs +355448,Aboriginal Affairs,Aboriginal Affairs +355446,Aboriginal Affairs,Aboriginal Affairs +355444,Aboriginal Affairs,Aboriginal Affairs +355442,Aboriginal Affairs,Aboriginal Affairs +355439,Aboriginal Affairs,Aboriginal Affairs +355437,Aboriginal Affairs,Aboriginal Affairs +355434,Aboriginal Affairs,Aboriginal Affairs +355431,Aboriginal Affairs,Aboriginal Affairs +355430,Aboriginal Affairs,Aboriginal Affairs +355428,Aboriginal Affairs,Aboriginal Affairs +347957,Aboriginal Affairs,Aboriginal Affairs +347956,Aboriginal Affairs,Aboriginal Affairs +347955,Aboriginal Affairs,Aboriginal Affairs +347953,Aboriginal Affairs,Aboriginal Affairs +347952,Aboriginal Affairs,Aboriginal Affairs +347951,Aboriginal Affairs,Aboriginal Affairs +347950,Aboriginal Affairs,Aboriginal Affairs +347949,Aboriginal Affairs,Aboriginal Affairs +347948,Aboriginal Affairs,Aboriginal Affairs +347947,Aboriginal Affairs,Aboriginal Affairs +347946,Aboriginal Affairs,Aboriginal Affairs +347945,Aboriginal Affairs,Aboriginal Affairs +347944,Aboriginal Affairs,Aboriginal Affairs +347943,Aboriginal Affairs,Aboriginal Affairs +347942,Aboriginal Affairs,Aboriginal Affairs +347941,Aboriginal Affairs,Aboriginal Affairs +347940,Aboriginal Affairs,Aboriginal Affairs +478822,Aboriginal Affairs,Aboriginal Affairs +463668,Aboriginal Affairs,Aboriginal Affairs +461068,Aboriginal Affairs,Aboriginal Affairs +440283,Aboriginal Affairs,Aboriginal Affairs +440281,Aboriginal Affairs,Aboriginal Affairs +440272,Aboriginal Affairs,Aboriginal Affairs +434575,Aboriginal Affairs,Aboriginal Affairs +432153,Aboriginal Affairs,Aboriginal Affairs +430168,Aboriginal Affairs,Aboriginal Affairs +427567,Aboriginal Affairs,Aboriginal Affairs +427561,Aboriginal Affairs,Aboriginal Affairs +423204,Aboriginal Affairs,Aboriginal Affairs +414455,Aboriginal Affairs,Aboriginal Affairs +414390,Aboriginal Affairs,Aboriginal Affairs +355483,Aboriginal Affairs,Aboriginal Affairs +355482,Aboriginal Affairs,Aboriginal Affairs +355481,Aboriginal Affairs,Aboriginal Affairs +355480,Aboriginal Affairs,Aboriginal Affairs +355478,Aboriginal Affairs,Aboriginal Affairs +395383,Science and Technology,Science and Technology +478821,Science and Technology,Science and Technology +463465,Science and Technology,Science and Technology +515189,Science and Technology,Science and Technology +448031,Science and Technology,Science and Technology +162127,Science and Technology,Science and Technology +151357,Science and Technology,Science and Technology +124628,Science and Technology,Science and Technology +120374,Science and Technology,Science and Technology +391222,Science and Technology,Science and Technology +389978,Science and Technology,Science and Technology +536105,Science and Technology,Science and Technology +128615,Aboriginal Affairs,Aboriginal Affairs +124387,Aboriginal Affairs,Aboriginal Affairs +537809,Aboriginal Affairs,Aboriginal Affairs +520977,Aboriginal Affairs,Aboriginal Affairs +267209,Aboriginal Affairs,Aboriginal Affairs +146284,Aboriginal Affairs,Aboriginal Affairs +453204,Aboriginal Affairs,Aboriginal Affairs +448626,Aboriginal Affairs,Aboriginal Affairs +127836,Aboriginal Affairs,Aboriginal Affairs +127835,Aboriginal Affairs,Aboriginal Affairs +127847,Aboriginal Affairs,Aboriginal Affairs +127845,Aboriginal Affairs,Aboriginal Affairs +353645,Science and Technology,Science and Technology +460938,Science and Technology,Science and Technology +138514,Science and Technology,Science and Technology +377430,Science and Technology,Science and Technology +374146,Science and Technology,Science and Technology +374143,Science and Technology,Science and Technology +374139,Science and Technology,Science and Technology +373400,Science and Technology,Science and Technology +373399,Science and Technology,Science and Technology +373398,Science and Technology,Science and Technology +373397,Science and Technology,Science and Technology +373395,Science and Technology,Science and Technology +373394,Science and Technology,Science and Technology +373392,Science and Technology,Science and Technology +373391,Science and Technology,Science and Technology +373390,Science and Technology,Science and Technology +373389,Science and Technology,Science and Technology +373382,Science and Technology,Science and Technology +373381,Science and Technology,Science and Technology +373380,Science and Technology,Science and Technology +373379,Science and Technology,Science and Technology +373378,Science and Technology,Science and Technology +373377,Science and Technology,Science and Technology +373376,Science and Technology,Science and Technology +373375,Science and Technology,Science and Technology +373374,Science and Technology,Science and Technology +373373,Science and Technology,Science and Technology +373372,Science and Technology,Science and Technology +373371,Science and Technology,Science and Technology +129634,Telecommunications,Telecommunications +160473,Aboriginal Affairs,Aboriginal Affairs +381285,Government Procurement,Government Procurement +393859,Government Procurement,Government Procurement +157229,Government Procurement,Government Procurement +130315,Health,Health +130314,Health,Health +123639,Other,Climate Change +129138,Other,Broadcasting +129136,Other,Broadcasting +159432,Agriculture,Agriculture +159432,Consumer Issues,Consumer Issues +159432,Environment,Environment +159432,Health,Health +124391,Financial Institutions,Financial Institutions +124390,Financial Institutions,Financial Institutions +128160,Financial Institutions,Financial Institutions +124394,Financial Institutions,Financial Institutions +196908,Energy,Energy +196907,Energy,Energy +122678,Energy,Energy +122676,Energy,Energy +122675,Energy,Energy +122656,Energy,Energy +122654,Energy,Energy +172184,Energy,Energy +169544,Energy,Energy +168579,Energy,Energy +158513,Energy,Energy +158512,Energy,Energy +156950,Energy,Energy +132394,Energy,Energy +128839,Energy,Energy +122876,Energy,Energy +122875,Energy,Energy +122874,Energy,Energy +122862,Energy,Energy +122861,Energy,Energy +122860,Energy,Energy +122859,Energy,Energy +122858,Energy,Energy +122857,Energy,Energy +122856,Energy,Energy +122855,Energy,Energy +122854,Energy,Energy +122775,Energy,Energy +122774,Energy,Energy +122684,Energy,Energy +122683,Energy,Energy +122682,Energy,Energy +122681,Energy,Energy +122680,Energy,Energy +122679,Energy,Energy +216095,Energy,Energy +216093,Energy,Energy +122774,Other,Fundy Tidal Power Demonstration Project +122684,Other,Fundy Tidal Power Demonstration Project +122683,Other,Fundy Tidal Power Demonstration Project +122682,Other,Fundy Tidal Power Demonstration Project +122681,Other,Fundy Tidal Power Demonstration Project +122680,Other,Fundy Tidal Power Demonstration Project +122679,Other,Fundy Tidal Power Demonstration Project +122678,Other,Fundy Tidal Power Demonstration Project +122676,Other,Fundy Tidal Power Demonstration Project +122675,Other,Fundy Tidal Power Demonstration Project +122656,Other,Fundy Tidal Power Demonstration Project +122654,Other,Fundy Tidal Power Demonstration Project +132394,Other,Fundy Tidal Power Demonstration Project +128839,Other,Fundy Tidal Power Demonstration Project +122876,Other,Fundy Tidal Power Demonstration Project +122875,Other,Fundy Tidal Power Demonstration Project +122874,Other,Fundy Tidal Power Demonstration Project +122862,Other,Fundy Tidal Power Demonstration Project +122861,Other,Fundy Tidal Power Demonstration Project +122860,Other,Fundy Tidal Power Demonstration Project +122859,Other,Fundy Tidal Power Demonstration Project +122858,Other,Fundy Tidal Power Demonstration Project +122857,Other,Fundy Tidal Power Demonstration Project +122856,Other,Fundy Tidal Power Demonstration Project +122855,Other,Fundy Tidal Power Demonstration Project +122854,Other,Fundy Tidal Power Demonstration Project +122496,Energy,Energy +125072,Taxation and Finance,Taxation and Finance +124317,Other,Bill C-20 +122495,Other,Nutrition Facts Education Initiative +385325,Defence,Defence +381371,Defence,Defence +140394,Employment and Training,Employment and Training +523884,Government Procurement,Government Procurement +523543,Government Procurement,Government Procurement +196514,Government Procurement,Government Procurement +196507,Government Procurement,Government Procurement +235991,Government Procurement,Government Procurement +394263,Government Procurement,Government Procurement +388302,Government Procurement,Government Procurement +356542,Government Procurement,Government Procurement +344221,Government Procurement,Government Procurement +344220,Government Procurement,Government Procurement +344218,Government Procurement,Government Procurement +342005,Government Procurement,Government Procurement +342003,Government Procurement,Government Procurement +341997,Government Procurement,Government Procurement +341995,Government Procurement,Government Procurement +341989,Government Procurement,Government Procurement +341988,Government Procurement,Government Procurement +338589,Government Procurement,Government Procurement +338588,Government Procurement,Government Procurement +338587,Government Procurement,Government Procurement +335533,Government Procurement,Government Procurement +333252,Government Procurement,Government Procurement +331603,Government Procurement,Government Procurement +331600,Government Procurement,Government Procurement +331599,Government Procurement,Government Procurement +323534,Government Procurement,Government Procurement +505044,Government Procurement,Government Procurement +497313,Government Procurement,Government Procurement +485464,Government Procurement,Government Procurement +476229,Government Procurement,Government Procurement +474568,Government Procurement,Government Procurement +412683,Government Procurement,Government Procurement +409622,Government Procurement,Government Procurement +540541,Government Procurement,Government Procurement +540310,Government Procurement,Government Procurement +533239,Government Procurement,Government Procurement +531536,Government Procurement,Government Procurement +527468,Government Procurement,Government Procurement +527452,Government Procurement,Government Procurement +153066,Consumer Issues,Consumer Issues +153065,Consumer Issues,Consumer Issues +132823,Consumer Issues,Consumer Issues +132818,Consumer Issues,Consumer Issues +153065,Industry,Industry +132820,Industry,Industry +190925,Industry,Industry +127845,Environment,Environment +127835,Environment,Environment +127835,Industry,Industry +127847,Mining,Mining +127845,Mining,Mining +127842,Mining,Mining +127840,Mining,Mining +127838,Mining,Mining +127836,Mining,Mining +127840,Transportation,Transportation +127838,Transportation,Transportation +127836,Transportation,Transportation +208890,Consumer Issues,Consumer Issues +275235,Consumer Issues,Consumer Issues +435055,Education,Education +429984,Justice and Law Enforcement,Justice and Law Enforcement +427106,Justice and Law Enforcement,Justice and Law Enforcement +264309,Justice and Law Enforcement,Justice and Law Enforcement +420661,Justice and Law Enforcement,Justice and Law Enforcement +420606,Justice and Law Enforcement,Justice and Law Enforcement +420601,Justice and Law Enforcement,Justice and Law Enforcement +419333,Justice and Law Enforcement,Justice and Law Enforcement +418622,Justice and Law Enforcement,Justice and Law Enforcement +386097,Justice and Law Enforcement,Justice and Law Enforcement +386095,Justice and Law Enforcement,Justice and Law Enforcement +317511,Justice and Law Enforcement,Justice and Law Enforcement +317510,Justice and Law Enforcement,Justice and Law Enforcement +317509,Justice and Law Enforcement,Justice and Law Enforcement +460301,Taxation and Finance,Taxation and Finance +456350,Taxation and Finance,Taxation and Finance +129102,Taxation and Finance,Taxation and Finance +354960,Taxation and Finance,Taxation and Finance +350277,Taxation and Finance,Taxation and Finance +335360,Taxation and Finance,Taxation and Finance +324468,Taxation and Finance,Taxation and Finance +324467,Taxation and Finance,Taxation and Finance +324455,Taxation and Finance,Taxation and Finance +324453,Taxation and Finance,Taxation and Finance +121614,Other,Oceans Iniitiative +121615,Other,Oceans Iniitiative +121634,Other,Canada' climate change policy +121635,Other,Canada' climate change policy +121637,Other,Candian Proposal on Buy American negotiations with the United States +121638,Other,Canadian proposal on Buy American negotiations with the US +121654,Other,Dictionary of Canadian Biographies and SSHRC +381287,Government Procurement,Government Procurement +157231,Regional Development,Regional Development +130354,Health,Health +124417,Other,Climate Change +135959,Other,Broadcasting +124279,Government Procurement,Government Procurement +159433,Agriculture,Agriculture +159433,Consumer Issues,Consumer Issues +159433,Environment,Environment +159433,Health,Health +124393,Financial Institutions,Financial Institutions +122754,Other,Economic Development +122034,Other,CF-18 OWSM +122036,Other,CF-18 OWSM +122054,Other,CF-18 OWSM +131334,Environment,Environment +131335,Environment,Environment +201047,Energy,Energy +122775,Other,Fundy Tidal Power Demonstration Project +122214,Other,Industrial expansion financing +122294,Industry,Industry +124854,Other,Access to Care +124854,Other,Financial Burden +122497,Energy,Energy +122374,Other,Tariff Rate Quota on barley and barley products +125087,Education,Education +125087,Taxation and Finance,Taxation and Finance +124320,Other,Bill C-20 +122454,Other,Shipping Policy +122474,Other,Nutrition Facts Education Initiative +122474,Other,Sodium +122474,Other,Transfat +140615,Other,Nutrition Facts Education Initiative +156878,Defence,Defence +140414,Employment and Training,Employment and Training +122685,Other,warnings +122688,Health,Santé +122694,Other,Health of Animals Act compensation for animals ordered destroyed +122714,Other,Health of Animals Act compensation for animals ordered destroyed +524694,Government Procurement,Government Procurement +122915,Government Procurement,Government Procurement +190925,Consumer Issues,Consumer Issues +153066,Industry,Industry +127847,Environment,Environment +127845,Industry,Industry +127835,Mining,Mining +127842,Transportation,Transportation +122934,Consumer Issues,Consumer Issues +159006,Transportation,Transportation +123034,Other,Food and Drug Regulations +123035,Other,Food and Drug Regulations +142875,Education,Education +440706,Justice and Law Enforcement,Justice and Law Enforcement +460939,Taxation and Finance,Taxation and Finance +129634,Regional Development,Regional Development +154003,Taxation and Finance,Taxation and Finance +123334,Other,National Forum on Management +135821,Government Procurement,Government Procurement +163876,Justice and Law Enforcement,Justice and Law Enforcement +123414,Other,Veterans Affairs +123414,Other,Government Contracting +123414,Other,Government Trade Obligations +157689,Industry,Industry +123514,Other,Agri-Food +123554,Other,narco-terrorists 'carte blanche' smuggling guns and drugs into Canada day and night. +123554,Other,narco-terrorists 'carte blanche' smuggling guns and drugs into Canada day and night. +147054,Consumer Issues,Consumer Issues +147054,Health,Health +132375,Taxation and Finance,Taxation and Finance +158558,Industry,Industry +158558,International Trade,International Trade +158558,Transportation,Transportation +123615,Other,Border Contingency Planning +123622,Other,Border preclearance +123616,Other,Border Staffing +123617,Other,Nexus program +123625,Other,Other Government Department Single Window +123626,Other,Nexus Expansion +123626,Other,Rail Passenger Preclearance +128158,Industry,Industry +343017,Taxation and Finance,Taxation and Finance +125073,Other,Education +134616,Other,Finance +123834,Other,Grain transportation +123837,Other,Operational Data Requirements +127844,Other,Environment +123955,Other,Temporary Foreign Worker Rules +476514,Labour,Labour +264567,Education,Education +124094,Other,25th Anniversary +152086,Other,25th Anniversary +124098,Other,25th Anniversary +124101,Other,25th Anniversary +145643,Other,25th Anniversary +145642,Other,25th Anniversary +124104,Other,25th Anniversary +145640,Other,25th Anniversary +124106,Other,25th Anniversary +124107,Other,25th Anniversary +124138,Other,G20 Summit +124138,Other,Recession Stimulus +124154,Other,Bill C-51 in respect of the reintroduction of amendments to the Food and Drugs Act +124154,Other,"Bill C-6, Canada Consumer Product Safety Act" +124174,Other,ILO Convention 138 on Minimum Age +125675,Other,World Day for Decent Work (C138) +128375,Other,Coopératives +481567,Industry,Industry +132915,Tourism,Tourism +124323,Other,Financial compensation +124382,Other,"Corporate Governance matters, regarding general operating by-laws" +124383,Other,"Corporate Governance matters, regarding general operating by-laws" +124386,Other,"Corporate Governance matters, regarding general operating by-laws" +124417,Other,Alaska Pipeline Project +124434,Other,Alaska Pipeline Project +124434,Other,Northern Pipeline Act +132979,Defence,Defence +124454,Other,Violence Against Women - Women's Action Plan +124480,Other,Land Management +158069,Agriculture,Agriculture +158069,Internal Trade,Internal Trade +158069,International Trade,International Trade +158069,Small Business,Small Business +124618,Other,Bill C-27: The Electronic Commerce Protection Act +124674,Other,H1N1 preparation and response +124740,Other,e-Health +124834,Other,Bill C-32 +124837,Other,Bill C-32;regulations under Tobacco Act +124849,Other,Bill C-32;regulations under Tobacco Act +124854,Other,Aboriginal Health +124854,Other,Product Labelling +124952,Other,Airline Competition +124952,Other,Canada-UAE Air Transport Agreement +124952,International Relations,International Relations +124952,International Trade,International Trade +124937,Tourism,Tourism +124952,Transportation,Transportation +124865,Other,Traceability +124863,Other,Imported products and their role/impact in the domestic market; +124863,Other,Markets status and opportunities; +124863,Other,On-Farm Food Safety Programs; +124863,Other,The emerging agreement on amendments to the AIT. +124863,Other,WTO and Canada-EU trade negotiations; +124884,Other,Research funding +145909,Other,Discussion sur la programmation en cours +124920,Other,Discussion sur les nouvelles orientations de l'Agence dans une ou plusieurs zones ciblées +124920,Other,Prise de contacts +124927,Other,Programmation régionale Afrique de l'Est +124925,Other,Programmation régionale Afrique de l'Est +124938,Industry,Industry +124938,Mining,Mining +354486,Industry,Industry +124943,Mining,Mining +124943,Industry,Industry +124943,Mining,Mining +124945,Industry,Industry +124945,Mining,Mining +124949,Industry,Industry +124949,Mining,Mining +451051,Environment,Environment +394424,Financial Institutions,Financial Institutions +149396,International Trade,International Trade +126256,International Trade,International Trade +125073,Other,Education +125077,Internal Trade,Internal Trade +125077,Internal Trade,Internal Trade +125071,Other,Biotech Regulation- Seeds Act +125085,Other,Airline competition +125085,Other,Canada-UAE Air Transport Agreement +125095,Other,National Farm Products Council +125096,Other,Manitoba Aerospace initiatives - discussion and update of opportunities and challenges +125096,Other,SADI / JSF project - update of activities +125101,Other,busniess conditions affecting manufacturers and exporters +125129,Other,Foreign Trade Zones +125135,Other,Airport Rent - elimination +125140,Other,Foreign Trade Zones +125137,Other,International aviation environment policy +125147,Other,Airport Rent - elimination +132947,Energy,Energy +125254,Other,Spectrum policy and regulation in relation to CWTA recommendations +125274,Employment and Training,Employment and Training +125298,Other,Lawful Access legislation +364464,Environment,Environment +146381,Other,Telecommunications +139091,Other,Broadcasting +142918,Other,Telecommunications +132979,Government Procurement,Government Procurement +125474,Employment and Training,Employment and Training +125474,Other,Employment and Training +125494,Other,Climate Change Policy +125595,Other,Regulatory Reform +125597,Other,Regulatory Reform +129335,Industry,Industry +148055,Small Business,Small Business +125677,Other,I.L.W.U. delegation +125694,Other,Foreign Affairs +125694,Regional Development,Regional Development +125734,Other,Southern Ontario Development Program +125874,Other,Communications +125974,Other,Marine Transportation +125975,Other,Marine Transportation +145901,Other,Climate Change and Clean Air +126054,Other,federal funding for social sciences and humanities +126055,Other,federal funding for social sciences and humanities +126436,Other,federal funding +126056,Other,federal funding for social sciences and humanities +126057,Other,federal funding for social sciences and humanities +126058,Other,federal funding for social sciences and humanities +126059,Other,federal funding for social sciences and humanities +126060,Other,federal funding for social sciences and humanities +126061,Other,federal funding for social sciences and humanities +126062,Other,federal funding for social sciences and humanities +126063,Other,federal funding for social sciences and humanities +126064,Other,federal funding for social sciences and humanities +126065,Other,federal funding for social sciences and humanities +126066,Other,federal funding for social sciences and humanities +130436,Other,Programmes d'acquisition d'hélicoptères +141899,Other,Post Secondary Education +150498,Other,Funding +141897,Other,Ocean Research +132854,Other,Infrastructure +127977,Infrastructure,Infrastructure +148958,Other,Privacy +126134,Other,Human Rights +126174,Industry,Industry +126155,Industry,Industry +126175,Health,Health +126179,Industry,Industry +126182,Industry,Industry +126199,Other,FOOD +126254,Government Procurement,Government Procurement +126254,Regional Development,Regional Development +130214,Justice and Law Enforcement,Justice et application des lois +425504,Employment and Training,Employment and Training +143897,Environment,Environment +126516,Other,Fish habitat conservation +128298,Infrastructure,Infrastructure +128294,Infrastructure,Infrastructure +126614,Other,Canadian Secured Credit Facility +126655,Other,Attempted to arrange meeting re: Bill C-27 +126696,Other,Attempted to arrange meeting re: HST +324450,Taxation and Finance,Taxation and Finance +324449,Taxation and Finance,Taxation and Finance +324448,Taxation and Finance,Taxation and Finance +324441,Taxation and Finance,Taxation and Finance +324439,Taxation and Finance,Taxation and Finance +324436,Taxation and Finance,Taxation and Finance +286934,Taxation and Finance,Taxation and Finance +435055,Taxation and Finance,Taxation and Finance +420606,Taxation and Finance,Taxation and Finance +415133,Taxation and Finance,Taxation and Finance +411614,Taxation and Finance,Taxation and Finance +392996,Taxation and Finance,Taxation and Finance +392994,Taxation and Finance,Taxation and Finance +392355,Taxation and Finance,Taxation and Finance +388999,Taxation and Finance,Taxation and Finance +388998,Taxation and Finance,Taxation and Finance +384317,Taxation and Finance,Taxation and Finance +383283,Taxation and Finance,Taxation and Finance +373368,Taxation and Finance,Taxation and Finance +154003,Regional Development,Regional Development +163874,Justice and Law Enforcement,Justice and Law Enforcement +154878,Justice and Law Enforcement,Justice and Law Enforcement +150459,Justice and Law Enforcement,Justice and Law Enforcement +128940,Justice and Law Enforcement,Justice and Law Enforcement +241240,Justice and Law Enforcement,Justice and Law Enforcement +163879,Justice and Law Enforcement,Justice and Law Enforcement +163877,Justice and Law Enforcement,Justice and Law Enforcement +145035,Industry,Industry +132375,Consumer Issues,Consumer Issues +132374,Consumer Issues,Consumer Issues +132375,Health,Health +132374,Health,Health +132374,Taxation and Finance,Taxation and Finance +123614,Other,Border Contingency Planning +123594,Other,Border Contingency Planning +123623,Other,Border Contingency Planning +123622,Other,Border Contingency Planning +123621,Other,Border Contingency Planning +123618,Other,Border Contingency Planning +123617,Other,Border Contingency Planning +123616,Other,Border Contingency Planning +123621,Other,Border preclearance +123618,Other,Border preclearance +123617,Other,Border preclearance +123616,Other,Border preclearance +123615,Other,Border preclearance +123614,Other,Border preclearance +123594,Other,Border preclearance +123623,Other,Border preclearance +123615,Other,Border Staffing +123614,Other,Border Staffing +123594,Other,Border Staffing +123623,Other,Border Staffing +123622,Other,Border Staffing +123621,Other,Border Staffing +123618,Other,Border Staffing +123617,Other,Border Staffing +123616,Other,Nexus program +123615,Other,Nexus program +123614,Other,Nexus program +123594,Other,Nexus program +123623,Other,Nexus program +123622,Other,Nexus program +123621,Other,Nexus program +123618,Other,Nexus program +128157,Industry,Industry +128155,Industry,Industry +128159,Industry,Industry +339451,Taxation and Finance,Taxation and Finance +339212,Taxation and Finance,Taxation and Finance +375664,Taxation and Finance,Taxation and Finance +375663,Taxation and Finance,Taxation and Finance +375662,Taxation and Finance,Taxation and Finance +375661,Taxation and Finance,Taxation and Finance +370516,Taxation and Finance,Taxation and Finance +370150,Taxation and Finance,Taxation and Finance +348205,Taxation and Finance,Taxation and Finance +343018,Taxation and Finance,Taxation and Finance +123815,Other,Grain transportation +123814,Other,Grain transportation +476513,Labour,Labour +460858,Labour,Labour +123955,Labour,Labour +237013,Labour,Labour +456508,Labour,Labour +456507,Labour,Labour +448437,Labour,Labour +386162,Labour,Labour +386161,Labour,Labour +386160,Labour,Labour +323432,Labour,Labour +323431,Labour,Labour +323430,Labour,Labour +323429,Labour,Labour +524290,Labour,Labour +523791,Labour,Labour +520593,Labour,Labour +519542,Labour,Labour +518485,Labour,Labour +517256,Labour,Labour +514844,Labour,Labour +506444,Labour,Labour +503473,Labour,Labour +500011,Labour,Labour +492019,Labour,Labour +489715,Labour,Labour +489714,Labour,Labour +489713,Labour,Labour +476610,Labour,Labour +264565,Education,Education +264559,Education,Education +264575,Education,Education +264574,Education,Education +264571,Education,Education +264570,Education,Education +148163,Other,25th Anniversary +124095,Other,25th Anniversary +145641,Other,25th Anniversary +145639,Other,25th Anniversary +124102,Other,25th Anniversary +148173,Other,25th Anniversary +124103,Other,25th Anniversary +139198,Other,25th Anniversary +139197,Other,25th Anniversary +124105,Other,25th Anniversary +148258,Other,25th Anniversary +148172,Other,25th Anniversary +148168,Other,25th Anniversary +124134,Other,G20 Summit +124134,Other,Recession Stimulus +124256,Other,Coopératives +156630,Other,Coopératives +139394,Other,Coopératives +132143,Other,Coopératives +132136,Other,Coopératives +478267,Industry,Industry +472638,Industry,Industry +124261,Industry,Industry +203049,Industry,Industry +203047,Industry,Industry +189804,Industry,Industry +168062,Industry,Industry +159591,Industry,Industry +159586,Industry,Industry +134936,Industry,Industry +129255,Industry,Industry +259632,Industry,Industry +211968,Industry,Industry +374382,Industry,Industry +370507,Industry,Industry +304389,Industry,Industry +269834,Industry,Industry +269833,Industry,Industry +264072,Industry,Industry +412939,Industry,Industry +412936,Industry,Industry +519346,Industry,Industry +508150,Industry,Industry +124937,Other,Airline Competition +124936,Other,Airline Competition +124937,Other,Canada-UAE Air Transport Agreement +124936,Other,Canada-UAE Air Transport Agreement +124937,International Relations,International Relations +124936,International Relations,International Relations +124937,International Trade,International Trade +124936,International Trade,International Trade +124936,Tourism,Tourism +124952,Tourism,Tourism +124937,Transportation,Transportation +124920,Other,Discussion sur la programmation en cours +275269,Industry,Industry +334166,Industry,Industry +354484,Mining,Mining +334166,Mining,Mining +354485,Industry,Industry +349271,Industry,Industry +124943,Industry,Industry +361239,Industry,Industry +354483,Mining,Mining +354482,Industry,Industry +354460,Industry,Industry +448734,Environment,Environment +448732,Environment,Environment +533666,Environment,Environment +465839,Environment,Environment +465838,Environment,Environment +465837,Environment,Environment +465836,Environment,Environment +465835,Environment,Environment +465229,Environment,Environment +462006,Environment,Environment +369687,Financial Institutions,Financial Institutions +533666,Financial Institutions,Financial Institutions +169525,Financial Institutions,Financial Institutions +169524,Financial Institutions,Financial Institutions +169334,Financial Institutions,Financial Institutions +169333,Financial Institutions,Financial Institutions +169220,Financial Institutions,Financial Institutions +169219,Financial Institutions,Financial Institutions +169218,Financial Institutions,Financial Institutions +169217,Financial Institutions,Financial Institutions +169216,Financial Institutions,Financial Institutions +169215,Financial Institutions,Financial Institutions +169214,Financial Institutions,Financial Institutions +169213,Financial Institutions,Financial Institutions +169212,Financial Institutions,Financial Institutions +169211,Financial Institutions,Financial Institutions +169210,Financial Institutions,Financial Institutions +169209,Financial Institutions,Financial Institutions +169208,Financial Institutions,Financial Institutions +169207,Financial Institutions,Financial Institutions +169206,Financial Institutions,Financial Institutions +169205,Financial Institutions,Financial Institutions +169204,Financial Institutions,Financial Institutions +169167,Financial Institutions,Financial Institutions +169166,Financial Institutions,Financial Institutions +169165,Financial Institutions,Financial Institutions +196543,Financial Institutions,Financial Institutions +196542,Financial Institutions,Financial Institutions +196541,Financial Institutions,Financial Institutions +196540,Financial Institutions,Financial Institutions +196539,Financial Institutions,Financial Institutions +196538,Financial Institutions,Financial Institutions +196537,Financial Institutions,Financial Institutions +196536,Financial Institutions,Financial Institutions +196535,Financial Institutions,Financial Institutions +196534,Financial Institutions,Financial Institutions +196533,Financial Institutions,Financial Institutions +195470,Financial Institutions,Financial Institutions +195468,Financial Institutions,Financial Institutions +175152,Financial Institutions,Financial Institutions +175151,Financial Institutions,Financial Institutions +175150,Financial Institutions,Financial Institutions +175149,Financial Institutions,Financial Institutions +175148,Financial Institutions,Financial Institutions +175147,Financial Institutions,Financial Institutions +175146,Financial Institutions,Financial Institutions +170626,Financial Institutions,Financial Institutions +170625,Financial Institutions,Financial Institutions +170623,Financial Institutions,Financial Institutions +170621,Financial Institutions,Financial Institutions +170620,Financial Institutions,Financial Institutions +170619,Financial Institutions,Financial Institutions +169532,Financial Institutions,Financial Institutions +169530,Financial Institutions,Financial Institutions +169528,Financial Institutions,Financial Institutions +169527,Financial Institutions,Financial Institutions +465839,Financial Institutions,Financial Institutions +465838,Financial Institutions,Financial Institutions +465837,Financial Institutions,Financial Institutions +465836,Financial Institutions,Financial Institutions +465835,Financial Institutions,Financial Institutions +465232,Financial Institutions,Financial Institutions +465231,Financial Institutions,Financial Institutions +465229,Financial Institutions,Financial Institutions +462006,Financial Institutions,Financial Institutions +456964,Financial Institutions,Financial Institutions +456963,Financial Institutions,Financial Institutions +451051,Financial Institutions,Financial Institutions +448734,Financial Institutions,Financial Institutions +448732,Financial Institutions,Financial Institutions +448731,Financial Institutions,Financial Institutions +394434,Financial Institutions,Financial Institutions +394432,Financial Institutions,Financial Institutions +394430,Financial Institutions,Financial Institutions +394428,Financial Institutions,Financial Institutions +394426,Financial Institutions,Financial Institutions +132946,Energy,Energy +125199,Energy,Energy +132952,Energy,Energy +132951,Energy,Energy +346497,Environment,Environment +346477,Environment,Environment +136375,Environment,Environment +136374,Environment,Environment +125374,Environment,Environment +222693,Environment,Environment +210147,Environment,Environment +197393,Environment,Environment +161777,Environment,Environment +161206,Environment,Environment +155406,Environment,Environment +338815,Environment,Environment +318052,Environment,Environment +318050,Environment,Environment +318034,Environment,Environment +312311,Environment,Environment +308651,Environment,Environment +308649,Environment,Environment +308640,Environment,Environment +308638,Environment,Environment +301435,Environment,Environment +301433,Environment,Environment +294309,Environment,Environment +268829,Environment,Environment +264057,Environment,Environment +258529,Environment,Environment +253752,Environment,Environment +244425,Environment,Environment +244424,Environment,Environment +240292,Environment,Environment +240276,Environment,Environment +226069,Environment,Environment +364466,Environment,Environment +146379,Other,Telecommunications +146378,Other,Telecommunications +146377,Other,Telecommunications +146375,Other,Telecommunications +146207,Other,Telecommunications +146203,Other,Telecommunications +146199,Other,Telecommunications +142916,Other,Telecommunications +129574,Other,Telecommunications +125418,Other,Telecommunications +125415,Other,Telecommunications +134175,Other,Broadcasting +125416,Other,Broadcasting +139091,Other,Telecommunications +139089,Other,Telecommunications +130474,Other,Telecommunications +125416,Other,Telecommunications +146380,Other,Telecommunications +146376,Other,Telecommunications +146206,Other,Telecommunications +146201,Other,Telecommunications +148055,Industry,Industry +135996,Industry,Industry +135996,Small Business,Small Business +129335,Small Business,Small Business +125676,Other,I.L.W.U. delegation +125674,Other,I.L.W.U. delegation +141480,Other,I.L.W.U. delegation +125678,Other,I.L.W.U. delegation +129376,Other,Climate Change and Clean Air +126435,Other,federal funding +126434,Other,federal funding +130435,Other,Programmes d'acquisition d'hélicoptères +132849,Other,Post Secondary Education +126094,Other,Post Secondary Education +132854,Other,Funding +132829,Other,Funding +141896,Other,Ocean Research +132829,Other,Ocean Research +150498,Other,Ocean Research +129655,Other,Infrastructure +137455,Other,Privacy +126134,Other,Privacy +153127,Other,Privacy +153127,Other,Human Rights +148958,Other,Human Rights +137455,Other,Human Rights +136275,Other,Human Rights +423486,Employment and Training,Employment and Training +418744,Employment and Training,Employment and Training +379157,Employment and Training,Employment and Training +455469,Employment and Training,Employment and Training +445532,Employment and Training,Employment and Training +441964,Employment and Training,Employment and Training +441948,Employment and Training,Employment and Training +435106,Employment and Training,Employment and Training +435103,Employment and Training,Employment and Training +435101,Employment and Training,Employment and Training +435095,Employment and Training,Employment and Training +435093,Employment and Training,Employment and Training +435092,Employment and Training,Employment and Training +432313,Employment and Training,Employment and Training +432312,Employment and Training,Employment and Training +432311,Employment and Training,Employment and Training +432310,Employment and Training,Employment and Training +432309,Employment and Training,Employment and Training +432307,Employment and Training,Employment and Training +432306,Employment and Training,Employment and Training +430096,Employment and Training,Employment and Training +430094,Employment and Training,Employment and Training +143896,Environment,Environment +143894,Environment,Environment +143916,Environment,Environment +143915,Environment,Environment +143914,Environment,Environment +128297,Infrastructure,Infrastructure +128296,Infrastructure,Infrastructure +203688,Mining,Mining +148227,Other,CSCF - Wholesale Financing for Floorplanning +126835,Other,Health Claims +140616,Other,Nutrition Facts Education Initiative +418320,Industry,Industry +418316,Industry,Industry +200590,Industry,Industry +162788,Industry,Industry +162787,Industry,Industry +162786,Industry,Industry +156125,Industry,Industry +156123,Industry,Industry +156118,Industry,Industry +333750,Industry,Industry +313277,Industry,Industry +313276,Industry,Industry +246116,Industry,Industry +237194,Industry,Industry +227509,Industry,Industry +418315,Industry,Industry +417183,Industry,Industry +417173,Industry,Industry +410071,Industry,Industry +404042,Industry,Industry +404041,Industry,Industry +400994,Industry,Industry +400992,Industry,Industry +399110,Industry,Industry +399109,Industry,Industry +399108,Industry,Industry +399107,Industry,Industry +399106,Industry,Industry +399105,Industry,Industry +399104,Industry,Industry +396506,Industry,Industry +396501,Industry,Industry +396489,Industry,Industry +394536,Industry,Industry +392717,Industry,Industry +392716,Industry,Industry +391813,Industry,Industry +382658,Industry,Industry +382657,Industry,Industry +375035,Industry,Industry +375034,Industry,Industry +342357,Industry,Industry +333753,Industry,Industry +333752,Industry,Industry +333751,Industry,Industry +529642,Industry,Industry +502931,Industry,Industry +502926,Industry,Industry +499787,Industry,Industry +488393,Industry,Industry +468569,Industry,Industry +468566,Industry,Industry +458908,Industry,Industry +457697,Industry,Industry +457696,Industry,Industry +457695,Industry,Industry +450292,Industry,Industry +431069,Industry,Industry +422498,Industry,Industry +420388,Industry,Industry +420387,Industry,Industry +420386,Industry,Industry +491787,Agriculture,Agriculture +462027,Agriculture,Agriculture +227513,Agriculture,Agriculture +417174,Agriculture,Agriculture +410077,Agriculture,Agriculture +404048,Agriculture,Agriculture +404047,Agriculture,Agriculture +404046,Agriculture,Agriculture +404045,Agriculture,Agriculture +404044,Agriculture,Agriculture +356430,Agriculture,Agriculture +349399,Agriculture,Agriculture +310909,Agriculture,Agriculture +531949,Agriculture,Agriculture +529648,Agriculture,Agriculture +520342,Agriculture,Agriculture +518310,Agriculture,Agriculture +516000,Agriculture,Agriculture +502927,Agriculture,Agriculture +496268,Agriculture,Agriculture +310891,Employment and Training,Employment and Training +429316,Infrastructure,Infrastructure +417174,Infrastructure,Infrastructure +356430,Infrastructure,Infrastructure +310909,Infrastructure,Infrastructure +310891,Infrastructure,Infrastructure +310891,Regional Development,Regional Development +227513,Regional Development,Regional Development +356430,Regional Development,Regional Development +417174,Regional Development,Regional Development +404046,Regional Development,Regional Development +404043,Regional Development,Regional Development +520342,Regional Development,Regional Development +491789,Tourism,Tourism +491787,Tourism,Tourism +310891,Tourism,Tourism +227513,Tourism,Tourism +417174,Tourism,Tourism +410077,Tourism,Tourism +356430,Tourism,Tourism +520342,Tourism,Tourism +516000,Tourism,Tourism +334393,Health,Health +334391,Health,Health +188208,Health,Health +188207,Health,Health +188206,Health,Health +187144,Health,Health +174464,Health,Health +174004,Health,Health +172853,Health,Health +169535,Health,Health +169534,Health,Health +169234,Health,Health +169233,Health,Health +165968,Health,Health +165962,Health,Health +165822,Health,Health +165818,Health,Health +158035,Health,Health +158033,Health,Health +158031,Health,Health +325888,Health,Health +325884,Health,Health +306851,Health,Health +301499,Health,Health +301495,Health,Health +301492,Health,Health +300776,Health,Health +300774,Health,Health +300773,Health,Health +300771,Health,Health +289409,Health,Health +284429,Health,Health +280471,Health,Health +277488,Health,Health +270789,Health,Health +270730,Health,Health +266053,Health,Health +266052,Health,Health +266051,Health,Health +261232,Health,Health +257113,Health,Health +242667,Health,Health +242666,Health,Health +242665,Health,Health +242664,Health,Health +242663,Health,Health +242662,Health,Health +242661,Health,Health +238791,Health,Health +238669,Health,Health +234629,Health,Health +226641,Health,Health +226640,Health,Health +226639,Health,Health +220129,Health,Health +220128,Health,Health +220127,Health,Health +220027,Health,Health +220007,Health,Health +219987,Health,Health +210613,Health,Health +210612,Health,Health +210611,Health,Health +210610,Health,Health +210609,Health,Health +210608,Health,Health +210607,Health,Health +210327,Health,Health +208987,Health,Health +206349,Health,Health +195004,Health,Health +191107,Health,Health +191106,Health,Health +191104,Health,Health +190588,Health,Health +190586,Health,Health +190585,Health,Health +188209,Health,Health +340556,Health,Health +340553,Health,Health +334392,Taxation and Finance,Taxation and Finance +334391,Taxation and Finance,Taxation and Finance +158031,Taxation and Finance,Taxation and Finance +149356,Taxation and Finance,Taxation and Finance +325888,Taxation and Finance,Taxation and Finance +325887,Taxation and Finance,Taxation and Finance +325885,Taxation and Finance,Taxation and Finance +325884,Taxation and Finance,Taxation and Finance +325882,Taxation and Finance,Taxation and Finance +311062,Taxation and Finance,Taxation and Finance +281389,Taxation and Finance,Taxation and Finance +242667,Taxation and Finance,Taxation and Finance +242662,Taxation and Finance,Taxation and Finance +226640,Taxation and Finance,Taxation and Finance +226639,Taxation and Finance,Taxation and Finance +220007,Taxation and Finance,Taxation and Finance +208987,Taxation and Finance,Taxation and Finance +191106,Taxation and Finance,Taxation and Finance +190586,Taxation and Finance,Taxation and Finance +190585,Taxation and Finance,Taxation and Finance +188209,Taxation and Finance,Taxation and Finance +188208,Taxation and Finance,Taxation and Finance +188207,Taxation and Finance,Taxation and Finance +188206,Taxation and Finance,Taxation and Finance +165974,Taxation and Finance,Taxation and Finance +165973,Taxation and Finance,Taxation and Finance +165969,Taxation and Finance,Taxation and Finance +165962,Taxation and Finance,Taxation and Finance +340556,Taxation and Finance,Taxation and Finance +340555,Taxation and Finance,Taxation and Finance +340554,Taxation and Finance,Taxation and Finance +340553,Taxation and Finance,Taxation and Finance +340552,Taxation and Finance,Taxation and Finance +340550,Taxation and Finance,Taxation and Finance +334583,Taxation and Finance,Taxation and Finance +163165,Defence,Defence +163164,Defence,Defence +194808,Defence,Defence +194805,Defence,Defence +194804,Defence,Defence +163169,Defence,Defence +163168,Defence,Defence +194808,Health,Health +194805,Health,Health +194804,Health,Health +163169,Health,Health +163168,Health,Health +163167,Health,Health +163166,Health,Health +194805,Taxation and Finance,Taxation and Finance +194804,Taxation and Finance,Taxation and Finance +163169,Taxation and Finance,Taxation and Finance +163168,Taxation and Finance,Taxation and Finance +163167,Taxation and Finance,Taxation and Finance +163165,Taxation and Finance,Taxation and Finance +163164,Taxation and Finance,Taxation and Finance +127937,Other,Class Action Law Suit +127935,Other,Class Action Law Suit +130954,Other,Class Action Law Suit +147214,Agriculture,Agriculture +441613,Environment,Environment +438020,Environment,Environment +127595,Environment,Environment +259811,Environment,Environment +259809,Environment,Environment +252550,Environment,Environment +191994,Environment,Environment +191989,Environment,Environment +432148,Environment,Environment +423265,Environment,Environment +423262,Environment,Environment +421542,Environment,Environment +417602,Environment,Environment +415278,Environment,Environment +409159,Environment,Environment +407364,Environment,Environment +406353,Environment,Environment +406351,Environment,Environment +398484,Environment,Environment +542692,Environment,Environment +446779,Environment,Environment +348565,Infrastructure,Infrastructure +542692,Infrastructure,Infrastructure +398484,Infrastructure,Infrastructure +389284,Infrastructure,Infrastructure +389271,Infrastructure,Infrastructure +389264,Infrastructure,Infrastructure +348571,Infrastructure,Infrastructure +348568,Infrastructure,Infrastructure +348567,Infrastructure,Infrastructure +127599,International Relations,International Relations +393297,International Trade,International Trade +542692,International Trade,International Trade +127599,International Trade,International Trade +220187,International Trade,International Trade +213448,International Trade,International Trade +213447,International Trade,International Trade +191992,International Trade,International Trade +191985,International Trade,International Trade +167216,International Trade,International Trade +167215,International Trade,International Trade +348571,International Trade,International Trade +348568,International Trade,International Trade +348567,International Trade,International Trade +348566,International Trade,International Trade +348565,International Trade,International Trade +340585,International Trade,International Trade +337749,International Trade,International Trade +329391,International Trade,International Trade +329390,International Trade,International Trade +311006,International Trade,International Trade +311004,International Trade,International Trade +280109,International Trade,International Trade +272292,International Trade,International Trade +272289,International Trade,International Trade +259812,International Trade,International Trade +259811,International Trade,International Trade +259810,International Trade,International Trade +259809,International Trade,International Trade +259799,International Trade,International Trade +252550,International Trade,International Trade +252549,International Trade,International Trade +469447,International Trade,International Trade +469446,International Trade,International Trade +469445,International Trade,International Trade +466339,International Trade,International Trade +423265,International Trade,International Trade +423262,International Trade,International Trade +421548,International Trade,International Trade +421546,International Trade,International Trade +421544,International Trade,International Trade +421543,International Trade,International Trade +421542,International Trade,International Trade +421539,International Trade,International Trade +417602,International Trade,International Trade +409160,International Trade,International Trade +407364,International Trade,International Trade +406353,International Trade,International Trade +406352,International Trade,International Trade +427401,Transportation,Transportation +542692,Transportation,Transportation +127655,Transportation,Transportation +127654,Transportation,Transportation +127599,Transportation,Transportation +127598,Transportation,Transportation +127597,Transportation,Transportation +127594,Transportation,Transportation +163569,Transportation,Transportation +163568,Transportation,Transportation +163561,Transportation,Transportation +146539,Transportation,Transportation +146538,Transportation,Transportation +311006,Transportation,Transportation +311004,Transportation,Transportation +280109,Transportation,Transportation +272292,Transportation,Transportation +272289,Transportation,Transportation +259812,Transportation,Transportation +259811,Transportation,Transportation +259810,Transportation,Transportation +259809,Transportation,Transportation +259799,Transportation,Transportation +252550,Transportation,Transportation +252549,Transportation,Transportation +240230,Transportation,Transportation +226427,Transportation,Transportation +220187,Transportation,Transportation +191994,Transportation,Transportation +191993,Transportation,Transportation +191992,Transportation,Transportation +191991,Transportation,Transportation +191989,Transportation,Transportation +191987,Transportation,Transportation +191985,Transportation,Transportation +167216,Transportation,Transportation +167215,Transportation,Transportation +167213,Transportation,Transportation +423265,Transportation,Transportation +423262,Transportation,Transportation +421548,Transportation,Transportation +421546,Transportation,Transportation +421544,Transportation,Transportation +421543,Transportation,Transportation +421542,Transportation,Transportation +421539,Transportation,Transportation +417602,Transportation,Transportation +415278,Transportation,Transportation +412100,Transportation,Transportation +409160,Transportation,Transportation +409159,Transportation,Transportation +407364,Transportation,Transportation +406353,Transportation,Transportation +406352,Transportation,Transportation +406351,Transportation,Transportation +404635,Transportation,Transportation +404634,Transportation,Transportation +403936,Transportation,Transportation +403932,Transportation,Transportation +398484,Transportation,Transportation +393297,Transportation,Transportation +393296,Transportation,Transportation +389284,Transportation,Transportation +389271,Transportation,Transportation +389264,Transportation,Transportation +386031,Transportation,Transportation +386030,Transportation,Transportation +384425,Transportation,Transportation +384415,Transportation,Transportation +375686,Transportation,Transportation +375684,Transportation,Transportation +373236,Transportation,Transportation +373234,Transportation,Transportation +373233,Transportation,Transportation +348571,Transportation,Transportation +348568,Transportation,Transportation +348567,Transportation,Transportation +348566,Transportation,Transportation +348565,Transportation,Transportation +340585,Transportation,Transportation +337749,Transportation,Transportation +329391,Transportation,Transportation +329390,Transportation,Transportation +469447,Transportation,Transportation +469446,Transportation,Transportation +469445,Transportation,Transportation +469444,Transportation,Transportation +466339,Transportation,Transportation +451796,Transportation,Transportation +446779,Transportation,Transportation +443156,Transportation,Transportation +441613,Transportation,Transportation +438020,Transportation,Transportation +438015,Transportation,Transportation +432990,Transportation,Transportation +432148,Transportation,Transportation +136517,Other,Roles and responsibilities of Farm Products Council of Canada +127939,Other,Broadband Competition - MTS Allstream Petition +127894,Other,Broadband Competition - MTS Allstream Petition +131117,Other,Broadband Competition - MTS Allstream Petition +131115,Other,Broadband Competition - MTS Allstream Petition +141817,Employment and Training,Employment and Training +134395,Regional Development,Regional Development +131604,Other,Mackenzie Valley Pipeline +131603,Other,Mackenzie Valley Pipeline +131602,Other,Mackenzie Valley Pipeline +131601,Other,Mackenzie Valley Pipeline +131600,Other,Mackenzie Valley Pipeline +131599,Other,Mackenzie Valley Pipeline +131598,Other,Mackenzie Valley Pipeline +128035,Other,Mackenzie Valley Pipeline +141575,Other,Mackenzie Valley Pipeline +141574,Other,Mackenzie Valley Pipeline +128094,Other,25th Anniversary +128095,Other,25th Anniversary +132481,Other,Canadian Capital Markets +128647,Other,Canadian Capital Markets +309761,Energy,Energy +163985,Government Procurement,Government Procurement +163984,Government Procurement,Government Procurement +279630,Government Procurement,Government Procurement +279629,Government Procurement,Government Procurement +274009,Government Procurement,Government Procurement +132474,Other,Traceability +128857,Other,Traceability +128891,International Trade,International Trade +128918,Other,traceability +132892,Government Procurement,Government Procurement +132891,Government Procurement,Government Procurement +157107,Government Procurement,Government Procurement +154879,Government Procurement,Government Procurement +437988,Fisheries,Fisheries +401929,Fisheries,Fisheries +438004,Fisheries,Fisheries +438002,Fisheries,Fisheries +438001,Fisheries,Fisheries +437997,Fisheries,Fisheries +437996,Fisheries,Fisheries +437993,Fisheries,Fisheries +437991,Fisheries,Fisheries +437990,Fisheries,Fisheries +129040,Other,Contribution Agreements +154892,Other,Contribution Agreements +154876,Other,Contribution Agreements +153424,Other,Contribution Agreements +153423,Other,Contribution Agreements +150318,Other,Contribution Agreements +150313,Other,Contribution Agreements +146009,Other,Contribution Agreements +146006,Other,Contribution Agreements +146004,Other,Contribution Agreements +146002,Other,Contribution Agreements +146000,Other,Contribution Agreements +145997,Other,Contribution Agreements +145991,Other,Contribution Agreements +145985,Other,Contribution Agreements +144917,Other,Contribution Agreements +144915,Other,Contribution Agreements +131134,Defence,Defence +131134,Government Procurement,Government Procurement +137535,Other,Employment Insurance (EI) +129135,Other,Employment Insurance (EI) +141481,Other,Employment Insurance (EI) +141477,Other,Employment Insurance (EI) +141475,Other,Employment Insurance (EI) +137555,Other,Employment Insurance (EI) +137554,Other,Employment Insurance (EI) +129139,Other,Design of greenhouse gas cap and trade system +129166,Other,Design of Canada's greenhouse gas cap and trade system +129161,Other,Design of Canada's greenhouse gas cap and trade system +129169,Other,Design of Canada's greenhouse gas cap and trade system +170678,Industry,Industry +170676,Industry,Industry +129175,Industry,Industry +342124,Industry,Industry +342122,Industry,Industry +342117,Industry,Industry +303643,Industry,Industry +303641,Industry,Industry +254186,Industry,Industry +245103,Industry,Industry +245102,Industry,Industry +245101,Industry,Industry +245099,Industry,Industry +245096,Industry,Industry +245094,Industry,Industry +245089,Industry,Industry +245087,Industry,Industry +241123,Industry,Industry +236330,Industry,Industry +223669,Industry,Industry +223648,Industry,Industry +126754,Other,Ethics committe +126774,Tourism,Tourism +126775,Sports,Sports +128636,Consumer Issues,Consumer Issues +128636,Industry,Industry +128636,Small Business,Small Business +196287,International Relations,International Relations +130814,Mining,Mining +148229,Other,CSCF - Wholesale Financing for Floorplanning +126814,Employment and Training,Employment and Training +126814,Other,Housing and Homelessness +126815,Employment and Training,Employment and Training +126815,Other,Housing and Homelessness +133834,Other,Health Claims +126835,Other,Nutrition Facts Education Initiative +127415,Transportation,Transportation +127414,Transportation,Transportation +418321,Industry,Industry +227512,International Relations,International Relations +491789,Agriculture,Agriculture +310909,Employment and Training,Employment and Training +429324,Infrastructure,Infrastructure +310909,Regional Development,Regional Development +502927,Tourism,Tourism +334583,Health,Health +334393,Taxation and Finance,Taxation and Finance +126954,Other,In-year project proposal developed by one of the OVC Veterinary students who is enrolled in the CFIA veterinary internship program. +126955,Other,Canadian Veterinary Schools interactions with CFIA; discussion on role of veterinary schools in public health +163167,Defence,Defence +163165,Health,Health +194808,Taxation and Finance,Taxation and Finance +127016,Other,Developments in insurance industry; pension reform +127016,Other,Developments in the financial sector +127017,Other,Biomedical Engineering +127034,Other,Competition Act and Guidelines +127034,Other,Competition Act and Guidelines +127035,Other,Clemency Policy +127035,Other,Aboriginal School Survivors +128892,Other,Class Action Law Suit +147717,Agriculture,Agriculture +127276,Other,Vancouver 2010 Olympic Games +127374,Other,Federal Funding +142859,International Trade,International Trade +443156,Environment,Environment +348566,Infrastructure,Infrastructure +280109,International Relations,International Relations +398484,International Trade,International Trade +427900,Transportation,Transportation +127516,Other,"Collaborative technologies, isotopes, community learning" +127517,Other,Update on Science Complex; Knowledge Infrastructure Program +127518,Other,Update on Science Complex; Knowledge Infrastructure Program +127575,Other,Government travel & expense management +127694,Other,Roles and responsibilities of Farm Products Council of Canada +127837,Other,Railway performance +127875,Other,capital funding +127914,Labour,Labour +127876,Other,Community Ajustment Fund +127876,Other,Southern Ontario Development Program parameters +127877,Other,Community Ajustment Fund +127877,Other,Southern Ontario Development Program parameters +127879,Other,Community Ajustment Fund +127879,Other,Southern Ontario Development Program parameters +127880,Other,Community Ajustment Fund +127880,Other,Southern Ontario Development Program parameters +127881,Other,Community Ajustment Fund +127881,Other,Southern Ontario Development Program parameters +127878,Other,Broadband Competition +145199,Tourism,Tourism +145199,Transportation,Transportation +127894,Other,Broadband Competition: MTS Allstream Petition +127940,Other,Broadband Competition - MTS Allstream Petition +127914,Other,Broadband Competition - MTS Allstream Petition +127938,Other,Broadband Competition - MTS Allstream Petition +127955,Other,Status of their application under the Clean Energy Fund +127994,Other,Update on Science Complex; Knowledge Infrastructure Program +127995,Other,Masters Degree in Development Practice +127996,Other,"Collaborative technologies, isotopes, community learning" +128014,Other,Isotopes; Prairie Isotope Production Enterprises +176327,Energy,Energy +176327,Regional Development,Regional Development +128017,Other,"Collaborative technologies, isotopes, community learning; Uwin Create, Prairie Isotope Production Enterprises" +128018,Other,Collaborative technologies +128019,Other,Collaborative technologies +141818,Employment and Training,Employment and Training +141817,Mining,Mining +141817,Regional Development,Regional Development +134395,Transportation,Transportation +131605,Other,Mackenzie Valley Pipeline +162453,Transportation,Transportation +152088,Other,25th Anniversary +138879,Other,25th Anniversary +145790,Other,Canadian Capital Markets +128244,Other,Budget Consultations +309762,Energy,Energy +128314,Other,EI Reforms contained in Bill C-50 +128375,Justice and Law Enforcement,Justice et application des lois +128354,Other,R&D Spending +128394,Other,R&D Spending +128434,Other,Canadian Coast Guard services provided to the commercial marine industry +128456,Other,CF-18 OWSM +128457,Other,CF-18 OWSM +128474,Other,airport infrastructure +128475,Other,airport infrastructure +128476,Other,Schedule of pre-budget consultations +128554,Other,"Corporate Governance matters, regarding general operating by-laws" +128555,Other,"Corporate Governance matters, regarding general operating by-laws" +128556,Other,"Corporate Governance matters, regarding general operating by-laws" +128557,Other,Business Update +128558,Other,Business Update +163987,Government Procurement,Government Procurement +130277,Industry,Industry +128598,Other,Universal Declaration of Animal Welfare +128718,Other,Acquaintance of CAE's new CEO +128719,Other,Discussion on Information and Communications Technology for Canada +128722,Other,Request for meeting with Minister +128723,Other,Followup on discussions for information and communciations strategy for Canada +128724,Other,Overview of information and communications industry impact on Canada and impact on economy +128725,Other,Overview of information and communications industry impact on Canada and impact on procurement projects +128726,Other,Industry feedback on changes in Canada Revenue Agency Scientific Research and Experimental Development +128727,Other,Overview of information and communications industry impact on Canada and impact on economy +128728,Other,Continued discussions in information and communications technology in Canada +128730,Other,Followup on discussions regarding Talent for the information and communications technology industry +128731,Other,Roundtable to gather industry views on information and technology in Canada +128732,Other,Followup on discussions with Minister Toews +128733,Other,Followup on discussions with Minister Finley +128734,Other,Followup on discussions with Minister Toews +138780,Other,Traceability +128857,Other,Ingredients +128863,Other,Industry +128875,Other,Identity Theft +128888,Other,Food and Drugs Act +128893,International Trade,International Trade +128895,Other,Housing and Finance +128894,Other,"Discussion on current status of the negotiations - re: sensitive products; attendance at the WTO Ministerial meeting in December; and, Canada/EU negotiations - status." +128894,Other,Doha Development Round +128894,Other,World Trade Organization (WTO) negotiations +128889,Taxation and Finance,Taxation and Finance +128898,Taxation and Finance,Taxation and Finance +128914,Taxation and Finance,Taxation and Finance +128918,Other,dairy ingredients +128918,Other,environment with respect to climate change +142420,Other,traceability +146274,Other,Financial Support +146275,Other,Financial Support +132894,Government Procurement,Government Procurement +132706,Government Procurement,Government Procurement +128994,Other,Food Safety +437989,Fisheries,Fisheries +139495,Other,Contribution Agreements +129055,Other,Climate Change +129055,Other,Gas Supply and Pricing +129061,Other,Relationship Matters +129064,Other,Relationship Matters +129067,Other,Climate Change +129067,Other,Gas Supply and Pricing +129070,Other,Climate Change +129070,Other,Gas Supply and Pricing +129071,Other,Climate Change +129071,Other,Gas Supply and Pricing +129074,Other,Climate Change +129074,Other,Gas Supply and Pricing +129077,Other,Climate Change +129077,Other,Gas Supply and Pricing +129079,Other,Climate Change +129079,Other,Gas Supply and Pricing +129088,Other,Capital Cost Allowance and Economic Recovery +129091,Other,Capital Cost Allowance and Economic Recovery +129093,Other,Capital Cost Allowance and Economic Recovery +129094,Other,Capital Cost Allowance and Economic Recovery +131135,Defence,Defence +131135,Fisheries,Fisheries +131135,Government Procurement,Government Procurement +129098,Other,Farm Products Council of Canada +129103,Other,Farm Products Council of Canada +129105,Other,Farm Products Council of Canada +129118,Other,Foreign Trade Zones (FTZ) +129118,Other,Open Skies +129122,Other,Airport Rent +129122,Other,Aviation costs +129125,Other,Airport policing contributions +137536,Other,Employment Insurance (EI) +129164,Other,Design of greenhouse gas cap and trade system +129168,Other,Design of Canada's greenhouse gas cap and trade system +129159,Other,Anti-money laundering/anti-terrorist financing regulation +144334,Regional Development,Regional Development +170680,Industry,Industry +469876,Agriculture,Agriculture +129234,Other,University Research +338470,Transportation,Transportation +129374,International Relations,International Relations +156806,Fisheries,Fisheries +157774,Energy,Energy +145894,Environment,Environment +156600,Industry,Industry +132874,Other,Recommendations on Federal policy on nuclear power development in Ontario +134617,Other,Department Champions Program +129494,Other,Evangelical Voting Trends 1996 - 2008 +129544,Other,Safety +129596,International Relations,International Relations +129617,Other,Impact of regulations on competitiveness +129615,Other,Health +129655,Other,Regional Economic Development +132994,Health,Health +129894,Other,Status of govt approach to Frasersockeye and status of PSF Infrastructure proposal +129895,Other,DFO scientist participation in PSF Science Forum to address possible causes of low sockeye returns. +293570,Transportation,Transportation +167080,Consumer Issues,Consumer Issues +167080,Financial Institutions,Financial Institutions +167080,Industry,Industry +391749,Health,Health +378059,Industry,Industry +125084,Tourism,Tourism +130014,Other,Burmese Refugees +130134,Other,Economic Impact of the Brewing Industry in Canada +130134,Other,World Health Organization Draft Global Alcohol Strategy +130155,Other,Economic Impact of the Brewing Industry in Canada +130155,Other,World Health Organization Draft Global Alcohol Strategy +130156,Other,Economic Impact of the Brewing Industry in Canada +130156,Other,World Health Organization Draft Global Alcohol Strategy +130157,Other,Economic Impact of the Brewing Industry in Canada +134415,Other,World Health Organization Draft Global Alcohol Strategy +130158,Other,Economic Impact of the Brewing Industry in Canada +130158,Other,World Health Organization Draft Global Alcohol Strategy +130194,Other,CF-18 OWSM +135833,Justice and Law Enforcement,Justice and Law Enforcement +130254,Other,Chemical Management Plan +130254,Other,Climate Change +130254,Other,Comprehensive Air Management System +519093,Forestry,Foresterie +130436,Other,OWSS +158179,Transportation,Transportation +158176,Transportation,Transportation +167689,Government Procurement,Government Procurement +137537,Other,National Immunization Strategy Program Funding +130595,Labour,Labour +130695,Other,Sodium +130696,Other,Yogurt Standards +276187,International Trade,International Trade +198387,Employment and Training,Employment and Training +198387,Intellectual Property,Intellectual Property +134278,Health,Health +130754,Other,Federal Budget +225608,Agriculture,Agriculture +181166,Intellectual Property,Intellectual Property +159583,Other,Emergency Management and Public Safety +130774,Other,Employment Insurance +134236,Other,Devolution +130894,Other,employment insurance +229969,International Trade,International Trade +145514,Other,Pharmaceutical Policies and Regulations +219797,Industry,Industry +219795,Industry,Industry +219793,Industry,Industry +175249,Industry,Industry +170692,Industry,Industry +170690,Industry,Industry +170685,Industry,Industry +170683,Industry,Industry +405092,Agriculture,Agriculture +531401,Agriculture,Agriculture +338524,Agriculture,Agriculture +310380,Agriculture,Agriculture +129216,Other,University Research +322194,Transportation,Transportation +322193,Transportation,Transportation +129362,Transportation,Transportation +338474,Transportation,Transportation +151157,Fisheries,Fisheries +157772,Energy,Energy +145894,Energy,Energy +129575,Energy,Energy +156599,Industry,Industry +129448,Other,Recommendations on Federal policy on nuclear power development in Ontario +129595,International Relations,International Relations +129874,Other,Status of govt approach to Frasersockeye and status of PSF Infrastructure proposal +129854,Other,Status of govt approach to Frasersockeye and status of PSF Infrastructure proposal +288609,Transportation,Transportation +380393,Health,Health +375746,Health,Health +395634,Health,Health +395633,Health,Health +395632,Health,Health +378058,Industry,Industry +376244,Industry,Industry +170353,Industry,Industry +170352,Industry,Industry +170351,Industry,Industry +245815,Industry,Industry +245814,Industry,Industry +245813,Industry,Industry +245812,Industry,Industry +245811,Industry,Industry +245810,Industry,Industry +245799,Industry,Industry +245798,Industry,Industry +245797,Industry,Industry +245796,Industry,Industry +245792,Industry,Industry +226088,Industry,Industry +224051,Industry,Industry +224050,Industry,Industry +224049,Industry,Industry +224048,Industry,Industry +224047,Industry,Industry +224046,Industry,Industry +224044,Industry,Industry +224041,Industry,Industry +224028,Industry,Industry +224027,Industry,Industry +224007,Industry,Industry +223989,Industry,Industry +196861,Industry,Industry +191506,Industry,Industry +191505,Industry,Industry +191485,Industry,Industry +191466,Industry,Industry +191465,Industry,Industry +191464,Industry,Industry +376242,Industry,Industry +375261,Industry,Industry +375259,Industry,Industry +375258,Industry,Industry +375256,Industry,Industry +375255,Industry,Industry +375254,Industry,Industry +375253,Industry,Industry +375251,Industry,Industry +370134,Industry,Industry +370133,Industry,Industry +370132,Industry,Industry +370131,Industry,Industry +370130,Industry,Industry +370129,Industry,Industry +370128,Industry,Industry +370127,Industry,Industry +368246,Industry,Industry +344768,Industry,Industry +306591,Industry,Industry +306589,Industry,Industry +280290,Industry,Industry +280289,Industry,Industry +134414,Other,World Health Organization Draft Global Alcohol Strategy +130157,Other,World Health Organization Draft Global Alcohol Strategy +519092,Forestry,Foresterie +519091,Forestry,Foresterie +373000,Forestry,Foresterie +372999,Forestry,Foresterie +372997,Forestry,Foresterie +372995,Forestry,Foresterie +372993,Forestry,Foresterie +544288,Forestry,Foresterie +539795,Forestry,Foresterie +527815,Forestry,Foresterie +522669,Forestry,Foresterie +519095,Forestry,Foresterie +519094,Forestry,Foresterie +158174,Transportation,Transportation +158171,Transportation,Transportation +167607,Government Procurement,Government Procurement +201407,Government Procurement,Government Procurement +137434,Other,National Immunization Strategy Program Funding +152477,Labour,Labour +276186,International Trade,International Trade +276185,International Trade,International Trade +327291,International Trade,International Trade +327290,International Trade,International Trade +327289,International Trade,International Trade +327288,International Trade,International Trade +327287,International Trade,International Trade +198368,Employment and Training,Employment and Training +198307,Employment and Training,Employment and Training +213648,Employment and Training,Employment and Training +198368,Intellectual Property,Intellectual Property +198307,Intellectual Property,Intellectual Property +213648,Intellectual Property,Intellectual Property +225607,Agriculture,Agriculture +225606,Agriculture,Agriculture +276174,Agriculture,Agriculture +275897,Agriculture,Agriculture +225609,Agriculture,Agriculture +181165,Intellectual Property,Intellectual Property +181164,Intellectual Property,Intellectual Property +190860,Intellectual Property,Intellectual Property +190858,Intellectual Property,Intellectual Property +159582,Other,Emergency Management and Public Safety +159580,Other,Emergency Management and Public Safety +162173,Other,Emergency Management and Public Safety +134235,Other,Devolution +132416,Other,Devolution +504732,International Trade,International Trade +396420,International Trade,International Trade +215834,International Trade,International Trade +215833,International Trade,International Trade +211168,International Trade,International Trade +211167,International Trade,International Trade +202027,International Trade,International Trade +197429,International Trade,International Trade +197409,International Trade,International Trade +197408,International Trade,International Trade +197407,International Trade,International Trade +193112,International Trade,International Trade +193111,International Trade,International Trade +193110,International Trade,International Trade +193108,International Trade,International Trade +193107,International Trade,International Trade +193106,International Trade,International Trade +193101,International Trade,International Trade +193099,International Trade,International Trade +149777,International Trade,International Trade +277773,International Trade,International Trade +244312,International Trade,International Trade +244311,International Trade,International Trade +244310,International Trade,International Trade +244309,International Trade,International Trade +160657,Other,Pharmaceutical Policies and Regulations +158988,Other,Pharmaceutical Policies and Regulations +145515,Other,Pharmaceutical Policies and Regulations +138403,Industry,Industry +132707,Industry,Industry +131074,Other,Web Insurance Issue +131115,Other,Broadband Competition- MTS Allstream Petition +200282,Health,Health +200213,Health,Health +200381,Health,Health +200301,Health,Health +200300,Health,Health +200295,Health,Health +200294,Health,Health +200292,Health,Health +537125,Industry,Industry +430163,Industry,Industry +200381,Industry,Industry +200377,Industry,Industry +200301,Industry,Industry +200300,Industry,Industry +200295,Industry,Industry +200292,Industry,Industry +200282,Industry,Industry +200292,Justice and Law Enforcement,Justice and Law Enforcement +200213,Justice and Law Enforcement,Justice and Law Enforcement +200381,Justice and Law Enforcement,Justice and Law Enforcement +200301,Justice and Law Enforcement,Justice and Law Enforcement +200300,Justice and Law Enforcement,Justice and Law Enforcement +200298,Justice and Law Enforcement,Justice and Law Enforcement +532413,Taxation and Finance,Taxation and Finance +532411,Taxation and Finance,Taxation and Finance +200300,Taxation and Finance,Taxation and Finance +200295,Taxation and Finance,Taxation and Finance +495635,Taxation and Finance,Taxation and Finance +495634,Taxation and Finance,Taxation and Finance +495633,Taxation and Finance,Taxation and Finance +430163,Taxation and Finance,Taxation and Finance +539188,Taxation and Finance,Taxation and Finance +537124,Taxation and Finance,Taxation and Finance +536344,Taxation and Finance,Taxation and Finance +536342,Taxation and Finance,Taxation and Finance +532989,Taxation and Finance,Taxation and Finance +532677,Taxation and Finance,Taxation and Finance +137796,Taxation and Finance,Taxation and Finance +135594,Taxation and Finance,Taxation and Finance +159668,Environment,Environment +131624,Regional Development,Regional Development +180905,Health,Health +327487,Intellectual Property,Intellectual Property +277192,Intellectual Property,Intellectual Property +249819,Intellectual Property,Intellectual Property +245836,Intellectual Property,Intellectual Property +236611,Intellectual Property,Intellectual Property +233407,Intellectual Property,Intellectual Property +223378,Intellectual Property,Intellectual Property +223372,Intellectual Property,Intellectual Property +216451,Intellectual Property,Intellectual Property +211941,Intellectual Property,Intellectual Property +207542,Intellectual Property,Intellectual Property +207537,Intellectual Property,Intellectual Property +207111,Intellectual Property,Intellectual Property +202851,Intellectual Property,Intellectual Property +202841,Intellectual Property,Intellectual Property +202351,Intellectual Property,Intellectual Property +199972,Intellectual Property,Intellectual Property +199968,Intellectual Property,Intellectual Property +193978,Intellectual Property,Intellectual Property +193583,Intellectual Property,Intellectual Property +148181,Intellectual Property,Intellectual Property +388854,Intellectual Property,Intellectual Property +366522,Intellectual Property,Intellectual Property +363666,Intellectual Property,Intellectual Property +468915,Environment,Environment +465985,Environment,Environment +157445,Environment,Environment +534706,Environment,Environment +530441,Environment,Environment +530440,Environment,Environment +530439,Environment,Environment +530436,Environment,Environment +530435,Environment,Environment +530432,Environment,Environment +494685,Environment,Environment +486876,Environment,Environment +494685,Infrastructure,Infrastructure +486867,Infrastructure,Infrastructure +157445,Infrastructure,Infrastructure +204928,Infrastructure,Infrastructure +478116,Infrastructure,Infrastructure +465985,Infrastructure,Infrastructure +441845,Infrastructure,Infrastructure +436282,Infrastructure,Infrastructure +430112,Infrastructure,Infrastructure +429386,Infrastructure,Infrastructure +429371,Infrastructure,Infrastructure +424556,Infrastructure,Infrastructure +420423,Infrastructure,Infrastructure +419488,Infrastructure,Infrastructure +370290,Infrastructure,Infrastructure +159359,Constitutional Issues,Constitutional Issues +165449,Health,Health +165447,Health,Health +155366,Health,Health +155317,Health,Health +155251,Health,Health +155250,Health,Health +155249,Health,Health +155247,Health,Health +155246,Health,Health +191108,Health,Health +190589,Health,Health +408507,Infrastructure,Infrastructure +381027,Infrastructure,Infrastructure +151851,Infrastructure,Infrastructure +151848,Infrastructure,Infrastructure +132075,Infrastructure,Infrastructure +132074,Infrastructure,Infrastructure +367662,Infrastructure,Infrastructure +365226,Infrastructure,Infrastructure +342762,Infrastructure,Infrastructure +248650,Infrastructure,Infrastructure +167077,Infrastructure,Infrastructure +153623,Infrastructure,Infrastructure +132164,Other,Matters related to labour dispute +132163,Other,Matters related to labour dispute +132162,Other,Matters related to labour dispute +132159,Other,Matters related to labour dispute +132158,Other,Matters related to labour dispute +132296,Health,Health +132294,Health,Health +132298,Health,Health +132296,Taxation and Finance,Taxation and Finance +132294,Taxation and Finance,Taxation and Finance +132298,Taxation and Finance,Taxation and Finance +132296,Infrastructure,Infrastructure +132294,Infrastructure,Infrastructure +132298,Infrastructure,Infrastructure +151881,Other,Food Safety +151880,Other,Food Safety +151885,Other,Food Safety +132399,Other,"Air Traveller Security Charge, Airport Ground Rent, Airport policing financing" +136934,Employment and Training,Employment and Training +136934,Industry,Industry +135062,Industry,Industry +136936,Employment and Training,Employment and Training +136936,Industry,Industry +135063,Industry,Industry +395905,Agriculture,Agriculture +390073,Agriculture,Agriculture +229652,Agriculture,Agriculture +207377,Agriculture,Agriculture +207376,Agriculture,Agriculture +207374,Agriculture,Agriculture +207373,Agriculture,Agriculture +207371,Agriculture,Agriculture +197269,Agriculture,Agriculture +197268,Agriculture,Agriculture +172766,Agriculture,Agriculture +167658,Agriculture,Agriculture +167657,Agriculture,Agriculture +167656,Agriculture,Agriculture +292509,Agriculture,Agriculture +259428,Agriculture,Agriculture +259412,Agriculture,Agriculture +259397,Agriculture,Agriculture +259395,Agriculture,Agriculture +259393,Agriculture,Agriculture +259391,Agriculture,Agriculture +259390,Agriculture,Agriculture +248570,Agriculture,Agriculture +455328,Agriculture,Agriculture +448335,Agriculture,Agriculture +442111,Agriculture,Agriculture +421603,Agriculture,Agriculture +442111,Internal Trade,Commerce intérieur +390073,Internal Trade,Commerce intérieur +197269,Internal Trade,Commerce intérieur +197268,Internal Trade,Commerce intérieur +172766,Internal Trade,Commerce intérieur +167658,Internal Trade,Commerce intérieur +167657,Internal Trade,Commerce intérieur +167656,Internal Trade,Commerce intérieur +216070,Internal Trade,Commerce intérieur +207377,Internal Trade,Commerce intérieur +207376,Internal Trade,Commerce intérieur +207374,Internal Trade,Commerce intérieur +207373,Internal Trade,Commerce intérieur +421603,International Trade,Commerce international +448335,International Trade,Commerce international +207374,International Trade,Commerce international +207373,International Trade,Commerce international +207371,International Trade,Commerce international +197269,International Trade,Commerce international +197268,International Trade,Commerce international +167658,International Trade,Commerce international +167657,International Trade,Commerce international +167656,International Trade,Commerce international +407615,International Trade,Commerce international +395905,International Trade,Commerce international +390073,International Trade,Commerce international +292509,International Trade,Commerce international +259428,International Trade,Commerce international +259412,International Trade,Commerce international +259397,International Trade,Commerce international +259395,International Trade,Commerce international +259393,International Trade,Commerce international +259391,International Trade,Commerce international +259390,International Trade,Commerce international +248570,International Trade,Commerce international +229652,International Trade,Commerce international +216070,International Trade,Commerce international +207377,International Trade,Commerce international +207376,International Trade,Commerce international +434507,International Trade,International Trade +413501,International Trade,International Trade +381522,International Trade,International Trade +132576,Other,Introduction to CAE +138881,Other,25th Anniversary +132615,Other,25th Anniversary +148261,Other,25th Anniversary +132618,Other,25th Anniversary +132619,Other,25th Anniversary +148178,Other,25th Anniversary +148176,Other,25th Anniversary +138880,Other,25th Anniversary +138877,Other,25th Anniversary +132621,Other,25th Anniversary +132623,Other,25th Anniversary +148170,Other,25th Anniversary +132628,Other,25th Anniversary +132736,Other,Compassionate Care Benefits +132747,Taxation and Finance,Taxation and Finance +132750,Taxation and Finance,Taxation and Finance +132749,Taxation and Finance,Taxation and Finance +408914,Employment and Training,Employment and Training +512816,Employment and Training,Employment and Training +248449,Employment and Training,Employment and Training +232016,Employment and Training,Employment and Training +232015,Employment and Training,Employment and Training +232013,Employment and Training,Employment and Training +228510,Employment and Training,Employment and Training +174828,Employment and Training,Employment and Training +149605,Employment and Training,Employment and Training +395074,Employment and Training,Employment and Training +393290,Employment and Training,Employment and Training +381954,Employment and Training,Employment and Training +380502,Employment and Training,Employment and Training +345317,Employment and Training,Employment and Training +411416,Employment and Training,Employment and Training +417471,Labour,Labour +417470,Labour,Labour +163377,Labour,Labour +158982,Labour,Labour +158981,Labour,Labour +158879,Labour,Labour +158654,Labour,Labour +158653,Labour,Labour +158652,Labour,Labour +156121,Labour,Labour +156119,Labour,Labour +156115,Labour,Labour +141076,Labour,Labour +141075,Labour,Labour +134862,Labour,Labour +134861,Labour,Labour +134860,Labour,Labour +226324,Labour,Labour +222188,Labour,Labour +215627,Labour,Labour +210529,Labour,Labour +202207,Labour,Labour +188386,Labour,Labour +407114,Labour,Labour +402077,Labour,Labour +402075,Labour,Labour +402067,Labour,Labour +399671,Labour,Labour +350621,Labour,Labour +350620,Labour,Labour +350619,Labour,Labour +350617,Labour,Labour +348371,Labour,Labour +348369,Labour,Labour +348367,Labour,Labour +302315,Labour,Labour +262290,Labour,Labour +262289,Labour,Labour +517985,Labour,Labour +488738,Labour,Labour +479982,Labour,Labour +478255,Labour,Labour +471008,Labour,Labour +462719,Labour,Labour +462714,Labour,Labour +461668,Labour,Labour +461558,Labour,Labour +461557,Labour,Labour +461556,Labour,Labour +461555,Labour,Labour +461553,Labour,Labour +461549,Labour,Labour +461548,Labour,Labour +460618,Labour,Labour +458792,Labour,Labour +447697,Labour,Labour +443437,Labour,Labour +443431,Labour,Labour +443425,Labour,Labour +443424,Labour,Labour +443423,Labour,Labour +443414,Labour,Labour +443413,Labour,Labour +443412,Labour,Labour +434768,Labour,Labour +425478,Labour,Labour +425477,Labour,Labour +425476,Labour,Labour +417478,Labour,Labour +417477,Labour,Labour +414775,Transportation,Transportation +414772,Transportation,Transportation +154167,Transportation,Transportation +153133,Transportation,Transportation +153132,Transportation,Transportation +153131,Transportation,Transportation +153130,Transportation,Transportation +153129,Transportation,Transportation +153128,Transportation,Transportation +151836,Transportation,Transportation +151835,Transportation,Transportation +149607,Transportation,Transportation +149606,Transportation,Transportation +149604,Transportation,Transportation +149603,Transportation,Transportation +149599,Transportation,Transportation +149598,Transportation,Transportation +149596,Transportation,Transportation +147471,Transportation,Transportation +147470,Transportation,Transportation +147469,Transportation,Transportation +147467,Transportation,Transportation +147464,Transportation,Transportation +145586,Transportation,Transportation +141083,Transportation,Transportation +141080,Transportation,Transportation +141079,Transportation,Transportation +141078,Transportation,Transportation +141077,Transportation,Transportation +165268,Transportation,Transportation +165267,Transportation,Transportation +164335,Transportation,Transportation +164334,Transportation,Transportation +163584,Transportation,Transportation +163386,Transportation,Transportation +163385,Transportation,Transportation +163384,Transportation,Transportation +163382,Transportation,Transportation +163381,Transportation,Transportation +163380,Transportation,Transportation +163379,Transportation,Transportation +163373,Transportation,Transportation +161883,Transportation,Transportation +161882,Transportation,Transportation +161878,Transportation,Transportation +161875,Transportation,Transportation +161872,Transportation,Transportation +161870,Transportation,Transportation +161859,Transportation,Transportation +161858,Transportation,Transportation +161856,Transportation,Transportation +161854,Transportation,Transportation +161853,Transportation,Transportation +161850,Transportation,Transportation +161847,Transportation,Transportation +161011,Transportation,Transportation +161010,Transportation,Transportation +161008,Transportation,Transportation +158981,Transportation,Transportation +158980,Transportation,Transportation +158979,Transportation,Transportation +158978,Transportation,Transportation +158977,Transportation,Transportation +158976,Transportation,Transportation +158880,Transportation,Transportation +158663,Transportation,Transportation +158662,Transportation,Transportation +158657,Transportation,Transportation +158585,Transportation,Transportation +158584,Transportation,Transportation +158582,Transportation,Transportation +158581,Transportation,Transportation +158580,Transportation,Transportation +158579,Transportation,Transportation +158578,Transportation,Transportation +158577,Transportation,Transportation +158575,Transportation,Transportation +158574,Transportation,Transportation +158573,Transportation,Transportation +158572,Transportation,Transportation +156119,Transportation,Transportation +156117,Transportation,Transportation +156116,Transportation,Transportation +156114,Transportation,Transportation +156113,Transportation,Transportation +156112,Transportation,Transportation +156110,Transportation,Transportation +156109,Transportation,Transportation +156108,Transportation,Transportation +156107,Transportation,Transportation +154170,Transportation,Transportation +154169,Transportation,Transportation +154168,Transportation,Transportation +210527,Transportation,Transportation +206818,Transportation,Transportation +203969,Transportation,Transportation +202218,Transportation,Transportation +202215,Transportation,Transportation +202213,Transportation,Transportation +202211,Transportation,Transportation +202210,Transportation,Transportation +197090,Transportation,Transportation +197057,Transportation,Transportation +197056,Transportation,Transportation +197055,Transportation,Transportation +197054,Transportation,Transportation +197053,Transportation,Transportation +197052,Transportation,Transportation +197051,Transportation,Transportation +197049,Transportation,Transportation +197048,Transportation,Transportation +197047,Transportation,Transportation +197046,Transportation,Transportation +197044,Transportation,Transportation +197043,Transportation,Transportation +197038,Transportation,Transportation +197037,Transportation,Transportation +197035,Transportation,Transportation +192441,Transportation,Transportation +192440,Transportation,Transportation +192434,Transportation,Transportation +192433,Transportation,Transportation +192432,Transportation,Transportation +192431,Transportation,Transportation +192420,Transportation,Transportation +188426,Transportation,Transportation +188425,Transportation,Transportation +188404,Transportation,Transportation +188403,Transportation,Transportation +188402,Transportation,Transportation +188401,Transportation,Transportation +188399,Transportation,Transportation +188398,Transportation,Transportation +188397,Transportation,Transportation +188396,Transportation,Transportation +188395,Transportation,Transportation +188394,Transportation,Transportation +188391,Transportation,Transportation +188390,Transportation,Transportation +182958,Transportation,Transportation +182957,Transportation,Transportation +182956,Transportation,Transportation +182955,Transportation,Transportation +182954,Transportation,Transportation +182953,Transportation,Transportation +182952,Transportation,Transportation +182951,Transportation,Transportation +182950,Transportation,Transportation +182949,Transportation,Transportation +182948,Transportation,Transportation +182947,Transportation,Transportation +182946,Transportation,Transportation +182945,Transportation,Transportation +177745,Transportation,Transportation +177548,Transportation,Transportation +177547,Transportation,Transportation +177545,Transportation,Transportation +177544,Transportation,Transportation +174837,Transportation,Transportation +174836,Transportation,Transportation +174834,Transportation,Transportation +174833,Transportation,Transportation +174832,Transportation,Transportation +174831,Transportation,Transportation +174830,Transportation,Transportation +174829,Transportation,Transportation +173171,Transportation,Transportation +173169,Transportation,Transportation +173167,Transportation,Transportation +171831,Transportation,Transportation +171830,Transportation,Transportation +170035,Transportation,Transportation +170031,Transportation,Transportation +169942,Transportation,Transportation +169919,Transportation,Transportation +169918,Transportation,Transportation +169917,Transportation,Transportation +169916,Transportation,Transportation +169915,Transportation,Transportation +169914,Transportation,Transportation +169913,Transportation,Transportation +169912,Transportation,Transportation +169911,Transportation,Transportation +169909,Transportation,Transportation +169908,Transportation,Transportation +169845,Transportation,Transportation +169844,Transportation,Transportation +169843,Transportation,Transportation +169842,Transportation,Transportation +169841,Transportation,Transportation +169839,Transportation,Transportation +169837,Transportation,Transportation +169836,Transportation,Transportation +169834,Transportation,Transportation +169832,Transportation,Transportation +169831,Transportation,Transportation +169830,Transportation,Transportation +169829,Transportation,Transportation +169828,Transportation,Transportation +169827,Transportation,Transportation +169826,Transportation,Transportation +169825,Transportation,Transportation +167749,Transportation,Transportation +167748,Transportation,Transportation +167747,Transportation,Transportation +167744,Transportation,Transportation +167742,Transportation,Transportation +167741,Transportation,Transportation +167740,Transportation,Transportation +167739,Transportation,Transportation +167738,Transportation,Transportation +167736,Transportation,Transportation +167733,Transportation,Transportation +167731,Transportation,Transportation +167730,Transportation,Transportation +167729,Transportation,Transportation +167728,Transportation,Transportation +167727,Transportation,Transportation +165270,Transportation,Transportation +165269,Transportation,Transportation +334839,Transportation,Transportation +334838,Transportation,Transportation +334837,Transportation,Transportation +334834,Transportation,Transportation +333230,Transportation,Transportation +333229,Transportation,Transportation +330979,Transportation,Transportation +330978,Transportation,Transportation +330976,Transportation,Transportation +330974,Transportation,Transportation +330973,Transportation,Transportation +330972,Transportation,Transportation +330971,Transportation,Transportation +330970,Transportation,Transportation +329817,Transportation,Transportation +329816,Transportation,Transportation +329815,Transportation,Transportation +329814,Transportation,Transportation +329660,Transportation,Transportation +329659,Transportation,Transportation +329658,Transportation,Transportation +329657,Transportation,Transportation +329656,Transportation,Transportation +329655,Transportation,Transportation +326875,Transportation,Transportation +326855,Transportation,Transportation +326449,Transportation,Transportation +326328,Transportation,Transportation +326327,Transportation,Transportation +326326,Transportation,Transportation +326325,Transportation,Transportation +323949,Transportation,Transportation +323938,Transportation,Transportation +323697,Transportation,Transportation +323695,Transportation,Transportation +323694,Transportation,Transportation +323693,Transportation,Transportation +323692,Transportation,Transportation +323691,Transportation,Transportation +323509,Transportation,Transportation +322185,Transportation,Transportation +322184,Transportation,Transportation +322183,Transportation,Transportation +322182,Transportation,Transportation +321978,Transportation,Transportation +321977,Transportation,Transportation +321494,Transportation,Transportation +321492,Transportation,Transportation +321491,Transportation,Transportation +321490,Transportation,Transportation +321489,Transportation,Transportation +321488,Transportation,Transportation +321486,Transportation,Transportation +321485,Transportation,Transportation +321484,Transportation,Transportation +318772,Transportation,Transportation +318771,Transportation,Transportation +318610,Transportation,Transportation +318609,Transportation,Transportation +318608,Transportation,Transportation +318607,Transportation,Transportation +318603,Transportation,Transportation +318602,Transportation,Transportation +318600,Transportation,Transportation +318599,Transportation,Transportation +318598,Transportation,Transportation +318596,Transportation,Transportation +318595,Transportation,Transportation +318594,Transportation,Transportation +318593,Transportation,Transportation +318592,Transportation,Transportation +318591,Transportation,Transportation +316329,Transportation,Transportation +315602,Transportation,Transportation +315569,Transportation,Transportation +315226,Transportation,Transportation +315224,Transportation,Transportation +315223,Transportation,Transportation +315222,Transportation,Transportation +315221,Transportation,Transportation +315220,Transportation,Transportation +315219,Transportation,Transportation +315218,Transportation,Transportation +315217,Transportation,Transportation +313122,Transportation,Transportation +313117,Transportation,Transportation +312513,Transportation,Transportation +312511,Transportation,Transportation +312310,Transportation,Transportation +312309,Transportation,Transportation +309514,Transportation,Transportation +309009,Transportation,Transportation +302399,Transportation,Transportation +302398,Transportation,Transportation +302345,Transportation,Transportation +302342,Transportation,Transportation +302340,Transportation,Transportation +302339,Transportation,Transportation +302333,Transportation,Transportation +302331,Transportation,Transportation +302329,Transportation,Transportation +302315,Transportation,Transportation +302313,Transportation,Transportation +302312,Transportation,Transportation +294877,Transportation,Transportation +294876,Transportation,Transportation +294875,Transportation,Transportation +294873,Transportation,Transportation +294872,Transportation,Transportation +294871,Transportation,Transportation +294870,Transportation,Transportation +294869,Transportation,Transportation +289911,Transportation,Transportation +289910,Transportation,Transportation +289909,Transportation,Transportation +285392,Transportation,Transportation +285391,Transportation,Transportation +285390,Transportation,Transportation +285389,Transportation,Transportation +285254,Transportation,Transportation +284956,Transportation,Transportation +284954,Transportation,Transportation +284953,Transportation,Transportation +284951,Transportation,Transportation +279953,Transportation,Transportation +279715,Transportation,Transportation +279714,Transportation,Transportation +279713,Transportation,Transportation +279711,Transportation,Transportation +279710,Transportation,Transportation +279709,Transportation,Transportation +279649,Transportation,Transportation +275570,Transportation,Transportation +275569,Transportation,Transportation +275568,Transportation,Transportation +275567,Transportation,Transportation +275565,Transportation,Transportation +272111,Transportation,Transportation +272110,Transportation,Transportation +269769,Transportation,Transportation +269569,Transportation,Transportation +269565,Transportation,Transportation +267076,Transportation,Transportation +267075,Transportation,Transportation +267073,Transportation,Transportation +267072,Transportation,Transportation +267071,Transportation,Transportation +267070,Transportation,Transportation +267069,Transportation,Transportation +266889,Transportation,Transportation +262032,Transportation,Transportation +262031,Transportation,Transportation +262030,Transportation,Transportation +262029,Transportation,Transportation +262012,Transportation,Transportation +262009,Transportation,Transportation +260151,Transportation,Transportation +260149,Transportation,Transportation +256851,Transportation,Transportation +256329,Transportation,Transportation +256299,Transportation,Transportation +256298,Transportation,Transportation +256296,Transportation,Transportation +256293,Transportation,Transportation +256292,Transportation,Transportation +256291,Transportation,Transportation +256290,Transportation,Transportation +256289,Transportation,Transportation +253590,Transportation,Transportation +253589,Transportation,Transportation +252889,Transportation,Transportation +252869,Transportation,Transportation +252689,Transportation,Transportation +252686,Transportation,Transportation +252684,Transportation,Transportation +252682,Transportation,Transportation +252680,Transportation,Transportation +252679,Transportation,Transportation +252677,Transportation,Transportation +252676,Transportation,Transportation +252675,Transportation,Transportation +252671,Transportation,Transportation +252669,Transportation,Transportation +248450,Transportation,Transportation +248169,Transportation,Transportation +248079,Transportation,Transportation +248078,Transportation,Transportation +248077,Transportation,Transportation +248076,Transportation,Transportation +248075,Transportation,Transportation +248074,Transportation,Transportation +248073,Transportation,Transportation +243879,Transportation,Transportation +243877,Transportation,Transportation +243872,Transportation,Transportation +243871,Transportation,Transportation +243870,Transportation,Transportation +243869,Transportation,Transportation +239229,Transportation,Transportation +239170,Transportation,Transportation +239169,Transportation,Transportation +239157,Transportation,Transportation +239156,Transportation,Transportation +239155,Transportation,Transportation +239154,Transportation,Transportation +239153,Transportation,Transportation +239152,Transportation,Transportation +239151,Transportation,Transportation +239149,Transportation,Transportation +237569,Transportation,Transportation +236090,Transportation,Transportation +236089,Transportation,Transportation +235995,Transportation,Transportation +235994,Transportation,Transportation +235992,Transportation,Transportation +235990,Transportation,Transportation +235989,Transportation,Transportation +232649,Transportation,Transportation +232634,Transportation,Transportation +232633,Transportation,Transportation +232632,Transportation,Transportation +232631,Transportation,Transportation +232630,Transportation,Transportation +232629,Transportation,Transportation +228514,Transportation,Transportation +228513,Transportation,Transportation +228512,Transportation,Transportation +226331,Transportation,Transportation +226330,Transportation,Transportation +226326,Transportation,Transportation +226319,Transportation,Transportation +226317,Transportation,Transportation +226314,Transportation,Transportation +226312,Transportation,Transportation +226310,Transportation,Transportation +226252,Transportation,Transportation +226251,Transportation,Transportation +226250,Transportation,Transportation +226247,Transportation,Transportation +226229,Transportation,Transportation +226227,Transportation,Transportation +222187,Transportation,Transportation +215454,Transportation,Transportation +215453,Transportation,Transportation +215452,Transportation,Transportation +215451,Transportation,Transportation +215450,Transportation,Transportation +214107,Transportation,Transportation +210535,Transportation,Transportation +210534,Transportation,Transportation +210533,Transportation,Transportation +210530,Transportation,Transportation +210528,Transportation,Transportation +414771,Transportation,Transportation +414769,Transportation,Transportation +414768,Transportation,Transportation +414767,Transportation,Transportation +414766,Transportation,Transportation +414765,Transportation,Transportation +411426,Transportation,Transportation +411425,Transportation,Transportation +411424,Transportation,Transportation +411423,Transportation,Transportation +411422,Transportation,Transportation +411421,Transportation,Transportation +411420,Transportation,Transportation +411419,Transportation,Transportation +411418,Transportation,Transportation +411417,Transportation,Transportation +411416,Transportation,Transportation +411415,Transportation,Transportation +411414,Transportation,Transportation +411413,Transportation,Transportation +411411,Transportation,Transportation +411410,Transportation,Transportation +408922,Transportation,Transportation +408921,Transportation,Transportation +408920,Transportation,Transportation +408919,Transportation,Transportation +408918,Transportation,Transportation +408917,Transportation,Transportation +408916,Transportation,Transportation +408915,Transportation,Transportation +408255,Transportation,Transportation +408254,Transportation,Transportation +408253,Transportation,Transportation +407597,Transportation,Transportation +407594,Transportation,Transportation +407590,Transportation,Transportation +407588,Transportation,Transportation +407587,Transportation,Transportation +407017,Transportation,Transportation +407014,Transportation,Transportation +407013,Transportation,Transportation +406430,Transportation,Transportation +406214,Transportation,Transportation +406213,Transportation,Transportation +406212,Transportation,Transportation +406211,Transportation,Transportation +406210,Transportation,Transportation +406209,Transportation,Transportation +406208,Transportation,Transportation +406207,Transportation,Transportation +406206,Transportation,Transportation +404608,Transportation,Transportation +404607,Transportation,Transportation +404606,Transportation,Transportation +404604,Transportation,Transportation +404603,Transportation,Transportation +404602,Transportation,Transportation +404600,Transportation,Transportation +404599,Transportation,Transportation +404598,Transportation,Transportation +404597,Transportation,Transportation +404596,Transportation,Transportation +404595,Transportation,Transportation +404185,Transportation,Transportation +402082,Transportation,Transportation +402081,Transportation,Transportation +402080,Transportation,Transportation +402079,Transportation,Transportation +402078,Transportation,Transportation +402077,Transportation,Transportation +402076,Transportation,Transportation +402075,Transportation,Transportation +402074,Transportation,Transportation +402073,Transportation,Transportation +402072,Transportation,Transportation +402071,Transportation,Transportation +402070,Transportation,Transportation +402068,Transportation,Transportation +402067,Transportation,Transportation +402066,Transportation,Transportation +402065,Transportation,Transportation +402064,Transportation,Transportation +402063,Transportation,Transportation +402062,Transportation,Transportation +402060,Transportation,Transportation +402059,Transportation,Transportation +402058,Transportation,Transportation +402057,Transportation,Transportation +402055,Transportation,Transportation +402052,Transportation,Transportation +402051,Transportation,Transportation +402049,Transportation,Transportation +402048,Transportation,Transportation +402047,Transportation,Transportation +402045,Transportation,Transportation +402043,Transportation,Transportation +402042,Transportation,Transportation +402041,Transportation,Transportation +402038,Transportation,Transportation +402036,Transportation,Transportation +402035,Transportation,Transportation +399697,Transportation,Transportation +399696,Transportation,Transportation +399695,Transportation,Transportation +399694,Transportation,Transportation +399693,Transportation,Transportation +399692,Transportation,Transportation +399691,Transportation,Transportation +399690,Transportation,Transportation +399689,Transportation,Transportation +399688,Transportation,Transportation +399686,Transportation,Transportation +399685,Transportation,Transportation +399684,Transportation,Transportation +399683,Transportation,Transportation +399682,Transportation,Transportation +399681,Transportation,Transportation +399680,Transportation,Transportation +399679,Transportation,Transportation +399678,Transportation,Transportation +399677,Transportation,Transportation +399675,Transportation,Transportation +399674,Transportation,Transportation +399673,Transportation,Transportation +399671,Transportation,Transportation +399670,Transportation,Transportation +399669,Transportation,Transportation +399668,Transportation,Transportation +399667,Transportation,Transportation +397868,Transportation,Transportation +397867,Transportation,Transportation +397866,Transportation,Transportation +397865,Transportation,Transportation +397863,Transportation,Transportation +397862,Transportation,Transportation +397861,Transportation,Transportation +397860,Transportation,Transportation +397859,Transportation,Transportation +397857,Transportation,Transportation +397855,Transportation,Transportation +397854,Transportation,Transportation +397853,Transportation,Transportation +397852,Transportation,Transportation +397851,Transportation,Transportation +397848,Transportation,Transportation +397847,Transportation,Transportation +397846,Transportation,Transportation +397845,Transportation,Transportation +397844,Transportation,Transportation +397843,Transportation,Transportation +397842,Transportation,Transportation +397243,Transportation,Transportation +397242,Transportation,Transportation +395330,Transportation,Transportation +395329,Transportation,Transportation +395328,Transportation,Transportation +395327,Transportation,Transportation +395326,Transportation,Transportation +395325,Transportation,Transportation +395324,Transportation,Transportation +395323,Transportation,Transportation +395322,Transportation,Transportation +395074,Transportation,Transportation +393352,Transportation,Transportation +393290,Transportation,Transportation +393289,Transportation,Transportation +393287,Transportation,Transportation +393286,Transportation,Transportation +393284,Transportation,Transportation +393282,Transportation,Transportation +393281,Transportation,Transportation +393280,Transportation,Transportation +393278,Transportation,Transportation +393276,Transportation,Transportation +393275,Transportation,Transportation +393274,Transportation,Transportation +392553,Transportation,Transportation +392349,Transportation,Transportation +392172,Transportation,Transportation +392171,Transportation,Transportation +389449,Transportation,Transportation +389448,Transportation,Transportation +389446,Transportation,Transportation +389445,Transportation,Transportation +389443,Transportation,Transportation +389442,Transportation,Transportation +389440,Transportation,Transportation +389438,Transportation,Transportation +389437,Transportation,Transportation +389435,Transportation,Transportation +389433,Transportation,Transportation +389431,Transportation,Transportation +386538,Transportation,Transportation +386535,Transportation,Transportation +386533,Transportation,Transportation +386532,Transportation,Transportation +386529,Transportation,Transportation +386528,Transportation,Transportation +386527,Transportation,Transportation +386526,Transportation,Transportation +386525,Transportation,Transportation +386524,Transportation,Transportation +386523,Transportation,Transportation +386522,Transportation,Transportation +386521,Transportation,Transportation +386520,Transportation,Transportation +386519,Transportation,Transportation +384753,Transportation,Transportation +384752,Transportation,Transportation +384751,Transportation,Transportation +384749,Transportation,Transportation +384748,Transportation,Transportation +384746,Transportation,Transportation +384745,Transportation,Transportation +384741,Transportation,Transportation +384739,Transportation,Transportation +384738,Transportation,Transportation +383073,Transportation,Transportation +383072,Transportation,Transportation +383070,Transportation,Transportation +382063,Transportation,Transportation +381961,Transportation,Transportation +381960,Transportation,Transportation +381959,Transportation,Transportation +381958,Transportation,Transportation +381957,Transportation,Transportation +381956,Transportation,Transportation +381955,Transportation,Transportation +381954,Transportation,Transportation +381953,Transportation,Transportation +380525,Transportation,Transportation +380517,Transportation,Transportation +380503,Transportation,Transportation +380501,Transportation,Transportation +380500,Transportation,Transportation +380499,Transportation,Transportation +380498,Transportation,Transportation +380497,Transportation,Transportation +380496,Transportation,Transportation +380495,Transportation,Transportation +380494,Transportation,Transportation +380493,Transportation,Transportation +380492,Transportation,Transportation +380491,Transportation,Transportation +380490,Transportation,Transportation +380489,Transportation,Transportation +378636,Transportation,Transportation +378635,Transportation,Transportation +378633,Transportation,Transportation +378135,Transportation,Transportation +378133,Transportation,Transportation +378131,Transportation,Transportation +378130,Transportation,Transportation +378129,Transportation,Transportation +378128,Transportation,Transportation +378127,Transportation,Transportation +378126,Transportation,Transportation +378122,Transportation,Transportation +378120,Transportation,Transportation +378119,Transportation,Transportation +375652,Transportation,Transportation +375651,Transportation,Transportation +375650,Transportation,Transportation +375649,Transportation,Transportation +375648,Transportation,Transportation +375647,Transportation,Transportation +375645,Transportation,Transportation +375642,Transportation,Transportation +375641,Transportation,Transportation +375640,Transportation,Transportation +375639,Transportation,Transportation +375638,Transportation,Transportation +375637,Transportation,Transportation +375636,Transportation,Transportation +375635,Transportation,Transportation +375634,Transportation,Transportation +375633,Transportation,Transportation +375632,Transportation,Transportation +375631,Transportation,Transportation +375630,Transportation,Transportation +375629,Transportation,Transportation +375628,Transportation,Transportation +375627,Transportation,Transportation +373702,Transportation,Transportation +373698,Transportation,Transportation +373697,Transportation,Transportation +373562,Transportation,Transportation +373561,Transportation,Transportation +373560,Transportation,Transportation +373559,Transportation,Transportation +373558,Transportation,Transportation +373557,Transportation,Transportation +373555,Transportation,Transportation +373552,Transportation,Transportation +373551,Transportation,Transportation +373548,Transportation,Transportation +373547,Transportation,Transportation +373546,Transportation,Transportation +373545,Transportation,Transportation +373544,Transportation,Transportation +373543,Transportation,Transportation +373542,Transportation,Transportation +373540,Transportation,Transportation +373539,Transportation,Transportation +373538,Transportation,Transportation +373537,Transportation,Transportation +373536,Transportation,Transportation +373535,Transportation,Transportation +373534,Transportation,Transportation +373533,Transportation,Transportation +372991,Transportation,Transportation +370650,Transportation,Transportation +370647,Transportation,Transportation +370603,Transportation,Transportation +370602,Transportation,Transportation +370463,Transportation,Transportation +370462,Transportation,Transportation +370461,Transportation,Transportation +370460,Transportation,Transportation +370459,Transportation,Transportation +370458,Transportation,Transportation +370457,Transportation,Transportation +370456,Transportation,Transportation +370455,Transportation,Transportation +370454,Transportation,Transportation +370453,Transportation,Transportation +370452,Transportation,Transportation +370451,Transportation,Transportation +370450,Transportation,Transportation +370449,Transportation,Transportation +370447,Transportation,Transportation +370446,Transportation,Transportation +368774,Transportation,Transportation +368213,Transportation,Transportation +368212,Transportation,Transportation +368211,Transportation,Transportation +368210,Transportation,Transportation +368209,Transportation,Transportation +368208,Transportation,Transportation +366213,Transportation,Transportation +366212,Transportation,Transportation +366211,Transportation,Transportation +366210,Transportation,Transportation +366209,Transportation,Transportation +364649,Transportation,Transportation +364648,Transportation,Transportation +364587,Transportation,Transportation +364572,Transportation,Transportation +364571,Transportation,Transportation +364570,Transportation,Transportation +364569,Transportation,Transportation +364567,Transportation,Transportation +363182,Transportation,Transportation +362179,Transportation,Transportation +362089,Transportation,Transportation +362088,Transportation,Transportation +360986,Transportation,Transportation +360985,Transportation,Transportation +360984,Transportation,Transportation +359174,Transportation,Transportation +359173,Transportation,Transportation +359172,Transportation,Transportation +359171,Transportation,Transportation +359170,Transportation,Transportation +359169,Transportation,Transportation +359168,Transportation,Transportation +359167,Transportation,Transportation +359166,Transportation,Transportation +359165,Transportation,Transportation +359164,Transportation,Transportation +359163,Transportation,Transportation +357453,Transportation,Transportation +357451,Transportation,Transportation +357391,Transportation,Transportation +357390,Transportation,Transportation +357389,Transportation,Transportation +357387,Transportation,Transportation +357386,Transportation,Transportation +357385,Transportation,Transportation +355626,Transportation,Transportation +355625,Transportation,Transportation +355624,Transportation,Transportation +355623,Transportation,Transportation +355622,Transportation,Transportation +355621,Transportation,Transportation +355620,Transportation,Transportation +352948,Transportation,Transportation +352947,Transportation,Transportation +352946,Transportation,Transportation +352881,Transportation,Transportation +352880,Transportation,Transportation +352812,Transportation,Transportation +352811,Transportation,Transportation +352810,Transportation,Transportation +352809,Transportation,Transportation +352808,Transportation,Transportation +352807,Transportation,Transportation +350626,Transportation,Transportation +350624,Transportation,Transportation +350621,Transportation,Transportation +350599,Transportation,Transportation +350597,Transportation,Transportation +350595,Transportation,Transportation +350592,Transportation,Transportation +350591,Transportation,Transportation +350589,Transportation,Transportation +350588,Transportation,Transportation +350587,Transportation,Transportation +350586,Transportation,Transportation +350585,Transportation,Transportation +350584,Transportation,Transportation +350583,Transportation,Transportation +350582,Transportation,Transportation +350581,Transportation,Transportation +350579,Transportation,Transportation +350578,Transportation,Transportation +350577,Transportation,Transportation +350576,Transportation,Transportation +350575,Transportation,Transportation +350574,Transportation,Transportation +350573,Transportation,Transportation +350572,Transportation,Transportation +350571,Transportation,Transportation +350570,Transportation,Transportation +350569,Transportation,Transportation +348905,Transportation,Transportation +348521,Transportation,Transportation +348517,Transportation,Transportation +348376,Transportation,Transportation +348374,Transportation,Transportation +348373,Transportation,Transportation +348372,Transportation,Transportation +348371,Transportation,Transportation +348370,Transportation,Transportation +348369,Transportation,Transportation +348367,Transportation,Transportation +348366,Transportation,Transportation +348365,Transportation,Transportation +348364,Transportation,Transportation +348363,Transportation,Transportation +348362,Transportation,Transportation +348361,Transportation,Transportation +348360,Transportation,Transportation +348359,Transportation,Transportation +348358,Transportation,Transportation +348263,Transportation,Transportation +346357,Transportation,Transportation +345637,Transportation,Transportation +345597,Transportation,Transportation +345579,Transportation,Transportation +345577,Transportation,Transportation +345557,Transportation,Transportation +345377,Transportation,Transportation +345358,Transportation,Transportation +345357,Transportation,Transportation +345337,Transportation,Transportation +345318,Transportation,Transportation +343227,Transportation,Transportation +343226,Transportation,Transportation +343219,Transportation,Transportation +343218,Transportation,Transportation +343217,Transportation,Transportation +343216,Transportation,Transportation +343215,Transportation,Transportation +343213,Transportation,Transportation +343212,Transportation,Transportation +343211,Transportation,Transportation +343210,Transportation,Transportation +343208,Transportation,Transportation +343207,Transportation,Transportation +340432,Transportation,Transportation +340429,Transportation,Transportation +340312,Transportation,Transportation +340311,Transportation,Transportation +340310,Transportation,Transportation +340309,Transportation,Transportation +340308,Transportation,Transportation +340307,Transportation,Transportation +340306,Transportation,Transportation +340305,Transportation,Transportation +340304,Transportation,Transportation +338025,Transportation,Transportation +337261,Transportation,Transportation +337260,Transportation,Transportation +337259,Transportation,Transportation +337257,Transportation,Transportation +337255,Transportation,Transportation +337252,Transportation,Transportation +335010,Transportation,Transportation +334930,Transportation,Transportation +334849,Transportation,Transportation +334844,Transportation,Transportation +334843,Transportation,Transportation +334841,Transportation,Transportation +334840,Transportation,Transportation +542672,Transportation,Transportation +542670,Transportation,Transportation +542136,Transportation,Transportation +523015,Transportation,Transportation +523009,Transportation,Transportation +523000,Transportation,Transportation +522992,Transportation,Transportation +519284,Transportation,Transportation +518768,Transportation,Transportation +518759,Transportation,Transportation +518758,Transportation,Transportation +518032,Transportation,Transportation +518013,Transportation,Transportation +517985,Transportation,Transportation +517675,Transportation,Transportation +517669,Transportation,Transportation +517663,Transportation,Transportation +517637,Transportation,Transportation +517633,Transportation,Transportation +517627,Transportation,Transportation +517624,Transportation,Transportation +515102,Transportation,Transportation +515100,Transportation,Transportation +515099,Transportation,Transportation +514612,Transportation,Transportation +513734,Transportation,Transportation +513723,Transportation,Transportation +513722,Transportation,Transportation +513721,Transportation,Transportation +513524,Transportation,Transportation +512816,Transportation,Transportation +512799,Transportation,Transportation +510355,Transportation,Transportation +510354,Transportation,Transportation +510353,Transportation,Transportation +510346,Transportation,Transportation +508042,Transportation,Transportation +508036,Transportation,Transportation +503628,Transportation,Transportation +503627,Transportation,Transportation +502269,Transportation,Transportation +502265,Transportation,Transportation +499354,Transportation,Transportation +499352,Transportation,Transportation +499349,Transportation,Transportation +499322,Transportation,Transportation +499320,Transportation,Transportation +499317,Transportation,Transportation +499313,Transportation,Transportation +495951,Transportation,Transportation +495949,Transportation,Transportation +495947,Transportation,Transportation +495946,Transportation,Transportation +493389,Transportation,Transportation +493385,Transportation,Transportation +493382,Transportation,Transportation +493379,Transportation,Transportation +493370,Transportation,Transportation +490953,Transportation,Transportation +490950,Transportation,Transportation +490948,Transportation,Transportation +490947,Transportation,Transportation +490940,Transportation,Transportation +490939,Transportation,Transportation +490938,Transportation,Transportation +490937,Transportation,Transportation +488018,Transportation,Transportation +488016,Transportation,Transportation +485139,Transportation,Transportation +485137,Transportation,Transportation +485131,Transportation,Transportation +485129,Transportation,Transportation +485124,Transportation,Transportation +485115,Transportation,Transportation +485112,Transportation,Transportation +485104,Transportation,Transportation +482294,Transportation,Transportation +482291,Transportation,Transportation +482290,Transportation,Transportation +482288,Transportation,Transportation +482284,Transportation,Transportation +482277,Transportation,Transportation +482269,Transportation,Transportation +482268,Transportation,Transportation +482266,Transportation,Transportation +482252,Transportation,Transportation +482245,Transportation,Transportation +482243,Transportation,Transportation +479991,Transportation,Transportation +479988,Transportation,Transportation +479980,Transportation,Transportation +478263,Transportation,Transportation +478255,Transportation,Transportation +478253,Transportation,Transportation +478250,Transportation,Transportation +478249,Transportation,Transportation +478247,Transportation,Transportation +478244,Transportation,Transportation +478243,Transportation,Transportation +478241,Transportation,Transportation +475438,Transportation,Transportation +475436,Transportation,Transportation +475430,Transportation,Transportation +475427,Transportation,Transportation +475425,Transportation,Transportation +475421,Transportation,Transportation +471036,Transportation,Transportation +471029,Transportation,Transportation +471014,Transportation,Transportation +471012,Transportation,Transportation +471010,Transportation,Transportation +471004,Transportation,Transportation +470997,Transportation,Transportation +470992,Transportation,Transportation +470989,Transportation,Transportation +470988,Transportation,Transportation +470984,Transportation,Transportation +470983,Transportation,Transportation +470973,Transportation,Transportation +470966,Transportation,Transportation +470961,Transportation,Transportation +470958,Transportation,Transportation +470950,Transportation,Transportation +468607,Transportation,Transportation +468606,Transportation,Transportation +468605,Transportation,Transportation +468602,Transportation,Transportation +468601,Transportation,Transportation +468600,Transportation,Transportation +468599,Transportation,Transportation +468596,Transportation,Transportation +468594,Transportation,Transportation +465181,Transportation,Transportation +465177,Transportation,Transportation +465176,Transportation,Transportation +462722,Transportation,Transportation +462721,Transportation,Transportation +462719,Transportation,Transportation +462714,Transportation,Transportation +461668,Transportation,Transportation +461560,Transportation,Transportation +461558,Transportation,Transportation +461555,Transportation,Transportation +461552,Transportation,Transportation +460618,Transportation,Transportation +460617,Transportation,Transportation +460616,Transportation,Transportation +460091,Transportation,Transportation +457518,Transportation,Transportation +457515,Transportation,Transportation +457513,Transportation,Transportation +457506,Transportation,Transportation +457502,Transportation,Transportation +455593,Transportation,Transportation +455588,Transportation,Transportation +455581,Transportation,Transportation +455569,Transportation,Transportation +455567,Transportation,Transportation +455564,Transportation,Transportation +455559,Transportation,Transportation +455555,Transportation,Transportation +455539,Transportation,Transportation +452436,Transportation,Transportation +452435,Transportation,Transportation +452433,Transportation,Transportation +452431,Transportation,Transportation +450031,Transportation,Transportation +450023,Transportation,Transportation +447708,Transportation,Transportation +447706,Transportation,Transportation +447705,Transportation,Transportation +447704,Transportation,Transportation +447703,Transportation,Transportation +447702,Transportation,Transportation +447701,Transportation,Transportation +447700,Transportation,Transportation +447691,Transportation,Transportation +447689,Transportation,Transportation +447687,Transportation,Transportation +447684,Transportation,Transportation +445478,Transportation,Transportation +445466,Transportation,Transportation +445453,Transportation,Transportation +445448,Transportation,Transportation +445439,Transportation,Transportation +445437,Transportation,Transportation +443443,Transportation,Transportation +443441,Transportation,Transportation +443440,Transportation,Transportation +443439,Transportation,Transportation +443435,Transportation,Transportation +443434,Transportation,Transportation +443432,Transportation,Transportation +443430,Transportation,Transportation +443429,Transportation,Transportation +443428,Transportation,Transportation +443426,Transportation,Transportation +443421,Transportation,Transportation +443419,Transportation,Transportation +437292,Transportation,Transportation +437282,Transportation,Transportation +437280,Transportation,Transportation +437279,Transportation,Transportation +437277,Transportation,Transportation +437276,Transportation,Transportation +434922,Transportation,Transportation +434918,Transportation,Transportation +434767,Transportation,Transportation +434766,Transportation,Transportation +434765,Transportation,Transportation +434764,Transportation,Transportation +434763,Transportation,Transportation +434762,Transportation,Transportation +433999,Transportation,Transportation +433998,Transportation,Transportation +433997,Transportation,Transportation +433108,Transportation,Transportation +433106,Transportation,Transportation +433105,Transportation,Transportation +433102,Transportation,Transportation +433100,Transportation,Transportation +432236,Transportation,Transportation +432138,Transportation,Transportation +432137,Transportation,Transportation +432135,Transportation,Transportation +432134,Transportation,Transportation +431953,Transportation,Transportation +431865,Transportation,Transportation +431864,Transportation,Transportation +431863,Transportation,Transportation +431862,Transportation,Transportation +431861,Transportation,Transportation +431860,Transportation,Transportation +431859,Transportation,Transportation +431716,Transportation,Transportation +430204,Transportation,Transportation +430203,Transportation,Transportation +430153,Transportation,Transportation +430152,Transportation,Transportation +430151,Transportation,Transportation +427644,Transportation,Transportation +427643,Transportation,Transportation +427641,Transportation,Transportation +427639,Transportation,Transportation +427638,Transportation,Transportation +427637,Transportation,Transportation +427636,Transportation,Transportation +425478,Transportation,Transportation +425477,Transportation,Transportation +425476,Transportation,Transportation +425402,Transportation,Transportation +425400,Transportation,Transportation +425247,Transportation,Transportation +425246,Transportation,Transportation +425245,Transportation,Transportation +425244,Transportation,Transportation +425243,Transportation,Transportation +425242,Transportation,Transportation +425241,Transportation,Transportation +425240,Transportation,Transportation +425239,Transportation,Transportation +423490,Transportation,Transportation +423489,Transportation,Transportation +423488,Transportation,Transportation +423487,Transportation,Transportation +423125,Transportation,Transportation +423124,Transportation,Transportation +423123,Transportation,Transportation +423122,Transportation,Transportation +423121,Transportation,Transportation +423120,Transportation,Transportation +423119,Transportation,Transportation +423118,Transportation,Transportation +421835,Transportation,Transportation +421834,Transportation,Transportation +421833,Transportation,Transportation +421832,Transportation,Transportation +421830,Transportation,Transportation +420825,Transportation,Transportation +420823,Transportation,Transportation +420822,Transportation,Transportation +420820,Transportation,Transportation +420819,Transportation,Transportation +420818,Transportation,Transportation +420815,Transportation,Transportation +420814,Transportation,Transportation +420813,Transportation,Transportation +420812,Transportation,Transportation +420811,Transportation,Transportation +420810,Transportation,Transportation +420809,Transportation,Transportation +420808,Transportation,Transportation +418763,Transportation,Transportation +418762,Transportation,Transportation +418761,Transportation,Transportation +418760,Transportation,Transportation +417484,Transportation,Transportation +417483,Transportation,Transportation +417482,Transportation,Transportation +417481,Transportation,Transportation +417480,Transportation,Transportation +417479,Transportation,Transportation +417478,Transportation,Transportation +417477,Transportation,Transportation +417476,Transportation,Transportation +417474,Transportation,Transportation +417471,Transportation,Transportation +417470,Transportation,Transportation +414940,Transportation,Transportation +414939,Transportation,Transportation +414938,Transportation,Transportation +414786,Transportation,Transportation +414785,Transportation,Transportation +414784,Transportation,Transportation +414782,Transportation,Transportation +414781,Transportation,Transportation +414779,Transportation,Transportation +414778,Transportation,Transportation +423487,Agriculture,Agriculture +411418,Agriculture,Agriculture +158658,Agriculture,Agriculture +158656,Agriculture,Agriculture +151836,Agriculture,Agriculture +147456,Agriculture,Agriculture +141716,Agriculture,Agriculture +141675,Agriculture,Agriculture +188397,Agriculture,Agriculture +188396,Agriculture,Agriculture +318610,Agriculture,Agriculture +318599,Agriculture,Agriculture +315224,Agriculture,Agriculture +315223,Agriculture,Agriculture +315218,Agriculture,Agriculture +302399,Agriculture,Agriculture +513722,Agriculture,Agriculture +479987,Agriculture,Agriculture +447691,Agriculture,Agriculture +468603,Taxation and Finance,Taxation and Finance +443441,Taxation and Finance,Taxation and Finance +192439,Taxation and Finance,Taxation and Finance +192437,Taxation and Finance,Taxation and Finance +192430,Taxation and Finance,Taxation and Finance +192429,Taxation and Finance,Taxation and Finance +192427,Taxation and Finance,Taxation and Finance +192422,Taxation and Finance,Taxation and Finance +402038,Taxation and Finance,Taxation and Finance +392553,Taxation and Finance,Taxation and Finance +132877,Other,"Meeting request to discuss the Government of Canada's new ""institutional entity"" to promote democracy." +132707,Health,Health +138406,Industry,Industry +135734,Consumer Issues,Consumer Issues +134055,Other,Clean Trucks Canada - Funding Proposal +130955,International Relations,International Relations +135294,Other,Foreign Affairs +135294,International Relations,International Relations +136635,Other,Web Insurance Issue +131075,Other,Web Insurance issue +131118,Other,Broadband Competition- MTS Allstream Petition +131124,Other,Financial Overview +135917,Other,Southern Ontario Development Program (SODP) +131154,Taxation and Finance,Taxation and Finance +131575,Government Procurement,Government Procurement +131314,Environment,Environment +200286,Health,Health +200213,Industry,Industry +200294,Justice and Law Enforcement,Justice and Law Enforcement +532414,Taxation and Finance,Taxation and Finance +131354,Other,New Technology Veterinary Drug Regulatory Interface +131354,Other,Veterinary Drug Frameworks +131354,Other,Veterinary Natural Health Products +135059,Other,Housing +145591,Taxation and Finance,Taxation and Finance +131515,Other,Climate adaptation in the UNFCCC negotiations +131554,Other,Clean Trucks Canada Funding Proposal +131555,Other,Clean Trucks Canada funding proposal +131556,Other,Clean Truck Canada funding proposal +131557,Other,Clean Truck Canada funding proposal +159677,Environment,Environment +131597,Other,2010 budget +131597,Other,Eco Energy +131614,Other,KIP program +131616,Government Procurement,Government Procurement +131615,Other,Short term and long term policy approaches in the face of the Biomass Crop Assistance Program and other US subsidies. +131617,Other,Canadian Lumber Trade Alliance +131620,Other,FPInnovations +131622,Other,E.I. work sharing +153040,Regional Development,Regional Development +131624,Regional Development,Regional Development +195002,Health,Health +131663,Other,Regional Development +131663,Other,Regional Development +361105,Intellectual Property,Intellectual Property +131696,Other,Softwood Lumber Agreement Issues +131774,Other,Cell phone tower policy +131775,Other,COP15 +131795,Other,Economic Impact of the Brewing Industry in Canada +131795,Other,National Alcohol Strategy +131795,Other,World Health Organization Draft Global Alcohol Strategy +131801,Other,Economic Impact of the Brewing Industry in Canada +131801,Other,National Alcohol Strategy +131801,Other,World Health Organization Draft Global Alcohol Strategy +131819,Other,Deep Sea Ports +486867,Environment,Environment +532533,Infrastructure,Infrastructure +131954,Other,Funding of Research +131954,Taxation and Finance,Taxation and Finance +517141,Agriculture,Agriculture +161499,Constitutional Issues,Constitutional Issues +169235,Health,Health +131995,Other,Corporate and Social Responsibility and Human Rights in respect to the Rountable Report and the government's CSR Strategy +131995,Other,"Bill C-300 - An Act Respecting Corporate Accountability for the Activities of Mining, Oil or Gas in Developing Countries" +132034,Other,Finance +132054,Other,Regulatory Matters +132055,Other,Anti-doping Issue +153622,Infrastructure,Infrastructure +132154,Other,Matters related to labour dispute +132155,Other,Asia Pacific Gateway issues +132156,Other,Matters related to labour dispute +132297,Health,Health +132297,Taxation and Finance,Taxation and Finance +132175,Other,To discuss issues facing the insurance industry +132175,Other,To discuss policyholder priority +132175,Other,To discuss the ongoing relationship between the life insurance industry and OSFI +132175,Other,Life and Health insurance priorities +132297,Infrastructure,Infrastructure +132235,Other,PMO Visit to Brampton Facility +132236,Other,PMO Visit to Brampton Facility +132237,Other,Political Briefing +132281,Other,Automotive Technology Environmental Innovation +132283,Taxation and Finance,Taxation and Finance +132284,Other,Credit Card Regulations and AML +132282,Other,Economic & Fiscal Policy in relation to providing input regarding federal financial/tax issues +132282,Other,Energy Policy in relation to providing input on federal energy policy issues +132282,Other,Foreign investment and trade as it relates to trade and investment agreements or activitie that may affect the Canadian mining industry +132282,Other,Northern Infrastructure +132285,Other,Corporate and Social Responsibility & Human Rights in respect to the Rountable Report and the goernment's CSR Strategy and Bill C-300 +132285,Other,Foreign investment and trade as it relates to trade and investment agreements or activities that may affect the Canadian mining industry +132286,Other,Canadian Environmental Assessment Act & Regs as they affect assessment of projects in the mineral industry +132286,Other,Canadian Environmental Protection Act as it applies to substances produced by or used by the mineral industry +132286,Other,Fisheries Act in respect of the Metal Mining Effluent Regulations (MMER) including requirements for Environemntal Effects Monitoring (EEM) +132286,Other,Northern Major Projects Management Office in relation to mining projects in the North and promoting economic development +132287,Other,Credit Card Regulations and AML +132289,Other,Credit Card Regulations and AML +132290,Other,Credit Card Regulations and AML +132291,Other,Credit Card Regulations and AML +132292,Other,Credit Card Regulations and AML +132315,Other,Canadian Environmental Assessment Act & Regs as they affect assessment of projects in the mineral industry +132315,Other,Canadian Environmental Protection Act as it applies to substances produced by or used by the mineral industry - NPRI +132315,Other,Corporate & Social Responsibility and Human Rights in respect to the Roundtable Report and the governments CSR Strategy and Bill C-300 +132315,Other,Economic & Fiscal Policy in relation to providing input regarding federal financial/tax issues +132315,Other,Northern Major Projects Management Office in relation to mining projects in the North and promoting economic development +132300,Other,Canadian Environmental Assessment Act & Regs as they affect assessment of projects in the mineral industry +132300,Other,Economic and Fiscal Policy in relation to providing input regarding federal financial/tax issues +132300,Other,"Fisheries Act in respect of the Metal Mining Effluent Regulations (MMER), including requirement for Environmental Effects Monitoring (EEM)" +132300,Other,Northern Major Projects Management Office in relation to mining projects in the North and promoting economic development +132301,Other,Canadian Environmental Protection Act as it applies to substances produced by or used by the mineral industry NPRI +132301,Other,Climate Change in relation to providing input regarding federal strategies/processes to address greenhouse gas emissions +132317,Other,Fisheries Act in respect of the Metal Mining Effluent Regulations (MMER) including requirements for Environmental Effects Monitoring (EEM) +132317,Other,Northern Major Projects Management Office in relation to mining projects in the North and promoting economic development +132303,Other,Marine Industrial Policy +132315,Other,Species at Risk Act in relation to it's interaction with the Canadian Environmental Assessment Act as a trigger for assessment and in imposing additinal conditions on projects +132316,Other,"Canadian Environmental Assessment Act & Regs, as they affect assessment of projects in the mineral industry" +132316,Other,Canadian Environmental Protection Act as it applies to substances produced by or used by the mineral industry +132316,Other,Northern Major Projects Management Office in relation to mining projects in the North and promoting economic development +132319,Other,Clean Air Regulatory Framework - turning the Corner Plan to Reduced Greenhouse Gases and Air Pollution (Clean Air Regulatory Framework) is it impacts companies in the mineral industry +132319,Other,Climate Change in relation to providing input regarding federal strategies/processes to address greenhouse gas emissions +132319,Other,Northern Major Projects Management Office in relatin to mining projects in the North andpromoting economic development +151883,Other,Food Safety +132356,Other,Federal Development and other Federal Program funding +132357,Other,Relationship Matters and Financial Support +132358,Other,Financial Support +138975,Other,"Air Traveller Security Charge, Airport Ground Rent, Airport policing financing" +132420,Other,REQUEST FOR MEETING WITH MINISTER RE: TELECOMMUNICATIONS +132423,Other,Dairy Pricing Consultation +136935,Employment and Training,Employment and Training +136935,Industry,Industry +136937,Employment and Training,Employment and Training +136937,Industry,Industry +132439,Other,Farm Products Council of Canada +132441,Other,Farm Products Council of Canada +132450,Other,international development re: global health and health system strengthening. +407615,Agriculture,Agriculture +207371,Internal Trade,Commerce intérieur +442111,International Trade,Commerce international +132474,Other,CETA +132475,Other,Canada-EU Trade Agreement +132476,Other,"Ongoing discussions in the WTO agricultural negotiations and, in particular, Canada's submission of any revisions to technical data submitted in July 2008." +132476,Other,Update on the WTO negotiations as they pertained to the development of market access templates and the upcoming WTO Ministerial in December 2009. +132483,Other,NGO's role in lead up to G8/G20 +132483,Other,Discussed how the NGO community can work with the Government of Canada in the lead up to the G8/G20 meetings in June 2010. +132511,Other,Most Favoured Nation (MFN) Tariffs on Barley and Barley Products +132516,Other,Copyright related +132529,Other,Canada Mining Innovation Council (CMIC) - Funding +132529,Other,Economic Issues +132529,Other,National Pollutant Release Inventory (NPRI) +132534,Other,Canada Mining Innovation Council (CMIC) +270991,Industry,Industry +434509,International Trade,International Trade +132545,Other,Tourism growth strategy +132546,Other,National airports policy +132548,Other,Airport policing +132548,Other,National airports policy +132549,Other,General airport industry overview +132550,Other,Foreign Trade Zones (FTZ) +132551,Other,Custom Controlled Areas (CCAs) at airports +132551,Other,Nexus expansion +132847,Other,Introduction to CAE +138882,Other,25th Anniversary +132617,Other,25th Anniversary +138876,Other,25th Anniversary +138875,Other,25th Anniversary +139194,Other,25th Anniversary +138878,Other,25th Anniversary +132622,International Trade,International Trade +132624,Other,25th Anniversary +132625,Other,25th Anniversary +148175,Other,25th Anniversary +132627,Other,Economy +132654,Other,Advertising and technologies +132655,Small Business,Small Business +132655,Tourism,Tourism +132718,Other,CMIC +132718,Other,Green Mining Initiative +132725,Other,CMIC +132725,Other,Economic issues +132725,Other,MPMO +132725,Other,NPRI +132731,Other,Compassionate Care Benefits +132732,Other,Bill C-300 +132732,Other,Taxes +132741,Other,Compassionate Care Benefits +132748,Taxation and Finance,Taxation and Finance +132755,Other,IRB pour Contrat OWSS avec DND +132755,Other,Tour de contrôle de Mirabel +132798,Other,Bill C-56: An act to amend the Employment Insurance Act +132826,Environment,Environment +132826,Other,National Parks Management Plans +132817,Other,Procurement +129101,Other,Conservation +132826,Other,Interpretation of s. 11 of the National Parks Act +132826,Other,Interpretation of s. 74 of the Canadian Environmental Assessment Act +132838,Other,Broadband +132844,Other,Broadband +411411,Employment and Training,Employment and Training +417474,Labour,Labour +414777,Transportation,Transportation +132850,Other,Procurement +431859,Agriculture,Agriculture +468604,Taxation and Finance,Taxation and Finance +132855,Other,Broadband +132858,Other,Interpretation of s. 15(6) of the National Parks Act +132857,Other,Procurement +132870,Other,UN Convention on the Rights of Persons with Disabilities +132872,Other,Education +139494,Other,"Meeting request to discuss the Government of Canada's new ""institutional entity"" to promote democracy." +132880,Other,Federal policy on nuclear power development in Ontario +132879,Other,General state of publishing industry and funding for Book Publishing Industry Development Program +132885,Other,Meeting to discuss adaptation to climate change. +136314,Other,Workshare program +132900,Other,Artic Security +132918,International Trade,International Trade +132925,Other,IPTV Demo +132923,Other,Discuss invitation for Minister Ablonczy to attend GEW Summit +132927,Other,Pandemic Planning +132935,Other,Species at Risk +132936,Other,Species at Risk +236291,Energy,Energy +348274,Transportation,Transportation +139914,Other,Financial Services +145729,Other,Financial Services +139935,Other,Financial Services +132980,Other,Advertising +132980,Other,technologies +387335,Small Business,Small Business +132982,Tourism,Tourism +132991,Other,Energy efficiency +155848,Financial Institutions,Financial Institutions +165559,Energy,Energy +142336,Environment,Environment +176564,Fisheries,Fisheries +176564,Industry,Industry +133094,Other,Bill C-300 +133095,Other,Bill C-300 +133096,Other,Bill C-300 +133097,Other,Bill C-300 +133098,Other,Bill C-300 +133099,Other,C-300 +133100,Other,Bill C-300 +133117,Financial Institutions,Financial Institutions +152089,Other,Business Regulations +145906,Other,Economic Development +152079,Other,Employment and Training +145419,Other,Industry +152089,Other,Internal Trade +137357,Other,International Relations +133136,Other,"Financial Institutions, Financial Services" +145355,International Trade,International Trade +162345,Other,"Financial Institutions, Financial Services" +133174,Other,Introduce CYBF +133195,Other,Minister Flaherty possibly attending Nov. 16.09 launch of GEW and Chairman's Awards +133215,Other,"Discuss scheduling Dec. 18, 2009 meeting" +133220,Other,Provide update of CYBF activities and discuss 2010-12 initiatives +133219,Other,Provide update of CYBF activities and discuss 2010-12 initiatives +133221,Other,Discuss CYBF activities in Atlantic Canada and possibility for joint initiative with ACOA +133223,Other,Introduce CYBF. Discuss G20 Youth Summit. 2010-2012 initiatives. +133234,Other,new policy proposals for support of community non-profit sectors +136094,Defence,Defence +139295,Government Procurement,Government Procurement +139294,Regional Development,Regional Development +133274,Other,Canada Interest Act +133295,Taxation and Finance,Taxation and Finance +167688,Taxation and Finance,Taxation and Finance +133355,Other,Inhouse meeting to inform new Chief of Staff re CYBF priorities. +133357,Other,To discuss G20 Youth Leadership +133374,Other,Discuss G20 Youth Entrepreneurship Summit +133376,Other,Discuss G20 Youth Entrepreneurship Summit +133397,Other,Discuss CYBF success in 2009 +162348,Other,"Financial Institutions, Financial Services" +133415,Other,Call to discuss G20 Youth Entrepreneurship Summit +133416,Other,Call - update of CYBF investments in 2009 and meeting requests. +162451,Other,"Financial Institutions, Financial Services" +133436,Other,"Financial Institutions, Financial Services" +133443,Other,"Financial Institutions, Financial Services" +133456,Other,"Financial Institutions, Financial Services" +133514,Taxation and Finance,Taxation and Finance +133515,Taxation and Finance,Taxation and Finance +138581,Forestry,Forestry +138581,Industry,Industry +138581,Regional Development,Regional Development +399238,Energy,Energy +399238,Environment,Environment +133614,Other,Discuss CYBF 2009 activities. Plans for G20 Youth Summit. 2010 - 2012 initiatives. +133615,Other,Discuss CYBF 2009 activities. Plans for G20 Youth Summit. 2010 -2012 initiatives. +133616,Other,Discuss CYBF 2009 activities. Plans for G20 Youth Summit. 2010 - 2012 initiatives. +133617,Other,Discuss CYBF 2009 activities. Plan for G20 Youth Summit. 2010-2012 initiatives. +133618,Other,"Discuss scheduling December 18, 2009 meeting." +133619,Other,Meeting - CYBF activities and strategic plan. +133620,Other,CYBF activities and strategic plan. +133623,Other,Meeting - CYBF activities and strategic plan. +133624,Other,Call - meeting request +133625,Other,Call - meeting request +133626,Other,Call - set up meeting with the Minister +133627,Other,Call - set up meeting with Minister +133637,Other,Call - meeting request +133637,Other,Discuss CYBF success in 2009. +133639,Other,Call - to speak to ADM re G20 +133640,Other,To discuss G20 Youth leadership +133641,Other,To schedule a communication with the ADM +133775,Other,25th Anniversary +148174,Other,25th Anniversary +133777,Other,Mackenzie Valley Pipeline +133778,Other,Mackenzie Valley Pipeline +133779,Other,25th Anniversary +148167,Other,25th Anniversary +139196,Other,25th Anniversary +133783,Other,25th Anniversary +133795,Other,CSR Strategy +140416,Other,CSR Policy +133797,Other,CSR Strategy +133798,Other,CSR Strategy +133799,Other,CSR Strategy +133814,Other,Introduction to L-3 MAS +133834,Other,Acrylamide +133834,Other,BPA +339914,Education,Education +464619,Environment,Environment +523040,Health,Health +133916,Other,Enterprise-wide procurement +133917,Other,Enterprise-wide procurement +133918,Other,CIO Council +133921,Other,Outcomes-based procurement +133922,Other,"Outcomes-based procurement, CIO Council" +133923,Other,Outcomes-based procurement +469263,International Relations,International Relations +133975,Other,"Single regulator, Federal Budget (RRSP, RRIF, TFSA)" +133975,Other,La chambre de compensation pour les produits dérivés +154266,International Trade,International Trade +142256,Mining,Mining +148371,Energy,Energy +148369,Environment,Environment +148369,Industry,Industry +148371,International Relations,International Relations +134014,Other,"Single Regulator, Federal Budget (RRSP, RRIF, TFSA), La chambre de compensation pour les produits dérivés" +134095,Fisheries,Fisheries +134194,Other,Éducation +134194,Small Business,Petites entreprises +134194,Other,Tourisme +134198,Other,Situation of construction market in Algeria +138955,Other,Clean Trucks Canada - Funding Proposal +134218,Other,Clean Trucks Canada - Funding Proposal +376527,Financial Institutions,Financial Institutions +410766,Small Business,Small Business +471461,Taxation and Finance,Taxation and Finance +134234,Other,Devolution +138994,Government Procurement,Government Procurement +378382,Employment and Training,Employment and Training +465694,Internal Trade,Internal Trade +142861,Taxation and Finance,Taxation and Finance +148964,Labour,Labour +134394,Other,Deep sea port +134395,Other,Deep sea port +134397,Other,Thirty Meter Telescope +244130,Justice and Law Enforcement,Justice and Law Enforcement +148374,Infrastructure,Infrastructure +134534,Other,Air Emissions +134638,Other,CF-18 OWSM +134655,Other,tour of newly expanded hub located in the riding +472957,Taxation and Finance,Taxation and Finance +146374,Financial Institutions,Financial Institutions +146374,Taxation and Finance,Taxation and Finance +157570,Taxation and Finance,Taxation and Finance +516247,Taxation and Finance,Taxation and Finance +134735,Other,Counter-Terrorism Policy +147928,Industry,Industry +134754,Other,Employment Insurance +209607,Constitutional Issues,Constitutional Issues +209609,Consumer Issues,Consumer Issues +209609,Health,Health +219790,Industry,Industry +219790,Internal Trade,Internal Trade +158857,International Trade,International Trade +219790,Small Business,Small Business +145969,Agriculture,Agriculture +145969,Government Procurement,Government Procurement +134854,Other,Dairy Prices +134856,Other,Grain transportation +145704,Agriculture,Agriculture +145710,Government Procurement,Government Procurement +145689,Agriculture,Agriculture +145689,Government Procurement,Government Procurement +134958,Other,National Pollutant Release Inventory (NPRI) +134963,Other,Northern Projects Management Office +134978,Other,General Tax Issues facing the Life Insurance Industry +134978,Other,Pension Issues +134978,Other,Pension Issues +134982,Other,Centre of Excellence +133780,Other,Mackenzie Valley Pipeline +134989,Other,Funding for Mauro Centre +134990,Other,Centre of Excellence +134991,Other,Centre of Excellence +134992,Other,Centre of Excellence +134993,Other,Champions Program +134994,Other,University of Manitoba Agriculture Research +134996,Other,Knowledge Infrastructure Program +134997,Other,University of Manitoba Agriculture Research +134998,Other,Knowledge INfrastructure Program +232109,Taxation and Finance,Taxation and Finance +135074,Other,Safety & security +171466,Other,Defence - Navy +135234,Other,Ontario/Quebec Gateway and Trade Corridor initiative with respect to transportation planning +236290,Energy,Energy +342680,Transportation,Transportation +342679,Transportation,Transportation +236291,Transportation,Transportation +236290,Transportation,Transportation +236289,Transportation,Transportation +236271,Transportation,Transportation +363511,Transportation,Transportation +352320,Transportation,Transportation +348297,Transportation,Transportation +348296,Transportation,Transportation +348295,Transportation,Transportation +348294,Transportation,Transportation +348293,Transportation,Transportation +139894,Other,Financial Services +132937,Other,Financial Services +145730,Other,Financial Services +145728,Other,Financial Services +132943,Other,Financial Services +139934,Other,Financial Services +132944,Other,Financial Services +148446,Other,Financial Services +148445,Other,Financial Services +145731,Other,Financial Services +353880,Small Business,Small Business +132982,Small Business,Small Business +132981,Small Business,Small Business +295891,Small Business,Small Business +295889,Small Business,Small Business +233557,Small Business,Small Business +193991,Small Business,Small Business +193982,Small Business,Small Business +400009,Small Business,Small Business +400008,Small Business,Small Business +400006,Small Business,Small Business +400003,Small Business,Small Business +132981,Tourism,Tourism +132990,Other,Energy efficiency +155847,Financial Institutions,Financial Institutions +138134,Financial Institutions,Financial Institutions +159705,Energy,Energy +176564,Energy,Energy +142334,Environment,Environment +176564,Environment,Environment +165559,Environment,Environment +159705,Environment,Environment +142338,Environment,Environment +165559,Fisheries,Fisheries +159705,Fisheries,Fisheries +165559,Industry,Industry +159705,Industry,Industry +133116,Financial Institutions,Financial Institutions +133115,Financial Institutions,Financial Institutions +133121,Financial Institutions,Financial Institutions +133120,Financial Institutions,Financial Institutions +133119,Financial Institutions,Financial Institutions +133118,Financial Institutions,Financial Institutions +145905,Other,Economic Development +137200,Other,Economic Development +145916,Other,Economic Development +145914,Other,Economic Development +145908,Other,Economic Development +145907,Other,Economic Development +152077,Other,Employment and Training +142040,Other,Employment and Training +156805,Other,Employment and Training +152089,Other,Employment and Training +142056,Other,Industry +142040,Other,Industry +152087,Other,Industry +145423,Other,Industry +145422,Other,Industry +145421,Other,Industry +137355,Other,International Relations +137197,Other,International Relations +156805,Other,International Relations +152087,Other,International Relations +152079,Other,International Relations +152077,Other,International Relations +149717,Other,International Relations +149659,Other,International Relations +147862,Other,International Relations +145916,Other,International Relations +145914,Other,International Relations +145908,Other,International Relations +145907,Other,International Relations +145906,Other,International Relations +145905,Other,International Relations +145430,Other,International Relations +145429,Other,International Relations +145428,Other,International Relations +145418,Other,International Relations +145417,Other,International Relations +142038,Other,International Relations +142037,Other,International Relations +133135,Other,"Financial Institutions, Financial Services" +133134,Other,"Financial Institutions, Financial Services" +133138,Other,"Financial Institutions, Financial Services" +133137,Other,"Financial Institutions, Financial Services" +145354,International Trade,International Trade +162291,Other,"Financial Institutions, Financial Services" +162176,Other,"Financial Institutions, Financial Services" +133381,Other,"Financial Institutions, Financial Services" +133380,Other,"Financial Institutions, Financial Services" +133379,Other,"Financial Institutions, Financial Services" +133378,Other,"Financial Institutions, Financial Services" +133377,Other,"Financial Institutions, Financial Services" +133161,Other,"Financial Institutions, Financial Services" +133160,Other,"Financial Institutions, Financial Services" +133158,Other,"Financial Institutions, Financial Services" +133157,Other,"Financial Institutions, Financial Services" +133155,Other,"Financial Institutions, Financial Services" +133154,Other,"Financial Institutions, Financial Services" +162496,Other,"Financial Institutions, Financial Services" +162482,Other,"Financial Institutions, Financial Services" +133218,Other,Discuss CYBF activities in Atlantic Canada and possibility for joint initiative with ACOA +139294,Government Procurement,Government Procurement +136094,Government Procurement,Government Procurement +139296,Government Procurement,Government Procurement +167687,Taxation and Finance,Taxation and Finance +167686,Taxation and Finance,Taxation and Finance +162283,Other,"Financial Institutions, Financial Services" +162183,Other,"Financial Institutions, Financial Services" +133439,Other,"Financial Institutions, Financial Services" +133404,Other,"Financial Institutions, Financial Services" +133403,Other,"Financial Institutions, Financial Services" +133402,Other,"Financial Institutions, Financial Services" +133401,Other,"Financial Institutions, Financial Services" +133400,Other,"Financial Institutions, Financial Services" +162462,Other,"Financial Institutions, Financial Services" +162401,Other,"Financial Institutions, Financial Services" +162336,Other,"Financial Institutions, Financial Services" +162322,Other,"Financial Institutions, Financial Services" +133420,Other,"Financial Institutions, Financial Services" +133419,Other,"Financial Institutions, Financial Services" +133418,Other,"Financial Institutions, Financial Services" +133417,Other,"Financial Institutions, Financial Services" +133435,Other,"Financial Institutions, Financial Services" +133434,Other,"Financial Institutions, Financial Services" +162418,Other,"Financial Institutions, Financial Services" +162379,Other,"Financial Institutions, Financial Services" +162363,Other,"Financial Institutions, Financial Services" +162216,Other,"Financial Institutions, Financial Services" +133438,Other,"Financial Institutions, Financial Services" +133437,Other,"Financial Institutions, Financial Services" +133442,Other,"Financial Institutions, Financial Services" +133441,Other,"Financial Institutions, Financial Services" +133447,Other,"Financial Institutions, Financial Services" +133446,Other,"Financial Institutions, Financial Services" +133445,Other,"Financial Institutions, Financial Services" +133444,Other,"Financial Institutions, Financial Services" +133455,Other,"Financial Institutions, Financial Services" +133454,Other,"Financial Institutions, Financial Services" +133460,Other,"Financial Institutions, Financial Services" +133459,Other,"Financial Institutions, Financial Services" +133458,Other,"Financial Institutions, Financial Services" +133457,Other,"Financial Institutions, Financial Services" +134868,Industry,Industry +134867,Industry,Industry +134868,Regional Development,Regional Development +134867,Regional Development,Regional Development +397742,Energy,Energy +397741,Energy,Energy +399242,Energy,Energy +397742,Environment,Environment +397741,Environment,Environment +399243,Environment,Environment +399242,Environment,Environment +133634,Other,Call - meeting request +133776,Other,25th Anniversary +133781,Other,25th Anniversary +133782,Other,25th Anniversary +148254,Other,25th Anniversary +305210,Education,Education +305190,Education,Education +148817,Education,Education +305189,Education,Education +339920,Education,Education +339919,Education,Education +339918,Education,Education +339917,Education,Education +339916,Education,Education +339915,Education,Education +464609,Environment,Environment +464603,Environment,Environment +305190,Environment,Environment +305189,Environment,Environment +455960,Environment,Environment +448793,Environment,Environment +446955,Environment,Environment +442599,Environment,Environment +442174,Environment,Environment +442017,Environment,Environment +442007,Environment,Environment +441966,Environment,Environment +441936,Environment,Environment +441935,Environment,Environment +441928,Environment,Environment +441921,Environment,Environment +441917,Environment,Environment +441905,Environment,Environment +441903,Environment,Environment +441897,Environment,Environment +441884,Environment,Environment +441877,Environment,Environment +441875,Environment,Environment +441852,Environment,Environment +427626,Environment,Environment +541841,Environment,Environment +537871,Environment,Environment +534610,Environment,Environment +534609,Environment,Environment +534601,Environment,Environment +529612,Environment,Environment +523036,Environment,Environment +519160,Environment,Environment +519159,Environment,Environment +519158,Environment,Environment +519157,Environment,Environment +519156,Environment,Environment +519154,Environment,Environment +519153,Environment,Environment +517290,Environment,Environment +515439,Environment,Environment +514599,Environment,Environment +514598,Environment,Environment +509068,Environment,Environment +504900,Environment,Environment +483508,Environment,Environment +470238,Environment,Environment +470220,Environment,Environment +464679,Environment,Environment +464675,Environment,Environment +464669,Environment,Environment +464658,Environment,Environment +464650,Environment,Environment +464639,Environment,Environment +464633,Environment,Environment +464628,Environment,Environment +464622,Environment,Environment +519160,Health,Health +519159,Health,Health +160641,Health,Health +338078,Health,Health +338076,Health,Health +338075,Health,Health +338073,Health,Health +336317,Health,Health +336316,Health,Health +336315,Health,Health +336314,Health,Health +336313,Health,Health +336311,Health,Health +336310,Health,Health +309549,Health,Health +309548,Health,Health +309547,Health,Health +309546,Health,Health +309545,Health,Health +309543,Health,Health +309542,Health,Health +309541,Health,Health +309540,Health,Health +309539,Health,Health +309538,Health,Health +309536,Health,Health +309535,Health,Health +309534,Health,Health +309533,Health,Health +309532,Health,Health +305210,Health,Health +305209,Health,Health +305190,Health,Health +305189,Health,Health +248769,Health,Health +248070,Health,Health +244526,Health,Health +389459,Health,Health +389458,Health,Health +389455,Health,Health +389454,Health,Health +389452,Health,Health +389451,Health,Health +389450,Health,Health +389447,Health,Health +389444,Health,Health +389441,Health,Health +389439,Health,Health +389353,Health,Health +387133,Health,Health +387073,Health,Health +387071,Health,Health +387070,Health,Health +387066,Health,Health +387064,Health,Health +387062,Health,Health +387056,Health,Health +386951,Health,Health +386950,Health,Health +386948,Health,Health +386947,Health,Health +386946,Health,Health +386945,Health,Health +386944,Health,Health +386943,Health,Health +386862,Health,Health +386859,Health,Health +386857,Health,Health +386854,Health,Health +386852,Health,Health +386849,Health,Health +386846,Health,Health +386844,Health,Health +386719,Health,Health +386718,Health,Health +386717,Health,Health +386716,Health,Health +386715,Health,Health +386704,Health,Health +386702,Health,Health +386699,Health,Health +386696,Health,Health +386694,Health,Health +386691,Health,Health +386687,Health,Health +386681,Health,Health +386677,Health,Health +386617,Health,Health +386615,Health,Health +386614,Health,Health +386613,Health,Health +386612,Health,Health +386609,Health,Health +385172,Health,Health +385170,Health,Health +385165,Health,Health +385156,Health,Health +385151,Health,Health +383109,Health,Health +383108,Health,Health +383061,Health,Health +383060,Health,Health +383059,Health,Health +383054,Health,Health +380650,Health,Health +380648,Health,Health +380647,Health,Health +380644,Health,Health +380642,Health,Health +380635,Health,Health +378560,Health,Health +378324,Health,Health +378322,Health,Health +378321,Health,Health +378319,Health,Health +378318,Health,Health +378317,Health,Health +378316,Health,Health +378315,Health,Health +378314,Health,Health +378311,Health,Health +375679,Health,Health +375678,Health,Health +375675,Health,Health +375671,Health,Health +375667,Health,Health +375529,Health,Health +373411,Health,Health +371170,Health,Health +371169,Health,Health +371167,Health,Health +371166,Health,Health +371165,Health,Health +371164,Health,Health +371163,Health,Health +371160,Health,Health +371159,Health,Health +371154,Health,Health +371153,Health,Health +371151,Health,Health +371150,Health,Health +371148,Health,Health +371121,Health,Health +370469,Health,Health +370468,Health,Health +370467,Health,Health +370465,Health,Health +370448,Health,Health +368693,Health,Health +368692,Health,Health +368689,Health,Health +368687,Health,Health +368686,Health,Health +368685,Health,Health +368682,Health,Health +368681,Health,Health +368680,Health,Health +368677,Health,Health +368676,Health,Health +368656,Health,Health +368344,Health,Health +365994,Health,Health +363117,Health,Health +363116,Health,Health +363115,Health,Health +363114,Health,Health +363113,Health,Health +363112,Health,Health +363111,Health,Health +363109,Health,Health +363108,Health,Health +363107,Health,Health +363106,Health,Health +361082,Health,Health +360480,Health,Health +360479,Health,Health +360478,Health,Health +360477,Health,Health +360476,Health,Health +360475,Health,Health +360474,Health,Health +360473,Health,Health +360472,Health,Health +360471,Health,Health +360470,Health,Health +360469,Health,Health +360468,Health,Health +360467,Health,Health +360466,Health,Health +360465,Health,Health +360464,Health,Health +360462,Health,Health +341072,Health,Health +339920,Health,Health +339919,Health,Health +339918,Health,Health +339917,Health,Health +339916,Health,Health +339915,Health,Health +339914,Health,Health +339911,Health,Health +339910,Health,Health +519158,Health,Health +519157,Health,Health +519156,Health,Health +519154,Health,Health +519153,Health,Health +504914,Health,Health +502550,Health,Health +477015,Health,Health +470238,Health,Health +470220,Health,Health +462011,Health,Health +462010,Health,Health +455971,Health,Health +455955,Health,Health +455946,Health,Health +455938,Health,Health +455932,Health,Health +455913,Health,Health +455904,Health,Health +455892,Health,Health +455870,Health,Health +448802,Health,Health +448801,Health,Health +448799,Health,Health +446955,Health,Health +442599,Health,Health +442174,Health,Health +442017,Health,Health +442012,Health,Health +442007,Health,Health +442000,Health,Health +441936,Health,Health +441935,Health,Health +441928,Health,Health +441921,Health,Health +441917,Health,Health +441905,Health,Health +441903,Health,Health +441897,Health,Health +441884,Health,Health +441877,Health,Health +441875,Health,Health +441852,Health,Health +438684,Health,Health +435937,Health,Health +435934,Health,Health +435906,Health,Health +435664,Health,Health +435590,Health,Health +433424,Health,Health +433422,Health,Health +433207,Health,Health +433206,Health,Health +431730,Health,Health +431668,Health,Health +427630,Health,Health +426739,Health,Health +426733,Health,Health +426727,Health,Health +426721,Health,Health +426706,Health,Health +423957,Health,Health +422302,Health,Health +422233,Health,Health +422232,Health,Health +422231,Health,Health +419971,Health,Health +419966,Health,Health +419964,Health,Health +418004,Health,Health +418000,Health,Health +417248,Health,Health +416646,Health,Health +416644,Health,Health +416638,Health,Health +416635,Health,Health +415052,Health,Health +413024,Health,Health +412857,Health,Health +412838,Health,Health +412837,Health,Health +412835,Health,Health +412816,Health,Health +412809,Health,Health +412806,Health,Health +412803,Health,Health +412797,Health,Health +412774,Health,Health +412733,Health,Health +412726,Health,Health +412721,Health,Health +412717,Health,Health +412710,Health,Health +412688,Health,Health +409273,Health,Health +409272,Health,Health +409271,Health,Health +409270,Health,Health +409268,Health,Health +407762,Health,Health +407365,Health,Health +407363,Health,Health +407362,Health,Health +407360,Health,Health +407357,Health,Health +407356,Health,Health +407355,Health,Health +407353,Health,Health +407352,Health,Health +407351,Health,Health +407350,Health,Health +407349,Health,Health +407348,Health,Health +407347,Health,Health +407343,Health,Health +407342,Health,Health +407341,Health,Health +407199,Health,Health +407198,Health,Health +407195,Health,Health +407194,Health,Health +407193,Health,Health +407192,Health,Health +405974,Health,Health +405837,Health,Health +404522,Health,Health +403895,Health,Health +403881,Health,Health +403868,Health,Health +403863,Health,Health +403859,Health,Health +401321,Health,Health +401137,Health,Health +401135,Health,Health +401130,Health,Health +400933,Health,Health +400923,Health,Health +400919,Health,Health +400889,Health,Health +400768,Health,Health +400763,Health,Health +400757,Health,Health +398061,Health,Health +398060,Health,Health +398059,Health,Health +398058,Health,Health +398057,Health,Health +398056,Health,Health +396764,Health,Health +396760,Health,Health +396755,Health,Health +396749,Health,Health +396744,Health,Health +396740,Health,Health +395229,Health,Health +395228,Health,Health +395071,Health,Health +393058,Health,Health +393057,Health,Health +393056,Health,Health +392868,Health,Health +392867,Health,Health +392866,Health,Health +390164,Health,Health +390161,Health,Health +390083,Health,Health +541840,Health,Health +541839,Health,Health +541838,Health,Health +537869,Health,Health +534583,Health,Health +534577,Health,Health +529616,Health,Health +529615,Health,Health +529614,Health,Health +529611,Health,Health +529610,Health,Health +526195,Health,Health +526194,Health,Health +526190,Health,Health +536495,International Relations,International Relations +536494,International Relations,International Relations +480917,International Relations,International Relations +474336,International Relations,International Relations +469267,International Relations,International Relations +469265,International Relations,International Relations +142256,International Trade,International Trade +142254,International Trade,International Trade +142254,Mining,Mining +135174,Mining,Mining +154266,Mining,Mining +148369,Energy,Energy +148369,International Relations,International Relations +134215,Other,Clean Trucks Canada - Funding Proposal +134217,Other,Clean Trucks Canada - Funding Proposal +134216,Other,Clean Trucks Canada - Funding Proposal +134214,Other,Clean Trucks Canada - Funding Proposal +138954,Other,Clean Trucks Canada - Funding Proposal +368876,Financial Institutions,Financial Institutions +368873,Financial Institutions,Financial Institutions +400713,Financial Institutions,Financial Institutions +400712,Financial Institutions,Financial Institutions +400711,Financial Institutions,Financial Institutions +400710,Financial Institutions,Financial Institutions +400708,Financial Institutions,Financial Institutions +400707,Financial Institutions,Financial Institutions +400704,Financial Institutions,Financial Institutions +400701,Financial Institutions,Financial Institutions +400700,Financial Institutions,Financial Institutions +400694,Financial Institutions,Financial Institutions +400693,Financial Institutions,Financial Institutions +400690,Financial Institutions,Financial Institutions +400689,Financial Institutions,Financial Institutions +400683,Financial Institutions,Financial Institutions +400681,Financial Institutions,Financial Institutions +400678,Financial Institutions,Financial Institutions +400676,Financial Institutions,Financial Institutions +400674,Financial Institutions,Financial Institutions +400669,Financial Institutions,Financial Institutions +400666,Financial Institutions,Financial Institutions +400665,Financial Institutions,Financial Institutions +400663,Financial Institutions,Financial Institutions +376533,Financial Institutions,Financial Institutions +376532,Financial Institutions,Financial Institutions +376531,Financial Institutions,Financial Institutions +376530,Financial Institutions,Financial Institutions +376529,Financial Institutions,Financial Institutions +410765,Small Business,Small Business +410766,Taxation and Finance,Taxation and Finance +410765,Taxation and Finance,Taxation and Finance +378381,Employment and Training,Employment and Training +524003,Employment and Training,Employment and Training +142861,Employment and Training,Employment and Training +142860,Employment and Training,Employment and Training +153522,Employment and Training,Employment and Training +153520,Employment and Training,Employment and Training +264850,Employment and Training,Employment and Training +200468,Employment and Training,Employment and Training +193806,Employment and Training,Employment and Training +193800,Employment and Training,Employment and Training +193795,Employment and Training,Employment and Training +193743,Employment and Training,Employment and Training +375188,Employment and Training,Employment and Training +375187,Employment and Training,Employment and Training +370149,Employment and Training,Employment and Training +370148,Employment and Training,Employment and Training +370147,Employment and Training,Employment and Training +370146,Employment and Training,Employment and Training +370145,Employment and Training,Employment and Training +370144,Employment and Training,Employment and Training +370143,Employment and Training,Employment and Training +370142,Employment and Training,Employment and Training +370141,Employment and Training,Employment and Training +370139,Employment and Training,Employment and Training +370138,Employment and Training,Employment and Training +348582,Employment and Training,Employment and Training +348049,Employment and Training,Employment and Training +348046,Employment and Training,Employment and Training +348045,Employment and Training,Employment and Training +348044,Employment and Training,Employment and Training +348043,Employment and Training,Employment and Training +348042,Employment and Training,Employment and Training +333791,Employment and Training,Employment and Training +314810,Employment and Training,Employment and Training +314809,Employment and Training,Employment and Training +314800,Employment and Training,Employment and Training +314799,Employment and Training,Employment and Training +314797,Employment and Training,Employment and Training +314795,Employment and Training,Employment and Training +304969,Employment and Training,Employment and Training +290070,Employment and Training,Employment and Training +290049,Employment and Training,Employment and Training +445968,Employment and Training,Employment and Training +445966,Employment and Training,Employment and Training +445965,Employment and Training,Employment and Training +395014,Employment and Training,Employment and Training +395013,Employment and Training,Employment and Training +395009,Employment and Training,Employment and Training +395002,Employment and Training,Employment and Training +384563,Employment and Training,Employment and Training +378384,Employment and Training,Employment and Training +378383,Employment and Training,Employment and Training +142860,Taxation and Finance,Taxation and Finance +501526,Taxation and Finance,Taxation and Finance +147988,Taxation and Finance,Taxation and Finance +148963,Labour,Labour +148377,Infrastructure,Infrastructure +472956,Taxation and Finance,Taxation and Finance +472948,Taxation and Finance,Taxation and Finance +195034,Taxation and Finance,Taxation and Finance +194982,Taxation and Finance,Taxation and Finance +194958,Taxation and Finance,Taxation and Finance +160316,Taxation and Finance,Taxation and Finance +160314,Taxation and Finance,Taxation and Finance +159132,Taxation and Finance,Taxation and Finance +159131,Taxation and Finance,Taxation and Finance +159130,Taxation and Finance,Taxation and Finance +318805,Taxation and Finance,Taxation and Finance +338397,Taxation and Finance,Taxation and Finance +338394,Taxation and Finance,Taxation and Finance +383751,Taxation and Finance,Taxation and Finance +383561,Taxation and Finance,Taxation and Finance +383560,Taxation and Finance,Taxation and Finance +383559,Taxation and Finance,Taxation and Finance +383556,Taxation and Finance,Taxation and Finance +535445,Taxation and Finance,Taxation and Finance +535443,Taxation and Finance,Taxation and Finance +535421,Taxation and Finance,Taxation and Finance +535418,Taxation and Finance,Taxation and Finance +535411,Taxation and Finance,Taxation and Finance +535405,Taxation and Finance,Taxation and Finance +477727,Taxation and Finance,Taxation and Finance +472968,Taxation and Finance,Taxation and Finance +472965,Taxation and Finance,Taxation and Finance +472963,Taxation and Finance,Taxation and Finance +472959,Taxation and Finance,Taxation and Finance +142615,Financial Institutions,Financial Institutions +142615,Taxation and Finance,Taxation and Finance +138094,Taxation and Finance,Taxation and Finance +516244,Taxation and Finance,Taxation and Finance +514465,Taxation and Finance,Taxation and Finance +343437,Taxation and Finance,Taxation and Finance +389000,Taxation and Finance,Taxation and Finance +387408,Taxation and Finance,Taxation and Finance +385960,Taxation and Finance,Taxation and Finance +385954,Taxation and Finance,Taxation and Finance +381402,Taxation and Finance,Taxation and Finance +381399,Taxation and Finance,Taxation and Finance +380070,Taxation and Finance,Taxation and Finance +371558,Taxation and Finance,Taxation and Finance +365993,Taxation and Finance,Taxation and Finance +365991,Taxation and Finance,Taxation and Finance +365088,Taxation and Finance,Taxation and Finance +352822,Taxation and Finance,Taxation and Finance +348392,Taxation and Finance,Taxation and Finance +346537,Taxation and Finance,Taxation and Finance +345497,Taxation and Finance,Taxation and Finance +471650,Taxation and Finance,Taxation and Finance +470982,Taxation and Finance,Taxation and Finance +458954,Taxation and Finance,Taxation and Finance +450698,Taxation and Finance,Taxation and Finance +444868,Taxation and Finance,Taxation and Finance +444856,Taxation and Finance,Taxation and Finance +434718,Taxation and Finance,Taxation and Finance +434700,Taxation and Finance,Taxation and Finance +419782,Taxation and Finance,Taxation and Finance +411265,Taxation and Finance,Taxation and Finance +406077,Taxation and Finance,Taxation and Finance +406075,Taxation and Finance,Taxation and Finance +406071,Taxation and Finance,Taxation and Finance +400278,Taxation and Finance,Taxation and Finance +398478,Taxation and Finance,Taxation and Finance +392924,Taxation and Finance,Taxation and Finance +392923,Taxation and Finance,Taxation and Finance +533675,Taxation and Finance,Taxation and Finance +142396,Industry,Industry +166292,Constitutional Issues,Constitutional Issues +166291,Constitutional Issues,Constitutional Issues +155314,Constitutional Issues,Constitutional Issues +155313,Constitutional Issues,Constitutional Issues +219791,Constitutional Issues,Constitutional Issues +209610,Constitutional Issues,Constitutional Issues +209609,Constitutional Issues,Constitutional Issues +209608,Constitutional Issues,Constitutional Issues +209608,Consumer Issues,Consumer Issues +209607,Consumer Issues,Consumer Issues +166292,Consumer Issues,Consumer Issues +166291,Consumer Issues,Consumer Issues +158857,Consumer Issues,Consumer Issues +155314,Consumer Issues,Consumer Issues +155313,Consumer Issues,Consumer Issues +219791,Consumer Issues,Consumer Issues +219790,Consumer Issues,Consumer Issues +209610,Consumer Issues,Consumer Issues +209608,Health,Health +209607,Health,Health +166292,Health,Health +166291,Health,Health +158857,Health,Health +155314,Health,Health +155313,Health,Health +219791,Health,Health +219790,Health,Health +209610,Health,Health +209609,Industry,Industry +145968,Agriculture,Agriculture +145968,Government Procurement,Government Procurement +145710,Agriculture,Agriculture +145706,Agriculture,Agriculture +145706,Government Procurement,Government Procurement +145704,Government Procurement,Government Procurement +167186,Other,Pension Issues +165473,Other,Defence - Navy +165472,Other,Defence - Navy +155266,Other,Defence - Navy +154030,Other,Defence - Navy +152938,Other,Defence - Navy +150425,Other,Defence - Navy +150424,Other,Defence - Navy +150422,Other,Defence - Navy +150421,Other,Defence - Navy +192967,Other,Defence - Navy +186064,Other,Defence - Navy +171467,Other,Defence - Navy +156630,Other,Année internationale des coopératives 2012 +152917,Other,Année internationale des coopératives 2012 +146030,Other,Année internationale des coopératives 2012 +146030,Other,Programme de l'Initiative de développement coopératif (IDC) +139394,Other,Programme de l'Initiative de développement coopératif (IDC) +156630,Other,Programme de l'Initiative de développement coopératif (IDC) +135722,Other,Tobacco Contraband +135720,Other,Tobacco Contraband +138239,Other,Tobacco Contraband +138238,Other,Tobacco Contraband +138237,Other,Tobacco Contraband +335306,Industry,Industry +335304,Industry,Industry +306769,Industry,Industry +306749,Industry,Industry +386464,Industry,Industry +312451,Taxation and Finance,Taxation and Finance +267889,Taxation and Finance,Taxation and Finance +379418,Taxation and Finance,Taxation and Finance +372246,Taxation and Finance,Taxation and Finance +352563,Taxation and Finance,Taxation and Finance +352562,Taxation and Finance,Taxation and Finance +347366,Taxation and Finance,Taxation and Finance +341361,Taxation and Finance,Taxation and Finance +338409,Taxation and Finance,Taxation and Finance +338408,Taxation and Finance,Taxation and Finance +135831,Other,supply management +135825,Other,supply management +233070,Justice and Law Enforcement,Justice and Law Enforcement +233069,Justice and Law Enforcement,Justice and Law Enforcement +305390,Justice and Law Enforcement,Justice and Law Enforcement +135957,Other,G20 - 2010 +135956,Other,G20 - 2010 +135971,Other,Extended Ku +135968,Other,Extended Ku +135967,Other,Extended Ku +135966,Other,Extended Ku +135962,Other,Extended Ku +135960,Other,Extended Ku +152264,Other,International Trade +143174,Other,International Trade +157005,Other,International Trade +152276,Other,International Trade +152275,Other,International Trade +152274,Other,International Trade +152273,Other,International Trade +152272,Other,International Trade +152270,Other,International Trade +152269,Other,International Trade +152268,Other,International Trade +152267,Other,International Trade +146196,Agriculture,Agriculture +135978,Other,G20 - 2010 +393956,International Trade,International Trade +394020,International Trade,International Trade +136015,Other,AbitibiBowater and Newfoundland +215907,Justice and Law Enforcement,Justice and Law Enforcement +204787,Justice and Law Enforcement,Justice and Law Enforcement +165715,Justice and Law Enforcement,Justice and Law Enforcement +309905,Justice and Law Enforcement,Justice and Law Enforcement +227690,Justice and Law Enforcement,Justice and Law Enforcement +165715,Transportation,Transportation +309905,Transportation,Transportation +222267,Transportation,Transportation +326411,Industry,Industry +326413,Taxation and Finance,Taxation and Finance +326411,Taxation and Finance,Taxation and Finance +385911,Defence,Defence +383996,Defence,Defence +207513,Defence,Defence +201329,Defence,Defence +382117,Defence,Defence +381692,Defence,Defence +380334,Defence,Defence +377253,Defence,Defence +367742,Defence,Defence +364890,Defence,Defence +361663,Defence,Defence +359279,Defence,Defence +357501,Defence,Defence +355023,Defence,Defence +348212,Defence,Defence +339349,Defence,Defence +329109,Defence,Defence +316909,Defence,Defence +304829,Defence,Defence +283337,Defence,Defence +276129,Defence,Defence +260809,Defence,Defence +243809,Defence,Defence +235629,Defence,Defence +233129,Defence,Defence +227487,Defence,Defence +462028,Defence,Defence +457910,Defence,Defence +456223,Defence,Defence +444032,Defence,Defence +432823,Defence,Defence +429916,Defence,Defence +427535,Defence,Defence +422957,Defence,Defence +410971,Defence,Defence +404821,Defence,Defence +404282,Defence,Defence +403039,Defence,Defence +309739,Environment,Environnement +309738,Environment,Environnement +309742,Environment,Environnement +223338,Health,Santé +207389,Health,Santé +174595,Health,Santé +174594,Health,Santé +174593,Health,Santé +174592,Health,Santé +174591,Health,Santé +174590,Health,Santé +174589,Health,Santé +174588,Health,Santé +174587,Health,Santé +174586,Health,Santé +174585,Health,Santé +174584,Health,Santé +161493,Health,Santé +161492,Health,Santé +161489,Health,Santé +315903,Health,Santé +309742,Health,Santé +309741,Health,Santé +309739,Health,Santé +309738,Health,Santé +162740,Other,Natural Health Product Legislation and Regulation +162739,Other,Natural Health Product Legislation and Regulation +162738,Other,Natural Health Product Legislation and Regulation +162737,Other,Natural Health Product Legislation and Regulation +162736,Other,Natural Health Product Legislation and Regulation +162735,Other,Natural Health Product Legislation and Regulation +162734,Other,Natural Health Product Legislation and Regulation +162733,Other,Natural Health Product Legislation and Regulation +162732,Other,Natural Health Product Legislation and Regulation +162731,Other,Natural Health Product Legislation and Regulation +147937,Defence,Defence +147936,Defence,Defence +491123,Energy,Energy +491119,Energy,Energy +149969,Energy,Energy +142236,Energy,Energy +182904,Energy,Energy +174931,Energy,Energy +173392,Energy,Energy +169042,Energy,Energy +169041,Energy,Energy +169040,Energy,Energy +169039,Energy,Energy +169030,Energy,Energy +165524,Energy,Energy +163715,Energy,Energy +163710,Energy,Energy +163708,Energy,Energy +163707,Energy,Energy +159087,Energy,Energy +291141,Energy,Energy +291139,Energy,Energy +291136,Energy,Energy +291133,Energy,Energy +291130,Energy,Energy +268591,Energy,Energy +233337,Energy,Energy +229736,Energy,Energy +226552,Energy,Energy +226550,Energy,Energy +226548,Energy,Energy +226546,Energy,Energy +226545,Energy,Energy +226543,Energy,Energy +223278,Energy,Energy +223274,Energy,Energy +211805,Energy,Energy +211804,Energy,Energy +211801,Energy,Energy +211799,Energy,Energy +211796,Energy,Energy +211792,Energy,Energy +211791,Energy,Energy +207298,Energy,Energy +207296,Energy,Energy +207295,Energy,Energy +199249,Energy,Energy +199227,Energy,Energy +199207,Energy,Energy +199167,Energy,Energy +199147,Energy,Energy +193221,Energy,Energy +193220,Energy,Energy +193219,Energy,Energy +193218,Energy,Energy +193216,Energy,Energy +193215,Energy,Energy +182905,Energy,Energy +376957,Energy,Energy +376955,Energy,Energy +372175,Energy,Energy +369406,Energy,Energy +369405,Energy,Energy +366622,Energy,Energy +365131,Energy,Energy +365130,Energy,Energy +357742,Energy,Energy +353781,Energy,Energy +340372,Energy,Energy +340371,Energy,Energy +340370,Energy,Energy +340369,Energy,Energy +340368,Energy,Energy +340367,Energy,Energy +340366,Energy,Energy +340365,Energy,Energy +340364,Energy,Energy +338121,Energy,Energy +338119,Energy,Energy +338113,Energy,Energy +327134,Energy,Energy +327131,Energy,Energy +318816,Energy,Energy +318815,Energy,Energy +318813,Energy,Energy +318811,Energy,Energy +318810,Energy,Energy +318809,Energy,Energy +291153,Energy,Energy +291152,Energy,Energy +291150,Energy,Energy +291143,Energy,Energy +487266,Energy,Energy +487255,Energy,Energy +487248,Energy,Energy +484624,Energy,Energy +484623,Energy,Energy +484620,Energy,Energy +484619,Energy,Energy +484617,Energy,Energy +484616,Energy,Energy +484614,Energy,Energy +484609,Energy,Energy +484608,Energy,Energy +484606,Energy,Energy +481922,Energy,Energy +481920,Energy,Energy +481917,Energy,Energy +481915,Energy,Energy +481912,Energy,Energy +479292,Energy,Energy +477861,Energy,Energy +477859,Energy,Energy +477853,Energy,Energy +475456,Energy,Energy +475446,Energy,Energy +475442,Energy,Energy +472975,Energy,Energy +472974,Energy,Energy +472952,Energy,Energy +472951,Energy,Energy +472946,Energy,Energy +472936,Energy,Energy +472931,Energy,Energy +472922,Energy,Energy +472915,Energy,Energy +472911,Energy,Energy +470683,Energy,Energy +470678,Energy,Energy +470671,Energy,Energy +470665,Energy,Energy +470659,Energy,Energy +470656,Energy,Energy +470651,Energy,Energy +470648,Energy,Energy +470643,Energy,Energy +470632,Energy,Energy +466974,Energy,Energy +466970,Energy,Energy +464610,Energy,Energy +462891,Energy,Energy +462890,Energy,Energy +462362,Energy,Energy +461378,Energy,Energy +461377,Energy,Energy +461376,Energy,Energy +461375,Energy,Energy +459365,Energy,Energy +458861,Energy,Energy +457212,Energy,Energy +457209,Energy,Energy +457208,Energy,Energy +457206,Energy,Energy +455487,Energy,Energy +452620,Energy,Energy +452616,Energy,Energy +452614,Energy,Energy +452612,Energy,Energy +452609,Energy,Energy +448190,Energy,Energy +448188,Energy,Energy +448187,Energy,Energy +448186,Energy,Energy +445716,Energy,Energy +445713,Energy,Energy +445710,Energy,Energy +443904,Energy,Energy +443903,Energy,Energy +443897,Energy,Energy +443893,Energy,Energy +442590,Energy,Energy +442401,Energy,Energy +442378,Energy,Energy +442376,Energy,Energy +442366,Energy,Energy +442364,Energy,Energy +439471,Energy,Energy +439443,Energy,Energy +439434,Energy,Energy +439427,Energy,Energy +439415,Energy,Energy +439409,Energy,Energy +439370,Energy,Energy +435770,Energy,Energy +435767,Energy,Energy +435763,Energy,Energy +435310,Energy,Energy +435302,Energy,Energy +435232,Energy,Energy +435215,Energy,Energy +435207,Energy,Energy +435203,Energy,Energy +435201,Energy,Energy +435195,Energy,Energy +435193,Energy,Energy +435180,Energy,Energy +433672,Energy,Energy +433671,Energy,Energy +433667,Energy,Energy +432883,Energy,Energy +432882,Energy,Energy +432505,Energy,Energy +430382,Energy,Energy +429164,Energy,Energy +429121,Energy,Energy +429111,Energy,Energy +429077,Energy,Energy +429072,Energy,Energy +429068,Energy,Energy +426789,Energy,Energy +426784,Energy,Energy +426680,Energy,Energy +426679,Energy,Energy +426677,Energy,Energy +423218,Energy,Energy +423215,Energy,Energy +423213,Energy,Energy +423206,Energy,Energy +421363,Energy,Energy +418027,Energy,Energy +416898,Energy,Energy +416584,Energy,Energy +416507,Energy,Energy +416272,Energy,Energy +416250,Energy,Energy +416245,Energy,Energy +416237,Energy,Energy +405271,Energy,Energy +400506,Energy,Energy +400505,Energy,Energy +400504,Energy,Energy +398948,Energy,Energy +392040,Energy,Energy +391000,Energy,Energy +387853,Energy,Energy +387852,Energy,Energy +387849,Energy,Energy +387847,Energy,Energy +387845,Energy,Energy +387843,Energy,Energy +387841,Energy,Energy +385692,Energy,Energy +383462,Energy,Energy +382246,Energy,Energy +382245,Energy,Energy +381369,Energy,Energy +381366,Energy,Energy +379487,Energy,Energy +379485,Energy,Energy +544700,Energy,Energy +544507,Energy,Energy +543253,Energy,Energy +543249,Energy,Energy +543243,Energy,Energy +543238,Energy,Energy +543234,Energy,Energy +541476,Energy,Energy +541474,Energy,Energy +541472,Energy,Energy +541468,Energy,Energy +540009,Energy,Energy +540008,Energy,Energy +540002,Energy,Energy +537275,Energy,Energy +537274,Energy,Energy +537273,Energy,Energy +537272,Energy,Energy +531150,Energy,Energy +531148,Energy,Energy +531144,Energy,Energy +529221,Energy,Energy +529220,Energy,Energy +529217,Energy,Energy +529213,Energy,Energy +529209,Energy,Energy +529200,Energy,Energy +526305,Energy,Energy +526304,Energy,Energy +526301,Energy,Energy +526298,Energy,Energy +526295,Energy,Energy +526292,Energy,Energy +526288,Energy,Energy +526286,Energy,Energy +526280,Energy,Energy +521782,Energy,Energy +521781,Energy,Energy +521780,Energy,Energy +521779,Energy,Energy +521778,Energy,Energy +519319,Energy,Energy +519317,Energy,Energy +519315,Energy,Energy +517650,Energy,Energy +517639,Energy,Energy +517635,Energy,Energy +517623,Energy,Energy +515172,Energy,Energy +515170,Energy,Energy +515168,Energy,Energy +515167,Energy,Energy +514882,Energy,Energy +514643,Energy,Energy +514642,Energy,Energy +514641,Energy,Energy +514640,Energy,Energy +513896,Energy,Energy +513892,Energy,Energy +513891,Energy,Energy +513889,Energy,Energy +513888,Energy,Energy +513887,Energy,Energy +513880,Energy,Energy +513879,Energy,Energy +513877,Energy,Energy +513874,Energy,Energy +512650,Energy,Energy +512647,Energy,Energy +512640,Energy,Energy +512625,Energy,Energy +512621,Energy,Energy +512612,Energy,Energy +512595,Energy,Energy +512593,Energy,Energy +512591,Energy,Energy +511076,Energy,Energy +511074,Energy,Energy +511072,Energy,Energy +511068,Energy,Energy +507560,Energy,Energy +507558,Energy,Energy +507557,Energy,Energy +507551,Energy,Energy +503951,Energy,Energy +503944,Energy,Energy +503943,Energy,Energy +503938,Energy,Energy +503935,Energy,Energy +503932,Energy,Energy +502519,Energy,Energy +502509,Energy,Energy +502506,Energy,Energy +502502,Energy,Energy +502497,Energy,Energy +501996,Energy,Energy +501995,Energy,Energy +501993,Energy,Energy +501992,Energy,Energy +501991,Energy,Energy +501989,Energy,Energy +501987,Energy,Energy +501986,Energy,Energy +501985,Energy,Energy +498494,Energy,Energy +498489,Energy,Energy +498477,Energy,Energy +494977,Energy,Energy +494973,Energy,Energy +494955,Energy,Energy +493131,Energy,Energy +493129,Energy,Energy +491132,Energy,Energy +439409,Environment,Environment +439370,Environment,Environment +147937,Environment,Environment +147936,Environment,Environment +147935,Environment,Environment +145439,Environment,Environment +145438,Environment,Environment +145437,Environment,Environment +145436,Environment,Environment +142241,Environment,Environment +174934,Environment,Environment +174932,Environment,Environment +165525,Environment,Environment +163705,Environment,Environment +162034,Environment,Environment +159100,Environment,Environment +156277,Environment,Environment +156276,Environment,Environment +156275,Environment,Environment +156273,Environment,Environment +156272,Environment,Environment +156271,Environment,Environment +156270,Environment,Environment +153121,Environment,Environment +152193,Environment,Environment +152191,Environment,Environment +152190,Environment,Environment +291147,Environment,Environment +286410,Environment,Environment +276719,Environment,Environment +276718,Environment,Environment +272297,Environment,Environment +272296,Environment,Environment +272295,Environment,Environment +272294,Environment,Environment +272293,Environment,Environment +268596,Environment,Environment +268594,Environment,Environment +268593,Environment,Environment +263316,Environment,Environment +263311,Environment,Environment +258497,Environment,Environment +258494,Environment,Environment +258483,Environment,Environment +258479,Environment,Environment +253493,Environment,Environment +253492,Environment,Environment +253491,Environment,Environment +253490,Environment,Environment +253489,Environment,Environment +253470,Environment,Environment +250076,Environment,Environment +250075,Environment,Environment +250074,Environment,Environment +250073,Environment,Environment +250072,Environment,Environment +250071,Environment,Environment +250070,Environment,Environment +243955,Environment,Environment +243954,Environment,Environment +243953,Environment,Environment +243952,Environment,Environment +243951,Environment,Environment +243950,Environment,Environment +243949,Environment,Environment +233334,Environment,Environment +231189,Environment,Environment +229745,Environment,Environment +226554,Environment,Environment +226551,Environment,Environment +226549,Environment,Environment +226541,Environment,Environment +217047,Environment,Environment +211788,Environment,Environment +211787,Environment,Environment +211785,Environment,Environment +211781,Environment,Environment +211779,Environment,Environment +207293,Environment,Environment +207292,Environment,Environment +199251,Environment,Environment +199187,Environment,Environment +199168,Environment,Environment +435770,Environment,Environment +435767,Environment,Environment +435763,Environment,Environment +435310,Environment,Environment +435302,Environment,Environment +435232,Environment,Environment +435215,Environment,Environment +435207,Environment,Environment +435203,Environment,Environment +435201,Environment,Environment +435195,Environment,Environment +435193,Environment,Environment +433672,Environment,Environment +433667,Environment,Environment +432883,Environment,Environment +432882,Environment,Environment +430382,Environment,Environment +429164,Environment,Environment +429121,Environment,Environment +429111,Environment,Environment +429077,Environment,Environment +429072,Environment,Environment +429068,Environment,Environment +426789,Environment,Environment +426784,Environment,Environment +426680,Environment,Environment +426679,Environment,Environment +426677,Environment,Environment +423218,Environment,Environment +423213,Environment,Environment +423206,Environment,Environment +421363,Environment,Environment +418027,Environment,Environment +416898,Environment,Environment +416584,Environment,Environment +416250,Environment,Environment +416245,Environment,Environment +416237,Environment,Environment +407772,Environment,Environment +405271,Environment,Environment +403332,Environment,Environment +400506,Environment,Environment +400504,Environment,Environment +398948,Environment,Environment +387849,Environment,Environment +387847,Environment,Environment +387845,Environment,Environment +387843,Environment,Environment +387841,Environment,Environment +385692,Environment,Environment +382245,Environment,Environment +379488,Environment,Environment +379485,Environment,Environment +379481,Environment,Environment +376957,Environment,Environment +374850,Environment,Environment +372175,Environment,Environment +369406,Environment,Environment +369405,Environment,Environment +365130,Environment,Environment +340374,Environment,Environment +340373,Environment,Environment +340363,Environment,Environment +338116,Environment,Environment +309604,Environment,Environment +309603,Environment,Environment +309602,Environment,Environment +309601,Environment,Environment +301756,Environment,Environment +544700,Environment,Environment +541476,Environment,Environment +541474,Environment,Environment +541472,Environment,Environment +540009,Environment,Environment +540002,Environment,Environment +537275,Environment,Environment +537274,Environment,Environment +537272,Environment,Environment +531144,Environment,Environment +529221,Environment,Environment +529220,Environment,Environment +529217,Environment,Environment +529213,Environment,Environment +529209,Environment,Environment +529200,Environment,Environment +526305,Environment,Environment +526298,Environment,Environment +526295,Environment,Environment +526292,Environment,Environment +526286,Environment,Environment +526280,Environment,Environment +521780,Environment,Environment +521779,Environment,Environment +521778,Environment,Environment +519319,Environment,Environment +519315,Environment,Environment +517650,Environment,Environment +517639,Environment,Environment +517635,Environment,Environment +517623,Environment,Environment +515172,Environment,Environment +515168,Environment,Environment +515167,Environment,Environment +514882,Environment,Environment +514643,Environment,Environment +513879,Environment,Environment +513877,Environment,Environment +513874,Environment,Environment +512650,Environment,Environment +512647,Environment,Environment +512640,Environment,Environment +512625,Environment,Environment +512621,Environment,Environment +512612,Environment,Environment +512595,Environment,Environment +512591,Environment,Environment +511074,Environment,Environment +511068,Environment,Environment +507560,Environment,Environment +507558,Environment,Environment +507551,Environment,Environment +503951,Environment,Environment +503944,Environment,Environment +503943,Environment,Environment +503938,Environment,Environment +503935,Environment,Environment +502519,Environment,Environment +501995,Environment,Environment +501993,Environment,Environment +501992,Environment,Environment +501989,Environment,Environment +501987,Environment,Environment +501985,Environment,Environment +498494,Environment,Environment +498489,Environment,Environment +498477,Environment,Environment +494977,Environment,Environment +494973,Environment,Environment +494955,Environment,Environment +493129,Environment,Environment +491126,Environment,Environment +491123,Environment,Environment +491119,Environment,Environment +481917,Environment,Environment +472975,Environment,Environment +472974,Environment,Environment +472966,Environment,Environment +472961,Environment,Environment +472958,Environment,Environment +472952,Environment,Environment +472951,Environment,Environment +472946,Environment,Environment +472931,Environment,Environment +470678,Environment,Environment +470648,Environment,Environment +466974,Environment,Environment +466970,Environment,Environment +461378,Environment,Environment +461377,Environment,Environment +461376,Environment,Environment +461375,Environment,Environment +459365,Environment,Environment +457209,Environment,Environment +455487,Environment,Environment +452620,Environment,Environment +452616,Environment,Environment +452614,Environment,Environment +452612,Environment,Environment +452609,Environment,Environment +448190,Environment,Environment +445716,Environment,Environment +445713,Environment,Environment +443904,Environment,Environment +443903,Environment,Environment +443897,Environment,Environment +442401,Environment,Environment +442366,Environment,Environment +442364,Environment,Environment +439471,Environment,Environment +439443,Environment,Environment +439434,Environment,Environment +439427,Environment,Environment +173824,Health,Health +163790,Health,Health +173829,Health,Health +173826,Health,Health +150291,Industry,Industry +150287,Industry,Industry +138465,Industry,Industry +138465,Infrastructure,Infrastructure +138464,Infrastructure,Infrastructure +150291,Infrastructure,Infrastructure +138465,Transportation,Transportation +138464,Transportation,Transportation +150291,Transportation,Transportation +138462,Other,Economic Development +138462,Infrastructure,Infrastructure +138462,Tourism,Tourism +138463,Transportation,Transportation +166267,Industry,Industry +254294,Industry,Industry +207108,Industry,Industry +194965,Industry,Industry +194963,Industry,Industry +194960,Industry,Industry +142596,Transportation,Transportation +136894,Other,aviation safety and security +261670,Environment,Environment +261669,Environment,Environment +152359,Environment,Environment +136914,Environment,Environment +424836,Environment,Environment +424835,Environment,Environment +136914,Other,Greenhouse Gas Emission Regulations +136974,Other,Master Shepherd's Course +154931,Forestry,Forestry +152179,Forestry,Forestry +142921,Forestry,Forestry +142915,Forestry,Forestry +142914,Forestry,Forestry +180489,Forestry,Forestry +156644,Forestry,Forestry +156642,Forestry,Forestry +142915,International Trade,International Trade +142914,International Trade,International Trade +180489,International Trade,International Trade +156644,International Trade,International Trade +156642,International Trade,International Trade +156639,International Trade,International Trade +154931,International Trade,International Trade +152179,International Trade,International Trade +308350,Internal Trade,Internal Trade +308349,Internal Trade,Internal Trade +308356,Internal Trade,Internal Trade +308355,Internal Trade,Internal Trade +308353,Internal Trade,Internal Trade +308352,Internal Trade,Internal Trade +137415,Agriculture,Agriculture +174770,Internal Trade,Internal Trade +174769,Internal Trade,Internal Trade +174768,Internal Trade,Internal Trade +174767,Internal Trade,Internal Trade +308692,Internal Trade,Internal Trade +308691,Internal Trade,Internal Trade +308690,Internal Trade,Internal Trade +137535,Other,Federal Budget +137534,Other,Federal Budget +141477,Other,Federal Budget +137555,Other,Federal Budget +137554,Other,Federal Budget +438975,Labour,Labour +438972,Labour,Labour +168448,Labour,Labour +168444,Labour,Labour +168436,Labour,Labour +168432,Labour,Labour +168423,Labour,Labour +168413,Labour,Labour +168393,Labour,Labour +161606,Labour,Labour +161605,Labour,Labour +161603,Labour,Labour +157444,Labour,Labour +157443,Labour,Labour +157442,Labour,Labour +137977,Labour,Labour +364869,Labour,Labour +350580,Labour,Labour +349270,Labour,Labour +347520,Labour,Labour +313034,Labour,Labour +300831,Labour,Labour +300830,Labour,Labour +300829,Labour,Labour +292769,Labour,Labour +286009,Labour,Labour +283309,Labour,Labour +277630,Labour,Labour +277629,Labour,Labour +269649,Labour,Labour +251329,Labour,Labour +239637,Labour,Labour +215609,Labour,Labour +196532,Labour,Labour +193352,Labour,Labour +193351,Labour,Labour +186985,Labour,Labour +176164,Labour,Labour +175706,Labour,Labour +428319,Labour,Labour +428317,Labour,Labour +425883,Labour,Labour +425882,Labour,Labour +425881,Labour,Labour +425880,Labour,Labour +425879,Labour,Labour +425878,Labour,Labour +425877,Labour,Labour +423070,Labour,Labour +423069,Labour,Labour +421588,Labour,Labour +419340,Labour,Labour +419339,Labour,Labour +418054,Labour,Labour +418049,Labour,Labour +418046,Labour,Labour +418044,Labour,Labour +418042,Labour,Labour +415300,Labour,Labour +415298,Labour,Labour +415296,Labour,Labour +415294,Labour,Labour +413298,Labour,Labour +413293,Labour,Labour +413291,Labour,Labour +413289,Labour,Labour +409538,Labour,Labour +409532,Labour,Labour +409525,Labour,Labour +409521,Labour,Labour +406594,Labour,Labour +402787,Labour,Labour +400564,Labour,Labour +400561,Labour,Labour +398949,Labour,Labour +398943,Labour,Labour +398941,Labour,Labour +393868,Labour,Labour +393823,Labour,Labour +393821,Labour,Labour +393818,Labour,Labour +393813,Labour,Labour +393810,Labour,Labour +387338,Labour,Labour +381173,Labour,Labour +381172,Labour,Labour +381171,Labour,Labour +378799,Labour,Labour +378796,Labour,Labour +378795,Labour,Labour +377262,Labour,Labour +377259,Labour,Labour +374928,Labour,Labour +374926,Labour,Labour +374925,Labour,Labour +371540,Labour,Labour +368785,Labour,Labour +368784,Labour,Labour +368782,Labour,Labour +366673,Labour,Labour +364873,Labour,Labour +364872,Labour,Labour +543315,Labour,Labour +543314,Labour,Labour +541179,Labour,Labour +541177,Labour,Labour +539668,Labour,Labour +533944,Labour,Labour +533941,Labour,Labour +533940,Labour,Labour +531470,Labour,Labour +531469,Labour,Labour +531466,Labour,Labour +528266,Labour,Labour +528264,Labour,Labour +528262,Labour,Labour +528260,Labour,Labour +528259,Labour,Labour +525248,Labour,Labour +135234,Other,"Regional (Ontario) transportation policy, regarding Toronto Pearson's role as a mobility hub" +135235,Other,"International Air Policy, regarding liberalization of air policy and bilateral air service agreements" +135236,Other,"International Air Policy, regarding liberalization of air policy and bilateral air service agreements" +139394,Other,Année internationale des coopératives 2012 +152917,Other,Programme de l'Initiative de développement coopératif (IDC) +135537,Other,CN Strike +135541,Other,Museum Strike +135543,Other,COP15 +135697,Other,Inspector Designation and Auditor Appointment Guidelines as per the requirements of the Farm Products Agencies Act +135697,Other,Inspector Designation and Auditor Appointment Guidelines as per the requirements of the Farm Product Agencies Act. +135701,Other,Agreement on Internal Trade and its lack of adequate scope to cover the core elements of national supply management. +138234,Other,Tobacco Contraband +135725,Other,Tobacco taxation/contraband +335317,Industry,Industry +142800,Infrastructure,Infrastructure +142800,Regional Development,Regional Development +386464,International Trade,International Trade +335573,Taxation and Finance,Taxation and Finance +135757,Taxation and Finance,Taxation and Finance +135797,Other,Health Human Resources +135797,Other,Public Health Care +135844,Other,supply management +142799,Tourism,Tourism +135854,Fisheries,Fisheries +135855,Fisheries,Fisheries +135919,Justice and Law Enforcement,Justice and Law Enforcement +135899,Other,Prime Time in Ottawa conference +135901,Other,Prime Time in Ottawa conference +135910,Other,foreign qualifications recognition +135918,International Trade,International Trade +305389,Justice and Law Enforcement,Justice and Law Enforcement +148089,Other,G20 - 2010 +135973,Other,Extended Ku +135961,Other,foreign affairs and international cooperation +135970,Other,Clean Canada Truck Proposal and Funding Support +135974,Other,Role of Chemistry in adding value to resource products and finding environmental solutions +152266,Other,International Trade +146197,Agriculture,Agriculture +148090,Other,G20 - 2010 +135995,International Trade,International Trade +136001,International Trade,International Trade +136017,Other,AbitibiBowater and Newfoundland +136034,Other,Customs and Immigration Facility +222267,Justice and Law Enforcement,Justice and Law Enforcement +215907,Transportation,Transportation +145666,Government Procurement,Government Procurement +226127,Industry,Industry +150637,Taxation and Finance,Taxation and Finance +397747,Defence,Defence +309741,Environment,Environnement +296827,Health,Santé +136257,Other,"Meeting to discuss the Government of Canada's new ""institutional entity"" to sstrengthen and promote democracy and development around the world." +136258,Other,Informal group meeting with CIDA staff to discuss women's rights. +136258,Other,Women's Rights +136259,Other,"CCIC's policy brief on ""Approaches to Strengthening CIDA""" +136259,Other,"CIDA's new ""corporate contribution agreement template""" +136259,Other,Defunding of KAIROS +136274,Other,Natural Health Product Legislation and Regulation +149969,Defence,Defence +491126,Energy,Energy +439415,Environment,Environment +145435,Taxation and Finance,Taxation and Finance +136354,Other,Export opportunities with India +339458,Health,Health +136394,Other,Export opportunities with India +173825,Health,Health +136454,Other,Tax options +136456,Other,Knowledge Infrastructure Program +136456,Other,Tax issues +136457,Other,Community Adjustment Fund +136458,Other,Funding +136535,Other,roles and responsibilities of regulated marketing agencies +136515,Other,roles and responsibilities of regulated marketing agencies +137634,Government Procurement,Government Procurement +138464,Industry,Industry +150287,Infrastructure,Infrastructure +150287,Transportation,Transportation +138463,Other,Economic Development +138463,Infrastructure,Infrastructure +138463,Tourism,Tourism +138462,Transportation,Transportation +142894,Industry,Industry +207108,Environment,Environment +207107,Fisheries,Fisheries +174064,Industry,Industry +142596,Environment,Environment +145904,Infrastructure,Infrastructure +142596,Mining,Mining +145904,Transportation,Transportation +136734,Other,Infrastructure funding required to meet the needs of rural municipalities. +136734,Other,The need for a designated federal office to help address the unique issues experienced by rural Canada. +136874,Other,Infrastructure funding required to meet the needs of rural municipalities +136874,Other,The need for a designated federal office to help address the unique issues experienced by rural Canada. +136875,Other,aviation safety and security +141214,Other,aviation safety and security +138479,Regional Development,Regional Development +424833,Environment,Environment +136915,Other,Greenhouse Gas Emission Regulations +158853,Other,Citizenship and Immigration +136975,Other,Master Shepherd's Course +308650,Internal Trade,Internal Trade +142874,Energy,Energy +137014,Other,Future aerospace programs and industrial regional benefits +137134,Other,2010 Budget +137135,Other,2010 Budget +137138,Other,2010 Budget +137142,Other,2010 Budget +137154,Other,Student Recruitment +365823,Internal Trade,Internal Trade +156639,Forestry,Forestry +154931,Industry,Industry +142921,International Trade,International Trade +308351,Internal Trade,Internal Trade +137314,Infrastructure,Infrastructure +137358,Other,Release of Bio Diesel Demonstration results +137381,Other,"Industry Roundtable, Magellan Vision" +139635,Agriculture,Agriculture +137394,Other,National pharmaceutical strategy / Drug access +276188,Consumer Issues,Consumer Issues +308689,Internal Trade,Internal Trade +137536,Other,Federal Budget +137574,Other,Avaya Business Plans +438976,Labour,Labour +145967,Other,Finance +230316,Health,Health +137795,Other,Manitoba Economic Roundtable +137919,Energy,Energy +137974,Other,Renewable Fuels +162033,Internal Trade,Internal Trade +276412,International Trade,International Trade +225598,International Trade,International Trade +148250,Other,Study on future Bio-products/bio-energy opportunities in the forest sector +149779,Other,Bio-energy and bio-products in the forest industry +138037,Other,Economic challenges affecting countries around the world; renewal of forest sector +138038,Other,Discussions related to prospective government investment in a new Long Term Space Plan at the Canadian Space Agency. +138054,Other,Food Tax Fairness +145837,Other,GST/PST Harmonization +138055,Other,To provide an update on recent reorganizatin of EMS Technologies; and have discussions related to prospective government investment in a new Long Term Space Plan at the Canadian Space Agency. +141595,Other,Bio-products and Bio-energy in the forest industry +138057,Other,Discussions related to prospective government investment in a new Long Term Space Plan at the Canadian Space Agency. +138058,Other,Discussions related to prospective government investment in a new Long Term Space Plan at the Canadian Space Agency. +145663,Other,Bio-products and bio-energy in the forest sector +138076,Other,Discussions related to prospective government investment in a new Long Term Space Plan at the Canadian Space Agency +138078,Other,Consumer Credit Issues +138083,Other,International Development Partnership Funding with regards to KAIROS +138084,Other,International Development Partnership Funding with regards to KAIROS +138085,Other,International Development Partnership Funding with regards to KAIROS +138086,Other,International Development Partnership Funding with regards to KAIROS +140814,Industry,Industry +138165,Infrastructure,Infrastructure +138167,Other,waste water management +138168,Other,ecoEnergy +138169,Other,PCB removal +138170,Other,Mackenzie Pipeline +522223,Health,Health +379962,Consumer Issues,Consumer Issues +138236,Other,tobacco taxation/contraband; funding for tobacco control; tobacco promotion +252312,Consumer Issues,Consumer Issues +138336,Other,Canada/US Space Cooperation +138357,Other,DND Programs +138358,Other,RADARSAT Constellation Mission (RCM) +138394,Other,Health access/sustainability +138394,Other,Health care infra/info-structure +138394,Other,Public health +138408,Other,Finance +138402,Other,Renewal of Canada-Israel Industrial Research and Development Foundation (CIIRDF) +138410,Other,Listed entities – Anti-Terrorism Legislation +138435,Other,Renewal of Canadian Fleet +200490,Government Procurement,Government Procurement +163904,Transportation,Transportation +138434,Other,Housing +148231,Justice and Law Enforcement,Justice and Law Enforcement +435452,Government Procurement,Government Procurement +163536,Justice and Law Enforcement,Justice and Law Enforcement +163539,Regional Development,Regional Development +138592,Other,Business Update +138600,Other,First Nations Broadband Project and Innovation Partnership +138604,Other,First Nations Broadband Project and Innovation Partnership +138607,Other,Energy Regulation +138608,Other,Energy regulation +138609,Other,Finance +138610,Other,Finance +138611,Other,Energy regulation +138687,Other,Budget 2010 +138690,Other,Budget 2010 +145933,Environment,Environment +138714,Other,Relationship between poultry agencies and the Farm Products Council of Canada (FPCC). +138718,Other,Corus Radio Quebec +166184,Energy,Energy +166184,Environment,Environment +140574,Industry,Industry +166186,Infrastructure,Infrastructure +166187,Mining,Mining +166187,Small Business,Small Business +138776,Other,Phase II of Canada's Economic Plan +138778,Other,Energy regulation +138777,Other,Corporate tax +138777,Other,Geoscience +138780,Other,DFC Annual Dairy Policy Conference +138780,Other,Tariff classification +138782,Other,Tailings +138782,Other,Waste management +138834,Other,Pensions +138838,Other,Challenges for Manufacturing and the need to chart a path forward as the recovery proceeds +138856,Other,General financial sector issues +138857,Taxation and Finance,Taxation and Finance +138874,Other,Telephone Call re: Convocation +138894,Other,Pre-budget hearings +138896,Other,Courtesy Call +138936,Other,Submission to House Finance Committee +138937,Other,Integrity Issues +138939,Other,Budget 2010 +138941,Other,Budget 2010 +138942,Other,Budget 2010 +138974,Other,Security +139014,Other,"CAE's activities in Singapore, Japan and Korea" +139034,Other,OTSP Overview CH130 Simulator +139135,Taxation and Finance,Taxation and Finance +147014,Internal Trade,Internal Trade +525247,Labour,Labour +525246,Labour,Labour +525245,Labour,Labour +525244,Labour,Labour +525243,Labour,Labour +522389,Labour,Labour +519624,Labour,Labour +519622,Labour,Labour +519621,Labour,Labour +519620,Labour,Labour +519619,Labour,Labour +519617,Labour,Labour +517073,Labour,Labour +517071,Labour,Labour +517070,Labour,Labour +517069,Labour,Labour +517067,Labour,Labour +515506,Labour,Labour +515503,Labour,Labour +515500,Labour,Labour +515496,Labour,Labour +513809,Labour,Labour +513808,Labour,Labour +513806,Labour,Labour +513805,Labour,Labour +512741,Labour,Labour +510153,Labour,Labour +508626,Labour,Labour +508625,Labour,Labour +508622,Labour,Labour +504106,Labour,Labour +504103,Labour,Labour +504102,Labour,Labour +504099,Labour,Labour +504095,Labour,Labour +503571,Labour,Labour +501649,Labour,Labour +501644,Labour,Labour +501642,Labour,Labour +499923,Labour,Labour +495801,Labour,Labour +493019,Labour,Labour +490251,Labour,Labour +490249,Labour,Labour +490245,Labour,Labour +490238,Labour,Labour +490230,Labour,Labour +487080,Labour,Labour +487079,Labour,Labour +487077,Labour,Labour +487075,Labour,Labour +487073,Labour,Labour +483965,Labour,Labour +483961,Labour,Labour +483960,Labour,Labour +480336,Labour,Labour +479434,Labour,Labour +479432,Labour,Labour +476963,Labour,Labour +476961,Labour,Labour +476960,Labour,Labour +476959,Labour,Labour +476957,Labour,Labour +476954,Labour,Labour +475702,Labour,Labour +475698,Labour,Labour +475690,Labour,Labour +475680,Labour,Labour +472267,Labour,Labour +472266,Labour,Labour +472264,Labour,Labour +472263,Labour,Labour +470258,Labour,Labour +470256,Labour,Labour +470253,Labour,Labour +470251,Labour,Labour +466357,Labour,Labour +464566,Labour,Labour +464563,Labour,Labour +462803,Labour,Labour +461690,Labour,Labour +461686,Labour,Labour +461022,Labour,Labour +459527,Labour,Labour +458459,Labour,Labour +451692,Labour,Labour +449806,Labour,Labour +445085,Labour,Labour +443374,Labour,Labour +443373,Labour,Labour +441810,Labour,Labour +441809,Labour,Labour +145966,Other,Finance +142314,Other,Finance +230309,Health,Health +226672,Health,Health +177149,Health,Health +174066,Health,Health +170585,Health,Health +167535,Health,Health +167534,Health,Health +167531,Health,Health +167529,Health,Health +167502,Health,Health +160753,Health,Health +159647,Health,Health +159643,Health,Health +156858,Health,Health +156855,Health,Health +156853,Health,Health +156852,Health,Health +226671,Health,Health +226670,Health,Health +226667,Health,Health +223224,Health,Health +223218,Health,Health +223216,Health,Health +223214,Health,Health +223213,Health,Health +216749,Health,Health +212187,Health,Health +212037,Health,Health +212016,Health,Health +212012,Health,Health +207218,Health,Health +207217,Health,Health +207216,Health,Health +207215,Health,Health +207214,Health,Health +207213,Health,Health +207211,Health,Health +207208,Health,Health +207207,Health,Health +207204,Health,Health +207194,Health,Health +207192,Health,Health +207146,Health,Health +205067,Health,Health +203229,Health,Health +203228,Health,Health +201070,Health,Health +201068,Health,Health +200131,Health,Health +200129,Health,Health +199606,Health,Health +199597,Health,Health +199596,Health,Health +199107,Health,Health +199087,Health,Health +192664,Health,Health +185550,Health,Health +185549,Health,Health +185547,Health,Health +185546,Health,Health +185545,Health,Health +184885,Health,Health +177644,Health,Health +177626,Health,Health +177625,Health,Health +177624,Health,Health +177604,Health,Health +177584,Health,Health +177564,Health,Health +378794,Health,Health +371282,Health,Health +295811,Health,Health +256354,Health,Health +254049,Health,Health +245006,Health,Health +245005,Health,Health +245002,Health,Health +240634,Health,Health +240631,Health,Health +240629,Health,Health +236409,Health,Health +144499,Energy,Energy +308670,Internal Trade,Internal Trade +308669,Internal Trade,Internal Trade +276411,International Trade,International Trade +276410,International Trade,International Trade +225647,International Trade,International Trade +162036,International Trade,International Trade +162033,International Trade,International Trade +379505,International Trade,International Trade +379504,International Trade,International Trade +379503,International Trade,International Trade +367583,International Trade,International Trade +367582,International Trade,International Trade +366123,International Trade,International Trade +365147,International Trade,International Trade +336399,International Trade,International Trade +326915,International Trade,International Trade +326914,International Trade,International Trade +326913,International Trade,International Trade +326912,International Trade,International Trade +308670,International Trade,International Trade +308669,International Trade,International Trade +277209,International Trade,International Trade +276414,International Trade,International Trade +276413,International Trade,International Trade +225597,International Trade,International Trade +169860,International Trade,International Trade +162029,International Trade,International Trade +138015,Other,Study on future Bio-products/bio-energy opportunities in the forest sector +145665,Other,Bio-energy and bio-products in the forest industry +138035,Other,Bio-energy and bio-products in the forest industry +138054,Other,GST/PST Harmonization +138056,Other,Bio-products and Bio-energy in the forest industry +141614,Other,Bio-products and bio-energy in the forest sector +138059,Other,Bio-products and bio-energy in the forest sector +522220,Health,Health +519673,Health,Health +197438,Health,Health +197436,Health,Health +197434,Health,Health +192887,Health,Health +192886,Health,Health +174808,Health,Health +174807,Health,Health +173403,Health,Health +170148,Health,Health +170147,Health,Health +163249,Health,Health +161216,Health,Health +161215,Health,Health +161214,Health,Health +161213,Health,Health +161209,Health,Health +158536,Health,Health +158534,Health,Health +158530,Health,Health +158528,Health,Health +156220,Health,Health +150117,Health,Health +340825,Health,Health +340823,Health,Health +340821,Health,Health +340819,Health,Health +340816,Health,Health +340815,Health,Health +340814,Health,Health +340810,Health,Health +321629,Health,Health +310294,Health,Health +302069,Health,Health +285089,Health,Health +277149,Health,Health +230422,Health,Health +230419,Health,Health +230417,Health,Health +230416,Health,Health +230411,Health,Health +230407,Health,Health +230406,Health,Health +210537,Health,Health +210536,Health,Health +430027,Health,Health +430026,Health,Health +423290,Health,Health +423289,Health,Health +423288,Health,Health +421040,Health,Health +421038,Health,Health +419228,Health,Health +419227,Health,Health +419226,Health,Health +419225,Health,Health +417748,Health,Health +417746,Health,Health +416774,Health,Health +408617,Health,Health +408028,Health,Health +389665,Health,Health +389663,Health,Health +389661,Health,Health +384414,Health,Health +384413,Health,Health +384412,Health,Health +378703,Health,Health +378700,Health,Health +378693,Health,Health +368392,Health,Health +368389,Health,Health +368388,Health,Health +368385,Health,Health +363226,Health,Health +363225,Health,Health +363224,Health,Health +357732,Health,Health +356318,Health,Health +356316,Health,Health +356314,Health,Health +356312,Health,Health +356311,Health,Health +356310,Health,Health +356309,Health,Health +353416,Health,Health +353412,Health,Health +511891,Health,Health +500590,Health,Health +500589,Health,Health +500588,Health,Health +497832,Health,Health +497830,Health,Health +497826,Health,Health +497821,Health,Health +495110,Health,Health +495109,Health,Health +495108,Health,Health +491905,Health,Health +491903,Health,Health +491902,Health,Health +491899,Health,Health +478825,Health,Health +478824,Health,Health +477055,Health,Health +477053,Health,Health +475459,Health,Health +475454,Health,Health +475439,Health,Health +470426,Health,Health +470425,Health,Health +465188,Health,Health +457664,Health,Health +448503,Health,Health +443351,Health,Health +443344,Health,Health +540919,Health,Health +540917,Health,Health +540915,Health,Health +540914,Health,Health +540913,Health,Health +538999,Health,Health +536700,Health,Health +530645,Health,Health +530644,Health,Health +530643,Health,Health +530642,Health,Health +530641,Health,Health +528301,Health,Health +524112,Health,Health +522229,Health,Health +522226,Health,Health +379955,Consumer Issues,Consumer Issues +138354,Other,RADARSAT Constellation Mission (RCM) +282729,Government Procurement,Government Procurement +200489,Transportation,Transportation +146024,Justice and Law Enforcement,Justice and Law Enforcement +146022,Justice and Law Enforcement,Justice and Law Enforcement +417388,Government Procurement,Government Procurement +417387,Government Procurement,Government Procurement +378421,Government Procurement,Government Procurement +375703,Government Procurement,Government Procurement +375687,Government Procurement,Government Procurement +375685,Government Procurement,Government Procurement +473765,Government Procurement,Government Procurement +473764,Government Procurement,Government Procurement +468331,Government Procurement,Government Procurement +163549,Justice and Law Enforcement,Justice and Law Enforcement +163548,Justice and Law Enforcement,Justice and Law Enforcement +163547,Justice and Law Enforcement,Justice and Law Enforcement +163546,Justice and Law Enforcement,Justice and Law Enforcement +163545,Justice and Law Enforcement,Justice and Law Enforcement +163544,Justice and Law Enforcement,Justice and Law Enforcement +163539,Justice and Law Enforcement,Justice and Law Enforcement +163536,Regional Development,Regional Development +145792,Regional Development,Regional Development +163549,Regional Development,Regional Development +163548,Regional Development,Regional Development +163547,Regional Development,Regional Development +163546,Regional Development,Regional Development +163545,Regional Development,Regional Development +163544,Regional Development,Regional Development +165755,Energy,Energy +165752,Energy,Energy +166188,Energy,Energy +166187,Energy,Energy +166186,Energy,Energy +166185,Energy,Energy +165755,Environment,Environment +165752,Environment,Environment +166187,Environment,Environment +166186,Environment,Environment +166185,Environment,Environment +166189,Industry,Industry +166188,Industry,Industry +166187,Industry,Industry +166186,Industry,Industry +166185,Industry,Industry +166184,Industry,Industry +165755,Industry,Industry +165752,Industry,Industry +166185,Infrastructure,Infrastructure +166184,Infrastructure,Infrastructure +165755,Infrastructure,Infrastructure +165752,Infrastructure,Infrastructure +148960,Infrastructure,Infrastructure +166189,Infrastructure,Infrastructure +166188,Infrastructure,Infrastructure +166187,Infrastructure,Infrastructure +166186,Mining,Mining +166184,Mining,Mining +166186,Small Business,Small Business +148960,Small Business,Small Business +144594,Small Business,Small Business +140575,Small Business,Small Business +163956,Other,Pensions +145898,Other,OTSP Overview CH130 Simulator +143200,Internal Trade,Internal Trade +143199,Internal Trade,Internal Trade +152072,Internal Trade,Internal Trade +152071,Internal Trade,Internal Trade +147015,Internal Trade,Internal Trade +414958,Consumer Issues,Consumer Issues +400200,Consumer Issues,Consumer Issues +174721,Consumer Issues,Consumer Issues +174719,Consumer Issues,Consumer Issues +169886,Consumer Issues,Consumer Issues +169884,Consumer Issues,Consumer Issues +161199,Consumer Issues,Consumer Issues +161137,Consumer Issues,Consumer Issues +388715,Consumer Issues,Consumer Issues +379499,Consumer Issues,Consumer Issues +378762,Consumer Issues,Consumer Issues +378761,Consumer Issues,Consumer Issues +378760,Consumer Issues,Consumer Issues +375614,Consumer Issues,Consumer Issues +370628,Consumer Issues,Consumer Issues +314651,Consumer Issues,Consumer Issues +505658,Consumer Issues,Consumer Issues +505657,Consumer Issues,Consumer Issues +505656,Consumer Issues,Consumer Issues +499034,Consumer Issues,Consumer Issues +483978,Consumer Issues,Consumer Issues +467755,Consumer Issues,Consumer Issues +467748,Consumer Issues,Consumer Issues +467317,Consumer Issues,Consumer Issues +458194,Consumer Issues,Consumer Issues +454599,Consumer Issues,Consumer Issues +454196,Consumer Issues,Consumer Issues +454159,Consumer Issues,Consumer Issues +450936,Consumer Issues,Consumer Issues +419324,Consumer Issues,Consumer Issues +162014,Internal Trade,Internal Trade +161410,Internal Trade,Internal Trade +161198,Internal Trade,Internal Trade +160773,Internal Trade,Internal Trade +156047,Internal Trade,Internal Trade +174734,Internal Trade,Internal Trade +174732,Internal Trade,Internal Trade +174731,Internal Trade,Internal Trade +174727,Internal Trade,Internal Trade +174725,Internal Trade,Internal Trade +174723,Internal Trade,Internal Trade +309759,Internal Trade,Internal Trade +308334,Internal Trade,Internal Trade +308333,Internal Trade,Internal Trade +308310,Internal Trade,Internal Trade +308309,Internal Trade,Internal Trade +308290,Internal Trade,Internal Trade +308289,Internal Trade,Internal Trade +505528,Internal Trade,Internal Trade +491825,Internal Trade,Internal Trade +157992,Internal Trade,Internal Trade +177044,Internal Trade,Internal Trade +158000,Internal Trade,Internal Trade +157999,Internal Trade,Internal Trade +157995,Internal Trade,Internal Trade +160296,Consumer Issues,Consumer Issues +160295,Consumer Issues,Consumer Issues +160292,Consumer Issues,Consumer Issues +158862,Consumer Issues,Consumer Issues +158861,Consumer Issues,Consumer Issues +158860,Consumer Issues,Consumer Issues +158859,Consumer Issues,Consumer Issues +157553,Consumer Issues,Consumer Issues +155306,Consumer Issues,Consumer Issues +153815,Consumer Issues,Consumer Issues +245174,Consumer Issues,Consumer Issues +227590,Consumer Issues,Consumer Issues +227589,Consumer Issues,Consumer Issues +224527,Consumer Issues,Consumer Issues +221488,Consumer Issues,Consumer Issues +221487,Consumer Issues,Consumer Issues +219780,Consumer Issues,Consumer Issues +219779,Consumer Issues,Consumer Issues +209603,Consumer Issues,Consumer Issues +209602,Consumer Issues,Consumer Issues +209601,Consumer Issues,Consumer Issues +209600,Consumer Issues,Consumer Issues +203795,Consumer Issues,Consumer Issues +196631,Consumer Issues,Consumer Issues +196630,Consumer Issues,Consumer Issues +190625,Consumer Issues,Consumer Issues +173688,Consumer Issues,Consumer Issues +173687,Consumer Issues,Consumer Issues +166288,Consumer Issues,Consumer Issues +166287,Consumer Issues,Consumer Issues +166286,Consumer Issues,Consumer Issues +209601,Health,Health +209600,Health,Health +203795,Health,Health +196631,Health,Health +196630,Health,Health +190625,Health,Health +166288,Health,Health +166287,Health,Health +166286,Health,Health +166284,Health,Health +160296,Health,Health +160295,Health,Health +160292,Health,Health +158068,Health,Health +157553,Health,Health +155306,Health,Health +153815,Health,Health +245174,Health,Health +227590,Health,Health +227589,Health,Health +224527,Health,Health +221488,Health,Health +221487,Health,Health +219780,Health,Health +219779,Health,Health +209603,Health,Health +224527,Industry,Industry +221488,Industry,Industry +221487,Industry,Industry +219780,Industry,Industry +219779,Industry,Industry +209602,Industry,Industry +209601,Industry,Industry +209600,Industry,Industry +203795,Industry,Industry +196631,Industry,Industry +196630,Industry,Industry +190625,Industry,Industry +173688,Industry,Industry +166287,Industry,Industry +166286,Industry,Industry +157553,Industry,Industry +153815,Industry,Industry +245174,Industry,Industry +227590,Industry,Industry +219780,Internal Trade,Internal Trade +209603,Internal Trade,Internal Trade +209602,Internal Trade,Internal Trade +209600,Internal Trade,Internal Trade +158068,Internal Trade,Internal Trade +153815,Internal Trade,Internal Trade +227590,Internal Trade,Internal Trade +227589,Internal Trade,Internal Trade +158859,Justice and Law Enforcement,Justice and Law Enforcement +153815,Justice and Law Enforcement,Justice and Law Enforcement +158862,Justice and Law Enforcement,Justice and Law Enforcement +158861,Justice and Law Enforcement,Justice and Law Enforcement +219780,Small Business,Small Business +219779,Small Business,Small Business +153815,Small Business,Small Business +209603,Small Business,Small Business +209602,Small Business,Small Business +209601,Small Business,Small Business +209600,Small Business,Small Business +196631,Small Business,Small Business +196630,Small Business,Small Business +190625,Small Business,Small Business +166288,Small Business,Small Business +166287,Small Business,Small Business +166286,Small Business,Small Business +166284,Small Business,Small Business +160296,Small Business,Small Business +160295,Small Business,Small Business +160292,Small Business,Small Business +158862,Small Business,Small Business +158861,Small Business,Small Business +158860,Small Business,Small Business +158859,Small Business,Small Business +158068,Small Business,Small Business +157553,Small Business,Small Business +155306,Small Business,Small Business +245174,Small Business,Small Business +227590,Small Business,Small Business +227589,Small Business,Small Business +224527,Small Business,Small Business +221488,Small Business,Small Business +166284,Constitutional Issues,Constitutional Issues +160296,Constitutional Issues,Constitutional Issues +160292,Constitutional Issues,Constitutional Issues +158862,Constitutional Issues,Constitutional Issues +158861,Constitutional Issues,Constitutional Issues +158860,Constitutional Issues,Constitutional Issues +158859,Constitutional Issues,Constitutional Issues +157553,Constitutional Issues,Constitutional Issues +155306,Constitutional Issues,Constitutional Issues +153815,Constitutional Issues,Constitutional Issues +245174,Constitutional Issues,Constitutional Issues +227590,Constitutional Issues,Constitutional Issues +227589,Constitutional Issues,Constitutional Issues +221488,Constitutional Issues,Constitutional Issues +221487,Constitutional Issues,Constitutional Issues +219780,Constitutional Issues,Constitutional Issues +219779,Constitutional Issues,Constitutional Issues +209603,Constitutional Issues,Constitutional Issues +209602,Constitutional Issues,Constitutional Issues +209601,Constitutional Issues,Constitutional Issues +209600,Constitutional Issues,Constitutional Issues +203795,Constitutional Issues,Constitutional Issues +196631,Constitutional Issues,Constitutional Issues +196630,Constitutional Issues,Constitutional Issues +190625,Constitutional Issues,Constitutional Issues +173688,Constitutional Issues,Constitutional Issues +173687,Constitutional Issues,Constitutional Issues +166288,Constitutional Issues,Constitutional Issues +166287,Constitutional Issues,Constitutional Issues +151239,Agriculture,Agriculture +147217,Agriculture,Agriculture +145977,Agriculture,Agriculture +167313,Agriculture,Agriculture +167312,Agriculture,Agriculture +167311,Agriculture,Agriculture +167310,Agriculture,Agriculture +167309,Agriculture,Agriculture +167308,Agriculture,Agriculture +167307,Agriculture,Agriculture +167306,Agriculture,Agriculture +167304,Agriculture,Agriculture +164330,Agriculture,Agriculture +164329,Agriculture,Agriculture +164328,Agriculture,Agriculture +164327,Agriculture,Agriculture +156894,Agriculture,Agriculture +156874,Agriculture,Agriculture +156873,Agriculture,Agriculture +156871,Agriculture,Agriculture +156870,Agriculture,Agriculture +154921,Agriculture,Agriculture +154920,Agriculture,Agriculture +154918,Agriculture,Agriculture +154917,Agriculture,Agriculture +153102,Agriculture,Agriculture +502351,Transportation,Transportation +502343,Transportation,Transportation +181444,Transportation,Transportation +163655,Transportation,Transportation +163650,Transportation,Transportation +163647,Transportation,Transportation +247090,Transportation,Transportation +247089,Transportation,Transportation +218909,Transportation,Transportation +207329,Transportation,Transportation +207328,Transportation,Transportation +396271,Transportation,Transportation +393125,Transportation,Transportation +393123,Transportation,Transportation +393121,Transportation,Transportation +393119,Transportation,Transportation +393118,Transportation,Transportation +390823,Transportation,Transportation +390787,Transportation,Transportation +384409,Transportation,Transportation +384408,Transportation,Transportation +384407,Transportation,Transportation +384406,Transportation,Transportation +384403,Transportation,Transportation +325780,Transportation,Transportation +495948,Transportation,Transportation +491038,Transportation,Transportation +486569,Transportation,Transportation +484563,Transportation,Transportation +484559,Transportation,Transportation +475886,Transportation,Transportation +466843,Transportation,Transportation +466834,Transportation,Transportation +466833,Transportation,Transportation +463154,Transportation,Transportation +463151,Transportation,Transportation +463149,Transportation,Transportation +463148,Transportation,Transportation +460920,Transportation,Transportation +460835,Transportation,Transportation +460834,Transportation,Transportation +460833,Transportation,Transportation +459857,Transportation,Transportation +459856,Transportation,Transportation +459855,Transportation,Transportation +456134,Transportation,Transportation +456128,Transportation,Transportation +449349,Transportation,Transportation +449339,Transportation,Transportation +444317,Transportation,Transportation +442963,Transportation,Transportation +441078,Transportation,Transportation +441077,Transportation,Transportation +441076,Transportation,Transportation +441074,Transportation,Transportation +435613,Transportation,Transportation +435603,Transportation,Transportation +435587,Transportation,Transportation +435584,Transportation,Transportation +433504,Transportation,Transportation +433502,Transportation,Transportation +430826,Transportation,Transportation +430824,Transportation,Transportation +428645,Transportation,Transportation +428644,Transportation,Transportation +428643,Transportation,Transportation +428633,Transportation,Transportation +428625,Transportation,Transportation +426416,Transportation,Transportation +426414,Transportation,Transportation +426410,Transportation,Transportation +426405,Transportation,Transportation +426384,Transportation,Transportation +426377,Transportation,Transportation +426373,Transportation,Transportation +423970,Transportation,Transportation +423968,Transportation,Transportation +423966,Transportation,Transportation +423963,Transportation,Transportation +423960,Transportation,Transportation +421577,Transportation,Transportation +419250,Transportation,Transportation +419246,Transportation,Transportation +419239,Transportation,Transportation +418111,Transportation,Transportation +418109,Transportation,Transportation +418104,Transportation,Transportation +414481,Transportation,Transportation +414480,Transportation,Transportation +414479,Transportation,Transportation +414478,Transportation,Transportation +414477,Transportation,Transportation +414476,Transportation,Transportation +412177,Transportation,Transportation +407930,Transportation,Transportation +406398,Transportation,Transportation +406396,Transportation,Transportation +403224,Transportation,Transportation +403223,Transportation,Transportation +403222,Transportation,Transportation +403215,Transportation,Transportation +403210,Transportation,Transportation +398816,Transportation,Transportation +398814,Transportation,Transportation +398811,Transportation,Transportation +398809,Transportation,Transportation +398806,Transportation,Transportation +398804,Transportation,Transportation +398802,Transportation,Transportation +542750,Transportation,Transportation +542747,Transportation,Transportation +541821,Transportation,Transportation +541820,Transportation,Transportation +541817,Transportation,Transportation +541816,Transportation,Transportation +541811,Transportation,Transportation +539949,Transportation,Transportation +539944,Transportation,Transportation +537778,Transportation,Transportation +537774,Transportation,Transportation +535256,Transportation,Transportation +533431,Transportation,Transportation +529474,Transportation,Transportation +529461,Transportation,Transportation +521091,Transportation,Transportation +521090,Transportation,Transportation +520875,Transportation,Transportation +520874,Transportation,Transportation +518066,Transportation,Transportation +518062,Transportation,Transportation +515967,Transportation,Transportation +508612,Transportation,Transportation +508609,Transportation,Transportation +139874,Taxation and Finance,Taxation and Finance +249389,Taxation and Finance,Taxation and Finance +248230,Taxation and Finance,Taxation and Finance +248229,Taxation and Finance,Taxation and Finance +244520,Taxation and Finance,Taxation and Finance +244519,Taxation and Finance,Taxation and Finance +244518,Taxation and Finance,Taxation and Finance +240709,Taxation and Finance,Taxation and Finance +240698,Taxation and Finance,Taxation and Finance +234793,Taxation and Finance,Taxation and Finance +234792,Taxation and Finance,Taxation and Finance +234791,Taxation and Finance,Taxation and Finance +234790,Taxation and Finance,Taxation and Finance +232749,Taxation and Finance,Taxation and Finance +230395,Taxation and Finance,Taxation and Finance +225048,Taxation and Finance,Taxation and Finance +225047,Taxation and Finance,Taxation and Finance +223031,Taxation and Finance,Taxation and Finance +223030,Taxation and Finance,Taxation and Finance +223029,Taxation and Finance,Taxation and Finance +211824,Taxation and Finance,Taxation and Finance +211823,Taxation and Finance,Taxation and Finance +211822,Taxation and Finance,Taxation and Finance +200650,Taxation and Finance,Taxation and Finance +200648,Taxation and Finance,Taxation and Finance +200647,Taxation and Finance,Taxation and Finance +196867,Taxation and Finance,Taxation and Finance +196751,Taxation and Finance,Taxation and Finance +196750,Taxation and Finance,Taxation and Finance +191605,Taxation and Finance,Taxation and Finance +189114,Taxation and Finance,Taxation and Finance +189113,Taxation and Finance,Taxation and Finance +189111,Taxation and Finance,Taxation and Finance +189110,Taxation and Finance,Taxation and Finance +189108,Taxation and Finance,Taxation and Finance +186607,Taxation and Finance,Taxation and Finance +186606,Taxation and Finance,Taxation and Finance +186605,Taxation and Finance,Taxation and Finance +186604,Taxation and Finance,Taxation and Finance +175547,Taxation and Finance,Taxation and Finance +165545,Taxation and Finance,Taxation and Finance +397299,Taxation and Finance,Taxation and Finance +394823,Taxation and Finance,Taxation and Finance +394822,Taxation and Finance,Taxation and Finance +391871,Taxation and Finance,Taxation and Finance +391869,Taxation and Finance,Taxation and Finance +391868,Taxation and Finance,Taxation and Finance +388896,Taxation and Finance,Taxation and Finance +388895,Taxation and Finance,Taxation and Finance +388894,Taxation and Finance,Taxation and Finance +386259,Taxation and Finance,Taxation and Finance +386251,Taxation and Finance,Taxation and Finance +382985,Taxation and Finance,Taxation and Finance +382984,Taxation and Finance,Taxation and Finance +382982,Taxation and Finance,Taxation and Finance +382980,Taxation and Finance,Taxation and Finance +380344,Taxation and Finance,Taxation and Finance +380071,Taxation and Finance,Taxation and Finance +377962,Taxation and Finance,Taxation and Finance +377961,Taxation and Finance,Taxation and Finance +377960,Taxation and Finance,Taxation and Finance +377959,Taxation and Finance,Taxation and Finance +377958,Taxation and Finance,Taxation and Finance +377956,Taxation and Finance,Taxation and Finance +341746,Taxation and Finance,Taxation and Finance +341745,Taxation and Finance,Taxation and Finance +339272,Taxation and Finance,Taxation and Finance +336397,Taxation and Finance,Taxation and Finance +336396,Taxation and Finance,Taxation and Finance +334879,Taxation and Finance,Taxation and Finance +331349,Taxation and Finance,Taxation and Finance +328011,Taxation and Finance,Taxation and Finance +328010,Taxation and Finance,Taxation and Finance +328009,Taxation and Finance,Taxation and Finance +324269,Taxation and Finance,Taxation and Finance +318749,Taxation and Finance,Taxation and Finance +315350,Taxation and Finance,Taxation and Finance +314289,Taxation and Finance,Taxation and Finance +311456,Taxation and Finance,Taxation and Finance +308472,Taxation and Finance,Taxation and Finance +308470,Taxation and Finance,Taxation and Finance +308469,Taxation and Finance,Taxation and Finance +305509,Taxation and Finance,Taxation and Finance +300870,Taxation and Finance,Taxation and Finance +300869,Taxation and Finance,Taxation and Finance +297949,Taxation and Finance,Taxation and Finance +293770,Taxation and Finance,Taxation and Finance +293769,Taxation and Finance,Taxation and Finance +287409,Taxation and Finance,Taxation and Finance +286617,Taxation and Finance,Taxation and Finance +286615,Taxation and Finance,Taxation and Finance +283970,Taxation and Finance,Taxation and Finance +283230,Taxation and Finance,Taxation and Finance +275089,Taxation and Finance,Taxation and Finance +267009,Taxation and Finance,Taxation and Finance +264376,Taxation and Finance,Taxation and Finance +261207,Taxation and Finance,Taxation and Finance +257669,Taxation and Finance,Taxation and Finance +436384,Taxation and Finance,Taxation and Finance +427200,Taxation and Finance,Taxation and Finance +424646,Taxation and Finance,Taxation and Finance +424594,Taxation and Finance,Taxation and Finance +424552,Taxation and Finance,Taxation and Finance +424534,Taxation and Finance,Taxation and Finance +424533,Taxation and Finance,Taxation and Finance +424531,Taxation and Finance,Taxation and Finance +420793,Taxation and Finance,Taxation and Finance +414711,Taxation and Finance,Taxation and Finance +414710,Taxation and Finance,Taxation and Finance +414709,Taxation and Finance,Taxation and Finance +414708,Taxation and Finance,Taxation and Finance +411837,Taxation and Finance,Taxation and Finance +411836,Taxation and Finance,Taxation and Finance +411201,Taxation and Finance,Taxation and Finance +411200,Taxation and Finance,Taxation and Finance +410595,Taxation and Finance,Taxation and Finance +410525,Taxation and Finance,Taxation and Finance +410524,Taxation and Finance,Taxation and Finance +410523,Taxation and Finance,Taxation and Finance +410522,Taxation and Finance,Taxation and Finance +409753,Taxation and Finance,Taxation and Finance +409749,Taxation and Finance,Taxation and Finance +409748,Taxation and Finance,Taxation and Finance +409746,Taxation and Finance,Taxation and Finance +409744,Taxation and Finance,Taxation and Finance +408239,Taxation and Finance,Taxation and Finance +407955,Taxation and Finance,Taxation and Finance +406675,Taxation and Finance,Taxation and Finance +404457,Taxation and Finance,Taxation and Finance +404456,Taxation and Finance,Taxation and Finance +404455,Taxation and Finance,Taxation and Finance +404454,Taxation and Finance,Taxation and Finance +404453,Taxation and Finance,Taxation and Finance +404452,Taxation and Finance,Taxation and Finance +404451,Taxation and Finance,Taxation and Finance +404449,Taxation and Finance,Taxation and Finance +404448,Taxation and Finance,Taxation and Finance +404446,Taxation and Finance,Taxation and Finance +404445,Taxation and Finance,Taxation and Finance +404444,Taxation and Finance,Taxation and Finance +397303,Taxation and Finance,Taxation and Finance +397302,Taxation and Finance,Taxation and Finance +397301,Taxation and Finance,Taxation and Finance +397300,Taxation and Finance,Taxation and Finance +494212,Taxation and Finance,Taxation and Finance +341692,International Relations,International Relations +341681,International Relations,International Relations +310869,International Relations,International Relations +310849,International Relations,International Relations +310638,International Relations,International Relations +310636,International Relations,International Relations +310632,International Relations,International Relations +295930,International Relations,International Relations +273500,International Relations,International Relations +273491,International Relations,International Relations +273485,International Relations,International Relations +269586,International Relations,International Relations +269583,International Relations,International Relations +254154,International Relations,International Relations +223033,International Relations,International Relations +193350,International Relations,International Relations +193349,International Relations,International Relations +193348,International Relations,International Relations +193347,International Relations,International Relations +193346,International Relations,International Relations +373984,International Relations,International Relations +349176,International Relations,International Relations +341714,International Relations,International Relations +341710,International Relations,International Relations +341704,International Relations,International Relations +373984,International Trade,International Trade +371533,International Trade,International Trade +230130,International Trade,International Trade +223033,International Trade,International Trade +193345,International Trade,International Trade +178104,International Trade,International Trade +174858,International Trade,International Trade +174857,International Trade,International Trade +174856,International Trade,International Trade +170551,International Trade,International Trade +170550,International Trade,International Trade +161729,International Trade,International Trade +161728,International Trade,International Trade +161727,International Trade,International Trade +161726,International Trade,International Trade +154929,International Trade,International Trade +366739,International Trade,International Trade +366728,International Trade,International Trade +366725,International Trade,International Trade +366588,International Trade,International Trade +359806,International Trade,International Trade +341704,International Trade,International Trade +341695,International Trade,International Trade +341692,International Trade,International Trade +310870,International Trade,International Trade +310869,International Trade,International Trade +310634,International Trade,International Trade +310633,International Trade,International Trade +310631,International Trade,International Trade +310629,International Trade,International Trade +302129,International Trade,International Trade +295930,International Trade,International Trade +273505,International Trade,International Trade +273482,International Trade,International Trade +269591,International Trade,International Trade +269586,International Trade,International Trade +269583,International Trade,International Trade +267129,International Trade,International Trade +250888,International Trade,International Trade +250879,International Trade,International Trade +250861,International Trade,International Trade +245435,International Trade,International Trade +379946,International Trade,International Trade +277315,Mining,Mining +273505,Mining,Mining +161740,Mining,Mining +161739,Mining,Mining +161738,Mining,Mining +161737,Mining,Mining +161736,Mining,Mining +161735,Mining,Mining +161734,Mining,Mining +159778,Mining,Mining +159775,Mining,Mining +159774,Mining,Mining +159772,Mining,Mining +159766,Mining,Mining +159763,Mining,Mining +159761,Mining,Mining +159759,Mining,Mining +159757,Mining,Mining +159753,Mining,Mining +159751,Mining,Mining +159709,Mining,Mining +157285,Mining,Mining +157282,Mining,Mining +157277,Mining,Mining +157273,Mining,Mining +157272,Mining,Mining +157236,Mining,Mining +157227,Mining,Mining +157226,Mining,Mining +157222,Mining,Mining +157218,Mining,Mining +273500,Mining,Mining +273491,Mining,Mining +273485,Mining,Mining +273482,Mining,Mining +269602,Mining,Mining +269599,Mining,Mining +269591,Mining,Mining +269583,Mining,Mining +269575,Mining,Mining +269566,Mining,Mining +267129,Mining,Mining +254156,Mining,Mining +254155,Mining,Mining +254154,Mining,Mining +254152,Mining,Mining +250888,Mining,Mining +250879,Mining,Mining +250874,Mining,Mining +250870,Mining,Mining +250861,Mining,Mining +250829,Mining,Mining +250823,Mining,Mining +245435,Mining,Mining +241172,Mining,Mining +240997,Mining,Mining +226352,Mining,Mining +226349,Mining,Mining +204047,Mining,Mining +199608,Mining,Mining +193344,Mining,Mining +189563,Mining,Mining +189559,Mining,Mining +189555,Mining,Mining +189551,Mining,Mining +189527,Mining,Mining +178184,Mining,Mining +178164,Mining,Mining +381362,Mining,Mining +379946,Mining,Mining +379943,Mining,Mining +379939,Mining,Mining +377781,Mining,Mining +377769,Mining,Mining +377768,Mining,Mining +377767,Mining,Mining +377766,Mining,Mining +377765,Mining,Mining +377761,Mining,Mining +373984,Mining,Mining +373182,Mining,Mining +371548,Mining,Mining +371535,Mining,Mining +371534,Mining,Mining +371533,Mining,Mining +366727,Mining,Mining +366599,Mining,Mining +365612,Mining,Mining +349177,Mining,Mining +344004,Mining,Mining +341716,Mining,Mining +341714,Mining,Mining +341710,Mining,Mining +341707,Mining,Mining +341704,Mining,Mining +341695,Mining,Mining +341692,Mining,Mining +341689,Mining,Mining +310871,Mining,Mining +310638,Mining,Mining +310636,Mining,Mining +310634,Mining,Mining +310633,Mining,Mining +310632,Mining,Mining +302130,Mining,Mining +289570,Mining,Mining +286230,Mining,Mining +286229,Mining,Mining +277320,Mining,Mining +277319,Mining,Mining +286229,Taxation and Finance,Taxation and Finance +273505,Taxation and Finance,Taxation and Finance +193344,Taxation and Finance,Taxation and Finance +165250,Taxation and Finance,Taxation and Finance +273500,Taxation and Finance,Taxation and Finance +273485,Taxation and Finance,Taxation and Finance +273482,Taxation and Finance,Taxation and Finance +269586,Taxation and Finance,Taxation and Finance +269583,Taxation and Finance,Taxation and Finance +269575,Taxation and Finance,Taxation and Finance +269566,Taxation and Finance,Taxation and Finance +250879,Taxation and Finance,Taxation and Finance +250829,Taxation and Finance,Taxation and Finance +250823,Taxation and Finance,Taxation and Finance +245435,Taxation and Finance,Taxation and Finance +241169,Taxation and Finance,Taxation and Finance +241161,Taxation and Finance,Taxation and Finance +241154,Taxation and Finance,Taxation and Finance +241000,Taxation and Finance,Taxation and Finance +373984,Taxation and Finance,Taxation and Finance +344004,Taxation and Finance,Taxation and Finance +341716,Taxation and Finance,Taxation and Finance +341710,Taxation and Finance,Taxation and Finance +341707,Taxation and Finance,Taxation and Finance +341695,Taxation and Finance,Taxation and Finance +341681,Taxation and Finance,Taxation and Finance +310855,Taxation and Finance,Taxation and Finance +310634,Taxation and Finance,Taxation and Finance +310633,Taxation and Finance,Taxation and Finance +302130,Taxation and Finance,Taxation and Finance +289570,Taxation and Finance,Taxation and Finance +533671,Justice and Law Enforcement,Justice et application des lois +529130,Justice and Law Enforcement,Justice et application des lois +189016,Justice and Law Enforcement,Justice et application des lois +163703,Justice and Law Enforcement,Justice et application des lois +162090,Justice and Law Enforcement,Justice et application des lois +159577,Justice and Law Enforcement,Justice et application des lois +150347,Justice and Law Enforcement,Justice et application des lois +150343,Justice and Law Enforcement,Justice et application des lois +140034,Justice and Law Enforcement,Justice et application des lois +370033,Justice and Law Enforcement,Justice et application des lois +351258,Justice and Law Enforcement,Justice et application des lois +465490,Justice and Law Enforcement,Justice et application des lois +465489,Justice and Law Enforcement,Justice et application des lois +460969,Justice and Law Enforcement,Justice et application des lois +453983,Justice and Law Enforcement,Justice et application des lois +453982,Justice and Law Enforcement,Justice et application des lois +453981,Justice and Law Enforcement,Justice et application des lois +453980,Justice and Law Enforcement,Justice et application des lois +453979,Justice and Law Enforcement,Justice et application des lois +445287,Justice and Law Enforcement,Justice et application des lois +427608,Justice and Law Enforcement,Justice et application des lois +427607,Justice and Law Enforcement,Justice et application des lois +422894,Justice and Law Enforcement,Justice et application des lois +422893,Justice and Law Enforcement,Justice et application des lois +422891,Justice and Law Enforcement,Justice et application des lois +422890,Justice and Law Enforcement,Justice et application des lois +422889,Justice and Law Enforcement,Justice et application des lois +411205,Justice and Law Enforcement,Justice et application des lois +411204,Justice and Law Enforcement,Justice et application des lois +411034,Justice and Law Enforcement,Justice et application des lois +411033,Justice and Law Enforcement,Justice et application des lois +411032,Justice and Law Enforcement,Justice et application des lois +408464,Justice and Law Enforcement,Justice et application des lois +404103,Justice and Law Enforcement,Justice et application des lois +404101,Justice and Law Enforcement,Justice et application des lois +404098,Justice and Law Enforcement,Justice et application des lois +404097,Justice and Law Enforcement,Justice et application des lois +404096,Justice and Law Enforcement,Justice et application des lois +404095,Justice and Law Enforcement,Justice et application des lois +401176,Justice and Law Enforcement,Justice et application des lois +401175,Justice and Law Enforcement,Justice et application des lois +401172,Justice and Law Enforcement,Justice et application des lois +397877,Justice and Law Enforcement,Justice et application des lois +397876,Justice and Law Enforcement,Justice et application des lois +397875,Justice and Law Enforcement,Justice et application des lois +395709,Justice and Law Enforcement,Justice et application des lois +395705,Justice and Law Enforcement,Justice et application des lois +395295,Justice and Law Enforcement,Justice et application des lois +394737,Justice and Law Enforcement,Justice et application des lois +394736,Justice and Law Enforcement,Justice et application des lois +394735,Justice and Law Enforcement,Justice et application des lois +394734,Justice and Law Enforcement,Justice et application des lois +394733,Justice and Law Enforcement,Justice et application des lois +393185,Justice and Law Enforcement,Justice et application des lois +393182,Justice and Law Enforcement,Justice et application des lois +389541,Justice and Law Enforcement,Justice et application des lois +389539,Justice and Law Enforcement,Justice et application des lois +388784,Justice and Law Enforcement,Justice et application des lois +384344,Justice and Law Enforcement,Justice et application des lois +379727,Justice and Law Enforcement,Justice et application des lois +379725,Justice and Law Enforcement,Justice et application des lois +379722,Justice and Law Enforcement,Justice et application des lois +379719,Justice and Law Enforcement,Justice et application des lois +377757,Justice and Law Enforcement,Justice et application des lois +377754,Justice and Law Enforcement,Justice et application des lois +377752,Justice and Law Enforcement,Justice et application des lois +377751,Justice and Law Enforcement,Justice et application des lois +377750,Justice and Law Enforcement,Justice et application des lois +377738,Justice and Law Enforcement,Justice et application des lois +377736,Justice and Law Enforcement,Justice et application des lois +377734,Justice and Law Enforcement,Justice et application des lois +377732,Justice and Law Enforcement,Justice et application des lois +374289,Justice and Law Enforcement,Justice et application des lois +374288,Justice and Law Enforcement,Justice et application des lois +374286,Justice and Law Enforcement,Justice et application des lois +374284,Justice and Law Enforcement,Justice et application des lois +374281,Justice and Law Enforcement,Justice et application des lois +374280,Justice and Law Enforcement,Justice et application des lois +374266,Justice and Law Enforcement,Justice et application des lois +374265,Justice and Law Enforcement,Justice et application des lois +374264,Justice and Law Enforcement,Justice et application des lois +374263,Justice and Law Enforcement,Justice et application des lois +373735,Justice and Law Enforcement,Justice et application des lois +373734,Justice and Law Enforcement,Justice et application des lois +373733,Justice and Law Enforcement,Justice et application des lois +373731,Justice and Law Enforcement,Justice et application des lois +370041,Justice and Law Enforcement,Justice et application des lois +370040,Justice and Law Enforcement,Justice et application des lois +370039,Justice and Law Enforcement,Justice et application des lois +370038,Justice and Law Enforcement,Justice et application des lois +160078,Health,Health +140123,Regional Development,Regional Development +380331,Immigration,Immigration +344441,Immigration,Immigration +156067,Immigration,Immigration +156066,Immigration,Immigration +299030,Immigration,Immigration +269730,Immigration,Immigration +262729,Immigration,Immigration +257069,Immigration,Immigration +241609,Immigration,Immigration +238650,Immigration,Immigration +233910,Immigration,Immigration +446402,Immigration,Immigration +438892,Immigration,Immigration +431712,Immigration,Immigration +424957,Immigration,Immigration +411515,Immigration,Immigration +408715,Immigration,Immigration +407227,Immigration,Immigration +406069,Immigration,Immigration +404287,Immigration,Immigration +404286,Immigration,Immigration +401830,Immigration,Immigration +401179,Immigration,Immigration +397580,Immigration,Immigration +156066,Taxation and Finance,Taxation and Finance +154650,Taxation and Finance,Taxation and Finance +433548,Industry,Industrie +431846,Industry,Industrie +355866,Industry,Industrie +352944,Industry,Industrie +351416,Industry,Industrie +341753,Industry,Industrie +341751,Industry,Industrie +335018,Industry,Industrie +325673,Industry,Industrie +325672,Industry,Industrie +321781,Industry,Industrie +321779,Industry,Industrie +321778,Industry,Industrie +321777,Industry,Industrie +321772,Industry,Industrie +325949,Health,Health +297650,Health,Health +408833,Health,Health +369236,Health,Health +140316,Health,Health +541253,Health,Health +537627,Health,Health +470136,Health,Health +470129,Health,Health +140316,Health,Health +183264,Health,Health +381477,Defence,Defence +379717,Defence,Defence +156579,Defence,Defence +147958,Defence,Defence +147953,Defence,Defence +146061,Defence,Defence +142625,Defence,Defence +240840,Defence,Defence +217716,Defence,Defence +199871,Defence,Defence +194006,Defence,Defence +175027,Defence,Defence +165834,Defence,Defence +164007,Defence,Defence +163999,Defence,Defence +158009,Defence,Defence +428909,Defence,Defence +428908,Defence,Defence +410295,Defence,Defence +394385,Defence,Defence +387875,Defence,Defence +387861,Defence,Defence +383706,Defence,Defence +233607,Government Procurement,Government Procurement +410295,Government Procurement,Government Procurement +142620,Government Procurement,Government Procurement +233605,Government Procurement,Government Procurement +227030,Government Procurement,Government Procurement +223298,Government Procurement,Government Procurement +223267,Government Procurement,Government Procurement +207201,Government Procurement,Government Procurement +207200,Government Procurement,Government Procurement +207199,Government Procurement,Government Procurement +207197,Government Procurement,Government Procurement +403701,Government Procurement,Government Procurement +398970,Government Procurement,Government Procurement +381504,Government Procurement,Government Procurement +381501,Government Procurement,Government Procurement +381477,Government Procurement,Government Procurement +381474,Government Procurement,Government Procurement +379723,Government Procurement,Government Procurement +379717,Government Procurement,Government Procurement +259263,Government Procurement,Government Procurement +250865,Government Procurement,Government Procurement +245356,Government Procurement,Government Procurement +245355,Government Procurement,Government Procurement +240847,Government Procurement,Government Procurement +240843,Government Procurement,Government Procurement +236663,Government Procurement,Government Procurement +145754,Consumer Issues,Consumer Issues +145754,Health,Health +280949,Defence,Defence +276789,Defence,Defence +156712,Defence,Defence +156707,Defence,Defence +154639,Defence,Defence +153162,Defence,Defence +153161,Defence,Defence +153160,Defence,Defence +151197,Defence,Defence +250311,Defence,Defence +244897,Defence,Defence +244491,Defence,Defence +226495,Defence,Defence +226490,Defence,Defence +216289,Defence,Defence +210267,Defence,Defence +193233,Defence,Defence +175231,Defence,Defence +175230,Defence,Defence +173395,Defence,Defence +173224,Defence,Defence +161885,Defence,Defence +468366,Defence,Defence +448834,Defence,Defence +448833,Defence,Defence +442802,Defence,Defence +436581,Defence,Defence +436580,Defence,Defence +436579,Defence,Defence +405960,Defence,Defence +392180,Defence,Defence +374113,Defence,Defence +333345,Defence,Defence +331245,Defence,Defence +308889,Defence,Defence +290530,Defence,Defence +290529,Defence,Defence +333345,Government Procurement,Government Procurement +331245,Government Procurement,Government Procurement +175231,Government Procurement,Government Procurement +173398,Government Procurement,Government Procurement +173397,Government Procurement,Government Procurement +173396,Government Procurement,Government Procurement +173395,Government Procurement,Government Procurement +161885,Government Procurement,Government Procurement +156712,Government Procurement,Government Procurement +156707,Government Procurement,Government Procurement +154639,Government Procurement,Government Procurement +153162,Government Procurement,Government Procurement +153161,Government Procurement,Government Procurement +153160,Government Procurement,Government Procurement +151197,Government Procurement,Government Procurement +308889,Government Procurement,Government Procurement +290530,Government Procurement,Government Procurement +290529,Government Procurement,Government Procurement +284669,Government Procurement,Government Procurement +280950,Government Procurement,Government Procurement +280949,Government Procurement,Government Procurement +276789,Government Procurement,Government Procurement +250311,Government Procurement,Government Procurement +244897,Government Procurement,Government Procurement +244491,Government Procurement,Government Procurement +244489,Government Procurement,Government Procurement +233571,Government Procurement,Government Procurement +226490,Government Procurement,Government Procurement +216289,Government Procurement,Government Procurement +210267,Government Procurement,Government Procurement +374113,Government Procurement,Government Procurement +157652,Government Procurement,Government Procurement +145696,Health,Health +145693,Health,Health +145699,Health,Health +437837,International Trade,International Trade +437834,International Trade,International Trade +437833,International Trade,International Trade +437830,International Trade,International Trade +432942,International Trade,International Trade +432941,International Trade,International Trade +430374,International Trade,International Trade +430370,International Trade,International Trade +427139,International Trade,International Trade +425104,International Trade,International Trade +425101,International Trade,International Trade +422925,International Trade,International Trade +417970,International Trade,International Trade +413947,International Trade,International Trade +410529,International Trade,International Trade +410528,International Trade,International Trade +410527,International Trade,International Trade +404722,International Trade,International Trade +399784,International Trade,International Trade +398453,International Trade,International Trade +397597,International Trade,International Trade +397224,International Trade,International Trade +396784,International Trade,International Trade +396774,International Trade,International Trade +396272,International Trade,International Trade +388657,International Trade,International Trade +388656,International Trade,International Trade +388655,International Trade,International Trade +378789,International Trade,International Trade +377790,International Trade,International Trade +377756,International Trade,International Trade +377753,International Trade,International Trade +377749,International Trade,International Trade +377747,International Trade,International Trade +377746,International Trade,International Trade +377745,International Trade,International Trade +377744,International Trade,International Trade +377743,International Trade,International Trade +356534,International Trade,International Trade +356532,International Trade,International Trade +356527,International Trade,International Trade +356525,International Trade,International Trade +356523,International Trade,International Trade +541982,International Trade,International Trade +540207,International Trade,International Trade +533120,International Trade,International Trade +530288,International Trade,International Trade +518736,International Trade,International Trade +516220,International Trade,International Trade +515345,International Trade,International Trade +506340,International Trade,International Trade +506098,International Trade,International Trade +496663,International Trade,International Trade +492203,International Trade,International Trade +492202,International Trade,International Trade +492201,International Trade,International Trade +492200,International Trade,International Trade +492199,International Trade,International Trade +492139,International Trade,International Trade +492138,International Trade,International Trade +469080,International Trade,International Trade +469079,International Trade,International Trade +469061,International Trade,International Trade +469060,International Trade,International Trade +468993,International Trade,International Trade +468992,International Trade,International Trade +468991,International Trade,International Trade +468981,International Trade,International Trade +468980,International Trade,International Trade +468979,International Trade,International Trade +468978,International Trade,International Trade +468977,International Trade,International Trade +468947,International Trade,International Trade +468945,International Trade,International Trade +468944,International Trade,International Trade +468851,International Trade,International Trade +468850,International Trade,International Trade +468849,International Trade,International Trade +468848,International Trade,International Trade +468847,International Trade,International Trade +465360,International Trade,International Trade +463906,International Trade,International Trade +463905,International Trade,International Trade +463903,International Trade,International Trade +463902,International Trade,International Trade +463898,International Trade,International Trade +463896,International Trade,International Trade +461217,International Trade,International Trade +460831,International Trade,International Trade +460476,International Trade,International Trade +457885,International Trade,International Trade +456826,International Trade,International Trade +452749,International Trade,International Trade +444754,International Trade,International Trade +444753,International Trade,International Trade +444752,International Trade,International Trade +204888,Industry,Industry +204529,Industry,Industry +276350,Industry,Industry +145696,Environment,Environment +145693,Environment,Environment +317850,Agriculture,Agriculture +302531,Agriculture,Agriculture +242012,Agriculture,Agriculture +242011,Agriculture,Agriculture +242010,Agriculture,Agriculture +242009,Agriculture,Agriculture +233349,Agriculture,Agriculture +219467,Agriculture,Agriculture +194831,Agriculture,Agriculture +190853,Agriculture,Agriculture +185877,Agriculture,Agriculture +185875,Agriculture,Agriculture +183165,Agriculture,Agriculture +166214,Agriculture,Agriculture +324361,Agriculture,Agriculture +324360,Agriculture,Agriculture +324359,Agriculture,Agriculture +317854,Agriculture,Agriculture +317853,Agriculture,Agriculture +233511,Environment,Environment +166214,Environment,Environment +242012,Environment,Environment +242011,Environment,Environment +242010,Environment,Environment +242009,Environment,Environment +236209,Environment,Environment +317852,Transportation,Transportation +317850,Transportation,Transportation +242012,Transportation,Transportation +242011,Transportation,Transportation +242010,Transportation,Transportation +242009,Transportation,Transportation +324361,Transportation,Transportation +324360,Transportation,Transportation +324359,Transportation,Transportation +317854,Transportation,Transportation +144615,Agriculture,Agriculture +144614,Agriculture,Agriculture +151439,Agriculture,Agriculture +144635,Agriculture,Agriculture +144634,Environment,Environment +144615,Environment,Environment +144634,Health,Health +144614,Health,Health +151439,Health,Health +144615,Industry,Industry +144614,Industry,Industry +144635,Industry,Industry +144634,Transportation,Transportation +144614,Transportation,Transportation +151439,Transportation,Transportation +156286,Infrastructure,Infrastructure +156186,Infrastructure,Infrastructure +400543,Consumer Issues,Consumer Issues +400535,Consumer Issues,Consumer Issues +393294,Consumer Issues,Consumer Issues +436906,Consumer Issues,Consumer Issues +436657,Consumer Issues,Consumer Issues +401192,Consumer Issues,Consumer Issues +401166,Consumer Issues,Consumer Issues +528548,Education,Education +528537,Education,Education +193826,Education,Education +193805,Education,Education +193794,Education,Education +193785,Education,Education +193782,Education,Education +193778,Education,Education +193776,Education,Education +193775,Education,Education +193660,Education,Education +193656,Education,Education +193644,Education,Education +193640,Education,Education +437531,Education,Education +528548,Employment and Training,Employment and Training +528537,Employment and Training,Employment and Training +333624,Employment and Training,Employment and Training +535920,Employment and Training,Employment and Training +535881,Employment and Training,Employment and Training +535878,Employment and Training,Employment and Training +504143,Health,Health +485856,Health,Health +164414,Health,Health +164413,Health,Health +164412,Health,Health +164411,Health,Health +164410,Health,Health +164409,Health,Health +164408,Health,Health +163885,Health,Health +158853,Health,Health +276897,Health,Health +276896,Health,Health +276895,Health,Health +276894,Health,Health +276893,Health,Health +276889,Health,Health +214968,Health,Health +214967,Health,Health +214947,Health,Health +214927,Health,Health +214907,Health,Health +214887,Health,Health +200358,Health,Health +200348,Health,Health +200343,Health,Health +193826,Health,Health +193824,Health,Health +193805,Health,Health +193802,Health,Health +193799,Health,Health +193798,Health,Health +193797,Health,Health +193794,Health,Health +193793,Health,Health +193792,Health,Health +193788,Health,Health +193785,Health,Health +193782,Health,Health +193780,Health,Health +193779,Health,Health +193778,Health,Health +193777,Health,Health +193776,Health,Health +193775,Health,Health +193773,Health,Health +193660,Health,Health +193656,Health,Health +193652,Health,Health +193647,Health,Health +193644,Health,Health +193640,Health,Health +193630,Health,Health +365947,Health,Health +359579,Health,Health +354768,Health,Health +354767,Health,Health +354766,Health,Health +354765,Health,Health +354764,Health,Health +354763,Health,Health +354762,Health,Health +354761,Health,Health +354760,Health,Health +354759,Health,Health +354758,Health,Health +354757,Health,Health +354756,Health,Health +354755,Health,Health +354754,Health,Health +354753,Health,Health +354752,Health,Health +354751,Health,Health +354750,Health,Health +354749,Health,Health +354748,Health,Health +354747,Health,Health +354746,Health,Health +354711,Health,Health +354710,Health,Health +354709,Health,Health +354708,Health,Health +354707,Health,Health +354706,Health,Health +354705,Health,Health +344589,Health,Health +337489,Health,Health +334953,Health,Health +334952,Health,Health +328789,Health,Health +326860,Health,Health +326709,Health,Health +326697,Health,Health +326696,Health,Health +326695,Health,Health +326690,Health,Health +326674,Health,Health +326673,Health,Health +326671,Health,Health +326670,Health,Health +326591,Health,Health +326587,Health,Health +326583,Health,Health +326582,Health,Health +326580,Health,Health +326579,Health,Health +326575,Health,Health +326544,Health,Health +326543,Health,Health +326542,Health,Health +326541,Health,Health +326540,Health,Health +311198,Health,Health +311196,Health,Health +300391,Health,Health +292229,Health,Health +277347,Health,Health +277345,Health,Health +277035,Health,Health +277033,Health,Health +277032,Health,Health +277031,Health,Health +277023,Health,Health +277022,Health,Health +277021,Health,Health +277020,Health,Health +277019,Health,Health +277018,Health,Health +277017,Health,Health +277016,Health,Health +277015,Health,Health +277014,Health,Health +277012,Health,Health +277010,Health,Health +277007,Health,Health +277005,Health,Health +276997,Health,Health +276994,Health,Health +482906,Health,Health +472559,Health,Health +467339,Health,Health +465800,Health,Health +462158,Health,Health +462157,Health,Health +460822,Health,Health +453236,Health,Health +453234,Health,Health +453233,Health,Health +453232,Health,Health +453231,Health,Health +453230,Health,Health +453229,Health,Health +453228,Health,Health +453227,Health,Health +453226,Health,Health +453225,Health,Health +453224,Health,Health +453223,Health,Health +453222,Health,Health +453221,Health,Health +453220,Health,Health +453219,Health,Health +453218,Health,Health +453217,Health,Health +453216,Health,Health +453215,Health,Health +453214,Health,Health +453213,Health,Health +453212,Health,Health +453211,Health,Health +453210,Health,Health +453209,Health,Health +453208,Health,Health +453207,Health,Health +446405,Health,Health +444315,Health,Health +437531,Health,Health +436906,Health,Health +436657,Health,Health +433474,Health,Health +426629,Health,Health +426612,Health,Health +426609,Health,Health +426608,Health,Health +426605,Health,Health +426604,Health,Health +426598,Health,Health +426592,Health,Health +426587,Health,Health +426581,Health,Health +426577,Health,Health +426574,Health,Health +426568,Health,Health +426565,Health,Health +426557,Health,Health +426554,Health,Health +426549,Health,Health +426547,Health,Health +426544,Health,Health +426543,Health,Health +426542,Health,Health +426540,Health,Health +426536,Health,Health +426531,Health,Health +426527,Health,Health +426524,Health,Health +426523,Health,Health +426521,Health,Health +426516,Health,Health +426512,Health,Health +426506,Health,Health +426498,Health,Health +418460,Health,Health +411141,Health,Health +411136,Health,Health +409003,Health,Health +404409,Health,Health +402325,Health,Health +402316,Health,Health +402315,Health,Health +402314,Health,Health +402313,Health,Health +401192,Health,Health +401177,Health,Health +401173,Health,Health +401169,Health,Health +401167,Health,Health +401166,Health,Health +401163,Health,Health +401161,Health,Health +401118,Health,Health +401108,Health,Health +401100,Health,Health +401098,Health,Health +401096,Health,Health +401093,Health,Health +401091,Health,Health +400916,Health,Health +400869,Health,Health +400790,Health,Health +400783,Health,Health +400777,Health,Health +400595,Health,Health +400545,Health,Health +400543,Health,Health +400535,Health,Health +400532,Health,Health +400530,Health,Health +399295,Health,Health +394788,Health,Health +393294,Health,Health +384939,Health,Health +384937,Health,Health +384935,Health,Health +384934,Health,Health +384931,Health,Health +377402,Health,Health +376494,Health,Health +376493,Health,Health +376492,Health,Health +376490,Health,Health +376489,Health,Health +376486,Health,Health +376483,Health,Health +376481,Health,Health +376480,Health,Health +376478,Health,Health +376477,Health,Health +376474,Health,Health +376473,Health,Health +376472,Health,Health +376471,Health,Health +376470,Health,Health +376469,Health,Health +376468,Health,Health +376418,Health,Health +376417,Health,Health +376410,Health,Health +376408,Health,Health +376365,Health,Health +376363,Health,Health +376341,Health,Health +375112,Health,Health +545025,Health,Health +544927,Health,Health +544925,Health,Health +544924,Health,Health +544920,Health,Health +544916,Health,Health +544911,Health,Health +544910,Health,Health +544909,Health,Health +544908,Health,Health +544907,Health,Health +544906,Health,Health +542535,Health,Health +542531,Health,Health +541859,Health,Health +541855,Health,Health +540782,Health,Health +540781,Health,Health +540780,Health,Health +540779,Health,Health +537001,Health,Health +537000,Health,Health +536999,Health,Health +536998,Health,Health +535893,Health,Health +535889,Health,Health +535888,Health,Health +535887,Health,Health +535886,Health,Health +535885,Health,Health +535884,Health,Health +535883,Health,Health +535882,Health,Health +535881,Health,Health +535880,Health,Health +535878,Health,Health +535877,Health,Health +505091,Health,Health +505087,Health,Health +504659,Health,Health +504658,Health,Health +504657,Health,Health +504656,Health,Health +504655,Health,Health +504654,Health,Health +504652,Health,Health +504651,Health,Health +504650,Health,Health +504649,Health,Health +504209,Health,Health +504154,Health,Health +504153,Health,Health +504152,Health,Health +504151,Health,Health +504150,Health,Health +504149,Health,Health +504148,Health,Health +504147,Health,Health +504146,Health,Health +504145,Health,Health +453208,Small Business,Small Business +453207,Small Business,Small Business +292230,Small Business,Small Business +411173,Small Business,Small Business +411144,Small Business,Small Business +411142,Small Business,Small Business +411139,Small Business,Small Business +411138,Small Business,Small Business +411136,Small Business,Small Business +411134,Small Business,Small Business +411133,Small Business,Small Business +402325,Small Business,Small Business +402316,Small Business,Small Business +402315,Small Business,Small Business +402314,Small Business,Small Business +402313,Small Business,Small Business +401177,Small Business,Small Business +401173,Small Business,Small Business +401169,Small Business,Small Business +401167,Small Business,Small Business +401163,Small Business,Small Business +401108,Small Business,Small Business +401100,Small Business,Small Business +401096,Small Business,Small Business +401091,Small Business,Small Business +400916,Small Business,Small Business +400869,Small Business,Small Business +400790,Small Business,Small Business +400783,Small Business,Small Business +400777,Small Business,Small Business +400595,Small Business,Small Business +400532,Small Business,Small Business +381854,Small Business,Small Business +377402,Small Business,Small Business +376493,Small Business,Small Business +376492,Small Business,Small Business +376491,Small Business,Small Business +376490,Small Business,Small Business +376489,Small Business,Small Business +376487,Small Business,Small Business +376486,Small Business,Small Business +376483,Small Business,Small Business +376481,Small Business,Small Business +376480,Small Business,Small Business +376478,Small Business,Small Business +376477,Small Business,Small Business +376474,Small Business,Small Business +376473,Small Business,Small Business +376472,Small Business,Small Business +376471,Small Business,Small Business +376470,Small Business,Small Business +376418,Small Business,Small Business +376417,Small Business,Small Business +376410,Small Business,Small Business +376384,Small Business,Small Business +376341,Small Business,Small Business +373705,Small Business,Small Business +505091,Small Business,Small Business +505087,Small Business,Small Business +504659,Small Business,Small Business +504658,Small Business,Small Business +504657,Small Business,Small Business +504656,Small Business,Small Business +504655,Small Business,Small Business +504654,Small Business,Small Business +504652,Small Business,Small Business +504651,Small Business,Small Business +504650,Small Business,Small Business +504649,Small Business,Small Business +504209,Small Business,Small Business +504154,Small Business,Small Business +504153,Small Business,Small Business +504152,Small Business,Small Business +504151,Small Business,Small Business +504150,Small Business,Small Business +504149,Small Business,Small Business +504148,Small Business,Small Business +504147,Small Business,Small Business +504146,Small Business,Small Business +504145,Small Business,Small Business +504144,Small Business,Small Business +504143,Small Business,Small Business +467339,Small Business,Small Business +462157,Small Business,Small Business +453236,Small Business,Small Business +453234,Small Business,Small Business +453233,Small Business,Small Business +453232,Small Business,Small Business +453231,Small Business,Small Business +453230,Small Business,Small Business +453229,Small Business,Small Business +453228,Small Business,Small Business +453227,Small Business,Small Business +453226,Small Business,Small Business +453225,Small Business,Small Business +453224,Small Business,Small Business +453223,Small Business,Small Business +453222,Small Business,Small Business +453221,Small Business,Small Business +453220,Small Business,Small Business +453219,Small Business,Small Business +453218,Small Business,Small Business +453217,Small Business,Small Business +453216,Small Business,Small Business +453215,Small Business,Small Business +453214,Small Business,Small Business +453213,Small Business,Small Business +453212,Small Business,Small Business +453211,Small Business,Small Business +453210,Small Business,Small Business +536999,Taxation and Finance,Taxation and Finance +536998,Taxation and Finance,Taxation and Finance +200343,Taxation and Finance,Taxation and Finance +193805,Taxation and Finance,Taxation and Finance +193797,Taxation and Finance,Taxation and Finance +193794,Taxation and Finance,Taxation and Finance +193788,Taxation and Finance,Taxation and Finance +193782,Taxation and Finance,Taxation and Finance +193776,Taxation and Finance,Taxation and Finance +193660,Taxation and Finance,Taxation and Finance +193656,Taxation and Finance,Taxation and Finance +402315,Taxation and Finance,Taxation and Finance +402314,Taxation and Finance,Taxation and Finance +402313,Taxation and Finance,Taxation and Finance +401173,Taxation and Finance,Taxation and Finance +401169,Taxation and Finance,Taxation and Finance +401167,Taxation and Finance,Taxation and Finance +401166,Taxation and Finance,Taxation and Finance +401161,Taxation and Finance,Taxation and Finance +401118,Taxation and Finance,Taxation and Finance +401100,Taxation and Finance,Taxation and Finance +401098,Taxation and Finance,Taxation and Finance +400916,Taxation and Finance,Taxation and Finance +400869,Taxation and Finance,Taxation and Finance +400790,Taxation and Finance,Taxation and Finance +400783,Taxation and Finance,Taxation and Finance +400545,Taxation and Finance,Taxation and Finance +400543,Taxation and Finance,Taxation and Finance +400535,Taxation and Finance,Taxation and Finance +400532,Taxation and Finance,Taxation and Finance +400531,Taxation and Finance,Taxation and Finance +400530,Taxation and Finance,Taxation and Finance +393293,Taxation and Finance,Taxation and Finance +391854,Taxation and Finance,Taxation and Finance +391801,Taxation and Finance,Taxation and Finance +391800,Taxation and Finance,Taxation and Finance +391799,Taxation and Finance,Taxation and Finance +391798,Taxation and Finance,Taxation and Finance +389634,Taxation and Finance,Taxation and Finance +426608,Taxation and Finance,Taxation and Finance +426598,Taxation and Finance,Taxation and Finance +426592,Taxation and Finance,Taxation and Finance +426577,Taxation and Finance,Taxation and Finance +426574,Taxation and Finance,Taxation and Finance +426549,Taxation and Finance,Taxation and Finance +426547,Taxation and Finance,Taxation and Finance +426544,Taxation and Finance,Taxation and Finance +426543,Taxation and Finance,Taxation and Finance +426542,Taxation and Finance,Taxation and Finance +426540,Taxation and Finance,Taxation and Finance +426536,Taxation and Finance,Taxation and Finance +426527,Taxation and Finance,Taxation and Finance +411173,Taxation and Finance,Taxation and Finance +411144,Taxation and Finance,Taxation and Finance +411142,Taxation and Finance,Taxation and Finance +411139,Taxation and Finance,Taxation and Finance +411138,Taxation and Finance,Taxation and Finance +411136,Taxation and Finance,Taxation and Finance +411134,Taxation and Finance,Taxation and Finance +411133,Taxation and Finance,Taxation and Finance +402325,Taxation and Finance,Taxation and Finance +402316,Taxation and Finance,Taxation and Finance +505091,Taxation and Finance,Taxation and Finance +505087,Taxation and Finance,Taxation and Finance +504659,Taxation and Finance,Taxation and Finance +504658,Taxation and Finance,Taxation and Finance +504657,Taxation and Finance,Taxation and Finance +504656,Taxation and Finance,Taxation and Finance +504655,Taxation and Finance,Taxation and Finance +504654,Taxation and Finance,Taxation and Finance +504652,Taxation and Finance,Taxation and Finance +504651,Taxation and Finance,Taxation and Finance +504650,Taxation and Finance,Taxation and Finance +504649,Taxation and Finance,Taxation and Finance +504209,Taxation and Finance,Taxation and Finance +504154,Taxation and Finance,Taxation and Finance +504153,Taxation and Finance,Taxation and Finance +504152,Taxation and Finance,Taxation and Finance +504151,Taxation and Finance,Taxation and Finance +504150,Taxation and Finance,Taxation and Finance +504149,Taxation and Finance,Taxation and Finance +504148,Taxation and Finance,Taxation and Finance +504147,Taxation and Finance,Taxation and Finance +504146,Taxation and Finance,Taxation and Finance +504145,Taxation and Finance,Taxation and Finance +504144,Taxation and Finance,Taxation and Finance +504143,Taxation and Finance,Taxation and Finance +471337,Taxation and Finance,Taxation and Finance +462156,Taxation and Finance,Taxation and Finance +545025,Taxation and Finance,Taxation and Finance +544927,Taxation and Finance,Taxation and Finance +544925,Taxation and Finance,Taxation and Finance +544924,Taxation and Finance,Taxation and Finance +544920,Taxation and Finance,Taxation and Finance +544916,Taxation and Finance,Taxation and Finance +544911,Taxation and Finance,Taxation and Finance +544910,Taxation and Finance,Taxation and Finance +544909,Taxation and Finance,Taxation and Finance +544908,Taxation and Finance,Taxation and Finance +544907,Taxation and Finance,Taxation and Finance +544906,Taxation and Finance,Taxation and Finance +540782,Taxation and Finance,Taxation and Finance +540781,Taxation and Finance,Taxation and Finance +540780,Taxation and Finance,Taxation and Finance +397851,International Trade,International Trade +418761,International Trade,International Trade +151834,International Trade,International Trade +151833,International Trade,International Trade +151827,International Trade,International Trade +149602,International Trade,International Trade +149600,International Trade,International Trade +147462,International Trade,International Trade +147461,International Trade,International Trade +147457,International Trade,International Trade +141081,International Trade,International Trade +252675,International Trade,International Trade +243829,International Trade,International Trade +215453,International Trade,International Trade +215452,International Trade,International Trade +202216,International Trade,International Trade +197052,International Trade,International Trade +197051,International Trade,International Trade +192439,International Trade,International Trade +192429,International Trade,International Trade +192427,International Trade,International Trade +188394,International Trade,International Trade +188388,International Trade,International Trade +182947,International Trade,International Trade +182946,International Trade,International Trade +174841,International Trade,International Trade +158661,International Trade,International Trade +153132,International Trade,International Trade +153129,International Trade,International Trade +147460,International Trade,International Trade +147459,International Trade,International Trade +141082,International Trade,International Trade +192437,International Trade,International Trade +192430,International Trade,International Trade +192422,International Trade,International Trade +188387,International Trade,International Trade +182956,International Trade,International Trade +182948,International Trade,International Trade +174838,International Trade,International Trade +163383,International Trade,International Trade +158665,International Trade,International Trade +158659,International Trade,International Trade +153131,International Trade,International Trade +153130,International Trade,International Trade +151832,International Trade,International Trade +151831,International Trade,International Trade +151829,International Trade,International Trade +151825,International Trade,International Trade +151823,International Trade,International Trade +149601,International Trade,International Trade +272149,International Trade,International Trade +226314,International Trade,International Trade +202213,International Trade,International Trade +397857,International Trade,International Trade +397848,International Trade,International Trade +502269,International Trade,International Trade +431860,International Trade,International Trade +418760,International Trade,International Trade +518758,International Trade,International Trade +510346,International Trade,International Trade +349113,Employment and Training,Employment and Training +344177,Employment and Training,Employment and Training +160695,Employment and Training,Employment and Training +195206,Employment and Training,Employment and Training +189608,Employment and Training,Employment and Training +316134,Employment and Training,Employment and Training +304079,Employment and Training,Employment and Training +251437,Employment and Training,Employment and Training +251413,Employment and Training,Employment and Training +251410,Employment and Training,Employment and Training +251409,Employment and Training,Employment and Training +232150,Employment and Training,Employment and Training +349121,Employment and Training,Employment and Training +349119,Employment and Training,Employment and Training +349117,Employment and Training,Employment and Training +469323,Employment and Training,Employment and Training +469317,Employment and Training,Employment and Training +167109,Employment and Training,Employment and Training +494227,Employment and Training,Employment and Training +486396,Employment and Training,Employment and Training +486394,Employment and Training,Employment and Training +481148,Employment and Training,Employment and Training +481147,Employment and Training,Employment and Training +478653,Employment and Training,Employment and Training +476798,Employment and Training,Employment and Training +476433,Employment and Training,Employment and Training +476432,Employment and Training,Employment and Training +476431,Employment and Training,Employment and Training +473646,Employment and Training,Employment and Training +473618,Employment and Training,Employment and Training +471568,Employment and Training,Employment and Training +471483,Employment and Training,Employment and Training +469586,Employment and Training,Employment and Training +533133,Energy,Energy +531371,Energy,Energy +154909,Energy,Energy +154907,Energy,Energy +154906,Energy,Energy +154903,Energy,Energy +154811,Energy,Energy +154808,Energy,Energy +154807,Energy,Energy +152773,Energy,Energy +144294,Energy,Energy +141435,Energy,Energy +141434,Energy,Energy +173619,Energy,Energy +173618,Energy,Energy +396396,Energy,Energy +393583,Energy,Energy +386960,Energy,Energy +385368,Energy,Energy +384613,Energy,Energy +382250,Energy,Energy +382247,Energy,Energy +380687,Energy,Energy +380685,Energy,Energy +380575,Energy,Energy +357279,Energy,Energy +356031,Energy,Energy +327650,Energy,Energy +324493,Energy,Energy +295689,Energy,Energy +277090,Energy,Energy +276930,Energy,Energy +276929,Energy,Energy +530578,Energy,Energy +530577,Energy,Energy +528686,Energy,Energy +528685,Energy,Energy +528682,Energy,Energy +497442,Energy,Energy +489279,Energy,Energy +477225,Energy,Energy +460520,Energy,Energy +409416,Energy,Energy +409415,Energy,Energy +407651,Energy,Energy +407046,Energy,Energy +407044,Energy,Energy +407042,Energy,Energy +407041,Energy,Energy +407039,Energy,Energy +407038,Energy,Energy +405345,Energy,Energy +405339,Energy,Energy +405329,Energy,Energy +402324,Energy,Energy +402322,Energy,Energy +400214,Energy,Energy +397954,Energy,Energy +397953,Energy,Energy +396400,Energy,Energy +540342,Energy,Energy +476212,Health,Health +474229,Health,Health +167276,Health,Health +160744,Health,Health +160742,Health,Health +160271,Health,Health +160268,Health,Health +158228,Health,Health +398777,Health,Health +327092,Health,Health +224407,Health,Health +214407,Health,Health +214387,Health,Health +214367,Health,Health +212867,Health,Health +211170,Health,Health +326478,Industry,Industry +325731,Industry,Industry +296111,Justice and Law Enforcement,Justice and Law Enforcement +252673,Justice and Law Enforcement,Justice and Law Enforcement +197278,Justice and Law Enforcement,Justice and Law Enforcement +147924,Environment,Environment +163560,Justice and Law Enforcement,Justice and Law Enforcement +163559,Justice and Law Enforcement,Justice and Law Enforcement +163567,Justice and Law Enforcement,Justice and Law Enforcement +163566,Justice and Law Enforcement,Justice and Law Enforcement +163565,Justice and Law Enforcement,Justice and Law Enforcement +163564,Justice and Law Enforcement,Justice and Law Enforcement +163563,Justice and Law Enforcement,Justice and Law Enforcement +163559,Regional Development,Regional Development +145793,Regional Development,Regional Development +163567,Regional Development,Regional Development +163566,Regional Development,Regional Development +163565,Regional Development,Regional Development +163564,Regional Development,Regional Development +163563,Regional Development,Regional Development +163562,Regional Development,Regional Development +163552,Justice and Law Enforcement,Justice and Law Enforcement +163551,Justice and Law Enforcement,Justice and Law Enforcement +163550,Justice and Law Enforcement,Justice and Law Enforcement +163558,Justice and Law Enforcement,Justice and Law Enforcement +163557,Justice and Law Enforcement,Justice and Law Enforcement +163556,Justice and Law Enforcement,Justice and Law Enforcement +163555,Justice and Law Enforcement,Justice and Law Enforcement +163551,Regional Development,Regional Development +163550,Regional Development,Regional Development +145786,Regional Development,Regional Development +163558,Regional Development,Regional Development +163557,Regional Development,Regional Development +163556,Regional Development,Regional Development +163555,Regional Development,Regional Development +163554,Regional Development,Regional Development +163577,Justice and Law Enforcement,Justice and Law Enforcement +163576,Justice and Law Enforcement,Justice and Law Enforcement +163581,Justice and Law Enforcement,Justice and Law Enforcement +163580,Justice and Law Enforcement,Justice and Law Enforcement +163577,Regional Development,Regional Development +163576,Regional Development,Regional Development +163581,Regional Development,Regional Development +163580,Regional Development,Regional Development +163586,Justice and Law Enforcement,Justice and Law Enforcement +163585,Justice and Law Enforcement,Justice and Law Enforcement +163589,Justice and Law Enforcement,Justice and Law Enforcement +163588,Justice and Law Enforcement,Justice and Law Enforcement +163585,Regional Development,Regional Development +163589,Regional Development,Regional Development +163588,Regional Development,Regional Development +163587,Regional Development,Regional Development +429583,Agriculture,Agriculture +429578,Agriculture,Agriculture +308610,Agriculture,Agriculture +308609,Agriculture,Agriculture +308592,Agriculture,Agriculture +401919,Agriculture,Agriculture +401918,Agriculture,Agriculture +401914,Agriculture,Agriculture +505464,Agriculture,Agriculture +505463,Agriculture,Agriculture +491805,Agriculture,Agriculture +467470,Agriculture,Agriculture +467463,Agriculture,Agriculture +454597,Agriculture,Agriculture +454558,Agriculture,Agriculture +454557,Agriculture,Agriculture +379510,Consumer Issues,Consumer Issues +308609,Internal Trade,Internal Trade +308592,Internal Trade,Internal Trade +429581,International Trade,International Trade +429579,International Trade,International Trade +326923,International Trade,International Trade +326921,International Trade,International Trade +326920,International Trade,International Trade +326919,International Trade,International Trade +326918,International Trade,International Trade +308610,International Trade,International Trade +308609,International Trade,International Trade +308592,International Trade,International Trade +276116,International Trade,International Trade +401919,International Trade,International Trade +401918,International Trade,International Trade +401914,International Trade,International Trade +379510,International Trade,International Trade +505464,International Trade,International Trade +505463,International Trade,International Trade +491805,International Trade,International Trade +467470,International Trade,International Trade +467463,International Trade,International Trade +454597,International Trade,International Trade +454558,International Trade,International Trade +454557,International Trade,International Trade +454556,International Trade,International Trade +429583,International Trade,International Trade +146078,Consumer Issues,Questions touchant les consommateurs +175745,Consumer Issues,Questions touchant les consommateurs +160956,Consumer Issues,Questions touchant les consommateurs +159640,Consumer Issues,Questions touchant les consommateurs +159637,Consumer Issues,Questions touchant les consommateurs +159636,Consumer Issues,Questions touchant les consommateurs +159632,Consumer Issues,Questions touchant les consommateurs +157355,Consumer Issues,Questions touchant les consommateurs +156587,Consumer Issues,Questions touchant les consommateurs +156586,Consumer Issues,Questions touchant les consommateurs +156584,Consumer Issues,Questions touchant les consommateurs +156583,Consumer Issues,Questions touchant les consommateurs +156582,Consumer Issues,Questions touchant les consommateurs +156581,Consumer Issues,Questions touchant les consommateurs +150939,Consumer Issues,Questions touchant les consommateurs +300649,Environment,Environment +375708,Intellectual Property,Intellectual Property +374182,Intellectual Property,Intellectual Property +157101,Intellectual Property,Intellectual Property +157099,Intellectual Property,Intellectual Property +157098,Intellectual Property,Intellectual Property +180416,Intellectual Property,Intellectual Property +175498,Intellectual Property,Intellectual Property +163908,Intellectual Property,Intellectual Property +319210,Intellectual Property,Intellectual Property +277415,Intellectual Property,Intellectual Property +200400,Intellectual Property,Intellectual Property +194923,Intellectual Property,Intellectual Property +194922,Intellectual Property,Intellectual Property +352911,Intellectual Property,Intellectual Property +352910,Intellectual Property,Intellectual Property +347023,Intellectual Property,Intellectual Property +335120,Intellectual Property,Intellectual Property +335118,Intellectual Property,Intellectual Property +333569,Intellectual Property,Intellectual Property +330128,Intellectual Property,Intellectual Property +330127,Intellectual Property,Intellectual Property +327648,Intellectual Property,Intellectual Property +324956,Intellectual Property,Intellectual Property +493706,Intellectual Property,Intellectual Property +456030,Intellectual Property,Intellectual Property +441894,Intellectual Property,Intellectual Property +423209,Intellectual Property,Intellectual Property +423208,Intellectual Property,Intellectual Property +423207,Intellectual Property,Intellectual Property +378436,Intellectual Property,Intellectual Property +375711,Intellectual Property,Intellectual Property +296089,Education,Education +462055,Education,Education +158855,Education,Education +151853,Education,Education +147714,Education,Education +145765,Education,Education +145763,Education,Education +143754,Education,Education +290875,Education,Education +286276,Education,Education +286275,Education,Education +286274,Education,Education +277190,Education,Education +273330,Education,Education +273329,Education,Education +268275,Education,Education +264083,Education,Education +258802,Education,Education +258800,Education,Education +258799,Education,Education +240149,Education,Education +233331,Education,Education +233330,Education,Education +229950,Education,Education +223196,Education,Education +213887,Education,Education +202855,Education,Education +202853,Education,Education +189048,Education,Education +185363,Education,Education +177744,Education,Education +175237,Education,Education +165728,Education,Education +163740,Education,Education +161367,Education,Education +161366,Education,Education +161365,Education,Education +453440,Education,Education +419768,Education,Education +419766,Education,Education +414662,Education,Education +414660,Education,Education +409256,Education,Education +408720,Education,Education +408427,Education,Education +407167,Education,Education +400272,Education,Education +398251,Education,Education +397705,Education,Education +395216,Education,Education +394947,Education,Education +384264,Education,Education +378606,Education,Education +378605,Education,Education +376460,Education,Education +373742,Education,Education +365988,Education,Education +358883,Education,Education +358882,Education,Education +354943,Education,Education +354942,Education,Education +349782,Education,Education +348239,Education,Education +336406,Education,Education +326850,Education,Education +321881,Education,Education +310269,Education,Education +359588,Immigration,Immigration +326850,Immigration,Immigration +404057,Immigration,Immigration +348239,International Relations,International Relations +408720,International Relations,International Relations +202855,International Relations,International Relations +414542,Health,Health +410221,Health,Health +155106,Health,Health +329070,Health,Health +398036,Health,Health +398035,Health,Health +190386,Industry,Industry +414542,Industry,Industry +190385,Industry,Industry +190384,Industry,Industry +155106,Industry,Industry +190397,Industry,Industry +190396,Industry,Industry +190395,Industry,Industry +190391,Industry,Industry +190389,Industry,Industry +420769,International Trade,International Trade +394008,Infrastructure,Infrastructure +477510,Infrastructure,Infrastructure +142096,Infrastructure,Infrastructure +142095,Infrastructure,Infrastructure +180451,Infrastructure,Infrastructure +180450,Infrastructure,Infrastructure +180448,Infrastructure,Infrastructure +180447,Infrastructure,Infrastructure +180442,Infrastructure,Infrastructure +180440,Infrastructure,Infrastructure +180439,Infrastructure,Infrastructure +180436,Infrastructure,Infrastructure +180435,Infrastructure,Infrastructure +180433,Infrastructure,Infrastructure +168948,Infrastructure,Infrastructure +168947,Infrastructure,Infrastructure +168946,Infrastructure,Infrastructure +168545,Infrastructure,Infrastructure +168541,Infrastructure,Infrastructure +168540,Infrastructure,Infrastructure +168538,Infrastructure,Infrastructure +168535,Infrastructure,Infrastructure +168531,Infrastructure,Infrastructure +168528,Infrastructure,Infrastructure +168525,Infrastructure,Infrastructure +168522,Infrastructure,Infrastructure +168519,Infrastructure,Infrastructure +168514,Infrastructure,Infrastructure +168512,Infrastructure,Infrastructure +168508,Infrastructure,Infrastructure +168504,Infrastructure,Infrastructure +223463,Infrastructure,Infrastructure +447257,Infrastructure,Infrastructure +444964,Infrastructure,Infrastructure +444963,Infrastructure,Infrastructure +444962,Infrastructure,Infrastructure +400299,Infrastructure,Infrastructure +400298,Infrastructure,Infrastructure +145256,Taxation and Finance,Taxation and Finance +145255,Taxation and Finance,Taxation and Finance +145254,Taxation and Finance,Taxation and Finance +145258,Taxation and Finance,Taxation and Finance +380140,Employment and Training,Employment and Training +373293,Employment and Training,Employment and Training +410825,Employment and Training,Employment and Training +404139,Employment and Training,Employment and Training +404137,Employment and Training,Employment and Training +404136,Employment and Training,Employment and Training +380143,Employment and Training,Employment and Training +380142,Employment and Training,Employment and Training +523373,Environment,Environment +496697,Environment,Environment +434904,Environment,Environment +408523,Environment,Environment +404134,Environment,Environment +397638,Environment,Environment +375893,Environment,Environment +145800,Tourism,Tourism +144875,Fisheries,Fisheries +147854,Fisheries,Fisheries +159326,Consumer Issues,Consumer Issues +472326,Industry,Industry +471001,Industry,Industry +487442,Industry,Industry +487136,Industry,Industry +487109,Industry,Industry +142434,Regional Development,Regional Development +512521,Energy,Energy +512287,Energy,Energy +191712,Energy,Energy +191711,Energy,Energy +191710,Energy,Energy +191709,Energy,Energy +191708,Energy,Energy +191707,Energy,Energy +191706,Energy,Energy +191705,Energy,Energy +191704,Energy,Energy +171182,Energy,Energy +165866,Energy,Energy +153046,Energy,Energy +153044,Energy,Energy +153042,Energy,Energy +153041,Energy,Energy +151922,Energy,Energy +151921,Energy,Energy +249662,Energy,Energy +240364,Energy,Energy +240363,Energy,Energy +240361,Energy,Energy +233090,Energy,Energy +191723,Energy,Energy +191722,Energy,Energy +191721,Energy,Energy +191720,Energy,Energy +191719,Energy,Energy +191718,Energy,Energy +191717,Energy,Energy +191716,Energy,Energy +191715,Energy,Energy +191714,Energy,Energy +385209,Energy,Energy +385208,Energy,Energy +385207,Energy,Energy +383384,Energy,Energy +378235,Energy,Energy +378233,Energy,Energy +371298,Energy,Energy +371296,Energy,Energy +371295,Energy,Energy +371294,Energy,Energy +369249,Energy,Energy +359344,Energy,Energy +359343,Energy,Energy +357180,Energy,Energy +356333,Energy,Energy +353480,Energy,Energy +349105,Energy,Energy +341105,Energy,Energy +341104,Energy,Energy +337338,Energy,Energy +331455,Energy,Energy +329691,Energy,Energy +329690,Energy,Energy +326856,Energy,Energy +323269,Energy,Energy +323110,Energy,Energy +320700,Energy,Energy +319037,Energy,Energy +319029,Energy,Energy +319028,Energy,Energy +319027,Energy,Energy +319026,Energy,Energy +319025,Energy,Energy +319024,Energy,Energy +319023,Energy,Energy +314729,Energy,Energy +313205,Energy,Energy +311309,Energy,Energy +310494,Energy,Energy +302692,Energy,Energy +302691,Energy,Energy +302689,Energy,Energy +509415,Energy,Energy +509414,Energy,Energy +506887,Energy,Energy +506886,Energy,Energy +506881,Energy,Energy +506880,Energy,Energy +506879,Energy,Energy +503835,Energy,Energy +503834,Energy,Energy +503833,Energy,Energy +503832,Energy,Energy +500934,Energy,Energy +500126,Energy,Energy +498037,Energy,Energy +497952,Energy,Energy +497950,Energy,Energy +497949,Energy,Energy +497947,Energy,Energy +497715,Energy,Energy +497714,Energy,Energy +494477,Energy,Energy +494476,Energy,Energy +494475,Energy,Energy +492449,Energy,Energy +489241,Energy,Energy +489236,Energy,Energy +489235,Energy,Energy +489232,Energy,Energy +486788,Energy,Energy +485823,Energy,Energy +485448,Energy,Energy +485447,Energy,Energy +482761,Energy,Energy +481694,Energy,Energy +481117,Energy,Energy +476246,Energy,Energy +476245,Energy,Energy +474287,Energy,Energy +470123,Energy,Energy +469327,Energy,Energy +469326,Energy,Energy +469324,Energy,Energy +469322,Energy,Energy +469321,Energy,Energy +469319,Energy,Energy +469318,Energy,Energy +469316,Energy,Energy +469313,Energy,Energy +469311,Energy,Energy +469310,Energy,Energy +469309,Energy,Energy +469109,Energy,Energy +469108,Energy,Energy +469107,Energy,Energy +469104,Energy,Energy +469103,Energy,Energy +469087,Energy,Energy +469085,Energy,Energy +469030,Energy,Energy +469029,Energy,Energy +469024,Energy,Energy +457903,Energy,Energy +457902,Energy,Energy +457901,Energy,Energy +454936,Energy,Energy +439488,Energy,Energy +439466,Energy,Energy +439465,Energy,Energy +439452,Energy,Energy +439446,Energy,Energy +439445,Energy,Energy +437448,Energy,Energy +437446,Energy,Energy +437445,Energy,Energy +433606,Energy,Energy +428318,Energy,Energy +418172,Energy,Energy +418168,Energy,Energy +418167,Energy,Energy +418166,Energy,Energy +418165,Energy,Energy +416528,Energy,Energy +416525,Energy,Energy +416524,Energy,Energy +416519,Energy,Energy +408844,Energy,Energy +406350,Energy,Energy +389597,Energy,Energy +536921,Energy,Energy +536918,Energy,Energy +536916,Energy,Energy +536913,Energy,Energy +536911,Energy,Energy +536905,Energy,Energy +535365,Energy,Energy +535360,Energy,Energy +535357,Energy,Energy +535355,Energy,Energy +533726,Energy,Energy +533725,Energy,Energy +530627,Energy,Energy +530626,Energy,Energy +530625,Energy,Energy +530624,Energy,Energy +530616,Energy,Energy +530611,Energy,Energy +530182,Energy,Energy +530181,Energy,Energy +530179,Energy,Energy +530052,Energy,Energy +530050,Energy,Energy +525800,Energy,Energy +525797,Energy,Energy +525792,Energy,Energy +525786,Energy,Energy +525774,Energy,Energy +525767,Energy,Energy +525762,Energy,Energy +525708,Energy,Energy +525699,Energy,Energy +522560,Energy,Energy +522325,Energy,Energy +522324,Energy,Energy +522290,Energy,Energy +522288,Energy,Energy +522286,Energy,Energy +522284,Energy,Energy +522277,Energy,Energy +522275,Energy,Energy +522273,Energy,Energy +522270,Energy,Energy +522269,Energy,Energy +522267,Energy,Energy +522262,Energy,Energy +519097,Energy,Energy +517230,Energy,Energy +515488,Energy,Energy +515481,Energy,Energy +514979,Energy,Energy +514966,Energy,Energy +514886,Energy,Energy +522267,Environment,Environment +522262,Environment,Environment +237910,Environment,Environment +234589,Environment,Environment +233090,Environment,Environment +213947,Environment,Environment +210987,Environment,Environment +210968,Environment,Environment +204628,Environment,Environment +171180,Environment,Environment +165866,Environment,Environment +153048,Environment,Environment +153046,Environment,Environment +153044,Environment,Environment +153041,Environment,Environment +151922,Environment,Environment +151921,Environment,Environment +369258,Environment,Environment +366242,Environment,Environment +359344,Environment,Environment +359343,Environment,Environment +341105,Environment,Environment +333034,Environment,Environment +331452,Environment,Environment +323269,Environment,Environment +302692,Environment,Environment +302691,Environment,Environment +515488,Environment,Environment +514886,Environment,Environment +509415,Environment,Environment +500934,Environment,Environment +500126,Environment,Environment +497952,Environment,Environment +497950,Environment,Environment +494477,Environment,Environment +494476,Environment,Environment +492449,Environment,Environment +489241,Environment,Environment +461152,Environment,Environment +457903,Environment,Environment +457902,Environment,Environment +457901,Environment,Environment +439488,Environment,Environment +439466,Environment,Environment +439465,Environment,Environment +439452,Environment,Environment +439446,Environment,Environment +439445,Environment,Environment +437448,Environment,Environment +437446,Environment,Environment +433606,Environment,Environment +428327,Environment,Environment +428325,Environment,Environment +428321,Environment,Environment +416528,Environment,Environment +416524,Environment,Environment +389614,Environment,Environment +383384,Environment,Environment +535360,Environment,Environment +533726,Environment,Environment +525800,Environment,Environment +525797,Environment,Environment +489235,Industry,Industry +486788,Industry,Industry +153044,Industry,Industry +153042,Industry,Industry +153041,Industry,Industry +150389,Industry,Industry +150384,Industry,Industry +191718,Industry,Industry +191717,Industry,Industry +191716,Industry,Industry +191715,Industry,Industry +191714,Industry,Industry +191712,Industry,Industry +191711,Industry,Industry +191710,Industry,Industry +191709,Industry,Industry +191708,Industry,Industry +191707,Industry,Industry +191706,Industry,Industry +191705,Industry,Industry +191704,Industry,Industry +164034,Industry,Industry +162730,Industry,Industry +162729,Industry,Industry +389609,Industry,Industry +343483,Industry,Industry +461152,Industry,Industry +457901,Industry,Industry +536925,Industry,Industry +536921,Industry,Industry +536918,Industry,Industry +536916,Industry,Industry +536913,Industry,Industry +536908,Industry,Industry +536905,Industry,Industry +535365,Industry,Industry +535362,Industry,Industry +535360,Industry,Industry +535357,Industry,Industry +533726,Industry,Industry +533725,Industry,Industry +530627,Industry,Industry +530626,Industry,Industry +530625,Industry,Industry +530624,Industry,Industry +530616,Industry,Industry +530611,Industry,Industry +530182,Industry,Industry +530181,Industry,Industry +530179,Industry,Industry +530052,Industry,Industry +530051,Industry,Industry +530050,Industry,Industry +525800,Industry,Industry +525797,Industry,Industry +525792,Industry,Industry +525767,Industry,Industry +525762,Industry,Industry +525752,Industry,Industry +525708,Industry,Industry +525699,Industry,Industry +525688,Industry,Industry +522560,Industry,Industry +522284,Industry,Industry +522262,Industry,Industry +519097,Industry,Industry +517231,Industry,Industry +517230,Industry,Industry +517227,Industry,Industry +517225,Industry,Industry +517224,Industry,Industry +517222,Industry,Industry +517213,Industry,Industry +515488,Industry,Industry +514966,Industry,Industry +514886,Industry,Industry +513684,Industry,Industry +512521,Industry,Industry +512287,Industry,Industry +509414,Industry,Industry +506887,Industry,Industry +506886,Industry,Industry +506881,Industry,Industry +506880,Industry,Industry +506879,Industry,Industry +503835,Industry,Industry +503834,Industry,Industry +503833,Industry,Industry +503832,Industry,Industry +500934,Industry,Industry +498037,Industry,Industry +497952,Industry,Industry +497950,Industry,Industry +489241,Industry,Industry +530051,Infrastructure,Infrastructure +461152,Infrastructure,Infrastructure +533726,Infrastructure,Infrastructure +173397,Transportation,Transportation +173396,Transportation,Transportation +145667,Transportation,Transportation +145722,Financial Institutions,Financial Institutions +145702,Financial Institutions,Financial Institutions +173844,Financial Institutions,Financial Institutions +163758,Financial Institutions,Financial Institutions +163757,Financial Institutions,Financial Institutions +147554,Financial Institutions,Financial Institutions +147543,Financial Institutions,Financial Institutions +147541,Financial Institutions,Financial Institutions +147540,Financial Institutions,Financial Institutions +147539,Financial Institutions,Financial Institutions +394578,Infrastructure,Infrastructure +394576,Infrastructure,Infrastructure +167619,Infrastructure,Infrastructure +167617,Infrastructure,Infrastructure +167616,Infrastructure,Infrastructure +167615,Infrastructure,Infrastructure +167613,Infrastructure,Infrastructure +160090,Infrastructure,Infrastructure +160089,Infrastructure,Infrastructure +160087,Infrastructure,Infrastructure +160086,Infrastructure,Infrastructure +160085,Infrastructure,Infrastructure +160080,Infrastructure,Infrastructure +153632,Infrastructure,Infrastructure +153631,Infrastructure,Infrastructure +142954,Infrastructure,Infrastructure +390412,Infrastructure,Infrastructure +390408,Infrastructure,Infrastructure +385270,Infrastructure,Infrastructure +379042,Infrastructure,Infrastructure +378779,Infrastructure,Infrastructure +378778,Infrastructure,Infrastructure +378765,Infrastructure,Infrastructure +375041,Infrastructure,Infrastructure +372414,Infrastructure,Infrastructure +357765,Infrastructure,Infrastructure +353937,Infrastructure,Infrastructure +353935,Infrastructure,Infrastructure +353933,Infrastructure,Infrastructure +351277,Infrastructure,Infrastructure +351200,Infrastructure,Infrastructure +351193,Infrastructure,Infrastructure +351186,Infrastructure,Infrastructure +330051,Infrastructure,Infrastructure +330048,Infrastructure,Infrastructure +319675,Infrastructure,Infrastructure +319674,Infrastructure,Infrastructure +535832,Infrastructure,Infrastructure +535828,Infrastructure,Infrastructure +520273,Infrastructure,Infrastructure +520272,Infrastructure,Infrastructure +520269,Infrastructure,Infrastructure +517182,Infrastructure,Infrastructure +493587,Infrastructure,Infrastructure +487981,Infrastructure,Infrastructure +485311,Infrastructure,Infrastructure +480405,Infrastructure,Infrastructure +480393,Infrastructure,Infrastructure +475539,Infrastructure,Infrastructure +473300,Infrastructure,Infrastructure +473297,Infrastructure,Infrastructure +471320,Infrastructure,Infrastructure +457691,Infrastructure,Infrastructure +457690,Infrastructure,Infrastructure +457689,Infrastructure,Infrastructure +457688,Infrastructure,Infrastructure +442759,Infrastructure,Infrastructure +442758,Infrastructure,Infrastructure +439883,Infrastructure,Infrastructure +436097,Infrastructure,Infrastructure +436087,Infrastructure,Infrastructure +436086,Infrastructure,Infrastructure +433773,Infrastructure,Infrastructure +432647,Infrastructure,Infrastructure +432645,Infrastructure,Infrastructure +432641,Infrastructure,Infrastructure +429512,Infrastructure,Infrastructure +429503,Infrastructure,Infrastructure +429501,Infrastructure,Infrastructure +426994,Infrastructure,Infrastructure +422287,Infrastructure,Infrastructure +422252,Infrastructure,Infrastructure +415838,Infrastructure,Infrastructure +414087,Infrastructure,Infrastructure +414086,Infrastructure,Infrastructure +414085,Infrastructure,Infrastructure +410095,Infrastructure,Infrastructure +410094,Infrastructure,Infrastructure +410093,Infrastructure,Infrastructure +410092,Infrastructure,Infrastructure +405311,Infrastructure,Infrastructure +405310,Infrastructure,Infrastructure +404180,Infrastructure,Infrastructure +404177,Infrastructure,Infrastructure +404175,Infrastructure,Infrastructure +404173,Infrastructure,Infrastructure +404168,Infrastructure,Infrastructure +397126,Infrastructure,Infrastructure +397117,Infrastructure,Infrastructure +544163,Justice and Law Enforcement,Justice and Law Enforcement +544162,Justice and Law Enforcement,Justice and Law Enforcement +153098,Justice and Law Enforcement,Justice and Law Enforcement +153097,Justice and Law Enforcement,Justice and Law Enforcement +147938,Justice and Law Enforcement,Justice and Law Enforcement +273608,Justice and Law Enforcement,Justice and Law Enforcement +258142,Justice and Law Enforcement,Justice and Law Enforcement +197036,Justice and Law Enforcement,Justice and Law Enforcement +197034,Justice and Law Enforcement,Justice and Law Enforcement +173612,Justice and Law Enforcement,Justice and Law Enforcement +173611,Justice and Law Enforcement,Justice and Law Enforcement +168734,Justice and Law Enforcement,Justice and Law Enforcement +168701,Justice and Law Enforcement,Justice and Law Enforcement +168596,Justice and Law Enforcement,Justice and Law Enforcement +168438,Justice and Law Enforcement,Justice and Law Enforcement +168407,Justice and Law Enforcement,Justice and Law Enforcement +162383,Justice and Law Enforcement,Justice and Law Enforcement +160077,Justice and Law Enforcement,Justice and Law Enforcement +159887,Justice and Law Enforcement,Justice and Law Enforcement +157252,Justice and Law Enforcement,Justice and Law Enforcement +157246,Justice and Law Enforcement,Justice and Law Enforcement +157244,Justice and Law Enforcement,Justice and Law Enforcement +157242,Justice and Law Enforcement,Justice and Law Enforcement +157232,Justice and Law Enforcement,Justice and Law Enforcement +157217,Justice and Law Enforcement,Justice and Law Enforcement +157205,Justice and Law Enforcement,Justice and Law Enforcement +319850,Justice and Law Enforcement,Justice and Law Enforcement +313813,Justice and Law Enforcement,Justice and Law Enforcement +313049,Justice and Law Enforcement,Justice and Law Enforcement +308869,Justice and Law Enforcement,Justice and Law Enforcement +451790,Justice and Law Enforcement,Justice and Law Enforcement +399526,Justice and Law Enforcement,Justice and Law Enforcement +399525,Justice and Law Enforcement,Justice and Law Enforcement +399521,Justice and Law Enforcement,Justice and Law Enforcement +483392,Government Procurement,Government Procurement +463939,Health,Health +463935,Health,Health +305029,Health,Health +283509,Health,Health +449110,Health,Health +446946,Health,Health +444748,Health,Health +437857,Health,Health +435508,Health,Health +433327,Health,Health +419338,Health,Health +411590,Health,Health +395254,Health,Health +392930,Health,Health +513745,Health,Health +490293,Health,Health +490292,Health,Health +490288,Health,Health +490263,Health,Health +490256,Health,Health +487475,Health,Health +487188,Health,Health +487178,Health,Health +487172,Health,Health +487167,Health,Health +487166,Health,Health +487163,Health,Health +487160,Health,Health +487157,Health,Health +487151,Health,Health +487150,Health,Health +483405,Health,Health +483403,Health,Health +483395,Health,Health +483392,Health,Health +477262,Health,Health +475583,Health,Health +475044,Health,Health +475042,Health,Health +475041,Health,Health +475038,Health,Health +472197,Health,Health +469857,Health,Health +469855,Health,Health +411069,International Trade,International Trade +411068,International Trade,International Trade +411067,International Trade,International Trade +408743,International Trade,International Trade +402155,International Trade,International Trade +400433,International Trade,International Trade +398679,International Trade,International Trade +378020,International Trade,International Trade +378019,International Trade,International Trade +477261,International Trade,International Trade +444389,International Trade,International Trade +443524,International Trade,International Trade +417217,International Trade,International Trade +414585,International Trade,International Trade +414584,International Trade,International Trade +414583,International Trade,International Trade +249170,Financial Institutions,Financial Institutions +249169,Financial Institutions,Financial Institutions +209849,Financial Institutions,Financial Institutions +197027,Financial Institutions,Financial Institutions +170601,Financial Institutions,Financial Institutions +163553,Financial Institutions,Financial Institutions +160940,Financial Institutions,Financial Institutions +160894,Financial Institutions,Financial Institutions +249191,Financial Institutions,Financial Institutions +513202,Health,Health +511012,Health,Health +175170,Health,Health +272357,Health,Health +227772,Health,Health +207112,Health,Health +195705,Health,Health +195704,Health,Health +175284,Health,Health +348145,Health,Health +348142,Health,Health +340096,Health,Health +340095,Health,Health +339255,Health,Health +339241,Health,Health +396116,Health,Health +383083,Health,Health +381871,Health,Health +373496,Health,Health +511011,Health,Health +511008,Health,Health +511003,Health,Health +508846,Health,Health +508844,Health,Health +508842,Health,Health +508841,Health,Health +508839,Health,Health +508836,Health,Health +508834,Health,Health +505499,Health,Health +505497,Health,Health +505493,Health,Health +505490,Health,Health +502717,Health,Health +502711,Health,Health +502695,Health,Health +502691,Health,Health +499474,Health,Health +499471,Health,Health +499466,Health,Health +495387,Health,Health +495382,Health,Health +495380,Health,Health +495376,Health,Health +495369,Health,Health +495365,Health,Health +495361,Health,Health +495356,Health,Health +495349,Health,Health +495345,Health,Health +493708,Health,Health +493705,Health,Health +491734,Health,Health +491732,Health,Health +491728,Health,Health +491714,Health,Health +491712,Health,Health +487821,Health,Health +487813,Health,Health +487809,Health,Health +487807,Health,Health +485106,Health,Health +480165,Health,Health +480164,Health,Health +480163,Health,Health +480161,Health,Health +480160,Health,Health +478301,Health,Health +478299,Health,Health +476082,Health,Health +476081,Health,Health +476072,Health,Health +476065,Health,Health +476056,Health,Health +476047,Health,Health +473780,Health,Health +471224,Health,Health +471211,Health,Health +471201,Health,Health +471199,Health,Health +445476,Health,Health +435531,Health,Health +435529,Health,Health +435516,Health,Health +544299,Health,Health +544298,Health,Health +540248,Health,Health +537997,Health,Health +523269,Health,Health +520219,Health,Health +520214,Health,Health +518308,Health,Health +518281,Health,Health +514808,Health,Health +514806,Health,Health +514247,Health,Health +513212,Health,Health +513211,Health,Health +513210,Health,Health +513209,Health,Health +513206,Health,Health +505501,International Relations,International Relations +505498,International Relations,International Relations +272353,International Relations,International Relations +265670,International Relations,International Relations +265669,International Relations,International Relations +265649,International Relations,International Relations +152163,International Relations,International Relations +363392,International Relations,International Relations +359044,International Relations,International Relations +357741,International Relations,International Relations +351508,International Relations,International Relations +348142,International Relations,International Relations +339241,International Relations,International Relations +339239,International Relations,International Relations +337641,International Relations,International Relations +311870,International Relations,International Relations +299549,International Relations,International Relations +294291,International Relations,International Relations +272360,International Relations,International Relations +272357,International Relations,International Relations +529654,International Relations,International Relations +523270,International Relations,International Relations +508834,International Relations,International Relations +157668,Defence,Defence +167645,Taxation and Finance,Taxation and Finance +143934,Taxation and Finance,Taxation and Finance +148366,Employment and Training,Employment and Training +151537,Justice and Law Enforcement,Justice and Law Enforcement +148597,Agriculture,Agriculture +148597,International Trade,International Trade +148597,Taxation and Finance,Taxation and Finance +148599,Agriculture,Agriculture +148599,International Trade,International Trade +148599,Taxation and Finance,Taxation and Finance +484222,Infrastructure,Infrastructure +479823,Infrastructure,Infrastructure +420093,Infrastructure,Infrastructure +419690,Infrastructure,Infrastructure +417889,Infrastructure,Infrastructure +400621,Infrastructure,Infrastructure +382110,Infrastructure,Infrastructure +148942,Industry,Industry +202214,Education,Education +202212,Education,Education +159500,Education,Education +159499,Education,Education +210430,Education,Education +210429,Education,Education +210428,Education,Education +210427,Education,Education +159499,Employment and Training,Employment and Training +210430,Employment and Training,Employment and Training +210429,Employment and Training,Employment and Training +210428,Employment and Training,Employment and Training +210427,Employment and Training,Employment and Training +202217,Employment and Training,Employment and Training +202214,Employment and Training,Employment and Training +202212,Employment and Training,Employment and Training +428825,Energy,Energy +428820,Energy,Energy +144374,Energy,Energy +222729,Energy,Energy +222728,Energy,Energy +222727,Energy,Energy +196489,Energy,Energy +196488,Energy,Energy +173593,Energy,Energy +173408,Energy,Energy +173407,Energy,Energy +173406,Energy,Energy +173405,Energy,Energy +173404,Energy,Energy +247509,Energy,Energy +246089,Energy,Energy +245889,Energy,Energy +243669,Energy,Energy +443662,Energy,Energy +441410,Energy,Energy +441409,Energy,Energy +441408,Energy,Energy +441406,Energy,Energy +441405,Energy,Energy +441403,Energy,Energy +441402,Energy,Energy +441400,Energy,Energy +441359,Energy,Energy +441358,Energy,Energy +441356,Energy,Energy +435102,Energy,Energy +435099,Energy,Energy +233130,Industry,Industry +220847,Industry,Industry +370420,Industry,Industry +363285,Industry,Industry +334253,Industry,Industry +316471,Industry,Industry +290667,Industry,Industry +278590,Industry,Industry +278589,Industry,Industry +260669,Industry,Industry +259689,Industry,Industry +240680,Industry,Industry +240619,Industry,Industry +240616,Industry,Industry +147971,Health,Health +162295,International Trade,International Trade +159430,International Trade,International Trade +159429,International Trade,International Trade +159428,International Trade,International Trade +217747,International Trade,International Trade +414320,Consumer Issues,Consumer Issues +414319,Consumer Issues,Consumer Issues +145634,Consumer Issues,Consumer Issues +336177,Consumer Issues,Consumer Issues +325976,Consumer Issues,Consumer Issues +325972,Consumer Issues,Consumer Issues +325971,Consumer Issues,Consumer Issues +318927,Consumer Issues,Consumer Issues +312713,Consumer Issues,Consumer Issues +310589,Consumer Issues,Consumer Issues +302011,Consumer Issues,Consumer Issues +295850,Consumer Issues,Consumer Issues +275891,Consumer Issues,Consumer Issues +268452,Consumer Issues,Consumer Issues +230364,Consumer Issues,Consumer Issues +411140,Consumer Issues,Consumer Issues +411137,Consumer Issues,Consumer Issues +408241,Consumer Issues,Consumer Issues +404822,Consumer Issues,Consumer Issues +395391,Consumer Issues,Consumer Issues +382154,Consumer Issues,Consumer Issues +380602,Consumer Issues,Consumer Issues +376034,Consumer Issues,Consumer Issues +370631,Consumer Issues,Consumer Issues +370626,Consumer Issues,Consumer Issues +358089,Consumer Issues,Consumer Issues +358087,Consumer Issues,Consumer Issues +358085,Consumer Issues,Consumer Issues +424345,Consumer Issues,Consumer Issues +424343,Consumer Issues,Consumer Issues +424342,Consumer Issues,Consumer Issues +424341,Consumer Issues,Consumer Issues +424340,Consumer Issues,Consumer Issues +395391,Industry,Industry +382154,Industry,Industry +145634,Industry,Industry +358087,Industry,Industry +358085,Industry,Industry +325976,Industry,Industry +325972,Industry,Industry +275891,Industry,Industry +414319,Industry,Industry +411140,Industry,Industry +411137,Industry,Industry +409255,Industry,Industry +395391,Internal Trade,Internal Trade +459524,Environment,Environment +458142,Environment,Environment +382956,Environment,Environment +419534,Environment,Environment +545211,Environment,Environment +544651,Environment,Environment +543008,Environment,Environment +541291,Environment,Environment +539061,Environment,Environment +536113,Environment,Environment +147594,Health,Health +217747,Health,Health +162295,Health,Health +159430,Health,Health +159429,Health,Health +159429,Industry,Industry +217747,Industry,Industry +159428,Industry,Industry +147594,Industry,Industry +162295,Industry,Industry +217747,Intellectual Property,Intellectual Property +162295,Intellectual Property,Intellectual Property +159430,Intellectual Property,Intellectual Property +159429,Intellectual Property,Intellectual Property +159428,Intellectual Property,Intellectual Property +496306,Immigration,Immigration +451810,Immigration,Immigration +190267,Immigration,Immigration +170656,Immigration,Immigration +164374,Immigration,Immigration +335906,Immigration,Immigration +273603,Immigration,Immigration +385301,Immigration,Immigration +541496,Immigration,Immigration +541489,Immigration,Immigration +528985,Immigration,Immigration +528837,Immigration,Immigration +525521,Immigration,Immigration +525519,Immigration,Immigration +525518,Immigration,Immigration +525515,Immigration,Immigration +496309,Immigration,Immigration +375927,Consumer Issues,Consumer Issues +375925,Consumer Issues,Consumer Issues +312229,Consumer Issues,Consumer Issues +305689,Consumer Issues,Consumer Issues +368469,Consumer Issues,Consumer Issues +339360,Consumer Issues,Consumer Issues +399955,Consumer Issues,Consumer Issues +398810,Consumer Issues,Consumer Issues +396049,Consumer Issues,Consumer Issues +396047,Consumer Issues,Consumer Issues +396046,Consumer Issues,Consumer Issues +396044,Consumer Issues,Consumer Issues +396043,Consumer Issues,Consumer Issues +393315,Consumer Issues,Consumer Issues +393314,Consumer Issues,Consumer Issues +393313,Consumer Issues,Consumer Issues +393312,Consumer Issues,Consumer Issues +393311,Consumer Issues,Consumer Issues +392240,Consumer Issues,Consumer Issues +392239,Consumer Issues,Consumer Issues +392238,Consumer Issues,Consumer Issues +389838,Consumer Issues,Consumer Issues +389836,Consumer Issues,Consumer Issues +389831,Consumer Issues,Consumer Issues +389829,Consumer Issues,Consumer Issues +389828,Consumer Issues,Consumer Issues +389826,Consumer Issues,Consumer Issues +389825,Consumer Issues,Consumer Issues +389823,Consumer Issues,Consumer Issues +386803,Consumer Issues,Consumer Issues +386801,Consumer Issues,Consumer Issues +386800,Consumer Issues,Consumer Issues +384859,Consumer Issues,Consumer Issues +383245,Consumer Issues,Consumer Issues +382078,Consumer Issues,Consumer Issues +382077,Consumer Issues,Consumer Issues +378257,Consumer Issues,Consumer Issues +378255,Consumer Issues,Consumer Issues +375995,Consumer Issues,Consumer Issues +375962,Consumer Issues,Consumer Issues +375958,Consumer Issues,Consumer Issues +375957,Consumer Issues,Consumer Issues +375956,Consumer Issues,Consumer Issues +375955,Consumer Issues,Consumer Issues +375953,Consumer Issues,Consumer Issues +375952,Consumer Issues,Consumer Issues +375950,Consumer Issues,Consumer Issues +375948,Consumer Issues,Consumer Issues +375945,Consumer Issues,Consumer Issues +375939,Consumer Issues,Consumer Issues +375937,Consumer Issues,Consumer Issues +375936,Consumer Issues,Consumer Issues +375933,Consumer Issues,Consumer Issues +375931,Consumer Issues,Consumer Issues +474713,Financial Institutions,Financial Institutions +472437,Financial Institutions,Financial Institutions +275509,Financial Institutions,Financial Institutions +271852,Financial Institutions,Financial Institutions +271850,Financial Institutions,Financial Institutions +252251,Financial Institutions,Financial Institutions +246910,Financial Institutions,Financial Institutions +246891,Financial Institutions,Financial Institutions +234810,Financial Institutions,Financial Institutions +219268,Financial Institutions,Financial Institutions +212437,Financial Institutions,Financial Institutions +211920,Financial Institutions,Financial Institutions +200569,Financial Institutions,Financial Institutions +170935,Financial Institutions,Financial Institutions +160511,Financial Institutions,Financial Institutions +155348,Financial Institutions,Financial Institutions +155126,Financial Institutions,Financial Institutions +375995,Financial Institutions,Financial Institutions +375963,Financial Institutions,Financial Institutions +375962,Financial Institutions,Financial Institutions +375959,Financial Institutions,Financial Institutions +375954,Financial Institutions,Financial Institutions +375947,Financial Institutions,Financial Institutions +375932,Financial Institutions,Financial Institutions +375928,Financial Institutions,Financial Institutions +375922,Financial Institutions,Financial Institutions +375917,Financial Institutions,Financial Institutions +375913,Financial Institutions,Financial Institutions +373805,Financial Institutions,Financial Institutions +373314,Financial Institutions,Financial Institutions +368443,Financial Institutions,Financial Institutions +366085,Financial Institutions,Financial Institutions +364763,Financial Institutions,Financial Institutions +356516,Financial Institutions,Financial Institutions +350563,Financial Institutions,Financial Institutions +344129,Financial Institutions,Financial Institutions +343417,Financial Institutions,Financial Institutions +340696,Financial Institutions,Financial Institutions +340693,Financial Institutions,Financial Institutions +339360,Financial Institutions,Financial Institutions +332529,Financial Institutions,Financial Institutions +326539,Financial Institutions,Financial Institutions +320449,Financial Institutions,Financial Institutions +319729,Financial Institutions,Financial Institutions +318288,Financial Institutions,Financial Institutions +309598,Financial Institutions,Financial Institutions +309597,Financial Institutions,Financial Institutions +305689,Financial Institutions,Financial Institutions +300269,Financial Institutions,Financial Institutions +293929,Financial Institutions,Financial Institutions +292850,Financial Institutions,Financial Institutions +292849,Financial Institutions,Financial Institutions +472436,Financial Institutions,Financial Institutions +470525,Financial Institutions,Financial Institutions +470523,Financial Institutions,Financial Institutions +470521,Financial Institutions,Financial Institutions +470519,Financial Institutions,Financial Institutions +470517,Financial Institutions,Financial Institutions +466435,Financial Institutions,Financial Institutions +462398,Financial Institutions,Financial Institutions +461201,Financial Institutions,Financial Institutions +461200,Financial Institutions,Financial Institutions +142801,Employment and Training,Employment and Training +139335,Other,Competition Policy +139335,Other,Competition Policy +139336,Other,Regulatory Efficiency +139375,Financial Institutions,Financial Institutions +139375,Employment and Training,Employment and Training +139375,Industry,Industry +139375,Small Business,Small Business +414959,Consumer Issues,Consumer Issues +458194,Internal Trade,Internal Trade +157993,Internal Trade,Internal Trade +142294,Education,Education +139694,Regional Development,Regional Development +166284,Consumer Issues,Consumer Issues +209602,Health,Health +227589,Industry,Industry +224527,Internal Trade,Internal Trade +158068,International Trade,International Trade +158860,Justice and Law Enforcement,Justice and Law Enforcement +221487,Small Business,Small Business +166286,Constitutional Issues,Constitutional Issues +153100,Agriculture,Agriculture +504559,Transportation,Transportation +155307,Constitutional Issues,Constitutional Issues +155307,Consumer Issues,Consumer Issues +155307,Financial Institutions,Financial Institutions +155307,Health,Health +155307,Industry,Industry +155307,Internal Trade,Internal Trade +155307,International Trade,International Trade +155307,Small Business,Small Business +165544,Taxation and Finance,Taxation and Finance +341695,International Relations,International Relations +377769,International Trade,International Trade +277317,Mining,Mining +286230,Taxation and Finance,Taxation and Finance +370034,Justice and Law Enforcement,Justice et application des lois +160078,Education,Education +166060,Health,Health +236150,Regional Development,Regional Development +381816,Immigration,Immigration +156067,Taxation and Finance,Taxation and Finance +493680,Industry,Industrie +158770,Health,Health +533506,Health,Health +437844,Health,Health +381504,Defence,Defence +236661,Government Procurement,Government Procurement +141074,Internal Trade,Commerce intérieur +141074,International Relations,Relations internationales +141436,International Relations,International Relations +141436,Tourism,Tourism +141436,Transportation,Transportation +145755,Consumer Issues,Consumer Issues +145755,Health,Health +280950,Defence,Defence +335067,Government Procurement,Government Procurement +151737,International Trade,International Trade +157653,Government Procurement,Government Procurement +145698,Health,Health +437838,International Trade,International Trade +222453,Industry,Industry +145698,Environment,Environment +317852,Agriculture,Agriculture +235369,Environment,Environment +317853,Transportation,Transportation +144634,Agriculture,Agriculture +151439,Environment,Environment +144635,Health,Health +144634,Industry,Industry +144615,Small Business,Small Business +144635,Transportation,Transportation +156189,Industry,Industry +156287,Infrastructure,Infrastructure +400545,Consumer Issues,Consumer Issues +535881,Education,Education +535877,Employment and Training,Employment and Training +193776,Environment,Environment +504144,Health,Health +277021,Industry,Industry +453209,Small Business,Small Business +540779,Taxation and Finance,Taxation and Finance +402057,International Trade,International Trade +147463,International Trade,International Trade +349115,Employment and Training,Employment and Training +251411,Taxation and Finance,Taxation and Finance +469346,Employment and Training,Employment and Training +533487,Energy,Energy +476376,Health,Health +327092,Industry,Industry +146857,Justice and Law Enforcement,Justice and Law Enforcement +153247,Environment,Environment +163562,Justice and Law Enforcement,Justice and Law Enforcement +163560,Regional Development,Regional Development +163554,Justice and Law Enforcement,Justice and Law Enforcement +163552,Regional Development,Regional Development +163578,Justice and Law Enforcement,Justice and Law Enforcement +163578,Regional Development,Regional Development +163587,Justice and Law Enforcement,Justice and Law Enforcement +163586,Regional Development,Regional Development +454556,Agriculture,Agriculture +454556,Consumer Issues,Consumer Issues +379510,Health,Health +308610,Internal Trade,Internal Trade +429582,International Trade,International Trade +148620,Consumer Issues,Questions touchant les consommateurs +300651,Environment,Environment +247869,Taxation and Finance,Taxation and Finance +375709,Intellectual Property,Intellectual Property +310268,Education,Education +373742,Immigration,Immigration +145765,International Relations,International Relations +145765,International Trade,International Trade +444762,Government Procurement,Government Procurement +444762,Health,Health +190387,Industry,Industry +414542,International Trade,International Trade +400281,Infrastructure,Infrastructure +145257,Taxation and Finance,Taxation and Finance +380141,Employment and Training,Employment and Training +375891,Environment,Environment +145801,Tourism,Tourism +142235,Taxation and Finance,Taxation and Finance +144876,Fisheries,Fisheries +145824,Consumer Issues,Consumer Issues +472332,Industry,Industry +233535,Regional Development,Regional Development +513684,Energy,Energy +522269,Environment,Environment +489236,Industry,Industry +533725,Infrastructure,Infrastructure +389601,Internal Trade,Internal Trade +173398,Transportation,Transportation +142514,International Relations,International Relations +142546,Employment and Training,Employment and Training +147538,Financial Institutions,Financial Institutions +397114,Infrastructure,Infrastructure +142957,Financial Institutions,Financial Institutions +143114,International Relations,International Relations +143194,International Relations,International Relations +399520,Justice and Law Enforcement,Justice and Law Enforcement +487166,Government Procurement,Government Procurement +463945,Health,Health +487158,Industry,Industry +143654,Justice and Law Enforcement,Justice and Law Enforcement +400586,Environment,Environment +143716,Industry,Industry +145762,Transportation,Transportation +411070,International Trade,International Trade +249171,Financial Institutions,Financial Institutions +513204,Health,Health +505504,International Relations,International Relations +157669,Defence,Defence +199979,Taxation and Finance,Taxation and Finance +143974,Employment and Training,Employment and Training +148370,Employment and Training,Employment and Training +150364,Justice and Law Enforcement,Justice and Law Enforcement +148598,Agriculture,Agriculture +148598,International Trade,International Trade +148598,Taxation and Finance,Taxation and Finance +148600,Agriculture,Agriculture +148600,International Trade,International Trade +148600,Taxation and Finance,Taxation and Finance +382109,Infrastructure,Infrastructure +145154,Industry,Industry +145154,Infrastructure,Infrastructure +202217,Education,Education +159500,Employment and Training,Employment and Training +430414,Energy,Energy +144534,Defence,Defence +147399,Health,Health +147855,Taxation and Finance,Taxation and Finance +150205,Consumer Issues,Consumer Issues +148202,Health,Health +148956,Government Procurement,Government Procurement +144754,Taxation and Finance,Taxation and Finance +233131,Industry,Industry +145759,Fisheries,Fisheries +147972,Health,Health +147594,International Trade,International Trade +149780,Health,Health +146980,Industry,Industry +414323,Consumer Issues,Consumer Issues +404822,Industry,Industry +325976,Internal Trade,Internal Trade +523811,Environment,Environment +159428,Health,Health +159430,Industry,Industry +147594,Intellectual Property,Intellectual Property +146334,Health,Health +496308,Immigration,Immigration +375930,Consumer Issues,Consumer Issues +489628,Financial Institutions,Financial Institutions +474715,Health,Health +270509,Industry,Industry +326446,Intellectual Property,Intellectual Property +375917,International Trade,International Trade +389823,Justice and Law Enforcement,Justice and Law Enforcement +170464,Defence,Defence +148039,Energy,Energy +148039,Environment,Environment +148038,Regional Development,Regional Development +379687,Constitutional Issues,Constitutional Issues +151438,Energy,Energy +151438,Environment,Environment +145274,International Relations,International Relations +147926,Transportation,Transportation +147923,Transportation,Transportation +148998,Health,Health +148997,Justice and Law Enforcement,Justice and Law Enforcement +149001,Taxation and Finance,Taxation and Finance +496395,Justice and Law Enforcement,Justice and Law Enforcement +384473,International Relations,International Relations +533401,Defence,Defence +163758,Industry,Industry +146193,Employment and Training,Employment and Training +273852,Health,Health +146186,Taxation and Finance,Taxation and Finance +185824,Intellectual Property,Intellectual Property +460393,Financial Institutions,Financial Institutions +456754,Financial Institutions,Financial Institutions +454132,Financial Institutions,Financial Institutions +451179,Financial Institutions,Financial Institutions +451178,Financial Institutions,Financial Institutions +451177,Financial Institutions,Financial Institutions +447131,Financial Institutions,Financial Institutions +444773,Financial Institutions,Financial Institutions +443262,Financial Institutions,Financial Institutions +440975,Financial Institutions,Financial Institutions +437384,Financial Institutions,Financial Institutions +437383,Financial Institutions,Financial Institutions +430090,Financial Institutions,Financial Institutions +427757,Financial Institutions,Financial Institutions +427754,Financial Institutions,Financial Institutions +425693,Financial Institutions,Financial Institutions +425692,Financial Institutions,Financial Institutions +425672,Financial Institutions,Financial Institutions +425671,Financial Institutions,Financial Institutions +425670,Financial Institutions,Financial Institutions +423340,Financial Institutions,Financial Institutions +418845,Financial Institutions,Financial Institutions +418844,Financial Institutions,Financial Institutions +417685,Financial Institutions,Financial Institutions +415169,Financial Institutions,Financial Institutions +411356,Financial Institutions,Financial Institutions +411355,Financial Institutions,Financial Institutions +409067,Financial Institutions,Financial Institutions +407668,Financial Institutions,Financial Institutions +401856,Financial Institutions,Financial Institutions +399956,Financial Institutions,Financial Institutions +399955,Financial Institutions,Financial Institutions +392240,Financial Institutions,Financial Institutions +389835,Financial Institutions,Financial Institutions +389832,Financial Institutions,Financial Institutions +389831,Financial Institutions,Financial Institutions +389829,Financial Institutions,Financial Institutions +389828,Financial Institutions,Financial Institutions +389826,Financial Institutions,Financial Institutions +389825,Financial Institutions,Financial Institutions +386800,Financial Institutions,Financial Institutions +384859,Financial Institutions,Financial Institutions +384858,Financial Institutions,Financial Institutions +383246,Financial Institutions,Financial Institutions +380592,Financial Institutions,Financial Institutions +378254,Financial Institutions,Financial Institutions +543178,Financial Institutions,Financial Institutions +541184,Financial Institutions,Financial Institutions +541183,Financial Institutions,Financial Institutions +537239,Financial Institutions,Financial Institutions +537237,Financial Institutions,Financial Institutions +528781,Financial Institutions,Financial Institutions +528779,Financial Institutions,Financial Institutions +521799,Financial Institutions,Financial Institutions +518939,Financial Institutions,Financial Institutions +517006,Financial Institutions,Financial Institutions +515339,Financial Institutions,Financial Institutions +513712,Financial Institutions,Financial Institutions +510007,Financial Institutions,Financial Institutions +510005,Financial Institutions,Financial Institutions +507513,Financial Institutions,Financial Institutions +507509,Financial Institutions,Financial Institutions +504415,Financial Institutions,Financial Institutions +504414,Financial Institutions,Financial Institutions +504413,Financial Institutions,Financial Institutions +501621,Financial Institutions,Financial Institutions +492899,Financial Institutions,Financial Institutions +489632,Financial Institutions,Financial Institutions +474710,Health,Health +472438,Health,Health +158835,Health,Health +170931,Health,Health +166226,Health,Health +165067,Health,Health +270509,Health,Health +246891,Health,Health +212437,Health,Health +192140,Health,Health +192139,Health,Health +192138,Health,Health +192137,Health,Health +192136,Health,Health +192135,Health,Health +192134,Health,Health +192133,Health,Health +192132,Health,Health +192131,Health,Health +192130,Health,Health +192129,Health,Health +192128,Health,Health +192127,Health,Health +192126,Health,Health +192125,Health,Health +192124,Health,Health +192120,Health,Health +399945,Health,Health +399941,Health,Health +398810,Health,Health +396049,Health,Health +396047,Health,Health +396046,Health,Health +396044,Health,Health +396043,Health,Health +393315,Health,Health +393314,Health,Health +393313,Health,Health +393312,Health,Health +393311,Health,Health +392240,Health,Health +392239,Health,Health +392238,Health,Health +389838,Health,Health +389836,Health,Health +389823,Health,Health +386803,Health,Health +386801,Health,Health +384859,Health,Health +383246,Health,Health +383245,Health,Health +382078,Health,Health +382077,Health,Health +380595,Health,Health +380592,Health,Health +378257,Health,Health +375961,Health,Health +375958,Health,Health +375957,Health,Health +375956,Health,Health +375955,Health,Health +375953,Health,Health +375952,Health,Health +375950,Health,Health +375948,Health,Health +375947,Health,Health +375945,Health,Health +375939,Health,Health +375937,Health,Health +375936,Health,Health +375933,Health,Health +375932,Health,Health +375931,Health,Health +375930,Health,Health +375928,Health,Health +375927,Health,Health +375925,Health,Health +371436,Health,Health +371434,Health,Health +371430,Health,Health +361103,Health,Health +352209,Health,Health +350563,Health,Health +346557,Health,Health +339360,Health,Health +336321,Health,Health +335270,Health,Health +332530,Health,Health +326446,Health,Health +325509,Health,Health +321369,Health,Health +314131,Health,Health +314130,Health,Health +312229,Health,Health +308630,Health,Health +306029,Health,Health +305689,Health,Health +293929,Health,Health +292851,Health,Health +289950,Health,Health +286932,Health,Health +470525,Health,Health +470523,Health,Health +470521,Health,Health +470519,Health,Health +466435,Health,Health +463619,Health,Health +463618,Health,Health +463617,Health,Health +462404,Health,Health +462402,Health,Health +462401,Health,Health +462399,Health,Health +460904,Health,Health +460902,Health,Health +460901,Health,Health +460900,Health,Health +460898,Health,Health +457969,Health,Health +457968,Health,Health +451152,Health,Health +451151,Health,Health +451149,Health,Health +451147,Health,Health +451146,Health,Health +451145,Health,Health +451144,Health,Health +451143,Health,Health +451142,Health,Health +451140,Health,Health +451139,Health,Health +451137,Health,Health +451135,Health,Health +451133,Health,Health +451130,Health,Health +451128,Health,Health +451127,Health,Health +451126,Health,Health +451125,Health,Health +451124,Health,Health +451123,Health,Health +451122,Health,Health +451121,Health,Health +451120,Health,Health +451119,Health,Health +451118,Health,Health +451117,Health,Health +451116,Health,Health +451115,Health,Health +451114,Health,Health +447131,Health,Health +444771,Health,Health +440977,Health,Health +440976,Health,Health +437382,Health,Health +437381,Health,Health +437380,Health,Health +437379,Health,Health +437378,Health,Health +437377,Health,Health +435491,Health,Health +433321,Health,Health +433320,Health,Health +433319,Health,Health +430089,Health,Health +430088,Health,Health +427756,Health,Health +427755,Health,Health +425696,Health,Health +425695,Health,Health +425694,Health,Health +425693,Health,Health +425692,Health,Health +425691,Health,Health +425690,Health,Health +425689,Health,Health +425688,Health,Health +425687,Health,Health +425686,Health,Health +425685,Health,Health +425684,Health,Health +425683,Health,Health +425682,Health,Health +425678,Health,Health +425677,Health,Health +425675,Health,Health +425673,Health,Health +425671,Health,Health +425670,Health,Health +418854,Health,Health +418853,Health,Health +418851,Health,Health +418849,Health,Health +418848,Health,Health +418846,Health,Health +415172,Health,Health +415171,Health,Health +399955,Health,Health +399953,Health,Health +399952,Health,Health +399951,Health,Health +399950,Health,Health +399949,Health,Health +399948,Health,Health +399947,Health,Health +399946,Health,Health +537238,Health,Health +537235,Health,Health +534552,Health,Health +534550,Health,Health +534547,Health,Health +534544,Health,Health +528785,Health,Health +528776,Health,Health +517004,Health,Health +513711,Health,Health +510006,Health,Health +507513,Health,Health +507509,Health,Health +501620,Health,Health +501619,Health,Health +494880,Health,Health +494879,Health,Health +492899,Health,Health +492898,Health,Health +489681,Health,Health +489680,Health,Health +489678,Health,Health +489677,Health,Health +489674,Health,Health +489671,Health,Health +489669,Health,Health +489667,Health,Health +489665,Health,Health +489664,Health,Health +489662,Health,Health +489660,Health,Health +489657,Health,Health +489654,Health,Health +489651,Health,Health +489646,Health,Health +489644,Health,Health +489643,Health,Health +489641,Health,Health +489636,Health,Health +489633,Health,Health +489630,Health,Health +489629,Health,Health +489627,Health,Health +483895,Health,Health +483894,Health,Health +481192,Health,Health +477687,Health,Health +477685,Health,Health +252250,Industry,Industry +165067,Industry,Industry +156154,Industry,Industry +346557,Industry,Industry +344129,Industry,Industry +339360,Industry,Industry +336321,Industry,Industry +335270,Industry,Industry +332673,Industry,Industry +332530,Industry,Industry +326539,Industry,Industry +325509,Industry,Industry +318285,Industry,Industry +318189,Industry,Industry +314509,Industry,Industry +286370,Industry,Industry +275509,Industry,Industry +271852,Industry,Industry +371427,International Trade,International Trade +366087,International Trade,International Trade +156154,International Trade,International Trade +366086,International Trade,International Trade +300369,International Trade,International Trade +293930,International Trade,International Trade +293929,International Trade,International Trade +292852,International Trade,International Trade +286449,International Trade,International Trade +238449,International Trade,International Trade +433319,International Trade,International Trade +404842,International Trade,International Trade +399955,International Trade,International Trade +399954,International Trade,International Trade +399953,International Trade,International Trade +399952,International Trade,International Trade +399950,International Trade,International Trade +399949,International Trade,International Trade +399948,International Trade,International Trade +399947,International Trade,International Trade +399946,International Trade,International Trade +399945,International Trade,International Trade +399941,International Trade,International Trade +399939,International Trade,International Trade +398819,International Trade,International Trade +398812,International Trade,International Trade +393310,International Trade,International Trade +393309,International Trade,International Trade +383246,International Trade,International Trade +378257,International Trade,International Trade +375958,International Trade,International Trade +386803,Justice and Law Enforcement,Justice and Law Enforcement +386801,Justice and Law Enforcement,Justice and Law Enforcement +155348,Justice and Law Enforcement,Justice and Law Enforcement +399955,Justice and Law Enforcement,Justice and Law Enforcement +398810,Justice and Law Enforcement,Justice and Law Enforcement +396049,Justice and Law Enforcement,Justice and Law Enforcement +396047,Justice and Law Enforcement,Justice and Law Enforcement +396046,Justice and Law Enforcement,Justice and Law Enforcement +396044,Justice and Law Enforcement,Justice and Law Enforcement +396043,Justice and Law Enforcement,Justice and Law Enforcement +393315,Justice and Law Enforcement,Justice and Law Enforcement +393314,Justice and Law Enforcement,Justice and Law Enforcement +393313,Justice and Law Enforcement,Justice and Law Enforcement +393312,Justice and Law Enforcement,Justice and Law Enforcement +393311,Justice and Law Enforcement,Justice and Law Enforcement +392240,Justice and Law Enforcement,Justice and Law Enforcement +392239,Justice and Law Enforcement,Justice and Law Enforcement +392238,Justice and Law Enforcement,Justice and Law Enforcement +389838,Justice and Law Enforcement,Justice and Law Enforcement +389836,Justice and Law Enforcement,Justice and Law Enforcement +146895,Defence,Defence +145334,Defence,Defence +170465,Defence,Defence +148038,Energy,Energy +145137,Energy,Energy +148041,Energy,Energy +148040,Energy,Energy +148038,Environment,Environment +145137,Environment,Environment +148041,Environment,Environment +148040,Environment,Environment +148041,Regional Development,Regional Development +148040,Regional Development,Regional Development +160774,International Relations,International Relations +147925,Transportation,Transportation +148996,Justice and Law Enforcement,Justice and Law Enforcement +149000,Taxation and Finance,Taxation and Finance +148999,Taxation and Finance,Taxation and Finance +338682,International Relations,International Relations +433784,International Relations,International Relations +145432,International Relations,International Relations +336007,International Relations,International Relations +335926,International Relations,International Relations +329820,International Relations,International Relations +327548,International Relations,International Relations +240650,International Relations,International Relations +188894,International Relations,International Relations +188892,International Relations,International Relations +396930,International Relations,International Relations +393226,International Relations,International Relations +527565,Defence,Defence +489273,Defence,Defence +145434,Defence,Defence +249750,Defence,Defence +228689,Defence,Defence +217027,Defence,Defence +216967,Defence,Defence +207386,Defence,Defence +202495,Defence,Defence +188894,Defence,Defence +188892,Defence,Defence +188881,Defence,Defence +188880,Defence,Defence +182605,Defence,Defence +182604,Defence,Defence +182504,Defence,Defence +171789,Defence,Defence +365151,Defence,Defence +335918,Defence,Defence +331339,Defence,Defence +327327,Defence,Defence +277445,Defence,Defence +460398,Defence,Defence +436450,Defence,Defence +435804,Defence,Defence +433791,Defence,Defence +433784,Defence,Defence +429498,Defence,Defence +424008,Defence,Defence +422276,Defence,Defence +422077,Defence,Defence +422076,Defence,Defence +422004,Defence,Defence +418682,Defence,Defence +418677,Defence,Defence +417866,Defence,Defence +417861,Defence,Defence +417859,Defence,Defence +417858,Defence,Defence +417839,Defence,Defence +415128,Defence,Defence +413559,Defence,Defence +384484,Defence,Defence +384478,Defence,Defence +541410,Defence,Defence +541408,Defence,Defence +536645,Defence,Defence +163757,Industry,Industry +146190,Employment and Training,Employment and Training +273852,Employment and Training,Employment and Training +261429,Health,Health +390079,Health,Health +146194,Health,Health +146193,Health,Health +146190,Health,Health +146186,Health,Health +146185,Health,Health +169221,Health,Health +158284,Health,Health +158281,Health,Health +158278,Health,Health +158275,Health,Health +158272,Health,Health +158263,Health,Health +158247,Health,Health +158246,Health,Health +336920,Health,Health +336917,Health,Health +327320,Health,Health +327319,Health,Health +323571,Health,Health +280944,Health,Health +280943,Health,Health +280942,Health,Health +280941,Health,Health +280940,Health,Health +280939,Health,Health +280938,Health,Health +280937,Health,Health +280936,Health,Health +280935,Health,Health +280934,Health,Health +280933,Health,Health +280932,Health,Health +273853,Health,Health +146185,Taxation and Finance,Taxation and Finance +146190,Taxation and Finance,Taxation and Finance +175769,Intellectual Property,Intellectual Property +162137,Intellectual Property,Intellectual Property +156929,Intellectual Property,Intellectual Property +156928,Intellectual Property,Intellectual Property +156927,Intellectual Property,Intellectual Property +154935,Intellectual Property,Intellectual Property +154932,Intellectual Property,Intellectual Property +195064,Intellectual Property,Intellectual Property +195062,Intellectual Property,Intellectual Property +189769,Intellectual Property,Intellectual Property +185848,Intellectual Property,Intellectual Property +185845,Intellectual Property,Intellectual Property +468595,Environment,Environment +465177,Environment,Environment +147458,Environment,Environment +145582,Environment,Environment +272109,Environment,Environment +266870,Environment,Environment +266869,Environment,Environment +256297,Environment,Environment +256295,Environment,Environment +256294,Environment,Environment +235996,Environment,Environment +202209,Environment,Environment +202208,Environment,Environment +395327,Environment,Environment +395326,Environment,Environment +395325,Environment,Environment +395324,Environment,Environment +395322,Environment,Environment +393278,Environment,Environment +518768,Environment,Environment +518032,Environment,Environment +517669,Environment,Environment +517637,Environment,Environment +517627,Environment,Environment +517624,Environment,Environment +512799,Environment,Environment +499320,Environment,Environment +495947,Environment,Environment +493379,Environment,Environment +485139,Environment,Environment +485124,Environment,Environment +485104,Environment,Environment +478263,Environment,Environment +468597,Environment,Environment +469931,Employment and Training,Employment and Training +469925,Employment and Training,Employment and Training +175168,Employment and Training,Employment and Training +318937,Employment and Training,Employment and Training +318934,Employment and Training,Employment and Training +302014,Employment and Training,Employment and Training +302013,Employment and Training,Employment and Training +210129,Employment and Training,Employment and Training +429024,Employment and Training,Employment and Training +426180,Employment and Training,Employment and Training +426179,Employment and Training,Employment and Training +411143,Employment and Training,Employment and Training +404055,Employment and Training,Employment and Training +404054,Employment and Training,Employment and Training +404053,Employment and Training,Employment and Training +401568,Employment and Training,Employment and Training +401567,Employment and Training,Employment and Training +401566,Employment and Training,Employment and Training +401566,Energy,Energy +387256,Energy,Energy +426179,Energy,Energy +426177,Energy,Energy +404055,Energy,Energy +401568,Energy,Energy +426179,Environment,Environment +426177,Environment,Environment +411143,Environment,Environment +404055,Environment,Environment +401568,Environment,Environment +401567,Environment,Environment +401566,Environment,Environment +387256,Environment,Environment +363348,Environment,Environment +318935,Environment,Environment +518108,Environment,Environment +515482,Environment,Environment +429024,Environment,Environment +401566,Internal Trade,Internal Trade +387256,Internal Trade,Internal Trade +469931,Internal Trade,Internal Trade +401568,Internal Trade,Internal Trade +518108,International Relations,International Relations +469931,International Relations,International Relations +156776,International Relations,International Relations +156774,International Relations,International Relations +150078,International Relations,International Relations +150077,International Relations,International Relations +363348,International Relations,International Relations +210128,International Relations,International Relations +411143,International Relations,International Relations +401568,International Relations,International Relations +401567,International Relations,International Relations +401566,International Relations,International Relations +387256,Labour,Labour +426177,Labour,Labour +221968,Labour,Labour +318935,Labour,Labour +404055,Labour,Labour +404054,Labour,Labour +404053,Labour,Labour +401568,Labour,Labour +401567,Labour,Labour +401567,Mining,Mining +401566,Mining,Mining +150078,Mining,Mining +150077,Mining,Mining +175169,Mining,Mining +175168,Mining,Mining +175166,Mining,Mining +156776,Mining,Mining +156774,Mining,Mining +156773,Mining,Mining +221967,Mining,Mining +210129,Mining,Mining +210128,Mining,Mining +199696,Mining,Mining +191619,Mining,Mining +387256,Mining,Mining +318937,Mining,Mining +318935,Mining,Mining +318934,Mining,Mining +302014,Mining,Mining +302013,Mining,Mining +515482,Mining,Mining +469925,Mining,Mining +429024,Mining,Mining +426180,Mining,Mining +426179,Mining,Mining +426177,Mining,Mining +411143,Mining,Mining +404055,Mining,Mining +404054,Mining,Mining +404053,Mining,Mining +469931,Taxation and Finance,Taxation and Finance +469925,Taxation and Finance,Taxation and Finance +401568,Taxation and Finance,Taxation and Finance +401567,Taxation and Finance,Taxation and Finance +401566,Taxation and Finance,Taxation and Finance +401566,Transportation,Transportation +387256,Transportation,Transportation +221947,Transportation,Transportation +411143,Transportation,Transportation +401568,Transportation,Transportation +162039,Labour,Labour +145621,Taxation and Finance,Taxation and Finance +152559,Health,Health +169653,Industry,Industry +147801,Industry,Industry +148118,Education,Education +148111,Education,Education +148110,Education,Education +145782,Education,Education +159609,Education,Education +159607,Education,Education +159604,Education,Education +159602,Education,Education +159601,Education,Education +159600,Education,Education +159595,Education,Education +159589,Education,Education +159587,Education,Education +159584,Education,Education +159581,Education,Education +159578,Education,Education +159576,Education,Education +159574,Education,Education +159572,Education,Education +159568,Education,Education +159567,Education,Education +159565,Education,Education +156851,Education,Education +156847,Education,Education +153180,Education,Education +153179,Education,Education +153177,Education,Education +152368,Education,Education +152367,Education,Education +152366,Education,Education +152361,Education,Education +152360,Education,Education +150328,Education,Education +150325,Education,Education +188513,Education,Education +188511,Education,Education +188510,Education,Education +188508,Education,Education +188506,Education,Education +187028,Education,Education +180804,Education,Education +180593,Education,Education +180591,Education,Education +180589,Education,Education +175524,Education,Education +175484,Education,Education +175464,Education,Education +175342,Education,Education +174103,Education,Education +174102,Education,Education +174101,Education,Education +173491,Education,Education +173485,Education,Education +170879,Education,Education +170865,Education,Education +169067,Education,Education +169066,Education,Education +169065,Education,Education +169063,Education,Education +169061,Education,Education +169060,Education,Education +169059,Education,Education +169058,Education,Education +169057,Education,Education +169056,Education,Education +169055,Education,Education +169054,Education,Education +169053,Education,Education +169052,Education,Education +166134,Education,Education +166133,Education,Education +166016,Education,Education +166009,Education,Education +166007,Education,Education +166006,Education,Education +166005,Education,Education +166002,Education,Education +165997,Education,Education +165994,Education,Education +165990,Education,Education +165986,Education,Education +165983,Education,Education +165978,Education,Education +165976,Education,Education +163405,Education,Education +163399,Education,Education +163397,Education,Education +163395,Education,Education +163394,Education,Education +163392,Education,Education +162674,Education,Education +162673,Education,Education +162672,Education,Education +162671,Education,Education +162670,Education,Education +159625,Education,Education +159624,Education,Education +159623,Education,Education +159615,Education,Education +159613,Education,Education +253650,Education,Education +249790,Education,Education +249770,Education,Education +249769,Education,Education +244899,Education,Education +244627,Education,Education +244626,Education,Education +244625,Education,Education +244622,Education,Education +244417,Education,Education +244416,Education,Education +244414,Education,Education +244413,Education,Education +244412,Education,Education +244410,Education,Education +244409,Education,Education +244408,Education,Education +244407,Education,Education +244405,Education,Education +244404,Education,Education +244402,Education,Education +244401,Education,Education +244399,Education,Education +244398,Education,Education +244396,Education,Education +244395,Education,Education +244393,Education,Education +244392,Education,Education +244391,Education,Education +244390,Education,Education +244389,Education,Education +244386,Education,Education +244384,Education,Education +244383,Education,Education +244382,Education,Education +244351,Education,Education +244350,Education,Education +244349,Education,Education +244348,Education,Education +244346,Education,Education +244345,Education,Education +244344,Education,Education +244211,Education,Education +240853,Education,Education +240553,Education,Education +240552,Education,Education +240549,Education,Education +236835,Education,Education +236830,Education,Education +236729,Education,Education +229149,Education,Education +229104,Education,Education +229103,Education,Education +229102,Education,Education +229101,Education,Education +229100,Education,Education +229098,Education,Education +229097,Education,Education +229096,Education,Education +229095,Education,Education +225867,Education,Education +225728,Education,Education +225727,Education,Education +225614,Education,Education +225612,Education,Education +225610,Education,Education +225547,Education,Education +223092,Education,Education +222751,Education,Education +222750,Education,Education +222749,Education,Education +222748,Education,Education +222747,Education,Education +221788,Education,Education +221787,Education,Education +216509,Education,Education +216508,Education,Education +216027,Education,Education +211468,Education,Education +211449,Education,Education +211448,Education,Education +210648,Education,Education +210647,Education,Education +210572,Education,Education +210571,Education,Education +210570,Education,Education +210569,Education,Education +210568,Education,Education +210287,Education,Education +210168,Education,Education +210167,Education,Education +207375,Education,Education +207370,Education,Education +207368,Education,Education +207366,Education,Education +207365,Education,Education +207362,Education,Education +207361,Education,Education +207358,Education,Education +207357,Education,Education +207355,Education,Education +207353,Education,Education +206287,Education,Education +205487,Education,Education +205391,Education,Education +205390,Education,Education +205388,Education,Education +205318,Education,Education +205313,Education,Education +205311,Education,Education +205310,Education,Education +205270,Education,Education +205269,Education,Education +205268,Education,Education +205267,Education,Education +205190,Education,Education +205189,Education,Education +205188,Education,Education +202528,Education,Education +201947,Education,Education +201927,Education,Education +199670,Education,Education +198187,Education,Education +197927,Education,Education +197191,Education,Education +197189,Education,Education +197188,Education,Education +193713,Education,Education +193693,Education,Education +193684,Education,Education +193572,Education,Education +189018,Education,Education +189015,Education,Education +189014,Education,Education +189011,Education,Education +382171,Education,Education +382124,Education,Education +382123,Education,Education +380992,Education,Education +380906,Education,Education +380904,Education,Education +380903,Education,Education +380897,Education,Education +380895,Education,Education +378328,Education,Education +378327,Education,Education +378325,Education,Education +378290,Education,Education +378287,Education,Education +378286,Education,Education +378285,Education,Education +378284,Education,Education +378282,Education,Education +378281,Education,Education +378280,Education,Education +378279,Education,Education +378277,Education,Education +378276,Education,Education +378274,Education,Education +378273,Education,Education +378271,Education,Education +376324,Education,Education +376064,Education,Education +376061,Education,Education +376058,Education,Education +376048,Education,Education +376045,Education,Education +376036,Education,Education +376012,Education,Education +374271,Education,Education +374270,Education,Education +370742,Education,Education +370739,Education,Education +370738,Education,Education +370737,Education,Education +370736,Education,Education +370735,Education,Education +370734,Education,Education +370733,Education,Education +370732,Education,Education +370730,Education,Education +368642,Education,Education +368398,Education,Education +368391,Education,Education +368390,Education,Education +368382,Education,Education +368381,Education,Education +368379,Education,Education +368377,Education,Education +368376,Education,Education +368374,Education,Education +366327,Education,Education +366326,Education,Education +366325,Education,Education +366324,Education,Education +366323,Education,Education +366322,Education,Education +364802,Education,Education +364801,Education,Education +364800,Education,Education +363525,Education,Education +363520,Education,Education +363519,Education,Education +363517,Education,Education +363515,Education,Education +363514,Education,Education +363513,Education,Education +363512,Education,Education +361902,Education,Education +361106,Education,Education +359564,Education,Education +359563,Education,Education +359562,Education,Education +359560,Education,Education +359558,Education,Education +359551,Education,Education +359548,Education,Education +359545,Education,Education +357932,Education,Education +357930,Education,Education +357929,Education,Education +357927,Education,Education +357926,Education,Education +357924,Education,Education +357923,Education,Education +355829,Education,Education +355828,Education,Education +355827,Education,Education +355826,Education,Education +353755,Education,Education +353746,Education,Education +353743,Education,Education +353741,Education,Education +353737,Education,Education +351222,Education,Education +351219,Education,Education +351215,Education,Education +351214,Education,Education +351212,Education,Education +351202,Education,Education +350308,Education,Education +350307,Education,Education +350304,Education,Education +350301,Education,Education +348241,Education,Education +348238,Education,Education +348171,Education,Education +348166,Education,Education +347288,Education,Education +347285,Education,Education +347272,Education,Education +344842,Education,Education +343730,Education,Education +343727,Education,Education +343601,Education,Education +343599,Education,Education +343598,Education,Education +343597,Education,Education +343585,Education,Education +343584,Education,Education +343582,Education,Education +343581,Education,Education +343579,Education,Education +340199,Education,Education +340198,Education,Education +340182,Education,Education +340181,Education,Education +340178,Education,Education +340177,Education,Education +340176,Education,Education +340175,Education,Education +338551,Education,Education +338549,Education,Education +338548,Education,Education +338546,Education,Education +338544,Education,Education +338541,Education,Education +338539,Education,Education +334960,Education,Education +334959,Education,Education +334958,Education,Education +334957,Education,Education +333372,Education,Education +333178,Education,Education +333175,Education,Education +333174,Education,Education +333173,Education,Education +333172,Education,Education +333171,Education,Education +331460,Education,Education +331459,Education,Education +331456,Education,Education +329878,Education,Education +329874,Education,Education +326323,Education,Education +326322,Education,Education +326321,Education,Education +326318,Education,Education +326313,Education,Education +323189,Education,Education +322133,Education,Education +321652,Education,Education +321650,Education,Education +321649,Education,Education +321540,Education,Education +321538,Education,Education +321537,Education,Education +321536,Education,Education +321534,Education,Education +321533,Education,Education +321530,Education,Education +318696,Education,Education +318692,Education,Education +318472,Education,Education +315153,Education,Education +315152,Education,Education +315150,Education,Education +315149,Education,Education +313013,Education,Education +313012,Education,Education +312895,Education,Education +312893,Education,Education +309593,Education,Education +309592,Education,Education +309591,Education,Education +309590,Education,Education +309589,Education,Education +301171,Education,Education +301170,Education,Education +301169,Education,Education +301115,Education,Education +301113,Education,Education +300929,Education,Education +300911,Education,Education +300909,Education,Education +295214,Education,Education +295212,Education,Education +295211,Education,Education +295210,Education,Education +295209,Education,Education +289592,Education,Education +289589,Education,Education +288990,Education,Education +288989,Education,Education +288690,Education,Education +288689,Education,Education +284569,Education,Education +284510,Education,Education +284509,Education,Education +284475,Education,Education +284472,Education,Education +284471,Education,Education +284470,Education,Education +284469,Education,Education +279150,Education,Education +279149,Education,Education +279130,Education,Education +279129,Education,Education +279109,Education,Education +278914,Education,Education +278913,Education,Education +278912,Education,Education +278911,Education,Education +278910,Education,Education +275612,Education,Education +275610,Education,Education +275609,Education,Education +273138,Education,Education +272950,Education,Education +267689,Education,Education +267453,Education,Education +267451,Education,Education +263971,Education,Education +263970,Education,Education +263969,Education,Education +263961,Education,Education +263950,Education,Education +258690,Education,Education +258649,Education,Education +258631,Education,Education +258629,Education,Education +258609,Education,Education +253654,Education,Education +253653,Education,Education +483689,Education,Education +483688,Education,Education +483685,Education,Education +483684,Education,Education +483683,Education,Education +483680,Education,Education +483669,Education,Education +481314,Education,Education +481285,Education,Education +481284,Education,Education +481283,Education,Education +481278,Education,Education +481249,Education,Education +481248,Education,Education +481246,Education,Education +481245,Education,Education +481243,Education,Education +481234,Education,Education +479367,Education,Education +479365,Education,Education +479364,Education,Education +479363,Education,Education +479361,Education,Education +479359,Education,Education +477074,Education,Education +477007,Education,Education +477003,Education,Education +476853,Education,Education +476850,Education,Education +476848,Education,Education +476847,Education,Education +476844,Education,Education +476839,Education,Education +476831,Education,Education +476821,Education,Education +475111,Education,Education +475090,Education,Education +475086,Education,Education +475079,Education,Education +475055,Education,Education +475051,Education,Education +475036,Education,Education +475003,Education,Education +472572,Education,Education +472570,Education,Education +472569,Education,Education +472567,Education,Education +470371,Education,Education +470362,Education,Education +470361,Education,Education +470357,Education,Education +470353,Education,Education +470348,Education,Education +470342,Education,Education +470341,Education,Education +470338,Education,Education +470337,Education,Education +470335,Education,Education +467925,Education,Education +467923,Education,Education +467917,Education,Education +467912,Education,Education +467908,Education,Education +467906,Education,Education +467902,Education,Education +467899,Education,Education +467896,Education,Education +467893,Education,Education +467889,Education,Education +467885,Education,Education +467881,Education,Education +467877,Education,Education +467875,Education,Education +467872,Education,Education +467869,Education,Education +467863,Education,Education +467855,Education,Education +467848,Education,Education +467767,Education,Education +467763,Education,Education +467757,Education,Education +467752,Education,Education +467737,Education,Education +467728,Education,Education +467723,Education,Education +467719,Education,Education +464389,Education,Education +464387,Education,Education +464380,Education,Education +461176,Education,Education +461051,Education,Education +461050,Education,Education +460000,Education,Education +459998,Education,Education +459997,Education,Education +459995,Education,Education +459994,Education,Education +459992,Education,Education +459496,Education,Education +459493,Education,Education +459492,Education,Education +458402,Education,Education +458401,Education,Education +458400,Education,Education +458398,Education,Education +456889,Education,Education +456888,Education,Education +456887,Education,Education +456886,Education,Education +456885,Education,Education +456884,Education,Education +456883,Education,Education +456882,Education,Education +454453,Education,Education +454450,Education,Education +454449,Education,Education +454448,Education,Education +454447,Education,Education +454446,Education,Education +454443,Education,Education +454442,Education,Education +454440,Education,Education +451734,Education,Education +451731,Education,Education +451728,Education,Education +451723,Education,Education +451719,Education,Education +451716,Education,Education +451713,Education,Education +451711,Education,Education +451709,Education,Education +449532,Education,Education +449528,Education,Education +449517,Education,Education +449516,Education,Education +449512,Education,Education +448101,Education,Education +447493,Education,Education +447475,Education,Education +447474,Education,Education +447472,Education,Education +447471,Education,Education +447470,Education,Education +447469,Education,Education +447468,Education,Education +447466,Education,Education +447464,Education,Education +447462,Education,Education +447461,Education,Education +444961,Education,Education +444960,Education,Education +444958,Education,Education +444947,Education,Education +444942,Education,Education +444938,Education,Education +444934,Education,Education +444931,Education,Education +443616,Education,Education +443613,Education,Education +443610,Education,Education +443607,Education,Education +443606,Education,Education +443604,Education,Education +443602,Education,Education +443601,Education,Education +443596,Education,Education +443592,Education,Education +441317,Education,Education +441316,Education,Education +441315,Education,Education +441304,Education,Education +441303,Education,Education +441301,Education,Education +441299,Education,Education +441298,Education,Education +441296,Education,Education +441294,Education,Education +441291,Education,Education +441288,Education,Education +441286,Education,Education +441283,Education,Education +441281,Education,Education +441279,Education,Education +441275,Education,Education +441273,Education,Education +441083,Education,Education +437831,Education,Education +437829,Education,Education +437828,Education,Education +437827,Education,Education +437826,Education,Education +437823,Education,Education +437822,Education,Education +437820,Education,Education +437818,Education,Education +437817,Education,Education +437816,Education,Education +437815,Education,Education +437814,Education,Education +437813,Education,Education +437812,Education,Education +437811,Education,Education +437810,Education,Education +437808,Education,Education +437806,Education,Education +437802,Education,Education +437794,Education,Education +437789,Education,Education +437785,Education,Education +437784,Education,Education +437782,Education,Education +437781,Education,Education +437780,Education,Education +434826,Education,Education +434824,Education,Education +434820,Education,Education +434816,Education,Education +434813,Education,Education +434806,Education,Education +434804,Education,Education +434796,Education,Education +433534,Education,Education +433531,Education,Education +433530,Education,Education +433526,Education,Education +433498,Education,Education +433497,Education,Education +433494,Education,Education +433493,Education,Education +433490,Education,Education +433489,Education,Education +433480,Education,Education +432232,Education,Education +432230,Education,Education +432217,Education,Education +432214,Education,Education +430944,Education,Education +430936,Education,Education +430933,Education,Education +430925,Education,Education +430919,Education,Education +430918,Education,Education +430913,Education,Education +430904,Education,Education +428460,Education,Education +428453,Education,Education +428446,Education,Education +428443,Education,Education +428442,Education,Education +428438,Education,Education +428431,Education,Education +428426,Education,Education +426155,Education,Education +424351,Education,Education +424106,Education,Education +424096,Education,Education +424082,Education,Education +421695,Education,Education +420733,Education,Education +419379,Education,Education +419361,Education,Education +419356,Education,Education +418488,Education,Education +418071,Education,Education +418051,Education,Education +415946,Education,Education +415944,Education,Education +415941,Education,Education +415934,Education,Education +415932,Education,Education +415930,Education,Education +415927,Education,Education +415926,Education,Education +415920,Education,Education +415918,Education,Education +413578,Education,Education +413571,Education,Education +413560,Education,Education +413557,Education,Education +413555,Education,Education +413543,Education,Education +413538,Education,Education +413528,Education,Education +413514,Education,Education +413498,Education,Education +413494,Education,Education +413490,Education,Education +413487,Education,Education +413484,Education,Education +413482,Education,Education +413476,Education,Education +413467,Education,Education +413461,Education,Education +413211,Education,Education +413205,Education,Education +413183,Education,Education +413175,Education,Education +413170,Education,Education +413127,Education,Education +409844,Education,Education +409804,Education,Education +409799,Education,Education +409797,Education,Education +409795,Education,Education +409793,Education,Education +409783,Education,Education +409773,Education,Education +409769,Education,Education +409738,Education,Education +409736,Education,Education +407836,Education,Education +406865,Education,Education +406850,Education,Education +406849,Education,Education +406848,Education,Education +406847,Education,Education +405201,Education,Education +405198,Education,Education +405197,Education,Education +405196,Education,Education +405194,Education,Education +405193,Education,Education +405191,Education,Education +405190,Education,Education +405188,Education,Education +405186,Education,Education +405185,Education,Education +405184,Education,Education +405182,Education,Education +405181,Education,Education +403828,Education,Education +403827,Education,Education +403826,Education,Education +403817,Education,Education +403802,Education,Education +403797,Education,Education +400843,Education,Education +398590,Education,Education +398586,Education,Education +398581,Education,Education +396906,Education,Education +396903,Education,Education +396751,Education,Education +396605,Education,Education +393913,Education,Education +393911,Education,Education +393910,Education,Education +393908,Education,Education +392421,Education,Education +392420,Education,Education +392418,Education,Education +392417,Education,Education +392416,Education,Education +392412,Education,Education +390097,Education,Education +390093,Education,Education +390092,Education,Education +390090,Education,Education +390088,Education,Education +390086,Education,Education +390084,Education,Education +390082,Education,Education +390081,Education,Education +389316,Education,Education +387616,Education,Education +387615,Education,Education +387612,Education,Education +387608,Education,Education +387605,Education,Education +387602,Education,Education +387596,Education,Education +387594,Education,Education +387593,Education,Education +387592,Education,Education +387591,Education,Education +387588,Education,Education +387586,Education,Education +387321,Education,Education +387320,Education,Education +387318,Education,Education +387317,Education,Education +387315,Education,Education +385102,Education,Education +385098,Education,Education +385096,Education,Education +385094,Education,Education +385093,Education,Education +385092,Education,Education +385086,Education,Education +385083,Education,Education +385077,Education,Education +385072,Education,Education +385070,Education,Education +385067,Education,Education +385065,Education,Education +383350,Education,Education +383349,Education,Education +383348,Education,Education +383345,Education,Education +383343,Education,Education +383342,Education,Education +383341,Education,Education +383340,Education,Education +383339,Education,Education +543616,Education,Education +541089,Education,Education +541085,Education,Education +539675,Education,Education +537139,Education,Education +533756,Education,Education +531362,Education,Education +531359,Education,Education +531357,Education,Education +531356,Education,Education +528495,Education,Education +528491,Education,Education +528484,Education,Education +528455,Education,Education +528448,Education,Education +524892,Education,Education +524888,Education,Education +524874,Education,Education +524868,Education,Education +521864,Education,Education +521858,Education,Education +521855,Education,Education +521847,Education,Education +521842,Education,Education +521840,Education,Education +521837,Education,Education +521826,Education,Education +521825,Education,Education +521823,Education,Education +521822,Education,Education +519304,Education,Education +519303,Education,Education +519299,Education,Education +519298,Education,Education +519297,Education,Education +519296,Education,Education +519294,Education,Education +517205,Education,Education +517203,Education,Education +517202,Education,Education +517201,Education,Education +517200,Education,Education +517191,Education,Education +517188,Education,Education +517165,Education,Education +515480,Education,Education +515477,Education,Education +515471,Education,Education +515447,Education,Education +515438,Education,Education +514459,Education,Education +514453,Education,Education +514452,Education,Education +513920,Education,Education +512655,Education,Education +512645,Education,Education +512643,Education,Education +512615,Education,Education +512610,Education,Education +510291,Education,Education +510280,Education,Education +510275,Education,Education +510265,Education,Education +510262,Education,Education +510261,Education,Education +507186,Education,Education +507180,Education,Education +504318,Education,Education +504308,Education,Education +504296,Education,Education +504290,Education,Education +501487,Education,Education +501476,Education,Education +501471,Education,Education +501466,Education,Education +501454,Education,Education +501447,Education,Education +501446,Education,Education +501435,Education,Education +498256,Education,Education +498079,Education,Education +498064,Education,Education +498061,Education,Education +498055,Education,Education +498053,Education,Education +494910,Education,Education +494909,Education,Education +494907,Education,Education +494906,Education,Education +492749,Education,Education +492745,Education,Education +492744,Education,Education +492740,Education,Education +492737,Education,Education +492735,Education,Education +492732,Education,Education +492731,Education,Education +492730,Education,Education +489522,Education,Education +489469,Education,Education +489462,Education,Education +489459,Education,Education +486848,Education,Education +486844,Education,Education +486835,Education,Education +486831,Education,Education +486819,Education,Education +486784,Education,Education +486782,Education,Education +486780,Education,Education +483710,Education,Education +483709,Education,Education +483694,Education,Education +483692,Education,Education +483691,Education,Education +483690,Education,Education +447472,Intellectual Property,Intellectual Property +447466,Intellectual Property,Intellectual Property +148111,Intellectual Property,Intellectual Property +169061,Intellectual Property,Intellectual Property +166134,Intellectual Property,Intellectual Property +159607,Intellectual Property,Intellectual Property +159600,Intellectual Property,Intellectual Property +159595,Intellectual Property,Intellectual Property +159567,Intellectual Property,Intellectual Property +154869,Intellectual Property,Intellectual Property +383348,Intellectual Property,Intellectual Property +355828,Intellectual Property,Intellectual Property +441299,Intellectual Property,Intellectual Property +437812,Intellectual Property,Intellectual Property +437806,Intellectual Property,Intellectual Property +437783,Intellectual Property,Intellectual Property +434824,Intellectual Property,Intellectual Property +434822,Intellectual Property,Intellectual Property +434791,Intellectual Property,Intellectual Property +432229,Intellectual Property,Intellectual Property +430949,Intellectual Property,Intellectual Property +430936,Intellectual Property,Intellectual Property +430918,Intellectual Property,Intellectual Property +428467,Intellectual Property,Intellectual Property +428439,Intellectual Property,Intellectual Property +428434,Intellectual Property,Intellectual Property +428432,Intellectual Property,Intellectual Property +426160,Intellectual Property,Intellectual Property +426154,Intellectual Property,Intellectual Property +424125,Intellectual Property,Intellectual Property +424122,Intellectual Property,Intellectual Property +424112,Intellectual Property,Intellectual Property +424105,Intellectual Property,Intellectual Property +421705,Intellectual Property,Intellectual Property +421700,Intellectual Property,Intellectual Property +421698,Intellectual Property,Intellectual Property +421696,Intellectual Property,Intellectual Property +420733,Intellectual Property,Intellectual Property +419383,Intellectual Property,Intellectual Property +418059,Intellectual Property,Intellectual Property +418056,Intellectual Property,Intellectual Property +418045,Intellectual Property,Intellectual Property +413571,Intellectual Property,Intellectual Property +413183,Intellectual Property,Intellectual Property +407832,Intellectual Property,Intellectual Property +405193,Intellectual Property,Intellectual Property +405192,Intellectual Property,Intellectual Property +405188,Intellectual Property,Intellectual Property +405186,Intellectual Property,Intellectual Property +405185,Intellectual Property,Intellectual Property +405181,Intellectual Property,Intellectual Property +403826,Intellectual Property,Intellectual Property +403822,Intellectual Property,Intellectual Property +403821,Intellectual Property,Intellectual Property +403818,Intellectual Property,Intellectual Property +403817,Intellectual Property,Intellectual Property +398581,Intellectual Property,Intellectual Property +396906,Intellectual Property,Intellectual Property +396903,Intellectual Property,Intellectual Property +396751,Intellectual Property,Intellectual Property +396575,Intellectual Property,Intellectual Property +396569,Intellectual Property,Intellectual Property +393913,Intellectual Property,Intellectual Property +393910,Intellectual Property,Intellectual Property +392420,Intellectual Property,Intellectual Property +392419,Intellectual Property,Intellectual Property +392418,Intellectual Property,Intellectual Property +392416,Intellectual Property,Intellectual Property +390097,Intellectual Property,Intellectual Property +390093,Intellectual Property,Intellectual Property +390090,Intellectual Property,Intellectual Property +390088,Intellectual Property,Intellectual Property +390086,Intellectual Property,Intellectual Property +390082,Intellectual Property,Intellectual Property +385093,Intellectual Property,Intellectual Property +543618,Intellectual Property,Intellectual Property +541082,Intellectual Property,Intellectual Property +533759,Intellectual Property,Intellectual Property +531358,Intellectual Property,Intellectual Property +531355,Intellectual Property,Intellectual Property +528465,Intellectual Property,Intellectual Property +524874,Intellectual Property,Intellectual Property +507196,Intellectual Property,Intellectual Property +458404,Intellectual Property,Intellectual Property +458400,Intellectual Property,Intellectual Property +458399,Intellectual Property,Intellectual Property +456886,Intellectual Property,Intellectual Property +454449,Intellectual Property,Intellectual Property +147753,Health,Health +147751,Health,Health +147782,Industry,Industry +146574,Industry,Industry +165858,Industry,Industry +147788,Industry,Industry +147786,Industry,Industry +147785,Industry,Industry +147784,Industry,Industry +149517,Justice and Law Enforcement,Justice and Law Enforcement +149519,Transportation,Transportation +149516,Transportation,Transportation +433810,International Trade,International Trade +430964,International Trade,International Trade +253149,International Trade,International Trade +226647,International Trade,International Trade +412624,International Trade,International Trade +412620,International Trade,International Trade +412612,International Trade,International Trade +409392,International Trade,International Trade +409388,International Trade,International Trade +407466,International Trade,International Trade +405469,International Trade,International Trade +394403,International Trade,International Trade +394402,International Trade,International Trade +394397,International Trade,International Trade +394364,International Trade,International Trade +455209,International Trade,International Trade +442529,International Trade,International Trade +439143,Regional Development,Regional Development +438848,Regional Development,Regional Development +145989,Regional Development,Regional Development +396927,Regional Development,Regional Development +396924,Regional Development,Regional Development +348425,Regional Development,Regional Development +542780,Regional Development,Regional Development +542777,Regional Development,Regional Development +542773,Regional Development,Regional Development +542772,Regional Development,Regional Development +539497,Regional Development,Regional Development +532182,Regional Development,Regional Development +532181,Regional Development,Regional Development +525808,Regional Development,Regional Development +518160,Regional Development,Regional Development +518134,Regional Development,Regional Development +506844,Regional Development,Regional Development +503606,Regional Development,Regional Development +500427,Regional Development,Regional Development +497425,Regional Development,Regional Development +497151,Regional Development,Regional Development +497150,Regional Development,Regional Development +494763,Regional Development,Regional Development +494761,Regional Development,Regional Development +467204,Regional Development,Regional Development +463810,Regional Development,Regional Development +147989,Transportation,Transportation +169629,Transportation,Transportation +156790,Transportation,Transportation +156788,Transportation,Transportation +156787,Transportation,Transportation +156786,Transportation,Transportation +156785,Transportation,Transportation +154674,Transportation,Transportation +468250,Consumer Issues,Consumer Issues +464046,Consumer Issues,Consumer Issues +146135,Consumer Issues,Consumer Issues +164177,Consumer Issues,Consumer Issues +230448,Consumer Issues,Consumer Issues +223930,Consumer Issues,Consumer Issues +218267,Consumer Issues,Consumer Issues +382224,Consumer Issues,Consumer Issues +372120,Consumer Issues,Consumer Issues +338429,Consumer Issues,Consumer Issues +335986,Consumer Issues,Consumer Issues +325019,Consumer Issues,Consumer Issues +296736,Consumer Issues,Consumer Issues +273597,Consumer Issues,Consumer Issues +273594,Consumer Issues,Consumer Issues +270089,Consumer Issues,Consumer Issues +517236,Consumer Issues,Consumer Issues +470732,Consumer Issues,Consumer Issues +464045,Consumer Issues,Consumer Issues +464043,Consumer Issues,Consumer Issues +168960,Consumer Issues,Consumer Issues +168957,Consumer Issues,Consumer Issues +168952,Consumer Issues,Consumer Issues +146136,Consumer Issues,Consumer Issues +385415,Consumer Issues,Consumer Issues +385410,Consumer Issues,Consumer Issues +358152,Consumer Issues,Consumer Issues +313139,Consumer Issues,Consumer Issues +273612,Consumer Issues,Consumer Issues +273592,Consumer Issues,Consumer Issues +270090,Consumer Issues,Consumer Issues +254498,Consumer Issues,Consumer Issues +244930,Consumer Issues,Consumer Issues +227225,Consumer Issues,Consumer Issues +223929,Consumer Issues,Consumer Issues +212560,Consumer Issues,Consumer Issues +529149,Consumer Issues,Consumer Issues +515624,Consumer Issues,Consumer Issues +515622,Consumer Issues,Consumer Issues +498758,Consumer Issues,Consumer Issues +493176,Consumer Issues,Consumer Issues +468249,Consumer Issues,Consumer Issues +263449,Mining,Mining +263436,Mining,Mining +146979,Mining,Mining +146978,Mining,Mining +146819,Mining,Mining +146818,Mining,Mining +146817,Mining,Mining +146816,Mining,Mining +146815,Mining,Mining +146814,Mining,Mining +146795,Mining,Mining +335585,Mining,Mining +436970,Research and Development,Research and Development (R&D) +434058,Research and Development,Research and Development (R&D) +249751,Research and Development,Research and Development (R&D) +192979,Research and Development,Research and Development (R&D) +188527,Research and Development,Research and Development (R&D) +188525,Research and Development,Research and Development (R&D) +381791,Research and Development,Research and Development (R&D) +380261,Research and Development,Research and Development (R&D) +380260,Research and Development,Research and Development (R&D) +380259,Research and Development,Research and Development (R&D) +380255,Research and Development,Research and Development (R&D) +380254,Research and Development,Research and Development (R&D) +380253,Research and Development,Research and Development (R&D) +450528,Research and Development,Research and Development (R&D) +146816,International Trade,International Trade +384315,International Trade,International Trade +146815,International Trade,International Trade +146814,International Trade,International Trade +146795,International Trade,International Trade +335585,International Trade,International Trade +263450,International Trade,International Trade +263449,International Trade,International Trade +263436,International Trade,International Trade +146979,International Trade,International Trade +146978,International Trade,International Trade +146819,International Trade,International Trade +146818,International Trade,International Trade +541888,Privacy and Access to Information,Privacy and Access to Information +540251,Privacy and Access to Information,Privacy and Access to Information +211747,Privacy and Access to Information,Privacy and Access to Information +206810,Privacy and Access to Information,Privacy and Access to Information +198127,Privacy and Access to Information,Privacy and Access to Information +198107,Privacy and Access to Information,Privacy and Access to Information +198087,Privacy and Access to Information,Privacy and Access to Information +193229,Privacy and Access to Information,Privacy and Access to Information +193228,Privacy and Access to Information,Privacy and Access to Information +170307,Privacy and Access to Information,Privacy and Access to Information +170306,Privacy and Access to Information,Privacy and Access to Information +170305,Privacy and Access to Information,Privacy and Access to Information +153119,Privacy and Access to Information,Privacy and Access to Information +353963,Privacy and Access to Information,Privacy and Access to Information +346758,Privacy and Access to Information,Privacy and Access to Information +346757,Privacy and Access to Information,Privacy and Access to Information +340790,Privacy and Access to Information,Privacy and Access to Information +340789,Privacy and Access to Information,Privacy and Access to Information +338341,Privacy and Access to Information,Privacy and Access to Information +335569,Privacy and Access to Information,Privacy and Access to Information +335555,Privacy and Access to Information,Privacy and Access to Information +324771,Privacy and Access to Information,Privacy and Access to Information +295975,Privacy and Access to Information,Privacy and Access to Information +270690,Privacy and Access to Information,Privacy and Access to Information +270689,Privacy and Access to Information,Privacy and Access to Information +253458,Privacy and Access to Information,Privacy and Access to Information +253457,Privacy and Access to Information,Privacy and Access to Information +235790,Privacy and Access to Information,Privacy and Access to Information +235789,Privacy and Access to Information,Privacy and Access to Information +233292,Privacy and Access to Information,Privacy and Access to Information +233291,Privacy and Access to Information,Privacy and Access to Information +230127,Privacy and Access to Information,Privacy and Access to Information +226248,Privacy and Access to Information,Privacy and Access to Information +223354,Privacy and Access to Information,Privacy and Access to Information +223353,Privacy and Access to Information,Privacy and Access to Information +223352,Privacy and Access to Information,Privacy and Access to Information +211750,Privacy and Access to Information,Privacy and Access to Information +211749,Privacy and Access to Information,Privacy and Access to Information +211748,Privacy and Access to Information,Privacy and Access to Information +394289,Privacy and Access to Information,Privacy and Access to Information +381220,Privacy and Access to Information,Privacy and Access to Information +381218,Privacy and Access to Information,Privacy and Access to Information +377088,Privacy and Access to Information,Privacy and Access to Information +364862,Privacy and Access to Information,Privacy and Access to Information +362563,Privacy and Access to Information,Privacy and Access to Information +362066,Privacy and Access to Information,Privacy and Access to Information +360042,Privacy and Access to Information,Privacy and Access to Information +534646,Privacy and Access to Information,Privacy and Access to Information +532022,Privacy and Access to Information,Privacy and Access to Information +532021,Privacy and Access to Information,Privacy and Access to Information +532020,Privacy and Access to Information,Privacy and Access to Information +532019,Privacy and Access to Information,Privacy and Access to Information +532018,Privacy and Access to Information,Privacy and Access to Information +529408,Privacy and Access to Information,Privacy and Access to Information +529407,Privacy and Access to Information,Privacy and Access to Information +526859,Privacy and Access to Information,Privacy and Access to Information +517727,Privacy and Access to Information,Privacy and Access to Information +515514,Privacy and Access to Information,Privacy and Access to Information +515513,Privacy and Access to Information,Privacy and Access to Information +511365,Privacy and Access to Information,Privacy and Access to Information +511360,Privacy and Access to Information,Privacy and Access to Information +508264,Privacy and Access to Information,Privacy and Access to Information +508261,Privacy and Access to Information,Privacy and Access to Information +508260,Privacy and Access to Information,Privacy and Access to Information +508257,Privacy and Access to Information,Privacy and Access to Information +508250,Privacy and Access to Information,Privacy and Access to Information +508239,Privacy and Access to Information,Privacy and Access to Information +505374,Privacy and Access to Information,Privacy and Access to Information +498541,Privacy and Access to Information,Privacy and Access to Information +490769,Privacy and Access to Information,Privacy and Access to Information +463933,Privacy and Access to Information,Privacy and Access to Information +456401,Privacy and Access to Information,Privacy and Access to Information +456400,Privacy and Access to Information,Privacy and Access to Information +456399,Privacy and Access to Information,Privacy and Access to Information +432246,Privacy and Access to Information,Privacy and Access to Information +423568,Privacy and Access to Information,Privacy and Access to Information +544140,Privacy and Access to Information,Privacy and Access to Information +310671,Budget,Budget +310670,Budget,Budget +194758,Budget,Budget +165794,Budget,Budget +165792,Budget,Budget +310669,Budget,Budget +276910,Budget,Budget +276909,Budget,Budget +252793,Budget,Budget +252792,Budget,Budget +252791,Budget,Budget +241670,Budget,Budget +227650,Budget,Budget +159614,Constitutional Issues,Constitutional Issues +153411,Constitutional Issues,Constitutional Issues +165792,Constitutional Issues,Constitutional Issues +159621,Constitutional Issues,Constitutional Issues +159620,Constitutional Issues,Constitutional Issues +430758,Financial Institutions,Financial Institutions +429826,Financial Institutions,Financial Institutions +310669,Financial Institutions,Financial Institutions +252793,Financial Institutions,Financial Institutions +227650,Financial Institutions,Financial Institutions +223050,Financial Institutions,Financial Institutions +194758,Financial Institutions,Financial Institutions +404967,Health,Health +404966,Health,Health +156949,Health,Health +156948,Health,Health +276910,Health,Health +276909,Health,Health +241670,Health,Health +185998,Health,Health +185997,Health,Health +446001,Health,Health +446000,Health,Health +445999,Health,Health +430771,Health,Health +430758,Health,Health +429826,Health,Health +429621,Health,Health +159614,Labour,Labour +153411,Labour,Labour +185998,Labour,Labour +165792,Labour,Labour +159621,Labour,Labour +429621,Pensions,Pensions +429619,Pensions,Pensions +159620,Pensions,Pensions +159618,Pensions,Pensions +159617,Pensions,Pensions +159616,Pensions,Pensions +159612,Pensions,Pensions +152092,Pensions,Pensions +150048,Pensions,Pensions +209691,Pensions,Pensions +209690,Pensions,Pensions +209689,Pensions,Pensions +209688,Pensions,Pensions +209687,Pensions,Pensions +194758,Pensions,Pensions +185998,Pensions,Pensions +185997,Pensions,Pensions +175409,Pensions,Pensions +165792,Pensions,Pensions +162510,Pensions,Pensions +162506,Pensions,Pensions +159621,Pensions,Pensions +333794,Pensions,Pensions +333793,Pensions,Pensions +322509,Pensions,Pensions +310672,Pensions,Pensions +310671,Pensions,Pensions +310670,Pensions,Pensions +310669,Pensions,Pensions +276910,Pensions,Pensions +276909,Pensions,Pensions +252793,Pensions,Pensions +241670,Pensions,Pensions +227650,Pensions,Pensions +227649,Pensions,Pensions +420564,Pensions,Pensions +420558,Pensions,Pensions +420557,Pensions,Pensions +420556,Pensions,Pensions +420555,Pensions,Pensions +418487,Pensions,Pensions +415135,Pensions,Pensions +413548,Pensions,Pensions +413436,Pensions,Pensions +413266,Pensions,Pensions +413263,Pensions,Pensions +413257,Pensions,Pensions +413248,Pensions,Pensions +413221,Pensions,Pensions +413166,Pensions,Pensions +413157,Pensions,Pensions +413145,Pensions,Pensions +413050,Pensions,Pensions +412199,Pensions,Pensions +412197,Pensions,Pensions +412195,Pensions,Pensions +412193,Pensions,Pensions +410438,Pensions,Pensions +404968,Pensions,Pensions +404967,Pensions,Pensions +404966,Pensions,Pensions +446001,Pensions,Pensions +446000,Pensions,Pensions +445999,Pensions,Pensions +430771,Pensions,Pensions +430758,Pensions,Pensions +429826,Pensions,Pensions +404967,Taxation and Finance,Taxation and Finance +404966,Taxation and Finance,Taxation and Finance +241670,Taxation and Finance,Taxation and Finance +227650,Taxation and Finance,Taxation and Finance +185998,Taxation and Finance,Taxation and Finance +185997,Taxation and Finance,Taxation and Finance +175409,Taxation and Finance,Taxation and Finance +165794,Taxation and Finance,Taxation and Finance +165792,Taxation and Finance,Taxation and Finance +162510,Taxation and Finance,Taxation and Finance +162506,Taxation and Finance,Taxation and Finance +156949,Taxation and Finance,Taxation and Finance +156948,Taxation and Finance,Taxation and Finance +322509,Taxation and Finance,Taxation and Finance +446001,Taxation and Finance,Taxation and Finance +445999,Taxation and Finance,Taxation and Finance +430771,Taxation and Finance,Taxation and Finance +430758,Taxation and Finance,Taxation and Finance +429826,Taxation and Finance,Taxation and Finance +413436,Taxation and Finance,Taxation and Finance +410438,Taxation and Finance,Taxation and Finance +448091,International Relations,International Relations +448085,International Relations,International Relations +146235,International Relations,International Relations +291170,International Relations,International Relations +287059,International Relations,International Relations +269592,International Relations,International Relations +269588,International Relations,International Relations +258169,International Relations,International Relations +249552,International Relations,International Relations +439204,International Relations,International Relations +439198,International Relations,International Relations +439192,International Relations,International Relations +439177,International Relations,International Relations +435944,International Relations,International Relations +435942,International Relations,International Relations +430811,International Relations,International Relations +429445,International Relations,International Relations +419914,International Relations,International Relations +413246,International Relations,International Relations +412331,International Relations,International Relations +409027,International Relations,International Relations +396075,International Relations,International Relations +396073,International Relations,International Relations +392770,International Relations,International Relations +390834,International Relations,International Relations +390635,International Relations,International Relations +388417,International Relations,International Relations +388409,International Relations,International Relations +385037,International Relations,International Relations +369549,International Relations,International Relations +473530,International Relations,International Relations +473524,International Relations,International Relations +473523,International Relations,International Relations +473522,International Relations,International Relations +473520,International Relations,International Relations +473518,International Relations,International Relations +473516,International Relations,International Relations +473515,International Relations,International Relations +473513,International Relations,International Relations +455821,International Relations,International Relations +161306,Industry,Industry +161304,Industry,Industry +167011,Industry,Industry +167010,Industry,Industry +167009,Industry,Industry +161308,Industry,Industry +167024,Pensions,Pensions +261829,Budget,Budget +382894,Budget,Budget +367629,Budget,Budget +339470,Budget,Budget +339462,Budget,Budget +339461,Budget,Budget +527120,Financial Institutions,Financial Institutions +513564,Financial Institutions,Financial Institutions +176305,Financial Institutions,Financial Institutions +174868,Financial Institutions,Financial Institutions +165085,Financial Institutions,Financial Institutions +163732,Financial Institutions,Financial Institutions +360624,Financial Institutions,Financial Institutions +359185,Financial Institutions,Financial Institutions +348050,Financial Institutions,Financial Institutions +343201,Financial Institutions,Financial Institutions +339470,Financial Institutions,Financial Institutions +339469,Financial Institutions,Financial Institutions +339462,Financial Institutions,Financial Institutions +339461,Financial Institutions,Financial Institutions +334733,Financial Institutions,Financial Institutions +331206,Financial Institutions,Financial Institutions +329413,Financial Institutions,Financial Institutions +321516,Financial Institutions,Financial Institutions +311493,Financial Institutions,Financial Institutions +311492,Financial Institutions,Financial Institutions +311490,Financial Institutions,Financial Institutions +298129,Financial Institutions,Financial Institutions +294789,Financial Institutions,Financial Institutions +288469,Financial Institutions,Financial Institutions +284289,Financial Institutions,Financial Institutions +271169,Financial Institutions,Financial Institutions +261829,Financial Institutions,Financial Institutions +260829,Financial Institutions,Financial Institutions +252470,Financial Institutions,Financial Institutions +252469,Financial Institutions,Financial Institutions +247929,Financial Institutions,Financial Institutions +247909,Financial Institutions,Financial Institutions +234769,Financial Institutions,Financial Institutions +232849,Financial Institutions,Financial Institutions +215947,Financial Institutions,Financial Institutions +211627,Financial Institutions,Financial Institutions +196708,Financial Institutions,Financial Institutions +196707,Financial Institutions,Financial Institutions +192056,Financial Institutions,Financial Institutions +427898,Financial Institutions,Financial Institutions +406869,Financial Institutions,Financial Institutions +382894,Financial Institutions,Financial Institutions +382893,Financial Institutions,Financial Institutions +381810,Financial Institutions,Financial Institutions +375485,Financial Institutions,Financial Institutions +370199,Financial Institutions,Financial Institutions +367629,Financial Institutions,Financial Institutions +466626,Climate,Climate +447447,Economic Development,Economic Development +447445,Economic Development,Economic Development +423755,Economic Development,Economic Development +415682,Economic Development,Economic Development +403512,Economic Development,Economic Development +403510,Economic Development,Economic Development +403509,Economic Development,Economic Development +403504,Economic Development,Economic Development +396743,Economic Development,Economic Development +390674,Economic Development,Economic Development +390657,Economic Development,Economic Development +382229,Economic Development,Economic Development +380649,Economic Development,Economic Development +380645,Economic Development,Economic Development +459519,Economic Development,Economic Development +456121,Economic Development,Economic Development +454579,Economic Development,Economic Development +454495,Economic Development,Economic Development +422172,Regional Development,Regional Development +542788,Research and Development,Research and Development (R&D) +542787,Research and Development,Research and Development (R&D) +235150,Research and Development,Research and Development (R&D) +390674,Research and Development,Research and Development (R&D) +390654,Research and Development,Research and Development (R&D) +387661,Research and Development,Research and Development (R&D) +387649,Research and Development,Research and Development (R&D) +382229,Research and Development,Research and Development (R&D) +380649,Research and Development,Research and Development (R&D) +380645,Research and Development,Research and Development (R&D) +542786,Research and Development,Research and Development (R&D) +542784,Research and Development,Research and Development (R&D) +542783,Research and Development,Research and Development (R&D) +541550,Research and Development,Research and Development (R&D) +539181,Research and Development,Research and Development (R&D) +538973,Research and Development,Research and Development (R&D) +537990,Research and Development,Research and Development (R&D) +536093,Research and Development,Research and Development (R&D) +536092,Research and Development,Research and Development (R&D) +536091,Research and Development,Research and Development (R&D) +536090,Research and Development,Research and Development (R&D) +536089,Research and Development,Research and Development (R&D) +536088,Research and Development,Research and Development (R&D) +536087,Research and Development,Research and Development (R&D) +530549,Research and Development,Research and Development (R&D) +530492,Research and Development,Research and Development (R&D) +519142,Research and Development,Research and Development (R&D) +516128,Research and Development,Research and Development (R&D) +510031,Research and Development,Research and Development (R&D) +504351,Research and Development,Research and Development (R&D) +504164,Research and Development,Research and Development (R&D) +501074,Research and Development,Research and Development (R&D) +492647,Research and Development,Research and Development (R&D) +466944,Research and Development,Research and Development (R&D) +461737,Research and Development,Research and Development (R&D) +458588,Research and Development,Research and Development (R&D) +457109,Research and Development,Research and Development (R&D) +452480,Research and Development,Research and Development (R&D) +452474,Research and Development,Research and Development (R&D) +452472,Research and Development,Research and Development (R&D) +450130,Research and Development,Research and Development (R&D) +450093,Research and Development,Research and Development (R&D) +447447,Research and Development,Research and Development (R&D) +447445,Research and Development,Research and Development (R&D) +447381,Research and Development,Research and Development (R&D) +441844,Research and Development,Research and Development (R&D) +441842,Research and Development,Research and Development (R&D) +441840,Research and Development,Research and Development (R&D) +441836,Research and Development,Research and Development (R&D) +438549,Research and Development,Research and Development (R&D) +435206,Research and Development,Research and Development (R&D) +433434,Research and Development,Research and Development (R&D) +432600,Research and Development,Research and Development (R&D) +428264,Research and Development,Research and Development (R&D) +426085,Research and Development,Research and Development (R&D) +426080,Research and Development,Research and Development (R&D) +426070,Research and Development,Research and Development (R&D) +422170,Research and Development,Research and Development (R&D) +422169,Research and Development,Research and Development (R&D) +413510,Research and Development,Research and Development (R&D) +413507,Research and Development,Research and Development (R&D) +413500,Research and Development,Research and Development (R&D) +413497,Research and Development,Research and Development (R&D) +400781,Research and Development,Research and Development (R&D) +156859,Transportation,Transportation +540509,International Trade,Commerce international +528802,International Trade,Commerce international +176324,International Trade,Commerce international +168136,International Trade,Commerce international +161456,International Trade,Commerce international +146454,International Trade,Commerce international +374700,International Trade,Commerce international +374696,International Trade,Commerce international +373873,International Trade,Commerce international +358348,International Trade,Commerce international +358347,International Trade,Commerce international +330112,International Trade,Commerce international +322253,International Trade,Commerce international +292389,International Trade,Commerce international +288069,International Trade,Commerce international +279670,International Trade,Commerce international +273023,International Trade,Commerce international +266169,International Trade,Commerce international +263829,International Trade,Commerce international +191136,International Trade,Commerce international +188838,International Trade,Commerce international +185372,International Trade,Commerce international +181644,International Trade,Commerce international +480638,International Trade,Commerce international +438967,International Trade,Commerce international +399775,International Trade,Commerce international +399774,International Trade,Commerce international +394633,International Trade,Commerce international +388741,International Trade,Commerce international +386502,International Trade,Commerce international +494042,International Trade,Commerce international +489449,International Trade,Commerce international +224308,International Trade,Commerce international +195884,International Trade,Commerce international +188044,International Trade,Commerce international +187104,International Trade,Commerce international +146455,International Trade,Commerce international +374698,International Trade,Commerce international +373302,International Trade,Commerce international +349928,International Trade,Commerce international +311889,International Trade,Commerce international +292309,International Trade,Commerce international +279671,International Trade,Commerce international +255989,International Trade,Commerce international +236349,International Trade,Commerce international +423620,International Trade,Commerce international +420476,International Trade,Commerce international +420475,International Trade,Commerce international +408515,International Trade,Commerce international +408341,International Trade,Commerce international +408340,International Trade,Commerce international +404321,International Trade,Commerce international +401869,International Trade,Commerce international +398464,International Trade,Commerce international +388740,International Trade,Commerce international +382954,International Trade,Commerce international +382953,International Trade,Commerce international +382804,International Trade,Commerce international +516909,International Trade,Commerce international +467392,Research and Development,Research and Development (R&D) +464270,Research and Development,Research and Development (R&D) +163976,Research and Development,Research and Development (R&D) +163973,Research and Development,Research and Development (R&D) +163971,Research and Development,Research and Development (R&D) +162560,Research and Development,Research and Development (R&D) +162556,Research and Development,Research and Development (R&D) +162554,Research and Development,Research and Development (R&D) +162550,Research and Development,Research and Development (R&D) +162545,Research and Development,Research and Development (R&D) +159811,Research and Development,Research and Development (R&D) +193494,Research and Development,Research and Development (R&D) +193493,Research and Development,Research and Development (R&D) +188734,Research and Development,Research and Development (R&D) +188733,Research and Development,Research and Development (R&D) +188729,Research and Development,Research and Development (R&D) +188724,Research and Development,Research and Development (R&D) +188717,Research and Development,Research and Development (R&D) +188714,Research and Development,Research and Development (R&D) +188712,Research and Development,Research and Development (R&D) +185364,Research and Development,Research and Development (R&D) +185361,Research and Development,Research and Development (R&D) +185360,Research and Development,Research and Development (R&D) +185359,Research and Development,Research and Development (R&D) +185358,Research and Development,Research and Development (R&D) +185357,Research and Development,Research and Development (R&D) +185356,Research and Development,Research and Development (R&D) +185355,Research and Development,Research and Development (R&D) +185352,Research and Development,Research and Development (R&D) +185350,Research and Development,Research and Development (R&D) +185348,Research and Development,Research and Development (R&D) +185345,Research and Development,Research and Development (R&D) +185344,Research and Development,Research and Development (R&D) +176404,Research and Development,Research and Development (R&D) +175030,Research and Development,Research and Development (R&D) +165330,Research and Development,Research and Development (R&D) +165329,Research and Development,Research and Development (R&D) +379915,Research and Development,Research and Development (R&D) +379910,Research and Development,Research and Development (R&D) +376827,Research and Development,Research and Development (R&D) +372668,Research and Development,Research and Development (R&D) +369128,Research and Development,Research and Development (R&D) +365249,Research and Development,Research and Development (R&D) +365245,Research and Development,Research and Development (R&D) +365242,Research and Development,Research and Development (R&D) +363528,Research and Development,Research and Development (R&D) +363527,Research and Development,Research and Development (R&D) +363526,Research and Development,Research and Development (R&D) +358135,Research and Development,Research and Development (R&D) +355991,Research and Development,Research and Development (R&D) +355987,Research and Development,Research and Development (R&D) +353978,Research and Development,Research and Development (R&D) +353977,Research and Development,Research and Development (R&D) +351417,Research and Development,Research and Development (R&D) +349101,Research and Development,Research and Development (R&D) +347158,Research and Development,Research and Development (R&D) +341080,Research and Development,Research and Development (R&D) +341079,Research and Development,Research and Development (R&D) +341077,Research and Development,Research and Development (R&D) +341075,Research and Development,Research and Development (R&D) +330148,Research and Development,Research and Development (R&D) +326908,Research and Development,Research and Development (R&D) +326906,Research and Development,Research and Development (R&D) +326903,Research and Development,Research and Development (R&D) +326900,Research and Development,Research and Development (R&D) +326896,Research and Development,Research and Development (R&D) +326894,Research and Development,Research and Development (R&D) +326893,Research and Development,Research and Development (R&D) +324250,Research and Development,Research and Development (R&D) +324248,Research and Development,Research and Development (R&D) +312815,Research and Development,Research and Development (R&D) +312814,Research and Development,Research and Development (R&D) +263392,Research and Development,Research and Development (R&D) +263391,Research and Development,Research and Development (R&D) +263390,Research and Development,Research and Development (R&D) +263389,Research and Development,Research and Development (R&D) +238030,Research and Development,Research and Development (R&D) +207123,Research and Development,Research and Development (R&D) +207122,Research and Development,Research and Development (R&D) +207121,Research and Development,Research and Development (R&D) +207119,Research and Development,Research and Development (R&D) +207117,Research and Development,Research and Development (R&D) +462393,Research and Development,Research and Development (R&D) +462392,Research and Development,Research and Development (R&D) +462391,Research and Development,Research and Development (R&D) +462389,Research and Development,Research and Development (R&D) +462388,Research and Development,Research and Development (R&D) +461632,Research and Development,Research and Development (R&D) +461627,Research and Development,Research and Development (R&D) +461625,Research and Development,Research and Development (R&D) +460613,Research and Development,Research and Development (R&D) +460611,Research and Development,Research and Development (R&D) +460131,Research and Development,Research and Development (R&D) +460130,Research and Development,Research and Development (R&D) +460129,Research and Development,Research and Development (R&D) +459559,Research and Development,Research and Development (R&D) +459558,Research and Development,Research and Development (R&D) +459556,Research and Development,Research and Development (R&D) +459550,Research and Development,Research and Development (R&D) +459548,Research and Development,Research and Development (R&D) +459547,Research and Development,Research and Development (R&D) +458577,Research and Development,Research and Development (R&D) +458576,Research and Development,Research and Development (R&D) +458575,Research and Development,Research and Development (R&D) +455103,Research and Development,Research and Development (R&D) +455096,Research and Development,Research and Development (R&D) +455094,Research and Development,Research and Development (R&D) +453044,Research and Development,Research and Development (R&D) +452529,Research and Development,Research and Development (R&D) +452527,Research and Development,Research and Development (R&D) +452526,Research and Development,Research and Development (R&D) +452523,Research and Development,Research and Development (R&D) +452518,Research and Development,Research and Development (R&D) +452512,Research and Development,Research and Development (R&D) +449620,Research and Development,Research and Development (R&D) +449619,Research and Development,Research and Development (R&D) +449616,Research and Development,Research and Development (R&D) +449612,Research and Development,Research and Development (R&D) +449609,Research and Development,Research and Development (R&D) +447715,Research and Development,Research and Development (R&D) +447714,Research and Development,Research and Development (R&D) +447713,Research and Development,Research and Development (R&D) +445645,Research and Development,Research and Development (R&D) +445644,Research and Development,Research and Development (R&D) +445643,Research and Development,Research and Development (R&D) +445642,Research and Development,Research and Development (R&D) +445640,Research and Development,Research and Development (R&D) +445639,Research and Development,Research and Development (R&D) +445637,Research and Development,Research and Development (R&D) +443902,Research and Development,Research and Development (R&D) +443884,Research and Development,Research and Development (R&D) +442453,Research and Development,Research and Development (R&D) +442450,Research and Development,Research and Development (R&D) +442446,Research and Development,Research and Development (R&D) +442443,Research and Development,Research and Development (R&D) +442439,Research and Development,Research and Development (R&D) +442430,Research and Development,Research and Development (R&D) +442426,Research and Development,Research and Development (R&D) +442423,Research and Development,Research and Development (R&D) +442418,Research and Development,Research and Development (R&D) +442412,Research and Development,Research and Development (R&D) +442393,Research and Development,Research and Development (R&D) +442387,Research and Development,Research and Development (R&D) +442385,Research and Development,Research and Development (R&D) +442379,Research and Development,Research and Development (R&D) +436133,Research and Development,Research and Development (R&D) +436125,Research and Development,Research and Development (R&D) +433863,Research and Development,Research and Development (R&D) +433861,Research and Development,Research and Development (R&D) +429144,Research and Development,Research and Development (R&D) +426742,Research and Development,Research and Development (R&D) +426738,Research and Development,Research and Development (R&D) +426712,Research and Development,Research and Development (R&D) +426697,Research and Development,Research and Development (R&D) +426696,Research and Development,Research and Development (R&D) +426686,Research and Development,Research and Development (R&D) +423946,Research and Development,Research and Development (R&D) +422155,Research and Development,Research and Development (R&D) +415473,Research and Development,Research and Development (R&D) +409708,Research and Development,Research and Development (R&D) +409706,Research and Development,Research and Development (R&D) +406792,Research and Development,Research and Development (R&D) +403584,Research and Development,Research and Development (R&D) +403571,Research and Development,Research and Development (R&D) +403566,Research and Development,Research and Development (R&D) +403553,Research and Development,Research and Development (R&D) +403550,Research and Development,Research and Development (R&D) +403547,Research and Development,Research and Development (R&D) +400985,Research and Development,Research and Development (R&D) +400981,Research and Development,Research and Development (R&D) +400979,Research and Development,Research and Development (R&D) +399103,Research and Development,Research and Development (R&D) +399102,Research and Development,Research and Development (R&D) +399098,Research and Development,Research and Development (R&D) +399097,Research and Development,Research and Development (R&D) +394442,Research and Development,Research and Development (R&D) +388474,Research and Development,Research and Development (R&D) +388465,Research and Development,Research and Development (R&D) +388447,Research and Development,Research and Development (R&D) +388437,Research and Development,Research and Development (R&D) +385578,Research and Development,Research and Development (R&D) +385571,Research and Development,Research and Development (R&D) +385569,Research and Development,Research and Development (R&D) +385556,Research and Development,Research and Development (R&D) +385551,Research and Development,Research and Development (R&D) +385545,Research and Development,Research and Development (R&D) +385543,Research and Development,Research and Development (R&D) +385534,Research and Development,Research and Development (R&D) +385529,Research and Development,Research and Development (R&D) +381619,Research and Development,Research and Development (R&D) +379936,Research and Development,Research and Development (R&D) +379921,Research and Development,Research and Development (R&D) +543949,Research and Development,Research and Development (R&D) +543948,Research and Development,Research and Development (R&D) +543946,Research and Development,Research and Development (R&D) +541750,Research and Development,Research and Development (R&D) +541747,Research and Development,Research and Development (R&D) +541743,Research and Development,Research and Development (R&D) +539764,Research and Development,Research and Development (R&D) +539762,Research and Development,Research and Development (R&D) +537926,Research and Development,Research and Development (R&D) +534605,Research and Development,Research and Development (R&D) +534592,Research and Development,Research and Development (R&D) +534582,Research and Development,Research and Development (R&D) +534568,Research and Development,Research and Development (R&D) +534566,Research and Development,Research and Development (R&D) +531354,Research and Development,Research and Development (R&D) +531353,Research and Development,Research and Development (R&D) +531352,Research and Development,Research and Development (R&D) +531348,Research and Development,Research and Development (R&D) +531344,Research and Development,Research and Development (R&D) +526143,Research and Development,Research and Development (R&D) +525672,Research and Development,Research and Development (R&D) +525646,Research and Development,Research and Development (R&D) +525635,Research and Development,Research and Development (R&D) +525625,Research and Development,Research and Development (R&D) +525552,Research and Development,Research and Development (R&D) +522502,Research and Development,Research and Development (R&D) +517759,Research and Development,Research and Development (R&D) +516771,Research and Development,Research and Development (R&D) +516770,Research and Development,Research and Development (R&D) +515721,Research and Development,Research and Development (R&D) +515720,Research and Development,Research and Development (R&D) +515719,Research and Development,Research and Development (R&D) +515717,Research and Development,Research and Development (R&D) +515486,Research and Development,Research and Development (R&D) +514580,Research and Development,Research and Development (R&D) +514570,Research and Development,Research and Development (R&D) +507960,Research and Development,Research and Development (R&D) +507946,Research and Development,Research and Development (R&D) +507935,Research and Development,Research and Development (R&D) +504246,Research and Development,Research and Development (R&D) +504237,Research and Development,Research and Development (R&D) +501705,Research and Development,Research and Development (R&D) +501704,Research and Development,Research and Development (R&D) +501700,Research and Development,Research and Development (R&D) +501698,Research and Development,Research and Development (R&D) +499125,Research and Development,Research and Development (R&D) +498189,Research and Development,Research and Development (R&D) +498188,Research and Development,Research and Development (R&D) +495186,Research and Development,Research and Development (R&D) +495185,Research and Development,Research and Development (R&D) +495184,Research and Development,Research and Development (R&D) +495183,Research and Development,Research and Development (R&D) +495182,Research and Development,Research and Development (R&D) +495180,Research and Development,Research and Development (R&D) +495177,Research and Development,Research and Development (R&D) +493344,Research and Development,Research and Development (R&D) +493340,Research and Development,Research and Development (R&D) +493337,Research and Development,Research and Development (R&D) +493335,Research and Development,Research and Development (R&D) +490271,Research and Development,Research and Development (R&D) +490264,Research and Development,Research and Development (R&D) +487727,Research and Development,Research and Development (R&D) +487726,Research and Development,Research and Development (R&D) +487725,Research and Development,Research and Development (R&D) +487724,Research and Development,Research and Development (R&D) +487723,Research and Development,Research and Development (R&D) +487722,Research and Development,Research and Development (R&D) +487720,Research and Development,Research and Development (R&D) +484998,Research and Development,Research and Development (R&D) +484764,Research and Development,Research and Development (R&D) +484763,Research and Development,Research and Development (R&D) +484762,Research and Development,Research and Development (R&D) +484760,Research and Development,Research and Development (R&D) +484758,Research and Development,Research and Development (R&D) +484753,Research and Development,Research and Development (R&D) +484752,Research and Development,Research and Development (R&D) +484750,Research and Development,Research and Development (R&D) +484748,Research and Development,Research and Development (R&D) +482189,Research and Development,Research and Development (R&D) +482140,Research and Development,Research and Development (R&D) +479852,Research and Development,Research and Development (R&D) +479850,Research and Development,Research and Development (R&D) +477470,Research and Development,Research and Development (R&D) +475771,Research and Development,Research and Development (R&D) +475458,Research and Development,Research and Development (R&D) +473541,Research and Development,Research and Development (R&D) +473494,Research and Development,Research and Development (R&D) +470570,Research and Development,Research and Development (R&D) +470563,Research and Development,Research and Development (R&D) +467403,Research and Development,Research and Development (R&D) +467400,Research and Development,Research and Development (R&D) +320469,Transportation,Transports +225589,Agriculture,Agriculture +225570,Agriculture,Agriculture +249869,Agriculture,Agriculture +225592,Agriculture,Agriculture +225591,Agriculture,Agriculture +225589,International Trade,International Trade +225570,International Trade,International Trade +249869,International Trade,International Trade +225592,International Trade,International Trade +225591,International Trade,International Trade +188070,Environment,Environment +188069,Environment,Environment +158038,Environment,Environment +158037,Environment,Environment +158036,Environment,Environment +224607,Environment,Environment +193025,Environment,Environment +188070,Health,Health +188069,Health,Health +158038,Health,Health +158037,Health,Health +158036,Health,Health +224607,Health,Health +193025,Health,Health +378019,Environment,Environment +488845,Research and Development,Research and Development (R&D) +488843,Research and Development,Research and Development (R&D) +160125,Research and Development,Research and Development (R&D) +160124,Research and Development,Research and Development (R&D) +160122,Research and Development,Research and Development (R&D) +146594,Research and Development,Research and Development (R&D) +199626,Research and Development,Research and Development (R&D) +190484,Research and Development,Research and Development (R&D) +185904,Research and Development,Research and Development (R&D) +185555,Research and Development,Research and Development (R&D) +173828,Research and Development,Research and Development (R&D) +173827,Research and Development,Research and Development (R&D) +173648,Research and Development,Research and Development (R&D) +173646,Research and Development,Research and Development (R&D) +173645,Research and Development,Research and Development (R&D) +173644,Research and Development,Research and Development (R&D) +170979,Research and Development,Research and Development (R&D) +170976,Research and Development,Research and Development (R&D) +170967,Research and Development,Research and Development (R&D) +170958,Research and Development,Research and Development (R&D) +170917,Research and Development,Research and Development (R&D) +170901,Research and Development,Research and Development (R&D) +170899,Research and Development,Research and Development (R&D) +170898,Research and Development,Research and Development (R&D) +170895,Research and Development,Research and Development (R&D) +166058,Research and Development,Research and Development (R&D) +166055,Research and Development,Research and Development (R&D) +166046,Research and Development,Research and Development (R&D) +164394,Research and Development,Research and Development (R&D) +162439,Research and Development,Research and Development (R&D) +160734,Research and Development,Research and Development (R&D) +160161,Research and Development,Research and Development (R&D) +160160,Research and Development,Research and Development (R&D) +160126,Research and Development,Research and Development (R&D) +272391,Research and Development,Research and Development (R&D) +272390,Research and Development,Research and Development (R&D) +269395,Research and Development,Research and Development (R&D) +264729,Research and Development,Research and Development (R&D) +259579,Research and Development,Research and Development (R&D) +259578,Research and Development,Research and Development (R&D) +254449,Research and Development,Research and Development (R&D) +251052,Research and Development,Research and Development (R&D) +251051,Research and Development,Research and Development (R&D) +251050,Research and Development,Research and Development (R&D) +251034,Research and Development,Research and Development (R&D) +251031,Research and Development,Research and Development (R&D) +250530,Research and Development,Research and Development (R&D) +241063,Research and Development,Research and Development (R&D) +241057,Research and Development,Research and Development (R&D) +237213,Research and Development,Research and Development (R&D) +233849,Research and Development,Research and Development (R&D) +233846,Research and Development,Research and Development (R&D) +227231,Research and Development,Research and Development (R&D) +223632,Research and Development,Research and Development (R&D) +223631,Research and Development,Research and Development (R&D) +223630,Research and Development,Research and Development (R&D) +217887,Research and Development,Research and Development (R&D) +217867,Research and Development,Research and Development (R&D) +217851,Research and Development,Research and Development (R&D) +217849,Research and Development,Research and Development (R&D) +217847,Research and Development,Research and Development (R&D) +212456,Research and Development,Research and Development (R&D) +212440,Research and Development,Research and Development (R&D) +207518,Research and Development,Research and Development (R&D) +207511,Research and Development,Research and Development (R&D) +207494,Research and Development,Research and Development (R&D) +207490,Research and Development,Research and Development (R&D) +207477,Research and Development,Research and Development (R&D) +202918,Research and Development,Research and Development (R&D) +202913,Research and Development,Research and Development (R&D) +199656,Research and Development,Research and Development (R&D) +199654,Research and Development,Research and Development (R&D) +199651,Research and Development,Research and Development (R&D) +199634,Research and Development,Research and Development (R&D) +385836,Research and Development,Research and Development (R&D) +385826,Research and Development,Research and Development (R&D) +385825,Research and Development,Research and Development (R&D) +385824,Research and Development,Research and Development (R&D) +385823,Research and Development,Research and Development (R&D) +385821,Research and Development,Research and Development (R&D) +383819,Research and Development,Research and Development (R&D) +383000,Research and Development,Research and Development (R&D) +381726,Research and Development,Research and Development (R&D) +381725,Research and Development,Research and Development (R&D) +381680,Research and Development,Research and Development (R&D) +380060,Research and Development,Research and Development (R&D) +380059,Research and Development,Research and Development (R&D) +380058,Research and Development,Research and Development (R&D) +377227,Research and Development,Research and Development (R&D) +375017,Research and Development,Research and Development (R&D) +375016,Research and Development,Research and Development (R&D) +375015,Research and Development,Research and Development (R&D) +375014,Research and Development,Research and Development (R&D) +375011,Research and Development,Research and Development (R&D) +372478,Research and Development,Research and Development (R&D) +372472,Research and Development,Research and Development (R&D) +372465,Research and Development,Research and Development (R&D) +371112,Research and Development,Research and Development (R&D) +371110,Research and Development,Research and Development (R&D) +371108,Research and Development,Research and Development (R&D) +371107,Research and Development,Research and Development (R&D) +371106,Research and Development,Research and Development (R&D) +371104,Research and Development,Research and Development (R&D) +371103,Research and Development,Research and Development (R&D) +369323,Research and Development,Research and Development (R&D) +366802,Research and Development,Research and Development (R&D) +358268,Research and Development,Research and Development (R&D) +356394,Research and Development,Research and Development (R&D) +356391,Research and Development,Research and Development (R&D) +342098,Research and Development,Research and Development (R&D) +342097,Research and Development,Research and Development (R&D) +342096,Research and Development,Research and Development (R&D) +342093,Research and Development,Research and Development (R&D) +338645,Research and Development,Research and Development (R&D) +338644,Research and Development,Research and Development (R&D) +338638,Research and Development,Research and Development (R&D) +338633,Research and Development,Research and Development (R&D) +338628,Research and Development,Research and Development (R&D) +335928,Research and Development,Research and Development (R&D) +335919,Research and Development,Research and Development (R&D) +335913,Research and Development,Research and Development (R&D) +335912,Research and Development,Research and Development (R&D) +335909,Research and Development,Research and Development (R&D) +335907,Research and Development,Research and Development (R&D) +335764,Research and Development,Research and Development (R&D) +335761,Research and Development,Research and Development (R&D) +331392,Research and Development,Research and Development (R&D) +327925,Research and Development,Research and Development (R&D) +316000,Research and Development,Research and Development (R&D) +315997,Research and Development,Research and Development (R&D) +315995,Research and Development,Research and Development (R&D) +315993,Research and Development,Research and Development (R&D) +315989,Research and Development,Research and Development (R&D) +310785,Research and Development,Research and Development (R&D) +310781,Research and Development,Research and Development (R&D) +310778,Research and Development,Research and Development (R&D) +291332,Research and Development,Research and Development (R&D) +291331,Research and Development,Research and Development (R&D) +273737,Research and Development,Research and Development (R&D) +486950,Research and Development,Research and Development (R&D) +486948,Research and Development,Research and Development (R&D) +486947,Research and Development,Research and Development (R&D) +486945,Research and Development,Research and Development (R&D) +486943,Research and Development,Research and Development (R&D) +486941,Research and Development,Research and Development (R&D) +486940,Research and Development,Research and Development (R&D) +486921,Research and Development,Research and Development (R&D) +484877,Research and Development,Research and Development (R&D) +484871,Research and Development,Research and Development (R&D) +484869,Research and Development,Research and Development (R&D) +484865,Research and Development,Research and Development (R&D) +484860,Research and Development,Research and Development (R&D) +482493,Research and Development,Research and Development (R&D) +482491,Research and Development,Research and Development (R&D) +482488,Research and Development,Research and Development (R&D) +480330,Research and Development,Research and Development (R&D) +478259,Research and Development,Research and Development (R&D) +478252,Research and Development,Research and Development (R&D) +473728,Research and Development,Research and Development (R&D) +473725,Research and Development,Research and Development (R&D) +473687,Research and Development,Research and Development (R&D) +470945,Research and Development,Research and Development (R&D) +470929,Research and Development,Research and Development (R&D) +470912,Research and Development,Research and Development (R&D) +470902,Research and Development,Research and Development (R&D) +470892,Research and Development,Research and Development (R&D) +470886,Research and Development,Research and Development (R&D) +468170,Research and Development,Research and Development (R&D) +468169,Research and Development,Research and Development (R&D) +468168,Research and Development,Research and Development (R&D) +468167,Research and Development,Research and Development (R&D) +468166,Research and Development,Research and Development (R&D) +468165,Research and Development,Research and Development (R&D) +468164,Research and Development,Research and Development (R&D) +465055,Research and Development,Research and Development (R&D) +464894,Research and Development,Research and Development (R&D) +464890,Research and Development,Research and Development (R&D) +464882,Research and Development,Research and Development (R&D) +464878,Research and Development,Research and Development (R&D) +464874,Research and Development,Research and Development (R&D) +464873,Research and Development,Research and Development (R&D) +464870,Research and Development,Research and Development (R&D) +464867,Research and Development,Research and Development (R&D) +464864,Research and Development,Research and Development (R&D) +464860,Research and Development,Research and Development (R&D) +464859,Research and Development,Research and Development (R&D) +464856,Research and Development,Research and Development (R&D) +464847,Research and Development,Research and Development (R&D) +464839,Research and Development,Research and Development (R&D) +464833,Research and Development,Research and Development (R&D) +462873,Research and Development,Research and Development (R&D) +462872,Research and Development,Research and Development (R&D) +462871,Research and Development,Research and Development (R&D) +461388,Research and Development,Research and Development (R&D) +460732,Research and Development,Research and Development (R&D) +460236,Research and Development,Research and Development (R&D) +460235,Research and Development,Research and Development (R&D) +460231,Research and Development,Research and Development (R&D) +460230,Research and Development,Research and Development (R&D) +459691,Research and Development,Research and Development (R&D) +459688,Research and Development,Research and Development (R&D) +456899,Research and Development,Research and Development (R&D) +456898,Research and Development,Research and Development (R&D) +456897,Research and Development,Research and Development (R&D) +456896,Research and Development,Research and Development (R&D) +456291,Research and Development,Research and Development (R&D) +456290,Research and Development,Research and Development (R&D) +456289,Research and Development,Research and Development (R&D) +456288,Research and Development,Research and Development (R&D) +452143,Research and Development,Research and Development (R&D) +452140,Research and Development,Research and Development (R&D) +447554,Research and Development,Research and Development (R&D) +447552,Research and Development,Research and Development (R&D) +447550,Research and Development,Research and Development (R&D) +447547,Research and Development,Research and Development (R&D) +447542,Research and Development,Research and Development (R&D) +445706,Research and Development,Research and Development (R&D) +445705,Research and Development,Research and Development (R&D) +445704,Research and Development,Research and Development (R&D) +445701,Research and Development,Research and Development (R&D) +445699,Research and Development,Research and Development (R&D) +445694,Research and Development,Research and Development (R&D) +445690,Research and Development,Research and Development (R&D) +444051,Research and Development,Research and Development (R&D) +444049,Research and Development,Research and Development (R&D) +444048,Research and Development,Research and Development (R&D) +442732,Research and Development,Research and Development (R&D) +442730,Research and Development,Research and Development (R&D) +442729,Research and Development,Research and Development (R&D) +442728,Research and Development,Research and Development (R&D) +442727,Research and Development,Research and Development (R&D) +439392,Research and Development,Research and Development (R&D) +439374,Research and Development,Research and Development (R&D) +439366,Research and Development,Research and Development (R&D) +439362,Research and Development,Research and Development (R&D) +439360,Research and Development,Research and Development (R&D) +439190,Research and Development,Research and Development (R&D) +439181,Research and Development,Research and Development (R&D) +439180,Research and Development,Research and Development (R&D) +439175,Research and Development,Research and Development (R&D) +439172,Research and Development,Research and Development (R&D) +439171,Research and Development,Research and Development (R&D) +438985,Research and Development,Research and Development (R&D) +438983,Research and Development,Research and Development (R&D) +438980,Research and Development,Research and Development (R&D) +438974,Research and Development,Research and Development (R&D) +438971,Research and Development,Research and Development (R&D) +438970,Research and Development,Research and Development (R&D) +438969,Research and Development,Research and Development (R&D) +435456,Research and Development,Research and Development (R&D) +433689,Research and Development,Research and Development (R&D) +433687,Research and Development,Research and Development (R&D) +433683,Research and Development,Research and Development (R&D) +430804,Research and Development,Research and Development (R&D) +430803,Research and Development,Research and Development (R&D) +430798,Research and Development,Research and Development (R&D) +429349,Research and Development,Research and Development (R&D) +429345,Research and Development,Research and Development (R&D) +429342,Research and Development,Research and Development (R&D) +429341,Research and Development,Research and Development (R&D) +426846,Research and Development,Research and Development (R&D) +426843,Research and Development,Research and Development (R&D) +426817,Research and Development,Research and Development (R&D) +426810,Research and Development,Research and Development (R&D) +426807,Research and Development,Research and Development (R&D) +424322,Research and Development,Research and Development (R&D) +424321,Research and Development,Research and Development (R&D) +424320,Research and Development,Research and Development (R&D) +424318,Research and Development,Research and Development (R&D) +424317,Research and Development,Research and Development (R&D) +424316,Research and Development,Research and Development (R&D) +422422,Research and Development,Research and Development (R&D) +422415,Research and Development,Research and Development (R&D) +420299,Research and Development,Research and Development (R&D) +420298,Research and Development,Research and Development (R&D) +420297,Research and Development,Research and Development (R&D) +420295,Research and Development,Research and Development (R&D) +418085,Research and Development,Research and Development (R&D) +415170,Research and Development,Research and Development (R&D) +415168,Research and Development,Research and Development (R&D) +415167,Research and Development,Research and Development (R&D) +415166,Research and Development,Research and Development (R&D) +415147,Research and Development,Research and Development (R&D) +415145,Research and Development,Research and Development (R&D) +415141,Research and Development,Research and Development (R&D) +415136,Research and Development,Research and Development (R&D) +414761,Research and Development,Research and Development (R&D) +412801,Research and Development,Research and Development (R&D) +412766,Research and Development,Research and Development (R&D) +412758,Research and Development,Research and Development (R&D) +409575,Research and Development,Research and Development (R&D) +409571,Research and Development,Research and Development (R&D) +409568,Research and Development,Research and Development (R&D) +409566,Research and Development,Research and Development (R&D) +409560,Research and Development,Research and Development (R&D) +402718,Research and Development,Research and Development (R&D) +402712,Research and Development,Research and Development (R&D) +395186,Research and Development,Research and Development (R&D) +395184,Research and Development,Research and Development (R&D) +392789,Research and Development,Research and Development (R&D) +391736,Research and Development,Research and Development (R&D) +391735,Research and Development,Research and Development (R&D) +391734,Research and Development,Research and Development (R&D) +391733,Research and Development,Research and Development (R&D) +391732,Research and Development,Research and Development (R&D) +391731,Research and Development,Research and Development (R&D) +388411,Research and Development,Research and Development (R&D) +545225,Research and Development,Research and Development (R&D) +545223,Research and Development,Research and Development (R&D) +545222,Research and Development,Research and Development (R&D) +545221,Research and Development,Research and Development (R&D) +545220,Research and Development,Research and Development (R&D) +545219,Research and Development,Research and Development (R&D) +545218,Research and Development,Research and Development (R&D) +545217,Research and Development,Research and Development (R&D) +545216,Research and Development,Research and Development (R&D) +545215,Research and Development,Research and Development (R&D) +543196,Research and Development,Research and Development (R&D) +542826,Research and Development,Research and Development (R&D) +542825,Research and Development,Research and Development (R&D) +542824,Research and Development,Research and Development (R&D) +542823,Research and Development,Research and Development (R&D) +542822,Research and Development,Research and Development (R&D) +542821,Research and Development,Research and Development (R&D) +542818,Research and Development,Research and Development (R&D) +542817,Research and Development,Research and Development (R&D) +542816,Research and Development,Research and Development (R&D) +542815,Research and Development,Research and Development (R&D) +542814,Research and Development,Research and Development (R&D) +542813,Research and Development,Research and Development (R&D) +542812,Research and Development,Research and Development (R&D) +542810,Research and Development,Research and Development (R&D) +542809,Research and Development,Research and Development (R&D) +542807,Research and Development,Research and Development (R&D) +542806,Research and Development,Research and Development (R&D) +542805,Research and Development,Research and Development (R&D) +542804,Research and Development,Research and Development (R&D) +542803,Research and Development,Research and Development (R&D) +540986,Research and Development,Research and Development (R&D) +540954,Research and Development,Research and Development (R&D) +540884,Research and Development,Research and Development (R&D) +539894,Research and Development,Research and Development (R&D) +539893,Research and Development,Research and Development (R&D) +539886,Research and Development,Research and Development (R&D) +539882,Research and Development,Research and Development (R&D) +539880,Research and Development,Research and Development (R&D) +539872,Research and Development,Research and Development (R&D) +538221,Research and Development,Research and Development (R&D) +538215,Research and Development,Research and Development (R&D) +534802,Research and Development,Research and Development (R&D) +534797,Research and Development,Research and Development (R&D) +534795,Research and Development,Research and Development (R&D) +534791,Research and Development,Research and Development (R&D) +534789,Research and Development,Research and Development (R&D) +534787,Research and Development,Research and Development (R&D) +534784,Research and Development,Research and Development (R&D) +531806,Research and Development,Research and Development (R&D) +531803,Research and Development,Research and Development (R&D) +531798,Research and Development,Research and Development (R&D) +531793,Research and Development,Research and Development (R&D) +531791,Research and Development,Research and Development (R&D) +531784,Research and Development,Research and Development (R&D) +531776,Research and Development,Research and Development (R&D) +531767,Research and Development,Research and Development (R&D) +531763,Research and Development,Research and Development (R&D) +529145,Research and Development,Research and Development (R&D) +529137,Research and Development,Research and Development (R&D) +529124,Research and Development,Research and Development (R&D) +529111,Research and Development,Research and Development (R&D) +525615,Research and Development,Research and Development (R&D) +525513,Research and Development,Research and Development (R&D) +525512,Research and Development,Research and Development (R&D) +525510,Research and Development,Research and Development (R&D) +525508,Research and Development,Research and Development (R&D) +525506,Research and Development,Research and Development (R&D) +525504,Research and Development,Research and Development (R&D) +525502,Research and Development,Research and Development (R&D) +525495,Research and Development,Research and Development (R&D) +525489,Research and Development,Research and Development (R&D) +525485,Research and Development,Research and Development (R&D) +525444,Research and Development,Research and Development (R&D) +525439,Research and Development,Research and Development (R&D) +525438,Research and Development,Research and Development (R&D) +523646,Research and Development,Research and Development (R&D) +523579,Research and Development,Research and Development (R&D) +523380,Research and Development,Research and Development (R&D) +523372,Research and Development,Research and Development (R&D) +523371,Research and Development,Research and Development (R&D) +521241,Research and Development,Research and Development (R&D) +521240,Research and Development,Research and Development (R&D) +521239,Research and Development,Research and Development (R&D) +521238,Research and Development,Research and Development (R&D) +521237,Research and Development,Research and Development (R&D) +521236,Research and Development,Research and Development (R&D) +521235,Research and Development,Research and Development (R&D) +521234,Research and Development,Research and Development (R&D) +521233,Research and Development,Research and Development (R&D) +521232,Research and Development,Research and Development (R&D) +521230,Research and Development,Research and Development (R&D) +521229,Research and Development,Research and Development (R&D) +521228,Research and Development,Research and Development (R&D) +521227,Research and Development,Research and Development (R&D) +521226,Research and Development,Research and Development (R&D) +517520,Research and Development,Research and Development (R&D) +517513,Research and Development,Research and Development (R&D) +517507,Research and Development,Research and Development (R&D) +517505,Research and Development,Research and Development (R&D) +517504,Research and Development,Research and Development (R&D) +517503,Research and Development,Research and Development (R&D) +516440,Research and Development,Research and Development (R&D) +516439,Research and Development,Research and Development (R&D) +516436,Research and Development,Research and Development (R&D) +516435,Research and Development,Research and Development (R&D) +516434,Research and Development,Research and Development (R&D) +516433,Research and Development,Research and Development (R&D) +516432,Research and Development,Research and Development (R&D) +515050,Research and Development,Research and Development (R&D) +515049,Research and Development,Research and Development (R&D) +515048,Research and Development,Research and Development (R&D) +515047,Research and Development,Research and Development (R&D) +514404,Research and Development,Research and Development (R&D) +514396,Research and Development,Research and Development (R&D) +513674,Research and Development,Research and Development (R&D) +512222,Research and Development,Research and Development (R&D) +512220,Research and Development,Research and Development (R&D) +512218,Research and Development,Research and Development (R&D) +510116,Research and Development,Research and Development (R&D) +509628,Research and Development,Research and Development (R&D) +509627,Research and Development,Research and Development (R&D) +509626,Research and Development,Research and Development (R&D) +508962,Research and Development,Research and Development (R&D) +508959,Research and Development,Research and Development (R&D) +508955,Research and Development,Research and Development (R&D) +503599,Research and Development,Research and Development (R&D) +503598,Research and Development,Research and Development (R&D) +503597,Research and Development,Research and Development (R&D) +503596,Research and Development,Research and Development (R&D) +503595,Research and Development,Research and Development (R&D) +503594,Research and Development,Research and Development (R&D) +500521,Research and Development,Research and Development (R&D) +500519,Research and Development,Research and Development (R&D) +500517,Research and Development,Research and Development (R&D) +497181,Research and Development,Research and Development (R&D) +497180,Research and Development,Research and Development (R&D) +497179,Research and Development,Research and Development (R&D) +497177,Research and Development,Research and Development (R&D) +494742,Research and Development,Research and Development (R&D) +494740,Research and Development,Research and Development (R&D) +494737,Research and Development,Research and Development (R&D) +494735,Research and Development,Research and Development (R&D) +492298,Research and Development,Research and Development (R&D) +492297,Research and Development,Research and Development (R&D) +492294,Research and Development,Research and Development (R&D) +492293,Research and Development,Research and Development (R&D) +492290,Research and Development,Research and Development (R&D) +492288,Research and Development,Research and Development (R&D) +492286,Research and Development,Research and Development (R&D) +492285,Research and Development,Research and Development (R&D) +489355,Research and Development,Research and Development (R&D) +488849,Research and Development,Research and Development (R&D) +488848,Research and Development,Research and Development (R&D) +160658,International Trade,International Trade +160656,International Trade,International Trade +160656,Energy,Energy +146654,Energy,Energy +169545,Energy,Energy +160658,International Development,International Development +160656,International Development,International Development +146654,International Development,International Development +162023,Agriculture,Agriculture +162023,International Trade,International Trade +162020,International Trade,International Trade +535457,International Trade,International Trade +535271,International Trade,International Trade +302549,International Trade,International Trade +404850,International Trade,International Trade +399732,International Trade,International Trade +398936,International Trade,International Trade +396818,International Trade,International Trade +364606,International Trade,International Trade +363686,International Trade,International Trade +363684,International Trade,International Trade +341993,International Trade,International Trade +484979,International Trade,International Trade +481463,International Trade,International Trade +481459,International Trade,International Trade +481456,International Trade,International Trade +481450,International Trade,International Trade +479877,International Trade,International Trade +475601,International Trade,International Trade +460039,International Trade,International Trade +459619,International Trade,International Trade +459618,International Trade,International Trade +459616,International Trade,International Trade +456294,International Trade,International Trade +455704,International Trade,International Trade +425124,International Trade,International Trade +423680,International Trade,International Trade +421836,International Trade,International Trade +408710,International Trade,International Trade +408709,International Trade,International Trade +407582,International Trade,International Trade +539790,International Trade,International Trade +298153,Consumer Issues,Consumer Issues +160878,Consumer Issues,Consumer Issues +160877,Consumer Issues,Consumer Issues +160876,Consumer Issues,Consumer Issues +147315,Financial Institutions,Financial Institutions +298152,Industry,Industry +147317,Sports,Sports +160878,Taxation and Finance,Taxation and Finance +160877,Taxation and Finance,Taxation and Finance +160876,Transportation,Transportation +431582,Research and Development,Recherche et développement (R&D) +431581,Research and Development,Recherche et développement (R&D) +407174,Research and Development,Recherche et développement (R&D) +407007,Research and Development,Recherche et développement (R&D) +400077,Research and Development,Recherche et développement (R&D) +332290,Taxation and Finance,Taxation and Finance +332289,Taxation and Finance,Taxation and Finance +147762,Taxation and Finance,Taxation and Finance +147760,Taxation and Finance,Taxation and Finance +163699,Taxation and Finance,Taxation and Finance +161780,Taxation and Finance,Taxation and Finance +161779,Taxation and Finance,Taxation and Finance +266269,Taxation and Finance,Taxation and Finance +230810,Taxation and Finance,Taxation and Finance +447556,Taxation and Finance,Taxation and Finance +413643,Taxation and Finance,Taxation and Finance +413635,Taxation and Finance,Taxation and Finance +413627,Taxation and Finance,Taxation and Finance +408054,Taxation and Finance,Taxation and Finance +408053,Taxation and Finance,Taxation and Finance +408051,Taxation and Finance,Taxation and Finance +408050,Taxation and Finance,Taxation and Finance +393199,Taxation and Finance,Taxation and Finance +387283,Taxation and Finance,Taxation and Finance +370080,Taxation and Finance,Taxation and Finance +344824,Taxation and Finance,Taxation and Finance +170514,Economic Development,Développement économique +373984,International Development,International Development +193346,International Development,International Development +193345,International Development,International Development +366739,International Development,International Development +366728,International Development,International Development +366725,International Development,International Development +366599,International Development,International Development +366592,International Development,International Development +349177,International Development,International Development +341714,International Development,International Development +341704,International Development,International Development +254154,International Development,International Development +241172,International Development,International Development +204047,International Development,International Development +193350,International Development,International Development +193349,International Development,International Development +193348,International Development,International Development +193347,International Development,International Development +379946,International Development,International Development +153002,Health,Health +150515,Health,Health +153961,Health,Health +154367,International Trade,International Trade +154366,International Trade,International Trade +151280,Consumer Issues,Consumer Issues +153962,Consumer Issues,Consumer Issues +151285,Consumer Issues,Consumer Issues +151284,Consumer Issues,Consumer Issues +151283,Consumer Issues,Consumer Issues +151280,Economic Development,Economic Development +151280,Industry,Industry +151281,Intellectual Property,Intellectual Property +151280,Intellectual Property,Intellectual Property +160758,Intellectual Property,Intellectual Property +160757,Intellectual Property,Intellectual Property +153962,Intellectual Property,Intellectual Property +152858,Intellectual Property,Intellectual Property +151285,Intellectual Property,Intellectual Property +151284,Intellectual Property,Intellectual Property +151283,Intellectual Property,Intellectual Property +151284,International Trade,International Trade +151281,International Trade,International Trade +160757,International Trade,International Trade +152858,International Trade,International Trade +151284,Small Business,Small Business +151283,Small Business,Small Business +151282,Small Business,Small Business +151280,Small Business,Small Business +160765,Small Business,Small Business +156547,Small Business,Small Business +153962,Small Business,Small Business +163466,Consumer Issues,Consumer Issues +161887,Consumer Issues,Consumer Issues +164973,Consumer Issues,Consumer Issues +163468,Consumer Issues,Consumer Issues +163468,Economic Development,Economic Development +163466,Economic Development,Economic Development +163467,International Trade,International Trade +518100,Health,Health +515456,Health,Health +211943,Health,Health +207382,Health,Health +207356,Health,Health +202687,Health,Health +333548,Health,Health +333546,Health,Health +333544,Health,Health +330075,Health,Health +330074,Health,Health +330071,Health,Health +321858,Health,Health +321851,Health,Health +233565,Health,Health +231489,Health,Health +230450,Health,Health +217276,Health,Health +217275,Health,Health +217271,Health,Health +211965,Health,Health +211964,Health,Health +211963,Health,Health +211962,Health,Health +211957,Health,Health +211955,Health,Health +211953,Health,Health +374503,Health,Health +371997,Health,Health +371993,Health,Health +371992,Health,Health +371578,Health,Health +371577,Health,Health +371576,Health,Health +371575,Health,Health +371571,Health,Health +371290,Health,Health +366460,Health,Health +365087,Health,Health +363533,Health,Health +363532,Health,Health +363531,Health,Health +359834,Health,Health +359833,Health,Health +359831,Health,Health +359830,Health,Health +359828,Health,Health +359826,Health,Health +359825,Health,Health +358210,Health,Health +358206,Health,Health +358200,Health,Health +358196,Health,Health +358193,Health,Health +358192,Health,Health +358189,Health,Health +358185,Health,Health +358180,Health,Health +358174,Health,Health +358111,Health,Health +358108,Health,Health +356057,Health,Health +356056,Health,Health +356054,Health,Health +356053,Health,Health +356052,Health,Health +356051,Health,Health +353307,Health,Health +351465,Health,Health +351463,Health,Health +351460,Health,Health +351455,Health,Health +351454,Health,Health +351453,Health,Health +351451,Health,Health +351449,Health,Health +351447,Health,Health +351445,Health,Health +351444,Health,Health +351441,Health,Health +349094,Health,Health +349091,Health,Health +349090,Health,Health +349088,Health,Health +349043,Health,Health +346913,Health,Health +346911,Health,Health +346910,Health,Health +346909,Health,Health +346908,Health,Health +346905,Health,Health +343479,Health,Health +343478,Health,Health +341739,Health,Health +341736,Health,Health +341731,Health,Health +341728,Health,Health +341727,Health,Health +341725,Health,Health +341724,Health,Health +341723,Health,Health +341720,Health,Health +339113,Health,Health +339112,Health,Health +339111,Health,Health +339110,Health,Health +339109,Health,Health +336134,Health,Health +336133,Health,Health +504443,Health,Health +498865,Health,Health +498852,Health,Health +493403,Health,Health +493401,Health,Health +491048,Health,Health +491040,Health,Health +487282,Health,Health +478967,Health,Health +477128,Health,Health +475936,Health,Health +474633,Health,Health +472917,Health,Health +459869,Health,Health +458591,Health,Health +457663,Health,Health +457564,Health,Health +457561,Health,Health +455873,Health,Health +453750,Health,Health +453748,Health,Health +453747,Health,Health +418396,Health,Health +416438,Health,Health +415822,Health,Health +413223,Health,Health +413089,Health,Health +409625,Health,Health +409624,Health,Health +405175,Health,Health +404955,Health,Health +398500,Health,Health +398498,Health,Health +398496,Health,Health +394391,Health,Health +394387,Health,Health +394383,Health,Health +387998,Health,Health +385651,Health,Health +385647,Health,Health +385645,Health,Health +385643,Health,Health +385639,Health,Health +385637,Health,Health +383664,Health,Health +383663,Health,Health +382548,Health,Health +382543,Health,Health +381480,Health,Health +381476,Health,Health +374505,Health,Health +374504,Health,Health +541800,Health,Health +541799,Health,Health +541798,Health,Health +541796,Health,Health +534774,Health,Health +530850,Health,Health +527671,Health,Health +527669,Health,Health +188187,Climate,Climate +188186,Climate,Climate +188184,Energy,Energy +188142,Energy,Energy +188190,Energy,Energy +188189,Energy,Energy +188188,Energy,Energy +188187,Energy,Energy +188186,Energy,Energy +188184,Environment,Environment +188142,Environment,Environment +188190,Environment,Environment +188189,Environment,Environment +188188,Environment,Environment +188187,Environment,Environment +188186,Environment,Environment +188184,Industry,Industry +188142,Industry,Industry +188190,Industry,Industry +188189,Industry,Industry +188188,Industry,Industry +188187,Industry,Industry +188186,Industry,Industry +188142,Labour,Labour +188185,Labour,Labour +152161,Pensions,Pensions +461954,Pensions,Pensions +199914,Pensions,Pensions +194789,Pensions,Pensions +170745,Pensions,Pensions +168375,Pensions,Pensions +168373,Pensions,Pensions +327654,Economic Development,Economic Development +194861,Economic Development,Economic Development +153019,Economic Development,Economic Development +153018,Economic Development,Economic Development +330151,Economic Development,Economic Development +327707,Economic Development,Economic Development +327697,Economic Development,Economic Development +327692,Economic Development,Economic Development +327684,Economic Development,Economic Development +327676,Economic Development,Economic Development +327674,Economic Development,Economic Development +327671,Economic Development,Economic Development +327669,Economic Development,Economic Development +160665,Health,Health +160497,Health,Health +237730,Health,Health +237729,Health,Health +174005,Health,Health +172854,Health,Health +169536,Health,Health +167030,Health,Health +165265,Health,Health +165265,Research and Development,Research and Development (R&D) +165264,Research and Development,Research and Development (R&D) +160497,Research and Development,Research and Development (R&D) +237730,Research and Development,Research and Development (R&D) +237729,Research and Development,Research and Development (R&D) +172854,Research and Development,Research and Development (R&D) +327878,Pensions,Pensions +322337,Pensions,Pensions +354005,Pensions,Pensions +148218,Financial Institutions,Financial Institutions +191924,Health,Health +191904,Health,Health +191964,Health,Health +343200,Security,Security +337094,Security,Security +180904,Security,Security +169404,Security,Security +158049,Security,Security +158048,Security,Security +152774,Security,Security +151117,Security,Security +311109,Security,Security +243329,Security,Security +235189,Security,Security +226387,Security,Security +225167,Security,Security +219848,Security,Security +219847,Security,Security +206328,Security,Security +204708,Security,Security +368206,Security,Security +368204,Security,Security +368203,Security,Security +152071,Small Business,Small Business +147475,Small Business,Small Business +158286,Small Business,Small Business +158285,Small Business,Small Business +158283,Small Business,Small Business +158277,Small Business,Small Business +158283,Taxation and Finance,Taxation and Finance +158277,Taxation and Finance,Taxation and Finance +152072,Taxation and Finance,Taxation and Finance +152071,Taxation and Finance,Taxation and Finance +147475,Taxation and Finance,Taxation and Finance +158286,Taxation and Finance,Taxation and Finance +462757,Health,Health +460829,Health,Health +156995,Health,Health +156993,Health,Health +156992,Health,Health +156991,Health,Health +454091,Health,Health +540846,Health,Health +537410,Health,Health +527481,Health,Health +520543,Health,Health +511713,Health,Health +509886,Health,Health +509844,Health,Health +509841,Health,Health +507159,Health,Health +507156,Health,Health +500639,Health,Health +500638,Health,Health +494394,Health,Health +494393,Health,Health +494382,Health,Health +492429,Health,Health +492421,Health,Health +489269,Health,Health +489264,Health,Health +489263,Health,Health +489150,Health,Health +489136,Health,Health +489131,Health,Health +489128,Health,Health +489123,Health,Health +487018,Health,Health +486994,Health,Health +486992,Health,Health +486986,Health,Health +486982,Health,Health +486981,Health,Health +486971,Health,Health +486870,Health,Health +485973,Health,Health +484469,Health,Health +484466,Health,Health +484463,Health,Health +484443,Health,Health +481191,Health,Health +481190,Health,Health +481135,Health,Health +481134,Health,Health +481125,Health,Health +481124,Health,Health +481123,Health,Health +481122,Health,Health +481103,Health,Health +481101,Health,Health +481100,Health,Health +480943,Health,Health +480619,Health,Health +480618,Health,Health +480617,Health,Health +480470,Health,Health +480469,Health,Health +480468,Health,Health +480467,Health,Health +479814,Health,Health +479523,Health,Health +479505,Health,Health +479504,Health,Health +478163,Health,Health +478161,Health,Health +478159,Health,Health +478158,Health,Health +478155,Health,Health +478152,Health,Health +478012,Health,Health +478009,Health,Health +478007,Health,Health +477998,Health,Health +477993,Health,Health +477991,Health,Health +477988,Health,Health +477985,Health,Health +475617,Health,Health +475606,Health,Health +475603,Health,Health +475598,Health,Health +475595,Health,Health +475540,Health,Health +475383,Health,Health +475369,Health,Health +475365,Health,Health +473947,Health,Health +473946,Health,Health +473692,Health,Health +473688,Health,Health +473648,Health,Health +471016,Health,Health +471006,Health,Health +468518,Health,Health +468501,Health,Health +468442,Health,Health +387046,Immigration,Immigration +463325,Immigration,Immigration +458381,Official Languages,Official Languages +458379,Official Languages,Official Languages +153038,Official Languages,Official Languages +151904,Official Languages,Official Languages +151902,Official Languages,Official Languages +151901,Official Languages,Official Languages +151900,Official Languages,Official Languages +150484,Official Languages,Official Languages +150482,Official Languages,Official Languages +150481,Official Languages,Official Languages +260651,Official Languages,Official Languages +258350,Official Languages,Official Languages +231170,Official Languages,Official Languages +231169,Official Languages,Official Languages +226028,Official Languages,Official Languages +226027,Official Languages,Official Languages +221547,Official Languages,Official Languages +220967,Official Languages,Official Languages +216427,Official Languages,Official Languages +191544,Official Languages,Official Languages +190401,Official Languages,Official Languages +190400,Official Languages,Official Languages +190399,Official Languages,Official Languages +173806,Official Languages,Official Languages +172145,Official Languages,Official Languages +172144,Official Languages,Official Languages +169581,Official Languages,Official Languages +163403,Official Languages,Official Languages +450379,Official Languages,Official Languages +448832,Official Languages,Official Languages +441029,Official Languages,Official Languages +440659,Official Languages,Official Languages +440657,Official Languages,Official Languages +436606,Official Languages,Official Languages +434244,Official Languages,Official Languages +434066,Official Languages,Official Languages +433027,Official Languages,Official Languages +433026,Official Languages,Official Languages +433025,Official Languages,Official Languages +432748,Official Languages,Official Languages +432747,Official Languages,Official Languages +430341,Official Languages,Official Languages +427536,Official Languages,Official Languages +427332,Official Languages,Official Languages +427331,Official Languages,Official Languages +427179,Official Languages,Official Languages +427159,Official Languages,Official Languages +423604,Official Languages,Official Languages +421148,Official Languages,Official Languages +418432,Official Languages,Official Languages +415846,Official Languages,Official Languages +415022,Official Languages,Official Languages +415016,Official Languages,Official Languages +413883,Official Languages,Official Languages +410360,Official Languages,Official Languages +410358,Official Languages,Official Languages +405939,Official Languages,Official Languages +401855,Official Languages,Official Languages +401850,Official Languages,Official Languages +401846,Official Languages,Official Languages +401845,Official Languages,Official Languages +401844,Official Languages,Official Languages +401313,Official Languages,Official Languages +401312,Official Languages,Official Languages +401311,Official Languages,Official Languages +395836,Official Languages,Official Languages +395834,Official Languages,Official Languages +392980,Official Languages,Official Languages +392942,Official Languages,Official Languages +387046,Official Languages,Official Languages +386452,Official Languages,Official Languages +386451,Official Languages,Official Languages +383943,Official Languages,Official Languages +381259,Official Languages,Official Languages +377249,Official Languages,Official Languages +376157,Official Languages,Official Languages +376154,Official Languages,Official Languages +375905,Official Languages,Official Languages +375904,Official Languages,Official Languages +375903,Official Languages,Official Languages +373169,Official Languages,Official Languages +371918,Official Languages,Official Languages +369516,Official Languages,Official Languages +358682,Official Languages,Official Languages +343827,Official Languages,Official Languages +325777,Official Languages,Official Languages +325631,Official Languages,Official Languages +544783,Official Languages,Official Languages +543403,Official Languages,Official Languages +536044,Official Languages,Official Languages +533803,Official Languages,Official Languages +533132,Official Languages,Official Languages +533129,Official Languages,Official Languages +533086,Official Languages,Official Languages +532990,Official Languages,Official Languages +532981,Official Languages,Official Languages +532883,Official Languages,Official Languages +531266,Official Languages,Official Languages +531125,Official Languages,Official Languages +527579,Official Languages,Official Languages +527028,Official Languages,Official Languages +527027,Official Languages,Official Languages +526801,Official Languages,Official Languages +520504,Official Languages,Official Languages +520490,Official Languages,Official Languages +520253,Official Languages,Official Languages +516846,Official Languages,Official Languages +515219,Official Languages,Official Languages +511635,Official Languages,Official Languages +511634,Official Languages,Official Languages +511633,Official Languages,Official Languages +511631,Official Languages,Official Languages +494277,Official Languages,Official Languages +493901,Official Languages,Official Languages +493849,Official Languages,Official Languages +492489,Official Languages,Official Languages +492488,Official Languages,Official Languages +488764,Official Languages,Official Languages +483272,Official Languages,Official Languages +480432,Official Languages,Official Languages +478404,Official Languages,Official Languages +478403,Official Languages,Official Languages +478400,Official Languages,Official Languages +465224,Official Languages,Official Languages +465222,Official Languages,Official Languages +465221,Official Languages,Official Languages +465216,Official Languages,Official Languages +463326,Official Languages,Official Languages +460291,Official Languages,Official Languages +149979,Economic Development,Economic Development +149978,Economic Development,Economic Development +150198,Economic Development,Economic Development +149980,Energy,Energy +149979,Energy,Energy +149978,Energy,Energy +149979,Environment,Environment +149978,Environment,Environment +150198,Environment,Environment +149979,Industry,Industry +149978,Industry,Industry +150198,Industry,Industry +149980,Internal Trade,Internal Trade +149980,International Trade,International Trade +149980,Mining,Mining +150198,Research and Development,Research and Development (R&D) +149980,Research and Development,Research and Development (R&D) +149979,Research and Development,Research and Development (R&D) +180586,Economic Development,Economic Development +170673,Economic Development,Economic Development +170672,Economic Development,Economic Development +154635,Economic Development,Economic Development +180590,Economic Development,Economic Development +180588,Economic Development,Economic Development +158382,Labour,Labour +158378,Labour,Labour +158377,Labour,Labour +150820,Labour,Labour +150819,Labour,Labour +150818,Labour,Labour +147637,Labour,Labour +147635,Labour,Labour +147634,Labour,Labour +158388,Labour,Labour +158387,Labour,Labour +158386,Labour,Labour +158385,Labour,Labour +158384,Labour,Labour +158382,Transportation,Transportation +158378,Transportation,Transportation +150820,Transportation,Transportation +150819,Transportation,Transportation +151843,Economic Development,Economic Development +151844,Industry,Industry +151843,Industry,Industry +151843,Infrastructure,Infrastructure +151843,International Trade,International Trade +203508,Health,Health +203507,Health,Health +224690,Health,Health +203510,Health,Health +150977,Energy,Energy +305731,Consumer Issues,Consumer Issues +305731,Health,Health +200460,International Relations,International Relations +165558,International Relations,International Relations +233401,International Relations,International Relations +233396,International Relations,International Relations +233393,International Relations,International Relations +168816,International Trade,International Trade +165558,International Trade,International Trade +250815,International Trade,International Trade +250812,International Trade,International Trade +250808,International Trade,International Trade +216948,International Trade,International Trade +308591,Agriculture,Agriculture +308589,Agriculture,Agriculture +161135,Agriculture,Agriculture +225605,Agriculture,Agriculture +225604,Agriculture,Agriculture +225603,Agriculture,Agriculture +225602,Agriculture,Agriculture +225600,Agriculture,Agriculture +401498,Agriculture,Agriculture +401497,Agriculture,Agriculture +355178,Agriculture,Agriculture +355177,Agriculture,Agriculture +355176,Agriculture,Agriculture +355175,Agriculture,Agriculture +379489,Consumer Issues,Consumer Issues +379486,Consumer Issues,Consumer Issues +225600,Consumer Issues,Consumer Issues +379491,Consumer Issues,Consumer Issues +379489,Health,Health +379486,Health,Health +379491,Health,Health +355174,International Trade,International Trade +162026,International Trade,International Trade +225605,International Trade,International Trade +225604,International Trade,International Trade +225603,International Trade,International Trade +225602,International Trade,International Trade +225600,International Trade,International Trade +328677,International Trade,International Trade +328676,International Trade,International Trade +328675,International Trade,International Trade +328674,International Trade,International Trade +328673,International Trade,International Trade +308591,International Trade,International Trade +308589,International Trade,International Trade +276708,International Trade,International Trade +276706,International Trade,International Trade +276704,International Trade,International Trade +276698,International Trade,International Trade +276691,International Trade,International Trade +276683,International Trade,International Trade +275889,International Trade,International Trade +401498,International Trade,International Trade +401497,International Trade,International Trade +379491,International Trade,International Trade +379490,International Trade,International Trade +379489,International Trade,International Trade +379486,International Trade,International Trade +355178,International Trade,International Trade +355177,International Trade,International Trade +355176,International Trade,International Trade +150210,Infrastructure,Infrastructure +158895,Environment,Environment +442386,Sports,Sports +417302,Sports,Sports +163269,Sports,Sports +147763,Sports,Sports +400550,Sports,Sports +393205,Sports,Sports +373686,Sports,Sports +373683,Sports,Sports +373681,Sports,Sports +372598,Sports,Sports +367363,Sports,Sports +344119,Sports,Sports +332297,Sports,Sports +239070,Energy,Energy +239069,Energy,Energy +147816,Energy,Energy +239073,Energy,Energy +239072,Energy,Energy +239070,Research and Development,Research and Development (R&D) +239069,Research and Development,Research and Development (R&D) +147816,Research and Development,Research and Development (R&D) +239073,Research and Development,Research and Development (R&D) +239072,Research and Development,Research and Development (R&D) +514913,Security,Security +414848,Security,Security +147862,Security,Security +262210,Security,Security +259352,Security,Security +259350,Security,Security +259349,Security,Security +259332,Security,Security +246329,Security,Security +212350,Security,Security +199806,Security,Security +190865,Security,Security +185764,Security,Security +182866,Security,Security +175194,Security,Security +172752,Security,Security +172750,Security,Security +168635,Security,Security +165005,Security,Security +162402,Security,Security +376137,Security,Security +371038,Security,Security +314391,Security,Security +314133,Security,Security +314132,Security,Security +541494,Security,Security +534653,Security,Security +534651,Security,Security +534650,Security,Security +534642,Security,Security +534640,Security,Security +531540,Security,Security +529091,Security,Security +529059,Security,Security +529055,Security,Security +519693,Security,Security +447806,Economic Development,Economic Development +447786,Economic Development,Economic Development +154548,Economic Development,Economic Development +154547,Economic Development,Economic Development +180368,Economic Development,Economic Development +180367,Economic Development,Economic Development +180366,Economic Development,Economic Development +426709,Economic Development,Economic Development +425096,Economic Development,Economic Development +405562,Economic Development,Economic Development +405561,Economic Development,Economic Development +403718,Economic Development,Economic Development +403706,Economic Development,Economic Development +315809,Economic Development,Economic Development +312779,Economic Development,Economic Development +310179,Economic Development,Economic Development +310178,Economic Development,Economic Development +303213,Economic Development,Economic Development +303210,Economic Development,Economic Development +303209,Economic Development,Economic Development +303190,Economic Development,Economic Development +303171,Economic Development,Economic Development +296167,Economic Development,Economic Development +296165,Economic Development,Economic Development +276970,Economic Development,Economic Development +467357,Economic Development,Economic Development +457686,Economic Development,Economic Development +457587,Economic Development,Economic Development +452540,Economic Development,Economic Development +452535,Economic Development,Economic Development +447835,Economic Development,Economic Development +447812,Security,Security +426699,Security,Security +206993,Security,Security +206991,Security,Security +200038,Security,Security +200035,Security,Security +180370,Security,Security +175306,Security,Security +175305,Security,Security +170594,Security,Security +161827,Security,Security +161825,Security,Security +159332,Security,Security +159330,Security,Security +159328,Security,Security +159321,Security,Security +159319,Security,Security +159314,Security,Security +156671,Security,Security +154548,Security,Security +154547,Security,Security +152069,Security,Security +152068,Security,Security +289590,Security,Security +281002,Security,Security +280997,Security,Security +280996,Security,Security +280994,Security,Security +280990,Security,Security +280989,Security,Security +263852,Security,Security +263850,Security,Security +263849,Security,Security +253891,Security,Security +233296,Security,Security +230189,Security,Security +223080,Security,Security +223078,Security,Security +223076,Security,Security +223072,Security,Security +223071,Security,Security +223070,Security,Security +216547,Security,Security +211490,Security,Security +403693,Security,Security +400555,Security,Security +387999,Security,Security +387997,Security,Security +387253,Security,Security +372361,Security,Security +372359,Security,Security +366870,Security,Security +347159,Security,Security +340134,Security,Security +335967,Security,Security +331437,Security,Security +329976,Security,Security +329975,Security,Security +459676,Security,Security +459675,Security,Security +459674,Security,Security +457685,Security,Security +457683,Security,Security +457589,Security,Security +447835,Security,Security +447822,Security,Security +162836,Research and Development,Research and Development (R&D) +147947,Research and Development,Research and Development (R&D) +205027,Research and Development,Research and Development (R&D) +201788,Research and Development,Research and Development (R&D) +201787,Research and Development,Research and Development (R&D) +201767,Research and Development,Research and Development (R&D) +175052,Research and Development,Research and Development (R&D) +486990,Research and Development,Research and Development (R&D) +486989,Research and Development,Research and Development (R&D) +169632,Research and Development,Research and Development (R&D) +163800,Research and Development,Research and Development (R&D) +163796,Research and Development,Research and Development (R&D) +163794,Research and Development,Research and Development (R&D) +163793,Research and Development,Research and Development (R&D) +161115,Research and Development,Research and Development (R&D) +160795,Research and Development,Research and Development (R&D) +160496,Research and Development,Research and Development (R&D) +180862,Research and Development,Research and Development (R&D) +180861,Research and Development,Research and Development (R&D) +180859,Research and Development,Research and Development (R&D) +180857,Research and Development,Research and Development (R&D) +180855,Research and Development,Research and Development (R&D) +180853,Research and Development,Research and Development (R&D) +177125,Research and Development,Research and Development (R&D) +177124,Research and Development,Research and Development (R&D) +177096,Research and Development,Research and Development (R&D) +177095,Research and Development,Research and Development (R&D) +176948,Research and Development,Research and Development (R&D) +169966,Research and Development,Research and Development (R&D) +169648,Research and Development,Research and Development (R&D) +169646,Research and Development,Research and Development (R&D) +169644,Research and Development,Research and Development (R&D) +169643,Research and Development,Research and Development (R&D) +169642,Research and Development,Research and Development (R&D) +169641,Research and Development,Research and Development (R&D) +169640,Research and Development,Research and Development (R&D) +169639,Research and Development,Research and Development (R&D) +169638,Research and Development,Research and Development (R&D) +169637,Research and Development,Research and Development (R&D) +169636,Research and Development,Research and Development (R&D) +169634,Research and Development,Research and Development (R&D) +169633,Research and Development,Research and Development (R&D) +270140,Research and Development,Research and Development (R&D) +270139,Research and Development,Research and Development (R&D) +270137,Research and Development,Research and Development (R&D) +270136,Research and Development,Research and Development (R&D) +270135,Research and Development,Research and Development (R&D) +270134,Research and Development,Research and Development (R&D) +270133,Research and Development,Research and Development (R&D) +270132,Research and Development,Research and Development (R&D) +270130,Research and Development,Research and Development (R&D) +257990,Research and Development,Research and Development (R&D) +257989,Research and Development,Research and Development (R&D) +257972,Research and Development,Research and Development (R&D) +257971,Research and Development,Research and Development (R&D) +257970,Research and Development,Research and Development (R&D) +257969,Research and Development,Research and Development (R&D) +257951,Research and Development,Research and Development (R&D) +244038,Research and Development,Research and Development (R&D) +244037,Research and Development,Research and Development (R&D) +244035,Research and Development,Research and Development (R&D) +244034,Research and Development,Research and Development (R&D) +244033,Research and Development,Research and Development (R&D) +244032,Research and Development,Research and Development (R&D) +244031,Research and Development,Research and Development (R&D) +244030,Research and Development,Research and Development (R&D) +244029,Research and Development,Research and Development (R&D) +244028,Research and Development,Research and Development (R&D) +244027,Research and Development,Research and Development (R&D) +244026,Research and Development,Research and Development (R&D) +244025,Research and Development,Research and Development (R&D) +244024,Research and Development,Research and Development (R&D) +244023,Research and Development,Research and Development (R&D) +229553,Research and Development,Research and Development (R&D) +229552,Research and Development,Research and Development (R&D) +229551,Research and Development,Research and Development (R&D) +229550,Research and Development,Research and Development (R&D) +229549,Research and Development,Research and Development (R&D) +229546,Research and Development,Research and Development (R&D) +229545,Research and Development,Research and Development (R&D) +229544,Research and Development,Research and Development (R&D) +223498,Research and Development,Research and Development (R&D) +223497,Research and Development,Research and Development (R&D) +223495,Research and Development,Research and Development (R&D) +223493,Research and Development,Research and Development (R&D) +223490,Research and Development,Research and Development (R&D) +223486,Research and Development,Research and Development (R&D) +223480,Research and Development,Research and Development (R&D) +206192,Research and Development,Research and Development (R&D) +206191,Research and Development,Research and Development (R&D) +203810,Research and Development,Research and Development (R&D) +203809,Research and Development,Research and Development (R&D) +203808,Research and Development,Research and Development (R&D) +203794,Research and Development,Research and Development (R&D) +200268,Research and Development,Research and Development (R&D) +198369,Research and Development,Research and Development (R&D) +198367,Research and Development,Research and Development (R&D) +198347,Research and Development,Research and Development (R&D) +198267,Research and Development,Research and Development (R&D) +198250,Research and Development,Research and Development (R&D) +198249,Research and Development,Research and Development (R&D) +198247,Research and Development,Research and Development (R&D) +198228,Research and Development,Research and Development (R&D) +188532,Research and Development,Research and Development (R&D) +483192,Research and Development,Research and Development (R&D) +483190,Research and Development,Research and Development (R&D) +483189,Research and Development,Research and Development (R&D) +483188,Research and Development,Research and Development (R&D) +483187,Research and Development,Research and Development (R&D) +483186,Research and Development,Research and Development (R&D) +483185,Research and Development,Research and Development (R&D) +483184,Research and Development,Research and Development (R&D) +483182,Research and Development,Research and Development (R&D) +481026,Research and Development,Research and Development (R&D) +481025,Research and Development,Research and Development (R&D) +481024,Research and Development,Research and Development (R&D) +481023,Research and Development,Research and Development (R&D) +481022,Research and Development,Research and Development (R&D) +481021,Research and Development,Research and Development (R&D) +481020,Research and Development,Research and Development (R&D) +481019,Research and Development,Research and Development (R&D) +481018,Research and Development,Research and Development (R&D) +481017,Research and Development,Research and Development (R&D) +481016,Research and Development,Research and Development (R&D) +481015,Research and Development,Research and Development (R&D) +478971,Research and Development,Research and Development (R&D) +478970,Research and Development,Research and Development (R&D) +478969,Research and Development,Research and Development (R&D) +478968,Research and Development,Research and Development (R&D) +476667,Research and Development,Research and Development (R&D) +476665,Research and Development,Research and Development (R&D) +476663,Research and Development,Research and Development (R&D) +476662,Research and Development,Research and Development (R&D) +474673,Research and Development,Research and Development (R&D) +474671,Research and Development,Research and Development (R&D) +474670,Research and Development,Research and Development (R&D) +474669,Research and Development,Research and Development (R&D) +474666,Research and Development,Research and Development (R&D) +474665,Research and Development,Research and Development (R&D) +474664,Research and Development,Research and Development (R&D) +474662,Research and Development,Research and Development (R&D) +474660,Research and Development,Research and Development (R&D) +473468,Research and Development,Research and Development (R&D) +472687,Research and Development,Research and Development (R&D) +472448,Research and Development,Research and Development (R&D) +472447,Research and Development,Research and Development (R&D) +472446,Research and Development,Research and Development (R&D) +472445,Research and Development,Research and Development (R&D) +472443,Research and Development,Research and Development (R&D) +543606,Research and Development,Research and Development (R&D) +543605,Research and Development,Research and Development (R&D) +543603,Research and Development,Research and Development (R&D) +541189,Research and Development,Research and Development (R&D) +541186,Research and Development,Research and Development (R&D) +539217,Research and Development,Research and Development (R&D) +539216,Research and Development,Research and Development (R&D) +537028,Research and Development,Research and Development (R&D) +537027,Research and Development,Research and Development (R&D) +537026,Research and Development,Research and Development (R&D) +537025,Research and Development,Research and Development (R&D) +537024,Research and Development,Research and Development (R&D) +537023,Research and Development,Research and Development (R&D) +537022,Research and Development,Research and Development (R&D) +537019,Research and Development,Research and Development (R&D) +533570,Research and Development,Research and Development (R&D) +533569,Research and Development,Research and Development (R&D) +533568,Research and Development,Research and Development (R&D) +533566,Research and Development,Research and Development (R&D) +533565,Research and Development,Research and Development (R&D) +533543,Research and Development,Research and Development (R&D) +533540,Research and Development,Research and Development (R&D) +533531,Research and Development,Research and Development (R&D) +533528,Research and Development,Research and Development (R&D) +533523,Research and Development,Research and Development (R&D) +533521,Research and Development,Research and Development (R&D) +533517,Research and Development,Research and Development (R&D) +533516,Research and Development,Research and Development (R&D) +533514,Research and Development,Research and Development (R&D) +533512,Research and Development,Research and Development (R&D) +533510,Research and Development,Research and Development (R&D) +530426,Research and Development,Research and Development (R&D) +530425,Research and Development,Research and Development (R&D) +530424,Research and Development,Research and Development (R&D) +530423,Research and Development,Research and Development (R&D) +530422,Research and Development,Research and Development (R&D) +530421,Research and Development,Research and Development (R&D) +530420,Research and Development,Research and Development (R&D) +530419,Research and Development,Research and Development (R&D) +530415,Research and Development,Research and Development (R&D) +527361,Research and Development,Research and Development (R&D) +527359,Research and Development,Research and Development (R&D) +527358,Research and Development,Research and Development (R&D) +527357,Research and Development,Research and Development (R&D) +527356,Research and Development,Research and Development (R&D) +527347,Research and Development,Research and Development (R&D) +527313,Research and Development,Research and Development (R&D) +524605,Research and Development,Research and Development (R&D) +524602,Research and Development,Research and Development (R&D) +524600,Research and Development,Research and Development (R&D) +524597,Research and Development,Research and Development (R&D) +524595,Research and Development,Research and Development (R&D) +524592,Research and Development,Research and Development (R&D) +524589,Research and Development,Research and Development (R&D) +524585,Research and Development,Research and Development (R&D) +521120,Research and Development,Research and Development (R&D) +521114,Research and Development,Research and Development (R&D) +518987,Research and Development,Research and Development (R&D) +518984,Research and Development,Research and Development (R&D) +518982,Research and Development,Research and Development (R&D) +518980,Research and Development,Research and Development (R&D) +518975,Research and Development,Research and Development (R&D) +518973,Research and Development,Research and Development (R&D) +518963,Research and Development,Research and Development (R&D) +516568,Research and Development,Research and Development (R&D) +516567,Research and Development,Research and Development (R&D) +516566,Research and Development,Research and Development (R&D) +516213,Research and Development,Research and Development (R&D) +515215,Research and Development,Research and Development (R&D) +515214,Research and Development,Research and Development (R&D) +515213,Research and Development,Research and Development (R&D) +515212,Research and Development,Research and Development (R&D) +515211,Research and Development,Research and Development (R&D) +515209,Research and Development,Research and Development (R&D) +515208,Research and Development,Research and Development (R&D) +515207,Research and Development,Research and Development (R&D) +515206,Research and Development,Research and Development (R&D) +514497,Research and Development,Research and Development (R&D) +514496,Research and Development,Research and Development (R&D) +513689,Research and Development,Research and Development (R&D) +513688,Research and Development,Research and Development (R&D) +512109,Research and Development,Research and Development (R&D) +509754,Research and Development,Research and Development (R&D) +509753,Research and Development,Research and Development (R&D) +509751,Research and Development,Research and Development (R&D) +509748,Research and Development,Research and Development (R&D) +509746,Research and Development,Research and Development (R&D) +509745,Research and Development,Research and Development (R&D) +509743,Research and Development,Research and Development (R&D) +507479,Research and Development,Research and Development (R&D) +507478,Research and Development,Research and Development (R&D) +504441,Research and Development,Research and Development (R&D) +504440,Research and Development,Research and Development (R&D) +504439,Research and Development,Research and Development (R&D) +504438,Research and Development,Research and Development (R&D) +504436,Research and Development,Research and Development (R&D) +504433,Research and Development,Research and Development (R&D) +504432,Research and Development,Research and Development (R&D) +500840,Research and Development,Research and Development (R&D) +500837,Research and Development,Research and Development (R&D) +500836,Research and Development,Research and Development (R&D) +500817,Research and Development,Research and Development (R&D) +500816,Research and Development,Research and Development (R&D) +500814,Research and Development,Research and Development (R&D) +500813,Research and Development,Research and Development (R&D) +497663,Research and Development,Research and Development (R&D) +497661,Research and Development,Research and Development (R&D) +497659,Research and Development,Research and Development (R&D) +497657,Research and Development,Research and Development (R&D) +497656,Research and Development,Research and Development (R&D) +497653,Research and Development,Research and Development (R&D) +497651,Research and Development,Research and Development (R&D) +497648,Research and Development,Research and Development (R&D) +497647,Research and Development,Research and Development (R&D) +497646,Research and Development,Research and Development (R&D) +497644,Research and Development,Research and Development (R&D) +497643,Research and Development,Research and Development (R&D) +497640,Research and Development,Research and Development (R&D) +494903,Research and Development,Research and Development (R&D) +494896,Research and Development,Research and Development (R&D) +494411,Research and Development,Research and Development (R&D) +494409,Research and Development,Research and Development (R&D) +494408,Research and Development,Research and Development (R&D) +494407,Research and Development,Research and Development (R&D) +494404,Research and Development,Research and Development (R&D) +493072,Research and Development,Research and Development (R&D) +492016,Research and Development,Research and Development (R&D) +492015,Research and Development,Research and Development (R&D) +492013,Research and Development,Research and Development (R&D) +492012,Research and Development,Research and Development (R&D) +489569,Research and Development,Research and Development (R&D) +489566,Research and Development,Research and Development (R&D) +489564,Research and Development,Research and Development (R&D) +450467,Pensions,Pensions +450461,Pensions,Pensions +159639,Pensions,Pensions +159638,Pensions,Pensions +159635,Pensions,Pensions +159631,Pensions,Pensions +159628,Pensions,Pensions +159626,Pensions,Pensions +159622,Pensions,Pensions +157249,Pensions,Pensions +157192,Pensions,Pensions +153695,Pensions,Pensions +147995,Pensions,Pensions +200010,Pensions,Pensions +197045,Pensions,Pensions +197042,Pensions,Pensions +197041,Pensions,Pensions +192784,Pensions,Pensions +192182,Pensions,Pensions +191044,Pensions,Pensions +174854,Pensions,Pensions +171528,Pensions,Pensions +171526,Pensions,Pensions +170649,Pensions,Pensions +167333,Pensions,Pensions +164972,Pensions,Pensions +164971,Pensions,Pensions +162497,Pensions,Pensions +162475,Pensions,Pensions +162466,Pensions,Pensions +162452,Pensions,Pensions +162447,Pensions,Pensions +162412,Pensions,Pensions +160076,Pensions,Pensions +160075,Pensions,Pensions +159931,Pensions,Pensions +159880,Pensions,Pensions +159874,Pensions,Pensions +159869,Pensions,Pensions +159866,Pensions,Pensions +159862,Pensions,Pensions +159858,Pensions,Pensions +159823,Pensions,Pensions +159813,Pensions,Pensions +159793,Pensions,Pensions +159770,Pensions,Pensions +159679,Pensions,Pensions +159671,Pensions,Pensions +159663,Pensions,Pensions +159657,Pensions,Pensions +159646,Pensions,Pensions +159641,Pensions,Pensions +372683,Pensions,Pensions +372590,Pensions,Pensions +335906,Pensions,Pensions +313813,Pensions,Pensions +313049,Pensions,Pensions +230580,Pensions,Pensions +230570,Pensions,Pensions +230569,Pensions,Pensions +226984,Pensions,Pensions +222649,Pensions,Pensions +222647,Pensions,Pensions +222645,Pensions,Pensions +222641,Pensions,Pensions +222638,Pensions,Pensions +211771,Pensions,Pensions +211768,Pensions,Pensions +205208,Pensions,Pensions +450454,Pensions,Pensions +450451,Pensions,Pensions +450450,Pensions,Pensions +450449,Pensions,Pensions +450447,Pensions,Pensions +450446,Pensions,Pensions +450433,Pensions,Pensions +450428,Pensions,Pensions +450427,Pensions,Pensions +450426,Pensions,Pensions +450425,Pensions,Pensions +450424,Pensions,Pensions +450423,Pensions,Pensions +450422,Pensions,Pensions +450419,Pensions,Pensions +450418,Pensions,Pensions +450417,Pensions,Pensions +450416,Pensions,Pensions +450415,Pensions,Pensions +450414,Pensions,Pensions +450413,Pensions,Pensions +450411,Pensions,Pensions +450410,Pensions,Pensions +450406,Pensions,Pensions +450403,Pensions,Pensions +450400,Pensions,Pensions +450399,Pensions,Pensions +450392,Pensions,Pensions +450389,Pensions,Pensions +450388,Pensions,Pensions +450383,Pensions,Pensions +450380,Pensions,Pensions +450377,Pensions,Pensions +450376,Pensions,Pensions +450374,Pensions,Pensions +450373,Pensions,Pensions +450366,Pensions,Pensions +450242,Pensions,Pensions +450240,Pensions,Pensions +450239,Pensions,Pensions +450238,Pensions,Pensions +450127,Pensions,Pensions +450126,Pensions,Pensions +450105,Pensions,Pensions +450103,Pensions,Pensions +450098,Pensions,Pensions +450085,Pensions,Pensions +450064,Pensions,Pensions +450060,Pensions,Pensions +450048,Pensions,Pensions +450026,Pensions,Pensions +450022,Pensions,Pensions +450020,Pensions,Pensions +449989,Pensions,Pensions +449965,Pensions,Pensions +449964,Pensions,Pensions +449103,Pensions,Pensions +449102,Pensions,Pensions +449101,Pensions,Pensions +449100,Pensions,Pensions +449099,Pensions,Pensions +449093,Pensions,Pensions +449091,Pensions,Pensions +449086,Pensions,Pensions +449085,Pensions,Pensions +449084,Pensions,Pensions +449083,Pensions,Pensions +449081,Pensions,Pensions +449080,Pensions,Pensions +449078,Pensions,Pensions +449077,Pensions,Pensions +449072,Pensions,Pensions +422923,Pensions,Pensions +422922,Pensions,Pensions +422921,Pensions,Pensions +422920,Pensions,Pensions +422919,Pensions,Pensions +422917,Pensions,Pensions +422916,Pensions,Pensions +422915,Pensions,Pensions +422914,Pensions,Pensions +422913,Pensions,Pensions +422912,Pensions,Pensions +422911,Pensions,Pensions +422910,Pensions,Pensions +422909,Pensions,Pensions +422908,Pensions,Pensions +422907,Pensions,Pensions +422906,Pensions,Pensions +422905,Pensions,Pensions +422904,Pensions,Pensions +422903,Pensions,Pensions +422902,Pensions,Pensions +422900,Pensions,Pensions +422899,Pensions,Pensions +422898,Pensions,Pensions +422897,Pensions,Pensions +422896,Pensions,Pensions +422895,Pensions,Pensions +422892,Pensions,Pensions +414203,Pensions,Pensions +414202,Pensions,Pensions +405500,Pensions,Pensions +405497,Pensions,Pensions +383716,Pensions,Pensions +376653,Pensions,Pensions +528808,Pensions,Pensions +524430,Pensions,Pensions +469291,Pensions,Pensions +468433,Pensions,Pensions +468432,Pensions,Pensions +468430,Pensions,Pensions +468429,Pensions,Pensions +468422,Pensions,Pensions +468420,Pensions,Pensions +468417,Pensions,Pensions +468384,Pensions,Pensions +468383,Pensions,Pensions +468379,Pensions,Pensions +468373,Pensions,Pensions +468371,Pensions,Pensions +468361,Pensions,Pensions +468359,Pensions,Pensions +468343,Pensions,Pensions +468328,Pensions,Pensions +468303,Pensions,Pensions +468297,Pensions,Pensions +468292,Pensions,Pensions +468272,Pensions,Pensions +468268,Pensions,Pensions +467694,Pensions,Pensions +467690,Pensions,Pensions +467688,Pensions,Pensions +467686,Pensions,Pensions +467684,Pensions,Pensions +467680,Pensions,Pensions +467673,Pensions,Pensions +467627,Pensions,Pensions +467622,Pensions,Pensions +467620,Pensions,Pensions +467617,Pensions,Pensions +467612,Pensions,Pensions +467606,Pensions,Pensions +467602,Pensions,Pensions +467599,Pensions,Pensions +467596,Pensions,Pensions +467591,Pensions,Pensions +467586,Pensions,Pensions +467580,Pensions,Pensions +467553,Pensions,Pensions +467548,Pensions,Pensions +467544,Pensions,Pensions +467539,Pensions,Pensions +467354,Pensions,Pensions +467232,Pensions,Pensions +467231,Pensions,Pensions +467230,Pensions,Pensions +467229,Pensions,Pensions +467228,Pensions,Pensions +467197,Pensions,Pensions +467186,Pensions,Pensions +467172,Pensions,Pensions +467165,Pensions,Pensions +467160,Pensions,Pensions +467156,Pensions,Pensions +467141,Pensions,Pensions +467139,Pensions,Pensions +467121,Pensions,Pensions +467108,Pensions,Pensions +467071,Pensions,Pensions +467053,Pensions,Pensions +467052,Pensions,Pensions +467050,Pensions,Pensions +467049,Pensions,Pensions +467042,Pensions,Pensions +467031,Pensions,Pensions +467025,Pensions,Pensions +467021,Pensions,Pensions +467006,Pensions,Pensions +466999,Pensions,Pensions +466981,Pensions,Pensions +466977,Pensions,Pensions +466975,Pensions,Pensions +466962,Pensions,Pensions +466954,Pensions,Pensions +466946,Pensions,Pensions +466934,Pensions,Pensions +466929,Pensions,Pensions +466866,Pensions,Pensions +466865,Pensions,Pensions +466864,Pensions,Pensions +466861,Pensions,Pensions +466860,Pensions,Pensions +466859,Pensions,Pensions +466857,Pensions,Pensions +466855,Pensions,Pensions +466853,Pensions,Pensions +466852,Pensions,Pensions +466799,Pensions,Pensions +466795,Pensions,Pensions +466792,Pensions,Pensions +466790,Pensions,Pensions +466789,Pensions,Pensions +466788,Pensions,Pensions +466786,Pensions,Pensions +466782,Pensions,Pensions +466775,Pensions,Pensions +466772,Pensions,Pensions +466768,Pensions,Pensions +466762,Pensions,Pensions +466760,Pensions,Pensions +466758,Pensions,Pensions +466756,Pensions,Pensions +466754,Pensions,Pensions +466753,Pensions,Pensions +466751,Pensions,Pensions +466744,Pensions,Pensions +466743,Pensions,Pensions +466742,Pensions,Pensions +466741,Pensions,Pensions +466740,Pensions,Pensions +466735,Pensions,Pensions +466729,Pensions,Pensions +466728,Pensions,Pensions +466724,Pensions,Pensions +466698,Pensions,Pensions +466690,Pensions,Pensions +466689,Pensions,Pensions +466679,Pensions,Pensions +466673,Pensions,Pensions +466672,Pensions,Pensions +466645,Pensions,Pensions +466638,Pensions,Pensions +466635,Pensions,Pensions +466634,Pensions,Pensions +466628,Pensions,Pensions +466625,Pensions,Pensions +466621,Pensions,Pensions +466445,Pensions,Pensions +466437,Pensions,Pensions +466436,Pensions,Pensions +466433,Pensions,Pensions +466428,Pensions,Pensions +466426,Pensions,Pensions +466422,Pensions,Pensions +466418,Pensions,Pensions +466417,Pensions,Pensions +466414,Pensions,Pensions +466374,Pensions,Pensions +466372,Pensions,Pensions +466364,Pensions,Pensions +466362,Pensions,Pensions +466359,Pensions,Pensions +466352,Pensions,Pensions +466329,Pensions,Pensions +466309,Pensions,Pensions +450670,Pensions,Pensions +450669,Pensions,Pensions +450668,Pensions,Pensions +450667,Pensions,Pensions +450666,Pensions,Pensions +450664,Pensions,Pensions +450663,Pensions,Pensions +450661,Pensions,Pensions +450657,Pensions,Pensions +450656,Pensions,Pensions +450655,Pensions,Pensions +450654,Pensions,Pensions +450653,Pensions,Pensions +450652,Pensions,Pensions +450651,Pensions,Pensions +450649,Pensions,Pensions +450647,Pensions,Pensions +450646,Pensions,Pensions +450645,Pensions,Pensions +450644,Pensions,Pensions +450643,Pensions,Pensions +450642,Pensions,Pensions +450641,Pensions,Pensions +450640,Pensions,Pensions +450639,Pensions,Pensions +450638,Pensions,Pensions +450637,Pensions,Pensions +450636,Pensions,Pensions +450635,Pensions,Pensions +450634,Pensions,Pensions +450633,Pensions,Pensions +450632,Pensions,Pensions +450631,Pensions,Pensions +450630,Pensions,Pensions +450629,Pensions,Pensions +450628,Pensions,Pensions +450626,Pensions,Pensions +450621,Pensions,Pensions +450620,Pensions,Pensions +450619,Pensions,Pensions +450618,Pensions,Pensions +450617,Pensions,Pensions +450615,Pensions,Pensions +450613,Pensions,Pensions +450612,Pensions,Pensions +450610,Pensions,Pensions +450609,Pensions,Pensions +450608,Pensions,Pensions +450607,Pensions,Pensions +450606,Pensions,Pensions +450605,Pensions,Pensions +450604,Pensions,Pensions +450603,Pensions,Pensions +450556,Pensions,Pensions +450553,Pensions,Pensions +450552,Pensions,Pensions +450551,Pensions,Pensions +450547,Pensions,Pensions +450546,Pensions,Pensions +450530,Pensions,Pensions +450529,Pensions,Pensions +450525,Pensions,Pensions +450524,Pensions,Pensions +450516,Pensions,Pensions +450515,Pensions,Pensions +450512,Pensions,Pensions +450511,Pensions,Pensions +450509,Pensions,Pensions +450500,Pensions,Pensions +450497,Pensions,Pensions +450495,Pensions,Pensions +450493,Pensions,Pensions +450492,Pensions,Pensions +450490,Pensions,Pensions +450489,Pensions,Pensions +450488,Pensions,Pensions +450487,Pensions,Pensions +450485,Pensions,Pensions +450484,Pensions,Pensions +450483,Pensions,Pensions +450482,Pensions,Pensions +450480,Pensions,Pensions +450478,Pensions,Pensions +450477,Pensions,Pensions +450476,Pensions,Pensions +450475,Pensions,Pensions +450474,Pensions,Pensions +450472,Pensions,Pensions +450471,Pensions,Pensions +450470,Pensions,Pensions +450469,Pensions,Pensions +401715,International Development,Développement international +401564,International Development,Développement international +157175,International Development,Développement international +157172,International Development,Développement international +157168,International Development,Développement international +157167,International Development,Développement international +157164,International Development,Développement international +152440,International Development,Développement international +152439,International Development,Développement international +152438,International Development,Développement international +330313,International Development,Développement international +323964,International Development,Développement international +323962,International Development,Développement international +321314,International Development,Développement international +321313,International Development,Développement international +321309,International Development,Développement international +316332,International Development,Développement international +316331,International Development,Développement international +316330,International Development,Développement international +314890,International Development,Développement international +314029,International Development,Développement international +307430,International Development,Développement international +307429,International Development,Développement international +306271,International Development,Développement international +306270,International Development,Développement international +306249,International Development,Développement international +299251,International Development,Développement international +299237,International Development,Développement international +299234,International Development,Développement international +299214,International Development,Développement international +299212,International Development,Développement international +282330,International Development,Développement international +280835,International Development,Développement international +280834,International Development,Développement international +280832,International Development,Développement international +280831,International Development,Développement international +280830,International Development,Développement international +280829,International Development,Développement international +276530,International Development,Développement international +275797,International Development,Développement international +275792,International Development,Développement international +275791,International Development,Développement international +227177,International Development,Développement international +227163,International Development,Développement international +223064,International Development,Développement international +223057,International Development,Développement international +223049,International Development,Développement international +192825,International Development,Développement international +395271,International Development,Développement international +395270,International Development,Développement international +395269,International Development,Développement international +395139,International Development,Développement international +395137,International Development,Développement international +389762,International Development,Développement international +389761,International Development,Développement international +389760,International Development,Développement international +389759,International Development,Développement international +389758,International Development,Développement international +389757,International Development,Développement international +389756,International Development,Développement international +389754,International Development,Développement international +389753,International Development,Développement international +389752,International Development,Développement international +389750,International Development,Développement international +388796,International Development,Développement international +388794,International Development,Développement international +376414,International Development,Développement international +376412,International Development,Développement international +376406,International Development,Développement international +376401,International Development,Développement international +374561,International Development,Développement international +371228,International Development,Développement international +371226,International Development,Développement international +371225,International Development,Développement international +369426,International Development,Développement international +369425,International Development,Développement international +369424,International Development,Développement international +367189,International Development,Développement international +367188,International Development,Développement international +367187,International Development,Développement international +362825,International Development,Développement international +362823,International Development,Développement international +358159,International Development,Développement international +356432,International Development,Développement international +351507,International Development,Développement international +347230,International Development,Développement international +347228,International Development,Développement international +347225,International Development,Développement international +347220,International Development,Développement international +343807,International Development,Développement international +343806,International Development,Développement international +343796,International Development,Développement international +343794,International Development,Développement international +341101,International Development,Développement international +341099,International Development,Développement international +334575,International Development,Développement international +333261,International Development,Développement international +536794,International Development,Développement international +530528,International Development,Développement international +530177,International Development,Développement international +530176,International Development,Développement international +530175,International Development,Développement international +523178,International Development,Développement international +512227,International Development,Développement international +493136,International Development,Développement international +490006,International Development,Développement international +466961,International Development,Développement international +451318,International Development,Développement international +451315,International Development,Développement international +448804,International Development,Développement international +437257,International Development,Développement international +429090,International Development,Développement international +423805,International Development,Développement international +411129,International Development,Développement international +407640,International Development,Développement international +401795,International Development,Développement international +401794,International Development,Développement international +401722,International Development,Développement international +401720,International Development,Développement international +401718,International Development,Développement international +342088,Financial Institutions,Financial Institutions +342087,Financial Institutions,Financial Institutions +148029,Financial Institutions,Financial Institutions +277852,Financial Institutions,Financial Institutions +277850,Financial Institutions,Financial Institutions +271871,Financial Institutions,Financial Institutions +271870,Financial Institutions,Financial Institutions +271869,Financial Institutions,Financial Institutions +270169,Financial Institutions,Financial Institutions +267510,Financial Institutions,Financial Institutions +267509,Financial Institutions,Financial Institutions +267489,Financial Institutions,Financial Institutions +261631,Financial Institutions,Financial Institutions +261620,Financial Institutions,Financial Institutions +231129,Financial Institutions,Financial Institutions +227230,Financial Institutions,Financial Institutions +227223,Financial Institutions,Financial Institutions +223192,Financial Institutions,Financial Institutions +223187,Financial Institutions,Financial Institutions +218367,Financial Institutions,Financial Institutions +218347,Financial Institutions,Financial Institutions +211942,Financial Institutions,Financial Institutions +211940,Financial Institutions,Financial Institutions +211937,Financial Institutions,Financial Institutions +161683,Financial Institutions,Financial Institutions +331654,Financial Institutions,Financial Institutions +325129,Financial Institutions,Financial Institutions +325128,Financial Institutions,Financial Institutions +320709,Financial Institutions,Financial Institutions +316849,Financial Institutions,Financial Institutions +294089,Financial Institutions,Financial Institutions +421382,Financial Institutions,Financial Institutions +421380,Financial Institutions,Financial Institutions +375752,Financial Institutions,Financial Institutions +373123,Financial Institutions,Financial Institutions +365029,Financial Institutions,Financial Institutions +365027,Financial Institutions,Financial Institutions +348747,Financial Institutions,Financial Institutions +347798,Financial Institutions,Financial Institutions +342092,Financial Institutions,Financial Institutions +342091,Financial Institutions,Financial Institutions +342090,Financial Institutions,Financial Institutions +167641,Agriculture,Agriculture +163248,Agriculture,Agriculture +157045,Agriculture,Agriculture +154849,Agriculture,Agriculture +154846,Agriculture,Agriculture +148196,Agriculture,Agriculture +167652,Agriculture,Agriculture +167642,International Trade,International Trade +167641,International Trade,International Trade +167641,Transportation,Transportation +157037,Transportation,Transportation +167652,Transportation,Transportation +159737,Pensions,Pensions +159734,Pensions,Pensions +166113,Pensions,Pensions +163148,Pensions,Pensions +162207,Pensions,Pensions +162178,Pensions,Pensions +162175,Pensions,Pensions +162174,Pensions,Pensions +162172,Pensions,Pensions +162167,Pensions,Pensions +512657,Research and Development,Research and Development (R&D) +512653,Research and Development,Research and Development (R&D) +169055,Research and Development,Research and Development (R&D) +169053,Research and Development,Research and Development (R&D) +166002,Research and Development,Research and Development (R&D) +165986,Research and Development,Research and Development (R&D) +163405,Research and Development,Research and Development (R&D) +159600,Research and Development,Research and Development (R&D) +159593,Research and Development,Research and Development (R&D) +159569,Research and Development,Research and Development (R&D) +159568,Research and Development,Research and Development (R&D) +154869,Research and Development,Research and Development (R&D) +148110,Research and Development,Research and Development (R&D) +263962,Research and Development,Research and Development (R&D) +263954,Research and Development,Research and Development (R&D) +244899,Research and Development,Research and Development (R&D) +244622,Research and Development,Research and Development (R&D) +244417,Research and Development,Research and Development (R&D) +244413,Research and Development,Research and Development (R&D) +244409,Research and Development,Research and Development (R&D) +244408,Research and Development,Research and Development (R&D) +244404,Research and Development,Research and Development (R&D) +244402,Research and Development,Research and Development (R&D) +244398,Research and Development,Research and Development (R&D) +244393,Research and Development,Research and Development (R&D) +244392,Research and Development,Research and Development (R&D) +244386,Research and Development,Research and Development (R&D) +244350,Research and Development,Research and Development (R&D) +240853,Research and Development,Research and Development (R&D) +240552,Research and Development,Research and Development (R&D) +236830,Research and Development,Research and Development (R&D) +229103,Research and Development,Research and Development (R&D) +229098,Research and Development,Research and Development (R&D) +225867,Research and Development,Research and Development (R&D) +225728,Research and Development,Research and Development (R&D) +225727,Research and Development,Research and Development (R&D) +222751,Research and Development,Research and Development (R&D) +222749,Research and Development,Research and Development (R&D) +221788,Research and Development,Research and Development (R&D) +216508,Research and Development,Research and Development (R&D) +210569,Research and Development,Research and Development (R&D) +210568,Research and Development,Research and Development (R&D) +210168,Research and Development,Research and Development (R&D) +207368,Research and Development,Research and Development (R&D) +207366,Research and Development,Research and Development (R&D) +207362,Research and Development,Research and Development (R&D) +207353,Research and Development,Research and Development (R&D) +206287,Research and Development,Research and Development (R&D) +205311,Research and Development,Research and Development (R&D) +205270,Research and Development,Research and Development (R&D) +205269,Research and Development,Research and Development (R&D) +205190,Research and Development,Research and Development (R&D) +205189,Research and Development,Research and Development (R&D) +202528,Research and Development,Research and Development (R&D) +202248,Research and Development,Research and Development (R&D) +202247,Research and Development,Research and Development (R&D) +201947,Research and Development,Research and Development (R&D) +201927,Research and Development,Research and Development (R&D) +193572,Research and Development,Research and Development (R&D) +188513,Research and Development,Research and Development (R&D) +185354,Research and Development,Research and Development (R&D) +180592,Research and Development,Research and Development (R&D) +175524,Research and Development,Research and Development (R&D) +173483,Research and Development,Research and Development (R&D) +170893,Research and Development,Research and Development (R&D) +170885,Research and Development,Research and Development (R&D) +169067,Research and Development,Research and Development (R&D) +169066,Research and Development,Research and Development (R&D) +169058,Research and Development,Research and Development (R&D) +405194,Research and Development,Research and Development (R&D) +405188,Research and Development,Research and Development (R&D) +405182,Research and Development,Research and Development (R&D) +405181,Research and Development,Research and Development (R&D) +403809,Research and Development,Research and Development (R&D) +393909,Research and Development,Research and Development (R&D) +387616,Research and Development,Research and Development (R&D) +387604,Research and Development,Research and Development (R&D) +387596,Research and Development,Research and Development (R&D) +387582,Research and Development,Research and Development (R&D) +387315,Research and Development,Research and Development (R&D) +383346,Research and Development,Research and Development (R&D) +383344,Research and Development,Research and Development (R&D) +378325,Research and Development,Research and Development (R&D) +378287,Research and Development,Research and Development (R&D) +374271,Research and Development,Research and Development (R&D) +368391,Research and Development,Research and Development (R&D) +368382,Research and Development,Research and Development (R&D) +366324,Research and Development,Research and Development (R&D) +366323,Research and Development,Research and Development (R&D) +366322,Research and Development,Research and Development (R&D) +364800,Research and Development,Research and Development (R&D) +363523,Research and Development,Research and Development (R&D) +359551,Research and Development,Research and Development (R&D) +359548,Research and Development,Research and Development (R&D) +357932,Research and Development,Research and Development (R&D) +357921,Research and Development,Research and Development (R&D) +355829,Research and Development,Research and Development (R&D) +355828,Research and Development,Research and Development (R&D) +353746,Research and Development,Research and Development (R&D) +353730,Research and Development,Research and Development (R&D) +348238,Research and Development,Research and Development (R&D) +347278,Research and Development,Research and Development (R&D) +343579,Research and Development,Research and Development (R&D) +338539,Research and Development,Research and Development (R&D) +295211,Research and Development,Research and Development (R&D) +510297,Research and Development,Research and Development (R&D) +507196,Research and Development,Research and Development (R&D) +507195,Research and Development,Research and Development (R&D) +507187,Research and Development,Research and Development (R&D) +504287,Research and Development,Research and Development (R&D) +504286,Research and Development,Research and Development (R&D) +501481,Research and Development,Research and Development (R&D) +498079,Research and Development,Research and Development (R&D) +498064,Research and Development,Research and Development (R&D) +498061,Research and Development,Research and Development (R&D) +492740,Research and Development,Research and Development (R&D) +492706,Research and Development,Research and Development (R&D) +489497,Research and Development,Research and Development (R&D) +489469,Research and Development,Research and Development (R&D) +486824,Research and Development,Research and Development (R&D) +481283,Research and Development,Research and Development (R&D) +481278,Research and Development,Research and Development (R&D) +481248,Research and Development,Research and Development (R&D) +476821,Research and Development,Research and Development (R&D) +475040,Research and Development,Research and Development (R&D) +470346,Research and Development,Research and Development (R&D) +470336,Research and Development,Research and Development (R&D) +467892,Research and Development,Research and Development (R&D) +467767,Research and Development,Research and Development (R&D) +462441,Research and Development,Research and Development (R&D) +461318,Research and Development,Research and Development (R&D) +461051,Research and Development,Research and Development (R&D) +460442,Research and Development,Research and Development (R&D) +460441,Research and Development,Research and Development (R&D) +460440,Research and Development,Research and Development (R&D) +459996,Research and Development,Research and Development (R&D) +459992,Research and Development,Research and Development (R&D) +456889,Research and Development,Research and Development (R&D) +456888,Research and Development,Research and Development (R&D) +454456,Research and Development,Research and Development (R&D) +451719,Research and Development,Research and Development (R&D) +449518,Research and Development,Research and Development (R&D) +449517,Research and Development,Research and Development (R&D) +447459,Research and Development,Research and Development (R&D) +444928,Research and Development,Research and Development (R&D) +443618,Research and Development,Research and Development (R&D) +443615,Research and Development,Research and Development (R&D) +443601,Research and Development,Research and Development (R&D) +443596,Research and Development,Research and Development (R&D) +437822,Research and Development,Research and Development (R&D) +434778,Research and Development,Research and Development (R&D) +433534,Research and Development,Research and Development (R&D) +433480,Research and Development,Research and Development (R&D) +430944,Research and Development,Research and Development (R&D) +430905,Research and Development,Research and Development (R&D) +424096,Research and Development,Research and Development (R&D) +415939,Research and Development,Research and Development (R&D) +415933,Research and Development,Research and Development (R&D) +415932,Research and Development,Research and Development (R&D) +413571,Research and Development,Research and Development (R&D) +413502,Research and Development,Research and Development (R&D) +413482,Research and Development,Research and Development (R&D) +413480,Research and Development,Research and Development (R&D) +407855,Research and Development,Research and Development (R&D) +407848,Research and Development,Research and Development (R&D) +406849,Research and Development,Research and Development (R&D) +406847,Research and Development,Research and Development (R&D) +405197,Research and Development,Research and Development (R&D) +543618,Research and Development,Research and Development (R&D) +537147,Research and Development,Research and Development (R&D) +533762,Research and Development,Research and Development (R&D) +533758,Research and Development,Research and Development (R&D) +528492,Research and Development,Research and Development (R&D) +528474,Research and Development,Research and Development (R&D) +524882,Research and Development,Research and Development (R&D) +521863,Research and Development,Research and Development (R&D) +521862,Research and Development,Research and Development (R&D) +521855,Research and Development,Research and Development (R&D) +521828,Research and Development,Research and Development (R&D) +521823,Research and Development,Research and Development (R&D) +519305,Research and Development,Research and Development (R&D) +519302,Research and Development,Research and Development (R&D) +517209,Research and Development,Research and Development (R&D) +517204,Research and Development,Research and Development (R&D) +517203,Research and Development,Research and Development (R&D) +517181,Research and Development,Research and Development (R&D) +515480,Research and Development,Research and Development (R&D) +426157,Privacy and Access to Information,Privacy and Access to Information +421702,Privacy and Access to Information,Privacy and Access to Information +148111,Privacy and Access to Information,Privacy and Access to Information +258649,Privacy and Access to Information,Privacy and Access to Information +415946,Research and Development,Research and Development (R&D) +415938,Research and Development,Research and Development (R&D) +148152,Research and Development,Research and Development (R&D) +225614,Research and Development,Research and Development (R&D) +225612,Research and Development,Research and Development (R&D) +225547,Research and Development,Research and Development (R&D) +222750,Research and Development,Research and Development (R&D) +216027,Research and Development,Research and Development (R&D) +211449,Research and Development,Research and Development (R&D) +210572,Research and Development,Research and Development (R&D) +210571,Research and Development,Research and Development (R&D) +207355,Research and Development,Research and Development (R&D) +205268,Research and Development,Research and Development (R&D) +205188,Research and Development,Research and Development (R&D) +197927,Research and Development,Research and Development (R&D) +193693,Research and Development,Research and Development (R&D) +193684,Research and Development,Research and Development (R&D) +189013,Research and Development,Research and Development (R&D) +188510,Research and Development,Research and Development (R&D) +188506,Research and Development,Research and Development (R&D) +180804,Research and Development,Research and Development (R&D) +174101,Research and Development,Research and Development (R&D) +173491,Research and Development,Research and Development (R&D) +173488,Research and Development,Research and Development (R&D) +173486,Research and Development,Research and Development (R&D) +170879,Research and Development,Research and Development (R&D) +169056,Research and Development,Research and Development (R&D) +166016,Research and Development,Research and Development (R&D) +165983,Research and Development,Research and Development (R&D) +165978,Research and Development,Research and Development (R&D) +163392,Research and Development,Research and Development (R&D) +159595,Research and Development,Research and Development (R&D) +153179,Research and Development,Research and Development (R&D) +413566,Research and Development,Research and Development (R&D) +413534,Research and Development,Research and Development (R&D) +413508,Research and Development,Research and Development (R&D) +413211,Research and Development,Research and Development (R&D) +413189,Research and Development,Research and Development (R&D) +409787,Research and Development,Research and Development (R&D) +409773,Research and Development,Research and Development (R&D) +406865,Research and Development,Research and Development (R&D) +406850,Research and Development,Research and Development (R&D) +405198,Research and Development,Research and Development (R&D) +405196,Research and Development,Research and Development (R&D) +405192,Research and Development,Research and Development (R&D) +403828,Research and Development,Research and Development (R&D) +403818,Research and Development,Research and Development (R&D) +403814,Research and Development,Research and Development (R&D) +396584,Research and Development,Research and Development (R&D) +390088,Research and Development,Research and Development (R&D) +387581,Research and Development,Research and Development (R&D) +378328,Research and Development,Research and Development (R&D) +376063,Research and Development,Research and Development (R&D) +376014,Research and Development,Research and Development (R&D) +376012,Research and Development,Research and Development (R&D) +370742,Research and Development,Research and Development (R&D) +370737,Research and Development,Research and Development (R&D) +370733,Research and Development,Research and Development (R&D) +368390,Research and Development,Research and Development (R&D) +368379,Research and Development,Research and Development (R&D) +368374,Research and Development,Research and Development (R&D) +363520,Research and Development,Research and Development (R&D) +363515,Research and Development,Research and Development (R&D) +361026,Research and Development,Research and Development (R&D) +359560,Research and Development,Research and Development (R&D) +357925,Research and Development,Research and Development (R&D) +357923,Research and Development,Research and Development (R&D) +351212,Research and Development,Research and Development (R&D) +338541,Research and Development,Research and Development (R&D) +295209,Research and Development,Research and Development (R&D) +275609,Research and Development,Research and Development (R&D) +263969,Research and Development,Research and Development (R&D) +263961,Research and Development,Research and Development (R&D) +263952,Research and Development,Research and Development (R&D) +244407,Research and Development,Research and Development (R&D) +244405,Research and Development,Research and Development (R&D) +244399,Research and Development,Research and Development (R&D) +244391,Research and Development,Research and Development (R&D) +244389,Research and Development,Research and Development (R&D) +244384,Research and Development,Research and Development (R&D) +240553,Research and Development,Research and Development (R&D) +229097,Research and Development,Research and Development (R&D) +229096,Research and Development,Research and Development (R&D) +543615,Research and Development,Research and Development (R&D) +537144,Research and Development,Research and Development (R&D) +533765,Research and Development,Research and Development (R&D) +531369,Research and Development,Research and Development (R&D) +528465,Research and Development,Research and Development (R&D) +524887,Research and Development,Research and Development (R&D) +521864,Research and Development,Research and Development (R&D) +521845,Research and Development,Research and Development (R&D) +521831,Research and Development,Research and Development (R&D) +519308,Research and Development,Research and Development (R&D) +517199,Research and Development,Research and Development (R&D) +515479,Research and Development,Research and Development (R&D) +515469,Research and Development,Research and Development (R&D) +515464,Research and Development,Research and Development (R&D) +514464,Research and Development,Research and Development (R&D) +512659,Research and Development,Research and Development (R&D) +512655,Research and Development,Research and Development (R&D) +512627,Research and Development,Research and Development (R&D) +510259,Research and Development,Research and Development (R&D) +510244,Research and Development,Research and Development (R&D) +507190,Research and Development,Research and Development (R&D) +504290,Research and Development,Research and Development (R&D) +501483,Research and Development,Research and Development (R&D) +501471,Research and Development,Research and Development (R&D) +501467,Research and Development,Research and Development (R&D) +501458,Research and Development,Research and Development (R&D) +501444,Research and Development,Research and Development (R&D) +501430,Research and Development,Research and Development (R&D) +492745,Research and Development,Research and Development (R&D) +492735,Research and Development,Research and Development (R&D) +489522,Research and Development,Research and Development (R&D) +489515,Research and Development,Research and Development (R&D) +486844,Research and Development,Research and Development (R&D) +486782,Research and Development,Research and Development (R&D) +486776,Research and Development,Research and Development (R&D) +483677,Research and Development,Research and Development (R&D) +483674,Research and Development,Research and Development (R&D) +483669,Research and Development,Research and Development (R&D) +476839,Research and Development,Research and Development (R&D) +475142,Research and Development,Research and Development (R&D) +475086,Research and Development,Research and Development (R&D) +467885,Research and Development,Research and Development (R&D) +467757,Research and Development,Research and Development (R&D) +467737,Research and Development,Research and Development (R&D) +467723,Research and Development,Research and Development (R&D) +460444,Research and Development,Research and Development (R&D) +460437,Research and Development,Research and Development (R&D) +458403,Research and Development,Research and Development (R&D) +456886,Research and Development,Research and Development (R&D) +454454,Research and Development,Research and Development (R&D) +454446,Research and Development,Research and Development (R&D) +454442,Research and Development,Research and Development (R&D) +449545,Research and Development,Research and Development (R&D) +449535,Research and Development,Research and Development (R&D) +447471,Research and Development,Research and Development (R&D) +444938,Research and Development,Research and Development (R&D) +443611,Research and Development,Research and Development (R&D) +443610,Research and Development,Research and Development (R&D) +443608,Research and Development,Research and Development (R&D) +441317,Research and Development,Research and Development (R&D) +441315,Research and Development,Research and Development (R&D) +441304,Research and Development,Research and Development (R&D) +441288,Research and Development,Research and Development (R&D) +437827,Research and Development,Research and Development (R&D) +437780,Research and Development,Research and Development (R&D) +433530,Research and Development,Research and Development (R&D) +433493,Research and Development,Research and Development (R&D) +432217,Research and Development,Research and Development (R&D) +428429,Research and Development,Research and Development (R&D) +424087,Research and Development,Research and Development (R&D) +421695,Research and Development,Research and Development (R&D) +418070,Research and Development,Research and Development (R&D) +495164,Research and Development,Research and Development (R&D) +494901,Research and Development,Research and Development (R&D) +170896,Research and Development,Research and Development (R&D) +169065,Research and Development,Research and Development (R&D) +169063,Research and Development,Research and Development (R&D) +169060,Research and Development,Research and Development (R&D) +169059,Research and Development,Research and Development (R&D) +169052,Research and Development,Research and Development (R&D) +166133,Research and Development,Research and Development (R&D) +165997,Research and Development,Research and Development (R&D) +165990,Research and Development,Research and Development (R&D) +159607,Research and Development,Research and Development (R&D) +159603,Research and Development,Research and Development (R&D) +156849,Research and Development,Research and Development (R&D) +154872,Research and Development,Research and Development (R&D) +148157,Research and Development,Research and Development (R&D) +244416,Research and Development,Research and Development (R&D) +244410,Research and Development,Research and Development (R&D) +244396,Research and Development,Research and Development (R&D) +244390,Research and Development,Research and Development (R&D) +244351,Research and Development,Research and Development (R&D) +244344,Research and Development,Research and Development (R&D) +244211,Research and Development,Research and Development (R&D) +236835,Research and Development,Research and Development (R&D) +229149,Research and Development,Research and Development (R&D) +229104,Research and Development,Research and Development (R&D) +229102,Research and Development,Research and Development (R&D) +225610,Research and Development,Research and Development (R&D) +222748,Research and Development,Research and Development (R&D) +211468,Research and Development,Research and Development (R&D) +210648,Research and Development,Research and Development (R&D) +207365,Research and Development,Research and Development (R&D) +207357,Research and Development,Research and Development (R&D) +205487,Research and Development,Research and Development (R&D) +205318,Research and Development,Research and Development (R&D) +205267,Research and Development,Research and Development (R&D) +197191,Research and Development,Research and Development (R&D) +189011,Research and Development,Research and Development (R&D) +380903,Research and Development,Research and Development (R&D) +378327,Research and Development,Research and Development (R&D) +378286,Research and Development,Research and Development (R&D) +376324,Research and Development,Research and Development (R&D) +376036,Research and Development,Research and Development (R&D) +370738,Research and Development,Research and Development (R&D) +366325,Research and Development,Research and Development (R&D) +364801,Research and Development,Research and Development (R&D) +363525,Research and Development,Research and Development (R&D) +363524,Research and Development,Research and Development (R&D) +363512,Research and Development,Research and Development (R&D) +361107,Research and Development,Research and Development (R&D) +359563,Research and Development,Research and Development (R&D) +359562,Research and Development,Research and Development (R&D) +359558,Research and Development,Research and Development (R&D) +353743,Research and Development,Research and Development (R&D) +351214,Research and Development,Research and Development (R&D) +351202,Research and Development,Research and Development (R&D) +343584,Research and Development,Research and Development (R&D) +333173,Research and Development,Research and Development (R&D) +326322,Research and Development,Research and Development (R&D) +301171,Research and Development,Research and Development (R&D) +295212,Research and Development,Research and Development (R&D) +288690,Research and Development,Research and Development (R&D) +275612,Research and Development,Research and Development (R&D) +263971,Research and Development,Research and Development (R&D) +263970,Research and Development,Research and Development (R&D) +492749,Research and Development,Research and Development (R&D) +492729,Research and Development,Research and Development (R&D) +489544,Research and Development,Research and Development (R&D) +489479,Research and Development,Research and Development (R&D) +489463,Research and Development,Research and Development (R&D) +489462,Research and Development,Research and Development (R&D) +486848,Research and Development,Research and Development (R&D) +486835,Research and Development,Research and Development (R&D) +486831,Research and Development,Research and Development (R&D) +483709,Research and Development,Research and Development (R&D) +483690,Research and Development,Research and Development (R&D) +483685,Research and Development,Research and Development (R&D) +483683,Research and Development,Research and Development (R&D) +481284,Research and Development,Research and Development (R&D) +481249,Research and Development,Research and Development (R&D) +479842,Research and Development,Research and Development (R&D) +470344,Research and Development,Research and Development (R&D) +470342,Research and Development,Research and Development (R&D) +467875,Research and Development,Research and Development (R&D) +467752,Research and Development,Research and Development (R&D) +464389,Research and Development,Research and Development (R&D) +460438,Research and Development,Research and Development (R&D) +460001,Research and Development,Research and Development (R&D) +459999,Research and Development,Research and Development (R&D) +459994,Research and Development,Research and Development (R&D) +458399,Research and Development,Research and Development (R&D) +456885,Research and Development,Research and Development (R&D) +456882,Research and Development,Research and Development (R&D) +454457,Research and Development,Research and Development (R&D) +454450,Research and Development,Research and Development (R&D) +454449,Research and Development,Research and Development (R&D) +454448,Research and Development,Research and Development (R&D) +454440,Research and Development,Research and Development (R&D) +451734,Research and Development,Research and Development (R&D) +451731,Research and Development,Research and Development (R&D) +449543,Research and Development,Research and Development (R&D) +449528,Research and Development,Research and Development (R&D) +448101,Research and Development,Research and Development (R&D) +447474,Research and Development,Research and Development (R&D) +447470,Research and Development,Research and Development (R&D) +447461,Research and Development,Research and Development (R&D) +444944,Research and Development,Research and Development (R&D) +441294,Research and Development,Research and Development (R&D) +441273,Research and Development,Research and Development (R&D) +437785,Research and Development,Research and Development (R&D) +433488,Research and Development,Research and Development (R&D) +430925,Research and Development,Research and Development (R&D) +430904,Research and Development,Research and Development (R&D) +426153,Research and Development,Research and Development (R&D) +424093,Research and Development,Research and Development (R&D) +421692,Research and Development,Research and Development (R&D) +415949,Research and Development,Research and Development (R&D) +415936,Research and Development,Research and Development (R&D) +415915,Research and Development,Research and Development (R&D) +413582,Research and Development,Research and Development (R&D) +413578,Research and Development,Research and Development (R&D) +413543,Research and Development,Research and Development (R&D) +413528,Research and Development,Research and Development (R&D) +413472,Research and Development,Research and Development (R&D) +413175,Research and Development,Research and Development (R&D) +413167,Research and Development,Research and Development (R&D) +409793,Research and Development,Research and Development (R&D) +409783,Research and Development,Research and Development (R&D) +409778,Research and Development,Research and Development (R&D) +405200,Research and Development,Research and Development (R&D) +405199,Research and Development,Research and Development (R&D) +403826,Research and Development,Research and Development (R&D) +398591,Research and Development,Research and Development (R&D) +383347,Research and Development,Research and Development (R&D) +543622,Research and Development,Research and Development (R&D) +543620,Research and Development,Research and Development (R&D) +543616,Research and Development,Research and Development (R&D) +541086,Research and Development,Research and Development (R&D) +468596,Environment,Environment +387256,Employment and Training,Employment and Training +401567,Energy,Energy +426180,Environment,Environment +401567,Internal Trade,Internal Trade +387256,International Relations,International Relations +401566,Labour,Labour +401568,Mining,Mining +387256,Taxation and Finance,Taxation and Finance +401567,Transportation,Transportation +202537,International Relations,International Relations +202537,International Trade,International Trade +163755,Labour,Labour +145622,Taxation and Finance,Taxation and Finance +146774,Health,Health +169654,Industry,Industry +146774,Justice and Law Enforcement,Justice and Law Enforcement +148150,Education,Education +454448,Intellectual Property,Intellectual Property +145769,Education,Education +145773,Education,Education +145775,Education,Education +145775,Industry,Industry +145781,Education,Education +147756,Health,Health +147783,Industry,Industry +149518,Justice and Law Enforcement,Justice and Law Enforcement +149973,Transportation,Transportation +435808,International Trade,International Trade +459657,Regional Development,Regional Development +153938,Transportation,Transportation +468458,Consumer Issues,Consumer Issues +468247,Consumer Issues,Consumer Issues +163906,Research and Development,Research and Development (R&D) +263450,Mining,Mining +449929,Research and Development,Research and Development (R&D) +146817,International Trade,International Trade +146191,Security,Security +541889,Privacy and Access to Information,Privacy and Access to Information +404968,Budget,Budget +159618,Constitutional Issues,Constitutional Issues +430771,Financial Institutions,Financial Institutions +419295,Health,Health +159617,Labour,Labour +429624,Pensions,Pensions +404968,Taxation and Finance,Taxation and Finance +146202,Municipalities,Municipalities +448100,International Relations,International Relations +161307,Industry,Industry +192566,Pensions,Pensions +326333,Industry,Industry +326333,Taxation and Finance,Taxation and Finance +311492,Budget,Budget +364527,Financial Institutions,Financial Institutions +433434,Climate,Climate +454375,Economic Development,Economic Development +459515,Regional Development,Regional Development +542789,Research and Development,Research and Development (R&D) +156864,Industry,Industry +169085,Transportation,Transportation +381748,International Trade,Commerce international +494043,International Trade,Commerce international +148367,Economic Development,Economic Development +148367,Infrastructure,Infrastructure +148128,Housing,Housing +467393,Research and Development,Research and Development (R&D) +160594,Transportation,Transports +225590,Agriculture,Agriculture +225592,Internal Trade,Internal Trade +225590,International Trade,International Trade +188205,Environment,Environment +188205,Health,Health +378020,Environment,Environment +488846,Research and Development,Research and Development (R&D) +169545,International Trade,International Trade +160658,Energy,Energy +169545,International Development,International Development +162025,Agriculture,Agriculture +162020,Health,Health +162025,International Trade,International Trade +539789,International Trade,International Trade +147319,Consumer Issues,Consumer Issues +147316,Financial Institutions,Financial Institutions +317875,Industry,Industry +147318,Sports,Sports +317874,Taxation and Finance,Taxation and Finance +160878,Transportation,Transportation +398523,Research and Development,Recherche et développement (R&D) +393199,Internal Trade,Internal Trade +163269,International Development,International Development +332293,Taxation and Finance,Taxation and Finance +171286,Economic Development,Développement économique +171286,International Development,Développement international +171286,Environment,Environnement +379943,International Development,International Development +153960,Health,Health +160764,International Trade,International Trade +151282,Consumer Issues,Consumer Issues +156547,Economic Development,Economic Development +152858,Industry,Industry +151282,Intellectual Property,Intellectual Property +151285,International Trade,International Trade +151280,Privacy and Access to Information,Privacy and Access to Information +152858,Small Business,Small Business +163467,Consumer Issues,Consumer Issues +164973,Economic Development,Economic Development +164973,Industry,Industry +163468,International Trade,International Trade +163466,Small Business,Small Business +161887,Taxation and Finance,Taxation and Finance +518105,Health,Health +148719,Immigration,Immigration +188188,Climate,Climate +188185,Energy,Energy +188185,Environment,Environment +188185,Industry,Industry +188184,Labour,Labour +152182,Pensions,Pensions +146954,Education,Education +327664,Economic Development,Economic Development +165264,Health,Health +167030,Research and Development,Research and Development (R&D) +354002,Pensions,Pensions +148221,Financial Institutions,Financial Institutions +151597,Taxation and Finance,Taxation and Finance +147185,Infrastructure,Infrastructure +159596,Taxation and Finance,Taxation and Finance +150301,Environment,Environment +191944,Health,Health +162644,Economic Development,Economic Development +162644,Energy,Energy +162644,Research and Development,Research and Development (R&D) +147336,Housing,Housing +150208,Economic Development,Economic Development +150208,Energy,Energy +150208,Mining,Mining +150208,Regional Development,Regional Development +153357,Climate,Climate +153357,Energy,Energy +153357,Environment,Environment +153357,Industry,Industry +355272,Security,Security +343557,Agriculture,Agriculture +152072,Small Business,Small Business +158285,Taxation and Finance,Taxation and Finance +158070,Health,Health +158070,Small Business,Small Business +157166,Agriculture,Agriculture +468171,Health,Health +392980,Immigration,Immigration +458947,Official Languages,Official Languages +149980,Economic Development,Economic Development +150198,Energy,Energy +149980,Environment,Environment +149980,Industry,Industry +150198,Internal Trade,Internal Trade +150198,International Trade,International Trade +150198,Mining,Mining +149978,Research and Development,Research and Development (R&D) +180587,Economic Development,Economic Development +150818,International Trade,International Trade +158383,Labour,Labour +150818,Transportation,Transportation +151844,Economic Development,Economic Development +175741,Industry,Industry +151844,Infrastructure,Infrastructure +151844,International Trade,International Trade +230764,Economic Development,Economic Development +230764,International Trade,International Trade +203509,Health,Health +150977,Budget,Budget +158071,Energy,Energy +305749,Consumer Issues,Consumer Issues +305749,Health,Health +233392,Climate,Climate +200466,International Relations,International Relations +200460,International Trade,International Trade +355174,Agriculture,Agriculture +379490,Consumer Issues,Consumer Issues +379490,Health,Health +308591,Internal Trade,Internal Trade +355175,International Trade,International Trade +159117,Infrastructure,Infrastructure +158895,Energy,Energy +158897,Environment,Environment +332295,Sports,Sports +147815,Research and Development,Research and Development (R&D) +239071,Energy,Energy +239071,Research and Development,Research and Development (R&D) +147834,Industry,Industrie +514915,Security,Security +158666,Industry,Industry +147894,Pensions,Pensions +147895,Pensions,Pensions +447825,Economic Development,Economic Development +447818,Security,Security +147922,Economic Development,Economic Development +147922,Security,Security +147920,Economic Development,Economic Development +147920,Security,Security +223584,Health,Health +175049,Research and Development,Research and Development (R&D) +489560,Research and Development,Research and Development (R&D) +450468,Pensions,Pensions +401717,International Development,Développement international +342089,Financial Institutions,Financial Institutions +167642,Agriculture,Agriculture +167652,International Trade,International Trade +167642,Transportation,Transportation +162162,Pensions,Pensions +148108,Education,Education +148108,Industry,Industry +515455,Research and Development,Research and Development (R&D) +435112,Privacy and Access to Information,Privacy and Access to Information +418048,Research and Development,Research and Development (R&D) +498075,Research and Development,Research and Development (R&D) +430928,Research and Development,Research and Development (R&D) +148192,Budget,Budget +148192,Budget,Budget +148195,Budget,Budget +148204,Taxation and Finance,Taxation and Finance +148201,Taxation and Finance,Taxation and Finance +148213,Regional Development,Regional Development +148212,Economic Development,Economic Development +148222,Regional Development,Regional Development +150376,Industry,Industry +352827,Intellectual Property,Intellectual Property +523411,Economic Development,Economic Development +148232,Environment,Environment +467240,Economic Development,Economic Development +148247,Education,Education +165957,Employment and Training,Employment and Training +165967,Health,Health +510224,Labour,Labour +165944,Research and Development,Research and Development (R&D) +148237,Employment and Training,Employment and Training +148247,Intellectual Property,Intellectual Property +148296,Labour,Labour +150266,Housing,Housing +148363,Industry,Industry +228250,Agriculture,Agriculture +148365,Agriculture,Agriculture +537141,Research and Development,Research and Development (R&D) +533760,Research and Development,Research and Development (R&D) +531355,Research and Development,Research and Development (R&D) +528644,Research and Development,Research and Development (R&D) +528486,Research and Development,Research and Development (R&D) +524888,Research and Development,Research and Development (R&D) +524884,Research and Development,Research and Development (R&D) +524878,Research and Development,Research and Development (R&D) +524867,Research and Development,Research and Development (R&D) +521858,Research and Development,Research and Development (R&D) +521840,Research and Development,Research and Development (R&D) +519306,Research and Development,Research and Development (R&D) +519304,Research and Development,Research and Development (R&D) +519296,Research and Development,Research and Development (R&D) +517207,Research and Development,Research and Development (R&D) +517188,Research and Development,Research and Development (R&D) +517175,Research and Development,Research and Development (R&D) +515447,Research and Development,Research and Development (R&D) +515438,Research and Development,Research and Development (R&D) +514456,Research and Development,Research and Development (R&D) +513920,Research and Development,Research and Development (R&D) +512645,Research and Development,Research and Development (R&D) +512634,Research and Development,Research and Development (R&D) +510265,Research and Development,Research and Development (R&D) +507194,Research and Development,Research and Development (R&D) +507192,Research and Development,Research and Development (R&D) +501487,Research and Development,Research and Development (R&D) +501480,Research and Development,Research and Development (R&D) +501476,Research and Development,Research and Development (R&D) +501459,Research and Development,Research and Development (R&D) +501456,Research and Development,Research and Development (R&D) +501454,Research and Development,Research and Development (R&D) +501439,Research and Development,Research and Development (R&D) +430918,Research and Development,Research and Development (R&D) +430913,Research and Development,Research and Development (R&D) +188511,Research and Development,Research and Development (R&D) +188508,Research and Development,Research and Development (R&D) +185665,Research and Development,Research and Development (R&D) +174103,Research and Development,Research and Development (R&D) +174102,Research and Development,Research and Development (R&D) +173489,Research and Development,Research and Development (R&D) +170874,Research and Development,Research and Development (R&D) +170864,Research and Development,Research and Development (R&D) +169054,Research and Development,Research and Development (R&D) +166007,Research and Development,Research and Development (R&D) +166006,Research and Development,Research and Development (R&D) +165994,Research and Development,Research and Development (R&D) +159625,Research and Development,Research and Development (R&D) +156848,Research and Development,Research and Development (R&D) +153180,Research and Development,Research and Development (R&D) +148158,Research and Development,Research and Development (R&D) +329874,Research and Development,Research and Development (R&D) +326321,Research and Development,Research and Development (R&D) +326313,Research and Development,Research and Development (R&D) +295210,Research and Development,Research and Development (R&D) +244414,Research and Development,Research and Development (R&D) +244412,Research and Development,Research and Development (R&D) +244401,Research and Development,Research and Development (R&D) +244395,Research and Development,Research and Development (R&D) +244383,Research and Development,Research and Development (R&D) +244382,Research and Development,Research and Development (R&D) +244349,Research and Development,Research and Development (R&D) +244348,Research and Development,Research and Development (R&D) +244346,Research and Development,Research and Development (R&D) +244345,Research and Development,Research and Development (R&D) +240549,Research and Development,Research and Development (R&D) +229101,Research and Development,Research and Development (R&D) +229095,Research and Development,Research and Development (R&D) +223092,Research and Development,Research and Development (R&D) +221787,Research and Development,Research and Development (R&D) +216509,Research and Development,Research and Development (R&D) +210647,Research and Development,Research and Development (R&D) +210570,Research and Development,Research and Development (R&D) +210287,Research and Development,Research and Development (R&D) +210167,Research and Development,Research and Development (R&D) +207375,Research and Development,Research and Development (R&D) +207370,Research and Development,Research and Development (R&D) +207361,Research and Development,Research and Development (R&D) +207358,Research and Development,Research and Development (R&D) +205391,Research and Development,Research and Development (R&D) +205390,Research and Development,Research and Development (R&D) +205388,Research and Development,Research and Development (R&D) +205313,Research and Development,Research and Development (R&D) +205310,Research and Development,Research and Development (R&D) +199670,Research and Development,Research and Development (R&D) +193713,Research and Development,Research and Development (R&D) +424082,Research and Development,Research and Development (R&D) +419361,Research and Development,Research and Development (R&D) +419356,Research and Development,Research and Development (R&D) +415925,Research and Development,Research and Development (R&D) +415920,Research and Development,Research and Development (R&D) +413564,Research and Development,Research and Development (R&D) +413555,Research and Development,Research and Development (R&D) +413538,Research and Development,Research and Development (R&D) +413127,Research and Development,Research and Development (R&D) +409795,Research and Development,Research and Development (R&D) +409738,Research and Development,Research and Development (R&D) +407836,Research and Development,Research and Development (R&D) +406846,Research and Development,Research and Development (R&D) +405190,Research and Development,Research and Development (R&D) +387588,Research and Development,Research and Development (R&D) +385102,Research and Development,Research and Development (R&D) +382121,Research and Development,Research and Development (R&D) +380992,Research and Development,Research and Development (R&D) +380902,Research and Development,Research and Development (R&D) +376058,Research and Development,Research and Development (R&D) +376045,Research and Development,Research and Development (R&D) +368642,Research and Development,Research and Development (R&D) +368377,Research and Development,Research and Development (R&D) +364802,Research and Development,Research and Development (R&D) +348241,Research and Development,Research and Development (R&D) +343582,Research and Development,Research and Development (R&D) +333372,Research and Development,Research and Development (R&D) +543617,Research and Development,Research and Development (R&D) +543614,Research and Development,Research and Development (R&D) +539675,Research and Development,Research and Development (R&D) +531368,Research and Development,Research and Development (R&D) +531367,Research and Development,Research and Development (R&D) +531361,Research and Development,Research and Development (R&D) +528456,Research and Development,Research and Development (R&D) +528455,Research and Development,Research and Development (R&D) +524892,Research and Development,Research and Development (R&D) +521825,Research and Development,Research and Development (R&D) +519300,Research and Development,Research and Development (R&D) +517211,Research and Development,Research and Development (R&D) +517206,Research and Development,Research and Development (R&D) +517202,Research and Development,Research and Development (R&D) +517165,Research and Development,Research and Development (R&D) +513921,Research and Development,Research and Development (R&D) +512660,Research and Development,Research and Development (R&D) +512631,Research and Development,Research and Development (R&D) +510423,Research and Development,Research and Development (R&D) +510253,Research and Development,Research and Development (R&D) +510251,Research and Development,Research and Development (R&D) +507181,Research and Development,Research and Development (R&D) +504312,Research and Development,Research and Development (R&D) +504297,Research and Development,Research and Development (R&D) +504296,Research and Development,Research and Development (R&D) +504293,Research and Development,Research and Development (R&D) +501477,Research and Development,Research and Development (R&D) +501466,Research and Development,Research and Development (R&D) +501457,Research and Development,Research and Development (R&D) +501446,Research and Development,Research and Development (R&D) +498059,Research and Development,Research and Development (R&D) +498056,Research and Development,Research and Development (R&D) +494909,Research and Development,Research and Development (R&D) +494905,Research and Development,Research and Development (R&D) +494904,Research and Development,Research and Development (R&D) +492744,Research and Development,Research and Development (R&D) +486819,Research and Development,Research and Development (R&D) +486815,Research and Development,Research and Development (R&D) +483692,Research and Development,Research and Development (R&D) +483686,Research and Development,Research and Development (R&D) +483671,Research and Development,Research and Development (R&D) +481314,Research and Development,Research and Development (R&D) +479367,Research and Development,Research and Development (R&D) +472572,Research and Development,Research and Development (R&D) +472570,Research and Development,Research and Development (R&D) +470372,Research and Development,Research and Development (R&D) +470364,Research and Development,Research and Development (R&D) +470357,Research and Development,Research and Development (R&D) +467919,Research and Development,Research and Development (R&D) +467915,Research and Development,Research and Development (R&D) +467906,Research and Development,Research and Development (R&D) +467904,Research and Development,Research and Development (R&D) +467774,Research and Development,Research and Development (R&D) +467763,Research and Development,Research and Development (R&D) +467728,Research and Development,Research and Development (R&D) +461176,Research and Development,Research and Development (R&D) +460443,Research and Development,Research and Development (R&D) +460000,Research and Development,Research and Development (R&D) +459493,Research and Development,Research and Development (R&D) +459492,Research and Development,Research and Development (R&D) +458404,Research and Development,Research and Development (R&D) +458397,Research and Development,Research and Development (R&D) +456890,Research and Development,Research and Development (R&D) +456884,Research and Development,Research and Development (R&D) +456883,Research and Development,Research and Development (R&D) +454447,Research and Development,Research and Development (R&D) +454443,Research and Development,Research and Development (R&D) +451737,Research and Development,Research and Development (R&D) +451716,Research and Development,Research and Development (R&D) +451711,Research and Development,Research and Development (R&D) +451709,Research and Development,Research and Development (R&D) +449538,Research and Development,Research and Development (R&D) +449515,Research and Development,Research and Development (R&D) +444956,Research and Development,Research and Development (R&D) +444934,Research and Development,Research and Development (R&D) +443613,Research and Development,Research and Development (R&D) +441291,Research and Development,Research and Development (R&D) +441275,Research and Development,Research and Development (R&D) +437784,Research and Development,Research and Development (R&D) +434826,Research and Development,Research and Development (R&D) +433531,Research and Development,Research and Development (R&D) +433489,Research and Development,Research and Development (R&D) +430951,Research and Development,Research and Development (R&D) +343890,Intellectual Property,Intellectual Property +189540,Intellectual Property,Intellectual Property +185936,Intellectual Property,Intellectual Property +180418,Intellectual Property,Intellectual Property +180417,Intellectual Property,Intellectual Property +175500,Intellectual Property,Intellectual Property +175499,Intellectual Property,Intellectual Property +315992,Intellectual Property,Intellectual Property +366339,Intellectual Property,Intellectual Property +364783,Intellectual Property,Intellectual Property +364782,Intellectual Property,Intellectual Property +359435,Intellectual Property,Intellectual Property +359434,Intellectual Property,Intellectual Property +359433,Intellectual Property,Intellectual Property +359431,Intellectual Property,Intellectual Property +359430,Intellectual Property,Intellectual Property +359429,Intellectual Property,Intellectual Property +359426,Intellectual Property,Intellectual Property +352912,Intellectual Property,Intellectual Property +501785,Economic Development,Economic Development +477550,Economic Development,Economic Development +148230,Economic Development,Economic Development +194787,Economic Development,Economic Development +194785,Economic Development,Economic Development +194774,Economic Development,Economic Development +159606,Economic Development,Economic Development +159605,Economic Development,Economic Development +153466,Economic Development,Economic Development +153465,Economic Development,Economic Development +153464,Economic Development,Economic Development +153463,Economic Development,Economic Development +362297,Economic Development,Economic Development +362296,Economic Development,Economic Development +362293,Economic Development,Economic Development +358227,Economic Development,Economic Development +200426,Economic Development,Economic Development +200423,Economic Development,Economic Development +200390,Economic Development,Economic Development +194810,Economic Development,Economic Development +194802,Economic Development,Economic Development +443845,Economic Development,Economic Development +432441,Economic Development,Economic Development +411189,Economic Development,Economic Development +408702,Economic Development,Economic Development +408700,Economic Development,Economic Development +401677,Economic Development,Economic Development +459907,Economic Development,Economic Development +459489,Economic Development,Economic Development +205915,Economic Development,Economic Development +203307,Economic Development,Economic Development +190113,Economic Development,Economic Development +190111,Economic Development,Economic Development +190066,Economic Development,Economic Development +190064,Economic Development,Economic Development +186006,Economic Development,Economic Development +168925,Economic Development,Economic Development +165946,Economic Development,Economic Development +165944,Economic Development,Economic Development +162969,Economic Development,Economic Development +148247,Economic Development,Economic Development +306649,Economic Development,Economic Development +306646,Economic Development,Economic Development +306645,Economic Development,Economic Development +306644,Economic Development,Economic Development +306643,Economic Development,Economic Development +306642,Economic Development,Economic Development +306641,Economic Development,Economic Development +306640,Economic Development,Economic Development +306639,Economic Development,Economic Development +306638,Economic Development,Economic Development +306637,Economic Development,Economic Development +306634,Economic Development,Economic Development +306633,Economic Development,Economic Development +306632,Economic Development,Economic Development +306631,Economic Development,Economic Development +306630,Economic Development,Economic Development +306629,Economic Development,Economic Development +306628,Economic Development,Economic Development +306627,Economic Development,Economic Development +306626,Economic Development,Economic Development +306625,Economic Development,Economic Development +306624,Economic Development,Economic Development +306623,Economic Development,Economic Development +306622,Economic Development,Economic Development +306621,Economic Development,Economic Development +306620,Economic Development,Economic Development +306619,Economic Development,Economic Development +306618,Economic Development,Economic Development +306617,Economic Development,Economic Development +306616,Economic Development,Economic Development +306615,Economic Development,Economic Development +306614,Economic Development,Economic Development +306613,Economic Development,Economic Development +306612,Economic Development,Economic Development +306611,Economic Development,Economic Development +306610,Economic Development,Economic Development +306609,Economic Development,Economic Development +295451,Economic Development,Economic Development +290910,Economic Development,Economic Development +276798,Economic Development,Economic Development +230334,Economic Development,Economic Development +230331,Economic Development,Economic Development +230328,Economic Development,Economic Development +223611,Economic Development,Economic Development +396027,Economic Development,Economic Development +396026,Economic Development,Economic Development +396021,Economic Development,Economic Development +396020,Economic Development,Economic Development +396019,Economic Development,Economic Development +396018,Economic Development,Economic Development +396017,Economic Development,Economic Development +396016,Economic Development,Economic Development +396015,Economic Development,Economic Development +389349,Economic Development,Economic Development +378468,Economic Development,Economic Development +364880,Economic Development,Economic Development +359003,Economic Development,Economic Development +347081,Economic Development,Economic Development +338538,Economic Development,Economic Development +333221,Economic Development,Economic Development +333220,Economic Development,Economic Development +333219,Economic Development,Economic Development +333218,Economic Development,Economic Development +333215,Economic Development,Economic Development +333214,Economic Development,Economic Development +333213,Economic Development,Economic Development +321388,Economic Development,Economic Development +165946,Employment and Training,Employment and Training +475312,Employment and Training,Employment and Training +148247,Employment and Training,Employment and Training +168925,Employment and Training,Employment and Training +168369,Employment and Training,Employment and Training +148247,Health,Health +510222,Labour,Labour +481933,Labour,Labour +203329,Labour,Labour +203309,Labour,Labour +190113,Labour,Labour +190111,Labour,Labour +190066,Labour,Labour +190064,Labour,Labour +168369,Labour,Labour +165946,Labour,Labour +165944,Labour,Labour +157203,Labour,Labour +148247,Labour,Labour +260590,Labour,Labour +260589,Labour,Labour +260570,Labour,Labour +246670,Labour,Labour +148247,Research and Development,Research and Development (R&D) +265169,Research and Development,Research and Development (R&D) +203329,Research and Development,Research and Development (R&D) +190113,Research and Development,Research and Development (R&D) +190066,Research and Development,Research and Development (R&D) +190064,Research and Development,Research and Development (R&D) +168925,Research and Development,Research and Development (R&D) +168369,Research and Development,Research and Development (R&D) +165957,Research and Development,Research and Development (R&D) +165946,Research and Development,Research and Development (R&D) +381872,Employment and Training,Employment and Training +466053,Employment and Training,Employment and Training +159608,Employment and Training,Employment and Training +148316,Housing,Housing +181145,Agriculture,Agriculture +148417,Taxation and Finance,Taxation and Finance +403230,Climate,Climate +402209,Climate,Climate +167141,Climate,Climate +167138,Climate,Climate +167133,Climate,Climate +159251,Climate,Climate +154171,Climate,Climate +153124,Climate,Climate +153123,Climate,Climate +153122,Climate,Climate +151830,Climate,Climate +151828,Climate,Climate +151826,Climate,Climate +151824,Climate,Climate +151822,Climate,Climate +151821,Climate,Climate +151819,Climate,Climate +149839,Climate,Climate +149838,Climate,Climate +218412,Climate,Climate +218411,Climate,Climate +218409,Climate,Climate +213967,Climate,Climate +212214,Climate,Climate +212212,Climate,Climate +212210,Climate,Climate +207388,Climate,Climate +205909,Climate,Climate +205908,Climate,Climate +202568,Climate,Climate +200148,Climate,Climate +200147,Climate,Climate +188845,Climate,Climate +185687,Climate,Climate +185685,Climate,Climate +185647,Climate,Climate +175165,Climate,Climate +175164,Climate,Climate +173066,Climate,Climate +322137,Climate,Climate +318277,Climate,Climate +318275,Climate,Climate +318270,Climate,Climate +318269,Climate,Climate +315692,Climate,Climate +310127,Climate,Climate +310123,Climate,Climate +310121,Climate,Climate +304356,Climate,Climate +304354,Climate,Climate +294650,Climate,Climate +289994,Climate,Climate +289992,Climate,Climate +289991,Climate,Climate +283689,Climate,Climate +277750,Climate,Climate +273442,Climate,Climate +267115,Climate,Climate +267114,Climate,Climate +267113,Climate,Climate +267112,Climate,Climate +267111,Climate,Climate +267110,Climate,Climate +267109,Climate,Climate +267090,Climate,Climate +263710,Climate,Climate +263709,Climate,Climate +261208,Climate,Climate +254172,Climate,Climate +251730,Climate,Climate +251729,Climate,Climate +245991,Climate,Climate +245990,Climate,Climate +241138,Climate,Climate +241025,Climate,Climate +237810,Climate,Climate +232929,Climate,Climate +232911,Climate,Climate +232909,Climate,Climate +230063,Climate,Climate +230061,Climate,Climate +230053,Climate,Climate +227710,Climate,Climate +227709,Climate,Climate +222451,Climate,Climate +222450,Climate,Climate +222449,Climate,Climate +222448,Climate,Climate +222447,Climate,Climate +218415,Climate,Climate +218413,Climate,Climate +398593,Climate,Climate +395517,Climate,Climate +395067,Climate,Climate +392236,Climate,Climate +392235,Climate,Climate +392234,Climate,Climate +390206,Climate,Climate +390202,Climate,Climate +387232,Climate,Climate +387230,Climate,Climate +385883,Climate,Climate +384990,Climate,Climate +383040,Climate,Climate +381949,Climate,Climate +380662,Climate,Climate +380661,Climate,Climate +380660,Climate,Climate +378509,Climate,Climate +378491,Climate,Climate +378490,Climate,Climate +378489,Climate,Climate +378488,Climate,Climate +378487,Climate,Climate +378486,Climate,Climate +378485,Climate,Climate +378484,Climate,Climate +378483,Climate,Climate +378482,Climate,Climate +378481,Climate,Climate +375976,Climate,Climate +375975,Climate,Climate +375566,Climate,Climate +375564,Climate,Climate +375557,Climate,Climate +375556,Climate,Climate +375555,Climate,Climate +374080,Climate,Climate +374079,Climate,Climate +370814,Climate,Climate +370813,Climate,Climate +366514,Climate,Climate +366512,Climate,Climate +357943,Climate,Climate +355305,Climate,Climate +355301,Climate,Climate +350226,Climate,Climate +343793,Climate,Climate +337845,Climate,Climate +334731,Climate,Climate +333595,Climate,Climate +333594,Climate,Climate +329389,Climate,Climate +327882,Climate,Climate +327881,Climate,Climate +327880,Climate,Climate +324788,Climate,Climate +324786,Climate,Climate +541731,Climate,Climate +538995,Climate,Climate +538994,Climate,Climate +537129,Climate,Climate +537128,Climate,Climate +537127,Climate,Climate +537126,Climate,Climate +536207,Climate,Climate +535942,Climate,Climate +531331,Climate,Climate +531330,Climate,Climate +531329,Climate,Climate +527557,Climate,Climate +527556,Climate,Climate +527555,Climate,Climate +527554,Climate,Climate +527552,Climate,Climate +524653,Climate,Climate +524652,Climate,Climate +524651,Climate,Climate +524650,Climate,Climate +524649,Climate,Climate +521389,Climate,Climate +519375,Climate,Climate +517822,Climate,Climate +517820,Climate,Climate +517817,Climate,Climate +517814,Climate,Climate +509720,Climate,Climate +509719,Climate,Climate +509718,Climate,Climate +509716,Climate,Climate +509714,Climate,Climate +506905,Climate,Climate +504066,Climate,Climate +504065,Climate,Climate +504064,Climate,Climate +504063,Climate,Climate +504062,Climate,Climate +502092,Climate,Climate +502087,Climate,Climate +498757,Climate,Climate +498749,Climate,Climate +495171,Climate,Climate +493016,Climate,Climate +493015,Climate,Climate +493013,Climate,Climate +493012,Climate,Climate +493010,Climate,Climate +493009,Climate,Climate +490276,Climate,Climate +490274,Climate,Climate +487974,Climate,Climate +487973,Climate,Climate +487972,Climate,Climate +487971,Climate,Climate +487970,Climate,Climate +487969,Climate,Climate +487960,Climate,Climate +487957,Climate,Climate +487953,Climate,Climate +487951,Climate,Climate +487949,Climate,Climate +486543,Climate,Climate +484817,Climate,Climate +484815,Climate,Climate +484814,Climate,Climate +484812,Climate,Climate +484811,Climate,Climate +484805,Climate,Climate +481520,Climate,Climate +481519,Climate,Climate +481518,Climate,Climate +481517,Climate,Climate +481516,Climate,Climate +481515,Climate,Climate +481514,Climate,Climate +481513,Climate,Climate +481512,Climate,Climate +479821,Climate,Climate +479820,Climate,Climate +479813,Climate,Climate +479242,Climate,Climate +479241,Climate,Climate +477046,Climate,Climate +477041,Climate,Climate +477039,Climate,Climate +477037,Climate,Climate +477034,Climate,Climate +476952,Climate,Climate +476951,Climate,Climate +476950,Climate,Climate +476949,Climate,Climate +474989,Climate,Climate +474987,Climate,Climate +474986,Climate,Climate +472365,Climate,Climate +472356,Climate,Climate +472355,Climate,Climate +472354,Climate,Climate +472353,Climate,Climate +472352,Climate,Climate +472351,Climate,Climate +470299,Climate,Climate +470099,Climate,Climate +470096,Climate,Climate +470095,Climate,Climate +470092,Climate,Climate +470085,Climate,Climate +467044,Climate,Climate +467040,Climate,Climate +467033,Climate,Climate +467032,Climate,Climate +467029,Climate,Climate +467027,Climate,Climate +465334,Climate,Climate +464266,Climate,Climate +464265,Climate,Climate +456999,Climate,Climate +456998,Climate,Climate +455456,Climate,Climate +455453,Climate,Climate +455452,Climate,Climate +455450,Climate,Climate +455443,Climate,Climate +452017,Climate,Climate +452016,Climate,Climate +452015,Climate,Climate +452013,Climate,Climate +452012,Climate,Climate +452011,Climate,Climate +449199,Climate,Climate +449195,Climate,Climate +449193,Climate,Climate +449192,Climate,Climate +449171,Climate,Climate +449170,Climate,Climate +449169,Climate,Climate +449168,Climate,Climate +449167,Climate,Climate +449165,Climate,Climate +446971,Climate,Climate +446970,Climate,Climate +446969,Climate,Climate +446965,Climate,Climate +446962,Climate,Climate +441332,Climate,Climate +441330,Climate,Climate +441328,Climate,Climate +438021,Climate,Climate +433461,Climate,Climate +432159,Climate,Climate +430562,Climate,Climate +430561,Climate,Climate +428527,Climate,Climate +428526,Climate,Climate +428525,Climate,Climate +425535,Climate,Climate +425534,Climate,Climate +425533,Climate,Climate +425532,Climate,Climate +425531,Climate,Climate +425529,Climate,Climate +423941,Climate,Climate +423929,Climate,Climate +423863,Climate,Climate +423862,Climate,Climate +415801,Climate,Climate +415798,Climate,Climate +413030,Climate,Climate +407394,Climate,Climate +406970,Climate,Climate +405020,Climate,Climate +403588,Climate,Climate +403241,Climate,Climate +403238,Climate,Climate +464266,Research and Development,Research and Development (R&D) +464265,Research and Development,Research and Development (R&D) +222447,Research and Development,Research and Development (R&D) +484815,Research and Development,Research and Development (R&D) +484814,Research and Development,Research and Development (R&D) +385605,Research and Development,Research and Development (R&D) +385601,Research and Development,Research and Development (R&D) +162063,Research and Development,Research and Development (R&D) +162061,Research and Development,Research and Development (R&D) +162060,Research and Development,Research and Development (R&D) +160008,Research and Development,Research and Development (R&D) +157248,Research and Development,Research and Development (R&D) +157245,Research and Development,Research and Development (R&D) +157224,Research and Development,Research and Development (R&D) +157123,Research and Development,Research and Development (R&D) +154986,Research and Development,Research and Development (R&D) +152129,Research and Development,Research and Development (R&D) +150499,Research and Development,Research and Development (R&D) +148449,Research and Development,Research and Development (R&D) +237098,Research and Development,Research and Development (R&D) +233221,Research and Development,Research and Development (R&D) +233220,Research and Development,Research and Development (R&D) +230279,Research and Development,Research and Development (R&D) +230278,Research and Development,Research and Development (R&D) +230276,Research and Development,Research and Development (R&D) +223647,Research and Development,Research and Development (R&D) +223638,Research and Development,Research and Development (R&D) +219347,Research and Development,Research and Development (R&D) +219327,Research and Development,Research and Development (R&D) +212358,Research and Development,Research and Development (R&D) +212356,Research and Development,Research and Development (R&D) +208307,Research and Development,Research and Development (R&D) +207868,Research and Development,Research and Development (R&D) +200968,Research and Development,Research and Development (R&D) +195484,Research and Development,Research and Development (R&D) +195030,Research and Development,Research and Development (R&D) +190168,Research and Development,Research and Development (R&D) +190165,Research and Development,Research and Development (R&D) +187346,Research and Development,Research and Development (R&D) +187345,Research and Development,Research and Development (R&D) +187344,Research and Development,Research and Development (R&D) +180474,Research and Development,Research and Development (R&D) +180470,Research and Development,Research and Development (R&D) +176077,Research and Development,Research and Development (R&D) +176076,Research and Development,Research and Development (R&D) +174184,Research and Development,Research and Development (R&D) +172125,Research and Development,Research and Development (R&D) +171055,Research and Development,Research and Development (R&D) +167855,Research and Development,Research and Development (R&D) +167853,Research and Development,Research and Development (R&D) +167851,Research and Development,Research and Development (R&D) +166375,Research and Development,Research and Development (R&D) +166366,Research and Development,Research and Development (R&D) +166346,Research and Development,Research and Development (R&D) +166324,Research and Development,Research and Development (R&D) +164333,Research and Development,Research and Development (R&D) +316369,Research and Development,Research and Development (R&D) +313271,Research and Development,Research and Development (R&D) +313270,Research and Development,Research and Development (R&D) +313269,Research and Development,Research and Development (R&D) +311439,Research and Development,Research and Development (R&D) +311437,Research and Development,Research and Development (R&D) +311435,Research and Development,Research and Development (R&D) +311434,Research and Development,Research and Development (R&D) +311433,Research and Development,Research and Development (R&D) +311432,Research and Development,Research and Development (R&D) +311431,Research and Development,Research and Development (R&D) +311430,Research and Development,Research and Development (R&D) +311429,Research and Development,Research and Development (R&D) +311427,Research and Development,Research and Development (R&D) +311423,Research and Development,Research and Development (R&D) +311420,Research and Development,Research and Development (R&D) +311419,Research and Development,Research and Development (R&D) +311417,Research and Development,Research and Development (R&D) +311414,Research and Development,Research and Development (R&D) +311413,Research and Development,Research and Development (R&D) +311412,Research and Development,Research and Development (R&D) +311411,Research and Development,Research and Development (R&D) +311410,Research and Development,Research and Development (R&D) +308549,Research and Development,Research and Development (R&D) +308529,Research and Development,Research and Development (R&D) +308451,Research and Development,Research and Development (R&D) +308449,Research and Development,Research and Development (R&D) +308431,Research and Development,Research and Development (R&D) +308430,Research and Development,Research and Development (R&D) +308389,Research and Development,Research and Development (R&D) +303749,Research and Development,Research and Development (R&D) +303709,Research and Development,Research and Development (R&D) +303689,Research and Development,Research and Development (R&D) +303671,Research and Development,Research and Development (R&D) +303670,Research and Development,Research and Development (R&D) +303652,Research and Development,Research and Development (R&D) +303651,Research and Development,Research and Development (R&D) +303649,Research and Development,Research and Development (R&D) +303647,Research and Development,Research and Development (R&D) +303645,Research and Development,Research and Development (R&D) +303644,Research and Development,Research and Development (R&D) +297311,Research and Development,Research and Development (R&D) +297310,Research and Development,Research and Development (R&D) +297292,Research and Development,Research and Development (R&D) +297291,Research and Development,Research and Development (R&D) +297290,Research and Development,Research and Development (R&D) +297289,Research and Development,Research and Development (R&D) +297270,Research and Development,Research and Development (R&D) +297269,Research and Development,Research and Development (R&D) +297250,Research and Development,Research and Development (R&D) +277789,Research and Development,Research and Development (R&D) +273890,Research and Development,Research and Development (R&D) +273869,Research and Development,Research and Development (R&D) +251542,Research and Development,Research and Development (R&D) +251469,Research and Development,Research and Development (R&D) +251442,Research and Development,Research and Development (R&D) +251435,Research and Development,Research and Development (R&D) +245315,Research and Development,Research and Development (R&D) +245314,Research and Development,Research and Development (R&D) +245123,Research and Development,Research and Development (R&D) +245122,Research and Development,Research and Development (R&D) +245120,Research and Development,Research and Development (R&D) +245119,Research and Development,Research and Development (R&D) +245118,Research and Development,Research and Development (R&D) +245117,Research and Development,Research and Development (R&D) +241298,Research and Development,Research and Development (R&D) +385598,Research and Development,Research and Development (R&D) +385592,Research and Development,Research and Development (R&D) +385584,Research and Development,Research and Development (R&D) +385575,Research and Development,Research and Development (R&D) +385574,Research and Development,Research and Development (R&D) +385555,Research and Development,Research and Development (R&D) +385256,Research and Development,Research and Development (R&D) +385255,Research and Development,Research and Development (R&D) +385251,Research and Development,Research and Development (R&D) +383353,Research and Development,Research and Development (R&D) +383352,Research and Development,Research and Development (R&D) +382635,Research and Development,Research and Development (R&D) +382631,Research and Development,Research and Development (R&D) +381376,Research and Development,Research and Development (R&D) +381284,Research and Development,Research and Development (R&D) +381283,Research and Development,Research and Development (R&D) +381280,Research and Development,Research and Development (R&D) +381278,Research and Development,Research and Development (R&D) +381276,Research and Development,Research and Development (R&D) +381272,Research and Development,Research and Development (R&D) +381271,Research and Development,Research and Development (R&D) +381268,Research and Development,Research and Development (R&D) +381266,Research and Development,Research and Development (R&D) +379476,Research and Development,Research and Development (R&D) +379472,Research and Development,Research and Development (R&D) +379467,Research and Development,Research and Development (R&D) +379458,Research and Development,Research and Development (R&D) +377053,Research and Development,Research and Development (R&D) +377052,Research and Development,Research and Development (R&D) +377045,Research and Development,Research and Development (R&D) +377038,Research and Development,Research and Development (R&D) +374676,Research and Development,Research and Development (R&D) +374673,Research and Development,Research and Development (R&D) +374668,Research and Development,Research and Development (R&D) +374659,Research and Development,Research and Development (R&D) +369149,Research and Development,Research and Development (R&D) +369148,Research and Development,Research and Development (R&D) +366463,Research and Development,Research and Development (R&D) +366462,Research and Development,Research and Development (R&D) +364717,Research and Development,Research and Development (R&D) +364716,Research and Development,Research and Development (R&D) +364715,Research and Development,Research and Development (R&D) +364714,Research and Development,Research and Development (R&D) +363582,Research and Development,Research and Development (R&D) +363303,Research and Development,Research and Development (R&D) +363302,Research and Development,Research and Development (R&D) +362384,Research and Development,Research and Development (R&D) +362382,Research and Development,Research and Development (R&D) +362381,Research and Development,Research and Development (R&D) +361195,Research and Development,Research and Development (R&D) +361194,Research and Development,Research and Development (R&D) +359894,Research and Development,Research and Development (R&D) +359892,Research and Development,Research and Development (R&D) +359891,Research and Development,Research and Development (R&D) +359889,Research and Development,Research and Development (R&D) +359885,Research and Development,Research and Development (R&D) +359884,Research and Development,Research and Development (R&D) +359881,Research and Development,Research and Development (R&D) +356545,Research and Development,Research and Development (R&D) +353514,Research and Development,Research and Development (R&D) +353513,Research and Development,Research and Development (R&D) +353512,Research and Development,Research and Development (R&D) +353511,Research and Development,Research and Development (R&D) +353510,Research and Development,Research and Development (R&D) +353507,Research and Development,Research and Development (R&D) +353501,Research and Development,Research and Development (R&D) +351493,Research and Development,Research and Development (R&D) +351492,Research and Development,Research and Development (R&D) +351491,Research and Development,Research and Development (R&D) +351490,Research and Development,Research and Development (R&D) +351488,Research and Development,Research and Development (R&D) +351486,Research and Development,Research and Development (R&D) +351484,Research and Development,Research and Development (R&D) +351483,Research and Development,Research and Development (R&D) +351480,Research and Development,Research and Development (R&D) +349609,Research and Development,Research and Development (R&D) +349608,Research and Development,Research and Development (R&D) +349607,Research and Development,Research and Development (R&D) +349606,Research and Development,Research and Development (R&D) +349605,Research and Development,Research and Development (R&D) +349604,Research and Development,Research and Development (R&D) +349603,Research and Development,Research and Development (R&D) +349602,Research and Development,Research and Development (R&D) +347605,Research and Development,Research and Development (R&D) +347604,Research and Development,Research and Development (R&D) +347603,Research and Development,Research and Development (R&D) +347601,Research and Development,Research and Development (R&D) +344086,Research and Development,Research and Development (R&D) +344085,Research and Development,Research and Development (R&D) +343933,Research and Development,Research and Development (R&D) +343931,Research and Development,Research and Development (R&D) +343929,Research and Development,Research and Development (R&D) +343924,Research and Development,Research and Development (R&D) +341840,Research and Development,Research and Development (R&D) +341831,Research and Development,Research and Development (R&D) +341825,Research and Development,Research and Development (R&D) +341821,Research and Development,Research and Development (R&D) +341814,Research and Development,Research and Development (R&D) +339104,Research and Development,Research and Development (R&D) +339103,Research and Development,Research and Development (R&D) +339099,Research and Development,Research and Development (R&D) +339098,Research and Development,Research and Development (R&D) +336285,Research and Development,Research and Development (R&D) +336284,Research and Development,Research and Development (R&D) +336283,Research and Development,Research and Development (R&D) +336279,Research and Development,Research and Development (R&D) +336272,Research and Development,Research and Development (R&D) +333809,Research and Development,Research and Development (R&D) +333807,Research and Development,Research and Development (R&D) +331856,Research and Development,Research and Development (R&D) +331852,Research and Development,Research and Development (R&D) +331851,Research and Development,Research and Development (R&D) +331850,Research and Development,Research and Development (R&D) +328242,Research and Development,Research and Development (R&D) +328240,Research and Development,Research and Development (R&D) +325062,Research and Development,Research and Development (R&D) +324967,Research and Development,Research and Development (R&D) +322216,Research and Development,Research and Development (R&D) +322213,Research and Development,Research and Development (R&D) +322211,Research and Development,Research and Development (R&D) +322209,Research and Development,Research and Development (R&D) +319818,Research and Development,Research and Development (R&D) +319715,Research and Development,Research and Development (R&D) +319714,Research and Development,Research and Development (R&D) +319713,Research and Development,Research and Development (R&D) +319712,Research and Development,Research and Development (R&D) +318109,Research and Development,Research and Development (R&D) +316394,Research and Development,Research and Development (R&D) +316393,Research and Development,Research and Development (R&D) +316392,Research and Development,Research and Development (R&D) +316391,Research and Development,Research and Development (R&D) +316389,Research and Development,Research and Development (R&D) +316387,Research and Development,Research and Development (R&D) +316385,Research and Development,Research and Development (R&D) +316382,Research and Development,Research and Development (R&D) +316380,Research and Development,Research and Development (R&D) +316378,Research and Development,Research and Development (R&D) +316377,Research and Development,Research and Development (R&D) +316375,Research and Development,Research and Development (R&D) +316372,Research and Development,Research and Development (R&D) +316371,Research and Development,Research and Development (R&D) +536772,Research and Development,Research and Development (R&D) +536771,Research and Development,Research and Development (R&D) +536769,Research and Development,Research and Development (R&D) +536767,Research and Development,Research and Development (R&D) +536764,Research and Development,Research and Development (R&D) +536763,Research and Development,Research and Development (R&D) +536761,Research and Development,Research and Development (R&D) +531775,Research and Development,Research and Development (R&D) +525539,Research and Development,Research and Development (R&D) +525537,Research and Development,Research and Development (R&D) +525536,Research and Development,Research and Development (R&D) +504549,Research and Development,Research and Development (R&D) +504546,Research and Development,Research and Development (R&D) +500907,Research and Development,Research and Development (R&D) +500906,Research and Development,Research and Development (R&D) +500904,Research and Development,Research and Development (R&D) +484017,Research and Development,Research and Development (R&D) +479962,Research and Development,Research and Development (R&D) +479959,Research and Development,Research and Development (R&D) +479958,Research and Development,Research and Development (R&D) +479955,Research and Development,Research and Development (R&D) +475468,Research and Development,Research and Development (R&D) +469953,Research and Development,Research and Development (R&D) +469951,Research and Development,Research and Development (R&D) +469949,Research and Development,Research and Development (R&D) +469946,Research and Development,Research and Development (R&D) +469943,Research and Development,Research and Development (R&D) +469939,Research and Development,Research and Development (R&D) +469933,Research and Development,Research and Development (R&D) +469927,Research and Development,Research and Development (R&D) +469921,Research and Development,Research and Development (R&D) +463401,Research and Development,Research and Development (R&D) +462661,Research and Development,Research and Development (R&D) +438869,Research and Development,Research and Development (R&D) +438867,Research and Development,Research and Development (R&D) +438866,Research and Development,Research and Development (R&D) +438831,Research and Development,Research and Development (R&D) +438829,Research and Development,Research and Development (R&D) +438828,Research and Development,Research and Development (R&D) +438827,Research and Development,Research and Development (R&D) +438825,Research and Development,Research and Development (R&D) +438818,Research and Development,Research and Development (R&D) +438813,Research and Development,Research and Development (R&D) +433566,Research and Development,Research and Development (R&D) +433564,Research and Development,Research and Development (R&D) +431219,Research and Development,Research and Development (R&D) +430987,Research and Development,Research and Development (R&D) +430986,Research and Development,Research and Development (R&D) +429291,Research and Development,Research and Development (R&D) +429287,Research and Development,Research and Development (R&D) +429283,Research and Development,Research and Development (R&D) +429281,Research and Development,Research and Development (R&D) +429278,Research and Development,Research and Development (R&D) +429276,Research and Development,Research and Development (R&D) +429266,Research and Development,Research and Development (R&D) +426830,Research and Development,Research and Development (R&D) +426829,Research and Development,Research and Development (R&D) +426828,Research and Development,Research and Development (R&D) +426824,Research and Development,Research and Development (R&D) +426823,Research and Development,Research and Development (R&D) +426821,Research and Development,Research and Development (R&D) +426819,Research and Development,Research and Development (R&D) +426818,Research and Development,Research and Development (R&D) +424134,Research and Development,Research and Development (R&D) +422386,Research and Development,Research and Development (R&D) +418282,Research and Development,Research and Development (R&D) +418281,Research and Development,Research and Development (R&D) +418280,Research and Development,Research and Development (R&D) +416698,Research and Development,Research and Development (R&D) +416686,Research and Development,Research and Development (R&D) +416657,Research and Development,Research and Development (R&D) +409945,Research and Development,Research and Development (R&D) +409913,Research and Development,Research and Development (R&D) +408189,Research and Development,Research and Development (R&D) +408187,Research and Development,Research and Development (R&D) +408185,Research and Development,Research and Development (R&D) +408184,Research and Development,Research and Development (R&D) +408177,Research and Development,Research and Development (R&D) +408175,Research and Development,Research and Development (R&D) +408173,Research and Development,Research and Development (R&D) +406316,Research and Development,Research and Development (R&D) +406315,Research and Development,Research and Development (R&D) +405725,Research and Development,Research and Development (R&D) +405724,Research and Development,Research and Development (R&D) +405723,Research and Development,Research and Development (R&D) +403907,Research and Development,Research and Development (R&D) +403905,Research and Development,Research and Development (R&D) +401034,Research and Development,Research and Development (R&D) +401033,Research and Development,Research and Development (R&D) +401032,Research and Development,Research and Development (R&D) +401030,Research and Development,Research and Development (R&D) +399023,Research and Development,Research and Development (R&D) +399022,Research and Development,Research and Development (R&D) +399021,Research and Development,Research and Development (R&D) +399020,Research and Development,Research and Development (R&D) +399019,Research and Development,Research and Development (R&D) +399018,Research and Development,Research and Development (R&D) +399017,Research and Development,Research and Development (R&D) +399015,Research and Development,Research and Development (R&D) +399014,Research and Development,Research and Development (R&D) +397240,Research and Development,Research and Development (R&D) +397063,Research and Development,Research and Development (R&D) +397061,Research and Development,Research and Development (R&D) +397060,Research and Development,Research and Development (R&D) +397054,Research and Development,Research and Development (R&D) +397051,Research and Development,Research and Development (R&D) +397050,Research and Development,Research and Development (R&D) +394535,Research and Development,Research and Development (R&D) +394532,Research and Development,Research and Development (R&D) +394530,Research and Development,Research and Development (R&D) +392339,Research and Development,Research and Development (R&D) +392338,Research and Development,Research and Development (R&D) +392337,Research and Development,Research and Development (R&D) +391571,Research and Development,Research and Development (R&D) +388462,Research and Development,Research and Development (R&D) +388460,Research and Development,Research and Development (R&D) +388458,Research and Development,Research and Development (R&D) +329922,International Development,Développement international +329921,International Development,Développement international +159857,International Development,Développement international +159843,International Development,Développement international +159098,International Development,Développement international +157602,International Development,Développement international +157185,International Development,Développement international +157181,International Development,Développement international +154891,International Development,Développement international +148498,International Development,Développement international +148497,International Development,Développement international +148496,International Development,Développement international +185938,International Development,Développement international +174873,International Development,Développement international +174872,International Development,Développement international +174871,International Development,Développement international +173501,International Development,Développement international +173498,International Development,Développement international +173497,International Development,Développement international +173493,International Development,Développement international +173487,International Development,Développement international +172067,International Development,Développement international +172066,International Development,Développement international +170946,International Development,Développement international +170938,International Development,Développement international +169051,International Development,Développement international +319231,International Development,Développement international +319226,International Development,Développement international +313142,International Development,Développement international +310438,International Development,Développement international +304051,International Development,Développement international +282590,International Development,Développement international +282549,International Development,Développement international +269532,International Development,Développement international +259550,International Development,Développement international +250786,International Development,Développement international +245403,International Development,Développement international +227253,International Development,Développement international +223530,International Development,Développement international +223524,International Development,Développement international +223521,International Development,Développement international +219472,International Development,Développement international +212444,International Development,Développement international +200828,International Development,Développement international +200827,International Development,Développement international +194955,International Development,Développement international +243214,Budget,Budget +243213,Budget,Budget +196851,Budget,Budget +196850,Budget,Budget +196849,Budget,Budget +196847,Budget,Budget +196846,Budget,Budget +196845,Budget,Budget +196844,Budget,Budget +196843,Budget,Budget +196842,Budget,Budget +196841,Budget,Budget +196839,Budget,Budget +196838,Budget,Budget +196836,Budget,Budget +196834,Budget,Budget +243212,Budget,Budget +243211,Budget,Budget +243210,Budget,Budget +243209,Budget,Budget +243208,Budget,Budget +243207,Budget,Budget +243206,Budget,Budget +243205,Budget,Budget +243204,Budget,Budget +243203,Budget,Budget +243202,Budget,Budget +243200,Budget,Budget +243199,Budget,Budget +243198,Budget,Budget +243197,Budget,Budget +243196,Budget,Budget +243195,Budget,Budget +243194,Budget,Budget +243193,Budget,Budget +243192,Budget,Budget +243191,Budget,Budget +243189,Budget,Budget +197142,Budget,Budget +197140,Budget,Budget +197139,Budget,Budget +197136,Budget,Budget +196882,Budget,Budget +196881,Budget,Budget +196880,Budget,Budget +196879,Budget,Budget +196878,Budget,Budget +196877,Budget,Budget +196876,Budget,Budget +196875,Budget,Budget +196874,Budget,Budget +196873,Budget,Budget +196872,Budget,Budget +196871,Budget,Budget +196870,Budget,Budget +196865,Budget,Budget +196864,Budget,Budget +196863,Budget,Budget +196862,Budget,Budget +196860,Budget,Budget +196859,Budget,Budget +196858,Budget,Budget +196856,Budget,Budget +196855,Budget,Budget +196854,Budget,Budget +196853,Budget,Budget +196852,Budget,Budget +244013,Budget,Budget +244009,Budget,Budget +243307,Budget,Budget +243304,Budget,Budget +243303,Budget,Budget +243302,Budget,Budget +243301,Budget,Budget +243300,Budget,Budget +243299,Budget,Budget +243298,Budget,Budget +243297,Budget,Budget +243296,Budget,Budget +243295,Budget,Budget +243294,Budget,Budget +243293,Budget,Budget +243292,Budget,Budget +243290,Budget,Budget +243289,Budget,Budget +243217,Budget,Budget +243216,Budget,Budget +209828,Employment and Training,Employment and Training +206193,Employment and Training,Employment and Training +161352,Employment and Training,Employment and Training +161351,Employment and Training,Employment and Training +161350,Employment and Training,Employment and Training +161349,Employment and Training,Employment and Training +159157,Employment and Training,Employment and Training +158305,Employment and Training,Employment and Training +158304,Employment and Training,Employment and Training +158303,Employment and Training,Employment and Training +158302,Employment and Training,Employment and Training +158301,Employment and Training,Employment and Training +158300,Employment and Training,Employment and Training +158299,Employment and Training,Employment and Training +158298,Employment and Training,Employment and Training +158297,Employment and Training,Employment and Training +158296,Employment and Training,Employment and Training +158295,Employment and Training,Employment and Training +158294,Employment and Training,Employment and Training +158293,Employment and Training,Employment and Training +158292,Employment and Training,Employment and Training +158291,Employment and Training,Employment and Training +158290,Employment and Training,Employment and Training +158289,Employment and Training,Employment and Training +158288,Employment and Training,Employment and Training +158287,Employment and Training,Employment and Training +158282,Employment and Training,Employment and Training +158280,Employment and Training,Employment and Training +158279,Employment and Training,Employment and Training +158276,Employment and Training,Employment and Training +158274,Employment and Training,Employment and Training +158273,Employment and Training,Employment and Training +158271,Employment and Training,Employment and Training +158270,Employment and Training,Employment and Training +158269,Employment and Training,Employment and Training +158268,Employment and Training,Employment and Training +158267,Employment and Training,Employment and Training +158266,Employment and Training,Employment and Training +158265,Employment and Training,Employment and Training +158264,Employment and Training,Employment and Training +158262,Employment and Training,Employment and Training +158261,Employment and Training,Employment and Training +158260,Employment and Training,Employment and Training +158259,Employment and Training,Employment and Training +158258,Employment and Training,Employment and Training +158257,Employment and Training,Employment and Training +158256,Employment and Training,Employment and Training +158255,Employment and Training,Employment and Training +158254,Employment and Training,Employment and Training +158253,Employment and Training,Employment and Training +158252,Employment and Training,Employment and Training +158251,Employment and Training,Employment and Training +158250,Employment and Training,Employment and Training +158249,Employment and Training,Employment and Training +158248,Employment and Training,Employment and Training +157814,Employment and Training,Employment and Training +197142,Employment and Training,Employment and Training +197140,Employment and Training,Employment and Training +197139,Employment and Training,Employment and Training +197136,Employment and Training,Employment and Training +196882,Employment and Training,Employment and Training +196881,Employment and Training,Employment and Training +196880,Employment and Training,Employment and Training +196879,Employment and Training,Employment and Training +196878,Employment and Training,Employment and Training +196877,Employment and Training,Employment and Training +196876,Employment and Training,Employment and Training +196875,Employment and Training,Employment and Training +196874,Employment and Training,Employment and Training +196873,Employment and Training,Employment and Training +196872,Employment and Training,Employment and Training +196871,Employment and Training,Employment and Training +196870,Employment and Training,Employment and Training +196865,Employment and Training,Employment and Training +196864,Employment and Training,Employment and Training +196863,Employment and Training,Employment and Training +196862,Employment and Training,Employment and Training +196860,Employment and Training,Employment and Training +196859,Employment and Training,Employment and Training +196858,Employment and Training,Employment and Training +196856,Employment and Training,Employment and Training +196855,Employment and Training,Employment and Training +196854,Employment and Training,Employment and Training +196853,Employment and Training,Employment and Training +196852,Employment and Training,Employment and Training +196851,Employment and Training,Employment and Training +196850,Employment and Training,Employment and Training +196849,Employment and Training,Employment and Training +196847,Employment and Training,Employment and Training +196846,Employment and Training,Employment and Training +196845,Employment and Training,Employment and Training +196844,Employment and Training,Employment and Training +196843,Employment and Training,Employment and Training +196842,Employment and Training,Employment and Training +196841,Employment and Training,Employment and Training +196839,Employment and Training,Employment and Training +196838,Employment and Training,Employment and Training +196836,Employment and Training,Employment and Training +196834,Employment and Training,Employment and Training +166644,Employment and Training,Employment and Training +244013,Employment and Training,Employment and Training +244009,Employment and Training,Employment and Training +243307,Employment and Training,Employment and Training +243304,Employment and Training,Employment and Training +243303,Employment and Training,Employment and Training +243302,Employment and Training,Employment and Training +243301,Employment and Training,Employment and Training +243300,Employment and Training,Employment and Training +243299,Employment and Training,Employment and Training +243298,Employment and Training,Employment and Training +243297,Employment and Training,Employment and Training +243296,Employment and Training,Employment and Training +243295,Employment and Training,Employment and Training +243294,Employment and Training,Employment and Training +243293,Employment and Training,Employment and Training +243292,Employment and Training,Employment and Training +243290,Employment and Training,Employment and Training +243289,Employment and Training,Employment and Training +243217,Employment and Training,Employment and Training +243216,Employment and Training,Employment and Training +243215,Employment and Training,Employment and Training +243214,Employment and Training,Employment and Training +243213,Employment and Training,Employment and Training +243212,Employment and Training,Employment and Training +243211,Employment and Training,Employment and Training +243210,Employment and Training,Employment and Training +243209,Employment and Training,Employment and Training +243208,Employment and Training,Employment and Training +243207,Employment and Training,Employment and Training +243206,Employment and Training,Employment and Training +243205,Employment and Training,Employment and Training +243204,Employment and Training,Employment and Training +243203,Employment and Training,Employment and Training +243202,Employment and Training,Employment and Training +243200,Employment and Training,Employment and Training +243199,Employment and Training,Employment and Training +243198,Employment and Training,Employment and Training +243197,Employment and Training,Employment and Training +243196,Employment and Training,Employment and Training +243195,Employment and Training,Employment and Training +243194,Employment and Training,Employment and Training +243193,Employment and Training,Employment and Training +243192,Employment and Training,Employment and Training +243191,Employment and Training,Employment and Training +243189,Employment and Training,Employment and Training +215007,Employment and Training,Employment and Training +214987,Employment and Training,Employment and Training +196859,International Development,International Development +196858,International Development,International Development +158268,International Development,International Development +158267,International Development,International Development +158266,International Development,International Development +158265,International Development,International Development +158264,International Development,International Development +158262,International Development,International Development +158261,International Development,International Development +158260,International Development,International Development +158259,International Development,International Development +158258,International Development,International Development +158257,International Development,International Development +158256,International Development,International Development +158255,International Development,International Development +158254,International Development,International Development +158253,International Development,International Development +158252,International Development,International Development +158251,International Development,International Development +158250,International Development,International Development +158249,International Development,International Development +158248,International Development,International Development +157814,International Development,International Development +196856,International Development,International Development +196855,International Development,International Development +196854,International Development,International Development +196853,International Development,International Development +196852,International Development,International Development +196851,International Development,International Development +196850,International Development,International Development +196849,International Development,International Development +196847,International Development,International Development +196846,International Development,International Development +196845,International Development,International Development +196844,International Development,International Development +196843,International Development,International Development +196842,International Development,International Development +196841,International Development,International Development +196839,International Development,International Development +196838,International Development,International Development +196836,International Development,International Development +196834,International Development,International Development +166644,International Development,International Development +159157,International Development,International Development +158287,International Development,International Development +158282,International Development,International Development +158280,International Development,International Development +158279,International Development,International Development +158276,International Development,International Development +158274,International Development,International Development +158273,International Development,International Development +158271,International Development,International Development +158270,International Development,International Development +158269,International Development,International Development +197142,International Development,International Development +197140,International Development,International Development +197139,International Development,International Development +197136,International Development,International Development +196882,International Development,International Development +196881,International Development,International Development +196880,International Development,International Development +196879,International Development,International Development +196878,International Development,International Development +196877,International Development,International Development +196876,International Development,International Development +196875,International Development,International Development +196874,International Development,International Development +196873,International Development,International Development +196872,International Development,International Development +196871,International Development,International Development +196870,International Development,International Development +196865,International Development,International Development +196864,International Development,International Development +196863,International Development,International Development +196862,International Development,International Development +196858,Research and Development,Research and Development (R&D) +451208,Research and Development,Research and Development (R&D) +158261,Research and Development,Research and Development (R&D) +158260,Research and Development,Research and Development (R&D) +158259,Research and Development,Research and Development (R&D) +158258,Research and Development,Research and Development (R&D) +158257,Research and Development,Research and Development (R&D) +158256,Research and Development,Research and Development (R&D) +158255,Research and Development,Research and Development (R&D) +158254,Research and Development,Research and Development (R&D) +158253,Research and Development,Research and Development (R&D) +158252,Research and Development,Research and Development (R&D) +158251,Research and Development,Research and Development (R&D) +158250,Research and Development,Research and Development (R&D) +158249,Research and Development,Research and Development (R&D) +158248,Research and Development,Research and Development (R&D) +157814,Research and Development,Research and Development (R&D) +196856,Research and Development,Research and Development (R&D) +196855,Research and Development,Research and Development (R&D) +196854,Research and Development,Research and Development (R&D) +196853,Research and Development,Research and Development (R&D) +196852,Research and Development,Research and Development (R&D) +196851,Research and Development,Research and Development (R&D) +196850,Research and Development,Research and Development (R&D) +196849,Research and Development,Research and Development (R&D) +196847,Research and Development,Research and Development (R&D) +196846,Research and Development,Research and Development (R&D) +196845,Research and Development,Research and Development (R&D) +196844,Research and Development,Research and Development (R&D) +196843,Research and Development,Research and Development (R&D) +196842,Research and Development,Research and Development (R&D) +196841,Research and Development,Research and Development (R&D) +196839,Research and Development,Research and Development (R&D) +196838,Research and Development,Research and Development (R&D) +196836,Research and Development,Research and Development (R&D) +196834,Research and Development,Research and Development (R&D) +159157,Research and Development,Research and Development (R&D) +158287,Research and Development,Research and Development (R&D) +158282,Research and Development,Research and Development (R&D) +158280,Research and Development,Research and Development (R&D) +158279,Research and Development,Research and Development (R&D) +158276,Research and Development,Research and Development (R&D) +158274,Research and Development,Research and Development (R&D) +158273,Research and Development,Research and Development (R&D) +158271,Research and Development,Research and Development (R&D) +158270,Research and Development,Research and Development (R&D) +158269,Research and Development,Research and Development (R&D) +158268,Research and Development,Research and Development (R&D) +158267,Research and Development,Research and Development (R&D) +158266,Research and Development,Research and Development (R&D) +158265,Research and Development,Research and Development (R&D) +158264,Research and Development,Research and Development (R&D) +158262,Research and Development,Research and Development (R&D) +244013,Research and Development,Research and Development (R&D) +244009,Research and Development,Research and Development (R&D) +243307,Research and Development,Research and Development (R&D) +243304,Research and Development,Research and Development (R&D) +243303,Research and Development,Research and Development (R&D) +243302,Research and Development,Research and Development (R&D) +243301,Research and Development,Research and Development (R&D) +243300,Research and Development,Research and Development (R&D) +243299,Research and Development,Research and Development (R&D) +243298,Research and Development,Research and Development (R&D) +243297,Research and Development,Research and Development (R&D) +243296,Research and Development,Research and Development (R&D) +243295,Research and Development,Research and Development (R&D) +243294,Research and Development,Research and Development (R&D) +243293,Research and Development,Research and Development (R&D) +243292,Research and Development,Research and Development (R&D) +243290,Research and Development,Research and Development (R&D) +243289,Research and Development,Research and Development (R&D) +243217,Research and Development,Research and Development (R&D) +243216,Research and Development,Research and Development (R&D) +243215,Research and Development,Research and Development (R&D) +243214,Research and Development,Research and Development (R&D) +243213,Research and Development,Research and Development (R&D) +243212,Research and Development,Research and Development (R&D) +243211,Research and Development,Research and Development (R&D) +243210,Research and Development,Research and Development (R&D) +243209,Research and Development,Research and Development (R&D) +243208,Research and Development,Research and Development (R&D) +243207,Research and Development,Research and Development (R&D) +243206,Research and Development,Research and Development (R&D) +243205,Research and Development,Research and Development (R&D) +243204,Research and Development,Research and Development (R&D) +243203,Research and Development,Research and Development (R&D) +243202,Research and Development,Research and Development (R&D) +243200,Research and Development,Research and Development (R&D) +243199,Research and Development,Research and Development (R&D) +243198,Research and Development,Research and Development (R&D) +243197,Research and Development,Research and Development (R&D) +243196,Research and Development,Research and Development (R&D) +243195,Research and Development,Research and Development (R&D) +243194,Research and Development,Research and Development (R&D) +243193,Research and Development,Research and Development (R&D) +243192,Research and Development,Research and Development (R&D) +243191,Research and Development,Research and Development (R&D) +243189,Research and Development,Research and Development (R&D) +197142,Research and Development,Research and Development (R&D) +197140,Research and Development,Research and Development (R&D) +197139,Research and Development,Research and Development (R&D) +197136,Research and Development,Research and Development (R&D) +196882,Research and Development,Research and Development (R&D) +196881,Research and Development,Research and Development (R&D) +196880,Research and Development,Research and Development (R&D) +196879,Research and Development,Research and Development (R&D) +196878,Research and Development,Research and Development (R&D) +196877,Research and Development,Research and Development (R&D) +196876,Research and Development,Research and Development (R&D) +196875,Research and Development,Research and Development (R&D) +196874,Research and Development,Research and Development (R&D) +196873,Research and Development,Research and Development (R&D) +196872,Research and Development,Research and Development (R&D) +196871,Research and Development,Research and Development (R&D) +196870,Research and Development,Research and Development (R&D) +196865,Research and Development,Research and Development (R&D) +196864,Research and Development,Research and Development (R&D) +196863,Research and Development,Research and Development (R&D) +196862,Research and Development,Research and Development (R&D) +196860,Research and Development,Research and Development (R&D) +378532,Budget,Budget +452478,Budget,Budget +175460,Budget,Budget +173265,Budget,Budget +163530,Budget,Budget +156553,Budget,Budget +368898,Budget,Budget +230210,Budget,Budget +226288,Budget,Budget +223358,Budget,Budget +223357,Budget,Budget +199919,Budget,Budget +382134,Budget,Budget +378717,Budget,Budget +378704,Budget,Budget +378691,Budget,Budget +378545,Budget,Budget +341152,Climate,Climate +341147,Climate,Climate +413434,Consumer Issues,Consumer Issues +521329,Consumer Issues,Consumer Issues +321050,Consumer Issues,Consumer Issues +303637,Consumer Issues,Consumer Issues +303634,Consumer Issues,Consumer Issues +279871,Consumer Issues,Consumer Issues +257110,Consumer Issues,Consumer Issues +226291,Consumer Issues,Consumer Issues +226290,Consumer Issues,Consumer Issues +226288,Consumer Issues,Consumer Issues +223358,Consumer Issues,Consumer Issues +223357,Consumer Issues,Consumer Issues +163530,Consumer Issues,Consumer Issues +161832,Consumer Issues,Consumer Issues +159634,Consumer Issues,Consumer Issues +156553,Consumer Issues,Consumer Issues +403207,Consumer Issues,Consumer Issues +403200,Consumer Issues,Consumer Issues +403194,Consumer Issues,Consumer Issues +403187,Consumer Issues,Consumer Issues +403183,Consumer Issues,Consumer Issues +403086,Consumer Issues,Consumer Issues +398449,Consumer Issues,Consumer Issues +390132,Consumer Issues,Consumer Issues +390130,Consumer Issues,Consumer Issues +390122,Consumer Issues,Consumer Issues +390119,Consumer Issues,Consumer Issues +381419,Consumer Issues,Consumer Issues +381413,Consumer Issues,Consumer Issues +381410,Consumer Issues,Consumer Issues +381405,Consumer Issues,Consumer Issues +378717,Consumer Issues,Consumer Issues +378704,Consumer Issues,Consumer Issues +378691,Consumer Issues,Consumer Issues +378556,Consumer Issues,Consumer Issues +378550,Consumer Issues,Consumer Issues +378541,Consumer Issues,Consumer Issues +378532,Consumer Issues,Consumer Issues +341156,Consumer Issues,Consumer Issues +341152,Consumer Issues,Consumer Issues +341147,Consumer Issues,Consumer Issues +341134,Consumer Issues,Consumer Issues +341133,Consumer Issues,Consumer Issues +341132,Consumer Issues,Consumer Issues +341095,Consumer Issues,Consumer Issues +326852,Consumer Issues,Consumer Issues +487233,Consumer Issues,Consumer Issues +483954,Consumer Issues,Consumer Issues +481458,Consumer Issues,Consumer Issues +477705,Consumer Issues,Consumer Issues +474459,Consumer Issues,Consumer Issues +472295,Consumer Issues,Consumer Issues +469862,Consumer Issues,Consumer Issues +466937,Consumer Issues,Consumer Issues +464501,Consumer Issues,Consumer Issues +462448,Consumer Issues,Consumer Issues +458243,Consumer Issues,Consumer Issues +456919,Consumer Issues,Consumer Issues +454879,Consumer Issues,Consumer Issues +454857,Consumer Issues,Consumer Issues +454845,Consumer Issues,Consumer Issues +452489,Consumer Issues,Consumer Issues +452486,Consumer Issues,Consumer Issues +447184,Consumer Issues,Consumer Issues +442187,Consumer Issues,Consumer Issues +439597,Consumer Issues,Consumer Issues +439563,Consumer Issues,Consumer Issues +439558,Consumer Issues,Consumer Issues +435734,Consumer Issues,Consumer Issues +433801,Consumer Issues,Consumer Issues +433796,Consumer Issues,Consumer Issues +433789,Consumer Issues,Consumer Issues +432892,Consumer Issues,Consumer Issues +430358,Consumer Issues,Consumer Issues +430357,Consumer Issues,Consumer Issues +430355,Consumer Issues,Consumer Issues +430353,Consumer Issues,Consumer Issues +430350,Consumer Issues,Consumer Issues +430345,Consumer Issues,Consumer Issues +429300,Consumer Issues,Consumer Issues +429275,Consumer Issues,Consumer Issues +426138,Consumer Issues,Consumer Issues +423612,Consumer Issues,Consumer Issues +423611,Consumer Issues,Consumer Issues +423609,Consumer Issues,Consumer Issues +421092,Consumer Issues,Consumer Issues +421091,Consumer Issues,Consumer Issues +421090,Consumer Issues,Consumer Issues +421089,Consumer Issues,Consumer Issues +421087,Consumer Issues,Consumer Issues +419924,Consumer Issues,Consumer Issues +419918,Consumer Issues,Consumer Issues +417590,Consumer Issues,Consumer Issues +417589,Consumer Issues,Consumer Issues +390130,Economic Development,Economic Development +390122,Economic Development,Economic Development +159634,Economic Development,Economic Development +207351,Economic Development,Economic Development +199919,Economic Development,Economic Development +163530,Economic Development,Economic Development +161832,Economic Development,Economic Development +385801,Economic Development,Economic Development +378717,Economic Development,Economic Development +378704,Economic Development,Economic Development +378691,Economic Development,Economic Development +378545,Economic Development,Economic Development +378541,Economic Development,Economic Development +378532,Economic Development,Economic Development +341156,Economic Development,Economic Development +341152,Economic Development,Economic Development +341147,Economic Development,Economic Development +341134,Economic Development,Economic Development +341133,Economic Development,Economic Development +341132,Economic Development,Economic Development +341095,Economic Development,Economic Development +321050,Economic Development,Economic Development +279871,Economic Development,Economic Development +226291,Economic Development,Economic Development +226290,Economic Development,Economic Development +512405,Economic Development,Economic Development +510417,Economic Development,Economic Development +510411,Economic Development,Economic Development +505029,Economic Development,Economic Development +505007,Economic Development,Economic Development +501110,Economic Development,Economic Development +494902,Economic Development,Economic Development +494897,Economic Development,Economic Development +494895,Economic Development,Economic Development +489575,Economic Development,Economic Development +489574,Economic Development,Economic Development +487233,Economic Development,Economic Development +481458,Economic Development,Economic Development +477705,Economic Development,Economic Development +474459,Economic Development,Economic Development +442187,Economic Development,Economic Development +439597,Economic Development,Economic Development +439563,Economic Development,Economic Development +439558,Economic Development,Economic Development +433801,Economic Development,Economic Development +433796,Economic Development,Economic Development +432892,Economic Development,Economic Development +430358,Economic Development,Economic Development +430357,Economic Development,Economic Development +430355,Economic Development,Economic Development +430353,Economic Development,Economic Development +430350,Economic Development,Economic Development +430345,Economic Development,Economic Development +429300,Economic Development,Economic Development +429275,Economic Development,Economic Development +426138,Economic Development,Economic Development +423612,Economic Development,Economic Development +423611,Economic Development,Economic Development +423609,Economic Development,Economic Development +421092,Economic Development,Economic Development +421091,Economic Development,Economic Development +421090,Economic Development,Economic Development +421089,Economic Development,Economic Development +421087,Economic Development,Economic Development +419924,Economic Development,Economic Development +419918,Economic Development,Economic Development +417588,Economic Development,Economic Development +403207,Economic Development,Economic Development +403200,Economic Development,Economic Development +403194,Economic Development,Economic Development +403187,Economic Development,Economic Development +403183,Economic Development,Economic Development +403086,Economic Development,Economic Development +398451,Economic Development,Economic Development +396094,Economic Development,Economic Development +439563,Employment and Training,Employment and Training +439558,Employment and Training,Employment and Training +378541,Employment and Training,Employment and Training +378532,Employment and Training,Employment and Training +321050,Employment and Training,Employment and Training +303637,Employment and Training,Employment and Training +303634,Employment and Training,Employment and Training +433789,Employment and Training,Employment and Training +432892,Employment and Training,Employment and Training +430358,Employment and Training,Employment and Training +430357,Employment and Training,Employment and Training +430355,Employment and Training,Employment and Training +430353,Employment and Training,Employment and Training +430345,Employment and Training,Employment and Training +429300,Employment and Training,Employment and Training +403207,Employment and Training,Employment and Training +403200,Employment and Training,Employment and Training +403194,Employment and Training,Employment and Training +403187,Employment and Training,Employment and Training +403183,Employment and Training,Employment and Training +403086,Employment and Training,Employment and Training +398451,Employment and Training,Employment and Training +396094,Employment and Training,Employment and Training +505007,Employment and Training,Employment and Training +501110,Employment and Training,Employment and Training +487233,Employment and Training,Employment and Training +466937,Employment and Training,Employment and Training +458242,Employment and Training,Employment and Training +454879,Employment and Training,Employment and Training +454878,Employment and Training,Employment and Training +454857,Employment and Training,Employment and Training +341152,Environment,Environment +341147,Environment,Environment +381419,Environment,Environment +400584,International Trade,International Trade +398450,International Trade,International Trade +173265,International Trade,International Trade +381419,International Trade,International Trade +378717,International Trade,International Trade +378704,International Trade,International Trade +378691,International Trade,International Trade +378541,International Trade,International Trade +378538,International Trade,International Trade +378532,International Trade,International Trade +353393,International Trade,International Trade +341156,International Trade,International Trade +341152,International Trade,International Trade +341147,International Trade,International Trade +338818,International Trade,International Trade +324298,International Trade,International Trade +321050,International Trade,International Trade +303637,International Trade,International Trade +279871,International Trade,International Trade +273257,International Trade,International Trade +230210,International Trade,International Trade +175460,International Trade,International Trade +452483,International Trade,International Trade +403747,International Trade,International Trade +403200,International Trade,International Trade +403194,International Trade,International Trade +403187,International Trade,International Trade +403183,International Trade,International Trade +417589,Labour,Labour +417588,Labour,Labour +403207,Labour,Labour +403200,Labour,Labour +403194,Labour,Labour +403187,Labour,Labour +403183,Labour,Labour +403086,Labour,Labour +398451,Labour,Labour +398449,Labour,Labour +396094,Labour,Labour +392210,Labour,Labour +372176,Labour,Labour +521329,Labour,Labour +512405,Labour,Labour +510417,Labour,Labour +510411,Labour,Labour +505007,Labour,Labour +494902,Labour,Labour +494897,Labour,Labour +494895,Labour,Labour +487233,Labour,Labour +483954,Labour,Labour +481458,Labour,Labour +477705,Labour,Labour +474459,Labour,Labour +472295,Labour,Labour +469866,Labour,Labour +469862,Labour,Labour +466937,Labour,Labour +464501,Labour,Labour +458242,Labour,Labour +456922,Labour,Labour +456915,Labour,Labour +454879,Labour,Labour +454857,Labour,Labour +454845,Labour,Labour +452486,Labour,Labour +452478,Labour,Labour +447184,Labour,Labour +442187,Labour,Labour +439597,Labour,Labour +439563,Labour,Labour +439558,Labour,Labour +433801,Labour,Labour +433796,Labour,Labour +433789,Labour,Labour +432892,Labour,Labour +430358,Labour,Labour +430357,Labour,Labour +430355,Labour,Labour +430353,Labour,Labour +430350,Labour,Labour +430345,Labour,Labour +429300,Labour,Labour +429275,Labour,Labour +426138,Labour,Labour +423612,Labour,Labour +423611,Labour,Labour +423609,Labour,Labour +421092,Labour,Labour +421091,Labour,Labour +421090,Labour,Labour +421089,Labour,Labour +421087,Labour,Labour +419924,Labour,Labour +419918,Labour,Labour +450094,Security,Security +415745,Security,Security +199919,Security,Security +175460,Security,Security +173265,Security,Security +165732,Security,Security +163530,Security,Security +161832,Security,Security +159634,Security,Security +156553,Security,Security +152225,Security,Security +312669,Security,Security +309571,Security,Security +303637,Security,Security +303634,Security,Security +279871,Security,Security +257109,Security,Security +244169,Security,Security +239158,Security,Security +226291,Security,Security +226290,Security,Security +223358,Security,Security +223357,Security,Security +403777,Security,Security +403200,Security,Security +403194,Security,Security +403187,Security,Security +403183,Security,Security +403086,Security,Security +381419,Security,Security +378717,Security,Security +378704,Security,Security +378691,Security,Security +378556,Security,Security +378550,Security,Security +378541,Security,Security +378532,Security,Security +366247,Security,Security +366244,Security,Security +363375,Security,Security +357880,Security,Security +353393,Security,Security +341156,Security,Security +341152,Security,Security +341147,Security,Security +321050,Security,Security +510411,Security,Security +481458,Security,Security +477705,Security,Security +466937,Security,Security +458243,Security,Security +456919,Security,Security +454879,Security,Security +403086,Small Business,Small Business +510411,Small Business,Small Business +378691,Small Business,Small Business +378541,Small Business,Small Business +378532,Small Business,Small Business +321050,Small Business,Small Business +279871,Small Business,Small Business +474459,Small Business,Small Business +469866,Small Business,Small Business +442187,Small Business,Small Business +439597,Small Business,Small Business +433801,Small Business,Small Business +433796,Small Business,Small Business +432892,Small Business,Small Business +430358,Small Business,Small Business +430357,Small Business,Small Business +430355,Small Business,Small Business +430353,Small Business,Small Business +430350,Small Business,Small Business +430345,Small Business,Small Business +429275,Small Business,Small Business +426138,Small Business,Small Business +423612,Small Business,Small Business +423611,Small Business,Small Business +423609,Small Business,Small Business +421092,Small Business,Small Business +421091,Small Business,Small Business +421090,Small Business,Small Business +421089,Small Business,Small Business +421087,Small Business,Small Business +403207,Small Business,Small Business +403200,Small Business,Small Business +403194,Small Business,Small Business +403187,Small Business,Small Business +489575,Taxation and Finance,Taxation and Finance +489574,Taxation and Finance,Taxation and Finance +175460,Taxation and Finance,Taxation and Finance +173265,Taxation and Finance,Taxation and Finance +165732,Taxation and Finance,Taxation and Finance +163530,Taxation and Finance,Taxation and Finance +161832,Taxation and Finance,Taxation and Finance +159634,Taxation and Finance,Taxation and Finance +156553,Taxation and Finance,Taxation and Finance +152225,Taxation and Finance,Taxation and Finance +341156,Taxation and Finance,Taxation and Finance +341152,Taxation and Finance,Taxation and Finance +341147,Taxation and Finance,Taxation and Finance +303637,Taxation and Finance,Taxation and Finance +303634,Taxation and Finance,Taxation and Finance +257110,Taxation and Finance,Taxation and Finance +257109,Taxation and Finance,Taxation and Finance +244169,Taxation and Finance,Taxation and Finance +226291,Taxation and Finance,Taxation and Finance +226290,Taxation and Finance,Taxation and Finance +226288,Taxation and Finance,Taxation and Finance +223358,Taxation and Finance,Taxation and Finance +223357,Taxation and Finance,Taxation and Finance +199919,Taxation and Finance,Taxation and Finance +487233,Taxation and Finance,Taxation and Finance +481458,Taxation and Finance,Taxation and Finance +477705,Taxation and Finance,Taxation and Finance +474459,Taxation and Finance,Taxation and Finance +458243,Taxation and Finance,Taxation and Finance +458242,Taxation and Finance,Taxation and Finance +456922,Taxation and Finance,Taxation and Finance +456919,Taxation and Finance,Taxation and Finance +454878,Taxation and Finance,Taxation and Finance +452489,Taxation and Finance,Taxation and Finance +450094,Taxation and Finance,Taxation and Finance +447184,Taxation and Finance,Taxation and Finance +439563,Taxation and Finance,Taxation and Finance +439558,Taxation and Finance,Taxation and Finance +433789,Taxation and Finance,Taxation and Finance +417595,Taxation and Finance,Taxation and Finance +417588,Taxation and Finance,Taxation and Finance +403777,Taxation and Finance,Taxation and Finance +403747,Taxation and Finance,Taxation and Finance +398449,Taxation and Finance,Taxation and Finance +381419,Taxation and Finance,Taxation and Finance +381413,Taxation and Finance,Taxation and Finance +381410,Taxation and Finance,Taxation and Finance +378717,Taxation and Finance,Taxation and Finance +378704,Taxation and Finance,Taxation and Finance +378691,Taxation and Finance,Taxation and Finance +378556,Taxation and Finance,Taxation and Finance +378550,Taxation and Finance,Taxation and Finance +378545,Taxation and Finance,Taxation and Finance +378541,Taxation and Finance,Taxation and Finance +378532,Taxation and Finance,Taxation and Finance +366247,Taxation and Finance,Taxation and Finance +363375,Taxation and Finance,Taxation and Finance +353393,Taxation and Finance,Taxation and Finance +512405,Taxation and Finance,Taxation and Finance +494902,Taxation and Finance,Taxation and Finance +494897,Taxation and Finance,Taxation and Finance +403183,Tourism,Tourism +403086,Tourism,Tourism +279871,Tourism,Tourism +372187,Tourism,Tourism +341156,Tourism,Tourism +341152,Tourism,Tourism +341147,Tourism,Tourism +403207,Tourism,Tourism +403200,Tourism,Tourism +403194,Tourism,Tourism +517681,Transportation,Transportation +517678,Transportation,Transportation +207351,Transportation,Transportation +199919,Transportation,Transportation +175460,Transportation,Transportation +173265,Transportation,Transportation +163530,Transportation,Transportation +161832,Transportation,Transportation +159634,Transportation,Transportation +156553,Transportation,Transportation +357880,Transportation,Transportation +355629,Transportation,Transportation +355628,Transportation,Transportation +353393,Transportation,Transportation +350945,Transportation,Transportation +346337,Transportation,Transportation +341160,Transportation,Transportation +341159,Transportation,Transportation +341158,Transportation,Transportation +341156,Transportation,Transportation +341152,Transportation,Transportation +341147,Transportation,Transportation +341134,Transportation,Transportation +341133,Transportation,Transportation +341132,Transportation,Transportation +341095,Transportation,Transportation +337997,Transportation,Transportation +335647,Transportation,Transportation +326853,Transportation,Transportation +326852,Transportation,Transportation +321050,Transportation,Transportation +312670,Transportation,Transportation +312669,Transportation,Transportation +309571,Transportation,Transportation +303637,Transportation,Transportation +303634,Transportation,Transportation +279871,Transportation,Transportation +276810,Transportation,Transportation +257110,Transportation,Transportation +257109,Transportation,Transportation +253209,Transportation,Transportation +244169,Transportation,Transportation +239158,Transportation,Transportation +234049,Transportation,Transportation +230210,Transportation,Transportation +226291,Transportation,Transportation +226290,Transportation,Transportation +226288,Transportation,Transportation +223358,Transportation,Transportation +223357,Transportation,Transportation +403777,Transportation,Transportation +403747,Transportation,Transportation +403270,Transportation,Transportation +403268,Transportation,Transportation +403207,Transportation,Transportation +403200,Transportation,Transportation +403194,Transportation,Transportation +403187,Transportation,Transportation +403183,Transportation,Transportation +403086,Transportation,Transportation +400584,Transportation,Transportation +400579,Transportation,Transportation +398451,Transportation,Transportation +398450,Transportation,Transportation +398449,Transportation,Transportation +396094,Transportation,Transportation +392210,Transportation,Transportation +390132,Transportation,Transportation +390130,Transportation,Transportation +390122,Transportation,Transportation +390119,Transportation,Transportation +385801,Transportation,Transportation +382134,Transportation,Transportation +381419,Transportation,Transportation +381413,Transportation,Transportation +381410,Transportation,Transportation +381405,Transportation,Transportation +378717,Transportation,Transportation +378704,Transportation,Transportation +378691,Transportation,Transportation +378572,Transportation,Transportation +378565,Transportation,Transportation +378556,Transportation,Transportation +378550,Transportation,Transportation +378545,Transportation,Transportation +378541,Transportation,Transportation +378538,Transportation,Transportation +378532,Transportation,Transportation +372176,Transportation,Transportation +368899,Transportation,Transportation +368898,Transportation,Transportation +366247,Transportation,Transportation +366245,Transportation,Transportation +366244,Transportation,Transportation +364897,Transportation,Transportation +363375,Transportation,Transportation +361182,Transportation,Transportation +359706,Transportation,Transportation +517674,Transportation,Transportation +517664,Transportation,Transportation +512405,Transportation,Transportation +510417,Transportation,Transportation +510411,Transportation,Transportation +505029,Transportation,Transportation +505007,Transportation,Transportation +501110,Transportation,Transportation +494902,Transportation,Transportation +494897,Transportation,Transportation +494895,Transportation,Transportation +489575,Transportation,Transportation +489574,Transportation,Transportation +487233,Transportation,Transportation +483954,Transportation,Transportation +481458,Transportation,Transportation +477705,Transportation,Transportation +474459,Transportation,Transportation +472295,Transportation,Transportation +469866,Transportation,Transportation +469862,Transportation,Transportation +466937,Transportation,Transportation +464501,Transportation,Transportation +462448,Transportation,Transportation +462446,Transportation,Transportation +462445,Transportation,Transportation +461408,Transportation,Transportation +461407,Transportation,Transportation +461406,Transportation,Transportation +460112,Transportation,Transportation +458244,Transportation,Transportation +458243,Transportation,Transportation +458242,Transportation,Transportation +456922,Transportation,Transportation +456919,Transportation,Transportation +456915,Transportation,Transportation +454879,Transportation,Transportation +454878,Transportation,Transportation +454857,Transportation,Transportation +454845,Transportation,Transportation +452489,Transportation,Transportation +452486,Transportation,Transportation +452483,Transportation,Transportation +452478,Transportation,Transportation +450094,Transportation,Transportation +447186,Transportation,Transportation +447184,Transportation,Transportation +443675,Transportation,Transportation +443672,Transportation,Transportation +442190,Transportation,Transportation +442187,Transportation,Transportation +439618,Transportation,Transportation +439617,Transportation,Transportation +439597,Transportation,Transportation +439563,Transportation,Transportation +439558,Transportation,Transportation +435734,Transportation,Transportation +435724,Transportation,Transportation +435710,Transportation,Transportation +433801,Transportation,Transportation +433796,Transportation,Transportation +433789,Transportation,Transportation +432892,Transportation,Transportation +430358,Transportation,Transportation +430357,Transportation,Transportation +430355,Transportation,Transportation +430353,Transportation,Transportation +430350,Transportation,Transportation +430345,Transportation,Transportation +429300,Transportation,Transportation +429275,Transportation,Transportation +429265,Transportation,Transportation +426138,Transportation,Transportation +423612,Transportation,Transportation +423611,Transportation,Transportation +423609,Transportation,Transportation +421092,Transportation,Transportation +421091,Transportation,Transportation +421090,Transportation,Transportation +421089,Transportation,Transportation +421087,Transportation,Transportation +419924,Transportation,Transportation +419918,Transportation,Transportation +417595,Transportation,Transportation +417592,Transportation,Transportation +417590,Transportation,Transportation +417589,Transportation,Transportation +417588,Transportation,Transportation +416516,Transportation,Transportation +416513,Transportation,Transportation +415773,Transportation,Transportation +415771,Transportation,Transportation +415768,Transportation,Transportation +415762,Transportation,Transportation +415745,Transportation,Transportation +413434,Transportation,Transportation +535136,Transportation,Transportation +535101,Transportation,Transportation +525080,Transportation,Transportation +521329,Transportation,Transportation +517688,Transportation,Transportation +517685,Transportation,Transportation +404146,Consumer Issues,Consumer Issues +384365,Consumer Issues,Consumer Issues +404146,Financial Institutions,Financial Institutions +424015,Financial Institutions,Financial Institutions +406668,Taxation and Finance,Taxation and Finance +176725,Consumer Issues,Consumer Issues +163244,Consumer Issues,Consumer Issues +151557,Consumer Issues,Consumer Issues +151465,Consumer Issues,Consumer Issues +151464,Consumer Issues,Consumer Issues +151463,Consumer Issues,Consumer Issues +151462,Consumer Issues,Consumer Issues +293569,Consumer Issues,Consumer Issues +271350,Consumer Issues,Consumer Issues +271349,Consumer Issues,Consumer Issues +260134,Consumer Issues,Consumer Issues +238849,Consumer Issues,Consumer Issues +191884,Consumer Issues,Consumer Issues +191844,Consumer Issues,Consumer Issues +191824,Consumer Issues,Consumer Issues +184904,Consumer Issues,Consumer Issues +184864,Consumer Issues,Consumer Issues +184844,Consumer Issues,Consumer Issues +271349,Financial Institutions,Financial Institutions +238849,Financial Institutions,Financial Institutions +151557,Financial Institutions,Financial Institutions +151465,Financial Institutions,Financial Institutions +151464,Financial Institutions,Financial Institutions +151463,Financial Institutions,Financial Institutions +151462,Financial Institutions,Financial Institutions +191884,Financial Institutions,Financial Institutions +191844,Financial Institutions,Financial Institutions +191824,Financial Institutions,Financial Institutions +184904,Financial Institutions,Financial Institutions +184864,Financial Institutions,Financial Institutions +184844,Financial Institutions,Financial Institutions +184824,Financial Institutions,Financial Institutions +176725,Financial Institutions,Financial Institutions +163244,Financial Institutions,Financial Institutions +293569,Financial Institutions,Financial Institutions +151463,Government Procurement,Government Procurement +151462,Government Procurement,Government Procurement +151557,Government Procurement,Government Procurement +151465,Government Procurement,Government Procurement +163244,Taxation and Finance,Taxation and Finance +293569,Taxation and Finance,Taxation and Finance +151557,Taxation and Finance,Taxation and Finance +151465,Taxation and Finance,Taxation and Finance +151464,Taxation and Finance,Taxation and Finance +151463,Taxation and Finance,Taxation and Finance +151462,Taxation and Finance,Taxation and Finance +271350,Taxation and Finance,Taxation and Finance +271349,Taxation and Finance,Taxation and Finance +260134,Taxation and Finance,Taxation and Finance +191884,Taxation and Finance,Taxation and Finance +191844,Taxation and Finance,Taxation and Finance +191824,Taxation and Finance,Taxation and Finance +188447,Taxation and Finance,Taxation and Finance +184904,Taxation and Finance,Taxation and Finance +184864,Taxation and Finance,Taxation and Finance +184844,Taxation and Finance,Taxation and Finance +184824,Taxation and Finance,Taxation and Finance +175748,Industry,Industry +439553,Pensions,Pensions +439552,Pensions,Pensions +148676,Pensions,Pensions +210495,Pensions,Pensions +191545,Pensions,Pensions +509644,Pensions,Pensions +491725,Pensions,Pensions +466034,Pensions,Pensions +456900,Pensions,Pensions +453722,Pensions,Pensions +453123,Pensions,Pensions +450695,Pensions,Pensions +248349,Agriculture,Agriculture +192809,Agriculture,Agriculture +148696,Agriculture,Agriculture +370361,Agriculture,Agriculture +370317,Agriculture,Agriculture +370316,Agriculture,Agriculture +370279,Agriculture,Agriculture +370278,Agriculture,Agriculture +370277,Agriculture,Agriculture +345897,Agriculture,Agriculture +345877,Agriculture,Agriculture +345858,Agriculture,Agriculture +345857,Agriculture,Agriculture +315429,Agriculture,Agriculture +315415,Agriculture,Agriculture +315412,Agriculture,Agriculture +315408,Agriculture,Agriculture +315389,Agriculture,Agriculture +259795,Agriculture,Agriculture +259794,Agriculture,Agriculture +345858,Internal Trade,Commerce intérieur +345857,Internal Trade,Commerce intérieur +148696,Internal Trade,Commerce intérieur +315389,Internal Trade,Commerce intérieur +248349,Internal Trade,Commerce intérieur +192809,Internal Trade,Commerce intérieur +370361,Internal Trade,Commerce intérieur +370317,Internal Trade,Commerce intérieur +370316,Internal Trade,Commerce intérieur +370279,Internal Trade,Commerce intérieur +370278,Internal Trade,Commerce intérieur +370277,Internal Trade,Commerce intérieur +345897,Internal Trade,Commerce intérieur +370278,International Trade,Commerce international +370277,International Trade,Commerce international +148696,International Trade,Commerce international +192809,International Trade,Commerce international +345897,International Trade,Commerce international +345877,International Trade,Commerce international +345858,International Trade,Commerce international +345857,International Trade,Commerce international +315429,International Trade,Commerce international +315415,International Trade,Commerce international +315412,International Trade,Commerce international +315408,International Trade,Commerce international +315389,International Trade,Commerce international +259795,International Trade,Commerce international +259794,International Trade,Commerce international +259793,International Trade,Commerce international +248349,International Trade,Commerce international +370361,International Trade,Commerce international +370317,International Trade,Commerce international +370316,International Trade,Commerce international +391807,Energy,Energy +391806,Energy,Energy +342364,Energy,Energy +254495,Energy,Energy +254494,Energy,Energy +253830,Energy,Energy +253829,Energy,Energy +253811,Energy,Energy +152189,Energy,Energy +152188,Energy,Energy +380128,Energy,Energy +380127,Energy,Energy +380126,Energy,Energy +361568,Energy,Energy +358302,Energy,Energy +358301,Energy,Energy +358300,Energy,Energy +358299,Energy,Energy +358298,Energy,Energy +358297,Energy,Energy +358296,Energy,Energy +358295,Energy,Energy +358293,Energy,Energy +358292,Energy,Energy +358291,Energy,Energy +358289,Energy,Energy +358288,Energy,Energy +358287,Energy,Energy +342372,Energy,Energy +342371,Energy,Energy +342370,Energy,Energy +342369,Energy,Energy +342368,Energy,Energy +342367,Energy,Energy +342366,Energy,Energy +342365,Energy,Energy +420389,Energy,Energy +417184,Energy,Energy +410070,Energy,Energy +391811,Energy,Energy +391810,Energy,Energy +391809,Energy,Energy +342365,Industry,Industry +342364,Industry,Industry +152189,Industry,Industry +152188,Industry,Industry +254494,Industry,Industry +253829,Industry,Industry +253811,Industry,Industry +391809,Industry,Industry +380128,Industry,Industry +380127,Industry,Industry +358301,Industry,Industry +358293,Industry,Industry +358290,Industry,Industry +358289,Industry,Industry +358288,Industry,Industry +358287,Industry,Industry +351626,Industry,Industry +342372,Industry,Industry +342371,Industry,Industry +342370,Industry,Industry +342368,Industry,Industry +342365,International Relations,International Relations +342364,International Relations,International Relations +152189,International Relations,International Relations +152188,International Relations,International Relations +254494,International Relations,International Relations +253830,International Relations,International Relations +253829,International Relations,International Relations +253811,International Relations,International Relations +420389,International Relations,International Relations +417184,International Relations,International Relations +391811,International Relations,International Relations +391810,International Relations,International Relations +391809,International Relations,International Relations +391808,International Relations,International Relations +391807,International Relations,International Relations +391806,International Relations,International Relations +358302,International Relations,International Relations +358300,International Relations,International Relations +358298,International Relations,International Relations +358296,International Relations,International Relations +358292,International Relations,International Relations +358291,International Relations,International Relations +358287,International Relations,International Relations +342372,International Relations,International Relations +342371,International Relations,International Relations +342370,International Relations,International Relations +342368,International Relations,International Relations +342367,International Relations,International Relations +342365,International Trade,International Trade +342364,International Trade,International Trade +152189,International Trade,International Trade +152188,International Trade,International Trade +254494,International Trade,International Trade +391811,International Trade,International Trade +391810,International Trade,International Trade +380128,International Trade,International Trade +380127,International Trade,International Trade +380126,International Trade,International Trade +358302,International Trade,International Trade +358301,International Trade,International Trade +358299,International Trade,International Trade +358297,International Trade,International Trade +358295,International Trade,International Trade +358290,International Trade,International Trade +358287,International Trade,International Trade +342372,International Trade,International Trade +342371,International Trade,International Trade +342369,International Trade,International Trade +342368,International Trade,International Trade +342367,International Trade,International Trade +342368,Research and Development,Research and Development (R&D) +342367,Research and Development,Research and Development (R&D) +254494,Research and Development,Research and Development (R&D) +253830,Research and Development,Research and Development (R&D) +253829,Research and Development,Research and Development (R&D) +152189,Research and Development,Research and Development (R&D) +152188,Research and Development,Research and Development (R&D) +391809,Research and Development,Research and Development (R&D) +358290,Research and Development,Research and Development (R&D) +358289,Research and Development,Research and Development (R&D) +474585,Agriculture,Agriculture +468744,Agriculture,Agriculture +432774,Agriculture,Agriculture +432773,Agriculture,Agriculture +432772,Agriculture,Agriculture +432770,Agriculture,Agriculture +432768,Agriculture,Agriculture +427344,Agriculture,Agriculture +432275,Climate,Climate +428550,Climate,Climate +156926,Climate,Climate +153337,Climate,Climate +264370,Climate,Climate +245400,Climate,Climate +230671,Climate,Climate +223550,Climate,Climate +223549,Climate,Climate +218588,Climate,Climate +218587,Climate,Climate +200239,Climate,Climate +184364,Climate,Climate +175549,Climate,Climate +388641,Climate,Climate +388640,Climate,Climate +388639,Climate,Climate +388638,Climate,Climate +388637,Climate,Climate +388636,Climate,Climate +388635,Climate,Climate +388634,Climate,Climate +388633,Climate,Climate +388632,Climate,Climate +388631,Climate,Climate +388629,Climate,Climate +388628,Climate,Climate +382075,Climate,Climate +380927,Climate,Climate +376517,Climate,Climate +375873,Climate,Climate +375872,Climate,Climate +368549,Climate,Climate +353603,Climate,Climate +338780,Climate,Climate +338779,Climate,Climate +338778,Climate,Climate +338775,Climate,Climate +338774,Climate,Climate +338724,Climate,Climate +338723,Climate,Climate +338722,Climate,Climate +338721,Climate,Climate +338717,Climate,Climate +338712,Climate,Climate +338711,Climate,Climate +338707,Climate,Climate +338705,Climate,Climate +338701,Climate,Climate +338696,Climate,Climate +338694,Climate,Climate +338693,Climate,Climate +338692,Climate,Climate +338690,Climate,Climate +338687,Climate,Climate +338684,Climate,Climate +338683,Climate,Climate +338681,Climate,Climate +338680,Climate,Climate +338677,Climate,Climate +338675,Climate,Climate +338674,Climate,Climate +338673,Climate,Climate +338671,Climate,Climate +338670,Climate,Climate +338668,Climate,Climate +413808,Climate,Climate +413806,Climate,Climate +413804,Climate,Climate +413801,Climate,Climate +413799,Climate,Climate +413797,Climate,Climate +413796,Climate,Climate +413795,Climate,Climate +413794,Climate,Climate +413793,Climate,Climate +413792,Climate,Climate +413790,Climate,Climate +413789,Climate,Climate +413788,Climate,Climate +413787,Climate,Climate +413785,Climate,Climate +413784,Climate,Climate +413783,Climate,Climate +413769,Climate,Climate +413767,Climate,Climate +413763,Climate,Climate +413724,Climate,Climate +413720,Climate,Climate +413717,Climate,Climate +413712,Climate,Climate +413708,Climate,Climate +413707,Climate,Climate +413704,Climate,Climate +413702,Climate,Climate +413699,Climate,Climate +413697,Climate,Climate +413695,Climate,Climate +413692,Climate,Climate +413691,Climate,Climate +413688,Climate,Climate +413684,Climate,Climate +413680,Climate,Climate +413669,Climate,Climate +413660,Climate,Climate +413592,Climate,Climate +413586,Climate,Climate +413576,Climate,Climate +413565,Climate,Climate +413532,Climate,Climate +413511,Climate,Climate +413492,Climate,Climate +413477,Climate,Climate +413471,Climate,Climate +413463,Climate,Climate +413454,Climate,Climate +413451,Climate,Climate +413445,Climate,Climate +413442,Climate,Climate +413438,Climate,Climate +413429,Climate,Climate +413428,Climate,Climate +413426,Climate,Climate +407230,Climate,Climate +407229,Climate,Climate +406860,Climate,Climate +403833,Climate,Climate +399937,Climate,Climate +540197,Climate,Climate +540196,Climate,Climate +540195,Climate,Climate +538488,Climate,Climate +538486,Climate,Climate +538483,Climate,Climate +535733,Climate,Climate +535729,Climate,Climate +531881,Climate,Climate +531880,Climate,Climate +529534,Climate,Climate +529533,Climate,Climate +529532,Climate,Climate +529531,Climate,Climate +529529,Climate,Climate +529524,Climate,Climate +529520,Climate,Climate +529513,Climate,Climate +511139,Climate,Climate +511131,Climate,Climate +511123,Climate,Climate +511119,Climate,Climate +511109,Climate,Climate +511104,Climate,Climate +508946,Climate,Climate +508944,Climate,Climate +508938,Climate,Climate +508937,Climate,Climate +508932,Climate,Climate +505114,Climate,Climate +505111,Climate,Climate +505096,Climate,Climate +505089,Climate,Climate +505083,Climate,Climate +505079,Climate,Climate +502783,Climate,Climate +502777,Climate,Climate +502775,Climate,Climate +502771,Climate,Climate +499015,Climate,Climate +499005,Climate,Climate +499003,Climate,Climate +493431,Climate,Climate +484940,Climate,Climate +479933,Climate,Climate +478234,Climate,Climate +478232,Climate,Climate +478231,Climate,Climate +478230,Climate,Climate +478229,Climate,Climate +474533,Climate,Climate +473633,Climate,Climate +473629,Climate,Climate +473625,Climate,Climate +465427,Climate,Climate +464463,Climate,Climate +458681,Climate,Climate +458680,Climate,Climate +457490,Climate,Climate +452563,Climate,Climate +452561,Climate,Climate +452558,Climate,Climate +449916,Climate,Climate +449913,Climate,Climate +447762,Climate,Climate +447759,Climate,Climate +447753,Climate,Climate +447751,Climate,Climate +444994,Climate,Climate +443665,Climate,Climate +443664,Climate,Climate +442557,Climate,Climate +442551,Climate,Climate +439062,Climate,Climate +439058,Climate,Climate +435312,Climate,Climate +435311,Climate,Climate +159873,Justice and Law Enforcement,Justice and Law Enforcement +535011,Justice and Law Enforcement,Justice and Law Enforcement +159905,Justice and Law Enforcement,Justice and Law Enforcement +159902,Justice and Law Enforcement,Justice and Law Enforcement +159899,Justice and Law Enforcement,Justice and Law Enforcement +159889,Justice and Law Enforcement,Justice and Law Enforcement +159883,Justice and Law Enforcement,Justice and Law Enforcement +150360,International Trade,International Trade +150358,International Trade,International Trade +150356,International Trade,International Trade +150354,International Trade,International Trade +166184,Budget,Budget +148960,Budget,Budget +166189,Budget,Budget +166188,Budget,Budget +166187,Budget,Budget +166186,Budget,Budget +390958,Agriculture,Agriculture +390937,Agriculture,Agriculture +170923,Agriculture,Agriculture +170922,Agriculture,Agriculture +170921,Agriculture,Agriculture +170919,Agriculture,Agriculture +170918,Agriculture,Agriculture +170916,Agriculture,Agriculture +170915,Agriculture,Agriculture +170914,Agriculture,Agriculture +170913,Agriculture,Agriculture +170912,Agriculture,Agriculture +170910,Agriculture,Agriculture +170905,Agriculture,Agriculture +170902,Agriculture,Agriculture +170900,Agriculture,Agriculture +149017,Agriculture,Agriculture +193488,Agriculture,Agriculture +188685,Agriculture,Agriculture +175094,Agriculture,Agriculture +175093,Agriculture,Agriculture +170972,Agriculture,Agriculture +170971,Agriculture,Agriculture +170970,Agriculture,Agriculture +170969,Agriculture,Agriculture +170968,Agriculture,Agriculture +170965,Agriculture,Agriculture +170964,Agriculture,Agriculture +170963,Agriculture,Agriculture +170962,Agriculture,Agriculture +170960,Agriculture,Agriculture +170959,Agriculture,Agriculture +170957,Agriculture,Agriculture +170956,Agriculture,Agriculture +170955,Agriculture,Agriculture +170953,Agriculture,Agriculture +170952,Agriculture,Agriculture +170951,Agriculture,Agriculture +170950,Agriculture,Agriculture +170949,Agriculture,Agriculture +170948,Agriculture,Agriculture +170947,Agriculture,Agriculture +170945,Agriculture,Agriculture +170944,Agriculture,Agriculture +170943,Agriculture,Agriculture +170942,Agriculture,Agriculture +170941,Agriculture,Agriculture +170940,Agriculture,Agriculture +170939,Agriculture,Agriculture +170937,Agriculture,Agriculture +170936,Agriculture,Agriculture +170934,Agriculture,Agriculture +170932,Agriculture,Agriculture +170930,Agriculture,Agriculture +170929,Agriculture,Agriculture +170928,Agriculture,Agriculture +170927,Agriculture,Agriculture +170926,Agriculture,Agriculture +170925,Agriculture,Agriculture +170924,Agriculture,Agriculture +375888,Agriculture,Agriculture +375887,Agriculture,Agriculture +365425,Agriculture,Agriculture +365017,Agriculture,Agriculture +362222,Agriculture,Agriculture +351482,Agriculture,Agriculture +351477,Agriculture,Agriculture +351471,Agriculture,Agriculture +340927,Agriculture,Agriculture +339932,Agriculture,Agriculture +327598,Agriculture,Agriculture +323807,Agriculture,Agriculture +323804,Agriculture,Agriculture +302357,Agriculture,Agriculture +273516,Agriculture,Agriculture +266270,Agriculture,Agriculture +249730,Agriculture,Agriculture +249727,Agriculture,Agriculture +249674,Agriculture,Agriculture +233470,Agriculture,Agriculture +230729,Agriculture,Agriculture +227109,Agriculture,Agriculture +222273,Agriculture,Agriculture +217868,Agriculture,Agriculture +199658,Agriculture,Agriculture +401873,International Trade,International Trade +386989,International Trade,International Trade +149018,International Trade,International Trade +352321,International Trade,International Trade +328425,International Trade,International Trade +328417,International Trade,International Trade +180704,International Trade,International Trade +457786,International Development,International Development +209291,International Development,International Development +209290,International Development,International Development +209289,International Development,International Development +193588,International Development,International Development +193582,International Development,International Development +193577,International Development,International Development +193574,International Development,International Development +193568,International Development,International Development +193567,International Development,International Development +193565,International Development,International Development +193561,International Development,International Development +187488,International Development,International Development +160700,International Development,International Development +156598,International Development,International Development +156595,International Development,International Development +156594,International Development,International Development +156593,International Development,International Development +153104,International Development,International Development +152442,International Development,International Development +314129,International Development,International Development +313709,International Development,International Development +311352,International Development,International Development +300691,International Development,International Development +300690,International Development,International Development +300689,International Development,International Development +300670,International Development,International Development +300669,International Development,International Development +299069,International Development,International Development +299050,International Development,International Development +299032,International Development,International Development +299029,International Development,International Development +265495,International Development,International Development +265494,International Development,International Development +265493,International Development,International Development +265492,International Development,International Development +265491,International Development,International Development +265490,International Development,International Development +265489,International Development,International Development +265469,International Development,International Development +265468,International Development,International Development +265467,International Development,International Development +265466,International Development,International Development +265465,International Development,International Development +265464,International Development,International Development +265463,International Development,International Development +265461,International Development,International Development +265460,International Development,International Development +265459,International Development,International Development +265458,International Development,International Development +265456,International Development,International Development +265455,International Development,International Development +265454,International Development,International Development +265453,International Development,International Development +265452,International Development,International Development +265451,International Development,International Development +265449,International Development,International Development +264401,International Development,International Development +264400,International Development,International Development +264398,International Development,International Development +264397,International Development,International Development +264395,International Development,International Development +264393,International Development,International Development +264392,International Development,International Development +264390,International Development,International Development +264389,International Development,International Development +264386,International Development,International Development +252685,International Development,International Development +252683,International Development,International Development +252681,International Development,International Development +252678,International Development,International Development +244671,International Development,International Development +229470,International Development,International Development +380309,International Development,International Development +377675,International Development,International Development +377666,International Development,International Development +377665,International Development,International Development +377664,International Development,International Development +377663,International Development,International Development +377662,International Development,International Development +377661,International Development,International Development +377660,International Development,International Development +375447,International Development,International Development +375446,International Development,International Development +375445,International Development,International Development +375444,International Development,International Development +375443,International Development,International Development +375442,International Development,International Development +375441,International Development,International Development +375440,International Development,International Development +375439,International Development,International Development +375438,International Development,International Development +375437,International Development,International Development +375436,International Development,International Development +375435,International Development,International Development +375433,International Development,International Development +375432,International Development,International Development +375431,International Development,International Development +375430,International Development,International Development +375428,International Development,International Development +375427,International Development,International Development +375425,International Development,International Development +375424,International Development,International Development +375423,International Development,International Development +375422,International Development,International Development +375421,International Development,International Development +375419,International Development,International Development +375418,International Development,International Development +375417,International Development,International Development +375415,International Development,International Development +375414,International Development,International Development +375413,International Development,International Development +375412,International Development,International Development +375411,International Development,International Development +375410,International Development,International Development +367507,International Development,International Development +366765,International Development,International Development +366764,International Development,International Development +365386,International Development,International Development +364879,International Development,International Development +360662,International Development,International Development +358585,International Development,International Development +358584,International Development,International Development +357627,International Development,International Development +356728,International Development,International Development +355206,International Development,International Development +354545,International Development,International Development +354544,International Development,International Development +354543,International Development,International Development +350152,International Development,International Development +350151,International Development,International Development +350150,International Development,International Development +350149,International Development,International Development +350148,International Development,International Development +350147,International Development,International Development +350146,International Development,International Development +350145,International Development,International Development +350144,International Development,International Development +350143,International Development,International Development +350142,International Development,International Development +349076,International Development,International Development +348018,International Development,International Development +344823,International Development,International Development +344559,International Development,International Development +344558,International Development,International Development +344261,International Development,International Development +343972,International Development,International Development +343301,International Development,International Development +456538,International Development,International Development +454064,International Development,International Development +453836,International Development,International Development +453800,International Development,International Development +453799,International Development,International Development +450350,International Development,International Development +450349,International Development,International Development +446282,International Development,International Development +445918,International Development,International Development +445903,International Development,International Development +445902,International Development,International Development +445123,International Development,International Development +444991,International Development,International Development +444434,International Development,International Development +444433,International Development,International Development +444432,International Development,International Development +444167,International Development,International Development +443107,International Development,International Development +443106,International Development,International Development +443105,International Development,International Development +440578,International Development,International Development +440577,International Development,International Development +439975,International Development,International Development +439974,International Development,International Development +436789,International Development,International Development +436788,International Development,International Development +436787,International Development,International Development +436786,International Development,International Development +436785,International Development,International Development +436784,International Development,International Development +436783,International Development,International Development +436782,International Development,International Development +436781,International Development,International Development +436780,International Development,International Development +436779,International Development,International Development +436778,International Development,International Development +436777,International Development,International Development +436776,International Development,International Development +436775,International Development,International Development +436774,International Development,International Development +436773,International Development,International Development +436772,International Development,International Development +436771,International Development,International Development +436770,International Development,International Development +436769,International Development,International Development +436768,International Development,International Development +436767,International Development,International Development +436766,International Development,International Development +436765,International Development,International Development +436764,International Development,International Development +436763,International Development,International Development +436762,International Development,International Development +436761,International Development,International Development +436760,International Development,International Development +436759,International Development,International Development +436758,International Development,International Development +436757,International Development,International Development +436756,International Development,International Development +436755,International Development,International Development +436754,International Development,International Development +436753,International Development,International Development +436752,International Development,International Development +436751,International Development,International Development +434355,International Development,International Development +434354,International Development,International Development +434353,International Development,International Development +434347,International Development,International Development +432808,International Development,International Development +432785,International Development,International Development +431509,International Development,International Development +429896,International Development,International Development +429853,International Development,International Development +429852,International Development,International Development +429837,International Development,International Development +427233,International Development,International Development +427152,International Development,International Development +427151,International Development,International Development +427150,International Development,International Development +427149,International Development,International Development +423266,International Development,International Development +423264,International Development,International Development +423263,International Development,International Development +423257,International Development,International Development +420828,International Development,International Development +420827,International Development,International Development +420826,International Development,International Development +420824,International Development,International Development +420821,International Development,International Development +420817,International Development,International Development +420816,International Development,International Development +418726,International Development,International Development +418694,International Development,International Development +415334,International Development,International Development +413496,International Development,International Development +412736,International Development,International Development +412731,International Development,International Development +412727,International Development,International Development +412724,International Development,International Development +412720,International Development,International Development +412715,International Development,International Development +412712,International Development,International Development +408276,International Development,International Development +408275,International Development,International Development +408274,International Development,International Development +407177,International Development,International Development +407176,International Development,International Development +406087,International Development,International Development +405987,International Development,International Development +402088,International Development,International Development +402087,International Development,International Development +402086,International Development,International Development +402085,International Development,International Development +402084,International Development,International Development +399315,International Development,International Development +397317,International Development,International Development +397316,International Development,International Development +397315,International Development,International Development +397314,International Development,International Development +394889,International Development,International Development +394888,International Development,International Development +394887,International Development,International Development +394886,International Development,International Development +394885,International Development,International Development +393142,International Development,International Development +393140,International Development,International Development +392026,International Development,International Development +392025,International Development,International Development +390137,International Development,International Development +389084,International Development,International Development +389083,International Development,International Development +389082,International Development,International Development +389081,International Development,International Development +389080,International Development,International Development +389079,International Development,International Development +389078,International Development,International Development +389075,International Development,International Development +386061,International Development,International Development +385886,International Development,International Development +385885,International Development,International Development +385884,International Development,International Development +385612,International Development,International Development +383760,International Development,International Development +383759,International Development,International Development +383758,International Development,International Development +383757,International Development,International Development +381765,International Development,International Development +380586,International Development,International Development +380585,International Development,International Development +544869,International Development,International Development +537115,International Development,International Development +536139,International Development,International Development +536138,International Development,International Development +536137,International Development,International Development +536135,International Development,International Development +532663,International Development,International Development +532589,International Development,International Development +532588,International Development,International Development +527121,International Development,International Development +524812,International Development,International Development +523994,International Development,International Development +523993,International Development,International Development +523992,International Development,International Development +523991,International Development,International Development +523990,International Development,International Development +518577,International Development,International Development +518576,International Development,International Development +518575,International Development,International Development +513523,International Development,International Development +513522,International Development,International Development +513521,International Development,International Development +511984,International Development,International Development +506468,International Development,International Development +496949,International Development,International Development +496947,International Development,International Development +496945,International Development,International Development +494994,International Development,International Development +494992,International Development,International Development +494581,International Development,International Development +494580,International Development,International Development +494579,International Development,International Development +494578,International Development,International Development +493995,International Development,International Development +489699,International Development,International Development +489698,International Development,International Development +489353,International Development,International Development +486597,International Development,International Development +485729,International Development,International Development +485728,International Development,International Development +485727,International Development,International Development +483521,International Development,International Development +482752,International Development,International Development +482750,International Development,International Development +482748,International Development,International Development +482745,International Development,International Development +471819,International Development,International Development +471818,International Development,International Development +471817,International Development,International Development +471704,International Development,International Development +463838,International Development,International Development +463836,International Development,International Development +274691,International Trade,International Trade +536287,International Trade,International Trade +244898,International Trade,International Trade +155780,Industry,Industry +154146,Industry,Industry +162866,Industry,Industry +166947,Energy,Energy +166946,Energy,Energy +154299,Industry,Industry +154296,Industry,Industry +162867,Industry,Industry +160575,Industry,Industry +520534,Housing,Housing +520527,Housing,Housing +165545,Housing,Housing +165544,Housing,Housing +159282,Housing,Housing +240709,Housing,Housing +240698,Housing,Housing +234793,Housing,Housing +234792,Housing,Housing +234791,Housing,Housing +234790,Housing,Housing +232749,Housing,Housing +230395,Housing,Housing +225048,Housing,Housing +225047,Housing,Housing +223031,Housing,Housing +223030,Housing,Housing +223029,Housing,Housing +211824,Housing,Housing +211823,Housing,Housing +211822,Housing,Housing +200650,Housing,Housing +200649,Housing,Housing +200648,Housing,Housing +200647,Housing,Housing +196867,Housing,Housing +196756,Housing,Housing +196755,Housing,Housing +196754,Housing,Housing +196753,Housing,Housing +196752,Housing,Housing +196751,Housing,Housing +196750,Housing,Housing +191605,Housing,Housing +189114,Housing,Housing +189113,Housing,Housing +189111,Housing,Housing +189110,Housing,Housing +189108,Housing,Housing +186607,Housing,Housing +186606,Housing,Housing +186605,Housing,Housing +186604,Housing,Housing +175547,Housing,Housing +380344,Housing,Housing +380071,Housing,Housing +377962,Housing,Housing +377961,Housing,Housing +377960,Housing,Housing +377959,Housing,Housing +377958,Housing,Housing +377956,Housing,Housing +375694,Housing,Housing +375659,Housing,Housing +370281,Housing,Housing +370093,Housing,Housing +368286,Housing,Housing +367865,Housing,Housing +367863,Housing,Housing +367862,Housing,Housing +367708,Housing,Housing +367446,Housing,Housing +367445,Housing,Housing +365462,Housing,Housing +365436,Housing,Housing +365383,Housing,Housing +365382,Housing,Housing +364608,Housing,Housing +364607,Housing,Housing +356784,Housing,Housing +352823,Housing,Housing +352723,Housing,Housing +349945,Housing,Housing +349837,Housing,Housing +349664,Housing,Housing +341746,Housing,Housing +341745,Housing,Housing +339272,Housing,Housing +336397,Housing,Housing +336396,Housing,Housing +334880,Housing,Housing +334879,Housing,Housing +331349,Housing,Housing +328011,Housing,Housing +328010,Housing,Housing +328009,Housing,Housing +324271,Housing,Housing +324269,Housing,Housing +320349,Housing,Housing +318749,Housing,Housing +315350,Housing,Housing +314289,Housing,Housing +311456,Housing,Housing +308472,Housing,Housing +308470,Housing,Housing +308469,Housing,Housing +305509,Housing,Housing +300870,Housing,Housing +300869,Housing,Housing +297949,Housing,Housing +294149,Housing,Housing +293770,Housing,Housing +293769,Housing,Housing +287409,Housing,Housing +286617,Housing,Housing +286615,Housing,Housing +283970,Housing,Housing +283230,Housing,Housing +275089,Housing,Housing +267009,Housing,Housing +264376,Housing,Housing +261207,Housing,Housing +257669,Housing,Housing +255389,Housing,Housing +249389,Housing,Housing +248230,Housing,Housing +248229,Housing,Housing +244520,Housing,Housing +244519,Housing,Housing +244518,Housing,Housing +520398,Housing,Housing +520367,Housing,Housing +520365,Housing,Housing +519194,Housing,Housing +519193,Housing,Housing +519192,Housing,Housing +519191,Housing,Housing +516339,Housing,Housing +516226,Housing,Housing +516225,Housing,Housing +516105,Housing,Housing +516103,Housing,Housing +515709,Housing,Housing +511972,Housing,Housing +511971,Housing,Housing +511970,Housing,Housing +511969,Housing,Housing +511968,Housing,Housing +509860,Housing,Housing +509859,Housing,Housing +504408,Housing,Housing +503607,Housing,Housing +498823,Housing,Housing +497300,Housing,Housing +497154,Housing,Housing +497153,Housing,Housing +496385,Housing,Housing +494212,Housing,Housing +494211,Housing,Housing +494210,Housing,Housing +494209,Housing,Housing +491966,Housing,Housing +491965,Housing,Housing +489436,Housing,Housing +488877,Housing,Housing +488876,Housing,Housing +488874,Housing,Housing +488873,Housing,Housing +488871,Housing,Housing +485674,Housing,Housing +483507,Housing,Housing +483505,Housing,Housing +481740,Housing,Housing +481738,Housing,Housing +477332,Housing,Housing +477331,Housing,Housing +476417,Housing,Housing +474462,Housing,Housing +474458,Housing,Housing +465663,Housing,Housing +465255,Housing,Housing +465254,Housing,Housing +463081,Housing,Housing +463080,Housing,Housing +463079,Housing,Housing +463077,Housing,Housing +463076,Housing,Housing +462976,Housing,Housing +462933,Housing,Housing +461082,Housing,Housing +460966,Housing,Housing +458132,Housing,Housing +456800,Housing,Housing +453106,Housing,Housing +453105,Housing,Housing +453104,Housing,Housing +453103,Housing,Housing +453101,Housing,Housing +453100,Housing,Housing +451110,Housing,Housing +451109,Housing,Housing +451108,Housing,Housing +451107,Housing,Housing +450662,Housing,Housing +450660,Housing,Housing +450659,Housing,Housing +450658,Housing,Housing +446681,Housing,Housing +441993,Housing,Housing +441992,Housing,Housing +441989,Housing,Housing +441987,Housing,Housing +441983,Housing,Housing +436384,Housing,Housing +431045,Housing,Housing +427200,Housing,Housing +424646,Housing,Housing +424594,Housing,Housing +424552,Housing,Housing +424534,Housing,Housing +424533,Housing,Housing +424531,Housing,Housing +420793,Housing,Housing +414880,Housing,Housing +414879,Housing,Housing +414878,Housing,Housing +414877,Housing,Housing +414876,Housing,Housing +414875,Housing,Housing +414711,Housing,Housing +414710,Housing,Housing +414709,Housing,Housing +414708,Housing,Housing +414570,Housing,Housing +414569,Housing,Housing +414568,Housing,Housing +414567,Housing,Housing +411837,Housing,Housing +411836,Housing,Housing +411201,Housing,Housing +411200,Housing,Housing +410595,Housing,Housing +410525,Housing,Housing +410524,Housing,Housing +410523,Housing,Housing +410522,Housing,Housing +409753,Housing,Housing +409749,Housing,Housing +409748,Housing,Housing +409746,Housing,Housing +409744,Housing,Housing +408239,Housing,Housing +407955,Housing,Housing +406675,Housing,Housing +404457,Housing,Housing +404456,Housing,Housing +404455,Housing,Housing +404454,Housing,Housing +404453,Housing,Housing +404452,Housing,Housing +404451,Housing,Housing +404449,Housing,Housing +404448,Housing,Housing +404446,Housing,Housing +404445,Housing,Housing +404444,Housing,Housing +397303,Housing,Housing +397302,Housing,Housing +397301,Housing,Housing +397300,Housing,Housing +397299,Housing,Housing +394823,Housing,Housing +394822,Housing,Housing +391871,Housing,Housing +391869,Housing,Housing +391868,Housing,Housing +388896,Housing,Housing +388895,Housing,Housing +388894,Housing,Housing +386259,Housing,Housing +386251,Housing,Housing +382985,Housing,Housing +382984,Housing,Housing +382982,Housing,Housing +382981,Housing,Housing +382980,Housing,Housing +538872,Housing,Housing +538871,Housing,Housing +538870,Housing,Housing +537615,Housing,Housing +537003,Housing,Housing +536364,Housing,Housing +536363,Housing,Housing +536362,Housing,Housing +533694,Housing,Housing +533693,Housing,Housing +531210,Housing,Housing +530608,Housing,Housing +530224,Housing,Housing +530223,Housing,Housing +528764,Housing,Housing +528763,Housing,Housing +528762,Housing,Housing +525863,Housing,Housing +525862,Housing,Housing +525861,Housing,Housing +525859,Housing,Housing +525858,Housing,Housing +521677,Housing,Housing +521676,Housing,Housing +521674,Housing,Housing +520676,Housing,Housing +407666,Energy,Energy +404563,Energy,Energy +324777,Energy,Energy +407666,Government Procurement,Government Procurement +149116,Research and Development,Research and Development (R&D) +199860,International Trade,International Trade +199857,International Trade,International Trade +150004,International Trade,International Trade +150003,International Trade,International Trade +177308,International Trade,International Trade +177306,International Trade,International Trade +160504,Defence,Défense +160504,Economic Development,Développement économique +160503,Economic Development,Développement économique +160502,Industry,Industrie +160500,Industry,Industrie +149237,Regional Development,Développement régional +376533,Pensions,Pensions +376532,Pensions,Pensions +376531,Pensions,Pensions +376530,Pensions,Pensions +376529,Pensions,Pensions +376527,Pensions,Pensions +368876,Pensions,Pensions +368873,Pensions,Pensions +306511,Financial Institutions,Financial Institutions +277932,Financial Institutions,Financial Institutions +162499,Financial Institutions,Financial Institutions +162424,Financial Institutions,Financial Institutions +162398,Financial Institutions,Financial Institutions +162378,Financial Institutions,Financial Institutions +162294,Financial Institutions,Financial Institutions +162197,Financial Institutions,Financial Institutions +151459,Energy,Energy +151460,Environment,Environment +151459,Industry,Industry +151459,Infrastructure,Infrastructure +151459,International Trade,International Trade +151459,Regional Development,Regional Development +159592,Taxation and Finance,Taxation and Finance +151440,Energy,Energy +151440,Environment,Environment +151440,Industry,Industry +151440,Infrastructure,Infrastructure +151440,International Trade,International Trade +151440,Regional Development,Regional Development +539194,Transportation,Transportation +539193,Transportation,Transportation +168102,Transportation,Transportation +168101,Transportation,Transportation +168100,Transportation,Transportation +168098,Transportation,Transportation +168096,Transportation,Transportation +168023,Transportation,Transportation +165891,Transportation,Transportation +163761,Transportation,Transportation +163759,Transportation,Transportation +162140,Transportation,Transportation +162131,Transportation,Transportation +160031,Transportation,Transportation +156866,Transportation,Transportation +156862,Transportation,Transportation +151978,Transportation,Transportation +240169,Transportation,Transportation +232014,Transportation,Transportation +232012,Transportation,Transportation +230123,Transportation,Transportation +230122,Transportation,Transportation +230121,Transportation,Transportation +230118,Transportation,Transportation +226269,Transportation,Transportation +226268,Transportation,Transportation +226267,Transportation,Transportation +223380,Transportation,Transportation +223365,Transportation,Transportation +223364,Transportation,Transportation +216708,Transportation,Transportation +216707,Transportation,Transportation +216688,Transportation,Transportation +216687,Transportation,Transportation +216672,Transportation,Transportation +216670,Transportation,Transportation +216669,Transportation,Transportation +216668,Transportation,Transportation +216667,Transportation,Transportation +211922,Transportation,Transportation +199594,Transportation,Transportation +199593,Transportation,Transportation +193235,Transportation,Transportation +190348,Transportation,Transportation +190345,Transportation,Transportation +185646,Transportation,Transportation +177984,Transportation,Transportation +177964,Transportation,Transportation +177944,Transportation,Transportation +177924,Transportation,Transportation +175360,Transportation,Transportation +175358,Transportation,Transportation +175357,Transportation,Transportation +175354,Transportation,Transportation +173477,Transportation,Transportation +170350,Transportation,Transportation +170349,Transportation,Transportation +170348,Transportation,Transportation +170347,Transportation,Transportation +390807,Transportation,Transportation +390799,Transportation,Transportation +390792,Transportation,Transportation +387290,Transportation,Transportation +387288,Transportation,Transportation +387287,Transportation,Transportation +381288,Transportation,Transportation +381286,Transportation,Transportation +379106,Transportation,Transportation +379104,Transportation,Transportation +379103,Transportation,Transportation +379102,Transportation,Transportation +379099,Transportation,Transportation +379098,Transportation,Transportation +376449,Transportation,Transportation +376447,Transportation,Transportation +374205,Transportation,Transportation +374203,Transportation,Transportation +374202,Transportation,Transportation +374200,Transportation,Transportation +374181,Transportation,Transportation +371933,Transportation,Transportation +371893,Transportation,Transportation +371888,Transportation,Transportation +371879,Transportation,Transportation +371877,Transportation,Transportation +371876,Transportation,Transportation +371873,Transportation,Transportation +371872,Transportation,Transportation +363272,Transportation,Transportation +353762,Transportation,Transportation +353761,Transportation,Transportation +351261,Transportation,Transportation +348778,Transportation,Transportation +348774,Transportation,Transportation +346959,Transportation,Transportation +346958,Transportation,Transportation +344883,Transportation,Transportation +343736,Transportation,Transportation +343729,Transportation,Transportation +343723,Transportation,Transportation +343720,Transportation,Transportation +340611,Transportation,Transportation +340605,Transportation,Transportation +340604,Transportation,Transportation +340600,Transportation,Transportation +340596,Transportation,Transportation +340595,Transportation,Transportation +338231,Transportation,Transportation +335609,Transportation,Transportation +329749,Transportation,Transportation +329748,Transportation,Transportation +327010,Transportation,Transportation +321495,Transportation,Transportation +313169,Transportation,Transportation +313128,Transportation,Transportation +311400,Transportation,Transportation +309701,Transportation,Transportation +309692,Transportation,Transportation +302672,Transportation,Transportation +302670,Transportation,Transportation +295749,Transportation,Transportation +295731,Transportation,Transportation +295730,Transportation,Transportation +289831,Transportation,Transportation +280590,Transportation,Transportation +272849,Transportation,Transportation +267589,Transportation,Transportation +263549,Transportation,Transportation +257870,Transportation,Transportation +257869,Transportation,Transportation +253790,Transportation,Transportation +253789,Transportation,Transportation +249930,Transportation,Transportation +249929,Transportation,Transportation +244229,Transportation,Transportation +244208,Transportation,Transportation +244206,Transportation,Transportation +244204,Transportation,Transportation +244202,Transportation,Transportation +244198,Transportation,Transportation +244197,Transportation,Transportation +244196,Transportation,Transportation +244195,Transportation,Transportation +537167,Transportation,Transportation +537163,Transportation,Transportation +537162,Transportation,Transportation +537161,Transportation,Transportation +537160,Transportation,Transportation +537156,Transportation,Transportation +537154,Transportation,Transportation +537153,Transportation,Transportation +537152,Transportation,Transportation +537150,Transportation,Transportation +537149,Transportation,Transportation +530859,Transportation,Transportation +530858,Transportation,Transportation +530846,Transportation,Transportation +521664,Transportation,Transportation +521662,Transportation,Transportation +519452,Transportation,Transportation +519449,Transportation,Transportation +517463,Transportation,Transportation +517460,Transportation,Transportation +515132,Transportation,Transportation +515131,Transportation,Transportation +512407,Transportation,Transportation +510690,Transportation,Transportation +507400,Transportation,Transportation +507398,Transportation,Transportation +507379,Transportation,Transportation +507377,Transportation,Transportation +507376,Transportation,Transportation +507374,Transportation,Transportation +507372,Transportation,Transportation +507371,Transportation,Transportation +507368,Transportation,Transportation +507367,Transportation,Transportation +506078,Transportation,Transportation +506077,Transportation,Transportation +506076,Transportation,Transportation +499223,Transportation,Transportation +499219,Transportation,Transportation +499214,Transportation,Transportation +495124,Transportation,Transportation +495123,Transportation,Transportation +495122,Transportation,Transportation +490535,Transportation,Transportation +490218,Transportation,Transportation +490217,Transportation,Transportation +490216,Transportation,Transportation +490215,Transportation,Transportation +490214,Transportation,Transportation +490213,Transportation,Transportation +490212,Transportation,Transportation +490211,Transportation,Transportation +490210,Transportation,Transportation +483530,Transportation,Transportation +483529,Transportation,Transportation +481701,Transportation,Transportation +479216,Transportation,Transportation +479214,Transportation,Transportation +474562,Transportation,Transportation +472273,Transportation,Transportation +470280,Transportation,Transportation +467154,Transportation,Transportation +467150,Transportation,Transportation +467140,Transportation,Transportation +467128,Transportation,Transportation +459282,Transportation,Transportation +456977,Transportation,Transportation +456973,Transportation,Transportation +456972,Transportation,Transportation +454876,Transportation,Transportation +454871,Transportation,Transportation +454870,Transportation,Transportation +454868,Transportation,Transportation +449150,Transportation,Transportation +449149,Transportation,Transportation +449148,Transportation,Transportation +449147,Transportation,Transportation +441920,Transportation,Transportation +441914,Transportation,Transportation +441911,Transportation,Transportation +441909,Transportation,Transportation +441907,Transportation,Transportation +434849,Transportation,Transportation +433409,Transportation,Transportation +433408,Transportation,Transportation +428103,Transportation,Transportation +428101,Transportation,Transportation +428100,Transportation,Transportation +428099,Transportation,Transportation +428098,Transportation,Transportation +428015,Transportation,Transportation +425497,Transportation,Transportation +425496,Transportation,Transportation +425495,Transportation,Transportation +425493,Transportation,Transportation +425492,Transportation,Transportation +425490,Transportation,Transportation +425488,Transportation,Transportation +423525,Transportation,Transportation +423503,Transportation,Transportation +421858,Transportation,Transportation +421854,Transportation,Transportation +421852,Transportation,Transportation +419788,Transportation,Transportation +417600,Transportation,Transportation +417599,Transportation,Transportation +417598,Transportation,Transportation +417597,Transportation,Transportation +417596,Transportation,Transportation +417594,Transportation,Transportation +417593,Transportation,Transportation +417591,Transportation,Transportation +416036,Transportation,Transportation +416035,Transportation,Transportation +416032,Transportation,Transportation +416031,Transportation,Transportation +416030,Transportation,Transportation +416029,Transportation,Transportation +416028,Transportation,Transportation +416026,Transportation,Transportation +416023,Transportation,Transportation +416021,Transportation,Transportation +416018,Transportation,Transportation +416016,Transportation,Transportation +413055,Transportation,Transportation +407586,Transportation,Transportation +406360,Transportation,Transportation +406359,Transportation,Transportation +406358,Transportation,Transportation +406357,Transportation,Transportation +406356,Transportation,Transportation +402789,Transportation,Transportation +396093,Transportation,Transportation +396090,Transportation,Transportation +396089,Transportation,Transportation +392197,Transportation,Transportation +392196,Transportation,Transportation +390857,Transportation,Transportation +390844,Transportation,Transportation +390824,Transportation,Transportation +390819,Transportation,Transportation +390815,Transportation,Transportation +542942,Transportation,Transportation +542941,Transportation,Transportation +165759,Defence,Defence +165758,Defence,Defence +165759,Government Procurement,Government Procurement +165758,Government Procurement,Government Procurement +165759,Industry,Industry +165758,Industry,Industry +159682,Industry,Industry +161583,Industry,Industry +279529,Research and Development,Research and Development (R&D) +393258,Research and Development,Research and Development (R&D) +382976,Research and Development,Research and Development (R&D) +344337,Research and Development,Research and Development (R&D) +305829,Research and Development,Research and Development (R&D) +294769,Research and Development,Research and Development (R&D) +483170,International Development,International Development +483169,International Development,International Development +176946,International Development,International Development +176945,International Development,International Development +162148,International Development,International Development +159796,International Development,International Development +156660,International Development,International Development +156658,International Development,International Development +156656,International Development,International Development +153547,International Development,International Development +149919,International Development,International Development +230240,International Development,International Development +222547,International Development,International Development +194716,International Development,International Development +194702,International Development,International Development +176947,International Development,International Development +384889,International Development,International Development +384884,International Development,International Development +384873,International Development,International Development +381194,International Development,International Development +381187,International Development,International Development +379841,International Development,International Development +379835,International Development,International Development +379824,International Development,International Development +372597,International Development,International Development +372595,International Development,International Development +372580,International Development,International Development +368837,International Development,International Development +366747,International Development,International Development +365258,International Development,International Development +363456,International Development,International Development +363450,International Development,International Development +275009,International Development,International Development +274990,International Development,International Development +274989,International Development,International Development +439269,International Development,International Development +398637,International Development,International Development +396899,International Development,International Development +396889,International Development,International Development +396879,International Development,International Development +391171,International Development,International Development +538452,International Development,International Development +538450,International Development,International Development +538448,International Development,International Development +538446,International Development,International Development +538444,International Development,International Development +538443,International Development,International Development +538442,International Development,International Development +532126,International Development,International Development +524631,International Development,International Development +524629,International Development,International Development +524628,International Development,International Development +524627,International Development,International Development +524626,International Development,International Development +524624,International Development,International Development +522246,International Development,International Development +522245,International Development,International Development +522234,International Development,International Development +520276,International Development,International Development +520275,International Development,International Development +509485,International Development,International Development +509484,International Development,International Development +509483,International Development,International Development +509481,International Development,International Development +509479,International Development,International Development +507937,International Development,International Development +507929,International Development,International Development +504928,International Development,International Development +504922,International Development,International Development +503344,International Development,International Development +503343,International Development,International Development +483179,International Development,International Development +453567,Employment and Training,Emploi et formation +444143,Employment and Training,Emploi et formation +158461,Employment and Training,Emploi et formation +158460,Employment and Training,Emploi et formation +158457,Employment and Training,Emploi et formation +158454,Employment and Training,Emploi et formation +202007,Employment and Training,Emploi et formation +160855,Employment and Training,Emploi et formation +160854,Employment and Training,Emploi et formation +158463,Employment and Training,Emploi et formation +407674,Employment and Training,Emploi et formation +388362,Employment and Training,Emploi et formation +377788,Employment and Training,Emploi et formation +224427,Government Procurement,Government Procurement +156212,Industry,Industry +156211,Industry,Industry +156210,Industry,Industry +156208,Industry,Industry +157750,Industry,Industry +156249,Industry,Industry +156216,Industry,Industry +464441,Financial Institutions,Financial Institutions +464437,Financial Institutions,Financial Institutions +150037,Financial Institutions,Financial Institutions +516429,Financial Institutions,Financial Institutions +464496,Financial Institutions,Financial Institutions +464491,Financial Institutions,Financial Institutions +464488,Financial Institutions,Financial Institutions +464483,Financial Institutions,Financial Institutions +464474,Financial Institutions,Financial Institutions +464467,Financial Institutions,Financial Institutions +464464,Financial Institutions,Financial Institutions +464459,Financial Institutions,Financial Institutions +464456,Financial Institutions,Financial Institutions +464452,Financial Institutions,Financial Institutions +464450,Financial Institutions,Financial Institutions +179384,Economic Development,Economic Development +168374,Economic Development,Economic Development +179384,Education,Education +165744,Education,Education +163937,Education,Education +159726,Education,Education +189041,Education,Education +189039,Education,Education +495175,Infrastructure,Infrastructure +477757,Infrastructure,Infrastructure +189041,Infrastructure,Infrastructure +189039,Infrastructure,Infrastructure +179384,Infrastructure,Infrastructure +175463,Infrastructure,Infrastructure +175462,Infrastructure,Infrastructure +168374,Infrastructure,Infrastructure +168368,Infrastructure,Infrastructure +165753,Infrastructure,Infrastructure +165749,Infrastructure,Infrastructure +165744,Infrastructure,Infrastructure +245402,Infrastructure,Infrastructure +241227,Infrastructure,Infrastructure +236010,Infrastructure,Infrastructure +227271,Infrastructure,Infrastructure +223068,Infrastructure,Infrastructure +445782,Infrastructure,Infrastructure +391622,Infrastructure,Infrastructure +374706,Infrastructure,Infrastructure +363622,Infrastructure,Infrastructure +356512,Infrastructure,Infrastructure +333096,Infrastructure,Infrastructure +508021,Infrastructure,Infrastructure +504171,Infrastructure,Infrastructure +152778,Agriculture,Agriculture +152777,Agriculture,Agriculture +152780,Agriculture,Agriculture +152778,Taxation and Finance,Taxation and Finance +152777,Taxation and Finance,Taxation and Finance +152780,Taxation and Finance,Taxation and Finance +164030,Research and Development,Research and Development (R&D) +164026,Research and Development,Research and Development (R&D) +150231,Research and Development,Research and Development (R&D) +207641,Research and Development,Research and Development (R&D) +164032,Research and Development,Research and Development (R&D) +152065,Constitutional Issues,Constitutional Issues +326073,Constitutional Issues,Constitutional Issues +326072,Constitutional Issues,Constitutional Issues +526268,Immigration,Immigration +526255,Immigration,Immigration +311211,Immigration,Immigration +311210,Immigration,Immigration +377316,Immigration,Immigration +375181,Immigration,Immigration +341098,Immigration,Immigration +341096,Immigration,Immigration +341094,Immigration,Immigration +523204,Immigration,Immigration +505024,Immigration,Immigration +495531,Immigration,Immigration +493535,Immigration,Immigration +490662,Immigration,Immigration +490652,Immigration,Immigration +490648,Immigration,Immigration +457430,Immigration,Immigration +452557,Immigration,Immigration +452554,Immigration,Immigration +441781,Immigration,Immigration +426665,Immigration,Immigration +426662,Immigration,Immigration +426657,Immigration,Immigration +426656,Immigration,Immigration +426653,Immigration,Immigration +426647,Immigration,Immigration +426642,Immigration,Immigration +505024,International Trade,International Trade +490678,Justice and Law Enforcement,Justice and Law Enforcement +490665,Justice and Law Enforcement,Justice and Law Enforcement +150331,Justice and Law Enforcement,Justice and Law Enforcement +150330,Justice and Law Enforcement,Justice and Law Enforcement +185468,Justice and Law Enforcement,Justice and Law Enforcement +185467,Justice and Law Enforcement,Justice and Law Enforcement +185464,Justice and Law Enforcement,Justice and Law Enforcement +153958,Justice and Law Enforcement,Justice and Law Enforcement +153957,Justice and Law Enforcement,Justice and Law Enforcement +153956,Justice and Law Enforcement,Justice and Law Enforcement +153955,Justice and Law Enforcement,Justice and Law Enforcement +150333,Justice and Law Enforcement,Justice and Law Enforcement +333869,Justice and Law Enforcement,Justice and Law Enforcement +311214,Justice and Law Enforcement,Justice and Law Enforcement +311213,Justice and Law Enforcement,Justice and Law Enforcement +311212,Justice and Law Enforcement,Justice and Law Enforcement +290663,Justice and Law Enforcement,Justice and Law Enforcement +237671,Justice and Law Enforcement,Justice and Law Enforcement +199939,Justice and Law Enforcement,Justice and Law Enforcement +185470,Justice and Law Enforcement,Justice and Law Enforcement +484321,Justice and Law Enforcement,Justice and Law Enforcement +475581,Justice and Law Enforcement,Justice and Law Enforcement +467806,Justice and Law Enforcement,Justice and Law Enforcement +461678,Justice and Law Enforcement,Justice and Law Enforcement +461675,Justice and Law Enforcement,Justice and Law Enforcement +452560,Justice and Law Enforcement,Justice and Law Enforcement +447265,Justice and Law Enforcement,Justice and Law Enforcement +447263,Justice and Law Enforcement,Justice and Law Enforcement +445838,Justice and Law Enforcement,Justice and Law Enforcement +396457,Justice and Law Enforcement,Justice and Law Enforcement +392542,Justice and Law Enforcement,Justice and Law Enforcement +387089,Justice and Law Enforcement,Justice and Law Enforcement +358429,Justice and Law Enforcement,Justice and Law Enforcement +538467,Justice and Law Enforcement,Justice and Law Enforcement +523206,Justice and Law Enforcement,Justice and Law Enforcement +518017,Justice and Law Enforcement,Justice and Law Enforcement +514931,Justice and Law Enforcement,Justice and Law Enforcement +513169,Justice and Law Enforcement,Justice and Law Enforcement +505024,Justice and Law Enforcement,Justice and Law Enforcement +493542,Justice and Law Enforcement,Justice and Law Enforcement +505024,Privacy and Access to Information,Privacy and Access to Information +452551,Security,Security +452549,Security,Security +375180,Security,Security +406012,Taxation and Finance,Taxation and Finance +505024,Taxation and Finance,Taxation and Finance +159744,Taxation and Finance,Taxation and Finance +159743,Taxation and Finance,Taxation and Finance +159690,Energy,Energy +342680,Forestry,Forestry +342679,Forestry,Forestry +236291,Forestry,Forestry +236290,Forestry,Forestry +373117,Forestry,Forestry +506355,Health,Health +498233,Health,Health +217263,Health,Health +182827,Health,Health +324436,Health,Health +317992,Health,Health +317509,Health,Health +312883,Health,Health +249049,Health,Health +241085,Health,Health +241084,Health,Health +241081,Health,Health +241079,Health,Health +224043,Health,Health +224042,Health,Health +220207,Health,Health +217267,Health,Health +377430,Health,Health +374146,Health,Health +374143,Health,Health +374139,Health,Health +373400,Health,Health +373399,Health,Health +373394,Health,Health +373390,Health,Health +373380,Health,Health +373375,Health,Health +373373,Health,Health +373371,Health,Health +362424,Health,Health +354963,Health,Health +335366,Health,Health +335360,Health,Health +335348,Health,Health +329009,Health,Health +324467,Health,Health +324455,Health,Health +324450,Health,Health +324441,Health,Health +410776,Health,Health +409060,Health,Health +405848,Health,Health +399491,Health,Health +392998,Health,Health +392996,Health,Health +392995,Health,Health +388998,Health,Health +386105,Health,Health +386102,Health,Health +386101,Health,Health +386100,Health,Health +386099,Health,Health +386098,Health,Health +386097,Health,Health +386096,Health,Health +386090,Health,Health +380329,Health,Health +485575,Health,Health +485573,Health,Health +460301,Health,Health +456350,Health,Health +454819,Health,Health +454800,Health,Health +440706,Health,Health +437423,Health,Health +437421,Health,Health +434859,Health,Health +434856,Health,Health +434057,Health,Health +424963,Health,Health +419333,Health,Health +540382,Health,Health +530276,Health,Health +519380,Health,Health +518250,Health,Health +454805,Health,Health +440705,Health,Health +317510,Health,Health +296469,Health,Health +283789,Health,Health +264309,Health,Health +248571,Health,Health +241096,Health,Health +241067,Health,Health +241064,Health,Health +241061,Health,Health +241059,Health,Health +227849,Health,Health +217260,Health,Health +158189,Health,Health +150282,Health,Health +373397,Health,Health +373395,Health,Health +373392,Health,Health +373391,Health,Health +373389,Health,Health +373382,Health,Health +373381,Health,Health +373379,Health,Health +373378,Health,Health +373377,Health,Health +373376,Health,Health +373374,Health,Health +373372,Health,Health +373369,Health,Health +373368,Health,Health +365605,Health,Health +354962,Health,Health +354961,Health,Health +335350,Health,Health +324468,Health,Health +324453,Health,Health +324449,Health,Health +324448,Health,Health +324439,Health,Health +317511,Health,Health +386104,Health,Health +386103,Health,Health +386095,Health,Health +384317,Health,Health +383283,Health,Health +373398,Health,Health +437420,Health,Health +435055,Health,Health +434858,Health,Health +434857,Health,Health +429984,Health,Health +420606,Health,Health +418622,Health,Health +411041,Health,Health +409062,Health,Health +409061,Health,Health +401452,Health,Health +393884,Health,Health +393000,Health,Health +392999,Health,Health +392997,Health,Health +392994,Health,Health +392355,Health,Health +391929,Health,Health +388999,Health,Health +544847,Health,Health +540050,Health,Health +532728,Health,Health +529903,Health,Health +527364,Health,Health +516319,Health,Health +504236,Health,Health +503397,Health,Health +503100,Health,Health +501190,Health,Health +501188,Health,Health +501186,Health,Health +499956,Health,Health +485576,Health,Health +485574,Health,Health +485572,Health,Health +485571,Health,Health +485570,Health,Health +481059,Health,Health +476912,Health,Health +476911,Health,Health +476235,Health,Health +465409,Health,Health +460939,Health,Health +460938,Health,Health +454812,Health,Health +178984,Climate,Climate +178944,Climate,Climate +277369,Climate,Climate +268176,Climate,Climate +253981,Climate,Climate +179104,Climate,Climate +179084,Climate,Climate +179064,Climate,Climate +179044,Climate,Climate +179024,Climate,Climate +361222,Economic Development,Economic Development +357761,Economic Development,Economic Development +179044,Economic Development,Economic Development +179024,Economic Development,Economic Development +179004,Economic Development,Economic Development +178984,Economic Development,Economic Development +178964,Economic Development,Economic Development +177445,Economic Development,Economic Development +177444,Economic Development,Economic Development +253978,Economic Development,Economic Development +244192,Economic Development,Economic Development +234050,Economic Development,Economic Development +233609,Economic Development,Economic Development +226703,Economic Development,Economic Development +226701,Economic Development,Economic Development +226699,Economic Development,Economic Development +226698,Economic Development,Economic Development +226697,Economic Development,Economic Development +226694,Economic Development,Economic Development +226691,Economic Development,Economic Development +226690,Economic Development,Economic Development +226688,Economic Development,Economic Development +226686,Economic Development,Economic Development +222565,Economic Development,Economic Development +222564,Economic Development,Economic Development +222563,Economic Development,Economic Development +222559,Economic Development,Economic Development +222558,Economic Development,Economic Development +222555,Economic Development,Economic Development +222552,Economic Development,Economic Development +222549,Economic Development,Economic Development +211687,Economic Development,Economic Development +200568,Economic Development,Economic Development +197137,Economic Development,Economic Development +197135,Economic Development,Economic Development +197134,Economic Development,Economic Development +192576,Economic Development,Economic Development +192575,Economic Development,Economic Development +192574,Economic Development,Economic Development +192573,Economic Development,Economic Development +192572,Economic Development,Economic Development +192571,Economic Development,Economic Development +192570,Economic Development,Economic Development +192569,Economic Development,Economic Development +192568,Economic Development,Economic Development +192567,Economic Development,Economic Development +192489,Economic Development,Economic Development +192488,Economic Development,Economic Development +192487,Economic Development,Economic Development +192486,Economic Development,Economic Development +192485,Economic Development,Economic Development +192484,Economic Development,Economic Development +192424,Economic Development,Economic Development +192421,Economic Development,Economic Development +192419,Economic Development,Economic Development +192418,Economic Development,Economic Development +191617,Economic Development,Economic Development +191616,Economic Development,Economic Development +191614,Economic Development,Economic Development +179104,Economic Development,Economic Development +179084,Economic Development,Economic Development +179064,Economic Development,Economic Development +342330,Economic Development,Economic Development +342329,Economic Development,Economic Development +342328,Economic Development,Economic Development +342326,Economic Development,Economic Development +342325,Economic Development,Economic Development +342202,Economic Development,Economic Development +333629,Economic Development,Economic Development +333628,Economic Development,Economic Development +329759,Economic Development,Economic Development +329758,Economic Development,Economic Development +329757,Economic Development,Economic Development +329756,Economic Development,Economic Development +329754,Economic Development,Economic Development +327542,Economic Development,Economic Development +310174,Economic Development,Economic Development +310173,Economic Development,Economic Development +310172,Economic Development,Economic Development +310170,Economic Development,Economic Development +310169,Economic Development,Economic Development +303357,Economic Development,Economic Development +287889,Economic Development,Economic Development +285730,Economic Development,Economic Development +281013,Economic Development,Economic Development +281011,Economic Development,Economic Development +268605,Economic Development,Economic Development +268390,Economic Development,Economic Development +268389,Economic Development,Economic Development +268189,Economic Development,Economic Development +268183,Economic Development,Economic Development +268182,Economic Development,Economic Development +268181,Economic Development,Economic Development +268179,Economic Development,Economic Development +268177,Economic Development,Economic Development +268176,Economic Development,Economic Development +268173,Economic Development,Economic Development +263691,Economic Development,Economic Development +375968,Economic Development,Economic Development +432163,Research and Development,Research and Development (R&D) +426454,Research and Development,Research and Development (R&D) +159742,Research and Development,Research and Development (R&D) +154884,Research and Development,Research and Development (R&D) +150348,Research and Development,Research and Development (R&D) +163858,Research and Development,Research and Development (R&D) +398915,Research and Development,Research and Development (R&D) +502277,Research and Development,Research and Development (R&D) +154926,Taxation and Finance,Taxation and Finance +394347,Taxation and Finance,Taxation and Finance +152308,Taxation and Finance,Taxation and Finance +194853,Taxation and Finance,Taxation and Finance +194839,Taxation and Finance,Taxation and Finance +159729,Taxation and Finance,Taxation and Finance +159727,Taxation and Finance,Taxation and Finance +159721,Taxation and Finance,Taxation and Finance +159716,Taxation and Finance,Taxation and Finance +162888,Environment,Environment +162684,Environment,Environment +159967,Environment,Environment +152339,Environment,Environment +213007,Environment,Environment +171286,Financial Institutions,Institutions financières +328231,Economic Development,Economic Development +325013,Economic Development,Economic Development +315913,Economic Development,Economic Development +312732,Economic Development,Economic Development +312729,Economic Development,Economic Development +311151,Economic Development,Economic Development +311149,Economic Development,Economic Development +168659,Economic Development,Economic Development +168652,Economic Development,Economic Development +168649,Economic Development,Economic Development +168643,Economic Development,Economic Development +365083,Economic Development,Economic Development +312731,Fisheries,Fisheries +312730,Fisheries,Fisheries +162199,Fisheries,Fisheries +162196,Fisheries,Fisheries +312729,Fisheries,Fisheries +311152,Fisheries,Fisheries +311151,Fisheries,Fisheries +311149,Fisheries,Fisheries +311129,Fisheries,Fisheries +245367,Fisheries,Fisheries +365083,Fisheries,Fisheries +358155,Fisheries,Fisheries +328231,Fisheries,Fisheries +315912,Fisheries,Fisheries +319971,Agriculture,Agriculture +319970,Agriculture,Agriculture +247829,Agriculture,Agriculture +213628,Agriculture,Agriculture +191685,Industry,Industry +180830,Industry,Industry +191687,Industry,Industry +250914,Transportation,Transportation +222487,Transportation,Transportation +210736,Transportation,Transportation +205887,Transportation,Transportation +276875,Financial Institutions,Financial Institutions +275733,Financial Institutions,Financial Institutions +162504,Financial Institutions,Financial Institutions +162436,Financial Institutions,Financial Institutions +162369,Financial Institutions,Financial Institutions +162305,Financial Institutions,Financial Institutions +162213,Financial Institutions,Financial Institutions +197274,Financial Institutions,Financial Institutions +401746,Energy,Energy +389728,Energy,Energy +190607,Energy,Energy +190606,Energy,Energy +165261,Energy,Energy +165258,Energy,Energy +165256,Energy,Energy +163817,Energy,Energy +309776,Energy,Energy +287529,Energy,Energy +287511,Energy,Energy +287509,Energy,Energy +272710,Energy,Energy +272709,Energy,Energy +264089,Energy,Energy +244896,Energy,Energy +244895,Energy,Energy +244894,Energy,Energy +215447,Energy,Energy +209288,Energy,Energy +209287,Energy,Energy +204367,Energy,Energy +533160,Energy,Energy +485982,Energy,Energy +485981,Energy,Energy +451359,Energy,Energy +451358,Energy,Energy +451357,Energy,Energy +451356,Energy,Energy +451354,Energy,Energy +451348,Energy,Energy +427655,Energy,Energy +427653,Energy,Energy +401787,Energy,Energy +401782,Energy,Energy +401779,Energy,Energy +401771,Energy,Energy +401769,Energy,Energy +524970,Budget,Budget +524968,Budget,Budget +409856,Budget,Budget +153963,Industry,Industry +320170,Industry,Industry +153963,International Trade,International Trade +320170,International Trade,International Trade +156666,International Trade,International Trade +153963,Regional Development,Regional Development +320170,Regional Development,Regional Development +156668,Regional Development,Regional Development +156666,Regional Development,Regional Development +156634,Regional Development,Regional Development +153963,Transportation,Transportation +320170,Transportation,Transportation +156668,Transportation,Transportation +156666,Transportation,Transportation +156634,Transportation,Transportation +156631,Regional Development,Regional Development +317349,Regional Development,Regional Development +156631,Transportation,Transportation +317349,Transportation,Transportation +150742,Environment,Environment +399911,Internal Trade,Internal Trade +399910,Internal Trade,Internal Trade +392206,Internal Trade,Internal Trade +392205,Internal Trade,Internal Trade +370098,Internal Trade,Internal Trade +458468,Internal Trade,Internal Trade +458466,Internal Trade,Internal Trade +458465,Internal Trade,Internal Trade +399913,Internal Trade,Internal Trade +458466,Taxation and Finance,Taxation and Finance +458465,Taxation and Finance,Taxation and Finance +368848,Taxation and Finance,Taxation and Finance +399913,Taxation and Finance,Taxation and Finance +399912,Taxation and Finance,Taxation and Finance +399911,Taxation and Finance,Taxation and Finance +399910,Taxation and Finance,Taxation and Finance +392206,Taxation and Finance,Taxation and Finance +392205,Taxation and Finance,Taxation and Finance +384619,Taxation and Finance,Taxation and Finance +154905,Environment,Environment +154902,Environment,Environment +163408,Environment,Environment +154905,Industry,Industry +430572,Employment and Training,Employment and Training +419240,Employment and Training,Employment and Training +164465,Employment and Training,Employment and Training +526479,Immigration,Immigration +526471,Immigration,Immigration +441309,Immigration,Immigration +430572,Immigration,Immigration +423086,Immigration,Immigration +419240,Immigration,Immigration +531757,Immigration,Immigration +529350,Immigration,Immigration +529346,Immigration,Immigration +491436,Taxation and Finance,Taxation and Finance +491420,Taxation and Finance,Taxation and Finance +411029,Taxation and Finance,Taxation and Finance +411028,Taxation and Finance,Taxation and Finance +411027,Taxation and Finance,Taxation and Finance +411026,Taxation and Finance,Taxation and Finance +411025,Taxation and Finance,Taxation and Finance +411024,Taxation and Finance,Taxation and Finance +411022,Taxation and Finance,Taxation and Finance +411021,Taxation and Finance,Taxation and Finance +411013,Taxation and Finance,Taxation and Finance +408937,Taxation and Finance,Taxation and Finance +408935,Taxation and Finance,Taxation and Finance +407470,Taxation and Finance,Taxation and Finance +407468,Taxation and Finance,Taxation and Finance +407467,Taxation and Finance,Taxation and Finance +406616,Taxation and Finance,Taxation and Finance +406582,Taxation and Finance,Taxation and Finance +404940,Taxation and Finance,Taxation and Finance +404545,Taxation and Finance,Taxation and Finance +404341,Taxation and Finance,Taxation and Finance +404340,Taxation and Finance,Taxation and Finance +401957,Taxation and Finance,Taxation and Finance +401956,Taxation and Finance,Taxation and Finance +401955,Taxation and Finance,Taxation and Finance +401954,Taxation and Finance,Taxation and Finance +401953,Taxation and Finance,Taxation and Finance +401952,Taxation and Finance,Taxation and Finance +401951,Taxation and Finance,Taxation and Finance +401950,Taxation and Finance,Taxation and Finance +399609,Taxation and Finance,Taxation and Finance +397980,Taxation and Finance,Taxation and Finance +397977,Taxation and Finance,Taxation and Finance +393216,Taxation and Finance,Taxation and Finance +486544,Taxation and Finance,Taxation and Finance +486526,Taxation and Finance,Taxation and Finance +486516,Taxation and Finance,Taxation and Finance +486514,Taxation and Finance,Taxation and Finance +486511,Taxation and Finance,Taxation and Finance +486455,Taxation and Finance,Taxation and Finance +486209,Taxation and Finance,Taxation and Finance +484291,Taxation and Finance,Taxation and Finance +484246,Taxation and Finance,Taxation and Finance +482577,Taxation and Finance,Taxation and Finance +482575,Taxation and Finance,Taxation and Finance +482573,Taxation and Finance,Taxation and Finance +482572,Taxation and Finance,Taxation and Finance +482569,Taxation and Finance,Taxation and Finance +482557,Taxation and Finance,Taxation and Finance +480072,Taxation and Finance,Taxation and Finance +480062,Taxation and Finance,Taxation and Finance +480045,Taxation and Finance,Taxation and Finance +480036,Taxation and Finance,Taxation and Finance +480027,Taxation and Finance,Taxation and Finance +477738,Taxation and Finance,Taxation and Finance +477736,Taxation and Finance,Taxation and Finance +477735,Taxation and Finance,Taxation and Finance +477733,Taxation and Finance,Taxation and Finance +477731,Taxation and Finance,Taxation and Finance +477729,Taxation and Finance,Taxation and Finance +477728,Taxation and Finance,Taxation and Finance +477718,Taxation and Finance,Taxation and Finance +474565,Taxation and Finance,Taxation and Finance +474563,Taxation and Finance,Taxation and Finance +474561,Taxation and Finance,Taxation and Finance +474560,Taxation and Finance,Taxation and Finance +474557,Taxation and Finance,Taxation and Finance +474556,Taxation and Finance,Taxation and Finance +474555,Taxation and Finance,Taxation and Finance +474552,Taxation and Finance,Taxation and Finance +474551,Taxation and Finance,Taxation and Finance +474549,Taxation and Finance,Taxation and Finance +474547,Taxation and Finance,Taxation and Finance +474546,Taxation and Finance,Taxation and Finance +473598,Taxation and Finance,Taxation and Finance +473594,Taxation and Finance,Taxation and Finance +473590,Taxation and Finance,Taxation and Finance +473588,Taxation and Finance,Taxation and Finance +473575,Taxation and Finance,Taxation and Finance +473574,Taxation and Finance,Taxation and Finance +473572,Taxation and Finance,Taxation and Finance +473565,Taxation and Finance,Taxation and Finance +473488,Taxation and Finance,Taxation and Finance +473442,Taxation and Finance,Taxation and Finance +473438,Taxation and Finance,Taxation and Finance +473432,Taxation and Finance,Taxation and Finance +473410,Taxation and Finance,Taxation and Finance +473352,Taxation and Finance,Taxation and Finance +470037,Taxation and Finance,Taxation and Finance +468161,Taxation and Finance,Taxation and Finance +468160,Taxation and Finance,Taxation and Finance +468159,Taxation and Finance,Taxation and Finance +468158,Taxation and Finance,Taxation and Finance +468157,Taxation and Finance,Taxation and Finance +468156,Taxation and Finance,Taxation and Finance +468155,Taxation and Finance,Taxation and Finance +468154,Taxation and Finance,Taxation and Finance +468152,Taxation and Finance,Taxation and Finance +468150,Taxation and Finance,Taxation and Finance +468149,Taxation and Finance,Taxation and Finance +468147,Taxation and Finance,Taxation and Finance +468146,Taxation and Finance,Taxation and Finance +468145,Taxation and Finance,Taxation and Finance +465096,Taxation and Finance,Taxation and Finance +461561,Taxation and Finance,Taxation and Finance +456716,Taxation and Finance,Taxation and Finance +454269,Taxation and Finance,Taxation and Finance +454267,Taxation and Finance,Taxation and Finance +454266,Taxation and Finance,Taxation and Finance +454265,Taxation and Finance,Taxation and Finance +454264,Taxation and Finance,Taxation and Finance +454263,Taxation and Finance,Taxation and Finance +454261,Taxation and Finance,Taxation and Finance +454257,Taxation and Finance,Taxation and Finance +454255,Taxation and Finance,Taxation and Finance +454254,Taxation and Finance,Taxation and Finance +452047,Taxation and Finance,Taxation and Finance +452039,Taxation and Finance,Taxation and Finance +445008,Taxation and Finance,Taxation and Finance +441305,Taxation and Finance,Taxation and Finance +439184,Taxation and Finance,Taxation and Finance +438477,Taxation and Finance,Taxation and Finance +438472,Taxation and Finance,Taxation and Finance +438460,Taxation and Finance,Taxation and Finance +438452,Taxation and Finance,Taxation and Finance +434993,Taxation and Finance,Taxation and Finance +433374,Taxation and Finance,Taxation and Finance +430352,Taxation and Finance,Taxation and Finance +430349,Taxation and Finance,Taxation and Finance +430348,Taxation and Finance,Taxation and Finance +430346,Taxation and Finance,Taxation and Finance +427612,Taxation and Finance,Taxation and Finance +425154,Taxation and Finance,Taxation and Finance +425151,Taxation and Finance,Taxation and Finance +420961,Taxation and Finance,Taxation and Finance +420960,Taxation and Finance,Taxation and Finance +419235,Taxation and Finance,Taxation and Finance +414986,Taxation and Finance,Taxation and Finance +529356,Taxation and Finance,Taxation and Finance +529354,Taxation and Finance,Taxation and Finance +529353,Taxation and Finance,Taxation and Finance +529337,Taxation and Finance,Taxation and Finance +529332,Taxation and Finance,Taxation and Finance +529331,Taxation and Finance,Taxation and Finance +529330,Taxation and Finance,Taxation and Finance +529327,Taxation and Finance,Taxation and Finance +529324,Taxation and Finance,Taxation and Finance +529310,Taxation and Finance,Taxation and Finance +529304,Taxation and Finance,Taxation and Finance +529294,Taxation and Finance,Taxation and Finance +528332,Taxation and Finance,Taxation and Finance +526482,Taxation and Finance,Taxation and Finance +526481,Taxation and Finance,Taxation and Finance +526478,Taxation and Finance,Taxation and Finance +526475,Taxation and Finance,Taxation and Finance +526469,Taxation and Finance,Taxation and Finance +526467,Taxation and Finance,Taxation and Finance +526466,Taxation and Finance,Taxation and Finance +526463,Taxation and Finance,Taxation and Finance +526462,Taxation and Finance,Taxation and Finance +526460,Taxation and Finance,Taxation and Finance +526459,Taxation and Finance,Taxation and Finance +519754,Taxation and Finance,Taxation and Finance +519752,Taxation and Finance,Taxation and Finance +519739,Taxation and Finance,Taxation and Finance +517234,Taxation and Finance,Taxation and Finance +517221,Taxation and Finance,Taxation and Finance +517217,Taxation and Finance,Taxation and Finance +517214,Taxation and Finance,Taxation and Finance +515771,Taxation and Finance,Taxation and Finance +515769,Taxation and Finance,Taxation and Finance +515762,Taxation and Finance,Taxation and Finance +515761,Taxation and Finance,Taxation and Finance +515760,Taxation and Finance,Taxation and Finance +515758,Taxation and Finance,Taxation and Finance +514732,Taxation and Finance,Taxation and Finance +514322,Taxation and Finance,Taxation and Finance +514033,Taxation and Finance,Taxation and Finance +514032,Taxation and Finance,Taxation and Finance +514031,Taxation and Finance,Taxation and Finance +514030,Taxation and Finance,Taxation and Finance +514026,Taxation and Finance,Taxation and Finance +514024,Taxation and Finance,Taxation and Finance +514023,Taxation and Finance,Taxation and Finance +514022,Taxation and Finance,Taxation and Finance +512900,Taxation and Finance,Taxation and Finance +512896,Taxation and Finance,Taxation and Finance +512884,Taxation and Finance,Taxation and Finance +512883,Taxation and Finance,Taxation and Finance +512873,Taxation and Finance,Taxation and Finance +512866,Taxation and Finance,Taxation and Finance +512863,Taxation and Finance,Taxation and Finance +512855,Taxation and Finance,Taxation and Finance +512851,Taxation and Finance,Taxation and Finance +507823,Taxation and Finance,Taxation and Finance +504577,Taxation and Finance,Taxation and Finance +502395,Taxation and Finance,Taxation and Finance +502391,Taxation and Finance,Taxation and Finance +502148,Taxation and Finance,Taxation and Finance +501916,Taxation and Finance,Taxation and Finance +501913,Taxation and Finance,Taxation and Finance +501910,Taxation and Finance,Taxation and Finance +501867,Taxation and Finance,Taxation and Finance +501862,Taxation and Finance,Taxation and Finance +501858,Taxation and Finance,Taxation and Finance +501846,Taxation and Finance,Taxation and Finance +499242,Taxation and Finance,Taxation and Finance +499224,Taxation and Finance,Taxation and Finance +495936,Taxation and Finance,Taxation and Finance +495932,Taxation and Finance,Taxation and Finance +495910,Taxation and Finance,Taxation and Finance +492469,Taxation and Finance,Taxation and Finance +492468,Taxation and Finance,Taxation and Finance +492076,Taxation and Finance,Taxation and Finance +492075,Taxation and Finance,Taxation and Finance +491506,Taxation and Finance,Taxation and Finance +491505,Taxation and Finance,Taxation and Finance +491502,Taxation and Finance,Taxation and Finance +491490,Taxation and Finance,Taxation and Finance +491459,Taxation and Finance,Taxation and Finance +473410,Tourism,Tourism +473352,Tourism,Tourism +187784,Tourism,Tourism +187666,Tourism,Tourism +187665,Tourism,Tourism +187664,Tourism,Tourism +186804,Tourism,Tourism +186724,Tourism,Tourism +164465,Tourism,Tourism +160835,Tourism,Tourism +247571,Tourism,Tourism +244411,Tourism,Tourism +243810,Tourism,Tourism +242729,Tourism,Tourism +241649,Tourism,Tourism +238949,Tourism,Tourism +238451,Tourism,Tourism +238450,Tourism,Tourism +228730,Tourism,Tourism +225007,Tourism,Tourism +223401,Tourism,Tourism +223397,Tourism,Tourism +214427,Tourism,Tourism +214167,Tourism,Tourism +213188,Tourism,Tourism +211294,Tourism,Tourism +211293,Tourism,Tourism +208827,Tourism,Tourism +199646,Tourism,Tourism +199645,Tourism,Tourism +199643,Tourism,Tourism +199639,Tourism,Tourism +199636,Tourism,Tourism +192144,Tourism,Tourism +191098,Tourism,Tourism +191097,Tourism,Tourism +191096,Tourism,Tourism +191095,Tourism,Tourism +191094,Tourism,Tourism +191093,Tourism,Tourism +191092,Tourism,Tourism +191091,Tourism,Tourism +191090,Tourism,Tourism +191089,Tourism,Tourism +191088,Tourism,Tourism +191087,Tourism,Tourism +191086,Tourism,Tourism +191085,Tourism,Tourism +191084,Tourism,Tourism +380371,Tourism,Tourism +377794,Tourism,Tourism +375294,Tourism,Tourism +373412,Tourism,Tourism +370654,Tourism,Tourism +370653,Tourism,Tourism +368856,Tourism,Tourism +368855,Tourism,Tourism +368853,Tourism,Tourism +368851,Tourism,Tourism +365488,Tourism,Tourism +365487,Tourism,Tourism +365255,Tourism,Tourism +365254,Tourism,Tourism +355825,Tourism,Tourism +355823,Tourism,Tourism +345397,Tourism,Tourism +337262,Tourism,Tourism +335195,Tourism,Tourism +334634,Tourism,Tourism +328791,Tourism,Tourism +328790,Tourism,Tourism +326669,Tourism,Tourism +325975,Tourism,Tourism +325674,Tourism,Tourism +325610,Tourism,Tourism +325609,Tourism,Tourism +320849,Tourism,Tourism +317173,Tourism,Tourism +317172,Tourism,Tourism +309756,Tourism,Tourism +309526,Tourism,Tourism +307169,Tourism,Tourism +305009,Tourism,Tourism +304970,Tourism,Tourism +297810,Tourism,Tourism +297790,Tourism,Tourism +288592,Tourism,Tourism +288591,Tourism,Tourism +278109,Tourism,Tourism +277500,Tourism,Tourism +270914,Tourism,Tourism +473338,Tourism,Tourism +470037,Tourism,Tourism +470036,Tourism,Tourism +470035,Tourism,Tourism +470001,Tourism,Tourism +470000,Tourism,Tourism +469993,Tourism,Tourism +468160,Tourism,Tourism +468158,Tourism,Tourism +468157,Tourism,Tourism +468155,Tourism,Tourism +468154,Tourism,Tourism +468152,Tourism,Tourism +468150,Tourism,Tourism +468147,Tourism,Tourism +468146,Tourism,Tourism +468145,Tourism,Tourism +465096,Tourism,Tourism +454269,Tourism,Tourism +454267,Tourism,Tourism +454266,Tourism,Tourism +454264,Tourism,Tourism +454263,Tourism,Tourism +454257,Tourism,Tourism +454255,Tourism,Tourism +454254,Tourism,Tourism +452047,Tourism,Tourism +452039,Tourism,Tourism +441309,Tourism,Tourism +439184,Tourism,Tourism +438472,Tourism,Tourism +438452,Tourism,Tourism +438450,Tourism,Tourism +433374,Tourism,Tourism +433372,Tourism,Tourism +432195,Tourism,Tourism +430572,Tourism,Tourism +430363,Tourism,Tourism +430349,Tourism,Tourism +430346,Tourism,Tourism +427615,Tourism,Tourism +427613,Tourism,Tourism +427612,Tourism,Tourism +427611,Tourism,Tourism +425903,Tourism,Tourism +425154,Tourism,Tourism +423088,Tourism,Tourism +423087,Tourism,Tourism +420962,Tourism,Tourism +420961,Tourism,Tourism +420960,Tourism,Tourism +419249,Tourism,Tourism +419235,Tourism,Tourism +417405,Tourism,Tourism +417390,Tourism,Tourism +414989,Tourism,Tourism +414988,Tourism,Tourism +414985,Tourism,Tourism +412461,Tourism,Tourism +411029,Tourism,Tourism +411028,Tourism,Tourism +411027,Tourism,Tourism +411026,Tourism,Tourism +411025,Tourism,Tourism +411024,Tourism,Tourism +411023,Tourism,Tourism +411022,Tourism,Tourism +411021,Tourism,Tourism +411020,Tourism,Tourism +411013,Tourism,Tourism +408944,Tourism,Tourism +408937,Tourism,Tourism +408935,Tourism,Tourism +407470,Tourism,Tourism +407468,Tourism,Tourism +407467,Tourism,Tourism +406582,Tourism,Tourism +404940,Tourism,Tourism +404545,Tourism,Tourism +404341,Tourism,Tourism +404340,Tourism,Tourism +401957,Tourism,Tourism +401956,Tourism,Tourism +401955,Tourism,Tourism +401954,Tourism,Tourism +401953,Tourism,Tourism +401952,Tourism,Tourism +401951,Tourism,Tourism +401950,Tourism,Tourism +399614,Tourism,Tourism +399611,Tourism,Tourism +399608,Tourism,Tourism +399393,Tourism,Tourism +399388,Tourism,Tourism +397985,Tourism,Tourism +397983,Tourism,Tourism +397977,Tourism,Tourism +393216,Tourism,Tourism +392920,Tourism,Tourism +392919,Tourism,Tourism +392918,Tourism,Tourism +392917,Tourism,Tourism +543975,Tourism,Tourism +543973,Tourism,Tourism +543972,Tourism,Tourism +543970,Tourism,Tourism +543913,Tourism,Tourism +541633,Tourism,Tourism +541630,Tourism,Tourism +541625,Tourism,Tourism +540123,Tourism,Tourism +540122,Tourism,Tourism +540118,Tourism,Tourism +540114,Tourism,Tourism +537256,Tourism,Tourism +533250,Tourism,Tourism +533249,Tourism,Tourism +531756,Tourism,Tourism +531366,Tourism,Tourism +529352,Tourism,Tourism +529329,Tourism,Tourism +529278,Tourism,Tourism +526483,Tourism,Tourism +526453,Tourism,Tourism +522261,Tourism,Tourism +522255,Tourism,Tourism +514322,Tourism,Tourism +514033,Tourism,Tourism +514032,Tourism,Tourism +514031,Tourism,Tourism +514030,Tourism,Tourism +514026,Tourism,Tourism +514024,Tourism,Tourism +514023,Tourism,Tourism +514022,Tourism,Tourism +512900,Tourism,Tourism +512896,Tourism,Tourism +512884,Tourism,Tourism +512883,Tourism,Tourism +512873,Tourism,Tourism +512866,Tourism,Tourism +512863,Tourism,Tourism +512855,Tourism,Tourism +512851,Tourism,Tourism +510555,Tourism,Tourism +509712,Tourism,Tourism +509711,Tourism,Tourism +507830,Tourism,Tourism +507827,Tourism,Tourism +507826,Tourism,Tourism +507823,Tourism,Tourism +504577,Tourism,Tourism +504576,Tourism,Tourism +504575,Tourism,Tourism +504574,Tourism,Tourism +504573,Tourism,Tourism +504572,Tourism,Tourism +504566,Tourism,Tourism +502395,Tourism,Tourism +502391,Tourism,Tourism +502148,Tourism,Tourism +502143,Tourism,Tourism +501916,Tourism,Tourism +501913,Tourism,Tourism +501910,Tourism,Tourism +501902,Tourism,Tourism +501867,Tourism,Tourism +501864,Tourism,Tourism +501862,Tourism,Tourism +501858,Tourism,Tourism +501848,Tourism,Tourism +501846,Tourism,Tourism +499448,Tourism,Tourism +499242,Tourism,Tourism +499237,Tourism,Tourism +499232,Tourism,Tourism +499224,Tourism,Tourism +499220,Tourism,Tourism +499217,Tourism,Tourism +499211,Tourism,Tourism +499191,Tourism,Tourism +499185,Tourism,Tourism +499149,Tourism,Tourism +495936,Tourism,Tourism +495935,Tourism,Tourism +495933,Tourism,Tourism +495932,Tourism,Tourism +495931,Tourism,Tourism +495910,Tourism,Tourism +492469,Tourism,Tourism +492468,Tourism,Tourism +492463,Tourism,Tourism +492076,Tourism,Tourism +492075,Tourism,Tourism +492074,Tourism,Tourism +491506,Tourism,Tourism +491505,Tourism,Tourism +491502,Tourism,Tourism +491497,Tourism,Tourism +491490,Tourism,Tourism +491459,Tourism,Tourism +491455,Tourism,Tourism +491447,Tourism,Tourism +491436,Tourism,Tourism +491427,Tourism,Tourism +491420,Tourism,Tourism +486544,Tourism,Tourism +486529,Tourism,Tourism +486528,Tourism,Tourism +486526,Tourism,Tourism +486524,Tourism,Tourism +486516,Tourism,Tourism +486514,Tourism,Tourism +486513,Tourism,Tourism +486511,Tourism,Tourism +486455,Tourism,Tourism +486209,Tourism,Tourism +484292,Tourism,Tourism +484291,Tourism,Tourism +484246,Tourism,Tourism +484243,Tourism,Tourism +484240,Tourism,Tourism +484237,Tourism,Tourism +482577,Tourism,Tourism +482575,Tourism,Tourism +482573,Tourism,Tourism +482572,Tourism,Tourism +482571,Tourism,Tourism +482570,Tourism,Tourism +482569,Tourism,Tourism +482559,Tourism,Tourism +482557,Tourism,Tourism +480072,Tourism,Tourism +480068,Tourism,Tourism +480064,Tourism,Tourism +480062,Tourism,Tourism +480059,Tourism,Tourism +480053,Tourism,Tourism +480048,Tourism,Tourism +480047,Tourism,Tourism +480036,Tourism,Tourism +480034,Tourism,Tourism +480027,Tourism,Tourism +477738,Tourism,Tourism +477736,Tourism,Tourism +477735,Tourism,Tourism +477733,Tourism,Tourism +477731,Tourism,Tourism +477729,Tourism,Tourism +477728,Tourism,Tourism +477718,Tourism,Tourism +474565,Tourism,Tourism +474563,Tourism,Tourism +474561,Tourism,Tourism +474560,Tourism,Tourism +474557,Tourism,Tourism +474556,Tourism,Tourism +474555,Tourism,Tourism +474552,Tourism,Tourism +474549,Tourism,Tourism +474546,Tourism,Tourism +473598,Tourism,Tourism +473594,Tourism,Tourism +473590,Tourism,Tourism +473588,Tourism,Tourism +473575,Tourism,Tourism +473574,Tourism,Tourism +473572,Tourism,Tourism +473565,Tourism,Tourism +473554,Tourism,Tourism +473488,Tourism,Tourism +473442,Tourism,Tourism +473438,Tourism,Tourism +473432,Tourism,Tourism +157937,Infrastructure,Infrastructure +157936,Infrastructure,Infrastructure +164885,Infrastructure,Infrastructure +160229,Infrastructure,Infrastructure +160228,Infrastructure,Infrastructure +157946,Infrastructure,Infrastructure +157944,Infrastructure,Infrastructure +157943,Infrastructure,Infrastructure +157940,Infrastructure,Infrastructure +227518,International Trade,International Trade +349405,International Trade,International Trade +265277,International Trade,International Trade +265276,International Trade,International Trade +230610,Taxation and Finance,Taxation and Finance +349405,Taxation and Finance,Taxation and Finance +265277,Taxation and Finance,Taxation and Finance +437612,Climate,Climat +437610,Climate,Climat +160663,Climate,Climat +160662,Climate,Climat +160088,Climate,Climat +272154,Climate,Climat +272153,Climate,Climat +249492,Climate,Climat +249489,Climate,Climat +245452,Climate,Climat +245450,Climate,Climat +245441,Climate,Climat +245434,Climate,Climat +195850,Climate,Climat +195849,Climate,Climat +195848,Climate,Climat +195847,Climate,Climat +187106,Climate,Climat +187105,Climate,Climat +165993,Climate,Climat +165988,Climate,Climat +165987,Climate,Climat +430602,Climate,Climat +427790,Climate,Climat +425116,Climate,Climat +425115,Climate,Climat +425114,Climate,Climat +425112,Climate,Climat +425110,Climate,Climat +423150,Climate,Climat +423149,Climate,Climat +421019,Climate,Climat +421016,Climate,Climat +421014,Climate,Climat +421013,Climate,Climat +418191,Climate,Climat +415426,Climate,Climat +415425,Climate,Climat +412851,Climate,Climat +412842,Climate,Climat +409014,Climate,Climat +409002,Climate,Climat +407869,Climate,Climat +407868,Climate,Climat +404552,Climate,Climat +404551,Climate,Climat +404550,Climate,Climat +402205,Climate,Climat +399889,Climate,Climat +399888,Climate,Climat +399880,Climate,Climat +395392,Climate,Climat +395390,Climate,Climat +395389,Climate,Climat +395382,Climate,Climat +395377,Climate,Climat +393475,Climate,Climat +392225,Climate,Climat +389623,Climate,Climat +389530,Climate,Climat +389529,Climate,Climat +388930,Climate,Climat +386914,Climate,Climat +386906,Climate,Climat +384251,Climate,Climat +384250,Climate,Climat +384249,Climate,Climat +384246,Climate,Climat +382066,Climate,Climat +382064,Climate,Climat +542775,Climate,Climat +542758,Climate,Climat +542757,Climate,Climat +542755,Climate,Climat +542753,Climate,Climat +542751,Climate,Climat +540967,Climate,Climat +540966,Climate,Climat +540861,Climate,Climat +509891,Climate,Climat +509885,Climate,Climat +497522,Climate,Climat +497520,Climate,Climat +494538,Climate,Climat +494535,Climate,Climat +490698,Climate,Climat +480007,Climate,Climat +478712,Climate,Climat +474350,Climate,Climat +474347,Climate,Climat +474345,Climate,Climat +465983,Climate,Climat +465981,Climate,Climat +465980,Climate,Climat +441000,Climate,Climat +440998,Climate,Climat +440994,Climate,Climat +437616,Climate,Climat +437614,Climate,Climat +536930,Energy,Énergie +527612,Energy,Énergie +226351,Energy,Énergie +169239,Energy,Énergie +169237,Energy,Énergie +160093,Energy,Énergie +160091,Energy,Énergie +382064,Energy,Énergie +272154,Energy,Énergie +272153,Energy,Énergie +509885,Energy,Énergie +492561,Energy,Énergie +486863,Energy,Énergie +480007,Energy,Énergie +474344,Energy,Énergie +448822,Energy,Énergie +425112,Energy,Énergie +425110,Energy,Énergie +423150,Energy,Énergie +423149,Energy,Énergie +412851,Energy,Énergie +412842,Energy,Énergie +399883,Energy,Énergie +389534,Energy,Énergie +388930,Energy,Énergie +386906,Energy,Énergie +384251,Energy,Énergie +384249,Energy,Énergie +540967,Energy,Énergie +540862,Energy,Énergie +540861,Energy,Énergie +406185,Environment,Environnement +404549,Environment,Environnement +169238,Environment,Environnement +160088,Environment,Environnement +226329,Environment,Environnement +195850,Environment,Environnement +195849,Environment,Environnement +169248,Environment,Environnement +169247,Environment,Environnement +169246,Environment,Environnement +169245,Environment,Environnement +169244,Environment,Environnement +169240,Environment,Environnement +169239,Environment,Environnement +388930,Environment,Environnement +386906,Environment,Environnement +382064,Environment,Environnement +542775,Environment,Environnement +542758,Environment,Environnement +542757,Environment,Environnement +542755,Environment,Environnement +542753,Environment,Environnement +542751,Environment,Environnement +540967,Environment,Environnement +540966,Environment,Environnement +540862,Environment,Environnement +540861,Environment,Environnement +536953,Environment,Environnement +536949,Environment,Environnement +536944,Environment,Environnement +536930,Environment,Environnement +528140,Environment,Environnement +527612,Environment,Environnement +527611,Environment,Environnement +524622,Environment,Environnement +524620,Environment,Environnement +524619,Environment,Environnement +524618,Environment,Environnement +524617,Environment,Environnement +521871,Environment,Environnement +521869,Environment,Environnement +516722,Environment,Environnement +516721,Environment,Environnement +516720,Environment,Environnement +512210,Environment,Environnement +512023,Environment,Environnement +512022,Environment,Environnement +509891,Environment,Environnement +509885,Environment,Environnement +509876,Environment,Environnement +504129,Environment,Environnement +500110,Environment,Environnement +497522,Environment,Environnement +497520,Environment,Environnement +494538,Environment,Environnement +494535,Environment,Environnement +492561,Environment,Environnement +491058,Environment,Environnement +490704,Environment,Environnement +490653,Environment,Environnement +486673,Environment,Environnement +486672,Environment,Environnement +486630,Environment,Environnement +481975,Environment,Environnement +480007,Environment,Environnement +478712,Environment,Environnement +477922,Environment,Environnement +476745,Environment,Environnement +474342,Environment,Environnement +470545,Environment,Environnement +465983,Environment,Environnement +465981,Environment,Environnement +465980,Environment,Environnement +465977,Environment,Environnement +460983,Environment,Environnement +460982,Environment,Environnement +452577,Environment,Environnement +452565,Environment,Environnement +452559,Environment,Environnement +448825,Environment,Environnement +448824,Environment,Environnement +448823,Environment,Environnement +448822,Environment,Environnement +448821,Environment,Environnement +444555,Environment,Environnement +444554,Environment,Environnement +444552,Environment,Environnement +444551,Environment,Environnement +444550,Environment,Environnement +425114,Environment,Environnement +423151,Environment,Environnement +423148,Environment,Environnement +421017,Environment,Environnement +421016,Environment,Environnement +421014,Environment,Environnement +448823,Health,Santé +444549,Health,Santé +406185,Health,Santé +395384,Health,Santé +204408,Consumer Issues,Consumer Issues +537173,Agriculture,Agriculture +470576,Agriculture,Agriculture +276394,Agriculture,Agriculture +350631,Agriculture,Agriculture +296696,Agriculture,Agriculture +423625,Agriculture,Agriculture +423554,Agriculture,Agriculture +423540,Agriculture,Agriculture +422290,Agriculture,Agriculture +373046,Government Procurement,Government Procurement +369137,Government Procurement,Government Procurement +373048,Government Procurement,Government Procurement +468471,Immigration,Immigration +468461,Immigration,Immigration +276394,Immigration,Immigration +265310,Immigration,Immigration +263422,Immigration,Immigration +263421,Immigration,Immigration +258370,Immigration,Immigration +249836,Immigration,Immigration +228731,Immigration,Immigration +228729,Immigration,Immigration +222572,Immigration,Immigration +445602,Immigration,Immigration +435841,Immigration,Immigration +435833,Immigration,Immigration +434046,Immigration,Immigration +434045,Immigration,Immigration +433179,Immigration,Immigration +433178,Immigration,Immigration +424442,Immigration,Immigration +424439,Immigration,Immigration +422263,Immigration,Immigration +422258,Immigration,Immigration +419830,Immigration,Immigration +418345,Immigration,Immigration +409138,Immigration,Immigration +407909,Immigration,Immigration +407907,Immigration,Immigration +407906,Immigration,Immigration +407905,Immigration,Immigration +407903,Immigration,Immigration +407902,Immigration,Immigration +407901,Immigration,Immigration +407900,Immigration,Immigration +407899,Immigration,Immigration +407898,Immigration,Immigration +407896,Immigration,Immigration +407895,Immigration,Immigration +406904,Immigration,Immigration +406903,Immigration,Immigration +406902,Immigration,Immigration +406900,Immigration,Immigration +405935,Immigration,Immigration +404363,Immigration,Immigration +403894,Immigration,Immigration +403889,Immigration,Immigration +403882,Immigration,Immigration +400928,Immigration,Immigration +396849,Immigration,Immigration +396820,Immigration,Immigration +396815,Immigration,Immigration +388210,Immigration,Immigration +383854,Immigration,Immigration +383852,Immigration,Immigration +379895,Immigration,Immigration +374790,Immigration,Immigration +374610,Immigration,Immigration +359710,Immigration,Immigration +327139,Immigration,Immigration +324973,Immigration,Immigration +324970,Immigration,Immigration +543445,Immigration,Immigration +543412,Immigration,Immigration +539577,Immigration,Immigration +521758,Immigration,Immigration +519661,Immigration,Immigration +516878,Immigration,Immigration +514733,Immigration,Immigration +514122,Immigration,Immigration +514120,Immigration,Immigration +513336,Immigration,Immigration +513334,Immigration,Immigration +513333,Immigration,Immigration +513332,Immigration,Immigration +511206,Immigration,Immigration +508769,Immigration,Immigration +508765,Immigration,Immigration +499251,Immigration,Immigration +499248,Immigration,Immigration +499243,Immigration,Immigration +499229,Immigration,Immigration +495942,Immigration,Immigration +495884,Immigration,Immigration +155066,Infrastructure,Infrastructure +166061,Agriculture,Agriculture +166061,Consumer Issues,Consumer Issues +166061,International Trade,International Trade +148416,Taxation and Finance,Taxation and Finance +164121,Taxation and Finance,Taxation and Finance +403233,Climate,Climate +465334,Research and Development,Research and Development (R&D) +352480,Energy,Energy +352480,Industry,Industry +385623,Research and Development,Research and Development (R&D) +354029,International Development,Développement international +243215,Budget,Budget +209829,Employment and Training,Employment and Training +196860,International Development,International Development +196859,Research and Development,Research and Development (R&D) +152108,Health,Health +378541,Budget,Budget +341156,Climate,Climate +417588,Consumer Issues,Consumer Issues +390132,Economic Development,Economic Development +452478,Employment and Training,Employment and Training +341156,Environment,Environment +403086,International Trade,International Trade +417590,Labour,Labour +452489,Security,Security +403183,Small Business,Small Business +494895,Taxation and Finance,Taxation and Finance +403187,Tourism,Tourism +517683,Transportation,Transportation +406668,Consumer Issues,Consumer Issues +406668,Financial Institutions,Financial Institutions +384365,Government Procurement,Government Procurement +370517,Taxation and Finance,Taxation and Finance +184824,Consumer Issues,Consumer Issues +271350,Financial Institutions,Financial Institutions +151464,Government Procurement,Government Procurement +176725,Taxation and Finance,Taxation and Finance +199986,Industry,Industry +240069,Fisheries,Fisheries +450693,Pensions,Pensions +259793,Agriculture,Agriculture +345877,Internal Trade,Commerce intérieur +370279,International Trade,Commerce international +148756,Health,Health +148756,Taxation and Finance,Taxation and Finance +391808,Energy,Energy +342367,Industry,Industry +342366,International Relations,International Relations +342366,International Trade,International Trade +342370,Research and Development,Research and Development (R&D) +474588,Agriculture,Agriculture +433517,Climate,Climate +159878,Justice and Law Enforcement,Justice and Law Enforcement +165855,International Trade,International Trade +166185,Budget,Budget +255690,Consumer Issues,Consumer Issues +255690,Taxation and Finance,Taxation and Finance +199657,Agriculture,Agriculture +425387,International Trade,International Trade +463835,International Development,International Development +395572,Defence,Defence +274692,International Trade,International Trade +155780,Defence,Defence +160554,Industry,Industry +153598,Energy,Energy +154300,Industry,Industry +520675,Housing,Housing +409739,Energy,Energy +378422,Government Procurement,Government Procurement +407666,Regional Development,Regional Development +152177,Infrastructure,Infrastructure +149117,Research and Development,Research and Development (R&D) +161742,International Trade,International Trade +191645,Energy,Energy +149157,Transportation,Transportation +170891,Defence,Défense +161235,Economic Development,Développement économique +160504,Industry,Industrie +155789,Regional Development,Développement régional +167075,Pensions,Pensions +336038,Financial Institutions,Financial Institutions +249233,Financial Institutions,Financial Institutions +151460,Energy,Energy +151459,Environment,Environment +151460,Industry,Industry +151460,Infrastructure,Infrastructure +151460,International Trade,International Trade +151460,Regional Development,Regional Development +159594,Taxation and Finance,Taxation and Finance +149967,Energy,Energy +149967,Environment,Environment +149967,Industry,Industry +149967,Regional Development,Regional Development +151441,Energy,Energy +151441,Environment,Environment +151441,Industry,Industry +151441,Infrastructure,Infrastructure +151441,International Trade,International Trade +151441,Regional Development,Regional Development +149417,Research and Development,Research and Development (R&D) +149417,Research and Development,Research and Development (R&D) +149418,Research and Development,Research and Development (R&D) +271230,Energy,Energy +271230,Environment,Environment +542940,Transportation,Transportation +165760,Defence,Defence +165760,Government Procurement,Government Procurement +165760,Industry,Industry +161791,Industry,Industry +149737,Budget,Budget +289291,Research and Development,Research and Development (R&D) +152580,Consumer Issues,Consumer Issues +152580,International Trade,International Trade +152580,Small Business,Small Business +159936,Transportation,Transportation +153246,Environment,Environment +483177,International Development,International Development +304080,Economic Development,Economic Development +454198,Employment and Training,Emploi et formation +276496,Government Procurement,Government Procurement +265749,Government Procurement,Government Procurement +148876,Pensions,Pensions +148876,Security,Security +156214,Industry,Industry +464446,Financial Institutions,Financial Institutions +163937,Budget,Budget +165744,Economic Development,Economic Development +185313,Education,Education +498187,Infrastructure,Infrastructure +152779,Agriculture,Agriculture +152779,Taxation and Finance,Taxation and Finance +150184,Economic Development,Economic Development +150199,Justice and Law Enforcement,Justice and Law Enforcement +239109,Industry,Industry +150217,Regional Development,Regional Development +150217,Research and Development,Research and Development (R&D) +164031,Research and Development,Research and Development (R&D) +505024,Budget,Budget +505024,Constitutional Issues,Constitutional Issues +505024,Consumer Issues,Consumer Issues +505024,Environment,Environment +505024,Financial Institutions,Financial Institutions +505024,Health,Health +421486,Immigration,Immigration +505024,Industry,Industry +505024,Intellectual Property,Intellectual Property +505024,International Development,International Development +505024,International Relations,International Relations +349175,International Trade,International Trade +490681,Justice and Law Enforcement,Justice and Law Enforcement +505024,Labour,Labour +505024,Pensions,Pensions +429842,Privacy and Access to Information,Privacy and Access to Information +505024,Security,Security +406013,Taxation and Finance,Taxation and Finance +505024,Transportation,Transportation +200888,Energy,Energy +200888,Research and Development,Research and Development (R&D) +363511,Forestry,Forestry +516320,Health,Health +454809,Health,Health +179004,Climate,Climate +375967,Economic Development,Economic Development +502196,Research and Development,Research and Development (R&D) +159325,Mining,Mining +150393,Taxation and Finance,Taxation and Finance +150412,Justice and Law Enforcement,Justice and Law Enforcement +154927,Taxation and Finance,Taxation and Finance +150428,Taxation and Finance,Taxation and Finance +167076,Environment,Environment +150431,Financial Institutions,Institutions financières +328238,Economic Development,Economic Development +312732,Fisheries,Fisheries +356539,Agriculture,Agriculture +191686,Industry,Industry +329699,Transportation,Transportation +306509,Financial Institutions,Financial Institutions +401761,Energy,Energy +150502,Taxation and Finance,Taxation and Finance +150517,Health,Health +150577,Security,Security +524972,Budget,Budget +154006,Industry,Industry +154006,International Trade,International Trade +154006,Regional Development,Regional Development +154006,Transportation,Transportation +150658,International Relations,International Relations +151240,Industry,Industry +151240,International Trade,International Trade +151240,Regional Development,Regional Development +151240,Transportation,Transportation +317349,Industry,Industry +317349,International Trade,International Trade +156637,Regional Development,Regional Development +156637,Transportation,Transportation +150738,Employment and Training,Employment and Training +150739,Economic Development,Economic Development +151890,Agriculture,Agriculture +150742,Climate,Climate +150744,Environment,Environment +399912,Internal Trade,Internal Trade +458468,Taxation and Finance,Taxation and Finance +154908,Environment,Environment +163408,Fisheries,Fisheries +163408,Industry,Industry +160835,Employment and Training,Employment and Training +529321,Immigration,Immigration +491447,Taxation and Finance,Taxation and Finance +473425,Tourism,Tourism +160835,Transportation,Transportation +164886,Infrastructure,Infrastructure +157939,Infrastructure,Infrastructure +230610,International Trade,International Trade +265276,Taxation and Finance,Taxation and Finance +150917,Research and Development,Research and Development (R&D) +437613,Climate,Climat +536949,Energy,Énergie +421013,Environment,Environnement +452556,Health,Santé +217889,Consumer Issues,Consumer Issues +192165,Environment,Environment +192165,Health,Health +192165,Industry,Industry +537178,Agriculture,Agriculture +373047,Government Procurement,Government Procurement +476099,Immigration,Immigration +418270,International Development,International Development +160614,International Development,International Development +528882,Research and Development,Research and Development (R&D) +151857,Financial Institutions,Financial Institutions +151857,Industry,Industry +151857,Transportation,Transportation +151252,Taxation and Finance,Taxation and Finance +271230,Transportation,Transportation +526235,Budget,Budget +533667,Climate,Climate +403834,Education,Education +526214,Environment,Environment +530947,Health,Health +401017,Infrastructure,Infrastructure +333376,International Development,International Development +409848,Research and Development,Research and Development (R&D) +264438,Taxation and Finance,Taxation and Finance +154690,Research and Development,Research and Development (R&D) +200496,Energy,Energy +171625,Environment,Environment +227655,Fisheries,Fisheries +495881,Immigration,Immigration +495879,Immigration,Immigration +493554,Immigration,Immigration +493553,Immigration,Immigration +488349,Immigration,Immigration +485041,Immigration,Immigration +485039,Immigration,Immigration +485034,Immigration,Immigration +417083,International Development,International Development +531603,International Development,International Development +159562,International Development,International Development +324972,International Development,International Development +321754,International Development,International Development +319749,International Development,International Development +296698,International Development,International Development +287013,International Development,International Development +287011,International Development,International Development +272270,International Development,International Development +258233,International Development,International Development +188257,International Development,International Development +405937,International Development,International Development +382695,International Development,International Development +376705,International Development,International Development +376694,International Development,International Development +376661,International Development,International Development +502429,International Development,International Development +499096,International Development,International Development +459774,International Development,International Development +439126,International Development,International Development +433175,International Development,International Development +418272,International Development,International Development +516508,Research and Development,Research and Development (R&D) +516507,Research and Development,Research and Development (R&D) +186124,Research and Development,Research and Development (R&D) +301989,Research and Development,Research and Development (R&D) +358453,Research and Development,Research and Development (R&D) +352987,Research and Development,Research and Development (R&D) +352986,Research and Development,Research and Development (R&D) +347792,Research and Development,Research and Development (R&D) +347791,Research and Development,Research and Development (R&D) +347790,Research and Development,Research and Development (R&D) +347789,Research and Development,Research and Development (R&D) +347788,Research and Development,Research and Development (R&D) +325364,Research and Development,Research and Development (R&D) +319929,Research and Development,Research and Development (R&D) +411277,Research and Development,Research and Development (R&D) +411276,Research and Development,Research and Development (R&D) +396907,Research and Development,Research and Development (R&D) +386606,Research and Development,Research and Development (R&D) +386605,Research and Development,Research and Development (R&D) +386603,Research and Development,Research and Development (R&D) +386601,Research and Development,Research and Development (R&D) +385223,Research and Development,Research and Development (R&D) +385222,Research and Development,Research and Development (R&D) +383251,Research and Development,Research and Development (R&D) +383250,Research and Development,Research and Development (R&D) +383249,Research and Development,Research and Development (R&D) +383247,Research and Development,Research and Development (R&D) +376275,Research and Development,Research and Development (R&D) +376270,Research and Development,Research and Development (R&D) +358455,Research and Development,Research and Development (R&D) +358454,Research and Development,Research and Development (R&D) +403318,Taxation and Finance,Taxation and Finance +399574,Taxation and Finance,Taxation and Finance +214607,Transportation,Transportation +526221,Budget,Budget +514151,Budget,Budget +207674,Budget,Budget +207673,Budget,Budget +207671,Budget,Budget +406577,Budget,Budget +379757,Budget,Budget +356270,Budget,Budget +356267,Budget,Budget +356265,Budget,Budget +356260,Budget,Budget +356255,Budget,Budget +356244,Budget,Budget +356240,Budget,Budget +356237,Budget,Budget +354091,Budget,Budget +344028,Budget,Budget +344023,Budget,Budget +331471,Budget,Budget +508490,Budget,Budget +502793,Budget,Budget +502792,Budget,Budget +499021,Budget,Budget +496169,Budget,Budget +462800,Budget,Budget +456867,Budget,Budget +451437,Budget,Budget +451436,Budget,Budget +451432,Budget,Budget +451430,Budget,Budget +451426,Budget,Budget +447712,Budget,Budget +447710,Budget,Budget +430525,Budget,Budget +423984,Budget,Budget +423981,Budget,Budget +422312,Budget,Budget +422308,Budget,Budget +422306,Budget,Budget +422305,Budget,Budget +422303,Budget,Budget +420289,Budget,Budget +420288,Budget,Budget +420287,Budget,Budget +420286,Budget,Budget +420285,Budget,Budget +420281,Budget,Budget +420280,Budget,Budget +413182,Budget,Budget +413179,Budget,Budget +413173,Budget,Budget +413154,Budget,Budget +409845,Budget,Budget +518955,Climate,Climate +518951,Climate,Climate +456867,Climate,Climate +533668,Climate,Climate +398584,Education,Education +537712,Education,Education +207671,Education,Education +347318,Education,Education +347317,Education,Education +347313,Education,Education +347312,Education,Education +347310,Education,Education +347306,Education,Education +341904,Education,Education +329452,Education,Education +329451,Education,Education +319214,Education,Education +319193,Education,Education +315612,Education,Education +313451,Education,Education +313449,Education,Education +273643,Education,Education +273631,Education,Education +273628,Education,Education +273623,Education,Education +273620,Education,Education +264438,Education,Education +264437,Education,Education +259539,Education,Education +259537,Education,Education +259535,Education,Education +388375,Education,Education +381180,Education,Education +379757,Education,Education +374548,Education,Education +356274,Education,Education +356270,Education,Education +356267,Education,Education +356265,Education,Education +356244,Education,Education +356240,Education,Education +356237,Education,Education +530951,Education,Education +530948,Education,Education +530947,Education,Education +530946,Education,Education +528976,Education,Education +528975,Education,Education +528973,Education,Education +528965,Education,Education +518955,Education,Education +518951,Education,Education +517961,Education,Education +459364,Education,Education +459363,Education,Education +458679,Education,Education +451437,Education,Education +451436,Education,Education +451432,Education,Education +451430,Education,Education +451426,Education,Education +449301,Education,Education +518955,Environment,Environment +514151,Environment,Environment +171958,Environment,Environment +388357,Environment,Environment +383766,Environment,Environment +374551,Environment,Environment +354087,Environment,Environment +430529,Environment,Environment +413136,Environment,Environment +413113,Environment,Environment +413083,Environment,Environment +413075,Environment,Environment +413073,Environment,Environment +458679,Environment,Environment +451437,Environment,Environment +451436,Environment,Environment +451432,Environment,Environment +451430,Environment,Environment +451426,Environment,Environment +442357,Environment,Environment +533667,Environment,Environment +530946,Health,Health +451564,Health,Health +409843,Health,Health +537830,Health,Health +533669,Health,Health +401015,Infrastructure,Infrastructure +400918,Infrastructure,Infrastructure +388375,Infrastructure,Infrastructure +388357,Infrastructure,Infrastructure +381180,Infrastructure,Infrastructure +379757,Infrastructure,Infrastructure +374548,Infrastructure,Infrastructure +356270,Infrastructure,Infrastructure +356267,Infrastructure,Infrastructure +356265,Infrastructure,Infrastructure +356244,Infrastructure,Infrastructure +356240,Infrastructure,Infrastructure +356237,Infrastructure,Infrastructure +344028,Infrastructure,Infrastructure +344023,Infrastructure,Infrastructure +344019,Infrastructure,Infrastructure +341904,Infrastructure,Infrastructure +331471,Infrastructure,Infrastructure +331469,Infrastructure,Infrastructure +537712,Infrastructure,Infrastructure +533670,Infrastructure,Infrastructure +533669,Infrastructure,Infrastructure +533668,Infrastructure,Infrastructure +533656,Infrastructure,Infrastructure +533655,Infrastructure,Infrastructure +528973,Infrastructure,Infrastructure +526214,Infrastructure,Infrastructure +526211,Infrastructure,Infrastructure +523201,Infrastructure,Infrastructure +523199,Infrastructure,Infrastructure +519850,Infrastructure,Infrastructure +517961,Infrastructure,Infrastructure +514151,Infrastructure,Infrastructure +493422,Infrastructure,Infrastructure +491198,Infrastructure,Infrastructure +491194,Infrastructure,Infrastructure +491190,Infrastructure,Infrastructure +461680,Infrastructure,Infrastructure +461679,Infrastructure,Infrastructure +459465,Infrastructure,Infrastructure +459464,Infrastructure,Infrastructure +459364,Infrastructure,Infrastructure +458678,Infrastructure,Infrastructure +444776,Infrastructure,Infrastructure +442357,Infrastructure,Infrastructure +422306,Infrastructure,Infrastructure +401019,Infrastructure,Infrastructure +366735,International Development,International Development +413176,International Development,International Development +351409,International Development,International Development +409845,Research and Development,Research and Development (R&D) +409840,Research and Development,Research and Development (R&D) +245651,Research and Development,Research and Development (R&D) +241125,Research and Development,Research and Development (R&D) +241122,Research and Development,Research and Development (R&D) +236998,Research and Development,Research and Development (R&D) +236996,Research and Development,Research and Development (R&D) +234394,Research and Development,Research and Development (R&D) +234393,Research and Development,Research and Development (R&D) +234392,Research and Development,Research and Development (R&D) +234391,Research and Development,Research and Development (R&D) +234390,Research and Development,Research and Development (R&D) +234389,Research and Development,Research and Development (R&D) +212504,Research and Development,Research and Development (R&D) +212501,Research and Development,Research and Development (R&D) +212499,Research and Development,Research and Development (R&D) +207671,Research and Development,Research and Development (R&D) +207669,Research and Development,Research and Development (R&D) +194962,Research and Development,Research and Development (R&D) +194961,Research and Development,Research and Development (R&D) +194959,Research and Development,Research and Development (R&D) +194956,Research and Development,Research and Development (R&D) +185909,Research and Development,Research and Development (R&D) +185908,Research and Development,Research and Development (R&D) +185906,Research and Development,Research and Development (R&D) +174827,Research and Development,Research and Development (R&D) +174826,Research and Development,Research and Development (R&D) +173558,Research and Development,Research and Development (R&D) +173557,Research and Development,Research and Development (R&D) +171959,Research and Development,Research and Development (R&D) +170911,Research and Development,Research and Development (R&D) +170909,Research and Development,Research and Development (R&D) +170904,Research and Development,Research and Development (R&D) +170903,Research and Development,Research and Development (R&D) +168858,Research and Development,Research and Development (R&D) +168850,Research and Development,Research and Development (R&D) +168845,Research and Development,Research and Development (R&D) +168834,Research and Development,Research and Development (R&D) +401020,Research and Development,Research and Development (R&D) +401017,Research and Development,Research and Development (R&D) +401015,Research and Development,Research and Development (R&D) +400918,Research and Development,Research and Development (R&D) +400912,Research and Development,Research and Development (R&D) +400908,Research and Development,Research and Development (R&D) +400906,Research and Development,Research and Development (R&D) +398582,Research and Development,Research and Development (R&D) +398580,Research and Development,Research and Development (R&D) +383766,Research and Development,Research and Development (R&D) +379753,Research and Development,Research and Development (R&D) +379750,Research and Development,Research and Development (R&D) +379748,Research and Development,Research and Development (R&D) +379744,Research and Development,Research and Development (R&D) +379741,Research and Development,Research and Development (R&D) +379736,Research and Development,Research and Development (R&D) +372531,Research and Development,Research and Development (R&D) +366740,Research and Development,Research and Development (R&D) +363461,Research and Development,Research and Development (R&D) +356270,Research and Development,Research and Development (R&D) +356267,Research and Development,Research and Development (R&D) +356265,Research and Development,Research and Development (R&D) +356260,Research and Development,Research and Development (R&D) +356255,Research and Development,Research and Development (R&D) +356244,Research and Development,Research and Development (R&D) +356240,Research and Development,Research and Development (R&D) +356237,Research and Development,Research and Development (R&D) +354091,Research and Development,Research and Development (R&D) +354086,Research and Development,Research and Development (R&D) +351411,Research and Development,Research and Development (R&D) +351408,Research and Development,Research and Development (R&D) +351407,Research and Development,Research and Development (R&D) +344031,Research and Development,Research and Development (R&D) +344028,Research and Development,Research and Development (R&D) +344023,Research and Development,Research and Development (R&D) +344019,Research and Development,Research and Development (R&D) +341904,Research and Development,Research and Development (R&D) +335985,Research and Development,Research and Development (R&D) +335981,Research and Development,Research and Development (R&D) +331471,Research and Development,Research and Development (R&D) +329449,Research and Development,Research and Development (R&D) +327554,Research and Development,Research and Development (R&D) +327551,Research and Development,Research and Development (R&D) +327545,Research and Development,Research and Development (R&D) +315612,Research and Development,Research and Development (R&D) +315611,Research and Development,Research and Development (R&D) +315610,Research and Development,Research and Development (R&D) +315609,Research and Development,Research and Development (R&D) +315606,Research and Development,Research and Development (R&D) +313451,Research and Development,Research and Development (R&D) +313449,Research and Development,Research and Development (R&D) +273643,Research and Development,Research and Development (R&D) +273642,Research and Development,Research and Development (R&D) +273641,Research and Development,Research and Development (R&D) +273631,Research and Development,Research and Development (R&D) +273628,Research and Development,Research and Development (R&D) +273623,Research and Development,Research and Development (R&D) +273620,Research and Development,Research and Development (R&D) +273617,Research and Development,Research and Development (R&D) +264434,Research and Development,Research and Development (R&D) +264430,Research and Development,Research and Development (R&D) +264428,Research and Development,Research and Development (R&D) +264426,Research and Development,Research and Development (R&D) +264425,Research and Development,Research and Development (R&D) +259539,Research and Development,Research and Development (R&D) +259537,Research and Development,Research and Development (R&D) +259535,Research and Development,Research and Development (R&D) +245652,Research and Development,Research and Development (R&D) +541876,Research and Development,Research and Development (R&D) +541874,Research and Development,Research and Development (R&D) +539885,Research and Development,Research and Development (R&D) +537830,Research and Development,Research and Development (R&D) +537712,Research and Development,Research and Development (R&D) +533670,Research and Development,Research and Development (R&D) +533668,Research and Development,Research and Development (R&D) +533667,Research and Development,Research and Development (R&D) +533657,Research and Development,Research and Development (R&D) +528979,Research and Development,Research and Development (R&D) +528976,Research and Development,Research and Development (R&D) +528975,Research and Development,Research and Development (R&D) +528973,Research and Development,Research and Development (R&D) +528965,Research and Development,Research and Development (R&D) +523202,Research and Development,Research and Development (R&D) +519854,Research and Development,Research and Development (R&D) +518955,Research and Development,Research and Development (R&D) +518951,Research and Development,Research and Development (R&D) +518123,Research and Development,Research and Development (R&D) +518120,Research and Development,Research and Development (R&D) +517965,Research and Development,Research and Development (R&D) +517963,Research and Development,Research and Development (R&D) +517961,Research and Development,Research and Development (R&D) +515946,Research and Development,Research and Development (R&D) +515945,Research and Development,Research and Development (R&D) +515944,Research and Development,Research and Development (R&D) +514151,Research and Development,Research and Development (R&D) +509278,Research and Development,Research and Development (R&D) +508499,Research and Development,Research and Development (R&D) +508490,Research and Development,Research and Development (R&D) +499021,Research and Development,Research and Development (R&D) +493419,Research and Development,Research and Development (R&D) +491179,Research and Development,Research and Development (R&D) +484773,Research and Development,Research and Development (R&D) +484770,Research and Development,Research and Development (R&D) +484769,Research and Development,Research and Development (R&D) +464779,Research and Development,Research and Development (R&D) +462800,Research and Development,Research and Development (R&D) +461679,Research and Development,Research and Development (R&D) +461677,Research and Development,Research and Development (R&D) +461673,Research and Development,Research and Development (R&D) +459364,Research and Development,Research and Development (R&D) +459363,Research and Development,Research and Development (R&D) +458679,Research and Development,Research and Development (R&D) +458678,Research and Development,Research and Development (R&D) +456868,Research and Development,Research and Development (R&D) +456867,Research and Development,Research and Development (R&D) +451438,Research and Development,Research and Development (R&D) +447709,Research and Development,Research and Development (R&D) +442442,Research and Development,Research and Development (R&D) +442435,Research and Development,Research and Development (R&D) +442425,Research and Development,Research and Development (R&D) +442357,Research and Development,Research and Development (R&D) +438999,Research and Development,Research and Development (R&D) +438995,Research and Development,Research and Development (R&D) +438993,Research and Development,Research and Development (R&D) +438990,Research and Development,Research and Development (R&D) +430529,Research and Development,Research and Development (R&D) +430525,Research and Development,Research and Development (R&D) +430523,Research and Development,Research and Development (R&D) +423984,Research and Development,Research and Development (R&D) +423981,Research and Development,Research and Development (R&D) +420289,Research and Development,Research and Development (R&D) +420288,Research and Development,Research and Development (R&D) +420287,Research and Development,Research and Development (R&D) +420286,Research and Development,Research and Development (R&D) +420285,Research and Development,Research and Development (R&D) +420281,Research and Development,Research and Development (R&D) +420280,Research and Development,Research and Development (R&D) +413207,Research and Development,Research and Development (R&D) +413173,Research and Development,Research and Development (R&D) +413154,Research and Development,Research and Development (R&D) +413150,Research and Development,Research and Development (R&D) +413146,Research and Development,Research and Development (R&D) +413143,Research and Development,Research and Development (R&D) +413141,Research and Development,Research and Development (R&D) +413138,Research and Development,Research and Development (R&D) +264437,Taxation and Finance,Taxation and Finance +207671,Taxation and Finance,Taxation and Finance +156967,Taxation and Finance,Taxation and Finance +156960,Taxation and Finance,Taxation and Finance +315607,Taxation and Finance,Taxation and Finance +153523,Research and Development,Research and Development (R&D) +200492,Energy,Energy +193884,Energy,Energy +193864,Energy,Energy +193844,Energy,Energy +193825,Energy,Energy +190119,Energy,Energy +190117,Energy,Energy +190116,Energy,Energy +190115,Energy,Energy +190114,Energy,Energy +190112,Energy,Energy +190108,Energy,Energy +190106,Energy,Energy +190105,Energy,Energy +171627,Energy,Energy +171626,Energy,Energy +157087,Energy,Energy +227660,Energy,Energy +227657,Energy,Energy +227656,Energy,Energy +227655,Energy,Energy +227653,Energy,Energy +227651,Energy,Energy +203407,Energy,Energy +200502,Energy,Energy +227661,Environment,Environment +227660,Environment,Environment +157087,Environment,Environment +227657,Environment,Environment +227656,Environment,Environment +227655,Environment,Environment +227653,Environment,Environment +227651,Environment,Environment +203407,Environment,Environment +200502,Environment,Environment +200496,Environment,Environment +200493,Environment,Environment +200492,Environment,Environment +193884,Environment,Environment +193864,Environment,Environment +193844,Environment,Environment +193825,Environment,Environment +190119,Environment,Environment +190117,Environment,Environment +190116,Environment,Environment +190115,Environment,Environment +190114,Environment,Environment +190112,Environment,Environment +190108,Environment,Environment +190106,Environment,Environment +190105,Environment,Environment +171627,Environment,Environment +171626,Environment,Environment +227653,Fisheries,Fisheries +227651,Fisheries,Fisheries +157087,Fisheries,Fisheries +203407,Fisheries,Fisheries +200496,Fisheries,Fisheries +200493,Fisheries,Fisheries +193884,Fisheries,Fisheries +193864,Fisheries,Fisheries +193825,Fisheries,Fisheries +190119,Fisheries,Fisheries +190117,Fisheries,Fisheries +190116,Fisheries,Fisheries +190114,Fisheries,Fisheries +190112,Fisheries,Fisheries +190108,Fisheries,Fisheries +190106,Fisheries,Fisheries +190105,Fisheries,Fisheries +171626,Fisheries,Fisheries +171625,Fisheries,Fisheries +227661,Fisheries,Fisheries +227660,Fisheries,Fisheries +227657,Fisheries,Fisheries +190105,Industry,Industry +171626,Industry,Industry +157087,Industry,Industry +227655,Industry,Industry +193884,Industry,Industry +190119,Industry,Industry +190115,Industry,Industry +190108,Climate,Climate +190106,Climate,Climate +171627,Climate,Climate +157087,Climate,Climate +227656,Climate,Climate +227655,Climate,Climate +203407,Climate,Climate +200496,Climate,Climate +200492,Climate,Climate +193884,Climate,Climate +193844,Climate,Climate +190117,Climate,Climate +190116,Climate,Climate +190115,Climate,Climate +163901,Transportation,Transportation +396638,Infrastructure,Infrastructure +460711,Infrastructure,Infrastructure +166019,Infrastructure,Infrastructure +166015,Infrastructure,Infrastructure +160510,Infrastructure,Infrastructure +437849,Infrastructure,Infrastructure +420146,Infrastructure,Infrastructure +160510,International Relations,International Relations +267729,International Relations,International Relations +157988,International Relations,International Relations +152900,International Relations,International Relations +152881,International Relations,International Relations +152880,International Relations,International Relations +152879,International Relations,International Relations +152878,International Relations,International Relations +152657,International Relations,International Relations +175615,International Relations,International Relations +172084,International Relations,International Relations +170766,International Relations,International Relations +166019,International Relations,International Relations +156665,Security,Security +156664,Security,Security +177004,Security,Security +174524,Security,Security +167897,Security,Security +161425,Security,Security +161424,Security,Security +161423,Security,Security +159532,Security,Security +159529,Security,Security +156670,Security,Security +156669,Security,Security +151902,Research and Development,Research and Development (R&D) +151900,Research and Development,Research and Development (R&D) +296734,Consumer Issues,Questions touchant les consommateurs +273457,Consumer Issues,Questions touchant les consommateurs +168135,Consumer Issues,Questions touchant les consommateurs +273454,Consumer Issues,Questions touchant les consommateurs +273453,Consumer Issues,Questions touchant les consommateurs +273450,Consumer Issues,Questions touchant les consommateurs +269590,Consumer Issues,Questions touchant les consommateurs +230414,Consumer Issues,Questions touchant les consommateurs +223276,Consumer Issues,Questions touchant les consommateurs +223272,Consumer Issues,Questions touchant les consommateurs +212305,Consumer Issues,Questions touchant les consommateurs +357957,Consumer Issues,Questions touchant les consommateurs +335940,Consumer Issues,Questions touchant les consommateurs +151927,Government Procurement,Government Procurement +151927,Taxation and Finance,Taxation and Finance +151927,Transportation,Transportation +431718,Research and Development,Research and Development (R&D) +428276,Research and Development,Research and Development (R&D) +159784,Research and Development,Research and Development (R&D) +159745,Research and Development,Research and Development (R&D) +185932,Research and Development,Research and Development (R&D) +180460,Research and Development,Research and Development (R&D) +180459,Research and Development,Research and Development (R&D) +175295,Research and Development,Research and Development (R&D) +175294,Research and Development,Research and Development (R&D) +175293,Research and Development,Research and Development (R&D) +163909,Research and Development,Research and Development (R&D) +159803,Research and Development,Research and Development (R&D) +249277,Research and Development,Research and Development (R&D) +249276,Research and Development,Research and Development (R&D) +249273,Research and Development,Research and Development (R&D) +229651,Research and Development,Research and Development (R&D) +229650,Research and Development,Research and Development (R&D) +227244,Research and Development,Research and Development (R&D) +227232,Research and Development,Research and Development (R&D) +227226,Research and Development,Research and Development (R&D) +217786,Research and Development,Research and Development (R&D) +207331,Research and Development,Research and Development (R&D) +204007,Research and Development,Research and Development (R&D) +194791,Research and Development,Research and Development (R&D) +369478,Research and Development,Research and Development (R&D) +369476,Research and Development,Research and Development (R&D) +369473,Research and Development,Research and Development (R&D) +369472,Research and Development,Research and Development (R&D) +365190,Research and Development,Research and Development (R&D) +365188,Research and Development,Research and Development (R&D) +365186,Research and Development,Research and Development (R&D) +365184,Research and Development,Research and Development (R&D) +365179,Research and Development,Research and Development (R&D) +363706,Research and Development,Research and Development (R&D) +363705,Research and Development,Research and Development (R&D) +363704,Research and Development,Research and Development (R&D) +363703,Research and Development,Research and Development (R&D) +362430,Research and Development,Research and Development (R&D) +361185,Research and Development,Research and Development (R&D) +361184,Research and Development,Research and Development (R&D) +359024,Research and Development,Research and Development (R&D) +359023,Research and Development,Research and Development (R&D) +359022,Research and Development,Research and Development (R&D) +357912,Research and Development,Research and Development (R&D) +357908,Research and Development,Research and Development (R&D) +356344,Research and Development,Research and Development (R&D) +354500,Research and Development,Research and Development (R&D) +354300,Research and Development,Research and Development (R&D) +351781,Research and Development,Research and Development (R&D) +351780,Research and Development,Research and Development (R&D) +351778,Research and Development,Research and Development (R&D) +351777,Research and Development,Research and Development (R&D) +351776,Research and Development,Research and Development (R&D) +351775,Research and Development,Research and Development (R&D) +351773,Research and Development,Research and Development (R&D) +351772,Research and Development,Research and Development (R&D) +351770,Research and Development,Research and Development (R&D) +351767,Research and Development,Research and Development (R&D) +351765,Research and Development,Research and Development (R&D) +351762,Research and Development,Research and Development (R&D) +348692,Research and Development,Research and Development (R&D) +348691,Research and Development,Research and Development (R&D) +348689,Research and Development,Research and Development (R&D) +347429,Research and Development,Research and Development (R&D) +347428,Research and Development,Research and Development (R&D) +347427,Research and Development,Research and Development (R&D) +347425,Research and Development,Research and Development (R&D) +342228,Research and Development,Research and Development (R&D) +342227,Research and Development,Research and Development (R&D) +342226,Research and Development,Research and Development (R&D) +342224,Research and Development,Research and Development (R&D) +342223,Research and Development,Research and Development (R&D) +342219,Research and Development,Research and Development (R&D) +342218,Research and Development,Research and Development (R&D) +341610,Research and Development,Research and Development (R&D) +341604,Research and Development,Research and Development (R&D) +341590,Research and Development,Research and Development (R&D) +322129,Research and Development,Research and Development (R&D) +318413,Research and Development,Research and Development (R&D) +318412,Research and Development,Research and Development (R&D) +318411,Research and Development,Research and Development (R&D) +318410,Research and Development,Research and Development (R&D) +318409,Research and Development,Research and Development (R&D) +316006,Research and Development,Research and Development (R&D) +316004,Research and Development,Research and Development (R&D) +316002,Research and Development,Research and Development (R&D) +428274,Research and Development,Research and Development (R&D) +425039,Research and Development,Research and Development (R&D) +425038,Research and Development,Research and Development (R&D) +425037,Research and Development,Research and Development (R&D) +423662,Research and Development,Research and Development (R&D) +423661,Research and Development,Research and Development (R&D) +423660,Research and Development,Research and Development (R&D) +422615,Research and Development,Research and Development (R&D) +422614,Research and Development,Research and Development (R&D) +422613,Research and Development,Research and Development (R&D) +422612,Research and Development,Research and Development (R&D) +422611,Research and Development,Research and Development (R&D) +422610,Research and Development,Research and Development (R&D) +422608,Research and Development,Research and Development (R&D) +422112,Research and Development,Research and Development (R&D) +422107,Research and Development,Research and Development (R&D) +422105,Research and Development,Research and Development (R&D) +419898,Research and Development,Research and Development (R&D) +419896,Research and Development,Research and Development (R&D) +416732,Research and Development,Research and Development (R&D) +416731,Research and Development,Research and Development (R&D) +416725,Research and Development,Research and Development (R&D) +416719,Research and Development,Research and Development (R&D) +416717,Research and Development,Research and Development (R&D) +416709,Research and Development,Research and Development (R&D) +411209,Research and Development,Research and Development (R&D) +411208,Research and Development,Research and Development (R&D) +405240,Research and Development,Research and Development (R&D) +404038,Research and Development,Research and Development (R&D) +404037,Research and Development,Research and Development (R&D) +404036,Research and Development,Research and Development (R&D) +404035,Research and Development,Research and Development (R&D) +404034,Research and Development,Research and Development (R&D) +404033,Research and Development,Research and Development (R&D) +404032,Research and Development,Research and Development (R&D) +404031,Research and Development,Research and Development (R&D) +400749,Research and Development,Research and Development (R&D) +400748,Research and Development,Research and Development (R&D) +399174,Research and Development,Research and Development (R&D) +399170,Research and Development,Research and Development (R&D) +399169,Research and Development,Research and Development (R&D) +399168,Research and Development,Research and Development (R&D) +399167,Research and Development,Research and Development (R&D) +399166,Research and Development,Research and Development (R&D) +399165,Research and Development,Research and Development (R&D) +399163,Research and Development,Research and Development (R&D) +395832,Research and Development,Research and Development (R&D) +395830,Research and Development,Research and Development (R&D) +395828,Research and Development,Research and Development (R&D) +395825,Research and Development,Research and Development (R&D) +395821,Research and Development,Research and Development (R&D) +387647,Research and Development,Research and Development (R&D) +387645,Research and Development,Research and Development (R&D) +387643,Research and Development,Research and Development (R&D) +387638,Research and Development,Research and Development (R&D) +387637,Research and Development,Research and Development (R&D) +387634,Research and Development,Research and Development (R&D) +387630,Research and Development,Research and Development (R&D) +387629,Research and Development,Research and Development (R&D) +387627,Research and Development,Research and Development (R&D) +386541,Research and Development,Research and Development (R&D) +386540,Research and Development,Research and Development (R&D) +386539,Research and Development,Research and Development (R&D) +386537,Research and Development,Research and Development (R&D) +386536,Research and Development,Research and Development (R&D) +385518,Research and Development,Research and Development (R&D) +385516,Research and Development,Research and Development (R&D) +385513,Research and Development,Research and Development (R&D) +385507,Research and Development,Research and Development (R&D) +385506,Research and Development,Research and Development (R&D) +381878,Research and Development,Research and Development (R&D) +381877,Research and Development,Research and Development (R&D) +381721,Research and Development,Research and Development (R&D) +381720,Research and Development,Research and Development (R&D) +381719,Research and Development,Research and Development (R&D) +381718,Research and Development,Research and Development (R&D) +378919,Research and Development,Research and Development (R&D) +378918,Research and Development,Research and Development (R&D) +378916,Research and Development,Research and Development (R&D) +378914,Research and Development,Research and Development (R&D) +378910,Research and Development,Research and Development (R&D) +378908,Research and Development,Research and Development (R&D) +377140,Research and Development,Research and Development (R&D) +377139,Research and Development,Research and Development (R&D) +377138,Research and Development,Research and Development (R&D) +377137,Research and Development,Research and Development (R&D) +377136,Research and Development,Research and Development (R&D) +377135,Research and Development,Research and Development (R&D) +377134,Research and Development,Research and Development (R&D) +377133,Research and Development,Research and Development (R&D) +374255,Research and Development,Research and Development (R&D) +374254,Research and Development,Research and Development (R&D) +374253,Research and Development,Research and Development (R&D) +374252,Research and Development,Research and Development (R&D) +374251,Research and Development,Research and Development (R&D) +374249,Research and Development,Research and Development (R&D) +374246,Research and Development,Research and Development (R&D) +369481,Research and Development,Research and Development (R&D) +369480,Research and Development,Research and Development (R&D) +543950,Research and Development,Research and Development (R&D) +543941,Research and Development,Research and Development (R&D) +543940,Research and Development,Research and Development (R&D) +541426,Research and Development,Research and Development (R&D) +541425,Research and Development,Research and Development (R&D) +541204,Research and Development,Research and Development (R&D) +539582,Research and Development,Research and Development (R&D) +539566,Research and Development,Research and Development (R&D) +539553,Research and Development,Research and Development (R&D) +539551,Research and Development,Research and Development (R&D) +539549,Research and Development,Research and Development (R&D) +538770,Research and Development,Research and Development (R&D) +537604,Research and Development,Research and Development (R&D) +537358,Research and Development,Research and Development (R&D) +537307,Research and Development,Research and Development (R&D) +537294,Research and Development,Research and Development (R&D) +537292,Research and Development,Research and Development (R&D) +537291,Research and Development,Research and Development (R&D) +536715,Research and Development,Research and Development (R&D) +536513,Research and Development,Research and Development (R&D) +536341,Research and Development,Research and Development (R&D) +536339,Research and Development,Research and Development (R&D) +535062,Research and Development,Research and Development (R&D) +534084,Research and Development,Research and Development (R&D) +533965,Research and Development,Research and Development (R&D) +533812,Research and Development,Research and Development (R&D) +533804,Research and Development,Research and Development (R&D) +533799,Research and Development,Research and Development (R&D) +533780,Research and Development,Research and Development (R&D) +530975,Research and Development,Research and Development (R&D) +530918,Research and Development,Research and Development (R&D) +530821,Research and Development,Research and Development (R&D) +530819,Research and Development,Research and Development (R&D) +530657,Research and Development,Research and Development (R&D) +530655,Research and Development,Research and Development (R&D) +528603,Research and Development,Research and Development (R&D) +528567,Research and Development,Research and Development (R&D) +528381,Research and Development,Research and Development (R&D) +528380,Research and Development,Research and Development (R&D) +528379,Research and Development,Research and Development (R&D) +527636,Research and Development,Research and Development (R&D) +527635,Research and Development,Research and Development (R&D) +527633,Research and Development,Research and Development (R&D) +527632,Research and Development,Research and Development (R&D) +527631,Research and Development,Research and Development (R&D) +524983,Research and Development,Research and Development (R&D) +524962,Research and Development,Research and Development (R&D) +524960,Research and Development,Research and Development (R&D) +524956,Research and Development,Research and Development (R&D) +524954,Research and Development,Research and Development (R&D) +524561,Research and Development,Research and Development (R&D) +524559,Research and Development,Research and Development (R&D) +524558,Research and Development,Research and Development (R&D) +523355,Research and Development,Research and Development (R&D) +523354,Research and Development,Research and Development (R&D) +522935,Research and Development,Research and Development (R&D) +522921,Research and Development,Research and Development (R&D) +522917,Research and Development,Research and Development (R&D) +522835,Research and Development,Research and Development (R&D) +521813,Research and Development,Research and Development (R&D) +521559,Research and Development,Research and Development (R&D) +521555,Research and Development,Research and Development (R&D) +521509,Research and Development,Research and Development (R&D) +521505,Research and Development,Research and Development (R&D) +520662,Research and Development,Research and Development (R&D) +519857,Research and Development,Research and Development (R&D) +519848,Research and Development,Research and Development (R&D) +519499,Research and Development,Research and Development (R&D) +519489,Research and Development,Research and Development (R&D) +519051,Research and Development,Research and Development (R&D) +518746,Research and Development,Research and Development (R&D) +518059,Research and Development,Research and Development (R&D) +518056,Research and Development,Research and Development (R&D) +518055,Research and Development,Research and Development (R&D) +518054,Research and Development,Research and Development (R&D) +517891,Research and Development,Research and Development (R&D) +515630,Research and Development,Research and Development (R&D) +510151,Research and Development,Research and Development (R&D) +510149,Research and Development,Research and Development (R&D) +510148,Research and Development,Research and Development (R&D) +509151,Research and Development,Research and Development (R&D) +507931,Research and Development,Research and Development (R&D) +507373,Research and Development,Research and Development (R&D) +504568,Research and Development,Research and Development (R&D) +504565,Research and Development,Research and Development (R&D) +504511,Research and Development,Research and Development (R&D) +498046,Research and Development,Research and Development (R&D) +493499,Research and Development,Research and Development (R&D) +493497,Research and Development,Research and Development (R&D) +491896,Research and Development,Research and Development (R&D) +491891,Research and Development,Research and Development (R&D) +491887,Research and Development,Research and Development (R&D) +491886,Research and Development,Research and Development (R&D) +491885,Research and Development,Research and Development (R&D) +491883,Research and Development,Research and Development (R&D) +491877,Research and Development,Research and Development (R&D) +484920,Research and Development,Research and Development (R&D) +480343,Research and Development,Research and Development (R&D) +480342,Research and Development,Research and Development (R&D) +480341,Research and Development,Research and Development (R&D) +477768,Research and Development,Research and Development (R&D) +469308,Research and Development,Research and Development (R&D) +469307,Research and Development,Research and Development (R&D) +469281,Research and Development,Research and Development (R&D) +467256,Research and Development,Research and Development (R&D) +467255,Research and Development,Research and Development (R&D) +467254,Research and Development,Research and Development (R&D) +467253,Research and Development,Research and Development (R&D) +464614,Research and Development,Research and Development (R&D) +464612,Research and Development,Research and Development (R&D) +464611,Research and Development,Research and Development (R&D) +464608,Research and Development,Research and Development (R&D) +461303,Research and Development,Research and Development (R&D) +461301,Research and Development,Research and Development (R&D) +461299,Research and Development,Research and Development (R&D) +460597,Research and Development,Research and Development (R&D) +460596,Research and Development,Research and Development (R&D) +460024,Research and Development,Research and Development (R&D) +460023,Research and Development,Research and Development (R&D) +458531,Research and Development,Research and Development (R&D) +457222,Research and Development,Research and Development (R&D) +457220,Research and Development,Research and Development (R&D) +455419,Research and Development,Research and Development (R&D) +455416,Research and Development,Research and Development (R&D) +455415,Research and Development,Research and Development (R&D) +455413,Research and Development,Research and Development (R&D) +452001,Research and Development,Research and Development (R&D) +451995,Research and Development,Research and Development (R&D) +451993,Research and Development,Research and Development (R&D) +451988,Research and Development,Research and Development (R&D) +451985,Research and Development,Research and Development (R&D) +451983,Research and Development,Research and Development (R&D) +451979,Research and Development,Research and Development (R&D) +451973,Research and Development,Research and Development (R&D) +450107,Research and Development,Research and Development (R&D) +449496,Research and Development,Research and Development (R&D) +449492,Research and Development,Research and Development (R&D) +449479,Research and Development,Research and Development (R&D) +447675,Research and Development,Research and Development (R&D) +447674,Research and Development,Research and Development (R&D) +447049,Research and Development,Research and Development (R&D) +447048,Research and Development,Research and Development (R&D) +445019,Research and Development,Research and Development (R&D) +445015,Research and Development,Research and Development (R&D) +445012,Research and Development,Research and Development (R&D) +445011,Research and Development,Research and Development (R&D) +443289,Research and Development,Research and Development (R&D) +438081,Research and Development,Research and Development (R&D) +437387,Research and Development,Research and Development (R&D) +437145,Research and Development,Research and Development (R&D) +436123,Research and Development,Research and Development (R&D) +434641,Research and Development,Research and Development (R&D) +434640,Research and Development,Research and Development (R&D) +434639,Research and Development,Research and Development (R&D) +433469,Research and Development,Research and Development (R&D) +433467,Research and Development,Research and Development (R&D) +431752,Research and Development,Research and Development (R&D) +431751,Research and Development,Research and Development (R&D) +472609,Employment and Training,Employment and Training +469722,Employment and Training,Employment and Training +152037,Employment and Training,Employment and Training +512430,Employment and Training,Employment and Training +512135,Employment and Training,Employment and Training +506840,Employment and Training,Employment and Training +503575,Employment and Training,Employment and Training +500431,Employment and Training,Employment and Training +497155,Employment and Training,Employment and Training +494758,Employment and Training,Employment and Training +492413,Employment and Training,Employment and Training +489583,Employment and Training,Employment and Training +489579,Employment and Training,Employment and Training +489098,Employment and Training,Employment and Training +489095,Employment and Training,Employment and Training +489093,Employment and Training,Employment and Training +486089,Employment and Training,Employment and Training +483413,Employment and Training,Employment and Training +476795,Employment and Training,Employment and Training +311428,Taxation and Finance,Taxation and Finance +308429,Taxation and Finance,Taxation and Finance +268689,Taxation and Finance,Taxation and Finance +417928,Taxation and Finance,Taxation and Finance +152182,Taxation and Finance,Taxation and Finance +217250,Taxation and Finance,Taxation and Finance +211873,Taxation and Finance,Taxation and Finance +185704,Taxation and Finance,Taxation and Finance +292249,Taxation and Finance,Taxation and Finance +268716,Taxation and Finance,Taxation and Finance +268715,Taxation and Finance,Taxation and Finance +268712,Taxation and Finance,Taxation and Finance +410415,Security,Security +387167,Security,Security +152221,Security,Security +152218,Security,Security +175628,Security,Security +170422,Security,Security +170421,Security,Security +170420,Security,Security +170419,Security,Security +170418,Security,Security +170417,Security,Security +170416,Security,Security +170415,Security,Security +170414,Security,Security +170413,Security,Security +170409,Security,Security +170408,Security,Security +170386,Security,Security +170382,Security,Security +170373,Security,Security +170355,Security,Security +170354,Security,Security +153540,Security,Security +318793,Security,Security +305299,Security,Security +305292,Security,Security +288949,Security,Security +230409,Security,Security +223546,Security,Security +209787,Security,Security +207504,Security,Security +490382,Security,Security +490380,Security,Security +486369,Security,Security +449107,Security,Security +502277,Economic Development,Economic Development +502196,Economic Development,Economic Development +398915,Economic Development,Economic Development +397365,Economic Development,Economic Development +397364,Economic Development,Economic Development +387680,Economic Development,Economic Development +464843,Economic Development,Economic Development +440798,Economic Development,Economic Development +437359,Economic Development,Economic Development +433741,Economic Development,Economic Development +430808,Economic Development,Economic Development +421311,Economic Development,Economic Development +419281,Economic Development,Economic Development +417074,Economic Development,Economic Development +417072,Economic Development,Economic Development +411255,Economic Development,Economic Development +406781,Economic Development,Economic Development +505073,Economic Development,Economic Development +487174,Economic Development,Economic Development +484149,Economic Development,Economic Development +152315,Economic Development,Economic Development +426166,Economic Development,Economic Development +423873,Economic Development,Economic Development +423868,Economic Development,Economic Development +421564,Economic Development,Economic Development +421558,Economic Development,Economic Development +291430,Economic Development,Economic Development +261617,Economic Development,Economic Development +254311,Economic Development,Economic Development +244559,Economic Development,Economic Development +244521,Economic Development,Economic Development +226498,Economic Development,Economic Development +217596,Economic Development,Economic Development +210212,Economic Development,Economic Development +210211,Economic Development,Economic Development +189828,Economic Development,Economic Development +189826,Economic Development,Economic Development +484019,Economic Development,Economic Development +481772,Economic Development,Economic Development +481767,Economic Development,Economic Development +481765,Economic Development,Economic Development +481746,Economic Development,Economic Development +481743,Economic Development,Economic Development +479759,Economic Development,Economic Development +479755,Economic Development,Economic Development +479754,Economic Development,Economic Development +479753,Economic Development,Economic Development +479752,Economic Development,Economic Development +479751,Economic Development,Economic Development +477392,Economic Development,Economic Development +477377,Economic Development,Economic Development +477358,Economic Development,Economic Development +477353,Economic Development,Economic Development +477350,Economic Development,Economic Development +477345,Economic Development,Economic Development +477342,Economic Development,Economic Development +477339,Economic Development,Economic Development +477338,Economic Development,Economic Development +477121,Economic Development,Economic Development +477116,Economic Development,Economic Development +476742,Economic Development,Economic Development +476741,Economic Development,Economic Development +476740,Economic Development,Economic Development +476739,Economic Development,Economic Development +476738,Economic Development,Economic Development +476737,Economic Development,Economic Development +476736,Economic Development,Economic Development +476735,Economic Development,Economic Development +476734,Economic Development,Economic Development +476733,Economic Development,Economic Development +476732,Economic Development,Economic Development +476731,Economic Development,Economic Development +476730,Economic Development,Economic Development +476729,Economic Development,Economic Development +476728,Economic Development,Economic Development +476727,Economic Development,Economic Development +476726,Economic Development,Economic Development +476725,Economic Development,Economic Development +476724,Economic Development,Economic Development +476723,Economic Development,Economic Development +476722,Economic Development,Economic Development +476721,Economic Development,Economic Development +476720,Economic Development,Economic Development +476719,Economic Development,Economic Development +476718,Economic Development,Economic Development +476715,Economic Development,Economic Development +476714,Economic Development,Economic Development +476713,Economic Development,Economic Development +476712,Economic Development,Economic Development +476711,Economic Development,Economic Development +476710,Economic Development,Economic Development +476709,Economic Development,Economic Development +476708,Economic Development,Economic Development +476707,Economic Development,Economic Development +476706,Economic Development,Economic Development +476705,Economic Development,Economic Development +476704,Economic Development,Economic Development +476703,Economic Development,Economic Development +476702,Economic Development,Economic Development +476701,Economic Development,Economic Development +476700,Economic Development,Economic Development +476699,Economic Development,Economic Development +476698,Economic Development,Economic Development +476697,Economic Development,Economic Development +476696,Economic Development,Economic Development +476689,Economic Development,Economic Development +475315,Economic Development,Economic Development +475274,Economic Development,Economic Development +475273,Economic Development,Economic Development +475272,Economic Development,Economic Development +475271,Economic Development,Economic Development +475270,Economic Development,Economic Development +475268,Economic Development,Economic Development +472692,Economic Development,Economic Development +472675,Economic Development,Economic Development +472672,Economic Development,Economic Development +472670,Economic Development,Economic Development +472669,Economic Development,Economic Development +472668,Economic Development,Economic Development +472667,Economic Development,Economic Development +470112,Economic Development,Economic Development +470100,Economic Development,Economic Development +467598,Economic Development,Economic Development +467588,Economic Development,Economic Development +465381,Economic Development,Economic Development +461857,Economic Development,Economic Development +461852,Economic Development,Economic Development +459514,Economic Development,Economic Development +459511,Economic Development,Economic Development +458800,Economic Development,Economic Development +458797,Economic Development,Economic Development +458795,Economic Development,Economic Development +457092,Economic Development,Economic Development +457078,Economic Development,Economic Development +449202,Economic Development,Economic Development +449201,Economic Development,Economic Development +442334,Economic Development,Economic Development +442265,Economic Development,Economic Development +442246,Economic Development,Economic Development +439493,Economic Development,Economic Development +435314,Economic Development,Economic Development +435313,Economic Development,Economic Development +433744,Economic Development,Economic Development +433743,Economic Development,Economic Development +432423,Economic Development,Economic Development +543840,Economic Development,Economic Development +541532,Economic Development,Economic Development +541530,Economic Development,Economic Development +541356,Economic Development,Economic Development +538594,Economic Development,Economic Development +538592,Economic Development,Economic Development +538588,Economic Development,Economic Development +538586,Economic Development,Economic Development +534483,Economic Development,Economic Development +534369,Economic Development,Economic Development +534367,Economic Development,Economic Development +531810,Economic Development,Economic Development +531341,Economic Development,Economic Development +531337,Economic Development,Economic Development +531335,Economic Development,Economic Development +529142,Economic Development,Economic Development +528008,Economic Development,Economic Development +526024,Economic Development,Economic Development +526018,Economic Development,Economic Development +526017,Economic Development,Economic Development +526016,Economic Development,Economic Development +526013,Economic Development,Economic Development +525906,Economic Development,Economic Development +525905,Economic Development,Economic Development +525904,Economic Development,Economic Development +525903,Economic Development,Economic Development +522149,Economic Development,Economic Development +522148,Economic Development,Economic Development +522147,Economic Development,Economic Development +521630,Economic Development,Economic Development +519967,Economic Development,Economic Development +519965,Economic Development,Economic Development +519957,Economic Development,Economic Development +518456,Economic Development,Economic Development +518455,Economic Development,Economic Development +517802,Economic Development,Economic Development +517799,Economic Development,Economic Development +517798,Economic Development,Economic Development +517797,Economic Development,Economic Development +517062,Economic Development,Economic Development +517060,Economic Development,Economic Development +517057,Economic Development,Economic Development +517056,Economic Development,Economic Development +517055,Economic Development,Economic Development +517052,Economic Development,Economic Development +517051,Economic Development,Economic Development +517050,Economic Development,Economic Development +517048,Economic Development,Economic Development +515751,Economic Development,Economic Development +515749,Economic Development,Economic Development +515747,Economic Development,Economic Development +515567,Economic Development,Economic Development +515566,Economic Development,Economic Development +515565,Economic Development,Economic Development +515356,Economic Development,Economic Development +514509,Economic Development,Economic Development +513700,Economic Development,Economic Development +512951,Economic Development,Economic Development +512950,Economic Development,Economic Development +511612,Economic Development,Economic Development +509921,Economic Development,Economic Development +509806,Economic Development,Economic Development +509805,Economic Development,Economic Development +507591,Economic Development,Economic Development +507590,Economic Development,Economic Development +504696,Economic Development,Economic Development +504456,Economic Development,Economic Development +504454,Economic Development,Economic Development +504449,Economic Development,Economic Development +501635,Economic Development,Economic Development +501634,Economic Development,Economic Development +501550,Economic Development,Economic Development +501548,Economic Development,Economic Development +500553,Economic Development,Economic Development +500552,Economic Development,Economic Development +498569,Economic Development,Economic Development +498559,Economic Development,Economic Development +498557,Economic Development,Economic Development +498556,Economic Development,Economic Development +498555,Economic Development,Economic Development +498552,Economic Development,Economic Development +498549,Economic Development,Economic Development +498548,Economic Development,Economic Development +498547,Economic Development,Economic Development +498546,Economic Development,Economic Development +498544,Economic Development,Economic Development +496389,Economic Development,Economic Development +496387,Economic Development,Economic Development +496357,Economic Development,Economic Development +495715,Economic Development,Economic Development +495712,Economic Development,Economic Development +495710,Economic Development,Economic Development +492962,Economic Development,Economic Development +492961,Economic Development,Economic Development +492960,Economic Development,Economic Development +492959,Economic Development,Economic Development +492958,Economic Development,Economic Development +492957,Economic Development,Economic Development +491043,Economic Development,Economic Development +490282,Economic Development,Economic Development +490279,Economic Development,Economic Development +490275,Economic Development,Economic Development +487184,Economic Development,Economic Development +487181,Economic Development,Economic Development +162261,Agriculture,Agriculture +162260,Agriculture,Agriculture +162259,Agriculture,Agriculture +158738,Agriculture,Agriculture +158737,Agriculture,Agriculture +158735,Agriculture,Agriculture +158733,Agriculture,Agriculture +158731,Agriculture,Agriculture +162455,Agriculture,Agriculture +162265,Agriculture,Agriculture +162263,Agriculture,Agriculture +158733,International Trade,International Trade +158731,International Trade,International Trade +162455,International Trade,International Trade +162265,International Trade,International Trade +162263,International Trade,International Trade +162262,International Trade,International Trade +162261,International Trade,International Trade +162260,International Trade,International Trade +162259,International Trade,International Trade +158738,International Trade,International Trade +158737,International Trade,International Trade +152878,International Trade,International Trade +152657,International Trade,International Trade +175615,International Trade,International Trade +166019,International Trade,International Trade +166015,International Trade,International Trade +160510,International Trade,International Trade +157988,International Trade,International Trade +152881,International Trade,International Trade +152880,International Trade,International Trade +336107,Security,Security +326477,Security,Security +152397,Security,Security +165763,International Trade,International Trade +153536,Energy,Energy +153536,Environment,Environment +165825,Fisheries,Fisheries +157241,Justice and Law Enforcement,Justice and Law Enforcement +232189,Environment,Environment +446050,Employment and Training,Employment and Training +446046,Employment and Training,Employment and Training +152517,Employment and Training,Employment and Training +336469,Employment and Training,Employment and Training +333299,Employment and Training,Employment and Training +325179,Employment and Training,Employment and Training +325178,Employment and Training,Employment and Training +325177,Employment and Training,Employment and Training +325174,Employment and Training,Employment and Training +325171,Employment and Training,Employment and Training +270995,Employment and Training,Employment and Training +270993,Employment and Training,Employment and Training +270992,Employment and Training,Employment and Training +270991,Employment and Training,Employment and Training +270990,Employment and Training,Employment and Training +434507,Employment and Training,Employment and Training +381537,Employment and Training,Employment and Training +381526,Employment and Training,Employment and Training +381520,Employment and Training,Employment and Training +488780,Employment and Training,Employment and Training +480582,Employment and Training,Employment and Training +478407,Employment and Training,Employment and Training +466183,Government Procurement,Government Procurement +462191,Government Procurement,Government Procurement +169604,Government Procurement,Government Procurement +304789,Government Procurement,Government Procurement +274010,Government Procurement,Government Procurement +478625,Government Procurement,Government Procurement +225707,Transportation,Transportation +265289,Transportation,Transportation +240454,Transportation,Transportation +238550,Transportation,Transportation +234449,Transportation,Transportation +233336,Transportation,Transportation +233335,Transportation,Transportation +233333,Transportation,Transportation +230489,Transportation,Transportation +228371,Transportation,Transportation +228370,Transportation,Transportation +228352,Transportation,Transportation +228351,Transportation,Transportation +152581,Transportation,Transportation +153780,Economic Development,Economic Development +501673,Health,Health +501425,Health,Health +501423,Health,Health +501421,Health,Health +501418,Health,Health +501415,Health,Health +498913,Health,Health +493429,Health,Health +504983,Health,Health +504370,Health,Health +424220,Infrastructure,Infrastructure +517333,Infrastructure,Infrastructure +200334,Infrastructure,Infrastructure +200331,Infrastructure,Infrastructure +200328,Infrastructure,Infrastructure +297075,Infrastructure,Infrastructure +200366,Infrastructure,Infrastructure +200354,Infrastructure,Infrastructure +200350,Infrastructure,Infrastructure +200346,Infrastructure,Infrastructure +200342,Infrastructure,Infrastructure +200338,Infrastructure,Infrastructure +443626,Infrastructure,Infrastructure +442180,Infrastructure,Infrastructure +439090,Infrastructure,Infrastructure +435290,Infrastructure,Infrastructure +435283,Infrastructure,Infrastructure +435281,Infrastructure,Infrastructure +435278,Infrastructure,Infrastructure +435270,Infrastructure,Infrastructure +435268,Infrastructure,Infrastructure +543154,Labour,Labour +543152,Labour,Labour +200338,Labour,Labour +493513,Labour,Labour +486892,Labour,Labour +543396,Labour,Labour +467024,Mining,Mining +464137,Mining,Mining +200338,Mining,Mining +200334,Mining,Mining +200331,Mining,Mining +200328,Mining,Mining +195105,Mining,Mining +195104,Mining,Mining +195089,Mining,Mining +189655,Mining,Mining +189652,Mining,Mining +189651,Mining,Mining +189649,Mining,Mining +186304,Mining,Mining +175660,Mining,Mining +175659,Mining,Mining +175658,Mining,Mining +167232,Mining,Mining +167175,Mining,Mining +162719,Mining,Mining +162718,Mining,Mining +162601,Mining,Mining +162600,Mining,Mining +162598,Mining,Mining +330135,Mining,Mining +330134,Mining,Mining +330133,Mining,Mining +330132,Mining,Mining +315773,Mining,Mining +315771,Mining,Mining +310480,Mining,Mining +310453,Mining,Mining +310450,Mining,Mining +310429,Mining,Mining +310424,Mining,Mining +297075,Mining,Mining +297073,Mining,Mining +297072,Mining,Mining +297071,Mining,Mining +291829,Mining,Mining +286636,Mining,Mining +283070,Mining,Mining +283069,Mining,Mining +283050,Mining,Mining +283049,Mining,Mining +245589,Mining,Mining +245130,Mining,Mining +245129,Mining,Mining +241139,Mining,Mining +241137,Mining,Mining +241134,Mining,Mining +241119,Mining,Mining +241117,Mining,Mining +241116,Mining,Mining +241110,Mining,Mining +237212,Mining,Mining +237211,Mining,Mining +234469,Mining,Mining +234089,Mining,Mining +233882,Mining,Mining +226927,Mining,Mining +223522,Mining,Mining +217989,Mining,Mining +217988,Mining,Mining +200375,Mining,Mining +200366,Mining,Mining +200354,Mining,Mining +200350,Mining,Mining +200346,Mining,Mining +200342,Mining,Mining +461416,Mining,Mining +461415,Mining,Mining +461412,Mining,Mining +460967,Mining,Mining +455648,Mining,Mining +455647,Mining,Mining +455645,Mining,Mining +452581,Mining,Mining +452574,Mining,Mining +447440,Mining,Mining +445394,Mining,Mining +443631,Mining,Mining +443628,Mining,Mining +443626,Mining,Mining +443622,Mining,Mining +442260,Mining,Mining +442258,Mining,Mining +442254,Mining,Mining +442240,Mining,Mining +442233,Mining,Mining +442228,Mining,Mining +442209,Mining,Mining +442185,Mining,Mining +442182,Mining,Mining +442180,Mining,Mining +442178,Mining,Mining +439090,Mining,Mining +439084,Mining,Mining +439071,Mining,Mining +435290,Mining,Mining +435286,Mining,Mining +435284,Mining,Mining +435283,Mining,Mining +435279,Mining,Mining +435278,Mining,Mining +435277,Mining,Mining +435273,Mining,Mining +433757,Mining,Mining +433756,Mining,Mining +433753,Mining,Mining +432472,Mining,Mining +430721,Mining,Mining +430720,Mining,Mining +430718,Mining,Mining +426088,Mining,Mining +424220,Mining,Mining +424218,Mining,Mining +422298,Mining,Mining +422296,Mining,Mining +422292,Mining,Mining +420123,Mining,Mining +420121,Mining,Mining +420120,Mining,Mining +420113,Mining,Mining +416766,Mining,Mining +416754,Mining,Mining +416752,Mining,Mining +416718,Mining,Mining +411216,Mining,Mining +411213,Mining,Mining +401703,Mining,Mining +401701,Mining,Mining +401700,Mining,Mining +401699,Mining,Mining +400986,Mining,Mining +400982,Mining,Mining +385582,Mining,Mining +382634,Mining,Mining +381575,Mining,Mining +372544,Mining,Mining +372540,Mining,Mining +372319,Mining,Mining +372300,Mining,Mining +369392,Mining,Mining +369391,Mining,Mining +369390,Mining,Mining +366767,Mining,Mining +366766,Mining,Mining +366385,Mining,Mining +366383,Mining,Mining +365346,Mining,Mining +362146,Mining,Mining +362144,Mining,Mining +362143,Mining,Mining +359845,Mining,Mining +359843,Mining,Mining +358101,Mining,Mining +358100,Mining,Mining +355849,Mining,Mining +355848,Mining,Mining +355847,Mining,Mining +353523,Mining,Mining +344094,Mining,Mining +344083,Mining,Mining +344082,Mining,Mining +337149,Mining,Mining +331794,Mining,Mining +330141,Mining,Mining +330138,Mining,Mining +543396,Mining,Mining +543167,Mining,Mining +543158,Mining,Mining +543157,Mining,Mining +543154,Mining,Mining +543152,Mining,Mining +540110,Mining,Mining +535622,Mining,Mining +534740,Mining,Mining +534738,Mining,Mining +534731,Mining,Mining +534728,Mining,Mining +531597,Mining,Mining +531596,Mining,Mining +531589,Mining,Mining +531587,Mining,Mining +531584,Mining,Mining +529686,Mining,Mining +529685,Mining,Mining +529684,Mining,Mining +529683,Mining,Mining +528912,Mining,Mining +526180,Mining,Mining +526169,Mining,Mining +526167,Mining,Mining +522925,Mining,Mining +522923,Mining,Mining +522919,Mining,Mining +517337,Mining,Mining +517333,Mining,Mining +517330,Mining,Mining +517328,Mining,Mining +517324,Mining,Mining +517322,Mining,Mining +514654,Mining,Mining +513932,Mining,Mining +513393,Mining,Mining +511273,Mining,Mining +508656,Mining,Mining +504983,Mining,Mining +501425,Mining,Mining +501423,Mining,Mining +501421,Mining,Mining +501418,Mining,Mining +501415,Mining,Mining +501409,Mining,Mining +501407,Mining,Mining +490325,Mining,Mining +490320,Mining,Mining +490317,Mining,Mining +490315,Mining,Mining +490313,Mining,Mining +486966,Mining,Mining +486894,Mining,Mining +486892,Mining,Mining +486888,Mining,Mining +486885,Mining,Mining +483988,Mining,Mining +481703,Mining,Mining +481699,Mining,Mining +481696,Mining,Mining +481695,Mining,Mining +479349,Mining,Mining +479348,Mining,Mining +479347,Mining,Mining +479346,Mining,Mining +479345,Mining,Mining +479344,Mining,Mining +475452,Mining,Mining +472737,Mining,Mining +467028,Mining,Mining +442182,Transportation,Transportation +442180,Transportation,Transportation +154693,Transportation,Transportation +154692,Transportation,Transportation +234470,Transportation,Transportation +234469,Transportation,Transportation +233884,Transportation,Transportation +230483,Transportation,Transportation +230481,Transportation,Transportation +218008,Transportation,Transportation +195105,Transportation,Transportation +189655,Transportation,Transportation +189652,Transportation,Transportation +189651,Transportation,Transportation +166373,Transportation,Transportation +166372,Transportation,Transportation +166370,Transportation,Transportation +166369,Transportation,Transportation +166368,Transportation,Transportation +166367,Transportation,Transportation +166221,Transportation,Transportation +165982,Transportation,Transportation +154695,Transportation,Transportation +154694,Transportation,Transportation +366767,Transportation,Transportation +366766,Transportation,Transportation +365347,Transportation,Transportation +362145,Transportation,Transportation +362144,Transportation,Transportation +358101,Transportation,Transportation +358100,Transportation,Transportation +355848,Transportation,Transportation +355847,Transportation,Transportation +353623,Transportation,Transportation +351572,Transportation,Transportation +349266,Transportation,Transportation +349265,Transportation,Transportation +344093,Transportation,Transportation +344092,Transportation,Transportation +344089,Transportation,Transportation +344088,Transportation,Transportation +344087,Transportation,Transportation +344081,Transportation,Transportation +344079,Transportation,Transportation +342054,Transportation,Transportation +337149,Transportation,Transportation +330138,Transportation,Transportation +330137,Transportation,Transportation +330135,Transportation,Transportation +330134,Transportation,Transportation +330133,Transportation,Transportation +327749,Transportation,Transportation +327747,Transportation,Transportation +327735,Transportation,Transportation +327732,Transportation,Transportation +327726,Transportation,Transportation +327723,Transportation,Transportation +327721,Transportation,Transportation +327715,Transportation,Transportation +327712,Transportation,Transportation +325117,Transportation,Transportation +325116,Transportation,Transportation +325115,Transportation,Transportation +325114,Transportation,Transportation +322246,Transportation,Transportation +322244,Transportation,Transportation +310470,Transportation,Transportation +297075,Transportation,Transportation +277593,Transportation,Transportation +264550,Transportation,Transportation +264547,Transportation,Transportation +264544,Transportation,Transportation +259262,Transportation,Transportation +250397,Transportation,Transportation +250396,Transportation,Transportation +250394,Transportation,Transportation +250393,Transportation,Transportation +250392,Transportation,Transportation +250391,Transportation,Transportation +250390,Transportation,Transportation +250389,Transportation,Transportation +245129,Transportation,Transportation +241119,Transportation,Transportation +435281,Transportation,Transportation +428668,Transportation,Transportation +426088,Transportation,Transportation +426083,Transportation,Transportation +424221,Transportation,Transportation +424219,Transportation,Transportation +422289,Transportation,Transportation +420123,Transportation,Transportation +420114,Transportation,Transportation +411938,Transportation,Transportation +401229,Transportation,Transportation +398960,Transportation,Transportation +398925,Transportation,Transportation +394482,Transportation,Transportation +394458,Transportation,Transportation +394453,Transportation,Transportation +392840,Transportation,Transportation +391661,Transportation,Transportation +387925,Transportation,Transportation +382638,Transportation,Transportation +382632,Transportation,Transportation +381590,Transportation,Transportation +381577,Transportation,Transportation +379363,Transportation,Transportation +379359,Transportation,Transportation +376331,Transportation,Transportation +376327,Transportation,Transportation +376326,Transportation,Transportation +376323,Transportation,Transportation +376322,Transportation,Transportation +372544,Transportation,Transportation +372540,Transportation,Transportation +372320,Transportation,Transportation +372319,Transportation,Transportation +372317,Transportation,Transportation +372300,Transportation,Transportation +369392,Transportation,Transportation +369391,Transportation,Transportation +543396,Transportation,Transportation +543157,Transportation,Transportation +543154,Transportation,Transportation +543152,Transportation,Transportation +538089,Transportation,Transportation +526177,Transportation,Transportation +517322,Transportation,Transportation +517320,Transportation,Transportation +517317,Transportation,Transportation +460967,Transportation,Transportation +452581,Transportation,Transportation +452580,Transportation,Transportation +452578,Transportation,Transportation +452576,Transportation,Transportation +452574,Transportation,Transportation +443626,Transportation,Transportation +443622,Transportation,Transportation +442240,Transportation,Transportation +442217,Transportation,Transportation +153518,Taxation and Finance,Taxation and Finance +375937,Pensions,Pensions +375931,Pensions,Pensions +152737,Pensions,Pensions +226504,Pensions,Pensions +201347,Pensions,Pensions +197647,Pensions,Pensions +192398,Pensions,Pensions +192140,Pensions,Pensions +192139,Pensions,Pensions +192138,Pensions,Pensions +192137,Pensions,Pensions +192136,Pensions,Pensions +192135,Pensions,Pensions +192132,Pensions,Pensions +192131,Pensions,Pensions +192126,Pensions,Pensions +192125,Pensions,Pensions +192124,Pensions,Pensions +192123,Pensions,Pensions +184044,Pensions,Pensions +176825,Pensions,Pensions +167187,Pensions,Pensions +167185,Pensions,Pensions +165067,Pensions,Pensions +161274,Pensions,Pensions +160511,Pensions,Pensions +158835,Pensions,Pensions +348544,Pensions,Pensions +348543,Pensions,Pensions +340696,Pensions,Pensions +340693,Pensions,Pensions +339360,Pensions,Pensions +334989,Pensions,Pensions +246909,Pensions,Pensions +246891,Pensions,Pensions +378257,Pensions,Pensions +375995,Pensions,Pensions +375957,Pensions,Pensions +375955,Pensions,Pensions +375953,Pensions,Pensions +375952,Pensions,Pensions +375948,Pensions,Pensions +375945,Pensions,Pensions +156152,Budget,Budget +156151,Budget,Budget +156150,Budget,Budget +156149,Budget,Budget +156148,Budget,Budget +153194,Climate,Climate +153193,Climate,Climate +153192,Climate,Climate +153191,Climate,Climate +153190,Climate,Climate +176245,Climate,Climate +156152,Climate,Climate +156151,Climate,Climate +156150,Climate,Climate +156149,Climate,Climate +156148,Climate,Climate +153199,Climate,Climate +153199,Energy,Energy +153197,Energy,Energy +153196,Energy,Energy +153194,Energy,Energy +153193,Energy,Energy +153192,Energy,Energy +153191,Energy,Energy +153190,Energy,Energy +176984,Energy,Energy +176245,Energy,Energy +173179,Energy,Energy +172772,Energy,Energy +172771,Energy,Energy +172770,Energy,Energy +172769,Energy,Energy +172767,Energy,Energy +156152,Energy,Energy +156151,Energy,Energy +156150,Energy,Energy +156149,Energy,Energy +153194,Transportation,Transportation +153192,Transportation,Transportation +176984,Transportation,Transportation +411734,Agriculture,Agriculture +482260,Justice and Law Enforcement,Justice and Law Enforcement +476962,Justice and Law Enforcement,Justice and Law Enforcement +304477,Justice and Law Enforcement,Justice and Law Enforcement +296741,Justice and Law Enforcement,Justice and Law Enforcement +273594,Justice and Law Enforcement,Justice and Law Enforcement +342036,Justice and Law Enforcement,Justice and Law Enforcement +438740,Justice and Law Enforcement,Justice and Law Enforcement +435087,Justice and Law Enforcement,Justice and Law Enforcement +435084,Justice and Law Enforcement,Justice and Law Enforcement +428484,Justice and Law Enforcement,Justice and Law Enforcement +405166,Justice and Law Enforcement,Justice and Law Enforcement +405163,Justice and Law Enforcement,Justice and Law Enforcement +403354,Justice and Law Enforcement,Justice and Law Enforcement +180652,Environment,Environment +180650,Environment,Environment +153263,Taxation and Finance,Taxation and Finance +450255,Energy,Energy +450253,Energy,Energy +164444,Energy,Energy +448237,Energy,Energy +445630,Energy,Energy +445627,Energy,Energy +445626,Energy,Energy +445620,Energy,Energy +443954,Energy,Energy +443947,Energy,Energy +439601,Energy,Energy +422577,Energy,Energy +538363,Energy,Energy +538361,Energy,Energy +514766,Energy,Energy +514218,Energy,Energy +498321,Energy,Energy +473073,Energy,Energy +452864,Energy,Energy +452851,Energy,Energy +228131,Taxation and Finance,Taxation and Finance +204247,Taxation and Finance,Taxation and Finance +159501,Industry,Industry +475702,Industry,Industry +157441,Industry,Industry +157439,Industry,Industry +152884,Industry,Industry +168452,Industry,Industry +165709,Industry,Industry +164343,Industry,Industry +161607,Industry,Industry +159504,Industry,Industry +159503,Industry,Industry +526727,Education,Education +526720,Education,Education +164936,Education,Education +164935,Education,Education +164530,Education,Education +164529,Education,Education +164528,Education,Education +163059,Education,Education +159379,Education,Education +156357,Education,Education +155069,Education,Education +155067,Education,Education +263111,Education,Education +263090,Education,Education +263089,Education,Education +245092,Education,Education +240269,Education,Education +236050,Education,Education +230075,Education,Education +222711,Education,Education +215749,Education,Education +215748,Education,Education +206831,Education,Education +206830,Education,Education +200002,Education,Education +192896,Education,Education +185567,Education,Education +169871,Education,Education +169870,Education,Education +169869,Education,Education +169868,Education,Education +169867,Education,Education +461265,Education,Education +460010,Education,Education +460009,Education,Education +447420,Education,Education +447411,Education,Education +445213,Education,Education +445211,Education,Education +445209,Education,Education +443599,Education,Education +443594,Education,Education +441521,Education,Education +434901,Education,Education +433412,Education,Education +428973,Education,Education +421632,Education,Education +421630,Education,Education +421626,Education,Education +421620,Education,Education +419523,Education,Education +419521,Education,Education +419518,Education,Education +419516,Education,Education +419514,Education,Education +411541,Education,Education +378302,Education,Education +367888,Education,Education +367886,Education,Education +367827,Education,Education +363280,Education,Education +335041,Education,Education +335039,Education,Education +321383,Education,Education +321382,Education,Education +321381,Education,Education +321380,Education,Education +296009,Education,Education +541065,Education,Education +530968,Education,Education +530963,Education,Education +461265,Employment and Training,Employment and Training +541065,Employment and Training,Employment and Training +156355,Employment and Training,Employment and Training +156351,Employment and Training,Employment and Training +245092,Employment and Training,Employment and Training +163058,Employment and Training,Employment and Training +163057,Employment and Training,Employment and Training +163056,Employment and Training,Employment and Training +156357,Employment and Training,Employment and Training +460011,Energy,Energy +530965,Energy,Energy +155068,Energy,Energy +155067,Energy,Energy +206827,Energy,Energy +202862,Energy,Energy +158682,Energy,Energy +158679,Energy,Energy +155070,Energy,Energy +155069,Energy,Energy +321383,Energy,Energy +477347,Energy,Energy +462444,Energy,Energy +461272,Energy,Energy +530965,Environment,Environment +461272,Environment,Environment +206827,Environment,Environment +202862,Environment,Environment +192896,Environment,Environment +215749,Environment,Environment +445213,Health,Health +527844,Health,Health +230075,Health,Health +215749,Health,Health +206830,Health,Health +192896,Health,Health +245092,Immigration,Immigration +226367,Immigration,Immigration +321382,Immigration,Immigration +296009,Immigration,Immigration +263111,Immigration,Immigration +530965,Industry,Industry +441521,Infrastructure,Infrastructure +434902,Infrastructure,Infrastructure +188854,Infrastructure,Infrastructure +169871,Infrastructure,Infrastructure +164936,Infrastructure,Infrastructure +164935,Infrastructure,Infrastructure +164530,Infrastructure,Infrastructure +164529,Infrastructure,Infrastructure +156357,Infrastructure,Infrastructure +414882,Infrastructure,Infrastructure +411498,Infrastructure,Infrastructure +411495,Infrastructure,Infrastructure +230075,Infrastructure,Infrastructure +192896,Infrastructure,Infrastructure +263111,International Development,International Development +445209,International Relations,International Relations +428983,International Relations,International Relations +155069,International Relations,International Relations +155068,International Relations,International Relations +155067,International Relations,International Relations +263111,International Relations,International Relations +263089,International Relations,International Relations +236050,International Relations,International Relations +321382,International Relations,International Relations +296009,International Relations,International Relations +530968,International Relations,International Relations +155067,Justice and Law Enforcement,Justice and Law Enforcement +321383,Justice and Law Enforcement,Justice and Law Enforcement +188854,Justice and Law Enforcement,Justice and Law Enforcement +173045,Justice and Law Enforcement,Justice and Law Enforcement +169870,Justice and Law Enforcement,Justice and Law Enforcement +169869,Justice and Law Enforcement,Justice and Law Enforcement +169868,Justice and Law Enforcement,Justice and Law Enforcement +169867,Justice and Law Enforcement,Justice and Law Enforcement +164936,Justice and Law Enforcement,Justice and Law Enforcement +164935,Justice and Law Enforcement,Justice and Law Enforcement +164530,Justice and Law Enforcement,Justice and Law Enforcement +164529,Justice and Law Enforcement,Justice and Law Enforcement +164528,Justice and Law Enforcement,Justice and Law Enforcement +163058,Justice and Law Enforcement,Justice and Law Enforcement +163057,Justice and Law Enforcement,Justice and Law Enforcement +163056,Justice and Law Enforcement,Justice and Law Enforcement +156357,Justice and Law Enforcement,Justice and Law Enforcement +156355,Justice and Law Enforcement,Justice and Law Enforcement +156351,Justice and Law Enforcement,Justice and Law Enforcement +240269,Official Languages,Official Languages +215748,Official Languages,Official Languages +206831,Official Languages,Official Languages +335038,Official Languages,Official Languages +431620,Regional Development,Regional Development +428986,Regional Development,Regional Development +222710,Regional Development,Regional Development +530965,Regional Development,Regional Development +525467,Research and Development,Research and Development (R&D) +525456,Research and Development,Research and Development (R&D) +158682,Research and Development,Research and Development (R&D) +158679,Research and Development,Research and Development (R&D) +263111,Research and Development,Research and Development (R&D) +215749,Research and Development,Research and Development (R&D) +200002,Research and Development,Research and Development (R&D) +169871,Research and Development,Research and Development (R&D) +169870,Research and Development,Research and Development (R&D) +169869,Research and Development,Research and Development (R&D) +169868,Research and Development,Research and Development (R&D) +169867,Research and Development,Research and Development (R&D) +164936,Research and Development,Research and Development (R&D) +164935,Research and Development,Research and Development (R&D) +164530,Research and Development,Research and Development (R&D) +164529,Research and Development,Research and Development (R&D) +164528,Research and Development,Research and Development (R&D) +394094,Research and Development,Research and Development (R&D) +382144,Research and Development,Research and Development (R&D) +378304,Research and Development,Research and Development (R&D) +378303,Research and Development,Research and Development (R&D) +375787,Research and Development,Research and Development (R&D) +373532,Research and Development,Research and Development (R&D) +367888,Research and Development,Research and Development (R&D) +367886,Research and Development,Research and Development (R&D) +367827,Research and Development,Research and Development (R&D) +335040,Research and Development,Research and Development (R&D) +321383,Research and Development,Research and Development (R&D) +315180,Research and Development,Research and Development (R&D) +276191,Research and Development,Research and Development (R&D) +428974,Research and Development,Research and Development (R&D) +428972,Research and Development,Research and Development (R&D) +544004,Research and Development,Research and Development (R&D) +543994,Research and Development,Research and Development (R&D) +530965,Research and Development,Research and Development (R&D) +527844,Research and Development,Research and Development (R&D) +527842,Research and Development,Research and Development (R&D) +527839,Research and Development,Research and Development (R&D) +527836,Research and Development,Research and Development (R&D) +526727,Research and Development,Research and Development (R&D) +423406,Consumer Issues,Consumer Issues +175827,Consumer Issues,Consumer Issues +175826,Consumer Issues,Consumer Issues +175825,Consumer Issues,Consumer Issues +175824,Consumer Issues,Consumer Issues +408688,Consumer Issues,Consumer Issues +360103,Consumer Issues,Consumer Issues +360102,Consumer Issues,Consumer Issues +356837,Consumer Issues,Consumer Issues +356740,Consumer Issues,Consumer Issues +311949,Consumer Issues,Consumer Issues +507675,International Relations,International Relations +482081,International Relations,International Relations +334168,International Relations,International Relations +408688,International Relations,International Relations +356837,Security,Security +408688,Security,Security +472865,Taxation and Finance,Taxation and Finance +472862,Taxation and Finance,Taxation and Finance +408688,Taxation and Finance,Taxation and Finance +522047,Taxation and Finance,Taxation and Finance +516986,Taxation and Finance,Taxation and Finance +513855,Taxation and Finance,Taxation and Finance +510926,Taxation and Finance,Taxation and Finance +507679,Taxation and Finance,Taxation and Finance +507678,Taxation and Finance,Taxation and Finance +507677,Taxation and Finance,Taxation and Finance +507673,Taxation and Finance,Taxation and Finance +507672,Taxation and Finance,Taxation and Finance +507671,Taxation and Finance,Taxation and Finance +505926,Taxation and Finance,Taxation and Finance +505925,Taxation and Finance,Taxation and Finance +505924,Taxation and Finance,Taxation and Finance +505923,Taxation and Finance,Taxation and Finance +505922,Taxation and Finance,Taxation and Finance +502994,Taxation and Finance,Taxation and Finance +502991,Taxation and Finance,Taxation and Finance +502990,Taxation and Finance,Taxation and Finance +502988,Taxation and Finance,Taxation and Finance +502987,Taxation and Finance,Taxation and Finance +502986,Taxation and Finance,Taxation and Finance +502985,Taxation and Finance,Taxation and Finance +500162,Taxation and Finance,Taxation and Finance +500160,Taxation and Finance,Taxation and Finance +500159,Taxation and Finance,Taxation and Finance +496719,Taxation and Finance,Taxation and Finance +495728,Taxation and Finance,Taxation and Finance +495726,Taxation and Finance,Taxation and Finance +493994,Taxation and Finance,Taxation and Finance +491486,Taxation and Finance,Taxation and Finance +482079,Taxation and Finance,Taxation and Finance +423406,Transportation,Transportation +408688,Transportation,Transportation +516986,Transportation,Transportation +513091,Transportation,Transportation +513090,Transportation,Transportation +513089,Transportation,Transportation +513088,Transportation,Transportation +510929,Transportation,Transportation +507679,Transportation,Transportation +507677,Transportation,Transportation +507675,Transportation,Transportation +505926,Transportation,Transportation +505925,Transportation,Transportation +505924,Transportation,Transportation +502994,Transportation,Transportation +502993,Transportation,Transportation +502992,Transportation,Transportation +502991,Transportation,Transportation +502990,Transportation,Transportation +502989,Transportation,Transportation +502988,Transportation,Transportation +502987,Transportation,Transportation +502985,Transportation,Transportation +500162,Transportation,Transportation +495728,Transportation,Transportation +495726,Transportation,Transportation +495724,Transportation,Transportation +493994,Transportation,Transportation +491486,Transportation,Transportation +482081,Transportation,Transportation +482079,Transportation,Transportation +475460,Transportation,Transportation +475259,Transportation,Transportation +472875,Transportation,Transportation +472865,Transportation,Transportation +176525,Defence,Defence +176029,Defence,Defence +176525,Security,Security +176029,Security,Security +498212,International Trade,Commerce international +498210,International Trade,Commerce international +156804,International Trade,Commerce international +156803,International Trade,Commerce international +153105,International Trade,Commerce international +264271,International Trade,Commerce international +236863,International Trade,Commerce international +229874,International Trade,Commerce international +229872,International Trade,Commerce international +191068,International Trade,Commerce international +191067,International Trade,Commerce international +191066,International Trade,Commerce international +191065,International Trade,Commerce international +177884,International Trade,Commerce international +177864,International Trade,Commerce international +177844,International Trade,Commerce international +411763,International Trade,Commerce international +411761,International Trade,Commerce international +411758,International Trade,Commerce international +411756,International Trade,Commerce international +407689,International Trade,Commerce international +399913,International Trade,Commerce international +399912,International Trade,Commerce international +399911,International Trade,Commerce international +399910,International Trade,Commerce international +392206,International Trade,Commerce international +392205,International Trade,Commerce international +384618,International Trade,Commerce international +368842,International Trade,Commerce international +348886,International Trade,Commerce international +458468,International Trade,Commerce international +458466,International Trade,Commerce international +458465,International Trade,Commerce international +531274,International Trade,Commerce international +531273,International Trade,Commerce international +531271,International Trade,Commerce international +528411,International Trade,Commerce international +528409,International Trade,Commerce international +507143,International Trade,Commerce international +503922,International Trade,Commerce international +442980,Budget,Budget +437606,Budget,Budget +160965,Budget,Budget +165032,Budget,Budget +162728,Budget,Budget +162727,Budget,Budget +160966,Budget,Budget +312692,Budget,Budget +290610,Budget,Budget +290609,Budget,Budget +272082,Budget,Budget +264082,Budget,Budget +236433,Budget,Budget +226172,Budget,Budget +217776,Budget,Budget +202689,Budget,Budget +200021,Budget,Budget +200018,Budget,Budget +193925,Budget,Budget +424591,Budget,Budget +341226,Budget,Budget +341218,Budget,Budget +341203,Budget,Budget +338072,Budget,Budget +327233,Budget,Budget +327230,Budget,Budget +315902,Budget,Budget +315901,Budget,Budget +541983,Budget,Budget +531602,Budget,Budget +529365,Budget,Budget +529360,Budget,Budget +502933,Budget,Budget +497223,Budget,Budget +481148,Budget,Budget +481147,Budget,Budget +456738,Budget,Budget +456638,Budget,Budget +453413,Budget,Budget +380884,Employment and Training,Employment and Training +482490,Employment and Training,Employment and Training +153118,Employment and Training,Employment and Training +263315,Employment and Training,Employment and Training +383858,Government Procurement,Government Procurement +506773,Government Procurement,Government Procurement +381293,Government Procurement,Government Procurement +381292,Government Procurement,Government Procurement +315851,Government Procurement,Government Procurement +315849,Government Procurement,Government Procurement +458232,Government Procurement,Government Procurement +441512,Government Procurement,Government Procurement +381515,Energy,Energy +381514,Energy,Energy +381513,Energy,Energy +381494,Energy,Energy +381533,Energy,Energy +381531,Energy,Energy +381529,Energy,Energy +381523,Energy,Energy +381513,Research and Development,Research and Development (R&D) +381494,Research and Development,Research and Development (R&D) +152398,Research and Development,Research and Development (R&D) +381533,Research and Development,Research and Development (R&D) +381531,Research and Development,Research and Development (R&D) +381529,Research and Development,Research and Development (R&D) +381523,Research and Development,Research and Development (R&D) +381517,Research and Development,Research and Development (R&D) +381515,Research and Development,Research and Development (R&D) +373932,Research and Development,Research and Development (R&D) +451332,Research and Development,Research and Development (R&D) +200065,Research and Development,Research and Development (R&D) +200063,Research and Development,Research and Development (R&D) +200060,Research and Development,Research and Development (R&D) +200040,Research and Development,Research and Development (R&D) +188776,Research and Development,Research and Development (R&D) +175111,Research and Development,Research and Development (R&D) +153240,Research and Development,Research and Development (R&D) +233824,Research and Development,Research and Development (R&D) +233821,Research and Development,Research and Development (R&D) +233816,Research and Development,Research and Development (R&D) +215608,Research and Development,Research and Development (R&D) +207172,Research and Development,Research and Development (R&D) +207167,Research and Development,Research and Development (R&D) +202729,Research and Development,Research and Development (R&D) +202597,Research and Development,Research and Development (R&D) +365948,Research and Development,Research and Development (R&D) +361827,Research and Development,Research and Development (R&D) +359202,Research and Development,Research and Development (R&D) +357803,Research and Development,Research and Development (R&D) +357801,Research and Development,Research and Development (R&D) +357799,Research and Development,Research and Development (R&D) +357797,Research and Development,Research and Development (R&D) +355795,Research and Development,Research and Development (R&D) +351166,Research and Development,Research and Development (R&D) +335174,Research and Development,Research and Development (R&D) +333259,Research and Development,Research and Development (R&D) +331347,Research and Development,Research and Development (R&D) +324252,Research and Development,Research and Development (R&D) +324249,Research and Development,Research and Development (R&D) +304311,Research and Development,Research and Development (R&D) +280969,Research and Development,Research and Development (R&D) +442586,Research and Development,Research and Development (R&D) +438288,Research and Development,Research and Development (R&D) +434988,Research and Development,Research and Development (R&D) +432219,Research and Development,Research and Development (R&D) +430728,Research and Development,Research and Development (R&D) +428110,Research and Development,Research and Development (R&D) +421730,Research and Development,Research and Development (R&D) +419428,Research and Development,Research and Development (R&D) +419426,Research and Development,Research and Development (R&D) +419423,Research and Development,Research and Development (R&D) +419412,Research and Development,Research and Development (R&D) +415096,Research and Development,Research and Development (R&D) +415095,Research and Development,Research and Development (R&D) +415086,Research and Development,Research and Development (R&D) +415085,Research and Development,Research and Development (R&D) +415084,Research and Development,Research and Development (R&D) +415080,Research and Development,Research and Development (R&D) +412312,Research and Development,Research and Development (R&D) +412307,Research and Development,Research and Development (R&D) +386674,Research and Development,Research and Development (R&D) +386672,Research and Development,Research and Development (R&D) +381941,Research and Development,Research and Development (R&D) +381940,Research and Development,Research and Development (R&D) +381939,Research and Development,Research and Development (R&D) +381938,Research and Development,Research and Development (R&D) +381937,Research and Development,Research and Development (R&D) +381936,Research and Development,Research and Development (R&D) +381935,Research and Development,Research and Development (R&D) +519880,Agriculture,Agriculture +510308,Agriculture,Agriculture +200948,Agriculture,Agriculture +189779,Agriculture,Agriculture +186344,Agriculture,Agriculture +170647,Agriculture,Agriculture +162571,Agriculture,Agriculture +159992,Agriculture,Agriculture +153362,Agriculture,Agriculture +319141,Agriculture,Agriculture +276173,Agriculture,Agriculture +276170,Agriculture,Agriculture +264541,Agriculture,Agriculture +254199,Agriculture,Agriculture +244422,Agriculture,Agriculture +236269,Agriculture,Agriculture +232677,Agriculture,Agriculture +232676,Agriculture,Agriculture +223284,Agriculture,Agriculture +223277,Agriculture,Agriculture +200949,Agriculture,Agriculture +407336,Agriculture,Agriculture +400804,Agriculture,Agriculture +358109,Agriculture,Agriculture +327500,Agriculture,Agriculture +510307,Agriculture,Agriculture +510306,Agriculture,Agriculture +510305,Agriculture,Agriculture +510303,Agriculture,Agriculture +510302,Agriculture,Agriculture +510301,Agriculture,Agriculture +510300,Agriculture,Agriculture +510299,Agriculture,Agriculture +510298,Agriculture,Agriculture +510292,Agriculture,Agriculture +507537,Agriculture,Agriculture +504109,Agriculture,Agriculture +504108,Agriculture,Agriculture +504107,Agriculture,Agriculture +504101,Agriculture,Agriculture +501105,Agriculture,Agriculture +498717,Agriculture,Agriculture +498716,Agriculture,Agriculture +494730,Agriculture,Agriculture +494726,Agriculture,Agriculture +494724,Agriculture,Agriculture +494721,Agriculture,Agriculture +494716,Agriculture,Agriculture +492778,Agriculture,Agriculture +492774,Agriculture,Agriculture +492771,Agriculture,Agriculture +490069,Agriculture,Agriculture +490065,Agriculture,Agriculture +490064,Agriculture,Agriculture +479968,Agriculture,Agriculture +475061,Agriculture,Agriculture +469226,Agriculture,Agriculture +467943,Agriculture,Agriculture +467942,Agriculture,Agriculture +460508,Agriculture,Agriculture +441033,Agriculture,Agriculture +425812,Agriculture,Agriculture +425804,Agriculture,Agriculture +424407,Agriculture,Agriculture +534201,Agriculture,Agriculture +534200,Agriculture,Agriculture +534198,Agriculture,Agriculture +534197,Agriculture,Agriculture +534196,Agriculture,Agriculture +524764,Agriculture,Agriculture +522469,Agriculture,Agriculture +465720,Budget,Budget +465718,Budget,Budget +160512,Budget,Budget +155626,Budget,Budget +166318,Budget,Budget +458179,Budget,Budget +452782,Budget,Budget +450193,Budget,Budget +448042,Budget,Budget +437034,Budget,Budget +435873,Budget,Budget +430886,Budget,Budget +413100,Budget,Budget +413098,Budget,Budget +413095,Budget,Budget +403778,Budget,Budget +403772,Budget,Budget +395596,Budget,Budget +382592,Budget,Budget +465953,Budget,Budget +400764,Environment,Environment +400759,Environment,Environment +172806,Environment,Environment +160604,Environment,Environment +392502,Environment,Environment +392501,Environment,Environment +385389,Environment,Environment +380970,Environment,Environment +465951,Environment,Environment +465950,Environment,Environment +465948,Environment,Environment +461624,Environment,Environment +461623,Environment,Environment +448068,Environment,Environment +448058,Environment,Environment +448052,Environment,Environment +448042,Environment,Environment +448034,Environment,Environment +439289,Environment,Environment +439284,Environment,Environment +439283,Environment,Environment +439264,Environment,Environment +437044,Environment,Environment +425457,Environment,Environment +425434,Environment,Environment +424020,Environment,Environment +400816,Environment,Environment +400806,Environment,Environment +400788,Environment,Environment +400782,Environment,Environment +400774,Environment,Environment +400773,Environment,Environment +400771,Environment,Environment +400770,Environment,Environment +400767,Environment,Environment +400766,Environment,Environment +400810,Transportation,Transportation +400806,Transportation,Transportation +156038,Transportation,Transportation +156037,Transportation,Transportation +156036,Transportation,Transportation +155493,Transportation,Transportation +153422,Transportation,Transportation +187165,Transportation,Transportation +187164,Transportation,Transportation +174608,Transportation,Transportation +169226,Transportation,Transportation +169225,Transportation,Transportation +167239,Transportation,Transportation +167231,Transportation,Transportation +167230,Transportation,Transportation +167229,Transportation,Transportation +167073,Transportation,Transportation +167072,Transportation,Transportation +167071,Transportation,Transportation +167070,Transportation,Transportation +167069,Transportation,Transportation +167068,Transportation,Transportation +166323,Transportation,Transportation +166320,Transportation,Transportation +166318,Transportation,Transportation +160512,Transportation,Transportation +400788,Transportation,Transportation +400782,Transportation,Transportation +400774,Transportation,Transportation +400773,Transportation,Transportation +400771,Transportation,Transportation +400770,Transportation,Transportation +400767,Transportation,Transportation +400766,Transportation,Transportation +400765,Transportation,Transportation +400764,Transportation,Transportation +400759,Transportation,Transportation +395600,Transportation,Transportation +395596,Transportation,Transportation +395595,Transportation,Transportation +392505,Transportation,Transportation +392502,Transportation,Transportation +387740,Transportation,Transportation +387738,Transportation,Transportation +385389,Transportation,Transportation +383951,Transportation,Transportation +380970,Transportation,Transportation +380969,Transportation,Transportation +380967,Transportation,Transportation +380966,Transportation,Transportation +356493,Transportation,Transportation +356492,Transportation,Transportation +354049,Transportation,Transportation +354048,Transportation,Transportation +349500,Transportation,Transportation +349499,Transportation,Transportation +349498,Transportation,Transportation +349497,Transportation,Transportation +349496,Transportation,Transportation +349495,Transportation,Transportation +349494,Transportation,Transportation +349493,Transportation,Transportation +349492,Transportation,Transportation +349491,Transportation,Transportation +349490,Transportation,Transportation +344072,Transportation,Transportation +344070,Transportation,Transportation +344069,Transportation,Transportation +318333,Transportation,Transportation +318332,Transportation,Transportation +318331,Transportation,Transportation +318212,Transportation,Transportation +318211,Transportation,Transportation +318210,Transportation,Transportation +318209,Transportation,Transportation +318152,Transportation,Transportation +318151,Transportation,Transportation +318150,Transportation,Transportation +318149,Transportation,Transportation +318137,Transportation,Transportation +318136,Transportation,Transportation +318135,Transportation,Transportation +318134,Transportation,Transportation +318133,Transportation,Transportation +318132,Transportation,Transportation +256529,Transportation,Transportation +255550,Transportation,Transportation +255349,Transportation,Transportation +465956,Transportation,Transportation +465955,Transportation,Transportation +465954,Transportation,Transportation +465951,Transportation,Transportation +465945,Transportation,Transportation +465730,Transportation,Transportation +465727,Transportation,Transportation +465720,Transportation,Transportation +465716,Transportation,Transportation +465714,Transportation,Transportation +461626,Transportation,Transportation +448064,Transportation,Transportation +448054,Transportation,Transportation +448030,Transportation,Transportation +439226,Transportation,Transportation +437044,Transportation,Transportation +429339,Transportation,Transportation +425460,Transportation,Transportation +425459,Transportation,Transportation +425457,Transportation,Transportation +425455,Transportation,Transportation +425453,Transportation,Transportation +425450,Transportation,Transportation +425448,Transportation,Transportation +425445,Transportation,Transportation +425443,Transportation,Transportation +425442,Transportation,Transportation +425441,Transportation,Transportation +425439,Transportation,Transportation +425437,Transportation,Transportation +425436,Transportation,Transportation +425430,Transportation,Transportation +425429,Transportation,Transportation +425428,Transportation,Transportation +425427,Transportation,Transportation +425426,Transportation,Transportation +425425,Transportation,Transportation +425423,Transportation,Transportation +425421,Transportation,Transportation +424030,Transportation,Transportation +424027,Transportation,Transportation +424025,Transportation,Transportation +424024,Transportation,Transportation +424023,Transportation,Transportation +424022,Transportation,Transportation +424020,Transportation,Transportation +424019,Transportation,Transportation +424018,Transportation,Transportation +421650,Transportation,Transportation +421648,Transportation,Transportation +421645,Transportation,Transportation +421642,Transportation,Transportation +421639,Transportation,Transportation +421638,Transportation,Transportation +421634,Transportation,Transportation +420089,Transportation,Transportation +416621,Transportation,Transportation +416616,Transportation,Transportation +416606,Transportation,Transportation +416577,Transportation,Transportation +416568,Transportation,Transportation +416563,Transportation,Transportation +416561,Transportation,Transportation +416558,Transportation,Transportation +416556,Transportation,Transportation +405429,Transportation,Transportation +405427,Transportation,Transportation +405422,Transportation,Transportation +403778,Transportation,Transportation +334564,Regional Development,Regional Development +495706,Regional Development,Regional Development +153426,Regional Development,Regional Development +442388,Regional Development,Regional Development +398888,Regional Development,Regional Development +396129,Regional Development,Regional Development +396104,Regional Development,Regional Development +396101,Regional Development,Regional Development +392766,Regional Development,Regional Development +391030,Regional Development,Regional Development +391029,Regional Development,Regional Development +391027,Regional Development,Regional Development +391026,Regional Development,Regional Development +391023,Regional Development,Regional Development +391021,Regional Development,Regional Development +391019,Regional Development,Regional Development +391014,Regional Development,Regional Development +391001,Regional Development,Regional Development +390997,Regional Development,Regional Development +390948,Regional Development,Regional Development +390852,Regional Development,Regional Development +390845,Regional Development,Regional Development +390835,Regional Development,Regional Development +390805,Regional Development,Regional Development +390781,Regional Development,Regional Development +390717,Regional Development,Regional Development +390714,Regional Development,Regional Development +390713,Regional Development,Regional Development +390707,Regional Development,Regional Development +390699,Regional Development,Regional Development +390691,Regional Development,Regional Development +390688,Regional Development,Regional Development +390682,Regional Development,Regional Development +390672,Regional Development,Regional Development +387538,Regional Development,Regional Development +387536,Regional Development,Regional Development +387522,Regional Development,Regional Development +385064,Regional Development,Regional Development +385063,Regional Development,Regional Development +382170,Regional Development,Regional Development +380543,Regional Development,Regional Development +380542,Regional Development,Regional Development +380540,Regional Development,Regional Development +380539,Regional Development,Regional Development +380521,Regional Development,Regional Development +379665,Regional Development,Regional Development +378656,Regional Development,Regional Development +378652,Regional Development,Regional Development +378650,Regional Development,Regional Development +378629,Regional Development,Regional Development +377567,Regional Development,Regional Development +377284,Regional Development,Regional Development +377282,Regional Development,Regional Development +377276,Regional Development,Regional Development +377273,Regional Development,Regional Development +377271,Regional Development,Regional Development +377263,Regional Development,Regional Development +377260,Regional Development,Regional Development +376753,Regional Development,Regional Development +376750,Regional Development,Regional Development +376749,Regional Development,Regional Development +376736,Regional Development,Regional Development +376731,Regional Development,Regional Development +376729,Regional Development,Regional Development +374007,Regional Development,Regional Development +374006,Regional Development,Regional Development +373996,Regional Development,Regional Development +373995,Regional Development,Regional Development +190114,Industry,Industry +151497,Municipalities,Municipalities +151502,Municipalities,Municipalities +151504,Municipalities,Municipalities +260531,Taxation and Finance,Taxation and Finance +175156,Agriculture,Agriculture +175153,Health,Health +190114,Climate,Climate +163903,Transportation,Transportation +153135,Government Procurement,Government Procurement +151658,Transportation,Transportation +226727,Industry,Industry +152898,Employment and Training,Employment and Training +152881,Environment,Environment +398330,Infrastructure,Infrastructure +166015,International Relations,International Relations +156667,Security,Security +160697,Economic Development,Economic Development +151877,Climate,Climate +151877,Economic Development,Economic Development +151877,International Development,International Development +151904,Research and Development,Research and Development (R&D) +151916,Security,Security +313149,Consumer Issues,Questions touchant les consommateurs +151917,Security,Security +151918,Security,Security +151924,Security,Security +151927,Defence,Defence +153515,Government Procurement,Government Procurement +153515,Taxation and Finance,Taxation and Finance +153515,Transportation,Transportation +431719,Research and Development,Research and Development (R&D) +151977,Economic Development,Economic Development +151977,Tourism,Tourism +474911,Employment and Training,Employment and Training +152056,Pensions,Pensions +152061,Pensions,Pensions +152100,International Development,International Development +168123,International Development,International Development +152109,Economic Development,Développement économique +152129,Taxation and Finance,Taxation and Finance +152168,Pensions,Pensions +268709,Taxation and Finance,Taxation and Finance +424640,Security,Security +152220,Environment,Environment +152257,Taxation and Finance,Taxation and Finance +505051,Economic Development,Economic Development +152298,Research and Development,Research and Development (R&D) +487177,Economic Development,Economic Development +152358,Budget,Budget +152358,Economic Development,Economic Development +152362,Research and Development,Research and Development (R&D) +152366,Economic Development,Economic Development +162262,Agriculture,Agriculture +158735,International Trade,International Trade +373614,Security,Sécurité +192399,Intellectual Property,Intellectual Property +152879,International Trade,International Trade +392213,Security,Security +168778,Forestry,Forestry +168778,International Trade,International Trade +165825,Energy,Energy +165825,Environment,Environment +153536,Fisheries,Fisheries +157240,Justice and Law Enforcement,Justice and Law Enforcement +152478,Budget,Budget +233405,Environment,Environment +474444,Employment and Training,Employment and Training +156980,Intellectual Property,Intellectual Property +466185,Government Procurement,Government Procurement +228349,Transportation,Transportation +265290,Transportation,Transportation +167227,Agriculture,Agriculture +254296,Transportation,Transportation +156169,Infrastructure,Infrastructure +155466,Agriculture,Agriculture +158437,Economic Development,Economic Development +153780,Industry,Industry +152642,Tourism,Tourism +504369,Health,Health +433765,Infrastructure,Infrastructure +543157,Labour,Labour +467026,Mining,Mining +442183,Transportation,Transportation +153519,Taxation and Finance,Taxation and Finance +153296,Transportation,Transportation +375939,Pensions,Pensions +153196,Budget,Budget +153196,Climate,Climate +156148,Energy,Energy +153196,Transportation,Transportation +156685,Energy,Energy +156685,Industry,Industry +379404,Agriculture,Agriculture +490413,Justice and Law Enforcement,Justice and Law Enforcement +260531,Environment,Environment +153264,Taxation and Finance,Taxation and Finance +452850,Energy,Energy +152819,Industry,Industry +159322,Taxation and Finance,Taxation and Finance +159502,Industry,Industry +154329,Industry,Industry +154328,Industry,Industry +527835,Education,Education +321383,Employment and Training,Employment and Training +461263,Energy,Energy +321383,Environment,Environment +159377,Health,Health +263089,Immigration,Immigration +263111,Industry,Industry +460580,Infrastructure,Infrastructure +321383,International Development,International Development +527835,International Relations,International Relations +155069,Justice and Law Enforcement,Justice and Law Enforcement +192896,Mining,Mining +332989,Official Languages,Official Languages +461272,Regional Development,Regional Development +526720,Research and Development,Research and Development (R&D) +321383,Sports,Sports +495728,Consumer Issues,Consumer Issues +360103,International Relations,International Relations +192346,Security,Security +472875,Taxation and Finance,Taxation and Finance +472862,Transportation,Transportation +153003,Research and Development,Research and Development (R&D) +153004,Research and Development,Research and Development (R&D) +153017,Immigration,Immigration +181584,Defence,Defence +167279,Government Procurement,Government Procurement +181584,Security,Security +153408,Taxation and Finance,Taxation and Finance +190925,Economic Development,Economic Development +190925,Labour,Labour +501233,International Trade,Commerce international +444648,Budget,Budget +224690,Employment and Training,Employment and Training +153148,Municipalities,Municipalities +414432,Government Procurement,Government Procurement +381517,Energy,Energy +381514,Research and Development,Research and Development (R&D) +373991,Research and Development,Research and Development (R&D) +519882,Agriculture,Agriculture +465727,Budget,Budget +400765,Environment,Environment +400816,Transportation,Transportation +153381,Environment,Environment +153425,Climate,Climate +334566,Regional Development,Regional Development +382912,Budget,Budget +336035,Budget,Budget +502491,Climate,Climate +426783,Economic Development,Economic Development +195069,International Development,International Development +297021,Research and Development,Research and Development (R&D) +153470,Economic Development,Economic Development +153475,Economic Development,Economic Development +160224,Agriculture,Agriculture +163630,Energy,Energy +165063,Environment,Environment +163630,Taxation and Finance,Taxation and Finance +216151,Climate,Climate +435102,Industry,Industry +526500,Agriculture,Agriculture +313451,International Trade,International Trade +165890,Consumer Issues,Consumer Issues +252630,Budget,Budget +380332,Climate,Climate +489226,Economic Development,Economic Development +342571,Energy,Energy +325224,Municipalities,Municipalities +344547,Research and Development,Research and Development (R&D) +464660,Research and Development,Research and Development (R&D) +270509,Pensions,Pensions +155214,Economic Development,Développement économique +156801,Industry,Industry +156801,Small Business,Small Business +162834,Financial Institutions,Financial Institutions +156868,Industry,Industry +156868,Small Business,Small Business +159448,Industry,Industry +380278,Employment and Training,Employment and Training +153816,Consumer Issues,Consumer Issues +153816,Health,Health +153816,Small Business,Small Business +375321,Health,Health +153877,Labour,Labour +177228,Economic Development,Economic Development +173437,Employment and Training,Employment and Training +177206,Energy,Energy +177206,Municipalities,Municipalities +173440,Research and Development,Research and Development (R&D) +170684,Security,Security +154370,Industry,Industry +155210,Sports,Sports +157949,Infrastructure,Infrastructure +156636,Regional Development,Regional Development +156636,Transportation,Transportation +189345,Agriculture,Agriculture +373994,Regional Development,Regional Development +373993,Regional Development,Regional Development +373992,Regional Development,Regional Development +373990,Regional Development,Regional Development +373989,Regional Development,Regional Development +373987,Regional Development,Regional Development +373986,Regional Development,Regional Development +368231,Regional Development,Regional Development +368230,Regional Development,Regional Development +483094,Budget,Budget +471655,Budget,Budget +187469,Budget,Budget +181524,Budget,Budget +445830,Budget,Budget +434148,Budget,Budget +457281,Budget,Budget +502489,Climate,Climate +502488,Climate,Climate +195047,Climate,Climate +424269,Climate,Climate +422545,Climate,Climate +422544,Climate,Climate +374964,Climate,Climate +502487,Climate,Climate +499449,Climate,Climate +488232,Climate,Climate +488231,Climate,Climate +488230,Climate,Climate +485231,Climate,Climate +482391,Climate,Climate +478099,Climate,Climate +478095,Climate,Climate +468427,Climate,Climate +468426,Climate,Climate +468419,Climate,Climate +468416,Climate,Climate +511381,Climate,Climate +511379,Climate,Climate +508859,Climate,Climate +505825,Climate,Climate +426780,Economic Development,Economic Development +511385,Economic Development,Economic Development +227050,Economic Development,Economic Development +227048,Economic Development,Economic Development +227047,Economic Development,Economic Development +216607,Economic Development,Economic Development +216590,Economic Development,Economic Development +216589,Economic Development,Economic Development +216588,Economic Development,Economic Development +195069,Economic Development,Economic Development +195055,Economic Development,Economic Development +195053,Economic Development,Economic Development +195052,Economic Development,Economic Development +381382,Economic Development,Economic Development +372782,Economic Development,Economic Development +372774,Economic Development,Economic Development +357992,Economic Development,Economic Development +322351,Economic Development,Economic Development +319243,Economic Development,Economic Development +232429,Economic Development,Economic Development +227065,Economic Development,Economic Development +227062,Economic Development,Economic Development +227061,Economic Development,Economic Development +227060,Economic Development,Economic Development +227056,Economic Development,Economic Development +508874,Economic Development,Economic Development +508854,Economic Development,Economic Development +475888,Economic Development,Economic Development +475881,Economic Development,Economic Development +473498,Economic Development,Economic Development +473482,Economic Development,Economic Development +473467,Economic Development,Economic Development +473453,Economic Development,Economic Development +470853,Economic Development,Economic Development +470688,Economic Development,Economic Development +470677,Economic Development,Economic Development +470667,Economic Development,Economic Development +468425,Economic Development,Economic Development +468390,Economic Development,Economic Development +459623,Economic Development,Economic Development +457287,Economic Development,Economic Development +457284,Economic Development,Economic Development +457281,Economic Development,Economic Development +454826,Economic Development,Economic Development +454808,Economic Development,Economic Development +454806,Economic Development,Economic Development +454804,Economic Development,Economic Development +454802,Economic Development,Economic Development +454801,Economic Development,Economic Development +454799,Economic Development,Economic Development +454797,Economic Development,Economic Development +454794,Economic Development,Economic Development +454792,Economic Development,Economic Development +454790,Economic Development,Economic Development +454788,Economic Development,Economic Development +451594,Economic Development,Economic Development +451593,Economic Development,Economic Development +451591,Economic Development,Economic Development +451589,Economic Development,Economic Development +451587,Economic Development,Economic Development +451586,Economic Development,Economic Development +451585,Economic Development,Economic Development +451584,Economic Development,Economic Development +451583,Economic Development,Economic Development +451582,Economic Development,Economic Development +450301,Economic Development,Economic Development +449788,Economic Development,Economic Development +449787,Economic Development,Economic Development +449785,Economic Development,Economic Development +426791,Economic Development,Economic Development +426790,Economic Development,Economic Development +426788,Economic Development,Economic Development +426787,Economic Development,Economic Development +426786,Economic Development,Economic Development +426785,Economic Development,Economic Development +195057,International Development,International Development +322351,International Development,International Development +211829,International Development,International Development +195075,International Development,International Development +297019,Research and Development,Research and Development (R&D) +297018,Research and Development,Research and Development (R&D) +336036,Research and Development,Research and Development (R&D) +160225,Energy,Energy +160224,Energy,Energy +165064,Energy,Energy +165063,Energy,Energy +163630,Environment,Environment +160225,Environment,Environment +165064,Environment,Environment +216150,Climate,Climate +398852,Climate,Climate +156998,Climate,Climate +216149,Climate,Climate +213047,Climate,Climate +207142,Climate,Climate +202417,Climate,Climate +202416,Climate,Climate +201121,Climate,Climate +193308,Climate,Climate +193302,Climate,Climate +188707,Climate,Climate +175196,Climate,Climate +171852,Climate,Climate +171148,Climate,Climate +171146,Climate,Climate +171145,Climate,Climate +170652,Climate,Climate +170651,Climate,Climate +374838,Climate,Climate +374835,Climate,Climate +374834,Climate,Climate +364899,Climate,Climate +361970,Climate,Climate +361968,Climate,Climate +327351,Climate,Climate +327350,Climate,Climate +324899,Climate,Climate +280757,Climate,Climate +273389,Climate,Climate +268067,Climate,Climate +268064,Climate,Climate +268062,Climate,Climate +268060,Climate,Climate +268058,Climate,Climate +268051,Climate,Climate +268049,Climate,Climate +245252,Climate,Climate +236652,Climate,Climate +236651,Climate,Climate +236650,Climate,Climate +233495,Climate,Climate +229751,Climate,Climate +227894,Climate,Climate +227893,Climate,Climate +227873,Climate,Climate +227871,Climate,Climate +223139,Climate,Climate +223136,Climate,Climate +216153,Climate,Climate +216152,Climate,Climate +435099,Industry,Industry +430414,Industry,Industry +153562,Industry,Industry +443662,Industry,Industry +441410,Industry,Industry +441409,Industry,Industry +441408,Industry,Industry +441406,Industry,Industry +441405,Industry,Industry +441403,Industry,Industry +441402,Industry,Industry +441400,Industry,Industry +441359,Industry,Industry +441358,Industry,Industry +518951,Agriculture,Agriculture +502794,Agriculture,Agriculture +374553,Agriculture,Agriculture +171959,Agriculture,Agriculture +461679,Agriculture,Agriculture +451438,Agriculture,Agriculture +537830,Agriculture,Agriculture +533670,Agriculture,Agriculture +533669,Agriculture,Agriculture +533668,Agriculture,Agriculture +533667,Agriculture,Agriculture +313449,International Trade,International Trade +163688,Consumer Issues,Consumer Issues +155050,Consumer Issues,Consumer Issues +186844,Consumer Issues,Consumer Issues +180372,Consumer Issues,Consumer Issues +179304,Consumer Issues,Consumer Issues +179264,Consumer Issues,Consumer Issues +173127,Consumer Issues,Consumer Issues +170584,Consumer Issues,Consumer Issues +165907,Consumer Issues,Consumer Issues +398043,Budget,Budget +382667,Budget,Budget +157729,Budget,Budget +190367,Budget,Budget +182044,Budget,Budget +169007,Budget,Budget +374049,Budget,Budget +374048,Budget,Budget +373615,Budget,Budget +368144,Budget,Budget +357138,Budget,Budget +357137,Budget,Budget +356883,Budget,Budget +350127,Budget,Budget +344547,Budget,Budget +344541,Budget,Budget +342439,Budget,Budget +330938,Budget,Budget +308089,Budget,Budget +300629,Budget,Budget +293009,Budget,Budget +288730,Budget,Budget +271253,Budget,Budget +269989,Budget,Budget +269809,Budget,Budget +257209,Budget,Budget +252633,Budget,Budget +252632,Budget,Budget +489044,Economic Development,Economic Development +489043,Economic Development,Economic Development +169007,Economic Development,Economic Development +293009,Economic Development,Economic Development +357138,Economic Development,Economic Development +357137,Economic Development,Economic Development +357136,Economic Development,Economic Development +350127,Economic Development,Economic Development +344541,Economic Development,Economic Development +325224,Economic Development,Economic Development +463851,Economic Development,Economic Development +446170,Economic Development,Economic Development +444216,Economic Development,Economic Development +443104,Economic Development,Economic Development +441087,Economic Development,Economic Development +440921,Economic Development,Economic Development +440920,Economic Development,Economic Development +440553,Economic Development,Economic Development +440551,Economic Development,Economic Development +429019,Economic Development,Economic Development +427529,Economic Development,Economic Development +427527,Economic Development,Economic Development +424768,Economic Development,Economic Development +424767,Economic Development,Economic Development +424766,Economic Development,Economic Development +397902,Economic Development,Economic Development +393973,Economic Development,Economic Development +382667,Economic Development,Economic Development +494351,Economic Development,Economic Development +489261,Economic Development,Economic Development +300629,Municipalities,Municipalities +427529,Municipalities,Municipalities +182044,Municipalities,Municipalities +155866,Municipalities,Municipalities +350127,Municipalities,Municipalities +464653,Research and Development,Research and Development (R&D) +461175,Research and Development,Research and Development (R&D) +159727,Research and Development,Research and Development (R&D) +159722,Research and Development,Research and Development (R&D) +159721,Research and Development,Research and Development (R&D) +159716,Research and Development,Research and Development (R&D) +159714,Research and Development,Research and Development (R&D) +159713,Research and Development,Research and Development (R&D) +154927,Research and Development,Research and Development (R&D) +154926,Research and Development,Research and Development (R&D) +153658,Research and Development,Research and Development (R&D) +302753,Research and Development,Research and Development (R&D) +302752,Research and Development,Research and Development (R&D) +302749,Research and Development,Research and Development (R&D) +302730,Research and Development,Research and Development (R&D) +296351,Research and Development,Research and Development (R&D) +296035,Research and Development,Research and Development (R&D) +296034,Research and Development,Research and Development (R&D) +296033,Research and Development,Research and Development (R&D) +296032,Research and Development,Research and Development (R&D) +296031,Research and Development,Research and Development (R&D) +296030,Research and Development,Research and Development (R&D) +296029,Research and Development,Research and Development (R&D) +291349,Research and Development,Research and Development (R&D) +290709,Research and Development,Research and Development (R&D) +273408,Research and Development,Research and Development (R&D) +269550,Research and Development,Research and Development (R&D) +269530,Research and Development,Research and Development (R&D) +259192,Research and Development,Research and Development (R&D) +259191,Research and Development,Research and Development (R&D) +259190,Research and Development,Research and Development (R&D) +259189,Research and Development,Research and Development (R&D) +250683,Research and Development,Research and Development (R&D) +250659,Research and Development,Research and Development (R&D) +245550,Research and Development,Research and Development (R&D) +245548,Research and Development,Research and Development (R&D) +245547,Research and Development,Research and Development (R&D) +245311,Research and Development,Research and Development (R&D) +237249,Research and Development,Research and Development (R&D) +216335,Research and Development,Research and Development (R&D) +216333,Research and Development,Research and Development (R&D) +216330,Research and Development,Research and Development (R&D) +212527,Research and Development,Research and Development (R&D) +212293,Research and Development,Research and Development (R&D) +212290,Research and Development,Research and Development (R&D) +212287,Research and Development,Research and Development (R&D) +212267,Research and Development,Research and Development (R&D) +212260,Research and Development,Research and Development (R&D) +194853,Research and Development,Research and Development (R&D) +194848,Research and Development,Research and Development (R&D) +194845,Research and Development,Research and Development (R&D) +194842,Research and Development,Research and Development (R&D) +194839,Research and Development,Research and Development (R&D) +194838,Research and Development,Research and Development (R&D) +194832,Research and Development,Research and Development (R&D) +177826,Research and Development,Research and Development (R&D) +177825,Research and Development,Research and Development (R&D) +173707,Research and Development,Research and Development (R&D) +168924,Research and Development,Research and Development (R&D) +168923,Research and Development,Research and Development (R&D) +168920,Research and Development,Research and Development (R&D) +166041,Research and Development,Research and Development (R&D) +162593,Research and Development,Research and Development (R&D) +160394,Research and Development,Research and Development (R&D) +159730,Research and Development,Research and Development (R&D) +159729,Research and Development,Research and Development (R&D) +385739,Research and Development,Research and Development (R&D) +385736,Research and Development,Research and Development (R&D) +385722,Research and Development,Research and Development (R&D) +385258,Research and Development,Research and Development (R&D) +385248,Research and Development,Research and Development (R&D) +385247,Research and Development,Research and Development (R&D) +385193,Research and Development,Research and Development (R&D) +385187,Research and Development,Research and Development (R&D) +385154,Research and Development,Research and Development (R&D) +385148,Research and Development,Research and Development (R&D) +385139,Research and Development,Research and Development (R&D) +385133,Research and Development,Research and Development (R&D) +383881,Research and Development,Research and Development (R&D) +383880,Research and Development,Research and Development (R&D) +383817,Research and Development,Research and Development (R&D) +383796,Research and Development,Research and Development (R&D) +383789,Research and Development,Research and Development (R&D) +383780,Research and Development,Research and Development (R&D) +383777,Research and Development,Research and Development (R&D) +383773,Research and Development,Research and Development (R&D) +383771,Research and Development,Research and Development (R&D) +383768,Research and Development,Research and Development (R&D) +383764,Research and Development,Research and Development (R&D) +383761,Research and Development,Research and Development (R&D) +383754,Research and Development,Research and Development (R&D) +383750,Research and Development,Research and Development (R&D) +383744,Research and Development,Research and Development (R&D) +383738,Research and Development,Research and Development (R&D) +383723,Research and Development,Research and Development (R&D) +382473,Research and Development,Research and Development (R&D) +382471,Research and Development,Research and Development (R&D) +382470,Research and Development,Research and Development (R&D) +382468,Research and Development,Research and Development (R&D) +381611,Research and Development,Research and Development (R&D) +381610,Research and Development,Research and Development (R&D) +381609,Research and Development,Research and Development (R&D) +379972,Research and Development,Research and Development (R&D) +377072,Research and Development,Research and Development (R&D) +377069,Research and Development,Research and Development (R&D) +377063,Research and Development,Research and Development (R&D) +377054,Research and Development,Research and Development (R&D) +376811,Research and Development,Research and Development (R&D) +374655,Research and Development,Research and Development (R&D) +374624,Research and Development,Research and Development (R&D) +372741,Research and Development,Research and Development (R&D) +372729,Research and Development,Research and Development (R&D) +372725,Research and Development,Research and Development (R&D) +372698,Research and Development,Research and Development (R&D) +372687,Research and Development,Research and Development (R&D) +372678,Research and Development,Research and Development (R&D) +372645,Research and Development,Research and Development (R&D) +369120,Research and Development,Research and Development (R&D) +369063,Research and Development,Research and Development (R&D) +369050,Research and Development,Research and Development (R&D) +368951,Research and Development,Research and Development (R&D) +368944,Research and Development,Research and Development (R&D) +368943,Research and Development,Research and Development (R&D) +368942,Research and Development,Research and Development (R&D) +366770,Research and Development,Research and Development (R&D) +366769,Research and Development,Research and Development (R&D) +365337,Research and Development,Research and Development (R&D) +365303,Research and Development,Research and Development (R&D) +365302,Research and Development,Research and Development (R&D) +365301,Research and Development,Research and Development (R&D) +365300,Research and Development,Research and Development (R&D) +365298,Research and Development,Research and Development (R&D) +365295,Research and Development,Research and Development (R&D) +365289,Research and Development,Research and Development (R&D) +365278,Research and Development,Research and Development (R&D) +362064,Research and Development,Research and Development (R&D) +362063,Research and Development,Research and Development (R&D) +361027,Research and Development,Research and Development (R&D) +355906,Research and Development,Research and Development (R&D) +353641,Research and Development,Research and Development (R&D) +347361,Research and Development,Research and Development (R&D) +347359,Research and Development,Research and Development (R&D) +347358,Research and Development,Research and Development (R&D) +347355,Research and Development,Research and Development (R&D) +347349,Research and Development,Research and Development (R&D) +340956,Research and Development,Research and Development (R&D) +333738,Research and Development,Research and Development (R&D) +328693,Research and Development,Research and Development (R&D) +328692,Research and Development,Research and Development (R&D) +328690,Research and Development,Research and Development (R&D) +328689,Research and Development,Research and Development (R&D) +313093,Research and Development,Research and Development (R&D) +313091,Research and Development,Research and Development (R&D) +313089,Research and Development,Research and Development (R&D) +313077,Research and Development,Research and Development (R&D) +310553,Research and Development,Research and Development (R&D) +310552,Research and Development,Research and Development (R&D) +310550,Research and Development,Research and Development (R&D) +310549,Research and Development,Research and Development (R&D) +310409,Research and Development,Research and Development (R&D) +310401,Research and Development,Research and Development (R&D) +302755,Research and Development,Research and Development (R&D) +459739,Research and Development,Research and Development (R&D) +458317,Research and Development,Research and Development (R&D) +458315,Research and Development,Research and Development (R&D) +458314,Research and Development,Research and Development (R&D) +458313,Research and Development,Research and Development (R&D) +457708,Research and Development,Research and Development (R&D) +454909,Research and Development,Research and Development (R&D) +454908,Research and Development,Research and Development (R&D) +454907,Research and Development,Research and Development (R&D) +452277,Research and Development,Research and Development (R&D) +447359,Research and Development,Research and Development (R&D) +447353,Research and Development,Research and Development (R&D) +447352,Research and Development,Research and Development (R&D) +447351,Research and Development,Research and Development (R&D) +447350,Research and Development,Research and Development (R&D) +447349,Research and Development,Research and Development (R&D) +445603,Research and Development,Research and Development (R&D) +445600,Research and Development,Research and Development (R&D) +445599,Research and Development,Research and Development (R&D) +445594,Research and Development,Research and Development (R&D) +445593,Research and Development,Research and Development (R&D) +445586,Research and Development,Research and Development (R&D) +445580,Research and Development,Research and Development (R&D) +445577,Research and Development,Research and Development (R&D) +445575,Research and Development,Research and Development (R&D) +445574,Research and Development,Research and Development (R&D) +445573,Research and Development,Research and Development (R&D) +445571,Research and Development,Research and Development (R&D) +443805,Research and Development,Research and Development (R&D) +443803,Research and Development,Research and Development (R&D) +443802,Research and Development,Research and Development (R&D) +439480,Research and Development,Research and Development (R&D) +439477,Research and Development,Research and Development (R&D) +439474,Research and Development,Research and Development (R&D) +439462,Research and Development,Research and Development (R&D) +426820,Research and Development,Research and Development (R&D) +426797,Research and Development,Research and Development (R&D) +420224,Research and Development,Research and Development (R&D) +420215,Research and Development,Research and Development (R&D) +418749,Research and Development,Research and Development (R&D) +417934,Research and Development,Research and Development (R&D) +416267,Research and Development,Research and Development (R&D) +416259,Research and Development,Research and Development (R&D) +416240,Research and Development,Research and Development (R&D) +416239,Research and Development,Research and Development (R&D) +413682,Research and Development,Research and Development (R&D) +413651,Research and Development,Research and Development (R&D) +413647,Research and Development,Research and Development (R&D) +413644,Research and Development,Research and Development (R&D) +413641,Research and Development,Research and Development (R&D) +413610,Research and Development,Research and Development (R&D) +413222,Research and Development,Research and Development (R&D) +413206,Research and Development,Research and Development (R&D) +413204,Research and Development,Research and Development (R&D) +413200,Research and Development,Research and Development (R&D) +413169,Research and Development,Research and Development (R&D) +413163,Research and Development,Research and Development (R&D) +413142,Research and Development,Research and Development (R&D) +410171,Research and Development,Research and Development (R&D) +410167,Research and Development,Research and Development (R&D) +410166,Research and Development,Research and Development (R&D) +410165,Research and Development,Research and Development (R&D) +410163,Research and Development,Research and Development (R&D) +403979,Research and Development,Research and Development (R&D) +403973,Research and Development,Research and Development (R&D) +403908,Research and Development,Research and Development (R&D) +403903,Research and Development,Research and Development (R&D) +403824,Research and Development,Research and Development (R&D) +403816,Research and Development,Research and Development (R&D) +400576,Research and Development,Research and Development (R&D) +400567,Research and Development,Research and Development (R&D) +399007,Research and Development,Research and Development (R&D) +399006,Research and Development,Research and Development (R&D) +399001,Research and Development,Research and Development (R&D) +394340,Research and Development,Research and Development (R&D) +394325,Research and Development,Research and Development (R&D) +394319,Research and Development,Research and Development (R&D) +392691,Research and Development,Research and Development (R&D) +392681,Research and Development,Research and Development (R&D) +392667,Research and Development,Research and Development (R&D) +392662,Research and Development,Research and Development (R&D) +391262,Research and Development,Research and Development (R&D) +391242,Research and Development,Research and Development (R&D) +388209,Research and Development,Research and Development (R&D) +544064,Research and Development,Research and Development (R&D) +544061,Research and Development,Research and Development (R&D) +544058,Research and Development,Research and Development (R&D) +544056,Research and Development,Research and Development (R&D) +544050,Research and Development,Research and Development (R&D) +544040,Research and Development,Research and Development (R&D) +544036,Research and Development,Research and Development (R&D) +542028,Research and Development,Research and Development (R&D) +542026,Research and Development,Research and Development (R&D) +542025,Research and Development,Research and Development (R&D) +542023,Research and Development,Research and Development (R&D) +542020,Research and Development,Research and Development (R&D) +542015,Research and Development,Research and Development (R&D) +542013,Research and Development,Research and Development (R&D) +542010,Research and Development,Research and Development (R&D) +542009,Research and Development,Research and Development (R&D) +542007,Research and Development,Research and Development (R&D) +540270,Research and Development,Research and Development (R&D) +540269,Research and Development,Research and Development (R&D) +540265,Research and Development,Research and Development (R&D) +540235,Research and Development,Research and Development (R&D) +540234,Research and Development,Research and Development (R&D) +540233,Research and Development,Research and Development (R&D) +540231,Research and Development,Research and Development (R&D) +540230,Research and Development,Research and Development (R&D) +540215,Research and Development,Research and Development (R&D) +540203,Research and Development,Research and Development (R&D) +540201,Research and Development,Research and Development (R&D) +538498,Research and Development,Research and Development (R&D) +538494,Research and Development,Research and Development (R&D) +538492,Research and Development,Research and Development (R&D) +538485,Research and Development,Research and Development (R&D) +538479,Research and Development,Research and Development (R&D) +538475,Research and Development,Research and Development (R&D) +538379,Research and Development,Research and Development (R&D) +538376,Research and Development,Research and Development (R&D) +536289,Research and Development,Research and Development (R&D) +535565,Research and Development,Research and Development (R&D) +534975,Research and Development,Research and Development (R&D) +534974,Research and Development,Research and Development (R&D) +531863,Research and Development,Research and Development (R&D) +531860,Research and Development,Research and Development (R&D) +531848,Research and Development,Research and Development (R&D) +531844,Research and Development,Research and Development (R&D) +531833,Research and Development,Research and Development (R&D) +531830,Research and Development,Research and Development (R&D) +531827,Research and Development,Research and Development (R&D) +531819,Research and Development,Research and Development (R&D) +531801,Research and Development,Research and Development (R&D) +531799,Research and Development,Research and Development (R&D) +531788,Research and Development,Research and Development (R&D) +531779,Research and Development,Research and Development (R&D) +531764,Research and Development,Research and Development (R&D) +529366,Research and Development,Research and Development (R&D) +529364,Research and Development,Research and Development (R&D) +529362,Research and Development,Research and Development (R&D) +529361,Research and Development,Research and Development (R&D) +529359,Research and Development,Research and Development (R&D) +529351,Research and Development,Research and Development (R&D) +529328,Research and Development,Research and Development (R&D) +529249,Research and Development,Research and Development (R&D) +529208,Research and Development,Research and Development (R&D) +529189,Research and Development,Research and Development (R&D) +526650,Research and Development,Research and Development (R&D) +526648,Research and Development,Research and Development (R&D) +526646,Research and Development,Research and Development (R&D) +526645,Research and Development,Research and Development (R&D) +526640,Research and Development,Research and Development (R&D) +526638,Research and Development,Research and Development (R&D) +526636,Research and Development,Research and Development (R&D) +526631,Research and Development,Research and Development (R&D) +526626,Research and Development,Research and Development (R&D) +526625,Research and Development,Research and Development (R&D) +526622,Research and Development,Research and Development (R&D) +526621,Research and Development,Research and Development (R&D) +526620,Research and Development,Research and Development (R&D) +526618,Research and Development,Research and Development (R&D) +526617,Research and Development,Research and Development (R&D) +526611,Research and Development,Research and Development (R&D) +526610,Research and Development,Research and Development (R&D) +523266,Research and Development,Research and Development (R&D) +523265,Research and Development,Research and Development (R&D) +523264,Research and Development,Research and Development (R&D) +523263,Research and Development,Research and Development (R&D) +523262,Research and Development,Research and Development (R&D) +523259,Research and Development,Research and Development (R&D) +523258,Research and Development,Research and Development (R&D) +523254,Research and Development,Research and Development (R&D) +523252,Research and Development,Research and Development (R&D) +523250,Research and Development,Research and Development (R&D) +520371,Research and Development,Research and Development (R&D) +520084,Research and Development,Research and Development (R&D) +520083,Research and Development,Research and Development (R&D) +520082,Research and Development,Research and Development (R&D) +520081,Research and Development,Research and Development (R&D) +520080,Research and Development,Research and Development (R&D) +520079,Research and Development,Research and Development (R&D) +520078,Research and Development,Research and Development (R&D) +520076,Research and Development,Research and Development (R&D) +520074,Research and Development,Research and Development (R&D) +518279,Research and Development,Research and Development (R&D) +518278,Research and Development,Research and Development (R&D) +518277,Research and Development,Research and Development (R&D) +518276,Research and Development,Research and Development (R&D) +518274,Research and Development,Research and Development (R&D) +518273,Research and Development,Research and Development (R&D) +518262,Research and Development,Research and Development (R&D) +518258,Research and Development,Research and Development (R&D) +518243,Research and Development,Research and Development (R&D) +518240,Research and Development,Research and Development (R&D) +518237,Research and Development,Research and Development (R&D) +516210,Research and Development,Research and Development (R&D) +515889,Research and Development,Research and Development (R&D) +515888,Research and Development,Research and Development (R&D) +515887,Research and Development,Research and Development (R&D) +515886,Research and Development,Research and Development (R&D) +515885,Research and Development,Research and Development (R&D) +515884,Research and Development,Research and Development (R&D) +515883,Research and Development,Research and Development (R&D) +515882,Research and Development,Research and Development (R&D) +515878,Research and Development,Research and Development (R&D) +514817,Research and Development,Research and Development (R&D) +514816,Research and Development,Research and Development (R&D) +514815,Research and Development,Research and Development (R&D) +514254,Research and Development,Research and Development (R&D) +511354,Research and Development,Research and Development (R&D) +511348,Research and Development,Research and Development (R&D) +508254,Research and Development,Research and Development (R&D) +508218,Research and Development,Research and Development (R&D) +508214,Research and Development,Research and Development (R&D) +508212,Research and Development,Research and Development (R&D) +508196,Research and Development,Research and Development (R&D) +508192,Research and Development,Research and Development (R&D) +508187,Research and Development,Research and Development (R&D) +508182,Research and Development,Research and Development (R&D) +505266,Research and Development,Research and Development (R&D) +505258,Research and Development,Research and Development (R&D) +505251,Research and Development,Research and Development (R&D) +505232,Research and Development,Research and Development (R&D) +502747,Research and Development,Research and Development (R&D) +502739,Research and Development,Research and Development (R&D) +502733,Research and Development,Research and Development (R&D) +499470,Research and Development,Research and Development (R&D) +499458,Research and Development,Research and Development (R&D) +499456,Research and Development,Research and Development (R&D) +495588,Research and Development,Research and Development (R&D) +495587,Research and Development,Research and Development (R&D) +495584,Research and Development,Research and Development (R&D) +495577,Research and Development,Research and Development (R&D) +493660,Research and Development,Research and Development (R&D) +493658,Research and Development,Research and Development (R&D) +493649,Research and Development,Research and Development (R&D) +493645,Research and Development,Research and Development (R&D) +493643,Research and Development,Research and Development (R&D) +493640,Research and Development,Research and Development (R&D) +493634,Research and Development,Research and Development (R&D) +493623,Research and Development,Research and Development (R&D) +493620,Research and Development,Research and Development (R&D) +491318,Research and Development,Research and Development (R&D) +491305,Research and Development,Research and Development (R&D) +491299,Research and Development,Research and Development (R&D) +491296,Research and Development,Research and Development (R&D) +491294,Research and Development,Research and Development (R&D) +491275,Research and Development,Research and Development (R&D) +491268,Research and Development,Research and Development (R&D) +491233,Research and Development,Research and Development (R&D) +491229,Research and Development,Research and Development (R&D) +491224,Research and Development,Research and Development (R&D) +484583,Research and Development,Research and Development (R&D) +470739,Research and Development,Research and Development (R&D) +246910,Pensions,Pensions +212437,Pensions,Pensions +153675,Pensions,Pensions +192134,Pensions,Pensions +192133,Pensions,Pensions +192130,Pensions,Pensions +192129,Pensions,Pensions +192128,Pensions,Pensions +192127,Pensions,Pensions +192122,Pensions,Pensions +192120,Pensions,Pensions +166226,Pensions,Pensions +380592,Pensions,Pensions +378256,Pensions,Pensions +375958,Pensions,Pensions +375956,Pensions,Pensions +375950,Pensions,Pensions +375936,Pensions,Pensions +375933,Pensions,Pensions +375930,Pensions,Pensions +375927,Pensions,Pensions +375925,Pensions,Pensions +375923,Pensions,Pensions +313793,Pensions,Pensions +308630,Pensions,Pensions +305689,Pensions,Pensions +155213,Economic Development,Développement économique +155212,Economic Development,Développement économique +155327,Economic Development,Développement économique +155215,Economic Development,Développement économique +156799,Industry,Industry +156798,Industry,Industry +156799,Small Business,Small Business +156798,Small Business,Small Business +162832,Financial Institutions,Financial Institutions +162831,Financial Institutions,Financial Institutions +175100,Financial Institutions,Financial Institutions +162886,Financial Institutions,Financial Institutions +370971,Employment and Training,Employment and Training +392274,Employment and Training,Employment and Training +310037,Employment and Training,Employment and Training +373277,Health,Health +373271,Health,Health +153877,Health,Health +350529,Health,Health +350528,Health,Health +350527,Health,Health +350524,Health,Health +397332,Health,Health +397331,Health,Health +397330,Health,Health +397329,Health,Health +397328,Health,Health +383034,Health,Health +383033,Health,Health +406424,Labour,Labour +177226,Economic Development,Economic Development +177206,Economic Development,Economic Development +173441,Economic Development,Economic Development +173433,Economic Development,Economic Development +166927,Economic Development,Economic Development +190411,Economic Development,Economic Development +190409,Economic Development,Economic Development +190408,Economic Development,Economic Development +185224,Economic Development,Economic Development +185204,Economic Development,Economic Development +185164,Economic Development,Economic Development +177244,Economic Development,Economic Development +177205,Municipalities,Municipalities +177204,Municipalities,Municipalities +173441,Municipalities,Municipalities +173438,Municipalities,Municipalities +173437,Municipalities,Municipalities +173435,Municipalities,Municipalities +173434,Municipalities,Municipalities +173433,Municipalities,Municipalities +170802,Municipalities,Municipalities +170800,Municipalities,Municipalities +170689,Municipalities,Municipalities +170688,Municipalities,Municipalities +170687,Municipalities,Municipalities +170684,Municipalities,Municipalities +166939,Municipalities,Municipalities +166934,Municipalities,Municipalities +166933,Municipalities,Municipalities +166929,Municipalities,Municipalities +166927,Municipalities,Municipalities +190413,Municipalities,Municipalities +190412,Municipalities,Municipalities +190411,Municipalities,Municipalities +190410,Municipalities,Municipalities +190409,Municipalities,Municipalities +190408,Municipalities,Municipalities +190407,Municipalities,Municipalities +185374,Municipalities,Municipalities +185224,Municipalities,Municipalities +185184,Municipalities,Municipalities +185144,Municipalities,Municipalities +177264,Municipalities,Municipalities +177244,Municipalities,Municipalities +177227,Municipalities,Municipalities +177226,Municipalities,Municipalities +170800,Research and Development,Research and Development (R&D) +166927,Research and Development,Research and Development (R&D) +185374,Research and Development,Research and Development (R&D) +167332,Security,Security +167330,Security,Security +190410,Security,Security +185373,Security,Security +185164,Security,Security +177244,Security,Security +177225,Security,Security +173441,Security,Security +170689,Security,Security +170688,Security,Security +170687,Security,Security +154369,Industry,Industry +154368,Industry,Industry +154373,Industry,Industry +154371,Industry,Industry +157948,Infrastructure,Infrastructure +157947,Infrastructure,Infrastructure +165360,Infrastructure,Infrastructure +165359,Infrastructure,Infrastructure +165357,Infrastructure,Infrastructure +165356,Infrastructure,Infrastructure +164884,Infrastructure,Infrastructure +157953,Infrastructure,Infrastructure +157952,Infrastructure,Infrastructure +157951,Infrastructure,Infrastructure +157950,Infrastructure,Infrastructure +156354,Regional Development,Regional Development +156353,Regional Development,Regional Development +181065,Regional Development,Regional Development +156354,Transportation,Transportation +156353,Transportation,Transportation +181065,Transportation,Transportation +158476,Agriculture,Agriculture +158459,Agriculture,Agriculture +158500,Agriculture,Agriculture +158483,Agriculture,Agriculture +158480,Agriculture,Agriculture +158478,Agriculture,Agriculture +158455,Economic Development,Economic Development +158452,Economic Development,Economic Development +162784,Economic Development,Economic Development +158500,Economic Development,Economic Development +158483,Economic Development,Economic Development +158480,Economic Development,Economic Development +158478,Economic Development,Economic Development +158477,Economic Development,Economic Development +158476,Economic Development,Economic Development +158459,Employment and Training,Employment and Training +158455,Employment and Training,Employment and Training +162784,Employment and Training,Employment and Training +158500,Employment and Training,Employment and Training +158483,Employment and Training,Employment and Training +158480,Employment and Training,Employment and Training +158478,Employment and Training,Employment and Training +158477,Employment and Training,Employment and Training +158500,Environment,Environment +158480,Environment,Environment +158453,Industry,Industry +158452,Industry,Industry +162784,Industry,Industry +158500,Industry,Industry +158483,Industry,Industry +158480,Industry,Industry +158478,Industry,Industry +158477,Industry,Industry +158476,Industry,Industry +158459,Industry,Industry +158453,International Trade,International Trade +162784,International Trade,International Trade +158500,International Trade,International Trade +158483,International Trade,International Trade +158480,International Trade,International Trade +158478,International Trade,International Trade +158477,International Trade,International Trade +158453,Mining,Mining +158452,Mining,Mining +162784,Mining,Mining +158500,Mining,Mining +158483,Mining,Mining +158480,Mining,Mining +158478,Mining,Mining +158477,Mining,Mining +158476,Mining,Mining +158459,Mining,Mining +158476,Transportation,Transportation +158459,Transportation,Transportation +158500,Transportation,Transportation +158483,Transportation,Transportation +158480,Transportation,Transportation +158478,Transportation,Transportation +490888,Privacy and Access to Information,Privacy and Access to Information +483995,Privacy and Access to Information,Privacy and Access to Information +428542,International Development,International Development +428540,International Development,International Development +159383,International Development,International Development +156890,International Development,International Development +156883,International Development,International Development +156814,International Development,International Development +156810,International Development,International Development +156809,International Development,International Development +167751,International Development,International Development +167750,International Development,International Development +167746,International Development,International Development +167745,International Development,International Development +167743,International Development,International Development +167538,International Development,International Development +167537,International Development,International Development +167536,International Development,International Development +167533,International Development,International Development +167532,International Development,International Development +167530,International Development,International Development +167528,International Development,International Development +167518,International Development,International Development +167513,International Development,International Development +167504,International Development,International Development +165061,International Development,International Development +163295,International Development,International Development +162528,International Development,International Development +162433,International Development,International Development +162422,International Development,International Development +161297,International Development,International Development +185937,International Development,International Development +177786,International Development,International Development +177785,International Development,International Development +177784,International Development,International Development +173581,International Development,International Development +173580,International Development,International Development +173579,International Development,International Development +173577,International Development,International Development +173573,International Development,International Development +171914,International Development,International Development +171913,International Development,International Development +171912,International Development,International Development +171911,International Development,International Development +171910,International Development,International Development +171909,International Development,International Development +171908,International Development,International Development +171907,International Development,International Development +170771,International Development,International Development +170769,International Development,International Development +170674,International Development,International Development +169365,International Development,International Development +167820,International Development,International Development +167819,International Development,International Development +167818,International Development,International Development +167817,International Development,International Development +167816,International Development,International Development +167815,International Development,International Development +167814,International Development,International Development +167813,International Development,International Development +167812,International Development,International Development +167811,International Development,International Development +167810,International Development,International Development +167808,International Development,International Development +167807,International Development,International Development +167806,International Development,International Development +167805,International Development,International Development +167804,International Development,International Development +167803,International Development,International Development +167802,International Development,International Development +167752,International Development,International Development +314876,International Development,International Development +312989,International Development,International Development +312634,International Development,International Development +312633,International Development,International Development +312632,International Development,International Development +312631,International Development,International Development +312630,International Development,International Development +312629,International Development,International Development +308147,International Development,International Development +308138,International Development,International Development +302356,International Development,International Development +301289,International Development,International Development +300230,International Development,International Development +300229,International Development,International Development +300216,International Development,International Development +298369,International Development,International Development +296510,International Development,International Development +296509,International Development,International Development +289209,International Development,International Development +289150,International Development,International Development +286616,International Development,International Development +286612,International Development,International Development +281349,International Development,International Development +281329,International Development,International Development +281289,International Development,International Development +281269,International Development,International Development +281250,International Development,International Development +275593,International Development,International Development +275592,International Development,International Development +275590,International Development,International Development +273492,International Development,International Development +273486,International Development,International Development +273481,International Development,International Development +269372,International Development,International Development +264139,International Development,International Development +264134,International Development,International Development +249457,International Development,International Development +245013,International Development,International Development +245012,International Development,International Development +241210,International Development,International Development +241208,International Development,International Development +241206,International Development,International Development +241202,International Development,International Development +241190,International Development,International Development +236551,International Development,International Development +236550,International Development,International Development +236549,International Development,International Development +233826,International Development,International Development +233823,International Development,International Development +233818,International Development,International Development +233793,International Development,International Development +233790,International Development,International Development +233785,International Development,International Development +230208,International Development,International Development +230207,International Development,International Development +230206,International Development,International Development +230205,International Development,International Development +230204,International Development,International Development +226637,International Development,International Development +226634,International Development,International Development +226633,International Development,International Development +226632,International Development,International Development +226630,International Development,International Development +226629,International Development,International Development +223581,International Development,International Development +223580,International Development,International Development +216649,International Development,International Development +216648,International Development,International Development +216647,International Development,International Development +212442,International Development,International Development +212439,International Development,International Development +212431,International Development,International Development +212424,International Development,International Development +212418,International Development,International Development +207550,International Development,International Development +207548,International Development,International Development +207546,International Development,International Development +207545,International Development,International Development +207543,International Development,International Development +204068,International Development,International Development +204067,International Development,International Development +202890,International Development,International Development +200518,International Development,International Development +200516,International Development,International Development +200512,International Development,International Development +200505,International Development,International Development +200499,International Development,International Development +200464,International Development,International Development +194990,International Development,International Development +194989,International Development,International Development +194987,International Development,International Development +194984,International Development,International Development +194983,International Development,International Development +194980,International Development,International Development +194977,International Development,International Development +194973,International Development,International Development +194971,International Development,International Development +194967,International Development,International Development +189548,International Development,International Development +189536,International Development,International Development +189533,International Development,International Development +189530,International Development,International Development +189528,International Development,International Development +189524,International Development,International Development +428534,International Development,International Development +428533,International Development,International Development +428532,International Development,International Development +428531,International Development,International Development +425805,International Development,International Development +425801,International Development,International Development +425800,International Development,International Development +425798,International Development,International Development +425796,International Development,International Development +425794,International Development,International Development +425792,International Development,International Development +425788,International Development,International Development +425783,International Development,International Development +423764,International Development,International Development +423762,International Development,International Development +423761,International Development,International Development +423759,International Development,International Development +423758,International Development,International Development +423757,International Development,International Development +421353,International Development,International Development +421343,International Development,International Development +421341,International Development,International Development +421339,International Development,International Development +421338,International Development,International Development +421337,International Development,International Development +421336,International Development,International Development +421335,International Development,International Development +419211,International Development,International Development +419209,International Development,International Development +418179,International Development,International Development +417534,International Development,International Development +415238,International Development,International Development +415237,International Development,International Development +412155,International Development,International Development +412154,International Development,International Development +412149,International Development,International Development +412147,International Development,International Development +412145,International Development,International Development +409430,International Development,International Development +409358,International Development,International Development +409357,International Development,International Development +409356,International Development,International Development +409355,International Development,International Development +409354,International Development,International Development +409352,International Development,International Development +409350,International Development,International Development +409349,International Development,International Development +409347,International Development,International Development +409344,International Development,International Development +409343,International Development,International Development +409341,International Development,International Development +407507,International Development,International Development +407505,International Development,International Development +407504,International Development,International Development +406583,International Development,International Development +404764,International Development,International Development +404763,International Development,International Development +404762,International Development,International Development +404761,International Development,International Development +404760,International Development,International Development +404759,International Development,International Development +404758,International Development,International Development +404757,International Development,International Development +404756,International Development,International Development +404755,International Development,International Development +404754,International Development,International Development +404753,International Development,International Development +402166,International Development,International Development +402164,International Development,International Development +402163,International Development,International Development +402162,International Development,International Development +402161,International Development,International Development +402160,International Development,International Development +402159,International Development,International Development +402158,International Development,International Development +398617,International Development,International Development +398615,International Development,International Development +398614,International Development,International Development +398612,International Development,International Development +395676,International Development,International Development +395675,International Development,International Development +395674,International Development,International Development +395673,International Development,International Development +395672,International Development,International Development +395671,International Development,International Development +393916,International Development,International Development +393332,International Development,International Development +392287,International Development,International Development +392285,International Development,International Development +392284,International Development,International Development +389550,International Development,International Development +389168,International Development,International Development +389167,International Development,International Development +389166,International Development,International Development +389165,International Development,International Development +389164,International Development,International Development +389163,International Development,International Development +389162,International Development,International Development +387042,International Development,International Development +387041,International Development,International Development +387040,International Development,International Development +387039,International Development,International Development +385055,International Development,International Development +385054,International Development,International Development +385053,International Development,International Development +383443,International Development,International Development +383442,International Development,International Development +383441,International Development,International Development +383440,International Development,International Development +382405,International Development,International Development +382404,International Development,International Development +382403,International Development,International Development +380607,International Development,International Development +380158,International Development,International Development +380157,International Development,International Development +378873,International Development,International Development +378872,International Development,International Development +376182,International Development,International Development +376179,International Development,International Development +376178,International Development,International Development +376177,International Development,International Development +376176,International Development,International Development +376175,International Development,International Development +376173,International Development,International Development +376166,International Development,International Development +374721,International Development,International Development +374714,International Development,International Development +374712,International Development,International Development +374708,International Development,International Development +374549,International Development,International Development +374540,International Development,International Development +374530,International Development,International Development +374529,International Development,International Development +374528,International Development,International Development +374527,International Development,International Development +374525,International Development,International Development +371403,International Development,International Development +371402,International Development,International Development +371401,International Development,International Development +366367,International Development,International Development +366208,International Development,International Development +366206,International Development,International Development +365239,International Development,International Development +365030,International Development,International Development +365028,International Development,International Development +365026,International Development,International Development +358047,International Development,International Development +358046,International Development,International Development +358045,International Development,International Development +358043,International Development,International Development +355520,International Development,International Development +355519,International Development,International Development +355518,International Development,International Development +353150,International Development,International Development +350979,International Development,International Development +350976,International Development,International Development +348678,International Development,International Development +348677,International Development,International Development +348675,International Development,International Development +344761,International Development,International Development +344760,International Development,International Development +343688,International Development,International Development +343684,International Development,International Development +343682,International Development,International Development +343679,International Development,International Development +341539,International Development,International Development +341538,International Development,International Development +337862,International Development,International Development +337860,International Development,International Development +335303,International Development,International Development +335302,International Development,International Development +335301,International Development,International Development +333126,International Development,International Development +333125,International Development,International Development +333124,International Development,International Development +333123,International Development,International Development +333122,International Development,International Development +333120,International Development,International Development +331482,International Development,International Development +331479,International Development,International Development +329610,International Development,International Development +329609,International Development,International Development +327098,International Development,International Development +327097,International Development,International Development +327096,International Development,International Development +327095,International Development,International Development +327094,International Development,International Development +324242,International Development,International Development +324241,International Development,International Development +324240,International Development,International Development +324239,International Development,International Development +324238,International Development,International Development +321859,International Development,International Development +321557,International Development,International Development +321554,International Development,International Development +321553,International Development,International Development +321552,International Development,International Development +321551,International Development,International Development +321550,International Development,International Development +321549,International Development,International Development +318660,International Development,International Development +318659,International Development,International Development +318658,International Development,International Development +318657,International Development,International Development +318655,International Development,International Development +318653,International Development,International Development +318652,International Development,International Development +314881,International Development,International Development +314877,International Development,International Development +543169,International Development,International Development +543165,International Development,International Development +541395,International Development,International Development +541376,International Development,International Development +538908,International Development,International Development +538848,International Development,International Development +538846,International Development,International Development +536880,International Development,International Development +536879,International Development,International Development +536878,International Development,International Development +536877,International Development,International Development +534119,International Development,International Development +534117,International Development,International Development +534113,International Development,International Development +534106,International Development,International Development +530973,International Development,International Development +530971,International Development,International Development +530970,International Development,International Development +530967,International Development,International Development +528790,International Development,International Development +528788,International Development,International Development +528787,International Development,International Development +528784,International Development,International Development +528780,International Development,International Development +528778,International Development,International Development +525208,International Development,International Development +525207,International Development,International Development +525206,International Development,International Development +525205,International Development,International Development +525204,International Development,International Development +522285,International Development,International Development +519212,International Development,International Development +519210,International Development,International Development +519209,International Development,International Development +519208,International Development,International Development +519207,International Development,International Development +519206,International Development,International Development +519204,International Development,International Development +519203,International Development,International Development +519202,International Development,International Development +517590,International Development,International Development +517589,International Development,International Development +517587,International Development,International Development +517586,International Development,International Development +517584,International Development,International Development +517579,International Development,International Development +513825,International Development,International Development +511756,International Development,International Development +511755,International Development,International Development +509854,International Development,International Development +509853,International Development,International Development +509851,International Development,International Development +509849,International Development,International Development +509848,International Development,International Development +509847,International Development,International Development +507139,International Development,International Development +507138,International Development,International Development +507137,International Development,International Development +507136,International Development,International Development +506250,International Development,International Development +506247,International Development,International Development +506245,International Development,International Development +506240,International Development,International Development +500851,International Development,International Development +500850,International Development,International Development +500848,International Development,International Development +498071,International Development,International Development +498070,International Development,International Development +498066,International Development,International Development +498065,International Development,International Development +496252,International Development,International Development +496251,International Development,International Development +493325,International Development,International Development +493324,International Development,International Development +490573,International Development,International Development +486106,International Development,International Development +486104,International Development,International Development +486100,International Development,International Development +486099,International Development,International Development +486098,International Development,International Development +483848,International Development,International Development +483847,International Development,International Development +483846,International Development,International Development +483845,International Development,International Development +483843,International Development,International Development +481222,International Development,International Development +481221,International Development,International Development +481219,International Development,International Development +478841,International Development,International Development +478838,International Development,International Development +478837,International Development,International Development +478836,International Development,International Development +478835,International Development,International Development +478834,International Development,International Development +478831,International Development,International Development +478830,International Development,International Development +478829,International Development,International Development +477084,International Development,International Development +477083,International Development,International Development +477080,International Development,International Development +477077,International Development,International Development +477076,International Development,International Development +477073,International Development,International Development +477071,International Development,International Development +474132,International Development,International Development +474131,International Development,International Development +472075,International Development,International Development +472073,International Development,International Development +471699,International Development,International Development +469525,International Development,International Development +469524,International Development,International Development +469522,International Development,International Development +468267,International Development,International Development +468266,International Development,International Development +468265,International Development,International Development +468264,International Development,International Development +468263,International Development,International Development +468262,International Development,International Development +468261,International Development,International Development +468259,International Development,International Development +468258,International Development,International Development +468256,International Development,International Development +468254,International Development,International Development +468252,International Development,International Development +465911,International Development,International Development +462785,International Development,International Development +462780,International Development,International Development +462778,International Development,International Development +462774,International Development,International Development +462772,International Development,International Development +462712,International Development,International Development +458308,International Development,International Development +458296,International Development,International Development +458293,International Development,International Development +458290,International Development,International Development +457237,International Development,International Development +457228,International Development,International Development +456431,International Development,International Development +454134,International Development,International Development +454133,International Development,International Development +454131,International Development,International Development +454130,International Development,International Development +454129,International Development,International Development +454128,International Development,International Development +451996,International Development,International Development +451661,International Development,International Development +451660,International Development,International Development +451659,International Development,International Development +451657,International Development,International Development +451656,International Development,International Development +451655,International Development,International Development +451654,International Development,International Development +451652,International Development,International Development +451650,International Development,International Development +449014,International Development,International Development +449013,International Development,International Development +449012,International Development,International Development +449011,International Development,International Development +449010,International Development,International Development +447196,International Development,International Development +447195,International Development,International Development +447194,International Development,International Development +447193,International Development,International Development +447191,International Development,International Development +444902,International Development,International Development +444901,International Development,International Development +443765,International Development,International Development +441505,International Development,International Development +441503,International Development,International Development +441502,International Development,International Development +441501,International Development,International Development +441500,International Development,International Development +441499,International Development,International Development +441498,International Development,International Development +437941,International Development,International Development +437940,International Development,International Development +437939,International Development,International Development +437938,International Development,International Development +437937,International Development,International Development +437936,International Development,International Development +435185,International Development,International Development +435183,International Development,International Development +435181,International Development,International Development +435179,International Development,International Development +435175,International Development,International Development +435174,International Development,International Development +435173,International Development,International Development +433338,International Development,International Development +433337,International Development,International Development +433336,International Development,International Development +433335,International Development,International Development +432023,International Development,International Development +432019,International Development,International Development +430439,International Development,International Development +430438,International Development,International Development +155746,Mining,Mining +286669,Small Business,Small Business +380047,Small Business,Small Business +159303,Small Business,Small Business +159298,Small Business,Small Business +157284,Small Business,Small Business +157276,Small Business,Small Business +379175,Small Business,Small Business +379170,Small Business,Small Business +372009,Small Business,Small Business +372006,Small Business,Small Business +372003,Small Business,Small Business +353862,Small Business,Small Business +349310,Small Business,Small Business +349309,Small Business,Small Business +349308,Small Business,Small Business +347338,Small Business,Small Business +335343,Small Business,Small Business +335341,Small Business,Small Business +330026,Small Business,Small Business +330025,Small Business,Small Business +330024,Small Business,Small Business +330023,Small Business,Small Business +330022,Small Business,Small Business +327100,Small Business,Small Business +327099,Small Business,Small Business +286671,Small Business,Small Business +461168,Research and Development,Research and Development (R&D) +432264,Research and Development,Research and Development (R&D) +161774,Research and Development,Research and Development (R&D) +157588,Research and Development,Research and Development (R&D) +207519,Research and Development,Research and Development (R&D) +367868,Research and Development,Research and Development (R&D) +367867,Research and Development,Research and Development (R&D) +526461,Research and Development,Research and Development (R&D) +525363,Research and Development,Research and Development (R&D) +525360,Research and Development,Research and Development (R&D) +525357,Research and Development,Research and Development (R&D) +525354,Research and Development,Research and Development (R&D) +525161,Research and Development,Research and Development (R&D) +523660,Research and Development,Research and Development (R&D) +523642,Research and Development,Research and Development (R&D) +523641,Research and Development,Research and Development (R&D) +518818,Research and Development,Research and Development (R&D) +516716,Research and Development,Research and Development (R&D) +516322,Research and Development,Research and Development (R&D) +506874,Research and Development,Research and Development (R&D) +506873,Research and Development,Research and Development (R&D) +503035,Research and Development,Research and Development (R&D) +503034,Research and Development,Research and Development (R&D) +503033,Research and Development,Research and Development (R&D) +503032,Research and Development,Research and Development (R&D) +500136,Research and Development,Research and Development (R&D) +489012,Research and Development,Research and Development (R&D) +159064,Economic Development,Economic Development +159061,Economic Development,Economic Development +159061,International Development,International Development +501317,Research and Development,Research and Development (R&D) +501316,Research and Development,Research and Development (R&D) +161286,Research and Development,Research and Development (R&D) +160934,Research and Development,Research and Development (R&D) +159926,Research and Development,Research and Development (R&D) +159864,Research and Development,Research and Development (R&D) +159849,Research and Development,Research and Development (R&D) +159837,Research and Development,Research and Development (R&D) +159824,Research and Development,Research and Development (R&D) +159812,Research and Development,Research and Development (R&D) +159633,Research and Development,Research and Development (R&D) +156381,Research and Development,Research and Development (R&D) +156371,Research and Development,Research and Development (R&D) +176964,Research and Development,Research and Development (R&D) +176864,Research and Development,Research and Development (R&D) +172991,Research and Development,Research and Development (R&D) +172990,Research and Development,Research and Development (R&D) +172988,Research and Development,Research and Development (R&D) +172987,Research and Development,Research and Development (R&D) +172986,Research and Development,Research and Development (R&D) +172985,Research and Development,Research and Development (R&D) +172983,Research and Development,Research and Development (R&D) +172982,Research and Development,Research and Development (R&D) +170118,Research and Development,Research and Development (R&D) +170117,Research and Development,Research and Development (R&D) +169935,Research and Development,Research and Development (R&D) +169932,Research and Development,Research and Development (R&D) +167850,Research and Development,Research and Development (R&D) +163401,Research and Development,Research and Development (R&D) +327508,Research and Development,Research and Development (R&D) +324649,Research and Development,Research and Development (R&D) +322202,Research and Development,Research and Development (R&D) +322201,Research and Development,Research and Development (R&D) +322200,Research and Development,Research and Development (R&D) +322191,Research and Development,Research and Development (R&D) +312772,Research and Development,Research and Development (R&D) +312768,Research and Development,Research and Development (R&D) +312766,Research and Development,Research and Development (R&D) +312765,Research and Development,Research and Development (R&D) +312758,Research and Development,Research and Development (R&D) +311065,Research and Development,Research and Development (R&D) +311064,Research and Development,Research and Development (R&D) +311061,Research and Development,Research and Development (R&D) +311058,Research and Development,Research and Development (R&D) +311057,Research and Development,Research and Development (R&D) +277261,Research and Development,Research and Development (R&D) +268109,Research and Development,Research and Development (R&D) +264154,Research and Development,Research and Development (R&D) +264152,Research and Development,Research and Development (R&D) +258833,Research and Development,Research and Development (R&D) +258832,Research and Development,Research and Development (R&D) +258831,Research and Development,Research and Development (R&D) +258830,Research and Development,Research and Development (R&D) +258829,Research and Development,Research and Development (R&D) +258811,Research and Development,Research and Development (R&D) +258809,Research and Development,Research and Development (R&D) +257551,Research and Development,Research and Development (R&D) +257549,Research and Development,Research and Development (R&D) +244459,Research and Development,Research and Development (R&D) +240009,Research and Development,Research and Development (R&D) +235689,Research and Development,Research and Development (R&D) +233009,Research and Development,Research and Development (R&D) +227011,Research and Development,Research and Development (R&D) +226911,Research and Development,Research and Development (R&D) +226732,Research and Development,Research and Development (R&D) +226731,Research and Development,Research and Development (R&D) +226730,Research and Development,Research and Development (R&D) +226729,Research and Development,Research and Development (R&D) +226710,Research and Development,Research and Development (R&D) +224947,Research and Development,Research and Development (R&D) +224211,Research and Development,Research and Development (R&D) +222689,Research and Development,Research and Development (R&D) +211667,Research and Development,Research and Development (R&D) +211558,Research and Development,Research and Development (R&D) +211553,Research and Development,Research and Development (R&D) +209869,Research and Development,Research and Development (R&D) +209693,Research and Development,Research and Development (R&D) +209692,Research and Development,Research and Development (R&D) +205995,Research and Development,Research and Development (R&D) +202087,Research and Development,Research and Development (R&D) +199993,Research and Development,Research and Development (R&D) +197867,Research and Development,Research and Development (R&D) +197847,Research and Development,Research and Development (R&D) +197708,Research and Development,Research and Development (R&D) +192898,Research and Development,Research and Development (R&D) +188629,Research and Development,Research and Development (R&D) +188605,Research and Development,Research and Development (R&D) +188601,Research and Development,Research and Development (R&D) +184224,Research and Development,Research and Development (R&D) +184204,Research and Development,Research and Development (R&D) +501315,Research and Development,Research and Development (R&D) +499024,Research and Development,Research and Development (R&D) +499007,Research and Development,Research and Development (R&D) +499004,Research and Development,Research and Development (R&D) +499001,Research and Development,Research and Development (R&D) +497973,Research and Development,Research and Development (R&D) +497972,Research and Development,Research and Development (R&D) +497969,Research and Development,Research and Development (R&D) +497962,Research and Development,Research and Development (R&D) +497960,Research and Development,Research and Development (R&D) +497955,Research and Development,Research and Development (R&D) +496608,Research and Development,Research and Development (R&D) +496607,Research and Development,Research and Development (R&D) +495384,Research and Development,Research and Development (R&D) +495351,Research and Development,Research and Development (R&D) +495344,Research and Development,Research and Development (R&D) +494638,Research and Development,Research and Development (R&D) +494637,Research and Development,Research and Development (R&D) +494636,Research and Development,Research and Development (R&D) +492569,Research and Development,Research and Development (R&D) +492312,Research and Development,Research and Development (R&D) +492311,Research and Development,Research and Development (R&D) +492310,Research and Development,Research and Development (R&D) +490738,Research and Development,Research and Development (R&D) +490692,Research and Development,Research and Development (R&D) +490655,Research and Development,Research and Development (R&D) +490604,Research and Development,Research and Development (R&D) +490602,Research and Development,Research and Development (R&D) +490594,Research and Development,Research and Development (R&D) +486898,Research and Development,Research and Development (R&D) +486891,Research and Development,Research and Development (R&D) +486817,Research and Development,Research and Development (R&D) +484412,Research and Development,Research and Development (R&D) +484398,Research and Development,Research and Development (R&D) +484375,Research and Development,Research and Development (R&D) +473708,Research and Development,Research and Development (R&D) +473682,Research and Development,Research and Development (R&D) +473673,Research and Development,Research and Development (R&D) +471175,Research and Development,Research and Development (R&D) +471174,Research and Development,Research and Development (R&D) +471171,Research and Development,Research and Development (R&D) +471169,Research and Development,Research and Development (R&D) +471168,Research and Development,Research and Development (R&D) +471166,Research and Development,Research and Development (R&D) +471164,Research and Development,Research and Development (R&D) +468561,Research and Development,Research and Development (R&D) +468560,Research and Development,Research and Development (R&D) +468559,Research and Development,Research and Development (R&D) +468558,Research and Development,Research and Development (R&D) +468557,Research and Development,Research and Development (R&D) +468556,Research and Development,Research and Development (R&D) +468555,Research and Development,Research and Development (R&D) +468553,Research and Development,Research and Development (R&D) +468552,Research and Development,Research and Development (R&D) +468551,Research and Development,Research and Development (R&D) +468549,Research and Development,Research and Development (R&D) +468545,Research and Development,Research and Development (R&D) +468544,Research and Development,Research and Development (R&D) +463678,Research and Development,Research and Development (R&D) +463673,Research and Development,Research and Development (R&D) +462633,Research and Development,Research and Development (R&D) +462621,Research and Development,Research and Development (R&D) +461523,Research and Development,Research and Development (R&D) +461508,Research and Development,Research and Development (R&D) +461506,Research and Development,Research and Development (R&D) +461501,Research and Development,Research and Development (R&D) +461489,Research and Development,Research and Development (R&D) +461483,Research and Development,Research and Development (R&D) +461479,Research and Development,Research and Development (R&D) +461477,Research and Development,Research and Development (R&D) +460135,Research and Development,Research and Development (R&D) +445655,Research and Development,Research and Development (R&D) +445651,Research and Development,Research and Development (R&D) +445649,Research and Development,Research and Development (R&D) +445648,Research and Development,Research and Development (R&D) +445647,Research and Development,Research and Development (R&D) +414949,Research and Development,Research and Development (R&D) +414948,Research and Development,Research and Development (R&D) +414946,Research and Development,Research and Development (R&D) +411980,Research and Development,Research and Development (R&D) +411978,Research and Development,Research and Development (R&D) +411976,Research and Development,Research and Development (R&D) +411973,Research and Development,Research and Development (R&D) +405776,Research and Development,Research and Development (R&D) +393232,Research and Development,Research and Development (R&D) +393231,Research and Development,Research and Development (R&D) +385683,Research and Development,Research and Development (R&D) +385680,Research and Development,Research and Development (R&D) +383232,Research and Development,Research and Development (R&D) +383231,Research and Development,Research and Development (R&D) +372318,Research and Development,Research and Development (R&D) +372316,Research and Development,Research and Development (R&D) +372313,Research and Development,Research and Development (R&D) +372306,Research and Development,Research and Development (R&D) +372301,Research and Development,Research and Development (R&D) +372281,Research and Development,Research and Development (R&D) +369949,Research and Development,Research and Development (R&D) +367963,Research and Development,Research and Development (R&D) +340392,Research and Development,Research and Development (R&D) +340391,Research and Development,Research and Development (R&D) +340389,Research and Development,Research and Development (R&D) +327509,Research and Development,Research and Development (R&D) +543704,Research and Development,Research and Development (R&D) +543702,Research and Development,Research and Development (R&D) +543701,Research and Development,Research and Development (R&D) +543697,Research and Development,Research and Development (R&D) +543693,Research and Development,Research and Development (R&D) +543691,Research and Development,Research and Development (R&D) +543690,Research and Development,Research and Development (R&D) +543686,Research and Development,Research and Development (R&D) +541400,Research and Development,Research and Development (R&D) +541388,Research and Development,Research and Development (R&D) +540156,Research and Development,Research and Development (R&D) +539766,Research and Development,Research and Development (R&D) +539656,Research and Development,Research and Development (R&D) +539655,Research and Development,Research and Development (R&D) +538898,Research and Development,Research and Development (R&D) +538211,Research and Development,Research and Development (R&D) +538206,Research and Development,Research and Development (R&D) +538204,Research and Development,Research and Development (R&D) +538202,Research and Development,Research and Development (R&D) +538200,Research and Development,Research and Development (R&D) +538195,Research and Development,Research and Development (R&D) +538192,Research and Development,Research and Development (R&D) +538189,Research and Development,Research and Development (R&D) +538186,Research and Development,Research and Development (R&D) +538183,Research and Development,Research and Development (R&D) +538182,Research and Development,Research and Development (R&D) +538181,Research and Development,Research and Development (R&D) +538180,Research and Development,Research and Development (R&D) +538177,Research and Development,Research and Development (R&D) +535982,Research and Development,Research and Development (R&D) +535068,Research and Development,Research and Development (R&D) +535056,Research and Development,Research and Development (R&D) +535050,Research and Development,Research and Development (R&D) +535049,Research and Development,Research and Development (R&D) +531834,Research and Development,Research and Development (R&D) +528421,Research and Development,Research and Development (R&D) +525678,Research and Development,Research and Development (R&D) +525665,Research and Development,Research and Development (R&D) +525636,Research and Development,Research and Development (R&D) +525632,Research and Development,Research and Development (R&D) +525630,Research and Development,Research and Development (R&D) +525628,Research and Development,Research and Development (R&D) +522211,Research and Development,Research and Development (R&D) +522207,Research and Development,Research and Development (R&D) +522205,Research and Development,Research and Development (R&D) +519638,Research and Development,Research and Development (R&D) +519637,Research and Development,Research and Development (R&D) +519631,Research and Development,Research and Development (R&D) +518490,Research and Development,Research and Development (R&D) +517280,Research and Development,Research and Development (R&D) +517278,Research and Development,Research and Development (R&D) +517272,Research and Development,Research and Development (R&D) +517262,Research and Development,Research and Development (R&D) +517258,Research and Development,Research and Development (R&D) +517257,Research and Development,Research and Development (R&D) +517255,Research and Development,Research and Development (R&D) +517251,Research and Development,Research and Development (R&D) +517246,Research and Development,Research and Development (R&D) +515788,Research and Development,Research and Development (R&D) +513994,Research and Development,Research and Development (R&D) +512570,Research and Development,Research and Development (R&D) +512569,Research and Development,Research and Development (R&D) +512567,Research and Development,Research and Development (R&D) +510525,Research and Development,Research and Development (R&D) +510523,Research and Development,Research and Development (R&D) +510519,Research and Development,Research and Development (R&D) +510518,Research and Development,Research and Development (R&D) +510515,Research and Development,Research and Development (R&D) +510502,Research and Development,Research and Development (R&D) +509252,Research and Development,Research and Development (R&D) +507235,Research and Development,Research and Development (R&D) +507229,Research and Development,Research and Development (R&D) +507228,Research and Development,Research and Development (R&D) +507224,Research and Development,Research and Development (R&D) +507223,Research and Development,Research and Development (R&D) +507221,Research and Development,Research and Development (R&D) +506054,Research and Development,Research and Development (R&D) +506053,Research and Development,Research and Development (R&D) +506052,Research and Development,Research and Development (R&D) +506015,Research and Development,Research and Development (R&D) +506014,Research and Development,Research and Development (R&D) +504278,Research and Development,Research and Development (R&D) +504258,Research and Development,Research and Development (R&D) +504243,Research and Development,Research and Development (R&D) +504238,Research and Development,Research and Development (R&D) +504226,Research and Development,Research and Development (R&D) +504225,Research and Development,Research and Development (R&D) +504222,Research and Development,Research and Development (R&D) +504221,Research and Development,Research and Development (R&D) +504219,Research and Development,Research and Development (R&D) +504205,Research and Development,Research and Development (R&D) +504203,Research and Development,Research and Development (R&D) +504201,Research and Development,Research and Development (R&D) +504200,Research and Development,Research and Development (R&D) +504198,Research and Development,Research and Development (R&D) +504197,Research and Development,Research and Development (R&D) +504195,Research and Development,Research and Development (R&D) +501357,Research and Development,Research and Development (R&D) +501338,Research and Development,Research and Development (R&D) +501336,Research and Development,Research and Development (R&D) +501323,Research and Development,Research and Development (R&D) +501321,Research and Development,Research and Development (R&D) +155312,Constitutional Issues,Constitutional Issues +173690,Constitutional Issues,Constitutional Issues +155309,Constitutional Issues,Constitutional Issues +173689,Constitutional Issues,Constitutional Issues +166295,Constitutional Issues,Constitutional Issues +160294,Constitutional Issues,Constitutional Issues +160291,Constitutional Issues,Constitutional Issues +158874,Constitutional Issues,Constitutional Issues +158873,Constitutional Issues,Constitutional Issues +158872,Constitutional Issues,Constitutional Issues +158871,Constitutional Issues,Constitutional Issues +155312,Consumer Issues,Consumer Issues +155309,Consumer Issues,Consumer Issues +173690,Consumer Issues,Consumer Issues +173689,Consumer Issues,Consumer Issues +166295,Consumer Issues,Consumer Issues +166294,Consumer Issues,Consumer Issues +160298,Consumer Issues,Consumer Issues +160294,Consumer Issues,Consumer Issues +160291,Consumer Issues,Consumer Issues +158874,Consumer Issues,Consumer Issues +158873,Consumer Issues,Consumer Issues +158872,Consumer Issues,Consumer Issues +158871,Consumer Issues,Consumer Issues +173690,Economic Development,Economic Development +173689,Economic Development,Economic Development +160291,Economic Development,Economic Development +158874,Economic Development,Economic Development +158873,Economic Development,Economic Development +158872,Economic Development,Economic Development +158871,Economic Development,Economic Development +155316,Economic Development,Economic Development +155312,Economic Development,Economic Development +155312,Health,Health +155309,Health,Health +173689,Health,Health +166295,Health,Health +166294,Health,Health +160298,Health,Health +160294,Health,Health +160291,Health,Health +155312,Internal Trade,Internal Trade +158871,Justice and Law Enforcement,Justice and Law Enforcement +155316,Justice and Law Enforcement,Justice and Law Enforcement +160298,Justice and Law Enforcement,Justice and Law Enforcement +158874,Justice and Law Enforcement,Justice and Law Enforcement +158873,Justice and Law Enforcement,Justice and Law Enforcement +155309,Research and Development,Research and Development (R&D) +155316,Research and Development,Research and Development (R&D) +160291,Small Business,Small Business +158874,Small Business,Small Business +158873,Small Business,Small Business +158872,Small Business,Small Business +158871,Small Business,Small Business +155316,Small Business,Small Business +155312,Small Business,Small Business +155309,Small Business,Small Business +166295,Small Business,Small Business +166294,Small Business,Small Business +160298,Small Business,Small Business +160321,Climate,Climate +160320,Climate,Climate +167044,Climate,Climate +160324,Climate,Climate +160323,Climate,Climate +167866,Intellectual Property,Intellectual Property +167865,Intellectual Property,Intellectual Property +167881,Intellectual Property,Intellectual Property +167880,Intellectual Property,Intellectual Property +167879,Intellectual Property,Intellectual Property +167878,Intellectual Property,Intellectual Property +167877,Intellectual Property,Intellectual Property +167876,Intellectual Property,Intellectual Property +167875,Intellectual Property,Intellectual Property +167874,Intellectual Property,Intellectual Property +167872,Intellectual Property,Intellectual Property +167871,Intellectual Property,Intellectual Property +167870,Intellectual Property,Intellectual Property +167869,Intellectual Property,Intellectual Property +537310,Municipalities,Municipalities +537309,Municipalities,Municipalities +168511,Municipalities,Municipalities +168509,Municipalities,Municipalities +168505,Municipalities,Municipalities +167846,Municipalities,Municipalities +165156,Municipalities,Municipalities +165155,Municipalities,Municipalities +165154,Municipalities,Municipalities +165153,Municipalities,Municipalities +163706,Municipalities,Municipalities +161222,Municipalities,Municipalities +161219,Municipalities,Municipalities +158546,Municipalities,Municipalities +158544,Municipalities,Municipalities +154292,Municipalities,Municipalities +221687,Municipalities,Municipalities +210735,Municipalities,Municipalities +210734,Municipalities,Municipalities +210730,Municipalities,Municipalities +205949,Municipalities,Municipalities +201148,Municipalities,Municipalities +201147,Municipalities,Municipalities +197907,Municipalities,Municipalities +197670,Municipalities,Municipalities +196869,Municipalities,Municipalities +196868,Municipalities,Municipalities +191630,Municipalities,Municipalities +191629,Municipalities,Municipalities +191628,Municipalities,Municipalities +191627,Municipalities,Municipalities +191626,Municipalities,Municipalities +191625,Municipalities,Municipalities +191624,Municipalities,Municipalities +191623,Municipalities,Municipalities +191622,Municipalities,Municipalities +191621,Municipalities,Municipalities +191607,Municipalities,Municipalities +191606,Municipalities,Municipalities +191600,Municipalities,Municipalities +191595,Municipalities,Municipalities +191592,Municipalities,Municipalities +191589,Municipalities,Municipalities +188756,Municipalities,Municipalities +188754,Municipalities,Municipalities +188753,Municipalities,Municipalities +188751,Municipalities,Municipalities +188748,Municipalities,Municipalities +188746,Municipalities,Municipalities +188743,Municipalities,Municipalities +171350,Municipalities,Municipalities +171349,Municipalities,Municipalities +171348,Municipalities,Municipalities +170088,Municipalities,Municipalities +169939,Municipalities,Municipalities +168564,Municipalities,Municipalities +168561,Municipalities,Municipalities +168560,Municipalities,Municipalities +168558,Municipalities,Municipalities +168556,Municipalities,Municipalities +168554,Municipalities,Municipalities +168552,Municipalities,Municipalities +168549,Municipalities,Municipalities +168548,Municipalities,Municipalities +168546,Municipalities,Municipalities +168543,Municipalities,Municipalities +168539,Municipalities,Municipalities +168536,Municipalities,Municipalities +168534,Municipalities,Municipalities +168530,Municipalities,Municipalities +168524,Municipalities,Municipalities +168521,Municipalities,Municipalities +168516,Municipalities,Municipalities +356621,Municipalities,Municipalities +356327,Municipalities,Municipalities +356315,Municipalities,Municipalities +356313,Municipalities,Municipalities +356293,Municipalities,Municipalities +355953,Municipalities,Municipalities +353310,Municipalities,Municipalities +353304,Municipalities,Municipalities +353286,Municipalities,Municipalities +353283,Municipalities,Municipalities +353282,Municipalities,Municipalities +351211,Municipalities,Municipalities +349920,Municipalities,Municipalities +349048,Municipalities,Municipalities +349030,Municipalities,Municipalities +349022,Municipalities,Municipalities +347611,Municipalities,Municipalities +341652,Municipalities,Municipalities +341607,Municipalities,Municipalities +339017,Municipalities,Municipalities +338943,Municipalities,Municipalities +338930,Municipalities,Municipalities +335851,Municipalities,Municipalities +335825,Municipalities,Municipalities +335815,Municipalities,Municipalities +335813,Municipalities,Municipalities +335811,Municipalities,Municipalities +335807,Municipalities,Municipalities +333555,Municipalities,Municipalities +333554,Municipalities,Municipalities +333552,Municipalities,Municipalities +333551,Municipalities,Municipalities +333545,Municipalities,Municipalities +333329,Municipalities,Municipalities +333326,Municipalities,Municipalities +333324,Municipalities,Municipalities +333321,Municipalities,Municipalities +333317,Municipalities,Municipalities +333313,Municipalities,Municipalities +331473,Municipalities,Municipalities +330116,Municipalities,Municipalities +330111,Municipalities,Municipalities +328107,Municipalities,Municipalities +328101,Municipalities,Municipalities +328072,Municipalities,Municipalities +328071,Municipalities,Municipalities +324987,Municipalities,Municipalities +324976,Municipalities,Municipalities +322174,Municipalities,Municipalities +322170,Municipalities,Municipalities +319188,Municipalities,Municipalities +319173,Municipalities,Municipalities +319171,Municipalities,Municipalities +319169,Municipalities,Municipalities +319163,Municipalities,Municipalities +315939,Municipalities,Municipalities +315919,Municipalities,Municipalities +312734,Municipalities,Municipalities +312733,Municipalities,Municipalities +312597,Municipalities,Municipalities +312596,Municipalities,Municipalities +312593,Municipalities,Municipalities +312592,Municipalities,Municipalities +312591,Municipalities,Municipalities +310021,Municipalities,Municipalities +309789,Municipalities,Municipalities +309785,Municipalities,Municipalities +309774,Municipalities,Municipalities +309770,Municipalities,Municipalities +304057,Municipalities,Municipalities +304011,Municipalities,Municipalities +296752,Municipalities,Municipalities +291796,Municipalities,Municipalities +291789,Municipalities,Municipalities +286774,Municipalities,Municipalities +286771,Municipalities,Municipalities +286770,Municipalities,Municipalities +277394,Municipalities,Municipalities +277335,Municipalities,Municipalities +277318,Municipalities,Municipalities +277314,Municipalities,Municipalities +277304,Municipalities,Municipalities +277297,Municipalities,Municipalities +273435,Municipalities,Municipalities +273434,Municipalities,Municipalities +269118,Municipalities,Municipalities +267089,Municipalities,Municipalities +256454,Municipalities,Municipalities +256452,Municipalities,Municipalities +256451,Municipalities,Municipalities +256450,Municipalities,Municipalities +256449,Municipalities,Municipalities +256432,Municipalities,Municipalities +256431,Municipalities,Municipalities +256430,Municipalities,Municipalities +256429,Municipalities,Municipalities +252959,Municipalities,Municipalities +252956,Municipalities,Municipalities +252952,Municipalities,Municipalities +252951,Municipalities,Municipalities +249112,Municipalities,Municipalities +249111,Municipalities,Municipalities +249110,Municipalities,Municipalities +249092,Municipalities,Municipalities +249091,Municipalities,Municipalities +249090,Municipalities,Municipalities +249089,Municipalities,Municipalities +244111,Municipalities,Municipalities +244110,Municipalities,Municipalities +239950,Municipalities,Municipalities +236232,Municipalities,Municipalities +236229,Municipalities,Municipalities +232295,Municipalities,Municipalities +232230,Municipalities,Municipalities +232229,Municipalities,Municipalities +232176,Municipalities,Municipalities +232175,Municipalities,Municipalities +232174,Municipalities,Municipalities +229729,Municipalities,Municipalities +226534,Municipalities,Municipalities +226533,Municipalities,Municipalities +226532,Municipalities,Municipalities +226530,Municipalities,Municipalities +226529,Municipalities,Municipalities +445305,Municipalities,Municipalities +445304,Municipalities,Municipalities +445298,Municipalities,Municipalities +445294,Municipalities,Municipalities +443539,Municipalities,Municipalities +443535,Municipalities,Municipalities +443529,Municipalities,Municipalities +442454,Municipalities,Municipalities +442451,Municipalities,Municipalities +442448,Municipalities,Municipalities +442437,Municipalities,Municipalities +442434,Municipalities,Municipalities +442428,Municipalities,Municipalities +442424,Municipalities,Municipalities +442410,Municipalities,Municipalities +442409,Municipalities,Municipalities +442404,Municipalities,Municipalities +442400,Municipalities,Municipalities +442397,Municipalities,Municipalities +442391,Municipalities,Municipalities +442232,Municipalities,Municipalities +442221,Municipalities,Municipalities +442203,Municipalities,Municipalities +442200,Municipalities,Municipalities +442198,Municipalities,Municipalities +442189,Municipalities,Municipalities +442186,Municipalities,Municipalities +442184,Municipalities,Municipalities +442176,Municipalities,Municipalities +442173,Municipalities,Municipalities +442171,Municipalities,Municipalities +442170,Municipalities,Municipalities +442166,Municipalities,Municipalities +439029,Municipalities,Municipalities +439020,Municipalities,Municipalities +439005,Municipalities,Municipalities +438996,Municipalities,Municipalities +435149,Municipalities,Municipalities +435141,Municipalities,Municipalities +435135,Municipalities,Municipalities +433167,Municipalities,Municipalities +427919,Municipalities,Municipalities +427918,Municipalities,Municipalities +427916,Municipalities,Municipalities +427915,Municipalities,Municipalities +427914,Municipalities,Municipalities +427913,Municipalities,Municipalities +427910,Municipalities,Municipalities +427908,Municipalities,Municipalities +425483,Municipalities,Municipalities +425482,Municipalities,Municipalities +425480,Municipalities,Municipalities +423438,Municipalities,Municipalities +423433,Municipalities,Municipalities +423432,Municipalities,Municipalities +423431,Municipalities,Municipalities +423430,Municipalities,Municipalities +423429,Municipalities,Municipalities +423428,Municipalities,Municipalities +421810,Municipalities,Municipalities +421804,Municipalities,Municipalities +421800,Municipalities,Municipalities +421792,Municipalities,Municipalities +421790,Municipalities,Municipalities +421784,Municipalities,Municipalities +421774,Municipalities,Municipalities +418919,Municipalities,Municipalities +418876,Municipalities,Municipalities +418875,Municipalities,Municipalities +418874,Municipalities,Municipalities +418869,Municipalities,Municipalities +417674,Municipalities,Municipalities +417673,Municipalities,Municipalities +417672,Municipalities,Municipalities +417671,Municipalities,Municipalities +417670,Municipalities,Municipalities +417667,Municipalities,Municipalities +417664,Municipalities,Municipalities +417656,Municipalities,Municipalities +417654,Municipalities,Municipalities +417651,Municipalities,Municipalities +417650,Municipalities,Municipalities +417649,Municipalities,Municipalities +417648,Municipalities,Municipalities +414832,Municipalities,Municipalities +414831,Municipalities,Municipalities +414830,Municipalities,Municipalities +414829,Municipalities,Municipalities +414828,Municipalities,Municipalities +414826,Municipalities,Municipalities +414824,Municipalities,Municipalities +414822,Municipalities,Municipalities +414821,Municipalities,Municipalities +414819,Municipalities,Municipalities +414818,Municipalities,Municipalities +414815,Municipalities,Municipalities +414814,Municipalities,Municipalities +414813,Municipalities,Municipalities +414812,Municipalities,Municipalities +414811,Municipalities,Municipalities +412829,Municipalities,Municipalities +411603,Municipalities,Municipalities +411602,Municipalities,Municipalities +411601,Municipalities,Municipalities +411599,Municipalities,Municipalities +411598,Municipalities,Municipalities +411595,Municipalities,Municipalities +411594,Municipalities,Municipalities +411593,Municipalities,Municipalities +411592,Municipalities,Municipalities +411591,Municipalities,Municipalities +411589,Municipalities,Municipalities +411587,Municipalities,Municipalities +411584,Municipalities,Municipalities +411582,Municipalities,Municipalities +411576,Municipalities,Municipalities +408704,Municipalities,Municipalities +408703,Municipalities,Municipalities +408701,Municipalities,Municipalities +408621,Municipalities,Municipalities +408602,Municipalities,Municipalities +408589,Municipalities,Municipalities +408588,Municipalities,Municipalities +408587,Municipalities,Municipalities +408585,Municipalities,Municipalities +407184,Municipalities,Municipalities +407183,Municipalities,Municipalities +407144,Municipalities,Municipalities +402651,Municipalities,Municipalities +402647,Municipalities,Municipalities +402643,Municipalities,Municipalities +402642,Municipalities,Municipalities +402637,Municipalities,Municipalities +402634,Municipalities,Municipalities +402629,Municipalities,Municipalities +402626,Municipalities,Municipalities +399598,Municipalities,Municipalities +399591,Municipalities,Municipalities +398054,Municipalities,Municipalities +397926,Municipalities,Municipalities +397910,Municipalities,Municipalities +397905,Municipalities,Municipalities +397903,Municipalities,Municipalities +397682,Municipalities,Municipalities +395587,Municipalities,Municipalities +395583,Municipalities,Municipalities +394007,Municipalities,Municipalities +394003,Municipalities,Municipalities +393977,Municipalities,Municipalities +393972,Municipalities,Municipalities +393833,Municipalities,Municipalities +393804,Municipalities,Municipalities +393793,Municipalities,Municipalities +391101,Municipalities,Municipalities +388023,Municipalities,Municipalities +388004,Municipalities,Municipalities +383237,Municipalities,Municipalities +382623,Municipalities,Municipalities +382621,Municipalities,Municipalities +382568,Municipalities,Municipalities +382527,Municipalities,Municipalities +382513,Municipalities,Municipalities +382506,Municipalities,Municipalities +379384,Municipalities,Municipalities +379376,Municipalities,Municipalities +379369,Municipalities,Municipalities +379351,Municipalities,Municipalities +379344,Municipalities,Municipalities +376892,Municipalities,Municipalities +376888,Municipalities,Municipalities +376869,Municipalities,Municipalities +376859,Municipalities,Municipalities +376830,Municipalities,Municipalities +376819,Municipalities,Municipalities +371597,Municipalities,Municipalities +370684,Municipalities,Municipalities +370683,Municipalities,Municipalities +370682,Municipalities,Municipalities +370675,Municipalities,Municipalities +369213,Municipalities,Municipalities +369207,Municipalities,Municipalities +369150,Municipalities,Municipalities +366744,Municipalities,Municipalities +366738,Municipalities,Municipalities +365195,Municipalities,Municipalities +365191,Municipalities,Municipalities +361231,Municipalities,Municipalities +361226,Municipalities,Municipalities +359749,Municipalities,Municipalities +358115,Municipalities,Municipalities +537308,Municipalities,Municipalities +534076,Municipalities,Municipalities +534073,Municipalities,Municipalities +534071,Municipalities,Municipalities +534070,Municipalities,Municipalities +534068,Municipalities,Municipalities +534065,Municipalities,Municipalities +534064,Municipalities,Municipalities +534061,Municipalities,Municipalities +534060,Municipalities,Municipalities +534057,Municipalities,Municipalities +534054,Municipalities,Municipalities +531656,Municipalities,Municipalities +531654,Municipalities,Municipalities +531650,Municipalities,Municipalities +531649,Municipalities,Municipalities +529967,Municipalities,Municipalities +528087,Municipalities,Municipalities +528084,Municipalities,Municipalities +528083,Municipalities,Municipalities +528081,Municipalities,Municipalities +528080,Municipalities,Municipalities +528078,Municipalities,Municipalities +528077,Municipalities,Municipalities +528074,Municipalities,Municipalities +528073,Municipalities,Municipalities +528072,Municipalities,Municipalities +528071,Municipalities,Municipalities +528070,Municipalities,Municipalities +525866,Municipalities,Municipalities +525366,Municipalities,Municipalities +525361,Municipalities,Municipalities +525355,Municipalities,Municipalities +525352,Municipalities,Municipalities +525350,Municipalities,Municipalities +525343,Municipalities,Municipalities +525340,Municipalities,Municipalities +525331,Municipalities,Municipalities +525330,Municipalities,Municipalities +525328,Municipalities,Municipalities +525327,Municipalities,Municipalities +525323,Municipalities,Municipalities +525316,Municipalities,Municipalities +525311,Municipalities,Municipalities +525304,Municipalities,Municipalities +525302,Municipalities,Municipalities +525300,Municipalities,Municipalities +525296,Municipalities,Municipalities +525294,Municipalities,Municipalities +525292,Municipalities,Municipalities +525291,Municipalities,Municipalities +525289,Municipalities,Municipalities +525288,Municipalities,Municipalities +525287,Municipalities,Municipalities +522371,Municipalities,Municipalities +522184,Municipalities,Municipalities +522182,Municipalities,Municipalities +522181,Municipalities,Municipalities +522180,Municipalities,Municipalities +522179,Municipalities,Municipalities +522175,Municipalities,Municipalities +522172,Municipalities,Municipalities +522169,Municipalities,Municipalities +522164,Municipalities,Municipalities +522159,Municipalities,Municipalities +522158,Municipalities,Municipalities +522155,Municipalities,Municipalities +522154,Municipalities,Municipalities +522153,Municipalities,Municipalities +519847,Municipalities,Municipalities +519846,Municipalities,Municipalities +519845,Municipalities,Municipalities +519844,Municipalities,Municipalities +519841,Municipalities,Municipalities +519840,Municipalities,Municipalities +519837,Municipalities,Municipalities +519836,Municipalities,Municipalities +517448,Municipalities,Municipalities +517445,Municipalities,Municipalities +517443,Municipalities,Municipalities +517441,Municipalities,Municipalities +517432,Municipalities,Municipalities +517429,Municipalities,Municipalities +517428,Municipalities,Municipalities +517415,Municipalities,Municipalities +517410,Municipalities,Municipalities +517406,Municipalities,Municipalities +517401,Municipalities,Municipalities +517394,Municipalities,Municipalities +517387,Municipalities,Municipalities +517380,Municipalities,Municipalities +517374,Municipalities,Municipalities +515444,Municipalities,Municipalities +515440,Municipalities,Municipalities +515436,Municipalities,Municipalities +515428,Municipalities,Municipalities +515414,Municipalities,Municipalities +514647,Municipalities,Municipalities +514146,Municipalities,Municipalities +514145,Municipalities,Municipalities +514144,Municipalities,Municipalities +514141,Municipalities,Municipalities +512592,Municipalities,Municipalities +512588,Municipalities,Municipalities +512586,Municipalities,Municipalities +512573,Municipalities,Municipalities +512556,Municipalities,Municipalities +512554,Municipalities,Municipalities +512552,Municipalities,Municipalities +512551,Municipalities,Municipalities +512549,Municipalities,Municipalities +510470,Municipalities,Municipalities +510466,Municipalities,Municipalities +510465,Municipalities,Municipalities +510463,Municipalities,Municipalities +510459,Municipalities,Municipalities +510454,Municipalities,Municipalities +510449,Municipalities,Municipalities +510442,Municipalities,Municipalities +510441,Municipalities,Municipalities +510439,Municipalities,Municipalities +510437,Municipalities,Municipalities +507251,Municipalities,Municipalities +507250,Municipalities,Municipalities +507248,Municipalities,Municipalities +507247,Municipalities,Municipalities +507246,Municipalities,Municipalities +507245,Municipalities,Municipalities +507243,Municipalities,Municipalities +507241,Municipalities,Municipalities +507236,Municipalities,Municipalities +507206,Municipalities,Municipalities +507205,Municipalities,Municipalities +507204,Municipalities,Municipalities +507203,Municipalities,Municipalities +507202,Municipalities,Municipalities +507200,Municipalities,Municipalities +504265,Municipalities,Municipalities +504264,Municipalities,Municipalities +504263,Municipalities,Municipalities +504259,Municipalities,Municipalities +504235,Municipalities,Municipalities +504234,Municipalities,Municipalities +504233,Municipalities,Municipalities +504231,Municipalities,Municipalities +504227,Municipalities,Municipalities +504199,Municipalities,Municipalities +504190,Municipalities,Municipalities +504186,Municipalities,Municipalities +504183,Municipalities,Municipalities +501838,Municipalities,Municipalities +501833,Municipalities,Municipalities +501824,Municipalities,Municipalities +501822,Municipalities,Municipalities +501818,Municipalities,Municipalities +501814,Municipalities,Municipalities +501809,Municipalities,Municipalities +501797,Municipalities,Municipalities +501795,Municipalities,Municipalities +501790,Municipalities,Municipalities +501769,Municipalities,Municipalities +501761,Municipalities,Municipalities +501750,Municipalities,Municipalities +497814,Municipalities,Municipalities +497812,Municipalities,Municipalities +497810,Municipalities,Municipalities +497806,Municipalities,Municipalities +497749,Municipalities,Municipalities +497748,Municipalities,Municipalities +497747,Municipalities,Municipalities +497746,Municipalities,Municipalities +497745,Municipalities,Municipalities +497744,Municipalities,Municipalities +497691,Municipalities,Municipalities +497690,Municipalities,Municipalities +497688,Municipalities,Municipalities +497687,Municipalities,Municipalities +497686,Municipalities,Municipalities +497685,Municipalities,Municipalities +497684,Municipalities,Municipalities +497683,Municipalities,Municipalities +497681,Municipalities,Municipalities +497680,Municipalities,Municipalities +497678,Municipalities,Municipalities +497677,Municipalities,Municipalities +497676,Municipalities,Municipalities +494807,Municipalities,Municipalities +494804,Municipalities,Municipalities +494802,Municipalities,Municipalities +494799,Municipalities,Municipalities +494798,Municipalities,Municipalities +492950,Municipalities,Municipalities +492813,Municipalities,Municipalities +492810,Municipalities,Municipalities +492663,Municipalities,Municipalities +492662,Municipalities,Municipalities +492661,Municipalities,Municipalities +492660,Municipalities,Municipalities +492306,Municipalities,Municipalities +489767,Municipalities,Municipalities +489759,Municipalities,Municipalities +489752,Municipalities,Municipalities +489748,Municipalities,Municipalities +489745,Municipalities,Municipalities +489738,Municipalities,Municipalities +489571,Municipalities,Municipalities +489570,Municipalities,Municipalities +489568,Municipalities,Municipalities +489567,Municipalities,Municipalities +489565,Municipalities,Municipalities +489562,Municipalities,Municipalities +489559,Municipalities,Municipalities +489554,Municipalities,Municipalities +489551,Municipalities,Municipalities +489550,Municipalities,Municipalities +489547,Municipalities,Municipalities +489546,Municipalities,Municipalities +489545,Municipalities,Municipalities +489543,Municipalities,Municipalities +489541,Municipalities,Municipalities +489540,Municipalities,Municipalities +489538,Municipalities,Municipalities +489537,Municipalities,Municipalities +489536,Municipalities,Municipalities +489535,Municipalities,Municipalities +489533,Municipalities,Municipalities +489531,Municipalities,Municipalities +489527,Municipalities,Municipalities +489526,Municipalities,Municipalities +489525,Municipalities,Municipalities +489524,Municipalities,Municipalities +489523,Municipalities,Municipalities +489521,Municipalities,Municipalities +489520,Municipalities,Municipalities +489519,Municipalities,Municipalities +489518,Municipalities,Municipalities +489514,Municipalities,Municipalities +489512,Municipalities,Municipalities +489510,Municipalities,Municipalities +489509,Municipalities,Municipalities +489508,Municipalities,Municipalities +489507,Municipalities,Municipalities +489506,Municipalities,Municipalities +489505,Municipalities,Municipalities +489503,Municipalities,Municipalities +489502,Municipalities,Municipalities +489501,Municipalities,Municipalities +489500,Municipalities,Municipalities +489495,Municipalities,Municipalities +489492,Municipalities,Municipalities +489490,Municipalities,Municipalities +489484,Municipalities,Municipalities +489482,Municipalities,Municipalities +489481,Municipalities,Municipalities +489478,Municipalities,Municipalities +489475,Municipalities,Municipalities +486639,Municipalities,Municipalities +486637,Municipalities,Municipalities +486635,Municipalities,Municipalities +486634,Municipalities,Municipalities +486633,Municipalities,Municipalities +486631,Municipalities,Municipalities +486629,Municipalities,Municipalities +486628,Municipalities,Municipalities +486626,Municipalities,Municipalities +486625,Municipalities,Municipalities +486621,Municipalities,Municipalities +486620,Municipalities,Municipalities +486619,Municipalities,Municipalities +485564,Municipalities,Municipalities +485563,Municipalities,Municipalities +485562,Municipalities,Municipalities +485561,Municipalities,Municipalities +484377,Municipalities,Municipalities +484374,Municipalities,Municipalities +484368,Municipalities,Municipalities +484362,Municipalities,Municipalities +484359,Municipalities,Municipalities +484357,Municipalities,Municipalities +484355,Municipalities,Municipalities +484351,Municipalities,Municipalities +484349,Municipalities,Municipalities +484348,Municipalities,Municipalities +484346,Municipalities,Municipalities +484337,Municipalities,Municipalities +484335,Municipalities,Municipalities +484331,Municipalities,Municipalities +484329,Municipalities,Municipalities +484324,Municipalities,Municipalities +484317,Municipalities,Municipalities +484316,Municipalities,Municipalities +484315,Municipalities,Municipalities +484313,Municipalities,Municipalities +484310,Municipalities,Municipalities +484300,Municipalities,Municipalities +484296,Municipalities,Municipalities +484295,Municipalities,Municipalities +484294,Municipalities,Municipalities +481870,Municipalities,Municipalities +481868,Municipalities,Municipalities +477333,Municipalities,Municipalities +477285,Municipalities,Municipalities +477281,Municipalities,Municipalities +477279,Municipalities,Municipalities +477277,Municipalities,Municipalities +477274,Municipalities,Municipalities +474999,Municipalities,Municipalities +474998,Municipalities,Municipalities +474991,Municipalities,Municipalities +474990,Municipalities,Municipalities +474988,Municipalities,Municipalities +474974,Municipalities,Municipalities +474970,Municipalities,Municipalities +474968,Municipalities,Municipalities +474967,Municipalities,Municipalities +474966,Municipalities,Municipalities +474965,Municipalities,Municipalities +474962,Municipalities,Municipalities +474960,Municipalities,Municipalities +474958,Municipalities,Municipalities +474956,Municipalities,Municipalities +474955,Municipalities,Municipalities +474954,Municipalities,Municipalities +474953,Municipalities,Municipalities +472571,Municipalities,Municipalities +472548,Municipalities,Municipalities +472542,Municipalities,Municipalities +472540,Municipalities,Municipalities +472539,Municipalities,Municipalities +472538,Municipalities,Municipalities +472536,Municipalities,Municipalities +472535,Municipalities,Municipalities +472533,Municipalities,Municipalities +472531,Municipalities,Municipalities +472527,Municipalities,Municipalities +472524,Municipalities,Municipalities +472523,Municipalities,Municipalities +472521,Municipalities,Municipalities +472520,Municipalities,Municipalities +472514,Municipalities,Municipalities +470303,Municipalities,Municipalities +470300,Municipalities,Municipalities +470297,Municipalities,Municipalities +470295,Municipalities,Municipalities +470292,Municipalities,Municipalities +470291,Municipalities,Municipalities +470290,Municipalities,Municipalities +470288,Municipalities,Municipalities +470237,Municipalities,Municipalities +470235,Municipalities,Municipalities +470233,Municipalities,Municipalities +470230,Municipalities,Municipalities +470228,Municipalities,Municipalities +470225,Municipalities,Municipalities +470219,Municipalities,Municipalities +470216,Municipalities,Municipalities +470213,Municipalities,Municipalities +470212,Municipalities,Municipalities +470211,Municipalities,Municipalities +467087,Municipalities,Municipalities +467081,Municipalities,Municipalities +467077,Municipalities,Municipalities +467069,Municipalities,Municipalities +466993,Municipalities,Municipalities +466943,Municipalities,Municipalities +466942,Municipalities,Municipalities +466940,Municipalities,Municipalities +464201,Municipalities,Municipalities +464199,Municipalities,Municipalities +464198,Municipalities,Municipalities +464195,Municipalities,Municipalities +464179,Municipalities,Municipalities +464178,Municipalities,Municipalities +464177,Municipalities,Municipalities +462581,Municipalities,Municipalities +461480,Municipalities,Municipalities +461478,Municipalities,Municipalities +461476,Municipalities,Municipalities +461475,Municipalities,Municipalities +461474,Municipalities,Municipalities +461471,Municipalities,Municipalities +461470,Municipalities,Municipalities +461468,Municipalities,Municipalities +461467,Municipalities,Municipalities +461465,Municipalities,Municipalities +461464,Municipalities,Municipalities +461463,Municipalities,Municipalities +461461,Municipalities,Municipalities +461459,Municipalities,Municipalities +461458,Municipalities,Municipalities +460771,Municipalities,Municipalities +460767,Municipalities,Municipalities +460089,Municipalities,Municipalities +460086,Municipalities,Municipalities +460084,Municipalities,Municipalities +460081,Municipalities,Municipalities +460078,Municipalities,Municipalities +460077,Municipalities,Municipalities +459422,Municipalities,Municipalities +459421,Municipalities,Municipalities +459420,Municipalities,Municipalities +459419,Municipalities,Municipalities +458176,Municipalities,Municipalities +458174,Municipalities,Municipalities +458171,Municipalities,Municipalities +457059,Municipalities,Municipalities +455841,Municipalities,Municipalities +455834,Municipalities,Municipalities +455822,Municipalities,Municipalities +455814,Municipalities,Municipalities +455486,Municipalities,Municipalities +455479,Municipalities,Municipalities +455466,Municipalities,Municipalities +452504,Municipalities,Municipalities +450356,Municipalities,Municipalities +450353,Municipalities,Municipalities +450352,Municipalities,Municipalities +447864,Municipalities,Municipalities +447845,Municipalities,Municipalities +447827,Municipalities,Municipalities +445323,Municipalities,Municipalities +445310,Municipalities,Municipalities +543611,Municipalities,Municipalities +543610,Municipalities,Municipalities +543609,Municipalities,Municipalities +543607,Municipalities,Municipalities +541535,Municipalities,Municipalities +541534,Municipalities,Municipalities +539111,Municipalities,Municipalities +539110,Municipalities,Municipalities +539108,Municipalities,Municipalities +539105,Municipalities,Municipalities +539104,Municipalities,Municipalities +539103,Municipalities,Municipalities +539102,Municipalities,Municipalities +537469,Municipalities,Municipalities +537378,Municipalities,Municipalities +537322,Municipalities,Municipalities +537319,Municipalities,Municipalities +537318,Municipalities,Municipalities +537317,Municipalities,Municipalities +537315,Municipalities,Municipalities +537314,Municipalities,Municipalities +537313,Municipalities,Municipalities +537312,Municipalities,Municipalities +156554,Government Procurement,Government Procurement +156552,Government Procurement,Government Procurement +250674,Government Procurement,Government Procurement +250671,Government Procurement,Government Procurement +230752,Government Procurement,Government Procurement +207570,Government Procurement,Government Procurement +203247,Government Procurement,Government Procurement +175794,Government Procurement,Government Procurement +175792,Government Procurement,Government Procurement +169115,Government Procurement,Government Procurement +169114,Government Procurement,Government Procurement +169113,Government Procurement,Government Procurement +165940,Government Procurement,Government Procurement +156556,Government Procurement,Government Procurement +429776,Intellectual Property,Propriété intellectuelle +429775,Intellectual Property,Propriété intellectuelle +397215,Intellectual Property,Propriété intellectuelle +380372,Intellectual Property,Propriété intellectuelle +374071,Intellectual Property,Propriété intellectuelle +506287,Intellectual Property,Propriété intellectuelle +506286,Intellectual Property,Propriété intellectuelle +506285,Intellectual Property,Propriété intellectuelle +500531,Intellectual Property,Propriété intellectuelle +500530,Intellectual Property,Propriété intellectuelle +496948,Intellectual Property,Propriété intellectuelle +496946,Intellectual Property,Propriété intellectuelle +491654,Intellectual Property,Propriété intellectuelle +491652,Intellectual Property,Propriété intellectuelle +491649,Intellectual Property,Propriété intellectuelle +491645,Intellectual Property,Propriété intellectuelle +486245,Intellectual Property,Propriété intellectuelle +486244,Intellectual Property,Propriété intellectuelle +486243,Intellectual Property,Propriété intellectuelle +486240,Intellectual Property,Propriété intellectuelle +481316,Intellectual Property,Propriété intellectuelle +476257,Intellectual Property,Propriété intellectuelle +476256,Intellectual Property,Propriété intellectuelle +459798,Intellectual Property,Propriété intellectuelle +450390,Intellectual Property,Propriété intellectuelle +444909,Intellectual Property,Propriété intellectuelle +442830,Intellectual Property,Propriété intellectuelle +442812,Intellectual Property,Propriété intellectuelle +442811,Intellectual Property,Propriété intellectuelle +442810,Intellectual Property,Propriété intellectuelle +442809,Intellectual Property,Propriété intellectuelle +442808,Intellectual Property,Propriété intellectuelle +442805,Intellectual Property,Propriété intellectuelle +442794,Intellectual Property,Propriété intellectuelle +440955,Intellectual Property,Propriété intellectuelle +440954,Intellectual Property,Propriété intellectuelle +440953,Intellectual Property,Propriété intellectuelle +440951,Intellectual Property,Propriété intellectuelle +440950,Intellectual Property,Propriété intellectuelle +440949,Intellectual Property,Propriété intellectuelle +440948,Intellectual Property,Propriété intellectuelle +440947,Intellectual Property,Propriété intellectuelle +440946,Intellectual Property,Propriété intellectuelle +440945,Intellectual Property,Propriété intellectuelle +438293,Intellectual Property,Propriété intellectuelle +438292,Intellectual Property,Propriété intellectuelle +438291,Intellectual Property,Propriété intellectuelle +438290,Intellectual Property,Propriété intellectuelle +435222,Intellectual Property,Propriété intellectuelle +435220,Intellectual Property,Propriété intellectuelle +434912,Intellectual Property,Propriété intellectuelle +434910,Intellectual Property,Propriété intellectuelle +434909,Intellectual Property,Propriété intellectuelle +433856,Intellectual Property,Propriété intellectuelle +433855,Intellectual Property,Propriété intellectuelle +433854,Intellectual Property,Propriété intellectuelle +160761,Employment and Training,Employment and Training +160760,Employment and Training,Employment and Training +160766,Employment and Training,Employment and Training +160763,Employment and Training,Employment and Training +160760,Environment,Environment +156546,Environment,Environment +160766,Environment,Environment +160763,Environment,Environment +160762,Environment,Environment +160760,Labour,Labour +156546,Labour,Labour +160766,Labour,Labour +160763,Labour,Labour +160762,Labour,Labour +160760,Small Business,Small Business +156546,Small Business,Small Business +160766,Small Business,Small Business +160763,Small Business,Small Business +160762,Small Business,Small Business +490914,Environment,Environment +161569,Agriculture,Agriculture +159401,Agriculture,Agriculture +159399,Agriculture,Agriculture +157041,Agriculture,Agriculture +161569,Transportation,Transportation +159401,Transportation,Transportation +513321,Security,Security +513319,Security,Security +154546,Security,Security +372707,Security,Security +356365,Security,Security +307155,Security,Security +407895,Security,Security +406910,Security,Security +406908,Security,Security +406907,Security,Security +406904,Security,Security +406903,Security,Security +406902,Security,Security +406900,Security,Security +398211,Security,Security +397832,Security,Security +396852,Security,Security +396801,Security,Security +396790,Security,Security +395144,Security,Security +395140,Security,Security +394492,Security,Security +394491,Security,Security +394489,Security,Security +391488,Security,Security +388428,Security,Security +386482,Security,Security +381724,Security,Security +379896,Security,Security +379887,Security,Security +379859,Security,Security +376708,Security,Security +374616,Security,Security +493557,Security,Security +493555,Security,Security +491875,Security,Security +476095,Security,Security +476093,Security,Security +471314,Security,Security +468471,Security,Security +468461,Security,Security +468460,Security,Security +468440,Security,Security +458735,Security,Security +457616,Security,Security +455566,Security,Security +452500,Security,Security +420000,Security,Security +417080,Security,Security +417076,Security,Security +417075,Security,Security +417073,Security,Security +417071,Security,Security +417070,Security,Security +417069,Security,Security +417068,Security,Security +417067,Security,Security +409139,Security,Security +407909,Security,Security +407907,Security,Security +407906,Security,Security +407905,Security,Security +407903,Security,Security +407902,Security,Security +543445,Security,Security +543429,Security,Security +541700,Security,Security +537189,Security,Security +537187,Security,Security +537185,Security,Security +531128,Security,Security +528842,Security,Security +522538,Security,Security +521761,Security,Security +517947,Security,Security +517945,Security,Security +517943,Security,Security +517939,Security,Security +517934,Security,Security +517925,Security,Security +517918,Security,Security +517912,Security,Security +514133,Security,Security +514127,Security,Security +514123,Security,Security +513329,Security,Security +513328,Security,Security +513327,Security,Security +513326,Security,Security +402763,Energy,Energy +402762,Energy,Energy +162350,Energy,Energy +162340,Energy,Energy +162306,Energy,Energy +162301,Energy,Energy +162271,Energy,Energy +159906,Energy,Energy +159898,Energy,Energy +159885,Energy,Energy +157262,Energy,Energy +154586,Energy,Energy +192893,Energy,Energy +192891,Energy,Energy +188947,Energy,Energy +180454,Energy,Energy +180449,Energy,Energy +180446,Energy,Energy +175086,Energy,Energy +175084,Energy,Energy +175083,Energy,Energy +175082,Energy,Energy +175080,Energy,Energy +175079,Energy,Energy +175078,Energy,Energy +173324,Energy,Energy +170835,Energy,Energy +170795,Energy,Energy +170794,Energy,Energy +170775,Energy,Energy +168808,Energy,Energy +166000,Energy,Energy +165336,Energy,Energy +163872,Energy,Energy +163870,Energy,Energy +163864,Energy,Energy +163861,Energy,Energy +162471,Energy,Energy +162438,Energy,Energy +162421,Energy,Energy +162408,Energy,Energy +162380,Energy,Energy +162376,Energy,Energy +281088,Energy,Energy +281085,Energy,Energy +281080,Energy,Energy +281075,Energy,Energy +276697,Energy,Energy +273272,Energy,Energy +273270,Energy,Energy +273263,Energy,Energy +273260,Energy,Energy +263429,Energy,Energy +263427,Energy,Energy +257149,Energy,Energy +253137,Energy,Energy +253136,Energy,Energy +253130,Energy,Energy +250661,Energy,Energy +250656,Energy,Energy +250610,Energy,Energy +250609,Energy,Energy +250595,Energy,Energy +250593,Energy,Energy +245399,Energy,Energy +245396,Energy,Energy +245393,Energy,Energy +245370,Energy,Energy +245289,Energy,Energy +245257,Energy,Energy +245240,Energy,Energy +245237,Energy,Energy +245058,Energy,Energy +228790,Energy,Energy +228789,Energy,Energy +226986,Energy,Energy +226959,Energy,Energy +226952,Energy,Energy +226949,Energy,Energy +226945,Energy,Energy +226935,Energy,Energy +226933,Energy,Energy +226929,Energy,Energy +226928,Energy,Energy +222868,Energy,Energy +217711,Energy,Energy +216947,Energy,Energy +212274,Energy,Energy +212272,Energy,Energy +212271,Energy,Energy +212238,Energy,Energy +207139,Energy,Energy +207128,Energy,Energy +207125,Energy,Energy +202875,Energy,Energy +202872,Energy,Energy +202869,Energy,Energy +202863,Energy,Energy +202860,Energy,Energy +202859,Energy,Energy +202847,Energy,Energy +202842,Energy,Energy +197482,Energy,Energy +197481,Energy,Energy +197479,Energy,Energy +197478,Energy,Energy +197472,Energy,Energy +197469,Energy,Energy +197459,Energy,Energy +197448,Energy,Energy +197447,Energy,Energy +197446,Energy,Energy +392663,Energy,Energy +392661,Energy,Energy +387881,Energy,Energy +387880,Energy,Energy +387879,Energy,Energy +387871,Energy,Energy +385244,Energy,Energy +383630,Energy,Energy +383522,Energy,Energy +383468,Energy,Energy +382361,Energy,Energy +382355,Energy,Energy +381248,Energy,Energy +381243,Energy,Energy +381217,Energy,Energy +378906,Energy,Energy +376985,Energy,Energy +376971,Energy,Energy +374674,Energy,Energy +374660,Energy,Energy +374656,Energy,Energy +374642,Energy,Energy +374633,Energy,Energy +374613,Energy,Energy +374609,Energy,Energy +371995,Energy,Energy +371969,Energy,Energy +371965,Energy,Energy +371917,Energy,Energy +369202,Energy,Energy +366589,Energy,Energy +366584,Energy,Energy +359690,Energy,Energy +359688,Energy,Energy +359686,Energy,Energy +359583,Energy,Energy +357165,Energy,Energy +357161,Energy,Energy +356725,Energy,Energy +355942,Energy,Energy +355924,Energy,Energy +350462,Energy,Energy +343846,Energy,Energy +341504,Energy,Energy +341499,Energy,Energy +341489,Energy,Energy +341486,Energy,Energy +341477,Energy,Energy +341467,Energy,Energy +341458,Energy,Energy +338777,Energy,Energy +338771,Energy,Energy +338736,Energy,Energy +338734,Energy,Energy +338732,Energy,Energy +338729,Energy,Energy +338726,Energy,Energy +335294,Energy,Energy +335292,Energy,Energy +333290,Energy,Energy +330869,Energy,Energy +330868,Energy,Energy +330867,Energy,Energy +329819,Energy,Energy +327655,Energy,Energy +327638,Energy,Energy +327617,Energy,Energy +327578,Energy,Energy +327562,Energy,Energy +327556,Energy,Energy +323829,Energy,Energy +323828,Energy,Energy +318724,Energy,Energy +318722,Energy,Energy +318718,Energy,Energy +315763,Energy,Energy +315744,Energy,Energy +315741,Energy,Energy +312258,Energy,Energy +312255,Energy,Energy +312254,Energy,Energy +310342,Energy,Energy +310312,Energy,Energy +310308,Energy,Energy +310300,Energy,Energy +310296,Energy,Energy +300777,Energy,Energy +300772,Energy,Energy +300770,Energy,Energy +300769,Energy,Energy +300750,Energy,Energy +300749,Energy,Energy +286878,Energy,Energy +286630,Energy,Energy +281100,Energy,Energy +281096,Energy,Energy +281095,Energy,Energy +281091,Energy,Energy +281089,Energy,Energy +544013,Energy,Energy +537554,Energy,Energy +535482,Energy,Energy +530154,Energy,Energy +529400,Energy,Energy +525857,Energy,Energy +525854,Energy,Energy +522568,Energy,Energy +515617,Energy,Energy +511287,Energy,Energy +508425,Energy,Energy +508423,Energy,Energy +504626,Energy,Energy +502499,Energy,Energy +502490,Energy,Energy +502479,Energy,Energy +498503,Energy,Energy +496168,Energy,Energy +496162,Energy,Energy +493564,Energy,Energy +491668,Energy,Energy +487882,Energy,Energy +483600,Energy,Energy +479690,Energy,Energy +479685,Energy,Energy +475058,Energy,Energy +475053,Energy,Energy +475049,Energy,Energy +472996,Energy,Energy +472992,Energy,Energy +470985,Energy,Energy +467550,Energy,Energy +467540,Energy,Energy +465046,Energy,Energy +465037,Energy,Energy +462849,Energy,Energy +461750,Energy,Energy +460600,Energy,Energy +459402,Energy,Energy +459401,Energy,Energy +452317,Energy,Energy +452315,Energy,Energy +452313,Energy,Energy +452310,Energy,Energy +452303,Energy,Energy +448028,Energy,Energy +444995,Energy,Energy +443687,Energy,Energy +441404,Energy,Energy +441399,Energy,Energy +438796,Energy,Energy +438795,Energy,Energy +438782,Energy,Energy +435276,Energy,Energy +435244,Energy,Energy +435234,Energy,Energy +433546,Energy,Energy +430198,Energy,Energy +430193,Energy,Energy +430191,Energy,Energy +428877,Energy,Energy +428871,Energy,Energy +428860,Energy,Energy +428785,Energy,Energy +425500,Energy,Energy +423890,Energy,Energy +423888,Energy,Energy +422010,Energy,Energy +421999,Energy,Energy +412832,Energy,Energy +412830,Energy,Energy +412802,Energy,Energy +412767,Energy,Energy +412741,Energy,Energy +412728,Energy,Energy +412713,Energy,Energy +409395,Energy,Energy +407929,Energy,Energy +407928,Energy,Energy +405473,Energy,Energy +519758,Energy,Energy +517724,Energy,Energy +154592,Energy,Energy +192895,Energy,Energy +192892,Energy,Energy +188958,Energy,Energy +188955,Energy,Energy +188941,Energy,Energy +188939,Energy,Energy +188935,Energy,Energy +188930,Energy,Energy +185044,Energy,Energy +180452,Energy,Energy +180445,Energy,Energy +175087,Energy,Energy +175085,Energy,Energy +171961,Energy,Energy +170828,Energy,Energy +170796,Energy,Energy +170792,Energy,Energy +170790,Energy,Energy +170786,Energy,Energy +170782,Energy,Energy +170778,Energy,Energy +170765,Energy,Energy +168894,Energy,Energy +168802,Energy,Energy +168791,Energy,Energy +168787,Energy,Energy +168779,Energy,Energy +166003,Energy,Energy +163873,Energy,Energy +163868,Energy,Energy +163866,Energy,Energy +163865,Energy,Energy +163863,Energy,Energy +162444,Energy,Energy +162429,Energy,Energy +162425,Energy,Energy +162416,Energy,Energy +162394,Energy,Energy +162370,Energy,Energy +162364,Energy,Energy +162332,Energy,Energy +162315,Energy,Energy +162292,Energy,Energy +162272,Energy,Energy +162266,Energy,Energy +159786,Energy,Energy +157221,Energy,Energy +378921,Energy,Energy +378917,Energy,Energy +378896,Energy,Energy +376996,Energy,Energy +376981,Energy,Energy +376966,Energy,Energy +374685,Energy,Energy +374684,Energy,Energy +374682,Energy,Energy +374669,Energy,Energy +374666,Energy,Energy +374663,Energy,Energy +372002,Energy,Energy +371982,Energy,Energy +371972,Energy,Energy +371945,Energy,Energy +371939,Energy,Energy +371887,Energy,Energy +369223,Energy,Energy +369220,Energy,Energy +369216,Energy,Energy +369212,Energy,Energy +369195,Energy,Energy +369187,Energy,Energy +366586,Energy,Energy +366582,Energy,Energy +365068,Energy,Energy +359687,Energy,Energy +359685,Energy,Energy +359582,Energy,Energy +359580,Energy,Energy +357163,Energy,Energy +357160,Energy,Energy +355947,Energy,Energy +355926,Energy,Energy +350463,Energy,Energy +347107,Energy,Energy +347104,Energy,Energy +347103,Energy,Energy +343855,Energy,Energy +341497,Energy,Energy +341484,Energy,Energy +341474,Energy,Energy +341472,Energy,Energy +341465,Energy,Energy +338739,Energy,Energy +338720,Energy,Energy +338714,Energy,Energy +335298,Energy,Energy +335291,Energy,Energy +330866,Energy,Energy +330865,Energy,Energy +327667,Energy,Energy +327590,Energy,Energy +327568,Energy,Energy +327540,Energy,Energy +327529,Energy,Energy +318723,Energy,Energy +318715,Energy,Energy +315761,Energy,Energy +315753,Energy,Energy +315749,Energy,Energy +315743,Energy,Energy +312259,Energy,Energy +312257,Energy,Energy +312256,Energy,Energy +310346,Energy,Energy +310289,Energy,Energy +296156,Energy,Energy +296154,Energy,Energy +286869,Energy,Energy +286634,Energy,Energy +281101,Energy,Energy +281098,Energy,Energy +281094,Energy,Energy +281072,Energy,Energy +281070,Energy,Energy +273353,Energy,Energy +273291,Energy,Energy +273265,Energy,Energy +273259,Energy,Energy +268449,Energy,Energy +263426,Energy,Energy +257150,Energy,Energy +253135,Energy,Energy +253133,Energy,Energy +250665,Energy,Energy +245395,Energy,Energy +245390,Energy,Energy +245290,Energy,Energy +245272,Energy,Energy +245255,Energy,Energy +245253,Energy,Energy +245247,Energy,Energy +245073,Energy,Energy +245072,Energy,Energy +245067,Energy,Energy +226963,Energy,Energy +226953,Energy,Energy +226951,Energy,Energy +226947,Energy,Energy +226943,Energy,Energy +226941,Energy,Energy +226938,Energy,Energy +222872,Energy,Energy +222871,Energy,Energy +222870,Energy,Energy +222867,Energy,Energy +212269,Energy,Energy +212264,Energy,Energy +212257,Energy,Energy +212253,Energy,Energy +212251,Energy,Energy +212249,Energy,Energy +212245,Energy,Energy +211647,Energy,Energy +207124,Energy,Energy +202858,Energy,Energy +202845,Energy,Energy +202836,Energy,Energy +197486,Energy,Energy +197480,Energy,Energy +197476,Energy,Energy +197474,Energy,Energy +197464,Energy,Energy +197461,Energy,Energy +197453,Energy,Energy +197451,Energy,Energy +197449,Energy,Energy +511301,Energy,Energy +508424,Energy,Energy +504638,Energy,Energy +504633,Energy,Energy +496166,Energy,Energy +493570,Energy,Energy +493567,Energy,Energy +491663,Energy,Energy +487878,Energy,Energy +487869,Energy,Energy +483610,Energy,Energy +483605,Energy,Energy +483603,Energy,Energy +482413,Energy,Energy +482412,Energy,Energy +482409,Energy,Energy +479710,Energy,Energy +479706,Energy,Energy +479703,Energy,Energy +477525,Energy,Energy +477512,Energy,Energy +475057,Energy,Energy +472987,Energy,Energy +472980,Energy,Energy +470993,Energy,Energy +470990,Energy,Energy +470974,Energy,Energy +467556,Energy,Energy +465038,Energy,Energy +465036,Energy,Energy +462848,Energy,Energy +462847,Energy,Energy +462846,Energy,Energy +458200,Energy,Energy +458199,Energy,Energy +456670,Energy,Energy +455732,Energy,Energy +452326,Energy,Energy +452321,Energy,Energy +452319,Energy,Energy +449656,Energy,Energy +449645,Energy,Energy +448046,Energy,Energy +448024,Energy,Energy +446637,Energy,Energy +443683,Energy,Energy +438799,Energy,Energy +438798,Energy,Energy +438793,Energy,Energy +438778,Energy,Energy +438774,Energy,Energy +438769,Energy,Energy +438761,Energy,Energy +435293,Energy,Energy +435261,Energy,Energy +435255,Energy,Energy +432245,Energy,Energy +430199,Energy,Energy +428875,Energy,Energy +428844,Energy,Energy +428805,Energy,Energy +425499,Energy,Energy +425498,Energy,Energy +422014,Energy,Energy +419469,Energy,Energy +417778,Energy,Energy +417776,Energy,Energy +417770,Energy,Energy +415401,Energy,Energy +412843,Energy,Energy +412827,Energy,Energy +412815,Energy,Energy +412811,Energy,Energy +412808,Energy,Energy +409397,Energy,Energy +409386,Energy,Energy +409384,Energy,Energy +409383,Energy,Energy +409326,Energy,Energy +407945,Energy,Energy +407942,Energy,Energy +407939,Energy,Energy +407938,Energy,Energy +407936,Energy,Energy +406225,Energy,Energy +405477,Energy,Energy +405474,Energy,Energy +405471,Energy,Energy +405456,Energy,Energy +402765,Energy,Energy +400787,Energy,Energy +400784,Energy,Energy +398555,Energy,Energy +398553,Energy,Energy +393969,Energy,Energy +393963,Energy,Energy +392665,Energy,Energy +391848,Energy,Energy +391847,Energy,Energy +390809,Energy,Energy +390796,Energy,Energy +390779,Energy,Energy +387876,Energy,Energy +387873,Energy,Energy +387863,Energy,Energy +387319,Energy,Energy +385245,Energy,Energy +385243,Energy,Energy +385242,Energy,Energy +385228,Energy,Energy +383510,Energy,Energy +382360,Energy,Energy +382353,Energy,Energy +382352,Energy,Energy +382346,Energy,Energy +382343,Energy,Energy +382340,Energy,Energy +381253,Energy,Energy +381252,Energy,Energy +381238,Energy,Energy +381237,Energy,Energy +381227,Energy,Energy +378925,Energy,Energy +378924,Energy,Energy +378923,Energy,Energy +544028,Energy,Energy +539769,Energy,Energy +537556,Energy,Energy +537555,Energy,Energy +535504,Energy,Energy +535496,Energy,Energy +535490,Energy,Energy +532400,Energy,Energy +529399,Energy,Energy +176524,Defence,Defence +176027,Defence,Defence +193232,Defence,Defence +167277,Government Procurement,Government Procurement +176524,Security,Security +176027,Security,Security +175278,Security,Security +175277,Security,Security +159142,Economic Development,Economic Development +159142,International Development,International Development +480067,Economic Development,Economic Development +428996,Economic Development,Economic Development +165918,Economic Development,Economic Development +154643,Economic Development,Economic Development +249031,Economic Development,Economic Development +196007,Economic Development,Economic Development +196006,Economic Development,Economic Development +196004,Economic Development,Economic Development +183464,Economic Development,Economic Development +183444,Economic Development,Economic Development +183424,Economic Development,Economic Development +374831,Economic Development,Economic Development +374830,Economic Development,Economic Development +372783,Economic Development,Economic Development +366593,Economic Development,Economic Development +366590,Economic Development,Economic Development +338661,Economic Development,Economic Development +325063,Economic Development,Economic Development +416771,Economic Development,Economic Development +406875,Economic Development,Economic Development +406874,Economic Development,Economic Development +403924,Economic Development,Economic Development +400995,Economic Development,Economic Development +394474,Economic Development,Economic Development +394472,Economic Development,Economic Development +391341,Economic Development,Economic Development +391310,Economic Development,Economic Development +385670,Economic Development,Economic Development +382617,Economic Development,Economic Development +381595,Economic Development,Economic Development +381574,Economic Development,Economic Development +513217,Economic Development,Economic Development +502874,Economic Development,Economic Development +443888,Research and Development,Research and Development (R&D) +438785,Research and Development,Research and Development (R&D) +154643,Research and Development,Research and Development (R&D) +165918,Research and Development,Research and Development (R&D) +325068,Research and Development,Research and Development (R&D) +325063,Research and Development,Research and Development (R&D) +274410,Research and Development,Research and Development (R&D) +249031,Research and Development,Research and Development (R&D) +196008,Research and Development,Research and Development (R&D) +196007,Research and Development,Research and Development (R&D) +196006,Research and Development,Research and Development (R&D) +196005,Research and Development,Research and Development (R&D) +196004,Research and Development,Research and Development (R&D) +183464,Research and Development,Research and Development (R&D) +183444,Research and Development,Research and Development (R&D) +183424,Research and Development,Research and Development (R&D) +438783,Research and Development,Research and Development (R&D) +432589,Research and Development,Research and Development (R&D) +432588,Research and Development,Research and Development (R&D) +432587,Research and Development,Research and Development (R&D) +432586,Research and Development,Research and Development (R&D) +428999,Research and Development,Research and Development (R&D) +428996,Research and Development,Research and Development (R&D) +420150,Research and Development,Research and Development (R&D) +420147,Research and Development,Research and Development (R&D) +420133,Research and Development,Research and Development (R&D) +416772,Research and Development,Research and Development (R&D) +416768,Research and Development,Research and Development (R&D) +409996,Research and Development,Research and Development (R&D) +408061,Research and Development,Research and Development (R&D) +406875,Research and Development,Research and Development (R&D) +406874,Research and Development,Research and Development (R&D) +403924,Research and Development,Research and Development (R&D) +394474,Research and Development,Research and Development (R&D) +394472,Research and Development,Research and Development (R&D) +391341,Research and Development,Research and Development (R&D) +391310,Research and Development,Research and Development (R&D) +385658,Research and Development,Research and Development (R&D) +374831,Research and Development,Research and Development (R&D) +374830,Research and Development,Research and Development (R&D) +366593,Research and Development,Research and Development (R&D) +366590,Research and Development,Research and Development (R&D) +358208,Research and Development,Research and Development (R&D) +357966,Research and Development,Research and Development (R&D) +541873,Research and Development,Research and Development (R&D) +541872,Research and Development,Research and Development (R&D) +534785,Research and Development,Research and Development (R&D) +534782,Research and Development,Research and Development (R&D) +534781,Research and Development,Research and Development (R&D) +534780,Research and Development,Research and Development (R&D) +534779,Research and Development,Research and Development (R&D) +532014,Research and Development,Research and Development (R&D) +526567,Research and Development,Research and Development (R&D) +526565,Research and Development,Research and Development (R&D) +520127,Research and Development,Research and Development (R&D) +520126,Research and Development,Research and Development (R&D) +515807,Research and Development,Research and Development (R&D) +514189,Research and Development,Research and Development (R&D) +513217,Research and Development,Research and Development (R&D) +513216,Research and Development,Research and Development (R&D) +511458,Research and Development,Research and Development (R&D) +511457,Research and Development,Research and Development (R&D) +508881,Research and Development,Research and Development (R&D) +508879,Research and Development,Research and Development (R&D) +502874,Research and Development,Research and Development (R&D) +496146,Research and Development,Research and Development (R&D) +496145,Research and Development,Research and Development (R&D) +496143,Research and Development,Research and Development (R&D) +480067,Research and Development,Research and Development (R&D) +464987,Research and Development,Research and Development (R&D) +462802,Research and Development,Research and Development (R&D) +462801,Research and Development,Research and Development (R&D) +458842,Research and Development,Research and Development (R&D) +458839,Research and Development,Research and Development (R&D) +450189,Research and Development,Research and Development (R&D) +450186,Research and Development,Research and Development (R&D) +450176,Research and Development,Research and Development (R&D) +450174,Research and Development,Research and Development (R&D) +443896,Research and Development,Research and Development (R&D) +443892,Research and Development,Research and Development (R&D) +157970,Agriculture,Agriculture +157969,Agriculture,Agriculture +185532,Agriculture,Agriculture +176184,Agriculture,Agriculture +175607,Agriculture,Agriculture +175606,Agriculture,Agriculture +175604,Industry,Industry +175603,Industry,Industry +157970,Industry,Industry +157969,Industry,Industry +185532,Industry,Industry +176184,Industry,Industry +175607,Industry,Industry +375830,International Relations,Relations internationales +514266,International Relations,Relations internationales +485273,Employment and Training,Employment and Training +485266,Employment and Training,Employment and Training +156829,Employment and Training,Employment and Training +154792,Employment and Training,Employment and Training +154789,Employment and Training,Employment and Training +242709,Employment and Training,Employment and Training +231589,Employment and Training,Employment and Training +231569,Employment and Training,Employment and Training +230341,Employment and Training,Employment and Training +230335,Employment and Training,Employment and Training +227931,Employment and Training,Employment and Training +227930,Employment and Training,Employment and Training +224669,Employment and Training,Employment and Training +212350,Employment and Training,Employment and Training +211132,Employment and Training,Employment and Training +208067,Employment and Training,Employment and Training +208027,Employment and Training,Employment and Training +208007,Employment and Training,Employment and Training +206197,Employment and Training,Employment and Training +206194,Employment and Training,Employment and Training +199810,Employment and Training,Employment and Training +196447,Employment and Training,Employment and Training +190870,Employment and Training,Employment and Training +190869,Employment and Training,Employment and Training +190863,Employment and Training,Employment and Training +187748,Employment and Training,Employment and Training +185764,Employment and Training,Employment and Training +172750,Employment and Training,Employment and Training +165446,Employment and Training,Employment and Training +162402,Employment and Training,Employment and Training +157486,Employment and Training,Employment and Training +157483,Employment and Training,Employment and Training +156856,Employment and Training,Employment and Training +357687,Employment and Training,Employment and Training +354919,Employment and Training,Employment and Training +354821,Employment and Training,Employment and Training +354769,Employment and Training,Employment and Training +352547,Employment and Training,Employment and Training +349557,Employment and Training,Employment and Training +345598,Employment and Training,Employment and Training +344822,Employment and Training,Employment and Training +344522,Employment and Training,Employment and Training +340788,Employment and Training,Employment and Training +337130,Employment and Training,Employment and Training +337129,Employment and Training,Employment and Training +334165,Employment and Training,Employment and Training +333118,Employment and Training,Employment and Training +323960,Employment and Training,Employment and Training +320310,Employment and Training,Employment and Training +314392,Employment and Training,Employment and Training +314391,Employment and Training,Employment and Training +314133,Employment and Training,Employment and Training +313389,Employment and Training,Employment and Training +311972,Employment and Training,Employment and Training +311969,Employment and Training,Employment and Training +305311,Employment and Training,Employment and Training +305308,Employment and Training,Employment and Training +293216,Employment and Training,Employment and Training +293215,Employment and Training,Employment and Training +289730,Employment and Training,Employment and Training +288431,Employment and Training,Employment and Training +283889,Employment and Training,Employment and Training +276796,Employment and Training,Employment and Training +276700,Employment and Training,Employment and Training +273310,Employment and Training,Employment and Training +273305,Employment and Training,Employment and Training +268210,Employment and Training,Employment and Training +264269,Employment and Training,Employment and Training +262210,Employment and Training,Employment and Training +262209,Employment and Training,Employment and Training +262189,Employment and Training,Employment and Training +259354,Employment and Training,Employment and Training +259352,Employment and Training,Employment and Training +259350,Employment and Training,Employment and Training +259349,Employment and Training,Employment and Training +259332,Employment and Training,Employment and Training +256172,Employment and Training,Employment and Training +256171,Employment and Training,Employment and Training +256169,Employment and Training,Employment and Training +251677,Employment and Training,Employment and Training +251676,Employment and Training,Employment and Training +246569,Employment and Training,Employment and Training +482186,Employment and Training,Employment and Training +480039,Employment and Training,Employment and Training +480032,Employment and Training,Employment and Training +472525,Employment and Training,Employment and Training +472501,Employment and Training,Employment and Training +472493,Employment and Training,Employment and Training +472488,Employment and Training,Employment and Training +472483,Employment and Training,Employment and Training +472481,Employment and Training,Employment and Training +469151,Employment and Training,Employment and Training +467839,Employment and Training,Employment and Training +467803,Employment and Training,Employment and Training +464106,Employment and Training,Employment and Training +464102,Employment and Training,Employment and Training +463061,Employment and Training,Employment and Training +463036,Employment and Training,Employment and Training +463031,Employment and Training,Employment and Training +462263,Employment and Training,Employment and Training +462250,Employment and Training,Employment and Training +461297,Employment and Training,Employment and Training +453818,Employment and Training,Employment and Training +448771,Employment and Training,Employment and Training +448770,Employment and Training,Employment and Training +445692,Employment and Training,Employment and Training +444749,Employment and Training,Employment and Training +440693,Employment and Training,Employment and Training +439538,Employment and Training,Employment and Training +439502,Employment and Training,Employment and Training +439487,Employment and Training,Employment and Training +439486,Employment and Training,Employment and Training +429993,Employment and Training,Employment and Training +427781,Employment and Training,Employment and Training +421185,Employment and Training,Employment and Training +398534,Employment and Training,Employment and Training +393598,Employment and Training,Employment and Training +392330,Employment and Training,Employment and Training +392329,Employment and Training,Employment and Training +389197,Employment and Training,Employment and Training +387147,Employment and Training,Employment and Training +387118,Employment and Training,Employment and Training +385452,Employment and Training,Employment and Training +385405,Employment and Training,Employment and Training +382252,Employment and Training,Employment and Training +381605,Employment and Training,Employment and Training +381600,Employment and Training,Employment and Training +378645,Employment and Training,Employment and Training +374385,Employment and Training,Employment and Training +374381,Employment and Training,Employment and Training +374378,Employment and Training,Employment and Training +371002,Employment and Training,Employment and Training +370995,Employment and Training,Employment and Training +367807,Employment and Training,Employment and Training +364582,Employment and Training,Employment and Training +361884,Employment and Training,Employment and Training +537838,Employment and Training,Employment and Training +534640,Employment and Training,Employment and Training +534501,Employment and Training,Employment and Training +534495,Employment and Training,Employment and Training +534493,Employment and Training,Employment and Training +531514,Employment and Training,Employment and Training +529114,Employment and Training,Employment and Training +529094,Employment and Training,Employment and Training +529062,Employment and Training,Employment and Training +525656,Employment and Training,Employment and Training +522533,Employment and Training,Employment and Training +519703,Employment and Training,Employment and Training +519700,Employment and Training,Employment and Training +515508,Employment and Training,Employment and Training +515498,Employment and Training,Employment and Training +510588,Employment and Training,Employment and Training +508242,Employment and Training,Employment and Training +505270,Employment and Training,Employment and Training +505257,Employment and Training,Employment and Training +505256,Employment and Training,Employment and Training +505248,Employment and Training,Employment and Training +505247,Employment and Training,Employment and Training +505240,Employment and Training,Employment and Training +505235,Employment and Training,Employment and Training +505234,Employment and Training,Employment and Training +505230,Employment and Training,Employment and Training +501912,Employment and Training,Employment and Training +501901,Employment and Training,Employment and Training +501891,Employment and Training,Employment and Training +501882,Employment and Training,Employment and Training +501860,Employment and Training,Employment and Training +501859,Employment and Training,Employment and Training +501819,Employment and Training,Employment and Training +501817,Employment and Training,Employment and Training +498491,Employment and Training,Employment and Training +498483,Employment and Training,Employment and Training +498476,Employment and Training,Employment and Training +498467,Employment and Training,Employment and Training +498426,Employment and Training,Employment and Training +498410,Employment and Training,Employment and Training +495449,Employment and Training,Employment and Training +493154,Employment and Training,Employment and Training +493148,Employment and Training,Employment and Training +490634,Employment and Training,Employment and Training +490477,Employment and Training,Employment and Training +490471,Employment and Training,Employment and Training +487581,Employment and Training,Employment and Training +487559,Employment and Training,Employment and Training +487550,Employment and Training,Employment and Training +487523,Employment and Training,Employment and Training +487513,Employment and Training,Employment and Training +487487,Employment and Training,Employment and Training +485303,Employment and Training,Employment and Training +485288,Employment and Training,Employment and Training +485278,Employment and Training,Employment and Training +487572,Industry,Industry +487570,Industry,Industry +158316,Industry,Industry +158016,Industry,Industry +158015,Industry,Industry +158013,Industry,Industry +158012,Industry,Industry +158010,Industry,Industry +157487,Industry,Industry +157486,Industry,Industry +157483,Industry,Industry +156856,Industry,Industry +156829,Industry,Industry +154792,Industry,Industry +224669,Industry,Industry +221127,Industry,Industry +208067,Industry,Industry +208047,Industry,Industry +208027,Industry,Industry +208007,Industry,Industry +206197,Industry,Industry +206194,Industry,Industry +190863,Industry,Industry +182866,Industry,Industry +175200,Industry,Industry +172752,Industry,Industry +172204,Industry,Industry +165451,Industry,Industry +165005,Industry,Industry +162402,Industry,Industry +159002,Industry,Industry +158995,Industry,Industry +158535,Industry,Industry +389208,Industry,Industry +389205,Industry,Industry +389193,Industry,Industry +385452,Industry,Industry +385440,Industry,Industry +385435,Industry,Industry +385429,Industry,Industry +385405,Industry,Industry +378661,Industry,Industry +376140,Industry,Industry +376137,Industry,Industry +364584,Industry,Industry +356879,Industry,Industry +349558,Industry,Industry +347018,Industry,Industry +347017,Industry,Industry +333118,Industry,Industry +328810,Industry,Industry +314391,Industry,Industry +314133,Industry,Industry +264269,Industry,Industry +262210,Industry,Industry +259352,Industry,Industry +259350,Industry,Industry +259349,Industry,Industry +259332,Industry,Industry +487569,Industry,Industry +487564,Industry,Industry +487562,Industry,Industry +487559,Industry,Industry +487557,Industry,Industry +487555,Industry,Industry +487553,Industry,Industry +487550,Industry,Industry +487547,Industry,Industry +487523,Industry,Industry +487499,Industry,Industry +487493,Industry,Industry +487464,Industry,Industry +487451,Industry,Industry +485303,Industry,Industry +485301,Industry,Industry +485299,Industry,Industry +485297,Industry,Industry +485295,Industry,Industry +485293,Industry,Industry +485291,Industry,Industry +485290,Industry,Industry +485287,Industry,Industry +485285,Industry,Industry +485283,Industry,Industry +485275,Industry,Industry +485273,Industry,Industry +485266,Industry,Industry +482186,Industry,Industry +482184,Industry,Industry +482182,Industry,Industry +482180,Industry,Industry +482176,Industry,Industry +482165,Industry,Industry +480052,Industry,Industry +480043,Industry,Industry +480039,Industry,Industry +480037,Industry,Industry +480021,Industry,Industry +480017,Industry,Industry +476472,Industry,Industry +476470,Industry,Industry +476464,Industry,Industry +476462,Industry,Industry +476457,Industry,Industry +475516,Industry,Industry +475514,Industry,Industry +475510,Industry,Industry +475506,Industry,Industry +472099,Industry,Industry +469157,Industry,Industry +469156,Industry,Industry +469146,Industry,Industry +469144,Industry,Industry +469143,Industry,Industry +469142,Industry,Industry +469141,Industry,Industry +469140,Industry,Industry +469138,Industry,Industry +469136,Industry,Industry +469135,Industry,Industry +469133,Industry,Industry +469131,Industry,Industry +469128,Industry,Industry +467829,Industry,Industry +467826,Industry,Industry +467818,Industry,Industry +467210,Industry,Industry +467208,Industry,Industry +462336,Industry,Industry +462264,Industry,Industry +450862,Industry,Industry +450861,Industry,Industry +450860,Industry,Industry +445692,Industry,Industry +444749,Industry,Industry +439549,Industry,Industry +439548,Industry,Industry +439546,Industry,Industry +439545,Industry,Industry +439543,Industry,Industry +439542,Industry,Industry +439540,Industry,Industry +432871,Industry,Industry +432240,Industry,Industry +429997,Industry,Industry +429511,Industry,Industry +429508,Industry,Industry +428095,Industry,Industry +428092,Industry,Industry +428081,Industry,Industry +428076,Industry,Industry +428074,Industry,Industry +427783,Industry,Industry +427781,Industry,Industry +427774,Industry,Industry +421185,Industry,Industry +411619,Industry,Industry +543591,Industry,Industry +542594,Industry,Industry +541492,Industry,Industry +539405,Industry,Industry +539152,Industry,Industry +539151,Industry,Industry +539148,Industry,Industry +539146,Industry,Industry +537850,Industry,Industry +537845,Industry,Industry +537842,Industry,Industry +537839,Industry,Industry +537837,Industry,Industry +537832,Industry,Industry +537829,Industry,Industry +537823,Industry,Industry +534765,Industry,Industry +534761,Industry,Industry +534760,Industry,Industry +534755,Industry,Industry +534751,Industry,Industry +534748,Industry,Industry +534746,Industry,Industry +534745,Industry,Industry +534743,Industry,Industry +534742,Industry,Industry +534737,Industry,Industry +534671,Industry,Industry +534667,Industry,Industry +534664,Industry,Industry +534658,Industry,Industry +534653,Industry,Industry +534651,Industry,Industry +534650,Industry,Industry +534642,Industry,Industry +534640,Industry,Industry +534539,Industry,Industry +534502,Industry,Industry +534500,Industry,Industry +534496,Industry,Industry +534494,Industry,Industry +531543,Industry,Industry +531540,Industry,Industry +531535,Industry,Industry +531533,Industry,Industry +531528,Industry,Industry +531506,Industry,Industry +529103,Industry,Industry +529102,Industry,Industry +529094,Industry,Industry +529091,Industry,Industry +529069,Industry,Industry +529066,Industry,Industry +529059,Industry,Industry +529055,Industry,Industry +526330,Industry,Industry +525713,Industry,Industry +525709,Industry,Industry +525704,Industry,Industry +525702,Industry,Industry +525675,Industry,Industry +525656,Industry,Industry +525634,Industry,Industry +522550,Industry,Industry +522534,Industry,Industry +519724,Industry,Industry +519699,Industry,Industry +519696,Industry,Industry +519693,Industry,Industry +519690,Industry,Industry +519688,Industry,Industry +519684,Industry,Industry +517766,Industry,Industry +517764,Industry,Industry +517763,Industry,Industry +517762,Industry,Industry +517756,Industry,Industry +515511,Industry,Industry +515508,Industry,Industry +515504,Industry,Industry +515501,Industry,Industry +515498,Industry,Industry +514915,Industry,Industry +514913,Industry,Industry +513589,Industry,Industry +513588,Industry,Industry +512802,Industry,Industry +512801,Industry,Industry +512800,Industry,Industry +512798,Industry,Industry +512794,Industry,Industry +512792,Industry,Industry +512791,Industry,Industry +512789,Industry,Industry +512783,Industry,Industry +512782,Industry,Industry +512749,Industry,Industry +510883,Industry,Industry +510882,Industry,Industry +510688,Industry,Industry +510593,Industry,Industry +510585,Industry,Industry +510581,Industry,Industry +510571,Industry,Industry +508265,Industry,Industry +508263,Industry,Industry +508262,Industry,Industry +508242,Industry,Industry +508235,Industry,Industry +508229,Industry,Industry +508224,Industry,Industry +505276,Industry,Industry +505270,Industry,Industry +505257,Industry,Industry +505256,Industry,Industry +505245,Industry,Industry +505244,Industry,Industry +505235,Industry,Industry +505234,Industry,Industry +505230,Industry,Industry +501915,Industry,Industry +501912,Industry,Industry +501909,Industry,Industry +501906,Industry,Industry +501901,Industry,Industry +501877,Industry,Industry +501873,Industry,Industry +501860,Industry,Industry +501859,Industry,Industry +501841,Industry,Industry +501836,Industry,Industry +501830,Industry,Industry +501829,Industry,Industry +498816,Industry,Industry +498812,Industry,Industry +498796,Industry,Industry +498793,Industry,Industry +498481,Industry,Industry +498479,Industry,Industry +498470,Industry,Industry +498467,Industry,Industry +498452,Industry,Industry +498429,Industry,Industry +498428,Industry,Industry +498426,Industry,Industry +498400,Industry,Industry +498396,Industry,Industry +495478,Industry,Industry +495475,Industry,Industry +495472,Industry,Industry +495470,Industry,Industry +495468,Industry,Industry +495467,Industry,Industry +495459,Industry,Industry +495455,Industry,Industry +495449,Industry,Industry +495432,Industry,Industry +495429,Industry,Industry +493183,Industry,Industry +493177,Industry,Industry +493174,Industry,Industry +493170,Industry,Industry +493169,Industry,Industry +493168,Industry,Industry +493159,Industry,Industry +493158,Industry,Industry +493157,Industry,Industry +493150,Industry,Industry +493148,Industry,Industry +490647,Industry,Industry +490635,Industry,Industry +490634,Industry,Industry +490631,Industry,Industry +490533,Industry,Industry +490492,Industry,Industry +490486,Industry,Industry +490477,Industry,Industry +490471,Industry,Industry +490460,Industry,Industry +490458,Industry,Industry +490455,Industry,Industry +490451,Industry,Industry +490439,Industry,Industry +490437,Industry,Industry +490436,Industry,Industry +490431,Industry,Industry +490428,Industry,Industry +490427,Industry,Industry +490422,Industry,Industry +490414,Industry,Industry +487967,Industry,Industry +487596,Industry,Industry +487595,Industry,Industry +487591,Industry,Industry +487583,Industry,Industry +487581,Industry,Industry +487578,Industry,Industry +487577,Industry,Industry +487575,Industry,Industry +487574,Industry,Industry +480051,Education,Education +476470,Education,Education +172750,Education,Education +162402,Education,Education +157486,Education,Education +157483,Education,Education +154792,Education,Education +314391,Education,Education +314133,Education,Education +264269,Education,Education +262211,Education,Education +262210,Education,Education +262209,Education,Education +262189,Education,Education +259352,Education,Education +259350,Education,Education +259349,Education,Education +259332,Education,Education +256171,Education,Education +251677,Education,Education +251676,Education,Education +246569,Education,Education +227931,Education,Education +227930,Education,Education +224669,Education,Education +212350,Education,Education +211132,Education,Education +387147,Education,Education +387118,Education,Education +385452,Education,Education +385435,Education,Education +385405,Education,Education +382252,Education,Education +354919,Education,Education +354821,Education,Education +337130,Education,Education +202701,Economic Development,Economic Development +492862,Small Business,Small Business +492856,Small Business,Small Business +162563,Small Business,Small Business +162491,Small Business,Small Business +162486,Small Business,Small Business +162476,Small Business,Small Business +162468,Small Business,Small Business +160999,Small Business,Small Business +160998,Small Business,Small Business +160997,Small Business,Small Business +160995,Small Business,Small Business +160749,Small Business,Small Business +160747,Small Business,Small Business +157157,Small Business,Small Business +157153,Small Business,Small Business +157148,Small Business,Small Business +157143,Small Business,Small Business +157138,Small Business,Small Business +157133,Small Business,Small Business +157124,Small Business,Small Business +157121,Small Business,Small Business +157120,Small Business,Small Business +157111,Small Business,Small Business +320336,Small Business,Small Business +320334,Small Business,Small Business +320332,Small Business,Small Business +320331,Small Business,Small Business +274929,Small Business,Small Business +268789,Small Business,Small Business +268550,Small Business,Small Business +268549,Small Business,Small Business +260393,Small Business,Small Business +260389,Small Business,Small Business +260370,Small Business,Small Business +256809,Small Business,Small Business +255909,Small Business,Small Business +255889,Small Business,Small Business +164290,Small Business,Small Business +164288,Small Business,Small Business +385321,Small Business,Small Business +385320,Small Business,Small Business +385318,Small Business,Small Business +385317,Small Business,Small Business +382596,Small Business,Small Business +382595,Small Business,Small Business +382594,Small Business,Small Business +382593,Small Business,Small Business +382590,Small Business,Small Business +382587,Small Business,Small Business +382583,Small Business,Small Business +381034,Small Business,Small Business +372748,Small Business,Small Business +372743,Small Business,Small Business +372739,Small Business,Small Business +372731,Small Business,Small Business +372720,Small Business,Small Business +372713,Small Business,Small Business +369722,Small Business,Small Business +365290,Small Business,Small Business +359763,Small Business,Small Business +339366,Small Business,Small Business +339364,Small Business,Small Business +339363,Small Business,Small Business +339362,Small Business,Small Business +337268,Small Business,Small Business +333111,Small Business,Small Business +328629,Small Business,Small Business +328613,Small Business,Small Business +328612,Small Business,Small Business +328611,Small Business,Small Business +328610,Small Business,Small Business +328609,Small Business,Small Business +328589,Small Business,Small Business +453020,Small Business,Small Business +453019,Small Business,Small Business +453017,Small Business,Small Business +447743,Small Business,Small Business +447741,Small Business,Small Business +443866,Small Business,Small Business +443861,Small Business,Small Business +413254,Small Business,Small Business +413251,Small Business,Small Business +407847,Small Business,Small Business +407818,Small Business,Small Business +407816,Small Business,Small Business +406009,Small Business,Small Business +406008,Small Business,Small Business +405538,Small Business,Small Business +403837,Small Business,Small Business +398971,Small Business,Small Business +398968,Small Business,Small Business +398965,Small Business,Small Business +396570,Small Business,Small Business +396565,Small Business,Small Business +394419,Small Business,Small Business +394416,Small Business,Small Business +394414,Small Business,Small Business +394412,Small Business,Small Business +392630,Small Business,Small Business +392629,Small Business,Small Business +392626,Small Business,Small Business +391482,Small Business,Small Business +391476,Small Business,Small Business +544685,Small Business,Small Business +544404,Small Business,Small Business +544088,Small Business,Small Business +544083,Small Business,Small Business +541758,Small Business,Small Business +541734,Small Business,Small Business +539774,Small Business,Small Business +539772,Small Business,Small Business +535450,Small Business,Small Business +528930,Small Business,Small Business +528929,Small Business,Small Business +528928,Small Business,Small Business +526282,Small Business,Small Business +523200,Small Business,Small Business +520163,Small Business,Small Business +518261,Small Business,Small Business +518259,Small Business,Small Business +518255,Small Business,Small Business +504950,Small Business,Small Business +502687,Small Business,Small Business +502683,Small Business,Small Business +498900,Small Business,Small Business +495286,Small Business,Small Business +454933,Budget,Budget +158570,Economic Development,Economic Development +158203,Taxation and Finance,Taxation and Finance +407644,Consumer Issues,Consumer Issues +407643,Consumer Issues,Consumer Issues +155855,Consumer Issues,Consumer Issues +471629,Intellectual Property,Intellectual Property +469814,Intellectual Property,Intellectual Property +162764,Intellectual Property,Intellectual Property +156603,Intellectual Property,Intellectual Property +332249,Intellectual Property,Intellectual Property +276905,Intellectual Property,Intellectual Property +276903,Intellectual Property,Intellectual Property +200709,Intellectual Property,Intellectual Property +192597,Intellectual Property,Intellectual Property +192595,Intellectual Property,Intellectual Property +175847,Intellectual Property,Intellectual Property +175846,Intellectual Property,Intellectual Property +462945,Intellectual Property,Intellectual Property +460289,Intellectual Property,Intellectual Property +458988,Intellectual Property,Intellectual Property +457822,Intellectual Property,Intellectual Property +446321,Intellectual Property,Intellectual Property +444567,Intellectual Property,Intellectual Property +444566,Intellectual Property,Intellectual Property +444565,Intellectual Property,Intellectual Property +444564,Intellectual Property,Intellectual Property +443162,Intellectual Property,Intellectual Property +443160,Intellectual Property,Intellectual Property +434651,Intellectual Property,Intellectual Property +434650,Intellectual Property,Intellectual Property +434649,Intellectual Property,Intellectual Property +434648,Intellectual Property,Intellectual Property +434647,Intellectual Property,Intellectual Property +433427,Intellectual Property,Intellectual Property +433426,Intellectual Property,Intellectual Property +430689,Intellectual Property,Intellectual Property +430686,Intellectual Property,Intellectual Property +430681,Intellectual Property,Intellectual Property +430678,Intellectual Property,Intellectual Property +427553,Intellectual Property,Intellectual Property +427552,Intellectual Property,Intellectual Property +427551,Intellectual Property,Intellectual Property +420761,Intellectual Property,Intellectual Property +420759,Intellectual Property,Intellectual Property +420758,Intellectual Property,Intellectual Property +418602,Intellectual Property,Intellectual Property +418601,Intellectual Property,Intellectual Property +418600,Intellectual Property,Intellectual Property +414415,Intellectual Property,Intellectual Property +414414,Intellectual Property,Intellectual Property +414412,Intellectual Property,Intellectual Property +408868,Intellectual Property,Intellectual Property +400940,Intellectual Property,Intellectual Property +400937,Intellectual Property,Intellectual Property +400936,Intellectual Property,Intellectual Property +400932,Intellectual Property,Intellectual Property +357444,Intellectual Property,Intellectual Property +357443,Intellectual Property,Intellectual Property +357442,Intellectual Property,Intellectual Property +540553,Intellectual Property,Intellectual Property +535934,Intellectual Property,Intellectual Property +535932,Intellectual Property,Intellectual Property +530551,Intellectual Property,Intellectual Property +529904,Intellectual Property,Intellectual Property +526889,Intellectual Property,Intellectual Property +524616,Intellectual Property,Intellectual Property +523619,Intellectual Property,Intellectual Property +523496,Intellectual Property,Intellectual Property +522027,Intellectual Property,Intellectual Property +521123,Intellectual Property,Intellectual Property +520391,Intellectual Property,Intellectual Property +518484,Intellectual Property,Intellectual Property +516707,Intellectual Property,Intellectual Property +516047,Intellectual Property,Intellectual Property +516046,Intellectual Property,Intellectual Property +512130,Intellectual Property,Intellectual Property +512017,Intellectual Property,Intellectual Property +505966,Intellectual Property,Intellectual Property +505965,Intellectual Property,Intellectual Property +505964,Intellectual Property,Intellectual Property +505963,Intellectual Property,Intellectual Property +500200,Intellectual Property,Intellectual Property +500199,Intellectual Property,Intellectual Property +495117,Intellectual Property,Intellectual Property +495050,Intellectual Property,Intellectual Property +494075,Intellectual Property,Intellectual Property +494053,Intellectual Property,Intellectual Property +493903,Intellectual Property,Intellectual Property +493902,Intellectual Property,Intellectual Property +492446,Intellectual Property,Intellectual Property +488778,Intellectual Property,Intellectual Property +488628,Intellectual Property,Intellectual Property +487659,Intellectual Property,Intellectual Property +487658,Intellectual Property,Intellectual Property +485801,Intellectual Property,Intellectual Property +485800,Intellectual Property,Intellectual Property +483540,Intellectual Property,Intellectual Property +483538,Intellectual Property,Intellectual Property +483535,Intellectual Property,Intellectual Property +483533,Intellectual Property,Intellectual Property +483138,Intellectual Property,Intellectual Property +481311,Intellectual Property,Intellectual Property +481119,Intellectual Property,Intellectual Property +481118,Intellectual Property,Intellectual Property +478839,Intellectual Property,Intellectual Property +478689,Intellectual Property,Intellectual Property +478517,Intellectual Property,Intellectual Property +477485,Intellectual Property,Intellectual Property +477484,Intellectual Property,Intellectual Property +471631,Intellectual Property,Intellectual Property +382853,Justice and Law Enforcement,Justice and Law Enforcement +375822,Justice and Law Enforcement,Justice and Law Enforcement +182944,Justice and Law Enforcement,Justice and Law Enforcement +166465,Justice and Law Enforcement,Justice and Law Enforcement +166464,Justice and Law Enforcement,Justice and Law Enforcement +164504,Justice and Law Enforcement,Justice and Law Enforcement +156648,Justice and Law Enforcement,Justice and Law Enforcement +155809,Justice and Law Enforcement,Justice and Law Enforcement +155446,Justice and Law Enforcement,Justice and Law Enforcement +155088,Justice and Law Enforcement,Justice and Law Enforcement +270149,Justice and Law Enforcement,Justice and Law Enforcement +265150,Justice and Law Enforcement,Justice and Law Enforcement +265149,Justice and Law Enforcement,Justice and Law Enforcement +261252,Justice and Law Enforcement,Justice and Law Enforcement +244380,Justice and Law Enforcement,Justice and Law Enforcement +244379,Justice and Law Enforcement,Justice and Law Enforcement +229069,Justice and Law Enforcement,Justice and Law Enforcement +229053,Justice and Law Enforcement,Justice and Law Enforcement +229052,Justice and Law Enforcement,Justice and Law Enforcement +229051,Justice and Law Enforcement,Justice and Law Enforcement +229050,Justice and Law Enforcement,Justice and Law Enforcement +229049,Justice and Law Enforcement,Justice and Law Enforcement +223968,Justice and Law Enforcement,Justice and Law Enforcement +213288,Justice and Law Enforcement,Justice and Law Enforcement +213287,Justice and Law Enforcement,Justice and Law Enforcement +201011,Justice and Law Enforcement,Justice and Law Enforcement +201010,Justice and Law Enforcement,Justice and Law Enforcement +201009,Justice and Law Enforcement,Justice and Law Enforcement +201007,Justice and Law Enforcement,Justice and Law Enforcement +373885,Justice and Law Enforcement,Justice and Law Enforcement +373883,Justice and Law Enforcement,Justice and Law Enforcement +373332,Justice and Law Enforcement,Justice and Law Enforcement +370444,Justice and Law Enforcement,Justice and Law Enforcement +370443,Justice and Law Enforcement,Justice and Law Enforcement +370442,Justice and Law Enforcement,Justice and Law Enforcement +365955,Justice and Law Enforcement,Justice and Law Enforcement +364526,Justice and Law Enforcement,Justice and Law Enforcement +360642,Justice and Law Enforcement,Justice and Law Enforcement +340201,Justice and Law Enforcement,Justice and Law Enforcement +334836,Justice and Law Enforcement,Justice and Law Enforcement +334835,Justice and Law Enforcement,Justice and Law Enforcement +333231,Justice and Law Enforcement,Justice and Law Enforcement +321614,Justice and Law Enforcement,Justice and Law Enforcement +321613,Justice and Law Enforcement,Justice and Law Enforcement +321611,Justice and Law Enforcement,Justice and Law Enforcement +321610,Justice and Law Enforcement,Justice and Law Enforcement +318469,Justice and Law Enforcement,Justice and Law Enforcement +312649,Justice and Law Enforcement,Justice and Law Enforcement +303529,Justice and Law Enforcement,Justice and Law Enforcement +296654,Justice and Law Enforcement,Justice and Law Enforcement +296653,Justice and Law Enforcement,Justice and Law Enforcement +286110,Justice and Law Enforcement,Justice and Law Enforcement +448702,Justice and Law Enforcement,Justice and Law Enforcement +443260,Justice and Law Enforcement,Justice and Law Enforcement +443259,Justice and Law Enforcement,Justice and Law Enforcement +434128,Justice and Law Enforcement,Justice and Law Enforcement +432817,Justice and Law Enforcement,Justice and Law Enforcement +427156,Justice and Law Enforcement,Justice and Law Enforcement +427155,Justice and Law Enforcement,Justice and Law Enforcement +420605,Justice and Law Enforcement,Justice and Law Enforcement +411407,Justice and Law Enforcement,Justice and Law Enforcement +411406,Justice and Law Enforcement,Justice and Law Enforcement +411405,Justice and Law Enforcement,Justice and Law Enforcement +406288,Justice and Law Enforcement,Justice and Law Enforcement +406286,Justice and Law Enforcement,Justice and Law Enforcement +406284,Justice and Law Enforcement,Justice and Law Enforcement +404236,Justice and Law Enforcement,Justice and Law Enforcement +394650,Justice and Law Enforcement,Justice and Law Enforcement +394649,Justice and Law Enforcement,Justice and Law Enforcement +394648,Justice and Law Enforcement,Justice and Law Enforcement +384043,Justice and Law Enforcement,Justice and Law Enforcement +384042,Justice and Law Enforcement,Justice and Law Enforcement +384041,Justice and Law Enforcement,Justice and Law Enforcement +158313,Defence,Defence +158313,Industry,Industry +158313,Regional Development,Regional Development +156684,Environment,Environment +174886,Environment,Environment +163701,Environment,Environment +161952,Environment,Environment +159708,Environment,Environment +159706,Environment,Environment +201199,Economic Development,Economic Development +521290,Sports,Sports +521289,Sports,Sports +156226,Sports,Sports +156225,Sports,Sports +156222,Sports,Sports +156221,Sports,Sports +156219,Sports,Sports +156218,Sports,Sports +164949,Sports,Sports +156228,Sports,Sports +156227,Sports,Sports +388174,Sports,Sports +387878,Sports,Sports +387867,Sports,Sports +387858,Sports,Sports +387848,Sports,Sports +387817,Sports,Sports +325918,Sports,Sports +325916,Sports,Sports +325915,Sports,Sports +325914,Sports,Sports +325913,Sports,Sports +325912,Sports,Sports +325909,Sports,Sports +309731,Sports,Sports +309729,Sports,Sports +309726,Sports,Sports +309170,Sports,Sports +309169,Sports,Sports +308411,Sports,Sports +308354,Sports,Sports +521380,Sports,Sports +521377,Sports,Sports +521376,Sports,Sports +521375,Sports,Sports +521374,Sports,Sports +521370,Sports,Sports +521366,Sports,Sports +521364,Sports,Sports +521363,Sports,Sports +521356,Sports,Sports +521332,Sports,Sports +521322,Sports,Sports +201131,Economic Development,Economic Development +201185,Economic Development,Economic Development +503129,Budget,Budget +215649,Budget,Budget +215648,Budget,Budget +213549,Budget,Budget +176127,Budget,Budget +368169,Budget,Budget +368168,Budget,Budget +368165,Budget,Budget +363281,Budget,Budget +339450,Budget,Budget +306169,Budget,Budget +298029,Budget,Budget +287810,Budget,Budget +261510,Budget,Budget +255973,Budget,Budget +255972,Budget,Budget +255970,Budget,Budget +235309,Budget,Budget +224155,Budget,Budget +392981,Budget,Budget +377813,Budget,Budget +290671,Health,Health +407583,Health,Health +169324,Health,Health +169289,Health,Health +169288,Health,Health +169287,Health,Health +276906,Health,Health +276904,Health,Health +351293,Health,Health +333697,Health,Health +333694,Health,Health +324434,Health,Health +203228,International Trade,International Trade +201070,International Trade,International Trade +155290,International Trade,International Trade +201068,International Trade,International Trade +200129,International Trade,International Trade +199606,International Trade,International Trade +199597,International Trade,International Trade +199596,International Trade,International Trade +199107,International Trade,International Trade +199087,International Trade,International Trade +192664,International Trade,International Trade +188980,International Trade,International Trade +188967,International Trade,International Trade +188966,International Trade,International Trade +185550,International Trade,International Trade +185549,International Trade,International Trade +185547,International Trade,International Trade +185546,International Trade,International Trade +177644,International Trade,International Trade +177626,International Trade,International Trade +177625,International Trade,International Trade +177624,International Trade,International Trade +177604,International Trade,International Trade +177584,International Trade,International Trade +177564,International Trade,International Trade +177149,International Trade,International Trade +174066,International Trade,International Trade +170585,International Trade,International Trade +167535,International Trade,International Trade +167534,International Trade,International Trade +167531,International Trade,International Trade +167529,International Trade,International Trade +167502,International Trade,International Trade +160753,International Trade,International Trade +295811,International Trade,International Trade +256354,International Trade,International Trade +254049,International Trade,International Trade +250555,International Trade,International Trade +245543,International Trade,International Trade +245006,International Trade,International Trade +245002,International Trade,International Trade +240631,International Trade,International Trade +240629,International Trade,International Trade +236409,International Trade,International Trade +230316,International Trade,International Trade +230309,International Trade,International Trade +226671,International Trade,International Trade +226670,International Trade,International Trade +226667,International Trade,International Trade +223224,International Trade,International Trade +223218,International Trade,International Trade +223216,International Trade,International Trade +223214,International Trade,International Trade +223213,International Trade,International Trade +212187,International Trade,International Trade +212037,International Trade,International Trade +212012,International Trade,International Trade +207218,International Trade,International Trade +207217,International Trade,International Trade +207216,International Trade,International Trade +207215,International Trade,International Trade +207214,International Trade,International Trade +207213,International Trade,International Trade +207211,International Trade,International Trade +207208,International Trade,International Trade +207207,International Trade,International Trade +207204,International Trade,International Trade +207194,International Trade,International Trade +207192,International Trade,International Trade +207146,International Trade,International Trade +205087,International Trade,International Trade +205067,International Trade,International Trade +158866,Consumer Issues,Consumer Issues +158865,Consumer Issues,Consumer Issues +158858,Consumer Issues,Consumer Issues +155311,Consumer Issues,Consumer Issues +224528,Consumer Issues,Consumer Issues +219796,Consumer Issues,Consumer Issues +219789,Consumer Issues,Consumer Issues +209625,Consumer Issues,Consumer Issues +209624,Consumer Issues,Consumer Issues +209623,Consumer Issues,Consumer Issues +160288,Economic Development,Economic Development +158865,Economic Development,Economic Development +158864,Economic Development,Economic Development +155311,Economic Development,Economic Development +209626,Economic Development,Economic Development +209625,Health,Health +209624,Health,Health +158858,Health,Health +155311,Health,Health +155311,International Trade,International Trade +155311,Municipalities,Municipalities +209622,Small Business,Small Business +166289,Small Business,Small Business +158866,Small Business,Small Business +158865,Small Business,Small Business +158864,Small Business,Small Business +158863,Small Business,Small Business +158858,Small Business,Small Business +155311,Small Business,Small Business +224528,Small Business,Small Business +209625,Small Business,Small Business +158863,Consumer Issues,Consumer Issues +155315,Consumer Issues,Consumer Issues +209626,Consumer Issues,Consumer Issues +203797,Consumer Issues,Consumer Issues +166290,Consumer Issues,Consumer Issues +166289,Consumer Issues,Consumer Issues +160288,Consumer Issues,Consumer Issues +158863,Economic Development,Economic Development +158858,Economic Development,Economic Development +155315,Economic Development,Economic Development +209625,Economic Development,Economic Development +209624,Economic Development,Economic Development +209622,Economic Development,Economic Development +203797,Economic Development,Economic Development +166290,Economic Development,Economic Development +166290,Health,Health +166289,Health,Health +155315,Health,Health +224528,Health,Health +219796,Health,Health +219789,Health,Health +209623,Health,Health +209622,Health,Health +155315,Research and Development,Research and Development (R&D) +160288,Small Business,Small Business +155315,Small Business,Small Business +219796,Small Business,Small Business +219789,Small Business,Small Business +209626,Small Business,Small Business +166209,Privacy and Access to Information,Privacy and Access to Information +375822,Security,Security +333231,Security,Security +223968,Security,Security +201011,Security,Security +201009,Security,Security +164504,Security,Security +521290,Education,Education +521289,Education,Education +388174,Education,Education +387878,Education,Education +387867,Education,Education +387858,Education,Education +387848,Education,Education +387817,Education,Education +521380,Education,Education +521377,Education,Education +521376,Education,Education +521375,Education,Education +521374,Education,Education +521370,Education,Education +521366,Education,Education +521364,Education,Education +521363,Education,Education +521356,Education,Education +521332,Education,Education +521322,Education,Education +521290,Health,Health +521289,Health,Health +325918,Health,Health +325916,Health,Health +325915,Health,Health +325914,Health,Health +325913,Health,Health +325912,Health,Health +325909,Health,Health +309731,Health,Health +309729,Health,Health +309726,Health,Health +309170,Health,Health +309169,Health,Health +308411,Health,Health +308354,Health,Health +388174,Health,Health +387878,Health,Health +387867,Health,Health +387858,Health,Health +387848,Health,Health +387817,Health,Health +521380,Health,Health +521377,Health,Health +521376,Health,Health +521375,Health,Health +521374,Health,Health +521370,Health,Health +521366,Health,Health +521364,Health,Health +521363,Health,Health +521356,Health,Health +521332,Health,Health +521322,Health,Health +268850,Transportation,Transportation +264057,Transportation,Transportation +244424,Transportation,Transportation +240292,Transportation,Transportation +240276,Transportation,Transportation +211328,Transportation,Transportation +364465,Transportation,Transportation +364464,Transportation,Transportation +357776,Transportation,Transportation +357774,Transportation,Transportation +351324,Transportation,Transportation +351323,Transportation,Transportation +346497,Transportation,Transportation +338817,Transportation,Transportation +338816,Transportation,Transportation +338815,Transportation,Transportation +334956,Transportation,Transportation +318052,Transportation,Transportation +318047,Transportation,Transportation +318034,Transportation,Transportation +315232,Transportation,Transportation +308652,Transportation,Transportation +308649,Transportation,Transportation +308640,Transportation,Transportation +301433,Transportation,Transportation +294309,Transportation,Transportation +279795,Transportation,Transportation +308651,Transportation,Transportation +308638,Transportation,Transportation +155406,Transportation,Transportation +244425,Transportation,Transportation +226069,Transportation,Transportation +222693,Transportation,Transportation +210147,Transportation,Transportation +197393,Transportation,Transportation +189574,Transportation,Transportation +301435,Transportation,Transportation +271531,Transportation,Transportation +271530,Transportation,Transportation +271529,Transportation,Transportation +268829,Transportation,Transportation +258529,Transportation,Transportation +364466,Transportation,Transportation +364463,Transportation,Transportation +353322,Transportation,Transportation +346477,Transportation,Transportation +334955,Transportation,Transportation +334954,Transportation,Transportation +324732,Transportation,Transportation +321964,Transportation,Transportation +318050,Transportation,Transportation +318040,Transportation,Transportation +318035,Transportation,Transportation +315231,Transportation,Transportation +312312,Transportation,Transportation +169650,Health,Health +156715,Mining,Mining +156714,Mining,Mining +156713,Mining,Mining +170622,Mining,Mining +168086,Mining,Mining +168083,Mining,Mining +162003,Mining,Mining +161999,Mining,Mining +158687,Mining,Mining +158686,Mining,Mining +156721,Mining,Mining +156720,Mining,Mining +156719,Mining,Mining +156718,Mining,Mining +472876,Government Procurement,Government Procurement +464357,Government Procurement,Government Procurement +253979,Government Procurement,Government Procurement +249684,Government Procurement,Government Procurement +245505,Government Procurement,Government Procurement +245499,Government Procurement,Government Procurement +240434,Government Procurement,Government Procurement +233229,Government Procurement,Government Procurement +233228,Government Procurement,Government Procurement +230203,Government Procurement,Government Procurement +230198,Government Procurement,Government Procurement +227386,Government Procurement,Government Procurement +227385,Government Procurement,Government Procurement +227384,Government Procurement,Government Procurement +218529,Government Procurement,Government Procurement +322342,Government Procurement,Government Procurement +321810,Government Procurement,Government Procurement +321808,Government Procurement,Government Procurement +321807,Government Procurement,Government Procurement +319290,Government Procurement,Government Procurement +315792,Government Procurement,Government Procurement +315791,Government Procurement,Government Procurement +315790,Government Procurement,Government Procurement +315789,Government Procurement,Government Procurement +312609,Government Procurement,Government Procurement +310313,Government Procurement,Government Procurement +310311,Government Procurement,Government Procurement +310309,Government Procurement,Government Procurement +310307,Government Procurement,Government Procurement +301501,Government Procurement,Government Procurement +301500,Government Procurement,Government Procurement +301496,Government Procurement,Government Procurement +296902,Government Procurement,Government Procurement +296899,Government Procurement,Government Procurement +291154,Government Procurement,Government Procurement +291151,Government Procurement,Government Procurement +286876,Government Procurement,Government Procurement +286851,Government Procurement,Government Procurement +281769,Government Procurement,Government Procurement +281731,Government Procurement,Government Procurement +280998,Government Procurement,Government Procurement +277591,Government Procurement,Government Procurement +277590,Government Procurement,Government Procurement +277589,Government Procurement,Government Procurement +272773,Government Procurement,Government Procurement +272772,Government Procurement,Government Procurement +268885,Government Procurement,Government Procurement +268884,Government Procurement,Government Procurement +268882,Government Procurement,Government Procurement +268881,Government Procurement,Government Procurement +268880,Government Procurement,Government Procurement +268879,Government Procurement,Government Procurement +268878,Government Procurement,Government Procurement +268877,Government Procurement,Government Procurement +268876,Government Procurement,Government Procurement +268875,Government Procurement,Government Procurement +268874,Government Procurement,Government Procurement +268872,Government Procurement,Government Procurement +264592,Government Procurement,Government Procurement +264590,Government Procurement,Government Procurement +264589,Government Procurement,Government Procurement +264576,Government Procurement,Government Procurement +264573,Government Procurement,Government Procurement +263813,Government Procurement,Government Procurement +263810,Government Procurement,Government Procurement +257050,Government Procurement,Government Procurement +253982,Government Procurement,Government Procurement +464355,Government Procurement,Government Procurement +464354,Government Procurement,Government Procurement +457310,Government Procurement,Government Procurement +452751,Government Procurement,Government Procurement +452679,Government Procurement,Government Procurement +445362,Government Procurement,Government Procurement +444808,Government Procurement,Government Procurement +441859,Government Procurement,Government Procurement +441857,Government Procurement,Government Procurement +441849,Government Procurement,Government Procurement +435349,Government Procurement,Government Procurement +435348,Government Procurement,Government Procurement +435347,Government Procurement,Government Procurement +435345,Government Procurement,Government Procurement +435344,Government Procurement,Government Procurement +435343,Government Procurement,Government Procurement +427980,Government Procurement,Government Procurement +427974,Government Procurement,Government Procurement +423708,Government Procurement,Government Procurement +423701,Government Procurement,Government Procurement +423699,Government Procurement,Government Procurement +423697,Government Procurement,Government Procurement +423693,Government Procurement,Government Procurement +416786,Government Procurement,Government Procurement +416785,Government Procurement,Government Procurement +416782,Government Procurement,Government Procurement +416781,Government Procurement,Government Procurement +416778,Government Procurement,Government Procurement +413749,Government Procurement,Government Procurement +413741,Government Procurement,Government Procurement +405728,Government Procurement,Government Procurement +405726,Government Procurement,Government Procurement +377091,Government Procurement,Government Procurement +377089,Government Procurement,Government Procurement +377086,Government Procurement,Government Procurement +377084,Government Procurement,Government Procurement +377080,Government Procurement,Government Procurement +377075,Government Procurement,Government Procurement +377073,Government Procurement,Government Procurement +377070,Government Procurement,Government Procurement +373038,Government Procurement,Government Procurement +373037,Government Procurement,Government Procurement +369147,Government Procurement,Government Procurement +369146,Government Procurement,Government Procurement +369129,Government Procurement,Government Procurement +365140,Government Procurement,Government Procurement +365139,Government Procurement,Government Procurement +365138,Government Procurement,Government Procurement +365137,Government Procurement,Government Procurement +365136,Government Procurement,Government Procurement +365135,Government Procurement,Government Procurement +365134,Government Procurement,Government Procurement +365133,Government Procurement,Government Procurement +365067,Government Procurement,Government Procurement +354025,Government Procurement,Government Procurement +348960,Government Procurement,Government Procurement +348959,Government Procurement,Government Procurement +348958,Government Procurement,Government Procurement +348957,Government Procurement,Government Procurement +348956,Government Procurement,Government Procurement +343975,Government Procurement,Government Procurement +343973,Government Procurement,Government Procurement +343967,Government Procurement,Government Procurement +343966,Government Procurement,Government Procurement +342262,Government Procurement,Government Procurement +342261,Government Procurement,Government Procurement +338163,Government Procurement,Government Procurement +338162,Government Procurement,Government Procurement +338161,Government Procurement,Government Procurement +338159,Government Procurement,Government Procurement +338157,Government Procurement,Government Procurement +338156,Government Procurement,Government Procurement +338155,Government Procurement,Government Procurement +335856,Government Procurement,Government Procurement +335844,Government Procurement,Government Procurement +335837,Government Procurement,Government Procurement +335830,Government Procurement,Government Procurement +331492,Government Procurement,Government Procurement +331491,Government Procurement,Government Procurement +330031,Government Procurement,Government Procurement +330029,Government Procurement,Government Procurement +328070,Government Procurement,Government Procurement +328069,Government Procurement,Government Procurement +324716,Government Procurement,Government Procurement +324699,Government Procurement,Government Procurement +324696,Government Procurement,Government Procurement +324695,Government Procurement,Government Procurement +324694,Government Procurement,Government Procurement +324691,Government Procurement,Government Procurement +324688,Government Procurement,Government Procurement +324686,Government Procurement,Government Procurement +543569,Government Procurement,Government Procurement +543567,Government Procurement,Government Procurement +543565,Government Procurement,Government Procurement +541653,Government Procurement,Government Procurement +528076,Government Procurement,Government Procurement +521124,Government Procurement,Government Procurement +520426,Government Procurement,Government Procurement +488762,Government Procurement,Government Procurement +485880,Government Procurement,Government Procurement +483380,Government Procurement,Government Procurement +482267,Government Procurement,Government Procurement +482264,Government Procurement,Government Procurement +481971,Government Procurement,Government Procurement +481970,Government Procurement,Government Procurement +481969,Government Procurement,Government Procurement +479742,Government Procurement,Government Procurement +479741,Government Procurement,Government Procurement +479740,Government Procurement,Government Procurement +477623,Government Procurement,Government Procurement +475200,Government Procurement,Government Procurement +474430,Government Procurement,Government Procurement +473949,Government Procurement,Government Procurement +257052,Industry,Industry +257051,Industry,Industry +156831,Industry,Industry +156830,Industry,Industry +156828,Industry,Industry +156827,Industry,Industry +156826,Industry,Industry +156825,Industry,Industry +156823,Industry,Industry +156821,Industry,Industry +156820,Industry,Industry +156819,Industry,Industry +156818,Industry,Industry +156817,Industry,Industry +156816,Industry,Industry +245499,Industry,Industry +162695,Industry,Industry +162694,Industry,Industry +162693,Industry,Industry +162690,Industry,Industry +162689,Industry,Industry +162688,Industry,Industry +162685,Industry,Industry +158742,Industry,Industry +158741,Industry,Industry +158740,Industry,Industry +158739,Industry,Industry +158734,Industry,Industry +158732,Industry,Industry +156836,Industry,Industry +156834,Industry,Industry +156833,Industry,Industry +156832,Industry,Industry +331489,Industry,Industry +321810,Industry,Industry +321807,Industry,Industry +319290,Industry,Industry +312609,Industry,Industry +296899,Industry,Industry +296894,Industry,Industry +296893,Industry,Industry +296890,Industry,Industry +281769,Industry,Industry +272771,Industry,Industry +272770,Industry,Industry +268853,Industry,Industry +263812,Industry,Industry +249684,Infrastructure,Infrastructure +245499,Infrastructure,Infrastructure +321807,Infrastructure,Infrastructure +319290,Infrastructure,Infrastructure +315790,Infrastructure,Infrastructure +312609,Infrastructure,Infrastructure +286870,Infrastructure,Infrastructure +272771,Infrastructure,Infrastructure +272770,Infrastructure,Infrastructure +327812,Labour,Labour +327811,Labour,Labour +296901,Labour,Labour +296899,Labour,Labour +296894,Labour,Labour +296893,Labour,Labour +296890,Labour,Labour +291156,Labour,Labour +291149,Labour,Labour +264591,Labour,Labour +249684,Labour,Labour +230198,Labour,Labour +354025,Labour,Labour +333608,Labour,Labour +331490,Labour,Labour +331488,Labour,Labour +227202,Transportation,Transportation +331490,Transportation,Transportation +312709,Transportation,Transportation +310539,Transportation,Transportation +291156,Transportation,Transportation +291149,Transportation,Transportation +277592,Transportation,Transportation +268849,Transportation,Transportation +267809,Transportation,Transportation +257049,Transportation,Transportation +156682,Infrastructure,Infrastructure +156682,Sports,Sports +155647,Education,Education +155646,Education,Education +155645,Education,Education +155644,Education,Education +155643,Education,Education +155642,Education,Education +155641,Education,Education +155640,Education,Education +155639,Education,Education +155638,Education,Education +155637,Education,Education +155636,Education,Education +155633,Education,Education +155667,Education,Education +155666,Education,Education +155665,Education,Education +155664,Education,Education +155663,Education,Education +155661,Education,Education +155660,Education,Education +155659,Education,Education +155658,Education,Education +155657,Education,Education +155655,Education,Education +155654,Education,Education +155653,Education,Education +155652,Education,Education +155651,Education,Education +155650,Education,Education +155649,Education,Education +160595,Economic Development,Développement économique +160593,Economic Development,Développement économique +160592,Economic Development,Développement économique +160590,Economic Development,Développement économique +156361,Economic Development,Développement économique +185898,Economic Development,Développement économique +176066,Economic Development,Développement économique +172950,Economic Development,Développement économique +172086,Economic Development,Développement économique +163525,Economic Development,Développement économique +163524,Economic Development,Développement économique +163064,Economic Development,Développement économique +163006,Economic Development,Développement économique +162864,Economic Development,Développement économique +160600,Economic Development,Développement économique +160592,Forestry,Foresterie +160590,Forestry,Foresterie +156361,Forestry,Foresterie +185898,Forestry,Foresterie +176066,Forestry,Foresterie +172950,Forestry,Foresterie +172086,Forestry,Foresterie +163525,Forestry,Foresterie +163524,Forestry,Foresterie +163064,Forestry,Foresterie +163006,Forestry,Foresterie +162864,Forestry,Foresterie +160600,Forestry,Foresterie +160597,Forestry,Foresterie +160595,Forestry,Foresterie +375149,Pensions,Pensions +441941,Research and Development,Research and Development (R&D) +441431,Research and Development,Research and Development (R&D) +335817,Research and Development,Research and Development (R&D) +216848,Research and Development,Research and Development (R&D) +213567,Research and Development,Research and Development (R&D) +427054,Research and Development,Research and Development (R&D) +380473,Research and Development,Research and Development (R&D) +526740,Research and Development,Research and Development (R&D) +526424,Research and Development,Research and Development (R&D) +526396,Research and Development,Research and Development (R&D) +523559,Research and Development,Research and Development (R&D) +523374,Research and Development,Research and Development (R&D) +521700,Research and Development,Research and Development (R&D) +521602,Research and Development,Research and Development (R&D) +520977,Research and Development,Research and Development (R&D) +520567,Research and Development,Research and Development (R&D) +520506,Research and Development,Research and Development (R&D) +520262,Research and Development,Research and Development (R&D) +519277,Research and Development,Research and Development (R&D) +515052,Research and Development,Research and Development (R&D) +514942,Research and Development,Research and Development (R&D) +514941,Research and Development,Research and Development (R&D) +514940,Research and Development,Research and Development (R&D) +514876,Research and Development,Research and Development (R&D) +514845,Research and Development,Research and Development (R&D) +514462,Research and Development,Research and Development (R&D) +461863,Research and Development,Research and Development (R&D) +456297,Research and Development,Research and Development (R&D) +456295,Research and Development,Research and Development (R&D) +455008,Research and Development,Research and Development (R&D) +453204,Research and Development,Research and Development (R&D) +453203,Research and Development,Research and Development (R&D) +451092,Research and Development,Research and Development (R&D) +451091,Research and Development,Research and Development (R&D) +451088,Research and Development,Research and Development (R&D) +448626,Research and Development,Research and Development (R&D) +448562,Research and Development,Research and Development (R&D) +445867,Research and Development,Research and Development (R&D) +408413,Financial Institutions,Financial Institutions +408412,Financial Institutions,Financial Institutions +163645,Financial Institutions,Financial Institutions +160607,Financial Institutions,Financial Institutions +200498,Financial Institutions,Financial Institutions +200494,Financial Institutions,Financial Institutions +199892,Financial Institutions,Financial Institutions +195526,Financial Institutions,Financial Institutions +195525,Financial Institutions,Financial Institutions +249209,Financial Institutions,Financial Institutions +526756,Financial Institutions,Financial Institutions +496942,Financial Institutions,Financial Institutions +496941,Financial Institutions,Financial Institutions +496940,Financial Institutions,Financial Institutions +411291,Financial Institutions,Financial Institutions +410685,Financial Institutions,Financial Institutions +410684,Financial Institutions,Financial Institutions +410683,Financial Institutions,Financial Institutions +410682,Financial Institutions,Financial Institutions +408437,Financial Institutions,Financial Institutions +408436,Financial Institutions,Financial Institutions +408435,Financial Institutions,Financial Institutions +408434,Financial Institutions,Financial Institutions +445098,Economic Development,Economic Development +445096,Economic Development,Economic Development +158194,Economic Development,Economic Development +187954,Economic Development,Economic Development +187953,Economic Development,Economic Development +187952,Economic Development,Economic Development +187951,Economic Development,Economic Development +187950,Economic Development,Economic Development +187949,Economic Development,Economic Development +187948,Economic Development,Economic Development +187947,Economic Development,Economic Development +187945,Economic Development,Economic Development +183044,Economic Development,Economic Development +181824,Economic Development,Economic Development +174225,Economic Development,Economic Development +174224,Economic Development,Economic Development +172785,Economic Development,Economic Development +172784,Economic Development,Economic Development +169874,Economic Development,Economic Development +167292,Economic Development,Economic Development +167290,Economic Development,Economic Development +167287,Economic Development,Economic Development +165059,Economic Development,Economic Development +160637,Economic Development,Economic Development +160636,Economic Development,Economic Development +160578,Economic Development,Economic Development +160577,Economic Development,Economic Development +160468,Economic Development,Economic Development +158197,Economic Development,Economic Development +158196,Economic Development,Economic Development +158195,Economic Development,Economic Development +334718,Economic Development,Economic Development +331975,Economic Development,Economic Development +306550,Economic Development,Economic Development +306549,Economic Development,Economic Development +303049,Economic Development,Economic Development +303013,Economic Development,Economic Development +303012,Economic Development,Economic Development +303010,Economic Development,Economic Development +303009,Economic Development,Economic Development +303008,Economic Development,Economic Development +303006,Economic Development,Economic Development +303004,Economic Development,Economic Development +302998,Economic Development,Economic Development +302996,Economic Development,Economic Development +302995,Economic Development,Economic Development +298150,Economic Development,Economic Development +294391,Economic Development,Economic Development +294390,Economic Development,Economic Development +293310,Economic Development,Economic Development +288269,Economic Development,Economic Development +275933,Economic Development,Economic Development +271550,Economic Development,Economic Development +247659,Economic Development,Economic Development +242550,Economic Development,Economic Development +239553,Economic Development,Economic Development +233312,Economic Development,Economic Development +197309,Economic Development,Economic Development +195327,Economic Development,Economic Development +195325,Economic Development,Economic Development +195309,Economic Development,Economic Development +195307,Economic Development,Economic Development +192512,Economic Development,Economic Development +192511,Economic Development,Economic Development +192509,Economic Development,Economic Development +192507,Economic Development,Economic Development +192505,Economic Development,Economic Development +192504,Economic Development,Economic Development +188127,Economic Development,Economic Development +187957,Economic Development,Economic Development +187956,Economic Development,Economic Development +373690,Economic Development,Economic Development +370715,Economic Development,Economic Development +337492,Economic Development,Economic Development +494490,Economic Development,Economic Development +494489,Economic Development,Economic Development +481089,Economic Development,Economic Development +481088,Economic Development,Economic Development +481087,Economic Development,Economic Development +479323,Economic Development,Economic Development +479317,Economic Development,Economic Development +479316,Economic Development,Economic Development +476510,Economic Development,Economic Development +476508,Economic Development,Economic Development +476492,Economic Development,Economic Development +476491,Economic Development,Economic Development +476490,Economic Development,Economic Development +476488,Economic Development,Economic Development +476487,Economic Development,Economic Development +476125,Economic Development,Economic Development +475532,Economic Development,Economic Development +475504,Economic Development,Economic Development +475498,Economic Development,Economic Development +475484,Economic Development,Economic Development +475433,Economic Development,Economic Development +475426,Economic Development,Economic Development +475422,Economic Development,Economic Development +471990,Economic Development,Economic Development +471989,Economic Development,Economic Development +471988,Economic Development,Economic Development +471982,Economic Development,Economic Development +471979,Economic Development,Economic Development +469762,Economic Development,Economic Development +469760,Economic Development,Economic Development +466056,Economic Development,Economic Development +466055,Economic Development,Economic Development +466054,Economic Development,Economic Development +465891,Economic Development,Economic Development +465889,Economic Development,Economic Development +465884,Economic Development,Economic Development +465883,Economic Development,Economic Development +189345,Transportation,Transportation +181064,Regional Development,Regional Development +181064,Transportation,Transportation +159397,Industry,Industry +158477,Agriculture,Agriculture +158459,Economic Development,Economic Development +158476,Employment and Training,Employment and Training +162784,Environment,Environment +158455,Industry,Industry +158455,International Trade,International Trade +158455,Mining,Mining +158477,Transportation,Transportation +262375,Pensions,Pensions +458309,Privacy and Access to Information,Privacy and Access to Information +430437,International Development,International Development +158428,Mining,Mining +286670,Small Business,Small Business +485025,Research and Development,Research and Development (R&D) +154060,Research and Development,Research and Development (R&D) +201209,Economic Development,Economic Development +159064,International Development,International Development +501318,Research and Development,Research and Development (R&D) +155316,Constitutional Issues,Constitutional Issues +155316,Consumer Issues,Consumer Issues +155309,Economic Development,Economic Development +155316,Health,Health +155316,Internal Trade,Internal Trade +158872,Justice and Law Enforcement,Justice and Law Enforcement +155312,Research and Development,Research and Development (R&D) +160294,Small Business,Small Business +160322,Climate,Climate +167868,Intellectual Property,Intellectual Property +154290,Municipalities,Municipalities +154291,Municipalities,Municipalities +537311,Municipalities,Municipalities +154293,Municipalities,Municipalities +154294,Municipalities,Municipalities +154295,Municipalities,Municipalities +154297,Municipalities,Municipalities +154298,Municipalities,Municipalities +156555,Government Procurement,Government Procurement +431387,Intellectual Property,Propriété intellectuelle +160762,Employment and Training,Employment and Training +160761,Environment,Environment +160761,Labour,Labour +160761,Small Business,Small Business +490916,Environment,Environment +161577,Agriculture,Agriculture +161577,Transportation,Transportation +513324,Security,Security +402766,Energy,Energy +525855,Energy,Energy +181565,Defence,Defence +167278,Government Procurement,Government Procurement +181565,Security,Security +159145,Economic Development,Economic Development +159145,International Development,International Development +488149,Economic Development,Economic Development +443890,Research and Development,Research and Development (R&D) +175604,Agriculture,Agriculture +175606,Industry,Industry +154691,Economic Development,Economic Development +154787,International Relations,Relations internationales +485275,Employment and Training,Employment and Training +487573,Industry,Industry +333118,Education,Education +159033,Economic Development,Economic Development +159033,International Development,International Development +158586,Economic Development,Economic Development +158586,International Development,International Development +495281,Small Business,Small Business +154914,Economic Development,Economic Development +154914,Small Business,Small Business +154922,Internal Trade,Internal Trade +300350,Budget,Budget +158576,Economic Development,Economic Development +158576,International Development,International Development +202708,Economic Development,Economic Development +158570,International Development,International Development +160697,Environment,Environment +154986,Infrastructure,Infrastructure +192164,Taxation and Finance,Taxation and Finance +155854,Consumer Issues,Consumer Issues +408314,Health,Health +471630,Intellectual Property,Intellectual Property +382854,Justice and Law Enforcement,Justice and Law Enforcement +155128,Health,Health +158314,Defence,Defence +158314,Industry,Industry +158314,Regional Development,Regional Development +159703,Environment,Environment +158561,Economic Development,Economic Development +158561,International Development,International Development +521297,Sports,Sports +158538,Economic Development,Economic Development +158538,International Development,International Development +158537,Economic Development,Economic Development +158537,International Development,International Development +540372,Budget,Budget +207519,Taxation and Finance,Taxation and Finance +323996,Health,Health +407583,Taxation and Finance,Taxation and Finance +203229,International Trade,International Trade +209622,Consumer Issues,Consumer Issues +166289,Economic Development,Economic Development +209626,Health,Health +158858,International Trade,International Trade +158858,Municipalities,Municipalities +155311,Privacy and Access to Information,Privacy and Access to Information +155311,Research and Development,Research and Development (R&D) +209624,Small Business,Small Business +158864,Consumer Issues,Consumer Issues +158866,Economic Development,Economic Development +203797,Health,Health +155315,International Development,International Development +155315,Municipalities,Municipalities +158858,Research and Development,Research and Development (R&D) +166290,Small Business,Small Business +155326,Privacy and Access to Information,Privacy and Access to Information +382854,Security,Security +192384,Economic Development,Economic Development +521297,Education,Education +521297,Health,Health +268851,Transportation,Transportation +312311,Transportation,Transportation +190845,Government Procurement,Government Procurement +239829,Defence,Defence +239829,Government Procurement,Government Procurement +155468,Health,Health +155467,Health,Health +156046,Energy,Energy +321850,Industry,Industry +156716,Mining,Mining +400769,Defence,Defence +473948,Government Procurement,Government Procurement +263809,Industry,Industry +268855,Infrastructure,Infrastructure +331487,Labour,Labour +296890,Regional Development,Regional Development +233227,Transportation,Transportation +157471,Infrastructure,Infrastructure +157471,Sports,Sports +156683,Infrastructure,Infrastructure +156683,Sports,Sports +155648,Education,Education +160597,Economic Development,Développement économique +160593,Forestry,Foresterie +378246,Pensions,Pensions +526327,Privacy and Access to Information,Privacy and Access to Information +444634,Research and Development,Research and Development (R&D) +408414,Financial Institutions,Financial Institutions +445165,Economic Development,Economic Development +158920,International Relations,International Relations +167389,International Trade,International Trade +203887,Economic Development,Economic Development +377678,Security,Security +158434,Regional Development,Regional Development +252674,Research and Development,Research and Development (R&D) +158983,Economic Development,Economic Development +161309,Research and Development,Recherche et développement (R&D) +158547,Transportation,Transportation +276018,Environment,Environment +192625,Sports,Sports +200415,Tourism,Tourism +276075,Transportation,Transportation +160151,Agriculture,Agriculture +160155,International Trade,Commerce international +160151,Economic Development,Développement économique +160154,Employment and Training,Emploi et formation +160159,Industry,Industrie +160151,Mining,Mines +224508,Economic Development,Développement économique +157350,Economic Development,Economic Development +157350,Energy,Energy +157350,Environment,Environment +158583,Health,Health +166524,Government Procurement,Government Procurement +158609,Energy,Energy +156229,Security,Security +156229,Transportation,Transportation +156246,Labour,Labour +156250,Economic Development,Economic Development +156250,Industry,Industry +156250,Infrastructure,Infrastructure +159281,Intellectual Property,Intellectual Property +156252,Labour,Labour +541484,Climate,Climate +157162,Mining,Mining +208748,Intellectual Property,Intellectual Property +162235,Immigration,Immigration +160942,Economic Development,Développement économique +156733,Intellectual Property,Intellectual Property +515630,Education,Education +157429,Economic Development,Développement économique +212561,Transportation,Transportation +280780,Infrastructure,Infrastructure +161176,Intellectual Property,Intellectual Property +156686,Defence,Defence +191584,Intellectual Property,Intellectual Property +306490,Financial Institutions,Financial Institutions +386778,Consumer Issues,Consumer Issues +158181,Consumer Issues,Consumer Issues +158181,Intellectual Property,Intellectual Property +465882,Economic Development,Economic Development +465881,Economic Development,Economic Development +465880,Economic Development,Economic Development +465867,Economic Development,Economic Development +463451,Economic Development,Economic Development +463450,Economic Development,Economic Development +463449,Economic Development,Economic Development +461070,Economic Development,Economic Development +461069,Economic Development,Economic Development +459921,Economic Development,Economic Development +459920,Economic Development,Economic Development +459254,Economic Development,Economic Development +457935,Economic Development,Economic Development +456987,Economic Development,Economic Development +456986,Economic Development,Economic Development +456985,Economic Development,Economic Development +456984,Economic Development,Economic Development +456982,Economic Development,Economic Development +456980,Economic Development,Economic Development +456979,Economic Development,Economic Development +456974,Economic Development,Economic Development +456970,Economic Development,Economic Development +456312,Economic Development,Economic Development +455313,Economic Development,Economic Development +455309,Economic Development,Economic Development +455303,Economic Development,Economic Development +455288,Economic Development,Economic Development +455261,Economic Development,Economic Development +455259,Economic Development,Economic Development +455258,Economic Development,Economic Development +454637,Economic Development,Economic Development +453664,Economic Development,Economic Development +451774,Economic Development,Economic Development +451458,Economic Development,Economic Development +451452,Economic Development,Economic Development +451450,Economic Development,Economic Development +451415,Economic Development,Economic Development +451413,Economic Development,Economic Development +451412,Economic Development,Economic Development +451411,Economic Development,Economic Development +451397,Economic Development,Economic Development +451395,Economic Development,Economic Development +451394,Economic Development,Economic Development +451393,Economic Development,Economic Development +451392,Economic Development,Economic Development +451388,Economic Development,Economic Development +450964,Economic Development,Economic Development +450963,Economic Development,Economic Development +450962,Economic Development,Economic Development +450961,Economic Development,Economic Development +450959,Economic Development,Economic Development +449261,Economic Development,Economic Development +449260,Economic Development,Economic Development +449259,Economic Development,Economic Development +449258,Economic Development,Economic Development +447066,Economic Development,Economic Development +447061,Economic Development,Economic Development +447060,Economic Development,Economic Development +447058,Economic Development,Economic Development +447055,Economic Development,Economic Development +446801,Economic Development,Economic Development +446799,Economic Development,Economic Development +446795,Economic Development,Economic Development +446793,Economic Development,Economic Development +446791,Economic Development,Economic Development +446789,Economic Development,Economic Development +165458,International Trade,International Trade +158920,International Trade,International Trade +169848,International Trade,International Trade +167390,International Trade,International Trade +252710,Regional Development,Regional Development +252694,Regional Development,Regional Development +158433,Regional Development,Regional Development +158432,Regional Development,Regional Development +158410,Regional Development,Regional Development +158409,Regional Development,Regional Development +158379,Regional Development,Regional Development +252693,Regional Development,Regional Development +252691,Regional Development,Regional Development +172906,Regional Development,Regional Development +172905,Regional Development,Regional Development +158608,Regional Development,Regional Development +158435,Regional Development,Regional Development +252670,Research and Development,Research and Development (R&D) +227296,Research and Development,Research and Development (R&D) +252710,Research and Development,Research and Development (R&D) +252694,Research and Development,Research and Development (R&D) +252693,Research and Development,Research and Development (R&D) +252691,Research and Development,Research and Development (R&D) +252688,Research and Development,Research and Development (R&D) +161226,Research and Development,Recherche et développement (R&D) +161225,Research and Development,Recherche et développement (R&D) +161224,Research and Development,Recherche et développement (R&D) +161223,Research and Development,Recherche et développement (R&D) +161220,Research and Development,Recherche et développement (R&D) +161218,Research and Development,Recherche et développement (R&D) +169824,Research and Development,Recherche et développement (R&D) +165819,Research and Development,Recherche et développement (R&D) +162895,Research and Development,Recherche et développement (R&D) +162894,Research and Development,Recherche et développement (R&D) +161310,Research and Development,Recherche et développement (R&D) +243472,Environment,Environment +243409,Environment,Environment +313125,Environment,Environment +192624,Sports,Sports +243474,Sports,Sports +200408,Sports,Sports +192627,Sports,Sports +192626,Sports,Sports +200408,Tourism,Tourism +200402,Tourism,Tourism +313125,Tourism,Tourism +313120,Tourism,Tourism +276073,Tourism,Tourism +160149,Agriculture,Agriculture +160148,Agriculture,Agriculture +160159,Agriculture,Agriculture +160158,Agriculture,Agriculture +160157,Agriculture,Agriculture +160156,Agriculture,Agriculture +160155,Agriculture,Agriculture +160154,Agriculture,Agriculture +160152,Agriculture,Agriculture +160153,International Trade,Commerce international +160149,Economic Development,Développement économique +160148,Economic Development,Développement économique +160159,Economic Development,Développement économique +160158,Economic Development,Développement économique +160157,Economic Development,Développement économique +160156,Economic Development,Développement économique +160153,Economic Development,Développement économique +160152,Economic Development,Développement économique +160158,Industry,Industrie +160157,Industry,Industrie +160156,Industry,Industrie +160155,Industry,Industrie +160154,Industry,Industrie +160153,Industry,Industrie +160152,Industry,Industrie +160151,Industry,Industrie +160149,Industry,Industrie +160148,Industry,Industrie +160149,Mining,Mines +160148,Mining,Mines +160159,Mining,Mines +160158,Mining,Mines +160157,Mining,Mines +160156,Mining,Mines +160155,Mining,Mines +160154,Mining,Mines +160153,Mining,Mines +160152,Mining,Mines +224507,Economic Development,Développement économique +208829,Economic Development,Développement économique +201198,Economic Development,Développement économique +201197,Economic Development,Développement économique +201196,Economic Development,Développement économique +201195,Economic Development,Développement économique +201194,Economic Development,Développement économique +201193,Economic Development,Développement économique +201192,Economic Development,Développement économique +201191,Economic Development,Développement économique +266650,Economic Development,Développement économique +266649,Economic Development,Développement économique +260709,Economic Development,Développement économique +257890,Economic Development,Développement économique +248701,Economic Development,Développement économique +248700,Economic Development,Développement économique +248699,Economic Development,Développement économique +248698,Economic Development,Développement économique +248697,Economic Development,Développement économique +248696,Economic Development,Développement économique +248695,Economic Development,Développement économique +248694,Economic Development,Développement économique +248693,Economic Development,Développement économique +248692,Economic Development,Développement économique +248691,Economic Development,Développement économique +248690,Economic Development,Développement économique +230120,Economic Development,Développement économique +230117,Economic Development,Développement économique +230116,Economic Development,Développement économique +230114,Economic Development,Développement économique +230113,Economic Development,Développement économique +230112,Economic Development,Développement économique +230111,Economic Development,Développement économique +171185,Health,Health +159610,Government Procurement,Government Procurement +207907,Government Procurement,Government Procurement +199930,Government Procurement,Government Procurement +197094,Government Procurement,Government Procurement +180379,Government Procurement,Government Procurement +168424,Government Procurement,Government Procurement +158506,Energy,Energy +308570,Intellectual Property,Intellectual Property +308569,Intellectual Property,Intellectual Property +541483,Climate,Climate +540035,Climate,Climate +202948,Climate,Climate +195404,Climate,Climate +195403,Climate,Climate +195402,Climate,Climate +195389,Climate,Climate +175546,Climate,Climate +175545,Climate,Climate +175544,Climate,Climate +175303,Climate,Climate +163620,Climate,Climate +163619,Climate,Climate +161525,Climate,Climate +161524,Climate,Climate +161518,Climate,Climate +355834,Climate,Climate +355832,Climate,Climate +344828,Climate,Climate +313314,Climate,Climate +313309,Climate,Climate +313308,Climate,Climate +287054,Climate,Climate +286174,Climate,Climate +273751,Climate,Climate +273750,Climate,Climate +259074,Climate,Climate +259073,Climate,Climate +259066,Climate,Climate +398874,Climate,Climate +398871,Climate,Climate +398867,Climate,Climate +398862,Climate,Climate +396987,Climate,Climate +396985,Climate,Climate +396981,Climate,Climate +393940,Climate,Climate +393939,Climate,Climate +392690,Climate,Climate +391526,Climate,Climate +391511,Climate,Climate +388507,Climate,Climate +388504,Climate,Climate +388486,Climate,Climate +388481,Climate,Climate +388476,Climate,Climate +385652,Climate,Climate +385646,Climate,Climate +385640,Climate,Climate +385638,Climate,Climate +385635,Climate,Climate +385628,Climate,Climate +383577,Climate,Climate +383575,Climate,Climate +382504,Climate,Climate +382501,Climate,Climate +382493,Climate,Climate +382490,Climate,Climate +381364,Climate,Climate +381348,Climate,Climate +381345,Climate,Climate +381341,Climate,Climate +377243,Climate,Climate +377237,Climate,Climate +374864,Climate,Climate +374859,Climate,Climate +369595,Climate,Climate +369594,Climate,Climate +369593,Climate,Climate +369591,Climate,Climate +369590,Climate,Climate +369589,Climate,Climate +369588,Climate,Climate +369587,Climate,Climate +369582,Climate,Climate +368715,Climate,Climate +368714,Climate,Climate +366604,Climate,Climate +366603,Climate,Climate +366602,Climate,Climate +366600,Climate,Climate +366594,Climate,Climate +366591,Climate,Climate +365438,Climate,Climate +365345,Climate,Climate +365344,Climate,Climate +365343,Climate,Climate +365342,Climate,Climate +365341,Climate,Climate +365338,Climate,Climate +365331,Climate,Climate +362329,Climate,Climate +362327,Climate,Climate +536882,Climate,Climate +536881,Climate,Climate +535305,Climate,Climate +535285,Climate,Climate +531689,Climate,Climate +528954,Climate,Climate +526229,Climate,Climate +523028,Climate,Climate +523023,Climate,Climate +523008,Climate,Climate +523006,Climate,Climate +523002,Climate,Climate +522998,Climate,Climate +519858,Climate,Climate +519851,Climate,Climate +518020,Climate,Climate +518016,Climate,Climate +518009,Climate,Climate +518003,Climate,Climate +518000,Climate,Climate +517990,Climate,Climate +515733,Climate,Climate +515730,Climate,Climate +515727,Climate,Climate +514153,Climate,Climate +512837,Climate,Climate +512815,Climate,Climate +511034,Climate,Climate +510988,Climate,Climate +510981,Climate,Climate +508673,Climate,Climate +508629,Climate,Climate +502390,Climate,Climate +502384,Climate,Climate +502380,Climate,Climate +502371,Climate,Climate +502370,Climate,Climate +498991,Climate,Climate +495266,Climate,Climate +493063,Climate,Climate +493061,Climate,Climate +491344,Climate,Climate +491300,Climate,Climate +491293,Climate,Climate +488172,Climate,Climate +488167,Climate,Climate +484858,Climate,Climate +482221,Climate,Climate +477820,Climate,Climate +473581,Climate,Climate +473348,Climate,Climate +470785,Climate,Climate +470782,Climate,Climate +470778,Climate,Climate +470776,Climate,Climate +470761,Climate,Climate +464670,Climate,Climate +461719,Climate,Climate +461615,Climate,Climate +461612,Climate,Climate +461603,Climate,Climate +461602,Climate,Climate +461600,Climate,Climate +461599,Climate,Climate +461582,Climate,Climate +460635,Climate,Climate +460634,Climate,Climate +458740,Climate,Climate +455556,Climate,Climate +455551,Climate,Climate +455547,Climate,Climate +452766,Climate,Climate +452764,Climate,Climate +452760,Climate,Climate +449997,Climate,Climate +443846,Climate,Climate +443837,Climate,Climate +443836,Climate,Climate +443834,Climate,Climate +443833,Climate,Climate +443828,Climate,Climate +442574,Climate,Climate +442573,Climate,Climate +442549,Climate,Climate +439219,Climate,Climate +439097,Climate,Climate +439044,Climate,Climate +436050,Climate,Climate +435819,Climate,Climate +433740,Climate,Climate +433711,Climate,Climate +433635,Climate,Climate +431039,Climate,Climate +428202,Climate,Climate +428186,Climate,Climate +424423,Climate,Climate +424412,Climate,Climate +424406,Climate,Climate +424405,Climate,Climate +424404,Climate,Climate +422212,Climate,Climate +420003,Climate,Climate +417742,Climate,Climate +417740,Climate,Climate +417737,Climate,Climate +416358,Climate,Climate +416247,Climate,Climate +416234,Climate,Climate +416195,Climate,Climate +416185,Climate,Climate +416166,Climate,Climate +416162,Climate,Climate +413191,Climate,Climate +413168,Climate,Climate +413132,Climate,Climate +409093,Climate,Climate +407914,Climate,Climate +407864,Climate,Climate +406954,Climate,Climate +406953,Climate,Climate +406936,Climate,Climate +406933,Climate,Climate +405696,Climate,Climate +405694,Climate,Climate +405693,Climate,Climate +405691,Climate,Climate +405686,Climate,Climate +403899,Climate,Climate +403815,Climate,Climate +544394,Climate,Climate +544393,Climate,Climate +544392,Climate,Climate +544390,Climate,Climate +544388,Climate,Climate +544387,Climate,Climate +541486,Climate,Climate +541485,Climate,Climate +157159,Mining,Mining +157147,Mining,Mining +158511,Mining,Mining +158510,Mining,Mining +158509,Mining,Mining +157178,Mining,Mining +158951,Immigration,Immigration +160938,Economic Development,Développement économique +494787,Education,Education +487296,Education,Education +156568,Education,Education +369474,Education,Education +351762,Education,Education +467253,Education,Education +445020,Education,Education +437387,Education,Education +422112,Education,Education +419898,Education,Education +531105,Education,Education +530975,Education,Education +530657,Education,Education +529210,Education,Education +527632,Education,Education +157428,Economic Development,Développement économique +212557,Transportation,Transportation +200513,Transportation,Transportation +156628,Transportation,Transportation +212563,Transportation,Transportation +254370,Infrastructure,Infrastructure +241052,Infrastructure,Infrastructure +161175,Intellectual Property,Intellectual Property +174544,Intellectual Property,Intellectual Property +166070,Intellectual Property,Intellectual Property +161188,Intellectual Property,Intellectual Property +161186,Intellectual Property,Intellectual Property +161180,Intellectual Property,Intellectual Property +161179,Intellectual Property,Intellectual Property +161178,Intellectual Property,Intellectual Property +161177,Intellectual Property,Intellectual Property +191576,Intellectual Property,Intellectual Property +191567,Intellectual Property,Intellectual Property +176385,Intellectual Property,Intellectual Property +176384,Intellectual Property,Intellectual Property +175173,Intellectual Property,Intellectual Property +175171,Intellectual Property,Intellectual Property +167725,Intellectual Property,Intellectual Property +163627,Intellectual Property,Intellectual Property +163626,Intellectual Property,Intellectual Property +156968,Intellectual Property,Intellectual Property +156966,Intellectual Property,Intellectual Property +156962,Intellectual Property,Intellectual Property +156958,Intellectual Property,Intellectual Property +243393,Intellectual Property,Intellectual Property +243392,Intellectual Property,Intellectual Property +243391,Intellectual Property,Intellectual Property +243390,Intellectual Property,Intellectual Property +243389,Intellectual Property,Intellectual Property +201128,Intellectual Property,Intellectual Property +201127,Intellectual Property,Intellectual Property +375837,Intellectual Property,Intellectual Property +375831,Intellectual Property,Intellectual Property +352593,Intellectual Property,Intellectual Property +352592,Intellectual Property,Intellectual Property +541809,Intellectual Property,Intellectual Property +537330,Intellectual Property,Intellectual Property +537329,Intellectual Property,Intellectual Property +537326,Intellectual Property,Intellectual Property +535178,Intellectual Property,Intellectual Property +535176,Intellectual Property,Intellectual Property +535171,Intellectual Property,Intellectual Property +535167,Intellectual Property,Intellectual Property +531607,Intellectual Property,Intellectual Property +531606,Intellectual Property,Intellectual Property +528732,Intellectual Property,Intellectual Property +528731,Intellectual Property,Intellectual Property +526411,Intellectual Property,Intellectual Property +526397,Intellectual Property,Intellectual Property +526392,Intellectual Property,Intellectual Property +509335,Intellectual Property,Intellectual Property +502944,Intellectual Property,Intellectual Property +453681,Intellectual Property,Intellectual Property +440755,Intellectual Property,Intellectual Property +423397,Intellectual Property,Intellectual Property +544346,Intellectual Property,Intellectual Property +162473,Financial Institutions,Financial Institutions +162427,Financial Institutions,Financial Institutions +162341,Financial Institutions,Financial Institutions +162218,Financial Institutions,Financial Institutions +162182,Financial Institutions,Financial Institutions +162179,Financial Institutions,Financial Institutions +531076,Consumer Issues,Consumer Issues +531071,Consumer Issues,Consumer Issues +193740,Consumer Issues,Consumer Issues +193733,Consumer Issues,Consumer Issues +185458,Consumer Issues,Consumer Issues +156769,Consumer Issues,Consumer Issues +382277,Consumer Issues,Consumer Issues +382275,Consumer Issues,Consumer Issues +382274,Consumer Issues,Consumer Issues +382273,Consumer Issues,Consumer Issues +356228,Consumer Issues,Consumer Issues +277598,Consumer Issues,Consumer Issues +261251,Consumer Issues,Consumer Issues +253311,Consumer Issues,Consumer Issues +226228,Consumer Issues,Consumer Issues +224061,Consumer Issues,Consumer Issues +463445,Consumer Issues,Consumer Issues +427081,Consumer Issues,Consumer Issues +427077,Consumer Issues,Consumer Issues +427075,Consumer Issues,Consumer Issues +397305,Consumer Issues,Consumer Issues +396348,Consumer Issues,Consumer Issues +396347,Consumer Issues,Consumer Issues +396346,Consumer Issues,Consumer Issues +390501,Consumer Issues,Consumer Issues +390500,Consumer Issues,Consumer Issues +390499,Consumer Issues,Consumer Issues +390498,Consumer Issues,Consumer Issues +386786,Consumer Issues,Consumer Issues +386784,Consumer Issues,Consumer Issues +386782,Consumer Issues,Consumer Issues +291103,Employment and Training,Employment and Training +210308,Employment and Training,Employment and Training +170025,Employment and Training,Employment and Training +170024,Employment and Training,Employment and Training +156838,Employment and Training,Employment and Training +372106,Employment and Training,Employment and Training +316712,Employment and Training,Employment and Training +188967,Intellectual Property,Intellectual Property +188966,Intellectual Property,Intellectual Property +185550,Intellectual Property,Intellectual Property +185549,Intellectual Property,Intellectual Property +185547,Intellectual Property,Intellectual Property +185546,Intellectual Property,Intellectual Property +177644,Intellectual Property,Intellectual Property +177626,Intellectual Property,Intellectual Property +177625,Intellectual Property,Intellectual Property +177624,Intellectual Property,Intellectual Property +177604,Intellectual Property,Intellectual Property +177584,Intellectual Property,Intellectual Property +177564,Intellectual Property,Intellectual Property +177149,Intellectual Property,Intellectual Property +174066,Intellectual Property,Intellectual Property +170585,Intellectual Property,Intellectual Property +167535,Intellectual Property,Intellectual Property +167534,Intellectual Property,Intellectual Property +167531,Intellectual Property,Intellectual Property +167529,Intellectual Property,Intellectual Property +167502,Intellectual Property,Intellectual Property +160753,Intellectual Property,Intellectual Property +295811,Intellectual Property,Intellectual Property +256354,Intellectual Property,Intellectual Property +254049,Intellectual Property,Intellectual Property +250555,Intellectual Property,Intellectual Property +245543,Intellectual Property,Intellectual Property +245006,Intellectual Property,Intellectual Property +245005,Intellectual Property,Intellectual Property +245002,Intellectual Property,Intellectual Property +240634,Intellectual Property,Intellectual Property +240631,Intellectual Property,Intellectual Property +240629,Intellectual Property,Intellectual Property +236409,Intellectual Property,Intellectual Property +230316,Intellectual Property,Intellectual Property +230309,Intellectual Property,Intellectual Property +226671,Intellectual Property,Intellectual Property +226670,Intellectual Property,Intellectual Property +226667,Intellectual Property,Intellectual Property +223224,Intellectual Property,Intellectual Property +223218,Intellectual Property,Intellectual Property +223216,Intellectual Property,Intellectual Property +223214,Intellectual Property,Intellectual Property +223213,Intellectual Property,Intellectual Property +216287,Intellectual Property,Intellectual Property +212187,Intellectual Property,Intellectual Property +212037,Intellectual Property,Intellectual Property +212016,Intellectual Property,Intellectual Property +212012,Intellectual Property,Intellectual Property +207218,Intellectual Property,Intellectual Property +207217,Intellectual Property,Intellectual Property +207216,Intellectual Property,Intellectual Property +207215,Intellectual Property,Intellectual Property +207214,Intellectual Property,Intellectual Property +207213,Intellectual Property,Intellectual Property +207211,Intellectual Property,Intellectual Property +207208,Intellectual Property,Intellectual Property +207207,Intellectual Property,Intellectual Property +207204,Intellectual Property,Intellectual Property +207194,Intellectual Property,Intellectual Property +207192,Intellectual Property,Intellectual Property +207146,Intellectual Property,Intellectual Property +205087,Intellectual Property,Intellectual Property +205067,Intellectual Property,Intellectual Property +203229,Intellectual Property,Intellectual Property +203228,Intellectual Property,Intellectual Property +201070,Intellectual Property,Intellectual Property +201068,Intellectual Property,Intellectual Property +200129,Intellectual Property,Intellectual Property +199606,Intellectual Property,Intellectual Property +199597,Intellectual Property,Intellectual Property +199596,Intellectual Property,Intellectual Property +199107,Intellectual Property,Intellectual Property +199087,Intellectual Property,Intellectual Property +192664,Intellectual Property,Intellectual Property +343852,Defence,Defence +330168,Defence,Defence +156895,Defence,Defence +284989,Defence,Defence +390926,Defence,Defence +366575,Defence,Defence +366573,Defence,Defence +366569,Defence,Defence +365122,Defence,Defence +365120,Defence,Defence +365118,Defence,Defence +365110,Defence,Defence +166164,Transportation,Transportation +176504,Transportation,Transportation +171304,Transportation,Transportation +268713,Taxation and Finance,Taxation and Finance +268710,Taxation and Finance,Taxation and Finance +223208,Taxation and Finance,Taxation and Finance +223207,Taxation and Finance,Taxation and Finance +207047,Taxation and Finance,Taxation and Finance +199916,Taxation and Finance,Taxation and Finance +189385,Taxation and Finance,Taxation and Finance +185724,Taxation and Finance,Taxation and Finance +156955,Taxation and Finance,Taxation and Finance +158836,Energy,Energy +205928,Energy,Energy +192530,Energy,Energy +158836,Research and Development,Research and Development (R&D) +205928,Research and Development,Research and Development (R&D) +407541,International Development,International Development +407538,International Development,International Development +157029,International Development,International Development +232672,International Development,International Development +232670,International Development,International Development +232669,International Development,International Development +230442,International Development,International Development +226600,International Development,International Development +223396,International Development,International Development +223383,International Development,International Development +223382,International Development,International Development +223381,International Development,International Development +217255,International Development,International Development +217167,International Development,International Development +217149,International Development,International Development +212807,International Development,International Development +199570,International Development,International Development +331232,International Development,International Development +327441,International Development,International Development +327439,International Development,International Development +327434,International Development,International Development +327427,International Development,International Development +327420,International Development,International Development +324027,International Development,International Development +324025,International Development,International Development +321528,International Development,International Development +321520,International Development,International Development +319092,International Development,International Development +319089,International Development,International Development +319087,International Development,International Development +315037,International Development,International Development +309885,International Development,International Development +309884,International Development,International Development +309799,International Development,International Development +295130,International Development,International Development +291085,International Development,International Development +271724,International Development,International Development +271721,International Development,International Development +264287,International Development,International Development +241181,International Development,International Development +241098,International Development,International Development +390367,International Development,International Development +383204,International Development,International Development +378801,International Development,International Development +376304,International Development,International Development +372354,International Development,International Development +372353,International Development,International Development +372350,International Development,International Development +367993,International Development,International Development +366534,International Development,International Development +365078,International Development,International Development +359460,International Development,International Development +357290,International Development,International Development +350494,International Development,International Development +350483,International Development,International Development +350481,International Development,International Development +343903,International Development,International Development +343901,International Development,International Development +343899,International Development,International Development +343897,International Development,International Development +340994,International Development,International Development +340987,International Development,International Development +340974,International Development,International Development +340962,International Development,International Development +340960,International Development,International Development +340937,International Development,International Development +340936,International Development,International Development +340931,International Development,International Development +335800,International Development,International Development +335781,International Development,International Development +543661,International Development,International Development +538148,International Development,International Development +490106,International Development,International Development +487288,International Development,International Development +452564,International Development,International Development +441916,International Development,International Development +430545,International Development,International Development +426664,International Development,International Development +426659,International Development,International Development +426328,International Development,International Development +421887,International Development,International Development +415597,International Development,International Development +415583,International Development,International Development +413410,International Development,International Development +413407,International Development,International Development +409466,International Development,International Development +406702,International Relations,International Relations +405402,International Relations,International Relations +173065,International Relations,International Relations +157029,International Relations,International Relations +295130,International Relations,International Relations +279985,International Relations,International Relations +277298,International Relations,International Relations +271728,International Relations,International Relations +271727,International Relations,International Relations +271726,International Relations,International Relations +271725,International Relations,International Relations +271724,International Relations,International Relations +226600,International Relations,International Relations +226599,International Relations,International Relations +226597,International Relations,International Relations +223396,International Relations,International Relations +223383,International Relations,International Relations +223382,International Relations,International Relations +223381,International Relations,International Relations +223369,International Relations,International Relations +398358,International Relations,International Relations +398346,International Relations,International Relations +398344,International Relations,International Relations +396560,International Relations,International Relations +392731,International Relations,International Relations +392730,International Relations,International Relations +392729,International Relations,International Relations +392728,International Relations,International Relations +390386,International Relations,International Relations +390378,International Relations,International Relations +390375,International Relations,International Relations +390371,International Relations,International Relations +390156,International Relations,International Relations +390154,International Relations,International Relations +390144,International Relations,International Relations +383204,International Relations,International Relations +380870,International Relations,International Relations +365079,International Relations,International Relations +365078,International Relations,International Relations +350481,International Relations,International Relations +340973,International Relations,International Relations +340964,International Relations,International Relations +340962,International Relations,International Relations +340960,International Relations,International Relations +335766,International Relations,International Relations +333605,International Relations,International Relations +333604,International Relations,International Relations +333603,International Relations,International Relations +331232,International Relations,International Relations +324027,International Relations,International Relations +321528,International Relations,International Relations +321520,International Relations,International Relations +315037,International Relations,International Relations +309884,International Relations,International Relations +309878,International Relations,International Relations +309834,International Relations,International Relations +517938,International Relations,International Relations +495762,International Relations,International Relations +470377,International Relations,International Relations +424077,International Relations,International Relations +421887,International Relations,International Relations +415623,International Relations,International Relations +415597,International Relations,International Relations +415286,International Relations,International Relations +415285,International Relations,International Relations +413288,International Relations,International Relations +407061,Economic Development,Economic Development +406531,Economic Development,Economic Development +292709,Economic Development,Economic Development +356040,Economic Development,Economic Development +340498,Economic Development,Economic Development +338127,Economic Development,Economic Development +338125,Economic Development,Economic Development +335562,Economic Development,Economic Development +331910,Economic Development,Economic Development +330930,Economic Development,Economic Development +330928,Economic Development,Economic Development +330927,Economic Development,Economic Development +330926,Economic Development,Economic Development +330925,Economic Development,Economic Development +330924,Economic Development,Economic Development +330013,Economic Development,Economic Development +327272,Economic Development,Economic Development +327271,Economic Development,Economic Development +327270,Economic Development,Economic Development +327269,Economic Development,Economic Development +327268,Economic Development,Economic Development +327267,Economic Development,Economic Development +327266,Economic Development,Economic Development +327265,Economic Development,Economic Development +327264,Economic Development,Economic Development +324676,Economic Development,Economic Development +356039,Industry,Industry +508945,Industry,Industry +224327,Industry,Industry +189107,Industry,Industry +401245,Industry,Industry +401239,Industry,Industry +401238,Industry,Industry +401237,Industry,Industry +401236,Industry,Industry +397196,Industry,Industry +397195,Industry,Industry +390034,Industry,Industry +361218,Industry,Industry +385040,Security,Security +413246,Security,Security +157189,Security,Security +392212,Security,Security +190264,Climate,Climate +165957,Climate,Climate +165946,Climate,Climate +165944,Climate,Climate +162970,Climate,Climate +162965,Climate,Climate +216167,Climate,Climate +318670,Climate,Climate +318668,Climate,Climate +498466,Climate,Climate +498443,Climate,Climate +470296,Climate,Climate +452289,Climate,Climate +447152,Climate,Climate +447151,Climate,Climate +447150,Climate,Climate +441411,Climate,Climate +441407,Climate,Climate +427100,Climate,Climate +427099,Climate,Climate +405697,Climate,Climate +395710,Climate,Climate +395707,Climate,Climate +395699,Climate,Climate +517359,Climate,Climate +513028,Climate,Climate +409027,Security,Security +406967,Security,Security +157202,Security,Security +473535,Security,Security +157209,Security,Security +424214,Security,Security +424144,Security,Security +406966,Security,Security +376797,Security,Security +396073,Security,Security +313201,Security,Security +157212,Security,Security +383841,Security,Security +379281,Security,Security +193980,Security,Security +157215,Security,Security +335933,Security,Security +396075,Security,Security +338702,Security,Security +157220,Security,Security +388419,Security,Security +385035,Security,Security +366423,Security,Security +162061,Energy,Energy +162060,Energy,Energy +225927,International Development,International Development +463400,International Development,International Development +212364,International Development,International Development +207867,International Development,International Development +195485,International Development,International Development +195484,International Development,International Development +195030,International Development,International Development +176077,International Development,International Development +167852,International Development,International Development +166375,International Development,International Development +166346,International Development,International Development +164360,International Development,International Development +162060,International Development,International Development +160111,International Development,International Development +277830,International Development,International Development +277829,International Development,International Development +277792,International Development,International Development +259553,International Development,International Development +371005,Research and Development,Research and Development (R&D) +371004,Research and Development,Research and Development (R&D) +157311,Research and Development,Research and Development (R&D) +202574,Research and Development,Research and Development (R&D) +202571,Research and Development,Research and Development (R&D) +200483,Research and Development,Research and Development (R&D) +200479,Research and Development,Research and Development (R&D) +200465,Research and Development,Research and Development (R&D) +189151,Research and Development,Research and Development (R&D) +254332,Research and Development,Research and Development (R&D) +254330,Research and Development,Research and Development (R&D) +254314,Research and Development,Research and Development (R&D) +250286,Research and Development,Research and Development (R&D) +250281,Research and Development,Research and Development (R&D) +244559,Research and Development,Research and Development (R&D) +244558,Research and Development,Research and Development (R&D) +244557,Research and Development,Research and Development (R&D) +244555,Research and Development,Research and Development (R&D) +244554,Research and Development,Research and Development (R&D) +244552,Research and Development,Research and Development (R&D) +244551,Research and Development,Research and Development (R&D) +244530,Research and Development,Research and Development (R&D) +244529,Research and Development,Research and Development (R&D) +241201,Research and Development,Research and Development (R&D) +241192,Research and Development,Research and Development (R&D) +241189,Research and Development,Research and Development (R&D) +236631,Research and Development,Research and Development (R&D) +230224,Research and Development,Research and Development (R&D) +226500,Research and Development,Research and Development (R&D) +210227,Research and Development,Research and Development (R&D) +210210,Research and Development,Research and Development (R&D) +207531,Research and Development,Research and Development (R&D) +207189,Research and Development,Research and Development (R&D) +202778,Research and Development,Research and Development (R&D) +202610,Research and Development,Research and Development (R&D) +202607,Research and Development,Research and Development (R&D) +202601,Research and Development,Research and Development (R&D) +202580,Research and Development,Research and Development (R&D) +371003,Research and Development,Research and Development (R&D) +371001,Research and Development,Research and Development (R&D) +370997,Research and Development,Research and Development (R&D) +370992,Research and Development,Research and Development (R&D) +370988,Research and Development,Research and Development (R&D) +370986,Research and Development,Research and Development (R&D) +370972,Research and Development,Research and Development (R&D) +370965,Research and Development,Research and Development (R&D) +355888,Research and Development,Research and Development (R&D) +351597,Research and Development,Research and Development (R&D) +351595,Research and Development,Research and Development (R&D) +338565,Research and Development,Research and Development (R&D) +338562,Research and Development,Research and Development (R&D) +338561,Research and Development,Research and Development (R&D) +338537,Research and Development,Research and Development (R&D) +338535,Research and Development,Research and Development (R&D) +338534,Research and Development,Research and Development (R&D) +338533,Research and Development,Research and Development (R&D) +338529,Research and Development,Research and Development (R&D) +338526,Research and Development,Research and Development (R&D) +338523,Research and Development,Research and Development (R&D) +338521,Research and Development,Research and Development (R&D) +338519,Research and Development,Research and Development (R&D) +338516,Research and Development,Research and Development (R&D) +338515,Research and Development,Research and Development (R&D) +338513,Research and Development,Research and Development (R&D) +338510,Research and Development,Research and Development (R&D) +338467,Research and Development,Research and Development (R&D) +338466,Research and Development,Research and Development (R&D) +338465,Research and Development,Research and Development (R&D) +338464,Research and Development,Research and Development (R&D) +338463,Research and Development,Research and Development (R&D) +338462,Research and Development,Research and Development (R&D) +338461,Research and Development,Research and Development (R&D) +338460,Research and Development,Research and Development (R&D) +338459,Research and Development,Research and Development (R&D) +338457,Research and Development,Research and Development (R&D) +338456,Research and Development,Research and Development (R&D) +338364,Research and Development,Research and Development (R&D) +338361,Research and Development,Research and Development (R&D) +338348,Research and Development,Research and Development (R&D) +338347,Research and Development,Research and Development (R&D) +338346,Research and Development,Research and Development (R&D) +338345,Research and Development,Research and Development (R&D) +338343,Research and Development,Research and Development (R&D) +338332,Research and Development,Research and Development (R&D) +338330,Research and Development,Research and Development (R&D) +338327,Research and Development,Research and Development (R&D) +338326,Research and Development,Research and Development (R&D) +338325,Research and Development,Research and Development (R&D) +338324,Research and Development,Research and Development (R&D) +338189,Research and Development,Research and Development (R&D) +338188,Research and Development,Research and Development (R&D) +338187,Research and Development,Research and Development (R&D) +338186,Research and Development,Research and Development (R&D) +338185,Research and Development,Research and Development (R&D) +338184,Research and Development,Research and Development (R&D) +338183,Research and Development,Research and Development (R&D) +338182,Research and Development,Research and Development (R&D) +338181,Research and Development,Research and Development (R&D) +338180,Research and Development,Research and Development (R&D) +338179,Research and Development,Research and Development (R&D) +338178,Research and Development,Research and Development (R&D) +338177,Research and Development,Research and Development (R&D) +338176,Research and Development,Research and Development (R&D) +338175,Research and Development,Research and Development (R&D) +338174,Research and Development,Research and Development (R&D) +338173,Research and Development,Research and Development (R&D) +338172,Research and Development,Research and Development (R&D) +338171,Research and Development,Research and Development (R&D) +338170,Research and Development,Research and Development (R&D) +338169,Research and Development,Research and Development (R&D) +338130,Research and Development,Research and Development (R&D) +338129,Research and Development,Research and Development (R&D) +338128,Research and Development,Research and Development (R&D) +338124,Research and Development,Research and Development (R&D) +338106,Research and Development,Research and Development (R&D) +338104,Research and Development,Research and Development (R&D) +337584,Research and Development,Research and Development (R&D) +337583,Research and Development,Research and Development (R&D) +337582,Research and Development,Research and Development (R&D) +337581,Research and Development,Research and Development (R&D) +337576,Research and Development,Research and Development (R&D) +337575,Research and Development,Research and Development (R&D) +337574,Research and Development,Research and Development (R&D) +337572,Research and Development,Research and Development (R&D) +337571,Research and Development,Research and Development (R&D) +337570,Research and Development,Research and Development (R&D) +337569,Research and Development,Research and Development (R&D) +337568,Research and Development,Research and Development (R&D) +337567,Research and Development,Research and Development (R&D) +337566,Research and Development,Research and Development (R&D) +337565,Research and Development,Research and Development (R&D) +337559,Research and Development,Research and Development (R&D) +337558,Research and Development,Research and Development (R&D) +337556,Research and Development,Research and Development (R&D) +337555,Research and Development,Research and Development (R&D) +337553,Research and Development,Research and Development (R&D) +337552,Research and Development,Research and Development (R&D) +337551,Research and Development,Research and Development (R&D) +337550,Research and Development,Research and Development (R&D) +337512,Research and Development,Research and Development (R&D) +318032,Research and Development,Research and Development (R&D) +318018,Research and Development,Research and Development (R&D) +318015,Research and Development,Research and Development (R&D) +313791,Research and Development,Research and Development (R&D) +313789,Research and Development,Research and Development (R&D) +313263,Research and Development,Research and Development (R&D) +277396,Research and Development,Research and Development (R&D) +277204,Research and Development,Research and Development (R&D) +273616,Research and Development,Research and Development (R&D) +269699,Research and Development,Research and Development (R&D) +269617,Research and Development,Research and Development (R&D) +261632,Research and Development,Research and Development (R&D) +261629,Research and Development,Research and Development (R&D) +261618,Research and Development,Research and Development (R&D) +261616,Research and Development,Research and Development (R&D) +261615,Research and Development,Research and Development (R&D) +261613,Research and Development,Research and Development (R&D) +261611,Research and Development,Research and Development (R&D) +261569,Research and Development,Research and Development (R&D) +461859,Research and Development,Research and Development (R&D) +457092,Research and Development,Research and Development (R&D) +457078,Research and Development,Research and Development (R&D) +449202,Research and Development,Research and Development (R&D) +449201,Research and Development,Research and Development (R&D) +442334,Research and Development,Research and Development (R&D) +442265,Research and Development,Research and Development (R&D) +435629,Research and Development,Research and Development (R&D) +435314,Research and Development,Research and Development (R&D) +432423,Research and Development,Research and Development (R&D) +430853,Research and Development,Research and Development (R&D) +421553,Research and Development,Research and Development (R&D) +412060,Research and Development,Research and Development (R&D) +412029,Research and Development,Research and Development (R&D) +392796,Research and Development,Research and Development (R&D) +371433,Research and Development,Research and Development (R&D) +371149,Research and Development,Research and Development (R&D) +371147,Research and Development,Research and Development (R&D) +371146,Research and Development,Research and Development (R&D) +371145,Research and Development,Research and Development (R&D) +371144,Research and Development,Research and Development (R&D) +371143,Research and Development,Research and Development (R&D) +371142,Research and Development,Research and Development (R&D) +371141,Research and Development,Research and Development (R&D) +371140,Research and Development,Research and Development (R&D) +371139,Research and Development,Research and Development (R&D) +371138,Research and Development,Research and Development (R&D) +371137,Research and Development,Research and Development (R&D) +371135,Research and Development,Research and Development (R&D) +371134,Research and Development,Research and Development (R&D) +371132,Research and Development,Research and Development (R&D) +371131,Research and Development,Research and Development (R&D) +371130,Research and Development,Research and Development (R&D) +371129,Research and Development,Research and Development (R&D) +371127,Research and Development,Research and Development (R&D) +371126,Research and Development,Research and Development (R&D) +371125,Research and Development,Research and Development (R&D) +371124,Research and Development,Research and Development (R&D) +371123,Research and Development,Research and Development (R&D) +371101,Research and Development,Research and Development (R&D) +371100,Research and Development,Research and Development (R&D) +371099,Research and Development,Research and Development (R&D) +371096,Research and Development,Research and Development (R&D) +371094,Research and Development,Research and Development (R&D) +371093,Research and Development,Research and Development (R&D) +371091,Research and Development,Research and Development (R&D) +371090,Research and Development,Research and Development (R&D) +371086,Research and Development,Research and Development (R&D) +371084,Research and Development,Research and Development (R&D) +371078,Research and Development,Research and Development (R&D) +371074,Research and Development,Research and Development (R&D) +371070,Research and Development,Research and Development (R&D) +371069,Research and Development,Research and Development (R&D) +371066,Research and Development,Research and Development (R&D) +371065,Research and Development,Research and Development (R&D) +371064,Research and Development,Research and Development (R&D) +371062,Research and Development,Research and Development (R&D) +371061,Research and Development,Research and Development (R&D) +371059,Research and Development,Research and Development (R&D) +371057,Research and Development,Research and Development (R&D) +371055,Research and Development,Research and Development (R&D) +371054,Research and Development,Research and Development (R&D) +371053,Research and Development,Research and Development (R&D) +371051,Research and Development,Research and Development (R&D) +371036,Research and Development,Research and Development (R&D) +371035,Research and Development,Research and Development (R&D) +371034,Research and Development,Research and Development (R&D) +371033,Research and Development,Research and Development (R&D) +371032,Research and Development,Research and Development (R&D) +371030,Research and Development,Research and Development (R&D) +371029,Research and Development,Research and Development (R&D) +371028,Research and Development,Research and Development (R&D) +371027,Research and Development,Research and Development (R&D) +371026,Research and Development,Research and Development (R&D) +371025,Research and Development,Research and Development (R&D) +371024,Research and Development,Research and Development (R&D) +371023,Research and Development,Research and Development (R&D) +371022,Research and Development,Research and Development (R&D) +371021,Research and Development,Research and Development (R&D) +371020,Research and Development,Research and Development (R&D) +371019,Research and Development,Research and Development (R&D) +371018,Research and Development,Research and Development (R&D) +371017,Research and Development,Research and Development (R&D) +371016,Research and Development,Research and Development (R&D) +371015,Research and Development,Research and Development (R&D) +371014,Research and Development,Research and Development (R&D) +371012,Research and Development,Research and Development (R&D) +371011,Research and Development,Research and Development (R&D) +371010,Research and Development,Research and Development (R&D) +371009,Research and Development,Research and Development (R&D) +157801,Industry,Industry +157800,Industry,Industry +355282,Immigration,Immigration +355281,Immigration,Immigration +251675,Immigration,Immigration +212148,Immigration,Immigration +192872,Immigration,Immigration +427489,Immigration,Immigration +393206,Immigration,Immigration +391943,Immigration,Immigration +384396,Immigration,Immigration +409024,Security,Security +403900,Security,Security +157357,Security,Security +287059,Security,Security +392770,Security,Security +392211,Security,Security +390834,Security,Security +385033,Security,Security +366424,Security,Security +333200,Security,Security +333196,Security,Security +526598,Defence,Defence +515871,Defence,Defence +182744,Defence,Defence +182724,Defence,Defence +162865,Defence,Defence +160299,Defence,Defence +243093,Defence,Defence +243092,Defence,Defence +242572,Defence,Defence +242571,Defence,Defence +242570,Defence,Defence +242569,Defence,Defence +240676,Defence,Defence +239189,Defence,Defence +223525,Defence,Defence +398908,Defence,Defence +389472,Defence,Defence +387178,Defence,Defence +387176,Defence,Defence +387166,Defence,Defence +387161,Defence,Defence +380746,Defence,Defence +353041,Defence,Defence +352944,Defence,Defence +351416,Defence,Defence +341753,Defence,Defence +341751,Defence,Defence +335018,Defence,Defence +325673,Defence,Defence +325672,Defence,Defence +321781,Defence,Defence +321779,Defence,Defence +321778,Defence,Defence +321777,Defence,Defence +321772,Defence,Defence +321771,Defence,Defence +493760,Defence,Defence +493759,Defence,Defence +487886,Defence,Defence +487883,Defence,Defence +478130,Defence,Defence +476175,Defence,Defence +470725,Defence,Defence +468163,Defence,Defence +461805,Defence,Defence +459730,Defence,Defence +454546,Defence,Defence +450251,Defence,Defence +446873,Defence,Defence +445197,Defence,Defence +438041,Defence,Defence +438038,Defence,Defence +433686,Defence,Defence +433588,Defence,Defence +433555,Defence,Defence +427844,Defence,Defence +427841,Defence,Defence +427296,Defence,Defence +409181,Defence,Defence +538487,Defence,Defence +433555,Government Procurement,Government Procurement +427296,Government Procurement,Government Procurement +243092,Government Procurement,Government Procurement +242572,Government Procurement,Government Procurement +242571,Government Procurement,Government Procurement +242570,Government Procurement,Government Procurement +242569,Government Procurement,Government Procurement +240676,Government Procurement,Government Procurement +239189,Government Procurement,Government Procurement +223525,Government Procurement,Government Procurement +183185,Government Procurement,Government Procurement +183184,Government Procurement,Government Procurement +182744,Government Procurement,Government Procurement +182724,Government Procurement,Government Procurement +162889,Government Procurement,Government Procurement +162865,Government Procurement,Government Procurement +341753,Government Procurement,Government Procurement +341751,Government Procurement,Government Procurement +335018,Government Procurement,Government Procurement +325673,Government Procurement,Government Procurement +325672,Government Procurement,Government Procurement +321781,Government Procurement,Government Procurement +321779,Government Procurement,Government Procurement +321778,Government Procurement,Government Procurement +321777,Government Procurement,Government Procurement +321772,Government Procurement,Government Procurement +321771,Government Procurement,Government Procurement +243093,Government Procurement,Government Procurement +351416,Government Procurement,Government Procurement +538487,Government Procurement,Government Procurement +535000,Government Procurement,Government Procurement +493760,Government Procurement,Government Procurement +493759,Government Procurement,Government Procurement +493674,Government Procurement,Government Procurement +487886,Government Procurement,Government Procurement +487883,Government Procurement,Government Procurement +476175,Government Procurement,Government Procurement +470725,Government Procurement,Government Procurement +461805,Government Procurement,Government Procurement +461804,Government Procurement,Government Procurement +459730,Government Procurement,Government Procurement +454638,Government Procurement,Government Procurement +454546,Government Procurement,Government Procurement +451514,Government Procurement,Government Procurement +451499,Government Procurement,Government Procurement +451496,Government Procurement,Government Procurement +450251,Government Procurement,Government Procurement +438041,Government Procurement,Government Procurement +438040,Government Procurement,Government Procurement +544292,International Trade,International Trade +541987,International Trade,International Trade +480397,International Trade,International Trade +478130,International Trade,International Trade +443341,Transportation,Transportation +355866,Transportation,Transportation +157713,International Relations,International Relations +157712,International Relations,International Relations +157711,International Relations,International Relations +157710,International Relations,International Relations +157709,International Relations,International Relations +157708,International Relations,International Relations +157651,International Relations,International Relations +157638,International Relations,International Relations +157637,International Relations,International Relations +157632,International Relations,International Relations +157631,International Relations,International Relations +157630,International Relations,International Relations +158242,International Relations,International Relations +158241,International Relations,International Relations +158240,International Relations,International Relations +158239,International Relations,International Relations +158236,International Relations,International Relations +158234,International Relations,International Relations +158232,International Relations,International Relations +158231,International Relations,International Relations +158231,Mining,Mining +158229,Mining,Mining +157713,Mining,Mining +157712,Mining,Mining +157711,Mining,Mining +157710,Mining,Mining +157709,Mining,Mining +157708,Mining,Mining +157651,Mining,Mining +157638,Mining,Mining +157637,Mining,Mining +157632,Mining,Mining +157631,Mining,Mining +157630,Mining,Mining +158242,Mining,Mining +158241,Mining,Mining +158240,Mining,Mining +158239,Mining,Mining +158236,Mining,Mining +158234,Mining,Mining +157654,International Relations,International Relations +157654,Mining,Mining +365522,Defence,Defence +429438,Defence,Defence +266990,Research and Development,Research and Development (R&D) +266989,Research and Development,Research and Development (R&D) +193506,Research and Development,Research and Development (R&D) +190370,Research and Development,Research and Development (R&D) +188804,Research and Development,Research and Development (R&D) +185124,Research and Development,Research and Development (R&D) +174507,Research and Development,Research and Development (R&D) +174506,Research and Development,Research and Development (R&D) +174505,Research and Development,Research and Development (R&D) +174504,Research and Development,Research and Development (R&D) +172075,Research and Development,Research and Development (R&D) +172074,Research and Development,Research and Development (R&D) +171605,Research and Development,Research and Development (R&D) +171468,Research and Development,Research and Development (R&D) +167283,Research and Development,Research and Development (R&D) +167282,Research and Development,Research and Development (R&D) +163531,Research and Development,Research and Development (R&D) +159674,Research and Development,Research and Development (R&D) +159666,Research and Development,Research and Development (R&D) +158212,Research and Development,Research and Development (R&D) +235829,Research and Development,Research and Development (R&D) +233929,Research and Development,Research and Development (R&D) +213087,Research and Development,Research and Development (R&D) +198488,International Trade,International Trade +157528,International Trade,International Trade +209307,International Trade,International Trade +205567,International Trade,International Trade +204287,International Trade,International Trade +157529,International Trade,International Trade +254851,International Trade,International Trade +223239,International Trade,International Trade +223234,International Trade,International Trade +205213,International Trade,International Trade +205212,International Trade,International Trade +195489,International Trade,International Trade +185529,International Trade,International Trade +157531,International Trade,International Trade +245673,International Trade,International Trade +223237,International Trade,International Trade +223232,International Trade,International Trade +219587,International Trade,International Trade +213388,International Trade,International Trade +195469,International Trade,International Trade +190305,International Trade,International Trade +157532,International Trade,International Trade +213387,International Trade,International Trade +169304,Health,Health +399574,Infrastructure,Infrastructure +501744,Infrastructure,Infrastructure +252880,Infrastructure,Infrastructure +252879,Infrastructure,Infrastructure +252878,Infrastructure,Infrastructure +252877,Infrastructure,Infrastructure +252872,Infrastructure,Infrastructure +193539,Infrastructure,Infrastructure +193538,Infrastructure,Infrastructure +193537,Infrastructure,Infrastructure +193536,Infrastructure,Infrastructure +193531,Infrastructure,Infrastructure +157600,Infrastructure,Infrastructure +353467,Infrastructure,Infrastructure +353465,Infrastructure,Infrastructure +353464,Infrastructure,Infrastructure +353461,Infrastructure,Infrastructure +353459,Infrastructure,Infrastructure +353419,Infrastructure,Infrastructure +353417,Infrastructure,Infrastructure +353414,Infrastructure,Infrastructure +342260,Infrastructure,Infrastructure +342258,Infrastructure,Infrastructure +418888,Infrastructure,Infrastructure +166019,Education,Education +166015,Education,Education +160510,Education,Education +160509,Education,Education +160506,Education,Education +273430,Education,Education +273429,Education,Education +195023,Education,Education +175615,Education,Education +172084,Education,Education +170766,Education,Education +243149,Economic Development,Economic Development +157769,Economic Development,Economic Development +243149,Infrastructure,Infrastructure +224898,International Development,International Development +224893,International Development,International Development +267149,Official Languages,Langues officielles +360822,Official Languages,Langues officielles +175746,Official Languages,Langues officielles +175744,Official Languages,Langues officielles +169645,Official Languages,Langues officielles +350141,Official Languages,Langues officielles +321249,Official Languages,Langues officielles +299109,Official Languages,Langues officielles +293829,Official Languages,Langues officielles +158587,Budget,Budget +162630,Taxation and Finance,Impôts et finances +162629,Taxation and Finance,Impôts et finances +162628,Taxation and Finance,Impôts et finances +158588,Taxation and Finance,Impôts et finances +162628,Financial Institutions,Institutions financières +158588,Financial Institutions,Institutions financières +158587,Financial Institutions,Institutions financières +165754,Financial Institutions,Institutions financières +165751,Financial Institutions,Institutions financières +165750,Financial Institutions,Institutions financières +165748,Financial Institutions,Institutions financières +162630,Financial Institutions,Institutions financières +158587,Housing,Logement +161203,International Trade,International Trade +161968,Industry,Industry +161965,Industry,Industry +183964,Industry,Industry +174773,Industry,Industry +174772,Industry,Industry +161968,Intellectual Property,Intellectual Property +161965,Intellectual Property,Intellectual Property +183964,Intellectual Property,Intellectual Property +174773,Intellectual Property,Intellectual Property +174772,Intellectual Property,Intellectual Property +373507,Taxation and Finance,Taxation and Finance +373506,Taxation and Finance,Taxation and Finance +381533,Taxation and Finance,Taxation and Finance +381531,Taxation and Finance,Taxation and Finance +381529,Taxation and Finance,Taxation and Finance +381523,Taxation and Finance,Taxation and Finance +381517,Taxation and Finance,Taxation and Finance +381515,Taxation and Finance,Taxation and Finance +381514,Taxation and Finance,Taxation and Finance +381513,Taxation and Finance,Taxation and Finance +381494,Taxation and Finance,Taxation and Finance +375609,Taxation and Finance,Taxation and Finance +375608,Taxation and Finance,Taxation and Finance +375605,Taxation and Finance,Taxation and Finance +375587,Taxation and Finance,Taxation and Finance +375586,Taxation and Finance,Taxation and Finance +209367,Industry,Industry +209327,Industry,Industry +159288,Industry,Industry +182684,Industry,Industry +176626,Industry,Industry +176624,Industry,Industry +170170,Industry,Industry +170169,Industry,Industry +170168,Industry,Industry +170167,Industry,Industry +170166,Industry,Industry +170165,Industry,Industry +170164,Industry,Industry +170163,Industry,Industry +170162,Industry,Industry +170161,Industry,Industry +170160,Industry,Industry +170159,Industry,Industry +170158,Industry,Industry +170157,Industry,Industry +170156,Industry,Industry +170155,Industry,Industry +169865,Industry,Industry +165917,Industry,Industry +159495,Industry,Industry +159441,Industry,Industry +159440,Industry,Industry +159439,Industry,Industry +162924,Research and Development,Research and Development (R&D) +167512,Industry,Industry +167510,Industry,Industry +211453,Industry,Industry +211452,Industry,Industry +211451,Industry,Industry +211450,Industry,Industry +188670,Industry,Industry +188668,Industry,Industry +188667,Industry,Industry +188664,Industry,Industry +160145,Industry,Industry +160144,Industry,Industry +160134,Industry,Industry +160133,Industry,Industry +162368,Environment,Environment +162342,Environment,Environment +162426,Environment,Environment +162390,Transportation,Transportation +162368,Transportation,Transportation +159692,Budget,Budget +159691,Budget,Budget +163859,Budget,Budget +162508,Budget,Budget +162505,Budget,Budget +162500,Budget,Budget +162494,Budget,Budget +162488,Budget,Budget +159704,Budget,Budget +159702,Budget,Budget +159701,Budget,Budget +159698,Budget,Budget +159697,Budget,Budget +159695,Budget,Budget +162508,Economic Development,Economic Development +162505,Economic Development,Economic Development +162500,Economic Development,Economic Development +162494,Economic Development,Economic Development +162488,Economic Development,Economic Development +159704,Economic Development,Economic Development +159702,Economic Development,Economic Development +159701,Economic Development,Economic Development +159698,Economic Development,Economic Development +159697,Economic Development,Economic Development +159695,Economic Development,Economic Development +159694,Economic Development,Economic Development +159692,Economic Development,Economic Development +159691,Economic Development,Economic Development +159692,Energy,Energy +159691,Energy,Energy +163859,Energy,Energy +162508,Energy,Energy +162505,Energy,Energy +162500,Energy,Energy +162494,Energy,Energy +162488,Energy,Energy +159704,Energy,Energy +159702,Energy,Energy +159701,Energy,Energy +159698,Energy,Energy +159697,Energy,Energy +159695,Energy,Energy +159692,Environment,Environment +159691,Environment,Environment +163859,Environment,Environment +162508,Environment,Environment +162505,Environment,Environment +162500,Environment,Environment +162494,Environment,Environment +162488,Environment,Environment +159704,Environment,Environment +159702,Environment,Environment +159701,Environment,Environment +159698,Environment,Environment +159697,Environment,Environment +159695,Environment,Environment +162500,Taxation and Finance,Taxation and Finance +162494,Taxation and Finance,Taxation and Finance +162488,Taxation and Finance,Taxation and Finance +159704,Taxation and Finance,Taxation and Finance +159702,Taxation and Finance,Taxation and Finance +159701,Taxation and Finance,Taxation and Finance +159698,Taxation and Finance,Taxation and Finance +159697,Taxation and Finance,Taxation and Finance +159695,Taxation and Finance,Taxation and Finance +159694,Taxation and Finance,Taxation and Finance +159692,Taxation and Finance,Taxation and Finance +159691,Taxation and Finance,Taxation and Finance +163859,Taxation and Finance,Taxation and Finance +162508,Taxation and Finance,Taxation and Finance +162508,Transportation,Transportation +162505,Transportation,Transportation +162500,Transportation,Transportation +162494,Transportation,Transportation +162488,Transportation,Transportation +159704,Transportation,Transportation +159702,Transportation,Transportation +159701,Transportation,Transportation +159698,Transportation,Transportation +159697,Transportation,Transportation +159695,Transportation,Transportation +159694,Transportation,Transportation +159692,Transportation,Transportation +159691,Transportation,Transportation +211995,Industry,Industry +207438,Industry,Industry +437557,Intellectual Property,Intellectual Property +418471,Intellectual Property,Intellectual Property +166608,Intellectual Property,Intellectual Property +166607,Intellectual Property,Intellectual Property +160403,Intellectual Property,Intellectual Property +160402,Intellectual Property,Intellectual Property +160401,Intellectual Property,Intellectual Property +160400,Intellectual Property,Intellectual Property +252609,Economic Development,Economic Development +227296,Economic Development,Economic Development +172906,Economic Development,Economic Development +172905,Economic Development,Economic Development +172904,Economic Development,Economic Development +170466,Economic Development,Economic Development +170447,Economic Development,Economic Development +170446,Economic Development,Economic Development +170445,Economic Development,Economic Development +170442,Economic Development,Economic Development +158608,Economic Development,Economic Development +158435,Economic Development,Economic Development +158434,Economic Development,Economic Development +158433,Economic Development,Economic Development +158432,Economic Development,Economic Development +158410,Economic Development,Economic Development +158409,Economic Development,Economic Development +158379,Economic Development,Economic Development +252710,Economic Development,Economic Development +252694,Economic Development,Economic Development +252693,Economic Development,Economic Development +252691,Economic Development,Economic Development +252688,Economic Development,Economic Development +252674,Economic Development,Economic Development +536718,Research and Development,Research and Development (R&D) +525047,Research and Development,Research and Development (R&D) +280232,Research and Development,Research and Development (R&D) +264329,Research and Development,Research and Development (R&D) +253369,Research and Development,Research and Development (R&D) +243478,Research and Development,Research and Development (R&D) +243475,Research and Development,Research and Development (R&D) +240573,Research and Development,Research and Development (R&D) +221368,Research and Development,Research and Development (R&D) +216288,Research and Development,Research and Development (R&D) +209967,Research and Development,Research and Development (R&D) +207613,Research and Development,Research and Development (R&D) +192500,Research and Development,Research and Development (R&D) +192499,Research and Development,Research and Development (R&D) +175393,Research and Development,Research and Development (R&D) +175391,Research and Development,Research and Development (R&D) +175388,Research and Development,Research and Development (R&D) +158408,Research and Development,Research and Development (R&D) +503591,Research and Development,Research and Development (R&D) +503589,Research and Development,Research and Development (R&D) +497406,Research and Development,Research and Development (R&D) +471620,Research and Development,Research and Development (R&D) +424781,Research and Development,Research and Development (R&D) +411348,Research and Development,Research and Development (R&D) +365033,Research and Development,Research and Development (R&D) +362343,Research and Development,Research and Development (R&D) +359982,Research and Development,Research and Development (R&D) +355720,Research and Development,Research and Development (R&D) +353383,Research and Development,Research and Development (R&D) +349282,Research and Development,Research and Development (R&D) +343461,Research and Development,Research and Development (R&D) +340455,Research and Development,Research and Development (R&D) +335534,Research and Development,Research and Development (R&D) +312369,Research and Development,Research and Development (R&D) +312349,Research and Development,Research and Development (R&D) +309596,Research and Development,Research and Development (R&D) +545295,Research and Development,Research and Development (R&D) +503587,Research and Development,Research and Development (R&D) +496164,Research and Development,Research and Development (R&D) +207633,Research and Development,Research and Development (R&D) +207616,Research and Development,Research and Development (R&D) +192501,Research and Development,Research and Development (R&D) +175395,Research and Development,Research and Development (R&D) +175377,Research and Development,Research and Development (R&D) +175310,Research and Development,Research and Development (R&D) +158436,Research and Development,Research and Development (R&D) +365034,Research and Development,Research and Development (R&D) +365032,Research and Development,Research and Development (R&D) +360974,Research and Development,Research and Development (R&D) +356227,Research and Development,Research and Development (R&D) +347368,Research and Development,Research and Development (R&D) +340456,Research and Development,Research and Development (R&D) +333211,Research and Development,Research and Development (R&D) +330707,Research and Development,Research and Development (R&D) +304351,Research and Development,Research and Development (R&D) +297349,Research and Development,Research and Development (R&D) +284871,Research and Development,Research and Development (R&D) +284870,Research and Development,Research and Development (R&D) +271849,Research and Development,Research and Development (R&D) +267230,Research and Development,Research and Development (R&D) +264332,Research and Development,Research and Development (R&D) +264331,Research and Development,Research and Development (R&D) +243473,Research and Development,Research and Development (R&D) +240590,Research and Development,Research and Development (R&D) +226669,Research and Development,Research and Development (R&D) +453004,Research and Development,Research and Development (R&D) +452977,Research and Development,Research and Development (R&D) +441967,Research and Development,Research and Development (R&D) +411349,Research and Development,Research and Development (R&D) +401162,Research and Development,Research and Development (R&D) +388479,Research and Development,Research and Development (R&D) +545294,Research and Development,Research and Development (R&D) +533428,Research and Development,Research and Development (R&D) +533427,Research and Development,Research and Development (R&D) +515113,Research and Development,Research and Development (R&D) +160129,Intellectual Property,Intellectual Property +426782,Intellectual Property,Intellectual Property +209227,Intellectual Property,Intellectual Property +197217,Intellectual Property,Intellectual Property +190868,Intellectual Property,Intellectual Property +188691,Intellectual Property,Intellectual Property +443188,Budget,Budget +443187,Budget,Budget +277504,Budget,Budget +459802,Budget,Budget +520032,Climate,Climate +518150,Climate,Climate +413687,Climate,Climate +413685,Climate,Climate +413683,Climate,Climate +413678,Climate,Climate +410237,Climate,Climate +408207,Climate,Climate +406879,Climate,Climate +392554,Climate,Climate +381711,Climate,Climate +304492,Climate,Climate +304491,Climate,Climate +515732,Climate,Climate +502887,Climate,Climate +482241,Climate,Climate +482239,Climate,Climate +482237,Climate,Climate +482234,Climate,Climate +478189,Climate,Climate +469399,Climate,Climate +468391,Climate,Climate +468370,Climate,Climate +468369,Climate,Climate +465088,Climate,Climate +465087,Climate,Climate +461577,Climate,Climate +452964,Climate,Climate +452963,Climate,Climate +452961,Climate,Climate +452952,Climate,Climate +452949,Climate,Climate +452948,Climate,Climate +452946,Climate,Climate +452944,Climate,Climate +452942,Climate,Climate +452940,Climate,Climate +452939,Climate,Climate +452937,Climate,Climate +452936,Climate,Climate +452934,Climate,Climate +452932,Climate,Climate +452929,Climate,Climate +452927,Climate,Climate +452926,Climate,Climate +448006,Climate,Climate +448002,Climate,Climate +447997,Climate,Climate +447992,Climate,Climate +439210,Climate,Climate +439183,Climate,Climate +435876,Climate,Climate +541893,Climate,Climate +540288,Climate,Climate +532280,Climate,Climate +526270,Climate,Climate +520045,Climate,Climate +520043,Climate,Climate +518147,Economic Development,Economic Development +518143,Economic Development,Economic Development +175600,Economic Development,Economic Development +194985,Economic Development,Economic Development +194978,Economic Development,Economic Development +194975,Economic Development,Economic Development +194974,Economic Development,Economic Development +194972,Economic Development,Economic Development +194970,Economic Development,Economic Development +194966,Economic Development,Economic Development +194964,Economic Development,Economic Development +194957,Economic Development,Economic Development +194954,Economic Development,Economic Development +194952,Economic Development,Economic Development +194951,Economic Development,Economic Development +194949,Economic Development,Economic Development +194946,Economic Development,Economic Development +194944,Economic Development,Economic Development +194940,Economic Development,Economic Development +194937,Economic Development,Economic Development +194935,Economic Development,Economic Development +190274,Economic Development,Economic Development +190273,Economic Development,Economic Development +410236,Economic Development,Economic Development +410188,Economic Development,Economic Development +406884,Economic Development,Economic Development +392552,Economic Development,Economic Development +388313,Economic Development,Economic Development +388309,Economic Development,Economic Development +304697,Economic Development,Economic Development +304696,Economic Development,Economic Development +304694,Economic Development,Economic Development +304691,Economic Development,Economic Development +304690,Economic Development,Economic Development +296849,Economic Development,Economic Development +518131,Economic Development,Economic Development +495807,Economic Development,Economic Development +485222,Economic Development,Economic Development +479917,Economic Development,Economic Development +479914,Economic Development,Economic Development +478189,Economic Development,Economic Development +475823,Economic Development,Economic Development +475818,Economic Development,Economic Development +475811,Economic Development,Economic Development +475809,Economic Development,Economic Development +473147,Economic Development,Economic Development +473137,Economic Development,Economic Development +473135,Economic Development,Economic Development +473124,Economic Development,Economic Development +473117,Economic Development,Economic Development +473115,Economic Development,Economic Development +469407,Economic Development,Economic Development +469404,Economic Development,Economic Development +469400,Economic Development,Economic Development +468392,Economic Development,Economic Development +468389,Economic Development,Economic Development +468387,Economic Development,Economic Development +468380,Economic Development,Economic Development +465089,Economic Development,Economic Development +460225,Economic Development,Economic Development +459802,Economic Development,Economic Development +459634,Economic Development,Economic Development +458630,Economic Development,Economic Development +458629,Economic Development,Economic Development +448005,Economic Development,Economic Development +447981,Economic Development,Economic Development +445733,Economic Development,Economic Development +443188,Economic Development,Economic Development +443187,Economic Development,Economic Development +442193,Economic Development,Economic Development +432577,Economic Development,Economic Development +426703,Economic Development,Economic Development +421877,Economic Development,Economic Development +538174,Economic Development,Economic Development +538170,Economic Development,Economic Development +535621,Economic Development,Economic Development +526267,Economic Development,Economic Development +523119,Economic Development,Economic Development +523117,Economic Development,Economic Development +523107,Economic Development,Economic Development +520045,Economic Development,Economic Development +520043,Economic Development,Economic Development +520041,Economic Development,Economic Development +520032,Economic Development,Economic Development +226418,Health,Health +197027,Health,Health +249171,Health,Health +249170,Health,Health +226418,Pensions,Pensions +265530,Economic Development,Economic Development +202716,Economic Development,Economic Development +202715,Economic Development,Economic Development +201227,Economic Development,Economic Development +167115,Economic Development,Economic Development +160068,Economic Development,Economic Development +272356,Economic Development,Economic Development +272354,Economic Development,Economic Development +267969,Economic Development,Economic Development +266709,Economic Development,Economic Development +303849,International Development,International Development +261774,International Development,International Development +243049,International Development,International Development +380248,Environment,Environment +378234,Environment,Environment +166514,Environment,Environment +444252,Environment,Environment +439746,Environment,Environment +435705,Environment,Environment +432786,Environment,Environment +430284,Environment,Environment +430208,Environment,Environment +427097,Environment,Environment +426985,Environment,Environment +425959,Environment,Environment +425958,Environment,Environment +423229,Environment,Environment +422778,Environment,Environment +421761,Environment,Environment +420775,Environment,Environment +414891,Environment,Environment +413945,Environment,Environment +413944,Environment,Environment +401691,Environment,Environment +398126,Environment,Environment +397878,Environment,Environment +395755,Environment,Environment +393106,Environment,Environment +392967,Environment,Environment +392966,Environment,Environment +392960,Environment,Environment +391908,Environment,Environment +384398,Environment,Environment +163773,International Relations,International Relations +163770,International Relations,International Relations +202843,International Relations,International Relations +193484,International Relations,International Relations +175287,International Relations,International Relations +175286,International Relations,International Relations +273732,Economic Development,Economic Development +479764,Economic Development,Economic Development +273732,Forestry,Forestry +479764,Forestry,Forestry +273732,Research and Development,Research and Development (R&D) +479764,Research and Development,Research and Development (R&D) +355798,Pensions,Pensions +447720,Pensions,Pensions +158926,Pensions,Pensions +394173,Pensions,Pensions +394170,Pensions,Pensions +394157,Pensions,Pensions +394145,Pensions,Pensions +375525,Taxation and Finance,Taxation and Finance +375522,Taxation and Finance,Taxation and Finance +176784,Taxation and Finance,Taxation and Finance +197440,Taxation and Finance,Taxation and Finance +197439,Taxation and Finance,Taxation and Finance +197437,Taxation and Finance,Taxation and Finance +446974,Taxation and Finance,Taxation and Finance +446973,Taxation and Finance,Taxation and Finance +421969,Taxation and Finance,Taxation and Finance +416705,Taxation and Finance,Taxation and Finance +416701,Taxation and Finance,Taxation and Finance +410314,Taxation and Finance,Taxation and Finance +401923,Taxation and Finance,Taxation and Finance +395289,Taxation and Finance,Taxation and Finance +395287,Taxation and Finance,Taxation and Finance +395285,Taxation and Finance,Taxation and Finance +395283,Taxation and Finance,Taxation and Finance +380563,Taxation and Finance,Taxation and Finance +380562,Taxation and Finance,Taxation and Finance +380561,Taxation and Finance,Taxation and Finance +380560,Taxation and Finance,Taxation and Finance +380559,Taxation and Finance,Taxation and Finance +380558,Taxation and Finance,Taxation and Finance +380557,Taxation and Finance,Taxation and Finance +380556,Taxation and Finance,Taxation and Finance +380555,Taxation and Finance,Taxation and Finance +380554,Taxation and Finance,Taxation and Finance +201207,Economic Development,Economic Development +202695,Economic Development,Economic Development +159053,Economic Development,Economic Development +202698,Economic Development,Economic Development +369134,Research and Development,Research and Development (R&D) +461747,Research and Development,Research and Development (R&D) +316580,Research and Development,Research and Development (R&D) +316574,Research and Development,Research and Development (R&D) +223450,Research and Development,Research and Development (R&D) +197342,Research and Development,Research and Development (R&D) +197339,Research and Development,Research and Development (R&D) +197329,Research and Development,Research and Development (R&D) +167355,Research and Development,Research and Development (R&D) +163349,Research and Development,Research and Development (R&D) +159086,Research and Development,Research and Development (R&D) +413567,Research and Development,Research and Development (R&D) +413478,Research and Development,Research and Development (R&D) +389071,Research and Development,Research and Development (R&D) +383358,Research and Development,Research and Development (R&D) +383356,Research and Development,Research and Development (R&D) +197337,Research and Development,Research and Development (R&D) +197333,Research and Development,Research and Development (R&D) +175112,Research and Development,Research and Development (R&D) +167356,Research and Development,Research and Development (R&D) +159088,Research and Development,Research and Development (R&D) +413608,Research and Development,Research and Development (R&D) +413551,Research and Development,Research and Development (R&D) +413488,Research and Development,Research and Development (R&D) +413466,Research and Development,Research and Development (R&D) +413460,Research and Development,Research and Development (R&D) +389073,Research and Development,Research and Development (R&D) +389068,Research and Development,Research and Development (R&D) +383359,Research and Development,Research and Development (R&D) +379206,Research and Development,Research and Development (R&D) +378859,Research and Development,Research and Development (R&D) +369136,Research and Development,Research and Development (R&D) +210492,Defence,Defence +192960,Defence,Defence +159133,Defence,Defence +372891,Defence,Defence +337644,Defence,Defence +337642,Defence,Defence +337640,Defence,Defence +337639,Defence,Defence +337634,Defence,Defence +320606,Defence,Defence +320573,Defence,Defence +197140,Labour,Labour +197139,Labour,Labour +196845,Labour,Labour +196844,Labour,Labour +196843,Labour,Labour +196842,Labour,Labour +196841,Labour,Labour +196839,Labour,Labour +196838,Labour,Labour +196836,Labour,Labour +196834,Labour,Labour +197136,Labour,Labour +196882,Labour,Labour +196881,Labour,Labour +196880,Labour,Labour +196879,Labour,Labour +196878,Labour,Labour +196877,Labour,Labour +196876,Labour,Labour +196875,Labour,Labour +196874,Labour,Labour +196873,Labour,Labour +196872,Labour,Labour +196871,Labour,Labour +196870,Labour,Labour +196865,Labour,Labour +196864,Labour,Labour +196863,Labour,Labour +196862,Labour,Labour +196860,Labour,Labour +196859,Labour,Labour +196858,Labour,Labour +196856,Labour,Labour +196855,Labour,Labour +196854,Labour,Labour +196853,Labour,Labour +196852,Labour,Labour +196851,Labour,Labour +196850,Labour,Labour +196849,Labour,Labour +196847,Labour,Labour +196846,Labour,Labour +244013,Labour,Labour +244009,Labour,Labour +243307,Labour,Labour +243304,Labour,Labour +243303,Labour,Labour +243302,Labour,Labour +243301,Labour,Labour +243300,Labour,Labour +243299,Labour,Labour +243298,Labour,Labour +243297,Labour,Labour +243296,Labour,Labour +243295,Labour,Labour +243294,Labour,Labour +243293,Labour,Labour +243292,Labour,Labour +243290,Labour,Labour +243289,Labour,Labour +243217,Labour,Labour +243216,Labour,Labour +243215,Labour,Labour +243214,Labour,Labour +243213,Labour,Labour +243212,Labour,Labour +243211,Labour,Labour +243210,Labour,Labour +243209,Labour,Labour +243208,Labour,Labour +243207,Labour,Labour +243206,Labour,Labour +243205,Labour,Labour +209829,Labour,Labour +418526,Taxation and Finance,Taxation and Finance +417798,Taxation and Finance,Taxation and Finance +409087,Taxation and Finance,Taxation and Finance +392094,Taxation and Finance,Taxation and Finance +392093,Taxation and Finance,Taxation and Finance +392092,Taxation and Finance,Taxation and Finance +192954,Taxation and Finance,Taxation and Finance +170086,Taxation and Finance,Taxation and Finance +164645,Taxation and Finance,Taxation and Finance +159138,Taxation and Finance,Taxation and Finance +530724,Taxation and Finance,Taxation and Finance +524169,Taxation and Finance,Taxation and Finance +524165,Taxation and Finance,Taxation and Finance +524163,Taxation and Finance,Taxation and Finance +520951,Taxation and Finance,Taxation and Finance +520948,Taxation and Finance,Taxation and Finance +516071,Taxation and Finance,Taxation and Finance +509120,Taxation and Finance,Taxation and Finance +500178,Taxation and Finance,Taxation and Finance +496774,Taxation and Finance,Taxation and Finance +493108,Taxation and Finance,Taxation and Finance +493022,Taxation and Finance,Taxation and Finance +444522,Taxation and Finance,Taxation and Finance +444460,Taxation and Finance,Taxation and Finance +444459,Taxation and Finance,Taxation and Finance +419077,Taxation and Finance,Taxation and Finance +300898,Defence,Defence +300893,Defence,Defence +159139,Defence,Defence +372865,Defence,Defence +337646,Defence,Defence +337643,Defence,Defence +337638,Defence,Defence +337636,Defence,Defence +337635,Defence,Defence +337632,Defence,Defence +334396,Defence,Defence +334395,Defence,Defence +372872,Defence,Defence +372867,Defence,Defence +159143,Defence,Defence +337633,Defence,Defence +168394,Defence,Defence +164645,Defence,Defence +160814,Defence,Defence +372878,Defence,Defence +424699,Defence,Defence +161704,Defence,Defence +159147,Defence,Defence +300904,Defence,Defence +424698,Defence,Defence +424697,Defence,Defence +245770,Defence,Defence +161705,Defence,Defence +372893,Defence,Defence +372871,Defence,Defence +337645,Defence,Defence +320614,Defence,Defence +320612,Defence,Defence +493093,Taxation and Finance,Taxation and Finance +493021,Taxation and Finance,Taxation and Finance +192952,Taxation and Finance,Taxation and Finance +444526,Taxation and Finance,Taxation and Finance +444524,Taxation and Finance,Taxation and Finance +444519,Taxation and Finance,Taxation and Finance +444518,Taxation and Finance,Taxation and Finance +419085,Taxation and Finance,Taxation and Finance +419083,Taxation and Finance,Taxation and Finance +419080,Taxation and Finance,Taxation and Finance +419072,Taxation and Finance,Taxation and Finance +409086,Taxation and Finance,Taxation and Finance +392097,Taxation and Finance,Taxation and Finance +392095,Taxation and Finance,Taxation and Finance +372868,Taxation and Finance,Taxation and Finance +372846,Taxation and Finance,Taxation and Finance +300903,Taxation and Finance,Taxation and Finance +532539,Taxation and Finance,Taxation and Finance +526848,Taxation and Finance,Taxation and Finance +525142,Taxation and Finance,Taxation and Finance +524199,Taxation and Finance,Taxation and Finance +520952,Taxation and Finance,Taxation and Finance +520949,Taxation and Finance,Taxation and Finance +493114,Taxation and Finance,Taxation and Finance +493105,Taxation and Finance,Taxation and Finance +162312,International Relations,International Relations +162285,International Relations,International Relations +175434,International Relations,International Relations +175433,International Relations,International Relations +175432,International Relations,International Relations +173600,International Relations,International Relations +173594,International Relations,International Relations +171065,International Relations,International Relations +171059,International Relations,International Relations +394997,Tourism,Tourism +394994,Tourism,Tourism +315491,Tourism,Tourism +276449,Tourism,Tourism +272776,Tourism,Tourism +258272,Tourism,Tourism +258271,Tourism,Tourism +382222,Tourism,Tourism +380681,Tourism,Tourism +380678,Tourism,Tourism +380677,Tourism,Tourism +380674,Tourism,Tourism +380672,Tourism,Tourism +377926,Tourism,Tourism +377924,Tourism,Tourism +377923,Tourism,Tourism +377921,Tourism,Tourism +415200,Tourism,Tourism +406153,Tourism,Tourism +401961,Tourism,Tourism +401960,Tourism,Tourism +397951,Tourism,Tourism +397950,Tourism,Tourism +528207,Labour,Labour +517699,Labour,Labour +159232,Labour,Labour +344757,Labour,Labour +222831,Labour,Labour +426112,Labour,Labour +484046,Budget,Budget +480753,Budget,Budget +295189,Budget,Budget +159235,Budget,Budget +391938,Budget,Budget +372474,Budget,Budget +372471,Budget,Budget +372470,Budget,Budget +368402,Budget,Budget +368401,Budget,Budget +357146,Budget,Budget +350662,Budget,Budget +350661,Budget,Budget +341166,Budget,Budget +341164,Budget,Budget +339811,Budget,Budget +337269,Budget,Budget +337267,Budget,Budget +337266,Budget,Budget +337265,Budget,Budget +337264,Budget,Budget +337263,Budget,Budget +329682,Budget,Budget +329681,Budget,Budget +329680,Budget,Budget +329677,Budget,Budget +329674,Budget,Budget +318309,Budget,Budget +309619,Budget,Budget +309617,Budget,Budget +469325,Budget,Budget +466806,Budget,Budget +466805,Budget,Budget +466802,Budget,Budget +462486,Budget,Budget +462128,Budget,Budget +450877,Budget,Budget +447036,Budget,Budget +446388,Budget,Budget +446386,Budget,Budget +442878,Budget,Budget +442877,Budget,Budget +437732,Budget,Budget +434233,Budget,Budget +414614,Budget,Budget +524818,Budget,Budget +515069,Budget,Budget +503448,Budget,Budget +498205,Budget,Budget +493503,Budget,Budget +488956,Budget,Budget +321049,Intellectual Property,Intellectual Property +440415,Intellectual Property,Intellectual Property +162193,Intellectual Property,Intellectual Property +162191,Intellectual Property,Intellectual Property +162186,Intellectual Property,Intellectual Property +159417,Intellectual Property,Intellectual Property +159415,Intellectual Property,Intellectual Property +159411,Intellectual Property,Intellectual Property +226547,Intellectual Property,Intellectual Property +226544,Intellectual Property,Intellectual Property +204747,Intellectual Property,Intellectual Property +199724,Intellectual Property,Intellectual Property +199723,Intellectual Property,Intellectual Property +193335,Intellectual Property,Intellectual Property +193331,Intellectual Property,Intellectual Property +190269,Intellectual Property,Intellectual Property +190266,Intellectual Property,Intellectual Property +168046,Intellectual Property,Intellectual Property +168045,Intellectual Property,Intellectual Property +168043,Intellectual Property,Intellectual Property +168042,Intellectual Property,Intellectual Property +168040,Intellectual Property,Intellectual Property +163941,Intellectual Property,Intellectual Property +163919,Intellectual Property,Intellectual Property +163916,Intellectual Property,Intellectual Property +207588,Economic Development,Economic Development +207586,Economic Development,Economic Development +207583,Economic Development,Economic Development +199572,Economic Development,Economic Development +189766,Economic Development,Economic Development +268969,Economic Development,Economic Development +250042,Economic Development,Economic Development +250035,Economic Development,Economic Development +199592,Employment and Training,Employment and Training +199590,Employment and Training,Employment and Training +199581,Employment and Training,Employment and Training +199576,Employment and Training,Employment and Training +199575,Employment and Training,Employment and Training +199574,Employment and Training,Employment and Training +199572,Employment and Training,Employment and Training +189766,Employment and Training,Employment and Training +189764,Employment and Training,Employment and Training +250042,Employment and Training,Employment and Training +250032,Employment and Training,Employment and Training +250030,Employment and Training,Employment and Training +207588,Employment and Training,Employment and Training +207586,Employment and Training,Employment and Training +207583,Employment and Training,Employment and Training +199575,Environment,Environment +189764,Environment,Environment +161217,Environment,Environment +161208,Environment,Environment +199581,Infrastructure,Infrastructure +199576,Infrastructure,Infrastructure +189766,Infrastructure,Infrastructure +207586,Infrastructure,Infrastructure +250030,Mining,Mining +240917,Mining,Mining +170571,Mining,Mining +165931,Mining,Mining +161823,Mining,Mining +161217,Mining,Mining +161212,Mining,Mining +161211,Mining,Mining +161208,Mining,Mining +217529,Mining,Mining +207588,Mining,Mining +207586,Mining,Mining +207583,Mining,Mining +199609,Mining,Mining +199592,Mining,Mining +199590,Mining,Mining +199581,Mining,Mining +199576,Mining,Mining +199575,Mining,Mining +199574,Mining,Mining +199572,Mining,Mining +189766,Mining,Mining +189765,Mining,Mining +189764,Mining,Mining +170573,Mining,Mining +268969,Mining,Mining +250049,Mining,Mining +250035,Mining,Mining +176164,Pensions,Pensions +175706,Pensions,Pensions +161610,Pensions,Pensions +161609,Pensions,Pensions +168458,Pensions,Pensions +168451,Pensions,Pensions +165709,Pensions,Pensions +164343,Pensions,Pensions +164206,Pensions,Pensions +161629,Pensions,Pensions +161628,Pensions,Pensions +161627,Pensions,Pensions +161626,Pensions,Pensions +161624,Pensions,Pensions +161623,Pensions,Pensions +161622,Pensions,Pensions +161621,Pensions,Pensions +161620,Pensions,Pensions +161619,Pensions,Pensions +161618,Pensions,Pensions +161617,Pensions,Pensions +161616,Pensions,Pensions +161615,Pensions,Pensions +161614,Pensions,Pensions +161613,Pensions,Pensions +161612,Pensions,Pensions +161611,Pensions,Pensions +300831,Pensions,Pensions +458398,Budget,Budget +458397,Budget,Budget +159574,Budget,Budget +229101,Budget,Budget +229098,Budget,Budget +225614,Budget,Budget +222748,Budget,Budget +210648,Budget,Budget +210168,Budget,Budget +207375,Budget,Budget +207366,Budget,Budget +207362,Budget,Budget +205313,Budget,Budget +205311,Budget,Budget +205310,Budget,Budget +205270,Budget,Budget +205269,Budget,Budget +202247,Budget,Budget +188511,Budget,Budget +185665,Budget,Budget +170893,Budget,Budget +169067,Budget,Budget +169056,Budget,Budget +451723,Budget,Budget +449518,Budget,Budget +449517,Budget,Budget +449512,Budget,Budget +447464,Budget,Budget +447463,Budget,Budget +447459,Budget,Budget +444936,Budget,Budget +444934,Budget,Budget +443618,Budget,Budget +443613,Budget,Budget +443611,Budget,Budget +441301,Budget,Budget +441291,Budget,Budget +437824,Budget,Budget +437823,Budget,Budget +437818,Budget,Budget +437814,Budget,Budget +437794,Budget,Budget +437784,Budget,Budget +434820,Budget,Budget +434774,Budget,Budget +433497,Budget,Budget +432230,Budget,Budget +430941,Budget,Budget +430928,Budget,Budget +430905,Budget,Budget +428462,Budget,Budget +428442,Budget,Budget +428426,Budget,Budget +428424,Budget,Budget +424127,Budget,Budget +424106,Budget,Budget +421699,Budget,Budget +421692,Budget,Budget +419381,Budget,Budget +419375,Budget,Budget +415937,Budget,Budget +415927,Budget,Budget +415920,Budget,Budget +413578,Budget,Budget +413571,Budget,Budget +413560,Budget,Budget +413557,Budget,Budget +413531,Budget,Budget +413514,Budget,Budget +413125,Budget,Budget +409787,Budget,Budget +409773,Budget,Budget +409759,Budget,Budget +407850,Budget,Budget +403827,Budget,Budget +400900,Budget,Budget +398591,Budget,Budget +393912,Budget,Budget +390090,Budget,Budget +390086,Budget,Budget +390082,Budget,Budget +387604,Budget,Budget +387603,Budget,Budget +387595,Budget,Budget +374811,Budget,Budget +363524,Budget,Budget +353743,Budget,Budget +351219,Budget,Budget +350307,Budget,Budget +347272,Budget,Budget +343581,Budget,Budget +340181,Budget,Budget +340178,Budget,Budget +340174,Budget,Budget +333174,Budget,Budget +313012,Budget,Budget +312889,Budget,Budget +309592,Budget,Budget +309590,Budget,Budget +543614,Budget,Budget +539675,Budget,Budget +531364,Budget,Budget +531361,Budget,Budget +528644,Budget,Budget +528456,Budget,Budget +524882,Budget,Budget +521855,Budget,Budget +521845,Budget,Budget +521842,Budget,Budget +521825,Budget,Budget +521822,Budget,Budget +519306,Budget,Budget +519304,Budget,Budget +519300,Budget,Budget +517211,Budget,Budget +512643,Budget,Budget +510265,Budget,Budget +510260,Budget,Budget +494901,Budget,Budget +492729,Budget,Budget +489522,Budget,Budget +489473,Budget,Budget +483683,Budget,Budget +483680,Budget,Budget +483671,Budget,Budget +467923,Budget,Budget +441315,Economic Development,Economic Development +380902,Economic Development,Economic Development +173491,Economic Development,Economic Development +173489,Economic Development,Economic Development +159574,Economic Development,Economic Development +221788,Economic Development,Economic Development +211448,Economic Development,Economic Development +210572,Economic Development,Economic Development +210168,Economic Development,Economic Development +343584,Economic Development,Economic Development +483690,Economic Development,Economic Development +481283,Economic Development,Economic Development +467912,Economic Development,Economic Development +451709,Health,Health +449543,Health,Health +159581,Health,Health +205269,Health,Health +201927,Health,Health +441273,Health,Health +521851,Health,Health +521841,Health,Health +517181,Health,Health +515466,Health,Health +515452,Health,Health +513921,Health,Health +512629,Health,Health +510278,Health,Health +510261,Health,Health +507184,Health,Health +494904,Health,Health +481247,Health,Health +476857,Health,Health +476842,Health,Health +476837,Health,Health +476823,Health,Health +470348,Health,Health +470346,Health,Health +470341,Health,Health +470338,Health,Health +470335,Health,Health +459999,Health,Health +456883,Health,Health +430916,Budget,Budget +430913,Budget,Budget +205388,Budget,Budget +205318,Budget,Budget +205268,Budget,Budget +205267,Budget,Budget +205190,Budget,Budget +205189,Budget,Budget +205188,Budget,Budget +201947,Budget,Budget +193693,Budget,Budget +170879,Budget,Budget +166134,Budget,Budget +159587,Budget,Budget +236830,Budget,Budget +229102,Budget,Budget +229097,Budget,Budget +225867,Budget,Budget +225728,Budget,Budget +222750,Budget,Budget +216509,Budget,Budget +210568,Budget,Budget +210167,Budget,Budget +207357,Budget,Budget +368374,Budget,Budget +363523,Budget,Budget +353737,Budget,Budget +353730,Budget,Budget +351225,Budget,Budget +351208,Budget,Budget +350308,Budget,Budget +343585,Budget,Budget +340182,Budget,Budget +333172,Budget,Budget +312895,Budget,Budget +312893,Budget,Budget +309593,Budget,Budget +288690,Budget,Budget +428440,Budget,Budget +424096,Budget,Budget +424093,Budget,Budget +424087,Budget,Budget +421705,Budget,Budget +421698,Budget,Budget +421694,Budget,Budget +419361,Budget,Budget +419356,Budget,Budget +418053,Budget,Budget +418048,Budget,Budget +415946,Budget,Budget +415939,Budget,Budget +413555,Budget,Budget +413467,Budget,Budget +413205,Budget,Budget +409795,Budget,Budget +409783,Budget,Budget +409778,Budget,Budget +407851,Budget,Budget +406850,Budget,Budget +403792,Budget,Budget +400904,Budget,Budget +400898,Budget,Budget +398583,Budget,Budget +393906,Budget,Budget +390093,Budget,Budget +390088,Budget,Budget +387616,Budget,Budget +387582,Budget,Budget +385098,Budget,Budget +385086,Budget,Budget +382121,Budget,Budget +380992,Budget,Budget +543618,Budget,Budget +543615,Budget,Budget +541089,Budget,Budget +537144,Budget,Budget +531365,Budget,Budget +531363,Budget,Budget +528455,Budget,Budget +524867,Budget,Budget +521831,Budget,Budget +519308,Budget,Budget +517204,Budget,Budget +517202,Budget,Budget +517199,Budget,Budget +517188,Budget,Budget +517175,Budget,Budget +512660,Budget,Budget +512634,Budget,Budget +512631,Budget,Budget +507190,Budget,Budget +507189,Budget,Budget +507185,Budget,Budget +504297,Budget,Budget +494910,Budget,Budget +494904,Budget,Budget +492706,Budget,Budget +489497,Budget,Budget +489479,Budget,Budget +486824,Budget,Budget +483690,Budget,Budget +483684,Budget,Budget +467774,Budget,Budget +459998,Budget,Budget +459495,Budget,Budget +459494,Budget,Budget +451713,Budget,Budget +449538,Budget,Budget +449516,Budget,Budget +449515,Budget,Budget +447469,Budget,Budget +447468,Budget,Budget +444944,Budget,Budget +443615,Budget,Budget +443607,Budget,Budget +443596,Budget,Budget +441316,Budget,Budget +441286,Budget,Budget +441279,Budget,Budget +437826,Budget,Budget +437825,Budget,Budget +437816,Budget,Budget +437811,Budget,Budget +437806,Budget,Budget +437789,Budget,Budget +437782,Budget,Budget +437780,Budget,Budget +434796,Budget,Budget +434782,Budget,Budget +434773,Budget,Budget +433526,Budget,Budget +433498,Budget,Budget +433491,Budget,Budget +433490,Budget,Budget +433489,Budget,Budget +433480,Budget,Budget +430951,Budget,Budget +481278,Economic Development,Economic Development +479367,Economic Development,Economic Development +216027,Economic Development,Economic Development +210571,Economic Development,Economic Development +188513,Economic Development,Economic Development +188510,Economic Development,Economic Development +187028,Economic Development,Economic Development +166007,Economic Development,Economic Development +159587,Economic Development,Economic Development +467923,Economic Development,Economic Development +467899,Economic Development,Economic Development +430954,Economic Development,Economic Development +519305,Economic Development,Economic Development +510259,Economic Development,Economic Development +501458,Economic Development,Economic Development +498055,Economic Development,Economic Development +489515,Economic Development,Economic Development +467869,Economic Development,Economic Development +467848,Economic Development,Economic Development +159589,Economic Development,Economic Development +216508,Economic Development,Economic Development +210648,Economic Development,Economic Development +210647,Economic Development,Economic Development +207368,Economic Development,Economic Development +460444,Economic Development,Economic Development +380992,Economic Development,Economic Development +524878,Economic Development,Economic Development +521864,Economic Development,Economic Development +521863,Economic Development,Economic Development +521831,Economic Development,Economic Development +521828,Economic Development,Economic Development +515476,Economic Development,Economic Development +486776,Economic Development,Economic Development +481284,Economic Development,Economic Development +481248,Economic Development,Economic Development +174102,Taxation and Finance,Taxation and Finance +159601,Taxation and Finance,Taxation and Finance +207366,Taxation and Finance,Taxation and Finance +205388,Taxation and Finance,Taxation and Finance +515460,Health,Health +512624,Health,Health +188511,Health,Health +173488,Health,Health +159607,Health,Health +430951,Health,Health +501441,Health,Health +498256,Health,Health +483706,Health,Health +476830,Health,Health +475040,Health,Health +475034,Health,Health +475031,Health,Health +470353,Health,Health +470344,Health,Health +470337,Health,Health +449532,Health,Health +528448,Health,Health +524875,Health,Health +519302,Health,Health +519297,Health,Health +517191,Health,Health +169851,Energy,Energy +169850,Energy,Energy +169849,Energy,Energy +164053,Energy,Energy +161941,Energy,Energy +159725,Energy,Energy +159724,Energy,Energy +264171,Energy,Energy +259454,Energy,Energy +255149,Energy,Energy +254304,Energy,Energy +245349,Energy,Energy +230480,Energy,Energy +227024,Energy,Energy +227006,Energy,Energy +227002,Energy,Energy +218652,Energy,Energy +218650,Energy,Energy +218647,Energy,Energy +211839,Energy,Energy +211837,Energy,Energy +202523,Energy,Energy +202522,Energy,Energy +202521,Energy,Energy +200577,Energy,Energy +197375,Energy,Energy +196467,Energy,Energy +194729,Energy,Energy +194726,Energy,Energy +194723,Energy,Energy +185931,Energy,Energy +185923,Energy,Energy +175398,Energy,Energy +175396,Energy,Energy +175394,Energy,Energy +374982,Energy,Energy +374980,Energy,Energy +372746,Energy,Energy +369503,Energy,Energy +369502,Energy,Energy +366781,Energy,Energy +358244,Energy,Energy +356505,Energy,Energy +353289,Energy,Energy +353285,Energy,Energy +351569,Energy,Energy +351566,Energy,Energy +351565,Energy,Energy +351562,Energy,Energy +351560,Energy,Energy +349023,Energy,Energy +344074,Energy,Energy +344071,Energy,Energy +336269,Energy,Energy +331463,Energy,Energy +331462,Energy,Energy +330241,Energy,Energy +330239,Energy,Energy +328342,Energy,Energy +328155,Energy,Energy +328092,Energy,Energy +328091,Energy,Energy +328089,Energy,Energy +328002,Energy,Energy +328001,Energy,Energy +328000,Energy,Energy +327999,Energy,Energy +327998,Energy,Energy +327997,Energy,Energy +327996,Energy,Energy +327995,Energy,Energy +327990,Energy,Energy +287071,Energy,Energy +282949,Energy,Energy +448122,Energy,Energy +445829,Energy,Energy +445828,Energy,Energy +445827,Energy,Energy +443958,Energy,Energy +442092,Energy,Energy +442091,Energy,Energy +442090,Energy,Energy +442089,Energy,Energy +442088,Energy,Energy +442087,Energy,Energy +442085,Energy,Energy +442084,Energy,Energy +442082,Energy,Energy +442079,Energy,Energy +442076,Energy,Energy +442069,Energy,Energy +439579,Energy,Energy +439577,Energy,Energy +439573,Energy,Energy +439571,Energy,Energy +439569,Energy,Energy +439567,Energy,Energy +439566,Energy,Energy +439564,Energy,Energy +439562,Energy,Energy +435986,Energy,Energy +435984,Energy,Energy +435981,Energy,Energy +433838,Energy,Energy +433836,Energy,Energy +433833,Energy,Energy +432585,Energy,Energy +430757,Energy,Energy +430750,Energy,Energy +430744,Energy,Energy +430741,Energy,Energy +429294,Energy,Energy +429284,Energy,Energy +429273,Energy,Energy +429271,Energy,Energy +424315,Energy,Energy +424314,Energy,Energy +424313,Energy,Energy +420259,Energy,Energy +418312,Energy,Energy +418306,Energy,Energy +413739,Energy,Energy +413731,Energy,Energy +406923,Energy,Energy +406922,Energy,Energy +405498,Energy,Energy +405492,Energy,Energy +405490,Energy,Energy +405487,Energy,Energy +403992,Energy,Energy +403991,Energy,Energy +400893,Energy,Energy +396955,Energy,Energy +394593,Energy,Energy +392680,Energy,Energy +391768,Energy,Energy +391715,Energy,Energy +391714,Energy,Energy +391713,Energy,Energy +391712,Energy,Energy +385812,Energy,Energy +385809,Energy,Energy +383882,Energy,Energy +382625,Energy,Energy +382624,Energy,Energy +381544,Energy,Energy +381541,Energy,Energy +377224,Energy,Energy +543377,Energy,Energy +543376,Energy,Energy +543375,Energy,Energy +543374,Energy,Energy +543373,Energy,Energy +541311,Energy,Energy +541309,Energy,Energy +537835,Energy,Energy +537655,Energy,Energy +537652,Energy,Energy +537646,Energy,Energy +535157,Energy,Energy +535154,Energy,Energy +535151,Energy,Energy +535148,Energy,Energy +534714,Energy,Energy +531303,Energy,Energy +531302,Energy,Energy +528253,Energy,Energy +528248,Energy,Energy +524766,Energy,Energy +522344,Energy,Energy +522340,Energy,Energy +519787,Energy,Energy +519781,Energy,Energy +519770,Energy,Energy +517240,Energy,Energy +517238,Energy,Energy +517235,Energy,Energy +517220,Energy,Energy +512431,Energy,Energy +512420,Energy,Energy +512414,Energy,Energy +510559,Energy,Energy +509500,Energy,Energy +506854,Energy,Energy +506853,Energy,Energy +506852,Energy,Energy +502028,Energy,Energy +502019,Energy,Energy +502015,Energy,Energy +502013,Energy,Energy +502012,Energy,Energy +487542,Energy,Energy +487538,Energy,Energy +480099,Energy,Energy +477429,Energy,Energy +477425,Energy,Energy +477398,Energy,Energy +475555,Energy,Energy +474032,Energy,Energy +471081,Energy,Energy +471080,Energy,Energy +471078,Energy,Energy +471072,Energy,Energy +468133,Energy,Energy +468131,Energy,Energy +468130,Energy,Energy +465001,Energy,Energy +465000,Energy,Energy +464999,Energy,Energy +462962,Energy,Energy +462844,Energy,Energy +457603,Energy,Energy +457602,Energy,Energy +457599,Energy,Energy +457598,Energy,Energy +457596,Energy,Energy +457594,Energy,Energy +456028,Energy,Energy +456027,Energy,Energy +456025,Energy,Energy +456023,Energy,Energy +452921,Energy,Energy +452920,Energy,Energy +450321,Energy,Energy +450319,Energy,Energy +261309,Consumer Issues,Consumer Issues +261309,Financial Institutions,Financial Institutions +261309,Industry,Industry +261309,Taxation and Finance,Taxation and Finance +375788,Infrastructure,Infrastructure +451990,Education,Education +419896,Education,Education +207354,Education,Education +207347,Education,Education +159754,Education,Education +341590,Education,Education +227257,Education,Education +227221,Education,Education +227220,Education,Education +386536,Education,Education +369477,Education,Education +369475,Education,Education +366094,Education,Education +366093,Education,Education +366091,Education,Education +365179,Education,Education +543604,Education,Education +528777,Education,Education +519489,Education,Education +510851,Education,Education +510143,Education,Education +484920,Education,Education +481490,Education,Education +469281,Education,Education +467256,Education,Education +467254,Education,Education +460024,Education,Education +522858,Budget,Budget +522854,Budget,Budget +189112,Budget,Budget +189073,Budget,Budget +171204,Budget,Budget +167984,Budget,Budget +167982,Budget,Budget +167981,Budget,Budget +167979,Budget,Budget +167978,Budget,Budget +167976,Budget,Budget +167975,Budget,Budget +167974,Budget,Budget +167972,Budget,Budget +167969,Budget,Budget +167968,Budget,Budget +167966,Budget,Budget +167965,Budget,Budget +165853,Budget,Budget +165851,Budget,Budget +165849,Budget,Budget +165841,Budget,Budget +163944,Budget,Budget +264444,Budget,Budget +259427,Budget,Budget +259415,Budget,Budget +259396,Budget,Budget +259394,Budget,Budget +217619,Budget,Budget +217617,Budget,Budget +217613,Budget,Budget +217610,Budget,Budget +217600,Budget,Budget +217598,Budget,Budget +217594,Budget,Budget +217590,Budget,Budget +217588,Budget,Budget +212430,Budget,Budget +212426,Budget,Budget +212419,Budget,Budget +212417,Budget,Budget +212415,Budget,Budget +206611,Budget,Budget +206610,Budget,Budget +206608,Budget,Budget +206607,Budget,Budget +206598,Budget,Budget +206597,Budget,Budget +206595,Budget,Budget +202910,Budget,Budget +202906,Budget,Budget +194901,Budget,Budget +379592,Budget,Budget +379590,Budget,Budget +379589,Budget,Budget +379579,Budget,Budget +376761,Budget,Budget +376721,Budget,Budget +376713,Budget,Budget +376623,Budget,Budget +376621,Budget,Budget +376618,Budget,Budget +376615,Budget,Budget +376605,Budget,Budget +374849,Budget,Budget +374844,Budget,Budget +374843,Budget,Budget +374842,Budget,Budget +374800,Budget,Budget +374791,Budget,Budget +374789,Budget,Budget +374779,Budget,Budget +373049,Budget,Budget +372947,Budget,Budget +372946,Budget,Budget +372934,Budget,Budget +372931,Budget,Budget +372929,Budget,Budget +372927,Budget,Budget +370108,Budget,Budget +358061,Budget,Budget +354066,Budget,Budget +354063,Budget,Budget +353965,Budget,Budget +351544,Budget,Budget +351543,Budget,Budget +351541,Budget,Budget +351540,Budget,Budget +351539,Budget,Budget +351538,Budget,Budget +351536,Budget,Budget +351535,Budget,Budget +351534,Budget,Budget +351532,Budget,Budget +349252,Budget,Budget +349242,Budget,Budget +349240,Budget,Budget +349238,Budget,Budget +347274,Budget,Budget +344042,Budget,Budget +344035,Budget,Budget +338391,Budget,Budget +338390,Budget,Budget +338388,Budget,Budget +335984,Budget,Budget +331588,Budget,Budget +331587,Budget,Budget +331586,Budget,Budget +330222,Budget,Budget +327737,Budget,Budget +327733,Budget,Budget +327694,Budget,Budget +327653,Budget,Budget +325089,Budget,Budget +325087,Budget,Budget +322295,Budget,Budget +319254,Budget,Budget +319250,Budget,Budget +319248,Budget,Budget +316034,Budget,Budget +316033,Budget,Budget +316031,Budget,Budget +316030,Budget,Budget +316029,Budget,Budget +316028,Budget,Budget +316025,Budget,Budget +316024,Budget,Budget +316020,Budget,Budget +313185,Budget,Budget +313183,Budget,Budget +310467,Budget,Budget +304474,Budget,Budget +304471,Budget,Budget +296904,Budget,Budget +291148,Budget,Budget +291137,Budget,Budget +273176,Budget,Budget +269603,Budget,Budget +269601,Budget,Budget +269593,Budget,Budget +269589,Budget,Budget +269587,Budget,Budget +264466,Budget,Budget +264462,Budget,Budget +264461,Budget,Budget +264460,Budget,Budget +264459,Budget,Budget +264458,Budget,Budget +264457,Budget,Budget +264453,Budget,Budget +264448,Budget,Budget +264447,Budget,Budget +511170,Budget,Budget +508657,Budget,Budget +505885,Budget,Budget +505883,Budget,Budget +505881,Budget,Budget +505869,Budget,Budget +505863,Budget,Budget +505862,Budget,Budget +505860,Budget,Budget +505858,Budget,Budget +502627,Budget,Budget +502626,Budget,Budget +502620,Budget,Budget +502617,Budget,Budget +502610,Budget,Budget +502608,Budget,Budget +502604,Budget,Budget +502600,Budget,Budget +502597,Budget,Budget +502593,Budget,Budget +502591,Budget,Budget +502584,Budget,Budget +502580,Budget,Budget +502572,Budget,Budget +502565,Budget,Budget +502561,Budget,Budget +502559,Budget,Budget +502555,Budget,Budget +502552,Budget,Budget +499097,Budget,Budget +471065,Budget,Budget +471059,Budget,Budget +471056,Budget,Budget +471043,Budget,Budget +471032,Budget,Budget +467895,Budget,Budget +467882,Budget,Budget +467859,Budget,Budget +467807,Budget,Budget +459536,Budget,Budget +450024,Budget,Budget +450021,Budget,Budget +450019,Budget,Budget +447571,Budget,Budget +447287,Budget,Budget +447286,Budget,Budget +447283,Budget,Budget +447282,Budget,Budget +447281,Budget,Budget +447279,Budget,Budget +447278,Budget,Budget +447275,Budget,Budget +447274,Budget,Budget +445341,Budget,Budget +445338,Budget,Budget +445336,Budget,Budget +445335,Budget,Budget +443307,Budget,Budget +443302,Budget,Budget +443298,Budget,Budget +443297,Budget,Budget +443296,Budget,Budget +443295,Budget,Budget +443293,Budget,Budget +443292,Budget,Budget +443291,Budget,Budget +441927,Budget,Budget +440741,Budget,Budget +440739,Budget,Budget +440737,Budget,Budget +440735,Budget,Budget +438435,Budget,Budget +430907,Budget,Budget +421611,Budget,Budget +421529,Budget,Budget +421524,Budget,Budget +421520,Budget,Budget +421509,Budget,Budget +421508,Budget,Budget +421506,Budget,Budget +421497,Budget,Budget +421485,Budget,Budget +404548,Budget,Budget +401106,Budget,Budget +399186,Budget,Budget +396393,Budget,Budget +396372,Budget,Budget +396362,Budget,Budget +396361,Budget,Budget +396357,Budget,Budget +394270,Budget,Budget +394269,Budget,Budget +391159,Budget,Budget +388133,Budget,Budget +388073,Budget,Budget +387963,Budget,Budget +382440,Budget,Budget +381552,Budget,Budget +381550,Budget,Budget +381547,Budget,Budget +381545,Budget,Budget +381540,Budget,Budget +379681,Budget,Budget +379677,Budget,Budget +379672,Budget,Budget +379661,Budget,Budget +379649,Budget,Budget +379614,Budget,Budget +528428,Budget,Budget +528426,Budget,Budget +528425,Budget,Budget +528416,Budget,Budget +528408,Budget,Budget +528406,Budget,Budget +528404,Budget,Budget +528401,Budget,Budget +528400,Budget,Budget +528399,Budget,Budget +528398,Budget,Budget +528397,Budget,Budget +528396,Budget,Budget +528032,Budget,Budget +528030,Budget,Budget +526337,Budget,Budget +526331,Budget,Budget +526326,Budget,Budget +526324,Budget,Budget +526320,Budget,Budget +526163,Budget,Budget +526162,Budget,Budget +526159,Budget,Budget +526155,Budget,Budget +515377,Economic Development,Economic Development +515375,Economic Development,Economic Development +185486,Economic Development,Economic Development +162375,Economic Development,Economic Development +370106,Economic Development,Economic Development +344040,Economic Development,Economic Development +344036,Economic Development,Economic Development +511170,Economic Development,Economic Development +508674,Economic Development,Economic Development +505889,Economic Development,Economic Development +473641,Economic Development,Economic Development +455499,Economic Development,Economic Development +452644,Economic Development,Economic Development +452642,Economic Development,Economic Development +447271,Economic Development,Economic Development +440689,Economic Development,Economic Development +438445,Economic Development,Economic Development +438440,Economic Development,Economic Development +438432,Economic Development,Economic Development +432454,Economic Development,Economic Development +432444,Economic Development,Economic Development +421606,Economic Development,Economic Development +416679,Economic Development,Economic Development +401105,Economic Development,Economic Development +400643,Economic Development,Economic Development +400632,Economic Development,Economic Development +400627,Economic Development,Economic Development +391138,Economic Development,Economic Development +391133,Economic Development,Economic Development +391128,Economic Development,Economic Development +388073,Economic Development,Economic Development +381547,Economic Development,Economic Development +381545,Economic Development,Economic Development +376713,Economic Development,Economic Development +374841,Economic Development,Economic Development +528032,Economic Development,Economic Development +526163,Economic Development,Economic Development +526162,Economic Development,Economic Development +526159,Economic Development,Economic Development +526157,Economic Development,Economic Development +526155,Economic Development,Economic Development +526153,Economic Development,Economic Development +526145,Economic Development,Economic Development +522858,Economic Development,Economic Development +522857,Economic Development,Economic Development +522854,Economic Development,Economic Development +522848,Economic Development,Economic Development +522845,Economic Development,Economic Development +522841,Economic Development,Economic Development +522840,Economic Development,Economic Development +520051,Economic Development,Economic Development +520033,Economic Development,Economic Development +516773,Economic Development,Economic Development +515379,Economic Development,Economic Development +333692,Pensions,Pensions +163949,Pensions,Pensions +194912,Pensions,Pensions +194910,Pensions,Pensions +194908,Pensions,Pensions +194901,Pensions,Pensions +194898,Pensions,Pensions +189112,Pensions,Pensions +189109,Pensions,Pensions +189106,Pensions,Pensions +189096,Pensions,Pensions +189093,Pensions,Pensions +189092,Pensions,Pensions +189090,Pensions,Pensions +189073,Pensions,Pensions +189072,Pensions,Pensions +186926,Pensions,Pensions +186925,Pensions,Pensions +185493,Pensions,Pensions +185492,Pensions,Pensions +185490,Pensions,Pensions +185489,Pensions,Pensions +185488,Pensions,Pensions +185487,Pensions,Pensions +185480,Pensions,Pensions +180414,Pensions,Pensions +175642,Pensions,Pensions +333691,Pensions,Pensions +333688,Pensions,Pensions +333687,Pensions,Pensions +333684,Pensions,Pensions +333682,Pensions,Pensions +333681,Pensions,Pensions +333680,Pensions,Pensions +333678,Pensions,Pensions +333667,Pensions,Pensions +331588,Pensions,Pensions +331587,Pensions,Pensions +331586,Pensions,Pensions +330210,Pensions,Pensions +330203,Pensions,Pensions +327737,Pensions,Pensions +327680,Pensions,Pensions +325095,Pensions,Pensions +325093,Pensions,Pensions +325090,Pensions,Pensions +325089,Pensions,Pensions +325088,Pensions,Pensions +319248,Pensions,Pensions +310488,Pensions,Pensions +310486,Pensions,Pensions +310476,Pensions,Pensions +304481,Pensions,Pensions +297013,Pensions,Pensions +297011,Pensions,Pensions +275450,Pensions,Pensions +230152,Pensions,Pensions +217628,Pensions,Pensions +217621,Pensions,Pensions +206610,Pensions,Pensions +206608,Pensions,Pensions +206597,Pensions,Pensions +206596,Pensions,Pensions +200476,Pensions,Pensions +200458,Pensions,Pensions +200446,Pensions,Pensions +200428,Pensions,Pensions +200420,Pensions,Pensions +419867,Pensions,Pensions +419860,Pensions,Pensions +391163,Pensions,Pensions +391118,Pensions,Pensions +387976,Pensions,Pensions +387961,Pensions,Pensions +385395,Pensions,Pensions +385364,Pensions,Pensions +382446,Pensions,Pensions +382445,Pensions,Pensions +382443,Pensions,Pensions +382440,Pensions,Pensions +382439,Pensions,Pensions +382438,Pensions,Pensions +372923,Pensions,Pensions +372922,Pensions,Pensions +358054,Pensions,Pensions +354080,Pensions,Pensions +351535,Pensions,Pensions +351531,Pensions,Pensions +338378,Pensions,Pensions +336008,Pensions,Pensions +336004,Pensions,Pensions +336002,Pensions,Pensions +336000,Pensions,Pensions +335998,Pensions,Pensions +464754,Transportation,Transportation +448221,Transportation,Transportation +410012,Transportation,Transportation +410010,Transportation,Transportation +410007,Transportation,Transportation +410006,Transportation,Transportation +399130,Transportation,Transportation +399128,Transportation,Transportation +396707,Transportation,Transportation +396694,Transportation,Transportation +396690,Transportation,Transportation +396685,Transportation,Transportation +396680,Transportation,Transportation +396671,Transportation,Transportation +396662,Transportation,Transportation +396637,Transportation,Transportation +396436,Transportation,Transportation +396433,Transportation,Transportation +396418,Transportation,Transportation +396413,Transportation,Transportation +396408,Transportation,Transportation +396404,Transportation,Transportation +391720,Transportation,Transportation +391719,Transportation,Transportation +391718,Transportation,Transportation +391716,Transportation,Transportation +388833,Transportation,Transportation +388831,Transportation,Transportation +382786,Transportation,Transportation +381677,Transportation,Transportation +381670,Transportation,Transportation +350117,Transportation,Transportation +535011,Transportation,Transportation +398618,International Development,International Development +398616,International Development,International Development +195230,International Development,International Development +195228,International Development,International Development +195227,International Development,International Development +188940,International Development,International Development +188936,International Development,International Development +188931,International Development,International Development +188926,International Development,International Development +188924,International Development,International Development +173616,International Development,International Development +173615,International Development,International Development +159861,International Development,International Development +338770,International Development,International Development +338767,International Development,International Development +338765,International Development,International Development +338763,International Development,International Development +338762,International Development,International Development +338760,International Development,International Development +338759,International Development,International Development +338758,International Development,International Development +338755,International Development,International Development +338751,International Development,International Development +338479,International Development,International Development +338471,International Development,International Development +331611,International Development,International Development +329486,International Development,International Development +329485,International Development,International Development +329484,International Development,International Development +329483,International Development,International Development +329482,International Development,International Development +329481,International Development,International Development +329480,International Development,International Development +327516,International Development,International Development +327514,International Development,International Development +327512,International Development,International Development +327478,International Development,International Development +327476,International Development,International Development +327468,International Development,International Development +327454,International Development,International Development +327452,International Development,International Development +327451,International Development,International Development +327450,International Development,International Development +327443,International Development,International Development +327440,International Development,International Development +325358,International Development,International Development +325357,International Development,International Development +322287,International Development,International Development +322284,International Development,International Development +322280,International Development,International Development +322275,International Development,International Development +319392,International Development,International Development +319391,International Development,International Development +319390,International Development,International Development +316133,International Development,International Development +316132,International Development,International Development +316131,International Development,International Development +313083,International Development,International Development +302473,International Development,International Development +273957,International Development,International Development +273954,International Development,International Development +273951,International Development,International Development +269561,International Development,International Development +264317,International Development,International Development +264315,International Development,International Development +250552,International Development,International Development +241109,International Development,International Development +233749,International Development,International Development +230110,International Development,International Development +227301,International Development,International Development +223552,International Development,International Development +217650,International Development,International Development +212252,International Development,International Development +212247,International Development,International Development +199938,International Development,International Development +199935,International Development,International Development +199933,International Development,International Development +199931,International Development,International Development +199925,International Development,International Development +398611,International Development,International Development +397594,International Development,International Development +396689,International Development,International Development +396670,International Development,International Development +396660,International Development,International Development +396634,International Development,International Development +396629,International Development,International Development +394466,International Development,International Development +394464,International Development,International Development +394460,International Development,International Development +394456,International Development,International Development +394454,International Development,International Development +394452,International Development,International Development +392619,International Development,International Development +392618,International Development,International Development +392614,International Development,International Development +392609,International Development,International Development +392604,International Development,International Development +391226,International Development,International Development +390749,International Development,International Development +390745,International Development,International Development +390737,International Development,International Development +390735,International Development,International Development +390733,International Development,International Development +387840,International Development,International Development +387837,International Development,International Development +387832,International Development,International Development +387827,International Development,International Development +387823,International Development,International Development +387818,International Development,International Development +387816,International Development,International Development +387812,International Development,International Development +387810,International Development,International Development +385539,International Development,International Development +385532,International Development,International Development +385531,International Development,International Development +385528,International Development,International Development +385527,International Development,International Development +383258,International Development,International Development +383256,International Development,International Development +382499,International Development,International Development +382497,International Development,International Development +382495,International Development,International Development +382492,International Development,International Development +381418,International Development,International Development +381416,International Development,International Development +381415,International Development,International Development +381414,International Development,International Development +381412,International Development,International Development +381411,International Development,International Development +379716,International Development,International Development +379417,International Development,International Development +379414,International Development,International Development +379410,International Development,International Development +379408,International Development,International Development +379406,International Development,International Development +379405,International Development,International Development +379399,International Development,International Development +379398,International Development,International Development +379390,International Development,International Development +379385,International Development,International Development +379383,International Development,International Development +379380,International Development,International Development +379379,International Development,International Development +379377,International Development,International Development +379373,International Development,International Development +379372,International Development,International Development +377190,International Development,International Development +377189,International Development,International Development +377188,International Development,International Development +377187,International Development,International Development +377186,International Development,International Development +376932,International Development,International Development +376930,International Development,International Development +376925,International Development,International Development +374885,International Development,International Development +374882,International Development,International Development +374881,International Development,International Development +374880,International Development,International Development +374879,International Development,International Development +374876,International Development,International Development +374875,International Development,International Development +374873,International Development,International Development +374871,International Development,International Development +374870,International Development,International Development +374869,International Development,International Development +372842,International Development,International Development +372838,International Development,International Development +372837,International Development,International Development +372836,International Development,International Development +372835,International Development,International Development +372803,International Development,International Development +372802,International Development,International Development +369431,International Development,International Development +369430,International Development,International Development +369429,International Development,International Development +369428,International Development,International Development +369427,International Development,International Development +369199,International Development,International Development +369197,International Development,International Development +366791,International Development,International Development +366790,International Development,International Development +366789,International Development,International Development +366788,International Development,International Development +366786,International Development,International Development +366785,International Development,International Development +365182,International Development,International Development +365181,International Development,International Development +365180,International Development,International Development +365177,International Development,International Development +365176,International Development,International Development +365174,International Development,International Development +363643,International Development,International Development +363642,International Development,International Development +363446,International Development,International Development +362210,International Development,International Development +362209,International Development,International Development +362208,International Development,International Development +362207,International Development,International Development +361128,International Development,International Development +361127,International Development,International Development +361126,International Development,International Development +361125,International Development,International Development +361124,International Development,International Development +360083,International Development,International Development +360082,International Development,International Development +357682,International Development,International Development +357681,International Development,International Development +357680,International Development,International Development +357679,International Development,International Development +356276,International Development,International Development +356275,International Development,International Development +356272,International Development,International Development +356263,International Development,International Development +356262,International Development,International Development +354151,International Development,International Development +354148,International Development,International Development +354147,International Development,International Development +354145,International Development,International Development +351394,International Development,International Development +351392,International Development,International Development +351387,International Development,International Development +351383,International Development,International Development +351380,International Development,International Development +349375,International Development,International Development +349374,International Development,International Development +349373,International Development,International Development +349372,International Development,International Development +349371,International Development,International Development +349370,International Development,International Development +349369,International Development,International Development +347245,International Development,International Development +347244,International Development,International Development +347241,International Development,International Development +347239,International Development,International Development +347237,International Development,International Development +347236,International Development,International Development +347235,International Development,International Development +347234,International Development,International Development +347233,International Development,International Development +344054,International Development,International Development +344052,International Development,International Development +344051,International Development,International Development +344050,International Development,International Development +344049,International Development,International Development +344048,International Development,International Development +344047,International Development,International Development +344046,International Development,International Development +344044,International Development,International Development +341680,International Development,International Development +341676,International Development,International Development +341671,International Development,International Development +341668,International Development,International Development +341666,International Development,International Development +341663,International Development,International Development +341656,International Development,International Development +542085,International Development,International Development +542083,International Development,International Development +537691,International Development,International Development +537690,International Development,International Development +537687,International Development,International Development +537529,International Development,International Development +534638,International Development,International Development +534637,International Development,International Development +534631,International Development,International Development +532191,International Development,International Development +532190,International Development,International Development +529923,International Development,International Development +529922,International Development,International Development +529921,International Development,International Development +529920,International Development,International Development +529919,International Development,International Development +529918,International Development,International Development +529917,International Development,International Development +529916,International Development,International Development +529915,International Development,International Development +529913,International Development,International Development +529912,International Development,International Development +529899,International Development,International Development +529895,International Development,International Development +529892,International Development,International Development +529891,International Development,International Development +529889,International Development,International Development +529888,International Development,International Development +529887,International Development,International Development +529886,International Development,International Development +529885,International Development,International Development +529884,International Development,International Development +529883,International Development,International Development +529882,International Development,International Development +529878,International Development,International Development +529876,International Development,International Development +512177,International Development,International Development +512176,International Development,International Development +512175,International Development,International Development +512174,International Development,International Development +512173,International Development,International Development +511589,International Development,International Development +511588,International Development,International Development +511587,International Development,International Development +511586,International Development,International Development +511584,International Development,International Development +507390,International Development,International Development +506032,International Development,International Development +506031,International Development,International Development +506030,International Development,International Development +506029,International Development,International Development +503095,International Development,International Development +503094,International Development,International Development +503093,International Development,International Development +503092,International Development,International Development +503091,International Development,International Development +503090,International Development,International Development +503089,International Development,International Development +503088,International Development,International Development +503087,International Development,International Development +499461,International Development,International Development +499460,International Development,International Development +499459,International Development,International Development +499457,International Development,International Development +495714,International Development,International Development +495713,International Development,International Development +495711,International Development,International Development +495709,International Development,International Development +495708,International Development,International Development +495707,International Development,International Development +495705,International Development,International Development +495703,International Development,International Development +495702,International Development,International Development +495701,International Development,International Development +495700,International Development,International Development +495699,International Development,International Development +495698,International Development,International Development +495697,International Development,International Development +495695,International Development,International Development +487072,International Development,International Development +487071,International Development,International Development +487070,International Development,International Development +487069,International Development,International Development +487068,International Development,International Development +485209,International Development,International Development +485205,International Development,International Development +485204,International Development,International Development +485202,International Development,International Development +485196,International Development,International Development +485194,International Development,International Development +482401,International Development,International Development +482399,International Development,International Development +482398,International Development,International Development +482397,International Development,International Development +482396,International Development,International Development +482394,International Development,International Development +480573,International Development,International Development +480572,International Development,International Development +480571,International Development,International Development +480570,International Development,International Development +480569,International Development,International Development +480568,International Development,International Development +480567,International Development,International Development +480566,International Development,International Development +480565,International Development,International Development +480564,International Development,International Development +480563,International Development,International Development +480562,International Development,International Development +480561,International Development,International Development +480560,International Development,International Development +480559,International Development,International Development +480558,International Development,International Development +480556,International Development,International Development +480555,International Development,International Development +480554,International Development,International Development +480553,International Development,International Development +480552,International Development,International Development +480551,International Development,International Development +480550,International Development,International Development +480549,International Development,International Development +480536,International Development,International Development +468211,International Development,International Development +468208,International Development,International Development +468207,International Development,International Development +468205,International Development,International Development +468203,International Development,International Development +468202,International Development,International Development +468201,International Development,International Development +468200,International Development,International Development +468199,International Development,International Development +468198,International Development,International Development +468197,International Development,International Development +468196,International Development,International Development +468195,International Development,International Development +468194,International Development,International Development +468193,International Development,International Development +468192,International Development,International Development +468189,International Development,International Development +468188,International Development,International Development +468187,International Development,International Development +467310,International Development,International Development +467294,International Development,International Development +465173,International Development,International Development +465171,International Development,International Development +465170,International Development,International Development +465169,International Development,International Development +465168,International Development,International Development +465166,International Development,International Development +465164,International Development,International Development +465161,International Development,International Development +460785,International Development,International Development +460782,International Development,International Development +460781,International Development,International Development +460777,International Development,International Development +460776,International Development,International Development +460775,International Development,International Development +460774,International Development,International Development +460773,International Development,International Development +452462,International Development,International Development +452461,International Development,International Development +452460,International Development,International Development +452459,International Development,International Development +452458,International Development,International Development +452457,International Development,International Development +452455,International Development,International Development +452454,International Development,International Development +452453,International Development,International Development +452452,International Development,International Development +452451,International Development,International Development +452450,International Development,International Development +447672,International Development,International Development +447671,International Development,International Development +447670,International Development,International Development +447669,International Development,International Development +445415,International Development,International Development +445414,International Development,International Development +445413,International Development,International Development +443680,International Development,International Development +443668,International Development,International Development +443666,International Development,International Development +443658,International Development,International Development +443655,International Development,International Development +443653,International Development,International Development +443652,International Development,International Development +442593,International Development,International Development +442592,International Development,International Development +442330,International Development,International Development +442323,International Development,International Development +442309,International Development,International Development +442066,International Development,International Development +442063,International Development,International Development +442062,International Development,International Development +442058,International Development,International Development +442055,International Development,International Development +442051,International Development,International Development +442048,International Development,International Development +442047,International Development,International Development +442044,International Development,International Development +442043,International Development,International Development +442041,International Development,International Development +441881,International Development,International Development +438561,International Development,International Development +438559,International Development,International Development +438548,International Development,International Development +435753,International Development,International Development +435750,International Development,International Development +435747,International Development,International Development +435739,International Development,International Development +435721,International Development,International Development +435717,International Development,International Development +435711,International Development,International Development +432263,International Development,International Development +432261,International Development,International Development +432254,International Development,International Development +432250,International Development,International Development +430526,International Development,International Development +430522,International Development,International Development +428142,International Development,International Development +428137,International Development,International Development +428136,International Development,International Development +428133,International Development,International Development +428128,International Development,International Development +428126,International Development,International Development +428123,International Development,International Development +426306,International Development,International Development +426305,International Development,International Development +425896,International Development,International Development +421678,International Development,International Development +421662,International Development,International Development +419438,International Development,International Development +419434,International Development,International Development +419432,International Development,International Development +419430,International Development,International Development +417887,International Development,International Development +417886,International Development,International Development +417881,International Development,International Development +417879,International Development,International Development +415561,International Development,International Development +415543,International Development,International Development +415531,International Development,International Development +415530,International Development,International Development +412893,International Development,International Development +412888,International Development,International Development +412884,International Development,International Development +412880,International Development,International Development +412876,International Development,International Development +412870,International Development,International Development +412867,International Development,International Development +409829,International Development,International Development +409823,International Development,International Development +409820,International Development,International Development +409815,International Development,International Development +409812,International Development,International Development +409809,International Development,International Development +409794,International Development,International Development +409786,International Development,International Development +409770,International Development,International Development +408097,International Development,International Development +408091,International Development,International Development +406756,International Development,International Development +406755,International Development,International Development +406754,International Development,International Development +404883,International Development,International Development +404881,International Development,International Development +404879,International Development,International Development +404878,International Development,International Development +404547,International Development,International Development +404546,International Development,International Development +402227,International Development,International Development +402226,International Development,International Development +402225,International Development,International Development +402224,International Development,International Development +402223,International Development,International Development +400422,International Development,International Development +400420,International Development,International Development +400418,International Development,International Development +399464,International Development,International Development +398723,International Development,International Development +398720,International Development,International Development +398716,International Development,International Development +398631,International Development,International Development +398629,International Development,International Development +425896,Mining,Mining +397594,Mining,Mining +159861,Mining,Mining +269561,Mining,Mining +258135,International Trade,International Trade +451806,International Trade,International Trade +159894,International Trade,International Trade +192765,International Trade,International Trade +192764,International Trade,International Trade +192759,International Trade,International Trade +192756,International Trade,International Trade +192754,International Trade,International Trade +192752,International Trade,International Trade +385307,International Trade,International Trade +376653,International Trade,International Trade +372690,International Trade,International Trade +372677,International Trade,International Trade +372648,International Trade,International Trade +369889,International Trade,International Trade +473758,Labour,Travail +471053,Labour,Travail +485103,Labour,Travail +162134,Pensions,Pensions +162125,Pensions,Pensions +236190,Pensions,Pensions +216707,Pensions,Pensions +216671,Pensions,Pensions +211921,Pensions,Pensions +207222,Pensions,Pensions +207221,Pensions,Pensions +163762,Pensions,Pensions +418734,Agriculture,Agriculture +418733,Agriculture,Agriculture +243309,Agriculture,Agriculture +243308,Agriculture,Agriculture +243305,Agriculture,Agriculture +424572,Agriculture,Agriculture +424571,Agriculture,Agriculture +424570,Agriculture,Agriculture +424569,Agriculture,Agriculture +418742,Agriculture,Agriculture +418739,Agriculture,Agriculture +418738,Agriculture,Agriculture +438818,Infrastructure,Infrastructure +438813,Infrastructure,Infrastructure +162061,Infrastructure,Infrastructure +162052,Infrastructure,Infrastructure +160110,Infrastructure,Infrastructure +245123,Infrastructure,Infrastructure +245122,Infrastructure,Infrastructure +245120,Infrastructure,Infrastructure +245119,Infrastructure,Infrastructure +245118,Infrastructure,Infrastructure +245117,Infrastructure,Infrastructure +241298,Infrastructure,Infrastructure +240757,Infrastructure,Infrastructure +237098,Infrastructure,Infrastructure +233221,Infrastructure,Infrastructure +233220,Infrastructure,Infrastructure +230278,Infrastructure,Infrastructure +230277,Infrastructure,Infrastructure +230276,Infrastructure,Infrastructure +226068,Infrastructure,Infrastructure +223649,Infrastructure,Infrastructure +223647,Infrastructure,Infrastructure +223644,Infrastructure,Infrastructure +223641,Infrastructure,Infrastructure +223640,Infrastructure,Infrastructure +223638,Infrastructure,Infrastructure +219327,Infrastructure,Infrastructure +212356,Infrastructure,Infrastructure +208327,Infrastructure,Infrastructure +208307,Infrastructure,Infrastructure +207868,Infrastructure,Infrastructure +203567,Infrastructure,Infrastructure +200968,Infrastructure,Infrastructure +190168,Infrastructure,Infrastructure +187345,Infrastructure,Infrastructure +187324,Infrastructure,Infrastructure +180471,Infrastructure,Infrastructure +180470,Infrastructure,Infrastructure +173765,Infrastructure,Infrastructure +172125,Infrastructure,Infrastructure +171055,Infrastructure,Infrastructure +171050,Infrastructure,Infrastructure +171046,Infrastructure,Infrastructure +171044,Infrastructure,Infrastructure +171028,Infrastructure,Infrastructure +171022,Infrastructure,Infrastructure +167854,Infrastructure,Infrastructure +167851,Infrastructure,Infrastructure +166376,Infrastructure,Infrastructure +166345,Infrastructure,Infrastructure +164333,Infrastructure,Infrastructure +385257,Infrastructure,Infrastructure +322216,Infrastructure,Infrastructure +322213,Infrastructure,Infrastructure +322211,Infrastructure,Infrastructure +322209,Infrastructure,Infrastructure +319818,Infrastructure,Infrastructure +319715,Infrastructure,Infrastructure +319714,Infrastructure,Infrastructure +319713,Infrastructure,Infrastructure +319712,Infrastructure,Infrastructure +318109,Infrastructure,Infrastructure +316394,Infrastructure,Infrastructure +316393,Infrastructure,Infrastructure +316392,Infrastructure,Infrastructure +316391,Infrastructure,Infrastructure +316389,Infrastructure,Infrastructure +316387,Infrastructure,Infrastructure +316385,Infrastructure,Infrastructure +316382,Infrastructure,Infrastructure +316380,Infrastructure,Infrastructure +316378,Infrastructure,Infrastructure +316377,Infrastructure,Infrastructure +316375,Infrastructure,Infrastructure +316372,Infrastructure,Infrastructure +316371,Infrastructure,Infrastructure +316369,Infrastructure,Infrastructure +313271,Infrastructure,Infrastructure +313270,Infrastructure,Infrastructure +313269,Infrastructure,Infrastructure +311439,Infrastructure,Infrastructure +311437,Infrastructure,Infrastructure +311435,Infrastructure,Infrastructure +311434,Infrastructure,Infrastructure +311433,Infrastructure,Infrastructure +311432,Infrastructure,Infrastructure +311431,Infrastructure,Infrastructure +311430,Infrastructure,Infrastructure +311429,Infrastructure,Infrastructure +311428,Infrastructure,Infrastructure +311427,Infrastructure,Infrastructure +311423,Infrastructure,Infrastructure +311420,Infrastructure,Infrastructure +311419,Infrastructure,Infrastructure +311417,Infrastructure,Infrastructure +311414,Infrastructure,Infrastructure +311413,Infrastructure,Infrastructure +311412,Infrastructure,Infrastructure +311411,Infrastructure,Infrastructure +311410,Infrastructure,Infrastructure +308529,Infrastructure,Infrastructure +308451,Infrastructure,Infrastructure +308449,Infrastructure,Infrastructure +308431,Infrastructure,Infrastructure +308430,Infrastructure,Infrastructure +308429,Infrastructure,Infrastructure +308389,Infrastructure,Infrastructure +303749,Infrastructure,Infrastructure +303709,Infrastructure,Infrastructure +303689,Infrastructure,Infrastructure +303671,Infrastructure,Infrastructure +303670,Infrastructure,Infrastructure +303651,Infrastructure,Infrastructure +303649,Infrastructure,Infrastructure +303647,Infrastructure,Infrastructure +303645,Infrastructure,Infrastructure +303644,Infrastructure,Infrastructure +297311,Infrastructure,Infrastructure +297310,Infrastructure,Infrastructure +297292,Infrastructure,Infrastructure +297291,Infrastructure,Infrastructure +297290,Infrastructure,Infrastructure +297289,Infrastructure,Infrastructure +297270,Infrastructure,Infrastructure +297269,Infrastructure,Infrastructure +297250,Infrastructure,Infrastructure +273869,Infrastructure,Infrastructure +251542,Infrastructure,Infrastructure +251469,Infrastructure,Infrastructure +251436,Infrastructure,Infrastructure +251435,Infrastructure,Infrastructure +438867,Infrastructure,Infrastructure +438831,Infrastructure,Infrastructure +438829,Infrastructure,Infrastructure +438828,Infrastructure,Infrastructure +438827,Infrastructure,Infrastructure +168820,Housing,Housing +304480,Housing,Housing +209988,Climate,Climate +206127,Climate,Climate +206107,Climate,Climate +198287,Climate,Climate +198251,Climate,Climate +195645,Climate,Climate +379940,Climate,Climate +227058,Climate,Climate +227057,Climate,Climate +227055,Climate,Climate +227054,Climate,Climate +227053,Climate,Climate +227052,Climate,Climate +227051,Climate,Climate +227049,Climate,Climate +222509,Climate,Climate +215733,Climate,Climate +215732,Climate,Climate +215731,Climate,Climate +215730,Climate,Climate +215729,Climate,Climate +215728,Climate,Climate +215727,Climate,Climate +210007,Climate,Climate +209994,Climate,Climate +209993,Climate,Climate +209992,Climate,Climate +209990,Climate,Climate +497904,Climate,Climate +497902,Climate,Climate +495264,Climate,Climate +489928,Climate,Climate +489927,Climate,Climate +489925,Climate,Climate +487622,Climate,Climate +487620,Climate,Climate +487619,Climate,Climate +487617,Climate,Climate +487615,Climate,Climate +487614,Climate,Climate +487613,Climate,Climate +487611,Climate,Climate +484551,Climate,Climate +484545,Climate,Climate +484543,Climate,Climate +484541,Climate,Climate +484537,Climate,Climate +484535,Climate,Climate +484533,Climate,Climate +484528,Climate,Climate +484521,Climate,Climate +481368,Climate,Climate +481367,Climate,Climate +481366,Climate,Climate +479502,Climate,Climate +477802,Climate,Climate +477793,Climate,Climate +475948,Climate,Climate +468047,Climate,Climate +468046,Climate,Climate +468045,Climate,Climate +468044,Climate,Climate +468043,Climate,Climate +468042,Climate,Climate +468041,Climate,Climate +468040,Climate,Climate +461197,Climate,Climate +457743,Climate,Climate +455550,Climate,Climate +455548,Climate,Climate +455510,Climate,Climate +446634,Climate,Climate +439022,Climate,Climate +439008,Climate,Climate +435510,Climate,Climate +429977,Climate,Climate +429976,Climate,Climate +429975,Climate,Climate +409905,Climate,Climate +409901,Climate,Climate +400354,Climate,Climate +398210,Climate,Climate +398209,Climate,Climate +396962,Climate,Climate +392743,Climate,Climate +387336,Climate,Climate +387331,Climate,Climate +387330,Climate,Climate +387327,Climate,Climate +387324,Climate,Climate +385654,Climate,Climate +385367,Climate,Climate +385366,Climate,Climate +385365,Climate,Climate +385363,Climate,Climate +385361,Climate,Climate +385359,Climate,Climate +385356,Climate,Climate +385353,Climate,Climate +385347,Climate,Climate +383304,Climate,Climate +383303,Climate,Climate +383302,Climate,Climate +383300,Climate,Climate +383293,Climate,Climate +383291,Climate,Climate +383282,Climate,Climate +383268,Climate,Climate +383267,Climate,Climate +543911,Climate,Climate +543909,Climate,Climate +543907,Climate,Climate +543905,Climate,Climate +543903,Climate,Climate +543901,Climate,Climate +541464,Climate,Climate +541462,Climate,Climate +539805,Climate,Climate +537544,Climate,Climate +537543,Climate,Climate +537542,Climate,Climate +537541,Climate,Climate +537540,Climate,Climate +534608,Climate,Climate +534606,Climate,Climate +534598,Climate,Climate +534595,Climate,Climate +534585,Climate,Climate +534581,Climate,Climate +534575,Climate,Climate +534574,Climate,Climate +534571,Climate,Climate +534567,Climate,Climate +534560,Climate,Climate +534557,Climate,Climate +534551,Climate,Climate +530632,Climate,Climate +530631,Climate,Climate +530630,Climate,Climate +530628,Climate,Climate +529026,Climate,Climate +529025,Climate,Climate +525156,Climate,Climate +525155,Climate,Climate +522618,Climate,Climate +519713,Climate,Climate +519710,Climate,Climate +517326,Climate,Climate +517325,Climate,Climate +517323,Climate,Climate +517318,Climate,Climate +512958,Climate,Climate +512956,Climate,Climate +510324,Climate,Climate +507239,Climate,Climate +507238,Climate,Climate +507237,Climate,Climate +504463,Climate,Climate +501041,Climate,Climate +501040,Climate,Climate +501039,Climate,Climate +501038,Climate,Climate +221287,Intellectual Property,Intellectual Property +190268,Intellectual Property,Intellectual Property +168061,Intellectual Property,Intellectual Property +163857,Intellectual Property,Intellectual Property +162153,Intellectual Property,Intellectual Property +162152,Intellectual Property,Intellectual Property +225907,Intellectual Property,Intellectual Property +238609,Research and Development,Research and Development (R&D) +234369,Research and Development,Research and Development (R&D) +191646,Research and Development,Research and Development (R&D) +172404,Research and Development,Research and Development (R&D) +160249,Research and Development,Research and Development (R&D) +283430,Research and Development,Research and Development (R&D) +264709,Research and Development,Research and Development (R&D) +264073,Research and Development,Research and Development (R&D) +521716,Climate,Climate +519477,Climate,Climate +170547,Climate,Climate +375603,Climate,Climate +225467,Climate,Climate +218170,Climate,Climate +395160,Climate,Climate +395159,Climate,Climate +395158,Climate,Climate +534312,Climate,Climate +534308,Climate,Climate +534306,Climate,Climate +534305,Climate,Climate +402736,Employment and Training,Employment and Training +331207,Employment and Training,Employment and Training +230445,Employment and Training,Employment and Training +223656,Employment and Training,Employment and Training +212127,Employment and Training,Employment and Training +409196,Health,Health +486935,Health,Health +409203,Health,Health +174066,Consumer Issues,Consumer Issues +170585,Consumer Issues,Consumer Issues +245006,Consumer Issues,Consumer Issues +245005,Consumer Issues,Consumer Issues +245002,Consumer Issues,Consumer Issues +240634,Consumer Issues,Consumer Issues +240631,Consumer Issues,Consumer Issues +240629,Consumer Issues,Consumer Issues +236409,Consumer Issues,Consumer Issues +226671,Consumer Issues,Consumer Issues +226670,Consumer Issues,Consumer Issues +226667,Consumer Issues,Consumer Issues +216749,Consumer Issues,Consumer Issues +212187,Consumer Issues,Consumer Issues +212037,Consumer Issues,Consumer Issues +212016,Consumer Issues,Consumer Issues +212012,Consumer Issues,Consumer Issues +184885,Consumer Issues,Consumer Issues +177644,Consumer Issues,Consumer Issues +177626,Consumer Issues,Consumer Issues +177625,Consumer Issues,Consumer Issues +177624,Consumer Issues,Consumer Issues +177604,Consumer Issues,Consumer Issues +177584,Consumer Issues,Consumer Issues +177564,Consumer Issues,Consumer Issues +254049,Industry,Industry +250555,Industry,Industry +177564,Industry,Industry +177149,Industry,Industry +174066,Industry,Industry +170585,Industry,Industry +167535,Industry,Industry +167534,Industry,Industry +167531,Industry,Industry +167529,Industry,Industry +167502,Industry,Industry +160753,Industry,Industry +245006,Industry,Industry +245005,Industry,Industry +245002,Industry,Industry +240634,Industry,Industry +240631,Industry,Industry +240629,Industry,Industry +236409,Industry,Industry +230316,Industry,Industry +230309,Industry,Industry +226672,Industry,Industry +226671,Industry,Industry +226670,Industry,Industry +226667,Industry,Industry +223224,Industry,Industry +223218,Industry,Industry +223216,Industry,Industry +223214,Industry,Industry +223213,Industry,Industry +216749,Industry,Industry +216287,Industry,Industry +212187,Industry,Industry +212037,Industry,Industry +212016,Industry,Industry +212012,Industry,Industry +207218,Industry,Industry +207217,Industry,Industry +207216,Industry,Industry +207215,Industry,Industry +207214,Industry,Industry +207213,Industry,Industry +207211,Industry,Industry +207208,Industry,Industry +207207,Industry,Industry +207204,Industry,Industry +207194,Industry,Industry +207192,Industry,Industry +207146,Industry,Industry +205087,Industry,Industry +205067,Industry,Industry +203229,Industry,Industry +203228,Industry,Industry +201070,Industry,Industry +201068,Industry,Industry +200131,Industry,Industry +200129,Industry,Industry +192664,Industry,Industry +184885,Industry,Industry +177644,Industry,Industry +177626,Industry,Industry +177625,Industry,Industry +177624,Industry,Industry +177604,Industry,Industry +177584,Industry,Industry +378794,Industry,Industry +212016,International Relations,International Relations +185866,Agriculture,Agriculture +173269,Agriculture,Agriculture +169146,Agriculture,Agriculture +169145,Agriculture,Agriculture +201627,Agriculture,Agriculture +189369,Agriculture,Agriculture +189367,Agriculture,Agriculture +189364,Agriculture,Agriculture +189346,Agriculture,Agriculture +185870,Agriculture,Agriculture +189346,Financial Institutions,Financial Institutions +169146,Financial Institutions,Financial Institutions +201627,Financial Institutions,Financial Institutions +189369,Financial Institutions,Financial Institutions +189367,Financial Institutions,Financial Institutions +189369,Industry,Industry +189346,Industry,Industry +169146,Internal Trade,Internal Trade +201627,Internal Trade,Internal Trade +189369,Internal Trade,Internal Trade +189367,Internal Trade,Internal Trade +189364,Internal Trade,Internal Trade +189364,International Relations,International Relations +297249,Employment and Training,Employment and Training +188980,Intellectual Property,Intellectual Property +156849,International Development,International Development +156852,Intellectual Property,Intellectual Property +156852,International Trade,International Trade +159934,Transportation,Transportation +156853,Intellectual Property,Intellectual Property +156853,International Trade,International Trade +156855,Intellectual Property,Intellectual Property +156855,International Trade,International Trade +156858,Intellectual Property,Intellectual Property +156858,International Trade,International Trade +365109,Defence,Defence +166165,Transportation,Transportation +268714,Taxation and Finance,Taxation and Finance +158837,Energy,Energy +158837,Research and Development,Research and Development (R&D) +409454,International Development,International Development +406711,International Relations,International Relations +157089,Government Procurement,Government Procurement +157105,Budget,Budget +157115,Budget,Budget +157142,Privacy and Access to Information,Privacy and Access to Information +324674,Economic Development,Economic Development +357891,Industry,Industry +157158,Budget,Budget +157160,Budget,Budget +157165,Budget,Budget +157170,Budget,Budget +157170,Taxation and Finance,Taxation and Finance +157184,Budget,Budget +157190,Budget,Budget +385049,Security,Security +157193,Budget,Budget +201488,Climate,Climate +369552,Security,Security +374217,Security,Security +424212,Security,Security +385039,Security,Security +366422,Security,Security +167853,Energy,Energy +254348,International Development,International Development +371007,Research and Development,Research and Development (R&D) +159728,Industry,Industry +360842,Immigration,Immigration +157353,Climate,Climate +424141,Security,Security +172585,International Trade,International Trade +193217,Taxation and Finance,Taxation and Finance +529687,Defence,Defence +438038,Government Procurement,Government Procurement +473321,International Trade,International Trade +488473,Transportation,Transportation +158229,International Relations,International Relations +158232,Mining,Mining +157655,International Relations,International Relations +157655,Mining,Mining +157475,Taxation and Finance,Taxation and Finance +369509,Defence,Defence +369509,Government Procurement,Government Procurement +199652,Research and Development,Research and Development (R&D) +157483,Internal Trade,Internal Trade +158149,Immigration,Immigration +157509,Small Business,Small Business +200868,International Trade,International Trade +169745,International Trade,International Trade +157530,Internal Trade,Internal Trade +205215,International Trade,International Trade +195824,International Trade,International Trade +233472,Health,Health +169853,Government Procurement,Government Procurement +418887,Infrastructure,Infrastructure +157603,Research and Development,Research and Development (R&D) +157605,Research and Development,Research and Development (R&D) +168622,Education,Education +243150,Economic Development,Economic Development +157769,Fisheries,Fisheries +157769,Infrastructure,Infrastructure +157889,Health,Health +157777,International Development,International Development +285829,Budget,Budget +267150,Official Languages,Langues officielles +158588,Budget,Budget +158587,Taxation and Finance,Impôts et finances +162629,Financial Institutions,Institutions financières +158588,Housing,Logement +161203,Economic Development,Economic Development +189621,International Trade,International Trade +161969,Industry,Industry +161969,Intellectual Property,Intellectual Property +160028,Health,Health +375584,Taxation and Finance,Taxation and Finance +174764,Consumer Issues,Consumer Issues +174764,Justice and Law Enforcement,Justice and Law Enforcement +159437,Industry,Industry +169164,Research and Development,Research and Development (R&D) +167515,Industry,Industry +160146,Industry,Industry +160140,Industry,Industry +162390,Environment,Environment +162426,Transportation,Transportation +159694,Budget,Budget +163859,Economic Development,Economic Development +159694,Energy,Energy +159694,Environment,Environment +162505,Taxation and Finance,Taxation and Finance +163859,Transportation,Transportation +159334,Industry,Industry +437558,Intellectual Property,Intellectual Property +158324,Industry,Industry +160328,Economic Development,Economic Development +160348,Health,Health +161579,Health,Health +252670,Economic Development,Economic Development +536720,Research and Development,Research and Development (R&D) +508030,Research and Development,Research and Development (R&D) +160130,Intellectual Property,Intellectual Property +458629,Budget,Budget +520041,Climate,Climate +518150,Economic Development,Economic Development +296849,Mining,Mining +249169,Health,Health +197027,Pensions,Pensions +265531,Economic Development,Economic Development +243029,International Development,International Development +158539,Health,Health +158539,Pensions,Pensions +158542,Health,Health +158542,Pensions,Pensions +158545,Health,Health +158545,Pensions,Pensions +158556,Pensions,Pensions +158559,Pensions,Pensions +158563,Economic Development,Economic Development +158563,International Development,International Development +158566,Economic Development,Economic Development +158566,International Development,International Development +158567,Economic Development,Economic Development +158567,International Development,International Development +384397,Environment,Environment +158768,Employment and Training,Employment and Training +163775,International Relations,International Relations +158848,International Relations,International Relations +158849,International Relations,International Relations +158850,International Relations,International Relations +158851,International Relations,International Relations +273733,Economic Development,Economic Development +273733,Forestry,Forestry +479764,Industry,Industry +273733,Research and Development,Research and Development (R&D) +455763,Justice and Law Enforcement,Justice and Law Enforcement +391174,Pensions,Pensions +158991,Small Business,Small Business +375643,Taxation and Finance,Taxation and Finance +159034,Economic Development,Economic Development +159034,International Development,International Development +159035,Economic Development,Economic Development +159035,International Development,International Development +159050,Economic Development,Economic Development +159050,International Development,International Development +202696,Economic Development,Economic Development +159053,International Development,International Development +159084,Economic Development,Economic Development +159084,International Development,International Development +159085,Economic Development,Economic Development +159085,International Development,International Development +375395,Research and Development,Research and Development (R&D) +157752,Economic Development,Economic Development +157752,International Development,International Development +355028,Research and Development,Research and Development (R&D) +245791,Defence,Defence +197142,Labour,Labour +419074,Taxation and Finance,Taxation and Finance +320608,Defence,Defence +372899,Defence,Defence +399291,Defence,Defence +320572,Defence,Defence +493096,Taxation and Finance,Taxation and Finance +164928,Agriculture,Agriculture +164928,Consumer Issues,Consumer Issues +171037,International Relations,International Relations +394999,Tourism,Tourism +415580,Labour,Labour +484049,Budget,Budget +168020,Agriculture,Agriculture +159396,Transportation,Transportation +168021,Agriculture,Agriculture +162195,Intellectual Property,Intellectual Property +217529,Economic Development,Economic Development +199609,Employment and Training,Employment and Training +199592,Environment,Environment +199590,Fisheries,Fisheries +199609,Infrastructure,Infrastructure +250032,Mining,Mining +300830,Pensions,Pensions +159508,International Relations,International Relations +159511,International Relations,International Relations +460444,Budget,Budget +444932,Economic Development,Economic Development +451716,Health,Health +430919,Budget,Budget +483683,Economic Development,Economic Development +476831,Economic Development,Economic Development +205310,Taxation and Finance,Taxation and Finance +517183,Health,Health +159643,Intellectual Property,Intellectual Property +159643,International Trade,International Trade +159643,Industry,Industry +159650,Government Procurement,Government Procurement +159653,Government Procurement,Government Procurement +159660,Government Procurement,Government Procurement +159664,Government Procurement,Government Procurement +159665,Government Procurement,Government Procurement +173345,Energy,Energy +261310,Consumer Issues,Consumer Issues +261310,Financial Institutions,Financial Institutions +261310,Industry,Industry +261310,Taxation and Finance,Taxation and Finance +227851,Infrastructure,Infrastructure +455419,Education,Education +227850,Infrastructure,Infrastructure +526153,Budget,Budget +515378,Economic Development,Economic Development +335966,Pensions,Pensions +349234,Privacy and Access to Information,Privacy and Access to Information +478233,Transportation,Transportation +398626,International Development,International Development +426306,Mining,Mining +159870,Taxation and Finance,Taxation and Finance +159872,Taxation and Finance,Taxation and Finance +159875,Taxation and Finance,Taxation and Finance +159879,Taxation and Finance,Taxation and Finance +369888,International Trade,International Trade +159905,Transportation,Transportation +208287,Government Procurement,Government Procurement +159939,Regional Development,Regional Development +475709,Labour,Travail +160029,Economic Development,Economic Development +160030,Economic Development,Economic Development +162264,Pensions,Pensions +418737,Agriculture,Agriculture +164906,Economic Development,Economic Development +164906,Infrastructure,Infrastructure +161568,Defence,Defence +161568,Government Procurement,Government Procurement +161568,Industry,Industry +161568,Regional Development,Regional Development +161568,Transportation,Transportation +438825,Infrastructure,Infrastructure +185948,Pensions,Pensions +160142,Housing,Housing +160142,Mining,Mining +501037,Climate,Climate +160162,Health,Health +223086,Intellectual Property,Intellectual Property +256895,Research and Development,Research and Development (R&D) +534280,Climate,Climate +209228,Employment and Training,Employment and Training +409200,Health,Health +233877,Regional Development,Regional Development +160329,Labour,Labour +177149,Consumer Issues,Consumer Issues +371282,Industry,Industry +240634,Internal Trade,Internal Trade +245005,International Relations,International Relations +256354,Taxation and Finance,Taxation and Finance +185867,Agriculture,Agriculture +169145,Environment,Environment +189364,Financial Institutions,Financial Institutions +201627,Industry,Industry +189346,Internal Trade,Internal Trade +189367,International Relations,International Relations +205989,International Trade,International Trade +189364,Regional Development,Regional Development +160395,Taxation and Finance,Taxation and Finance +167329,Privacy and Access to Information,Privacy and Access to Information +164504,Industry,Industry +270449,Taxation and Finance,Taxation and Finance +163631,Consumer Issues,Consumer Issues +163628,Health,Health +163629,International Trade,International Trade +220291,Budget,Budget +441100,Housing,Housing +381514,Budget,Budget +166246,Intellectual Property,Intellectual Property +163982,International Development,International Development +167668,Economic Development,Economic Development +167086,Economic Development,Economic Development +167086,Tourism,Tourism +353297,Health,Health +526696,Employment and Training,Employment and Training +391622,Regional Development,Regional Development +185316,Research and Development,Research and Development (R&D) +189346,International Relations,International Relations +201627,International Relations,International Relations +189369,International Relations,International Relations +201627,International Trade,International Trade +189369,International Trade,International Trade +189367,International Trade,International Trade +189364,International Trade,International Trade +189346,International Trade,International Trade +173269,International Trade,International Trade +169146,International Trade,International Trade +207415,International Trade,International Trade +189346,Regional Development,Regional Development +169145,Regional Development,Regional Development +201627,Regional Development,Regional Development +189369,Regional Development,Regional Development +189367,Regional Development,Regional Development +167327,Privacy and Access to Information,Privacy and Access to Information +163629,Consumer Issues,Consumer Issues +163628,Consumer Issues,Consumer Issues +163631,Health,Health +163629,Health,Health +163628,International Trade,International Trade +163631,International Trade,International Trade +220290,Budget,Budget +220547,Budget,Budget +436251,Housing,Housing +426869,Housing,Housing +166705,Housing,Housing +316503,Housing,Housing +316502,Housing,Housing +316501,Housing,Housing +316500,Housing,Housing +297509,Housing,Housing +276071,Housing,Housing +212672,Housing,Housing +212670,Housing,Housing +417251,Housing,Housing +405984,Housing,Housing +405983,Housing,Housing +405982,Housing,Housing +394791,Housing,Housing +394790,Housing,Housing +394789,Housing,Housing +393184,Housing,Housing +393183,Housing,Housing +393180,Housing,Housing +389525,Housing,Housing +388975,Housing,Housing +386112,Housing,Housing +375776,Housing,Housing +366623,Housing,Housing +365398,Housing,Housing +364894,Housing,Housing +364882,Housing,Housing +364881,Housing,Housing +357042,Housing,Housing +355188,Housing,Housing +354901,Housing,Housing +354887,Housing,Housing +354886,Housing,Housing +350020,Housing,Housing +350019,Housing,Housing +350015,Housing,Housing +349783,Housing,Housing +339993,Housing,Housing +339710,Housing,Housing +339509,Housing,Housing +339508,Housing,Housing +339102,Housing,Housing +339101,Housing,Housing +339100,Housing,Housing +339096,Housing,Housing +339091,Housing,Housing +339090,Housing,Housing +339089,Housing,Housing +328018,Housing,Housing +328017,Housing,Housing +328015,Housing,Housing +543586,Housing,Housing +543585,Housing,Housing +532440,Housing,Housing +509992,Housing,Housing +509991,Housing,Housing +509990,Housing,Housing +509989,Housing,Housing +499824,Housing,Housing +473307,Housing,Housing +473305,Housing,Housing +473303,Housing,Housing +462892,Housing,Housing +458953,Housing,Housing +446877,Housing,Housing +441102,Housing,Housing +381513,Budget,Budget +381494,Budget,Budget +381533,Budget,Budget +381531,Budget,Budget +381529,Budget,Budget +381523,Budget,Budget +381517,Budget,Budget +381515,Budget,Budget +166245,Intellectual Property,Intellectual Property +166244,Intellectual Property,Intellectual Property +205210,Intellectual Property,Intellectual Property +199668,Intellectual Property,Intellectual Property +199667,Intellectual Property,Intellectual Property +167667,Economic Development,Economic Development +166664,Economic Development,Economic Development +165299,Economic Development,Economic Development +165298,Economic Development,Economic Development +165297,Economic Development,Economic Development +165296,Economic Development,Economic Development +165206,Economic Development,Economic Development +163280,Economic Development,Economic Development +169947,Economic Development,Economic Development +169934,Economic Development,Economic Development +169933,Economic Development,Economic Development +169704,Economic Development,Economic Development +169358,Economic Development,Economic Development +169357,Economic Development,Economic Development +169356,Economic Development,Economic Development +169355,Economic Development,Economic Development +169354,Economic Development,Economic Development +169353,Economic Development,Economic Development +169352,Economic Development,Economic Development +169351,Economic Development,Economic Development +169350,Economic Development,Economic Development +167670,Economic Development,Economic Development +167669,Economic Development,Economic Development +163251,Economic Development,Economic Development +163250,Economic Development,Economic Development +163251,Tourism,Tourism +163250,Tourism,Tourism +344217,Health,Health +343162,Health,Health +343161,Health,Health +343158,Health,Health +339128,Health,Health +339127,Health,Health +339126,Health,Health +339125,Health,Health +339124,Health,Health +339123,Health,Health +339122,Health,Health +339121,Health,Health +339120,Health,Health +339119,Health,Health +339118,Health,Health +339117,Health,Health +339116,Health,Health +339115,Health,Health +325451,Health,Health +324355,Health,Health +324354,Health,Health +324353,Health,Health +324336,Health,Health +318289,Health,Health +299213,Health,Health +299211,Health,Health +299210,Health,Health +299189,Health,Health +248855,Health,Health +248853,Health,Health +248852,Health,Health +248850,Health,Health +241696,Health,Health +241695,Health,Health +241694,Health,Health +241693,Health,Health +241692,Health,Health +241691,Health,Health +241690,Health,Health +237452,Health,Health +386759,Health,Health +386758,Health,Health +386757,Health,Health +386734,Health,Health +353299,Health,Health +353298,Health,Health +488926,Employment and Training,Employment and Training +473608,Employment and Training,Employment and Training +355166,Employment and Training,Employment and Training +355151,Employment and Training,Employment and Training +327677,Employment and Training,Employment and Training +327602,Employment and Training,Employment and Training +327587,Employment and Training,Employment and Training +327570,Employment and Training,Employment and Training +327567,Employment and Training,Employment and Training +327565,Employment and Training,Employment and Training +327561,Employment and Training,Employment and Training +327547,Employment and Training,Employment and Training +309960,Employment and Training,Employment and Training +373113,Employment and Training,Employment and Training +373112,Employment and Training,Employment and Training +373111,Employment and Training,Employment and Training +373110,Employment and Training,Employment and Training +373109,Employment and Training,Employment and Training +373108,Employment and Training,Employment and Training +373107,Employment and Training,Employment and Training +373106,Employment and Training,Employment and Training +373105,Employment and Training,Employment and Training +373104,Employment and Training,Employment and Training +373103,Employment and Training,Employment and Training +373102,Employment and Training,Employment and Training +373101,Employment and Training,Employment and Training +373100,Employment and Training,Employment and Training +373099,Employment and Training,Employment and Training +373098,Employment and Training,Employment and Training +373097,Employment and Training,Employment and Training +373096,Employment and Training,Employment and Training +373095,Employment and Training,Employment and Training +373094,Employment and Training,Employment and Training +373093,Employment and Training,Employment and Training +373092,Employment and Training,Employment and Training +373091,Employment and Training,Employment and Training +373090,Employment and Training,Employment and Training +373089,Employment and Training,Employment and Training +373088,Employment and Training,Employment and Training +373087,Employment and Training,Employment and Training +373086,Employment and Training,Employment and Training +373085,Employment and Training,Employment and Training +373084,Employment and Training,Employment and Training +373083,Employment and Training,Employment and Training +373082,Employment and Training,Employment and Training +373081,Employment and Training,Employment and Training +373080,Employment and Training,Employment and Training +373079,Employment and Training,Employment and Training +373078,Employment and Training,Employment and Training +373077,Employment and Training,Employment and Training +373076,Employment and Training,Employment and Training +373075,Employment and Training,Employment and Training +373074,Employment and Training,Employment and Training +373073,Employment and Training,Employment and Training +373072,Employment and Training,Employment and Training +373071,Employment and Training,Employment and Training +373070,Employment and Training,Employment and Training +373069,Employment and Training,Employment and Training +373068,Employment and Training,Employment and Training +373066,Employment and Training,Employment and Training +373065,Employment and Training,Employment and Training +373063,Employment and Training,Employment and Training +373062,Employment and Training,Employment and Training +373061,Employment and Training,Employment and Training +373060,Employment and Training,Employment and Training +371950,Employment and Training,Employment and Training +526703,Employment and Training,Employment and Training +526702,Employment and Training,Employment and Training +383187,Regional Development,Regional Development +542748,Regional Development,Regional Development +189041,Regional Development,Regional Development +189039,Regional Development,Regional Development +168374,Regional Development,Regional Development +165744,Regional Development,Regional Development +296870,Regional Development,Regional Development +281869,Regional Development,Regional Development +264289,Regional Development,Regional Development +374707,Regional Development,Regional Development +363622,Regional Development,Regional Development +356510,Regional Development,Regional Development +356508,Regional Development,Regional Development +356506,Regional Development,Regional Development +349429,Regional Development,Regional Development +349425,Regional Development,Regional Development +349421,Regional Development,Regional Development +347895,Regional Development,Regional Development +347893,Regional Development,Regional Development +333096,Regional Development,Regional Development +332112,Regional Development,Regional Development +332111,Regional Development,Regional Development +332110,Regional Development,Regional Development +332109,Regional Development,Regional Development +463815,Regional Development,Regional Development +458923,Regional Development,Regional Development +458916,Regional Development,Regional Development +391627,Regional Development,Regional Development +391624,Regional Development,Regional Development +391623,Regional Development,Regional Development +185315,Research and Development,Research and Development (R&D) +185314,Research and Development,Research and Development (R&D) +166222,Energy,Energy +166220,Energy,Energy +166219,Energy,Energy +166218,Energy,Energy +166217,Energy,Energy +468033,Pensions,Pensions +468031,Pensions,Pensions +188586,Pensions,Pensions +161098,Pensions,Pensions +447727,Pensions,Pensions +394163,Pensions,Pensions +394153,Pensions,Pensions +394152,Pensions,Pensions +394142,Pensions,Pensions +394141,Pensions,Pensions +161101,Pensions,Pensions +211459,Pensions,Pensions +167884,Pensions,Pensions +468032,Pensions,Pensions +468029,Pensions,Pensions +447722,Pensions,Pensions +442607,Pensions,Pensions +394180,Pensions,Pensions +394174,Pensions,Pensions +447721,Pensions,Pensions +447719,Pensions,Pensions +161103,Pensions,Pensions +193448,Pensions,Pensions +188584,Pensions,Pensions +394176,Pensions,Pensions +394171,Pensions,Pensions +394165,Pensions,Pensions +394159,Pensions,Pensions +391175,Pensions,Pensions +376742,Pensions,Pensions +376741,Pensions,Pensions +394146,Pensions,Pensions +161110,Pensions,Pensions +468030,Pensions,Pensions +447728,Pensions,Pensions +394178,Pensions,Pensions +394166,Pensions,Pensions +394160,Pensions,Pensions +394156,Pensions,Pensions +394150,Pensions,Pensions +324209,Energy,Energy +244230,Energy,Energy +340737,Energy,Energy +338209,Energy,Energy +336790,Energy,Energy +338209,Environment,Environment +366022,International Trade,International Trade +209009,International Trade,International Trade +192265,International Trade,International Trade +230342,International Trade,International Trade +201447,International Trade,International Trade +479353,International Trade,International Trade +389551,International Trade,International Trade +230357,International Trade,International Trade +209015,International Trade,International Trade +338313,International Trade,International Trade +335538,International Trade,International Trade +296271,International Trade,International Trade +289996,International Trade,International Trade +333202,International Trade,International Trade +205393,International Trade,International Trade +479354,International Trade,International Trade +212758,Pensions,Pensions +161194,Pensions,Pensions +303514,Pensions,Pensions +487231,Budget,Budget +399991,Budget,Budget +161194,Budget,Budget +245503,Budget,Budget +219713,Budget,Budget +392444,Budget,Budget +392438,Budget,Budget +388593,Budget,Budget +388592,Budget,Budget +388589,Budget,Budget +388554,Budget,Budget +388546,Budget,Budget +388535,Budget,Budget +388532,Budget,Budget +385936,Budget,Budget +385935,Budget,Budget +385869,Budget,Budget +385868,Budget,Budget +385840,Budget,Budget +385839,Budget,Budget +383586,Budget,Budget +383585,Budget,Budget +383584,Budget,Budget +383583,Budget,Budget +382642,Budget,Budget +382640,Budget,Budget +382633,Budget,Budget +381658,Budget,Budget +381657,Budget,Budget +381656,Budget,Budget +381655,Budget,Budget +381654,Budget,Budget +381652,Budget,Budget +381651,Budget,Budget +381648,Budget,Budget +380246,Budget,Budget +374717,Budget,Budget +374716,Budget,Budget +374715,Budget,Budget +374711,Budget,Budget +373500,Budget,Budget +372733,Budget,Budget +372724,Budget,Budget +372681,Budget,Budget +370724,Budget,Budget +370722,Budget,Budget +329474,Budget,Budget +313352,Budget,Budget +543432,Budget,Budget +543426,Budget,Budget +541714,Budget,Budget +541705,Budget,Budget +515355,Budget,Budget +515354,Budget,Budget +515353,Budget,Budget +514202,Budget,Budget +512910,Budget,Budget +510506,Budget,Budget +510460,Budget,Budget +504600,Budget,Budget +504597,Budget,Budget +504595,Budget,Budget +504590,Budget,Budget +501602,Budget,Budget +501600,Budget,Budget +501599,Budget,Budget +501598,Budget,Budget +501301,Budget,Budget +501300,Budget,Budget +501298,Budget,Budget +498263,Budget,Budget +495085,Budget,Budget +495076,Budget,Budget +495075,Budget,Budget +490874,Budget,Budget +490504,Budget,Budget +490493,Budget,Budget +490490,Budget,Budget +167953,Energy,Energy +167951,Energy,Energy +167953,Environment,Environment +167951,Environment,Environment +207588,Regional Development,Regional Development +508083,Defence,Defence +493477,Defence,Defence +162057,Defence,Defence +162055,Defence,Defence +162051,Defence,Defence +162049,Defence,Defence +162048,Defence,Defence +162047,Defence,Defence +162046,Defence,Defence +365038,Defence,Defence +362464,Defence,Defence +362462,Defence,Defence +330147,Defence,Defence +330146,Defence,Defence +328040,Defence,Defence +318789,Defence,Defence +296774,Defence,Defence +275691,Defence,Defence +462057,Defence,Defence +460649,Defence,Defence +460648,Defence,Defence +459788,Defence,Defence +458709,Defence,Defence +457409,Defence,Defence +452759,Defence,Defence +449604,Defence,Defence +427072,Defence,Defence +414002,Defence,Defence +408232,Defence,Defence +383599,Defence,Defence +383598,Defence,Defence +383597,Defence,Defence +376849,Defence,Defence +376841,Defence,Defence +375082,Defence,Defence +493494,Government Procurement,Government Procurement +493493,Government Procurement,Government Procurement +162057,Government Procurement,Government Procurement +162055,Government Procurement,Government Procurement +162051,Government Procurement,Government Procurement +162049,Government Procurement,Government Procurement +162048,Government Procurement,Government Procurement +162047,Government Procurement,Government Procurement +162046,Government Procurement,Government Procurement +376860,Government Procurement,Government Procurement +374927,Government Procurement,Government Procurement +366672,Government Procurement,Government Procurement +365040,Government Procurement,Government Procurement +365039,Government Procurement,Government Procurement +365035,Government Procurement,Government Procurement +363509,Government Procurement,Government Procurement +360864,Government Procurement,Government Procurement +358392,Government Procurement,Government Procurement +354344,Government Procurement,Government Procurement +343925,Government Procurement,Government Procurement +338749,Government Procurement,Government Procurement +330146,Government Procurement,Government Procurement +328040,Government Procurement,Government Procurement +296776,Government Procurement,Government Procurement +286769,Government Procurement,Government Procurement +269311,Government Procurement,Government Procurement +460650,Government Procurement,Government Procurement +460644,Government Procurement,Government Procurement +427072,Government Procurement,Government Procurement +414002,Government Procurement,Government Procurement +408232,Government Procurement,Government Procurement +391253,Government Procurement,Government Procurement +391247,Government Procurement,Government Procurement +381439,Government Procurement,Government Procurement +538497,Government Procurement,Government Procurement +515698,Government Procurement,Government Procurement +514740,Government Procurement,Government Procurement +511347,Government Procurement,Government Procurement +162057,Industry,Industry +296776,Industry,Industry +162055,Industry,Industry +162051,Industry,Industry +162049,Industry,Industry +162048,Industry,Industry +443773,Regional Development,Regional Development +443771,Regional Development,Regional Development +162057,Regional Development,Regional Development +162055,Regional Development,Regional Development +162051,Regional Development,Regional Development +162049,Regional Development,Regional Development +162048,Regional Development,Regional Development +162047,Regional Development,Regional Development +362465,Regional Development,Regional Development +362463,Regional Development,Regional Development +162048,Transportation,Transportation +162047,Transportation,Transportation +162057,Transportation,Transportation +162055,Transportation,Transportation +162051,Transportation,Transportation +461747,Economic Development,Economic Development +460566,Economic Development,Economic Development +167356,Economic Development,Economic Development +316576,Economic Development,Economic Development +295369,Economic Development,Economic Development +264312,Economic Development,Economic Development +238931,Economic Development,Economic Development +413567,Economic Development,Economic Development +413488,Economic Development,Economic Development +413478,Economic Development,Economic Development +413466,Economic Development,Economic Development +413460,Economic Development,Economic Development +389076,Economic Development,Economic Development +389073,Economic Development,Economic Development +389069,Economic Development,Economic Development +389068,Economic Development,Economic Development +379209,Economic Development,Economic Development +379206,Economic Development,Economic Development +378861,Economic Development,Economic Development +378860,Economic Development,Economic Development +378859,Economic Development,Economic Development +378858,Economic Development,Economic Development +378856,Economic Development,Economic Development +375400,Economic Development,Economic Development +375399,Economic Development,Economic Development +375398,Economic Development,Economic Development +375397,Economic Development,Economic Development +375396,Economic Development,Economic Development +375395,Economic Development,Economic Development +369136,Economic Development,Economic Development +369134,Economic Development,Economic Development +355028,Economic Development,Economic Development +179144,Budget,Budget +175411,Budget,Budget +165788,Budget,Budget +161454,Budget,Budget +179624,Budget,Budget +179584,Budget,Budget +165789,Budget,Budget +161466,Budget,Budget +163205,Fisheries,Fisheries +163204,Fisheries,Fisheries +355024,Agriculture,Agriculture +354833,Agriculture,Agriculture +161786,Agriculture,Agriculture +355024,Industry,Industry +354833,Industry,Industry +161786,Industry,Industry +161784,International Trade,International Trade +331770,Economic Development,Economic Development +331769,Economic Development,Economic Development +192544,Economic Development,Economic Development +189647,Economic Development,Economic Development +189645,Economic Development,Economic Development +189643,Economic Development,Economic Development +188048,Economic Development,Economic Development +188046,Economic Development,Economic Development +181345,Economic Development,Economic Development +181344,Economic Development,Economic Development +176147,Economic Development,Economic Development +176108,Economic Development,Economic Development +176107,Economic Development,Economic Development +176106,Economic Development,Economic Development +175064,Economic Development,Economic Development +174844,Economic Development,Economic Development +174840,Economic Development,Economic Development +174839,Economic Development,Economic Development +174269,Economic Development,Economic Development +174268,Economic Development,Economic Development +174266,Economic Development,Economic Development +170724,Economic Development,Economic Development +170338,Economic Development,Economic Development +168970,Economic Development,Economic Development +168621,Economic Development,Economic Development +165369,Economic Development,Economic Development +164148,Economic Development,Economic Development +164052,Economic Development,Economic Development +164051,Economic Development,Economic Development +164049,Economic Development,Economic Development +164048,Economic Development,Economic Development +299949,Economic Development,Economic Development +270793,Economic Development,Economic Development +266394,Economic Development,Economic Development +266393,Economic Development,Economic Development +266392,Economic Development,Economic Development +266391,Economic Development,Economic Development +266390,Economic Development,Economic Development +266389,Economic Development,Economic Development +250278,Economic Development,Economic Development +240812,Economic Development,Economic Development +240809,Economic Development,Economic Development +240803,Economic Development,Economic Development +240796,Economic Development,Economic Development +240793,Economic Development,Economic Development +240792,Economic Development,Economic Development +240789,Economic Development,Economic Development +240769,Economic Development,Economic Development +240730,Economic Development,Economic Development +229851,Economic Development,Economic Development +229841,Economic Development,Economic Development +227370,Economic Development,Economic Development +227367,Economic Development,Economic Development +227362,Economic Development,Economic Development +227360,Economic Development,Economic Development +223105,Economic Development,Economic Development +223097,Economic Development,Economic Development +216010,Economic Development,Economic Development +216009,Economic Development,Economic Development +211848,Economic Development,Economic Development +211825,Economic Development,Economic Development +211590,Economic Development,Economic Development +211589,Economic Development,Economic Development +211569,Economic Development,Economic Development +211563,Economic Development,Economic Development +206529,Economic Development,Economic Development +201527,Economic Development,Economic Development +197990,Economic Development,Economic Development +197612,Economic Development,Economic Development +197611,Economic Development,Economic Development +197609,Economic Development,Economic Development +197608,Economic Development,Economic Development +197607,Economic Development,Economic Development +197592,Economic Development,Economic Development +197590,Economic Development,Economic Development +197589,Economic Development,Economic Development +197588,Economic Development,Economic Development +331772,Economic Development,Economic Development +176344,Fisheries,Fisheries +176326,Fisheries,Fisheries +331770,Fisheries,Fisheries +189645,Infrastructure,Infrastructure +266390,International Development,International Development +266389,International Development,International Development +266394,International Development,International Development +266392,International Development,International Development +331770,Regional Development,Regional Development +331769,Regional Development,Regional Development +197592,Regional Development,Regional Development +197590,Regional Development,Regional Development +189645,Regional Development,Regional Development +174844,Regional Development,Regional Development +164148,Regional Development,Regional Development +331772,Regional Development,Regional Development +163920,Energy,Energy +163915,Energy,Energy +163925,Energy,Energy +163920,Environment,Environment +163915,Environment,Environment +163925,Environment,Environment +458124,Agriculture,Agriculture +431373,Agriculture,Agriculture +420513,Agriculture,Agriculture +420512,Agriculture,Agriculture +420511,Agriculture,Agriculture +370774,Agriculture,Agriculture +350061,Agriculture,Agriculture +163283,Research and Development,Recherche et développement (R&D) +163282,Research and Development,Recherche et développement (R&D) +169086,Research and Development,Recherche et développement (R&D) +357576,Agriculture,Agriculture +349192,Agriculture,Agriculture +357579,Agriculture,Agriculture +276190,Consumer Issues,Consumer Issues +276189,Consumer Issues,Consumer Issues +348270,Consumer Issues,Consumer Issues +348268,Consumer Issues,Consumer Issues +347215,Consumer Issues,Consumer Issues +347214,Consumer Issues,Consumer Issues +341560,Consumer Issues,Consumer Issues +339790,Consumer Issues,Consumer Issues +339789,Consumer Issues,Consumer Issues +337830,Consumer Issues,Consumer Issues +337829,Consumer Issues,Consumer Issues +334832,Consumer Issues,Consumer Issues +334831,Consumer Issues,Consumer Issues +334830,Consumer Issues,Consumer Issues +309129,Consumer Issues,Consumer Issues +325630,Economic Development,Economic Development +300949,Economic Development,Economic Development +256790,Economic Development,Economic Development +253795,Economic Development,Economic Development +253793,Economic Development,Economic Development +359122,Economic Development,Economic Development +355921,Economic Development,Economic Development +352538,Economic Development,Economic Development +349194,Economic Development,Economic Development +349192,Economic Development,Economic Development +349189,Economic Development,Economic Development +330389,Economic Development,Economic Development +276190,Health,Health +276189,Health,Health +253793,Health,Health +249814,Health,Health +212687,Health,Health +350323,Health,Health +350322,Health,Health +349194,Health,Health +347218,Health,Health +347214,Health,Health +341560,Health,Health +336513,Health,Health +336351,Health,Health +336350,Health,Health +336349,Health,Health +334550,Health,Health +334549,Health,Health +309129,Health,Health +300949,Health,Health +294469,Health,Health +330389,Industry,Industry +328949,Industry,Industry +352740,Industry,Industry +350322,Industry,Industry +348638,Industry,Industry +348637,Industry,Industry +348270,Industry,Industry +348268,Industry,Industry +347218,Industry,Industry +347216,Industry,Industry +347215,Industry,Industry +341560,Industry,Industry +339790,Industry,Industry +339789,Industry,Industry +337830,Industry,Industry +337829,Industry,Industry +336513,Industry,Industry +336351,Industry,Industry +336350,Industry,Industry +336349,Industry,Industry +334832,Industry,Industry +334831,Industry,Industry +334830,Industry,Industry +334829,Industry,Industry +357577,International Trade,International Trade +357576,International Trade,International Trade +352740,International Trade,International Trade +352538,International Trade,International Trade +349194,International Trade,International Trade +349189,International Trade,International Trade +334829,International Trade,International Trade +328949,International Trade,International Trade +317974,International Trade,International Trade +317974,Taxation and Finance,Taxation and Finance +317973,Taxation and Finance,Taxation and Finance +249814,Taxation and Finance,Taxation and Finance +330386,Taxation and Finance,Taxation and Finance +200087,Budget,Budget +200084,Budget,Budget +303789,Budget,Budget +263489,Budget,Budget +303643,Climate,Climate +303627,Climate,Climate +254180,Climate,Climate +245113,Climate,Climate +245112,Climate,Climate +245110,Climate,Climate +245109,Climate,Climate +245103,Climate,Climate +245102,Climate,Climate +245096,Climate,Climate +245094,Climate,Climate +245089,Climate,Climate +245087,Climate,Climate +241118,Climate,Climate +236330,Climate,Climate +230088,Climate,Climate +223648,Climate,Climate +223646,Climate,Climate +207488,Climate,Climate +207483,Climate,Climate +207475,Climate,Climate +200087,Climate,Climate +200084,Climate,Climate +200080,Climate,Climate +200077,Climate,Climate +200072,Climate,Climate +195028,Climate,Climate +195027,Climate,Climate +195026,Climate,Climate +195025,Climate,Climate +195024,Climate,Climate +195020,Climate,Climate +175249,Climate,Climate +170694,Climate,Climate +170693,Climate,Climate +170692,Climate,Climate +170691,Climate,Climate +170690,Climate,Climate +170685,Climate,Climate +170683,Climate,Climate +170680,Climate,Climate +170678,Climate,Climate +170677,Climate,Climate +170676,Climate,Climate +165084,Climate,Climate +356455,Climate,Climate +342128,Climate,Climate +342127,Climate,Climate +342126,Climate,Climate +342125,Climate,Climate +342124,Climate,Climate +342123,Climate,Climate +342122,Climate,Climate +342121,Climate,Climate +342120,Climate,Climate +342119,Climate,Climate +342118,Climate,Climate +342117,Climate,Climate +319056,Climate,Climate +310374,Climate,Climate +304533,Climate,Climate +303793,Climate,Climate +303789,Climate,Climate +166664,Government Procurement,Government Procurement +165913,Government Procurement,Government Procurement +165299,Government Procurement,Government Procurement +165298,Government Procurement,Government Procurement +165297,Government Procurement,Government Procurement +165296,Government Procurement,Government Procurement +165206,Government Procurement,Government Procurement +165164,Government Procurement,Government Procurement +164704,Government Procurement,Government Procurement +164289,Government Procurement,Government Procurement +163644,Government Procurement,Government Procurement +163304,Government Procurement,Government Procurement +163280,Government Procurement,Government Procurement +162845,Government Procurement,Government Procurement +162844,Government Procurement,Government Procurement +162843,Government Procurement,Government Procurement +162841,Government Procurement,Government Procurement +162840,Government Procurement,Government Procurement +162839,Government Procurement,Government Procurement +162838,Government Procurement,Government Procurement +162837,Government Procurement,Government Procurement +162835,Government Procurement,Government Procurement +162828,Government Procurement,Government Procurement +162037,Government Procurement,Government Procurement +162028,Government Procurement,Government Procurement +202524,Government Procurement,Government Procurement +169947,Government Procurement,Government Procurement +169934,Government Procurement,Government Procurement +169933,Government Procurement,Government Procurement +169704,Government Procurement,Government Procurement +169358,Government Procurement,Government Procurement +169357,Government Procurement,Government Procurement +169356,Government Procurement,Government Procurement +169355,Government Procurement,Government Procurement +169354,Government Procurement,Government Procurement +169353,Government Procurement,Government Procurement +169352,Government Procurement,Government Procurement +169351,Government Procurement,Government Procurement +169350,Government Procurement,Government Procurement +167670,Government Procurement,Government Procurement +167669,Government Procurement,Government Procurement +167668,Government Procurement,Government Procurement +166664,International Relations,International Relations +165299,International Relations,International Relations +165298,International Relations,International Relations +165297,International Relations,International Relations +165296,International Relations,International Relations +165206,International Relations,International Relations +165164,International Relations,International Relations +164704,International Relations,International Relations +164289,International Relations,International Relations +163644,International Relations,International Relations +163280,International Relations,International Relations +162845,International Relations,International Relations +162844,International Relations,International Relations +162843,International Relations,International Relations +162842,International Relations,International Relations +162841,International Relations,International Relations +162840,International Relations,International Relations +162839,International Relations,International Relations +162838,International Relations,International Relations +162837,International Relations,International Relations +162835,International Relations,International Relations +162828,International Relations,International Relations +162045,International Relations,International Relations +162044,International Relations,International Relations +162037,International Relations,International Relations +162028,International Relations,International Relations +176751,International Relations,International Relations +169947,International Relations,International Relations +169934,International Relations,International Relations +169933,International Relations,International Relations +169704,International Relations,International Relations +169358,International Relations,International Relations +169357,International Relations,International Relations +169356,International Relations,International Relations +169355,International Relations,International Relations +169354,International Relations,International Relations +169353,International Relations,International Relations +169352,International Relations,International Relations +169351,International Relations,International Relations +169350,International Relations,International Relations +167670,International Relations,International Relations +167669,International Relations,International Relations +167668,International Relations,International Relations +347107,Security,Security +409395,Security,Security +542339,Defence,Défense +542333,Defence,Défense +238109,Defence,Défense +238089,Defence,Défense +162165,Defence,Défense +358462,Defence,Défense +353045,Defence,Défense +352483,Defence,Défense +352481,Defence,Défense +337371,Defence,Défense +332590,Defence,Défense +332589,Defence,Défense +299496,Defence,Défense +299493,Defence,Défense +299491,Defence,Défense +287849,Defence,Défense +261473,Defence,Défense +478100,Defence,Défense +455260,Defence,Défense +455249,Defence,Défense +455247,Defence,Défense +455245,Defence,Défense +455231,Defence,Défense +430564,Defence,Défense +430563,Defence,Défense +408330,Defence,Défense +515326,Climate,Climate +515325,Climate,Climate +330150,Climate,Climate +515324,Climate,Climate +515323,Climate,Climate +515321,Climate,Climate +514037,Climate,Climate +512731,Climate,Climate +512730,Climate,Climate +512729,Climate,Climate +512728,Climate,Climate +512727,Climate,Climate +512726,Climate,Climate +512723,Climate,Climate +510408,Climate,Climate +510407,Climate,Climate +510406,Climate,Climate +509819,Climate,Climate +509815,Climate,Climate +509314,Climate,Climate +504389,Climate,Climate +504388,Climate,Climate +504386,Climate,Climate +504383,Climate,Climate +504382,Climate,Climate +504381,Climate,Climate +504380,Climate,Climate +504379,Climate,Climate +504376,Climate,Climate +502535,Climate,Climate +502529,Climate,Climate +502528,Climate,Climate +502526,Climate,Climate +502517,Climate,Climate +502516,Climate,Climate +499598,Climate,Climate +499592,Climate,Climate +499582,Climate,Climate +499579,Climate,Climate +499578,Climate,Climate +499574,Climate,Climate +496405,Climate,Climate +496402,Climate,Climate +493267,Climate,Climate +493226,Climate,Climate +490755,Climate,Climate +481354,Climate,Climate +478389,Climate,Climate +468912,Climate,Climate +468901,Climate,Climate +468880,Climate,Climate +468879,Climate,Climate +468874,Climate,Climate +464243,Climate,Climate +460917,Climate,Climate +447247,Climate,Climate +447244,Climate,Climate +447242,Climate,Climate +447241,Climate,Climate +445363,Climate,Climate +445360,Climate,Climate +445359,Climate,Climate +544333,Climate,Climate +544332,Climate,Climate +544331,Climate,Climate +541834,Climate,Climate +541832,Climate,Climate +541830,Climate,Climate +541829,Climate,Climate +541827,Climate,Climate +541826,Climate,Climate +541824,Climate,Climate +541822,Climate,Climate +539590,Climate,Climate +539100,Climate,Climate +539099,Climate,Climate +539098,Climate,Climate +539097,Climate,Climate +539096,Climate,Climate +539095,Climate,Climate +539094,Climate,Climate +537103,Climate,Climate +537102,Climate,Climate +537101,Climate,Climate +537099,Climate,Climate +537097,Climate,Climate +537094,Climate,Climate +537092,Climate,Climate +536875,Climate,Climate +536861,Climate,Climate +536860,Climate,Climate +536858,Climate,Climate +534337,Climate,Climate +534335,Climate,Climate +534331,Climate,Climate +531197,Climate,Climate +531192,Climate,Climate +531189,Climate,Climate +529012,Climate,Climate +528997,Climate,Climate +528995,Climate,Climate +528992,Climate,Climate +528986,Climate,Climate +527684,Climate,Climate +527683,Climate,Climate +527682,Climate,Climate +526510,Climate,Climate +526509,Climate,Climate +526507,Climate,Climate +526505,Climate,Climate +526503,Climate,Climate +524419,Climate,Climate +524418,Climate,Climate +524415,Climate,Climate +524085,Climate,Climate +524084,Climate,Climate +522525,Climate,Climate +522520,Climate,Climate +519592,Climate,Climate +519585,Climate,Climate +516797,Climate,Climate +516796,Climate,Climate +516794,Climate,Climate +516792,Climate,Climate +516790,Climate,Climate +516789,Climate,Climate +516788,Climate,Climate +516785,Climate,Climate +516784,Climate,Climate +516782,Climate,Climate +515909,Climate,Climate +162517,Financial Institutions,Financial Institutions +162507,Financial Institutions,Financial Institutions +199890,Financial Institutions,Financial Institutions +164337,Financial Institutions,Financial Institutions +409397,Security,Security +402765,Security,Security +162332,Security,Security +390796,Security,Security +387319,Security,Security +442899,International Relations,International Relations +442898,International Relations,International Relations +162319,International Relations,International Relations +264155,International Relations,International Relations +264151,International Relations,International Relations +244824,International Relations,International Relations +227959,International Relations,International Relations +227957,International Relations,International Relations +197039,International Relations,International Relations +192765,International Relations,International Relations +192764,International Relations,International Relations +192759,International Relations,International Relations +192756,International Relations,International Relations +192754,International Relations,International Relations +192752,International Relations,International Relations +192186,International Relations,International Relations +192184,International Relations,International Relations +191048,International Relations,International Relations +191045,International Relations,International Relations +405506,International Relations,International Relations +405504,International Relations,International Relations +399524,International Relations,International Relations +399523,International Relations,International Relations +399522,International Relations,International Relations +524434,International Relations,International Relations +482576,International Relations,International Relations +482574,International Relations,International Relations +442906,International Relations,International Relations +442904,International Relations,International Relations +435234,Security,Security +428860,Security,Security +162340,Security,Security +387871,Security,Security +390809,Security,Security +343855,Security,Security +162350,Security,Security +428877,Security,Security +409383,Security,Security +529066,Budget,Budget +529059,Budget,Budget +387262,Budget,Budget +387257,Budget,Budget +385440,Budget,Budget +376137,Budget,Budget +525656,Budget,Budget +505288,Budget,Budget +505286,Budget,Budget +505283,Budget,Budget +505244,Budget,Budget +501873,Budget,Budget +498467,Budget,Budget +498426,Budget,Budget +498410,Budget,Budget +480037,Budget,Budget +400306,Budget,Budget +531535,Budget,Budget +531506,Budget,Budget +529094,Budget,Budget +528985,Employment and Training,Employment and Training +528837,Employment and Training,Employment and Training +175976,Employment and Training,Employment and Training +175975,Employment and Training,Employment and Training +175974,Employment and Training,Employment and Training +175973,Employment and Training,Employment and Training +175972,Employment and Training,Employment and Training +175971,Employment and Training,Employment and Training +175970,Employment and Training,Employment and Training +175969,Employment and Training,Employment and Training +175968,Employment and Training,Employment and Training +175966,Employment and Training,Employment and Training +174855,Employment and Training,Employment and Training +174850,Employment and Training,Employment and Training +174849,Employment and Training,Employment and Training +162347,Employment and Training,Employment and Training +372685,Employment and Training,Employment and Training +325770,Employment and Training,Employment and Training +320429,Employment and Training,Employment and Training +278129,Employment and Training,Employment and Training +273608,Employment and Training,Employment and Training +273607,Employment and Training,Employment and Training +273603,Employment and Training,Employment and Training +273601,Employment and Training,Employment and Training +264151,Employment and Training,Employment and Training +230573,Employment and Training,Employment and Training +227989,Employment and Training,Employment and Training +222641,Employment and Training,Employment and Training +222638,Employment and Training,Employment and Training +192720,Employment and Training,Employment and Training +192719,Employment and Training,Employment and Training +192718,Employment and Training,Employment and Training +192717,Employment and Training,Employment and Training +192714,Employment and Training,Employment and Training +192713,Employment and Training,Employment and Training +192708,Employment and Training,Employment and Training +192328,Employment and Training,Employment and Training +192327,Employment and Training,Employment and Training +192326,Employment and Training,Employment and Training +192191,Employment and Training,Employment and Training +192190,Employment and Training,Employment and Training +192189,Employment and Training,Employment and Training +192188,Employment and Training,Employment and Training +175989,Employment and Training,Employment and Training +175987,Employment and Training,Employment and Training +175986,Employment and Training,Employment and Training +175983,Employment and Training,Employment and Training +175982,Employment and Training,Employment and Training +175981,Employment and Training,Employment and Training +175980,Employment and Training,Employment and Training +175979,Employment and Training,Employment and Training +175978,Employment and Training,Employment and Training +175977,Employment and Training,Employment and Training +410455,Employment and Training,Employment and Training +405499,Employment and Training,Employment and Training +405495,Employment and Training,Employment and Training +405491,Employment and Training,Employment and Training +403486,Employment and Training,Employment and Training +396630,Employment and Training,Employment and Training +389092,Employment and Training,Employment and Training +389089,Employment and Training,Employment and Training +383627,Employment and Training,Employment and Training +383626,Employment and Training,Employment and Training +383625,Employment and Training,Employment and Training +383624,Employment and Training,Employment and Training +383622,Employment and Training,Employment and Training +482576,Employment and Training,Employment and Training +466295,Employment and Training,Employment and Training +445873,Employment and Training,Employment and Training +422923,Employment and Training,Employment and Training +422922,Employment and Training,Employment and Training +422921,Employment and Training,Employment and Training +422920,Employment and Training,Employment and Training +422919,Employment and Training,Employment and Training +422917,Employment and Training,Employment and Training +422916,Employment and Training,Employment and Training +422915,Employment and Training,Employment and Training +422914,Employment and Training,Employment and Training +422913,Employment and Training,Employment and Training +422912,Employment and Training,Employment and Training +422911,Employment and Training,Employment and Training +422910,Employment and Training,Employment and Training +422909,Employment and Training,Employment and Training +422908,Employment and Training,Employment and Training +422907,Employment and Training,Employment and Training +422906,Employment and Training,Employment and Training +422905,Employment and Training,Employment and Training +422904,Employment and Training,Employment and Training +422903,Employment and Training,Employment and Training +422902,Employment and Training,Employment and Training +422900,Employment and Training,Employment and Training +422899,Employment and Training,Employment and Training +422898,Employment and Training,Employment and Training +422897,Employment and Training,Employment and Training +422896,Employment and Training,Employment and Training +422895,Employment and Training,Employment and Training +422892,Employment and Training,Employment and Training +422888,Employment and Training,Employment and Training +422887,Employment and Training,Employment and Training +544158,Employment and Training,Employment and Training +544155,Employment and Training,Employment and Training +544150,Employment and Training,Employment and Training +541470,Employment and Training,Employment and Training +541461,Employment and Training,Employment and Training +185369,International Relations,International Relations +185362,International Relations,International Relations +162430,International Relations,International Relations +202876,International Relations,International Relations +175623,International Relations,International Relations +162493,International Relations,International Relations +195007,International Relations,International Relations +195005,International Relations,International Relations +180453,International Relations,International Relations +162498,International Relations,International Relations +185370,International Relations,International Relations +185366,International Relations,International Relations +183164,Industry,Industry +175802,Industry,Industry +183164,Intellectual Property,Intellectual Property +175802,Intellectual Property,Intellectual Property +460280,Education,Education +383341,Budget,Budget +382122,Budget,Budget +173485,Budget,Budget +170896,Budget,Budget +169054,Budget,Budget +169052,Budget,Budget +162670,Budget,Budget +353741,Budget,Budget +350304,Budget,Budget +348238,Budget,Budget +347278,Budget,Budget +343597,Budget,Budget +343579,Budget,Budget +340177,Budget,Budget +340176,Budget,Budget +340175,Budget,Budget +334959,Budget,Budget +334958,Budget,Budget +333175,Budget,Budget +333171,Budget,Budget +315152,Budget,Budget +309591,Budget,Budget +229100,Budget,Budget +225727,Budget,Budget +225612,Budget,Budget +225610,Budget,Budget +222751,Budget,Budget +222749,Budget,Budget +221788,Budget,Budget +221787,Budget,Budget +216027,Budget,Budget +211468,Budget,Budget +210647,Budget,Budget +210572,Budget,Budget +210571,Budget,Budget +210570,Budget,Budget +210569,Budget,Budget +210287,Budget,Budget +205487,Budget,Budget +205391,Budget,Budget +205390,Budget,Budget +197187,Budget,Budget +543616,Budget,Budget +541086,Budget,Budget +537141,Budget,Budget +533760,Budget,Budget +533758,Budget,Budget +528486,Budget,Budget +524892,Budget,Budget +524878,Budget,Budget +521864,Budget,Budget +521863,Budget,Budget +521837,Budget,Budget +521828,Budget,Budget +521823,Budget,Budget +519299,Budget,Budget +517209,Budget,Budget +517203,Budget,Budget +517201,Budget,Budget +515455,Budget,Budget +513921,Budget,Budget +512651,Budget,Budget +510253,Budget,Budget +507187,Budget,Budget +507181,Budget,Budget +504321,Budget,Budget +504296,Budget,Budget +501467,Budget,Budget +498056,Budget,Budget +495164,Budget,Budget +489469,Budget,Budget +483709,Budget,Budget +483698,Budget,Budget +483685,Budget,Budget +483677,Budget,Budget +481249,Budget,Budget +451734,Budget,Budget +449529,Budget,Budget +449513,Budget,Budget +447473,Budget,Budget +447462,Budget,Budget +444961,Budget,Budget +444930,Budget,Budget +443608,Budget,Budget +443606,Budget,Budget +441315,Budget,Budget +441303,Budget,Budget +441298,Budget,Budget +441296,Budget,Budget +437828,Budget,Budget +437822,Budget,Budget +437820,Budget,Budget +437817,Budget,Budget +437813,Budget,Budget +437812,Budget,Budget +437810,Budget,Budget +437808,Budget,Budget +437802,Budget,Budget +437781,Budget,Budget +434806,Budget,Budget +434804,Budget,Budget +434775,Budget,Budget +433477,Budget,Budget +432217,Budget,Budget +430933,Budget,Budget +430925,Budget,Budget +428429,Budget,Budget +426153,Budget,Budget +418071,Budget,Budget +415944,Budget,Budget +413566,Budget,Budget +413538,Budget,Budget +413519,Budget,Budget +413502,Budget,Budget +413199,Budget,Budget +413186,Budget,Budget +413175,Budget,Budget +409769,Budget,Budget +407838,Budget,Budget +407835,Budget,Budget +407834,Budget,Budget +396561,Budget,Budget +393909,Budget,Budget +393903,Budget,Budget +392418,Budget,Budget +392414,Budget,Budget +390097,Budget,Budget +385093,Budget,Budget +166129,Environment,Environment +166128,Environment,Environment +379299,Industry,Industry +379289,Industry,Industry +311991,Industry,Industry +301369,Industry,Industry +383334,Industry,Industry +517066,Housing,Housing +515233,Housing,Housing +167108,Housing,Housing +167107,Housing,Housing +167106,Housing,Housing +165032,Housing,Housing +165028,Housing,Housing +207165,Housing,Housing +207163,Housing,Housing +200021,Housing,Housing +200018,Housing,Housing +200017,Housing,Housing +200015,Housing,Housing +193948,Housing,Housing +193945,Housing,Housing +193944,Housing,Housing +193925,Housing,Housing +193924,Housing,Housing +185554,Housing,Housing +179244,Housing,Housing +179204,Housing,Housing +175309,Housing,Housing +167109,Housing,Housing +341203,Housing,Housing +338072,Housing,Housing +327233,Housing,Housing +327231,Housing,Housing +327230,Housing,Housing +318664,Housing,Housing +315902,Housing,Housing +315901,Housing,Housing +312692,Housing,Housing +286631,Housing,Housing +277403,Housing,Housing +272082,Housing,Housing +264082,Housing,Housing +239889,Housing,Housing +236433,Housing,Housing +226172,Housing,Housing +225572,Housing,Housing +225568,Housing,Housing +217776,Housing,Housing +217772,Housing,Housing +421007,Housing,Housing +408442,Housing,Housing +404404,Housing,Housing +404403,Housing,Housing +341226,Housing,Housing +341218,Housing,Housing +510844,Housing,Housing +508358,Housing,Housing +507495,Housing,Housing +503280,Housing,Housing +503279,Housing,Housing +502933,Housing,Housing +500345,Housing,Housing +500290,Housing,Housing +497242,Housing,Housing +497225,Housing,Housing +497223,Housing,Housing +494227,Housing,Housing +493947,Housing,Housing +493946,Housing,Housing +476798,Housing,Housing +466014,Housing,Housing +465502,Housing,Housing +465477,Housing,Housing +465322,Housing,Housing +463239,Housing,Housing +456738,Housing,Housing +456640,Housing,Housing +456638,Housing,Housing +456637,Housing,Housing +453413,Housing,Housing +444648,Housing,Housing +444485,Housing,Housing +442987,Housing,Housing +442980,Housing,Housing +442979,Housing,Housing +438302,Housing,Housing +437606,Housing,Housing +435635,Housing,Housing +424591,Housing,Housing +537457,Housing,Housing +531602,Housing,Housing +531601,Housing,Housing +531599,Housing,Housing +529365,Housing,Housing +529363,Housing,Housing +529360,Housing,Housing +522546,Housing,Housing +522544,Housing,Housing +520023,Housing,Housing +517077,Housing,Housing +454628,Energy,Energy +453051,Energy,Energy +180344,Energy,Energy +168919,Energy,Energy +328020,Energy,Energy +301957,Energy,Energy +301953,Energy,Energy +301952,Energy,Energy +296651,Energy,Energy +420453,Energy,Energy +545253,Energy,Energy +545252,Energy,Energy +545251,Energy,Energy +539614,Energy,Energy +533924,Energy,Energy +529211,Energy,Energy +515171,Energy,Energy +514386,Energy,Energy +513771,Energy,Energy +512948,Energy,Energy +511772,Energy,Energy +509946,Energy,Energy +509944,Energy,Energy +492239,Energy,Energy +391739,Government Procurement,Government Procurement +333675,Government Procurement,Government Procurement +206527,Pensions,Pensions +446700,Pensions,Pensions +223446,Pensions,Pensions +215751,Pensions,Pensions +420512,Environment,Environment +420511,Environment,Environment +420512,Health,Health +420511,Health,Health +420512,International Trade,International Trade +420511,International Trade,International Trade +350061,International Trade,International Trade +350060,International Trade,International Trade +370774,International Trade,International Trade +458124,International Trade,International Trade +431373,International Trade,International Trade +257469,Agriculture,Agriculture +206888,Agriculture,Agriculture +165596,Agriculture,Agriculture +317570,Agriculture,Agriculture +317569,Agriculture,Agriculture +257473,Agriculture,Agriculture +257472,Agriculture,Agriculture +257471,Agriculture,Agriculture +165596,Health,Health +206888,International Trade,International Trade +219387,Environment,Environment +219310,Environment,Environment +184406,Environment,Environment +184405,Environment,Environment +170617,Environment,Environment +273507,Industry,Industry +419069,Agriculture,Agriculture +419068,Agriculture,Agriculture +166831,Agriculture,Agriculture +166830,Agriculture,Agriculture +166829,Agriculture,Agriculture +166828,Agriculture,Agriculture +369713,Agriculture,Agriculture +347579,Agriculture,Agriculture +347578,Agriculture,Agriculture +317373,Agriculture,Agriculture +259815,Agriculture,Agriculture +206788,Agriculture,Agriculture +394841,Agriculture,Agriculture +394840,Agriculture,Agriculture +394839,Agriculture,Agriculture +445807,Agriculture,Agriculture +445806,Agriculture,Agriculture +206790,Agriculture,Agriculture +166827,Agriculture,Agriculture +166826,Agriculture,Agriculture +166825,Agriculture,Agriculture +166824,Agriculture,Agriculture +435485,Agriculture,Agriculture +431401,Agriculture,Agriculture +419076,Agriculture,Agriculture +419075,Agriculture,Agriculture +419073,Agriculture,Agriculture +418596,Agriculture,Agriculture +394829,Agriculture,Agriculture +394828,Agriculture,Agriculture +394827,Agriculture,Agriculture +369768,Agriculture,Agriculture +369767,Agriculture,Agriculture +347583,Agriculture,Agriculture +347582,Agriculture,Agriculture +317372,Agriculture,Agriculture +284209,Agriculture,Agriculture +259817,Agriculture,Agriculture +497176,Agriculture,Agriculture +497174,Agriculture,Agriculture +497172,Agriculture,Agriculture +497168,Agriculture,Agriculture +463773,Agriculture,Agriculture +463771,Agriculture,Agriculture +463770,Agriculture,Agriculture +166836,Agriculture,Agriculture +166835,Agriculture,Agriculture +206789,Agriculture,Agriculture +166840,Agriculture,Agriculture +166839,Agriculture,Agriculture +166842,Agriculture,Agriculture +166833,Agriculture,Agriculture +166832,Agriculture,Agriculture +166843,Agriculture,Agriculture +317369,Agriculture,Agriculture +259813,Agriculture,Agriculture +206787,Agriculture,Agriculture +166845,Agriculture,Agriculture +325851,Security,Security +325850,Security,Security +503238,Agriculture,Agriculture +503237,Agriculture,Agriculture +263785,Agriculture,Agriculture +263509,Agriculture,Agriculture +256009,Agriculture,Agriculture +206568,Agriculture,Agriculture +200142,Agriculture,Agriculture +200140,Agriculture,Agriculture +200135,Agriculture,Agriculture +169388,Agriculture,Agriculture +320630,Agriculture,Agriculture +320629,Agriculture,Agriculture +466438,Agriculture,Agriculture +526795,Agriculture,Agriculture +526789,Agriculture,Agriculture +526788,Agriculture,Agriculture +526787,Agriculture,Agriculture +526786,Agriculture,Agriculture +526785,Agriculture,Agriculture +503270,Agriculture,Agriculture +503269,Agriculture,Agriculture +503268,Agriculture,Agriculture +503267,Agriculture,Agriculture +503266,Agriculture,Agriculture +503265,Agriculture,Agriculture +503264,Agriculture,Agriculture +503262,Agriculture,Agriculture +503261,Agriculture,Agriculture +503260,Agriculture,Agriculture +503259,Agriculture,Agriculture +503258,Agriculture,Agriculture +503257,Agriculture,Agriculture +503256,Agriculture,Agriculture +503255,Agriculture,Agriculture +503254,Agriculture,Agriculture +503253,Agriculture,Agriculture +503251,Agriculture,Agriculture +503250,Agriculture,Agriculture +503249,Agriculture,Agriculture +503248,Agriculture,Agriculture +503246,Agriculture,Agriculture +503245,Agriculture,Agriculture +503244,Agriculture,Agriculture +503243,Agriculture,Agriculture +503242,Agriculture,Agriculture +503241,Agriculture,Agriculture +503240,Agriculture,Agriculture +503238,Consumer Issues,Consumer Issues +503237,Consumer Issues,Consumer Issues +169388,Consumer Issues,Consumer Issues +320629,Consumer Issues,Consumer Issues +526795,Consumer Issues,Consumer Issues +526789,Consumer Issues,Consumer Issues +526788,Consumer Issues,Consumer Issues +526787,Consumer Issues,Consumer Issues +526786,Consumer Issues,Consumer Issues +526785,Consumer Issues,Consumer Issues +526784,Consumer Issues,Consumer Issues +503270,Consumer Issues,Consumer Issues +503269,Consumer Issues,Consumer Issues +503268,Consumer Issues,Consumer Issues +503267,Consumer Issues,Consumer Issues +503266,Consumer Issues,Consumer Issues +503265,Consumer Issues,Consumer Issues +503264,Consumer Issues,Consumer Issues +503262,Consumer Issues,Consumer Issues +503261,Consumer Issues,Consumer Issues +503260,Consumer Issues,Consumer Issues +503259,Consumer Issues,Consumer Issues +503258,Consumer Issues,Consumer Issues +503257,Consumer Issues,Consumer Issues +503256,Consumer Issues,Consumer Issues +503255,Consumer Issues,Consumer Issues +503254,Consumer Issues,Consumer Issues +503253,Consumer Issues,Consumer Issues +503251,Consumer Issues,Consumer Issues +503250,Consumer Issues,Consumer Issues +503249,Consumer Issues,Consumer Issues +503248,Consumer Issues,Consumer Issues +503246,Consumer Issues,Consumer Issues +503245,Consumer Issues,Consumer Issues +503244,Consumer Issues,Consumer Issues +503243,Consumer Issues,Consumer Issues +503242,Consumer Issues,Consumer Issues +503241,Consumer Issues,Consumer Issues +503240,Consumer Issues,Consumer Issues +503237,Health,Health +466438,Health,Health +320629,Health,Health +169388,Health,Health +447879,Health,Health +526795,Health,Health +526789,Health,Health +526788,Health,Health +526787,Health,Health +526786,Health,Health +526785,Health,Health +526784,Health,Health +503270,Health,Health +503269,Health,Health +503268,Health,Health +503267,Health,Health +503266,Health,Health +503265,Health,Health +503264,Health,Health +503262,Health,Health +503261,Health,Health +503260,Health,Health +503259,Health,Health +503258,Health,Health +503257,Health,Health +503256,Health,Health +503255,Health,Health +503254,Health,Health +503253,Health,Health +503251,Health,Health +503250,Health,Health +503249,Health,Health +503248,Health,Health +503246,Health,Health +503245,Health,Health +503244,Health,Health +503243,Health,Health +503242,Health,Health +503241,Health,Health +503240,Health,Health +503239,Health,Health +526785,International Trade,International Trade +526784,International Trade,International Trade +206568,International Trade,International Trade +200142,International Trade,International Trade +200140,International Trade,International Trade +200135,International Trade,International Trade +169388,International Trade,International Trade +320630,International Trade,International Trade +320629,International Trade,International Trade +263785,International Trade,International Trade +263509,International Trade,International Trade +503270,International Trade,International Trade +503269,International Trade,International Trade +503268,International Trade,International Trade +503267,International Trade,International Trade +503266,International Trade,International Trade +503265,International Trade,International Trade +503264,International Trade,International Trade +503262,International Trade,International Trade +503261,International Trade,International Trade +503260,International Trade,International Trade +503259,International Trade,International Trade +503258,International Trade,International Trade +503257,International Trade,International Trade +503256,International Trade,International Trade +503255,International Trade,International Trade +503254,International Trade,International Trade +503253,International Trade,International Trade +503251,International Trade,International Trade +503250,International Trade,International Trade +503249,International Trade,International Trade +503248,International Trade,International Trade +503246,International Trade,International Trade +503245,International Trade,International Trade +503244,International Trade,International Trade +503243,International Trade,International Trade +503242,International Trade,International Trade +503241,International Trade,International Trade +503240,International Trade,International Trade +503239,International Trade,International Trade +503238,International Trade,International Trade +503237,International Trade,International Trade +466438,International Trade,International Trade +447879,International Trade,International Trade +526795,International Trade,International Trade +526789,International Trade,International Trade +526788,International Trade,International Trade +526787,International Trade,International Trade +369707,Agriculture,Agriculture +369663,Agriculture,Agriculture +206014,Agriculture,Agriculture +206013,Agriculture,Agriculture +206012,Agriculture,Agriculture +167542,Agriculture,Agriculture +347606,Agriculture,Agriculture +316669,Agriculture,Agriculture +258154,Agriculture,Agriculture +258153,Agriculture,Agriculture +258152,Agriculture,Agriculture +258151,Agriculture,Agriculture +206015,Agriculture,Agriculture +370758,Agriculture,Agriculture +369724,Agriculture,Agriculture +347606,International Trade,International Trade +316669,International Trade,International Trade +258154,International Trade,International Trade +258153,International Trade,International Trade +258152,International Trade,International Trade +258151,International Trade,International Trade +206015,International Trade,International Trade +206014,International Trade,International Trade +206013,International Trade,International Trade +206012,International Trade,International Trade +370758,International Trade,International Trade +369724,International Trade,International Trade +369709,International Trade,International Trade +369707,International Trade,International Trade +369663,Consumer Issues,Consumer Issues +347606,Consumer Issues,Consumer Issues +316669,Consumer Issues,Consumer Issues +258154,Consumer Issues,Consumer Issues +258153,Consumer Issues,Consumer Issues +258152,Consumer Issues,Consumer Issues +258151,Consumer Issues,Consumer Issues +167542,Consumer Issues,Consumer Issues +370758,Consumer Issues,Consumer Issues +369724,Consumer Issues,Consumer Issues +369709,Consumer Issues,Consumer Issues +258152,Health,Health +258151,Health,Health +347606,Health,Health +316669,Health,Health +258154,Health,Health +163468,Financial Institutions,Financial Institutions +163467,Financial Institutions,Financial Institutions +163467,International Relations,International Relations +164973,International Relations,International Relations +446121,Environment,Environment +460420,Transportation,Transportation +460249,Transportation,Transportation +271269,Transportation,Transportation +270954,Transportation,Transportation +270953,Transportation,Transportation +270952,Transportation,Transportation +265769,Transportation,Transportation +246529,Transportation,Transportation +244333,Transportation,Transportation +244332,Transportation,Transportation +244331,Transportation,Transportation +244330,Transportation,Transportation +234989,Transportation,Transportation +219627,Transportation,Transportation +219447,Transportation,Transportation +209567,Transportation,Transportation +367638,Transportation,Transportation +363162,Transportation,Transportation +359308,Transportation,Transportation +359307,Transportation,Transportation +353932,Transportation,Transportation +352101,Transportation,Transportation +352100,Transportation,Transportation +352000,Transportation,Transportation +344408,Transportation,Transportation +344406,Transportation,Transportation +344405,Transportation,Transportation +344404,Transportation,Transportation +344403,Transportation,Transportation +344402,Transportation,Transportation +339221,Transportation,Transportation +337564,Transportation,Transportation +337563,Transportation,Transportation +337562,Transportation,Transportation +337561,Transportation,Transportation +337560,Transportation,Transportation +332570,Transportation,Transportation +332569,Transportation,Transportation +328663,Transportation,Transportation +327810,Transportation,Transportation +327809,Transportation,Transportation +323992,Transportation,Transportation +323991,Transportation,Transportation +323990,Transportation,Transportation +318829,Transportation,Transportation +314490,Transportation,Transportation +313829,Transportation,Transportation +301498,Transportation,Transportation +301494,Transportation,Transportation +301493,Transportation,Transportation +301235,Transportation,Transportation +301234,Transportation,Transportation +301233,Transportation,Transportation +301021,Transportation,Transportation +297849,Transportation,Transportation +271270,Transportation,Transportation +459013,Transportation,Transportation +455864,Transportation,Transportation +454204,Transportation,Transportation +454203,Transportation,Transportation +454202,Transportation,Transportation +453797,Transportation,Transportation +451181,Transportation,Transportation +451047,Transportation,Transportation +451046,Transportation,Transportation +450981,Transportation,Transportation +450980,Transportation,Transportation +448501,Transportation,Transportation +448452,Transportation,Transportation +448451,Transportation,Transportation +448298,Transportation,Transportation +448297,Transportation,Transportation +446121,Transportation,Transportation +444735,Transportation,Transportation +444644,Transportation,Transportation +444351,Transportation,Transportation +444260,Transportation,Transportation +441204,Transportation,Transportation +441203,Transportation,Transportation +440321,Transportation,Transportation +440320,Transportation,Transportation +439892,Transportation,Transportation +438483,Transportation,Transportation +436525,Transportation,Transportation +436524,Transportation,Transportation +436523,Transportation,Transportation +436319,Transportation,Transportation +434310,Transportation,Transportation +434170,Transportation,Transportation +434095,Transportation,Transportation +434094,Transportation,Transportation +434093,Transportation,Transportation +434092,Transportation,Transportation +434091,Transportation,Transportation +434090,Transportation,Transportation +425774,Transportation,Transportation +425773,Transportation,Transportation +425772,Transportation,Transportation +425771,Transportation,Transportation +425768,Transportation,Transportation +425766,Transportation,Transportation +425020,Transportation,Transportation +425018,Transportation,Transportation +425017,Transportation,Transportation +424557,Transportation,Transportation +424402,Transportation,Transportation +420702,Transportation,Transportation +420701,Transportation,Transportation +420700,Transportation,Transportation +420442,Transportation,Transportation +420365,Transportation,Transportation +420364,Transportation,Transportation +420363,Transportation,Transportation +420362,Transportation,Transportation +420361,Transportation,Transportation +414863,Transportation,Transportation +414093,Transportation,Transportation +413981,Transportation,Transportation +410911,Transportation,Transportation +410909,Transportation,Transportation +407617,Transportation,Transportation +407616,Transportation,Transportation +407375,Transportation,Transportation +407140,Transportation,Transportation +406524,Transportation,Transportation +406088,Transportation,Transportation +404922,Transportation,Transportation +400217,Transportation,Transportation +399544,Transportation,Transportation +399316,Transportation,Transportation +388919,Transportation,Transportation +388918,Transportation,Transportation +388624,Transportation,Transportation +387468,Transportation,Transportation +387467,Transportation,Transportation +381967,Transportation,Transportation +380285,Transportation,Transportation +380284,Transportation,Transportation +380283,Transportation,Transportation +380282,Transportation,Transportation +380281,Transportation,Transportation +375213,Transportation,Transportation +375212,Transportation,Transportation +375211,Transportation,Transportation +375210,Transportation,Transportation +375209,Transportation,Transportation +375208,Transportation,Transportation +371173,Transportation,Transportation +371171,Transportation,Transportation +370559,Transportation,Transportation +370011,Transportation,Transportation +370010,Transportation,Transportation +370009,Transportation,Transportation +370008,Transportation,Transportation +370007,Transportation,Transportation +542354,Transportation,Transportation +533340,Transportation,Transportation +533336,Transportation,Transportation +530309,Transportation,Transportation +520364,Transportation,Transportation +518813,Transportation,Transportation +509240,Transportation,Transportation +506645,Transportation,Transportation +496890,Transportation,Transportation +496889,Transportation,Transportation +494563,Transportation,Transportation +485867,Transportation,Transportation +481715,Transportation,Transportation +480543,Transportation,Transportation +466592,Transportation,Transportation +466591,Transportation,Transportation +466590,Transportation,Transportation +466589,Transportation,Transportation +466587,Transportation,Transportation +466586,Transportation,Transportation +465628,Transportation,Transportation +465627,Transportation,Transportation +465514,Transportation,Transportation +465513,Transportation,Transportation +465512,Transportation,Transportation +465511,Transportation,Transportation +465510,Transportation,Transportation +465338,Transportation,Transportation +465314,Transportation,Transportation +465313,Transportation,Transportation +465312,Transportation,Transportation +165800,Defence,Defence +165799,Defence,Defence +165800,Government Procurement,Government Procurement +165799,Government Procurement,Government Procurement +165800,Industry,Industry +165799,Industry,Industry +194905,Health,Health +194902,Health,Health +168899,Health,Health +168897,Health,Health +168895,Health,Health +168892,Health,Health +168890,Health,Health +168888,Health,Health +168885,Health,Health +168884,Health,Health +168883,Health,Health +168880,Health,Health +168878,Health,Health +168876,Health,Health +194914,Health,Health +194913,Health,Health +194911,Health,Health +419326,Agriculture,Agriculture +393364,Agriculture,Agriculture +207302,Agriculture,Agriculture +207099,Agriculture,Agriculture +168071,Agriculture,Agriculture +368147,Agriculture,Agriculture +318569,Agriculture,Agriculture +194905,Education,Education +194902,Education,Education +194913,Education,Education +194911,Education,Education +171364,Financial Institutions,Institutions financières +171226,Financial Institutions,Institutions financières +171366,Financial Institutions,Institutions financières +171226,Housing,Logement +171366,Housing,Logement +171364,Consumer Issues,Questions touchant les consommateurs +171226,Consumer Issues,Questions touchant les consommateurs +168573,Health,Health +406416,Agriculture,Agriculture +393830,Agriculture,Agriculture +167539,Agriculture,Agriculture +347649,Agriculture,Agriculture +337342,Agriculture,Agriculture +317549,Agriculture,Agriculture +316670,Agriculture,Agriculture +258150,Agriculture,Agriculture +258149,Agriculture,Agriculture +258148,Agriculture,Agriculture +258147,Agriculture,Agriculture +237051,Agriculture,Agriculture +206017,Agriculture,Agriculture +206016,Agriculture,Agriculture +465274,Agriculture,Agriculture +464788,Agriculture,Agriculture +446323,Agriculture,Agriculture +444861,Agriculture,Agriculture +406416,Consumer Issues,Consumer Issues +393830,Consumer Issues,Consumer Issues +347649,Consumer Issues,Consumer Issues +317549,Consumer Issues,Consumer Issues +316670,Consumer Issues,Consumer Issues +258150,Consumer Issues,Consumer Issues +258149,Consumer Issues,Consumer Issues +258148,Consumer Issues,Consumer Issues +258147,Consumer Issues,Consumer Issues +237051,Consumer Issues,Consumer Issues +167539,Consumer Issues,Consumer Issues +465274,Consumer Issues,Consumer Issues +464788,Consumer Issues,Consumer Issues +444861,Consumer Issues,Consumer Issues +258149,Economic Development,Economic Development +258148,Economic Development,Economic Development +258147,Economic Development,Economic Development +237051,Economic Development,Economic Development +347649,Economic Development,Economic Development +337342,Economic Development,Economic Development +317549,Economic Development,Economic Development +316670,Economic Development,Economic Development +465274,Economic Development,Economic Development +464788,Economic Development,Economic Development +446323,Economic Development,Economic Development +393830,Economic Development,Economic Development +465274,Environment,Environment +464788,Environment,Environment +258150,Environment,Environment +258149,Environment,Environment +258148,Environment,Environment +258147,Environment,Environment +206017,Environment,Environment +167539,Environment,Environment +347649,Environment,Environment +317549,Environment,Environment +444861,Health,Health +419410,Health,Health +258149,Health,Health +258148,Health,Health +258147,Health,Health +393830,Health,Health +347649,Health,Health +317549,Health,Health +316670,Health,Health +258150,Health,Health +465274,Health,Health +464788,Health,Health +347649,Internal Trade,Internal Trade +337342,Internal Trade,Internal Trade +317549,Internal Trade,Internal Trade +316670,Internal Trade,Internal Trade +258150,Internal Trade,Internal Trade +258149,Internal Trade,Internal Trade +258148,Internal Trade,Internal Trade +258147,Internal Trade,Internal Trade +237051,Internal Trade,Internal Trade +206017,Internal Trade,Internal Trade +206016,Internal Trade,Internal Trade +206028,Agriculture,Agriculture +206026,Agriculture,Agriculture +206026,Consumer Issues,Consumer Issues +166667,Consumer Issues,Consumer Issues +206026,International Relations,International Relations +166667,International Relations,International Relations +236249,Financial Institutions,Financial Institutions +232330,Financial Institutions,Financial Institutions +196559,Financial Institutions,Financial Institutions +196558,Financial Institutions,Financial Institutions +164587,Financial Institutions,Financial Institutions +340027,Financial Institutions,Financial Institutions +330568,Financial Institutions,Financial Institutions +318770,Financial Institutions,Financial Institutions +261869,Financial Institutions,Financial Institutions +185917,Research and Development,Research and Development (R&D) +185916,Research and Development,Research and Development (R&D) +168044,Research and Development,Research and Development (R&D) +163747,Research and Development,Research and Development (R&D) +470722,International Development,International Development +470719,International Development,International Development +202287,International Development,International Development +202270,International Development,International Development +192024,International Development,International Development +185312,International Development,International Development +185311,International Development,International Development +176769,International Development,International Development +176767,International Development,International Development +176766,International Development,International Development +176765,International Development,International Development +176764,International Development,International Development +171684,International Development,International Development +166515,International Development,International Development +359701,International Development,International Development +351026,International Development,International Development +351024,International Development,International Development +338229,International Development,International Development +335866,International Development,International Development +303850,International Development,International Development +296270,International Development,International Development +287053,International Development,International Development +287049,International Development,International Development +273230,International Development,International Development +268290,International Development,International Development +263651,International Development,International Development +263650,International Development,International Development +263649,International Development,International Development +259072,International Development,International Development +245474,International Development,International Development +245472,International Development,International Development +236294,International Development,International Development +233563,International Development,International Development +226627,International Development,International Development +222577,International Development,International Development +217572,International Development,International Development +217569,International Development,International Development +217567,International Development,International Development +217549,International Development,International Development +217527,International Development,International Development +211279,International Development,International Development +202289,International Development,International Development +202288,International Development,International Development +470717,International Development,International Development +470715,International Development,International Development +470708,International Development,International Development +467270,International Development,International Development +467267,International Development,International Development +467263,International Development,International Development +467262,International Development,International Development +467261,International Development,International Development +467260,International Development,International Development +467259,International Development,International Development +467258,International Development,International Development +467257,International Development,International Development +464428,International Development,International Development +464427,International Development,International Development +464426,International Development,International Development +464425,International Development,International Development +464424,International Development,International Development +464423,International Development,International Development +464422,International Development,International Development +464421,International Development,International Development +464420,International Development,International Development +464419,International Development,International Development +464418,International Development,International Development +464417,International Development,International Development +464416,International Development,International Development +464415,International Development,International Development +464414,International Development,International Development +464413,International Development,International Development +464412,International Development,International Development +464411,International Development,International Development +462922,International Development,International Development +462480,International Development,International Development +462478,International Development,International Development +462477,International Development,International Development +462476,International Development,International Development +461892,International Development,International Development +461883,International Development,International Development +461881,International Development,International Development +461879,International Development,International Development +460551,International Development,International Development +460021,International Development,International Development +459543,International Development,International Development +457496,International Development,International Development +457495,International Development,International Development +457486,International Development,International Development +455333,International Development,International Development +455331,International Development,International Development +452470,International Development,International Development +452469,International Development,International Development +452468,International Development,International Development +452467,International Development,International Development +449971,International Development,International Development +447793,International Development,International Development +447792,International Development,International Development +444269,International Development,International Development +444268,International Development,International Development +398552,International Development,International Development +398549,International Development,International Development +398546,International Development,International Development +398528,International Development,International Development +398520,International Development,International Development +398480,International Development,International Development +398472,International Development,International Development +392825,International Development,International Development +542118,International Development,International Development +538810,International Development,International Development +538809,International Development,International Development +538808,International Development,International Development +533955,International Development,International Development +532130,International Development,International Development +527812,International Development,International Development +527811,International Development,International Development +527810,International Development,International Development +527809,International Development,International Development +527807,International Development,International Development +526711,International Development,International Development +526710,International Development,International Development +526708,International Development,International Development +526707,International Development,International Development +526706,International Development,International Development +526705,International Development,International Development +526704,International Development,International Development +526700,International Development,International Development +522690,International Development,International Development +522689,International Development,International Development +522688,International Development,International Development +522687,International Development,International Development +522685,International Development,International Development +522684,International Development,International Development +522683,International Development,International Development +522682,International Development,International Development +519939,International Development,International Development +519937,International Development,International Development +519932,International Development,International Development +519928,International Development,International Development +519923,International Development,International Development +517876,International Development,International Development +517875,International Development,International Development +515740,International Development,International Development +514450,International Development,International Development +514449,International Development,International Development +513881,International Development,International Development +511914,International Development,International Development +511912,International Development,International Development +511910,International Development,International Development +511657,International Development,International Development +511630,International Development,International Development +511618,International Development,International Development +511616,International Development,International Development +511609,International Development,International Development +488048,International Development,International Development +488045,International Development,International Development +485526,International Development,International Development +485525,International Development,International Development +485522,International Development,International Development +484134,International Development,International Development +484131,International Development,International Development +483301,International Development,International Development +483300,International Development,International Development +483299,International Development,International Development +483298,International Development,International Development +483297,International Development,International Development +483296,International Development,International Development +483295,International Development,International Development +483294,International Development,International Development +483293,International Development,International Development +483292,International Development,International Development +483291,International Development,International Development +483290,International Development,International Development +483289,International Development,International Development +483287,International Development,International Development +483286,International Development,International Development +483285,International Development,International Development +481657,International Development,International Development +480849,International Development,International Development +480452,International Development,International Development +480451,International Development,International Development +480450,International Development,International Development +480449,International Development,International Development +479592,International Development,International Development +479591,International Development,International Development +477557,International Development,International Development +477276,International Development,International Development +477273,International Development,International Development +477271,International Development,International Development +477270,International Development,International Development +477268,International Development,International Development +477267,International Development,International Development +474868,International Development,International Development +474865,International Development,International Development +474864,International Development,International Development +474861,International Development,International Development +474858,International Development,International Development +472711,International Development,International Development +472706,International Development,International Development +472702,International Development,International Development +472701,International Development,International Development +472698,International Development,International Development +472694,International Development,International Development +472691,International Development,International Development +471268,International Development,International Development +470747,International Development,International Development +470741,International Development,International Development +470738,International Development,International Development +470735,International Development,International Development +470734,International Development,International Development +470724,International Development,International Development +170751,Government Procurement,Government Procurement +175488,Government Procurement,Government Procurement +170754,Government Procurement,Government Procurement +440762,Agriculture,Agriculture +440761,Agriculture,Agriculture +197271,Agriculture,Agriculture +168179,Agriculture,Agriculture +168178,Agriculture,Agriculture +168177,Agriculture,Agriculture +168176,Agriculture,Agriculture +409000,Agriculture,Agriculture +408998,Agriculture,Agriculture +395073,Agriculture,Agriculture +370303,Agriculture,Agriculture +370302,Agriculture,Agriculture +368927,Agriculture,Agriculture +365575,Agriculture,Agriculture +346297,Agriculture,Agriculture +315419,Agriculture,Agriculture +315396,Agriculture,Agriculture +259513,Agriculture,Agriculture +259505,Agriculture,Agriculture +259494,Agriculture,Agriculture +259455,Agriculture,Agriculture +445919,Agriculture,Agriculture +445917,Agriculture,Agriculture +370302,Internal Trade,Commerce intérieur +368927,Internal Trade,Commerce intérieur +168177,Internal Trade,Commerce intérieur +168176,Internal Trade,Commerce intérieur +365575,Internal Trade,Commerce intérieur +346297,Internal Trade,Commerce intérieur +197271,Internal Trade,Commerce intérieur +168179,Internal Trade,Commerce intérieur +168178,Internal Trade,Commerce intérieur +445919,Internal Trade,Commerce intérieur +445917,Internal Trade,Commerce intérieur +440763,Internal Trade,Commerce intérieur +440762,Internal Trade,Commerce intérieur +440761,Internal Trade,Commerce intérieur +409000,Internal Trade,Commerce intérieur +408998,Internal Trade,Commerce intérieur +395073,Internal Trade,Commerce intérieur +440762,International Trade,Commerce international +440761,International Trade,Commerce international +259513,International Trade,Commerce international +259505,International Trade,Commerce international +259494,International Trade,Commerce international +259455,International Trade,Commerce international +197271,International Trade,Commerce international +168179,International Trade,Commerce international +168178,International Trade,Commerce international +168177,International Trade,Commerce international +168176,International Trade,Commerce international +409000,International Trade,Commerce international +408998,International Trade,Commerce international +395073,International Trade,Commerce international +370303,International Trade,Commerce international +370302,International Trade,Commerce international +368927,International Trade,Commerce international +365575,International Trade,Commerce international +346297,International Trade,Commerce international +315419,International Trade,Commerce international +315396,International Trade,Commerce international +445919,International Trade,Commerce international +445917,International Trade,Commerce international +370767,Agriculture,Agriculture +370767,International Trade,International Trade +417487,Industry,Industry +417489,Industry,Industry +205967,Industry,Industry +311372,Industry,Industry +311370,Industry,Industry +311369,Industry,Industry +356269,Industry,Industry +329309,Industry,Industry +513330,Agriculture,Agriculture +484872,International Development,International Development +484867,International Development,International Development +164275,International Development,International Development +341308,International Development,International Development +341291,International Development,International Development +338607,International Development,International Development +330234,International Development,International Development +330228,International Development,International Development +325651,International Development,International Development +321375,International Development,International Development +321372,International Development,International Development +321371,International Development,International Development +319205,International Development,International Development +319191,International Development,International Development +310095,International Development,International Development +277417,International Development,International Development +277416,International Development,International Development +273004,International Development,International Development +273003,International Development,International Development +273001,International Development,International Development +272998,International Development,International Development +249266,International Development,International Development +229691,International Development,International Development +193087,International Development,International Development +170532,International Development,International Development +170531,International Development,International Development +170528,International Development,International Development +385495,International Development,International Development +385487,International Development,International Development +383985,International Development,International Development +382701,International Development,International Development +381493,International Development,International Development +365397,International Development,International Development +365392,International Development,International Development +365391,International Development,International Development +356111,International Development,International Development +354035,International Development,International Development +354034,International Development,International Development +354032,International Development,International Development +354028,International Development,International Development +351236,International Development,International Development +351234,International Development,International Development +351231,International Development,International Development +350140,International Development,International Development +350139,International Development,International Development +350134,International Development,International Development +350133,International Development,International Development +350132,International Development,International Development +349171,International Development,International Development +347444,International Development,International Development +341313,International Development,International Development +479913,International Development,International Development +478124,International Development,International Development +464246,International Development,International Development +464228,International Development,International Development +464227,International Development,International Development +464225,International Development,International Development +449637,International Development,International Development +449636,International Development,International Development +438620,International Development,International Development +438615,International Development,International Development +438611,International Development,International Development +438607,International Development,International Development +435497,International Development,International Development +432331,International Development,International Development +432325,International Development,International Development +432321,International Development,International Development +432318,International Development,International Development +418209,International Development,International Development +418207,International Development,International Development +412009,International Development,International Development +403020,International Development,International Development +400445,International Development,International Development +400443,International Development,International Development +392748,International Development,International Development +392747,International Development,International Development +392746,International Development,International Development +391821,International Development,International Development +391819,International Development,International Development +388749,International Development,International Development +388748,International Development,International Development +388747,International Development,International Development +499412,International Development,International Development +488525,International Development,International Development +484899,International Development,International Development +484895,International Development,International Development +484888,International Development,International Development +484884,International Development,International Development +273001,Mining,Mining +272998,Mining,Mining +164278,Mining,Mining +164276,Mining,Mining +273004,Mining,Mining +412239,Climate,Climate +408046,Climate,Climate +164332,Climate,Climate +217627,Climate,Climate +391188,Climate,Climate +391185,Climate,Climate +388149,Climate,Climate +388137,Climate,Climate +388136,Climate,Climate +385798,Climate,Climate +371433,Climate,Climate +371149,Climate,Climate +371147,Climate,Climate +371146,Climate,Climate +371145,Climate,Climate +371144,Climate,Climate +371143,Climate,Climate +371142,Climate,Climate +371141,Climate,Climate +371140,Climate,Climate +371139,Climate,Climate +371138,Climate,Climate +371137,Climate,Climate +371135,Climate,Climate +371134,Climate,Climate +371132,Climate,Climate +371131,Climate,Climate +371130,Climate,Climate +371129,Climate,Climate +371127,Climate,Climate +371126,Climate,Climate +371125,Climate,Climate +371124,Climate,Climate +371123,Climate,Climate +371101,Climate,Climate +371100,Climate,Climate +371099,Climate,Climate +371098,Climate,Climate +371096,Climate,Climate +371094,Climate,Climate +371093,Climate,Climate +371091,Climate,Climate +371090,Climate,Climate +371086,Climate,Climate +371084,Climate,Climate +371078,Climate,Climate +371074,Climate,Climate +371070,Climate,Climate +371069,Climate,Climate +371067,Climate,Climate +371066,Climate,Climate +371065,Climate,Climate +371064,Climate,Climate +371062,Climate,Climate +371061,Climate,Climate +371059,Climate,Climate +371057,Climate,Climate +371055,Climate,Climate +371054,Climate,Climate +371053,Climate,Climate +371051,Climate,Climate +371036,Climate,Climate +371035,Climate,Climate +371034,Climate,Climate +371033,Climate,Climate +371032,Climate,Climate +371030,Climate,Climate +371029,Climate,Climate +371028,Climate,Climate +371027,Climate,Climate +371026,Climate,Climate +371025,Climate,Climate +371024,Climate,Climate +371023,Climate,Climate +371022,Climate,Climate +371021,Climate,Climate +371020,Climate,Climate +371019,Climate,Climate +371018,Climate,Climate +371017,Climate,Climate +371016,Climate,Climate +371015,Climate,Climate +371014,Climate,Climate +371012,Climate,Climate +371011,Climate,Climate +371010,Climate,Climate +371009,Climate,Climate +371007,Climate,Climate +371005,Climate,Climate +371004,Climate,Climate +371003,Climate,Climate +371001,Climate,Climate +370998,Climate,Climate +370997,Climate,Climate +370992,Climate,Climate +370988,Climate,Climate +370986,Climate,Climate +370972,Climate,Climate +370965,Climate,Climate +356474,Climate,Climate +355883,Climate,Climate +534370,Climate,Climate +531332,Climate,Climate +528001,Climate,Climate +523575,Climate,Climate +517064,Climate,Climate +513289,Climate,Climate +512864,Climate,Climate +507402,Climate,Climate +507399,Climate,Climate +504727,Climate,Climate +504725,Climate,Climate +504723,Climate,Climate +504722,Climate,Climate +504694,Climate,Climate +501634,Climate,Climate +498542,Climate,Climate +498538,Climate,Climate +498537,Climate,Climate +498536,Climate,Climate +498523,Climate,Climate +498512,Climate,Climate +492956,Climate,Climate +484192,Climate,Climate +484191,Climate,Climate +481770,Climate,Climate +479762,Climate,Climate +479761,Climate,Climate +472666,Climate,Climate +465384,Climate,Climate +457091,Climate,Climate +457090,Climate,Climate +456253,Climate,Climate +456252,Climate,Climate +456251,Climate,Climate +449200,Climate,Climate +164605,Consumer Issues,Consumer Issues +164604,Consumer Issues,Consumer Issues +164605,Industry,Industry +164604,Industry,Industry +168377,Fisheries,Fisheries +394509,Budget,Budget +379108,Budget,Budget +194650,Budget,Budget +255529,Budget,Budget +255429,Budget,Budget +255049,Budget,Budget +254129,Budget,Budget +253430,Budget,Budget +253429,Budget,Budget +253069,Budget,Budget +250509,Budget,Budget +248629,Budget,Budget +247833,Budget,Budget +166215,Energy,Energy +176247,Government Procurement,Government Procurement +160804,Economic Development,Economic Development +160806,Industry,Industry +160807,Economic Development,Economic Development +161001,Agriculture,Agriculture +161248,Employment and Training,Employment and Training +161046,Infrastructure,Infrastructure +161047,Infrastructure,Infrastructure +161048,Infrastructure,Infrastructure +161053,Infrastructure,Infrastructure +161052,Infrastructure,Infrastructure +161045,Education,Education +161046,Research and Development,Research and Development (R&D) +161047,Research and Development,Research and Development (R&D) +161048,Research and Development,Research and Development (R&D) +161052,Research and Development,Research and Development (R&D) +161037,Research and Development,Research and Development (R&D) +161037,Infrastructure,Infrastructure +161053,Research and Development,Research and Development (R&D) +161078,Budget,Budget +394144,Pensions,Pensions +394168,Pensions,Pensions +468034,Pensions,Pensions +394148,Pensions,Pensions +336789,Energy,Energy +340737,Environment,Environment +161120,Consumer Issues,Consumer Issues +161119,Consumer Issues,Consumer Issues +161121,Consumer Issues,Consumer Issues +185526,International Trade,International Trade +315539,International Trade,International Trade +234349,International Trade,International Trade +199960,International Trade,International Trade +169035,International Trade,International Trade +209013,International Trade,International Trade +285949,International Trade,International Trade +161192,Labour,Labour +223585,Pensions,Pensions +490483,Budget,Budget +167954,Energy,Energy +167954,Environment,Environment +219408,Infrastructure,Infrastructure +161208,International Trade,International Trade +161212,Industry,Industry +250049,Regional Development,Regional Development +161305,Consumer Issues,Consumer Issues +161305,Taxation and Finance,Taxation and Finance +161304,Consumer Issues,Consumer Issues +161306,Consumer Issues,Consumer Issues +538496,Defence,Defence +508073,Government Procurement,Government Procurement +162047,Industry,Industry +333557,Regional Development,Regional Development +162049,Transportation,Transportation +161307,Consumer Issues,Consumer Issues +161308,Consumer Issues,Consumer Issues +163966,Justice and Law Enforcement,Justice and Law Enforcement +336890,Economic Development,Economic Development +163783,Energy,Energy +163783,Infrastructure,Infrastructure +179164,Budget,Budget +179604,Budget,Budget +161486,Government Procurement,Government Procurement +190904,Fisheries,Fisheries +227909,Employment and Training,Employment and Training +207429,Defence,Defence +161581,Labour,Labour +164805,Forestry,Forestry +168013,Industry,Industry +161515,Education,Education +189621,Transportation,Transportation +161784,Agriculture,Agriculture +161784,Industry,Industry +161786,International Trade,International Trade +331771,Economic Development,Economic Development +197587,Fisheries,Fisheries +189647,Infrastructure,Infrastructure +266391,International Development,International Development +331771,Regional Development,Regional Development +163922,Energy,Energy +163922,Environment,Environment +171147,Agriculture,Agriculture +350060,Agriculture,Agriculture +165824,Research and Development,Recherche et développement (R&D) +357577,Agriculture,Agriculture +300949,Consumer Issues,Consumer Issues +328949,Economic Development,Economic Development +280693,Health,Health +332889,Industry,Industry +330389,Intellectual Property,Intellectual Property +357579,International Trade,International Trade +330385,Taxation and Finance,Taxation and Finance +250892,Budget,Budget +303646,Climate,Climate +167667,Government Procurement,Government Procurement +167667,International Relations,International Relations +392661,Security,Security +399475,Defence,Défense +515908,Climate,Climate +162520,Financial Institutions,Financial Institutions +162224,Taxation and Finance,Taxation and Finance +162226,Taxation and Finance,Taxation and Finance +435244,Security,Security +442903,International Relations,International Relations +355926,Security,Security +398553,Security,Security +529069,Budget,Budget +541460,Employment and Training,Employment and Training +189640,International Relations,International Relations +162472,Agriculture,Agriculture +185353,International Relations,International Relations +185365,International Relations,International Relations +162570,Industry,Industry +162570,Intellectual Property,Intellectual Property +171147,Environment,Environment +465249,Education,Education +411747,Research and Development,Research and Development (R&D) +162637,Research and Development,Research and Development (R&D) +162634,Research and Development,Research and Development (R&D) +162636,Research and Development,Research and Development (R&D) +383346,Budget,Budget +166130,Environment,Environment +164000,Health,Health +382341,Industry,Industry +517072,Housing,Housing +162727,Housing,Housing +162728,Housing,Housing +232109,Municipalities,Municipalities +475753,Energy,Energy +223853,Government Procurement,Government Procurement +211568,Pensions,Pensions +420513,Environment,Environment +420513,Health,Health +420513,International Trade,International Trade +165601,Agriculture,Agriculture +165601,Environment,Environment +165601,Health,Health +165601,International Trade,International Trade +189622,Transportation,Transportation +206249,Agriculture,Agriculture +206249,Environment,Environment +206249,International Trade,International Trade +257470,Agriculture,Agriculture +165596,Environment,Environment +206888,Health,Health +165596,International Trade,International Trade +204587,Taxation and Finance,Taxation and Finance +162944,Labour,Labour +388124,Sports,Sports +169337,Environment,Environment +163145,Industry,Industry +419070,Agriculture,Agriculture +445808,Agriculture,Agriculture +166837,Agriculture,Agriculture +166841,Agriculture,Agriculture +166834,Agriculture,Agriculture +166844,Agriculture,Agriculture +328950,Security,Security +163889,Environment,Environment +418389,Economic Development,Economic Development +503239,Agriculture,Agriculture +503239,Consumer Issues,Consumer Issues +503238,Health,Health +526786,International Trade,International Trade +163395,International Development,International Development +369709,Agriculture,Agriculture +369663,International Trade,International Trade +369707,Consumer Issues,Consumer Issues +258153,Health,Health +273572,Government Procurement,Government Procurement +164973,Financial Institutions,Financial Institutions +163468,International Relations,International Relations +465628,Environment,Environment +465308,Transportation,Transportation +165802,Defence,Defence +165802,Government Procurement,Government Procurement +165802,Industry,Industry +194909,Health,Health +263811,Agriculture,Agriculture +194909,Education,Education +171365,Financial Institutions,Institutions financières +171364,Housing,Logement +171366,Consumer Issues,Questions touchant les consommateurs +197222,Defence,Defence +197221,Defence,Defence +176284,Government Procurement,Government Procurement +168574,Health,Health +419410,Agriculture,Agriculture +419410,Consumer Issues,Consumer Issues +258150,Economic Development,Economic Development +316670,Environment,Environment +446323,Health,Health +167539,Internal Trade,Internal Trade +365256,Security,Security +166667,Agriculture,Agriculture +206028,Consumer Issues,Consumer Issues +166667,Health,Health +206028,International Relations,International Relations +248529,Financial Institutions,Financial Institutions +185919,Research and Development,Research and Development (R&D) +470723,International Development,International Development +170752,Government Procurement,Government Procurement +163771,Immigration,Immigration +440763,Agriculture,Agriculture +370303,Internal Trade,Commerce intérieur +440763,International Trade,Commerce international +383014,Agriculture,Agriculture +370767,Consumer Issues,Consumer Issues +383014,International Trade,International Trade +163896,Constitutional Issues,Constitutional Issues +163975,Constitutional Issues,Constitutional Issues +163979,Constitutional Issues,Constitutional Issues +163981,Constitutional Issues,Constitutional Issues +164003,Constitutional Issues,Constitutional Issues +164001,International Relations,International Relations +164010,Constitutional Issues,Constitutional Issues +164013,Constitutional Issues,Constitutional Issues +164015,Constitutional Issues,Constitutional Issues +164018,Constitutional Issues,Constitutional Issues +164020,Constitutional Issues,Constitutional Issues +164026,Budget,Budget +164026,Climate,Climate +164026,Economic Development,Economic Development +164026,Environment,Environment +164030,Budget,Budget +164030,Climate,Climate +164030,Economic Development,Economic Development +164030,Environment,Environment +164031,Budget,Budget +164031,Climate,Climate +164031,Economic Development,Economic Development +164031,Environment,Environment +164032,Budget,Budget +164032,Climate,Climate +164032,Economic Development,Economic Development +164032,Environment,Environment +164122,Immigration,Immigration +261969,Health,Health +261969,Industry,Industry +417488,Industry,Industry +226537,Agriculture,Agriculture +484879,International Development,International Development +273003,Mining,Mining +416927,Climate,Climate +164606,Consumer Issues,Consumer Issues +164606,Industry,Industry +169920,Fisheries,Fisheries +164344,Taxation and Finance,Taxation and Finance +164345,Taxation and Finance,Taxation and Finance +164375,Climate,Climate +394511,Budget,Budget +174164,Regional Development,Regional Development +474646,Health,Health +502966,Research and Development,Research and Development (R&D) +166688,Agriculture,Agriculture +369660,Agriculture,Agriculture +369666,Consumer Issues,Consumer Issues +444859,Environment,Environment +347636,Health,Health +444859,International Trade,International Trade +356896,Agriculture,Agriculture +168922,Consumer Issues,Consumer Issues +168922,Health,Health +347661,International Trade,International Trade +506526,Defence,Defence +520341,Economic Development,Economic Development +391812,Employment and Training,Employment and Training +396483,Government Procurement,Government Procurement +396483,Industry,Industry +400990,Intellectual Property,Intellectual Property +200582,International Trade,International Trade +396473,Research and Development,Research and Development (R&D) +251012,Environment,Environment +251012,Health,Health +174484,Industry,Industry +168927,Agriculture,Agriculture +168927,Consumer Issues,Consumer Issues +168927,Health,Health +168927,International Trade,International Trade +206688,Agriculture,Agriculture +168942,Consumer Issues,Consumer Issues +168942,Health,Health +168942,International Trade,International Trade +347668,Agriculture,Agriculture +168944,Consumer Issues,Consumer Issues +419701,Health,Health +347669,International Trade,International Trade +168928,Agriculture,Agriculture +168928,Consumer Issues,Consumer Issues +393817,Health,Health +393817,International Trade,International Trade +538436,Climate,Climate +543383,Privacy and Access to Information,Privacy and Access to Information +167324,Labour,Labour +228909,Economic Development,Développement économique +166149,Consumer Issues,Consumer Issues +166149,Industry,Industry +247650,Agriculture,Agriculture +168929,Consumer Issues,Consumer Issues +393811,Health,Health +361887,International Trade,International Trade +423094,Economic Development,Economic Development +375527,Employment and Training,Employment and Training +324943,Environment,Environment +168873,Fisheries,Fisheries +303310,Mining,Mining +400164,Regional Development,Regional Development +168865,Transportation,Transportation +247392,Budget,Budget +246152,Budget,Budget +246151,Budget,Budget +246150,Budget,Budget +246149,Budget,Budget +241017,Budget,Budget +234289,Budget,Budget +224651,Budget,Budget +224650,Budget,Budget +224649,Budget,Budget +224648,Budget,Budget +224188,Budget,Budget +224187,Budget,Budget +367522,Budget,Budget +364762,Budget,Budget +341559,Budget,Budget +341557,Budget,Budget +341552,Budget,Budget +338597,Budget,Budget +338596,Budget,Budget +338593,Budget,Budget +338591,Budget,Budget +335777,Budget,Budget +335775,Budget,Budget +335771,Budget,Budget +335770,Budget,Budget +335768,Budget,Budget +317169,Budget,Budget +313023,Budget,Budget +313021,Budget,Budget +310244,Budget,Budget +310240,Budget,Budget +310236,Budget,Budget +310221,Budget,Budget +310217,Budget,Budget +310214,Budget,Budget +310209,Budget,Budget +310204,Budget,Budget +310199,Budget,Budget +310188,Budget,Budget +262051,Budget,Budget +262050,Budget,Budget +262049,Budget,Budget +492305,Budget,Budget +437630,Budget,Budget +422756,Budget,Budget +422755,Budget,Budget +422754,Budget,Budget +422753,Budget,Budget +421073,Budget,Budget +421068,Budget,Budget +421066,Budget,Budget +420434,Budget,Budget +420433,Budget,Budget +420432,Budget,Budget +419561,Budget,Budget +419553,Budget,Budget +419550,Budget,Budget +419548,Budget,Budget +419546,Budget,Budget +418498,Budget,Budget +414789,Budget,Budget +414748,Budget,Budget +414384,Budget,Budget +411086,Budget,Budget +410419,Budget,Budget +408488,Budget,Budget +408487,Budget,Budget +400079,Budget,Budget +400076,Budget,Budget +397789,Budget,Budget +397702,Budget,Budget +397352,Budget,Budget +395571,Budget,Budget +394521,Budget,Budget +394518,Budget,Budget +394515,Budget,Budget +474645,Health,Health +474644,Health,Health +164607,Health,Health +381922,Health,Health +381921,Health,Health +377051,Health,Health +377046,Health,Health +377034,Health,Health +367471,Health,Health +367470,Health,Health +367469,Health,Health +367467,Health,Health +330579,Health,Health +330578,Health,Health +324557,Health,Health +324556,Health,Health +324555,Health,Health +459052,Health,Health +459050,Health,Health +457964,Health,Health +454977,Health,Health +453978,Health,Health +453977,Health,Health +453976,Health,Health +453975,Health,Health +434908,Health,Health +434394,Health,Health +434390,Health,Health +434389,Health,Health +434387,Health,Health +418588,Health,Health +418479,Health,Health +414860,Health,Health +410592,Health,Health +407340,Health,Health +406229,Health,Health +406191,Health,Health +406190,Health,Health +406189,Health,Health +406188,Health,Health +404387,Health,Health +397256,Health,Health +393272,Health,Health +393271,Health,Health +393270,Health,Health +393269,Health,Health +393268,Health,Health +393266,Health,Health +389242,Health,Health +389241,Health,Health +389236,Health,Health +386345,Health,Health +386343,Health,Health +386342,Health,Health +386341,Health,Health +386340,Health,Health +386337,Health,Health +381924,Health,Health +381923,Health,Health +524464,Health,Health +513694,Health,Health +506161,Health,Health +506160,Health,Health +503204,Health,Health +502971,Health,Health +502969,Health,Health +502966,Health,Health +493905,Health,Health +493904,Health,Health +485425,Health,Health +477517,Health,Health +474661,Health,Health +493905,Research and Development,Research and Development (R&D) +493904,Research and Development,Research and Development (R&D) +164607,Research and Development,Research and Development (R&D) +377051,Research and Development,Research and Development (R&D) +377046,Research and Development,Research and Development (R&D) +377034,Research and Development,Research and Development (R&D) +367524,Research and Development,Research and Development (R&D) +367471,Research and Development,Research and Development (R&D) +367470,Research and Development,Research and Development (R&D) +367469,Research and Development,Research and Development (R&D) +330579,Research and Development,Research and Development (R&D) +330578,Research and Development,Research and Development (R&D) +324557,Research and Development,Research and Development (R&D) +324556,Research and Development,Research and Development (R&D) +324555,Research and Development,Research and Development (R&D) +485425,Research and Development,Research and Development (R&D) +482803,Research and Development,Research and Development (R&D) +481803,Research and Development,Research and Development (R&D) +477517,Research and Development,Research and Development (R&D) +474661,Research and Development,Research and Development (R&D) +459052,Research and Development,Research and Development (R&D) +459050,Research and Development,Research and Development (R&D) +457964,Research and Development,Research and Development (R&D) +454977,Research and Development,Research and Development (R&D) +453978,Research and Development,Research and Development (R&D) +453977,Research and Development,Research and Development (R&D) +453976,Research and Development,Research and Development (R&D) +453975,Research and Development,Research and Development (R&D) +453974,Research and Development,Research and Development (R&D) +434908,Research and Development,Research and Development (R&D) +434394,Research and Development,Research and Development (R&D) +434390,Research and Development,Research and Development (R&D) +434389,Research and Development,Research and Development (R&D) +434387,Research and Development,Research and Development (R&D) +418588,Research and Development,Research and Development (R&D) +418479,Research and Development,Research and Development (R&D) +418447,Research and Development,Research and Development (R&D) +414860,Research and Development,Research and Development (R&D) +410592,Research and Development,Research and Development (R&D) +407340,Research and Development,Research and Development (R&D) +406229,Research and Development,Research and Development (R&D) +406191,Research and Development,Research and Development (R&D) +406190,Research and Development,Research and Development (R&D) +406189,Research and Development,Research and Development (R&D) +406188,Research and Development,Research and Development (R&D) +404387,Research and Development,Research and Development (R&D) +401958,Research and Development,Research and Development (R&D) +397256,Research and Development,Research and Development (R&D) +393600,Research and Development,Research and Development (R&D) +393272,Research and Development,Research and Development (R&D) +393271,Research and Development,Research and Development (R&D) +393270,Research and Development,Research and Development (R&D) +393269,Research and Development,Research and Development (R&D) +393268,Research and Development,Research and Development (R&D) +393266,Research and Development,Research and Development (R&D) +389242,Research and Development,Research and Development (R&D) +389241,Research and Development,Research and Development (R&D) +389236,Research and Development,Research and Development (R&D) +386345,Research and Development,Research and Development (R&D) +386343,Research and Development,Research and Development (R&D) +386342,Research and Development,Research and Development (R&D) +386341,Research and Development,Research and Development (R&D) +386340,Research and Development,Research and Development (R&D) +386337,Research and Development,Research and Development (R&D) +386336,Research and Development,Research and Development (R&D) +386335,Research and Development,Research and Development (R&D) +381924,Research and Development,Research and Development (R&D) +381923,Research and Development,Research and Development (R&D) +381922,Research and Development,Research and Development (R&D) +381921,Research and Development,Research and Development (R&D) +537226,Research and Development,Research and Development (R&D) +537225,Research and Development,Research and Development (R&D) +537224,Research and Development,Research and Development (R&D) +531118,Research and Development,Research and Development (R&D) +531116,Research and Development,Research and Development (R&D) +531115,Research and Development,Research and Development (R&D) +524464,Research and Development,Research and Development (R&D) +516522,Research and Development,Research and Development (R&D) +515232,Research and Development,Research and Development (R&D) +515231,Research and Development,Research and Development (R&D) +513694,Research and Development,Research and Development (R&D) +512055,Research and Development,Research and Development (R&D) +509637,Research and Development,Research and Development (R&D) +506936,Research and Development,Research and Development (R&D) +506161,Research and Development,Research and Development (R&D) +506160,Research and Development,Research and Development (R&D) +503204,Research and Development,Research and Development (R&D) +502971,Research and Development,Research and Development (R&D) +502969,Research and Development,Research and Development (R&D) +166687,Agriculture,Agriculture +166684,Agriculture,Agriculture +256892,Agriculture,Agriculture +256849,Agriculture,Agriculture +256829,Agriculture,Agriculture +252269,Agriculture,Agriculture +205248,Agriculture,Agriculture +205247,Agriculture,Agriculture +166787,Agriculture,Agriculture +166786,Agriculture,Agriculture +166785,Agriculture,Agriculture +166689,Agriculture,Agriculture +347636,Agriculture,Agriculture +465275,Agriculture,Agriculture +206011,Agriculture,Agriculture +206010,Agriculture,Agriculture +206009,Agriculture,Agriculture +167564,Agriculture,Agriculture +317551,Agriculture,Agriculture +316671,Agriculture,Agriculture +258137,Agriculture,Agriculture +258134,Agriculture,Agriculture +258133,Agriculture,Agriculture +258132,Agriculture,Agriculture +446483,Agriculture,Agriculture +444859,Agriculture,Agriculture +423332,Agriculture,Agriculture +423331,Agriculture,Agriculture +384816,Agriculture,Agriculture +382903,Agriculture,Agriculture +380108,Agriculture,Agriculture +369678,Agriculture,Agriculture +369669,Agriculture,Agriculture +369666,Agriculture,Agriculture +369665,Agriculture,Agriculture +369665,Consumer Issues,Consumer Issues +369660,Consumer Issues,Consumer Issues +206009,Consumer Issues,Consumer Issues +167564,Consumer Issues,Consumer Issues +347636,Consumer Issues,Consumer Issues +317551,Consumer Issues,Consumer Issues +316671,Consumer Issues,Consumer Issues +258137,Consumer Issues,Consumer Issues +258134,Consumer Issues,Consumer Issues +258133,Consumer Issues,Consumer Issues +258132,Consumer Issues,Consumer Issues +465275,Consumer Issues,Consumer Issues +446483,Consumer Issues,Consumer Issues +444859,Consumer Issues,Consumer Issues +423332,Consumer Issues,Consumer Issues +423331,Consumer Issues,Consumer Issues +384816,Consumer Issues,Consumer Issues +382903,Consumer Issues,Consumer Issues +369678,Consumer Issues,Consumer Issues +369669,Consumer Issues,Consumer Issues +423332,Environment,Environment +423331,Environment,Environment +384816,Environment,Environment +347636,Environment,Environment +317551,Environment,Environment +316671,Environment,Environment +258137,Environment,Environment +258134,Environment,Environment +258133,Environment,Environment +258132,Environment,Environment +206010,Environment,Environment +465275,Environment,Environment +317551,Health,Health +316671,Health,Health +258137,Health,Health +258134,Health,Health +258133,Health,Health +258132,Health,Health +423332,International Trade,International Trade +423331,International Trade,International Trade +167564,International Trade,International Trade +258137,International Trade,International Trade +258134,International Trade,International Trade +258133,International Trade,International Trade +258132,International Trade,International Trade +206011,International Trade,International Trade +206010,International Trade,International Trade +206009,International Trade,International Trade +384816,International Trade,International Trade +382903,International Trade,International Trade +380108,International Trade,International Trade +369678,International Trade,International Trade +369669,International Trade,International Trade +369666,International Trade,International Trade +369665,International Trade,International Trade +369660,International Trade,International Trade +347636,International Trade,International Trade +317551,International Trade,International Trade +316671,International Trade,International Trade +465275,International Trade,International Trade +446483,International Trade,International Trade +347662,Agriculture,Agriculture +347661,Agriculture,Agriculture +168922,Agriculture,Agriculture +347660,Agriculture,Agriculture +347659,Agriculture,Agriculture +384314,Agriculture,Agriculture +368673,Agriculture,Agriculture +368672,Agriculture,Agriculture +368671,Agriculture,Agriculture +368670,Agriculture,Agriculture +368669,Agriculture,Agriculture +368668,Agriculture,Agriculture +368667,Agriculture,Agriculture +368666,Agriculture,Agriculture +394688,Health,Health +394687,Health,Health +347660,International Trade,International Trade +347659,International Trade,International Trade +168922,International Trade,International Trade +394688,International Trade,International Trade +394687,International Trade,International Trade +368673,International Trade,International Trade +368672,International Trade,International Trade +368671,International Trade,International Trade +368670,International Trade,International Trade +368669,International Trade,International Trade +368668,International Trade,International Trade +368667,International Trade,International Trade +368666,International Trade,International Trade +362742,International Trade,International Trade +356896,International Trade,International Trade +347662,International Trade,International Trade +457698,Defence,Defence +400990,Defence,Defence +246111,Defence,Defence +246110,Defence,Defence +246109,Defence,Defence +200585,Defence,Defence +200584,Defence,Defence +200583,Defence,Defence +200582,Defence,Defence +195022,Defence,Defence +195019,Defence,Defence +195017,Defence,Defence +195016,Defence,Defence +195014,Defence,Defence +195012,Defence,Defence +195011,Defence,Defence +174644,Defence,Defence +168419,Defence,Defence +396483,Defence,Defence +396473,Defence,Defence +391812,Defence,Defence +291570,Defence,Defence +291569,Defence,Defence +273688,Defence,Defence +273686,Defence,Defence +273683,Defence,Defence +273681,Defence,Defence +251010,Defence,Defence +251009,Defence,Defence +246115,Defence,Defence +246114,Defence,Defence +246113,Defence,Defence +524303,Defence,Defence +499786,Economic Development,Economic Development +457698,Economic Development,Economic Development +200585,Economic Development,Economic Development +200584,Economic Development,Economic Development +200583,Economic Development,Economic Development +200582,Economic Development,Economic Development +195022,Economic Development,Economic Development +195019,Economic Development,Economic Development +195017,Economic Development,Economic Development +195016,Economic Development,Economic Development +195014,Economic Development,Economic Development +195012,Economic Development,Economic Development +195011,Economic Development,Economic Development +174644,Economic Development,Economic Development +168419,Economic Development,Economic Development +291570,Economic Development,Economic Development +291569,Economic Development,Economic Development +273688,Economic Development,Economic Development +273686,Economic Development,Economic Development +273683,Economic Development,Economic Development +273681,Economic Development,Economic Development +265279,Economic Development,Economic Development +265275,Economic Development,Economic Development +251010,Economic Development,Economic Development +251009,Economic Development,Economic Development +246115,Economic Development,Economic Development +246114,Economic Development,Economic Development +246113,Economic Development,Economic Development +246112,Economic Development,Economic Development +246111,Economic Development,Economic Development +246110,Economic Development,Economic Development +246109,Economic Development,Economic Development +442734,Economic Development,Economic Development +400990,Economic Development,Economic Development +396483,Economic Development,Economic Development +396473,Economic Development,Economic Development +391812,Economic Development,Economic Development +524303,Economic Development,Economic Development +524303,Employment and Training,Employment and Training +457698,Employment and Training,Employment and Training +200582,Employment and Training,Employment and Training +174644,Employment and Training,Employment and Training +168419,Employment and Training,Employment and Training +291570,Employment and Training,Employment and Training +273688,Employment and Training,Employment and Training +273686,Employment and Training,Employment and Training +273683,Employment and Training,Employment and Training +273681,Employment and Training,Employment and Training +265275,Employment and Training,Employment and Training +251010,Employment and Training,Employment and Training +251009,Employment and Training,Employment and Training +246115,Employment and Training,Employment and Training +246114,Employment and Training,Employment and Training +246113,Employment and Training,Employment and Training +246112,Employment and Training,Employment and Training +246111,Employment and Training,Employment and Training +246110,Employment and Training,Employment and Training +246109,Employment and Training,Employment and Training +442734,Employment and Training,Employment and Training +396473,Government Procurement,Government Procurement +391812,Government Procurement,Government Procurement +200585,Government Procurement,Government Procurement +200584,Government Procurement,Government Procurement +200582,Government Procurement,Government Procurement +174644,Government Procurement,Government Procurement +168419,Government Procurement,Government Procurement +291570,Government Procurement,Government Procurement +291569,Government Procurement,Government Procurement +273688,Government Procurement,Government Procurement +273686,Government Procurement,Government Procurement +273683,Government Procurement,Government Procurement +273681,Government Procurement,Government Procurement +251010,Government Procurement,Government Procurement +251009,Government Procurement,Government Procurement +246115,Government Procurement,Government Procurement +246114,Government Procurement,Government Procurement +246113,Government Procurement,Government Procurement +246112,Government Procurement,Government Procurement +246111,Government Procurement,Government Procurement +246110,Government Procurement,Government Procurement +246109,Government Procurement,Government Procurement +524303,Government Procurement,Government Procurement +520341,Government Procurement,Government Procurement +499786,Government Procurement,Government Procurement +442734,Government Procurement,Government Procurement +400990,Government Procurement,Government Procurement +396473,Industry,Industry +391812,Industry,Industry +273688,Industry,Industry +273686,Industry,Industry +251010,Industry,Industry +251009,Industry,Industry +246115,Industry,Industry +246114,Industry,Industry +246113,Industry,Industry +246112,Industry,Industry +246111,Industry,Industry +246110,Industry,Industry +246109,Industry,Industry +200585,Industry,Industry +200584,Industry,Industry +200583,Industry,Industry +200582,Industry,Industry +174644,Industry,Industry +168419,Industry,Industry +506526,Industry,Industry +457698,Industry,Industry +442734,Industry,Industry +400990,Industry,Industry +396483,Intellectual Property,Intellectual Property +391812,Intellectual Property,Intellectual Property +246110,Intellectual Property,Intellectual Property +200583,Intellectual Property,Intellectual Property +200582,Intellectual Property,Intellectual Property +174644,Intellectual Property,Intellectual Property +174644,International Trade,International Trade +168419,International Trade,International Trade +246110,International Trade,International Trade +391812,Research and Development,Research and Development (R&D) +506526,Research and Development,Research and Development (R&D) +195022,Research and Development,Research and Development (R&D) +195019,Research and Development,Research and Development (R&D) +195017,Research and Development,Research and Development (R&D) +195016,Research and Development,Research and Development (R&D) +195014,Research and Development,Research and Development (R&D) +195012,Research and Development,Research and Development (R&D) +195011,Research and Development,Research and Development (R&D) +174644,Research and Development,Research and Development (R&D) +168419,Research and Development,Research and Development (R&D) +291569,Research and Development,Research and Development (R&D) +265279,Research and Development,Research and Development (R&D) +265275,Research and Development,Research and Development (R&D) +246115,Research and Development,Research and Development (R&D) +246114,Research and Development,Research and Development (R&D) +246111,Research and Development,Research and Development (R&D) +200585,Research and Development,Research and Development (R&D) +200584,Research and Development,Research and Development (R&D) +200583,Research and Development,Research and Development (R&D) +200582,Research and Development,Research and Development (R&D) +457698,Research and Development,Research and Development (R&D) +442734,Research and Development,Research and Development (R&D) +400990,Research and Development,Research and Development (R&D) +174484,Health,Health +168437,Health,Health +168437,Industry,Industry +251012,Industry,Industry +206687,Agriculture,Agriculture +168942,Agriculture,Agriculture +344637,Agriculture,Agriculture +264464,Agriculture,Agriculture +207503,Agriculture,Agriculture +168944,Agriculture,Agriculture +368546,Agriculture,Agriculture +368545,Agriculture,Agriculture +368544,Agriculture,Agriculture +368543,Agriculture,Agriculture +354800,Agriculture,Agriculture +347674,Agriculture,Agriculture +347673,Agriculture,Agriculture +347672,Agriculture,Agriculture +347671,Agriculture,Agriculture +347670,Agriculture,Agriculture +347669,Agriculture,Agriculture +419700,Health,Health +407422,Health,Health +168944,Health,Health +393845,Health,Health +393844,Health,Health +393842,Health,Health +393840,Health,Health +393839,Health,Health +393836,Health,Health +445196,Health,Health +347668,International Trade,International Trade +445196,International Trade,International Trade +168944,International Trade,International Trade +264464,International Trade,International Trade +207503,International Trade,International Trade +419701,International Trade,International Trade +419700,International Trade,International Trade +407422,International Trade,International Trade +393845,International Trade,International Trade +393844,International Trade,International Trade +393842,International Trade,International Trade +393840,International Trade,International Trade +393839,International Trade,International Trade +393836,International Trade,International Trade +368546,International Trade,International Trade +368545,International Trade,International Trade +368544,International Trade,International Trade +368543,International Trade,International Trade +354800,International Trade,International Trade +347674,International Trade,International Trade +347673,International Trade,International Trade +347672,International Trade,International Trade +347671,International Trade,International Trade +347670,International Trade,International Trade +437544,Agriculture,Agriculture +437502,Agriculture,Agriculture +405834,Agriculture,Agriculture +405833,Agriculture,Agriculture +399553,Agriculture,Agriculture +373616,Agriculture,Agriculture +368531,Agriculture,Agriculture +368529,Agriculture,Agriculture +368528,Agriculture,Agriculture +368527,Agriculture,Agriculture +368526,Agriculture,Agriculture +361742,Agriculture,Agriculture +347653,Agriculture,Agriculture +347652,Agriculture,Agriculture +347651,Agriculture,Agriculture +347650,Agriculture,Agriculture +347648,Agriculture,Agriculture +319561,Agriculture,Agriculture +288389,Agriculture,Agriculture +263956,Agriculture,Agriculture +288389,Consumer Issues,Consumer Issues +393816,Health,Health +393814,Health,Health +168928,Health,Health +445201,Health,Health +423384,Health,Health +419672,Health,Health +419671,Health,Health +419670,Health,Health +407170,Health,Health +393820,Health,Health +393819,Health,Health +393816,International Trade,International Trade +393814,International Trade,International Trade +168928,International Trade,International Trade +368531,International Trade,International Trade +368529,International Trade,International Trade +368528,International Trade,International Trade +368527,International Trade,International Trade +368526,International Trade,International Trade +361742,International Trade,International Trade +360481,International Trade,International Trade +359444,International Trade,International Trade +358702,International Trade,International Trade +347653,International Trade,International Trade +347652,International Trade,International Trade +347651,International Trade,International Trade +347650,International Trade,International Trade +347648,International Trade,International Trade +319561,International Trade,International Trade +319557,International Trade,International Trade +288389,International Trade,International Trade +445201,International Trade,International Trade +437544,International Trade,International Trade +437502,International Trade,International Trade +423384,International Trade,International Trade +420579,International Trade,International Trade +419672,International Trade,International Trade +419671,International Trade,International Trade +419670,International Trade,International Trade +407170,International Trade,International Trade +405834,International Trade,International Trade +405833,International Trade,International Trade +393820,International Trade,International Trade +393819,International Trade,International Trade +538433,Climate,Climate +534984,Climate,Climate +311491,Climate,Climate +197307,Climate,Climate +168110,Climate,Climate +168108,Climate,Climate +379629,Climate,Climate +379628,Climate,Climate +379623,Climate,Climate +379615,Climate,Climate +379569,Climate,Climate +379555,Climate,Climate +377101,Climate,Climate +377100,Climate,Climate +374839,Climate,Climate +374829,Climate,Climate +374827,Climate,Climate +364896,Climate,Climate +359853,Climate,Climate +359850,Climate,Climate +359848,Climate,Climate +359847,Climate,Climate +359846,Climate,Climate +359698,Climate,Climate +356009,Climate,Climate +355204,Climate,Climate +324512,Climate,Climate +324510,Climate,Climate +320339,Climate,Climate +320338,Climate,Climate +320337,Climate,Climate +314543,Climate,Climate +314538,Climate,Climate +314537,Climate,Climate +314536,Climate,Climate +439829,Climate,Climate +409375,Climate,Climate +409374,Climate,Climate +398789,Climate,Climate +394574,Climate,Climate +385793,Climate,Climate +385790,Climate,Climate +385788,Climate,Climate +383532,Climate,Climate +383527,Climate,Climate +382359,Climate,Climate +382356,Climate,Climate +379642,Climate,Climate +379636,Climate,Climate +379632,Climate,Climate +532213,Climate,Climate +532211,Climate,Climate +532210,Climate,Climate +532205,Climate,Climate +532147,Climate,Climate +532139,Climate,Climate +532136,Climate,Climate +532134,Climate,Climate +532132,Climate,Climate +517603,Climate,Climate +512897,Climate,Climate +502934,Climate,Climate +496173,Climate,Climate +496172,Climate,Climate +496171,Climate,Climate +496170,Climate,Climate +490785,Climate,Climate +545200,Climate,Climate +541667,Climate,Climate +541666,Climate,Climate +538437,Climate,Climate +543379,Privacy and Access to Information,Privacy and Access to Information +543393,Privacy and Access to Information,Privacy and Access to Information +165645,Labour,Labour +165644,Labour,Labour +170618,Labour,Labour +167325,Labour,Labour +404423,Agriculture,Agriculture +392933,Agriculture,Agriculture +206707,Agriculture,Agriculture +168929,Agriculture,Agriculture +380436,Agriculture,Agriculture +368515,Agriculture,Agriculture +368512,Agriculture,Agriculture +368510,Agriculture,Agriculture +368508,Agriculture,Agriculture +364566,Agriculture,Agriculture +360502,Agriculture,Agriculture +347647,Agriculture,Agriculture +347646,Agriculture,Agriculture +347640,Agriculture,Agriculture +342877,Agriculture,Agriculture +392933,Consumer Issues,Consumer Issues +393809,Health,Health +393808,Health,Health +206707,Health,Health +168929,Health,Health +419669,Health,Health +419668,Health,Health +419667,Health,Health +419665,Health,Health +419664,Health,Health +407182,Health,Health +407181,Health,Health +407180,Health,Health +360502,International Trade,International Trade +357145,International Trade,International Trade +168929,International Trade,International Trade +347647,International Trade,International Trade +347646,International Trade,International Trade +347640,International Trade,International Trade +247650,International Trade,International Trade +206707,International Trade,International Trade +425266,International Trade,International Trade +419669,International Trade,International Trade +419668,International Trade,International Trade +419667,International Trade,International Trade +419665,International Trade,International Trade +419664,International Trade,International Trade +404423,International Trade,International Trade +393811,International Trade,International Trade +393809,International Trade,International Trade +393808,International Trade,International Trade +368515,International Trade,International Trade +368512,International Trade,International Trade +368510,International Trade,International Trade +368508,International Trade,International Trade +364566,International Trade,International Trade +423093,Economic Development,Economic Development +423092,Economic Development,Economic Development +330176,Economic Development,Economic Development +330173,Economic Development,Economic Development +330172,Economic Development,Economic Development +330169,Economic Development,Economic Development +324952,Economic Development,Economic Development +324950,Economic Development,Economic Development +375527,Economic Development,Economic Development +375524,Economic Development,Economic Development +368155,Economic Development,Economic Development +324948,Employment and Training,Employment and Training +340476,Environment,Environment +340475,Environment,Environment +168873,Environment,Environment +168871,Environment,Environment +168867,Environment,Environment +168865,Environment,Environment +168861,Environment,Environment +168857,Environment,Environment +233832,Environment,Environment +324952,Environment,Environment +324950,Environment,Environment +324948,Environment,Environment +324945,Environment,Environment +168865,Fisheries,Fisheries +303309,Mining,Mining +303269,Mining,Mining +168861,Mining,Mining +168857,Mining,Mining +277442,Mining,Mining +277440,Mining,Mining +277439,Mining,Mining +277437,Mining,Mining +277436,Mining,Mining +245526,Mining,Mining +245524,Mining,Mining +245522,Mining,Mining +245521,Mining,Mining +245519,Mining,Mining +245512,Mining,Mining +245510,Mining,Mining +245509,Mining,Mining +233834,Mining,Mining +233832,Mining,Mining +223432,Mining,Mining +215513,Mining,Mining +215512,Mining,Mining +189572,Mining,Mining +189571,Mining,Mining +168873,Mining,Mining +168871,Mining,Mining +168867,Mining,Mining +168865,Mining,Mining +404481,Mining,Mining +400166,Mining,Mining +400164,Mining,Mining +400161,Mining,Mining +400159,Mining,Mining +375527,Mining,Mining +375526,Mining,Mining +375524,Mining,Mining +368155,Mining,Mining +340476,Mining,Mining +340475,Mining,Mining +333560,Mining,Mining +333559,Mining,Mining +333558,Mining,Mining +333556,Mining,Mining +330176,Mining,Mining +330173,Mining,Mining +330172,Mining,Mining +330169,Mining,Mining +324952,Mining,Mining +324950,Mining,Mining +324948,Mining,Mining +324945,Mining,Mining +324943,Mining,Mining +319198,Mining,Mining +319194,Mining,Mining +303315,Mining,Mining +303314,Mining,Mining +303313,Mining,Mining +303312,Mining,Mining +400161,Regional Development,Regional Development +375524,Regional Development,Regional Development +168873,Regional Development,Regional Development +168871,Regional Development,Regional Development +168867,Regional Development,Regional Development +168865,Regional Development,Regional Development +168861,Regional Development,Regional Development +168857,Regional Development,Regional Development +324952,Regional Development,Regional Development +324950,Regional Development,Regional Development +324948,Regional Development,Regional Development +324945,Regional Development,Regional Development +324943,Regional Development,Regional Development +400166,Regional Development,Regional Development +207110,Employment and Training,Employment and Training +168601,Agriculture,Agriculture +168597,Agriculture,Agriculture +259713,Agriculture,Agriculture +259712,Agriculture,Agriculture +259711,Agriculture,Agriculture +259710,Agriculture,Agriculture +259709,Agriculture,Agriculture +206270,Agriculture,Agriculture +206269,Agriculture,Agriculture +206268,Agriculture,Agriculture +206267,Agriculture,Agriculture +199778,Agriculture,Agriculture +199777,Agriculture,Agriculture +206269,Health,Health +206268,Health,Health +168601,International Trade,International Trade +168597,International Trade,International Trade +259713,International Trade,International Trade +259712,International Trade,International Trade +259711,International Trade,International Trade +259710,International Trade,International Trade +259709,International Trade,International Trade +206269,International Trade,International Trade +206268,International Trade,International Trade +206267,International Trade,International Trade +199778,International Trade,International Trade +199777,International Trade,International Trade +237629,Budget,Budget +223652,Budget,Budget +192043,Budget,Budget +192041,Budget,Budget +192037,Budget,Budget +192036,Budget,Budget +192035,Budget,Budget +192031,Budget,Budget +309610,Budget,Budget +251441,Budget,Budget +251438,Budget,Budget +251014,Budget,Budget +251006,Budget,Budget +245410,Budget,Budget +245409,Budget,Budget +395158,Economic Development,Economic Development +395153,Economic Development,Economic Development +353320,Economic Development,Economic Development +350635,Economic Development,Economic Development +233868,Economic Development,Economic Development +223652,Economic Development,Economic Development +212127,Economic Development,Economic Development +209229,Economic Development,Economic Development +176685,Economic Development,Economic Development +176684,Economic Development,Economic Development +395161,Economic Development,Economic Development +395160,Economic Development,Economic Development +174047,Fisheries,Fisheries +174046,Fisheries,Fisheries +174049,Fisheries,Fisheries +370406,Agriculture,Agriculture +370405,Agriculture,Agriculture +316650,Agriculture,Agriculture +260009,Agriculture,Agriculture +258216,Agriculture,Agriculture +393509,Agriculture,Agriculture +370762,Agriculture,Agriculture +260009,Consumer Issues,Consumer Issues +258216,Consumer Issues,Consumer Issues +393509,Consumer Issues,Consumer Issues +370762,Consumer Issues,Consumer Issues +370407,Consumer Issues,Consumer Issues +370406,Consumer Issues,Consumer Issues +370405,Consumer Issues,Consumer Issues +370405,Environment,Environment +316650,Environment,Environment +260009,Environment,Environment +258216,Environment,Environment +370762,Environment,Environment +370407,Environment,Environment +258216,Health,Health +393509,Health,Health +316650,Health,Health +370406,International Trade,International Trade +370405,International Trade,International Trade +316650,International Trade,International Trade +260009,International Trade,International Trade +258216,International Trade,International Trade +393509,International Trade,International Trade +370762,International Trade,International Trade +496431,Agriculture,Agriculture +496427,Agriculture,Agriculture +347642,Agriculture,Agriculture +393510,Agriculture,Agriculture +382904,Agriculture,Agriculture +370764,Agriculture,Agriculture +370760,Agriculture,Agriculture +370408,Agriculture,Agriculture +369679,Agriculture,Agriculture +523473,Agriculture,Agriculture +523472,Agriculture,Agriculture +523471,Agriculture,Agriculture +523470,Agriculture,Agriculture +523469,Agriculture,Agriculture +496433,Agriculture,Agriculture +496431,Consumer Issues,Consumer Issues +496427,Consumer Issues,Consumer Issues +393510,Consumer Issues,Consumer Issues +382904,Consumer Issues,Consumer Issues +370764,Consumer Issues,Consumer Issues +370760,Consumer Issues,Consumer Issues +370408,Consumer Issues,Consumer Issues +369679,Consumer Issues,Consumer Issues +347642,Consumer Issues,Consumer Issues +523473,Consumer Issues,Consumer Issues +523472,Consumer Issues,Consumer Issues +523471,Consumer Issues,Consumer Issues +523470,Consumer Issues,Consumer Issues +523469,Consumer Issues,Consumer Issues +496433,Consumer Issues,Consumer Issues +523470,Environment,Environment +523469,Environment,Environment +370760,Environment,Environment +370408,Environment,Environment +347642,Environment,Environment +496433,Environment,Environment +496432,Environment,Environment +496431,Environment,Environment +496427,Environment,Environment +523473,Environment,Environment +523472,Environment,Environment +496431,Health,Health +496427,Health,Health +347642,Health,Health +393510,Health,Health +523473,Health,Health +523472,Health,Health +523471,Health,Health +523470,Health,Health +523469,Health,Health +496433,Health,Health +523470,International Trade,International Trade +523469,International Trade,International Trade +393510,International Trade,International Trade +382904,International Trade,International Trade +370764,International Trade,International Trade +370760,International Trade,International Trade +370408,International Trade,International Trade +369679,International Trade,International Trade +347642,International Trade,International Trade +496433,International Trade,International Trade +496432,International Trade,International Trade +496431,International Trade,International Trade +496427,International Trade,International Trade +523473,International Trade,International Trade +523472,International Trade,International Trade +397100,Agriculture,Agriculture +397099,Agriculture,Agriculture +207379,Agriculture,Agriculture +168181,Agriculture,Agriculture +168180,Agriculture,Agriculture +375495,Agriculture,Agriculture +370313,Agriculture,Agriculture +370312,Agriculture,Agriculture +370310,Agriculture,Agriculture +370309,Agriculture,Agriculture +370308,Agriculture,Agriculture +345118,Agriculture,Agriculture +345097,Agriculture,Agriculture +345077,Agriculture,Agriculture +345057,Agriculture,Agriculture +315428,Agriculture,Agriculture +315418,Agriculture,Agriculture +315417,Agriculture,Agriculture +315403,Agriculture,Agriculture +315398,Agriculture,Agriculture +315395,Agriculture,Agriculture +315392,Agriculture,Agriculture +259502,Agriculture,Agriculture +259492,Agriculture,Agriculture +259466,Agriculture,Agriculture +259456,Agriculture,Agriculture +397105,Agriculture,Agriculture +397104,Agriculture,Agriculture +397102,Agriculture,Agriculture +397101,Internal Trade,Commerce intérieur +397100,Internal Trade,Commerce intérieur +207379,Internal Trade,Commerce intérieur +168181,Internal Trade,Commerce intérieur +168180,Internal Trade,Commerce intérieur +397099,Internal Trade,Commerce intérieur +375495,Internal Trade,Commerce intérieur +370313,Internal Trade,Commerce intérieur +370312,Internal Trade,Commerce intérieur +370310,Internal Trade,Commerce intérieur +370309,Internal Trade,Commerce intérieur +370308,Internal Trade,Commerce intérieur +345118,Internal Trade,Commerce intérieur +345097,Internal Trade,Commerce intérieur +345077,Internal Trade,Commerce intérieur +345057,Internal Trade,Commerce intérieur +397105,Internal Trade,Commerce intérieur +397104,Internal Trade,Commerce intérieur +397102,International Trade,Commerce international +397101,International Trade,Commerce international +207379,International Trade,Commerce international +168181,International Trade,Commerce international +168180,International Trade,Commerce international +397100,International Trade,Commerce international +397099,International Trade,Commerce international +375495,International Trade,Commerce international +370313,International Trade,Commerce international +370312,International Trade,Commerce international +370310,International Trade,Commerce international +370309,International Trade,Commerce international +370308,International Trade,Commerce international +345118,International Trade,Commerce international +345097,International Trade,Commerce international +345077,International Trade,Commerce international +345057,International Trade,Commerce international +315428,International Trade,Commerce international +315418,International Trade,Commerce international +315417,International Trade,Commerce international +315403,International Trade,Commerce international +315398,International Trade,Commerce international +315395,International Trade,Commerce international +315392,International Trade,Commerce international +259502,International Trade,Commerce international +259492,International Trade,Commerce international +259466,International Trade,Commerce international +259456,International Trade,Commerce international +397105,International Trade,Commerce international +315431,Agriculture,Agriculture +315430,Agriculture,Agriculture +193711,Agriculture,Agriculture +168204,Agriculture,Agriculture +193716,Agriculture,Agriculture +345697,Agriculture,Agriculture +345677,Agriculture,Agriculture +345517,Agriculture,Agriculture +193711,Internal Trade,Commerce intérieur +168204,Internal Trade,Commerce intérieur +345697,Internal Trade,Commerce intérieur +345677,Internal Trade,Commerce intérieur +345517,Internal Trade,Commerce intérieur +345437,Internal Trade,Commerce intérieur +315431,International Trade,Commerce international +315430,International Trade,Commerce international +193716,International Trade,Commerce international +193711,International Trade,Commerce international +168204,International Trade,Commerce international +345697,International Trade,Commerce international +345677,International Trade,Commerce international +345517,International Trade,Commerce international +368553,Agriculture,Agriculture +407073,Agriculture,Agriculture +168932,Agriculture,Agriculture +366246,Agriculture,Agriculture +354520,Agriculture,Agriculture +347887,Agriculture,Agriculture +347685,Agriculture,Agriculture +347684,Agriculture,Agriculture +347683,Agriculture,Agriculture +347682,Agriculture,Agriculture +347681,Agriculture,Agriculture +381833,Agriculture,Agriculture +381832,Agriculture,Agriculture +375327,Agriculture,Agriculture +373622,Agriculture,Agriculture +373621,Agriculture,Agriculture +373620,Agriculture,Agriculture +373619,Agriculture,Agriculture +373618,Agriculture,Agriculture +373617,Agriculture,Agriculture +368559,Agriculture,Agriculture +368558,Agriculture,Agriculture +368557,Agriculture,Agriculture +368556,Agriculture,Agriculture +368555,Agriculture,Agriculture +394683,Health,Health +394682,Health,Health +168932,Health,Health +419706,Health,Health +419705,Health,Health +419703,Health,Health +419703,International Trade,International Trade +407073,International Trade,International Trade +168932,International Trade,International Trade +394684,International Trade,International Trade +394683,International Trade,International Trade +394682,International Trade,International Trade +368559,International Trade,International Trade +368558,International Trade,International Trade +368557,International Trade,International Trade +368556,International Trade,International Trade +368555,International Trade,International Trade +368554,International Trade,International Trade +368553,International Trade,International Trade +366246,International Trade,International Trade +360263,International Trade,International Trade +360262,International Trade,International Trade +356234,International Trade,International Trade +354520,International Trade,International Trade +347685,International Trade,International Trade +347684,International Trade,International Trade +347683,International Trade,International Trade +347682,International Trade,International Trade +347681,International Trade,International Trade +419706,International Trade,International Trade +363273,Security,Security +290213,Security,Security +185453,Security,Security +185452,Security,Security +168154,Security,Security +168149,Security,Security +448465,Security,Security +431902,Security,Security +420107,Agriculture,Agriculture +409419,Agriculture,Agriculture +315427,Agriculture,Agriculture +315394,Agriculture,Agriculture +315393,Agriculture,Agriculture +293350,Agriculture,Agriculture +292511,Agriculture,Agriculture +259516,Agriculture,Agriculture +259503,Agriculture,Agriculture +259500,Agriculture,Agriculture +259452,Agriculture,Agriculture +193700,Agriculture,Agriculture +168184,Agriculture,Agriculture +168183,Agriculture,Agriculture +395064,Agriculture,Agriculture +370321,Agriculture,Agriculture +345917,Agriculture,Agriculture +497929,Agriculture,Agriculture +497928,Agriculture,Agriculture +497927,Agriculture,Agriculture +497926,Agriculture,Agriculture +497925,Agriculture,Agriculture +420107,Internal Trade,Commerce intérieur +409419,Internal Trade,Commerce intérieur +168183,Internal Trade,Commerce intérieur +395064,Internal Trade,Commerce intérieur +370321,Internal Trade,Commerce intérieur +345917,Internal Trade,Commerce intérieur +193700,Internal Trade,Commerce intérieur +168184,Internal Trade,Commerce intérieur +497929,Internal Trade,Commerce intérieur +497928,Internal Trade,Commerce intérieur +497927,Internal Trade,Commerce intérieur +497926,Internal Trade,Commerce intérieur +497925,Internal Trade,Commerce intérieur +497926,International Trade,Commerce international +497925,International Trade,Commerce international +315427,International Trade,Commerce international +315394,International Trade,Commerce international +315393,International Trade,Commerce international +293350,International Trade,Commerce international +292511,International Trade,Commerce international +259516,International Trade,Commerce international +259503,International Trade,Commerce international +259500,International Trade,Commerce international +259452,International Trade,Commerce international +193700,International Trade,Commerce international +168184,International Trade,Commerce international +168183,International Trade,Commerce international +422775,International Trade,Commerce international +420107,International Trade,Commerce international +409419,International Trade,Commerce international +395064,International Trade,Commerce international +370321,International Trade,Commerce international +345917,International Trade,Commerce international +497929,International Trade,Commerce international +497928,International Trade,Commerce international +315409,Agriculture,Agriculture +315401,Agriculture,Agriculture +193724,Agriculture,Agriculture +168264,Agriculture,Agriculture +259514,Agriculture,Agriculture +259509,Agriculture,Agriculture +259465,Agriculture,Agriculture +259459,Agriculture,Agriculture +168264,Internal Trade,Commerce intérieur +259509,International Trade,Commerce international +259465,International Trade,Commerce international +259459,International Trade,Commerce international +193724,International Trade,Commerce international +168264,International Trade,Commerce international +315416,International Trade,Commerce international +315409,International Trade,Commerce international +315401,International Trade,Commerce international +394884,Agriculture,Agriculture +382869,Agriculture,Agriculture +193739,Agriculture,Agriculture +371284,Agriculture,Agriculture +346298,Agriculture,Agriculture +382869,Internal Trade,Commerce intérieur +496846,Internal Trade,Commerce intérieur +193739,Internal Trade,Commerce intérieur +371284,Internal Trade,Commerce intérieur +346298,Internal Trade,Commerce intérieur +371284,International Trade,Commerce international +496846,International Trade,Commerce international +193739,International Trade,Commerce international +346298,International Trade,Commerce international +394884,International Trade,Commerce international +168185,Agriculture,Agriculture +259369,Agriculture,Agriculture +168185,Internal Trade,Commerce intérieur +168186,International Trade,Commerce international +168185,International Trade,Commerce international +497342,Agriculture,Agriculture +497332,Agriculture,Agriculture +168175,Agriculture,Agriculture +346318,Agriculture,Agriculture +315405,Agriculture,Agriculture +420379,Agriculture,Agriculture +420378,Agriculture,Agriculture +407383,Agriculture,Agriculture +407379,Agriculture,Agriculture +394754,Agriculture,Agriculture +420378,Internal Trade,Commerce intérieur +497342,Internal Trade,Commerce intérieur +168175,Internal Trade,Commerce intérieur +381975,Internal Trade,Commerce intérieur +346318,Internal Trade,Commerce intérieur +407379,International Trade,Commerce international +394754,International Trade,Commerce international +381975,International Trade,Commerce international +346318,International Trade,Commerce international +315405,International Trade,Commerce international +168175,International Trade,Commerce international +497342,International Trade,Commerce international +420379,International Trade,Commerce international +420378,International Trade,Commerce international +193720,Agriculture,Agriculture +168174,Internal Trade,Commerce intérieur +168174,International Trade,Commerce international +168284,Agriculture,Agriculture +393787,Agriculture,Agriculture +375497,Agriculture,Agriculture +371285,Agriculture,Agriculture +371122,Agriculture,Agriculture +346137,Agriculture,Agriculture +346117,Agriculture,Agriculture +346097,Agriculture,Agriculture +315433,Agriculture,Agriculture +315421,Agriculture,Agriculture +315420,Agriculture,Agriculture +346097,Internal Trade,Commerce intérieur +393787,Internal Trade,Commerce intérieur +168284,Internal Trade,Commerce intérieur +375497,Internal Trade,Commerce intérieur +371285,Internal Trade,Commerce intérieur +371122,Internal Trade,Commerce intérieur +346137,Internal Trade,Commerce intérieur +422701,International Trade,Commerce international +393787,International Trade,Commerce international +168284,International Trade,Commerce international +375497,International Trade,Commerce international +371285,International Trade,Commerce international +371122,International Trade,Commerce international +346137,International Trade,Commerce international +346117,International Trade,Commerce international +346097,International Trade,Commerce international +315433,International Trade,Commerce international +315421,International Trade,Commerce international +315420,International Trade,Commerce international +358783,Agriculture,Agriculture +357179,Agriculture,Agriculture +346914,Agriculture,Agriculture +315410,Agriculture,Agriculture +315390,Agriculture,Agriculture +193696,Agriculture,Agriculture +168244,Agriculture,Agriculture +168224,Agriculture,Agriculture +168205,Agriculture,Agriculture +397053,Agriculture,Agriculture +383103,Agriculture,Agriculture +382922,Agriculture,Agriculture +382921,Agriculture,Agriculture +373659,Agriculture,Agriculture +370299,Agriculture,Agriculture +370298,Agriculture,Agriculture +366204,Agriculture,Agriculture +168244,Internal Trade,Commerce intérieur +168224,Internal Trade,Commerce intérieur +168205,Internal Trade,Commerce intérieur +193696,Internal Trade,Commerce intérieur +397053,Internal Trade,Commerce intérieur +383103,Internal Trade,Commerce intérieur +382922,Internal Trade,Commerce intérieur +382921,Internal Trade,Commerce intérieur +373659,Internal Trade,Commerce intérieur +370299,Internal Trade,Commerce intérieur +370298,Internal Trade,Commerce intérieur +366204,Internal Trade,Commerce intérieur +366203,Internal Trade,Commerce intérieur +358783,Internal Trade,Commerce intérieur +357179,Internal Trade,Commerce intérieur +315410,International Trade,Commerce international +315390,International Trade,Commerce international +168244,International Trade,Commerce international +168224,International Trade,Commerce international +168205,International Trade,Commerce international +193696,International Trade,Commerce international +397053,International Trade,Commerce international +383103,International Trade,Commerce international +382922,International Trade,Commerce international +382921,International Trade,Commerce international +373659,International Trade,Commerce international +370299,International Trade,Commerce international +370298,International Trade,Commerce international +366204,International Trade,Commerce international +366203,International Trade,Commerce international +358783,International Trade,Commerce international +357179,International Trade,Commerce international +212370,Agriculture,Agriculture +212367,Agriculture,Agriculture +197129,Agriculture,Agriculture +197127,Agriculture,Agriculture +197126,Agriculture,Agriculture +197125,Agriculture,Agriculture +197124,Agriculture,Agriculture +169387,Agriculture,Agriculture +336018,Agriculture,Agriculture +330952,Agriculture,Agriculture +329897,Agriculture,Agriculture +327894,Agriculture,Agriculture +319433,Agriculture,Agriculture +286029,Agriculture,Agriculture +264284,Agriculture,Agriculture +259591,Agriculture,Agriculture +254529,Agriculture,Agriculture +251049,Agriculture,Agriculture +322186,International Trade,International Trade +319433,International Trade,International Trade +169387,International Trade,International Trade +286029,International Trade,International Trade +167734,Climate,Climate +167732,Climate,Climate +167737,Climate,Climate +167734,Environment,Environment +167732,Environment,Environment +167737,Environment,Environment +167735,Infrastructure,Infrastructure +167734,Infrastructure,Infrastructure +167732,Infrastructure,Infrastructure +164944,Consumer Issues,Consumer Issues +164944,Health,Health +194926,Education,Education +194925,Education,Education +254250,Education,Education +250306,Education,Education +194925,Health,Health +332298,Government Procurement,Government Procurement +269290,Government Procurement,Government Procurement +276490,Mining,Mining +228018,International Development,International Development +347889,International Development,International Development +228016,International Development,International Development +228015,International Development,International Development +205007,International Development,International Development +192971,International Development,International Development +343099,International Development,International Development +339419,International Development,International Development +336371,International Development,International Development +336370,International Development,International Development +336369,International Development,International Development +328710,International Development,International Development +323261,International Development,International Development +323260,International Development,International Development +323258,International Development,International Development +323257,International Development,International Development +323256,International Development,International Development +323255,International Development,International Development +323254,International Development,International Development +323253,International Development,International Development +323252,International Development,International Development +323251,International Development,International Development +320755,International Development,International Development +320754,International Development,International Development +320753,International Development,International Development +320752,International Development,International Development +320751,International Development,International Development +320750,International Development,International Development +320749,International Development,International Development +311813,International Development,International Development +311812,International Development,International Development +306455,International Development,International Development +306454,International Development,International Development +297869,International Development,International Development +293229,International Development,International Development +251611,International Development,International Development +251610,International Development,International Development +251609,International Development,International Development +246309,International Development,International Development +244621,International Development,International Development +242991,International Development,International Development +239255,International Development,International Development +239254,International Development,International Development +238453,International Development,International Development +238452,International Development,International Development +232792,International Development,International Development +336370,International Relations,International Relations +336369,International Relations,International Relations +211820,International Relations,International Relations +208927,International Relations,International Relations +207472,International Relations,International Relations +207471,International Relations,International Relations +205047,International Relations,International Relations +199868,International Relations,International Relations +199864,International Relations,International Relations +194765,International Relations,International Relations +192970,International Relations,International Relations +192969,International Relations,International Relations +188771,International Relations,International Relations +188770,International Relations,International Relations +188765,International Relations,International Relations +181404,International Relations,International Relations +177287,International Relations,International Relations +177286,International Relations,International Relations +177285,International Relations,International Relations +177284,International Relations,International Relations +169806,International Relations,International Relations +169805,International Relations,International Relations +328710,International Relations,International Relations +323261,International Relations,International Relations +323260,International Relations,International Relations +323258,International Relations,International Relations +323257,International Relations,International Relations +323256,International Relations,International Relations +323255,International Relations,International Relations +323254,International Relations,International Relations +323253,International Relations,International Relations +323252,International Relations,International Relations +323251,International Relations,International Relations +320755,International Relations,International Relations +320754,International Relations,International Relations +320753,International Relations,International Relations +320752,International Relations,International Relations +320751,International Relations,International Relations +320750,International Relations,International Relations +320749,International Relations,International Relations +311813,International Relations,International Relations +311812,International Relations,International Relations +306455,International Relations,International Relations +306454,International Relations,International Relations +306453,International Relations,International Relations +297869,International Relations,International Relations +273273,International Relations,International Relations +266790,International Relations,International Relations +266789,International Relations,International Relations +251612,International Relations,International Relations +223907,International Relations,International Relations +223394,International Relations,International Relations +221147,International Relations,International Relations +216201,International Relations,International Relations +216199,International Relations,International Relations +216198,International Relations,International Relations +216197,International Relations,International Relations +216195,International Relations,International Relations +216194,International Relations,International Relations +216193,International Relations,International Relations +216192,International Relations,International Relations +216191,International Relations,International Relations +216190,International Relations,International Relations +216189,International Relations,International Relations +213968,International Relations,International Relations +213852,International Relations,International Relations +213851,International Relations,International Relations +213850,International Relations,International Relations +213849,International Relations,International Relations +213848,International Relations,International Relations +213230,International Relations,International Relations +465008,International Relations,International Relations +465007,International Relations,International Relations +465006,International Relations,International Relations +459851,International Relations,International Relations +448927,International Relations,International Relations +347889,International Relations,International Relations +343099,International Relations,International Relations +339419,International Relations,International Relations +459851,International Trade,International Trade +355615,Research and Development,Research and Development (R&D) +335672,Research and Development,Research and Development (R&D) +188900,Research and Development,Research and Development (R&D) +188899,Research and Development,Research and Development (R&D) +188898,Research and Development,Research and Development (R&D) +188897,Research and Development,Research and Development (R&D) +188896,Research and Development,Research and Development (R&D) +188893,Research and Development,Research and Development (R&D) +186624,Research and Development,Research and Development (R&D) +172504,Research and Development,Research and Development (R&D) +188952,Research and Development,Research and Development (R&D) +188951,Research and Development,Research and Development (R&D) +188950,Research and Development,Research and Development (R&D) +188949,Research and Development,Research and Development (R&D) +188946,Research and Development,Research and Development (R&D) +188945,Research and Development,Research and Development (R&D) +188943,Research and Development,Research and Development (R&D) +188938,Research and Development,Research and Development (R&D) +188937,Research and Development,Research and Development (R&D) +188934,Research and Development,Research and Development (R&D) +188932,Research and Development,Research and Development (R&D) +188927,Research and Development,Research and Development (R&D) +188925,Research and Development,Research and Development (R&D) +188921,Research and Development,Research and Development (R&D) +188920,Research and Development,Research and Development (R&D) +188919,Research and Development,Research and Development (R&D) +188917,Research and Development,Research and Development (R&D) +188916,Research and Development,Research and Development (R&D) +188915,Research and Development,Research and Development (R&D) +188914,Research and Development,Research and Development (R&D) +188913,Research and Development,Research and Development (R&D) +188912,Research and Development,Research and Development (R&D) +188911,Research and Development,Research and Development (R&D) +188910,Research and Development,Research and Development (R&D) +188909,Research and Development,Research and Development (R&D) +188908,Research and Development,Research and Development (R&D) +188906,Research and Development,Research and Development (R&D) +188904,Research and Development,Research and Development (R&D) +188903,Research and Development,Research and Development (R&D) +188902,Research and Development,Research and Development (R&D) +188901,Research and Development,Research and Development (R&D) +240305,Research and Development,Research and Development (R&D) +240291,Research and Development,Research and Development (R&D) +240274,Research and Development,Research and Development (R&D) +240270,Research and Development,Research and Development (R&D) +240256,Research and Development,Research and Development (R&D) +240252,Research and Development,Research and Development (R&D) +240229,Research and Development,Research and Development (R&D) +230071,Research and Development,Research and Development (R&D) +194724,Research and Development,Research and Development (R&D) +190398,Research and Development,Research and Development (R&D) +189017,Research and Development,Research and Development (R&D) +189012,Research and Development,Research and Development (R&D) +189010,Research and Development,Research and Development (R&D) +189008,Research and Development,Research and Development (R&D) +188965,Research and Development,Research and Development (R&D) +188963,Research and Development,Research and Development (R&D) +188962,Research and Development,Research and Development (R&D) +188959,Research and Development,Research and Development (R&D) +188957,Research and Development,Research and Development (R&D) +188956,Research and Development,Research and Development (R&D) +188954,Research and Development,Research and Development (R&D) +188953,Research and Development,Research and Development (R&D) +414536,Research and Development,Research and Development (R&D) +382416,Research and Development,Research and Development (R&D) +382407,Research and Development,Research and Development (R&D) +380947,Research and Development,Research and Development (R&D) +379838,Research and Development,Research and Development (R&D) +379821,Research and Development,Research and Development (R&D) +376720,Research and Development,Research and Development (R&D) +376702,Research and Development,Research and Development (R&D) +376697,Research and Development,Research and Development (R&D) +376692,Research and Development,Research and Development (R&D) +374797,Research and Development,Research and Development (R&D) +374786,Research and Development,Research and Development (R&D) +188953,Budget,Budget +188952,Budget,Budget +188898,Budget,Budget +188897,Budget,Budget +188896,Budget,Budget +188893,Budget,Budget +188951,Budget,Budget +188950,Budget,Budget +188949,Budget,Budget +188946,Budget,Budget +188945,Budget,Budget +188943,Budget,Budget +188938,Budget,Budget +188937,Budget,Budget +188934,Budget,Budget +188932,Budget,Budget +188927,Budget,Budget +188925,Budget,Budget +188921,Budget,Budget +188920,Budget,Budget +188919,Budget,Budget +188917,Budget,Budget +188916,Budget,Budget +188915,Budget,Budget +188914,Budget,Budget +188913,Budget,Budget +188911,Budget,Budget +188910,Budget,Budget +188909,Budget,Budget +188908,Budget,Budget +188906,Budget,Budget +188904,Budget,Budget +188903,Budget,Budget +188902,Budget,Budget +188901,Budget,Budget +188900,Budget,Budget +188899,Budget,Budget +387177,Budget,Budget +380957,Budget,Budget +374797,Budget,Budget +374786,Budget,Budget +369153,Budget,Budget +369151,Budget,Budget +240253,Budget,Budget +230071,Budget,Budget +230070,Budget,Budget +190398,Budget,Budget +189017,Budget,Budget +189012,Budget,Budget +189010,Budget,Budget +189008,Budget,Budget +188965,Budget,Budget +188963,Budget,Budget +188962,Budget,Budget +188959,Budget,Budget +188957,Budget,Budget +188956,Budget,Budget +484367,Housing,Housing +484362,Housing,Housing +165152,Housing,Housing +304030,Housing,Housing +304009,Housing,Housing +296755,Housing,Housing +296748,Housing,Housing +291794,Housing,Housing +291769,Housing,Housing +273446,Housing,Housing +269128,Housing,Housing +249092,Housing,Housing +221648,Housing,Housing +216470,Housing,Housing +216457,Housing,Housing +216452,Housing,Housing +216447,Housing,Housing +205952,Housing,Housing +205951,Housing,Housing +408623,Housing,Housing +408622,Housing,Housing +408587,Housing,Housing +402638,Housing,Housing +398054,Housing,Housing +397899,Housing,Housing +395566,Housing,Housing +393988,Housing,Housing +393833,Housing,Housing +392540,Housing,Housing +392536,Housing,Housing +392534,Housing,Housing +392522,Housing,Housing +392511,Housing,Housing +391107,Housing,Housing +388000,Housing,Housing +385337,Housing,Housing +385335,Housing,Housing +383240,Housing,Housing +382607,Housing,Housing +382562,Housing,Housing +380908,Housing,Housing +379358,Housing,Housing +379344,Housing,Housing +374815,Housing,Housing +369185,Housing,Housing +369156,Housing,Housing +366738,Housing,Housing +355952,Housing,Housing +355946,Housing,Housing +353288,Housing,Housing +353284,Housing,Housing +349927,Housing,Housing +349041,Housing,Housing +347623,Housing,Housing +347618,Housing,Housing +338943,Housing,Housing +335859,Housing,Housing +335857,Housing,Housing +335849,Housing,Housing +335838,Housing,Housing +335818,Housing,Housing +335804,Housing,Housing +335792,Housing,Housing +328105,Housing,Housing +322169,Housing,Housing +319164,Housing,Housing +319162,Housing,Housing +319161,Housing,Housing +319159,Housing,Housing +319158,Housing,Housing +315941,Housing,Housing +315927,Housing,Housing +315916,Housing,Housing +312735,Housing,Housing +312596,Housing,Housing +312595,Housing,Housing +312594,Housing,Housing +312109,Housing,Housing +309790,Housing,Housing +309777,Housing,Housing +304063,Housing,Housing +304053,Housing,Housing +304049,Housing,Housing +484354,Housing,Housing +484351,Housing,Housing +484349,Housing,Housing +484344,Housing,Housing +484326,Housing,Housing +484324,Housing,Housing +484320,Housing,Housing +484317,Housing,Housing +484315,Housing,Housing +484314,Housing,Housing +484313,Housing,Housing +484312,Housing,Housing +484310,Housing,Housing +484307,Housing,Housing +484302,Housing,Housing +484297,Housing,Housing +484295,Housing,Housing +477281,Housing,Housing +474966,Housing,Housing +470302,Housing,Housing +470289,Housing,Housing +470233,Housing,Housing +466943,Housing,Housing +466942,Housing,Housing +464197,Housing,Housing +464176,Housing,Housing +460766,Housing,Housing +457056,Housing,Housing +450358,Housing,Housing +450355,Housing,Housing +450354,Housing,Housing +447857,Housing,Housing +447855,Housing,Housing +445323,Housing,Housing +433160,Housing,Housing +430659,Housing,Housing +423427,Housing,Housing +421802,Housing,Housing +421787,Housing,Housing +418879,Housing,Housing +414819,Housing,Housing +414815,Housing,Housing +414814,Housing,Housing +414813,Housing,Housing +411586,Housing,Housing +543607,Housing,Housing +541535,Housing,Housing +539108,Housing,Housing +539105,Housing,Housing +539104,Housing,Housing +537319,Housing,Housing +537318,Housing,Housing +537317,Housing,Housing +537315,Housing,Housing +537313,Housing,Housing +537312,Housing,Housing +537308,Housing,Housing +534068,Housing,Housing +534065,Housing,Housing +534061,Housing,Housing +534060,Housing,Housing +531654,Housing,Housing +528087,Housing,Housing +528081,Housing,Housing +528078,Housing,Housing +528077,Housing,Housing +528074,Housing,Housing +525866,Housing,Housing +525361,Housing,Housing +525355,Housing,Housing +525323,Housing,Housing +525300,Housing,Housing +525296,Housing,Housing +525289,Housing,Housing +522175,Housing,Housing +522172,Housing,Housing +522169,Housing,Housing +519845,Housing,Housing +517448,Housing,Housing +517437,Housing,Housing +517432,Housing,Housing +517429,Housing,Housing +517415,Housing,Housing +517406,Housing,Housing +517380,Housing,Housing +517374,Housing,Housing +515444,Housing,Housing +515436,Housing,Housing +515428,Housing,Housing +515414,Housing,Housing +514146,Housing,Housing +514145,Housing,Housing +514144,Housing,Housing +514141,Housing,Housing +512592,Housing,Housing +512586,Housing,Housing +512573,Housing,Housing +512554,Housing,Housing +512552,Housing,Housing +512551,Housing,Housing +512549,Housing,Housing +510465,Housing,Housing +510442,Housing,Housing +507248,Housing,Housing +507247,Housing,Housing +507241,Housing,Housing +507206,Housing,Housing +507202,Housing,Housing +507200,Housing,Housing +504234,Housing,Housing +504227,Housing,Housing +501814,Housing,Housing +501750,Housing,Housing +497814,Housing,Housing +497750,Housing,Housing +497690,Housing,Housing +489752,Housing,Housing +489568,Housing,Housing +489567,Housing,Housing +489565,Housing,Housing +489527,Housing,Housing +489525,Housing,Housing +489524,Housing,Housing +489519,Housing,Housing +489514,Housing,Housing +489501,Housing,Housing +489499,Housing,Housing +489490,Housing,Housing +489482,Housing,Housing +486638,Housing,Housing +486634,Housing,Housing +486628,Housing,Housing +486627,Housing,Housing +486626,Housing,Housing +486624,Housing,Housing +486621,Housing,Housing +486619,Housing,Housing +484371,Housing,Housing +375095,Agriculture,Agriculture +233351,Agriculture,Agriculture +185858,Agriculture,Agriculture +317878,Agriculture,Agriculture +422182,Agriculture,Agriculture +422181,Agriculture,Agriculture +422180,Agriculture,Agriculture +422178,Agriculture,Agriculture +422177,Agriculture,Agriculture +422174,Agriculture,Agriculture +394729,Agriculture,Agriculture +394728,Agriculture,Agriculture +389175,Agriculture,Agriculture +389172,Agriculture,Agriculture +389175,Environment,Environment +375095,Environment,Environment +185858,Environment,Environment +422174,Environment,Environment +389172,Transportation,Transportation +380394,Transportation,Transportation +317878,Transportation,Transportation +185858,Transportation,Transportation +422182,Transportation,Transportation +422181,Transportation,Transportation +422180,Transportation,Transportation +422178,Transportation,Transportation +422177,Transportation,Transportation +170561,Financial Institutions,Financial Institutions +170560,Financial Institutions,Financial Institutions +167119,Financial Institutions,Financial Institutions +167118,Financial Institutions,Financial Institutions +167117,Financial Institutions,Financial Institutions +369114,Financial Institutions,Financial Institutions +360968,Financial Institutions,Financial Institutions +355648,Financial Institutions,Financial Institutions +350612,Financial Institutions,Financial Institutions +350605,Financial Institutions,Financial Institutions +340835,Financial Institutions,Financial Institutions +318213,Financial Institutions,Financial Institutions +263233,Financial Institutions,Financial Institutions +263230,Financial Institutions,Financial Institutions +197219,Financial Institutions,Financial Institutions +197218,Financial Institutions,Financial Institutions +197215,Financial Institutions,Financial Institutions +175065,Financial Institutions,Financial Institutions +172310,Financial Institutions,Financial Institutions +172309,Financial Institutions,Financial Institutions +172308,Financial Institutions,Financial Institutions +172307,Financial Institutions,Financial Institutions +172306,Financial Institutions,Financial Institutions +172305,Financial Institutions,Financial Institutions +170574,Financial Institutions,Financial Institutions +170572,Financial Institutions,Financial Institutions +170570,Financial Institutions,Financial Institutions +170569,Financial Institutions,Financial Institutions +170567,Financial Institutions,Financial Institutions +170566,Financial Institutions,Financial Institutions +170565,Financial Institutions,Financial Institutions +170564,Financial Institutions,Financial Institutions +170563,Financial Institutions,Financial Institutions +167654,Agriculture,Agriculture +167653,Agriculture,Agriculture +167654,International Trade,International Trade +167653,International Trade,International Trade +167654,Transportation,Transportation +167653,Transportation,Transportation +485285,Climate,Climate +485266,Climate,Climate +213548,Climate,Climate +366083,Climate,Climate +462249,Climate,Climate +453823,Climate,Climate +453821,Climate,Climate +453820,Climate,Climate +453817,Climate,Climate +453815,Climate,Climate +421185,Climate,Climate +407517,Climate,Climate +407477,Climate,Climate +396785,Climate,Climate +395120,Climate,Climate +392328,Climate,Climate +387141,Climate,Climate +387117,Climate,Climate +387114,Climate,Climate +385445,Climate,Climate +385398,Climate,Climate +381576,Climate,Climate +376137,Climate,Climate +537842,Climate,Climate +537826,Climate,Climate +534760,Climate,Climate +534755,Climate,Climate +534751,Climate,Climate +534748,Climate,Climate +534746,Climate,Climate +529094,Climate,Climate +525656,Climate,Climate +525642,Climate,Climate +519690,Climate,Climate +519688,Climate,Climate +519684,Climate,Climate +512779,Climate,Climate +439497,Constitutional Issues,Constitutional Issues +439494,Constitutional Issues,Constitutional Issues +406143,Industry,Industry +406138,Industry,Industry +325221,Industry,Industry +325218,Industry,Industry +325216,Industry,Industry +309495,Industry,Industry +283129,Industry,Industry +213468,Industry,Industry +210009,Industry,Industry +210008,Industry,Industry +202427,Industry,Industry +197391,Industry,Industry +197389,Industry,Industry +197388,Industry,Industry +197387,Industry,Industry +187964,Industry,Industry +185552,Industry,Industry +170704,Industry,Industry +167651,Industry,Industry +370159,Industry,Industry +370158,Industry,Industry +370157,Industry,Industry +370156,Industry,Industry +370155,Industry,Industry +370154,Industry,Industry +408581,Industry,Industry +408580,Industry,Industry +406146,Industry,Industry +406145,Industry,Industry +370156,Infrastructure,Infrastructure +370154,Infrastructure,Infrastructure +187964,Infrastructure,Infrastructure +185552,Infrastructure,Infrastructure +325222,Infrastructure,Infrastructure +325221,Infrastructure,Infrastructure +325220,Infrastructure,Infrastructure +325218,Infrastructure,Infrastructure +309495,Infrastructure,Infrastructure +406144,Infrastructure,Infrastructure +406143,Infrastructure,Infrastructure +406140,Infrastructure,Infrastructure +406139,Infrastructure,Infrastructure +406138,Infrastructure,Infrastructure +370159,Infrastructure,Infrastructure +370158,Infrastructure,Infrastructure +167651,Small Business,Small Business +213468,Small Business,Small Business +259418,Employment and Training,Employment and Training +259416,Employment and Training,Employment and Training +282489,Employment and Training,Employment and Training +281052,Employment and Training,Employment and Training +281049,Employment and Training,Employment and Training +281033,Employment and Training,Employment and Training +281032,Employment and Training,Employment and Training +281031,Employment and Training,Employment and Training +281030,Employment and Training,Employment and Training +277433,Industry,Industry +277432,Industry,Industry +282489,Industry,Industry +281052,Industry,Industry +281049,Industry,Industry +281033,Industry,Industry +281032,Industry,Industry +281031,Industry,Industry +281030,Industry,Industry +277432,International Trade,International Trade +269608,International Trade,International Trade +282489,International Trade,International Trade +281052,International Trade,International Trade +281049,International Trade,International Trade +281033,International Trade,International Trade +281032,International Trade,International Trade +281031,International Trade,International Trade +281030,International Trade,International Trade +277434,International Trade,International Trade +282489,Labour,Labour +281052,Labour,Labour +281049,Labour,Labour +281033,Labour,Labour +281032,Labour,Labour +281031,Labour,Labour +194929,Mining,Mining +194928,Mining,Mining +175508,Mining,Mining +175506,Mining,Mining +170661,Mining,Mining +168849,Mining,Mining +168846,Mining,Mining +168840,Mining,Mining +282489,Mining,Mining +281052,Mining,Mining +281049,Mining,Mining +281033,Mining,Mining +281032,Mining,Mining +281031,Mining,Mining +281030,Mining,Mining +277434,Mining,Mining +277433,Mining,Mining +277432,Mining,Mining +269608,Mining,Mining +259424,Mining,Mining +259421,Mining,Mining +259418,Mining,Mining +259416,Mining,Mining +250277,Mining,Mining +245506,Mining,Mining +245504,Mining,Mining +245502,Mining,Mining +245501,Mining,Mining +245500,Mining,Mining +245497,Mining,Mining +245493,Mining,Mining +245492,Mining,Mining +223419,Mining,Mining +199969,Mining,Mining +199966,Mining,Mining +199964,Mining,Mining +199963,Mining,Mining +194936,Mining,Mining +194933,Mining,Mining +305369,Health,Health +235069,Health,Health +358787,Health,Health +353453,Health,Health +314390,Health,Health +308813,Health,Health +169928,Health,Health +165561,Health,Health +165573,Economic Development,Economic Development +275557,Defence,Defence +271558,Defence,Defence +271557,Defence,Defence +271556,Defence,Defence +271254,Defence,Defence +269929,Defence,Defence +261857,Defence,Defence +251229,Defence,Defence +247031,Defence,Defence +246890,Defence,Defence +246874,Defence,Defence +246873,Defence,Defence +246872,Defence,Defence +246871,Defence,Defence +246870,Defence,Defence +246869,Defence,Defence +196359,Defence,Defence +196358,Defence,Defence +196357,Defence,Defence +196356,Defence,Defence +196355,Defence,Defence +196354,Defence,Defence +196351,Defence,Defence +196348,Defence,Defence +196344,Defence,Defence +196332,Defence,Defence +311317,Defence,Defence +311249,Defence,Defence +311150,Defence,Defence +309032,Defence,Defence +306450,Defence,Defence +306449,Defence,Defence +300974,Defence,Defence +298530,Defence,Defence +298513,Defence,Defence +298512,Defence,Defence +298511,Defence,Defence +298510,Defence,Defence +298509,Defence,Defence +275566,Defence,Defence +275563,Defence,Defence +275562,Defence,Defence +275560,Defence,Defence +275559,Defence,Defence +246869,Government Procurement,Government Procurement +227248,Government Procurement,Government Procurement +215533,Government Procurement,Government Procurement +215532,Government Procurement,Government Procurement +215531,Government Procurement,Government Procurement +203927,Government Procurement,Government Procurement +196359,Government Procurement,Government Procurement +196358,Government Procurement,Government Procurement +196357,Government Procurement,Government Procurement +196356,Government Procurement,Government Procurement +196355,Government Procurement,Government Procurement +196354,Government Procurement,Government Procurement +196351,Government Procurement,Government Procurement +196348,Government Procurement,Government Procurement +196344,Government Procurement,Government Procurement +196332,Government Procurement,Government Procurement +311317,Government Procurement,Government Procurement +311249,Government Procurement,Government Procurement +311150,Government Procurement,Government Procurement +309032,Government Procurement,Government Procurement +306450,Government Procurement,Government Procurement +306449,Government Procurement,Government Procurement +300974,Government Procurement,Government Procurement +298530,Government Procurement,Government Procurement +298513,Government Procurement,Government Procurement +298512,Government Procurement,Government Procurement +298511,Government Procurement,Government Procurement +298510,Government Procurement,Government Procurement +298509,Government Procurement,Government Procurement +275566,Government Procurement,Government Procurement +275563,Government Procurement,Government Procurement +275562,Government Procurement,Government Procurement +275560,Government Procurement,Government Procurement +275559,Government Procurement,Government Procurement +275558,Government Procurement,Government Procurement +275557,Government Procurement,Government Procurement +271558,Government Procurement,Government Procurement +271557,Government Procurement,Government Procurement +271556,Government Procurement,Government Procurement +271254,Government Procurement,Government Procurement +269929,Government Procurement,Government Procurement +261857,Government Procurement,Government Procurement +251229,Government Procurement,Government Procurement +247031,Government Procurement,Government Procurement +246890,Government Procurement,Government Procurement +246874,Government Procurement,Government Procurement +246873,Government Procurement,Government Procurement +246872,Government Procurement,Government Procurement +246871,Government Procurement,Government Procurement +269929,Regional Development,Regional Development +261857,Regional Development,Regional Development +251229,Regional Development,Regional Development +247031,Regional Development,Regional Development +246890,Regional Development,Regional Development +246874,Regional Development,Regional Development +246873,Regional Development,Regional Development +246872,Regional Development,Regional Development +246871,Regional Development,Regional Development +246870,Regional Development,Regional Development +246869,Regional Development,Regional Development +196359,Regional Development,Regional Development +196358,Regional Development,Regional Development +196357,Regional Development,Regional Development +196356,Regional Development,Regional Development +196355,Regional Development,Regional Development +196354,Regional Development,Regional Development +196351,Regional Development,Regional Development +196348,Regional Development,Regional Development +196344,Regional Development,Regional Development +196332,Regional Development,Regional Development +311317,Regional Development,Regional Development +311249,Regional Development,Regional Development +311150,Regional Development,Regional Development +309032,Regional Development,Regional Development +306450,Regional Development,Regional Development +306449,Regional Development,Regional Development +300974,Regional Development,Regional Development +298530,Regional Development,Regional Development +298513,Regional Development,Regional Development +298512,Regional Development,Regional Development +298511,Regional Development,Regional Development +298510,Regional Development,Regional Development +298509,Regional Development,Regional Development +275566,Regional Development,Regional Development +275563,Regional Development,Regional Development +275562,Regional Development,Regional Development +275560,Regional Development,Regional Development +275559,Regional Development,Regional Development +275558,Regional Development,Regional Development +275557,Regional Development,Regional Development +271558,Regional Development,Regional Development +271557,Regional Development,Regional Development +271556,Regional Development,Regional Development +529819,Budget,Budget +529815,Budget,Budget +196592,Budget,Budget +196591,Budget,Budget +196590,Budget,Budget +196589,Budget,Budget +196588,Budget,Budget +196587,Budget,Budget +195585,Budget,Budget +195584,Budget,Budget +190044,Budget,Budget +189968,Budget,Budget +188604,Budget,Budget +188603,Budget,Budget +188130,Budget,Budget +188129,Budget,Budget +319972,Budget,Budget +307989,Budget,Budget +305971,Budget,Budget +305970,Budget,Budget +298429,Budget,Budget +288549,Budget,Budget +279734,Budget,Budget +276701,Budget,Budget +274689,Budget,Budget +270609,Budget,Budget +246171,Budget,Budget +242353,Budget,Budget +228572,Budget,Budget +228571,Budget,Budget +228570,Budget,Budget +228569,Budget,Budget +224896,Budget,Budget +224892,Budget,Budget +224869,Budget,Budget +224868,Budget,Budget +211007,Budget,Budget +205847,Budget,Budget +197411,Budget,Budget +197030,Budget,Budget +196595,Budget,Budget +196594,Budget,Budget +196593,Budget,Budget +387987,Budget,Budget +387986,Budget,Budget +387984,Budget,Budget +387983,Budget,Budget +387981,Budget,Budget +382844,Budget,Budget +381442,Budget,Budget +375179,Budget,Budget +375178,Budget,Budget +375176,Budget,Budget +375175,Budget,Budget +375174,Budget,Budget +373157,Budget,Budget +372444,Budget,Budget +372442,Budget,Budget +372441,Budget,Budget +367623,Budget,Budget +355470,Budget,Budget +355469,Budget,Budget +355468,Budget,Budget +355466,Budget,Budget +355465,Budget,Budget +355463,Budget,Budget +355461,Budget,Budget +355460,Budget,Budget +355458,Budget,Budget +355457,Budget,Budget +355456,Budget,Budget +355455,Budget,Budget +355454,Budget,Budget +355453,Budget,Budget +355452,Budget,Budget +355450,Budget,Budget +355449,Budget,Budget +355447,Budget,Budget +355445,Budget,Budget +355443,Budget,Budget +355441,Budget,Budget +355440,Budget,Budget +355438,Budget,Budget +355436,Budget,Budget +355435,Budget,Budget +355433,Budget,Budget +355432,Budget,Budget +353947,Budget,Budget +352181,Budget,Budget +352180,Budget,Budget +349857,Budget,Budget +340029,Budget,Budget +339982,Budget,Budget +337370,Budget,Budget +337369,Budget,Budget +337296,Budget,Budget +337295,Budget,Budget +336609,Budget,Budget +333194,Budget,Budget +513489,Budget,Budget +506570,Budget,Budget +506569,Budget,Budget +506568,Budget,Budget +506567,Budget,Budget +506566,Budget,Budget +506565,Budget,Budget +506564,Budget,Budget +503661,Budget,Budget +503660,Budget,Budget +503659,Budget,Budget +503658,Budget,Budget +503657,Budget,Budget +503656,Budget,Budget +503655,Budget,Budget +503654,Budget,Budget +503651,Budget,Budget +503650,Budget,Budget +502827,Budget,Budget +502824,Budget,Budget +502821,Budget,Budget +502819,Budget,Budget +502818,Budget,Budget +502815,Budget,Budget +502810,Budget,Budget +502808,Budget,Budget +502806,Budget,Budget +502805,Budget,Budget +502804,Budget,Budget +502802,Budget,Budget +502799,Budget,Budget +502798,Budget,Budget +502796,Budget,Budget +500045,Budget,Budget +500044,Budget,Budget +500043,Budget,Budget +500042,Budget,Budget +496705,Budget,Budget +496704,Budget,Budget +496703,Budget,Budget +496702,Budget,Budget +494147,Budget,Budget +493559,Budget,Budget +492640,Budget,Budget +492624,Budget,Budget +492623,Budget,Budget +489350,Budget,Budget +488865,Budget,Budget +488863,Budget,Budget +488028,Budget,Budget +486675,Budget,Budget +486605,Budget,Budget +486604,Budget,Budget +485628,Budget,Budget +484204,Budget,Budget +484203,Budget,Budget +484201,Budget,Budget +483282,Budget,Budget +482799,Budget,Budget +482798,Budget,Budget +481039,Budget,Budget +480577,Budget,Budget +478833,Budget,Budget +478365,Budget,Budget +471084,Budget,Budget +470543,Budget,Budget +469533,Budget,Budget +469532,Budget,Budget +469359,Budget,Budget +469358,Budget,Budget +469357,Budget,Budget +469356,Budget,Budget +469352,Budget,Budget +469351,Budget,Budget +469350,Budget,Budget +469349,Budget,Budget +469348,Budget,Budget +469347,Budget,Budget +465215,Budget,Budget +463275,Budget,Budget +448405,Budget,Budget +442632,Budget,Budget +439327,Budget,Budget +439318,Budget,Budget +439317,Budget,Budget +439315,Budget,Budget +439313,Budget,Budget +439312,Budget,Budget +439311,Budget,Budget +439310,Budget,Budget +439309,Budget,Budget +439308,Budget,Budget +439307,Budget,Budget +439306,Budget,Budget +439303,Budget,Budget +439301,Budget,Budget +439299,Budget,Budget +439295,Budget,Budget +439294,Budget,Budget +439292,Budget,Budget +439290,Budget,Budget +439057,Budget,Budget +439055,Budget,Budget +439053,Budget,Budget +439052,Budget,Budget +439051,Budget,Budget +439049,Budget,Budget +439046,Budget,Budget +439043,Budget,Budget +439040,Budget,Budget +439038,Budget,Budget +439035,Budget,Budget +439034,Budget,Budget +439032,Budget,Budget +439030,Budget,Budget +439028,Budget,Budget +439026,Budget,Budget +439023,Budget,Budget +439019,Budget,Budget +439017,Budget,Budget +439014,Budget,Budget +439010,Budget,Budget +425399,Budget,Budget +424272,Budget,Budget +424271,Budget,Budget +420665,Budget,Budget +418793,Budget,Budget +418649,Budget,Budget +418452,Budget,Budget +412501,Budget,Budget +412500,Budget,Budget +412499,Budget,Budget +412498,Budget,Budget +412492,Budget,Budget +412491,Budget,Budget +412490,Budget,Budget +412489,Budget,Budget +412488,Budget,Budget +412484,Budget,Budget +412481,Budget,Budget +412476,Budget,Budget +412474,Budget,Budget +412472,Budget,Budget +412470,Budget,Budget +412468,Budget,Budget +412467,Budget,Budget +412464,Budget,Budget +412463,Budget,Budget +412316,Budget,Budget +412315,Budget,Budget +412306,Budget,Budget +412304,Budget,Budget +412303,Budget,Budget +412301,Budget,Budget +412293,Budget,Budget +412292,Budget,Budget +412015,Budget,Budget +412014,Budget,Budget +410786,Budget,Budget +400625,Budget,Budget +398483,Budget,Budget +388060,Budget,Budget +388012,Budget,Budget +388009,Budget,Budget +388006,Budget,Budget +388005,Budget,Budget +388002,Budget,Budget +387991,Budget,Budget +387989,Budget,Budget +387988,Budget,Budget +477707,Research and Development,Research and Development (R&D) +477695,Research and Development,Research and Development (R&D) +165761,Research and Development,Research and Development (R&D) +325293,Research and Development,Research and Development (R&D) +318917,Research and Development,Research and Development (R&D) +317069,Research and Development,Research and Development (R&D) +305933,Research and Development,Research and Development (R&D) +305930,Research and Development,Research and Development (R&D) +305909,Research and Development,Research and Development (R&D) +211832,Research and Development,Research and Development (R&D) +206574,Research and Development,Research and Development (R&D) +393046,Research and Development,Research and Development (R&D) +392850,Research and Development,Research and Development (R&D) +389629,Research and Development,Research and Development (R&D) +385153,Research and Development,Research and Development (R&D) +380781,Research and Development,Research and Development (R&D) +376463,Research and Development,Research and Development (R&D) +376459,Research and Development,Research and Development (R&D) +376454,Research and Development,Research and Development (R&D) +373881,Research and Development,Research and Development (R&D) +370415,Research and Development,Research and Development (R&D) +364764,Research and Development,Research and Development (R&D) +348643,Research and Development,Research and Development (R&D) +348578,Research and Development,Research and Development (R&D) +340580,Research and Development,Research and Development (R&D) +475827,Research and Development,Research and Development (R&D) +471452,Research and Development,Research and Development (R&D) +471451,Research and Development,Research and Development (R&D) +471450,Research and Development,Research and Development (R&D) +471449,Research and Development,Research and Development (R&D) +471448,Research and Development,Research and Development (R&D) +464453,Research and Development,Research and Development (R&D) +464449,Research and Development,Research and Development (R&D) +458646,Research and Development,Research and Development (R&D) +443811,Research and Development,Research and Development (R&D) +441735,Research and Development,Research and Development (R&D) +441732,Research and Development,Research and Development (R&D) +441727,Research and Development,Research and Development (R&D) +426181,Research and Development,Research and Development (R&D) +426171,Research and Development,Research and Development (R&D) +426167,Research and Development,Research and Development (R&D) +409451,Research and Development,Research and Development (R&D) +403885,Research and Development,Research and Development (R&D) +403626,Research and Development,Research and Development (R&D) +543836,Research and Development,Research and Development (R&D) +543831,Research and Development,Research and Development (R&D) +540006,Research and Development,Research and Development (R&D) +540004,Research and Development,Research and Development (R&D) +538343,Research and Development,Research and Development (R&D) +538336,Research and Development,Research and Development (R&D) +535575,Research and Development,Research and Development (R&D) +535568,Research and Development,Research and Development (R&D) +531207,Research and Development,Research and Development (R&D) +531204,Research and Development,Research and Development (R&D) +531203,Research and Development,Research and Development (R&D) +528210,Research and Development,Research and Development (R&D) +528209,Research and Development,Research and Development (R&D) +526009,Research and Development,Research and Development (R&D) +526007,Research and Development,Research and Development (R&D) +525996,Research and Development,Research and Development (R&D) +525994,Research and Development,Research and Development (R&D) +525993,Research and Development,Research and Development (R&D) +525992,Research and Development,Research and Development (R&D) +523251,Research and Development,Research and Development (R&D) +523248,Research and Development,Research and Development (R&D) +523247,Research and Development,Research and Development (R&D) +523246,Research and Development,Research and Development (R&D) +519616,Research and Development,Research and Development (R&D) +517715,Research and Development,Research and Development (R&D) +517699,Research and Development,Research and Development (R&D) +512378,Research and Development,Research and Development (R&D) +512374,Research and Development,Research and Development (R&D) +512372,Research and Development,Research and Development (R&D) +511173,Research and Development,Research and Development (R&D) +511165,Research and Development,Research and Development (R&D) +511150,Research and Development,Research and Development (R&D) +508663,Research and Development,Research and Development (R&D) +505085,Research and Development,Research and Development (R&D) +502281,Research and Development,Research and Development (R&D) +502274,Research and Development,Research and Development (R&D) +502270,Research and Development,Research and Development (R&D) +499081,Research and Development,Research and Development (R&D) +499070,Research and Development,Research and Development (R&D) +499066,Research and Development,Research and Development (R&D) +499064,Research and Development,Research and Development (R&D) +499063,Research and Development,Research and Development (R&D) +499059,Research and Development,Research and Development (R&D) +499027,Research and Development,Research and Development (R&D) +499025,Research and Development,Research and Development (R&D) +499022,Research and Development,Research and Development (R&D) +499012,Research and Development,Research and Development (R&D) +499009,Research and Development,Research and Development (R&D) +493387,Research and Development,Research and Development (R&D) +493365,Research and Development,Research and Development (R&D) +491221,Research and Development,Research and Development (R&D) +491214,Research and Development,Research and Development (R&D) +491207,Research and Development,Research and Development (R&D) +491199,Research and Development,Research and Development (R&D) +487246,Research and Development,Research and Development (R&D) +487237,Research and Development,Research and Development (R&D) +487235,Research and Development,Research and Development (R&D) +482622,Research and Development,Research and Development (R&D) +482618,Research and Development,Research and Development (R&D) +482614,Research and Development,Research and Development (R&D) +482611,Research and Development,Research and Development (R&D) +482608,Research and Development,Research and Development (R&D) +482088,Research and Development,Research and Development (R&D) +482043,Research and Development,Research and Development (R&D) +481856,Research and Development,Research and Development (R&D) +479841,Research and Development,Research and Development (R&D) +479834,Research and Development,Research and Development (R&D) +479832,Research and Development,Research and Development (R&D) +479831,Research and Development,Research and Development (R&D) +479828,Research and Development,Research and Development (R&D) +452368,Housing,Housing +452364,Housing,Housing +196324,Housing,Housing +401582,Housing,Housing +401581,Housing,Housing +401580,Housing,Housing +401579,Housing,Housing +401578,Housing,Housing +401577,Housing,Housing +401553,Housing,Housing +401552,Housing,Housing +401551,Housing,Housing +401550,Housing,Housing +401549,Housing,Housing +401548,Housing,Housing +401547,Housing,Housing +401546,Housing,Housing +401545,Housing,Housing +401544,Housing,Housing +401543,Housing,Housing +401536,Housing,Housing +401534,Housing,Housing +399834,Housing,Housing +377629,Housing,Housing +377628,Housing,Housing +377627,Housing,Housing +377626,Housing,Housing +377625,Housing,Housing +377624,Housing,Housing +377623,Housing,Housing +377622,Housing,Housing +377619,Housing,Housing +377607,Housing,Housing +377602,Housing,Housing +452355,Housing,Housing +452354,Housing,Housing +452351,Housing,Housing +452341,Housing,Housing +452337,Housing,Housing +452336,Housing,Housing +452335,Housing,Housing +452333,Housing,Housing +452332,Housing,Housing +452331,Housing,Housing +452330,Housing,Housing +452329,Housing,Housing +452327,Housing,Housing +452324,Housing,Housing +452323,Housing,Housing +452322,Housing,Housing +452320,Housing,Housing +452279,Housing,Housing +452276,Housing,Housing +452274,Housing,Housing +452271,Housing,Housing +452265,Housing,Housing +428206,Housing,Housing +427792,Housing,Housing +427750,Housing,Housing +427720,Housing,Housing +427453,Housing,Housing +427451,Housing,Housing +427419,Housing,Housing +427272,Housing,Housing +427271,Housing,Housing +422869,Housing,Housing +415186,Housing,Housing +411091,Housing,Housing +411090,Housing,Housing +407205,Housing,Housing +406393,Housing,Housing +403523,Housing,Housing +401670,Housing,Housing +401667,Housing,Housing +401666,Housing,Housing +401665,Housing,Housing +401664,Housing,Housing +401642,Housing,Housing +401640,Housing,Housing +401639,Housing,Housing +401637,Housing,Housing +401636,Housing,Housing +401635,Housing,Housing +401634,Housing,Housing +401633,Housing,Housing +401632,Housing,Housing +401630,Housing,Housing +401627,Housing,Housing +401626,Housing,Housing +401625,Housing,Housing +401624,Housing,Housing +401623,Housing,Housing +401622,Housing,Housing +401621,Housing,Housing +401620,Housing,Housing +401619,Housing,Housing +401618,Housing,Housing +401617,Housing,Housing +401615,Housing,Housing +401612,Housing,Housing +401611,Housing,Housing +401610,Housing,Housing +401609,Housing,Housing +401599,Housing,Housing +401598,Housing,Housing +401597,Housing,Housing +401596,Housing,Housing +401595,Housing,Housing +401594,Housing,Housing +401593,Housing,Housing +401590,Housing,Housing +401589,Housing,Housing +401588,Housing,Housing +401587,Housing,Housing +401585,Housing,Housing +401584,Housing,Housing +401583,Housing,Housing +540181,Housing,Housing +531818,Housing,Housing +531817,Housing,Housing +531816,Housing,Housing +531815,Housing,Housing +509629,Housing,Housing +508738,Housing,Housing +508733,Housing,Housing +508729,Housing,Housing +508406,Housing,Housing +508405,Housing,Housing +508404,Housing,Housing +508403,Housing,Housing +508402,Housing,Housing +508401,Housing,Housing +508400,Housing,Housing +508399,Housing,Housing +508398,Housing,Housing +508396,Housing,Housing +508395,Housing,Housing +508393,Housing,Housing +508392,Housing,Housing +508391,Housing,Housing +508390,Housing,Housing +508389,Housing,Housing +508388,Housing,Housing +508387,Housing,Housing +508386,Housing,Housing +508385,Housing,Housing +508383,Housing,Housing +508382,Housing,Housing +508381,Housing,Housing +508379,Housing,Housing +508378,Housing,Housing +508377,Housing,Housing +508376,Housing,Housing +508375,Housing,Housing +508374,Housing,Housing +508373,Housing,Housing +508372,Housing,Housing +508371,Housing,Housing +508369,Housing,Housing +508367,Housing,Housing +508365,Housing,Housing +508364,Housing,Housing +508230,Housing,Housing +508226,Housing,Housing +508225,Housing,Housing +508222,Housing,Housing +508209,Housing,Housing +508205,Housing,Housing +508203,Housing,Housing +508200,Housing,Housing +508195,Housing,Housing +508191,Housing,Housing +508186,Housing,Housing +508181,Housing,Housing +508179,Housing,Housing +506001,Housing,Housing +499979,Housing,Housing +499978,Housing,Housing +497915,Housing,Housing +497854,Housing,Housing +497760,Housing,Housing +483759,Housing,Housing +483758,Housing,Housing +483755,Housing,Housing +483754,Housing,Housing +483751,Housing,Housing +483750,Housing,Housing +483749,Housing,Housing +483747,Housing,Housing +483745,Housing,Housing +481048,Housing,Housing +474672,Housing,Housing +474095,Housing,Housing +470825,Housing,Housing +470814,Housing,Housing +463288,Housing,Housing +459039,Housing,Housing +452753,Housing,Housing +452631,Housing,Housing +452618,Housing,Housing +452610,Housing,Housing +452606,Housing,Housing +452605,Housing,Housing +452427,Housing,Housing +452426,Housing,Housing +452425,Housing,Housing +452423,Housing,Housing +452422,Housing,Housing +452421,Housing,Housing +452418,Housing,Housing +452417,Housing,Housing +452416,Housing,Housing +452415,Housing,Housing +452414,Housing,Housing +452413,Housing,Housing +452412,Housing,Housing +452411,Housing,Housing +452410,Housing,Housing +452409,Housing,Housing +452408,Housing,Housing +452407,Housing,Housing +452406,Housing,Housing +452404,Housing,Housing +452403,Housing,Housing +452402,Housing,Housing +452401,Housing,Housing +452400,Housing,Housing +452399,Housing,Housing +452398,Housing,Housing +452397,Housing,Housing +452395,Housing,Housing +452394,Housing,Housing +452393,Housing,Housing +452392,Housing,Housing +452390,Housing,Housing +452388,Housing,Housing +452387,Housing,Housing +452384,Housing,Housing +452382,Housing,Housing +452375,Housing,Housing +452372,Housing,Housing +452370,Housing,Housing +196324,Pensions,Pensions +411091,Pensions,Pensions +248750,Pensions,Pensions +248749,Pensions,Pensions +239573,Pensions,Pensions +239569,Pensions,Pensions +237169,Pensions,Pensions +226216,Pensions,Pensions +211752,Pensions,Pensions +196353,Pensions,Pensions +196352,Pensions,Pensions +196350,Pensions,Pensions +196349,Pensions,Pensions +196347,Pensions,Pensions +196346,Pensions,Pensions +196345,Pensions,Pensions +196330,Pensions,Pensions +196329,Pensions,Pensions +196328,Pensions,Pensions +196327,Pensions,Pensions +196326,Pensions,Pensions +173086,Consumer Issues,Consumer Issues +165871,Consumer Issues,Consumer Issues +243510,Consumer Issues,Consumer Issues +230060,Consumer Issues,Consumer Issues +230057,Consumer Issues,Consumer Issues +226180,Consumer Issues,Consumer Issues +226179,Consumer Issues,Consumer Issues +210912,Consumer Issues,Consumer Issues +201448,International Trade,International Trade +338274,International Trade,International Trade +165885,International Trade,International Trade +165887,International Trade,International Trade +333203,International Trade,International Trade +209017,International Trade,International Trade +209010,International Trade,International Trade +209007,International Trade,International Trade +285950,International Trade,International Trade +245693,International Trade,International Trade +167156,Financial Institutions,Financial Institutions +167154,Financial Institutions,Financial Institutions +175077,Financial Institutions,Financial Institutions +175075,Financial Institutions,Financial Institutions +362377,International Trade,International Trade +489361,International Trade,International Trade +234929,International Trade,International Trade +217968,Pensions,Pensions +207157,Pensions,Pensions +338740,Pensions,Pensions +264379,Pensions,Pensions +264377,Pensions,Pensions +259538,Pensions,Pensions +259534,Pensions,Pensions +258169,Pensions,Pensions +251709,Pensions,Pensions +248871,Pensions,Pensions +248770,Pensions,Pensions +243569,Pensions,Pensions +240551,Pensions,Pensions +240191,Pensions,Pensions +240190,Pensions,Pensions +240189,Pensions,Pensions +235811,Pensions,Pensions +228850,Pensions,Pensions +423869,Budget,Budget +422522,Budget,Budget +166020,Budget,Budget +327372,Budget,Budget +327361,Budget,Budget +327358,Budget,Budget +310527,Budget,Budget +304290,Budget,Budget +296897,Budget,Budget +282292,Budget,Budget +264189,Budget,Budget +397134,Budget,Budget +394275,Budget,Budget +394264,Budget,Budget +388252,Budget,Budget +388208,Budget,Budget +388205,Budget,Budget +388203,Budget,Budget +388197,Budget,Budget +388192,Budget,Budget +369074,Budget,Budget +526087,Budget,Budget +516623,Budget,Budget +512580,Budget,Budget +510250,Budget,Budget +507451,Budget,Budget +507447,Budget,Budget +500951,Budget,Budget +500949,Budget,Budget +500702,Budget,Budget +498078,Budget,Budget +494561,Budget,Budget +494559,Budget,Budget +492524,Budget,Budget +492519,Budget,Budget +492517,Budget,Budget +492515,Budget,Budget +485894,Budget,Budget +485891,Budget,Budget +472750,Budget,Budget +472719,Budget,Budget +472718,Budget,Budget +467427,Budget,Budget +467425,Budget,Budget +467423,Budget,Budget +467421,Budget,Budget +467415,Budget,Budget +467412,Budget,Budget +467410,Budget,Budget +467408,Budget,Budget +456981,Budget,Budget +170801,Energy,Energy +170801,Environment,Environment +169047,Environment,Environment +169032,Environment,Environment +168901,Environment,Environment +213067,Environment,Environment +204707,Environment,Environment +337552,Budget,Budget +337512,Budget,Budget +166034,Budget,Budget +333767,Budget,Budget +333765,Budget,Budget +318051,Budget,Budget +318012,Budget,Budget +316189,Budget,Budget +313792,Budget,Budget +296833,Budget,Budget +269616,Budget,Budget +261613,Budget,Budget +254330,Budget,Budget +236631,Budget,Budget +218555,Budget,Budget +217626,Budget,Budget +371143,Budget,Budget +371137,Budget,Budget +371134,Budget,Budget +371123,Budget,Budget +371101,Budget,Budget +371100,Budget,Budget +371098,Budget,Budget +371093,Budget,Budget +371091,Budget,Budget +371064,Budget,Budget +371053,Budget,Budget +371051,Budget,Budget +371030,Budget,Budget +371023,Budget,Budget +371022,Budget,Budget +371016,Budget,Budget +371010,Budget,Budget +371005,Budget,Budget +371003,Budget,Budget +370986,Budget,Budget +370972,Budget,Budget +359821,Budget,Budget +348868,Budget,Budget +338565,Budget,Budget +338562,Budget,Budget +338561,Budget,Budget +338537,Budget,Budget +338535,Budget,Budget +338526,Budget,Budget +338519,Budget,Budget +338513,Budget,Budget +338465,Budget,Budget +338464,Budget,Budget +338463,Budget,Budget +338460,Budget,Budget +338457,Budget,Budget +338456,Budget,Budget +338361,Budget,Budget +338348,Budget,Budget +338346,Budget,Budget +338345,Budget,Budget +338343,Budget,Budget +338332,Budget,Budget +338330,Budget,Budget +338327,Budget,Budget +338326,Budget,Budget +338189,Budget,Budget +338185,Budget,Budget +338182,Budget,Budget +338180,Budget,Budget +338179,Budget,Budget +338178,Budget,Budget +337583,Budget,Budget +337576,Budget,Budget +337566,Budget,Budget +296839,Budget,Budget +291469,Budget,Budget +166035,Budget,Budget +269617,Budget,Budget +269492,Budget,Budget +261632,Budget,Budget +254326,Budget,Budget +223133,Budget,Budget +371141,Budget,Budget +371139,Budget,Budget +371138,Budget,Budget +371131,Budget,Budget +371130,Budget,Budget +371129,Budget,Budget +371126,Budget,Budget +371099,Budget,Budget +371070,Budget,Budget +371027,Budget,Budget +371025,Budget,Budget +371024,Budget,Budget +371021,Budget,Budget +371015,Budget,Budget +371014,Budget,Budget +371007,Budget,Budget +371001,Budget,Budget +370997,Budget,Budget +370992,Budget,Budget +370988,Budget,Budget +370965,Budget,Budget +356485,Budget,Budget +351598,Budget,Budget +351593,Budget,Budget +348717,Budget,Budget +341802,Budget,Budget +338534,Budget,Budget +338523,Budget,Budget +338459,Budget,Budget +338347,Budget,Budget +338324,Budget,Budget +338187,Budget,Budget +338183,Budget,Budget +338181,Budget,Budget +338106,Budget,Budget +338104,Budget,Budget +337584,Budget,Budget +337574,Budget,Budget +337569,Budget,Budget +337567,Budget,Budget +337550,Budget,Budget +337555,Budget,Budget +337551,Budget,Budget +173444,Budget,Budget +166036,Budget,Budget +318054,Budget,Budget +313290,Budget,Budget +313289,Budget,Budget +313263,Budget,Budget +273610,Budget,Budget +273599,Budget,Budget +273596,Budget,Budget +261615,Budget,Budget +254332,Budget,Budget +254314,Budget,Budget +250274,Budget,Budget +392794,Budget,Budget +374377,Budget,Budget +371142,Budget,Budget +371127,Budget,Budget +371094,Budget,Budget +371090,Budget,Budget +371086,Budget,Budget +371066,Budget,Budget +371062,Budget,Budget +371061,Budget,Budget +371059,Budget,Budget +371057,Budget,Budget +371055,Budget,Budget +371036,Budget,Budget +371033,Budget,Budget +371028,Budget,Budget +371017,Budget,Budget +371012,Budget,Budget +371004,Budget,Budget +370998,Budget,Budget +356491,Budget,Budget +356487,Budget,Budget +355886,Budget,Budget +351585,Budget,Budget +348869,Budget,Budget +338533,Budget,Budget +338529,Budget,Budget +338521,Budget,Budget +338516,Budget,Budget +338515,Budget,Budget +338462,Budget,Budget +338364,Budget,Budget +338184,Budget,Budget +337571,Budget,Budget +337570,Budget,Budget +449208,Budget,Budget +416936,Budget,Budget +277202,Budget,Budget +273616,Budget,Budget +269620,Budget,Budget +269506,Budget,Budget +261611,Budget,Budget +166059,Budget,Budget +371433,Budget,Budget +371149,Budget,Budget +371147,Budget,Budget +371146,Budget,Budget +371145,Budget,Budget +371144,Budget,Budget +371140,Budget,Budget +371135,Budget,Budget +371132,Budget,Budget +371125,Budget,Budget +371124,Budget,Budget +371096,Budget,Budget +371084,Budget,Budget +371078,Budget,Budget +371074,Budget,Budget +371069,Budget,Budget +371067,Budget,Budget +371065,Budget,Budget +371054,Budget,Budget +371035,Budget,Budget +371034,Budget,Budget +371032,Budget,Budget +371029,Budget,Budget +371026,Budget,Budget +371020,Budget,Budget +371019,Budget,Budget +371018,Budget,Budget +371011,Budget,Budget +371009,Budget,Budget +356489,Budget,Budget +356486,Budget,Budget +354012,Budget,Budget +347504,Budget,Budget +338510,Budget,Budget +338467,Budget,Budget +338466,Budget,Budget +338461,Budget,Budget +338325,Budget,Budget +338188,Budget,Budget +338186,Budget,Budget +338177,Budget,Budget +338170,Budget,Budget +337582,Budget,Budget +337581,Budget,Budget +337575,Budget,Budget +337572,Budget,Budget +337559,Budget,Budget +337558,Budget,Budget +337556,Budget,Budget +337553,Budget,Budget +325133,Budget,Budget +322318,Budget,Budget +318041,Budget,Budget +167033,Financial Institutions,Financial Institutions +166605,Financial Institutions,Financial Institutions +166153,Financial Institutions,Financial Institutions +202831,Transportation,Transportation +406542,Transportation,Transportation +194817,Transportation,Transportation +189128,Transportation,Transportation +189117,Transportation,Transportation +189115,Transportation,Transportation +318794,Transportation,Transportation +301531,Transportation,Transportation +301530,Transportation,Transportation +301529,Transportation,Transportation +191965,Transportation,Transportation +190765,Transportation,Transportation +191990,Transportation,Transportation +191988,Transportation,Transportation +191986,Transportation,Transportation +420864,Defence,Defence +420863,Defence,Defence +239231,Defence,Defence +398068,Defence,Defence +385634,Defence,Defence +357953,Defence,Defence +290549,Defence,Defence +531668,Defence,Defence +503569,Defence,Defence +495513,Defence,Defence +467623,Defence,Defence +449668,Defence,Defence +439274,Defence,Defence +435816,Defence,Defence +435815,Defence,Defence +435813,Defence,Defence +432558,Defence,Defence +426856,Defence,Defence +426855,Defence,Defence +503569,Government Procurement,Government Procurement +495513,Government Procurement,Government Procurement +239231,Government Procurement,Government Procurement +357953,Government Procurement,Government Procurement +290549,Government Procurement,Government Procurement +467623,Government Procurement,Government Procurement +449668,Government Procurement,Government Procurement +439274,Government Procurement,Government Procurement +435816,Government Procurement,Government Procurement +435815,Government Procurement,Government Procurement +435813,Government Procurement,Government Procurement +432558,Government Procurement,Government Procurement +426856,Government Procurement,Government Procurement +426855,Government Procurement,Government Procurement +426335,Government Procurement,Government Procurement +420864,Government Procurement,Government Procurement +420863,Government Procurement,Government Procurement +398068,Government Procurement,Government Procurement +385634,Government Procurement,Government Procurement +385634,Industry,Industry +357953,Industry,Industry +239231,Industry,Industry +199973,Industry,Industry +531668,Industry,Industry +503569,Industry,Industry +495513,Industry,Industry +467623,Industry,Industry +449668,Industry,Industry +439274,Industry,Industry +435816,Industry,Industry +435815,Industry,Industry +435813,Industry,Industry +432558,Industry,Industry +426856,Industry,Industry +426855,Industry,Industry +426335,Industry,Industry +420864,Industry,Industry +420863,Industry,Industry +166227,Employment and Training,Emploi et formation +299109,Employment and Training,Emploi et formation +382600,Infrastructure,Infrastructure +382541,Infrastructure,Infrastructure +170762,Infrastructure,Infrastructure +343770,Infrastructure,Infrastructure +341609,Infrastructure,Infrastructure +244910,Infrastructure,Infrastructure +223633,Infrastructure,Infrastructure +219009,Infrastructure,Infrastructure +219008,Infrastructure,Infrastructure +219007,Infrastructure,Infrastructure +206189,Infrastructure,Infrastructure +206188,Infrastructure,Infrastructure +410213,Infrastructure,Infrastructure +385220,Infrastructure,Infrastructure +383419,Infrastructure,Infrastructure +382822,Infrastructure,Infrastructure +382821,Infrastructure,Infrastructure +382820,Infrastructure,Infrastructure +382690,Infrastructure,Infrastructure +382606,Infrastructure,Infrastructure +219007,Research and Development,Research and Development (R&D) +206190,Research and Development,Research and Development (R&D) +174869,Research and Development,Research and Development (R&D) +343770,Research and Development,Research and Development (R&D) +244910,Research and Development,Research and Development (R&D) +244909,Research and Development,Research and Development (R&D) +223633,Research and Development,Research and Development (R&D) +219009,Research and Development,Research and Development (R&D) +169025,Energy,Energy +169024,Energy,Energy +170326,Energy,Energy +170325,Energy,Energy +170324,Energy,Energy +169029,Energy,Energy +169028,Energy,Energy +170324,Environment,Environment +169029,Environment,Environment +169028,Environment,Environment +169026,Environment,Environment +169025,Environment,Environment +169024,Environment,Environment +170326,Environment,Environment +170326,Industry,Industry +170325,Industry,Industry +170324,Industry,Industry +169029,Industry,Industry +169028,Industry,Industry +169026,Industry,Industry +169025,Industry,Industry +169025,International Relations,International Relations +169024,International Relations,International Relations +170326,International Relations,International Relations +170325,International Relations,International Relations +170324,International Relations,International Relations +169029,International Relations,International Relations +169028,International Relations,International Relations +169029,Taxation and Finance,Taxation and Finance +169028,Taxation and Finance,Taxation and Finance +169026,Taxation and Finance,Taxation and Finance +169025,Taxation and Finance,Taxation and Finance +169024,Taxation and Finance,Taxation and Finance +170326,Taxation and Finance,Taxation and Finance +170325,Taxation and Finance,Taxation and Finance +189368,Government Procurement,Government Procurement +189366,Government Procurement,Government Procurement +189366,Transportation,Transportation +207614,Transportation,Transportation +169627,Government Procurement,Government Procurement +169627,Transportation,Transportation +210888,Energy,Energy +511557,Economic Development,Economic Development +511075,Economic Development,Economic Development +347537,Economic Development,Economic Development +344220,Economic Development,Economic Development +344218,Economic Development,Economic Development +342005,Economic Development,Economic Development +342003,Economic Development,Economic Development +341997,Economic Development,Economic Development +341995,Economic Development,Economic Development +341988,Economic Development,Economic Development +341987,Economic Development,Economic Development +338589,Economic Development,Economic Development +338588,Economic Development,Economic Development +335831,Economic Development,Economic Development +254850,Economic Development,Economic Development +235993,Economic Development,Economic Development +203868,Economic Development,Economic Development +509529,Economic Development,Economic Development +509385,Economic Development,Economic Development +509263,Economic Development,Economic Development +509232,Economic Development,Economic Development +509162,Economic Development,Economic Development +507201,Economic Development,Economic Development +507054,Economic Development,Economic Development +506951,Economic Development,Economic Development +506896,Economic Development,Economic Development +506894,Economic Development,Economic Development +506474,Economic Development,Economic Development +506443,Economic Development,Economic Development +506417,Economic Development,Economic Development +506414,Economic Development,Economic Development +506389,Economic Development,Economic Development +506368,Economic Development,Economic Development +506194,Economic Development,Economic Development +506180,Economic Development,Economic Development +506162,Economic Development,Economic Development +506131,Economic Development,Economic Development +506107,Economic Development,Economic Development +506079,Economic Development,Economic Development +505044,Economic Development,Economic Development +504004,Economic Development,Economic Development +503747,Economic Development,Economic Development +503458,Economic Development,Economic Development +503324,Economic Development,Economic Development +503181,Economic Development,Economic Development +503164,Economic Development,Economic Development +502981,Economic Development,Economic Development +502768,Economic Development,Economic Development +501265,Economic Development,Economic Development +501006,Economic Development,Economic Development +500732,Economic Development,Economic Development +500452,Economic Development,Economic Development +500179,Economic Development,Economic Development +500095,Economic Development,Economic Development +500082,Economic Development,Economic Development +499959,Economic Development,Economic Development +499958,Economic Development,Economic Development +499924,Economic Development,Economic Development +499783,Economic Development,Economic Development +498563,Economic Development,Economic Development +497907,Economic Development,Economic Development +497642,Economic Development,Economic Development +496835,Economic Development,Economic Development +496832,Economic Development,Economic Development +496718,Economic Development,Economic Development +496577,Economic Development,Economic Development +496558,Economic Development,Economic Development +496556,Economic Development,Economic Development +496555,Economic Development,Economic Development +496141,Economic Development,Economic Development +495263,Economic Development,Economic Development +495034,Economic Development,Economic Development +494419,Economic Development,Economic Development +494364,Economic Development,Economic Development +494356,Economic Development,Economic Development +494350,Economic Development,Economic Development +494200,Economic Development,Economic Development +494116,Economic Development,Economic Development +494083,Economic Development,Economic Development +494072,Economic Development,Economic Development +494027,Economic Development,Economic Development +493993,Economic Development,Economic Development +493968,Economic Development,Economic Development +493935,Economic Development,Economic Development +493914,Economic Development,Economic Development +493895,Economic Development,Economic Development +493786,Economic Development,Economic Development +493469,Economic Development,Economic Development +492878,Economic Development,Economic Development +492476,Economic Development,Economic Development +492090,Economic Development,Economic Development +492053,Economic Development,Economic Development +490038,Economic Development,Economic Development +489807,Economic Development,Economic Development +489806,Economic Development,Economic Development +489605,Economic Development,Economic Development +489351,Economic Development,Economic Development +489062,Economic Development,Economic Development +488915,Economic Development,Economic Development +488839,Economic Development,Economic Development +488692,Economic Development,Economic Development +488610,Economic Development,Economic Development +488603,Economic Development,Economic Development +488511,Economic Development,Economic Development +488459,Economic Development,Economic Development +488249,Economic Development,Economic Development +487291,Economic Development,Economic Development +486820,Economic Development,Economic Development +486182,Economic Development,Economic Development +486181,Economic Development,Economic Development +485698,Economic Development,Economic Development +485677,Economic Development,Economic Development +485639,Economic Development,Economic Development +485464,Economic Development,Economic Development +482643,Economic Development,Economic Development +476229,Economic Development,Economic Development +474568,Economic Development,Economic Development +474143,Economic Development,Economic Development +474006,Economic Development,Economic Development +472056,Economic Development,Economic Development +472055,Economic Development,Economic Development +471654,Economic Development,Economic Development +471551,Economic Development,Economic Development +471367,Economic Development,Economic Development +471364,Economic Development,Economic Development +471359,Economic Development,Economic Development +469450,Economic Development,Economic Development +468995,Economic Development,Economic Development +466874,Economic Development,Economic Development +466670,Economic Development,Economic Development +465441,Economic Development,Economic Development +465282,Economic Development,Economic Development +464007,Economic Development,Economic Development +463422,Economic Development,Economic Development +463066,Economic Development,Economic Development +462942,Economic Development,Economic Development +543674,Economic Development,Economic Development +543671,Economic Development,Economic Development +542752,Economic Development,Economic Development +542276,Economic Development,Economic Development +542121,Economic Development,Economic Development +541261,Economic Development,Economic Development +540953,Economic Development,Economic Development +540695,Economic Development,Economic Development +540541,Economic Development,Economic Development +540423,Economic Development,Economic Development +540310,Economic Development,Economic Development +538990,Economic Development,Economic Development +538637,Economic Development,Economic Development +537472,Economic Development,Economic Development +536553,Economic Development,Economic Development +536396,Economic Development,Economic Development +536181,Economic Development,Economic Development +536180,Economic Development,Economic Development +536132,Economic Development,Economic Development +535972,Economic Development,Economic Development +533239,Economic Development,Economic Development +532103,Economic Development,Economic Development +530852,Economic Development,Economic Development +530730,Economic Development,Economic Development +530143,Economic Development,Economic Development +530056,Economic Development,Economic Development +528331,Economic Development,Economic Development +527840,Economic Development,Economic Development +527726,Economic Development,Economic Development +527468,Economic Development,Economic Development +527452,Economic Development,Economic Development +527311,Economic Development,Economic Development +526808,Economic Development,Economic Development +526806,Economic Development,Economic Development +526745,Economic Development,Economic Development +524800,Economic Development,Economic Development +523995,Economic Development,Economic Development +523894,Economic Development,Economic Development +523884,Economic Development,Economic Development +523741,Economic Development,Economic Development +523662,Economic Development,Economic Development +523543,Economic Development,Economic Development +523397,Economic Development,Economic Development +520887,Economic Development,Economic Development +520743,Economic Development,Economic Development +520701,Economic Development,Economic Development +211767,Employment and Training,Employment and Training +168603,Agriculture,Agriculture +259712,Health,Health +168603,International Trade,International Trade +206268,Research and Development,Research and Development (R&D) +164826,Budget,Budget +164826,Economic Development,Economic Development +245408,Budget,Budget +395159,Economic Development,Economic Development +174048,Fisheries,Fisheries +165072,Financial Institutions,Financial Institutions +165071,Government Procurement,Government Procurement +164930,International Trade,International Trade +370407,Agriculture,Agriculture +316650,Consumer Issues,Consumer Issues +370406,Environment,Environment +260009,Health,Health +370407,International Trade,International Trade +496432,Agriculture,Agriculture +496432,Consumer Issues,Consumer Issues +523471,Environment,Environment +496432,Health,Health +523471,International Trade,International Trade +397101,Agriculture,Agriculture +397102,Internal Trade,Commerce intérieur +397104,International Trade,Commerce international +345437,Agriculture,Agriculture +193716,Internal Trade,Commerce intérieur +345437,International Trade,Commerce international +368554,Agriculture,Agriculture +168932,Consumer Issues,Consumer Issues +394684,Health,Health +419705,International Trade,International Trade +168930,Agriculture,Agriculture +168930,Consumer Issues,Consumer Issues +168930,Health,Health +168930,International Trade,International Trade +373528,Security,Security +422775,Agriculture,Agriculture +422775,Internal Trade,Commerce intérieur +497927,International Trade,Commerce international +315416,Agriculture,Agriculture +193724,Internal Trade,Commerce intérieur +259514,International Trade,Commerce international +496846,Agriculture,Agriculture +394884,Internal Trade,Commerce intérieur +382869,International Trade,Commerce international +168186,Agriculture,Agriculture +168186,Internal Trade,Commerce intérieur +259369,International Trade,Commerce international +381975,Agriculture,Agriculture +420379,Internal Trade,Commerce intérieur +407383,International Trade,Commerce international +168174,Agriculture,Agriculture +193720,Internal Trade,Commerce intérieur +193720,International Trade,Commerce international +166067,Economic Development,Economic Development +166067,Mining,Mining +166067,Transportation,Transportation +259507,Agriculture,Agriculture +346117,Internal Trade,Commerce intérieur +259507,International Trade,Commerce international +366203,Agriculture,Agriculture +346914,Internal Trade,Commerce intérieur +346914,International Trade,Commerce international +240209,Agriculture,Agriculture +169387,Consumer Issues,Consumer Issues +169387,Health,Health +329897,International Trade,International Trade +167735,Climate,Climate +167735,Environment,Environment +167737,Infrastructure,Infrastructure +164945,Consumer Issues,Consumer Issues +164945,Health,Health +245471,Education,Education +194926,Health,Health +169625,Pensions,Pensions +168127,Government Procurement,Government Procurement +169004,Industry,Industrie +168014,Agriculture,Agriculture +168014,Internal Trade,Commerce intérieur +168014,International Trade,Commerce international +165086,Agriculture,Agriculture +165086,Industry,Industry +165048,Defence,Defence +165048,Justice and Law Enforcement,Justice and Law Enforcement +165263,Mining,Mining +165073,Transportation,Transportation +165070,Transportation,Transportation +228019,International Development,International Development +336371,International Relations,International Relations +194765,International Trade,International Trade +355617,Research and Development,Research and Development (R&D) +188954,Budget,Budget +484368,Housing,Housing +165151,Housing,Housing +245430,Consumer Issues,Consumer Issues +165326,Infrastructure,Infrastructure +168933,Agriculture,Agriculture +168933,Consumer Issues,Consumer Issues +168933,Health,Health +168933,International Trade,International Trade +223311,Government Procurement,Government Procurement +169607,Economic Development,Développement économique +165886,International Development,International Development +165331,International Relations,International Relations +433860,International Development,International Development +165331,International Development,International Development +380394,Agriculture,Agriculture +394729,Environment,Environment +422177,Taxation and Finance,Taxation and Finance +394728,Transportation,Transportation +170562,Financial Institutions,Financial Institutions +167655,Agriculture,Agriculture +167655,International Trade,International Trade +167655,Transportation,Transportation +166510,Industry,Industry +166510,Infrastructure,Infrastructure +206767,Research and Development,Research and Development (R&D) +168140,Financial Institutions,Financial Institutions +510593,Climate,Climate +439499,Constitutional Issues,Constitutional Issues +167027,Industry,Industry +167027,Transportation,Transportation +406144,Industry,Industry +370157,Infrastructure,Infrastructure +187964,Small Business,Small Business +259424,Employment and Training,Employment and Training +245497,Environment,Environment +277434,Industry,Industry +277433,International Trade,International Trade +281030,Labour,Labour +194932,Mining,Mining +308814,Health,Health +358789,Health,Health +165563,Budget,Budget +168123,Economic Development,Economic Development +275558,Defence,Defence +246870,Government Procurement,Government Procurement +271254,Regional Development,Regional Development +529823,Budget,Budget +165705,Budget,Budget +165706,Budget,Budget +165707,Budget,Budget +165729,Budget,Budget +479826,Research and Development,Research and Development (R&D) +165827,Defence,Defence +452369,Housing,Housing +196325,Pensions,Pensions +165864,Pensions,Pensions +165865,Pensions,Pensions +210849,Consumer Issues,Consumer Issues +217168,International Trade,International Trade +192264,International Trade,International Trade +165888,International Trade,International Trade +167158,Financial Institutions,Financial Institutions +165928,International Trade,International Trade +167148,Financial Institutions,Financial Institutions +226993,Pensions,Pensions +165971,Budget,Budget +425986,Budget,Budget +171183,Energy,Energy +171183,Environment,Environment +337565,Budget,Budget +333766,Budget,Budget +337568,Budget,Budget +318039,Budget,Budget +166069,Taxation and Finance,Taxation and Finance +166109,International Trade,International Trade +166110,International Trade,International Trade +180565,Financial Institutions,Financial Institutions +166127,Climate,Climate +166131,Energy,Energy +166131,Environment,Environment +166132,Mining,Mining +229789,Transportation,Transportation +191984,Transportation,Transportation +193236,Energy,Energy +426335,Defence,Defence +531668,Government Procurement,Government Procurement +398068,Industry,Industry +175746,Employment and Training,Emploi et formation +382603,Infrastructure,Infrastructure +219008,Research and Development,Research and Development (R&D) +166293,Infrastructure,Infrastructure +169026,Energy,Energy +170325,Environment,Environment +169024,Industry,Industry +169026,International Relations,International Relations +170324,Taxation and Finance,Taxation and Finance +207614,Government Procurement,Government Procurement +189368,Transportation,Transportation +207887,Government Procurement,Government Procurement +207887,Transportation,Transportation +181068,Government Procurement,Government Procurement +181068,Transportation,Transportation +169628,Industry,Industry +169628,Transportation,Transportation +210890,Economic Development,Economic Development +210890,Energy,Energy +169784,Industry,Industry +169784,Intellectual Property,Intellectual Property +166941,Taxation and Finance,Taxation and Finance +166941,Transportation,Transportation +511620,Economic Development,Economic Development +420769,Budget,Budget +167006,Taxation and Finance,Taxation and Finance +347606,Environment,Environment +174272,Consumer Issues,Consumer Issues +209012,International Trade,International Trade +234931,International Trade,International Trade +209016,International Trade,International Trade +209008,International Trade,International Trade +169106,Environment,Environment +174273,Consumer Issues,Consumer Issues +466502,Transportation,Transportation +169605,Official Languages,Langues officielles +529645,Employment and Training,Employment and Training +462026,Government Procurement,Government Procurement +375037,International Trade,International Trade +200591,Transportation,Transportation +223551,Health,Health +166864,Health,Health +166864,Intellectual Property,Intellectual Property +389982,Consumer Issues,Consumer Issues +387439,Health,Health +389982,Industry,Industry +226328,Housing,Housing +369598,Budget,Budget +443915,Economic Development,Economic Development +455556,Research and Development,Research and Development (R&D) +177225,International Relations,International Relations +175910,Transportation,Transportation +517116,Consumer Issues,Consumer Issues +429365,Health,Health +204907,Government Procurement,Marchés Publics +167009,Budget,Budget +167010,Budget,Budget +167011,Budget,Budget +167012,Taxation and Finance,Taxation and Finance +169230,Industry,Industry +169232,Industry,Industry +167555,Intellectual Property,Intellectual Property +167555,Taxation and Finance,Taxation and Finance +471256,Agriculture,Agriculture +474798,Health,Health +167089,Agriculture,Agriculture +188068,Taxation and Finance,Taxation and Finance +506964,Environment,Environment +201169,Economic Development,Economic Development +169329,Economic Development,Economic Development +430939,International Development,International Development +309703,Agriculture,Agriculture +175420,Economic Development,Economic Development +167331,Climate,Climate +169364,Agriculture,Agriculture +169364,Environment,Environment +520653,Economic Development,Economic Development +520549,Economic Development,Economic Development +520360,Economic Development,Economic Development +519104,Economic Development,Economic Development +519045,Economic Development,Economic Development +518826,Economic Development,Economic Development +518388,Economic Development,Economic Development +516224,Economic Development,Economic Development +516180,Economic Development,Economic Development +516154,Economic Development,Economic Development +516127,Economic Development,Economic Development +515435,Economic Development,Economic Development +515399,Economic Development,Economic Development +515073,Economic Development,Economic Development +514917,Economic Development,Economic Development +513555,Economic Development,Economic Development +513550,Economic Development,Economic Development +513533,Economic Development,Economic Development +513525,Economic Development,Economic Development +513512,Economic Development,Economic Development +513364,Economic Development,Economic Development +512496,Economic Development,Economic Development +512467,Economic Development,Economic Development +512313,Economic Development,Economic Development +512048,Economic Development,Economic Development +512041,Economic Development,Economic Development +511960,Economic Development,Economic Development +511919,Economic Development,Economic Development +511918,Economic Development,Economic Development +511781,Economic Development,Economic Development +511778,Economic Development,Economic Development +511774,Economic Development,Economic Development +511759,Economic Development,Economic Development +511758,Economic Development,Economic Development +511698,Economic Development,Economic Development +511697,Economic Development,Economic Development +398036,Budget,Budget +167005,Taxation and Finance,Taxation and Finance +167007,Taxation and Finance,Taxation and Finance +316669,Environment,Environment +370758,Environment,Environment +258154,Environment,Environment +258153,Environment,Environment +258152,Environment,Environment +258151,Environment,Environment +167542,Environment,Environment +205394,International Trade,International Trade +166544,International Trade,International Trade +212522,International Trade,International Trade +209011,International Trade,International Trade +378909,International Trade,International Trade +166545,International Trade,International Trade +249811,International Trade,International Trade +209014,International Trade,International Trade +166546,International Trade,International Trade +235130,International Trade,International Trade +231969,International Trade,International Trade +166547,International Trade,International Trade +409180,International Trade,International Trade +169105,Environment,Environment +169162,Environment,Environment +169161,Environment,Environment +169160,Environment,Environment +169159,Environment,Environment +169158,Environment,Environment +169157,Environment,Environment +169156,Environment,Environment +169154,Environment,Environment +169153,Environment,Environment +169152,Environment,Environment +169151,Environment,Environment +169112,Environment,Environment +169111,Environment,Environment +169110,Environment,Environment +169109,Environment,Environment +169108,Environment,Environment +169107,Environment,Environment +468574,Employment and Training,Employment and Training +462026,Employment and Training,Employment and Training +200591,Employment and Training,Employment and Training +413212,Employment and Training,Employment and Training +388596,Employment and Training,Employment and Training +375037,Employment and Training,Employment and Training +375036,Employment and Training,Employment and Training +351623,Employment and Training,Employment and Training +351622,Employment and Training,Employment and Training +351620,Employment and Training,Employment and Training +413212,Government Procurement,Government Procurement +410072,Government Procurement,Government Procurement +388596,Government Procurement,Government Procurement +375037,Government Procurement,Government Procurement +375036,Government Procurement,Government Procurement +351623,Government Procurement,Government Procurement +351621,Government Procurement,Government Procurement +351620,Government Procurement,Government Procurement +349409,Government Procurement,Government Procurement +529645,Government Procurement,Government Procurement +524304,Government Procurement,Government Procurement +468574,Government Procurement,Government Procurement +351622,International Trade,International Trade +351620,International Trade,International Trade +287389,International Trade,International Trade +462026,International Trade,International Trade +413212,International Trade,International Trade +287389,Transportation,Transportation +448224,Health,Health +387439,Industry,Industry +226321,Housing,Housing +344911,Budget,Budget +426343,Economic Development,Economic Development +413181,Economic Development,Economic Development +275231,Economic Development,Economic Development +275229,Economic Development,Economic Development +273754,Economic Development,Economic Development +273753,Economic Development,Economic Development +227217,Economic Development,Economic Development +200514,Economic Development,Economic Development +369592,Economic Development,Economic Development +369585,Economic Development,Economic Development +369584,Economic Development,Economic Development +368715,Economic Development,Economic Development +359440,Economic Development,Economic Development +355642,Economic Development,Economic Development +344833,Economic Development,Economic Development +316080,Economic Development,Economic Development +535305,Economic Development,Economic Development +443831,Research and Development,Research and Development (R&D) +403796,Research and Development,Research and Development (R&D) +369586,Research and Development,Research and Development (R&D) +344833,Research and Development,Research and Development (R&D) +177224,International Relations,International Relations +173440,International Relations,International Relations +185373,International Relations,International Relations +185224,International Relations,International Relations +185184,International Relations,International Relations +185164,International Relations,International Relations +230091,Transportation,Transportation +230087,Transportation,Transportation +175911,Transportation,Transportation +517115,Consumer Issues,Consumer Issues +517113,Consumer Issues,Consumer Issues +175047,Consumer Issues,Consumer Issues +171564,Consumer Issues,Consumer Issues +166948,Consumer Issues,Consumer Issues +243909,Consumer Issues,Consumer Issues +200677,Consumer Issues,Consumer Issues +200675,Consumer Issues,Consumer Issues +200674,Consumer Issues,Consumer Issues +200673,Consumer Issues,Consumer Issues +195068,Consumer Issues,Consumer Issues +180492,Consumer Issues,Consumer Issues +175127,Consumer Issues,Consumer Issues +175126,Consumer Issues,Consumer Issues +175125,Consumer Issues,Consumer Issues +175124,Consumer Issues,Consumer Issues +175123,Consumer Issues,Consumer Issues +175122,Consumer Issues,Consumer Issues +175121,Consumer Issues,Consumer Issues +175120,Consumer Issues,Consumer Issues +175119,Consumer Issues,Consumer Issues +175118,Consumer Issues,Consumer Issues +175117,Consumer Issues,Consumer Issues +425756,Consumer Issues,Consumer Issues +419425,Consumer Issues,Consumer Issues +419063,Consumer Issues,Consumer Issues +414343,Consumer Issues,Consumer Issues +414342,Consumer Issues,Consumer Issues +411186,Consumer Issues,Consumer Issues +406056,Consumer Issues,Consumer Issues +403422,Consumer Issues,Consumer Issues +401171,Consumer Issues,Consumer Issues +397749,Consumer Issues,Consumer Issues +394787,Consumer Issues,Consumer Issues +394783,Consumer Issues,Consumer Issues +394782,Consumer Issues,Consumer Issues +394779,Consumer Issues,Consumer Issues +394778,Consumer Issues,Consumer Issues +494349,Consumer Issues,Consumer Issues +494348,Consumer Issues,Consumer Issues +491576,Consumer Issues,Consumer Issues +491561,Consumer Issues,Consumer Issues +491556,Consumer Issues,Consumer Issues +491484,Consumer Issues,Consumer Issues +491477,Consumer Issues,Consumer Issues +488574,Consumer Issues,Consumer Issues +488407,Consumer Issues,Consumer Issues +486641,Consumer Issues,Consumer Issues +480434,Consumer Issues,Consumer Issues +480433,Consumer Issues,Consumer Issues +462215,Consumer Issues,Consumer Issues +456365,Consumer Issues,Consumer Issues +448378,Consumer Issues,Consumer Issues +427116,Consumer Issues,Consumer Issues +427114,Consumer Issues,Consumer Issues +427113,Consumer Issues,Consumer Issues +427112,Consumer Issues,Consumer Issues +426991,Consumer Issues,Consumer Issues +544542,Consumer Issues,Consumer Issues +544540,Consumer Issues,Consumer Issues +544539,Consumer Issues,Consumer Issues +542179,Consumer Issues,Consumer Issues +542178,Consumer Issues,Consumer Issues +542177,Consumer Issues,Consumer Issues +538708,Consumer Issues,Consumer Issues +429363,Health,Health +429362,Health,Health +210832,Health,Health +210828,Health,Health +210827,Health,Health +210669,Health,Health +210667,Health,Health +203908,Health,Health +203907,Health,Health +200318,Health,Health +200315,Health,Health +194829,Health,Health +194827,Health,Health +174907,Health,Health +174906,Health,Health +174905,Health,Health +174904,Health,Health +171989,Health,Health +171988,Health,Health +170336,Health,Health +170335,Health,Health +375162,Health,Health +375161,Health,Health +375160,Health,Health +375159,Health,Health +375158,Health,Health +375157,Health,Health +375156,Health,Health +372778,Health,Health +372776,Health,Health +372772,Health,Health +372771,Health,Health +364643,Health,Health +354744,Health,Health +341623,Health,Health +341620,Health,Health +338268,Health,Health +338265,Health,Health +338264,Health,Health +275949,Health,Health +211090,Health,Health +211089,Health,Health +211088,Health,Health +211087,Health,Health +210901,Health,Health +210894,Health,Health +210891,Health,Health +210889,Health,Health +210886,Health,Health +210884,Health,Health +210883,Health,Health +210882,Health,Health +210880,Health,Health +210875,Health,Health +210874,Health,Health +210873,Health,Health +210834,Health,Health +210833,Health,Health +429361,Health,Health +422945,Health,Health +422936,Health,Health +422935,Health,Health +422934,Health,Health +422933,Health,Health +418626,Health,Health +418625,Health,Health +416970,Health,Health +416969,Health,Health +416968,Health,Health +416967,Health,Health +416966,Health,Health +410170,Health,Health +410169,Health,Health +405784,Health,Health +405783,Health,Health +405782,Health,Health +405781,Health,Health +405779,Health,Health +399142,Health,Health +395695,Health,Health +395694,Health,Health +395691,Health,Health +395690,Health,Health +395688,Health,Health +395686,Health,Health +394894,Health,Health +394892,Health,Health +394891,Health,Health +394890,Health,Health +388824,Health,Health +388823,Health,Health +382375,Health,Health +382374,Health,Health +379037,Health,Health +375920,Health,Health +375909,Health,Health +460994,Health,Health +432975,Health,Health +432974,Health,Health +432626,Health,Health +432625,Health,Health +429379,Health,Health +429375,Health,Health +429370,Health,Health +429368,Health,Health +429367,Health,Health +429366,Health,Health +167552,Intellectual Property,Intellectual Property +167549,Intellectual Property,Intellectual Property +201238,Intellectual Property,Intellectual Property +201237,Intellectual Property,Intellectual Property +201235,Intellectual Property,Intellectual Property +201234,Intellectual Property,Intellectual Property +167562,Intellectual Property,Intellectual Property +167548,Taxation and Finance,Taxation and Finance +447996,Agriculture,Agriculture +447988,Agriculture,Agriculture +223331,Agriculture,Agriculture +223329,Agriculture,Agriculture +223328,Agriculture,Agriculture +223327,Agriculture,Agriculture +200128,Agriculture,Agriculture +182884,Agriculture,Agriculture +383388,Agriculture,Agriculture +382268,Agriculture,Agriculture +355984,Agriculture,Agriculture +321730,Agriculture,Agriculture +321201,Agriculture,Agriculture +321200,Agriculture,Agriculture +321198,Agriculture,Agriculture +319630,Agriculture,Agriculture +277474,Agriculture,Agriculture +277472,Agriculture,Agriculture +277471,Agriculture,Agriculture +273576,Agriculture,Agriculture +269449,Agriculture,Agriculture +264029,Agriculture,Agriculture +250848,Agriculture,Agriculture +250847,Agriculture,Agriculture +245016,Agriculture,Agriculture +417339,Agriculture,Agriculture +410440,Agriculture,Agriculture +407399,Agriculture,Agriculture +407295,Agriculture,Agriculture +407137,Agriculture,Agriculture +407136,Agriculture,Agriculture +407135,Agriculture,Agriculture +407052,Agriculture,Agriculture +407051,Agriculture,Agriculture +406602,Agriculture,Agriculture +406601,Agriculture,Agriculture +406342,Agriculture,Agriculture +406341,Agriculture,Agriculture +406340,Agriculture,Agriculture +406339,Agriculture,Agriculture +406338,Agriculture,Agriculture +406058,Agriculture,Agriculture +406057,Agriculture,Agriculture +406055,Agriculture,Agriculture +405995,Agriculture,Agriculture +405994,Agriculture,Agriculture +405993,Agriculture,Agriculture +405992,Agriculture,Agriculture +405991,Agriculture,Agriculture +405990,Agriculture,Agriculture +405989,Agriculture,Agriculture +399915,Agriculture,Agriculture +399914,Agriculture,Agriculture +397981,Agriculture,Agriculture +394406,Agriculture,Agriculture +389124,Agriculture,Agriculture +383391,Agriculture,Agriculture +537148,Agriculture,Agriculture +513679,Agriculture,Agriculture +513678,Agriculture,Agriculture +511024,Agriculture,Agriculture +511023,Agriculture,Agriculture +508823,Agriculture,Agriculture +508820,Agriculture,Agriculture +508818,Agriculture,Agriculture +508815,Agriculture,Agriculture +505302,Agriculture,Agriculture +505301,Agriculture,Agriculture +505300,Agriculture,Agriculture +505298,Agriculture,Agriculture +505297,Agriculture,Agriculture +502826,Agriculture,Agriculture +502822,Agriculture,Agriculture +502820,Agriculture,Agriculture +502811,Agriculture,Agriculture +491429,Agriculture,Agriculture +487692,Agriculture,Agriculture +487691,Agriculture,Agriculture +472085,Agriculture,Agriculture +474794,Health,Health +474790,Health,Health +200130,Health,Health +182886,Health,Health +182885,Health,Health +169652,Health,Health +376430,Health,Health +374052,Health,Health +359692,Health,Health +359691,Health,Health +351265,Health,Health +343839,Health,Health +335711,Health,Health +335708,Health,Health +335706,Health,Health +330206,Health,Health +319629,Health,Health +319106,Health,Health +290984,Health,Health +286954,Health,Health +277474,Health,Health +277472,Health,Health +277471,Health,Health +250854,Health,Health +250851,Health,Health +250843,Health,Health +240072,Health,Health +229737,Health,Health +223329,Health,Health +223328,Health,Health +223327,Health,Health +459643,Health,Health +458677,Health,Health +458674,Health,Health +452959,Health,Health +447996,Health,Health +447983,Health,Health +444461,Health,Health +434048,Health,Health +427687,Health,Health +427686,Health,Health +426975,Health,Health +426974,Health,Health +424497,Health,Health +419739,Health,Health +417344,Health,Health +417343,Health,Health +417342,Health,Health +417341,Health,Health +417340,Health,Health +417339,Health,Health +417338,Health,Health +410802,Health,Health +407399,Health,Health +407295,Health,Health +407137,Health,Health +407136,Health,Health +407135,Health,Health +407052,Health,Health +407037,Health,Health +406602,Health,Health +406601,Health,Health +406342,Health,Health +406340,Health,Health +406339,Health,Health +406338,Health,Health +406058,Health,Health +406057,Health,Health +406055,Health,Health +405995,Health,Health +405994,Health,Health +405993,Health,Health +405992,Health,Health +405991,Health,Health +405990,Health,Health +405989,Health,Health +399915,Health,Health +399914,Health,Health +398265,Health,Health +397986,Health,Health +397984,Health,Health +396465,Health,Health +392519,Health,Health +390155,Health,Health +390153,Health,Health +390148,Health,Health +389119,Health,Health +384437,Health,Health +384436,Health,Health +384435,Health,Health +384432,Health,Health +382270,Health,Health +382268,Health,Health +381314,Health,Health +381306,Health,Health +379183,Health,Health +379179,Health,Health +379166,Health,Health +379162,Health,Health +541211,Health,Health +541208,Health,Health +539406,Health,Health +539388,Health,Health +533151,Health,Health +533150,Health,Health +515124,Health,Health +513681,Health,Health +512678,Health,Health +508832,Health,Health +492764,Health,Health +492759,Health,Health +491443,Health,Health +487695,Health,Health +483971,Health,Health +482222,Health,Health +481935,Health,Health +480080,Health,Health +480077,Health,Health +477799,Health,Health +474806,Health,Health +474805,Health,Health +474804,Health,Health +474803,Health,Health +168912,Taxation and Finance,Taxation and Finance +168147,Taxation and Finance,Taxation and Finance +259055,Taxation and Finance,Taxation and Finance +259054,Taxation and Finance,Taxation and Finance +259053,Taxation and Finance,Taxation and Finance +259051,Taxation and Finance,Taxation and Finance +503933,Environment,Environment +503931,Environment,Environment +503930,Environment,Environment +484011,Environment,Environment +466800,Environment,Environment +459549,Environment,Environment +457146,Environment,Environment +457145,Environment,Environment +457144,Environment,Environment +457140,Environment,Environment +455032,Environment,Environment +455031,Environment,Environment +447127,Environment,Environment +447126,Environment,Environment +442827,Environment,Environment +442826,Environment,Environment +442825,Environment,Environment +442824,Environment,Environment +442823,Environment,Environment +442822,Environment,Environment +442820,Environment,Environment +442817,Environment,Environment +442816,Environment,Environment +442302,Environment,Environment +545092,Environment,Environment +540828,Environment,Environment +540827,Environment,Environment +540826,Environment,Environment +540825,Environment,Environment +536716,Environment,Environment +533623,Environment,Environment +533622,Environment,Environment +533621,Environment,Environment +533619,Environment,Environment +530548,Environment,Environment +519547,Environment,Environment +507001,Environment,Environment +507000,Environment,Environment +506999,Environment,Environment +506998,Environment,Environment +506997,Environment,Environment +506996,Environment,Environment +506995,Environment,Environment +506994,Environment,Environment +506992,Environment,Environment +506991,Environment,Environment +506990,Environment,Environment +506989,Environment,Environment +506988,Environment,Environment +506987,Environment,Environment +506986,Environment,Environment +506985,Environment,Environment +506983,Environment,Environment +506982,Environment,Environment +506979,Environment,Environment +506977,Environment,Environment +506975,Environment,Environment +506973,Environment,Environment +506972,Environment,Environment +506970,Environment,Environment +506969,Environment,Environment +506965,Environment,Environment +167116,Economic Development,Economic Development +169328,Economic Development,Economic Development +169330,Economic Development,Economic Development +426756,International Development,International Development +426755,International Development,International Development +254167,International Development,International Development +241051,International Development,International Development +241050,International Development,International Development +236873,International Development,International Development +236872,International Development,International Development +236871,International Development,International Development +230398,International Development,International Development +227332,International Development,International Development +227330,International Development,International Development +227324,International Development,International Development +223592,International Development,International Development +216527,International Development,International Development +212331,International Development,International Development +212330,International Development,International Development +212329,International Development,International Development +212328,International Development,International Development +207414,International Development,International Development +193768,International Development,International Development +193767,International Development,International Development +193766,International Development,International Development +193765,International Development,International Development +193764,International Development,International Development +189064,International Development,International Development +185459,International Development,International Development +178244,International Development,International Development +178224,International Development,International Development +175602,International Development,International Development +175599,International Development,International Development +426753,International Development,International Development +423688,International Development,International Development +423687,International Development,International Development +423686,International Development,International Development +423685,International Development,International Development +423684,International Development,International Development +423683,International Development,International Development +422340,International Development,International Development +422339,International Development,International Development +420181,International Development,International Development +420178,International Development,International Development +420176,International Development,International Development +416013,International Development,International Development +416011,International Development,International Development +412836,International Development,International Development +412383,International Development,International Development +412381,International Development,International Development +412380,International Development,International Development +409204,International Development,International Development +407958,International Development,International Development +407957,International Development,International Development +407956,International Development,International Development +407954,International Development,International Development +406892,International Development,International Development +403919,International Development,International Development +395860,International Development,International Development +392451,International Development,International Development +391239,International Development,International Development +387466,International Development,International Development +383365,International Development,International Development +382466,International Development,International Development +381570,International Development,International Development +381569,International Development,International Development +381567,International Development,International Development +376652,International Development,International Development +371539,International Development,International Development +369093,International Development,International Development +369092,International Development,International Development +369091,International Development,International Development +361154,International Development,International Development +359591,International Development,International Development +359590,International Development,International Development +359589,International Development,International Development +357636,International Development,International Development +356368,International Development,International Development +354109,International Development,International Development +353848,International Development,International Development +348898,International Development,International Development +343623,International Development,International Development +338626,International Development,International Development +336019,International Development,International Development +331359,International Development,International Development +331358,International Development,International Development +331357,International Development,International Development +331356,International Development,International Development +331355,International Development,International Development +330090,International Development,International Development +330088,International Development,International Development +330087,International Development,International Development +327502,International Development,International Development +327501,International Development,International Development +327498,International Development,International Development +324930,International Development,International Development +321707,International Development,International Development +321703,International Development,International Development +318987,International Development,International Development +315887,International Development,International Development +313154,International Development,International Development +313153,International Development,International Development +310395,International Development,International Development +304353,International Development,International Development +304352,International Development,International Development +304350,International Development,International Development +296410,International Development,International Development +291084,International Development,International Development +291082,International Development,International Development +286178,International Development,International Development +282149,International Development,International Development +277225,International Development,International Development +273555,International Development,International Development +273553,International Development,International Development +269502,International Development,International Development +264009,International Development,International Development +258801,International Development,International Development +543414,International Development,International Development +534836,International Development,International Development +534834,International Development,International Development +531252,International Development,International Development +529099,International Development,International Development +526360,International Development,International Development +526346,International Development,International Development +522539,International Development,International Development +522537,International Development,International Development +519746,International Development,International Development +518915,International Development,International Development +517605,International Development,International Development +517602,International Development,International Development +517598,International Development,International Development +517596,International Development,International Development +517595,International Development,International Development +517593,International Development,International Development +515869,International Development,International Development +514799,International Development,International Development +514798,International Development,International Development +514796,International Development,International Development +513869,International Development,International Development +513868,International Development,International Development +512503,International Development,International Development +512502,International Development,International Development +510532,International Development,International Development +510526,International Development,International Development +504955,International Development,International Development +504948,International Development,International Development +504938,International Development,International Development +503132,International Development,International Development +503131,International Development,International Development +499247,International Development,International Development +499241,International Development,International Development +490736,International Development,International Development +486925,International Development,International Development +484504,International Development,International Development +479743,International Development,International Development +477866,International Development,International Development +477864,International Development,International Development +475035,International Development,International Development +475033,International Development,International Development +475032,International Development,International Development +467926,International Development,International Development +467924,International Development,International Development +464223,International Development,International Development +464221,International Development,International Development +464219,International Development,International Development +461369,International Development,International Development +459603,International Development,International Development +459602,International Development,International Development +459599,International Development,International Development +459597,International Development,International Development +457298,International Development,International Development +457297,International Development,International Development +457296,International Development,International Development +452217,International Development,International Development +452214,International Development,International Development +449664,International Development,International Development +447145,International Development,International Development +447143,International Development,International Development +445356,International Development,International Development +445355,International Development,International Development +445347,International Development,International Development +443636,International Development,International Development +443635,International Development,International Development +442521,International Development,International Development +439441,International Development,International Development +439439,International Development,International Development +432554,International Development,International Development +432553,International Development,International Development +253569,Pensions,Pensions +222550,Pensions,Pensions +167475,Pensions,Pensions +387244,Pensions,Pensions +384470,Pensions,Pensions +384469,Pensions,Pensions +472199,Pensions,Pensions +472198,Pensions,Pensions +469629,Pensions,Pensions +469628,Pensions,Pensions +467934,Pensions,Pensions +464047,Pensions,Pensions +464041,Pensions,Pensions +464039,Pensions,Pensions +459054,Pensions,Pensions +459053,Pensions,Pensions +459051,Pensions,Pensions +433400,Pensions,Pensions +431776,Pensions,Pensions +430160,Pensions,Pensions +430158,Pensions,Pensions +408645,Pensions,Pensions +406528,Pensions,Pensions +343698,Defence,Defence +343697,Defence,Defence +212429,Defence,Defence +212428,Defence,Defence +343695,Government Procurement,Government Procurement +312929,Government Procurement,Government Procurement +312927,Government Procurement,Government Procurement +312925,Government Procurement,Government Procurement +286891,Government Procurement,Government Procurement +254321,Government Procurement,Government Procurement +254319,Government Procurement,Government Procurement +254316,Government Procurement,Government Procurement +212443,Government Procurement,Government Procurement +171001,Government Procurement,Government Procurement +170999,Government Procurement,Government Procurement +378420,Government Procurement,Government Procurement +378419,Government Procurement,Government Procurement +378414,Government Procurement,Government Procurement +357372,Government Procurement,Government Procurement +343709,Government Procurement,Government Procurement +343704,Government Procurement,Government Procurement +343700,Government Procurement,Government Procurement +212459,Regional Development,Regional Development +212423,Regional Development,Regional Development +316649,Agriculture,Agriculture +393740,Agriculture,Agriculture +258141,Agriculture,Agriculture +258140,Agriculture,Agriculture +258138,Agriculture,Agriculture +169359,Agriculture,Agriculture +382905,Agriculture,Agriculture +371758,Agriculture,Agriculture +369745,Agriculture,Agriculture +369677,Agriculture,Agriculture +369677,Consumer Issues,Consumer Issues +347633,Consumer Issues,Consumer Issues +169359,Consumer Issues,Consumer Issues +316649,Consumer Issues,Consumer Issues +258141,Consumer Issues,Consumer Issues +258140,Consumer Issues,Consumer Issues +258138,Consumer Issues,Consumer Issues +393740,Consumer Issues,Consumer Issues +371758,Consumer Issues,Consumer Issues +258140,Environment,Environment +258138,Environment,Environment +347633,Environment,Environment +316649,Environment,Environment +258140,Health,Health +258138,Health,Health +169359,Health,Health +347633,Health,Health +316649,Health,Health +316649,International Trade,International Trade +393740,International Trade,International Trade +169359,International Trade,International Trade +258141,International Trade,International Trade +258140,International Trade,International Trade +258138,International Trade,International Trade +371758,International Trade,International Trade +369745,International Trade,International Trade +369677,International Trade,International Trade +258229,Agriculture,Agriculture +241790,Agriculture,Agriculture +206019,Agriculture,Agriculture +206018,Agriculture,Agriculture +180624,Agriculture,Agriculture +175853,Agriculture,Agriculture +175852,Agriculture,Agriculture +169187,Agriculture,Agriculture +258231,Agriculture,Agriculture +206018,Consumer Issues,Consumer Issues +169187,Consumer Issues,Consumer Issues +258231,Consumer Issues,Consumer Issues +258230,Consumer Issues,Consumer Issues +258229,Consumer Issues,Consumer Issues +258229,Environment,Environment +241790,Environment,Environment +258231,Environment,Environment +258230,Health,Health +258229,Health,Health +169187,Health,Health +258229,International Trade,International Trade +241790,International Trade,International Trade +206019,International Trade,International Trade +206018,International Trade,International Trade +180624,International Trade,International Trade +175852,International Trade,International Trade +258231,International Trade,International Trade +349619,Agriculture,Agriculture +349618,Agriculture,Agriculture +223538,Agriculture,Agriculture +212492,Agriculture,Agriculture +196100,Agriculture,Agriculture +196099,Agriculture,Agriculture +175390,Agriculture,Agriculture +302530,Agriculture,Agriculture +265087,Agriculture,Agriculture +265086,Agriculture,Agriculture +265085,Agriculture,Agriculture +245582,Agriculture,Agriculture +241457,Agriculture,Agriculture +265086,Environment,Environment +265085,Environment,Environment +265086,International Trade,International Trade +265085,International Trade,International Trade +501618,Privacy and Access to Information,Privacy and Access to Information +494880,Privacy and Access to Information,Privacy and Access to Information +167640,Privacy and Access to Information,Privacy and Access to Information +343417,Privacy and Access to Information,Privacy and Access to Information +312229,Privacy and Access to Information,Privacy and Access to Information +443261,Privacy and Access to Information,Privacy and Access to Information +541185,Privacy and Access to Information,Privacy and Access to Information +370158,Regional Development,Regional Development +370156,Regional Development,Regional Development +170704,Regional Development,Regional Development +213468,Regional Development,Regional Development +213467,Regional Development,Regional Development +210009,Regional Development,Regional Development +210008,Regional Development,Regional Development +202427,Regional Development,Regional Development +197389,Regional Development,Regional Development +197388,Regional Development,Regional Development +187964,Regional Development,Regional Development +185552,Regional Development,Regional Development +406145,Regional Development,Regional Development +406144,Regional Development,Regional Development +406139,Research and Development,Research and Development (R&D) +406137,Research and Development,Research and Development (R&D) +210009,Research and Development,Research and Development (R&D) +197389,Research and Development,Research and Development (R&D) +187964,Research and Development,Research and Development (R&D) +185552,Research and Development,Research and Development (R&D) +325222,Research and Development,Research and Development (R&D) +325220,Research and Development,Research and Development (R&D) +325218,Research and Development,Research and Development (R&D) +325216,Research and Development,Research and Development (R&D) +309495,Research and Development,Research and Development (R&D) +213468,Research and Development,Research and Development (R&D) +213467,Research and Development,Research and Development (R&D) +370159,Research and Development,Research and Development (R&D) +370158,Research and Development,Research and Development (R&D) +370157,Research and Development,Research and Development (R&D) +370156,Research and Development,Research and Development (R&D) +370154,Research and Development,Research and Development (R&D) +406145,Research and Development,Research and Development (R&D) +406144,Research and Development,Research and Development (R&D) +395040,Agriculture,Agriculture +395038,Agriculture,Agriculture +167793,Agriculture,Agriculture +167792,Agriculture,Agriculture +167789,Agriculture,Agriculture +167787,Agriculture,Agriculture +167786,Agriculture,Agriculture +256984,Agriculture,Agriculture +256983,Agriculture,Agriculture +256981,Agriculture,Agriculture +207849,Agriculture,Agriculture +207848,Agriculture,Agriculture +207847,Agriculture,Agriculture +369923,Agriculture,Agriculture +369922,Agriculture,Agriculture +369921,Agriculture,Agriculture +364393,Agriculture,Agriculture +347087,Agriculture,Agriculture +347085,Agriculture,Agriculture +347083,Agriculture,Agriculture +315170,Agriculture,Agriculture +315169,Agriculture,Agriculture +315168,Agriculture,Agriculture +315167,Agriculture,Agriculture +446551,Agriculture,Agriculture +445132,Agriculture,Agriculture +445131,Agriculture,Agriculture +445130,Agriculture,Agriculture +432062,Agriculture,Agriculture +419660,Agriculture,Agriculture +419599,Agriculture,Agriculture +419598,Agriculture,Agriculture +395042,Agriculture,Agriculture +497597,Agriculture,Agriculture +497596,Agriculture,Agriculture +167705,Agriculture,Agriculture +167704,Agriculture,Agriculture +256929,Agriculture,Agriculture +256893,Agriculture,Agriculture +256850,Agriculture,Agriculture +256831,Agriculture,Agriculture +255510,Agriculture,Agriculture +207030,Agriculture,Agriculture +207029,Agriculture,Agriculture +207028,Agriculture,Agriculture +369912,Agriculture,Agriculture +369911,Agriculture,Agriculture +369910,Agriculture,Agriculture +465152,Agriculture,Agriculture +465138,Agriculture,Agriculture +465137,Agriculture,Agriculture +445122,Agriculture,Agriculture +445121,Agriculture,Agriculture +419573,Agriculture,Agriculture +419572,Agriculture,Agriculture +419570,Agriculture,Agriculture +395052,Agriculture,Agriculture +395050,Agriculture,Agriculture +395049,Agriculture,Agriculture +523702,Agriculture,Agriculture +523701,Agriculture,Agriculture +523700,Agriculture,Agriculture +523699,Agriculture,Agriculture +523698,Agriculture,Agriculture +497599,Agriculture,Agriculture +472132,Agriculture,Agriculture +415127,Agriculture,Agriculture +170756,Agriculture,Agriculture +351576,Agriculture,Agriculture +351363,Agriculture,Agriculture +351362,Agriculture,Agriculture +411515,Education,Education +408715,Education,Education +241609,Education,Education +238650,Education,Education +233910,Education,Education +233909,Education,Education +196425,Education,Education +167777,Education,Education +407227,Education,Education +406069,Education,Education +404287,Education,Education +404286,Education,Education +402474,Education,Education +401830,Education,Education +401179,Education,Education +397581,Education,Education +397580,Education,Education +394564,Education,Education +388503,Education,Education +388501,Education,Education +381816,Education,Education +380331,Education,Education +371601,Education,Education +371600,Education,Education +358403,Education,Education +358402,Education,Education +346837,Education,Education +344441,Education,Education +331230,Education,Education +327740,Education,Education +327724,Education,Education +314231,Education,Education +314230,Education,Education +314229,Education,Education +299030,Education,Education +298590,Education,Education +298589,Education,Education +291591,Education,Education +291590,Education,Education +269730,Education,Education +269729,Education,Education +262730,Education,Education +262729,Education,Education +257069,Education,Education +252492,Education,Education +251789,Education,Education +251589,Education,Education +248669,Education,Education +446402,Education,Education +445063,Education,Education +438892,Education,Education +431712,Education,Education +167953,International Trade,International Trade +167951,International Trade,International Trade +443469,Economic Development,Economic Development +443468,Economic Development,Economic Development +226831,Economic Development,Economic Development +226830,Economic Development,Economic Development +223047,Economic Development,Economic Development +193615,Economic Development,Economic Development +193612,Economic Development,Economic Development +189804,Economic Development,Economic Development +168058,Economic Development,Economic Development +322196,Economic Development,Economic Development +269838,Economic Development,Economic Development +269835,Economic Development,Economic Development +269833,Economic Development,Economic Development +264081,Economic Development,Economic Development +264075,Economic Development,Economic Development +264072,Economic Development,Economic Development +264069,Economic Development,Economic Development +259636,Economic Development,Economic Development +259634,Economic Development,Economic Development +259632,Economic Development,Economic Development +259631,Economic Development,Economic Development +259630,Economic Development,Economic Development +435468,Economic Development,Economic Development +435467,Economic Development,Economic Development +435466,Economic Development,Economic Development +425865,Economic Development,Economic Development +425864,Economic Development,Economic Development +425863,Economic Development,Economic Development +425862,Economic Development,Economic Development +425861,Economic Development,Economic Development +424255,Economic Development,Economic Development +421943,Economic Development,Economic Development +421940,Economic Development,Economic Development +421935,Economic Development,Economic Development +416291,Economic Development,Economic Development +410015,Economic Development,Economic Development +407811,Economic Development,Economic Development +405791,Economic Development,Economic Development +387606,Economic Development,Economic Development +374393,Economic Development,Economic Development +370507,Economic Development,Economic Development +443475,Economic Development,Economic Development +443474,Economic Development,Economic Development +443473,Economic Development,Economic Development +443472,Economic Development,Economic Development +443471,Economic Development,Economic Development +325127,Consumer Issues,Consumer Issues +325126,Consumer Issues,Consumer Issues +202782,Industry,Industry +325123,Small Business,Small Business +241225,Small Business,Small Business +325127,Small Business,Small Business +325126,Small Business,Small Business +325125,Small Business,Small Business +325127,Taxation and Finance,Taxation and Finance +202785,Taxation and Finance,Taxation and Finance +202779,Taxation and Finance,Taxation and Finance +494582,International Trade,International Trade +457473,International Trade,International Trade +188666,International Trade,International Trade +188646,International Trade,International Trade +188645,International Trade,International Trade +186165,International Trade,International Trade +180463,International Trade,International Trade +180462,International Trade,International Trade +168450,International Trade,International Trade +324719,International Trade,International Trade +312862,International Trade,International Trade +296780,International Trade,International Trade +296775,International Trade,International Trade +291010,International Trade,International Trade +272989,International Trade,International Trade +269392,International Trade,International Trade +223375,International Trade,International Trade +190805,International Trade,International Trade +190764,International Trade,International Trade +188671,International Trade,International Trade +188669,International Trade,International Trade +404588,International Trade,International Trade +399788,International Trade,International Trade +388963,International Trade,International Trade +388960,International Trade,International Trade +383310,International Trade,International Trade +381882,International Trade,International Trade +375354,International Trade,International Trade +359708,International Trade,International Trade +357502,International Trade,International Trade +351457,International Trade,International Trade +349163,International Trade,International Trade +331461,International Trade,International Trade +528063,International Trade,International Trade +516585,International Trade,International Trade +315172,Agriculture,Agriculture +315171,Agriculture,Agriculture +168559,Agriculture,Agriculture +256977,Agriculture,Agriculture +256830,Agriculture,Agriculture +246509,Agriculture,Agriculture +207549,Agriculture,Agriculture +207539,Agriculture,Agriculture +197220,Agriculture,Agriculture +197216,Agriculture,Agriculture +197214,Agriculture,Agriculture +347091,Agriculture,Agriculture +347089,Agriculture,Agriculture +315174,Agriculture,Agriculture +392981,Economic Development,Economic Development +386352,Economic Development,Economic Development +192066,Economic Development,Economic Development +168562,Economic Development,Economic Development +235309,Economic Development,Economic Development +204529,Economic Development,Economic Development +368176,Economic Development,Economic Development +503275,Economic Development,Economic Development +497632,Economic Development,Economic Development +449805,Economic Development,Economic Development +449801,Economic Development,Economic Development +224152,Economic Development,Economic Development +176130,Economic Development,Economic Development +176129,Economic Development,Economic Development +516393,Climate,Climate +495007,Climate,Climate +168594,Climate,Climate +373915,Climate,Climate +373907,Climate,Climate +373872,Climate,Climate +373871,Climate,Climate +373870,Climate,Climate +373869,Climate,Climate +373867,Climate,Climate +373866,Climate,Climate +373865,Climate,Climate +373864,Climate,Climate +373863,Climate,Climate +370658,Climate,Climate +341488,Climate,Climate +341487,Climate,Climate +341485,Climate,Climate +341483,Climate,Climate +341482,Climate,Climate +341481,Climate,Climate +341480,Climate,Climate +341479,Climate,Climate +341478,Climate,Climate +341476,Climate,Climate +341475,Climate,Climate +341473,Climate,Climate +341471,Climate,Climate +341470,Climate,Climate +341469,Climate,Climate +341468,Climate,Climate +341466,Climate,Climate +341464,Climate,Climate +341463,Climate,Climate +341461,Climate,Climate +341459,Climate,Climate +341457,Climate,Climate +341443,Climate,Climate +341439,Climate,Climate +341437,Climate,Climate +338639,Climate,Climate +338636,Climate,Climate +333535,Climate,Climate +332591,Climate,Climate +319077,Climate,Climate +418433,Climate,Climate +418328,Climate,Climate +418327,Climate,Climate +417693,Climate,Climate +415959,Climate,Climate +414297,Climate,Climate +413881,Climate,Climate +410505,Climate,Climate +409642,Climate,Climate +399432,Climate,Climate +399384,Climate,Climate +397560,Climate,Climate +397550,Climate,Climate +397512,Climate,Climate +397505,Climate,Climate +397503,Climate,Climate +397501,Climate,Climate +397500,Climate,Climate +397499,Climate,Climate +397496,Climate,Climate +397494,Climate,Climate +397493,Climate,Climate +397492,Climate,Climate +397489,Climate,Climate +397482,Climate,Climate +397481,Climate,Climate +397478,Climate,Climate +397476,Climate,Climate +397475,Climate,Climate +397473,Climate,Climate +397472,Climate,Climate +397471,Climate,Climate +397470,Climate,Climate +397468,Climate,Climate +397467,Climate,Climate +397465,Climate,Climate +392957,Climate,Climate +392160,Climate,Climate +391947,Climate,Climate +391909,Climate,Climate +391898,Climate,Climate +387994,Climate,Climate +387990,Climate,Climate +387985,Climate,Climate +386570,Climate,Climate +386312,Climate,Climate +379603,Climate,Climate +378237,Climate,Climate +376565,Climate,Climate +375619,Climate,Climate +375111,Climate,Climate +375110,Climate,Climate +375109,Climate,Climate +375108,Climate,Climate +374036,Climate,Climate +374035,Climate,Climate +374034,Climate,Climate +374033,Climate,Climate +374032,Climate,Climate +374031,Climate,Climate +374030,Climate,Climate +374029,Climate,Climate +374028,Climate,Climate +374027,Climate,Climate +374025,Climate,Climate +374024,Climate,Climate +374020,Climate,Climate +374018,Climate,Climate +374017,Climate,Climate +374016,Climate,Climate +374015,Climate,Climate +374012,Climate,Climate +373923,Climate,Climate +373921,Climate,Climate +373919,Climate,Climate +373916,Climate,Climate +472262,Climate,Climate +463747,Climate,Climate +463124,Climate,Climate +461281,Climate,Climate +460984,Climate,Climate +460867,Climate,Climate +460319,Climate,Climate +451176,Climate,Climate +448458,Climate,Climate +448412,Climate,Climate +445975,Climate,Climate +444148,Climate,Climate +444147,Climate,Climate +442829,Climate,Climate +441034,Climate,Climate +439826,Climate,Climate +436363,Climate,Climate +433417,Climate,Climate +431997,Climate,Climate +430225,Climate,Climate +430097,Climate,Climate +427651,Climate,Climate +425149,Climate,Climate +425148,Climate,Climate +425145,Climate,Climate +425144,Climate,Climate +425142,Climate,Climate +425140,Climate,Climate +425138,Climate,Climate +425136,Climate,Climate +425135,Climate,Climate +425134,Climate,Climate +425133,Climate,Climate +425132,Climate,Climate +425131,Climate,Climate +425130,Climate,Climate +425097,Climate,Climate +425095,Climate,Climate +425094,Climate,Climate +425092,Climate,Climate +425090,Climate,Climate +425089,Climate,Climate +425087,Climate,Climate +425085,Climate,Climate +425084,Climate,Climate +425079,Climate,Climate +425077,Climate,Climate +425076,Climate,Climate +425063,Climate,Climate +425062,Climate,Climate +425060,Climate,Climate +425059,Climate,Climate +425058,Climate,Climate +425056,Climate,Climate +423360,Climate,Climate +422970,Climate,Climate +397486,Research and Development,Research and Development (R&D) +379604,Research and Development,Research and Development (R&D) +375109,Research and Development,Research and Development (R&D) +375108,Research and Development,Research and Development (R&D) +374013,Research and Development,Research and Development (R&D) +373921,Research and Development,Research and Development (R&D) +373915,Research and Development,Research and Development (R&D) +328016,Research and Development,Research and Development (R&D) +249672,Research and Development,Research and Development (R&D) +397509,Research and Development,Research and Development (R&D) +397508,Research and Development,Research and Development (R&D) +397490,Research and Development,Research and Development (R&D) +196087,Agriculture,Agriculture +382094,Agriculture,Agriculture +175387,Agriculture,Agriculture +371400,Agriculture,Agriculture +371398,Agriculture,Agriculture +371397,Agriculture,Agriculture +367783,Agriculture,Agriculture +367782,Agriculture,Agriculture +350958,Agriculture,Agriculture +350956,Agriculture,Agriculture +350955,Agriculture,Agriculture +350954,Agriculture,Agriculture +350953,Agriculture,Agriculture +350951,Agriculture,Agriculture +350949,Agriculture,Agriculture +334576,Agriculture,Agriculture +251570,Agriculture,Agriculture +251569,Agriculture,Agriculture +245576,Agriculture,Agriculture +241455,Agriculture,Agriculture +233787,Agriculture,Agriculture +223523,Agriculture,Agriculture +212485,Agriculture,Agriculture +196090,Agriculture,Agriculture +350955,Labour,Labour +350954,Labour,Labour +350956,Transportation,Transportation +334576,Transportation,Transportation +371400,Transportation,Transportation +371398,Transportation,Transportation +420157,Religion,Religion +522191,Religion,Religion +168749,Religion,Religion +203707,Religion,Religion +201115,Religion,Religion +201113,Religion,Religion +201110,Religion,Religion +189554,Religion,Religion +369977,Religion,Religion +368892,Religion,Religion +335990,Religion,Religion +335988,Religion,Religion +322429,Religion,Religion +296846,Religion,Religion +504878,Religion,Religion +502515,Religion,Religion +491182,Religion,Religion +491114,Religion,Religion +442801,Religion,Religion +442799,Religion,Religion +442798,Religion,Religion +423958,Religion,Religion +335988,International Relations,International Relations +201119,International Relations,International Relations +189554,International Relations,International Relations +189365,International Relations,International Relations +351691,International Relations,International Relations +339371,International Relations,International Relations +491186,Religion,Religion +491162,Religion,Religion +194892,Religion,Religion +194887,Religion,Religion +189365,Religion,Religion +173868,Religion,Religion +168810,Religion,Religion +208607,Religion,Religion +203708,Religion,Religion +366763,Religion,Religion +341685,Religion,Religion +322421,Religion,Religion +491130,Religion,Religion +467644,Religion,Religion +448338,Religion,Religion +439472,Religion,Religion +428302,Religion,Religion +423944,Religion,Religion +420159,Religion,Religion +420076,Religion,Religion +418476,Religion,Religion +410460,Religion,Religion +408399,Religion,Religion +375067,Religion,Religion +483400,International Development,International Development +481462,International Development,International Development +196286,International Development,International Development +196285,International Development,International Development +196284,International Development,International Development +192665,International Development,International Development +192588,International Development,International Development +192584,International Development,International Development +188064,International Development,International Development +168853,International Development,International Development +242371,International Development,International Development +242370,International Development,International Development +240110,International Development,International Development +238371,International Development,International Development +238370,International Development,International Development +238369,International Development,International Development +230891,International Development,International Development +209707,International Development,International Development +203688,International Development,International Development +203687,International Development,International Development +200011,International Development,International Development +364313,International Development,International Development +349892,International Development,International Development +349891,International Development,International Development +347240,International Development,International Development +346766,International Development,International Development +337603,International Development,International Development +337520,International Development,International Development +335070,International Development,International Development +334895,International Development,International Development +333568,International Development,International Development +333375,International Development,International Development +333369,International Development,International Development +333095,International Development,International Development +333094,International Development,International Development +333093,International Development,International Development +331576,International Development,International Development +328709,International Development,International Development +321073,International Development,International Development +321072,International Development,International Development +321071,International Development,International Development +321070,International Development,International Development +297652,International Development,International Development +297650,International Development,International Development +297649,International Development,International Development +294329,International Development,International Development +292731,International Development,International Development +292730,International Development,International Development +274409,International Development,International Development +268729,International Development,International Development +267789,International Development,International Development +249733,International Development,International Development +248870,International Development,International Development +248869,International Development,International Development +248829,International Development,International Development +248811,International Development,International Development +479188,International Development,International Development +479187,International Development,International Development +479186,International Development,International Development +479185,International Development,International Development +479184,International Development,International Development +476769,International Development,International Development +476768,International Development,International Development +476767,International Development,International Development +475542,International Development,International Development +475541,International Development,International Development +472196,International Development,International Development +472195,International Development,International Development +472194,International Development,International Development +469623,International Development,International Development +466101,International Development,International Development +466098,International Development,International Development +466096,International Development,International Development +466090,International Development,International Development +463620,International Development,International Development +463384,International Development,International Development +463383,International Development,International Development +463382,International Development,International Development +457010,International Development,International Development +457009,International Development,International Development +457008,International Development,International Development +454309,International Development,International Development +454308,International Development,International Development +454307,International Development,International Development +454305,International Development,International Development +454190,International Development,International Development +454186,International Development,International Development +454185,International Development,International Development +451275,International Development,International Development +451274,International Development,International Development +450510,International Development,International Development +450508,International Development,International Development +450507,International Development,International Development +450506,International Development,International Development +450505,International Development,International Development +450504,International Development,International Development +450503,International Development,International Development +450502,International Development,International Development +450501,International Development,International Development +447426,International Development,International Development +446815,International Development,International Development +446810,International Development,International Development +446032,International Development,International Development +440646,International Development,International Development +440645,International Development,International Development +434955,International Development,International Development +431695,International Development,International Development +427519,International Development,International Development +427517,International Development,International Development +427516,International Development,International Development +423502,International Development,International Development +409219,International Development,International Development +407442,International Development,International Development +407437,International Development,International Development +407435,International Development,International Development +402628,International Development,International Development +402624,International Development,International Development +402623,International Development,International Development +399907,International Development,International Development +399299,International Development,International Development +397791,International Development,International Development +395449,International Development,International Development +393396,International Development,International Development +386850,International Development,International Development +386820,International Development,International Development +386142,International Development,International Development +386140,International Development,International Development +386139,International Development,International Development +378000,International Development,International Development +377297,International Development,International Development +377296,International Development,International Development +377295,International Development,International Development +542698,International Development,International Development +542697,International Development,International Development +541088,International Development,International Development +539380,International Development,International Development +538466,International Development,International Development +538465,International Development,International Development +538464,International Development,International Development +538463,International Development,International Development +538462,International Development,International Development +538461,International Development,International Development +538460,International Development,International Development +538459,International Development,International Development +538457,International Development,International Development +538456,International Development,International Development +534669,International Development,International Development +534666,International Development,International Development +534662,International Development,International Development +534644,International Development,International Development +530842,International Development,International Development +530841,International Development,International Development +530840,International Development,International Development +530836,International Development,International Development +530835,International Development,International Development +528698,International Development,International Development +528687,International Development,International Development +524478,International Development,International Development +524477,International Development,International Development +524476,International Development,International Development +524475,International Development,International Development +524471,International Development,International Development +524470,International Development,International Development +524467,International Development,International Development +524465,International Development,International Development +521394,International Development,International Development +516861,International Development,International Development +515071,International Development,International Development +513904,International Development,International Development +509905,International Development,International Development +508019,International Development,International Development +508013,International Development,International Development +508011,International Development,International Development +508007,International Development,International Development +504695,International Development,International Development +504693,International Development,International Development +504690,International Development,International Development +504689,International Development,International Development +504688,International Development,International Development +504687,International Development,International Development +501369,International Development,International Development +501367,International Development,International Development +501365,International Development,International Development +501364,International Development,International Development +501361,International Development,International Development +497578,International Development,International Development +497577,International Development,International Development +495253,International Development,International Development +495252,International Development,International Development +495250,International Development,International Development +495248,International Development,International Development +493967,International Development,International Development +489213,International Development,International Development +489212,International Development,International Development +489211,International Development,International Development +486393,International Development,International Development +486392,International Development,International Development +486391,International Development,International Development +486390,International Development,International Development +486389,International Development,International Development +486388,International Development,International Development +486383,International Development,International Development +486379,International Development,International Development +486377,International Development,International Development +486375,International Development,International Development +486373,International Development,International Development +483457,International Development,International Development +483455,International Development,International Development +483454,International Development,International Development +483453,International Development,International Development +483451,International Development,International Development +483442,International Development,International Development +483435,International Development,International Development +168918,International Relations,International Relations +185246,International Relations,International Relations +379484,Transportation,Transportation +379479,Transportation,Transportation +169030,Transportation,Transportation +376955,Transportation,Transportation +372175,Transportation,Transportation +369405,Transportation,Transportation +366622,Transportation,Transportation +494973,Transportation,Transportation +466972,Transportation,Transportation +464605,Transportation,Transportation +452620,Transportation,Transportation +452616,Transportation,Transportation +452614,Transportation,Transportation +452612,Transportation,Transportation +452609,Transportation,Transportation +435232,Transportation,Transportation +435203,Transportation,Transportation +416898,Transportation,Transportation +416584,Transportation,Transportation +416272,Transportation,Transportation +416237,Transportation,Transportation +392040,Transportation,Transportation +205688,Agriculture,Agriculture +205687,Agriculture,Agriculture +169572,Agriculture,Agriculture +258569,Agriculture,Agriculture +258560,Agriculture,Agriculture +258559,Agriculture,Agriculture +524354,Agriculture,Agriculture +524353,Agriculture,Agriculture +258552,Agriculture,Agriculture +258549,Agriculture,Agriculture +205721,Agriculture,Agriculture +205720,Agriculture,Agriculture +205718,Agriculture,Agriculture +169576,Agriculture,Agriculture +348276,Agriculture,Agriculture +317451,Agriculture,Agriculture +317450,Agriculture,Agriculture +317449,Agriculture,Agriculture +258554,Agriculture,Agriculture +496826,Agriculture,Agriculture +496825,Agriculture,Agriculture +496824,Agriculture,Agriculture +446022,Agriculture,Agriculture +419360,Agriculture,Agriculture +419358,Agriculture,Agriculture +419357,Agriculture,Agriculture +419355,Agriculture,Agriculture +394210,Agriculture,Agriculture +394208,Agriculture,Agriculture +394207,Agriculture,Agriculture +368610,Agriculture,Agriculture +368609,Agriculture,Agriculture +368608,Agriculture,Agriculture +205711,Agriculture,Agriculture +205710,Agriculture,Agriculture +169575,Agriculture,Agriculture +394221,Agriculture,Agriculture +394220,Agriculture,Agriculture +394218,Agriculture,Agriculture +394214,Agriculture,Agriculture +368607,Agriculture,Agriculture +368606,Agriculture,Agriculture +368605,Agriculture,Agriculture +348682,Agriculture,Agriculture +348681,Agriculture,Agriculture +317437,Agriculture,Agriculture +317436,Agriculture,Agriculture +258796,Agriculture,Agriculture +258556,Agriculture,Agriculture +258555,Agriculture,Agriculture +317445,Agriculture,Agriculture +317444,Agriculture,Agriculture +258573,Agriculture,Agriculture +258572,Agriculture,Agriculture +258571,Agriculture,Agriculture +205709,Agriculture,Agriculture +205708,Agriculture,Agriculture +205707,Agriculture,Agriculture +169573,Agriculture,Agriculture +461002,Agriculture,Agriculture +427541,Agriculture,Agriculture +426984,Agriculture,Agriculture +426983,Agriculture,Agriculture +426981,Agriculture,Agriculture +426980,Agriculture,Agriculture +426979,Agriculture,Agriculture +426977,Agriculture,Agriculture +419372,Agriculture,Agriculture +419371,Agriculture,Agriculture +419369,Agriculture,Agriculture +419368,Agriculture,Agriculture +418643,Agriculture,Agriculture +418641,Agriculture,Agriculture +394226,Agriculture,Agriculture +394225,Agriculture,Agriculture +394224,Agriculture,Agriculture +394222,Agriculture,Agriculture +368601,Agriculture,Agriculture +368600,Agriculture,Agriculture +368599,Agriculture,Agriculture +368598,Agriculture,Agriculture +348269,Agriculture,Agriculture +496809,Agriculture,Agriculture +496808,Agriculture,Agriculture +205716,Agriculture,Agriculture +205715,Agriculture,Agriculture +205714,Agriculture,Agriculture +169574,Agriculture,Agriculture +347057,Agriculture,Agriculture +346017,Agriculture,Agriculture +343320,Agriculture,Agriculture +317435,Agriculture,Agriculture +317434,Agriculture,Agriculture +317433,Agriculture,Agriculture +317432,Agriculture,Agriculture +258538,Agriculture,Agriculture +258537,Agriculture,Agriculture +258534,Agriculture,Agriculture +465294,Agriculture,Agriculture +465293,Agriculture,Agriculture +465292,Agriculture,Agriculture +465290,Agriculture,Agriculture +465288,Agriculture,Agriculture +462112,Agriculture,Agriculture +461090,Agriculture,Agriculture +460986,Agriculture,Agriculture +453299,Agriculture,Agriculture +453297,Agriculture,Agriculture +453296,Agriculture,Agriculture +453292,Agriculture,Agriculture +453290,Agriculture,Agriculture +446010,Agriculture,Agriculture +446009,Agriculture,Agriculture +446008,Agriculture,Agriculture +426876,Agriculture,Agriculture +426875,Agriculture,Agriculture +426874,Agriculture,Agriculture +426873,Agriculture,Agriculture +426872,Agriculture,Agriculture +426870,Agriculture,Agriculture +419353,Agriculture,Agriculture +419352,Agriculture,Agriculture +419348,Agriculture,Agriculture +419346,Agriculture,Agriculture +419343,Agriculture,Agriculture +418638,Agriculture,Agriculture +418636,Agriculture,Agriculture +413952,Agriculture,Agriculture +413951,Agriculture,Agriculture +411644,Agriculture,Agriculture +411643,Agriculture,Agriculture +411642,Agriculture,Agriculture +411641,Agriculture,Agriculture +411640,Agriculture,Agriculture +411639,Agriculture,Agriculture +411638,Agriculture,Agriculture +403470,Agriculture,Agriculture +395255,Agriculture,Agriculture +392229,Agriculture,Agriculture +369302,Agriculture,Agriculture +368442,Agriculture,Agriculture +527129,Agriculture,Agriculture +526736,Agriculture,Agriculture +524341,Agriculture,Agriculture +524340,Agriculture,Agriculture +524338,Agriculture,Agriculture +524337,Agriculture,Agriculture +514403,Agriculture,Agriculture +514354,Agriculture,Agriculture +500195,Agriculture,Agriculture +258499,Agriculture,Agriculture +258495,Agriculture,Agriculture +258490,Agriculture,Agriculture +205817,Agriculture,Agriculture +169578,Agriculture,Agriculture +205820,Agriculture,Agriculture +426128,Agriculture,Agriculture +419341,Agriculture,Agriculture +221407,Agriculture,Agriculture +221307,Agriculture,Agriculture +205816,Agriculture,Agriculture +205814,Agriculture,Agriculture +205812,Agriculture,Agriculture +192474,Agriculture,Agriculture +192473,Agriculture,Agriculture +192472,Agriculture,Agriculture +191404,Agriculture,Agriculture +169580,Agriculture,Agriculture +418648,Agriculture,Agriculture +418647,Agriculture,Agriculture +411630,Agriculture,Agriculture +411629,Agriculture,Agriculture +411628,Agriculture,Agriculture +411627,Agriculture,Agriculture +411626,Agriculture,Agriculture +411625,Agriculture,Agriculture +411624,Agriculture,Agriculture +404433,Agriculture,Agriculture +404432,Agriculture,Agriculture +404431,Agriculture,Agriculture +404430,Agriculture,Agriculture +404429,Agriculture,Agriculture +404428,Agriculture,Agriculture +404427,Agriculture,Agriculture +404426,Agriculture,Agriculture +404425,Agriculture,Agriculture +401786,Agriculture,Agriculture +401784,Agriculture,Agriculture +401783,Agriculture,Agriculture +401780,Agriculture,Agriculture +401778,Agriculture,Agriculture +401777,Agriculture,Agriculture +401775,Agriculture,Agriculture +401773,Agriculture,Agriculture +401767,Agriculture,Agriculture +401765,Agriculture,Agriculture +401763,Agriculture,Agriculture +401760,Agriculture,Agriculture +394198,Agriculture,Agriculture +394196,Agriculture,Agriculture +392230,Agriculture,Agriculture +381780,Agriculture,Agriculture +369719,Agriculture,Agriculture +368683,Agriculture,Agriculture +368597,Agriculture,Agriculture +368596,Agriculture,Agriculture +368595,Agriculture,Agriculture +348196,Agriculture,Agriculture +348195,Agriculture,Agriculture +348194,Agriculture,Agriculture +343322,Agriculture,Agriculture +326658,Agriculture,Agriculture +317431,Agriculture,Agriculture +317430,Agriculture,Agriculture +317429,Agriculture,Agriculture +258482,Agriculture,Agriculture +258481,Agriculture,Agriculture +258478,Agriculture,Agriculture +258475,Agriculture,Agriculture +526737,Agriculture,Agriculture +524641,Agriculture,Agriculture +524336,Agriculture,Agriculture +524335,Agriculture,Agriculture +524334,Agriculture,Agriculture +524333,Agriculture,Agriculture +524332,Agriculture,Agriculture +514353,Agriculture,Agriculture +514352,Agriculture,Agriculture +513504,Agriculture,Agriculture +500194,Agriculture,Agriculture +496830,Agriculture,Agriculture +496829,Agriculture,Agriculture +496828,Agriculture,Agriculture +496827,Agriculture,Agriculture +465328,Agriculture,Agriculture +465281,Agriculture,Agriculture +465279,Agriculture,Agriculture +465278,Agriculture,Agriculture +465276,Agriculture,Agriculture +462111,Agriculture,Agriculture +461088,Agriculture,Agriculture +460985,Agriculture,Agriculture +453288,Agriculture,Agriculture +453284,Agriculture,Agriculture +453282,Agriculture,Agriculture +453271,Agriculture,Agriculture +453268,Agriculture,Agriculture +446215,Agriculture,Agriculture +446213,Agriculture,Agriculture +446212,Agriculture,Agriculture +446210,Agriculture,Agriculture +426623,Agriculture,Agriculture +426618,Agriculture,Agriculture +426136,Agriculture,Agriculture +426135,Agriculture,Agriculture +266090,Environment,Environment +530977,Health,Health +527630,Health,Health +277370,Health,Health +271669,Health,Health +266069,Health,Health +232293,Health,Health +212209,Health,Health +207118,Health,Health +203168,Health,Health +203167,Health,Health +202769,Health,Health +202766,Health,Health +202764,Health,Health +202759,Health,Health +202758,Health,Health +202754,Health,Health +202752,Health,Health +202751,Health,Health +202749,Health,Health +202746,Health,Health +202735,Health,Health +202724,Health,Health +202718,Health,Health +202714,Health,Health +462072,Health,Health +447029,Health,Health +447028,Health,Health +444465,Health,Health +440931,Health,Health +422834,Health,Health +422832,Health,Health +395621,Health,Health +383514,Infrastructure,Infrastructure +383513,Infrastructure,Infrastructure +338115,International Relations,International Relations +173288,International Trade,International Trade +173287,International Trade,International Trade +318091,International Trade,International Trade +266095,International Trade,International Trade +266094,International Trade,International Trade +266093,International Trade,International Trade +266070,International Trade,International Trade +212222,International Trade,International Trade +212221,International Trade,International Trade +212220,International Trade,International Trade +212219,International Trade,International Trade +472336,Labour,Labour +427405,Labour,Labour +175105,Labour,Labour +175104,Labour,Labour +174717,Labour,Labour +174716,Labour,Labour +232291,Labour,Labour +232290,Labour,Labour +232289,Labour,Labour +207113,Labour,Labour +194696,Labour,Labour +194693,Labour,Labour +194691,Labour,Labour +194690,Labour,Labour +194686,Labour,Labour +194685,Labour,Labour +194684,Labour,Labour +194682,Labour,Labour +194680,Labour,Labour +194678,Labour,Labour +194677,Labour,Labour +194674,Labour,Labour +194672,Labour,Labour +194671,Labour,Labour +194669,Labour,Labour +194667,Labour,Labour +194665,Labour,Labour +194663,Labour,Labour +189946,Labour,Labour +189945,Labour,Labour +189944,Labour,Labour +177344,Labour,Labour +347721,Labour,Labour +338114,Labour,Labour +338112,Labour,Labour +338111,Labour,Labour +332434,Labour,Labour +277359,Labour,Labour +266092,Labour,Labour +266089,Labour,Labour +207116,Pensions,Pensions +271670,Pensions,Pensions +230909,Health,Health +187691,Economic Development,Economic Development +336138,Economic Development,Economic Development +270569,Economic Development,Economic Development +454298,International Trade,International Trade +454296,International Trade,International Trade +196426,International Trade,International Trade +182264,International Trade,International Trade +466078,International Trade,International Trade +465100,International Trade,International Trade +462422,International Trade,International Trade +462421,International Trade,International Trade +462418,International Trade,International Trade +460582,International Trade,International Trade +459418,International Trade,International Trade +459417,International Trade,International Trade +459416,International Trade,International Trade +456828,International Trade,International Trade +173425,Government Procurement,Government Procurement +429815,Health,Health +429814,Health,Health +194999,Health,Health +189650,Health,Health +189648,Health,Health +189646,Health,Health +189644,Health,Health +189642,Health,Health +189641,Health,Health +174885,Health,Health +174884,Health,Health +173286,Health,Health +171347,Health,Health +272314,Health,Health +272313,Health,Health +272312,Health,Health +272311,Health,Health +245809,Health,Health +241226,Health,Health +224131,Health,Health +224130,Health,Health +224129,Health,Health +224128,Health,Health +224127,Health,Health +218749,Health,Health +200164,Health,Health +200159,Health,Health +195003,Health,Health +373518,Health,Health +370269,Health,Health +367891,Health,Health +355275,Health,Health +350520,Health,Health +349432,Health,Health +339923,Health,Health +337381,Health,Health +337380,Health,Health +337378,Health,Health +337377,Health,Health +324070,Health,Health +317811,Health,Health +313530,Health,Health +313529,Health,Health +289349,Health,Health +279694,Health,Health +279693,Health,Health +279692,Health,Health +279691,Health,Health +279690,Health,Health +279689,Health,Health +272316,Health,Health +272315,Health,Health +426140,Health,Health +417984,Health,Health +417983,Health,Health +417508,Health,Health +417505,Health,Health +395813,Health,Health +389470,Health,Health +389469,Health,Health +389468,Health,Health +386935,Health,Health +386905,Health,Health +378238,Health,Health +434035,Health,Health +443763,Sports,Sports +443762,Sports,Sports +213231,Sports,Sports +213229,Sports,Sports +213228,Sports,Sports +213227,Sports,Sports +213207,Sports,Sports +207579,Sports,Sports +200162,Sports,Sports +200159,Sports,Sports +195003,Sports,Sports +194999,Sports,Sports +189650,Sports,Sports +189648,Sports,Sports +189646,Sports,Sports +189644,Sports,Sports +189642,Sports,Sports +189641,Sports,Sports +185874,Sports,Sports +185873,Sports,Sports +180377,Sports,Sports +174885,Sports,Sports +174884,Sports,Sports +173286,Sports,Sports +171347,Sports,Sports +309760,Sports,Sports +289349,Sports,Sports +279694,Sports,Sports +279693,Sports,Sports +279692,Sports,Sports +279691,Sports,Sports +279690,Sports,Sports +272316,Sports,Sports +272315,Sports,Sports +272314,Sports,Sports +272313,Sports,Sports +272312,Sports,Sports +272311,Sports,Sports +266610,Sports,Sports +266609,Sports,Sports +262090,Sports,Sports +262089,Sports,Sports +245809,Sports,Sports +241226,Sports,Sports +241223,Sports,Sports +230725,Sports,Sports +230724,Sports,Sports +227304,Sports,Sports +227302,Sports,Sports +227299,Sports,Sports +224131,Sports,Sports +224130,Sports,Sports +224129,Sports,Sports +224128,Sports,Sports +224127,Sports,Sports +218768,Sports,Sports +218749,Sports,Sports +389470,Sports,Sports +389469,Sports,Sports +389468,Sports,Sports +386935,Sports,Sports +386934,Sports,Sports +386933,Sports,Sports +386931,Sports,Sports +386930,Sports,Sports +386925,Sports,Sports +386924,Sports,Sports +386922,Sports,Sports +386921,Sports,Sports +386918,Sports,Sports +386916,Sports,Sports +386915,Sports,Sports +386912,Sports,Sports +386911,Sports,Sports +386910,Sports,Sports +386909,Sports,Sports +386907,Sports,Sports +386905,Sports,Sports +386903,Sports,Sports +386901,Sports,Sports +386899,Sports,Sports +386897,Sports,Sports +386896,Sports,Sports +386895,Sports,Sports +386894,Sports,Sports +386893,Sports,Sports +386892,Sports,Sports +386870,Sports,Sports +386869,Sports,Sports +386868,Sports,Sports +386867,Sports,Sports +386866,Sports,Sports +386865,Sports,Sports +386864,Sports,Sports +386863,Sports,Sports +384358,Sports,Sports +384357,Sports,Sports +380914,Sports,Sports +378238,Sports,Sports +378217,Sports,Sports +375553,Sports,Sports +375552,Sports,Sports +373519,Sports,Sports +370269,Sports,Sports +370268,Sports,Sports +370267,Sports,Sports +367891,Sports,Sports +355275,Sports,Sports +352925,Sports,Sports +350520,Sports,Sports +349432,Sports,Sports +346057,Sports,Sports +346037,Sports,Sports +343077,Sports,Sports +339923,Sports,Sports +339922,Sports,Sports +337381,Sports,Sports +337380,Sports,Sports +337379,Sports,Sports +337378,Sports,Sports +337377,Sports,Sports +334970,Sports,Sports +329434,Sports,Sports +324070,Sports,Sports +317814,Sports,Sports +317812,Sports,Sports +317811,Sports,Sports +314589,Sports,Sports +313530,Sports,Sports +313529,Sports,Sports +438356,Sports,Sports +438351,Sports,Sports +438350,Sports,Sports +438347,Sports,Sports +438345,Sports,Sports +438340,Sports,Sports +438332,Sports,Sports +434035,Sports,Sports +434033,Sports,Sports +429815,Sports,Sports +429814,Sports,Sports +426140,Sports,Sports +417984,Sports,Sports +417983,Sports,Sports +417508,Sports,Sports +417505,Sports,Sports +413995,Sports,Sports +413993,Sports,Sports +403188,Sports,Sports +399482,Sports,Sports +399481,Sports,Sports +395813,Sports,Sports +447176,Sports,Sports +447175,Sports,Sports +445916,Sports,Sports +445915,Sports,Sports +445914,Sports,Sports +445913,Sports,Sports +445912,Sports,Sports +445911,Sports,Sports +445910,Sports,Sports +445909,Sports,Sports +445908,Sports,Sports +445907,Sports,Sports +445906,Sports,Sports +445905,Sports,Sports +445904,Sports,Sports +339289,Health,Health +338020,Health,Health +175032,Health,Health +175031,Health,Health +336809,Health,Health +335630,Health,Health +335629,Health,Health +335626,Health,Health +335624,Health,Health +335622,Health,Health +335619,Health,Health +335618,Health,Health +335617,Health,Health +335616,Health,Health +335615,Health,Health +335614,Health,Health +334965,Health,Health +318431,Health,Health +318429,Health,Health +318089,Health,Health +318084,Health,Health +318083,Health,Health +318082,Health,Health +308810,Health,Health +308729,Health,Health +303949,Health,Health +284775,Health,Health +284769,Health,Health +265674,Health,Health +265673,Health,Health +265672,Health,Health +265671,Health,Health +265609,Health,Health +231172,Health,Health +231171,Health,Health +222527,Health,Health +201727,Health,Health +201708,Health,Health +201707,Health,Health +396238,Health,Health +396236,Health,Health +396232,Health,Health +393552,Health,Health +393550,Health,Health +373010,Health,Health +370883,Health,Health +370598,Health,Health +370597,Health,Health +370502,Health,Health +370501,Health,Health +370500,Health,Health +370403,Health,Health +370402,Health,Health +370244,Health,Health +370243,Health,Health +370242,Health,Health +370241,Health,Health +370240,Health,Health +370239,Health,Health +369905,Health,Health +364002,Health,Health +355315,Health,Health +354381,Health,Health +354380,Health,Health +353143,Health,Health +353142,Health,Health +350779,Health,Health +350446,Health,Health +350445,Health,Health +348041,Health,Health +348040,Health,Health +348039,Health,Health +347762,Health,Health +342462,Health,Health +341074,Health,Health +339988,Health,Health +339987,Health,Health +339626,Health,Health +339625,Health,Health +339624,Health,Health +339623,Health,Health +339622,Health,Health +339621,Health,Health +339620,Health,Health +339619,Health,Health +339618,Health,Health +339616,Health,Health +190804,Defence,Defence +216270,Defence,Defence +201418,Defence,Defence +201417,Defence,Defence +201416,Defence,Defence +201415,Defence,Defence +201414,Defence,Defence +201413,Defence,Defence +201412,Defence,Defence +201411,Defence,Defence +201410,Defence,Defence +201408,Defence,Defence +193409,Defence,Defence +193408,Defence,Defence +193407,Defence,Defence +193406,Defence,Defence +193405,Defence,Defence +237096,Fisheries,Fisheries +237094,Fisheries,Fisheries +237093,Fisheries,Fisheries +237092,Fisheries,Fisheries +237091,Fisheries,Fisheries +237090,Fisheries,Fisheries +237088,Fisheries,Fisheries +237087,Fisheries,Fisheries +237086,Fisheries,Fisheries +237085,Fisheries,Fisheries +237084,Fisheries,Fisheries +237033,Fisheries,Fisheries +237032,Fisheries,Fisheries +237031,Fisheries,Fisheries +237030,Fisheries,Fisheries +237029,Fisheries,Fisheries +237016,Fisheries,Fisheries +237015,Fisheries,Fisheries +237011,Fisheries,Fisheries +237010,Fisheries,Fisheries +237009,Fisheries,Fisheries +237002,Fisheries,Fisheries +237000,Fisheries,Fisheries +236999,Fisheries,Fisheries +236997,Fisheries,Fisheries +236995,Fisheries,Fisheries +236994,Fisheries,Fisheries +236993,Fisheries,Fisheries +236991,Fisheries,Fisheries +236990,Fisheries,Fisheries +237112,Fisheries,Fisheries +237111,Fisheries,Fisheries +237110,Fisheries,Fisheries +237108,Fisheries,Fisheries +237107,Fisheries,Fisheries +237105,Fisheries,Fisheries +237103,Fisheries,Fisheries +237102,Fisheries,Fisheries +237101,Fisheries,Fisheries +237099,Fisheries,Fisheries +353983,International Development,International Development +351340,International Development,International Development +237002,International Development,International Development +349838,International Development,International Development +344282,International Development,International Development +395843,International Development,International Development +395812,International Development,International Development +392906,International Development,International Development +392086,International Development,International Development +392010,International Development,International Development +388778,International Development,International Development +388777,International Development,International Development +386355,International Development,International Development +380504,International Development,International Development +377310,International Development,International Development +375473,International Development,International Development +373531,International Development,International Development +373530,International Development,International Development +373451,International Development,International Development +373446,International Development,International Development +216094,Consumer Issues,Consumer Issues +488341,Consumer Issues,Consumer Issues +185351,Consumer Issues,Consumer Issues +432233,Consumer Issues,Consumer Issues +529615,Consumer Issues,Consumer Issues +338078,Consumer Issues,Consumer Issues +338076,Consumer Issues,Consumer Issues +338075,Consumer Issues,Consumer Issues +338073,Consumer Issues,Consumer Issues +305210,Consumer Issues,Consumer Issues +305190,Consumer Issues,Consumer Issues +305189,Consumer Issues,Consumer Issues +455971,Consumer Issues,Consumer Issues +455955,Consumer Issues,Consumer Issues +455946,Consumer Issues,Consumer Issues +455938,Consumer Issues,Consumer Issues +455932,Consumer Issues,Consumer Issues +455913,Consumer Issues,Consumer Issues +455904,Consumer Issues,Consumer Issues +455892,Consumer Issues,Consumer Issues +455870,Consumer Issues,Consumer Issues +448802,Consumer Issues,Consumer Issues +448801,Consumer Issues,Consumer Issues +448799,Consumer Issues,Consumer Issues +446955,Consumer Issues,Consumer Issues +442599,Consumer Issues,Consumer Issues +442174,Consumer Issues,Consumer Issues +442017,Consumer Issues,Consumer Issues +442012,Consumer Issues,Consumer Issues +442007,Consumer Issues,Consumer Issues +442000,Consumer Issues,Consumer Issues +441966,Consumer Issues,Consumer Issues +441936,Consumer Issues,Consumer Issues +441935,Consumer Issues,Consumer Issues +441928,Consumer Issues,Consumer Issues +441921,Consumer Issues,Consumer Issues +441917,Consumer Issues,Consumer Issues +441905,Consumer Issues,Consumer Issues +441903,Consumer Issues,Consumer Issues +441897,Consumer Issues,Consumer Issues +441884,Consumer Issues,Consumer Issues +441877,Consumer Issues,Consumer Issues +441875,Consumer Issues,Consumer Issues +441852,Consumer Issues,Consumer Issues +170474,Mining,Mining +170473,Mining,Mining +170472,Mining,Mining +170471,Mining,Mining +170470,Mining,Mining +170469,Mining,Mining +170468,Mining,Mining +170494,Mining,Mining +170493,Mining,Mining +170492,Mining,Mining +170491,Mining,Mining +170490,Mining,Mining +170488,Mining,Mining +170486,Mining,Mining +170485,Mining,Mining +170484,Mining,Mining +170483,Mining,Mining +170482,Mining,Mining +170481,Mining,Mining +170480,Mining,Mining +170479,Mining,Mining +170478,Mining,Mining +170477,Mining,Mining +170476,Mining,Mining +455811,Regional Development,Développement régional +455441,Regional Development,Développement régional +392946,Regional Development,Développement régional +392044,Regional Development,Développement régional +525322,Regional Development,Développement régional +525315,Regional Development,Développement régional +511648,Regional Development,Développement régional +511647,Regional Development,Développement régional +511646,Regional Development,Développement régional +509080,Regional Development,Développement régional +501100,Regional Development,Développement régional +497944,Regional Development,Développement régional +497943,Regional Development,Développement régional +497942,Regional Development,Développement régional +497941,Regional Development,Développement régional +497899,Regional Development,Développement régional +497898,Regional Development,Développement régional +494894,Regional Development,Développement régional +494893,Regional Development,Développement régional +494892,Regional Development,Développement régional +494891,Regional Development,Développement régional +494890,Regional Development,Développement régional +494889,Regional Development,Développement régional +494888,Regional Development,Développement régional +494887,Regional Development,Développement régional +494886,Regional Development,Développement régional +494884,Regional Development,Développement régional +494883,Regional Development,Développement régional +494882,Regional Development,Développement régional +494881,Regional Development,Développement régional +492576,Regional Development,Développement régional +489822,Regional Development,Développement régional +489821,Regional Development,Développement régional +489820,Regional Development,Développement régional +489819,Regional Development,Développement régional +489818,Regional Development,Développement régional +489817,Regional Development,Développement régional +489816,Regional Development,Développement régional +489814,Regional Development,Développement régional +489813,Regional Development,Développement régional +487374,Regional Development,Développement régional +486676,Regional Development,Développement régional +484035,Regional Development,Développement régional +481529,Regional Development,Développement régional +481386,Regional Development,Développement régional +481385,Regional Development,Développement régional +481384,Regional Development,Développement régional +474807,Regional Development,Développement régional +466015,Regional Development,Développement régional +464116,Regional Development,Développement régional +464111,Regional Development,Développement régional +460491,Regional Development,Développement régional +456978,Regional Development,Développement régional +456976,Regional Development,Développement régional +456971,Regional Development,Développement régional +537527,Regional Development,Développement régional +528488,Regional Development,Développement régional +494884,Infrastructure,Infrastructure +494883,Infrastructure,Infrastructure +392946,Infrastructure,Infrastructure +392044,Infrastructure,Infrastructure +494882,Infrastructure,Infrastructure +494881,Infrastructure,Infrastructure +492576,Infrastructure,Infrastructure +492575,Infrastructure,Infrastructure +489822,Infrastructure,Infrastructure +489821,Infrastructure,Infrastructure +489820,Infrastructure,Infrastructure +489819,Infrastructure,Infrastructure +489818,Infrastructure,Infrastructure +489817,Infrastructure,Infrastructure +489816,Infrastructure,Infrastructure +489814,Infrastructure,Infrastructure +489813,Infrastructure,Infrastructure +487374,Infrastructure,Infrastructure +486676,Infrastructure,Infrastructure +484035,Infrastructure,Infrastructure +481529,Infrastructure,Infrastructure +481386,Infrastructure,Infrastructure +481385,Infrastructure,Infrastructure +481384,Infrastructure,Infrastructure +481383,Infrastructure,Infrastructure +481382,Infrastructure,Infrastructure +476976,Infrastructure,Infrastructure +476970,Infrastructure,Infrastructure +466015,Infrastructure,Infrastructure +464116,Infrastructure,Infrastructure +464111,Infrastructure,Infrastructure +460491,Infrastructure,Infrastructure +456978,Infrastructure,Infrastructure +456976,Infrastructure,Infrastructure +456971,Infrastructure,Infrastructure +455820,Infrastructure,Infrastructure +455811,Infrastructure,Infrastructure +455441,Infrastructure,Infrastructure +541178,Infrastructure,Infrastructure +537527,Infrastructure,Infrastructure +528488,Infrastructure,Infrastructure +511648,Infrastructure,Infrastructure +511647,Infrastructure,Infrastructure +511646,Infrastructure,Infrastructure +510318,Infrastructure,Infrastructure +510017,Infrastructure,Infrastructure +509080,Infrastructure,Infrastructure +501100,Infrastructure,Infrastructure +497944,Infrastructure,Infrastructure +497943,Infrastructure,Infrastructure +497942,Infrastructure,Infrastructure +497941,Infrastructure,Infrastructure +497899,Infrastructure,Infrastructure +497898,Infrastructure,Infrastructure +497897,Infrastructure,Infrastructure +497896,Infrastructure,Infrastructure +494894,Infrastructure,Infrastructure +494893,Infrastructure,Infrastructure +494892,Infrastructure,Infrastructure +494891,Infrastructure,Infrastructure +494890,Infrastructure,Infrastructure +494889,Infrastructure,Infrastructure +494888,Infrastructure,Infrastructure +494887,Infrastructure,Infrastructure +494881,Transportation,Transports +492576,Transportation,Transports +492575,Transportation,Transports +489822,Transportation,Transports +489821,Transportation,Transports +489820,Transportation,Transports +489819,Transportation,Transports +489818,Transportation,Transports +489817,Transportation,Transports +489816,Transportation,Transports +489814,Transportation,Transports +489813,Transportation,Transports +487374,Transportation,Transports +486676,Transportation,Transports +484035,Transportation,Transports +481529,Transportation,Transports +466015,Transportation,Transports +464116,Transportation,Transports +464111,Transportation,Transports +460491,Transportation,Transports +456978,Transportation,Transports +456976,Transportation,Transports +456971,Transportation,Transports +455820,Transportation,Transports +455811,Transportation,Transports +455441,Transportation,Transports +392946,Transportation,Transports +392044,Transportation,Transports +541178,Transportation,Transports +537527,Transportation,Transports +528488,Transportation,Transports +525322,Transportation,Transports +525315,Transportation,Transports +521898,Transportation,Transports +511648,Transportation,Transports +511647,Transportation,Transports +511646,Transportation,Transports +510318,Transportation,Transports +510017,Transportation,Transports +509080,Transportation,Transports +501100,Transportation,Transports +497944,Transportation,Transports +497943,Transportation,Transports +497942,Transportation,Transports +497941,Transportation,Transports +497899,Transportation,Transports +497898,Transportation,Transports +497897,Transportation,Transports +497896,Transportation,Transports +494894,Transportation,Transports +494893,Transportation,Transports +494892,Transportation,Transports +494891,Transportation,Transports +167382,International Trade,International Trade +500692,International Relations,International Relations +296633,Agriculture,Agriculture +169856,Health,Health +167444,Agriculture,Agriculture +167444,Fisheries,Pêches +167464,Employment and Training,Employment and Training +167465,Employment and Training,Employment and Training +167466,Employment and Training,Employment and Training +167467,Employment and Training,Employment and Training +167468,Employment and Training,Employment and Training +167471,Employment and Training,Employment and Training +167470,Employment and Training,Employment and Training +167472,Employment and Training,Employment and Training +272592,Pensions,Pensions +343704,Defence,Defence +343699,Government Procurement,Government Procurement +286889,Regional Development,Regional Development +167498,International Trade,International Trade +167501,International Trade,International Trade +167505,Health,Health +347633,Agriculture,Agriculture +369745,Consumer Issues,Consumer Issues +258141,Environment,Environment +258141,Health,Health +347633,International Trade,International Trade +258230,Agriculture,Agriculture +206019,Consumer Issues,Consumer Issues +258230,Environment,Environment +258231,Health,Health +258230,International Trade,International Trade +233789,Agriculture,Agriculture +265087,Environment,Environment +265087,International Trade,International Trade +534549,Privacy and Access to Information,Privacy and Access to Information +406141,Regional Development,Regional Development +406142,Research and Development,Research and Development (R&D) +167651,Regional Development,Regional Development +167651,Research and Development,Research and Development (R&D) +167676,Financial Institutions,Financial Institutions +395041,Agriculture,Agriculture +497598,Agriculture,Agriculture +170758,Agriculture,Agriculture +424957,Education,Education +312890,Government Procurement,Government Procurement +167846,Housing,Housing +167954,International Trade,International Trade +443470,Economic Development,Economic Development +173617,Consumer Issues,Consumer Issues +202789,Industry,Industry +325124,Small Business,Small Business +370655,Taxation and Finance,Taxation and Finance +516563,International Trade,International Trade +315173,Agriculture,Agriculture +449800,Economic Development,Economic Development +168570,Economic Development,Economic Development +168576,Economic Development,Economic Development +517751,Climate,Climate +397487,Research and Development,Research and Development (R&D) +371400,Taxation and Finance,Taxation and Finance +196089,Agriculture,Agriculture +350958,Labour,Labour +350958,Transportation,Transportation +350961,International Trade,International Trade +421385,Religion,Religion +339370,International Development,International Development +335990,International Relations,International Relations +496323,Religion,Religion +483402,International Development,International Development +172089,Environment,Environment +168903,International Development,International Development +168914,International Development,International Development +168916,International Development,International Development +175037,International Relations,International Relations +387852,Transportation,Transportation +169038,Industry,Industry +169039,Transportation,Transportation +169040,Transportation,Transportation +169041,Transportation,Transportation +169042,Transportation,Transportation +213067,Health,Health +169064,Economic Development,Economic Development +169104,Financial Institutions,Financial Institutions +205689,Agriculture,Agriculture +524355,Agriculture,Agriculture +205712,Agriculture,Agriculture +348267,Agriculture,Agriculture +496810,Agriculture,Agriculture +169579,Agriculture,Agriculture +205819,Agriculture,Agriculture +426134,Agriculture,Agriculture +169577,Agriculture,Agriculture +266091,Environment,Environment +393575,Health,Health +466879,Infrastructure,Infrastructure +336391,Internal Trade,Internal Trade +338117,International Relations,International Relations +212218,International Trade,International Trade +239410,Labour,Labour +207120,Pensions,Pensions +230910,Health,Health +186404,Economic Development,Economic Development +186404,Regional Development,Regional Development +248909,Economic Development,Economic Development +170026,Health,Health +170026,Consumer Issues,Consumer Issues +454300,International Trade,International Trade +193410,Defence,Defence +193410,Government Procurement,Government Procurement +193420,Government Procurement,Government Procurement +434033,Health,Health +444229,Sports,Sports +169588,Security,Security +169589,Security,Security +169590,Security,Security +169592,Security,Security +339615,Health,Health +193404,Defence,Defence +237097,Fisheries,Fisheries +354001,International Development,International Development +250120,Consumer Issues,Consumer Issues +435906,Consumer Issues,Consumer Issues +323129,Environment,Environment +323129,Industry,Industry +323129,International Trade,International Trade +170346,International Trade,International Trade +170345,International Trade,International Trade +170475,Mining,Mining +196264,Taxation and Finance,Taxation and Finance +170559,International Relations,International Relations +170559,Security,Security +455820,Regional Development,Développement régional +494886,Infrastructure,Infrastructure +494882,Transportation,Transports +194762,Mining,Mining +170632,Budget,Budget +519898,Budget,Budget +467944,International Relations,International Relations +383082,Forestry,Forestry +170744,Education,Education +191146,Economic Development,Economic Development +191144,Environment,Environment +191145,Mining,Mining +200691,Environment,Environment +460164,Research and Development,Recherche et développement (R&D) +170890,Research and Development,Recherche et développement (R&D) +170892,Research and Development,Recherche et développement (R&D) +506856,Defence,Defence +171067,Defence,Defence +171099,Religion,Religion +395103,Energy,Energy +395103,International Relations,International Relations +395103,Environment,Environment +395103,Industry,Industry +196065,Economic Development,Economic Development +264709,Taxation and Finance,Taxation and Finance +265569,Government Procurement,Government Procurement +171164,International Development,International Development +171165,International Development,International Development +171166,International Development,International Development +171167,International Development,International Development +171168,International Development,International Development +171169,International Development,International Development +171171,International Development,International Development +171172,International Development,International Development +171173,International Development,International Development +171175,International Development,International Development +171177,International Development,International Development +492449,Climate,Climate +187524,Health,Health +479299,Employment and Training,Employment and Training +182846,Government Procurement,Government Procurement +348389,Security,Security +171525,Government Procurement,Government Procurement +277034,Health,Health +171404,International Trade,International Trade +533183,Government Procurement,Government Procurement +533183,Industry,Industry +419451,Infrastructure,Infrastructure +533183,Research and Development,Research and Development (R&D) +276620,Health,Health +337990,Climate,Climate +310051,Energy,Energy +252721,Environment,Environment +171890,Government Procurement,Government Procurement +351028,Industry,Industry +185851,Government Procurement,Government Procurement +173847,Intellectual Property,Intellectual Property +311330,Pensions,Pensions +516102,Pensions,Pensions +497240,Privacy and Access to Information,Privacy and Access to Information +340426,Pensions,Pensions +330804,Industry,Industry +171765,International Trade,International Trade +255210,Taxation and Finance,Taxation and Finance +199684,Health,Health +445157,Privacy and Access to Information,Privacy and Access to Information +171863,International Relations,International Relations +176924,Taxation and Finance,Taxation and Finance +522903,Pensions,Pensions +175806,Infrastructure,Infrastructure +494890,Transportation,Transports +494889,Transportation,Transports +494888,Transportation,Transports +494887,Transportation,Transports +494886,Transportation,Transports +494884,Transportation,Transports +494883,Transportation,Transports +194760,Mining,Mining +194754,Mining,Mining +203269,Mining,Mining +203267,Mining,Mining +519896,Budget,Budget +519894,Budget,Budget +207501,Budget,Budget +207500,Budget,Budget +207498,Budget,Budget +207496,Budget,Budget +207495,Budget,Budget +207476,Budget,Budget +189781,Budget,Budget +171965,Budget,Budget +171964,Budget,Budget +388049,Budget,Budget +365230,Budget,Budget +327504,Budget,Budget +327503,Budget,Budget +319141,Budget,Budget +315775,Budget,Budget +310329,Budget,Budget +304062,Budget,Budget +273378,Budget,Budget +264560,Budget,Budget +264556,Budget,Budget +259592,Budget,Budget +244451,Budget,Budget +223284,Budget,Budget +207502,Budget,Budget +517565,Budget,Budget +490062,Budget,Budget +490060,Budget,Budget +467937,Budget,Budget +457832,Budget,Budget +457826,Budget,Budget +422206,Budget,Budget +412947,Budget,Budget +412944,Budget,Budget +412940,Budget,Budget +412889,Budget,Budget +412885,Budget,Budget +412879,Budget,Budget +530952,Budget,Budget +530950,Budget,Budget +525659,Budget,Budget +519900,Budget,Budget +435341,International Relations,International Relations +433737,International Relations,International Relations +173634,International Relations,International Relations +170637,International Relations,International Relations +406186,International Relations,International Relations +335699,International Relations,International Relations +325056,International Relations,International Relations +497886,International Relations,International Relations +483650,International Relations,International Relations +476272,International Relations,International Relations +381852,Forestry,Forestry +381851,Forestry,Forestry +310089,Forestry,Forestry +310087,Forestry,Forestry +300652,Forestry,Forestry +300650,Forestry,Forestry +297089,Forestry,Forestry +296330,Forestry,Forestry +296329,Forestry,Forestry +287869,Forestry,Forestry +274989,Education,Education +176444,Environment,Environment +191146,Environment,Environment +191145,Environment,Environment +191144,Mining,Mining +176444,Mining,Mining +191146,Mining,Mining +200690,Environment,Environment +200689,Environment,Environment +236970,Environment,Environment +229274,Environment,Environment +203668,Environment,Environment +200788,Environment,Environment +200787,Environment,Environment +200695,Environment,Environment +200694,Environment,Environment +200693,Environment,Environment +200692,Environment,Environment +455663,Research and Development,Recherche et développement (R&D) +417885,Research and Development,Recherche et développement (R&D) +202840,Research and Development,Recherche et développement (R&D) +403330,Research and Development,Recherche et développement (R&D) +467527,Research and Development,Recherche et développement (R&D) +464712,Research and Development,Recherche et développement (R&D) +460598,Research and Development,Recherche et développement (R&D) +460595,Research and Development,Recherche et développement (R&D) +504594,Defence,Defence +498571,Defence,Defence +310679,Defence,Defence +484484,Defence,Defence +481848,Defence,Defence +477451,Defence,Defence +477449,Defence,Defence +473512,Defence,Defence +473511,Defence,Defence +473506,Defence,Defence +471089,Defence,Defence +471085,Defence,Defence +537701,Defence,Defence +537662,Defence,Defence +537661,Defence,Defence +537657,Defence,Defence +395101,Energy,Energy +395098,Energy,Energy +395101,International Relations,International Relations +395098,International Relations,International Relations +395101,Environment,Environment +395098,Environment,Environment +395101,Industry,Industry +395098,Industry,Industry +408692,Economic Development,Economic Development +384639,Economic Development,Economic Development +172404,Economic Development,Economic Development +256895,Economic Development,Economic Development +264073,Taxation and Finance,Taxation and Finance +489241,Climate,Climate +482761,Climate,Climate +171181,Climate,Climate +469030,Climate,Climate +469029,Climate,Climate +457903,Climate,Climate +457902,Climate,Climate +457901,Climate,Climate +454936,Climate,Climate +392452,Climate,Climate +389614,Climate,Climate +366242,Climate,Climate +536921,Climate,Climate +536918,Climate,Climate +536916,Climate,Climate +536913,Climate,Climate +536911,Climate,Climate +536905,Climate,Climate +525800,Climate,Climate +525797,Climate,Climate +525792,Climate,Climate +525786,Climate,Climate +525774,Climate,Climate +525762,Climate,Climate +522560,Climate,Climate +522325,Climate,Climate +522324,Climate,Climate +522290,Climate,Climate +522288,Climate,Climate +522286,Climate,Climate +522284,Climate,Climate +522277,Climate,Climate +522275,Climate,Climate +522273,Climate,Climate +522270,Climate,Climate +509415,Climate,Climate +500934,Climate,Climate +500126,Climate,Climate +497952,Climate,Climate +497950,Climate,Climate +497949,Climate,Climate +497947,Climate,Climate +497715,Climate,Climate +494477,Climate,Climate +494476,Climate,Climate +472339,Employment and Training,Employment and Training +472337,Employment and Training,Employment and Training +487393,Employment and Training,Employment and Training +277030,Health,Health +533182,Government Procurement,Government Procurement +533181,Government Procurement,Government Procurement +171893,Government Procurement,Government Procurement +171892,Government Procurement,Government Procurement +171891,Government Procurement,Government Procurement +208267,Government Procurement,Government Procurement +185469,Government Procurement,Government Procurement +471274,Government Procurement,Government Procurement +471273,Government Procurement,Government Procurement +469601,Government Procurement,Government Procurement +467273,Government Procurement,Government Procurement +466897,Government Procurement,Government Procurement +466704,Government Procurement,Government Procurement +435520,Government Procurement,Government Procurement +426269,Government Procurement,Government Procurement +426266,Government Procurement,Government Procurement +426265,Government Procurement,Government Procurement +426263,Government Procurement,Government Procurement +426262,Government Procurement,Government Procurement +426260,Government Procurement,Government Procurement +415700,Government Procurement,Government Procurement +406544,Government Procurement,Government Procurement +400830,Government Procurement,Government Procurement +391489,Government Procurement,Government Procurement +391484,Government Procurement,Government Procurement +391480,Government Procurement,Government Procurement +383456,Government Procurement,Government Procurement +381826,Government Procurement,Government Procurement +376300,Government Procurement,Government Procurement +375847,Government Procurement,Government Procurement +375380,Government Procurement,Government Procurement +533189,Government Procurement,Government Procurement +533188,Government Procurement,Government Procurement +533187,Government Procurement,Government Procurement +533186,Government Procurement,Government Procurement +533185,Government Procurement,Government Procurement +533182,Industry,Industry +533181,Industry,Industry +387328,Industry,Industry +385293,Industry,Industry +385291,Industry,Industry +385289,Industry,Industry +383459,Industry,Industry +383458,Industry,Industry +351027,Industry,Industry +504412,Industry,Industry +504411,Industry,Industry +504409,Industry,Industry +478355,Industry,Industry +478354,Industry,Industry +467273,Industry,Industry +466897,Industry,Industry +466704,Industry,Industry +465239,Industry,Industry +464294,Industry,Industry +464170,Industry,Industry +462078,Industry,Industry +441796,Industry,Industry +441794,Industry,Industry +441793,Industry,Industry +439111,Industry,Industry +439102,Industry,Industry +439099,Industry,Industry +439094,Industry,Industry +426269,Industry,Industry +426267,Industry,Industry +426266,Industry,Industry +426265,Industry,Industry +426264,Industry,Industry +426263,Industry,Industry +426262,Industry,Industry +426261,Industry,Industry +426260,Industry,Industry +426259,Industry,Industry +423664,Industry,Industry +420931,Industry,Industry +419451,Industry,Industry +418148,Industry,Industry +418143,Industry,Industry +398783,Industry,Industry +398780,Industry,Industry +396343,Industry,Industry +394192,Industry,Industry +394190,Industry,Industry +392651,Industry,Industry +392365,Industry,Industry +392361,Industry,Industry +392360,Industry,Industry +392359,Industry,Industry +392358,Industry,Industry +391489,Industry,Industry +533189,Industry,Industry +533188,Industry,Industry +533187,Industry,Industry +533186,Industry,Industry +533185,Industry,Industry +394192,Infrastructure,Infrastructure +391484,Infrastructure,Infrastructure +381984,Infrastructure,Infrastructure +380715,Infrastructure,Infrastructure +371453,Infrastructure,Infrastructure +457637,Infrastructure,Infrastructure +426263,Infrastructure,Infrastructure +426257,Infrastructure,Infrastructure +533182,Research and Development,Research and Development (R&D) +533181,Research and Development,Research and Development (R&D) +394192,Research and Development,Research and Development (R&D) +394190,Research and Development,Research and Development (R&D) +392363,Research and Development,Research and Development (R&D) +391484,Research and Development,Research and Development (R&D) +471311,Research and Development,Research and Development (R&D) +470580,Research and Development,Research and Development (R&D) +466897,Research and Development,Research and Development (R&D) +465239,Research and Development,Research and Development (R&D) +460161,Research and Development,Research and Development (R&D) +457637,Research and Development,Research and Development (R&D) +439111,Research and Development,Research and Development (R&D) +439108,Research and Development,Research and Development (R&D) +439099,Research and Development,Research and Development (R&D) +439094,Research and Development,Research and Development (R&D) +426269,Research and Development,Research and Development (R&D) +426267,Research and Development,Research and Development (R&D) +426266,Research and Development,Research and Development (R&D) +426263,Research and Development,Research and Development (R&D) +426262,Research and Development,Research and Development (R&D) +426261,Research and Development,Research and Development (R&D) +426259,Research and Development,Research and Development (R&D) +426258,Research and Development,Research and Development (R&D) +426256,Research and Development,Research and Development (R&D) +420931,Research and Development,Research and Development (R&D) +419451,Research and Development,Research and Development (R&D) +418148,Research and Development,Research and Development (R&D) +418143,Research and Development,Research and Development (R&D) +415976,Research and Development,Research and Development (R&D) +415700,Research and Development,Research and Development (R&D) +410458,Research and Development,Research and Development (R&D) +400830,Research and Development,Research and Development (R&D) +398783,Research and Development,Research and Development (R&D) +398780,Research and Development,Research and Development (R&D) +396343,Research and Development,Research and Development (R&D) +533189,Research and Development,Research and Development (R&D) +533188,Research and Development,Research and Development (R&D) +533187,Research and Development,Research and Development (R&D) +533186,Research and Development,Research and Development (R&D) +533185,Research and Development,Research and Development (R&D) +276619,Health,Health +276618,Health,Health +338634,Health,Health +324338,Health,Health +324335,Health,Health +324156,Health,Health +276622,Health,Health +276621,Health,Health +337989,Climate,Climate +325197,Climate,Climate +325196,Climate,Climate +310065,Climate,Climate +310063,Climate,Climate +310061,Climate,Climate +310058,Climate,Climate +310056,Climate,Climate +310054,Climate,Climate +310052,Climate,Climate +310051,Climate,Climate +310050,Climate,Climate +310049,Climate,Climate +310047,Climate,Climate +310045,Climate,Climate +270489,Climate,Climate +270235,Climate,Climate +270234,Climate,Climate +270233,Climate,Climate +270232,Climate,Climate +270231,Climate,Climate +270230,Climate,Climate +270229,Climate,Climate +252732,Climate,Climate +252731,Climate,Climate +252730,Climate,Climate +252729,Climate,Climate +252727,Climate,Climate +252726,Climate,Climate +252724,Climate,Climate +252723,Climate,Climate +252722,Climate,Climate +252721,Climate,Climate +252720,Climate,Climate +252719,Climate,Climate +252718,Climate,Climate +252717,Climate,Climate +228755,Climate,Climate +228754,Climate,Climate +228753,Climate,Climate +228752,Climate,Climate +228751,Climate,Climate +228750,Climate,Climate +310047,Energy,Energy +310045,Energy,Energy +270235,Energy,Energy +270234,Energy,Energy +270233,Energy,Energy +270232,Energy,Energy +270231,Energy,Energy +270230,Energy,Energy +270229,Energy,Energy +252732,Energy,Energy +252731,Energy,Energy +252730,Energy,Energy +252729,Energy,Energy +252727,Energy,Energy +252726,Energy,Energy +252721,Energy,Energy +252720,Energy,Energy +252719,Energy,Energy +252718,Energy,Energy +228755,Energy,Energy +228754,Energy,Energy +228753,Energy,Energy +228752,Energy,Energy +228751,Energy,Energy +228750,Energy,Energy +337990,Energy,Energy +337989,Energy,Energy +310058,Energy,Energy +310056,Energy,Energy +310054,Energy,Energy +252720,Environment,Environment +252719,Environment,Environment +252718,Environment,Environment +252717,Environment,Environment +228755,Environment,Environment +228754,Environment,Environment +228753,Environment,Environment +228752,Environment,Environment +228751,Environment,Environment +228750,Environment,Environment +369456,Environment,Environment +369453,Environment,Environment +369450,Environment,Environment +353200,Environment,Environment +310065,Environment,Environment +310063,Environment,Environment +310061,Environment,Environment +310058,Environment,Environment +310056,Environment,Environment +310054,Environment,Environment +310052,Environment,Environment +310051,Environment,Environment +310050,Environment,Environment +310047,Environment,Environment +310045,Environment,Environment +270489,Environment,Environment +270235,Environment,Environment +270234,Environment,Environment +270233,Environment,Environment +270232,Environment,Environment +270231,Environment,Environment +270230,Environment,Environment +270229,Environment,Environment +252732,Environment,Environment +252731,Environment,Environment +252730,Environment,Environment +252729,Environment,Environment +252727,Environment,Environment +252726,Environment,Environment +252725,Environment,Environment +252724,Environment,Environment +171888,Government Procurement,Government Procurement +171887,Government Procurement,Government Procurement +210531,Government Procurement,Government Procurement +185473,Government Procurement,Government Procurement +185849,Government Procurement,Government Procurement +185846,Government Procurement,Government Procurement +174124,Government Procurement,Government Procurement +173944,Government Procurement,Government Procurement +173849,Government Procurement,Government Procurement +173847,Government Procurement,Government Procurement +173846,Intellectual Property,Intellectual Property +173845,Intellectual Property,Intellectual Property +188827,Intellectual Property,Intellectual Property +185851,Intellectual Property,Intellectual Property +185850,Intellectual Property,Intellectual Property +185849,Intellectual Property,Intellectual Property +185846,Intellectual Property,Intellectual Property +183224,Intellectual Property,Intellectual Property +182966,Intellectual Property,Intellectual Property +182965,Intellectual Property,Intellectual Property +182964,Intellectual Property,Intellectual Property +181324,Intellectual Property,Intellectual Property +173944,Intellectual Property,Intellectual Property +173850,Intellectual Property,Intellectual Property +173849,Intellectual Property,Intellectual Property +173848,Intellectual Property,Intellectual Property +503610,Pensions,Pensions +497239,Privacy and Access to Information,Privacy and Access to Information +497237,Privacy and Access to Information,Privacy and Access to Information +482774,Privacy and Access to Information,Privacy and Access to Information +466318,Privacy and Access to Information,Privacy and Access to Information +532697,Privacy and Access to Information,Privacy and Access to Information +532691,Privacy and Access to Information,Privacy and Access to Information +499911,Privacy and Access to Information,Privacy and Access to Information +175795,Taxation and Finance,Taxation and Finance +175793,Taxation and Finance,Taxation and Finance +175791,Taxation and Finance,Taxation and Finance +192545,Health,Health +174050,Health,Health +205953,Health,Health +445155,Privacy and Access to Information,Privacy and Access to Information +441518,Privacy and Access to Information,Privacy and Access to Information +171828,Privacy and Access to Information,Privacy and Access to Information +272952,Privacy and Access to Information,Privacy and Access to Information +269093,Privacy and Access to Information,Privacy and Access to Information +263459,Privacy and Access to Information,Privacy and Access to Information +226965,Privacy and Access to Information,Privacy and Access to Information +216215,Privacy and Access to Information,Privacy and Access to Information +199846,Privacy and Access to Information,Privacy and Access to Information +428614,Privacy and Access to Information,Privacy and Access to Information +428610,Privacy and Access to Information,Privacy and Access to Information +415665,Privacy and Access to Information,Privacy and Access to Information +411810,Privacy and Access to Information,Privacy and Access to Information +355842,Privacy and Access to Information,Privacy and Access to Information +348879,Privacy and Access to Information,Privacy and Access to Information +340808,Privacy and Access to Information,Privacy and Access to Information +335337,Privacy and Access to Information,Privacy and Access to Information +335331,Privacy and Access to Information,Privacy and Access to Information +317530,Privacy and Access to Information,Privacy and Access to Information +312916,Privacy and Access to Information,Privacy and Access to Information +303371,Privacy and Access to Information,Privacy and Access to Information +543578,Privacy and Access to Information,Privacy and Access to Information +541249,Privacy and Access to Information,Privacy and Access to Information +541248,Privacy and Access to Information,Privacy and Access to Information +536799,Privacy and Access to Information,Privacy and Access to Information +533743,Privacy and Access to Information,Privacy and Access to Information +533737,Privacy and Access to Information,Privacy and Access to Information +531347,Privacy and Access to Information,Privacy and Access to Information +528470,Privacy and Access to Information,Privacy and Access to Information +528462,Privacy and Access to Information,Privacy and Access to Information +519341,Privacy and Access to Information,Privacy and Access to Information +510000,Privacy and Access to Information,Privacy and Access to Information +509999,Privacy and Access to Information,Privacy and Access to Information +509995,Privacy and Access to Information,Privacy and Access to Information +507359,Privacy and Access to Information,Privacy and Access to Information +507354,Privacy and Access to Information,Privacy and Access to Information +504395,Privacy and Access to Information,Privacy and Access to Information +495390,Privacy and Access to Information,Privacy and Access to Information +469903,Privacy and Access to Information,Privacy and Access to Information +466910,Privacy and Access to Information,Privacy and Access to Information +466901,Privacy and Access to Information,Privacy and Access to Information +463917,Privacy and Access to Information,Privacy and Access to Information +462273,Privacy and Access to Information,Privacy and Access to Information +461462,Privacy and Access to Information,Privacy and Access to Information +511976,Pensions,Pensions +511975,Pensions,Pensions +171963,Pensions,Pensions +171917,Pensions,Pensions +266552,Pensions,Pensions +248249,Pensions,Pensions +239350,Pensions,Pensions +239349,Pensions,Pensions +239330,Pensions,Pensions +235835,Pensions,Pensions +232873,Pensions,Pensions +229011,Pensions,Pensions +220347,Pensions,Pensions +209767,Pensions,Pensions +201568,Pensions,Pensions +193254,Pensions,Pensions +357534,Pensions,Pensions +355368,Pensions,Pensions +355199,Pensions,Pensions +352924,Pensions,Pensions +352918,Pensions,Pensions +352916,Pensions,Pensions +350317,Pensions,Pensions +350311,Pensions,Pensions +345277,Pensions,Pensions +344846,Pensions,Pensions +334929,Pensions,Pensions +294210,Pensions,Pensions +294209,Pensions,Pensions +294189,Pensions,Pensions +288649,Pensions,Pensions +279909,Pensions,Pensions +275653,Pensions,Pensions +420711,Pensions,Pensions +420710,Pensions,Pensions +420709,Pensions,Pensions +418745,Pensions,Pensions +418744,Pensions,Pensions +418009,Pensions,Pensions +418006,Pensions,Pensions +418005,Pensions,Pensions +418003,Pensions,Pensions +418001,Pensions,Pensions +414239,Pensions,Pensions +414237,Pensions,Pensions +410426,Pensions,Pensions +410424,Pensions,Pensions +401762,Pensions,Pensions +399623,Pensions,Pensions +399620,Pensions,Pensions +397768,Pensions,Pensions +397767,Pensions,Pensions +395645,Pensions,Pensions +395639,Pensions,Pensions +378688,Pensions,Pensions +378660,Pensions,Pensions +375791,Pensions,Pensions +373741,Pensions,Pensions +509835,Pensions,Pensions +509834,Pensions,Pensions +509833,Pensions,Pensions +509832,Pensions,Pensions +507107,Pensions,Pensions +503291,Pensions,Pensions +500747,Pensions,Pensions +500746,Pensions,Pensions +500745,Pensions,Pensions +500744,Pensions,Pensions +500734,Pensions,Pensions +493872,Pensions,Pensions +489909,Pensions,Pensions +487304,Pensions,Pensions +487303,Pensions,Pensions +487302,Pensions,Pensions +479816,Pensions,Pensions +477743,Pensions,Pensions +477740,Pensions,Pensions +477737,Pensions,Pensions +477711,Pensions,Pensions +477704,Pensions,Pensions +474754,Pensions,Pensions +474752,Pensions,Pensions +466958,Pensions,Pensions +464029,Pensions,Pensions +462253,Pensions,Pensions +461732,Pensions,Pensions +461731,Pensions,Pensions +459638,Pensions,Pensions +458637,Pensions,Pensions +457415,Pensions,Pensions +455514,Pensions,Pensions +455469,Pensions,Pensions +452238,Pensions,Pensions +452230,Pensions,Pensions +452228,Pensions,Pensions +452226,Pensions,Pensions +452224,Pensions,Pensions +452221,Pensions,Pensions +446679,Pensions,Pensions +446678,Pensions,Pensions +446677,Pensions,Pensions +446676,Pensions,Pensions +446675,Pensions,Pensions +445532,Pensions,Pensions +445420,Pensions,Pensions +445417,Pensions,Pensions +443781,Pensions,Pensions +443779,Pensions,Pensions +443777,Pensions,Pensions +441964,Pensions,Pensions +441961,Pensions,Pensions +441960,Pensions,Pensions +441956,Pensions,Pensions +441949,Pensions,Pensions +441948,Pensions,Pensions +441947,Pensions,Pensions +438595,Pensions,Pensions +438594,Pensions,Pensions +438592,Pensions,Pensions +435106,Pensions,Pensions +435103,Pensions,Pensions +435101,Pensions,Pensions +435095,Pensions,Pensions +435093,Pensions,Pensions +435092,Pensions,Pensions +433094,Pensions,Pensions +432371,Pensions,Pensions +432313,Pensions,Pensions +432312,Pensions,Pensions +432311,Pensions,Pensions +432310,Pensions,Pensions +432309,Pensions,Pensions +432307,Pensions,Pensions +432306,Pensions,Pensions +430096,Pensions,Pensions +430094,Pensions,Pensions +425506,Pensions,Pensions +425504,Pensions,Pensions +423486,Pensions,Pensions +423426,Pensions,Pensions +529038,Pensions,Pensions +529034,Pensions,Pensions +528969,Pensions,Pensions +528961,Pensions,Pensions +526883,Pensions,Pensions +526882,Pensions,Pensions +526877,Pensions,Pensions +522911,Pensions,Pensions +522907,Pensions,Pensions +316469,Environment,Environment +303930,Environment,Environment +175174,Environment,Environment +185288,Environment,Environment +303930,Industry,Industry +185288,Industry,Industry +175313,Industry,Industry +175174,Industry,Industry +316469,Mining,Mining +303930,Mining,Mining +185288,Mining,Mining +175313,Mining,Mining +405658,Housing,Housing +400513,Housing,Housing +319413,Housing,Housing +319412,Housing,Housing +319411,Housing,Housing +319410,Housing,Housing +319409,Housing,Housing +316049,Housing,Housing +316048,Housing,Housing +316038,Housing,Housing +311079,Housing,Housing +311077,Housing,Housing +398837,Housing,Housing +398836,Housing,Housing +398835,Housing,Housing +398832,Housing,Housing +398831,Housing,Housing +397282,Housing,Housing +397281,Housing,Housing +397280,Housing,Housing +397279,Housing,Housing +397278,Housing,Housing +394378,Housing,Housing +394372,Housing,Housing +394366,Housing,Housing +394363,Housing,Housing +394357,Housing,Housing +394353,Housing,Housing +394351,Housing,Housing +394346,Housing,Housing +392537,Housing,Housing +392532,Housing,Housing +392531,Housing,Housing +392529,Housing,Housing +392527,Housing,Housing +392525,Housing,Housing +390180,Housing,Housing +388187,Housing,Housing +388178,Housing,Housing +388166,Housing,Housing +388160,Housing,Housing +373820,Housing,Housing +373541,Housing,Housing +373308,Housing,Housing +373307,Housing,Housing +362104,Housing,Housing +362103,Housing,Housing +336373,Housing,Housing +336372,Housing,Housing +335917,Housing,Housing +335915,Housing,Housing +335914,Housing,Housing +543977,Housing,Housing +543969,Housing,Housing +539168,Housing,Housing +539167,Housing,Housing +518006,Housing,Housing +518002,Housing,Housing +487719,Housing,Housing +487718,Housing,Housing +483865,Housing,Housing +483864,Housing,Housing +483863,Housing,Housing +483862,Housing,Housing +481606,Housing,Housing +481596,Housing,Housing +481593,Housing,Housing +481589,Housing,Housing +481586,Housing,Housing +481584,Housing,Housing +481580,Housing,Housing +481578,Housing,Housing +481575,Housing,Housing +481574,Housing,Housing +481573,Housing,Housing +481572,Housing,Housing +481570,Housing,Housing +465996,Housing,Housing +465995,Housing,Housing +465993,Housing,Housing +465991,Housing,Housing +465163,Housing,Housing +465162,Housing,Housing +458365,Housing,Housing +449039,Housing,Housing +448966,Housing,Housing +448933,Housing,Housing +448489,Housing,Housing +448488,Housing,Housing +448486,Housing,Housing +448483,Housing,Housing +448478,Housing,Housing +448477,Housing,Housing +448475,Housing,Housing +448472,Housing,Housing +418047,Housing,Housing +416604,Housing,Housing +416602,Housing,Housing +171986,Pensions,Pensions +259542,Employment and Training,Employment and Training +245310,Employment and Training,Employment and Training +233221,Employment and Training,Employment and Training +207869,Employment and Training,Employment and Training +203568,Employment and Training,Employment and Training +200967,Employment and Training,Employment and Training +195031,Employment and Training,Employment and Training +180476,Employment and Training,Employment and Training +180475,Employment and Training,Employment and Training +180473,Employment and Training,Employment and Training +180468,Employment and Training,Employment and Training +180466,Employment and Training,Employment and Training +463400,Employment and Training,Employment and Training +447893,Employment and Training,Employment and Training +438831,Employment and Training,Employment and Training +438829,Employment and Training,Employment and Training +438828,Employment and Training,Employment and Training +438827,Employment and Training,Employment and Training +438825,Employment and Training,Employment and Training +438818,Employment and Training,Employment and Training +438813,Employment and Training,Employment and Training +539507,Employment and Training,Employment and Training +536772,Employment and Training,Employment and Training +536769,Employment and Training,Employment and Training +536767,Employment and Training,Employment and Training +531762,Employment and Training,Employment and Training +531761,Employment and Training,Employment and Training +531758,Employment and Training,Employment and Training +248649,Financial Institutions,Financial Institutions +225594,Agriculture,Agriculture +370639,Agriculture,Agriculture +225596,Agriculture,Agriculture +379483,Consumer Issues,Consumer Issues +379482,Consumer Issues,Consumer Issues +379482,Health,Health +308639,Internal Trade,Internal Trade +308637,Internal Trade,Internal Trade +308639,International Trade,International Trade +308637,International Trade,International Trade +276180,International Trade,International Trade +276179,International Trade,International Trade +276176,International Trade,International Trade +225596,International Trade,International Trade +225595,International Trade,International Trade +225594,International Trade,International Trade +379483,International Trade,International Trade +379482,International Trade,International Trade +365144,International Trade,International Trade +354984,International Trade,International Trade +354983,International Trade,International Trade +327275,International Trade,International Trade +327274,International Trade,International Trade +327273,International Trade,International Trade +387444,Health,Health +382784,Health,Health +207470,Health,Health +376786,Health,Health +371593,Health,Health +351302,Health,Health +323090,Health,Health +444159,Health,Health +440793,Health,Health +440334,Health,Health +437633,Health,Health +432743,Health,Health +423164,Health,Health +418388,Health,Health +410722,Health,Health +408767,Health,Health +408687,Health,Health +398838,Health,Health +398828,Health,Health +398826,Health,Health +393643,Health,Health +393642,Health,Health +393640,Health,Health +393638,Health,Health +393636,Health,Health +393635,Health,Health +390220,Health,Health +387451,Health,Health +387449,Health,Health +387448,Health,Health +320212,Consumer Issues,Consumer Issues +320211,Consumer Issues,Consumer Issues +225508,Health,Health +225387,Health,Health +220767,Health,Health +214727,Health,Health +214087,Health,Health +214067,Health,Health +213847,Health,Health +213667,Health,Health +211869,Health,Health +175609,Health,Health +175608,Health,Health +175605,Health,Health +341721,Health,Health +338632,Health,Health +325829,Health,Health +320949,Health,Health +320212,Health,Health +320211,Health,Health +313265,Health,Health +276880,Health,Health +276879,Health,Health +276878,Health,Health +276016,Health,Health +272529,Health,Health +250569,Health,Health +233449,Health,Health +175806,Transportation,Transports +175313,Environment,Environment +316469,Industry,Industry +175174,Mining,Mining +409545,Housing,Housing +171987,Pensions,Pensions +172124,Employment and Training,Employment and Training +172168,Research and Development,Research and Development (R&D) +249252,Financial Institutions,Financial Institutions +225595,Agriculture,Agriculture +225596,Consumer Issues,Consumer Issues +379483,Health,Health +308641,Internal Trade,Internal Trade +308641,International Trade,International Trade +437633,Consumer Issues,Consumer Issues +387445,Health,Health +173144,Mining,Mining +189904,Energy,Energy +189904,Transportation,Transportation +320949,Consumer Issues,Consumer Issues +225691,Health,Health +313265,Intellectual Property,Intellectual Property +188393,Transportation,Transportation +188393,Infrastructure,Infrastructure +196627,Agriculture,Agriculture +196634,Consumer Issues,Consumer Issues +203792,Economic Development,Economic Development +203792,Energy,Energy +172365,Environment,Environment +209612,Health,Health +196627,Municipalities,Municipalities +190629,Research and Development,Research and Development (R&D) +196628,Agriculture,Agriculture +196635,Consumer Issues,Consumer Issues +219771,Economic Development,Economic Development +203793,Energy,Energy +196628,Environment,Environment +196635,Health,Health +196628,Municipalities,Municipalities +190630,Research and Development,Research and Development (R&D) +209628,Small Business,Small Business +209628,Tourism,Tourism +172364,Consumer Issues,Consumer Issues +172364,Energy,Energy +172364,Environment,Environment +172364,Health,Health +172364,Municipalities,Municipalities +172366,Consumer Issues,Consumer Issues +172366,Energy,Energy +172366,Environment,Environment +172366,Health,Health +172366,Municipalities,Municipalities +172368,Consumer Issues,Consumer Issues +172368,Energy,Energy +172368,Research and Development,Research and Development (R&D) +172368,Tourism,Tourism +375093,Infrastructure,Infrastructure +172384,Government Procurement,Government Procurement +173394,Education,Education +249267,Financial Institutions,Financial Institutions +174867,Government Procurement,Government Procurement +187026,Industry,Industry +175803,Infrastructure,Infrastructure +250301,Consumer Issues,Consumer Issues +180644,Taxation and Finance,Taxation and Finance +172605,Transportation,Transportation +174870,Energy,Energy +174822,Labour,Labour +202585,Education,Education +411074,Employment and Training,Employment and Training +173305,Financial Institutions,Financial Institutions +173291,Financial Institutions,Financial Institutions +195384,Infrastructure,Infrastructure +176245,Environment,Environment +226470,Mining,Mining +488133,Labour,Labour +207587,Pensions,Pensions +534681,Privacy and Access to Information,Privacy and Access to Information +429008,Security,Security +174766,Labour,Labour +174766,Mining,Mining +176969,Agriculture,Agriculture +176970,Agriculture,Agriculture +174705,Defence,Defence +370554,Government Procurement,Government Procurement +191559,Industry,Industry +191559,Infrastructure,Infrastructure +191559,International Trade,International Trade +175324,Defence,Defence +175324,Government Procurement,Government Procurement +249876,International Relations,International Relations +173706,Energy,Energy +173705,Industry,Industry +173706,Internal Trade,Internal Trade +172944,Research and Development,Research and Development (R&D) +199881,Research and Development,Research and Development (R&D) +215868,Defence,Défense +241521,Regional Development,Développement régional +271256,Government Procurement,Marchés Publics +226177,Consumer Issues,Consumer Issues +230054,Energy,Energy +210898,Environment,Environment +308189,Industry,Industry +210895,Taxation and Finance,Taxation and Finance +410990,Economic Development,Economic Development +183175,International Relations,International Relations +173184,Education,Education +403086,International Relations,International Relations +189776,Economic Development,Economic Development +200588,Financial Institutions,Financial Institutions +173344,Labour,Labour +174645,Industry,Industry +200588,Research and Development,Research and Development (R&D) +397461,Agriculture,Agriculture +358131,Consumer Issues,Consumer Issues +173638,Consumer Issues,Consumer Issues +173641,Energy,Energy +173641,International Relations,International Relations +317309,International Trade,International Trade +381893,Research and Development,Research and Development (R&D) +209547,Energy,Energy +241972,Environment,Environment +173865,Environment,Environment +173865,Internal Trade,Internal Trade +309524,Regional Development,Regional Development +192426,Environment,Environment +173987,Energy,Energy +245533,Financial Institutions,Financial Institutions +245475,Financial Institutions,Financial Institutions +227333,Taxation and Finance,Taxation and Finance +430771,Housing,Housing +175409,Justice and Law Enforcement,Justice and Law Enforcement +192187,Budget,Budget +174105,Consumer Issues,Consumer Issues +201367,Energy,Energy +342087,Pensions,Pensions +180491,Health,Health +230221,Industry,Industry +174270,Budget,Budget +174271,Budget,Budget +219547,Budget,Budget +192358,Security,Security +196928,Environment,Environment +309738,Agriculture,Agriculture +366102,Employment and Training,Employment and Training +174706,Pensions,Pensions +175487,Security,Security +175487,Transportation,Transportation +418683,Transportation,Transportation +174824,Environment,Environment +174824,Energy,Energy +223582,Government Procurement,Government Procurement +174824,Regional Development,Regional Development +180482,Infrastructure,Infrastructure +180482,Energy,Energy +174847,Small Business,Small Business +174847,Tourism,Tourism +233788,Agriculture,Agriculture +197226,Labour,Labour +175053,International Development,International Development +362220,International Trade,International Trade +175115,Climate,Climate +175114,Employment and Training,Employment and Training +175115,Environment,Environment +175114,Immigration,Immigration +175116,International Trade,International Trade +175113,Research and Development,Research and Development (R&D) +175113,Taxation and Finance,Taxation and Finance +230222,Budget,Budget +193490,Energy,Energy +199704,Security,Security +175255,Privacy and Access to Information,Privacy and Access to Information +510403,Budget,Budget +175377,Health,Health +175388,Health,Health +175391,Health,Health +175393,Health,Health +175395,Health,Health +175460,International Relations,International Relations +396822,International Development,International Development +175486,Environment,Environment +184404,Consumer Issues,Consumer Issues +190685,Intellectual Property,Intellectual Property +175597,Pensions,Pensions +371807,Consumer Issues,Consumer Issues +175655,Housing,Housing +175704,Employment and Training,Employment and Training +187984,Consumer Issues,Consumer Issues +200788,Energy,Energy +202780,Environment,Environment +206589,Mining,Mining +176967,Environment,Environment +176967,Mining,Mining +416766,Fisheries,Fisheries +175849,Fisheries,Fisheries +175850,Fisheries,Fisheries +175851,Fisheries,Fisheries +358782,Agriculture,Agriculture +345138,Internal Trade,Commerce intérieur +345137,International Trade,Commerce international +219777,Agriculture,Agriculture +219772,Agriculture,Agriculture +190629,Consumer Issues,Consumer Issues +172365,Consumer Issues,Consumer Issues +245179,Consumer Issues,Consumer Issues +219777,Consumer Issues,Consumer Issues +219775,Consumer Issues,Consumer Issues +219772,Consumer Issues,Consumer Issues +219770,Consumer Issues,Consumer Issues +209613,Consumer Issues,Consumer Issues +209612,Consumer Issues,Consumer Issues +203792,Consumer Issues,Consumer Issues +196634,Economic Development,Economic Development +196627,Economic Development,Economic Development +245179,Economic Development,Economic Development +219777,Economic Development,Economic Development +219775,Economic Development,Economic Development +219772,Economic Development,Economic Development +219770,Economic Development,Economic Development +209613,Economic Development,Economic Development +209612,Economic Development,Economic Development +196634,Energy,Energy +196627,Energy,Energy +172365,Energy,Energy +245179,Energy,Energy +219772,Energy,Energy +245179,Environment,Environment +219777,Environment,Environment +219775,Environment,Environment +219772,Environment,Environment +219770,Environment,Environment +209613,Environment,Environment +209612,Environment,Environment +203792,Environment,Environment +196634,Environment,Environment +196627,Environment,Environment +190629,Environment,Environment +190629,Health,Health +245179,Health,Health +172365,Health,Health +219777,Health,Health +219775,Health,Health +219772,Health,Health +219770,Health,Health +209613,Health,Health +190629,Municipalities,Municipalities +172365,Municipalities,Municipalities +219777,Municipalities,Municipalities +219775,Municipalities,Municipalities +219772,Municipalities,Municipalities +219770,Municipalities,Municipalities +209613,Municipalities,Municipalities +209612,Municipalities,Municipalities +196634,Municipalities,Municipalities +219778,Agriculture,Agriculture +219773,Agriculture,Agriculture +196628,Consumer Issues,Consumer Issues +190630,Consumer Issues,Consumer Issues +172367,Consumer Issues,Consumer Issues +245180,Consumer Issues,Consumer Issues +219778,Consumer Issues,Consumer Issues +219776,Consumer Issues,Consumer Issues +219773,Consumer Issues,Consumer Issues +219771,Consumer Issues,Consumer Issues +209629,Consumer Issues,Consumer Issues +209628,Consumer Issues,Consumer Issues +203793,Consumer Issues,Consumer Issues +209629,Economic Development,Economic Development +209628,Economic Development,Economic Development +203793,Economic Development,Economic Development +196635,Economic Development,Economic Development +196628,Economic Development,Economic Development +190630,Economic Development,Economic Development +245180,Economic Development,Economic Development +219778,Economic Development,Economic Development +219776,Economic Development,Economic Development +196635,Energy,Energy +196628,Energy,Energy +172367,Energy,Energy +245180,Energy,Energy +219776,Energy,Energy +219771,Energy,Energy +209629,Energy,Energy +209628,Energy,Energy +190630,Environment,Environment +172367,Environment,Environment +245180,Environment,Environment +219778,Environment,Environment +219776,Environment,Environment +219773,Environment,Environment +219771,Environment,Environment +209629,Environment,Environment +209628,Environment,Environment +203793,Environment,Environment +196635,Environment,Environment +190630,Health,Health +172367,Health,Health +245180,Health,Health +219778,Health,Health +219776,Health,Health +219773,Health,Health +219771,Health,Health +209629,Health,Health +209628,Health,Health +190630,Municipalities,Municipalities +172367,Municipalities,Municipalities +219778,Municipalities,Municipalities +219776,Municipalities,Municipalities +219773,Municipalities,Municipalities +219771,Municipalities,Municipalities +209629,Municipalities,Municipalities +209628,Municipalities,Municipalities +196635,Municipalities,Municipalities +196635,Small Business,Small Business +196628,Small Business,Small Business +209629,Small Business,Small Business +196635,Tourism,Tourism +190630,Tourism,Tourism +209629,Tourism,Tourism +375092,Infrastructure,Infrastructure +544776,Infrastructure,Infrastructure +384784,Infrastructure,Infrastructure +375096,Infrastructure,Infrastructure +173391,Education,Education +245788,Education,Education +193434,Education,Education +188851,Education,Education +183004,Education,Education +175380,Education,Education +249229,Financial Institutions,Financial Institutions +197273,Financial Institutions,Financial Institutions +336074,Financial Institutions,Financial Institutions +306491,Financial Institutions,Financial Institutions +276877,Financial Institutions,Financial Institutions +249269,Financial Institutions,Financial Institutions +346378,Government Procurement,Government Procurement +187025,Industry,Industry +187024,Industry,Industry +250300,Consumer Issues,Consumer Issues +251530,Taxation and Finance,Taxation and Finance +237789,Taxation and Finance,Taxation and Finance +205719,Taxation and Finance,Taxation and Finance +205717,Taxation and Finance,Taxation and Finance +175392,Education,Education +335537,Education,Education +173610,Education,Education +173608,Education,Education +226429,Education,Education +342257,Employment and Training,Employment and Training +482904,Employment and Training,Employment and Training +173304,Financial Institutions,Financial Institutions +195298,Infrastructure,Infrastructure +175844,Infrastructure,Infrastructure +226466,Mining,Mining +226463,Mining,Mining +226461,Mining,Mining +226459,Mining,Mining +226458,Mining,Mining +222797,Mining,Mining +222796,Mining,Mining +222793,Mining,Mining +222791,Mining,Mining +222789,Mining,Mining +253170,Mining,Mining +226499,Mining,Mining +226497,Mining,Mining +226496,Mining,Mining +226493,Mining,Mining +226491,Mining,Mining +226488,Mining,Mining +226487,Mining,Mining +226484,Mining,Mining +226481,Mining,Mining +226479,Mining,Mining +226478,Mining,Mining +226475,Mining,Mining +226473,Mining,Mining +226472,Mining,Mining +478983,Labour,Labour +467756,Labour,Labour +374858,Labour,Labour +310208,Labour,Labour +304357,Labour,Labour +277152,Labour,Labour +462856,Labour,Labour +458567,Labour,Labour +454929,Labour,Labour +452101,Labour,Labour +428985,Labour,Labour +541374,Labour,Labour +539521,Labour,Labour +537763,Labour,Labour +534712,Labour,Labour +517047,Labour,Labour +503637,Labour,Labour +490614,Labour,Labour +490612,Labour,Labour +488775,Labour,Labour +217728,Pensions,Pensions +215488,Pensions,Pensions +211794,Pensions,Pensions +207599,Pensions,Pensions +531424,Privacy and Access to Information,Privacy and Access to Information +515660,Privacy and Access to Information,Privacy and Access to Information +428993,Security,Security +174704,Defence,Defence +174304,Defence,Defence +191559,Defence,Defence +191557,Defence,Defence +188105,Defence,Defence +188104,Defence,Defence +183176,Defence,Defence +183175,Defence,Defence +182967,Defence,Defence +182364,Defence,Defence +182184,Defence,Defence +182124,Defence,Defence +181224,Defence,Defence +180421,Defence,Defence +370485,Government Procurement,Government Procurement +370429,Government Procurement,Government Procurement +174704,Government Procurement,Government Procurement +174304,Government Procurement,Government Procurement +191559,Government Procurement,Government Procurement +191557,Government Procurement,Government Procurement +188105,Government Procurement,Government Procurement +188104,Government Procurement,Government Procurement +183176,Government Procurement,Government Procurement +183175,Government Procurement,Government Procurement +182967,Government Procurement,Government Procurement +182364,Government Procurement,Government Procurement +182184,Government Procurement,Government Procurement +182124,Government Procurement,Government Procurement +181224,Government Procurement,Government Procurement +180666,Government Procurement,Government Procurement +180421,Government Procurement,Government Procurement +174705,Government Procurement,Government Procurement +378587,Government Procurement,Government Procurement +373563,Government Procurement,Government Procurement +370560,Government Procurement,Government Procurement +191557,Industry,Industry +188105,Industry,Industry +191557,Infrastructure,Infrastructure +191557,International Trade,International Trade +382974,International Trade,International Trade +172925,International Relations,International Relations +433858,International Relations,International Relations +273232,International Relations,International Relations +173705,Energy,Energy +173704,Energy,Energy +173704,Industry,Industry +381501,Research and Development,Research and Development (R&D) +379723,Research and Development,Research and Development (R&D) +177827,Research and Development,Research and Development (R&D) +172947,Research and Development,Research and Development (R&D) +312940,Research and Development,Research and Development (R&D) +254090,Research and Development,Research and Development (R&D) +215867,Defence,Défense +215847,Defence,Défense +300993,Defence,Défense +300992,Defence,Défense +300990,Defence,Défense +300988,Defence,Défense +300984,Defence,Défense +300980,Defence,Défense +300971,Defence,Défense +289530,Defence,Défense +275660,Defence,Défense +275659,Defence,Défense +275658,Defence,Défense +275657,Defence,Défense +275656,Defence,Défense +275655,Defence,Défense +271610,Defence,Défense +271589,Defence,Défense +271559,Defence,Défense +271256,Defence,Défense +269930,Defence,Défense +263799,Defence,Défense +263797,Defence,Défense +263796,Defence,Défense +263795,Defence,Défense +263794,Defence,Défense +263792,Defence,Défense +262116,Defence,Défense +241523,Defence,Défense +241522,Defence,Défense +241521,Defence,Défense +241520,Defence,Défense +241519,Defence,Défense +241520,Regional Development,Développement régional +241519,Regional Development,Développement régional +300993,Regional Development,Développement régional +300992,Regional Development,Développement régional +300990,Regional Development,Développement régional +300988,Regional Development,Développement régional +300984,Regional Development,Développement régional +300980,Regional Development,Développement régional +300971,Regional Development,Développement régional +289530,Regional Development,Développement régional +275660,Regional Development,Développement régional +275659,Regional Development,Développement régional +275658,Regional Development,Développement régional +275657,Regional Development,Développement régional +275656,Regional Development,Développement régional +275655,Regional Development,Développement régional +271610,Regional Development,Développement régional +271589,Regional Development,Développement régional +271559,Regional Development,Développement régional +271256,Regional Development,Développement régional +269930,Regional Development,Développement régional +263799,Regional Development,Développement régional +263797,Regional Development,Développement régional +263796,Regional Development,Développement régional +263795,Regional Development,Développement régional +263794,Regional Development,Développement régional +263792,Regional Development,Développement régional +262116,Regional Development,Développement régional +241523,Regional Development,Développement régional +241522,Regional Development,Développement régional +269930,Government Procurement,Marchés Publics +263799,Government Procurement,Marchés Publics +263797,Government Procurement,Marchés Publics +263796,Government Procurement,Marchés Publics +263795,Government Procurement,Marchés Publics +263794,Government Procurement,Marchés Publics +263792,Government Procurement,Marchés Publics +262116,Government Procurement,Marchés Publics +241523,Government Procurement,Marchés Publics +241522,Government Procurement,Marchés Publics +241521,Government Procurement,Marchés Publics +241520,Government Procurement,Marchés Publics +241519,Government Procurement,Marchés Publics +300993,Government Procurement,Marchés Publics +300992,Government Procurement,Marchés Publics +300990,Government Procurement,Marchés Publics +300988,Government Procurement,Marchés Publics +300984,Government Procurement,Marchés Publics +300980,Government Procurement,Marchés Publics +300971,Government Procurement,Marchés Publics +289530,Government Procurement,Marchés Publics +275660,Government Procurement,Marchés Publics +275659,Government Procurement,Marchés Publics +275658,Government Procurement,Marchés Publics +275657,Government Procurement,Marchés Publics +275656,Government Procurement,Marchés Publics +275655,Government Procurement,Marchés Publics +271610,Government Procurement,Marchés Publics +271589,Government Procurement,Marchés Publics +271559,Government Procurement,Marchés Publics +210892,Consumer Issues,Consumer Issues +210887,Consumer Issues,Consumer Issues +243509,Consumer Issues,Consumer Issues +230056,Consumer Issues,Consumer Issues +230052,Consumer Issues,Consumer Issues +226178,Consumer Issues,Consumer Issues +504646,Energy,Energy +471762,Energy,Energy +194721,Energy,Energy +194700,Energy,Energy +173187,Energy,Energy +173186,Energy,Energy +504646,Environment,Environment +504458,Environment,Environment +236009,Environment,Environment +210908,Environment,Environment +210899,Environment,Environment +504646,Industry,Industry +471762,Industry,Industry +210927,Industry,Industry +210904,Industry,Industry +210896,Industry,Industry +210893,Industry,Industry +194721,Taxation and Finance,Taxation and Finance +194700,Taxation and Finance,Taxation and Finance +173188,Taxation and Finance,Taxation and Finance +210903,Taxation and Finance,Taxation and Finance +210900,Taxation and Finance,Taxation and Finance +410989,Economic Development,Economic Development +410986,Economic Development,Economic Development +260152,Economic Development,Economic Development +260132,Economic Development,Economic Development +260131,Economic Development,Economic Development +260130,Economic Development,Economic Development +260129,Economic Development,Economic Development +381398,Economic Development,Economic Development +456642,Economic Development,Economic Development +444770,Economic Development,Economic Development +434280,Economic Development,Economic Development +431512,Economic Development,Economic Development +430073,Economic Development,Economic Development +427115,Economic Development,Economic Development +424898,Economic Development,Economic Development +423287,Economic Development,Economic Development +418755,Economic Development,Economic Development +413997,Economic Development,Economic Development +413996,Economic Development,Economic Development +413994,Economic Development,Economic Development +413992,Economic Development,Economic Development +410991,Economic Development,Economic Development +182967,International Relations,International Relations +182184,International Relations,International Relations +191559,International Relations,International Relations +191557,International Relations,International Relations +398450,International Relations,International Relations +382134,International Relations,International Relations +173265,International Relations,International Relations +279871,International Relations,International Relations +230210,International Relations,International Relations +454879,International Relations,International Relations +452483,International Relations,International Relations +403747,International Relations,International Relations +403200,International Relations,International Relations +403194,International Relations,International Relations +403187,International Relations,International Relations +403183,International Relations,International Relations +174645,Economic Development,Economic Development +174485,Economic Development,Economic Development +200589,Economic Development,Economic Development +200588,Economic Development,Economic Development +200587,Economic Development,Economic Development +200586,Economic Development,Economic Development +200587,Financial Institutions,Financial Institutions +200586,Financial Institutions,Financial Institutions +189776,Financial Institutions,Financial Institutions +174645,Financial Institutions,Financial Institutions +174485,Financial Institutions,Financial Institutions +200589,Financial Institutions,Financial Institutions +174485,Industry,Industry +200589,Industry,Industry +200588,Industry,Industry +200587,Industry,Industry +200586,Industry,Industry +189776,Industry,Industry +200587,Research and Development,Research and Development (R&D) +200586,Research and Development,Research and Development (R&D) +189776,Research and Development,Research and Development (R&D) +174645,Research and Development,Research and Development (R&D) +174485,Research and Development,Research and Development (R&D) +200589,Research and Development,Research and Development (R&D) +375478,Agriculture,Agriculture +347787,Agriculture,Agriculture +420340,Agriculture,Agriculture +398023,Agriculture,Agriculture +294349,International Trade,International Trade +292250,International Trade,International Trade +265109,International Trade,International Trade +260912,International Trade,International Trade +317330,International Trade,International Trade +460424,Research and Development,Research and Development (R&D) +460423,Research and Development,Research and Development (R&D) +196547,Research and Development,Research and Development (R&D) +190825,Research and Development,Research and Development (R&D) +317330,Research and Development,Research and Development (R&D) +317309,Research and Development,Research and Development (R&D) +294495,Research and Development,Research and Development (R&D) +294349,Research and Development,Research and Development (R&D) +292250,Research and Development,Research and Development (R&D) +280090,Research and Development,Research and Development (R&D) +265109,Research and Development,Research and Development (R&D) +260912,Research and Development,Research and Development (R&D) +416220,Research and Development,Research and Development (R&D) +416218,Research and Development,Research and Development (R&D) +389149,Research and Development,Research and Development (R&D) +389148,Research and Development,Research and Development (R&D) +389146,Research and Development,Research and Development (R&D) +389145,Research and Development,Research and Development (R&D) +389144,Research and Development,Research and Development (R&D) +389143,Research and Development,Research and Development (R&D) +389139,Research and Development,Research and Development (R&D) +389134,Research and Development,Research and Development (R&D) +389120,Research and Development,Research and Development (R&D) +241969,Energy,Energy +241969,Environment,Environment +173986,Energy,Energy +173985,Energy,Energy +173992,Energy,Energy +173991,Energy,Energy +173990,Energy,Energy +173989,Energy,Energy +173988,Energy,Energy +430758,Housing,Housing +429826,Housing,Housing +446001,Justice and Law Enforcement,Justice and Law Enforcement +446000,Justice and Law Enforcement,Justice and Law Enforcement +276910,Justice and Law Enforcement,Justice and Law Enforcement +276909,Justice and Law Enforcement,Justice and Law Enforcement +185998,Justice and Law Enforcement,Justice and Law Enforcement +185997,Justice and Law Enforcement,Justice and Law Enforcement +482576,Budget,Budget +383716,Budget,Budget +174092,Budget,Budget +372683,Budget,Budget +372590,Budget,Budget +211771,Budget,Budget +211768,Budget,Budget +205209,Budget,Budget +175815,Energy,Energy +331654,Pensions,Pensions +325129,Pensions,Pensions +325128,Pensions,Pensions +320709,Pensions,Pensions +316849,Pensions,Pensions +294089,Pensions,Pensions +261631,Pensions,Pensions +261620,Pensions,Pensions +227223,Pensions,Pensions +211942,Pensions,Pensions +211939,Pensions,Pensions +211937,Pensions,Pensions +188507,Pensions,Pensions +188505,Pensions,Pensions +176745,Pensions,Pensions +375752,Pensions,Pensions +365029,Pensions,Pensions +342091,Pensions,Pensions +342090,Pensions,Pensions +342089,Pensions,Pensions +342088,Pensions,Pensions +231210,Budget,Budget +192352,Security,Security +296823,Agriculture,Agriculture +251689,Agriculture,Agriculture +309742,Agriculture,Agriculture +309741,Agriculture,Agriculture +309739,Agriculture,Agriculture +191392,Pensions,Pensions +191391,Pensions,Pensions +174707,Pensions,Pensions +418676,Transportation,Transportation +413092,Transportation,Transportation +199827,Transportation,Transportation +188894,Transportation,Transportation +188892,Transportation,Transportation +188882,Transportation,Transportation +259574,Transportation,Transportation +312859,Transportation,Transportation +393224,Transportation,Transportation +384477,Transportation,Transportation +382524,Transportation,Transportation +379155,Transportation,Transportation +377166,Transportation,Transportation +374243,Transportation,Transportation +374235,Transportation,Transportation +365150,Transportation,Transportation +362925,Transportation,Transportation +338685,Transportation,Transportation +525532,Transportation,Transportation +418685,Transportation,Transportation +217955,Government Procurement,Government Procurement +212258,Government Procurement,Government Procurement +198647,Government Procurement,Government Procurement +268958,Government Procurement,Government Procurement +268957,Government Procurement,Government Procurement +263960,Government Procurement,Government Procurement +248949,Government Procurement,Government Procurement +241006,Government Procurement,Government Procurement +233474,Government Procurement,Government Procurement +233473,Government Procurement,Government Procurement +223590,Agriculture,Agriculture +212488,Agriculture,Agriculture +245579,Agriculture,Agriculture +241456,Agriculture,Agriculture +184624,Labour,Labour +184604,Labour,Labour +197230,Labour,Labour +340927,International Trade,International Trade +339932,International Trade,International Trade +327598,International Trade,International Trade +323807,International Trade,International Trade +323804,International Trade,International Trade +273516,International Trade,International Trade +266270,International Trade,International Trade +249730,International Trade,International Trade +249630,International Trade,International Trade +227109,International Trade,International Trade +199658,International Trade,International Trade +199657,International Trade,International Trade +188685,International Trade,International Trade +175094,International Trade,International Trade +365425,International Trade,International Trade +365017,International Trade,International Trade +362224,International Trade,International Trade +362222,International Trade,International Trade +175113,International Trade,International Trade +376350,Budget,Budget +376320,Budget,Budget +223065,Budget,Budget +223062,Budget,Budget +223052,Budget,Budget +216928,Budget,Budget +216887,Budget,Budget +211777,Budget,Budget +202743,Budget,Budget +199838,Budget,Budget +199797,Budget,Budget +193050,Budget,Budget +193048,Budget,Budget +189066,Budget,Budget +185308,Budget,Budget +185307,Budget,Budget +185306,Budget,Budget +175161,Budget,Budget +335322,Budget,Budget +333337,Budget,Budget +333335,Budget,Budget +331287,Budget,Budget +331284,Budget,Budget +327237,Budget,Budget +324670,Budget,Budget +324663,Budget,Budget +321876,Budget,Budget +309956,Budget,Budget +291055,Budget,Budget +277356,Budget,Budget +272971,Budget,Budget +272969,Budget,Budget +272956,Budget,Budget +272953,Budget,Budget +272952,Budget,Budget +272949,Budget,Budget +253393,Budget,Budget +253391,Budget,Budget +240594,Budget,Budget +236864,Budget,Budget +230235,Budget,Budget +177324,Energy,Energy +176084,Energy,Energy +175229,Energy,Energy +313051,Energy,Energy +312490,Energy,Energy +298212,Energy,Energy +247210,Energy,Energy +235529,Energy,Energy +234112,Energy,Energy +234111,Energy,Energy +232210,Energy,Energy +196088,Energy,Energy +193492,Energy,Energy +175223,Security,Security +263570,Security,Security +543391,Privacy and Access to Information,Privacy and Access to Information +538517,Privacy and Access to Information,Privacy and Access to Information +509818,Budget,Budget +509310,Budget,Budget +175250,Budget,Budget +212354,Budget,Budget +212353,Budget,Budget +193682,Budget,Budget +504382,Budget,Budget +504378,Budget,Budget +502537,Budget,Budget +502531,Budget,Budget +502528,Budget,Budget +502521,Budget,Budget +502512,Budget,Budget +499599,Budget,Budget +499598,Budget,Budget +499592,Budget,Budget +499582,Budget,Budget +499578,Budget,Budget +499574,Budget,Budget +496407,Budget,Budget +496405,Budget,Budget +496403,Budget,Budget +496400,Budget,Budget +496398,Budget,Budget +493232,Budget,Budget +493230,Budget,Budget +493218,Budget,Budget +490770,Budget,Budget +490765,Budget,Budget +490764,Budget,Budget +490761,Budget,Budget +490760,Budget,Budget +490751,Budget,Budget +490750,Budget,Budget +490749,Budget,Budget +488466,Budget,Budget +480426,Budget,Budget +480422,Budget,Budget +480421,Budget,Budget +480419,Budget,Budget +480418,Budget,Budget +480416,Budget,Budget +480406,Budget,Budget +478387,Budget,Budget +478381,Budget,Budget +475736,Budget,Budget +475729,Budget,Budget +471106,Budget,Budget +471099,Budget,Budget +471076,Budget,Budget +468924,Budget,Budget +468888,Budget,Budget +447631,Budget,Budget +536862,Budget,Budget +529012,Budget,Budget +529010,Budget,Budget +529008,Budget,Budget +529006,Budget,Budget +526510,Budget,Budget +526509,Budget,Budget +526507,Budget,Budget +526505,Budget,Budget +526503,Budget,Budget +526444,Budget,Budget +524085,Budget,Budget +522520,Budget,Budget +519596,Budget,Budget +519592,Budget,Budget +516797,Budget,Budget +516796,Budget,Budget +516794,Budget,Budget +516793,Budget,Budget +516792,Budget,Budget +516791,Budget,Budget +516790,Budget,Budget +516788,Budget,Budget +516787,Budget,Budget +516784,Budget,Budget +516782,Budget,Budget +515327,Budget,Budget +515326,Budget,Budget +515325,Budget,Budget +515324,Budget,Budget +515323,Budget,Budget +515321,Budget,Budget +512729,Budget,Budget +512726,Budget,Budget +510408,Budget,Budget +510407,Budget,Budget +510406,Budget,Budget +510405,Budget,Budget +471620,Health,Health +387592,International Development,International Development +528502,International Development,International Development +263869,International Development,International Development +223092,International Development,International Development +222751,International Development,International Development +216508,International Development,International Development +207368,International Development,International Development +175464,International Development,International Development +347285,International Development,International Development +326318,International Development,International Development +447463,International Development,International Development +419379,International Development,International Development +409738,International Development,International Development +407838,International Development,International Development +398590,International Development,International Development +190684,Intellectual Property,Intellectual Property +370632,Consumer Issues,Consumer Issues +370627,Consumer Issues,Consumer Issues +232689,Consumer Issues,Consumer Issues +196390,Consumer Issues,Consumer Issues +196389,Consumer Issues,Consumer Issues +196384,Consumer Issues,Consumer Issues +355618,Consumer Issues,Consumer Issues +355616,Consumer Issues,Consumer Issues +355614,Consumer Issues,Consumer Issues +355613,Consumer Issues,Consumer Issues +355612,Consumer Issues,Consumer Issues +355610,Consumer Issues,Consumer Issues +336252,Consumer Issues,Consumer Issues +336250,Consumer Issues,Consumer Issues +329813,Consumer Issues,Consumer Issues +329812,Consumer Issues,Consumer Issues +322139,Consumer Issues,Consumer Issues +322138,Consumer Issues,Consumer Issues +312611,Consumer Issues,Consumer Issues +312610,Consumer Issues,Consumer Issues +251349,Consumer Issues,Consumer Issues +232691,Consumer Issues,Consumer Issues +232690,Consumer Issues,Consumer Issues +419216,Consumer Issues,Consumer Issues +419213,Consumer Issues,Consumer Issues +417386,Consumer Issues,Consumer Issues +417382,Consumer Issues,Consumer Issues +414604,Consumer Issues,Consumer Issues +414603,Consumer Issues,Consumer Issues +414602,Consumer Issues,Consumer Issues +414601,Consumer Issues,Consumer Issues +414600,Consumer Issues,Consumer Issues +414599,Consumer Issues,Consumer Issues +414598,Consumer Issues,Consumer Issues +414597,Consumer Issues,Consumer Issues +414589,Consumer Issues,Consumer Issues +414587,Consumer Issues,Consumer Issues +404317,Consumer Issues,Consumer Issues +382924,Consumer Issues,Consumer Issues +382242,Consumer Issues,Consumer Issues +381265,Consumer Issues,Consumer Issues +381264,Consumer Issues,Consumer Issues +380831,Consumer Issues,Consumer Issues +380830,Consumer Issues,Consumer Issues +380827,Consumer Issues,Consumer Issues +371922,Consumer Issues,Consumer Issues +181284,Consumer Issues,Consumer Issues +200787,Energy,Energy +200695,Energy,Energy +202510,Environment,Environment +202508,Environment,Environment +206589,Environment,Environment +206588,Environment,Environment +206587,Environment,Environment +202810,Environment,Environment +202790,Environment,Environment +202788,Environment,Environment +202786,Environment,Environment +202784,Environment,Environment +206588,Mining,Mining +206587,Mining,Mining +202810,Mining,Mining +202790,Mining,Mining +202788,Mining,Mining +202786,Mining,Mining +202784,Mining,Mining +202780,Mining,Mining +202510,Mining,Mining +202508,Mining,Mining +206909,Mining,Mining +206908,Mining,Mining +206907,Mining,Mining +176966,Environment,Environment +176965,Environment,Environment +176968,Environment,Environment +176966,Mining,Mining +176965,Mining,Mining +207436,Mining,Mining +176968,Mining,Mining +416752,Fisheries,Fisheries +517330,Fisheries,Fisheries +200338,Fisheries,Fisheries +200334,Fisheries,Fisheries +200331,Fisheries,Fisheries +200328,Fisheries,Fisheries +188597,Fisheries,Fisheries +186184,Fisheries,Fisheries +200375,Fisheries,Fisheries +200366,Fisheries,Fisheries +200354,Fisheries,Fisheries +200350,Fisheries,Fisheries +200346,Fisheries,Fisheries +200342,Fisheries,Fisheries +443631,Fisheries,Fisheries +442237,Fisheries,Fisheries +442183,Fisheries,Fisheries +442178,Fisheries,Fisheries +439078,Fisheries,Fisheries +435278,Fisheries,Fisheries +435277,Fisheries,Fisheries +430721,Fisheries,Fisheries +430718,Fisheries,Fisheries +345138,Agriculture,Agriculture +345137,Agriculture,Agriculture +259797,Agriculture,Agriculture +259796,Agriculture,Agriculture +375496,Agriculture,Agriculture +370301,Agriculture,Agriculture +345137,Internal Trade,Commerce intérieur +375496,Internal Trade,Commerce intérieur +370301,Internal Trade,Commerce intérieur +358782,Internal Trade,Commerce intérieur +259797,International Trade,Commerce international +259796,International Trade,Commerce international +375496,International Trade,Commerce international +370301,International Trade,Commerce international +358782,International Trade,Commerce international +345138,International Trade,Commerce international +234249,Agriculture,Agriculture +234249,International Trade,International Trade +543777,Economic Development,Economic Development +526804,Economic Development,Economic Development +358790,Economic Development,Economic Development +350691,Economic Development,Economic Development +350689,Economic Development,Economic Development +350677,Economic Development,Economic Development +472205,Economic Development,Economic Development +472204,Economic Development,Economic Development +472203,Economic Development,Economic Development +472202,Economic Development,Economic Development +472201,Economic Development,Economic Development +472200,Economic Development,Economic Development +463075,Economic Development,Economic Development +460486,Economic Development,Economic Development +459747,Economic Development,Economic Development +459741,Economic Development,Economic Development +459727,Economic Development,Economic Development +456920,Economic Development,Economic Development +456457,Economic Development,Economic Development +454783,Economic Development,Economic Development +454781,Economic Development,Economic Development +452647,Economic Development,Economic Development +452643,Economic Development,Economic Development +445248,Economic Development,Economic Development +445245,Economic Development,Economic Development +544085,Economic Development,Economic Development +544075,Economic Development,Economic Development +312777,Budget,Budget +369044,Budget,Budget +398682,Health,Health +197410,Health,Health +422351,Health,Health +422349,Health,Health +398688,Health,Health +398687,Health,Health +398685,Health,Health +398684,Health,Health +398683,Justice and Law Enforcement,Justice and Law Enforcement +398682,Justice and Law Enforcement,Justice and Law Enforcement +369045,Justice and Law Enforcement,Justice and Law Enforcement +369044,Justice and Law Enforcement,Justice and Law Enforcement +315031,Justice and Law Enforcement,Justice and Law Enforcement +312777,Justice and Law Enforcement,Justice and Law Enforcement +241091,Justice and Law Enforcement,Justice and Law Enforcement +197410,Justice and Law Enforcement,Justice and Law Enforcement +436597,Justice and Law Enforcement,Justice and Law Enforcement +436596,Justice and Law Enforcement,Justice and Law Enforcement +422351,Justice and Law Enforcement,Justice and Law Enforcement +422349,Justice and Law Enforcement,Justice and Law Enforcement +408584,Justice and Law Enforcement,Justice and Law Enforcement +398688,Justice and Law Enforcement,Justice and Law Enforcement +398687,Justice and Law Enforcement,Justice and Law Enforcement +398685,Justice and Law Enforcement,Justice and Law Enforcement +194739,Climate,Climate +194737,Climate,Climate +227427,Climate,Climate +194743,Climate,Climate +186864,Defence,Defence +483935,Economic Development,Economic Development +465842,Economic Development,Economic Development +268395,Economic Development,Economic Development +200395,Economic Development,Economic Development +199917,Economic Development,Economic Development +498502,Economic Development,Economic Development +498496,Economic Development,Economic Development +483943,Economic Development,Economic Development +492916,Energy,Energy +245186,Energy,Energy +245184,Energy,Energy +245182,Energy,Energy +241750,Energy,Energy +233669,Energy,Energy +219127,Energy,Energy +219108,Energy,Energy +219107,Energy,Energy +212409,Energy,Energy +212393,Energy,Energy +207251,Energy,Energy +200395,Energy,Energy +200391,Energy,Energy +200384,Energy,Energy +199917,Energy,Energy +199915,Energy,Energy +199912,Energy,Energy +180464,Energy,Energy +180461,Energy,Energy +375850,Energy,Energy +375484,Energy,Energy +277485,Energy,Energy +277482,Energy,Energy +268395,Energy,Energy +264631,Energy,Energy +251750,Energy,Energy +251749,Energy,Energy +251673,Energy,Energy +251672,Energy,Energy +251671,Energy,Energy +251670,Energy,Energy +251669,Energy,Energy +245195,Energy,Energy +245193,Energy,Energy +245189,Energy,Energy +245187,Energy,Energy +488816,Energy,Energy +483943,Energy,Energy +483939,Energy,Energy +483935,Energy,Energy +465847,Energy,Energy +452352,Energy,Energy +452348,Energy,Energy +443359,Energy,Energy +429608,Energy,Energy +429607,Energy,Energy +412520,Energy,Energy +406235,Energy,Energy +406233,Energy,Energy +405001,Energy,Energy +405000,Energy,Energy +544068,Energy,Energy +544065,Energy,Energy +517232,Energy,Energy +509593,Energy,Energy +506298,Energy,Energy +503685,Energy,Energy +498502,Energy,Energy +498496,Energy,Energy +452348,Environment,Environment +449058,Environment,Environment +200395,Environment,Environment +200391,Environment,Environment +200384,Environment,Environment +199917,Environment,Environment +199915,Environment,Environment +199912,Environment,Environment +180461,Environment,Environment +443359,Environment,Environment +429609,Environment,Environment +412520,Environment,Environment +405005,Environment,Environment +405001,Environment,Environment +375849,Environment,Environment +544065,Environment,Environment +517232,Environment,Environment +509593,Environment,Environment +506298,Environment,Environment +503685,Environment,Environment +498502,Environment,Environment +498496,Environment,Environment +488811,Environment,Environment +486984,Environment,Environment +483943,Environment,Environment +483939,Environment,Environment +458771,Environment,Environment +181265,Energy,Energy +181264,Energy,Energy +181305,Energy,Energy +181304,Energy,Energy +181267,Energy,Energy +181265,Regional Development,Regional Development +181264,Regional Development,Regional Development +181305,Regional Development,Regional Development +181304,Regional Development,Regional Development +181267,Regional Development,Regional Development +181266,Taxation and Finance,Taxation and Finance +181264,Taxation and Finance,Taxation and Finance +181305,Taxation and Finance,Taxation and Finance +181304,Taxation and Finance,Taxation and Finance +181265,Economic Development,Economic Development +181264,Economic Development,Economic Development +181305,Economic Development,Economic Development +181304,Economic Development,Economic Development +181267,Economic Development,Economic Development +181464,Budget,Budget +224967,Budget,Budget +189708,Transportation,Transportation +189707,Transportation,Transportation +194751,Transportation,Transportation +194749,Transportation,Transportation +194746,Transportation,Transportation +194745,Transportation,Transportation +189727,Transportation,Transportation +189726,Transportation,Transportation +189724,Transportation,Transportation +189710,Transportation,Transportation +489878,Economic Development,Economic Development +489874,Economic Development,Economic Development +196426,Economic Development,Economic Development +182264,Economic Development,Economic Development +474657,Economic Development,Economic Development +474655,Economic Development,Economic Development +469865,Economic Development,Economic Development +469863,Economic Development,Economic Development +469847,Economic Development,Economic Development +466079,Economic Development,Economic Development +466078,Economic Development,Economic Development +465100,Economic Development,Economic Development +462422,Economic Development,Economic Development +462421,Economic Development,Economic Development +462418,Economic Development,Economic Development +456828,Economic Development,Economic Development +454298,Economic Development,Economic Development +434724,Economic Development,Economic Development +434722,Economic Development,Economic Development +433985,Research and Development,Research and Development (R&D) +433971,Research and Development,Research and Development (R&D) +196426,Research and Development,Research and Development (R&D) +182264,Research and Development,Research and Development (R&D) +494733,Research and Development,Research and Development (R&D) +492657,Research and Development,Research and Development (R&D) +469865,Research and Development,Research and Development (R&D) +469863,Research and Development,Research and Development (R&D) +469847,Research and Development,Research and Development (R&D) +465100,Research and Development,Research and Development (R&D) +462421,Research and Development,Research and Development (R&D) +462418,Research and Development,Research and Development (R&D) +434724,Research and Development,Research and Development (R&D) +196426,Security,Security +494733,Security,Security +434725,Security,Security +434724,Security,Security +434720,Security,Security +434719,Security,Security +514302,Tourism,Tourism +509434,Tourism,Tourism +212148,Tourism,Tourism +378103,Tourism,Tourism +378101,Tourism,Tourism +378100,Tourism,Tourism +378099,Tourism,Tourism +355282,Tourism,Tourism +355281,Tourism,Tourism +355280,Tourism,Tourism +351692,Tourism,Tourism +328749,Tourism,Tourism +414892,Tourism,Tourism +414890,Tourism,Tourism +413946,Tourism,Tourism +413941,Tourism,Tourism +401692,Tourism,Tourism +401690,Tourism,Tourism +398127,Tourism,Tourism +392968,Tourism,Tourism +392965,Tourism,Tourism +392964,Tourism,Tourism +392963,Tourism,Tourism +392962,Tourism,Tourism +392961,Tourism,Tourism +391943,Tourism,Tourism +380848,Tourism,Tourism +485901,Tourism,Tourism +471643,Tourism,Tourism +463441,Tourism,Tourism +463440,Tourism,Tourism +463439,Tourism,Tourism +463438,Tourism,Tourism +460108,Tourism,Tourism +444674,Tourism,Tourism +444673,Tourism,Tourism +444672,Tourism,Tourism +444671,Tourism,Tourism +444669,Tourism,Tourism +435707,Tourism,Tourism +434016,Tourism,Tourism +434015,Tourism,Tourism +432787,Tourism,Tourism +430209,Tourism,Tourism +427488,Tourism,Tourism +427486,Tourism,Tourism +427485,Tourism,Tourism +427483,Tourism,Tourism +422628,Tourism,Tourism +421758,Tourism,Tourism +533734,Tourism,Tourism +533733,Tourism,Tourism +533729,Tourism,Tourism +527270,Tourism,Tourism +526860,Tourism,Tourism +516511,Tourism,Tourism +368043,Taxation and Finance,Impôts et finances +469519,Taxation and Finance,Impôts et finances +359103,Taxation and Finance,Impôts et finances +359102,Taxation and Finance,Impôts et finances +353394,Taxation and Finance,Impôts et finances +309795,Taxation and Finance,Impôts et finances +412615,Taxation and Finance,Impôts et finances +378258,Taxation and Finance,Impôts et finances +378239,Taxation and Finance,Impôts et finances +355510,Economic Development,Economic Development +323651,Economic Development,Economic Development +369782,Economic Development,Economic Development +314731,Industry,Industry +453202,Industry,Industry +404468,Industry,Industry +369782,Industry,Industry +363842,Industry,Industry +355510,Industry,Industry +337341,Industry,Industry +324008,Industry,Industry +323651,Industry,Industry +189709,Agriculture,Agriculture +189708,Agriculture,Agriculture +227468,Agriculture,Agriculture +227467,Agriculture,Agriculture +227447,Agriculture,Agriculture +194751,Agriculture,Agriculture +194749,Agriculture,Agriculture +194746,Agriculture,Agriculture +194745,Agriculture,Agriculture +189727,Agriculture,Agriculture +189726,Agriculture,Agriculture +189724,Agriculture,Agriculture +487850,Health,Health +487848,Health,Health +194986,Health,Health +362181,Health,Health +353399,Health,Health +329983,Health,Health +277378,Health,Health +277376,Health,Health +454985,Health,Health +451401,Health,Health +447795,Health,Health +447422,Health,Health +447417,Health,Health +441477,Health,Health +441476,Health,Health +441475,Health,Health +438915,Health,Health +433537,Health,Health +433527,Health,Health +433521,Health,Health +431950,Health,Health +431949,Health,Health +431948,Health,Health +431947,Health,Health +431929,Health,Health +428263,Health,Health +544127,Health,Health +511264,Health,Health +431929,Industry,Industry +353399,Industry,Industry +433537,Industry,Industry +433527,Industry,Industry +433521,Industry,Industry +431950,Industry,Industry +431949,Industry,Industry +431948,Industry,Industry +277378,International Trade,International Trade +353399,International Trade,International Trade +316060,Economic Development,Economic Development +396140,Economic Development,Economic Development +374220,Economic Development,Economic Development +372551,Economic Development,Economic Development +369565,Economic Development,Economic Development +359865,Economic Development,Economic Development +353751,Economic Development,Economic Development +353748,Economic Development,Economic Development +343974,Economic Development,Economic Development +338606,Economic Development,Economic Development +335586,Economic Development,Economic Development +333312,Economic Development,Economic Development +333311,Economic Development,Economic Development +319144,Economic Development,Economic Development +319132,Economic Development,Economic Development +338610,Government Procurement,Government Procurement +374220,International Trade,International Trade +372573,International Trade,International Trade +329675,International Trade,International Trade +400731,International Trade,International Trade +399188,Research and Development,Research and Development (R&D) +391173,Research and Development,Research and Development (R&D) +381821,Research and Development,Research and Development (R&D) +380717,Research and Development,Research and Development (R&D) +376908,Research and Development,Research and Development (R&D) +374226,Research and Development,Research and Development (R&D) +374225,Research and Development,Research and Development (R&D) +374214,Research and Development,Research and Development (R&D) +372543,Research and Development,Research and Development (R&D) +372533,Research and Development,Research and Development (R&D) +369566,Research and Development,Research and Development (R&D) +359864,Research and Development,Research and Development (R&D) +359863,Research and Development,Research and Development (R&D) +358173,Research and Development,Research and Development (R&D) +355726,Research and Development,Research and Development (R&D) +355725,Research and Development,Research and Development (R&D) +353754,Research and Development,Research and Development (R&D) +348883,Research and Development,Research and Development (R&D) +341653,Research and Development,Research and Development (R&D) +341650,Research and Development,Research and Development (R&D) +338602,Research and Development,Research and Development (R&D) +329679,Research and Development,Research and Development (R&D) +324680,Research and Development,Research and Development (R&D) +321031,Research and Development,Research and Development (R&D) +321030,Research and Development,Research and Development (R&D) +319145,Research and Development,Research and Development (R&D) +316067,Research and Development,Research and Development (R&D) +316060,Research and Development,Research and Development (R&D) +316057,Research and Development,Research and Development (R&D) +316060,Taxation and Finance,Taxation and Finance +374229,Transportation,Transportation +372587,Transportation,Transportation +366459,Transportation,Transportation +362380,Transportation,Transportation +395665,Taxation and Finance,Taxation and Finance +229590,Taxation and Finance,Taxation and Finance +197947,Taxation and Finance,Taxation and Finance +197967,Taxation and Finance,Taxation and Finance +177067,Taxation and Finance,Taxation and Finance +197987,Taxation and Finance,Taxation and Finance +177068,Taxation and Finance,Taxation and Finance +503850,Taxation and Finance,Taxation and Finance +392958,Environment,Environment +371774,Environment,Environment +361566,Environment,Environment +337590,Environment,Environment +312409,Environment,Environment +261471,Environment,Environment +261470,Environment,Environment +261469,Environment,Environment +261455,Environment,Environment +253978,Budget,Budget +244192,Budget,Budget +222564,Budget,Budget +222552,Budget,Budget +222549,Budget,Budget +197137,Budget,Budget +197135,Budget,Budget +192571,Budget,Budget +192424,Budget,Budget +192421,Budget,Budget +197135,Transportation,Transportation +197134,Transportation,Transportation +351037,Transportation,Transportation +343559,Transportation,Transportation +329759,Transportation,Transportation +327544,Transportation,Transportation +327542,Transportation,Transportation +315886,Transportation,Transportation +315885,Transportation,Transportation +253978,Transportation,Transportation +253976,Transportation,Transportation +318898,Employment and Training,Employment and Training +436970,International Trade,International Trade +432439,International Trade,International Trade +356783,International Trade,International Trade +356782,International Trade,International Trade +356302,International Trade,International Trade +254869,International Trade,International Trade +243511,International Trade,International Trade +381791,International Trade,International Trade +380261,International Trade,International Trade +380260,International Trade,International Trade +380259,International Trade,International Trade +380255,International Trade,International Trade +380254,International Trade,International Trade +380253,International Trade,International Trade +327028,International Development,International Development +327024,International Development,International Development +228485,International Development,International Development +228484,International Development,International Development +228483,International Development,International Development +228482,International Development,International Development +228481,International Development,International Development +228480,International Development,International Development +228479,International Development,International Development +228478,International Development,International Development +228477,International Development,International Development +228476,International Development,International Development +228475,International Development,International Development +228474,International Development,International Development +228473,International Development,International Development +228472,International Development,International Development +228471,International Development,International Development +228470,International Development,International Development +225289,International Development,International Development +225288,International Development,International Development +225287,International Development,International Development +200988,International Development,International Development +200987,International Development,International Development +190567,International Development,International Development +190565,International Development,International Development +190544,International Development,International Development +183504,International Development,International Development +327022,International Development,International Development +326937,International Development,International Development +326936,International Development,International Development +326935,International Development,International Development +326932,International Development,International Development +326931,International Development,International Development +326930,International Development,International Development +325495,International Development,International Development +325494,International Development,International Development +325493,International Development,International Development +323458,International Development,International Development +323457,International Development,International Development +323455,International Development,International Development +323454,International Development,International Development +323453,International Development,International Development +323452,International Development,International Development +323451,International Development,International Development +323450,International Development,International Development +323449,International Development,International Development +317149,International Development,International Development +317119,International Development,International Development +317118,International Development,International Development +317117,International Development,International Development +317116,International Development,International Development +317115,International Development,International Development +317114,International Development,International Development +317113,International Development,International Development +317112,International Development,International Development +317111,International Development,International Development +317110,International Development,International Development +317109,International Development,International Development +283431,International Development,International Development +279011,International Development,International Development +279010,International Development,International Development +279009,International Development,International Development +279008,International Development,International Development +279007,International Development,International Development +279006,International Development,International Development +279005,International Development,International Development +279004,International Development,International Development +279003,International Development,International Development +279002,International Development,International Development +279001,International Development,International Development +279000,International Development,International Development +278999,International Development,International Development +278998,International Development,International Development +278997,International Development,International Development +278996,International Development,International Development +278995,International Development,International Development +278994,International Development,International Development +278993,International Development,International Development +278992,International Development,International Development +278991,International Development,International Development +278990,International Development,International Development +278989,International Development,International Development +278976,International Development,International Development +278975,International Development,International Development +278974,International Development,International Development +278973,International Development,International Development +278972,International Development,International Development +278971,International Development,International Development +278970,International Development,International Development +278969,International Development,International Development +278968,International Development,International Development +278963,International Development,International Development +278510,International Development,International Development +278029,International Development,International Development +276114,International Development,International Development +271409,International Development,International Development +257730,International Development,International Development +256269,International Development,International Development +245969,International Development,International Development +228495,International Development,International Development +228494,International Development,International Development +228493,International Development,International Development +228492,International Development,International Development +228491,International Development,International Development +228490,International Development,International Development +228489,International Development,International Development +228488,International Development,International Development +228487,International Development,International Development +228486,International Development,International Development +488041,International Development,International Development +488039,International Development,International Development +488037,International Development,International Development +488036,International Development,International Development +488034,International Development,International Development +488032,International Development,International Development +488031,International Development,International Development +488030,International Development,International Development +465391,International Development,International Development +461372,International Development,International Development +446093,International Development,International Development +430058,International Development,International Development +426090,International Development,International Development +426073,International Development,International Development +426071,International Development,International Development +426069,International Development,International Development +426067,International Development,International Development +420464,International Development,International Development +418560,International Development,International Development +416663,International Development,International Development +414706,International Development,International Development +414325,International Development,International Development +411842,International Development,International Development +408160,International Development,International Development +404015,International Development,International Development +404014,International Development,International Development +404010,International Development,International Development +403985,International Development,International Development +403962,International Development,International Development +403595,International Development,International Development +403574,International Development,International Development +403549,International Development,International Development +392833,International Development,International Development +392831,International Development,International Development +392830,International Development,International Development +388681,International Development,International Development +388680,International Development,International Development +388679,International Development,International Development +388678,International Development,International Development +388677,International Development,International Development +388676,International Development,International Development +388675,International Development,International Development +388674,International Development,International Development +388673,International Development,International Development +383320,International Development,International Development +379248,International Development,International Development +379217,International Development,International Development +379205,International Development,International Development +379201,International Development,International Development +379199,International Development,International Development +379197,International Development,International Development +379196,International Development,International Development +379190,International Development,International Development +379188,International Development,International Development +379182,International Development,International Development +379168,International Development,International Development +379165,International Development,International Development +377760,International Development,International Development +376752,International Development,International Development +373168,International Development,International Development +370902,International Development,International Development +370900,International Development,International Development +370898,International Development,International Development +368533,International Development,International Development +368530,International Development,International Development +365095,International Development,International Development +356690,International Development,International Development +356689,International Development,International Development +356688,International Development,International Development +356687,International Development,International Development +353594,International Development,International Development +353593,International Development,International Development +353590,International Development,International Development +353586,International Development,International Development +353583,International Development,International Development +353581,International Development,International Development +353575,International Development,International Development +353571,International Development,International Development +353567,International Development,International Development +353564,International Development,International Development +351690,International Development,International Development +351025,International Development,International Development +351021,International Development,International Development +348672,International Development,International Development +347958,International Development,International Development +344721,International Development,International Development +344719,International Development,International Development +342986,International Development,International Development +339971,International Development,International Development +339970,International Development,International Development +339969,International Development,International Development +339967,International Development,International Development +339966,International Development,International Development +339965,International Development,International Development +334341,International Development,International Development +334340,International Development,International Development +334339,International Development,International Development +334338,International Development,International Development +334337,International Development,International Development +334336,International Development,International Development +334335,International Development,International Development +334334,International Development,International Development +334333,International Development,International Development +327075,International Development,International Development +327074,International Development,International Development +327073,International Development,International Development +327072,International Development,International Development +327071,International Development,International Development +327070,International Development,International Development +327051,International Development,International Development +327050,International Development,International Development +327049,International Development,International Development +327048,International Development,International Development +327047,International Development,International Development +327045,International Development,International Development +327043,International Development,International Development +327042,International Development,International Development +327040,International Development,International Development +327037,International Development,International Development +327036,International Development,International Development +327035,International Development,International Development +488036,International Relations,International Relations +488034,International Relations,International Relations +278989,International Relations,International Relations +278976,International Relations,International Relations +278975,International Relations,International Relations +278974,International Relations,International Relations +278973,International Relations,International Relations +278972,International Relations,International Relations +278971,International Relations,International Relations +278970,International Relations,International Relations +278969,International Relations,International Relations +278968,International Relations,International Relations +278963,International Relations,International Relations +278510,International Relations,International Relations +278029,International Relations,International Relations +271410,International Relations,International Relations +279011,International Relations,International Relations +279010,International Relations,International Relations +279009,International Relations,International Relations +279008,International Relations,International Relations +279007,International Relations,International Relations +279006,International Relations,International Relations +279005,International Relations,International Relations +279004,International Relations,International Relations +279003,International Relations,International Relations +279002,International Relations,International Relations +279001,International Relations,International Relations +279000,International Relations,International Relations +278999,International Relations,International Relations +278998,International Relations,International Relations +278997,International Relations,International Relations +278996,International Relations,International Relations +278995,International Relations,International Relations +278994,International Relations,International Relations +278993,International Relations,International Relations +278992,International Relations,International Relations +278991,International Relations,International Relations +278990,International Relations,International Relations +411842,International Relations,International Relations +488041,International Relations,International Relations +488039,International Relations,International Relations +183069,Mining,Mining +183068,Mining,Mining +183065,Mining,Mining +324665,Economic Development,Economic Development +543578,Economic Development,Economic Development +277360,Economic Development,Economic Development +447390,Economic Development,Economic Development +335322,Economic Development,Economic Development +324684,Economic Development,Economic Development +509999,Pensions,Pensions +244819,Pensions,Pensions +244811,Pensions,Pensions +244805,Pensions,Pensions +240613,Pensions,Pensions +240610,Pensions,Pensions +240609,Pensions,Pensions +324670,Pensions,Pensions +324668,Pensions,Pensions +309961,Pensions,Pensions +296134,Pensions,Pensions +376320,Pensions,Pensions +366528,Pensions,Pensions +541249,Pensions,Pensions +350318,Transportation,Transportation +350315,Transportation,Transportation +455614,Climate,Climate +453170,Climate,Climate +249969,Climate,Climate +245711,Climate,Climate +237129,Climate,Climate +233430,Climate,Climate +227155,Climate,Climate +227154,Climate,Climate +227153,Climate,Climate +223460,Climate,Climate +223457,Climate,Climate +218168,Climate,Climate +218167,Climate,Climate +200621,Climate,Climate +200620,Climate,Climate +200618,Climate,Climate +200617,Climate,Climate +200616,Climate,Climate +200615,Climate,Climate +200614,Climate,Climate +200613,Climate,Climate +200612,Climate,Climate +200611,Climate,Climate +200610,Climate,Climate +200609,Climate,Climate +200608,Climate,Climate +189683,Climate,Climate +189682,Climate,Climate +189681,Climate,Climate +189679,Climate,Climate +189678,Climate,Climate +189677,Climate,Climate +180423,Climate,Climate +365023,Climate,Climate +365022,Climate,Climate +365021,Climate,Climate +362227,Climate,Climate +362226,Climate,Climate +359345,Climate,Climate +355909,Climate,Climate +331201,Climate,Climate +324082,Climate,Climate +321943,Climate,Climate +319130,Climate,Climate +319126,Climate,Climate +315870,Climate,Climate +315869,Climate,Climate +312903,Climate,Climate +310160,Climate,Climate +310159,Climate,Climate +310158,Climate,Climate +310157,Climate,Climate +310156,Climate,Climate +310155,Climate,Climate +310154,Climate,Climate +310153,Climate,Climate +310152,Climate,Climate +310151,Climate,Climate +310150,Climate,Climate +303973,Climate,Climate +303971,Climate,Climate +303970,Climate,Climate +296754,Climate,Climate +290349,Climate,Climate +284149,Climate,Climate +280948,Climate,Climate +280946,Climate,Climate +275914,Climate,Climate +273210,Climate,Climate +273173,Climate,Climate +273169,Climate,Climate +270389,Climate,Climate +268992,Climate,Climate +268990,Climate,Climate +263926,Climate,Climate +263924,Climate,Climate +263921,Climate,Climate +259269,Climate,Climate +254111,Climate,Climate +254110,Climate,Climate +254109,Climate,Climate +250038,Climate,Climate +250033,Climate,Climate +250031,Climate,Climate +250029,Climate,Climate +250028,Climate,Climate +250027,Climate,Climate +250025,Climate,Climate +249989,Climate,Climate +249975,Climate,Climate +249974,Climate,Climate +249973,Climate,Climate +249972,Climate,Climate +249971,Climate,Climate +249970,Climate,Climate +450142,Climate,Climate +445850,Climate,Climate +444118,Climate,Climate +441208,Climate,Climate +441207,Climate,Climate +441206,Climate,Climate +441205,Climate,Climate +434011,Climate,Climate +434010,Climate,Climate +434009,Climate,Climate +432580,Climate,Climate +432579,Climate,Climate +422467,Climate,Climate +422466,Climate,Climate +422465,Climate,Climate +420430,Climate,Climate +416838,Climate,Climate +416834,Climate,Climate +410429,Climate,Climate +410383,Climate,Climate +405267,Climate,Climate +404016,Climate,Climate +401054,Climate,Climate +401053,Climate,Climate +401051,Climate,Climate +401050,Climate,Climate +401049,Climate,Climate +396278,Climate,Climate +394502,Climate,Climate +392408,Climate,Climate +392407,Climate,Climate +392405,Climate,Climate +391841,Climate,Climate +391840,Climate,Climate +391839,Climate,Climate +391818,Climate,Climate +385166,Climate,Climate +385161,Climate,Climate +385158,Climate,Climate +385155,Climate,Climate +385149,Climate,Climate +383846,Climate,Climate +383844,Climate,Climate +383763,Climate,Climate +380474,Climate,Climate +380472,Climate,Climate +380471,Climate,Climate +380470,Climate,Climate +380469,Climate,Climate +378548,Climate,Climate +378546,Climate,Climate +376770,Climate,Climate +376766,Climate,Climate +376763,Climate,Climate +376722,Climate,Climate +376700,Climate,Climate +373643,Climate,Climate +373642,Climate,Climate +373641,Climate,Climate +371840,Climate,Climate +371838,Climate,Climate +371836,Climate,Climate +371831,Climate,Climate +368886,Climate,Climate +366760,Climate,Climate +366755,Climate,Climate +366753,Climate,Climate +365024,Climate,Climate +544084,Climate,Climate +544081,Climate,Climate +544060,Climate,Climate +542101,Climate,Climate +542100,Climate,Climate +542096,Climate,Climate +542095,Climate,Climate +542094,Climate,Climate +542092,Climate,Climate +538439,Climate,Climate +538438,Climate,Climate +538435,Climate,Climate +538434,Climate,Climate +538431,Climate,Climate +538430,Climate,Climate +538429,Climate,Climate +535706,Climate,Climate +535702,Climate,Climate +535700,Climate,Climate +535699,Climate,Climate +535698,Climate,Climate +535697,Climate,Climate +535690,Climate,Climate +535688,Climate,Climate +532621,Climate,Climate +523198,Climate,Climate +519864,Climate,Climate +517935,Climate,Climate +517931,Climate,Climate +517922,Climate,Climate +515818,Climate,Climate +515816,Climate,Climate +515814,Climate,Climate +513470,Climate,Climate +513469,Climate,Climate +511263,Climate,Climate +511258,Climate,Climate +511239,Climate,Climate +511233,Climate,Climate +502329,Climate,Climate +502325,Climate,Climate +499908,Climate,Climate +499472,Climate,Climate +499464,Climate,Climate +491412,Climate,Climate +487644,Climate,Climate +487643,Climate,Climate +485404,Climate,Climate +485402,Climate,Climate +485400,Climate,Climate +485399,Climate,Climate +480427,Climate,Climate +480420,Climate,Climate +480417,Climate,Climate +480415,Climate,Climate +480414,Climate,Climate +480413,Climate,Climate +480412,Climate,Climate +478460,Climate,Climate +478459,Climate,Climate +478458,Climate,Climate +478457,Climate,Climate +478445,Climate,Climate +476024,Climate,Climate +476023,Climate,Climate +470726,Climate,Climate +470720,Climate,Climate +470712,Climate,Climate +465202,Climate,Climate +465201,Climate,Climate +465200,Climate,Climate +465198,Climate,Climate +465197,Climate,Climate +465196,Climate,Climate +458813,Climate,Climate +458812,Climate,Climate +455628,Climate,Climate +405517,Transportation,Transportation +405512,Transportation,Transportation +243729,Transportation,Transportation +380694,Transportation,Transportation +380691,Transportation,Transportation +380688,Transportation,Transportation +370208,Transportation,Transportation +370207,Transportation,Transportation +370206,Transportation,Transportation +370205,Transportation,Transportation +455049,Transportation,Transportation +455038,Transportation,Transportation +455034,Transportation,Transportation +449105,Transportation,Transportation +444721,Transportation,Transportation +439813,Transportation,Transportation +439812,Transportation,Transportation +439811,Transportation,Transportation +439809,Transportation,Transportation +434087,Transportation,Transportation +434086,Transportation,Transportation +427010,Transportation,Transportation +427009,Transportation,Transportation +427007,Transportation,Transportation +427005,Transportation,Transportation +427004,Transportation,Transportation +424825,Transportation,Transportation +420521,Transportation,Transportation +411650,Transportation,Transportation +411645,Transportation,Transportation +408526,Transportation,Transportation +405534,Transportation,Transportation +405531,Transportation,Transportation +405529,Transportation,Transportation +347643,Agriculture,Agriculture +317550,Agriculture,Agriculture +206023,Agriculture,Agriculture +206021,Agriculture,Agriculture +316672,Agriculture,Agriculture +258146,Agriculture,Agriculture +258145,Agriculture,Agriculture +258144,Agriculture,Agriculture +258143,Agriculture,Agriculture +258144,Consumer Issues,Consumer Issues +258143,Consumer Issues,Consumer Issues +237066,Consumer Issues,Consumer Issues +206023,Consumer Issues,Consumer Issues +206021,Consumer Issues,Consumer Issues +347643,Consumer Issues,Consumer Issues +317550,Consumer Issues,Consumer Issues +316672,Consumer Issues,Consumer Issues +258146,Consumer Issues,Consumer Issues +258143,Environment,Environment +347643,Environment,Environment +317550,Environment,Environment +316672,Environment,Environment +258146,Environment,Environment +258145,Environment,Environment +258144,Health,Health +258143,Health,Health +347643,Health,Health +317550,Health,Health +316672,Health,Health +258146,Health,Health +206021,International Trade,International Trade +347643,International Trade,International Trade +317550,International Trade,International Trade +316672,International Trade,International Trade +258146,International Trade,International Trade +258145,International Trade,International Trade +258144,International Trade,International Trade +258143,International Trade,International Trade +237066,International Trade,International Trade +530432,Energy,Energy +523562,Energy,Energy +486876,Energy,Energy +468915,Energy,Energy +465985,Energy,Energy +436282,Energy,Energy +429386,Energy,Energy +429371,Energy,Energy +530441,Energy,Energy +530440,Energy,Energy +530439,Energy,Energy +530436,Energy,Energy +204927,Government Procurement,Government Procurement +419489,Government Procurement,Government Procurement +180650,Energy,Energy +188529,Agriculture,Agriculture +188524,Agriculture,Agriculture +188529,Environment,Environment +188524,Environment,Environment +188529,Fisheries,Fisheries +188524,Fisheries,Fisheries +210967,Economic Development,Economic Development +211248,Mining,Mining +211247,Mining,Mining +188392,Mining,Mining +188389,Mining,Mining +188385,Mining,Mining +240092,Mining,Mining +240091,Mining,Mining +240090,Mining,Mining +240089,Mining,Mining +240079,Mining,Mining +240078,Mining,Mining +240075,Mining,Mining +211253,Mining,Mining +211252,Mining,Mining +211251,Mining,Mining +211250,Mining,Mining +211251,Environment,Environment +211248,Employment and Training,Employment and Training +210967,Employment and Training,Employment and Training +240079,Employment and Training,Employment and Training +211249,Industry,Industry +211247,Industry,Industry +409865,Education,Education +249818,Health,Health +249815,Health,Health +350960,Health,Health +350957,Health,Health +343804,Health,Health +335621,Health,Health +315906,Health,Health +268597,Health,Health +249824,Health,Health +439853,Economic Development,Développement économique +439852,Economic Development,Développement économique +337055,Economic Development,Développement économique +337054,Economic Development,Développement économique +337053,Economic Development,Développement économique +337051,Economic Development,Développement économique +326793,Economic Development,Développement économique +309260,Economic Development,Développement économique +309258,Economic Development,Développement économique +309256,Economic Development,Développement économique +292689,Economic Development,Développement économique +270671,Economic Development,Développement économique +270670,Economic Development,Développement économique +270669,Economic Development,Développement économique +193328,Economic Development,Développement économique +193327,Economic Development,Développement économique +193326,Economic Development,Développement économique +434884,Economic Development,Développement économique +434423,Economic Development,Développement économique +434422,Economic Development,Développement économique +434183,Economic Development,Développement économique +434173,Economic Development,Développement économique +434172,Economic Development,Développement économique +434171,Economic Development,Développement économique +433604,Economic Development,Développement économique +433598,Economic Development,Développement économique +432719,Economic Development,Développement économique +432717,Economic Development,Développement économique +432716,Economic Development,Développement économique +430048,Economic Development,Développement économique +411379,Economic Development,Développement économique +411361,Economic Development,Développement économique +411360,Economic Development,Développement économique +408654,Economic Development,Développement économique +408651,Economic Development,Développement économique +408650,Economic Development,Développement économique +408649,Economic Development,Développement économique +408648,Economic Development,Développement économique +406321,Economic Development,Développement économique +404914,Economic Development,Développement économique +397449,Economic Development,Développement économique +394746,Economic Development,Développement économique +394745,Economic Development,Développement économique +394744,Economic Development,Développement économique +394743,Economic Development,Développement économique +394742,Economic Development,Développement économique +394741,Economic Development,Développement économique +391793,Economic Development,Développement économique +391792,Economic Development,Développement économique +391786,Economic Development,Développement économique +391785,Economic Development,Développement économique +384083,Economic Development,Développement économique +375457,Economic Development,Développement économique +373189,Economic Development,Développement économique +370418,Economic Development,Développement économique +360371,Economic Development,Développement économique +537132,Economic Development,Développement économique +527484,Economic Development,Développement économique +524329,Economic Development,Développement économique +521645,Economic Development,Développement économique +519381,Economic Development,Développement économique +516758,Economic Development,Développement économique +516757,Economic Development,Développement économique +516756,Economic Development,Développement économique +515389,Economic Development,Développement économique +510022,Economic Development,Développement économique +510021,Economic Development,Développement économique +510019,Economic Development,Développement économique +507858,Economic Development,Développement économique +507838,Economic Development,Développement économique +507765,Economic Development,Développement économique +507761,Economic Development,Développement économique +500803,Economic Development,Développement économique +500802,Economic Development,Développement économique +500801,Economic Development,Développement économique +500800,Economic Development,Développement économique +500686,Economic Development,Développement économique +500683,Economic Development,Développement économique +497133,Economic Development,Développement économique +497078,Economic Development,Développement économique +497077,Economic Development,Développement économique +497076,Economic Development,Développement économique +497074,Economic Development,Développement économique +497072,Economic Development,Développement économique +492004,Economic Development,Développement économique +490278,Economic Development,Développement économique +490273,Economic Development,Développement économique +488629,Economic Development,Développement économique +485470,Economic Development,Développement économique +485454,Economic Development,Développement économique +485452,Economic Development,Développement économique +476408,Economic Development,Développement économique +474537,Economic Development,Développement économique +472241,Economic Development,Développement économique +472035,Economic Development,Développement économique +472034,Economic Development,Développement économique +470329,Economic Development,Développement économique +470328,Economic Development,Développement économique +470327,Economic Development,Développement économique +470325,Economic Development,Développement économique +470323,Economic Development,Développement économique +470321,Economic Development,Développement économique +465536,Economic Development,Développement économique +465535,Economic Development,Développement économique +465534,Economic Development,Développement économique +465533,Economic Development,Développement économique +465532,Economic Development,Développement économique +464568,Economic Development,Développement économique +464432,Economic Development,Développement économique +463186,Economic Development,Développement économique +463185,Economic Development,Développement économique +463184,Economic Development,Développement économique +463174,Economic Development,Développement économique +459811,Economic Development,Développement économique +459810,Economic Development,Développement économique +459809,Economic Development,Développement économique +459045,Economic Development,Développement économique +459043,Economic Development,Développement économique +457450,Economic Development,Développement économique +453068,Economic Development,Développement économique +450762,Economic Development,Développement économique +450760,Economic Development,Développement économique +450759,Economic Development,Développement économique +441128,Economic Development,Développement économique +441093,Economic Development,Développement économique +441090,Economic Development,Développement économique +485452,Regional Development,Développement régional +476408,Regional Development,Développement régional +193326,Regional Development,Développement régional +397449,Regional Development,Développement régional +394746,Regional Development,Développement régional +394745,Regional Development,Développement régional +394744,Regional Development,Développement régional +394743,Regional Development,Développement régional +394742,Regional Development,Développement régional +394741,Regional Development,Développement régional +391793,Regional Development,Développement régional +391792,Regional Development,Développement régional +391786,Regional Development,Développement régional +391785,Regional Development,Développement régional +384083,Regional Development,Développement régional +375457,Regional Development,Développement régional +373189,Regional Development,Développement régional +370418,Regional Development,Développement régional +360371,Regional Development,Développement régional +337055,Regional Development,Développement régional +337054,Regional Development,Développement régional +337053,Regional Development,Développement régional +337051,Regional Development,Développement régional +326793,Regional Development,Développement régional +309260,Regional Development,Développement régional +309258,Regional Development,Développement régional +309256,Regional Development,Développement régional +292689,Regional Development,Développement régional +270671,Regional Development,Développement régional +270670,Regional Development,Développement régional +270669,Regional Development,Développement régional +193328,Regional Development,Développement régional +193327,Regional Development,Développement régional +474537,Regional Development,Développement régional +472241,Regional Development,Développement régional +472035,Regional Development,Développement régional +472034,Regional Development,Développement régional +470329,Regional Development,Développement régional +470328,Regional Development,Développement régional +470327,Regional Development,Développement régional +470325,Regional Development,Développement régional +470323,Regional Development,Développement régional +470321,Regional Development,Développement régional +465536,Regional Development,Développement régional +465535,Regional Development,Développement régional +465534,Regional Development,Développement régional +465533,Regional Development,Développement régional +465532,Regional Development,Développement régional +464568,Regional Development,Développement régional +464432,Regional Development,Développement régional +463186,Regional Development,Développement régional +463185,Regional Development,Développement régional +463184,Regional Development,Développement régional +463174,Regional Development,Développement régional +459811,Regional Development,Développement régional +459810,Regional Development,Développement régional +459809,Regional Development,Développement régional +459045,Regional Development,Développement régional +459043,Regional Development,Développement régional +457450,Regional Development,Développement régional +453068,Regional Development,Développement régional +450762,Regional Development,Développement régional +450760,Regional Development,Développement régional +450759,Regional Development,Développement régional +441128,Regional Development,Développement régional +441093,Regional Development,Développement régional +441090,Regional Development,Développement régional +441088,Regional Development,Développement régional +439853,Regional Development,Développement régional +439852,Regional Development,Développement régional +434884,Regional Development,Développement régional +434423,Regional Development,Développement régional +434422,Regional Development,Développement régional +434183,Regional Development,Développement régional +434173,Regional Development,Développement régional +434172,Regional Development,Développement régional +434171,Regional Development,Développement régional +433604,Regional Development,Développement régional +433598,Regional Development,Développement régional +432719,Regional Development,Développement régional +432717,Regional Development,Développement régional +432716,Regional Development,Développement régional +430048,Regional Development,Développement régional +411379,Regional Development,Développement régional +411361,Regional Development,Développement régional +411360,Regional Development,Développement régional +408654,Regional Development,Développement régional +408651,Regional Development,Développement régional +408650,Regional Development,Développement régional +408649,Regional Development,Développement régional +408648,Regional Development,Développement régional +406321,Regional Development,Développement régional +404914,Regional Development,Développement régional +537132,Regional Development,Développement régional +527484,Regional Development,Développement régional +524329,Regional Development,Développement régional +521645,Regional Development,Développement régional +519381,Regional Development,Développement régional +516758,Regional Development,Développement régional +516757,Regional Development,Développement régional +516756,Regional Development,Développement régional +515389,Regional Development,Développement régional +510022,Regional Development,Développement régional +510021,Regional Development,Développement régional +510019,Regional Development,Développement régional +507858,Regional Development,Développement régional +507838,Regional Development,Développement régional +507765,Regional Development,Développement régional +507761,Regional Development,Développement régional +500803,Regional Development,Développement régional +500802,Regional Development,Développement régional +500801,Regional Development,Développement régional +500800,Regional Development,Développement régional +500686,Regional Development,Développement régional +500683,Regional Development,Développement régional +497133,Regional Development,Développement régional +497078,Regional Development,Développement régional +497077,Regional Development,Développement régional +497074,Regional Development,Développement régional +497072,Regional Development,Développement régional +492004,Regional Development,Développement régional +490278,Regional Development,Développement régional +488629,Regional Development,Développement régional +485470,Regional Development,Développement régional +459043,Tourism,Tourisme +457450,Tourism,Tourisme +193328,Tourism,Tourisme +193327,Tourism,Tourisme +193326,Tourism,Tourisme +384083,Tourism,Tourisme +375457,Tourism,Tourisme +373189,Tourism,Tourisme +370418,Tourism,Tourisme +360371,Tourism,Tourisme +337055,Tourism,Tourisme +337054,Tourism,Tourisme +337053,Tourism,Tourisme +337051,Tourism,Tourisme +326793,Tourism,Tourisme +309260,Tourism,Tourisme +309258,Tourism,Tourisme +309256,Tourism,Tourisme +292689,Tourism,Tourisme +270671,Tourism,Tourisme +270670,Tourism,Tourisme +270669,Tourism,Tourisme +453068,Tourism,Tourisme +450762,Tourism,Tourisme +450760,Tourism,Tourisme +450759,Tourism,Tourisme +441128,Tourism,Tourisme +441093,Tourism,Tourisme +441090,Tourism,Tourisme +441088,Tourism,Tourisme +439853,Tourism,Tourisme +439852,Tourism,Tourisme +434884,Tourism,Tourisme +434423,Tourism,Tourisme +434422,Tourism,Tourisme +434183,Tourism,Tourisme +434173,Tourism,Tourisme +434172,Tourism,Tourisme +434171,Tourism,Tourisme +433604,Tourism,Tourisme +433598,Tourism,Tourisme +432719,Tourism,Tourisme +432717,Tourism,Tourisme +432716,Tourism,Tourisme +430048,Tourism,Tourisme +411379,Tourism,Tourisme +411361,Tourism,Tourisme +411360,Tourism,Tourisme +408654,Tourism,Tourisme +408651,Tourism,Tourisme +408650,Tourism,Tourisme +408649,Tourism,Tourisme +408648,Tourism,Tourisme +406321,Tourism,Tourisme +404914,Tourism,Tourisme +397449,Tourism,Tourisme +394746,Tourism,Tourisme +394745,Tourism,Tourisme +394744,Tourism,Tourisme +394743,Tourism,Tourisme +394742,Tourism,Tourisme +394741,Tourism,Tourisme +391793,Tourism,Tourisme +391792,Tourism,Tourisme +391786,Tourism,Tourisme +391785,Tourism,Tourisme +537132,Tourism,Tourisme +527484,Tourism,Tourisme +524329,Tourism,Tourisme +521645,Tourism,Tourisme +519381,Tourism,Tourisme +516758,Tourism,Tourisme +516757,Tourism,Tourisme +516756,Tourism,Tourisme +515389,Tourism,Tourisme +510022,Tourism,Tourisme +510021,Tourism,Tourisme +510019,Tourism,Tourisme +507858,Tourism,Tourisme +507838,Tourism,Tourisme +507765,Tourism,Tourisme +507761,Tourism,Tourisme +500803,Tourism,Tourisme +500802,Tourism,Tourisme +500801,Tourism,Tourisme +500800,Tourism,Tourisme +500686,Tourism,Tourisme +500683,Tourism,Tourisme +497133,Tourism,Tourisme +497078,Tourism,Tourisme +497077,Tourism,Tourisme +497074,Tourism,Tourisme +497072,Tourism,Tourisme +492004,Tourism,Tourisme +490278,Tourism,Tourisme +490273,Tourism,Tourisme +488629,Tourism,Tourisme +485470,Tourism,Tourisme +485454,Tourism,Tourisme +485452,Tourism,Tourisme +476408,Tourism,Tourisme +474537,Tourism,Tourisme +472241,Tourism,Tourisme +472035,Tourism,Tourisme +472034,Tourism,Tourisme +470329,Tourism,Tourisme +470328,Tourism,Tourisme +470327,Tourism,Tourisme +470325,Tourism,Tourisme +470323,Tourism,Tourisme +470321,Tourism,Tourisme +465536,Tourism,Tourisme +465535,Tourism,Tourisme +465534,Tourism,Tourisme +465533,Tourism,Tourisme +465532,Tourism,Tourisme +464568,Tourism,Tourisme +464432,Tourism,Tourisme +463186,Tourism,Tourisme +463185,Tourism,Tourisme +463184,Tourism,Tourisme +463174,Tourism,Tourisme +459811,Tourism,Tourisme +459810,Tourism,Tourisme +459809,Tourism,Tourisme +181525,Taxation and Finance,Taxation and Finance +312872,Housing,Housing +296689,Housing,Housing +259411,Housing,Housing +212947,Housing,Housing +185914,Housing,Housing +342267,Housing,Housing +341659,Housing,Housing +341655,Housing,Housing +338612,Housing,Housing +338608,Housing,Housing +342267,Taxation and Finance,Taxation and Finance +341655,Taxation and Finance,Taxation and Finance +191587,Industry,Industry +191585,Industry,Industry +223439,Industry,Industry +223433,Industry,Industry +223430,Industry,Industry +223424,Industry,Industry +223417,Industry,Industry +191602,Industry,Industry +191596,Industry,Industry +476660,Energy,Energy +476659,Energy,Energy +476658,Energy,Energy +476654,Energy,Energy +474612,Energy,Energy +474609,Energy,Energy +474608,Energy,Energy +474607,Energy,Energy +474606,Energy,Energy +474605,Energy,Energy +472833,Energy,Energy +469420,Energy,Energy +469419,Energy,Energy +469418,Energy,Energy +469417,Energy,Energy +469416,Energy,Energy +469415,Energy,Energy +466219,Energy,Energy +466211,Energy,Energy +466208,Energy,Energy +466205,Energy,Energy +466204,Energy,Energy +466202,Energy,Energy +466196,Energy,Energy +466194,Energy,Energy +466193,Energy,Energy +466190,Energy,Energy +466187,Energy,Energy +466182,Energy,Energy +462190,Energy,Energy +461151,Energy,Energy +461150,Energy,Energy +461149,Energy,Energy +454686,Energy,Energy +454685,Energy,Energy +454684,Energy,Energy +454683,Energy,Energy +454682,Energy,Energy +454681,Energy,Energy +454330,Energy,Energy +451578,Energy,Energy +451534,Energy,Energy +451533,Energy,Energy +451532,Energy,Energy +451531,Energy,Energy +451530,Energy,Energy +451461,Energy,Energy +448985,Energy,Energy +448984,Energy,Energy +448983,Energy,Energy +446901,Energy,Energy +446900,Energy,Energy +446821,Energy,Energy +545206,Energy,Energy +545205,Energy,Energy +545204,Energy,Energy +545203,Energy,Energy +545201,Energy,Energy +545199,Energy,Energy +545198,Energy,Energy +545197,Energy,Energy +545149,Energy,Energy +545148,Energy,Energy +542705,Energy,Energy +542704,Energy,Energy +542703,Energy,Energy +542702,Energy,Energy +540835,Energy,Energy +539115,Energy,Energy +539114,Energy,Energy +539113,Energy,Energy +536695,Energy,Energy +536694,Energy,Energy +536693,Energy,Energy +536692,Energy,Energy +536691,Energy,Energy +536689,Energy,Energy +533104,Energy,Energy +533103,Energy,Energy +533101,Energy,Energy +530833,Energy,Energy +530832,Energy,Energy +530429,Energy,Energy +530428,Energy,Energy +527650,Energy,Energy +527649,Energy,Energy +527648,Energy,Energy +527647,Energy,Energy +527646,Energy,Energy +527380,Energy,Energy +527379,Energy,Energy +524367,Energy,Energy +521066,Energy,Energy +521062,Energy,Energy +521061,Energy,Energy +520858,Energy,Energy +520857,Energy,Energy +520856,Energy,Energy +520855,Energy,Energy +518745,Energy,Energy +518744,Energy,Energy +518743,Energy,Energy +516191,Energy,Energy +516190,Energy,Energy +516172,Energy,Energy +516151,Energy,Energy +516149,Energy,Energy +516148,Energy,Energy +516146,Energy,Energy +516145,Energy,Energy +514981,Energy,Energy +514980,Energy,Energy +514378,Energy,Energy +513575,Energy,Energy +511824,Energy,Energy +511822,Energy,Energy +509621,Energy,Energy +509620,Energy,Energy +509619,Energy,Energy +509618,Energy,Energy +509617,Energy,Energy +509616,Energy,Energy +506556,Energy,Energy +506555,Energy,Energy +506554,Energy,Energy +506552,Energy,Energy +506547,Energy,Energy +506545,Energy,Energy +506543,Energy,Energy +506540,Energy,Energy +506538,Energy,Energy +506537,Energy,Energy +503573,Energy,Energy +503480,Energy,Energy +503477,Energy,Energy +503475,Energy,Energy +500482,Energy,Energy +500481,Energy,Energy +500480,Energy,Energy +500479,Energy,Energy +500478,Energy,Energy +497249,Energy,Energy +497248,Energy,Energy +497134,Energy,Energy +494234,Energy,Energy +494232,Energy,Energy +494231,Energy,Energy +492367,Energy,Energy +488866,Energy,Energy +488864,Energy,Energy +488862,Energy,Energy +488860,Energy,Energy +488858,Energy,Energy +488857,Energy,Energy +485929,Energy,Energy +485928,Energy,Energy +485927,Energy,Energy +483074,Energy,Energy +483073,Energy,Energy +483072,Energy,Energy +483071,Energy,Energy +483070,Energy,Energy +483069,Energy,Energy +483068,Energy,Energy +483067,Energy,Energy +480914,Energy,Energy +478802,Energy,Energy +478801,Energy,Energy +478800,Energy,Energy +478798,Energy,Energy +478797,Energy,Energy +476684,Energy,Energy +476683,Energy,Energy +476682,Energy,Energy +476681,Energy,Energy +203587,Transportation,Transports +181544,Taxation and Finance,Taxation and Finance +438397,Intellectual Property,Intellectual Property +540563,Intellectual Property,Intellectual Property +424395,Intellectual Property,Intellectual Property +424392,Intellectual Property,Intellectual Property +424391,Intellectual Property,Intellectual Property +424388,Intellectual Property,Intellectual Property +424386,Intellectual Property,Intellectual Property +408828,Intellectual Property,Intellectual Property +402118,Intellectual Property,Intellectual Property +402115,Intellectual Property,Intellectual Property +395444,Intellectual Property,Intellectual Property +395442,Intellectual Property,Intellectual Property +395441,Intellectual Property,Intellectual Property +395440,Intellectual Property,Intellectual Property +395439,Intellectual Property,Intellectual Property +376987,Intellectual Property,Intellectual Property +376965,Intellectual Property,Intellectual Property +364122,Intellectual Property,Intellectual Property +356288,Intellectual Property,Intellectual Property +356285,Intellectual Property,Intellectual Property +355760,Intellectual Property,Intellectual Property +353931,Intellectual Property,Intellectual Property +353929,Intellectual Property,Intellectual Property +216487,Intellectual Property,Intellectual Property +181704,Intellectual Property,Intellectual Property +482249,Intellectual Property,Intellectual Property +468719,Intellectual Property,Intellectual Property +455099,Intellectual Property,Intellectual Property +455091,Intellectual Property,Intellectual Property +225427,Research and Development,Research and Development (R&D) +198507,Transportation,Transportation +365583,Intellectual Property,Intellectual Property +221808,Industry,Industry +221807,Industry,Industry +198607,Industry,Industry +198587,Industry,Industry +229748,Industry,Industry +229746,Industry,Industry +229743,Industry,Industry +188875,Agriculture,Agriculture +188533,Agriculture,Agriculture +197343,Agriculture,Agriculture +192924,Environment,Environment +188875,Environment,Environment +188533,Environment,Environment +188875,Fisheries,Fisheries +188533,Fisheries,Fisheries +197343,Fisheries,Fisheries +410344,Agriculture,Agriculture +410343,Agriculture,Agriculture +384579,Agriculture,Agriculture +399368,Agriculture,Agriculture +399367,Agriculture,Agriculture +399365,Agriculture,Agriculture +434840,Agriculture,Agriculture +428261,Agriculture,Agriculture +428260,Agriculture,Agriculture +428259,Agriculture,Agriculture +428258,Agriculture,Agriculture +428256,Agriculture,Agriculture +428255,Agriculture,Agriculture +428252,Agriculture,Agriculture +428255,International Trade,International Trade +428252,International Trade,International Trade +410347,International Trade,International Trade +410340,International Trade,International Trade +399369,International Trade,International Trade +399368,International Trade,International Trade +399367,International Trade,International Trade +399366,International Trade,International Trade +399365,International Trade,International Trade +428261,International Trade,International Trade +428260,International Trade,International Trade +428259,International Trade,International Trade +428258,International Trade,International Trade +418210,International Trade,International Trade +416703,International Trade,International Trade +319205,International Trade,International Trade +273175,International Trade,International Trade +273174,International Trade,International Trade +273172,International Trade,International Trade +419859,International Trade,International Trade +419857,International Trade,International Trade +418213,International Trade,International Trade +187084,Health,Health +184164,Health,Health +222697,Health,Health +439089,Security,Security +433160,Security,Security +205949,Security,Security +191589,Security,Security +188751,Security,Security +188748,Security,Security +188746,Security,Security +188743,Security,Security +182865,Security,Security +324969,Security,Security +319185,Security,Security +319180,Security,Security +304077,Security,Security +359756,Security,Security +359750,Security,Security +358066,Security,Security +353312,Security,Security +353308,Security,Security +537310,Security,Security +537309,Security,Security +531649,Security,Security +452504,Security,Security +200327,International Development,International Development +185604,International Development,International Development +208547,International Development,International Development +208528,International Development,International Development +471269,Research and Development,Research and Development (R&D) +457551,Research and Development,Research and Development (R&D) +236842,Research and Development,Research and Development (R&D) +219088,Research and Development,Research and Development (R&D) +219087,Research and Development,Research and Development (R&D) +200416,Research and Development,Research and Development (R&D) +200335,Research and Development,Research and Development (R&D) +185584,Research and Development,Research and Development (R&D) +443766,Research and Development,Research and Development (R&D) +436892,Research and Development,Research and Development (R&D) +432055,Research and Development,Research and Development (R&D) +431460,Research and Development,Research and Development (R&D) +431053,Research and Development,Research and Development (R&D) +429528,Research and Development,Research and Development (R&D) +427920,Research and Development,Research and Development (R&D) +425808,Research and Development,Research and Development (R&D) +423818,Research and Development,Research and Development (R&D) +422584,Research and Development,Research and Development (R&D) +422583,Research and Development,Research and Development (R&D) +422578,Research and Development,Research and Development (R&D) +418915,Research and Development,Research and Development (R&D) +418190,Research and Development,Research and Development (R&D) +416684,Research and Development,Research and Development (R&D) +412632,Research and Development,Research and Development (R&D) +412626,Research and Development,Research and Development (R&D) +409444,Research and Development,Research and Development (R&D) +406861,Research and Development,Research and Development (R&D) +404942,Research and Development,Research and Development (R&D) +395231,Research and Development,Research and Development (R&D) +391240,Research and Development,Research and Development (R&D) +385474,Research and Development,Research and Development (R&D) +543621,Research and Development,Research and Development (R&D) +518830,Research and Development,Research and Development (R&D) +518828,Research and Development,Research and Development (R&D) +431365,Employment and Training,Employment and Training +194676,Climate,Climate +194664,Climate,Climate +194676,Energy,Energy +194664,Energy,Energy +194676,Environment,Environment +194664,Environment,Environment +194676,Industry,Industry +194664,Industry,Industry +330625,Education,Education +325649,Education,Education +320210,Education,Education +315936,Education,Education +308009,Education,Education +239647,Education,Education +232710,Education,Education +211354,Education,Education +202491,Education,Education +183005,Education,Education +380757,Education,Education +367702,Education,Education +362944,Education,Education +335561,Education,Education +191549,Defence,Defence +191546,Defence,Defence +191553,Defence,Defence +191552,Defence,Defence +197255,Justice and Law Enforcement,Justice and Law Enforcement +197253,Justice and Law Enforcement,Justice and Law Enforcement +197251,Justice and Law Enforcement,Justice and Law Enforcement +191553,Justice and Law Enforcement,Justice and Law Enforcement +191552,Justice and Law Enforcement,Justice and Law Enforcement +191551,Justice and Law Enforcement,Justice and Law Enforcement +191549,Justice and Law Enforcement,Justice and Law Enforcement +191546,Justice and Law Enforcement,Justice and Law Enforcement +197310,Justice and Law Enforcement,Justice and Law Enforcement +197308,Justice and Law Enforcement,Justice and Law Enforcement +197272,Justice and Law Enforcement,Justice and Law Enforcement +197260,Justice and Law Enforcement,Justice and Law Enforcement +197258,Justice and Law Enforcement,Justice and Law Enforcement +197272,Security,Security +197260,Security,Security +197258,Security,Security +197256,Security,Security +197255,Security,Security +197253,Security,Security +197251,Security,Security +191553,Security,Security +191552,Security,Security +191551,Security,Security +191549,Security,Security +191546,Security,Security +197310,Security,Security +230347,Environment,Environment +189570,Mining,Mining +189569,Mining,Mining +189568,Mining,Mining +189566,Mining,Mining +230351,Mining,Mining +230349,Mining,Mining +230348,Mining,Mining +211354,Infrastructure,Infrastructure +380757,Infrastructure,Infrastructure +367702,Infrastructure,Infrastructure +362944,Infrastructure,Infrastructure +335561,Infrastructure,Infrastructure +330625,Infrastructure,Infrastructure +325649,Infrastructure,Infrastructure +320210,Infrastructure,Infrastructure +315930,Infrastructure,Infrastructure +239647,Infrastructure,Infrastructure +239642,Infrastructure,Infrastructure +336249,Education,Education +250952,Education,Education +232730,Education,Education +188872,Education,Education +188783,Education,Education +368159,Education,Education +363004,Education,Education +252589,Infrastructure,Infrastructure +250952,Infrastructure,Infrastructure +216067,Infrastructure,Infrastructure +188872,Infrastructure,Infrastructure +368159,Infrastructure,Infrastructure +363004,Infrastructure,Infrastructure +343848,Infrastructure,Infrastructure +343847,Infrastructure,Infrastructure +336251,Infrastructure,Infrastructure +336249,Infrastructure,Infrastructure +199884,Taxation and Finance,Impôts et finances +197120,Taxation and Finance,Impôts et finances +343424,Taxation and Finance,Impôts et finances +338019,Taxation and Finance,Impôts et finances +338018,Taxation and Finance,Impôts et finances +329877,Taxation and Finance,Impôts et finances +327236,Taxation and Finance,Impôts et finances +322132,Taxation and Finance,Impôts et finances +199886,Taxation and Finance,Impôts et finances +206669,Infrastructure,Infrastructure +206668,Infrastructure,Infrastructure +232693,Economic Development,Economic Development +197507,Education,Education +257609,Education,Education +232693,Education,Education +197507,Environment,Environment +206273,Infrastructure,Infrastructure +202492,Infrastructure,Infrastructure +257609,Infrastructure,Infrastructure +232693,Infrastructure,Infrastructure +197507,Research and Development,Research and Development +257609,Research and Development,Research and Development +232693,Research and Development,Research and Development +208647,Environment,Environment +187884,Environment,Environment +214888,Environment,Environment +211409,Environment,Environment +211408,Environment,Environment +211929,International Trade,International Trade +340479,International Trade,International Trade +327242,Taxation and Finance,Impôts et finances +322134,Taxation and Finance,Impôts et finances +199997,Taxation and Finance,Impôts et finances +399367,Employment and Training,Employment and Training +399365,Employment and Training,Employment and Training +384580,Employment and Training,Employment and Training +428261,Employment and Training,Employment and Training +428260,Employment and Training,Employment and Training +428258,Employment and Training,Employment and Training +428256,Employment and Training,Employment and Training +428255,Employment and Training,Employment and Training +416915,Research and Development,Research and Development +416914,Research and Development,Research and Development +212263,Research and Development,Research and Development +212261,Research and Development,Research and Development +207144,Research and Development,Research and Development +207141,Research and Development,Research and Development +203149,Research and Development,Research and Development +203148,Research and Development,Research and Development +203147,Research and Development,Research and Development +185500,Research and Development,Research and Development +282512,Research and Development,Research and Development +277572,Research and Development,Research and Development +277571,Research and Development,Research and Development +277568,Research and Development,Research and Development +269651,Research and Development,Research and Development +264450,Research and Development,Research and Development +264446,Research and Development,Research and Development +264445,Research and Development,Research and Development +259372,Research and Development,Research and Development +250814,Research and Development,Research and Development +250810,Research and Development,Research and Development +245116,Research and Development,Research and Development +245114,Research and Development,Research and Development +237116,Research and Development,Research and Development +237114,Research and Development,Research and Development +233603,Research and Development,Research and Development +227027,Research and Development,Research and Development +227025,Research and Development,Research and Development +223653,Research and Development,Research and Development +223651,Research and Development,Research and Development +223650,Research and Development,Research and Development +212266,Research and Development,Research and Development +363707,Research and Development,Research and Development +362325,Research and Development,Research and Development +362323,Research and Development,Research and Development +362320,Research and Development,Research and Development +361258,Research and Development,Research and Development +361256,Research and Development,Research and Development +356461,Research and Development,Research and Development +356453,Research and Development,Research and Development +356449,Research and Development,Research and Development +356448,Research and Development,Research and Development +356445,Research and Development,Research and Development +356442,Research and Development,Research and Development +354000,Research and Development,Research and Development +353999,Research and Development,Research and Development +351227,Research and Development,Research and Development +351226,Research and Development,Research and Development +351224,Research and Development,Research and Development +351223,Research and Development,Research and Development +351221,Research and Development,Research and Development +351220,Research and Development,Research and Development +351217,Research and Development,Research and Development +351216,Research and Development,Research and Development +349281,Research and Development,Research and Development +349280,Research and Development,Research and Development +349279,Research and Development,Research and Development +349278,Research and Development,Research and Development +349277,Research and Development,Research and Development +347273,Research and Development,Research and Development +347264,Research and Development,Research and Development +347256,Research and Development,Research and Development +344084,Research and Development,Research and Development +344080,Research and Development,Research and Development +344078,Research and Development,Research and Development +344077,Research and Development,Research and Development +344076,Research and Development,Research and Development +344073,Research and Development,Research and Development +341342,Research and Development,Research and Development +341337,Research and Development,Research and Development +341333,Research and Development,Research and Development +341328,Research and Development,Research and Development +341325,Research and Development,Research and Development +341323,Research and Development,Research and Development +341319,Research and Development,Research and Development +341317,Research and Development,Research and Development +341315,Research and Development,Research and Development +338616,Research and Development,Research and Development +335722,Research and Development,Research and Development +335721,Research and Development,Research and Development +335719,Research and Development,Research and Development +335718,Research and Development,Research and Development +335704,Research and Development,Research and Development +335684,Research and Development,Research and Development +335678,Research and Development,Research and Development +335673,Research and Development,Research and Development +335669,Research and Development,Research and Development +333729,Research and Development,Research and Development +331510,Research and Development,Research and Development +331509,Research and Development,Research and Development +327769,Research and Development,Research and Development +325008,Research and Development,Research and Development +325007,Research and Development,Research and Development +325003,Research and Development,Research and Development +324794,Research and Development,Research and Development +324792,Research and Development,Research and Development +324724,Research and Development,Research and Development +324722,Research and Development,Research and Development +324721,Research and Development,Research and Development +324717,Research and Development,Research and Development +322305,Research and Development,Research and Development +322296,Research and Development,Research and Development +322291,Research and Development,Research and Development +322278,Research and Development,Research and Development +319289,Research and Development,Research and Development +317821,Research and Development,Research and Development +317820,Research and Development,Research and Development +317819,Research and Development,Research and Development +317818,Research and Development,Research and Development +317816,Research and Development,Research and Development +315778,Research and Development,Research and Development +315777,Research and Development,Research and Development +310522,Research and Development,Research and Development +310518,Research and Development,Research and Development +310516,Research and Development,Research and Development +310514,Research and Development,Research and Development +310510,Research and Development,Research and Development +310509,Research and Development,Research and Development +310507,Research and Development,Research and Development +310501,Research and Development,Research and Development +310498,Research and Development,Research and Development +310495,Research and Development,Research and Development +304472,Research and Development,Research and Development +297015,Research and Development,Research and Development +416905,Research and Development,Research and Development +416903,Research and Development,Research and Development +416890,Research and Development,Research and Development +416883,Research and Development,Research and Development +416880,Research and Development,Research and Development +416878,Research and Development,Research and Development +413650,Research and Development,Research and Development +413645,Research and Development,Research and Development +413640,Research and Development,Research and Development +413639,Research and Development,Research and Development +413634,Research and Development,Research and Development +413585,Research and Development,Research and Development +413573,Research and Development,Research and Development +411934,Research and Development,Research and Development +411933,Research and Development,Research and Development +411932,Research and Development,Research and Development +411930,Research and Development,Research and Development +411929,Research and Development,Research and Development +411927,Research and Development,Research and Development +409649,Research and Development,Research and Development +409648,Research and Development,Research and Development +409647,Research and Development,Research and Development +409646,Research and Development,Research and Development +409645,Research and Development,Research and Development +409644,Research and Development,Research and Development +409643,Research and Development,Research and Development +409637,Research and Development,Research and Development +407726,Research and Development,Research and Development +405223,Research and Development,Research and Development +405214,Research and Development,Research and Development +405212,Research and Development,Research and Development +405209,Research and Development,Research and Development +403295,Research and Development,Research and Development +403293,Research and Development,Research and Development +403282,Research and Development,Research and Development +403279,Research and Development,Research and Development +403274,Research and Development,Research and Development +403271,Research and Development,Research and Development +403269,Research and Development,Research and Development +403262,Research and Development,Research and Development +400334,Research and Development,Research and Development +400332,Research and Development,Research and Development +400330,Research and Development,Research and Development +398966,Research and Development,Research and Development +398957,Research and Development,Research and Development +398947,Research and Development,Research and Development +398944,Research and Development,Research and Development +397003,Research and Development,Research and Development +397002,Research and Development,Research and Development +396974,Research and Development,Research and Development +396973,Research and Development,Research and Development +396972,Research and Development,Research and Development +396965,Research and Development,Research and Development +396960,Research and Development,Research and Development +396959,Research and Development,Research and Development +396697,Research and Development,Research and Development +396674,Research and Development,Research and Development +396667,Research and Development,Research and Development +396661,Research and Development,Research and Development +396648,Research and Development,Research and Development +396622,Research and Development,Research and Development +396615,Research and Development,Research and Development +396611,Research and Development,Research and Development +396608,Research and Development,Research and Development +396602,Research and Development,Research and Development +396597,Research and Development,Research and Development +396593,Research and Development,Research and Development +396588,Research and Development,Research and Development +396581,Research and Development,Research and Development +396572,Research and Development,Research and Development +394534,Research and Development,Research and Development +394487,Research and Development,Research and Development +394470,Research and Development,Research and Development +394448,Research and Development,Research and Development +394440,Research and Development,Research and Development +394439,Research and Development,Research and Development +394435,Research and Development,Research and Development +394411,Research and Development,Research and Development +392535,Research and Development,Research and Development +392533,Research and Development,Research and Development +392528,Research and Development,Research and Development +391582,Research and Development,Research and Development +391581,Research and Development,Research and Development +391580,Research and Development,Research and Development +391577,Research and Development,Research and Development +391575,Research and Development,Research and Development +391572,Research and Development,Research and Development +391570,Research and Development,Research and Development +391564,Research and Development,Research and Development +391562,Research and Development,Research and Development +391555,Research and Development,Research and Development +391553,Research and Development,Research and Development +391552,Research and Development,Research and Development +391547,Research and Development,Research and Development +391546,Research and Development,Research and Development +391545,Research and Development,Research and Development +391542,Research and Development,Research and Development +388224,Research and Development,Research and Development +388223,Research and Development,Research and Development +388220,Research and Development,Research and Development +388217,Research and Development,Research and Development +388213,Research and Development,Research and Development +388211,Research and Development,Research and Development +387923,Research and Development,Research and Development +387922,Research and Development,Research and Development +387921,Research and Development,Research and Development +387920,Research and Development,Research and Development +387919,Research and Development,Research and Development +387918,Research and Development,Research and Development +387917,Research and Development,Research and Development +387916,Research and Development,Research and Development +387915,Research and Development,Research and Development +387913,Research and Development,Research and Development +387911,Research and Development,Research and Development +385704,Research and Development,Research and Development +385703,Research and Development,Research and Development +385702,Research and Development,Research and Development +385701,Research and Development,Research and Development +385698,Research and Development,Research and Development +385693,Research and Development,Research and Development +383818,Research and Development,Research and Development +383816,Research and Development,Research and Development +383813,Research and Development,Research and Development +383808,Research and Development,Research and Development +383804,Research and Development,Research and Development +383801,Research and Development,Research and Development +383798,Research and Development,Research and Development +383792,Research and Development,Research and Development +383788,Research and Development,Research and Development +383787,Research and Development,Research and Development +383784,Research and Development,Research and Development +383779,Research and Development,Research and Development +383721,Research and Development,Research and Development +383717,Research and Development,Research and Development +383713,Research and Development,Research and Development +383712,Research and Development,Research and Development +383710,Research and Development,Research and Development +383708,Research and Development,Research and Development +383705,Research and Development,Research and Development +382218,Research and Development,Research and Development +382217,Research and Development,Research and Development +382216,Research and Development,Research and Development +382215,Research and Development,Research and Development +382214,Research and Development,Research and Development +382213,Research and Development,Research and Development +382212,Research and Development,Research and Development +382211,Research and Development,Research and Development +382208,Research and Development,Research and Development +382206,Research and Development,Research and Development +382204,Research and Development,Research and Development +381251,Research and Development,Research and Development +381246,Research and Development,Research and Development +381242,Research and Development,Research and Development +381240,Research and Development,Research and Development +381239,Research and Development,Research and Development +379737,Research and Development,Research and Development +379733,Research and Development,Research and Development +379720,Research and Development,Research and Development +379718,Research and Development,Research and Development +377074,Research and Development,Research and Development +377071,Research and Development,Research and Development +377065,Research and Development,Research and Development +377064,Research and Development,Research and Development +377062,Research and Development,Research and Development +377060,Research and Development,Research and Development +377059,Research and Development,Research and Development +377058,Research and Development,Research and Development +377057,Research and Development,Research and Development +374825,Research and Development,Research and Development +374822,Research and Development,Research and Development +374820,Research and Development,Research and Development +374819,Research and Development,Research and Development +374818,Research and Development,Research and Development +374816,Research and Development,Research and Development +374814,Research and Development,Research and Development +371849,Research and Development,Research and Development +371848,Research and Development,Research and Development +369674,Research and Development,Research and Development +369673,Research and Development,Research and Development +369672,Research and Development,Research and Development +369671,Research and Development,Research and Development +369670,Research and Development,Research and Development +366563,Research and Development,Research and Development +363711,Research and Development,Research and Development +363710,Research and Development,Research and Development +363708,Research and Development,Research and Development +544256,Research and Development,Research and Development +544254,Research and Development,Research and Development +544253,Research and Development,Research and Development +544250,Research and Development,Research and Development +544249,Research and Development,Research and Development +544245,Research and Development,Research and Development +544244,Research and Development,Research and Development +544243,Research and Development,Research and Development +544242,Research and Development,Research and Development +544241,Research and Development,Research and Development +541903,Research and Development,Research and Development +541902,Research and Development,Research and Development +541896,Research and Development,Research and Development +541895,Research and Development,Research and Development +541845,Research and Development,Research and Development +541844,Research and Development,Research and Development +541842,Research and Development,Research and Development +540160,Research and Development,Research and Development +540159,Research and Development,Research and Development +540157,Research and Development,Research and Development +540154,Research and Development,Research and Development +540148,Research and Development,Research and Development +540145,Research and Development,Research and Development +540143,Research and Development,Research and Development +540142,Research and Development,Research and Development +540140,Research and Development,Research and Development +540137,Research and Development,Research and Development +538297,Research and Development,Research and Development +538290,Research and Development,Research and Development +538283,Research and Development,Research and Development +538278,Research and Development,Research and Development +538277,Research and Development,Research and Development +538272,Research and Development,Research and Development +538260,Research and Development,Research and Development +538254,Research and Development,Research and Development +538228,Research and Development,Research and Development +538226,Research and Development,Research and Development +538225,Research and Development,Research and Development +535209,Research and Development,Research and Development +535206,Research and Development,Research and Development +535201,Research and Development,Research and Development +535185,Research and Development,Research and Development +535182,Research and Development,Research and Development +535179,Research and Development,Research and Development +535175,Research and Development,Research and Development +535174,Research and Development,Research and Development +535169,Research and Development,Research and Development +535164,Research and Development,Research and Development +535159,Research and Development,Research and Development +535147,Research and Development,Research and Development +532180,Research and Development,Research and Development +532179,Research and Development,Research and Development +532178,Research and Development,Research and Development +532177,Research and Development,Research and Development +532176,Research and Development,Research and Development +532175,Research and Development,Research and Development +529348,Research and Development,Research and Development +529344,Research and Development,Research and Development +529196,Research and Development,Research and Development +529180,Research and Development,Research and Development +529175,Research and Development,Research and Development +526371,Research and Development,Research and Development +526358,Research and Development,Research and Development +526341,Research and Development,Research and Development +526338,Research and Development,Research and Development +522970,Research and Development,Research and Development +522968,Research and Development,Research and Development +522950,Research and Development,Research and Development +522948,Research and Development,Research and Development +522947,Research and Development,Research and Development +519761,Research and Development,Research and Development +519759,Research and Development,Research and Development +519757,Research and Development,Research and Development +517657,Research and Development,Research and Development +517656,Research and Development,Research and Development +517655,Research and Development,Research and Development +517654,Research and Development,Research and Development +517651,Research and Development,Research and Development +517648,Research and Development,Research and Development +517645,Research and Development,Research and Development +517643,Research and Development,Research and Development +517640,Research and Development,Research and Development +517631,Research and Development,Research and Development +517628,Research and Development,Research and Development +517625,Research and Development,Research and Development +517616,Research and Development,Research and Development +517615,Research and Development,Research and Development +517613,Research and Development,Research and Development +517609,Research and Development,Research and Development +517604,Research and Development,Research and Development +517601,Research and Development,Research and Development +517597,Research and Development,Research and Development +515744,Research and Development,Research and Development +515743,Research and Development,Research and Development +515742,Research and Development,Research and Development +515741,Research and Development,Research and Development +515739,Research and Development,Research and Development +515738,Research and Development,Research and Development +514482,Research and Development,Research and Development +514481,Research and Development,Research and Development +514173,Research and Development,Research and Development +514172,Research and Development,Research and Development +514171,Research and Development,Research and Development +514168,Research and Development,Research and Development +513294,Research and Development,Research and Development +513293,Research and Development,Research and Development +513291,Research and Development,Research and Development +511310,Research and Development,Research and Development +511309,Research and Development,Research and Development +511308,Research and Development,Research and Development +511306,Research and Development,Research and Development +511304,Research and Development,Research and Development +511298,Research and Development,Research and Development +507441,Research and Development,Research and Development +507440,Research and Development,Research and Development +507439,Research and Development,Research and Development +507438,Research and Development,Research and Development +507435,Research and Development,Research and Development +504355,Research and Development,Research and Development +504354,Research and Development,Research and Development +504353,Research and Development,Research and Development +502319,Research and Development,Research and Development +502317,Research and Development,Research and Development +502316,Research and Development,Research and Development +502314,Research and Development,Research and Development +502306,Research and Development,Research and Development +502304,Research and Development,Research and Development +502299,Research and Development,Research and Development +498986,Research and Development,Research and Development +498983,Research and Development,Research and Development +498980,Research and Development,Research and Development +498979,Research and Development,Research and Development +495081,Research and Development,Research and Development +493228,Research and Development,Research and Development +493225,Research and Development,Research and Development +493224,Research and Development,Research and Development +493217,Research and Development,Research and Development +493216,Research and Development,Research and Development +493214,Research and Development,Research and Development +490579,Research and Development,Research and Development +490569,Research and Development,Research and Development +490556,Research and Development,Research and Development +488229,Research and Development,Research and Development +488228,Research and Development,Research and Development +488227,Research and Development,Research and Development +485158,Research and Development,Research and Development +485157,Research and Development,Research and Development +482191,Research and Development,Research and Development +482190,Research and Development,Research and Development +479730,Research and Development,Research and Development +479728,Research and Development,Research and Development +479727,Research and Development,Research and Development +479726,Research and Development,Research and Development +477559,Research and Development,Research and Development +477558,Research and Development,Research and Development +477555,Research and Development,Research and Development +475097,Research and Development,Research and Development +475095,Research and Development,Research and Development +475094,Research and Development,Research and Development +475092,Research and Development,Research and Development +472788,Research and Development,Research and Development +472782,Research and Development,Research and Development +472774,Research and Development,Research and Development +472769,Research and Development,Research and Development +471298,Research and Development,Research and Development +471297,Research and Development,Research and Development +471055,Research and Development,Research and Development +470424,Research and Development,Research and Development +466995,Research and Development,Research and Development +466992,Research and Development,Research and Development +466990,Research and Development,Research and Development +466989,Research and Development,Research and Development +466988,Research and Development,Research and Development +466986,Research and Development,Research and Development +466983,Research and Development,Research and Development +466982,Research and Development,Research and Development +466980,Research and Development,Research and Development +464970,Research and Development,Research and Development +464964,Research and Development,Research and Development +464957,Research and Development,Research and Development +464955,Research and Development,Research and Development +464954,Research and Development,Research and Development +464952,Research and Development,Research and Development +464948,Research and Development,Research and Development +464945,Research and Development,Research and Development +464940,Research and Development,Research and Development +464917,Research and Development,Research and Development +462869,Research and Development,Research and Development +461315,Research and Development,Research and Development +460485,Research and Development,Research and Development +460484,Research and Development,Research and Development +460483,Research and Development,Research and Development +460482,Research and Development,Research and Development +460480,Research and Development,Research and Development +460157,Research and Development,Research and Development +460152,Research and Development,Research and Development +460150,Research and Development,Research and Development +459749,Research and Development,Research and Development +458498,Research and Development,Research and Development +458497,Research and Development,Research and Development +458495,Research and Development,Research and Development +458490,Research and Development,Research and Development +458488,Research and Development,Research and Development +458487,Research and Development,Research and Development +458485,Research and Development,Research and Development +458484,Research and Development,Research and Development +458483,Research and Development,Research and Development +458482,Research and Development,Research and Development +458481,Research and Development,Research and Development +457751,Research and Development,Research and Development +457750,Research and Development,Research and Development +457747,Research and Development,Research and Development +454752,Research and Development,Research and Development +454746,Research and Development,Research and Development +454745,Research and Development,Research and Development +454743,Research and Development,Research and Development +454739,Research and Development,Research and Development +452603,Research and Development,Research and Development +452602,Research and Development,Research and Development +449403,Research and Development,Research and Development +449402,Research and Development,Research and Development +449401,Research and Development,Research and Development +449400,Research and Development,Research and Development +449399,Research and Development,Research and Development +447479,Research and Development,Research and Development +447477,Research and Development,Research and Development +445576,Research and Development,Research and Development +445570,Research and Development,Research and Development +445569,Research and Development,Research and Development +445565,Research and Development,Research and Development +445564,Research and Development,Research and Development +445563,Research and Development,Research and Development +445557,Research and Development,Research and Development +444214,Research and Development,Research and Development +444211,Research and Development,Research and Development +444210,Research and Development,Research and Development +444209,Research and Development,Research and Development +444206,Research and Development,Research and Development +444205,Research and Development,Research and Development +444204,Research and Development,Research and Development +444203,Research and Development,Research and Development +444201,Research and Development,Research and Development +444200,Research and Development,Research and Development +444199,Research and Development,Research and Development +444198,Research and Development,Research and Development +443446,Research and Development,Research and Development +438830,Research and Development,Research and Development +438826,Research and Development,Research and Development +438824,Research and Development,Research and Development +438823,Research and Development,Research and Development +438822,Research and Development,Research and Development +438811,Research and Development,Research and Development +438810,Research and Development,Research and Development +435945,Research and Development,Research and Development +435941,Research and Development,Research and Development +435923,Research and Development,Research and Development +435914,Research and Development,Research and Development +435912,Research and Development,Research and Development +435902,Research and Development,Research and Development +433368,Research and Development,Research and Development +433351,Research and Development,Research and Development +432277,Research and Development,Research and Development +432090,Research and Development,Research and Development +432089,Research and Development,Research and Development +430528,Research and Development,Research and Development +430527,Research and Development,Research and Development +428914,Research and Development,Research and Development +428913,Research and Development,Research and Development +428912,Research and Development,Research and Development +428911,Research and Development,Research and Development +428910,Research and Development,Research and Development +428907,Research and Development,Research and Development +428906,Research and Development,Research and Development +428904,Research and Development,Research and Development +428901,Research and Development,Research and Development +428899,Research and Development,Research and Development +428895,Research and Development,Research and Development +425837,Research and Development,Research and Development +425836,Research and Development,Research and Development +425835,Research and Development,Research and Development +425834,Research and Development,Research and Development +425832,Research and Development,Research and Development +425827,Research and Development,Research and Development +425826,Research and Development,Research and Development +422463,Research and Development,Research and Development +422433,Research and Development,Research and Development +422430,Research and Development,Research and Development +422400,Research and Development,Research and Development +420458,Research and Development,Research and Development +420457,Research and Development,Research and Development +420456,Research and Development,Research and Development +419607,Research and Development,Research and Development +418092,Research and Development,Research and Development +418090,Research and Development,Research and Development +416923,Research and Development,Research and Development +196386,Economic Development,Economic Development +382540,Environment,Environment +518333,Environment,Environment +185878,Environment,Environment +196668,Research and Development,Research and Development +185928,Research and Development,Research and Development +227188,Research and Development,Research and Development +188877,Environment,Environment +188876,Environment,Environment +442260,Environment,Environment +442258,Environment,Environment +366767,Environment,Environment +366766,Environment,Environment +366383,Environment,Environment +359845,Environment,Environment +359843,Environment,Environment +355849,Environment,Environment +338631,Environment,Environment +338621,Environment,Environment +338619,Environment,Environment +315773,Environment,Environment +315771,Environment,Environment +310480,Environment,Environment +310453,Environment,Environment +310450,Environment,Environment +310444,Environment,Environment +310429,Environment,Environment +310424,Environment,Environment +297075,Environment,Environment +297072,Environment,Environment +297071,Environment,Environment +250397,Environment,Environment +245591,Environment,Environment +245129,Environment,Environment +200375,Environment,Environment +200366,Environment,Environment +200354,Environment,Environment +200350,Environment,Environment +200346,Environment,Environment +200342,Environment,Environment +200338,Environment,Environment +200334,Environment,Environment +200331,Environment,Environment +200328,Environment,Environment +189655,Environment,Environment +189652,Environment,Environment +189651,Environment,Environment +189649,Environment,Environment +186184,Environment,Environment +442254,Environment,Environment +442240,Environment,Environment +442233,Environment,Environment +442228,Environment,Environment +442209,Environment,Environment +442185,Environment,Environment +442183,Environment,Environment +442182,Environment,Environment +442178,Environment,Environment +439090,Environment,Environment +439087,Environment,Environment +439084,Environment,Environment +439078,Environment,Environment +439071,Environment,Environment +435290,Environment,Environment +435286,Environment,Environment +435284,Environment,Environment +435279,Environment,Environment +435277,Environment,Environment +435273,Environment,Environment +433757,Environment,Environment +433756,Environment,Environment +433754,Environment,Environment +433753,Environment,Environment +432472,Environment,Environment +432471,Environment,Environment +430720,Environment,Environment +428668,Environment,Environment +426099,Environment,Environment +426088,Environment,Environment +426083,Environment,Environment +426081,Environment,Environment +426079,Environment,Environment +424218,Environment,Environment +424217,Environment,Environment +422298,Environment,Environment +422296,Environment,Environment +422292,Environment,Environment +420123,Environment,Environment +420121,Environment,Environment +420117,Environment,Environment +420113,Environment,Environment +416766,Environment,Environment +416752,Environment,Environment +416718,Environment,Environment +411216,Environment,Environment +411213,Environment,Environment +408243,Environment,Environment +408242,Environment,Environment +401703,Environment,Environment +401702,Environment,Environment +401701,Environment,Environment +401700,Environment,Environment +401699,Environment,Environment +401229,Environment,Environment +400986,Environment,Environment +394482,Environment,Environment +394458,Environment,Environment +385582,Environment,Environment +382634,Environment,Environment +382630,Environment,Environment +376326,Environment,Environment +372321,Environment,Environment +372319,Environment,Environment +372300,Environment,Environment +369392,Environment,Environment +369391,Environment,Environment +369390,Environment,Environment +543167,Environment,Environment +534731,Environment,Environment +534728,Environment,Environment +529684,Environment,Environment +528912,Environment,Environment +526180,Environment,Environment +526169,Environment,Environment +526167,Environment,Environment +522925,Environment,Environment +522923,Environment,Environment +522919,Environment,Environment +517337,Environment,Environment +517328,Environment,Environment +517324,Environment,Environment +514654,Environment,Environment +513393,Environment,Environment +511273,Environment,Environment +508656,Environment,Environment +504983,Environment,Environment +501423,Environment,Environment +501421,Environment,Environment +501418,Environment,Environment +501415,Environment,Environment +490325,Environment,Environment +490313,Environment,Environment +486966,Environment,Environment +479349,Environment,Environment +479348,Environment,Environment +479347,Environment,Environment +479346,Environment,Environment +479345,Environment,Environment +479344,Environment,Environment +467028,Environment,Environment +467026,Environment,Environment +467024,Environment,Environment +461416,Environment,Environment +461412,Environment,Environment +199862,Agriculture,Agriculture +199862,Consumer Issues,Consumer Issues +199862,International Trade,International Trade +176072,Employment and Training,Employment and Training +543860,Economic Development,Economic Development +315031,Budget,Budget +398683,Health,Health +398684,Justice and Law Enforcement,Justice and Law Enforcement +176126,Fisheries,Fisheries +194741,Climate,Climate +189706,Defence,Defence +483939,Economic Development,Economic Development +494522,Energy,Energy +452352,Environment,Environment +181266,Energy,Energy +181266,Regional Development,Regional Development +181267,Taxation and Finance,Taxation and Finance +181266,Economic Development,Economic Development +176264,Energy,Energy +176544,International Trade,International Trade +176544,Transportation,Transportation +187465,Budget,Budget +189709,Transportation,Transportation +434714,Economic Development,Economic Development +434714,Research and Development,Research and Development (R&D) +434714,Security,Security +189139,Economic Development,Economic Development +189139,Energy,Energy +189139,Environment,Environment +189139,Regional Development,Regional Development +514898,Tourism,Tourism +176664,Tourism,Tourism +373682,Taxation and Finance,Impôts et finances +363842,Economic Development,Economic Development +320732,Industry,Industry +189710,Agriculture,Agriculture +487852,Health,Health +431947,Industry,Industry +353399,Intellectual Property,Intellectual Property +335048,International Trade,International Trade +335048,Research and Development,Research and Development (R&D) +316067,Economic Development,Economic Development +329678,Employment and Training,Employment and Training +372533,Government Procurement,Government Procurement +363535,Industry,Industry +396137,International Trade,International Trade +399189,Research and Development,Research and Development (R&D) +316067,Taxation and Finance,Taxation and Finance +362379,Transportation,Transportation +177066,Taxation and Finance,Taxation and Finance +197989,Taxation and Finance,Taxation and Finance +197988,Taxation and Finance,Taxation and Finance +400000,Environment,Environment +217308,Budget,Budget +313889,Government Procurement,Government Procurement +192418,Budget,Budget +197137,Transportation,Transportation +180784,Security,Sécurité +177664,Research and Development,Research and Development (R&D) +189103,Employment and Training,Employment and Training +250313,Research and Development,Research and Development (R&D) +177705,Employment and Training,Employment and Training +177705,Research and Development,Research and Development (R&D) +177725,Employment and Training,Employment and Training +177725,Research and Development,Research and Development (R&D) +183064,Industry,Industry +482187,International Trade,International Trade +178124,Immigration,Immigration +178304,Constitutional Issues,Questions constitutionnelles +185483,Economic Development,Economic Development +327034,International Development,International Development +488037,International Relations,International Relations +211688,Religion,Religion +183066,Fisheries,Fisheries +183070,Mining,Mining +183067,Transportation,Transportation +324668,Economic Development,Economic Development +531350,Pensions,Pensions +179844,Budget,Budget +179944,Budget,Budget +180004,Budget,Budget +180420,Transportation,Transportation +455627,Climate,Climate +180428,Intellectual Property,Intellectual Property +180465,Fisheries,Fisheries +180487,Constitutional Issues,Constitutional Issues +405520,Transportation,Transportation +353781,International Relations,International Relations +237066,Agriculture,Agriculture +258145,Consumer Issues,Consumer Issues +258144,Environment,Environment +258145,Health,Health +206023,International Trade,International Trade +530435,Energy,Energy +204929,Government Procurement,Government Procurement +260531,Energy,Energy +180652,Energy,Energy +198667,Agriculture,Agriculture +198667,Environment,Environment +198667,Fisheries,Fisheries +180784,Taxation and Finance,Impôts et finances +211250,Economic Development,Economic Development +211249,Mining,Mining +240092,Environment,Environment +211248,Infrastructure,Infrastructure +211250,Employment and Training,Employment and Training +240090,Transportation,Transportation +211253,Industry,Industry +180884,Economic Development,Economic Development +350960,Education,Education +315906,Employment and Training,Employment and Training +249821,Health,Health +441088,Economic Development,Développement économique +485454,Regional Development,Développement régional +459045,Tourism,Tourisme +187466,Taxation and Finance,Taxation and Finance +181485,Transportation,Transportation +181485,Economic Development,Economic Development +181044,Health,Health +321791,Housing,Housing +212947,Taxation and Finance,Taxation and Finance +201268,Government Procurement,Government Procurement +191590,Industry,Industry +476661,Energy,Energy +181264,Government Procurement,Government Procurement +181264,Infrastructure,Infrastructure +181265,Government Procurement,Government Procurement +181265,Infrastructure,Infrastructure +181267,Government Procurement,Government Procurement +181267,Infrastructure,Infrastructure +260249,Transportation,Transports +181304,Government Procurement,Government Procurement +181304,Infrastructure,Infrastructure +181305,Government Procurement,Government Procurement +181305,Infrastructure,Infrastructure +181526,Government Procurement,Government Procurement +181544,Employment and Training,Employment and Training +187467,Taxation and Finance,Taxation and Finance +438405,Intellectual Property,Intellectual Property +225427,Economic Development,Economic Development +276949,Research and Development,Research and Development (R&D) +198547,Transportation,Transportation +182984,Intellectual Property,Intellectual Property +188108,Economic Development,Economic Development +188108,Energy,Energy +188108,Government Procurement,Government Procurement +188108,Infrastructure,Infrastructure +188108,Research and Development,Research and Development (R&D) +188108,Taxation and Finance,Taxation and Finance +182344,Security,Security +221827,Industry,Industry +192924,Agriculture,Agriculture +197343,Environment,Environment +192924,Fisheries,Fisheries +410346,Agriculture,Agriculture +428256,International Trade,International Trade +418212,International Trade,International Trade +205587,Health,Health +443532,Security,Security +208507,International Development,International Development +479117,Research and Development,Research and Development (R&D) +440911,Employment and Training,Employment and Training +194679,Climate,Climate +194679,Energy,Energy +194679,Environment,Environment +194679,Industry,Industry +330626,Education,Education +194994,Employment and Training,Employment and Training +191551,Defence,Defence +197256,Justice and Law Enforcement,Justice and Law Enforcement +197308,Security,Security +202956,Defence,Defence +202956,Government Procurement,Government Procurement +232390,Intellectual Property,Intellectual Property +230348,Employment and Training,Employment and Training +230351,Environment,Environment +230347,Mining,Mining +202491,Health,Health +216047,Infrastructure,Infrastructure +336251,Education,Education +294437,Infrastructure,Infrastructure +199885,Taxation and Finance,Impôts et finances +216069,Infrastructure,Infrastructure +199623,Research and Development,Research and Development +257609,Economic Development,Economic Development +202492,Education,Education +257609,Energy,Energy +257609,Environment,Environment +206274,Infrastructure,Infrastructure +202492,Research and Development,Research and Development +330684,Research and Development,Research and Development +214888,Agriculture,Agriculture +214888,Climate,Climate +211407,Environment,Environment +211931,International Trade,International Trade +185248,Environment,Environment +197112,Taxation and Finance,Impôts et finances +188516,Justice and Law Enforcement,Justice and Law Enforcement +188515,Energy,Energy +319509,International Trade,International Trade +319509,Regional Development,Regional Development +319509,Small Business,Small Business +440911,Government Procurement,Government Procurement +399370,Employment and Training,Employment and Training +416917,Research and Development,Research and Development +185526,Regional Development,Regional Development +185545,Intellectual Property,Intellectual Property +185545,International Trade,International Trade +185886,Agriculture,Agriculture +196388,Economic Development,Economic Development +416907,Environment,Environment +246892,International Trade,International Trade +226946,Research and Development,Research and Development +190844,Financial Institutions,Financial Institutions +188878,Environment,Environment +443622,Environment,Environment +188597,Environment,Environment +186204,Intellectual Property,Intellectual Property +186244,Intellectual Property,Intellectual Property +186265,Intellectual Property,Intellectual Property +459757,Research and Development,Research and Development +188026,Agriculture,Agriculture +188026,Taxation and Finance,Impôts et finances +188026,Small Business,Petites entreprises +248173,International Relations,International Relations +198207,International Trade,International Trade +210490,Tourism,Tourism +247835,Transportation,Transportation +187284,International Trade,International Trade +202779,Financial Institutions,Financial Institutions +192366,Agriculture,Agriculture +192365,Consumer Issues,Consumer Issues +192365,Environment,Environment +444250,Budget,Budget +460967,Environment,Environment +455648,Environment,Environment +455647,Environment,Environment +455645,Environment,Environment +452581,Environment,Environment +452574,Environment,Environment +447444,Environment,Environment +447443,Environment,Environment +447441,Environment,Environment +447440,Environment,Environment +443631,Environment,Environment +443626,Environment,Environment +447854,Research and Development,Research and Development +443951,Research and Development,Research and Development +186384,Research and Development,Research and Development +269849,Research and Development,Research and Development +258239,Research and Development,Research and Development +403847,Research and Development,Research and Development +403843,Research and Development,Research and Development +379901,Research and Development,Research and Development +460641,Research and Development,Research and Development +459758,Research and Development,Research and Development +188025,Agriculture,Agriculture +188025,Taxation and Finance,Impôts et finances +188025,Small Business,Petites entreprises +247849,International Relations,International Relations +247835,International Relations,International Relations +247849,International Trade,International Trade +247835,International Trade,International Trade +202226,International Trade,International Trade +288613,Tourism,Tourism +256570,Tourism,Tourism +248173,Tourism,Tourism +247835,Tourism,Tourism +216071,Tourism,Tourism +216071,Transportation,Transportation +210490,Transportation,Transportation +188431,Transportation,Transportation +288613,Transportation,Transportation +256570,Transportation,Transportation +248173,Transportation,Transportation +247849,Transportation,Transportation +192365,Agriculture,Agriculture +192364,Agriculture,Agriculture +242849,Agriculture,Agriculture +192367,Agriculture,Agriculture +192364,Environment,Environment +386162,Budget,Budget +375454,Budget,Budget +188964,Budget,Budget +196973,Tourism,Tourism +247599,Transportation,Transportation +196973,Small Business,Small Business +226047,Industry,Industry +272492,Tourism,Tourism +226047,Tourism,Tourism +272492,Transportation,Transportation +226047,Transportation,Transportation +220487,Research and Development,Research and Development +207807,Research and Development,Research and Development +187204,Research and Development,Research and Development +207468,Health,Health +197452,Health,Health +250677,Health,Health +250673,Health,Health +250668,Health,Health +250666,Health,Health +250664,Health,Health +250662,Health,Health +250658,Health,Health +250653,Health,Health +250626,Health,Health +250618,Health,Health +207484,Health,Health +250677,Industry,Industry +250673,Industry,Industry +250668,Industry,Industry +250666,Industry,Industry +250664,Industry,Industry +250662,Industry,Industry +250658,Industry,Industry +250653,Industry,Industry +189768,Agriculture,Agriculture +189767,Agriculture,Agriculture +200581,Agriculture,Agriculture +189775,Agriculture,Agriculture +189774,Agriculture,Agriculture +189773,Agriculture,Agriculture +189772,Agriculture,Agriculture +189771,Agriculture,Agriculture +189767,Economic Development,Economic Development +200581,Economic Development,Economic Development +189775,Economic Development,Economic Development +189774,Economic Development,Economic Development +189773,Economic Development,Economic Development +189772,Economic Development,Economic Development +189771,Economic Development,Economic Development +189770,Economic Development,Economic Development +189768,International Trade,International Trade +189767,International Trade,International Trade +200581,International Trade,International Trade +189775,International Trade,International Trade +189774,International Trade,International Trade +189773,International Trade,International Trade +189772,International Trade,International Trade +189771,International Trade,International Trade +189768,Transportation,Transportation +189767,Transportation,Transportation +200581,Transportation,Transportation +189775,Transportation,Transportation +189774,Transportation,Transportation +189773,Transportation,Transportation +189772,Transportation,Transportation +189771,Transportation,Transportation +524323,Agriculture,Agriculture +524321,Agriculture,Agriculture +199699,Agriculture,Agriculture +369766,Agriculture,Agriculture +369765,Agriculture,Agriculture +347581,Agriculture,Agriculture +347580,Agriculture,Agriculture +317371,Agriculture,Agriculture +284189,Agriculture,Agriculture +259816,Agriculture,Agriculture +418597,Agriculture,Agriculture +394826,Agriculture,Agriculture +394825,Agriculture,Agriculture +394824,Agriculture,Agriculture +463769,Agriculture,Agriculture +463768,Agriculture,Agriculture +463766,Agriculture,Agriculture +427970,Agriculture,Agriculture +422944,Agriculture,Agriculture +427970,Consumer Issues,Consumer Issues +422944,Consumer Issues,Consumer Issues +199699,Consumer Issues,Consumer Issues +437716,Consumer Issues,Consumer Issues +437715,Consumer Issues,Consumer Issues +422943,Health,Health +419078,Health,Health +437716,Health,Health +437715,Health,Health +437714,Health,Health +434528,International Trade,International Trade +427970,International Trade,International Trade +369766,International Trade,International Trade +369765,International Trade,International Trade +347581,International Trade,International Trade +347580,International Trade,International Trade +317371,International Trade,International Trade +304990,International Trade,International Trade +259816,International Trade,International Trade +199699,International Trade,International Trade +422943,International Trade,International Trade +419078,International Trade,International Trade +418597,International Trade,International Trade +394826,International Trade,International Trade +394825,International Trade,International Trade +394824,International Trade,International Trade +524322,International Trade,International Trade +463769,International Trade,International Trade +463768,International Trade,International Trade +463766,International Trade,International Trade +437716,International Trade,International Trade +437715,International Trade,International Trade +437714,International Trade,International Trade +236169,Energy,Energy +232413,Energy,Energy +232413,Environment,Environment +275414,Health,Health +275413,Health,Health +197367,Health,Health +197363,Health,Health +191804,Health,Health +191784,Health,Health +191764,Health,Health +355609,Health,Health +355608,Health,Health +355607,Health,Health +355606,Health,Health +355605,Health,Health +355603,Health,Health +326332,Health,Health +326331,Health,Health +326330,Health,Health +275418,Health,Health +275417,Health,Health +275416,Health,Health +191784,Industry,Industry +191764,Industry,Industry +197367,Industry,Industry +197363,Industry,Industry +191784,Taxation and Finance,Taxation and Finance +191764,Taxation and Finance,Taxation and Finance +196687,Infrastructure,Infrastructure +271260,Economic Development,Economic Development +271259,Economic Development,Economic Development +215510,Economic Development,Economic Development +215508,Economic Development,Economic Development +215507,Economic Development,Economic Development +213507,Economic Development,Economic Development +200560,Economic Development,Economic Development +196930,Economic Development,Economic Development +196929,Economic Development,Economic Development +343883,Economic Development,Economic Development +341763,Economic Development,Economic Development +308851,Economic Development,Economic Development +308850,Economic Development,Economic Development +275051,Economic Development,Economic Development +271262,Economic Development,Economic Development +271260,Industry,Industry +271259,Industry,Industry +215510,Industry,Industry +215508,Industry,Industry +215507,Industry,Industry +213507,Industry,Industry +200560,Industry,Industry +196929,Industry,Industry +344130,Industry,Industry +343883,Industry,Industry +341763,Industry,Industry +275051,Industry,Industry +271262,Industry,Industry +343883,Research and Development,Research and Development +341763,Research and Development,Research and Development +192495,Research and Development,Research and Development +191109,Research and Development,Research and Development +308851,Research and Development,Research and Development +308850,Research and Development,Research and Development +284011,Research and Development,Research and Development +275051,Research and Development,Research and Development +271262,Research and Development,Research and Development +271261,Research and Development,Research and Development +271260,Research and Development,Research and Development +271259,Research and Development,Research and Development +215510,Research and Development,Research and Development +215508,Research and Development,Research and Development +215507,Research and Development,Research and Development +213507,Research and Development,Research and Development +200560,Research and Development,Research and Development +196930,Research and Development,Research and Development +196929,Research and Development,Research and Development +358943,Research and Development,Research and Development +206350,Economic Development,Economic Development +202517,Economic Development,Economic Development +192496,Economic Development,Economic Development +223142,Economic Development,Economic Development +192496,Environment,Environment +206350,Industry,Industry +192496,Industry,Industry +223142,Industry,Industry +192496,Research and Development,Research and Development +223142,Research and Development,Research and Development +207449,Research and Development,Research and Development +206350,Research and Development,Research and Development +192496,Sports,Sports +234969,Fisheries,Fisheries +355765,Fisheries,Fisheries +260250,Fisheries,Fisheries +238289,Fisheries,Fisheries +436612,Climate,Climate +530633,Climate,Climate +331190,Climate,Climate +331188,Climate,Climate +466031,Climate,Climate +440656,Climate,Climate +283989,Employment and Training,Employment and Training +423637,Employment and Training,Employment and Training +330484,Employment and Training,Employment and Training +338686,Labour,Labour +193388,Industry,Industry +193387,Industry,Industry +188448,International Trade,International Trade +380295,International Trade,International Trade +352962,International Trade,International Trade +211352,International Trade,International Trade +272429,Housing,Housing +192468,Agriculture,Agriculture +192467,Agriculture,Agriculture +192466,Agriculture,Agriculture +192465,Agriculture,Agriculture +192464,Agriculture,Agriculture +302114,Agriculture,Agriculture +302109,Agriculture,Agriculture +268276,Agriculture,Agriculture +268270,Agriculture,Agriculture +268269,Agriculture,Agriculture +221068,Agriculture,Agriculture +221067,Agriculture,Agriculture +211207,Agriculture,Agriculture +206352,Agriculture,Agriculture +201847,Agriculture,Agriculture +244016,Agriculture,Agriculture +244015,Agriculture,Agriculture +206353,Agriculture,Agriculture +201867,Agriculture,Agriculture +200154,Agriculture,Agriculture +192602,Agriculture,Agriculture +192601,Agriculture,Agriculture +192600,Agriculture,Agriculture +192599,Agriculture,Agriculture +192598,Agriculture,Agriculture +302113,Agriculture,Agriculture +302110,Agriculture,Agriculture +280171,Agriculture,Agriculture +274733,Agriculture,Agriculture +274732,Agriculture,Agriculture +274731,Agriculture,Agriculture +274730,Agriculture,Agriculture +274729,Agriculture,Agriculture +272875,Agriculture,Agriculture +268273,Agriculture,Agriculture +268272,Agriculture,Agriculture +253350,Agriculture,Agriculture +253349,Agriculture,Agriculture +193389,Industry,Industry +441988,Intellectual Property,Intellectual Property +430649,Intellectual Property,Intellectual Property +197033,Intellectual Property,Intellectual Property +396108,Intellectual Property,Intellectual Property +396105,Intellectual Property,Intellectual Property +384833,Intellectual Property,Intellectual Property +384831,Intellectual Property,Intellectual Property +376015,Intellectual Property,Intellectual Property +245004,Intellectual Property,Intellectual Property +245003,Intellectual Property,Intellectual Property +245004,Taxation and Finance,Taxation and Finance +245003,Taxation and Finance,Taxation and Finance +268271,Agriculture,Agriculture +253352,Agriculture,Agriculture +253351,Agriculture,Agriculture +244014,Agriculture,Agriculture +244010,Agriculture,Agriculture +239970,Agriculture,Agriculture +201827,Agriculture,Agriculture +200150,Agriculture,Agriculture +192594,Agriculture,Agriculture +192592,Agriculture,Agriculture +192591,Agriculture,Agriculture +192590,Agriculture,Agriculture +192587,Agriculture,Agriculture +302111,Agriculture,Agriculture +348699,Agriculture,Agriculture +275451,Agriculture,Agriculture +188665,Agriculture,Agriculture +272195,Agriculture,Agriculture +272194,Agriculture,Agriculture +272193,Agriculture,Agriculture +272192,Agriculture,Agriculture +272189,Agriculture,Agriculture +266592,Agriculture,Agriculture +266591,Agriculture,Agriculture +266590,Agriculture,Agriculture +266589,Agriculture,Agriculture +261391,Agriculture,Agriculture +261390,Agriculture,Agriculture +261389,Agriculture,Agriculture +257452,Agriculture,Agriculture +257451,Agriculture,Agriculture +257450,Agriculture,Agriculture +257449,Agriculture,Agriculture +356230,Agriculture,Agriculture +352469,Environment,Environment +348699,Environment,Environment +281069,Environment,Environment +275451,Environment,Environment +272195,Environment,Environment +272194,Environment,Environment +272193,Environment,Environment +272192,Environment,Environment +272191,Environment,Environment +272190,Environment,Environment +272189,Environment,Environment +266592,Environment,Environment +266591,Environment,Environment +266590,Environment,Environment +266589,Environment,Environment +262912,Environment,Environment +262890,Environment,Environment +261391,Environment,Environment +261390,Environment,Environment +261389,Environment,Environment +257452,Environment,Environment +257451,Environment,Environment +257450,Environment,Environment +257449,Environment,Environment +190857,Environment,Environment +400580,Labour,Labour +400577,Labour,Labour +199604,Labour,Labour +212117,Labour,Labour +212096,Labour,Labour +466470,Transportation,Transportation +466469,Transportation,Transportation +226502,Transportation,Transportation +202597,Transportation,Transportation +188776,Transportation,Transportation +357797,Transportation,Transportation +341135,Transportation,Transportation +331347,Transportation,Transportation +324252,Transportation,Transportation +324249,Transportation,Transportation +324247,Transportation,Transportation +321757,Transportation,Transportation +253754,Transportation,Transportation +415090,Transportation,Transportation +415089,Transportation,Transportation +415086,Transportation,Transportation +415085,Transportation,Transportation +415084,Transportation,Transportation +415080,Transportation,Transportation +533407,Transportation,Transportation +188825,Security,Security +199620,Privacy and Access to Information,Privacy and Access to Information +188826,Privacy and Access to Information,Privacy and Access to Information +297369,Privacy and Access to Information,Privacy and Access to Information +243529,Privacy and Access to Information,Privacy and Access to Information +226540,Privacy and Access to Information,Privacy and Access to Information +215812,Privacy and Access to Information,Privacy and Access to Information +215811,Privacy and Access to Information,Privacy and Access to Information +205507,Privacy and Access to Information,Privacy and Access to Information +200277,International Relations,International Relations +200266,International Relations,International Relations +200256,International Relations,International Relations +194720,International Relations,International Relations +194719,International Relations,International Relations +194714,International Relations,International Relations +194714,International Trade,International Trade +188907,International Trade,International Trade +200277,International Trade,International Trade +200266,International Trade,International Trade +200256,International Trade,International Trade +194720,International Trade,International Trade +485514,Pensions,Pensions +485513,Pensions,Pensions +267370,Pensions,Pensions +267369,Pensions,Pensions +260349,Pensions,Pensions +237230,Pensions,Pensions +237229,Pensions,Pensions +208807,Pensions,Pensions +208787,Pensions,Pensions +200107,Pensions,Pensions +191304,Pensions,Pensions +350836,Pensions,Pensions +342797,Pensions,Pensions +342420,Pensions,Pensions +337171,Pensions,Pensions +337170,Pensions,Pensions +337169,Pensions,Pensions +319969,Pensions,Pensions +317050,Pensions,Pensions +317049,Pensions,Pensions +311810,Pensions,Pensions +311809,Pensions,Pensions +465267,Pensions,Pensions +465266,Pensions,Pensions +453703,Pensions,Pensions +451921,Pensions,Pensions +451920,Pensions,Pensions +449575,Pensions,Pensions +449573,Pensions,Pensions +445108,Pensions,Pensions +421813,Pensions,Pensions +418255,Pensions,Pensions +416000,Pensions,Pensions +415996,Pensions,Pensions +415993,Pensions,Pensions +415992,Pensions,Pensions +415157,Pensions,Pensions +415155,Pensions,Pensions +415153,Pensions,Pensions +415150,Pensions,Pensions +411979,Pensions,Pensions +404619,Pensions,Pensions +391919,Pensions,Pensions +388979,Pensions,Pensions +379187,Pensions,Pensions +379184,Pensions,Pensions +378788,Pensions,Pensions +370666,Pensions,Pensions +370665,Pensions,Pensions +368302,Pensions,Pensions +542165,Pensions,Pensions +534176,Pensions,Pensions +530979,Pensions,Pensions +530290,Pensions,Pensions +527690,Pensions,Pensions +527688,Pensions,Pensions +527686,Pensions,Pensions +526746,Pensions,Pensions +524076,Pensions,Pensions +523526,Pensions,Pensions +506256,Pensions,Pensions +499864,Pensions,Pensions +495364,Pensions,Pensions +423943,Taxation and Finance,Taxation and Finance +419527,Taxation and Finance,Taxation and Finance +322773,Taxation and Finance,Taxation and Finance +322772,Taxation and Finance,Taxation and Finance +319969,Taxation and Finance,Taxation and Finance +317050,Taxation and Finance,Taxation and Finance +317049,Taxation and Finance,Taxation and Finance +311811,Taxation and Finance,Taxation and Finance +311810,Taxation and Finance,Taxation and Finance +311809,Taxation and Finance,Taxation and Finance +297929,Taxation and Finance,Taxation and Finance +297909,Taxation and Finance,Taxation and Finance +287432,Taxation and Finance,Taxation and Finance +287430,Taxation and Finance,Taxation and Finance +267370,Taxation and Finance,Taxation and Finance +267369,Taxation and Finance,Taxation and Finance +260349,Taxation and Finance,Taxation and Finance +254591,Taxation and Finance,Taxation and Finance +237230,Taxation and Finance,Taxation and Finance +237229,Taxation and Finance,Taxation and Finance +227194,Taxation and Finance,Taxation and Finance +208807,Taxation and Finance,Taxation and Finance +208787,Taxation and Finance,Taxation and Finance +200107,Taxation and Finance,Taxation and Finance +191305,Taxation and Finance,Taxation and Finance +418255,Taxation and Finance,Taxation and Finance +416805,Taxation and Finance,Taxation and Finance +416000,Taxation and Finance,Taxation and Finance +415996,Taxation and Finance,Taxation and Finance +415993,Taxation and Finance,Taxation and Finance +415992,Taxation and Finance,Taxation and Finance +415157,Taxation and Finance,Taxation and Finance +415155,Taxation and Finance,Taxation and Finance +415153,Taxation and Finance,Taxation and Finance +415150,Taxation and Finance,Taxation and Finance +411982,Taxation and Finance,Taxation and Finance +411981,Taxation and Finance,Taxation and Finance +411979,Taxation and Finance,Taxation and Finance +411977,Taxation and Finance,Taxation and Finance +411975,Taxation and Finance,Taxation and Finance +411972,Taxation and Finance,Taxation and Finance +410180,Taxation and Finance,Taxation and Finance +410177,Taxation and Finance,Taxation and Finance +410174,Taxation and Finance,Taxation and Finance +408928,Taxation and Finance,Taxation and Finance +408927,Taxation and Finance,Taxation and Finance +408926,Taxation and Finance,Taxation and Finance +407969,Taxation and Finance,Taxation and Finance +407968,Taxation and Finance,Taxation and Finance +407967,Taxation and Finance,Taxation and Finance +404618,Taxation and Finance,Taxation and Finance +404617,Taxation and Finance,Taxation and Finance +399500,Taxation and Finance,Taxation and Finance +399158,Taxation and Finance,Taxation and Finance +397236,Taxation and Finance,Taxation and Finance +397235,Taxation and Finance,Taxation and Finance +393162,Taxation and Finance,Taxation and Finance +393161,Taxation and Finance,Taxation and Finance +391919,Taxation and Finance,Taxation and Finance +388979,Taxation and Finance,Taxation and Finance +386798,Taxation and Finance,Taxation and Finance +386793,Taxation and Finance,Taxation and Finance +385776,Taxation and Finance,Taxation and Finance +385775,Taxation and Finance,Taxation and Finance +385774,Taxation and Finance,Taxation and Finance +384187,Taxation and Finance,Taxation and Finance +384186,Taxation and Finance,Taxation and Finance +384185,Taxation and Finance,Taxation and Finance +379187,Taxation and Finance,Taxation and Finance +379184,Taxation and Finance,Taxation and Finance +378788,Taxation and Finance,Taxation and Finance +378787,Taxation and Finance,Taxation and Finance +375084,Taxation and Finance,Taxation and Finance +375083,Taxation and Finance,Taxation and Finance +370666,Taxation and Finance,Taxation and Finance +370665,Taxation and Finance,Taxation and Finance +368302,Taxation and Finance,Taxation and Finance +367636,Taxation and Finance,Taxation and Finance +362583,Taxation and Finance,Taxation and Finance +356937,Taxation and Finance,Taxation and Finance +356936,Taxation and Finance,Taxation and Finance +347102,Taxation and Finance,Taxation and Finance +347101,Taxation and Finance,Taxation and Finance +342797,Taxation and Finance,Taxation and Finance +342421,Taxation and Finance,Taxation and Finance +342420,Taxation and Finance,Taxation and Finance +337171,Taxation and Finance,Taxation and Finance +337170,Taxation and Finance,Taxation and Finance +337169,Taxation and Finance,Taxation and Finance +542165,Taxation and Finance,Taxation and Finance +534176,Taxation and Finance,Taxation and Finance +530979,Taxation and Finance,Taxation and Finance +527690,Taxation and Finance,Taxation and Finance +527688,Taxation and Finance,Taxation and Finance +527686,Taxation and Finance,Taxation and Finance +526746,Taxation and Finance,Taxation and Finance +524076,Taxation and Finance,Taxation and Finance +523526,Taxation and Finance,Taxation and Finance +514914,Taxation and Finance,Taxation and Finance +504608,Taxation and Finance,Taxation and Finance +499864,Taxation and Finance,Taxation and Finance +499863,Taxation and Finance,Taxation and Finance +495413,Taxation and Finance,Taxation and Finance +495409,Taxation and Finance,Taxation and Finance +495400,Taxation and Finance,Taxation and Finance +495364,Taxation and Finance,Taxation and Finance +487261,Taxation and Finance,Taxation and Finance +485514,Taxation and Finance,Taxation and Finance +485513,Taxation and Finance,Taxation and Finance +465267,Taxation and Finance,Taxation and Finance +465266,Taxation and Finance,Taxation and Finance +461614,Taxation and Finance,Taxation and Finance +453703,Taxation and Finance,Taxation and Finance +451921,Taxation and Finance,Taxation and Finance +451920,Taxation and Finance,Taxation and Finance +449575,Taxation and Finance,Taxation and Finance +449573,Taxation and Finance,Taxation and Finance +446181,Taxation and Finance,Taxation and Finance +445111,Taxation and Finance,Taxation and Finance +445108,Taxation and Finance,Taxation and Finance +444245,Taxation and Finance,Taxation and Finance +438012,Taxation and Finance,Taxation and Finance +438010,Taxation and Finance,Taxation and Finance +438005,Taxation and Finance,Taxation and Finance +437999,Taxation and Finance,Taxation and Finance +437995,Taxation and Finance,Taxation and Finance +434536,Taxation and Finance,Taxation and Finance +433631,Taxation and Finance,Taxation and Finance +430554,Taxation and Finance,Taxation and Finance +430553,Taxation and Finance,Taxation and Finance +246754,Consumer Issues,Consumer Issues +352061,Consumer Issues,Consumer Issues +419400,Justice and Law Enforcement,Justice and Law Enforcement +211171,Intellectual Property,Intellectual Property +207754,Intellectual Property,Intellectual Property +201069,Intellectual Property,Intellectual Property +196513,Intellectual Property,Intellectual Property +191191,Intellectual Property,Intellectual Property +194772,International Development,International Development +189105,International Development,International Development +244983,International Development,International Development +241054,International Development,International Development +231289,International Development,International Development +231271,International Development,International Development +231269,International Development,International Development +217869,International Development,International Development +210353,International Development,International Development +210352,International Development,International Development +203848,International Development,International Development +197362,International Development,International Development +197360,International Development,International Development +194777,International Development,International Development +424495,Fisheries,Fisheries +406058,Fisheries,Fisheries +264031,Fisheries,Fisheries +229744,Fisheries,Fisheries +229739,Fisheries,Fisheries +189639,Fisheries,Fisheries +189638,Fisheries,Fisheries +273571,Fisheries,Fisheries +273570,Fisheries,Fisheries +273568,Fisheries,Fisheries +264032,Fisheries,Fisheries +424499,Fisheries,Fisheries +424498,Fisheries,Fisheries +382637,International Trade,International Trade +376331,International Trade,International Trade +189651,International Trade,International Trade +372550,International Trade,International Trade +372314,International Trade,International Trade +369392,International Trade,International Trade +358100,International Trade,International Trade +353623,International Trade,International Trade +349267,International Trade,International Trade +344091,International Trade,International Trade +344090,International Trade,International Trade +344089,International Trade,International Trade +304505,International Trade,International Trade +304496,International Trade,International Trade +297070,International Trade,International Trade +250393,International Trade,International Trade +435283,International Trade,International Trade +398925,International Trade,International Trade +397041,International Trade,International Trade +397040,International Trade,International Trade +394482,International Trade,International Trade +189652,International Trade,International Trade +304506,International Trade,International Trade +304495,International Trade,International Trade +297075,International Trade,International Trade +250396,International Trade,International Trade +250394,International Trade,International Trade +376327,International Trade,International Trade +376326,International Trade,International Trade +374990,International Trade,International Trade +372319,International Trade,International Trade +372315,International Trade,International Trade +372201,International Trade,International Trade +372186,International Trade,International Trade +369389,International Trade,International Trade +369388,International Trade,International Trade +366767,International Trade,International Trade +358101,International Trade,International Trade +358097,International Trade,International Trade +344087,International Trade,International Trade +528894,International Trade,International Trade +442240,International Trade,International Trade +420118,International Trade,International Trade +401229,International Trade,International Trade +372540,International Trade,International Trade +543158,International Trade,International Trade +250397,International Trade,International Trade +189655,International Trade,International Trade +372300,International Trade,International Trade +372204,International Trade,International Trade +372195,International Trade,International Trade +369391,International Trade,International Trade +366766,International Trade,International Trade +362144,International Trade,International Trade +355848,International Trade,International Trade +355847,International Trade,International Trade +344095,International Trade,International Trade +344093,International Trade,International Trade +344092,International Trade,International Trade +344088,International Trade,International Trade +463987,International Trade,International Trade +443629,International Trade,International Trade +420115,International Trade,International Trade +397043,International Trade,International Trade +394458,International Trade,International Trade +382638,International Trade,International Trade +381572,International Trade,International Trade +374992,International Trade,International Trade +442217,Budget,Budget +435283,Budget,Budget +517327,Employment and Training,Employment and Training +463992,Employment and Training,Employment and Training +337149,Employment and Training,Employment and Training +337132,Employment and Training,Employment and Training +330135,Employment and Training,Employment and Training +330133,Employment and Training,Employment and Training +310429,Employment and Training,Employment and Training +310424,Employment and Training,Employment and Training +297075,Employment and Training,Employment and Training +297069,Employment and Training,Employment and Training +286636,Employment and Training,Employment and Training +250396,Employment and Training,Employment and Training +250395,Employment and Training,Employment and Training +250394,Employment and Training,Employment and Training +250393,Employment and Training,Employment and Training +233611,Employment and Training,Employment and Training +200366,Employment and Training,Employment and Training +200354,Employment and Training,Employment and Training +200350,Employment and Training,Employment and Training +200346,Employment and Training,Employment and Training +200342,Employment and Training,Employment and Training +200338,Employment and Training,Employment and Training +200334,Employment and Training,Employment and Training +200331,Employment and Training,Employment and Training +200328,Employment and Training,Employment and Training +358101,Employment and Training,Employment and Training +223209,Budget,Budget +408035,Budget,Budget +404723,Budget,Budget +404715,Budget,Budget +404714,Budget,Budget +404713,Budget,Budget +404712,Budget,Budget +404711,Budget,Budget +404710,Budget,Budget +404708,Budget,Budget +404707,Budget,Budget +404705,Budget,Budget +404704,Budget,Budget +404701,Budget,Budget +539223,Budget,Budget +534444,Budget,Budget +530925,Budget,Budget +530922,Budget,Budget +530920,Budget,Budget +529199,Budget,Budget +529192,Budget,Budget +529188,Budget,Budget +529183,Budget,Budget +529178,Budget,Budget +529176,Budget,Budget +519692,Budget,Budget +519687,Budget,Budget +451521,Budget,Budget +480011,Economic Development,Economic Development +480009,Economic Development,Economic Development +477807,Economic Development,Economic Development +475735,Economic Development,Economic Development +473552,Economic Development,Economic Development +470948,Economic Development,Economic Development +470946,Economic Development,Economic Development +470942,Economic Development,Economic Development +470546,Economic Development,Economic Development +534450,Economic Development,Economic Development +530925,Economic Development,Economic Development +530923,Economic Development,Economic Development +530922,Economic Development,Economic Development +529199,Economic Development,Economic Development +529194,Economic Development,Economic Development +529179,Economic Development,Economic Development +525696,Economic Development,Economic Development +525686,Economic Development,Economic Development +520834,Economic Development,Economic Development +517547,Economic Development,Economic Development +517535,Economic Development,Economic Development +515526,Economic Development,Economic Development +514100,Economic Development,Economic Development +514098,Economic Development,Economic Development +512856,Economic Development,Economic Development +512844,Economic Development,Economic Development +510602,Economic Development,Economic Development +508447,Economic Development,Economic Development +508445,Economic Development,Economic Development +508444,Economic Development,Economic Development +508441,Economic Development,Economic Development +508439,Economic Development,Economic Development +508430,Economic Development,Economic Development +505037,Economic Development,Economic Development +505034,Economic Development,Economic Development +505016,Economic Development,Economic Development +504988,Economic Development,Economic Development +504973,Economic Development,Economic Development +504956,Economic Development,Economic Development +504943,Economic Development,Economic Development +501854,Economic Development,Economic Development +501843,Economic Development,Economic Development +501837,Economic Development,Economic Development +501834,Economic Development,Economic Development +501832,Economic Development,Economic Development +501828,Economic Development,Economic Development +501820,Economic Development,Economic Development +501800,Economic Development,Economic Development +501788,Economic Development,Economic Development +501781,Economic Development,Economic Development +501777,Economic Development,Economic Development +499364,Economic Development,Economic Development +499078,Economic Development,Economic Development +499072,Economic Development,Economic Development +499067,Economic Development,Economic Development +499065,Economic Development,Economic Development +499060,Economic Development,Economic Development +499054,Economic Development,Economic Development +499052,Economic Development,Economic Development +499041,Economic Development,Economic Development +499038,Economic Development,Economic Development +495598,Economic Development,Economic Development +495597,Economic Development,Economic Development +495596,Economic Development,Economic Development +495595,Economic Development,Economic Development +495594,Economic Development,Economic Development +495593,Economic Development,Economic Development +493233,Economic Development,Economic Development +493231,Economic Development,Economic Development +493229,Economic Development,Economic Development +493227,Economic Development,Economic Development +493222,Economic Development,Economic Development +493220,Economic Development,Economic Development +493215,Economic Development,Economic Development +493213,Economic Development,Economic Development +493212,Economic Development,Economic Development +493211,Economic Development,Economic Development +493209,Economic Development,Economic Development +493208,Economic Development,Economic Development +490522,Economic Development,Economic Development +490519,Economic Development,Economic Development +490513,Economic Development,Economic Development +487424,Economic Development,Economic Development +487420,Economic Development,Economic Development +484847,Economic Development,Economic Development +484845,Economic Development,Economic Development +214307,Budget,Budget +214287,Budget,Budget +190444,Budget,Budget +214347,Budget,Budget +207507,Employment and Training,Employment and Training +201189,Employment and Training,Employment and Training +214467,Employment and Training,Employment and Training +214447,Employment and Training,Employment and Training +254140,Economic Development,Economic Development +239909,Economic Development,Economic Development +329824,Economic Development,Economic Development +328310,Economic Development,Economic Development +312757,Economic Development,Economic Development +199731,Research and Development,Research and Development +353859,Research and Development,Research and Development +239909,Research and Development,Research and Development +198690,Energy,Energy +198690,Industry,Industry +289330,Environment,Environment +289292,Environment,Environment +289370,Environment,Environment +289369,Industry,Industry +289330,Agriculture,Agriculture +281629,Agriculture,Agriculture +289370,Agriculture,Agriculture +289292,International Trade,International Trade +281629,International Trade,International Trade +198690,International Trade,International Trade +200519,Regional Development,Regional Development +200515,Regional Development,Regional Development +200522,Regional Development,Regional Development +317109,Budget,Budget +420464,Budget,Budget +200987,Budget,Budget +190565,Budget,Budget +381040,Budget,Budget +368533,Budget,Budget +368530,Budget,Budget +323458,Budget,Budget +323452,Budget,Budget +323451,Budget,Budget +323450,Budget,Budget +323449,Budget,Budget +317119,Budget,Budget +317117,Budget,Budget +317114,Budget,Budget +317112,Budget,Budget +317111,Budget,Budget +317115,Budget,Budget +317113,Budget,Budget +200988,Budget,Budget +190544,Budget,Budget +408160,Budget,Budget +370902,Budget,Budget +370898,Budget,Budget +347958,Budget,Budget +323457,Budget,Budget +323455,Budget,Budget +323454,Budget,Budget +323453,Budget,Budget +317118,Budget,Budget +191568,Intellectual Property,Intellectual Property +191566,Intellectual Property,Intellectual Property +191575,Intellectual Property,Intellectual Property +191574,Intellectual Property,Intellectual Property +191573,Intellectual Property,Intellectual Property +191572,Intellectual Property,Intellectual Property +191571,Intellectual Property,Intellectual Property +191570,Intellectual Property,Intellectual Property +203790,Economic Development,Economic Development +190631,Economic Development,Economic Development +227594,Economic Development,Economic Development +224529,Economic Development,Economic Development +219802,Economic Development,Economic Development +219801,Economic Development,Economic Development +219800,Economic Development,Economic Development +219769,Economic Development,Economic Development +209599,Economic Development,Economic Development +209596,Economic Development,Economic Development +209595,Economic Development,Economic Development +209594,Economic Development,Economic Development +203789,Environment,Environment +190631,Environment,Environment +203791,Environment,Environment +190631,Research and Development,Research and Development +435441,Health,Health +432979,Health,Health +190644,Health,Health +339978,Health,Health +339977,Health,Health +339976,Health,Health +339975,Health,Health +339974,Health,Health +339093,Health,Health +334332,Health,Health +334331,Health,Health +334330,Health,Health +334329,Health,Health +332731,Health,Health +331458,Health,Health +331457,Health,Health +327209,Health,Health +326890,Health,Health +326889,Health,Health +326390,Health,Health +323469,Health,Health +323229,Health,Health +323130,Health,Health +322089,Health,Health +321450,Health,Health +321449,Health,Health +321231,Health,Health +320810,Health,Health +320809,Health,Health +320269,Health,Health +320133,Health,Health +320132,Health,Health +320130,Health,Health +308109,Health,Health +280589,Health,Health +270350,Health,Health +270349,Health,Health +256891,Health,Health +256890,Health,Health +256889,Health,Health +224828,Health,Health +224827,Health,Health +429985,Health,Health +429983,Health,Health +427549,Health,Health +427548,Health,Health +427546,Health,Health +427545,Health,Health +424975,Health,Health +424974,Health,Health +424970,Health,Health +424969,Health,Health +423082,Health,Health +420912,Health,Health +420910,Health,Health +420900,Health,Health +420890,Health,Health +420889,Health,Health +417257,Health,Health +417196,Health,Health +415490,Health,Health +415276,Health,Health +415266,Health,Health +415113,Health,Health +414746,Health,Health +414745,Health,Health +414581,Health,Health +414328,Health,Health +414327,Health,Health +414056,Health,Health +414054,Health,Health +411801,Health,Health +411800,Health,Health +411748,Health,Health +411568,Health,Health +411532,Health,Health +411531,Health,Health +411529,Health,Health +411412,Health,Health +411169,Health,Health +411168,Health,Health +411098,Health,Health +411097,Health,Health +411096,Health,Health +411095,Health,Health +410849,Health,Health +410794,Health,Health +410770,Health,Health +410769,Health,Health +410439,Health,Health +408933,Health,Health +404565,Health,Health +402556,Health,Health +402553,Health,Health +402229,Health,Health +402228,Health,Health +401401,Health,Health +400081,Health,Health +399751,Health,Health +399739,Health,Health +399676,Health,Health +399296,Health,Health +398798,Health,Health +398796,Health,Health +397367,Health,Health +397345,Health,Health +397344,Health,Health +397275,Health,Health +397263,Health,Health +397262,Health,Health +396095,Health,Health +395622,Health,Health +395232,Health,Health +395210,Health,Health +394939,Health,Health +394883,Health,Health +394882,Health,Health +394798,Health,Health +393943,Health,Health +393537,Health,Health +393468,Health,Health +393365,Health,Health +393308,Health,Health +393307,Health,Health +393306,Health,Health +393305,Health,Health +393174,Health,Health +393173,Health,Health +393034,Health,Health +390256,Health,Health +390252,Health,Health +389466,Health,Health +389465,Health,Health +389231,Health,Health +389210,Health,Health +388790,Health,Health +388682,Health,Health +386690,Health,Health +386484,Health,Health +386483,Health,Health +386349,Health,Health +386348,Health,Health +386314,Health,Health +386228,Health,Health +386203,Health,Health +385931,Health,Health +385930,Health,Health +385880,Health,Health +384704,Health,Health +384557,Health,Health +384491,Health,Health +384454,Health,Health +384453,Health,Health +384452,Health,Health +384299,Health,Health +384257,Health,Health +382771,Health,Health +382447,Health,Health +379147,Health,Health +377855,Health,Health +377759,Health,Health +377758,Health,Health +377544,Health,Health +377543,Health,Health +377287,Health,Health +376024,Health,Health +375335,Health,Health +375107,Health,Health +374084,Health,Health +373386,Health,Health +373238,Health,Health +371224,Health,Health +370823,Health,Health +370822,Health,Health +370613,Health,Health +370121,Health,Health +370119,Health,Health +370118,Health,Health +370117,Health,Health +369643,Health,Health +368285,Health,Health +368284,Health,Health +368283,Health,Health +368282,Health,Health +367544,Health,Health +367543,Health,Health +367542,Health,Health +359816,Health,Health +359815,Health,Health +355932,Health,Health +355931,Health,Health +352042,Health,Health +350202,Health,Health +350201,Health,Health +349824,Health,Health +349820,Health,Health +344109,Health,Health +473973,Health,Health +469237,Health,Health +469231,Health,Health +469229,Health,Health +469228,Health,Health +465863,Health,Health +465861,Health,Health +462154,Health,Health +462151,Health,Health +461038,Health,Health +458053,Health,Health +453972,Health,Health +453971,Health,Health +453970,Health,Health +453969,Health,Health +450966,Health,Health +448713,Health,Health +448710,Health,Health +448709,Health,Health +443287,Health,Health +443286,Health,Health +440809,Health,Health +440726,Health,Health +440724,Health,Health +440721,Health,Health +436823,Health,Health +285570,International Relations,International Relations +285570,International Trade,International Trade +285569,International Trade,International Trade +285589,International Trade,International Trade +197148,Health,Health +197147,Health,Health +229196,Health,Health +215967,Health,Health +197247,Health,Health +197213,Health,Health +197212,Health,Health +197211,Health,Health +197209,Health,Health +197148,Regional Development,Regional Development +197147,Regional Development,Regional Development +197247,Regional Development,Regional Development +197213,Regional Development,Regional Development +197212,Regional Development,Regional Development +197211,Regional Development,Regional Development +197209,Regional Development,Regional Development +197148,Research and Development,Research and Development +197147,Research and Development,Research and Development +229196,Research and Development,Research and Development +215967,Research and Development,Research and Development +197247,Research and Development,Research and Development +197213,Research and Development,Research and Development +197212,Research and Development,Research and Development +197211,Research and Development,Research and Development +197209,Research and Development,Research and Development +200339,Small Business,Small Business +200320,Small Business,Small Business +257449,Energy,Energy +190857,Energy,Energy +352469,Energy,Energy +348699,Energy,Energy +281069,Energy,Energy +275451,Energy,Energy +272195,Energy,Energy +272194,Energy,Energy +272193,Energy,Energy +272192,Energy,Energy +272191,Energy,Energy +272190,Energy,Energy +272189,Energy,Energy +266592,Energy,Energy +266591,Energy,Energy +266590,Energy,Energy +266589,Energy,Energy +262912,Energy,Energy +262890,Energy,Energy +261391,Energy,Energy +261390,Energy,Energy +261389,Energy,Energy +257452,Energy,Energy +257451,Energy,Energy +400743,Infrastructure,Infrastructure +397615,Infrastructure,Infrastructure +194783,Energy,Energy +194781,Energy,Energy +244573,Energy,Energy +222838,Energy,Energy +244596,Energy,Energy +244595,Energy,Energy +244594,Energy,Energy +244595,Environment,Environment +244573,Environment,Environment +268292,Environment,Environment +244595,Industry,Industry +244594,Industry,Industry +244573,Industry,Industry +222839,Industry,Industry +244593,International Trade,International Trade +263269,Industry,Industry +263250,Industry,Industry +244314,Industry,Industry +244313,Industry,Industry +244072,Industry,Industry +232470,Industry,Industry +232469,Industry,Industry +232455,Industry,Industry +232454,Industry,Industry +232453,Industry,Industry +232452,Industry,Industry +215989,Industry,Industry +215988,Industry,Industry +197261,Industry,Industry +197259,Industry,Industry +197257,Industry,Industry +197254,Industry,Industry +197248,Industry,Industry +265829,Industry,Industry +265810,Industry,Industry +264440,Industry,Industry +458281,Government Procurement,Government Procurement +430178,Government Procurement,Government Procurement +277049,Government Procurement,Government Procurement +230649,Government Procurement,Government Procurement +229813,Government Procurement,Government Procurement +229810,Government Procurement,Government Procurement +227233,Government Procurement,Government Procurement +223373,Government Procurement,Government Procurement +211841,Government Procurement,Government Procurement +413999,Government Procurement,Government Procurement +384431,Government Procurement,Government Procurement +524013,Government Procurement,Government Procurement +518483,Government Procurement,Government Procurement +494140,Government Procurement,Government Procurement +493832,Government Procurement,Government Procurement +488554,Government Procurement,Government Procurement +459842,Government Procurement,Government Procurement +462759,Climate,Climate +460796,Climate,Climate +206228,Climate,Climate +206227,Climate,Climate +204269,Climate,Climate +195015,Climate,Climate +214687,Climate,Climate +209247,Climate,Climate +206229,Climate,Climate +460795,Climate,Climate +453033,Climate,Climate +453032,Climate,Climate +453031,Climate,Climate +450284,Climate,Climate +433443,Climate,Climate +433442,Climate,Climate +432751,Climate,Climate +432405,Climate,Climate +423260,Climate,Climate +423259,Climate,Climate +423258,Climate,Climate +415661,Climate,Climate +415656,Climate,Climate +415652,Climate,Climate +415649,Climate,Climate +415648,Climate,Climate +415646,Climate,Climate +409603,Climate,Climate +408510,Climate,Climate +406020,Climate,Climate +406019,Climate,Climate +406018,Climate,Climate +398231,Climate,Climate +398229,Climate,Climate +376771,Climate,Climate +544711,Climate,Climate +543581,Climate,Climate +543577,Climate,Climate +543575,Climate,Climate +539604,Climate,Climate +537209,Climate,Climate +537208,Climate,Climate +531245,Climate,Climate +526568,Climate,Climate +523229,Climate,Climate +518267,Climate,Climate +518265,Climate,Climate +518257,Climate,Climate +518254,Climate,Climate +515879,Climate,Climate +515875,Climate,Climate +510760,Climate,Climate +509076,Climate,Climate +509075,Climate,Climate +505118,Climate,Climate +505112,Climate,Climate +505109,Climate,Climate +502215,Climate,Climate +502180,Climate,Climate +502167,Climate,Climate +499386,Climate,Climate +499379,Climate,Climate +496069,Climate,Climate +493642,Climate,Climate +493639,Climate,Climate +485143,Climate,Climate +485132,Climate,Climate +485126,Climate,Climate +485097,Climate,Climate +485094,Climate,Climate +482386,Climate,Climate +467708,Climate,Climate +467626,Climate,Climate +467621,Climate,Climate +464054,Climate,Climate +462762,Climate,Climate +441646,Energy,Energy +441645,Energy,Energy +209907,Energy,Energy +209247,Energy,Energy +206234,Energy,Energy +206232,Energy,Energy +206231,Energy,Energy +206230,Energy,Energy +206229,Energy,Energy +206228,Energy,Energy +206227,Energy,Energy +204270,Energy,Energy +204269,Energy,Energy +204267,Energy,Energy +203332,Energy,Energy +195015,Energy,Energy +195013,Energy,Energy +195010,Energy,Energy +293409,Energy,Energy +277576,Energy,Energy +277574,Energy,Energy +277573,Energy,Energy +277570,Energy,Energy +277566,Energy,Energy +277563,Energy,Energy +277560,Energy,Energy +263129,Energy,Energy +256149,Energy,Energy +248873,Energy,Energy +247393,Energy,Energy +240411,Energy,Energy +214807,Energy,Energy +214787,Energy,Energy +214767,Energy,Energy +214747,Energy,Energy +214707,Energy,Energy +214687,Energy,Energy +214567,Energy,Energy +213369,Energy,Energy +213368,Energy,Energy +213367,Energy,Energy +441640,Energy,Energy +441003,Energy,Energy +433443,Energy,Energy +433442,Energy,Energy +433441,Energy,Energy +432751,Energy,Energy +432405,Energy,Energy +427400,Energy,Energy +423260,Energy,Energy +423259,Energy,Energy +423258,Energy,Energy +419424,Energy,Energy +415661,Energy,Energy +415656,Energy,Energy +415652,Energy,Energy +415649,Energy,Energy +415648,Energy,Energy +415646,Energy,Energy +409603,Energy,Energy +408510,Energy,Energy +407661,Energy,Energy +406441,Energy,Energy +406440,Energy,Energy +406198,Energy,Energy +406020,Energy,Energy +406019,Energy,Energy +406018,Energy,Energy +398231,Energy,Energy +398229,Energy,Energy +393551,Energy,Energy +389703,Energy,Energy +389702,Energy,Energy +385386,Energy,Energy +385385,Energy,Energy +380702,Energy,Energy +380700,Energy,Energy +376771,Energy,Energy +372222,Energy,Energy +372220,Energy,Energy +369563,Energy,Energy +365085,Energy,Energy +365084,Energy,Energy +544711,Energy,Energy +543581,Energy,Energy +543580,Energy,Energy +543577,Energy,Energy +543575,Energy,Energy +543571,Energy,Energy +541658,Energy,Energy +539604,Energy,Energy +537209,Energy,Energy +537208,Energy,Energy +535112,Energy,Energy +531245,Energy,Energy +529313,Energy,Energy +526568,Energy,Energy +523229,Energy,Energy +518267,Energy,Energy +518265,Energy,Energy +518257,Energy,Energy +518254,Energy,Energy +515879,Energy,Energy +515876,Energy,Energy +515875,Energy,Energy +510760,Energy,Energy +509076,Energy,Energy +509075,Energy,Energy +505118,Energy,Energy +505112,Energy,Energy +505109,Energy,Energy +502218,Energy,Energy +502215,Energy,Energy +502180,Energy,Energy +502167,Energy,Energy +499386,Energy,Energy +499379,Energy,Energy +496079,Energy,Energy +496069,Energy,Energy +493642,Energy,Energy +493639,Energy,Energy +487641,Energy,Energy +487637,Energy,Energy +487634,Energy,Energy +487630,Energy,Energy +487626,Energy,Energy +485182,Energy,Energy +485143,Energy,Energy +485132,Energy,Energy +485126,Energy,Energy +485120,Energy,Energy +485117,Energy,Energy +485107,Energy,Energy +485105,Energy,Energy +485097,Energy,Energy +485094,Energy,Energy +485093,Energy,Energy +485088,Energy,Energy +482386,Energy,Energy +482381,Energy,Energy +482377,Energy,Energy +477767,Energy,Energy +475401,Energy,Energy +475395,Energy,Energy +475374,Energy,Energy +473060,Energy,Energy +473057,Energy,Energy +473056,Energy,Energy +473054,Energy,Energy +473051,Energy,Energy +470777,Energy,Energy +470769,Energy,Energy +470756,Energy,Energy +470754,Energy,Energy +467708,Energy,Energy +467656,Energy,Energy +467655,Energy,Energy +467651,Energy,Energy +467650,Energy,Energy +467645,Energy,Energy +467643,Energy,Energy +467641,Energy,Energy +467637,Energy,Energy +467636,Energy,Energy +467626,Energy,Energy +467625,Energy,Energy +467621,Energy,Energy +467616,Energy,Energy +467614,Energy,Energy +467610,Energy,Energy +467575,Energy,Energy +467567,Energy,Energy +464054,Energy,Energy +464053,Energy,Energy +464050,Energy,Energy +464049,Energy,Energy +462970,Energy,Energy +462762,Energy,Energy +462761,Energy,Energy +462760,Energy,Energy +462759,Energy,Energy +461427,Energy,Energy +460796,Energy,Energy +460795,Energy,Energy +459642,Energy,Energy +458755,Energy,Energy +458754,Energy,Energy +458753,Energy,Energy +457517,Energy,Energy +457514,Energy,Energy +457512,Energy,Energy +457509,Energy,Energy +455733,Energy,Energy +455729,Energy,Energy +455722,Energy,Energy +455721,Energy,Energy +455720,Energy,Energy +455717,Energy,Energy +453033,Energy,Energy +453032,Energy,Energy +453031,Energy,Energy +451539,Energy,Energy +451538,Energy,Energy +451537,Energy,Energy +451536,Energy,Energy +451535,Energy,Energy +451528,Energy,Energy +450284,Energy,Energy +446758,Energy,Energy +446756,Energy,Energy +446755,Energy,Energy +446754,Energy,Energy +446753,Energy,Energy +446752,Energy,Energy +446751,Energy,Energy +446750,Energy,Energy +446748,Energy,Energy +446747,Energy,Energy +446746,Energy,Energy +446745,Energy,Energy +446744,Energy,Energy +446743,Energy,Energy +446742,Energy,Energy +446741,Energy,Energy +446740,Energy,Energy +442994,Energy,Energy +442992,Energy,Energy +442991,Energy,Energy +441653,Energy,Energy +441651,Energy,Energy +485097,Environment,Environment +485094,Environment,Environment +206227,Environment,Environment +204270,Environment,Environment +204269,Environment,Environment +204267,Environment,Environment +203332,Environment,Environment +195015,Environment,Environment +195013,Environment,Environment +398231,Environment,Environment +398229,Environment,Environment +380702,Environment,Environment +380700,Environment,Environment +372222,Environment,Environment +372220,Environment,Environment +365085,Environment,Environment +365084,Environment,Environment +363530,Environment,Environment +340795,Environment,Environment +293409,Environment,Environment +263129,Environment,Environment +248873,Environment,Environment +247393,Environment,Environment +240411,Environment,Environment +239629,Environment,Environment +214807,Environment,Environment +214787,Environment,Environment +214767,Environment,Environment +214747,Environment,Environment +214707,Environment,Environment +214687,Environment,Environment +214567,Environment,Environment +213369,Environment,Environment +213368,Environment,Environment +213367,Environment,Environment +209247,Environment,Environment +206234,Environment,Environment +206232,Environment,Environment +206229,Environment,Environment +206228,Environment,Environment +475401,Environment,Environment +475395,Environment,Environment +473054,Environment,Environment +473051,Environment,Environment +467708,Environment,Environment +467641,Environment,Environment +467636,Environment,Environment +462760,Environment,Environment +457512,Environment,Environment +457509,Environment,Environment +451539,Environment,Environment +451538,Environment,Environment +451537,Environment,Environment +451536,Environment,Environment +442994,Environment,Environment +442992,Environment,Environment +442991,Environment,Environment +441653,Environment,Environment +441651,Environment,Environment +441650,Environment,Environment +441646,Environment,Environment +441645,Environment,Environment +441640,Environment,Environment +441003,Environment,Environment +423260,Environment,Environment +423259,Environment,Environment +423258,Environment,Environment +415661,Environment,Environment +415656,Environment,Environment +415652,Environment,Environment +415649,Environment,Environment +415648,Environment,Environment +415646,Environment,Environment +409603,Environment,Environment +408510,Environment,Environment +407661,Environment,Environment +406441,Environment,Environment +406440,Environment,Environment +406020,Environment,Environment +406019,Environment,Environment +406018,Environment,Environment +544711,Environment,Environment +543581,Environment,Environment +543580,Environment,Environment +543577,Environment,Environment +543575,Environment,Environment +543571,Environment,Environment +541658,Environment,Environment +539604,Environment,Environment +537209,Environment,Environment +537208,Environment,Environment +535112,Environment,Environment +531245,Environment,Environment +529313,Environment,Environment +526568,Environment,Environment +523229,Environment,Environment +518265,Environment,Environment +515875,Environment,Environment +502218,Environment,Environment +502215,Environment,Environment +499386,Environment,Environment +499379,Environment,Environment +496069,Environment,Environment +485143,Environment,Environment +485132,Environment,Environment +197442,Defence,Defence +197441,Defence,Defence +197454,Defence,Defence +197442,Small Business,Small Business +197441,Small Business,Small Business +197454,Small Business,Small Business +222848,Environment,Environment +335790,Financial Institutions,Financial Institutions +326337,Financial Institutions,Financial Institutions +321957,Financial Institutions,Financial Institutions +321956,Financial Institutions,Financial Institutions +321953,Financial Institutions,Financial Institutions +381432,Financial Institutions,Financial Institutions +370306,Financial Institutions,Financial Institutions +335803,Financial Institutions,Financial Institutions +321956,Small Business,Small Business +321953,Small Business,Small Business +381432,Small Business,Small Business +370306,Small Business,Small Business +335803,Small Business,Small Business +335797,Small Business,Small Business +335790,Small Business,Small Business +326337,Small Business,Small Business +370306,International Trade,International Trade +191556,Energy,Energy +191555,Energy,Energy +226501,Energy,Energy +209448,Energy,Energy +209447,Energy,Energy +212569,Transportation,Transportation +212547,Transportation,Transportation +212545,Transportation,Transportation +212543,Transportation,Transportation +212541,Transportation,Transportation +212539,Transportation,Transportation +212537,Transportation,Transportation +212534,Transportation,Transportation +212532,Transportation,Transportation +212531,Transportation,Transportation +212528,Transportation,Transportation +212524,Transportation,Transportation +212520,Transportation,Transportation +212519,Transportation,Transportation +207827,Transportation,Transportation +207811,Transportation,Transportation +195305,Transportation,Transportation +195045,Transportation,Transportation +191688,Taxation and Finance,Taxation and Finance +191612,Taxation and Finance,Taxation and Finance +238811,Industry,Industry +271929,Justice and Law Enforcement,Justice and Law Enforcement +238792,Economic Development,Economic Development +238670,Economic Development,Economic Development +211845,Economic Development,Economic Development +210087,Economic Development,Economic Development +209388,Economic Development,Economic Development +206348,Economic Development,Economic Development +202515,Economic Development,Economic Development +197373,Economic Development,Economic Development +348244,Economic Development,Economic Development +339991,Economic Development,Economic Development +335129,Economic Development,Economic Development +334972,Economic Development,Economic Development +334649,Economic Development,Economic Development +334639,Economic Development,Economic Development +334636,Economic Development,Economic Development +270750,Economic Development,Economic Development +270749,Economic Development,Economic Development +261230,Economic Development,Economic Development +257112,Economic Development,Economic Development +257111,Economic Development,Economic Development +248151,Economic Development,Economic Development +247449,Economic Development,Economic Development +247350,Economic Development,Economic Development +247230,Economic Development,Economic Development +247229,Economic Development,Economic Development +246310,Economic Development,Economic Development +245669,Economic Development,Economic Development +245544,Economic Development,Economic Development +245541,Economic Development,Economic Development +245539,Economic Development,Economic Development +245538,Economic Development,Economic Development +243090,Economic Development,Economic Development +243089,Economic Development,Economic Development +242668,Economic Development,Economic Development +348244,Energy,Energy +339991,Energy,Energy +246310,Energy,Energy +245669,Energy,Energy +245544,Energy,Energy +245541,Energy,Energy +245539,Energy,Energy +245538,Energy,Energy +243090,Energy,Energy +243089,Energy,Energy +242668,Energy,Energy +241889,Energy,Energy +238792,Energy,Energy +238670,Energy,Energy +211845,Energy,Energy +247599,Tourism,Tourism +196973,Transportation,Transportation +247599,Small Business,Small Business +196973,Regional Development,Regional Development +272492,Industry,Industry +275432,Tourism,Tourism +275432,Transportation,Transportation +272492,Small Business,Small Business +187445,Economic Development,Economic Development +187445,Industry,Industry +187445,Energy,Energy +228949,Research and Development,Research and Development +187244,Financial Institutions,Financial Institutions +187244,Internal Trade,Internal Trade +187244,International Trade,International Trade +187244,Security,Security +207478,Health,Health +250626,Industry,Industry +189770,Agriculture,Agriculture +189768,Economic Development,Economic Development +189770,International Trade,International Trade +189770,Transportation,Transportation +187386,Security,Security +191004,Fisheries,Fisheries +191099,Government Procurement,Government Procurement +228649,Agriculture,Agriculture +188109,Infrastructure,Infrastructure +188109,Government Procurement,Government Procurement +188109,Energy,Energy +188109,Economic Development,Economic Development +188109,Research and Development,Research and Development (R&D) +188109,Taxation and Finance,Taxation and Finance +422943,Agriculture,Agriculture +437714,Consumer Issues,Consumer Issues +422944,Health,Health +434852,International Trade,International Trade +187724,Economic Development,Economic Development +202047,Infrastructure,Infrastructure +187804,Consumer Issues,Consumer Issues +187804,Housing,Housing +187864,Economic Development,Economic Development +187864,Research and Development,Research and Development +187924,International Trade,International Trade +236169,Economic Development,Economic Development +261853,Energy,Energy +236169,Environment,Environment +275415,Health,Health +191804,Industry,Industry +191804,Taxation and Finance,Taxation and Finance +209067,Infrastructure,Infrastructure +271261,Economic Development,Economic Development +271261,Industry,Industry +344130,Research and Development,Research and Development +207449,Economic Development,Economic Development +223142,Environment,Environment +207449,Industry,Industry +202517,Research and Development,Research and Development +223142,Sports,Sports +234970,Fisheries,Fisheries +437085,Climate,Climate +326821,Employment and Training,Employment and Training +193964,Immigration,Immigration +193964,Labour,Labour +227020,Research and Development,Research and Development +199936,Industry,Industry +211350,International Trade,International Trade +272429,Budget,Budget +326334,Housing,Housing +272429,Taxation and Finance,Taxation and Finance +188484,International Trade,International Trade +200152,Agriculture,Agriculture +244017,Agriculture,Agriculture +192524,Industry,Industry +193390,Industry,Industry +445776,Intellectual Property,Intellectual Property +268057,Taxation and Finance,Taxation and Finance +268274,Agriculture,Agriculture +352469,Agriculture,Agriculture +356230,Environment,Environment +188665,International Trade,International Trade +343600,Labour,Labour +188737,Labour,Labour +533396,Transportation,Transportation +188778,Immigration,Immigration +188780,Official Languages,Official Languages +188780,Official Languages,Official Languages +188781,Official Languages,Official Languages +188782,Official Languages,Official Languages +188782,Official Languages,Official Languages +188826,Security,Security +201677,Privacy and Access to Information,Privacy and Access to Information +236870,Infrastructure,Infrastructure +188907,International Relations,International Relations +194719,International Trade,International Trade +487261,Pensions,Pensions +430551,Taxation and Finance,Taxation and Finance +188982,Consumer Issues,Consumer Issues +367184,Health,Health +367184,Justice and Law Enforcement,Justice and Law Enforcement +212847,Intellectual Property,Intellectual Property +192644,Intellectual Property,Intellectual Property +192645,Intellectual Property,Intellectual Property +194775,International Development,International Development +424496,Fisheries,Fisheries +397038,International Trade,International Trade +397045,International Trade,International Trade +372544,International Trade,International Trade +372550,Budget,Budget +358100,Employment and Training,Employment and Training +226610,Budget,Budget +484843,Economic Development,Economic Development +189764,Transportation,Transportation +224267,Taxation and Finance,Taxation and Finance +190944,Energy,Energy +190944,Transportation,Transportation +190944,Budget,Budget +190944,Environment,Environment +214327,Budget,Budget +207509,Employment and Training,Employment and Training +201189,Immigration,Immigration +200548,Mining,Mining +310996,Economic Development,Economic Development +211511,Research and Development,Research and Development +198707,Energy,Energy +198707,Industry,Industry +289369,Environment,Environment +289370,Industry,Industry +193209,Government Procurement,Government Procurement +289369,Agriculture,Agriculture +289330,International Trade,International Trade +198707,International Trade,International Trade +200515,Health,Health +200520,Regional Development,Regional Development +317110,Budget,Budget +317116,Budget,Budget +214867,Intellectual Property,Propriété intellectuelle +191569,Intellectual Property,Intellectual Property +190984,Agriculture,Agriculture +190984,Health,Health +203791,Economic Development,Economic Development +203790,Environment,Environment +209598,Research and Development,Research and Development +190631,Tourism,Tourism +435443,Health,Health +199980,Intellectual Property,Intellectual Property +235998,Industry,Industry +285589,International Relations,International Relations +285571,International Trade,International Trade +285571,Energy,Energy +197211,Education,Education +197208,Health,Health +197208,Regional Development,Regional Development +197208,Research and Development,Research and Development +200341,Small Business,Small Business +257450,Energy,Energy +401170,Infrastructure,Infrastructure +199787,Energy,Energy +244593,Energy,Energy +244596,Environment,Environment +244596,Industry,Industry +268292,International Trade,International Trade +334071,Economic Development,Economic Development +263531,Industry,Industry +232510,Industry,Industry +211841,Defence,Defence +459841,Government Procurement,Government Procurement +462761,Climate,Climate +441650,Energy,Energy +485126,Environment,Environment +197444,Defence,Defence +197444,Small Business,Small Business +217211,Taxation and Finance,Taxation and Finance +226702,Environment,Environment +335797,Financial Institutions,Financial Institutions +321957,Small Business,Small Business +381432,International Trade,International Trade +398036,Labour,Labour +191558,Energy,Energy +201608,Consumer Issues,Consumer Issues +201608,Health,Health +201608,International Trade,International Trade +201608,Small Business,Small Business +212581,Transportation,Transportation +191689,Taxation and Finance,Taxation and Finance +197223,Industry,Industry +239811,Industry,Industry +226926,Justice and Law Enforcement,Justice and Law Enforcement +241889,Economic Development,Economic Development +247229,Energy,Energy +241889,Environment,Environment +334649,Industry,Industry +194816,Defence,Defence +224727,Economic Development,Economic Development +200299,Government Procurement,Government Procurement +200299,Regional Development,Regional Development +246753,Justice and Law Enforcement,Justice and Law Enforcement +427585,Education,Education +436926,Government Procurement,Government Procurement +196607,Intellectual Property,Intellectual Property +270709,Justice and Law Enforcement,Justice and Law Enforcement +192169,Taxation and Finance,Taxation and Finance +192174,Taxation and Finance,Taxation and Finance +192177,Taxation and Finance,Taxation and Finance +192179,Taxation and Finance,Taxation and Finance +192245,Environment,Environment +192176,Health,Health +192324,Taxation and Finance,Taxation and Finance +258970,Agriculture,Agriculture +258970,International Trade,International Trade +192385,Economic Development,Economic Development +192386,Economic Development,Economic Development +198387,Government Procurement,Government Procurement +513316,International Trade,International Trade +192392,International Trade,International Trade +479368,Government Procurement,Government Procurement +331448,Justice and Law Enforcement,Justice and Law Enforcement +524334,International Trade,International Trade +192473,International Trade,International Trade +192474,International Trade,International Trade +296152,Economic Development,Economic Development +240295,Employment and Training,Employment and Training +321152,Environment,Environment +211710,Industry,Industry +321152,Infrastructure,Infrastructure +240302,Mining,Mining +240271,Regional Development,Regional Development +321150,Transportation,Transportation +221569,Health,Health +270990,Immigration,Immigration +457903,Research and Development,Research and Development +483284,Employment and Training,Employment and Training +496609,Industry,Industry +212760,Labour,Labour +262758,Security,Security +456615,Transportation,Transportation +192734,Fisheries,Fisheries +199675,Climate,Climat +196561,Transportation,Transportation +245670,Security,Security +200156,Security,Security +192885,Transportation,Transportation +494061,Labour,Labour +511643,Employment and Training,Employment and Training +371322,International Trade,International Trade +262755,Pensions,Pensions +262759,Security,Security +354830,Transportation,Transportation +192945,Health,Health +192950,Health,Health +192953,Health,Health +192956,Health,Health +424881,International Development,International Development +294969,International Relations,International Relations +331590,Government Procurement,Government Procurement +215970,Agriculture,Agriculture +215970,Forestry,Forestry +202796,Education,Education +202783,Energy,Energy +353294,Infrastructure,Infrastructure +210087,Energy,Energy +209388,Energy,Energy +206348,Energy,Energy +202515,Energy,Energy +197373,Energy,Energy +335129,Energy,Energy +334972,Energy,Energy +334649,Energy,Energy +334639,Energy,Energy +334636,Energy,Energy +270750,Energy,Energy +270749,Energy,Energy +261230,Energy,Energy +248151,Energy,Energy +247449,Energy,Energy +247350,Energy,Energy +247230,Energy,Energy +238792,Environment,Environment +238670,Environment,Environment +211845,Environment,Environment +210087,Environment,Environment +209388,Environment,Environment +339991,Environment,Environment +335129,Environment,Environment +334972,Environment,Environment +334649,Environment,Environment +334639,Environment,Environment +334636,Environment,Environment +270750,Environment,Environment +270749,Environment,Environment +248151,Environment,Environment +247449,Environment,Environment +247350,Environment,Environment +247230,Environment,Environment +247229,Environment,Environment +246310,Environment,Environment +245669,Environment,Environment +245544,Environment,Environment +245541,Environment,Environment +245539,Environment,Environment +245538,Environment,Environment +243090,Environment,Environment +243089,Environment,Environment +334639,Industry,Industry +334636,Industry,Industry +211845,Industry,Industry +210087,Industry,Industry +209388,Industry,Industry +206348,Industry,Industry +202515,Industry,Industry +270750,Industry,Industry +270749,Industry,Industry +248151,Industry,Industry +247449,Industry,Industry +247350,Industry,Industry +247231,Industry,Industry +247230,Industry,Industry +247229,Industry,Industry +246310,Industry,Industry +245669,Industry,Industry +245544,Industry,Industry +245541,Industry,Industry +245539,Industry,Industry +245538,Industry,Industry +243090,Industry,Industry +243089,Industry,Industry +241889,Industry,Industry +339991,Industry,Industry +335129,Industry,Industry +334972,Industry,Industry +224727,Defence,Defence +207149,Defence,Defence +194820,Defence,Defence +200302,Economic Development,Economic Development +200299,Economic Development,Economic Development +194820,Government Procurement,Government Procurement +194816,Government Procurement,Government Procurement +224727,Government Procurement,Government Procurement +207149,Government Procurement,Government Procurement +207147,Government Procurement,Government Procurement +200302,Government Procurement,Government Procurement +194820,Regional Development,Regional Development +194816,Regional Development,Regional Development +224727,Regional Development,Regional Development +207149,Regional Development,Regional Development +207147,Regional Development,Regional Development +200302,Regional Development,Regional Development +246751,Justice and Law Enforcement,Justice and Law Enforcement +246750,Justice and Law Enforcement,Justice and Law Enforcement +212395,Justice and Law Enforcement,Justice and Law Enforcement +212387,Justice and Law Enforcement,Justice and Law Enforcement +352062,Justice and Law Enforcement,Justice and Law Enforcement +324258,Justice and Law Enforcement,Justice and Law Enforcement +280310,Justice and Law Enforcement,Justice and Law Enforcement +280309,Justice and Law Enforcement,Justice and Law Enforcement +248689,Justice and Law Enforcement,Justice and Law Enforcement +246755,Justice and Law Enforcement,Justice and Law Enforcement +411388,Education,Education +411385,Education,Education +427588,Education,Education +436925,Government Procurement,Government Procurement +436924,Government Procurement,Government Procurement +411388,Government Procurement,Government Procurement +411385,Government Procurement,Government Procurement +371281,Government Procurement,Government Procurement +371279,Government Procurement,Government Procurement +371276,Government Procurement,Government Procurement +371273,Government Procurement,Government Procurement +371270,Government Procurement,Government Procurement +348386,Government Procurement,Government Procurement +436928,Government Procurement,Government Procurement +436927,Government Procurement,Government Procurement +224770,Justice and Law Enforcement,Justice and Law Enforcement +224769,Justice and Law Enforcement,Justice and Law Enforcement +343158,Justice and Law Enforcement,Justice and Law Enforcement +306569,Justice and Law Enforcement,Justice and Law Enforcement +270712,Justice and Law Enforcement,Justice and Law Enforcement +270711,Justice and Law Enforcement,Justice and Law Enforcement +270710,Justice and Law Enforcement,Justice and Law Enforcement +192244,Environment,Environment +192227,Environment,Environment +192246,Environment,Environment +250591,Agriculture,Agriculture +250585,Agriculture,Agriculture +231250,Agriculture,Agriculture +231249,Agriculture,Agriculture +377000,Agriculture,Agriculture +375153,Agriculture,Agriculture +250591,International Trade,International Trade +250585,International Trade,International Trade +231250,International Trade,International Trade +231249,International Trade,International Trade +198368,Government Procurement,Government Procurement +198307,Government Procurement,Government Procurement +213648,Government Procurement,Government Procurement +513314,International Trade,International Trade +501966,International Trade,International Trade +256791,International Trade,International Trade +227953,International Trade,International Trade +192391,International Trade,International Trade +457568,International Trade,International Trade +457565,International Trade,International Trade +454759,International Trade,International Trade +454704,International Trade,International Trade +454702,International Trade,International Trade +454701,International Trade,International Trade +454699,International Trade,International Trade +451322,International Trade,International Trade +451222,International Trade,International Trade +444185,International Trade,International Trade +441002,International Trade,International Trade +531422,International Trade,International Trade +475962,Government Procurement,Government Procurement +473763,Government Procurement,Government Procurement +340966,Government Procurement,Government Procurement +269605,Government Procurement,Government Procurement +445352,Government Procurement,Government Procurement +421211,Government Procurement,Government Procurement +406445,Government Procurement,Government Procurement +479369,Government Procurement,Government Procurement +350218,Justice and Law Enforcement,Justice and Law Enforcement +524333,International Trade,International Trade +524332,International Trade,International Trade +192472,International Trade,International Trade +404433,International Trade,International Trade +404432,International Trade,International Trade +404430,International Trade,International Trade +404427,International Trade,International Trade +404426,International Trade,International Trade +401786,International Trade,International Trade +401784,International Trade,International Trade +401780,International Trade,International Trade +401778,International Trade,International Trade +401765,International Trade,International Trade +401763,International Trade,International Trade +401760,International Trade,International Trade +394198,International Trade,International Trade +394196,International Trade,International Trade +381780,International Trade,International Trade +369719,International Trade,International Trade +368683,International Trade,International Trade +368597,International Trade,International Trade +368596,International Trade,International Trade +368595,International Trade,International Trade +348196,International Trade,International Trade +348195,International Trade,International Trade +348194,International Trade,International Trade +343322,International Trade,International Trade +326658,International Trade,International Trade +317431,International Trade,International Trade +317430,International Trade,International Trade +317429,International Trade,International Trade +258482,International Trade,International Trade +258481,International Trade,International Trade +258478,International Trade,International Trade +258475,International Trade,International Trade +500194,International Trade,International Trade +496830,International Trade,International Trade +496829,International Trade,International Trade +496828,International Trade,International Trade +496827,International Trade,International Trade +465328,International Trade,International Trade +465281,International Trade,International Trade +465279,International Trade,International Trade +465278,International Trade,International Trade +465276,International Trade,International Trade +462111,International Trade,International Trade +461088,International Trade,International Trade +460985,International Trade,International Trade +453288,International Trade,International Trade +453284,International Trade,International Trade +453282,International Trade,International Trade +453271,International Trade,International Trade +453268,International Trade,International Trade +446215,International Trade,International Trade +446213,International Trade,International Trade +446212,International Trade,International Trade +446210,International Trade,International Trade +426623,International Trade,International Trade +426135,International Trade,International Trade +426134,International Trade,International Trade +426128,International Trade,International Trade +419341,International Trade,International Trade +418648,International Trade,International Trade +411627,International Trade,International Trade +411626,International Trade,International Trade +411625,International Trade,International Trade +526737,International Trade,International Trade +524336,International Trade,International Trade +524335,International Trade,International Trade +211715,Economic Development,Economic Development +211531,Economic Development,Economic Development +321211,Economic Development,Economic Development +321153,Economic Development,Economic Development +321152,Economic Development,Economic Development +321150,Economic Development,Economic Development +321149,Economic Development,Economic Development +321129,Economic Development,Economic Development +211715,Employment and Training,Employment and Training +211714,Employment and Training,Employment and Training +211711,Employment and Training,Employment and Training +211531,Employment and Training,Employment and Training +321211,Employment and Training,Employment and Training +296153,Employment and Training,Employment and Training +296152,Employment and Training,Employment and Training +296150,Employment and Training,Employment and Training +321149,Environment,Environment +321109,Environment,Environment +240302,Environment,Environment +211717,Environment,Environment +211529,Industry,Industry +211507,Industry,Industry +211716,Industry,Industry +321150,Infrastructure,Infrastructure +321149,Infrastructure,Infrastructure +211714,Infrastructure,Infrastructure +321153,Infrastructure,Infrastructure +240301,Mining,Mining +240300,Mining,Mining +240299,Mining,Mining +240297,Mining,Mining +240296,Mining,Mining +240295,Mining,Mining +240294,Mining,Mining +240289,Mining,Mining +240275,Mining,Mining +240273,Mining,Mining +240272,Mining,Mining +240271,Mining,Mining +240260,Mining,Mining +240257,Mining,Mining +240254,Mining,Mining +240250,Mining,Mining +211717,Mining,Mining +211716,Mining,Mining +211715,Mining,Mining +211714,Mining,Mining +211711,Mining,Mining +211710,Mining,Mining +211529,Mining,Mining +211509,Mining,Mining +211507,Mining,Mining +321211,Mining,Mining +321153,Mining,Mining +321152,Mining,Mining +321151,Mining,Mining +321150,Mining,Mining +321149,Mining,Mining +321129,Mining,Mining +321109,Mining,Mining +296153,Mining,Mining +296152,Mining,Mining +296151,Mining,Mining +296150,Mining,Mining +211711,Regional Development,Regional Development +321129,Regional Development,Regional Development +240296,Regional Development,Regional Development +240294,Regional Development,Regional Development +240273,Regional Development,Regional Development +240272,Regional Development,Regional Development +321149,Transportation,Transportation +321129,Transportation,Transportation +296153,Transportation,Transportation +296151,Transportation,Transportation +240301,Transportation,Transportation +240299,Transportation,Transportation +321153,Transportation,Transportation +221568,Health,Health +221567,Health,Health +221587,Health,Health +381537,Immigration,Immigration +381526,Immigration,Immigration +192716,Immigration,Immigration +333298,Immigration,Immigration +325179,Immigration,Immigration +325177,Immigration,Immigration +270995,Immigration,Immigration +270993,Immigration,Immigration +270992,Immigration,Immigration +457902,Research and Development,Research and Development +457901,Research and Development,Research and Development +192721,Research and Development,Research and Development +366344,Research and Development,Research and Development +230717,Employment and Training,Employment and Training +192897,Employment and Training,Employment and Training +192732,Employment and Training,Employment and Training +192730,Employment and Training,Employment and Training +192729,Employment and Training,Employment and Training +357380,Employment and Training,Employment and Training +356575,Employment and Training,Employment and Training +318055,Employment and Training,Employment and Training +278633,Employment and Training,Employment and Training +496609,Employment and Training,Employment and Training +494061,Employment and Training,Employment and Training +484957,Employment and Training,Employment and Training +484957,Industry,Industry +483284,Industry,Industry +192730,Industry,Industry +382775,Industry,Industry +212747,Labour,Labour +511643,Labour,Labour +206647,Labour,Labour +192897,Labour,Labour +192730,Labour,Labour +354826,Labour,Labour +301436,Labour,Labour +262757,Labour,Labour +244717,Labour,Labour +230721,Labour,Labour +230717,Labour,Labour +212761,Labour,Labour +192732,Security,Security +192729,Security,Security +365842,Security,Security +328152,Security,Security +328151,Security,Security +435567,Transportation,Transportation +435555,Transportation,Transportation +244717,Transportation,Transportation +244710,Transportation,Transportation +230720,Transportation,Transportation +230717,Transportation,Transportation +192732,Transportation,Transportation +192729,Transportation,Transportation +338946,Transportation,Transportation +318055,Transportation,Transportation +318026,Transportation,Transportation +301434,Transportation,Transportation +301432,Transportation,Transportation +301431,Transportation,Transportation +278649,Transportation,Transportation +278635,Transportation,Transportation +278634,Transportation,Transportation +278632,Transportation,Transportation +278631,Transportation,Transportation +278610,Transportation,Transportation +262762,Transportation,Transportation +262761,Transportation,Transportation +262759,Transportation,Transportation +262757,Transportation,Transportation +262750,Transportation,Transportation +425953,Transportation,Transportation +416824,Transportation,Transportation +407941,Transportation,Transportation +407940,Transportation,Transportation +403265,Transportation,Transportation +399401,Transportation,Transportation +399234,Transportation,Transportation +394288,Transportation,Transportation +394287,Transportation,Transportation +394286,Transportation,Transportation +390651,Transportation,Transportation +388731,Transportation,Transportation +371325,Transportation,Transportation +371323,Transportation,Transportation +357384,Transportation,Transportation +357383,Transportation,Transportation +356574,Transportation,Transportation +355627,Transportation,Transportation +354831,Transportation,Transportation +354829,Transportation,Transportation +354827,Transportation,Transportation +354826,Transportation,Transportation +492653,Transportation,Transportation +437448,Fisheries,Fisheries +437446,Fisheries,Fisheries +260550,Fisheries,Fisheries +192749,Climate,Climat +512224,Climate,Climat +306251,Climate,Climat +306250,Climate,Climat +192758,Transportation,Transportation +192757,Transportation,Transportation +275289,Transportation,Transportation +226673,Transportation,Transportation +223908,Transportation,Transportation +214667,Transportation,Transportation +192884,Security,Security +458373,Security,Security +365247,Security,Security +351671,Security,Security +245671,Security,Security +192885,Security,Security +365248,Security,Security +245672,Security,Security +484957,Labour,Labour +468716,Labour,Labour +278636,Labour,Labour +212748,Labour,Labour +195684,Labour,Labour +192897,Labour,Labour +354828,Labour,Labour +496609,Labour,Labour +492653,Employment and Training,Employment and Training +488401,Employment and Training,Employment and Training +192897,Employment and Training,Employment and Training +371320,Employment and Training,Employment and Training +278650,Employment and Training,Employment and Training +278649,Employment and Training,Employment and Training +278610,Employment and Training,Employment and Training +278609,Employment and Training,Employment and Training +230717,Pensions,Pensions +338945,Pensions,Pensions +354827,Security,Security +354825,Transportation,Transportation +511643,Transportation,Transportation +230722,Transportation,Transportation +328152,Transportation,Transportation +301430,Transportation,Transportation +278633,Transportation,Transportation +278629,Transportation,Transportation +278609,Transportation,Transportation +262758,Transportation,Transportation +262756,Transportation,Transportation +262755,Transportation,Transportation +262754,Transportation,Transportation +262751,Transportation,Transportation +262749,Transportation,Transportation +244718,Transportation,Transportation +244715,Transportation,Transportation +244713,Transportation,Transportation +496609,Transportation,Transportation +494061,Transportation,Transportation +488401,Transportation,Transportation +484957,Transportation,Transportation +483284,Transportation,Transportation +463446,Transportation,Transportation +452575,Transportation,Transportation +445490,Transportation,Transportation +445486,Transportation,Transportation +435570,Transportation,Transportation +435558,Transportation,Transportation +425955,Transportation,Transportation +424484,Transportation,Transportation +424482,Transportation,Transportation +416837,Transportation,Transportation +416831,Transportation,Transportation +407944,Transportation,Transportation +405839,Transportation,Transportation +403263,Transportation,Transportation +399402,Transportation,Transportation +399237,Transportation,Transportation +399236,Transportation,Transportation +394285,Transportation,Transportation +394284,Transportation,Transportation +394283,Transportation,Transportation +390652,Transportation,Transportation +390648,Transportation,Transportation +388730,Transportation,Transportation +382775,Transportation,Transportation +365842,Transportation,Transportation +357388,Transportation,Transportation +357382,Transportation,Transportation +355630,Transportation,Transportation +354832,Transportation,Transportation +280673,Health,Health +424880,International Development,International Development +424879,International Development,International Development +216088,International Development,International Development +216087,International Development,International Development +210071,International Development,International Development +210070,International Development,International Development +210069,International Development,International Development +210067,International Development,International Development +382679,International Development,International Development +382678,International Development,International Development +382677,International Development,International Development +382676,International Development,International Development +333645,International Development,International Development +333643,International Development,International Development +333640,International Development,International Development +333639,International Development,International Development +325710,International Development,International Development +320699,International Development,International Development +320698,International Development,International Development +320697,International Development,International Development +301309,International Development,International Development +245061,International Development,International Development +239775,International Development,International Development +239773,International Development,International Development +239772,International Development,International Development +237369,International Development,International Development +412971,International Development,International Development +403186,International Development,International Development +403182,International Development,International Development +387226,International Development,International Development +387224,International Development,International Development +387219,International Development,International Development +387217,International Development,International Development +449214,International Development,International Development +449213,International Development,International Development +448296,International Development,International Development +446384,International Development,International Development +446383,International Development,International Development +436433,International Development,International Development +427522,International Development,International Development +427520,International Development,International Development +427518,International Development,International Development +276807,International Relations,International Relations +320696,International Relations,International Relations +209770,International Relations,International Relations +209768,International Relations,International Relations +200456,International Relations,International Relations +294970,International Relations,International Relations +331589,Government Procurement,Government Procurement +277509,Government Procurement,Government Procurement +237065,Government Procurement,Government Procurement +217510,Government Procurement,Government Procurement +212420,Government Procurement,Government Procurement +331591,Government Procurement,Government Procurement +215969,Agriculture,Agriculture +215968,Agriculture,Agriculture +215969,Forestry,Forestry +538178,Energy,Energy +534534,Energy,Energy +499357,Infrastructure,Infrastructure +464909,Infrastructure,Infrastructure +217788,Infrastructure,Infrastructure +347303,Infrastructure,Infrastructure +347301,Infrastructure,Infrastructure +347298,Infrastructure,Infrastructure +343803,Infrastructure,Infrastructure +338363,Infrastructure,Infrastructure +338077,Infrastructure,Infrastructure +335327,Infrastructure,Infrastructure +335321,Infrastructure,Infrastructure +333831,Infrastructure,Infrastructure +333217,Infrastructure,Infrastructure +333216,Infrastructure,Infrastructure +333209,Infrastructure,Infrastructure +318855,Infrastructure,Infrastructure +315234,Infrastructure,Infrastructure +315233,Infrastructure,Infrastructure +315216,Infrastructure,Infrastructure +315215,Infrastructure,Infrastructure +315214,Infrastructure,Infrastructure +315213,Infrastructure,Infrastructure +315211,Infrastructure,Infrastructure +315210,Infrastructure,Infrastructure +315209,Infrastructure,Infrastructure +310479,Infrastructure,Infrastructure +310472,Infrastructure,Infrastructure +305230,Infrastructure,Infrastructure +305229,Infrastructure,Infrastructure +416174,Infrastructure,Infrastructure +408871,Infrastructure,Infrastructure +408870,Infrastructure,Infrastructure +400736,Infrastructure,Infrastructure +396786,Infrastructure,Infrastructure +387944,Infrastructure,Infrastructure +387943,Infrastructure,Infrastructure +387942,Infrastructure,Infrastructure +387831,Infrastructure,Infrastructure +382334,Infrastructure,Infrastructure +376984,Infrastructure,Infrastructure +376982,Infrastructure,Infrastructure +376977,Infrastructure,Infrastructure +376972,Infrastructure,Infrastructure +376969,Infrastructure,Infrastructure +376964,Infrastructure,Infrastructure +374671,Infrastructure,Infrastructure +369084,Infrastructure,Infrastructure +369083,Infrastructure,Infrastructure +369079,Infrastructure,Infrastructure +366793,Infrastructure,Infrastructure +366792,Infrastructure,Infrastructure +364889,Infrastructure,Infrastructure +362184,Infrastructure,Infrastructure +359423,Infrastructure,Infrastructure +359422,Infrastructure,Infrastructure +356351,Infrastructure,Infrastructure +356345,Arts and Culture,Arts et culture +343565,Arts and Culture,Arts et culture +152030,Arts and Culture,Arts et culture +152029,Arts and Culture,Arts et culture +152028,Arts and Culture,Arts et culture +152027,Arts and Culture,Arts et culture +132448,Arts and Culture,Arts et culture +156900,Arts and Culture,Arts et culture +156898,Arts and Culture,Arts et culture +154669,Arts and Culture,Arts et culture +154667,Arts and Culture,Arts et culture +154659,Arts and Culture,Arts et culture +154658,Arts and Culture,Arts et culture +152032,Arts and Culture,Arts et culture +179724,Arts and Culture,Arts et culture +174940,Arts and Culture,Arts et culture +174939,Arts and Culture,Arts et culture +174938,Arts and Culture,Arts et culture +171935,Arts and Culture,Arts et culture +170430,Arts and Culture,Arts et culture +165859,Arts and Culture,Arts et culture +161709,Arts and Culture,Arts et culture +161708,Arts and Culture,Arts et culture +159389,Arts and Culture,Arts et culture +159387,Arts and Culture,Arts et culture +338099,Arts and Culture,Arts et culture +329779,Arts and Culture,Arts et culture +329778,Arts and Culture,Arts et culture +329777,Arts and Culture,Arts et culture +329775,Arts and Culture,Arts et culture +319131,Arts and Culture,Arts et culture +264282,Arts and Culture,Arts et culture +259110,Arts and Culture,Arts et culture +230257,Arts and Culture,Arts et culture +211669,Arts and Culture,Arts et culture +396677,Arts and Culture,Arts et culture +396527,Arts and Culture,Arts et culture +381510,Arts and Culture,Arts et culture +374637,Arts and Culture,Arts et culture +374630,Arts and Culture,Arts et culture +364992,Arts and Culture,Arts et culture +163165,Aboriginal Affairs,Aboriginal Affairs +163164,Aboriginal Affairs,Aboriginal Affairs +194808,Aboriginal Affairs,Aboriginal Affairs +194805,Aboriginal Affairs,Aboriginal Affairs +141817,Aboriginal Affairs,Aboriginal Affairs +134395,Aboriginal Affairs,Aboriginal Affairs +130277,Science and Technology,Science and Technology +130276,Science and Technology,Science and Technology +278012,Telecommunications,Telecommunications +278011,Telecommunications,Telecommunications +144414,Telecommunications,Telecommunications +134157,Telecommunications,Telecommunications +134156,Telecommunications,Telecommunications +134155,Telecommunications,Telecommunications +292489,Telecommunications,Telecommunications +288872,Telecommunications,Telecommunications +288871,Telecommunications,Telecommunications +288870,Telecommunications,Telecommunications +288869,Telecommunications,Telecommunications +132471,Science and Technology,Science and Technology +521130,Arts and Culture,Arts and Culture +520557,Arts and Culture,Arts and Culture +147939,Arts and Culture,Arts and Culture +192715,Arts and Culture,Arts and Culture +192712,Arts and Culture,Arts and Culture +192711,Arts and Culture,Arts and Culture +192710,Arts and Culture,Arts and Culture +192709,Arts and Culture,Arts and Culture +192707,Arts and Culture,Arts and Culture +336469,Arts and Culture,Arts and Culture +333300,Arts and Culture,Arts and Culture +325179,Arts and Culture,Arts and Culture +325178,Arts and Culture,Arts and Culture +325177,Arts and Culture,Arts and Culture +325174,Arts and Culture,Arts and Culture +325171,Arts and Culture,Arts and Culture +269072,Arts and Culture,Arts and Culture +520375,Arts and Culture,Arts and Culture +519047,Arts and Culture,Arts and Culture +517126,Arts and Culture,Arts and Culture +516892,Arts and Culture,Arts and Culture +515179,Arts and Culture,Arts and Culture +514671,Arts and Culture,Arts and Culture +513375,Arts and Culture,Arts and Culture +511956,Arts and Culture,Arts and Culture +506735,Arts and Culture,Arts and Culture +489006,Arts and Culture,Arts and Culture +488780,Arts and Culture,Arts and Culture +487400,Arts and Culture,Arts and Culture +480977,Arts and Culture,Arts and Culture +478729,Arts and Culture,Arts and Culture +478407,Arts and Culture,Arts and Culture +471524,Arts and Culture,Arts and Culture +469626,Arts and Culture,Arts and Culture +469625,Arts and Culture,Arts and Culture +446050,Arts and Culture,Arts and Culture +446048,Arts and Culture,Arts and Culture +446046,Arts and Culture,Arts and Culture +434510,Arts and Culture,Arts and Culture +434509,Arts and Culture,Arts and Culture +434507,Arts and Culture,Arts and Culture +413501,Arts and Culture,Arts and Culture +386403,Arts and Culture,Arts and Culture +386402,Arts and Culture,Arts and Culture +386401,Arts and Culture,Arts and Culture +381522,Arts and Culture,Arts and Culture +192709,Broadcasting,Broadcasting +147939,Broadcasting,Broadcasting +192715,Broadcasting,Broadcasting +192712,Broadcasting,Broadcasting +192711,Broadcasting,Broadcasting +243875,Aboriginal Affairs,Aboriginal Affairs +226315,Aboriginal Affairs,Aboriginal Affairs +141723,Aboriginal Affairs,Aboriginal Affairs +134859,Aboriginal Affairs,Aboriginal Affairs +134858,Aboriginal Affairs,Aboriginal Affairs +134857,Aboriginal Affairs,Aboriginal Affairs +192435,Aboriginal Affairs,Aboriginal Affairs +174841,Aboriginal Affairs,Aboriginal Affairs +174838,Aboriginal Affairs,Aboriginal Affairs +174828,Aboriginal Affairs,Aboriginal Affairs +445461,Aboriginal Affairs,Aboriginal Affairs +333229,Aboriginal Affairs,Aboriginal Affairs +326327,Aboriginal Affairs,Aboriginal Affairs +321491,Aboriginal Affairs,Aboriginal Affairs +279711,Aboriginal Affairs,Aboriginal Affairs +275564,Aboriginal Affairs,Aboriginal Affairs +275561,Aboriginal Affairs,Aboriginal Affairs +269565,Aboriginal Affairs,Aboriginal Affairs +260151,Aboriginal Affairs,Aboriginal Affairs +260149,Aboriginal Affairs,Aboriginal Affairs +252889,Aboriginal Affairs,Aboriginal Affairs +252689,Aboriginal Affairs,Aboriginal Affairs +252684,Aboriginal Affairs,Aboriginal Affairs +248072,Aboriginal Affairs,Aboriginal Affairs +248071,Aboriginal Affairs,Aboriginal Affairs +370481,Science and Technology,Science and Technology +364352,Science and Technology,Science and Technology +314769,Science and Technology,Science and Technology +370141,Arts and Culture,Arts and Culture +313509,Arts and Culture,Arts and Culture +156956,Arts and Culture,Arts and Culture +290071,Arts and Culture,Arts and Culture +264850,Arts and Culture,Arts and Culture +200485,Arts and Culture,Arts and Culture +445965,Broadcasting,Broadcasting +445963,Broadcasting,Broadcasting +523999,Broadcasting,Broadcasting +501521,Broadcasting,Broadcasting +501513,Broadcasting,Broadcasting +465703,Broadcasting,Broadcasting +465701,Broadcasting,Broadcasting +465698,Broadcasting,Broadcasting +465693,Broadcasting,Broadcasting +465690,Broadcasting,Broadcasting +465678,Broadcasting,Broadcasting +465677,Broadcasting,Broadcasting +445968,Broadcasting,Broadcasting +445967,Broadcasting,Broadcasting +403029,Science and Technology,Science and Technology +398955,Science and Technology,Science and Technology +374120,Science and Technology,Science and Technology +372564,Science and Technology,Science and Technology +369570,Science and Technology,Science and Technology +535445,Science and Technology,Science and Technology +535443,Science and Technology,Science and Technology +535421,Science and Technology,Science and Technology +535418,Science and Technology,Science and Technology +535411,Science and Technology,Science and Technology +477726,Science and Technology,Science and Technology +461124,Science and Technology,Science and Technology +414000,Science and Technology,Science and Technology +403043,Science and Technology,Science and Technology +403042,Science and Technology,Science and Technology +403041,Science and Technology,Science and Technology +403040,Science and Technology,Science and Technology +403038,Science and Technology,Science and Technology +403037,Science and Technology,Science and Technology +403036,Science and Technology,Science and Technology +209608,Science and Technology,Science and Technology +209607,Science and Technology,Science and Technology +158857,Science and Technology,Science and Technology +155314,Science and Technology,Science and Technology +155313,Science and Technology,Science and Technology +219791,Science and Technology,Science and Technology +209610,Science and Technology,Science and Technology +161953,Aboriginal Affairs,Aboriginal Affairs +158990,Aboriginal Affairs,Aboriginal Affairs +161957,Aboriginal Affairs,Aboriginal Affairs +142797,Aboriginal Affairs,Aboriginal Affairs +531773,Aboriginal Affairs,Aboriginal Affairs +477538,Aboriginal Affairs,Aboriginal Affairs +245121,Aboriginal Affairs,Aboriginal Affairs +225929,Aboriginal Affairs,Aboriginal Affairs +223645,Aboriginal Affairs,Aboriginal Affairs +212358,Aboriginal Affairs,Aboriginal Affairs +166364,Aboriginal Affairs,Aboriginal Affairs +162052,Aboriginal Affairs,Aboriginal Affairs +162050,Aboriginal Affairs,Aboriginal Affairs +160106,Aboriginal Affairs,Aboriginal Affairs +160095,Aboriginal Affairs,Aboriginal Affairs +157254,Aboriginal Affairs,Aboriginal Affairs +157245,Aboriginal Affairs,Aboriginal Affairs +148448,Aboriginal Affairs,Aboriginal Affairs +277789,Aboriginal Affairs,Aboriginal Affairs +251432,Aboriginal Affairs,Aboriginal Affairs +388452,Aboriginal Affairs,Aboriginal Affairs +388450,Aboriginal Affairs,Aboriginal Affairs +388444,Aboriginal Affairs,Aboriginal Affairs +388439,Aboriginal Affairs,Aboriginal Affairs +388435,Aboriginal Affairs,Aboriginal Affairs +388432,Aboriginal Affairs,Aboriginal Affairs +388316,Aboriginal Affairs,Aboriginal Affairs +447903,Aboriginal Affairs,Aboriginal Affairs +442585,Aboriginal Affairs,Aboriginal Affairs +442583,Aboriginal Affairs,Aboriginal Affairs +442581,Aboriginal Affairs,Aboriginal Affairs +442579,Aboriginal Affairs,Aboriginal Affairs +438865,Aboriginal Affairs,Aboriginal Affairs +438864,Aboriginal Affairs,Aboriginal Affairs +438862,Aboriginal Affairs,Aboriginal Affairs +438861,Aboriginal Affairs,Aboriginal Affairs +438832,Aboriginal Affairs,Aboriginal Affairs +438831,Aboriginal Affairs,Aboriginal Affairs +438829,Aboriginal Affairs,Aboriginal Affairs +438828,Aboriginal Affairs,Aboriginal Affairs +438827,Aboriginal Affairs,Aboriginal Affairs +438825,Aboriginal Affairs,Aboriginal Affairs +438818,Aboriginal Affairs,Aboriginal Affairs +438813,Aboriginal Affairs,Aboriginal Affairs +422389,Aboriginal Affairs,Aboriginal Affairs +416693,Aboriginal Affairs,Aboriginal Affairs +416670,Aboriginal Affairs,Aboriginal Affairs +409947,Aboriginal Affairs,Aboriginal Affairs +409946,Aboriginal Affairs,Aboriginal Affairs +409944,Aboriginal Affairs,Aboriginal Affairs +409943,Aboriginal Affairs,Aboriginal Affairs +409942,Aboriginal Affairs,Aboriginal Affairs +409940,Aboriginal Affairs,Aboriginal Affairs +409939,Aboriginal Affairs,Aboriginal Affairs +409938,Aboriginal Affairs,Aboriginal Affairs +409937,Aboriginal Affairs,Aboriginal Affairs +403955,Aboriginal Affairs,Aboriginal Affairs +403952,Aboriginal Affairs,Aboriginal Affairs +403914,Aboriginal Affairs,Aboriginal Affairs +403913,Aboriginal Affairs,Aboriginal Affairs +401029,Aboriginal Affairs,Aboriginal Affairs +401027,Aboriginal Affairs,Aboriginal Affairs +401025,Aboriginal Affairs,Aboriginal Affairs +399013,Aboriginal Affairs,Aboriginal Affairs +399012,Aboriginal Affairs,Aboriginal Affairs +397048,Aboriginal Affairs,Aboriginal Affairs +397047,Aboriginal Affairs,Aboriginal Affairs +397046,Aboriginal Affairs,Aboriginal Affairs +397044,Aboriginal Affairs,Aboriginal Affairs +397042,Aboriginal Affairs,Aboriginal Affairs +397039,Aboriginal Affairs,Aboriginal Affairs +397037,Aboriginal Affairs,Aboriginal Affairs +394500,Aboriginal Affairs,Aboriginal Affairs +392340,Aboriginal Affairs,Aboriginal Affairs +391574,Aboriginal Affairs,Aboriginal Affairs +391573,Aboriginal Affairs,Aboriginal Affairs +391569,Aboriginal Affairs,Aboriginal Affairs +391568,Aboriginal Affairs,Aboriginal Affairs +391567,Aboriginal Affairs,Aboriginal Affairs +391566,Aboriginal Affairs,Aboriginal Affairs +391565,Aboriginal Affairs,Aboriginal Affairs +391563,Aboriginal Affairs,Aboriginal Affairs +391561,Aboriginal Affairs,Aboriginal Affairs +391560,Aboriginal Affairs,Aboriginal Affairs +391559,Aboriginal Affairs,Aboriginal Affairs +229309,Science and Technology,Science and Technology +459365,Science and Technology,Science and Technology +152193,Science and Technology,Science and Technology +152191,Science and Technology,Science and Technology +152190,Science and Technology,Science and Technology +416250,Science and Technology,Science and Technology +416245,Science and Technology,Science and Technology +400506,Science and Technology,Science and Technology +398948,Science and Technology,Science and Technology +387853,Science and Technology,Science and Technology +379487,Science and Technology,Science and Technology +318817,Science and Technology,Science and Technology +231189,Science and Technology,Science and Technology +229745,Science and Technology,Science and Technology +194960,Aboriginal Affairs,Aboriginal Affairs +288410,Telecommunications,Telecommunications +288409,Telecommunications,Telecommunications +163536,Aboriginal Affairs,Aboriginal Affairs +145792,Aboriginal Affairs,Aboriginal Affairs +163549,Aboriginal Affairs,Aboriginal Affairs +163548,Aboriginal Affairs,Aboriginal Affairs +163547,Aboriginal Affairs,Aboriginal Affairs +163546,Aboriginal Affairs,Aboriginal Affairs +163545,Aboriginal Affairs,Aboriginal Affairs +163544,Aboriginal Affairs,Aboriginal Affairs +219780,Science and Technology,Science and Technology +219779,Science and Technology,Science and Technology +196631,Science and Technology,Science and Technology +166284,Science and Technology,Science and Technology +160295,Science and Technology,Science and Technology +160292,Science and Technology,Science and Technology +497835,Science and Technology,Science and Technology +496856,Science and Technology,Science and Technology +180682,Science and Technology,Science and Technology +180681,Science and Technology,Science and Technology +175766,Science and Technology,Science and Technology +171287,Science and Technology,Science and Technology +171265,Science and Technology,Science and Technology +171264,Science and Technology,Science and Technology +166429,Science and Technology,Science and Technology +166428,Science and Technology,Science and Technology +163258,Science and Technology,Science and Technology +163257,Science and Technology,Science and Technology +163256,Science and Technology,Science and Technology +163255,Science and Technology,Science and Technology +163247,Science and Technology,Science and Technology +163245,Science and Technology,Science and Technology +140738,Science and Technology,Science and Technology +331603,Science and Technology,Science and Technology +331599,Science and Technology,Science and Technology +323534,Science and Technology,Science and Technology +322410,Science and Technology,Science and Technology +308452,Science and Technology,Science and Technology +308152,Science and Technology,Science and Technology +308143,Science and Technology,Science and Technology +293949,Science and Technology,Science and Technology +278936,Science and Technology,Science and Technology +271470,Science and Technology,Science and Technology +235993,Science and Technology,Science and Technology +235991,Science and Technology,Science and Technology +231469,Science and Technology,Science and Technology +211946,Science and Technology,Science and Technology +211945,Science and Technology,Science and Technology +203870,Science and Technology,Science and Technology +203869,Science and Technology,Science and Technology +203868,Science and Technology,Science and Technology +200296,Science and Technology,Science and Technology +200293,Science and Technology,Science and Technology +200263,Science and Technology,Science and Technology +200230,Science and Technology,Science and Technology +196516,Science and Technology,Science and Technology +196514,Science and Technology,Science and Technology +196508,Science and Technology,Science and Technology +196507,Science and Technology,Science and Technology +394276,Science and Technology,Science and Technology +344218,Science and Technology,Science and Technology +540511,Science and Technology,Science and Technology +519636,Science and Technology,Science and Technology +516316,Science and Technology,Science and Technology +499924,Science and Technology,Science and Technology +499856,Science and Technology,Science and Technology +499400,Science and Technology,Science and Technology +504143,Aboriginal Affairs,Aboriginal Affairs +472559,Aboriginal Affairs,Aboriginal Affairs +214887,Aboriginal Affairs,Aboriginal Affairs +200348,Aboriginal Affairs,Aboriginal Affairs +193826,Aboriginal Affairs,Aboriginal Affairs +193824,Aboriginal Affairs,Aboriginal Affairs +193805,Aboriginal Affairs,Aboriginal Affairs +193802,Aboriginal Affairs,Aboriginal Affairs +193799,Aboriginal Affairs,Aboriginal Affairs +193798,Aboriginal Affairs,Aboriginal Affairs +193797,Aboriginal Affairs,Aboriginal Affairs +193794,Aboriginal Affairs,Aboriginal Affairs +193793,Aboriginal Affairs,Aboriginal Affairs +193792,Aboriginal Affairs,Aboriginal Affairs +193788,Aboriginal Affairs,Aboriginal Affairs +193785,Aboriginal Affairs,Aboriginal Affairs +193782,Aboriginal Affairs,Aboriginal Affairs +193780,Aboriginal Affairs,Aboriginal Affairs +193779,Aboriginal Affairs,Aboriginal Affairs +193778,Aboriginal Affairs,Aboriginal Affairs +193776,Aboriginal Affairs,Aboriginal Affairs +193775,Aboriginal Affairs,Aboriginal Affairs +193773,Aboriginal Affairs,Aboriginal Affairs +193656,Aboriginal Affairs,Aboriginal Affairs +193652,Aboriginal Affairs,Aboriginal Affairs +193647,Aboriginal Affairs,Aboriginal Affairs +193644,Aboriginal Affairs,Aboriginal Affairs +193640,Aboriginal Affairs,Aboriginal Affairs +193630,Aboriginal Affairs,Aboriginal Affairs +277001,Aboriginal Affairs,Aboriginal Affairs +276999,Aboriginal Affairs,Aboriginal Affairs +214968,Aboriginal Affairs,Aboriginal Affairs +214967,Aboriginal Affairs,Aboriginal Affairs +214947,Aboriginal Affairs,Aboriginal Affairs +214927,Aboriginal Affairs,Aboriginal Affairs +214907,Aboriginal Affairs,Aboriginal Affairs +365947,Aboriginal Affairs,Aboriginal Affairs +354768,Aboriginal Affairs,Aboriginal Affairs +354767,Aboriginal Affairs,Aboriginal Affairs +354766,Aboriginal Affairs,Aboriginal Affairs +354765,Aboriginal Affairs,Aboriginal Affairs +354764,Aboriginal Affairs,Aboriginal Affairs +354763,Aboriginal Affairs,Aboriginal Affairs +354762,Aboriginal Affairs,Aboriginal Affairs +354761,Aboriginal Affairs,Aboriginal Affairs +354759,Aboriginal Affairs,Aboriginal Affairs +354758,Aboriginal Affairs,Aboriginal Affairs +354757,Aboriginal Affairs,Aboriginal Affairs +354756,Aboriginal Affairs,Aboriginal Affairs +354755,Aboriginal Affairs,Aboriginal Affairs +354754,Aboriginal Affairs,Aboriginal Affairs +354753,Aboriginal Affairs,Aboriginal Affairs +354752,Aboriginal Affairs,Aboriginal Affairs +354749,Aboriginal Affairs,Aboriginal Affairs +354748,Aboriginal Affairs,Aboriginal Affairs +354747,Aboriginal Affairs,Aboriginal Affairs +354746,Aboriginal Affairs,Aboriginal Affairs +354710,Aboriginal Affairs,Aboriginal Affairs +354709,Aboriginal Affairs,Aboriginal Affairs +354708,Aboriginal Affairs,Aboriginal Affairs +354707,Aboriginal Affairs,Aboriginal Affairs +354706,Aboriginal Affairs,Aboriginal Affairs +354705,Aboriginal Affairs,Aboriginal Affairs +328789,Aboriginal Affairs,Aboriginal Affairs +326860,Aboriginal Affairs,Aboriginal Affairs +326709,Aboriginal Affairs,Aboriginal Affairs +326697,Aboriginal Affairs,Aboriginal Affairs +326696,Aboriginal Affairs,Aboriginal Affairs +326695,Aboriginal Affairs,Aboriginal Affairs +326690,Aboriginal Affairs,Aboriginal Affairs +326674,Aboriginal Affairs,Aboriginal Affairs +326673,Aboriginal Affairs,Aboriginal Affairs +326671,Aboriginal Affairs,Aboriginal Affairs +326670,Aboriginal Affairs,Aboriginal Affairs +326591,Aboriginal Affairs,Aboriginal Affairs +326587,Aboriginal Affairs,Aboriginal Affairs +326583,Aboriginal Affairs,Aboriginal Affairs +326582,Aboriginal Affairs,Aboriginal Affairs +326580,Aboriginal Affairs,Aboriginal Affairs +326579,Aboriginal Affairs,Aboriginal Affairs +326575,Aboriginal Affairs,Aboriginal Affairs +326544,Aboriginal Affairs,Aboriginal Affairs +326543,Aboriginal Affairs,Aboriginal Affairs +326542,Aboriginal Affairs,Aboriginal Affairs +326541,Aboriginal Affairs,Aboriginal Affairs +326540,Aboriginal Affairs,Aboriginal Affairs +277345,Aboriginal Affairs,Aboriginal Affairs +277002,Aboriginal Affairs,Aboriginal Affairs +453236,Aboriginal Affairs,Aboriginal Affairs +453234,Aboriginal Affairs,Aboriginal Affairs +453233,Aboriginal Affairs,Aboriginal Affairs +453232,Aboriginal Affairs,Aboriginal Affairs +453231,Aboriginal Affairs,Aboriginal Affairs +453230,Aboriginal Affairs,Aboriginal Affairs +453229,Aboriginal Affairs,Aboriginal Affairs +453228,Aboriginal Affairs,Aboriginal Affairs +453227,Aboriginal Affairs,Aboriginal Affairs +453226,Aboriginal Affairs,Aboriginal Affairs +453225,Aboriginal Affairs,Aboriginal Affairs +453224,Aboriginal Affairs,Aboriginal Affairs +453223,Aboriginal Affairs,Aboriginal Affairs +453222,Aboriginal Affairs,Aboriginal Affairs +453221,Aboriginal Affairs,Aboriginal Affairs +453220,Aboriginal Affairs,Aboriginal Affairs +453219,Aboriginal Affairs,Aboriginal Affairs +453218,Aboriginal Affairs,Aboriginal Affairs +453217,Aboriginal Affairs,Aboriginal Affairs +453216,Aboriginal Affairs,Aboriginal Affairs +453215,Aboriginal Affairs,Aboriginal Affairs +453214,Aboriginal Affairs,Aboriginal Affairs +453213,Aboriginal Affairs,Aboriginal Affairs +453212,Aboriginal Affairs,Aboriginal Affairs +453211,Aboriginal Affairs,Aboriginal Affairs +453210,Aboriginal Affairs,Aboriginal Affairs +453209,Aboriginal Affairs,Aboriginal Affairs +453208,Aboriginal Affairs,Aboriginal Affairs +453207,Aboriginal Affairs,Aboriginal Affairs +437531,Aboriginal Affairs,Aboriginal Affairs +431537,Aboriginal Affairs,Aboriginal Affairs +426612,Aboriginal Affairs,Aboriginal Affairs +426609,Aboriginal Affairs,Aboriginal Affairs +426608,Aboriginal Affairs,Aboriginal Affairs +426605,Aboriginal Affairs,Aboriginal Affairs +426598,Aboriginal Affairs,Aboriginal Affairs +426577,Aboriginal Affairs,Aboriginal Affairs +426574,Aboriginal Affairs,Aboriginal Affairs +426565,Aboriginal Affairs,Aboriginal Affairs +426554,Aboriginal Affairs,Aboriginal Affairs +426549,Aboriginal Affairs,Aboriginal Affairs +426547,Aboriginal Affairs,Aboriginal Affairs +426544,Aboriginal Affairs,Aboriginal Affairs +426543,Aboriginal Affairs,Aboriginal Affairs +426542,Aboriginal Affairs,Aboriginal Affairs +426540,Aboriginal Affairs,Aboriginal Affairs +426539,Aboriginal Affairs,Aboriginal Affairs +426524,Aboriginal Affairs,Aboriginal Affairs +426523,Aboriginal Affairs,Aboriginal Affairs +426519,Aboriginal Affairs,Aboriginal Affairs +426516,Aboriginal Affairs,Aboriginal Affairs +426512,Aboriginal Affairs,Aboriginal Affairs +418460,Aboriginal Affairs,Aboriginal Affairs +409003,Aboriginal Affairs,Aboriginal Affairs +401163,Aboriginal Affairs,Aboriginal Affairs +535884,Aboriginal Affairs,Aboriginal Affairs +505091,Aboriginal Affairs,Aboriginal Affairs +505087,Aboriginal Affairs,Aboriginal Affairs +504659,Aboriginal Affairs,Aboriginal Affairs +504658,Aboriginal Affairs,Aboriginal Affairs +504657,Aboriginal Affairs,Aboriginal Affairs +504656,Aboriginal Affairs,Aboriginal Affairs +504655,Aboriginal Affairs,Aboriginal Affairs +504654,Aboriginal Affairs,Aboriginal Affairs +504652,Aboriginal Affairs,Aboriginal Affairs +504651,Aboriginal Affairs,Aboriginal Affairs +504650,Aboriginal Affairs,Aboriginal Affairs +504649,Aboriginal Affairs,Aboriginal Affairs +504209,Aboriginal Affairs,Aboriginal Affairs +504154,Aboriginal Affairs,Aboriginal Affairs +504153,Aboriginal Affairs,Aboriginal Affairs +504152,Aboriginal Affairs,Aboriginal Affairs +504151,Aboriginal Affairs,Aboriginal Affairs +504150,Aboriginal Affairs,Aboriginal Affairs +504149,Aboriginal Affairs,Aboriginal Affairs +504148,Aboriginal Affairs,Aboriginal Affairs +504147,Aboriginal Affairs,Aboriginal Affairs +504146,Aboriginal Affairs,Aboriginal Affairs +504145,Aboriginal Affairs,Aboriginal Affairs +393294,Science and Technology,Science and Technology +418460,Science and Technology,Science and Technology +277022,Science and Technology,Science and Technology +288569,Arts and Culture,Arts et culture +273336,Arts and Culture,Arts et culture +148092,Arts and Culture,Arts et culture +147537,Arts and Culture,Arts et culture +147534,Arts and Culture,Arts et culture +143694,Arts and Culture,Arts et culture +150262,Arts and Culture,Arts et culture +264288,Arts and Culture,Arts et culture +230258,Arts and Culture,Arts et culture +381497,Arts and Culture,Arts et culture +366063,Arts and Culture,Arts et culture +340885,Arts and Culture,Arts et culture +338086,Arts and Culture,Arts et culture +329773,Arts and Culture,Arts et culture +329772,Arts and Culture,Arts et culture +329771,Arts and Culture,Arts et culture +327368,Arts and Culture,Arts et culture +319125,Arts and Culture,Arts et culture +319115,Arts and Culture,Arts et culture +304055,Arts and Culture,Arts et culture +366064,Arts and Culture,Arts et culture +358138,Arts and Culture,Arts et culture +143695,Arts and Culture,Arts et culture +159329,Arts and Culture,Arts et culture +152045,Arts and Culture,Arts et culture +152041,Arts and Culture,Arts et culture +152039,Arts and Culture,Arts et culture +150323,Arts and Culture,Arts et culture +150322,Arts and Culture,Arts et culture +150320,Arts and Culture,Arts et culture +150317,Arts and Culture,Arts et culture +150315,Arts and Culture,Arts et culture +150312,Arts and Culture,Arts et culture +150307,Arts and Culture,Arts et culture +150306,Arts and Culture,Arts et culture +150299,Arts and Culture,Arts et culture +150297,Arts and Culture,Arts et culture +150296,Arts and Culture,Arts et culture +150295,Arts and Culture,Arts et culture +150294,Arts and Culture,Arts et culture +150259,Arts and Culture,Arts et culture +148091,Arts and Culture,Arts et culture +147536,Arts and Culture,Arts et culture +147535,Arts and Culture,Arts et culture +340891,Arts and Culture,Arts et culture +338087,Arts and Culture,Arts et culture +327371,Arts and Culture,Arts et culture +319127,Arts and Culture,Arts et culture +319116,Arts and Culture,Arts et culture +288570,Arts and Culture,Arts et culture +280779,Arts and Culture,Arts et culture +273334,Arts and Culture,Arts et culture +273332,Arts and Culture,Arts et culture +269062,Arts and Culture,Arts et culture +268810,Arts and Culture,Arts et culture +264290,Arts and Culture,Arts et culture +259111,Arts and Culture,Arts et culture +217279,Arts and Culture,Arts et culture +382188,Arts and Culture,Arts et culture +382187,Arts and Culture,Arts et culture +381503,Arts and Culture,Arts et culture +143675,Arts and Culture,Arts et culture +217277,Arts and Culture,Arts et culture +159339,Arts and Culture,Arts et culture +366065,Arts and Culture,Arts et culture +340893,Arts and Culture,Arts et culture +338089,Arts and Culture,Arts et culture +324653,Arts and Culture,Arts et culture +319129,Arts and Culture,Arts et culture +319117,Arts and Culture,Arts et culture +288329,Arts and Culture,Arts et culture +451668,Telecommunications,Telecommunications +451666,Telecommunications,Telecommunications +158349,Telecommunications,Telecommunications +158228,Telecommunications,Telecommunications +158168,Telecommunications,Telecommunications +158006,Telecommunications,Telecommunications +158005,Telecommunications,Telecommunications +158003,Telecommunications,Telecommunications +158002,Telecommunications,Telecommunications +158001,Telecommunications,Telecommunications +156673,Telecommunications,Telecommunications +156672,Telecommunications,Telecommunications +156207,Telecommunications,Telecommunications +156206,Telecommunications,Telecommunications +153897,Telecommunications,Telecommunications +153895,Telecommunications,Telecommunications +150717,Telecommunications,Telecommunications +146856,Telecommunications,Telecommunications +289149,Telecommunications,Telecommunications +288709,Telecommunications,Telecommunications +274249,Telecommunications,Telecommunications +270369,Telecommunications,Telecommunications +268093,Telecommunications,Telecommunications +266072,Telecommunications,Telecommunications +261269,Telecommunications,Telecommunications +261029,Telecommunications,Telecommunications +249614,Telecommunications,Telecommunications +249613,Telecommunications,Telecommunications +249612,Telecommunications,Telecommunications +249611,Telecommunications,Telecommunications +248809,Telecommunications,Telecommunications +248082,Telecommunications,Telecommunications +248081,Telecommunications,Telecommunications +243471,Telecommunications,Telecommunications +243470,Telecommunications,Telecommunications +238209,Telecommunications,Telecommunications +232250,Telecommunications,Telecommunications +227974,Telecommunications,Telecommunications +224407,Telecommunications,Telecommunications +222409,Telecommunications,Telecommunications +216328,Telecommunications,Telecommunications +216327,Telecommunications,Telecommunications +215407,Telecommunications,Telecommunications +214407,Telecommunications,Telecommunications +214387,Telecommunications,Telecommunications +214367,Telecommunications,Telecommunications +212867,Telecommunications,Telecommunications +212847,Telecommunications,Telecommunications +211171,Telecommunications,Telecommunications +211170,Telecommunications,Telecommunications +206307,Telecommunications,Telecommunications +204187,Telecommunications,Telecommunications +201067,Telecommunications,Telecommunications +197348,Telecommunications,Telecommunications +197347,Telecommunications,Telecommunications +196511,Telecommunications,Telecommunications +196510,Telecommunications,Telecommunications +196509,Telecommunications,Telecommunications +191326,Telecommunications,Telecommunications +191191,Telecommunications,Telecommunications +191190,Telecommunications,Telecommunications +191189,Telecommunications,Telecommunications +191188,Telecommunications,Telecommunications +191186,Telecommunications,Telecommunications +191185,Telecommunications,Telecommunications +190304,Telecommunications,Telecommunications +187364,Telecommunications,Telecommunications +182784,Telecommunications,Telecommunications +182764,Telecommunications,Telecommunications +180444,Telecommunications,Telecommunications +176304,Telecommunications,Telecommunications +167276,Telecommunications,Telecommunications +166654,Telecommunications,Telecommunications +166653,Telecommunications,Telecommunications +161485,Telecommunications,Telecommunications +160744,Telecommunications,Telecommunications +160742,Telecommunications,Telecommunications +160393,Telecommunications,Telecommunications +160271,Telecommunications,Telecommunications +160270,Telecommunications,Telecommunications +160269,Telecommunications,Telecommunications +160268,Telecommunications,Telecommunications +160113,Telecommunications,Telecommunications +160112,Telecommunications,Telecommunications +448968,Telecommunications,Telecommunications +448967,Telecommunications,Telecommunications +446726,Telecommunications,Telecommunications +443071,Telecommunications,Telecommunications +440451,Telecommunications,Telecommunications +440449,Telecommunications,Telecommunications +438286,Telecommunications,Telecommunications +436507,Telecommunications,Telecommunications +436506,Telecommunications,Telecommunications +436386,Telecommunications,Telecommunications +436385,Telecommunications,Telecommunications +436104,Telecommunications,Telecommunications +424743,Telecommunications,Telecommunications +424701,Telecommunications,Telecommunications +420480,Telecommunications,Telecommunications +413920,Telecommunications,Telecommunications +411657,Telecommunications,Telecommunications +411428,Telecommunications,Telecommunications +410730,Telecommunications,Telecommunications +410453,Telecommunications,Telecommunications +408481,Telecommunications,Telecommunications +408356,Telecommunications,Telecommunications +406064,Telecommunications,Telecommunications +404424,Telecommunications,Telecommunications +401829,Telecommunications,Telecommunications +401480,Telecommunications,Telecommunications +399634,Telecommunications,Telecommunications +398779,Telecommunications,Telecommunications +398777,Telecommunications,Telecommunications +397710,Telecommunications,Telecommunications +397698,Telecommunications,Telecommunications +395165,Telecommunications,Telecommunications +395102,Telecommunications,Telecommunications +393175,Telecommunications,Telecommunications +391817,Telecommunications,Telecommunications +388725,Telecommunications,Telecommunications +386448,Telecommunications,Telecommunications +386347,Telecommunications,Telecommunications +384778,Telecommunications,Telecommunications +384776,Telecommunications,Telecommunications +384312,Telecommunications,Telecommunications +384286,Telecommunications,Telecommunications +384086,Telecommunications,Telecommunications +383997,Telecommunications,Telecommunications +383613,Telecommunications,Telecommunications +383120,Telecommunications,Telecommunications +382889,Telecommunications,Telecommunications +382773,Telecommunications,Telecommunications +382772,Telecommunications,Telecommunications +382263,Telecommunications,Telecommunications +381498,Telecommunications,Telecommunications +379323,Telecommunications,Telecommunications +378612,Telecommunications,Telecommunications +378496,Telecommunications,Telecommunications +378395,Telecommunications,Telecommunications +378045,Telecommunications,Telecommunications +377966,Telecommunications,Telecommunications +377821,Telecommunications,Telecommunications +377548,Telecommunications,Telecommunications +377512,Telecommunications,Telecommunications +377389,Telecommunications,Telecommunications +376253,Telecommunications,Telecommunications +376071,Telecommunications,Telecommunications +375901,Telecommunications,Telecommunications +375783,Telecommunications,Telecommunications +375726,Telecommunications,Telecommunications +375607,Telecommunications,Telecommunications +375510,Telecommunications,Telecommunications +375367,Telecommunications,Telecommunications +375192,Telecommunications,Telecommunications +375088,Telecommunications,Telecommunications +374738,Telecommunications,Telecommunications +374315,Telecommunications,Telecommunications +374060,Telecommunications,Telecommunications +374056,Telecommunications,Telecommunications +373447,Telecommunications,Telecommunications +373249,Telecommunications,Telecommunications +373201,Telecommunications,Telecommunications +373181,Telecommunications,Telecommunications +373053,Telecommunications,Telecommunications +373052,Telecommunications,Telecommunications +371395,Telecommunications,Telecommunications +371184,Telecommunications,Telecommunications +370945,Telecommunications,Telecommunications +370786,Telecommunications,Telecommunications +370398,Telecommunications,Telecommunications +370275,Telecommunications,Telecommunications +370202,Telecommunications,Telecommunications +370162,Telecommunications,Telecommunications +370116,Telecommunications,Telecommunications +370086,Telecommunications,Telecommunications +370071,Telecommunications,Telecommunications +370070,Telecommunications,Telecommunications +370025,Telecommunications,Telecommunications +369971,Telecommunications,Telecommunications +369807,Telecommunications,Telecommunications +369806,Telecommunications,Telecommunications +368207,Telecommunications,Telecommunications +368174,Telecommunications,Telecommunications +368062,Telecommunications,Telecommunications +367962,Telecommunications,Telecommunications +367869,Telecommunications,Telecommunications +367821,Telecommunications,Telecommunications +367342,Telecommunications,Telecommunications +367284,Telecommunications,Telecommunications +366442,Telecommunications,Telecommunications +359223,Telecommunications,Telecommunications +359222,Telecommunications,Telecommunications +354403,Telecommunications,Telecommunications +354401,Telecommunications,Telecommunications +348019,Telecommunications,Telecommunications +348017,Telecommunications,Telecommunications +341121,Telecommunications,Telecommunications +339454,Telecommunications,Telecommunications +333872,Telecommunications,Telecommunications +330284,Telecommunications,Telecommunications +327092,Telecommunications,Telecommunications +326478,Telecommunications,Telecommunications +325731,Telecommunications,Telecommunications +311633,Telecommunications,Telecommunications +311632,Telecommunications,Telecommunications +309309,Telecommunications,Telecommunications +309290,Telecommunications,Telecommunications +309289,Telecommunications,Telecommunications +301412,Telecommunications,Telecommunications +301411,Telecommunications,Telecommunications +301410,Telecommunications,Telecommunications +301409,Telecommunications,Telecommunications +540046,Telecommunications,Telecommunications +528125,Telecommunications,Telecommunications +528120,Telecommunications,Telecommunications +526132,Telecommunications,Telecommunications +522146,Telecommunications,Telecommunications +510438,Telecommunications,Telecommunications +504202,Telecommunications,Telecommunications +503391,Telecommunications,Telecommunications +500758,Telecommunications,Telecommunications +500756,Telecommunications,Telecommunications +500755,Telecommunications,Telecommunications +500754,Telecommunications,Telecommunications +497132,Telecommunications,Telecommunications +497131,Telecommunications,Telecommunications +494296,Telecommunications,Telecommunications +494295,Telecommunications,Telecommunications +488855,Telecommunications,Telecommunications +488854,Telecommunications,Telecommunications +488852,Telecommunications,Telecommunications +485865,Telecommunications,Telecommunications +485864,Telecommunications,Telecommunications +485863,Telecommunications,Telecommunications +485862,Telecommunications,Telecommunications +483277,Telecommunications,Telecommunications +476376,Telecommunications,Telecommunications +476336,Telecommunications,Telecommunications +476219,Telecommunications,Telecommunications +476218,Telecommunications,Telecommunications +476217,Telecommunications,Telecommunications +476216,Telecommunications,Telecommunications +476215,Telecommunications,Telecommunications +476214,Telecommunications,Telecommunications +476213,Telecommunications,Telecommunications +476212,Telecommunications,Telecommunications +476211,Telecommunications,Telecommunications +476210,Telecommunications,Telecommunications +474231,Telecommunications,Telecommunications +474230,Telecommunications,Telecommunications +474229,Telecommunications,Telecommunications +469089,Telecommunications,Telecommunications +469088,Telecommunications,Telecommunications +469086,Telecommunications,Telecommunications +466360,Telecommunications,Telecommunications +466358,Telecommunications,Telecommunications +466356,Telecommunications,Telecommunications +466353,Telecommunications,Telecommunications +463694,Telecommunications,Telecommunications +463693,Telecommunications,Telecommunications +462549,Telecommunications,Telecommunications +462548,Telecommunications,Telecommunications +462546,Telecommunications,Telecommunications +462538,Telecommunications,Telecommunications +457022,Telecommunications,Telecommunications +454647,Telecommunications,Telecommunications +454645,Telecommunications,Telecommunications +454643,Telecommunications,Telecommunications +451676,Telecommunications,Telecommunications +451675,Telecommunications,Telecommunications +451674,Telecommunications,Telecommunications +451673,Telecommunications,Telecommunications +451672,Telecommunications,Telecommunications +451671,Telecommunications,Telecommunications +451670,Telecommunications,Telecommunications +163567,Aboriginal Affairs,Aboriginal Affairs +163566,Aboriginal Affairs,Aboriginal Affairs +145793,Aboriginal Affairs,Aboriginal Affairs +163565,Aboriginal Affairs,Aboriginal Affairs +163564,Aboriginal Affairs,Aboriginal Affairs +163563,Aboriginal Affairs,Aboriginal Affairs +163562,Aboriginal Affairs,Aboriginal Affairs +163560,Aboriginal Affairs,Aboriginal Affairs +163551,Aboriginal Affairs,Aboriginal Affairs +163550,Aboriginal Affairs,Aboriginal Affairs +145786,Aboriginal Affairs,Aboriginal Affairs +163558,Aboriginal Affairs,Aboriginal Affairs +163557,Aboriginal Affairs,Aboriginal Affairs +163556,Aboriginal Affairs,Aboriginal Affairs +163555,Aboriginal Affairs,Aboriginal Affairs +163554,Aboriginal Affairs,Aboriginal Affairs +163577,Aboriginal Affairs,Aboriginal Affairs +163576,Aboriginal Affairs,Aboriginal Affairs +163581,Aboriginal Affairs,Aboriginal Affairs +163580,Aboriginal Affairs,Aboriginal Affairs +163586,Aboriginal Affairs,Aboriginal Affairs +163585,Aboriginal Affairs,Aboriginal Affairs +163589,Aboriginal Affairs,Aboriginal Affairs +163588,Aboriginal Affairs,Aboriginal Affairs +148619,Telecommunications,Télécommunications +175748,Telecommunications,Télécommunications +190384,Science and Technology,Science and Technology +420769,Science and Technology,Science and Technology +190397,Science and Technology,Science and Technology +190396,Science and Technology,Science and Technology +190395,Science and Technology,Science and Technology +190391,Science and Technology,Science and Technology +190389,Science and Technology,Science and Technology +190387,Science and Technology,Science and Technology +190386,Science and Technology,Science and Technology +457901,Science and Technology,Science and Technology +536908,Science and Technology,Science and Technology +237909,Science and Technology,Science and Technology +192731,Science and Technology,Science and Technology +192728,Science and Technology,Science and Technology +192727,Science and Technology,Science and Technology +192726,Science and Technology,Science and Technology +192725,Science and Technology,Science and Technology +346517,Science and Technology,Science and Technology +329689,Science and Technology,Science and Technology +461152,Science and Technology,Science and Technology +303229,Science and Technology,Science and Technology +301091,Science and Technology,Science and Technology +161834,Science and Technology,Science and Technology +161829,Science and Technology,Science and Technology +156872,Science and Technology,Science and Technology +156869,Science and Technology,Science and Technology +284989,Science and Technology,Science and Technology +283329,Science and Technology,Science and Technology +264546,Science and Technology,Science and Technology +264538,Science and Technology,Science and Technology +399117,Science and Technology,Science and Technology +392426,Science and Technology,Science and Technology +392425,Science and Technology,Science and Technology +392424,Science and Technology,Science and Technology +392423,Science and Technology,Science and Technology +390933,Science and Technology,Science and Technology +390929,Science and Technology,Science and Technology +390928,Science and Technology,Science and Technology +390926,Science and Technology,Science and Technology +379316,Science and Technology,Science and Technology +374683,Science and Technology,Science and Technology +374681,Science and Technology,Science and Technology +374678,Science and Technology,Science and Technology +374667,Science and Technology,Science and Technology +371630,Science and Technology,Science and Technology +371629,Science and Technology,Science and Technology +371628,Science and Technology,Science and Technology +371627,Science and Technology,Science and Technology +371626,Science and Technology,Science and Technology +371625,Science and Technology,Science and Technology +366575,Science and Technology,Science and Technology +366573,Science and Technology,Science and Technology +366570,Science and Technology,Science and Technology +366569,Science and Technology,Science and Technology +365122,Science and Technology,Science and Technology +365120,Science and Technology,Science and Technology +365118,Science and Technology,Science and Technology +365116,Science and Technology,Science and Technology +365110,Science and Technology,Science and Technology +365109,Science and Technology,Science and Technology +358170,Science and Technology,Science and Technology +358168,Science and Technology,Science and Technology +351341,Science and Technology,Science and Technology +350325,Science and Technology,Science and Technology +349343,Science and Technology,Science and Technology +349342,Science and Technology,Science and Technology +343853,Science and Technology,Science and Technology +343852,Science and Technology,Science and Technology +343849,Science and Technology,Science and Technology +341210,Science and Technology,Science and Technology +341206,Science and Technology,Science and Technology +330028,Science and Technology,Science and Technology +202214,Aboriginal Affairs,Aboriginal Affairs +202212,Aboriginal Affairs,Aboriginal Affairs +159500,Aboriginal Affairs,Aboriginal Affairs +159499,Aboriginal Affairs,Aboriginal Affairs +210430,Aboriginal Affairs,Aboriginal Affairs +210429,Aboriginal Affairs,Aboriginal Affairs +210428,Aboriginal Affairs,Aboriginal Affairs +210427,Aboriginal Affairs,Aboriginal Affairs +307470,Science and Technology,Science and Technology +307469,Science and Technology,Science and Technology +156459,Science and Technology,Science and Technology +156458,Science and Technology,Science and Technology +156456,Science and Technology,Science and Technology +156455,Science and Technology,Science and Technology +156454,Science and Technology,Science and Technology +156453,Science and Technology,Science and Technology +156452,Science and Technology,Science and Technology +154175,Science and Technology,Science and Technology +154174,Science and Technology,Science and Technology +154173,Science and Technology,Science and Technology +168456,Science and Technology,Science and Technology +168454,Science and Technology,Science and Technology +165408,Science and Technology,Science and Technology +165407,Science and Technology,Science and Technology +164969,Science and Technology,Science and Technology +164968,Science and Technology,Science and Technology +164967,Science and Technology,Science and Technology +164966,Science and Technology,Science and Technology +163055,Science and Technology,Science and Technology +163054,Science and Technology,Science and Technology +163053,Science and Technology,Science and Technology +163052,Science and Technology,Science and Technology +163051,Science and Technology,Science and Technology +163049,Science and Technology,Science and Technology +163048,Science and Technology,Science and Technology +163047,Science and Technology,Science and Technology +163046,Science and Technology,Science and Technology +163045,Science and Technology,Science and Technology +163044,Science and Technology,Science and Technology +158676,Science and Technology,Science and Technology +158675,Science and Technology,Science and Technology +158674,Science and Technology,Science and Technology +156461,Science and Technology,Science and Technology +300012,Science and Technology,Science and Technology +294389,Science and Technology,Science and Technology +294369,Science and Technology,Science and Technology +284709,Science and Technology,Science and Technology +267409,Science and Technology,Science and Technology +263016,Science and Technology,Science and Technology +262991,Science and Technology,Science and Technology +262989,Science and Technology,Science and Technology +262971,Science and Technology,Science and Technology +257190,Science and Technology,Science and Technology +252749,Science and Technology,Science and Technology +244892,Science and Technology,Science and Technology +244889,Science and Technology,Science and Technology +236769,Science and Technology,Science and Technology +236749,Science and Technology,Science and Technology +230434,Science and Technology,Science and Technology +227234,Science and Technology,Science and Technology +223408,Science and Technology,Science and Technology +223406,Science and Technology,Science and Technology +223404,Science and Technology,Science and Technology +212348,Science and Technology,Science and Technology +209749,Science and Technology,Science and Technology +209748,Science and Technology,Science and Technology +209747,Science and Technology,Science and Technology +205950,Science and Technology,Science and Technology +201168,Science and Technology,Science and Technology +201167,Science and Technology,Science and Technology +201154,Science and Technology,Science and Technology +201153,Science and Technology,Science and Technology +201152,Science and Technology,Science and Technology +201151,Science and Technology,Science and Technology +201150,Science and Technology,Science and Technology +201149,Science and Technology,Science and Technology +197455,Science and Technology,Science and Technology +193262,Science and Technology,Science and Technology +193260,Science and Technology,Science and Technology +193259,Science and Technology,Science and Technology +190049,Science and Technology,Science and Technology +190048,Science and Technology,Science and Technology +185885,Science and Technology,Science and Technology +185884,Science and Technology,Science and Technology +170286,Science and Technology,Science and Technology +170285,Science and Technology,Science and Technology +168627,Science and Technology,Science and Technology +323510,Science and Technology,Science and Technology +320889,Science and Technology,Science and Technology +312209,Science and Technology,Science and Technology +312202,Science and Technology,Science and Technology +312201,Science and Technology,Science and Technology +312200,Science and Technology,Science and Technology +312199,Science and Technology,Science and Technology +312194,Science and Technology,Science and Technology +307474,Science and Technology,Science and Technology +307473,Science and Technology,Science and Technology +307472,Science and Technology,Science and Technology +197250,Science and Technology,Sciences et technologies +148041,Science and Technology,Science and Technology +148040,Science and Technology,Science and Technology +149178,Arts and Culture,Arts and Culture +149177,Arts and Culture,Arts and Culture +185845,Broadcasting,Broadcasting +175769,Science and Technology,Science and Technology +195062,Telecommunications,Telecommunications +195059,Telecommunications,Telecommunications +404054,Aboriginal Affairs,Aboriginal Affairs +404053,Aboriginal Affairs,Aboriginal Affairs +401568,Aboriginal Affairs,Aboriginal Affairs +401567,Aboriginal Affairs,Aboriginal Affairs +387256,Aboriginal Affairs,Aboriginal Affairs +318937,Aboriginal Affairs,Aboriginal Affairs +318935,Aboriginal Affairs,Aboriginal Affairs +318934,Aboriginal Affairs,Aboriginal Affairs +302014,Aboriginal Affairs,Aboriginal Affairs +302013,Aboriginal Affairs,Aboriginal Affairs +302012,Aboriginal Affairs,Aboriginal Affairs +387256,Science and Technology,Science and Technology +318934,Science and Technology,Science and Technology +518108,Science and Technology,Science and Technology +515482,Science and Technology,Science and Technology +469931,Science and Technology,Science and Technology +404055,Science and Technology,Science and Technology +404054,Science and Technology,Science and Technology +404053,Science and Technology,Science and Technology +401568,Science and Technology,Science and Technology +401567,Science and Technology,Science and Technology +441315,Aboriginal Affairs,Aboriginal Affairs +162673,Aboriginal Affairs,Aboriginal Affairs +159615,Aboriginal Affairs,Aboriginal Affairs +159607,Aboriginal Affairs,Aboriginal Affairs +159604,Aboriginal Affairs,Aboriginal Affairs +159603,Aboriginal Affairs,Aboriginal Affairs +159602,Aboriginal Affairs,Aboriginal Affairs +159601,Aboriginal Affairs,Aboriginal Affairs +159600,Aboriginal Affairs,Aboriginal Affairs +159595,Aboriginal Affairs,Aboriginal Affairs +159578,Aboriginal Affairs,Aboriginal Affairs +159572,Aboriginal Affairs,Aboriginal Affairs +159565,Aboriginal Affairs,Aboriginal Affairs +154872,Aboriginal Affairs,Aboriginal Affairs +153180,Aboriginal Affairs,Aboriginal Affairs +152361,Aboriginal Affairs,Aboriginal Affairs +152360,Aboriginal Affairs,Aboriginal Affairs +244350,Aboriginal Affairs,Aboriginal Affairs +244349,Aboriginal Affairs,Aboriginal Affairs +244348,Aboriginal Affairs,Aboriginal Affairs +244346,Aboriginal Affairs,Aboriginal Affairs +244345,Aboriginal Affairs,Aboriginal Affairs +244344,Aboriginal Affairs,Aboriginal Affairs +244211,Aboriginal Affairs,Aboriginal Affairs +236835,Aboriginal Affairs,Aboriginal Affairs +222748,Aboriginal Affairs,Aboriginal Affairs +207362,Aboriginal Affairs,Aboriginal Affairs +201947,Aboriginal Affairs,Aboriginal Affairs +201927,Aboriginal Affairs,Aboriginal Affairs +197188,Aboriginal Affairs,Aboriginal Affairs +193693,Aboriginal Affairs,Aboriginal Affairs +189018,Aboriginal Affairs,Aboriginal Affairs +189015,Aboriginal Affairs,Aboriginal Affairs +189014,Aboriginal Affairs,Aboriginal Affairs +188511,Aboriginal Affairs,Aboriginal Affairs +188510,Aboriginal Affairs,Aboriginal Affairs +187028,Aboriginal Affairs,Aboriginal Affairs +180593,Aboriginal Affairs,Aboriginal Affairs +175342,Aboriginal Affairs,Aboriginal Affairs +174103,Aboriginal Affairs,Aboriginal Affairs +174101,Aboriginal Affairs,Aboriginal Affairs +173485,Aboriginal Affairs,Aboriginal Affairs +170896,Aboriginal Affairs,Aboriginal Affairs +170879,Aboriginal Affairs,Aboriginal Affairs +170865,Aboriginal Affairs,Aboriginal Affairs +169059,Aboriginal Affairs,Aboriginal Affairs +169057,Aboriginal Affairs,Aboriginal Affairs +166133,Aboriginal Affairs,Aboriginal Affairs +166016,Aboriginal Affairs,Aboriginal Affairs +166009,Aboriginal Affairs,Aboriginal Affairs +166007,Aboriginal Affairs,Aboriginal Affairs +166006,Aboriginal Affairs,Aboriginal Affairs +166005,Aboriginal Affairs,Aboriginal Affairs +326323,Aboriginal Affairs,Aboriginal Affairs +295214,Aboriginal Affairs,Aboriginal Affairs +278910,Aboriginal Affairs,Aboriginal Affairs +263959,Aboriginal Affairs,Aboriginal Affairs +253654,Aboriginal Affairs,Aboriginal Affairs +253653,Aboriginal Affairs,Aboriginal Affairs +253650,Aboriginal Affairs,Aboriginal Affairs +249790,Aboriginal Affairs,Aboriginal Affairs +249770,Aboriginal Affairs,Aboriginal Affairs +249769,Aboriginal Affairs,Aboriginal Affairs +244899,Aboriginal Affairs,Aboriginal Affairs +244622,Aboriginal Affairs,Aboriginal Affairs +244417,Aboriginal Affairs,Aboriginal Affairs +244416,Aboriginal Affairs,Aboriginal Affairs +244414,Aboriginal Affairs,Aboriginal Affairs +244413,Aboriginal Affairs,Aboriginal Affairs +244412,Aboriginal Affairs,Aboriginal Affairs +244410,Aboriginal Affairs,Aboriginal Affairs +244409,Aboriginal Affairs,Aboriginal Affairs +244408,Aboriginal Affairs,Aboriginal Affairs +244407,Aboriginal Affairs,Aboriginal Affairs +244405,Aboriginal Affairs,Aboriginal Affairs +244404,Aboriginal Affairs,Aboriginal Affairs +244402,Aboriginal Affairs,Aboriginal Affairs +244401,Aboriginal Affairs,Aboriginal Affairs +244399,Aboriginal Affairs,Aboriginal Affairs +244398,Aboriginal Affairs,Aboriginal Affairs +244396,Aboriginal Affairs,Aboriginal Affairs +244395,Aboriginal Affairs,Aboriginal Affairs +244393,Aboriginal Affairs,Aboriginal Affairs +244392,Aboriginal Affairs,Aboriginal Affairs +244391,Aboriginal Affairs,Aboriginal Affairs +244390,Aboriginal Affairs,Aboriginal Affairs +244389,Aboriginal Affairs,Aboriginal Affairs +244386,Aboriginal Affairs,Aboriginal Affairs +244384,Aboriginal Affairs,Aboriginal Affairs +244383,Aboriginal Affairs,Aboriginal Affairs +244382,Aboriginal Affairs,Aboriginal Affairs +244351,Aboriginal Affairs,Aboriginal Affairs +441286,Aboriginal Affairs,Aboriginal Affairs +441283,Aboriginal Affairs,Aboriginal Affairs +441273,Aboriginal Affairs,Aboriginal Affairs +437817,Aboriginal Affairs,Aboriginal Affairs +437816,Aboriginal Affairs,Aboriginal Affairs +437815,Aboriginal Affairs,Aboriginal Affairs +434820,Aboriginal Affairs,Aboriginal Affairs +433490,Aboriginal Affairs,Aboriginal Affairs +430941,Aboriginal Affairs,Aboriginal Affairs +430936,Aboriginal Affairs,Aboriginal Affairs +428442,Aboriginal Affairs,Aboriginal Affairs +428440,Aboriginal Affairs,Aboriginal Affairs +426159,Aboriginal Affairs,Aboriginal Affairs +424351,Aboriginal Affairs,Aboriginal Affairs +421706,Aboriginal Affairs,Aboriginal Affairs +420733,Aboriginal Affairs,Aboriginal Affairs +415934,Aboriginal Affairs,Aboriginal Affairs +415930,Aboriginal Affairs,Aboriginal Affairs +413514,Aboriginal Affairs,Aboriginal Affairs +409802,Aboriginal Affairs,Aboriginal Affairs +409799,Aboriginal Affairs,Aboriginal Affairs +407836,Aboriginal Affairs,Aboriginal Affairs +403830,Aboriginal Affairs,Aboriginal Affairs +403812,Aboriginal Affairs,Aboriginal Affairs +403795,Aboriginal Affairs,Aboriginal Affairs +392412,Aboriginal Affairs,Aboriginal Affairs +387603,Aboriginal Affairs,Aboriginal Affairs +387591,Aboriginal Affairs,Aboriginal Affairs +387588,Aboriginal Affairs,Aboriginal Affairs +385086,Aboriginal Affairs,Aboriginal Affairs +383349,Aboriginal Affairs,Aboriginal Affairs +383345,Aboriginal Affairs,Aboriginal Affairs +383342,Aboriginal Affairs,Aboriginal Affairs +382171,Aboriginal Affairs,Aboriginal Affairs +380903,Aboriginal Affairs,Aboriginal Affairs +378290,Aboriginal Affairs,Aboriginal Affairs +378285,Aboriginal Affairs,Aboriginal Affairs +378284,Aboriginal Affairs,Aboriginal Affairs +376061,Aboriginal Affairs,Aboriginal Affairs +374271,Aboriginal Affairs,Aboriginal Affairs +370733,Aboriginal Affairs,Aboriginal Affairs +368642,Aboriginal Affairs,Aboriginal Affairs +368391,Aboriginal Affairs,Aboriginal Affairs +368376,Aboriginal Affairs,Aboriginal Affairs +361106,Aboriginal Affairs,Aboriginal Affairs +357932,Aboriginal Affairs,Aboriginal Affairs +357927,Aboriginal Affairs,Aboriginal Affairs +357926,Aboriginal Affairs,Aboriginal Affairs +343599,Aboriginal Affairs,Aboriginal Affairs +343582,Aboriginal Affairs,Aboriginal Affairs +329878,Aboriginal Affairs,Aboriginal Affairs +329872,Aboriginal Affairs,Aboriginal Affairs +519306,Aboriginal Affairs,Aboriginal Affairs +515477,Aboriginal Affairs,Aboriginal Affairs +513924,Aboriginal Affairs,Aboriginal Affairs +504293,Aboriginal Affairs,Aboriginal Affairs +498056,Aboriginal Affairs,Aboriginal Affairs +489522,Aboriginal Affairs,Aboriginal Affairs +489457,Aboriginal Affairs,Aboriginal Affairs +486829,Aboriginal Affairs,Aboriginal Affairs +486785,Aboriginal Affairs,Aboriginal Affairs +470354,Aboriginal Affairs,Aboriginal Affairs +470342,Aboriginal Affairs,Aboriginal Affairs +467915,Aboriginal Affairs,Aboriginal Affairs +467908,Aboriginal Affairs,Aboriginal Affairs +467906,Aboriginal Affairs,Aboriginal Affairs +467881,Aboriginal Affairs,Aboriginal Affairs +467863,Aboriginal Affairs,Aboriginal Affairs +467855,Aboriginal Affairs,Aboriginal Affairs +467719,Aboriginal Affairs,Aboriginal Affairs +464380,Aboriginal Affairs,Aboriginal Affairs +460444,Aboriginal Affairs,Aboriginal Affairs +460443,Aboriginal Affairs,Aboriginal Affairs +460437,Aboriginal Affairs,Aboriginal Affairs +459996,Aboriginal Affairs,Aboriginal Affairs +459492,Aboriginal Affairs,Aboriginal Affairs +458402,Aboriginal Affairs,Aboriginal Affairs +458399,Aboriginal Affairs,Aboriginal Affairs +456889,Aboriginal Affairs,Aboriginal Affairs +456887,Aboriginal Affairs,Aboriginal Affairs +456884,Aboriginal Affairs,Aboriginal Affairs +454454,Aboriginal Affairs,Aboriginal Affairs +454453,Aboriginal Affairs,Aboriginal Affairs +454447,Aboriginal Affairs,Aboriginal Affairs +454443,Aboriginal Affairs,Aboriginal Affairs +451734,Aboriginal Affairs,Aboriginal Affairs +451723,Aboriginal Affairs,Aboriginal Affairs +447493,Aboriginal Affairs,Aboriginal Affairs +444947,Aboriginal Affairs,Aboriginal Affairs +444934,Aboriginal Affairs,Aboriginal Affairs +444931,Aboriginal Affairs,Aboriginal Affairs +443618,Aboriginal Affairs,Aboriginal Affairs +443613,Aboriginal Affairs,Aboriginal Affairs +443607,Aboriginal Affairs,Aboriginal Affairs +443606,Aboriginal Affairs,Aboriginal Affairs +451985,Science and Technology,Science and Technology +451973,Science and Technology,Science and Technology +172024,Science and Technology,Science and Technology +387647,Science and Technology,Science and Technology +387645,Science and Technology,Science and Technology +387643,Science and Technology,Science and Technology +387638,Science and Technology,Science and Technology +387637,Science and Technology,Science and Technology +386541,Science and Technology,Science and Technology +386536,Science and Technology,Science and Technology +381878,Science and Technology,Science and Technology +381721,Science and Technology,Science and Technology +381720,Science and Technology,Science and Technology +381719,Science and Technology,Science and Technology +381718,Science and Technology,Science and Technology +378919,Science and Technology,Science and Technology +378918,Science and Technology,Science and Technology +378914,Science and Technology,Science and Technology +377138,Science and Technology,Science and Technology +377137,Science and Technology,Science and Technology +369481,Science and Technology,Science and Technology +369478,Science and Technology,Science and Technology +369473,Science and Technology,Science and Technology +365188,Science and Technology,Science and Technology +365186,Science and Technology,Science and Technology +365184,Science and Technology,Science and Technology +365179,Science and Technology,Science and Technology +363704,Science and Technology,Science and Technology +361184,Science and Technology,Science and Technology +354500,Science and Technology,Science and Technology +351781,Science and Technology,Science and Technology +351778,Science and Technology,Science and Technology +351777,Science and Technology,Science and Technology +351772,Science and Technology,Science and Technology +347429,Science and Technology,Science and Technology +342226,Science and Technology,Science and Technology +342224,Science and Technology,Science and Technology +450112,Science and Technology,Science and Technology +449496,Science and Technology,Science and Technology +449492,Science and Technology,Science and Technology +449479,Science and Technology,Science and Technology +447049,Science and Technology,Science and Technology +445019,Science and Technology,Science and Technology +445012,Science and Technology,Science and Technology +437387,Science and Technology,Science and Technology +434639,Science and Technology,Science and Technology +433467,Science and Technology,Science and Technology +431752,Science and Technology,Science and Technology +431751,Science and Technology,Science and Technology +431718,Science and Technology,Science and Technology +428276,Science and Technology,Science and Technology +425039,Science and Technology,Science and Technology +425038,Science and Technology,Science and Technology +425037,Science and Technology,Science and Technology +423660,Science and Technology,Science and Technology +422107,Science and Technology,Science and Technology +411209,Science and Technology,Science and Technology +405240,Science and Technology,Science and Technology +404037,Science and Technology,Science and Technology +404036,Science and Technology,Science and Technology +399174,Science and Technology,Science and Technology +399169,Science and Technology,Science and Technology +395830,Science and Technology,Science and Technology +395828,Science and Technology,Science and Technology +395821,Science and Technology,Science and Technology +487296,Science and Technology,Science and Technology +481490,Science and Technology,Science and Technology +480341,Science and Technology,Science and Technology +469281,Science and Technology,Science and Technology +467255,Science and Technology,Science and Technology +464611,Science and Technology,Science and Technology +461299,Science and Technology,Science and Technology +460597,Science and Technology,Science and Technology +455415,Science and Technology,Science and Technology +455413,Science and Technology,Science and Technology +452001,Science and Technology,Science and Technology +328391,Arts and Culture,Arts and Culture +302650,Aboriginal Affairs,Aboriginal Affairs +302649,Aboriginal Affairs,Aboriginal Affairs +312052,Aboriginal Affairs,Aboriginal Affairs +152858,Telecommunications,Telecommunications +188187,Science and Technology,Science and Technology +188186,Science and Technology,Science and Technology +188189,Science and Technology,Science and Technology +479053,Telecommunications,Telecommunications +472005,Telecommunications,Telecommunications +146894,Telecommunications,Telecommunications +188541,Telecommunications,Telecommunications +188540,Telecommunications,Telecommunications +181104,Telecommunications,Telecommunications +180863,Telecommunications,Telecommunications +180860,Telecommunications,Telecommunications +180858,Telecommunications,Telecommunications +180856,Telecommunications,Telecommunications +180854,Telecommunications,Telecommunications +180852,Telecommunications,Telecommunications +180851,Telecommunications,Telecommunications +180850,Telecommunications,Telecommunications +180849,Telecommunications,Telecommunications +180848,Telecommunications,Telecommunications +180847,Telecommunications,Telecommunications +180846,Telecommunications,Telecommunications +180845,Telecommunications,Telecommunications +180844,Telecommunications,Telecommunications +180843,Telecommunications,Telecommunications +180842,Telecommunications,Telecommunications +180841,Telecommunications,Telecommunications +180840,Telecommunications,Telecommunications +180837,Telecommunications,Telecommunications +180834,Telecommunications,Telecommunications +180833,Telecommunications,Telecommunications +180832,Telecommunications,Telecommunications +180831,Telecommunications,Telecommunications +180829,Telecommunications,Telecommunications +180828,Telecommunications,Telecommunications +180827,Telecommunications,Telecommunications +180826,Telecommunications,Telecommunications +180824,Telecommunications,Telecommunications +180788,Telecommunications,Telecommunications +180787,Telecommunications,Telecommunications +180785,Telecommunications,Telecommunications +280036,Telecommunications,Telecommunications +280035,Telecommunications,Telecommunications +280034,Telecommunications,Telecommunications +280033,Telecommunications,Telecommunications +280032,Telecommunications,Telecommunications +280031,Telecommunications,Telecommunications +280030,Telecommunications,Telecommunications +280029,Telecommunications,Telecommunications +280028,Telecommunications,Telecommunications +280027,Telecommunications,Telecommunications +280026,Telecommunications,Telecommunications +280025,Telecommunications,Telecommunications +280024,Telecommunications,Telecommunications +280023,Telecommunications,Telecommunications +280022,Telecommunications,Telecommunications +280021,Telecommunications,Telecommunications +280020,Telecommunications,Telecommunications +280019,Telecommunications,Telecommunications +280018,Telecommunications,Telecommunications +280017,Telecommunications,Telecommunications +280016,Telecommunications,Telecommunications +280015,Telecommunications,Telecommunications +280013,Telecommunications,Telecommunications +280012,Telecommunications,Telecommunications +280010,Telecommunications,Telecommunications +280009,Telecommunications,Telecommunications +280008,Telecommunications,Telecommunications +280006,Telecommunications,Telecommunications +280005,Telecommunications,Telecommunications +280004,Telecommunications,Telecommunications +280001,Telecommunications,Telecommunications +280000,Telecommunications,Telecommunications +279999,Telecommunications,Telecommunications +279998,Telecommunications,Telecommunications +279997,Telecommunications,Telecommunications +279996,Telecommunications,Telecommunications +279995,Telecommunications,Telecommunications +279994,Telecommunications,Telecommunications +279993,Telecommunications,Telecommunications +279992,Telecommunications,Telecommunications +279990,Telecommunications,Telecommunications +279989,Telecommunications,Telecommunications +279988,Telecommunications,Telecommunications +279986,Telecommunications,Telecommunications +279980,Telecommunications,Telecommunications +279978,Telecommunications,Telecommunications +279977,Telecommunications,Telecommunications +279973,Telecommunications,Telecommunications +279952,Telecommunications,Telecommunications +279951,Telecommunications,Telecommunications +279950,Telecommunications,Telecommunications +279949,Telecommunications,Telecommunications +279941,Telecommunications,Telecommunications +279939,Telecommunications,Telecommunications +279938,Telecommunications,Telecommunications +279937,Telecommunications,Telecommunications +279936,Telecommunications,Telecommunications +279935,Telecommunications,Telecommunications +279934,Telecommunications,Telecommunications +279933,Telecommunications,Telecommunications +279932,Telecommunications,Telecommunications +279931,Telecommunications,Telecommunications +279930,Telecommunications,Telecommunications +279929,Telecommunications,Telecommunications +279769,Telecommunications,Telecommunications +203348,Telecommunications,Telecommunications +203328,Telecommunications,Telecommunications +203067,Telecommunications,Telecommunications +203007,Telecommunications,Telecommunications +193212,Telecommunications,Telecommunications +190369,Telecommunications,Telecommunications +190368,Telecommunications,Telecommunications +190366,Telecommunications,Telecommunications +190365,Telecommunications,Telecommunications +190364,Telecommunications,Telecommunications +190363,Telecommunications,Telecommunications +190362,Telecommunications,Telecommunications +190361,Telecommunications,Telecommunications +190360,Telecommunications,Telecommunications +190359,Telecommunications,Telecommunications +190358,Telecommunications,Telecommunications +190357,Telecommunications,Telecommunications +190356,Telecommunications,Telecommunications +190355,Telecommunications,Telecommunications +190354,Telecommunications,Telecommunications +190353,Telecommunications,Telecommunications +190352,Telecommunications,Telecommunications +190351,Telecommunications,Telecommunications +190349,Telecommunications,Telecommunications +190347,Telecommunications,Telecommunications +190344,Telecommunications,Telecommunications +397970,Telecommunications,Telecommunications +397932,Telecommunications,Telecommunications +397931,Telecommunications,Telecommunications +397928,Telecommunications,Telecommunications +397927,Telecommunications,Telecommunications +397925,Telecommunications,Telecommunications +397924,Telecommunications,Telecommunications +397922,Telecommunications,Telecommunications +397921,Telecommunications,Telecommunications +397920,Telecommunications,Telecommunications +397918,Telecommunications,Telecommunications +397916,Telecommunications,Telecommunications +397913,Telecommunications,Telecommunications +395515,Telecommunications,Telecommunications +395513,Telecommunications,Telecommunications +395511,Telecommunications,Telecommunications +395510,Telecommunications,Telecommunications +395509,Telecommunications,Telecommunications +395508,Telecommunications,Telecommunications +395507,Telecommunications,Telecommunications +395506,Telecommunications,Telecommunications +386588,Telecommunications,Telecommunications +386587,Telecommunications,Telecommunications +386575,Telecommunications,Telecommunications +385879,Telecommunications,Telecommunications +385878,Telecommunications,Telecommunications +382961,Telecommunications,Telecommunications +382960,Telecommunications,Telecommunications +382959,Telecommunications,Telecommunications +382958,Telecommunications,Telecommunications +380480,Telecommunications,Telecommunications +380479,Telecommunications,Telecommunications +380478,Telecommunications,Telecommunications +377948,Telecommunications,Telecommunications +377946,Telecommunications,Telecommunications +377945,Telecommunications,Telecommunications +377944,Telecommunications,Telecommunications +377943,Telecommunications,Telecommunications +377941,Telecommunications,Telecommunications +377939,Telecommunications,Telecommunications +375505,Telecommunications,Telecommunications +375504,Telecommunications,Telecommunications +375502,Telecommunications,Telecommunications +375501,Telecommunications,Telecommunications +374310,Telecommunications,Telecommunications +374308,Telecommunications,Telecommunications +374307,Telecommunications,Telecommunications +374306,Telecommunications,Telecommunications +374305,Telecommunications,Telecommunications +370430,Telecommunications,Telecommunications +370428,Telecommunications,Telecommunications +370426,Telecommunications,Telecommunications +370425,Telecommunications,Telecommunications +370423,Telecommunications,Telecommunications +370390,Telecommunications,Telecommunications +370386,Telecommunications,Telecommunications +370385,Telecommunications,Telecommunications +370378,Telecommunications,Telecommunications +370374,Telecommunications,Telecommunications +370372,Telecommunications,Telecommunications +370371,Telecommunications,Telecommunications +370370,Telecommunications,Telecommunications +364444,Telecommunications,Telecommunications +362924,Telecommunications,Telecommunications +358384,Telecommunications,Telecommunications +355556,Telecommunications,Telecommunications +329344,Telecommunications,Telecommunications +329343,Telecommunications,Telecommunications +329342,Telecommunications,Telecommunications +329341,Telecommunications,Telecommunications +329338,Telecommunications,Telecommunications +329337,Telecommunications,Telecommunications +329334,Telecommunications,Telecommunications +315538,Telecommunications,Telecommunications +288309,Telecommunications,Telecommunications +471995,Telecommunications,Telecommunications +471994,Telecommunications,Telecommunications +471993,Telecommunications,Telecommunications +463700,Telecommunications,Telecommunications +463699,Telecommunications,Telecommunications +463697,Telecommunications,Telecommunications +463129,Telecommunications,Telecommunications +459936,Telecommunications,Telecommunications +459935,Telecommunications,Telecommunications +459934,Telecommunications,Telecommunications +459929,Telecommunications,Telecommunications +459246,Telecommunications,Telecommunications +459245,Telecommunications,Telecommunications +459244,Telecommunications,Telecommunications +459243,Telecommunications,Telecommunications +459242,Telecommunications,Telecommunications +459241,Telecommunications,Telecommunications +459239,Telecommunications,Telecommunications +459164,Telecommunications,Telecommunications +458411,Telecommunications,Telecommunications +458368,Telecommunications,Telecommunications +458367,Telecommunications,Telecommunications +458152,Telecommunications,Telecommunications +457634,Telecommunications,Telecommunications +457633,Telecommunications,Telecommunications +457632,Telecommunications,Telecommunications +457630,Telecommunications,Telecommunications +457629,Telecommunications,Telecommunications +457627,Telecommunications,Telecommunications +454674,Telecommunications,Telecommunications +454673,Telecommunications,Telecommunications +454669,Telecommunications,Telecommunications +454043,Telecommunications,Telecommunications +451424,Telecommunications,Telecommunications +451423,Telecommunications,Telecommunications +451422,Telecommunications,Telecommunications +451421,Telecommunications,Telecommunications +451420,Telecommunications,Telecommunications +451419,Telecommunications,Telecommunications +451409,Telecommunications,Telecommunications +451407,Telecommunications,Telecommunications +448810,Telecommunications,Telecommunications +448808,Telecommunications,Telecommunications +448806,Telecommunications,Telecommunications +448805,Telecommunications,Telecommunications +448728,Telecommunications,Telecommunications +448721,Telecommunications,Telecommunications +446571,Telecommunications,Telecommunications +446563,Telecommunications,Telecommunications +446561,Telecommunications,Telecommunications +446560,Telecommunications,Telecommunications +445956,Telecommunications,Telecommunications +445954,Telecommunications,Telecommunications +445948,Telecommunications,Telecommunications +445945,Telecommunications,Telecommunications +443134,Telecommunications,Telecommunications +443133,Telecommunications,Telecommunications +443132,Telecommunications,Telecommunications +443130,Telecommunications,Telecommunications +441019,Telecommunications,Telecommunications +441018,Telecommunications,Telecommunications +441017,Telecommunications,Telecommunications +441016,Telecommunications,Telecommunications +436862,Telecommunications,Telecommunications +436861,Telecommunications,Telecommunications +436860,Telecommunications,Telecommunications +436859,Telecommunications,Telecommunications +436858,Telecommunications,Telecommunications +435506,Telecommunications,Telecommunications +435505,Telecommunications,Telecommunications +435504,Telecommunications,Telecommunications +435503,Telecommunications,Telecommunications +435500,Telecommunications,Telecommunications +433291,Telecommunications,Telecommunications +433290,Telecommunications,Telecommunications +433289,Telecommunications,Telecommunications +433288,Telecommunications,Telecommunications +432273,Telecommunications,Telecommunications +432271,Telecommunications,Telecommunications +432270,Telecommunications,Telecommunications +432269,Telecommunications,Telecommunications +432268,Telecommunications,Telecommunications +432267,Telecommunications,Telecommunications +432266,Telecommunications,Telecommunications +430868,Telecommunications,Telecommunications +430865,Telecommunications,Telecommunications +430863,Telecommunications,Telecommunications +430862,Telecommunications,Telecommunications +430859,Telecommunications,Telecommunications +430856,Telecommunications,Telecommunications +430854,Telecommunications,Telecommunications +430852,Telecommunications,Telecommunications +430851,Telecommunications,Telecommunications +430849,Telecommunications,Telecommunications +430846,Telecommunications,Telecommunications +430844,Telecommunications,Telecommunications +430839,Telecommunications,Telecommunications +430837,Telecommunications,Telecommunications +427969,Telecommunications,Telecommunications +425681,Telecommunications,Telecommunications +425680,Telecommunications,Telecommunications +425676,Telecommunications,Telecommunications +425674,Telecommunications,Telecommunications +423162,Telecommunications,Telecommunications +423161,Telecommunications,Telecommunications +423114,Telecommunications,Telecommunications +422103,Telecommunications,Telecommunications +422102,Telecommunications,Telecommunications +422097,Telecommunications,Telecommunications +419460,Telecommunications,Telecommunications +419458,Telecommunications,Telecommunications +419447,Telecommunications,Telecommunications +419446,Telecommunications,Telecommunications +419441,Telecommunications,Telecommunications +416002,Telecommunications,Telecommunications +415999,Telecommunications,Telecommunications +415699,Telecommunications,Telecommunications +415697,Telecommunications,Telecommunications +415695,Telecommunications,Telecommunications +415694,Telecommunications,Telecommunications +412256,Telecommunications,Telecommunications +407369,Telecommunications,Telecommunications +407368,Telecommunications,Telecommunications +406438,Telecommunications,Telecommunications +404513,Telecommunications,Telecommunications +404511,Telecommunications,Telecommunications +404510,Telecommunications,Telecommunications +404508,Telecommunications,Telecommunications +404507,Telecommunications,Telecommunications +404506,Telecommunications,Telecommunications +404505,Telecommunications,Telecommunications +404504,Telecommunications,Telecommunications +404503,Telecommunications,Telecommunications +401981,Telecommunications,Telecommunications +401890,Telecommunications,Telecommunications +401889,Telecommunications,Telecommunications +401888,Telecommunications,Telecommunications +401887,Telecommunications,Telecommunications +401886,Telecommunications,Telecommunications +400829,Telecommunications,Telecommunications +400826,Telecommunications,Telecommunications +400825,Telecommunications,Telecommunications +400822,Telecommunications,Telecommunications +400821,Telecommunications,Telecommunications +400819,Telecommunications,Telecommunications +400818,Telecommunications,Telecommunications +400812,Telecommunications,Telecommunications +541899,Telecommunications,Telecommunications +541898,Telecommunications,Telecommunications +540040,Telecommunications,Telecommunications +536855,Telecommunications,Telecommunications +536854,Telecommunications,Telecommunications +533475,Telecommunications,Telecommunications +530964,Telecommunications,Telecommunications +530960,Telecommunications,Telecommunications +530959,Telecommunications,Telecommunications +530956,Telecommunications,Telecommunications +530236,Telecommunications,Telecommunications +530235,Telecommunications,Telecommunications +530234,Telecommunications,Telecommunications +526901,Telecommunications,Telecommunications +526899,Telecommunications,Telecommunications +526898,Telecommunications,Telecommunications +523347,Telecommunications,Telecommunications +519119,Telecommunications,Telecommunications +519112,Telecommunications,Telecommunications +519111,Telecommunications,Telecommunications +519109,Telecommunications,Telecommunications +519108,Telecommunications,Telecommunications +516715,Telecommunications,Telecommunications +516714,Telecommunications,Telecommunications +516713,Telecommunications,Telecommunications +516710,Telecommunications,Telecommunications +513572,Telecommunications,Telecommunications +513571,Telecommunications,Telecommunications +513251,Telecommunications,Telecommunications +513249,Telecommunications,Telecommunications +513248,Telecommunications,Telecommunications +513246,Telecommunications,Telecommunications +513208,Telecommunications,Telecommunications +513207,Telecommunications,Telecommunications +513203,Telecommunications,Telecommunications +506867,Telecommunications,Telecommunications +506866,Telecommunications,Telecommunications +498325,Telecommunications,Telecommunications +498323,Telecommunications,Telecommunications +498322,Telecommunications,Telecommunications +497778,Telecommunications,Telecommunications +497777,Telecommunications,Telecommunications +497776,Telecommunications,Telecommunications +494251,Telecommunications,Telecommunications +494246,Telecommunications,Telecommunications +494244,Telecommunications,Telecommunications +494243,Telecommunications,Telecommunications +494242,Telecommunications,Telecommunications +493576,Telecommunications,Telecommunications +493575,Telecommunications,Telecommunications +492022,Telecommunications,Telecommunications +486494,Telecommunications,Telecommunications +486493,Telecommunications,Telecommunications +486492,Telecommunications,Telecommunications +486490,Telecommunications,Telecommunications +486487,Telecommunications,Telecommunications +486486,Telecommunications,Telecommunications +486475,Telecommunications,Telecommunications +483209,Telecommunications,Telecommunications +483208,Telecommunications,Telecommunications +483207,Telecommunications,Telecommunications +483206,Telecommunications,Telecommunications +483205,Telecommunications,Telecommunications +483204,Telecommunications,Telecommunications +482697,Telecommunications,Telecommunications +482696,Telecommunications,Telecommunications +482695,Telecommunications,Telecommunications +482694,Telecommunications,Telecommunications +479057,Telecommunications,Telecommunications +479056,Telecommunications,Telecommunications +479055,Telecommunications,Telecommunications +442779,Telecommunications,Telecommunications +442778,Telecommunications,Telecommunications +332070,Telecommunications,Telecommunications +332069,Telecommunications,Telecommunications +330344,Telecommunications,Telecommunications +329509,Telecommunications,Telecommunications +325809,Telecommunications,Telecommunications +325365,Telecommunications,Telecommunications +324609,Telecommunications,Telecommunications +314649,Telecommunications,Telecommunications +314249,Telecommunications,Telecommunications +279029,Telecommunications,Telecommunications +277490,Telecommunications,Telecommunications +275930,Telecommunications,Telecommunications +274809,Telecommunications,Telecommunications +255450,Telecommunications,Telecommunications +253769,Telecommunications,Telecommunications +243849,Telecommunications,Telecommunications +175477,Telecommunications,Telecommunications +431740,Telecommunications,Telecommunications +420461,Telecommunications,Telecommunications +394598,Telecommunications,Telecommunications +389063,Telecommunications,Telecommunications +383861,Telecommunications,Telecommunications +383853,Telecommunications,Telecommunications +356862,Telecommunications,Telecommunications +356861,Telecommunications,Telecommunications +356860,Telecommunications,Telecommunications +344482,Telecommunications,Telecommunications +342858,Telecommunications,Telecommunications +342857,Telecommunications,Telecommunications +342470,Telecommunications,Telecommunications +342469,Telecommunications,Telecommunications +339629,Telecommunications,Telecommunications +338953,Telecommunications,Telecommunications +338952,Telecommunications,Telecommunications +336849,Telecommunications,Telecommunications +334158,Telecommunications,Telecommunications +334157,Telecommunications,Telecommunications +332969,Telecommunications,Telecommunications +503180,Telecommunications,Telecommunications +496487,Telecommunications,Telecommunications +460794,Telecommunications,Telecommunications +454050,Telecommunications,Telecommunications +448449,Telecommunications,Telecommunications +442781,Telecommunications,Telecommunications +152019,Arts and Culture,Arts et culture +152018,Arts and Culture,Arts et culture +152017,Arts and Culture,Arts et culture +150402,Arts and Culture,Arts et culture +150401,Arts and Culture,Arts et culture +150400,Arts and Culture,Arts et culture +150398,Arts and Culture,Arts et culture +170435,Arts and Culture,Arts et culture +161715,Arts and Culture,Arts et culture +156908,Arts and Culture,Arts et culture +154663,Arts and Culture,Arts et culture +154662,Arts and Culture,Arts et culture +154661,Arts and Culture,Arts et culture +153285,Arts and Culture,Arts et culture +153284,Arts and Culture,Arts et culture +153283,Arts and Culture,Arts et culture +153281,Arts and Culture,Arts et culture +152025,Arts and Culture,Arts et culture +152024,Arts and Culture,Arts et culture +152023,Arts and Culture,Arts et culture +152022,Arts and Culture,Arts et culture +152021,Arts and Culture,Arts et culture +154665,Arts and Culture,Arts et culture +154664,Arts and Culture,Arts et culture +152010,Arts and Culture,Arts et culture +150390,Arts and Culture,Arts et culture +150387,Arts and Culture,Arts et culture +150378,Arts and Culture,Arts et culture +173666,Arts and Culture,Arts et culture +171934,Arts and Culture,Arts et culture +171933,Arts and Culture,Arts et culture +171932,Arts and Culture,Arts et culture +171931,Arts and Culture,Arts et culture +171930,Arts and Culture,Arts et culture +171929,Arts and Culture,Arts et culture +170434,Arts and Culture,Arts et culture +170433,Arts and Culture,Arts et culture +170432,Arts and Culture,Arts et culture +168372,Arts and Culture,Arts et culture +168371,Arts and Culture,Arts et culture +168370,Arts and Culture,Arts et culture +168366,Arts and Culture,Arts et culture +168365,Arts and Culture,Arts et culture +168364,Arts and Culture,Arts et culture +165848,Arts and Culture,Arts et culture +163804,Arts and Culture,Arts et culture +163801,Arts and Culture,Arts et culture +161712,Arts and Culture,Arts et culture +161711,Arts and Culture,Arts et culture +159394,Arts and Culture,Arts et culture +159391,Arts and Culture,Arts et culture +156909,Arts and Culture,Arts et culture +191924,Aboriginal Affairs,Aboriginal Affairs +191904,Aboriginal Affairs,Aboriginal Affairs +191964,Aboriginal Affairs,Aboriginal Affairs +149978,Science and Technology,Science and Technology +150198,Science and Technology,Science and Technology +149980,Science and Technology,Science and Technology +165207,Aboriginal Affairs,Aboriginal Affairs +271749,Aboriginal Affairs,Aboriginal Affairs +245569,Aboriginal Affairs,Aboriginal Affairs +148373,Aboriginal Affairs,Aboriginal Affairs +371779,Aboriginal Affairs,Aboriginal Affairs +342997,Aboriginal Affairs,Aboriginal Affairs +188045,Aboriginal Affairs,Aboriginal Affairs +148376,Aboriginal Affairs,Aboriginal Affairs +156566,Arts and Culture,Arts and Culture +156565,Arts and Culture,Arts and Culture +149377,Arts and Culture,Arts and Culture +149376,Arts and Culture,Arts and Culture +167466,Arts and Culture,Arts and Culture +167465,Arts and Culture,Arts and Culture +536496,Arts and Culture,Arts and Culture +407312,Arts and Culture,Arts and Culture +392912,Arts and Culture,Arts and Culture +370481,Arts and Culture,Arts and Culture +364353,Arts and Culture,Arts and Culture +360905,Arts and Culture,Arts and Culture +360904,Arts and Culture,Arts and Culture +360903,Arts and Culture,Arts and Culture +360902,Arts and Culture,Arts and Culture +359142,Arts and Culture,Arts and Culture +331793,Arts and Culture,Arts and Culture +148556,Science and Technology,Science and Technology +151459,Science and Technology,Science and Technology +151440,Science and Technology,Science and Technology +374706,Science and Technology,Science and Technology +498187,Science and Technology,Science and Technology +269095,Science and Technology,Science and Technology +185316,Science and Technology,Science and Technology +185315,Science and Technology,Science and Technology +185314,Science and Technology,Science and Technology +458916,Science and Technology,Science and Technology +394445,Science and Technology,Science and Technology +315913,Aboriginal Affairs,Aboriginal Affairs +315912,Aboriginal Affairs,Aboriginal Affairs +165902,Aboriginal Affairs,Aboriginal Affairs +162202,Aboriginal Affairs,Aboriginal Affairs +162201,Aboriginal Affairs,Aboriginal Affairs +162190,Aboriginal Affairs,Aboriginal Affairs +168659,Aboriginal Affairs,Aboriginal Affairs +168652,Aboriginal Affairs,Aboriginal Affairs +168649,Aboriginal Affairs,Aboriginal Affairs +168643,Aboriginal Affairs,Aboriginal Affairs +168585,Aboriginal Affairs,Aboriginal Affairs +312732,Aboriginal Affairs,Aboriginal Affairs +312729,Aboriginal Affairs,Aboriginal Affairs +311149,Aboriginal Affairs,Aboriginal Affairs +365083,Aboriginal Affairs,Aboriginal Affairs +358155,Aboriginal Affairs,Aboriginal Affairs +353631,Aboriginal Affairs,Aboriginal Affairs +352111,Aboriginal Affairs,Aboriginal Affairs +328238,Aboriginal Affairs,Aboriginal Affairs +328231,Aboriginal Affairs,Aboriginal Affairs +435827,Aboriginal Affairs,Aboriginal Affairs +428690,Aboriginal Affairs,Aboriginal Affairs +543445,Aboriginal Affairs,Aboriginal Affairs +543412,Aboriginal Affairs,Aboriginal Affairs +514127,Aboriginal Affairs,Aboriginal Affairs +478329,Aboriginal Affairs,Aboriginal Affairs +450113,Aboriginal Affairs,Aboriginal Affairs +443945,Aboriginal Affairs,Aboriginal Affairs +513321,Broadcasting,Broadcasting +513319,Broadcasting,Broadcasting +513329,Broadcasting,Broadcasting +513328,Broadcasting,Broadcasting +513327,Broadcasting,Broadcasting +513326,Broadcasting,Broadcasting +438999,Science and Technology,Science and Technology +438995,Science and Technology,Science and Technology +234394,Science and Technology,Science and Technology +234393,Science and Technology,Science and Technology +234392,Science and Technology,Science and Technology +234391,Science and Technology,Science and Technology +234390,Science and Technology,Science and Technology +234389,Science and Technology,Science and Technology +223481,Science and Technology,Science and Technology +212504,Science and Technology,Science and Technology +212501,Science and Technology,Science and Technology +212499,Science and Technology,Science and Technology +207671,Science and Technology,Science and Technology +207669,Science and Technology,Science and Technology +185909,Science and Technology,Science and Technology +185908,Science and Technology,Science and Technology +185906,Science and Technology,Science and Technology +173557,Science and Technology,Science and Technology +168858,Science and Technology,Science and Technology +168850,Science and Technology,Science and Technology +168845,Science and Technology,Science and Technology +168834,Science and Technology,Science and Technology +163933,Science and Technology,Science and Technology +356240,Science and Technology,Science and Technology +356237,Science and Technology,Science and Technology +354091,Science and Technology,Science and Technology +354086,Science and Technology,Science and Technology +351411,Science and Technology,Science and Technology +351408,Science and Technology,Science and Technology +351407,Science and Technology,Science and Technology +344031,Science and Technology,Science and Technology +344028,Science and Technology,Science and Technology +344023,Science and Technology,Science and Technology +344019,Science and Technology,Science and Technology +341904,Science and Technology,Science and Technology +335985,Science and Technology,Science and Technology +335981,Science and Technology,Science and Technology +329449,Science and Technology,Science and Technology +327554,Science and Technology,Science and Technology +327551,Science and Technology,Science and Technology +327545,Science and Technology,Science and Technology +315612,Science and Technology,Science and Technology +315611,Science and Technology,Science and Technology +315610,Science and Technology,Science and Technology +315609,Science and Technology,Science and Technology +315607,Science and Technology,Science and Technology +315606,Science and Technology,Science and Technology +273643,Science and Technology,Science and Technology +273642,Science and Technology,Science and Technology +273641,Science and Technology,Science and Technology +273631,Science and Technology,Science and Technology +273628,Science and Technology,Science and Technology +273623,Science and Technology,Science and Technology +273620,Science and Technology,Science and Technology +273617,Science and Technology,Science and Technology +267331,Science and Technology,Science and Technology +267330,Science and Technology,Science and Technology +267329,Science and Technology,Science and Technology +264438,Science and Technology,Science and Technology +264437,Science and Technology,Science and Technology +264434,Science and Technology,Science and Technology +264430,Science and Technology,Science and Technology +264428,Science and Technology,Science and Technology +264426,Science and Technology,Science and Technology +264425,Science and Technology,Science and Technology +259539,Science and Technology,Science and Technology +259537,Science and Technology,Science and Technology +245652,Science and Technology,Science and Technology +245651,Science and Technology,Science and Technology +241125,Science and Technology,Science and Technology +241122,Science and Technology,Science and Technology +236998,Science and Technology,Science and Technology +236996,Science and Technology,Science and Technology +438993,Science and Technology,Science and Technology +438990,Science and Technology,Science and Technology +430529,Science and Technology,Science and Technology +430525,Science and Technology,Science and Technology +423984,Science and Technology,Science and Technology +423981,Science and Technology,Science and Technology +422312,Science and Technology,Science and Technology +422310,Science and Technology,Science and Technology +422308,Science and Technology,Science and Technology +422306,Science and Technology,Science and Technology +422305,Science and Technology,Science and Technology +422303,Science and Technology,Science and Technology +420289,Science and Technology,Science and Technology +420288,Science and Technology,Science and Technology +420287,Science and Technology,Science and Technology +420286,Science and Technology,Science and Technology +420285,Science and Technology,Science and Technology +420281,Science and Technology,Science and Technology +420280,Science and Technology,Science and Technology +413207,Science and Technology,Science and Technology +413173,Science and Technology,Science and Technology +413154,Science and Technology,Science and Technology +413150,Science and Technology,Science and Technology +413143,Science and Technology,Science and Technology +413141,Science and Technology,Science and Technology +413138,Science and Technology,Science and Technology +409848,Science and Technology,Science and Technology +409845,Science and Technology,Science and Technology +409840,Science and Technology,Science and Technology +401020,Science and Technology,Science and Technology +401017,Science and Technology,Science and Technology +401015,Science and Technology,Science and Technology +400918,Science and Technology,Science and Technology +400912,Science and Technology,Science and Technology +400908,Science and Technology,Science and Technology +400906,Science and Technology,Science and Technology +398582,Science and Technology,Science and Technology +398580,Science and Technology,Science and Technology +398574,Science and Technology,Science and Technology +388384,Science and Technology,Science and Technology +388375,Science and Technology,Science and Technology +388357,Science and Technology,Science and Technology +388347,Science and Technology,Science and Technology +382649,Science and Technology,Science and Technology +381180,Science and Technology,Science and Technology +379757,Science and Technology,Science and Technology +379753,Science and Technology,Science and Technology +379750,Science and Technology,Science and Technology +379748,Science and Technology,Science and Technology +379744,Science and Technology,Science and Technology +379741,Science and Technology,Science and Technology +379736,Science and Technology,Science and Technology +374543,Science and Technology,Science and Technology +372531,Science and Technology,Science and Technology +366740,Science and Technology,Science and Technology +363461,Science and Technology,Science and Technology +356270,Science and Technology,Science and Technology +356267,Science and Technology,Science and Technology +356265,Science and Technology,Science and Technology +356260,Science and Technology,Science and Technology +356255,Science and Technology,Science and Technology +356244,Science and Technology,Science and Technology +541876,Science and Technology,Science and Technology +541874,Science and Technology,Science and Technology +539885,Science and Technology,Science and Technology +537830,Science and Technology,Science and Technology +533670,Science and Technology,Science and Technology +533669,Science and Technology,Science and Technology +533668,Science and Technology,Science and Technology +533667,Science and Technology,Science and Technology +533657,Science and Technology,Science and Technology +530947,Science and Technology,Science and Technology +530946,Science and Technology,Science and Technology +528979,Science and Technology,Science and Technology +528976,Science and Technology,Science and Technology +528975,Science and Technology,Science and Technology +528973,Science and Technology,Science and Technology +528965,Science and Technology,Science and Technology +526235,Science and Technology,Science and Technology +526221,Science and Technology,Science and Technology +526216,Science and Technology,Science and Technology +523202,Science and Technology,Science and Technology +519854,Science and Technology,Science and Technology +518955,Science and Technology,Science and Technology +518951,Science and Technology,Science and Technology +518123,Science and Technology,Science and Technology +518120,Science and Technology,Science and Technology +517967,Science and Technology,Science and Technology +517965,Science and Technology,Science and Technology +517963,Science and Technology,Science and Technology +515943,Science and Technology,Science and Technology +514151,Science and Technology,Science and Technology +509278,Science and Technology,Science and Technology +508499,Science and Technology,Science and Technology +499021,Science and Technology,Science and Technology +491179,Science and Technology,Science and Technology +484773,Science and Technology,Science and Technology +484770,Science and Technology,Science and Technology +484769,Science and Technology,Science and Technology +479512,Science and Technology,Science and Technology +479510,Science and Technology,Science and Technology +464779,Science and Technology,Science and Technology +462800,Science and Technology,Science and Technology +461677,Science and Technology,Science and Technology +461673,Science and Technology,Science and Technology +458679,Science and Technology,Science and Technology +458678,Science and Technology,Science and Technology +456868,Science and Technology,Science and Technology +456867,Science and Technology,Science and Technology +451438,Science and Technology,Science and Technology +451437,Science and Technology,Science and Technology +451436,Science and Technology,Science and Technology +451432,Science and Technology,Science and Technology +451430,Science and Technology,Science and Technology +451426,Science and Technology,Science and Technology +447709,Science and Technology,Science and Technology +442442,Science and Technology,Science and Technology +442435,Science and Technology,Science and Technology +442425,Science and Technology,Science and Technology +518955,Aboriginal Affairs,Aboriginal Affairs +152800,Science and Technology,Science and Technology +152657,Science and Technology,Science and Technology +166019,Science and Technology,Science and Technology +166015,Science and Technology,Science and Technology +160510,Science and Technology,Science and Technology +157988,Science and Technology,Science and Technology +152899,Science and Technology,Science and Technology +152881,Science and Technology,Science and Technology +152880,Science and Technology,Science and Technology +152879,Science and Technology,Science and Technology +230192,Broadcasting,Broadcasting +211770,Telecommunications,Telecommunications +211769,Telecommunications,Telecommunications +239110,Telecommunications,Telecommunications +159083,Science and Technology,Science and Technology +155907,Science and Technology,Science and Technology +486091,Science and Technology,Science and Technology +321381,Aboriginal Affairs,Aboriginal Affairs +321380,Aboriginal Affairs,Aboriginal Affairs +164530,Aboriginal Affairs,Aboriginal Affairs +164529,Aboriginal Affairs,Aboriginal Affairs +163059,Aboriginal Affairs,Aboriginal Affairs +159379,Aboriginal Affairs,Aboriginal Affairs +156357,Aboriginal Affairs,Aboriginal Affairs +155069,Aboriginal Affairs,Aboriginal Affairs +263090,Aboriginal Affairs,Aboriginal Affairs +245092,Aboriginal Affairs,Aboriginal Affairs +192896,Aboriginal Affairs,Aboriginal Affairs +169867,Aboriginal Affairs,Aboriginal Affairs +164936,Aboriginal Affairs,Aboriginal Affairs +164935,Aboriginal Affairs,Aboriginal Affairs +363280,Aboriginal Affairs,Aboriginal Affairs +434901,Science and Technology,Science and Technology +530965,Science and Technology,Science and Technology +321383,Science and Technology,Science and Technology +245092,Science and Technology,Science and Technology +158682,Science and Technology,Science and Technology +158679,Science and Technology,Science and Technology +250915,Broadcasting,Broadcasting +203527,Broadcasting,Broadcasting +281589,Broadcasting,Broadcasting +381533,Science and Technology,Science and Technology +381529,Science and Technology,Science and Technology +381517,Science and Technology,Science and Technology +429510,Aboriginal Affairs,Aboriginal Affairs +429507,Aboriginal Affairs,Aboriginal Affairs +153632,Aboriginal Affairs,Aboriginal Affairs +351200,Aboriginal Affairs,Aboriginal Affairs +413357,Aboriginal Affairs,Aboriginal Affairs +537929,Aboriginal Affairs,Aboriginal Affairs +400978,Aboriginal Affairs,Aboriginal Affairs +400974,Aboriginal Affairs,Aboriginal Affairs +161631,Arts and Culture,Arts and Culture +161630,Arts and Culture,Arts and Culture +161633,Arts and Culture,Arts and Culture +158500,Aboriginal Affairs,Aboriginal Affairs +158483,Aboriginal Affairs,Aboriginal Affairs +158480,Aboriginal Affairs,Aboriginal Affairs +158478,Aboriginal Affairs,Aboriginal Affairs +158477,Aboriginal Affairs,Aboriginal Affairs +155312,Science and Technology,Science and Technology +155309,Science and Technology,Science and Technology +166295,Science and Technology,Science and Technology +166294,Science and Technology,Science and Technology +160298,Science and Technology,Science and Technology +160294,Science and Technology,Science and Technology +490913,Aboriginal Affairs,Aboriginal Affairs +490912,Aboriginal Affairs,Aboriginal Affairs +490915,Aboriginal Affairs,Aboriginal Affairs +252674,Science and Technology,Science and Technology +252670,Science and Technology,Science and Technology +252710,Science and Technology,Science and Technology +252694,Science and Technology,Science and Technology +252693,Science and Technology,Science and Technology +252691,Science and Technology,Science and Technology +228429,Science and Technology,Science and Technology +166524,Telecommunications,Telecommunications +308569,Arts and Culture,Arts and Culture +301830,Arts and Culture,Arts and Culture +233318,Arts and Culture,Arts and Culture +233317,Arts and Culture,Arts and Culture +185863,Arts and Culture,Arts and Culture +433175,Arts and Culture,Arts and Culture +433174,Arts and Culture,Arts and Culture +419831,Arts and Culture,Arts and Culture +404366,Arts and Culture,Arts and Culture +468473,Arts and Culture,Arts and Culture +468471,Arts and Culture,Arts and Culture +468461,Arts and Culture,Arts and Culture +468460,Arts and Culture,Arts and Culture +468447,Arts and Culture,Arts and Culture +447830,Arts and Culture,Arts and Culture +447824,Arts and Culture,Arts and Culture +543412,Arts and Culture,Arts and Culture +531600,Arts and Culture,Arts and Culture +166070,Arts and Culture,Arts and Culture +161180,Arts and Culture,Arts and Culture +161179,Arts and Culture,Arts and Culture +161178,Arts and Culture,Arts and Culture +161177,Arts and Culture,Arts and Culture +161176,Arts and Culture,Arts and Culture +161175,Arts and Culture,Arts and Culture +158836,Science and Technology,Science and Technology +205928,Science and Technology,Science and Technology +161968,Arts and Culture,Arts and Culture +161965,Arts and Culture,Arts and Culture +183964,Arts and Culture,Arts and Culture +174773,Arts and Culture,Arts and Culture +174772,Arts and Culture,Arts and Culture +418470,Arts and Culture,Arts and Culture +393004,Arts and Culture,Arts and Culture +375750,Arts and Culture,Arts and Culture +375749,Arts and Culture,Arts and Culture +351687,Arts and Culture,Arts and Culture +351681,Arts and Culture,Arts and Culture +437557,Arts and Culture,Arts and Culture +418475,Arts and Culture,Arts and Culture +192497,Aboriginal Affairs,Aboriginal Affairs +158408,Aboriginal Affairs,Aboriginal Affairs +423112,Broadcasting,Broadcasting +402293,Broadcasting,Broadcasting +199127,Broadcasting,Broadcasting +196727,Broadcasting,Broadcasting +192750,Broadcasting,Broadcasting +192748,Broadcasting,Broadcasting +192747,Broadcasting,Broadcasting +171325,Broadcasting,Broadcasting +171324,Broadcasting,Broadcasting +160538,Broadcasting,Broadcasting +319489,Broadcasting,Broadcasting +274289,Broadcasting,Broadcasting +258030,Broadcasting,Broadcasting +402292,Broadcasting,Broadcasting +402291,Broadcasting,Broadcasting +398428,Broadcasting,Broadcasting +394919,Broadcasting,Broadcasting +389427,Broadcasting,Broadcasting +389424,Broadcasting,Broadcasting +388510,Broadcasting,Broadcasting +388509,Broadcasting,Broadcasting +374342,Broadcasting,Broadcasting +374341,Broadcasting,Broadcasting +374320,Broadcasting,Broadcasting +373231,Broadcasting,Broadcasting +373230,Broadcasting,Broadcasting +373228,Broadcasting,Broadcasting +373227,Broadcasting,Broadcasting +373226,Broadcasting,Broadcasting +373225,Broadcasting,Broadcasting +351920,Broadcasting,Broadcasting +349520,Broadcasting,Broadcasting +347238,Broadcasting,Broadcasting +342683,Broadcasting,Broadcasting +342682,Broadcasting,Broadcasting +339901,Broadcasting,Broadcasting +339731,Broadcasting,Broadcasting +339729,Broadcasting,Broadcasting +480585,Broadcasting,Broadcasting +480584,Broadcasting,Broadcasting +467020,Broadcasting,Broadcasting +463722,Broadcasting,Broadcasting +463721,Broadcasting,Broadcasting +463719,Broadcasting,Broadcasting +463718,Broadcasting,Broadcasting +461499,Broadcasting,Broadcasting +453912,Broadcasting,Broadcasting +451201,Broadcasting,Broadcasting +446513,Broadcasting,Broadcasting +446512,Broadcasting,Broadcasting +446511,Broadcasting,Broadcasting +446510,Broadcasting,Broadcasting +440673,Broadcasting,Broadcasting +425343,Broadcasting,Broadcasting +197217,Telecommunications,Telecommunications +273732,Science and Technology,Science and Technology +161651,Arts and Culture,Arts and Culture +162296,Arts and Culture,Arts and Culture +263149,Arts and Culture,Arts and Culture +175421,Arts and Culture,Arts and Culture +173595,Arts and Culture,Arts and Culture +173592,Arts and Culture,Arts and Culture +171062,Arts and Culture,Arts and Culture +168693,Arts and Culture,Arts and Culture +330509,Science and Technology,Science and Technology +324129,Science and Technology,Science and Technology +168831,Science and Technology,Science and Technology +310029,Science and Technology,Science and Technology +310026,Science and Technology,Science and Technology +304650,Science and Technology,Science and Technology +303633,Science and Technology,Science and Technology +303629,Science and Technology,Science and Technology +280399,Science and Technology,Science and Technology +280397,Science and Technology,Science and Technology +276453,Science and Technology,Science and Technology +276452,Science and Technology,Science and Technology +276451,Science and Technology,Science and Technology +276449,Science and Technology,Science and Technology +384260,Science and Technology,Science and Technology +380674,Science and Technology,Science and Technology +204747,Broadcasting,Broadcasting +440415,Broadcasting,Broadcasting +199724,Broadcasting,Broadcasting +199723,Broadcasting,Broadcasting +193335,Broadcasting,Broadcasting +193331,Broadcasting,Broadcasting +190269,Broadcasting,Broadcasting +190266,Broadcasting,Broadcasting +168046,Broadcasting,Broadcasting +168045,Broadcasting,Broadcasting +168043,Broadcasting,Broadcasting +168042,Broadcasting,Broadcasting +168040,Broadcasting,Broadcasting +163941,Broadcasting,Broadcasting +163919,Broadcasting,Broadcasting +163916,Broadcasting,Broadcasting +321049,Broadcasting,Broadcasting +226547,Broadcasting,Broadcasting +170573,Aboriginal Affairs,Aboriginal Affairs +170571,Aboriginal Affairs,Aboriginal Affairs +170568,Aboriginal Affairs,Aboriginal Affairs +165934,Aboriginal Affairs,Aboriginal Affairs +165931,Aboriginal Affairs,Aboriginal Affairs +161823,Aboriginal Affairs,Aboriginal Affairs +161211,Aboriginal Affairs,Aboriginal Affairs +268969,Aboriginal Affairs,Aboriginal Affairs +250049,Aboriginal Affairs,Aboriginal Affairs +250042,Aboriginal Affairs,Aboriginal Affairs +250032,Aboriginal Affairs,Aboriginal Affairs +240917,Aboriginal Affairs,Aboriginal Affairs +217529,Aboriginal Affairs,Aboriginal Affairs +207586,Aboriginal Affairs,Aboriginal Affairs +207583,Aboriginal Affairs,Aboriginal Affairs +189766,Aboriginal Affairs,Aboriginal Affairs +164989,Arts and Culture,Arts and Culture +534574,Science and Technology,Science and Technology +507237,Science and Technology,Science and Technology +166033,Science and Technology,Science and Technology +195645,Science and Technology,Science and Technology +534606,Science and Technology,Science and Technology +534499,Broadcasting,Broadcasting +440263,Broadcasting,Broadcasting +203308,Broadcasting,Broadcasting +162096,Broadcasting,Broadcasting +532746,Telecommunications,Telecommunications +518629,Telecommunications,Telecommunications +203308,Telecommunications,Telecommunications +162098,Telecommunications,Telecommunications +162097,Telecommunications,Telecommunications +162096,Telecommunications,Telecommunications +162095,Telecommunications,Telecommunications +304929,Telecommunications,Telecommunications +304912,Telecommunications,Telecommunications +304911,Telecommunications,Telecommunications +304910,Telecommunications,Telecommunications +401879,Telecommunications,Telecommunications +401422,Telecommunications,Telecommunications +495086,Telecommunications,Telecommunications +492253,Telecommunications,Telecommunications +484181,Telecommunications,Telecommunications +484180,Telecommunications,Telecommunications +469881,Telecommunications,Telecommunications +469880,Telecommunications,Telecommunications +462374,Telecommunications,Telecommunications +462373,Telecommunications,Telecommunications +456459,Telecommunications,Telecommunications +456458,Telecommunications,Telecommunications +453718,Telecommunications,Telecommunications +453717,Telecommunications,Telecommunications +449037,Telecommunications,Telecommunications +440263,Telecommunications,Telecommunications +433437,Telecommunications,Telecommunications +433435,Telecommunications,Telecommunications +423159,Telecommunications,Telecommunications +421159,Telecommunications,Telecommunications +419157,Telecommunications,Telecommunications +419155,Telecommunications,Telecommunications +401882,Telecommunications,Telecommunications +401881,Telecommunications,Telecommunications +401880,Telecommunications,Telecommunications +538635,Telecommunications,Telecommunications +534499,Telecommunications,Telecommunications +534497,Telecommunications,Telecommunications +223086,Broadcasting,Broadcasting +221287,Broadcasting,Broadcasting +190268,Broadcasting,Broadcasting +168061,Broadcasting,Broadcasting +220290,Aboriginal Affairs,Aboriginal Affairs +220289,Aboriginal Affairs,Aboriginal Affairs +228971,Aboriginal Affairs,Aboriginal Affairs +228970,Aboriginal Affairs,Aboriginal Affairs +226931,Aboriginal Affairs,Aboriginal Affairs +220547,Aboriginal Affairs,Aboriginal Affairs +163251,Arts and Culture,Arts and Culture +163250,Arts and Culture,Arts and Culture +174086,Aboriginal Affairs,Aboriginal Affairs +368375,Broadcasting,Broadcasting +368304,Broadcasting,Broadcasting +172724,Broadcasting,Broadcasting +164406,Broadcasting,Broadcasting +164405,Broadcasting,Broadcasting +164404,Broadcasting,Broadcasting +306190,Broadcasting,Broadcasting +243710,Broadcasting,Broadcasting +243709,Broadcasting,Broadcasting +228209,Broadcasting,Broadcasting +460555,Broadcasting,Broadcasting +420367,Broadcasting,Broadcasting +401289,Broadcasting,Broadcasting +398452,Broadcasting,Broadcasting +398384,Broadcasting,Broadcasting +398382,Broadcasting,Broadcasting +398380,Broadcasting,Broadcasting +384905,Broadcasting,Broadcasting +384896,Broadcasting,Broadcasting +368380,Broadcasting,Broadcasting +384905,Telecommunications,Telecommunications +384896,Telecommunications,Telecommunications +172724,Telecommunications,Telecommunications +164406,Telecommunications,Telecommunications +164405,Telecommunications,Telecommunications +164404,Telecommunications,Telecommunications +368380,Telecommunications,Telecommunications +368378,Telecommunications,Telecommunications +368375,Telecommunications,Telecommunications +368304,Telecommunications,Telecommunications +306190,Telecommunications,Telecommunications +243710,Telecommunications,Telecommunications +243709,Telecommunications,Telecommunications +228209,Telecommunications,Telecommunications +460555,Telecommunications,Telecommunications +420367,Telecommunications,Telecommunications +401289,Telecommunications,Telecommunications +398452,Telecommunications,Telecommunications +398384,Telecommunications,Telecommunications +398382,Telecommunications,Telecommunications +400434,Science and Technology,Science and Technology +395363,Science and Technology,Science and Technology +194810,Science and Technology,Science and Technology +194802,Science and Technology,Science and Technology +194787,Science and Technology,Science and Technology +194785,Science and Technology,Science and Technology +194774,Science and Technology,Science and Technology +190024,Science and Technology,Science and Technology +190004,Science and Technology,Science and Technology +189987,Science and Technology,Science and Technology +189986,Science and Technology,Science and Technology +383194,Science and Technology,Science and Technology +194815,Science and Technology,Science and Technology +463463,Science and Technology,Science and Technology +456912,Science and Technology,Science and Technology +427599,Science and Technology,Science and Technology +427597,Science and Technology,Science and Technology +427596,Science and Technology,Science and Technology +427595,Science and Technology,Science and Technology +435244,Telecommunications,Telecommunications +435234,Telecommunications,Telecommunications +385319,Science and Technology,Science and Technology +385316,Science and Technology,Science and Technology +162570,Arts and Culture,Arts and Culture +183164,Arts and Culture,Arts and Culture +163026,Arts and Culture,Arts and Culture +165033,Broadcasting,Broadcasting +165033,Telecommunications,Telecommunications +194902,Aboriginal Affairs,Aboriginal Affairs +194893,Aboriginal Affairs,Aboriginal Affairs +194913,Aboriginal Affairs,Aboriginal Affairs +194911,Aboriginal Affairs,Aboriginal Affairs +194909,Aboriginal Affairs,Aboriginal Affairs +194907,Aboriginal Affairs,Aboriginal Affairs +430315,Broadcasting,Broadcasting +430314,Broadcasting,Broadcasting +230449,Broadcasting,Broadcasting +173369,Broadcasting,Broadcasting +165291,Broadcasting,Broadcasting +165290,Broadcasting,Broadcasting +165289,Broadcasting,Broadcasting +165286,Broadcasting,Broadcasting +311082,Broadcasting,Broadcasting +311081,Broadcasting,Broadcasting +311075,Broadcasting,Broadcasting +244575,Broadcasting,Broadcasting +244574,Broadcasting,Broadcasting +244572,Broadcasting,Broadcasting +244571,Broadcasting,Broadcasting +244570,Broadcasting,Broadcasting +243990,Broadcasting,Broadcasting +427263,Broadcasting,Broadcasting +420330,Broadcasting,Broadcasting +420284,Broadcasting,Broadcasting +420282,Broadcasting,Broadcasting +404114,Broadcasting,Broadcasting +401014,Broadcasting,Broadcasting +400753,Broadcasting,Broadcasting +398607,Broadcasting,Broadcasting +398606,Broadcasting,Broadcasting +398605,Broadcasting,Broadcasting +398601,Broadcasting,Broadcasting +385185,Broadcasting,Broadcasting +385182,Broadcasting,Broadcasting +370392,Broadcasting,Broadcasting +370389,Broadcasting,Broadcasting +518572,Broadcasting,Broadcasting +516832,Broadcasting,Broadcasting +507116,Broadcasting,Broadcasting +507115,Broadcasting,Broadcasting +506187,Broadcasting,Broadcasting +501025,Broadcasting,Broadcasting +501022,Broadcasting,Broadcasting +496500,Broadcasting,Broadcasting +495282,Broadcasting,Broadcasting +494527,Broadcasting,Broadcasting +493846,Broadcasting,Broadcasting +492509,Broadcasting,Broadcasting +489127,Broadcasting,Broadcasting +488509,Broadcasting,Broadcasting +486647,Broadcasting,Broadcasting +469277,Broadcasting,Broadcasting +463865,Broadcasting,Broadcasting +463716,Broadcasting,Broadcasting +462120,Broadcasting,Broadcasting +462119,Broadcasting,Broadcasting +460874,Broadcasting,Broadcasting +460447,Broadcasting,Broadcasting +446899,Broadcasting,Broadcasting +440608,Broadcasting,Broadcasting +436740,Broadcasting,Broadcasting +436739,Broadcasting,Broadcasting +385185,Telecommunications,Telecommunications +385182,Telecommunications,Telecommunications +173369,Telecommunications,Telecommunications +165291,Telecommunications,Telecommunications +165290,Telecommunications,Telecommunications +165289,Telecommunications,Telecommunications +165286,Telecommunications,Telecommunications +370392,Telecommunications,Telecommunications +370389,Telecommunications,Telecommunications +311082,Telecommunications,Telecommunications +311081,Telecommunications,Telecommunications +311075,Telecommunications,Telecommunications +244575,Telecommunications,Telecommunications +244574,Telecommunications,Telecommunications +244572,Telecommunications,Telecommunications +244571,Telecommunications,Telecommunications +244570,Telecommunications,Telecommunications +243990,Telecommunications,Telecommunications +230449,Telecommunications,Telecommunications +460447,Telecommunications,Telecommunications +446899,Telecommunications,Telecommunications +436740,Telecommunications,Telecommunications +436739,Telecommunications,Telecommunications +430316,Telecommunications,Telecommunications +430315,Telecommunications,Telecommunications +430314,Telecommunications,Telecommunications +420330,Telecommunications,Telecommunications +420284,Telecommunications,Telecommunications +420282,Telecommunications,Telecommunications +404114,Telecommunications,Telecommunications +401014,Telecommunications,Telecommunications +400753,Telecommunications,Telecommunications +398607,Telecommunications,Telecommunications +223432,Aboriginal Affairs,Aboriginal Affairs +215513,Aboriginal Affairs,Aboriginal Affairs +168873,Aboriginal Affairs,Aboriginal Affairs +168871,Aboriginal Affairs,Aboriginal Affairs +168867,Aboriginal Affairs,Aboriginal Affairs +168865,Aboriginal Affairs,Aboriginal Affairs +168861,Aboriginal Affairs,Aboriginal Affairs +168857,Aboriginal Affairs,Aboriginal Affairs +400166,Aboriginal Affairs,Aboriginal Affairs +400164,Aboriginal Affairs,Aboriginal Affairs +400161,Aboriginal Affairs,Aboriginal Affairs +400159,Aboriginal Affairs,Aboriginal Affairs +375527,Aboriginal Affairs,Aboriginal Affairs +375526,Aboriginal Affairs,Aboriginal Affairs +375524,Aboriginal Affairs,Aboriginal Affairs +330176,Aboriginal Affairs,Aboriginal Affairs +330173,Aboriginal Affairs,Aboriginal Affairs +330172,Aboriginal Affairs,Aboriginal Affairs +330169,Aboriginal Affairs,Aboriginal Affairs +324952,Aboriginal Affairs,Aboriginal Affairs +324950,Aboriginal Affairs,Aboriginal Affairs +324948,Aboriginal Affairs,Aboriginal Affairs +165311,Telecommunications,Telecommunications +363902,Telecommunications,Telecommunications +360323,Telecommunications,Telecommunications +344845,Telecommunications,Telecommunications +344844,Telecommunications,Telecommunications +344843,Telecommunications,Telecommunications +194925,Aboriginal Affairs,Aboriginal Affairs +168569,Aboriginal Affairs,Aboriginal Affairs +245471,Aboriginal Affairs,Aboriginal Affairs +185425,Telecommunications,Telecommunications +370155,Science and Technology,Science and Technology +370154,Science and Technology,Science and Technology +167651,Science and Technology,Science and Technology +197389,Science and Technology,Science and Technology +197388,Science and Technology,Science and Technology +197387,Science and Technology,Science and Technology +187964,Science and Technology,Science and Technology +185552,Science and Technology,Science and Technology +170704,Science and Technology,Science and Technology +325222,Science and Technology,Science and Technology +325221,Science and Technology,Science and Technology +325220,Science and Technology,Science and Technology +325218,Science and Technology,Science and Technology +325216,Science and Technology,Science and Technology +309495,Science and Technology,Science and Technology +283129,Science and Technology,Science and Technology +213468,Science and Technology,Science and Technology +213467,Science and Technology,Science and Technology +210009,Science and Technology,Science and Technology +210008,Science and Technology,Science and Technology +202427,Science and Technology,Science and Technology +197391,Science and Technology,Science and Technology +406143,Science and Technology,Science and Technology +406142,Science and Technology,Science and Technology +406141,Science and Technology,Science and Technology +406139,Science and Technology,Science and Technology +406138,Science and Technology,Science and Technology +406137,Science and Technology,Science and Technology +370159,Science and Technology,Science and Technology +370158,Science and Technology,Science and Technology +370157,Science and Technology,Science and Technology +259418,Aboriginal Affairs,Aboriginal Affairs +259416,Aboriginal Affairs,Aboriginal Affairs +223419,Aboriginal Affairs,Aboriginal Affairs +259424,Aboriginal Affairs,Aboriginal Affairs +169025,Aboriginal Affairs,Aboriginal Affairs +169024,Aboriginal Affairs,Aboriginal Affairs +170326,Aboriginal Affairs,Aboriginal Affairs +170325,Aboriginal Affairs,Aboriginal Affairs +170324,Aboriginal Affairs,Aboriginal Affairs +169029,Aboriginal Affairs,Aboriginal Affairs +169028,Aboriginal Affairs,Aboriginal Affairs +189849,Aboriginal Affairs,Aboriginal Affairs +189848,Aboriginal Affairs,Aboriginal Affairs +169107,Aboriginal Affairs,Aboriginal Affairs +169106,Aboriginal Affairs,Aboriginal Affairs +169105,Aboriginal Affairs,Aboriginal Affairs +189847,Aboriginal Affairs,Aboriginal Affairs +189846,Aboriginal Affairs,Aboriginal Affairs +189845,Aboriginal Affairs,Aboriginal Affairs +189844,Aboriginal Affairs,Aboriginal Affairs +181388,Aboriginal Affairs,Aboriginal Affairs +181387,Aboriginal Affairs,Aboriginal Affairs +181386,Aboriginal Affairs,Aboriginal Affairs +181385,Aboriginal Affairs,Aboriginal Affairs +176227,Aboriginal Affairs,Aboriginal Affairs +176226,Aboriginal Affairs,Aboriginal Affairs +176225,Aboriginal Affairs,Aboriginal Affairs +176224,Aboriginal Affairs,Aboriginal Affairs +173429,Aboriginal Affairs,Aboriginal Affairs +173427,Aboriginal Affairs,Aboriginal Affairs +169162,Aboriginal Affairs,Aboriginal Affairs +169161,Aboriginal Affairs,Aboriginal Affairs +169160,Aboriginal Affairs,Aboriginal Affairs +169159,Aboriginal Affairs,Aboriginal Affairs +169158,Aboriginal Affairs,Aboriginal Affairs +169157,Aboriginal Affairs,Aboriginal Affairs +169156,Aboriginal Affairs,Aboriginal Affairs +169154,Aboriginal Affairs,Aboriginal Affairs +169153,Aboriginal Affairs,Aboriginal Affairs +169152,Aboriginal Affairs,Aboriginal Affairs +169151,Aboriginal Affairs,Aboriginal Affairs +169112,Aboriginal Affairs,Aboriginal Affairs +169111,Aboriginal Affairs,Aboriginal Affairs +169110,Aboriginal Affairs,Aboriginal Affairs +169109,Aboriginal Affairs,Aboriginal Affairs +169108,Aboriginal Affairs,Aboriginal Affairs +230031,Aboriginal Affairs,Aboriginal Affairs +230029,Aboriginal Affairs,Aboriginal Affairs +226147,Aboriginal Affairs,Aboriginal Affairs +212292,Aboriginal Affairs,Aboriginal Affairs +212291,Aboriginal Affairs,Aboriginal Affairs +212289,Aboriginal Affairs,Aboriginal Affairs +212288,Aboriginal Affairs,Aboriginal Affairs +212286,Aboriginal Affairs,Aboriginal Affairs +212285,Aboriginal Affairs,Aboriginal Affairs +212284,Aboriginal Affairs,Aboriginal Affairs +212282,Aboriginal Affairs,Aboriginal Affairs +207753,Aboriginal Affairs,Aboriginal Affairs +207751,Aboriginal Affairs,Aboriginal Affairs +207750,Aboriginal Affairs,Aboriginal Affairs +207749,Aboriginal Affairs,Aboriginal Affairs +207748,Aboriginal Affairs,Aboriginal Affairs +207747,Aboriginal Affairs,Aboriginal Affairs +200682,Aboriginal Affairs,Aboriginal Affairs +200681,Aboriginal Affairs,Aboriginal Affairs +200680,Aboriginal Affairs,Aboriginal Affairs +200679,Aboriginal Affairs,Aboriginal Affairs +200678,Aboriginal Affairs,Aboriginal Affairs +200676,Aboriginal Affairs,Aboriginal Affairs +200667,Aboriginal Affairs,Aboriginal Affairs +189852,Aboriginal Affairs,Aboriginal Affairs +189851,Aboriginal Affairs,Aboriginal Affairs +456365,Telecommunications,Telecommunications +448378,Telecommunications,Telecommunications +171564,Telecommunications,Telecommunications +166948,Telecommunications,Telecommunications +288849,Telecommunications,Telecommunications +243909,Telecommunications,Telecommunications +200677,Telecommunications,Telecommunications +200675,Telecommunications,Telecommunications +200674,Telecommunications,Telecommunications +200673,Telecommunications,Telecommunications +195068,Telecommunications,Telecommunications +180492,Telecommunications,Telecommunications +175127,Telecommunications,Telecommunications +175126,Telecommunications,Telecommunications +175125,Telecommunications,Telecommunications +175124,Telecommunications,Telecommunications +175123,Telecommunications,Telecommunications +175122,Telecommunications,Telecommunications +175121,Telecommunications,Telecommunications +175120,Telecommunications,Telecommunications +175119,Telecommunications,Telecommunications +175118,Telecommunications,Telecommunications +175117,Telecommunications,Telecommunications +175047,Telecommunications,Telecommunications +427116,Telecommunications,Telecommunications +427114,Telecommunications,Telecommunications +427112,Telecommunications,Telecommunications +426991,Telecommunications,Telecommunications +425756,Telecommunications,Telecommunications +419425,Telecommunications,Telecommunications +419063,Telecommunications,Telecommunications +414343,Telecommunications,Telecommunications +414342,Telecommunications,Telecommunications +411186,Telecommunications,Telecommunications +406056,Telecommunications,Telecommunications +403422,Telecommunications,Telecommunications +401171,Telecommunications,Telecommunications +397749,Telecommunications,Telecommunications +394787,Telecommunications,Telecommunications +394783,Telecommunications,Telecommunications +394782,Telecommunications,Telecommunications +378266,Telecommunications,Telecommunications +373054,Telecommunications,Telecommunications +544542,Telecommunications,Telecommunications +544541,Telecommunications,Telecommunications +542179,Telecommunications,Telecommunications +538708,Telecommunications,Telecommunications +538707,Telecommunications,Telecommunications +538705,Telecommunications,Telecommunications +494349,Telecommunications,Telecommunications +491576,Telecommunications,Telecommunications +491561,Telecommunications,Telecommunications +491556,Telecommunications,Telecommunications +491484,Telecommunications,Telecommunications +491477,Telecommunications,Telecommunications +486641,Telecommunications,Telecommunications +480434,Telecommunications,Telecommunications +468862,Arts and Culture,Arts and Culture +465783,Arts and Culture,Arts and Culture +188519,Arts and Culture,Arts and Culture +188518,Arts and Culture,Arts and Culture +188517,Arts and Culture,Arts and Culture +167555,Arts and Culture,Arts and Culture +167548,Arts and Culture,Arts and Culture +167544,Arts and Culture,Arts and Culture +375611,Arts and Culture,Arts and Culture +375610,Arts and Culture,Arts and Culture +372019,Arts and Culture,Arts and Culture +351239,Arts and Culture,Arts and Culture +351235,Arts and Culture,Arts and Culture +319055,Arts and Culture,Arts and Culture +319035,Arts and Culture,Arts and Culture +319033,Arts and Culture,Arts and Culture +310013,Arts and Culture,Arts and Culture +310012,Arts and Culture,Arts and Culture +310011,Arts and Culture,Arts and Culture +250760,Arts and Culture,Arts and Culture +250756,Arts and Culture,Arts and Culture +245448,Arts and Culture,Arts and Culture +245443,Arts and Culture,Arts and Culture +245436,Arts and Culture,Arts and Culture +245427,Arts and Culture,Arts and Culture +245425,Arts and Culture,Arts and Culture +245423,Arts and Culture,Arts and Culture +237072,Arts and Culture,Arts and Culture +222127,Arts and Culture,Arts and Culture +222108,Arts and Culture,Arts and Culture +222107,Arts and Culture,Arts and Culture +207198,Arts and Culture,Arts and Culture +201238,Arts and Culture,Arts and Culture +201237,Arts and Culture,Arts and Culture +201236,Arts and Culture,Arts and Culture +201235,Arts and Culture,Arts and Culture +201234,Arts and Culture,Arts and Culture +451212,Arts and Culture,Arts and Culture +445078,Arts and Culture,Arts and Culture +444626,Arts and Culture,Arts and Culture +444623,Arts and Culture,Arts and Culture +444611,Arts and Culture,Arts and Culture +441605,Arts and Culture,Arts and Culture +441604,Arts and Culture,Arts and Culture +441602,Arts and Culture,Arts and Culture +441601,Arts and Culture,Arts and Culture +441599,Arts and Culture,Arts and Culture +441159,Arts and Culture,Arts and Culture +436982,Arts and Culture,Arts and Culture +434324,Arts and Culture,Arts and Culture +429229,Arts and Culture,Arts and Culture +426744,Arts and Culture,Arts and Culture +426737,Arts and Culture,Arts and Culture +419818,Arts and Culture,Arts and Culture +409785,Arts and Culture,Arts and Culture +409775,Arts and Culture,Arts and Culture +409763,Arts and Culture,Arts and Culture +406527,Arts and Culture,Arts and Culture +404956,Arts and Culture,Arts and Culture +397697,Arts and Culture,Arts and Culture +385358,Arts and Culture,Arts and Culture +385352,Arts and Culture,Arts and Culture +385349,Arts and Culture,Arts and Culture +385345,Arts and Culture,Arts and Culture +385339,Arts and Culture,Arts and Culture +385336,Arts and Culture,Arts and Culture +385333,Arts and Culture,Arts and Culture +385332,Arts and Culture,Arts and Culture +385329,Arts and Culture,Arts and Culture +382228,Arts and Culture,Arts and Culture +382226,Arts and Culture,Arts and Culture +375613,Arts and Culture,Arts and Culture +375612,Arts and Culture,Arts and Culture +543266,Arts and Culture,Arts and Culture +540789,Arts and Culture,Arts and Culture +533130,Arts and Culture,Arts and Culture +530692,Arts and Culture,Arts and Culture +530690,Arts and Culture,Arts and Culture +527483,Arts and Culture,Arts and Culture +527482,Arts and Culture,Arts and Culture +518812,Arts and Culture,Arts and Culture +515136,Arts and Culture,Arts and Culture +506611,Arts and Culture,Arts and Culture +506610,Arts and Culture,Arts and Culture +500978,Arts and Culture,Arts and Culture +497054,Arts and Culture,Arts and Culture +497053,Arts and Culture,Arts and Culture +497047,Arts and Culture,Arts and Culture +494240,Arts and Culture,Arts and Culture +485766,Arts and Culture,Arts and Culture +483760,Arts and Culture,Arts and Culture +468871,Arts and Culture,Arts and Culture +468869,Arts and Culture,Arts and Culture +468868,Arts and Culture,Arts and Culture +468867,Arts and Culture,Arts and Culture +468866,Arts and Culture,Arts and Culture +468865,Arts and Culture,Arts and Culture +468864,Arts and Culture,Arts and Culture +167555,Broadcasting,Broadcasting +167548,Broadcasting,Broadcasting +167544,Broadcasting,Broadcasting +201238,Broadcasting,Broadcasting +201237,Broadcasting,Broadcasting +201236,Broadcasting,Broadcasting +201235,Broadcasting,Broadcasting +201234,Broadcasting,Broadcasting +188519,Broadcasting,Broadcasting +188518,Broadcasting,Broadcasting +201237,Telecommunications,Telecommunications +201236,Telecommunications,Telecommunications +201235,Telecommunications,Telecommunications +201234,Telecommunications,Telecommunications +169329,Aboriginal Affairs,Aboriginal Affairs +169328,Aboriginal Affairs,Aboriginal Affairs +169329,Arts and Culture,Arts and Culture +169328,Arts and Culture,Arts and Culture +303013,Aboriginal Affairs,Aboriginal Affairs +276120,Aboriginal Affairs,Aboriginal Affairs +433971,Telecommunications,Telecommunications +182264,Telecommunications,Telecommunications +169872,Telecommunications,Telecommunications +169665,Telecommunications,Telecommunications +494733,Telecommunications,Telecommunications +492657,Telecommunications,Telecommunications +489878,Telecommunications,Telecommunications +489874,Telecommunications,Telecommunications +474657,Telecommunications,Telecommunications +474655,Telecommunications,Telecommunications +469865,Telecommunications,Telecommunications +469863,Telecommunications,Telecommunications +469847,Telecommunications,Telecommunications +466079,Telecommunications,Telecommunications +460582,Telecommunications,Telecommunications +456828,Telecommunications,Telecommunications +434725,Telecommunications,Telecommunications +434724,Telecommunications,Telecommunications +434722,Telecommunications,Telecommunications +434720,Telecommunications,Telecommunications +434719,Telecommunications,Telecommunications +434714,Telecommunications,Telecommunications +485866,Telecommunications,Telecommunications +483146,Telecommunications,Telecommunications +170817,Telecommunications,Telecommunications +170815,Telecommunications,Telecommunications +170809,Telecommunications,Telecommunications +170819,Telecommunications,Telecommunications +388914,Telecommunications,Telecommunications +376134,Telecommunications,Telecommunications +376133,Telecommunications,Telecommunications +374174,Telecommunications,Telecommunications +374173,Telecommunications,Telecommunications +344801,Telecommunications,Telecommunications +344800,Telecommunications,Telecommunications +344798,Telecommunications,Telecommunications +344797,Telecommunications,Telecommunications +342981,Telecommunications,Telecommunications +342980,Telecommunications,Telecommunications +342979,Telecommunications,Telecommunications +342978,Telecommunications,Telecommunications +342977,Telecommunications,Telecommunications +480463,Telecommunications,Telecommunications +480042,Telecommunications,Telecommunications +478409,Telecommunications,Telecommunications +475164,Telecommunications,Telecommunications +475163,Telecommunications,Telecommunications +472581,Telecommunications,Telecommunications +472397,Telecommunications,Telecommunications +472392,Telecommunications,Telecommunications +472390,Telecommunications,Telecommunications +470721,Telecommunications,Telecommunications +468846,Telecommunications,Telecommunications +468844,Telecommunications,Telecommunications +467870,Telecommunications,Telecommunications +467868,Telecommunications,Telecommunications +467858,Telecommunications,Telecommunications +463978,Telecommunications,Telecommunications +462015,Telecommunications,Telecommunications +457425,Telecommunications,Telecommunications +457424,Telecommunications,Telecommunications +457422,Telecommunications,Telecommunications +457420,Telecommunications,Telecommunications +457419,Telecommunications,Telecommunications +457417,Telecommunications,Telecommunications +457414,Telecommunications,Telecommunications +456197,Telecommunications,Telecommunications +456196,Telecommunications,Telecommunications +456195,Telecommunications,Telecommunications +456194,Telecommunications,Telecommunications +456193,Telecommunications,Telecommunications +456192,Telecommunications,Telecommunications +456191,Telecommunications,Telecommunications +456190,Telecommunications,Telecommunications +456189,Telecommunications,Telecommunications +456188,Telecommunications,Telecommunications +456187,Telecommunications,Telecommunications +456186,Telecommunications,Telecommunications +456185,Telecommunications,Telecommunications +456184,Telecommunications,Telecommunications +456183,Telecommunications,Telecommunications +456182,Telecommunications,Telecommunications +456181,Telecommunications,Telecommunications +456180,Telecommunications,Telecommunications +456179,Telecommunications,Telecommunications +456178,Telecommunications,Telecommunications +456177,Telecommunications,Telecommunications +452541,Telecommunications,Telecommunications +452539,Telecommunications,Telecommunications +452538,Telecommunications,Telecommunications +452536,Telecommunications,Telecommunications +450102,Telecommunications,Telecommunications +447667,Telecommunications,Telecommunications +407116,Telecommunications,Telecommunications +404392,Telecommunications,Telecommunications +401316,Telecommunications,Telecommunications +401315,Telecommunications,Telecommunications +401314,Telecommunications,Telecommunications +397420,Telecommunications,Telecommunications +537066,Telecommunications,Telecommunications +534726,Telecommunications,Telecommunications +530324,Telecommunications,Telecommunications +530323,Telecommunications,Telecommunications +530269,Telecommunications,Telecommunications +530268,Telecommunications,Telecommunications +530267,Telecommunications,Telecommunications +530266,Telecommunications,Telecommunications +530265,Telecommunications,Telecommunications +528319,Telecommunications,Telecommunications +528318,Telecommunications,Telecommunications +528317,Telecommunications,Telecommunications +528316,Telecommunications,Telecommunications +528315,Telecommunications,Telecommunications +528314,Telecommunications,Telecommunications +524859,Telecommunications,Telecommunications +524858,Telecommunications,Telecommunications +524856,Telecommunications,Telecommunications +524855,Telecommunications,Telecommunications +524850,Telecommunications,Telecommunications +524849,Telecommunications,Telecommunications +524846,Telecommunications,Telecommunications +520956,Telecommunications,Telecommunications +520937,Telecommunications,Telecommunications +520914,Telecommunications,Telecommunications +520794,Telecommunications,Telecommunications +520609,Telecommunications,Telecommunications +520392,Telecommunications,Telecommunications +518042,Telecommunications,Telecommunications +518041,Telecommunications,Telecommunications +518038,Telecommunications,Telecommunications +516901,Telecommunications,Telecommunications +516064,Telecommunications,Telecommunications +514578,Telecommunications,Telecommunications +514377,Telecommunications,Telecommunications +513956,Telecommunications,Telecommunications +512492,Telecommunications,Telecommunications +510842,Telecommunications,Telecommunications +510841,Telecommunications,Telecommunications +510115,Telecommunications,Telecommunications +510114,Telecommunications,Telecommunications +510111,Telecommunications,Telecommunications +507914,Telecommunications,Telecommunications +507873,Telecommunications,Telecommunications +505165,Telecommunications,Telecommunications +505148,Telecommunications,Telecommunications +505143,Telecommunications,Telecommunications +505140,Telecommunications,Telecommunications +505134,Telecommunications,Telecommunications +500757,Telecommunications,Telecommunications +500403,Telecommunications,Telecommunications +500243,Telecommunications,Telecommunications +500242,Telecommunications,Telecommunications +500187,Telecommunications,Telecommunications +496290,Telecommunications,Telecommunications +490892,Telecommunications,Telecommunications +490891,Telecommunications,Telecommunications +264081,Science and Technology,Science and Technology +259632,Science and Technology,Science and Technology +170510,Science and Technology,Science and Technology +311110,Science and Technology,Science and Technology +170973,Telecommunications,Telecommunications +224167,Telecommunications,Telecommunications +202874,Telecommunications,Telecommunications +202873,Telecommunications,Telecommunications +202871,Telecommunications,Telecommunications +170980,Telecommunications,Telecommunications +170978,Telecommunications,Telecommunications +395101,Science and Technology,Science and Technology +395098,Science and Technology,Science and Technology +389298,Broadcasting,Broadcasting +389297,Broadcasting,Broadcasting +193973,Broadcasting,Broadcasting +171328,Broadcasting,Broadcasting +171327,Broadcasting,Broadcasting +374296,Broadcasting,Broadcasting +374295,Broadcasting,Broadcasting +374294,Broadcasting,Broadcasting +374292,Broadcasting,Broadcasting +374290,Broadcasting,Broadcasting +374285,Broadcasting,Broadcasting +374282,Broadcasting,Broadcasting +374279,Broadcasting,Broadcasting +374278,Broadcasting,Broadcasting +374277,Broadcasting,Broadcasting +357149,Broadcasting,Broadcasting +357148,Broadcasting,Broadcasting +352534,Broadcasting,Broadcasting +349522,Broadcasting,Broadcasting +346947,Broadcasting,Broadcasting +342339,Broadcasting,Broadcasting +342338,Broadcasting,Broadcasting +342337,Broadcasting,Broadcasting +321556,Broadcasting,Broadcasting +315089,Broadcasting,Broadcasting +197009,Broadcasting,Broadcasting +197008,Broadcasting,Broadcasting +197007,Broadcasting,Broadcasting +197006,Broadcasting,Broadcasting +197005,Broadcasting,Broadcasting +197004,Broadcasting,Broadcasting +197003,Broadcasting,Broadcasting +197002,Broadcasting,Broadcasting +197001,Broadcasting,Broadcasting +197000,Broadcasting,Broadcasting +196999,Broadcasting,Broadcasting +196998,Broadcasting,Broadcasting +196997,Broadcasting,Broadcasting +196996,Broadcasting,Broadcasting +196995,Broadcasting,Broadcasting +196994,Broadcasting,Broadcasting +196993,Broadcasting,Broadcasting +196992,Broadcasting,Broadcasting +196991,Broadcasting,Broadcasting +196990,Broadcasting,Broadcasting +196989,Broadcasting,Broadcasting +196988,Broadcasting,Broadcasting +196987,Broadcasting,Broadcasting +193976,Broadcasting,Broadcasting +193975,Broadcasting,Broadcasting +435157,Broadcasting,Broadcasting +432125,Broadcasting,Broadcasting +425417,Broadcasting,Broadcasting +424861,Broadcasting,Broadcasting +424826,Broadcasting,Broadcasting +422851,Broadcasting,Broadcasting +422772,Broadcasting,Broadcasting +420788,Broadcasting,Broadcasting +420787,Broadcasting,Broadcasting +420786,Broadcasting,Broadcasting +420783,Broadcasting,Broadcasting +420781,Broadcasting,Broadcasting +414275,Broadcasting,Broadcasting +414273,Broadcasting,Broadcasting +414272,Broadcasting,Broadcasting +414271,Broadcasting,Broadcasting +411918,Broadcasting,Broadcasting +411900,Broadcasting,Broadcasting +411896,Broadcasting,Broadcasting +411892,Broadcasting,Broadcasting +411888,Broadcasting,Broadcasting +411887,Broadcasting,Broadcasting +411063,Broadcasting,Broadcasting +407331,Broadcasting,Broadcasting +402273,Broadcasting,Broadcasting +402272,Broadcasting,Broadcasting +402268,Broadcasting,Broadcasting +397952,Broadcasting,Broadcasting +397463,Broadcasting,Broadcasting +395556,Broadcasting,Broadcasting +393064,Broadcasting,Broadcasting +393063,Broadcasting,Broadcasting +390062,Broadcasting,Broadcasting +389300,Broadcasting,Broadcasting +441794,Telecommunications,Telecommunications +441793,Telecommunications,Telecommunications +380716,Telecommunications,Telecommunications +208267,Telecommunications,Telecommunications +185469,Telecommunications,Telecommunications +439111,Telecommunications,Telecommunications +439108,Telecommunications,Telecommunications +439102,Telecommunications,Telecommunications +439099,Telecommunications,Telecommunications +439094,Telecommunications,Telecommunications +435520,Telecommunications,Telecommunications +431641,Telecommunications,Telecommunications +431640,Telecommunications,Telecommunications +426269,Telecommunications,Telecommunications +426267,Telecommunications,Telecommunications +426266,Telecommunications,Telecommunications +426265,Telecommunications,Telecommunications +426262,Telecommunications,Telecommunications +426261,Telecommunications,Telecommunications +426260,Telecommunications,Telecommunications +426259,Telecommunications,Telecommunications +426258,Telecommunications,Telecommunications +426256,Telecommunications,Telecommunications +426254,Telecommunications,Telecommunications +419451,Telecommunications,Telecommunications +419449,Telecommunications,Telecommunications +418148,Telecommunications,Telecommunications +418143,Telecommunications,Telecommunications +415976,Telecommunications,Telecommunications +415700,Telecommunications,Telecommunications +410458,Telecommunications,Telecommunications +406544,Telecommunications,Telecommunications +400830,Telecommunications,Telecommunications +398780,Telecommunications,Telecommunications +394190,Telecommunications,Telecommunications +392651,Telecommunications,Telecommunications +392365,Telecommunications,Telecommunications +392363,Telecommunications,Telecommunications +392361,Telecommunications,Telecommunications +392360,Telecommunications,Telecommunications +392359,Telecommunications,Telecommunications +392358,Telecommunications,Telecommunications +391489,Telecommunications,Telecommunications +385291,Telecommunications,Telecommunications +383459,Telecommunications,Telecommunications +383458,Telecommunications,Telecommunications +383227,Telecommunications,Telecommunications +381986,Telecommunications,Telecommunications +381982,Telecommunications,Telecommunications +381830,Telecommunications,Telecommunications +381829,Telecommunications,Telecommunications +381817,Telecommunications,Telecommunications +543914,Telecommunications,Telecommunications +543908,Telecommunications,Telecommunications +543899,Telecommunications,Telecommunications +538159,Telecommunications,Telecommunications +533189,Telecommunications,Telecommunications +533188,Telecommunications,Telecommunications +533187,Telecommunications,Telecommunications +533186,Telecommunications,Telecommunications +533185,Telecommunications,Telecommunications +533183,Telecommunications,Telecommunications +533182,Telecommunications,Telecommunications +533181,Telecommunications,Telecommunications +509388,Telecommunications,Telecommunications +504412,Telecommunications,Telecommunications +504411,Telecommunications,Telecommunications +504409,Telecommunications,Telecommunications +499830,Telecommunications,Telecommunications +471311,Telecommunications,Telecommunications +471274,Telecommunications,Telecommunications +471273,Telecommunications,Telecommunications +470580,Telecommunications,Telecommunications +469601,Telecommunications,Telecommunications +467273,Telecommunications,Telecommunications +466897,Telecommunications,Telecommunications +466704,Telecommunications,Telecommunications +465699,Telecommunications,Telecommunications +465239,Telecommunications,Telecommunications +464294,Telecommunications,Telecommunications +464170,Telecommunications,Telecommunications +462078,Telecommunications,Telecommunications +460161,Telecommunications,Telecommunications +457637,Telecommunications,Telecommunications +448199,Telecommunications,Telecommunications +445567,Telecommunications,Telecommunications +443973,Telecommunications,Telecommunications +441802,Telecommunications,Telecommunications +441801,Telecommunications,Telecommunications +441800,Telecommunications,Telecommunications +441799,Telecommunications,Telecommunications +441798,Telecommunications,Telecommunications +249726,Science and Technology,Science and Technology +185473,Telecommunications,Telecommunications +175793,Aboriginal Affairs,Aboriginal Affairs +175791,Aboriginal Affairs,Aboriginal Affairs +235949,Aboriginal Affairs,Aboriginal Affairs +270692,Science and Technology,Science and Technology +270691,Science and Technology,Science and Technology +171862,Science and Technology,Science and Technology +270697,Science and Technology,Science and Technology +270696,Science and Technology,Science and Technology +270695,Science and Technology,Science and Technology +270694,Science and Technology,Science and Technology +316469,Aboriginal Affairs,Aboriginal Affairs +303930,Aboriginal Affairs,Aboriginal Affairs +185288,Aboriginal Affairs,Aboriginal Affairs +175313,Aboriginal Affairs,Aboriginal Affairs +276016,Aboriginal Affairs,Aboriginal Affairs +272529,Aboriginal Affairs,Aboriginal Affairs +233449,Aboriginal Affairs,Aboriginal Affairs +225387,Aboriginal Affairs,Aboriginal Affairs +214727,Aboriginal Affairs,Aboriginal Affairs +214087,Aboriginal Affairs,Aboriginal Affairs +276880,Aboriginal Affairs,Aboriginal Affairs +276879,Aboriginal Affairs,Aboriginal Affairs +196948,Aboriginal Affairs,Aboriginal Affairs +196947,Aboriginal Affairs,Aboriginal Affairs +201570,Aboriginal Affairs,Aboriginal Affairs +201569,Aboriginal Affairs,Aboriginal Affairs +196950,Aboriginal Affairs,Aboriginal Affairs +174705,Aboriginal Affairs,Aboriginal Affairs +174704,Aboriginal Affairs,Aboriginal Affairs +191559,Aboriginal Affairs,Aboriginal Affairs +191557,Aboriginal Affairs,Aboriginal Affairs +188104,Aboriginal Affairs,Aboriginal Affairs +183176,Aboriginal Affairs,Aboriginal Affairs +183175,Aboriginal Affairs,Aboriginal Affairs +182967,Aboriginal Affairs,Aboriginal Affairs +182184,Aboriginal Affairs,Aboriginal Affairs +182124,Aboriginal Affairs,Aboriginal Affairs +181224,Aboriginal Affairs,Aboriginal Affairs +517569,Aboriginal Affairs,Aboriginal Affairs +517565,Aboriginal Affairs,Aboriginal Affairs +186324,Aboriginal Affairs,Aboriginal Affairs +173632,Aboriginal Affairs,Aboriginal Affairs +347222,Aboriginal Affairs,Aboriginal Affairs +347219,Aboriginal Affairs,Aboriginal Affairs +347217,Aboriginal Affairs,Aboriginal Affairs +343911,Aboriginal Affairs,Aboriginal Affairs +335709,Aboriginal Affairs,Aboriginal Affairs +335707,Aboriginal Affairs,Aboriginal Affairs +335700,Aboriginal Affairs,Aboriginal Affairs +333634,Aboriginal Affairs,Aboriginal Affairs +327491,Aboriginal Affairs,Aboriginal Affairs +325053,Aboriginal Affairs,Aboriginal Affairs +321906,Aboriginal Affairs,Aboriginal Affairs +321904,Aboriginal Affairs,Aboriginal Affairs +321902,Aboriginal Affairs,Aboriginal Affairs +321891,Aboriginal Affairs,Aboriginal Affairs +319150,Aboriginal Affairs,Aboriginal Affairs +312489,Aboriginal Affairs,Aboriginal Affairs +277780,Aboriginal Affairs,Aboriginal Affairs +273377,Aboriginal Affairs,Aboriginal Affairs +273375,Aboriginal Affairs,Aboriginal Affairs +269700,Aboriginal Affairs,Aboriginal Affairs +264560,Aboriginal Affairs,Aboriginal Affairs +264551,Aboriginal Affairs,Aboriginal Affairs +264541,Aboriginal Affairs,Aboriginal Affairs +254209,Aboriginal Affairs,Aboriginal Affairs +254188,Aboriginal Affairs,Aboriginal Affairs +249993,Aboriginal Affairs,Aboriginal Affairs +244450,Aboriginal Affairs,Aboriginal Affairs +227359,Aboriginal Affairs,Aboriginal Affairs +416467,Aboriginal Affairs,Aboriginal Affairs +416447,Aboriginal Affairs,Aboriginal Affairs +412952,Aboriginal Affairs,Aboriginal Affairs +412940,Aboriginal Affairs,Aboriginal Affairs +412831,Aboriginal Affairs,Aboriginal Affairs +412828,Aboriginal Affairs,Aboriginal Affairs +412820,Aboriginal Affairs,Aboriginal Affairs +412812,Aboriginal Affairs,Aboriginal Affairs +409012,Aboriginal Affairs,Aboriginal Affairs +407335,Aboriginal Affairs,Aboriginal Affairs +406236,Aboriginal Affairs,Aboriginal Affairs +403503,Aboriginal Affairs,Aboriginal Affairs +400705,Aboriginal Affairs,Aboriginal Affairs +399044,Aboriginal Affairs,Aboriginal Affairs +397144,Aboriginal Affairs,Aboriginal Affairs +397143,Aboriginal Affairs,Aboriginal Affairs +397141,Aboriginal Affairs,Aboriginal Affairs +397139,Aboriginal Affairs,Aboriginal Affairs +397137,Aboriginal Affairs,Aboriginal Affairs +394216,Aboriginal Affairs,Aboriginal Affairs +390827,Aboriginal Affairs,Aboriginal Affairs +390817,Aboriginal Affairs,Aboriginal Affairs +390803,Aboriginal Affairs,Aboriginal Affairs +390800,Aboriginal Affairs,Aboriginal Affairs +390793,Aboriginal Affairs,Aboriginal Affairs +390790,Aboriginal Affairs,Aboriginal Affairs +390783,Aboriginal Affairs,Aboriginal Affairs +390777,Aboriginal Affairs,Aboriginal Affairs +390762,Aboriginal Affairs,Aboriginal Affairs +390758,Aboriginal Affairs,Aboriginal Affairs +383831,Aboriginal Affairs,Aboriginal Affairs +383633,Aboriginal Affairs,Aboriginal Affairs +382519,Aboriginal Affairs,Aboriginal Affairs +381463,Aboriginal Affairs,Aboriginal Affairs +379287,Aboriginal Affairs,Aboriginal Affairs +376699,Aboriginal Affairs,Aboriginal Affairs +374968,Aboriginal Affairs,Aboriginal Affairs +372517,Aboriginal Affairs,Aboriginal Affairs +372507,Aboriginal Affairs,Aboriginal Affairs +372505,Aboriginal Affairs,Aboriginal Affairs +372503,Aboriginal Affairs,Aboriginal Affairs +369176,Aboriginal Affairs,Aboriginal Affairs +369009,Aboriginal Affairs,Aboriginal Affairs +366694,Aboriginal Affairs,Aboriginal Affairs +365230,Aboriginal Affairs,Aboriginal Affairs +365229,Aboriginal Affairs,Aboriginal Affairs +358112,Aboriginal Affairs,Aboriginal Affairs +358110,Aboriginal Affairs,Aboriginal Affairs +358107,Aboriginal Affairs,Aboriginal Affairs +358105,Aboriginal Affairs,Aboriginal Affairs +358103,Aboriginal Affairs,Aboriginal Affairs +351379,Aboriginal Affairs,Aboriginal Affairs +351377,Aboriginal Affairs,Aboriginal Affairs +351376,Aboriginal Affairs,Aboriginal Affairs +349014,Aboriginal Affairs,Aboriginal Affairs +349013,Aboriginal Affairs,Aboriginal Affairs +349012,Aboriginal Affairs,Aboriginal Affairs +349011,Aboriginal Affairs,Aboriginal Affairs +347227,Aboriginal Affairs,Aboriginal Affairs +517562,Aboriginal Affairs,Aboriginal Affairs +517553,Aboriginal Affairs,Aboriginal Affairs +515155,Aboriginal Affairs,Aboriginal Affairs +515154,Aboriginal Affairs,Aboriginal Affairs +515151,Aboriginal Affairs,Aboriginal Affairs +515150,Aboriginal Affairs,Aboriginal Affairs +515149,Aboriginal Affairs,Aboriginal Affairs +515147,Aboriginal Affairs,Aboriginal Affairs +514344,Aboriginal Affairs,Aboriginal Affairs +497886,Aboriginal Affairs,Aboriginal Affairs +491674,Aboriginal Affairs,Aboriginal Affairs +481534,Aboriginal Affairs,Aboriginal Affairs +457832,Aboriginal Affairs,Aboriginal Affairs +457830,Aboriginal Affairs,Aboriginal Affairs +457828,Aboriginal Affairs,Aboriginal Affairs +457827,Aboriginal Affairs,Aboriginal Affairs +457825,Aboriginal Affairs,Aboriginal Affairs +449775,Aboriginal Affairs,Aboriginal Affairs +449769,Aboriginal Affairs,Aboriginal Affairs +439166,Aboriginal Affairs,Aboriginal Affairs +439162,Aboriginal Affairs,Aboriginal Affairs +439134,Aboriginal Affairs,Aboriginal Affairs +439031,Aboriginal Affairs,Aboriginal Affairs +439024,Aboriginal Affairs,Aboriginal Affairs +432710,Aboriginal Affairs,Aboriginal Affairs +432709,Aboriginal Affairs,Aboriginal Affairs +430984,Aboriginal Affairs,Aboriginal Affairs +530962,Aboriginal Affairs,Aboriginal Affairs +530961,Aboriginal Affairs,Aboriginal Affairs +530958,Aboriginal Affairs,Aboriginal Affairs +530957,Aboriginal Affairs,Aboriginal Affairs +530955,Aboriginal Affairs,Aboriginal Affairs +530953,Aboriginal Affairs,Aboriginal Affairs +530950,Aboriginal Affairs,Aboriginal Affairs +530949,Aboriginal Affairs,Aboriginal Affairs +529004,Aboriginal Affairs,Aboriginal Affairs +529001,Aboriginal Affairs,Aboriginal Affairs +528998,Aboriginal Affairs,Aboriginal Affairs +528993,Aboriginal Affairs,Aboriginal Affairs +528991,Aboriginal Affairs,Aboriginal Affairs +528990,Aboriginal Affairs,Aboriginal Affairs +528987,Aboriginal Affairs,Aboriginal Affairs +528984,Aboriginal Affairs,Aboriginal Affairs +525698,Aboriginal Affairs,Aboriginal Affairs +525695,Aboriginal Affairs,Aboriginal Affairs +525687,Aboriginal Affairs,Aboriginal Affairs +525684,Aboriginal Affairs,Aboriginal Affairs +525682,Aboriginal Affairs,Aboriginal Affairs +525673,Aboriginal Affairs,Aboriginal Affairs +525659,Aboriginal Affairs,Aboriginal Affairs +525657,Aboriginal Affairs,Aboriginal Affairs +525651,Aboriginal Affairs,Aboriginal Affairs +525650,Aboriginal Affairs,Aboriginal Affairs +525645,Aboriginal Affairs,Aboriginal Affairs +525643,Aboriginal Affairs,Aboriginal Affairs +522487,Aboriginal Affairs,Aboriginal Affairs +522483,Aboriginal Affairs,Aboriginal Affairs +522478,Aboriginal Affairs,Aboriginal Affairs +522475,Aboriginal Affairs,Aboriginal Affairs +522474,Aboriginal Affairs,Aboriginal Affairs +522473,Aboriginal Affairs,Aboriginal Affairs +522470,Aboriginal Affairs,Aboriginal Affairs +522467,Aboriginal Affairs,Aboriginal Affairs +522464,Aboriginal Affairs,Aboriginal Affairs +519901,Aboriginal Affairs,Aboriginal Affairs +519900,Aboriginal Affairs,Aboriginal Affairs +519898,Aboriginal Affairs,Aboriginal Affairs +519896,Aboriginal Affairs,Aboriginal Affairs +519894,Aboriginal Affairs,Aboriginal Affairs +519890,Aboriginal Affairs,Aboriginal Affairs +519889,Aboriginal Affairs,Aboriginal Affairs +519886,Aboriginal Affairs,Aboriginal Affairs +517588,Aboriginal Affairs,Aboriginal Affairs +517585,Aboriginal Affairs,Aboriginal Affairs +408840,Arts and Culture,Arts and Culture +408839,Arts and Culture,Arts and Culture +192529,Arts and Culture,Arts and Culture +188565,Arts and Culture,Arts and Culture +185451,Arts and Culture,Arts and Culture +177164,Arts and Culture,Arts and Culture +400449,Arts and Culture,Arts and Culture +400447,Arts and Culture,Arts and Culture +389190,Arts and Culture,Arts and Culture +387002,Arts and Culture,Arts and Culture +386049,Arts and Culture,Arts and Culture +384750,Arts and Culture,Arts and Culture +382788,Arts and Culture,Arts and Culture +373135,Arts and Culture,Arts and Culture +372841,Arts and Culture,Arts and Culture +372839,Arts and Culture,Arts and Culture +367824,Arts and Culture,Arts and Culture +340091,Arts and Culture,Arts and Culture +340090,Arts and Culture,Arts and Culture +336649,Arts and Culture,Arts and Culture +336633,Arts and Culture,Arts and Culture +306669,Arts and Culture,Arts and Culture +301329,Arts and Culture,Arts and Culture +297529,Arts and Culture,Arts and Culture +288829,Arts and Culture,Arts and Culture +286883,Arts and Culture,Arts and Culture +277431,Arts and Culture,Arts and Culture +275463,Arts and Culture,Arts and Culture +275462,Arts and Culture,Arts and Culture +275461,Arts and Culture,Arts and Culture +275459,Arts and Culture,Arts and Culture +255050,Arts and Culture,Arts and Culture +254949,Arts and Culture,Arts and Culture +542332,Arts and Culture,Arts and Culture +542151,Arts and Culture,Arts and Culture +542150,Arts and Culture,Arts and Culture +542149,Arts and Culture,Arts and Culture +529993,Arts and Culture,Arts and Culture +518892,Arts and Culture,Arts and Culture +517080,Arts and Culture,Arts and Culture +492152,Arts and Culture,Arts and Culture +486324,Arts and Culture,Arts and Culture +485647,Arts and Culture,Arts and Culture +485420,Arts and Culture,Arts and Culture +471720,Arts and Culture,Arts and Culture +465523,Arts and Culture,Arts and Culture +465521,Arts and Culture,Arts and Culture +462989,Arts and Culture,Arts and Culture +461666,Arts and Culture,Arts and Culture +461661,Arts and Culture,Arts and Culture +461597,Arts and Culture,Arts and Culture +460412,Arts and Culture,Arts and Culture +460411,Arts and Culture,Arts and Culture +446434,Arts and Culture,Arts and Culture +444244,Arts and Culture,Arts and Culture +440261,Arts and Culture,Arts and Culture +436855,Arts and Culture,Arts and Culture +436852,Arts and Culture,Arts and Culture +424841,Arts and Culture,Arts and Culture +420839,Arts and Culture,Arts and Culture +420834,Arts and Culture,Arts and Culture +418746,Arts and Culture,Arts and Culture +417826,Arts and Culture,Arts and Culture +414469,Arts and Culture,Arts and Culture +414468,Arts and Culture,Arts and Culture +414467,Arts and Culture,Arts and Culture +414466,Arts and Culture,Arts and Culture +438288,Science and Technology,Science and Technology +434985,Science and Technology,Science and Technology +331347,Science and Technology,Science and Technology +324252,Science and Technology,Science and Technology +304311,Science and Technology,Science and Technology +289770,Science and Technology,Science and Technology +280969,Science and Technology,Science and Technology +233816,Science and Technology,Science and Technology +233814,Science and Technology,Science and Technology +223568,Science and Technology,Science and Technology +200063,Science and Technology,Science and Technology +200060,Science and Technology,Science and Technology +200040,Science and Technology,Science and Technology +188776,Science and Technology,Science and Technology +175111,Science and Technology,Science and Technology +421730,Science and Technology,Science and Technology +419428,Science and Technology,Science and Technology +419426,Science and Technology,Science and Technology +419412,Science and Technology,Science and Technology +415092,Science and Technology,Science and Technology +415086,Science and Technology,Science and Technology +415085,Science and Technology,Science and Technology +415084,Science and Technology,Science and Technology +415080,Science and Technology,Science and Technology +407577,Science and Technology,Science and Technology +392301,Science and Technology,Science and Technology +386674,Science and Technology,Science and Technology +386672,Science and Technology,Science and Technology +384706,Science and Technology,Science and Technology +381941,Science and Technology,Science and Technology +381940,Science and Technology,Science and Technology +381939,Science and Technology,Science and Technology +381938,Science and Technology,Science and Technology +381937,Science and Technology,Science and Technology +381936,Science and Technology,Science and Technology +381935,Science and Technology,Science and Technology +381934,Science and Technology,Science and Technology +378477,Science and Technology,Science and Technology +375992,Science and Technology,Science and Technology +373991,Science and Technology,Science and Technology +365948,Science and Technology,Science and Technology +361827,Science and Technology,Science and Technology +359202,Science and Technology,Science and Technology +357803,Science and Technology,Science and Technology +357801,Science and Technology,Science and Technology +357799,Science and Technology,Science and Technology +357797,Science and Technology,Science and Technology +351166,Science and Technology,Science and Technology +335174,Science and Technology,Science and Technology +181264,Aboriginal Affairs,Aboriginal Affairs +181305,Aboriginal Affairs,Aboriginal Affairs +181304,Aboriginal Affairs,Aboriginal Affairs +181267,Aboriginal Affairs,Aboriginal Affairs +181266,Aboriginal Affairs,Aboriginal Affairs +433971,Science and Technology,Science and Technology +395468,Science and Technology,Science and Technology +434725,Science and Technology,Science and Technology +434724,Science and Technology,Science and Technology +434722,Science and Technology,Science and Technology +434720,Science and Technology,Science and Technology +434719,Science and Technology,Science and Technology +353399,Science and Technology,Science and Technology +372533,Science and Technology,Science and Technology +358163,Science and Technology,Science and Technology +348896,Science and Technology,Science and Technology +348894,Science and Technology,Science and Technology +348892,Science and Technology,Science and Technology +348891,Science and Technology,Science and Technology +348888,Science and Technology,Science and Technology +316067,Science and Technology,Science and Technology +316060,Science and Technology,Science and Technology +409732,Science and Technology,Science and Technology +405811,Science and Technology,Science and Technology +405810,Science and Technology,Science and Technology +405809,Science and Technology,Science and Technology +405808,Science and Technology,Science and Technology +382415,Science and Technology,Science and Technology +380724,Science and Technology,Science and Technology +380723,Science and Technology,Science and Technology +380720,Science and Technology,Science and Technology +380718,Science and Technology,Science and Technology +372573,Science and Technology,Science and Technology +372572,Science and Technology,Science and Technology +372568,Science and Technology,Science and Technology +372565,Science and Technology,Science and Technology +372562,Science and Technology,Science and Technology +372546,Science and Technology,Science and Technology +211249,Aboriginal Affairs,Aboriginal Affairs +210967,Aboriginal Affairs,Aboriginal Affairs +240092,Aboriginal Affairs,Aboriginal Affairs +240089,Aboriginal Affairs,Aboriginal Affairs +240079,Aboriginal Affairs,Aboriginal Affairs +240078,Aboriginal Affairs,Aboriginal Affairs +211253,Aboriginal Affairs,Aboriginal Affairs +463184,Arts and Culture,Arts et culture +463174,Arts and Culture,Arts et culture +193328,Arts and Culture,Arts et culture +375457,Arts and Culture,Arts et culture +373189,Arts and Culture,Arts et culture +370418,Arts and Culture,Arts et culture +360371,Arts and Culture,Arts et culture +337055,Arts and Culture,Arts et culture +337054,Arts and Culture,Arts et culture +337053,Arts and Culture,Arts et culture +337051,Arts and Culture,Arts et culture +326793,Arts and Culture,Arts et culture +309260,Arts and Culture,Arts et culture +309258,Arts and Culture,Arts et culture +309256,Arts and Culture,Arts et culture +292689,Arts and Culture,Arts et culture +270671,Arts and Culture,Arts et culture +270670,Arts and Culture,Arts et culture +270669,Arts and Culture,Arts et culture +459811,Arts and Culture,Arts et culture +459810,Arts and Culture,Arts et culture +459809,Arts and Culture,Arts et culture +459045,Arts and Culture,Arts et culture +459043,Arts and Culture,Arts et culture +457450,Arts and Culture,Arts et culture +453068,Arts and Culture,Arts et culture +450762,Arts and Culture,Arts et culture +450760,Arts and Culture,Arts et culture +450759,Arts and Culture,Arts et culture +441128,Arts and Culture,Arts et culture +441093,Arts and Culture,Arts et culture +441090,Arts and Culture,Arts et culture +441088,Arts and Culture,Arts et culture +439853,Arts and Culture,Arts et culture +439852,Arts and Culture,Arts et culture +434884,Arts and Culture,Arts et culture +434423,Arts and Culture,Arts et culture +434422,Arts and Culture,Arts et culture +434183,Arts and Culture,Arts et culture +434173,Arts and Culture,Arts et culture +434172,Arts and Culture,Arts et culture +434171,Arts and Culture,Arts et culture +433604,Arts and Culture,Arts et culture +433598,Arts and Culture,Arts et culture +432719,Arts and Culture,Arts et culture +432717,Arts and Culture,Arts et culture +432716,Arts and Culture,Arts et culture +430048,Arts and Culture,Arts et culture +411379,Arts and Culture,Arts et culture +411361,Arts and Culture,Arts et culture +411360,Arts and Culture,Arts et culture +408654,Arts and Culture,Arts et culture +408651,Arts and Culture,Arts et culture +408650,Arts and Culture,Arts et culture +408649,Arts and Culture,Arts et culture +408648,Arts and Culture,Arts et culture +406321,Arts and Culture,Arts et culture +404914,Arts and Culture,Arts et culture +397449,Arts and Culture,Arts et culture +394746,Arts and Culture,Arts et culture +394745,Arts and Culture,Arts et culture +394744,Arts and Culture,Arts et culture +394743,Arts and Culture,Arts et culture +394742,Arts and Culture,Arts et culture +394741,Arts and Culture,Arts et culture +391793,Arts and Culture,Arts et culture +391792,Arts and Culture,Arts et culture +391786,Arts and Culture,Arts et culture +391785,Arts and Culture,Arts et culture +384083,Arts and Culture,Arts et culture +537132,Arts and Culture,Arts et culture +527484,Arts and Culture,Arts et culture +524329,Arts and Culture,Arts et culture +521645,Arts and Culture,Arts et culture +519381,Arts and Culture,Arts et culture +516758,Arts and Culture,Arts et culture +516757,Arts and Culture,Arts et culture +516756,Arts and Culture,Arts et culture +515389,Arts and Culture,Arts et culture +510022,Arts and Culture,Arts et culture +510021,Arts and Culture,Arts et culture +510019,Arts and Culture,Arts et culture +507858,Arts and Culture,Arts et culture +507838,Arts and Culture,Arts et culture +507765,Arts and Culture,Arts et culture +507761,Arts and Culture,Arts et culture +500803,Arts and Culture,Arts et culture +500802,Arts and Culture,Arts et culture +500801,Arts and Culture,Arts et culture +500800,Arts and Culture,Arts et culture +500686,Arts and Culture,Arts et culture +500683,Arts and Culture,Arts et culture +497133,Arts and Culture,Arts et culture +497078,Arts and Culture,Arts et culture +497077,Arts and Culture,Arts et culture +497076,Arts and Culture,Arts et culture +497074,Arts and Culture,Arts et culture +497072,Arts and Culture,Arts et culture +492004,Arts and Culture,Arts et culture +490278,Arts and Culture,Arts et culture +490273,Arts and Culture,Arts et culture +488629,Arts and Culture,Arts et culture +485470,Arts and Culture,Arts et culture +485454,Arts and Culture,Arts et culture +485452,Arts and Culture,Arts et culture +476408,Arts and Culture,Arts et culture +474537,Arts and Culture,Arts et culture +472241,Arts and Culture,Arts et culture +472035,Arts and Culture,Arts et culture +472034,Arts and Culture,Arts et culture +470329,Arts and Culture,Arts et culture +470328,Arts and Culture,Arts et culture +470327,Arts and Culture,Arts et culture +470325,Arts and Culture,Arts et culture +470323,Arts and Culture,Arts et culture +470321,Arts and Culture,Arts et culture +465536,Arts and Culture,Arts et culture +465535,Arts and Culture,Arts et culture +465534,Arts and Culture,Arts et culture +465533,Arts and Culture,Arts et culture +465532,Arts and Culture,Arts et culture +464568,Arts and Culture,Arts et culture +464432,Arts and Culture,Arts et culture +463186,Arts and Culture,Arts et culture +201328,Science and Technology,Science and Technology +215808,Telecommunications,Telecommunications +215807,Telecommunications,Telecommunications +198607,Telecommunications,Telecommunications +198587,Telecommunications,Telecommunications +189009,Telecommunications,Telecommunications +254157,Telecommunications,Telecommunications +244992,Telecommunications,Telecommunications +244987,Telecommunications,Telecommunications +229748,Telecommunications,Telecommunications +229746,Telecommunications,Telecommunications +229743,Telecommunications,Telecommunications +227148,Telecommunications,Telecommunications +221827,Telecommunications,Telecommunications +221808,Telecommunications,Telecommunications +221807,Telecommunications,Telecommunications +215810,Telecommunications,Telecommunications +422817,Arts and Culture,Arts and Culture +385777,Arts and Culture,Arts and Culture +327914,Arts and Culture,Arts and Culture +316135,Arts and Culture,Arts and Culture +313553,Arts and Culture,Arts and Culture +313549,Arts and Culture,Arts and Culture +245437,Arts and Culture,Arts and Culture +245431,Arts and Culture,Arts and Culture +207667,Arts and Culture,Arts and Culture +195205,Arts and Culture,Arts and Culture +195204,Arts and Culture,Arts and Culture +195184,Arts and Culture,Arts and Culture +195166,Arts and Culture,Arts and Culture +195165,Arts and Culture,Arts and Culture +195164,Arts and Culture,Arts and Culture +195144,Arts and Culture,Arts and Culture +374631,Arts and Culture,Arts and Culture +374628,Arts and Culture,Arts and Culture +374627,Arts and Culture,Arts and Culture +374619,Arts and Culture,Arts and Culture +422823,Arts and Culture,Arts and Culture +370270,Science and Technology,Science and Technology +191559,Science and Technology,Science and Technology +191557,Science and Technology,Science and Technology +188105,Science and Technology,Science and Technology +188104,Science and Technology,Science and Technology +182184,Science and Technology,Science and Technology +378586,Science and Technology,Science and Technology +377302,Science and Technology,Science and Technology +370721,Science and Technology,Science and Technology +370553,Science and Technology,Science and Technology +225567,Telecommunications,Telecommunications +224054,Telecommunications,Telecommunications +193179,Telecommunications,Telecommunications +188764,Telecommunications,Telecommunications +312812,Telecommunications,Telecommunications +295509,Telecommunications,Telecommunications +292871,Telecommunications,Telecommunications +283269,Telecommunications,Telecommunications +277596,Telecommunications,Telecommunications +277595,Telecommunications,Telecommunications +261249,Telecommunications,Telecommunications +258989,Telecommunications,Telecommunications +247271,Telecommunications,Telecommunications +235997,Telecommunications,Telecommunications +202491,Science and Technology,Science and Technology +380757,Science and Technology,Science and Technology +367702,Science and Technology,Science and Technology +362944,Science and Technology,Science and Technology +335561,Science and Technology,Science and Technology +330626,Science and Technology,Science and Technology +330625,Science and Technology,Science and Technology +325649,Science and Technology,Science and Technology +320210,Science and Technology,Science and Technology +315936,Science and Technology,Science and Technology +315925,Science and Technology,Science and Technology +308009,Science and Technology,Science and Technology +239647,Science and Technology,Science and Technology +232710,Science and Technology,Science and Technology +315793,Science and Technology,Science and Technology +294434,Science and Technology,Science and Technology +252589,Science and Technology,Science and Technology +250952,Science and Technology,Science and Technology +240070,Science and Technology,Science and Technology +232730,Science and Technology,Science and Technology +211387,Science and Technology,Science and Technology +206667,Science and Technology,Science and Technology +202592,Science and Technology,Science and Technology +188872,Science and Technology,Science and Technology +188783,Science and Technology,Science and Technology +184264,Science and Technology,Science and Technology +368159,Science and Technology,Science and Technology +363004,Science and Technology,Science and Technology +343848,Science and Technology,Science and Technology +343847,Science and Technology,Science and Technology +336251,Science and Technology,Science and Technology +336249,Science and Technology,Science and Technology +199623,Science and Technology,Science and Technology +327340,Science and Technology,Science and Technology +240071,Science and Technology,Science and Technology +202492,Science and Technology,Science and Technology +197507,Science and Technology,Science and Technology +257609,Science and Technology,Science and Technology +521488,Telecommunications,Telecommunications +497766,Telecommunications,Telecommunications +226228,Telecommunications,Telecommunications +224061,Telecommunications,Telecommunications +193733,Telecommunications,Telecommunications +386782,Telecommunications,Telecommunications +295512,Telecommunications,Telecommunications +295510,Telecommunications,Telecommunications +283270,Telecommunications,Telecommunications +277598,Telecommunications,Telecommunications +277597,Telecommunications,Telecommunications +261251,Telecommunications,Telecommunications +494261,Telecommunications,Telecommunications +485681,Telecommunications,Telecommunications +485680,Telecommunications,Telecommunications +480528,Telecommunications,Telecommunications +478516,Telecommunications,Telecommunications +531079,Telecommunications,Telecommunications +531071,Telecommunications,Telecommunications +531064,Telecommunications,Telecommunications +190447,Telecommunications,Télécommunications +196107,Science and Technology,Science and Technology +326331,Aboriginal Affairs,Aboriginal Affairs +326330,Aboriginal Affairs,Aboriginal Affairs +275418,Aboriginal Affairs,Aboriginal Affairs +275417,Aboriginal Affairs,Aboriginal Affairs +275416,Aboriginal Affairs,Aboriginal Affairs +275415,Aboriginal Affairs,Aboriginal Affairs +275414,Aboriginal Affairs,Aboriginal Affairs +356390,Arts and Culture,Arts et culture +128636,Arts and Culture,Arts and Culture +194804,Aboriginal Affairs,Aboriginal Affairs +141818,Aboriginal Affairs,Aboriginal Affairs +130278,Science and Technology,Science and Technology +144334,Science and Technology,Science and Technology +278013,Telecommunications,Telecommunications +131624,Science and Technology,Science and Technology +131624,Science and Technology,Science and Technology +132472,Science and Technology,Science and Technology +381520,Arts and Culture,Arts and Culture +192710,Broadcasting,Broadcasting +248069,Aboriginal Affairs,Aboriginal Affairs +138581,Aboriginal Affairs,Aboriginal Affairs +314750,Science and Technology,Science and Technology +134295,Science and Technology,Science and Technology +200468,Arts and Culture,Arts and Culture +445966,Broadcasting,Broadcasting +134314,Science and Technology,Science and Technology +403033,Science and Technology,Science and Technology +209609,Science and Technology,Science and Technology +161955,Aboriginal Affairs,Aboriginal Affairs +335304,Science and Technology,Science and Technology +146822,Aboriginal Affairs,Aboriginal Affairs +391558,Aboriginal Affairs,Aboriginal Affairs +229738,Science and Technology,Science and Technology +254291,Aboriginal Affairs,Aboriginal Affairs +288411,Telecommunications,Telecommunications +163539,Aboriginal Affairs,Aboriginal Affairs +157553,Science and Technology,Science and Technology +155307,Science and Technology,Science and Technology +148226,Arts and Culture,Arts et culture +499265,Science and Technology,Science and Technology +156287,Science and Technology,Science and Technology +504144,Aboriginal Affairs,Aboriginal Affairs +214907,Science and Technology,Science and Technology +303989,Arts and Culture,Arts et culture +381502,Arts and Culture,Arts et culture +264291,Arts and Culture,Arts et culture +451669,Telecommunications,Telecommunications +163559,Aboriginal Affairs,Aboriginal Affairs +163552,Aboriginal Affairs,Aboriginal Affairs +163578,Aboriginal Affairs,Aboriginal Affairs +163587,Aboriginal Affairs,Aboriginal Affairs +152034,Telecommunications,Télécommunications +190385,Science and Technology,Science and Technology +457902,Science and Technology,Science and Technology +433327,Aboriginal Affairs,Aboriginal Affairs +311990,Science and Technology,Science and Technology +144175,Aboriginal Affairs,Aboriginal Affairs +202217,Aboriginal Affairs,Aboriginal Affairs +307471,Science and Technology,Science and Technology +147399,Aboriginal Affairs,Aboriginal Affairs +146980,Science and Technology,Science and Technology +350563,Telecommunications,Telecommunications +197252,Science and Technology,Sciences et technologies +145137,Science and Technology,Science and Technology +149780,Aboriginal Affairs,Aboriginal Affairs +145757,Aboriginal Affairs,Aboriginal Affairs +149176,Arts and Culture,Arts and Culture +185848,Broadcasting,Broadcasting +189769,Science and Technology,Science and Technology +195064,Telecommunications,Telecommunications +404055,Aboriginal Affairs,Aboriginal Affairs +401566,Science and Technology,Science and Technology +441317,Aboriginal Affairs,Aboriginal Affairs +145769,Aboriginal Affairs,Aboriginal Affairs +451992,Science and Technology,Science and Technology +145899,Science and Technology,Science and Technology +328392,Arts and Culture,Arts and Culture +312050,Aboriginal Affairs,Aboriginal Affairs +151977,Aboriginal Affairs,Aboriginal Affairs +151280,Telecommunications,Telecommunications +188188,Science and Technology,Science and Technology +479054,Telecommunications,Telecommunications +442780,Telecommunications,Telecommunications +153280,Arts and Culture,Arts et culture +152020,Arts and Culture,Arts et culture +156907,Arts and Culture,Arts et culture +150219,Broadcasting,Broadcasting +156910,Arts and Culture,Arts et culture +191944,Aboriginal Affairs,Aboriginal Affairs +378657,Aboriginal Affairs,Aboriginal Affairs +164864,Aboriginal Affairs,Aboriginal Affairs +150516,Arts and Culture,Arts and Culture +150516,Broadcasting,Broadcasting +173806,Broadcasting,Broadcasting +149979,Science and Technology,Science and Technology +150241,Arts and Culture,Arts and Culture +150241,Broadcasting,Broadcasting +166764,Aboriginal Affairs,Aboriginal Affairs +271751,Aboriginal Affairs,Aboriginal Affairs +271750,Aboriginal Affairs,Aboriginal Affairs +167464,Arts and Culture,Arts and Culture +314769,Arts and Culture,Arts and Culture +192355,Science and Technology,Science and Technology +152108,Aboriginal Affairs,Aboriginal Affairs +388412,Aboriginal Affairs,Aboriginal Affairs +151460,Science and Technology,Science and Technology +151441,Science and Technology,Science and Technology +374707,Science and Technology,Science and Technology +505024,Aboriginal Affairs,Aboriginal Affairs +200888,Science and Technology,Science and Technology +325013,Aboriginal Affairs,Aboriginal Affairs +151890,Science and Technology,Science and Technology +192165,Science and Technology,Science and Technology +435829,Aboriginal Affairs,Aboriginal Affairs +513324,Broadcasting,Broadcasting +442357,Science and Technology,Science and Technology +442429,Aboriginal Affairs,Aboriginal Affairs +152878,Science and Technology,Science and Technology +239110,Broadcasting,Broadcasting +219167,Telecommunications,Telecommunications +152277,Aboriginal Affairs,Aboriginal Affairs +152315,Telecommunications,Telecommunications +175800,Science and Technology,Science and Technology +152717,Science and Technology,Science and Technology +152718,Science and Technology,Science and Technology +321383,Aboriginal Affairs,Aboriginal Affairs +173045,Arts and Culture,Arts and Culture +443594,Science and Technology,Science and Technology +154328,Telecommunications,Telecommunications +154329,Telecommunications,Telecommunications +250916,Broadcasting,Broadcasting +381515,Science and Technology,Science and Technology +153631,Aboriginal Affairs,Aboriginal Affairs +351193,Aboriginal Affairs,Aboriginal Affairs +420290,Aboriginal Affairs,Aboriginal Affairs +169854,Aboriginal Affairs,Aboriginal Affairs +161632,Arts and Culture,Arts and Culture +158476,Aboriginal Affairs,Aboriginal Affairs +155316,Science and Technology,Science and Technology +490914,Aboriginal Affairs,Aboriginal Affairs +185532,Science and Technology,Science and Technology +230911,Telecommunications,Telecommunications +155773,Telecommunications,Telecommunications +155775,Telecommunications,Telecommunications +156575,Broadcasting,Broadcasting +252688,Science and Technology,Science and Technology +233969,Science and Technology,Science and Technology +168424,Telecommunications,Telecommunications +308570,Arts and Culture,Arts and Culture +241179,Arts and Culture,Arts and Culture +208748,Telecommunications,Telecommunications +174544,Arts and Culture,Arts and Culture +158181,Arts and Culture,Arts and Culture +158837,Science and Technology,Science and Technology +161969,Arts and Culture,Arts and Culture +158128,Science and Technology,Science and Technology +418473,Arts and Culture,Arts and Culture +199878,Aboriginal Affairs,Aboriginal Affairs +160538,Arts and Culture,Arts and Culture +423115,Broadcasting,Broadcasting +160538,Telecommunications,Telecommunications +209227,Telecommunications,Telecommunications +273733,Science and Technology,Science and Technology +161652,Arts and Culture,Arts and Culture +165696,Arts and Culture,Arts and Culture +330510,Science and Technology,Science and Technology +226544,Broadcasting,Broadcasting +189765,Aboriginal Affairs,Aboriginal Affairs +167955,Arts and Culture,Arts and Culture +253750,Science and Technology,Science and Technology +164906,Arts and Culture,Arts and Culture +534595,Science and Technology,Science and Technology +401422,Broadcasting,Broadcasting +534491,Telecommunications,Telecommunications +225907,Broadcasting,Broadcasting +169145,Science and Technology,Science and Technology +220291,Aboriginal Affairs,Aboriginal Affairs +167086,Aboriginal Affairs,Aboriginal Affairs +167086,Arts and Culture,Arts and Culture +161052,Aboriginal Affairs,Aboriginal Affairs +161208,Science and Technology,Science and Technology +163966,Aboriginal Affairs,Aboriginal Affairs +227264,Science and Technology,Science and Technology +166444,Aboriginal Affairs,Aboriginal Affairs +368378,Broadcasting,Broadcasting +398380,Telecommunications,Telecommunications +427594,Science and Technology,Science and Technology +162066,Arts and Culture,Arts and Culture +162332,Telecommunications,Telecommunications +162340,Telecommunications,Telecommunications +162350,Telecommunications,Telecommunications +162400,Science and Technology,Science and Technology +175802,Arts and Culture,Arts and Culture +163027,Arts and Culture,Arts and Culture +165454,Broadcasting,Broadcasting +165454,Telecommunications,Telecommunications +194905,Aboriginal Affairs,Aboriginal Affairs +261969,Science and Technology,Science and Technology +430316,Broadcasting,Broadcasting +398606,Telecommunications,Telecommunications +169855,Science and Technology,Science and Technology +164393,Science and Technology,Science and Technology +324943,Aboriginal Affairs,Aboriginal Affairs +338951,Telecommunications,Telecommunications +194926,Aboriginal Affairs,Aboriginal Affairs +465008,Arts and Culture,Arts and Culture +185426,Telecommunications,Telecommunications +370156,Science and Technology,Science and Technology +259421,Aboriginal Affairs,Aboriginal Affairs +169026,Aboriginal Affairs,Aboriginal Affairs +383949,Aboriginal Affairs,Aboriginal Affairs +189850,Aboriginal Affairs,Aboriginal Affairs +462215,Telecommunications,Telecommunications +468863,Arts and Culture,Arts and Culture +188517,Broadcasting,Broadcasting +201238,Telecommunications,Telecommunications +169330,Aboriginal Affairs,Aboriginal Affairs +169330,Arts and Culture,Arts and Culture +303049,Aboriginal Affairs,Aboriginal Affairs +167566,Telecommunications,Telecommunications +433985,Telecommunications,Telecommunications +485983,Telecommunications,Telecommunications +269838,Science and Technology,Science and Technology +170129,Aboriginal Affairs,Aboriginal Affairs +170128,Aboriginal Affairs,Aboriginal Affairs +170975,Telecommunications,Telecommunications +395103,Science and Technology,Science and Technology +389299,Broadcasting,Broadcasting +441796,Telecommunications,Telecommunications +249728,Science and Technology,Science and Technology +210531,Telecommunications,Telecommunications +171746,Aboriginal Affairs,Aboriginal Affairs +175795,Aboriginal Affairs,Aboriginal Affairs +270693,Science and Technology,Science and Technology +175174,Aboriginal Affairs,Aboriginal Affairs +173245,Broadcasting,Radiodiffusion +276878,Aboriginal Affairs,Aboriginal Affairs +172365,Science and Technology,Science and Technology +172367,Science and Technology,Science and Technology +172364,Science and Technology,Science and Technology +172366,Science and Technology,Science and Technology +172368,Science and Technology,Science and Technology +196949,Aboriginal Affairs,Aboriginal Affairs +180666,Aboriginal Affairs,Aboriginal Affairs +517583,Aboriginal Affairs,Aboriginal Affairs +173705,Aboriginal Affairs,Aboriginal Affairs +245533,Aboriginal Affairs,Aboriginal Affairs +227333,Aboriginal Affairs,Aboriginal Affairs +235649,Broadcasting,Broadcasting +408841,Arts and Culture,Arts and Culture +442586,Science and Technology,Science and Technology +185427,Broadcasting,Broadcasting +181265,Aboriginal Affairs,Aboriginal Affairs +434714,Science and Technology,Science and Technology +362181,Science and Technology,Science and Technology +372543,Science and Technology,Science and Technology +180477,Aboriginal Affairs,Aboriginal Affairs +180478,Aboriginal Affairs,Aboriginal Affairs +180480,Aboriginal Affairs,Aboriginal Affairs +180485,Aboriginal Affairs,Aboriginal Affairs +180488,Aboriginal Affairs,Aboriginal Affairs +211250,Aboriginal Affairs,Aboriginal Affairs +463185,Arts and Culture,Arts et culture +225427,Science and Technology,Science and Technology +188108,Science and Technology,Science and Technology +215809,Telecommunications,Telecommunications +422820,Arts and Culture,Arts and Culture +187084,Aboriginal Affairs,Aboriginal Affairs +370486,Science and Technology,Science and Technology +182967,Science and Technology,Science and Technology +233053,Broadcasting,Broadcasting +230348,Aboriginal Affairs,Aboriginal Affairs +226231,Telecommunications,Telecommunications +183166,Telecommunications,Telecommunications +183175,Science and Technology,Science and Technology +183176,Science and Technology,Science and Technology +211354,Science and Technology,Science and Technology +321270,Science and Technology,Science and Technology +202609,Science and Technology,Science and Technology +232693,Science and Technology,Science and Technology +239111,Broadcasting,Broadcasting +239111,Telecommunications,Telecommunications +521491,Telecommunications,Telecommunications +190448,Telecommunications,Télécommunications +196124,Science and Technology,Science and Technology +187445,Aboriginal Affairs,Aboriginal Affairs +188109,Science and Technology,Science and Technology +326332,Aboriginal Affairs,Aboriginal Affairs +344130,Science and Technology,Science and Technology +223142,Science and Technology,Science and Technology +193388,Broadcasting,Broadcasting +200807,Broadcasting,Broadcasting +211008,Broadcasting,Broadcasting +350283,Arts and Culture,Arts and Culture +441988,Broadcasting,Broadcasting +417263,Telecommunications,Telecommunications +192644,Arts and Culture,Arts and Culture +192645,Arts and Culture,Arts and Culture +490317,Aboriginal Affairs,Aboriginal Affairs +227655,Aboriginal Affairs,Aboriginal Affairs +190119,Aboriginal Affairs,Aboriginal Affairs +214867,Arts and Culture,Arts et culture +261250,Telecommunications,Telecommunications +197208,Science and Technology,Science and Technology +492302,Telecommunications,Telecommunications +493636,Aboriginal Affairs,Aboriginal Affairs +206573,Aboriginal Affairs,Aboriginal Affairs +211711,Aboriginal Affairs,Aboriginal Affairs +333209,Science and Technology,Science and Technology +268489,Aboriginal Affairs,Aboriginal Affairs +340295,Aboriginal Affairs,Aboriginal Affairs +424014,Science and Technology,Science and Technology +251412,Science and Technology,Science and Technology +272490,Science and Technology,Science and Technology +272489,Arts and Culture,Arts and Culture +200498,Aboriginal Affairs,Aboriginal Affairs +337496,Broadcasting,Broadcasting +245678,Arts and Culture,Arts et culture +275413,Aboriginal Affairs,Aboriginal Affairs +197367,Aboriginal Affairs,Aboriginal Affairs +197363,Aboriginal Affairs,Aboriginal Affairs +191784,Aboriginal Affairs,Aboriginal Affairs +191764,Aboriginal Affairs,Aboriginal Affairs +355609,Aboriginal Affairs,Aboriginal Affairs +355608,Aboriginal Affairs,Aboriginal Affairs +355607,Aboriginal Affairs,Aboriginal Affairs +355606,Aboriginal Affairs,Aboriginal Affairs +355605,Aboriginal Affairs,Aboriginal Affairs +355603,Aboriginal Affairs,Aboriginal Affairs +343883,Science and Technology,Science and Technology +341763,Science and Technology,Science and Technology +196930,Science and Technology,Science and Technology +196929,Science and Technology,Science and Technology +192495,Science and Technology,Science and Technology +191109,Science and Technology,Science and Technology +308851,Science and Technology,Science and Technology +308850,Science and Technology,Science and Technology +284011,Science and Technology,Science and Technology +275051,Science and Technology,Science and Technology +271262,Science and Technology,Science and Technology +271261,Science and Technology,Science and Technology +271260,Science and Technology,Science and Technology +271259,Science and Technology,Science and Technology +215510,Science and Technology,Science and Technology +215508,Science and Technology,Science and Technology +215507,Science and Technology,Science and Technology +213507,Science and Technology,Science and Technology +358943,Science and Technology,Science and Technology +206350,Science and Technology,Science and Technology +192496,Science and Technology,Science and Technology +193387,Broadcasting,Broadcasting +207352,Broadcasting,Broadcasting +199936,Broadcasting,Broadcasting +192524,Broadcasting,Broadcasting +193390,Broadcasting,Broadcasting +193389,Broadcasting,Broadcasting +491680,Arts and Culture,Arts and Culture +476097,Arts and Culture,Arts and Culture +197033,Arts and Culture,Arts and Culture +245004,Arts and Culture,Arts and Culture +245003,Arts and Culture,Arts and Culture +205287,Arts and Culture,Arts and Culture +441988,Arts and Culture,Arts and Culture +439697,Arts and Culture,Arts and Culture +417263,Arts and Culture,Arts and Culture +401834,Arts and Culture,Arts and Culture +384833,Arts and Culture,Arts and Culture +384831,Arts and Culture,Arts and Culture +382288,Arts and Culture,Arts and Culture +372561,Arts and Culture,Arts and Culture +417263,Broadcasting,Broadcasting +401834,Broadcasting,Broadcasting +245004,Broadcasting,Broadcasting +245003,Broadcasting,Broadcasting +205287,Broadcasting,Broadcasting +197033,Broadcasting,Broadcasting +396108,Broadcasting,Broadcasting +396105,Broadcasting,Broadcasting +384833,Broadcasting,Broadcasting +384831,Broadcasting,Broadcasting +382288,Broadcasting,Broadcasting +376015,Broadcasting,Broadcasting +368585,Broadcasting,Broadcasting +368584,Broadcasting,Broadcasting +350283,Broadcasting,Broadcasting +310990,Broadcasting,Broadcasting +535202,Broadcasting,Broadcasting +527314,Broadcasting,Broadcasting +523159,Broadcasting,Broadcasting +520159,Broadcasting,Broadcasting +499090,Broadcasting,Broadcasting +499089,Broadcasting,Broadcasting +495981,Broadcasting,Broadcasting +491680,Broadcasting,Broadcasting +470499,Broadcasting,Broadcasting +470498,Broadcasting,Broadcasting +470497,Broadcasting,Broadcasting +470496,Broadcasting,Broadcasting +470494,Broadcasting,Broadcasting +470493,Broadcasting,Broadcasting +470491,Broadcasting,Broadcasting +470490,Broadcasting,Broadcasting +445776,Broadcasting,Broadcasting +384833,Telecommunications,Telecommunications +384831,Telecommunications,Telecommunications +310990,Telecommunications,Telecommunications +245004,Telecommunications,Telecommunications +245003,Telecommunications,Telecommunications +205287,Telecommunications,Telecommunications +197033,Telecommunications,Telecommunications +376015,Telecommunications,Telecommunications +368585,Telecommunications,Telecommunications +368584,Telecommunications,Telecommunications +491680,Telecommunications,Telecommunications +470499,Telecommunications,Telecommunications +470498,Telecommunications,Telecommunications +470497,Telecommunications,Telecommunications +470496,Telecommunications,Telecommunications +470494,Telecommunications,Telecommunications +470493,Telecommunications,Telecommunications +470491,Telecommunications,Telecommunications +470490,Telecommunications,Telecommunications +445776,Telecommunications,Telecommunications +486894,Aboriginal Affairs,Aboriginal Affairs +463989,Aboriginal Affairs,Aboriginal Affairs +297069,Aboriginal Affairs,Aboriginal Affairs +394482,Aboriginal Affairs,Aboriginal Affairs +376326,Aboriginal Affairs,Aboriginal Affairs +443628,Aboriginal Affairs,Aboriginal Affairs +442178,Aboriginal Affairs,Aboriginal Affairs +426088,Aboriginal Affairs,Aboriginal Affairs +426086,Aboriginal Affairs,Aboriginal Affairs +420120,Aboriginal Affairs,Aboriginal Affairs +420113,Aboriginal Affairs,Aboriginal Affairs +517328,Aboriginal Affairs,Aboriginal Affairs +193884,Aboriginal Affairs,Aboriginal Affairs +190112,Aboriginal Affairs,Aboriginal Affairs +258990,Telecommunications,Telecommunications +235998,Telecommunications,Telecommunications +226232,Telecommunications,Telecommunications +197148,Science and Technology,Science and Technology +197147,Science and Technology,Science and Technology +229196,Science and Technology,Science and Technology +215967,Science and Technology,Science and Technology +197247,Science and Technology,Science and Technology +197213,Science and Technology,Science and Technology +197212,Science and Technology,Science and Technology +197211,Science and Technology,Science and Technology +197209,Science and Technology,Science and Technology +518483,Telecommunications,Telecommunications +467645,Aboriginal Affairs,Aboriginal Affairs +467616,Aboriginal Affairs,Aboriginal Affairs +206229,Aboriginal Affairs,Aboriginal Affairs +206228,Aboriginal Affairs,Aboriginal Affairs +206227,Aboriginal Affairs,Aboriginal Affairs +240411,Aboriginal Affairs,Aboriginal Affairs +206234,Aboriginal Affairs,Aboriginal Affairs +206232,Aboriginal Affairs,Aboriginal Affairs +206230,Aboriginal Affairs,Aboriginal Affairs +211531,Aboriginal Affairs,Aboriginal Affairs +211507,Aboriginal Affairs,Aboriginal Affairs +321211,Aboriginal Affairs,Aboriginal Affairs +321153,Aboriginal Affairs,Aboriginal Affairs +321152,Aboriginal Affairs,Aboriginal Affairs +321149,Aboriginal Affairs,Aboriginal Affairs +296153,Aboriginal Affairs,Aboriginal Affairs +296151,Aboriginal Affairs,Aboriginal Affairs +296150,Aboriginal Affairs,Aboriginal Affairs +240302,Aboriginal Affairs,Aboriginal Affairs +240297,Aboriginal Affairs,Aboriginal Affairs +240295,Aboriginal Affairs,Aboriginal Affairs +240289,Aboriginal Affairs,Aboriginal Affairs +240260,Aboriginal Affairs,Aboriginal Affairs +240257,Aboriginal Affairs,Aboriginal Affairs +240254,Aboriginal Affairs,Aboriginal Affairs +240250,Aboriginal Affairs,Aboriginal Affairs +211716,Aboriginal Affairs,Aboriginal Affairs +211715,Aboriginal Affairs,Aboriginal Affairs +502527,Science and Technology,Science and Technology +464909,Science and Technology,Science and Technology +318855,Science and Technology,Science and Technology +315234,Science and Technology,Science and Technology +315233,Science and Technology,Science and Technology +315216,Science and Technology,Science and Technology +315215,Science and Technology,Science and Technology +315214,Science and Technology,Science and Technology +315213,Science and Technology,Science and Technology +315211,Science and Technology,Science and Technology +315209,Science and Technology,Science and Technology +310479,Science and Technology,Science and Technology +310472,Science and Technology,Science and Technology +305230,Science and Technology,Science and Technology +305229,Science and Technology,Science and Technology +279569,Science and Technology,Science and Technology +428798,Science and Technology,Science and Technology +428793,Science and Technology,Science and Technology +423903,Science and Technology,Science and Technology +423900,Science and Technology,Science and Technology +423893,Science and Technology,Science and Technology +423889,Science and Technology,Science and Technology +419817,Science and Technology,Science and Technology +419813,Science and Technology,Science and Technology +419810,Science and Technology,Science and Technology +419804,Science and Technology,Science and Technology +416174,Science and Technology,Science and Technology +408871,Science and Technology,Science and Technology +408870,Science and Technology,Science and Technology +403291,Science and Technology,Science and Technology +400736,Science and Technology,Science and Technology +396786,Science and Technology,Science and Technology +387944,Science and Technology,Science and Technology +387943,Science and Technology,Science and Technology +387942,Science and Technology,Science and Technology +387831,Science and Technology,Science and Technology +382334,Science and Technology,Science and Technology +376984,Science and Technology,Science and Technology +376982,Science and Technology,Science and Technology +376977,Science and Technology,Science and Technology +376972,Science and Technology,Science and Technology +376969,Science and Technology,Science and Technology +376964,Science and Technology,Science and Technology +369084,Science and Technology,Science and Technology +369083,Science and Technology,Science and Technology +369079,Science and Technology,Science and Technology +366793,Science and Technology,Science and Technology +366792,Science and Technology,Science and Technology +364889,Science and Technology,Science and Technology +362184,Science and Technology,Science and Technology +359423,Science and Technology,Science and Technology +359422,Science and Technology,Science and Technology +356351,Science and Technology,Science and Technology +353294,Science and Technology,Science and Technology +347303,Science and Technology,Science and Technology +347301,Science and Technology,Science and Technology +347298,Science and Technology,Science and Technology +343803,Science and Technology,Science and Technology +338363,Science and Technology,Science and Technology +338077,Science and Technology,Science and Technology +335327,Science and Technology,Science and Technology +335321,Science and Technology,Science and Technology +333831,Science and Technology,Science and Technology +333217,Science and Technology,Science and Technology +333216,Science and Technology,Science and Technology +437776,Aboriginal Affairs,Aboriginal Affairs +437773,Aboriginal Affairs,Aboriginal Affairs +216828,Aboriginal Affairs,Aboriginal Affairs +193485,Aboriginal Affairs,Aboriginal Affairs +402233,Aboriginal Affairs,Aboriginal Affairs +377103,Aboriginal Affairs,Aboriginal Affairs +348192,Aboriginal Affairs,Aboriginal Affairs +329477,Aboriginal Affairs,Aboriginal Affairs +326874,Aboriginal Affairs,Aboriginal Affairs +277659,Aboriginal Affairs,Aboriginal Affairs +268492,Aboriginal Affairs,Aboriginal Affairs +268491,Aboriginal Affairs,Aboriginal Affairs +329475,Aboriginal Affairs,Aboriginal Affairs +268490,Aboriginal Affairs,Aboriginal Affairs +193486,Aboriginal Affairs,Aboriginal Affairs +539480,Science and Technology,Science and Technology +533682,Science and Technology,Science and Technology +194927,Science and Technology,Science and Technology +370245,Science and Technology,Science and Technology +335920,Science and Technology,Science and Technology +319124,Science and Technology,Science and Technology +303090,Science and Technology,Science and Technology +303089,Science and Technology,Science and Technology +291329,Science and Technology,Science and Technology +277438,Science and Technology,Science and Technology +421991,Science and Technology,Science and Technology +421986,Science and Technology,Science and Technology +418684,Science and Technology,Science and Technology +416678,Science and Technology,Science and Technology +415129,Science and Technology,Science and Technology +415126,Science and Technology,Science and Technology +414699,Science and Technology,Science and Technology +414211,Science and Technology,Science and Technology +414208,Science and Technology,Science and Technology +414110,Science and Technology,Science and Technology +414029,Science and Technology,Science and Technology +413563,Science and Technology,Science and Technology +413559,Science and Technology,Science and Technology +413536,Science and Technology,Science and Technology +413296,Science and Technology,Science and Technology +413080,Science and Technology,Science and Technology +412824,Science and Technology,Science and Technology +412804,Science and Technology,Science and Technology +412792,Science and Technology,Science and Technology +412778,Science and Technology,Science and Technology +412747,Science and Technology,Science and Technology +412703,Science and Technology,Science and Technology +412696,Science and Technology,Science and Technology +412686,Science and Technology,Science and Technology +411920,Science and Technology,Science and Technology +370247,Science and Technology,Science and Technology +435766,Science and Technology,Science and Technology +433778,Science and Technology,Science and Technology +433775,Science and Technology,Science and Technology +433771,Science and Technology,Science and Technology +433767,Science and Technology,Science and Technology +429499,Science and Technology,Science and Technology +429152,Science and Technology,Science and Technology +428804,Science and Technology,Science and Technology +425742,Science and Technology,Science and Technology +425717,Science and Technology,Science and Technology +239389,Science and Technology,Science and Technology +222669,Science and Technology,Science and Technology +196669,Science and Technology,Science and Technology +251420,Science and Technology,Science and Technology +251416,Science and Technology,Science and Technology +272489,Science and Technology,Science and Technology +312070,Broadcasting,Broadcasting +399548,Broadcasting,Broadcasting +370505,Broadcasting,Broadcasting +370504,Broadcasting,Broadcasting +348193,Broadcasting,Broadcasting +337498,Broadcasting,Broadcasting +337497,Broadcasting,Broadcasting +227272,Arts and Culture,Arts et culture +499357,Research and Development,Research and Development +464909,Research and Development,Research and Development +202796,Research and Development,Research and Development +318855,Research and Development,Research and Development +315234,Research and Development,Research and Development +315233,Research and Development,Research and Development +315216,Research and Development,Research and Development +315215,Research and Development,Research and Development +315214,Research and Development,Research and Development +315213,Research and Development,Research and Development +315211,Research and Development,Research and Development +315209,Research and Development,Research and Development +310479,Research and Development,Research and Development +310472,Research and Development,Research and Development +305230,Research and Development,Research and Development +305229,Research and Development,Research and Development +279569,Research and Development,Research and Development +428798,Research and Development,Research and Development +428793,Research and Development,Research and Development +423903,Research and Development,Research and Development +423900,Research and Development,Research and Development +423893,Research and Development,Research and Development +423889,Research and Development,Research and Development +416174,Research and Development,Research and Development +408871,Research and Development,Research and Development +408870,Research and Development,Research and Development +403291,Research and Development,Research and Development +400736,Research and Development,Research and Development +396786,Research and Development,Research and Development +387944,Research and Development,Research and Development +387943,Research and Development,Research and Development +387942,Research and Development,Research and Development +387831,Research and Development,Research and Development +382334,Research and Development,Research and Development +376984,Research and Development,Research and Development +376982,Research and Development,Research and Development +376977,Research and Development,Research and Development +376972,Research and Development,Research and Development +376969,Research and Development,Research and Development +376964,Research and Development,Research and Development +369084,Research and Development,Research and Development +369083,Research and Development,Research and Development +369079,Research and Development,Research and Development +366793,Research and Development,Research and Development +366792,Research and Development,Research and Development +364889,Research and Development,Research and Development +362184,Research and Development,Research and Development +359423,Research and Development,Research and Development +359422,Research and Development,Research and Development +356351,Research and Development,Research and Development +353294,Research and Development,Research and Development +347303,Research and Development,Research and Development +347301,Research and Development,Research and Development +347298,Research and Development,Research and Development +343803,Research and Development,Research and Development +338363,Research and Development,Research and Development +338077,Research and Development,Research and Development +335327,Research and Development,Research and Development +335321,Research and Development,Research and Development +333831,Research and Development,Research and Development +333217,Research and Development,Research and Development +333216,Research and Development,Research and Development +333209,Research and Development,Research and Development +254969,International Trade,International Trade +405820,Health,Health +405819,Health,Health +393741,Health,Health +393739,Health,Health +382048,Health,Health +382047,Health,Health +418001,Budget,Budget +414239,Budget,Budget +229011,Budget,Budget +220287,Budget,Budget +201568,Budget,Budget +410426,Budget,Budget +410424,Budget,Budget +397768,Budget,Budget +309613,Budget,Budget +261689,Budget,Budget +239330,Budget,Budget +529038,Budget,Budget +509835,Budget,Budget +509834,Budget,Budget +509833,Budget,Budget +509832,Budget,Budget +503446,Budget,Budget +500747,Budget,Budget +500746,Budget,Budget +500745,Budget,Budget +500744,Budget,Budget +500734,Budget,Budget +493872,Budget,Budget +487304,Budget,Budget +487303,Budget,Budget +464029,Budget,Budget +455514,Budget,Budget +452224,Budget,Budget +446679,Budget,Budget +446678,Budget,Budget +446677,Budget,Budget +446676,Budget,Budget +446675,Budget,Budget +443777,Budget,Budget +441964,Budget,Budget +441961,Budget,Budget +441956,Budget,Budget +441949,Budget,Budget +441947,Budget,Budget +438595,Budget,Budget +438594,Budget,Budget +438592,Budget,Budget +435106,Budget,Budget +435103,Budget,Budget +435101,Budget,Budget +435095,Budget,Budget +435093,Budget,Budget +435092,Budget,Budget +433094,Budget,Budget +432313,Budget,Budget +432312,Budget,Budget +432311,Budget,Budget +432310,Budget,Budget +432309,Budget,Budget +432307,Budget,Budget +432306,Budget,Budget +430095,Budget,Budget +430094,Budget,Budget +425506,Budget,Budget +425504,Budget,Budget +423486,Budget,Budget +423426,Budget,Budget +420711,Budget,Budget +420710,Budget,Budget +420709,Budget,Budget +418745,Budget,Budget +418744,Budget,Budget +418009,Budget,Budget +418005,Budget,Budget +526883,Health,Health +511976,Health,Health +266552,Health,Health +235835,Health,Health +232873,Health,Health +229011,Health,Health +209767,Health,Health +201568,Health,Health +420711,Health,Health +420710,Health,Health +420709,Health,Health +418744,Health,Health +418006,Health,Health +418003,Health,Health +414239,Health,Health +410426,Health,Health +410424,Health,Health +399623,Health,Health +397768,Health,Health +378688,Health,Health +373741,Health,Health +359323,Health,Health +355368,Health,Health +355199,Health,Health +352924,Health,Health +352918,Health,Health +352916,Health,Health +344846,Health,Health +334929,Health,Health +318666,Health,Health +318665,Health,Health +309613,Health,Health +309612,Health,Health +309550,Health,Health +309537,Health,Health +309509,Health,Health +309491,Health,Health +309489,Health,Health +300490,Health,Health +300489,Health,Health +300472,Health,Health +294210,Health,Health +294209,Health,Health +294189,Health,Health +288669,Health,Health +288649,Health,Health +285931,Health,Health +279909,Health,Health +509835,Health,Health +509834,Health,Health +509833,Health,Health +509832,Health,Health +507107,Health,Health +503446,Health,Health +503291,Health,Health +500747,Health,Health +500746,Health,Health +500745,Health,Health +500744,Health,Health +500734,Health,Health +498929,Health,Health +498916,Health,Health +498893,Health,Health +493872,Health,Health +492146,Health,Health +489913,Health,Health +489909,Health,Health +489908,Health,Health +487304,Health,Health +487303,Health,Health +487302,Health,Health +481708,Health,Health +481680,Health,Health +481673,Health,Health +479816,Health,Health +477743,Health,Health +477740,Health,Health +477737,Health,Health +477711,Health,Health +477704,Health,Health +474754,Health,Health +472755,Health,Health +472754,Health,Health +472751,Health,Health +470202,Health,Health +470193,Health,Health +470176,Health,Health +470174,Health,Health +466958,Health,Health +464029,Health,Health +462253,Health,Health +461732,Health,Health +461731,Health,Health +459638,Health,Health +458637,Health,Health +457415,Health,Health +455514,Health,Health +455469,Health,Health +452238,Health,Health +452230,Health,Health +452228,Health,Health +452226,Health,Health +452224,Health,Health +446679,Health,Health +446678,Health,Health +446677,Health,Health +446676,Health,Health +446675,Health,Health +445532,Health,Health +445420,Health,Health +445417,Health,Health +443781,Health,Health +443779,Health,Health +443777,Health,Health +441964,Health,Health +441961,Health,Health +441960,Health,Health +441956,Health,Health +441949,Health,Health +441948,Health,Health +441947,Health,Health +438595,Health,Health +438594,Health,Health +435106,Health,Health +435103,Health,Health +435101,Health,Health +435095,Health,Health +435093,Health,Health +435092,Health,Health +433094,Health,Health +432371,Health,Health +432313,Health,Health +432312,Health,Health +432311,Health,Health +432310,Health,Health +432309,Health,Health +432307,Health,Health +432306,Health,Health +430096,Health,Health +430095,Health,Health +425504,Health,Health +529034,Health,Health +196045,Education,Education +209847,Education,Education +196886,Education,Education +196885,Education,Education +196884,Education,Education +196883,Education,Education +196049,Education,Education +196046,Education,Education +209848,Education,Education +196890,Education,Education +196889,Education,Education +196888,Education,Education +196887,Education,Education +196050,Education,Education +483961,Taxation and Finance,Taxation and Finance +472267,Taxation and Finance,Taxation and Finance +197275,Financial Institutions,Financial Institutions +336058,Financial Institutions,Financial Institutions +306494,Financial Institutions,Financial Institutions +193513,Regional Development,Regional Development +193509,Regional Development,Regional Development +505980,Budget,Budget +505978,Budget,Budget +295670,Budget,Budget +295669,Budget,Budget +275649,Budget,Budget +266711,Budget,Budget +232173,Budget,Budget +232170,Budget,Budget +222443,Budget,Budget +222441,Budget,Budget +222440,Budget,Budget +222439,Budget,Budget +222438,Budget,Budget +222437,Budget,Budget +222436,Budget,Budget +222435,Budget,Budget +222434,Budget,Budget +222433,Budget,Budget +222432,Budget,Budget +222431,Budget,Budget +222429,Budget,Budget +222427,Budget,Budget +193519,Budget,Budget +391845,Budget,Budget +391844,Budget,Budget +375260,Budget,Budget +353167,Budget,Budget +353166,Budget,Budget +333348,Budget,Budget +326369,Budget,Budget +326329,Budget,Budget +401672,Labour,Labour +401658,Labour,Labour +193519,Labour,Labour +391845,Labour,Labour +353166,Labour,Labour +344591,Labour,Labour +344591,Research and Development,Research and Development +301370,Research and Development,Research and Development +295670,Research and Development,Research and Development +295669,Research and Development,Research and Development +290229,Research and Development,Research and Development +275649,Research and Development,Research and Development +266711,Research and Development,Research and Development +193519,Research and Development,Research and Development +514835,Research and Development,Research and Development +505975,Research and Development,Research and Development +424611,Research and Development,Research and Development +479164,Education,Education +479163,Education,Education +218627,Education,Education +379272,Education,Education +379267,Education,Education +375676,Education,Education +375673,Education,Education +373444,Education,Education +362764,Education,Education +350826,Education,Education +350824,Education,Education +350820,Education,Education +350816,Education,Education +348952,Education,Education +348951,Education,Education +347208,Education,Education +343818,Education,Education +343481,Education,Education +427423,Education,Education +415348,Education,Education +415344,Education,Education +415343,Education,Education +412813,Education,Education +407449,Education,Education +402866,Education,Education +402861,Education,Education +398840,Education,Education +381089,Education,Education +381086,Education,Education +381079,Education,Education +481674,Education,Education +481670,Education,Education +479166,Education,Education +501535,Immigration,Immigration +501518,Immigration,Immigration +348582,Immigration,Immigration +348049,Immigration,Immigration +348046,Immigration,Immigration +348045,Immigration,Immigration +348044,Immigration,Immigration +348043,Immigration,Immigration +348042,Immigration,Immigration +333792,Immigration,Immigration +333791,Immigration,Immigration +333790,Immigration,Immigration +314810,Immigration,Immigration +314800,Immigration,Immigration +314797,Immigration,Immigration +314795,Immigration,Immigration +313509,Immigration,Immigration +290070,Immigration,Immigration +290049,Immigration,Immigration +264850,Immigration,Immigration +244517,Immigration,Immigration +244516,Immigration,Immigration +244515,Immigration,Immigration +244512,Immigration,Immigration +244511,Immigration,Immigration +244509,Immigration,Immigration +244469,Immigration,Immigration +445968,Immigration,Immigration +445966,Immigration,Immigration +445965,Immigration,Immigration +445963,Immigration,Immigration +445957,Immigration,Immigration +395014,Immigration,Immigration +395013,Immigration,Immigration +395011,Immigration,Immigration +395009,Immigration,Immigration +395007,Immigration,Immigration +395002,Immigration,Immigration +384564,Immigration,Immigration +384563,Immigration,Immigration +378384,Immigration,Immigration +378383,Immigration,Immigration +378382,Immigration,Immigration +378381,Immigration,Immigration +375188,Immigration,Immigration +375187,Immigration,Immigration +370149,Immigration,Immigration +370148,Immigration,Immigration +370147,Immigration,Immigration +370146,Immigration,Immigration +370145,Immigration,Immigration +370144,Immigration,Immigration +370143,Immigration,Immigration +370142,Immigration,Immigration +370140,Immigration,Immigration +370139,Immigration,Immigration +370138,Immigration,Immigration +524003,Immigration,Immigration +254175,Economic Development,Economic Development +254170,Economic Development,Economic Development +200147,Economic Development,Economic Development +193827,Economic Development,Economic Development +261208,Economic Development,Economic Development +254177,Economic Development,Economic Development +254172,Economic Development,Economic Development +251730,Economic Development,Economic Development +251729,Economic Development,Economic Development +465976,Budget,Budget +465975,Budget,Budget +247632,Budget,Budget +247629,Budget,Budget +216848,Budget,Budget +465974,Budget,Budget +465973,Budget,Budget +465411,Budget,Budget +461863,Budget,Budget +455008,Budget,Budget +453203,Budget,Budget +448524,Budget,Budget +445867,Budget,Budget +407110,Budget,Budget +391355,Budget,Budget +369865,Budget,Budget +526740,Budget,Budget +523559,Budget,Budget +523374,Budget,Budget +521700,Budget,Budget +520977,Budget,Budget +485734,Budget,Budget +466811,Budget,Budget +466809,Budget,Budget +466796,Budget,Budget +523559,Security,Security +514462,Security,Security +413563,Research and Development,Research and Development +413559,Research and Development,Research and Development +207393,Research and Development,Research and Development +207390,Research and Development,Research and Development +194927,Research and Development,Research and Development +413536,Research and Development,Research and Development +413296,Research and Development,Research and Development +412824,Research and Development,Research and Development +412804,Research and Development,Research and Development +412792,Research and Development,Research and Development +412778,Research and Development,Research and Development +412747,Research and Development,Research and Development +412703,Research and Development,Research and Development +412696,Research and Development,Research and Development +412686,Research and Development,Research and Development +411920,Research and Development,Research and Development +393177,Research and Development,Research and Development +335190,Research and Development,Research and Development +331339,Research and Development,Research and Development +287056,Research and Development,Research and Development +433778,Research and Development,Research and Development +433775,Research and Development,Research and Development +433771,Research and Development,Research and Development +433767,Research and Development,Research and Development +432435,Research and Development,Research and Development +432434,Research and Development,Research and Development +431074,Research and Development,Research and Development +429152,Research and Development,Research and Development +428804,Research and Development,Research and Development +421998,Research and Development,Research and Development +421995,Research and Development,Research and Development +421991,Research and Development,Research and Development +421988,Research and Development,Research and Development +421986,Research and Development,Research and Development +416678,Research and Development,Research and Development +415129,Research and Development,Research and Development +415126,Research and Development,Research and Development +414699,Research and Development,Research and Development +414211,Research and Development,Research and Development +414208,Research and Development,Research and Development +414110,Research and Development,Research and Development +240679,Agriculture,Agriculture +239389,Agriculture,Agriculture +222669,Agriculture,Agriculture +196669,Agriculture,Agriculture +251420,Agriculture,Agriculture +222669,Health,Health +196669,Health,Health +251420,Health,Health +251416,Health,Health +251412,Health,Health +251416,Industry,Industry +424596,International Development,International Development +424595,International Development,International Development +211230,International Development,International Development +211229,International Development,International Development +211228,International Development,International Development +211227,International Development,International Development +201012,International Development,International Development +194930,International Development,International Development +342225,International Development,International Development +342221,International Development,International Development +342205,International Development,International Development +335034,International Development,International Development +335033,International Development,International Development +330864,International Development,International Development +328729,International Development,International Development +306992,International Development,International Development +306991,International Development,International Development +261849,International Development,International Development +250796,International Development,International Development +250790,International Development,International Development +250788,International Development,International Development +250787,International Development,International Development +234849,International Development,International Development +222891,International Development,International Development +222889,International Development,International Development +211235,International Development,International Development +211234,International Development,International Development +211233,International Development,International Development +211232,International Development,International Development +211231,International Development,International Development +385311,International Development,International Development +384837,International Development,International Development +384835,International Development,International Development +384832,International Development,International Development +384743,International Development,International Development +349132,International Development,International Development +349130,International Development,International Development +349128,International Development,International Development +349126,International Development,International Development +349123,International Development,International Development +542288,International Development,International Development +541010,International Development,International Development +540610,International Development,International Development +539545,International Development,International Development +536743,International Development,International Development +536740,International Development,International Development +532794,International Development,International Development +532793,International Development,International Development +532791,International Development,International Development +529842,International Development,International Development +524673,International Development,International Development +524672,International Development,International Development +524671,International Development,International Development +524669,International Development,International Development +524668,International Development,International Development +524667,International Development,International Development +524665,International Development,International Development +524664,International Development,International Development +524663,International Development,International Development +524662,International Development,International Development +524661,International Development,International Development +512597,International Development,International Development +512188,International Development,International Development +506273,International Development,International Development +500424,International Development,International Development +500130,International Development,International Development +496326,International Development,International Development +494982,International Development,International Development +494981,International Development,International Development +494975,International Development,International Development +487260,International Development,International Development +463727,International Development,International Development +463726,International Development,International Development +463496,International Development,International Development +463495,International Development,International Development +463459,International Development,International Development +440686,International Development,International Development +440685,International Development,International Development +425218,International Development,International Development +425217,International Development,International Development +425216,International Development,International Development +425215,International Development,International Development +425214,International Development,International Development +425212,International Development,International Development +425209,International Development,International Development +425208,International Development,International Development +425207,International Development,International Development +481534,Education,Education +476271,Education,Education +259597,Education,Education +259590,Education,Education +254168,Education,Education +227379,Education,Education +227378,Education,Education +227352,Education,Education +223268,Education,Education +385676,Education,Education +383831,Education,Education +382519,Education,Education +372503,Education,Education +369042,Education,Education +369011,Education,Education +369009,Education,Education +369007,Education,Education +366694,Education,Education +365230,Education,Education +365229,Education,Education +358109,Education,Education +358105,Education,Education +358103,Education,Education +353964,Education,Education +349016,Education,Education +349011,Education,Education +349010,Education,Education +347227,Education,Education +347217,Education,Education +335705,Education,Education +335696,Education,Education +335694,Education,Education +333644,Education,Education +333642,Education,Education +333641,Education,Education +327504,Education,Education +327503,Education,Education +327500,Education,Education +325056,Education,Education +319150,Education,Education +304065,Education,Education +304050,Education,Education +290850,Education,Education +285509,Education,Education +281097,Education,Education +276177,Education,Education +273380,Education,Education +264556,Education,Education +264551,Education,Education +264541,Education,Education +469226,Education,Education +467943,Education,Education +467942,Education,Education +460508,Education,Education +460019,Education,Education +458515,Education,Education +458508,Education,Education +439168,Education,Education +439167,Education,Education +439164,Education,Education +439141,Education,Education +439037,Education,Education +439024,Education,Education +439013,Education,Education +433737,Education,Education +432730,Education,Education +432725,Education,Education +422206,Education,Education +420537,Education,Education +416467,Education,Education +416461,Education,Education +416447,Education,Education +412952,Education,Education +412947,Education,Education +412944,Education,Education +412940,Education,Education +412889,Education,Education +412885,Education,Education +412879,Education,Education +407336,Education,Education +406187,Education,Education +406186,Education,Education +400705,Education,Education +528983,Education,Education +522467,Education,Education +519882,Education,Education +519880,Education,Education +507533,Education,Education +500714,Education,Education +500713,Education,Education +497895,Education,Education +497891,Education,Education +497886,Education,Education +497883,Education,Education +494837,Education,Education +494749,Education,Education +494731,Education,Education +490062,Education,Education +490060,Education,Education +486849,Education,Education +483650,Education,Education +207827,Government Procurement,Government Procurement +207811,Government Procurement,Government Procurement +212581,Government Procurement,Government Procurement +212569,Government Procurement,Government Procurement +212547,Government Procurement,Government Procurement +212545,Government Procurement,Government Procurement +212543,Government Procurement,Government Procurement +212541,Government Procurement,Government Procurement +212539,Government Procurement,Government Procurement +212537,Government Procurement,Government Procurement +212534,Government Procurement,Government Procurement +212532,Government Procurement,Government Procurement +212531,Government Procurement,Government Procurement +212528,Government Procurement,Government Procurement +212524,Government Procurement,Government Procurement +212520,Government Procurement,Government Procurement +420121,Energy,Energy +416766,Energy,Energy +400986,Energy,Energy +400982,Energy,Energy +372540,Energy,Energy +372319,Energy,Energy +369390,Energy,Energy +475452,Energy,Energy +467028,Energy,Energy +467026,Energy,Energy +467024,Energy,Energy +464137,Energy,Energy +464125,Energy,Energy +464124,Energy,Energy +463993,Energy,Energy +463992,Energy,Energy +463990,Energy,Energy +463989,Energy,Energy +463987,Energy,Energy +463986,Energy,Energy +463985,Energy,Energy +463982,Energy,Energy +463981,Energy,Energy +463979,Energy,Energy +462820,Energy,Energy +462819,Energy,Energy +462818,Energy,Energy +461413,Energy,Energy +458728,Energy,Energy +452581,Energy,Energy +452574,Energy,Energy +447444,Energy,Energy +447443,Energy,Energy +447441,Energy,Energy +443626,Energy,Energy +443624,Energy,Energy +443622,Energy,Energy +442233,Energy,Energy +442183,Energy,Energy +442182,Energy,Energy +435283,Energy,Energy +435279,Energy,Energy +433754,Energy,Energy +428669,Energy,Energy +428668,Energy,Energy +426099,Energy,Energy +426091,Energy,Energy +426088,Energy,Energy +426083,Energy,Energy +424220,Energy,Energy +422298,Energy,Energy +202693,Economic Development,Economic Development +202690,Economic Development,Economic Development +230676,Agriculture,Agriculture +220608,Agriculture,Agriculture +269498,Agriculture,Agriculture +230676,Economic Development,Economic Development +230678,Energy,Energy +230676,Energy,Energy +269558,Energy,Energy +230678,Environment,Environment +230676,Regional Development,Regional Development +198767,Financial Institutions,Financial Institutions +198467,Financial Institutions,Financial Institutions +199682,Financial Institutions,Financial Institutions +272489,Infrastructure,Infrastructure +411268,Taxation and Finance,Taxation and Finance +386357,Taxation and Finance,Taxation and Finance +195525,Taxation and Finance,Taxation and Finance +411269,Taxation and Finance,Taxation and Finance +195526,Taxation and Finance,Taxation and Finance +411291,Taxation and Finance,Taxation and Finance +411287,Taxation and Finance,Taxation and Finance +411270,Taxation and Finance,Taxation and Finance +411267,Taxation and Finance,Taxation and Finance +526756,Taxation and Finance,Taxation and Finance +199892,Taxation and Finance,Taxation and Finance +411286,Taxation and Finance,Taxation and Finance +215990,Industry,Industry +199883,Industry,Industry +265830,Industry,Industry +247489,Industry,Industry +232509,Industry,Industry +232489,Industry,Industry +199677,Financial Institutions,Financial Institutions +199676,Financial Institutions,Financial Institutions +199761,Financial Institutions,Financial Institutions +199689,Financial Institutions,Financial Institutions +199687,Financial Institutions,Financial Institutions +335089,Government Procurement,Government Procurement +314892,Government Procurement,Government Procurement +202894,Government Procurement,Government Procurement +202888,Government Procurement,Government Procurement +202307,Government Procurement,Government Procurement +346917,Government Procurement,Government Procurement +341017,Government Procurement,Government Procurement +203547,Government Procurement,Government Procurement +203429,Government Procurement,Government Procurement +478395,International Trade,International Trade +478393,International Trade,International Trade +431411,International Trade,International Trade +431410,International Trade,International Trade +431409,International Trade,International Trade +252350,Transportation,Transportation +252349,Transportation,Transportation +195784,Transportation,Transportation +326292,Transportation,Transportation +326289,Transportation,Transportation +311777,Transportation,Transportation +311776,Transportation,Transportation +296369,Transportation,Transportation +252352,Transportation,Transportation +195791,Transportation,Transportation +355682,Transportation,Transportation +340070,Transportation,Transportation +311779,Transportation,Transportation +252491,Transportation,Transportation +340184,Official Languages,Langues officielles +340183,Official Languages,Langues officielles +340190,Official Languages,Langues officielles +340189,Official Languages,Langues officielles +340188,Official Languages,Langues officielles +340187,Official Languages,Langues officielles +340186,Official Languages,Langues officielles +340184,Health,Santé +340183,Health,Santé +340190,Health,Santé +340189,Health,Santé +340188,Health,Santé +340187,Health,Santé +340186,Health,Santé +339858,Economic Development,Economic Development +339857,Economic Development,Economic Development +202732,Economic Development,Economic Development +244372,Economic Development,Economic Development +226998,Economic Development,Economic Development +346578,Economic Development,Economic Development +346577,Economic Development,Economic Development +346558,Economic Development,Economic Development +339860,Economic Development,Economic Development +226998,Energy,Energy +202732,Energy,Energy +346578,Energy,Energy +346577,Energy,Energy +346558,Energy,Energy +339860,Energy,Energy +339859,Energy,Energy +339858,Energy,Energy +339857,Energy,Energy +313354,Energy,Energy +346577,Environment,Environment +346558,Environment,Environment +339860,Environment,Environment +339857,Environment,Environment +313354,Environment,Environment +244372,Environment,Environment +226998,Environment,Environment +202732,Environment,Environment +216098,Consumer Issues,Consumer Issues +216097,Consumer Issues,Consumer Issues +216096,Consumer Issues,Consumer Issues +201173,Consumer Issues,Consumer Issues +201172,Consumer Issues,Consumer Issues +314310,Consumer Issues,Consumer Issues +254890,Consumer Issues,Consumer Issues +254889,Consumer Issues,Consumer Issues +254890,Education,Education +254889,Education,Education +216099,Education,Education +216098,Education,Education +216097,Education,Education +216096,Education,Education +201173,Education,Education +201172,Education,Education +196768,Infrastructure,Infrastructure +196767,Infrastructure,Infrastructure +199727,Financial Institutions,Financial Institutions +198447,Financial Institutions,Financial Institutions +200750,Financial Institutions,Financial Institutions +200749,Financial Institutions,Financial Institutions +200748,Financial Institutions,Financial Institutions +198987,Financial Institutions,Financial Institutions +198968,Financial Institutions,Financial Institutions +237769,Health,Health +237749,Health,Health +207448,Health,Health +203948,Agriculture,Agriculture +196647,Agriculture,Agriculture +237769,Agriculture,Agriculture +197265,Climate,Climate +197270,Energy,Energy +197265,Energy,Energy +225830,Energy,Energy +225829,Energy,Energy +197265,Environment,Environment +197265,Industry,Industry +200523,Environment,Environment +402282,Transportation,Transportation +402281,Transportation,Transportation +327336,Transportation,Transportation +327335,Transportation,Transportation +200927,Transportation,Transportation +199247,Transportation,Transportation +400256,Transportation,Transportation +400254,Transportation,Transportation +400253,Transportation,Transportation +400252,Transportation,Transportation +398429,Transportation,Transportation +398426,Transportation,Transportation +398425,Transportation,Transportation +398423,Transportation,Transportation +398421,Transportation,Transportation +397700,Transportation,Transportation +397699,Transportation,Transportation +397229,Transportation,Transportation +397228,Transportation,Transportation +397227,Transportation,Transportation +395433,Transportation,Transportation +395432,Transportation,Transportation +394918,Transportation,Transportation +394917,Transportation,Transportation +394916,Transportation,Transportation +394915,Transportation,Transportation +394914,Transportation,Transportation +394913,Transportation,Transportation +394912,Transportation,Transportation +388506,Transportation,Transportation +386113,Transportation,Transportation +386111,Transportation,Transportation +386110,Transportation,Transportation +386109,Transportation,Transportation +386108,Transportation,Transportation +386107,Transportation,Transportation +386106,Transportation,Transportation +383069,Transportation,Transportation +332509,Transportation,Transportation +427434,Transportation,Transportation +427433,Transportation,Transportation +425351,Transportation,Transportation +414944,Transportation,Transportation +414269,Transportation,Transportation +414267,Transportation,Transportation +411325,Transportation,Transportation +411324,Transportation,Transportation +410696,Transportation,Transportation +410694,Transportation,Transportation +410693,Transportation,Transportation +410692,Transportation,Transportation +410691,Transportation,Transportation +410690,Transportation,Transportation +405350,Transportation,Transportation +402289,Transportation,Transportation +402288,Transportation,Transportation +402286,Transportation,Transportation +196205,Agriculture,Agriculture +314231,International Trade,International Trade +262729,International Trade,International Trade +196424,International Trade,International Trade +344441,International Trade,International Trade +269730,Small Business,Small Business +397580,Small Business,Small Business +196424,Small Business,Small Business +211950,Energy,Energy +211948,Energy,Energy +211991,Energy,Energy +211988,Energy,Energy +211950,Mining,Mining +211948,Mining,Mining +211991,Mining,Mining +211988,Mining,Mining +409849,Economic Development,Economic Development +388996,Economic Development,Economic Development +476458,Economic Development,Economic Development +454284,Economic Development,Economic Development +434359,Economic Development,Economic Development +501642,Official Languages,Official Languages +501640,Official Languages,Official Languages +525244,Official Languages,Official Languages +508623,Official Languages,Official Languages +504100,Official Languages,Official Languages +501650,Official Languages,Official Languages +203608,Economic Development,Economic Development +203607,Economic Development,Economic Development +203613,Economic Development,Economic Development +203612,Economic Development,Economic Development +203611,Economic Development,Economic Development +203610,Regional Development,Regional Development +203607,Regional Development,Regional Development +203612,Regional Development,Regional Development +397187,Official Languages,Langues officielles +385947,Official Languages,Langues officielles +211786,Official Languages,Langues officielles +320409,Official Languages,Langues officielles +319743,Official Languages,Langues officielles +245678,Official Languages,Langues officielles +227272,Official Languages,Langues officielles +389212,Agriculture,Agriculture +389211,Agriculture,Agriculture +369451,Agriculture,Agriculture +369449,Agriculture,Agriculture +357116,Agriculture,Agriculture +347784,Agriculture,Agriculture +317215,Agriculture,Agriculture +306311,Agriculture,Agriculture +260429,Agriculture,Agriculture +252410,Agriculture,Agriculture +252409,Agriculture,Agriculture +208667,Agriculture,Agriculture +465238,Agriculture,Agriculture +448385,Agriculture,Agriculture +439721,Agriculture,Agriculture +439720,Agriculture,Agriculture +439719,Agriculture,Agriculture +429573,Agriculture,Agriculture +429572,Agriculture,Agriculture +429571,Agriculture,Agriculture +420574,Agriculture,Agriculture +420440,Agriculture,Agriculture +418756,Agriculture,Agriculture +369451,Consumer Issues,Consumer Issues +465238,Consumer Issues,Consumer Issues +208667,Consumer Issues,Consumer Issues +260429,Consumer Issues,Consumer Issues +252409,Consumer Issues,Consumer Issues +439721,Consumer Issues,Consumer Issues +439719,Consumer Issues,Consumer Issues +429571,Consumer Issues,Consumer Issues +395448,International Trade,International Trade +465238,International Trade,International Trade +208667,International Trade,International Trade +369451,International Trade,International Trade +369449,International Trade,International Trade +357116,International Trade,International Trade +347784,International Trade,International Trade +317215,International Trade,International Trade +306311,International Trade,International Trade +260429,International Trade,International Trade +252409,International Trade,International Trade +448385,International Trade,International Trade +439721,International Trade,International Trade +439720,International Trade,International Trade +439719,International Trade,International Trade +429573,International Trade,International Trade +429572,International Trade,International Trade +429571,International Trade,International Trade +420574,International Trade,International Trade +420440,International Trade,International Trade +422784,Budget,Budget +247549,Agriculture,Agriculture +321012,Agriculture,Agriculture +271149,Agriculture,Agriculture +221568,Consumer Issues,Consumer Issues +221567,Consumer Issues,Consumer Issues +221587,Consumer Issues,Consumer Issues +202511,Intellectual Property,Intellectual Property +277196,Environment,Environment +277194,Environment,Environment +258139,Environment,Environment +258136,Environment,Environment +258131,Environment,Environment +258130,Environment,Environment +199627,Agriculture,Agriculture +266349,Environment,Environment +433824,Environment,Environment +392430,Environment,Environment +266349,Infrastructure,Infrastructure +433824,Infrastructure,Infrastructure +212538,Infrastructure,Infrastructure +212536,Infrastructure,Infrastructure +212523,Infrastructure,Infrastructure +266349,Taxation and Finance,Taxation and Finance +266349,Transportation,Transportation +212538,Transportation,Transportation +212536,Transportation,Transportation +212523,Transportation,Transportation +385803,Transportation,Transportation +433824,Transportation,Transportation +215993,Mining,Mining +211508,Mining,Mining +302394,Mining,Mining +277518,Mining,Mining +270951,Mining,Mining +229955,Mining,Mining +229954,Mining,Mining +229953,Mining,Mining +229952,Mining,Mining +257529,Economic Development,Economic Development +235812,Economic Development,Economic Development +235810,Economic Development,Economic Development +235809,Economic Development,Economic Development +368772,Economic Development,Economic Development +368768,Economic Development,Economic Development +368767,Economic Development,Economic Development +368766,Economic Development,Economic Development +368765,Economic Development,Economic Development +368763,Economic Development,Economic Development +368762,Economic Development,Economic Development +364926,Economic Development,Economic Development +364925,Economic Development,Economic Development +364924,Economic Development,Economic Development +364923,Economic Development,Economic Development +364922,Economic Development,Economic Development +356221,Economic Development,Economic Development +356220,Economic Development,Economic Development +355501,Economic Development,Economic Development +355500,Economic Development,Economic Development +348477,Economic Development,Economic Development +337112,Economic Development,Economic Development +337111,Economic Development,Economic Development +337110,Economic Development,Economic Development +277710,Economic Development,Economic Development +277709,Economic Development,Economic Development +276149,Economic Development,Economic Development +275213,Economic Development,Economic Development +275212,Economic Development,Economic Development +275211,Economic Development,Economic Development +275210,Economic Development,Economic Development +275209,Economic Development,Economic Development +270472,Economic Development,Economic Development +270471,Economic Development,Economic Development +270469,Economic Development,Economic Development +384350,Economic Development,Economic Development +384349,Economic Development,Economic Development +375169,Economic Development,Economic Development +375168,Economic Development,Economic Development +375167,Economic Development,Economic Development +375166,Economic Development,Economic Development +375165,Economic Development,Economic Development +371681,Economic Development,Economic Development +375168,Mining,Mining +375167,Mining,Mining +276149,Mining,Mining +275213,Mining,Mining +275212,Mining,Mining +275211,Mining,Mining +275210,Mining,Mining +275209,Mining,Mining +270472,Mining,Mining +270471,Mining,Mining +270469,Mining,Mining +257530,Mining,Mining +257529,Mining,Mining +239689,Mining,Mining +238790,Mining,Mining +238789,Mining,Mining +235812,Mining,Mining +235810,Mining,Mining +235809,Mining,Mining +228973,Mining,Mining +227529,Mining,Mining +375166,Mining,Mining +375165,Mining,Mining +371681,Mining,Mining +368772,Mining,Mining +368768,Mining,Mining +368767,Mining,Mining +368766,Mining,Mining +368765,Mining,Mining +368763,Mining,Mining +368762,Mining,Mining +364926,Mining,Mining +364925,Mining,Mining +364924,Mining,Mining +364923,Mining,Mining +364922,Mining,Mining +356221,Mining,Mining +356220,Mining,Mining +355501,Mining,Mining +355500,Mining,Mining +348477,Mining,Mining +337112,Mining,Mining +337111,Mining,Mining +337110,Mining,Mining +277710,Mining,Mining +277709,Mining,Mining +384350,Mining,Mining +384349,Mining,Mining +384256,Mining,Mining +208648,Fisheries,Fisheries +202570,International Relations,International Relations +464310,International Development,International Development +464308,International Development,International Development +206043,International Development,International Development +206042,International Development,International Development +206041,International Development,International Development +206040,International Development,International Development +206039,International Development,International Development +206038,International Development,International Development +206037,International Development,International Development +206036,International Development,International Development +206034,International Development,International Development +206033,International Development,International Development +206032,International Development,International Development +206031,International Development,International Development +206030,International Development,International Development +206027,International Development,International Development +206025,International Development,International Development +206024,International Development,International Development +206020,International Development,International Development +206008,International Development,International Development +205996,International Development,International Development +204427,International Development,International Development +204173,International Development,International Development +204172,International Development,International Development +204171,International Development,International Development +266532,International Development,International Development +266530,International Development,International Development +266529,International Development,International Development +256131,International Development,International Development +256130,International Development,International Development +256129,International Development,International Development +254044,International Development,International Development +254042,International Development,International Development +254041,International Development,International Development +254038,International Development,International Development +254035,International Development,International Development +254030,International Development,International Development +251999,International Development,International Development +251998,International Development,International Development +251997,International Development,International Development +251996,International Development,International Development +251995,International Development,International Development +251994,International Development,International Development +251993,International Development,International Development +251992,International Development,International Development +251991,International Development,International Development +251990,International Development,International Development +251989,International Development,International Development +249862,International Development,International Development +249861,International Development,International Development +249860,International Development,International Development +242172,International Development,International Development +242170,International Development,International Development +242169,International Development,International Development +233369,International Development,International Development +223297,International Development,International Development +223296,International Development,International Development +223294,International Development,International Development +223292,International Development,International Development +223291,International Development,International Development +223290,International Development,International Development +223288,International Development,International Development +223287,International Development,International Development +223283,International Development,International Development +223282,International Development,International Development +223280,International Development,International Development +223271,International Development,International Development +223269,International Development,International Development +223266,International Development,International Development +223264,International Development,International Development +223262,International Development,International Development +223259,International Development,International Development +223258,International Development,International Development +223257,International Development,International Development +223255,International Development,International Development +223254,International Development,International Development +223253,International Development,International Development +223252,International Development,International Development +223238,International Development,International Development +223235,International Development,International Development +223230,International Development,International Development +223227,International Development,International Development +223225,International Development,International Development +223223,International Development,International Development +223222,International Development,International Development +223211,International Development,International Development +206044,International Development,International Development +365244,International Development,International Development +365243,International Development,International Development +365241,International Development,International Development +365240,International Development,International Development +365238,International Development,International Development +365237,International Development,International Development +354097,International Development,International Development +354095,International Development,International Development +354094,International Development,International Development +351771,International Development,International Development +351769,International Development,International Development +351768,International Development,International Development +351766,International Development,International Development +351764,International Development,International Development +347938,International Development,International Development +343495,International Development,International Development +341554,International Development,International Development +341542,International Development,International Development +341541,International Development,International Development +341540,International Development,International Development +341103,International Development,International Development +341087,International Development,International Development +341086,International Development,International Development +341085,International Development,International Development +341083,International Development,International Development +338647,International Development,International Development +338646,International Development,International Development +338642,International Development,International Development +338640,International Development,International Development +335703,International Development,International Development +335532,International Development,International Development +334711,International Development,International Development +334710,International Development,International Development +333383,International Development,International Development +333382,International Development,International Development +333381,International Development,International Development +333379,International Development,International Development +333378,International Development,International Development +333374,International Development,International Development +333373,International Development,International Development +330310,International Development,International Development +330309,International Development,International Development +330308,International Development,International Development +330307,International Development,International Development +330306,International Development,International Development +330305,International Development,International Development +330304,International Development,International Development +330294,International Development,International Development +330293,International Development,International Development +330292,International Development,International Development +330291,International Development,International Development +330290,International Development,International Development +330289,International Development,International Development +330288,International Development,International Development +330287,International Development,International Development +330286,International Development,International Development +326491,International Development,International Development +326490,International Development,International Development +326489,International Development,International Development +325047,International Development,International Development +325044,International Development,International Development +325041,International Development,International Development +325038,International Development,International Development +325035,International Development,International Development +325033,International Development,International Development +325031,International Development,International Development +324789,International Development,International Development +321487,International Development,International Development +321352,International Development,International Development +321349,International Development,International Development +321347,International Development,International Development +321345,International Development,International Development +321344,International Development,International Development +321342,International Development,International Development +321340,International Development,International Development +319275,International Development,International Development +319274,International Development,International Development +319273,International Development,International Development +319272,International Development,International Development +319271,International Development,International Development +319269,International Development,International Development +319267,International Development,International Development +319264,International Development,International Development +312600,International Development,International Development +312590,International Development,International Development +312589,International Development,International Development +312557,International Development,International Development +312556,International Development,International Development +312555,International Development,International Development +312554,International Development,International Development +312553,International Development,International Development +312550,International Development,International Development +279500,International Development,International Development +279499,International Development,International Development +279498,International Development,International Development +279497,International Development,International Development +279496,International Development,International Development +279495,International Development,International Development +279494,International Development,International Development +279493,International Development,International Development +279492,International Development,International Development +279491,International Development,International Development +279490,International Development,International Development +266542,International Development,International Development +266541,International Development,International Development +266540,International Development,International Development +266539,International Development,International Development +266538,International Development,International Development +266533,International Development,International Development +464075,International Development,International Development +462868,International Development,International Development +462867,International Development,International Development +462866,International Development,International Development +462865,International Development,International Development +462864,International Development,International Development +461451,International Development,International Development +461450,International Development,International Development +461447,International Development,International Development +459876,International Development,International Development +457240,International Development,International Development +457152,International Development,International Development +456461,International Development,International Development +456381,International Development,International Development +456281,International Development,International Development +456280,International Development,International Development +454948,International Development,International Development +450919,International Development,International Development +450227,International Development,International Development +450222,International Development,International Development +449699,International Development,International Development +449337,International Development,International Development +449335,International Development,International Development +449333,International Development,International Development +449330,International Development,International Development +449327,International Development,International Development +449324,International Development,International Development +449319,International Development,International Development +449311,International Development,International Development +449310,International Development,International Development +449308,International Development,International Development +449307,International Development,International Development +449305,International Development,International Development +449304,International Development,International Development +449303,International Development,International Development +448467,International Development,International Development +447736,International Development,International Development +447730,International Development,International Development +444785,International Development,International Development +444784,International Development,International Development +444783,International Development,International Development +444781,International Development,International Development +444780,International Development,International Development +440044,International Development,International Development +440042,International Development,International Development +440039,International Development,International Development +433364,International Development,International Development +429050,International Development,International Development +429046,International Development,International Development +425474,International Development,International Development +424599,International Development,International Development +424421,International Development,International Development +424416,International Development,International Development +424408,International Development,International Development +420148,International Development,International Development +416570,International Development,International Development +416553,International Development,International Development +416542,International Development,International Development +416538,International Development,International Development +409866,International Development,International Development +409860,International Development,International Development +407860,International Development,International Development +407859,International Development,International Development +407858,International Development,International Development +407857,International Development,International Development +407856,International Development,International Development +407843,International Development,International Development +407841,International Development,International Development +406759,International Development,International Development +405336,International Development,International Development +405334,International Development,International Development +403734,International Development,International Development +403731,International Development,International Development +403727,International Development,International Development +400721,International Development,International Development +400719,International Development,International Development +400718,International Development,International Development +400715,International Development,International Development +400714,International Development,International Development +400609,International Development,International Development +400591,International Development,International Development +396360,International Development,International Development +396359,International Development,International Development +396358,International Development,International Development +396356,International Development,International Development +394237,International Development,International Development +391336,International Development,International Development +391333,International Development,International Development +391327,International Development,International Development +391326,International Development,International Development +391323,International Development,International Development +391319,International Development,International Development +390559,International Development,International Development +390557,International Development,International Development +385297,International Development,International Development +385296,International Development,International Development +385281,International Development,International Development +383899,International Development,International Development +383898,International Development,International Development +383895,International Development,International Development +383894,International Development,International Development +383892,International Development,International Development +383891,International Development,International Development +383889,International Development,International Development +383888,International Development,International Development +383886,International Development,International Development +379307,International Development,International Development +379305,International Development,International Development +379303,International Development,International Development +379301,International Development,International Development +379297,International Development,International Development +379294,International Development,International Development +379129,International Development,International Development +379113,International Development,International Development +379111,International Development,International Development +379110,International Development,International Development +379095,International Development,International Development +376302,International Development,International Development +375582,International Development,International Development +375581,International Development,International Development +375580,International Development,International Development +375578,International Development,International Development +375577,International Development,International Development +375576,International Development,International Development +375574,International Development,International Development +375573,International Development,International Development +375572,International Development,International Development +375571,International Development,International Development +375570,International Development,International Development +375569,International Development,International Development +375568,International Development,International Development +375567,International Development,International Development +375565,International Development,International Development +375563,International Development,International Development +375562,International Development,International Development +375561,International Development,International Development +375560,International Development,International Development +375559,International Development,International Development +375558,International Development,International Development +374412,International Development,International Development +374411,International Development,International Development +374410,International Development,International Development +374408,International Development,International Development +374406,International Development,International Development +374405,International Development,International Development +374404,International Development,International Development +374403,International Development,International Development +374402,International Development,International Development +372108,International Development,International Development +372097,International Development,International Development +368828,International Development,International Development +368820,International Development,International Development +368809,International Development,International Development +542391,International Development,International Development +542390,International Development,International Development +542389,International Development,International Development +542388,International Development,International Development +542387,International Development,International Development +542386,International Development,International Development +542385,International Development,International Development +542384,International Development,International Development +542383,International Development,International Development +539086,International Development,International Development +538976,International Development,International Development +537133,International Development,International Development +535926,International Development,International Development +535925,International Development,International Development +535924,International Development,International Development +535308,International Development,International Development +535300,International Development,International Development +535276,International Development,International Development +535273,International Development,International Development +535267,International Development,International Development +523525,International Development,International Development +523524,International Development,International Development +523523,International Development,International Development +523522,International Development,International Development +523521,International Development,International Development +523520,International Development,International Development +523518,International Development,International Development +523516,International Development,International Development +523485,International Development,International Development +523481,International Development,International Development +523475,International Development,International Development +504720,International Development,International Development +504717,International Development,International Development +504716,International Development,International Development +504714,International Development,International Development +504710,International Development,International Development +504707,International Development,International Development +504705,International Development,International Development +504704,International Development,International Development +504702,International Development,International Development +504700,International Development,International Development +504698,International Development,International Development +499760,International Development,International Development +490627,International Development,International Development +489146,International Development,International Development +489145,International Development,International Development +489144,International Development,International Development +487994,International Development,International Development +484964,International Development,International Development +482948,International Development,International Development +481804,International Development,International Development +480853,International Development,International Development +480389,International Development,International Development +473166,International Development,International Development +467657,International Development,International Development +467654,International Development,International Development +467649,International Development,International Development +467639,International Development,International Development +467638,International Development,International Development +467634,International Development,International Development +467631,International Development,International Development +467630,International Development,International Development +467629,International Development,International Development +467605,International Development,International Development +467603,International Development,International Development +467594,International Development,International Development +464326,International Development,International Development +464321,International Development,International Development +464319,International Development,International Development +226069,Climate,Climate +222693,Climate,Climate +210147,Climate,Climate +197392,Climate,Climate +312311,Climate,Climate +308651,Climate,Climate +308649,Climate,Climate +308640,Climate,Climate +308638,Climate,Climate +244425,Climate,Climate +240292,Climate,Climate +202805,Health,Health +202803,Health,Health +202801,Health,Health +202808,Health,Health +202808,Justice and Law Enforcement,Justice and Law Enforcement +202806,Justice and Law Enforcement,Justice and Law Enforcement +202805,Justice and Law Enforcement,Justice and Law Enforcement +202803,Justice and Law Enforcement,Justice and Law Enforcement +211147,Defence,Defence +206087,Defence,Defence +455047,Economic Development,Développement économique +454215,Economic Development,Développement économique +212368,Economic Development,Développement économique +366544,Economic Development,Développement économique +365056,Economic Development,Développement économique +362311,Economic Development,Développement économique +351264,Economic Development,Développement économique +335895,Economic Development,Développement économique +335641,Economic Development,Développement économique +315890,Economic Development,Développement économique +313203,Economic Development,Développement économique +277150,Economic Development,Développement économique +272996,Economic Development,Développement économique +268711,Economic Development,Développement économique +259214,Economic Development,Développement économique +259212,Economic Development,Développement économique +230254,Economic Development,Développement économique +212371,Economic Development,Développement économique +441562,Economic Development,Développement économique +423675,Economic Development,Développement économique +419763,Economic Development,Développement économique +406381,Economic Development,Développement économique +406380,Economic Development,Développement économique +406379,Economic Development,Développement économique +406378,Economic Development,Développement économique +406377,Economic Development,Développement économique +406376,Economic Development,Développement économique +400284,Economic Development,Développement économique +390901,Economic Development,Développement économique +390895,Economic Development,Développement économique +388263,Economic Development,Développement économique +388077,Economic Development,Développement économique +388048,Economic Development,Développement économique +385213,Economic Development,Développement économique +383528,Economic Development,Développement économique +377099,Economic Development,Développement économique +376230,Economic Development,Développement économique +374047,Economic Development,Développement économique +374045,Economic Development,Développement économique +374040,Economic Development,Développement économique +374039,Economic Development,Développement économique +374038,Economic Development,Développement économique +374037,Economic Development,Développement économique +373768,Economic Development,Développement économique +541354,Economic Development,Développement économique +531402,Economic Development,Développement économique +419194,Agriculture,Agriculture +419193,Agriculture,Agriculture +211992,Agriculture,Agriculture +329769,Agriculture,Agriculture +326312,Agriculture,Agriculture +326311,Agriculture,Agriculture +326310,Agriculture,Agriculture +326309,Agriculture,Agriculture +260169,Agriculture,Agriculture +239632,Agriculture,Agriculture +239631,Agriculture,Agriculture +239630,Agriculture,Agriculture +239610,Agriculture,Agriculture +239609,Agriculture,Agriculture +239592,Agriculture,Agriculture +239591,Agriculture,Agriculture +239590,Agriculture,Agriculture +239589,Agriculture,Agriculture +238709,Agriculture,Agriculture +416034,Agriculture,Agriculture +415314,Agriculture,Agriculture +415313,Agriculture,Agriculture +415051,Agriculture,Agriculture +414238,Agriculture,Agriculture +414235,Agriculture,Agriculture +414234,Agriculture,Agriculture +414233,Agriculture,Agriculture +414232,Agriculture,Agriculture +414231,Agriculture,Agriculture +414230,Agriculture,Agriculture +414229,Agriculture,Agriculture +414226,Agriculture,Agriculture +410988,Agriculture,Agriculture +410985,Agriculture,Agriculture +410450,Agriculture,Agriculture +410449,Agriculture,Agriculture +410447,Agriculture,Agriculture +410445,Agriculture,Agriculture +410444,Agriculture,Agriculture +410443,Agriculture,Agriculture +410442,Agriculture,Agriculture +410441,Agriculture,Agriculture +408536,Agriculture,Agriculture +408535,Agriculture,Agriculture +408534,Agriculture,Agriculture +408533,Agriculture,Agriculture +408532,Agriculture,Agriculture +408531,Agriculture,Agriculture +407771,Agriculture,Agriculture +405949,Agriculture,Agriculture +404026,Agriculture,Agriculture +401164,Agriculture,Agriculture +397354,Agriculture,Agriculture +394772,Agriculture,Agriculture +391852,Agriculture,Agriculture +389161,Agriculture,Agriculture +385938,Agriculture,Agriculture +380860,Agriculture,Agriculture +380616,Agriculture,Agriculture +379663,Agriculture,Agriculture +376310,Agriculture,Agriculture +375824,Agriculture,Agriculture +375408,Agriculture,Agriculture +373408,Agriculture,Agriculture +373407,Agriculture,Agriculture +373405,Agriculture,Agriculture +373021,Agriculture,Agriculture +373019,Agriculture,Agriculture +373018,Agriculture,Agriculture +373017,Agriculture,Agriculture +373016,Agriculture,Agriculture +373015,Agriculture,Agriculture +370394,Agriculture,Agriculture +370031,Agriculture,Agriculture +370030,Agriculture,Agriculture +368397,Agriculture,Agriculture +365200,Agriculture,Agriculture +363665,Agriculture,Agriculture +363664,Agriculture,Agriculture +509073,Agriculture,Agriculture +467019,Agriculture,Agriculture +467014,Agriculture,Agriculture +467013,Agriculture,Agriculture +467010,Agriculture,Agriculture +467009,Agriculture,Agriculture +467002,Agriculture,Agriculture +467001,Agriculture,Agriculture +466998,Agriculture,Agriculture +466996,Agriculture,Agriculture +463231,Agriculture,Agriculture +463095,Agriculture,Agriculture +463019,Agriculture,Agriculture +463018,Agriculture,Agriculture +459188,Agriculture,Agriculture +459187,Agriculture,Agriculture +459184,Agriculture,Agriculture +459183,Agriculture,Agriculture +459182,Agriculture,Agriculture +459181,Agriculture,Agriculture +459180,Agriculture,Agriculture +459179,Agriculture,Agriculture +459178,Agriculture,Agriculture +458119,Agriculture,Agriculture +458118,Agriculture,Agriculture +458117,Agriculture,Agriculture +457270,Agriculture,Agriculture +457269,Agriculture,Agriculture +457263,Agriculture,Agriculture +457262,Agriculture,Agriculture +457245,Agriculture,Agriculture +457241,Agriculture,Agriculture +457170,Agriculture,Agriculture +456438,Agriculture,Agriculture +454072,Agriculture,Agriculture +454069,Agriculture,Agriculture +454027,Agriculture,Agriculture +454022,Agriculture,Agriculture +454019,Agriculture,Agriculture +454015,Agriculture,Agriculture +454007,Agriculture,Agriculture +452762,Agriculture,Agriculture +452732,Agriculture,Agriculture +452724,Agriculture,Agriculture +452722,Agriculture,Agriculture +452717,Agriculture,Agriculture +452699,Agriculture,Agriculture +448924,Agriculture,Agriculture +448923,Agriculture,Agriculture +448922,Agriculture,Agriculture +448920,Agriculture,Agriculture +448919,Agriculture,Agriculture +445232,Agriculture,Agriculture +445230,Agriculture,Agriculture +445198,Agriculture,Agriculture +445195,Agriculture,Agriculture +445193,Agriculture,Agriculture +445192,Agriculture,Agriculture +443013,Agriculture,Agriculture +440654,Agriculture,Agriculture +440349,Agriculture,Agriculture +440345,Agriculture,Agriculture +440344,Agriculture,Agriculture +440343,Agriculture,Agriculture +440342,Agriculture,Agriculture +440341,Agriculture,Agriculture +440340,Agriculture,Agriculture +440339,Agriculture,Agriculture +440338,Agriculture,Agriculture +440337,Agriculture,Agriculture +433511,Agriculture,Agriculture +433510,Agriculture,Agriculture +433509,Agriculture,Agriculture +433507,Agriculture,Agriculture +430015,Agriculture,Agriculture +430014,Agriculture,Agriculture +430012,Agriculture,Agriculture +430004,Agriculture,Agriculture +427154,Agriculture,Agriculture +425337,Agriculture,Agriculture +425333,Agriculture,Agriculture +424933,Agriculture,Agriculture +424932,Agriculture,Agriculture +424931,Agriculture,Agriculture +424929,Agriculture,Agriculture +424928,Agriculture,Agriculture +424927,Agriculture,Agriculture +421386,Agriculture,Agriculture +420934,Agriculture,Agriculture +420845,Agriculture,Agriculture +420844,Agriculture,Agriculture +420591,Agriculture,Agriculture +420589,Agriculture,Agriculture +420586,Agriculture,Agriculture +419568,Agriculture,Agriculture +419207,Agriculture,Agriculture +419206,Agriculture,Agriculture +419204,Agriculture,Agriculture +419203,Agriculture,Agriculture +419202,Agriculture,Agriculture +419201,Agriculture,Agriculture +419200,Agriculture,Agriculture +419199,Agriculture,Agriculture +419197,Agriculture,Agriculture +419196,Agriculture,Agriculture +424320,Economic Development,Economic Development +394035,Economic Development,Economic Development +212440,Economic Development,Economic Development +207490,Economic Development,Economic Development +207477,Economic Development,Economic Development +202913,Economic Development,Economic Development +199659,Economic Development,Economic Development +199656,Economic Development,Economic Development +394033,Economic Development,Economic Development +385825,Economic Development,Economic Development +381726,Economic Development,Economic Development +381680,Economic Development,Economic Development +372458,Economic Development,Economic Development +372451,Economic Development,Economic Development +371106,Economic Development,Economic Development +366802,Economic Development,Economic Development +365175,Economic Development,Economic Development +365173,Economic Development,Economic Development +363632,Economic Development,Economic Development +363631,Economic Development,Economic Development +363630,Economic Development,Economic Development +358262,Economic Development,Economic Development +351553,Economic Development,Economic Development +351552,Economic Development,Economic Development +343986,Economic Development,Economic Development +342097,Economic Development,Economic Development +342094,Economic Development,Economic Development +342093,Economic Development,Economic Development +338645,Economic Development,Economic Development +338644,Economic Development,Economic Development +338638,Economic Development,Economic Development +338633,Economic Development,Economic Development +338628,Economic Development,Economic Development +335913,Economic Development,Economic Development +335912,Economic Development,Economic Development +335909,Economic Development,Economic Development +335907,Economic Development,Economic Development +335761,Economic Development,Economic Development +327925,Economic Development,Economic Development +316000,Economic Development,Economic Development +315997,Economic Development,Economic Development +315993,Economic Development,Economic Development +315989,Economic Development,Economic Development +313173,Economic Development,Economic Development +310778,Economic Development,Economic Development +304266,Economic Development,Economic Development +269395,Economic Development,Economic Development +251034,Economic Development,Economic Development +250530,Economic Development,Economic Development +223631,Economic Development,Economic Development +217887,Economic Development,Economic Development +217851,Economic Development,Economic Development +217849,Economic Development,Economic Development +217847,Economic Development,Economic Development +545224,Economic Development,Economic Development +545215,Economic Development,Economic Development +523371,Economic Development,Economic Development +521227,Economic Development,Economic Development +515049,Economic Development,Economic Development +512221,Economic Development,Economic Development +512218,Economic Development,Economic Development +489355,Economic Development,Economic Development +488842,Economic Development,Economic Development +468170,Economic Development,Economic Development +468169,Economic Development,Economic Development +468168,Economic Development,Economic Development +464878,Economic Development,Economic Development +464859,Economic Development,Economic Development +464839,Economic Development,Economic Development +464833,Economic Development,Economic Development +459691,Economic Development,Economic Development +430804,Economic Development,Economic Development +430804,Regional Development,Regional Development +430803,Regional Development,Regional Development +316000,Regional Development,Regional Development +254449,Regional Development,Regional Development +251034,Regional Development,Regional Development +217887,Regional Development,Regional Development +217849,Regional Development,Regional Development +217847,Regional Development,Regional Development +202913,Regional Development,Regional Development +199659,Regional Development,Regional Development +199656,Regional Development,Regional Development +199654,Regional Development,Regional Development +199651,Regional Development,Regional Development +391730,Regional Development,Regional Development +385825,Regional Development,Regional Development +385821,Regional Development,Regional Development +381726,Regional Development,Regional Development +381680,Regional Development,Regional Development +371110,Regional Development,Regional Development +366802,Regional Development,Regional Development +365175,Regional Development,Regional Development +365173,Regional Development,Regional Development +358262,Regional Development,Regional Development +343986,Regional Development,Regional Development +342097,Regional Development,Regional Development +342094,Regional Development,Regional Development +338645,Regional Development,Regional Development +338644,Regional Development,Regional Development +338638,Regional Development,Regional Development +338633,Regional Development,Regional Development +338628,Regional Development,Regional Development +335912,Regional Development,Regional Development +257689,Industry,Industrie +376312,Industry,Industrie +249470,Industry,Industrie +226428,Industry,Industrie +358430,Industry,Industrie +263914,Industry,Industrie +263912,Industry,Industrie +230677,Agriculture,Agriculture +220627,Agriculture,Agriculture +269508,Agriculture,Agriculture +230677,Economic Development,Economic Development +269508,Economic Development,Economic Development +230679,Energy,Energy +230677,Energy,Energy +269562,Energy,Energy +230677,Regional Development,Regional Development +476114,Agriculture,Agriculture +476113,Agriculture,Agriculture +229732,Agriculture,Agriculture +223356,Agriculture,Agriculture +223355,Agriculture,Agriculture +200688,Agriculture,Agriculture +395211,Agriculture,Agriculture +378702,Agriculture,Agriculture +378699,Agriculture,Agriculture +378695,Agriculture,Agriculture +373432,Agriculture,Agriculture +370209,Agriculture,Agriculture +364565,Agriculture,Agriculture +360568,Agriculture,Agriculture +360566,Agriculture,Agriculture +360565,Agriculture,Agriculture +349777,Agriculture,Agriculture +336398,Agriculture,Agriculture +448151,Agriculture,Agriculture +448146,Agriculture,Agriculture +448143,Agriculture,Agriculture +448139,Agriculture,Agriculture +448136,Agriculture,Agriculture +419522,Agriculture,Agriculture +404314,Agriculture,Agriculture +404312,Agriculture,Agriculture +476116,Agriculture,Agriculture +405543,Official Languages,Official Languages +400216,Official Languages,Official Languages +244644,Official Languages,Official Languages +244643,Official Languages,Official Languages +244639,Official Languages,Official Languages +244637,Official Languages,Official Languages +244633,Official Languages,Official Languages +236210,Official Languages,Official Languages +231774,Official Languages,Official Languages +226218,Official Languages,Official Languages +226217,Official Languages,Official Languages +226213,Official Languages,Official Languages +216388,Official Languages,Official Languages +216387,Official Languages,Official Languages +212734,Official Languages,Official Languages +208850,Official Languages,Official Languages +208847,Official Languages,Official Languages +199826,Official Languages,Official Languages +199823,Official Languages,Official Languages +199821,Official Languages,Official Languages +199809,Official Languages,Official Languages +347029,Official Languages,Official Languages +347021,Official Languages,Official Languages +343563,Official Languages,Official Languages +341145,Official Languages,Official Languages +337716,Official Languages,Official Languages +337711,Official Languages,Official Languages +331036,Official Languages,Official Languages +320694,Official Languages,Official Languages +318648,Official Languages,Official Languages +318644,Official Languages,Official Languages +316829,Official Languages,Official Languages +315515,Official Languages,Official Languages +309259,Official Languages,Official Languages +301629,Official Languages,Official Languages +296253,Official Languages,Official Languages +285834,Official Languages,Official Languages +281471,Official Languages,Official Languages +278034,Official Languages,Official Languages +271838,Official Languages,Official Languages +271835,Official Languages,Official Languages +271832,Official Languages,Official Languages +268437,Official Languages,Official Languages +258333,Official Languages,Official Languages +253632,Official Languages,Official Languages +250559,Official Languages,Official Languages +250558,Official Languages,Official Languages +250557,Official Languages,Official Languages +398817,Official Languages,Official Languages +398788,Official Languages,Official Languages +396103,Official Languages,Official Languages +396096,Official Languages,Official Languages +392163,Official Languages,Official Languages +389512,Official Languages,Official Languages +387782,Official Languages,Official Languages +380787,Official Languages,Official Languages +373674,Official Languages,Official Languages +373672,Official Languages,Official Languages +373670,Official Languages,Official Languages +373669,Official Languages,Official Languages +370745,Official Languages,Official Languages +370743,Official Languages,Official Languages +370741,Official Languages,Official Languages +370740,Official Languages,Official Languages +368371,Official Languages,Official Languages +364788,Official Languages,Official Languages +361988,Official Languages,Official Languages +361966,Official Languages,Official Languages +361964,Official Languages,Official Languages +356047,Official Languages,Official Languages +356043,Official Languages,Official Languages +352928,Official Languages,Official Languages +350548,Official Languages,Official Languages +348562,Official Languages,Official Languages +543477,Official Languages,Official Languages +543473,Official Languages,Official Languages +543471,Official Languages,Official Languages +543468,Official Languages,Official Languages +543464,Official Languages,Official Languages +543462,Official Languages,Official Languages +541047,Official Languages,Official Languages +536220,Official Languages,Official Languages +533073,Official Languages,Official Languages +533067,Official Languages,Official Languages +533064,Official Languages,Official Languages +533063,Official Languages,Official Languages +533061,Official Languages,Official Languages +533058,Official Languages,Official Languages +533057,Official Languages,Official Languages +530768,Official Languages,Official Languages +530766,Official Languages,Official Languages +530761,Official Languages,Official Languages +530755,Official Languages,Official Languages +527531,Official Languages,Official Languages +527526,Official Languages,Official Languages +527517,Official Languages,Official Languages +527515,Official Languages,Official Languages +527514,Official Languages,Official Languages +527510,Official Languages,Official Languages +524097,Official Languages,Official Languages +524095,Official Languages,Official Languages +522171,Official Languages,Official Languages +522162,Official Languages,Official Languages +518790,Official Languages,Official Languages +518789,Official Languages,Official Languages +518787,Official Languages,Official Languages +518781,Official Languages,Official Languages +518777,Official Languages,Official Languages +518775,Official Languages,Official Languages +516413,Official Languages,Official Languages +516403,Official Languages,Official Languages +515507,Official Languages,Official Languages +514561,Official Languages,Official Languages +514129,Official Languages,Official Languages +514128,Official Languages,Official Languages +507767,Official Languages,Official Languages +507760,Official Languages,Official Languages +507752,Official Languages,Official Languages +507749,Official Languages,Official Languages +507746,Official Languages,Official Languages +504977,Official Languages,Official Languages +504976,Official Languages,Official Languages +504974,Official Languages,Official Languages +504972,Official Languages,Official Languages +502136,Official Languages,Official Languages +502134,Official Languages,Official Languages +502130,Official Languages,Official Languages +502122,Official Languages,Official Languages +502118,Official Languages,Official Languages +502113,Official Languages,Official Languages +499326,Official Languages,Official Languages +499298,Official Languages,Official Languages +499287,Official Languages,Official Languages +499200,Official Languages,Official Languages +499195,Official Languages,Official Languages +496008,Official Languages,Official Languages +496006,Official Languages,Official Languages +496003,Official Languages,Official Languages +496002,Official Languages,Official Languages +492672,Official Languages,Official Languages +490983,Official Languages,Official Languages +490978,Official Languages,Official Languages +490967,Official Languages,Official Languages +487444,Official Languages,Official Languages +487428,Official Languages,Official Languages +487426,Official Languages,Official Languages +487421,Official Languages,Official Languages +484834,Official Languages,Official Languages +484833,Official Languages,Official Languages +484816,Official Languages,Official Languages +481647,Official Languages,Official Languages +479386,Official Languages,Official Languages +479385,Official Languages,Official Languages +477292,Official Languages,Official Languages +477289,Official Languages,Official Languages +477286,Official Languages,Official Languages +475221,Official Languages,Official Languages +472929,Official Languages,Official Languages +472916,Official Languages,Official Languages +470187,Official Languages,Official Languages +470179,Official Languages,Official Languages +470177,Official Languages,Official Languages +466862,Official Languages,Official Languages +466840,Official Languages,Official Languages +466815,Official Languages,Official Languages +464353,Official Languages,Official Languages +462290,Official Languages,Official Languages +461643,Official Languages,Official Languages +461640,Official Languages,Official Languages +460619,Official Languages,Official Languages +460109,Official Languages,Official Languages +460107,Official Languages,Official Languages +459314,Official Languages,Official Languages +459312,Official Languages,Official Languages +459273,Official Languages,Official Languages +459272,Official Languages,Official Languages +454588,Official Languages,Official Languages +454585,Official Languages,Official Languages +454582,Official Languages,Official Languages +454514,Official Languages,Official Languages +451889,Official Languages,Official Languages +451871,Official Languages,Official Languages +446918,Official Languages,Official Languages +446916,Official Languages,Official Languages +445167,Official Languages,Official Languages +443241,Official Languages,Official Languages +441874,Official Languages,Official Languages +441830,Official Languages,Official Languages +438618,Official Languages,Official Languages +438612,Official Languages,Official Languages +438581,Official Languages,Official Languages +435121,Official Languages,Official Languages +435118,Official Languages,Official Languages +433112,Official Languages,Official Languages +429846,Official Languages,Official Languages +429845,Official Languages,Official Languages +428578,Official Languages,Official Languages +424136,Official Languages,Official Languages +424110,Official Languages,Official Languages +424103,Official Languages,Official Languages +422199,Official Languages,Official Languages +422197,Official Languages,Official Languages +422195,Official Languages,Official Languages +419490,Official Languages,Official Languages +418184,Official Languages,Official Languages +416124,Official Languages,Official Languages +416121,Official Languages,Official Languages +416107,Official Languages,Official Languages +412462,Official Languages,Official Languages +409899,Official Languages,Official Languages +409543,Official Languages,Official Languages +407491,Official Languages,Official Languages +407489,Official Languages,Official Languages +405552,Official Languages,Official Languages +425536,Official Languages,Official Languages +424139,Official Languages,Official Languages +258331,Official Languages,Official Languages +258329,Official Languages,Official Languages +244646,Official Languages,Official Languages +244645,Official Languages,Official Languages +244634,Official Languages,Official Languages +236211,Official Languages,Official Languages +231770,Official Languages,Official Languages +229534,Official Languages,Official Languages +229533,Official Languages,Official Languages +226211,Official Languages,Official Languages +216368,Official Languages,Official Languages +212733,Official Languages,Official Languages +212732,Official Languages,Official Languages +212730,Official Languages,Official Languages +212727,Official Languages,Official Languages +208851,Official Languages,Official Languages +208848,Official Languages,Official Languages +199839,Official Languages,Official Languages +199837,Official Languages,Official Languages +199830,Official Languages,Official Languages +199829,Official Languages,Official Languages +199811,Official Languages,Official Languages +370744,Official Languages,Official Languages +368370,Official Languages,Official Languages +368368,Official Languages,Official Languages +368367,Official Languages,Official Languages +368365,Official Languages,Official Languages +360882,Official Languages,Official Languages +359458,Official Languages,Official Languages +356046,Official Languages,Official Languages +353040,Official Languages,Official Languages +352935,Official Languages,Official Languages +352934,Official Languages,Official Languages +352933,Official Languages,Official Languages +352931,Official Languages,Official Languages +352929,Official Languages,Official Languages +350551,Official Languages,Official Languages +350545,Official Languages,Official Languages +348561,Official Languages,Official Languages +348559,Official Languages,Official Languages +348556,Official Languages,Official Languages +341154,Official Languages,Official Languages +341150,Official Languages,Official Languages +341148,Official Languages,Official Languages +337715,Official Languages,Official Languages +331035,Official Languages,Official Languages +329919,Official Languages,Official Languages +324506,Official Languages,Official Languages +320693,Official Languages,Official Languages +318711,Official Languages,Official Languages +318646,Official Languages,Official Languages +318634,Official Languages,Official Languages +318628,Official Languages,Official Languages +315511,Official Languages,Official Languages +301649,Official Languages,Official Languages +278026,Official Languages,Official Languages +278024,Official Languages,Official Languages +271834,Official Languages,Official Languages +271831,Official Languages,Official Languages +271829,Official Languages,Official Languages +268435,Official Languages,Official Languages +262533,Official Languages,Official Languages +258332,Official Languages,Official Languages +424126,Official Languages,Official Languages +424121,Official Languages,Official Languages +424117,Official Languages,Official Languages +422207,Official Languages,Official Languages +422203,Official Languages,Official Languages +422194,Official Languages,Official Languages +422187,Official Languages,Official Languages +416125,Official Languages,Official Languages +416113,Official Languages,Official Languages +416111,Official Languages,Official Languages +416109,Official Languages,Official Languages +416100,Official Languages,Official Languages +416098,Official Languages,Official Languages +416091,Official Languages,Official Languages +412497,Official Languages,Official Languages +412495,Official Languages,Official Languages +412494,Official Languages,Official Languages +412493,Official Languages,Official Languages +409909,Official Languages,Official Languages +409894,Official Languages,Official Languages +409889,Official Languages,Official Languages +409608,Official Languages,Official Languages +407481,Official Languages,Official Languages +406703,Official Languages,Official Languages +405553,Official Languages,Official Languages +405546,Official Languages,Official Languages +405545,Official Languages,Official Languages +404090,Official Languages,Official Languages +404086,Official Languages,Official Languages +404081,Official Languages,Official Languages +400219,Official Languages,Official Languages +398792,Official Languages,Official Languages +392162,Official Languages,Official Languages +387780,Official Languages,Official Languages +384841,Official Languages,Official Languages +383299,Official Languages,Official Languages +383296,Official Languages,Official Languages +380785,Official Languages,Official Languages +379789,Official Languages,Official Languages +379688,Official Languages,Official Languages +379669,Official Languages,Official Languages +379637,Official Languages,Official Languages +379635,Official Languages,Official Languages +376023,Official Languages,Official Languages +376022,Official Languages,Official Languages +376019,Official Languages,Official Languages +373673,Official Languages,Official Languages +543823,Official Languages,Official Languages +543810,Official Languages,Official Languages +543481,Official Languages,Official Languages +543475,Official Languages,Official Languages +543469,Official Languages,Official Languages +536217,Official Languages,Official Languages +533066,Official Languages,Official Languages +530767,Official Languages,Official Languages +530764,Official Languages,Official Languages +527528,Official Languages,Official Languages +527525,Official Languages,Official Languages +527523,Official Languages,Official Languages +527522,Official Languages,Official Languages +527513,Official Languages,Official Languages +524096,Official Languages,Official Languages +524094,Official Languages,Official Languages +524093,Official Languages,Official Languages +524088,Official Languages,Official Languages +522695,Official Languages,Official Languages +522167,Official Languages,Official Languages +522157,Official Languages,Official Languages +518788,Official Languages,Official Languages +518779,Official Languages,Official Languages +518773,Official Languages,Official Languages +517196,Official Languages,Official Languages +516410,Official Languages,Official Languages +516409,Official Languages,Official Languages +516404,Official Languages,Official Languages +515532,Official Languages,Official Languages +515531,Official Languages,Official Languages +513238,Official Languages,Official Languages +513236,Official Languages,Official Languages +510955,Official Languages,Official Languages +510946,Official Languages,Official Languages +510941,Official Languages,Official Languages +507758,Official Languages,Official Languages +507750,Official Languages,Official Languages +504980,Official Languages,Official Languages +504979,Official Languages,Official Languages +504978,Official Languages,Official Languages +502126,Official Languages,Official Languages +502120,Official Languages,Official Languages +499204,Official Languages,Official Languages +495999,Official Languages,Official Languages +492680,Official Languages,Official Languages +492677,Official Languages,Official Languages +492674,Official Languages,Official Languages +490975,Official Languages,Official Languages +490969,Official Languages,Official Languages +487460,Official Languages,Official Languages +487438,Official Languages,Official Languages +487418,Official Languages,Official Languages +481646,Official Languages,Official Languages +481644,Official Languages,Official Languages +481643,Official Languages,Official Languages +477297,Official Languages,Official Languages +472933,Official Languages,Official Languages +470191,Official Languages,Official Languages +467038,Official Languages,Official Languages +466858,Official Languages,Official Languages +466849,Official Languages,Official Languages +466829,Official Languages,Official Languages +466820,Official Languages,Official Languages +464351,Official Languages,Official Languages +462310,Official Languages,Official Languages +462309,Official Languages,Official Languages +462300,Official Languages,Official Languages +460620,Official Languages,Official Languages +460110,Official Languages,Official Languages +458385,Official Languages,Official Languages +457413,Official Languages,Official Languages +454591,Official Languages,Official Languages +454554,Official Languages,Official Languages +454553,Official Languages,Official Languages +454552,Official Languages,Official Languages +454551,Official Languages,Official Languages +454519,Official Languages,Official Languages +454481,Official Languages,Official Languages +451862,Official Languages,Official Languages +451789,Official Languages,Official Languages +449112,Official Languages,Official Languages +446924,Official Languages,Official Languages +445174,Official Languages,Official Languages +443239,Official Languages,Official Languages +442019,Official Languages,Official Languages +441861,Official Languages,Official Languages +438604,Official Languages,Official Languages +435119,Official Languages,Official Languages +433110,Official Languages,Official Languages +429851,Official Languages,Official Languages +428575,Official Languages,Official Languages +428573,Official Languages,Official Languages +428544,Official Languages,Official Languages +425538,Official Languages,Official Languages +406700,Official Languages,Official Languages +406696,Official Languages,Official Languages +244641,Official Languages,Official Languages +244640,Official Languages,Official Languages +244630,Official Languages,Official Languages +240324,Official Languages,Official Languages +229540,Official Languages,Official Languages +229539,Official Languages,Official Languages +229535,Official Languages,Official Languages +226214,Official Languages,Official Languages +216390,Official Languages,Official Languages +216367,Official Languages,Official Languages +208852,Official Languages,Official Languages +199833,Official Languages,Official Languages +199813,Official Languages,Official Languages +406695,Official Languages,Official Languages +405550,Official Languages,Official Languages +405544,Official Languages,Official Languages +404088,Official Languages,Official Languages +404087,Official Languages,Official Languages +396109,Official Languages,Official Languages +396097,Official Languages,Official Languages +394377,Official Languages,Official Languages +389509,Official Languages,Official Languages +384842,Official Languages,Official Languages +379712,Official Languages,Official Languages +379676,Official Languages,Official Languages +379655,Official Languages,Official Languages +376027,Official Languages,Official Languages +373696,Official Languages,Official Languages +373677,Official Languages,Official Languages +365503,Official Languages,Official Languages +365502,Official Languages,Official Languages +364789,Official Languages,Official Languages +361969,Official Languages,Official Languages +357448,Official Languages,Official Languages +352930,Official Languages,Official Languages +350558,Official Languages,Official Languages +350554,Official Languages,Official Languages +348555,Official Languages,Official Languages +347019,Official Languages,Official Languages +343562,Official Languages,Official Languages +341146,Official Languages,Official Languages +335313,Official Languages,Official Languages +335311,Official Languages,Official Languages +331042,Official Languages,Official Languages +331041,Official Languages,Official Languages +329917,Official Languages,Official Languages +329915,Official Languages,Official Languages +326431,Official Languages,Official Languages +324509,Official Languages,Official Languages +324508,Official Languages,Official Languages +324498,Official Languages,Official Languages +320692,Official Languages,Official Languages +318639,Official Languages,Official Languages +318635,Official Languages,Official Languages +318630,Official Languages,Official Languages +315514,Official Languages,Official Languages +315512,Official Languages,Official Languages +309257,Official Languages,Official Languages +308929,Official Languages,Official Languages +301650,Official Languages,Official Languages +296254,Official Languages,Official Languages +289470,Official Languages,Official Languages +285832,Official Languages,Official Languages +278028,Official Languages,Official Languages +268434,Official Languages,Official Languages +258330,Official Languages,Official Languages +543480,Official Languages,Official Languages +543461,Official Languages,Official Languages +541048,Official Languages,Official Languages +541046,Official Languages,Official Languages +541045,Official Languages,Official Languages +536218,Official Languages,Official Languages +533074,Official Languages,Official Languages +533072,Official Languages,Official Languages +533071,Official Languages,Official Languages +533070,Official Languages,Official Languages +533068,Official Languages,Official Languages +530769,Official Languages,Official Languages +530765,Official Languages,Official Languages +530760,Official Languages,Official Languages +527527,Official Languages,Official Languages +527524,Official Languages,Official Languages +527521,Official Languages,Official Languages +527516,Official Languages,Official Languages +527511,Official Languages,Official Languages +527509,Official Languages,Official Languages +527505,Official Languages,Official Languages +524092,Official Languages,Official Languages +524089,Official Languages,Official Languages +522697,Official Languages,Official Languages +522694,Official Languages,Official Languages +522174,Official Languages,Official Languages +522160,Official Languages,Official Languages +518786,Official Languages,Official Languages +518785,Official Languages,Official Languages +518782,Official Languages,Official Languages +518774,Official Languages,Official Languages +516414,Official Languages,Official Languages +516412,Official Languages,Official Languages +516405,Official Languages,Official Languages +516402,Official Languages,Official Languages +516401,Official Languages,Official Languages +515502,Official Languages,Official Languages +515497,Official Languages,Official Languages +510948,Official Languages,Official Languages +507762,Official Languages,Official Languages +507757,Official Languages,Official Languages +507756,Official Languages,Official Languages +507754,Official Languages,Official Languages +502112,Official Languages,Official Languages +499299,Official Languages,Official Languages +499292,Official Languages,Official Languages +496001,Official Languages,Official Languages +495994,Official Languages,Official Languages +492682,Official Languages,Official Languages +492678,Official Languages,Official Languages +490980,Official Languages,Official Languages +490973,Official Languages,Official Languages +490971,Official Languages,Official Languages +487430,Official Languages,Official Languages +487422,Official Languages,Official Languages +484827,Official Languages,Official Languages +484823,Official Languages,Official Languages +484808,Official Languages,Official Languages +481641,Official Languages,Official Languages +481640,Official Languages,Official Languages +479381,Official Languages,Official Languages +477300,Official Languages,Official Languages +472921,Official Languages,Official Languages +470185,Official Languages,Official Languages +470180,Official Languages,Official Languages +466912,Official Languages,Official Languages +466856,Official Languages,Official Languages +466847,Official Languages,Official Languages +466835,Official Languages,Official Languages +466818,Official Languages,Official Languages +466817,Official Languages,Official Languages +466816,Official Languages,Official Languages +464365,Official Languages,Official Languages +464364,Official Languages,Official Languages +462295,Official Languages,Official Languages +460105,Official Languages,Official Languages +460097,Official Languages,Official Languages +457418,Official Languages,Official Languages +457411,Official Languages,Official Languages +457410,Official Languages,Official Languages +454544,Official Languages,Official Languages +454543,Official Languages,Official Languages +451811,Official Languages,Official Languages +451802,Official Languages,Official Languages +451791,Official Languages,Official Languages +449118,Official Languages,Official Languages +446937,Official Languages,Official Languages +446935,Official Languages,Official Languages +446932,Official Languages,Official Languages +446917,Official Languages,Official Languages +445162,Official Languages,Official Languages +445160,Official Languages,Official Languages +443244,Official Languages,Official Languages +443243,Official Languages,Official Languages +443242,Official Languages,Official Languages +441990,Official Languages,Official Languages +441868,Official Languages,Official Languages +441825,Official Languages,Official Languages +441823,Official Languages,Official Languages +438616,Official Languages,Official Languages +438608,Official Languages,Official Languages +438308,Official Languages,Official Languages +438303,Official Languages,Official Languages +435111,Official Languages,Official Languages +435108,Official Languages,Official Languages +433111,Official Languages,Official Languages +424133,Official Languages,Official Languages +424128,Official Languages,Official Languages +424092,Official Languages,Official Languages +422214,Official Languages,Official Languages +422204,Official Languages,Official Languages +418187,Official Languages,Official Languages +418171,Official Languages,Official Languages +416127,Official Languages,Official Languages +416110,Official Languages,Official Languages +409912,Official Languages,Official Languages +409898,Official Languages,Official Languages +409892,Official Languages,Official Languages +409541,Official Languages,Official Languages +409522,Official Languages,Official Languages +409520,Official Languages,Official Languages +407489,Official Languages,Official Languages +407484,Official Languages,Official Languages +407483,Official Languages,Official Languages +407482,Official Languages,Official Languages +444194,Budget,Budget +443455,Budget,Budget +220788,Budget,Budget +220787,Budget,Budget +217944,Budget,Budget +202700,Budget,Budget +202697,Budget,Budget +199817,Budget,Budget +350863,Budget,Budget +350862,Budget,Budget +349118,Budget,Budget +347221,Budget,Budget +326649,Budget,Budget +315129,Budget,Budget +290851,Budget,Budget +277070,Budget,Budget +277069,Budget,Budget +270970,Budget,Budget +270969,Budget,Budget +259252,Budget,Budget +251929,Budget,Budget +250490,Budget,Budget +238929,Budget,Budget +443454,Budget,Budget +443453,Budget,Budget +441811,Budget,Budget +441471,Budget,Budget +441462,Budget,Budget +441458,Budget,Budget +441454,Budget,Budget +441452,Budget,Budget +441450,Budget,Budget +441448,Budget,Budget +441447,Budget,Budget +441443,Budget,Budget +441441,Budget,Budget +441435,Budget,Budget +441430,Budget,Budget +441425,Budget,Budget +441423,Budget,Budget +438817,Budget,Budget +437877,Budget,Budget +437874,Budget,Budget +437871,Budget,Budget +437869,Budget,Budget +437868,Budget,Budget +437866,Budget,Budget +437861,Budget,Budget +433045,Budget,Budget +433041,Budget,Budget +425842,Budget,Budget +425840,Budget,Budget +421704,Budget,Budget +421697,Budget,Budget +415259,Budget,Budget +415257,Budget,Budget +415256,Budget,Budget +401726,Budget,Budget +401719,Budget,Budget +395083,Budget,Budget +394143,Budget,Budget +393071,Budget,Budget +390074,Budget,Budget +389642,Budget,Budget +389105,Budget,Budget +389104,Budget,Budget +389103,Budget,Budget +389102,Budget,Budget +387569,Budget,Budget +384966,Budget,Budget +384963,Budget,Budget +384961,Budget,Budget +383596,Budget,Budget +383595,Budget,Budget +383594,Budget,Budget +383592,Budget,Budget +381916,Budget,Budget +381122,Budget,Budget +379041,Budget,Budget +377546,Budget,Budget +373153,Budget,Budget +373152,Budget,Budget +373151,Budget,Budget +373144,Budget,Budget +373141,Budget,Budget +373133,Budget,Budget +369387,Budget,Budget +369386,Budget,Budget +369385,Budget,Budget +365642,Budget,Budget +357842,Budget,Budget +462776,Budget,Budget +461826,Budget,Budget +451224,Budget,Budget +444855,Budget,Budget +487462,Official Languages,Official Languages +487440,Official Languages,Official Languages +244642,Official Languages,Official Languages +240355,Official Languages,Official Languages +240326,Official Languages,Official Languages +240323,Official Languages,Official Languages +240322,Official Languages,Official Languages +232589,Official Languages,Official Languages +231775,Official Languages,Official Languages +231773,Official Languages,Official Languages +231771,Official Languages,Official Languages +231769,Official Languages,Official Languages +229538,Official Languages,Official Languages +229537,Official Languages,Official Languages +226210,Official Languages,Official Languages +223008,Official Languages,Official Languages +223007,Official Languages,Official Languages +216389,Official Languages,Official Languages +212735,Official Languages,Official Languages +212731,Official Languages,Official Languages +212729,Official Languages,Official Languages +212728,Official Languages,Official Languages +199818,Official Languages,Official Languages +376035,Official Languages,Official Languages +376026,Official Languages,Official Languages +376025,Official Languages,Official Languages +373675,Official Languages,Official Languages +361971,Official Languages,Official Languages +361967,Official Languages,Official Languages +361965,Official Languages,Official Languages +359461,Official Languages,Official Languages +357447,Official Languages,Official Languages +356050,Official Languages,Official Languages +356049,Official Languages,Official Languages +352936,Official Languages,Official Languages +350568,Official Languages,Official Languages +350546,Official Languages,Official Languages +341153,Official Languages,Official Languages +341151,Official Languages,Official Languages +341149,Official Languages,Official Languages +341142,Official Languages,Official Languages +335307,Official Languages,Official Languages +335305,Official Languages,Official Languages +331037,Official Languages,Official Languages +329912,Official Languages,Official Languages +324500,Official Languages,Official Languages +320691,Official Languages,Official Languages +318632,Official Languages,Official Languages +318629,Official Languages,Official Languages +318627,Official Languages,Official Languages +318626,Official Languages,Official Languages +309311,Official Languages,Official Languages +309310,Official Languages,Official Languages +309255,Official Languages,Official Languages +309253,Official Languages,Official Languages +309251,Official Languages,Official Languages +301669,Official Languages,Official Languages +301651,Official Languages,Official Languages +296261,Official Languages,Official Languages +296251,Official Languages,Official Languages +296250,Official Languages,Official Languages +296249,Official Languages,Official Languages +289471,Official Languages,Official Languages +278035,Official Languages,Official Languages +278030,Official Languages,Official Languages +278025,Official Languages,Official Languages +271837,Official Languages,Official Languages +271836,Official Languages,Official Languages +271833,Official Languages,Official Languages +271830,Official Languages,Official Languages +268436,Official Languages,Official Languages +262534,Official Languages,Official Languages +262531,Official Languages,Official Languages +253630,Official Languages,Official Languages +487437,Official Languages,Official Languages +484831,Official Languages,Official Languages +484830,Official Languages,Official Languages +484820,Official Languages,Official Languages +481642,Official Languages,Official Languages +481638,Official Languages,Official Languages +479384,Official Languages,Official Languages +479383,Official Languages,Official Languages +479379,Official Languages,Official Languages +477301,Official Languages,Official Languages +475220,Official Languages,Official Languages +475219,Official Languages,Official Languages +472925,Official Languages,Official Languages +466854,Official Languages,Official Languages +466827,Official Languages,Official Languages +466825,Official Languages,Official Languages +466823,Official Languages,Official Languages +466819,Official Languages,Official Languages +462311,Official Languages,Official Languages +462308,Official Languages,Official Languages +462305,Official Languages,Official Languages +462303,Official Languages,Official Languages +462285,Official Languages,Official Languages +460621,Official Languages,Official Languages +460106,Official Languages,Official Languages +458382,Official Languages,Official Languages +457436,Official Languages,Official Languages +457432,Official Languages,Official Languages +457431,Official Languages,Official Languages +457416,Official Languages,Official Languages +454586,Official Languages,Official Languages +451797,Official Languages,Official Languages +451782,Official Languages,Official Languages +446949,Official Languages,Official Languages +446947,Official Languages,Official Languages +446941,Official Languages,Official Languages +446939,Official Languages,Official Languages +445163,Official Languages,Official Languages +438609,Official Languages,Official Languages +438605,Official Languages,Official Languages +438601,Official Languages,Official Languages +438600,Official Languages,Official Languages +438591,Official Languages,Official Languages +438587,Official Languages,Official Languages +435123,Official Languages,Official Languages +435104,Official Languages,Official Languages +433104,Official Languages,Official Languages +431690,Official Languages,Official Languages +429844,Official Languages,Official Languages +428715,Official Languages,Official Languages +428577,Official Languages,Official Languages +428523,Official Languages,Official Languages +424138,Official Languages,Official Languages +424131,Official Languages,Official Languages +424028,Official Languages,Official Languages +422215,Official Languages,Official Languages +418189,Official Languages,Official Languages +418188,Official Languages,Official Languages +418184,Official Languages,Official Languages +418178,Official Languages,Official Languages +418174,Official Languages,Official Languages +416133,Official Languages,Official Languages +416109,Official Languages,Official Languages +412496,Official Languages,Official Languages +412485,Official Languages,Official Languages +412480,Official Languages,Official Languages +409910,Official Languages,Official Languages +409902,Official Languages,Official Languages +409895,Official Languages,Official Languages +409893,Official Languages,Official Languages +409607,Official Languages,Official Languages +409534,Official Languages,Official Languages +409530,Official Languages,Official Languages +407488,Official Languages,Official Languages +407487,Official Languages,Official Languages +407486,Official Languages,Official Languages +407485,Official Languages,Official Languages +406707,Official Languages,Official Languages +405554,Official Languages,Official Languages +404082,Official Languages,Official Languages +398791,Official Languages,Official Languages +396115,Official Languages,Official Languages +396112,Official Languages,Official Languages +396100,Official Languages,Official Languages +396099,Official Languages,Official Languages +389506,Official Languages,Official Languages +387781,Official Languages,Official Languages +382044,Official Languages,Official Languages +379692,Official Languages,Official Languages +379679,Official Languages,Official Languages +379641,Official Languages,Official Languages +379639,Official Languages,Official Languages +543465,Official Languages,Official Languages +543458,Official Languages,Official Languages +543456,Official Languages,Official Languages +543454,Official Languages,Official Languages +541052,Official Languages,Official Languages +541051,Official Languages,Official Languages +541049,Official Languages,Official Languages +539416,Official Languages,Official Languages +536216,Official Languages,Official Languages +533069,Official Languages,Official Languages +533065,Official Languages,Official Languages +533060,Official Languages,Official Languages +533056,Official Languages,Official Languages +533055,Official Languages,Official Languages +530763,Official Languages,Official Languages +530758,Official Languages,Official Languages +530757,Official Languages,Official Languages +530752,Official Languages,Official Languages +527533,Official Languages,Official Languages +527532,Official Languages,Official Languages +527530,Official Languages,Official Languages +527529,Official Languages,Official Languages +527507,Official Languages,Official Languages +524099,Official Languages,Official Languages +524098,Official Languages,Official Languages +524091,Official Languages,Official Languages +524090,Official Languages,Official Languages +522698,Official Languages,Official Languages +522170,Official Languages,Official Languages +522165,Official Languages,Official Languages +518780,Official Languages,Official Languages +518778,Official Languages,Official Languages +518776,Official Languages,Official Languages +517198,Official Languages,Official Languages +516415,Official Languages,Official Languages +516411,Official Languages,Official Languages +515528,Official Languages,Official Languages +514562,Official Languages,Official Languages +513239,Official Languages,Official Languages +513237,Official Languages,Official Languages +513235,Official Languages,Official Languages +510952,Official Languages,Official Languages +510951,Official Languages,Official Languages +510944,Official Languages,Official Languages +510943,Official Languages,Official Languages +510938,Official Languages,Official Languages +507763,Official Languages,Official Languages +507759,Official Languages,Official Languages +507755,Official Languages,Official Languages +507753,Official Languages,Official Languages +504981,Official Languages,Official Languages +502110,Official Languages,Official Languages +499289,Official Languages,Official Languages +495997,Official Languages,Official Languages +495992,Official Languages,Official Languages +492676,Official Languages,Official Languages +396887,Defence,Defence +199891,Defence,Defence +254036,Health,Health +254034,Health,Health +251452,Health,Health +251450,Health,Health +333696,Health,Health +333695,Health,Health +290654,Health,Health +277129,Health,Health +277054,Health,Health +277053,Health,Health +277051,Health,Health +277050,Health,Health +276695,Health,Health +276693,Health,Health +324135,Health,Health +393631,Economic Development,Développement économique +387423,Economic Development,Développement économique +359872,Economic Development,Développement économique +356321,Economic Development,Développement économique +351763,Economic Development,Développement économique +335651,Economic Development,Développement économique +212556,Economic Development,Développement économique +212555,Economic Development,Développement économique +395745,Economic Development,Développement économique +393914,Economic Development,Développement économique +393907,Economic Development,Développement économique +277038,Health,Health +277036,Health,Health +324358,Health,Health +324143,Health,Health +254032,Health,Health +254031,Health,Health +333700,Health,Health +333699,Health,Health +324175,Health,Health +324174,Health,Health +324172,Health,Health +324075,Health,Health +323989,Health,Health +276899,Health,Health +200039,Intellectual Property,Intellectual Property +442477,Intellectual Property,Intellectual Property +241281,Intellectual Property,Intellectual Property +230702,Intellectual Property,Intellectual Property +402330,Health,Health +388611,Health,Health +324433,Health,Health +324162,Health,Health +324074,Health,Health +323968,Health,Health +276674,Health,Health +276672,Health,Health +433485,Health,Health +433484,Health,Health +428558,Health,Health +428556,Health,Health +421078,Health,Health +407581,Health,Health +407581,Taxation and Finance,Taxation and Finance +407430,Taxation and Finance,Taxation and Finance +431672,Sports,Sports +409865,Sports,Sports +249818,Sports,Sports +350960,Sports,Sports +315906,Sports,Sports +200320,International Trade,International Trade +200339,International Trade,International Trade +200466,Fisheries,Fisheries +200470,Transportation,Transportation +200478,Fisheries,Fisheries +439593,Economic Development,Economic Development +439590,Economic Development,Economic Development +250728,Economic Development,Economic Development +250726,Economic Development,Economic Development +250724,Economic Development,Economic Development +250722,Economic Development,Economic Development +250721,Economic Development,Economic Development +250720,Economic Development,Economic Development +250719,Economic Development,Economic Development +250717,Economic Development,Economic Development +250715,Economic Development,Economic Development +250714,Economic Development,Economic Development +250713,Economic Development,Economic Development +250711,Economic Development,Economic Development +250710,Economic Development,Economic Development +250694,Economic Development,Economic Development +250691,Economic Development,Economic Development +250689,Economic Development,Economic Development +250686,Economic Development,Economic Development +245309,Economic Development,Economic Development +241075,Economic Development,Economic Development +241073,Economic Development,Economic Development +241072,Economic Development,Economic Development +241070,Economic Development,Economic Development +241066,Economic Development,Economic Development +241065,Economic Development,Economic Development +241062,Economic Development,Economic Development +241060,Economic Development,Economic Development +241056,Economic Development,Economic Development +233329,Economic Development,Economic Development +230431,Economic Development,Economic Development +230428,Economic Development,Economic Development +230424,Economic Development,Economic Development +230404,Economic Development,Economic Development +230401,Economic Development,Economic Development +227258,Economic Development,Economic Development +227237,Economic Development,Economic Development +223275,Economic Development,Economic Development +223273,Economic Development,Economic Development +223261,Economic Development,Economic Development +218047,Economic Development,Economic Development +212105,Economic Development,Economic Development +212103,Economic Development,Economic Development +212102,Economic Development,Economic Development +211713,Economic Development,Economic Development +211712,Economic Development,Economic Development +211709,Economic Development,Economic Development +207533,Economic Development,Economic Development +207529,Economic Development,Economic Development +207528,Economic Development,Economic Development +207527,Economic Development,Economic Development +207516,Economic Development,Economic Development +207515,Economic Development,Economic Development +207510,Economic Development,Economic Development +207506,Economic Development,Economic Development +200532,Economic Development,Economic Development +439585,Economic Development,Economic Development +439580,Economic Development,Economic Development +439576,Economic Development,Economic Development +439565,Economic Development,Economic Development +432630,Economic Development,Economic Development +432628,Economic Development,Economic Development +432627,Economic Development,Economic Development +432624,Economic Development,Economic Development +430898,Economic Development,Economic Development +417148,Economic Development,Economic Development +417147,Economic Development,Economic Development +417146,Economic Development,Economic Development +415478,Economic Development,Economic Development +409074,Economic Development,Economic Development +407532,Economic Development,Economic Development +400475,Economic Development,Economic Development +396861,Economic Development,Economic Development +396860,Economic Development,Economic Development +394659,Economic Development,Economic Development +394658,Economic Development,Economic Development +394657,Economic Development,Economic Development +392282,Economic Development,Economic Development +392281,Economic Development,Economic Development +390072,Economic Development,Economic Development +384818,Economic Development,Economic Development +384812,Economic Development,Economic Development +383260,Economic Development,Economic Development +382305,Economic Development,Economic Development +380377,Economic Development,Economic Development +380376,Economic Development,Economic Development +379582,Economic Development,Economic Development +376696,Economic Development,Economic Development +376695,Economic Development,Economic Development +376693,Economic Development,Economic Development +376689,Economic Development,Economic Development +374100,Economic Development,Economic Development +373980,Economic Development,Economic Development +373979,Economic Development,Economic Development +373978,Economic Development,Economic Development +373977,Economic Development,Economic Development +373976,Economic Development,Economic Development +373975,Economic Development,Economic Development +373974,Economic Development,Economic Development +373970,Economic Development,Economic Development +373969,Economic Development,Economic Development +373965,Economic Development,Economic Development +373959,Economic Development,Economic Development +373954,Economic Development,Economic Development +373952,Economic Development,Economic Development +373950,Economic Development,Economic Development +373949,Economic Development,Economic Development +373948,Economic Development,Economic Development +373947,Economic Development,Economic Development +373946,Economic Development,Economic Development +373942,Economic Development,Economic Development +373912,Economic Development,Economic Development +373898,Economic Development,Economic Development +373877,Economic Development,Economic Development +371746,Economic Development,Economic Development +371745,Economic Development,Economic Development +371742,Economic Development,Economic Development +371738,Economic Development,Economic Development +371735,Economic Development,Economic Development +371734,Economic Development,Economic Development +371730,Economic Development,Economic Development +368778,Economic Development,Economic Development +368777,Economic Development,Economic Development +364865,Economic Development,Economic Development +359547,Economic Development,Economic Development +355997,Economic Development,Economic Development +355992,Economic Development,Economic Development +350948,Economic Development,Economic Development +350947,Economic Development,Economic Development +350944,Economic Development,Economic Development +344641,Economic Development,Economic Development +344640,Economic Development,Economic Development +344639,Economic Development,Economic Development +344638,Economic Development,Economic Development +343537,Economic Development,Economic Development +342083,Economic Development,Economic Development +342081,Economic Development,Economic Development +342080,Economic Development,Economic Development +342079,Economic Development,Economic Development +342077,Economic Development,Economic Development +342019,Economic Development,Economic Development +342017,Economic Development,Economic Development +342015,Economic Development,Economic Development +342014,Economic Development,Economic Development +342012,Economic Development,Economic Development +342010,Economic Development,Economic Development +342002,Economic Development,Economic Development +342001,Economic Development,Economic Development +336241,Economic Development,Economic Development +336240,Economic Development,Economic Development +336239,Economic Development,Economic Development +336238,Economic Development,Economic Development +336237,Economic Development,Economic Development +336236,Economic Development,Economic Development +336235,Economic Development,Economic Development +333575,Economic Development,Economic Development +333574,Economic Development,Economic Development +333573,Economic Development,Economic Development +329893,Economic Development,Economic Development +329892,Economic Development,Economic Development +329891,Economic Development,Economic Development +329890,Economic Development,Economic Development +329887,Economic Development,Economic Development +319120,Economic Development,Economic Development +316045,Economic Development,Economic Development +316043,Economic Development,Economic Development +316040,Economic Development,Economic Development +316035,Economic Development,Economic Development +310265,Economic Development,Economic Development +310261,Economic Development,Economic Development +310260,Economic Development,Economic Development +310259,Economic Development,Economic Development +310257,Economic Development,Economic Development +310256,Economic Development,Economic Development +310255,Economic Development,Economic Development +310254,Economic Development,Economic Development +310253,Economic Development,Economic Development +310252,Economic Development,Economic Development +310246,Economic Development,Economic Development +310243,Economic Development,Economic Development +310242,Economic Development,Economic Development +310238,Economic Development,Economic Development +310225,Economic Development,Economic Development +310223,Economic Development,Economic Development +310220,Economic Development,Economic Development +302295,Economic Development,Economic Development +302294,Economic Development,Economic Development +302293,Economic Development,Economic Development +302292,Economic Development,Economic Development +302291,Economic Development,Economic Development +302290,Economic Development,Economic Development +297116,Economic Development,Economic Development +297115,Economic Development,Economic Development +297114,Economic Development,Economic Development +297113,Economic Development,Economic Development +297112,Economic Development,Economic Development +297111,Economic Development,Economic Development +297110,Economic Development,Economic Development +290816,Economic Development,Economic Development +290814,Economic Development,Economic Development +290813,Economic Development,Economic Development +290811,Economic Development,Economic Development +290810,Economic Development,Economic Development +290809,Economic Development,Economic Development +280692,Economic Development,Economic Development +280691,Economic Development,Economic Development +280690,Economic Development,Economic Development +280689,Economic Development,Economic Development +276535,Economic Development,Economic Development +276532,Economic Development,Economic Development +276531,Economic Development,Economic Development +276514,Economic Development,Economic Development +276512,Economic Development,Economic Development +276499,Economic Development,Economic Development +269071,Economic Development,Economic Development +262955,Economic Development,Economic Development +262954,Economic Development,Economic Development +262953,Economic Development,Economic Development +262952,Economic Development,Economic Development +262951,Economic Development,Economic Development +262950,Economic Development,Economic Development +262949,Economic Development,Economic Development +254270,Economic Development,Economic Development +254269,Economic Development,Economic Development +254256,Economic Development,Economic Development +254255,Economic Development,Economic Development +254251,Economic Development,Economic Development +254249,Economic Development,Economic Development +250745,Economic Development,Economic Development +250742,Economic Development,Economic Development +250740,Economic Development,Economic Development +250737,Economic Development,Economic Development +250734,Economic Development,Economic Development +250733,Economic Development,Economic Development +250732,Economic Development,Economic Development +250729,Economic Development,Economic Development +541894,Economic Development,Economic Development +540079,Economic Development,Economic Development +538115,Economic Development,Economic Development +538112,Economic Development,Economic Development +535364,Economic Development,Economic Development +535354,Economic Development,Economic Development +535265,Economic Development,Economic Development +532320,Economic Development,Economic Development +532318,Economic Development,Economic Development +532304,Economic Development,Economic Development +532300,Economic Development,Economic Development +532294,Economic Development,Economic Development +529152,Economic Development,Economic Development +529146,Economic Development,Economic Development +526464,Economic Development,Economic Development +523064,Economic Development,Economic Development +519883,Economic Development,Economic Development +519881,Economic Development,Economic Development +519879,Economic Development,Economic Development +519875,Economic Development,Economic Development +519874,Economic Development,Economic Development +519868,Economic Development,Economic Development +517853,Economic Development,Economic Development +517851,Economic Development,Economic Development +517850,Economic Development,Economic Development +517849,Economic Development,Economic Development +517847,Economic Development,Economic Development +517846,Economic Development,Economic Development +517842,Economic Development,Economic Development +517839,Economic Development,Economic Development +512200,Economic Development,Economic Development +512199,Economic Development,Economic Development +512198,Economic Development,Economic Development +511806,Economic Development,Economic Development +511792,Economic Development,Economic Development +511790,Economic Development,Economic Development +511789,Economic Development,Economic Development +509051,Economic Development,Economic Development +509048,Economic Development,Economic Development +509047,Economic Development,Economic Development +509045,Economic Development,Economic Development +509044,Economic Development,Economic Development +509043,Economic Development,Economic Development +509042,Economic Development,Economic Development +509038,Economic Development,Economic Development +505509,Economic Development,Economic Development +505508,Economic Development,Economic Development +505507,Economic Development,Economic Development +505505,Economic Development,Economic Development +505502,Economic Development,Economic Development +505500,Economic Development,Economic Development +501416,Economic Development,Economic Development +501413,Economic Development,Economic Development +501410,Economic Development,Economic Development +501408,Economic Development,Economic Development +501406,Economic Development,Economic Development +501405,Economic Development,Economic Development +499033,Economic Development,Economic Development +499032,Economic Development,Economic Development +499031,Economic Development,Economic Development +499030,Economic Development,Economic Development +499029,Economic Development,Economic Development +499028,Economic Development,Economic Development +499026,Economic Development,Economic Development +495959,Economic Development,Economic Development +492827,Economic Development,Economic Development +492826,Economic Development,Economic Development +492824,Economic Development,Economic Development +492823,Economic Development,Economic Development +492821,Economic Development,Economic Development +492820,Economic Development,Economic Development +492814,Economic Development,Economic Development +492812,Economic Development,Economic Development +492811,Economic Development,Economic Development +491201,Economic Development,Economic Development +491200,Economic Development,Economic Development +491197,Economic Development,Economic Development +491195,Economic Development,Economic Development +491192,Economic Development,Economic Development +491187,Economic Development,Economic Development +491184,Economic Development,Economic Development +491176,Economic Development,Economic Development +491169,Economic Development,Economic Development +491168,Economic Development,Economic Development +491166,Economic Development,Economic Development +491161,Economic Development,Economic Development +491154,Economic Development,Economic Development +491147,Economic Development,Economic Development +491144,Economic Development,Economic Development +491136,Economic Development,Economic Development +491135,Economic Development,Economic Development +491134,Economic Development,Economic Development +491133,Economic Development,Economic Development +491131,Economic Development,Economic Development +488008,Economic Development,Economic Development +488007,Economic Development,Economic Development +488006,Economic Development,Economic Development +488005,Economic Development,Economic Development +487958,Economic Development,Economic Development +487956,Economic Development,Economic Development +487955,Economic Development,Economic Development +487952,Economic Development,Economic Development +487950,Economic Development,Economic Development +487948,Economic Development,Economic Development +487947,Economic Development,Economic Development +487946,Economic Development,Economic Development +483254,Economic Development,Economic Development +483253,Economic Development,Economic Development +483252,Economic Development,Economic Development +481325,Economic Development,Economic Development +480349,Economic Development,Economic Development +480347,Economic Development,Economic Development +480346,Economic Development,Economic Development +480345,Economic Development,Economic Development +478171,Economic Development,Economic Development +478170,Economic Development,Economic Development +478165,Economic Development,Economic Development +478162,Economic Development,Economic Development +475557,Economic Development,Economic Development +475553,Economic Development,Economic Development +475550,Economic Development,Economic Development +475549,Economic Development,Economic Development +473237,Economic Development,Economic Development +473235,Economic Development,Economic Development +473233,Economic Development,Economic Development +473230,Economic Development,Economic Development +473226,Economic Development,Economic Development +473222,Economic Development,Economic Development +473219,Economic Development,Economic Development +471532,Economic Development,Economic Development +471530,Economic Development,Economic Development +471529,Economic Development,Economic Development +471497,Economic Development,Economic Development +471494,Economic Development,Economic Development +471492,Economic Development,Economic Development +471491,Economic Development,Economic Development +470603,Economic Development,Economic Development +470597,Economic Development,Economic Development +470594,Economic Development,Economic Development +468378,Economic Development,Economic Development +468376,Economic Development,Economic Development +468257,Economic Development,Economic Development +468255,Economic Development,Economic Development +468251,Economic Development,Economic Development +465132,Economic Development,Economic Development +465130,Economic Development,Economic Development +465124,Economic Development,Economic Development +465122,Economic Development,Economic Development +462571,Economic Development,Economic Development +461940,Economic Development,Economic Development +461939,Economic Development,Economic Development +461938,Economic Development,Economic Development +461937,Economic Development,Economic Development +461936,Economic Development,Economic Development +461935,Economic Development,Economic Development +461934,Economic Development,Economic Development +461933,Economic Development,Economic Development +461932,Economic Development,Economic Development +461931,Economic Development,Economic Development +461930,Economic Development,Economic Development +461929,Economic Development,Economic Development +461925,Economic Development,Economic Development +460615,Economic Development,Economic Development +460122,Economic Development,Economic Development +460120,Economic Development,Economic Development +460119,Economic Development,Economic Development +460117,Economic Development,Economic Development +460114,Economic Development,Economic Development +459617,Economic Development,Economic Development +459613,Economic Development,Economic Development +459611,Economic Development,Economic Development +459610,Economic Development,Economic Development +459606,Economic Development,Economic Development +459605,Economic Development,Economic Development +459604,Economic Development,Economic Development +459600,Economic Development,Economic Development +459275,Economic Development,Economic Development +458277,Economic Development,Economic Development +458276,Economic Development,Economic Development +458275,Economic Development,Economic Development +458274,Economic Development,Economic Development +458273,Economic Development,Economic Development +458271,Economic Development,Economic Development +457160,Economic Development,Economic Development +455238,Economic Development,Economic Development +455223,Economic Development,Economic Development +455221,Economic Development,Economic Development +451488,Economic Development,Economic Development +451485,Economic Development,Economic Development +451483,Economic Development,Economic Development +451482,Economic Development,Economic Development +451480,Economic Development,Economic Development +329887,International Relations,International Relations +455246,International Relations,International Relations +227251,International Relations,International Relations +200532,International Relations,International Relations +319120,International Relations,International Relations +310265,International Relations,International Relations +310261,International Relations,International Relations +310260,International Relations,International Relations +310259,International Relations,International Relations +310257,International Relations,International Relations +310256,International Relations,International Relations +310255,International Relations,International Relations +310254,International Relations,International Relations +310253,International Relations,International Relations +310252,International Relations,International Relations +310246,International Relations,International Relations +310243,International Relations,International Relations +310242,International Relations,International Relations +310238,International Relations,International Relations +310225,International Relations,International Relations +310223,International Relations,International Relations +290816,International Relations,International Relations +290814,International Relations,International Relations +290810,International Relations,International Relations +280692,International Relations,International Relations +280691,International Relations,International Relations +280690,International Relations,International Relations +280689,International Relations,International Relations +262954,International Relations,International Relations +430898,International Relations,International Relations +417148,International Relations,International Relations +417147,International Relations,International Relations +417146,International Relations,International Relations +415478,International Relations,International Relations +409074,International Relations,International Relations +407532,International Relations,International Relations +400475,International Relations,International Relations +396861,International Relations,International Relations +396860,International Relations,International Relations +394659,International Relations,International Relations +394658,International Relations,International Relations +394657,International Relations,International Relations +392282,International Relations,International Relations +392281,International Relations,International Relations +390072,International Relations,International Relations +384818,International Relations,International Relations +384812,International Relations,International Relations +383260,International Relations,International Relations +382305,International Relations,International Relations +379582,International Relations,International Relations +376696,International Relations,International Relations +376695,International Relations,International Relations +376693,International Relations,International Relations +376689,International Relations,International Relations +374100,International Relations,International Relations +373980,International Relations,International Relations +373979,International Relations,International Relations +373978,International Relations,International Relations +373977,International Relations,International Relations +373976,International Relations,International Relations +373975,International Relations,International Relations +373974,International Relations,International Relations +373970,International Relations,International Relations +373969,International Relations,International Relations +373965,International Relations,International Relations +373959,International Relations,International Relations +373954,International Relations,International Relations +373952,International Relations,International Relations +373950,International Relations,International Relations +373949,International Relations,International Relations +373948,International Relations,International Relations +373947,International Relations,International Relations +373946,International Relations,International Relations +373942,International Relations,International Relations +373912,International Relations,International Relations +373898,International Relations,International Relations +373877,International Relations,International Relations +371746,International Relations,International Relations +371745,International Relations,International Relations +371742,International Relations,International Relations +371738,International Relations,International Relations +371735,International Relations,International Relations +371734,International Relations,International Relations +368778,International Relations,International Relations +368777,International Relations,International Relations +359547,International Relations,International Relations +355997,International Relations,International Relations +355992,International Relations,International Relations +350948,International Relations,International Relations +350947,International Relations,International Relations +350944,International Relations,International Relations +344641,International Relations,International Relations +344640,International Relations,International Relations +344639,International Relations,International Relations +344638,International Relations,International Relations +343537,International Relations,International Relations +342083,International Relations,International Relations +342081,International Relations,International Relations +342080,International Relations,International Relations +342079,International Relations,International Relations +342077,International Relations,International Relations +342019,International Relations,International Relations +342017,International Relations,International Relations +342015,International Relations,International Relations +342014,International Relations,International Relations +342012,International Relations,International Relations +342010,International Relations,International Relations +342002,International Relations,International Relations +342001,International Relations,International Relations +336241,International Relations,International Relations +336240,International Relations,International Relations +336239,International Relations,International Relations +336238,International Relations,International Relations +336237,International Relations,International Relations +336236,International Relations,International Relations +336235,International Relations,International Relations +333575,International Relations,International Relations +333574,International Relations,International Relations +333573,International Relations,International Relations +329893,International Relations,International Relations +329892,International Relations,International Relations +329891,International Relations,International Relations +458271,Research and Development,Research and Development +457160,Research and Development,Research and Development +276512,Research and Development,Research and Development +276499,Research and Development,Research and Development +269071,Research and Development,Research and Development +262955,Research and Development,Research and Development +262954,Research and Development,Research and Development +262953,Research and Development,Research and Development +262952,Research and Development,Research and Development +262951,Research and Development,Research and Development +262950,Research and Development,Research and Development +262949,Research and Development,Research and Development +254270,Research and Development,Research and Development +254269,Research and Development,Research and Development +254256,Research and Development,Research and Development +254255,Research and Development,Research and Development +254251,Research and Development,Research and Development +254249,Research and Development,Research and Development +250691,Research and Development,Research and Development +241075,Research and Development,Research and Development +241073,Research and Development,Research and Development +241070,Research and Development,Research and Development +241066,Research and Development,Research and Development +241060,Research and Development,Research and Development +241056,Research and Development,Research and Development +230431,Research and Development,Research and Development +230424,Research and Development,Research and Development +230418,Research and Development,Research and Development +230404,Research and Development,Research and Development +227258,Research and Development,Research and Development +227252,Research and Development,Research and Development +227249,Research and Development,Research and Development +223275,Research and Development,Research and Development +223273,Research and Development,Research and Development +223261,Research and Development,Research and Development +223251,Research and Development,Research and Development +218127,Research and Development,Research and Development +212105,Research and Development,Research and Development +212104,Research and Development,Research and Development +212103,Research and Development,Research and Development +212102,Research and Development,Research and Development +211713,Research and Development,Research and Development +211712,Research and Development,Research and Development +211709,Research and Development,Research and Development +211707,Research and Development,Research and Development +207516,Research and Development,Research and Development +207510,Research and Development,Research and Development +207506,Research and Development,Research and Development +200532,Research and Development,Research and Development +373942,Research and Development,Research and Development +373912,Research and Development,Research and Development +373898,Research and Development,Research and Development +373877,Research and Development,Research and Development +371746,Research and Development,Research and Development +371745,Research and Development,Research and Development +371742,Research and Development,Research and Development +371738,Research and Development,Research and Development +371735,Research and Development,Research and Development +371734,Research and Development,Research and Development +371730,Research and Development,Research and Development +368778,Research and Development,Research and Development +368777,Research and Development,Research and Development +364865,Research and Development,Research and Development +359547,Research and Development,Research and Development +355997,Research and Development,Research and Development +355992,Research and Development,Research and Development +355990,Research and Development,Research and Development +350948,Research and Development,Research and Development +350947,Research and Development,Research and Development +350944,Research and Development,Research and Development +344641,Research and Development,Research and Development +344640,Research and Development,Research and Development +344639,Research and Development,Research and Development +344638,Research and Development,Research and Development +343537,Research and Development,Research and Development +342083,Research and Development,Research and Development +342081,Research and Development,Research and Development +342080,Research and Development,Research and Development +342079,Research and Development,Research and Development +342077,Research and Development,Research and Development +342019,Research and Development,Research and Development +342017,Research and Development,Research and Development +342015,Research and Development,Research and Development +342014,Research and Development,Research and Development +342012,Research and Development,Research and Development +342010,Research and Development,Research and Development +342002,Research and Development,Research and Development +342001,Research and Development,Research and Development +336241,Research and Development,Research and Development +336240,Research and Development,Research and Development +336239,Research and Development,Research and Development +336238,Research and Development,Research and Development +336237,Research and Development,Research and Development +336236,Research and Development,Research and Development +336235,Research and Development,Research and Development +333575,Research and Development,Research and Development +333574,Research and Development,Research and Development +333573,Research and Development,Research and Development +329893,Research and Development,Research and Development +329892,Research and Development,Research and Development +329891,Research and Development,Research and Development +329890,Research and Development,Research and Development +329887,Research and Development,Research and Development +319120,Research and Development,Research and Development +316045,Research and Development,Research and Development +316043,Research and Development,Research and Development +316040,Research and Development,Research and Development +316035,Research and Development,Research and Development +310265,Research and Development,Research and Development +310261,Research and Development,Research and Development +310260,Research and Development,Research and Development +310259,Research and Development,Research and Development +310257,Research and Development,Research and Development +310256,Research and Development,Research and Development +310255,Research and Development,Research and Development +310254,Research and Development,Research and Development +310253,Research and Development,Research and Development +310252,Research and Development,Research and Development +310246,Research and Development,Research and Development +310243,Research and Development,Research and Development +310242,Research and Development,Research and Development +310238,Research and Development,Research and Development +310225,Research and Development,Research and Development +310223,Research and Development,Research and Development +310220,Research and Development,Research and Development +302295,Research and Development,Research and Development +302294,Research and Development,Research and Development +302293,Research and Development,Research and Development +302292,Research and Development,Research and Development +302291,Research and Development,Research and Development +302290,Research and Development,Research and Development +297116,Research and Development,Research and Development +297115,Research and Development,Research and Development +297114,Research and Development,Research and Development +297113,Research and Development,Research and Development +297112,Research and Development,Research and Development +297111,Research and Development,Research and Development +297110,Research and Development,Research and Development +290816,Research and Development,Research and Development +290814,Research and Development,Research and Development +290813,Research and Development,Research and Development +290811,Research and Development,Research and Development +290810,Research and Development,Research and Development +290809,Research and Development,Research and Development +280692,Research and Development,Research and Development +280691,Research and Development,Research and Development +280690,Research and Development,Research and Development +280689,Research and Development,Research and Development +276535,Research and Development,Research and Development +276532,Research and Development,Research and Development +276531,Research and Development,Research and Development +276514,Research and Development,Research and Development +455248,Research and Development,Research and Development +455246,Research and Development,Research and Development +455243,Research and Development,Research and Development +455239,Research and Development,Research and Development +455238,Research and Development,Research and Development +455233,Research and Development,Research and Development +455229,Research and Development,Research and Development +455228,Research and Development,Research and Development +455224,Research and Development,Research and Development +455223,Research and Development,Research and Development +455221,Research and Development,Research and Development +455216,Research and Development,Research and Development +455214,Research and Development,Research and Development +451488,Research and Development,Research and Development +451485,Research and Development,Research and Development +451483,Research and Development,Research and Development +451482,Research and Development,Research and Development +451480,Research and Development,Research and Development +451479,Research and Development,Research and Development +446559,Research and Development,Research and Development +446557,Research and Development,Research and Development +446554,Research and Development,Research and Development +446553,Research and Development,Research and Development +446433,Research and Development,Research and Development +441249,Research and Development,Research and Development +440900,Research and Development,Research and Development +440899,Research and Development,Research and Development +440898,Research and Development,Research and Development +440897,Research and Development,Research and Development +440896,Research and Development,Research and Development +440894,Research and Development,Research and Development +440891,Research and Development,Research and Development +440888,Research and Development,Research and Development +440886,Research and Development,Research and Development +440885,Research and Development,Research and Development +440884,Research and Development,Research and Development +440883,Research and Development,Research and Development +440881,Research and Development,Research and Development +440879,Research and Development,Research and Development +440878,Research and Development,Research and Development +440877,Research and Development,Research and Development +440876,Research and Development,Research and Development +440875,Research and Development,Research and Development +440874,Research and Development,Research and Development +440873,Research and Development,Research and Development +440872,Research and Development,Research and Development +440871,Research and Development,Research and Development +440870,Research and Development,Research and Development +440869,Research and Development,Research and Development +440868,Research and Development,Research and Development +440867,Research and Development,Research and Development +440866,Research and Development,Research and Development +440865,Research and Development,Research and Development +440863,Research and Development,Research and Development +440862,Research and Development,Research and Development +440861,Research and Development,Research and Development +439565,Research and Development,Research and Development +436147,Research and Development,Research and Development +430898,Research and Development,Research and Development +417148,Research and Development,Research and Development +417147,Research and Development,Research and Development +417146,Research and Development,Research and Development +415478,Research and Development,Research and Development +409074,Research and Development,Research and Development +407532,Research and Development,Research and Development +400475,Research and Development,Research and Development +396861,Research and Development,Research and Development +396860,Research and Development,Research and Development +394659,Research and Development,Research and Development +394658,Research and Development,Research and Development +394657,Research and Development,Research and Development +392282,Research and Development,Research and Development +392281,Research and Development,Research and Development +390072,Research and Development,Research and Development +384818,Research and Development,Research and Development +384812,Research and Development,Research and Development +383260,Research and Development,Research and Development +382305,Research and Development,Research and Development +380377,Research and Development,Research and Development +380376,Research and Development,Research and Development +379582,Research and Development,Research and Development +376696,Research and Development,Research and Development +376695,Research and Development,Research and Development +376693,Research and Development,Research and Development +376689,Research and Development,Research and Development +374100,Research and Development,Research and Development +373980,Research and Development,Research and Development +373979,Research and Development,Research and Development +373978,Research and Development,Research and Development +373977,Research and Development,Research and Development +373976,Research and Development,Research and Development +373975,Research and Development,Research and Development +373974,Research and Development,Research and Development +373970,Research and Development,Research and Development +373969,Research and Development,Research and Development +373965,Research and Development,Research and Development +373959,Research and Development,Research and Development +373954,Research and Development,Research and Development +373952,Research and Development,Research and Development +373950,Research and Development,Research and Development +373949,Research and Development,Research and Development +373948,Research and Development,Research and Development +373947,Research and Development,Research and Development +373946,Research and Development,Research and Development +541894,Research and Development,Research and Development +540079,Research and Development,Research and Development +538115,Research and Development,Research and Development +538112,Research and Development,Research and Development +535364,Research and Development,Research and Development +535354,Research and Development,Research and Development +535265,Research and Development,Research and Development +532320,Research and Development,Research and Development +532318,Research and Development,Research and Development +532304,Research and Development,Research and Development +532300,Research and Development,Research and Development +532294,Research and Development,Research and Development +529152,Research and Development,Research and Development +529146,Research and Development,Research and Development +526464,Research and Development,Research and Development +523064,Research and Development,Research and Development +519883,Research and Development,Research and Development +519881,Research and Development,Research and Development +519879,Research and Development,Research and Development +519875,Research and Development,Research and Development +519874,Research and Development,Research and Development +519868,Research and Development,Research and Development +517853,Research and Development,Research and Development +517851,Research and Development,Research and Development +517850,Research and Development,Research and Development +517849,Research and Development,Research and Development +517847,Research and Development,Research and Development +517846,Research and Development,Research and Development +517842,Research and Development,Research and Development +517839,Research and Development,Research and Development +512200,Research and Development,Research and Development +512199,Research and Development,Research and Development +512198,Research and Development,Research and Development +511806,Research and Development,Research and Development +511792,Research and Development,Research and Development +511790,Research and Development,Research and Development +511789,Research and Development,Research and Development +509051,Research and Development,Research and Development +509048,Research and Development,Research and Development +509047,Research and Development,Research and Development +509045,Research and Development,Research and Development +509044,Research and Development,Research and Development +509043,Research and Development,Research and Development +509042,Research and Development,Research and Development +509038,Research and Development,Research and Development +505509,Research and Development,Research and Development +505508,Research and Development,Research and Development +505507,Research and Development,Research and Development +505505,Research and Development,Research and Development +505502,Research and Development,Research and Development +505500,Research and Development,Research and Development +501416,Research and Development,Research and Development +501413,Research and Development,Research and Development +501410,Research and Development,Research and Development +501408,Research and Development,Research and Development +501406,Research and Development,Research and Development +501405,Research and Development,Research and Development +499033,Research and Development,Research and Development +499032,Research and Development,Research and Development +499031,Research and Development,Research and Development +499030,Research and Development,Research and Development +499029,Research and Development,Research and Development +499028,Research and Development,Research and Development +499026,Research and Development,Research and Development +495959,Research and Development,Research and Development +492827,Research and Development,Research and Development +492826,Research and Development,Research and Development +492824,Research and Development,Research and Development +492823,Research and Development,Research and Development +492821,Research and Development,Research and Development +492820,Research and Development,Research and Development +492814,Research and Development,Research and Development +492812,Research and Development,Research and Development +492811,Research and Development,Research and Development +491201,Research and Development,Research and Development +491200,Research and Development,Research and Development +491197,Research and Development,Research and Development +491195,Research and Development,Research and Development +491192,Research and Development,Research and Development +491187,Research and Development,Research and Development +491184,Research and Development,Research and Development +491176,Research and Development,Research and Development +491169,Research and Development,Research and Development +491168,Research and Development,Research and Development +491166,Research and Development,Research and Development +491161,Research and Development,Research and Development +491154,Research and Development,Research and Development +491147,Research and Development,Research and Development +491144,Research and Development,Research and Development +491136,Research and Development,Research and Development +491135,Research and Development,Research and Development +491134,Research and Development,Research and Development +491133,Research and Development,Research and Development +491131,Research and Development,Research and Development +488008,Research and Development,Research and Development +488007,Research and Development,Research and Development +488006,Research and Development,Research and Development +488005,Research and Development,Research and Development +487958,Research and Development,Research and Development +487956,Research and Development,Research and Development +487955,Research and Development,Research and Development +487952,Research and Development,Research and Development +487950,Research and Development,Research and Development +487948,Research and Development,Research and Development +487947,Research and Development,Research and Development +487946,Research and Development,Research and Development +483254,Research and Development,Research and Development +483253,Research and Development,Research and Development +483252,Research and Development,Research and Development +481325,Research and Development,Research and Development +480349,Research and Development,Research and Development +480347,Research and Development,Research and Development +480346,Research and Development,Research and Development +480345,Research and Development,Research and Development +478171,Research and Development,Research and Development +478170,Research and Development,Research and Development +478165,Research and Development,Research and Development +478162,Research and Development,Research and Development +475557,Research and Development,Research and Development +475553,Research and Development,Research and Development +475550,Research and Development,Research and Development +475549,Research and Development,Research and Development +473237,Research and Development,Research and Development +473235,Research and Development,Research and Development +473233,Research and Development,Research and Development +473230,Research and Development,Research and Development +473226,Research and Development,Research and Development +473222,Research and Development,Research and Development +473219,Research and Development,Research and Development +471532,Research and Development,Research and Development +471530,Research and Development,Research and Development +471529,Research and Development,Research and Development +471497,Research and Development,Research and Development +471494,Research and Development,Research and Development +471492,Research and Development,Research and Development +471491,Research and Development,Research and Development +470603,Research and Development,Research and Development +470597,Research and Development,Research and Development +470594,Research and Development,Research and Development +468378,Research and Development,Research and Development +468376,Research and Development,Research and Development +468257,Research and Development,Research and Development +468255,Research and Development,Research and Development +468251,Research and Development,Research and Development +465132,Research and Development,Research and Development +465130,Research and Development,Research and Development +465124,Research and Development,Research and Development +465122,Research and Development,Research and Development +462571,Research and Development,Research and Development +461940,Research and Development,Research and Development +461939,Research and Development,Research and Development +461938,Research and Development,Research and Development +461937,Research and Development,Research and Development +461936,Research and Development,Research and Development +461935,Research and Development,Research and Development +461934,Research and Development,Research and Development +461933,Research and Development,Research and Development +461932,Research and Development,Research and Development +461931,Research and Development,Research and Development +461930,Research and Development,Research and Development +461929,Research and Development,Research and Development +461925,Research and Development,Research and Development +460615,Research and Development,Research and Development +460122,Research and Development,Research and Development +460120,Research and Development,Research and Development +460119,Research and Development,Research and Development +460117,Research and Development,Research and Development +460114,Research and Development,Research and Development +459617,Research and Development,Research and Development +459613,Research and Development,Research and Development +459611,Research and Development,Research and Development +459610,Research and Development,Research and Development +459606,Research and Development,Research and Development +459605,Research and Development,Research and Development +459604,Research and Development,Research and Development +459600,Research and Development,Research and Development +459275,Research and Development,Research and Development +458277,Research and Development,Research and Development +458276,Research and Development,Research and Development +458275,Research and Development,Research and Development +458274,Research and Development,Research and Development +392719,Agriculture,Agriculture +392718,Agriculture,Agriculture +354128,Agriculture,Agriculture +354124,Agriculture,Agriculture +322340,Agriculture,Agriculture +230611,Agriculture,Agriculture +227517,Agriculture,Agriculture +218651,Agriculture,Agriculture +354124,Economic Development,Economic Development +349398,Economic Development,Economic Development +322340,Economic Development,Economic Development +265278,Economic Development,Economic Development +230611,Economic Development,Economic Development +227517,Economic Development,Economic Development +218651,Economic Development,Economic Development +218649,Economic Development,Economic Development +392719,Economic Development,Economic Development +392718,Economic Development,Economic Development +349398,Employment and Training,Employment and Training +322340,Employment and Training,Employment and Training +227517,Employment and Training,Employment and Training +354124,Research and Development,Research and Development +349398,Research and Development,Research and Development +322340,Research and Development,Research and Development +230611,Research and Development,Research and Development +392719,Transportation,Transportation +392718,Transportation,Transportation +322340,Transportation,Transportation +265278,Transportation,Transportation +230611,Transportation,Transportation +227517,Transportation,Transportation +218651,Transportation,Transportation +218649,Transportation,Transportation +354128,Transportation,Transportation +354124,Transportation,Transportation +524304,Security,Security +468574,Security,Security +200591,Security,Security +375037,Security,Security +375036,Security,Security +351622,Security,Security +351621,Security,Security +351620,Security,Security +349409,Security,Security +287389,Security,Security +462026,Security,Security +413212,Security,Security +410072,Security,Security +388596,Security,Security +200612,Budget,Budget +310157,Budget,Budget +310154,Budget,Budget +303974,Budget,Budget +519864,Budget,Budget +200613,Budget,Budget +249992,Budget,Budget +310159,Budget,Budget +254112,Budget,Budget +250036,Budget,Budget +250017,Budget,Budget +250010,Budget,Budget +249991,Budget,Budget +249990,Budget,Budget +245713,Budget,Budget +200615,Budget,Budget +200616,Budget,Budget +523198,Budget,Budget +310156,Budget,Budget +275912,Budget,Budget +250012,Budget,Budget +245712,Budget,Budget +200617,Budget,Budget +303973,Budget,Budget +250019,Budget,Budget +250034,Budget,Budget +529538,Budget,Budget +249972,Budget,Budget +245714,Budget,Budget +200618,Budget,Budget +312903,Budget,Budget +310158,Budget,Budget +310152,Budget,Budget +303971,Budget,Budget +200621,Budget,Budget +200620,Budget,Budget +310153,Budget,Budget +250023,Budget,Budget +212583,Budget,Budget +223633,Budget,Budget +403714,Budget,Budget +352917,Industry,Industry +201107,Financial Institutions,Financial Institutions +279941,Industry,Industry +279939,Industry,Industry +279938,Industry,Industry +279937,Industry,Industry +279936,Industry,Industry +279935,Industry,Industry +279934,Industry,Industry +279933,Industry,Industry +279932,Industry,Industry +279931,Industry,Industry +279930,Industry,Industry +279929,Industry,Industry +279769,Industry,Industry +222788,Industry,Industry +203067,Industry,Industry +315538,Industry,Industry +288309,Industry,Industry +280030,Industry,Industry +280028,Industry,Industry +280027,Industry,Industry +280026,Industry,Industry +280025,Industry,Industry +280024,Industry,Industry +280023,Industry,Industry +280022,Industry,Industry +280021,Industry,Industry +280020,Industry,Industry +280019,Industry,Industry +280018,Industry,Industry +280017,Industry,Industry +280016,Industry,Industry +280015,Industry,Industry +280013,Industry,Industry +280012,Industry,Industry +280010,Industry,Industry +280009,Industry,Industry +280008,Industry,Industry +280006,Industry,Industry +280005,Industry,Industry +280004,Industry,Industry +280001,Industry,Industry +280000,Industry,Industry +279999,Industry,Industry +279998,Industry,Industry +279997,Industry,Industry +279996,Industry,Industry +279995,Industry,Industry +279994,Industry,Industry +279993,Industry,Industry +279992,Industry,Industry +279990,Industry,Industry +279989,Industry,Industry +279988,Industry,Industry +279986,Industry,Industry +279980,Industry,Industry +279978,Industry,Industry +279977,Industry,Industry +279973,Industry,Industry +279952,Industry,Industry +279951,Industry,Industry +279950,Industry,Industry +397916,Industry,Industry +397913,Industry,Industry +395515,Industry,Industry +395513,Industry,Industry +395511,Industry,Industry +395510,Industry,Industry +395509,Industry,Industry +395508,Industry,Industry +395507,Industry,Industry +395506,Industry,Industry +386588,Industry,Industry +386587,Industry,Industry +386575,Industry,Industry +385879,Industry,Industry +385878,Industry,Industry +382961,Industry,Industry +382960,Industry,Industry +382959,Industry,Industry +382958,Industry,Industry +380480,Industry,Industry +380479,Industry,Industry +380478,Industry,Industry +377948,Industry,Industry +377946,Industry,Industry +377945,Industry,Industry +377944,Industry,Industry +377943,Industry,Industry +377941,Industry,Industry +377939,Industry,Industry +502527,Research and Development,Research and Development +202783,Transportation,Transportation +192988,Transportation,Transportation +296176,International Trade,International Trade +193128,Employment and Training,Employment and Training +405821,Health,Health +193169,Government Procurement,Government Procurement +197224,Mining,Mining +418003,Budget,Budget +528961,Health,Health +193244,Energy,Énergie +193244,Environment,Environnement +193244,Industry,Industrie +193267,Transportation,Transportation +196047,Education,Education +196048,Education,Education +483968,Taxation and Finance,Taxation and Finance +249249,Financial Institutions,Financial Institutions +193514,Regional Development,Regional Development +514835,Budget,Budget +424611,Labour,Labour +375260,Research and Development,Research and Development +239469,Justice and Law Enforcement,Justice and Law Enforcement +251329,Budget,Budget +479165,Education,Education +501538,Immigration,Immigration +193795,Immigration,Immigration +193796,Economic Development,Economic Development +193800,Immigration,Immigration +193806,Immigration,Immigration +202567,Economic Development,Economic Development +201807,Industry,Industry +201807,Energy,Energy +201807,Environment,Environment +201678,Government Procurement,Government Procurement +465979,Budget,Budget +526327,Security,Security +414029,Research and Development,Research and Development +251416,Agriculture,Agriculture +239389,Health,Health +196669,Industry,Industry +424597,International Development,International Development +483649,Education,Education +195081,Energy,Energy +195082,Energy,Energy +195083,Energy,Energy +195084,Energy,Energy +195085,Energy,Energy +195086,Energy,Energy +195087,Energy,Energy +195088,Energy,Energy +195124,Energy,Energy +212519,Government Procurement,Government Procurement +215787,Agriculture,Agriculture +202703,Economic Development,Economic Development +422284,Energy,Energy +202694,Economic Development,Economic Development +230678,Agriculture,Agriculture +230678,Economic Development,Economic Development +269498,Energy,Energy +269498,Environment,Environment +230678,Regional Development,Regional Development +196186,Industry,Industry +196186,Energy,Energy +196186,Environment,Environment +198787,Financial Institutions,Financial Institutions +272490,Infrastructure,Infrastructure +272490,Industry,Industry +195525,Small Business,Small Business +411288,Taxation and Finance,Taxation and Finance +195526,Small Business,Small Business +411283,Taxation and Finance,Taxation and Finance +200498,Small Business,Small Business +200498,Taxation and Finance,Taxation and Finance +199892,Small Business,Small Business +411284,Taxation and Finance,Taxation and Finance +215991,Industry,Industry +199974,Intellectual Property,Intellectual Property +208888,Consumer Issues,Consumer Issues +199680,Financial Institutions,Financial Institutions +225051,Budget,Budget +335090,Government Procurement,Government Procurement +203548,Government Procurement,Government Procurement +199588,International Trade,International Trade +533716,Agriculture,Agriculture +215708,Consumer Issues,Consumer Issues +431408,International Trade,International Trade +252489,Transportation,Transportation +195785,Regional Development,Regional Development +195785,Transportation,Transportation +195788,Transportation,Transportation +195789,Transportation,Transportation +252353,Transportation,Transportation +195792,Regional Development,Regional Development +195792,Transportation,Transportation +195793,Transportation,Transportation +195794,Transportation,Transportation +340185,Official Languages,Langues officielles +340185,Health,Santé +339859,Economic Development,Economic Development +244372,Energy,Energy +346578,Environment,Environment +216099,Consumer Issues,Consumer Issues +314310,Education,Education +196769,Infrastructure,Infrastructure +200747,Financial Institutions,Financial Institutions +198927,Financial Institutions,Financial Institutions +203948,Infrastructure,Infrastructure +203948,Health,Health +237749,Agriculture,Agriculture +197270,Climate,Climate +210747,Energy,Energy +197270,Environment,Environment +197270,Industry,Industry +195944,International Trade,Commerce international +200524,Environment,Environment +196025,Small Business,Petites entreprises +402283,Transportation,Transportation +224148,Agriculture,Agriculture +202844,Climate,Climate +197122,Energy,Energy +197122,Environment,Environment +196389,Economic Development,Economic Development +196387,Taxation and Finance,Taxation and Finance +327724,International Trade,International Trade +291590,Small Business,Small Business +211967,Energy,Energy +211967,Mining,Mining +422671,Economic Development,Economic Development +501646,Official Languages,Official Languages +196568,Budget,Budget +203610,Economic Development,Economic Development +203611,Regional Development,Regional Development +397188,Official Languages,Langues officielles +395448,Agriculture,Agriculture +395448,Consumer Issues,Consumer Issues +418756,International Trade,International Trade +294574,Budget,Budget +247550,Agriculture,Agriculture +221569,Consumer Issues,Consumer Issues +202513,Intellectual Property,Intellectual Property +258129,Environment,Environment +197113,Employment and Training,Employment and Training +197114,Employment and Training,Employment and Training +197115,Employment and Training,Employment and Training +201187,Defence,Defence +197231,Transportation,Transportation +201307,Financial Institutions,Financial Institutions +201307,International Trade,International Trade +201307,Taxation and Finance,Taxation and Finance +199629,Agriculture,Agriculture +197287,Economic Development,Economic Development +197287,International Development,International Development +301371,Environment,Environment +301371,Infrastructure,Infrastructure +266349,International Relations,International Relations +266349,International Trade,International Trade +301371,Taxation and Finance,Taxation and Finance +301371,Transportation,Transportation +197356,Health,Health +197357,Health,Health +197358,Health,Health +197361,Research and Development,Research and Development +229951,Mining,Mining +257530,Economic Development,Economic Development +375169,Mining,Mining +202570,Economic Development,Economic Development +202570,Fisheries,Fisheries +208648,International Relations,International Relations +208648,International Trade,International Trade +202570,Regional Development,Regional Development +202570,Taxation and Finance,Taxation and Finance +202570,Transportation,Transportation +464313,International Development,International Development +207440,Energy,Energy +240276,Climate,Climate +197475,Economic Development,Economic Development +266349,Regional Development,Regional Development +266349,Small Business,Small Business +197272,International Relations,International Relations +197310,International Relations,International Relations +197308,International Relations,International Relations +197260,International Relations,International Relations +197258,International Relations,International Relations +197253,International Relations,International Relations +197255,International Relations,International Relations +197256,International Relations,International Relations +197251,International Relations,International Relations +197669,Health,Health +202806,Health,Health +202801,Justice and Law Enforcement,Justice and Law Enforcement +201427,Defence,Defence +528905,Economic Development,Développement économique +199586,Infrastructure,Infrastructure +199589,Climate,Climate +199609,Taxation and Finance,Taxation and Finance +419195,Agriculture,Agriculture +199617,Agriculture,Agriculture +430803,Economic Development,Economic Development +461388,Regional Development,Regional Development +263911,Industry,Industrie +230679,Agriculture,Agriculture +230679,Climate,Climate +230679,Economic Development,Economic Development +269508,Energy,Energy +230679,Regional Development,Regional Development +199729,International Development,International Development +199729,Economic Development,Economic Development +476115,Agriculture,Agriculture +405548,Official Languages,Official Languages +425537,Official Languages,Official Languages +407480,Official Languages,Official Languages +444848,Budget,Budget +492673,Official Languages,Official Languages +199995,Budget,Budget +397261,Defence,Defence +199932,Economic Development,Economic Development +199937,Economic Development,Economic Development +199942,Economic Development,Economic Development +259294,Health,Health +324001,Health,Health +393632,Economic Development,Développement économique +387423,International Development,Développement international +323969,Health,Health +276898,Health,Health +227313,Intellectual Property,Intellectual Property +407430,Health,Health +421080,Taxation and Finance,Taxation and Finance +200164,Employment and Training,Employment and Training +315906,International Development,International Development +315906,International Relations,International Relations +443131,Sports,Sports +200291,Sports,Sports +200294,Agriculture,Agriculture +200312,Security,Security +200332,Climate,Climate +202541,International Trade,International Trade +200341,International Trade,International Trade +207203,International Trade,International Trade +200408,Infrastructure,Infrastructure +200409,Economic Development,Economic Development +200409,International Trade,International Trade +250808,Fisheries,Fisheries +200468,Immigration,Immigration +216948,Transportation,Transportation +200470,Fisheries,Fisheries +233399,Fisheries,Fisheries +451479,Economic Development,Economic Development +329890,International Relations,International Relations +458273,Research and Development,Research and Development +218649,Agriculture,Agriculture +354128,Economic Development,Economic Development +354124,Employment and Training,Employment and Training +227517,Research and Development,Research and Development +349398,Transportation,Transportation +529645,Security,Security +250015,Budget,Budget +310155,Budget,Budget +310160,Budget,Budget +249959,Budget,Budget +245715,Budget,Budget +254113,Budget,Budget +212582,Budget,Budget +343770,Budget,Budget +200687,Industry,Industry +200687,Infrastructure,Infrastructure +200689,Climate,Climate +200689,Energy,Energy +200689,Industry,Industry +200689,Infrastructure,Infrastructure +200690,Climate,Climate +200690,Energy,Energy +200690,Industry,Industry +200690,Infrastructure,Infrastructure +200690,Economic Development,Economic Development +200690,International Relations,International Relations +200690,Research and Development,Research and Development +200691,Climate,Climate +200691,Energy,Energy +200691,Industry,Industry +200691,Infrastructure,Infrastructure +200691,International Relations,International Relations +200691,Research and Development,Research and Development +200691,Economic Development,Economic Development +200692,Climate,Climate +200692,Economic Development,Economic Development +200692,Energy,Energy +200692,Industry,Industry +200692,Infrastructure,Infrastructure +200692,International Relations,International Relations +200692,Research and Development,Research and Development +200693,Climate,Climate +200693,Economic Development,Economic Development +200693,Energy,Energy +200693,Industry,Industry +200693,Infrastructure,Infrastructure +200693,International Relations,International Relations +200693,Research and Development,Research and Development +200694,Climate,Climate +200694,Economic Development,Economic Development +200694,Energy,Energy +200694,Industry,Industry +200694,Infrastructure,Infrastructure +200694,International Relations,International Relations +200694,Research and Development,Research and Development +200695,Industry,Industry +202882,Industry,Industry +201108,Financial Institutions,Financial Institutions +200787,Industry,Industry +200788,Industry,Industry +279949,Industry,Industry +280036,Industry,Industry +280035,Industry,Industry +280033,Industry,Industry +280032,Industry,Industry +280029,Industry,Industry +259593,Justice and Law Enforcement,Justice and Law Enforcement +519882,Environment,Environment +286150,International Relations,International Relations +201008,Religion,Religion +319893,Agriculture,Agriculture +206891,Environment,Environment +206891,Health,Health +319893,Internal Trade,Internal Trade +206889,Agriculture,Agriculture +206889,Environment,Environment +206889,Health,Health +375505,Industry,Industry +375504,Industry,Industry +375502,Industry,Industry +375501,Industry,Industry +374310,Industry,Industry +374308,Industry,Industry +374307,Industry,Industry +374306,Industry,Industry +374305,Industry,Industry +370430,Industry,Industry +370428,Industry,Industry +370426,Industry,Industry +370425,Industry,Industry +370423,Industry,Industry +370390,Industry,Industry +370386,Industry,Industry +370385,Industry,Industry +370378,Industry,Industry +370374,Industry,Industry +370372,Industry,Industry +370371,Industry,Industry +370370,Industry,Industry +364444,Industry,Industry +362924,Industry,Industry +358384,Industry,Industry +355556,Industry,Industry +336919,Industry,Industry +336095,Industry,Industry +336087,Industry,Industry +336083,Industry,Industry +333654,Industry,Industry +333653,Industry,Industry +333647,Industry,Industry +329344,Industry,Industry +329343,Industry,Industry +329342,Industry,Industry +329341,Industry,Industry +329338,Industry,Industry +329337,Industry,Industry +329334,Industry,Industry +482694,Industry,Industry +419460,Industry,Industry +419447,Industry,Industry +419446,Industry,Industry +419444,Industry,Industry +409304,Industry,Industry +409298,Industry,Industry +409266,Industry,Industry +406438,Industry,Industry +404513,Industry,Industry +404511,Industry,Industry +404510,Industry,Industry +404508,Industry,Industry +404507,Industry,Industry +404506,Industry,Industry +404505,Industry,Industry +404504,Industry,Industry +404503,Industry,Industry +401981,Industry,Industry +401890,Industry,Industry +401889,Industry,Industry +401888,Industry,Industry +401887,Industry,Industry +401886,Industry,Industry +400829,Industry,Industry +400826,Industry,Industry +400825,Industry,Industry +400822,Industry,Industry +400821,Industry,Industry +400819,Industry,Industry +400818,Industry,Industry +400812,Industry,Industry +397970,Industry,Industry +397932,Industry,Industry +397931,Industry,Industry +397928,Industry,Industry +397927,Industry,Industry +397925,Industry,Industry +397924,Industry,Industry +397922,Industry,Industry +397921,Industry,Industry +397920,Industry,Industry +397918,Industry,Industry +200947,Justice and Law Enforcement,Justice and Law Enforcement +439024,Justice and Law Enforcement,Justice and Law Enforcement +273379,Justice and Law Enforcement,Justice and Law Enforcement +264566,Justice and Law Enforcement,Justice and Law Enforcement +510272,Environment,Environment +498716,Environment,Environment +277783,Environment,Environment +232675,Environment,Environment +227355,Environment,Environment +200949,Environment,Environment +522469,Environment,Environment +273091,International Relations,International Relations +200992,International Relations,International Relations +440396,International Relations,International Relations +535210,International Relations,International Relations +529661,International Relations,International Relations +529657,International Relations,International Relations +493657,International Relations,International Relations +482374,International Relations,International Relations +482338,International Relations,International Relations +480535,International Relations,International Relations +479162,International Relations,International Relations +479161,International Relations,International Relations +479159,International Relations,International Relations +479156,International Relations,International Relations +476143,International Relations,International Relations +476142,International Relations,International Relations +456493,International Relations,International Relations +447125,International Relations,International Relations +447122,International Relations,International Relations +206891,Agriculture,Agriculture +206891,Internal Trade,Internal Trade +319890,Agriculture,Agriculture +206889,International Trade,International Trade +206892,Agriculture,Agriculture +319892,International Trade,International Trade +433113,Research and Development,Research and Development +431717,Research and Development,Research and Development +277210,Research and Development,Research and Development +233391,Research and Development,Research and Development +377799,Research and Development,Research and Development +377798,Research and Development,Research and Development +375326,Research and Development,Research and Development +374523,Research and Development,Research and Development +373426,Research and Development,Research and Development +373425,Research and Development,Research and Development +373422,Research and Development,Research and Development +373419,Research and Development,Research and Development +373417,Research and Development,Research and Development +373403,Research and Development,Research and Development +373402,Research and Development,Research and Development +371537,Research and Development,Research and Development +368665,Research and Development,Research and Development +367943,Research and Development,Research and Development +367942,Research and Development,Research and Development +364422,Research and Development,Research and Development +364183,Research and Development,Research and Development +362723,Research and Development,Research and Development +352660,Research and Development,Research and Development +350482,Research and Development,Research and Development +350480,Research and Development,Research and Development +348620,Research and Development,Research and Development +348615,Research and Development,Research and Development +348614,Research and Development,Research and Development +340048,Research and Development,Research and Development +340045,Research and Development,Research and Development +332740,Research and Development,Research and Development +331640,Research and Development,Research and Development +330221,Research and Development,Research and Development +326133,Research and Development,Research and Development +326132,Research and Development,Research and Development +326131,Research and Development,Research and Development +326130,Research and Development,Research and Development +326129,Research and Development,Research and Development +324849,Research and Development,Research and Development +318350,Research and Development,Research and Development +318349,Research and Development,Research and Development +277215,Research and Development,Research and Development +277214,Research and Development,Research and Development +429574,Research and Development,Research and Development +428231,Research and Development,Research and Development +428230,Research and Development,Research and Development +428228,Research and Development,Research and Development +423741,Research and Development,Research and Development +420772,Research and Development,Research and Development +419208,Research and Development,Research and Development +418754,Research and Development,Research and Development +417297,Research and Development,Research and Development +415796,Research and Development,Research and Development +414409,Research and Development,Research and Development +413935,Research and Development,Research and Development +413934,Research and Development,Research and Development +413274,Research and Development,Research and Development +408337,Research and Development,Research and Development +408336,Research and Development,Research and Development +405642,Research and Development,Research and Development +405636,Research and Development,Research and Development +404257,Research and Development,Research and Development +401883,Research and Development,Research and Development +398389,Research and Development,Research and Development +397703,Research and Development,Research and Development +394540,Research and Development,Research and Development +394538,Research and Development,Research and Development +392982,Research and Development,Research and Development +392975,Research and Development,Research and Development +389386,Research and Development,Research and Development +389385,Research and Development,Research and Development +389384,Research and Development,Research and Development +389383,Research and Development,Research and Development +389382,Research and Development,Research and Development +388664,Research and Development,Research and Development +384069,Research and Development,Research and Development +383253,Research and Development,Research and Development +382839,Research and Development,Research and Development +380233,Research and Development,Research and Development +380118,Research and Development,Research and Development +541020,Research and Development,Research and Development +541019,Research and Development,Research and Development +541018,Research and Development,Research and Development +530274,Research and Development,Research and Development +525190,Research and Development,Research and Development +524524,Research and Development,Research and Development +524521,Research and Development,Research and Development +521029,Research and Development,Research and Development +521027,Research and Development,Research and Development +521026,Research and Development,Research and Development +521025,Research and Development,Research and Development +521024,Research and Development,Research and Development +521023,Research and Development,Research and Development +521022,Research and Development,Research and Development +521021,Research and Development,Research and Development +521020,Research and Development,Research and Development +521019,Research and Development,Research and Development +521017,Research and Development,Research and Development +516973,Research and Development,Research and Development +516972,Research and Development,Research and Development +513738,Research and Development,Research and Development +512259,Research and Development,Research and Development +509631,Research and Development,Research and Development +503638,Research and Development,Research and Development +500486,Research and Development,Research and Development +492252,Research and Development,Research and Development +492251,Research and Development,Research and Development +488903,Research and Development,Research and Development +485708,Research and Development,Research and Development +485707,Research and Development,Research and Development +483841,Research and Development,Research and Development +483527,Research and Development,Research and Development +461240,Research and Development,Research and Development +456549,Research and Development,Research and Development +451276,Research and Development,Research and Development +448960,Research and Development,Research and Development +448958,Research and Development,Research and Development +448828,Research and Development,Research and Development +448826,Research and Development,Research and Development +448504,Research and Development,Research and Development +448336,Research and Development,Research and Development +443110,Research and Development,Research and Development +442071,Research and Development,Research and Development +436981,Research and Development,Research and Development +436811,Research and Development,Research and Development +436808,Research and Development,Research and Development +435071,Research and Development,Research and Development +434685,Research and Development,Research and Development +434684,Research and Development,Research and Development +434683,Research and Development,Research and Development +434682,Research and Development,Research and Development +434681,Research and Development,Research and Development +434680,Research and Development,Research and Development +434679,Research and Development,Research and Development +434678,Research and Development,Research and Development +434677,Research and Development,Research and Development +434676,Research and Development,Research and Development +434675,Research and Development,Research and Development +434674,Research and Development,Research and Development +434673,Research and Development,Research and Development +434672,Research and Development,Research and Development +434671,Research and Development,Research and Development +434670,Research and Development,Research and Development +434669,Research and Development,Research and Development +434668,Research and Development,Research and Development +252769,Budget,Budget +252758,Budget,Budget +252757,Budget,Budget +252755,Budget,Budget +252754,Budget,Budget +252753,Budget,Budget +252752,Budget,Budget +252751,Budget,Budget +252750,Budget,Budget +249230,Budget,Budget +249222,Budget,Budget +244890,Budget,Budget +223404,Budget,Budget +212348,Budget,Budget +209749,Budget,Budget +209748,Budget,Budget +209747,Budget,Budget +205950,Budget,Budget +201168,Budget,Budget +201167,Budget,Budget +201154,Budget,Budget +201153,Budget,Budget +201152,Budget,Budget +201150,Budget,Budget +201149,Budget,Budget +312210,Budget,Budget +312209,Budget,Budget +312202,Budget,Budget +312201,Budget,Budget +312194,Budget,Budget +307474,Budget,Budget +307471,Budget,Budget +300012,Budget,Budget +300010,Budget,Budget +300009,Budget,Budget +284709,Budget,Budget +267409,Budget,Budget +263016,Budget,Budget +263013,Budget,Budget +263009,Budget,Budget +257190,Budget,Budget +239209,Official Languages,Official Languages +201191,Official Languages,Official Languages +260709,Official Languages,Official Languages +248699,Official Languages,Official Languages +248698,Official Languages,Official Languages +310011,Consumer Issues,Consumer Issues +310010,Consumer Issues,Consumer Issues +245427,Consumer Issues,Consumer Issues +342418,Consumer Issues,Consumer Issues +319055,Consumer Issues,Consumer Issues +319035,Consumer Issues,Consumer Issues +319033,Consumer Issues,Consumer Issues +310013,Consumer Issues,Consumer Issues +417618,Industry,Industry +417612,Industry,Industry +409785,Industry,Industry +409775,Industry,Industry +409763,Industry,Industry +406527,Industry,Industry +404956,Industry,Industry +397697,Industry,Industry +396294,Industry,Industry +396291,Industry,Industry +396289,Industry,Industry +396288,Industry,Industry +385358,Industry,Industry +385352,Industry,Industry +385349,Industry,Industry +385345,Industry,Industry +385339,Industry,Industry +385336,Industry,Industry +385333,Industry,Industry +385332,Industry,Industry +385329,Industry,Industry +375610,Industry,Industry +319055,Industry,Industry +319035,Industry,Industry +319033,Industry,Industry +245448,Industry,Industry +245443,Industry,Industry +245436,Industry,Industry +245427,Industry,Industry +245425,Industry,Industry +245423,Industry,Industry +441605,Industry,Industry +441604,Industry,Industry +441602,Industry,Industry +441601,Industry,Industry +441599,Industry,Industry +441159,Industry,Industry +434324,Industry,Industry +429864,Industry,Industry +429825,Industry,Industry +429229,Industry,Industry +426744,Industry,Industry +426737,Industry,Industry +419818,Industry,Industry +516628,Security,Security +501659,Security,Security +245329,Security,Security +245313,Security,Security +230125,Security,Security +226279,Security,Security +216176,Security,Security +210312,Security,Security +201254,Security,Security +374335,Security,Security +372109,Security,Security +366412,Security,Security +359546,Security,Security +353784,Security,Security +348548,Security,Security +343571,Security,Security +327018,Security,Security +327014,Security,Security +327013,Security,Security +327012,Security,Security +324537,Security,Security +324536,Security,Security +324533,Security,Security +324532,Security,Security +324531,Security,Security +324529,Security,Security +322004,Security,Security +322002,Security,Security +321996,Security,Security +321993,Security,Security +321990,Security,Security +321983,Security,Security +318942,Security,Security +312846,Security,Security +282332,Security,Security +444922,Security,Security +400144,Security,Security +257810,Industry,Industry +429100,Small Business,Petites entreprises +352532,Health,Health +436060,Agriculture,Agriculture +429394,Agriculture,Agriculture +237075,Agriculture,Agriculture +237073,Agriculture,Agriculture +226850,Agriculture,Agriculture +223108,Agriculture,Agriculture +212441,Agriculture,Agriculture +341961,Agriculture,Agriculture +338856,Agriculture,Agriculture +338855,Agriculture,Agriculture +335910,Agriculture,Agriculture +335908,Agriculture,Agriculture +330114,Agriculture,Agriculture +330107,Agriculture,Agriculture +327607,Agriculture,Agriculture +325059,Agriculture,Agriculture +316027,Agriculture,Agriculture +313106,Agriculture,Agriculture +313104,Agriculture,Agriculture +313103,Agriculture,Agriculture +313102,Agriculture,Agriculture +313100,Agriculture,Agriculture +291311,Agriculture,Agriculture +291310,Agriculture,Agriculture +291309,Agriculture,Agriculture +282449,Agriculture,Agriculture +282431,Agriculture,Agriculture +282429,Agriculture,Agriculture +282410,Agriculture,Agriculture +277465,Agriculture,Agriculture +273659,Agriculture,Agriculture +264382,Agriculture,Agriculture +264381,Agriculture,Agriculture +259423,Agriculture,Agriculture +254492,Agriculture,Agriculture +250753,Agriculture,Agriculture +245473,Agriculture,Agriculture +245470,Agriculture,Agriculture +422719,Agriculture,Agriculture +418202,Agriculture,Agriculture +413549,Agriculture,Agriculture +413537,Agriculture,Agriculture +413530,Agriculture,Agriculture +405464,Agriculture,Agriculture +398889,Agriculture,Agriculture +391192,Agriculture,Agriculture +391187,Agriculture,Agriculture +388491,Agriculture,Agriculture +388487,Agriculture,Agriculture +388485,Agriculture,Agriculture +388480,Agriculture,Agriculture +388478,Agriculture,Agriculture +388475,Agriculture,Agriculture +383811,Agriculture,Agriculture +381691,Agriculture,Agriculture +381690,Agriculture,Agriculture +379853,Agriculture,Agriculture +377162,Agriculture,Agriculture +374940,Agriculture,Agriculture +372567,Agriculture,Agriculture +369141,Agriculture,Agriculture +366720,Agriculture,Agriculture +366718,Agriculture,Agriculture +361234,Agriculture,Agriculture +360002,Agriculture,Agriculture +357939,Agriculture,Agriculture +354113,Agriculture,Agriculture +543857,Agriculture,Agriculture +511268,Agriculture,Agriculture +508791,Agriculture,Agriculture +508790,Agriculture,Agriculture +498807,Agriculture,Agriculture +495878,Agriculture,Agriculture +493755,Agriculture,Agriculture +493753,Agriculture,Agriculture +482450,Agriculture,Agriculture +468037,Agriculture,Agriculture +452655,Agriculture,Agriculture +445450,Agriculture,Agriculture +445432,Agriculture,Agriculture +443855,Agriculture,Agriculture +485329,Environment,Environment +482453,Environment,Environment +212433,Environment,Environment +349379,Environment,Environment +409402,Environment,Environment +405464,Environment,Environment +398889,Environment,Environment +476128,Environment,Environment +468038,Environment,Environment +464561,Environment,Environment +445450,Environment,Environment +429397,Environment,Environment +426429,Environment,Environment +426424,Environment,Environment +426418,Environment,Environment +418202,Environment,Environment +543853,Environment,Environment +543849,Environment,Environment +541748,Environment,Environment +531611,Environment,Environment +526672,Environment,Environment +526670,Environment,Environment +526666,Environment,Environment +523030,Environment,Environment +523017,Environment,Environment +522996,Environment,Environment +519726,Environment,Environment +518037,Environment,Environment +511266,Environment,Environment +508701,Environment,Environment +508699,Environment,Environment +505835,Environment,Environment +487461,Environment,Environment +374937,Fisheries,Fisheries +535741,Fisheries,Fisheries +254493,Fisheries,Fisheries +254490,Fisheries,Fisheries +250716,Fisheries,Fisheries +250692,Fisheries,Fisheries +250684,Fisheries,Fisheries +250682,Fisheries,Fisheries +245460,Fisheries,Fisheries +241193,Fisheries,Fisheries +233729,Fisheries,Fisheries +226859,Fisheries,Fisheries +226854,Fisheries,Fisheries +223107,Fisheries,Fisheries +223106,Fisheries,Fisheries +218468,Fisheries,Fisheries +212447,Fisheries,Fisheries +207628,Fisheries,Fisheries +369139,Fisheries,Fisheries +357938,Fisheries,Fisheries +356404,Fisheries,Fisheries +349379,Fisheries,Fisheries +349376,Fisheries,Fisheries +343919,Fisheries,Fisheries +338854,Fisheries,Fisheries +330109,Fisheries,Fisheries +327607,Fisheries,Fisheries +322354,Fisheries,Fisheries +313108,Fisheries,Fisheries +313104,Fisheries,Fisheries +282411,Fisheries,Fisheries +273657,Fisheries,Fisheries +269582,Fisheries,Fisheries +269581,Fisheries,Fisheries +269580,Fisheries,Fisheries +269579,Fisheries,Fisheries +269578,Fisheries,Fisheries +269577,Fisheries,Fisheries +269567,Fisheries,Fisheries +269560,Fisheries,Fisheries +264387,Fisheries,Fisheries +264384,Fisheries,Fisheries +498785,Fisheries,Fisheries +470639,Fisheries,Fisheries +452654,Fisheries,Fisheries +452651,Fisheries,Fisheries +447884,Fisheries,Fisheries +445450,Fisheries,Fisheries +443844,Fisheries,Fisheries +439326,Fisheries,Fisheries +439321,Fisheries,Fisheries +431208,Fisheries,Fisheries +429417,Fisheries,Fisheries +429393,Fisheries,Fisheries +429383,Fisheries,Fisheries +426429,Fisheries,Fisheries +426427,Fisheries,Fisheries +426424,Fisheries,Fisheries +426418,Fisheries,Fisheries +424246,Fisheries,Fisheries +422718,Fisheries,Fisheries +418202,Fisheries,Fisheries +416340,Fisheries,Fisheries +416338,Fisheries,Fisheries +413539,Fisheries,Fisheries +413537,Fisheries,Fisheries +405464,Fisheries,Fisheries +403707,Fisheries,Fisheries +398896,Fisheries,Fisheries +398893,Fisheries,Fisheries +398889,Fisheries,Fisheries +398886,Fisheries,Fisheries +396370,Fisheries,Fisheries +388495,Fisheries,Fisheries +382516,Fisheries,Fisheries +273657,International Trade,International Trade +269581,International Trade,International Trade +269580,International Trade,International Trade +269579,International Trade,International Trade +269578,International Trade,International Trade +269577,International Trade,International Trade +269567,International Trade,International Trade +269560,International Trade,International Trade +264387,International Trade,International Trade +264384,International Trade,International Trade +250692,International Trade,International Trade +250684,International Trade,International Trade +250682,International Trade,International Trade +230049,International Trade,International Trade +223106,International Trade,International Trade +485329,International Trade,International Trade +482453,International Trade,International Trade +482450,International Trade,International Trade +480333,International Trade,International Trade +478096,International Trade,International Trade +476128,International Trade,International Trade +468039,International Trade,International Trade +468038,International Trade,International Trade +452656,International Trade,International Trade +452654,International Trade,International Trade +452651,International Trade,International Trade +450208,International Trade,International Trade +445450,International Trade,International Trade +443855,International Trade,International Trade +443853,International Trade,International Trade +443842,International Trade,International Trade +443840,International Trade,International Trade +439326,International Trade,International Trade +433515,International Trade,International Trade +431210,International Trade,International Trade +431208,International Trade,International Trade +429417,International Trade,International Trade +429397,International Trade,International Trade +429393,International Trade,International Trade +426429,International Trade,International Trade +426427,International Trade,International Trade +426424,International Trade,International Trade +426418,International Trade,International Trade +424246,International Trade,International Trade +422718,International Trade,International Trade +422717,International Trade,International Trade +418202,International Trade,International Trade +416340,International Trade,International Trade +416339,International Trade,International Trade +413549,International Trade,International Trade +409402,International Trade,International Trade +405464,International Trade,International Trade +403707,International Trade,International Trade +374937,International Trade,International Trade +349376,International Trade,International Trade +531611,International Trade,International Trade +513009,International Trade,International Trade +508704,International Trade,International Trade +508703,International Trade,International Trade +508699,International Trade,International Trade +498799,International Trade,International Trade +487461,International Trade,International Trade +487455,International Trade,International Trade +398896,Justice and Law Enforcement,Justice and Law Enforcement +398893,Justice and Law Enforcement,Justice and Law Enforcement +303889,Justice and Law Enforcement,Justice and Law Enforcement +282469,Justice and Law Enforcement,Justice and Law Enforcement +282431,Justice and Law Enforcement,Justice and Law Enforcement +388497,Justice and Law Enforcement,Justice and Law Enforcement +382518,Justice and Law Enforcement,Justice and Law Enforcement +379853,Justice and Law Enforcement,Justice and Law Enforcement +374937,Justice and Law Enforcement,Justice and Law Enforcement +369132,Justice and Law Enforcement,Justice and Law Enforcement +366718,Justice and Law Enforcement,Justice and Law Enforcement +361234,Justice and Law Enforcement,Justice and Law Enforcement +354110,Justice and Law Enforcement,Justice and Law Enforcement +343915,Justice and Law Enforcement,Justice and Law Enforcement +330115,Justice and Law Enforcement,Justice and Law Enforcement +330114,Justice and Law Enforcement,Justice and Law Enforcement +330107,Justice and Law Enforcement,Justice and Law Enforcement +327607,Justice and Law Enforcement,Justice and Law Enforcement +447884,Justice and Law Enforcement,Justice and Law Enforcement +445450,Justice and Law Enforcement,Justice and Law Enforcement +443844,Justice and Law Enforcement,Justice and Law Enforcement +439326,Justice and Law Enforcement,Justice and Law Enforcement +249822,International Trade,International Trade +207434,Mining,Mining +370498,Housing,Housing +339289,Housing,Housing +231172,Housing,Housing +231171,Housing,Housing +466147,Intellectual Property,Propriété intellectuelle +202848,Intellectual Property,Intellectual Property +504303,Security,Security +504302,Security,Security +321980,Security,Security +280882,Security,Security +273476,Security,Security +273473,Security,Security +253812,Security,Security +216171,Security,Security +210313,Security,Security +210311,Security,Security +210310,Security,Security +210309,Security,Security +206832,Security,Security +398825,Security,Security +393448,Security,Security +366409,Security,Security +357809,Security,Security +357366,Security,Security +357362,Security,Security +355488,Security,Security +355487,Security,Security +353785,Security,Security +350803,Security,Security +350801,Security,Security +348550,Security,Security +348549,Security,Security +344830,Security,Security +344829,Security,Security +343574,Security,Security +343573,Security,Security +327020,Security,Security +327019,Security,Security +327017,Security,Security +327016,Security,Security +327011,Security,Security +325199,Security,Security +324539,Security,Security +324534,Security,Security +324530,Security,Security +324528,Security,Security +324527,Security,Security +322000,Security,Security +321986,Security,Security +321982,Security,Security +501654,Security,Security +493004,Security,Security +469261,Security,Security +461164,Security,Security +415025,Security,Security +540772,Security,Security +540771,Security,Security +540770,Security,Security +524043,Security,Security +207541,Industry,Industry +243880,International Relations,International Relations +237063,International Relations,International Relations +211278,International Relations,International Relations +207541,International Relations,International Relations +280915,International Relations,International Relations +263609,International Relations,International Relations +361704,Economic Development,Economic Development +349178,Economic Development,Economic Development +311672,Economic Development,Economic Development +311670,Economic Development,Economic Development +361702,Energy,Energy +349178,Energy,Energy +311672,Energy,Energy +311670,Energy,Energy +311669,Energy,Energy +257891,Energy,Energy +257891,Environment,Environment +202188,Environment,Environment +361703,Environment,Environment +202187,Industry,Industry +349178,Industry,Industry +202168,Taxation and Finance,Taxation and Finance +349178,Taxation and Finance,Taxation and Finance +337092,Government Procurement,Government Procurement +337091,Government Procurement,Government Procurement +307409,Government Procurement,Government Procurement +299071,Government Procurement,Government Procurement +299049,Government Procurement,Government Procurement +299031,Government Procurement,Government Procurement +531760,Health,Health +461921,Industry,Industry +239670,Consumer Issues,Consumer Issues +239669,Consumer Issues,Consumer Issues +235009,Consumer Issues,Consumer Issues +234830,Consumer Issues,Consumer Issues +219727,Consumer Issues,Consumer Issues +211353,Consumer Issues,Consumer Issues +210108,Consumer Issues,Consumer Issues +210107,Consumer Issues,Consumer Issues +208947,Consumer Issues,Consumer Issues +205767,Consumer Issues,Consumer Issues +204667,Consumer Issues,Consumer Issues +204129,Consumer Issues,Consumer Issues +204128,Consumer Issues,Consumer Issues +203110,Consumer Issues,Consumer Issues +203109,Consumer Issues,Consumer Issues +203108,Consumer Issues,Consumer Issues +203107,Consumer Issues,Consumer Issues +315256,Consumer Issues,Consumer Issues +315255,Consumer Issues,Consumer Issues +315254,Consumer Issues,Consumer Issues +315253,Consumer Issues,Consumer Issues +315252,Consumer Issues,Consumer Issues +315251,Consumer Issues,Consumer Issues +239672,Consumer Issues,Consumer Issues +315253,Health,Health +315252,Health,Health +208947,Health,Health +205767,Health,Health +204667,Health,Health +204129,Health,Health +204128,Health,Health +203110,Health,Health +203109,Health,Health +203108,Health,Health +203107,Health,Health +315251,Health,Health +239672,Health,Health +239671,Health,Health +239670,Health,Health +239669,Health,Health +235009,Health,Health +234830,Health,Health +219727,Health,Health +211353,Health,Health +210108,Health,Health +210107,Health,Health +315256,Health,Health +315255,Health,Health +203107,Industry,Industry +315256,Industry,Industry +315255,Industry,Industry +315254,Industry,Industry +315253,Industry,Industry +315252,Industry,Industry +315251,Industry,Industry +239672,Industry,Industry +239671,Industry,Industry +239670,Industry,Industry +239669,Industry,Industry +235009,Industry,Industry +234830,Industry,Industry +219727,Industry,Industry +211353,Industry,Industry +210108,Industry,Industry +210107,Industry,Industry +208947,Industry,Industry +205767,Industry,Industry +204667,Industry,Industry +204129,Industry,Industry +204128,Industry,Industry +203110,Industry,Industry +203109,Industry,Industry +210107,Taxation and Finance,Taxation and Finance +208947,Taxation and Finance,Taxation and Finance +205767,Taxation and Finance,Taxation and Finance +204667,Taxation and Finance,Taxation and Finance +204129,Taxation and Finance,Taxation and Finance +204128,Taxation and Finance,Taxation and Finance +203110,Taxation and Finance,Taxation and Finance +203109,Taxation and Finance,Taxation and Finance +203108,Taxation and Finance,Taxation and Finance +203107,Taxation and Finance,Taxation and Finance +315256,Taxation and Finance,Taxation and Finance +315255,Taxation and Finance,Taxation and Finance +315254,Taxation and Finance,Taxation and Finance +315253,Taxation and Finance,Taxation and Finance +315252,Taxation and Finance,Taxation and Finance +315251,Taxation and Finance,Taxation and Finance +239672,Taxation and Finance,Taxation and Finance +239671,Taxation and Finance,Taxation and Finance +239670,Taxation and Finance,Taxation and Finance +239669,Taxation and Finance,Taxation and Finance +235009,Taxation and Finance,Taxation and Finance +234830,Taxation and Finance,Taxation and Finance +219727,Taxation and Finance,Taxation and Finance +211353,Taxation and Finance,Taxation and Finance +276667,Health,Health +321749,Infrastructure,Infrastructure +321483,Infrastructure,Infrastructure +294853,Infrastructure,Infrastructure +294852,Infrastructure,Infrastructure +276389,Infrastructure,Infrastructure +244215,Infrastructure,Infrastructure +223932,Infrastructure,Infrastructure +276389,Regional Development,Regional Development +244215,Regional Development,Regional Development +223932,Regional Development,Regional Development +223931,Regional Development,Regional Development +321749,Regional Development,Regional Development +223931,Transportation,Transportation +321749,Transportation,Transportation +321483,Transportation,Transportation +294852,Transportation,Transportation +276389,Transportation,Transportation +244215,Transportation,Transportation +534534,Employment and Training,Employment and Training +420502,Agriculture,Agriculture +420501,Agriculture,Agriculture +396800,Agriculture,Agriculture +394115,Agriculture,Agriculture +394112,Agriculture,Agriculture +378309,Agriculture,Agriculture +372610,Agriculture,Agriculture +370778,Agriculture,Agriculture +370777,Agriculture,Agriculture +370776,Agriculture,Agriculture +370775,Agriculture,Agriculture +350059,Agriculture,Agriculture +350058,Agriculture,Agriculture +350057,Agriculture,Agriculture +319889,Agriculture,Agriculture +260095,Agriculture,Agriculture +260094,Agriculture,Agriculture +260093,Agriculture,Agriculture +260092,Agriculture,Agriculture +521208,Agriculture,Agriculture +521207,Agriculture,Agriculture +496573,Agriculture,Agriculture +496489,Agriculture,Agriculture +496485,Agriculture,Agriculture +496484,Agriculture,Agriculture +463560,Agriculture,Agriculture +463559,Agriculture,Agriculture +463558,Agriculture,Agriculture +463557,Agriculture,Agriculture +463556,Agriculture,Agriculture +446241,Agriculture,Agriculture +446240,Agriculture,Agriculture +446239,Agriculture,Agriculture +394115,Health,Health +394112,Health,Health +260094,Health,Health +463560,Health,Health +463559,Health,Health +463558,Health,Health +463557,Health,Health +463556,Health,Health +446241,Health,Health +446240,Health,Health +446239,Health,Health +444642,Health,Health +420502,Health,Health +420501,Health,Health +394115,International Trade,International Trade +394112,International Trade,International Trade +378309,International Trade,International Trade +372610,International Trade,International Trade +370778,International Trade,International Trade +370777,International Trade,International Trade +370776,International Trade,International Trade +370775,International Trade,International Trade +350059,International Trade,International Trade +350058,International Trade,International Trade +350057,International Trade,International Trade +319889,International Trade,International Trade +260095,International Trade,International Trade +260093,International Trade,International Trade +260092,International Trade,International Trade +521208,International Trade,International Trade +521207,International Trade,International Trade +496573,International Trade,International Trade +496489,International Trade,International Trade +496485,International Trade,International Trade +496484,International Trade,International Trade +463560,International Trade,International Trade +463559,International Trade,International Trade +463558,International Trade,International Trade +463557,International Trade,International Trade +463556,International Trade,International Trade +446241,International Trade,International Trade +446240,International Trade,International Trade +446239,International Trade,International Trade +444642,International Trade,International Trade +420502,International Trade,International Trade +420501,International Trade,International Trade +206170,International Relations,International Relations +206167,International Relations,International Relations +309553,International Relations,International Relations +227282,Budget,Budget +227278,Budget,Budget +222671,Budget,Budget +222670,Budget,Budget +219712,Budget,Budget +219711,Budget,Budget +219710,Budget,Budget +219709,Budget,Budget +219708,Budget,Budget +219707,Budget,Budget +207202,Budget,Budget +207180,Budget,Budget +207160,Budget,Budget +204352,Budget,Budget +204351,Budget,Budget +204350,Budget,Budget +204349,Budget,Budget +204347,Budget,Budget +259504,Budget,Budget +259499,Budget,Budget +259496,Budget,Budget +259468,Budget,Budget +245818,Budget,Budget +245817,Budget,Budget +204352,Energy,Energy +204351,Energy,Energy +259501,Energy,Energy +259499,Energy,Energy +259496,Energy,Energy +259468,Energy,Energy +245818,Energy,Energy +245817,Energy,Energy +231149,Energy,Energy +227282,Energy,Energy +222671,Energy,Energy +222670,Energy,Energy +219712,Energy,Energy +219711,Energy,Energy +219710,Energy,Energy +219709,Energy,Energy +219708,Energy,Energy +219707,Energy,Energy +207182,Energy,Energy +207182,Industry,Industry +207160,Industry,Industry +204352,Industry,Industry +204351,Industry,Industry +204348,Industry,Industry +259501,Industry,Industry +259499,Industry,Industry +259496,Industry,Industry +245817,Industry,Industry +227282,Industry,Industry +222671,Industry,Industry +222670,Industry,Industry +219712,Industry,Industry +219711,Industry,Industry +219710,Industry,Industry +219709,Industry,Industry +263190,Transportation,Transportation +263189,Transportation,Transportation +230126,Transportation,Transportation +212434,Transportation,Transportation +212425,Transportation,Transportation +466466,Climate,Climate +463952,Climate,Climate +202597,Climate,Climate +392312,Climate,Climate +536766,Climate,Climate +204108,Labour,Labour +204107,Labour,Labour +234329,Labour,Labour +204968,Labour,Labour +204967,Financial Institutions,Financial Institutions +204107,Financial Institutions,Financial Institutions +228972,Financial Institutions,Financial Institutions +244214,Regional Development,Regional Development +244212,Regional Development,Regional Development +275375,Regional Development,Regional Development +275374,Economic Development,Economic Development +244214,Infrastructure,Infrastructure +244212,Infrastructure,Infrastructure +294851,Infrastructure,Infrastructure +294850,Infrastructure,Infrastructure +294849,Infrastructure,Infrastructure +275375,Infrastructure,Infrastructure +275375,Transportation,Transportation +275374,Transportation,Transportation +244214,Transportation,Transportation +244212,Transportation,Transportation +294851,Transportation,Transportation +294850,Transportation,Transportation +272082,Security,Security +264082,Security,Security +202692,Security,Security +253794,Security,Security +250119,Security,Security +241253,Security,Security +225568,Security,Security +354323,Security,Security +348353,Security,Security +341226,Security,Security +341218,Security,Security +333659,Security,Security +327230,Security,Security +315891,Security,Security +290610,Security,Security +313354,Climate,Climate +244372,Climate,Climate +202732,Climate,Climate +346578,Climate,Climate +346577,Climate,Climate +346558,Climate,Climate +339860,Climate,Climate +362314,Taxation and Finance,Impôts et finances +340425,Taxation and Finance,Impôts et finances +319071,Taxation and Finance,Impôts et finances +296783,Taxation and Finance,Impôts et finances +284309,Taxation and Finance,Impôts et finances +305931,International Development,International Development +305929,International Development,International Development +233529,International Development,International Development +202949,International Development,International Development +391249,International Development,International Development +383366,International Development,International Development +375915,International Development,International Development +374044,International Development,International Development +370415,International Development,International Development +355640,International Development,International Development +348640,International Development,International Development +343318,International Development,International Development +340579,International Development,International Development +340578,International Development,International Development +338342,International Development,International Development +338339,International Development,International Development +338277,International Development,International Development +338230,International Development,International Development +327636,International Development,International Development +327618,International Development,International Development +325291,International Development,International Development +325290,International Development,International Development +318923,International Development,International Development +317089,International Development,International Development +311189,International Development,International Development +450408,International Development,International Development +445214,International Development,International Development +441746,International Development,International Development +441740,International Development,International Development +422314,International Development,International Development +403642,International Development,International Development +400388,International Development,International Development +392846,International Development,International Development +528218,International Development,International Development +528217,International Development,International Development +528216,International Development,International Development +528215,International Development,International Development +528214,International Development,International Development +528213,International Development,International Development +528212,International Development,International Development +528211,International Development,International Development +487234,International Development,International Development +484974,International Development,International Development +481878,International Development,International Development +475850,International Development,International Development +471447,International Development,International Development +471396,International Development,International Development +471395,International Development,International Development +471394,International Development,International Development +471393,International Development,International Development +464454,International Development,International Development +458645,International Development,International Development +212521,Taxation and Finance,Taxation and Finance +431846,Regional Development,Regional Development +541988,Regional Development,Regional Development +243092,Regional Development,Regional Development +355866,Regional Development,Regional Development +352944,Regional Development,Regional Development +326762,Infrastructure,Infrastructure +326762,Transportation,Transportation +284369,Transportation,Transportation +329192,Transportation,Transportation +206130,Infrastructure,Infrastructure +206128,Infrastructure,Infrastructure +215831,Infrastructure,Infrastructure +215830,Infrastructure,Infrastructure +215829,Infrastructure,Infrastructure +215828,Infrastructure,Infrastructure +215827,Infrastructure,Infrastructure +211138,Infrastructure,Infrastructure +211136,Infrastructure,Infrastructure +206134,Infrastructure,Infrastructure +206627,Budget,Budget +370035,Budget,Budget +223854,Intellectual Property,Intellectual Property +376004,Industry,Industry +376003,Industry,Industry +272086,Industry,Industry +364885,Industry,Industry +359291,Industry,Industry +359224,Industry,Industry +353360,Industry,Industry +348401,Industry,Industry +348400,Industry,Industry +348399,Industry,Industry +348398,Industry,Industry +348397,Industry,Industry +348319,Industry,Industry +343606,Industry,Industry +324693,Industry,Industry +324502,Industry,Industry +324488,Industry,Industry +321591,Industry,Industry +321590,Industry,Industry +318512,Industry,Industry +318511,Industry,Industry +315404,Industry,Industry +315399,Industry,Industry +311070,Industry,Industry +303329,Industry,Industry +303323,Industry,Industry +291792,Industry,Industry +279947,Industry,Industry +279945,Industry,Industry +279944,Industry,Industry +279943,Industry,Industry +279942,Industry,Industry +279940,Industry,Industry +421980,Industry,Industry +420183,Industry,Industry +418110,Industry,Industry +416279,Industry,Industry +405687,Industry,Industry +403612,Industry,Industry +403596,Industry,Industry +400440,Industry,Industry +400439,Industry,Industry +396624,Industry,Industry +396261,Industry,Industry +396260,Industry,Industry +396259,Industry,Industry +393974,Industry,Industry +387874,Industry,Industry +387869,Industry,Industry +387862,Industry,Industry +380825,Industry,Industry +380823,Industry,Industry +380821,Industry,Industry +380753,Industry,Industry +380752,Industry,Industry +376006,Industry,Industry +343606,Internal Trade,Internal Trade +338829,Internal Trade,Internal Trade +337300,Internal Trade,Internal Trade +337299,Internal Trade,Internal Trade +315404,Internal Trade,Internal Trade +421980,Internal Trade,Internal Trade +420183,Internal Trade,Internal Trade +418110,Internal Trade,Internal Trade +416279,Internal Trade,Internal Trade +405687,Internal Trade,Internal Trade +403612,Internal Trade,Internal Trade +403596,Internal Trade,Internal Trade +400440,Internal Trade,Internal Trade +400439,Internal Trade,Internal Trade +396624,Internal Trade,Internal Trade +396261,Internal Trade,Internal Trade +396260,Internal Trade,Internal Trade +396259,Internal Trade,Internal Trade +393974,Internal Trade,Internal Trade +387874,Internal Trade,Internal Trade +387869,Internal Trade,Internal Trade +387862,Internal Trade,Internal Trade +380825,Internal Trade,Internal Trade +380823,Internal Trade,Internal Trade +380821,Internal Trade,Internal Trade +380753,Internal Trade,Internal Trade +380752,Internal Trade,Internal Trade +376311,Internal Trade,Internal Trade +376004,Internal Trade,Internal Trade +364885,Internal Trade,Internal Trade +359291,Internal Trade,Internal Trade +359224,Internal Trade,Internal Trade +353360,Internal Trade,Internal Trade +348401,Internal Trade,Internal Trade +348400,Internal Trade,Internal Trade +348399,Internal Trade,Internal Trade +348398,Internal Trade,Internal Trade +348397,Internal Trade,Internal Trade +403596,International Relations,International Relations +400440,International Relations,International Relations +400439,International Relations,International Relations +396624,International Relations,International Relations +396261,International Relations,International Relations +396260,International Relations,International Relations +396259,International Relations,International Relations +393974,International Relations,International Relations +387874,International Relations,International Relations +387869,International Relations,International Relations +387862,International Relations,International Relations +376311,International Relations,International Relations +376006,International Relations,International Relations +376005,International Relations,International Relations +376004,International Relations,International Relations +376003,International Relations,International Relations +364885,International Relations,International Relations +359291,International Relations,International Relations +359224,International Relations,International Relations +353360,International Relations,International Relations +348401,International Relations,International Relations +348400,International Relations,International Relations +348399,International Relations,International Relations +348398,International Relations,International Relations +348397,International Relations,International Relations +348319,International Relations,International Relations +338829,International Relations,International Relations +337300,International Relations,International Relations +337299,International Relations,International Relations +421980,International Relations,International Relations +420183,International Relations,International Relations +418110,International Relations,International Relations +416279,International Relations,International Relations +405687,International Relations,International Relations +359291,International Trade,International Trade +359224,International Trade,International Trade +353360,International Trade,International Trade +348401,International Trade,International Trade +348400,International Trade,International Trade +348399,International Trade,International Trade +348398,International Trade,International Trade +348397,International Trade,International Trade +348319,International Trade,International Trade +343606,International Trade,International Trade +338829,International Trade,International Trade +337300,International Trade,International Trade +337299,International Trade,International Trade +324693,International Trade,International Trade +324502,International Trade,International Trade +324488,International Trade,International Trade +321591,International Trade,International Trade +321590,International Trade,International Trade +318512,International Trade,International Trade +318511,International Trade,International Trade +315399,International Trade,International Trade +311070,International Trade,International Trade +303329,International Trade,International Trade +303323,International Trade,International Trade +291792,International Trade,International Trade +279947,International Trade,International Trade +279945,International Trade,International Trade +279944,International Trade,International Trade +279943,International Trade,International Trade +279942,International Trade,International Trade +279940,International Trade,International Trade +272086,International Trade,International Trade +272081,International Trade,International Trade +272074,International Trade,International Trade +272071,International Trade,International Trade +259871,International Trade,International Trade +259059,International Trade,International Trade +226870,International Trade,International Trade +421980,International Trade,International Trade +420183,International Trade,International Trade +418110,International Trade,International Trade +416279,International Trade,International Trade +405687,International Trade,International Trade +403612,International Trade,International Trade +403596,International Trade,International Trade +400440,International Trade,International Trade +400439,International Trade,International Trade +396624,International Trade,International Trade +396261,International Trade,International Trade +396260,International Trade,International Trade +396259,International Trade,International Trade +393974,International Trade,International Trade +387874,International Trade,International Trade +387869,International Trade,International Trade +387862,International Trade,International Trade +380825,International Trade,International Trade +380823,International Trade,International Trade +380821,International Trade,International Trade +380753,International Trade,International Trade +380752,International Trade,International Trade +376311,International Trade,International Trade +376006,International Trade,International Trade +376005,International Trade,International Trade +376004,International Trade,International Trade +376003,International Trade,International Trade +369056,International Trade,International Trade +369048,International Trade,International Trade +435564,Budget,Budget +435561,Budget,Budget +203851,Budget,Budget +522019,Budget,Budget +517823,Budget,Budget +512917,Budget,Budget +505646,Budget,Budget +501339,Budget,Budget +500209,Budget,Budget +497024,Budget,Budget +483944,Budget,Budget +482922,Budget,Budget +482921,Budget,Budget +482920,Budget,Budget +481111,Budget,Budget +481110,Budget,Budget +480664,Budget,Budget +478589,Budget,Budget +478587,Budget,Budget +463738,Budget,Budget +456641,Budget,Budget +372624,Security,Security +369777,Security,Security +332133,Security,Security +332129,Security,Security +429154,Security,Security +429087,Security,Security +429085,Security,Security +429083,Security,Security +429081,Security,Security +428852,Security,Security +428846,Security,Security +428845,Security,Security +428840,Security,Security +372670,Security,Security +372666,Security,Security +372665,Security,Security +372662,Security,Security +372660,Security,Security +372657,Security,Security +372655,Security,Security +372653,Security,Security +372650,Security,Security +372647,Security,Security +372643,Security,Security +372640,Security,Security +372636,Security,Security +372635,Security,Security +372631,Security,Security +243772,Health,Health +243771,Health,Health +243770,Health,Health +243769,Health,Health +243756,Health,Health +242930,Health,Health +262911,Health,Health +248590,Health,Health +243774,Health,Health +243756,Industry,Industry +242930,Industry,Industry +262911,Industry,Industry +248590,Industry,Industry +243774,Industry,Industry +243773,Industry,Industry +243772,Industry,Industry +243771,Industry,Industry +239491,Transportation,Transportation +239490,Transportation,Transportation +238589,Transportation,Transportation +238269,Transportation,Transportation +231869,Transportation,Transportation +325362,Transportation,Transportation +325361,Transportation,Transportation +325355,Transportation,Transportation +292391,Transportation,Transportation +290129,Transportation,Transportation +276630,Transportation,Transportation +241689,Transportation,Transportation +241410,Transportation,Transportation +437486,Transportation,Transportation +437484,Transportation,Transportation +437483,Transportation,Transportation +437474,Transportation,Transportation +437468,Transportation,Transportation +216072,Immigration,Immigration +325360,Immigration,Immigration +410888,Labour,Labour +410886,Labour,Labour +292391,Labour,Labour +292390,Labour,Labour +276493,Labour,Labour +265729,Labour,Labour +265190,Labour,Labour +261929,Labour,Labour +252435,Labour,Labour +250862,Labour,Labour +220367,Labour,Labour +214507,Labour,Labour +378977,Labour,Labour +378968,Labour,Labour +378966,Labour,Labour +378936,Labour,Labour +378934,Labour,Labour +378902,Labour,Labour +378901,Labour,Labour +378899,Labour,Labour +378865,Labour,Labour +437488,Labour,Labour +437485,Labour,Labour +437484,Labour,Labour +437482,Labour,Labour +437479,Labour,Labour +437478,Labour,Labour +437477,Labour,Labour +437476,Labour,Labour +437475,Labour,Labour +437467,Labour,Labour +437466,Labour,Labour +437465,Labour,Labour +437462,Labour,Labour +437460,Labour,Labour +437459,Labour,Labour +437458,Labour,Labour +437457,Labour,Labour +410968,Labour,Labour +410959,Labour,Labour +410952,Labour,Labour +410951,Labour,Labour +410948,Labour,Labour +410938,Labour,Labour +410933,Labour,Labour +410932,Labour,Labour +410906,Labour,Labour +410902,Labour,Labour +410900,Labour,Labour +244200,Consumer Issues,Consumer Issues +244194,Consumer Issues,Consumer Issues +236013,Consumer Issues,Consumer Issues +236012,Consumer Issues,Consumer Issues +223090,Consumer Issues,Consumer Issues +283349,Consumer Issues,Consumer Issues +280785,Consumer Issues,Consumer Issues +266049,Consumer Issues,Consumer Issues +259389,Consumer Issues,Consumer Issues +259368,Consumer Issues,Consumer Issues +259366,Consumer Issues,Consumer Issues +259363,Consumer Issues,Consumer Issues +259358,Consumer Issues,Consumer Issues +244216,Consumer Issues,Consumer Issues +223084,Industry,Industry +207589,Industry,Industry +304810,Industry,Industry +304809,Industry,Industry +280791,Industry,Industry +280788,Industry,Industry +280787,Industry,Industry +280786,Industry,Industry +280785,Industry,Industry +280782,Industry,Industry +277375,Industry,Industry +266050,Industry,Industry +266049,Industry,Industry +259363,Industry,Industry +259358,Industry,Industry +244216,Industry,Industry +244213,Industry,Industry +244200,Industry,Industry +244194,Industry,Industry +236012,Industry,Industry +223090,Industry,Industry +223088,Industry,Industry +315252,Justice and Law Enforcement,Justice and Law Enforcement +315251,Justice and Law Enforcement,Justice and Law Enforcement +239672,Justice and Law Enforcement,Justice and Law Enforcement +239671,Justice and Law Enforcement,Justice and Law Enforcement +239670,Justice and Law Enforcement,Justice and Law Enforcement +239669,Justice and Law Enforcement,Justice and Law Enforcement +235009,Justice and Law Enforcement,Justice and Law Enforcement +234830,Justice and Law Enforcement,Justice and Law Enforcement +219727,Justice and Law Enforcement,Justice and Law Enforcement +211353,Justice and Law Enforcement,Justice and Law Enforcement +210108,Justice and Law Enforcement,Justice and Law Enforcement +210107,Justice and Law Enforcement,Justice and Law Enforcement +208947,Justice and Law Enforcement,Justice and Law Enforcement +205767,Justice and Law Enforcement,Justice and Law Enforcement +204667,Justice and Law Enforcement,Justice and Law Enforcement +315256,Justice and Law Enforcement,Justice and Law Enforcement +315255,Justice and Law Enforcement,Justice and Law Enforcement +315254,Justice and Law Enforcement,Justice and Law Enforcement +249820,Budget,Budget +496611,Budget,Budget +248154,Budget,Budget +248153,Budget,Budget +248152,Budget,Budget +228551,Budget,Budget +228549,Budget,Budget +220147,Budget,Budget +212987,Budget,Budget +212295,Budget,Budget +211030,Budget,Budget +209888,Budget,Budget +209887,Budget,Budget +384547,Budget,Budget +352066,Budget,Budget +352065,Budget,Budget +339220,Budget,Budget +301474,Budget,Budget +301473,Budget,Budget +301472,Budget,Budget +301471,Budget,Budget +301470,Budget,Budget +301469,Budget,Budget +298454,Budget,Budget +298449,Budget,Budget +272631,Budget,Budget +264441,Budget,Budget +339219,Taxation and Finance,Impôts et finances +485780,Taxation and Finance,Impôts et finances +301473,Taxation and Finance,Impôts et finances +301472,Taxation and Finance,Impôts et finances +301470,Taxation and Finance,Impôts et finances +301469,Taxation and Finance,Impôts et finances +249820,Taxation and Finance,Impôts et finances +248154,Taxation and Finance,Impôts et finances +248153,Taxation and Finance,Impôts et finances +248152,Taxation and Finance,Impôts et finances +228551,Taxation and Finance,Impôts et finances +228549,Taxation and Finance,Impôts et finances +212987,Taxation and Finance,Impôts et finances +212295,Taxation and Finance,Impôts et finances +211030,Taxation and Finance,Impôts et finances +209888,Taxation and Finance,Impôts et finances +209887,Taxation and Finance,Impôts et finances +355580,Taxation and Finance,Impôts et finances +224031,Health,Health +429387,Intellectual Property,Intellectual Property +429368,Intellectual Property,Intellectual Property +210828,Intellectual Property,Intellectual Property +210827,Intellectual Property,Intellectual Property +210669,Intellectual Property,Intellectual Property +211091,Intellectual Property,Intellectual Property +211090,Intellectual Property,Intellectual Property +211089,Intellectual Property,Intellectual Property +211088,Intellectual Property,Intellectual Property +211087,Intellectual Property,Intellectual Property +210901,Intellectual Property,Intellectual Property +210894,Intellectual Property,Intellectual Property +210891,Intellectual Property,Intellectual Property +210889,Intellectual Property,Intellectual Property +210886,Intellectual Property,Intellectual Property +210884,Intellectual Property,Intellectual Property +210883,Intellectual Property,Intellectual Property +210882,Intellectual Property,Intellectual Property +210880,Intellectual Property,Intellectual Property +210875,Intellectual Property,Intellectual Property +210874,Intellectual Property,Intellectual Property +210873,Intellectual Property,Intellectual Property +210834,Intellectual Property,Intellectual Property +210832,Intellectual Property,Intellectual Property +395694,Intellectual Property,Intellectual Property +375920,Intellectual Property,Intellectual Property +375156,Intellectual Property,Intellectual Property +372778,Intellectual Property,Intellectual Property +372776,Intellectual Property,Intellectual Property +372769,Intellectual Property,Intellectual Property +356522,Intellectual Property,Intellectual Property +341623,Intellectual Property,Intellectual Property +341620,Intellectual Property,Intellectual Property +338268,Intellectual Property,Intellectual Property +250762,Intellectual Property,Intellectual Property +236789,Intellectual Property,Intellectual Property +466290,Agriculture,Agriculture +437535,Agriculture,Agriculture +257489,Agriculture,Agriculture +206068,Agriculture,Agriculture +368568,Agriculture,Agriculture +368567,Agriculture,Agriculture +368565,Agriculture,Agriculture +368564,Agriculture,Agriculture +368563,Agriculture,Agriculture +368561,Agriculture,Agriculture +368560,Agriculture,Agriculture +347690,Agriculture,Agriculture +347689,Agriculture,Agriculture +347688,Agriculture,Agriculture +347687,Agriculture,Agriculture +347686,Agriculture,Agriculture +322629,Agriculture,Agriculture +206068,Consumer Issues,Consumer Issues +526792,Consumer Issues,Consumer Issues +445203,Health,Health +526792,Health,Health +206068,Health,Health +257489,Health,Health +419714,Health,Health +419713,Health,Health +419712,Health,Health +419711,Health,Health +419709,Health,Health +419708,Health,Health +393858,Health,Health +393857,Health,Health +393856,Health,Health +393855,Health,Health +393853,Health,Health +526792,International Trade,International Trade +466290,International Trade,International Trade +368564,International Trade,International Trade +368563,International Trade,International Trade +368561,International Trade,International Trade +368560,International Trade,International Trade +347690,International Trade,International Trade +347689,International Trade,International Trade +347688,International Trade,International Trade +347687,International Trade,International Trade +347686,International Trade,International Trade +257489,International Trade,International Trade +206068,International Trade,International Trade +445203,International Trade,International Trade +437535,International Trade,International Trade +419714,International Trade,International Trade +419713,International Trade,International Trade +419712,International Trade,International Trade +419711,International Trade,International Trade +419709,International Trade,International Trade +419708,International Trade,International Trade +393858,International Trade,International Trade +393857,International Trade,International Trade +393856,International Trade,International Trade +393855,International Trade,International Trade +393853,International Trade,International Trade +368568,International Trade,International Trade +368567,International Trade,International Trade +417193,Agriculture,Agriculture +417190,Agriculture,Agriculture +206275,Agriculture,Agriculture +408467,Agriculture,Agriculture +408466,Agriculture,Agriculture +380374,Agriculture,Agriculture +378394,Agriculture,Agriculture +378393,Agriculture,Agriculture +378392,Agriculture,Agriculture +378391,Agriculture,Agriculture +368542,Agriculture,Agriculture +368541,Agriculture,Agriculture +368540,Agriculture,Agriculture +368539,Agriculture,Agriculture +368538,Agriculture,Agriculture +368537,Agriculture,Agriculture +357638,Agriculture,Agriculture +357637,Agriculture,Agriculture +350393,Agriculture,Agriculture +347886,Agriculture,Agriculture +347667,Agriculture,Agriculture +347666,Agriculture,Agriculture +347665,Agriculture,Agriculture +347664,Agriculture,Agriculture +347663,Agriculture,Agriculture +336395,Agriculture,Agriculture +336394,Agriculture,Agriculture +317730,Agriculture,Agriculture +317729,Agriculture,Agriculture +292810,Agriculture,Agriculture +268909,Agriculture,Agriculture +229909,Agriculture,Agriculture +466347,Agriculture,Agriculture +466004,Agriculture,Agriculture +408466,Consumer Issues,Consumer Issues +408467,Health,Health +408466,Health,Health +466347,Health,Health +466004,Health,Health +445220,Health,Health +419699,Health,Health +419697,Health,Health +419696,Health,Health +419695,Health,Health +419694,Health,Health +417193,Health,Health +445220,International Trade,International Trade +437539,International Trade,International Trade +344677,International Trade,International Trade +317730,International Trade,International Trade +317729,International Trade,International Trade +206275,International Trade,International Trade +419699,International Trade,International Trade +419697,International Trade,International Trade +419696,International Trade,International Trade +419695,International Trade,International Trade +419694,International Trade,International Trade +417193,International Trade,International Trade +417190,International Trade,International Trade +378394,International Trade,International Trade +378393,International Trade,International Trade +378392,International Trade,International Trade +378391,International Trade,International Trade +368542,International Trade,International Trade +368541,International Trade,International Trade +368540,International Trade,International Trade +368539,International Trade,International Trade +368538,International Trade,International Trade +368537,International Trade,International Trade +350393,International Trade,International Trade +347667,International Trade,International Trade +347666,International Trade,International Trade +347665,International Trade,International Trade +347664,International Trade,International Trade +347663,International Trade,International Trade +466347,International Trade,International Trade +459579,Budget,Budget +458387,Budget,Budget +375877,Budget,Budget +373134,Budget,Budget +368694,Budget,Budget +366452,Budget,Budget +364813,Budget,Budget +362427,Budget,Budget +359605,Budget,Budget +359603,Budget,Budget +359602,Budget,Budget +355807,Budget,Budget +355805,Budget,Budget +348612,Budget,Budget +343854,Budget,Budget +338359,Budget,Budget +338358,Budget,Budget +338357,Budget,Budget +335715,Budget,Budget +331372,Budget,Budget +331365,Budget,Budget +327748,Budget,Budget +327745,Budget,Budget +325082,Budget,Budget +318287,Budget,Budget +318286,Budget,Budget +318280,Budget,Budget +314454,Budget,Budget +314452,Budget,Budget +310738,Budget,Budget +305112,Budget,Budget +305111,Budget,Budget +287052,Budget,Budget +273693,Budget,Budget +273691,Budget,Budget +273690,Budget,Budget +259598,Budget,Budget +247656,Budget,Budget +240844,Budget,Budget +240838,Budget,Budget +240833,Budget,Budget +233696,Budget,Budget +233695,Budget,Budget +233690,Budget,Budget +230078,Budget,Budget +230077,Budget,Budget +217853,Budget,Budget +207196,Budget,Budget +456706,Budget,Budget +456704,Budget,Budget +451043,Budget,Budget +451042,Budget,Budget +451039,Budget,Budget +451036,Budget,Budget +451035,Budget,Budget +451033,Budget,Budget +448948,Budget,Budget +448947,Budget,Budget +448944,Budget,Budget +447100,Budget,Budget +443445,Budget,Budget +443444,Budget,Budget +441643,Budget,Budget +441638,Budget,Budget +441634,Budget,Budget +441628,Budget,Budget +438789,Budget,Budget +438787,Budget,Budget +438786,Budget,Budget +438784,Budget,Budget +438781,Budget,Budget +438779,Budget,Budget +438777,Budget,Budget +438775,Budget,Budget +438772,Budget,Budget +438764,Budget,Budget +438763,Budget,Budget +435163,Budget,Budget +435159,Budget,Budget +435154,Budget,Budget +435151,Budget,Budget +435147,Budget,Budget +432515,Budget,Budget +432509,Budget,Budget +432506,Budget,Budget +428309,Budget,Budget +428304,Budget,Budget +424912,Budget,Budget +423935,Budget,Budget +423934,Budget,Budget +423930,Budget,Budget +423928,Budget,Budget +421362,Budget,Budget +421360,Budget,Budget +421359,Budget,Budget +421358,Budget,Budget +419625,Budget,Budget +419622,Budget,Budget +419620,Budget,Budget +410350,Budget,Budget +410348,Budget,Budget +405337,Budget,Budget +386733,Budget,Budget +386665,Budget,Budget +383842,Budget,Budget +382039,Budget,Budget +380429,Budget,Budget +379904,Budget,Budget +540107,Budget,Budget +535649,Budget,Budget +531180,Budget,Budget +527978,Budget,Budget +527977,Budget,Budget +527976,Budget,Budget +527975,Budget,Budget +527974,Budget,Budget +527972,Budget,Budget +527970,Budget,Budget +524551,Budget,Budget +524550,Budget,Budget +524546,Budget,Budget +524542,Budget,Budget +524437,Budget,Budget +524432,Budget,Budget +522584,Budget,Budget +522572,Budget,Budget +519574,Budget,Budget +519572,Budget,Budget +519565,Budget,Budget +517412,Budget,Budget +514724,Budget,Budget +513242,Budget,Budget +513241,Budget,Budget +510775,Budget,Budget +510764,Budget,Budget +510751,Budget,Budget +507531,Budget,Budget +507530,Budget,Budget +503817,Budget,Budget +503816,Budget,Budget +503814,Budget,Budget +503813,Budget,Budget +502942,Budget,Budget +502941,Budget,Budget +502938,Budget,Budget +499002,Budget,Budget +499000,Budget,Budget +498968,Budget,Budget +498963,Budget,Budget +498958,Budget,Budget +493627,Budget,Budget +493626,Budget,Budget +489400,Budget,Budget +489398,Budget,Budget +489396,Budget,Budget +489394,Budget,Budget +489389,Budget,Budget +489388,Budget,Budget +489387,Budget,Budget +486960,Budget,Budget +486952,Budget,Budget +486951,Budget,Budget +486942,Budget,Budget +486939,Budget,Budget +486936,Budget,Budget +483484,Budget,Budget +481487,Budget,Budget +481485,Budget,Budget +479403,Budget,Budget +479397,Budget,Budget +473039,Budget,Budget +470696,Budget,Budget +466647,Budget,Budget +466646,Budget,Budget +463418,Budget,Budget +463416,Budget,Budget +463415,Budget,Budget +463413,Budget,Budget +463411,Budget,Budget +463410,Budget,Budget +463408,Budget,Budget +462540,Budget,Budget +462536,Budget,Budget +462535,Budget,Budget +462533,Budget,Budget +477836,Climate,Climate +473043,Climate,Climate +259598,Climate,Climate +247658,Climate,Climate +217781,Climate,Climate +386665,Climate,Climate +382041,Climate,Climate +380427,Climate,Climate +379902,Climate,Climate +374958,Climate,Climate +374955,Climate,Climate +373134,Climate,Climate +368691,Climate,Climate +366453,Climate,Climate +359602,Climate,Climate +355806,Climate,Climate +353172,Climate,Climate +310738,Climate,Climate +259599,Climate,Climate +463418,Climate,Climate +463413,Climate,Climate +463411,Climate,Climate +463408,Climate,Climate +462539,Climate,Climate +462535,Climate,Climate +462533,Climate,Climate +456703,Climate,Climate +455003,Climate,Climate +455001,Climate,Climate +454999,Climate,Climate +454997,Climate,Climate +454988,Climate,Climate +454986,Climate,Climate +454984,Climate,Climate +451043,Climate,Climate +451035,Climate,Climate +451033,Climate,Climate +448947,Climate,Climate +448946,Climate,Climate +447094,Climate,Climate +444445,Climate,Climate +444443,Climate,Climate +443445,Climate,Climate +441643,Climate,Climate +441638,Climate,Climate +441628,Climate,Climate +441621,Climate,Climate +438787,Climate,Climate +438786,Climate,Climate +438777,Climate,Climate +438775,Climate,Climate +438771,Climate,Climate +435163,Climate,Climate +435159,Climate,Climate +435154,Climate,Climate +435151,Climate,Climate +433558,Climate,Climate +432509,Climate,Climate +432506,Climate,Climate +432504,Climate,Climate +432502,Climate,Climate +417781,Climate,Climate +414495,Climate,Climate +414493,Climate,Climate +414492,Climate,Climate +414487,Climate,Climate +410357,Climate,Climate +410351,Climate,Climate +407223,Climate,Climate +402802,Climate,Climate +400955,Climate,Climate +543514,Climate,Climate +541322,Climate,Climate +541320,Climate,Climate +540107,Climate,Climate +536950,Climate,Climate +536947,Climate,Climate +536943,Climate,Climate +536926,Climate,Climate +535651,Climate,Climate +535649,Climate,Climate +531183,Climate,Climate +531180,Climate,Climate +527977,Climate,Climate +527976,Climate,Climate +527975,Climate,Climate +527974,Climate,Climate +527972,Climate,Climate +527970,Climate,Climate +524551,Climate,Climate +524541,Climate,Climate +522584,Climate,Climate +519572,Climate,Climate +519568,Climate,Climate +519563,Climate,Climate +519560,Climate,Climate +517412,Climate,Climate +517395,Climate,Climate +517384,Climate,Climate +517364,Climate,Climate +514724,Climate,Climate +513241,Climate,Climate +510775,Climate,Climate +510762,Climate,Climate +510751,Climate,Climate +509447,Climate,Climate +507534,Climate,Climate +507531,Climate,Climate +507530,Climate,Climate +507527,Climate,Climate +503816,Climate,Climate +503814,Climate,Climate +503813,Climate,Climate +502941,Climate,Climate +502938,Climate,Climate +499000,Climate,Climate +498968,Climate,Climate +493627,Climate,Climate +489390,Climate,Climate +489389,Climate,Climate +489384,Climate,Climate +486960,Climate,Climate +486951,Climate,Climate +483494,Climate,Climate +483491,Climate,Climate +483488,Climate,Climate +483482,Climate,Climate +482666,Climate,Climate +481492,Climate,Climate +489384,Economic Development,Economic Development +240838,Economic Development,Economic Development +240833,Economic Development,Economic Development +237076,Economic Development,Economic Development +233696,Economic Development,Economic Development +233695,Economic Development,Economic Development +233692,Economic Development,Economic Development +233691,Economic Development,Economic Development +233690,Economic Development,Economic Development +226964,Economic Development,Economic Development +207196,Economic Development,Economic Development +327748,Economic Development,Economic Development +327745,Economic Development,Economic Development +325082,Economic Development,Economic Development +322307,Economic Development,Economic Development +322302,Economic Development,Economic Development +322301,Economic Development,Economic Development +322300,Economic Development,Economic Development +322298,Economic Development,Economic Development +322292,Economic Development,Economic Development +318287,Economic Development,Economic Development +318286,Economic Development,Economic Development +318280,Economic Development,Economic Development +314453,Economic Development,Economic Development +314452,Economic Development,Economic Development +310738,Economic Development,Economic Development +310737,Economic Development,Economic Development +310736,Economic Development,Economic Development +310735,Economic Development,Economic Development +310734,Economic Development,Economic Development +310733,Economic Development,Economic Development +305112,Economic Development,Economic Development +305111,Economic Development,Economic Development +296877,Economic Development,Economic Development +287063,Economic Development,Economic Development +287061,Economic Development,Economic Development +277545,Economic Development,Economic Development +273693,Economic Development,Economic Development +273691,Economic Development,Economic Development +273690,Economic Development,Economic Development +264503,Economic Development,Economic Development +264501,Economic Development,Economic Development +264499,Economic Development,Economic Development +259598,Economic Development,Economic Development +247656,Economic Development,Economic Development +245097,Economic Development,Economic Development +245095,Economic Development,Economic Development +241077,Economic Development,Economic Development +241071,Economic Development,Economic Development +240973,Economic Development,Economic Development +240844,Economic Development,Economic Development +410351,Economic Development,Economic Development +410350,Economic Development,Economic Development +410349,Economic Development,Economic Development +410348,Economic Development,Economic Development +407223,Economic Development,Economic Development +407222,Economic Development,Economic Development +407221,Economic Development,Economic Development +406898,Economic Development,Economic Development +405337,Economic Development,Economic Development +405333,Economic Development,Economic Development +405331,Economic Development,Economic Development +402802,Economic Development,Economic Development +402799,Economic Development,Economic Development +400961,Economic Development,Economic Development +400955,Economic Development,Economic Development +398873,Economic Development,Economic Development +394194,Economic Development,Economic Development +394105,Economic Development,Economic Development +386733,Economic Development,Economic Development +386665,Economic Development,Economic Development +383842,Economic Development,Economic Development +383840,Economic Development,Economic Development +382041,Economic Development,Economic Development +382039,Economic Development,Economic Development +375877,Economic Development,Economic Development +373134,Economic Development,Economic Development +372413,Economic Development,Economic Development +372403,Economic Development,Economic Development +368694,Economic Development,Economic Development +368688,Economic Development,Economic Development +366453,Economic Development,Economic Development +366452,Economic Development,Economic Development +366451,Economic Development,Economic Development +364814,Economic Development,Economic Development +364813,Economic Development,Economic Development +362965,Economic Development,Economic Development +362427,Economic Development,Economic Development +362426,Economic Development,Economic Development +361325,Economic Development,Economic Development +361323,Economic Development,Economic Development +359606,Economic Development,Economic Development +359603,Economic Development,Economic Development +359602,Economic Development,Economic Development +357060,Economic Development,Economic Development +357059,Economic Development,Economic Development +355808,Economic Development,Economic Development +355807,Economic Development,Economic Development +355805,Economic Development,Economic Development +353683,Economic Development,Economic Development +353682,Economic Development,Economic Development +353176,Economic Development,Economic Development +351423,Economic Development,Economic Development +351422,Economic Development,Economic Development +351421,Economic Development,Economic Development +351420,Economic Development,Economic Development +348613,Economic Development,Economic Development +348612,Economic Development,Economic Development +348611,Economic Development,Economic Development +348609,Economic Development,Economic Development +348608,Economic Development,Economic Development +347181,Economic Development,Economic Development +347178,Economic Development,Economic Development +343854,Economic Development,Economic Development +341263,Economic Development,Economic Development +341257,Economic Development,Economic Development +341252,Economic Development,Economic Development +341249,Economic Development,Economic Development +341246,Economic Development,Economic Development +341240,Economic Development,Economic Development +341234,Economic Development,Economic Development +341223,Economic Development,Economic Development +341212,Economic Development,Economic Development +338360,Economic Development,Economic Development +335715,Economic Development,Economic Development +331374,Economic Development,Economic Development +331373,Economic Development,Economic Development +331372,Economic Development,Economic Development +331366,Economic Development,Economic Development +331365,Economic Development,Economic Development +329831,Economic Development,Economic Development +486960,Economic Development,Economic Development +486955,Economic Development,Economic Development +486952,Economic Development,Economic Development +486951,Economic Development,Economic Development +486942,Economic Development,Economic Development +486939,Economic Development,Economic Development +486936,Economic Development,Economic Development +483494,Economic Development,Economic Development +483491,Economic Development,Economic Development +483488,Economic Development,Economic Development +483486,Economic Development,Economic Development +483484,Economic Development,Economic Development +481500,Economic Development,Economic Development +481494,Economic Development,Economic Development +481492,Economic Development,Economic Development +481487,Economic Development,Economic Development +481485,Economic Development,Economic Development +481484,Economic Development,Economic Development +479729,Economic Development,Economic Development +479399,Economic Development,Economic Development +477858,Economic Development,Economic Development +477848,Economic Development,Economic Development +477844,Economic Development,Economic Development +475162,Economic Development,Economic Development +475160,Economic Development,Economic Development +475158,Economic Development,Economic Development +473043,Economic Development,Economic Development +473039,Economic Development,Economic Development +473036,Economic Development,Economic Development +473034,Economic Development,Economic Development +473032,Economic Development,Economic Development +473024,Economic Development,Economic Development +472989,Economic Development,Economic Development +472984,Economic Development,Economic Development +470709,Economic Development,Economic Development +470702,Economic Development,Economic Development +466649,Economic Development,Economic Development +466648,Economic Development,Economic Development +466647,Economic Development,Economic Development +466646,Economic Development,Economic Development +463418,Economic Development,Economic Development +463416,Economic Development,Economic Development +463415,Economic Development,Economic Development +463413,Economic Development,Economic Development +463411,Economic Development,Economic Development +463410,Economic Development,Economic Development +462540,Economic Development,Economic Development +462539,Economic Development,Economic Development +462535,Economic Development,Economic Development +462533,Economic Development,Economic Development +461170,Economic Development,Economic Development +461169,Economic Development,Economic Development +460712,Economic Development,Economic Development +460710,Economic Development,Economic Development +459950,Economic Development,Economic Development +459949,Economic Development,Economic Development +459948,Economic Development,Economic Development +459587,Economic Development,Economic Development +459584,Economic Development,Economic Development +459582,Economic Development,Economic Development +459579,Economic Development,Economic Development +458390,Economic Development,Economic Development +458389,Economic Development,Economic Development +458387,Economic Development,Economic Development +456706,Economic Development,Economic Development +456705,Economic Development,Economic Development +456704,Economic Development,Economic Development +456703,Economic Development,Economic Development +456702,Economic Development,Economic Development +455003,Economic Development,Economic Development +454999,Economic Development,Economic Development +454997,Economic Development,Economic Development +454993,Economic Development,Economic Development +454991,Economic Development,Economic Development +454990,Economic Development,Economic Development +454989,Economic Development,Economic Development +454988,Economic Development,Economic Development +454987,Economic Development,Economic Development +454986,Economic Development,Economic Development +454984,Economic Development,Economic Development +454982,Economic Development,Economic Development +454976,Economic Development,Economic Development +451043,Economic Development,Economic Development +451042,Economic Development,Economic Development +451039,Economic Development,Economic Development +451037,Economic Development,Economic Development +451036,Economic Development,Economic Development +451035,Economic Development,Economic Development +451033,Economic Development,Economic Development +448948,Economic Development,Economic Development +448947,Economic Development,Economic Development +448946,Economic Development,Economic Development +448944,Economic Development,Economic Development +447104,Economic Development,Economic Development +447102,Economic Development,Economic Development +447100,Economic Development,Economic Development +447097,Economic Development,Economic Development +447096,Economic Development,Economic Development +447094,Economic Development,Economic Development +444445,Economic Development,Economic Development +444443,Economic Development,Economic Development +444442,Economic Development,Economic Development +443445,Economic Development,Economic Development +443444,Economic Development,Economic Development +441643,Economic Development,Economic Development +441638,Economic Development,Economic Development +441634,Economic Development,Economic Development +441630,Economic Development,Economic Development +441620,Economic Development,Economic Development +438789,Economic Development,Economic Development +438787,Economic Development,Economic Development +438786,Economic Development,Economic Development +438784,Economic Development,Economic Development +438781,Economic Development,Economic Development +438779,Economic Development,Economic Development +438777,Economic Development,Economic Development +438775,Economic Development,Economic Development +438772,Economic Development,Economic Development +438771,Economic Development,Economic Development +438767,Economic Development,Economic Development +438766,Economic Development,Economic Development +438764,Economic Development,Economic Development +438763,Economic Development,Economic Development +435163,Economic Development,Economic Development +435159,Economic Development,Economic Development +435154,Economic Development,Economic Development +435151,Economic Development,Economic Development +435147,Economic Development,Economic Development +435145,Economic Development,Economic Development +433559,Economic Development,Economic Development +433558,Economic Development,Economic Development +433557,Economic Development,Economic Development +433556,Economic Development,Economic Development +432515,Economic Development,Economic Development +432509,Economic Development,Economic Development +432506,Economic Development,Economic Development +432504,Economic Development,Economic Development +432502,Economic Development,Economic Development +432500,Economic Development,Economic Development +430140,Economic Development,Economic Development +428309,Economic Development,Economic Development +428308,Economic Development,Economic Development +428304,Economic Development,Economic Development +423938,Economic Development,Economic Development +423937,Economic Development,Economic Development +423935,Economic Development,Economic Development +423934,Economic Development,Economic Development +423933,Economic Development,Economic Development +423930,Economic Development,Economic Development +421362,Economic Development,Economic Development +421361,Economic Development,Economic Development +421360,Economic Development,Economic Development +421359,Economic Development,Economic Development +421358,Economic Development,Economic Development +419628,Economic Development,Economic Development +419625,Economic Development,Economic Development +419622,Economic Development,Economic Development +419621,Economic Development,Economic Development +419620,Economic Development,Economic Development +419619,Economic Development,Economic Development +419616,Economic Development,Economic Development +417783,Economic Development,Economic Development +417781,Economic Development,Economic Development +414494,Economic Development,Economic Development +414492,Economic Development,Economic Development +414489,Economic Development,Economic Development +414488,Economic Development,Economic Development +414487,Economic Development,Economic Development +410357,Economic Development,Economic Development +410352,Economic Development,Economic Development +543524,Economic Development,Economic Development +543514,Economic Development,Economic Development +540289,Economic Development,Economic Development +540107,Economic Development,Economic Development +536950,Economic Development,Economic Development +536946,Economic Development,Economic Development +536939,Economic Development,Economic Development +536937,Economic Development,Economic Development +536920,Economic Development,Economic Development +535661,Economic Development,Economic Development +535651,Economic Development,Economic Development +535644,Economic Development,Economic Development +531185,Economic Development,Economic Development +531181,Economic Development,Economic Development +531179,Economic Development,Economic Development +531177,Economic Development,Economic Development +527982,Economic Development,Economic Development +527980,Economic Development,Economic Development +527979,Economic Development,Economic Development +527978,Economic Development,Economic Development +527977,Economic Development,Economic Development +527976,Economic Development,Economic Development +527975,Economic Development,Economic Development +527974,Economic Development,Economic Development +527973,Economic Development,Economic Development +527972,Economic Development,Economic Development +527971,Economic Development,Economic Development +527970,Economic Development,Economic Development +527969,Economic Development,Economic Development +524551,Economic Development,Economic Development +524550,Economic Development,Economic Development +524548,Economic Development,Economic Development +524547,Economic Development,Economic Development +524546,Economic Development,Economic Development +524545,Economic Development,Economic Development +524544,Economic Development,Economic Development +524543,Economic Development,Economic Development +524542,Economic Development,Economic Development +524541,Economic Development,Economic Development +524540,Economic Development,Economic Development +524537,Economic Development,Economic Development +524536,Economic Development,Economic Development +524437,Economic Development,Economic Development +524436,Economic Development,Economic Development +524432,Economic Development,Economic Development +522583,Economic Development,Economic Development +522581,Economic Development,Economic Development +522578,Economic Development,Economic Development +522575,Economic Development,Economic Development +522572,Economic Development,Economic Development +519574,Economic Development,Economic Development +519572,Economic Development,Economic Development +519568,Economic Development,Economic Development +519565,Economic Development,Economic Development +519564,Economic Development,Economic Development +519562,Economic Development,Economic Development +519560,Economic Development,Economic Development +517412,Economic Development,Economic Development +517403,Economic Development,Economic Development +517395,Economic Development,Economic Development +517390,Economic Development,Economic Development +517384,Economic Development,Economic Development +517377,Economic Development,Economic Development +517364,Economic Development,Economic Development +514727,Economic Development,Economic Development +514725,Economic Development,Economic Development +514724,Economic Development,Economic Development +514193,Economic Development,Economic Development +513244,Economic Development,Economic Development +513241,Economic Development,Economic Development +510764,Economic Development,Economic Development +510762,Economic Development,Economic Development +510755,Economic Development,Economic Development +510751,Economic Development,Economic Development +509447,Economic Development,Economic Development +507534,Economic Development,Economic Development +507528,Economic Development,Economic Development +507526,Economic Development,Economic Development +503817,Economic Development,Economic Development +503816,Economic Development,Economic Development +503813,Economic Development,Economic Development +502942,Economic Development,Economic Development +502941,Economic Development,Economic Development +502938,Economic Development,Economic Development +502937,Economic Development,Economic Development +498989,Economic Development,Economic Development +498974,Economic Development,Economic Development +498971,Economic Development,Economic Development +498968,Economic Development,Economic Development +498966,Economic Development,Economic Development +498963,Economic Development,Economic Development +498958,Economic Development,Economic Development +498956,Economic Development,Economic Development +496073,Economic Development,Economic Development +496071,Economic Development,Economic Development +496068,Economic Development,Economic Development +493646,Economic Development,Economic Development +493644,Economic Development,Economic Development +493637,Economic Development,Economic Development +493632,Economic Development,Economic Development +493631,Economic Development,Economic Development +493627,Economic Development,Economic Development +493626,Economic Development,Economic Development +489400,Economic Development,Economic Development +489399,Economic Development,Economic Development +489398,Economic Development,Economic Development +489397,Economic Development,Economic Development +489396,Economic Development,Economic Development +489395,Economic Development,Economic Development +489394,Economic Development,Economic Development +489393,Economic Development,Economic Development +489391,Economic Development,Economic Development +489390,Economic Development,Economic Development +489389,Economic Development,Economic Development +489388,Economic Development,Economic Development +489387,Economic Development,Economic Development +522575,International Development,International Development +517390,International Development,International Development +269621,International Development,International Development +264501,International Development,International Development +264499,International Development,International Development +259598,International Development,International Development +247661,International Development,International Development +247660,International Development,International Development +245106,International Development,International Development +241077,International Development,International Development +241071,International Development,International Development +240973,International Development,International Development +240972,International Development,International Development +240846,International Development,International Development +237078,International Development,International Development +237076,International Development,International Development +230072,International Development,International Development +226967,International Development,International Development +223595,International Development,International Development +211291,International Development,International Development +211289,International Development,International Development +207190,International Development,International Development +368688,International Development,International Development +362965,International Development,International Development +362426,International Development,International Development +362425,International Development,International Development +361323,International Development,International Development +359606,International Development,International Development +359604,International Development,International Development +357060,International Development,International Development +357059,International Development,International Development +355808,International Development,International Development +355806,International Development,International Development +353176,International Development,International Development +353172,International Development,International Development +347179,International Development,International Development +341257,International Development,International Development +341234,International Development,International Development +341212,International Development,International Development +331369,International Development,International Development +331367,International Development,International Development +329830,International Development,International Development +322302,International Development,International Development +322294,International Development,International Development +318287,International Development,International Development +314455,International Development,International Development +314453,International Development,International Development +310739,International Development,International Development +305111,International Development,International Development +287064,International Development,International Development +287063,International Development,International Development +287061,International Development,International Development +287058,International Development,International Development +277541,International Development,International Development +273692,International Development,International Development +273689,International Development,International Development +273687,International Development,International Development +273684,International Development,International Development +273677,International Development,International Development +423937,International Development,International Development +419616,International Development,International Development +417783,International Development,International Development +414494,International Development,International Development +414490,International Development,International Development +406977,International Development,International Development +396385,International Development,International Development +383840,International Development,International Development +375876,International Development,International Development +375875,International Development,International Development +374961,International Development,International Development +503812,International Development,International Development +444441,International Development,International Development +441614,International Development,International Development +433559,International Development,International Development +539600,International Development,International Development +531187,International Development,International Development +327745,Pensions,Pensions +325082,Pensions,Pensions +207196,Pensions,Pensions +400961,Pensions,Pensions +380429,Pensions,Pensions +379904,Pensions,Pensions +375877,Pensions,Pensions +368694,Pensions,Pensions +366452,Pensions,Pensions +359603,Pensions,Pensions +359602,Pensions,Pensions +348612,Pensions,Pensions +410349,Research and Development,Research and Development +410348,Research and Development,Research and Development +207196,Research and Development,Research and Development +329831,Research and Development,Research and Development +327748,Research and Development,Research and Development +327745,Research and Development,Research and Development +325082,Research and Development,Research and Development +322302,Research and Development,Research and Development +322294,Research and Development,Research and Development +318286,Research and Development,Research and Development +318280,Research and Development,Research and Development +314453,Research and Development,Research and Development +314452,Research and Development,Research and Development +310738,Research and Development,Research and Development +310737,Research and Development,Research and Development +310735,Research and Development,Research and Development +310734,Research and Development,Research and Development +305112,Research and Development,Research and Development +305111,Research and Development,Research and Development +296877,Research and Development,Research and Development +287064,Research and Development,Research and Development +287063,Research and Development,Research and Development +287061,Research and Development,Research and Development +287057,Research and Development,Research and Development +277545,Research and Development,Research and Development +277541,Research and Development,Research and Development +277536,Research and Development,Research and Development +277532,Research and Development,Research and Development +273690,Research and Development,Research and Development +269621,Research and Development,Research and Development +264499,Research and Development,Research and Development +259598,Research and Development,Research and Development +247656,Research and Development,Research and Development +245097,Research and Development,Research and Development +245095,Research and Development,Research and Development +241077,Research and Development,Research and Development +241071,Research and Development,Research and Development +240844,Research and Development,Research and Development +240838,Research and Development,Research and Development +240833,Research and Development,Research and Development +233697,Research and Development,Research and Development +233696,Research and Development,Research and Development +233695,Research and Development,Research and Development +230078,Research and Development,Research and Development +230077,Research and Development,Research and Development +226970,Research and Development,Research and Development +217853,Research and Development,Research and Development +407222,Research and Development,Research and Development +407221,Research and Development,Research and Development +406898,Research and Development,Research and Development +405337,Research and Development,Research and Development +402797,Research and Development,Research and Development +400961,Research and Development,Research and Development +400955,Research and Development,Research and Development +396385,Research and Development,Research and Development +394105,Research and Development,Research and Development +392185,Research and Development,Research and Development +386733,Research and Development,Research and Development +383842,Research and Development,Research and Development +383840,Research and Development,Research and Development +382041,Research and Development,Research and Development +382040,Research and Development,Research and Development +382039,Research and Development,Research and Development +375877,Research and Development,Research and Development +375875,Research and Development,Research and Development +372413,Research and Development,Research and Development +372403,Research and Development,Research and Development +368694,Research and Development,Research and Development +368688,Research and Development,Research and Development +366452,Research and Development,Research and Development +366451,Research and Development,Research and Development +362965,Research and Development,Research and Development +362426,Research and Development,Research and Development +362425,Research and Development,Research and Development +361325,Research and Development,Research and Development +359606,Research and Development,Research and Development +359602,Research and Development,Research and Development +355807,Research and Development,Research and Development +355805,Research and Development,Research and Development +351420,Research and Development,Research and Development +348612,Research and Development,Research and Development +343854,Research and Development,Research and Development +341257,Research and Development,Research and Development +338360,Research and Development,Research and Development +335715,Research and Development,Research and Development +335713,Research and Development,Research and Development +331374,Research and Development,Research and Development +331372,Research and Development,Research and Development +331365,Research and Development,Research and Development +522584,Research and Development,Research and Development +519572,Research and Development,Research and Development +502941,Research and Development,Research and Development +502938,Research and Development,Research and Development +489398,Research and Development,Research and Development +489396,Research and Development,Research and Development +489394,Research and Development,Research and Development +489391,Research and Development,Research and Development +489390,Research and Development,Research and Development +483494,Research and Development,Research and Development +470696,Research and Development,Research and Development +466647,Research and Development,Research and Development +466646,Research and Development,Research and Development +459587,Research and Development,Research and Development +456706,Research and Development,Research and Development +456705,Research and Development,Research and Development +456702,Research and Development,Research and Development +454991,Research and Development,Research and Development +454990,Research and Development,Research and Development +454989,Research and Development,Research and Development +454976,Research and Development,Research and Development +448948,Research and Development,Research and Development +448947,Research and Development,Research and Development +448944,Research and Development,Research and Development +447104,Research and Development,Research and Development +447102,Research and Development,Research and Development +447100,Research and Development,Research and Development +443444,Research and Development,Research and Development +438789,Research and Development,Research and Development +438784,Research and Development,Research and Development +438781,Research and Development,Research and Development +438779,Research and Development,Research and Development +438767,Research and Development,Research and Development +438764,Research and Development,Research and Development +435163,Research and Development,Research and Development +435159,Research and Development,Research and Development +435154,Research and Development,Research and Development +435151,Research and Development,Research and Development +435147,Research and Development,Research and Development +435145,Research and Development,Research and Development +433558,Research and Development,Research and Development +432515,Research and Development,Research and Development +432509,Research and Development,Research and Development +432500,Research and Development,Research and Development +428308,Research and Development,Research and Development +428304,Research and Development,Research and Development +423935,Research and Development,Research and Development +423930,Research and Development,Research and Development +421362,Research and Development,Research and Development +421361,Research and Development,Research and Development +421360,Research and Development,Research and Development +421358,Research and Development,Research and Development +419628,Research and Development,Research and Development +419625,Research and Development,Research and Development +419622,Research and Development,Research and Development +419621,Research and Development,Research and Development +419619,Research and Development,Research and Development +417783,Research and Development,Research and Development +414491,Research and Development,Research and Development +414490,Research and Development,Research and Development +414488,Research and Development,Research and Development +410357,Research and Development,Research and Development +477832,Security,Security +473036,Security,Security +217809,Security,Security +322307,Security,Security +322303,Security,Security +310738,Security,Security +310733,Security,Security +296877,Security,Security +290689,Security,Security +287063,Security,Security +277530,Security,Security +273692,Security,Security +273679,Security,Security +245105,Security,Security +245100,Security,Security +245098,Security,Security +241077,Security,Security +241071,Security,Security +240973,Security,Security +240841,Security,Security +396382,Security,Security +394194,Security,Security +383840,Security,Security +379899,Security,Security +375876,Security,Security +374958,Security,Security +374957,Security,Security +373134,Security,Security +364814,Security,Security +362965,Security,Security +361325,Security,Security +361322,Security,Security +359606,Security,Security +359605,Security,Security +359602,Security,Security +353175,Security,Security +351423,Security,Security +351422,Security,Security +351421,Security,Security +348613,Security,Security +343854,Security,Security +341263,Security,Security +341212,Security,Security +338360,Security,Security +473024,Security,Security +473009,Security,Security +472984,Security,Security +470718,Security,Security +466649,Security,Security +466648,Security,Security +463415,Security,Security +462540,Security,Security +461169,Security,Security +459950,Security,Security +459948,Security,Security +459587,Security,Security +459584,Security,Security +459582,Security,Security +458390,Security,Security +458389,Security,Security +456705,Security,Security +456704,Security,Security +456702,Security,Security +454993,Security,Security +454991,Security,Security +454990,Security,Security +454989,Security,Security +454988,Security,Security +451043,Security,Security +451039,Security,Security +451036,Security,Security +451034,Security,Security +451033,Security,Security +447097,Security,Security +444442,Security,Security +441620,Security,Security +441614,Security,Security +438767,Security,Security +438766,Security,Security +433556,Security,Security +428309,Security,Security +423932,Security,Security +414490,Security,Security +414489,Security,Security +410355,Security,Security +543524,Security,Security +543520,Security,Security +543514,Security,Security +541323,Security,Security +541316,Security,Security +539600,Security,Security +536946,Security,Security +536942,Security,Security +536939,Security,Security +536934,Security,Security +536931,Security,Security +536923,Security,Security +536920,Security,Security +535657,Security,Security +535651,Security,Security +535647,Security,Security +531183,Security,Security +527982,Security,Security +527973,Security,Security +524541,Security,Security +522583,Security,Security +522581,Security,Security +514725,Security,Security +510767,Security,Security +510764,Security,Security +503812,Security,Security +502942,Security,Security +502940,Security,Security +498971,Security,Security +493644,Security,Security +493637,Security,Security +493632,Security,Security +489397,Security,Security +489393,Security,Security +486955,Security,Security +486954,Security,Security +486936,Security,Security +481501,Security,Security +481494,Security,Security +205387,Agriculture,Agriculture +259510,Agriculture,Agriculture +259495,Agriculture,Agriculture +259510,International Trade,Commerce international +259495,International Trade,Commerce international +370273,Agriculture,Agriculture +370272,Agriculture,Agriculture +259791,Agriculture,Agriculture +259790,Agriculture,Agriculture +259789,Agriculture,Agriculture +259781,Agriculture,Agriculture +259780,Agriculture,Agriculture +259779,Agriculture,Agriculture +365401,Agriculture,Agriculture +357202,Agriculture,Agriculture +357199,Agriculture,Agriculture +357198,Agriculture,Agriculture +357197,Agriculture,Agriculture +353646,Agriculture,Agriculture +349601,Agriculture,Agriculture +345837,Agriculture,Agriculture +345817,Agriculture,Agriculture +345797,Agriculture,Agriculture +345777,Agriculture,Agriculture +345757,Agriculture,Agriculture +315423,Agriculture,Agriculture +315422,Agriculture,Agriculture +315413,Agriculture,Agriculture +315406,Agriculture,Agriculture +315397,Agriculture,Agriculture +315391,Agriculture,Agriculture +302849,Agriculture,Agriculture +294709,Agriculture,Agriculture +293349,Agriculture,Agriculture +292510,Agriculture,Agriculture +259792,Agriculture,Agriculture +432649,Agriculture,Agriculture +383089,Agriculture,Agriculture +379674,Agriculture,Agriculture +370280,Agriculture,Agriculture +370274,Internal Trade,Commerce intérieur +370273,Internal Trade,Commerce intérieur +370272,Internal Trade,Commerce intérieur +365401,Internal Trade,Commerce intérieur +357202,Internal Trade,Commerce intérieur +357199,Internal Trade,Commerce intérieur +357198,Internal Trade,Commerce intérieur +357197,Internal Trade,Commerce intérieur +353646,Internal Trade,Commerce intérieur +349601,Internal Trade,Commerce intérieur +345837,Internal Trade,Commerce intérieur +345817,Internal Trade,Commerce intérieur +345797,Internal Trade,Commerce intérieur +345777,Internal Trade,Commerce intérieur +345757,Internal Trade,Commerce intérieur +383089,Internal Trade,Commerce intérieur +379674,Internal Trade,Commerce intérieur +432649,International Trade,Commerce international +405999,International Trade,Commerce international +315423,International Trade,Commerce international +315422,International Trade,Commerce international +315413,International Trade,Commerce international +315406,International Trade,Commerce international +315397,International Trade,Commerce international +315391,International Trade,Commerce international +302849,International Trade,Commerce international +294709,International Trade,Commerce international +293349,International Trade,Commerce international +292510,International Trade,Commerce international +259792,International Trade,Commerce international +259791,International Trade,Commerce international +259790,International Trade,Commerce international +259789,International Trade,Commerce international +259781,International Trade,Commerce international +259780,International Trade,Commerce international +259779,International Trade,Commerce international +383089,International Trade,Commerce international +379674,International Trade,Commerce international +370280,International Trade,Commerce international +370274,International Trade,Commerce international +370273,International Trade,Commerce international +370272,International Trade,Commerce international +365401,International Trade,Commerce international +357202,International Trade,Commerce international +357199,International Trade,Commerce international +357198,International Trade,Commerce international +357197,International Trade,Commerce international +353646,International Trade,Commerce international +349601,International Trade,Commerce international +345837,International Trade,Commerce international +345817,International Trade,Commerce international +345797,International Trade,Commerce international +345777,International Trade,Commerce international +392952,Research and Development,Research and Development +392951,Research and Development,Research and Development +294450,Research and Development,Research and Development +285409,Research and Development,Research and Development +269869,Research and Development,Research and Development +261203,Research and Development,Research and Development +261199,Research and Development,Research and Development +261198,Research and Development,Research and Development +261197,Research and Development,Research and Development +261196,Research and Development,Research and Development +261194,Research and Development,Research and Development +261191,Research and Development,Research and Development +261188,Research and Development,Research and Development +250575,Research and Development,Research and Development +250574,Research and Development,Research and Development +250263,Research and Development,Research and Development +247770,Research and Development,Research and Development +236072,Research and Development,Research and Development +236069,Research and Development,Research and Development +230270,Research and Development,Research and Development +230269,Research and Development,Research and Development +209208,Research and Development,Research and Development +204856,Research and Development,Research and Development +204448,Research and Development,Research and Development +380835,Research and Development,Research and Development +380833,Research and Development,Research and Development +380832,Research and Development,Research and Development +377775,Research and Development,Research and Development +377774,Research and Development,Research and Development +377770,Research and Development,Research and Development +373177,Research and Development,Research and Development +373176,Research and Development,Research and Development +373175,Research and Development,Research and Development +369699,Research and Development,Research and Development +369222,Research and Development,Research and Development +369217,Research and Development,Research and Development +369215,Research and Development,Research and Development +369204,Research and Development,Research and Development +369041,Research and Development,Research and Development +369040,Research and Development,Research and Development +369035,Research and Development,Research and Development +369033,Research and Development,Research and Development +368299,Research and Development,Research and Development +368293,Research and Development,Research and Development +368292,Research and Development,Research and Development +362542,Research and Development,Research and Development +355270,Research and Development,Research and Development +355269,Research and Development,Research and Development +355268,Research and Development,Research and Development +350316,Research and Development,Research and Development +349521,Research and Development,Research and Development +348349,Research and Development,Research and Development +346277,Research and Development,Research and Development +346258,Research and Development,Research and Development +346257,Research and Development,Research and Development +346237,Research and Development,Research and Development +346217,Research and Development,Research and Development +340460,Research and Development,Research and Development +338024,Research and Development,Research and Development +338023,Research and Development,Research and Development +338022,Research and Development,Research and Development +338021,Research and Development,Research and Development +337375,Research and Development,Research and Development +337374,Research and Development,Research and Development +337373,Research and Development,Research and Development +335778,Research and Development,Research and Development +335776,Research and Development,Research and Development +335774,Research and Development,Research and Development +334159,Research and Development,Research and Development +334156,Research and Development,Research and Development +334155,Research and Development,Research and Development +334153,Research and Development,Research and Development +334151,Research and Development,Research and Development +324793,Research and Development,Research and Development +317292,Research and Development,Research and Development +215027,Defence,Defence +215027,Energy,Energy +374514,Environment,Environment +374061,Environment,Environment +212511,Environment,Environment +382313,Environment,Environment +374514,Forestry,Forestry +374061,Forestry,Forestry +212511,Forestry,Forestry +382313,Forestry,Forestry +290652,Health,Health +285260,Health,Health +237064,Health,Health +216091,Industry,Industry +210489,Industry,Industry +216091,Transportation,Transportation +210489,Transportation,Transportation +207359,Agriculture,Agriculture +207359,International Trade,International Trade +207480,Agriculture,Agriculture +207369,Agriculture,Agriculture +320032,Agriculture,Agriculture +320031,Agriculture,Agriculture +207480,International Trade,International Trade +207369,International Trade,International Trade +320032,International Trade,International Trade +320031,International Trade,International Trade +365962,Agriculture,Agriculture +362282,Agriculture,Agriculture +320033,Agriculture,Agriculture +320029,Agriculture,Agriculture +262670,Agriculture,Agriculture +262651,Agriculture,Agriculture +207394,Agriculture,Agriculture +207387,Agriculture,Agriculture +207372,Agriculture,Agriculture +448678,Agriculture,Agriculture +448677,Agriculture,Agriculture +448676,Agriculture,Agriculture +426356,Agriculture,Agriculture +426353,Agriculture,Agriculture +426345,Agriculture,Agriculture +397213,Agriculture,Agriculture +397210,Agriculture,Agriculture +396200,Agriculture,Agriculture +448677,Consumer Issues,Consumer Issues +448676,Consumer Issues,Consumer Issues +262670,Consumer Issues,Consumer Issues +262651,Consumer Issues,Consumer Issues +426356,Consumer Issues,Consumer Issues +426353,Consumer Issues,Consumer Issues +426345,Consumer Issues,Consumer Issues +396200,Consumer Issues,Consumer Issues +395867,Consumer Issues,Consumer Issues +448677,Health,Health +448676,Health,Health +262670,Health,Health +262651,Health,Health +426356,Health,Health +426353,Health,Health +426345,Health,Health +396200,Health,Health +395867,Health,Health +448677,International Trade,International Trade +448676,International Trade,International Trade +320033,International Trade,International Trade +320029,International Trade,International Trade +262670,International Trade,International Trade +262651,International Trade,International Trade +207394,International Trade,International Trade +207387,International Trade,International Trade +207372,International Trade,International Trade +426356,International Trade,International Trade +426353,International Trade,International Trade +426345,International Trade,International Trade +418764,International Trade,International Trade +396200,International Trade,International Trade +395867,International Trade,International Trade +365962,International Trade,International Trade +362282,International Trade,International Trade +488220,Economic Development,Economic Development +480089,Economic Development,Economic Development +517491,Economic Development,Economic Development +517481,Economic Development,Economic Development +516685,Economic Development,Economic Development +510730,Economic Development,Economic Development +208728,Agriculture,Agriculture +208727,Agriculture,Agriculture +461058,Constitutional Issues,Constitutional Issues +459158,Constitutional Issues,Constitutional Issues +326765,Constitutional Issues,Constitutional Issues +326763,Constitutional Issues,Constitutional Issues +325484,Constitutional Issues,Constitutional Issues +325481,Constitutional Issues,Constitutional Issues +325479,Constitutional Issues,Constitutional Issues +310306,Constitutional Issues,Constitutional Issues +310305,Constitutional Issues,Constitutional Issues +310303,Constitutional Issues,Constitutional Issues +310302,Constitutional Issues,Constitutional Issues +310299,Constitutional Issues,Constitutional Issues +304502,Constitutional Issues,Constitutional Issues +277581,Constitutional Issues,Constitutional Issues +273012,Constitutional Issues,Constitutional Issues +273009,Constitutional Issues,Constitutional Issues +269357,Constitutional Issues,Constitutional Issues +269356,Constitutional Issues,Constitutional Issues +258791,Constitutional Issues,Constitutional Issues +241127,Constitutional Issues,Constitutional Issues +217967,Constitutional Issues,Constitutional Issues +217948,Constitutional Issues,Constitutional Issues +378574,Constitutional Issues,Constitutional Issues +377903,Constitutional Issues,Constitutional Issues +377902,Constitutional Issues,Constitutional Issues +377556,Constitutional Issues,Constitutional Issues +373484,Constitutional Issues,Constitutional Issues +373483,Constitutional Issues,Constitutional Issues +373482,Constitutional Issues,Constitutional Issues +373009,Constitutional Issues,Constitutional Issues +373008,Constitutional Issues,Constitutional Issues +373007,Constitutional Issues,Constitutional Issues +373006,Constitutional Issues,Constitutional Issues +373005,Constitutional Issues,Constitutional Issues +373004,Constitutional Issues,Constitutional Issues +373003,Constitutional Issues,Constitutional Issues +367845,Constitutional Issues,Constitutional Issues +367844,Constitutional Issues,Constitutional Issues +367843,Constitutional Issues,Constitutional Issues +367553,Constitutional Issues,Constitutional Issues +367023,Constitutional Issues,Constitutional Issues +367022,Constitutional Issues,Constitutional Issues +366780,Constitutional Issues,Constitutional Issues +366779,Constitutional Issues,Constitutional Issues +365573,Constitutional Issues,Constitutional Issues +365572,Constitutional Issues,Constitutional Issues +365571,Constitutional Issues,Constitutional Issues +365570,Constitutional Issues,Constitutional Issues +365569,Constitutional Issues,Constitutional Issues +365568,Constitutional Issues,Constitutional Issues +365566,Constitutional Issues,Constitutional Issues +365565,Constitutional Issues,Constitutional Issues +365511,Constitutional Issues,Constitutional Issues +365510,Constitutional Issues,Constitutional Issues +358452,Constitutional Issues,Constitutional Issues +358451,Constitutional Issues,Constitutional Issues +358450,Constitutional Issues,Constitutional Issues +358449,Constitutional Issues,Constitutional Issues +358448,Constitutional Issues,Constitutional Issues +358447,Constitutional Issues,Constitutional Issues +358446,Constitutional Issues,Constitutional Issues +358445,Constitutional Issues,Constitutional Issues +358444,Constitutional Issues,Constitutional Issues +358443,Constitutional Issues,Constitutional Issues +348079,Constitutional Issues,Constitutional Issues +522791,Constitutional Issues,Constitutional Issues +471466,Constitutional Issues,Constitutional Issues +469269,Constitutional Issues,Constitutional Issues +469268,Constitutional Issues,Constitutional Issues +465982,Constitutional Issues,Constitutional Issues +465972,Constitutional Issues,Constitutional Issues +465971,Constitutional Issues,Constitutional Issues +465970,Constitutional Issues,Constitutional Issues +465969,Constitutional Issues,Constitutional Issues +465968,Constitutional Issues,Constitutional Issues +465967,Constitutional Issues,Constitutional Issues +465966,Constitutional Issues,Constitutional Issues +465962,Constitutional Issues,Constitutional Issues +465961,Constitutional Issues,Constitutional Issues +465960,Constitutional Issues,Constitutional Issues +465959,Constitutional Issues,Constitutional Issues +463925,Constitutional Issues,Constitutional Issues +463913,Constitutional Issues,Constitutional Issues +463912,Constitutional Issues,Constitutional Issues +463910,Constitutional Issues,Constitutional Issues +463908,Constitutional Issues,Constitutional Issues +462230,Constitutional Issues,Constitutional Issues +462229,Constitutional Issues,Constitutional Issues +462228,Constitutional Issues,Constitutional Issues +462227,Constitutional Issues,Constitutional Issues +462226,Constitutional Issues,Constitutional Issues +462225,Constitutional Issues,Constitutional Issues +462224,Constitutional Issues,Constitutional Issues +462223,Constitutional Issues,Constitutional Issues +461075,Constitutional Issues,Constitutional Issues +461060,Constitutional Issues,Constitutional Issues +517744,Justice and Law Enforcement,Justice and Law Enforcement +517737,Justice and Law Enforcement,Justice and Law Enforcement +325490,Justice and Law Enforcement,Justice and Law Enforcement +325489,Justice and Law Enforcement,Justice and Law Enforcement +325488,Justice and Law Enforcement,Justice and Law Enforcement +325487,Justice and Law Enforcement,Justice and Law Enforcement +325486,Justice and Law Enforcement,Justice and Law Enforcement +325485,Justice and Law Enforcement,Justice and Law Enforcement +325483,Justice and Law Enforcement,Justice and Law Enforcement +325482,Justice and Law Enforcement,Justice and Law Enforcement +310306,Justice and Law Enforcement,Justice and Law Enforcement +310302,Justice and Law Enforcement,Justice and Law Enforcement +310299,Justice and Law Enforcement,Justice and Law Enforcement +277582,Justice and Law Enforcement,Justice and Law Enforcement +277580,Justice and Law Enforcement,Justice and Law Enforcement +277579,Justice and Law Enforcement,Justice and Law Enforcement +273011,Justice and Law Enforcement,Justice and Law Enforcement +273009,Justice and Law Enforcement,Justice and Law Enforcement +269355,Justice and Law Enforcement,Justice and Law Enforcement +264385,Justice and Law Enforcement,Justice and Law Enforcement +264383,Justice and Law Enforcement,Justice and Law Enforcement +258792,Justice and Law Enforcement,Justice and Law Enforcement +258791,Justice and Law Enforcement,Justice and Law Enforcement +244772,Justice and Law Enforcement,Justice and Law Enforcement +241130,Justice and Law Enforcement,Justice and Law Enforcement +227383,Justice and Law Enforcement,Justice and Law Enforcement +223194,Justice and Law Enforcement,Justice and Law Enforcement +223190,Justice and Law Enforcement,Justice and Law Enforcement +223188,Justice and Law Enforcement,Justice and Law Enforcement +217953,Justice and Law Enforcement,Justice and Law Enforcement +217952,Justice and Law Enforcement,Justice and Law Enforcement +217938,Justice and Law Enforcement,Justice and Law Enforcement +211994,Justice and Law Enforcement,Justice and Law Enforcement +404752,Justice and Law Enforcement,Justice and Law Enforcement +404751,Justice and Law Enforcement,Justice and Law Enforcement +399603,Justice and Law Enforcement,Justice and Law Enforcement +399602,Justice and Law Enforcement,Justice and Law Enforcement +399601,Justice and Law Enforcement,Justice and Law Enforcement +399599,Justice and Law Enforcement,Justice and Law Enforcement +399597,Justice and Law Enforcement,Justice and Law Enforcement +397610,Justice and Law Enforcement,Justice and Law Enforcement +397609,Justice and Law Enforcement,Justice and Law Enforcement +395215,Justice and Law Enforcement,Justice and Law Enforcement +395214,Justice and Law Enforcement,Justice and Law Enforcement +395208,Justice and Law Enforcement,Justice and Law Enforcement +395207,Justice and Law Enforcement,Justice and Law Enforcement +395206,Justice and Law Enforcement,Justice and Law Enforcement +395205,Justice and Law Enforcement,Justice and Law Enforcement +378574,Justice and Law Enforcement,Justice and Law Enforcement +377903,Justice and Law Enforcement,Justice and Law Enforcement +377902,Justice and Law Enforcement,Justice and Law Enforcement +377556,Justice and Law Enforcement,Justice and Law Enforcement +373484,Justice and Law Enforcement,Justice and Law Enforcement +373483,Justice and Law Enforcement,Justice and Law Enforcement +373482,Justice and Law Enforcement,Justice and Law Enforcement +373009,Justice and Law Enforcement,Justice and Law Enforcement +373008,Justice and Law Enforcement,Justice and Law Enforcement +373007,Justice and Law Enforcement,Justice and Law Enforcement +373006,Justice and Law Enforcement,Justice and Law Enforcement +373005,Justice and Law Enforcement,Justice and Law Enforcement +373004,Justice and Law Enforcement,Justice and Law Enforcement +373003,Justice and Law Enforcement,Justice and Law Enforcement +367845,Justice and Law Enforcement,Justice and Law Enforcement +367844,Justice and Law Enforcement,Justice and Law Enforcement +367843,Justice and Law Enforcement,Justice and Law Enforcement +367553,Justice and Law Enforcement,Justice and Law Enforcement +367023,Justice and Law Enforcement,Justice and Law Enforcement +367022,Justice and Law Enforcement,Justice and Law Enforcement +366780,Justice and Law Enforcement,Justice and Law Enforcement +366779,Justice and Law Enforcement,Justice and Law Enforcement +365573,Justice and Law Enforcement,Justice and Law Enforcement +365572,Justice and Law Enforcement,Justice and Law Enforcement +365571,Justice and Law Enforcement,Justice and Law Enforcement +365570,Justice and Law Enforcement,Justice and Law Enforcement +365569,Justice and Law Enforcement,Justice and Law Enforcement +365568,Justice and Law Enforcement,Justice and Law Enforcement +365566,Justice and Law Enforcement,Justice and Law Enforcement +365565,Justice and Law Enforcement,Justice and Law Enforcement +365511,Justice and Law Enforcement,Justice and Law Enforcement +365510,Justice and Law Enforcement,Justice and Law Enforcement +358452,Justice and Law Enforcement,Justice and Law Enforcement +358451,Justice and Law Enforcement,Justice and Law Enforcement +358450,Justice and Law Enforcement,Justice and Law Enforcement +358449,Justice and Law Enforcement,Justice and Law Enforcement +358448,Justice and Law Enforcement,Justice and Law Enforcement +358447,Justice and Law Enforcement,Justice and Law Enforcement +358446,Justice and Law Enforcement,Justice and Law Enforcement +358445,Justice and Law Enforcement,Justice and Law Enforcement +358444,Justice and Law Enforcement,Justice and Law Enforcement +358443,Justice and Law Enforcement,Justice and Law Enforcement +348079,Justice and Law Enforcement,Justice and Law Enforcement +329596,Justice and Law Enforcement,Justice and Law Enforcement +325492,Justice and Law Enforcement,Justice and Law Enforcement +325491,Justice and Law Enforcement,Justice and Law Enforcement +506638,Justice and Law Enforcement,Justice and Law Enforcement +506588,Justice and Law Enforcement,Justice and Law Enforcement +503518,Justice and Law Enforcement,Justice and Law Enforcement +503517,Justice and Law Enforcement,Justice and Law Enforcement +503515,Justice and Law Enforcement,Justice and Law Enforcement +503513,Justice and Law Enforcement,Justice and Law Enforcement +500635,Justice and Law Enforcement,Justice and Law Enforcement +500634,Justice and Law Enforcement,Justice and Law Enforcement +500633,Justice and Law Enforcement,Justice and Law Enforcement +500631,Justice and Law Enforcement,Justice and Law Enforcement +500629,Justice and Law Enforcement,Justice and Law Enforcement +500628,Justice and Law Enforcement,Justice and Law Enforcement +500627,Justice and Law Enforcement,Justice and Law Enforcement +500626,Justice and Law Enforcement,Justice and Law Enforcement +500623,Justice and Law Enforcement,Justice and Law Enforcement +500622,Justice and Law Enforcement,Justice and Law Enforcement +500621,Justice and Law Enforcement,Justice and Law Enforcement +500620,Justice and Law Enforcement,Justice and Law Enforcement +500619,Justice and Law Enforcement,Justice and Law Enforcement +500618,Justice and Law Enforcement,Justice and Law Enforcement +500617,Justice and Law Enforcement,Justice and Law Enforcement +500616,Justice and Law Enforcement,Justice and Law Enforcement +500615,Justice and Law Enforcement,Justice and Law Enforcement +498441,Justice and Law Enforcement,Justice and Law Enforcement +498440,Justice and Law Enforcement,Justice and Law Enforcement +498438,Justice and Law Enforcement,Justice and Law Enforcement +498436,Justice and Law Enforcement,Justice and Law Enforcement +498435,Justice and Law Enforcement,Justice and Law Enforcement +498434,Justice and Law Enforcement,Justice and Law Enforcement +491118,Justice and Law Enforcement,Justice and Law Enforcement +490794,Justice and Law Enforcement,Justice and Law Enforcement +490777,Justice and Law Enforcement,Justice and Law Enforcement +486133,Justice and Law Enforcement,Justice and Law Enforcement +486132,Justice and Law Enforcement,Justice and Law Enforcement +486131,Justice and Law Enforcement,Justice and Law Enforcement +486130,Justice and Law Enforcement,Justice and Law Enforcement +486128,Justice and Law Enforcement,Justice and Law Enforcement +483225,Justice and Law Enforcement,Justice and Law Enforcement +483224,Justice and Law Enforcement,Justice and Law Enforcement +483223,Justice and Law Enforcement,Justice and Law Enforcement +483222,Justice and Law Enforcement,Justice and Law Enforcement +483219,Justice and Law Enforcement,Justice and Law Enforcement +479407,Justice and Law Enforcement,Justice and Law Enforcement +479406,Justice and Law Enforcement,Justice and Law Enforcement +479405,Justice and Law Enforcement,Justice and Law Enforcement +471467,Justice and Law Enforcement,Justice and Law Enforcement +471466,Justice and Law Enforcement,Justice and Law Enforcement +465971,Justice and Law Enforcement,Justice and Law Enforcement +454472,Justice and Law Enforcement,Justice and Law Enforcement +454468,Justice and Law Enforcement,Justice and Law Enforcement +451824,Justice and Law Enforcement,Justice and Law Enforcement +451822,Justice and Law Enforcement,Justice and Law Enforcement +451821,Justice and Law Enforcement,Justice and Law Enforcement +451819,Justice and Law Enforcement,Justice and Law Enforcement +451816,Justice and Law Enforcement,Justice and Law Enforcement +451815,Justice and Law Enforcement,Justice and Law Enforcement +451814,Justice and Law Enforcement,Justice and Law Enforcement +448769,Justice and Law Enforcement,Justice and Law Enforcement +448766,Justice and Law Enforcement,Justice and Law Enforcement +446613,Justice and Law Enforcement,Justice and Law Enforcement +446490,Justice and Law Enforcement,Justice and Law Enforcement +446489,Justice and Law Enforcement,Justice and Law Enforcement +446479,Justice and Law Enforcement,Justice and Law Enforcement +446478,Justice and Law Enforcement,Justice and Law Enforcement +443159,Justice and Law Enforcement,Justice and Law Enforcement +443158,Justice and Law Enforcement,Justice and Law Enforcement +443157,Justice and Law Enforcement,Justice and Law Enforcement +440729,Justice and Law Enforcement,Justice and Law Enforcement +440728,Justice and Law Enforcement,Justice and Law Enforcement +440727,Justice and Law Enforcement,Justice and Law Enforcement +440725,Justice and Law Enforcement,Justice and Law Enforcement +434315,Justice and Law Enforcement,Justice and Law Enforcement +434314,Justice and Law Enforcement,Justice and Law Enforcement +434312,Justice and Law Enforcement,Justice and Law Enforcement +434311,Justice and Law Enforcement,Justice and Law Enforcement +434309,Justice and Law Enforcement,Justice and Law Enforcement +434308,Justice and Law Enforcement,Justice and Law Enforcement +434306,Justice and Law Enforcement,Justice and Law Enforcement +431040,Justice and Law Enforcement,Justice and Law Enforcement +427427,Justice and Law Enforcement,Justice and Law Enforcement +424979,Justice and Law Enforcement,Justice and Law Enforcement +424978,Justice and Law Enforcement,Justice and Law Enforcement +424977,Justice and Law Enforcement,Justice and Law Enforcement +424976,Justice and Law Enforcement,Justice and Law Enforcement +423079,Justice and Law Enforcement,Justice and Law Enforcement +423078,Justice and Law Enforcement,Justice and Law Enforcement +423077,Justice and Law Enforcement,Justice and Law Enforcement +423076,Justice and Law Enforcement,Justice and Law Enforcement +423075,Justice and Law Enforcement,Justice and Law Enforcement +423074,Justice and Law Enforcement,Justice and Law Enforcement +423073,Justice and Law Enforcement,Justice and Law Enforcement +423072,Justice and Law Enforcement,Justice and Law Enforcement +420698,Justice and Law Enforcement,Justice and Law Enforcement +414657,Justice and Law Enforcement,Justice and Law Enforcement +414655,Justice and Law Enforcement,Justice and Law Enforcement +414654,Justice and Law Enforcement,Justice and Law Enforcement +414624,Justice and Law Enforcement,Justice and Law Enforcement +411473,Justice and Law Enforcement,Justice and Law Enforcement +411472,Justice and Law Enforcement,Justice and Law Enforcement +411469,Justice and Law Enforcement,Justice and Law Enforcement +411465,Justice and Law Enforcement,Justice and Law Enforcement +544169,Justice and Law Enforcement,Justice and Law Enforcement +544168,Justice and Law Enforcement,Justice and Law Enforcement +533845,Justice and Law Enforcement,Justice and Law Enforcement +533844,Justice and Law Enforcement,Justice and Law Enforcement +533843,Justice and Law Enforcement,Justice and Law Enforcement +533842,Justice and Law Enforcement,Justice and Law Enforcement +533841,Justice and Law Enforcement,Justice and Law Enforcement +531096,Justice and Law Enforcement,Justice and Law Enforcement +531094,Justice and Law Enforcement,Justice and Law Enforcement +531092,Justice and Law Enforcement,Justice and Law Enforcement +531091,Justice and Law Enforcement,Justice and Law Enforcement +531089,Justice and Law Enforcement,Justice and Law Enforcement +531088,Justice and Law Enforcement,Justice and Law Enforcement +531087,Justice and Law Enforcement,Justice and Law Enforcement +531086,Justice and Law Enforcement,Justice and Law Enforcement +531085,Justice and Law Enforcement,Justice and Law Enforcement +531084,Justice and Law Enforcement,Justice and Law Enforcement +531083,Justice and Law Enforcement,Justice and Law Enforcement +522813,Justice and Law Enforcement,Justice and Law Enforcement +522810,Justice and Law Enforcement,Justice and Law Enforcement +519272,Justice and Law Enforcement,Justice and Law Enforcement +519249,Justice and Law Enforcement,Justice and Law Enforcement +310299,Religion,Religion +378878,Taxation and Finance,Taxation and Finance +378838,Taxation and Finance,Taxation and Finance +333849,Taxation and Finance,Taxation and Finance +279611,Taxation and Finance,Taxation and Finance +279610,Taxation and Finance,Taxation and Finance +276632,Taxation and Finance,Taxation and Finance +276493,Taxation and Finance,Taxation and Finance +267929,Taxation and Finance,Taxation and Finance +250853,Taxation and Finance,Taxation and Finance +250842,Taxation and Finance,Taxation and Finance +250835,Taxation and Finance,Taxation and Finance +250831,Taxation and Finance,Taxation and Finance +250821,Taxation and Finance,Taxation and Finance +242489,Taxation and Finance,Taxation and Finance +242354,Taxation and Finance,Taxation and Finance +241850,Taxation and Finance,Taxation and Finance +241829,Taxation and Finance,Taxation and Finance +241689,Taxation and Finance,Taxation and Finance +241410,Taxation and Finance,Taxation and Finance +239491,Taxation and Finance,Taxation and Finance +239490,Taxation and Finance,Taxation and Finance +238270,Taxation and Finance,Taxation and Finance +228129,Taxation and Finance,Taxation and Finance +227951,Taxation and Finance,Taxation and Finance +227950,Taxation and Finance,Taxation and Finance +227949,Taxation and Finance,Taxation and Finance +227809,Taxation and Finance,Taxation and Finance +227592,Taxation and Finance,Taxation and Finance +227180,Taxation and Finance,Taxation and Finance +227178,Taxation and Finance,Taxation and Finance +227174,Taxation and Finance,Taxation and Finance +227171,Taxation and Finance,Taxation and Finance +227170,Taxation and Finance,Taxation and Finance +227167,Taxation and Finance,Taxation and Finance +226604,Taxation and Finance,Taxation and Finance +226468,Taxation and Finance,Taxation and Finance +226457,Taxation and Finance,Taxation and Finance +216072,Taxation and Finance,Taxation and Finance +214487,Taxation and Finance,Taxation and Finance +212505,Taxation and Finance,Taxation and Finance +211938,Taxation and Finance,Taxation and Finance +211935,Taxation and Finance,Taxation and Finance +211932,Taxation and Finance,Taxation and Finance +209087,Taxation and Finance,Taxation and Finance +206487,Taxation and Finance,Taxation and Finance +205527,Taxation and Finance,Taxation and Finance +205371,Taxation and Finance,Taxation and Finance +205368,Taxation and Finance,Taxation and Finance +205127,Taxation and Finance,Taxation and Finance +411132,Taxation and Finance,Taxation and Finance +410969,Taxation and Finance,Taxation and Finance +410965,Taxation and Finance,Taxation and Finance +410964,Taxation and Finance,Taxation and Finance +410962,Taxation and Finance,Taxation and Finance +410959,Taxation and Finance,Taxation and Finance +410955,Taxation and Finance,Taxation and Finance +410953,Taxation and Finance,Taxation and Finance +410943,Taxation and Finance,Taxation and Finance +410935,Taxation and Finance,Taxation and Finance +410933,Taxation and Finance,Taxation and Finance +410932,Taxation and Finance,Taxation and Finance +410930,Taxation and Finance,Taxation and Finance +410928,Taxation and Finance,Taxation and Finance +410926,Taxation and Finance,Taxation and Finance +410923,Taxation and Finance,Taxation and Finance +410904,Taxation and Finance,Taxation and Finance +410889,Taxation and Finance,Taxation and Finance +410884,Taxation and Finance,Taxation and Finance +410882,Taxation and Finance,Taxation and Finance +410880,Taxation and Finance,Taxation and Finance +410876,Taxation and Finance,Taxation and Finance +379036,Taxation and Finance,Taxation and Finance +378999,Taxation and Finance,Taxation and Finance +378972,Taxation and Finance,Taxation and Finance +378935,Taxation and Finance,Taxation and Finance +378911,Taxation and Finance,Taxation and Finance +378901,Taxation and Finance,Taxation and Finance +378887,Taxation and Finance,Taxation and Finance +410881,Taxation and Finance,Taxation and Finance +410852,Taxation and Finance,Taxation and Finance +292391,Taxation and Finance,Taxation and Finance +276635,Taxation and Finance,Taxation and Finance +265710,Taxation and Finance,Taxation and Finance +265709,Taxation and Finance,Taxation and Finance +265589,Taxation and Finance,Taxation and Finance +250857,Taxation and Finance,Taxation and Finance +250856,Taxation and Finance,Taxation and Finance +250849,Taxation and Finance,Taxation and Finance +250845,Taxation and Finance,Taxation and Finance +250844,Taxation and Finance,Taxation and Finance +250838,Taxation and Finance,Taxation and Finance +250833,Taxation and Finance,Taxation and Finance +250828,Taxation and Finance,Taxation and Finance +250826,Taxation and Finance,Taxation and Finance +250822,Taxation and Finance,Taxation and Finance +250820,Taxation and Finance,Taxation and Finance +242469,Taxation and Finance,Taxation and Finance +242449,Taxation and Finance,Taxation and Finance +242269,Taxation and Finance,Taxation and Finance +242219,Taxation and Finance,Taxation and Finance +241526,Taxation and Finance,Taxation and Finance +241080,Taxation and Finance,Taxation and Finance +239774,Taxation and Finance,Taxation and Finance +238589,Taxation and Finance,Taxation and Finance +233506,Taxation and Finance,Taxation and Finance +228974,Taxation and Finance,Taxation and Finance +228130,Taxation and Finance,Taxation and Finance +227596,Taxation and Finance,Taxation and Finance +227176,Taxation and Finance,Taxation and Finance +227169,Taxation and Finance,Taxation and Finance +226456,Taxation and Finance,Taxation and Finance +213488,Taxation and Finance,Taxation and Finance +211934,Taxation and Finance,Taxation and Finance +210948,Taxation and Finance,Taxation and Finance +210947,Taxation and Finance,Taxation and Finance +206367,Taxation and Finance,Taxation and Finance +205548,Taxation and Finance,Taxation and Finance +205369,Taxation and Finance,Taxation and Finance +378930,Taxation and Finance,Taxation and Finance +378913,Taxation and Finance,Taxation and Finance +378907,Taxation and Finance,Taxation and Finance +378899,Taxation and Finance,Taxation and Finance +378898,Taxation and Finance,Taxation and Finance +378875,Taxation and Finance,Taxation and Finance +309576,Taxation and Finance,Taxation and Finance +437486,Taxation and Finance,Taxation and Finance +437479,Taxation and Finance,Taxation and Finance +437474,Taxation and Finance,Taxation and Finance +437466,Taxation and Finance,Taxation and Finance +437458,Taxation and Finance,Taxation and Finance +410967,Taxation and Finance,Taxation and Finance +410966,Taxation and Finance,Taxation and Finance +410961,Taxation and Finance,Taxation and Finance +410957,Taxation and Finance,Taxation and Finance +410956,Taxation and Finance,Taxation and Finance +410954,Taxation and Finance,Taxation and Finance +410950,Taxation and Finance,Taxation and Finance +410949,Taxation and Finance,Taxation and Finance +410948,Taxation and Finance,Taxation and Finance +410942,Taxation and Finance,Taxation and Finance +410941,Taxation and Finance,Taxation and Finance +410939,Taxation and Finance,Taxation and Finance +410937,Taxation and Finance,Taxation and Finance +410936,Taxation and Finance,Taxation and Finance +410931,Taxation and Finance,Taxation and Finance +410929,Taxation and Finance,Taxation and Finance +410925,Taxation and Finance,Taxation and Finance +410903,Taxation and Finance,Taxation and Finance +410902,Taxation and Finance,Taxation and Finance +410900,Taxation and Finance,Taxation and Finance +410899,Taxation and Finance,Taxation and Finance +410897,Taxation and Finance,Taxation and Finance +410895,Taxation and Finance,Taxation and Finance +410894,Taxation and Finance,Taxation and Finance +410891,Taxation and Finance,Taxation and Finance +410888,Taxation and Finance,Taxation and Finance +410886,Taxation and Finance,Taxation and Finance +310456,Defence,Defence +310456,Government Procurement,Government Procurement +209620,Constitutional Issues,Constitutional Issues +209618,Constitutional Issues,Constitutional Issues +219787,Constitutional Issues,Constitutional Issues +219784,Constitutional Issues,Constitutional Issues +209620,Consumer Issues,Consumer Issues +209618,Consumer Issues,Consumer Issues +219787,Consumer Issues,Consumer Issues +219784,Consumer Issues,Consumer Issues +209620,Taxation and Finance,Taxation and Finance +209618,Taxation and Finance,Taxation and Finance +219787,Taxation and Finance,Taxation and Finance +219784,Taxation and Finance,Taxation and Finance +319890,International Trade,International Trade +206250,Agriculture,Agriculture +206250,Environment,Environment +319892,Agriculture,Agriculture +206892,Environment,Environment +206892,Health,Health +206892,International Trade,International Trade +201118,Industry,Industry +202745,Economic Development,Economic Development +202748,Economic Development,Economic Development +434125,Research and Development,Research and Development +202741,Economic Development,Economic Development +202750,Economic Development,Economic Development +202744,Economic Development,Economic Development +202740,Economic Development,Economic Development +211815,Economic Development,Economic Development +211817,Economic Development,Economic Development +211811,Economic Development,Economic Development +211818,Economic Development,Economic Development +211813,Economic Development,Economic Development +211810,Economic Development,Economic Development +257189,Budget,Budget +201178,Budget,Budget +201180,Budget,Budget +211808,Economic Development,Economic Development +211809,Economic Development,Economic Development +202737,Economic Development,Economic Development +202739,Economic Development,Economic Development +201187,Government Procurement,Government Procurement +248691,Official Languages,Official Languages +310012,Consumer Issues,Consumer Issues +417619,Industry,Industry +201234,Consumer Issues,Consumer Issues +201235,Consumer Issues,Consumer Issues +201236,Consumer Issues,Consumer Issues +201237,Consumer Issues,Consumer Issues +201236,Infrastructure,Infrastructure +201236,Economic Development,Economic Development +201238,Consumer Issues,Consumer Issues +381455,Security,Security +201268,Transportation,Transportation +232569,Industry,Industry +335940,Small Business,Petites entreprises +357058,Health,Health +299571,Health,Health +372990,Intellectual Property,Intellectual Property +372990,Health,Health +274911,Health,Health +443853,Agriculture,Agriculture +487455,Environment,Environment +379853,Fisheries,Fisheries +330109,International Trade,International Trade +429383,Justice and Law Enforcement,Justice and Law Enforcement +223376,International Relations,International Relations +249823,International Trade,International Trade +207438,Mining,Mining +201535,Economic Development,Economic Development +201535,Employment and Training,Employment and Training +201535,Regional Development,Regional Development +201536,Economic Development,Economic Development +201536,Employment and Training,Employment and Training +222527,Housing,Housing +201708,Justice and Law Enforcement,Justice and Law Enforcement +207360,Industry,Industry +203931,Intellectual Property,Propriété intellectuelle +202849,Intellectual Property,Intellectual Property +507819,Security,Security +211278,Industry,Industry +243881,International Relations,International Relations +201967,Energy,Energy +382127,Security,Security +311669,Economic Development,Economic Development +203388,Energy,Energy +361702,Environment,Environment +257891,Industry,Industry +230680,Taxation and Finance,Taxation and Finance +205991,Justice and Law Enforcement,Justice and Law Enforcement +205991,Security,Security +337093,Government Procurement,Government Procurement +473711,Health,Health +502703,Industry,Industry +473711,Intellectual Property,Intellectual Property +239671,Consumer Issues,Consumer Issues +315254,Health,Health +203108,Industry,Industry +210108,Taxation and Finance,Taxation and Finance +276670,Health,Health +276389,Economic Development,Economic Development +223931,Infrastructure,Infrastructure +321483,Regional Development,Regional Development +223932,Transportation,Transportation +538178,Employment and Training,Employment and Training +444642,Agriculture,Agriculture +396800,Health,Health +396800,International Trade,International Trade +206171,International Relations,International Relations +231149,Budget,Budget +207160,Energy,Energy +207202,Industry,Industry +263190,Agriculture,Agriculture +207581,Transportation,Transportation +527567,Climate,Climate +202606,Budget,Budget +204967,Labour,Labour +204968,Financial Institutions,Financial Institutions +275374,Regional Development,Regional Development +275375,Economic Development,Economic Development +275374,Infrastructure,Infrastructure +294849,Transportation,Transportation +286631,Security,Security +212304,Infrastructure,Infrastructure +212304,Transportation,Transportation +212304,Regional Development,Regional Development +212304,Economic Development,Economic Development +339857,Climate,Climate +254252,Taxation and Finance,Impôts et finances +202782,Research and Development,Research and Development +202789,Research and Development,Research and Development +353316,Housing,Housing +202856,International Relations,International Relations +305932,International Development,International Development +202958,Transportation,Transportation +202959,Transportation,Transportation +202960,Transportation,Transportation +202961,Transportation,Transportation +202962,Transportation,Transportation +202963,Transportation,Transportation +212526,Taxation and Finance,Taxation and Finance +432379,Regional Development,Regional Development +203328,Industry,Industry +203348,Industry,Industry +326768,Infrastructure,Infrastructure +326768,Transportation,Transportation +206132,Infrastructure,Infrastructure +211876,Budget,Budget +223855,Intellectual Property,Intellectual Property +206567,Agriculture,Agriculture +206569,International Trade,International Trade +233817,Consumer Issues,Consumer Issues +203668,Budget,Budget +203668,Climate,Climate +203668,Consumer Issues,Consumer Issues +203668,Economic Development,Economic Development +203668,Energy,Energy +203668,Government Procurement,Government Procurement +203668,Infrastructure,Infrastructure +203668,Regional Development,Regional Development +203668,Research and Development,Research and Development +203668,Transportation,Transportation +376005,Industry,Industry +348319,Internal Trade,Internal Trade +403612,International Relations,International Relations +364885,International Trade,International Trade +203807,Employment and Training,Employment and Training +203827,Security,Security +203847,Immigration,Immigration +203850,Transportation,Transportation +435566,Budget,Budget +203853,Budget,Budget +372629,Security,Security +243773,Health,Health +243770,Industry,Industry +437463,Transportation,Transportation +294829,Immigration,Immigration +410899,Labour,Labour +204027,Taxation and Finance,Taxation and Finance +244213,Consumer Issues,Consumer Issues +223087,Industry,Industry +315253,Justice and Law Enforcement,Justice and Law Enforcement +204128,Justice and Law Enforcement,Justice and Law Enforcement +204129,Justice and Law Enforcement,Justice and Law Enforcement +263069,Budget,Budget +340031,Taxation and Finance,Impôts et finances +224033,Health,Health +338265,Intellectual Property,Intellectual Property +204408,Intellectual Property,Intellectual Property +204409,International Trade,International Trade +526792,Agriculture,Agriculture +257489,Consumer Issues,Consumer Issues +466290,Health,Health +368565,International Trade,International Trade +437539,Agriculture,Agriculture +408467,Consumer Issues,Consumer Issues +417190,Health,Health +466004,International Trade,International Trade +462532,Budget,Budget +479397,Climate,Climate +489386,Economic Development,Economic Development +522583,International Development,International Development +331372,Pensions,Pensions +410352,Research and Development,Research and Development +479403,Security,Security +205389,Agriculture,Agriculture +259519,Agriculture,Agriculture +259519,International Trade,Commerce international +370274,Agriculture,Agriculture +370280,Internal Trade,Commerce intérieur +345757,International Trade,Commerce international +204447,Research and Development,Research and Development +392974,Research and Development,Research and Development +204467,Research and Development,Research and Development +204468,Research and Development,Research and Development +204469,Research and Development,Research and Development +215047,Defence,Defence +215047,Energy,Energy +381059,Environment,Environment +381059,Forestry,Forestry +229229,Industry,Industry +229229,Transportation,Transportation +237061,Health,Health +210348,Industry,Industry +210348,Infrastructure,Infrastructure +210348,International Trade,International Trade +210348,Transportation,Transportation +216092,Industry,Industry +210489,Infrastructure,Infrastructure +210489,International Trade,International Trade +216092,Transportation,Transportation +205787,Agriculture,Agriculture +204607,Sports,Sports +207437,Consumer Issues,Consumer Issues +207437,Health,Health +207487,Agriculture,Agriculture +207487,International Trade,International Trade +206187,Transportation,Transportation +207481,Agriculture,Agriculture +207481,International Trade,International Trade +204788,Agriculture,Agriculture +204788,Budget,Budget +395867,Agriculture,Agriculture +448678,Consumer Issues,Consumer Issues +448678,Health,Health +448678,International Trade,International Trade +204827,Security,Security +204847,Research and Development,Research and Development +204848,Research and Development,Research and Development +204849,Research and Development,Research and Development +204850,International Relations,International Relations +204852,Budget,Budget +204852,Immigration,Immigration +204852,Research and Development,Research and Development +204851,International Relations,International Relations +204851,Research and Development,Research and Development +204853,Research and Development,Research and Development +204855,Research and Development,Research and Development +491588,Economic Development,Economic Development +208729,Agriculture,Agriculture +205027,Immigration,Immigration +209427,Energy,Energy +209427,Environment,Environment +208747,International Trade,International Trade +461059,Constitutional Issues,Constitutional Issues +519248,Justice and Law Enforcement,Justice and Law Enforcement +310302,Religion,Religion +224693,International Trade,International Trade +224694,International Trade,International Trade +205827,Economic Development,Economic Development +378881,Taxation and Finance,Taxation and Finance +410885,Taxation and Finance,Taxation and Finance +310610,Defence,Defence +310610,Government Procurement,Government Procurement +209621,Constitutional Issues,Constitutional Issues +209621,Consumer Issues,Consumer Issues +209621,Taxation and Finance,Taxation and Finance +219788,Constitutional Issues,Constitutional Issues +209617,Consumer Issues,Consumer Issues +209617,Taxation and Finance,Taxation and Finance +244592,Health,Health +205188,Small Business,Small Business +205189,Official Languages,Official Languages +205207,International Development,International Development +275234,International Trade,International Trade +205313,Industry,Industry +217767,Employment and Training,Employment and Training +217774,Immigration,Immigration +205367,Taxation and Finance,Taxation and Finance +258560,Environment,Environment +205688,Consumer Issues,Consumer Issues +348269,Environment,Environment +205708,Consumer Issues,Consumer Issues +205710,Labour,Labour +205710,International Trade,International Trade +205711,Consumer Issues,Consumer Issues +205711,Health,Health +524338,International Trade,International Trade +205714,Labour,Labour +205715,Health,Health +205715,Consumer Issues,Consumer Issues +205718,International Trade,International Trade +205718,Labour,Labour +205720,Health,Health +205720,Consumer Issues,Consumer Issues +348200,Agriculture,Agriculture +465684,International Trade,International Trade +343321,Labour,Labour +205808,Research and Development,Research and Development +258576,Environment,Environment +465684,Consumer Issues,Consumer Issues +526737,Consumer Issues,Consumer Issues +205815,Research and Development,Research and Development +205817,Consumer Issues,Consumer Issues +210509,Industry,Industry +210509,Transportation,Transportation +247989,Industry,Industry +222767,Labour,Labour +222684,Economic Development,Développement économique +265550,Labour,Labour +205928,Government Procurement,Government Procurement +451184,Transportation,Transportation +212416,Defence,Defence +205996,Budget,Budget +375199,Transportation,Transportation +206008,Budget,Budget +206020,Budget,Budget +206024,Budget,Budget +206025,Budget,Budget +206027,Budget,Budget +206030,Budget,Budget +206031,Budget,Budget +206032,Budget,Budget +206033,Budget,Budget +206034,Budget,Budget +206040,Budget,Budget +206036,Budget,Budget +206037,Budget,Budget +206038,Budget,Budget +206039,Budget,Budget +206041,Budget,Budget +206042,Budget,Budget +206043,Budget,Budget +206044,Budget,Budget +239529,Environment,Environment +239529,Health,Health +206130,International Trade,International Trade +206132,International Trade,International Trade +304849,Government Procurement,Government Procurement +209907,Labour,Labour +209907,Immigration,Immigration +206236,Health,Health +259929,Fisheries,Fisheries +206249,Fisheries,Fisheries +206250,Fisheries,Fisheries +219785,Constitutional Issues,Constitutional Issues +209617,Constitutional Issues,Constitutional Issues +209616,Constitutional Issues,Constitutional Issues +209614,Constitutional Issues,Constitutional Issues +209616,Consumer Issues,Consumer Issues +209614,Consumer Issues,Consumer Issues +219788,Consumer Issues,Consumer Issues +219785,Consumer Issues,Consumer Issues +209616,Taxation and Finance,Taxation and Finance +209614,Taxation and Finance,Taxation and Finance +219788,Taxation and Finance,Taxation and Finance +219785,Taxation and Finance,Taxation and Finance +237290,Health,Health +216227,Health,Health +211029,Employment and Training,Employment and Training +210148,Employment and Training,Employment and Training +217774,Employment and Training,Employment and Training +217771,Employment and Training,Employment and Training +217771,Immigration,Immigration +217767,Immigration,Immigration +211029,Immigration,Immigration +210148,Immigration,Immigration +258559,Environment,Environment +205687,Environment,Environment +317445,Environment,Environment +419369,Environment,Environment +258572,Environment,Environment +258571,Environment,Environment +205707,Environment,Environment +524337,International Trade,International Trade +500195,International Trade,International Trade +205714,International Trade,International Trade +403470,International Trade,International Trade +395255,International Trade,International Trade +369302,International Trade,International Trade +368442,International Trade,International Trade +347057,International Trade,International Trade +346017,International Trade,International Trade +343320,International Trade,International Trade +317435,International Trade,International Trade +317434,International Trade,International Trade +317433,International Trade,International Trade +317432,International Trade,International Trade +258538,International Trade,International Trade +258537,International Trade,International Trade +258534,International Trade,International Trade +496810,International Trade,International Trade +496809,International Trade,International Trade +496808,International Trade,International Trade +465294,International Trade,International Trade +465293,International Trade,International Trade +465292,International Trade,International Trade +465290,International Trade,International Trade +465288,International Trade,International Trade +462112,International Trade,International Trade +461090,International Trade,International Trade +460986,International Trade,International Trade +453299,International Trade,International Trade +453297,International Trade,International Trade +453296,International Trade,International Trade +453292,International Trade,International Trade +453290,International Trade,International Trade +446010,International Trade,International Trade +446009,International Trade,International Trade +446008,International Trade,International Trade +426876,International Trade,International Trade +426873,International Trade,International Trade +426872,International Trade,International Trade +426870,International Trade,International Trade +419353,International Trade,International Trade +419352,International Trade,International Trade +419348,International Trade,International Trade +419346,International Trade,International Trade +419343,International Trade,International Trade +418638,International Trade,International Trade +413952,International Trade,International Trade +413951,International Trade,International Trade +411641,International Trade,International Trade +411640,International Trade,International Trade +411639,International Trade,International Trade +526736,International Trade,International Trade +524341,International Trade,International Trade +524340,International Trade,International Trade +346017,Labour,Labour +343320,Labour,Labour +348199,Agriculture,Agriculture +343321,Agriculture,Agriculture +205811,Agriculture,Agriculture +205810,Agriculture,Agriculture +205809,Agriculture,Agriculture +317443,Agriculture,Agriculture +317442,Agriculture,Agriculture +258577,Agriculture,Agriculture +258576,Agriculture,Agriculture +258575,Agriculture,Agriculture +465684,Agriculture,Agriculture +465299,Agriculture,Agriculture +465298,Agriculture,Agriculture +446226,Agriculture,Agriculture +446225,Agriculture,Agriculture +446025,Agriculture,Agriculture +446024,Agriculture,Agriculture +419394,Agriculture,Agriculture +419393,Agriculture,Agriculture +419391,Agriculture,Agriculture +419390,Agriculture,Agriculture +411637,Agriculture,Agriculture +411636,Agriculture,Agriculture +411635,Agriculture,Agriculture +411634,Agriculture,Agriculture +411633,Agriculture,Agriculture +411632,Agriculture,Agriculture +411631,Agriculture,Agriculture +404441,Agriculture,Agriculture +404440,Agriculture,Agriculture +404439,Agriculture,Agriculture +404438,Agriculture,Agriculture +404437,Agriculture,Agriculture +404436,Agriculture,Agriculture +404435,Agriculture,Agriculture +404434,Agriculture,Agriculture +401793,Agriculture,Agriculture +401792,Agriculture,Agriculture +401791,Agriculture,Agriculture +401789,Agriculture,Agriculture +401788,Agriculture,Agriculture +395147,Agriculture,Agriculture +394467,Agriculture,Agriculture +394465,Agriculture,Agriculture +394463,Agriculture,Agriculture +392231,Agriculture,Agriculture +368604,Agriculture,Agriculture +368603,Agriculture,Agriculture +368602,Agriculture,Agriculture +465299,International Trade,International Trade +465298,International Trade,International Trade +368604,International Trade,International Trade +368603,International Trade,International Trade +368602,International Trade,International Trade +348200,International Trade,International Trade +348199,International Trade,International Trade +343321,International Trade,International Trade +317443,International Trade,International Trade +317442,International Trade,International Trade +258577,International Trade,International Trade +258576,International Trade,International Trade +258575,International Trade,International Trade +446226,International Trade,International Trade +446225,International Trade,International Trade +446025,International Trade,International Trade +446024,International Trade,International Trade +419394,International Trade,International Trade +419393,International Trade,International Trade +419391,International Trade,International Trade +419390,International Trade,International Trade +411634,International Trade,International Trade +411633,International Trade,International Trade +411632,International Trade,International Trade +404441,International Trade,International Trade +404439,International Trade,International Trade +404436,International Trade,International Trade +401793,International Trade,International Trade +401791,International Trade,International Trade +401789,International Trade,International Trade +395147,International Trade,International Trade +394467,International Trade,International Trade +394465,International Trade,International Trade +394463,International Trade,International Trade +258575,Environment,Environment +419393,Environment,Environment +205809,Environment,Environment +348200,Environment,Environment +317443,Environment,Environment +465299,Consumer Issues,Consumer Issues +465298,Consumer Issues,Consumer Issues +205810,Consumer Issues,Consumer Issues +317443,Consumer Issues,Consumer Issues +317442,Consumer Issues,Consumer Issues +258577,Consumer Issues,Consumer Issues +258576,Consumer Issues,Consumer Issues +258575,Consumer Issues,Consumer Issues +446226,Consumer Issues,Consumer Issues +446225,Consumer Issues,Consumer Issues +446025,Consumer Issues,Consumer Issues +446024,Consumer Issues,Consumer Issues +419394,Consumer Issues,Consumer Issues +419393,Consumer Issues,Consumer Issues +419391,Consumer Issues,Consumer Issues +419390,Consumer Issues,Consumer Issues +404441,Consumer Issues,Consumer Issues +404436,Consumer Issues,Consumer Issues +404435,Consumer Issues,Consumer Issues +404434,Consumer Issues,Consumer Issues +401788,Consumer Issues,Consumer Issues +395147,Consumer Issues,Consumer Issues +394467,Consumer Issues,Consumer Issues +394465,Consumer Issues,Consumer Issues +394463,Consumer Issues,Consumer Issues +524336,Consumer Issues,Consumer Issues +524335,Consumer Issues,Consumer Issues +258482,Consumer Issues,Consumer Issues +258481,Consumer Issues,Consumer Issues +258478,Consumer Issues,Consumer Issues +258475,Consumer Issues,Consumer Issues +205812,Consumer Issues,Consumer Issues +404433,Consumer Issues,Consumer Issues +404432,Consumer Issues,Consumer Issues +404427,Consumer Issues,Consumer Issues +404426,Consumer Issues,Consumer Issues +404425,Consumer Issues,Consumer Issues +401777,Consumer Issues,Consumer Issues +394198,Consumer Issues,Consumer Issues +394196,Consumer Issues,Consumer Issues +348196,Consumer Issues,Consumer Issues +317431,Consumer Issues,Consumer Issues +317430,Consumer Issues,Consumer Issues +317429,Consumer Issues,Consumer Issues +524334,Consumer Issues,Consumer Issues +524333,Consumer Issues,Consumer Issues +524332,Consumer Issues,Consumer Issues +500194,Consumer Issues,Consumer Issues +496830,Consumer Issues,Consumer Issues +496829,Consumer Issues,Consumer Issues +496828,Consumer Issues,Consumer Issues +496827,Consumer Issues,Consumer Issues +465328,Consumer Issues,Consumer Issues +465281,Consumer Issues,Consumer Issues +465279,Consumer Issues,Consumer Issues +465278,Consumer Issues,Consumer Issues +465276,Consumer Issues,Consumer Issues +461088,Consumer Issues,Consumer Issues +460985,Consumer Issues,Consumer Issues +453288,Consumer Issues,Consumer Issues +453284,Consumer Issues,Consumer Issues +453282,Consumer Issues,Consumer Issues +453271,Consumer Issues,Consumer Issues +453268,Consumer Issues,Consumer Issues +446215,Consumer Issues,Consumer Issues +446213,Consumer Issues,Consumer Issues +446212,Consumer Issues,Consumer Issues +446210,Consumer Issues,Consumer Issues +426623,Consumer Issues,Consumer Issues +426134,Consumer Issues,Consumer Issues +426128,Consumer Issues,Consumer Issues +419341,Consumer Issues,Consumer Issues +418647,Consumer Issues,Consumer Issues +210508,Industry,Industry +210507,Industry,Industry +210508,Transportation,Transportation +210507,Transportation,Transportation +205911,Labour,Labour +205994,Economic Development,Développement économique +205993,Economic Development,Développement économique +226168,Economic Development,Développement économique +226167,Economic Development,Développement économique +222690,Economic Development,Développement économique +222685,Economic Development,Développement économique +449961,Transportation,Transportation +449387,Transportation,Transportation +205947,Transportation,Transportation +391921,Transportation,Transportation +454198,Transportation,Transportation +451189,Transportation,Transportation +375197,Transportation,Transportation +340657,Transportation,Transportation +205997,Transportation,Transportation +488837,Environment,Environment +280131,Government Procurement,Government Procurement +209247,Labour,Labour +206231,Labour,Labour +238649,Labour,Labour +238189,Labour,Labour +219827,Labour,Labour +213368,Labour,Labour +213367,Labour,Labour +206231,Immigration,Immigration +259170,Fisheries,Fisheries +206248,Fisheries,Fisheries +259710,Economic Development,Economic Development +259709,Economic Development,Economic Development +206268,Economic Development,Economic Development +259712,Economic Development,Economic Development +480092,Budget,Budget +208727,Environment,Environment +208728,International Trade,International Trade +286934,Budget,Budget +283789,Budget,Budget +353645,Budget,Budget +340618,Budget,Budget +340617,Budget,Budget +340340,Budget,Budget +265092,Environment,Environment +265090,Environment,Environment +265089,Environment,Environment +301490,Environment,Environment +274432,Environment,Environment +274431,Environment,Environment +274430,Environment,Environment +274429,Environment,Environment +270011,Environment,Environment +274430,Health,Health +274429,Health,Health +270011,Health,Health +270010,Health,Health +265092,Health,Health +265090,Health,Health +265089,Health,Health +274432,Health,Health +270010,Industry,Industry +266849,Environment,Environment +466513,Environment,Environment +244022,Environment,Environment +226270,Environment,Environment +286161,Environment,Environment +479832,Infrastructure,Infrastructure +479826,Infrastructure,Infrastructure +317070,Infrastructure,Infrastructure +305933,Infrastructure,Infrastructure +305930,Infrastructure,Infrastructure +305909,Infrastructure,Infrastructure +264609,Infrastructure,Infrastructure +244415,Infrastructure,Infrastructure +211831,Infrastructure,Infrastructure +211827,Infrastructure,Infrastructure +206574,Infrastructure,Infrastructure +206572,Infrastructure,Infrastructure +380778,Infrastructure,Infrastructure +376457,Infrastructure,Infrastructure +370427,Infrastructure,Infrastructure +370415,Infrastructure,Infrastructure +368574,Infrastructure,Infrastructure +368573,Infrastructure,Infrastructure +340580,Infrastructure,Infrastructure +443820,Infrastructure,Infrastructure +437578,Infrastructure,Infrastructure +437574,Infrastructure,Infrastructure +431072,Infrastructure,Infrastructure +418029,Infrastructure,Infrastructure +543832,Infrastructure,Infrastructure +538340,Infrastructure,Infrastructure +538329,Infrastructure,Infrastructure +531205,Infrastructure,Infrastructure +528206,Infrastructure,Infrastructure +526008,Infrastructure,Infrastructure +525994,Infrastructure,Infrastructure +525993,Infrastructure,Infrastructure +511140,Infrastructure,Infrastructure +511125,Infrastructure,Infrastructure +508683,Infrastructure,Infrastructure +502281,Infrastructure,Infrastructure +502274,Infrastructure,Infrastructure +502270,Infrastructure,Infrastructure +499081,Infrastructure,Infrastructure +499070,Infrastructure,Infrastructure +499066,Infrastructure,Infrastructure +499064,Infrastructure,Infrastructure +499063,Infrastructure,Infrastructure +499059,Infrastructure,Infrastructure +499027,Infrastructure,Infrastructure +499025,Infrastructure,Infrastructure +499022,Infrastructure,Infrastructure +499012,Infrastructure,Infrastructure +493387,Infrastructure,Infrastructure +493368,Infrastructure,Infrastructure +493365,Infrastructure,Infrastructure +491221,Infrastructure,Infrastructure +491207,Infrastructure,Infrastructure +487246,Infrastructure,Infrastructure +487237,Infrastructure,Infrastructure +487236,Infrastructure,Infrastructure +487235,Infrastructure,Infrastructure +485192,Infrastructure,Infrastructure +484978,Infrastructure,Infrastructure +484972,Infrastructure,Infrastructure +482622,Infrastructure,Infrastructure +482618,Infrastructure,Infrastructure +482616,Infrastructure,Infrastructure +482088,Infrastructure,Infrastructure +482043,Infrastructure,Infrastructure +479841,Infrastructure,Infrastructure +479839,Infrastructure,Infrastructure +479836,Infrastructure,Infrastructure +406501,Budget,Budget +406390,Budget,Budget +264609,Budget,Budget +244415,Budget,Budget +222834,Budget,Budget +206574,Budget,Budget +406389,Budget,Budget +405582,Budget,Budget +398479,Budget,Budget +384958,Budget,Budget +384956,Budget,Budget +384955,Budget,Budget +374392,Budget,Budget +373884,Budget,Budget +371309,Budget,Budget +358893,Budget,Budget +358892,Budget,Budget +358891,Budget,Budget +358890,Budget,Budget +358889,Budget,Budget +317070,Budget,Budget +317069,Budget,Budget +531207,Budget,Budget +526009,Budget,Budget +526008,Budget,Budget +525996,Budget,Budget +525994,Budget,Budget +525993,Budget,Budget +523247,Budget,Budget +523246,Budget,Budget +504494,Budget,Budget +502281,Budget,Budget +502274,Budget,Budget +502270,Budget,Budget +491207,Budget,Budget +487222,Budget,Budget +484981,Budget,Budget +484978,Budget,Budget +484974,Budget,Budget +484972,Budget,Budget +484970,Budget,Budget +484968,Budget,Budget +475871,Budget,Budget +461593,Budget,Budget +458647,Budget,Budget +452531,Budget,Budget +452522,Budget,Budget +446207,Budget,Budget +443823,Budget,Budget +443821,Budget,Budget +441742,Budget,Budget +432053,Budget,Budget +431836,Budget,Budget +431834,Budget,Budget +409447,Budget,Budget +406505,Budget,Budget +212530,International Trade,International Trade +212512,International Trade,International Trade +218668,International Trade,International Trade +218667,International Trade,International Trade +380964,Pensions,Pensions +380960,Pensions,Pensions +241229,Pensions,Pensions +380960,Taxation and Finance,Taxation and Finance +370660,Taxation and Finance,Taxation and Finance +245531,Taxation and Finance,Taxation and Finance +241234,Taxation and Finance,Taxation and Finance +241229,Taxation and Finance,Taxation and Finance +227320,Taxation and Finance,Taxation and Finance +212413,Taxation and Finance,Taxation and Finance +380968,Taxation and Finance,Taxation and Finance +405989,Environment,Environment +530286,Environment,Environment +273575,Environment,Environment +206747,Environment,Environment +397984,Environment,Environment +397981,Environment,Environment +397978,Environment,Environment +397971,Environment,Environment +389121,Environment,Environment +374051,Environment,Environment +290987,Environment,Environment +515126,Environment,Environment +426976,Environment,Environment +424499,Environment,Environment +424498,Environment,Environment +424496,Environment,Environment +424495,Environment,Environment +410440,Environment,Environment +407399,Environment,Environment +407398,Environment,Environment +407295,Environment,Environment +407137,Environment,Environment +407136,Environment,Environment +407135,Environment,Environment +407052,Environment,Environment +407051,Environment,Environment +406602,Environment,Environment +406601,Environment,Environment +406342,Environment,Environment +406341,Environment,Environment +406340,Environment,Environment +406339,Environment,Environment +406338,Environment,Environment +406058,Environment,Environment +406057,Environment,Environment +406055,Environment,Environment +405995,Environment,Environment +405994,Environment,Environment +405993,Environment,Environment +405992,Environment,Environment +405991,Environment,Environment +251032,Economic Development,Economic Development +443919,Economic Development,Economic Development +226884,Economic Development,Economic Development +226883,Economic Development,Economic Development +226881,Economic Development,Economic Development +226880,Economic Development,Economic Development +223505,Economic Development,Economic Development +377289,Economic Development,Economic Development +369571,Economic Development,Economic Development +336453,Economic Development,Economic Development +336451,Economic Development,Economic Development +264689,Economic Development,Economic Development +377289,Industry,Industry +443919,Industry,Industry +254162,Industry,Industry +251033,Industry,Industry +223505,Industry,Industry +375019,Industry,Industry +351721,Industry,Industry +226879,Intellectual Property,Intellectual Property +377289,Intellectual Property,Intellectual Property +375019,Intellectual Property,Intellectual Property +369571,Intellectual Property,Intellectual Property +351721,Intellectual Property,Intellectual Property +351720,Intellectual Property,Intellectual Property +336452,Intellectual Property,Intellectual Property +336451,Intellectual Property,Intellectual Property +264689,Intellectual Property,Intellectual Property +254162,Intellectual Property,Intellectual Property +226884,Intellectual Property,Intellectual Property +226883,Intellectual Property,Intellectual Property +351721,International Trade,International Trade +351720,International Trade,International Trade +336453,International Trade,International Trade +336452,International Trade,International Trade +336451,International Trade,International Trade +264689,International Trade,International Trade +254162,International Trade,International Trade +251033,International Trade,International Trade +251032,International Trade,International Trade +226884,International Trade,International Trade +226883,International Trade,International Trade +226881,International Trade,International Trade +226880,International Trade,International Trade +226879,International Trade,International Trade +223505,International Trade,International Trade +443919,International Trade,International Trade +377289,International Trade,International Trade +375019,International Trade,International Trade +304991,International Trade,International Trade +259813,International Trade,International Trade +206787,International Trade,International Trade +259815,International Trade,International Trade +206788,International Trade,International Trade +419070,International Trade,International Trade +419069,International Trade,International Trade +419068,International Trade,International Trade +394841,International Trade,International Trade +394840,International Trade,International Trade +394839,International Trade,International Trade +369713,International Trade,International Trade +347579,International Trade,International Trade +347578,International Trade,International Trade +394828,International Trade,International Trade +394827,International Trade,International Trade +206790,International Trade,International Trade +369768,International Trade,International Trade +369767,International Trade,International Trade +347583,International Trade,International Trade +347582,International Trade,International Trade +317372,International Trade,International Trade +304989,International Trade,International Trade +259817,International Trade,International Trade +463773,International Trade,International Trade +463771,International Trade,International Trade +463770,International Trade,International Trade +445808,International Trade,International Trade +445807,International Trade,International Trade +445806,International Trade,International Trade +435485,International Trade,International Trade +434853,International Trade,International Trade +434529,International Trade,International Trade +431401,International Trade,International Trade +419076,International Trade,International Trade +419075,International Trade,International Trade +419073,International Trade,International Trade +418596,International Trade,International Trade +223518,Intellectual Property,Intellectual Property +223529,Intellectual Property,Intellectual Property +373653,Energy,Energy +370784,Energy,Energy +478811,Economic Development,Economic Development +477987,Economic Development,Economic Development +351166,Economic Development,Economic Development +331347,Economic Development,Economic Development +268229,Economic Development,Economic Development +262480,Economic Development,Economic Development +240574,Economic Development,Economic Development +226502,Economic Development,Economic Development +207167,Economic Development,Economic Development +474624,Economic Development,Economic Development +472897,Economic Development,Economic Development +472861,Economic Development,Economic Development +466470,Economic Development,Economic Development +459080,Economic Development,Economic Development +438288,Economic Development,Economic Development +434988,Economic Development,Economic Development +434987,Economic Development,Economic Development +430728,Economic Development,Economic Development +428110,Economic Development,Economic Development +421731,Economic Development,Economic Development +415096,Economic Development,Economic Development +415094,Economic Development,Economic Development +415090,Economic Development,Economic Development +415089,Economic Development,Economic Development +407577,Economic Development,Economic Development +402097,Economic Development,Economic Development +530601,Economic Development,Economic Development +518837,Economic Development,Economic Development +506956,Economic Development,Economic Development +500520,Economic Development,Economic Development +456740,Economic Development,Economic Development +451332,Economic Development,Economic Development +258812,Economic Development,Economic Development +207172,Economic Development,Economic Development +443566,Economic Development,Economic Development +433708,Economic Development,Economic Development +432219,Economic Development,Economic Development +415095,Economic Development,Economic Development +392309,Economic Development,Economic Development +381934,Economic Development,Economic Development +375993,Economic Development,Economic Development +368225,Economic Development,Economic Development +357803,Economic Development,Economic Development +357801,Economic Development,Economic Development +524414,Economic Development,Economic Development +518841,Economic Development,Economic Development +516593,Economic Development,Economic Development +514400,Economic Development,Economic Development +503590,Economic Development,Economic Development +500515,Economic Development,Economic Development +478809,Economic Development,Economic Development +478807,Economic Development,Economic Development +474622,Economic Development,Economic Development +474620,Economic Development,Economic Development +474619,Economic Development,Economic Development +472902,Economic Development,Economic Development +472896,Economic Development,Economic Development +472870,Economic Development,Economic Development +472856,Economic Development,Economic Development +472848,Economic Development,Economic Development +466469,Economic Development,Economic Development +460882,Economic Development,Economic Development +526723,Housing,Housing +526721,Housing,Housing +297329,Housing,Housing +278849,Housing,Housing +252713,Housing,Housing +252712,Housing,Housing +252711,Housing,Housing +252709,Housing,Housing +252695,Housing,Housing +213868,Housing,Housing +434415,Housing,Housing +434413,Housing,Housing +433186,Housing,Housing +433185,Housing,Housing +433184,Housing,Housing +433183,Housing,Housing +431724,Housing,Housing +431723,Housing,Housing +431722,Housing,Housing +431381,Housing,Housing +420343,Housing,Housing +420342,Housing,Housing +407611,Housing,Housing +407087,Housing,Housing +403166,Housing,Housing +402266,Housing,Housing +402264,Housing,Housing +402263,Housing,Housing +399318,Housing,Housing +399317,Housing,Housing +399229,Housing,Housing +397203,Housing,Housing +397202,Housing,Housing +397194,Housing,Housing +397191,Housing,Housing +391923,Housing,Housing +391922,Housing,Housing +391769,Housing,Housing +350136,Housing,Housing +514908,Housing,Housing +514907,Housing,Housing +512243,Housing,Housing +511712,Housing,Housing +510945,Housing,Housing +503302,Housing,Housing +503300,Housing,Housing +498420,Housing,Housing +498419,Housing,Housing +498417,Housing,Housing +498416,Housing,Housing +498415,Housing,Housing +498413,Housing,Housing +498411,Housing,Housing +498409,Housing,Housing +498407,Housing,Housing +498404,Housing,Housing +498403,Housing,Housing +498401,Housing,Housing +498397,Housing,Housing +498395,Housing,Housing +498394,Housing,Housing +498393,Housing,Housing +498391,Housing,Housing +498390,Housing,Housing +498387,Housing,Housing +498386,Housing,Housing +498384,Housing,Housing +498381,Housing,Housing +498308,Housing,Housing +498307,Housing,Housing +498306,Housing,Housing +498305,Housing,Housing +498303,Housing,Housing +498301,Housing,Housing +498300,Housing,Housing +498299,Housing,Housing +498297,Housing,Housing +498296,Housing,Housing +498295,Housing,Housing +498294,Housing,Housing +498293,Housing,Housing +498292,Housing,Housing +498291,Housing,Housing +498290,Housing,Housing +498289,Housing,Housing +498288,Housing,Housing +498285,Housing,Housing +498282,Housing,Housing +498279,Housing,Housing +498277,Housing,Housing +497739,Housing,Housing +497738,Housing,Housing +497737,Housing,Housing +497736,Housing,Housing +497735,Housing,Housing +497734,Housing,Housing +497733,Housing,Housing +497732,Housing,Housing +497731,Housing,Housing +497730,Housing,Housing +497729,Housing,Housing +497728,Housing,Housing +497727,Housing,Housing +497726,Housing,Housing +497725,Housing,Housing +497724,Housing,Housing +493913,Housing,Housing +487398,Housing,Housing +485934,Housing,Housing +485932,Housing,Housing +478483,Housing,Housing +465597,Housing,Housing +465596,Housing,Housing +465595,Housing,Housing +465594,Housing,Housing +465592,Housing,Housing +465590,Housing,Housing +465589,Housing,Housing +465584,Housing,Housing +465583,Housing,Housing +465582,Housing,Housing +465581,Housing,Housing +465580,Housing,Housing +465579,Housing,Housing +465578,Housing,Housing +465577,Housing,Housing +465576,Housing,Housing +465575,Housing,Housing +465574,Housing,Housing +465573,Housing,Housing +465572,Housing,Housing +465570,Housing,Housing +465569,Housing,Housing +465568,Housing,Housing +465567,Housing,Housing +465565,Housing,Housing +465564,Housing,Housing +465563,Housing,Housing +465562,Housing,Housing +465561,Housing,Housing +465560,Housing,Housing +465559,Housing,Housing +465557,Housing,Housing +465556,Housing,Housing +465555,Housing,Housing +465554,Housing,Housing +465553,Housing,Housing +465552,Housing,Housing +465551,Housing,Housing +465550,Housing,Housing +465549,Housing,Housing +465548,Housing,Housing +465547,Housing,Housing +465546,Housing,Housing +465545,Housing,Housing +465544,Housing,Housing +465543,Housing,Housing +465542,Housing,Housing +465541,Housing,Housing +465540,Housing,Housing +465539,Housing,Housing +465337,Housing,Housing +465336,Housing,Housing +462497,Housing,Housing +461457,Housing,Housing +461456,Housing,Housing +454480,Housing,Housing +454370,Housing,Housing +454369,Housing,Housing +454368,Housing,Housing +454367,Housing,Housing +454365,Housing,Housing +454360,Housing,Housing +454359,Housing,Housing +454358,Housing,Housing +454357,Housing,Housing +454356,Housing,Housing +454355,Housing,Housing +454354,Housing,Housing +454350,Housing,Housing +454349,Housing,Housing +454348,Housing,Housing +454347,Housing,Housing +454346,Housing,Housing +454344,Housing,Housing +454340,Housing,Housing +454337,Housing,Housing +453794,Housing,Housing +453793,Housing,Housing +453792,Housing,Housing +453791,Housing,Housing +453790,Housing,Housing +453789,Housing,Housing +453788,Housing,Housing +453787,Housing,Housing +453786,Housing,Housing +453785,Housing,Housing +453784,Housing,Housing +453783,Housing,Housing +453782,Housing,Housing +453781,Housing,Housing +453780,Housing,Housing +453779,Housing,Housing +453778,Housing,Housing +453777,Housing,Housing +453776,Housing,Housing +453775,Housing,Housing +453773,Housing,Housing +446107,Housing,Housing +446106,Housing,Housing +446105,Housing,Housing +446104,Housing,Housing +446103,Housing,Housing +436318,Housing,Housing +436317,Housing,Housing +436316,Housing,Housing +436315,Housing,Housing +436314,Housing,Housing +436313,Housing,Housing +436312,Housing,Housing +436311,Housing,Housing +436310,Housing,Housing +436309,Housing,Housing +436308,Housing,Housing +436307,Housing,Housing +436306,Housing,Housing +436305,Housing,Housing +436304,Housing,Housing +436303,Housing,Housing +436302,Housing,Housing +436301,Housing,Housing +436300,Housing,Housing +436299,Housing,Housing +436292,Housing,Housing +436290,Housing,Housing +436289,Housing,Housing +436288,Housing,Housing +436287,Housing,Housing +436286,Housing,Housing +436283,Housing,Housing +436279,Housing,Housing +436277,Housing,Housing +436275,Housing,Housing +436273,Housing,Housing +436272,Housing,Housing +436271,Housing,Housing +436270,Housing,Housing +436269,Housing,Housing +436268,Housing,Housing +436267,Housing,Housing +436266,Housing,Housing +436265,Housing,Housing +436262,Housing,Housing +436261,Housing,Housing +436259,Housing,Housing +436258,Housing,Housing +436257,Housing,Housing +530807,Housing,Housing +530271,Housing,Housing +529983,Housing,Housing +529982,Housing,Housing +529981,Housing,Housing +529980,Housing,Housing +527443,Housing,Housing +527440,Housing,Housing +527439,Housing,Housing +527238,Housing,Housing +527237,Housing,Housing +527236,Housing,Housing +527234,Housing,Housing +527233,Housing,Housing +527232,Housing,Housing +527231,Housing,Housing +527230,Housing,Housing +527229,Housing,Housing +527227,Housing,Housing +527226,Housing,Housing +527225,Housing,Housing +527223,Housing,Housing +527222,Housing,Housing +527221,Housing,Housing +527220,Housing,Housing +527219,Housing,Housing +527218,Housing,Housing +527217,Housing,Housing +527216,Housing,Housing +527215,Housing,Housing +527214,Housing,Housing +527213,Housing,Housing +527212,Housing,Housing +527210,Housing,Housing +527209,Housing,Housing +527208,Housing,Housing +527207,Housing,Housing +527206,Housing,Housing +527205,Housing,Housing +527204,Housing,Housing +527203,Housing,Housing +527202,Housing,Housing +527201,Housing,Housing +527200,Housing,Housing +527199,Housing,Housing +527198,Housing,Housing +527197,Housing,Housing +527195,Housing,Housing +527194,Housing,Housing +527193,Housing,Housing +527192,Housing,Housing +527190,Housing,Housing +527189,Housing,Housing +527188,Housing,Housing +527187,Housing,Housing +527186,Housing,Housing +527184,Housing,Housing +527183,Housing,Housing +527182,Housing,Housing +526735,Housing,Housing +526733,Housing,Housing +526730,Housing,Housing +526728,Housing,Housing +223334,Health,Health +223333,Health,Health +223337,Health,Health +223336,Health,Health +358245,International Development,International Development +347330,International Development,International Development +317819,International Development,International Development +207283,International Development,International Development +460490,Taxation and Finance,Taxation and Finance +409653,Taxation and Finance,Taxation and Finance +444213,Taxation and Finance,Taxation and Finance +325003,International Development,International Development +317816,International Development,International Development +207289,International Development,International Development +277568,International Relations,International Relations +443841,International Relations,International Relations +207289,International Relations,International Relations +325003,International Relations,International Relations +317819,International Relations,International Relations +317816,International Relations,International Relations +317819,International Trade,International Trade +317816,International Trade,International Trade +207289,International Trade,International Trade +341348,International Trade,International Trade +510417,Regional Development,Regional Development +510411,Regional Development,Regional Development +207351,Regional Development,Regional Development +381419,Regional Development,Regional Development +390132,Regional Development,Regional Development +390130,Regional Development,Regional Development +416516,Infrastructure,Infrastructure +416513,Infrastructure,Infrastructure +341156,Infrastructure,Infrastructure +341152,Infrastructure,Infrastructure +341147,Infrastructure,Infrastructure +207351,Infrastructure,Infrastructure +366247,Infrastructure,Infrastructure +515382,Industry,Industry +515381,Industry,Industry +273000,Industry,Industry +259049,Industry,Industry +259032,Industry,Industry +244748,Industry,Industry +244747,Industry,Industry +240055,Industry,Industry +233010,Industry,Industry +207391,Industry,Industry +340216,Industry,Industry +340215,Industry,Industry +338547,Industry,Industry +338540,Industry,Industry +338532,Industry,Industry +338508,Industry,Industry +338122,Industry,Industry +338120,Industry,Industry +335530,Industry,Industry +335529,Industry,Industry +333836,Industry,Industry +331246,Industry,Industry +331244,Industry,Industry +329867,Industry,Industry +329866,Industry,Industry +329863,Industry,Industry +327125,Industry,Industry +327123,Industry,Industry +327122,Industry,Industry +327121,Industry,Industry +323957,Industry,Industry +323956,Industry,Industry +318651,Industry,Industry +318650,Industry,Industry +316851,Industry,Industry +316850,Industry,Industry +310084,Industry,Industry +310082,Industry,Industry +310081,Industry,Industry +310080,Industry,Industry +310078,Industry,Industry +310076,Industry,Industry +310075,Industry,Industry +310073,Industry,Industry +310070,Industry,Industry +310069,Industry,Industry +310067,Industry,Industry +310064,Industry,Industry +310062,Industry,Industry +310059,Industry,Industry +310048,Industry,Industry +310044,Industry,Industry +310043,Industry,Industry +310040,Industry,Industry +310036,Industry,Industry +304382,Industry,Industry +304370,Industry,Industry +304363,Industry,Industry +304349,Industry,Industry +296822,Industry,Industry +280450,Industry,Industry +280449,Industry,Industry +404021,Industry,Industry +400105,Industry,Industry +400104,Industry,Industry +400101,Industry,Industry +395464,Industry,Industry +392274,Industry,Industry +389479,Industry,Industry +389478,Industry,Industry +389477,Industry,Industry +387185,Industry,Industry +383524,Industry,Industry +383523,Industry,Industry +383518,Industry,Industry +381862,Industry,Industry +381861,Industry,Industry +380277,Industry,Industry +376163,Industry,Industry +376161,Industry,Industry +376159,Industry,Industry +375977,Industry,Industry +374179,Industry,Industry +374178,Industry,Industry +374176,Industry,Industry +370969,Industry,Industry +369061,Industry,Industry +369054,Industry,Industry +369052,Industry,Industry +369049,Industry,Industry +360625,Industry,Industry +359549,Industry,Industry +357769,Industry,Industry +357620,Industry,Industry +353604,Industry,Industry +353602,Industry,Industry +353460,Industry,Industry +350981,Industry,Industry +350980,Industry,Industry +350978,Industry,Industry +350975,Industry,Industry +343442,Industry,Industry +343441,Industry,Industry +515380,Industry,Industry +512343,Industry,Industry +509889,Industry,Industry +509764,Industry,Industry +509763,Industry,Industry +509762,Industry,Industry +509760,Industry,Industry +509759,Industry,Industry +509756,Industry,Industry +509755,Industry,Industry +507062,Industry,Industry +507061,Industry,Industry +507059,Industry,Industry +507058,Industry,Industry +507053,Industry,Industry +507050,Industry,Industry +507047,Industry,Industry +507045,Industry,Industry +507039,Industry,Industry +504544,Industry,Industry +503644,Industry,Industry +503641,Industry,Industry +503626,Industry,Industry +500677,Industry,Industry +500676,Industry,Industry +500675,Industry,Industry +500673,Industry,Industry +498063,Industry,Industry +498062,Industry,Industry +498051,Industry,Industry +498047,Industry,Industry +498044,Industry,Industry +498042,Industry,Industry +498041,Industry,Industry +498040,Industry,Industry +498024,Industry,Industry +498005,Industry,Industry +498003,Industry,Industry +495854,Industry,Industry +494536,Industry,Industry +492685,Industry,Industry +491848,Industry,Industry +491847,Industry,Industry +489122,Industry,Industry +489119,Industry,Industry +489112,Industry,Industry +489046,Industry,Industry +489042,Industry,Industry +489041,Industry,Industry +486878,Industry,Industry +486875,Industry,Industry +485950,Industry,Industry +485945,Industry,Industry +484031,Industry,Industry +484030,Industry,Industry +484028,Industry,Industry +484022,Industry,Industry +484018,Industry,Industry +484016,Industry,Industry +484008,Industry,Industry +484005,Industry,Industry +484003,Industry,Industry +484001,Industry,Industry +482059,Industry,Industry +482056,Industry,Industry +482054,Industry,Industry +482053,Industry,Industry +482044,Industry,Industry +481524,Industry,Industry +476626,Industry,Industry +476623,Industry,Industry +476622,Industry,Industry +476621,Industry,Industry +476619,Industry,Industry +476611,Industry,Industry +476609,Industry,Industry +476607,Industry,Industry +476606,Industry,Industry +474638,Industry,Industry +474637,Industry,Industry +474636,Industry,Industry +474467,Industry,Industry +474465,Industry,Industry +474464,Industry,Industry +474463,Industry,Industry +473278,Industry,Industry +464260,Industry,Industry +464258,Industry,Industry +464253,Industry,Industry +462262,Industry,Industry +462261,Industry,Industry +462259,Industry,Industry +462258,Industry,Industry +462257,Industry,Industry +461701,Industry,Industry +461683,Industry,Industry +461543,Industry,Industry +461541,Industry,Industry +459522,Industry,Industry +458189,Industry,Industry +458188,Industry,Industry +457191,Industry,Industry +457190,Industry,Industry +457188,Industry,Industry +457185,Industry,Industry +457184,Industry,Industry +451447,Industry,Industry +451446,Industry,Industry +451443,Industry,Industry +449275,Industry,Industry +446610,Industry,Industry +446609,Industry,Industry +442786,Industry,Industry +442785,Industry,Industry +438391,Industry,Industry +430787,Industry,Industry +426098,Industry,Industry +421579,Industry,Industry +421575,Industry,Industry +413912,Industry,Industry +413908,Industry,Industry +413906,Industry,Industry +413905,Industry,Industry +409597,Industry,Industry +409595,Industry,Industry +409594,Industry,Industry +409593,Industry,Industry +542838,Industry,Industry +542836,Industry,Industry +542835,Industry,Industry +542833,Industry,Industry +542832,Industry,Industry +541098,Industry,Industry +541096,Industry,Industry +539018,Industry,Industry +536699,Industry,Industry +536698,Industry,Industry +536660,Industry,Industry +536657,Industry,Industry +536655,Industry,Industry +536653,Industry,Industry +536650,Industry,Industry +536649,Industry,Industry +536647,Industry,Industry +536644,Industry,Industry +533361,Industry,Industry +533356,Industry,Industry +531520,Industry,Industry +531516,Industry,Industry +531513,Industry,Industry +531099,Industry,Industry +527759,Industry,Industry +527757,Industry,Industry +527754,Industry,Industry +527753,Industry,Industry +527752,Industry,Industry +527751,Industry,Industry +527750,Industry,Industry +527746,Industry,Industry +527745,Industry,Industry +523975,Industry,Industry +523974,Industry,Industry +523973,Industry,Industry +523972,Industry,Industry +523971,Industry,Industry +523970,Industry,Industry +523969,Industry,Industry +523968,Industry,Industry +523966,Industry,Industry +523963,Industry,Industry +521004,Industry,Industry +520894,Industry,Industry +519436,Industry,Industry +519432,Industry,Industry +519431,Industry,Industry +516673,Industry,Industry +516672,Industry,Industry +516671,Industry,Industry +516670,Industry,Industry +516669,Industry,Industry +516667,Industry,Industry +516666,Industry,Industry +516664,Industry,Industry +515385,Industry,Industry +515384,Industry,Industry +490064,Research and Development,Research and Development +479966,Research and Development,Research and Development +269698,Research and Development,Research and Development +254203,Research and Development,Research and Development +244457,Research and Development,Research and Development +244454,Research and Development,Research and Development +244449,Research and Development,Research and Development +227354,Research and Development,Research and Development +227349,Research and Development,Research and Development +207492,Research and Development,Research and Development +457829,Research and Development,Research and Development +441031,Research and Development,Research and Development +432724,Research and Development,Research and Development +425804,Research and Development,Research and Development +412820,Research and Development,Research and Development +412812,Research and Development,Research and Development +412796,Research and Development,Research and Development +399044,Research and Development,Research and Development +397137,Research and Development,Research and Development +383631,Research and Development,Research and Development +379308,Research and Development,Research and Development +376698,Research and Development,Research and Development +372508,Research and Development,Research and Development +369011,Research and Development,Research and Development +369007,Research and Development,Research and Development +347227,Research and Development,Research and Development +347217,Research and Development,Research and Development +335694,Research and Development,Research and Development +325056,Research and Development,Research and Development +315774,Research and Development,Research and Development +310329,Research and Development,Research and Development +285489,Research and Development,Research and Development +276175,Research and Development,Research and Development +538604,Research and Development,Research and Development +522469,Research and Development,Research and Development +519882,Research and Development,Research and Development +504098,Research and Development,Research and Development +501947,Research and Development,Research and Development +498716,Research and Development,Research and Development +441030,Research and Development,Research and Development +427992,Research and Development,Research and Development +227377,Research and Development,Research and Development +227357,Research and Development,Research and Development +212170,Research and Development,Research and Development +207307,Research and Development,Research and Development +369009,Research and Development,Research and Development +369006,Research and Development,Research and Development +365229,Research and Development,Research and Development +351382,Research and Development,Research and Development +351379,Research and Development,Research and Development +349011,Research and Development,Research and Development +349010,Research and Development,Research and Development +349008,Research and Development,Research and Development +347219,Research and Development,Research and Development +331093,Research and Development,Research and Development +321899,Research and Development,Research and Development +315770,Research and Development,Research and Development +304065,Research and Development,Research and Development +304050,Research and Development,Research and Development +277782,Research and Development,Research and Development +264556,Research and Development,Research and Development +244458,Research and Development,Research and Development +244456,Research and Development,Research and Development +244452,Research and Development,Research and Development +244450,Research and Development,Research and Development +244421,Research and Development,Research and Development +416451,Research and Development,Research and Development +412831,Research and Development,Research and Development +394219,Research and Development,Research and Development +394216,Research and Development,Research and Development +383831,Research and Development,Research and Development +383628,Research and Development,Research and Development +541007,Research and Development,Research and Development +522467,Research and Development,Research and Development +504110,Research and Development,Research and Development +500685,Research and Development,Research and Development +497883,Research and Development,Research and Development +490069,Research and Development,Research and Development +486592,Research and Development,Research and Development +519880,Research and Development,Research and Development +510272,Research and Development,Research and Development +315772,Research and Development,Research and Development +313046,Research and Development,Research and Development +244455,Research and Development,Research and Development +207495,Research and Development,Research and Development +376699,Research and Development,Research and Development +366694,Research and Development,Research and Development +365230,Research and Development,Research and Development +358109,Research and Development,Research and Development +349016,Research and Development,Research and Development +347222,Research and Development,Research and Development +341251,Research and Development,Research and Development +335696,Research and Development,Research and Development +333642,Research and Development,Research and Development +333638,Research and Development,Research and Development +321895,Research and Development,Research and Development +403502,Research and Development,Research and Development +400804,Research and Development,Research and Development +400705,Research and Development,Research and Development +397144,Research and Development,Research and Development +397143,Research and Development,Research and Development +397141,Research and Development,Research and Development +397139,Research and Development,Research and Development +388049,Research and Development,Research and Development +385676,Research and Development,Research and Development +382519,Research and Development,Research and Development +507536,Research and Development,Research and Development +501105,Research and Development,Research and Development +500714,Research and Development,Research and Development +500636,Research and Development,Research and Development +497895,Research and Development,Research and Development +483651,Research and Development,Research and Development +478603,Research and Development,Research and Development +439132,Taxation and Finance,Taxation and Finance +434248,Taxation and Finance,Taxation and Finance +327689,Taxation and Finance,Taxation and Finance +327702,Taxation and Finance,Taxation and Finance +327700,Taxation and Finance,Taxation and Finance +327695,Taxation and Finance,Taxation and Finance +207610,Research and Development,Research and Development +541580,Research and Development,Research and Development +207638,Defence,Defence +422310,Economic Development,Economic Development +372531,Economic Development,Economic Development +207671,Economic Development,Economic Development +313451,Economic Development,Economic Development +313449,Economic Development,Economic Development +533669,Economic Development,Economic Development +533668,Economic Development,Economic Development +519850,Economic Development,Economic Development +461680,Economic Development,Economic Development +451437,Economic Development,Economic Development +451436,Economic Development,Economic Development +451432,Economic Development,Economic Development +451430,Economic Development,Economic Development +259511,Energy,Energy +259506,Energy,Energy +222847,Energy,Energy +217210,Energy,Energy +217208,Energy,Energy +268289,Energy,Energy +231069,Transportation,Transportation +244974,Energy,Energy +223368,Energy,Energy +217908,Energy,Energy +217907,Energy,Energy +244978,Energy,Energy +244977,Energy,Energy +244976,Industry,Industry +244974,Industry,Industry +244978,Industry,Industry +413992,Research and Development,Research and Development +410991,Research and Development,Research and Development +231272,Research and Development,Research and Development +208188,Research and Development,Research and Development +410990,Research and Development,Research and Development +410989,Research and Development,Research and Development +410986,Research and Development,Research and Development +382428,Research and Development,Research and Development +381398,Research and Development,Research and Development +430073,Research and Development,Research and Development +427857,Research and Development,Research and Development +427115,Research and Development,Research and Development +413997,Research and Development,Research and Development +413996,Research and Development,Research and Development +209947,Intellectual Property,Intellectual Property +274771,Security,Security +327877,Consumer Issues,Consumer Issues +327876,Consumer Issues,Consumer Issues +284040,Consumer Issues,Consumer Issues +265274,Consumer Issues,Consumer Issues +265273,Consumer Issues,Consumer Issues +265272,Consumer Issues,Consumer Issues +265271,Consumer Issues,Consumer Issues +265270,Consumer Issues,Consumer Issues +265269,Consumer Issues,Consumer Issues +265249,Consumer Issues,Consumer Issues +254497,Consumer Issues,Consumer Issues +254496,Consumer Issues,Consumer Issues +227516,Consumer Issues,Consumer Issues +349408,Consumer Issues,Consumer Issues +349407,Consumer Issues,Consumer Issues +349406,Consumer Issues,Consumer Issues +338866,Consumer Issues,Consumer Issues +254496,Economic Development,Economic Development +227516,Economic Development,Economic Development +349408,Economic Development,Economic Development +349407,Economic Development,Economic Development +349406,Economic Development,Economic Development +338866,Economic Development,Economic Development +338865,Economic Development,Economic Development +327877,Economic Development,Economic Development +327876,Economic Development,Economic Development +313275,Economic Development,Economic Development +284040,Economic Development,Economic Development +265274,Economic Development,Economic Development +265273,Economic Development,Economic Development +265272,Economic Development,Economic Development +265271,Economic Development,Economic Development +265270,Economic Development,Economic Development +265269,Economic Development,Economic Development +265249,Economic Development,Economic Development +265273,Employment and Training,Employment and Training +254497,Employment and Training,Employment and Training +265249,Financial Institutions,Financial Institutions +254497,Financial Institutions,Financial Institutions +227516,Financial Institutions,Financial Institutions +349408,Financial Institutions,Financial Institutions +349407,Financial Institutions,Financial Institutions +349406,Financial Institutions,Financial Institutions +338866,Financial Institutions,Financial Institutions +327877,Financial Institutions,Financial Institutions +313275,Financial Institutions,Financial Institutions +265274,Financial Institutions,Financial Institutions +265273,Financial Institutions,Financial Institutions +265272,Financial Institutions,Financial Institutions +265271,Financial Institutions,Financial Institutions +265270,Financial Institutions,Financial Institutions +254497,Housing,Housing +254496,Housing,Housing +227516,Housing,Housing +349408,Housing,Housing +349407,Housing,Housing +349406,Housing,Housing +338866,Housing,Housing +338865,Housing,Housing +327877,Housing,Housing +327876,Housing,Housing +313275,Housing,Housing +284040,Housing,Housing +265274,Housing,Housing +265273,Housing,Housing +265272,Housing,Housing +265271,Housing,Housing +265270,Housing,Housing +265269,Housing,Housing +227516,Research and Development,Research and Development +349408,Research and Development,Research and Development +254497,Small Business,Small Business +254496,Small Business,Small Business +338865,Small Business,Small Business +327877,Small Business,Small Business +227514,Taxation and Finance,Taxation and Finance +238851,International Relations,International Relations +240911,Agriculture,Agriculture +240910,Agriculture,Agriculture +240909,Agriculture,Agriculture +230320,Agriculture,Agriculture +230319,Agriculture,Agriculture +230079,Agriculture,Agriculture +226607,Agriculture,Agriculture +226606,Agriculture,Agriculture +226605,Agriculture,Agriculture +226603,Agriculture,Agriculture +331829,Agriculture,Agriculture +329594,Agriculture,Agriculture +329593,Agriculture,Agriculture +310491,Agriculture,Agriculture +310455,Agriculture,Agriculture +310447,Agriculture,Agriculture +310446,Agriculture,Agriculture +310443,Agriculture,Agriculture +310437,Agriculture,Agriculture +310435,Agriculture,Agriculture +297083,Agriculture,Agriculture +297079,Agriculture,Agriculture +287068,Agriculture,Agriculture +287062,Agriculture,Agriculture +269332,Agriculture,Agriculture +269124,Agriculture,Agriculture +269089,Agriculture,Agriculture +265170,Agriculture,Agriculture +261790,Agriculture,Agriculture +261609,Agriculture,Agriculture +250950,Agriculture,Agriculture +250949,Agriculture,Agriculture +475500,Education,Education +473716,Education,Education +329433,Education,Education +329432,Education,Education +321213,Education,Education +270329,Education,Education +247818,Education,Education +247817,Education,Education +247816,Education,Education +247815,Education,Education +247814,Education,Education +247813,Education,Education +247810,Education,Education +226417,Education,Education +221107,Education,Education +221087,Education,Education +213928,Education,Education +379621,Education,Education +379616,Education,Education +379612,Education,Education +379574,Education,Education +372834,Education,Education +368143,Education,Education +368142,Education,Education +368141,Education,Education +368140,Education,Education +364351,Education,Education +363042,Education,Education +361682,Education,Education +342599,Education,Education +342597,Education,Education +334313,Education,Education +467718,Education,Education +467713,Education,Education +467687,Education,Education +460467,Education,Education +460160,Education,Education +459566,Education,Education +458803,Education,Education +445229,Education,Education +443153,Education,Education +443152,Education,Education +443149,Education,Education +433087,Education,Education +427896,Education,Education +427895,Education,Education +427894,Education,Education +427893,Education,Education +427892,Education,Education +427891,Education,Education +427890,Education,Education +423648,Education,Education +423585,Education,Education +415010,Education,Education +415009,Education,Education +414978,Education,Education +413917,Education,Education +400510,Education,Education +398163,Education,Education +395785,Education,Education +392161,Education,Education +387111,Education,Education +387108,Education,Education +387107,Education,Education +387105,Education,Education +387052,Education,Education +387051,Education,Education +387050,Education,Education +384852,Education,Education +526060,Education,Education +515613,Education,Education +512736,Education,Education +510409,Education,Education +509001,Education,Education +437944,Research and Development,Research and Development +437942,Research and Development,Research and Development +321214,Research and Development,Research and Development +321213,Research and Development,Research and Development +270329,Research and Development,Research and Development +400510,Research and Development,Research and Development +398163,Research and Development,Research and Development +398162,Research and Development,Research and Development +395788,Research and Development,Research and Development +395787,Research and Development,Research and Development +395786,Research and Development,Research and Development +392161,Research and Development,Research and Development +387111,Research and Development,Research and Development +387108,Research and Development,Research and Development +387107,Research and Development,Research and Development +387105,Research and Development,Research and Development +387052,Research and Development,Research and Development +387051,Research and Development,Research and Development +387050,Research and Development,Research and Development +384852,Research and Development,Research and Development +379616,Research and Development,Research and Development +379612,Research and Development,Research and Development +379574,Research and Development,Research and Development +370890,Research and Development,Research and Development +368139,Research and Development,Research and Development +364351,Research and Development,Research and Development +363042,Research and Development,Research and Development +361682,Research and Development,Research and Development +357162,Research and Development,Research and Development +342598,Research and Development,Research and Development +334313,Research and Development,Research and Development +433087,Research and Development,Research and Development +423585,Research and Development,Research and Development +415010,Research and Development,Research and Development +415009,Research and Development,Research and Development +415007,Research and Development,Research and Development +510409,Research and Development,Research and Development +509001,Research and Development,Research and Development +505363,Research and Development,Research and Development +467718,Research and Development,Research and Development +467713,Research and Development,Research and Development +467696,Research and Development,Research and Development +467687,Research and Development,Research and Development +445258,Research and Development,Research and Development +445235,Research and Development,Research and Development +215387,Environment,Environment +530910,Taxation and Finance,Taxation and Finance +530904,Taxation and Finance,Taxation and Finance +222635,Taxation and Finance,Taxation and Finance +222633,Taxation and Finance,Taxation and Finance +353444,Taxation and Finance,Taxation and Finance +353443,Taxation and Finance,Taxation and Finance +353442,Taxation and Finance,Taxation and Finance +273655,Taxation and Finance,Taxation and Finance +273654,Taxation and Finance,Taxation and Finance +273653,Taxation and Finance,Taxation and Finance +273647,Taxation and Finance,Taxation and Finance +222642,Taxation and Finance,Taxation and Finance +222640,Taxation and Finance,Taxation and Finance +222639,Taxation and Finance,Taxation and Finance +425358,Taxation and Finance,Taxation and Finance +425356,Taxation and Finance,Taxation and Finance +400411,Taxation and Finance,Taxation and Finance +400408,Taxation and Finance,Taxation and Finance +400402,Taxation and Finance,Taxation and Finance +504542,Taxation and Finance,Taxation and Finance +504541,Taxation and Finance,Taxation and Finance +504535,Taxation and Finance,Taxation and Finance +504534,Taxation and Finance,Taxation and Finance +504523,Taxation and Finance,Taxation and Finance +504521,Taxation and Finance,Taxation and Finance +504517,Taxation and Finance,Taxation and Finance +492503,Taxation and Finance,Taxation and Finance +455784,Taxation and Finance,Taxation and Finance +425356,Tourism,Tourism +425352,Tourism,Tourism +276352,Tourism,Tourism +273655,Tourism,Tourism +273654,Tourism,Tourism +273653,Tourism,Tourism +273647,Tourism,Tourism +222639,Tourism,Tourism +400411,Tourism,Tourism +400408,Tourism,Tourism +400406,Tourism,Tourism +400405,Tourism,Tourism +400404,Tourism,Tourism +400402,Tourism,Tourism +400397,Tourism,Tourism +376118,Tourism,Tourism +376117,Tourism,Tourism +376114,Tourism,Tourism +376113,Tourism,Tourism +353443,Tourism,Tourism +353441,Tourism,Tourism +353424,Tourism,Tourism +327330,Tourism,Tourism +327326,Tourism,Tourism +327325,Tourism,Tourism +327324,Tourism,Tourism +327323,Tourism,Tourism +327322,Tourism,Tourism +324192,Tourism,Tourism +530905,Tourism,Tourism +504542,Tourism,Tourism +504541,Tourism,Tourism +504536,Tourism,Tourism +504535,Tourism,Tourism +501001,Tourism,Tourism +501000,Tourism,Tourism +455788,Tourism,Tourism +425361,Tourism,Tourism +425360,Tourism,Tourism +425359,Tourism,Tourism +255209,Mining,Mining +246153,Mining,Mining +360582,Mining,Mining +358322,Mining,Mining +357862,Mining,Mining +356884,Mining,Mining +355920,Mining,Mining +349958,Mining,Mining +349957,Mining,Mining +347981,Mining,Mining +347980,Mining,Mining +340446,Mining,Mining +334269,Mining,Mining +322911,Mining,Mining +322910,Mining,Mining +322909,Mining,Mining +308949,Mining,Mining +298089,Mining,Mining +287290,Mining,Mining +287289,Mining,Mining +221167,Government Procurement,Government Procurement +226048,Industry,Industry +238991,Industry,Industry +256090,Tourism,Tourism +256089,Tourism,Tourism +238992,Tourism,Tourism +238991,Tourism,Tourism +238990,Tourism,Tourism +226048,Tourism,Tourism +258510,Tourism,Tourism +226048,Immigration,Immigration +238992,Immigration,Immigration +238990,Transportation,Transportation +226048,Transportation,Transportation +258510,Transportation,Transportation +256091,Transportation,Transportation +256090,Transportation,Transportation +256089,Transportation,Transportation +238992,Transportation,Transportation +321481,Regional Development,Regional Development +321481,Infrastructure,Infrastructure +321481,Transportation,Transportation +275449,Tourism,Tourism +356880,Tourism,Tourism +225527,Tourism,Tourism +225027,Tourism,Tourism +338983,Tourism,Tourism +336320,Tourism,Tourism +297470,Tourism,Tourism +463494,Taxation and Finance,Taxation and Finance +462902,Taxation and Finance,Taxation and Finance +306372,Taxation and Finance,Taxation and Finance +336320,Taxation and Finance,Taxation and Finance +463494,Industry,Industry +462902,Industry,Industry +306372,Industry,Industry +297470,Industry,Industry +297469,Industry,Industry +225527,Industry,Industry +463494,Consumer Issues,Consumer Issues +338983,Regional Development,Regional Development +336320,Regional Development,Regional Development +356880,Transportation,Transportation +338983,Transportation,Transportation +336320,Transportation,Transportation +306372,Transportation,Transportation +297470,Transportation,Transportation +297469,Transportation,Transportation +275449,Transportation,Transportation +225527,Transportation,Transportation +463494,Small Business,Small Business +462902,Small Business,Small Business +338983,Small Business,Small Business +336320,Small Business,Small Business +297470,Small Business,Small Business +297469,Small Business,Small Business +356880,Small Business,Small Business +356880,Infrastructure,Infrastructure +338983,Infrastructure,Infrastructure +346457,Economic Development,Economic Development +269933,Economic Development,Economic Development +280730,Immigration,Immigration +280329,Immigration,Immigration +216073,Immigration,Immigration +337609,Immigration,Immigration +318490,Infrastructure,Infrastructure +280329,Infrastructure,Infrastructure +271949,Government Procurement,Government Procurement +223867,Government Procurement,Government Procurement +364795,Government Procurement,Government Procurement +539774,Economic Development,Economic Development +539772,Economic Development,Economic Development +274950,Economic Development,Economic Development +274930,Economic Development,Economic Development +274929,Economic Development,Economic Development +268789,Economic Development,Economic Development +268550,Economic Development,Economic Development +268549,Economic Development,Economic Development +260393,Economic Development,Economic Development +260389,Economic Development,Economic Development +260370,Economic Development,Economic Development +256809,Economic Development,Economic Development +255909,Economic Development,Economic Development +255889,Economic Development,Economic Development +381034,Economic Development,Economic Development +379987,Economic Development,Economic Development +379985,Economic Development,Economic Development +372748,Economic Development,Economic Development +372743,Economic Development,Economic Development +372739,Economic Development,Economic Development +372731,Economic Development,Economic Development +372720,Economic Development,Economic Development +372713,Economic Development,Economic Development +369722,Economic Development,Economic Development +365290,Economic Development,Economic Development +359763,Economic Development,Economic Development +339366,Economic Development,Economic Development +339364,Economic Development,Economic Development +339363,Economic Development,Economic Development +339362,Economic Development,Economic Development +337268,Economic Development,Economic Development +333111,Economic Development,Economic Development +328629,Economic Development,Economic Development +328613,Economic Development,Economic Development +328612,Economic Development,Economic Development +328611,Economic Development,Economic Development +328610,Economic Development,Economic Development +328609,Economic Development,Economic Development +328589,Economic Development,Economic Development +320336,Economic Development,Economic Development +320334,Economic Development,Economic Development +320332,Economic Development,Economic Development +320331,Economic Development,Economic Development +278749,Economic Development,Economic Development +274953,Economic Development,Economic Development +274952,Economic Development,Economic Development +274951,Economic Development,Economic Development +430777,Economic Development,Economic Development +430774,Economic Development,Economic Development +430769,Economic Development,Economic Development +430767,Economic Development,Economic Development +430755,Economic Development,Economic Development +430753,Economic Development,Economic Development +430752,Economic Development,Economic Development +430748,Economic Development,Economic Development +430745,Economic Development,Economic Development +430743,Economic Development,Economic Development +430742,Economic Development,Economic Development +430740,Economic Development,Economic Development +430739,Economic Development,Economic Development +430738,Economic Development,Economic Development +430737,Economic Development,Economic Development +430733,Economic Development,Economic Development +429186,Economic Development,Economic Development +429178,Economic Development,Economic Development +425891,Economic Development,Economic Development +425889,Economic Development,Economic Development +425888,Economic Development,Economic Development +425887,Economic Development,Economic Development +423967,Economic Development,Economic Development +423965,Economic Development,Economic Development +423964,Economic Development,Economic Development +423961,Economic Development,Economic Development +422256,Economic Development,Economic Development +422251,Economic Development,Economic Development +422249,Economic Development,Economic Development +422247,Economic Development,Economic Development +420173,Economic Development,Economic Development +420169,Economic Development,Economic Development +420162,Economic Development,Economic Development +417997,Economic Development,Economic Development +417996,Economic Development,Economic Development +417995,Economic Development,Economic Development +417994,Economic Development,Economic Development +415802,Economic Development,Economic Development +415795,Economic Development,Economic Development +415791,Economic Development,Economic Development +413254,Economic Development,Economic Development +413251,Economic Development,Economic Development +407847,Economic Development,Economic Development +407818,Economic Development,Economic Development +407816,Economic Development,Economic Development +406009,Economic Development,Economic Development +406008,Economic Development,Economic Development +405538,Economic Development,Economic Development +398971,Economic Development,Economic Development +398968,Economic Development,Economic Development +398965,Economic Development,Economic Development +394419,Economic Development,Economic Development +394416,Economic Development,Economic Development +394414,Economic Development,Economic Development +394412,Economic Development,Economic Development +392630,Economic Development,Economic Development +392629,Economic Development,Economic Development +392626,Economic Development,Economic Development +391482,Economic Development,Economic Development +391476,Economic Development,Economic Development +388368,Economic Development,Economic Development +385321,Economic Development,Economic Development +385320,Economic Development,Economic Development +385318,Economic Development,Economic Development +385317,Economic Development,Economic Development +382596,Economic Development,Economic Development +382595,Economic Development,Economic Development +382594,Economic Development,Economic Development +382593,Economic Development,Economic Development +382590,Economic Development,Economic Development +382587,Economic Development,Economic Development +382583,Economic Development,Economic Development +535450,Economic Development,Economic Development +534456,Economic Development,Economic Development +534313,Economic Development,Economic Development +528930,Economic Development,Economic Development +528929,Economic Development,Economic Development +528928,Economic Development,Economic Development +520163,Economic Development,Economic Development +518261,Economic Development,Economic Development +518259,Economic Development,Economic Development +518255,Economic Development,Economic Development +504950,Economic Development,Economic Development +502687,Economic Development,Economic Development +502683,Economic Development,Economic Development +498900,Economic Development,Economic Development +495286,Economic Development,Economic Development +495281,Economic Development,Economic Development +492862,Economic Development,Economic Development +492856,Economic Development,Economic Development +453020,Economic Development,Economic Development +453019,Economic Development,Economic Development +453017,Economic Development,Economic Development +447743,Economic Development,Economic Development +447741,Economic Development,Economic Development +445225,Economic Development,Economic Development +443863,Economic Development,Economic Development +442912,Economic Development,Economic Development +442911,Economic Development,Economic Development +442910,Economic Development,Economic Development +442908,Economic Development,Economic Development +442907,Economic Development,Economic Development +442905,Economic Development,Economic Development +439421,Economic Development,Economic Development +439418,Economic Development,Economic Development +439413,Economic Development,Economic Development +439403,Economic Development,Economic Development +439388,Economic Development,Economic Development +439384,Economic Development,Economic Development +439379,Economic Development,Economic Development +439376,Economic Development,Economic Development +439371,Economic Development,Economic Development +439358,Economic Development,Economic Development +439347,Economic Development,Economic Development +433560,Economic Development,Economic Development +432921,Economic Development,Economic Development +432920,Economic Development,Economic Development +432919,Economic Development,Economic Development +432918,Economic Development,Economic Development +432917,Economic Development,Economic Development +544685,Economic Development,Economic Development +544404,Economic Development,Economic Development +544088,Economic Development,Economic Development +544083,Economic Development,Economic Development +541758,Economic Development,Economic Development +435979,Employment and Training,Employment and Training +433561,Employment and Training,Employment and Training +255889,Employment and Training,Employment and Training +382590,Employment and Training,Employment and Training +339366,Employment and Training,Employment and Training +339364,Employment and Training,Employment and Training +339363,Employment and Training,Employment and Training +339362,Employment and Training,Employment and Training +337268,Employment and Training,Employment and Training +333111,Employment and Training,Employment and Training +328629,Employment and Training,Employment and Training +328613,Employment and Training,Employment and Training +328612,Employment and Training,Employment and Training +328611,Employment and Training,Employment and Training +328610,Employment and Training,Employment and Training +328609,Employment and Training,Employment and Training +328589,Employment and Training,Employment and Training +320334,Employment and Training,Employment and Training +320332,Employment and Training,Employment and Training +320331,Employment and Training,Employment and Training +274929,Employment and Training,Employment and Training +268789,Employment and Training,Employment and Training +268550,Employment and Training,Employment and Training +268549,Employment and Training,Employment and Training +260393,Employment and Training,Employment and Training +260389,Employment and Training,Employment and Training +260370,Employment and Training,Employment and Training +256809,Employment and Training,Employment and Training +255909,Employment and Training,Employment and Training +439397,Employment and Training,Employment and Training +215887,Economic Development,Economic Development +263692,Government Procurement,Government Procurement +419529,Agriculture,Agriculture +415103,Agriculture,Agriculture +359266,Agriculture,Agriculture +359265,Agriculture,Agriculture +359264,Agriculture,Agriculture +359263,Agriculture,Agriculture +359262,Agriculture,Agriculture +359062,Agriculture,Agriculture +255034,Agriculture,Agriculture +255033,Agriculture,Agriculture +255032,Agriculture,Agriculture +255031,Agriculture,Agriculture +255030,Agriculture,Agriculture +255029,Agriculture,Agriculture +411567,Agriculture,Agriculture +411383,Agriculture,Agriculture +411377,Agriculture,Agriculture +411370,Agriculture,Agriculture +411368,Agriculture,Agriculture +407773,Agriculture,Agriculture +406750,Agriculture,Agriculture +404376,Agriculture,Agriculture +404375,Agriculture,Agriculture +402785,Agriculture,Agriculture +398161,Agriculture,Agriculture +395858,Agriculture,Agriculture +384882,Agriculture,Agriculture +382666,Agriculture,Agriculture +382665,Agriculture,Agriculture +381033,Agriculture,Agriculture +381031,Agriculture,Agriculture +378837,Agriculture,Agriculture +378836,Agriculture,Agriculture +376362,Agriculture,Agriculture +374447,Agriculture,Agriculture +370694,Agriculture,Agriculture +368792,Agriculture,Agriculture +362295,Agriculture,Agriculture +362294,Agriculture,Agriculture +362292,Agriculture,Agriculture +362291,Agriculture,Agriculture +362290,Agriculture,Agriculture +362289,Agriculture,Agriculture +362287,Agriculture,Agriculture +362286,Agriculture,Agriculture +362285,Agriculture,Agriculture +362284,Agriculture,Agriculture +359689,Agriculture,Agriculture +359382,Agriculture,Agriculture +359278,Agriculture,Agriculture +359277,Agriculture,Agriculture +359276,Agriculture,Agriculture +359275,Agriculture,Agriculture +359274,Agriculture,Agriculture +359273,Agriculture,Agriculture +359272,Agriculture,Agriculture +359271,Agriculture,Agriculture +359270,Agriculture,Agriculture +359269,Agriculture,Agriculture +359268,Agriculture,Agriculture +359267,Agriculture,Agriculture +545344,Agriculture,Agriculture +539435,Agriculture,Agriculture +536797,Agriculture,Agriculture +536796,Agriculture,Agriculture +533319,Agriculture,Agriculture +533318,Agriculture,Agriculture +528935,Agriculture,Agriculture +528152,Agriculture,Agriculture +524803,Agriculture,Agriculture +521367,Agriculture,Agriculture +520889,Agriculture,Agriculture +519365,Agriculture,Agriculture +519360,Agriculture,Agriculture +517433,Agriculture,Agriculture +515332,Agriculture,Agriculture +515271,Agriculture,Agriculture +515270,Agriculture,Agriculture +514890,Agriculture,Agriculture +514551,Agriculture,Agriculture +514549,Agriculture,Agriculture +509333,Agriculture,Agriculture +489289,Agriculture,Agriculture +488938,Agriculture,Agriculture +488937,Agriculture,Agriculture +487124,Agriculture,Agriculture +484198,Agriculture,Agriculture +484194,Agriculture,Agriculture +477078,Agriculture,Agriculture +466305,Agriculture,Agriculture +466304,Agriculture,Agriculture +466299,Agriculture,Agriculture +459911,Agriculture,Agriculture +456777,Agriculture,Agriculture +456776,Agriculture,Agriculture +456774,Agriculture,Agriculture +456773,Agriculture,Agriculture +451706,Agriculture,Agriculture +450104,Agriculture,Agriculture +437442,Agriculture,Agriculture +437440,Agriculture,Agriculture +436942,Agriculture,Agriculture +436941,Agriculture,Agriculture +436940,Agriculture,Agriculture +436939,Agriculture,Agriculture +434741,Agriculture,Agriculture +434740,Agriculture,Agriculture +434739,Agriculture,Agriculture +432411,Agriculture,Agriculture +432410,Agriculture,Agriculture +429055,Agriculture,Agriculture +429049,Agriculture,Agriculture +423176,Agriculture,Agriculture +423174,Agriculture,Agriculture +421354,Agriculture,Agriculture +240910,International Trade,International Trade +230320,International Trade,International Trade +209989,International Trade,International Trade +331829,International Trade,International Trade +329593,International Trade,International Trade +310491,International Trade,International Trade +310455,International Trade,International Trade +310447,International Trade,International Trade +310446,International Trade,International Trade +310443,International Trade,International Trade +310437,International Trade,International Trade +310435,International Trade,International Trade +297083,International Trade,International Trade +297079,International Trade,International Trade +287066,International Trade,International Trade +287062,International Trade,International Trade +266212,International Trade,International Trade +265170,International Trade,International Trade +261791,International Trade,International Trade +250950,International Trade,International Trade +240912,International Trade,International Trade +408241,Economic Development,Economic Development +404822,Economic Development,Economic Development +395391,Economic Development,Economic Development +382154,Economic Development,Economic Development +380602,Economic Development,Economic Development +370626,Economic Development,Economic Development +358089,Economic Development,Economic Development +358087,Economic Development,Economic Development +358085,Economic Development,Economic Development +325976,Economic Development,Economic Development +312713,Economic Development,Economic Development +230364,Economic Development,Economic Development +424345,Economic Development,Economic Development +424343,Economic Development,Economic Development +424342,Economic Development,Economic Development +424341,Economic Development,Economic Development +424340,Economic Development,Economic Development +414323,Economic Development,Economic Development +414320,Economic Development,Economic Development +414319,Economic Development,Economic Development +411140,Economic Development,Economic Development +411137,Economic Development,Economic Development +380602,Financial Institutions,Financial Institutions +376034,Financial Institutions,Financial Institutions +370631,Financial Institutions,Financial Institutions +370626,Financial Institutions,Financial Institutions +358085,Financial Institutions,Financial Institutions +336177,Financial Institutions,Financial Institutions +325976,Financial Institutions,Financial Institutions +325972,Financial Institutions,Financial Institutions +325971,Financial Institutions,Financial Institutions +318927,Financial Institutions,Financial Institutions +312713,Financial Institutions,Financial Institutions +295850,Financial Institutions,Financial Institutions +275891,Financial Institutions,Financial Institutions +230364,Financial Institutions,Financial Institutions +424345,Financial Institutions,Financial Institutions +424343,Financial Institutions,Financial Institutions +424342,Financial Institutions,Financial Institutions +424341,Financial Institutions,Financial Institutions +424340,Financial Institutions,Financial Institutions +414323,Financial Institutions,Financial Institutions +414320,Financial Institutions,Financial Institutions +411140,Financial Institutions,Financial Institutions +411137,Financial Institutions,Financial Institutions +409255,Financial Institutions,Financial Institutions +408241,Financial Institutions,Financial Institutions +404822,Financial Institutions,Financial Institutions +395391,Financial Institutions,Financial Institutions +409255,International Trade,International Trade +395391,International Trade,International Trade +275891,International Trade,International Trade +382154,International Trade,International Trade +370631,International Trade,International Trade +370626,International Trade,International Trade +414323,Privacy and Access to Information,Privacy and Access to Information +404822,Privacy and Access to Information,Privacy and Access to Information +358087,Privacy and Access to Information,Privacy and Access to Information +411140,Small Business,Small Business +411137,Small Business,Small Business +404822,Small Business,Small Business +395391,Small Business,Small Business +382154,Small Business,Small Business +376034,Small Business,Small Business +358089,Small Business,Small Business +336177,Small Business,Small Business +325976,Small Business,Small Business +318927,Small Business,Small Business +312713,Small Business,Small Business +310589,Small Business,Small Business +295850,Small Business,Small Business +414320,Small Business,Small Business +325971,Tourism,Tourism +312713,Tourism,Tourism +411140,Tourism,Tourism +411137,Tourism,Tourism +395391,Tourism,Tourism +382154,Tourism,Tourism +376034,Tourism,Tourism +358089,Tourism,Tourism +325978,Tourism,Tourism +325976,Tourism,Tourism +325976,Transportation,Transportation +483132,Internal Trade,Internal Trade +483124,Internal Trade,Internal Trade +239633,Agriculture,Agriculture +260154,Agriculture,Agriculture +239646,Agriculture,Agriculture +239645,Agriculture,Agriculture +239644,Agriculture,Agriculture +239641,Agriculture,Agriculture +239640,Agriculture,Agriculture +239639,Agriculture,Agriculture +239638,Agriculture,Agriculture +239636,Agriculture,Agriculture +390408,International Development,International Development +513339,International Development,International Development +378779,International Development,International Development +375045,International Development,International Development +367289,International Development,International Development +367282,International Development,International Development +362266,International Development,International Development +362265,International Development,International Development +327850,International Development,International Development +327842,International Development,International Development +327841,International Development,International Development +322224,International Development,International Development +319673,International Development,International Development +281190,International Development,International Development +281189,International Development,International Development +273388,International Development,International Development +273386,International Development,International Development +210547,International Development,International Development +471317,International Development,International Development +471316,International Development,International Development +433783,International Development,International Development +432646,International Development,International Development +432641,International Development,International Development +431012,International Development,International Development +431010,International Development,International Development +429509,International Development,International Development +429507,International Development,International Development +422274,International Development,International Development +410095,International Development,International Development +404180,International Development,International Development +404179,International Development,International Development +404178,International Development,International Development +401047,International Development,International Development +401045,International Development,International Development +401043,International Development,International Development +401037,International Development,International Development +210648,Agriculture,Agriculture +372779,Environment,Environment +422682,Agriculture,Agriculture +422681,Agriculture,Agriculture +245584,Agriculture,Agriculture +241458,Agriculture,Agriculture +233791,Agriculture,Agriculture +223539,Agriculture,Agriculture +360162,Agriculture,Agriculture +316930,Agriculture,Agriculture +272152,Agriculture,Agriculture +447900,Agriculture,Agriculture +447899,Agriculture,Agriculture +447897,Agriculture,Agriculture +447895,Agriculture,Agriculture +447894,Agriculture,Agriculture +439806,Agriculture,Agriculture +439803,Agriculture,Agriculture +439802,Agriculture,Agriculture +431957,Agriculture,Agriculture +431956,Agriculture,Agriculture +431954,Agriculture,Agriculture +431952,Agriculture,Agriculture +422686,Agriculture,Agriculture +422685,Agriculture,Agriculture +439803,Environment,Environment +439802,Environment,Environment +447895,Environment,Environment +431956,International Trade,International Trade +422684,International Trade,International Trade +447900,International Trade,International Trade +439806,International Trade,International Trade +439802,Labour,Labour +431957,Labour,Labour +439806,Labour,Labour +431952,Transportation,Transportation +439803,Transportation,Transportation +439802,Transportation,Transportation +431957,Transportation,Transportation +431956,Transportation,Transportation +245586,Agriculture,Agriculture +241459,Agriculture,Agriculture +233792,Agriculture,Agriculture +223542,Agriculture,Agriculture +382159,Research and Development,Research and Development +374910,Research and Development,Research and Development +421594,Research and Development,Research and Development +421592,Research and Development,Research and Development +230055,Taxation and Finance,Taxation and Finance +222947,Taxation and Finance,Taxation and Finance +478279,Consumer Issues,Consumer Issues +211247,International Trade,International Trade +211248,Labour,Labour +211247,Labour,Labour +240091,Labour,Labour +240090,Labour,Labour +240089,Labour,Labour +240079,Labour,Labour +240078,Labour,Labour +240075,Labour,Labour +211250,Labour,Labour +211252,Taxation and Finance,Taxation and Finance +343776,Defence,Defence +215571,Health,Health +215570,Health,Health +215571,Industry,Industry +215570,Industry,Industry +211448,Municipalities,Municipalities +467875,Regional Development,Regional Development +467752,Regional Development,Regional Development +244625,Regional Development,Regional Development +211448,Regional Development,Regional Development +380905,Regional Development,Regional Development +321129,International Trade,International Trade +240254,Labour,Labour +240250,Labour,Labour +321211,Labour,Labour +321153,Labour,Labour +321152,Labour,Labour +321151,Labour,Labour +321149,Labour,Labour +321129,Labour,Labour +296153,Labour,Labour +296152,Labour,Labour +296151,Labour,Labour +240300,Labour,Labour +240299,Labour,Labour +240297,Labour,Labour +240295,Labour,Labour +240289,Labour,Labour +240275,Labour,Labour +240260,Labour,Labour +321149,Taxation and Finance,Taxation and Finance +441760,Industry,Industry +441652,Industry,Industry +293889,Industry,Industry +265018,Industry,Industry +265017,Industry,Industry +265016,Industry,Industry +265014,Industry,Industry +265013,Industry,Industry +234272,Industry,Industry +233050,Industry,Industry +232875,Industry,Industry +232796,Industry,Industry +232794,Industry,Industry +232793,Industry,Industry +358383,Industry,Industry +336676,Industry,Industry +336675,Industry,Industry +441822,Industry,Industry +441820,Industry,Industry +441818,Industry,Industry +441762,Industry,Industry +460808,Budget,Budget +459039,Budget,Budget +385968,Budget,Budget +385967,Budget,Budget +385966,Budget,Budget +385965,Budget,Budget +354722,Budget,Budget +354721,Budget,Budget +354720,Budget,Budget +354719,Budget,Budget +428672,Budget,Budget +428208,Budget,Budget +428207,Budget,Budget +428206,Budget,Budget +428204,Budget,Budget +428203,Budget,Budget +427792,Budget,Budget +427791,Budget,Budget +427787,Budget,Budget +427785,Budget,Budget +427784,Budget,Budget +427782,Budget,Budget +427772,Budget,Budget +427753,Budget,Budget +427752,Budget,Budget +427751,Budget,Budget +427750,Budget,Budget +427748,Budget,Budget +427740,Budget,Budget +427734,Budget,Budget +427722,Budget,Budget +427721,Budget,Budget +427457,Budget,Budget +427456,Budget,Budget +427455,Budget,Budget +427454,Budget,Budget +427453,Budget,Budget +427452,Budget,Budget +427451,Budget,Budget +427450,Budget,Budget +427419,Budget,Budget +427418,Budget,Budget +427287,Budget,Budget +427286,Budget,Budget +427285,Budget,Budget +427284,Budget,Budget +427283,Budget,Budget +427282,Budget,Budget +427281,Budget,Budget +427280,Budget,Budget +427279,Budget,Budget +427278,Budget,Budget +427277,Budget,Budget +427276,Budget,Budget +427275,Budget,Budget +427274,Budget,Budget +427273,Budget,Budget +427272,Budget,Budget +427271,Budget,Budget +427245,Budget,Budget +427244,Budget,Budget +426210,Budget,Budget +426207,Budget,Budget +426206,Budget,Budget +426205,Budget,Budget +426204,Budget,Budget +426202,Budget,Budget +426200,Budget,Budget +426198,Budget,Budget +426196,Budget,Budget +425646,Budget,Budget +425645,Budget,Budget +425644,Budget,Budget +425643,Budget,Budget +425642,Budget,Budget +425641,Budget,Budget +425640,Budget,Budget +425639,Budget,Budget +425638,Budget,Budget +425637,Budget,Budget +425636,Budget,Budget +425567,Budget,Budget +425528,Budget,Budget +425527,Budget,Budget +425526,Budget,Budget +425525,Budget,Budget +425524,Budget,Budget +425523,Budget,Budget +425522,Budget,Budget +425521,Budget,Budget +425520,Budget,Budget +425519,Budget,Budget +425518,Budget,Budget +425517,Budget,Budget +425516,Budget,Budget +425515,Budget,Budget +425514,Budget,Budget +425512,Budget,Budget +422869,Budget,Budget +415186,Budget,Budget +406393,Budget,Budget +531818,Budget,Budget +509629,Budget,Budget +508738,Budget,Budget +508733,Budget,Budget +508729,Budget,Budget +508406,Budget,Budget +508405,Budget,Budget +508404,Budget,Budget +508403,Budget,Budget +508402,Budget,Budget +508401,Budget,Budget +508400,Budget,Budget +508399,Budget,Budget +508398,Budget,Budget +508396,Budget,Budget +508395,Budget,Budget +508393,Budget,Budget +508392,Budget,Budget +508391,Budget,Budget +508390,Budget,Budget +508389,Budget,Budget +508388,Budget,Budget +508387,Budget,Budget +508386,Budget,Budget +508385,Budget,Budget +508383,Budget,Budget +508382,Budget,Budget +508381,Budget,Budget +508379,Budget,Budget +508378,Budget,Budget +508377,Budget,Budget +508376,Budget,Budget +508375,Budget,Budget +508374,Budget,Budget +508373,Budget,Budget +508372,Budget,Budget +508371,Budget,Budget +508369,Budget,Budget +508367,Budget,Budget +508365,Budget,Budget +508364,Budget,Budget +508230,Budget,Budget +508226,Budget,Budget +508225,Budget,Budget +508222,Budget,Budget +508209,Budget,Budget +508205,Budget,Budget +508203,Budget,Budget +508200,Budget,Budget +508195,Budget,Budget +508191,Budget,Budget +508186,Budget,Budget +508183,Budget,Budget +508181,Budget,Budget +508179,Budget,Budget +508177,Budget,Budget +506001,Budget,Budget +506000,Budget,Budget +505999,Budget,Budget +501730,Budget,Budget +499979,Budget,Budget +499978,Budget,Budget +499977,Budget,Budget +497916,Budget,Budget +497915,Budget,Budget +497854,Budget,Budget +497760,Budget,Budget +495152,Budget,Budget +495150,Budget,Budget +492031,Budget,Budget +492030,Budget,Budget +491289,Budget,Budget +491285,Budget,Budget +491212,Budget,Budget +491210,Budget,Budget +491208,Budget,Budget +491203,Budget,Budget +491196,Budget,Budget +491193,Budget,Budget +491189,Budget,Budget +491185,Budget,Budget +491180,Budget,Budget +491173,Budget,Budget +491158,Budget,Budget +491157,Budget,Budget +491152,Budget,Budget +491149,Budget,Budget +488644,Budget,Budget +486113,Budget,Budget +486112,Budget,Budget +485705,Budget,Budget +483759,Budget,Budget +483758,Budget,Budget +483755,Budget,Budget +483754,Budget,Budget +483752,Budget,Budget +483751,Budget,Budget +483750,Budget,Budget +483749,Budget,Budget +483747,Budget,Budget +483745,Budget,Budget +479298,Budget,Budget +479182,Budget,Budget +478691,Budget,Budget +243152,Economic Development,Economic Development +243151,Economic Development,Economic Development +211843,Economic Development,Economic Development +380316,Economic Development,Economic Development +245681,Economic Development,Economic Development +245680,Economic Development,Economic Development +245679,Economic Development,Economic Development +245677,Economic Development,Economic Development +245676,Economic Development,Economic Development +245675,Economic Development,Economic Development +245674,Economic Development,Economic Development +376292,Energy,Energy +376289,Energy,Energy +245681,Energy,Energy +245680,Energy,Energy +245679,Energy,Energy +245677,Energy,Energy +245676,Energy,Energy +245675,Energy,Energy +245674,Energy,Energy +243153,Energy,Energy +243152,Energy,Energy +243151,Energy,Energy +211843,Energy,Energy +380317,Energy,Energy +380316,Energy,Energy +376295,Energy,Energy +245681,Environment,Environment +245680,Environment,Environment +245679,Environment,Environment +245677,Environment,Environment +245676,Environment,Environment +245675,Environment,Environment +245674,Environment,Environment +243153,Environment,Environment +243152,Environment,Environment +243151,Environment,Environment +211843,Environment,Environment +380316,Environment,Environment +376295,Environment,Environment +376292,Environment,Environment +243152,Industry,Industry +243151,Industry,Industry +211843,Industry,Industry +245681,Industry,Industry +245680,Industry,Industry +245679,Industry,Industry +245677,Industry,Industry +245676,Industry,Industry +245675,Industry,Industry +245674,Industry,Industry +328369,Taxation and Finance,Taxation and Finance +317289,Taxation and Finance,Taxation and Finance +287629,Taxation and Finance,Taxation and Finance +287609,Taxation and Finance,Taxation and Finance +392138,Taxation and Finance,Taxation and Finance +385971,Taxation and Finance,Taxation and Finance +377265,Taxation and Finance,Taxation and Finance +461497,Agriculture,Agriculture +456260,Agriculture,Agriculture +443038,Agriculture,Agriculture +443037,Agriculture,Agriculture +440670,Agriculture,Agriculture +440669,Agriculture,Agriculture +259711,Economic Development,Economic Development +206287,Environment,Environment +206347,Economic Development,Economic Development +211107,Mining,Mining +288209,Labour,Labour +340389,Budget,Budget +208729,Consumer Issues,Consumer Issues +208728,Environment,Environment +208729,International Trade,International Trade +206450,Fisheries,Fisheries +206450,International Trade,International Trade +206450,Environment,Environment +340212,Budget,Budget +270010,Environment,Environment +274431,Health,Health +270011,Industry,Industry +279946,Environment,Environment +330256,Health,Health +206529,Health,Health +479834,Infrastructure,Infrastructure +471453,Intellectual Property,Intellectual Property +406503,Budget,Budget +212535,International Trade,International Trade +380968,Pensions,Pensions +380964,Taxation and Finance,Taxation and Finance +405990,Environment,Environment +251033,Economic Development,Economic Development +351720,Industry,Industry +226880,Intellectual Property,Intellectual Property +369571,International Trade,International Trade +317369,International Trade,International Trade +317373,International Trade,International Trade +206789,International Trade,International Trade +394829,International Trade,International Trade +206887,Agriculture,Agriculture +206888,Fisheries,Fisheries +206889,Fisheries,Fisheries +223526,Intellectual Property,Intellectual Property +207067,Energy,Energy +505024,Internal Trade,Internal Trade +505024,Research and Development,Research and Development +207098,Economic Development,Economic Development +207158,Agriculture,Agriculture +207158,International Trade,International Trade +500516,Economic Development,Economic Development +456741,Economic Development,Economic Development +526726,Housing,Housing +223335,Health,Health +207280,Transportation,Transportation +471052,International Development,International Development +207285,Taxation and Finance,Taxation and Finance +207287,Taxation and Finance,Taxation and Finance +358246,International Development,International Development +277571,International Relations,International Relations +325003,International Trade,International Trade +207353,Industry,Industry +390122,Regional Development,Regional Development +439618,Infrastructure,Infrastructure +207367,Privacy and Access to Information,Privacy and Access to Information +207378,Energy,Energy +207378,Health,Health +207381,Research and Development,Research and Development +207395,Research and Development,Research and Development +515383,Industry,Industry +337769,Budget,Budget +207439,Budget,Budget +208828,Health,Health +207473,Research and Development,Research and Development +492778,Research and Development,Research and Development +478604,Research and Development,Research and Development +412822,Research and Development,Research and Development +207582,International Development,International Development +207582,Research and Development,Research and Development +207595,International Development,International Development +207595,Research and Development,Research and Development +327693,Taxation and Finance,Taxation and Finance +269030,Research and Development,Research and Development +207629,Defence,Defence +223193,Defence,Defence +207647,Budget,Budget +207648,Budget,Budget +207649,Budget,Budget +451426,Economic Development,Economic Development +259512,Energy,Energy +231070,Transportation,Transportation +244976,Energy,Energy +244977,Industry,Industry +211069,Health,Health +413994,Research and Development,Research and Development +208207,Research and Development,Research and Development +209947,Industry,Industry +361624,Intellectual Property,Intellectual Property +209947,International Trade,International Trade +208387,Economic Development,Economic Development +208427,Economic Development,Economic Development +208567,Research and Development,Research and Development +314389,Security,Security +338865,Consumer Issues,Consumer Issues +254497,Economic Development,Economic Development +265274,Employment and Training,Employment and Training +265269,Financial Institutions,Financial Institutions +265249,Housing,Housing +254497,Industry,Industry +254497,Municipalities,Municipalities +254497,Research and Development,Research and Development +327876,Small Business,Small Business +227515,Taxation and Finance,Taxation and Finance +208829,Budget,Budget +208888,Budget,Budget +271372,International Relations,International Relations +240912,Agriculture,Agriculture +209017,Budget,Budget +479410,Education,Education +443152,Research and Development,Research and Development +209147,Education,Education +209147,Research and Development,Research and Development +225247,Environment,Environment +455782,Taxation and Finance,Taxation and Finance +425358,Tourism,Tourism +283530,Mining,Mining +221168,Government Procurement,Government Procurement +209291,Budget,Budget +241549,Energy,Energy +241549,Regional Development,Regional Development +241549,Transportation,Transportation +241549,Mining,Mining +238990,Industry,Industry +256091,Tourism,Tourism +238991,Immigration,Immigration +238991,Transportation,Transportation +242409,Government Procurement,Government Procurement +485463,Transportation,Transportation +321482,Regional Development,Regional Development +321482,Infrastructure,Infrastructure +321482,Transportation,Transportation +462902,Employment and Training,Employment and Training +356880,Environment,Environment +297469,Tourism,Tourism +465755,Taxation and Finance,Taxation and Finance +225027,Industry,Industry +465755,Consumer Issues,Consumer Issues +356880,Regional Development,Regional Development +225027,Transportation,Transportation +465755,Small Business,Small Business +306372,Infrastructure,Infrastructure +346458,Economic Development,Economic Development +269931,Internal Trade,Internal Trade +335610,Immigration,Immigration +216073,Infrastructure,Infrastructure +216073,Justice and Law Enforcement,Justice and Law Enforcement +315453,Government Procurement,Government Procurement +541734,Economic Development,Economic Development +439350,Employment and Training,Employment and Training +237849,Government Procurement,Government Procurement +216407,Economic Development,Economic Development +232129,Government Procurement,Government Procurement +419556,Agriculture,Agriculture +240911,International Trade,International Trade +210068,International Trade,International Trade +210072,International Trade,International Trade +409255,Economic Development,Economic Development +382154,Financial Institutions,Financial Institutions +325976,International Trade,International Trade +358085,Privacy and Access to Information,Privacy and Access to Information +414319,Small Business,Small Business +325972,Tourism,Tourism +395391,Transportation,Transportation +210488,Internal Trade,Internal Trade +239635,Agriculture,Agriculture +397121,International Development,International Development +249629,Government Procurement,Government Procurement +217489,Transportation,Transportation +229102,Agriculture,Agriculture +210667,Environment,Environment +210739,Transportation,Transportation +210731,Justice and Law Enforcement,Justice and Law Enforcement +422684,Agriculture,Agriculture +439806,Environment,Environment +431957,Fisheries,Fisheries +431957,Internal Trade,Internal Trade +439802,International Trade,International Trade +439803,Labour,Labour +431954,Transportation,Transportation +210827,International Trade,International Trade +210833,Environment,Environment +286893,Agriculture,Agriculture +210891,International Trade,International Trade +391015,Research and Development,Research and Development +262169,Taxation and Finance,Taxation and Finance +478282,Consumer Issues,Consumer Issues +211068,Climate,Climate +211088,Industry,Industry +211248,International Trade,International Trade +211249,Labour,Labour +211253,Taxation and Finance,Taxation and Finance +348790,Defence,Defence +348790,Government Procurement,Government Procurement +215572,Health,Health +215572,Industry,Industry +211308,International Trade,International Trade +224767,Security,Security +353755,Municipalities,Municipalities +467877,Regional Development,Regional Development +240301,International Trade,International Trade +240257,Labour,Labour +321153,Taxation and Finance,Taxation and Finance +236931,Economic Development,Economic Development +236931,Infrastructure,Infrastructure +236931,Regional Development,Regional Development +236931,Tourism,Tourism +236931,Transportation,Transportation +211507,Taxation and Finance,Taxation and Finance +211509,Taxation and Finance,Taxation and Finance +211510,Research and Development,Research and Development +211529,Labour,Labour +211529,International Trade,International Trade +441761,Industry,Industry +211710,Labour,Labour +211710,International Trade,International Trade +211711,Labour,Labour +211714,International Trade,International Trade +211714,Labour,Labour +211715,Labour,Labour +211716,Labour,Labour +470825,Budget,Budget +211827,Budget,Budget +211828,Defence,Defence +211833,International Development,International Development +211836,International Development,International Development +243153,Economic Development,Economic Development +376294,Energy,Energy +376289,Environment,Environment +243153,Industry,Industry +367622,Taxation and Finance,Taxation and Finance +398427,Agriculture,Agriculture +217509,Environment,Environment +217509,Energy,Energy +278152,Industry,Industry +379732,Infrastructure,Infrastructure +212089,Security,Security +212089,Energy,Energy +217087,Justice and Law Enforcement,Justice and Law Enforcement +212095,Energy,Energy +212095,Justice and Law Enforcement,Justice and Law Enforcement +217087,Security,Security +308530,Justice and Law Enforcement,Justice and Law Enforcement +212169,Official Languages,Official Languages +402227,Budget,Budget +225347,Climate,Climate +440424,Budget,Budget +212299,Climate,Climate +453818,Economic Development,Economic Development +534658,Internal Trade,Internal Trade +361003,International Development,International Development +453819,International Relations,International Relations +385440,Pensions,Pensions +212350,Economic Development,Economic Development +212350,International Development,International Development +212366,Infrastructure,Infrastructure +212471,Privacy and Access to Information,Privacy and Access to Information +212478,Privacy and Access to Information,Privacy and Access to Information +223425,International Relations,International Relations +382163,International Development,International Development +504741,Health,Health +391485,Environment,Environment +399082,Regional Development,Regional Development +405801,Research and Development,Research and Development +344055,Research and Development,Research and Development +212627,International Trade,International Trade +249817,Environment,Environment +415631,Economic Development,Economic Development +212768,Budget,Budget +212769,Budget,Budget +368831,Industry,Industry +236569,Pensions,Pensions +480596,Economic Development,Economic Development +480612,Labour,Labour +231071,Transportation,Transportation +374707,Budget,Budget +542748,Research and Development,Research and Development +218037,Agriculture,Agriculture +298809,Energy,Energy +298809,Environment,Environment +298629,Industry,Industry +213148,Budget,Budget +215517,Government Procurement,Government Procurement +215516,Small Business,Small Business +384930,Government Procurement,Government Procurement +213227,Immigration,Immigration +473282,Housing,Housing +348266,Immigration,Immigration +213309,Immigration,Immigration +440667,Agriculture,Agriculture +440665,Agriculture,Agriculture +440661,Agriculture,Agriculture +217507,Environment,Environment +217507,Energy,Energy +278151,Industry,Industry +212554,Industry,Industry +290705,Industry,Industry +290701,Industry,Industry +278155,Industry,Industry +278154,Industry,Industry +278153,Industry,Industry +264511,Energy,Energy +212089,Justice and Law Enforcement,Justice and Law Enforcement +273470,Energy,Energy +235549,Energy,Energy +217087,Energy,Energy +212095,Security,Security +274549,Justice and Law Enforcement,Justice and Law Enforcement +267949,Justice and Law Enforcement,Justice and Law Enforcement +308535,Justice and Law Enforcement,Justice and Law Enforcement +308534,Justice and Law Enforcement,Justice and Law Enforcement +308533,Justice and Law Enforcement,Justice and Law Enforcement +396700,Budget,Budget +542085,Budget,Budget +230110,Budget,Budget +212247,Budget,Budget +372836,Budget,Budget +372835,Budget,Budget +503089,Budget,Budget +435750,Budget,Budget +377827,Climate,Climate +356245,Climate,Climate +225367,Climate,Climate +440423,Budget,Budget +440422,Budget,Budget +340717,Budget,Budget +339921,Budget,Budget +338328,Budget,Budget +337023,Budget,Budget +336731,Budget,Budget +335275,Budget,Budget +335273,Budget,Budget +335061,Budget,Budget +333170,Budget,Budget +309370,Budget,Budget +309369,Budget,Budget +309349,Budget,Budget +301070,Budget,Budget +299749,Budget,Budget +298309,Budget,Budget +297989,Budget,Budget +297789,Budget,Budget +294769,Budget,Budget +293049,Budget,Budget +291689,Budget,Budget +263619,Budget,Budget +254174,Budget,Budget +212280,Budget,Budget +399725,Budget,Budget +397373,Budget,Budget +394951,Budget,Budget +394250,Budget,Budget +390354,Budget,Budget +389810,Budget,Budget +388958,Budget,Budget +388956,Budget,Budget +388955,Budget,Budget +388954,Budget,Budget +388820,Budget,Budget +388652,Budget,Budget +388650,Budget,Budget +388648,Budget,Budget +388647,Budget,Budget +386565,Budget,Budget +386563,Budget,Budget +386562,Budget,Budget +386560,Budget,Budget +386559,Budget,Budget +386558,Budget,Budget +386156,Budget,Budget +386155,Budget,Budget +386153,Budget,Budget +386152,Budget,Budget +386148,Budget,Budget +386146,Budget,Budget +386145,Budget,Budget +386144,Budget,Budget +386143,Budget,Budget +384271,Budget,Budget +384269,Budget,Budget +384267,Budget,Budget +384266,Budget,Budget +384265,Budget,Budget +382978,Budget,Budget +382744,Budget,Budget +375080,Budget,Budget +375064,Budget,Budget +370771,Budget,Budget +370195,Budget,Budget +370028,Budget,Budget +370027,Budget,Budget +369990,Budget,Budget +369646,Budget,Budget +368243,Budget,Budget +368242,Budget,Budget +367606,Budget,Budget +367104,Budget,Budget +366337,Budget,Budget +366202,Budget,Budget +365042,Budget,Budget +348211,Budget,Budget +347729,Budget,Budget +344773,Budget,Budget +344477,Budget,Budget +344337,Budget,Budget +471848,Budget,Budget +471843,Budget,Budget +440938,Budget,Budget +440429,Budget,Budget +440428,Budget,Budget +440427,Budget,Budget +440426,Budget,Budget +440425,Budget,Budget +377825,Climate,Climate +366526,Climate,Climate +448767,Economic Development,Economic Development +421185,Economic Development,Economic Development +224667,Economic Development,Economic Development +364584,Economic Development,Economic Development +403526,Economic Development,Economic Development +391519,Economic Development,Economic Development +385452,Economic Development,Economic Development +385440,Economic Development,Economic Development +378641,Economic Development,Economic Development +378623,Economic Development,Economic Development +376146,Economic Development,Economic Development +376137,Economic Development,Economic Development +376136,Economic Development,Economic Development +374388,Economic Development,Economic Development +543595,Economic Development,Economic Development +541492,Economic Development,Economic Development +539405,Economic Development,Economic Development +539148,Economic Development,Economic Development +537845,Economic Development,Economic Development +537839,Economic Development,Economic Development +534653,Economic Development,Economic Development +534651,Economic Development,Economic Development +534650,Economic Development,Economic Development +534642,Economic Development,Economic Development +534640,Economic Development,Economic Development +531543,Economic Development,Economic Development +531535,Economic Development,Economic Development +531533,Economic Development,Economic Development +531528,Economic Development,Economic Development +529091,Economic Development,Economic Development +529062,Economic Development,Economic Development +529059,Economic Development,Economic Development +529055,Economic Development,Economic Development +526330,Economic Development,Economic Development +525634,Economic Development,Economic Development +522534,Economic Development,Economic Development +522532,Economic Development,Economic Development +519693,Economic Development,Economic Development +515505,Economic Development,Economic Development +508224,Economic Development,Economic Development +505288,Economic Development,Economic Development +505286,Economic Development,Economic Development +505283,Economic Development,Economic Development +505242,Economic Development,Economic Development +505237,Economic Development,Economic Development +501915,Economic Development,Economic Development +501909,Economic Development,Economic Development +501906,Economic Development,Economic Development +498479,Economic Development,Economic Development +498470,Economic Development,Economic Development +498467,Economic Development,Economic Development +498452,Economic Development,Economic Development +498429,Economic Development,Economic Development +498428,Economic Development,Economic Development +498426,Economic Development,Economic Development +498400,Economic Development,Economic Development +495459,Economic Development,Economic Development +495449,Economic Development,Economic Development +495447,Economic Development,Economic Development +493177,Economic Development,Economic Development +493170,Economic Development,Economic Development +493169,Economic Development,Economic Development +493168,Economic Development,Economic Development +493159,Economic Development,Economic Development +493158,Economic Development,Economic Development +493157,Economic Development,Economic Development +493150,Economic Development,Economic Development +490635,Economic Development,Economic Development +490631,Economic Development,Economic Development +490492,Economic Development,Economic Development +490471,Economic Development,Economic Development +490460,Economic Development,Economic Development +490458,Economic Development,Economic Development +490455,Economic Development,Economic Development +490451,Economic Development,Economic Development +490439,Economic Development,Economic Development +490436,Economic Development,Economic Development +490431,Economic Development,Economic Development +490428,Economic Development,Economic Development +490427,Economic Development,Economic Development +490422,Economic Development,Economic Development +490414,Economic Development,Economic Development +487967,Economic Development,Economic Development +487578,Economic Development,Economic Development +487577,Economic Development,Economic Development +487575,Economic Development,Economic Development +487574,Economic Development,Economic Development +487573,Economic Development,Economic Development +487572,Economic Development,Economic Development +487570,Economic Development,Economic Development +487564,Economic Development,Economic Development +487562,Economic Development,Economic Development +487559,Economic Development,Economic Development +487557,Economic Development,Economic Development +487555,Economic Development,Economic Development +487553,Economic Development,Economic Development +487550,Economic Development,Economic Development +487547,Economic Development,Economic Development +487498,Economic Development,Economic Development +487493,Economic Development,Economic Development +487487,Economic Development,Economic Development +487464,Economic Development,Economic Development +487451,Economic Development,Economic Development +485303,Economic Development,Economic Development +485301,Economic Development,Economic Development +485299,Economic Development,Economic Development +485295,Economic Development,Economic Development +485293,Economic Development,Economic Development +485283,Economic Development,Economic Development +482182,Economic Development,Economic Development +480058,Economic Development,Economic Development +480057,Economic Development,Economic Development +480051,Economic Development,Economic Development +476470,Economic Development,Economic Development +476455,Economic Development,Economic Development +476034,Economic Development,Economic Development +467833,Economic Development,Economic Development +464102,Economic Development,Economic Development +463036,Economic Development,Economic Development +462336,Economic Development,Economic Development +529088,Internal Trade,Internal Trade +525656,Internal Trade,Internal Trade +253690,Internal Trade,Internal Trade +421185,Internal Trade,Internal Trade +414835,Internal Trade,Internal Trade +392325,Internal Trade,Internal Trade +387262,Internal Trade,Internal Trade +387257,Internal Trade,Internal Trade +376136,Internal Trade,Internal Trade +354406,Internal Trade,Internal Trade +349558,Internal Trade,Internal Trade +344526,Internal Trade,Internal Trade +324689,Internal Trade,Internal Trade +323959,Internal Trade,Internal Trade +314133,Internal Trade,Internal Trade +297569,Internal Trade,Internal Trade +515508,Internal Trade,Internal Trade +515505,Internal Trade,Internal Trade +515501,Internal Trade,Internal Trade +510593,Internal Trade,Internal Trade +505245,Internal Trade,Internal Trade +480044,Internal Trade,Internal Trade +467820,Internal Trade,Internal Trade +467208,Internal Trade,Internal Trade +467206,Internal Trade,Internal Trade +462335,Internal Trade,Internal Trade +462249,Internal Trade,Internal Trade +453818,Internal Trade,Internal Trade +448772,Internal Trade,Internal Trade +432871,Internal Trade,Internal Trade +543593,Internal Trade,Internal Trade +539150,Internal Trade,Internal Trade +537834,Internal Trade,Internal Trade +534660,Internal Trade,Internal Trade +453818,International Relations,International Relations +434742,International Relations,International Relations +354406,International Relations,International Relations +311973,International Relations,International Relations +246329,International Relations,International Relations +213548,International Relations,International Relations +431609,International Relations,International Relations +406483,International Relations,International Relations +406482,International Relations,International Relations +405239,International Relations,International Relations +403524,International Relations,International Relations +403522,International Relations,International Relations +395118,International Relations,International Relations +395116,International Relations,International Relations +393622,International Relations,International Relations +393620,International Relations,International Relations +393606,International Relations,International Relations +393602,International Relations,International Relations +393601,International Relations,International Relations +393599,International Relations,International Relations +393436,International Relations,International Relations +393434,International Relations,International Relations +389205,International Relations,International Relations +389200,International Relations,International Relations +389193,International Relations,International Relations +382251,International Relations,International Relations +367813,International Relations,International Relations +366083,International Relations,International Relations +361884,International Relations,International Relations +361003,International Relations,International Relations +534671,International Relations,International Relations +534667,International Relations,International Relations +531540,International Relations,International Relations +531537,International Relations,International Relations +529094,International Relations,International Relations +529062,International Relations,International Relations +525642,International Relations,International Relations +517757,International Relations,International Relations +517756,International Relations,International Relations +513589,International Relations,International Relations +512798,International Relations,International Relations +512791,International Relations,International Relations +501898,International Relations,International Relations +501841,International Relations,International Relations +493183,International Relations,International Relations +490437,International Relations,International Relations +485258,International Relations,International Relations +482174,International Relations,International Relations +463031,International Relations,International Relations +462263,International Relations,International Relations +453825,International Relations,International Relations +381597,Pensions,Pensions +381591,Pensions,Pensions +359207,Pensions,Pensions +212554,International Relations,International Relations +380869,International Development,International Development +378975,International Development,International Development +356656,International Development,International Development +333294,International Development,International Development +333292,International Development,International Development +326437,International Development,International Development +324472,International Development,International Development +324466,International Development,International Development +322714,International Development,International Development +287229,International Development,International Development +287210,International Development,International Development +287209,International Development,International Development +280190,International Development,International Development +275256,International Development,International Development +275254,International Development,International Development +226740,International Development,International Development +218447,International Development,International Development +218428,International Development,International Development +218410,International Development,International Development +461817,International Development,International Development +454707,International Development,International Development +442164,International Development,International Development +442162,International Development,International Development +412389,International Development,International Development +412388,International Development,International Development +412295,International Development,International Development +412222,International Development,International Development +412218,International Development,International Development +408088,International Development,International Development +504142,Health,Health +503404,Health,Health +485423,Health,Health +485422,Health,Health +475390,Health,Health +458322,Health,Health +453048,Health,Health +449530,Health,Health +437882,Health,Health +432146,Health,Health +431502,Health,Health +420450,Health,Health +533263,Health,Health +514869,Health,Health +514868,Health,Health +514867,Health,Health +514866,Health,Health +514379,Health,Health +511769,Health,Health +511582,Health,Health +511581,Health,Health +509214,Health,Health +509213,Health,Health +506781,Health,Health +506261,Health,Health +504747,Health,Health +391469,Environment,Environment +515095,Environment,Environment +280229,Environment,Environment +277412,Environment,Environment +277411,Environment,Environment +277410,Environment,Environment +277409,Environment,Environment +277408,Environment,Environment +277407,Environment,Environment +273593,Environment,Environment +465707,Environment,Environment +459666,Environment,Environment +458037,Environment,Environment +457737,Environment,Environment +456573,Environment,Environment +456572,Environment,Environment +453865,Environment,Environment +453864,Environment,Environment +452447,Environment,Environment +452446,Environment,Environment +450908,Environment,Environment +450907,Environment,Environment +450742,Environment,Environment +450303,Environment,Environment +448695,Environment,Environment +448694,Environment,Environment +447348,Environment,Environment +445784,Environment,Environment +443923,Environment,Environment +440535,Environment,Environment +440534,Environment,Environment +440532,Environment,Environment +440531,Environment,Environment +440530,Environment,Environment +440529,Environment,Environment +439129,Environment,Environment +439124,Environment,Environment +439120,Environment,Environment +439104,Environment,Environment +439101,Environment,Environment +434288,Environment,Environment +434249,Environment,Environment +434247,Environment,Environment +434246,Environment,Environment +433733,Environment,Environment +432953,Environment,Environment +432937,Environment,Environment +432936,Environment,Environment +406800,Environment,Environment +403995,Environment,Environment +403994,Environment,Environment +400895,Environment,Environment +399081,Environment,Environment +396883,Environment,Environment +377218,Regional Development,Regional Development +361251,Regional Development,Regional Development +277408,Regional Development,Regional Development +277407,Regional Development,Regional Development +218287,Regional Development,Regional Development +280229,Regional Development,Regional Development +277412,Regional Development,Regional Development +277411,Regional Development,Regional Development +277410,Regional Development,Regional Development +277409,Regional Development,Regional Development +432953,Regional Development,Regional Development +544196,Research and Development,Research and Development +535813,Research and Development,Research and Development +233225,Research and Development,Research and Development +220108,Research and Development,Research and Development +297049,Research and Development,Research and Development +259529,Research and Development,Research and Development +456135,Research and Development,Research and Development +453760,Research and Development,Research and Development +433912,Research and Development,Research and Development +432621,Research and Development,Research and Development +432619,Research and Development,Research and Development +424477,Research and Development,Research and Development +424475,Research and Development,Research and Development +417614,Research and Development,Research and Development +412424,Research and Development,Research and Development +412422,Research and Development,Research and Development +410191,Research and Development,Research and Development +410154,Research and Development,Research and Development +544198,Research and Development,Research and Development +325690,Research and Development,Research and Development +310829,Research and Development,Research and Development +259518,Research and Development,Research and Development +230700,Research and Development,Research and Development +230689,Research and Development,Research and Development +226602,Research and Development,Research and Development +226601,Research and Development,Research and Development +220107,Research and Development,Research and Development +421326,Research and Development,Research and Development +421324,Research and Development,Research and Development +421323,Research and Development,Research and Development +419890,Research and Development,Research and Development +419889,Research and Development,Research and Development +376958,Research and Development,Research and Development +351580,Research and Development,Research and Development +457831,International Trade,International Trade +449777,International Trade,International Trade +290817,International Trade,International Trade +359122,Environment,Environment +350322,Environment,Environment +212687,Environment,Environment +415630,Economic Development,Economic Development +415628,Economic Development,Economic Development +459524,Economic Development,Economic Development +441108,Economic Development,Economic Development +441105,Economic Development,Economic Development +441096,Economic Development,Economic Development +415633,Economic Development,Economic Development +365183,Industry,Industry +364806,Industry,Industry +383600,Industry,Industry +374744,Industry,Industry +217829,Pensions,Pensions +480595,Economic Development,Economic Development +474069,Economic Development,Economic Development +485475,Economic Development,Economic Development +485474,Economic Development,Economic Development +485473,Economic Development,Economic Development +483776,Economic Development,Economic Development +483774,Economic Development,Economic Development +483773,Economic Development,Economic Development +483772,Economic Development,Economic Development +482930,Economic Development,Economic Development +482929,Economic Development,Economic Development +482928,Economic Development,Economic Development +482580,Economic Development,Economic Development +482578,Economic Development,Economic Development +480845,Economic Development,Economic Development +480844,Economic Development,Economic Development +480843,Economic Development,Economic Development +480842,Economic Development,Economic Development +480611,Economic Development,Economic Development +480608,Economic Development,Economic Development +480606,Economic Development,Economic Development +480603,Economic Development,Economic Development +480602,Economic Development,Economic Development +480598,Economic Development,Economic Development +480597,Economic Development,Economic Development +476411,Labour,Labour +476410,Labour,Labour +363622,Budget,Budget +422055,Budget,Budget +504171,Research and Development,Research and Development +498187,Research and Development,Research and Development +250764,Research and Development,Research and Development +227271,Research and Development,Research and Development +420194,Research and Development,Research and Development +420192,Research and Development,Research and Development +298629,Energy,Energy +287909,Energy,Energy +265509,Energy,Energy +241974,Energy,Energy +213130,Energy,Energy +213128,Energy,Energy +298829,Energy,Energy +298629,Environment,Environment +318330,Industry,Industry +298829,Industry,Industry +215516,Government Procurement,Government Procurement +215514,Government Procurement,Government Procurement +215511,Government Procurement,Government Procurement +222307,Government Procurement,Government Procurement +222227,Government Procurement,Government Procurement +215514,Small Business,Small Business +215511,Small Business,Small Business +222307,Small Business,Small Business +222227,Small Business,Small Business +215517,Small Business,Small Business +383452,Government Procurement,Government Procurement +273562,Government Procurement,Government Procurement +241167,Government Procurement,Government Procurement +375696,Government Procurement,Government Procurement +362105,Government Procurement,Government Procurement +359437,Government Procurement,Government Procurement +350312,Government Procurement,Government Procurement +347744,Government Procurement,Government Procurement +340970,Government Procurement,Government Procurement +340969,Government Procurement,Government Procurement +520785,Government Procurement,Government Procurement +518650,Government Procurement,Government Procurement +516296,Government Procurement,Government Procurement +516286,Government Procurement,Government Procurement +514962,Government Procurement,Government Procurement +513573,Government Procurement,Government Procurement +485020,Government Procurement,Government Procurement +460409,Government Procurement,Government Procurement +447595,Government Procurement,Government Procurement +423562,Government Procurement,Government Procurement +417462,Government Procurement,Government Procurement +414649,Government Procurement,Government Procurement +411690,Government Procurement,Government Procurement +404555,Government Procurement,Government Procurement +337379,Immigration,Immigration +469588,Housing,Housing +469587,Housing,Housing +488772,Housing,Housing +215528,Government Procurement,Government Procurement +215527,Government Procurement,Government Procurement +215530,Government Procurement,Government Procurement +215528,Small Business,Small Business +215527,Small Business,Small Business +215530,Small Business,Small Business +223536,Employment and Training,Employment and Training +223535,Employment and Training,Employment and Training +221328,Energy,Energy +221327,Energy,Energy +215795,Energy,Energy +215794,Energy,Energy +215793,Energy,Energy +215792,Energy,Energy +213416,Energy,Energy +213414,Energy,Energy +213412,Energy,Energy +213411,Energy,Energy +213410,Energy,Energy +213409,Energy,Energy +213408,Energy,Energy +221348,Energy,Energy +213409,Environment,Environment +213408,Environment,Environment +221348,Environment,Environment +221347,Environment,Environment +221328,Environment,Environment +221327,Environment,Environment +215795,Environment,Environment +215794,Environment,Environment +215793,Environment,Environment +215792,Environment,Environment +213416,Environment,Environment +213414,Environment,Environment +213412,Environment,Environment +213411,Environment,Environment +239647,Research and Development,Research and Development +232710,Research and Development,Research and Development +380757,Research and Development,Research and Development +367702,Research and Development,Research and Development +362944,Research and Development,Research and Development +335561,Research and Development,Research and Development +330626,Research and Development,Research and Development +325649,Research and Development,Research and Development +320210,Research and Development,Research and Development +218567,Health,Health +218408,Health,Health +259614,Health,Health +218570,Health,Health +218569,Health,Health +218567,Research and Development,Research and Development +218408,Research and Development,Research and Development +259614,Research and Development,Research and Development +218570,Research and Development,Research and Development +218569,Research and Development,Research and Development +218068,Agriculture,Agriculture +250650,Agriculture,Agriculture +230697,Agriculture,Agriculture +230695,Agriculture,Agriculture +230694,Agriculture,Agriculture +227372,Agriculture,Agriculture +227371,Agriculture,Agriculture +227369,Agriculture,Agriculture +223201,Agriculture,Agriculture +223200,Agriculture,Agriculture +218118,Agriculture,Agriculture +218117,Agriculture,Agriculture +218116,Agriculture,Agriculture +218114,Agriculture,Agriculture +233853,Industry,Industry +233852,Industry,Industry +233850,Industry,Industry +230697,Industry,Industry +230695,Industry,Industry +230694,Industry,Industry +227372,Industry,Industry +227371,Industry,Industry +227369,Industry,Industry +223201,Industry,Industry +223200,Industry,Industry +218118,Industry,Industry +218117,Industry,Industry +218116,Industry,Industry +218114,Industry,Industry +218069,Industry,Industry +218068,Industry,Industry +459914,Research and Development,Research and Development +540724,Research and Development,Research and Development +329789,Research and Development,Research and Development +314510,Research and Development,Research and Development +294572,Research and Development,Research and Development +294569,Research and Development,Research and Development +270069,Research and Development,Research and Development +243274,Research and Development,Research and Development +243273,Research and Development,Research and Development +243271,Research and Development,Research and Development +243270,Research and Development,Research and Development +243269,Research and Development,Research and Development +396268,Research and Development,Research and Development +340214,Research and Development,Research and Development +513436,Research and Development,Research and Development +513435,Research and Development,Research and Development +513434,Research and Development,Research and Development +513433,Research and Development,Research and Development +513432,Research and Development,Research and Development +513431,Research and Development,Research and Development +513429,Research and Development,Research and Development +510796,Research and Development,Research and Development +510794,Research and Development,Research and Development +510791,Research and Development,Research and Development +510788,Research and Development,Research and Development +510787,Research and Development,Research and Development +510786,Research and Development,Research and Development +510785,Research and Development,Research and Development +510784,Research and Development,Research and Development +502643,Research and Development,Research and Development +502638,Research and Development,Research and Development +499300,Research and Development,Research and Development +499294,Research and Development,Research and Development +499286,Research and Development,Research and Development +499280,Research and Development,Research and Development +499278,Research and Development,Research and Development +499276,Research and Development,Research and Development +499273,Research and Development,Research and Development +495395,Research and Development,Research and Development +493371,Research and Development,Research and Development +490411,Research and Development,Research and Development +489411,Research and Development,Research and Development +482301,Research and Development,Research and Development +482300,Research and Development,Research and Development +482297,Research and Development,Research and Development +482293,Research and Development,Research and Development +479533,Research and Development,Research and Development +517918,Constitutional Issues,Constitutional Issues +517912,Constitutional Issues,Constitutional Issues +319778,Constitutional Issues,Constitutional Issues +319771,Constitutional Issues,Constitutional Issues +396852,Constitutional Issues,Constitutional Issues +385481,Constitutional Issues,Constitutional Issues +384039,Constitutional Issues,Constitutional Issues +383872,Constitutional Issues,Constitutional Issues +383871,Constitutional Issues,Constitutional Issues +383867,Constitutional Issues,Constitutional Issues +383862,Constitutional Issues,Constitutional Issues +381724,Constitutional Issues,Constitutional Issues +379896,Constitutional Issues,Constitutional Issues +379887,Constitutional Issues,Constitutional Issues +379874,Constitutional Issues,Constitutional Issues +379873,Constitutional Issues,Constitutional Issues +379868,Constitutional Issues,Constitutional Issues +379866,Constitutional Issues,Constitutional Issues +374661,Constitutional Issues,Constitutional Issues +531130,Constitutional Issues,Constitutional Issues +531128,Constitutional Issues,Constitutional Issues +521756,Constitutional Issues,Constitutional Issues +521753,Constitutional Issues,Constitutional Issues +517945,Constitutional Issues,Constitutional Issues +517939,Constitutional Issues,Constitutional Issues +517934,Constitutional Issues,Constitutional Issues +327559,Education,Education +531600,Education,Education +528273,Education,Education +525434,Education,Education +525433,Education,Education +525432,Education,Education +525392,Education,Education +525389,Education,Education +525387,Education,Education +522988,Education,Education +522986,Education,Education +514736,Education,Education +514122,Education,Education +514120,Education,Education +513329,Education,Education +513328,Education,Education +513327,Education,Education +513326,Education,Education +513324,Education,Education +513321,Education,Education +513319,Education,Education +488348,Education,Education +488346,Education,Education +485041,Education,Education +482287,Education,Education +482279,Education,Education +479950,Education,Education +450131,Education,Education +439698,Education,Education +439461,Education,Education +376708,Education,Education +470576,Industry,Industry +468444,Industry,Industry +372696,Industry,Industry +468441,Industry,Industry +462639,Industry,Industry +459764,Industry,Industry +459763,Industry,Industry +459762,Industry,Industry +459761,Industry,Industry +459760,Industry,Industry +459757,Industry,Industry +458735,Industry,Industry +452955,Industry,Industry +452930,Industry,Industry +450337,Industry,Industry +450336,Industry,Industry +443951,Industry,Industry +420002,Industry,Industry +417084,Industry,Industry +410268,Industry,Industry +391422,Industry,Industry +385467,Industry,Industry +495875,Industry,Industry +479932,Industry,Industry +473316,Industry,Industry +447844,Infrastructure,Infrastructure +413383,Infrastructure,Infrastructure +543447,Infrastructure,Infrastructure +543412,Infrastructure,Infrastructure +539578,Infrastructure,Infrastructure +528273,Infrastructure,Infrastructure +525434,Infrastructure,Infrastructure +525433,Infrastructure,Infrastructure +525432,Infrastructure,Infrastructure +525392,Infrastructure,Infrastructure +525389,Infrastructure,Infrastructure +525387,Infrastructure,Infrastructure +525383,Infrastructure,Infrastructure +521761,Infrastructure,Infrastructure +517984,Infrastructure,Infrastructure +502406,Infrastructure,Infrastructure +493526,Infrastructure,Infrastructure +484854,Infrastructure,Infrastructure +464716,Infrastructure,Infrastructure +464710,Infrastructure,Infrastructure +464703,Infrastructure,Infrastructure +407915,Consumer Issues,Consumer Issues +495875,Consumer Issues,Consumer Issues +473316,Consumer Issues,Consumer Issues +445591,Consumer Issues,Consumer Issues +423539,Consumer Issues,Consumer Issues +422299,Consumer Issues,Consumer Issues +422286,Consumer Issues,Consumer Issues +422283,Consumer Issues,Consumer Issues +422279,Consumer Issues,Consumer Issues +417104,Consumer Issues,Consumer Issues +525406,Health,Health +525404,Health,Health +263422,Health,Health +263421,Health,Health +263419,Health,Health +258370,Health,Health +381724,Health,Health +379900,Health,Health +379894,Health,Health +379883,Health,Health +379866,Health,Health +372700,Health,Health +327575,Health,Health +323134,Health,Health +525401,Health,Health +521751,Health,Health +514136,Health,Health +514135,Health,Health +514130,Health,Health +514127,Health,Health +502410,Health,Health +502407,Health,Health +499178,Health,Health +499176,Health,Health +499174,Health,Health +499171,Health,Health +499169,Health,Health +499164,Health,Health +499161,Health,Health +499126,Health,Health +499116,Health,Health +499114,Health,Health +491125,Health,Health +473316,Health,Health +473315,Health,Health +450775,Health,Health +450774,Health,Health +450773,Health,Health +450772,Health,Health +447821,Health,Health +439128,Health,Health +422263,Health,Health +422258,Health,Health +404353,Health,Health +403852,Health,Health +396828,Health,Health +396825,Health,Health +395143,Health,Health +385453,Health,Health +385448,Health,Health +384000,Health,Health +383965,Health,Health +543412,Health,Health +525430,Health,Health +525425,Health,Health +525423,Health,Health +525421,Health,Health +525419,Health,Health +525418,Health,Health +525417,Health,Health +525415,Health,Health +499199,International Trade,International Trade +499197,International Trade,International Trade +499193,International Trade,International Trade +482289,International Trade,International Trade +468471,International Trade,International Trade +468461,International Trade,International Trade +464746,International Trade,International Trade +464744,International Trade,International Trade +464741,International Trade,International Trade +464737,International Trade,International Trade +460233,International Trade,International Trade +460232,International Trade,International Trade +459773,International Trade,International Trade +458847,International Trade,International Trade +458742,International Trade,International Trade +458738,International Trade,International Trade +458737,International Trade,International Trade +455626,International Trade,International Trade +447854,International Trade,International Trade +445592,International Trade,International Trade +443938,International Trade,International Trade +443937,International Trade,International Trade +443933,International Trade,International Trade +443931,International Trade,International Trade +422290,International Trade,International Trade +417083,International Trade,International Trade +413377,International Trade,International Trade +407918,International Trade,International Trade +374610,International Trade,International Trade +333356,International Trade,International Trade +514133,International Trade,International Trade +514123,International Trade,International Trade +505611,International Trade,International Trade +499239,International Trade,International Trade +499234,International Trade,International Trade +499226,International Trade,International Trade +531130,Justice and Law Enforcement,Justice and Law Enforcement +333361,Justice and Law Enforcement,Justice and Law Enforcement +327133,Justice and Law Enforcement,Justice and Law Enforcement +327127,Justice and Law Enforcement,Justice and Law Enforcement +276637,Justice and Law Enforcement,Justice and Law Enforcement +276394,Justice and Law Enforcement,Justice and Law Enforcement +249843,Justice and Law Enforcement,Justice and Law Enforcement +244785,Justice and Law Enforcement,Justice and Law Enforcement +424443,Justice and Law Enforcement,Justice and Law Enforcement +424441,Justice and Law Enforcement,Justice and Law Enforcement +418269,Justice and Law Enforcement,Justice and Law Enforcement +417073,Justice and Law Enforcement,Justice and Law Enforcement +417071,Justice and Law Enforcement,Justice and Law Enforcement +417069,Justice and Law Enforcement,Justice and Law Enforcement +417068,Justice and Law Enforcement,Justice and Law Enforcement +413324,Justice and Law Enforcement,Justice and Law Enforcement +410273,Justice and Law Enforcement,Justice and Law Enforcement +410270,Justice and Law Enforcement,Justice and Law Enforcement +410269,Justice and Law Enforcement,Justice and Law Enforcement +409154,Justice and Law Enforcement,Justice and Law Enforcement +409137,Justice and Law Enforcement,Justice and Law Enforcement +407901,Justice and Law Enforcement,Justice and Law Enforcement +407900,Justice and Law Enforcement,Justice and Law Enforcement +407899,Justice and Law Enforcement,Justice and Law Enforcement +407896,Justice and Law Enforcement,Justice and Law Enforcement +403879,Justice and Law Enforcement,Justice and Law Enforcement +400928,Justice and Law Enforcement,Justice and Law Enforcement +398213,Justice and Law Enforcement,Justice and Law Enforcement +397816,Justice and Law Enforcement,Justice and Law Enforcement +397814,Justice and Law Enforcement,Justice and Law Enforcement +397812,Justice and Law Enforcement,Justice and Law Enforcement +397811,Justice and Law Enforcement,Justice and Law Enforcement +397809,Justice and Law Enforcement,Justice and Law Enforcement +395146,Justice and Law Enforcement,Justice and Law Enforcement +395145,Justice and Law Enforcement,Justice and Law Enforcement +395144,Justice and Law Enforcement,Justice and Law Enforcement +395141,Justice and Law Enforcement,Justice and Law Enforcement +395140,Justice and Law Enforcement,Justice and Law Enforcement +394494,Justice and Law Enforcement,Justice and Law Enforcement +394493,Justice and Law Enforcement,Justice and Law Enforcement +394492,Justice and Law Enforcement,Justice and Law Enforcement +394489,Justice and Law Enforcement,Justice and Law Enforcement +394488,Justice and Law Enforcement,Justice and Law Enforcement +394486,Justice and Law Enforcement,Justice and Law Enforcement +394484,Justice and Law Enforcement,Justice and Law Enforcement +392589,Justice and Law Enforcement,Justice and Law Enforcement +392584,Justice and Law Enforcement,Justice and Law Enforcement +392578,Justice and Law Enforcement,Justice and Law Enforcement +391486,Justice and Law Enforcement,Justice and Law Enforcement +391475,Justice and Law Enforcement,Justice and Law Enforcement +391423,Justice and Law Enforcement,Justice and Law Enforcement +391394,Justice and Law Enforcement,Justice and Law Enforcement +391393,Justice and Law Enforcement,Justice and Law Enforcement +391390,Justice and Law Enforcement,Justice and Law Enforcement +391385,Justice and Law Enforcement,Justice and Law Enforcement +391384,Justice and Law Enforcement,Justice and Law Enforcement +391382,Justice and Law Enforcement,Justice and Law Enforcement +391381,Justice and Law Enforcement,Justice and Law Enforcement +391380,Justice and Law Enforcement,Justice and Law Enforcement +391378,Justice and Law Enforcement,Justice and Law Enforcement +391377,Justice and Law Enforcement,Justice and Law Enforcement +391375,Justice and Law Enforcement,Justice and Law Enforcement +391373,Justice and Law Enforcement,Justice and Law Enforcement +391371,Justice and Law Enforcement,Justice and Law Enforcement +391370,Justice and Law Enforcement,Justice and Law Enforcement +391368,Justice and Law Enforcement,Justice and Law Enforcement +391367,Justice and Law Enforcement,Justice and Law Enforcement +391365,Justice and Law Enforcement,Justice and Law Enforcement +391364,Justice and Law Enforcement,Justice and Law Enforcement +391363,Justice and Law Enforcement,Justice and Law Enforcement +391362,Justice and Law Enforcement,Justice and Law Enforcement +388338,Justice and Law Enforcement,Justice and Law Enforcement +388256,Justice and Law Enforcement,Justice and Law Enforcement +388248,Justice and Law Enforcement,Justice and Law Enforcement +388245,Justice and Law Enforcement,Justice and Law Enforcement +388240,Justice and Law Enforcement,Justice and Law Enforcement +388235,Justice and Law Enforcement,Justice and Law Enforcement +388215,Justice and Law Enforcement,Justice and Law Enforcement +386132,Justice and Law Enforcement,Justice and Law Enforcement +385521,Justice and Law Enforcement,Justice and Law Enforcement +385502,Justice and Law Enforcement,Justice and Law Enforcement +385497,Justice and Law Enforcement,Justice and Law Enforcement +385496,Justice and Law Enforcement,Justice and Law Enforcement +385491,Justice and Law Enforcement,Justice and Law Enforcement +384040,Justice and Law Enforcement,Justice and Law Enforcement +383959,Justice and Law Enforcement,Justice and Law Enforcement +381730,Justice and Law Enforcement,Justice and Law Enforcement +379900,Justice and Law Enforcement,Justice and Law Enforcement +379887,Justice and Law Enforcement,Justice and Law Enforcement +379883,Justice and Law Enforcement,Justice and Law Enforcement +379874,Justice and Law Enforcement,Justice and Law Enforcement +379873,Justice and Law Enforcement,Justice and Law Enforcement +379855,Justice and Law Enforcement,Justice and Law Enforcement +376705,Justice and Law Enforcement,Justice and Law Enforcement +376666,Justice and Law Enforcement,Justice and Law Enforcement +374790,Justice and Law Enforcement,Justice and Law Enforcement +374661,Justice and Law Enforcement,Justice and Law Enforcement +374610,Justice and Law Enforcement,Justice and Law Enforcement +374586,Justice and Law Enforcement,Justice and Law Enforcement +372704,Justice and Law Enforcement,Justice and Law Enforcement +372700,Justice and Law Enforcement,Justice and Law Enforcement +372696,Justice and Law Enforcement,Justice and Law Enforcement +372693,Justice and Law Enforcement,Justice and Law Enforcement +372692,Justice and Law Enforcement,Justice and Law Enforcement +372684,Justice and Law Enforcement,Justice and Law Enforcement +350629,Justice and Law Enforcement,Justice and Law Enforcement +350623,Justice and Law Enforcement,Justice and Law Enforcement +350615,Justice and Law Enforcement,Justice and Law Enforcement +350614,Justice and Law Enforcement,Justice and Law Enforcement +350613,Justice and Law Enforcement,Justice and Law Enforcement +350596,Justice and Law Enforcement,Justice and Law Enforcement +349053,Justice and Law Enforcement,Justice and Law Enforcement +349049,Justice and Law Enforcement,Justice and Law Enforcement +525379,Justice and Law Enforcement,Justice and Law Enforcement +521758,Justice and Law Enforcement,Justice and Law Enforcement +521756,Justice and Law Enforcement,Justice and Law Enforcement +519748,Justice and Law Enforcement,Justice and Law Enforcement +517934,Justice and Law Enforcement,Justice and Law Enforcement +517925,Justice and Law Enforcement,Justice and Law Enforcement +517918,Justice and Law Enforcement,Justice and Law Enforcement +517912,Justice and Law Enforcement,Justice and Law Enforcement +514734,Justice and Law Enforcement,Justice and Law Enforcement +513328,Justice and Law Enforcement,Justice and Law Enforcement +513327,Justice and Law Enforcement,Justice and Law Enforcement +513324,Justice and Law Enforcement,Justice and Law Enforcement +511652,Justice and Law Enforcement,Justice and Law Enforcement +511651,Justice and Law Enforcement,Justice and Law Enforcement +502434,Justice and Law Enforcement,Justice and Law Enforcement +502407,Justice and Law Enforcement,Justice and Law Enforcement +499239,Justice and Law Enforcement,Justice and Law Enforcement +499234,Justice and Law Enforcement,Justice and Law Enforcement +499209,Justice and Law Enforcement,Justice and Law Enforcement +499206,Justice and Law Enforcement,Justice and Law Enforcement +499199,Justice and Law Enforcement,Justice and Law Enforcement +499197,Justice and Law Enforcement,Justice and Law Enforcement +499189,Justice and Law Enforcement,Justice and Law Enforcement +499187,Justice and Law Enforcement,Justice and Law Enforcement +499184,Justice and Law Enforcement,Justice and Law Enforcement +499181,Justice and Law Enforcement,Justice and Law Enforcement +495874,Justice and Law Enforcement,Justice and Law Enforcement +495870,Justice and Law Enforcement,Justice and Law Enforcement +493557,Justice and Law Enforcement,Justice and Law Enforcement +493550,Justice and Law Enforcement,Justice and Law Enforcement +493534,Justice and Law Enforcement,Justice and Law Enforcement +491122,Justice and Law Enforcement,Justice and Law Enforcement +488353,Justice and Law Enforcement,Justice and Law Enforcement +488345,Justice and Law Enforcement,Justice and Law Enforcement +484081,Justice and Law Enforcement,Justice and Law Enforcement +479945,Justice and Law Enforcement,Justice and Law Enforcement +478335,Justice and Law Enforcement,Justice and Law Enforcement +468480,Justice and Law Enforcement,Justice and Law Enforcement +468471,Justice and Law Enforcement,Justice and Law Enforcement +468460,Justice and Law Enforcement,Justice and Law Enforcement +468456,Justice and Law Enforcement,Justice and Law Enforcement +468447,Justice and Law Enforcement,Justice and Law Enforcement +464698,Justice and Law Enforcement,Justice and Law Enforcement +459770,Justice and Law Enforcement,Justice and Law Enforcement +459759,Justice and Law Enforcement,Justice and Law Enforcement +458760,Justice and Law Enforcement,Justice and Law Enforcement +455615,Justice and Law Enforcement,Justice and Law Enforcement +455611,Justice and Law Enforcement,Justice and Law Enforcement +455584,Justice and Law Enforcement,Justice and Law Enforcement +455575,Justice and Law Enforcement,Justice and Law Enforcement +455571,Justice and Law Enforcement,Justice and Law Enforcement +455560,Justice and Law Enforcement,Justice and Law Enforcement +452496,Justice and Law Enforcement,Justice and Law Enforcement +452477,Justice and Law Enforcement,Justice and Law Enforcement +450337,Justice and Law Enforcement,Justice and Law Enforcement +450113,Justice and Law Enforcement,Justice and Law Enforcement +450110,Justice and Law Enforcement,Justice and Law Enforcement +443944,Justice and Law Enforcement,Justice and Law Enforcement +442257,Justice and Law Enforcement,Justice and Law Enforcement +439126,Justice and Law Enforcement,Justice and Law Enforcement +434045,Justice and Law Enforcement,Justice and Law Enforcement +433179,Justice and Law Enforcement,Justice and Law Enforcement +543445,Justice and Law Enforcement,Justice and Law Enforcement +543441,Justice and Law Enforcement,Justice and Law Enforcement +543437,Justice and Law Enforcement,Justice and Law Enforcement +537189,Justice and Law Enforcement,Justice and Law Enforcement +537185,Justice and Law Enforcement,Justice and Law Enforcement +537182,Justice and Law Enforcement,Justice and Law Enforcement +537177,Justice and Law Enforcement,Justice and Law Enforcement +537175,Justice and Law Enforcement,Justice and Law Enforcement +511649,Religion,Religion +511188,Religion,Religion +403849,Religion,Religion +391398,Religion,Religion +376701,Religion,Religion +499239,Religion,Religion +499234,Religion,Religion +499226,Religion,Religion +499222,Religion,Religion +499199,Religion,Religion +499197,Religion,Religion +499193,Religion,Religion +493557,Religion,Religion +493555,Religion,Religion +493534,Religion,Religion +491875,Religion,Religion +482285,Religion,Religion +479948,Religion,Religion +478336,Religion,Religion +478317,Religion,Religion +470569,Religion,Religion +470567,Religion,Religion +470565,Religion,Religion +455560,Religion,Religion +455558,Religion,Religion +455554,Religion,Religion +452941,Religion,Religion +452935,Religion,Religion +452933,Religion,Religion +450131,Religion,Religion +450129,Religion,Religion +450128,Religion,Religion +442272,Religion,Religion +442211,Religion,Religion +423625,Religion,Religion +423554,Religion,Religion +423540,Religion,Religion +422299,Religion,Religion +422286,Religion,Religion +422283,Religion,Religion +422279,Religion,Religion +422260,Religion,Religion +420017,Religion,Religion +417104,Religion,Religion +417064,Religion,Religion +410276,Religion,Religion +407910,Religion,Religion +404365,Religion,Religion +543445,Religion,Religion +543429,Religion,Religion +543412,Religion,Religion +541703,Religion,Religion +537187,Religion,Religion +537178,Religion,Religion +537173,Religion,Religion +534752,Religion,Religion +531600,Religion,Religion +531149,Religion,Religion +528873,Religion,Religion +528865,Religion,Religion +528852,Religion,Religion +528844,Religion,Religion +528273,Religion,Religion +527867,Religion,Religion +525379,Religion,Religion +521761,Religion,Religion +521758,Religion,Religion +521756,Religion,Religion +521753,Religion,Religion +519755,Religion,Religion +517947,Religion,Religion +517945,Religion,Religion +517943,Religion,Religion +517934,Religion,Religion +517925,Religion,Religion +517912,Religion,Religion +514133,Religion,Religion +514123,Religion,Religion +513329,Religion,Religion +513328,Religion,Religion +513327,Religion,Religion +513326,Religion,Religion +513324,Religion,Religion +513321,Religion,Religion +513319,Religion,Religion +511653,Religion,Religion +511652,Religion,Religion +511651,Religion,Religion +519755,Tourism,Tourism +223350,Financial Institutions,Financial Institutions +220828,Energy,Energy +220827,Energy,Energy +220830,Energy,Energy +313891,Research and Development,Research and Development +313890,Research and Development,Research and Development +251949,Research and Development,Research and Development +246209,Research and Development,Research and Development +246170,Research and Development,Research and Development +231329,Research and Development,Research and Development +231309,Research and Development,Research and Development +227973,Research and Development,Research and Development +220447,Research and Development,Research and Development +375126,Research and Development,Research and Development +375125,Research and Development,Research and Development +375123,Research and Development,Research and Development +372646,Research and Development,Research and Development +372641,Research and Development,Research and Development +372633,Research and Development,Research and Development +370052,Research and Development,Research and Development +370051,Research and Development,Research and Development +349613,Research and Development,Research and Development +349612,Research and Development,Research and Development +349610,Research and Development,Research and Development +347896,Research and Development,Research and Development +347894,Research and Development,Research and Development +330506,Research and Development,Research and Development +330505,Research and Development,Research and Development +328892,Research and Development,Research and Development +328891,Research and Development,Research and Development +326149,Research and Development,Research and Development +319830,Research and Development,Research and Development +319816,Research and Development,Research and Development +319814,Research and Development,Research and Development +319812,Research and Development,Research and Development +218488,Financial Institutions,Financial Institutions +218487,Financial Institutions,Financial Institutions +223489,Financial Institutions,Financial Institutions +219927,Agriculture,Agriculture +314089,Agriculture,Agriculture +270950,Agriculture,Agriculture +270949,Agriculture,Agriculture +263830,Agriculture,Agriculture +251289,Agriculture,Agriculture +249149,Agriculture,Agriculture +246732,Agriculture,Agriculture +415730,Economic Development,Economic Development +415729,Economic Development,Economic Development +415732,Economic Development,Economic Development +408396,Economic Development,Economic Development +442026,Economic Development,Economic Development +442025,Economic Development,Economic Development +442014,Economic Development,Economic Development +442010,Economic Development,Economic Development +442008,Economic Development,Economic Development +415735,Economic Development,Economic Development +224247,Defence,Défense +232210,Environment,Environment +215467,Environment,Environment +313051,Environment,Environment +312490,Environment,Environment +235529,Environment,Environment +229690,Consumer Issues,Consumer Issues +229689,Consumer Issues,Consumer Issues +233054,Consumer Issues,Consumer Issues +233052,Consumer Issues,Consumer Issues +233051,Consumer Issues,Consumer Issues +229689,Justice and Law Enforcement,Justice and Law Enforcement +222347,Justice and Law Enforcement,Justice and Law Enforcement +233054,Justice and Law Enforcement,Justice and Law Enforcement +233052,Justice and Law Enforcement,Justice and Law Enforcement +233051,Justice and Law Enforcement,Justice and Law Enforcement +222347,Small Business,Small Business +221187,Regional Development,Regional Development +384556,Energy,Energy +381853,Energy,Energy +383081,Forestry,Forestry +381853,Forestry,Forestry +233711,Forestry,Forestry +233710,Forestry,Forestry +221467,Forestry,Forestry +280910,Research and Development,Research and Development +233711,Research and Development,Research and Development +223573,Economic Development,Economic Development +223569,Economic Development,Economic Development +223576,Energy,Energy +223569,Energy,Energy +223576,Environment,Environment +223569,Environment,Environment +223576,Fisheries,Fisheries +223569,Fisheries,Fisheries +223586,Regional Development,Regional Development +223576,Regional Development,Regional Development +223573,Regional Development,Regional Development +224062,International Trade,International Trade +224059,International Trade,International Trade +284591,Industry,Industry +284590,Industry,Industry +284589,Industry,Industry +272593,Industry,Industry +272590,Industry,Industry +272589,Industry,Industry +272570,Industry,Industry +272569,Industry,Industry +247491,Industry,Industry +247490,Industry,Industry +322188,Industry,Industry +303509,Industry,Industry +303491,Industry,Industry +303470,Industry,Industry +298269,Industry,Industry +298253,Industry,Industry +298251,Industry,Industry +298250,Industry,Industry +298249,Industry,Industry +293989,Industry,Industry +293974,Industry,Industry +293973,Industry,Industry +293970,Industry,Industry +290992,Industry,Industry +290991,Industry,Industry +290986,Industry,Industry +290982,Industry,Industry +290977,Industry,Industry +290250,Industry,Industry +258389,Taxation and Finance,Taxation and Finance +258371,Taxation and Finance,Taxation and Finance +418757,Small Business,Small Business +232611,Government Procurement,Government Procurement +230194,Government Procurement,Government Procurement +340050,Research and Development,Research and Development +337703,Research and Development,Research and Development +271509,Research and Development,Research and Development +266537,Research and Development,Research and Development +266536,Research and Development,Research and Development +266535,Research and Development,Research and Development +266534,Research and Development,Research and Development +261854,Research and Development,Research and Development +261851,Research and Development,Research and Development +261850,Research and Development,Research and Development +257031,Research and Development,Research and Development +256870,Research and Development,Research and Development +247969,Research and Development,Research and Development +247949,Research and Development,Research and Development +245035,Research and Development,Research and Development +235872,Research and Development,Research and Development +337702,Research and Development,Research and Development +337701,Research and Development,Research and Development +337700,Research and Development,Research and Development +337699,Research and Development,Research and Development +337698,Research and Development,Research and Development +337697,Research and Development,Research and Development +337696,Research and Development,Research and Development +337695,Research and Development,Research and Development +337693,Research and Development,Research and Development +335295,Research and Development,Research and Development +335293,Research and Development,Research and Development +333342,Research and Development,Research and Development +333338,Research and Development,Research and Development +332691,Research and Development,Research and Development +329790,Research and Development,Research and Development +324683,Research and Development,Research and Development +324681,Research and Development,Research and Development +309994,Research and Development,Research and Development +309993,Research and Development,Research and Development +309991,Research and Development,Research and Development +309990,Research and Development,Research and Development +301231,Research and Development,Research and Development +301217,Research and Development,Research and Development +301216,Research and Development,Research and Development +301215,Research and Development,Research and Development +301213,Research and Development,Research and Development +301212,Research and Development,Research and Development +301210,Research and Development,Research and Development +301209,Research and Development,Research and Development +295709,Research and Development,Research and Development +293752,Research and Development,Research and Development +293751,Research and Development,Research and Development +293750,Research and Development,Research and Development +293749,Research and Development,Research and Development +348287,Research and Development,Research and Development +348286,Research and Development,Research and Development +348285,Research and Development,Research and Development +348284,Research and Development,Research and Development +340454,Research and Development,Research and Development +340200,Research and Development,Research and Development +340053,Research and Development,Research and Development +340052,Research and Development,Research and Development +218529,Taxation and Finance,Taxation and Finance +245790,Immigration,Immigration +238769,Immigration,Immigration +224907,Immigration,Immigration +362602,Immigration,Immigration +262429,Immigration,Immigration +318221,Defence,Defence +318217,Defence,Defence +303071,Defence,Defence +298290,Defence,Defence +278729,Government Procurement,Government Procurement +276492,Government Procurement,Government Procurement +340818,Government Procurement,Government Procurement +335012,Government Procurement,Government Procurement +318221,Government Procurement,Government Procurement +318217,Government Procurement,Government Procurement +303071,Government Procurement,Government Procurement +303071,Industry,Industry +298290,Industry,Industry +340818,Industry,Industry +335012,Industry,Industry +318221,Industry,Industry +291030,Industry,Industry +216096,Taxation and Finance,Taxation and Finance +216097,Taxation and Finance,Taxation and Finance +216099,Pensions,Pensions +299249,Security,Security +536793,Security,Security +242211,Security,Security +227181,Security,Security +223079,Security,Security +448617,Economic Development,Economic Development +448616,Economic Development,Economic Development +216213,Economic Development,Economic Development +375420,Economic Development,Economic Development +375402,Economic Development,Economic Development +375401,Economic Development,Economic Development +375394,Economic Development,Economic Development +367646,Economic Development,Economic Development +367563,Economic Development,Economic Development +367562,Economic Development,Economic Development +367561,Economic Development,Economic Development +367560,Economic Development,Economic Development +367555,Economic Development,Economic Development +367545,Economic Development,Economic Development +367504,Economic Development,Economic Development +433654,Economic Development,Economic Development +432985,Economic Development,Economic Development +408674,Economic Development,Economic Development +401745,Economic Development,Economic Development +513656,Economic Development,Economic Development +512066,Economic Development,Economic Development +506775,Economic Development,Economic Development +504069,Economic Development,Economic Development +504056,Economic Development,Economic Development +504054,Economic Development,Economic Development +504052,Economic Development,Economic Development +504050,Economic Development,Economic Development +504049,Economic Development,Economic Development +504033,Economic Development,Economic Development +504020,Economic Development,Economic Development +504019,Economic Development,Economic Development +504018,Economic Development,Economic Development +504017,Economic Development,Economic Development +504013,Economic Development,Economic Development +504010,Economic Development,Economic Development +504008,Economic Development,Economic Development +504006,Economic Development,Economic Development +504003,Economic Development,Economic Development +503928,Economic Development,Economic Development +503927,Economic Development,Economic Development +503926,Economic Development,Economic Development +503902,Economic Development,Economic Development +503901,Economic Development,Economic Development +503878,Economic Development,Economic Development +500665,Economic Development,Economic Development +500664,Economic Development,Economic Development +500663,Economic Development,Economic Development +500662,Economic Development,Economic Development +500661,Economic Development,Economic Development +500660,Economic Development,Economic Development +500658,Economic Development,Economic Development +500657,Economic Development,Economic Development +500656,Economic Development,Economic Development +500654,Economic Development,Economic Development +500652,Economic Development,Economic Development +500610,Economic Development,Economic Development +500599,Economic Development,Economic Development +500596,Economic Development,Economic Development +500595,Economic Development,Economic Development +500594,Economic Development,Economic Development +500593,Economic Development,Economic Development +497222,Economic Development,Economic Development +497221,Economic Development,Economic Development +497169,Economic Development,Economic Development +497167,Economic Development,Economic Development +497166,Economic Development,Economic Development +497165,Economic Development,Economic Development +497162,Economic Development,Economic Development +497156,Economic Development,Economic Development +497145,Economic Development,Economic Development +497141,Economic Development,Economic Development +497140,Economic Development,Economic Development +497099,Economic Development,Economic Development +497094,Economic Development,Economic Development +496749,Economic Development,Economic Development +496740,Economic Development,Economic Development +494569,Economic Development,Economic Development +494568,Economic Development,Economic Development +494567,Economic Development,Economic Development +494566,Economic Development,Economic Development +494565,Economic Development,Economic Development +494553,Economic Development,Economic Development +492919,Economic Development,Economic Development +492444,Economic Development,Economic Development +492443,Economic Development,Economic Development +492442,Economic Development,Economic Development +492441,Economic Development,Economic Development +492440,Economic Development,Economic Development +492438,Economic Development,Economic Development +492436,Economic Development,Economic Development +492357,Economic Development,Economic Development +489276,Economic Development,Economic Development +489275,Economic Development,Economic Development +489274,Economic Development,Economic Development +489272,Economic Development,Economic Development +489251,Economic Development,Economic Development +486217,Economic Development,Economic Development +486216,Economic Development,Economic Development +486215,Economic Development,Economic Development +486214,Economic Development,Economic Development +486213,Economic Development,Economic Development +486212,Economic Development,Economic Development +486166,Economic Development,Economic Development +484582,Economic Development,Economic Development +484578,Economic Development,Economic Development +484570,Economic Development,Economic Development +483063,Economic Development,Economic Development +471612,Economic Development,Economic Development +471470,Economic Development,Economic Development +471469,Economic Development,Economic Development +469076,Economic Development,Economic Development +469075,Economic Development,Economic Development +469074,Economic Development,Economic Development +459170,Economic Development,Economic Development +459004,Economic Development,Economic Development +456429,Economic Development,Economic Development +455000,Economic Development,Economic Development +448625,Economic Development,Economic Development +448624,Economic Development,Economic Development +448622,Economic Development,Economic Development +448621,Economic Development,Economic Development +448619,Economic Development,Economic Development +229949,Energy,Energy +222627,Energy,Energy +310485,Energy,Energy +310483,Energy,Energy +310482,Energy,Energy +310477,Energy,Energy +310474,Energy,Energy +310466,Energy,Energy +310465,Energy,Energy +310463,Energy,Energy +310462,Energy,Energy +310441,Energy,Energy +310440,Energy,Energy +250660,Energy,Energy +250654,Energy,Energy +250651,Energy,Energy +250629,Energy,Energy +250624,Energy,Energy +250651,Environment,Environment +250629,Environment,Environment +310477,Environment,Environment +310469,Environment,Environment +310465,Environment,Environment +310463,Environment,Environment +310462,Environment,Environment +310441,Environment,Environment +534979,Budget,Budget +495586,Budget,Budget +216335,Budget,Budget +216333,Budget,Budget +216330,Budget,Budget +353027,Budget,Budget +347349,Budget,Budget +338786,Budget,Budget +296351,Budget,Budget +296035,Budget,Budget +296034,Budget,Budget +296033,Budget,Budget +296032,Budget,Budget +296031,Budget,Budget +296030,Budget,Budget +296029,Budget,Budget +245547,Budget,Budget +443806,Budget,Budget +443805,Budget,Budget +443801,Budget,Budget +439533,Budget,Budget +403908,Budget,Budget +403903,Budget,Budget +228832,Defence,Defence +228770,Defence,Defence +228836,Defence,Defence +228835,Defence,Defence +228834,Defence,Defence +228832,Industry,Industry +228770,Industry,Industry +228836,Industry,Industry +228835,Industry,Industry +228834,Industry,Industry +228832,Government Procurement,Government Procurement +228770,Government Procurement,Government Procurement +232610,Government Procurement,Government Procurement +228836,Government Procurement,Government Procurement +228835,Government Procurement,Government Procurement +228834,Government Procurement,Government Procurement +466939,Budget,Budget +445323,Budget,Budget +347615,Budget,Budget +341652,Budget,Budget +315942,Budget,Budget +315937,Budget,Budget +315929,Budget,Budget +309791,Budget,Budget +265035,Budget,Budget +265032,Budget,Budget +216452,Budget,Budget +397907,Budget,Budget +397899,Budget,Budget +393992,Budget,Budget +393837,Budget,Budget +354045,Budget,Budget +354044,Budget,Budget +353280,Budget,Budget +353113,Budget,Budget +507204,Budget,Budget +501814,Budget,Budget +470213,Budget,Budget +467103,Budget,Budget +447840,Budget,Budget +216457,Budget,Budget +393990,Budget,Budget +393972,Budget,Budget +370680,Budget,Budget +370679,Budget,Budget +353287,Budget,Budget +353282,Budget,Budget +353111,Budget,Budget +349927,Budget,Budget +349923,Budget,Budget +347614,Budget,Budget +265035,Budget,Budget +265034,Budget,Budget +265031,Budget,Budget +265030,Budget,Budget +525311,Budget,Budget +393999,Budget,Budget +393977,Budget,Budget +265033,Budget,Budget +216470,Budget,Budget +370681,Budget,Budget +354042,Budget,Budget +353288,Budget,Budget +349919,Budget,Budget +339017,Budget,Budget +339016,Budget,Budget +333316,Budget,Budget +470228,Budget,Budget +470225,Budget,Budget +470219,Budget,Budget +470211,Budget,Budget +464199,Budget,Budget +450352,Budget,Budget +447861,Budget,Budget +445298,Budget,Budget +439054,Budget,Budget +397938,Budget,Budget +328033,Financial Institutions,Financial Institutions +328032,Financial Institutions,Financial Institutions +328031,Financial Institutions,Financial Institutions +328029,Financial Institutions,Financial Institutions +224467,Financial Institutions,Financial Institutions +220927,Financial Institutions,Financial Institutions +347962,Financial Institutions,Financial Institutions +347960,Financial Institutions,Financial Institutions +347777,Financial Institutions,Financial Institutions +344838,Financial Institutions,Financial Institutions +344698,Financial Institutions,Financial Institutions +344697,Financial Institutions,Financial Institutions +339961,Financial Institutions,Financial Institutions +337411,Financial Institutions,Financial Institutions +335269,Financial Institutions,Financial Institutions +334409,Financial Institutions,Financial Institutions +334209,Financial Institutions,Financial Institutions +333969,Financial Institutions,Financial Institutions +333547,Financial Institutions,Financial Institutions +330342,Financial Institutions,Financial Institutions +328309,Financial Institutions,Financial Institutions +328154,Financial Institutions,Financial Institutions +328153,Financial Institutions,Financial Institutions +328039,Financial Institutions,Financial Institutions +328038,Financial Institutions,Financial Institutions +328036,Financial Institutions,Financial Institutions +217689,Budget,Budget +217691,Budget,Budget +217731,Environment,Environment +217731,Health,Health +230064,Industry,Industry +217731,Industry,Industry +245027,Industry,Industry +245017,Industry,Industry +230064,International Trade,International Trade +217731,International Trade,International Trade +245027,International Trade,International Trade +245017,International Trade,International Trade +243532,Immigration,Immigration +243530,Immigration,Immigration +220947,Agriculture,Agriculture +220947,International Trade,International Trade +223236,International Trade,International Trade +223231,International Trade,International Trade +223315,International Trade,International Trade +223314,International Trade,International Trade +250300,International Trade,International Trade +250300,Economic Development,Economic Development +231610,Agriculture,Agriculture +231609,Agriculture,Agriculture +267772,Agriculture,Agriculture +491764,Agriculture,Agriculture +487936,Agriculture,Agriculture +225620,Agriculture,Agriculture +225619,Agriculture,Agriculture +225618,Agriculture,Agriculture +225617,Agriculture,Agriculture +467446,Agriculture,Agriculture +466976,Agriculture,Agriculture +466968,Agriculture,Agriculture +466967,Agriculture,Agriculture +466966,Agriculture,Agriculture +463189,Agriculture,Agriculture +456407,Agriculture,Agriculture +454332,Agriculture,Agriculture +454331,Agriculture,Agriculture +454329,Agriculture,Agriculture +454328,Agriculture,Agriculture +454327,Agriculture,Agriculture +429679,Agriculture,Agriculture +540023,Agriculture,Agriculture +540022,Agriculture,Agriculture +536352,Agriculture,Agriculture +536351,Agriculture,Agriculture +532899,Agriculture,Agriculture +532898,Agriculture,Agriculture +532897,Agriculture,Agriculture +532896,Agriculture,Agriculture +532895,Agriculture,Agriculture +532894,Agriculture,Agriculture +530674,Agriculture,Agriculture +517578,Agriculture,Agriculture +517335,Agriculture,Agriculture +512489,Agriculture,Agriculture +510599,Agriculture,Agriculture +505422,Agriculture,Agriculture +505421,Agriculture,Agriculture +505412,Agriculture,Agriculture +505411,Agriculture,Agriculture +505398,Agriculture,Agriculture +502341,Agriculture,Agriculture +492588,Agriculture,Agriculture +491791,Agriculture,Agriculture +491790,Agriculture,Agriculture +491788,Agriculture,Agriculture +491784,Agriculture,Agriculture +491779,Agriculture,Agriculture +491774,Agriculture,Agriculture +544504,International Trade,International Trade +544503,International Trade,International Trade +275900,International Trade,International Trade +275899,International Trade,International Trade +275898,International Trade,International Trade +225620,International Trade,International Trade +225619,International Trade,International Trade +225618,International Trade,International Trade +225617,International Trade,International Trade +422067,International Trade,International Trade +422066,International Trade,International Trade +422065,International Trade,International Trade +408910,International Trade,International Trade +408462,International Trade,International Trade +408461,International Trade,International Trade +408460,International Trade,International Trade +408459,International Trade,International Trade +408458,International Trade,International Trade +540023,International Trade,International Trade +540022,International Trade,International Trade +536352,International Trade,International Trade +536351,International Trade,International Trade +532899,International Trade,International Trade +532895,International Trade,International Trade +532894,International Trade,International Trade +517578,International Trade,International Trade +517335,International Trade,International Trade +505421,International Trade,International Trade +505412,International Trade,International Trade +505411,International Trade,International Trade +505398,International Trade,International Trade +492588,International Trade,International Trade +491791,International Trade,International Trade +491790,International Trade,International Trade +491788,International Trade,International Trade +491784,International Trade,International Trade +491779,International Trade,International Trade +491774,International Trade,International Trade +491766,International Trade,International Trade +491764,International Trade,International Trade +487936,International Trade,International Trade +467446,International Trade,International Trade +466976,International Trade,International Trade +466968,International Trade,International Trade +466967,International Trade,International Trade +466966,International Trade,International Trade +463189,International Trade,International Trade +456407,International Trade,International Trade +454332,International Trade,International Trade +454331,International Trade,International Trade +454329,International Trade,International Trade +454328,International Trade,International Trade +454327,International Trade,International Trade +429683,International Trade,International Trade +429682,International Trade,International Trade +429681,International Trade,International Trade +429680,International Trade,International Trade +429679,International Trade,International Trade +220832,Small Business,Small Business +418767,Taxation and Finance,Impôts et finances +414759,Taxation and Finance,Impôts et finances +335765,Taxation and Finance,Impôts et finances +329346,Taxation and Finance,Impôts et finances +262069,Taxation and Finance,Impôts et finances +238569,Taxation and Finance,Impôts et finances +229449,Taxation and Finance,Impôts et finances +225770,Taxation and Finance,Impôts et finances +225747,Taxation and Finance,Impôts et finances +223808,Taxation and Finance,Impôts et finances +223807,Taxation and Finance,Impôts et finances +223787,Taxation and Finance,Impôts et finances +219887,Taxation and Finance,Impôts et finances +389422,Taxation and Finance,Impôts et finances +375741,Taxation and Finance,Impôts et finances +371669,Taxation and Finance,Impôts et finances +371666,Taxation and Finance,Impôts et finances +371663,Taxation and Finance,Impôts et finances +371661,Taxation and Finance,Impôts et finances +371660,Taxation and Finance,Impôts et finances +371659,Taxation and Finance,Impôts et finances +371658,Taxation and Finance,Impôts et finances +371656,Taxation and Finance,Impôts et finances +371655,Taxation and Finance,Impôts et finances +368145,Taxation and Finance,Impôts et finances +344937,Taxation and Finance,Impôts et finances +339983,Taxation and Finance,Impôts et finances +497498,Taxation and Finance,Impôts et finances +495163,Taxation and Finance,Impôts et finances +467120,Taxation and Finance,Impôts et finances +467116,Taxation and Finance,Impôts et finances +467107,Taxation and Finance,Impôts et finances +467104,Taxation and Finance,Impôts et finances +467101,Taxation and Finance,Impôts et finances +467099,Taxation and Finance,Impôts et finances +467097,Taxation and Finance,Impôts et finances +467095,Taxation and Finance,Impôts et finances +467093,Taxation and Finance,Impôts et finances +467082,Taxation and Finance,Impôts et finances +467078,Taxation and Finance,Impôts et finances +467075,Taxation and Finance,Impôts et finances +467073,Taxation and Finance,Impôts et finances +467065,Taxation and Finance,Impôts et finances +467061,Taxation and Finance,Impôts et finances +467058,Taxation and Finance,Impôts et finances +467056,Taxation and Finance,Impôts et finances +467054,Taxation and Finance,Impôts et finances +464185,Taxation and Finance,Impôts et finances +464184,Taxation and Finance,Impôts et finances +454149,Taxation and Finance,Impôts et finances +454146,Taxation and Finance,Impôts et finances +454145,Taxation and Finance,Impôts et finances +454144,Taxation and Finance,Impôts et finances +454143,Taxation and Finance,Impôts et finances +452022,Taxation and Finance,Impôts et finances +452021,Taxation and Finance,Impôts et finances +448051,Taxation and Finance,Impôts et finances +448044,Taxation and Finance,Impôts et finances +448040,Taxation and Finance,Impôts et finances +448037,Taxation and Finance,Impôts et finances +448032,Taxation and Finance,Impôts et finances +448029,Taxation and Finance,Impôts et finances +448023,Taxation and Finance,Impôts et finances +448021,Taxation and Finance,Impôts et finances +448018,Taxation and Finance,Impôts et finances +448016,Taxation and Finance,Impôts et finances +448015,Taxation and Finance,Impôts et finances +445629,Taxation and Finance,Impôts et finances +445628,Taxation and Finance,Impôts et finances +445625,Taxation and Finance,Impôts et finances +445623,Taxation and Finance,Impôts et finances +443588,Taxation and Finance,Impôts et finances +441797,Taxation and Finance,Impôts et finances +441792,Taxation and Finance,Impôts et finances +440440,Taxation and Finance,Impôts et finances +440437,Taxation and Finance,Impôts et finances +440435,Taxation and Finance,Impôts et finances +440430,Taxation and Finance,Impôts et finances +438693,Taxation and Finance,Impôts et finances +438298,Taxation and Finance,Impôts et finances +423199,Taxation and Finance,Impôts et finances +423157,Taxation and Finance,Impôts et finances +423156,Taxation and Finance,Impôts et finances +423155,Taxation and Finance,Impôts et finances +423154,Taxation and Finance,Impôts et finances +238329,Research and Development,Recherche et développement +223658,Research and Development,Recherche et développement +291909,Research and Development,Recherche et développement +246770,Research and Development,Recherche et développement +272814,Security,Security +272813,Security,Security +239449,Security,Security +232392,Security,Security +232249,Security,Security +223393,Security,Security +355505,Security,Security +314552,Taxation and Finance,Taxation and Finance +229831,Security,Security +223398,Health,Health +223395,Health,Health +422893,Health,Health +422891,Health,Health +377754,Health,Health +377734,Health,Health +374281,Health,Health +373733,Health,Health +373732,Health,Health +397876,Health,Health +395705,Health,Health +394737,Health,Health +394736,Health,Health +394735,Health,Health +394734,Health,Health +393185,Health,Health +393182,Health,Health +389668,Health,Health +533671,Health,Health +460969,Health,Health +434284,Health,Health +434283,Health,Health +489143,Financial Institutions,Financial Institutions +488463,Financial Institutions,Financial Institutions +486294,Financial Institutions,Financial Institutions +486292,Financial Institutions,Financial Institutions +483388,Financial Institutions,Financial Institutions +482931,Financial Institutions,Financial Institutions +466755,Financial Institutions,Financial Institutions +465820,Financial Institutions,Financial Institutions +465819,Financial Institutions,Financial Institutions +465818,Financial Institutions,Financial Institutions +465817,Financial Institutions,Financial Institutions +465816,Financial Institutions,Financial Institutions +465815,Financial Institutions,Financial Institutions +465813,Financial Institutions,Financial Institutions +456500,Financial Institutions,Financial Institutions +456497,Financial Institutions,Financial Institutions +453668,Financial Institutions,Financial Institutions +445431,Financial Institutions,Financial Institutions +444797,Financial Institutions,Financial Institutions +444796,Financial Institutions,Financial Institutions +444794,Financial Institutions,Financial Institutions +444793,Financial Institutions,Financial Institutions +444792,Financial Institutions,Financial Institutions +444791,Financial Institutions,Financial Institutions +441009,Financial Institutions,Financial Institutions +441008,Financial Institutions,Financial Institutions +436908,Financial Institutions,Financial Institutions +427429,Financial Institutions,Financial Institutions +425271,Financial Institutions,Financial Institutions +423421,Financial Institutions,Financial Institutions +410587,Financial Institutions,Financial Institutions +401689,Financial Institutions,Financial Institutions +401538,Financial Institutions,Financial Institutions +399901,Financial Institutions,Financial Institutions +399119,Financial Institutions,Financial Institutions +545005,Financial Institutions,Financial Institutions +542585,Financial Institutions,Financial Institutions +529843,Financial Institutions,Financial Institutions +527159,Financial Institutions,Financial Institutions +527130,Financial Institutions,Financial Institutions +526832,Financial Institutions,Financial Institutions +522959,Financial Institutions,Financial Institutions +521311,Financial Institutions,Financial Institutions +520854,Financial Institutions,Financial Institutions +518447,Financial Institutions,Financial Institutions +518441,Financial Institutions,Financial Institutions +516557,Financial Institutions,Financial Institutions +516535,Financial Institutions,Financial Institutions +516470,Financial Institutions,Financial Institutions +516467,Financial Institutions,Financial Institutions +516466,Financial Institutions,Financial Institutions +516301,Financial Institutions,Financial Institutions +516300,Financial Institutions,Financial Institutions +516264,Financial Institutions,Financial Institutions +516253,Financial Institutions,Financial Institutions +516245,Financial Institutions,Financial Institutions +516177,Financial Institutions,Financial Institutions +514486,Financial Institutions,Financial Institutions +510656,Financial Institutions,Financial Institutions +509453,Financial Institutions,Financial Institutions +509448,Financial Institutions,Financial Institutions +509331,Financial Institutions,Financial Institutions +420334,Health,Health +395175,Health,Health +311330,Health,Health +424982,Health,Health +227829,Agriculture,Agriculture +278156,Agriculture,Agriculture +251430,Agriculture,Agriculture +251428,Agriculture,Agriculture +251427,Agriculture,Agriculture +230672,Agriculture,Agriculture +251426,Health,Health +230672,Health,Health +251430,Health,Health +251428,Health,Health +466312,Health,Health +466308,Health,Health +541287,Health,Health +536400,Health,Health +536340,Health,Health +536338,Health,Health +536337,Health,Health +536336,Health,Health +536002,Health,Health +532856,Health,Health +532718,Health,Health +532704,Health,Health +532695,Health,Health +532694,Health,Health +532690,Health,Health +527287,Health,Health +524125,Health,Health +520432,Health,Health +514916,Health,Health +512155,Health,Health +511864,Health,Health +503604,Health,Health +501187,Health,Health +501185,Health,Health +499967,Health,Health +499965,Health,Health +497239,Health,Health +497237,Health,Health +492578,Health,Health +489342,Health,Health +489340,Health,Health +489338,Health,Health +489326,Health,Health +489319,Health,Health +489318,Health,Health +489294,Health,Health +489293,Health,Health +485943,Health,Health +471907,Health,Health +466355,Health,Health +466348,Health,Health +466342,Health,Health +466335,Health,Health +457932,Health,Health +489051,Industry,Industry +485499,Industry,Industry +220831,Industry,Industry +391907,Industry,Industry +391905,Industry,Industry +391902,Industry,Industry +520430,Industry,Industry +506428,Industry,Industry +223099,International Trade,International Trade +223098,International Trade,International Trade +223094,International Trade,International Trade +223316,International Trade,International Trade +251433,Agriculture,Agriculture +374470,Agriculture,Agriculture +230675,Agriculture,Agriculture +230673,Agriculture,Agriculture +365990,Agriculture,Agriculture +280777,Agriculture,Agriculture +278157,Agriculture,Agriculture +413914,Budget,Budget +413911,Budget,Budget +442765,Economic Development,Economic Development +442763,Economic Development,Economic Development +278157,Economic Development,Economic Development +269556,Economic Development,Economic Development +269551,Economic Development,Economic Development +251434,Economic Development,Economic Development +230675,Economic Development,Economic Development +230674,Economic Development,Economic Development +230673,Economic Development,Economic Development +230669,Economic Development,Economic Development +429577,Economic Development,Economic Development +429576,Economic Development,Economic Development +424312,Economic Development,Economic Development +417253,Economic Development,Economic Development +413914,Economic Development,Economic Development +413911,Economic Development,Economic Development +410155,Economic Development,Economic Development +396481,Economic Development,Economic Development +394280,Economic Development,Economic Development +391124,Economic Development,Economic Development +391120,Economic Development,Economic Development +383364,Economic Development,Economic Development +377252,Economic Development,Economic Development +377251,Economic Development,Economic Development +374470,Economic Development,Economic Development +374466,Economic Development,Economic Development +374463,Economic Development,Economic Development +374460,Economic Development,Economic Development +374459,Economic Development,Economic Development +374457,Economic Development,Economic Development +374456,Economic Development,Economic Development +374454,Economic Development,Economic Development +365990,Economic Development,Economic Development +348348,Economic Development,Economic Development +348347,Economic Development,Economic Development +348346,Economic Development,Economic Development +502797,Economic Development,Economic Development +499665,Economic Development,Economic Development +493801,Economic Development,Economic Development +491028,Economic Development,Economic Development +482546,Economic Development,Economic Development +478418,Economic Development,Economic Development +476070,Economic Development,Economic Development +470617,Economic Development,Economic Development +470615,Economic Development,Economic Development +470613,Economic Development,Economic Development +462835,Economic Development,Economic Development +461801,Economic Development,Economic Development +461799,Economic Development,Economic Development +460724,Economic Development,Economic Development +457724,Economic Development,Economic Development +457723,Economic Development,Economic Development +453002,Economic Development,Economic Development +452999,Economic Development,Economic Development +448105,Economic Development,Economic Development +470615,Environment,Environment +470613,Environment,Environment +280777,Environment,Environment +365990,Environment,Environment +462835,Environment,Environment +460724,Environment,Environment +457724,Environment,Environment +457723,Environment,Environment +457722,Environment,Environment +453002,Environment,Environment +452999,Environment,Environment +432620,Environment,Environment +429577,Environment,Environment +429576,Environment,Environment +424312,Environment,Environment +424311,Environment,Environment +417024,Environment,Environment +417021,Environment,Environment +413914,Environment,Environment +396481,Environment,Environment +394280,Environment,Environment +391124,Environment,Environment +391120,Environment,Environment +383364,Environment,Environment +377252,Environment,Environment +377251,Environment,Environment +374466,Environment,Environment +502797,Environment,Environment +499665,Environment,Environment +493801,Environment,Environment +491028,Environment,Environment +478418,Environment,Environment +476070,Environment,Environment +473750,Environment,Environment +473749,Environment,Environment +413914,Fisheries,Fisheries +413911,Fisheries,Fisheries +230675,Fisheries,Fisheries +230674,Fisheries,Fisheries +230673,Fisheries,Fisheries +230669,Fisheries,Fisheries +410155,Fisheries,Fisheries +396856,Fisheries,Fisheries +396481,Fisheries,Fisheries +394280,Fisheries,Fisheries +391124,Fisheries,Fisheries +391120,Fisheries,Fisheries +383364,Fisheries,Fisheries +377252,Fisheries,Fisheries +377251,Fisheries,Fisheries +374470,Fisheries,Fisheries +374466,Fisheries,Fisheries +374463,Fisheries,Fisheries +374460,Fisheries,Fisheries +374459,Fisheries,Fisheries +374457,Fisheries,Fisheries +374456,Fisheries,Fisheries +374454,Fisheries,Fisheries +365990,Fisheries,Fisheries +348348,Fisheries,Fisheries +348347,Fisheries,Fisheries +348346,Fisheries,Fisheries +341571,Fisheries,Fisheries +341567,Fisheries,Fisheries +341561,Fisheries,Fisheries +334633,Fisheries,Fisheries +280777,Fisheries,Fisheries +278159,Fisheries,Fisheries +278158,Fisheries,Fisheries +278157,Fisheries,Fisheries +269556,Fisheries,Fisheries +269551,Fisheries,Fisheries +251434,Fisheries,Fisheries +251433,Fisheries,Fisheries +502797,Fisheries,Fisheries +499665,Fisheries,Fisheries +493801,Fisheries,Fisheries +491028,Fisheries,Fisheries +487980,Fisheries,Fisheries +482546,Fisheries,Fisheries +478418,Fisheries,Fisheries +476070,Fisheries,Fisheries +473750,Fisheries,Fisheries +473749,Fisheries,Fisheries +470617,Fisheries,Fisheries +470615,Fisheries,Fisheries +470613,Fisheries,Fisheries +462835,Fisheries,Fisheries +461801,Fisheries,Fisheries +461799,Fisheries,Fisheries +460724,Fisheries,Fisheries +457724,Fisheries,Fisheries +457723,Fisheries,Fisheries +457722,Fisheries,Fisheries +453002,Fisheries,Fisheries +452999,Fisheries,Fisheries +448105,Fisheries,Fisheries +442767,Fisheries,Fisheries +442765,Fisheries,Fisheries +442763,Fisheries,Fisheries +432620,Fisheries,Fisheries +429577,Fisheries,Fisheries +429576,Fisheries,Fisheries +424312,Fisheries,Fisheries +424311,Fisheries,Fisheries +417253,Fisheries,Fisheries +417024,Fisheries,Fisheries +442763,Industry,Industry +424311,Industry,Industry +413911,Industry,Industry +502797,Industry,Industry +499665,Industry,Industry +487980,Industry,Industry +482546,Industry,Industry +478418,Industry,Industry +461801,Industry,Industry +461799,Industry,Industry +448105,Industry,Industry +442767,Industry,Industry +230669,International Trade,International Trade +453002,Regional Development,Regional Development +452999,Regional Development,Regional Development +269556,Regional Development,Regional Development +269551,Regional Development,Regional Development +230675,Regional Development,Regional Development +230674,Regional Development,Regional Development +230673,Regional Development,Regional Development +442765,Regional Development,Regional Development +417253,Regional Development,Regional Development +410155,Regional Development,Regional Development +396856,Regional Development,Regional Development +396481,Regional Development,Regional Development +391120,Regional Development,Regional Development +377252,Regional Development,Regional Development +377251,Regional Development,Regional Development +374470,Regional Development,Regional Development +374466,Regional Development,Regional Development +374463,Regional Development,Regional Development +374460,Regional Development,Regional Development +374459,Regional Development,Regional Development +374457,Regional Development,Regional Development +374454,Regional Development,Regional Development +348347,Regional Development,Regional Development +341567,Regional Development,Regional Development +341561,Regional Development,Regional Development +487980,Regional Development,Regional Development +462835,Regional Development,Regional Development +461801,Regional Development,Regional Development +461799,Regional Development,Regional Development +413911,Research and Development,Research and Development +394280,Research and Development,Research and Development +280777,Research and Development,Research and Development +251434,Research and Development,Research and Development +230674,Research and Development,Research and Development +230673,Research and Development,Research and Development +374466,Research and Development,Research and Development +374463,Research and Development,Research and Development +374460,Research and Development,Research and Development +374459,Research and Development,Research and Development +374457,Research and Development,Research and Development +374456,Research and Development,Research and Development +374454,Research and Development,Research and Development +457724,Research and Development,Research and Development +457723,Research and Development,Research and Development +442767,Research and Development,Research and Development +442763,Research and Development,Research and Development +432620,Research and Development,Research and Development +424311,Research and Development,Research and Development +461801,Taxation and Finance,Taxation and Finance +461799,Taxation and Finance,Taxation and Finance +432324,Privacy and Access to Information,Privacy and Access to Information +429381,Privacy and Access to Information,Privacy and Access to Information +273118,Privacy and Access to Information,Privacy and Access to Information +269749,Privacy and Access to Information,Privacy and Access to Information +227270,Privacy and Access to Information,Privacy and Access to Information +227256,Privacy and Access to Information,Privacy and Access to Information +416683,Privacy and Access to Information,Privacy and Access to Information +382372,Privacy and Access to Information,Privacy and Access to Information +370987,Privacy and Access to Information,Privacy and Access to Information +353881,Privacy and Access to Information,Privacy and Access to Information +343637,Privacy and Access to Information,Privacy and Access to Information +338502,Privacy and Access to Information,Privacy and Access to Information +338501,Privacy and Access to Information,Privacy and Access to Information +335664,Privacy and Access to Information,Privacy and Access to Information +335663,Privacy and Access to Information,Privacy and Access to Information +335661,Privacy and Access to Information,Privacy and Access to Information +333350,Privacy and Access to Information,Privacy and Access to Information +333349,Privacy and Access to Information,Privacy and Access to Information +327722,Privacy and Access to Information,Privacy and Access to Information +327713,Privacy and Access to Information,Privacy and Access to Information +315831,Privacy and Access to Information,Privacy and Access to Information +312841,Privacy and Access to Information,Privacy and Access to Information +312837,Privacy and Access to Information,Privacy and Access to Information +289993,Privacy and Access to Information,Privacy and Access to Information +289990,Privacy and Access to Information,Privacy and Access to Information +289969,Privacy and Access to Information,Privacy and Access to Information +543357,Privacy and Access to Information,Privacy and Access to Information +534899,Privacy and Access to Information,Privacy and Access to Information +534875,Privacy and Access to Information,Privacy and Access to Information +464991,Privacy and Access to Information,Privacy and Access to Information +464990,Privacy and Access to Information,Privacy and Access to Information +443518,Privacy and Access to Information,Privacy and Access to Information +432333,Privacy and Access to Information,Privacy and Access to Information +432329,Privacy and Access to Information,Privacy and Access to Information +534910,International Trade,International Trade +517721,International Trade,International Trade +286273,International Trade,International Trade +286272,International Trade,International Trade +353880,International Trade,International Trade +464989,International Trade,International Trade +417987,International Trade,International Trade +417986,International Trade,International Trade +417985,International Trade,International Trade +413351,International Trade,International Trade +413347,International Trade,International Trade +413344,International Trade,International Trade +410466,International Trade,International Trade +410465,International Trade,International Trade +410464,International Trade,International Trade +410463,International Trade,International Trade +410462,International Trade,International Trade +403456,International Trade,International Trade +403454,International Trade,International Trade +306789,Taxation and Finance,Taxation and Finance +273139,Taxation and Finance,Taxation and Finance +249681,Taxation and Finance,Taxation and Finance +249668,Taxation and Finance,Taxation and Finance +246851,Taxation and Finance,Taxation and Finance +313531,Taxation and Finance,Taxation and Finance +310615,Taxation and Finance,Taxation and Finance +310614,Taxation and Finance,Taxation and Finance +306810,Taxation and Finance,Taxation and Finance +306809,Taxation and Finance,Taxation and Finance +306795,Taxation and Finance,Taxation and Finance +306794,Taxation and Finance,Taxation and Finance +306793,Taxation and Finance,Taxation and Finance +306792,Taxation and Finance,Taxation and Finance +306791,Taxation and Finance,Taxation and Finance +491741,Agriculture,Agriculture +491739,Agriculture,Agriculture +249870,Agriculture,Agriculture +479151,Agriculture,Agriculture +467582,Agriculture,Agriculture +464811,Agriculture,Agriculture +464799,Agriculture,Agriculture +456405,Agriculture,Agriculture +454302,Agriculture,Agriculture +454301,Agriculture,Agriculture +454299,Agriculture,Agriculture +401490,Agriculture,Agriculture +401489,Agriculture,Agriculture +401488,Agriculture,Agriculture +401487,Agriculture,Agriculture +378780,Consumer Issues,Consumer Issues +454302,Consumer Issues,Consumer Issues +378782,Consumer Issues,Consumer Issues +378780,Health,Health +429686,Health,Health +378782,Health,Health +308612,Internal Trade,Internal Trade +308611,Internal Trade,Internal Trade +308615,Internal Trade,Internal Trade +308614,Internal Trade,Internal Trade +429685,International Trade,International Trade +429684,International Trade,International Trade +417954,International Trade,International Trade +417953,International Trade,International Trade +417952,International Trade,International Trade +401490,International Trade,International Trade +401489,International Trade,International Trade +401488,International Trade,International Trade +401487,International Trade,International Trade +378782,International Trade,International Trade +378781,International Trade,International Trade +378780,International Trade,International Trade +354987,International Trade,International Trade +354986,International Trade,International Trade +354985,International Trade,International Trade +328672,International Trade,International Trade +328671,International Trade,International Trade +328670,International Trade,International Trade +328669,International Trade,International Trade +328668,International Trade,International Trade +308615,International Trade,International Trade +308614,International Trade,International Trade +308613,International Trade,International Trade +308612,International Trade,International Trade +308611,International Trade,International Trade +276815,International Trade,International Trade +276812,International Trade,International Trade +276809,International Trade,International Trade +249870,International Trade,International Trade +491742,International Trade,International Trade +491741,International Trade,International Trade +491739,International Trade,International Trade +479151,International Trade,International Trade +467582,International Trade,International Trade +464811,International Trade,International Trade +464799,International Trade,International Trade +456405,International Trade,International Trade +454302,International Trade,International Trade +454301,International Trade,International Trade +272371,Climate,Climate +244420,Climate,Climate +318370,Climate,Climate +455730,Government Procurement,Government Procurement +455727,Government Procurement,Government Procurement +355747,Government Procurement,Government Procurement +355746,Government Procurement,Government Procurement +455698,Government Procurement,Government Procurement +455696,Government Procurement,Government Procurement +225654,Agriculture,Agriculture +225653,Agriculture,Agriculture +225656,Agriculture,Agriculture +225654,International Trade,International Trade +225653,International Trade,International Trade +225656,International Trade,International Trade +221447,Health,Health +249549,International Trade,Commerce international +224692,International Trade,Commerce international +224692,Forestry,Foresterie +224691,Forestry,Foresterie +249549,Forestry,Foresterie +228638,Forestry,Foresterie +321869,Health,Health +233670,Agriculture,Agriculture +230765,Agriculture,Agriculture +325309,Agriculture,Agriculture +310949,Agriculture,Agriculture +273731,Agriculture,Agriculture +273730,Agriculture,Agriculture +273729,Agriculture,Agriculture +259433,Agriculture,Agriculture +259433,Economic Development,Economic Development +259426,Economic Development,Economic Development +233689,Economic Development,Economic Development +233671,Economic Development,Economic Development +233670,Economic Development,Economic Development +230789,Economic Development,Economic Development +230765,Economic Development,Economic Development +372821,Economic Development,Economic Development +353410,Economic Development,Economic Development +341562,Economic Development,Economic Development +325309,Economic Development,Economic Development +319429,Economic Development,Economic Development +310949,Economic Development,Economic Development +281450,Economic Development,Economic Development +277711,Economic Development,Economic Development +273731,Economic Development,Economic Development +273730,Economic Development,Economic Development +273729,Economic Development,Economic Development +372821,Employment and Training,Employment and Training +325309,Employment and Training,Employment and Training +341562,Environment,Environment +325309,Environment,Environment +319429,Environment,Environment +281450,Environment,Environment +264691,Environment,Environment +259426,Environment,Environment +233689,Environment,Environment +233671,Environment,Environment +233670,Environment,Environment +230789,Environment,Environment +230765,Environment,Environment +353410,Environment,Environment +233670,Fisheries,Fisheries +372821,Fisheries,Fisheries +230789,Fisheries,Fisheries +230765,Fisheries,Fisheries +353410,Fisheries,Fisheries +347619,Fisheries,Fisheries +341562,Fisheries,Fisheries +325309,Fisheries,Fisheries +319429,Fisheries,Fisheries +310949,Fisheries,Fisheries +281450,Fisheries,Fisheries +277711,Fisheries,Fisheries +273731,Fisheries,Fisheries +273730,Fisheries,Fisheries +273729,Fisheries,Fisheries +264691,Fisheries,Fisheries +259433,Fisheries,Fisheries +259426,Fisheries,Fisheries +233689,Fisheries,Fisheries +341562,International Trade,International Trade +310949,International Trade,International Trade +277711,International Trade,International Trade +259433,International Trade,International Trade +372821,International Trade,International Trade +259433,Regional Development,Regional Development +259426,Regional Development,Regional Development +230789,Regional Development,Regional Development +230765,Regional Development,Regional Development +372821,Regional Development,Regional Development +347619,Regional Development,Regional Development +341562,Regional Development,Regional Development +310949,Regional Development,Regional Development +281450,Regional Development,Regional Development +254324,Government Procurement,Government Procurement +254323,Government Procurement,Government Procurement +254329,Government Procurement,Government Procurement +225689,Economic Development,Economic Development +228509,Immigration,Immigration +222047,Immigration,Immigration +233559,Immigration,Immigration +533874,Consumer Issues,Consumer Issues +533871,Consumer Issues,Consumer Issues +372973,Consumer Issues,Consumer Issues +372971,Consumer Issues,Consumer Issues +372970,Consumer Issues,Consumer Issues +372968,Consumer Issues,Consumer Issues +372966,Consumer Issues,Consumer Issues +439714,Consumer Issues,Consumer Issues +432045,Consumer Issues,Consumer Issues +432041,Consumer Issues,Consumer Issues +432039,Consumer Issues,Consumer Issues +429678,Consumer Issues,Consumer Issues +429646,Consumer Issues,Consumer Issues +427674,Consumer Issues,Consumer Issues +427673,Consumer Issues,Consumer Issues +427670,Consumer Issues,Consumer Issues +427526,Consumer Issues,Consumer Issues +427523,Consumer Issues,Consumer Issues +427402,Consumer Issues,Consumer Issues +427270,Consumer Issues,Consumer Issues +427269,Consumer Issues,Consumer Issues +426779,Consumer Issues,Consumer Issues +426776,Consumer Issues,Consumer Issues +425750,Consumer Issues,Consumer Issues +425041,Consumer Issues,Consumer Issues +424943,Consumer Issues,Consumer Issues +424939,Consumer Issues,Consumer Issues +424937,Consumer Issues,Consumer Issues +424224,Consumer Issues,Consumer Issues +419731,Consumer Issues,Consumer Issues +417293,Consumer Issues,Consumer Issues +417291,Consumer Issues,Consumer Issues +376272,Consumer Issues,Consumer Issues +533877,Consumer Issues,Consumer Issues +533876,Consumer Issues,Consumer Issues +372968,Economic Development,Economic Development +372966,Economic Development,Economic Development +309150,Economic Development,Economic Development +427673,Economic Development,Economic Development +372973,Economic Development,Economic Development +372971,Economic Development,Economic Development +424229,Environment,Environment +424223,Environment,Environment +376281,Environment,Environment +376280,Environment,Environment +376279,Environment,Environment +376278,Environment,Environment +376277,Environment,Environment +376276,Environment,Environment +376274,Environment,Environment +376273,Environment,Environment +376272,Environment,Environment +372973,Environment,Environment +372971,Environment,Environment +372970,Environment,Environment +372968,Environment,Environment +372966,Environment,Environment +293130,Environment,Environment +419731,Environment,Environment +417868,Environment,Environment +417863,Environment,Environment +413527,Environment,Environment +407003,Environment,Environment +376287,Environment,Environment +376286,Environment,Environment +376285,Environment,Environment +376284,Environment,Environment +376283,Environment,Environment +376282,Environment,Environment +542308,Environment,Environment +530232,Environment,Environment +451440,Environment,Environment +451100,Environment,Environment +449678,Environment,Environment +449667,Environment,Environment +449020,Environment,Environment +448323,Environment,Environment +434052,Environment,Environment +432043,Environment,Environment +429678,Environment,Environment +429677,Environment,Environment +429647,Environment,Environment +427674,Environment,Environment +427673,Environment,Environment +427670,Environment,Environment +427526,Environment,Environment +427523,Environment,Environment +427402,Environment,Environment +426779,Environment,Environment +426776,Environment,Environment +533874,Health,Health +533871,Health,Health +372973,Health,Health +372970,Health,Health +533877,Health,Health +533876,Health,Health +372966,Infrastructure,Infrastructure +542307,Infrastructure,Infrastructure +419731,Infrastructure,Infrastructure +419727,Infrastructure,Infrastructure +403756,Infrastructure,Infrastructure +403754,Infrastructure,Infrastructure +403751,Infrastructure,Infrastructure +403746,Infrastructure,Infrastructure +372973,Infrastructure,Infrastructure +372971,Infrastructure,Infrastructure +372970,Infrastructure,Infrastructure +372971,International Relations,International Relations +372970,International Relations,International Relations +432042,International Relations,International Relations +427671,International Relations,International Relations +427524,International Relations,International Relations +427269,International Relations,International Relations +426778,International Relations,International Relations +427269,International Trade,International Trade +426778,International Trade,International Trade +372973,International Trade,International Trade +372971,International Trade,International Trade +372970,International Trade,International Trade +432042,International Trade,International Trade +427671,International Trade,International Trade +372968,Security,Security +372966,Security,Security +334312,Security,Security +283429,Security,Security +276072,Security,Security +432044,Security,Security +427671,Security,Security +427269,Security,Security +426779,Security,Security +426776,Security,Security +424224,Security,Security +419734,Security,Security +419731,Security,Security +376273,Security,Security +376272,Security,Security +376271,Security,Security +372973,Security,Security +372971,Security,Security +372968,Taxation and Finance,Taxation and Finance +372966,Taxation and Finance,Taxation and Finance +334310,Taxation and Finance,Taxation and Finance +309150,Taxation and Finance,Taxation and Finance +302732,Taxation and Finance,Taxation and Finance +293149,Taxation and Finance,Taxation and Finance +293131,Taxation and Finance,Taxation and Finance +283429,Taxation and Finance,Taxation and Finance +270929,Taxation and Finance,Taxation and Finance +252432,Taxation and Finance,Taxation and Finance +252431,Taxation and Finance,Taxation and Finance +252430,Taxation and Finance,Taxation and Finance +248089,Taxation and Finance,Taxation and Finance +439714,Taxation and Finance,Taxation and Finance +432045,Taxation and Finance,Taxation and Finance +432043,Taxation and Finance,Taxation and Finance +429678,Taxation and Finance,Taxation and Finance +429677,Taxation and Finance,Taxation and Finance +429647,Taxation and Finance,Taxation and Finance +427674,Taxation and Finance,Taxation and Finance +427673,Taxation and Finance,Taxation and Finance +427670,Taxation and Finance,Taxation and Finance +427526,Taxation and Finance,Taxation and Finance +427523,Taxation and Finance,Taxation and Finance +427402,Taxation and Finance,Taxation and Finance +427270,Taxation and Finance,Taxation and Finance +426779,Taxation and Finance,Taxation and Finance +426776,Taxation and Finance,Taxation and Finance +424939,Taxation and Finance,Taxation and Finance +424229,Taxation and Finance,Taxation and Finance +424224,Taxation and Finance,Taxation and Finance +424223,Taxation and Finance,Taxation and Finance +419731,Taxation and Finance,Taxation and Finance +417868,Taxation and Finance,Taxation and Finance +417863,Taxation and Finance,Taxation and Finance +413540,Taxation and Finance,Taxation and Finance +413527,Taxation and Finance,Taxation and Finance +407003,Taxation and Finance,Taxation and Finance +399205,Taxation and Finance,Taxation and Finance +399203,Taxation and Finance,Taxation and Finance +399202,Taxation and Finance,Taxation and Finance +395467,Taxation and Finance,Taxation and Finance +395466,Taxation and Finance,Taxation and Finance +376273,Taxation and Finance,Taxation and Finance +376272,Taxation and Finance,Taxation and Finance +376271,Taxation and Finance,Taxation and Finance +372973,Taxation and Finance,Taxation and Finance +372971,Taxation and Finance,Taxation and Finance +533871,Tourism,Tourism +523566,Tourism,Tourism +335025,Tourism,Tourism +309152,Tourism,Tourism +309151,Tourism,Tourism +309149,Tourism,Tourism +293129,Tourism,Tourism +270929,Tourism,Tourism +252431,Tourism,Tourism +376287,Tourism,Tourism +376286,Tourism,Tourism +376285,Tourism,Tourism +376284,Tourism,Tourism +376283,Tourism,Tourism +376282,Tourism,Tourism +376281,Tourism,Tourism +376280,Tourism,Tourism +376279,Tourism,Tourism +376278,Tourism,Tourism +376277,Tourism,Tourism +376276,Tourism,Tourism +376274,Tourism,Tourism +376273,Tourism,Tourism +376272,Tourism,Tourism +376271,Tourism,Tourism +372973,Tourism,Tourism +372971,Tourism,Tourism +372970,Tourism,Tourism +372968,Tourism,Tourism +372966,Tourism,Tourism +449678,Tourism,Tourism +448322,Tourism,Tourism +434051,Tourism,Tourism +432042,Tourism,Tourism +427673,Tourism,Tourism +427524,Tourism,Tourism +427269,Tourism,Tourism +426778,Tourism,Tourism +426775,Tourism,Tourism +419734,Tourism,Tourism +539841,Tourism,Tourism +539837,Tourism,Tourism +533876,Tourism,Tourism +482829,Transportation,Transportation +482809,Transportation,Transportation +353413,Transportation,Transportation +341729,Transportation,Transportation +335023,Transportation,Transportation +334312,Transportation,Transportation +334311,Transportation,Transportation +334310,Transportation,Transportation +334309,Transportation,Transportation +331632,Transportation,Transportation +318430,Transportation,Transportation +309152,Transportation,Transportation +309151,Transportation,Transportation +309150,Transportation,Transportation +309149,Transportation,Transportation +302732,Transportation,Transportation +302731,Transportation,Transportation +293149,Transportation,Transportation +293131,Transportation,Transportation +293130,Transportation,Transportation +293129,Transportation,Transportation +283429,Transportation,Transportation +276072,Transportation,Transportation +270929,Transportation,Transportation +252432,Transportation,Transportation +252431,Transportation,Transportation +252430,Transportation,Transportation +248089,Transportation,Transportation +482808,Transportation,Transportation +482806,Transportation,Transportation +482783,Transportation,Transportation +482782,Transportation,Transportation +482781,Transportation,Transportation +482780,Transportation,Transportation +482706,Transportation,Transportation +482705,Transportation,Transportation +482704,Transportation,Transportation +482703,Transportation,Transportation +482702,Transportation,Transportation +482679,Transportation,Transportation +482676,Transportation,Transportation +482675,Transportation,Transportation +482673,Transportation,Transportation +482672,Transportation,Transportation +482671,Transportation,Transportation +482669,Transportation,Transportation +482652,Transportation,Transportation +482651,Transportation,Transportation +482650,Transportation,Transportation +482649,Transportation,Transportation +482648,Transportation,Transportation +482647,Transportation,Transportation +482646,Transportation,Transportation +482645,Transportation,Transportation +482644,Transportation,Transportation +482050,Transportation,Transportation +482048,Transportation,Transportation +482046,Transportation,Transportation +481599,Transportation,Transportation +481595,Transportation,Transportation +481594,Transportation,Transportation +481591,Transportation,Transportation +481590,Transportation,Transportation +481587,Transportation,Transportation +481585,Transportation,Transportation +481583,Transportation,Transportation +481581,Transportation,Transportation +481579,Transportation,Transportation +481149,Transportation,Transportation +480774,Transportation,Transportation +478750,Transportation,Transportation +478671,Transportation,Transportation +478455,Transportation,Transportation +478451,Transportation,Transportation +477085,Transportation,Transportation +476856,Transportation,Transportation +476666,Transportation,Transportation +476467,Transportation,Transportation +476466,Transportation,Transportation +471465,Transportation,Transportation +469422,Transportation,Transportation +469421,Transportation,Transportation +468709,Transportation,Transportation +468707,Transportation,Transportation +467048,Transportation,Transportation +467047,Transportation,Transportation +465591,Transportation,Transportation +465586,Transportation,Transportation +465495,Transportation,Transportation +463311,Transportation,Transportation +461959,Transportation,Transportation +461138,Transportation,Transportation +460957,Transportation,Transportation +459817,Transportation,Transportation +459109,Transportation,Transportation +456422,Transportation,Transportation +456421,Transportation,Transportation +455427,Transportation,Transportation +455425,Transportation,Transportation +453769,Transportation,Transportation +453767,Transportation,Transportation +451345,Transportation,Transportation +451099,Transportation,Transportation +450933,Transportation,Transportation +450932,Transportation,Transportation +450884,Transportation,Transportation +450803,Transportation,Transportation +449678,Transportation,Transportation +449672,Transportation,Transportation +449669,Transportation,Transportation +449667,Transportation,Transportation +449131,Transportation,Transportation +449129,Transportation,Transportation +449126,Transportation,Transportation +449024,Transportation,Transportation +449023,Transportation,Transportation +449022,Transportation,Transportation +449021,Transportation,Transportation +449020,Transportation,Transportation +449018,Transportation,Transportation +448863,Transportation,Transportation +448862,Transportation,Transportation +448321,Transportation,Transportation +439716,Transportation,Transportation +432046,Transportation,Transportation +432045,Transportation,Transportation +432044,Transportation,Transportation +432043,Transportation,Transportation +432042,Transportation,Transportation +432041,Transportation,Transportation +432040,Transportation,Transportation +432039,Transportation,Transportation +429678,Transportation,Transportation +429677,Transportation,Transportation +429647,Transportation,Transportation +429646,Transportation,Transportation +427674,Transportation,Transportation +427673,Transportation,Transportation +427671,Transportation,Transportation +427670,Transportation,Transportation +427526,Transportation,Transportation +427524,Transportation,Transportation +427523,Transportation,Transportation +427402,Transportation,Transportation +427270,Transportation,Transportation +427269,Transportation,Transportation +426779,Transportation,Transportation +426778,Transportation,Transportation +426776,Transportation,Transportation +425750,Transportation,Transportation +425041,Transportation,Transportation +424943,Transportation,Transportation +424939,Transportation,Transportation +424937,Transportation,Transportation +424229,Transportation,Transportation +424224,Transportation,Transportation +424223,Transportation,Transportation +419734,Transportation,Transportation +419731,Transportation,Transportation +419727,Transportation,Transportation +417863,Transportation,Transportation +417294,Transportation,Transportation +417293,Transportation,Transportation +417291,Transportation,Transportation +413568,Transportation,Transportation +413546,Transportation,Transportation +413540,Transportation,Transportation +413527,Transportation,Transportation +407003,Transportation,Transportation +403756,Transportation,Transportation +403754,Transportation,Transportation +403751,Transportation,Transportation +403746,Transportation,Transportation +399205,Transportation,Transportation +399203,Transportation,Transportation +399202,Transportation,Transportation +395467,Transportation,Transportation +395466,Transportation,Transportation +376287,Transportation,Transportation +376286,Transportation,Transportation +376285,Transportation,Transportation +376284,Transportation,Transportation +376283,Transportation,Transportation +376282,Transportation,Transportation +376281,Transportation,Transportation +376280,Transportation,Transportation +376279,Transportation,Transportation +376278,Transportation,Transportation +376277,Transportation,Transportation +376276,Transportation,Transportation +376274,Transportation,Transportation +376273,Transportation,Transportation +376272,Transportation,Transportation +376271,Transportation,Transportation +372973,Transportation,Transportation +372971,Transportation,Transportation +372970,Transportation,Transportation +372968,Transportation,Transportation +372966,Transportation,Transportation +365987,Transportation,Transportation +363628,Transportation,Transportation +363627,Transportation,Transportation +360703,Transportation,Transportation +360702,Transportation,Transportation +542308,Transportation,Transportation +542307,Transportation,Transportation +539841,Transportation,Transportation +539839,Transportation,Transportation +539837,Transportation,Transportation +533877,Transportation,Transportation +533876,Transportation,Transportation +533875,Transportation,Transportation +533874,Transportation,Transportation +533871,Transportation,Transportation +530232,Transportation,Transportation +530031,Transportation,Transportation +523566,Transportation,Transportation +519884,Transportation,Transportation +518448,Transportation,Transportation +516132,Transportation,Transportation +512070,Transportation,Transportation +511744,Transportation,Transportation +511567,Transportation,Transportation +511566,Transportation,Transportation +510018,Transportation,Transportation +509919,Transportation,Transportation +509777,Transportation,Transportation +508642,Transportation,Transportation +506926,Transportation,Transportation +506499,Transportation,Transportation +504427,Transportation,Transportation +500785,Transportation,Transportation +497287,Transportation,Transportation +497101,Transportation,Transportation +489137,Transportation,Transportation +488478,Transportation,Transportation +486160,Transportation,Transportation +485963,Transportation,Transportation +485802,Transportation,Transportation +485761,Transportation,Transportation +485646,Transportation,Transportation +485569,Transportation,Transportation +485527,Transportation,Transportation +485407,Transportation,Transportation +484977,Transportation,Transportation +484975,Transportation,Transportation +484511,Transportation,Transportation +484508,Transportation,Transportation +483657,Transportation,Transportation +483656,Transportation,Transportation +483655,Transportation,Transportation +483654,Transportation,Transportation +483653,Transportation,Transportation +483652,Transportation,Transportation +483511,Transportation,Transportation +483509,Transportation,Transportation +483468,Transportation,Transportation +483466,Transportation,Transportation +483465,Transportation,Transportation +483464,Transportation,Transportation +483463,Transportation,Transportation +483462,Transportation,Transportation +483461,Transportation,Transportation +483460,Transportation,Transportation +483145,Transportation,Transportation +483077,Transportation,Transportation +483076,Transportation,Transportation +483025,Transportation,Transportation +482947,Transportation,Transportation +482946,Transportation,Transportation +482945,Transportation,Transportation +482912,Transportation,Transportation +482911,Transportation,Transportation +482910,Transportation,Transportation +482878,Transportation,Transportation +482877,Transportation,Transportation +482876,Transportation,Transportation +482831,Transportation,Transportation +237989,Health,Health +280913,Security,Security +280909,Security,Security +355758,Security,Security +296659,Security,Security +283469,Security,Security +282511,Security,Security +227286,Energy,Energy +227276,Energy,Energy +294989,Health,Health +238349,Employment and Training,Employment and Training +222372,Employment and Training,Employment and Training +264772,Employment and Training,Employment and Training +258508,Employment and Training,Employment and Training +255309,Employment and Training,Employment and Training +222372,Labour,Labour +264772,Labour,Labour +258508,Labour,Labour +256769,Labour,Labour +255309,Labour,Labour +238989,Labour,Labour +510438,Privacy and Access to Information,Privacy and Access to Information +504202,Privacy and Access to Information,Privacy and Access to Information +341121,Privacy and Access to Information,Privacy and Access to Information +230349,Economic Development,Economic Development +230348,Economic Development,Economic Development +412021,Industry,Industry +400204,Industry,Industry +390980,Industry,Industry +390572,Industry,Industry +390570,Industry,Industry +387276,Industry,Industry +368662,Industry,Industry +348926,Industry,Industry +348925,Industry,Industry +331649,Industry,Industry +331648,Industry,Industry +327238,Industry,Industry +327235,Industry,Industry +327232,Industry,Industry +262109,Industry,Industry +438770,Industry,Industry +438768,Industry,Industry +422846,Industry,Industry +422840,Industry,Industry +534585,Labour,Labour +489925,Labour,Labour +222508,Labour,Labour +407667,Government Procurement,Government Procurement +245463,Government Procurement,Government Procurement +327651,Government Procurement,Government Procurement +504521,Budget,Budget +504517,Budget,Budget +276352,Budget,Budget +228011,Budget,Budget +327326,Budget,Budget +327325,Budget,Budget +506812,Budget,Budget +504542,Budget,Budget +504541,Budget,Budget +504538,Budget,Budget +504536,Budget,Budget +504535,Budget,Budget +504534,Budget,Budget +246731,Pensions,Pensions +224808,Pensions,Pensions +377220,Pensions,Pensions +335116,Pensions,Pensions +331909,Pensions,Pensions +249217,Pensions,Pensions +349455,Sports,Sports +335116,Sports,Sports +249217,Sports,Sports +246749,Sports,Sports +246731,Sports,Sports +331909,Taxation and Finance,Taxation and Finance +368082,Taxation and Finance,Taxation and Finance +224808,Taxation and Finance,Taxation and Finance +349461,Taxation and Finance,Taxation and Finance +349458,Taxation and Finance,Taxation and Finance +349456,Taxation and Finance,Taxation and Finance +325464,Taxation and Finance,Taxation and Finance +354200,Taxation and Finance,Taxation and Finance +224288,Taxation and Finance,Taxation and Finance +224034,Health,Health +230829,Budget,Budget +324461,Budget,Budget +450494,Budget,Budget +223205,Budget,Budget +272833,Budget,Budget +272831,Budget,Budget +255509,Budget,Budget +223211,Economic Development,Economic Development +385281,Economic Development,Economic Development +354094,Economic Development,Economic Development +464322,Economic Development,Economic Development +354095,Economic Development,Economic Development +242172,Economic Development,Economic Development +480853,Economic Development,Economic Development +406759,Economic Development,Economic Development +233397,Economic Development,Economic Development +223227,Economic Development,Economic Development +230414,Budget,Budget +223272,Budget,Budget +382975,Budget,Budget +376704,Budget,Budget +353834,Budget,Budget +335940,Budget,Budget +273454,Budget,Budget +415897,Constitutional Issues,Constitutional Issues +405296,Constitutional Issues,Constitutional Issues +223272,Constitutional Issues,Constitutional Issues +335940,Constitutional Issues,Constitutional Issues +296734,Constitutional Issues,Constitutional Issues +273453,Constitutional Issues,Constitutional Issues +446907,Budget,Budget +368153,Budget,Budget +229094,Budget,Budget +229093,Budget,Budget +229092,Budget,Budget +229091,Budget,Budget +229090,Budget,Budget +229089,Budget,Budget +368150,Budget,Budget +351440,Budget,Budget +340357,Budget,Budget +319036,Budget,Budget +283352,Budget,Budget +283350,Budget,Budget +242999,Budget,Budget +446911,Budget,Budget +446910,Budget,Budget +446909,Budget,Budget +403564,Housing,Housing +403541,Housing,Housing +261200,Housing,Housing +258351,Housing,Housing +243000,Housing,Housing +242999,Housing,Housing +242998,Housing,Housing +242997,Housing,Housing +242996,Housing,Housing +229094,Housing,Housing +229093,Housing,Housing +229092,Housing,Housing +229091,Housing,Housing +229090,Housing,Housing +229089,Housing,Housing +223299,Housing,Housing +400833,Housing,Housing +400832,Housing,Housing +399417,Housing,Housing +393759,Housing,Housing +393758,Housing,Housing +393756,Housing,Housing +393755,Housing,Housing +392043,Housing,Housing +392004,Housing,Housing +382434,Housing,Housing +382432,Housing,Housing +382426,Housing,Housing +382423,Housing,Housing +380175,Housing,Housing +377453,Housing,Housing +377452,Housing,Housing +377451,Housing,Housing +377448,Housing,Housing +377446,Housing,Housing +377445,Housing,Housing +377444,Housing,Housing +368153,Housing,Housing +368152,Housing,Housing +368151,Housing,Housing +368150,Housing,Housing +368149,Housing,Housing +368148,Housing,Housing +366703,Housing,Housing +364385,Housing,Housing +364384,Housing,Housing +364383,Housing,Housing +364382,Housing,Housing +358232,Housing,Housing +358230,Housing,Housing +358229,Housing,Housing +358228,Housing,Housing +358226,Housing,Housing +358222,Housing,Housing +356296,Housing,Housing +356295,Housing,Housing +356294,Housing,Housing +356292,Housing,Housing +356289,Housing,Housing +356286,Housing,Housing +356283,Housing,Housing +351448,Housing,Housing +351442,Housing,Housing +351440,Housing,Housing +344158,Housing,Housing +340358,Housing,Housing +340357,Housing,Housing +340355,Housing,Housing +340354,Housing,Housing +335361,Housing,Housing +335359,Housing,Housing +335358,Housing,Housing +335356,Housing,Housing +331485,Housing,Housing +331484,Housing,Housing +327720,Housing,Housing +327718,Housing,Housing +327716,Housing,Housing +327714,Housing,Housing +327710,Housing,Housing +327706,Housing,Housing +319038,Housing,Housing +319036,Housing,Housing +311246,Housing,Housing +311242,Housing,Housing +311241,Housing,Housing +311240,Housing,Housing +311239,Housing,Housing +311238,Housing,Housing +311237,Housing,Housing +299014,Housing,Housing +299013,Housing,Housing +299012,Housing,Housing +299011,Housing,Housing +299009,Housing,Housing +283352,Housing,Housing +283351,Housing,Housing +283350,Housing,Housing +266449,Housing,Housing +261205,Housing,Housing +261204,Housing,Housing +261202,Housing,Housing +261201,Housing,Housing +496178,Housing,Housing +480865,Housing,Housing +467564,Housing,Housing +467561,Housing,Housing +467557,Housing,Housing +467554,Housing,Housing +467542,Housing,Housing +467541,Housing,Housing +467538,Housing,Housing +467535,Housing,Housing +460696,Housing,Housing +460193,Housing,Housing +458701,Housing,Housing +458697,Housing,Housing +458696,Housing,Housing +455793,Housing,Housing +454932,Housing,Housing +454922,Housing,Housing +454921,Housing,Housing +454920,Housing,Housing +454919,Housing,Housing +454918,Housing,Housing +454917,Housing,Housing +446911,Housing,Housing +446910,Housing,Housing +446909,Housing,Housing +446908,Housing,Housing +446907,Housing,Housing +440171,Housing,Housing +440170,Housing,Housing +440169,Housing,Housing +433216,Housing,Housing +433214,Housing,Housing +433212,Housing,Housing +431838,Housing,Housing +429675,Housing,Housing +429674,Housing,Housing +422724,Housing,Housing +422723,Housing,Housing +422722,Housing,Housing +419932,Housing,Housing +416089,Housing,Housing +416086,Housing,Housing +416084,Housing,Housing +416081,Housing,Housing +416079,Housing,Housing +416074,Housing,Housing +412582,Housing,Housing +403569,Housing,Housing +230195,Budget,Budget +223310,Budget,Budget +376986,Budget,Budget +335587,Budget,Budget +324447,Budget,Budget +273051,Budget,Budget +405770,Constitutional Issues,Constitutional Issues +435052,Constitutional Issues,Constitutional Issues +378224,Constitutional Issues,Constitutional Issues +354098,Constitutional Issues,Constitutional Issues +341118,Constitutional Issues,Constitutional Issues +335587,Constitutional Issues,Constitutional Issues +296290,Constitutional Issues,Constitutional Issues +273051,Constitutional Issues,Constitutional Issues +236891,Constitutional Issues,Constitutional Issues +223310,Constitutional Issues,Constitutional Issues +223384,Taxation and Finance,Taxation and Finance +541815,Taxation and Finance,Taxation and Finance +519196,Taxation and Finance,Taxation and Finance +516752,Taxation and Finance,Taxation and Finance +254809,Taxation and Finance,Taxation and Finance +249752,Taxation and Finance,Taxation and Finance +236856,Taxation and Finance,Taxation and Finance +223515,Taxation and Finance,Taxation and Finance +374238,Taxation and Finance,Taxation and Finance +374236,Taxation and Finance,Taxation and Finance +343298,Taxation and Finance,Taxation and Finance +343297,Taxation and Finance,Taxation and Finance +327541,Taxation and Finance,Taxation and Finance +539481,Taxation and Finance,Taxation and Finance +536641,Taxation and Finance,Taxation and Finance +533406,Taxation and Finance,Taxation and Finance +533405,Taxation and Finance,Taxation and Finance +533404,Taxation and Finance,Taxation and Finance +533403,Taxation and Finance,Taxation and Finance +533400,Taxation and Finance,Taxation and Finance +533398,Taxation and Finance,Taxation and Finance +531263,Taxation and Finance,Taxation and Finance +530589,Taxation and Finance,Taxation and Finance +530588,Taxation and Finance,Taxation and Finance +527565,Taxation and Finance,Taxation and Finance +227289,Constitutional Issues,Constitutional Issues +227287,Education,Education +227281,Education,Education +227280,Education,Education +227287,Health,Health +227284,Health,Health +227294,Health,Health +227289,Health,Health +227292,Taxation and Finance,Taxation and Finance +227290,Taxation and Finance,Taxation and Finance +391485,Climate,Climate +391469,Climate,Climate +372715,Climate,Climate +372709,Climate,Climate +273593,Climate,Climate +439132,Climate,Climate +439129,Climate,Climate +439124,Climate,Climate +439120,Climate,Climate +439104,Climate,Climate +439101,Climate,Climate +434246,Climate,Climate +433733,Climate,Climate +432946,Climate,Climate +432937,Climate,Climate +223583,Economic Development,Economic Development +338617,Economic Development,Economic Development +327530,Economic Development,Economic Development +281010,Economic Development,Economic Development +281008,Economic Development,Economic Development +250410,Economic Development,Economic Development +250409,Economic Development,Economic Development +244598,Economic Development,Economic Development +244598,International Trade,International Trade +519750,Research and Development,Research and Development +516623,Research and Development,Research and Development +378313,Research and Development,Research and Development +376613,Research and Development,Research and Development +376606,Research and Development,Research and Development +376599,Research and Development,Research and Development +376593,Research and Development,Research and Development +374912,Research and Development,Research and Development +373165,Research and Development,Research and Development +373163,Research and Development,Research and Development +369189,Research and Development,Research and Development +369186,Research and Development,Research and Development +369077,Research and Development,Research and Development +369062,Research and Development,Research and Development +369059,Research and Development,Research and Development +362369,Research and Development,Research and Development +362366,Research and Development,Research and Development +362363,Research and Development,Research and Development +362355,Research and Development,Research and Development +361213,Research and Development,Research and Development +361205,Research and Development,Research and Development +357298,Research and Development,Research and Development +356426,Research and Development,Research and Development +356423,Research and Development,Research and Development +356418,Research and Development,Research and Development +354092,Research and Development,Research and Development +351701,Research and Development,Research and Development +347152,Research and Development,Research and Development +343842,Research and Development,Research and Development +343840,Research and Development,Research and Development +343836,Research and Development,Research and Development +342020,Research and Development,Research and Development +338158,Research and Development,Research and Development +338154,Research and Development,Research and Development +338152,Research and Development,Research and Development +338151,Research and Development,Research and Development +335820,Research and Development,Research and Development +327372,Research and Development,Research and Development +327361,Research and Development,Research and Development +325085,Research and Development,Research and Development +325083,Research and Development,Research and Development +310530,Research and Development,Research and Development +310527,Research and Development,Research and Development +310524,Research and Development,Research and Development +310511,Research and Development,Research and Development +296907,Research and Development,Research and Development +291080,Research and Development,Research and Development +282353,Research and Development,Research and Development +282349,Research and Development,Research and Development +282334,Research and Development,Research and Development +282292,Research and Development,Research and Development +264189,Research and Development,Research and Development +244833,Research and Development,Research and Development +244831,Research and Development,Research and Development +223588,Research and Development,Research and Development +514015,Research and Development,Research and Development +512580,Research and Development,Research and Development +512579,Research and Development,Research and Development +510250,Research and Development,Research and Development +510248,Research and Development,Research and Development +510240,Research and Development,Research and Development +510239,Research and Development,Research and Development +510236,Research and Development,Research and Development +510235,Research and Development,Research and Development +507451,Research and Development,Research and Development +507447,Research and Development,Research and Development +507444,Research and Development,Research and Development +503893,Research and Development,Research and Development +500951,Research and Development,Research and Development +500949,Research and Development,Research and Development +500705,Research and Development,Research and Development +500704,Research and Development,Research and Development +500703,Research and Development,Research and Development +500702,Research and Development,Research and Development +498084,Research and Development,Research and Development +498078,Research and Development,Research and Development +498076,Research and Development,Research and Development +498074,Research and Development,Research and Development +497595,Research and Development,Research and Development +495458,Research and Development,Research and Development +495452,Research and Development,Research and Development +495448,Research and Development,Research and Development +495444,Research and Development,Research and Development +494561,Research and Development,Research and Development +494559,Research and Development,Research and Development +492524,Research and Development,Research and Development +492519,Research and Development,Research and Development +492517,Research and Development,Research and Development +492515,Research and Development,Research and Development +487039,Research and Development,Research and Development +483930,Research and Development,Research and Development +479868,Research and Development,Research and Development +479303,Research and Development,Research and Development +474536,Research and Development,Research and Development +472750,Research and Development,Research and Development +472719,Research and Development,Research and Development +471718,Research and Development,Research and Development +471717,Research and Development,Research and Development +471716,Research and Development,Research and Development +470743,Research and Development,Research and Development +470740,Research and Development,Research and Development +470227,Research and Development,Research and Development +467427,Research and Development,Research and Development +467425,Research and Development,Research and Development +467423,Research and Development,Research and Development +467421,Research and Development,Research and Development +467415,Research and Development,Research and Development +467412,Research and Development,Research and Development +467410,Research and Development,Research and Development +467408,Research and Development,Research and Development +467123,Research and Development,Research and Development +467109,Research and Development,Research and Development +467106,Research and Development,Research and Development +467089,Research and Development,Research and Development +467088,Research and Development,Research and Development +467018,Research and Development,Research and Development +464912,Research and Development,Research and Development +464907,Research and Development,Research and Development +464905,Research and Development,Research and Development +464904,Research and Development,Research and Development +464903,Research and Development,Research and Development +464899,Research and Development,Research and Development +464774,Research and Development,Research and Development +464769,Research and Development,Research and Development +464757,Research and Development,Research and Development +463936,Research and Development,Research and Development +462526,Research and Development,Research and Development +462524,Research and Development,Research and Development +462523,Research and Development,Research and Development +462521,Research and Development,Research and Development +462520,Research and Development,Research and Development +462518,Research and Development,Research and Development +461505,Research and Development,Research and Development +461503,Research and Development,Research and Development +459303,Research and Development,Research and Development +459302,Research and Development,Research and Development +458472,Research and Development,Research and Development +458471,Research and Development,Research and Development +458469,Research and Development,Research and Development +456981,Research and Development,Research and Development +456574,Research and Development,Research and Development +454757,Research and Development,Research and Development +452836,Research and Development,Research and Development +452833,Research and Development,Research and Development +447994,Research and Development,Research and Development +447990,Research and Development,Research and Development +447985,Research and Development,Research and Development +447979,Research and Development,Research and Development +447975,Research and Development,Research and Development +447942,Research and Development,Research and Development +445231,Research and Development,Research and Development +445224,Research and Development,Research and Development +445222,Research and Development,Research and Development +442216,Research and Development,Research and Development +442212,Research and Development,Research and Development +442207,Research and Development,Research and Development +442168,Research and Development,Research and Development +439815,Research and Development,Research and Development +437967,Research and Development,Research and Development +437964,Research and Development,Research and Development +437960,Research and Development,Research and Development +437958,Research and Development,Research and Development +436072,Research and Development,Research and Development +435226,Research and Development,Research and Development +434043,Research and Development,Research and Development +434038,Research and Development,Research and Development +434037,Research and Development,Research and Development +434028,Research and Development,Research and Development +434024,Research and Development,Research and Development +430746,Research and Development,Research and Development +428257,Research and Development,Research and Development +426304,Research and Development,Research and Development +426298,Research and Development,Research and Development +426289,Research and Development,Research and Development +425990,Research and Development,Research and Development +425989,Research and Development,Research and Development +425988,Research and Development,Research and Development +425986,Research and Development,Research and Development +425985,Research and Development,Research and Development +425977,Research and Development,Research and Development +425974,Research and Development,Research and Development +425969,Research and Development,Research and Development +213327,Immigration,Immigration +213332,Taxation and Finance,Taxation and Finance +213333,Taxation and Finance,Taxation and Finance +215529,Government Procurement,Government Procurement +215529,Small Business,Small Business +263689,Government Procurement,Government Procurement +263689,Defence,Defence +223532,Employment and Training,Employment and Training +221347,Energy,Energy +213410,Environment,Environment +401393,Defence,Defence +401393,Government Procurement,Government Procurement +320210,Regional Development,Regional Development +308009,Research and Development,Research and Development +219907,Taxation and Finance,Taxation and Finance +219907,Health,Health +217427,Industry,Industry +217427,Regional Development,Regional Development +218568,Health,Health +218568,Research and Development,Research and Development +213687,Budget,Budget +213707,Budget,Budget +218069,Agriculture,Agriculture +233854,Industry,Industry +479532,Research and Development,Research and Development +517925,Constitutional Issues,Constitutional Issues +376705,Education,Education +471314,Industry,Industry +464700,Infrastructure,Infrastructure +407916,Consumer Issues,Consumer Issues +525413,Health,Health +499222,International Trade,International Trade +534752,Justice and Law Enforcement,Justice and Law Enforcement +511650,Religion,Religion +406905,Tourism,Tourism +223617,Financial Institutions,Financial Institutions +213927,Transportation,Transportation +220829,Energy,Energy +313892,Research and Development,Research and Development +218507,Financial Institutions,Financial Institutions +246730,Agriculture,Agriculture +214888,Fisheries,Fisheries +415731,Economic Development,Economic Development +415734,Economic Development,Economic Development +222907,Financial Institutions,Financial Institutions +224248,Defence,Défense +234112,Environment,Environment +229811,Consumer Issues,Consumer Issues +229690,Justice and Law Enforcement,Justice and Law Enforcement +229811,Small Business,Small Business +326340,Regional Development,Regional Development +221467,Energy,Energy +384556,Forestry,Forestry +233710,Research and Development,Research and Development +223586,Economic Development,Economic Development +223586,Energy,Energy +223586,Environment,Environment +223620,Fisheries,Fisheries +223569,Regional Development,Regional Development +224065,International Trade,International Trade +287029,Industry,Industry +315620,International Relations,International Relations +258390,Taxation and Finance,Taxation and Finance +420455,Small Business,Small Business +230194,Defence,Defence +232612,Government Procurement,Government Procurement +230194,Industry,Industry +340051,Research and Development,Research and Development +286880,Taxation and Finance,Taxation and Finance +215927,Industry,Industry +246269,Immigration,Immigration +335012,Defence,Defence +298290,Government Procurement,Government Procurement +318217,Industry,Industry +215968,Economic Development,Economic Development +215969,Economic Development,Economic Development +215970,Economic Development,Economic Development +303516,Industry,Industry +216096,Pensions,Pensions +254890,Taxation and Finance,Taxation and Finance +216097,Pensions,Pensions +254889,Taxation and Finance,Taxation and Finance +216098,Pensions,Pensions +216098,Taxation and Finance,Taxation and Finance +254890,Pensions,Pensions +216099,Taxation and Finance,Taxation and Finance +216196,Security,Security +448618,Economic Development,Economic Development +250611,Energy,Energy +310440,Environment,Environment +413022,Consumer Issues,Consumer Issues +403824,Budget,Budget +228833,Defence,Defence +228833,Industry,Industry +228833,Government Procurement,Government Procurement +467124,Budget,Budget +216454,Consumer Issues,Consumer Issues +470216,Budget,Budget +395584,Budget,Budget +328035,Financial Institutions,Financial Institutions +217148,Consumer Issues,Consumer Issues +217649,Budget,Budget +217667,Budget,Budget +217669,Budget,Budget +226996,Budget,Budget +310066,Budget,Budget +217695,Budget,Budget +217731,Consumer Issues,Consumer Issues +230064,Environment,Environment +230064,Health,Health +245015,Industry,Industry +217731,Internal Trade,Internal Trade +245015,International Trade,International Trade +218030,Agriculture,Agriculture +218227,Economic Development,Economic Development +218228,Sports,Sports +218347,Privacy and Access to Information,Privacy and Access to Information +450873,Economic Development,Economic Development +218987,Security,Security +249266,Immigration,Immigration +220948,Agriculture,Agriculture +220948,International Trade,International Trade +223313,International Trade,International Trade +219408,Tourism,Tourism +334071,Taxation and Finance,Taxation and Finance +250301,International Trade,International Trade +250301,Economic Development,Economic Development +231611,Agriculture,Agriculture +267772,Regional Development,Regional Development +491766,Agriculture,Agriculture +544800,International Trade,International Trade +230769,International Trade,International Trade +220833,Small Business,Small Business +418768,Taxation and Finance,Impôts et finances +246769,Research and Development,Recherche et développement +220067,Environment,Environment +220067,Energy,Energy +220067,Industry,Industry +220088,Transportation,Transportation +232391,Industry,Industry +283470,Security,Security +232791,Taxation and Finance,Taxation and Finance +232791,Transportation,Transportation +237370,Climate,Climat +237370,Environment,Environnement +233149,Industry,Industry +233049,Security,Security +227161,Health,Health +223553,Official Languages,Official Languages +431405,Health,Health +434283,Small Business,Small Business +237270,Research and Development,Research and Development +496495,Financial Institutions,Financial Institutions +424980,Health,Health +230670,Agriculture,Agriculture +251427,Health,Health +251430,Research and Development,Research and Development +466318,Health,Health +340426,Health,Health +499879,Industry,Industry +223102,International Trade,International Trade +223317,International Trade,International Trade +251434,Agriculture,Agriculture +482546,Budget,Budget +442767,Economic Development,Economic Development +417253,Employment and Training,Employment and Training +470617,Environment,Environment +417021,Fisheries,Fisheries +442765,Industry,Industry +230675,International Trade,International Trade +457723,Regional Development,Regional Development +413914,Research and Development,Research and Development +410155,Taxation and Finance,Taxation and Finance +432327,Privacy and Access to Information,Privacy and Access to Information +537573,International Trade,International Trade +223544,Transportation,Transportation +372806,Industry,Industry +306790,Taxation and Finance,Taxation and Finance +221088,Fisheries,Fisheries +221088,Budget,Budget +221107,Sports,Sports +491742,Agriculture,Agriculture +378781,Consumer Issues,Consumer Issues +378781,Health,Health +308613,Internal Trade,Internal Trade +454299,International Trade,International Trade +272393,Climate,Climate +335607,Government Procurement,Government Procurement +225428,Government Procurement,Government Procurement +260135,Government Procurement,Government Procurement +225655,Agriculture,Agriculture +225655,International Trade,International Trade +228021,Health,Health +224691,International Trade,Commerce international +228634,Forestry,Foresterie +347920,Health,Health +233671,Agriculture,Agriculture +264691,Economic Development,Economic Development +319429,Employment and Training,Employment and Training +347619,Environment,Environment +233671,Fisheries,Fisheries +264691,Industry,Industry +353410,International Trade,International Trade +277711,Regional Development,Regional Development +353410,Research and Development,Research and Development +254327,Government Procurement,Government Procurement +222007,Pensions,Pensions +225690,Defence,Defence +225690,Economic Development,Economic Development +233556,Immigration,Immigration +222050,Immigration,Immigration +533875,Consumer Issues,Consumer Issues +372970,Economic Development,Economic Development +424939,Environment,Environment +533875,Health,Health +372968,Infrastructure,Infrastructure +372973,International Relations,International Relations +427524,International Trade,International Trade +372970,Security,Security +372970,Taxation and Finance,Taxation and Finance +533875,Tourism,Tourism +482830,Transportation,Transportation +222570,Health,Health +229815,Industry,Industry +230349,International Trade,International Trade +281969,Security,Security +227291,Energy,Energy +266211,Health,Health +222372,Budget,Budget +238989,Employment and Training,Employment and Training +238349,Labour,Labour +222607,Security,Security +222409,Privacy and Access to Information,Privacy and Access to Information +230351,Economic Development,Economic Development +412022,Industry,Industry +222507,Labour,Labour +365952,Government Procurement,Government Procurement +259392,Government Procurement,Government Procurement +504523,Budget,Budget +222647,Economic Development,Economic Development +246749,Pensions,Pensions +368082,Sports,Sports +349455,Taxation and Finance,Taxation and Finance +333909,Taxation and Finance,Taxation and Finance +244618,Taxation and Finance,Taxation and Finance +224035,Health,Health +223130,International Trade,International Trade +223156,Budget,Budget +335365,Budget,Budget +312557,Economic Development,Economic Development +223222,Economic Development,Economic Development +223223,Economic Development,Economic Development +223225,Economic Development,Economic Development +354097,Economic Development,Economic Development +273453,Budget,Budget +435704,Constitutional Issues,Constitutional Issues +223285,Budget,Budget +223281,Housing,Housing +446908,Budget,Budget +403568,Housing,Housing +273050,Budget,Budget +416344,Constitutional Issues,Constitutional Issues +223330,Taxation and Finance,Taxation and Finance +223332,Consumer Issues,Consumer Issues +236969,Housing,Housing +273507,Taxation and Finance,Taxation and Finance +223386,Budget,Budget +223417,International Trade,International Trade +223417,Security,Security +223424,Security,Security +223424,International Trade,International Trade +223430,International Trade,International Trade +223430,Security,Security +223433,International Trade,International Trade +223433,Security,Security +223439,Internal Trade,Internal Trade +223439,International Trade,International Trade +223439,Security,Security +527562,Taxation and Finance,Taxation and Finance +227294,Constitutional Issues,Constitutional Issues +227294,Education,Education +227288,Health,Health +227294,Taxation and Finance,Taxation and Finance +432936,Climate,Climate +223572,Research and Development,Research and Development +223576,Transportation,Transportation +226709,Economic Development,Economic Development +250410,International Trade,International Trade +520077,Research and Development,Research and Development +400435,International Relations,International Relations +223608,Labour,Labour +223608,Immigration,Immigration +223620,Transportation,Transportation +223650,Budget,Budget +223651,Budget,Budget +424661,Research and Development,Research and Development +424660,Research and Development,Research and Development +424659,Research and Development,Research and Development +424658,Research and Development,Research and Development +424657,Research and Development,Research and Development +424656,Research and Development,Research and Development +424655,Research and Development,Research and Development +424654,Research and Development,Research and Development +424653,Research and Development,Research and Development +424652,Research and Development,Research and Development +423908,Research and Development,Research and Development +423875,Research and Development,Research and Development +423872,Research and Development,Research and Development +423870,Research and Development,Research and Development +423869,Research and Development,Research and Development +422564,Research and Development,Research and Development +422560,Research and Development,Research and Development +422558,Research and Development,Research and Development +422557,Research and Development,Research and Development +422556,Research and Development,Research and Development +422555,Research and Development,Research and Development +422554,Research and Development,Research and Development +422553,Research and Development,Research and Development +422552,Research and Development,Research and Development +422548,Research and Development,Research and Development +422547,Research and Development,Research and Development +422524,Research and Development,Research and Development +422523,Research and Development,Research and Development +422522,Research and Development,Research and Development +422521,Research and Development,Research and Development +419719,Research and Development,Research and Development +419717,Research and Development,Research and Development +419715,Research and Development,Research and Development +419710,Research and Development,Research and Development +419659,Research and Development,Research and Development +419656,Research and Development,Research and Development +419653,Research and Development,Research and Development +418256,Research and Development,Research and Development +418248,Research and Development,Research and Development +414663,Research and Development,Research and Development +414134,Research and Development,Research and Development +414133,Research and Development,Research and Development +413444,Research and Development,Research and Development +410387,Research and Development,Research and Development +410386,Research and Development,Research and Development +410373,Research and Development,Research and Development +408251,Research and Development,Research and Development +408250,Research and Development,Research and Development +406897,Research and Development,Research and Development +406895,Research and Development,Research and Development +406894,Research and Development,Research and Development +406893,Research and Development,Research and Development +406891,Research and Development,Research and Development +406890,Research and Development,Research and Development +406889,Research and Development,Research and Development +406886,Research and Development,Research and Development +406882,Research and Development,Research and Development +405830,Research and Development,Research and Development +400862,Research and Development,Research and Development +400856,Research and Development,Research and Development +399204,Research and Development,Research and Development +399201,Research and Development,Research and Development +399199,Research and Development,Research and Development +397149,Research and Development,Research and Development +397148,Research and Development,Research and Development +397146,Research and Development,Research and Development +397145,Research and Development,Research and Development +397142,Research and Development,Research and Development +397140,Research and Development,Research and Development +397138,Research and Development,Research and Development +394281,Research and Development,Research and Development +394277,Research and Development,Research and Development +394275,Research and Development,Research and Development +394273,Research and Development,Research and Development +392911,Research and Development,Research and Development +392909,Research and Development,Research and Development +392908,Research and Development,Research and Development +391858,Research and Development,Research and Development +391857,Research and Development,Research and Development +388283,Research and Development,Research and Development +388277,Research and Development,Research and Development +388270,Research and Development,Research and Development +388259,Research and Development,Research and Development +388222,Research and Development,Research and Development +388214,Research and Development,Research and Development +388208,Research and Development,Research and Development +388205,Research and Development,Research and Development +388203,Research and Development,Research and Development +388197,Research and Development,Research and Development +388192,Research and Development,Research and Development +388185,Research and Development,Research and Development +388159,Research and Development,Research and Development +385691,Research and Development,Research and Development +385689,Research and Development,Research and Development +385426,Research and Development,Research and Development +385418,Research and Development,Research and Development +384075,Research and Development,Research and Development +381518,Research and Development,Research and Development +540851,Research and Development,Research and Development +526124,Research and Development,Research and Development +526113,Research and Development,Research and Development +526087,Research and Development,Research and Development +526354,International Relations,International Relations +526335,International Relations,International Relations +336016,International Relations,International Relations +324931,International Relations,International Relations +321704,International Relations,International Relations +318989,International Relations,International Relations +318986,International Relations,International Relations +296389,International Relations,International Relations +286176,International Relations,International Relations +286175,International Relations,International Relations +273551,International Relations,International Relations +273549,International Relations,International Relations +269503,International Relations,International Relations +269500,International Relations,International Relations +269496,International Relations,International Relations +269493,International Relations,International Relations +244620,International Relations,International Relations +241049,International Relations,International Relations +233211,International Relations,International Relations +233210,International Relations,International Relations +233209,International Relations,International Relations +224850,International Relations,International Relations +224849,International Relations,International Relations +224848,International Relations,International Relations +224847,International Relations,International Relations +374902,International Relations,International Relations +374901,International Relations,International Relations +363534,International Relations,International Relations +347253,International Relations,International Relations +347252,International Relations,International Relations +341073,International Relations,International Relations +338625,International Relations,International Relations +518916,International Relations,International Relations +486926,International Relations,International Relations +452212,International Relations,International Relations +449666,International Relations,International Relations +447146,International Relations,International Relations +445346,International Relations,International Relations +435309,International Relations,International Relations +405445,International Relations,International Relations +233817,Immigration,Immigration +514325,Industry,Industry +511771,Industry,Industry +269689,Industry,Industry +264633,Industry,Industry +264630,Industry,Industry +245593,Industry,Industry +241315,Industry,Industry +241314,Industry,Industry +241313,Industry,Industry +241312,Industry,Industry +237193,Industry,Industry +237192,Industry,Industry +237191,Industry,Industry +237190,Industry,Industry +237189,Industry,Industry +233892,Industry,Industry +233891,Industry,Industry +233890,Industry,Industry +233889,Industry,Industry +227407,Industry,Industry +223676,Industry,Industry +223675,Industry,Industry +433732,Industry,Industry +353161,Industry,Industry +343757,Industry,Industry +339028,Industry,Industry +339026,Industry,Industry +296650,Industry,Industry +281429,Industry,Industry +277771,Industry,Industry +277770,Industry,Industry +467635,Industry,Industry +503662,Budget,Budget +278150,Economic Development,Economic Development +242070,Agriculture,Agriculture +231449,Agriculture,Agriculture +447760,Agriculture,Agriculture +447757,Agriculture,Agriculture +447755,Agriculture,Agriculture +447752,Agriculture,Agriculture +445748,Agriculture,Agriculture +519653,Agriculture,Agriculture +518346,Agriculture,Agriculture +511178,Agriculture,Agriculture +511176,Agriculture,Agriculture +511174,Agriculture,Agriculture +511172,Agriculture,Agriculture +511168,Agriculture,Agriculture +511166,Agriculture,Agriculture +511163,Agriculture,Agriculture +511158,Agriculture,Agriculture +511152,Agriculture,Agriculture +508918,Agriculture,Agriculture +502957,Agriculture,Agriculture +502896,Agriculture,Agriculture +502877,Agriculture,Agriculture +502876,Agriculture,Agriculture +502875,Agriculture,Agriculture +499281,Agriculture,Agriculture +491772,Agriculture,Agriculture +491768,Agriculture,Agriculture +485354,Agriculture,Agriculture +485352,Agriculture,Agriculture +485350,Agriculture,Agriculture +485348,Agriculture,Agriculture +485347,Agriculture,Agriculture +480335,Agriculture,Agriculture +480334,Agriculture,Agriculture +478218,Agriculture,Agriculture +478217,Agriculture,Agriculture +478215,Agriculture,Agriculture +478214,Agriculture,Agriculture +475285,Agriculture,Agriculture +475284,Agriculture,Agriculture +475282,Agriculture,Agriculture +475281,Agriculture,Agriculture +475280,Agriculture,Agriculture +475279,Agriculture,Agriculture +465050,Agriculture,Agriculture +462993,Agriculture,Agriculture +459896,Agriculture,Agriculture +459895,Agriculture,Agriculture +543305,Agriculture,Agriculture +543304,Agriculture,Agriculture +543301,Agriculture,Agriculture +543300,Agriculture,Agriculture +543299,Agriculture,Agriculture +543298,Agriculture,Agriculture +543296,Agriculture,Agriculture +541361,Agriculture,Agriculture +539576,Agriculture,Agriculture +536835,Agriculture,Agriculture +536825,Agriculture,Agriculture +536824,Agriculture,Agriculture +536822,Agriculture,Agriculture +536821,Agriculture,Agriculture +536820,Agriculture,Agriculture +536819,Agriculture,Agriculture +536818,Agriculture,Agriculture +536817,Agriculture,Agriculture +536816,Agriculture,Agriculture +536815,Agriculture,Agriculture +536814,Agriculture,Agriculture +536813,Agriculture,Agriculture +536812,Agriculture,Agriculture +534519,Agriculture,Agriculture +534515,Agriculture,Agriculture +531140,Agriculture,Agriculture +531139,Agriculture,Agriculture +531138,Agriculture,Agriculture +531137,Agriculture,Agriculture +531134,Agriculture,Agriculture +530614,Agriculture,Agriculture +530612,Agriculture,Agriculture +528153,Agriculture,Agriculture +528151,Agriculture,Agriculture +526026,Agriculture,Agriculture +526019,Agriculture,Agriculture +531139,International Trade,International Trade +528151,International Trade,International Trade +231449,International Trade,International Trade +543305,International Trade,International Trade +543304,International Trade,International Trade +543301,International Trade,International Trade +543300,International Trade,International Trade +543299,International Trade,International Trade +543298,International Trade,International Trade +543296,International Trade,International Trade +536824,International Trade,International Trade +536822,International Trade,International Trade +536821,International Trade,International Trade +536820,International Trade,International Trade +536819,International Trade,International Trade +536818,International Trade,International Trade +536817,International Trade,International Trade +536816,International Trade,International Trade +536815,International Trade,International Trade +536814,International Trade,International Trade +536813,International Trade,International Trade +536812,International Trade,International Trade +534515,Research and Development,Research and Development +519956,Research and Development,Research and Development +242069,Research and Development,Research and Development +256909,Research and Development,Research and Development +241409,Research and Development,Research and Development +224627,Research and Development,Research and Development +321029,Research and Development,Research and Development +306230,Research and Development,Research and Development +256911,Research and Development,Research and Development +235129,Employment and Training,Employment and Training +456814,International Trade,International Trade +454326,International Trade,International Trade +386115,International Trade,International Trade +509339,International Trade,International Trade +506718,International Trade,International Trade +386115,Justice and Law Enforcement,Justice and Law Enforcement +504087,Justice and Law Enforcement,Justice and Law Enforcement +456814,Justice and Law Enforcement,Justice and Law Enforcement +333909,Housing,Housing +325464,Housing,Housing +224288,Housing,Housing +230530,Environment,Environment +230530,Mining,Mining +265830,Energy,Energy +247489,Energy,Energy +232509,Energy,Energy +232509,Environment,Environment +232489,Environment,Environment +265830,Environment,Environment +232509,International Trade,International Trade +232489,International Trade,International Trade +265830,International Trade,International Trade +232453,Energy,Energy +232452,Energy,Energy +265829,Energy,Energy +265810,Energy,Energy +264440,Energy,Energy +263531,Energy,Energy +263269,Energy,Energy +263250,Energy,Energy +244314,Energy,Energy +244313,Energy,Energy +244072,Energy,Energy +232470,Energy,Energy +232469,Energy,Energy +232455,Energy,Energy +232453,Environment,Environment +232452,Environment,Environment +265829,Environment,Environment +265810,Environment,Environment +264440,Environment,Environment +263531,Environment,Environment +263269,Environment,Environment +263250,Environment,Environment +244314,Environment,Environment +244313,Environment,Environment +244072,Environment,Environment +232470,Environment,Environment +232469,Environment,Environment +232455,Environment,Environment +232453,International Trade,International Trade +232452,International Trade,International Trade +265829,International Trade,International Trade +265810,International Trade,International Trade +264440,International Trade,International Trade +263531,International Trade,International Trade +263269,International Trade,International Trade +263250,International Trade,International Trade +244314,International Trade,International Trade +244313,International Trade,International Trade +244072,International Trade,International Trade +232470,International Trade,International Trade +232469,International Trade,International Trade +232455,International Trade,International Trade +282651,Health,Health +258190,Health,Health +314670,Budget,Budget +314669,Budget,Budget +224487,Budget,Budget +326548,Budget,Budget +326547,Budget,Budget +326546,Budget,Budget +325214,Budget,Budget +325213,Budget,Budget +325212,Budget,Budget +325211,Budget,Budget +325210,Budget,Budget +325209,Budget,Budget +325122,Budget,Budget +244426,Sports,Sports +239749,Sports,Sports +313126,Sports,Sports +276092,Sports,Sports +409849,Research and Development,Research and Development +409818,Research and Development,Research and Development +411274,Research and Development,Research and Development +410570,Research and Development,Research and Development +410564,Research and Development,Research and Development +410561,Research and Development,Research and Development +341990,Regional Development,Regional Development +341986,Regional Development,Regional Development +297470,International Trade,International Trade +463494,International Trade,International Trade +297469,International Trade,International Trade +225527,International Trade,International Trade +225027,International Trade,International Trade +338983,International Trade,International Trade +225027,Labour,Labour +377827,Environment,Environment +377826,Environment,Environment +248471,Environment,Environment +230718,Environment,Environment +225367,Environment,Environment +261290,Environment,Environment +357240,Environment,Environment +341091,Environment,Environment +341082,Environment,Environment +337579,Environment,Environment +337578,Environment,Environment +337577,Environment,Environment +309752,Environment,Environment +261290,International Development,International Development +261289,International Development,International Development +386630,International Development,International Development +381257,International Development,International Development +377828,International Development,International Development +372760,International Development,International Development +372753,International Development,International Development +361122,International Development,International Development +359736,International Development,International Development +357935,International Development,International Development +357240,International Development,International Development +357239,International Development,International Development +357237,International Development,International Development +349070,International Development,International Development +349069,International Development,International Development +341090,International Development,International Development +341089,International Development,International Development +341088,International Development,International Development +386387,International Trade,International Trade +386386,International Trade,International Trade +225528,International Trade,International Trade +352143,International Trade,International Trade +306370,International Trade,International Trade +306369,International Trade,International Trade +225528,Labour,Labour +230156,Environment,Environment +230153,Environment,Environment +294552,Environment,Environment +294551,Environment,Environment +294550,Environment,Environment +294549,Environment,Environment +261909,Research and Development,Research and Development +243109,Research and Development,Research and Development +262769,Research and Development,Research and Development +261925,Research and Development,Research and Development +261924,Research and Development,Research and Development +261922,Research and Development,Research and Development +261921,Research and Development,Research and Development +344738,Employment and Training,Employment and Training +410561,International Trade,International Trade +410555,International Trade,International Trade +411279,International Trade,International Trade +411274,International Trade,International Trade +410570,International Trade,International Trade +438693,Justice and Law Enforcement,Justice and Law Enforcement +438298,Justice and Law Enforcement,Justice and Law Enforcement +348288,Justice and Law Enforcement,Justice and Law Enforcement +347761,Justice and Law Enforcement,Justice and Law Enforcement +344957,Justice and Law Enforcement,Justice and Law Enforcement +337473,Justice and Law Enforcement,Justice and Law Enforcement +329346,Justice and Law Enforcement,Justice and Law Enforcement +329340,Justice and Law Enforcement,Justice and Law Enforcement +329339,Justice and Law Enforcement,Justice and Law Enforcement +329336,Justice and Law Enforcement,Justice and Law Enforcement +329335,Justice and Law Enforcement,Justice and Law Enforcement +329332,Justice and Law Enforcement,Justice and Law Enforcement +326240,Justice and Law Enforcement,Justice and Law Enforcement +326239,Justice and Law Enforcement,Justice and Law Enforcement +326238,Justice and Law Enforcement,Justice and Law Enforcement +326237,Justice and Law Enforcement,Justice and Law Enforcement +326236,Justice and Law Enforcement,Justice and Law Enforcement +326235,Justice and Law Enforcement,Justice and Law Enforcement +225787,Justice and Law Enforcement,Justice and Law Enforcement +225769,Justice and Law Enforcement,Justice and Law Enforcement +225767,Justice and Law Enforcement,Justice and Law Enforcement +427909,Justice and Law Enforcement,Justice and Law Enforcement +427907,Justice and Law Enforcement,Justice and Law Enforcement +427905,Justice and Law Enforcement,Justice and Law Enforcement +427904,Justice and Law Enforcement,Justice and Law Enforcement +427903,Justice and Law Enforcement,Justice and Law Enforcement +427902,Justice and Law Enforcement,Justice and Law Enforcement +427901,Justice and Law Enforcement,Justice and Law Enforcement +425193,Justice and Law Enforcement,Justice and Law Enforcement +425191,Justice and Law Enforcement,Justice and Law Enforcement +425190,Justice and Law Enforcement,Justice and Law Enforcement +395100,Justice and Law Enforcement,Justice and Law Enforcement +395099,Justice and Law Enforcement,Justice and Law Enforcement +394904,Justice and Law Enforcement,Justice and Law Enforcement +394903,Justice and Law Enforcement,Justice and Law Enforcement +389423,Justice and Law Enforcement,Justice and Law Enforcement +350378,Justice and Law Enforcement,Justice and Law Enforcement +350377,Justice and Law Enforcement,Justice and Law Enforcement +348290,Justice and Law Enforcement,Justice and Law Enforcement +348289,Justice and Law Enforcement,Justice and Law Enforcement +497498,Justice and Law Enforcement,Justice and Law Enforcement +495163,Justice and Law Enforcement,Justice and Law Enforcement +467120,Justice and Law Enforcement,Justice and Law Enforcement +467116,Justice and Law Enforcement,Justice and Law Enforcement +467107,Justice and Law Enforcement,Justice and Law Enforcement +467104,Justice and Law Enforcement,Justice and Law Enforcement +467101,Justice and Law Enforcement,Justice and Law Enforcement +467099,Justice and Law Enforcement,Justice and Law Enforcement +467097,Justice and Law Enforcement,Justice and Law Enforcement +467095,Justice and Law Enforcement,Justice and Law Enforcement +467093,Justice and Law Enforcement,Justice and Law Enforcement +467082,Justice and Law Enforcement,Justice and Law Enforcement +467078,Justice and Law Enforcement,Justice and Law Enforcement +467075,Justice and Law Enforcement,Justice and Law Enforcement +467073,Justice and Law Enforcement,Justice and Law Enforcement +467065,Justice and Law Enforcement,Justice and Law Enforcement +467061,Justice and Law Enforcement,Justice and Law Enforcement +467058,Justice and Law Enforcement,Justice and Law Enforcement +467056,Justice and Law Enforcement,Justice and Law Enforcement +467054,Justice and Law Enforcement,Justice and Law Enforcement +464185,Justice and Law Enforcement,Justice and Law Enforcement +464184,Justice and Law Enforcement,Justice and Law Enforcement +454149,Justice and Law Enforcement,Justice and Law Enforcement +454146,Justice and Law Enforcement,Justice and Law Enforcement +454145,Justice and Law Enforcement,Justice and Law Enforcement +454144,Justice and Law Enforcement,Justice and Law Enforcement +454143,Justice and Law Enforcement,Justice and Law Enforcement +452022,Justice and Law Enforcement,Justice and Law Enforcement +452021,Justice and Law Enforcement,Justice and Law Enforcement +448051,Justice and Law Enforcement,Justice and Law Enforcement +448044,Justice and Law Enforcement,Justice and Law Enforcement +448040,Justice and Law Enforcement,Justice and Law Enforcement +448037,Justice and Law Enforcement,Justice and Law Enforcement +448032,Justice and Law Enforcement,Justice and Law Enforcement +448029,Justice and Law Enforcement,Justice and Law Enforcement +448023,Justice and Law Enforcement,Justice and Law Enforcement +448021,Justice and Law Enforcement,Justice and Law Enforcement +448018,Justice and Law Enforcement,Justice and Law Enforcement +448016,Justice and Law Enforcement,Justice and Law Enforcement +448015,Justice and Law Enforcement,Justice and Law Enforcement +445629,Justice and Law Enforcement,Justice and Law Enforcement +445628,Justice and Law Enforcement,Justice and Law Enforcement +445625,Justice and Law Enforcement,Justice and Law Enforcement +445623,Justice and Law Enforcement,Justice and Law Enforcement +443588,Justice and Law Enforcement,Justice and Law Enforcement +441797,Justice and Law Enforcement,Justice and Law Enforcement +441792,Justice and Law Enforcement,Justice and Law Enforcement +440440,Justice and Law Enforcement,Justice and Law Enforcement +440437,Justice and Law Enforcement,Justice and Law Enforcement +440435,Justice and Law Enforcement,Justice and Law Enforcement +228852,Energy,Energy +272492,International Trade,International Trade +238990,Labour,Labour +226048,Labour,Labour +258510,Labour,Labour +256091,Labour,Labour +256090,Labour,Labour +256089,Labour,Labour +238992,Labour,Labour +238990,Employment and Training,Employment and Training +226048,Employment and Training,Employment and Training +258510,Employment and Training,Employment and Training +256091,Employment and Training,Employment and Training +256090,Employment and Training,Employment and Training +256089,Employment and Training,Employment and Training +238992,Employment and Training,Employment and Training +226128,Housing,Housing +226127,Housing,Housing +356719,Housing,Housing +326413,Housing,Housing +326412,Housing,Housing +326411,Budget,Budget +326411,Consumer Issues,Consumer Issues +229843,Environment,Environment +226289,Housing,Housing +226451,Housing,Housing +226450,Housing,Housing +325458,Housing,Housing +325457,Housing,Housing +325456,Housing,Housing +272075,Housing,Housing +272073,Housing,Housing +272069,Housing,Housing +226449,Housing,Housing +226448,Housing,Housing +326777,Financial Institutions,Financial Institutions +318442,Financial Institutions,Financial Institutions +279550,Financial Institutions,Financial Institutions +279549,Financial Institutions,Financial Institutions +241156,Defence,Defence +230336,Defence,Defence +241162,Defence,Defence +245462,Government Procurement,Government Procurement +230333,Government Procurement,Government Procurement +414034,Industry,Industry +343912,Pensions,Pensions +343437,Pensions,Pensions +337475,Pensions,Pensions +337474,Pensions,Pensions +331950,Pensions,Pensions +331940,Pensions,Pensions +331938,Pensions,Pensions +412215,Pensions,Pensions +411265,Pensions,Pensions +406077,Pensions,Pensions +406075,Pensions,Pensions +406071,Pensions,Pensions +387408,Pensions,Pensions +381402,Pensions,Pensions +381399,Pensions,Pensions +380070,Pensions,Pensions +378403,Pensions,Pensions +365993,Pensions,Pensions +365088,Pensions,Pensions +348529,Pensions,Pensions +346537,Pensions,Pensions +226916,Taxation and Finance,Taxation and Finance +226727,Housing,Housing +226885,Health,Health +226885,Taxation and Finance,Taxation and Finance +226885,Small Business,Small Business +226885,Sports,Sports +331631,Industry,Industry +499568,Industry,Industry +282974,Industry,Industry +282972,Industry,Industry +227216,Industry,Industry +377424,Industry,Industry +377422,Industry,Industry +377421,Industry,Industry +377420,Industry,Industry +377419,Industry,Industry +377418,Industry,Industry +377417,Industry,Industry +377416,Industry,Industry +377415,Industry,Industry +377413,Industry,Industry +377411,Industry,Industry +377410,Industry,Industry +377409,Industry,Industry +377407,Industry,Industry +349161,Industry,Industry +338676,Industry,Industry +335892,Industry,Industry +335890,Industry,Industry +335881,Industry,Industry +319182,Immigration,Immigration +502088,Immigration,Immigration +254344,Immigration,Immigration +227222,Immigration,Immigration +228670,Research and Development,Research and Development +228669,Research and Development,Research and Development +228670,Taxation and Finance,Taxation and Finance +228669,Taxation and Finance,Taxation and Finance +227337,Security,Security +443637,Security,Security +382327,Security,Security +333830,Security,Security +310475,Security,Security +227344,Education,Education +467939,Industry,Industry +459561,Industry,Industry +349008,Industry,Industry +327499,Industry,Industry +327497,Industry,Industry +321899,Industry,Industry +321895,Industry,Industry +276178,Industry,Industry +244421,Industry,Industry +435342,Industry,Industry +379308,Industry,Industry +500712,Industry,Industry +497891,Industry,Industry +237096,Climate,Climate +237094,Climate,Climate +237093,Climate,Climate +237092,Climate,Climate +237091,Climate,Climate +237090,Climate,Climate +237088,Climate,Climate +237087,Climate,Climate +237086,Climate,Climate +237085,Climate,Climate +237084,Climate,Climate +237033,Climate,Climate +237032,Climate,Climate +237031,Climate,Climate +237030,Climate,Climate +237029,Climate,Climate +237016,Climate,Climate +237015,Climate,Climate +237011,Climate,Climate +237010,Climate,Climate +237009,Climate,Climate +237002,Climate,Climate +237000,Climate,Climate +236999,Climate,Climate +236997,Climate,Climate +236995,Climate,Climate +236994,Climate,Climate +236993,Climate,Climate +236991,Climate,Climate +236990,Climate,Climate +227408,Climate,Climate +237117,Climate,Climate +237115,Climate,Climate +237113,Climate,Climate +237112,Climate,Climate +237111,Climate,Climate +237110,Climate,Climate +237108,Climate,Climate +237107,Climate,Climate +237105,Climate,Climate +237103,Climate,Climate +237102,Climate,Climate +237101,Climate,Climate +237099,Climate,Climate +237091,Consumer Issues,Consumer Issues +237090,Consumer Issues,Consumer Issues +237088,Consumer Issues,Consumer Issues +237087,Consumer Issues,Consumer Issues +237086,Consumer Issues,Consumer Issues +237085,Consumer Issues,Consumer Issues +237084,Consumer Issues,Consumer Issues +237033,Consumer Issues,Consumer Issues +237032,Consumer Issues,Consumer Issues +237031,Consumer Issues,Consumer Issues +237030,Consumer Issues,Consumer Issues +237029,Consumer Issues,Consumer Issues +237016,Consumer Issues,Consumer Issues +237015,Consumer Issues,Consumer Issues +237011,Consumer Issues,Consumer Issues +237010,Consumer Issues,Consumer Issues +237009,Consumer Issues,Consumer Issues +237002,Consumer Issues,Consumer Issues +237000,Consumer Issues,Consumer Issues +236999,Consumer Issues,Consumer Issues +236997,Consumer Issues,Consumer Issues +236995,Consumer Issues,Consumer Issues +236994,Consumer Issues,Consumer Issues +236993,Consumer Issues,Consumer Issues +236991,Consumer Issues,Consumer Issues +236990,Consumer Issues,Consumer Issues +227408,Consumer Issues,Consumer Issues +277811,Consumer Issues,Consumer Issues +277810,Consumer Issues,Consumer Issues +277809,Consumer Issues,Consumer Issues +276911,Consumer Issues,Consumer Issues +276733,Consumer Issues,Consumer Issues +276731,Consumer Issues,Consumer Issues +276730,Consumer Issues,Consumer Issues +276729,Consumer Issues,Consumer Issues +276728,Consumer Issues,Consumer Issues +276727,Consumer Issues,Consumer Issues +276714,Consumer Issues,Consumer Issues +276658,Consumer Issues,Consumer Issues +276656,Consumer Issues,Consumer Issues +276652,Consumer Issues,Consumer Issues +276651,Consumer Issues,Consumer Issues +276650,Consumer Issues,Consumer Issues +276649,Consumer Issues,Consumer Issues +237117,Consumer Issues,Consumer Issues +237115,Consumer Issues,Consumer Issues +237113,Consumer Issues,Consumer Issues +237112,Consumer Issues,Consumer Issues +237111,Consumer Issues,Consumer Issues +237110,Consumer Issues,Consumer Issues +237108,Consumer Issues,Consumer Issues +237107,Consumer Issues,Consumer Issues +237105,Consumer Issues,Consumer Issues +237103,Consumer Issues,Consumer Issues +237102,Consumer Issues,Consumer Issues +237101,Consumer Issues,Consumer Issues +237099,Consumer Issues,Consumer Issues +237097,Consumer Issues,Consumer Issues +237096,Consumer Issues,Consumer Issues +237094,Consumer Issues,Consumer Issues +237093,Consumer Issues,Consumer Issues +237030,Industry,Industry +237029,Industry,Industry +237016,Industry,Industry +237015,Industry,Industry +237011,Industry,Industry +237010,Industry,Industry +237009,Industry,Industry +237002,Industry,Industry +237000,Industry,Industry +236999,Industry,Industry +236997,Industry,Industry +236995,Industry,Industry +236994,Industry,Industry +236993,Industry,Industry +236991,Industry,Industry +236990,Industry,Industry +227408,Industry,Industry +237117,Industry,Industry +237115,Industry,Industry +237112,Industry,Industry +237111,Industry,Industry +237110,Industry,Industry +237108,Industry,Industry +237107,Industry,Industry +237105,Industry,Industry +237103,Industry,Industry +237102,Industry,Industry +237101,Industry,Industry +237099,Industry,Industry +237097,Industry,Industry +237096,Industry,Industry +237094,Industry,Industry +237093,Industry,Industry +237092,Industry,Industry +237091,Industry,Industry +237090,Industry,Industry +237088,Industry,Industry +237087,Industry,Industry +237086,Industry,Industry +237085,Industry,Industry +237084,Industry,Industry +237033,Industry,Industry +237032,Industry,Industry +444047,Housing,Housing +444046,Housing,Housing +327581,Housing,Housing +327579,Housing,Housing +327577,Housing,Housing +327574,Housing,Housing +327573,Housing,Housing +327570,Housing,Housing +327567,Housing,Housing +327565,Housing,Housing +327563,Housing,Housing +327561,Housing,Housing +327550,Housing,Housing +327538,Housing,Housing +327532,Housing,Housing +309955,Housing,Housing +230430,Housing,Housing +339453,Housing,Housing +329589,Housing,Housing +327690,Housing,Housing +327687,Housing,Housing +327685,Housing,Housing +327682,Housing,Housing +327681,Housing,Housing +327677,Housing,Housing +327675,Housing,Housing +327673,Housing,Housing +327672,Housing,Housing +327670,Housing,Housing +327668,Housing,Housing +327665,Housing,Housing +327663,Housing,Housing +327662,Housing,Housing +327661,Housing,Housing +327658,Housing,Housing +327657,Housing,Housing +327652,Housing,Housing +327649,Housing,Housing +327647,Housing,Housing +327645,Housing,Housing +327641,Housing,Housing +327640,Housing,Housing +327634,Housing,Housing +327632,Housing,Housing +327630,Housing,Housing +327626,Housing,Housing +327621,Housing,Housing +327612,Housing,Housing +327611,Housing,Housing +327608,Housing,Housing +327605,Housing,Housing +327604,Housing,Housing +327602,Housing,Housing +327601,Housing,Housing +327600,Housing,Housing +327599,Housing,Housing +327597,Housing,Housing +327596,Housing,Housing +327594,Housing,Housing +327591,Housing,Housing +327587,Housing,Housing +327585,Housing,Housing +327583,Housing,Housing +327582,Housing,Housing +373111,Housing,Housing +373110,Housing,Housing +373109,Housing,Housing +373108,Housing,Housing +373107,Housing,Housing +373106,Housing,Housing +373105,Housing,Housing +373104,Housing,Housing +373103,Housing,Housing +373102,Housing,Housing +373101,Housing,Housing +373100,Housing,Housing +373099,Housing,Housing +373098,Housing,Housing +373097,Housing,Housing +373096,Housing,Housing +373095,Housing,Housing +373094,Housing,Housing +373093,Housing,Housing +373092,Housing,Housing +373091,Housing,Housing +373090,Housing,Housing +373089,Housing,Housing +373088,Housing,Housing +373087,Housing,Housing +373086,Housing,Housing +373085,Housing,Housing +373084,Housing,Housing +373083,Housing,Housing +373082,Housing,Housing +373081,Housing,Housing +373080,Housing,Housing +373079,Housing,Housing +373078,Housing,Housing +373077,Housing,Housing +373076,Housing,Housing +373075,Housing,Housing +373074,Housing,Housing +373073,Housing,Housing +373072,Housing,Housing +373071,Housing,Housing +373070,Housing,Housing +373069,Housing,Housing +373068,Housing,Housing +373066,Housing,Housing +373065,Housing,Housing +373063,Housing,Housing +373062,Housing,Housing +373061,Housing,Housing +373060,Housing,Housing +371954,Housing,Housing +371950,Housing,Housing +355172,Housing,Housing +355169,Housing,Housing +355168,Housing,Housing +355167,Housing,Housing +355166,Housing,Housing +355164,Housing,Housing +355163,Housing,Housing +355160,Housing,Housing +355159,Housing,Housing +355157,Housing,Housing +355156,Housing,Housing +355155,Housing,Housing +355154,Housing,Housing +355153,Housing,Housing +355152,Housing,Housing +355151,Housing,Housing +355150,Housing,Housing +355148,Housing,Housing +355147,Housing,Housing +355145,Housing,Housing +355144,Housing,Housing +355143,Housing,Housing +355141,Housing,Housing +355140,Housing,Housing +355139,Housing,Housing +355137,Housing,Housing +355136,Housing,Housing +355135,Housing,Housing +355134,Housing,Housing +355133,Housing,Housing +355132,Housing,Housing +355131,Housing,Housing +355130,Housing,Housing +355129,Housing,Housing +355127,Housing,Housing +355126,Housing,Housing +355125,Housing,Housing +355124,Housing,Housing +355123,Housing,Housing +355122,Housing,Housing +355121,Housing,Housing +355120,Housing,Housing +355119,Housing,Housing +355118,Housing,Housing +355117,Housing,Housing +355114,Housing,Housing +355113,Housing,Housing +355112,Housing,Housing +355111,Housing,Housing +355109,Housing,Housing +355108,Housing,Housing +355107,Housing,Housing +355106,Housing,Housing +355105,Housing,Housing +355104,Housing,Housing +355103,Housing,Housing +355102,Housing,Housing +418533,Housing,Housing +410735,Housing,Housing +400269,Housing,Housing +395960,Housing,Housing +395959,Housing,Housing +395958,Housing,Housing +395957,Housing,Housing +395956,Housing,Housing +395955,Housing,Housing +395954,Housing,Housing +395953,Housing,Housing +395952,Housing,Housing +395951,Housing,Housing +395950,Housing,Housing +395949,Housing,Housing +395947,Housing,Housing +395944,Housing,Housing +395942,Housing,Housing +395940,Housing,Housing +395938,Housing,Housing +395937,Housing,Housing +395934,Housing,Housing +395926,Housing,Housing +395923,Housing,Housing +395921,Housing,Housing +395920,Housing,Housing +395918,Housing,Housing +395917,Housing,Housing +395916,Housing,Housing +395915,Housing,Housing +395914,Housing,Housing +395913,Housing,Housing +395912,Housing,Housing +395909,Housing,Housing +395908,Housing,Housing +395906,Housing,Housing +395901,Housing,Housing +395899,Housing,Housing +395898,Housing,Housing +395897,Housing,Housing +395895,Housing,Housing +395893,Housing,Housing +395892,Housing,Housing +395891,Housing,Housing +395889,Housing,Housing +395886,Housing,Housing +395884,Housing,Housing +395883,Housing,Housing +395882,Housing,Housing +395879,Housing,Housing +395876,Housing,Housing +395874,Housing,Housing +395870,Housing,Housing +393117,Housing,Housing +388621,Housing,Housing +379247,Housing,Housing +375058,Housing,Housing +374233,Housing,Housing +374232,Housing,Housing +373479,Housing,Housing +373113,Housing,Housing +373112,Housing,Housing +545240,Housing,Housing +545004,Housing,Housing +536094,Housing,Housing +526703,Housing,Housing +526702,Housing,Housing +526701,Housing,Housing +526698,Housing,Housing +526697,Housing,Housing +526696,Housing,Housing +526695,Housing,Housing +526694,Housing,Housing +526693,Housing,Housing +523848,Housing,Housing +523847,Housing,Housing +520782,Housing,Housing +508471,Housing,Housing +494521,Housing,Housing +492401,Housing,Housing +489237,Housing,Housing +488926,Housing,Housing +483323,Housing,Housing +483321,Housing,Housing +483320,Housing,Housing +481034,Housing,Housing +481033,Housing,Housing +479256,Housing,Housing +479255,Housing,Housing +479254,Housing,Housing +476810,Housing,Housing +476809,Housing,Housing +476807,Housing,Housing +476806,Housing,Housing +475218,Housing,Housing +475217,Housing,Housing +475216,Housing,Housing +475215,Housing,Housing +475214,Housing,Housing +473608,Housing,Housing +472840,Housing,Housing +467304,Housing,Housing +467297,Housing,Housing +464564,Housing,Housing +459186,Housing,Housing +458316,Housing,Housing +457999,Housing,Housing +457856,Housing,Housing +457812,Housing,Housing +453752,Housing,Housing +448954,Housing,Housing +448755,Housing,Housing +446618,Housing,Housing +446356,Housing,Housing +446355,Housing,Housing +446353,Housing,Housing +446351,Housing,Housing +446350,Housing,Housing +446348,Housing,Housing +446337,Housing,Housing +446335,Housing,Housing +446318,Housing,Housing +446316,Housing,Housing +446308,Housing,Housing +446300,Housing,Housing +446299,Housing,Housing +446297,Housing,Housing +446296,Housing,Housing +446295,Housing,Housing +446294,Housing,Housing +446293,Housing,Housing +446292,Housing,Housing +446291,Housing,Housing +446290,Housing,Housing +446289,Housing,Housing +446288,Housing,Housing +446287,Housing,Housing +446286,Housing,Housing +446285,Housing,Housing +446284,Housing,Housing +446283,Housing,Housing +446281,Housing,Housing +446279,Housing,Housing +446278,Housing,Housing +446277,Housing,Housing +446276,Housing,Housing +446275,Housing,Housing +446274,Housing,Housing +446273,Housing,Housing +446272,Housing,Housing +446271,Housing,Housing +446270,Housing,Housing +446269,Housing,Housing +446267,Housing,Housing +446266,Housing,Housing +446264,Housing,Housing +444481,Housing,Housing +444426,Housing,Housing +444342,Housing,Housing +444263,Housing,Housing +444123,Housing,Housing +444116,Housing,Housing +444115,Housing,Housing +444114,Housing,Housing +444113,Housing,Housing +444112,Housing,Housing +444111,Housing,Housing +444110,Housing,Housing +444109,Housing,Housing +444108,Housing,Housing +444107,Housing,Housing +444106,Housing,Housing +444105,Housing,Housing +444104,Housing,Housing +444102,Housing,Housing +444101,Housing,Housing +444100,Housing,Housing +444099,Housing,Housing +444098,Housing,Housing +444096,Housing,Housing +444095,Housing,Housing +444094,Housing,Housing +444093,Housing,Housing +444092,Housing,Housing +444091,Housing,Housing +444088,Housing,Housing +444087,Housing,Housing +444086,Housing,Housing +444085,Housing,Housing +444084,Housing,Housing +444083,Housing,Housing +444081,Housing,Housing +444080,Housing,Housing +444079,Housing,Housing +444077,Housing,Housing +444076,Housing,Housing +444075,Housing,Housing +444072,Housing,Housing +444071,Housing,Housing +444070,Housing,Housing +444069,Housing,Housing +444068,Housing,Housing +444067,Housing,Housing +444066,Housing,Housing +444065,Housing,Housing +444064,Housing,Housing +444142,Research and Development,Research and Development +444141,Research and Development,Research and Development +350292,Research and Development,Research and Development +350126,Research and Development,Research and Development +350122,Research and Development,Research and Development +350121,Research and Development,Research and Development +346744,Research and Development,Research and Development +346743,Research and Development,Research and Development +343342,Research and Development,Research and Development +343341,Research and Development,Research and Development +343339,Research and Development,Research and Development +340884,Research and Development,Research and Development +334562,Research and Development,Research and Development +334561,Research and Development,Research and Development +334560,Research and Development,Research and Development +334559,Research and Development,Research and Development +334558,Research and Development,Research and Development +334557,Research and Development,Research and Development +334556,Research and Development,Research and Development +334555,Research and Development,Research and Development +334554,Research and Development,Research and Development +334553,Research and Development,Research and Development +334552,Research and Development,Research and Development +332732,Research and Development,Research and Development +331338,Research and Development,Research and Development +331337,Research and Development,Research and Development +331335,Research and Development,Research and Development +331334,Research and Development,Research and Development +331333,Research and Development,Research and Development +331332,Research and Development,Research and Development +331331,Research and Development,Research and Development +331329,Research and Development,Research and Development +330397,Research and Development,Research and Development +329902,Research and Development,Research and Development +329901,Research and Development,Research and Development +329900,Research and Development,Research and Development +329896,Research and Development,Research and Development +327321,Research and Development,Research and Development +227670,Research and Development,Research and Development +436857,Research and Development,Research and Development +436856,Research and Development,Research and Development +436854,Research and Development,Research and Development +431869,Research and Development,Research and Development +429978,Research and Development,Research and Development +427614,Research and Development,Research and Development +424908,Research and Development,Research and Development +424907,Research and Development,Research and Development +423153,Research and Development,Research and Development +421154,Research and Development,Research and Development +421153,Research and Development,Research and Development +421151,Research and Development,Research and Development +421149,Research and Development,Research and Development +417218,Research and Development,Research and Development +416682,Research and Development,Research and Development +409424,Research and Development,Research and Development +409423,Research and Development,Research and Development +409421,Research and Development,Research and Development +409420,Research and Development,Research and Development +403603,Research and Development,Research and Development +396746,Research and Development,Research and Development +396739,Research and Development,Research and Development +396722,Research and Development,Research and Development +395286,Research and Development,Research and Development +395284,Research and Development,Research and Development +395279,Research and Development,Research and Development +395274,Research and Development,Research and Development +392808,Research and Development,Research and Development +392807,Research and Development,Research and Development +390986,Research and Development,Research and Development +390976,Research and Development,Research and Development +390956,Research and Development,Research and Development +390950,Research and Development,Research and Development +387631,Research and Development,Research and Development +387625,Research and Development,Research and Development +387598,Research and Development,Research and Development +384819,Research and Development,Research and Development +384814,Research and Development,Research and Development +384801,Research and Development,Research and Development +384796,Research and Development,Research and Development +384793,Research and Development,Research and Development +384762,Research and Development,Research and Development +378840,Research and Development,Research and Development +378830,Research and Development,Research and Development +371482,Research and Development,Research and Development +357618,Research and Development,Research and Development +515997,Research and Development,Research and Development +515091,Research and Development,Research and Development +515035,Research and Development,Research and Development +510158,Research and Development,Research and Development +509920,Research and Development,Research and Development +509918,Research and Development,Research and Development +509917,Research and Development,Research and Development +506742,Research and Development,Research and Development +506740,Research and Development,Research and Development +506737,Research and Development,Research and Development +506258,Research and Development,Research and Development +504539,Research and Development,Research and Development +504130,Research and Development,Research and Development +503406,Research and Development,Research and Development +502949,Research and Development,Research and Development +500538,Research and Development,Research and Development +499890,Research and Development,Research and Development +496887,Research and Development,Research and Development +496886,Research and Development,Research and Development +496885,Research and Development,Research and Development +496884,Research and Development,Research and Development +494254,Research and Development,Research and Development +488950,Research and Development,Research and Development +488949,Research and Development,Research and Development +488948,Research and Development,Research and Development +488947,Research and Development,Research and Development +486929,Research and Development,Research and Development +486053,Research and Development,Research and Development +483102,Research and Development,Research and Development +479340,Research and Development,Research and Development +476424,Research and Development,Research and Development +474470,Research and Development,Research and Development +469306,Research and Development,Research and Development +469054,Research and Development,Research and Development +469050,Research and Development,Research and Development +469049,Research and Development,Research and Development +469048,Research and Development,Research and Development +469047,Research and Development,Research and Development +469045,Research and Development,Research and Development +469044,Research and Development,Research and Development +469043,Research and Development,Research and Development +469042,Research and Development,Research and Development +469041,Research and Development,Research and Development +469034,Research and Development,Research and Development +469033,Research and Development,Research and Development +469032,Research and Development,Research and Development +469008,Research and Development,Research and Development +469007,Research and Development,Research and Development +469006,Research and Development,Research and Development +469005,Research and Development,Research and Development +469003,Research and Development,Research and Development +469002,Research and Development,Research and Development +469000,Research and Development,Research and Development +466042,Research and Development,Research and Development +466040,Research and Development,Research and Development +463414,Research and Development,Research and Development +463412,Research and Development,Research and Development +463409,Research and Development,Research and Development +455298,Research and Development,Research and Development +455295,Research and Development,Research and Development +455291,Research and Development,Research and Development +455289,Research and Development,Research and Development +455286,Research and Development,Research and Development +455285,Research and Development,Research and Development +455281,Research and Development,Research and Development +455279,Research and Development,Research and Development +455277,Research and Development,Research and Development +455252,Research and Development,Research and Development +455251,Research and Development,Research and Development +455250,Research and Development,Research and Development +451207,Research and Development,Research and Development +451206,Research and Development,Research and Development +405504,International Development,International Development +372609,International Development,International Development +227957,International Development,International Development +539913,Economic Development,Economic Development +539902,Economic Development,Economic Development +227959,Economic Development,Economic Development +496285,Economic Development,Economic Development +482574,Economic Development,Economic Development +410455,Economic Development,Economic Development +396464,Economic Development,Economic Development +394604,Economic Development,Economic Development +275233,Official Languages,Official Languages +230426,Official Languages,Official Languages +275250,Official Languages,Official Languages +253894,Government Procurement,Government Procurement +239070,Environment,Environment +239069,Environment,Environment +239073,Environment,Environment +376004,Forestry,Forestry +376003,Forestry,Forestry +369056,Forestry,Forestry +369048,Forestry,Forestry +364885,Forestry,Forestry +359557,Forestry,Forestry +359553,Forestry,Forestry +359291,Forestry,Forestry +359224,Forestry,Forestry +355914,Forestry,Forestry +355913,Forestry,Forestry +355912,Forestry,Forestry +353360,Forestry,Forestry +348401,Forestry,Forestry +348400,Forestry,Forestry +348399,Forestry,Forestry +348398,Forestry,Forestry +348397,Forestry,Forestry +348319,Forestry,Forestry +343606,Forestry,Forestry +340837,Forestry,Forestry +338829,Forestry,Forestry +337300,Forestry,Forestry +337299,Forestry,Forestry +335589,Forestry,Forestry +324693,Forestry,Forestry +324502,Forestry,Forestry +324488,Forestry,Forestry +321591,Forestry,Forestry +321590,Forestry,Forestry +318512,Forestry,Forestry +318511,Forestry,Forestry +315404,Forestry,Forestry +315399,Forestry,Forestry +311070,Forestry,Forestry +303329,Forestry,Forestry +303323,Forestry,Forestry +291792,Forestry,Forestry +279947,Forestry,Forestry +279945,Forestry,Forestry +279944,Forestry,Forestry +279943,Forestry,Forestry +279942,Forestry,Forestry +279940,Forestry,Forestry +272086,Forestry,Forestry +272081,Forestry,Forestry +272074,Forestry,Forestry +272071,Forestry,Forestry +259871,Forestry,Forestry +259059,Forestry,Forestry +421980,Forestry,Forestry +420183,Forestry,Forestry +418110,Forestry,Forestry +416279,Forestry,Forestry +405687,Forestry,Forestry +403612,Forestry,Forestry +403596,Forestry,Forestry +400440,Forestry,Forestry +400439,Forestry,Forestry +396624,Forestry,Forestry +396261,Forestry,Forestry +396260,Forestry,Forestry +396259,Forestry,Forestry +393974,Forestry,Forestry +387874,Forestry,Forestry +387869,Forestry,Forestry +387862,Forestry,Forestry +380825,Forestry,Forestry +380823,Forestry,Forestry +380821,Forestry,Forestry +380753,Forestry,Forestry +380752,Forestry,Forestry +378721,Forestry,Forestry +378720,Forestry,Forestry +378719,Forestry,Forestry +378718,Forestry,Forestry +378711,Forestry,Forestry +378709,Forestry,Forestry +378705,Forestry,Forestry +378696,Forestry,Forestry +378692,Forestry,Forestry +378690,Forestry,Forestry +378687,Forestry,Forestry +378683,Forestry,Forestry +378682,Forestry,Forestry +376311,Forestry,Forestry +376006,Forestry,Forestry +417880,Agriculture,Agriculture +542573,Agriculture,Agriculture +279389,Agriculture,Agriculture +229836,Agriculture,Agriculture +229829,Agriculture,Agriculture +405298,Agriculture,Agriculture +403650,Agriculture,Agriculture +342302,Agriculture,Agriculture +329349,Agriculture,Agriculture +279409,Agriculture,Agriculture +279390,Agriculture,Agriculture +429439,Agriculture,Agriculture +421237,Agriculture,Agriculture +409867,Justice and Law Enforcement,Justice and Law Enforcement +542573,Justice and Law Enforcement,Justice and Law Enforcement +326812,Justice and Law Enforcement,Justice and Law Enforcement +316589,Justice and Law Enforcement,Justice and Law Enforcement +311690,Justice and Law Enforcement,Justice and Law Enforcement +308471,Justice and Law Enforcement,Justice and Law Enforcement +301014,Justice and Law Enforcement,Justice and Law Enforcement +301010,Justice and Law Enforcement,Justice and Law Enforcement +272670,Justice and Law Enforcement,Justice and Law Enforcement +272669,Justice and Law Enforcement,Justice and Law Enforcement +240010,Justice and Law Enforcement,Justice and Law Enforcement +229848,Justice and Law Enforcement,Justice and Law Enforcement +229846,Justice and Law Enforcement,Justice and Law Enforcement +229839,Justice and Law Enforcement,Justice and Law Enforcement +229812,Justice and Law Enforcement,Justice and Law Enforcement +407409,Justice and Law Enforcement,Justice and Law Enforcement +403650,Justice and Law Enforcement,Justice and Law Enforcement +401251,Justice and Law Enforcement,Justice and Law Enforcement +382148,Justice and Law Enforcement,Justice and Law Enforcement +382147,Justice and Law Enforcement,Justice and Law Enforcement +380315,Justice and Law Enforcement,Justice and Law Enforcement +380314,Justice and Law Enforcement,Justice and Law Enforcement +380313,Justice and Law Enforcement,Justice and Law Enforcement +368520,Justice and Law Enforcement,Justice and Law Enforcement +368519,Justice and Law Enforcement,Justice and Law Enforcement +368513,Justice and Law Enforcement,Justice and Law Enforcement +368484,Justice and Law Enforcement,Justice and Law Enforcement +351067,Justice and Law Enforcement,Justice and Law Enforcement +351066,Justice and Law Enforcement,Justice and Law Enforcement +351065,Justice and Law Enforcement,Justice and Law Enforcement +346997,Justice and Law Enforcement,Justice and Law Enforcement +342304,Justice and Law Enforcement,Justice and Law Enforcement +342299,Justice and Law Enforcement,Justice and Law Enforcement +329951,Justice and Law Enforcement,Justice and Law Enforcement +329350,Justice and Law Enforcement,Justice and Law Enforcement +326818,Justice and Law Enforcement,Justice and Law Enforcement +326817,Justice and Law Enforcement,Justice and Law Enforcement +326815,Justice and Law Enforcement,Justice and Law Enforcement +326814,Justice and Law Enforcement,Justice and Law Enforcement +533299,Justice and Law Enforcement,Justice and Law Enforcement +529301,Justice and Law Enforcement,Justice and Law Enforcement +527800,Justice and Law Enforcement,Justice and Law Enforcement +527798,Justice and Law Enforcement,Justice and Law Enforcement +527797,Justice and Law Enforcement,Justice and Law Enforcement +469244,Justice and Law Enforcement,Justice and Law Enforcement +469243,Justice and Law Enforcement,Justice and Law Enforcement +469242,Justice and Law Enforcement,Justice and Law Enforcement +450673,Justice and Law Enforcement,Justice and Law Enforcement +450672,Justice and Law Enforcement,Justice and Law Enforcement +450671,Justice and Law Enforcement,Justice and Law Enforcement +445695,Justice and Law Enforcement,Justice and Law Enforcement +435212,Justice and Law Enforcement,Justice and Law Enforcement +435209,Justice and Law Enforcement,Justice and Law Enforcement +430674,Justice and Law Enforcement,Justice and Law Enforcement +430671,Justice and Law Enforcement,Justice and Law Enforcement +429442,Justice and Law Enforcement,Justice and Law Enforcement +429434,Justice and Law Enforcement,Justice and Law Enforcement +429432,Justice and Law Enforcement,Justice and Law Enforcement +426203,Justice and Law Enforcement,Justice and Law Enforcement +426199,Justice and Law Enforcement,Justice and Law Enforcement +424113,Justice and Law Enforcement,Justice and Law Enforcement +424107,Justice and Law Enforcement,Justice and Law Enforcement +421237,Justice and Law Enforcement,Justice and Law Enforcement +420122,Justice and Law Enforcement,Justice and Law Enforcement +420119,Justice and Law Enforcement,Justice and Law Enforcement +417882,Justice and Law Enforcement,Justice and Law Enforcement +417880,Justice and Law Enforcement,Justice and Law Enforcement +416789,Justice and Law Enforcement,Justice and Law Enforcement +416784,Justice and Law Enforcement,Justice and Law Enforcement +407075,Government Procurement,Government Procurement +404861,Government Procurement,Government Procurement +338279,Government Procurement,Government Procurement +338275,Government Procurement,Government Procurement +329371,Government Procurement,Government Procurement +273989,Government Procurement,Government Procurement +483999,Government Procurement,Government Procurement +481626,Government Procurement,Government Procurement +481625,Government Procurement,Government Procurement +459690,Government Procurement,Government Procurement +457735,Government Procurement,Government Procurement +456061,Government Procurement,Government Procurement +451643,Government Procurement,Government Procurement +449828,Government Procurement,Government Procurement +445184,Government Procurement,Government Procurement +437065,Government Procurement,Government Procurement +437062,Government Procurement,Government Procurement +435436,Government Procurement,Government Procurement +435434,Government Procurement,Government Procurement +433200,Government Procurement,Government Procurement +433197,Government Procurement,Government Procurement +433195,Government Procurement,Government Procurement +429136,Government Procurement,Government Procurement +426868,Government Procurement,Government Procurement +424500,Government Procurement,Government Procurement +422469,Government Procurement,Government Procurement +422468,Government Procurement,Government Procurement +419006,Government Procurement,Government Procurement +419005,Government Procurement,Government Procurement +419003,Government Procurement,Government Procurement +418181,Government Procurement,Government Procurement +413736,Government Procurement,Government Procurement +413732,Government Procurement,Government Procurement +408669,Government Procurement,Government Procurement +408668,Government Procurement,Government Procurement +408666,Government Procurement,Government Procurement +233556,Justice and Law Enforcement,Justice and Law Enforcement +228509,Justice and Law Enforcement,Justice and Law Enforcement +248154,Employment and Training,Employment and Training +228551,Employment and Training,Employment and Training +264441,Employment and Training,Employment and Training +501526,Economic Development,Economic Development +465677,Economic Development,Economic Development +395013,Economic Development,Economic Development +395009,Economic Development,Economic Development +375188,Economic Development,Economic Development +370149,Economic Development,Economic Development +370148,Economic Development,Economic Development +370147,Economic Development,Economic Development +370146,Economic Development,Economic Development +370145,Economic Development,Economic Development +370144,Economic Development,Economic Development +370143,Economic Development,Economic Development +370142,Economic Development,Economic Development +370141,Economic Development,Economic Development +370139,Economic Development,Economic Development +370138,Economic Development,Economic Development +348046,Economic Development,Economic Development +348044,Economic Development,Economic Development +314809,Economic Development,Economic Development +304969,Economic Development,Economic Development +290071,Economic Development,Economic Development +501538,Economic Development,Economic Development +465692,Privacy and Access to Information,Privacy and Access to Information +465677,Privacy and Access to Information,Privacy and Access to Information +348047,Privacy and Access to Information,Privacy and Access to Information +340779,Privacy and Access to Information,Privacy and Access to Information +340773,Privacy and Access to Information,Privacy and Access to Information +296571,Privacy and Access to Information,Privacy and Access to Information +296570,Privacy and Access to Information,Privacy and Access to Information +296569,Privacy and Access to Information,Privacy and Access to Information +264850,Privacy and Access to Information,Privacy and Access to Information +501538,Privacy and Access to Information,Privacy and Access to Information +501537,Privacy and Access to Information,Privacy and Access to Information +501521,Privacy and Access to Information,Privacy and Access to Information +314809,Research and Development,Research and Development +244516,Research and Development,Research and Development +228589,Regional Development,Regional Development +241590,Climate,Climate +241589,Climate,Climate +241590,Economic Development,Economic Development +241590,Government Procurement,Government Procurement +241589,Government Procurement,Government Procurement +229107,Economic Development,Economic Development +229106,Economic Development,Economic Development +233476,Economic Development,Economic Development +233011,Economic Development,Economic Development +229107,Environment,Environment +229106,Environment,Environment +233476,Environment,Environment +233011,Environment,Environment +233011,Mining,Mining +232889,Mining,Mining +229107,Mining,Mining +229106,Mining,Mining +228737,Regional Development,Regional Development +381734,Regional Development,Regional Development +252718,Budget,Budget +252717,Budget,Budget +252732,Budget,Budget +252731,Budget,Budget +252730,Budget,Budget +252729,Budget,Budget +252727,Budget,Budget +252726,Budget,Budget +252725,Budget,Budget +252724,Budget,Budget +252721,Budget,Budget +252720,Budget,Budget +399331,Economic Development,Economic Development +399330,Economic Development,Economic Development +380186,Economic Development,Economic Development +380185,Economic Development,Economic Development +380184,Economic Development,Economic Development +380183,Economic Development,Economic Development +380182,Economic Development,Economic Development +339594,Economic Development,Economic Development +330274,Economic Development,Economic Development +330273,Economic Development,Economic Development +330272,Economic Development,Economic Development +330271,Economic Development,Economic Development +330270,Economic Development,Economic Development +278352,Economic Development,Economic Development +278351,Economic Development,Economic Development +278350,Economic Development,Economic Development +278349,Economic Development,Economic Development +278331,Economic Development,Economic Development +278330,Economic Development,Economic Development +278329,Economic Development,Economic Development +246589,Economic Development,Economic Development +229109,Economic Development,Economic Development +399879,Economic Development,Economic Development +399334,Economic Development,Economic Development +399333,Economic Development,Economic Development +485682,Housing,Housing +456644,Housing,Housing +305011,Housing,Housing +278352,Housing,Housing +278351,Housing,Housing +278350,Housing,Housing +278349,Housing,Housing +278332,Housing,Housing +278331,Housing,Housing +278330,Housing,Housing +278329,Housing,Housing +246589,Housing,Housing +229109,Housing,Housing +446468,Housing,Housing +446467,Housing,Housing +446464,Housing,Housing +399879,Housing,Housing +399334,Housing,Housing +399333,Housing,Housing +399332,Housing,Housing +399331,Housing,Housing +399330,Housing,Housing +380186,Housing,Housing +380185,Housing,Housing +380184,Housing,Housing +380183,Housing,Housing +380182,Housing,Housing +339594,Housing,Housing +330274,Housing,Housing +330273,Housing,Housing +330272,Housing,Housing +330271,Housing,Housing +399331,Infrastructure,Infrastructure +399330,Infrastructure,Infrastructure +380186,Infrastructure,Infrastructure +380185,Infrastructure,Infrastructure +380184,Infrastructure,Infrastructure +380183,Infrastructure,Infrastructure +380182,Infrastructure,Infrastructure +339594,Infrastructure,Infrastructure +330274,Infrastructure,Infrastructure +330273,Infrastructure,Infrastructure +330272,Infrastructure,Infrastructure +330271,Infrastructure,Infrastructure +330270,Infrastructure,Infrastructure +278352,Infrastructure,Infrastructure +278351,Infrastructure,Infrastructure +278350,Infrastructure,Infrastructure +278349,Infrastructure,Infrastructure +278331,Infrastructure,Infrastructure +278329,Infrastructure,Infrastructure +229109,Infrastructure,Infrastructure +399879,Infrastructure,Infrastructure +399334,Infrastructure,Infrastructure +399333,Infrastructure,Infrastructure +278352,Taxation and Finance,Taxation and Finance +278351,Taxation and Finance,Taxation and Finance +278350,Taxation and Finance,Taxation and Finance +278349,Taxation and Finance,Taxation and Finance +278331,Taxation and Finance,Taxation and Finance +278330,Taxation and Finance,Taxation and Finance +278329,Taxation and Finance,Taxation and Finance +229109,Taxation and Finance,Taxation and Finance +339594,Taxation and Finance,Taxation and Finance +330274,Taxation and Finance,Taxation and Finance +330273,Taxation and Finance,Taxation and Finance +330272,Taxation and Finance,Taxation and Finance +330271,Taxation and Finance,Taxation and Finance +330270,Taxation and Finance,Taxation and Finance +245709,Research and Development,Research and Development +229194,Research and Development,Research and Development +339253,Research and Development,Research and Development +311034,Research and Development,Research and Development +230403,Transportation,Transportation +230396,Transportation,Transportation +328471,Transportation,Transportation +261656,Transportation,Transportation +238489,Transportation,Transportation +230849,Transportation,Transportation +230751,Transportation,Transportation +354015,Transportation,Transportation +349040,Transportation,Transportation +349034,Transportation,Transportation +349018,Transportation,Transportation +338689,Transportation,Transportation +338679,Transportation,Transportation +338666,Transportation,Transportation +332810,Transportation,Transportation +332809,Transportation,Transportation +332794,Transportation,Transportation +254710,Transportation,Transportation +233404,Transportation,Transportation +230750,Transportation,Transportation +388855,Transportation,Transportation +347776,Transportation,Transportation +274669,Transportation,Transportation +255729,Transportation,Transportation +233403,Transportation,Transportation +341674,Energy,Energy +520152,Energy,Energy +335363,Energy,Energy +230989,Energy,Energy +494617,Energy,Energy +488859,Energy,Energy +461820,Energy,Energy +382659,Energy,Energy +380333,Energy,Energy +375018,Energy,Energy +369242,Energy,Energy +485364,Environment,Environment +381739,Environment,Environment +373032,Environment,Environment +373030,Environment,Environment +373027,Environment,Environment +373026,Environment,Environment +369246,Environment,Environment +369244,Environment,Environment +369242,Environment,Environment +369241,Environment,Environment +369239,Environment,Environment +349297,Environment,Environment +341674,Environment,Environment +335363,Environment,Environment +335362,Environment,Environment +324297,Environment,Environment +230989,Environment,Environment +485363,Environment,Environment +482519,Environment,Environment +482518,Environment,Environment +482517,Environment,Environment +482516,Environment,Environment +482514,Environment,Environment +482468,Environment,Environment +482467,Environment,Environment +223653,Budget,Budget +539130,Industry,Industry +324728,Budget,Budget +223687,Consumer Issues,Consumer Issues +223687,Economic Development,Economic Development +223687,Tourism,Tourism +223847,Research and Development,Research and Development +519956,Agriculture,Agriculture +531140,International Trade,International Trade +242049,Research and Development,Research and Development +223867,Infrastructure,Infrastructure +223869,Research and Development,Research and Development +256910,Research and Development,Research and Development +223929,Budget,Budget +234489,Economic Development,Développement économique +223989,Environment,Environment +223989,Transportation,Transportation +224007,Environment,Environment +224007,Transportation,Transportation +224027,Environment,Environment +224027,Transportation,Transportation +224028,Environment,Environment +224028,Transportation,Transportation +224041,Environment,Environment +224041,Transportation,Transportation +224044,Environment,Environment +224044,Transportation,Transportation +224046,Environment,Environment +224046,Transportation,Transportation +224047,Environment,Environment +224047,Transportation,Transportation +224048,Environment,Environment +224048,Transportation,Transportation +224049,Environment,Environment +224049,Transportation,Transportation +224050,Environment,Environment +224050,Transportation,Transportation +224051,Environment,Environment +224051,Transportation,Transportation +248910,Employment and Training,Employment and Training +504087,International Trade,International Trade +454326,Justice and Law Enforcement,Justice and Law Enforcement +354200,Housing,Housing +230531,Environment,Environment +230531,Mining,Mining +224296,Agriculture,Agriculture +232489,Energy,Energy +247489,Environment,Environment +247489,International Trade,International Trade +232454,Energy,Energy +232454,Environment,Environment +232454,International Trade,International Trade +282669,Health,Health +282653,Health,Health +320792,Budget,Budget +224508,Budget,Budget +236489,Taxation and Finance,Taxation and Finance +226308,Budget,Budget +226308,Housing,Housing +226308,Taxation and Finance,Taxation and Finance +276091,Sports,Sports +410555,Research and Development,Research and Development +240750,Government Procurement,Government Procurement +454975,Labour,Labour +366414,Regional Development,Regional Development +306372,International Trade,International Trade +225527,Labour,Labour +386630,Environment,Environment +261291,International Development,International Development +225367,Labour,Labour +229929,International Relations,International Relations +229929,Small Business,Small Business +225428,Privacy and Access to Information,Privacy and Access to Information +225447,Energy,Energy +228589,Economic Development,Economic Development +240516,International Trade,International Trade +386388,International Trade,International Trade +386386,Labour,Labour +225529,Labour,Labour +225529,International Trade,International Trade +253329,Environment,Environment +243109,Energy,Energy +243109,Environment,Environment +261911,Research and Development,Research and Development +241698,Employment and Training,Employment and Training +410564,International Trade,International Trade +440430,Justice and Law Enforcement,Justice and Law Enforcement +263750,Government Procurement,Government Procurement +263750,Defence,Defence +229772,Energy,Energy +226047,International Trade,International Trade +226047,Labour,Labour +238991,Labour,Labour +238991,Employment and Training,Employment and Training +226088,Environment,Environment +226088,Transportation,Transportation +226107,Housing,Housing +226108,Housing,Housing +326411,Housing,Housing +326413,Budget,Budget +326413,Consumer Issues,Consumer Issues +229845,Environment,Environment +226289,Industry,Industry +326693,Housing,Housing +226309,Housing,Housing +272072,Housing,Housing +226351,Economic Development,Economic Development +226351,Privacy and Access to Information,Privacy and Access to Information +272070,Housing,Housing +226417,Budget,Budget +226536,Financial Institutions,Financial Institutions +226536,Taxation and Finance,Taxation and Finance +232609,Government Procurement,Government Procurement +241159,Defence,Defence +273569,Government Procurement,Government Procurement +226502,Internal Trade,Internal Trade +414038,Industry,Industry +345497,Pensions,Pensions +226916,Health,Health +267389,Taxation and Finance,Taxation and Finance +226709,Municipalities,Municipalities +226728,Housing,Housing +226787,Research and Development,Research and Development +226886,Health,Health +226886,Taxation and Finance,Taxation and Finance +226886,Small Business,Small Business +226886,Sports,Sports +226946,International Trade,International Trade +226984,Security,Security +227087,Industry,Industry +227088,Industry,Industry +335875,Industry,Industry +319187,Immigration,Immigration +227227,Labour,Labour +227276,Industry,Industry +227286,Industry,Industry +227291,Industry,Industry +227327,Defence,Defence +227333,Education,Education +228671,Research and Development,Research and Development +228671,Taxation and Finance,Taxation and Finance +254072,Security,Security +245469,Education,Education +227344,Housing,Housing +483649,Industry,Industry +237097,Climate,Climate +237092,Consumer Issues,Consumer Issues +237031,Industry,Industry +227427,Environment,Environment +227427,Energy,Energy +227513,Taxation and Finance,Taxation and Finance +232269,Immigration,Immigration +227595,Security,Security +444063,Housing,Housing +451205,Research and Development,Research and Development +227689,Transportation,Transportation +356576,Economic Development,Economic Development +405506,International Development,International Development +394601,Economic Development,Economic Development +228069,International Trade,International Trade +230426,Health,Health +275249,Official Languages,Official Languages +255169,Defence,Defence +255169,Government Procurement,Government Procurement +239072,Environment,Environment +376005,Forestry,Forestry +420122,Agriculture,Agriculture +414312,Justice and Law Enforcement,Justice and Law Enforcement +408665,Government Procurement,Government Procurement +233559,Justice and Law Enforcement,Justice and Law Enforcement +247249,Government Procurement,Government Procurement +247249,Industry,Industry +263069,Employment and Training,Employment and Training +501535,Economic Development,Economic Development +501513,Privacy and Access to Information,Privacy and Access to Information +333792,Research and Development,Research and Development +231571,Regional Development,Regional Development +247370,Climate,Climate +247370,Defence,Defence +247370,Economic Development,Economic Development +277239,Government Procurement,Government Procurement +247370,Industry,Industry +232889,Economic Development,Economic Development +232889,Environment,Environment +233476,Mining,Mining +376694,Regional Development,Regional Development +252719,Budget,Budget +236868,International Relations,International Relations +236868,Justice and Law Enforcement,Justice and Law Enforcement +399332,Economic Development,Economic Development +330270,Housing,Housing +399332,Infrastructure,Infrastructure +305011,Taxation and Finance,Taxation and Finance +229191,Research and Development,Research and Development +229192,Research and Development,Research and Development +229193,Research and Development,Research and Development +245730,Research and Development,Research and Development +229209,Research and Development,Research and Development +230759,Transportation,Transportation +229956,Consumer Issues,Consumer Issues +229532,Taxation and Finance,Taxation and Finance +229649,Agriculture,Agriculture +229951,International Development,International Development +229952,International Development,International Development +229953,Employment and Training,Employment and Training +230754,Transportation,Transportation +233402,Transportation,Transportation +229954,International Relations,International Relations +229955,International Development,International Development +229956,Financial Institutions,Financial Institutions +233091,Justice and Law Enforcement,Justice and Law Enforcement +369241,Energy,Energy +485365,Environment,Environment +471233,Taxation and Finance,Taxation and Finance +508472,Economic Development,Economic Development +524996,Economic Development,Economic Development +508472,Research and Development,Research and Development +231411,Defence,Defence +231411,Government Procurement,Government Procurement +231411,Industry,Industry +503344,Economic Development,Economic Development +230240,Regional Development,Regional Development +233862,Mining,Mining +245215,Mining,Mining +230350,Infrastructure,Infrastructure +230353,Infrastructure,Infrastructure +230365,Labour,Labour +230372,International Development,International Development +273597,Budget,Budget +376890,Labour,Labour +230575,Climate,Climate +230575,Environment,Environment +230953,Climate,Climate +230953,Environment,Environment +230952,Climate,Climate +230952,Environment,Environment +230578,Climate,Climate +230578,Environment,Environment +230579,Climate,Climate +230579,Environment,Environment +389982,Regional Development,Regional Development +233872,Consumer Issues,Consumer Issues +233872,Industry,Industry +233872,Internal Trade,Internal Trade +233872,International Trade,International Trade +233872,Security,Security +233872,Transportation,Transportation +230912,Taxation and Finance,Taxation and Finance +233559,Government Procurement,Government Procurement +230969,Climate,Climate +230969,Environment,Environment +227958,Climate,Climate +227958,Environment,Environment +427781,Infrastructure,Infrastructure +258970,Industry,Industry +475152,Taxation and Finance,Taxation and Finance +232510,Energy,Energy +232510,Environment,Environment +232510,International Trade,International Trade +239811,Energy,Energy +239811,Environment,Environment +239811,International Trade,International Trade +239850,Industry,Industry +239850,Energy,Energy +239850,International Trade,International Trade +239850,Environment,Environment +266829,Energy,Energy +234029,Taxation and Finance,Taxation and Finance +421015,Consumer Issues,Consumer Issues +469286,Economic Development,Economic Development +436686,International Trade,International Trade +444636,Research and Development,Research and Development +231629,Environment,Environment +234030,Taxation and Finance,Taxation and Finance +288229,Industry,Industry +234031,Taxation and Finance,Taxation and Finance +483013,Energy,Energy +369776,Research and Development,Research and Development +294511,Transportation,Transportation +250304,Education,Education +232011,Economic Development,Développement économique +233822,Economic Development,Economic Development +233822,Environment,Environment +233822,Regional Development,Regional Development +234271,Energy,Energy +263955,Environment,Environment +241525,Industry,Industry +236250,International Trade,International Trade +235229,Defence,Defence +279230,Energy,Energy +279230,Economic Development,Economic Development +233055,Economic Development,Economic Development +233055,Regional Development,Regional Development +232449,Government Procurement,Government Procurement +482465,Environment,Environment +482464,Environment,Environment +482463,Environment,Environment +475461,Environment,Environment +475447,Environment,Environment +475443,Environment,Environment +474573,Environment,Environment +471564,Environment,Environment +463691,Environment,Environment +463690,Environment,Environment +461819,Environment,Environment +461328,Environment,Environment +452014,Environment,Environment +451756,Environment,Environment +439849,Environment,Environment +436124,Environment,Environment +435913,Environment,Environment +435910,Environment,Environment +435908,Environment,Environment +435897,Environment,Environment +435893,Environment,Environment +435890,Environment,Environment +435884,Environment,Environment +427055,Environment,Environment +427052,Environment,Environment +427051,Environment,Environment +427050,Environment,Environment +427049,Environment,Environment +427043,Environment,Environment +417186,Environment,Environment +404991,Environment,Environment +399715,Environment,Environment +399714,Environment,Environment +541170,Environment,Environment +538582,Environment,Environment +538581,Environment,Environment +538580,Environment,Environment +520152,Environment,Environment +502456,Environment,Environment +502445,Environment,Environment +494617,Environment,Environment +491128,Environment,Environment +488859,Environment,Environment +486047,Environment,Environment +471232,Taxation and Finance,Taxation and Finance +471223,Taxation and Finance,Taxation and Finance +431250,Taxation and Finance,Taxation and Finance +425649,Taxation and Finance,Taxation and Finance +418290,Taxation and Finance,Taxation and Finance +403373,Taxation and Finance,Taxation and Finance +403328,Taxation and Finance,Taxation and Finance +399799,Taxation and Finance,Taxation and Finance +378193,Taxation and Finance,Taxation and Finance +378192,Taxation and Finance,Taxation and Finance +378191,Taxation and Finance,Taxation and Finance +378190,Taxation and Finance,Taxation and Finance +378189,Taxation and Finance,Taxation and Finance +378188,Taxation and Finance,Taxation and Finance +378187,Taxation and Finance,Taxation and Finance +378186,Taxation and Finance,Taxation and Finance +378185,Taxation and Finance,Taxation and Finance +378184,Taxation and Finance,Taxation and Finance +378183,Taxation and Finance,Taxation and Finance +378182,Taxation and Finance,Taxation and Finance +378181,Taxation and Finance,Taxation and Finance +378180,Taxation and Finance,Taxation and Finance +378179,Taxation and Finance,Taxation and Finance +378178,Taxation and Finance,Taxation and Finance +378177,Taxation and Finance,Taxation and Finance +378176,Taxation and Finance,Taxation and Finance +378175,Taxation and Finance,Taxation and Finance +378174,Taxation and Finance,Taxation and Finance +370474,Taxation and Finance,Taxation and Finance +369786,Taxation and Finance,Taxation and Finance +473738,Taxation and Finance,Taxation and Finance +473736,Taxation and Finance,Taxation and Finance +507831,Economic Development,Economic Development +497702,Economic Development,Economic Development +230216,Economic Development,Economic Development +286049,Economic Development,Economic Development +360322,Economic Development,Economic Development +358217,Economic Development,Economic Development +534120,Economic Development,Economic Development +524995,Economic Development,Economic Development +524994,Economic Development,Economic Development +230227,Economic Development,Economic Development +323589,Economic Development,Economic Development +303972,Economic Development,Economic Development +515403,Economic Development,Economic Development +510218,Economic Development,Economic Development +508479,Economic Development,Economic Development +507822,Economic Development,Economic Development +504156,Economic Development,Economic Development +500921,Economic Development,Economic Development +500920,Economic Development,Economic Development +500918,Economic Development,Economic Development +500916,Economic Development,Economic Development +497708,Economic Development,Economic Development +451323,Economic Development,Economic Development +528914,Economic Development,Economic Development +528904,Economic Development,Economic Development +525004,Economic Development,Economic Development +507831,Research and Development,Research and Development +507822,Research and Development,Research and Development +379728,Research and Development,Research and Development +360322,Research and Development,Research and Development +230227,Research and Development,Research and Development +504156,Research and Development,Research and Development +500921,Research and Development,Research and Development +500920,Research and Development,Research and Development +500918,Research and Development,Research and Development +500916,Research and Development,Research and Development +497708,Research and Development,Research and Development +497702,Research and Development,Research and Development +539371,Research and Development,Research and Development +539370,Research and Development,Research and Development +537205,Research and Development,Research and Development +537203,Research and Development,Research and Development +537201,Research and Development,Research and Development +537196,Research and Development,Research and Development +537194,Research and Development,Research and Development +534120,Research and Development,Research and Development +534116,Research and Development,Research and Development +532034,Research and Development,Research and Development +532033,Research and Development,Research and Development +528918,Research and Development,Research and Development +528914,Research and Development,Research and Development +528911,Research and Development,Research and Development +528907,Research and Development,Research and Development +528904,Research and Development,Research and Development +524996,Research and Development,Research and Development +524995,Research and Development,Research and Development +524994,Research and Development,Research and Development +524991,Research and Development,Research and Development +513753,Research and Development,Research and Development +512275,Research and Development,Research and Development +512274,Research and Development,Research and Development +512273,Research and Development,Research and Development +512272,Research and Development,Research and Development +512271,Research and Development,Research and Development +510218,Research and Development,Research and Development +510217,Research and Development,Research and Development +510216,Research and Development,Research and Development +508479,Research and Development,Research and Development +231410,Defence,Defence +231409,Defence,Defence +231417,Defence,Defence +231416,Defence,Defence +231415,Defence,Defence +231414,Defence,Defence +231413,Defence,Defence +231412,Defence,Defence +231410,Government Procurement,Government Procurement +231409,Government Procurement,Government Procurement +233593,Government Procurement,Government Procurement +233592,Government Procurement,Government Procurement +233591,Government Procurement,Government Procurement +233549,Government Procurement,Government Procurement +231417,Government Procurement,Government Procurement +231416,Government Procurement,Government Procurement +231415,Government Procurement,Government Procurement +231414,Government Procurement,Government Procurement +231413,Government Procurement,Government Procurement +231412,Government Procurement,Government Procurement +231410,Industry,Industry +231409,Industry,Industry +233590,Industry,Industry +231417,Industry,Industry +231416,Industry,Industry +231415,Industry,Industry +231414,Industry,Industry +231413,Industry,Industry +231412,Industry,Industry +503343,Economic Development,Economic Development +502960,Economic Development,Economic Development +230240,Economic Development,Economic Development +274990,Economic Development,Economic Development +240655,Economic Development,Economic Development +365258,Economic Development,Economic Development +503345,Economic Development,Economic Development +330353,Mining,Mining +330352,Mining,Mining +330351,Mining,Mining +330350,Mining,Mining +294909,Mining,Mining +291930,Mining,Mining +280612,Mining,Mining +259171,Mining,Mining +241194,Mining,Mining +245212,Mining,Mining +233855,Mining,Mining +282013,Mining,Mining +280611,Mining,Mining +275830,Mining,Mining +275827,Mining,Mining +275825,Mining,Mining +275823,Mining,Mining +273594,Budget,Budget +230448,Budget,Budget +335986,Budget,Budget +280398,Budget,Budget +277559,Budget,Budget +376884,Labour,Labour +510996,Labour,Labour +349303,Labour,Labour +313143,Labour,Labour +296738,Labour,Labour +230451,Labour,Labour +442623,Labour,Labour +424036,Labour,Labour +407794,Labour,Labour +406721,Labour,Labour +376893,Labour,Labour +387439,Regional Development,Regional Development +432825,Taxation and Finance,Taxation and Finance +420366,Taxation and Finance,Taxation and Finance +374567,Taxation and Finance,Taxation and Finance +350856,Taxation and Finance,Taxation and Finance +350853,Taxation and Finance,Taxation and Finance +296053,Taxation and Finance,Taxation and Finance +296052,Taxation and Finance,Taxation and Finance +289289,Taxation and Finance,Taxation and Finance +421185,Infrastructure,Infrastructure +411621,Infrastructure,Infrastructure +234829,Infrastructure,Infrastructure +400306,Infrastructure,Infrastructure +389197,Infrastructure,Infrastructure +387262,Infrastructure,Infrastructure +387257,Infrastructure,Infrastructure +385458,Infrastructure,Infrastructure +385445,Infrastructure,Infrastructure +385440,Infrastructure,Infrastructure +385400,Infrastructure,Infrastructure +385398,Infrastructure,Infrastructure +381593,Infrastructure,Infrastructure +378681,Infrastructure,Infrastructure +378627,Infrastructure,Infrastructure +378619,Infrastructure,Infrastructure +376144,Infrastructure,Infrastructure +376137,Infrastructure,Infrastructure +376136,Infrastructure,Infrastructure +367814,Infrastructure,Infrastructure +364585,Infrastructure,Infrastructure +364583,Infrastructure,Infrastructure +364582,Infrastructure,Infrastructure +361884,Infrastructure,Infrastructure +361003,Infrastructure,Infrastructure +354919,Infrastructure,Infrastructure +354821,Infrastructure,Infrastructure +317032,Infrastructure,Infrastructure +305308,Infrastructure,Infrastructure +283889,Infrastructure,Infrastructure +539150,Infrastructure,Infrastructure +537850,Infrastructure,Infrastructure +537845,Infrastructure,Infrastructure +537832,Infrastructure,Infrastructure +537829,Infrastructure,Infrastructure +534667,Infrastructure,Infrastructure +534660,Infrastructure,Infrastructure +534656,Infrastructure,Infrastructure +531528,Infrastructure,Infrastructure +529094,Infrastructure,Infrastructure +529078,Infrastructure,Infrastructure +525656,Infrastructure,Infrastructure +519730,Infrastructure,Infrastructure +519698,Infrastructure,Infrastructure +519693,Infrastructure,Infrastructure +519690,Infrastructure,Infrastructure +519688,Infrastructure,Infrastructure +519684,Infrastructure,Infrastructure +512779,Infrastructure,Infrastructure +510626,Infrastructure,Infrastructure +510580,Infrastructure,Infrastructure +510576,Infrastructure,Infrastructure +508252,Infrastructure,Infrastructure +505261,Infrastructure,Infrastructure +505242,Infrastructure,Infrastructure +505237,Infrastructure,Infrastructure +501935,Infrastructure,Infrastructure +480039,Infrastructure,Infrastructure +480017,Infrastructure,Infrastructure +476472,Infrastructure,Infrastructure +467795,Infrastructure,Infrastructure +464108,Infrastructure,Infrastructure +462263,Infrastructure,Infrastructure +453810,Infrastructure,Infrastructure +448768,Infrastructure,Infrastructure +447229,Infrastructure,Infrastructure +445692,Infrastructure,Infrastructure +444749,Infrastructure,Infrastructure +444743,Infrastructure,Infrastructure +432871,Infrastructure,Infrastructure +250591,Industry,Industry +250585,Industry,Industry +473075,Taxation and Finance,Taxation and Finance +464701,Taxation and Finance,Taxation and Finance +238811,Energy,Energy +238811,Environment,Environment +238811,International Trade,International Trade +239849,Industry,Industry +232570,Industry,Industry +239851,Industry,Industry +239849,Energy,Energy +232570,Energy,Energy +239851,Energy,Energy +239849,International Trade,International Trade +232570,International Trade,International Trade +239851,International Trade,International Trade +239849,Environment,Environment +232570,Environment,Environment +239851,Environment,Environment +261852,Energy,Energy +418852,Consumer Issues,Consumer Issues +401878,Consumer Issues,Consumer Issues +448703,Consumer Issues,Consumer Issues +427089,Consumer Issues,Consumer Issues +424700,Consumer Issues,Consumer Issues +469285,Economic Development,Economic Development +469284,Economic Development,Economic Development +380362,Economic Development,Economic Development +368349,Economic Development,Economic Development +330525,Economic Development,Economic Development +323561,Economic Development,Economic Development +445939,Economic Development,Economic Development +429767,Economic Development,Economic Development +420642,Economic Development,Economic Development +411073,Economic Development,Economic Development +411072,Economic Development,Economic Development +393392,Economic Development,Economic Development +393381,Economic Development,Economic Development +469302,Economic Development,Economic Development +469301,Economic Development,Economic Development +469300,Economic Development,Economic Development +469299,Economic Development,Economic Development +469298,Economic Development,Economic Development +469294,Economic Development,Economic Development +469293,Economic Development,Economic Development +469292,Economic Development,Economic Development +469289,Economic Development,Economic Development +469288,Economic Development,Economic Development +469287,Economic Development,Economic Development +436586,International Trade,International Trade +435577,International Trade,International Trade +393379,International Trade,International Trade +391231,International Trade,International Trade +389213,International Trade,International Trade +388668,International Trade,International Trade +384245,International Trade,International Trade +384095,International Trade,International Trade +380362,International Trade,International Trade +368355,International Trade,International Trade +368349,International Trade,International Trade +368348,International Trade,International Trade +368343,International Trade,International Trade +269789,International Trade,International Trade +434053,International Trade,International Trade +429767,International Trade,International Trade +427089,International Trade,International Trade +425411,International Trade,International Trade +424700,International Trade,International Trade +424566,International Trade,International Trade +422709,International Trade,International Trade +421015,International Trade,International Trade +420643,International Trade,International Trade +420368,International Trade,International Trade +419044,International Trade,International Trade +419042,International Trade,International Trade +419041,International Trade,International Trade +419040,International Trade,International Trade +419038,International Trade,International Trade +419034,International Trade,International Trade +419032,International Trade,International Trade +419031,International Trade,International Trade +419030,International Trade,International Trade +419029,International Trade,International Trade +419028,International Trade,International Trade +419027,International Trade,International Trade +419026,International Trade,International Trade +419025,International Trade,International Trade +419024,International Trade,International Trade +419023,International Trade,International Trade +419020,International Trade,International Trade +419019,International Trade,International Trade +419014,International Trade,International Trade +418882,International Trade,International Trade +418881,International Trade,International Trade +418852,International Trade,International Trade +418850,International Trade,International Trade +418549,International Trade,International Trade +417421,International Trade,International Trade +414143,International Trade,International Trade +411073,International Trade,International Trade +411072,International Trade,International Trade +401927,International Trade,International Trade +401924,International Trade,International Trade +401884,International Trade,International Trade +401878,International Trade,International Trade +397568,International Trade,International Trade +395110,International Trade,International Trade +393723,International Trade,International Trade +393718,International Trade,International Trade +393717,International Trade,International Trade +393481,International Trade,International Trade +393480,International Trade,International Trade +393479,International Trade,International Trade +393478,International Trade,International Trade +393409,International Trade,International Trade +393408,International Trade,International Trade +393407,International Trade,International Trade +393403,International Trade,International Trade +393402,International Trade,International Trade +393400,International Trade,International Trade +393398,International Trade,International Trade +393392,International Trade,International Trade +393391,International Trade,International Trade +393390,International Trade,International Trade +393389,International Trade,International Trade +393388,International Trade,International Trade +393384,International Trade,International Trade +393383,International Trade,International Trade +469302,International Trade,International Trade +460878,International Trade,International Trade +460541,International Trade,International Trade +459262,International Trade,International Trade +454864,International Trade,International Trade +454310,International Trade,International Trade +453700,International Trade,International Trade +453699,International Trade,International Trade +453697,International Trade,International Trade +452550,International Trade,International Trade +452545,International Trade,International Trade +448703,International Trade,International Trade +445939,International Trade,International Trade +444665,International Trade,International Trade +444638,International Trade,International Trade +444173,International Trade,International Trade +437272,International Trade,International Trade +437222,International Trade,International Trade +436687,International Trade,International Trade +444635,Research and Development,Research and Development +436687,Research and Development,Research and Development +269811,Research and Development,Research and Development +269789,Research and Development,Research and Development +348054,Research and Development,Research and Development +348053,Research and Development,Research and Development +348052,Research and Development,Research and Development +342257,Research and Development,Research and Development +332609,Research and Development,Research and Development +330527,Research and Development,Research and Development +330526,Research and Development,Research and Development +330525,Research and Development,Research and Development +323561,Research and Development,Research and Development +315331,Research and Development,Research and Development +315329,Research and Development,Research and Development +293189,Research and Development,Research and Development +436686,Research and Development,Research and Development +436587,Research and Development,Research and Development +436586,Research and Development,Research and Development +435577,Research and Development,Research and Development +434053,Research and Development,Research and Development +432322,Research and Development,Research and Development +432320,Research and Development,Research and Development +429767,Research and Development,Research and Development +427089,Research and Development,Research and Development +425411,Research and Development,Research and Development +424700,Research and Development,Research and Development +424566,Research and Development,Research and Development +421015,Research and Development,Research and Development +420368,Research and Development,Research and Development +419044,Research and Development,Research and Development +419042,Research and Development,Research and Development +419041,Research and Development,Research and Development +419040,Research and Development,Research and Development +419038,Research and Development,Research and Development +419034,Research and Development,Research and Development +419032,Research and Development,Research and Development +419031,Research and Development,Research and Development +419030,Research and Development,Research and Development +419029,Research and Development,Research and Development +419028,Research and Development,Research and Development +419027,Research and Development,Research and Development +419026,Research and Development,Research and Development +419025,Research and Development,Research and Development +419024,Research and Development,Research and Development +419023,Research and Development,Research and Development +419020,Research and Development,Research and Development +419019,Research and Development,Research and Development +419014,Research and Development,Research and Development +418882,Research and Development,Research and Development +418880,Research and Development,Research and Development +418852,Research and Development,Research and Development +418850,Research and Development,Research and Development +418847,Research and Development,Research and Development +418549,Research and Development,Research and Development +418495,Research and Development,Research and Development +399650,Research and Development,Research and Development +393392,Research and Development,Research and Development +393391,Research and Development,Research and Development +393390,Research and Development,Research and Development +393389,Research and Development,Research and Development +393388,Research and Development,Research and Development +393387,Research and Development,Research and Development +393381,Research and Development,Research and Development +393378,Research and Development,Research and Development +370125,Research and Development,Research and Development +368349,Research and Development,Research and Development +368347,Research and Development,Research and Development +368345,Research and Development,Research and Development +484305,Research and Development,Research and Development +484301,Research and Development,Research and Development +482905,Research and Development,Research and Development +469340,Research and Development,Research and Development +469284,Research and Development,Research and Development +462705,Research and Development,Research and Development +460878,Research and Development,Research and Development +460541,Research and Development,Research and Development +459262,Research and Development,Research and Development +458007,Research and Development,Research and Development +454864,Research and Development,Research and Development +454310,Research and Development,Research and Development +453700,Research and Development,Research and Development +453699,Research and Development,Research and Development +452545,Research and Development,Research and Development +448703,Research and Development,Research and Development +446026,Research and Development,Research and Development +445939,Research and Development,Research and Development +444716,Research and Development,Research and Development +444715,Research and Development,Research and Development +444714,Research and Development,Research and Development +444712,Research and Development,Research and Development +444711,Research and Development,Research and Development +444710,Research and Development,Research and Development +444709,Research and Development,Research and Development +444708,Research and Development,Research and Development +444707,Research and Development,Research and Development +444667,Research and Development,Research and Development +444665,Research and Development,Research and Development +444664,Research and Development,Research and Development +444663,Research and Development,Research and Development +444662,Research and Development,Research and Development +444661,Research and Development,Research and Development +444660,Research and Development,Research and Development +444659,Research and Development,Research and Development +444658,Research and Development,Research and Development +444653,Research and Development,Research and Development +444639,Research and Development,Research and Development +444638,Research and Development,Research and Development +444637,Research and Development,Research and Development +481342,Energy,Energy +481340,Energy,Energy +242809,Energy,Energy +373404,Energy,Energy +371233,Energy,Energy +370892,Energy,Energy +370717,Energy,Energy +370716,Energy,Energy +367909,Energy,Energy +367903,Energy,Energy +367901,Energy,Energy +367847,Energy,Energy +367506,Energy,Energy +367505,Energy,Energy +367463,Energy,Energy +366441,Energy,Energy +366440,Energy,Energy +366438,Energy,Energy +366371,Energy,Energy +366370,Energy,Energy +366264,Energy,Energy +366263,Energy,Energy +366262,Energy,Energy +363782,Energy,Energy +352985,Energy,Energy +352984,Energy,Energy +352983,Energy,Energy +352982,Energy,Energy +352981,Energy,Energy +350440,Energy,Energy +350439,Energy,Energy +350438,Energy,Energy +350437,Energy,Energy +348783,Energy,Energy +344281,Energy,Energy +344280,Energy,Energy +334869,Energy,Energy +326416,Energy,Energy +326415,Energy,Energy +309573,Energy,Energy +275371,Energy,Energy +275369,Energy,Energy +479430,Energy,Energy +479094,Energy,Energy +476929,Energy,Energy +476928,Energy,Energy +475295,Energy,Energy +474534,Energy,Energy +474364,Energy,Energy +474232,Energy,Energy +474064,Energy,Energy +474018,Energy,Energy +473995,Energy,Energy +472177,Energy,Energy +471903,Energy,Energy +471902,Energy,Energy +471634,Energy,Energy +471501,Energy,Energy +471445,Energy,Energy +471411,Energy,Energy +471135,Energy,Energy +469053,Energy,Energy +468971,Energy,Energy +466612,Energy,Energy +466610,Energy,Energy +465671,Energy,Energy +465668,Energy,Energy +465667,Energy,Energy +465665,Energy,Energy +463490,Energy,Energy +462889,Energy,Energy +462353,Energy,Energy +456771,Energy,Energy +456770,Energy,Energy +456388,Energy,Energy +456343,Energy,Energy +456341,Energy,Energy +453727,Energy,Energy +451171,Energy,Energy +451170,Energy,Energy +451169,Energy,Energy +451168,Energy,Energy +451167,Energy,Energy +450710,Energy,Energy +450315,Energy,Energy +444592,Energy,Energy +444591,Energy,Energy +444590,Energy,Energy +441561,Energy,Energy +441556,Energy,Energy +441550,Energy,Energy +440399,Energy,Energy +438479,Energy,Energy +438475,Energy,Energy +436456,Energy,Energy +436455,Energy,Energy +436454,Energy,Energy +436452,Energy,Energy +436451,Energy,Energy +436449,Energy,Energy +436448,Energy,Energy +436446,Energy,Energy +436399,Energy,Energy +436398,Energy,Energy +436397,Energy,Energy +436396,Energy,Energy +436395,Energy,Energy +436394,Energy,Energy +436393,Energy,Energy +436392,Energy,Energy +436161,Energy,Energy +436159,Energy,Energy +436077,Energy,Energy +436076,Energy,Energy +436075,Energy,Energy +436074,Energy,Energy +436073,Energy,Energy +434834,Energy,Energy +434110,Energy,Energy +434109,Energy,Energy +432186,Energy,Energy +431529,Energy,Energy +431527,Energy,Energy +429873,Energy,Energy +429749,Energy,Energy +429748,Energy,Energy +429746,Energy,Energy +429631,Energy,Energy +429628,Energy,Energy +429626,Energy,Energy +424755,Energy,Energy +414438,Energy,Energy +414115,Energy,Energy +411508,Energy,Energy +410795,Energy,Energy +410721,Energy,Energy +410720,Energy,Energy +410719,Energy,Energy +410718,Energy,Energy +410717,Energy,Energy +410716,Energy,Energy +410715,Energy,Energy +410714,Energy,Energy +410713,Energy,Energy +410712,Energy,Energy +410711,Energy,Energy +410710,Energy,Energy +410709,Energy,Energy +410708,Energy,Energy +410707,Energy,Energy +410705,Energy,Energy +410082,Energy,Energy +410081,Energy,Energy +410080,Energy,Energy +404230,Energy,Energy +401404,Energy,Energy +397575,Energy,Energy +397292,Energy,Energy +397291,Energy,Energy +395018,Energy,Energy +395010,Energy,Energy +395008,Energy,Energy +395006,Energy,Energy +393515,Energy,Energy +393092,Energy,Energy +392060,Energy,Energy +389945,Energy,Energy +389943,Energy,Energy +389942,Energy,Energy +389940,Energy,Energy +389939,Energy,Energy +389938,Energy,Energy +389937,Energy,Energy +389935,Energy,Energy +389934,Energy,Energy +389933,Energy,Energy +389932,Energy,Energy +389931,Energy,Energy +389930,Energy,Energy +389929,Energy,Energy +389928,Energy,Energy +389927,Energy,Energy +389926,Energy,Energy +389924,Energy,Energy +389923,Energy,Energy +389921,Energy,Energy +389919,Energy,Energy +389917,Energy,Energy +389916,Energy,Energy +389909,Energy,Energy +388978,Energy,Energy +388976,Energy,Energy +387312,Energy,Energy +383455,Energy,Energy +382013,Energy,Energy +379215,Energy,Energy +379212,Energy,Energy +379163,Energy,Energy +379161,Energy,Energy +376497,Energy,Energy +375766,Energy,Energy +375130,Energy,Energy +375127,Energy,Energy +374462,Energy,Energy +374461,Energy,Energy +542444,Energy,Energy +542270,Energy,Energy +542269,Energy,Energy +542172,Energy,Energy +541036,Energy,Energy +541034,Energy,Energy +541033,Energy,Energy +541032,Energy,Energy +541031,Energy,Energy +541030,Energy,Energy +541028,Energy,Energy +539090,Energy,Energy +539085,Energy,Energy +537033,Energy,Energy +537031,Energy,Energy +535730,Energy,Energy +535728,Energy,Energy +533140,Energy,Energy +533139,Energy,Energy +533138,Energy,Energy +531995,Energy,Energy +531994,Energy,Energy +530828,Energy,Energy +530824,Energy,Energy +530818,Energy,Energy +530817,Energy,Energy +530815,Energy,Energy +530814,Energy,Energy +530812,Energy,Energy +530396,Energy,Energy +530395,Energy,Energy +524054,Energy,Energy +524052,Energy,Energy +524051,Energy,Energy +524050,Energy,Energy +520646,Energy,Energy +518710,Energy,Energy +518709,Energy,Energy +517112,Energy,Energy +517102,Energy,Energy +517101,Energy,Energy +517098,Energy,Energy +517097,Energy,Energy +516068,Energy,Energy +514840,Energy,Energy +514839,Energy,Energy +513557,Energy,Energy +511924,Energy,Energy +511923,Energy,Energy +506945,Energy,Energy +506315,Energy,Energy +503914,Energy,Energy +503846,Energy,Energy +503845,Energy,Energy +503450,Energy,Energy +503205,Energy,Energy +503203,Energy,Energy +503202,Energy,Energy +503027,Energy,Energy +500585,Energy,Energy +500582,Energy,Energy +497843,Energy,Energy +497524,Energy,Energy +497518,Energy,Energy +497517,Energy,Energy +497231,Energy,Energy +497194,Energy,Energy +496760,Energy,Energy +496672,Energy,Energy +496671,Energy,Energy +496670,Energy,Energy +494655,Energy,Energy +494654,Energy,Energy +494376,Energy,Energy +494121,Energy,Energy +493934,Energy,Energy +493933,Energy,Energy +492940,Energy,Energy +492939,Energy,Energy +492938,Energy,Energy +492359,Energy,Energy +492358,Energy,Energy +492010,Energy,Energy +489736,Energy,Energy +489218,Energy,Energy +487735,Energy,Energy +486615,Energy,Energy +483014,Energy,Energy +369775,Research and Development,Research and Development +231791,Research and Development,Research and Development +372670,Research and Development,Research and Development +372666,Research and Development,Research and Development +372665,Research and Development,Research and Development +372662,Research and Development,Research and Development +372660,Research and Development,Research and Development +372657,Research and Development,Research and Development +372655,Research and Development,Research and Development +372653,Research and Development,Research and Development +372650,Research and Development,Research and Development +372647,Research and Development,Research and Development +372643,Research and Development,Research and Development +372640,Research and Development,Research and Development +372636,Research and Development,Research and Development +372635,Research and Development,Research and Development +372631,Research and Development,Research and Development +372629,Research and Development,Research and Development +372624,Research and Development,Research and Development +324780,Education,Education +232010,Economic Development,Développement économique +232009,Economic Development,Développement économique +243591,Economic Development,Développement économique +234570,Economic Development,Développement économique +234569,Economic Development,Développement économique +349621,Industry,Industry +349620,Industry,Industry +263955,Industry,Industry +234270,International Trade,International Trade +234269,International Trade,International Trade +279712,International Trade,International Trade +263955,International Trade,International Trade +247715,International Trade,International Trade +241527,International Trade,International Trade +241524,International Trade,International Trade +236270,International Trade,International Trade +232310,Consumer Issues,Consumer Issues +403784,International Trade,International Trade +401193,International Trade,International Trade +272817,International Trade,International Trade +272816,International Trade,International Trade +268295,International Trade,International Trade +268294,International Trade,International Trade +254014,International Trade,International Trade +254012,International Trade,International Trade +249850,International Trade,International Trade +249847,International Trade,International Trade +249846,International Trade,International Trade +249844,International Trade,International Trade +249842,International Trade,International Trade +243881,International Trade,International Trade +243880,International Trade,International Trade +237063,International Trade,International Trade +232389,International Trade,International Trade +407506,International Trade,International Trade +335075,Economic Development,Economic Development +335074,Economic Development,Economic Development +335073,Economic Development,Economic Development +335072,Economic Development,Economic Development +335071,Economic Development,Economic Development +341070,Economic Development,Economic Development +341069,Economic Development,Economic Development +341069,Industry,Industry +335075,Industry,Industry +335074,Industry,Industry +335073,Industry,Industry +335072,Industry,Industry +335071,Industry,Industry +335075,International Trade,International Trade +335074,International Trade,International Trade +335073,International Trade,International Trade +335072,International Trade,International Trade +341070,International Trade,International Trade +341069,International Trade,International Trade +388169,Justice and Law Enforcement,Justice and Law Enforcement +384578,Justice and Law Enforcement,Justice and Law Enforcement +384577,Justice and Law Enforcement,Justice and Law Enforcement +384444,Justice and Law Enforcement,Justice and Law Enforcement +384217,Justice and Law Enforcement,Justice and Law Enforcement +383210,Justice and Law Enforcement,Justice and Law Enforcement +383094,Justice and Law Enforcement,Justice and Law Enforcement +383093,Justice and Law Enforcement,Justice and Law Enforcement +382951,Justice and Law Enforcement,Justice and Law Enforcement +380219,Justice and Law Enforcement,Justice and Law Enforcement +377667,Justice and Law Enforcement,Justice and Law Enforcement +375690,Justice and Law Enforcement,Justice and Law Enforcement +375688,Justice and Law Enforcement,Justice and Law Enforcement +375196,Justice and Law Enforcement,Justice and Law Enforcement +375195,Justice and Law Enforcement,Justice and Law Enforcement +374808,Justice and Law Enforcement,Justice and Law Enforcement +374172,Justice and Law Enforcement,Justice and Law Enforcement +373754,Justice and Law Enforcement,Justice and Law Enforcement +373039,Justice and Law Enforcement,Justice and Law Enforcement +370947,Justice and Law Enforcement,Justice and Law Enforcement +370636,Justice and Law Enforcement,Justice and Law Enforcement +369916,Justice and Law Enforcement,Justice and Law Enforcement +368697,Justice and Law Enforcement,Justice and Law Enforcement +368587,Justice and Law Enforcement,Justice and Law Enforcement +368303,Justice and Law Enforcement,Justice and Law Enforcement +367987,Justice and Law Enforcement,Justice and Law Enforcement +367986,Justice and Law Enforcement,Justice and Law Enforcement +367985,Justice and Law Enforcement,Justice and Law Enforcement +365011,Justice and Law Enforcement,Justice and Law Enforcement +359814,Justice and Law Enforcement,Justice and Law Enforcement +358431,Justice and Law Enforcement,Justice and Law Enforcement +353736,Justice and Law Enforcement,Justice and Law Enforcement +353685,Justice and Law Enforcement,Justice and Law Enforcement +350999,Justice and Law Enforcement,Justice and Law Enforcement +375690,Security,Security +373754,Security,Security +384578,Security,Security +232730,Research and Development,Research and Development +250681,Budget,Budget +250680,Budget,Budget +250681,Sports,Sports +250680,Sports,Sports +319589,Sports,Sports +313129,Sports,Sports +311007,Sports,Sports +410914,Health,Health +410805,Health,Health +372765,Health,Health +368849,Health,Health +339649,Health,Health +335970,Health,Health +335960,Health,Health +335953,Health,Health +335948,Health,Health +333655,Health,Health +330149,Health,Health +330136,Health,Health +324656,Health,Health +318957,Health,Health +316529,Health,Health +311073,Health,Health +311072,Health,Health +311071,Health,Health +302229,Health,Health +295610,Health,Health +295609,Health,Health +275869,Health,Health +273302,Health,Health +273300,Health,Health +261776,Health,Health +261773,Health,Health +253189,Health,Health +244632,Health,Health +244629,Health,Health +431896,Health,Health +429789,Health,Health +423173,Health,Health +410916,Health,Health +427476,Transportation,Transportation +427474,Transportation,Transportation +236021,Infrastructure,Infrastructure +236020,Infrastructure,Infrastructure +244021,Infrastructure,Infrastructure +244020,Infrastructure,Infrastructure +244019,Infrastructure,Infrastructure +239790,Infrastructure,Infrastructure +236024,Infrastructure,Infrastructure +232874,Environment,Environment +418744,Defence,Defence +418003,Defence,Defence +232873,Defence,Defence +500746,Defence,Defence +500744,Defence,Defence +498916,Defence,Defence +498893,Defence,Defence +489910,Defence,Defence +470176,Defence,Defence +441964,Defence,Defence +441948,Defence,Defence +435101,Defence,Defence +435095,Defence,Defence +435092,Defence,Defence +432312,Defence,Defence +432309,Defence,Defence +432306,Defence,Defence +430094,Defence,Defence +423486,Defence,Defence +489900,Defence,Defence +470193,Defence,Defence +232873,Defence,Defence +445532,Defence,Defence +435106,Defence,Defence +435103,Defence,Defence +435093,Defence,Defence +432313,Defence,Defence +432311,Defence,Defence +432310,Defence,Defence +432307,Defence,Defence +425504,Defence,Defence +509835,Defence,Defence +503446,Defence,Defence +500747,Defence,Defence +500745,Defence,Defence +500734,Defence,Defence +476144,Employment and Training,Employment and Training +476140,Employment and Training,Employment and Training +290210,Employment and Training,Employment and Training +290209,Employment and Training,Employment and Training +273091,Employment and Training,Employment and Training +265911,Employment and Training,Employment and Training +265910,Employment and Training,Employment and Training +259314,Employment and Training,Employment and Training +259310,Employment and Training,Employment and Training +250627,Employment and Training,Employment and Training +245487,Employment and Training,Employment and Training +240620,Employment and Training,Employment and Training +233138,Employment and Training,Employment and Training +233137,Employment and Training,Employment and Training +233135,Employment and Training,Employment and Training +233133,Employment and Training,Employment and Training +371471,Employment and Training,Employment and Training +368780,Employment and Training,Employment and Training +333341,Employment and Training,Employment and Training +333340,Employment and Training,Employment and Training +333339,Employment and Training,Employment and Training +330341,Employment and Training,Employment and Training +330340,Employment and Training,Employment and Training +330336,Employment and Training,Employment and Training +327030,Employment and Training,Employment and Training +327029,Employment and Training,Employment and Training +327026,Employment and Training,Employment and Training +327025,Employment and Training,Employment and Training +245489,Employment and Training,Employment and Training +476145,Employment and Training,Employment and Training +237470,Employment and Training,Employment and Training +237469,Employment and Training,Employment and Training +233136,Employment and Training,Employment and Training +233134,Employment and Training,Employment and Training +383321,Employment and Training,Employment and Training +341605,Employment and Training,Employment and Training +330339,Employment and Training,Employment and Training +330337,Employment and Training,Employment and Training +330335,Employment and Training,Employment and Training +327027,Employment and Training,Employment and Training +327023,Employment and Training,Employment and Training +311051,Employment and Training,Employment and Training +273090,Employment and Training,Employment and Training +266550,Employment and Training,Employment and Training +265909,Employment and Training,Employment and Training +259313,Employment and Training,Employment and Training +259312,Employment and Training,Employment and Training +250623,Employment and Training,Employment and Training +245498,Employment and Training,Employment and Training +245496,Employment and Training,Employment and Training +489272,Budget,Budget +489251,Budget,Budget +311418,Budget,Budget +280769,Budget,Budget +280768,Budget,Budget +280766,Budget,Budget +233056,Budget,Budget +433654,Budget,Budget +408674,Budget,Budget +405970,Budget,Budget +375420,Budget,Budget +375402,Budget,Budget +375401,Budget,Budget +375394,Budget,Budget +311453,Budget,Budget +311452,Budget,Budget +311450,Budget,Budget +311426,Budget,Budget +311424,Budget,Budget +311422,Budget,Budget +311421,Budget,Budget +486217,Budget,Budget +486216,Budget,Budget +486215,Budget,Budget +486214,Budget,Budget +486213,Budget,Budget +486212,Budget,Budget +448625,Budget,Budget +448624,Budget,Budget +448622,Budget,Budget +448621,Budget,Budget +448619,Budget,Budget +448618,Budget,Budget +448617,Budget,Budget +448616,Budget,Budget +513656,Budget,Budget +512066,Budget,Budget +506775,Budget,Budget +503928,Budget,Budget +503927,Budget,Budget +503926,Budget,Budget +503902,Budget,Budget +503901,Budget,Budget +503878,Budget,Budget +500595,Budget,Budget +497099,Budget,Budget +497094,Budget,Budget +492919,Budget,Budget +492444,Budget,Budget +492443,Budget,Budget +492442,Budget,Budget +492441,Budget,Budget +492440,Budget,Budget +492438,Budget,Budget +492436,Budget,Budget +492399,Budget,Budget +492397,Budget,Budget +492395,Budget,Budget +492387,Budget,Budget +492386,Budget,Budget +492384,Budget,Budget +492382,Budget,Budget +492381,Budget,Budget +492380,Budget,Budget +492378,Budget,Budget +492376,Budget,Budget +492375,Budget,Budget +492371,Budget,Budget +492357,Budget,Budget +489276,Budget,Budget +489275,Budget,Budget +239010,Health,Health +239009,Health,Health +239010,Housing,Housing +239009,Housing,Housing +441049,Research and Development,Research and Development +441043,Research and Development,Research and Development +441041,Research and Development,Research and Development +435194,Research and Development,Research and Development +435189,Research and Development,Research and Development +428082,Research and Development,Research and Development +428066,Research and Development,Research and Development +428065,Research and Development,Research and Development +428064,Research and Development,Research and Development +425025,Research and Development,Research and Development +425022,Research and Development,Research and Development +421209,Research and Development,Research and Development +414932,Research and Development,Research and Development +370873,Research and Development,Research and Development +368451,Research and Development,Research and Development +364787,Research and Development,Research and Development +363268,Research and Development,Research and Development +362315,Research and Development,Research and Development +362313,Research and Development,Research and Development +362307,Research and Development,Research and Development +361369,Research and Development,Research and Development +361366,Research and Development,Research and Development +359646,Research and Development,Research and Development +358117,Research and Development,Research and Development +355965,Research and Development,Research and Development +355962,Research and Development,Research and Development +355941,Research and Development,Research and Development +352920,Research and Development,Research and Development +350534,Research and Development,Research and Development +347232,Research and Development,Research and Development +347027,Research and Development,Research and Development +347025,Research and Development,Research and Development +340583,Research and Development,Research and Development +233372,Research and Development,Research and Development +514504,Research and Development,Research and Development +507751,Research and Development,Research and Development +490350,Research and Development,Research and Development +463645,Research and Development,Research and Development +463635,Research and Development,Research and Development +460456,Research and Development,Research and Development +459226,Research and Development,Research and Development +458075,Research and Development,Research and Development +458073,Research and Development,Research and Development +448752,Research and Development,Research and Development +448751,Research and Development,Research and Development +448750,Research and Development,Research and Development +446587,Research and Development,Research and Development +446585,Research and Development,Research and Development +445010,Research and Development,Research and Development +423657,Research and Development,Research and Development +414915,Research and Development,Research and Development +289474,Research and Development,Research and Development +233373,Research and Development,Research and Development +353627,Research and Development,Research and Development +353626,Research and Development,Research and Development +350535,Research and Development,Research and Development +348701,Research and Development,Research and Development +348700,Research and Development,Research and Development +348698,Research and Development,Research and Development +348697,Research and Development,Research and Development +347231,Research and Development,Research and Development +347026,Research and Development,Research and Development +347024,Research and Development,Research and Development +340584,Research and Development,Research and Development +340582,Research and Development,Research and Development +335935,Research and Development,Research and Development +335932,Research and Development,Research and Development +331185,Research and Development,Research and Development +324729,Research and Development,Research and Development +324661,Research and Development,Research and Development +379284,Research and Development,Research and Development +379280,Research and Development,Research and Development +374250,Research and Development,Research and Development +370874,Research and Development,Research and Development +364791,Research and Development,Research and Development +361367,Research and Development,Research and Development +359650,Research and Development,Research and Development +359647,Research and Development,Research and Development +358119,Research and Development,Research and Development +358116,Research and Development,Research and Development +355964,Research and Development,Research and Development +355963,Research and Development,Research and Development +355961,Research and Development,Research and Development +353628,Research and Development,Research and Development +512807,Research and Development,Research and Development +512806,Research and Development,Research and Development +490347,Research and Development,Research and Development +486799,Research and Development,Research and Development +484915,Research and Development,Research and Development +463647,Research and Development,Research and Development +460464,Research and Development,Research and Development +458074,Research and Development,Research and Development +456569,Research and Development,Research and Development +456567,Research and Development,Research and Development +453988,Research and Development,Research and Development +448753,Research and Development,Research and Development +446586,Research and Development,Research and Development +446584,Research and Development,Research and Development +445016,Research and Development,Research and Development +445014,Research and Development,Research and Development +443164,Research and Development,Research and Development +441052,Research and Development,Research and Development +441047,Research and Development,Research and Development +441045,Research and Development,Research and Development +441042,Research and Development,Research and Development +438463,Research and Development,Research and Development +438456,Research and Development,Research and Development +438447,Research and Development,Research and Development +438446,Research and Development,Research and Development +438444,Research and Development,Research and Development +435186,Research and Development,Research and Development +435182,Research and Development,Research and Development +433404,Research and Development,Research and Development +432129,Research and Development,Research and Development +430445,Research and Development,Research and Development +430443,Research and Development,Research and Development +428073,Research and Development,Research and Development +428069,Research and Development,Research and Development +425024,Research and Development,Research and Development +425021,Research and Development,Research and Development +408000,Government Procurement,Government Procurement +407997,Government Procurement,Government Procurement +457072,Government Procurement,Government Procurement +452189,Government Procurement,Government Procurement +481411,Housing,Housing +481410,Housing,Housing +311440,Housing,Housing +545020,Housing,Housing +545018,Housing,Housing +534558,Housing,Housing +534548,Housing,Housing +516989,Housing,Housing +514900,Housing,Housing +514899,Housing,Housing +513811,Housing,Housing +512528,Housing,Housing +512527,Housing,Housing +506179,Housing,Housing +506151,Housing,Housing +506087,Housing,Housing +505908,Housing,Housing +505907,Housing,Housing +505906,Housing,Housing +490267,Housing,Housing +486234,Housing,Housing +486233,Housing,Housing +484722,Housing,Housing +482419,Housing,Housing +276871,Government Procurement,Government Procurement +273130,Government Procurement,Government Procurement +358070,Government Procurement,Government Procurement +356280,Government Procurement,Government Procurement +356278,Government Procurement,Government Procurement +327315,Government Procurement,Government Procurement +477501,Industry,Industry +464990,Industry,Industry +269750,Industry,Industry +239971,Industry,Industry +235871,Industry,Industry +235870,Industry,Industry +419774,Industry,Industry +416697,Industry,Industry +416688,Industry,Industry +400009,Industry,Industry +400008,Industry,Industry +400007,Industry,Industry +400006,Industry,Industry +400003,Industry,Industry +387335,Industry,Industry +353881,Industry,Industry +295169,Industry,Industry +277233,Industry,Industry +277230,Industry,Industry +501273,Industry,Industry +501272,Industry,Industry +498651,Industry,Industry +498612,Industry,Industry +482082,Infrastructure,Infrastructure +478279,Infrastructure,Infrastructure +262213,Infrastructure,Infrastructure +391144,Infrastructure,Infrastructure +361206,Infrastructure,Infrastructure +351238,Infrastructure,Infrastructure +351237,Infrastructure,Infrastructure +351233,Infrastructure,Infrastructure +351228,Infrastructure,Infrastructure +504790,Infrastructure,Infrastructure +504773,Infrastructure,Infrastructure +504766,Infrastructure,Infrastructure +504753,Infrastructure,Infrastructure +495417,Infrastructure,Infrastructure +244429,Regional Development,Regional Development +250884,Government Procurement,Government Procurement +240856,Government Procurement,Government Procurement +240855,Government Procurement,Government Procurement +233601,Government Procurement,Government Procurement +310870,Transportation,Transportation +250870,Transportation,Transportation +247151,Taxation and Finance,Taxation and Finance +247150,Taxation and Finance,Taxation and Finance +257752,Taxation and Finance,Taxation and Finance +257751,Taxation and Finance,Taxation and Finance +257750,Taxation and Finance,Taxation and Finance +257749,Taxation and Finance,Taxation and Finance +247153,Taxation and Finance,Taxation and Finance +243590,Economic Development,Développement économique +243589,Economic Development,Développement économique +412989,Agriculture,Agriculture +412988,Agriculture,Agriculture +451354,Environment,Environment +451348,Environment,Environment +272709,Environment,Environment +264089,Environment,Environment +247819,Environment,Environment +244896,Environment,Environment +244895,Environment,Environment +244894,Environment,Environment +309776,Environment,Environment +302569,Environment,Environment +287529,Environment,Environment +287511,Environment,Environment +287509,Environment,Environment +272710,Environment,Environment +427655,Environment,Environment +427653,Environment,Environment +389728,Environment,Environment +533160,Environment,Environment +485982,Environment,Environment +485981,Environment,Environment +451359,Environment,Environment +451358,Environment,Environment +451357,Environment,Environment +451356,Environment,Environment +451354,Transportation,Transportation +451348,Transportation,Transportation +389728,Transportation,Transportation +427655,Transportation,Transportation +427653,Transportation,Transportation +460344,Environment,Environment +460343,Environment,Environment +260409,Environment,Environment +251873,Environment,Environment +251872,Environment,Environment +251871,Environment,Environment +251870,Environment,Environment +251869,Environment,Environment +246497,Environment,Environment +246496,Environment,Environment +246495,Environment,Environment +246494,Environment,Environment +246493,Environment,Environment +246490,Environment,Environment +246469,Environment,Environment +246449,Environment,Environment +246431,Environment,Environment +246430,Environment,Environment +246429,Environment,Environment +241429,Environment,Environment +379930,Environment,Environment +379912,Environment,Environment +372985,Environment,Environment +372984,Environment,Environment +372983,Environment,Environment +372982,Environment,Environment +372981,Environment,Environment +372980,Environment,Environment +372979,Environment,Environment +372978,Environment,Environment +372977,Environment,Environment +369553,Environment,Environment +369548,Environment,Environment +366486,Environment,Environment +366485,Environment,Environment +366484,Environment,Environment +366382,Environment,Environment +356435,Environment,Environment +356434,Environment,Environment +342086,Environment,Environment +342084,Environment,Environment +342082,Environment,Environment +342078,Environment,Environment +342071,Environment,Environment +342070,Environment,Environment +342068,Environment,Environment +338399,Environment,Environment +338398,Environment,Environment +310759,Environment,Environment +310758,Environment,Environment +310757,Environment,Environment +310756,Environment,Environment +310755,Environment,Environment +310754,Environment,Environment +310753,Environment,Environment +310751,Environment,Environment +310749,Environment,Environment +310746,Environment,Environment +310742,Environment,Environment +304869,Environment,Environment +297389,Environment,Environment +289835,Environment,Environment +286469,Environment,Environment +284869,Environment,Environment +283333,Environment,Environment +283332,Environment,Environment +283330,Environment,Environment +273557,Environment,Environment +260411,Environment,Environment +460342,Environment,Environment +460341,Environment,Environment +460339,Environment,Environment +460338,Environment,Environment +460337,Environment,Environment +460336,Environment,Environment +460335,Environment,Environment +460334,Environment,Environment +460329,Environment,Environment +460321,Environment,Environment +460320,Environment,Environment +439819,Environment,Environment +439814,Environment,Environment +431376,Environment,Environment +422048,Environment,Environment +418344,Environment,Environment +418314,Environment,Environment +417284,Environment,Environment +417282,Environment,Environment +417280,Environment,Environment +417276,Environment,Environment +417275,Environment,Environment +417273,Environment,Environment +417271,Environment,Environment +416980,Environment,Environment +416979,Environment,Environment +416978,Environment,Environment +416977,Environment,Environment +413239,Environment,Environment +410335,Environment,Environment +410329,Environment,Environment +408244,Environment,Environment +406969,Environment,Environment +406968,Environment,Environment +406653,Environment,Environment +406320,Environment,Environment +406136,Environment,Environment +405965,Environment,Environment +405963,Environment,Environment +405884,Environment,Environment +405883,Environment,Environment +405882,Environment,Environment +405880,Environment,Environment +405878,Environment,Environment +405876,Environment,Environment +405875,Environment,Environment +405874,Environment,Environment +405873,Environment,Environment +404008,Environment,Environment +392823,Environment,Environment +391615,Environment,Environment +391614,Environment,Environment +391613,Environment,Environment +391612,Environment,Environment +391610,Environment,Environment +391607,Environment,Environment +391604,Environment,Environment +391602,Environment,Environment +391598,Environment,Environment +388459,Environment,Environment +387965,Environment,Environment +387838,Environment,Environment +387829,Environment,Environment +387820,Environment,Environment +387815,Environment,Environment +387696,Environment,Environment +383238,Environment,Environment +381710,Environment,Environment +538171,Environment,Environment +538167,Environment,Environment +538165,Environment,Environment +538162,Environment,Environment +538157,Environment,Environment +538155,Environment,Environment +538150,Environment,Environment +536883,Environment,Environment +532404,Environment,Environment +526653,Environment,Environment +526649,Environment,Environment +526647,Environment,Environment +526643,Environment,Environment +523654,Environment,Environment +519669,Environment,Environment +519662,Environment,Environment +519656,Environment,Environment +518390,Environment,Environment +518058,Environment,Environment +518044,Environment,Environment +518039,Environment,Environment +515702,Environment,Environment +512568,Environment,Environment +512566,Environment,Environment +510856,Environment,Environment +510855,Environment,Environment +510695,Environment,Environment +510675,Environment,Environment +510661,Environment,Environment +510472,Environment,Environment +510450,Environment,Environment +510415,Environment,Environment +508624,Environment,Environment +504740,Environment,Environment +502417,Environment,Environment +502414,Environment,Environment +499216,Environment,Environment +495078,Environment,Environment +495072,Environment,Environment +493120,Environment,Environment +493112,Environment,Environment +493107,Environment,Environment +493099,Environment,Environment +493098,Environment,Environment +491327,Environment,Environment +491313,Environment,Environment +491309,Environment,Environment +491291,Environment,Environment +491283,Environment,Environment +491273,Environment,Environment +491266,Environment,Environment +491255,Environment,Environment +491245,Environment,Environment +487388,Environment,Environment +487376,Environment,Environment +487360,Environment,Environment +487358,Environment,Environment +487351,Environment,Environment +487342,Environment,Environment +487338,Environment,Environment +487332,Environment,Environment +487321,Environment,Environment +487319,Environment,Environment +487318,Environment,Environment +487316,Environment,Environment +485487,Environment,Environment +485486,Environment,Environment +484717,Environment,Environment +483914,Environment,Environment +476092,Environment,Environment +465067,Environment,Environment +462906,Environment,Environment +462905,Environment,Environment +461822,Environment,Environment +460364,Environment,Environment +460363,Environment,Environment +460362,Environment,Environment +460358,Environment,Environment +460355,Environment,Environment +460349,Environment,Environment +460348,Environment,Environment +460347,Environment,Environment +460346,Environment,Environment +251869,Climate,Climate +246489,Fisheries,Fisheries +246469,Fisheries,Fisheries +356435,Fisheries,Fisheries +342068,Fisheries,Fisheries +338399,Fisheries,Fisheries +338398,Fisheries,Fisheries +310746,Fisheries,Fisheries +297389,Fisheries,Fisheries +251873,Fisheries,Fisheries +246492,Fisheries,Fisheries +421747,Agriculture,Agriculture +396040,Agriculture,Agriculture +375491,Agriculture,Agriculture +370697,Agriculture,Agriculture +370291,Agriculture,Agriculture +345737,Agriculture,Agriculture +345717,Agriculture,Agriculture +315426,Agriculture,Agriculture +315414,Agriculture,Agriculture +259461,Agriculture,Agriculture +448441,Agriculture,Agriculture +448440,Agriculture,Agriculture +345737,Internal Trade,Commerce intérieur +345717,Internal Trade,Commerce intérieur +421753,Internal Trade,Commerce intérieur +421747,Internal Trade,Commerce intérieur +396040,Internal Trade,Commerce intérieur +375491,Internal Trade,Commerce intérieur +370697,Internal Trade,Commerce intérieur +345737,International Trade,Commerce international +345717,International Trade,Commerce international +315426,International Trade,Commerce international +315414,International Trade,Commerce international +259461,International Trade,Commerce international +421753,International Trade,Commerce international +421747,International Trade,Commerce international +396040,International Trade,Commerce international +375491,International Trade,Commerce international +370697,International Trade,Commerce international +234869,Taxation and Finance,Taxation and Finance +489045,Taxation and Finance,Taxation and Finance +251590,Taxation and Finance,Taxation and Finance +246349,Taxation and Finance,Taxation and Finance +242352,Taxation and Finance,Taxation and Finance +239409,Taxation and Finance,Taxation and Finance +234889,Taxation and Finance,Taxation and Finance +474809,Labour,Labour +474808,Labour,Labour +251590,Labour,Labour +440455,Labour,Labour +440454,Labour,Labour +440453,Labour,Labour +440452,Labour,Labour +440450,Labour,Labour +440448,Labour,Labour +440447,Labour,Labour +440446,Labour,Labour +440445,Labour,Labour +440442,Labour,Labour +440441,Labour,Labour +440439,Labour,Labour +440438,Labour,Labour +440436,Labour,Labour +440434,Labour,Labour +415486,Labour,Labour +415481,Labour,Labour +415480,Labour,Labour +415476,Labour,Labour +415474,Labour,Labour +415472,Labour,Labour +415468,Labour,Labour +415467,Labour,Labour +415464,Labour,Labour +415463,Labour,Labour +415462,Labour,Labour +415460,Labour,Labour +415459,Labour,Labour +415458,Labour,Labour +415457,Labour,Labour +390555,Labour,Labour +390554,Labour,Labour +390552,Labour,Labour +390551,Labour,Labour +390548,Labour,Labour +390546,Labour,Labour +390543,Labour,Labour +534464,Labour,Labour +534461,Labour,Labour +534458,Labour,Labour +534455,Labour,Labour +534412,Labour,Labour +523584,Labour,Labour +521612,Labour,Labour +521609,Labour,Labour +521603,Labour,Labour +521595,Labour,Labour +489116,Labour,Labour +489113,Labour,Labour +489109,Labour,Labour +489105,Labour,Labour +489103,Labour,Labour +489102,Labour,Labour +489100,Labour,Labour +489045,Labour,Labour +489024,Labour,Labour +489023,Labour,Labour +489022,Labour,Labour +474817,Labour,Labour +474816,Labour,Labour +474814,Labour,Labour +474813,Labour,Labour +239989,Health,Health +237609,Health,Health +252211,International Trade,International Trade +241990,International Trade,International Trade +241989,International Trade,International Trade +277517,International Trade,International Trade +277515,International Trade,International Trade +240755,Agriculture,Agriculture +246870,Security,Security +246869,Security,Security +311317,Security,Security +311249,Security,Security +311150,Security,Security +309032,Security,Security +306450,Security,Security +306449,Security,Security +300974,Security,Security +298530,Security,Security +298513,Security,Security +298512,Security,Security +298511,Security,Security +298510,Security,Security +298509,Security,Security +271558,Security,Security +271557,Security,Security +271556,Security,Security +269929,Security,Security +261857,Security,Security +247031,Security,Security +246890,Security,Security +246874,Security,Security +246873,Security,Security +246872,Security,Security +240469,Economic Development,Economic Development +235469,Economic Development,Economic Development +246969,Economic Development,Economic Development +448224,Small Business,Small Business +307731,Consumer Issues,Consumer Issues +291869,Consumer Issues,Consumer Issues +329670,Consumer Issues,Consumer Issues +307741,Consumer Issues,Consumer Issues +307735,Consumer Issues,Consumer Issues +307734,Consumer Issues,Consumer Issues +307747,Energy,Energy +307746,Energy,Energy +307743,Energy,Energy +307742,Energy,Energy +307741,Energy,Energy +307738,Energy,Energy +307737,Energy,Energy +307736,Energy,Energy +307735,Energy,Energy +307734,Energy,Energy +307733,Energy,Energy +307732,Energy,Energy +307731,Energy,Energy +298649,Energy,Energy +291889,Energy,Energy +339569,Energy,Energy +339359,Energy,Energy +339358,Energy,Energy +339357,Energy,Energy +339356,Energy,Energy +339330,Energy,Energy +332834,Energy,Energy +329673,Energy,Energy +329670,Energy,Energy +376245,Energy,Energy +307738,Environment,Environment +307732,Environment,Environment +307745,Environment,Environment +307742,Environment,Environment +329673,Infrastructure,Infrastructure +329670,Infrastructure,Infrastructure +248549,International Trade,International Trade +238249,International Trade,International Trade +358624,International Trade,International Trade +358482,International Trade,International Trade +356596,International Trade,International Trade +334850,International Trade,International Trade +324409,International Trade,International Trade +316250,International Trade,International Trade +316249,International Trade,International Trade +299130,International Trade,International Trade +299129,International Trade,International Trade +241113,Agriculture,Agriculture +241112,Agriculture,Agriculture +250776,Agriculture,Agriculture +244071,Agriculture,Agriculture +244070,Agriculture,Agriculture +241113,Industry,Industry +241112,Industry,Industry +250776,Industry,Industry +244070,Internal Trade,Internal Trade +244069,Internal Trade,Internal Trade +463527,Budget,Budget +463526,Budget,Budget +301931,Budget,Budget +296529,Budget,Budget +286350,Budget,Budget +276472,Budget,Budget +273241,Budget,Budget +399459,Budget,Budget +399458,Budget,Budget +399456,Budget,Budget +392175,Budget,Budget +392174,Budget,Budget +392173,Budget,Budget +389109,Budget,Budget +384823,Budget,Budget +384822,Budget,Budget +375836,Budget,Budget +370793,Budget,Budget +367530,Budget,Budget +324289,Budget,Budget +410697,Budget,Budget +407224,Budget,Budget +530831,Budget,Budget +530826,Budget,Budget +530822,Budget,Budget +530803,Budget,Budget +523400,Budget,Budget +523398,Budget,Budget +519098,Budget,Budget +519096,Budget,Budget +506325,Budget,Budget +500460,Budget,Budget +497716,Budget,Budget +496852,Budget,Budget +496851,Budget,Budget +495178,Budget,Budget +494311,Budget,Budget +494310,Budget,Budget +494309,Budget,Budget +494307,Budget,Budget +494305,Budget,Budget +494304,Budget,Budget +493997,Budget,Budget +493918,Budget,Budget +493917,Budget,Budget +485623,Budget,Budget +485622,Budget,Budget +481523,Budget,Budget +481521,Budget,Budget +477502,Budget,Budget +466693,Budget,Budget +466692,Budget,Budget +466691,Budget,Budget +318891,Immigration,Immigration +296529,Immigration,Immigration +523884,Defence,Defence +523543,Defence,Defence +377935,Defence,Defence +377932,Defence,Defence +356542,Defence,Defence +347537,Defence,Defence +344221,Defence,Defence +342005,Defence,Defence +341997,Defence,Defence +341989,Defence,Defence +341988,Defence,Defence +338587,Defence,Defence +335831,Defence,Defence +335533,Defence,Defence +331599,Defence,Defence +322410,Defence,Defence +322409,Defence,Defence +293949,Defence,Defence +254850,Defence,Defence +519045,Defence,Defence +505044,Defence,Defence +497313,Defence,Defence +485464,Defence,Defence +476229,Defence,Defence +474568,Defence,Defence +465441,Defence,Defence +453743,Defence,Defence +395615,Defence,Defence +540541,Defence,Defence +540310,Defence,Defence +533239,Defence,Defence +531536,Defence,Defence +530730,Defence,Defence +528331,Defence,Defence +527468,Defence,Defence +527452,Defence,Defence +527311,Defence,Defence +526745,Defence,Defence +524694,Defence,Defence +524474,Defence,Defence +471656,Infrastructure,Infrastructure +471468,Infrastructure,Infrastructure +341995,Infrastructure,Infrastructure +341989,Infrastructure,Infrastructure +471367,Infrastructure,Infrastructure +471364,Infrastructure,Infrastructure +471359,Infrastructure,Infrastructure +471345,Infrastructure,Infrastructure +470931,Infrastructure,Infrastructure +469450,Infrastructure,Infrastructure +468995,Infrastructure,Infrastructure +466874,Infrastructure,Infrastructure +466670,Infrastructure,Infrastructure +465990,Infrastructure,Infrastructure +465441,Infrastructure,Infrastructure +465304,Infrastructure,Infrastructure +465282,Infrastructure,Infrastructure +464007,Infrastructure,Infrastructure +463422,Infrastructure,Infrastructure +463230,Infrastructure,Infrastructure +463066,Infrastructure,Infrastructure +462942,Infrastructure,Infrastructure +462556,Infrastructure,Infrastructure +460852,Infrastructure,Infrastructure +460269,Infrastructure,Infrastructure +460033,Infrastructure,Infrastructure +459888,Infrastructure,Infrastructure +459859,Infrastructure,Infrastructure +458636,Infrastructure,Infrastructure +458420,Infrastructure,Infrastructure +458211,Infrastructure,Infrastructure +458180,Infrastructure,Infrastructure +457872,Infrastructure,Infrastructure +457867,Infrastructure,Infrastructure +457864,Infrastructure,Infrastructure +457857,Infrastructure,Infrastructure +457583,Infrastructure,Infrastructure +456939,Infrastructure,Infrastructure +456827,Infrastructure,Infrastructure +456686,Infrastructure,Infrastructure +456674,Infrastructure,Infrastructure +456671,Infrastructure,Infrastructure +456609,Infrastructure,Infrastructure +456603,Infrastructure,Infrastructure +456577,Infrastructure,Infrastructure +456472,Infrastructure,Infrastructure +456463,Infrastructure,Infrastructure +456402,Infrastructure,Infrastructure +456331,Infrastructure,Infrastructure +456330,Infrastructure,Infrastructure +456106,Infrastructure,Infrastructure +456083,Infrastructure,Infrastructure +455557,Infrastructure,Infrastructure +455201,Infrastructure,Infrastructure +454814,Infrastructure,Infrastructure +454656,Infrastructure,Infrastructure +454567,Infrastructure,Infrastructure +454566,Infrastructure,Infrastructure +454565,Infrastructure,Infrastructure +454564,Infrastructure,Infrastructure +454122,Infrastructure,Infrastructure +453933,Infrastructure,Infrastructure +453744,Infrastructure,Infrastructure +453743,Infrastructure,Infrastructure +453742,Infrastructure,Infrastructure +453741,Infrastructure,Infrastructure +453740,Infrastructure,Infrastructure +453739,Infrastructure,Infrastructure +453738,Infrastructure,Infrastructure +453705,Infrastructure,Infrastructure +453677,Infrastructure,Infrastructure +453667,Infrastructure,Infrastructure +453602,Infrastructure,Infrastructure +453122,Infrastructure,Infrastructure +453067,Infrastructure,Infrastructure +453066,Infrastructure,Infrastructure +451688,Infrastructure,Infrastructure +451686,Infrastructure,Infrastructure +451685,Infrastructure,Infrastructure +451617,Infrastructure,Infrastructure +451565,Infrastructure,Infrastructure +451405,Infrastructure,Infrastructure +451403,Infrastructure,Infrastructure +451255,Infrastructure,Infrastructure +451191,Infrastructure,Infrastructure +451155,Infrastructure,Infrastructure +451154,Infrastructure,Infrastructure +450950,Infrastructure,Infrastructure +450887,Infrastructure,Infrastructure +450886,Infrastructure,Infrastructure +450885,Infrastructure,Infrastructure +450847,Infrastructure,Infrastructure +450842,Infrastructure,Infrastructure +450743,Infrastructure,Infrastructure +450739,Infrastructure,Infrastructure +450684,Infrastructure,Infrastructure +450648,Infrastructure,Infrastructure +450394,Infrastructure,Infrastructure +450205,Infrastructure,Infrastructure +450204,Infrastructure,Infrastructure +449984,Infrastructure,Infrastructure +449849,Infrastructure,Infrastructure +449159,Infrastructure,Infrastructure +449127,Infrastructure,Infrastructure +449087,Infrastructure,Infrastructure +448969,Infrastructure,Infrastructure +448611,Infrastructure,Infrastructure +448593,Infrastructure,Infrastructure +448561,Infrastructure,Infrastructure +448431,Infrastructure,Infrastructure +447320,Infrastructure,Infrastructure +447065,Infrastructure,Infrastructure +446768,Infrastructure,Infrastructure +446725,Infrastructure,Infrastructure +446657,Infrastructure,Infrastructure +446612,Infrastructure,Infrastructure +446162,Infrastructure,Infrastructure +446161,Infrastructure,Infrastructure +446059,Infrastructure,Infrastructure +446058,Infrastructure,Infrastructure +445936,Infrastructure,Infrastructure +445354,Infrastructure,Infrastructure +445154,Infrastructure,Infrastructure +444702,Infrastructure,Infrastructure +444306,Infrastructure,Infrastructure +444197,Infrastructure,Infrastructure +444193,Infrastructure,Infrastructure +444097,Infrastructure,Infrastructure +444021,Infrastructure,Infrastructure +443263,Infrastructure,Infrastructure +443006,Infrastructure,Infrastructure +442983,Infrastructure,Infrastructure +442274,Infrastructure,Infrastructure +441278,Infrastructure,Infrastructure +441004,Infrastructure,Infrastructure +394276,Infrastructure,Infrastructure +543674,Infrastructure,Infrastructure +543671,Infrastructure,Infrastructure +542752,Infrastructure,Infrastructure +542276,Infrastructure,Infrastructure +542121,Infrastructure,Infrastructure +541428,Infrastructure,Infrastructure +541261,Infrastructure,Infrastructure +540953,Infrastructure,Infrastructure +540695,Infrastructure,Infrastructure +540541,Infrastructure,Infrastructure +540423,Infrastructure,Infrastructure +540310,Infrastructure,Infrastructure +538990,Infrastructure,Infrastructure +538637,Infrastructure,Infrastructure +537501,Infrastructure,Infrastructure +537472,Infrastructure,Infrastructure +536553,Infrastructure,Infrastructure +536396,Infrastructure,Infrastructure +536181,Infrastructure,Infrastructure +536180,Infrastructure,Infrastructure +536132,Infrastructure,Infrastructure +535972,Infrastructure,Infrastructure +533239,Infrastructure,Infrastructure +532252,Infrastructure,Infrastructure +532103,Infrastructure,Infrastructure +531536,Infrastructure,Infrastructure +530852,Infrastructure,Infrastructure +530730,Infrastructure,Infrastructure +530143,Infrastructure,Infrastructure +530056,Infrastructure,Infrastructure +528331,Infrastructure,Infrastructure +527840,Infrastructure,Infrastructure +527726,Infrastructure,Infrastructure +527468,Infrastructure,Infrastructure +527452,Infrastructure,Infrastructure +527311,Infrastructure,Infrastructure +526808,Infrastructure,Infrastructure +526806,Infrastructure,Infrastructure +526745,Infrastructure,Infrastructure +524800,Infrastructure,Infrastructure +524694,Infrastructure,Infrastructure +524474,Infrastructure,Infrastructure +523995,Infrastructure,Infrastructure +523894,Infrastructure,Infrastructure +523884,Infrastructure,Infrastructure +523741,Infrastructure,Infrastructure +523662,Infrastructure,Infrastructure +523543,Infrastructure,Infrastructure +523397,Infrastructure,Infrastructure +520887,Infrastructure,Infrastructure +520743,Infrastructure,Infrastructure +520701,Infrastructure,Infrastructure +520653,Infrastructure,Infrastructure +520549,Infrastructure,Infrastructure +520360,Infrastructure,Infrastructure +519636,Infrastructure,Infrastructure +519104,Infrastructure,Infrastructure +519045,Infrastructure,Infrastructure +518826,Infrastructure,Infrastructure +518388,Infrastructure,Infrastructure +516586,Infrastructure,Infrastructure +516316,Infrastructure,Infrastructure +516224,Infrastructure,Infrastructure +516180,Infrastructure,Infrastructure +516154,Infrastructure,Infrastructure +516127,Infrastructure,Infrastructure +515435,Infrastructure,Infrastructure +515399,Infrastructure,Infrastructure +515073,Infrastructure,Infrastructure +514917,Infrastructure,Infrastructure +513555,Infrastructure,Infrastructure +513550,Infrastructure,Infrastructure +513533,Infrastructure,Infrastructure +513525,Infrastructure,Infrastructure +513512,Infrastructure,Infrastructure +513364,Infrastructure,Infrastructure +512496,Infrastructure,Infrastructure +512467,Infrastructure,Infrastructure +512313,Infrastructure,Infrastructure +512048,Infrastructure,Infrastructure +512041,Infrastructure,Infrastructure +511960,Infrastructure,Infrastructure +511919,Infrastructure,Infrastructure +511918,Infrastructure,Infrastructure +511781,Infrastructure,Infrastructure +511778,Infrastructure,Infrastructure +511774,Infrastructure,Infrastructure +511759,Infrastructure,Infrastructure +511758,Infrastructure,Infrastructure +511698,Infrastructure,Infrastructure +511697,Infrastructure,Infrastructure +511620,Infrastructure,Infrastructure +511557,Infrastructure,Infrastructure +511075,Infrastructure,Infrastructure +509529,Infrastructure,Infrastructure +509385,Infrastructure,Infrastructure +509263,Infrastructure,Infrastructure +509232,Infrastructure,Infrastructure +509162,Infrastructure,Infrastructure +507201,Infrastructure,Infrastructure +507054,Infrastructure,Infrastructure +506951,Infrastructure,Infrastructure +506896,Infrastructure,Infrastructure +506894,Infrastructure,Infrastructure +506474,Infrastructure,Infrastructure +506443,Infrastructure,Infrastructure +506417,Infrastructure,Infrastructure +506414,Infrastructure,Infrastructure +506399,Infrastructure,Infrastructure +506389,Infrastructure,Infrastructure +506368,Infrastructure,Infrastructure +506360,Infrastructure,Infrastructure +506358,Infrastructure,Infrastructure +506194,Infrastructure,Infrastructure +506180,Infrastructure,Infrastructure +506162,Infrastructure,Infrastructure +506131,Infrastructure,Infrastructure +506107,Infrastructure,Infrastructure +506079,Infrastructure,Infrastructure +505044,Infrastructure,Infrastructure +504004,Infrastructure,Infrastructure +503747,Infrastructure,Infrastructure +503458,Infrastructure,Infrastructure +503324,Infrastructure,Infrastructure +503298,Infrastructure,Infrastructure +503181,Infrastructure,Infrastructure +503164,Infrastructure,Infrastructure +502981,Infrastructure,Infrastructure +502768,Infrastructure,Infrastructure +501721,Infrastructure,Infrastructure +501265,Infrastructure,Infrastructure +501208,Infrastructure,Infrastructure +501006,Infrastructure,Infrastructure +500732,Infrastructure,Infrastructure +500452,Infrastructure,Infrastructure +500179,Infrastructure,Infrastructure +500095,Infrastructure,Infrastructure +500082,Infrastructure,Infrastructure +499959,Infrastructure,Infrastructure +499958,Infrastructure,Infrastructure +499924,Infrastructure,Infrastructure +499783,Infrastructure,Infrastructure +498563,Infrastructure,Infrastructure +497907,Infrastructure,Infrastructure +497642,Infrastructure,Infrastructure +497457,Infrastructure,Infrastructure +497313,Infrastructure,Infrastructure +496944,Infrastructure,Infrastructure +496835,Infrastructure,Infrastructure +496832,Infrastructure,Infrastructure +496718,Infrastructure,Infrastructure +496577,Infrastructure,Infrastructure +496558,Infrastructure,Infrastructure +496556,Infrastructure,Infrastructure +496555,Infrastructure,Infrastructure +496141,Infrastructure,Infrastructure +495263,Infrastructure,Infrastructure +495034,Infrastructure,Infrastructure +494419,Infrastructure,Infrastructure +494364,Infrastructure,Infrastructure +494356,Infrastructure,Infrastructure +494350,Infrastructure,Infrastructure +494260,Infrastructure,Infrastructure +494200,Infrastructure,Infrastructure +494116,Infrastructure,Infrastructure +494083,Infrastructure,Infrastructure +494072,Infrastructure,Infrastructure +494027,Infrastructure,Infrastructure +493993,Infrastructure,Infrastructure +493968,Infrastructure,Infrastructure +493935,Infrastructure,Infrastructure +493914,Infrastructure,Infrastructure +493895,Infrastructure,Infrastructure +493786,Infrastructure,Infrastructure +493469,Infrastructure,Infrastructure +492878,Infrastructure,Infrastructure +492476,Infrastructure,Infrastructure +492090,Infrastructure,Infrastructure +492053,Infrastructure,Infrastructure +490259,Infrastructure,Infrastructure +490038,Infrastructure,Infrastructure +489807,Infrastructure,Infrastructure +489806,Infrastructure,Infrastructure +489605,Infrastructure,Infrastructure +489351,Infrastructure,Infrastructure +489062,Infrastructure,Infrastructure +488915,Infrastructure,Infrastructure +488839,Infrastructure,Infrastructure +488692,Infrastructure,Infrastructure +488610,Infrastructure,Infrastructure +488603,Infrastructure,Infrastructure +488511,Infrastructure,Infrastructure +488459,Infrastructure,Infrastructure +488249,Infrastructure,Infrastructure +487291,Infrastructure,Infrastructure +486820,Infrastructure,Infrastructure +486293,Infrastructure,Infrastructure +486222,Infrastructure,Infrastructure +486182,Infrastructure,Infrastructure +486181,Infrastructure,Infrastructure +486044,Infrastructure,Infrastructure +485961,Infrastructure,Infrastructure +485702,Infrastructure,Infrastructure +485698,Infrastructure,Infrastructure +485684,Infrastructure,Infrastructure +485677,Infrastructure,Infrastructure +485673,Infrastructure,Infrastructure +485639,Infrastructure,Infrastructure +484768,Infrastructure,Infrastructure +483459,Infrastructure,Infrastructure +482874,Infrastructure,Infrastructure +482869,Infrastructure,Infrastructure +482853,Infrastructure,Infrastructure +482787,Infrastructure,Infrastructure +482643,Infrastructure,Infrastructure +481140,Infrastructure,Infrastructure +480925,Infrastructure,Infrastructure +480783,Infrastructure,Infrastructure +480715,Infrastructure,Infrastructure +478827,Infrastructure,Infrastructure +476517,Infrastructure,Infrastructure +476439,Infrastructure,Infrastructure +476229,Infrastructure,Infrastructure +474765,Infrastructure,Infrastructure +474568,Infrastructure,Infrastructure +474213,Infrastructure,Infrastructure +474143,Infrastructure,Infrastructure +474006,Infrastructure,Infrastructure +472317,Infrastructure,Infrastructure +472232,Infrastructure,Infrastructure +472056,Infrastructure,Infrastructure +472055,Infrastructure,Infrastructure +472054,Infrastructure,Infrastructure +472036,Infrastructure,Infrastructure +471904,Infrastructure,Infrastructure +242213,Agriculture,Agriculture +242212,Agriculture,Agriculture +242218,Agriculture,Agriculture +242217,Agriculture,Agriculture +242216,Agriculture,Agriculture +242215,Agriculture,Agriculture +242218,International Trade,International Trade +242217,International Trade,International Trade +242216,International Trade,International Trade +242215,International Trade,International Trade +242214,International Trade,International Trade +242213,International Trade,International Trade +425824,Employment and Training,Employment and Training +425625,Employment and Training,Employment and Training +425824,Industry,Industry +425625,Industry,Industry +262281,Industry,Industry +425824,Labour,Labour +425625,Labour,Labour +253850,Labour,Labour +391232,Budget,Budget +386580,Budget,Budget +251431,Budget,Budget +251429,Budget,Budget +245732,Budget,Budget +236529,Budget,Budget +379138,Budget,Budget +379135,Budget,Budget +373806,Budget,Budget +365015,Budget,Budget +365014,Budget,Budget +353803,Budget,Budget +349471,Budget,Budget +347597,Budget,Budget +343759,Budget,Budget +341173,Budget,Budget +341172,Budget,Budget +341171,Budget,Budget +397778,Budget,Budget +395824,Budget,Budget +395822,Budget,Budget +392515,Budget,Budget +249170,Pensions,Pensions +249169,Pensions,Pensions +249191,Pensions,Pensions +472159,Intellectual Property,Intellectual Property +471736,Intellectual Property,Intellectual Property +313188,Intellectual Property,Intellectual Property +312790,Intellectual Property,Intellectual Property +312789,Intellectual Property,Intellectual Property +306729,Intellectual Property,Intellectual Property +298411,Intellectual Property,Intellectual Property +256069,International Relations,International Relations +403888,International Relations,International Relations +295289,International Relations,International Relations +295229,International Relations,International Relations +271010,International Relations,International Relations +269950,International Relations,International Relations +269949,International Relations,International Relations +269370,International Relations,International Relations +410118,International Trade,International Trade +410117,International Trade,International Trade +271010,International Trade,International Trade +269950,International Trade,International Trade +269949,International Trade,International Trade +269370,International Trade,International Trade +265429,International Trade,International Trade +265409,International Trade,International Trade +256069,International Trade,International Trade +256049,International Trade,International Trade +256029,International Trade,International Trade +243190,International Trade,International Trade +410115,International Trade,International Trade +407558,International Trade,International Trade +407557,International Trade,International Trade +407556,International Trade,International Trade +407555,International Trade,International Trade +407549,International Trade,International Trade +403888,International Trade,International Trade +328344,International Trade,International Trade +328330,International Trade,International Trade +295289,International Trade,International Trade +288229,International Trade,International Trade +405788,Mining,Mining +375880,Transportation,Transportation +375879,Transportation,Transportation +328343,Transportation,Transportation +328337,Transportation,Transportation +328333,Transportation,Transportation +328329,Transportation,Transportation +417388,Industry,Industry +417387,Industry,Industry +237045,Industry,Industry +404557,Industry,Industry +468331,Industry,Industry +350318,Regional Development,Regional Development +350315,Regional Development,Regional Development +479368,Industry,Industry +475962,Industry,Industry +237062,Industry,Industry +421710,Industry,Industry +406445,Industry,Industry +404564,Industry,Industry +237532,International Development,International Development +237095,Labour,Labour +447893,Labour,Labour +539507,Labour,Labour +237454,Defence,Defence +237453,Defence,Defence +324997,Transportation,Transportation +321853,Transportation,Transportation +282011,Transportation,Transportation +272815,Transportation,Transportation +243878,Transportation,Transportation +243876,Transportation,Transportation +243874,Transportation,Transportation +237289,Budget,Budget +244731,Taxation and Finance,Taxation and Finance +410454,Taxation and Finance,Taxation and Finance +237589,Taxation and Finance,Taxation and Finance +237536,Taxation and Finance,Taxation and Finance +264156,Taxation and Finance,Taxation and Finance +264153,Taxation and Finance,Taxation and Finance +244820,Taxation and Finance,Taxation and Finance +244807,Taxation and Finance,Taxation and Finance +244806,Taxation and Finance,Taxation and Finance +244804,Taxation and Finance,Taxation and Finance +244802,Taxation and Finance,Taxation and Finance +244793,Taxation and Finance,Taxation and Finance +244789,Taxation and Finance,Taxation and Finance +244786,Taxation and Finance,Taxation and Finance +244783,Taxation and Finance,Taxation and Finance +244780,Taxation and Finance,Taxation and Finance +244777,Taxation and Finance,Taxation and Finance +244776,Taxation and Finance,Taxation and Finance +244770,Taxation and Finance,Taxation and Finance +244769,Taxation and Finance,Taxation and Finance +244765,Taxation and Finance,Taxation and Finance +244761,Taxation and Finance,Taxation and Finance +244759,Taxation and Finance,Taxation and Finance +244757,Taxation and Finance,Taxation and Finance +244755,Taxation and Finance,Taxation and Finance +244750,Taxation and Finance,Taxation and Finance +244749,Taxation and Finance,Taxation and Finance +244744,Taxation and Finance,Taxation and Finance +244743,Taxation and Finance,Taxation and Finance +244740,Taxation and Finance,Taxation and Finance +244739,Taxation and Finance,Taxation and Finance +244737,Taxation and Finance,Taxation and Finance +244736,Taxation and Finance,Taxation and Finance +264969,Industry,Industry +264969,Environment,Environment +241434,Environment,Environment +241432,Environment,Environment +241431,Environment,Environment +241434,Energy,Energy +241431,Energy,Energy +264970,Energy,Energy +241469,Taxation and Finance,Taxation and Finance +251531,Sports,Sports +251529,Sports,Sports +244591,Sports,Sports +259430,Economic Development,Economic Development +405868,Economic Development,Economic Development +405868,Fisheries,Fisheries +360025,Fisheries,Fisheries +259430,Industry,Industry +405868,International Trade,International Trade +241391,Taxation and Finance,Taxation and Finance +243878,Regional Development,Regional Development +243876,Regional Development,Regional Development +243874,Regional Development,Regional Development +468649,Research and Development,Research and Development +468648,Research and Development,Research and Development +247749,Research and Development,Research and Development +247731,Research and Development,Research and Development +247730,Research and Development,Research and Development +247729,Research and Development,Research and Development +247716,Research and Development,Research and Development +247714,Research and Development,Research and Development +247713,Research and Development,Research and Development +247711,Research and Development,Research and Development +247710,Research and Development,Research and Development +247614,Research and Development,Research and Development +247613,Research and Development,Research and Development +247612,Research and Development,Research and Development +247611,Research and Development,Research and Development +247609,Research and Development,Research and Development +247608,Research and Development,Research and Development +247607,Research and Development,Research and Development +247606,Research and Development,Research and Development +247605,Research and Development,Research and Development +247603,Research and Development,Research and Development +247601,Research and Development,Research and Development +247600,Research and Development,Research and Development +247598,Research and Development,Research and Development +247591,Research and Development,Research and Development +247589,Research and Development,Research and Development +247579,Research and Development,Research and Development +247578,Research and Development,Research and Development +247576,Research and Development,Research and Development +247575,Research and Development,Research and Development +247574,Research and Development,Research and Development +247573,Research and Development,Research and Development +247572,Research and Development,Research and Development +247570,Research and Development,Research and Development +247569,Research and Development,Research and Development +237929,Research and Development,Research and Development +371706,Research and Development,Research and Development +371704,Research and Development,Research and Development +371702,Research and Development,Research and Development +371682,Research and Development,Research and Development +371674,Research and Development,Research and Development +340589,Research and Development,Research and Development +340547,Research and Development,Research and Development +340546,Research and Development,Research and Development +340545,Research and Development,Research and Development +340538,Research and Development,Research and Development +340506,Research and Development,Research and Development +340504,Research and Development,Research and Development +340503,Research and Development,Research and Development +340501,Research and Development,Research and Development +340499,Research and Development,Research and Development +340497,Research and Development,Research and Development +340479,Research and Development,Research and Development +340440,Research and Development,Research and Development +339818,Research and Development,Research and Development +339817,Research and Development,Research and Development +339815,Research and Development,Research and Development +339814,Research and Development,Research and Development +339813,Research and Development,Research and Development +441683,Research and Development,Research and Development +441681,Research and Development,Research and Development +441679,Research and Development,Research and Development +441677,Research and Development,Research and Development +441672,Research and Development,Research and Development +441671,Research and Development,Research and Development +441670,Research and Development,Research and Development +441668,Research and Development,Research and Development +441666,Research and Development,Research and Development +441659,Research and Development,Research and Development +436205,Research and Development,Research and Development +416117,Research and Development,Research and Development +416108,Research and Development,Research and Development +413922,Research and Development,Research and Development +413921,Research and Development,Research and Development +408547,Research and Development,Research and Development +408546,Research and Development,Research and Development +408509,Research and Development,Research and Development +407770,Research and Development,Research and Development +406976,Research and Development,Research and Development +406974,Research and Development,Research and Development +406973,Research and Development,Research and Development +398055,Research and Development,Research and Development +397225,Research and Development,Research and Development +390379,Research and Development,Research and Development +390377,Research and Development,Research and Development +390374,Research and Development,Research and Development +390373,Research and Development,Research and Development +390372,Research and Development,Research and Development +390370,Research and Development,Research and Development +390363,Research and Development,Research and Development +390361,Research and Development,Research and Development +390357,Research and Development,Research and Development +390356,Research and Development,Research and Development +390341,Research and Development,Research and Development +390339,Research and Development,Research and Development +390337,Research and Development,Research and Development +390335,Research and Development,Research and Development +390329,Research and Development,Research and Development +390328,Research and Development,Research and Development +390326,Research and Development,Research and Development +390324,Research and Development,Research and Development +390320,Research and Development,Research and Development +390318,Research and Development,Research and Development +390315,Research and Development,Research and Development +390313,Research and Development,Research and Development +390309,Research and Development,Research and Development +390304,Research and Development,Research and Development +390303,Research and Development,Research and Development +390302,Research and Development,Research and Development +390299,Research and Development,Research and Development +390298,Research and Development,Research and Development +390296,Research and Development,Research and Development +390295,Research and Development,Research and Development +390293,Research and Development,Research and Development +390290,Research and Development,Research and Development +390288,Research and Development,Research and Development +390287,Research and Development,Research and Development +390285,Research and Development,Research and Development +390284,Research and Development,Research and Development +390282,Research and Development,Research and Development +390281,Research and Development,Research and Development +390279,Research and Development,Research and Development +390276,Research and Development,Research and Development +390275,Research and Development,Research and Development +390274,Research and Development,Research and Development +390273,Research and Development,Research and Development +390272,Research and Development,Research and Development +390271,Research and Development,Research and Development +390269,Research and Development,Research and Development +390268,Research and Development,Research and Development +390267,Research and Development,Research and Development +390266,Research and Development,Research and Development +390265,Research and Development,Research and Development +390264,Research and Development,Research and Development +390261,Research and Development,Research and Development +390258,Research and Development,Research and Development +390257,Research and Development,Research and Development +390253,Research and Development,Research and Development +390251,Research and Development,Research and Development +390250,Research and Development,Research and Development +390248,Research and Development,Research and Development +390243,Research and Development,Research and Development +390241,Research and Development,Research and Development +390240,Research and Development,Research and Development +390238,Research and Development,Research and Development +390232,Research and Development,Research and Development +390212,Research and Development,Research and Development +390210,Research and Development,Research and Development +390208,Research and Development,Research and Development +390205,Research and Development,Research and Development +390204,Research and Development,Research and Development +390201,Research and Development,Research and Development +390199,Research and Development,Research and Development +390197,Research and Development,Research and Development +390195,Research and Development,Research and Development +390194,Research and Development,Research and Development +390179,Research and Development,Research and Development +390177,Research and Development,Research and Development +390174,Research and Development,Research and Development +390170,Research and Development,Research and Development +542864,Research and Development,Research and Development +542260,Research and Development,Research and Development +540946,Research and Development,Research and Development +526794,Research and Development,Research and Development +525621,Research and Development,Research and Development +525616,Research and Development,Research and Development +525612,Research and Development,Research and Development +525609,Research and Development,Research and Development +525608,Research and Development,Research and Development +525607,Research and Development,Research and Development +525605,Research and Development,Research and Development +525604,Research and Development,Research and Development +525602,Research and Development,Research and Development +525597,Research and Development,Research and Development +525596,Research and Development,Research and Development +525590,Research and Development,Research and Development +525587,Research and Development,Research and Development +525582,Research and Development,Research and Development +525557,Research and Development,Research and Development +525551,Research and Development,Research and Development +525547,Research and Development,Research and Development +469022,Research and Development,Research and Development +468960,Research and Development,Research and Development +468957,Research and Development,Research and Development +468956,Research and Development,Research and Development +468941,Research and Development,Research and Development +468940,Research and Development,Research and Development +468939,Research and Development,Research and Development +241430,Environment,Environment +240690,Environment,Environment +240689,Environment,Environment +240697,Environment,Environment +240695,Environment,Environment +240694,Environment,Environment +240693,Environment,Environment +240692,Environment,Environment +240690,Forestry,Forestry +240689,Forestry,Forestry +240697,Forestry,Forestry +240695,Forestry,Forestry +240694,Forestry,Forestry +240693,Forestry,Forestry +240692,Forestry,Forestry +251272,Health,Health +251271,Health,Health +251274,Health,Health +251272,Industry,Industry +251271,Industry,Industry +251274,Industry,Industry +467617,Health,Health +467612,Health,Health +389088,Health,Health +389087,Health,Health +385319,Health,Health +385316,Health,Health +376653,Health,Health +450103,Health,Health +450098,Health,Health +450085,Health,Health +450064,Health,Health +450060,Health,Health +450048,Health,Health +450026,Health,Health +450022,Health,Health +450020,Health,Health +449989,Health,Health +449965,Health,Health +449964,Health,Health +449103,Health,Health +449102,Health,Health +449101,Health,Health +449100,Health,Health +449099,Health,Health +449093,Health,Health +449091,Health,Health +449086,Health,Health +449085,Health,Health +449084,Health,Health +449083,Health,Health +449081,Health,Health +449080,Health,Health +449078,Health,Health +449077,Health,Health +449072,Health,Health +422923,Health,Health +422922,Health,Health +422921,Health,Health +422920,Health,Health +422919,Health,Health +422918,Health,Health +422917,Health,Health +422916,Health,Health +422915,Health,Health +422914,Health,Health +422913,Health,Health +422912,Health,Health +422911,Health,Health +422910,Health,Health +422909,Health,Health +422908,Health,Health +422907,Health,Health +422906,Health,Health +422905,Health,Health +422904,Health,Health +422903,Health,Health +422902,Health,Health +422900,Health,Health +422899,Health,Health +422898,Health,Health +422897,Health,Health +422896,Health,Health +422895,Health,Health +422892,Health,Health +422886,Health,Health +396464,Health,Health +394621,Health,Health +394602,Health,Health +391754,Health,Health +391753,Health,Health +389092,Health,Health +389091,Health,Health +389090,Health,Health +467606,Health,Health +467602,Health,Health +467599,Health,Health +467596,Health,Health +467591,Health,Health +467586,Health,Health +467580,Health,Health +467553,Health,Health +467548,Health,Health +467544,Health,Health +467539,Health,Health +467354,Health,Health +467232,Health,Health +467231,Health,Health +467230,Health,Health +467229,Health,Health +467228,Health,Health +467197,Health,Health +467186,Health,Health +467172,Health,Health +467165,Health,Health +467160,Health,Health +467156,Health,Health +467141,Health,Health +467139,Health,Health +467121,Health,Health +467108,Health,Health +467071,Health,Health +467053,Health,Health +467052,Health,Health +467050,Health,Health +467049,Health,Health +467042,Health,Health +467031,Health,Health +467025,Health,Health +467021,Health,Health +467006,Health,Health +466999,Health,Health +466981,Health,Health +466977,Health,Health +466975,Health,Health +466962,Health,Health +466954,Health,Health +466946,Health,Health +466934,Health,Health +466929,Health,Health +466866,Health,Health +466865,Health,Health +466864,Health,Health +466861,Health,Health +466860,Health,Health +466859,Health,Health +466857,Health,Health +466855,Health,Health +466853,Health,Health +466852,Health,Health +466799,Health,Health +466795,Health,Health +466792,Health,Health +466790,Health,Health +466789,Health,Health +466788,Health,Health +466786,Health,Health +466782,Health,Health +466775,Health,Health +466772,Health,Health +466768,Health,Health +466762,Health,Health +466760,Health,Health +466758,Health,Health +466756,Health,Health +466754,Health,Health +466753,Health,Health +466751,Health,Health +466744,Health,Health +466743,Health,Health +466742,Health,Health +466741,Health,Health +466740,Health,Health +466735,Health,Health +466729,Health,Health +466728,Health,Health +466724,Health,Health +466698,Health,Health +466690,Health,Health +466689,Health,Health +466679,Health,Health +466673,Health,Health +466672,Health,Health +466645,Health,Health +466638,Health,Health +466635,Health,Health +466634,Health,Health +466628,Health,Health +466625,Health,Health +466621,Health,Health +466445,Health,Health +466437,Health,Health +466436,Health,Health +466433,Health,Health +466428,Health,Health +466426,Health,Health +466422,Health,Health +466418,Health,Health +466417,Health,Health +466414,Health,Health +466374,Health,Health +466372,Health,Health +466364,Health,Health +466362,Health,Health +466359,Health,Health +466352,Health,Health +466329,Health,Health +466309,Health,Health +450670,Health,Health +450669,Health,Health +450668,Health,Health +450667,Health,Health +450666,Health,Health +450664,Health,Health +450663,Health,Health +450661,Health,Health +450657,Health,Health +450656,Health,Health +450655,Health,Health +450654,Health,Health +450653,Health,Health +450652,Health,Health +450651,Health,Health +450649,Health,Health +450647,Health,Health +450646,Health,Health +450645,Health,Health +450644,Health,Health +450643,Health,Health +450642,Health,Health +450641,Health,Health +450640,Health,Health +450639,Health,Health +450638,Health,Health +450637,Health,Health +450636,Health,Health +450635,Health,Health +450634,Health,Health +450633,Health,Health +450632,Health,Health +450631,Health,Health +450630,Health,Health +450629,Health,Health +450628,Health,Health +450626,Health,Health +450621,Health,Health +450620,Health,Health +450619,Health,Health +450618,Health,Health +450617,Health,Health +450615,Health,Health +450613,Health,Health +450612,Health,Health +450610,Health,Health +450609,Health,Health +450608,Health,Health +450607,Health,Health +450606,Health,Health +450605,Health,Health +450604,Health,Health +450603,Health,Health +450556,Health,Health +450553,Health,Health +450552,Health,Health +450551,Health,Health +450547,Health,Health +450546,Health,Health +450530,Health,Health +450529,Health,Health +450525,Health,Health +450524,Health,Health +450516,Health,Health +450515,Health,Health +450512,Health,Health +450511,Health,Health +450509,Health,Health +450500,Health,Health +450497,Health,Health +450495,Health,Health +450493,Health,Health +450492,Health,Health +450490,Health,Health +450489,Health,Health +450488,Health,Health +450487,Health,Health +450485,Health,Health +450484,Health,Health +450483,Health,Health +450482,Health,Health +450480,Health,Health +450478,Health,Health +450477,Health,Health +450476,Health,Health +450475,Health,Health +450474,Health,Health +450472,Health,Health +450471,Health,Health +450470,Health,Health +450469,Health,Health +450468,Health,Health +450467,Health,Health +450461,Health,Health +450454,Health,Health +450451,Health,Health +450450,Health,Health +450449,Health,Health +450447,Health,Health +450446,Health,Health +450433,Health,Health +450428,Health,Health +450427,Health,Health +450426,Health,Health +450425,Health,Health +450424,Health,Health +450423,Health,Health +450422,Health,Health +450419,Health,Health +450418,Health,Health +450417,Health,Health +450416,Health,Health +450415,Health,Health +450414,Health,Health +450413,Health,Health +450411,Health,Health +450410,Health,Health +450406,Health,Health +450403,Health,Health +450400,Health,Health +450399,Health,Health +450392,Health,Health +450389,Health,Health +450388,Health,Health +450383,Health,Health +450380,Health,Health +450377,Health,Health +450376,Health,Health +450374,Health,Health +450373,Health,Health +450366,Health,Health +450242,Health,Health +450240,Health,Health +450239,Health,Health +450238,Health,Health +450127,Health,Health +450126,Health,Health +450105,Health,Health +541499,Health,Health +541498,Health,Health +528988,Health,Health +528816,Health,Health +528803,Health,Health +520979,Health,Health +517620,Health,Health +517618,Health,Health +496285,Health,Health +469291,Health,Health +468433,Health,Health +468432,Health,Health +468430,Health,Health +468429,Health,Health +468422,Health,Health +468420,Health,Health +468417,Health,Health +468384,Health,Health +468383,Health,Health +468379,Health,Health +468373,Health,Health +468371,Health,Health +468361,Health,Health +468359,Health,Health +468343,Health,Health +468328,Health,Health +468303,Health,Health +468297,Health,Health +468292,Health,Health +468272,Health,Health +468268,Health,Health +467694,Health,Health +467690,Health,Health +467688,Health,Health +467686,Health,Health +467684,Health,Health +467680,Health,Health +467673,Health,Health +467627,Health,Health +467622,Health,Health +252150,Education,Éducation +252149,Education,Éducation +252131,Education,Éducation +252130,Education,Éducation +351937,Education,Éducation +351936,Education,Éducation +351935,Education,Éducation +351934,Education,Éducation +338655,Education,Éducation +336774,Education,Éducation +336773,Education,Éducation +336770,Education,Éducation +330355,Education,Éducation +317456,Education,Éducation +317455,Education,Éducation +317454,Education,Éducation +298950,Education,Éducation +298930,Education,Éducation +252172,Education,Éducation +252149,Official Languages,Langues officielles +252131,Official Languages,Langues officielles +351937,Official Languages,Langues officielles +351936,Official Languages,Langues officielles +351935,Official Languages,Langues officielles +351934,Official Languages,Langues officielles +338655,Official Languages,Langues officielles +336774,Official Languages,Langues officielles +336773,Official Languages,Langues officielles +336770,Official Languages,Langues officielles +330355,Official Languages,Langues officielles +298950,Official Languages,Langues officielles +298930,Official Languages,Langues officielles +252172,Official Languages,Langues officielles +252152,Official Languages,Langues officielles +252151,Official Languages,Langues officielles +351937,Health,Santé +351936,Health,Santé +351935,Health,Santé +351934,Health,Santé +330355,Health,Santé +317456,Health,Santé +317455,Health,Santé +252172,Health,Santé +252152,Health,Santé +252150,Health,Santé +252131,Health,Santé +411844,Taxation and Finance,Taxation and Finance +411841,Taxation and Finance,Taxation and Finance +346717,Taxation and Finance,Taxation and Finance +346697,Taxation and Finance,Taxation and Finance +437127,Taxation and Finance,Taxation and Finance +437126,Taxation and Finance,Taxation and Finance +436101,Taxation and Finance,Taxation and Finance +429527,Taxation and Finance,Taxation and Finance +429526,Taxation and Finance,Taxation and Finance +429524,Taxation and Finance,Taxation and Finance +429521,Taxation and Finance,Taxation and Finance +429519,Taxation and Finance,Taxation and Finance +429518,Taxation and Finance,Taxation and Finance +429516,Taxation and Finance,Taxation and Finance +427096,Taxation and Finance,Taxation and Finance +420303,Taxation and Finance,Taxation and Finance +420302,Taxation and Finance,Taxation and Finance +420300,Taxation and Finance,Taxation and Finance +444033,Defence,Defence +437327,Defence,Defence +397643,Defence,Defence +394796,Defence,Defence +394795,Defence,Defence +394794,Defence,Defence +365402,Defence,Defence +309870,Defence,Defence +309868,Defence,Defence +309865,Defence,Defence +309863,Defence,Defence +309828,Defence,Defence +271555,Defence,Defence +269934,Defence,Defence +247030,Defence,Defence +245578,Defence,Defence +444033,Government Procurement,Government Procurement +437327,Government Procurement,Government Procurement +271555,Government Procurement,Government Procurement +269934,Government Procurement,Government Procurement +247030,Government Procurement,Government Procurement +245578,Government Procurement,Government Procurement +365402,Government Procurement,Government Procurement +309870,Government Procurement,Government Procurement +309868,Government Procurement,Government Procurement +309865,Government Procurement,Government Procurement +309863,Government Procurement,Government Procurement +309828,Government Procurement,Government Procurement +397643,Government Procurement,Government Procurement +394796,Government Procurement,Government Procurement +394795,Government Procurement,Government Procurement +394794,Government Procurement,Government Procurement +239230,Economic Development,Economic Development +253792,Housing,Housing +243689,Immigration,Immigration +397644,Agriculture,Agriculture +332549,Agriculture,Agriculture +399419,Health,Health +397644,Health,Health +332549,Health,Health +238829,Education,Education +238829,Employment and Training,Employment and Training +238829,Taxation and Finance,Taxation and Finance +453092,Health,Health +408518,Industry,Industry +388686,Industry,Industry +241350,Industry,Industry +413865,Environment,Environment +494256,Tourism,Tourism +494253,Tourism,Tourism +488945,Tourism,Tourism +488519,Tourism,Tourism +488388,Tourism,Tourism +488387,Tourism,Tourism +488386,Tourism,Tourism +488385,Tourism,Tourism +488384,Tourism,Tourism +488382,Tourism,Tourism +488381,Tourism,Tourism +488380,Tourism,Tourism +488379,Tourism,Tourism +488378,Tourism,Tourism +488376,Tourism,Tourism +488375,Tourism,Tourism +488374,Tourism,Tourism +488372,Tourism,Tourism +488371,Tourism,Tourism +488370,Tourism,Tourism +488369,Tourism,Tourism +488367,Tourism,Tourism +498034,Tourism,Tourism +497508,Tourism,Tourism +497505,Tourism,Tourism +496739,Tourism,Tourism +496342,Tourism,Tourism +495440,Tourism,Tourism +245200,Taxation and Finance,Impôts et finances +241150,Taxation and Finance,Impôts et finances +262496,Taxation and Finance,Impôts et finances +262494,Taxation and Finance,Impôts et finances +258056,Taxation and Finance,Impôts et finances +258055,Taxation and Finance,Impôts et finances +254179,Taxation and Finance,Impôts et finances +249955,Taxation and Finance,Impôts et finances +254161,Taxation and Finance,Impôts et finances +249957,Taxation and Finance,Impôts et finances +268309,Taxation and Finance,Impôts et finances +264849,Taxation and Finance,Impôts et finances +262495,Taxation and Finance,Impôts et finances +262490,Taxation and Finance,Impôts et finances +258054,Taxation and Finance,Impôts et finances +258053,Taxation and Finance,Impôts et finances +468649,Budget,Budget +468648,Budget,Budget +252962,Budget,Budget +252957,Budget,Budget +247749,Budget,Budget +247731,Budget,Budget +247730,Budget,Budget +247729,Budget,Budget +247716,Budget,Budget +247714,Budget,Budget +247713,Budget,Budget +247711,Budget,Budget +247710,Budget,Budget +247614,Budget,Budget +247613,Budget,Budget +247612,Budget,Budget +247611,Budget,Budget +247609,Budget,Budget +247608,Budget,Budget +247607,Budget,Budget +247606,Budget,Budget +247605,Budget,Budget +247603,Budget,Budget +247601,Budget,Budget +247600,Budget,Budget +247598,Budget,Budget +247591,Budget,Budget +247589,Budget,Budget +247579,Budget,Budget +247578,Budget,Budget +247576,Budget,Budget +247575,Budget,Budget +247574,Budget,Budget +247573,Budget,Budget +247572,Budget,Budget +247570,Budget,Budget +390186,Budget,Budget +390185,Budget,Budget +390184,Budget,Budget +390183,Budget,Budget +390181,Budget,Budget +390179,Budget,Budget +390177,Budget,Budget +390176,Budget,Budget +390175,Budget,Budget +390174,Budget,Budget +390173,Budget,Budget +390172,Budget,Budget +390170,Budget,Budget +390169,Budget,Budget +390168,Budget,Budget +390166,Budget,Budget +390163,Budget,Budget +382929,Budget,Budget +375598,Budget,Budget +375079,Budget,Budget +371706,Budget,Budget +371704,Budget,Budget +371702,Budget,Budget +371700,Budget,Budget +371699,Budget,Budget +371694,Budget,Budget +371691,Budget,Budget +371686,Budget,Budget +371682,Budget,Budget +371674,Budget,Budget +371668,Budget,Budget +348057,Budget,Budget +340589,Budget,Budget +340547,Budget,Budget +340546,Budget,Budget +340545,Budget,Budget +340538,Budget,Budget +340504,Budget,Budget +340503,Budget,Budget +340501,Budget,Budget +340499,Budget,Budget +340497,Budget,Budget +340481,Budget,Budget +340479,Budget,Budget +340440,Budget,Budget +339818,Budget,Budget +339817,Budget,Budget +339815,Budget,Budget +339814,Budget,Budget +339813,Budget,Budget +339809,Budget,Budget +322893,Budget,Budget +293329,Budget,Budget +451028,Budget,Budget +434098,Budget,Budget +413922,Budget,Budget +413921,Budget,Budget +408586,Budget,Budget +408547,Budget,Budget +408546,Budget,Budget +408509,Budget,Budget +407770,Budget,Budget +406974,Budget,Budget +406973,Budget,Budget +402917,Budget,Budget +398055,Budget,Budget +397225,Budget,Budget +391255,Budget,Budget +390644,Budget,Budget +390643,Budget,Budget +390638,Budget,Budget +390636,Budget,Budget +390632,Budget,Budget +390629,Budget,Budget +390627,Budget,Budget +390626,Budget,Budget +390625,Budget,Budget +390622,Budget,Budget +390620,Budget,Budget +390619,Budget,Budget +390617,Budget,Budget +390616,Budget,Budget +390614,Budget,Budget +390613,Budget,Budget +390612,Budget,Budget +390611,Budget,Budget +390602,Budget,Budget +390601,Budget,Budget +390599,Budget,Budget +390598,Budget,Budget +390594,Budget,Budget +390593,Budget,Budget +390585,Budget,Budget +390584,Budget,Budget +390582,Budget,Budget +390579,Budget,Budget +390576,Budget,Budget +390575,Budget,Budget +390379,Budget,Budget +390377,Budget,Budget +390374,Budget,Budget +390373,Budget,Budget +390372,Budget,Budget +390370,Budget,Budget +390364,Budget,Budget +390363,Budget,Budget +390361,Budget,Budget +390360,Budget,Budget +390357,Budget,Budget +390356,Budget,Budget +390353,Budget,Budget +390347,Budget,Budget +390342,Budget,Budget +390341,Budget,Budget +390339,Budget,Budget +390337,Budget,Budget +390335,Budget,Budget +390333,Budget,Budget +390329,Budget,Budget +390328,Budget,Budget +390326,Budget,Budget +390324,Budget,Budget +390320,Budget,Budget +390319,Budget,Budget +390318,Budget,Budget +390315,Budget,Budget +390314,Budget,Budget +390313,Budget,Budget +390311,Budget,Budget +390309,Budget,Budget +390308,Budget,Budget +390304,Budget,Budget +390303,Budget,Budget +390302,Budget,Budget +390299,Budget,Budget +390298,Budget,Budget +390296,Budget,Budget +390295,Budget,Budget +390293,Budget,Budget +390290,Budget,Budget +390288,Budget,Budget +390287,Budget,Budget +390285,Budget,Budget +390284,Budget,Budget +390282,Budget,Budget +390281,Budget,Budget +390280,Budget,Budget +390279,Budget,Budget +390278,Budget,Budget +390276,Budget,Budget +390275,Budget,Budget +390274,Budget,Budget +390273,Budget,Budget +390272,Budget,Budget +390271,Budget,Budget +390269,Budget,Budget +390268,Budget,Budget +390267,Budget,Budget +390266,Budget,Budget +390265,Budget,Budget +390264,Budget,Budget +390261,Budget,Budget +390260,Budget,Budget +390259,Budget,Budget +390258,Budget,Budget +390257,Budget,Budget +390254,Budget,Budget +390253,Budget,Budget +390251,Budget,Budget +390250,Budget,Budget +390249,Budget,Budget +390248,Budget,Budget +390247,Budget,Budget +390246,Budget,Budget +390245,Budget,Budget +390244,Budget,Budget +390243,Budget,Budget +390241,Budget,Budget +390240,Budget,Budget +390239,Budget,Budget +390238,Budget,Budget +390234,Budget,Budget +390233,Budget,Budget +390232,Budget,Budget +390230,Budget,Budget +390226,Budget,Budget +390219,Budget,Budget +390216,Budget,Budget +390212,Budget,Budget +390210,Budget,Budget +390209,Budget,Budget +390208,Budget,Budget +390205,Budget,Budget +390204,Budget,Budget +390201,Budget,Budget +390199,Budget,Budget +390197,Budget,Budget +390195,Budget,Budget +390194,Budget,Budget +390193,Budget,Budget +390190,Budget,Budget +544696,Budget,Budget +544695,Budget,Budget +542864,Budget,Budget +542260,Budget,Budget +540946,Budget,Budget +540731,Budget,Budget +540664,Budget,Budget +538712,Budget,Budget +536498,Budget,Budget +536497,Budget,Budget +530048,Budget,Budget +530009,Budget,Budget +525602,Budget,Budget +525557,Budget,Budget +525549,Budget,Budget +498250,Budget,Budget +498247,Budget,Budget +469022,Budget,Budget +468960,Budget,Budget +468957,Budget,Budget +468956,Budget,Budget +468941,Budget,Budget +468940,Budget,Budget +468939,Budget,Budget +468938,Budget,Budget +468937,Budget,Budget +468936,Budget,Budget +441666,Employment and Training,Employment and Training +441659,Employment and Training,Employment and Training +247607,Employment and Training,Employment and Training +247606,Employment and Training,Employment and Training +247605,Employment and Training,Employment and Training +247603,Employment and Training,Employment and Training +247601,Employment and Training,Employment and Training +247600,Employment and Training,Employment and Training +247598,Employment and Training,Employment and Training +247591,Employment and Training,Employment and Training +247589,Employment and Training,Employment and Training +247579,Employment and Training,Employment and Training +247578,Employment and Training,Employment and Training +247576,Employment and Training,Employment and Training +247575,Employment and Training,Employment and Training +247574,Employment and Training,Employment and Training +247573,Employment and Training,Employment and Training +247572,Employment and Training,Employment and Training +247570,Employment and Training,Employment and Training +247569,Employment and Training,Employment and Training +307610,Employment and Training,Employment and Training +307609,Employment and Training,Employment and Training +307589,Employment and Training,Employment and Training +307575,Employment and Training,Employment and Training +307574,Employment and Training,Employment and Training +307573,Employment and Training,Employment and Training +307571,Employment and Training,Employment and Training +307570,Employment and Training,Employment and Training +307569,Employment and Training,Employment and Training +307551,Employment and Training,Employment and Training +307530,Employment and Training,Employment and Training +307529,Employment and Training,Employment and Training +307314,Employment and Training,Employment and Training +307313,Employment and Training,Employment and Training +307312,Employment and Training,Employment and Training +307311,Employment and Training,Employment and Training +307310,Employment and Training,Employment and Training +307293,Employment and Training,Employment and Training +307292,Employment and Training,Employment and Training +307291,Employment and Training,Employment and Training +307290,Employment and Training,Employment and Training +307289,Employment and Training,Employment and Training +307269,Employment and Training,Employment and Training +307249,Employment and Training,Employment and Training +307229,Employment and Training,Employment and Training +307211,Employment and Training,Employment and Training +307210,Employment and Training,Employment and Training +307209,Employment and Training,Employment and Training +293329,Employment and Training,Employment and Training +290269,Employment and Training,Employment and Training +274873,Employment and Training,Employment and Training +273289,Employment and Training,Employment and Training +252962,Employment and Training,Employment and Training +252957,Employment and Training,Employment and Training +247749,Employment and Training,Employment and Training +247731,Employment and Training,Employment and Training +247730,Employment and Training,Employment and Training +247729,Employment and Training,Employment and Training +247716,Employment and Training,Employment and Training +247714,Employment and Training,Employment and Training +247713,Employment and Training,Employment and Training +247711,Employment and Training,Employment and Training +247710,Employment and Training,Employment and Training +247614,Employment and Training,Employment and Training +247613,Employment and Training,Employment and Training +247612,Employment and Training,Employment and Training +247611,Employment and Training,Employment and Training +247610,Employment and Training,Employment and Training +247609,Employment and Training,Employment and Training +247608,Employment and Training,Employment and Training +386624,Employment and Training,Employment and Training +382929,Employment and Training,Employment and Training +377879,Employment and Training,Employment and Training +375598,Employment and Training,Employment and Training +375079,Employment and Training,Employment and Training +371706,Employment and Training,Employment and Training +371704,Employment and Training,Employment and Training +371702,Employment and Training,Employment and Training +371700,Employment and Training,Employment and Training +371699,Employment and Training,Employment and Training +371694,Employment and Training,Employment and Training +371691,Employment and Training,Employment and Training +371674,Employment and Training,Employment and Training +371668,Employment and Training,Employment and Training +353853,Employment and Training,Employment and Training +348057,Employment and Training,Employment and Training +340589,Employment and Training,Employment and Training +340547,Employment and Training,Employment and Training +340546,Employment and Training,Employment and Training +340545,Employment and Training,Employment and Training +340538,Employment and Training,Employment and Training +340504,Employment and Training,Employment and Training +340503,Employment and Training,Employment and Training +340501,Employment and Training,Employment and Training +340499,Employment and Training,Employment and Training +340497,Employment and Training,Employment and Training +340479,Employment and Training,Employment and Training +340440,Employment and Training,Employment and Training +339818,Employment and Training,Employment and Training +339817,Employment and Training,Employment and Training +339815,Employment and Training,Employment and Training +339814,Employment and Training,Employment and Training +339813,Employment and Training,Employment and Training +339809,Employment and Training,Employment and Training +324960,Employment and Training,Employment and Training +322893,Employment and Training,Employment and Training +307650,Employment and Training,Employment and Training +307611,Employment and Training,Employment and Training +436205,Employment and Training,Employment and Training +435714,Employment and Training,Employment and Training +434385,Employment and Training,Employment and Training +432080,Employment and Training,Employment and Training +416117,Employment and Training,Employment and Training +416108,Employment and Training,Employment and Training +416088,Employment and Training,Employment and Training +413922,Employment and Training,Employment and Training +413921,Employment and Training,Employment and Training +408586,Employment and Training,Employment and Training +408547,Employment and Training,Employment and Training +408546,Employment and Training,Employment and Training +408509,Employment and Training,Employment and Training +407770,Employment and Training,Employment and Training +406976,Employment and Training,Employment and Training +406974,Employment and Training,Employment and Training +406973,Employment and Training,Employment and Training +402917,Employment and Training,Employment and Training +398055,Employment and Training,Employment and Training +397225,Employment and Training,Employment and Training +395218,Employment and Training,Employment and Training +391255,Employment and Training,Employment and Training +390644,Employment and Training,Employment and Training +390643,Employment and Training,Employment and Training +390638,Employment and Training,Employment and Training +390636,Employment and Training,Employment and Training +390632,Employment and Training,Employment and Training +390629,Employment and Training,Employment and Training +390627,Employment and Training,Employment and Training +390626,Employment and Training,Employment and Training +390625,Employment and Training,Employment and Training +232310,Agriculture,Agriculture +247989,Consumer Issues,Consumer Issues +232294,Energy,Energy +407254,International Trade,International Trade +341067,Economic Development,Economic Development +341070,Industry,Industry +341067,International Trade,International Trade +411562,Justice and Law Enforcement,Justice and Law Enforcement +384577,Security,Security +250952,Research and Development,Research and Development +319589,Budget,Budget +297189,Sports,Sports +266209,Taxation and Finance,Taxation and Finance +410915,Health,Health +427477,Transportation,Transportation +232809,Infrastructure,Infrastructure +232810,Infrastructure,Infrastructure +236023,Infrastructure,Infrastructure +232876,Environment,Environment +423426,Defence,Defence +498929,Defence,Defence +327021,Employment and Training,Employment and Training +245490,Employment and Training,Employment and Training +489274,Budget,Budget +239011,Health,Health +239011,Housing,Housing +445009,Research and Development,Research and Development +423658,Research and Development,Research and Development +408005,Government Procurement,Government Procurement +311440,Employment and Training,Employment and Training +481413,Housing,Housing +324697,Government Procurement,Government Procurement +477503,Industry,Industry +490957,Infrastructure,Infrastructure +233731,Regional Development,Regional Development +379729,Government Procurement,Government Procurement +233869,Financial Institutions,Financial Institutions +366588,Transportation,Transportation +247152,Taxation and Finance,Taxation and Finance +256792,Taxation and Finance,Impôts et finances +248729,Economic Development,Développement économique +350601,Agriculture,Agriculture +236970,Energy,Energy +451355,Environment,Environment +451356,Transportation,Transportation +460345,Environment,Environment +251870,Climate,Climate +310746,Energy,Energy +246491,Fisheries,Fisheries +234549,Industry,Industry +421753,Agriculture,Agriculture +370291,Internal Trade,Commerce intérieur +370291,International Trade,Commerce international +234870,Taxation and Finance,Taxation and Finance +474812,Labour,Labour +242429,Health,Health +277508,International Trade,International Trade +241809,Fisheries,Fisheries +350797,Small Business,Small Business +350543,Small Business,Small Business +266629,Agriculture,Agriculture +246871,Security,Security +240470,Economic Development,Economic Development +246969,Infrastructure,Infrastructure +288610,Consumer Issues,Consumer Issues +288610,Financial Institutions,Financial Institutions +269969,Small Business,Small Business +307732,Consumer Issues,Consumer Issues +383248,Economic Development,Economic Development +307748,Energy,Energy +307741,Environment,Environment +378352,Infrastructure,Infrastructure +268929,International Trade,International Trade +244069,Agriculture,Agriculture +244070,Industry,Industry +244071,Internal Trade,Internal Trade +463528,Budget,Budget +324290,Immigration,Immigration +296529,Research and Development,Research and Development +523894,Defence,Defence +471685,Infrastructure,Infrastructure +235998,Justice and Law Enforcement,Justice and Law Enforcement +236012,Municipalities,Municipalities +240509,Economic Development,Economic Development +236071,Sports,Sports +242214,Agriculture,Agriculture +242212,International Trade,International Trade +426144,Employment and Training,Employment and Training +426144,Industry,Industry +426144,Labour,Labour +391235,Budget,Budget +236529,Employment and Training,Employment and Training +240012,Economic Development,Economic Development +240012,Regional Development,Regional Development +240012,Tourism,Tourism +236609,Environment,Environment +249171,Pensions,Pensions +241144,Intellectual Property,Intellectual Property +339856,Environment,Environment +265409,International Relations,International Relations +410121,International Trade,International Trade +295229,Mining,Mining +256069,Taxation and Finance,Taxation and Finance +405787,Transportation,Transportation +236970,Climate,Climate +236970,Industry,Industry +236970,Research and Development,Research and Development +435452,Industry,Industry +237059,Regional Development,Regional Development +479369,Industry,Industry +237533,International Development,International Development +245310,Labour,Labour +237100,Labour,Labour +237370,Taxation and Finance,Taxation and Finance +240614,Defence,Defence +282011,International Trade,International Trade +243873,Transportation,Transportation +368982,Budget,Budget +237534,Taxation and Finance,Taxation and Finance +237535,Taxation and Finance,Taxation and Finance +244734,Taxation and Finance,Taxation and Finance +264970,Industry,Industry +264970,Environment,Environment +264969,Energy,Energy +247469,Taxation and Finance,Taxation and Finance +376316,Sports,Sports +360025,Economic Development,Economic Development +259430,Fisheries,Fisheries +360025,Industry,Industry +259430,International Trade,International Trade +405868,Regional Development,Regional Development +245534,Industry,Industry +247134,Taxation and Finance,Taxation and Finance +243873,Regional Development,Regional Development +468650,Research and Development,Research and Development +241430,Climate,Climate +245829,Environment,Environment +244609,Taxation and Finance,Impôts et finances +240691,Environment,Environment +240691,Forestry,Forestry +238009,Defence,Defence +256369,Transportation,Transportation +251273,Health,Health +251273,Industry,Industry +467620,Health,Health +252151,Education,Éducation +317454,Immigration,Immigration +252150,Official Languages,Langues officielles +252130,Health,Santé +295810,Defence,Defence +295810,Government Procurement,Government Procurement +420296,Taxation and Finance,Taxation and Finance +444035,Defence,Defence +444035,Government Procurement,Government Procurement +239230,Consumer Issues,Consumer Issues +253792,Economic Development,Economic Development +239230,Financial Institutions,Financial Institutions +239230,Housing,Housing +245776,Immigration,Immigration +253889,Regional Development,Regional Development +241191,Agriculture,Agriculture +332549,Consumer Issues,Consumer Issues +372226,Health,Health +397644,Industry,Industry +238830,Education,Education +238830,Employment and Training,Employment and Training +238830,Taxation and Finance,Taxation and Finance +388686,Health,Health +453092,Industry,Industry +388686,International Trade,International Trade +244249,Justice and Law Enforcement,Justice and Law Enforcement +238889,Infrastructure,Infrastructure +315991,Intellectual Property,Intellectual Property +413867,Environment,Environment +494258,Tourism,Tourism +245207,Taxation and Finance,Impôts et finances +239150,Health,Health +258052,Taxation and Finance,Impôts et finances +250040,Health,Health +249830,Immigration,Immigration +468650,Budget,Budget +441668,Employment and Training,Employment and Training +303318,Economic Development,Economic Development +303311,Energy,Energy +265012,Environment,Environment +265009,Industry,Industry +303316,International Trade,International Trade +303318,Labour,Labour +407155,Research and Development,Research and Development +303318,Taxation and Finance,Taxation and Finance +243410,Infrastructure,Infrastructure +381615,Immigration,Immigration +245234,Agriculture,Agriculture +239952,Budget,Budget +289049,Tourism,Tourism +240010,Fisheries,Fisheries +240049,Industry,Industry +417340,Consumer Issues,Consumer Issues +406342,Consumer Issues,Consumer Issues +382270,Consumer Issues,Consumer Issues +405992,Consumer Issues,Consumer Issues +240091,Immigration,Immigration +321151,Immigration,Immigration +248133,Taxation and Finance,Taxation and Finance +244425,Employment and Training,Employment and Training +245455,Economic Development,Economic Development +245453,Industry,Industry +327651,Industry,Industry +245477,Industry,Industry +518649,Government Procurement,Government Procurement +240432,Immigration,Immigration +327699,Industry,Industry +313353,Defence,Defence +327699,Government Procurement,Government Procurement +241528,Pensions,Pensions +240754,Industry,Industry +271149,International Trade,International Trade +318919,International Trade,International Trade +438897,Environment,Environment +448869,International Trade,International Trade +438889,Transportation,Transportation +390622,Employment and Training,Employment and Training +390620,Employment and Training,Employment and Training +390619,Employment and Training,Employment and Training +390617,Employment and Training,Employment and Training +390616,Employment and Training,Employment and Training +390614,Employment and Training,Employment and Training +390613,Employment and Training,Employment and Training +390612,Employment and Training,Employment and Training +390611,Employment and Training,Employment and Training +390602,Employment and Training,Employment and Training +390601,Employment and Training,Employment and Training +390599,Employment and Training,Employment and Training +390598,Employment and Training,Employment and Training +390594,Employment and Training,Employment and Training +390593,Employment and Training,Employment and Training +390585,Employment and Training,Employment and Training +390584,Employment and Training,Employment and Training +390582,Employment and Training,Employment and Training +390579,Employment and Training,Employment and Training +390576,Employment and Training,Employment and Training +390575,Employment and Training,Employment and Training +390379,Employment and Training,Employment and Training +390377,Employment and Training,Employment and Training +390374,Employment and Training,Employment and Training +390373,Employment and Training,Employment and Training +390372,Employment and Training,Employment and Training +390370,Employment and Training,Employment and Training +390364,Employment and Training,Employment and Training +390363,Employment and Training,Employment and Training +390361,Employment and Training,Employment and Training +390360,Employment and Training,Employment and Training +390357,Employment and Training,Employment and Training +390356,Employment and Training,Employment and Training +390353,Employment and Training,Employment and Training +390347,Employment and Training,Employment and Training +390342,Employment and Training,Employment and Training +390341,Employment and Training,Employment and Training +390339,Employment and Training,Employment and Training +390337,Employment and Training,Employment and Training +390335,Employment and Training,Employment and Training +390333,Employment and Training,Employment and Training +390329,Employment and Training,Employment and Training +390328,Employment and Training,Employment and Training +390326,Employment and Training,Employment and Training +390324,Employment and Training,Employment and Training +390320,Employment and Training,Employment and Training +390319,Employment and Training,Employment and Training +390318,Employment and Training,Employment and Training +390315,Employment and Training,Employment and Training +390314,Employment and Training,Employment and Training +390313,Employment and Training,Employment and Training +390311,Employment and Training,Employment and Training +390309,Employment and Training,Employment and Training +390308,Employment and Training,Employment and Training +390304,Employment and Training,Employment and Training +390303,Employment and Training,Employment and Training +390302,Employment and Training,Employment and Training +390299,Employment and Training,Employment and Training +390298,Employment and Training,Employment and Training +390296,Employment and Training,Employment and Training +390295,Employment and Training,Employment and Training +390293,Employment and Training,Employment and Training +390290,Employment and Training,Employment and Training +390288,Employment and Training,Employment and Training +390287,Employment and Training,Employment and Training +390285,Employment and Training,Employment and Training +390284,Employment and Training,Employment and Training +390282,Employment and Training,Employment and Training +390281,Employment and Training,Employment and Training +390280,Employment and Training,Employment and Training +390279,Employment and Training,Employment and Training +390278,Employment and Training,Employment and Training +390276,Employment and Training,Employment and Training +390275,Employment and Training,Employment and Training +390274,Employment and Training,Employment and Training +390273,Employment and Training,Employment and Training +390272,Employment and Training,Employment and Training +390271,Employment and Training,Employment and Training +390269,Employment and Training,Employment and Training +390268,Employment and Training,Employment and Training +390267,Employment and Training,Employment and Training +390266,Employment and Training,Employment and Training +390265,Employment and Training,Employment and Training +390264,Employment and Training,Employment and Training +390261,Employment and Training,Employment and Training +390260,Employment and Training,Employment and Training +390259,Employment and Training,Employment and Training +390258,Employment and Training,Employment and Training +390257,Employment and Training,Employment and Training +390254,Employment and Training,Employment and Training +390253,Employment and Training,Employment and Training +390251,Employment and Training,Employment and Training +390250,Employment and Training,Employment and Training +390249,Employment and Training,Employment and Training +390248,Employment and Training,Employment and Training +390247,Employment and Training,Employment and Training +390246,Employment and Training,Employment and Training +390245,Employment and Training,Employment and Training +390244,Employment and Training,Employment and Training +390243,Employment and Training,Employment and Training +390241,Employment and Training,Employment and Training +390240,Employment and Training,Employment and Training +390239,Employment and Training,Employment and Training +390238,Employment and Training,Employment and Training +390234,Employment and Training,Employment and Training +390233,Employment and Training,Employment and Training +390232,Employment and Training,Employment and Training +390230,Employment and Training,Employment and Training +390226,Employment and Training,Employment and Training +390219,Employment and Training,Employment and Training +390216,Employment and Training,Employment and Training +390212,Employment and Training,Employment and Training +390210,Employment and Training,Employment and Training +390209,Employment and Training,Employment and Training +390208,Employment and Training,Employment and Training +390205,Employment and Training,Employment and Training +390204,Employment and Training,Employment and Training +390201,Employment and Training,Employment and Training +390199,Employment and Training,Employment and Training +390197,Employment and Training,Employment and Training +390195,Employment and Training,Employment and Training +390194,Employment and Training,Employment and Training +390193,Employment and Training,Employment and Training +390190,Employment and Training,Employment and Training +390186,Employment and Training,Employment and Training +390185,Employment and Training,Employment and Training +390184,Employment and Training,Employment and Training +390183,Employment and Training,Employment and Training +390181,Employment and Training,Employment and Training +390179,Employment and Training,Employment and Training +390177,Employment and Training,Employment and Training +390176,Employment and Training,Employment and Training +390175,Employment and Training,Employment and Training +390174,Employment and Training,Employment and Training +390173,Employment and Training,Employment and Training +390172,Employment and Training,Employment and Training +390170,Employment and Training,Employment and Training +390169,Employment and Training,Employment and Training +390168,Employment and Training,Employment and Training +390166,Employment and Training,Employment and Training +390163,Employment and Training,Employment and Training +544695,Employment and Training,Employment and Training +542701,Employment and Training,Employment and Training +540731,Employment and Training,Employment and Training +530048,Employment and Training,Employment and Training +491587,Employment and Training,Employment and Training +491562,Employment and Training,Employment and Training +491532,Employment and Training,Employment and Training +491517,Employment and Training,Employment and Training +491514,Employment and Training,Employment and Training +491509,Employment and Training,Employment and Training +491501,Employment and Training,Employment and Training +491499,Employment and Training,Employment and Training +491496,Employment and Training,Employment and Training +491494,Employment and Training,Employment and Training +491482,Employment and Training,Employment and Training +491454,Employment and Training,Employment and Training +491446,Employment and Training,Employment and Training +491438,Employment and Training,Employment and Training +491435,Employment and Training,Employment and Training +491433,Employment and Training,Employment and Training +491431,Employment and Training,Employment and Training +491425,Employment and Training,Employment and Training +491407,Employment and Training,Employment and Training +491396,Employment and Training,Employment and Training +491392,Employment and Training,Employment and Training +491387,Employment and Training,Employment and Training +491381,Employment and Training,Employment and Training +491374,Employment and Training,Employment and Training +491371,Employment and Training,Employment and Training +485619,Employment and Training,Employment and Training +485618,Employment and Training,Employment and Training +485617,Employment and Training,Employment and Training +481439,Employment and Training,Employment and Training +481438,Employment and Training,Employment and Training +481437,Employment and Training,Employment and Training +480097,Employment and Training,Employment and Training +477043,Employment and Training,Employment and Training +477030,Employment and Training,Employment and Training +473289,Employment and Training,Employment and Training +473285,Employment and Training,Employment and Training +473279,Employment and Training,Employment and Training +473266,Employment and Training,Employment and Training +473264,Employment and Training,Employment and Training +473259,Employment and Training,Employment and Training +473256,Employment and Training,Employment and Training +471353,Employment and Training,Employment and Training +471352,Employment and Training,Employment and Training +471351,Employment and Training,Employment and Training +471350,Employment and Training,Employment and Training +471349,Employment and Training,Employment and Training +469022,Employment and Training,Employment and Training +468960,Employment and Training,Employment and Training +468957,Employment and Training,Employment and Training +468956,Employment and Training,Employment and Training +468941,Employment and Training,Employment and Training +468940,Employment and Training,Employment and Training +468939,Employment and Training,Employment and Training +468938,Employment and Training,Employment and Training +468937,Employment and Training,Employment and Training +468936,Employment and Training,Employment and Training +468650,Employment and Training,Employment and Training +468649,Employment and Training,Employment and Training +468648,Employment and Training,Employment and Training +464780,Employment and Training,Employment and Training +456353,Employment and Training,Employment and Training +456352,Employment and Training,Employment and Training +456351,Employment and Training,Employment and Training +456349,Employment and Training,Employment and Training +456348,Employment and Training,Employment and Training +451028,Employment and Training,Employment and Training +446100,Employment and Training,Employment and Training +446099,Employment and Training,Employment and Training +441681,Employment and Training,Employment and Training +441679,Employment and Training,Employment and Training +441677,Employment and Training,Employment and Training +441672,Employment and Training,Employment and Training +441671,Employment and Training,Employment and Training +441670,Employment and Training,Employment and Training +303316,Economic Development,Economic Development +407155,Economic Development,Economic Development +265009,Economic Development,Economic Development +265012,Energy,Energy +407156,Environment,Environment +407155,Industry,Industry +407154,Industry,Industry +303320,Industry,Industry +303319,Industry,Industry +303318,Industry,Industry +303317,Industry,Industry +303316,Industry,Industry +303311,Industry,Industry +265012,Industry,Industry +265011,Industry,Industry +265010,Industry,Industry +303311,International Trade,International Trade +265010,International Trade,International Trade +303318,International Trade,International Trade +303317,International Trade,International Trade +407154,Research and Development,Research and Development +303316,Research and Development,Research and Development +303316,Taxation and Finance,Taxation and Finance +313125,Infrastructure,Infrastructure +313120,Infrastructure,Infrastructure +243474,Infrastructure,Infrastructure +365307,Immigration,Immigration +327628,Immigration,Immigration +327619,Immigration,Immigration +327614,Immigration,Immigration +318977,Immigration,Immigration +318976,Immigration,Immigration +318974,Immigration,Immigration +313075,Immigration,Immigration +250801,Immigration,Immigration +241015,Immigration,Immigration +382536,Immigration,Immigration +245229,Agriculture,Agriculture +245219,Agriculture,Agriculture +304014,Agriculture,Agriculture +294509,Agriculture,Agriculture +291929,Agriculture,Agriculture +245235,Agriculture,Agriculture +258250,Tourism,Tourism +258249,Tourism,Tourism +239952,Tourism,Tourism +314889,Tourism,Tourism +405994,Consumer Issues,Consumer Issues +541155,Consumer Issues,Consumer Issues +259293,Consumer Issues,Consumer Issues +240073,Consumer Issues,Consumer Issues +376435,Consumer Issues,Consumer Issues +343830,Consumer Issues,Consumer Issues +427686,Consumer Issues,Consumer Issues +417344,Consumer Issues,Consumer Issues +417343,Consumer Issues,Consumer Issues +417342,Consumer Issues,Consumer Issues +406338,Consumer Issues,Consumer Issues +405989,Consumer Issues,Consumer Issues +240074,Consumer Issues,Consumer Issues +410802,Consumer Issues,Consumer Issues +407052,Consumer Issues,Consumer Issues +513679,Consumer Issues,Consumer Issues +502814,Consumer Issues,Consumer Issues +259289,Consumer Issues,Consumer Issues +240076,Consumer Issues,Consumer Issues +434048,Consumer Issues,Consumer Issues +427687,Consumer Issues,Consumer Issues +424497,Consumer Issues,Consumer Issues +417339,Consumer Issues,Consumer Issues +411094,Consumer Issues,Consumer Issues +406341,Consumer Issues,Consumer Issues +406057,Consumer Issues,Consumer Issues +405993,Consumer Issues,Consumer Issues +405990,Consumer Issues,Consumer Issues +394406,Consumer Issues,Consumer Issues +240077,Consumer Issues,Consumer Issues +426975,Consumer Issues,Consumer Issues +419739,Consumer Issues,Consumer Issues +417341,Consumer Issues,Consumer Issues +417338,Consumer Issues,Consumer Issues +407136,Consumer Issues,Consumer Issues +240300,Immigration,Immigration +248132,Taxation and Finance,Taxation and Finance +243790,Taxation and Finance,Taxation and Finance +243789,Taxation and Finance,Taxation and Finance +353043,Taxation and Finance,Taxation and Finance +353042,Taxation and Finance,Taxation and Finance +350567,Taxation and Finance,Taxation and Finance +337336,Taxation and Finance,Taxation and Finance +337335,Taxation and Finance,Taxation and Finance +334650,Taxation and Finance,Taxation and Finance +331034,Taxation and Finance,Taxation and Finance +331032,Taxation and Finance,Taxation and Finance +331030,Taxation and Finance,Taxation and Finance +331029,Taxation and Finance,Taxation and Finance +331028,Taxation and Finance,Taxation and Finance +331027,Taxation and Finance,Taxation and Finance +331026,Taxation and Finance,Taxation and Finance +329776,Taxation and Finance,Taxation and Finance +326269,Taxation and Finance,Taxation and Finance +324526,Taxation and Finance,Taxation and Finance +324525,Taxation and Finance,Taxation and Finance +321217,Taxation and Finance,Taxation and Finance +318909,Taxation and Finance,Taxation and Finance +312192,Taxation and Finance,Taxation and Finance +300790,Taxation and Finance,Taxation and Finance +300789,Taxation and Finance,Taxation and Finance +294891,Taxation and Finance,Taxation and Finance +294889,Taxation and Finance,Taxation and Finance +288629,Taxation and Finance,Taxation and Finance +284850,Taxation and Finance,Taxation and Finance +284849,Taxation and Finance,Taxation and Finance +282309,Taxation and Finance,Taxation and Finance +282294,Taxation and Finance,Taxation and Finance +282293,Taxation and Finance,Taxation and Finance +282291,Taxation and Finance,Taxation and Finance +282289,Taxation and Finance,Taxation and Finance +282269,Taxation and Finance,Taxation and Finance +282049,Taxation and Finance,Taxation and Finance +282029,Taxation and Finance,Taxation and Finance +278830,Taxation and Finance,Taxation and Finance +278829,Taxation and Finance,Taxation and Finance +266569,Taxation and Finance,Taxation and Finance +261093,Taxation and Finance,Taxation and Finance +256453,Taxation and Finance,Taxation and Finance +253009,Taxation and Finance,Taxation and Finance +381948,Taxation and Finance,Taxation and Finance +380508,Taxation and Finance,Taxation and Finance +380195,Taxation and Finance,Taxation and Finance +380194,Taxation and Finance,Taxation and Finance +380193,Taxation and Finance,Taxation and Finance +380192,Taxation and Finance,Taxation and Finance +376216,Taxation and Finance,Taxation and Finance +376213,Taxation and Finance,Taxation and Finance +373764,Taxation and Finance,Taxation and Finance +373763,Taxation and Finance,Taxation and Finance +370568,Taxation and Finance,Taxation and Finance +370565,Taxation and Finance,Taxation and Finance +368007,Taxation and Finance,Taxation and Finance +368006,Taxation and Finance,Taxation and Finance +368004,Taxation and Finance,Taxation and Finance +366104,Taxation and Finance,Taxation and Finance +364524,Taxation and Finance,Taxation and Finance +363064,Taxation and Finance,Taxation and Finance +363063,Taxation and Finance,Taxation and Finance +361582,Taxation and Finance,Taxation and Finance +357600,Taxation and Finance,Taxation and Finance +357599,Taxation and Finance,Taxation and Finance +355277,Taxation and Finance,Taxation and Finance +321964,Employment and Training,Employment and Training +318035,Employment and Training,Employment and Training +268851,Employment and Training,Employment and Training +268850,Employment and Training,Employment and Training +268831,Employment and Training,Employment and Training +406447,Industry,Industry +518647,Government Procurement,Government Procurement +513598,Government Procurement,Government Procurement +273567,Government Procurement,Government Procurement +395975,Government Procurement,Government Procurement +395973,Government Procurement,Government Procurement +395972,Government Procurement,Government Procurement +395970,Government Procurement,Government Procurement +395969,Government Procurement,Government Procurement +395968,Government Procurement,Government Procurement +395967,Government Procurement,Government Procurement +388420,Government Procurement,Government Procurement +374149,Government Procurement,Government Procurement +374148,Government Procurement,Government Procurement +542484,Government Procurement,Government Procurement +542480,Government Procurement,Government Procurement +540650,Government Procurement,Government Procurement +310420,Defence,Defence +310403,Defence,Defence +327699,Defence,Defence +313353,Government Procurement,Government Procurement +310420,Government Procurement,Government Procurement +310403,Government Procurement,Government Procurement +343991,Government Procurement,Government Procurement +247550,International Trade,International Trade +247549,International Trade,International Trade +321012,International Trade,International Trade +312836,International Trade,International Trade +240852,International Trade,International Trade +331250,International Trade,International Trade +329774,International Trade,International Trade +438885,Environment,Environment +433390,Environment,Environment +463594,Environment,Environment +448867,Environment,Environment +439800,Environment,Environment +438895,International Trade,International Trade +438889,International Trade,International Trade +433390,International Trade,International Trade +400481,International Trade,International Trade +371602,International Trade,International Trade +370057,International Trade,International Trade +369624,International Trade,International Trade +369623,International Trade,International Trade +369622,International Trade,International Trade +369620,International Trade,International Trade +364663,International Trade,International Trade +364662,International Trade,International Trade +354620,International Trade,International Trade +346778,International Trade,International Trade +344442,International Trade,International Trade +344440,International Trade,International Trade +344439,International Trade,International Trade +344438,International Trade,International Trade +338232,International Trade,International Trade +466051,International Trade,International Trade +438887,Transportation,Transportation +438885,Transportation,Transportation +314806,Transportation,Transportation +314804,Transportation,Transportation +314794,Transportation,Transportation +314793,Transportation,Transportation +314792,Transportation,Transportation +314791,Transportation,Transportation +314789,Transportation,Transportation +291950,Transportation,Transportation +291589,Transportation,Transportation +262735,Transportation,Transportation +262734,Transportation,Transportation +262732,Transportation,Transportation +251389,Transportation,Transportation +244189,Transportation,Transportation +433392,Transportation,Transportation +433390,Transportation,Transportation +420919,Transportation,Transportation +417042,Transportation,Transportation +411516,Transportation,Transportation +400481,Transportation,Transportation +399990,Transportation,Transportation +399531,Transportation,Transportation +397578,Transportation,Transportation +394572,Transportation,Transportation +394570,Transportation,Transportation +394569,Transportation,Transportation +385944,Transportation,Transportation +385943,Transportation,Transportation +385942,Transportation,Transportation +385941,Transportation,Transportation +385940,Transportation,Transportation +372965,Transportation,Transportation +372962,Transportation,Transportation +372960,Transportation,Transportation +371602,Transportation,Transportation +369623,Transportation,Transportation +369622,Transportation,Transportation +369621,Transportation,Transportation +346817,Transportation,Transportation +346797,Transportation,Transportation +344437,Transportation,Transportation +544454,Transportation,Transportation +539015,Transportation,Transportation +523293,Transportation,Transportation +523292,Transportation,Transportation +523291,Transportation,Transportation +523290,Transportation,Transportation +523289,Transportation,Transportation +523288,Transportation,Transportation +523287,Transportation,Transportation +520250,Transportation,Transportation +515957,Transportation,Transportation +515956,Transportation,Transportation +515955,Transportation,Transportation +515954,Transportation,Transportation +515953,Transportation,Transportation +515952,Transportation,Transportation +515951,Transportation,Transportation +515950,Transportation,Transportation +509319,Transportation,Transportation +506959,Transportation,Transportation +506958,Transportation,Transportation +500153,Transportation,Transportation +483045,Transportation,Transportation +483044,Transportation,Transportation +483043,Transportation,Transportation +483042,Transportation,Transportation +483041,Transportation,Transportation +483040,Transportation,Transportation +474400,Transportation,Transportation +474399,Transportation,Transportation +474186,Transportation,Transportation +474185,Transportation,Transportation +474166,Transportation,Transportation +474165,Transportation,Transportation +474164,Transportation,Transportation +474163,Transportation,Transportation +474162,Transportation,Transportation +474161,Transportation,Transportation +473632,Transportation,Transportation +473626,Transportation,Transportation +470562,Transportation,Transportation +470560,Transportation,Transportation +470558,Transportation,Transportation +470557,Transportation,Transportation +470556,Transportation,Transportation +470555,Transportation,Transportation +470553,Transportation,Transportation +470549,Transportation,Transportation +470547,Transportation,Transportation +470544,Transportation,Transportation +470541,Transportation,Transportation +470540,Transportation,Transportation +470539,Transportation,Transportation +470538,Transportation,Transportation +470537,Transportation,Transportation +470536,Transportation,Transportation +470535,Transportation,Transportation +466051,Transportation,Transportation +466050,Transportation,Transportation +466049,Transportation,Transportation +466048,Transportation,Transportation +466047,Transportation,Transportation +466046,Transportation,Transportation +466045,Transportation,Transportation +463594,Transportation,Transportation +463593,Transportation,Transportation +463592,Transportation,Transportation +463591,Transportation,Transportation +463590,Transportation,Transportation +461027,Transportation,Transportation +459009,Transportation,Transportation +456445,Transportation,Transportation +455037,Transportation,Transportation +455035,Transportation,Transportation +450481,Transportation,Transportation +448869,Transportation,Transportation +448867,Transportation,Transportation +447756,Transportation,Transportation +444765,Transportation,Transportation +444682,Transportation,Transportation +444681,Transportation,Transportation +444680,Transportation,Transportation +439800,Transportation,Transportation +438897,Transportation,Transportation +438895,Transportation,Transportation +241055,Government Procurement,Government Procurement +277475,Government Procurement,Government Procurement +274170,Government Procurement,Government Procurement +273590,Government Procurement,Government Procurement +267269,Government Procurement,Government Procurement +250954,Government Procurement,Government Procurement +252154,Official Languages,Langues officielles +252153,Official Languages,Langues officielles +351933,Official Languages,Langues officielles +351932,Official Languages,Langues officielles +351931,Official Languages,Langues officielles +338641,Official Languages,Langues officielles +338635,Official Languages,Langues officielles +336772,Official Languages,Langues officielles +336771,Official Languages,Langues officielles +336769,Official Languages,Langues officielles +330384,Official Languages,Langues officielles +330364,Official Languages,Langues officielles +317453,Official Languages,Langues officielles +298949,Official Languages,Langues officielles +298909,Official Languages,Langues officielles +252170,Official Languages,Langues officielles +252169,Official Languages,Langues officielles +317453,Education,Éducation +317452,Education,Éducation +298949,Education,Éducation +298909,Education,Éducation +252170,Education,Éducation +252169,Education,Éducation +252155,Education,Éducation +252154,Education,Éducation +252153,Education,Éducation +351933,Education,Éducation +351932,Education,Éducation +351931,Education,Éducation +338641,Education,Éducation +338635,Education,Éducation +336772,Education,Éducation +336771,Education,Éducation +336769,Education,Éducation +330384,Education,Éducation +321612,Health,Health +254609,Regional Development,Développement régional +347058,Regional Development,Développement régional +294669,Regional Development,Développement régional +245486,Sports,Sports +245484,Sports,Sports +262609,Sports,Sports +262590,Sports,Sports +262589,Sports,Sports +250800,Sports,Sports +250798,Sports,Sports +259422,Taxation and Finance,Taxation and Finance +241431,Climate,Climate +241433,Transportation,Transportation +444289,Economic Development,Economic Development +411030,International Trade,International Trade +352463,Budget,Budget +352280,Budget,Budget +367802,Budget,Budget +243331,Energy,Energy +300649,Transportation,Transportation +247869,Transportation,Transportation +318932,Consumer Issues,Consumer Issues +275890,Consumer Issues,Consumer Issues +263172,Consumer Issues,Consumer Issues +263169,Consumer Issues,Consumer Issues +251249,Consumer Issues,Consumer Issues +367879,Consumer Issues,Consumer Issues +367877,Consumer Issues,Consumer Issues +367876,Consumer Issues,Consumer Issues +351900,Consumer Issues,Consumer Issues +325974,Consumer Issues,Consumer Issues +325973,Consumer Issues,Consumer Issues +325973,Economic Development,Economic Development +318944,Economic Development,Economic Development +367879,Economic Development,Economic Development +367877,Economic Development,Economic Development +367876,Economic Development,Economic Development +367879,Education,Education +367877,Education,Education +367876,Education,Education +325974,Education,Education +245750,Research and Development,Research and Development +245749,Research and Development,Research and Development +271731,Research and Development,Research and Development +387240,International Trade,International Trade +350543,International Trade,International Trade +245188,Defence,Defence +389641,Defence,Defence +369019,Defence,Defence +357530,Defence,Defence +357529,Defence,Defence +355896,Defence,Defence +355895,Defence,Defence +355894,Defence,Defence +355893,Defence,Defence +355374,Defence,Defence +355371,Defence,Defence +355367,Defence,Defence +355365,Defence,Defence +355358,Defence,Defence +355353,Defence,Defence +355349,Defence,Defence +355347,Defence,Defence +277506,Defence,Defence +277505,Defence,Defence +277503,Defence,Defence +399511,Transportation,Transportation +389641,Transportation,Transportation +400340,Transportation,Transportation +400339,Transportation,Transportation +399519,Transportation,Transportation +399518,Transportation,Transportation +399517,Transportation,Transportation +399515,Transportation,Transportation +399514,Transportation,Transportation +277503,Government Procurement,Government Procurement +273512,Government Procurement,Government Procurement +264378,Government Procurement,Government Procurement +245188,Government Procurement,Government Procurement +369019,Government Procurement,Government Procurement +277506,Government Procurement,Government Procurement +355350,Industry,Industry +355348,Industry,Industry +277506,Industry,Industry +277505,Industry,Industry +277503,Industry,Industry +273512,Industry,Industry +245188,Industry,Industry +355892,Industry,Industry +355378,Industry,Industry +355377,Industry,Industry +355376,Industry,Industry +355375,Industry,Industry +355373,Industry,Industry +355372,Industry,Industry +355363,Industry,Industry +355361,Industry,Industry +355360,Industry,Industry +355355,Industry,Industry +242509,Government Procurement,Government Procurement +250904,Health,Health +395386,Health,Health +370634,Health,Health +367875,Health,Health +358081,Health,Health +358078,Health,Health +358076,Health,Health +358064,Health,Health +348251,Health,Health +343580,Health,Health +337629,Health,Health +318930,Health,Health +274091,Health,Health +395386,Research and Development,Research and Development +387255,Research and Development,Research and Development +370634,Research and Development,Research and Development +367875,Research and Development,Research and Development +358081,Research and Development,Research and Development +358078,Research and Development,Research and Development +358076,Research and Development,Research and Development +358064,Research and Development,Research and Development +355994,Research and Development,Research and Development +348251,Research and Development,Research and Development +348250,Research and Development,Research and Development +343580,Research and Development,Research and Development +337629,Research and Development,Research and Development +330157,Research and Development,Research and Development +330156,Research and Development,Research and Development +318930,Research and Development,Research and Development +312714,Research and Development,Research and Development +295851,Research and Development,Research and Development +295849,Research and Development,Research and Development +274091,Research and Development,Research and Development +274090,Research and Development,Research and Development +268453,Research and Development,Research and Development +263170,Research and Development,Research and Development +250904,Research and Development,Research and Development +250901,Research and Development,Research and Development +250739,Consumer Issues,Consumer Issues +250735,Consumer Issues,Consumer Issues +250739,International Trade,International Trade +250735,International Trade,International Trade +250739,Agriculture,Agriculture +250735,Agriculture,Agriculture +250739,Regional Development,Regional Development +250735,Regional Development,Regional Development +531671,Pensions,Pensions +531669,Pensions,Pensions +327494,Pensions,Pensions +243609,Pensions,Pensions +242511,Pensions,Pensions +392485,Pensions,Pensions +467619,Pensions,Pensions +454950,Pensions,Pensions +414433,Pensions,Pensions +444990,Economic Development,Economic Development +444980,Economic Development,Economic Development +394123,Economic Development,Economic Development +394122,Economic Development,Economic Development +385705,Economic Development,Economic Development +531343,Health,Health +529141,Health,Health +280312,Health,Health +252293,Health,Health +252292,Health,Health +252291,Health,Health +252290,Health,Health +252289,Health,Health +250781,Health,Health +250778,Health,Health +385708,International Development,International Development +537794,International Development,International Development +315911,International Development,International Development +315909,International Development,International Development +312776,International Development,International Development +312775,International Development,International Development +309882,International Development,International Development +309880,International Development,International Development +309876,International Development,International Development +309872,International Development,International Development +309869,International Development,International Development +302311,International Development,International Development +302309,International Development,International Development +295311,International Development,International Development +295310,International Development,International Development +295309,International Development,International Development +295290,International Development,International Development +290673,International Development,International Development +290670,International Development,International Development +285349,International Development,International Development +280312,International Development,International Development +276623,International Development,International Development +276612,International Development,International Development +268180,International Development,International Development +268178,International Development,International Development +268175,International Development,International Development +268174,International Development,International Development +268171,International Development,International Development +263249,International Development,International Development +263240,International Development,International Development +263238,International Development,International Development +263234,International Development,International Development +257290,International Development,International Development +257289,International Development,International Development +257269,International Development,International Development +252294,International Development,International Development +252293,International Development,International Development +252292,International Development,International Development +252291,International Development,International Development +252290,International Development,International Development +252289,International Development,International Development +250781,International Development,International Development +250778,International Development,International Development +244553,International Development,International Development +242631,International Development,International Development +380777,International Development,International Development +379863,International Development,International Development +376119,International Development,International Development +357975,International Development,International Development +357974,International Development,International Development +357973,International Development,International Development +356110,International Development,International Development +356109,International Development,International Development +356108,International Development,International Development +356107,International Development,International Development +356106,International Development,International Development +353747,International Development,International Development +353745,International Development,International Development +353744,International Development,International Development +353742,International Development,International Development +353735,International Development,International Development +353733,International Development,International Development +353728,International Development,International Development +351087,International Development,International Development +351083,International Development,International Development +351082,International Development,International Development +351081,International Development,International Development +351080,International Development,International Development +351078,International Development,International Development +348845,International Development,International Development +348844,International Development,International Development +348843,International Development,International Development +348842,International Development,International Development +348841,International Development,International Development +347328,International Development,International Development +347327,International Development,International Development +343768,International Development,International Development +343766,International Development,International Development +343765,International Development,International Development +343763,International Development,International Development +343762,International Development,International Development +341503,International Development,International Development +341502,International Development,International Development +341501,International Development,International Development +341500,International Development,International Development +341498,International Development,International Development +338637,International Development,International Development +335603,International Development,International Development +335602,International Development,International Development +335600,International Development,International Development +331175,International Development,International Development +331174,International Development,International Development +331173,International Development,International Development +331172,International Development,International Development +331171,International Development,International Development +331170,International Development,International Development +331169,International Development,International Development +331168,International Development,International Development +329974,International Development,International Development +327347,International Development,International Development +327334,International Development,International Development +324708,International Development,International Development +324707,International Development,International Development +322038,International Development,International Development +321770,International Development,International Development +321767,International Development,International Development +321766,International Development,International Development +321763,International Development,International Development +321761,International Development,International Development +315962,International Development,International Development +315961,International Development,International Development +315958,International Development,International Development +315951,International Development,International Development +315948,International Development,International Development +315947,International Development,International Development +315918,International Development,International Development +315917,International Development,International Development +315915,International Development,International Development +315914,International Development,International Development +519771,International Development,International Development +519766,International Development,International Development +515766,International Development,International Development +510034,International Development,International Development +509324,International Development,International Development +507118,International Development,International Development +497091,International Development,International Development +497089,International Development,International Development +486508,International Development,International Development +484039,International Development,International Development +476997,International Development,International Development +475258,International Development,International Development +475257,International Development,International Development +467299,International Development,International Development +467295,International Development,International Development +464057,International Development,International Development +461874,International Development,International Development +460803,International Development,International Development +460049,International Development,International Development +458421,International Development,International Development +458414,International Development,International Development +451347,International Development,International Development +449000,International Development,International Development +446958,International Development,International Development +443254,International Development,International Development +443253,International Development,International Development +443250,International Development,International Development +434759,International Development,International Development +434758,International Development,International Development +434757,International Development,International Development +425831,International Development,International Development +425830,International Development,International Development +425564,International Development,International Development +423989,International Development,International Development +423988,International Development,International Development +417834,International Development,International Development +417833,International Development,International Development +417831,International Development,International Development +405494,International Development,International Development +402915,International Development,International Development +402912,International Development,International Development +402911,International Development,International Development +402908,International Development,International Development +396283,International Development,International Development +394122,International Development,International Development +392754,International Development,International Development +295311,International Relations,International Relations +295310,International Relations,International Relations +295309,International Relations,International Relations +295290,International Relations,International Relations +290673,International Relations,International Relations +285349,International Relations,International Relations +276623,International Relations,International Relations +263238,International Relations,International Relations +250781,International Relations,International Relations +250778,International Relations,International Relations +387597,Research and Development,Research and Development +531343,Research and Development,Research and Development +252293,Research and Development,Research and Development +252292,Research and Development,Research and Development +252291,Research and Development,Research and Development +252290,Research and Development,Research and Development +252289,Research and Development,Research and Development +250781,Research and Development,Research and Development +250778,Research and Development,Research and Development +244553,Research and Development,Research and Development +396282,Research and Development,Research and Development +394122,Research and Development,Research and Development +392753,Research and Development,Research and Development +390573,Research and Development,Research and Development +390571,Research and Development,Research and Development +390567,Research and Development,Research and Development +244513,Health,Health +244510,Health,Health +254357,Health,Health +254356,Health,Health +254355,Health,Health +254354,Health,Health +254353,Health,Health +250693,Health,Health +249455,Health,Health +249454,Health,Health +249452,Health,Health +249669,Justice and Law Enforcement,Justice and Law Enforcement +491543,Infrastructure,Infrastructure +491535,Infrastructure,Infrastructure +262753,Infrastructure,Infrastructure +262752,Infrastructure,Infrastructure +257409,Infrastructure,Infrastructure +254408,Infrastructure,Infrastructure +254407,Infrastructure,Infrastructure +340831,Infrastructure,Infrastructure +340829,Infrastructure,Infrastructure +340828,Infrastructure,Infrastructure +327915,Infrastructure,Infrastructure +321517,Infrastructure,Infrastructure +313551,Infrastructure,Infrastructure +313550,Infrastructure,Infrastructure +288889,Infrastructure,Infrastructure +477354,Infrastructure,Infrastructure +477352,Infrastructure,Infrastructure +477349,Infrastructure,Infrastructure +477344,Infrastructure,Infrastructure +477340,Infrastructure,Infrastructure +472462,Infrastructure,Infrastructure +453184,Infrastructure,Infrastructure +444290,Infrastructure,Infrastructure +419330,Infrastructure,Infrastructure +419329,Infrastructure,Infrastructure +417973,Infrastructure,Infrastructure +417972,Infrastructure,Infrastructure +417971,Infrastructure,Infrastructure +408095,Infrastructure,Infrastructure +408094,Infrastructure,Infrastructure +408093,Infrastructure,Infrastructure +408092,Infrastructure,Infrastructure +406760,Infrastructure,Infrastructure +405189,Infrastructure,Infrastructure +393393,Infrastructure,Infrastructure +389160,Infrastructure,Infrastructure +378208,Infrastructure,Infrastructure +378207,Infrastructure,Infrastructure +374646,Infrastructure,Infrastructure +374640,Infrastructure,Infrastructure +374638,Infrastructure,Infrastructure +374635,Infrastructure,Infrastructure +515578,Infrastructure,Infrastructure +513661,Infrastructure,Infrastructure +503907,Infrastructure,Infrastructure +503906,Infrastructure,Infrastructure +503903,Infrastructure,Infrastructure +495521,Infrastructure,Infrastructure +495519,Infrastructure,Infrastructure +495518,Infrastructure,Infrastructure +495517,Infrastructure,Infrastructure +495516,Infrastructure,Infrastructure +492891,Infrastructure,Infrastructure +492889,Infrastructure,Infrastructure +491570,Infrastructure,Infrastructure +491559,Infrastructure,Infrastructure +491554,Infrastructure,Infrastructure +251149,Environment,Environment +251149,Industry,Industry +257829,Consumer Issues,Consumer Issues +257829,Environment,Environment +254050,Environment,Environment +257829,Industry,Industry +254050,Industry,Industry +271258,Industry,Industry +271257,Industry,Industry +271255,Industry,Industry +254070,Transportation,Transportation +254069,Transportation,Transportation +271255,Transportation,Transportation +266531,Transportation,Transportation +280913,Industry,Industry +280909,Industry,Industry +296659,Industry,Industry +283469,Industry,Industry +282511,Industry,Industry +313125,Economic Development,Economic Development +313120,Economic Development,Economic Development +243474,Economic Development,Economic Development +340456,Regional Development,Regional Development +340455,Regional Development,Regional Development +264407,Economic Development,Economic Development +264407,Mining,Mining +251169,Mining,Mining +337152,International Development,International Development +330984,International Development,International Development +294130,International Development,International Development +278449,International Development,International Development +271210,International Development,International Development +244724,International Development,International Development +244406,International Development,International Development +244403,International Development,International Development +244400,International Development,International Development +244397,International Development,International Development +358794,International Development,International Development +358793,International Development,International Development +358792,International Development,International Development +358791,International Development,International Development +244400,International Relations,International Relations +244397,International Relations,International Relations +294130,International Relations,International Relations +278449,International Relations,International Relations +244724,International Relations,International Relations +244406,International Relations,International Relations +242930,Taxation and Finance,Taxation and Finance +262911,Taxation and Finance,Taxation and Finance +248590,Taxation and Finance,Taxation and Finance +243775,Taxation and Finance,Taxation and Finance +243774,Taxation and Finance,Taxation and Finance +243773,Taxation and Finance,Taxation and Finance +243772,Taxation and Finance,Taxation and Finance +243771,Taxation and Finance,Taxation and Finance +243770,Taxation and Finance,Taxation and Finance +247577,Economic Development,Economic Development +243811,Economic Development,Economic Development +284249,Economic Development,Economic Development +251371,Taxation and Finance,Taxation and Finance +251370,Taxation and Finance,Taxation and Finance +262910,Defence,Defence +262910,Government Procurement,Government Procurement +520196,Consumer Issues,Consumer Issues +502893,Consumer Issues,Consumer Issues +423603,Consumer Issues,Consumer Issues +423602,Consumer Issues,Consumer Issues +422444,Consumer Issues,Consumer Issues +418037,Consumer Issues,Consumer Issues +418037,Industry,Industry +416575,Industry,Industry +423603,Industry,Industry +502893,Sports,Sports +520196,Sports,Sports +423603,Sports,Sports +423602,Sports,Sports +422444,Sports,Sports +418037,Sports,Sports +438192,Security,Security +490742,Security,Security +267049,Environment,Environment +267049,Health,Health +293910,Health,Health +293909,Health,Health +272777,Taxation and Finance,Taxation and Finance +244269,Taxation and Finance,Taxation and Finance +280402,Taxation and Finance,Taxation and Finance +401959,Taxation and Finance,Taxation and Finance +397949,Taxation and Finance,Taxation and Finance +280403,Taxation and Finance,Taxation and Finance +258270,Taxation and Finance,Taxation and Finance +244270,Taxation and Finance,Taxation and Finance +395037,Taxation and Finance,Taxation and Finance +394997,Taxation and Finance,Taxation and Finance +393084,Taxation and Finance,Taxation and Finance +393074,Taxation and Finance,Taxation and Finance +392283,Taxation and Finance,Taxation and Finance +392279,Taxation and Finance,Taxation and Finance +388890,Taxation and Finance,Taxation and Finance +387036,Taxation and Finance,Taxation and Finance +384261,Taxation and Finance,Taxation and Finance +384260,Taxation and Finance,Taxation and Finance +452378,Taxation and Finance,Taxation and Finance +452362,Taxation and Finance,Taxation and Finance +452358,Taxation and Finance,Taxation and Finance +449776,Taxation and Finance,Taxation and Finance +444337,Taxation and Finance,Taxation and Finance +444336,Taxation and Finance,Taxation and Finance +443633,Taxation and Finance,Taxation and Finance +437586,Taxation and Finance,Taxation and Finance +437553,Taxation and Finance,Taxation and Finance +433034,Taxation and Finance,Taxation and Finance +433032,Taxation and Finance,Taxation and Finance +430290,Taxation and Finance,Taxation and Finance +430288,Taxation and Finance,Taxation and Finance +428328,Taxation and Finance,Taxation and Finance +425472,Taxation and Finance,Taxation and Finance +421420,Taxation and Finance,Taxation and Finance +421418,Taxation and Finance,Taxation and Finance +421417,Taxation and Finance,Taxation and Finance +421416,Taxation and Finance,Taxation and Finance +419129,Taxation and Finance,Taxation and Finance +419119,Taxation and Finance,Taxation and Finance +419103,Taxation and Finance,Taxation and Finance +419098,Taxation and Finance,Taxation and Finance +419097,Taxation and Finance,Taxation and Finance +417832,Taxation and Finance,Taxation and Finance +417830,Taxation and Finance,Taxation and Finance +415199,Taxation and Finance,Taxation and Finance +415197,Taxation and Finance,Taxation and Finance +408599,Taxation and Finance,Taxation and Finance +406153,Taxation and Finance,Taxation and Finance +437587,Taxation and Finance,Taxation and Finance +437554,Taxation and Finance,Taxation and Finance +244271,Taxation and Finance,Taxation and Finance +434914,Taxation and Finance,Taxation and Finance +430289,Taxation and Finance,Taxation and Finance +428362,Taxation and Finance,Taxation and Finance +425475,Taxation and Finance,Taxation and Finance +423396,Taxation and Finance,Taxation and Finance +419126,Taxation and Finance,Taxation and Finance +419117,Taxation and Finance,Taxation and Finance +419115,Taxation and Finance,Taxation and Finance +419102,Taxation and Finance,Taxation and Finance +419099,Taxation and Finance,Taxation and Finance +415201,Taxation and Finance,Taxation and Finance +415196,Taxation and Finance,Taxation and Finance +415194,Taxation and Finance,Taxation and Finance +412848,Taxation and Finance,Taxation and Finance +412844,Taxation and Finance,Taxation and Finance +412622,Taxation and Finance,Taxation and Finance +412613,Taxation and Finance,Taxation and Finance +407319,Taxation and Finance,Taxation and Finance +407318,Taxation and Finance,Taxation and Finance +406152,Taxation and Finance,Taxation and Finance +399750,Taxation and Finance,Taxation and Finance +399749,Taxation and Finance,Taxation and Finance +399747,Taxation and Finance,Taxation and Finance +399746,Taxation and Finance,Taxation and Finance +397951,Taxation and Finance,Taxation and Finance +394999,Taxation and Finance,Taxation and Finance +393078,Taxation and Finance,Taxation and Finance +388888,Taxation and Finance,Taxation and Finance +388886,Taxation and Finance,Taxation and Finance +388884,Taxation and Finance,Taxation and Finance +387035,Taxation and Finance,Taxation and Finance +382896,Taxation and Finance,Taxation and Finance +316384,Taxation and Finance,Taxation and Finance +460038,Taxation and Finance,Taxation and Finance +457316,Taxation and Finance,Taxation and Finance +452371,Taxation and Finance,Taxation and Finance +452347,Taxation and Finance,Taxation and Finance +452344,Taxation and Finance,Taxation and Finance +449774,Taxation and Finance,Taxation and Finance +444334,Taxation and Finance,Taxation and Finance +444333,Taxation and Finance,Taxation and Finance +443704,Taxation and Finance,Taxation and Finance +440959,Taxation and Finance,Taxation and Finance +430287,Taxation and Finance,Taxation and Finance +428368,Taxation and Finance,Taxation and Finance +244272,Taxation and Finance,Taxation and Finance +425473,Taxation and Finance,Taxation and Finance +419131,Taxation and Finance,Taxation and Finance +419113,Taxation and Finance,Taxation and Finance +419108,Taxation and Finance,Taxation and Finance +419067,Taxation and Finance,Taxation and Finance +417837,Taxation and Finance,Taxation and Finance +417836,Taxation and Finance,Taxation and Finance +417835,Taxation and Finance,Taxation and Finance +415200,Taxation and Finance,Taxation and Finance +415195,Taxation and Finance,Taxation and Finance +415193,Taxation and Finance,Taxation and Finance +415192,Taxation and Finance,Taxation and Finance +404894,Taxation and Finance,Taxation and Finance +399748,Taxation and Finance,Taxation and Finance +397950,Taxation and Finance,Taxation and Finance +395039,Taxation and Finance,Taxation and Finance +395021,Taxation and Finance,Taxation and Finance +395016,Taxation and Finance,Taxation and Finance +395003,Taxation and Finance,Taxation and Finance +395001,Taxation and Finance,Taxation and Finance +394994,Taxation and Finance,Taxation and Finance +394989,Taxation and Finance,Taxation and Finance +394909,Taxation and Finance,Taxation and Finance +393083,Taxation and Finance,Taxation and Finance +393076,Taxation and Finance,Taxation and Finance +393073,Taxation and Finance,Taxation and Finance +392280,Taxation and Finance,Taxation and Finance +388889,Taxation and Finance,Taxation and Finance +388887,Taxation and Finance,Taxation and Finance +388885,Taxation and Finance,Taxation and Finance +382892,Taxation and Finance,Taxation and Finance +461074,Taxation and Finance,Taxation and Finance +459467,Taxation and Finance,Taxation and Finance +459466,Taxation and Finance,Taxation and Finance +457314,Taxation and Finance,Taxation and Finance +452342,Taxation and Finance,Taxation and Finance +452340,Taxation and Finance,Taxation and Finance +440958,Taxation and Finance,Taxation and Finance +440772,Taxation and Finance,Taxation and Finance +437632,Taxation and Finance,Taxation and Finance +437585,Taxation and Finance,Taxation and Finance +437556,Taxation and Finance,Taxation and Finance +309751,Health,Health +309750,Health,Health +335601,Health,Health +309750,Intellectual Property,Intellectual Property +335601,Intellectual Property,Intellectual Property +319095,Intellectual Property,Intellectual Property +309751,Research and Development,Research and Development +309750,Research and Development,Research and Development +335601,Research and Development,Research and Development +335601,Security,Security +319095,Security,Security +309751,Security,Security +264074,Education,Education +264070,Education,Education +264088,Education,Education +264074,Employment and Training,Employment and Training +264070,Employment and Training,Employment and Training +253129,Employment and Training,Employment and Training +248369,Employment and Training,Employment and Training +248149,Employment and Training,Employment and Training +264088,Employment and Training,Employment and Training +248369,Immigration,Immigration +248149,Immigration,Immigration +264088,Immigration,Immigration +264076,Immigration,Immigration +264074,Immigration,Immigration +264070,Immigration,Immigration +264074,Labour,Labour +264070,Labour,Labour +248369,Labour,Labour +264088,Labour,Labour +264074,Official Languages,Official Languages +264070,Official Languages,Official Languages +264088,Official Languages,Official Languages +264070,Regional Development,Regional Development +253129,Regional Development,Regional Development +248369,Regional Development,Regional Development +248149,Regional Development,Regional Development +264088,Regional Development,Regional Development +264076,Regional Development,Regional Development +268832,Employment and Training,Employment and Training +259601,Employment and Training,Employment and Training +244670,Pensions,Pensions +544869,Climate,Climate +527121,Climate,Climate +244676,Climate,Climate +375413,Climate,Climate +375412,Climate,Climate +375411,Climate,Climate +375410,Climate,Climate +367507,Climate,Climate +364879,Climate,Climate +344559,Climate,Climate +344558,Climate,Climate +326494,Climate,Climate +326493,Climate,Climate +314129,Climate,Climate +311352,Climate,Climate +300691,Climate,Climate +300690,Climate,Climate +300689,Climate,Climate +300670,Climate,Climate +300669,Climate,Climate +264401,Climate,Climate +264400,Climate,Climate +264395,Climate,Climate +264393,Climate,Climate +402085,Climate,Climate +399315,Climate,Climate +397317,Climate,Climate +397316,Climate,Climate +397314,Climate,Climate +394889,Climate,Climate +394888,Climate,Climate +394887,Climate,Climate +394886,Climate,Climate +393142,Climate,Climate +393140,Climate,Climate +390137,Climate,Climate +389080,Climate,Climate +380586,Climate,Climate +380585,Climate,Climate +380309,Climate,Climate +377675,Climate,Climate +377666,Climate,Climate +377664,Climate,Climate +377663,Climate,Climate +375447,Climate,Climate +375446,Climate,Climate +375445,Climate,Climate +375444,Climate,Climate +375443,Climate,Climate +375442,Climate,Climate +375441,Climate,Climate +375440,Climate,Climate +375439,Climate,Climate +375438,Climate,Climate +375437,Climate,Climate +375436,Climate,Climate +375435,Climate,Climate +375433,Climate,Climate +375432,Climate,Climate +375431,Climate,Climate +375430,Climate,Climate +375428,Climate,Climate +375427,Climate,Climate +375425,Climate,Climate +375424,Climate,Climate +375423,Climate,Climate +375422,Climate,Climate +375421,Climate,Climate +375419,Climate,Climate +375418,Climate,Climate +375417,Climate,Climate +375415,Climate,Climate +375414,Climate,Climate +518577,Climate,Climate +518575,Climate,Climate +513523,Climate,Climate +511984,Climate,Climate +496949,Climate,Climate +494994,Climate,Climate +494581,Climate,Climate +494580,Climate,Climate +494579,Climate,Climate +494577,Climate,Climate +489699,Climate,Climate +485729,Climate,Climate +485728,Climate,Climate +463836,Climate,Climate +457786,Climate,Climate +456538,Climate,Climate +454064,Climate,Climate +453836,Climate,Climate +446282,Climate,Climate +445903,Climate,Climate +445902,Climate,Climate +444432,Climate,Climate +443107,Climate,Climate +429853,Climate,Climate +427233,Climate,Climate +427151,Climate,Climate +427150,Climate,Climate +427149,Climate,Climate +423266,Climate,Climate +423264,Climate,Climate +423263,Climate,Climate +423257,Climate,Climate +420828,Climate,Climate +420827,Climate,Climate +420826,Climate,Climate +420824,Climate,Climate +420821,Climate,Climate +420817,Climate,Climate +420816,Climate,Climate +418726,Climate,Climate +418694,Climate,Climate +415334,Climate,Climate +394873,International Trade,International Trade +394872,International Trade,International Trade +406992,International Trade,International Trade +465983,Budget,Budget +527611,Budget,Budget +393475,Budget,Budget +524618,Budget,Budget +512023,Budget,Budget +512022,Budget,Budget +509891,Budget,Budget +509885,Budget,Budget +509876,Budget,Budget +504129,Budget,Budget +500110,Budget,Budget +494540,Budget,Budget +494539,Budget,Budget +494533,Budget,Budget +492561,Budget,Budget +492560,Budget,Budget +491058,Budget,Budget +490704,Budget,Budget +490701,Budget,Budget +490653,Budget,Budget +486863,Budget,Budget +486673,Budget,Budget +480007,Budget,Budget +477922,Budget,Budget +329771,Tourism,Tourism +288569,Tourism,Tourism +340885,Tourism,Tourism +288329,Tourism,Tourism +252109,Pensions,Pensions +247630,Pensions,Pensions +276074,Pensions,Pensions +270714,Pensions,Pensions +252109,Taxation and Finance,Taxation and Finance +247630,Taxation and Finance,Taxation and Finance +347086,Security,Security +247269,Security,Security +356679,Security,Security +354322,Security,Security +245069,Research and Development,Recherche et développement +245063,Justice and Law Enforcement,Justice and Law Enforcement +245056,Justice and Law Enforcement,Justice and Law Enforcement +301310,Justice and Law Enforcement,Justice and Law Enforcement +301309,Justice and Law Enforcement,Justice and Law Enforcement +245065,Justice and Law Enforcement,Justice and Law Enforcement +390490,Taxation and Finance,Taxation and Finance +390489,Taxation and Finance,Taxation and Finance +370440,Taxation and Finance,Taxation and Finance +370439,Taxation and Finance,Taxation and Finance +370438,Taxation and Finance,Taxation and Finance +311055,Taxation and Finance,Taxation and Finance +311054,Taxation and Finance,Taxation and Finance +281151,Taxation and Finance,Taxation and Finance +281150,Taxation and Finance,Taxation and Finance +281149,Taxation and Finance,Taxation and Finance +269156,Taxation and Finance,Taxation and Finance +264749,Taxation and Finance,Taxation and Finance +259541,Taxation and Finance,Taxation and Finance +493366,Taxation and Finance,Taxation and Finance +490672,Taxation and Finance,Taxation and Finance +487511,Taxation and Finance,Taxation and Finance +487508,Taxation and Finance,Taxation and Finance +450069,Taxation and Finance,Taxation and Finance +447546,Taxation and Finance,Taxation and Finance +443643,Taxation and Finance,Taxation and Finance +442580,Taxation and Finance,Taxation and Finance +442575,Taxation and Finance,Taxation and Finance +439353,Taxation and Finance,Taxation and Finance +435397,Taxation and Finance,Taxation and Finance +412417,Taxation and Finance,Taxation and Finance +412416,Taxation and Finance,Taxation and Finance +472014,Consumer Issues,Consumer Issues +472013,Consumer Issues,Consumer Issues +395310,Consumer Issues,Consumer Issues +395309,Consumer Issues,Consumer Issues +395308,Consumer Issues,Consumer Issues +391787,Consumer Issues,Consumer Issues +386243,Consumer Issues,Consumer Issues +382006,Consumer Issues,Consumer Issues +369609,Consumer Issues,Consumer Issues +369608,Consumer Issues,Consumer Issues +350808,Consumer Issues,Consumer Issues +350807,Consumer Issues,Consumer Issues +350806,Consumer Issues,Consumer Issues +350805,Consumer Issues,Consumer Issues +349519,Consumer Issues,Consumer Issues +349518,Consumer Issues,Consumer Issues +349517,Consumer Issues,Consumer Issues +348292,Consumer Issues,Consumer Issues +348291,Consumer Issues,Consumer Issues +326338,Consumer Issues,Consumer Issues +326336,Consumer Issues,Consumer Issues +326335,Consumer Issues,Consumer Issues +321958,Consumer Issues,Consumer Issues +321950,Consumer Issues,Consumer Issues +321945,Consumer Issues,Consumer Issues +303492,Consumer Issues,Consumer Issues +271609,Consumer Issues,Consumer Issues +443087,Consumer Issues,Consumer Issues +443083,Consumer Issues,Consumer Issues +410807,Consumer Issues,Consumer Issues +521431,Budget,Budget +521429,Budget,Budget +245352,Budget,Budget +521427,Budget,Budget +518966,Budget,Budget +518921,Budget,Budget +518920,Budget,Budget +542646,Budget,Budget +542645,Budget,Budget +542636,Budget,Budget +539266,Budget,Budget +534874,Budget,Budget +531796,Budget,Budget +531639,Budget,Budget +531634,Budget,Budget +531631,Budget,Budget +528371,Budget,Budget +528365,Budget,Budget +528363,Budget,Budget +528351,Budget,Budget +525270,Budget,Budget +521443,Budget,Budget +521440,Budget,Budget +245425,Budget,Budget +245423,Budget,Budget +319055,Budget,Budget +319035,Budget,Budget +250756,Budget,Budget +444611,Employment and Training,Employment and Training +434324,Employment and Training,Employment and Training +245436,Employment and Training,Employment and Training +245425,Employment and Training,Employment and Training +245423,Employment and Training,Employment and Training +375613,Employment and Training,Employment and Training +375612,Employment and Training,Employment and Training +375611,Employment and Training,Employment and Training +375610,Employment and Training,Employment and Training +351235,Employment and Training,Employment and Training +429864,Employment and Training,Employment and Training +429229,Employment and Training,Employment and Training +417619,Employment and Training,Employment and Training +406527,Employment and Training,Employment and Training +404956,Employment and Training,Employment and Training +397697,Employment and Training,Employment and Training +245750,Education,Education +245749,Education,Education +309858,Defence,Defence +309850,Defence,Defence +309845,Defence,Defence +271554,Defence,Defence +269932,Defence,Defence +247029,Defence,Defence +245729,Defence,Defence +437322,Defence,Defence +398940,Defence,Defence +397642,Defence,Defence +392072,Defence,Defence +365403,Defence,Defence +309862,Defence,Defence +392072,Government Procurement,Government Procurement +437322,Government Procurement,Government Procurement +245729,Government Procurement,Government Procurement +365403,Government Procurement,Government Procurement +309862,Government Procurement,Government Procurement +309860,Government Procurement,Government Procurement +309858,Government Procurement,Government Procurement +309850,Government Procurement,Government Procurement +309845,Government Procurement,Government Procurement +271554,Government Procurement,Government Procurement +269932,Government Procurement,Government Procurement +247029,Government Procurement,Government Procurement +398940,Government Procurement,Government Procurement +385230,Government Procurement,Government Procurement +365225,Government Procurement,Government Procurement +375340,Taxation and Finance,Taxation and Finance +369114,Taxation and Finance,Taxation and Finance +360968,Taxation and Finance,Taxation and Finance +355648,Taxation and Finance,Taxation and Finance +350612,Taxation and Finance,Taxation and Finance +350605,Taxation and Finance,Taxation and Finance +326876,Taxation and Finance,Taxation and Finance +326873,Taxation and Finance,Taxation and Finance +326872,Taxation and Finance,Taxation and Finance +318213,Taxation and Finance,Taxation and Finance +315618,Taxation and Finance,Taxation and Finance +310094,Taxation and Finance,Taxation and Finance +278791,Taxation and Finance,Taxation and Finance +278789,Taxation and Finance,Taxation and Finance +426300,Taxation and Finance,Taxation and Finance +413202,Taxation and Finance,Taxation and Finance +404379,Taxation and Finance,Taxation and Finance +404377,Taxation and Finance,Taxation and Finance +401411,Taxation and Finance,Taxation and Finance +397889,Taxation and Finance,Taxation and Finance +397888,Taxation and Finance,Taxation and Finance +393987,Taxation and Finance,Taxation and Finance +393986,Taxation and Finance,Taxation and Finance +392464,Taxation and Finance,Taxation and Finance +392463,Taxation and Finance,Taxation and Finance +391238,Taxation and Finance,Taxation and Finance +387242,Taxation and Finance,Taxation and Finance +321937,Economic Development,Economic Development +321936,Economic Development,Economic Development +285329,Economic Development,Economic Development +263415,Economic Development,Economic Development +263414,Economic Development,Economic Development +263413,Economic Development,Economic Development +263412,Economic Development,Economic Development +263410,Economic Development,Economic Development +321951,Economic Development,Economic Development +321948,Economic Development,Economic Development +321944,Economic Development,Economic Development +321942,Economic Development,Economic Development +321941,Economic Development,Economic Development +321940,Economic Development,Economic Development +321939,Economic Development,Economic Development +263412,Transportation,Transportation +263410,Transportation,Transportation +250632,Transportation,Transportation +250628,Transportation,Transportation +250622,Transportation,Transportation +250620,Transportation,Transportation +250617,Transportation,Transportation +250613,Transportation,Transportation +321951,Transportation,Transportation +321948,Transportation,Transportation +321944,Transportation,Transportation +321942,Transportation,Transportation +321941,Transportation,Transportation +321940,Transportation,Transportation +321939,Transportation,Transportation +321938,Transportation,Transportation +321937,Transportation,Transportation +321936,Transportation,Transportation +280330,Transportation,Transportation +277365,Transportation,Transportation +273639,Transportation,Transportation +263415,Transportation,Transportation +263414,Transportation,Transportation +294689,Transportation,Transportation +294669,Transportation,Transportation +275214,Transportation,Transportation +271809,Transportation,Transportation +270973,Transportation,Transportation +246032,Transportation,Transportation +347781,Transportation,Transportation +347058,Transportation,Transportation +336098,Transportation,Transportation +336097,Transportation,Transportation +321961,Transportation,Transportation +315298,Transportation,Transportation +287709,Economic Development,Economic Development +246033,Economic Development,Economic Development +310149,Economic Development,Economic Development +247690,Economic Development,Economic Development +246034,Economic Development,Economic Development +246037,Economic Development,Economic Development +246035,Economic Development,Economic Development +540319,Budget,Budget +436461,Climate,Climate +453917,Climate,Climate +447500,Climate,Climate +497020,Employment and Training,Employment and Training +496992,Employment and Training,Employment and Training +401467,Employment and Training,Employment and Training +401304,Employment and Training,Employment and Training +401303,Employment and Training,Employment and Training +401301,Employment and Training,Employment and Training +399656,Employment and Training,Employment and Training +393595,Employment and Training,Employment and Training +392582,Employment and Training,Employment and Training +375306,Employment and Training,Employment and Training +375305,Employment and Training,Employment and Training +371654,Employment and Training,Employment and Training +370693,Employment and Training,Employment and Training +370689,Employment and Training,Employment and Training +368928,Employment and Training,Employment and Training +368922,Employment and Training,Employment and Training +365989,Employment and Training,Employment and Training +335189,Employment and Training,Employment and Training +332891,Employment and Training,Employment and Training +496411,Employment and Training,Employment and Training +494034,Employment and Training,Employment and Training +494033,Employment and Training,Employment and Training +493836,Employment and Training,Employment and Training +489090,Employment and Training,Employment and Training +488914,Employment and Training,Employment and Training +488593,Employment and Training,Employment and Training +488170,Employment and Training,Employment and Training +485730,Employment and Training,Employment and Training +485662,Employment and Training,Employment and Training +485658,Employment and Training,Employment and Training +485587,Employment and Training,Employment and Training +485489,Employment and Training,Employment and Training +484785,Employment and Training,Employment and Training +483594,Employment and Training,Employment and Training +483039,Employment and Training,Employment and Training +483037,Employment and Training,Employment and Training +476285,Employment and Training,Employment and Training +469697,Employment and Training,Employment and Training +469483,Employment and Training,Employment and Training +469296,Employment and Training,Employment and Training +463041,Employment and Training,Employment and Training +462957,Employment and Training,Employment and Training +462956,Employment and Training,Employment and Training +453915,Employment and Training,Employment and Training +453914,Employment and Training,Employment and Training +451346,Employment and Training,Employment and Training +451344,Employment and Training,Employment and Training +451343,Employment and Training,Employment and Training +451342,Employment and Training,Employment and Training +451341,Employment and Training,Employment and Training +451340,Employment and Training,Employment and Training +451339,Employment and Training,Employment and Training +451338,Employment and Training,Employment and Training +451337,Employment and Training,Employment and Training +451336,Employment and Training,Employment and Training +448698,Employment and Training,Employment and Training +446329,Employment and Training,Employment and Training +439903,Employment and Training,Employment and Training +436545,Employment and Training,Employment and Training +436543,Employment and Training,Employment and Training +436458,Employment and Training,Employment and Training +436447,Employment and Training,Employment and Training +436377,Employment and Training,Employment and Training +436376,Employment and Training,Employment and Training +436375,Employment and Training,Employment and Training +436374,Employment and Training,Employment and Training +436373,Employment and Training,Employment and Training +436372,Employment and Training,Employment and Training +436370,Employment and Training,Employment and Training +436369,Employment and Training,Employment and Training +436367,Employment and Training,Employment and Training +436360,Employment and Training,Employment and Training +436359,Employment and Training,Employment and Training +436358,Employment and Training,Employment and Training +436357,Employment and Training,Employment and Training +431533,Employment and Training,Employment and Training +431532,Employment and Training,Employment and Training +431530,Employment and Training,Employment and Training +425867,Employment and Training,Employment and Training +422974,Employment and Training,Employment and Training +417504,Employment and Training,Employment and Training +408008,Employment and Training,Employment and Training +407148,Employment and Training,Employment and Training +404239,Employment and Training,Employment and Training +540319,Employment and Training,Employment and Training +540318,Employment and Training,Employment and Training +540276,Employment and Training,Employment and Training +515134,Employment and Training,Employment and Training +507875,Employment and Training,Employment and Training +507870,Employment and Training,Employment and Training +507866,Employment and Training,Employment and Training +506330,Employment and Training,Employment and Training +503335,Employment and Training,Employment and Training +497507,Employment and Training,Employment and Training +497506,Employment and Training,Employment and Training +497503,Employment and Training,Employment and Training +497502,Employment and Training,Employment and Training +471635,Energy,Energy +469004,Energy,Energy +453917,Energy,Energy +447500,Energy,Energy +436461,Energy,Energy +436458,Energy,Energy +436447,Energy,Energy +436377,Energy,Energy +436376,Energy,Energy +375759,Energy,Energy +375758,Energy,Energy +375757,Energy,Energy +375754,Energy,Energy +368931,Energy,Energy +368922,Energy,Energy +536528,Energy,Energy +515134,Energy,Energy +503335,Energy,Energy +497506,Energy,Energy +497502,Energy,Energy +496412,Energy,Energy +485662,Energy,Energy +497502,Environment,Environment +453917,Environment,Environment +442978,Environment,Environment +469559,Government Procurement,Government Procurement +463041,Government Procurement,Government Procurement +245181,Government Procurement,Government Procurement +252155,Official Languages,Langues officielles +330364,Education,Éducation +317452,Immigration,Immigration +373486,Health,Health +241156,Security,Security +241159,Security,Security +241162,Security,Security +241176,Energy,Energy +241177,Taxation and Finance,Taxation and Finance +241183,Energy,Energy +241218,Economic Development,Economic Development +241230,Taxation and Finance,Taxation and Finance +241241,Taxation and Finance,Taxation and Finance +287709,Regional Development,Développement régional +250797,Sports,Sports +241271,Official Languages,Official Languages +245546,Energy,Energy +276510,Taxation and Finance,Taxation and Finance +241392,Privacy and Access to Information,Privacy and Access to Information +347090,International Trade,International Trade +250712,Health,Health +241431,Transportation,Transportation +241434,Climate,Climate +241432,Climate,Climate +241434,Transportation,Transportation +456629,Economic Development,Economic Development +456672,Security,Security +307389,International Trade,International Trade +251809,Taxation and Finance,Taxation and Finance +245546,Budget,Budget +241698,Economic Development,Economic Development +364063,Budget,Budget +241971,Transportation,Transportation +253431,Industry,Industry +244979,Energy,Energy +300651,Transportation,Transportation +318944,Consumer Issues,Consumer Issues +325974,Economic Development,Economic Development +302009,Education,Education +367876,Justice and Law Enforcement,Justice and Law Enforcement +271730,Research and Development,Research and Development +250554,Education,Education +250554,Taxation and Finance,Taxation and Finance +250554,Employment and Training,Employment and Training +250679,Employment and Training,Employment and Training +244619,Agriculture,Agriculture +244619,Consumer Issues,Consumer Issues +244619,International Trade,International Trade +242350,International Trade,International Trade +242351,Labour,Labour +264378,Defence,Defence +399513,Transportation,Transportation +277505,Government Procurement,Government Procurement +355351,Industry,Industry +263171,Budget,Budget +263171,Government Procurement,Government Procurement +274090,Health,Health +250900,Research and Development,Research and Development +250746,Consumer Issues,Consumer Issues +250746,International Trade,International Trade +250746,Agriculture,Agriculture +250746,Regional Development,Regional Development +414431,Pensions,Pensions +254373,International Trade,International Trade +254373,Agriculture,Agriculture +254373,Industry,Industry +243069,Taxation and Finance,Taxation and Finance +451347,Economic Development,Economic Development +244553,Health,Health +390569,International Development,International Development +244553,International Relations,International Relations +268175,International Trade,International Trade +390563,Research and Development,Research and Development +248130,Energy,Energy +248130,Research and Development,Research and Development +242730,Economic Development,Economic Development +249451,Health,Health +257770,Infrastructure,Infrastructure +249670,Justice and Law Enforcement,Justice and Law Enforcement +491549,Infrastructure,Infrastructure +243891,Regional Development,Regional Development +251151,Environment,Environment +251149,Energy,Energy +251150,Industry,Industry +288909,Education,Education +288909,Employment and Training,Employment and Training +288909,Industry,Industry +288909,Research and Development,Research and Development +271258,Consumer Issues,Consumer Issues +266531,Environment,Environment +266531,Industry,Industry +271257,International Trade,International Trade +254071,Transportation,Transportation +281969,Industry,Industry +283470,Industry,Industry +243410,Economic Development,Economic Development +243473,Regional Development,Regional Development +264410,Economic Development,Economic Development +264410,Mining,Mining +348003,International Development,International Development +244403,International Relations,International Relations +243752,Intellectual Property,Intellectual Property +243756,Taxation and Finance,Taxation and Finance +261777,Economic Development,Economic Development +243811,Transportation,Transportation +251372,Taxation and Finance,Taxation and Finance +283669,Defence,Defence +283669,Government Procurement,Government Procurement +416575,Consumer Issues,Consumer Issues +520196,Employment and Training,Employment and Training +423602,Industry,Industry +416575,Sports,Sports +244018,Environment,Environment +244036,Security,Security +275237,Environment,Environment +275237,Health,Health +312249,Health,Health +280401,Taxation and Finance,Taxation and Finance +404895,Taxation and Finance,Taxation and Finance +440785,Taxation and Finance,Taxation and Finance +431967,Taxation and Finance,Taxation and Finance +244273,Taxation and Finance,Taxation and Finance +319095,Health,Health +309751,Intellectual Property,Intellectual Property +319095,Research and Development,Research and Development +309750,Security,Security +244335,Budget,Budget +244336,Budget,Budget +244339,Budget,Budget +248369,Economic Development,Economic Development +264076,Education,Education +264076,Employment and Training,Employment and Training +253129,Immigration,Immigration +264076,Labour,Labour +264076,Official Languages,Official Languages +264074,Regional Development,Regional Development +268833,Employment and Training,Employment and Training +259601,Immigration,Immigration +259601,Labour,Labour +276491,Mining,Mining +248389,Health,Health +248389,Industry,Industry +248389,Intellectual Property,Intellectual Property +248389,International Trade,International Trade +244663,Pensions,Pensions +258911,Pensions,Pensions +413496,Climate,Climate +244691,Budget,Budget +244693,Budget,Budget +244696,Budget,Budget +406991,International Trade,International Trade +313031,Government Procurement,Government Procurement +470545,Budget,Budget +329772,Tourism,Tourism +288570,Tourism,Tourism +340893,Tourism,Tourism +266289,Pensions,Pensions +266289,Taxation and Finance,Taxation and Finance +348352,Security,Security +244949,Government Procurement,Government Procurement +326324,Intellectual Property,Intellectual Property +245000,Government Procurement,Government Procurement +245010,Agriculture,Agriculture +246709,Research and Development,Recherche et développement +245064,Justice and Law Enforcement,Justice and Law Enforcement +255629,Financial Institutions,Financial Institutions +245191,Research and Development,Research and Development +406690,Taxation and Finance,Taxation and Finance +404937,Consumer Issues,Consumer Issues +410809,Privacy and Access to Information,Privacy and Access to Information +521437,Budget,Budget +245436,Budget,Budget +444623,Employment and Training,Employment and Training +245443,Budget,Budget +245448,Budget,Budget +245448,Employment and Training,Employment and Training +245751,Education,Education +254372,Immigration,Immigration +245690,Financial Institutions,Financial Institutions +309860,Defence,Defence +397642,Government Procurement,Government Procurement +245751,Immigration,Immigration +249956,Government Procurement,Government Procurement +375342,Taxation and Finance,Taxation and Finance +321938,Economic Development,Economic Development +263413,Transportation,Transportation +246030,Economic Development,Economic Development +310149,Transportation,Transportation +347058,Economic Development,Economic Development +315298,Economic Development,Economic Development +336098,Economic Development,Economic Development +463037,Budget,Budget +442978,Climate,Climate +458940,Defence,Defence +419176,Economic Development,Economic Development +425867,Education,Education +497499,Employment and Training,Employment and Training +476285,Energy,Energy +515134,Environment,Environment +469766,Government Procurement,Government Procurement +446328,Health,Health +393594,Immigration,Immigration +419175,Infrastructure,Infrastructure +398834,International Trade,International Trade +420540,Labour,Labour +420417,Pensions,Pensions +494034,Taxation and Finance,Taxation and Finance +488174,Transportation,Transportation +333753,Taxation and Finance,Taxation and Finance +246163,International Trade,International Trade +335536,Budget,Budget +335536,Education,Education +335536,Health,Health +250709,Health,Health +337109,Consumer Issues,Consumer Issues +309449,Justice and Law Enforcement,Justice and Law Enforcement +323311,Privacy and Access to Information,Privacy and Access to Information +337109,Budget,Budget +368773,Infrastructure,Infrastructure +314089,Budget,Budget +347538,Taxation and Finance,Impôts et finances +352709,Infrastructure,Infrastructure +337847,Transportation,Transportation +246752,Agriculture,Agriculture +253370,Environment,Environment +249016,Regional Development,Regional Development +249011,Mining,Mining +247154,Taxation and Finance,Taxation and Finance +408218,Environment,Environment +273150,Labour,Labour +247052,Taxation and Finance,Taxation and Finance +458940,Government Procurement,Government Procurement +453916,Government Procurement,Government Procurement +393595,Government Procurement,Government Procurement +471458,Government Procurement,Government Procurement +419176,Health,Health +393619,Health,Health +393616,Health,Health +393607,Health,Health +393604,Health,Health +469212,Health,Health +469004,Health,Health +466127,Health,Health +466126,Health,Health +466125,Health,Health +466124,Health,Health +466123,Health,Health +466122,Health,Health +466094,Health,Health +466087,Health,Health +466084,Health,Health +466083,Health,Health +466082,Health,Health +466081,Health,Health +466077,Health,Health +466075,Health,Health +466011,Health,Health +466010,Health,Health +466008,Health,Health +466006,Health,Health +466005,Health,Health +466003,Health,Health +466002,Health,Health +466001,Health,Health +466000,Health,Health +465999,Health,Health +465998,Health,Health +465997,Health,Health +390655,Immigration,Immigration +540319,Immigration,Immigration +417502,Infrastructure,Infrastructure +407148,Infrastructure,Infrastructure +404188,Infrastructure,Infrastructure +401467,Infrastructure,Infrastructure +401301,Infrastructure,Infrastructure +393595,Infrastructure,Infrastructure +393594,Infrastructure,Infrastructure +393590,Infrastructure,Infrastructure +375328,Infrastructure,Infrastructure +368931,Infrastructure,Infrastructure +368922,Infrastructure,Infrastructure +365989,Infrastructure,Infrastructure +506330,Infrastructure,Infrastructure +500894,Infrastructure,Infrastructure +497507,Infrastructure,Infrastructure +497506,Infrastructure,Infrastructure +497503,Infrastructure,Infrastructure +497502,Infrastructure,Infrastructure +497499,Infrastructure,Infrastructure +497020,Infrastructure,Infrastructure +496412,Infrastructure,Infrastructure +496411,Infrastructure,Infrastructure +488914,Infrastructure,Infrastructure +488593,Infrastructure,Infrastructure +485730,Infrastructure,Infrastructure +485662,Infrastructure,Infrastructure +485489,Infrastructure,Infrastructure +484785,Infrastructure,Infrastructure +483594,Infrastructure,Infrastructure +476285,Infrastructure,Infrastructure +471635,Infrastructure,Infrastructure +471458,Infrastructure,Infrastructure +469697,Infrastructure,Infrastructure +469483,Infrastructure,Infrastructure +469296,Infrastructure,Infrastructure +463020,Infrastructure,Infrastructure +453915,Infrastructure,Infrastructure +446329,Infrastructure,Infrastructure +436543,Infrastructure,Infrastructure +436458,Infrastructure,Infrastructure +436377,Infrastructure,Infrastructure +436376,Infrastructure,Infrastructure +436375,Infrastructure,Infrastructure +436374,Infrastructure,Infrastructure +436373,Infrastructure,Infrastructure +436372,Infrastructure,Infrastructure +436371,Infrastructure,Infrastructure +436370,Infrastructure,Infrastructure +436369,Infrastructure,Infrastructure +436367,Infrastructure,Infrastructure +436366,Infrastructure,Infrastructure +436365,Infrastructure,Infrastructure +436364,Infrastructure,Infrastructure +436362,Infrastructure,Infrastructure +436361,Infrastructure,Infrastructure +436360,Infrastructure,Infrastructure +436359,Infrastructure,Infrastructure +431532,Infrastructure,Infrastructure +427874,Infrastructure,Infrastructure +420482,Infrastructure,Infrastructure +420417,Infrastructure,Infrastructure +395262,International Trade,International Trade +377115,International Trade,International Trade +375328,International Trade,International Trade +368931,International Trade,International Trade +368928,International Trade,International Trade +368902,International Trade,International Trade +436460,International Trade,International Trade +434643,International Trade,International Trade +431533,International Trade,International Trade +422975,International Trade,International Trade +420550,International Trade,International Trade +418995,International Trade,International Trade +418700,International Trade,International Trade +418569,International Trade,International Trade +418568,International Trade,International Trade +418504,International Trade,International Trade +414435,International Trade,International Trade +411197,International Trade,International Trade +407148,International Trade,International Trade +404239,International Trade,International Trade +402096,International Trade,International Trade +401985,International Trade,International Trade +420539,Labour,Labour +420538,Labour,Labour +368931,Labour,Labour +368928,Labour,Labour +368922,Labour,Labour +368902,Labour,Labour +355652,Labour,Labour +335189,Labour,Labour +332891,Labour,Labour +324463,Labour,Labour +312449,Labour,Labour +297750,Labour,Labour +279229,Labour,Labour +420533,Labour,Labour +420532,Labour,Labour +420531,Labour,Labour +420530,Labour,Labour +420529,Labour,Labour +420526,Labour,Labour +420525,Labour,Labour +420524,Labour,Labour +420523,Labour,Labour +420522,Labour,Labour +420498,Labour,Labour +420497,Labour,Labour +420496,Labour,Labour +420495,Labour,Labour +420494,Labour,Labour +420493,Labour,Labour +420492,Labour,Labour +420491,Labour,Labour +420490,Labour,Labour +420489,Labour,Labour +420488,Labour,Labour +420486,Labour,Labour +420485,Labour,Labour +420484,Labour,Labour +420483,Labour,Labour +420482,Labour,Labour +420422,Labour,Labour +420421,Labour,Labour +420420,Labour,Labour +420419,Labour,Labour +420418,Labour,Labour +420417,Labour,Labour +420416,Labour,Labour +418995,Labour,Labour +418700,Labour,Labour +418568,Labour,Labour +417504,Labour,Labour +414435,Labour,Labour +414024,Labour,Labour +414023,Labour,Labour +407169,Labour,Labour +407148,Labour,Labour +404239,Labour,Labour +404214,Labour,Labour +404188,Labour,Labour +404117,Labour,Labour +402096,Labour,Labour +401985,Labour,Labour +401467,Labour,Labour +401303,Labour,Labour +401301,Labour,Labour +398834,Labour,Labour +397752,Labour,Labour +397751,Labour,Labour +397686,Labour,Labour +393623,Labour,Labour +393621,Labour,Labour +393619,Labour,Labour +393616,Labour,Labour +393607,Labour,Labour +393604,Labour,Labour +393603,Labour,Labour +393594,Labour,Labour +388875,Labour,Labour +388874,Labour,Labour +384184,Labour,Labour +381811,Labour,Labour +381749,Labour,Labour +378380,Labour,Labour +377115,Labour,Labour +377114,Labour,Labour +375498,Labour,Labour +375328,Labour,Labour +375306,Labour,Labour +375305,Labour,Labour +373362,Labour,Labour +371654,Labour,Labour +370693,Labour,Labour +370690,Labour,Labour +370689,Labour,Labour +540479,Labour,Labour +540319,Labour,Labour +540318,Labour,Labour +540228,Labour,Labour +540227,Labour,Labour +536528,Labour,Labour +520526,Labour,Labour +515134,Labour,Labour +507870,Labour,Labour +507866,Labour,Labour +506330,Labour,Labour +500894,Labour,Labour +497507,Labour,Labour +497506,Labour,Labour +497503,Labour,Labour +497499,Labour,Labour +497020,Labour,Labour +496992,Labour,Labour +496412,Labour,Labour +494034,Labour,Labour +494033,Labour,Labour +489090,Labour,Labour +488914,Labour,Labour +488593,Labour,Labour +485662,Labour,Labour +485587,Labour,Labour +485549,Labour,Labour +485489,Labour,Labour +484785,Labour,Labour +483594,Labour,Labour +483039,Labour,Labour +483037,Labour,Labour +476285,Labour,Labour +474005,Labour,Labour +471458,Labour,Labour +469697,Labour,Labour +469559,Labour,Labour +469483,Labour,Labour +469296,Labour,Labour +469212,Labour,Labour +469004,Labour,Labour +466127,Labour,Labour +466126,Labour,Labour +466125,Labour,Labour +466124,Labour,Labour +466123,Labour,Labour +466122,Labour,Labour +466094,Labour,Labour +466087,Labour,Labour +466084,Labour,Labour +466083,Labour,Labour +466082,Labour,Labour +466081,Labour,Labour +466077,Labour,Labour +466075,Labour,Labour +466011,Labour,Labour +466010,Labour,Labour +466008,Labour,Labour +466006,Labour,Labour +466005,Labour,Labour +466003,Labour,Labour +466002,Labour,Labour +466001,Labour,Labour +466000,Labour,Labour +465999,Labour,Labour +465998,Labour,Labour +465997,Labour,Labour +463041,Labour,Labour +463037,Labour,Labour +463020,Labour,Labour +462956,Labour,Labour +453915,Labour,Labour +453914,Labour,Labour +448700,Labour,Labour +448699,Labour,Labour +446329,Labour,Labour +446328,Labour,Labour +442978,Labour,Labour +439903,Labour,Labour +436545,Labour,Labour +436543,Labour,Labour +436461,Labour,Labour +436460,Labour,Labour +436458,Labour,Labour +436447,Labour,Labour +436377,Labour,Labour +436376,Labour,Labour +436375,Labour,Labour +436374,Labour,Labour +436373,Labour,Labour +436372,Labour,Labour +436371,Labour,Labour +436370,Labour,Labour +436369,Labour,Labour +436367,Labour,Labour +436366,Labour,Labour +436365,Labour,Labour +436364,Labour,Labour +436362,Labour,Labour +436361,Labour,Labour +436360,Labour,Labour +436359,Labour,Labour +436358,Labour,Labour +436357,Labour,Labour +434643,Labour,Labour +431532,Labour,Labour +429497,Labour,Labour +427874,Labour,Labour +425866,Labour,Labour +422975,Labour,Labour +422974,Labour,Labour +422973,Labour,Labour +422972,Labour,Labour +422702,Labour,Labour +420554,Labour,Labour +420552,Labour,Labour +420551,Labour,Labour +420550,Labour,Labour +420549,Labour,Labour +420548,Labour,Labour +420547,Labour,Labour +420546,Labour,Labour +420545,Labour,Labour +420544,Labour,Labour +420543,Labour,Labour +420541,Labour,Labour +420416,Pensions,Pensions +419176,Pensions,Pensions +312449,Pensions,Pensions +418699,Pensions,Pensions +418505,Pensions,Pensions +411198,Pensions,Pensions +397751,Pensions,Pensions +397686,Pensions,Pensions +395094,Pensions,Pensions +395093,Pensions,Pensions +395092,Pensions,Pensions +395091,Pensions,Pensions +395090,Pensions,Pensions +395089,Pensions,Pensions +395088,Pensions,Pensions +395087,Pensions,Pensions +395086,Pensions,Pensions +395084,Pensions,Pensions +395082,Pensions,Pensions +395080,Pensions,Pensions +395079,Pensions,Pensions +395077,Pensions,Pensions +393619,Pensions,Pensions +393616,Pensions,Pensions +393607,Pensions,Pensions +393604,Pensions,Pensions +393590,Pensions,Pensions +392582,Pensions,Pensions +392580,Pensions,Pensions +390658,Pensions,Pensions +541542,Pensions,Pensions +469212,Pensions,Pensions +466127,Pensions,Pensions +466126,Pensions,Pensions +466125,Pensions,Pensions +466124,Pensions,Pensions +466123,Pensions,Pensions +466122,Pensions,Pensions +466094,Pensions,Pensions +466087,Pensions,Pensions +466084,Pensions,Pensions +466083,Pensions,Pensions +466082,Pensions,Pensions +466081,Pensions,Pensions +466077,Pensions,Pensions +466075,Pensions,Pensions +466011,Pensions,Pensions +466010,Pensions,Pensions +466008,Pensions,Pensions +466006,Pensions,Pensions +466005,Pensions,Pensions +466003,Pensions,Pensions +466002,Pensions,Pensions +466001,Pensions,Pensions +466000,Pensions,Pensions +465999,Pensions,Pensions +465998,Pensions,Pensions +465997,Pensions,Pensions +454162,Pensions,Pensions +447499,Pensions,Pensions +436544,Pensions,Pensions +433902,Pensions,Pensions +433900,Pensions,Pensions +433899,Pensions,Pensions +433898,Pensions,Pensions +433897,Pensions,Pensions +433896,Pensions,Pensions +433894,Pensions,Pensions +433893,Pensions,Pensions +433892,Pensions,Pensions +433891,Pensions,Pensions +431533,Pensions,Pensions +431532,Pensions,Pensions +420554,Pensions,Pensions +420552,Pensions,Pensions +420551,Pensions,Pensions +420550,Pensions,Pensions +420549,Pensions,Pensions +420548,Pensions,Pensions +420547,Pensions,Pensions +420546,Pensions,Pensions +420545,Pensions,Pensions +420544,Pensions,Pensions +420543,Pensions,Pensions +420541,Pensions,Pensions +420540,Pensions,Pensions +420539,Pensions,Pensions +420538,Pensions,Pensions +420533,Pensions,Pensions +420532,Pensions,Pensions +420531,Pensions,Pensions +420530,Pensions,Pensions +420529,Pensions,Pensions +420526,Pensions,Pensions +420525,Pensions,Pensions +420524,Pensions,Pensions +420523,Pensions,Pensions +420522,Pensions,Pensions +420498,Pensions,Pensions +420497,Pensions,Pensions +420496,Pensions,Pensions +420495,Pensions,Pensions +420494,Pensions,Pensions +420493,Pensions,Pensions +420492,Pensions,Pensions +420491,Pensions,Pensions +420490,Pensions,Pensions +420489,Pensions,Pensions +420488,Pensions,Pensions +420486,Pensions,Pensions +420485,Pensions,Pensions +420484,Pensions,Pensions +420483,Pensions,Pensions +420482,Pensions,Pensions +420422,Pensions,Pensions +420421,Pensions,Pensions +420420,Pensions,Pensions +420419,Pensions,Pensions +420418,Pensions,Pensions +494033,Taxation and Finance,Taxation and Finance +540319,Taxation and Finance,Taxation and Finance +247209,Taxation and Finance,Taxation and Finance +247189,Taxation and Finance,Taxation and Finance +246989,Taxation and Finance,Taxation and Finance +404117,Taxation and Finance,Taxation and Finance +397752,Taxation and Finance,Taxation and Finance +393623,Taxation and Finance,Taxation and Finance +393621,Taxation and Finance,Taxation and Finance +393603,Taxation and Finance,Taxation and Finance +371654,Taxation and Finance,Taxation and Finance +324463,Taxation and Finance,Taxation and Finance +312449,Taxation and Finance,Taxation and Finance +297750,Taxation and Finance,Taxation and Finance +273990,Taxation and Finance,Taxation and Finance +260932,Taxation and Finance,Taxation and Finance +260930,Taxation and Finance,Taxation and Finance +260929,Taxation and Finance,Taxation and Finance +497507,Taxation and Finance,Taxation and Finance +497506,Taxation and Finance,Taxation and Finance +497503,Taxation and Finance,Taxation and Finance +496411,Taxation and Finance,Taxation and Finance +488170,Transportation,Transportation +483039,Transportation,Transportation +489091,Transportation,Transportation +333752,Taxation and Finance,Taxation and Finance +333751,Taxation and Finance,Taxation and Finance +313277,Taxation and Finance,Taxation and Finance +313276,Taxation and Finance,Taxation and Finance +246116,Taxation and Finance,Taxation and Finance +396501,Taxation and Finance,Taxation and Finance +394537,Taxation and Finance,Taxation and Finance +246162,International Trade,International Trade +246161,International Trade,International Trade +309449,Consumer Issues,Consumer Issues +375615,Consumer Issues,Consumer Issues +368773,Consumer Issues,Consumer Issues +323310,Privacy and Access to Information,Privacy and Access to Information +323309,Privacy and Access to Information,Privacy and Access to Information +342958,Taxation and Finance,Impôts et finances +342957,Taxation and Finance,Impôts et finances +314089,Taxation and Finance,Impôts et finances +270950,Taxation and Finance,Impôts et finances +270949,Taxation and Finance,Impôts et finances +251289,Taxation and Finance,Impôts et finances +248790,Taxation and Finance,Impôts et finances +344734,Infrastructure,Infrastructure +342340,Infrastructure,Infrastructure +333953,Infrastructure,Infrastructure +333952,Infrastructure,Infrastructure +330712,Infrastructure,Infrastructure +330711,Infrastructure,Infrastructure +329696,Infrastructure,Infrastructure +323909,Infrastructure,Infrastructure +290929,Infrastructure,Infrastructure +262390,Infrastructure,Infrastructure +249214,Infrastructure,Infrastructure +352710,Infrastructure,Infrastructure +330712,Transportation,Transportation +330711,Transportation,Transportation +249214,Transportation,Transportation +337850,Transportation,Transportation +249013,Environment,Environment +249010,Environment,Environment +249015,Regional Development,Regional Development +249009,Regional Development,Regional Development +253370,Regional Development,Regional Development +253370,Mining,Mining +247149,Taxation and Finance,Taxation and Finance +408213,Environment,Environment +260170,Environment,Environment +251451,Environment,Environment +395337,Environment,Environment +393236,Environment,Environment +392345,Environment,Environment +392344,Environment,Environment +389062,Environment,Environment +384013,Environment,Environment +383051,Environment,Environment +383039,Environment,Environment +382888,Environment,Environment +382813,Environment,Environment +382769,Environment,Environment +382768,Environment,Environment +382767,Environment,Environment +382766,Environment,Environment +382765,Environment,Environment +382764,Environment,Environment +382762,Environment,Environment +382049,Environment,Environment +381782,Environment,Environment +375772,Environment,Environment +375771,Environment,Environment +375770,Environment,Environment +375768,Environment,Environment +375039,Environment,Environment +370949,Environment,Environment +277933,Environment,Environment +276750,Environment,Environment +276749,Environment,Environment +460748,Environment,Environment +456217,Environment,Environment +432741,Environment,Environment +247051,Taxation and Finance,Taxation and Finance +247010,Taxation and Finance,Taxation and Finance +273150,Taxation and Finance,Taxation and Finance +247053,Taxation and Finance,Taxation and Finance +431458,Labour,Labour +431453,Labour,Labour +247133,Labour,Labour +247131,Labour,Labour +247109,Labour,Labour +377366,Labour,Labour +377360,Labour,Labour +302310,Labour,Labour +516074,Labour,Labour +485657,Labour,Labour +482972,Labour,Labour +482658,Labour,Labour +482504,Labour,Labour +482492,Labour,Labour +482490,Labour,Labour +482489,Labour,Labour +482487,Labour,Labour +482484,Labour,Labour +482483,Labour,Labour +472094,Labour,Labour +465265,Labour,Labour +453863,Labour,Labour +453862,Labour,Labour +453859,Labour,Labour +453856,Labour,Labour +453855,Labour,Labour +453854,Labour,Labour +259814,Agriculture,Agriculture +259814,Internal Trade,Internal Trade +320471,Infrastructure,Infrastructure +320470,Infrastructure,Infrastructure +296704,Defence,Defence +247789,International Relations,International Relations +393582,International Relations,International Relations +393581,International Relations,International Relations +393580,International Relations,International Relations +393521,International Relations,International Relations +392974,International Relations,International Relations +392952,International Relations,International Relations +388818,International Relations,International Relations +369699,International Relations,International Relations +369071,International Relations,International Relations +369041,International Relations,International Relations +334162,International Relations,International Relations +334156,International Relations,International Relations +334150,International Relations,International Relations +543009,International Relations,International Relations +531013,International Relations,International Relations +437844,International Relations,International Relations +434461,International Relations,International Relations +434459,International Relations,International Relations +408831,International Relations,International Relations +399559,International Relations,International Relations +319971,International Trade,International Trade +319970,International Trade,International Trade +277670,Research and Development,Research and Development +277669,Research and Development,Research and Development +299509,Justice and Law Enforcement,Justice and Law Enforcement +287449,Justice and Law Enforcement,Justice and Law Enforcement +273359,Justice and Law Enforcement,Justice and Law Enforcement +272157,Justice and Law Enforcement,Justice and Law Enforcement +269772,Justice and Law Enforcement,Justice and Law Enforcement +262790,Justice and Law Enforcement,Justice and Law Enforcement +262789,Justice and Law Enforcement,Justice and Law Enforcement +339549,Justice and Law Enforcement,Justice and Law Enforcement +339490,Justice and Law Enforcement,Justice and Law Enforcement +339431,Justice and Law Enforcement,Justice and Law Enforcement +339430,Justice and Law Enforcement,Justice and Law Enforcement +334586,Justice and Law Enforcement,Justice and Law Enforcement +334584,Justice and Law Enforcement,Justice and Law Enforcement +334582,Justice and Law Enforcement,Justice and Law Enforcement +334581,Justice and Law Enforcement,Justice and Law Enforcement +324785,Justice and Law Enforcement,Justice and Law Enforcement +324784,Justice and Law Enforcement,Justice and Law Enforcement +315212,Justice and Law Enforcement,Justice and Law Enforcement +306493,Justice and Law Enforcement,Justice and Law Enforcement +306492,Justice and Law Enforcement,Justice and Law Enforcement +299529,Justice and Law Enforcement,Justice and Law Enforcement +273359,Labour,Labour +272157,Labour,Labour +339431,Labour,Labour +339430,Labour,Labour +334586,Labour,Labour +334584,Labour,Labour +324785,Labour,Labour +272157,Transportation,Transportation +269772,Transportation,Transportation +339431,Transportation,Transportation +339430,Transportation,Transportation +334582,Transportation,Transportation +334581,Transportation,Transportation +324785,Transportation,Transportation +324784,Transportation,Transportation +306493,Transportation,Transportation +306492,Transportation,Transportation +299529,Transportation,Transportation +321397,Taxation and Finance,Taxation and Finance +321396,Taxation and Finance,Taxation and Finance +340398,Taxation and Finance,Taxation and Finance +340397,Taxation and Finance,Taxation and Finance +339492,Taxation and Finance,Taxation and Finance +334716,Taxation and Finance,Taxation and Finance +334715,Taxation and Finance,Taxation and Finance +334714,Taxation and Finance,Taxation and Finance +329409,Taxation and Finance,Taxation and Finance +325983,Taxation and Finance,Taxation and Finance +325982,Taxation and Finance,Taxation and Finance +325981,Taxation and Finance,Taxation and Finance +321399,Taxation and Finance,Taxation and Finance +257095,Health,Health +257094,Health,Health +257093,Health,Health +257090,Health,Health +257089,Health,Health +340398,Health,Health +340397,Health,Health +339492,Health,Health +334716,Health,Health +334715,Health,Health +334714,Health,Health +329409,Health,Health +325983,Health,Health +325982,Health,Health +325981,Health,Health +321399,Health,Health +321398,Health,Health +321397,Health,Health +321396,Health,Health +336393,Internal Trade,Internal Trade +283709,Industry,Industry +258089,Industry,Industry +352866,Industry,Industry +352865,Industry,Industry +349802,Industry,Industry +349800,Industry,Industry +339131,Industry,Industry +317752,Industry,Industry +312753,Industry,Industry +307730,Industry,Industry +299469,Taxation and Finance,Taxation and Finance +283709,Taxation and Finance,Taxation and Finance +352866,Taxation and Finance,Taxation and Finance +352865,Taxation and Finance,Taxation and Finance +349802,Taxation and Finance,Taxation and Finance +349801,Taxation and Finance,Taxation and Finance +349800,Taxation and Finance,Taxation and Finance +345417,Taxation and Finance,Taxation and Finance +344784,Taxation and Finance,Taxation and Finance +344781,Taxation and Finance,Taxation and Finance +339130,Taxation and Finance,Taxation and Finance +349801,Transportation,Transportation +344783,Transportation,Transportation +307710,Transportation,Transportation +283709,Transportation,Transportation +258091,Transportation,Transportation +258090,Transportation,Transportation +258089,Transportation,Transportation +312753,Consumer Issues,Consumer Issues +283709,Consumer Issues,Consumer Issues +349802,Consumer Issues,Consumer Issues +349801,Consumer Issues,Consumer Issues +349800,Consumer Issues,Consumer Issues +344784,Consumer Issues,Consumer Issues +307699,International Trade,International Trade +283709,International Trade,International Trade +352866,International Trade,International Trade +352865,International Trade,International Trade +349802,International Trade,International Trade +349801,International Trade,International Trade +349800,International Trade,International Trade +345417,International Trade,International Trade +344783,International Trade,International Trade +339131,International Trade,International Trade +339130,International Trade,International Trade +336393,International Trade,International Trade +317754,International Trade,International Trade +317753,International Trade,International Trade +317752,International Trade,International Trade +263953,International Trade,International Trade +255569,International Trade,International Trade +273367,International Trade,International Trade +340888,Security,Security +248854,Security,Security +340888,Defence,Defence +248854,Defence,Defence +340890,Government Procurement,Government Procurement +340888,Government Procurement,Government Procurement +248854,Industry,Industry +502703,International Trade,International Trade +401352,Education,Education +401708,Research and Development,Research and Development +537379,International Trade,International Trade +439848,International Trade,International Trade +319372,International Trade,International Trade +275329,International Trade,International Trade +401385,International Trade,International Trade +377669,International Trade,International Trade +374735,International Trade,International Trade +374733,International Trade,International Trade +374730,International Trade,International Trade +374725,International Trade,International Trade +374722,International Trade,International Trade +371448,International Trade,International Trade +371443,International Trade,International Trade +371438,International Trade,International Trade +371435,International Trade,International Trade +371429,International Trade,International Trade +335835,Taxation and Finance,Taxation and Finance +253269,Mining,Mining +253249,Mining,Mining +380126,Economic Development,Economic Development +361568,Economic Development,Economic Development +358302,Economic Development,Economic Development +358301,Economic Development,Economic Development +358300,Economic Development,Economic Development +358299,Economic Development,Economic Development +358298,Economic Development,Economic Development +358297,Economic Development,Economic Development +358296,Economic Development,Economic Development +358295,Economic Development,Economic Development +358293,Economic Development,Economic Development +358292,Economic Development,Economic Development +358291,Economic Development,Economic Development +358290,Economic Development,Economic Development +358289,Economic Development,Economic Development +358288,Economic Development,Economic Development +358287,Economic Development,Economic Development +351626,Economic Development,Economic Development +342372,Economic Development,Economic Development +342371,Economic Development,Economic Development +342370,Economic Development,Economic Development +342369,Economic Development,Economic Development +342368,Economic Development,Economic Development +342367,Economic Development,Economic Development +342366,Economic Development,Economic Development +342365,Economic Development,Economic Development +342364,Economic Development,Economic Development +254495,Economic Development,Economic Development +253830,Economic Development,Economic Development +253829,Economic Development,Economic Development +253811,Economic Development,Economic Development +420389,Economic Development,Economic Development +417184,Economic Development,Economic Development +410070,Economic Development,Economic Development +391811,Economic Development,Economic Development +391810,Economic Development,Economic Development +391809,Economic Development,Economic Development +391808,Economic Development,Economic Development +391807,Economic Development,Economic Development +391806,Economic Development,Economic Development +380128,Economic Development,Economic Development +391807,Environment,Environment +391806,Environment,Environment +254495,Environment,Environment +254494,Environment,Environment +253830,Environment,Environment +253811,Environment,Environment +380128,Environment,Environment +380127,Environment,Environment +380126,Environment,Environment +342368,Environment,Environment +342365,Environment,Environment +391811,Environment,Environment +391810,Environment,Environment +391809,Environment,Environment +357200,International Trade,Commerce international +345937,International Trade,Commerce international +395219,International Trade,Commerce international +382422,International Trade,Commerce international +370297,International Trade,Commerce international +368926,International Trade,Commerce international +499407,Agriculture,Agriculture +499389,Agriculture,Agriculture +382422,Agriculture,Agriculture +370297,Agriculture,Agriculture +368926,Agriculture,Agriculture +368925,Agriculture,Agriculture +357200,Agriculture,Agriculture +345937,Agriculture,Agriculture +452916,Agriculture,Agriculture +446652,Agriculture,Agriculture +446648,Agriculture,Agriculture +420778,Agriculture,Agriculture +420777,Agriculture,Agriculture +420776,Agriculture,Agriculture +409510,Agriculture,Agriculture +409504,Agriculture,Agriculture +409495,Agriculture,Agriculture +395219,Agriculture,Agriculture +345937,Internal Trade,Commerce intérieur +395219,Internal Trade,Commerce intérieur +382422,Internal Trade,Commerce intérieur +370297,Internal Trade,Commerce intérieur +368926,Internal Trade,Commerce intérieur +368925,Internal Trade,Commerce intérieur +297353,Industry,Industry +297352,Industry,Industry +297351,Industry,Industry +297350,Industry,Industry +288089,Industry,Industry +288074,Industry,Industry +288073,Industry,Industry +288072,Industry,Industry +288071,Industry,Industry +287929,Industry,Industry +280532,Industry,Industry +280531,Industry,Industry +280530,Industry,Industry +280529,Industry,Industry +277037,Industry,Industry +273115,Industry,Industry +273114,Industry,Industry +273113,Industry,Industry +273112,Industry,Industry +273109,Industry,Industry +267869,Industry,Industry +267859,Industry,Industry +263435,Industry,Industry +263434,Industry,Industry +254343,Industry,Industry +252961,Industry,Industry +252960,Industry,Industry +252958,Industry,Industry +252955,Industry,Industry +252954,Industry,Industry +252953,Industry,Industry +252953,International Trade,International Trade +252950,International Trade,International Trade +297353,International Trade,International Trade +297352,International Trade,International Trade +297351,International Trade,International Trade +297350,International Trade,International Trade +288089,International Trade,International Trade +288074,International Trade,International Trade +288073,International Trade,International Trade +288072,International Trade,International Trade +288071,International Trade,International Trade +287929,International Trade,International Trade +280532,International Trade,International Trade +280531,International Trade,International Trade +280530,International Trade,International Trade +280529,International Trade,International Trade +277037,International Trade,International Trade +273115,International Trade,International Trade +273114,International Trade,International Trade +273113,International Trade,International Trade +273112,International Trade,International Trade +273109,International Trade,International Trade +267869,International Trade,International Trade +267859,International Trade,International Trade +263435,International Trade,International Trade +263434,International Trade,International Trade +254343,International Trade,International Trade +252961,International Trade,International Trade +252960,International Trade,International Trade +252958,International Trade,International Trade +252955,International Trade,International Trade +252953,Taxation and Finance,Taxation and Finance +252950,Taxation and Finance,Taxation and Finance +297353,Taxation and Finance,Taxation and Finance +297352,Taxation and Finance,Taxation and Finance +297351,Taxation and Finance,Taxation and Finance +297350,Taxation and Finance,Taxation and Finance +288089,Taxation and Finance,Taxation and Finance +288074,Taxation and Finance,Taxation and Finance +288073,Taxation and Finance,Taxation and Finance +288072,Taxation and Finance,Taxation and Finance +288071,Taxation and Finance,Taxation and Finance +287929,Taxation and Finance,Taxation and Finance +280532,Taxation and Finance,Taxation and Finance +280531,Taxation and Finance,Taxation and Finance +280530,Taxation and Finance,Taxation and Finance +280529,Taxation and Finance,Taxation and Finance +277037,Taxation and Finance,Taxation and Finance +273115,Taxation and Finance,Taxation and Finance +273114,Taxation and Finance,Taxation and Finance +273113,Taxation and Finance,Taxation and Finance +273112,Taxation and Finance,Taxation and Finance +273109,Taxation and Finance,Taxation and Finance +267869,Taxation and Finance,Taxation and Finance +267859,Taxation and Finance,Taxation and Finance +263435,Taxation and Finance,Taxation and Finance +263434,Taxation and Finance,Taxation and Finance +254343,Taxation and Finance,Taxation and Finance +252961,Taxation and Finance,Taxation and Finance +252960,Taxation and Finance,Taxation and Finance +252958,Taxation and Finance,Taxation and Finance +252955,Taxation and Finance,Taxation and Finance +324439,Defence,Defence +324436,Defence,Defence +324468,Defence,Defence +324467,Defence,Defence +324455,Defence,Defence +324453,Defence,Defence +324450,Defence,Defence +324449,Defence,Defence +324448,Defence,Defence +374146,Employment and Training,Employment and Training +374143,Employment and Training,Employment and Training +296469,Employment and Training,Employment and Training +283789,Employment and Training,Employment and Training +273133,Taxation and Finance,Taxation and Finance +273129,Taxation and Finance,Taxation and Finance +273871,Taxation and Finance,Taxation and Finance +273137,Taxation and Finance,Taxation and Finance +273136,Taxation and Finance,Taxation and Finance +465373,Pensions,Pensions +261472,Research and Development,Recherche et développement +265189,Government Procurement,Government Procurement +250093,Government Procurement,Government Procurement +363687,Government Procurement,Government Procurement +359836,Government Procurement,Government Procurement +353110,Government Procurement,Government Procurement +353109,Government Procurement,Government Procurement +353106,Government Procurement,Government Procurement +353102,Government Procurement,Government Procurement +351170,Government Procurement,Government Procurement +351169,Government Procurement,Government Procurement +250231,Employment and Training,Employment and Training +348695,Regional Development,Regional Development +250624,Research and Development,Research and Development +250611,Research and Development,Research and Development +310477,Research and Development,Research and Development +310469,Research and Development,Research and Development +250660,Research and Development,Research and Development +250653,Taxation and Finance,Taxation and Finance +250626,Taxation and Finance,Taxation and Finance +250677,Taxation and Finance,Taxation and Finance +250673,Taxation and Finance,Taxation and Finance +250670,Taxation and Finance,Taxation and Finance +250668,Taxation and Finance,Taxation and Finance +250666,Taxation and Finance,Taxation and Finance +250664,Taxation and Finance,Taxation and Finance +250662,Taxation and Finance,Taxation and Finance +250738,Pensions,Pensions +250744,Pensions,Pensions +250751,Pensions,Pensions +250754,Pensions,Pensions +250763,Budget,Budget +335806,Budget,Budget +258689,Budget,Budget +258632,Budget,Budget +258729,Budget,Budget +250765,Budget,Budget +365187,Budget,Budget +341619,Budget,Budget +341613,Budget,Budget +395516,Budget,Budget +365185,Budget,Budget +303129,Budget,Budget +303110,Budget,Budget +258709,Budget,Budget +250767,Budget,Budget +310245,Budget,Budget +250769,Budget,Budget +258710,Budget,Budget +250771,Budget,Budget +310267,Budget,Budget +310241,Budget,Budget +258749,Budget,Budget +250772,Budget,Budget +309249,Health,Health +262510,Justice and Law Enforcement,Justice and Law Enforcement +262509,Justice and Law Enforcement,Justice and Law Enforcement +309249,Justice and Law Enforcement,Justice and Law Enforcement +309229,Justice and Law Enforcement,Justice and Law Enforcement +268509,Justice and Law Enforcement,Justice and Law Enforcement +269889,Education,Education +269870,Education,Education +326593,Education,Education +377768,Energy,Energy +377767,Energy,Energy +366599,Energy,Energy +310854,Energy,Energy +250861,Energy,Energy +379939,Energy,Energy +269602,Employment and Training,Employment and Training +269599,Employment and Training,Employment and Training +269591,Employment and Training,Employment and Training +269566,Employment and Training,Employment and Training +254156,Employment and Training,Employment and Training +254155,Employment and Training,Employment and Training +254152,Employment and Training,Employment and Training +250888,Employment and Training,Employment and Training +250879,Employment and Training,Employment and Training +250874,Employment and Training,Employment and Training +250870,Employment and Training,Employment and Training +250861,Employment and Training,Employment and Training +310871,Employment and Training,Employment and Training +310870,Employment and Training,Employment and Training +310869,Employment and Training,Employment and Training +258533,Energy,Energy +258532,Energy,Energy +258530,Energy,Energy +258507,Energy,Energy +258505,Energy,Energy +253456,Energy,Energy +253455,Energy,Energy +253454,Energy,Energy +253452,Energy,Energy +253450,Energy,Energy +253449,Energy,Energy +301730,Energy,Energy +301729,Energy,Energy +301716,Energy,Energy +301714,Energy,Energy +301712,Energy,Energy +301710,Energy,Energy +301599,Energy,Energy +301595,Energy,Energy +295350,Energy,Energy +295349,Energy,Energy +295269,Energy,Energy +290453,Energy,Energy +290452,Energy,Energy +290451,Energy,Energy +290450,Energy,Energy +290449,Energy,Energy +289714,Energy,Energy +289713,Energy,Energy +289712,Energy,Energy +289711,Energy,Energy +289710,Energy,Energy +289709,Energy,Energy +285019,Energy,Energy +285018,Energy,Energy +285017,Energy,Energy +285016,Energy,Energy +285015,Energy,Energy +285011,Energy,Energy +285010,Energy,Energy +285009,Energy,Energy +281550,Energy,Energy +281530,Energy,Energy +281529,Energy,Energy +280509,Energy,Energy +280492,Energy,Energy +280490,Energy,Energy +280483,Energy,Energy +280482,Energy,Energy +280481,Energy,Energy +280478,Energy,Energy +280474,Energy,Energy +280473,Energy,Energy +280472,Energy,Energy +280470,Energy,Energy +276617,Energy,Energy +276614,Energy,Energy +275770,Energy,Energy +275769,Energy,Energy +271231,Energy,Energy +271229,Energy,Energy +267669,Energy,Energy +267392,Energy,Energy +267391,Energy,Energy +261920,Energy,Energy +261919,Energy,Energy +261918,Energy,Energy +261917,Energy,Energy +261916,Energy,Energy +261915,Energy,Energy +261914,Energy,Energy +261913,Energy,Energy +261912,Energy,Energy +261910,Energy,Energy +359493,Energy,Energy +359492,Energy,Energy +359491,Energy,Energy +359490,Energy,Energy +359489,Energy,Energy +357752,Energy,Energy +357751,Energy,Energy +357748,Energy,Energy +357747,Energy,Energy +357746,Energy,Energy +357745,Energy,Energy +357744,Energy,Energy +357743,Energy,Energy +355530,Energy,Energy +355529,Energy,Energy +355527,Energy,Energy +355526,Energy,Energy +355524,Energy,Energy +355523,Energy,Energy +353688,Energy,Energy +353622,Energy,Energy +353621,Energy,Energy +353620,Energy,Energy +353619,Energy,Energy +353618,Energy,Energy +353617,Energy,Energy +353614,Energy,Energy +353613,Energy,Energy +353611,Energy,Energy +350694,Energy,Energy +350693,Energy,Energy +350692,Energy,Energy +350690,Energy,Energy +350688,Energy,Energy +350687,Energy,Energy +350683,Energy,Energy +350679,Energy,Energy +350645,Energy,Energy +350644,Energy,Energy +350643,Energy,Energy +350642,Energy,Energy +350641,Energy,Energy +350640,Energy,Energy +350639,Energy,Energy +350638,Energy,Energy +348666,Energy,Energy +348665,Energy,Energy +348663,Energy,Energy +348660,Energy,Energy +348658,Energy,Energy +348657,Energy,Energy +348656,Energy,Energy +348655,Energy,Energy +348653,Energy,Energy +348652,Energy,Energy +348651,Energy,Energy +348650,Energy,Energy +348649,Energy,Energy +348648,Energy,Energy +348647,Energy,Energy +348646,Energy,Energy +348645,Energy,Energy +346906,Energy,Energy +346904,Energy,Energy +346902,Energy,Energy +346901,Energy,Energy +346900,Energy,Energy +346897,Energy,Energy +343340,Energy,Energy +343338,Energy,Energy +341131,Energy,Energy +341130,Energy,Energy +341129,Energy,Energy +341128,Energy,Energy +341127,Energy,Energy +341126,Energy,Energy +341125,Energy,Energy +337454,Energy,Energy +337453,Energy,Energy +335429,Energy,Energy +333319,Energy,Energy +331195,Energy,Energy +329479,Energy,Energy +327339,Energy,Energy +325353,Energy,Energy +325219,Energy,Energy +324369,Energy,Energy +324364,Energy,Energy +324348,Energy,Energy +321526,Energy,Energy +321523,Energy,Energy +321521,Energy,Energy +321519,Energy,Energy +321518,Energy,Energy +321514,Energy,Energy +318605,Energy,Energy +315162,Energy,Energy +315161,Energy,Energy +315154,Energy,Energy +308229,Energy,Energy +307953,Energy,Energy +307950,Energy,Energy +307744,Energy,Energy +307740,Energy,Energy +307739,Energy,Energy +301739,Energy,Energy +301737,Energy,Energy +301736,Energy,Energy +301735,Energy,Energy +301732,Energy,Energy +470654,Energy,Energy +470650,Energy,Energy +470646,Energy,Energy +470633,Energy,Energy +470630,Energy,Energy +470628,Energy,Energy +470626,Energy,Energy +470624,Energy,Energy +468415,Energy,Energy +468414,Energy,Energy +468413,Energy,Energy +468411,Energy,Energy +468408,Energy,Energy +467371,Energy,Energy +467368,Energy,Energy +467366,Energy,Energy +467365,Energy,Energy +467363,Energy,Energy +467362,Energy,Energy +467361,Energy,Energy +467360,Energy,Energy +467359,Energy,Energy +467358,Energy,Energy +467352,Energy,Energy +467351,Energy,Energy +464696,Energy,Energy +464693,Energy,Energy +464690,Energy,Energy +464672,Energy,Energy +464642,Energy,Energy +464624,Energy,Energy +464618,Energy,Energy +462725,Energy,Energy +462686,Energy,Energy +461667,Energy,Energy +461654,Energy,Energy +461646,Energy,Energy +461642,Energy,Energy +461641,Energy,Energy +461639,Energy,Energy +461637,Energy,Energy +461636,Energy,Energy +461634,Energy,Energy +461633,Energy,Energy +460468,Energy,Energy +460466,Energy,Energy +460463,Energy,Energy +459482,Energy,Energy +459480,Energy,Energy +458878,Energy,Energy +458877,Energy,Energy +458876,Energy,Energy +458872,Energy,Energy +458871,Energy,Energy +458868,Energy,Energy +458866,Energy,Energy +457342,Energy,Energy +457341,Energy,Energy +457339,Energy,Energy +457337,Energy,Energy +457336,Energy,Energy +457335,Energy,Energy +457334,Energy,Energy +457333,Energy,Energy +457332,Energy,Energy +457331,Energy,Energy +457330,Energy,Energy +455940,Energy,Energy +455937,Energy,Energy +455933,Energy,Energy +455927,Energy,Energy +455920,Energy,Energy +455910,Energy,Energy +455906,Energy,Energy +455898,Energy,Energy +455889,Energy,Energy +455885,Energy,Energy +455877,Energy,Energy +455871,Energy,Energy +455842,Energy,Energy +455809,Energy,Energy +452607,Energy,Energy +452604,Energy,Energy +452594,Energy,Energy +452593,Energy,Energy +452592,Energy,Energy +452588,Energy,Energy +452586,Energy,Energy +452583,Energy,Energy +450201,Energy,Energy +450188,Energy,Energy +450185,Energy,Energy +450181,Energy,Energy +450173,Energy,Energy +450169,Energy,Energy +450164,Energy,Energy +450158,Energy,Energy +450095,Energy,Energy +450087,Energy,Energy +447570,Energy,Energy +447569,Energy,Energy +447564,Energy,Energy +447562,Energy,Energy +447559,Energy,Energy +447558,Energy,Energy +445249,Energy,Energy +445183,Energy,Energy +445182,Energy,Energy +445181,Energy,Energy +445180,Energy,Energy +445179,Energy,Energy +445178,Energy,Energy +445177,Energy,Energy +445176,Energy,Energy +443744,Energy,Energy +443743,Energy,Energy +443741,Energy,Energy +443740,Energy,Energy +443731,Energy,Energy +441838,Energy,Energy +441835,Energy,Energy +441834,Energy,Energy +441833,Energy,Energy +441832,Energy,Energy +441828,Energy,Energy +438597,Energy,Energy +438590,Energy,Energy +438589,Energy,Energy +438588,Energy,Energy +438586,Energy,Energy +438567,Energy,Energy +438557,Energy,Energy +438553,Energy,Energy +438538,Energy,Energy +435989,Energy,Energy +435988,Energy,Energy +435987,Energy,Energy +435985,Energy,Energy +435983,Energy,Energy +435982,Energy,Energy +435980,Energy,Energy +435976,Energy,Energy +435962,Energy,Energy +435948,Energy,Energy +435932,Energy,Energy +433837,Energy,Energy +433830,Energy,Energy +432453,Energy,Energy +432451,Energy,Energy +430791,Energy,Energy +426773,Energy,Energy +426678,Energy,Energy +426675,Energy,Energy +426646,Energy,Energy +423368,Energy,Energy +423367,Energy,Energy +422421,Energy,Energy +417780,Energy,Energy +415400,Energy,Energy +415393,Energy,Energy +412548,Energy,Energy +409359,Energy,Energy +407473,Energy,Energy +407472,Energy,Energy +406619,Energy,Energy +405068,Energy,Energy +405067,Energy,Energy +403059,Energy,Energy +403058,Energy,Energy +403057,Energy,Energy +403056,Energy,Energy +403055,Energy,Energy +403054,Energy,Energy +403053,Energy,Energy +403052,Energy,Energy +398434,Energy,Energy +396133,Energy,Energy +393685,Energy,Energy +392321,Energy,Energy +389590,Energy,Energy +387079,Energy,Energy +385014,Energy,Energy +385013,Energy,Energy +383330,Energy,Energy +381208,Energy,Energy +381207,Energy,Energy +381205,Energy,Energy +381204,Energy,Energy +381201,Energy,Energy +378523,Energy,Energy +376224,Energy,Energy +376206,Energy,Energy +376204,Energy,Energy +376203,Energy,Energy +376116,Energy,Energy +374119,Energy,Energy +374118,Energy,Energy +373999,Energy,Energy +373997,Energy,Energy +372500,Energy,Energy +371175,Energy,Energy +371162,Energy,Energy +371161,Energy,Energy +371158,Energy,Energy +371152,Energy,Energy +371133,Energy,Energy +369208,Energy,Energy +366443,Energy,Energy +364871,Energy,Energy +364868,Energy,Energy +364867,Energy,Energy +363288,Energy,Energy +363287,Energy,Energy +363286,Energy,Energy +361071,Energy,Energy +541764,Energy,Energy +541762,Energy,Energy +541761,Energy,Energy +541756,Energy,Energy +541755,Energy,Energy +541752,Energy,Energy +539955,Energy,Energy +539953,Energy,Energy +539951,Energy,Energy +537427,Energy,Energy +537423,Energy,Energy +537420,Energy,Energy +534049,Energy,Energy +534046,Energy,Energy +534045,Energy,Energy +534044,Energy,Energy +534043,Energy,Energy +534041,Energy,Energy +534040,Energy,Energy +534039,Energy,Energy +534037,Energy,Energy +531700,Energy,Energy +531699,Energy,Energy +531698,Energy,Energy +531697,Energy,Energy +531696,Energy,Energy +531399,Energy,Energy +531398,Energy,Energy +528028,Energy,Energy +528027,Energy,Energy +527850,Energy,Energy +527849,Energy,Energy +524457,Energy,Energy +524455,Energy,Energy +524454,Energy,Energy +524451,Energy,Energy +521900,Energy,Energy +519577,Energy,Energy +519576,Energy,Energy +519573,Energy,Energy +519571,Energy,Energy +519570,Energy,Energy +519569,Energy,Energy +517316,Energy,Energy +517314,Energy,Energy +517311,Energy,Energy +517309,Energy,Energy +517307,Energy,Energy +515559,Energy,Energy +515558,Energy,Energy +510503,Energy,Energy +510494,Energy,Energy +510489,Energy,Energy +509449,Energy,Energy +507323,Energy,Energy +507322,Energy,Energy +507321,Energy,Energy +507320,Energy,Energy +507319,Energy,Energy +504875,Energy,Energy +504859,Energy,Energy +504857,Energy,Energy +504841,Energy,Energy +504811,Energy,Energy +501390,Energy,Energy +501388,Energy,Energy +498131,Energy,Energy +495339,Energy,Energy +495337,Energy,Energy +495330,Energy,Energy +495327,Energy,Energy +495325,Energy,Energy +495322,Energy,Energy +495317,Energy,Energy +495313,Energy,Energy +495308,Energy,Energy +495303,Energy,Energy +495301,Energy,Energy +495296,Energy,Energy +493590,Energy,Energy +493588,Energy,Energy +493579,Energy,Energy +493577,Energy,Energy +493569,Energy,Energy +493566,Energy,Energy +493558,Energy,Energy +493466,Energy,Energy +493460,Energy,Energy +493452,Energy,Energy +493448,Energy,Energy +491462,Energy,Energy +491449,Energy,Energy +491417,Energy,Energy +491411,Energy,Energy +491402,Energy,Energy +491395,Energy,Energy +491390,Energy,Energy +491383,Energy,Energy +491367,Energy,Energy +491364,Energy,Energy +491355,Energy,Energy +491341,Energy,Energy +491338,Energy,Energy +491331,Energy,Energy +491324,Energy,Energy +491315,Energy,Energy +491311,Energy,Energy +488061,Energy,Energy +488047,Energy,Energy +487799,Energy,Energy +487790,Energy,Energy +487786,Energy,Energy +487782,Energy,Energy +487777,Energy,Energy +487776,Energy,Energy +487773,Energy,Energy +487772,Energy,Energy +487766,Energy,Energy +484923,Energy,Energy +484918,Energy,Energy +484913,Energy,Energy +484911,Energy,Energy +484910,Energy,Energy +484907,Energy,Energy +484903,Energy,Energy +484902,Energy,Energy +484901,Energy,Energy +484900,Energy,Energy +484898,Energy,Energy +484897,Energy,Energy +484891,Energy,Energy +484887,Energy,Energy +483147,Energy,Energy +482283,Energy,Energy +482281,Energy,Energy +482278,Energy,Energy +479851,Energy,Energy +479849,Energy,Energy +479848,Energy,Energy +479847,Energy,Energy +479845,Energy,Energy +479844,Energy,Energy +479838,Energy,Energy +477766,Energy,Energy +477763,Energy,Energy +477762,Energy,Energy +477760,Energy,Energy +477758,Energy,Energy +477752,Energy,Energy +477747,Energy,Energy +477741,Energy,Energy +475578,Energy,Energy +475576,Energy,Energy +475574,Energy,Energy +475571,Energy,Energy +475566,Energy,Energy +475563,Energy,Energy +475561,Energy,Energy +475544,Energy,Energy +475528,Energy,Energy +475522,Energy,Energy +475470,Energy,Energy +473485,Energy,Energy +473481,Energy,Energy +473477,Energy,Energy +473472,Energy,Energy +473423,Energy,Energy +473400,Energy,Energy +251032,Small Business,Small Business +443919,Small Business,Small Business +377289,Small Business,Small Business +369571,Small Business,Small Business +351721,Small Business,Small Business +351720,Small Business,Small Business +336453,Small Business,Small Business +336452,Small Business,Small Business +378683,Environment,Environment +378682,Environment,Environment +369056,Environment,Environment +369048,Environment,Environment +359557,Environment,Environment +359553,Environment,Environment +355914,Environment,Environment +355913,Environment,Environment +355912,Environment,Environment +353360,Environment,Environment +340837,Environment,Environment +335589,Environment,Environment +324726,Environment,Environment +324720,Environment,Environment +324711,Environment,Environment +324502,Environment,Environment +324488,Environment,Environment +421980,Environment,Environment +420183,Environment,Environment +418110,Environment,Environment +416279,Environment,Environment +380823,Environment,Environment +378721,Environment,Environment +378720,Environment,Environment +378719,Environment,Environment +378718,Environment,Environment +378711,Environment,Environment +378709,Environment,Environment +378705,Environment,Environment +378696,Environment,Environment +378692,Environment,Environment +378690,Environment,Environment +251870,Economic Development,Economic Development +264433,Official Languages,Official Languages +259576,Official Languages,Official Languages +310348,Official Languages,Official Languages +315615,International Development,International Development +315614,International Development,International Development +252030,International Development,International Development +252029,International Development,International Development +352432,International Development,International Development +321916,International Development,International Development +321910,International Development,International Development +321909,International Development,International Development +321908,International Development,International Development +321903,International Development,International Development +318834,International Development,International Development +318833,International Development,International Development +318832,International Development,International Development +316349,International Development,International Development +252069,Research and Development,Research and Development +388371,Research and Development,Research and Development +329158,Research and Development,Research and Development +324489,Research and Development,Research and Development +296841,Research and Development,Research and Development +508843,Research and Development,Research and Development +278022,Research and Development,Research and Development +252070,Research and Development,Research and Development +252072,Research and Development,Research and Development +390583,Research and Development,Research and Development +340206,Research and Development,Research and Development +329159,Research and Development,Research and Development +305250,Research and Development,Research and Development +296845,Research and Development,Research and Development +283109,Research and Development,Research and Development +273269,Research and Development,Research and Development +273262,Research and Development,Research and Development +278018,Research and Development,Research and Development +252073,Research and Development,Research and Development +324487,Research and Development,Research and Development +305249,Research and Development,Research and Development +296900,Research and Development,Research and Development +296852,Research and Development,Research and Development +287149,Research and Development,Research and Development +273268,Research and Development,Research and Development +502676,Research and Development,Research and Development +273264,Research and Development,Research and Development +252089,Research and Development,Research and Development +324495,Research and Development,Research and Development +321856,Research and Development,Research and Development +278017,Research and Development,Research and Development +461535,Fisheries,Fisheries +430911,Fisheries,Fisheries +416090,Fisheries,Fisheries +409936,Fisheries,Fisheries +409935,Fisheries,Fisheries +409933,Fisheries,Fisheries +409932,Fisheries,Fisheries +403735,Fisheries,Fisheries +403733,Fisheries,Fisheries +403730,Fisheries,Fisheries +379714,Fisheries,Fisheries +372708,Fisheries,Fisheries +361253,Fisheries,Fisheries +254077,Fisheries,Fisheries +513278,Fisheries,Fisheries +508122,Fisheries,Fisheries +491491,Fisheries,Fisheries +461545,Fisheries,Fisheries +461540,Fisheries,Fisheries +461539,Fisheries,Fisheries +540117,International Development,International Development +452767,International Development,International Development +331660,International Development,International Development +331658,International Development,International Development +331657,International Development,International Development +324687,International Development,International Development +324685,International Development,International Development +282973,International Development,International Development +282969,International Development,International Development +280170,International Development,International Development +280169,International Development,International Development +269057,International Development,International Development +269029,International Development,International Development +263461,International Development,International Development +255369,International Development,International Development +255293,International Development,International Development +255292,International Development,International Development +379702,International Development,International Development +464863,Taxation and Finance,Taxation and Finance +464816,Taxation and Finance,Taxation and Finance +351522,Taxation and Finance,Taxation and Finance +349245,Taxation and Finance,Taxation and Finance +349235,Taxation and Finance,Taxation and Finance +347315,Taxation and Finance,Taxation and Finance +341985,Taxation and Finance,Taxation and Finance +341977,Taxation and Finance,Taxation and Finance +338769,Taxation and Finance,Taxation and Finance +338768,Taxation and Finance,Taxation and Finance +338766,Taxation and Finance,Taxation and Finance +338764,Taxation and Finance,Taxation and Finance +338757,Taxation and Finance,Taxation and Finance +338754,Taxation and Finance,Taxation and Finance +334717,Taxation and Finance,Taxation and Finance +330212,Taxation and Finance,Taxation and Finance +286709,Taxation and Finance,Taxation and Finance +255374,Taxation and Finance,Taxation and Finance +255373,Taxation and Finance,Taxation and Finance +255372,Taxation and Finance,Taxation and Finance +255371,Taxation and Finance,Taxation and Finance +255370,Taxation and Finance,Taxation and Finance +255291,Taxation and Finance,Taxation and Finance +255290,Taxation and Finance,Taxation and Finance +255289,Taxation and Finance,Taxation and Finance +254076,Taxation and Finance,Taxation and Finance +254075,Taxation and Finance,Taxation and Finance +442691,Taxation and Finance,Taxation and Finance +442690,Taxation and Finance,Taxation and Finance +442689,Taxation and Finance,Taxation and Finance +442688,Taxation and Finance,Taxation and Finance +442686,Taxation and Finance,Taxation and Finance +432468,Taxation and Finance,Taxation and Finance +421637,Taxation and Finance,Taxation and Finance +421635,Taxation and Finance,Taxation and Finance +413130,Taxation and Finance,Taxation and Finance +413126,Taxation and Finance,Taxation and Finance +406685,Taxation and Finance,Taxation and Finance +391089,Taxation and Finance,Taxation and Finance +391088,Taxation and Finance,Taxation and Finance +385375,Taxation and Finance,Taxation and Finance +385373,Taxation and Finance,Taxation and Finance +385372,Taxation and Finance,Taxation and Finance +383315,Taxation and Finance,Taxation and Finance +379034,Taxation and Finance,Taxation and Finance +372737,Taxation and Finance,Taxation and Finance +372726,Taxation and Finance,Taxation and Finance +372199,Taxation and Finance,Taxation and Finance +544518,Taxation and Finance,Taxation and Finance +537473,Taxation and Finance,Taxation and Finance +537471,Taxation and Finance,Taxation and Finance +537470,Taxation and Finance,Taxation and Finance +528304,Taxation and Finance,Taxation and Finance +504637,Taxation and Finance,Taxation and Finance +491476,Taxation and Finance,Taxation and Finance +488024,Taxation and Finance,Taxation and Finance +488020,Taxation and Finance,Taxation and Finance +488017,Taxation and Finance,Taxation and Finance +488014,Taxation and Finance,Taxation and Finance +487999,Taxation and Finance,Taxation and Finance +485061,Taxation and Finance,Taxation and Finance +485054,Taxation and Finance,Taxation and Finance +485046,Taxation and Finance,Taxation and Finance +485030,Taxation and Finance,Taxation and Finance +470960,Taxation and Finance,Taxation and Finance +467857,Taxation and Finance,Taxation and Finance +464935,Taxation and Finance,Taxation and Finance +464930,Taxation and Finance,Taxation and Finance +464929,Taxation and Finance,Taxation and Finance +464914,Taxation and Finance,Taxation and Finance +252209,Transportation,Transportation +261070,Transportation,Transportation +435729,Fisheries,Fisheries +435716,Fisheries,Fisheries +252359,Fisheries,Fisheries +355674,Fisheries,Fisheries +437959,Fisheries,Fisheries +523370,Transportation,Transportation +518615,Transportation,Transportation +252490,Transportation,Transportation +252363,Transportation,Transportation +252362,Transportation,Transportation +252361,Transportation,Transportation +372876,Transportation,Transportation +372875,Transportation,Transportation +372849,Transportation,Transportation +355676,Transportation,Transportation +340063,Transportation,Transportation +340061,Transportation,Transportation +340060,Transportation,Transportation +311784,Transportation,Transportation +296370,Transportation,Transportation +449466,Transportation,Transportation +449460,Transportation,Transportation +252367,Transportation,Transportation +252366,Transportation,Transportation +252494,Transportation,Transportation +252369,Fisheries,Fisheries +252373,Transportation,Transportation +252372,Transportation,Transportation +445489,Health,Health +423678,Health,Health +338590,Health,Health +338584,Health,Health +330236,Health,Health +252650,Health,Health +252649,Health,Health +527186,Taxation and Finance,Taxation and Finance +526735,Taxation and Finance,Taxation and Finance +350136,Taxation and Finance,Taxation and Finance +252695,Taxation and Finance,Taxation and Finance +498420,Taxation and Finance,Taxation and Finance +498413,Taxation and Finance,Taxation and Finance +498411,Taxation and Finance,Taxation and Finance +498403,Taxation and Finance,Taxation and Finance +498394,Taxation and Finance,Taxation and Finance +498393,Taxation and Finance,Taxation and Finance +498296,Taxation and Finance,Taxation and Finance +498293,Taxation and Finance,Taxation and Finance +498292,Taxation and Finance,Taxation and Finance +498282,Taxation and Finance,Taxation and Finance +497736,Taxation and Finance,Taxation and Finance +497734,Taxation and Finance,Taxation and Finance +497733,Taxation and Finance,Taxation and Finance +497730,Taxation and Finance,Taxation and Finance +497725,Taxation and Finance,Taxation and Finance +493913,Taxation and Finance,Taxation and Finance +485932,Taxation and Finance,Taxation and Finance +465594,Taxation and Finance,Taxation and Finance +465589,Taxation and Finance,Taxation and Finance +465582,Taxation and Finance,Taxation and Finance +465581,Taxation and Finance,Taxation and Finance +465574,Taxation and Finance,Taxation and Finance +465563,Taxation and Finance,Taxation and Finance +465562,Taxation and Finance,Taxation and Finance +465561,Taxation and Finance,Taxation and Finance +465554,Taxation and Finance,Taxation and Finance +465552,Taxation and Finance,Taxation and Finance +465550,Taxation and Finance,Taxation and Finance +465541,Taxation and Finance,Taxation and Finance +454480,Taxation and Finance,Taxation and Finance +454354,Taxation and Finance,Taxation and Finance +453794,Taxation and Finance,Taxation and Finance +453790,Taxation and Finance,Taxation and Finance +453786,Taxation and Finance,Taxation and Finance +453775,Taxation and Finance,Taxation and Finance +436311,Taxation and Finance,Taxation and Finance +436288,Taxation and Finance,Taxation and Finance +436272,Taxation and Finance,Taxation and Finance +436268,Taxation and Finance,Taxation and Finance +436267,Taxation and Finance,Taxation and Finance +436259,Taxation and Finance,Taxation and Finance +527443,Taxation and Finance,Taxation and Finance +527440,Taxation and Finance,Taxation and Finance +527229,Taxation and Finance,Taxation and Finance +527227,Taxation and Finance,Taxation and Finance +527209,Taxation and Finance,Taxation and Finance +527208,Taxation and Finance,Taxation and Finance +527202,Taxation and Finance,Taxation and Finance +527190,Taxation and Finance,Taxation and Finance +498307,Consumer Issues,Consumer Issues +498290,Consumer Issues,Consumer Issues +252695,Consumer Issues,Consumer Issues +498277,Consumer Issues,Consumer Issues +497737,Consumer Issues,Consumer Issues +497731,Consumer Issues,Consumer Issues +497727,Consumer Issues,Consumer Issues +465590,Consumer Issues,Consumer Issues +465584,Consumer Issues,Consumer Issues +465578,Consumer Issues,Consumer Issues +465577,Consumer Issues,Consumer Issues +465576,Consumer Issues,Consumer Issues +465567,Consumer Issues,Consumer Issues +465562,Consumer Issues,Consumer Issues +465561,Consumer Issues,Consumer Issues +465554,Consumer Issues,Consumer Issues +465549,Consumer Issues,Consumer Issues +465547,Consumer Issues,Consumer Issues +465546,Consumer Issues,Consumer Issues +465336,Consumer Issues,Consumer Issues +454365,Consumer Issues,Consumer Issues +454347,Consumer Issues,Consumer Issues +454337,Consumer Issues,Consumer Issues +453793,Consumer Issues,Consumer Issues +453790,Consumer Issues,Consumer Issues +453788,Consumer Issues,Consumer Issues +453781,Consumer Issues,Consumer Issues +453776,Consumer Issues,Consumer Issues +436315,Consumer Issues,Consumer Issues +436312,Consumer Issues,Consumer Issues +436306,Consumer Issues,Consumer Issues +436290,Consumer Issues,Consumer Issues +436287,Consumer Issues,Consumer Issues +436283,Consumer Issues,Consumer Issues +436279,Consumer Issues,Consumer Issues +436275,Consumer Issues,Consumer Issues +436269,Consumer Issues,Consumer Issues +436268,Consumer Issues,Consumer Issues +436266,Consumer Issues,Consumer Issues +436262,Consumer Issues,Consumer Issues +436261,Consumer Issues,Consumer Issues +436257,Consumer Issues,Consumer Issues +433185,Consumer Issues,Consumer Issues +433183,Consumer Issues,Consumer Issues +529980,Consumer Issues,Consumer Issues +527236,Consumer Issues,Consumer Issues +527220,Consumer Issues,Consumer Issues +527219,Consumer Issues,Consumer Issues +527210,Consumer Issues,Consumer Issues +527197,Consumer Issues,Consumer Issues +527190,Consumer Issues,Consumer Issues +526721,Consumer Issues,Consumer Issues +510945,Consumer Issues,Consumer Issues +503302,Consumer Issues,Consumer Issues +498411,Consumer Issues,Consumer Issues +498403,Consumer Issues,Consumer Issues +498393,Consumer Issues,Consumer Issues +453782,Consumer Issues,Consumer Issues +453778,Consumer Issues,Consumer Issues +252709,Consumer Issues,Consumer Issues +436317,Consumer Issues,Consumer Issues +436310,Consumer Issues,Consumer Issues +436307,Consumer Issues,Consumer Issues +436303,Consumer Issues,Consumer Issues +436301,Consumer Issues,Consumer Issues +436299,Consumer Issues,Consumer Issues +436277,Consumer Issues,Consumer Issues +436259,Consumer Issues,Consumer Issues +527238,Consumer Issues,Consumer Issues +527226,Consumer Issues,Consumer Issues +527225,Consumer Issues,Consumer Issues +527216,Consumer Issues,Consumer Issues +527207,Consumer Issues,Consumer Issues +527206,Consumer Issues,Consumer Issues +527205,Consumer Issues,Consumer Issues +527203,Consumer Issues,Consumer Issues +527189,Consumer Issues,Consumer Issues +527188,Consumer Issues,Consumer Issues +527186,Consumer Issues,Consumer Issues +526728,Consumer Issues,Consumer Issues +498419,Consumer Issues,Consumer Issues +498417,Consumer Issues,Consumer Issues +498416,Consumer Issues,Consumer Issues +498409,Consumer Issues,Consumer Issues +498401,Consumer Issues,Consumer Issues +498381,Consumer Issues,Consumer Issues +498292,Consumer Issues,Consumer Issues +498289,Consumer Issues,Consumer Issues +498282,Consumer Issues,Consumer Issues +497734,Consumer Issues,Consumer Issues +497732,Consumer Issues,Consumer Issues +497729,Consumer Issues,Consumer Issues +487398,Consumer Issues,Consumer Issues +485934,Consumer Issues,Consumer Issues +485932,Consumer Issues,Consumer Issues +481430,Consumer Issues,Consumer Issues +465597,Consumer Issues,Consumer Issues +465596,Consumer Issues,Consumer Issues +465595,Consumer Issues,Consumer Issues +465592,Consumer Issues,Consumer Issues +465581,Consumer Issues,Consumer Issues +465580,Consumer Issues,Consumer Issues +465573,Consumer Issues,Consumer Issues +465572,Consumer Issues,Consumer Issues +465556,Consumer Issues,Consumer Issues +465553,Consumer Issues,Consumer Issues +465545,Consumer Issues,Consumer Issues +465539,Consumer Issues,Consumer Issues +462497,Consumer Issues,Consumer Issues +454370,Consumer Issues,Consumer Issues +454369,Consumer Issues,Consumer Issues +454358,Consumer Issues,Consumer Issues +454355,Consumer Issues,Consumer Issues +454349,Consumer Issues,Consumer Issues +454348,Consumer Issues,Consumer Issues +453792,Consumer Issues,Consumer Issues +453787,Consumer Issues,Consumer Issues +433184,Taxation and Finance,Taxation and Finance +534111,Taxation and Finance,Taxation and Finance +252709,Taxation and Finance,Taxation and Finance +297329,Taxation and Finance,Taxation and Finance +530271,Taxation and Finance,Taxation and Finance +527226,Taxation and Finance,Taxation and Finance +527222,Taxation and Finance,Taxation and Finance +527210,Taxation and Finance,Taxation and Finance +527199,Taxation and Finance,Taxation and Finance +527193,Taxation and Finance,Taxation and Finance +527188,Taxation and Finance,Taxation and Finance +527184,Taxation and Finance,Taxation and Finance +498417,Taxation and Finance,Taxation and Finance +498391,Taxation and Finance,Taxation and Finance +498297,Taxation and Finance,Taxation and Finance +498295,Taxation and Finance,Taxation and Finance +497739,Taxation and Finance,Taxation and Finance +497726,Taxation and Finance,Taxation and Finance +465597,Taxation and Finance,Taxation and Finance +465596,Taxation and Finance,Taxation and Finance +465592,Taxation and Finance,Taxation and Finance +465590,Taxation and Finance,Taxation and Finance +465568,Taxation and Finance,Taxation and Finance +465556,Taxation and Finance,Taxation and Finance +465549,Taxation and Finance,Taxation and Finance +465542,Taxation and Finance,Taxation and Finance +454365,Taxation and Finance,Taxation and Finance +454360,Taxation and Finance,Taxation and Finance +453793,Taxation and Finance,Taxation and Finance +453792,Taxation and Finance,Taxation and Finance +453787,Taxation and Finance,Taxation and Finance +453782,Taxation and Finance,Taxation and Finance +453778,Taxation and Finance,Taxation and Finance +453776,Taxation and Finance,Taxation and Finance +453773,Taxation and Finance,Taxation and Finance +436317,Taxation and Finance,Taxation and Finance +436312,Taxation and Finance,Taxation and Finance +436273,Taxation and Finance,Taxation and Finance +436270,Taxation and Finance,Taxation and Finance +436269,Taxation and Finance,Taxation and Finance +436266,Taxation and Finance,Taxation and Finance +497739,Consumer Issues,Consumer Issues +497735,Consumer Issues,Consumer Issues +252711,Consumer Issues,Consumer Issues +465579,Consumer Issues,Consumer Issues +465569,Consumer Issues,Consumer Issues +465568,Consumer Issues,Consumer Issues +465563,Consumer Issues,Consumer Issues +465560,Consumer Issues,Consumer Issues +465551,Consumer Issues,Consumer Issues +465550,Consumer Issues,Consumer Issues +465542,Consumer Issues,Consumer Issues +454480,Consumer Issues,Consumer Issues +454354,Consumer Issues,Consumer Issues +453773,Consumer Issues,Consumer Issues +446105,Consumer Issues,Consumer Issues +436316,Consumer Issues,Consumer Issues +436311,Consumer Issues,Consumer Issues +436304,Consumer Issues,Consumer Issues +436300,Consumer Issues,Consumer Issues +436270,Consumer Issues,Consumer Issues +436265,Consumer Issues,Consumer Issues +433184,Consumer Issues,Consumer Issues +529981,Consumer Issues,Consumer Issues +527439,Consumer Issues,Consumer Issues +527237,Consumer Issues,Consumer Issues +527234,Consumer Issues,Consumer Issues +527232,Consumer Issues,Consumer Issues +527231,Consumer Issues,Consumer Issues +527221,Consumer Issues,Consumer Issues +527218,Consumer Issues,Consumer Issues +527212,Consumer Issues,Consumer Issues +527204,Consumer Issues,Consumer Issues +527200,Consumer Issues,Consumer Issues +527199,Consumer Issues,Consumer Issues +527195,Consumer Issues,Consumer Issues +526733,Consumer Issues,Consumer Issues +514908,Consumer Issues,Consumer Issues +514907,Consumer Issues,Consumer Issues +511712,Consumer Issues,Consumer Issues +498413,Consumer Issues,Consumer Issues +498407,Consumer Issues,Consumer Issues +498404,Consumer Issues,Consumer Issues +498397,Consumer Issues,Consumer Issues +498391,Consumer Issues,Consumer Issues +498384,Consumer Issues,Consumer Issues +498308,Consumer Issues,Consumer Issues +498306,Consumer Issues,Consumer Issues +498305,Consumer Issues,Consumer Issues +453780,Taxation and Finance,Taxation and Finance +453779,Taxation and Finance,Taxation and Finance +436316,Taxation and Finance,Taxation and Finance +436315,Taxation and Finance,Taxation and Finance +436314,Taxation and Finance,Taxation and Finance +436303,Taxation and Finance,Taxation and Finance +436302,Taxation and Finance,Taxation and Finance +436301,Taxation and Finance,Taxation and Finance +436290,Taxation and Finance,Taxation and Finance +436283,Taxation and Finance,Taxation and Finance +436279,Taxation and Finance,Taxation and Finance +436261,Taxation and Finance,Taxation and Finance +436257,Taxation and Finance,Taxation and Finance +407611,Taxation and Finance,Taxation and Finance +252711,Taxation and Finance,Taxation and Finance +529983,Taxation and Finance,Taxation and Finance +527237,Taxation and Finance,Taxation and Finance +527233,Taxation and Finance,Taxation and Finance +527232,Taxation and Finance,Taxation and Finance +527220,Taxation and Finance,Taxation and Finance +527214,Taxation and Finance,Taxation and Finance +527205,Taxation and Finance,Taxation and Finance +527201,Taxation and Finance,Taxation and Finance +527200,Taxation and Finance,Taxation and Finance +527194,Taxation and Finance,Taxation and Finance +527182,Taxation and Finance,Taxation and Finance +526730,Taxation and Finance,Taxation and Finance +514907,Taxation and Finance,Taxation and Finance +512243,Taxation and Finance,Taxation and Finance +498419,Taxation and Finance,Taxation and Finance +498416,Taxation and Finance,Taxation and Finance +498415,Taxation and Finance,Taxation and Finance +498409,Taxation and Finance,Taxation and Finance +498404,Taxation and Finance,Taxation and Finance +498397,Taxation and Finance,Taxation and Finance +498395,Taxation and Finance,Taxation and Finance +498387,Taxation and Finance,Taxation and Finance +498386,Taxation and Finance,Taxation and Finance +498384,Taxation and Finance,Taxation and Finance +498305,Taxation and Finance,Taxation and Finance +498303,Taxation and Finance,Taxation and Finance +498301,Taxation and Finance,Taxation and Finance +498290,Taxation and Finance,Taxation and Finance +498285,Taxation and Finance,Taxation and Finance +498279,Taxation and Finance,Taxation and Finance +498277,Taxation and Finance,Taxation and Finance +497737,Taxation and Finance,Taxation and Finance +497728,Taxation and Finance,Taxation and Finance +478483,Taxation and Finance,Taxation and Finance +465580,Taxation and Finance,Taxation and Finance +465576,Taxation and Finance,Taxation and Finance +465575,Taxation and Finance,Taxation and Finance +465573,Taxation and Finance,Taxation and Finance +465565,Taxation and Finance,Taxation and Finance +465564,Taxation and Finance,Taxation and Finance +465553,Taxation and Finance,Taxation and Finance +465548,Taxation and Finance,Taxation and Finance +465546,Taxation and Finance,Taxation and Finance +465543,Taxation and Finance,Taxation and Finance +465540,Taxation and Finance,Taxation and Finance +462497,Taxation and Finance,Taxation and Finance +454368,Taxation and Finance,Taxation and Finance +454367,Taxation and Finance,Taxation and Finance +454357,Taxation and Finance,Taxation and Finance +454356,Taxation and Finance,Taxation and Finance +453788,Taxation and Finance,Taxation and Finance +453785,Taxation and Finance,Taxation and Finance +526730,Consumer Issues,Consumer Issues +512243,Consumer Issues,Consumer Issues +252712,Consumer Issues,Consumer Issues +436302,Consumer Issues,Consumer Issues +436273,Consumer Issues,Consumer Issues +436271,Consumer Issues,Consumer Issues +436267,Consumer Issues,Consumer Issues +350136,Consumer Issues,Consumer Issues +498420,Consumer Issues,Consumer Issues +498394,Consumer Issues,Consumer Issues +498390,Consumer Issues,Consumer Issues +498386,Consumer Issues,Consumer Issues +498303,Consumer Issues,Consumer Issues +498301,Consumer Issues,Consumer Issues +498299,Consumer Issues,Consumer Issues +498297,Consumer Issues,Consumer Issues +498296,Consumer Issues,Consumer Issues +498295,Consumer Issues,Consumer Issues +498294,Consumer Issues,Consumer Issues +498285,Consumer Issues,Consumer Issues +498279,Consumer Issues,Consumer Issues +497736,Consumer Issues,Consumer Issues +497733,Consumer Issues,Consumer Issues +497730,Consumer Issues,Consumer Issues +497725,Consumer Issues,Consumer Issues +478483,Consumer Issues,Consumer Issues +465570,Consumer Issues,Consumer Issues +465565,Consumer Issues,Consumer Issues +465559,Consumer Issues,Consumer Issues +465557,Consumer Issues,Consumer Issues +465555,Consumer Issues,Consumer Issues +465552,Consumer Issues,Consumer Issues +465548,Consumer Issues,Consumer Issues +465541,Consumer Issues,Consumer Issues +465540,Consumer Issues,Consumer Issues +461457,Consumer Issues,Consumer Issues +454350,Consumer Issues,Consumer Issues +454346,Consumer Issues,Consumer Issues +453791,Consumer Issues,Consumer Issues +453786,Consumer Issues,Consumer Issues +453783,Consumer Issues,Consumer Issues +453779,Consumer Issues,Consumer Issues +453777,Consumer Issues,Consumer Issues +453775,Consumer Issues,Consumer Issues +436313,Consumer Issues,Consumer Issues +436309,Consumer Issues,Consumer Issues +534111,Consumer Issues,Consumer Issues +530807,Consumer Issues,Consumer Issues +529983,Consumer Issues,Consumer Issues +529982,Consumer Issues,Consumer Issues +527440,Consumer Issues,Consumer Issues +527233,Consumer Issues,Consumer Issues +527229,Consumer Issues,Consumer Issues +527227,Consumer Issues,Consumer Issues +527217,Consumer Issues,Consumer Issues +527213,Consumer Issues,Consumer Issues +527202,Consumer Issues,Consumer Issues +527201,Consumer Issues,Consumer Issues +527187,Consumer Issues,Consumer Issues +436304,Taxation and Finance,Taxation and Finance +436300,Taxation and Finance,Taxation and Finance +252712,Taxation and Finance,Taxation and Finance +436292,Taxation and Finance,Taxation and Finance +436289,Taxation and Finance,Taxation and Finance +436287,Taxation and Finance,Taxation and Finance +436275,Taxation and Finance,Taxation and Finance +436271,Taxation and Finance,Taxation and Finance +433186,Taxation and Finance,Taxation and Finance +433185,Taxation and Finance,Taxation and Finance +433183,Taxation and Finance,Taxation and Finance +529982,Taxation and Finance,Taxation and Finance +527439,Taxation and Finance,Taxation and Finance +527236,Taxation and Finance,Taxation and Finance +527234,Taxation and Finance,Taxation and Finance +527231,Taxation and Finance,Taxation and Finance +527218,Taxation and Finance,Taxation and Finance +527213,Taxation and Finance,Taxation and Finance +527207,Taxation and Finance,Taxation and Finance +527204,Taxation and Finance,Taxation and Finance +527198,Taxation and Finance,Taxation and Finance +527197,Taxation and Finance,Taxation and Finance +527195,Taxation and Finance,Taxation and Finance +527192,Taxation and Finance,Taxation and Finance +527187,Taxation and Finance,Taxation and Finance +527183,Taxation and Finance,Taxation and Finance +526726,Taxation and Finance,Taxation and Finance +526723,Taxation and Finance,Taxation and Finance +510945,Taxation and Finance,Taxation and Finance +498381,Taxation and Finance,Taxation and Finance +498307,Taxation and Finance,Taxation and Finance +498300,Taxation and Finance,Taxation and Finance +498288,Taxation and Finance,Taxation and Finance +497738,Taxation and Finance,Taxation and Finance +497735,Taxation and Finance,Taxation and Finance +497732,Taxation and Finance,Taxation and Finance +497731,Taxation and Finance,Taxation and Finance +497727,Taxation and Finance,Taxation and Finance +487398,Taxation and Finance,Taxation and Finance +485934,Taxation and Finance,Taxation and Finance +465595,Taxation and Finance,Taxation and Finance +465583,Taxation and Finance,Taxation and Finance +465579,Taxation and Finance,Taxation and Finance +465572,Taxation and Finance,Taxation and Finance +465570,Taxation and Finance,Taxation and Finance +465569,Taxation and Finance,Taxation and Finance +465567,Taxation and Finance,Taxation and Finance +465560,Taxation and Finance,Taxation and Finance +465557,Taxation and Finance,Taxation and Finance +465555,Taxation and Finance,Taxation and Finance +465551,Taxation and Finance,Taxation and Finance +465547,Taxation and Finance,Taxation and Finance +465545,Taxation and Finance,Taxation and Finance +465544,Taxation and Finance,Taxation and Finance +465337,Taxation and Finance,Taxation and Finance +454370,Taxation and Finance,Taxation and Finance +454369,Taxation and Finance,Taxation and Finance +454355,Taxation and Finance,Taxation and Finance +454350,Taxation and Finance,Taxation and Finance +454348,Taxation and Finance,Taxation and Finance +454340,Taxation and Finance,Taxation and Finance +453791,Taxation and Finance,Taxation and Finance +453789,Taxation and Finance,Taxation and Finance +446104,Taxation and Finance,Taxation and Finance +436318,Taxation and Finance,Taxation and Finance +436310,Taxation and Finance,Taxation and Finance +436308,Taxation and Finance,Taxation and Finance +436307,Taxation and Finance,Taxation and Finance +436306,Taxation and Finance,Taxation and Finance +446106,Consumer Issues,Consumer Issues +446103,Consumer Issues,Consumer Issues +297329,Consumer Issues,Consumer Issues +252713,Consumer Issues,Consumer Issues +436314,Consumer Issues,Consumer Issues +436308,Consumer Issues,Consumer Issues +436305,Consumer Issues,Consumer Issues +436292,Consumer Issues,Consumer Issues +436289,Consumer Issues,Consumer Issues +436288,Consumer Issues,Consumer Issues +436286,Consumer Issues,Consumer Issues +436272,Consumer Issues,Consumer Issues +436258,Consumer Issues,Consumer Issues +434415,Consumer Issues,Consumer Issues +434413,Consumer Issues,Consumer Issues +433186,Consumer Issues,Consumer Issues +530271,Consumer Issues,Consumer Issues +527443,Consumer Issues,Consumer Issues +527230,Consumer Issues,Consumer Issues +527223,Consumer Issues,Consumer Issues +527222,Consumer Issues,Consumer Issues +527215,Consumer Issues,Consumer Issues +527214,Consumer Issues,Consumer Issues +527209,Consumer Issues,Consumer Issues +527208,Consumer Issues,Consumer Issues +527198,Consumer Issues,Consumer Issues +527194,Consumer Issues,Consumer Issues +527193,Consumer Issues,Consumer Issues +527192,Consumer Issues,Consumer Issues +527183,Consumer Issues,Consumer Issues +527182,Consumer Issues,Consumer Issues +526735,Consumer Issues,Consumer Issues +526723,Consumer Issues,Consumer Issues +498415,Consumer Issues,Consumer Issues +498395,Consumer Issues,Consumer Issues +498300,Consumer Issues,Consumer Issues +498293,Consumer Issues,Consumer Issues +498291,Consumer Issues,Consumer Issues +497738,Consumer Issues,Consumer Issues +497728,Consumer Issues,Consumer Issues +497726,Consumer Issues,Consumer Issues +497724,Consumer Issues,Consumer Issues +465594,Consumer Issues,Consumer Issues +465589,Consumer Issues,Consumer Issues +465583,Consumer Issues,Consumer Issues +465582,Consumer Issues,Consumer Issues +465575,Consumer Issues,Consumer Issues +465574,Consumer Issues,Consumer Issues +465564,Consumer Issues,Consumer Issues +465337,Consumer Issues,Consumer Issues +461456,Consumer Issues,Consumer Issues +454368,Consumer Issues,Consumer Issues +454367,Consumer Issues,Consumer Issues +454360,Consumer Issues,Consumer Issues +454359,Consumer Issues,Consumer Issues +454357,Consumer Issues,Consumer Issues +454356,Consumer Issues,Consumer Issues +454344,Consumer Issues,Consumer Issues +454340,Consumer Issues,Consumer Issues +453794,Consumer Issues,Consumer Issues +453789,Consumer Issues,Consumer Issues +453784,Consumer Issues,Consumer Issues +453780,Consumer Issues,Consumer Issues +465539,Taxation and Finance,Taxation and Finance +465336,Taxation and Finance,Taxation and Finance +278849,Taxation and Finance,Taxation and Finance +252713,Taxation and Finance,Taxation and Finance +454359,Taxation and Finance,Taxation and Finance +454358,Taxation and Finance,Taxation and Finance +454349,Taxation and Finance,Taxation and Finance +454347,Taxation and Finance,Taxation and Finance +454346,Taxation and Finance,Taxation and Finance +454344,Taxation and Finance,Taxation and Finance +454337,Taxation and Finance,Taxation and Finance +453783,Taxation and Finance,Taxation and Finance +453781,Taxation and Finance,Taxation and Finance +453777,Taxation and Finance,Taxation and Finance +436313,Taxation and Finance,Taxation and Finance +436309,Taxation and Finance,Taxation and Finance +436299,Taxation and Finance,Taxation and Finance +436286,Taxation and Finance,Taxation and Finance +436277,Taxation and Finance,Taxation and Finance +436265,Taxation and Finance,Taxation and Finance +436262,Taxation and Finance,Taxation and Finance +530807,Taxation and Finance,Taxation and Finance +529981,Taxation and Finance,Taxation and Finance +527238,Taxation and Finance,Taxation and Finance +527230,Taxation and Finance,Taxation and Finance +527225,Taxation and Finance,Taxation and Finance +527223,Taxation and Finance,Taxation and Finance +527221,Taxation and Finance,Taxation and Finance +527219,Taxation and Finance,Taxation and Finance +527217,Taxation and Finance,Taxation and Finance +527216,Taxation and Finance,Taxation and Finance +527215,Taxation and Finance,Taxation and Finance +527212,Taxation and Finance,Taxation and Finance +527206,Taxation and Finance,Taxation and Finance +527203,Taxation and Finance,Taxation and Finance +526733,Taxation and Finance,Taxation and Finance +526728,Taxation and Finance,Taxation and Finance +514908,Taxation and Finance,Taxation and Finance +511712,Taxation and Finance,Taxation and Finance +503302,Taxation and Finance,Taxation and Finance +503300,Taxation and Finance,Taxation and Finance +498407,Taxation and Finance,Taxation and Finance +498401,Taxation and Finance,Taxation and Finance +498390,Taxation and Finance,Taxation and Finance +498308,Taxation and Finance,Taxation and Finance +498306,Taxation and Finance,Taxation and Finance +498299,Taxation and Finance,Taxation and Finance +498294,Taxation and Finance,Taxation and Finance +498291,Taxation and Finance,Taxation and Finance +498289,Taxation and Finance,Taxation and Finance +497729,Taxation and Finance,Taxation and Finance +497724,Taxation and Finance,Taxation and Finance +465584,Taxation and Finance,Taxation and Finance +465578,Taxation and Finance,Taxation and Finance +465577,Taxation and Finance,Taxation and Finance +486499,Infrastructure,Infrastructure +464155,Infrastructure,Infrastructure +252756,Infrastructure,Infrastructure +453722,Infrastructure,Infrastructure +453123,Infrastructure,Infrastructure +443237,Infrastructure,Infrastructure +433943,Infrastructure,Infrastructure +432610,Infrastructure,Infrastructure +413031,Infrastructure,Infrastructure +393422,Infrastructure,Infrastructure +387000,Infrastructure,Infrastructure +386338,Infrastructure,Infrastructure +380565,Infrastructure,Infrastructure +541349,Infrastructure,Infrastructure +531136,Infrastructure,Infrastructure +528208,Infrastructure,Infrastructure +522265,Infrastructure,Infrastructure +518958,Infrastructure,Infrastructure +518957,Infrastructure,Infrastructure +518956,Infrastructure,Infrastructure +515552,Infrastructure,Infrastructure +513652,Infrastructure,Infrastructure +499564,Infrastructure,Infrastructure +499552,Infrastructure,Infrastructure +495128,Infrastructure,Infrastructure +452859,Justice and Law Enforcement,Justice and Law Enforcement +450056,Justice and Law Enforcement,Justice and Law Enforcement +273118,Justice and Law Enforcement,Justice and Law Enforcement +252809,Justice and Law Enforcement,Justice and Law Enforcement +432333,Justice and Law Enforcement,Justice and Law Enforcement +432329,Justice and Law Enforcement,Justice and Law Enforcement +429390,Justice and Law Enforcement,Justice and Law Enforcement +429384,Justice and Law Enforcement,Justice and Law Enforcement +534879,Justice and Law Enforcement,Justice and Law Enforcement +534868,Justice and Law Enforcement,Justice and Law Enforcement +534867,Justice and Law Enforcement,Justice and Law Enforcement +528757,Justice and Law Enforcement,Justice and Law Enforcement +526187,Justice and Law Enforcement,Justice and Law Enforcement +526184,Justice and Law Enforcement,Justice and Law Enforcement +522209,Justice and Law Enforcement,Justice and Law Enforcement +517723,Justice and Law Enforcement,Justice and Law Enforcement +517722,Justice and Law Enforcement,Justice and Law Enforcement +517718,Justice and Law Enforcement,Justice and Law Enforcement +510372,Justice and Law Enforcement,Justice and Law Enforcement +504261,Justice and Law Enforcement,Justice and Law Enforcement +504260,Justice and Law Enforcement,Justice and Law Enforcement +504257,Justice and Law Enforcement,Justice and Law Enforcement +504256,Justice and Law Enforcement,Justice and Law Enforcement +501271,Justice and Law Enforcement,Justice and Law Enforcement +501268,Justice and Law Enforcement,Justice and Law Enforcement +500344,Justice and Law Enforcement,Justice and Law Enforcement +498613,Justice and Law Enforcement,Justice and Law Enforcement +498611,Justice and Law Enforcement,Justice and Law Enforcement +498610,Justice and Law Enforcement,Justice and Law Enforcement +498607,Justice and Law Enforcement,Justice and Law Enforcement +498605,Justice and Law Enforcement,Justice and Law Enforcement +496203,Justice and Law Enforcement,Justice and Law Enforcement +495631,Justice and Law Enforcement,Justice and Law Enforcement +495630,Justice and Law Enforcement,Justice and Law Enforcement +495629,Justice and Law Enforcement,Justice and Law Enforcement +495627,Justice and Law Enforcement,Justice and Law Enforcement +486902,Justice and Law Enforcement,Justice and Law Enforcement +486901,Justice and Law Enforcement,Justice and Law Enforcement +486899,Justice and Law Enforcement,Justice and Law Enforcement +486893,Justice and Law Enforcement,Justice and Law Enforcement +486889,Justice and Law Enforcement,Justice and Law Enforcement +486887,Justice and Law Enforcement,Justice and Law Enforcement +486886,Justice and Law Enforcement,Justice and Law Enforcement +484383,Justice and Law Enforcement,Justice and Law Enforcement +419274,Agriculture,Agriculture +258156,Agriculture,Agriculture +258155,Agriculture,Agriculture +393504,Agriculture,Agriculture +464848,Agriculture,Agriculture +419274,Consumer Issues,Consumer Issues +393504,Consumer Issues,Consumer Issues +258155,Consumer Issues,Consumer Issues +258156,Consumer Issues,Consumer Issues +464848,Consumer Issues,Consumer Issues +258155,Environment,Environment +464848,Environment,Environment +444863,Health,Health +419274,Health,Health +258156,Health,Health +258155,Health,Health +393504,Health,Health +419274,International Trade,International Trade +393504,International Trade,International Trade +258156,International Trade,International Trade +258155,International Trade,International Trade +464848,International Trade,International Trade +258214,Mining,Mining +258212,Mining,Mining +258010,Economic Development,Economic Development +258009,Economic Development,Economic Development +258012,Economic Development,Economic Development +253894,Regional Development,Regional Development +467865,Mining,Mining +467857,Mining,Mining +294810,Mining,Mining +294809,Mining,Mining +292252,Mining,Mining +292251,Mining,Mining +286334,Mining,Mining +286330,Mining,Mining +286329,Mining,Mining +282973,Mining,Mining +282969,Mining,Mining +280170,Mining,Mining +280169,Mining,Mining +280149,Mining,Mining +276793,Mining,Mining +276792,Mining,Mining +276791,Mining,Mining +276790,Mining,Mining +276720,Mining,Mining +273697,Mining,Mining +273696,Mining,Mining +273695,Mining,Mining +273656,Mining,Mining +273559,Mining,Mining +269075,Mining,Mining +269065,Mining,Mining +269057,Mining,Mining +269031,Mining,Mining +269029,Mining,Mining +263461,Mining,Mining +255374,Mining,Mining +255373,Mining,Mining +255372,Mining,Mining +255371,Mining,Mining +255370,Mining,Mining +255369,Mining,Mining +255293,Mining,Mining +255292,Mining,Mining +255291,Mining,Mining +255290,Mining,Mining +255289,Mining,Mining +254077,Mining,Mining +254076,Mining,Mining +254075,Mining,Mining +254074,Mining,Mining +383315,Mining,Mining +379843,Mining,Mining +379813,Mining,Mining +379783,Mining,Mining +379714,Mining,Mining +379709,Mining,Mining +379701,Mining,Mining +376905,Mining,Mining +374945,Mining,Mining +373476,Mining,Mining +372737,Mining,Mining +372734,Mining,Mining +372726,Mining,Mining +372708,Mining,Mining +372199,Mining,Mining +364805,Mining,Mining +364603,Mining,Mining +358221,Mining,Mining +351522,Mining,Mining +351519,Mining,Mining +351515,Mining,Mining +349255,Mining,Mining +349254,Mining,Mining +349250,Mining,Mining +349245,Mining,Mining +349235,Mining,Mining +349221,Mining,Mining +347319,Mining,Mining +347315,Mining,Mining +347311,Mining,Mining +347308,Mining,Mining +341985,Mining,Mining +341977,Mining,Mining +341969,Mining,Mining +335991,Mining,Mining +333489,Mining,Mining +331659,Mining,Mining +331658,Mining,Mining +331657,Mining,Mining +331656,Mining,Mining +330212,Mining,Mining +327521,Mining,Mining +324714,Mining,Mining +324692,Mining,Mining +324690,Mining,Mining +324687,Mining,Mining +324685,Mining,Mining +324672,Mining,Mining +324669,Mining,Mining +324659,Mining,Mining +324658,Mining,Mining +324356,Mining,Mining +315874,Mining,Mining +309898,Mining,Mining +309897,Mining,Mining +309896,Mining,Mining +309893,Mining,Mining +309892,Mining,Mining +309891,Mining,Mining +298990,Mining,Mining +298989,Mining,Mining +298970,Mining,Mining +298969,Mining,Mining +295029,Mining,Mining +295011,Mining,Mining +295010,Mining,Mining +295009,Mining,Mining +294874,Mining,Mining +461545,Mining,Mining +461540,Mining,Mining +461539,Mining,Mining +461537,Mining,Mining +461535,Mining,Mining +449750,Mining,Mining +449749,Mining,Mining +449746,Mining,Mining +445670,Mining,Mining +445669,Mining,Mining +445667,Mining,Mining +445663,Mining,Mining +445657,Mining,Mining +442693,Mining,Mining +442690,Mining,Mining +442689,Mining,Mining +442688,Mining,Mining +442686,Mining,Mining +442685,Mining,Mining +442684,Mining,Mining +442683,Mining,Mining +432469,Mining,Mining +421685,Mining,Mining +420227,Mining,Mining +418068,Mining,Mining +418066,Mining,Mining +416087,Mining,Mining +416066,Mining,Mining +416058,Mining,Mining +416054,Mining,Mining +413130,Mining,Mining +413126,Mining,Mining +409936,Mining,Mining +409935,Mining,Mining +409933,Mining,Mining +409932,Mining,Mining +407646,Mining,Mining +403735,Mining,Mining +403733,Mining,Mining +403730,Mining,Mining +403632,Mining,Mining +398983,Mining,Mining +398846,Mining,Mining +395317,Mining,Mining +395315,Mining,Mining +395314,Mining,Mining +395313,Mining,Mining +391089,Mining,Mining +391088,Mining,Mining +391087,Mining,Mining +544519,Mining,Mining +544518,Mining,Mining +544517,Mining,Mining +544516,Mining,Mining +544515,Mining,Mining +544514,Mining,Mining +540117,Mining,Mining +540115,Mining,Mining +540113,Mining,Mining +450678,Labour,Labour +317370,Agriculture,Agriculture +317370,Internal Trade,Internal Trade +264789,Health,Health +247270,Infrastructure,Infrastructure +247270,Security,Security +272649,International Development,International Development +247989,International Trade,International Trade +309879,Defence,Defence +250574,International Relations,International Relations +247829,International Trade,International Trade +248130,International Relations,International Relations +248153,Pensions,Pensions +248152,Pensions,Pensions +248154,Pensions,Pensions +277689,Research and Development,Research and Development +299511,Justice and Law Enforcement,Justice and Law Enforcement +324784,Labour,Labour +273359,Transportation,Transportation +321398,Taxation and Finance,Taxation and Finance +307069,Health,Health +283709,Internal Trade,Internal Trade +299469,Industry,Industry +307730,Taxation and Finance,Taxation and Finance +349802,Transportation,Transportation +317754,Consumer Issues,Consumer Issues +283709,Infrastructure,Infrastructure +317751,International Trade,International Trade +248429,Official Languages,Official Languages +272009,International Trade,International Trade +340890,Security,Security +340890,Defence,Defence +248854,Transportation,Transportation +248854,Government Procurement,Government Procurement +340890,Industry,Industry +369097,International Trade,International Trade +403966,Education,Education +403958,Energy,Energy +391633,Immigration,Immigration +391642,Research and Development,Research and Development +335843,International Trade,International Trade +374722,Taxation and Finance,Taxation and Finance +253270,Mining,Mining +380127,Economic Development,Economic Development +391808,Environment,Environment +253829,Taxation and Finance,Taxation and Finance +368925,International Trade,Commerce international +499408,Agriculture,Agriculture +357200,Internal Trade,Commerce intérieur +252950,Industry,Industry +252954,International Trade,International Trade +252954,Taxation and Finance,Taxation and Finance +248771,Industry,Industry +273125,Industry,Industry +273125,International Trade,International Trade +273125,Taxation and Finance,Taxation and Finance +250308,Industry,Industry +250308,Internal Trade,Internal Trade +250308,Taxation and Finance,Taxation and Finance +249030,Energy,Energy +289715,Energy,Energy +249258,Employment and Training,Employment and Training +249259,Employment and Training,Employment and Training +249261,Employment and Training,Employment and Training +249262,Employment and Training,Employment and Training +249263,Employment and Training,Employment and Training +324441,Defence,Defence +435055,Employment and Training,Employment and Training +249549,Security,Security +261212,Mining,Mining +249678,Justice and Law Enforcement,Justice and Law Enforcement +273135,Taxation and Finance,Taxation and Finance +249820,Pensions,Pensions +261489,Research and Development,Recherche et développement +254309,Defence,Défense +250035,Energy,Energy +250040,Budget,Budget +349067,Government Procurement,Government Procurement +260089,Employment and Training,Employment and Training +250231,Regional Development,Regional Development +250250,Climate,Climate +250313,Climate,Climate +250317,Economic Development,Economic Development +262809,Industry,Industry +250654,Research and Development,Research and Development +250658,Taxation and Finance,Taxation and Finance +250649,Small Business,Small Business +258913,Pensions,Pensions +258914,Pensions,Pensions +250747,Pensions,Pensions +250749,Pensions,Pensions +258912,Pensions,Pensions +258910,Pensions,Pensions +250755,Pensions,Pensions +250757,Pensions,Pensions +250756,Taxation and Finance,Taxation and Finance +250759,Pensions,Pensions +258574,Budget,Budget +321751,Budget,Budget +250766,Budget,Budget +310234,Budget,Budget +335798,Budget,Budget +258794,Budget,Budget +341584,Budget,Budget +268509,Health,Health +262535,Justice and Law Enforcement,Justice and Law Enforcement +250806,Immigration,Immigration +320580,Education,Education +377781,Energy,Energy +310855,Employment and Training,Employment and Training +250874,Environment,Environment +250879,Environment,Environment +250888,Environment,Environment +258769,Energy,Energy +251032,Defence,Defence +336451,Small Business,Small Business +251033,Justice and Law Enforcement,Justice and Law Enforcement +258950,Transportation,Transportation +378687,Environment,Environment +251649,Defence,Defence +251858,Research and Development,Research and Development +251855,Research and Development,Research and Development +251856,Research and Development,Research and Development +251854,Research and Development,Research and Development +251853,Research and Development,Research and Development +251829,Research and Development,Research and Development +251859,Research and Development,Research and Development +251861,Research and Development,Research and Development +273557,Economic Development,Economic Development +251873,Agriculture,Agriculture +251873,Industry,Industry +264435,Official Languages,Official Languages +315616,International Development,International Development +273267,Research and Development,Research and Development +324492,Research and Development,Research and Development +273261,Research and Development,Research and Development +278021,Research and Development,Research and Development +278014,Research and Development,Research and Development +461537,Fisheries,Fisheries +341969,International Development,International Development +464876,Taxation and Finance,Taxation and Finance +261069,Transportation,Transportation +435740,Fisheries,Fisheries +252360,Employment and Training,Employment and Training +531786,Transportation,Transportation +252364,Fisheries,Fisheries +252365,Employment and Training,Employment and Training +252368,Transportation,Transportation +252371,Fisheries,Fisheries +252370,Employment and Training,Employment and Training +252493,Transportation,Transportation +290251,Consumer Issues,Consumer Issues +303523,Industry,Industry +290251,Security,Security +445491,Health,Health +527189,Taxation and Finance,Taxation and Finance +498387,Consumer Issues,Consumer Issues +453785,Consumer Issues,Consumer Issues +436258,Taxation and Finance,Taxation and Finance +498288,Consumer Issues,Consumer Issues +453784,Taxation and Finance,Taxation and Finance +527184,Consumer Issues,Consumer Issues +436305,Taxation and Finance,Taxation and Finance +446107,Consumer Issues,Consumer Issues +465559,Taxation and Finance,Taxation and Finance +491725,Infrastructure,Infrastructure +484275,Justice and Law Enforcement,Justice and Law Enforcement +260029,Taxation and Finance,Taxation and Finance +270529,Budget,Budget +444863,Agriculture,Agriculture +444863,Consumer Issues,Consumer Issues +258156,Environment,Environment +464848,Health,Health +444863,International Trade,International Trade +258217,Mining,Mining +258011,Economic Development,Economic Development +468769,International Development,International Development +253736,Labour,Labour +289770,Security,Security +255169,Regional Development,Regional Development +253975,International Development,International Development +254030,Budget,Budget +254035,Budget,Budget +254038,Budget,Budget +254041,Budget,Budget +254042,Budget,Budget +254044,Budget,Budget +470755,Mining,Mining +254072,Pensions,Pensions +482371,Regional Development,Regional Development +258476,Economic Development,Economic Development +258474,Employment and Training,Employment and Training +258476,Energy,Energy +258480,Government Procurement,Government Procurement +258410,Immigration,Immigration +264087,Industry,Industry +264080,Infrastructure,Infrastructure +264080,Labour,Labour +258474,Mining,Mining +264086,Municipalities,Municipalities +268669,Regional Development,Regional Development +273363,Labour,Labour +273362,Infrastructure,Infrastructure +254796,Climate,Climate +254790,Economic Development,Economic Development +254793,Energy,Energy +495838,Environment,Environment +254790,Industry,Industry +254796,Research and Development,Research and Development +258391,Budget,Budget +524351,Agriculture,Agriculture +394457,Consumer Issues,Consumer Issues +496802,Environment,Environment +465329,International Trade,International Trade +323826,Infrastructure,Infrastructure +256894,International Trade,International Trade +261050,Consumer Issues,Consumer Issues +261050,Financial Institutions,Financial Institutions +261050,Industry,Industry +261050,Taxation and Finance,Taxation and Finance +263530,Energy,Energy +277228,Industry,Industry +277228,International Relations,International Relations +277228,International Trade,International Trade +263241,Energy,Energy +263241,Industry,Industry +276538,International Trade,International Trade +263949,Industry,Industry +301717,Industry,Industry +255594,Research and Development,Research and Development +255593,Research and Development,Research and Development +348593,Economic Development,Economic Development +419004,Education,Education +317293,Regional Development,Regional Development +457734,Research and Development,Research and Development +263895,Taxation and Finance,Taxation and Finance +340577,Financial Institutions,Financial Institutions +396873,Energy,Energy +259011,Industry,Industry +272409,Agriculture,Agriculture +259830,Economic Development,Economic Development +259830,Health,Health +272409,International Relations,International Relations +260133,International Relations,International Relations +260133,Transportation,Transportation +302346,Employment and Training,Employment and Training +302352,Immigration,Immigration +292271,Transportation,Transportation +279069,Agriculture,Agriculture +377822,Economic Development,Economic Development +393826,Health,Health +368523,International Trade,International Trade +275420,Health,Health +326614,Security,Security +326614,Consumer Issues,Consumer Issues +326614,Industry,Industry +326614,Privacy and Access to Information,Privacy and Access to Information +326615,Taxation and Finance,Taxation and Finance +317653,Industry,Industry +324709,Infrastructure,Infrastructure +321154,Consumer Issues,Consumer Issues +256389,Health,Health +414811,International Development,International Development +460076,International Development,International Development +435126,International Development,International Development +270033,Employment and Training,Employment and Training +270032,Health,Health +286129,Education,Education +296716,Employment and Training,Employment and Training +286129,Immigration,Immigration +303910,Official Languages,Official Languages +315309,Agriculture,Agriculture +273830,Taxation and Finance,Taxation and Finance +407584,Taxation and Finance,Taxation and Finance +324178,Health,Health +276616,Health,Health +276892,Health,Health +540111,Mining,Mining +540109,Mining,Mining +537494,Mining,Mining +537492,Mining,Mining +537486,Mining,Mining +537484,Mining,Mining +537482,Mining,Mining +537479,Mining,Mining +537476,Mining,Mining +537475,Mining,Mining +535929,Mining,Mining +535615,Mining,Mining +535611,Mining,Mining +535605,Mining,Mining +535599,Mining,Mining +535569,Mining,Mining +535541,Mining,Mining +535533,Mining,Mining +535520,Mining,Mining +535514,Mining,Mining +527868,Mining,Mining +527858,Mining,Mining +527856,Mining,Mining +527855,Mining,Mining +524935,Mining,Mining +524931,Mining,Mining +524930,Mining,Mining +524894,Mining,Mining +519867,Mining,Mining +517982,Mining,Mining +517975,Mining,Mining +517968,Mining,Mining +517964,Mining,Mining +517960,Mining,Mining +517958,Mining,Mining +517954,Mining,Mining +517951,Mining,Mining +517944,Mining,Mining +517928,Mining,Mining +517919,Mining,Mining +515846,Mining,Mining +515842,Mining,Mining +515836,Mining,Mining +510543,Mining,Mining +502260,Mining,Mining +499350,Mining,Mining +495485,Mining,Mining +491512,Mining,Mining +491485,Mining,Mining +491476,Mining,Mining +491457,Mining,Mining +491452,Mining,Mining +491434,Mining,Mining +491424,Mining,Mining +491401,Mining,Mining +485017,Mining,Mining +479084,Mining,Mining +479082,Mining,Mining +475505,Mining,Mining +475503,Mining,Mining +475491,Mining,Mining +475489,Mining,Mining +475481,Mining,Mining +475477,Mining,Mining +475423,Mining,Mining +475418,Mining,Mining +470960,Mining,Mining +470956,Mining,Mining +470952,Mining,Mining +470949,Mining,Mining +470941,Mining,Mining +470759,Mining,Mining +470758,Mining,Mining +480906,Regional Development,Regional Development +475493,Regional Development,Regional Development +341985,Regional Development,Regional Development +341977,Regional Development,Regional Development +341969,Regional Development,Regional Development +338768,Regional Development,Regional Development +338766,Regional Development,Regional Development +294874,Regional Development,Regional Development +292252,Regional Development,Regional Development +292251,Regional Development,Regional Development +286329,Regional Development,Regional Development +276793,Regional Development,Regional Development +276792,Regional Development,Regional Development +276791,Regional Development,Regional Development +276790,Regional Development,Regional Development +269075,Regional Development,Regional Development +269065,Regional Development,Regional Development +254074,Regional Development,Regional Development +452778,Regional Development,Regional Development +452772,Regional Development,Regional Development +452769,Regional Development,Regional Development +452673,Regional Development,Regional Development +448137,Regional Development,Regional Development +448135,Regional Development,Regional Development +448134,Regional Development,Regional Development +445657,Regional Development,Regional Development +442691,Regional Development,Regional Development +442688,Regional Development,Regional Development +442686,Regional Development,Regional Development +438142,Regional Development,Regional Development +432469,Regional Development,Regional Development +429199,Regional Development,Regional Development +409936,Regional Development,Regional Development +409935,Regional Development,Regional Development +409933,Regional Development,Regional Development +409932,Regional Development,Regional Development +398983,Regional Development,Regional Development +385577,Regional Development,Regional Development +382442,Regional Development,Regional Development +379819,Regional Development,Regional Development +379783,Regional Development,Regional Development +376905,Regional Development,Regional Development +537494,Regional Development,Regional Development +537492,Regional Development,Regional Development +537484,Regional Development,Regional Development +537478,Regional Development,Regional Development +502260,Regional Development,Regional Development +491485,Regional Development,Regional Development +488017,Regional Development,Regional Development +258474,Economic Development,Economic Development +258410,Economic Development,Economic Development +258471,Employment and Training,Employment and Training +258410,Employment and Training,Employment and Training +268669,Employment and Training,Employment and Training +264087,Employment and Training,Employment and Training +264086,Employment and Training,Employment and Training +264085,Employment and Training,Employment and Training +264080,Employment and Training,Employment and Training +258476,Employment and Training,Employment and Training +264086,Industry,Industry +264085,Industry,Industry +264080,Industry,Industry +258480,Infrastructure,Infrastructure +258474,Infrastructure,Infrastructure +268669,Infrastructure,Infrastructure +264087,Infrastructure,Infrastructure +264086,Infrastructure,Infrastructure +264085,Infrastructure,Infrastructure +258480,Labour,Labour +258474,Labour,Labour +264087,Labour,Labour +264086,Labour,Labour +264085,Labour,Labour +264085,Municipalities,Municipalities +264080,Municipalities,Municipalities +264087,Municipalities,Municipalities +264087,Regional Development,Regional Development +264086,Regional Development,Regional Development +264085,Regional Development,Regional Development +264080,Regional Development,Regional Development +273358,Infrastructure,Infrastructure +254795,Climate,Climate +254792,Energy,Energy +254791,Energy,Energy +254796,Energy,Energy +254795,Energy,Energy +254794,Energy,Energy +495836,Environment,Environment +495824,Environment,Environment +327543,Environment,Environment +319221,Environment,Environment +310428,Environment,Environment +310301,Environment,Environment +274489,Environment,Environment +274250,Environment,Environment +254796,Environment,Environment +254795,Environment,Environment +495821,Environment,Environment +495820,Environment,Environment +495818,Environment,Environment +493614,Environment,Environment +493613,Environment,Environment +493607,Environment,Environment +493601,Environment,Environment +491673,Environment,Environment +491664,Environment,Environment +491662,Environment,Environment +491660,Environment,Environment +491658,Environment,Environment +487745,Environment,Environment +487744,Environment,Environment +487741,Environment,Environment +487740,Environment,Environment +487739,Environment,Environment +487738,Environment,Environment +487737,Environment,Environment +485396,Environment,Environment +485395,Environment,Environment +482605,Environment,Environment +482604,Environment,Environment +480327,Environment,Environment +480326,Environment,Environment +477925,Environment,Environment +477914,Environment,Environment +452884,Environment,Environment +452882,Environment,Environment +433923,Environment,Environment +403978,Environment,Environment +391557,Environment,Environment +388431,Environment,Environment +383856,Environment,Environment +382616,Environment,Environment +381820,Environment,Environment +381819,Environment,Environment +381604,Environment,Environment +381601,Environment,Environment +380038,Environment,Environment +377006,Environment,Environment +377004,Environment,Environment +377003,Environment,Environment +544128,Environment,Environment +544124,Environment,Environment +541629,Environment,Environment +541624,Environment,Environment +541622,Environment,Environment +541572,Environment,Environment +541543,Environment,Environment +539593,Environment,Environment +538609,Environment,Environment +538607,Environment,Environment +535526,Environment,Environment +535502,Environment,Environment +534904,Environment,Environment +534903,Environment,Environment +531992,Environment,Environment +531990,Environment,Environment +531989,Environment,Environment +531985,Environment,Environment +529675,Environment,Environment +529673,Environment,Environment +529671,Environment,Environment +529669,Environment,Environment +529668,Environment,Environment +529667,Environment,Environment +526604,Environment,Environment +526602,Environment,Environment +526601,Environment,Environment +526599,Environment,Environment +523312,Environment,Environment +523311,Environment,Environment +520146,Environment,Environment +520143,Environment,Environment +518294,Environment,Environment +518289,Environment,Environment +515707,Environment,Environment +515706,Environment,Environment +514243,Environment,Environment +514241,Environment,Environment +511374,Environment,Environment +511371,Environment,Environment +508964,Environment,Environment +508960,Environment,Environment +508956,Environment,Environment +508953,Environment,Environment +508952,Environment,Environment +505664,Environment,Environment +505663,Environment,Environment +505661,Environment,Environment +505660,Environment,Environment +502681,Environment,Environment +502678,Environment,Environment +502677,Environment,Environment +502674,Environment,Environment +502673,Environment,Environment +499333,Environment,Environment +499328,Environment,Environment +499305,Environment,Environment +495844,Environment,Environment +495841,Environment,Environment +495839,Environment,Environment +254795,Research and Development,Research and Development +524350,Agriculture,Agriculture +524348,Agriculture,Agriculture +258504,Agriculture,Agriculture +258502,Agriculture,Agriculture +258500,Agriculture,Agriculture +394457,Agriculture,Agriculture +394455,Agriculture,Agriculture +394201,Agriculture,Agriculture +368684,Agriculture,Agriculture +368594,Agriculture,Agriculture +368593,Agriculture,Agriculture +368592,Agriculture,Agriculture +348318,Agriculture,Agriculture +348317,Agriculture,Agriculture +317448,Agriculture,Agriculture +317447,Agriculture,Agriculture +317446,Agriculture,Agriculture +496803,Agriculture,Agriculture +496802,Agriculture,Agriculture +496801,Agriculture,Agriculture +496800,Agriculture,Agriculture +465329,Agriculture,Agriculture +465284,Agriculture,Agriculture +465283,Agriculture,Agriculture +446250,Agriculture,Agriculture +446249,Agriculture,Agriculture +446247,Agriculture,Agriculture +394455,Consumer Issues,Consumer Issues +394201,Consumer Issues,Consumer Issues +317448,Consumer Issues,Consumer Issues +317447,Consumer Issues,Consumer Issues +317446,Consumer Issues,Consumer Issues +258504,Consumer Issues,Consumer Issues +258502,Consumer Issues,Consumer Issues +258500,Consumer Issues,Consumer Issues +524351,Consumer Issues,Consumer Issues +524350,Consumer Issues,Consumer Issues +524348,Consumer Issues,Consumer Issues +496803,Consumer Issues,Consumer Issues +496802,Consumer Issues,Consumer Issues +496801,Consumer Issues,Consumer Issues +496800,Consumer Issues,Consumer Issues +465329,Consumer Issues,Consumer Issues +465284,Consumer Issues,Consumer Issues +465283,Consumer Issues,Consumer Issues +446250,Consumer Issues,Consumer Issues +446249,Consumer Issues,Consumer Issues +446247,Consumer Issues,Consumer Issues +496801,Environment,Environment +465329,Environment,Environment +524351,Environment,Environment +524350,Environment,Environment +524348,Environment,Environment +465284,International Trade,International Trade +465283,International Trade,International Trade +348318,International Trade,International Trade +348317,International Trade,International Trade +317448,International Trade,International Trade +317447,International Trade,International Trade +317446,International Trade,International Trade +258504,International Trade,International Trade +258502,International Trade,International Trade +258500,International Trade,International Trade +446250,International Trade,International Trade +446249,International Trade,International Trade +446247,International Trade,International Trade +394457,International Trade,International Trade +394455,International Trade,International Trade +394201,International Trade,International Trade +368684,International Trade,International Trade +368594,International Trade,International Trade +368593,International Trade,International Trade +368592,International Trade,International Trade +524351,International Trade,International Trade +524350,International Trade,International Trade +524348,International Trade,International Trade +496803,International Trade,International Trade +496802,International Trade,International Trade +496801,International Trade,International Trade +496800,International Trade,International Trade +323825,Infrastructure,Infrastructure +323824,Infrastructure,Infrastructure +323734,Infrastructure,Infrastructure +323733,Infrastructure,Infrastructure +323732,Infrastructure,Infrastructure +323731,Infrastructure,Infrastructure +323729,Infrastructure,Infrastructure +264930,Infrastructure,Infrastructure +323823,Infrastructure,Infrastructure +323820,Infrastructure,Infrastructure +323819,Infrastructure,Infrastructure +323818,Infrastructure,Infrastructure +323817,Infrastructure,Infrastructure +323816,Infrastructure,Infrastructure +323815,Infrastructure,Infrastructure +323814,Infrastructure,Infrastructure +323813,Infrastructure,Infrastructure +323812,Infrastructure,Infrastructure +323811,Infrastructure,Infrastructure +323809,Infrastructure,Infrastructure +323808,Infrastructure,Infrastructure +323801,Infrastructure,Infrastructure +323800,Infrastructure,Infrastructure +323799,Infrastructure,Infrastructure +323798,Infrastructure,Infrastructure +323797,Infrastructure,Infrastructure +323796,Infrastructure,Infrastructure +323795,Infrastructure,Infrastructure +323794,Infrastructure,Infrastructure +323793,Infrastructure,Infrastructure +323792,Infrastructure,Infrastructure +323791,Infrastructure,Infrastructure +323790,Infrastructure,Infrastructure +323786,Infrastructure,Infrastructure +323784,Infrastructure,Infrastructure +323780,Infrastructure,Infrastructure +323779,Infrastructure,Infrastructure +323778,Infrastructure,Infrastructure +323777,Infrastructure,Infrastructure +323776,Infrastructure,Infrastructure +323775,Infrastructure,Infrastructure +323774,Infrastructure,Infrastructure +323773,Infrastructure,Infrastructure +323772,Infrastructure,Infrastructure +323771,Infrastructure,Infrastructure +323768,Infrastructure,Infrastructure +323766,Infrastructure,Infrastructure +323765,Infrastructure,Infrastructure +323763,Infrastructure,Infrastructure +323762,Infrastructure,Infrastructure +323761,Infrastructure,Infrastructure +323760,Infrastructure,Infrastructure +323758,Infrastructure,Infrastructure +323757,Infrastructure,Infrastructure +323756,Infrastructure,Infrastructure +323755,Infrastructure,Infrastructure +323754,Infrastructure,Infrastructure +323753,Infrastructure,Infrastructure +323752,Infrastructure,Infrastructure +323751,Infrastructure,Infrastructure +323750,Infrastructure,Infrastructure +323749,Infrastructure,Infrastructure +323748,Infrastructure,Infrastructure +323746,Infrastructure,Infrastructure +323745,Infrastructure,Infrastructure +323744,Infrastructure,Infrastructure +323743,Infrastructure,Infrastructure +323742,Infrastructure,Infrastructure +323741,Infrastructure,Infrastructure +323740,Infrastructure,Infrastructure +323738,Infrastructure,Infrastructure +323737,Infrastructure,Infrastructure +323736,Infrastructure,Infrastructure +323735,Infrastructure,Infrastructure +399991,Infrastructure,Infrastructure +398921,Infrastructure,Infrastructure +373485,Infrastructure,Infrastructure +323827,Infrastructure,Infrastructure +256249,International Trade,International Trade +261049,Consumer Issues,Consumer Issues +261049,Financial Institutions,Financial Institutions +261049,Industry,Industry +261049,Taxation and Finance,Taxation and Finance +277228,Energy,Energy +263530,Industry,Industry +263530,International Trade,International Trade +263236,Energy,Energy +276538,Energy,Energy +263236,Industry,Industry +263241,International Trade,International Trade +263236,International Trade,International Trade +263930,Industry,Industry +263929,Industry,Industry +301715,Industry,Industry +301713,Industry,Industry +301711,Industry,Industry +301709,Industry,Industry +301689,Industry,Industry +280291,Industry,Industry +301738,Industry,Industry +301734,Industry,Industry +346961,Economic Development,Economic Development +346957,Economic Development,Economic Development +338282,Economic Development,Economic Development +299669,Economic Development,Economic Development +273962,Economic Development,Economic Development +273961,Economic Development,Economic Development +273960,Economic Development,Economic Development +273932,Economic Development,Economic Development +273931,Economic Development,Economic Development +273930,Economic Development,Economic Development +273889,Economic Development,Economic Development +502238,Economic Development,Economic Development +498650,Economic Development,Economic Development +458307,Economic Development,Economic Development +457734,Economic Development,Economic Development +457728,Economic Development,Economic Development +441817,Economic Development,Economic Development +435437,Economic Development,Economic Development +419003,Economic Development,Economic Development +415723,Economic Development,Economic Development +407075,Economic Development,Economic Development +399540,Economic Development,Economic Development +391099,Economic Development,Economic Development +384902,Economic Development,Economic Development +384900,Economic Development,Economic Development +415722,Education,Education +415721,Education,Education +273962,Education,Education +273961,Education,Education +273960,Education,Education +273932,Education,Education +273931,Education,Education +273930,Education,Education +273889,Education,Education +348601,Education,Education +348598,Education,Education +348596,Education,Education +313264,Regional Development,Regional Development +299693,Regional Development,Regional Development +278290,Regional Development,Regional Development +278289,Regional Development,Regional Development +273962,Regional Development,Regional Development +273961,Regional Development,Regional Development +273960,Regional Development,Regional Development +273932,Regional Development,Regional Development +273931,Regional Development,Regional Development +273930,Regional Development,Regional Development +457734,Regional Development,Regional Development +449835,Regional Development,Regional Development +449832,Regional Development,Regional Development +449830,Regional Development,Regional Development +449829,Regional Development,Regional Development +358606,Regional Development,Regional Development +358605,Regional Development,Regional Development +348593,Regional Development,Regional Development +346961,Regional Development,Regional Development +346957,Regional Development,Regional Development +457728,Research and Development,Research and Development +449830,Research and Development,Research and Development +273932,Research and Development,Research and Development +273931,Research and Development,Research and Development +273930,Research and Development,Research and Development +273889,Research and Development,Research and Development +358607,Research and Development,Research and Development +358605,Research and Development,Research and Development +338282,Research and Development,Research and Development +332629,Research and Development,Research and Development +322670,Research and Development,Research and Development +317293,Research and Development,Research and Development +313264,Research and Development,Research and Development +309469,Research and Development,Research and Development +299693,Research and Development,Research and Development +299669,Research and Development,Research and Development +278290,Research and Development,Research and Development +278289,Research and Development,Research and Development +273962,Research and Development,Research and Development +273961,Research and Development,Research and Development +273960,Research and Development,Research and Development +419003,Research and Development,Research and Development +263892,Taxation and Finance,Taxation and Finance +280672,Financial Institutions,Financial Institutions +280670,Financial Institutions,Financial Institutions +263895,Financial Institutions,Financial Institutions +263892,Financial Institutions,Financial Institutions +259830,Agriculture,Agriculture +259829,Agriculture,Agriculture +259829,Economic Development,Economic Development +259829,Health,Health +272409,Health,Health +259830,International Relations,International Relations +259829,International Relations,International Relations +292271,Employment and Training,Employment and Training +292270,Employment and Training,Employment and Training +292269,Employment and Training,Employment and Training +340054,Employment and Training,Employment and Training +302352,Employment and Training,Employment and Training +302347,Employment and Training,Employment and Training +302347,Immigration,Immigration +302346,Immigration,Immigration +292270,Transportation,Transportation +292269,Transportation,Transportation +340054,Transportation,Transportation +437547,Agriculture,Agriculture +437514,Agriculture,Agriculture +377822,Agriculture,Agriculture +368525,Agriculture,Agriculture +368524,Agriculture,Agriculture +368523,Agriculture,Agriculture +368522,Agriculture,Agriculture +368521,Agriculture,Agriculture +347658,Agriculture,Agriculture +347657,Agriculture,Agriculture +347656,Agriculture,Agriculture +347655,Agriculture,Agriculture +347654,Agriculture,Agriculture +393825,Health,Health +393822,Health,Health +445208,Health,Health +393828,Health,Health +393827,Health,Health +368522,International Trade,International Trade +368521,International Trade,International Trade +347658,International Trade,International Trade +347657,International Trade,International Trade +347656,International Trade,International Trade +347655,International Trade,International Trade +347654,International Trade,International Trade +445208,International Trade,International Trade +437547,International Trade,International Trade +437514,International Trade,International Trade +433003,International Trade,International Trade +393828,International Trade,International Trade +393827,International Trade,International Trade +393826,International Trade,International Trade +393825,International Trade,International Trade +393822,International Trade,International Trade +368525,International Trade,International Trade +368524,International Trade,International Trade +326613,Security,Security +326613,Consumer Issues,Consumer Issues +326613,Industry,Industry +326613,Privacy and Access to Information,Privacy and Access to Information +321156,Taxation and Finance,Taxation and Finance +321155,Taxation and Finance,Taxation and Finance +317652,Industry,Industry +324713,Industry,Industry +321154,Industry,Industry +317653,Infrastructure,Infrastructure +317652,Infrastructure,Infrastructure +324713,Infrastructure,Infrastructure +317653,Consumer Issues,Consumer Issues +317652,Consumer Issues,Consumer Issues +324713,Consumer Issues,Consumer Issues +324709,Consumer Issues,Consumer Issues +486632,International Development,International Development +467137,International Development,International Development +365214,International Development,International Development +362682,International Development,International Development +359757,International Development,International Development +355953,International Development,International Development +351211,International Development,International Development +349924,International Development,International Development +349038,International Development,International Development +324981,International Development,International Development +322172,International Development,International Development +309773,International Development,International Development +277321,International Development,International Development +256432,International Development,International Development +431057,International Development,International Development +418877,International Development,International Development +457058,International Development,International Development +439015,International Development,International Development +273436,International Development,International Development +256449,International Development,International Development +433163,International Development,International Development +408704,International Development,International Development +398052,International Development,International Development +397682,International Development,International Development +374799,International Development,International Development +374766,International Development,International Development +353314,International Development,International Development +353306,International Development,International Development +339170,International Development,International Development +339169,International Development,International Development +336614,International Development,International Development +467134,International Development,International Development +433161,International Development,International Development +430690,International Development,International Development +304075,International Development,International Development +256450,International Development,International Development +381300,International Development,International Development +374780,International Development,International Development +374775,International Development,International Development +370682,International Development,International Development +361224,International Development,International Development +358063,International Development,International Development +349047,International Development,International Development +315933,International Development,International Development +539111,International Development,International Development +504265,International Development,International Development +452520,International Development,International Development +452498,International Development,International Development +450351,International Development,International Development +439065,International Development,International Development +439050,International Development,International Development +439042,International Development,International Development +270031,Employment and Training,Employment and Training +270030,Employment and Training,Employment and Training +270031,Health,Health +270030,Health,Health +270033,Health,Health +261530,Education,Education +261529,Education,Education +309753,Education,Education +303931,Education,Education +303910,Education,Education +296716,Education,Education +296712,Education,Education +296712,Employment and Training,Employment and Training +309753,Employment and Training,Employment and Training +303931,Employment and Training,Employment and Training +303910,Employment and Training,Employment and Training +261530,Immigration,Immigration +261529,Immigration,Immigration +309753,Immigration,Immigration +303931,Immigration,Immigration +303910,Immigration,Immigration +296716,Immigration,Immigration +296712,Immigration,Immigration +296716,Official Languages,Official Languages +296712,Official Languages,Official Languages +309753,Official Languages,Official Languages +303931,Official Languages,Official Languages +260850,Agriculture,Agriculture +260849,Agriculture,Agriculture +315312,Agriculture,Agriculture +315311,Agriculture,Agriculture +315310,Agriculture,Agriculture +271532,Taxation and Finance,Taxation and Finance +263831,Taxation and Finance,Taxation and Finance +275376,Taxation and Finance,Taxation and Finance +274810,Taxation and Finance,Taxation and Finance +324072,Health,Health +323970,Health,Health +276707,Health,Health +276705,Health,Health +407584,Health,Health +374930,Health,Health +324357,Health,Health +276615,Health,Health +276613,Health,Health +333405,Health,Health +333402,Health,Health +324188,Health,Health +316018,Health,Health +305629,Health,Health +290672,Health,Health +276891,Health,Health +276687,Health,Health +323551,International Trade,International Trade +323550,International Trade,International Trade +323549,International Trade,International Trade +317714,International Trade,International Trade +317712,International Trade,International Trade +317711,International Trade,International Trade +317710,International Trade,International Trade +317709,International Trade,International Trade +301503,International Trade,International Trade +301502,International Trade,International Trade +301497,International Trade,International Trade +301016,International Trade,International Trade +301013,International Trade,International Trade +301009,International Trade,International Trade +274889,International Trade,International Trade +274875,International Trade,International Trade +274874,International Trade,International Trade +274872,International Trade,International Trade +274871,International Trade,International Trade +274870,International Trade,International Trade +274869,International Trade,International Trade +340386,International Trade,International Trade +340381,International Trade,International Trade +340380,International Trade,International Trade +327837,International Trade,International Trade +324520,International Trade,International Trade +324519,International Trade,International Trade +324518,International Trade,International Trade +323802,International Trade,International Trade +323562,International Trade,International Trade +323560,International Trade,International Trade +323559,International Trade,International Trade +323558,International Trade,International Trade +323557,International Trade,International Trade +323555,International Trade,International Trade +323554,International Trade,International Trade +323553,International Trade,International Trade +536287,Internal Trade,Internal Trade +355504,Infrastructure,Infrastructure +355503,Infrastructure,Infrastructure +355508,Infrastructure,Infrastructure +502566,Environment,Environment +499512,Environment,Environment +374998,Environment,Environment +368690,Environment,Environment +365282,Environment,Environment +362482,Environment,Environment +359765,Environment,Environment +357050,Environment,Environment +350220,Environment,Environment +336829,Environment,Environment +430586,Environment,Environment +430585,Environment,Environment +430584,Environment,Environment +421732,Environment,Environment +403798,Environment,Environment +401052,Environment,Environment +399029,Environment,Environment +399025,Environment,Environment +399024,Environment,Environment +395693,Environment,Environment +395692,Environment,Environment +391024,Environment,Environment +391022,Environment,Environment +391020,Environment,Environment +391016,Environment,Environment +387931,Environment,Environment +484699,Environment,Environment +482013,Environment,Environment +482010,Environment,Environment +475868,Environment,Environment +475862,Environment,Environment +475841,Environment,Environment +475715,Environment,Environment +471826,Environment,Environment +471825,Environment,Environment +471824,Environment,Environment +471823,Environment,Environment +471822,Environment,Environment +471821,Environment,Environment +460275,Environment,Environment +452139,Environment,Environment +447668,Environment,Environment +443320,Environment,Environment +443319,Environment,Environment +541167,Environment,Environment +538477,Environment,Environment +532027,Environment,Environment +532025,Environment,Environment +499527,Fisheries,Fisheries +499512,Fisheries,Fisheries +275669,Fisheries,Fisheries +391024,Fisheries,Fisheries +391022,Fisheries,Fisheries +391020,Fisheries,Fisheries +391016,Fisheries,Fisheries +387931,Fisheries,Fisheries +377481,Fisheries,Fisheries +377480,Fisheries,Fisheries +377479,Fisheries,Fisheries +377478,Fisheries,Fisheries +377477,Fisheries,Fisheries +377476,Fisheries,Fisheries +377475,Fisheries,Fisheries +377474,Fisheries,Fisheries +374998,Fisheries,Fisheries +368690,Fisheries,Fisheries +359765,Fisheries,Fisheries +357050,Fisheries,Fisheries +350220,Fisheries,Fisheries +336829,Fisheries,Fisheries +330764,Fisheries,Fisheries +320189,Fisheries,Fisheries +320172,Fisheries,Fisheries +320171,Fisheries,Fisheries +306171,Fisheries,Fisheries +306170,Fisheries,Fisheries +297029,Fisheries,Fisheries +293031,Fisheries,Fisheries +293030,Fisheries,Fisheries +293029,Fisheries,Fisheries +493483,Fisheries,Fisheries +493475,Fisheries,Fisheries +484699,Fisheries,Fisheries +475862,Fisheries,Fisheries +475841,Fisheries,Fisheries +475715,Fisheries,Fisheries +471826,Fisheries,Fisheries +460275,Fisheries,Fisheries +452139,Fisheries,Fisheries +447668,Fisheries,Fisheries +443320,Fisheries,Fisheries +443319,Fisheries,Fisheries +421732,Fisheries,Fisheries +405621,Fisheries,Fisheries +401052,Fisheries,Fisheries +399028,Fisheries,Fisheries +399026,Fisheries,Fisheries +395696,Fisheries,Fisheries +394410,Fisheries,Fisheries +541167,Fisheries,Fisheries +538477,Fisheries,Fisheries +526656,Fisheries,Fisheries +523320,Fisheries,Fisheries +523317,Fisheries,Fisheries +515918,Fisheries,Fisheries +514721,Fisheries,Fisheries +511326,Fisheries,Fisheries +508361,Fisheries,Fisheries +508359,Fisheries,Fisheries +505582,Fisheries,Fisheries +505309,Fisheries,Fisheries +502566,Fisheries,Fisheries +317655,Research and Development,Research and Development +293869,Research and Development,Research and Development +279429,Research and Development,Research and Development +263749,Research and Development,Research and Development +258536,Research and Development,Research and Development +257892,Research and Development,Research and Development +260629,Agriculture,Agriculture +258010,Regional Development,Regional Development +258009,Regional Development,Regional Development +258012,Regional Development,Regional Development +258010,Research and Development,Research and Development +258009,Research and Development,Research and Development +258012,Research and Development,Research and Development +294493,Consumer Issues,Consumer Issues +271717,Consumer Issues,Consumer Issues +271716,Consumer Issues,Consumer Issues +271715,Consumer Issues,Consumer Issues +271714,Consumer Issues,Consumer Issues +271713,Consumer Issues,Consumer Issues +271553,Consumer Issues,Consumer Issues +282651,Defence,Defence +258190,Defence,Defence +470172,Climate,Climate +470159,Climate,Climate +269269,Climate,Climate +269209,Climate,Climate +264132,Climate,Climate +264130,Climate,Climate +258794,Climate,Climate +258501,Climate,Climate +467183,Climate,Climate +467167,Climate,Climate +467155,Climate,Climate +461606,Climate,Climate +461604,Climate,Climate +461601,Climate,Climate +458747,Climate,Climate +418353,Climate,Climate +418351,Climate,Climate +418350,Climate,Climate +539570,Climate,Climate +537751,Climate,Climate +537749,Climate,Climate +537747,Climate,Climate +537745,Climate,Climate +528494,Climate,Climate +528489,Climate,Climate +528482,Climate,Climate +528475,Climate,Climate +528472,Climate,Climate +528464,Climate,Climate +525008,Climate,Climate +524984,Climate,Climate +523063,Climate,Climate +523059,Climate,Climate +523056,Climate,Climate +519517,Climate,Climate +519515,Climate,Climate +519512,Climate,Climate +519511,Climate,Climate +519508,Climate,Climate +519506,Climate,Climate +519504,Climate,Climate +516723,Climate,Climate +514110,Climate,Climate +512632,Climate,Climate +510633,Climate,Climate +508060,Climate,Climate +508059,Climate,Climate +508056,Climate,Climate +508054,Climate,Climate +508053,Climate,Climate +508047,Climate,Climate +504533,Climate,Climate +504532,Climate,Climate +504531,Climate,Climate +504530,Climate,Climate +504529,Climate,Climate +504527,Climate,Climate +501702,Climate,Climate +501699,Climate,Climate +501692,Climate,Climate +501691,Climate,Climate +498973,Climate,Climate +495105,Climate,Climate +495103,Climate,Climate +495102,Climate,Climate +495101,Climate,Climate +493630,Climate,Climate +493560,Climate,Climate +490575,Climate,Climate +490570,Climate,Climate +486883,Climate,Climate +486868,Climate,Climate +484797,Climate,Climate +482130,Climate,Climate +482127,Climate,Climate +482113,Climate,Climate +482107,Climate,Climate +477000,Climate,Climate +475345,Climate,Climate +258535,Economic Development,Economic Development +258531,Economic Development,Economic Development +269269,Economic Development,Economic Development +264132,Economic Development,Economic Development +521758,Housing,Housing +499218,Housing,Housing +379891,Housing,Housing +376708,Housing,Housing +372693,Housing,Housing +258234,Housing,Housing +493526,Housing,Housing +468471,Housing,Housing +468461,Housing,Housing +450775,Housing,Housing +450774,Housing,Housing +450773,Housing,Housing +450772,Housing,Housing +450123,Housing,Housing +445604,Housing,Housing +422263,Housing,Housing +422258,Housing,Housing +417073,Housing,Housing +417071,Housing,Housing +417070,Housing,Housing +417067,Housing,Housing +407901,Housing,Housing +407900,Housing,Housing +407899,Housing,Housing +407898,Housing,Housing +407896,Housing,Housing +383855,Housing,Housing +381724,Housing,Housing +543445,Housing,Housing +543412,Housing,Housing +525430,Housing,Housing +525425,Housing,Housing +525423,Housing,Housing +525421,Housing,Housing +525419,Housing,Housing +525418,Housing,Housing +525417,Housing,Housing +525415,Housing,Housing +525413,Housing,Housing +525406,Housing,Housing +525404,Housing,Housing +258495,Consumer Issues,Consumer Issues +258490,Consumer Issues,Consumer Issues +258495,International Trade,International Trade +258490,International Trade,International Trade +496809,Consumer Issues,Consumer Issues +496808,Consumer Issues,Consumer Issues +317435,Consumer Issues,Consumer Issues +317434,Consumer Issues,Consumer Issues +317433,Consumer Issues,Consumer Issues +317432,Consumer Issues,Consumer Issues +258538,Consumer Issues,Consumer Issues +258537,Consumer Issues,Consumer Issues +258534,Consumer Issues,Consumer Issues +465294,Consumer Issues,Consumer Issues +465293,Consumer Issues,Consumer Issues +465292,Consumer Issues,Consumer Issues +465290,Consumer Issues,Consumer Issues +461090,Consumer Issues,Consumer Issues +460986,Consumer Issues,Consumer Issues +453299,Consumer Issues,Consumer Issues +453297,Consumer Issues,Consumer Issues +453296,Consumer Issues,Consumer Issues +453292,Consumer Issues,Consumer Issues +453290,Consumer Issues,Consumer Issues +446010,Consumer Issues,Consumer Issues +446009,Consumer Issues,Consumer Issues +446008,Consumer Issues,Consumer Issues +426876,Consumer Issues,Consumer Issues +426872,Consumer Issues,Consumer Issues +426870,Consumer Issues,Consumer Issues +419353,Consumer Issues,Consumer Issues +419352,Consumer Issues,Consumer Issues +419348,Consumer Issues,Consumer Issues +419346,Consumer Issues,Consumer Issues +419343,Consumer Issues,Consumer Issues +418636,Consumer Issues,Consumer Issues +395255,Consumer Issues,Consumer Issues +526736,Consumer Issues,Consumer Issues +524341,Consumer Issues,Consumer Issues +524340,Consumer Issues,Consumer Issues +524338,Consumer Issues,Consumer Issues +524337,Consumer Issues,Consumer Issues +500195,Consumer Issues,Consumer Issues +268209,Health,Health +268209,Justice and Law Enforcement,Justice and Law Enforcement +496825,Consumer Issues,Consumer Issues +496824,Consumer Issues,Consumer Issues +368609,Consumer Issues,Consumer Issues +317451,Consumer Issues,Consumer Issues +317450,Consumer Issues,Consumer Issues +317449,Consumer Issues,Consumer Issues +258554,Consumer Issues,Consumer Issues +258552,Consumer Issues,Consumer Issues +258549,Consumer Issues,Consumer Issues +446022,Consumer Issues,Consumer Issues +419360,Consumer Issues,Consumer Issues +419358,Consumer Issues,Consumer Issues +419357,Consumer Issues,Consumer Issues +419355,Consumer Issues,Consumer Issues +394210,Consumer Issues,Consumer Issues +394208,Consumer Issues,Consumer Issues +394207,Consumer Issues,Consumer Issues +524355,Consumer Issues,Consumer Issues +524354,Consumer Issues,Consumer Issues +524353,Consumer Issues,Consumer Issues +496825,International Trade,International Trade +496824,International Trade,International Trade +258554,International Trade,International Trade +258552,International Trade,International Trade +258549,International Trade,International Trade +368610,International Trade,International Trade +368609,International Trade,International Trade +368608,International Trade,International Trade +348276,International Trade,International Trade +317451,International Trade,International Trade +317450,International Trade,International Trade +317449,International Trade,International Trade +446022,International Trade,International Trade +419360,International Trade,International Trade +419358,International Trade,International Trade +419357,International Trade,International Trade +419355,International Trade,International Trade +394210,International Trade,International Trade +394208,International Trade,International Trade +394207,International Trade,International Trade +524355,International Trade,International Trade +524354,International Trade,International Trade +524353,International Trade,International Trade +394218,Consumer Issues,Consumer Issues +394214,Consumer Issues,Consumer Issues +317437,Consumer Issues,Consumer Issues +317436,Consumer Issues,Consumer Issues +258796,Consumer Issues,Consumer Issues +258556,Consumer Issues,Consumer Issues +258555,Consumer Issues,Consumer Issues +394221,Consumer Issues,Consumer Issues +348682,International Trade,International Trade +348681,International Trade,International Trade +317437,International Trade,International Trade +317436,International Trade,International Trade +258796,International Trade,International Trade +258556,International Trade,International Trade +258555,International Trade,International Trade +394221,International Trade,International Trade +394220,International Trade,International Trade +394218,International Trade,International Trade +394214,International Trade,International Trade +368607,International Trade,International Trade +368606,International Trade,International Trade +258560,Consumer Issues,Consumer Issues +258559,Consumer Issues,Consumer Issues +258560,International Trade,International Trade +258559,International Trade,International Trade +394222,Consumer Issues,Consumer Issues +258573,Consumer Issues,Consumer Issues +258572,Consumer Issues,Consumer Issues +258571,Consumer Issues,Consumer Issues +317445,Consumer Issues,Consumer Issues +317444,Consumer Issues,Consumer Issues +461002,Consumer Issues,Consumer Issues +426984,Consumer Issues,Consumer Issues +426979,Consumer Issues,Consumer Issues +426977,Consumer Issues,Consumer Issues +419372,Consumer Issues,Consumer Issues +419371,Consumer Issues,Consumer Issues +419369,Consumer Issues,Consumer Issues +419368,Consumer Issues,Consumer Issues +418641,Consumer Issues,Consumer Issues +394226,Consumer Issues,Consumer Issues +394225,Consumer Issues,Consumer Issues +419368,International Trade,International Trade +418643,International Trade,International Trade +317445,International Trade,International Trade +317444,International Trade,International Trade +258573,International Trade,International Trade +258572,International Trade,International Trade +258571,International Trade,International Trade +394226,International Trade,International Trade +394225,International Trade,International Trade +394224,International Trade,International Trade +394222,International Trade,International Trade +368601,International Trade,International Trade +368600,International Trade,International Trade +368599,International Trade,International Trade +368598,International Trade,International Trade +348269,International Trade,International Trade +348267,International Trade,International Trade +461002,International Trade,International Trade +427541,International Trade,International Trade +426984,International Trade,International Trade +426980,International Trade,International Trade +426979,International Trade,International Trade +426977,International Trade,International Trade +419372,International Trade,International Trade +419371,International Trade,International Trade +426984,Research and Development,Research and Development +426983,Research and Development,Research and Development +394467,Research and Development,Research and Development +517199,Industry,Industry +517175,Industry,Industry +258649,Industry,Industry +430916,Industry,Industry +420733,Industry,Industry +387596,Industry,Industry +543614,Industry,Industry +539675,Industry,Industry +524878,Industry,Industry +521864,Industry,Industry +521828,Industry,Industry +519308,Industry,Industry +444722,Regional Development,Regional Development +520860,Regional Development,Regional Development +465878,Regional Development,Regional Development +462165,Regional Development,Regional Development +458979,Regional Development,Regional Development +458978,Regional Development,Regional Development +458977,Regional Development,Regional Development +458976,Regional Development,Regional Development +258951,Research and Development,Research and Development +259062,Energy,Energy +259060,Energy,Energy +272874,Energy,Energy +272873,Energy,Energy +272872,Energy,Energy +272871,Energy,Energy +272869,Energy,Energy +259062,Environment,Environment +259060,Environment,Environment +272874,Environment,Environment +272873,Environment,Environment +272872,Environment,Environment +272871,Environment,Environment +272869,Environment,Environment +420717,Health,Health +259633,Employment and Training,Employment and Training +419804,Economic Development,Economic Development +416174,Economic Development,Economic Development +403291,Economic Development,Economic Development +318855,Economic Development,Economic Development +315234,Economic Development,Economic Development +315233,Economic Development,Economic Development +315216,Economic Development,Economic Development +315215,Economic Development,Economic Development +315214,Economic Development,Economic Development +315213,Economic Development,Economic Development +315211,Economic Development,Economic Development +315210,Economic Development,Economic Development +315209,Economic Development,Economic Development +310479,Economic Development,Economic Development +310472,Economic Development,Economic Development +502527,Economic Development,Economic Development +499357,Economic Development,Economic Development +428798,Economic Development,Economic Development +428793,Economic Development,Economic Development +423903,Economic Development,Economic Development +423900,Economic Development,Economic Development +423893,Economic Development,Economic Development +423889,Economic Development,Economic Development +419817,Economic Development,Economic Development +419813,Economic Development,Economic Development +259229,Taxation and Finance,Taxation and Finance +305230,Taxation and Finance,Taxation and Finance +305229,Taxation and Finance,Taxation and Finance +420504,Agriculture,Agriculture +420503,Agriculture,Agriculture +372607,Agriculture,Agriculture +370769,Agriculture,Agriculture +350089,Agriculture,Agriculture +350087,Agriculture,Agriculture +319895,Agriculture,Agriculture +497079,Agriculture,Agriculture +496786,Agriculture,Agriculture +496616,Agriculture,Agriculture +496465,Agriculture,Agriculture +496464,Agriculture,Agriculture +496462,Agriculture,Agriculture +463583,Agriculture,Agriculture +463582,Agriculture,Agriculture +463581,Agriculture,Agriculture +463580,Agriculture,Agriculture +463579,Agriculture,Agriculture +458123,Agriculture,Agriculture +458122,Agriculture,Agriculture +463580,Health,Health +463579,Health,Health +420505,Health,Health +420504,Health,Health +420503,Health,Health +463583,Health,Health +463582,Health,Health +420503,International Trade,International Trade +372607,International Trade,International Trade +370769,International Trade,International Trade +350089,International Trade,International Trade +350087,International Trade,International Trade +319895,International Trade,International Trade +497079,International Trade,International Trade +496786,International Trade,International Trade +496616,International Trade,International Trade +496464,International Trade,International Trade +496462,International Trade,International Trade +463583,International Trade,International Trade +463582,International Trade,International Trade +463581,International Trade,International Trade +463580,International Trade,International Trade +463579,International Trade,International Trade +458123,International Trade,International Trade +458122,International Trade,International Trade +420505,International Trade,International Trade +446471,Agriculture,Agriculture +446470,Agriculture,Agriculture +394068,Agriculture,Agriculture +394065,Agriculture,Agriculture +394064,Agriculture,Agriculture +394061,Agriculture,Agriculture +350065,Agriculture,Agriculture +350064,Agriculture,Agriculture +350063,Agriculture,Agriculture +350062,Agriculture,Agriculture +496538,Agriculture,Agriculture +496537,Agriculture,Agriculture +496536,Agriculture,Agriculture +496534,Agriculture,Agriculture +488755,Agriculture,Agriculture +463565,Agriculture,Agriculture +463564,Agriculture,Agriculture +463563,Agriculture,Agriculture +446471,Health,Health +446470,Health,Health +394068,Health,Health +394065,Health,Health +394064,Health,Health +394061,Health,Health +463565,Health,Health +463564,Health,Health +463563,Health,Health +496536,International Trade,International Trade +496534,International Trade,International Trade +350065,International Trade,International Trade +350064,International Trade,International Trade +350063,International Trade,International Trade +350062,International Trade,International Trade +463565,International Trade,International Trade +463564,International Trade,International Trade +463563,International Trade,International Trade +446472,International Trade,International Trade +446471,International Trade,International Trade +446470,International Trade,International Trade +394068,International Trade,International Trade +394065,International Trade,International Trade +394064,International Trade,International Trade +394061,International Trade,International Trade +496538,International Trade,International Trade +521207,Environment,Environment +430783,International Development,Développement international +430782,International Development,Développement international +302957,International Development,Développement international +282550,International Development,Développement international +374047,International Development,Développement international +372651,International Development,Développement international +369157,International Development,Développement international +369051,International Development,Développement international +366549,International Development,Développement international +348797,International Development,Développement international +312904,International Development,Développement international +310292,International Development,Développement international +419752,International Development,Développement international +412685,International Development,Développement international +407798,International Development,Développement international +405352,International Development,Développement international +402995,International Development,Développement international +400100,International Development,Développement international +400097,International Development,Développement international +387797,International Development,Développement international +517877,International Development,Développement international +515671,International Development,Développement international +515669,International Development,Développement international +511550,International Development,Développement international +498362,International Development,Développement international +498360,International Development,Développement international +492991,International Development,Développement international +487379,International Development,Développement international +484411,International Development,Développement international +484410,International Development,Développement international +473407,International Development,Développement international +473398,International Development,Développement international +472854,International Development,Développement international +467777,International Development,Développement international +467769,International Development,Développement international +455088,International Development,Développement international +455078,International Development,Développement international +455073,International Development,Développement international +455072,International Development,Développement international +451981,International Development,Développement international +449621,International Development,Développement international +445187,International Development,Développement international +505300,Industry,Industry +487690,Industry,Industry +321205,Industry,Industry +321203,Industry,Industry +321202,Industry,Industry +290989,Industry,Industry +290985,Industry,Industry +290980,Industry,Industry +290934,Industry,Industry +290933,Industry,Industry +290932,Industry,Industry +290930,Industry,Industry +286970,Industry,Industry +286953,Industry,Industry +286952,Industry,Industry +286951,Industry,Industry +286949,Industry,Industry +259290,Industry,Industry +411094,Industry,Industry +401434,Industry,Industry +382268,Industry,Industry +351280,Industry,Industry +351278,Industry,Industry +338665,Industry,Industry +338664,Industry,Industry +338659,Industry,Industry +338654,Industry,Industry +338651,Industry,Industry +338648,Industry,Industry +338595,Industry,Industry +338260,Industry,Industry +447996,Taxation and Finance,Taxation and Finance +444462,Taxation and Finance,Taxation and Finance +259291,Taxation and Finance,Taxation and Finance +429200,Taxation and Finance,Taxation and Finance +429197,Taxation and Finance,Taxation and Finance +426972,Taxation and Finance,Taxation and Finance +426970,Taxation and Finance,Taxation and Finance +371902,Taxation and Finance,Taxation and Finance +343830,Taxation and Finance,Taxation and Finance +537146,Taxation and Finance,Taxation and Finance +452950,Taxation and Finance,Taxation and Finance +405995,Labour,Labour +405993,Labour,Labour +259292,Labour,Labour +333553,Labour,Labour +515127,Labour,Labour +293909,Taxation and Finance,Taxation and Finance +259355,Taxation and Finance,Taxation and Finance +312249,Taxation and Finance,Taxation and Finance +259511,Employment and Training,Employment and Training +259506,Employment and Training,Employment and Training +268289,Employment and Training,Employment and Training +400283,Economic Development,Economic Development +459564,Energy,Energy +510462,Energy,Energy +370495,Energy,Energy +358042,Energy,Energy +358022,Energy,Energy +357933,Energy,Energy +322416,Energy,Energy +322415,Energy,Energy +314469,Energy,Energy +272671,Energy,Energy +272671,Environment,Environment +268330,Environment,Environment +381044,Environment,Environment +358042,Environment,Environment +358022,Environment,Environment +357933,Environment,Environment +341713,Environment,Environment +322416,Environment,Environment +322415,Environment,Environment +320210,International Relations,International Relations +315936,International Relations,International Relations +404376,Employment and Training,Emploi et formation +514549,Employment and Training,Emploi et formation +451706,Budget,Budget +539435,Budget,Budget +437442,Budget,Budget +434741,Budget,Budget +434740,Budget,Budget +434739,Budget,Budget +432411,Budget,Budget +432410,Budget,Budget +429055,Budget,Budget +423176,Budget,Budget +423174,Budget,Budget +421354,Budget,Budget +359689,Budget,Budget +528935,Budget,Budget +477078,Budget,Budget +327891,Climate,Climate +327890,Climate,Climate +327889,Climate,Climate +304534,Climate,Climate +304532,Climate,Climate +304531,Climate,Climate +304529,Climate,Climate +281850,Climate,Climate +281849,Climate,Climate +281829,Climate,Climate +281809,Climate,Climate +268956,Climate,Climate +268955,Climate,Climate +268954,Climate,Climate +268953,Climate,Climate +268952,Climate,Climate +268951,Climate,Climate +268950,Climate,Climate +341702,Climate,Climate +341699,Climate,Climate +341698,Climate,Climate +341690,Climate,Climate +327893,Climate,Climate +327889,Energy,Energy +304534,Energy,Energy +304532,Energy,Energy +304531,Energy,Energy +304529,Energy,Energy +281850,Energy,Energy +281849,Energy,Energy +281829,Energy,Energy +281809,Energy,Energy +268956,Energy,Energy +268955,Energy,Energy +268954,Energy,Energy +268953,Energy,Energy +268952,Energy,Energy +268951,Energy,Energy +268950,Energy,Energy +341702,Energy,Energy +341699,Energy,Energy +341698,Energy,Energy +341690,Energy,Energy +327893,Energy,Energy +327892,Energy,Energy +327891,Energy,Energy +304531,Environment,Environment +304529,Environment,Environment +268956,Environment,Environment +268955,Environment,Environment +268954,Environment,Environment +268953,Environment,Environment +268951,Environment,Environment +268950,Environment,Environment +268949,Environment,Environment +341702,Environment,Environment +341699,Environment,Environment +341698,Environment,Environment +341690,Environment,Environment +304534,Environment,Environment +341690,Industry,Industry +327890,Industry,Industry +341702,Industry,Industry +341699,Industry,Industry +341699,International Trade,International Trade +341698,International Trade,International Trade +304534,International Trade,International Trade +304532,International Trade,International Trade +268955,International Trade,International Trade +268953,International Trade,International Trade +268950,Research and Development,Research and Development +268949,Research and Development,Research and Development +341702,Research and Development,Research and Development +341699,Research and Development,Research and Development +341698,Research and Development,Research and Development +341690,Research and Development,Research and Development +281850,Research and Development,Research and Development +281849,Research and Development,Research and Development +281829,Research and Development,Research and Development +281809,Research and Development,Research and Development +268956,Research and Development,Research and Development +268954,Research and Development,Research and Development +268952,Research and Development,Research and Development +329110,Defence,Defence +329110,Government Procurement,Government Procurement +370773,Agriculture,Agriculture +370772,Agriculture,Agriculture +319896,Agriculture,Agriculture +420509,Agriculture,Agriculture +420508,Agriculture,Agriculture +420507,Agriculture,Agriculture +420506,Agriculture,Agriculture +394681,Agriculture,Agriculture +420507,Environment,Environment +420506,Environment,Environment +420509,Environment,Environment +394681,International Trade,International Trade +394680,International Trade,International Trade +370773,International Trade,International Trade +370772,International Trade,International Trade +319896,International Trade,International Trade +420509,International Trade,International Trade +420508,International Trade,International Trade +420507,International Trade,International Trade +464758,Environment,Environment +464754,Environment,Environment +262690,Environment,Environment +410001,Environment,Environment +502840,Environment,Environment +495621,Environment,Environment +491743,Environment,Environment +491655,Environment,Environment +491646,Environment,Environment +491642,Environment,Environment +491639,Environment,Environment +491637,Environment,Environment +485153,Environment,Environment +485142,Environment,Environment +292812,Economic Development,Economic Development +286149,Economic Development,Economic Development +264318,Taxation and Finance,Taxation and Finance +315922,Taxation and Finance,Taxation and Finance +278251,Environment,Environment +278251,Government Procurement,Government Procurement +447884,Health,Health +445450,Health,Health +269574,Health,Health +269563,Health,Health +443842,Health,Health +443840,Health,Health +439326,Health,Health +433515,Health,Health +431210,Health,Health +431208,Health,Health +429417,Health,Health +426429,Health,Health +426424,Health,Health +426418,Health,Health +424246,Health,Health +422717,Health,Health +418202,Health,Health +416339,Health,Health +413549,Health,Health +413539,Health,Health +413537,Health,Health +405464,Health,Health +403713,Health,Health +403711,Health,Health +394624,Health,Health +391218,Health,Health +388489,Health,Health +385490,Health,Health +381689,Health,Health +379853,Health,Health +374946,Health,Health +374942,Health,Health +374939,Health,Health +374938,Health,Health +372569,Health,Health +372567,Health,Health +372566,Health,Health +372560,Health,Health +369138,Health,Health +369132,Health,Health +366718,Health,Health +361233,Health,Health +357937,Health,Health +356405,Health,Health +356404,Health,Health +354111,Health,Health +349380,Health,Health +349378,Health,Health +343917,Health,Health +330907,Health,Health +330906,Health,Health +313100,Health,Health +543858,Health,Health +535741,Health,Health +531608,Health,Health +526663,Health,Health +526660,Health,Health +523007,Health,Health +518046,Health,Health +513009,Health,Health +508704,Health,Health +508703,Health,Health +508701,Health,Health +498799,Health,Health +495883,Health,Health +478096,Health,Health +468039,Health,Health +464562,Health,Health +452656,Health,Health +421357,Agriculture,Agriculture +421355,Agriculture,Agriculture +411066,Agriculture,Agriculture +408743,Agriculture,Agriculture +402155,Agriculture,Agriculture +400433,Agriculture,Agriculture +395112,Agriculture,Agriculture +391351,Agriculture,Agriculture +390496,Agriculture,Agriculture +387497,Agriculture,Agriculture +387496,Agriculture,Agriculture +387495,Agriculture,Agriculture +384356,Agriculture,Agriculture +380708,Agriculture,Agriculture +378020,Agriculture,Agriculture +378019,Agriculture,Agriculture +370687,Agriculture,Agriculture +364322,Agriculture,Agriculture +351577,Agriculture,Agriculture +309456,Agriculture,Agriculture +309455,Agriculture,Agriculture +309454,Agriculture,Agriculture +309453,Agriculture,Agriculture +309452,Agriculture,Agriculture +309451,Agriculture,Agriculture +531045,Agriculture,Agriculture +472131,Agriculture,Agriculture +465264,Agriculture,Agriculture +465180,Agriculture,Agriculture +451027,Agriculture,Agriculture +446376,Agriculture,Agriculture +444389,Agriculture,Agriculture +443525,Agriculture,Agriculture +443524,Agriculture,Agriculture +429904,Agriculture,Agriculture +264536,Mining,Mining +264534,Mining,Mining +264530,Mining,Mining +264527,Mining,Mining +264549,Mining,Mining +264545,Mining,Mining +264542,Mining,Mining +317668,Agriculture,Agriculture +387214,Agriculture,Agriculture +276292,Agriculture,Agriculture +271393,Agriculture,Agriculture +261809,Agriculture,Agriculture +370700,Agriculture,Agriculture +370698,Agriculture,Agriculture +353724,Agriculture,Agriculture +348776,Agriculture,Agriculture +348771,Agriculture,Agriculture +345457,Agriculture,Agriculture +375797,Economic Development,Economic Development +375796,Economic Development,Economic Development +374331,Economic Development,Economic Development +374328,Economic Development,Economic Development +374326,Economic Development,Economic Development +374321,Economic Development,Economic Development +374319,Economic Development,Economic Development +374317,Economic Development,Economic Development +370700,Economic Development,Economic Development +368879,Economic Development,Economic Development +353724,Economic Development,Economic Development +351141,Economic Development,Economic Development +348776,Economic Development,Economic Development +348771,Economic Development,Economic Development +345457,Economic Development,Economic Development +335016,Economic Development,Economic Development +323573,Economic Development,Economic Development +317668,Economic Development,Economic Development +300871,Economic Development,Economic Development +281371,Economic Development,Economic Development +281370,Economic Development,Economic Development +281369,Economic Development,Economic Development +276292,Economic Development,Economic Development +276291,Economic Development,Economic Development +276290,Economic Development,Economic Development +271397,Economic Development,Economic Development +271396,Economic Development,Economic Development +271394,Economic Development,Economic Development +266409,Economic Development,Economic Development +261809,Economic Development,Economic Development +461254,Economic Development,Economic Development +459986,Economic Development,Economic Development +404854,Economic Development,Economic Development +404853,Economic Development,Economic Development +404852,Economic Development,Economic Development +404851,Economic Development,Economic Development +399772,Economic Development,Economic Development +389627,Economic Development,Economic Development +389626,Economic Development,Economic Development +389625,Economic Development,Economic Development +389624,Economic Development,Economic Development +386604,Economic Development,Economic Development +381049,Economic Development,Economic Development +381047,Economic Development,Economic Development +381045,Economic Development,Economic Development +378463,Economic Development,Economic Development +375799,Economic Development,Economic Development +271394,Environment,Environment +266409,Environment,Environment +353724,Environment,Environment +351141,Environment,Environment +348776,Environment,Environment +335016,Environment,Environment +300871,Environment,Environment +276291,Environment,Environment +271397,Environment,Environment +423588,Fisheries,Fisheries +423587,Fisheries,Fisheries +300871,Fisheries,Fisheries +281371,Fisheries,Fisheries +281370,Fisheries,Fisheries +281369,Fisheries,Fisheries +276292,Fisheries,Fisheries +276291,Fisheries,Fisheries +276290,Fisheries,Fisheries +271397,Fisheries,Fisheries +271396,Fisheries,Fisheries +271394,Fisheries,Fisheries +271393,Fisheries,Fisheries +266409,Fisheries,Fisheries +261809,Fisheries,Fisheries +395493,Fisheries,Fisheries +393385,Fisheries,Fisheries +392091,Fisheries,Fisheries +392090,Fisheries,Fisheries +392089,Fisheries,Fisheries +392088,Fisheries,Fisheries +392087,Fisheries,Fisheries +389627,Fisheries,Fisheries +389626,Fisheries,Fisheries +389625,Fisheries,Fisheries +389624,Fisheries,Fisheries +386604,Fisheries,Fisheries +383361,Fisheries,Fisheries +381049,Fisheries,Fisheries +381047,Fisheries,Fisheries +381045,Fisheries,Fisheries +378463,Fisheries,Fisheries +375799,Fisheries,Fisheries +375798,Fisheries,Fisheries +375797,Fisheries,Fisheries +375796,Fisheries,Fisheries +374331,Fisheries,Fisheries +374328,Fisheries,Fisheries +374326,Fisheries,Fisheries +374321,Fisheries,Fisheries +374319,Fisheries,Fisheries +374317,Fisheries,Fisheries +370700,Fisheries,Fisheries +370698,Fisheries,Fisheries +368879,Fisheries,Fisheries +367082,Fisheries,Fisheries +353724,Fisheries,Fisheries +351141,Fisheries,Fisheries +348776,Fisheries,Fisheries +348771,Fisheries,Fisheries +345457,Fisheries,Fisheries +341617,Fisheries,Fisheries +341614,Fisheries,Fisheries +341603,Fisheries,Fisheries +341602,Fisheries,Fisheries +341595,Fisheries,Fisheries +335016,Fisheries,Fisheries +323573,Fisheries,Fisheries +317668,Fisheries,Fisheries +422166,Fisheries,Fisheries +422164,Fisheries,Fisheries +422160,Fisheries,Fisheries +422158,Fisheries,Fisheries +422156,Fisheries,Fisheries +422148,Fisheries,Fisheries +419389,Fisheries,Fisheries +419387,Fisheries,Fisheries +419385,Fisheries,Fisheries +419384,Fisheries,Fisheries +419382,Fisheries,Fisheries +419378,Fisheries,Fisheries +419376,Fisheries,Fisheries +417820,Fisheries,Fisheries +417819,Fisheries,Fisheries +417817,Fisheries,Fisheries +417814,Fisheries,Fisheries +415951,Fisheries,Fisheries +415947,Fisheries,Fisheries +415945,Fisheries,Fisheries +415940,Fisheries,Fisheries +415929,Fisheries,Fisheries +415928,Fisheries,Fisheries +415924,Fisheries,Fisheries +415923,Fisheries,Fisheries +415921,Fisheries,Fisheries +415917,Fisheries,Fisheries +415916,Fisheries,Fisheries +415912,Fisheries,Fisheries +415910,Fisheries,Fisheries +415908,Fisheries,Fisheries +415904,Fisheries,Fisheries +411488,Fisheries,Fisheries +411487,Fisheries,Fisheries +411486,Fisheries,Fisheries +411485,Fisheries,Fisheries +411484,Fisheries,Fisheries +411483,Fisheries,Fisheries +411482,Fisheries,Fisheries +411481,Fisheries,Fisheries +411480,Fisheries,Fisheries +409976,Fisheries,Fisheries +409975,Fisheries,Fisheries +409974,Fisheries,Fisheries +409973,Fisheries,Fisheries +409972,Fisheries,Fisheries +409971,Fisheries,Fisheries +407840,Fisheries,Fisheries +406354,Fisheries,Fisheries +404854,Fisheries,Fisheries +404853,Fisheries,Fisheries +404852,Fisheries,Fisheries +404851,Fisheries,Fisheries +402200,Fisheries,Fisheries +402199,Fisheries,Fisheries +402198,Fisheries,Fisheries +402197,Fisheries,Fisheries +402196,Fisheries,Fisheries +402193,Fisheries,Fisheries +402192,Fisheries,Fisheries +402191,Fisheries,Fisheries +399770,Fisheries,Fisheries +398508,Fisheries,Fisheries +398505,Fisheries,Fisheries +398504,Fisheries,Fisheries +395496,Fisheries,Fisheries +395495,Fisheries,Fisheries +395494,Fisheries,Fisheries +542982,Fisheries,Fisheries +542981,Fisheries,Fisheries +542979,Fisheries,Fisheries +537803,Fisheries,Fisheries +534390,Fisheries,Fisheries +534388,Fisheries,Fisheries +534385,Fisheries,Fisheries +534383,Fisheries,Fisheries +534382,Fisheries,Fisheries +534381,Fisheries,Fisheries +534379,Fisheries,Fisheries +534378,Fisheries,Fisheries +534377,Fisheries,Fisheries +531233,Fisheries,Fisheries +531231,Fisheries,Fisheries +531230,Fisheries,Fisheries +531229,Fisheries,Fisheries +531228,Fisheries,Fisheries +531227,Fisheries,Fisheries +529898,Fisheries,Fisheries +529897,Fisheries,Fisheries +529894,Fisheries,Fisheries +525790,Fisheries,Fisheries +525785,Fisheries,Fisheries +525773,Fisheries,Fisheries +525772,Fisheries,Fisheries +525765,Fisheries,Fisheries +525760,Fisheries,Fisheries +525202,Fisheries,Fisheries +521352,Fisheries,Fisheries +521351,Fisheries,Fisheries +521349,Fisheries,Fisheries +521348,Fisheries,Fisheries +521346,Fisheries,Fisheries +521344,Fisheries,Fisheries +521340,Fisheries,Fisheries +521338,Fisheries,Fisheries +521333,Fisheries,Fisheries +519831,Fisheries,Fisheries +519830,Fisheries,Fisheries +519829,Fisheries,Fisheries +519828,Fisheries,Fisheries +519827,Fisheries,Fisheries +519826,Fisheries,Fisheries +519825,Fisheries,Fisheries +519823,Fisheries,Fisheries +516675,Fisheries,Fisheries +516674,Fisheries,Fisheries +515301,Fisheries,Fisheries +515300,Fisheries,Fisheries +514423,Fisheries,Fisheries +514422,Fisheries,Fisheries +514048,Fisheries,Fisheries +514045,Fisheries,Fisheries +512301,Fisheries,Fisheries +512299,Fisheries,Fisheries +512298,Fisheries,Fisheries +510103,Fisheries,Fisheries +510102,Fisheries,Fisheries +508010,Fisheries,Fisheries +508006,Fisheries,Fisheries +508003,Fisheries,Fisheries +508001,Fisheries,Fisheries +504048,Fisheries,Fisheries +503867,Fisheries,Fisheries +503866,Fisheries,Fisheries +503865,Fisheries,Fisheries +503851,Fisheries,Fisheries +503849,Fisheries,Fisheries +501330,Fisheries,Fisheries +501328,Fisheries,Fisheries +501327,Fisheries,Fisheries +501326,Fisheries,Fisheries +501324,Fisheries,Fisheries +501322,Fisheries,Fisheries +498820,Fisheries,Fisheries +498813,Fisheries,Fisheries +498810,Fisheries,Fisheries +498804,Fisheries,Fisheries +498801,Fisheries,Fisheries +498798,Fisheries,Fisheries +498792,Fisheries,Fisheries +498791,Fisheries,Fisheries +498787,Fisheries,Fisheries +498782,Fisheries,Fisheries +498781,Fisheries,Fisheries +498776,Fisheries,Fisheries +498775,Fisheries,Fisheries +495499,Fisheries,Fisheries +495496,Fisheries,Fisheries +495495,Fisheries,Fisheries +493828,Fisheries,Fisheries +493827,Fisheries,Fisheries +493826,Fisheries,Fisheries +493825,Fisheries,Fisheries +489468,Fisheries,Fisheries +489467,Fisheries,Fisheries +489466,Fisheries,Fisheries +489464,Fisheries,Fisheries +486873,Fisheries,Fisheries +486871,Fisheries,Fisheries +485394,Fisheries,Fisheries +485393,Fisheries,Fisheries +485392,Fisheries,Fisheries +485391,Fisheries,Fisheries +485389,Fisheries,Fisheries +482015,Fisheries,Fisheries +480340,Fisheries,Fisheries +480339,Fisheries,Fisheries +477553,Fisheries,Fisheries +477552,Fisheries,Fisheries +475141,Fisheries,Fisheries +475138,Fisheries,Fisheries +472456,Fisheries,Fisheries +470113,Fisheries,Fisheries +470110,Fisheries,Fisheries +470105,Fisheries,Fisheries +470090,Fisheries,Fisheries +468060,Fisheries,Fisheries +468059,Fisheries,Fisheries +464702,Fisheries,Fisheries +462564,Fisheries,Fisheries +462563,Fisheries,Fisheries +462561,Fisheries,Fisheries +462560,Fisheries,Fisheries +462559,Fisheries,Fisheries +461260,Fisheries,Fisheries +461258,Fisheries,Fisheries +461254,Fisheries,Fisheries +460528,Fisheries,Fisheries +459986,Fisheries,Fisheries +459985,Fisheries,Fisheries +459506,Fisheries,Fisheries +459504,Fisheries,Fisheries +459503,Fisheries,Fisheries +456966,Fisheries,Fisheries +456965,Fisheries,Fisheries +455464,Fisheries,Fisheries +455461,Fisheries,Fisheries +455458,Fisheries,Fisheries +455451,Fisheries,Fisheries +455448,Fisheries,Fisheries +455446,Fisheries,Fisheries +452634,Fisheries,Fisheries +450144,Fisheries,Fisheries +450143,Fisheries,Fisheries +450141,Fisheries,Fisheries +450139,Fisheries,Fisheries +450137,Fisheries,Fisheries +447405,Fisheries,Fisheries +447404,Fisheries,Fisheries +447403,Fisheries,Fisheries +447402,Fisheries,Fisheries +447399,Fisheries,Fisheries +447398,Fisheries,Fisheries +447397,Fisheries,Fisheries +447396,Fisheries,Fisheries +447395,Fisheries,Fisheries +447394,Fisheries,Fisheries +447393,Fisheries,Fisheries +442225,Fisheries,Fisheries +442224,Fisheries,Fisheries +442222,Fisheries,Fisheries +442206,Fisheries,Fisheries +442201,Fisheries,Fisheries +442199,Fisheries,Fisheries +442195,Fisheries,Fisheries +442192,Fisheries,Fisheries +437342,Fisheries,Fisheries +437340,Fisheries,Fisheries +437339,Fisheries,Fisheries +437338,Fisheries,Fisheries +437337,Fisheries,Fisheries +437336,Fisheries,Fisheries +437335,Fisheries,Fisheries +437334,Fisheries,Fisheries +437333,Fisheries,Fisheries +437332,Fisheries,Fisheries +434715,Fisheries,Fisheries +434713,Fisheries,Fisheries +434711,Fisheries,Fisheries +434710,Fisheries,Fisheries +434705,Fisheries,Fisheries +434699,Fisheries,Fisheries +434698,Fisheries,Fisheries +434697,Fisheries,Fisheries +434696,Fisheries,Fisheries +434695,Fisheries,Fisheries +429857,Fisheries,Fisheries +429856,Fisheries,Fisheries +429855,Fisheries,Fisheries +427716,Fisheries,Fisheries +427714,Fisheries,Fisheries +427712,Fisheries,Fisheries +427711,Fisheries,Fisheries +427710,Fisheries,Fisheries +427697,Fisheries,Fisheries +427694,Fisheries,Fisheries +425031,Fisheries,Fisheries +423593,Fisheries,Fisheries +423592,Fisheries,Fisheries +423590,Fisheries,Fisheries +402191,Industry,Industry +399772,Industry,Industry +402193,Industry,Industry +261809,International Trade,International Trade +399770,International Trade,International Trade +409971,Regional Development,Regional Development +406354,Regional Development,Regional Development +300871,Regional Development,Regional Development +281370,Regional Development,Regional Development +281369,Regional Development,Regional Development +276291,Regional Development,Regional Development +276290,Regional Development,Regional Development +271397,Regional Development,Regional Development +271396,Regional Development,Regional Development +271394,Regional Development,Regional Development +404854,Regional Development,Regional Development +404853,Regional Development,Regional Development +404852,Regional Development,Regional Development +404851,Regional Development,Regional Development +402200,Regional Development,Regional Development +402199,Regional Development,Regional Development +402198,Regional Development,Regional Development +402197,Regional Development,Regional Development +402196,Regional Development,Regional Development +402193,Regional Development,Regional Development +402192,Regional Development,Regional Development +402191,Regional Development,Regional Development +395496,Regional Development,Regional Development +395495,Regional Development,Regional Development +395494,Regional Development,Regional Development +395493,Regional Development,Regional Development +392091,Regional Development,Regional Development +392090,Regional Development,Regional Development +392089,Regional Development,Regional Development +392088,Regional Development,Regional Development +392087,Regional Development,Regional Development +387214,Regional Development,Regional Development +386604,Regional Development,Regional Development +381049,Regional Development,Regional Development +381047,Regional Development,Regional Development +378463,Regional Development,Regional Development +375799,Regional Development,Regional Development +375798,Regional Development,Regional Development +375797,Regional Development,Regional Development +375796,Regional Development,Regional Development +374331,Regional Development,Regional Development +374328,Regional Development,Regional Development +374326,Regional Development,Regional Development +374321,Regional Development,Regional Development +374319,Regional Development,Regional Development +374317,Regional Development,Regional Development +353724,Regional Development,Regional Development +351141,Regional Development,Regional Development +348776,Regional Development,Regional Development +348771,Regional Development,Regional Development +375797,Research and Development,Research and Development +375796,Research and Development,Research and Development +266409,Research and Development,Research and Development +261809,Research and Development,Research and Development +375799,Research and Development,Research and Development +540674,Municipalities,Municipalities +533718,Municipalities,Municipalities +325851,Municipalities,Municipalities +275049,Economic Development,Economic Development +298551,Economic Development,Economic Development +275050,Energy,Energy +275049,Energy,Energy +298551,Energy,Energy +298550,Energy,Energy +298551,Environment,Environment +298549,Environment,Environment +275050,Environment,Environment +298551,Industry,Industry +298550,Industry,Industry +275050,Industry,Industry +275050,Research and Development,Research and Development +275049,Research and Development,Research and Development +298551,Research and Development,Research and Development +298550,Research and Development,Research and Development +280870,Agriculture,Agriculture +280869,Agriculture,Agriculture +296632,Agriculture,Agriculture +296631,Agriculture,Agriculture +280870,Economic Development,Economic Development +280869,Economic Development,Economic Development +296632,Economic Development,Economic Development +296631,Economic Development,Economic Development +280870,Industry,Industry +280869,Industry,Industry +296632,Industry,Industry +296631,Industry,Industry +296631,International Trade,International Trade +261859,Financial Institutions,Financial Institutions +261860,Industry,Industry +261861,Justice and Law Enforcement,Justice and Law Enforcement +275411,Small Business,Small Business +275591,Education,Education +275591,Industry,Industry +275556,Regional Development,Regional Development +263436,Industry,Industry +498826,Housing,Housing +491921,Housing,Housing +262020,Housing,Housing +262019,Housing,Housing +262018,Housing,Housing +262017,Housing,Housing +262016,Housing,Housing +262014,Housing,Housing +262013,Housing,Housing +261989,Housing,Housing +375890,Housing,Housing +375889,Housing,Housing +375886,Housing,Housing +373293,Housing,Housing +491910,Housing,Housing +477693,Housing,Housing +475037,Housing,Housing +469657,Housing,Housing +380141,Housing,Housing +538011,Housing,Housing +510605,Housing,Housing +272549,Health,Health +301269,Health,Health +326249,Industry,Industry +322173,Industry,Industry +281009,Industry,Industry +264333,Industry,Industry +264330,Industry,Industry +351290,Industry,Industry +351288,Industry,Industry +351286,Industry,Industry +351284,Industry,Industry +351273,Industry,Industry +351270,Industry,Industry +351268,Industry,Industry +351267,Industry,Industry +351260,Industry,Industry +348260,Industry,Industry +347919,Industry,Industry +344778,Industry,Industry +344777,Industry,Industry +344776,Industry,Industry +342764,Industry,Industry +342763,Industry,Industry +342761,Industry,Industry +342760,Industry,Industry +342759,Industry,Industry +342758,Industry,Industry +342757,Industry,Industry +342307,Industry,Industry +342306,Industry,Industry +340314,Industry,Industry +340313,Industry,Industry +339617,Industry,Industry +339216,Industry,Industry +339215,Industry,Industry +339214,Industry,Industry +339213,Industry,Industry +334609,Industry,Industry +333897,Industry,Industry +333892,Industry,Industry +333891,Industry,Industry +332460,Industry,Industry +332459,Industry,Industry +332458,Industry,Industry +332457,Industry,Industry +332090,Industry,Industry +332089,Industry,Industry +330315,Industry,Industry +460446,International Trade,International Trade +427074,International Trade,International Trade +376558,International Trade,International Trade +376557,International Trade,International Trade +262311,International Trade,International Trade +484846,International Trade,International Trade +484832,International Trade,International Trade +417288,Research and Development,Research and Development +417286,Research and Development,Research and Development +262349,Research and Development,Research and Development +330980,Research and Development,Research and Development +513354,Research and Development,Research and Development +508827,Research and Development,Research and Development +508821,Research and Development,Research and Development +504464,Research and Development,Research and Development +504459,Research and Development,Research and Development +504457,Research and Development,Research and Development +504455,Research and Development,Research and Development +504447,Research and Development,Research and Development +504437,Research and Development,Research and Development +504421,Research and Development,Research and Development +501801,Research and Development,Research and Development +494278,Research and Development,Research and Development +493530,Research and Development,Research and Development +456912,Research and Development,Research and Development +435062,Research and Development,Research and Development +434331,Research and Development,Research and Development +434330,Research and Development,Research and Development +434329,Research and Development,Research and Development +434328,Research and Development,Research and Development +434327,Research and Development,Research and Development +434326,Research and Development,Research and Development +434325,Research and Development,Research and Development +434323,Research and Development,Research and Development +433078,Research and Development,Research and Development +433077,Research and Development,Research and Development +430484,Research and Development,Research and Development +425793,Research and Development,Research and Development +425791,Research and Development,Research and Development +425789,Research and Development,Research and Development +425787,Research and Development,Research and Development +425785,Research and Development,Research and Development +425782,Research and Development,Research and Development +425778,Research and Development,Research and Development +424232,Research and Development,Research and Development +424231,Research and Development,Research and Development +422046,Research and Development,Research and Development +422025,Research and Development,Research and Development +418770,Research and Development,Research and Development +418769,Research and Development,Research and Development +262829,Industry,Industry +317990,Industry,Industry +262829,Small Business,Small Business +348436,Small Business,Small Business +479049,Climate,Climate +424845,Climate,Climate +416969,Industry,Industry +416968,Industry,Industry +341623,Industry,Industry +341620,Industry,Industry +338268,Industry,Industry +338265,Industry,Industry +275949,Industry,Industry +262709,Industry,Industry +416967,Industry,Industry +416966,Industry,Industry +413780,Industry,Industry +413777,Industry,Industry +413775,Industry,Industry +413774,Industry,Industry +413772,Industry,Industry +405779,Industry,Industry +399144,Industry,Industry +399143,Industry,Industry +399142,Industry,Industry +395695,Industry,Industry +395694,Industry,Industry +395688,Industry,Industry +395686,Industry,Industry +394894,Industry,Industry +394892,Industry,Industry +394891,Industry,Industry +394890,Industry,Industry +388824,Industry,Industry +388823,Industry,Industry +382377,Industry,Industry +382376,Industry,Industry +379037,Industry,Industry +375920,Industry,Industry +372778,Industry,Industry +372776,Industry,Industry +372772,Industry,Industry +460994,Industry,Industry +432626,Industry,Industry +429387,Industry,Industry +429379,Industry,Industry +429370,Industry,Industry +429367,Industry,Industry +429366,Industry,Industry +429365,Industry,Industry +429363,Industry,Industry +429362,Industry,Industry +429361,Industry,Industry +422935,Industry,Industry +418626,Industry,Industry +418625,Industry,Industry +274931,Economic Development,Economic Development +318729,Economic Development,Economic Development +299530,Energy,Energy +274949,Energy,Energy +274931,Energy,Energy +274949,Environment,Environment +274949,Industry,Industry +274931,Industry,Industry +274949,Research and Development,Research and Development +274931,Research and Development,Research and Development +526299,International Development,International Development +515978,International Development,International Development +388850,International Development,International Development +380802,International Development,International Development +380801,International Development,International Development +380792,International Development,International Development +380790,International Development,International Development +366340,International Development,International Development +365012,International Development,International Development +351047,International Development,International Development +349662,International Development,International Development +349661,International Development,International Development +343690,International Development,International Development +332892,International Development,International Development +312810,International Development,International Development +309582,International Development,International Development +309581,International Development,International Development +309580,International Development,International Development +309579,International Development,International Development +309578,International Development,International Development +295089,International Development,International Development +501676,International Development,International Development +501674,International Development,International Development +498492,International Development,International Development +498487,International Development,International Development +498486,International Development,International Development +498482,International Development,International Development +498478,International Development,International Development +498475,International Development,International Development +498472,International Development,International Development +498469,International Development,International Development +488693,International Development,International Development +468305,International Development,International Development +468298,International Development,International Development +450178,International Development,International Development +450155,International Development,International Development +448596,International Development,International Development +448591,International Development,International Development +429224,International Development,International Development +429208,International Development,International Development +429206,International Development,International Development +429204,International Development,International Development +429203,International Development,International Development +429191,International Development,International Development +429099,International Development,International Development +426661,International Development,International Development +421862,International Development,International Development +417857,International Development,International Development +417855,International Development,International Development +415738,International Development,International Development +412840,International Relations,International Relations +535245,International Relations,International Relations +332892,International Relations,International Relations +332890,International Relations,International Relations +326759,International Relations,International Relations +326758,International Relations,International Relations +312810,International Relations,International Relations +267611,International Relations,International Relations +267610,International Relations,International Relations +267609,International Relations,International Relations +409618,International Relations,International Relations +405165,International Relations,International Relations +404058,International Relations,International Relations +399621,International Relations,International Relations +398648,International Relations,International Relations +398623,International Relations,International Relations +393348,International Relations,International Relations +392814,International Relations,International Relations +390394,International Relations,International Relations +390392,International Relations,International Relations +388852,International Relations,International Relations +388064,International Relations,International Relations +380802,International Relations,International Relations +380801,International Relations,International Relations +380800,International Relations,International Relations +380792,International Relations,International Relations +380789,International Relations,International Relations +337508,International Relations,International Relations +526303,International Relations,International Relations +504822,International Relations,International Relations +503511,International Relations,International Relations +503066,International Relations,International Relations +503065,International Relations,International Relations +501676,International Relations,International Relations +495096,International Relations,International Relations +475983,International Relations,International Relations +475976,International Relations,International Relations +473107,International Relations,International Relations +473106,International Relations,International Relations +473105,International Relations,International Relations +473104,International Relations,International Relations +473103,International Relations,International Relations +473102,International Relations,International Relations +473101,International Relations,International Relations +473100,International Relations,International Relations +473098,International Relations,International Relations +473097,International Relations,International Relations +473095,International Relations,International Relations +473094,International Relations,International Relations +473092,International Relations,International Relations +468340,International Relations,International Relations +468339,International Relations,International Relations +468338,International Relations,International Relations +468334,International Relations,International Relations +468330,International Relations,International Relations +468327,International Relations,International Relations +468325,International Relations,International Relations +468322,International Relations,International Relations +468320,International Relations,International Relations +468319,International Relations,International Relations +468313,International Relations,International Relations +468311,International Relations,International Relations +468310,International Relations,International Relations +468289,International Relations,International Relations +461681,International Relations,International Relations +461676,International Relations,International Relations +461671,International Relations,International Relations +461660,International Relations,International Relations +459665,International Relations,International Relations +456120,International Relations,International Relations +456119,International Relations,International Relations +450155,International Relations,International Relations +450135,International Relations,International Relations +426695,International Relations,International Relations +426692,International Relations,International Relations +426688,International Relations,International Relations +426687,International Relations,International Relations +426685,International Relations,International Relations +426681,International Relations,International Relations +426673,International Relations,International Relations +426672,International Relations,International Relations +426670,International Relations,International Relations +426669,International Relations,International Relations +424703,International Relations,International Relations +423838,International Relations,International Relations +419525,International Relations,International Relations +419524,International Relations,International Relations +417852,International Relations,International Relations +415755,International Relations,International Relations +415752,International Relations,International Relations +412858,International Relations,International Relations +412856,International Relations,International Relations +386932,Budget,Budget +503343,Budget,Budget +386929,Budget,Budget +386928,Budget,Budget +386927,Budget,Budget +386923,Budget,Budget +386920,Budget,Budget +386919,Budget,Budget +386917,Budget,Budget +386913,Budget,Budget +263017,Budget,Budget +439288,Budget,Budget +439241,Budget,Budget +439238,Budget,Budget +439231,Budget,Budget +396889,Budget,Budget +396871,Budget,Budget +396868,Budget,Budget +392495,Budget,Budget +391167,Budget,Budget +391162,Budget,Budget +391157,Budget,Budget +391146,Budget,Budget +386939,Budget,Budget +272078,Housing,Housing +272076,Housing,Housing +325455,Housing,Housing +325454,Housing,Housing +503238,Research and Development,Research and Development +503237,Research and Development,Research and Development +320630,Research and Development,Research and Development +320629,Research and Development,Research and Development +311494,Research and Development,Research and Development +263785,Research and Development,Research and Development +263509,Research and Development,Research and Development +526795,Research and Development,Research and Development +526789,Research and Development,Research and Development +526788,Research and Development,Research and Development +526787,Research and Development,Research and Development +526786,Research and Development,Research and Development +526785,Research and Development,Research and Development +526784,Research and Development,Research and Development +503270,Research and Development,Research and Development +503269,Research and Development,Research and Development +503268,Research and Development,Research and Development +503267,Research and Development,Research and Development +503266,Research and Development,Research and Development +503265,Research and Development,Research and Development +503264,Research and Development,Research and Development +503262,Research and Development,Research and Development +503261,Research and Development,Research and Development +503260,Research and Development,Research and Development +503259,Research and Development,Research and Development +503258,Research and Development,Research and Development +503257,Research and Development,Research and Development +503256,Research and Development,Research and Development +503255,Research and Development,Research and Development +503254,Research and Development,Research and Development +503253,Research and Development,Research and Development +503251,Research and Development,Research and Development +503250,Research and Development,Research and Development +503249,Research and Development,Research and Development +503248,Research and Development,Research and Development +503246,Research and Development,Research and Development +503245,Research and Development,Research and Development +503244,Research and Development,Research and Development +503243,Research and Development,Research and Development +503242,Research and Development,Research and Development +503241,Research and Development,Research and Development +503240,Research and Development,Research and Development +270529,Government Procurement,Government Procurement +263751,Government Procurement,Government Procurement +464342,Budget,Budget +443732,Budget,Budget +378941,Budget,Budget +378821,Budget,Budget +378816,Budget,Budget +378814,Budget,Budget +378812,Budget,Budget +343899,Budget,Budget +309888,Budget,Budget +531313,Budget,Budget +526186,Budget,Budget +526182,Budget,Budget +522396,Budget,Budget +517848,Budget,Budget +517833,Budget,Budget +517153,Budget,Budget +517150,Budget,Budget +517146,Budget,Budget +517145,Budget,Budget +513073,Budget,Budget +510813,Budget,Budget +505291,Budget,Budget +505282,Budget,Budget +505269,Budget,Budget +505249,Budget,Budget +501884,Budget,Budget +501872,Budget,Budget +501868,Budget,Budget +501866,Budget,Budget +501857,Budget,Budget +501849,Budget,Budget +501844,Budget,Budget +495774,Budget,Budget +490121,Budget,Budget +490118,Budget,Budget +490111,Budget,Budget +490100,Budget,Budget +490099,Budget,Budget +490093,Budget,Budget +490091,Budget,Budget +490090,Budget,Budget +490082,Budget,Budget +490080,Budget,Budget +490075,Budget,Budget +487277,Budget,Budget +485084,Budget,Budget +485069,Budget,Budget +485056,Budget,Budget +485043,Budget,Budget +485028,Budget,Budget +485019,Budget,Budget +482166,Budget,Budget +482163,Budget,Budget +467497,Budget,Budget +464507,Budget,Budget +462584,Economic Development,Economic Development +462578,Economic Development,Economic Development +271719,Economic Development,Economic Development +390294,Economic Development,Economic Development +390286,Economic Development,Economic Development +390277,Economic Development,Economic Development +387675,Economic Development,Economic Development +387673,Economic Development,Economic Development +387623,Economic Development,Economic Development +384904,Economic Development,Economic Development +378941,Economic Development,Economic Development +378821,Economic Development,Economic Development +378817,Economic Development,Economic Development +378816,Economic Development,Economic Development +378812,Economic Development,Economic Development +376298,Economic Development,Economic Development +359467,Economic Development,Economic Development +340957,Economic Development,Economic Development +340955,Economic Development,Economic Development +340954,Economic Development,Economic Development +340951,Economic Development,Economic Development +309883,Economic Development,Economic Development +309875,Economic Development,Economic Development +309851,Economic Development,Economic Development +309834,Economic Development,Economic Development +309825,Economic Development,Economic Development +309818,Economic Development,Economic Development +309815,Economic Development,Economic Development +309812,Economic Development,Economic Development +309811,Economic Development,Economic Development +309809,Economic Development,Economic Development +279983,Economic Development,Economic Development +461289,Economic Development,Economic Development +448017,Economic Development,Economic Development +447935,Economic Development,Economic Development +443732,Economic Development,Economic Development +441721,Economic Development,Economic Development +441720,Economic Development,Economic Development +441719,Economic Development,Economic Development +441718,Economic Development,Economic Development +432544,Economic Development,Economic Development +432530,Economic Development,Economic Development +432501,Economic Development,Economic Development +426621,Economic Development,Economic Development +424163,Economic Development,Economic Development +424154,Economic Development,Economic Development +424152,Economic Development,Economic Development +424142,Economic Development,Economic Development +424140,Economic Development,Economic Development +424135,Economic Development,Economic Development +424108,Economic Development,Economic Development +424100,Economic Development,Economic Development +424045,Economic Development,Economic Development +424039,Economic Development,Economic Development +415377,Economic Development,Economic Development +403576,Economic Development,Economic Development +403556,Economic Development,Economic Development +390301,Economic Development,Economic Development +526203,Economic Development,Economic Development +517942,Economic Development,Economic Development +517907,Economic Development,Economic Development +517902,Economic Development,Economic Development +517836,Economic Development,Economic Development +517833,Economic Development,Economic Development +517828,Economic Development,Economic Development +517469,Economic Development,Economic Development +495774,Economic Development,Economic Development +495762,Economic Development,Economic Development +490118,Economic Development,Economic Development +490108,Economic Development,Economic Development +490107,Economic Development,Economic Development +490105,Economic Development,Economic Development +490103,Economic Development,Economic Development +490097,Economic Development,Economic Development +490096,Economic Development,Economic Development +490095,Economic Development,Economic Development +490075,Economic Development,Economic Development +487277,Economic Development,Economic Development +485084,Economic Development,Economic Development +485069,Economic Development,Economic Development +485043,Economic Development,Economic Development +485028,Economic Development,Economic Development +485019,Economic Development,Economic Development +482166,Economic Development,Economic Development +482163,Economic Development,Economic Development +470404,Economic Development,Economic Development +470377,Economic Development,Economic Development +467497,Economic Development,Economic Development +406714,Infrastructure,Infrastructure +406712,Infrastructure,Infrastructure +358149,Infrastructure,Infrastructure +340957,Infrastructure,Infrastructure +340954,Infrastructure,Infrastructure +340951,Infrastructure,Infrastructure +309875,Infrastructure,Infrastructure +309857,Infrastructure,Infrastructure +309834,Infrastructure,Infrastructure +303622,Infrastructure,Infrastructure +405569,Infrastructure,Infrastructure +405453,Infrastructure,Infrastructure +403607,Infrastructure,Infrastructure +403576,Infrastructure,Infrastructure +403551,Infrastructure,Infrastructure +403548,Infrastructure,Infrastructure +403342,Infrastructure,Infrastructure +403320,Infrastructure,Infrastructure +403297,Infrastructure,Infrastructure +400066,Infrastructure,Infrastructure +398351,Infrastructure,Infrastructure +390384,Infrastructure,Infrastructure +390371,Infrastructure,Infrastructure +390301,Infrastructure,Infrastructure +390294,Infrastructure,Infrastructure +390286,Infrastructure,Infrastructure +390156,Infrastructure,Infrastructure +387675,Infrastructure,Infrastructure +378834,Infrastructure,Infrastructure +378826,Infrastructure,Infrastructure +378821,Infrastructure,Infrastructure +378817,Infrastructure,Infrastructure +378816,Infrastructure,Infrastructure +378815,Infrastructure,Infrastructure +378814,Infrastructure,Infrastructure +378813,Infrastructure,Infrastructure +378812,Infrastructure,Infrastructure +378811,Infrastructure,Infrastructure +378808,Infrastructure,Infrastructure +378804,Infrastructure,Infrastructure +376501,Infrastructure,Infrastructure +376305,Infrastructure,Infrastructure +376296,Infrastructure,Infrastructure +366537,Infrastructure,Infrastructure +365061,Infrastructure,Infrastructure +517897,Infrastructure,Infrastructure +517889,Infrastructure,Infrastructure +517874,Infrastructure,Infrastructure +517869,Infrastructure,Infrastructure +517469,Infrastructure,Infrastructure +517141,Infrastructure,Infrastructure +505260,Infrastructure,Infrastructure +501885,Infrastructure,Infrastructure +501884,Infrastructure,Infrastructure +501872,Infrastructure,Infrastructure +498596,Infrastructure,Infrastructure +495774,Infrastructure,Infrastructure +493617,Infrastructure,Infrastructure +490121,Infrastructure,Infrastructure +490119,Infrastructure,Infrastructure +490118,Infrastructure,Infrastructure +490115,Infrastructure,Infrastructure +490113,Infrastructure,Infrastructure +490112,Infrastructure,Infrastructure +490098,Infrastructure,Infrastructure +490083,Infrastructure,Infrastructure +487277,Infrastructure,Infrastructure +485069,Infrastructure,Infrastructure +482163,Infrastructure,Infrastructure +467497,Infrastructure,Infrastructure +464502,Infrastructure,Infrastructure +464498,Infrastructure,Infrastructure +462580,Infrastructure,Infrastructure +461340,Infrastructure,Infrastructure +449343,Infrastructure,Infrastructure +448039,Infrastructure,Infrastructure +447843,Infrastructure,Infrastructure +447769,Infrastructure,Infrastructure +444982,Infrastructure,Infrastructure +441981,Infrastructure,Infrastructure +441968,Infrastructure,Infrastructure +441919,Infrastructure,Infrastructure +441892,Infrastructure,Infrastructure +441785,Infrastructure,Infrastructure +441722,Infrastructure,Infrastructure +441675,Infrastructure,Infrastructure +441629,Infrastructure,Infrastructure +438160,Infrastructure,Infrastructure +435691,Infrastructure,Infrastructure +426666,Infrastructure,Infrastructure +426407,Infrastructure,Infrastructure +424189,Infrastructure,Infrastructure +419140,Infrastructure,Infrastructure +417774,Infrastructure,Infrastructure +417773,Infrastructure,Infrastructure +417772,Infrastructure,Infrastructure +417718,Infrastructure,Infrastructure +415627,Infrastructure,Infrastructure +415619,Infrastructure,Infrastructure +415394,Infrastructure,Infrastructure +415391,Infrastructure,Infrastructure +413636,Infrastructure,Infrastructure +407548,Infrastructure,Infrastructure +441981,Regional Development,Regional Development +441785,Regional Development,Regional Development +309802,Regional Development,Regional Development +286153,Regional Development,Regional Development +387675,Regional Development,Regional Development +382240,Regional Development,Regional Development +380862,Regional Development,Regional Development +378941,Regional Development,Regional Development +378821,Regional Development,Regional Development +378816,Regional Development,Regional Development +378812,Regional Development,Regional Development +372371,Regional Development,Regional Development +372366,Regional Development,Regional Development +362337,Regional Development,Regional Development +341628,Regional Development,Regional Development +340991,Regional Development,Regional Development +340982,Regional Development,Regional Development +340958,Regional Development,Regional Development +340957,Regional Development,Regional Development +327424,Regional Development,Regional Development +432552,Regional Development,Regional Development +432545,Regional Development,Regional Development +421863,Regional Development,Regional Development +409490,Regional Development,Regional Development +409484,Regional Development,Regional Development +409479,Regional Development,Regional Development +409473,Regional Development,Regional Development +409470,Regional Development,Regional Development +409450,Regional Development,Regional Development +409448,Regional Development,Regional Development +407548,Regional Development,Regional Development +405569,Regional Development,Regional Development +394039,Regional Development,Regional Development +394036,Regional Development,Regional Development +390371,Regional Development,Regional Development +390156,Regional Development,Regional Development +517893,Regional Development,Regional Development +517892,Regional Development,Regional Development +517841,Regional Development,Regional Development +517469,Regional Development,Regional Development +517154,Regional Development,Regional Development +517152,Regional Development,Regional Development +495774,Regional Development,Regional Development +490113,Regional Development,Regional Development +487277,Regional Development,Regional Development +461307,Regional Development,Regional Development +461306,Regional Development,Regional Development +461289,Regional Development,Regional Development +449556,Regional Development,Regional Development +449550,Regional Development,Regional Development +449343,Regional Development,Regional Development +448039,Regional Development,Regional Development +447769,Regional Development,Regional Development +447765,Regional Development,Regional Development +445086,Regional Development,Regional Development +415397,Research and Development,Research and Development +415377,Research and Development,Research and Development +344889,Research and Development,Research and Development +340942,Research and Development,Research and Development +330070,Research and Development,Research and Development +309818,Research and Development,Research and Development +309815,Research and Development,Research and Development +309812,Research and Development,Research and Development +309811,Research and Development,Research and Development +309809,Research and Development,Research and Development +405459,Research and Development,Research and Development +398287,Research and Development,Research and Development +387674,Research and Development,Research and Development +387623,Research and Development,Research and Development +378817,Research and Development,Research and Development +378815,Research and Development,Research and Development +372387,Research and Development,Research and Development +372365,Research and Development,Research and Development +372354,Research and Development,Research and Development +365061,Research and Development,Research and Development +517907,Research and Development,Research and Development +517902,Research and Development,Research and Development +517836,Research and Development,Research and Development +517833,Research and Development,Research and Development +517828,Research and Development,Research and Development +517155,Research and Development,Research and Development +464342,Research and Development,Research and Development +421850,Research and Development,Research and Development +421846,Research and Development,Research and Development +421779,Research and Development,Research and Development +419168,Research and Development,Research and Development +419165,Research and Development,Research and Development +419163,Research and Development,Research and Development +419161,Research and Development,Research and Development +419152,Research and Development,Research and Development +419141,Research and Development,Research and Development +419128,Research and Development,Research and Development +419123,Research and Development,Research and Development +415402,Research and Development,Research and Development +495240,Taxation and Finance,Taxation and Finance +495234,Taxation and Finance,Taxation and Finance +335841,Taxation and Finance,Taxation and Finance +264140,Taxation and Finance,Taxation and Finance +396397,Taxation and Finance,Taxation and Finance +510677,Taxation and Finance,Taxation and Finance +510669,Taxation and Finance,Taxation and Finance +510667,Taxation and Finance,Taxation and Finance +510662,Taxation and Finance,Taxation and Finance +502342,Taxation and Finance,Taxation and Finance +502322,Taxation and Finance,Taxation and Finance +502224,Taxation and Finance,Taxation and Finance +264477,Agriculture,Agriculture +264476,Agriculture,Agriculture +296572,Agriculture,Agriculture +268472,Agriculture,Agriculture +268471,Agriculture,Agriculture +264480,Agriculture,Agriculture +264479,Agriculture,Agriculture +264477,International Trade,International Trade +264476,International Trade,International Trade +296572,International Trade,International Trade +268472,International Trade,International Trade +268471,International Trade,International Trade +264480,International Trade,International Trade +264479,International Trade,International Trade +424144,Immigration,Immigration +406966,Immigration,Immigration +366420,Immigration,Immigration +335933,Immigration,Immigration +333200,Immigration,Immigration +333198,Immigration,Immigration +319239,Immigration,Immigration +287059,Immigration,Immigration +264377,Immigration,Immigration +502682,Immigration,Immigration +464547,Immigration,Immigration +452085,Immigration,Immigration +448095,Immigration,Immigration +448092,Immigration,Immigration +276806,Immigration,Immigration +264379,Immigration,Immigration +424214,Immigration,Immigration +424141,Immigration,Immigration +406964,Immigration,Immigration +369546,Immigration,Immigration +366426,Immigration,Immigration +366424,Immigration,Immigration +366423,Immigration,Immigration +366422,Immigration,Immigration +336107,Immigration,Immigration +303511,Immigration,Immigration +296230,Immigration,Immigration +291170,Immigration,Immigration +286229,Industry,Industry +269591,Industry,Industry +264388,Industry,Industry +341689,Industry,Industry +523607,Official Languages,Langues officielles +516799,Official Languages,Langues officielles +375949,Official Languages,Langues officielles +375946,Official Languages,Langues officielles +375381,Official Languages,Langues officielles +298452,Official Languages,Langues officielles +298451,Official Languages,Langues officielles +291791,Official Languages,Langues officielles +272630,Official Languages,Langues officielles +496611,Official Languages,Langues officielles +395134,Official Languages,Langues officielles +390125,Official Languages,Langues officielles +390123,Official Languages,Langues officielles +390120,Official Languages,Langues officielles +384549,Official Languages,Langues officielles +380567,Official Languages,Langues officielles +534372,Official Languages,Langues officielles +534368,Official Languages,Langues officielles +513340,Government Procurement,Government Procurement +511467,Government Procurement,Government Procurement +277419,Government Procurement,Government Procurement +264494,Government Procurement,Government Procurement +264483,Government Procurement,Government Procurement +379042,Government Procurement,Government Procurement +378779,Government Procurement,Government Procurement +375041,Government Procurement,Government Procurement +372396,Government Procurement,Government Procurement +362264,Government Procurement,Government Procurement +362263,Government Procurement,Government Procurement +361173,Government Procurement,Government Procurement +360014,Government Procurement,Government Procurement +357765,Government Procurement,Government Procurement +353933,Government Procurement,Government Procurement +351276,Government Procurement,Government Procurement +351200,Government Procurement,Government Procurement +351193,Government Procurement,Government Procurement +351186,Government Procurement,Government Procurement +351181,Government Procurement,Government Procurement +337941,Government Procurement,Government Procurement +331751,Government Procurement,Government Procurement +330050,Government Procurement,Government Procurement +319675,Government Procurement,Government Procurement +508516,Government Procurement,Government Procurement +433773,Government Procurement,Government Procurement +431010,Government Procurement,Government Procurement +429503,Government Procurement,Government Procurement +429501,Government Procurement,Government Procurement +414086,Government Procurement,Government Procurement +414085,Government Procurement,Government Procurement +410094,Government Procurement,Government Procurement +410093,Government Procurement,Government Procurement +410092,Government Procurement,Government Procurement +408282,Government Procurement,Government Procurement +408281,Government Procurement,Government Procurement +408280,Government Procurement,Government Procurement +406282,Government Procurement,Government Procurement +404179,Government Procurement,Government Procurement +404175,Government Procurement,Government Procurement +404173,Government Procurement,Government Procurement +401044,Government Procurement,Government Procurement +397127,Government Procurement,Government Procurement +397126,Government Procurement,Government Procurement +397122,Government Procurement,Government Procurement +397117,Government Procurement,Government Procurement +397114,Government Procurement,Government Procurement +394586,Government Procurement,Government Procurement +394576,Government Procurement,Government Procurement +264517,Employment and Training,Employment and Training +264513,Employment and Training,Employment and Training +264527,Industry,Industry +264534,Industry,Industry +264530,Industry,Industry +264545,Industry,Industry +264542,Industry,Industry +264539,Industry,Industry +343849,Budget,Budget +284989,Budget,Budget +264555,Budget,Budget +264553,Budget,Budget +264546,Budget,Budget +264538,Budget,Budget +349343,Budget,Budget +349342,Budget,Budget +428892,Economic Development,Economic Development +423698,Economic Development,Economic Development +304472,Economic Development,Economic Development +269653,Economic Development,Economic Development +264561,Economic Development,Economic Development +416940,Economic Development,Economic Development +416939,Economic Development,Economic Development +409656,Economic Development,Economic Development +409653,Economic Development,Economic Development +409641,Economic Development,Economic Development +406573,Economic Development,Economic Development +405218,Economic Development,Economic Development +391579,Economic Development,Economic Development +391578,Economic Development,Economic Development +383820,Economic Development,Economic Development +540165,Economic Development,Economic Development +540154,Economic Development,Economic Development +540140,Economic Development,Economic Development +538298,Economic Development,Economic Development +526342,Economic Development,Economic Development +522970,Economic Development,Economic Development +519756,Economic Development,Economic Development +517648,Economic Development,Economic Development +517628,Economic Development,Economic Development +515737,Economic Development,Economic Development +502319,Economic Development,Economic Development +502317,Economic Development,Economic Development +502306,Economic Development,Economic Development +502304,Economic Development,Economic Development +502297,Economic Development,Economic Development +498987,Economic Development,Economic Development +490556,Economic Development,Economic Development +488228,Economic Development,Economic Development +488227,Economic Development,Economic Development +477562,Economic Development,Economic Development +475092,Economic Development,Economic Development +472772,Economic Development,Economic Development +464957,Economic Development,Economic Development +464941,Economic Development,Economic Development +464919,Economic Development,Economic Development +461317,Economic Development,Economic Development +461314,Economic Development,Economic Development +460489,Economic Development,Economic Development +460488,Economic Development,Economic Development +460481,Economic Development,Economic Development +460480,Economic Development,Economic Development +460158,Economic Development,Economic Development +460155,Economic Development,Economic Development +460150,Economic Development,Economic Development +459749,Economic Development,Economic Development +457751,Economic Development,Economic Development +457748,Economic Development,Economic Development +457747,Economic Development,Economic Development +454751,Economic Development,Economic Development +454741,Economic Development,Economic Development +452602,Economic Development,Economic Development +445565,Economic Development,Economic Development +445564,Economic Development,Economic Development +435902,Economic Development,Economic Development +494731,Employment and Training,Employment and Training +490068,Employment and Training,Employment and Training +369011,Employment and Training,Employment and Training +369009,Employment and Training,Employment and Training +369007,Employment and Training,Employment and Training +366694,Employment and Training,Employment and Training +365230,Employment and Training,Employment and Training +365229,Employment and Training,Employment and Training +347227,Employment and Training,Employment and Training +335699,Employment and Training,Employment and Training +321892,Employment and Training,Employment and Training +264564,Employment and Training,Employment and Training +390817,Employment and Training,Employment and Training +372508,Employment and Training,Employment and Training +537836,Employment and Training,Employment and Training +534232,Employment and Training,Employment and Training +528983,Employment and Training,Employment and Training +522467,Employment and Training,Employment and Training +497891,Employment and Training,Employment and Training +439045,Economic Development,Economic Development +432723,Economic Development,Economic Development +335705,Economic Development,Economic Development +335696,Economic Development,Economic Development +335694,Economic Development,Economic Development +321899,Economic Development,Economic Development +321895,Economic Development,Economic Development +315772,Economic Development,Economic Development +290817,Economic Development,Economic Development +264564,Economic Development,Economic Development +406021,Economic Development,Economic Development +400804,Economic Development,Economic Development +399044,Economic Development,Economic Development +374968,Economic Development,Economic Development +374813,Economic Development,Economic Development +534197,Economic Development,Economic Development +512622,Economic Development,Economic Development +510298,Economic Development,Economic Development +500624,Economic Development,Economic Development +498717,Economic Development,Economic Development +497891,Economic Development,Economic Development +494749,Economic Development,Economic Development +481537,Economic Development,Economic Development +454228,Economic Development,Economic Development +454213,Economic Development,Economic Development +354841,Economic Development,Economic Development +354840,Economic Development,Economic Development +354839,Economic Development,Economic Development +354838,Economic Development,Economic Development +354837,Economic Development,Economic Development +354836,Economic Development,Economic Development +352530,Economic Development,Economic Development +352529,Economic Development,Economic Development +352528,Economic Development,Economic Development +352527,Economic Development,Economic Development +352526,Economic Development,Economic Development +352525,Economic Development,Economic Development +352524,Economic Development,Economic Development +352523,Economic Development,Economic Development +352522,Economic Development,Economic Development +352521,Economic Development,Economic Development +352520,Economic Development,Economic Development +351940,Economic Development,Economic Development +349821,Economic Development,Economic Development +297829,Economic Development,Economic Development +264809,Economic Development,Economic Development +427386,Economic Development,Economic Development +427385,Economic Development,Economic Development +427384,Economic Development,Economic Development +427382,Economic Development,Economic Development +427379,Economic Development,Economic Development +427378,Economic Development,Economic Development +427377,Economic Development,Economic Development +427375,Economic Development,Economic Development +427373,Economic Development,Economic Development +427370,Economic Development,Economic Development +427368,Economic Development,Economic Development +423383,Economic Development,Economic Development +423381,Economic Development,Economic Development +423379,Economic Development,Economic Development +423378,Economic Development,Economic Development +423377,Economic Development,Economic Development +423376,Economic Development,Economic Development +423374,Economic Development,Economic Development +423373,Economic Development,Economic Development +423372,Economic Development,Economic Development +411005,Economic Development,Economic Development +408502,Economic Development,Economic Development +408498,Economic Development,Economic Development +408496,Economic Development,Economic Development +399757,Economic Development,Economic Development +398407,Economic Development,Economic Development +390705,Economic Development,Economic Development +390681,Economic Development,Economic Development +390679,Economic Development,Economic Development +390678,Economic Development,Economic Development +390676,Economic Development,Economic Development +390665,Economic Development,Economic Development +390661,Economic Development,Economic Development +390645,Economic Development,Economic Development +388603,Economic Development,Economic Development +385923,Economic Development,Economic Development +385919,Economic Development,Economic Development +379556,Economic Development,Economic Development +379550,Economic Development,Economic Development +379548,Economic Development,Economic Development +379544,Economic Development,Economic Development +379542,Economic Development,Economic Development +379539,Economic Development,Economic Development +379530,Economic Development,Economic Development +378526,Economic Development,Economic Development +378525,Economic Development,Economic Development +378522,Economic Development,Economic Development +378521,Economic Development,Economic Development +378520,Economic Development,Economic Development +378519,Economic Development,Economic Development +378517,Economic Development,Economic Development +378515,Economic Development,Economic Development +378514,Economic Development,Economic Development +378513,Economic Development,Economic Development +378511,Economic Development,Economic Development +378510,Economic Development,Economic Development +378508,Economic Development,Economic Development +378498,Economic Development,Economic Development +378495,Economic Development,Economic Development +378494,Economic Development,Economic Development +374419,Economic Development,Economic Development +373216,Economic Development,Economic Development +368133,Economic Development,Economic Development +368131,Economic Development,Economic Development +368130,Economic Development,Economic Development +364949,Economic Development,Economic Development +354853,Economic Development,Economic Development +354852,Economic Development,Economic Development +354845,Economic Development,Economic Development +354844,Economic Development,Economic Development +354843,Economic Development,Economic Development +354842,Economic Development,Economic Development +498976,Economic Development,Economic Development +486012,Economic Development,Economic Development +486005,Economic Development,Economic Development +474051,Economic Development,Economic Development +474048,Economic Development,Economic Development +454230,Economic Development,Economic Development +322891,Government Procurement,Government Procurement +314329,Agriculture,Agriculture +297969,Agriculture,Agriculture +279289,Agriculture,Agriculture +268130,Agriculture,Agriculture +465917,Agriculture,Agriculture +465916,Agriculture,Agriculture +465915,Agriculture,Agriculture +440220,Agriculture,Agriculture +440219,Agriculture,Agriculture +420933,Agriculture,Agriculture +420932,Agriculture,Agriculture +395525,Agriculture,Agriculture +395522,Agriculture,Agriculture +368789,Agriculture,Agriculture +368788,Agriculture,Agriculture +325330,Agriculture,Agriculture +325329,Agriculture,Agriculture +395522,Employment and Training,Employment and Training +330175,Taxation and Finance,Taxation and Finance +265091,Taxation and Finance,Taxation and Finance +339851,Economic Development,Economic Development +339850,Economic Development,Economic Development +339849,Economic Development,Economic Development +322752,Economic Development,Economic Development +322751,Economic Development,Economic Development +399340,Economic Development,Economic Development +378874,Economic Development,Economic Development +378871,Economic Development,Economic Development +378870,Economic Development,Economic Development +378863,Economic Development,Economic Development +458082,Economic Development,Economic Development +457918,Economic Development,Economic Development +454253,Economic Development,Economic Development +454252,Economic Development,Economic Development +454251,Economic Development,Economic Development +454248,Economic Development,Economic Development +454244,Economic Development,Economic Development +453993,Economic Development,Economic Development +453990,Economic Development,Economic Development +453686,Economic Development,Economic Development +453685,Economic Development,Economic Development +453683,Economic Development,Economic Development +444476,Economic Development,Economic Development +444475,Economic Development,Economic Development +439900,Economic Development,Economic Development +437291,Economic Development,Economic Development +437289,Economic Development,Economic Development +433535,Economic Development,Economic Development +433533,Economic Development,Economic Development +433528,Economic Development,Economic Development +433525,Economic Development,Economic Development +433524,Economic Development,Economic Development +433520,Economic Development,Economic Development +420403,Economic Development,Economic Development +420402,Economic Development,Economic Development +420401,Economic Development,Economic Development +420400,Economic Development,Economic Development +420399,Economic Development,Economic Development +418584,Economic Development,Economic Development +418574,Economic Development,Economic Development +418573,Economic Development,Economic Development +410812,Economic Development,Economic Development +410811,Economic Development,Economic Development +410808,Economic Development,Economic Development +408521,Economic Development,Economic Development +408520,Economic Development,Economic Development +408519,Economic Development,Economic Development +408521,Education,Education +408520,Education,Education +301509,Education,Education +408519,Education,Education +399345,Education,Education +399344,Education,Education +399342,Education,Education +399341,Education,Education +399340,Education,Education +399339,Education,Education +399338,Education,Education +399337,Education,Education +399336,Education,Education +399329,Education,Education +378877,Education,Education +378876,Education,Education +378874,Education,Education +378871,Education,Education +378870,Education,Education +378863,Education,Education +373431,Education,Education +373424,Education,Education +373423,Education,Education +373421,Education,Education +373416,Education,Education +339852,Education,Education +339851,Education,Education +339850,Education,Education +339849,Education,Education +322752,Education,Education +322751,Education,Education +460395,Education,Education +458187,Education,Education +458082,Education,Education +457918,Education,Education +454253,Education,Education +454252,Education,Education +454251,Education,Education +454248,Education,Education +454244,Education,Education +454243,Education,Education +453993,Education,Education +453990,Education,Education +453686,Education,Education +453685,Education,Education +453683,Education,Education +453682,Education,Education +444475,Education,Education +439900,Education,Education +437291,Education,Education +437289,Education,Education +433535,Education,Education +433528,Education,Education +433525,Education,Education +433524,Education,Education +433520,Education,Education +420403,Education,Education +420402,Education,Education +420401,Education,Education +420400,Education,Education +420399,Education,Education +418584,Education,Education +418574,Education,Education +418573,Education,Education +418493,Education,Education +410812,Education,Education +410811,Education,Education +453686,Employment and Training,Employment and Training +453685,Employment and Training,Employment and Training +339852,Employment and Training,Employment and Training +339851,Employment and Training,Employment and Training +339850,Employment and Training,Employment and Training +339849,Employment and Training,Employment and Training +322752,Employment and Training,Employment and Training +322751,Employment and Training,Employment and Training +453683,Employment and Training,Employment and Training +453682,Employment and Training,Employment and Training +444476,Employment and Training,Employment and Training +444475,Employment and Training,Employment and Training +439900,Employment and Training,Employment and Training +437291,Employment and Training,Employment and Training +437289,Employment and Training,Employment and Training +433535,Employment and Training,Employment and Training +433533,Employment and Training,Employment and Training +433528,Employment and Training,Employment and Training +433525,Employment and Training,Employment and Training +433524,Employment and Training,Employment and Training +433520,Employment and Training,Employment and Training +420403,Employment and Training,Employment and Training +420402,Employment and Training,Employment and Training +420401,Employment and Training,Employment and Training +420400,Employment and Training,Employment and Training +418584,Employment and Training,Employment and Training +418574,Employment and Training,Employment and Training +418573,Employment and Training,Employment and Training +418493,Employment and Training,Employment and Training +410812,Employment and Training,Employment and Training +410811,Employment and Training,Employment and Training +410808,Employment and Training,Employment and Training +408519,Employment and Training,Employment and Training +399329,Employment and Training,Employment and Training +460395,Employment and Training,Employment and Training +458082,Employment and Training,Employment and Training +457918,Employment and Training,Employment and Training +454253,Employment and Training,Employment and Training +454252,Employment and Training,Employment and Training +454248,Employment and Training,Employment and Training +454244,Employment and Training,Employment and Training +454243,Employment and Training,Employment and Training +453993,Employment and Training,Employment and Training +420400,Energy,Energy +420399,Energy,Energy +373424,Energy,Energy +373423,Energy,Energy +339852,Energy,Energy +339851,Energy,Energy +339850,Energy,Energy +339849,Energy,Energy +437289,Energy,Energy +433533,Energy,Energy +433528,Energy,Energy +433520,Energy,Energy +420403,Energy,Energy +420402,Energy,Energy +433533,Environment,Environment +433528,Environment,Environment +339851,Environment,Environment +322752,Environment,Environment +322751,Environment,Environment +458082,Environment,Environment +457918,Environment,Environment +444476,Environment,Environment +458082,Fisheries,Fisheries +457918,Fisheries,Fisheries +322752,Fisheries,Fisheries +322751,Fisheries,Fisheries +420401,Fisheries,Fisheries +399336,Fisheries,Fisheries +339851,Fisheries,Fisheries +339850,Fisheries,Fisheries +458082,Forestry,Forestry +457918,Forestry,Forestry +322752,Forestry,Forestry +453685,Government Procurement,Government Procurement +453683,Government Procurement,Government Procurement +322752,Government Procurement,Government Procurement +322751,Government Procurement,Government Procurement +458082,Government Procurement,Government Procurement +457918,Government Procurement,Government Procurement +418573,Health,Health +418493,Health,Health +339852,Health,Health +339851,Health,Health +339850,Health,Health +339849,Health,Health +322752,Health,Health +458187,Health,Health +458082,Health,Health +457918,Health,Health +420403,Health,Health +420402,Health,Health +420401,Health,Health +420400,Health,Health +420399,Health,Health +433525,Industry,Industry +420401,Industry,Industry +378874,Industry,Industry +378871,Industry,Industry +378870,Industry,Industry +378863,Industry,Industry +373421,Industry,Industry +322752,Industry,Industry +322751,Industry,Industry +458082,Industry,Industry +457918,Industry,Industry +454248,Industry,Industry +453685,Industry,Industry +453683,Infrastructure,Infrastructure +444475,Infrastructure,Infrastructure +378874,Infrastructure,Infrastructure +378871,Infrastructure,Infrastructure +378863,Infrastructure,Infrastructure +373424,Infrastructure,Infrastructure +373423,Infrastructure,Infrastructure +373421,Infrastructure,Infrastructure +373416,Infrastructure,Infrastructure +339852,Infrastructure,Infrastructure +339851,Infrastructure,Infrastructure +339850,Infrastructure,Infrastructure +339849,Infrastructure,Infrastructure +322752,Infrastructure,Infrastructure +322751,Infrastructure,Infrastructure +301509,Infrastructure,Infrastructure +439900,Infrastructure,Infrastructure +433535,Infrastructure,Infrastructure +433533,Infrastructure,Infrastructure +433528,Infrastructure,Infrastructure +433525,Infrastructure,Infrastructure +420403,Infrastructure,Infrastructure +420402,Infrastructure,Infrastructure +420401,Infrastructure,Infrastructure +420400,Infrastructure,Infrastructure +420399,Infrastructure,Infrastructure +408521,Infrastructure,Infrastructure +453990,Infrastructure,Infrastructure +453686,Infrastructure,Infrastructure +437289,International Development,International Development +433524,International Development,International Development +408519,International Development,International Development +399340,International Development,International Development +458082,International Development,International Development +457918,International Development,International Development +454253,International Development,International Development +454252,International Development,International Development +454251,International Development,International Development +444476,International Development,International Development +439900,International Development,International Development +408521,Regional Development,Regional Development +408520,Regional Development,Regional Development +322752,Regional Development,Regional Development +322751,Regional Development,Regional Development +339851,Regional Development,Regional Development +339850,Regional Development,Regional Development +339849,Regional Development,Regional Development +408519,Regional Development,Regional Development +399338,Regional Development,Regional Development +399329,Regional Development,Regional Development +378877,Regional Development,Regional Development +378874,Regional Development,Regional Development +378871,Regional Development,Regional Development +458187,Regional Development,Regional Development +458082,Regional Development,Regional Development +457918,Regional Development,Regional Development +454253,Regional Development,Regional Development +454252,Regional Development,Regional Development +454251,Regional Development,Regional Development +454248,Regional Development,Regional Development +454244,Regional Development,Regional Development +453993,Regional Development,Regional Development +453686,Regional Development,Regional Development +453685,Regional Development,Regional Development +453683,Regional Development,Regional Development +453682,Regional Development,Regional Development +444476,Regional Development,Regional Development +444475,Regional Development,Regional Development +439900,Regional Development,Regional Development +437289,Regional Development,Regional Development +433535,Regional Development,Regional Development +433533,Regional Development,Regional Development +433528,Regional Development,Regional Development +433525,Regional Development,Regional Development +433524,Regional Development,Regional Development +433520,Regional Development,Regional Development +420403,Regional Development,Regional Development +420402,Regional Development,Regional Development +420401,Regional Development,Regional Development +420400,Regional Development,Regional Development +420399,Regional Development,Regional Development +276689,Health,Health +323552,International Trade,International Trade +268834,Energy,Energy +268834,Environment,Environment +268834,International Trade,International Trade +257014,Internal Trade,Internal Trade +257014,International Development,International Development +408961,Health,Health +355507,Infrastructure,Infrastructure +514721,Environment,Environment +499559,Fisheries,Fisheries +257569,Official Languages,Langues officielles +257569,Education,Education +377248,Research and Development,Research and Development +258050,Budget,Budget +269049,Agriculture,Agriculture +258011,Regional Development,Regional Development +258011,Research and Development,Research and Development +257791,Consumer Issues,Consumer Issues +282653,Defence,Defence +475343,Climate,Climate +258550,Economic Development,Economic Development +525401,Housing,Housing +258499,Consumer Issues,Consumer Issues +258499,International Trade,International Trade +496810,Consumer Issues,Consumer Issues +272609,Transportation,Transportation +318058,Health,Health +318058,Security,Security +318058,Justice and Law Enforcement,Justice and Law Enforcement +496826,Consumer Issues,Consumer Issues +496826,International Trade,International Trade +394220,Consumer Issues,Consumer Issues +368605,International Trade,International Trade +258569,Consumer Issues,Consumer Issues +258569,International Trade,International Trade +258569,Research and Development,Research and Development +394224,Consumer Issues,Consumer Issues +419369,International Trade,International Trade +258573,Research and Development,Research and Development +258577,Research and Development,Research and Development +517209,Industry,Industry +458978,Industry,Industry +448740,Regional Development,Regional Development +259472,Agriculture,Agriculture +274890,Defence,Defence +274890,Government Procurement,Government Procurement +274890,Industry,Industry +258969,Research and Development,Research and Development +259063,Energy,Energy +259063,Environment,Environment +315902,Health,Health +265509,Employment and Training,Employment and Training +259635,Employment and Training,Employment and Training +419810,Economic Development,Economic Development +464909,Regional Development,Regional Development +259950,Taxation and Finance,Taxation and Finance +420505,Agriculture,Agriculture +463581,Health,Health +420504,International Trade,International Trade +446472,Agriculture,Agriculture +463563,Environment,Environment +446472,Health,Health +496537,International Trade,International Trade +521208,Environment,Environment +438014,International Development,Développement international +512680,Industry,Industry +447999,Taxation and Finance,Taxation and Finance +406340,Labour,Labour +293910,Taxation and Finance,Taxation and Finance +259435,Infrastructure,Infrastructure +259512,Employment and Training,Employment and Training +272671,Economic Development,Economic Development +268330,Energy,Energy +314469,Environment,Environment +259609,Energy,Energy +325649,International Relations,International Relations +429049,Employment and Training,Emploi et formation +456773,Budget,Budget +264910,Immigration,Immigration +327892,Climate,Climate +327890,Energy,Energy +304532,Environment,Environment +341698,Industry,Industry +341702,International Trade,International Trade +268951,Research and Development,Research and Development +341092,Defence,Defence +341092,Government Procurement,Government Procurement +394680,Agriculture,Agriculture +420508,Environment,Environment +420506,International Trade,International Trade +260249,Consumer Issues,Consumer Issues +260249,Economic Development,Economic Development +264649,Mining,Mining +478044,Environment,Environment +300471,Economic Development,Economic Development +292812,Taxation and Finance,Taxation and Finance +281169,Taxation and Finance,Taxation and Finance +278252,Environment,Environment +278252,Government Procurement,Government Procurement +260829,Immigration,Immigration +283690,Taxation and Finance,Taxation and Finance +450208,Health,Health +427137,Agriculture,Agriculture +264539,Mining,Mining +323573,Agriculture,Agriculture +375798,Economic Development,Economic Development +370698,Employment and Training,Employment and Training +271396,Environment,Environment +423589,Fisheries,Fisheries +402192,Industry,Industry +271393,International Trade,International Trade +335016,Regional Development,Regional Development +375798,Research and Development,Research and Development +325850,Municipalities,Municipalities +261182,International Relations,International Relations +261206,Defence,Defence +275050,Economic Development,Economic Development +298549,Energy,Energy +275049,Environment,Environment +275049,Industry,Industry +298549,Research and Development,Research and Development +280871,Agriculture,Agriculture +280871,Economic Development,Economic Development +280871,Industry,Industry +296632,International Trade,International Trade +306469,Financial Institutions,Financial Institutions +261862,Industry,Industry +306470,Justice and Law Enforcement,Justice and Law Enforcement +300609,Small Business,Small Business +275595,Education,Education +275595,Government Procurement,Government Procurement +275594,Industry,Industry +275591,Regional Development,Regional Development +322340,Immigration,Immigration +263450,Industry,Industry +426187,Transportation,Transportation +498835,Housing,Housing +283529,Health,Health +272549,Justice and Law Enforcement,Justice and Law Enforcement +326929,Industry,Industry +463461,International Trade,International Trade +417329,Research and Development,Research and Development +262832,Industry,Industry +262832,Small Business,Small Business +479050,Climate,Climate +262409,Immigration,Immigration +416970,Industry,Industry +274949,Economic Development,Economic Development +318729,Energy,Energy +274931,Environment,Environment +299530,Industry,Industry +299530,Research and Development,Research and Development +535245,International Development,International Development +412841,International Relations,International Relations +386938,Budget,Budget +263209,Justice and Law Enforcement,Justice and Law Enforcement +325453,Housing,Housing +503239,Research and Development,Research and Development +263591,Employment and Training,Employment and Training +272169,Government Procurement,Government Procurement +263830,Energy,Energy +271969,Taxation and Finance,Taxation and Finance +464346,Budget,Budget +464342,Economic Development,Economic Development +406718,Infrastructure,Infrastructure +444982,Regional Development,Regional Development +415399,Research and Development,Research and Development +495245,Taxation and Finance,Taxation and Finance +271078,Health,Health +264478,Agriculture,Agriculture +264478,International Trade,International Trade +424212,Immigration,Immigration +452090,Immigration,Immigration +302129,Industry,Industry +530218,Official Languages,Langues officielles +263692,Defence,Defence +522890,Government Procurement,Government Procurement +264518,Employment and Training,Employment and Training +264549,Industry,Industry +264536,Industry,Industry +343853,Budget,Budget +428893,Economic Development,Economic Development +494837,Employment and Training,Employment and Training +457829,Economic Development,Economic Development +454229,Economic Development,Economic Development +350235,Economic Development,Economic Development +322889,Government Procurement,Government Procurement +314330,Agriculture,Agriculture +395525,Employment and Training,Employment and Training +279289,Health,Health +338982,Taxation and Finance,Taxation and Finance +339852,Economic Development,Economic Development +410808,Education,Education +453990,Employment and Training,Employment and Training +420401,Energy,Energy +433535,Environment,Environment +339849,Fisheries,Fisheries +322751,Forestry,Forestry +453686,Government Procurement,Government Procurement +418574,Health,Health +453683,Industry,Industry +453685,Infrastructure,Infrastructure +437291,International Development,International Development +433520,Mining,Mining +410808,Regional Development,Regional Development +420400,Research and Development,Research and Development +458187,Taxation and Finance,Taxation and Finance +457918,Tourism,Tourism +287689,Agriculture,Agriculture +287689,Internal Trade,Commerce intérieur +287689,International Trade,Commerce international +300289,Industry,Industry +324538,Agriculture,Agriculture +265210,Health,Health +386842,International Trade,International Trade +333832,Employment and Training,Employment and Training +316709,Employment and Training,Employment and Training +324932,Government Procurement,Government Procurement +266769,Infrastructure,Infrastructure +266769,International Trade,International Trade +266769,Security,Security +266769,Transportation,Transportation +310998,International Trade,International Trade +274829,Security,Security +510968,Economic Development,Economic Development +325849,Employment and Training,Employment and Training +373324,Small Business,Small Business +265671,Justice and Law Enforcement,Justice and Law Enforcement +270915,Transportation,Transportation +339429,Taxation and Finance,Taxation and Finance +355506,Industry,Industry +321210,Intellectual Property,Intellectual Property +316769,Small Business,Small Business +266011,Industry,Industry +266029,Industry,Industry +266071,Economic Development,Economic Development +465219,Budget,Budget +350406,Agriculture,Agriculture +325729,Economic Development,Economic Development +274829,Infrastructure,Infrastructure +310998,Transportation,Transportation +273955,Consumer Issues,Consumer Issues +273955,Economic Development,Economic Development +273955,Internal Trade,Internal Trade +273955,Small Business,Small Business +463448,Budget,Budget +266750,Economic Development,Economic Development +368862,Economic Development,Economic Development +274850,Infrastructure,Infrastructure +274850,International Trade,International Trade +274850,Security,Security +368862,Transportation,Transportation +266771,Infrastructure,Infrastructure +266771,International Trade,International Trade +266771,Security,Security +266771,Transportation,Transportation +499452,Defence,Defence +491489,Government Procurement,Government Procurement +491489,Industry,Industry +423215,Infrastructure,Infrastructure +270911,Transportation,Transportation +339812,Employment and Training,Employment and Training +296705,Defence,Defence +277426,Government Procurement,Government Procurement +277426,Industry,Industry +279693,Budget,Budget +389469,Budget,Budget +418584,Regional Development,Regional Development +418574,Regional Development,Regional Development +418573,Regional Development,Regional Development +418493,Regional Development,Regional Development +410812,Regional Development,Regional Development +410811,Regional Development,Regional Development +420399,Research and Development,Research and Development +418574,Research and Development,Research and Development +378871,Research and Development,Research and Development +322752,Research and Development,Research and Development +322751,Research and Development,Research and Development +460395,Research and Development,Research and Development +458187,Research and Development,Research and Development +458082,Research and Development,Research and Development +457918,Research and Development,Research and Development +454253,Research and Development,Research and Development +454251,Research and Development,Research and Development +454248,Research and Development,Research and Development +454244,Research and Development,Research and Development +453993,Research and Development,Research and Development +453686,Research and Development,Research and Development +453685,Research and Development,Research and Development +453683,Research and Development,Research and Development +444476,Research and Development,Research and Development +444475,Research and Development,Research and Development +439900,Research and Development,Research and Development +433525,Research and Development,Research and Development +433520,Research and Development,Research and Development +420403,Research and Development,Research and Development +420402,Research and Development,Research and Development +420401,Research and Development,Research and Development +418573,Taxation and Finance,Taxation and Finance +418493,Taxation and Finance,Taxation and Finance +437291,Tourism,Tourism +437289,Tourism,Tourism +322752,Tourism,Tourism +322751,Tourism,Tourism +275315,Industry,Industry +267549,Industry,Industry +324535,Agriculture,Agriculture +324295,Agriculture,Agriculture +323690,Agriculture,Agriculture +323689,Agriculture,Agriculture +321775,Agriculture,Agriculture +321773,Agriculture,Agriculture +320971,Agriculture,Agriculture +320970,Agriculture,Agriculture +320969,Agriculture,Agriculture +315182,Agriculture,Agriculture +312190,Agriculture,Agriculture +301389,Agriculture,Agriculture +298009,Agriculture,Agriculture +277872,Agriculture,Agriculture +277870,Agriculture,Agriculture +275489,Agriculture,Agriculture +271650,Agriculture,Agriculture +271649,Agriculture,Agriculture +267709,Agriculture,Agriculture +405231,Agriculture,Agriculture +386842,Agriculture,Agriculture +379040,Agriculture,Agriculture +379039,Agriculture,Agriculture +377538,Agriculture,Agriculture +376251,Agriculture,Agriculture +376248,Agriculture,Agriculture +376059,Agriculture,Agriculture +376055,Agriculture,Agriculture +376053,Agriculture,Agriculture +376047,Agriculture,Agriculture +375173,Agriculture,Agriculture +373474,Agriculture,Agriculture +370625,Agriculture,Agriculture +370624,Agriculture,Agriculture +355532,Agriculture,Agriculture +347176,Agriculture,Agriculture +347175,Agriculture,Agriculture +339709,Agriculture,Agriculture +336511,Agriculture,Agriculture +336510,Agriculture,Agriculture +330884,Agriculture,Agriculture +327191,Agriculture,Agriculture +325792,Agriculture,Agriculture +324913,Agriculture,Agriculture +265209,Health,Health +383967,International Trade,International Trade +316710,Employment and Training,Employment and Training +265230,Employment and Training,Employment and Training +333833,Employment and Training,Employment and Training +265231,Employment and Training,Employment and Training +322339,Employment and Training,Employment and Training +322338,Employment and Training,Employment and Training +316711,Employment and Training,Employment and Training +272793,Government Procurement,Government Procurement +274829,International Trade,International Trade +266749,International Trade,International Trade +350406,International Trade,International Trade +325730,International Trade,International Trade +325729,International Trade,International Trade +510960,Economic Development,Economic Development +508883,Economic Development,Economic Development +392457,Economic Development,Economic Development +390924,Economic Development,Economic Development +390221,Economic Development,Economic Development +390218,Economic Development,Economic Development +390214,Economic Development,Economic Development +388746,Economic Development,Economic Development +374365,Economic Development,Economic Development +374364,Economic Development,Economic Development +373325,Economic Development,Economic Development +373324,Economic Development,Economic Development +370356,Economic Development,Economic Development +364898,Economic Development,Economic Development +317990,Economic Development,Economic Development +314156,Economic Development,Economic Development +505214,Economic Development,Economic Development +505205,Economic Development,Economic Development +505201,Economic Development,Economic Development +496250,Economic Development,Economic Development +487938,Economic Development,Economic Development +485089,Economic Development,Economic Development +485083,Economic Development,Economic Development +482188,Economic Development,Economic Development +479939,Economic Development,Economic Development +479934,Economic Development,Economic Development +479930,Economic Development,Economic Development +478617,Economic Development,Economic Development +478147,Economic Development,Economic Development +478133,Economic Development,Economic Development +478131,Economic Development,Economic Development +478114,Economic Development,Economic Development +478102,Economic Development,Economic Development +475435,Economic Development,Economic Development +473670,Economic Development,Economic Development +473669,Economic Development,Economic Development +473667,Economic Development,Economic Development +470907,Economic Development,Economic Development +470623,Economic Development,Economic Development +470609,Economic Development,Economic Development +470606,Economic Development,Economic Development +467276,Economic Development,Economic Development +465060,Economic Development,Economic Development +462746,Economic Development,Economic Development +461980,Economic Development,Economic Development +460428,Economic Development,Economic Development +458881,Economic Development,Economic Development +457636,Economic Development,Economic Development +457613,Economic Development,Economic Development +457611,Economic Development,Economic Development +455334,Economic Development,Economic Development +451353,Economic Development,Economic Development +449841,Economic Development,Economic Development +447347,Economic Development,Economic Development +447346,Economic Development,Economic Development +446968,Economic Development,Economic Development +446966,Economic Development,Economic Development +445691,Economic Development,Economic Development +445689,Economic Development,Economic Development +445566,Economic Development,Economic Development +445560,Economic Development,Economic Development +442536,Economic Development,Economic Development +442533,Economic Development,Economic Development +442527,Economic Development,Economic Development +438700,Economic Development,Economic Development +437912,Economic Development,Economic Development +433977,Economic Development,Economic Development +432395,Economic Development,Economic Development +432392,Economic Development,Economic Development +431388,Economic Development,Economic Development +429589,Economic Development,Economic Development +426724,Economic Development,Economic Development +425828,Economic Development,Economic Development +424363,Economic Development,Economic Development +424362,Economic Development,Economic Development +420718,Economic Development,Economic Development +420716,Economic Development,Economic Development +416745,Economic Development,Economic Development +416743,Economic Development,Economic Development +405527,Economic Development,Economic Development +405521,Economic Development,Economic Development +405489,Economic Development,Economic Development +405483,Economic Development,Economic Development +400444,Economic Development,Economic Development +400442,Economic Development,Economic Development +398978,Economic Development,Economic Development +398973,Economic Development,Economic Development +398964,Economic Development,Economic Development +538677,Economic Development,Economic Development +536742,Economic Development,Economic Development +523360,Economic Development,Economic Development +519531,Economic Development,Economic Development +517932,Economic Development,Economic Development +317989,Employment and Training,Employment and Training +286309,Employment and Training,Employment and Training +348436,Employment and Training,Employment and Training +265609,Justice and Law Enforcement,Justice and Law Enforcement +396232,Justice and Law Enforcement,Justice and Law Enforcement +318084,Justice and Law Enforcement,Justice and Law Enforcement +284769,Justice and Law Enforcement,Justice and Law Enforcement +265674,Justice and Law Enforcement,Justice and Law Enforcement +265673,Justice and Law Enforcement,Justice and Law Enforcement +265672,Justice and Law Enforcement,Justice and Law Enforcement +280813,Industry,Industry +321209,Intellectual Property,Intellectual Property +267430,Intellectual Property,Intellectual Property +266710,Small Business,Small Business +542158,Economic Development,Economic Development +461875,Budget,Budget +448395,Budget,Budget +394867,Budget,Budget +394866,Budget,Budget +394865,Budget,Budget +394864,Budget,Budget +394863,Budget,Budget +394862,Budget,Budget +394861,Budget,Budget +394860,Budget,Budget +394859,Budget,Budget +394858,Budget,Budget +394857,Budget,Budget +394856,Budget,Budget +394853,Budget,Budget +392227,Budget,Budget +391962,Budget,Budget +391757,Budget,Budget +340019,Budget,Budget +497283,Budget,Budget +497265,Budget,Budget +479311,Budget,Budget +465528,Budget,Budget +310998,Agriculture,Agriculture +310998,Economic Development,Economic Development +350406,Economic Development,Economic Development +325730,Economic Development,Economic Development +350406,Infrastructure,Infrastructure +310998,Infrastructure,Infrastructure +274829,Transportation,Transportation +266749,Transportation,Transportation +350406,Transportation,Transportation +325730,Transportation,Transportation +325729,Transportation,Transportation +449260,Budget,Budget +449259,Budget,Budget +313929,Budget,Budget +309699,Budget,Budget +303057,Budget,Budget +303055,Budget,Budget +294391,Budget,Budget +293609,Budget,Budget +288269,Budget,Budget +288112,Budget,Budget +280349,Budget,Budget +276121,Budget,Budget +276120,Budget,Budget +275931,Budget,Budget +275929,Budget,Budget +271551,Budget,Budget +271550,Budget,Budget +271549,Budget,Budget +266191,Budget,Budget +266190,Budget,Budget +393628,Budget,Budget +351782,Budget,Budget +348945,Budget,Budget +347246,Budget,Budget +347039,Budget,Budget +343100,Budget,Budget +343040,Budget,Budget +342577,Budget,Budget +342463,Budget,Budget +340154,Budget,Budget +339855,Budget,Budget +339628,Budget,Budget +337510,Budget,Budget +337509,Budget,Budget +337504,Budget,Budget +337502,Budget,Budget +337501,Budget,Budget +337494,Budget,Budget +335015,Budget,Budget +331869,Budget,Budget +330566,Budget,Budget +326190,Budget,Budget +326189,Budget,Budget +322890,Budget,Budget +322569,Budget,Budget +530759,Budget,Budget +528487,Budget,Budget +528485,Budget,Budget +528478,Budget,Budget +528469,Budget,Budget +524384,Budget,Budget +524383,Budget,Budget +524381,Budget,Budget +524377,Budget,Budget +524376,Budget,Budget +524375,Budget,Budget +521106,Budget,Budget +503759,Budget,Budget +501387,Budget,Budget +498220,Budget,Budget +498213,Budget,Budget +498211,Budget,Budget +498206,Budget,Budget +498203,Budget,Budget +498038,Budget,Budget +494492,Budget,Budget +494490,Budget,Budget +494489,Budget,Budget +494488,Budget,Budget +490253,Budget,Budget +490250,Budget,Budget +490247,Budget,Budget +490241,Budget,Budget +487127,Budget,Budget +487123,Budget,Budget +487115,Budget,Budget +483475,Budget,Budget +483471,Budget,Budget +483470,Budget,Budget +479323,Budget,Budget +476494,Budget,Budget +476487,Budget,Budget +475498,Budget,Budget +475433,Budget,Budget +475426,Budget,Budget +475422,Budget,Budget +471989,Budget,Budget +466061,Budget,Budget +466055,Budget,Budget +463453,Budget,Budget +463452,Budget,Budget +463450,Budget,Budget +463449,Budget,Budget +391875,Economic Development,Economic Development +274850,Transportation,Transportation +493689,Defence,Defence +491489,Defence,Defence +407665,Defence,Defence +407664,Defence,Defence +407663,Defence,Defence +407662,Defence,Defence +460407,Defence,Defence +421707,Defence,Defence +462717,Government Procurement,Government Procurement +447582,Government Procurement,Government Procurement +304249,Government Procurement,Government Procurement +407665,Government Procurement,Government Procurement +407664,Government Procurement,Government Procurement +407663,Government Procurement,Government Procurement +407662,Government Procurement,Government Procurement +381311,Government Procurement,Government Procurement +374157,Government Procurement,Government Procurement +374150,Government Procurement,Government Procurement +355786,Government Procurement,Government Procurement +499452,Government Procurement,Government Procurement +462717,Industry,Industry +460407,Industry,Industry +414648,Industry,Industry +499452,Industry,Industry +493689,Industry,Industry +423213,Infrastructure,Infrastructure +423206,Infrastructure,Infrastructure +291143,Infrastructure,Infrastructure +291141,Infrastructure,Infrastructure +291139,Infrastructure,Infrastructure +291136,Infrastructure,Infrastructure +291133,Infrastructure,Infrastructure +291130,Infrastructure,Infrastructure +291153,Infrastructure,Infrastructure +291152,Infrastructure,Infrastructure +291150,Infrastructure,Infrastructure +472966,Infrastructure,Infrastructure +472958,Infrastructure,Infrastructure +466974,Infrastructure,Infrastructure +466970,Infrastructure,Infrastructure +458861,Infrastructure,Infrastructure +457212,Infrastructure,Infrastructure +457209,Infrastructure,Infrastructure +457208,Infrastructure,Infrastructure +457206,Infrastructure,Infrastructure +455487,Infrastructure,Infrastructure +452609,Infrastructure,Infrastructure +448190,Infrastructure,Infrastructure +448187,Infrastructure,Infrastructure +445716,Infrastructure,Infrastructure +445713,Infrastructure,Infrastructure +445710,Infrastructure,Infrastructure +443897,Infrastructure,Infrastructure +442590,Infrastructure,Infrastructure +442401,Infrastructure,Infrastructure +442378,Infrastructure,Infrastructure +442376,Infrastructure,Infrastructure +442366,Infrastructure,Infrastructure +442364,Infrastructure,Infrastructure +439471,Infrastructure,Infrastructure +439443,Infrastructure,Infrastructure +439434,Infrastructure,Infrastructure +439415,Infrastructure,Infrastructure +439409,Infrastructure,Infrastructure +439370,Infrastructure,Infrastructure +435770,Infrastructure,Infrastructure +435767,Infrastructure,Infrastructure +435763,Infrastructure,Infrastructure +435310,Infrastructure,Infrastructure +435302,Infrastructure,Infrastructure +435215,Infrastructure,Infrastructure +435207,Infrastructure,Infrastructure +435203,Infrastructure,Infrastructure +435201,Infrastructure,Infrastructure +435195,Infrastructure,Infrastructure +435193,Infrastructure,Infrastructure +433672,Infrastructure,Infrastructure +433671,Infrastructure,Infrastructure +429111,Infrastructure,Infrastructure +429077,Infrastructure,Infrastructure +429072,Infrastructure,Infrastructure +426789,Infrastructure,Infrastructure +426679,Infrastructure,Infrastructure +426677,Infrastructure,Infrastructure +270910,Transportation,Transportation +270909,Transportation,Transportation +272729,Transportation,Transportation +270913,Transportation,Transportation +270912,Transportation,Transportation +273832,Defence,Defence +279692,Budget,Budget +279691,Budget,Budget +279690,Budget,Budget +272313,Budget,Budget +272311,Budget,Budget +266610,Budget,Budget +403188,Budget,Budget +399482,Budget,Budget +386935,Budget,Budget +386933,Budget,Budget +386924,Budget,Budget +386922,Budget,Budget +386921,Budget,Budget +386912,Budget,Budget +386911,Budget,Budget +386910,Budget,Budget +386907,Budget,Budget +386899,Budget,Budget +386896,Budget,Budget +386893,Budget,Budget +386870,Budget,Budget +386865,Budget,Budget +375552,Budget,Budget +370269,Budget,Budget +367891,Budget,Budget +355275,Budget,Budget +346057,Budget,Budget +337380,Budget,Budget +337379,Budget,Budget +289349,Budget,Budget +389468,Budget,Budget +386934,Budget,Budget +339923,Budget,Budget +339922,Budget,Budget +337381,Budget,Budget +337378,Budget,Budget +337377,Budget,Budget +334970,Budget,Budget +317814,Budget,Budget +314589,Budget,Budget +313530,Budget,Budget +313529,Budget,Budget +309760,Budget,Budget +279694,Budget,Budget +279689,Budget,Budget +272316,Budget,Budget +272315,Budget,Budget +272314,Budget,Budget +272312,Budget,Budget +266810,Budget,Budget +386931,Budget,Budget +386930,Budget,Budget +386925,Budget,Budget +386918,Budget,Budget +386916,Budget,Budget +386915,Budget,Budget +386909,Budget,Budget +386905,Budget,Budget +386903,Budget,Budget +386901,Budget,Budget +386897,Budget,Budget +386895,Budget,Budget +386894,Budget,Budget +386892,Budget,Budget +386869,Budget,Budget +386868,Budget,Budget +386867,Budget,Budget +386866,Budget,Budget +386864,Budget,Budget +386863,Budget,Budget +384358,Budget,Budget +383139,Budget,Budget +378238,Budget,Budget +375553,Budget,Budget +373519,Budget,Budget +373518,Budget,Budget +370268,Budget,Budget +370267,Budget,Budget +367892,Budget,Budget +350520,Budget,Budget +349432,Budget,Budget +346037,Budget,Budget +343077,Budget,Budget +434035,Budget,Budget +434033,Budget,Budget +399481,Budget,Budget +395813,Budget,Budget +389470,Budget,Budget +282830,Energy,Energy +282829,Energy,Energy +365029,Budget,Budget +457548,Budget,Budget +277852,Budget,Budget +277850,Budget,Budget +271869,Budget,Budget +270169,Budget,Budget +267509,Budget,Budget +267489,Budget,Budget +448076,International Trade,International Trade +424703,International Trade,International Trade +275828,International Trade,International Trade +275826,International Trade,International Trade +267611,International Trade,International Trade +267610,International Trade,International Trade +267609,International Trade,International Trade +371437,International Trade,International Trade +337508,International Trade,International Trade +468289,International Trade,International Trade +273698,Infrastructure,Infrastructure +273694,Infrastructure,Infrastructure +299591,Infrastructure,Infrastructure +299590,Infrastructure,Infrastructure +299589,Infrastructure,Infrastructure +299576,Infrastructure,Infrastructure +282490,Infrastructure,Infrastructure +273703,Infrastructure,Infrastructure +273702,Infrastructure,Infrastructure +273701,Infrastructure,Infrastructure +273698,Transportation,Transportation +273694,Transportation,Transportation +282490,Transportation,Transportation +273703,Transportation,Transportation +273702,Transportation,Transportation +273701,Transportation,Transportation +267770,Religion,Religion +267769,Religion,Religion +267775,Religion,Religion +267774,Religion,Religion +267773,Religion,Religion +273698,Employment and Training,Employment and Training +273694,Employment and Training,Employment and Training +273703,Employment and Training,Employment and Training +273702,Employment and Training,Employment and Training +273701,Employment and Training,Employment and Training +273698,Mining,Mining +273694,Mining,Mining +299591,Mining,Mining +299590,Mining,Mining +299589,Mining,Mining +299576,Mining,Mining +282490,Mining,Mining +273703,Mining,Mining +273702,Mining,Mining +273701,Mining,Mining +543266,Labour,Labour +540789,Labour,Labour +310011,Labour,Labour +268055,Labour,Labour +268050,Labour,Labour +444626,Labour,Labour +434324,Labour,Labour +419818,Labour,Labour +382228,Labour,Labour +382226,Labour,Labour +375613,Labour,Labour +375612,Labour,Labour +375611,Labour,Labour +375610,Labour,Labour +372017,Labour,Labour +372000,Labour,Labour +396289,Taxation and Finance,Taxation and Finance +396288,Taxation and Finance,Taxation and Finance +268055,Taxation and Finance,Taxation and Finance +268050,Taxation and Finance,Taxation and Finance +375613,Taxation and Finance,Taxation and Finance +375612,Taxation and Finance,Taxation and Finance +372019,Taxation and Finance,Taxation and Finance +351235,Taxation and Finance,Taxation and Finance +351232,Taxation and Finance,Taxation and Finance +319055,Taxation and Finance,Taxation and Finance +319035,Taxation and Finance,Taxation and Finance +434324,Taxation and Finance,Taxation and Finance +429864,Taxation and Finance,Taxation and Finance +429825,Taxation and Finance,Taxation and Finance +417620,Taxation and Finance,Taxation and Finance +417619,Taxation and Finance,Taxation and Finance +417618,Taxation and Finance,Taxation and Finance +417612,Taxation and Finance,Taxation and Finance +409785,Taxation and Finance,Taxation and Finance +409775,Taxation and Finance,Taxation and Finance +406527,Taxation and Finance,Taxation and Finance +397697,Taxation and Finance,Taxation and Finance +310740,Environment,Environment +273708,Environment,Environment +316117,Environment,Environment +310752,Environment,Environment +310750,Environment,Environment +310748,Environment,Environment +310747,Environment,Environment +310745,Environment,Environment +310744,Environment,Environment +310743,Environment,Environment +273645,Taxation and Finance,Taxation and Finance +273644,Taxation and Finance,Taxation and Finance +285311,Taxation and Finance,Taxation and Finance +318078,Health,Health +310264,Health,Health +273637,Health,Health +337838,Health,Health +331069,Health,Health +318081,Health,Health +318080,Health,Health +298289,Taxation and Finance,Taxation and Finance +284749,Taxation and Finance,Taxation and Finance +284610,Taxation and Finance,Taxation and Finance +284609,Taxation and Finance,Taxation and Finance +313047,Small Business,Small Business +304052,Small Business,Small Business +277158,Justice and Law Enforcement,Justice and Law Enforcement +268439,Justice and Law Enforcement,Justice and Law Enforcement +318620,Justice and Law Enforcement,Justice and Law Enforcement +315552,Justice and Law Enforcement,Justice and Law Enforcement +310328,Justice and Law Enforcement,Justice and Law Enforcement +310327,Justice and Law Enforcement,Justice and Law Enforcement +275769,Environment,Environment +271229,Environment,Environment +280489,Environment,Environment +280486,Environment,Environment +276617,Environment,Environment +276614,Environment,Environment +275769,Infrastructure,Infrastructure +271229,Infrastructure,Infrastructure +276617,Infrastructure,Infrastructure +276614,Infrastructure,Infrastructure +268440,Justice and Law Enforcement,Justice and Law Enforcement +333250,Justice and Law Enforcement,Justice and Law Enforcement +321959,Justice and Law Enforcement,Justice and Law Enforcement +310325,Justice and Law Enforcement,Justice and Law Enforcement +310324,Justice and Law Enforcement,Justice and Law Enforcement +310323,Justice and Law Enforcement,Justice and Law Enforcement +310322,Justice and Law Enforcement,Justice and Law Enforcement +310320,Justice and Law Enforcement,Justice and Law Enforcement +310318,Justice and Law Enforcement,Justice and Law Enforcement +310317,Justice and Law Enforcement,Justice and Law Enforcement +280480,Justice and Law Enforcement,Justice and Law Enforcement +512097,Budget,Budget +503841,Budget,Budget +335553,Justice and Law Enforcement,Justice and Law Enforcement +327124,Justice and Law Enforcement,Justice and Law Enforcement +315554,Justice and Law Enforcement,Justice and Law Enforcement +310326,Justice and Law Enforcement,Justice and Law Enforcement +310319,Justice and Law Enforcement,Justice and Law Enforcement +302673,Justice and Law Enforcement,Justice and Law Enforcement +302671,Justice and Law Enforcement,Justice and Law Enforcement +290664,Justice and Law Enforcement,Justice and Law Enforcement +277165,Justice and Law Enforcement,Justice and Law Enforcement +273258,Justice and Law Enforcement,Justice and Law Enforcement +495411,Budget,Budget +338524,Budget,Budget +319071,Budget,Budget +310365,Budget,Budget +302953,Budget,Budget +296802,Budget,Budget +268717,Budget,Budget +388069,Budget,Budget +387806,Budget,Budget +387805,Budget,Budget +387802,Budget,Budget +373768,Budget,Budget +344032,Consumer Issues,Questions touchant les consommateurs +324870,Consumer Issues,Questions touchant les consommateurs +369046,Consumer Issues,Questions touchant les consommateurs +268850,Labour,Labour +364463,Labour,Labour +276822,International Trade,International Trade +276820,International Trade,International Trade +354992,International Trade,International Trade +354991,International Trade,International Trade +354990,International Trade,International Trade +354989,International Trade,International Trade +354988,International Trade,International Trade +328667,International Trade,International Trade +328666,International Trade,International Trade +328665,International Trade,International Trade +328664,International Trade,International Trade +328662,International Trade,International Trade +512688,Agriculture,Agriculture +510601,Agriculture,Agriculture +406050,Agriculture,Agriculture +400197,Agriculture,Agriculture +355165,Agriculture,Agriculture +355161,Agriculture,Agriculture +355158,Agriculture,Agriculture +505440,Agriculture,Agriculture +505439,Agriculture,Agriculture +505438,Agriculture,Agriculture +505437,Agriculture,Agriculture +505436,Agriculture,Agriculture +505431,Agriculture,Agriculture +505429,Agriculture,Agriculture +499040,Agriculture,Agriculture +491811,Agriculture,Agriculture +491715,Agriculture,Agriculture +491713,Agriculture,Agriculture +491711,Agriculture,Agriculture +491709,Agriculture,Agriculture +491705,Agriculture,Agriculture +487933,Agriculture,Agriculture +483984,Agriculture,Agriculture +483975,Agriculture,Agriculture +483958,Agriculture,Agriculture +481769,Agriculture,Agriculture +479149,Agriculture,Agriculture +479139,Agriculture,Agriculture +479135,Agriculture,Agriculture +477019,Agriculture,Agriculture +477012,Agriculture,Agriculture +475635,Agriculture,Agriculture +471626,Agriculture,Agriculture +466363,Agriculture,Agriculture +466361,Agriculture,Agriculture +459818,Agriculture,Agriculture +456404,Agriculture,Agriculture +454295,Agriculture,Agriculture +454294,Agriculture,Agriculture +454234,Agriculture,Agriculture +454233,Agriculture,Agriculture +454232,Agriculture,Agriculture +436656,Agriculture,Agriculture +429691,Agriculture,Agriculture +429689,Agriculture,Agriculture +429687,Agriculture,Agriculture +520403,Agriculture,Agriculture +519216,Agriculture,Agriculture +517332,Agriculture,Agriculture +517329,Agriculture,Agriculture +514158,Agriculture,Agriculture +514156,Agriculture,Agriculture +400194,Consumer Issues,Consumer Issues +400191,Consumer Issues,Consumer Issues +379497,Consumer Issues,Consumer Issues +379495,Consumer Issues,Consumer Issues +379493,Consumer Issues,Consumer Issues +475635,Health,Health +471626,Health,Health +429690,Health,Health +429688,Health,Health +379497,Health,Health +379495,Health,Health +517329,International Trade,International Trade +512688,International Trade,International Trade +379497,International Trade,International Trade +379495,International Trade,International Trade +379493,International Trade,International Trade +366125,International Trade,International Trade +366124,International Trade,International Trade +355165,International Trade,International Trade +355161,International Trade,International Trade +355158,International Trade,International Trade +328656,International Trade,International Trade +328655,International Trade,International Trade +328654,International Trade,International Trade +277232,International Trade,International Trade +277231,International Trade,International Trade +277229,International Trade,International Trade +277227,International Trade,International Trade +505440,International Trade,International Trade +505439,International Trade,International Trade +505438,International Trade,International Trade +505437,International Trade,International Trade +505436,International Trade,International Trade +505431,International Trade,International Trade +505429,International Trade,International Trade +499040,International Trade,International Trade +491811,International Trade,International Trade +491715,International Trade,International Trade +491713,International Trade,International Trade +491711,International Trade,International Trade +491709,International Trade,International Trade +491705,International Trade,International Trade +487933,International Trade,International Trade +483984,International Trade,International Trade +483975,International Trade,International Trade +483958,International Trade,International Trade +481769,International Trade,International Trade +479149,International Trade,International Trade +479139,International Trade,International Trade +479135,International Trade,International Trade +477019,International Trade,International Trade +477012,International Trade,International Trade +466363,International Trade,International Trade +466361,International Trade,International Trade +459818,International Trade,International Trade +456404,International Trade,International Trade +454295,International Trade,International Trade +454294,International Trade,International Trade +454234,International Trade,International Trade +454233,International Trade,International Trade +454232,International Trade,International Trade +450937,International Trade,International Trade +444645,International Trade,International Trade +436656,International Trade,International Trade +436199,International Trade,International Trade +436198,International Trade,International Trade +429691,International Trade,International Trade +429689,International Trade,International Trade +429688,International Trade,International Trade +429687,International Trade,International Trade +422064,International Trade,International Trade +422063,International Trade,International Trade +422062,International Trade,International Trade +419873,International Trade,International Trade +419872,International Trade,International Trade +419870,International Trade,International Trade +417951,International Trade,International Trade +417950,International Trade,International Trade +417949,International Trade,International Trade +414972,International Trade,International Trade +414971,International Trade,International Trade +414970,International Trade,International Trade +414969,International Trade,International Trade +413828,International Trade,International Trade +411110,International Trade,International Trade +411105,International Trade,International Trade +411103,International Trade,International Trade +411102,International Trade,International Trade +411099,International Trade,International Trade +408909,International Trade,International Trade +408908,International Trade,International Trade +408907,International Trade,International Trade +408906,International Trade,International Trade +408905,International Trade,International Trade +408457,International Trade,International Trade +408456,International Trade,International Trade +408455,International Trade,International Trade +408453,International Trade,International Trade +408452,International Trade,International Trade +406050,International Trade,International Trade +402657,International Trade,International Trade +400194,International Trade,International Trade +400191,International Trade,International Trade +520403,International Trade,International Trade +311063,Energy,Energy +404362,Energy,Energy +339092,Environment,Environment +404362,Environment,Environment +404362,Industry,Industry +339092,Industry,Industry +404362,Infrastructure,Infrastructure +339092,Transportation,Transportation +311063,Transportation,Transportation +378392,Internal Trade,Internal Trade +378391,Internal Trade,Internal Trade +292810,Internal Trade,Internal Trade +268909,Internal Trade,Internal Trade +378394,Internal Trade,Internal Trade +398506,Transportation,Transportation +398503,Transportation,Transportation +368246,Transportation,Transportation +348694,Transportation,Transportation +344768,Transportation,Transportation +306591,Transportation,Transportation +306589,Transportation,Transportation +375261,Transportation,Transportation +375259,Transportation,Transportation +375258,Transportation,Transportation +375256,Transportation,Transportation +375254,Transportation,Transportation +375253,Transportation,Transportation +375251,Transportation,Transportation +398533,Transportation,Transportation +398531,Transportation,Transportation +398525,Transportation,Transportation +398521,Transportation,Transportation +398519,Transportation,Transportation +398515,Transportation,Transportation +398514,Transportation,Transportation +287729,Sports,Sports +416327,Privacy and Access to Information,Privacy and Access to Information +409394,Privacy and Access to Information,Privacy and Access to Information +358086,Privacy and Access to Information,Privacy and Access to Information +269120,Privacy and Access to Information,Privacy and Access to Information +541586,Privacy and Access to Information,Privacy and Access to Information +532222,Privacy and Access to Information,Privacy and Access to Information +532218,Privacy and Access to Information,Privacy and Access to Information +525588,Privacy and Access to Information,Privacy and Access to Information +522586,Privacy and Access to Information,Privacy and Access to Information +519891,Privacy and Access to Information,Privacy and Access to Information +512821,Privacy and Access to Information,Privacy and Access to Information +512820,Privacy and Access to Information,Privacy and Access to Information +417699,Privacy and Access to Information,Privacy and Access to Information +396753,Government Procurement,Government Procurement +520038,International Trade,International Trade +513352,International Trade,International Trade +424951,International Trade,International Trade +424946,International Trade,International Trade +424938,International Trade,International Trade +420137,International Trade,International Trade +511503,International Trade,International Trade +508702,International Trade,International Trade +499671,International Trade,International Trade +495853,International Trade,International Trade +495850,International Trade,International Trade +495849,International Trade,International Trade +495846,International Trade,International Trade +495842,International Trade,International Trade +495840,International Trade,International Trade +492133,International Trade,International Trade +492131,International Trade,International Trade +478298,International Trade,International Trade +476760,International Trade,International Trade +452728,International Trade,International Trade +452725,International Trade,International Trade +452723,International Trade,International Trade +452721,International Trade,International Trade +452720,International Trade,International Trade +452716,International Trade,International Trade +452714,International Trade,International Trade +452713,International Trade,International Trade +452706,International Trade,International Trade +452703,International Trade,International Trade +452702,International Trade,International Trade +452701,International Trade,International Trade +452700,International Trade,International Trade +449539,International Trade,International Trade +449536,International Trade,International Trade +446655,International Trade,International Trade +437076,International Trade,International Trade +536993,International Trade,International Trade +533172,International Trade,International Trade +533171,International Trade,International Trade +533170,International Trade,International Trade +533169,International Trade,International Trade +533164,International Trade,International Trade +533162,International Trade,International Trade +531901,International Trade,International Trade +531897,International Trade,International Trade +523172,International Trade,International Trade +523164,International Trade,International Trade +273335,Regional Development,Développement régional +273333,Regional Development,Développement régional +295329,Regional Development,Développement régional +275457,Regional Development,Développement régional +275456,Regional Development,Développement régional +275455,Regional Development,Développement régional +275454,Regional Development,Développement régional +275453,Regional Development,Développement régional +275452,Regional Development,Développement régional +273341,Regional Development,Développement régional +273335,Taxation and Finance,Impôts et finances +273333,Taxation and Finance,Impôts et finances +295329,Taxation and Finance,Impôts et finances +275457,Taxation and Finance,Impôts et finances +275456,Taxation and Finance,Impôts et finances +275455,Taxation and Finance,Impôts et finances +275454,Taxation and Finance,Impôts et finances +275453,Taxation and Finance,Impôts et finances +275452,Taxation and Finance,Impôts et finances +273341,Taxation and Finance,Impôts et finances +456473,Industry,Industry +454139,Industry,Industry +355465,Industry,Industry +355463,Industry,Industry +274689,Industry,Industry +271049,Industry,Industry +449635,Industry,Industry +449634,Industry,Industry +449633,Industry,Industry +449631,Industry,Industry +449627,Industry,Industry +449626,Industry,Industry +448671,Industry,Industry +448405,Industry,Industry +446185,Industry,Industry +446184,Industry,Industry +446183,Industry,Industry +439295,Industry,Industry +418649,Industry,Industry +412481,Industry,Industry +412015,Industry,Industry +410821,Industry,Industry +410820,Industry,Industry +410819,Industry,Industry +410818,Industry,Industry +410816,Industry,Industry +410790,Industry,Industry +410788,Industry,Industry +410787,Industry,Industry +410786,Industry,Industry +529805,Industry,Industry +513489,Industry,Industry +506570,Industry,Industry +506569,Industry,Industry +506568,Industry,Industry +506567,Industry,Industry +506566,Industry,Industry +506565,Industry,Industry +506564,Industry,Industry +503661,Industry,Industry +503660,Industry,Industry +503659,Industry,Industry +503658,Industry,Industry +503657,Industry,Industry +503656,Industry,Industry +503655,Industry,Industry +503654,Industry,Industry +503651,Industry,Industry +503650,Industry,Industry +502827,Industry,Industry +502824,Industry,Industry +502821,Industry,Industry +502819,Industry,Industry +502818,Industry,Industry +502815,Industry,Industry +502810,Industry,Industry +502808,Industry,Industry +502806,Industry,Industry +502805,Industry,Industry +502804,Industry,Industry +502802,Industry,Industry +502799,Industry,Industry +502798,Industry,Industry +502796,Industry,Industry +500045,Industry,Industry +500044,Industry,Industry +500043,Industry,Industry +500042,Industry,Industry +496705,Industry,Industry +496703,Industry,Industry +496702,Industry,Industry +494147,Industry,Industry +493559,Industry,Industry +493556,Industry,Industry +492640,Industry,Industry +492624,Industry,Industry +492623,Industry,Industry +489350,Industry,Industry +488865,Industry,Industry +488863,Industry,Industry +488028,Industry,Industry +486675,Industry,Industry +486605,Industry,Industry +486604,Industry,Industry +485628,Industry,Industry +484204,Industry,Industry +484203,Industry,Industry +484201,Industry,Industry +483282,Industry,Industry +482870,Industry,Industry +482799,Industry,Industry +482798,Industry,Industry +481039,Industry,Industry +480577,Industry,Industry +478833,Industry,Industry +478489,Industry,Industry +478365,Industry,Industry +476152,Industry,Industry +465215,Industry,Industry +465156,Industry,Industry +463275,Industry,Industry +463274,Industry,Industry +463273,Industry,Industry +463272,Industry,Industry +383390,Internal Trade,Internal Trade +383388,Internal Trade,Internal Trade +349188,Internal Trade,Internal Trade +349186,Internal Trade,Internal Trade +349183,Internal Trade,Internal Trade +349173,Internal Trade,Internal Trade +296772,Internal Trade,Internal Trade +269450,Internal Trade,Internal Trade +394406,Internal Trade,Internal Trade +384433,Internal Trade,Internal Trade +384432,Internal Trade,Internal Trade +324710,International Development,International Development +269494,International Development,International Development +349177,Security,Security +344004,Security,Security +269575,Security,Security +388987,Industry,Industry +384364,Industry,Industry +309490,Industry,Industry +272673,Industry,Industry +272672,Industry,Industry +388987,Labour,Labour +333549,Labour,Labour +309490,Labour,Labour +272673,Labour,Labour +272672,Labour,Labour +384364,Regional Development,Regional Development +333549,Taxation and Finance,Taxation and Finance +326074,Employment and Training,Employment and Training +326011,Employment and Training,Employment and Training +320538,Employment and Training,Employment and Training +377561,Employment and Training,Employment and Training +373760,Employment and Training,Employment and Training +370558,Employment and Training,Employment and Training +328477,Employment and Training,Employment and Training +384334,International Development,International Development +382700,International Development,International Development +382085,International Development,International Development +377561,International Development,International Development +377559,International Development,International Development +373760,International Development,International Development +368586,International Development,International Development +329762,International Development,International Development +328476,International Development,International Development +327389,International Development,International Development +326074,International Development,International Development +326012,International Development,International Development +325984,International Development,International Development +320536,International Development,International Development +320534,International Development,International Development +320533,International Development,International Development +427071,International Development,International Development +413506,International Development,International Development +394941,International Development,International Development +389696,International Development,International Development +313038,Transportation,Transportation +296729,Transportation,Transportation +353311,Taxation and Finance,Taxation and Finance +505923,Tourism,Tourism +505922,Tourism,Tourism +334168,Tourism,Tourism +334092,Tourism,Tourism +270309,Tourism,Tourism +502994,Tourism,Tourism +502993,Tourism,Tourism +502992,Tourism,Tourism +502991,Tourism,Tourism +502990,Tourism,Tourism +502989,Tourism,Tourism +502988,Tourism,Tourism +502987,Tourism,Tourism +502986,Tourism,Tourism +502985,Tourism,Tourism +500162,Tourism,Tourism +500161,Tourism,Tourism +500160,Tourism,Tourism +500159,Tourism,Tourism +496719,Tourism,Tourism +495724,Tourism,Tourism +493994,Tourism,Tourism +491492,Tourism,Tourism +485603,Tourism,Tourism +485602,Tourism,Tourism +482081,Tourism,Tourism +479856,Tourism,Tourism +475466,Tourism,Tourism +475460,Tourism,Tourism +475455,Tourism,Tourism +475449,Tourism,Tourism +475259,Tourism,Tourism +472875,Tourism,Tourism +472865,Tourism,Tourism +472862,Tourism,Tourism +408688,Tourism,Tourism +539028,Tourism,Tourism +522046,Tourism,Tourism +522045,Tourism,Tourism +522044,Tourism,Tourism +522043,Tourism,Tourism +516986,Tourism,Tourism +513855,Tourism,Tourism +513091,Tourism,Tourism +513090,Tourism,Tourism +513089,Tourism,Tourism +513088,Tourism,Tourism +510929,Tourism,Tourism +510926,Tourism,Tourism +507679,Tourism,Tourism +507677,Tourism,Tourism +507673,Tourism,Tourism +507672,Tourism,Tourism +507671,Tourism,Tourism +505926,Tourism,Tourism +505925,Tourism,Tourism +387051,Economic Development,Economic Development +387050,Economic Development,Economic Development +384852,Economic Development,Economic Development +379612,Economic Development,Economic Development +379574,Economic Development,Economic Development +368139,Economic Development,Economic Development +363042,Economic Development,Economic Development +361682,Economic Development,Economic Development +342599,Economic Development,Economic Development +342598,Economic Development,Economic Development +334313,Economic Development,Economic Development +321213,Economic Development,Economic Development +270329,Economic Development,Economic Development +505363,Economic Development,Economic Development +467718,Economic Development,Economic Development +467713,Economic Development,Economic Development +467687,Economic Development,Economic Development +459566,Economic Development,Economic Development +443153,Economic Development,Economic Development +443152,Economic Development,Economic Development +443149,Economic Development,Economic Development +433087,Economic Development,Economic Development +427896,Economic Development,Economic Development +427895,Economic Development,Economic Development +427894,Economic Development,Economic Development +427893,Economic Development,Economic Development +427892,Economic Development,Economic Development +427891,Economic Development,Economic Development +427890,Economic Development,Economic Development +423585,Economic Development,Economic Development +415010,Economic Development,Economic Development +414978,Economic Development,Economic Development +413917,Economic Development,Economic Development +400510,Economic Development,Economic Development +395785,Economic Development,Economic Development +392150,Economic Development,Economic Development +387578,Economic Development,Economic Development +387111,Economic Development,Economic Development +387108,Economic Development,Economic Development +387107,Economic Development,Economic Development +387105,Economic Development,Economic Development +433087,Immigration,Immigration +512736,Immigration,Immigration +270329,Immigration,Immigration +270329,International Relations,International Relations +347430,Health,Health +350722,Health,Health +348731,Health,Health +348726,Health,Health +348723,Health,Health +348721,Health,Health +348719,Health,Health +272031,Industry,Industry +272030,Industry,Industry +272030,Labour,Labour +272032,Labour,Labour +272031,Transportation,Transportation +272030,Transportation,Transportation +273365,Infrastructure,Infrastructure +273364,Infrastructure,Infrastructure +280931,Infrastructure,Infrastructure +280930,Infrastructure,Infrastructure +277071,Infrastructure,Infrastructure +526839,Taxation and Finance,Impôts et finances +526836,Taxation and Finance,Impôts et finances +309628,Taxation and Finance,Impôts et finances +302909,Taxation and Finance,Impôts et finances +276082,Taxation and Finance,Impôts et finances +276081,Taxation and Finance,Impôts et finances +276078,Taxation and Finance,Impôts et finances +366266,Taxation and Finance,Impôts et finances +512736,Employment and Training,Employment and Training +509001,Employment and Training,Employment and Training +458803,Employment and Training,Employment and Training +445229,Employment and Training,Employment and Training +433087,Employment and Training,Employment and Training +423585,Employment and Training,Employment and Training +467696,Energy,Energy +445229,Energy,Energy +370890,Energy,Energy +361682,Industry,Industry +445229,Industry,Industry +443153,Industry,Industry +443152,Industry,Industry +443149,Industry,Industry +395785,Industry,Industry +379616,Industry,Industry +467687,Industry,Industry +392161,Intellectual Property,Intellectual Property +509001,Intellectual Property,Intellectual Property +361682,Intellectual Property,Intellectual Property +357162,Intellectual Property,Intellectual Property +443153,Intellectual Property,Intellectual Property +423585,Intellectual Property,Intellectual Property +329429,Municipalities,Municipalities +433087,Municipalities,Municipalities +271131,Environment,Environment +271133,Transportation,Transportation +418645,Labour,Labour +418637,Labour,Labour +270869,Labour,Labour +314219,Labour,Labour +314218,Labour,Labour +314215,Labour,Labour +314213,Labour,Labour +314211,Labour,Labour +314210,Labour,Labour +314209,Labour,Labour +314176,Labour,Labour +314175,Labour,Labour +314174,Labour,Labour +314173,Labour,Labour +314172,Labour,Labour +314171,Labour,Labour +314170,Labour,Labour +314169,Labour,Labour +314168,Labour,Labour +314167,Labour,Labour +314166,Labour,Labour +314165,Labour,Labour +314163,Labour,Labour +314162,Labour,Labour +314161,Labour,Labour +314160,Labour,Labour +314159,Labour,Labour +314158,Labour,Labour +314157,Labour,Labour +314155,Labour,Labour +314154,Labour,Labour +314153,Labour,Labour +314152,Labour,Labour +314151,Labour,Labour +314150,Labour,Labour +314149,Labour,Labour +370868,Labour,Labour +370867,Labour,Labour +370860,Labour,Labour +370859,Labour,Labour +370858,Labour,Labour +370857,Labour,Labour +370856,Labour,Labour +370855,Labour,Labour +370854,Labour,Labour +370853,Labour,Labour +370852,Labour,Labour +370851,Labour,Labour +370850,Labour,Labour +370849,Labour,Labour +370848,Labour,Labour +370847,Labour,Labour +370846,Labour,Labour +370845,Labour,Labour +370844,Labour,Labour +370843,Labour,Labour +370841,Labour,Labour +370840,Labour,Labour +370839,Labour,Labour +370838,Labour,Labour +370837,Labour,Labour +370836,Labour,Labour +370834,Labour,Labour +370832,Labour,Labour +370831,Labour,Labour +370827,Labour,Labour +370825,Labour,Labour +370824,Labour,Labour +343520,Labour,Labour +343519,Labour,Labour +343518,Labour,Labour +343517,Labour,Labour +343516,Labour,Labour +343515,Labour,Labour +343514,Labour,Labour +343512,Labour,Labour +343511,Labour,Labour +343510,Labour,Labour +343509,Labour,Labour +343508,Labour,Labour +343507,Labour,Labour +343506,Labour,Labour +343505,Labour,Labour +343504,Labour,Labour +343503,Labour,Labour +343502,Labour,Labour +343501,Labour,Labour +343500,Labour,Labour +343499,Labour,Labour +343498,Labour,Labour +343497,Labour,Labour +343496,Labour,Labour +343494,Labour,Labour +343493,Labour,Labour +343492,Labour,Labour +343491,Labour,Labour +343490,Labour,Labour +343489,Labour,Labour +343488,Labour,Labour +343487,Labour,Labour +343486,Labour,Labour +343485,Labour,Labour +343484,Labour,Labour +343482,Labour,Labour +542790,Labour,Labour +461903,Labour,Labour +411794,Immigration,Immigration +411789,Immigration,Immigration +343518,Immigration,Immigration +343499,Immigration,Immigration +343486,Immigration,Immigration +314219,Immigration,Immigration +314218,Immigration,Immigration +314211,Immigration,Immigration +314210,Immigration,Immigration +314209,Immigration,Immigration +314175,Immigration,Immigration +314174,Immigration,Immigration +314173,Immigration,Immigration +314172,Immigration,Immigration +314171,Immigration,Immigration +314170,Immigration,Immigration +314168,Immigration,Immigration +314167,Immigration,Immigration +314162,Immigration,Immigration +314161,Immigration,Immigration +314160,Immigration,Immigration +314159,Immigration,Immigration +314158,Immigration,Immigration +314154,Immigration,Immigration +314153,Immigration,Immigration +270869,Immigration,Immigration +414839,Immigration,Immigration +523172,Budget,Budget +523160,Budget,Budget +440930,Budget,Budget +440801,Budget,Budget +434545,Budget,Budget +434544,Budget,Budget +434543,Budget,Budget +434542,Budget,Budget +434541,Budget,Budget +434540,Budget,Budget +434539,Budget,Budget +434538,Budget,Budget +434537,Budget,Budget +434535,Budget,Budget +434534,Budget,Budget +434533,Budget,Budget +434532,Budget,Budget +434531,Budget,Budget +434530,Budget,Budget +421246,Budget,Budget +533170,Budget,Budget +533169,Budget,Budget +525967,Budget,Budget +525950,Budget,Budget +525948,Budget,Budget +525946,Budget,Budget +525929,Budget,Budget +523184,Budget,Budget +523180,Budget,Budget +290249,Consumer Issues,Consumer Issues +288210,Industry,Industry +270909,Small Business,Small Business +339812,Small Business,Small Business +272729,Small Business,Small Business +270913,Small Business,Small Business +270912,Small Business,Small Business +270911,Small Business,Small Business +270909,Tourism,Tourism +339812,Tourism,Tourism +270913,Tourism,Tourism +270912,Tourism,Tourism +270911,Tourism,Tourism +315836,Health,Health +312253,Health,Health +312252,Health,Health +340375,Health,Health +331604,Health,Health +312253,Research and Development,Research and Development +312252,Research and Development,Research and Development +273144,Small Business,Small Business +273132,Small Business,Small Business +273147,Small Business,Small Business +273144,Taxation and Finance,Taxation and Finance +273132,Taxation and Finance,Taxation and Finance +273147,Taxation and Finance,Taxation and Finance +275749,Financial Institutions,Financial Institutions +275749,Taxation and Finance,Taxation and Finance +540609,Mining,Mining +539545,Mining,Mining +270994,Mining,Mining +528806,Economic Development,Economic Development +516909,Economic Development,Economic Development +358346,Economic Development,Economic Development +355020,Economic Development,Economic Development +331446,Economic Development,Economic Development +330112,Economic Development,Economic Development +292389,Economic Development,Economic Development +292309,Economic Development,Economic Development +288069,Economic Development,Economic Development +284329,Economic Development,Economic Development +273023,Economic Development,Economic Development +270997,Economic Development,Economic Development +480638,Economic Development,Economic Development +456532,Economic Development,Economic Development +454537,Economic Development,Economic Development +431823,Economic Development,Economic Development +431822,Economic Development,Economic Development +408515,Economic Development,Economic Development +408341,Economic Development,Economic Development +404326,Economic Development,Economic Development +404325,Economic Development,Economic Development +404323,Economic Development,Economic Development +401869,Economic Development,Economic Development +398457,Economic Development,Economic Development +394637,Economic Development,Economic Development +388815,Economic Development,Economic Development +382804,Economic Development,Economic Development +374700,Economic Development,Economic Development +374699,Economic Development,Economic Development +374698,Economic Development,Economic Development +374697,Economic Development,Economic Development +374696,Economic Development,Economic Development +278449,Education,Education +271210,Education,Education +275812,Consumer Issues,Consumer Issues +275811,Consumer Issues,Consumer Issues +352070,Consumer Issues,Consumer Issues +352069,Consumer Issues,Consumer Issues +352068,Consumer Issues,Consumer Issues +352067,Consumer Issues,Consumer Issues +333347,Consumer Issues,Consumer Issues +333346,Consumer Issues,Consumer Issues +331635,Consumer Issues,Consumer Issues +327627,Consumer Issues,Consumer Issues +327624,Consumer Issues,Consumer Issues +327616,Consumer Issues,Consumer Issues +327613,Consumer Issues,Consumer Issues +324190,Consumer Issues,Consumer Issues +324189,Consumer Issues,Consumer Issues +320594,Consumer Issues,Consumer Issues +320593,Consumer Issues,Consumer Issues +320592,Consumer Issues,Consumer Issues +318418,Consumer Issues,Consumer Issues +312429,Consumer Issues,Consumer Issues +309530,Consumer Issues,Consumer Issues +309529,Consumer Issues,Consumer Issues +304016,Consumer Issues,Consumer Issues +294529,Consumer Issues,Consumer Issues +294514,Consumer Issues,Consumer Issues +294513,Consumer Issues,Consumer Issues +294512,Consumer Issues,Consumer Issues +294510,Consumer Issues,Consumer Issues +291931,Consumer Issues,Consumer Issues +280610,Consumer Issues,Consumer Issues +280609,Consumer Issues,Consumer Issues +275819,Consumer Issues,Consumer Issues +275818,Consumer Issues,Consumer Issues +275817,Consumer Issues,Consumer Issues +275816,Consumer Issues,Consumer Issues +275815,Consumer Issues,Consumer Issues +275814,Consumer Issues,Consumer Issues +422192,Employment and Training,Employment and Training +389176,Employment and Training,Employment and Training +393797,Budget,Budget +393795,Budget,Budget +393792,Budget,Budget +393790,Budget,Budget +387148,Budget,Budget +387146,Budget,Budget +387135,Budget,Budget +381743,Budget,Budget +376764,Budget,Budget +368465,Budget,Budget +364786,Budget,Budget +355964,Budget,Budget +355963,Budget,Budget +355962,Budget,Budget +355961,Budget,Budget +333618,Budget,Budget +328237,Budget,Budget +328236,Budget,Budget +328235,Budget,Budget +328234,Budget,Budget +328233,Budget,Budget +328232,Budget,Budget +328230,Budget,Budget +328229,Budget,Budget +322145,Budget,Budget +312896,Budget,Budget +312888,Budget,Budget +312885,Budget,Budget +312879,Budget,Budget +309633,Budget,Budget +309632,Budget,Budget +309630,Budget,Budget +306090,Budget,Budget +302510,Budget,Budget +296751,Budget,Budget +296747,Budget,Budget +543455,Budget,Budget +539744,Budget,Budget +537043,Budget,Budget +533929,Budget,Budget +530649,Budget,Budget +528615,Budget,Budget +528466,Budget,Budget +528460,Budget,Budget +528458,Budget,Budget +528451,Budget,Budget +519417,Budget,Budget +517807,Budget,Budget +515465,Budget,Budget +514504,Budget,Budget +510655,Budget,Budget +504401,Budget,Budget +500956,Budget,Budget +500955,Budget,Budget +500950,Budget,Budget +497933,Budget,Budget +497932,Budget,Budget +494710,Budget,Budget +490352,Budget,Budget +484922,Budget,Budget +481262,Budget,Budget +473140,Budget,Budget +473127,Budget,Budget +473123,Budget,Budget +473122,Budget,Budget +473120,Budget,Budget +467105,Budget,Budget +463635,Budget,Budget +462339,Budget,Budget +461269,Budget,Budget +460462,Budget,Budget +453989,Budget,Budget +448752,Budget,Budget +446586,Budget,Budget +441046,Budget,Budget +435192,Budget,Budget +435190,Budget,Budget +432128,Budget,Budget +428079,Budget,Budget +425023,Budget,Budget +423659,Budget,Budget +421229,Budget,Budget +421223,Budget,Budget +421221,Budget,Budget +414927,Budget,Budget +414926,Budget,Budget +414922,Budget,Budget +414920,Budget,Budget +414914,Budget,Budget +406497,Budget,Budget +404749,Budget,Budget +401685,Budget,Budget +393800,Budget,Budget +475329,Immigration,Immigration +475316,Immigration,Immigration +392243,Immigration,Immigration +381869,Immigration,Immigration +379290,Immigration,Immigration +358114,Immigration,Immigration +352922,Immigration,Immigration +333626,Immigration,Immigration +333625,Immigration,Immigration +333619,Immigration,Immigration +504403,Immigration,Immigration +504399,Immigration,Immigration +484929,Immigration,Immigration +479456,Immigration,Immigration +476944,Immigration,Immigration +476943,Immigration,Immigration +374256,Infrastructure,Infrastructure +370871,Infrastructure,Infrastructure +368461,Infrastructure,Infrastructure +475331,Infrastructure,Infrastructure +473140,Infrastructure,Infrastructure +473133,Infrastructure,Infrastructure +446583,International Relations,International Relations +445037,International Relations,International Relations +433296,International Relations,International Relations +433295,International Relations,International Relations +433293,International Relations,International Relations +433292,International Relations,International Relations +370872,International Relations,International Relations +443790,Industry,Industry +443789,Industry,Industry +398954,Industry,Industry +392473,Industry,Industry +391296,Industry,Industry +385282,Industry,Industry +465057,Industry,Industry +455513,Industry,Industry +450154,Industry,Industry +275658,Industry,Industry +275656,Industry,Industry +300992,Industry,Industry +300971,Industry,Industry +289530,Industry,Industry +300993,Industry,Industry +300990,Industry,Industry +275659,Industry,Industry +271589,Industry,Industry +300988,Industry,Industry +275655,Industry,Industry +271610,Industry,Industry +393135,Environment,Environment +375466,Environment,Environment +271629,Environment,Environment +405854,Environment,Environment +271652,Financial Institutions,Financial Institutions +271651,Financial Institutions,Financial Institutions +326767,Financial Institutions,Financial Institutions +326925,Budget,Budget +482544,Economic Development,Economic Development +478419,Economic Development,Economic Development +452981,Economic Development,Economic Development +452980,Economic Development,Economic Development +452979,Economic Development,Economic Development +442776,Economic Development,Economic Development +433960,Economic Development,Economic Development +433959,Economic Development,Economic Development +427024,Economic Development,Economic Development +427023,Economic Development,Economic Development +427022,Economic Development,Economic Development +427021,Economic Development,Economic Development +427020,Economic Development,Economic Development +427019,Economic Development,Economic Development +427018,Economic Development,Economic Development +427017,Economic Development,Economic Development +413910,Economic Development,Economic Development +413907,Economic Development,Economic Development +413903,Economic Development,Economic Development +413901,Economic Development,Economic Development +526071,Economic Development,Economic Development +522718,Economic Development,Economic Development +515985,Economic Development,Economic Development +513451,Economic Development,Economic Development +513450,Economic Development,Economic Development +511426,Economic Development,Economic Development +511425,Economic Development,Economic Development +511422,Economic Development,Economic Development +511419,Economic Development,Economic Development +502829,Economic Development,Economic Development +491016,Economic Development,Economic Development +485434,Economic Development,Economic Development +476057,Health,Health +476054,Health,Health +356546,Health,Health +452981,Health,Health +452980,Health,Health +452979,Health,Health +442777,Health,Health +442776,Health,Health +433960,Health,Health +433959,Health,Health +427024,Health,Health +427023,Health,Health +427022,Health,Health +427021,Health,Health +427020,Health,Health +427019,Health,Health +427018,Health,Health +427017,Health,Health +413910,Health,Health +413907,Health,Health +413903,Health,Health +413901,Health,Health +391119,Health,Health +391117,Health,Health +391116,Health,Health +391114,Health,Health +391112,Health,Health +526071,Health,Health +526067,Health,Health +522718,Health,Health +522717,Health,Health +522700,Health,Health +522699,Health,Health +513451,Health,Health +513450,Health,Health +511426,Health,Health +511425,Health,Health +511422,Health,Health +511419,Health,Health +509190,Health,Health +506034,Health,Health +502829,Health,Health +491016,Health,Health +487982,Health,Health +485434,Health,Health +482544,Health,Health +482543,Health,Health +478419,Health,Health +427021,International Trade,International Trade +427020,International Trade,International Trade +413910,International Trade,International Trade +413907,International Trade,International Trade +413903,International Trade,International Trade +413901,International Trade,International Trade +391119,International Trade,International Trade +391117,International Trade,International Trade +391116,International Trade,International Trade +391114,International Trade,International Trade +391112,International Trade,International Trade +522717,International Trade,International Trade +522699,International Trade,International Trade +282833,Energy,Energy +282834,Environment,Environment +267390,Environment,Environment +375752,Budget,Budget +448080,International Trade,International Trade +267669,Infrastructure,Infrastructure +267669,Environment,Environment +289169,International Development,International Development +276824,Regional Development,Regional Development +276824,Sports,Sports +276824,Tourism,Tourism +267750,Environment,Environment +267750,Government Procurement,Government Procurement +267750,Economic Development,Economic Development +273699,Infrastructure,Infrastructure +273699,Transportation,Transportation +267771,Religion,Religion +273304,Infrastructure,Infrastructure +273304,International Trade,International Trade +273304,Security,Security +273304,Transportation,Transportation +273699,Employment and Training,Employment and Training +273699,Mining,Mining +351232,Labour,Labour +396291,Taxation and Finance,Taxation and Finance +310741,Environment,Environment +273891,Taxation and Finance,Taxation and Finance +318079,Health,Health +276769,Taxation and Finance,Taxation and Finance +354820,Small Business,Small Business +310316,Justice and Law Enforcement,Justice and Law Enforcement +275770,Environment,Environment +275770,Infrastructure,Infrastructure +277167,Justice and Law Enforcement,Justice and Law Enforcement +513686,Budget,Budget +268441,Justice and Law Enforcement,Justice and Law Enforcement +268653,Consumer Issues,Consumer Issues +268670,Employment and Training,Employment and Training +495414,Budget,Budget +268730,Employment and Training,Employment and Training +268789,International Trade,International Trade +351269,Consumer Issues,Questions touchant les consommateurs +268831,Immigration,Immigration +268831,Budget,Budget +268831,Labour,Labour +268850,Immigration,Immigration +301433,Labour,Labour +268851,Immigration,Immigration +268851,Labour,Labour +308629,Agriculture,Agriculture +276823,International Trade,International Trade +512689,Agriculture,Agriculture +400197,Consumer Issues,Consumer Issues +379493,Health,Health +517332,International Trade,International Trade +339092,Energy,Energy +311063,Environment,Environment +311063,Industry,Industry +339092,Infrastructure,Infrastructure +404362,Transportation,Transportation +268909,Internal Trade,Internal Trade +378393,Internal Trade,Internal Trade +398511,Transportation,Transportation +398501,Environment,Environment +273122,Energy,Energy +273122,Environment,Environment +273122,Industry,Industry +273122,Infrastructure,Infrastructure +273122,Transportation,Transportation +287749,Sports,Sports +417698,Privacy and Access to Information,Privacy and Access to Information +412415,Government Procurement,Government Procurement +337189,Taxation and Finance,Taxation and Finance +523160,International Trade,International Trade +273338,Regional Development,Développement régional +273338,Taxation and Finance,Impôts et finances +458981,Industry,Industry +383391,Internal Trade,Internal Trade +270629,Health,Health +270629,Industry,Industry +270629,Taxation and Finance,Taxation and Finance +324712,International Development,International Development +373984,Security,Security +269771,Health,Health +269771,Industry,Industry +269697,International Development,International Development +389571,Industry,Industry +389571,Labour,Labour +309490,Regional Development,Regional Development +335599,Taxation and Finance,Taxation and Finance +303170,Environment,Environment +327389,Employment and Training,Employment and Training +389693,International Development,International Development +313041,Transportation,Transportation +384601,Taxation and Finance,Taxation and Finance +326925,Taxation and Finance,Taxation and Finance +505924,Tourism,Tourism +387052,Economic Development,Economic Development +445229,Immigration,Immigration +270329,International Development,International Development +423650,International Relations,International Relations +331830,Transportation,Transportation +276009,International Trade,International Trade +348718,Health,Health +274469,Employment and Training,Employment and Training +274469,Energy,Energy +272032,Industry,Industry +272031,Labour,Labour +272032,Transportation,Transportation +273366,Infrastructure,Infrastructure +280931,Labour,Labour +271395,Consumer Issues,Consumer Issues +271395,Justice and Law Enforcement,Justice and Law Enforcement +271395,Taxation and Finance,Taxation and Finance +343236,Taxation and Finance,Impôts et finances +363042,Employment and Training,Employment and Training +484487,Energy,Energy +372834,Industry,Industry +395785,Intellectual Property,Intellectual Property +363042,Municipalities,Municipalities +445229,Small Business,Small Business +271138,Energy,Energy +271139,Environment,Environment +271137,Fisheries,Fisheries +271135,Transportation,Transportation +286831,Regional Development,Regional Development +286831,Transportation,Transportation +418646,Labour,Labour +414838,Immigration,Immigration +523177,Budget,Budget +288210,Consumer Issues,Consumer Issues +290249,Industry,Industry +270889,Labour,Labour +270889,Immigration,Immigration +270890,Labour,Labour +270890,Immigration,Immigration +270891,Labour,Labour +270891,Immigration,Immigration +270892,Labour,Labour +270892,Immigration,Immigration +270910,Small Business,Small Business +270910,Tourism,Tourism +270915,Small Business,Small Business +270915,Tourism,Tourism +327283,Health,Health +315836,Research and Development,Research and Development +273146,Small Business,Small Business +273146,Taxation and Finance,Taxation and Finance +273841,Immigration,Immigration +275750,Financial Institutions,Financial Institutions +275750,Taxation and Finance,Taxation and Finance +542288,Mining,Mining +373873,Economic Development,Economic Development +271078,Budget,Budget +319810,International Trade,International Trade +319810,Taxation and Finance,Taxation and Finance +289789,Small Business,Small Business +274092,Government Procurement,Government Procurement +294130,Education,Education +275813,Consumer Issues,Consumer Issues +389176,Budget,Budget +317851,Employment and Training,Employment and Training +271252,Research and Development,Research and Development +393799,Budget,Budget +475332,Immigration,Immigration +435178,Infrastructure,Infrastructure +319208,International Relations,International Relations +271371,Transportation,Transportation +271369,Security,Security +271370,Security,Security +271389,Privacy and Access to Information,Privacy and Access to Information +271390,Privacy and Access to Information,Privacy and Access to Information +271391,Privacy and Access to Information,Privacy and Access to Information +271392,Privacy and Access to Information,Privacy and Access to Information +296670,Health,Health +276011,Pensions,Pensions +321964,Industry,Industry +351323,Infrastructure,Infrastructure +294309,International Relations,International Relations +443791,Industry,Industry +391296,Taxation and Finance,Taxation and Finance +300984,Industry,Industry +271729,Budget,Budget +300980,Industry,Industry +275660,Industry,Industry +275657,Industry,Industry +393137,Environment,Environment +280049,Financial Institutions,Financial Institutions +353311,Budget,Budget +326925,Security,Security +485433,Economic Development,Economic Development +476062,Health,Health +427024,International Trade,International Trade +452981,Industry,Industry +442777,Intellectual Property,Intellectual Property +413901,Research and Development,Research and Development +277276,Employment and Training,Employment and Training +277276,Energy,Energy +278569,Consumer Issues,Consumer Issues +278569,International Trade,International Trade +277198,Employment and Training,Employment and Training +277198,Energy,Energy +280049,Economic Development,Economic Development +271809,Security,Security +526322,Infrastructure,Infrastructure +350177,Agriculture,Agriculture +328771,Employment and Training,Employment and Training +271870,International Relations,International Relations +543962,Climate,Climate +280767,Mining,Mining +353311,Housing,Housing +414001,Defence,Defence +414001,Government Procurement,Government Procurement +414001,Industry,Industry +274132,Taxation and Finance,Impôts et finances +328090,Environment,Environment +276998,Defence,Defence +276998,Government Procurement,Government Procurement +276998,Industry,Industry +356230,Climate,Climate +356230,Industry,Industry +420947,Fisheries,Fisheries +320789,Health,Health +330931,Government Procurement,Government Procurement +272992,Defence,Defence +272992,Research and Development,Research and Development +272992,Government Procurement,Government Procurement +297709,Budget,Budget +273524,Housing,Housing +272429,Security,Security +318214,Consumer Issues,Consumer Issues +272569,Security,Security +315621,Consumer Issues,Consumer Issues +287029,Research and Development,Research and Development +284590,Research and Development,Research and Development +293973,Research and Development,Research and Development +390125,Justice and Law Enforcement,Justice and Law Enforcement +272631,Privacy and Access to Information,Privacy and Access to Information +314469,Taxation and Finance,Taxation and Finance +314469,Justice and Law Enforcement,Justice and Law Enforcement +272730,Tourism,Tourism +349464,Education,Education +442989,Employment and Training,Employment and Training +396721,Health,Health +469930,Privacy and Access to Information,Privacy and Access to Information +272869,Climate,Climate +272929,Justice and Law Enforcement,Justice and Law Enforcement +278967,Employment and Training,Employment and Training +278956,Energy,Energy +321921,Environment,Environment +278965,Immigration,Immigration +278966,International Trade,International Trade +377000,International Trade,International Trade +509972,Justice and Law Enforcement,Justice and Law Enforcement +541575,Privacy and Access to Information,Privacy and Access to Information +275419,Transportation,Transportation +339690,Consumer Issues,Consumer Issues +277469,Environment,Environment +277469,Health,Health +438499,Budget,Budget +477911,Employment and Training,Employment and Training +275310,Transportation,Transports +273347,Defence,Defence +310345,Defence,Defence +541220,Privacy and Access to Information,Privacy and Access to Information +403021,International Trade,International Trade +403021,Taxation and Finance,Taxation and Finance +512922,Privacy and Access to Information,Privacy and Access to Information +336003,Budget,Budget +277520,Mining,Mining +273564,Government Procurement,Government Procurement +506034,International Trade,International Trade +506033,International Trade,International Trade +502829,International Trade,International Trade +487982,International Trade,International Trade +485434,International Trade,International Trade +485433,International Trade,International Trade +485432,International Trade,International Trade +478419,International Trade,International Trade +442777,International Trade,International Trade +442776,International Trade,International Trade +433960,International Trade,International Trade +433959,International Trade,International Trade +452980,Industry,Industry +452979,Industry,Industry +442777,Industry,Industry +442776,Industry,Industry +433960,Industry,Industry +433959,Industry,Industry +427024,Industry,Industry +427023,Industry,Industry +427022,Industry,Industry +427021,Industry,Industry +427020,Industry,Industry +427019,Industry,Industry +427018,Industry,Industry +391119,Industry,Industry +391117,Industry,Industry +391116,Industry,Industry +391114,Industry,Industry +391112,Industry,Industry +356546,Industry,Industry +278160,Industry,Industry +526067,Industry,Industry +522718,Industry,Industry +522717,Industry,Industry +522700,Industry,Industry +522699,Industry,Industry +515985,Industry,Industry +513451,Industry,Industry +513450,Industry,Industry +511426,Industry,Industry +511425,Industry,Industry +511422,Industry,Industry +511419,Industry,Industry +509190,Industry,Industry +506034,Industry,Industry +506033,Industry,Industry +502829,Industry,Industry +491016,Industry,Industry +487982,Industry,Industry +485433,Industry,Industry +485432,Industry,Industry +482544,Industry,Industry +482543,Industry,Industry +478419,Industry,Industry +476062,Industry,Industry +476057,Industry,Industry +476054,Industry,Industry +433960,Intellectual Property,Intellectual Property +433959,Intellectual Property,Intellectual Property +413910,Intellectual Property,Intellectual Property +413907,Intellectual Property,Intellectual Property +413903,Intellectual Property,Intellectual Property +413901,Intellectual Property,Intellectual Property +522718,Research and Development,Research and Development +522717,Research and Development,Research and Development +509190,Research and Development,Research and Development +506034,Research and Development,Research and Development +487982,Research and Development,Research and Development +485434,Research and Development,Research and Development +433960,Research and Development,Research and Development +433959,Research and Development,Research and Development +427024,Research and Development,Research and Development +427023,Research and Development,Research and Development +427022,Research and Development,Research and Development +427021,Research and Development,Research and Development +427020,Research and Development,Research and Development +427019,Research and Development,Research and Development +427018,Research and Development,Research and Development +427017,Research and Development,Research and Development +413910,Research and Development,Research and Development +413907,Research and Development,Research and Development +413903,Research and Development,Research and Development +347058,Security,Security +336098,Security,Security +315298,Security,Security +509544,Infrastructure,Infrastructure +488082,Infrastructure,Infrastructure +394852,Infrastructure,Infrastructure +394851,Infrastructure,Infrastructure +340343,Infrastructure,Infrastructure +425956,Infrastructure,Infrastructure +314189,Employment and Training,Employment and Training +460080,Employment and Training,Employment and Training +292710,Employment and Training,Employment and Training +274371,Employment and Training,Employment and Training +418633,Employment and Training,Employment and Training +401432,Employment and Training,Employment and Training +394954,Employment and Training,Employment and Training +389805,Employment and Training,Employment and Training +388819,Employment and Training,Employment and Training +372450,Employment and Training,Employment and Training +371176,Employment and Training,Employment and Training +334252,Employment and Training,Employment and Training +330265,Employment and Training,Employment and Training +328970,Employment and Training,Employment and Training +328774,Employment and Training,Employment and Training +537654,Climate,Climate +515978,Climate,Climate +301110,Climate,Climate +275824,Climate,Climate +271889,Climate,Climate +450114,Climate,Climate +445035,Climate,Climate +442230,Climate,Climate +435191,Climate,Climate +280765,Mining,Mining +280764,Mining,Mining +280772,Mining,Mining +280771,Mining,Mining +280770,Mining,Mining +326925,Housing,Housing +326924,Housing,Housing +386331,Defence,Defence +383461,Defence,Defence +386331,Government Procurement,Government Procurement +383461,Government Procurement,Government Procurement +386331,Industry,Industry +274131,Taxation and Finance,Impôts et finances +274130,Taxation and Finance,Impôts et finances +274129,Taxation and Finance,Impôts et finances +276010,Environment,Environment +276996,Defence,Defence +276993,Defence,Defence +277011,Defence,Defence +277008,Defence,Defence +277006,Defence,Defence +277003,Defence,Defence +277000,Defence,Defence +276996,Government Procurement,Government Procurement +276993,Government Procurement,Government Procurement +277011,Government Procurement,Government Procurement +277008,Government Procurement,Government Procurement +277006,Government Procurement,Government Procurement +277003,Government Procurement,Government Procurement +277000,Government Procurement,Government Procurement +276996,Industry,Industry +276993,Industry,Industry +277011,Industry,Industry +277008,Industry,Industry +277006,Industry,Industry +277003,Industry,Industry +277000,Industry,Industry +352469,Climate,Climate +352469,Industry,Industry +348699,Industry,Industry +281069,Industry,Industry +509559,Fisheries,Fisheries +504125,Fisheries,Fisheries +407228,Fisheries,Fisheries +392073,Fisheries,Fisheries +384419,Fisheries,Fisheries +479110,Fisheries,Fisheries +462278,Fisheries,Fisheries +461218,Fisheries,Fisheries +443144,Fisheries,Fisheries +443136,Fisheries,Fisheries +441255,Fisheries,Fisheries +441254,Fisheries,Fisheries +441252,Fisheries,Fisheries +441213,Fisheries,Fisheries +441212,Fisheries,Fisheries +437012,Fisheries,Fisheries +437010,Fisheries,Fisheries +437008,Fisheries,Fisheries +437006,Fisheries,Fisheries +437004,Fisheries,Fisheries +437002,Fisheries,Fisheries +437001,Fisheries,Fisheries +437000,Fisheries,Fisheries +436999,Fisheries,Fisheries +436998,Fisheries,Fisheries +434526,Fisheries,Fisheries +434525,Fisheries,Fisheries +434524,Fisheries,Fisheries +434523,Fisheries,Fisheries +434522,Fisheries,Fisheries +434521,Fisheries,Fisheries +433145,Fisheries,Fisheries +433144,Fisheries,Fisheries +433143,Fisheries,Fisheries +433142,Fisheries,Fisheries +291629,Budget,Budget +273524,Budget,Budget +273519,Budget,Budget +273517,Budget,Budget +340057,Budget,Budget +340055,Budget,Budget +336354,Budget,Budget +297710,Budget,Budget +273519,Housing,Housing +273517,Housing,Housing +344736,Housing,Housing +340057,Housing,Housing +340055,Housing,Housing +336354,Housing,Housing +327090,Housing,Housing +297710,Housing,Housing +297709,Housing,Housing +291629,Housing,Housing +272569,Consumer Issues,Consumer Issues +272570,Consumer Issues,Consumer Issues +272589,Research and Development,Research and Development +298251,Research and Development,Research and Development +290992,Research and Development,Research and Development +290986,Research and Development,Research and Development +290977,Research and Development,Research and Development +290250,Research and Development,Research and Development +284589,Research and Development,Research and Development +272590,Research and Development,Research and Development +303491,Research and Development,Research and Development +298269,Research and Development,Research and Development +298253,Research and Development,Research and Development +298250,Research and Development,Research and Development +293989,Research and Development,Research and Development +293974,Research and Development,Research and Development +290991,Research and Development,Research and Development +290982,Research and Development,Research and Development +284591,Research and Development,Research and Development +293970,Research and Development,Research and Development +272593,Research and Development,Research and Development +303509,Research and Development,Research and Development +303470,Research and Development,Research and Development +298249,Research and Development,Research and Development +390123,Justice and Law Enforcement,Justice and Law Enforcement +384547,Justice and Law Enforcement,Justice and Law Enforcement +355580,Justice and Law Enforcement,Justice and Law Enforcement +352066,Justice and Law Enforcement,Justice and Law Enforcement +352065,Justice and Law Enforcement,Justice and Law Enforcement +350241,Justice and Law Enforcement,Justice and Law Enforcement +347907,Justice and Law Enforcement,Justice and Law Enforcement +340031,Justice and Law Enforcement,Justice and Law Enforcement +339220,Justice and Law Enforcement,Justice and Law Enforcement +339219,Justice and Law Enforcement,Justice and Law Enforcement +301474,Justice and Law Enforcement,Justice and Law Enforcement +272631,Justice and Law Enforcement,Justice and Law Enforcement +277516,Taxation and Finance,Taxation and Finance +272671,Taxation and Finance,Taxation and Finance +322415,Taxation and Finance,Taxation and Finance +272671,Justice and Law Enforcement,Justice and Law Enforcement +496834,Education,Education +496833,Education,Education +331686,Education,Education +315556,Education,Education +295952,Education,Education +295951,Education,Education +295950,Education,Education +295949,Education,Education +295929,Education,Education +277222,Education,Education +277219,Education,Education +395859,Education,Education +389308,Education,Education +384656,Education,Education +384650,Education,Education +375379,Education,Education +375378,Education,Education +375377,Education,Education +442988,Employment and Training,Employment and Training +419174,Employment and Training,Employment and Training +333739,Employment and Training,Employment and Training +333735,Employment and Training,Employment and Training +331687,Employment and Training,Employment and Training +331686,Employment and Training,Employment and Training +327517,Employment and Training,Employment and Training +327511,Employment and Training,Employment and Training +318471,Employment and Training,Employment and Training +318470,Employment and Training,Employment and Training +315558,Employment and Training,Employment and Training +315556,Employment and Training,Employment and Training +309794,Employment and Training,Employment and Training +309793,Employment and Training,Employment and Training +295952,Employment and Training,Employment and Training +295951,Employment and Training,Employment and Training +295950,Employment and Training,Employment and Training +295949,Employment and Training,Employment and Training +295931,Employment and Training,Employment and Training +295929,Employment and Training,Employment and Training +277222,Employment and Training,Employment and Training +277219,Employment and Training,Employment and Training +272889,Employment and Training,Employment and Training +399632,Employment and Training,Employment and Training +399630,Employment and Training,Employment and Training +396732,Employment and Training,Employment and Training +396709,Employment and Training,Employment and Training +396706,Employment and Training,Employment and Training +396692,Employment and Training,Employment and Training +395859,Employment and Training,Employment and Training +394676,Employment and Training,Employment and Training +394673,Employment and Training,Employment and Training +394671,Employment and Training,Employment and Training +389308,Employment and Training,Employment and Training +389302,Employment and Training,Employment and Training +384655,Employment and Training,Employment and Training +384653,Employment and Training,Employment and Training +384650,Employment and Training,Employment and Training +384649,Employment and Training,Employment and Training +384647,Employment and Training,Employment and Training +384645,Employment and Training,Employment and Training +375379,Employment and Training,Employment and Training +375378,Employment and Training,Employment and Training +375377,Employment and Training,Employment and Training +375376,Employment and Training,Employment and Training +349464,Employment and Training,Employment and Training +335490,Employment and Training,Employment and Training +520203,Employment and Training,Employment and Training +511797,Employment and Training,Employment and Training +511796,Employment and Training,Employment and Training +511795,Employment and Training,Employment and Training +511793,Employment and Training,Employment and Training +496834,Employment and Training,Employment and Training +496833,Employment and Training,Employment and Training +444740,Employment and Training,Employment and Training +496834,Health,Health +496833,Health,Health +396702,Health,Health +395859,Health,Health +394677,Health,Health +394673,Health,Health +394672,Health,Health +389308,Health,Health +386556,Health,Health +384650,Health,Health +375379,Health,Health +375378,Health,Health +375377,Health,Health +375375,Health,Health +375374,Health,Health +349464,Health,Health +349462,Health,Health +335491,Health,Health +333735,Health,Health +331688,Health,Health +327519,Health,Health +327518,Health,Health +327517,Health,Health +327515,Health,Health +324281,Health,Health +324279,Health,Health +324278,Health,Health +315557,Health,Health +315556,Health,Health +312570,Health,Health +309792,Health,Health +295953,Health,Health +295929,Health,Health +277222,Health,Health +277219,Health,Health +272890,Health,Health +442988,Health,Health +399632,Health,Health +399631,Health,Health +445095,Privacy and Access to Information,Privacy and Access to Information +445094,Privacy and Access to Information,Privacy and Access to Information +543267,Privacy and Access to Information,Privacy and Access to Information +541143,Privacy and Access to Information,Privacy and Access to Information +536807,Privacy and Access to Information,Privacy and Access to Information +278965,Employment and Training,Employment and Training +328341,Employment and Training,Employment and Training +328340,Employment and Training,Employment and Training +328339,Employment and Training,Employment and Training +328338,Employment and Training,Employment and Training +321930,Employment and Training,Employment and Training +321928,Employment and Training,Employment and Training +321923,Employment and Training,Employment and Training +321921,Employment and Training,Employment and Training +321919,Employment and Training,Employment and Training +321918,Employment and Training,Employment and Training +309627,Employment and Training,Employment and Training +309626,Employment and Training,Employment and Training +278955,Energy,Energy +278954,Energy,Energy +332453,Energy,Energy +332452,Energy,Energy +332451,Energy,Energy +332450,Energy,Energy +328341,Energy,Energy +328340,Energy,Energy +328339,Energy,Energy +328338,Energy,Energy +321928,Energy,Energy +321923,Energy,Energy +321921,Energy,Energy +321919,Energy,Energy +321918,Energy,Energy +309627,Energy,Energy +309626,Energy,Energy +278967,Energy,Energy +278966,Energy,Energy +278965,Energy,Energy +278964,Energy,Energy +278962,Energy,Energy +278961,Energy,Energy +278959,Energy,Energy +278958,Energy,Energy +278957,Energy,Energy +321919,Environment,Environment +321918,Environment,Environment +278967,Environment,Environment +278962,Environment,Environment +278959,Environment,Environment +278958,Environment,Environment +278957,Environment,Environment +278956,Environment,Environment +278955,Environment,Environment +278954,Environment,Environment +321928,Environment,Environment +321923,Environment,Environment +321921,International Trade,International Trade +489834,Justice and Law Enforcement,Justice and Law Enforcement +477141,Justice and Law Enforcement,Justice and Law Enforcement +341118,Justice and Law Enforcement,Justice and Law Enforcement +324447,Justice and Law Enforcement,Justice and Law Enforcement +324446,Justice and Law Enforcement,Justice and Law Enforcement +296289,Justice and Law Enforcement,Justice and Law Enforcement +273050,Justice and Law Enforcement,Justice and Law Enforcement +449589,Justice and Law Enforcement,Justice and Law Enforcement +449588,Justice and Law Enforcement,Justice and Law Enforcement +449586,Justice and Law Enforcement,Justice and Law Enforcement +449583,Justice and Law Enforcement,Justice and Law Enforcement +435052,Justice and Law Enforcement,Justice and Law Enforcement +435044,Justice and Law Enforcement,Justice and Law Enforcement +428568,Justice and Law Enforcement,Justice and Law Enforcement +428559,Justice and Law Enforcement,Justice and Law Enforcement +405771,Justice and Law Enforcement,Justice and Law Enforcement +405770,Justice and Law Enforcement,Justice and Law Enforcement +402803,Justice and Law Enforcement,Justice and Law Enforcement +543397,Justice and Law Enforcement,Justice and Law Enforcement +537897,Justice and Law Enforcement,Justice and Law Enforcement +515779,Justice and Law Enforcement,Justice and Law Enforcement +537897,Privacy and Access to Information,Privacy and Access to Information +469911,Privacy and Access to Information,Privacy and Access to Information +273050,Privacy and Access to Information,Privacy and Access to Information +463475,Privacy and Access to Information,Privacy and Access to Information +445261,Privacy and Access to Information,Privacy and Access to Information +445259,Privacy and Access to Information,Privacy and Access to Information +543397,Privacy and Access to Information,Privacy and Access to Information +339689,Consumer Issues,Consumer Issues +339669,Consumer Issues,Consumer Issues +506794,Budget,Budget +485828,Budget,Budget +309679,Budget,Budget +278049,Budget,Budget +277175,Budget,Budget +277173,Budget,Budget +277163,Budget,Budget +277161,Budget,Budget +396336,Budget,Budget +376745,Budget,Budget +373648,Budget,Budget +370785,Budget,Budget +369117,Budget,Budget +369116,Budget,Budget +349332,Budget,Budget +319085,Budget,Budget +442603,Budget,Budget +473198,Employment and Training,Employment and Training +473192,Employment and Training,Employment and Training +277170,Employment and Training,Employment and Training +485834,Employment and Training,Employment and Training +485832,Employment and Training,Employment and Training +275309,Transportation,Transports +279269,Transportation,Transports +275314,Transportation,Transports +275313,Transportation,Transports +275312,Transportation,Transports +275311,Transportation,Transports +284829,Defence,Defence +273351,Defence,Defence +536971,Privacy and Access to Information,Privacy and Access to Information +491269,Privacy and Access to Information,Privacy and Access to Information +273454,Privacy and Access to Information,Privacy and Access to Information +470151,Privacy and Access to Information,Privacy and Access to Information +445260,Privacy and Access to Information,Privacy and Access to Information +543264,Privacy and Access to Information,Privacy and Access to Information +429117,International Trade,International Trade +429101,International Trade,International Trade +353834,International Trade,International Trade +273457,International Trade,International Trade +400302,Taxation and Finance,Taxation and Finance +390402,Taxation and Finance,Taxation and Finance +273457,Taxation and Finance,Taxation and Finance +382975,Taxation and Finance,Taxation and Finance +379690,Taxation and Finance,Taxation and Finance +362205,Taxation and Finance,Taxation and Finance +543268,Taxation and Finance,Taxation and Finance +536978,Taxation and Finance,Taxation and Finance +536971,Taxation and Finance,Taxation and Finance +536969,Taxation and Finance,Taxation and Finance +533828,Taxation and Finance,Taxation and Finance +522976,Taxation and Finance,Taxation and Finance +517684,Taxation and Finance,Taxation and Finance +451908,Taxation and Finance,Taxation and Finance +429114,Taxation and Finance,Taxation and Finance +429101,Taxation and Finance,Taxation and Finance +429100,Taxation and Finance,Taxation and Finance +502340,Privacy and Access to Information,Privacy and Access to Information +470921,Privacy and Access to Information,Privacy and Access to Information +273480,Privacy and Access to Information,Privacy and Access to Information +459583,Privacy and Access to Information,Privacy and Access to Information +445553,Privacy and Access to Information,Privacy and Access to Information +445551,Privacy and Access to Information,Privacy and Access to Information +543783,Privacy and Access to Information,Privacy and Access to Information +541238,Privacy and Access to Information,Privacy and Access to Information +537806,Privacy and Access to Information,Privacy and Access to Information +535512,Privacy and Access to Information,Privacy and Access to Information +535508,Privacy and Access to Information,Privacy and Access to Information +535503,Privacy and Access to Information,Privacy and Access to Information +535498,Privacy and Access to Information,Privacy and Access to Information +535484,Privacy and Access to Information,Privacy and Access to Information +531725,Privacy and Access to Information,Privacy and Access to Information +530242,Privacy and Access to Information,Privacy and Access to Information +519818,Privacy and Access to Information,Privacy and Access to Information +325042,Budget,Budget +470774,Budget,Budget +273487,Budget,Budget +273480,Budget,Budget +376995,Budget,Budget +277259,Mining,Mining +277258,Mining,Mining +323219,Mining,Mining +323218,Mining,Mining +323217,Mining,Mining +323214,Mining,Mining +318250,Mining,Mining +318249,Mining,Mining +303489,Mining,Mining +303431,Mining,Mining +303418,Mining,Mining +303410,Mining,Mining +303330,Mining,Mining +303321,Mining,Mining +277527,Mining,Mining +273594,Privacy and Access to Information,Privacy and Access to Information +544408,Privacy and Access to Information,Privacy and Access to Information +470732,Privacy and Access to Information,Privacy and Access to Information +472986,Employment and Training,Employment and Training +461537,Employment and Training,Employment and Training +448135,Employment and Training,Employment and Training +448134,Employment and Training,Employment and Training +442691,Employment and Training,Employment and Training +383315,Employment and Training,Employment and Training +379819,Employment and Training,Employment and Training +338769,Employment and Training,Employment and Training +338768,Employment and Training,Employment and Training +338766,Employment and Training,Employment and Training +338764,Employment and Training,Employment and Training +338757,Employment and Training,Employment and Training +338754,Employment and Training,Employment and Training +327521,Employment and Training,Employment and Training +324659,Employment and Training,Employment and Training +309897,Employment and Training,Employment and Training +309892,Employment and Training,Employment and Training +273656,Employment and Training,Employment and Training +517960,Employment and Training,Employment and Training +324669,Employment and Training,Employment and Training +324658,Employment and Training,Employment and Training +309896,Employment and Training,Employment and Training +309893,Employment and Training,Employment and Training +273695,Employment and Training,Employment and Training +365113,Employment and Training,Employment and Training +448137,Employment and Training,Employment and Training +438142,Employment and Training,Employment and Training +528304,Employment and Training,Employment and Training +472982,Employment and Training,Employment and Training +461545,Employment and Training,Employment and Training +461540,Employment and Training,Employment and Training +461539,Employment and Training,Employment and Training +461535,Employment and Training,Employment and Training +461532,Transportation,Transportation +544518,Transportation,Transportation +286334,Transportation,Transportation +286329,Transportation,Transportation +273696,Transportation,Transportation +438802,Transportation,Transportation +391085,Transportation,Transportation +372735,Transportation,Transportation +364804,Transportation,Transportation +364604,Transportation,Transportation +364603,Transportation,Transportation +351519,Transportation,Transportation +351515,Transportation,Transportation +341985,Transportation,Transportation +341977,Transportation,Transportation +341969,Transportation,Transportation +331656,Transportation,Transportation +324714,Transportation,Transportation +324669,Transportation,Transportation +324356,Transportation,Transportation +517960,Transportation,Transportation +513285,Transportation,Transportation +513278,Transportation,Transportation +508066,Transportation,Transportation +470956,Transportation,Transportation +467865,Transportation,Transportation +461545,Transportation,Transportation +461540,Transportation,Transportation +461539,Transportation,Transportation +461537,Transportation,Transportation +461535,Transportation,Transportation +461534,Transportation,Transportation +426314,Environment,Environment +426312,Environment,Environment +324714,Environment,Environment +324692,Environment,Environment +324690,Environment,Environment +315874,Environment,Environment +295029,Environment,Environment +295011,Environment,Environment +295009,Environment,Environment +286330,Environment,Environment +273697,Environment,Environment +341969,Environment,Environment +364805,Environment,Environment +358221,Environment,Environment +349245,Environment,Environment +349235,Environment,Environment +341985,Environment,Environment +341977,Environment,Environment +426311,Environment,Environment +426310,Environment,Environment +426309,Environment,Environment +426308,Environment,Environment +426307,Environment,Environment +426297,Environment,Environment +426285,Environment,Environment +424048,Environment,Environment +424010,Environment,Environment +424002,Environment,Environment +422108,Environment,Environment +421680,Environment,Environment +421667,Environment,Environment +421661,Environment,Environment +421646,Environment,Environment +421643,Environment,Environment +421641,Environment,Environment +420230,Environment,Environment +420225,Environment,Environment +420223,Environment,Environment +420222,Environment,Environment +420221,Environment,Environment +420218,Environment,Environment +420217,Environment,Environment +420144,Environment,Environment +418068,Environment,Environment +418066,Environment,Environment +418062,Environment,Environment +418058,Environment,Environment +418055,Environment,Environment +416090,Environment,Environment +416087,Environment,Environment +416075,Environment,Environment +416066,Environment,Environment +416058,Environment,Environment +416054,Environment,Environment +413137,Environment,Environment +409936,Environment,Environment +409935,Environment,Environment +409933,Environment,Environment +409932,Environment,Environment +408132,Environment,Environment +407882,Environment,Environment +406477,Environment,Environment +406476,Environment,Environment +405307,Environment,Environment +405304,Environment,Environment +405228,Environment,Environment +405227,Environment,Environment +405226,Environment,Environment +405222,Environment,Environment +405221,Environment,Environment +405211,Environment,Environment +405206,Environment,Environment +403799,Environment,Environment +403735,Environment,Environment +403733,Environment,Environment +403730,Environment,Environment +403723,Environment,Environment +403717,Environment,Environment +395317,Environment,Environment +395315,Environment,Environment +395314,Environment,Environment +395313,Environment,Environment +382442,Environment,Environment +379813,Environment,Environment +379714,Environment,Environment +379707,Environment,Environment +376905,Environment,Environment +373476,Environment,Environment +537496,Environment,Environment +537486,Environment,Environment +537482,Environment,Environment +537479,Environment,Environment +537476,Environment,Environment +535929,Environment,Environment +535615,Environment,Environment +535611,Environment,Environment +535605,Environment,Environment +535599,Environment,Environment +535569,Environment,Environment +535555,Environment,Environment +535549,Environment,Environment +535546,Environment,Environment +535514,Environment,Environment +528304,Environment,Environment +527858,Environment,Environment +527857,Environment,Environment +527856,Environment,Environment +524935,Environment,Environment +524931,Environment,Environment +524930,Environment,Environment +524894,Environment,Environment +517982,Environment,Environment +517975,Environment,Environment +517968,Environment,Environment +517960,Environment,Environment +517958,Environment,Environment +517944,Environment,Environment +517928,Environment,Environment +517919,Environment,Environment +515846,Environment,Environment +515842,Environment,Environment +515836,Environment,Environment +513278,Environment,Environment +504637,Environment,Environment +504631,Environment,Environment +504623,Environment,Environment +502264,Environment,Environment +502257,Environment,Environment +502244,Environment,Environment +499350,Environment,Environment +491434,Environment,Environment +479084,Environment,Environment +479082,Environment,Environment +475491,Environment,Environment +461545,Environment,Environment +461540,Environment,Environment +461539,Environment,Environment +461537,Environment,Environment +461535,Environment,Environment +455945,Environment,Environment +455942,Environment,Environment +449750,Environment,Environment +442690,Environment,Environment +442688,Environment,Environment +442686,Environment,Environment +442684,Environment,Environment +442683,Environment,Environment +438802,Environment,Environment +438800,Environment,Environment +438191,Environment,Environment +438188,Environment,Environment +430945,Environment,Environment +430929,Environment,Environment +430920,Environment,Environment +430914,Environment,Environment +429246,Environment,Environment +429244,Environment,Environment +429225,Environment,Environment +429216,Environment,Environment +429199,Environment,Environment +429195,Environment,Environment +429193,Environment,Environment +426323,Environment,Environment +426322,Environment,Environment +426321,Environment,Environment +426320,Environment,Environment +426319,Environment,Environment +426318,Environment,Environment +273832,Economic Development,Economic Development +526697,Budget,Budget +526694,Budget,Budget +329589,Budget,Budget +309955,Budget,Budget +373101,Budget,Budget +373100,Budget,Budget +373099,Budget,Budget +373098,Budget,Budget +373097,Budget,Budget +373096,Budget,Budget +373095,Budget,Budget +373094,Budget,Budget +373093,Budget,Budget +373092,Budget,Budget +373091,Budget,Budget +373090,Budget,Budget +373089,Budget,Budget +373088,Budget,Budget +373087,Budget,Budget +373086,Budget,Budget +373085,Budget,Budget +373084,Budget,Budget +373083,Budget,Budget +373082,Budget,Budget +373081,Budget,Budget +373080,Budget,Budget +373079,Budget,Budget +373078,Budget,Budget +373077,Budget,Budget +373076,Budget,Budget +373075,Budget,Budget +373074,Budget,Budget +373073,Budget,Budget +373072,Budget,Budget +373071,Budget,Budget +373070,Budget,Budget +373069,Budget,Budget +373068,Budget,Budget +373066,Budget,Budget +373065,Budget,Budget +373063,Budget,Budget +373062,Budget,Budget +373061,Budget,Budget +373060,Budget,Budget +371954,Budget,Budget +371950,Budget,Budget +355172,Budget,Budget +355169,Budget,Budget +355168,Budget,Budget +355167,Budget,Budget +355166,Budget,Budget +355164,Budget,Budget +355163,Budget,Budget +355160,Budget,Budget +355159,Budget,Budget +355157,Budget,Budget +355156,Budget,Budget +355155,Budget,Budget +355154,Budget,Budget +355153,Budget,Budget +355152,Budget,Budget +355151,Budget,Budget +355150,Budget,Budget +355148,Budget,Budget +355147,Budget,Budget +355145,Budget,Budget +355144,Budget,Budget +355143,Budget,Budget +355141,Budget,Budget +355140,Budget,Budget +355139,Budget,Budget +355137,Budget,Budget +355136,Budget,Budget +355135,Budget,Budget +355134,Budget,Budget +355132,Budget,Budget +355130,Budget,Budget +355129,Budget,Budget +355127,Budget,Budget +355126,Budget,Budget +355125,Budget,Budget +355122,Budget,Budget +355120,Budget,Budget +355118,Budget,Budget +355117,Budget,Budget +355114,Budget,Budget +355113,Budget,Budget +355112,Budget,Budget +355111,Budget,Budget +355109,Budget,Budget +355108,Budget,Budget +355107,Budget,Budget +355106,Budget,Budget +355105,Budget,Budget +339453,Budget,Budget +467297,Budget,Budget +446618,Budget,Budget +446356,Budget,Budget +446355,Budget,Budget +446353,Budget,Budget +446351,Budget,Budget +446350,Budget,Budget +446348,Budget,Budget +446337,Budget,Budget +446335,Budget,Budget +446318,Budget,Budget +446316,Budget,Budget +446308,Budget,Budget +446300,Budget,Budget +446299,Budget,Budget +446297,Budget,Budget +446296,Budget,Budget +446295,Budget,Budget +446294,Budget,Budget +446293,Budget,Budget +446292,Budget,Budget +446291,Budget,Budget +446290,Budget,Budget +446289,Budget,Budget +446288,Budget,Budget +446287,Budget,Budget +446286,Budget,Budget +446285,Budget,Budget +446284,Budget,Budget +446283,Budget,Budget +446281,Budget,Budget +446279,Budget,Budget +446278,Budget,Budget +446277,Budget,Budget +446276,Budget,Budget +446275,Budget,Budget +446274,Budget,Budget +446273,Budget,Budget +446272,Budget,Budget +446271,Budget,Budget +446270,Budget,Budget +446269,Budget,Budget +446267,Budget,Budget +446266,Budget,Budget +446264,Budget,Budget +444481,Budget,Budget +444426,Budget,Budget +444342,Budget,Budget +444263,Budget,Budget +418533,Budget,Budget +395960,Budget,Budget +395959,Budget,Budget +395958,Budget,Budget +395957,Budget,Budget +395956,Budget,Budget +395955,Budget,Budget +395954,Budget,Budget +395953,Budget,Budget +395952,Budget,Budget +395951,Budget,Budget +395950,Budget,Budget +395949,Budget,Budget +395947,Budget,Budget +395944,Budget,Budget +395942,Budget,Budget +395940,Budget,Budget +395938,Budget,Budget +395937,Budget,Budget +395934,Budget,Budget +395926,Budget,Budget +395923,Budget,Budget +395921,Budget,Budget +395920,Budget,Budget +395918,Budget,Budget +395917,Budget,Budget +395916,Budget,Budget +395915,Budget,Budget +395914,Budget,Budget +395913,Budget,Budget +395912,Budget,Budget +395909,Budget,Budget +395908,Budget,Budget +395906,Budget,Budget +395901,Budget,Budget +395899,Budget,Budget +395898,Budget,Budget +395897,Budget,Budget +395895,Budget,Budget +395893,Budget,Budget +395892,Budget,Budget +395891,Budget,Budget +395889,Budget,Budget +395886,Budget,Budget +395884,Budget,Budget +395883,Budget,Budget +395882,Budget,Budget +395879,Budget,Budget +395876,Budget,Budget +395874,Budget,Budget +395870,Budget,Budget +375058,Budget,Budget +374232,Budget,Budget +373113,Budget,Budget +373112,Budget,Budget +373111,Budget,Budget +373110,Budget,Budget +373109,Budget,Budget +373108,Budget,Budget +373107,Budget,Budget +373106,Budget,Budget +373105,Budget,Budget +373104,Budget,Budget +373103,Budget,Budget +373102,Budget,Budget +296820,Economic Development,Développement économique +296818,Economic Development,Développement économique +296820,Regional Development,Développement régional +296818,Regional Development,Développement régional +296820,Environment,Environnement +296818,Environment,Environnement +296820,Taxation and Finance,Impôts et finances +296818,Taxation and Finance,Impôts et finances +296820,Mining,Mines +296818,Mining,Mines +296820,International Relations,Relations internationales +296818,International Relations,Relations internationales +281078,Economic Development,Economic Development +281076,Economic Development,Economic Development +350290,Economic Development,Economic Development +338498,Economic Development,Economic Development +281084,Economic Development,Economic Development +350290,Employment and Training,Employment and Training +338498,Employment and Training,Employment and Training +281084,Employment and Training,Employment and Training +281082,Employment and Training,Employment and Training +281078,Employment and Training,Employment and Training +281078,Environment,Environment +281076,Environment,Environment +338498,Environment,Environment +281084,Environment,Environment +281078,Fisheries,Fisheries +281076,Fisheries,Fisheries +281084,Fisheries,Fisheries +281078,Mining,Mining +281076,Mining,Mining +374184,Mining,Mining +350290,Mining,Mining +338498,Mining,Mining +281084,Mining,Mining +318236,Employment and Training,Employment and Training +318234,Employment and Training,Employment and Training +333958,Employment and Training,Employment and Training +333957,Employment and Training,Employment and Training +333956,Employment and Training,Employment and Training +333955,Employment and Training,Employment and Training +333954,Employment and Training,Employment and Training +318244,Employment and Training,Employment and Training +318243,Employment and Training,Employment and Training +318242,Employment and Training,Employment and Training +318241,Employment and Training,Employment and Training +318240,Employment and Training,Employment and Training +318238,Employment and Training,Employment and Training +333955,Energy,Energy +333954,Energy,Energy +318244,Energy,Energy +318243,Energy,Energy +318242,Energy,Energy +318241,Energy,Energy +318240,Energy,Energy +318239,Energy,Energy +318238,Energy,Energy +318237,Energy,Energy +318236,Energy,Energy +318234,Energy,Energy +310266,Energy,Energy +278949,Energy,Energy +278935,Energy,Energy +278934,Energy,Energy +278933,Energy,Energy +278932,Energy,Energy +278931,Energy,Energy +278930,Energy,Energy +278929,Energy,Energy +333958,Energy,Energy +333957,Energy,Energy +278931,Environment,Environment +278929,Environment,Environment +318239,Environment,Environment +278949,Environment,Environment +278935,Environment,Environment +278934,Environment,Environment +278933,Environment,Environment +302489,International Trade,International Trade +385779,Fisheries,Fisheries +462870,Fisheries,Fisheries +310609,Fisheries,Fisheries +321782,Employment and Training,Employment and Training +321780,Employment and Training,Employment and Training +321786,Employment and Training,Employment and Training +310971,Constitutional Issues,Constitutional Issues +310969,Constitutional Issues,Constitutional Issues +319919,Constitutional Issues,Constitutional Issues +319918,Constitutional Issues,Constitutional Issues +319915,Constitutional Issues,Constitutional Issues +319914,Constitutional Issues,Constitutional Issues +319911,Constitutional Issues,Constitutional Issues +319910,Constitutional Issues,Constitutional Issues +277269,Justice and Law Enforcement,Justice and Law Enforcement +276804,Justice and Law Enforcement,Justice and Law Enforcement +319919,Justice and Law Enforcement,Justice and Law Enforcement +319918,Justice and Law Enforcement,Justice and Law Enforcement +319915,Justice and Law Enforcement,Justice and Law Enforcement +319914,Justice and Law Enforcement,Justice and Law Enforcement +319911,Justice and Law Enforcement,Justice and Law Enforcement +319910,Justice and Law Enforcement,Justice and Law Enforcement +319909,Justice and Law Enforcement,Justice and Law Enforcement +310971,Justice and Law Enforcement,Justice and Law Enforcement +310969,Justice and Law Enforcement,Justice and Law Enforcement +297150,Justice and Law Enforcement,Justice and Law Enforcement +310969,Sports,Sports +312093,Employment and Training,Employment and Training +312091,Employment and Training,Employment and Training +312377,Employment and Training,Employment and Training +312374,Employment and Training,Employment and Training +312373,Employment and Training,Employment and Training +312090,Environment,Environment +312089,Environment,Environment +296789,Environment,Environment +312377,Environment,Environment +312376,Environment,Environment +312374,Environment,Environment +312373,Environment,Environment +312372,Environment,Environment +312371,Environment,Environment +312370,Environment,Environment +312094,Environment,Environment +312093,Environment,Environment +312090,International Trade,International Trade +296789,International Trade,International Trade +312376,International Trade,International Trade +312372,International Trade,International Trade +312371,International Trade,International Trade +312094,International Trade,International Trade +312090,Energy,Energy +312089,Energy,Energy +296789,Energy,Energy +312377,Energy,Energy +312376,Energy,Energy +312374,Energy,Energy +312373,Energy,Energy +312372,Energy,Energy +312371,Energy,Energy +312370,Energy,Energy +312094,Energy,Energy +312093,Energy,Energy +312092,Energy,Energy +312094,Immigration,Immigration +312092,Immigration,Immigration +277372,Government Procurement,Government Procurement +280781,Industry,Industry +312009,Industry,Industry +306451,Industry,Industry +299575,Industry,Industry +299574,Industry,Industry +299573,Industry,Industry +299572,Industry,Industry +299570,Industry,Industry +290573,Industry,Industry +290571,Industry,Industry +290569,Industry,Industry +290429,Industry,Industry +275349,Economic Development,Economic Development +370346,Economic Development,Economic Development +275350,Research and Development,Research and Development +275349,Research and Development,Research and Development +275350,Industry,Industry +275349,Industry,Industry +275349,Energy,Energy +370346,Energy,Energy +411244,Agriculture,Agriculture +540978,Agriculture,Agriculture +386625,Agriculture,Agriculture +411250,Agriculture,Agriculture +411249,Agriculture,Agriculture +456777,Health,Santé +336097,Security,Security +275214,Security,Security +347781,Security,Security +318850,Economic Development,Economic Development +318838,Economic Development,Economic Development +301505,Economic Development,Economic Development +277751,Economic Development,Economic Development +508123,Economic Development,Economic Development +493235,Economic Development,Economic Development +460570,Economic Development,Economic Development +460569,Economic Development,Economic Development +396277,Economic Development,Economic Development +394514,Economic Development,Economic Development +394506,Economic Development,Economic Development +342046,Economic Development,Economic Development +325091,Economic Development,Economic Development +510557,Energy,Energy +508123,Energy,Energy +377847,Energy,Energy +318860,Energy,Energy +318837,Energy,Energy +301505,Energy,Energy +277751,Energy,Energy +494834,Energy,Energy +493237,Energy,Energy +489824,Energy,Energy +447723,Energy,Energy +439202,Energy,Energy +439187,Energy,Energy +428567,Energy,Energy +421672,Energy,Energy +403929,Energy,Energy +403917,Energy,Energy +403392,Energy,Energy +396285,Energy,Energy +396277,Energy,Energy +541421,Energy,Energy +535184,Energy,Energy +484842,Environment,Environment +504051,Environment,Environment +318860,Environment,Environment +318838,Environment,Environment +277751,Environment,Environment +489580,Environment,Environment +484863,Industry,Industry +484842,Industry,Industry +377847,Industry,Industry +377845,Industry,Industry +347375,Industry,Industry +342046,Industry,Industry +318860,Industry,Industry +318850,Industry,Industry +318838,Industry,Industry +318837,Industry,Industry +316151,Industry,Industry +301505,Industry,Industry +277751,Industry,Industry +469815,Industry,Industry +467017,Industry,Industry +466987,Industry,Industry +464875,Industry,Industry +464866,Industry,Industry +462786,Industry,Industry +461688,Industry,Industry +461685,Industry,Industry +460570,Industry,Industry +460569,Industry,Industry +460568,Industry,Industry +458879,Industry,Industry +458874,Industry,Industry +457242,Industry,Industry +455350,Industry,Industry +455340,Industry,Industry +447749,Industry,Industry +447723,Industry,Industry +439202,Industry,Industry +439187,Industry,Industry +435330,Industry,Industry +428567,Industry,Industry +421672,Industry,Industry +409888,Industry,Industry +407647,Industry,Industry +403929,Industry,Industry +403917,Industry,Industry +403392,Industry,Industry +396285,Industry,Industry +396277,Industry,Industry +394514,Industry,Industry +394506,Industry,Industry +535184,Industry,Industry +517446,Industry,Industry +510557,Industry,Industry +508123,Industry,Industry +504051,Industry,Industry +501648,Industry,Industry +497722,Industry,Industry +497719,Industry,Industry +494842,Industry,Industry +494834,Industry,Industry +493238,Industry,Industry +493237,Industry,Industry +493235,Industry,Industry +492925,Industry,Industry +489824,Industry,Industry +489580,Industry,Industry +489578,Industry,Industry +489576,Industry,Industry +489532,Industry,Industry +486669,Industry,Industry +301505,Research and Development,Research and Development +277751,Research and Development,Research and Development +325970,Housing,Housing +275290,Taxation and Finance,Taxation and Finance +531565,Budget,Budget +531562,Budget,Budget +336231,Budget,Budget +336230,Budget,Budget +336229,Budget,Budget +336228,Budget,Budget +336227,Budget,Budget +393651,Budget,Budget +387348,Budget,Budget +387344,Budget,Budget +387343,Budget,Budget +387342,Budget,Budget +387339,Budget,Budget +387337,Budget,Budget +387333,Budget,Budget +386981,Budget,Budget +386980,Budget,Budget +386978,Budget,Budget +386976,Budget,Budget +386975,Budget,Budget +386974,Budget,Budget +386973,Budget,Budget +386972,Budget,Budget +386971,Budget,Budget +386969,Budget,Budget +382378,Budget,Budget +380515,Budget,Budget +380514,Budget,Budget +380513,Budget,Budget +380512,Budget,Budget +377880,Budget,Budget +374906,Budget,Budget +374903,Budget,Budget +353180,Budget,Budget +350337,Budget,Budget +336243,Budget,Budget +336242,Budget,Budget +336234,Budget,Budget +336233,Budget,Budget +336232,Budget,Budget +497137,Budget,Budget +412230,Budget,Budget +411861,Budget,Budget +533574,Budget,Budget +531572,Budget,Budget +531569,Budget,Budget +531568,Health,Health +531565,Health,Health +345297,Health,Health +344908,Health,Health +336243,Health,Health +336242,Health,Health +336234,Health,Health +336233,Health,Health +336232,Health,Health +336231,Health,Health +336230,Health,Health +336229,Health,Health +336228,Health,Health +336227,Health,Health +314929,Health,Health +387348,Health,Health +387344,Health,Health +387343,Health,Health +387342,Health,Health +387339,Health,Health +387337,Health,Health +387333,Health,Health +386981,Health,Health +386980,Health,Health +386978,Health,Health +386976,Health,Health +386975,Health,Health +386974,Health,Health +386973,Health,Health +386972,Health,Health +386971,Health,Health +386969,Health,Health +382378,Health,Health +380515,Health,Health +380514,Health,Health +380513,Health,Health +380512,Health,Health +377880,Health,Health +374906,Health,Health +374903,Health,Health +373361,Health,Health +370090,Health,Health +353181,Health,Health +353180,Health,Health +352201,Health,Health +350337,Health,Health +350320,Health,Health +350319,Health,Health +349948,Health,Health +349944,Health,Health +349943,Health,Health +349939,Health,Health +349938,Health,Health +349488,Health,Health +497137,Health,Health +494011,Health,Health +492671,Health,Health +492670,Health,Health +467043,Health,Health +466565,Health,Health +463931,Health,Health +462912,Health,Health +454832,Health,Health +448476,Health,Health +446912,Health,Health +446736,Health,Health +444233,Health,Health +412230,Health,Health +411861,Health,Health +402216,Health,Health +393854,Health,Health +393651,Health,Health +544362,Health,Health +542781,Health,Health +532090,Health,Health +531572,Health,Health +285569,Economic Development,Economic Development +285570,Industry,Industry +285569,Industry,Industry +285589,Industry,Industry +417171,Economic Development,Economic Development +417170,Economic Development,Economic Development +297391,Economic Development,Economic Development +297390,Economic Development,Economic Development +284038,Economic Development,Economic Development +284036,Economic Development,Economic Development +284035,Economic Development,Economic Development +284034,Economic Development,Economic Development +284032,Economic Development,Economic Development +284030,Economic Development,Economic Development +284029,Economic Development,Economic Development +380132,Economic Development,Economic Development +380131,Economic Development,Economic Development +380130,Economic Development,Economic Development +380129,Economic Development,Economic Development +360022,Economic Development,Economic Development +360021,Economic Development,Economic Development +360020,Economic Development,Economic Development +347456,Economic Development,Economic Development +336174,Economic Development,Economic Development +336172,Economic Development,Economic Development +336171,Economic Development,Economic Development +336170,Economic Development,Economic Development +325150,Economic Development,Economic Development +325149,Economic Development,Economic Development +325138,Economic Development,Economic Development +310890,Economic Development,Economic Development +310889,Economic Development,Economic Development +360021,Employment and Training,Employment and Training +347456,Employment and Training,Employment and Training +336174,Employment and Training,Employment and Training +336173,Employment and Training,Employment and Training +336172,Employment and Training,Employment and Training +336171,Employment and Training,Employment and Training +336170,Employment and Training,Employment and Training +336169,Employment and Training,Employment and Training +325150,Employment and Training,Employment and Training +325149,Employment and Training,Employment and Training +325136,Employment and Training,Employment and Training +310890,Employment and Training,Employment and Training +310889,Employment and Training,Employment and Training +297391,Employment and Training,Employment and Training +297390,Employment and Training,Employment and Training +284039,Employment and Training,Employment and Training +284038,Employment and Training,Employment and Training +284036,Employment and Training,Employment and Training +284035,Employment and Training,Employment and Training +284034,Employment and Training,Employment and Training +284033,Employment and Training,Employment and Training +284032,Employment and Training,Employment and Training +284030,Employment and Training,Employment and Training +284029,Employment and Training,Employment and Training +417170,Employment and Training,Employment and Training +380132,Employment and Training,Employment and Training +380130,Employment and Training,Employment and Training +380129,Employment and Training,Employment and Training +297391,Immigration,Immigration +297390,Immigration,Immigration +284039,Immigration,Immigration +284038,Immigration,Immigration +284036,Immigration,Immigration +284035,Immigration,Immigration +284034,Immigration,Immigration +284033,Immigration,Immigration +284032,Immigration,Immigration +284031,Immigration,Immigration +284030,Immigration,Immigration +284029,Immigration,Immigration +417172,Immigration,Immigration +417171,Immigration,Immigration +417170,Immigration,Immigration +380132,Immigration,Immigration +380131,Immigration,Immigration +380129,Immigration,Immigration +360023,Immigration,Immigration +360021,Immigration,Immigration +360020,Immigration,Immigration +347456,Immigration,Immigration +336174,Immigration,Immigration +336173,Immigration,Immigration +336172,Immigration,Immigration +336171,Immigration,Immigration +336170,Immigration,Immigration +336169,Immigration,Immigration +325151,Immigration,Immigration +325150,Immigration,Immigration +325149,Immigration,Immigration +325138,Immigration,Immigration +325136,Immigration,Immigration +310890,Immigration,Immigration +360022,Industry,Industry +360021,Industry,Industry +336171,Industry,Industry +336170,Industry,Industry +336169,Industry,Industry +325151,Industry,Industry +325150,Industry,Industry +325149,Industry,Industry +310890,Industry,Industry +284038,Industry,Industry +284036,Industry,Industry +417172,Industry,Industry +417170,Industry,Industry +284036,International Relations,International Relations +417170,International Relations,International Relations +380131,International Relations,International Relations +360023,International Relations,International Relations +336172,International Relations,International Relations +336169,International Relations,International Relations +325151,International Relations,International Relations +325150,International Relations,International Relations +325150,International Trade,International Trade +417172,International Trade,International Trade +284039,International Trade,International Trade +284036,International Trade,International Trade +284035,International Trade,International Trade +284032,International Trade,International Trade +284031,International Trade,International Trade +284030,International Trade,International Trade +284029,International Trade,International Trade +380132,International Trade,International Trade +380131,International Trade,International Trade +380129,International Trade,International Trade +360023,International Trade,International Trade +360021,International Trade,International Trade +347456,International Trade,International Trade +336173,International Trade,International Trade +336172,International Trade,International Trade +336171,International Trade,International Trade +336170,International Trade,International Trade +284036,Labour,Labour +284030,Labour,Labour +360020,Labour,Labour +336172,Labour,Labour +336171,Labour,Labour +336170,Labour,Labour +336169,Labour,Labour +347456,Research and Development,Research and Development +336169,Research and Development,Research and Development +325150,Research and Development,Research and Development +325138,Research and Development,Research and Development +310889,Research and Development,Research and Development +380130,Research and Development,Research and Development +380129,Research and Development,Research and Development +284035,Small Business,Small Business +284029,Small Business,Small Business +380130,Small Business,Small Business +360022,Small Business,Small Business +360020,Small Business,Small Business +336174,Small Business,Small Business +336173,Small Business,Small Business +336170,Small Business,Small Business +336169,Small Business,Small Business +467846,Research and Development,Research and Development +467664,Research and Development,Research and Development +353467,Research and Development,Research and Development +353465,Research and Development,Research and Development +353464,Research and Development,Research and Development +353461,Research and Development,Research and Development +353459,Research and Development,Research and Development +353419,Research and Development,Research and Development +353417,Research and Development,Research and Development +353414,Research and Development,Research and Development +275458,Research and Development,Research and Development +454167,Research and Development,Research and Development +454166,Research and Development,Research and Development +454165,Research and Development,Research and Development +451040,Research and Development,Research and Development +451038,Research and Development,Research and Development +449690,Research and Development,Research and Development +423335,Research and Development,Research and Development +418890,Research and Development,Research and Development +418887,Research and Development,Research and Development +415184,Research and Development,Research and Development +415182,Research and Development,Research and Development +415176,Research and Development,Research and Development +412781,Research and Development,Research and Development +412770,Research and Development,Research and Development +409133,Research and Development,Research and Development +409128,Research and Development,Research and Development +409124,Research and Development,Research and Development +409123,Research and Development,Research and Development +406698,Research and Development,Research and Development +406692,Research and Development,Research and Development +399574,Research and Development,Research and Development +507944,Research and Development,Research and Development +372841,Small Business,Small Business +529993,Small Business,Small Business +275459,Small Business,Small Business +356544,Small Business,Small Business +340091,Small Business,Small Business +340090,Small Business,Small Business +336649,Small Business,Small Business +336633,Small Business,Small Business +306669,Small Business,Small Business +301329,Small Business,Small Business +297529,Small Business,Small Business +286883,Small Business,Small Business +275463,Small Business,Small Business +275461,Small Business,Small Business +518892,Small Business,Small Business +517080,Small Business,Small Business +492152,Small Business,Small Business +485647,Small Business,Small Business +462989,Small Business,Small Business +461666,Small Business,Small Business +461661,Small Business,Small Business +461597,Small Business,Small Business +446434,Small Business,Small Business +436855,Small Business,Small Business +420834,Small Business,Small Business +417826,Small Business,Small Business +276089,International Trade,International Trade +339980,Climate,Climate +326014,Environment,Environment +543585,Taxation and Finance,Taxation and Finance +276071,Taxation and Finance,Taxation and Finance +364882,Taxation and Finance,Taxation and Finance +357042,Taxation and Finance,Taxation and Finance +355188,Taxation and Finance,Taxation and Finance +354901,Taxation and Finance,Taxation and Finance +354887,Taxation and Finance,Taxation and Finance +354886,Taxation and Finance,Taxation and Finance +350020,Taxation and Finance,Taxation and Finance +350019,Taxation and Finance,Taxation and Finance +350015,Taxation and Finance,Taxation and Finance +349783,Taxation and Finance,Taxation and Finance +308631,Internal Trade,Internal Trade +281016,Industry,Industry +281016,Mining,Mining +276879,Defence,Defence +276878,Defence,Defence +325250,Privacy and Access to Information,Privacy and Access to Information +325249,Privacy and Access to Information,Privacy and Access to Information +353061,Privacy and Access to Information,Privacy and Access to Information +353060,Privacy and Access to Information,Privacy and Access to Information +325253,Privacy and Access to Information,Privacy and Access to Information +325252,Privacy and Access to Information,Privacy and Access to Information +435482,International Trade,International Trade +433857,International Trade,International Trade +277164,International Trade,International Trade +410056,International Trade,International Trade +398857,International Trade,International Trade +398854,International Trade,International Trade +396338,International Trade,International Trade +366724,International Trade,International Trade +355800,International Trade,International Trade +456122,International Trade,International Trade +396336,International Trade,International Trade +523362,International Trade,International Trade +309678,International Trade,International Trade +277173,International Trade,International Trade +387657,International Trade,International Trade +387656,International Trade,International Trade +387651,International Trade,International Trade +370796,International Trade,International Trade +370782,International Trade,International Trade +369116,International Trade,International Trade +369109,International Trade,International Trade +460170,International Trade,International Trade +442603,International Trade,International Trade +442602,International Trade,International Trade +438493,International Trade,International Trade +410055,International Trade,International Trade +410053,International Trade,International Trade +410052,International Trade,International Trade +302349,Industry,Industry +331650,Industry,Industry +418746,Intellectual Property,Intellectual Property +417826,Intellectual Property,Intellectual Property +414469,Intellectual Property,Intellectual Property +414468,Intellectual Property,Intellectual Property +414467,Intellectual Property,Intellectual Property +414466,Intellectual Property,Intellectual Property +408841,Intellectual Property,Intellectual Property +408840,Intellectual Property,Intellectual Property +408839,Intellectual Property,Intellectual Property +400449,Intellectual Property,Intellectual Property +400447,Intellectual Property,Intellectual Property +389190,Intellectual Property,Intellectual Property +387002,Intellectual Property,Intellectual Property +386049,Intellectual Property,Intellectual Property +384750,Intellectual Property,Intellectual Property +382788,Intellectual Property,Intellectual Property +373135,Intellectual Property,Intellectual Property +372841,Intellectual Property,Intellectual Property +372839,Intellectual Property,Intellectual Property +367824,Intellectual Property,Intellectual Property +340091,Intellectual Property,Intellectual Property +340090,Intellectual Property,Intellectual Property +336649,Intellectual Property,Intellectual Property +336633,Intellectual Property,Intellectual Property +306669,Intellectual Property,Intellectual Property +301329,Intellectual Property,Intellectual Property +297529,Intellectual Property,Intellectual Property +286883,Intellectual Property,Intellectual Property +277431,Intellectual Property,Intellectual Property +542332,Intellectual Property,Intellectual Property +529993,Intellectual Property,Intellectual Property +518892,Intellectual Property,Intellectual Property +517080,Intellectual Property,Intellectual Property +492152,Intellectual Property,Intellectual Property +486324,Intellectual Property,Intellectual Property +485420,Intellectual Property,Intellectual Property +471720,Intellectual Property,Intellectual Property +465523,Intellectual Property,Intellectual Property +465521,Intellectual Property,Intellectual Property +462989,Intellectual Property,Intellectual Property +461666,Intellectual Property,Intellectual Property +461661,Intellectual Property,Intellectual Property +461597,Intellectual Property,Intellectual Property +460412,Intellectual Property,Intellectual Property +460411,Intellectual Property,Intellectual Property +446434,Intellectual Property,Intellectual Property +444244,Intellectual Property,Intellectual Property +440261,Intellectual Property,Intellectual Property +436855,Intellectual Property,Intellectual Property +436852,Intellectual Property,Intellectual Property +424841,Intellectual Property,Intellectual Property +420839,Intellectual Property,Intellectual Property +463767,Government Procurement,Government Procurement +461028,Government Procurement,Government Procurement +370296,Government Procurement,Government Procurement +369229,Government Procurement,Government Procurement +362902,Government Procurement,Government Procurement +359873,Government Procurement,Government Procurement +351443,Government Procurement,Government Procurement +349060,Government Procurement,Government Procurement +349045,Government Procurement,Government Procurement +348949,Government Procurement,Government Procurement +343383,Government Procurement,Government Procurement +341193,Government Procurement,Government Procurement +335925,Government Procurement,Government Procurement +319118,Government Procurement,Government Procurement +312858,Government Procurement,Government Procurement +303091,Government Procurement,Government Procurement +277447,Government Procurement,Government Procurement +399571,Government Procurement,Government Procurement +396911,Government Procurement,Government Procurement +388595,Government Procurement,Government Procurement +384480,Government Procurement,Government Procurement +379146,Government Procurement,Government Procurement +379145,Government Procurement,Government Procurement +377164,Government Procurement,Government Procurement +374238,Government Procurement,Government Procurement +437916,Government Procurement,Government Procurement +436450,Government Procurement,Government Procurement +436335,Government Procurement,Government Procurement +436334,Government Procurement,Government Procurement +435804,Government Procurement,Government Procurement +435797,Government Procurement,Government Procurement +435766,Government Procurement,Government Procurement +435755,Government Procurement,Government Procurement +435754,Government Procurement,Government Procurement +433795,Government Procurement,Government Procurement +433791,Government Procurement,Government Procurement +433784,Government Procurement,Government Procurement +432433,Government Procurement,Government Procurement +432432,Government Procurement,Government Procurement +429498,Government Procurement,Government Procurement +425720,Government Procurement,Government Procurement +424008,Government Procurement,Government Procurement +422295,Government Procurement,Government Procurement +422078,Government Procurement,Government Procurement +422077,Government Procurement,Government Procurement +422076,Government Procurement,Government Procurement +422008,Government Procurement,Government Procurement +422006,Government Procurement,Government Procurement +422004,Government Procurement,Government Procurement +418682,Government Procurement,Government Procurement +418680,Government Procurement,Government Procurement +418677,Government Procurement,Government Procurement +417866,Government Procurement,Government Procurement +417861,Government Procurement,Government Procurement +417859,Government Procurement,Government Procurement +417858,Government Procurement,Government Procurement +417839,Government Procurement,Government Procurement +415128,Government Procurement,Government Procurement +414699,Government Procurement,Government Procurement +413553,Government Procurement,Government Procurement +413542,Government Procurement,Government Procurement +413082,Government Procurement,Government Procurement +413072,Government Procurement,Government Procurement +403673,Government Procurement,Government Procurement +541410,Government Procurement,Government Procurement +541408,Government Procurement,Government Procurement +541405,Government Procurement,Government Procurement +536646,Government Procurement,Government Procurement +536645,Government Procurement,Government Procurement +536643,Government Procurement,Government Procurement +533681,Government Procurement,Government Procurement +533401,Government Procurement,Government Procurement +485505,Government Procurement,Government Procurement +426994,Budget,Budget +426993,Budget,Budget +372416,Budget,Budget +372414,Budget,Budget +372410,Budget,Budget +372400,Budget,Budget +353937,Budget,Budget +353933,Budget,Budget +445729,Privacy and Access to Information,Privacy and Access to Information +472988,Employment and Training,Employment and Training +337529,Taxation and Finance,Taxation and Finance +324714,Employment and Training,Employment and Training +461533,Transportation,Transportation +426316,Environment,Environment +296705,Economic Development,Economic Development +273842,Mining,Mines +273842,Regional Development,Développement régional +273842,Industry,Industrie +273842,Environment,Environnement +526703,Budget,Budget +309749,Economic Development,Développement économique +309749,Regional Development,Développement régional +309749,Environment,Environnement +309749,Taxation and Finance,Impôts et finances +309749,Mining,Mines +309749,International Relations,Relations internationales +281082,Economic Development,Economic Development +281076,Employment and Training,Employment and Training +281082,Environment,Environment +281082,Fisheries,Fisheries +281082,Mining,Mining +318237,Employment and Training,Employment and Training +333956,Energy,Energy +278932,Environment,Environment +310266,International Trade,International Trade +274132,Economic Development,Economic Development +385780,Fisheries,Fisheries +296788,Energy,Energy +296788,Employment and Training,Employment and Training +296788,Environment,Environment +321783,Employment and Training,Employment and Training +319909,Constitutional Issues,Constitutional Issues +277270,Justice and Law Enforcement,Justice and Law Enforcement +310971,Sports,Sports +312094,Employment and Training,Employment and Training +312091,Environment,Environment +312092,International Trade,International Trade +312091,Energy,Energy +312373,Immigration,Immigration +278529,Defence,Defence +278529,Government Procurement,Government Procurement +280784,Industry,Industry +277480,Industry,Industry +328013,Consumer Issues,Consumer Issues +328013,Housing,Housing +392712,Intellectual Property,Intellectual Property +370346,Environment,Environment +275350,Economic Development,Economic Development +370346,Research and Development,Research and Development +370346,Industry,Industry +275350,Energy,Energy +305114,Industry,Industry +411245,Agriculture,Agriculture +519360,Health,Santé +345678,Financial Institutions,Financial Institutions +347059,Security,Security +318860,Economic Development,Economic Development +517446,Energy,Energy +489532,Environment,Environment +484881,Industry,Industry +318860,Research and Development,Research and Development +287269,Financial Institutions,Financial Institutions +287269,Housing,Housing +287269,Taxation and Finance,Taxation and Finance +276900,Health,Health +531568,Budget,Budget +531562,Education,Education +531569,Health,Health +285589,Economic Development,Economic Development +285571,Industry,Industry +325150,Budget,Budget +417172,Economic Development,Economic Development +360022,Employment and Training,Employment and Training +310889,Immigration,Immigration +380130,Industry,Industry +284039,International Relations,International Relations +325151,International Trade,International Trade +325150,Labour,Labour +360022,Research and Development,Research and Development +284036,Small Business,Small Business +467862,Research and Development,Research and Development +414469,Small Business,Small Business +275461,Health,Health +275462,Intellectual Property,Intellectual Property +275463,Intellectual Property,Intellectual Property +276090,International Trade,International Trade +275771,Energy,Energy +275771,Industry,Industry +275771,Internal Trade,Internal Trade +275820,Energy,Energy +275821,Religion,Religion +275822,Immigration,Immigration +339981,Climate,Climate +326089,Environment,Environment +275935,International Trade,International Trade +543586,Taxation and Finance,Taxation and Finance +276076,Defence,Defence +308632,Internal Trade,Internal Trade +276349,Labour,Labour +276530,Education,Education +300450,Government Procurement,Government Procurement +281017,Industry,Industry +281017,Mining,Mining +276880,Defence,Defence +277029,Defence,Defence +325251,Privacy and Access to Information,Privacy and Access to Information +277052,Fisheries,Fisheries +442606,International Trade,International Trade +398851,International Trade,International Trade +277207,Infrastructure,Infrastructure +277251,Research and Development,Research and Development +277255,Research and Development,Research and Development +277257,Research and Development,Research and Development +302350,Industry,Industry +277422,Budget,Budget +277425,Budget,Budget +420834,Intellectual Property,Intellectual Property +277371,Research and Development,Research and Development +277443,Government Procurement,Government Procurement +470252,Government Procurement,Government Procurement +277476,International Development,International Development +429501,Budget,Budget +381044,Fisheries,Fisheries +544246,Immigration,Immigration +343659,Transportation,Transportation +277671,Budget,Budget +514380,Government Procurement,Government Procurement +290550,Economic Development,Economic Development +290550,Employment and Training,Employment and Training +290550,Labour,Labour +277829,International Relations,International Relations +277849,Transportation,Transportation +357051,Economic Development,Economic Development +277933,Fisheries,Fisheries +279870,Regional Development,Regional Development +375216,Taxation and Finance,Taxation and Finance +310392,Agriculture,Agriculture +310392,Economic Development,Economic Development +310392,Industry,Industry +413040,Consumer Issues,Consumer Issues +428595,Financial Institutions,Financial Institutions +428608,Taxation and Finance,Taxation and Finance +386191,Justice and Law Enforcement,Justice and Law Enforcement +313224,Government Procurement,Government Procurement +278809,Taxation and Finance,Taxation and Finance +278389,Defence,Defence +278389,Government Procurement,Government Procurement +278429,International Trade,International Trade +280510,Consumer Issues,Consumer Issues +280510,Financial Institutions,Financial Institutions +278636,Health,Health +282669,Defence,Defence +293069,Economic Development,Economic Development +325477,Employment and Training,Employment and Training +370066,Industry,Industry +384212,Intellectual Property,Intellectual Property +317870,Taxation and Finance,Taxation and Finance +324236,Transportation,Transports +377037,Financial Institutions,Financial Institutions +293790,Mining,Mining +394656,Economic Development,Economic Development +394656,Mining,Mining +298730,Economic Development,Economic Development +407189,Mining,Mining +328571,Justice and Law Enforcement,Justice and Law Enforcement +297969,Budget,Budget +300569,Industry,Industry +408088,Budget,Budget +281229,Energy,Energy +466296,Labour,Labour +279794,Security,Security +501302,Economic Development,Economic Development +326550,Taxation and Finance,Taxation and Finance +309522,Agriculture,Agriculture +309522,Financial Institutions,Financial Institutions +309522,Taxation and Finance,Taxation and Finance +306494,Agriculture,Agriculture +306509,Agriculture,Agriculture +306490,Agriculture,Agriculture +306491,Agriculture,Agriculture +306511,Agriculture,Agriculture +284049,Government Procurement,Government Procurement +331729,Environment,Environment +417692,Economic Development,Economic Development +280391,Industry,Industry +280400,Financial Institutions,Financial Institutions +280406,Research and Development,Research and Development +280407,Research and Development,Research and Development +280570,Employment and Training,Employment and Training +280569,Energy,Energy +279946,International Trade,International Trade +280671,Budget,Budget +351277,Budget,Budget +351276,Budget,Budget +351200,Budget,Budget +351193,Budget,Budget +351186,Budget,Budget +349450,Budget,Budget +422291,Budget,Budget +414083,Budget,Budget +404173,Budget,Budget +394582,Budget,Budget +394576,Budget,Budget +379042,Budget,Budget +531586,Budget,Budget +432647,Budget,Budget +432641,Budget,Budget +431010,Budget,Budget +429512,Budget,Budget +429510,Budget,Budget +429509,Budget,Budget +429505,Budget,Budget +429503,Budget,Budget +429502,Budget,Budget +370495,Fisheries,Fisheries +447490,Fisheries,Fisheries +400282,Fisheries,Fisheries +540164,Immigration,Immigration +529185,Immigration,Immigration +383720,Immigration,Immigration +317819,Immigration,Immigration +432277,Immigration,Immigration +405220,Immigration,Immigration +396999,Immigration,Immigration +544251,Immigration,Immigration +341519,Transportation,Transportation +341518,Transportation,Transportation +341517,Transportation,Transportation +338862,Transportation,Transportation +338861,Transportation,Transportation +338860,Transportation,Transportation +338859,Transportation,Transportation +338858,Transportation,Transportation +338857,Transportation,Transportation +335123,Transportation,Transportation +335122,Transportation,Transportation +334969,Transportation,Transportation +334901,Transportation,Transportation +334900,Transportation,Transportation +334899,Transportation,Transportation +334898,Transportation,Transportation +334876,Transportation,Transportation +334789,Transportation,Transportation +284072,Transportation,Transportation +284071,Transportation,Transportation +284070,Transportation,Transportation +284069,Transportation,Transportation +284058,Transportation,Transportation +284057,Transportation,Transportation +284055,Transportation,Transportation +284054,Transportation,Transportation +284053,Transportation,Transportation +284052,Transportation,Transportation +284051,Transportation,Transportation +284049,Transportation,Transportation +361170,Transportation,Transportation +361169,Transportation,Transportation +361167,Transportation,Transportation +359959,Transportation,Transportation +359958,Transportation,Transportation +359957,Transportation,Transportation +359956,Transportation,Transportation +359955,Transportation,Transportation +359954,Transportation,Transportation +359953,Transportation,Transportation +359952,Transportation,Transportation +357840,Transportation,Transportation +357839,Transportation,Transportation +357837,Transportation,Transportation +357836,Transportation,Transportation +356214,Transportation,Transportation +356213,Transportation,Transportation +356212,Transportation,Transportation +356211,Transportation,Transportation +356210,Transportation,Transportation +356209,Transportation,Transportation +356208,Transportation,Transportation +356207,Transportation,Transportation +356206,Transportation,Transportation +356205,Transportation,Transportation +356204,Transportation,Transportation +356203,Transportation,Transportation +356202,Transportation,Transportation +356201,Transportation,Transportation +356200,Transportation,Transportation +353927,Transportation,Transportation +353925,Transportation,Transportation +353924,Transportation,Transportation +353923,Transportation,Transportation +353922,Transportation,Transportation +353921,Transportation,Transportation +353920,Transportation,Transportation +351251,Transportation,Transportation +349354,Transportation,Transportation +349353,Transportation,Transportation +349352,Transportation,Transportation +343665,Transportation,Transportation +343664,Transportation,Transportation +343663,Transportation,Transportation +343662,Transportation,Transportation +343661,Transportation,Transportation +343660,Transportation,Transportation +467632,Government Procurement,Government Procurement +433732,Government Procurement,Government Procurement +321720,Government Procurement,Government Procurement +301971,Government Procurement,Government Procurement +301968,Government Procurement,Government Procurement +301967,Government Procurement,Government Procurement +301966,Government Procurement,Government Procurement +301965,Government Procurement,Government Procurement +301960,Government Procurement,Government Procurement +301958,Government Procurement,Government Procurement +301957,Government Procurement,Government Procurement +301956,Government Procurement,Government Procurement +301955,Government Procurement,Government Procurement +301954,Government Procurement,Government Procurement +301953,Government Procurement,Government Procurement +301952,Government Procurement,Government Procurement +301951,Government Procurement,Government Procurement +301950,Government Procurement,Government Procurement +291650,Government Procurement,Government Procurement +291649,Government Procurement,Government Procurement +286069,Government Procurement,Government Procurement +390514,Government Procurement,Government Procurement +385557,Government Procurement,Government Procurement +378729,Government Procurement,Government Procurement +371721,Government Procurement,Government Procurement +371718,Government Procurement,Government Procurement +371717,Government Procurement,Government Procurement +371712,Government Procurement,Government Procurement +371710,Government Procurement,Government Procurement +371709,Government Procurement,Government Procurement +371707,Government Procurement,Government Procurement +369641,Government Procurement,Government Procurement +363444,Government Procurement,Government Procurement +339025,Government Procurement,Government Procurement +331176,Government Procurement,Government Procurement +321723,Government Procurement,Government Procurement +277792,International Relations,International Relations +438813,International Relations,International Relations +311438,International Relations,International Relations +277830,International Relations,International Relations +369781,Taxation and Finance,Taxation and Finance +358623,Taxation and Finance,Taxation and Finance +328393,Taxation and Finance,Taxation and Finance +316869,Taxation and Finance,Taxation and Finance +292870,Taxation and Finance,Taxation and Finance +282071,Taxation and Finance,Taxation and Finance +399532,Taxation and Finance,Taxation and Finance +380066,Taxation and Finance,Taxation and Finance +413038,Consumer Issues,Consumer Issues +498530,Consumer Issues,Consumer Issues +357887,Consumer Issues,Consumer Issues +336023,Consumer Issues,Consumer Issues +325057,Consumer Issues,Consumer Issues +325055,Consumer Issues,Consumer Issues +325048,Consumer Issues,Consumer Issues +313050,Consumer Issues,Consumer Issues +296720,Consumer Issues,Consumer Issues +464010,Consumer Issues,Consumer Issues +413045,Consumer Issues,Consumer Issues +413044,Consumer Issues,Consumer Issues +413043,Consumer Issues,Consumer Issues +413042,Consumer Issues,Consumer Issues +411843,Financial Institutions,Financial Institutions +409915,Financial Institutions,Financial Institutions +344057,Financial Institutions,Financial Institutions +341643,Financial Institutions,Financial Institutions +336023,Financial Institutions,Financial Institutions +325061,Financial Institutions,Financial Institutions +325060,Financial Institutions,Financial Institutions +325057,Financial Institutions,Financial Institutions +325055,Financial Institutions,Financial Institutions +325054,Financial Institutions,Financial Institutions +325048,Financial Institutions,Financial Institutions +315765,Financial Institutions,Financial Institutions +315764,Financial Institutions,Financial Institutions +313050,Financial Institutions,Financial Institutions +296720,Financial Institutions,Financial Institutions +283731,Financial Institutions,Financial Institutions +405234,Financial Institutions,Financial Institutions +404039,Financial Institutions,Financial Institutions +403543,Financial Institutions,Financial Institutions +400778,Financial Institutions,Financial Institutions +390191,Financial Institutions,Financial Institutions +390187,Financial Institutions,Financial Institutions +388499,Financial Institutions,Financial Institutions +388498,Financial Institutions,Financial Institutions +388492,Financial Institutions,Financial Institutions +388482,Financial Institutions,Financial Institutions +385684,Financial Institutions,Financial Institutions +383847,Financial Institutions,Financial Institutions +379402,Financial Institutions,Financial Institutions +379397,Financial Institutions,Financial Institutions +376432,Financial Institutions,Financial Institutions +376420,Financial Institutions,Financial Institutions +372716,Financial Institutions,Financial Institutions +369205,Financial Institutions,Financial Institutions +369196,Financial Institutions,Financial Institutions +369193,Financial Institutions,Financial Institutions +365215,Financial Institutions,Financial Institutions +362301,Financial Institutions,Financial Institutions +353858,Financial Institutions,Financial Institutions +353686,Financial Institutions,Financial Institutions +351555,Financial Institutions,Financial Institutions +351554,Financial Institutions,Financial Institutions +351551,Financial Institutions,Financial Institutions +351548,Financial Institutions,Financial Institutions +543796,Financial Institutions,Financial Institutions +543790,Financial Institutions,Financial Institutions +541212,Financial Institutions,Financial Institutions +537207,Financial Institutions,Financial Institutions +537206,Financial Institutions,Financial Institutions +518271,Financial Institutions,Financial Institutions +518270,Financial Institutions,Financial Institutions +515310,Financial Institutions,Financial Institutions +514075,Financial Institutions,Financial Institutions +510999,Financial Institutions,Financial Institutions +507498,Financial Institutions,Financial Institutions +498530,Financial Institutions,Financial Institutions +487467,Financial Institutions,Financial Institutions +484991,Financial Institutions,Financial Institutions +484987,Financial Institutions,Financial Institutions +476884,Financial Institutions,Financial Institutions +472544,Financial Institutions,Financial Institutions +472543,Financial Institutions,Financial Institutions +464010,Financial Institutions,Financial Institutions +455858,Financial Institutions,Financial Institutions +445430,Financial Institutions,Financial Institutions +445429,Financial Institutions,Financial Institutions +435687,Financial Institutions,Financial Institutions +435685,Financial Institutions,Financial Institutions +430650,Financial Institutions,Financial Institutions +428604,Financial Institutions,Financial Institutions +428601,Financial Institutions,Financial Institutions +428599,Financial Institutions,Financial Institutions +400778,Taxation and Finance,Taxation and Finance +543803,Taxation and Finance,Taxation and Finance +362301,Taxation and Finance,Taxation and Finance +537206,Taxation and Finance,Taxation and Finance +535258,Taxation and Finance,Taxation and Finance +518270,Taxation and Finance,Taxation and Finance +458763,Taxation and Finance,Taxation and Finance +296190,Justice and Law Enforcement,Justice and Law Enforcement +431975,Justice and Law Enforcement,Justice and Law Enforcement +386192,Justice and Law Enforcement,Justice and Law Enforcement +313220,Government Procurement,Government Procurement +303189,Government Procurement,Government Procurement +339217,Government Procurement,Government Procurement +336937,Government Procurement,Government Procurement +336936,Government Procurement,Government Procurement +336935,Government Procurement,Government Procurement +330027,Government Procurement,Government Procurement +326809,Government Procurement,Government Procurement +315955,Government Procurement,Government Procurement +280476,Consumer Issues,Consumer Issues +280476,Financial Institutions,Financial Institutions +399460,Economic Development,Economic Development +393375,Economic Development,Economic Development +326092,Economic Development,Economic Development +317872,Economic Development,Economic Development +293069,Employment and Training,Employment and Training +399460,Employment and Training,Employment and Training +326092,Industry,Industry +317872,Industry,Industry +397764,Industry,Industry +370067,Industry,Industry +384211,Intellectual Property,Intellectual Property +434162,Intellectual Property,Intellectual Property +326091,Intellectual Property,Intellectual Property +393375,Intellectual Property,Intellectual Property +392193,Intellectual Property,Intellectual Property +385274,Intellectual Property,Intellectual Property +324235,Transportation,Transports +324233,Transportation,Transports +368181,Transportation,Transports +363803,Transportation,Transports +363802,Transportation,Transports +358430,Transportation,Transports +352722,Transportation,Transports +340587,Transportation,Transports +340586,Transportation,Transports +324237,Transportation,Transports +377029,Financial Institutions,Financial Institutions +377026,Financial Institutions,Financial Institutions +373943,Financial Institutions,Financial Institutions +373938,Financial Institutions,Financial Institutions +373936,Financial Institutions,Financial Institutions +372252,Financial Institutions,Financial Institutions +372248,Financial Institutions,Financial Institutions +372247,Financial Institutions,Financial Institutions +372238,Financial Institutions,Financial Institutions +369175,Financial Institutions,Financial Institutions +369173,Financial Institutions,Financial Institutions +369168,Financial Institutions,Financial Institutions +369167,Financial Institutions,Financial Institutions +365622,Financial Institutions,Financial Institutions +365613,Financial Institutions,Financial Institutions +365611,Financial Institutions,Financial Institutions +365610,Financial Institutions,Financial Institutions +365609,Financial Institutions,Financial Institutions +365608,Financial Institutions,Financial Institutions +365607,Financial Institutions,Financial Institutions +365606,Financial Institutions,Financial Institutions +365279,Financial Institutions,Financial Institutions +365271,Financial Institutions,Financial Institutions +365269,Financial Institutions,Financial Institutions +363401,Financial Institutions,Financial Institutions +363398,Financial Institutions,Financial Institutions +362111,Financial Institutions,Financial Institutions +362110,Financial Institutions,Financial Institutions +362109,Financial Institutions,Financial Institutions +362108,Financial Institutions,Financial Institutions +362107,Financial Institutions,Financial Institutions +361262,Financial Institutions,Financial Institutions +359309,Financial Institutions,Financial Institutions +359306,Financial Institutions,Financial Institutions +359305,Financial Institutions,Financial Institutions +359304,Financial Institutions,Financial Institutions +355969,Financial Institutions,Financial Institutions +355968,Financial Institutions,Financial Institutions +351058,Financial Institutions,Financial Institutions +351055,Financial Institutions,Financial Institutions +348711,Financial Institutions,Financial Institutions +348710,Financial Institutions,Financial Institutions +348709,Financial Institutions,Financial Institutions +348708,Financial Institutions,Financial Institutions +348707,Financial Institutions,Financial Institutions +348703,Financial Institutions,Financial Institutions +337738,Financial Institutions,Financial Institutions +337737,Financial Institutions,Financial Institutions +337735,Financial Institutions,Financial Institutions +337733,Financial Institutions,Financial Institutions +337728,Financial Institutions,Financial Institutions +335249,Financial Institutions,Financial Institutions +331187,Financial Institutions,Financial Institutions +331186,Financial Institutions,Financial Institutions +330038,Financial Institutions,Financial Institutions +327743,Financial Institutions,Financial Institutions +327739,Financial Institutions,Financial Institutions +324292,Financial Institutions,Financial Institutions +315432,Financial Institutions,Financial Institutions +310368,Financial Institutions,Financial Institutions +304070,Financial Institutions,Financial Institutions +304064,Financial Institutions,Financial Institutions +296871,Financial Institutions,Financial Institutions +296869,Financial Institutions,Financial Institutions +288449,Financial Institutions,Financial Institutions +286652,Financial Institutions,Financial Institutions +286651,Financial Institutions,Financial Institutions +286650,Financial Institutions,Financial Institutions +280430,Financial Institutions,Financial Institutions +280429,Financial Institutions,Financial Institutions +280411,Financial Institutions,Financial Institutions +280410,Financial Institutions,Financial Institutions +280409,Financial Institutions,Financial Institutions +279330,Financial Institutions,Financial Institutions +279329,Financial Institutions,Financial Institutions +279290,Financial Institutions,Financial Institutions +279270,Financial Institutions,Financial Institutions +460223,Financial Institutions,Financial Institutions +457214,Financial Institutions,Financial Institutions +449751,Financial Institutions,Financial Institutions +449702,Financial Institutions,Financial Institutions +445153,Financial Institutions,Financial Institutions +445152,Financial Institutions,Financial Institutions +441848,Financial Institutions,Financial Institutions +441847,Financial Institutions,Financial Institutions +441846,Financial Institutions,Financial Institutions +441843,Financial Institutions,Financial Institutions +441839,Financial Institutions,Financial Institutions +435346,Financial Institutions,Financial Institutions +433328,Financial Institutions,Financial Institutions +432397,Financial Institutions,Financial Institutions +432394,Financial Institutions,Financial Institutions +432393,Financial Institutions,Financial Institutions +432391,Financial Institutions,Financial Institutions +428916,Financial Institutions,Financial Institutions +428003,Financial Institutions,Financial Institutions +426220,Financial Institutions,Financial Institutions +426219,Financial Institutions,Financial Institutions +426218,Financial Institutions,Financial Institutions +423545,Financial Institutions,Financial Institutions +422248,Financial Institutions,Financial Institutions +421884,Financial Institutions,Financial Institutions +421873,Financial Institutions,Financial Institutions +412609,Financial Institutions,Financial Institutions +412604,Financial Institutions,Financial Institutions +412570,Financial Institutions,Financial Institutions +412561,Financial Institutions,Financial Institutions +412558,Financial Institutions,Financial Institutions +412555,Financial Institutions,Financial Institutions +412553,Financial Institutions,Financial Institutions +409376,Financial Institutions,Financial Institutions +409371,Financial Institutions,Financial Institutions +408123,Financial Institutions,Financial Institutions +406178,Financial Institutions,Financial Institutions +406177,Financial Institutions,Financial Institutions +406176,Financial Institutions,Financial Institutions +406175,Financial Institutions,Financial Institutions +406174,Financial Institutions,Financial Institutions +405684,Financial Institutions,Financial Institutions +405682,Financial Institutions,Financial Institutions +405681,Financial Institutions,Financial Institutions +405677,Financial Institutions,Financial Institutions +405676,Financial Institutions,Financial Institutions +405672,Financial Institutions,Financial Institutions +402946,Financial Institutions,Financial Institutions +402918,Financial Institutions,Financial Institutions +398694,Financial Institutions,Financial Institutions +398693,Financial Institutions,Financial Institutions +398692,Financial Institutions,Financial Institutions +398691,Financial Institutions,Financial Institutions +393661,Financial Institutions,Financial Institutions +393660,Financial Institutions,Financial Institutions +393659,Financial Institutions,Financial Institutions +393658,Financial Institutions,Financial Institutions +392702,Financial Institutions,Financial Institutions +392701,Financial Institutions,Financial Institutions +392700,Financial Institutions,Financial Institutions +392699,Financial Institutions,Financial Institutions +392698,Financial Institutions,Financial Institutions +392697,Financial Institutions,Financial Institutions +390070,Financial Institutions,Financial Institutions +390069,Financial Institutions,Financial Institutions +390068,Financial Institutions,Financial Institutions +390067,Financial Institutions,Financial Institutions +390064,Financial Institutions,Financial Institutions +387034,Financial Institutions,Financial Institutions +387033,Financial Institutions,Financial Institutions +387032,Financial Institutions,Financial Institutions +387031,Financial Institutions,Financial Institutions +387030,Financial Institutions,Financial Institutions +387029,Financial Institutions,Financial Institutions +387028,Financial Institutions,Financial Institutions +387027,Financial Institutions,Financial Institutions +387026,Financial Institutions,Financial Institutions +385028,Financial Institutions,Financial Institutions +385026,Financial Institutions,Financial Institutions +385024,Financial Institutions,Financial Institutions +385023,Financial Institutions,Financial Institutions +385021,Financial Institutions,Financial Institutions +385020,Financial Institutions,Financial Institutions +383434,Financial Institutions,Financial Institutions +383433,Financial Institutions,Financial Institutions +383432,Financial Institutions,Financial Institutions +383430,Financial Institutions,Financial Institutions +383429,Financial Institutions,Financial Institutions +383428,Financial Institutions,Financial Institutions +383427,Financial Institutions,Financial Institutions +383426,Financial Institutions,Financial Institutions +383423,Financial Institutions,Financial Institutions +383420,Financial Institutions,Financial Institutions +382558,Financial Institutions,Financial Institutions +381114,Financial Institutions,Financial Institutions +381111,Financial Institutions,Financial Institutions +381108,Financial Institutions,Financial Institutions +381106,Financial Institutions,Financial Institutions +381062,Financial Institutions,Financial Institutions +381061,Financial Institutions,Financial Institutions +381058,Financial Institutions,Financial Institutions +378017,Financial Institutions,Financial Institutions +378016,Financial Institutions,Financial Institutions +378015,Financial Institutions,Financial Institutions +378014,Financial Institutions,Financial Institutions +378013,Financial Institutions,Financial Institutions +378012,Financial Institutions,Financial Institutions +378011,Financial Institutions,Financial Institutions +378009,Financial Institutions,Financial Institutions +378007,Financial Institutions,Financial Institutions +378005,Financial Institutions,Financial Institutions +377048,Financial Institutions,Financial Institutions +377047,Financial Institutions,Financial Institutions +377044,Financial Institutions,Financial Institutions +377043,Financial Institutions,Financial Institutions +377042,Financial Institutions,Financial Institutions +289110,Mining,Mining +289109,Mining,Mining +377529,Mining,Mining +377509,Mining,Mining +290110,Mining,Mining +427361,Economic Development,Economic Development +377643,Economic Development,Economic Development +377642,Economic Development,Economic Development +377641,Economic Development,Economic Development +377640,Economic Development,Economic Development +298734,Economic Development,Economic Development +298733,Economic Development,Economic Development +298732,Economic Development,Economic Development +298731,Economic Development,Economic Development +406003,Mining,Mining +405861,Mining,Mining +377643,Mining,Mining +377642,Mining,Mining +377640,Mining,Mining +298734,Mining,Mining +298733,Mining,Mining +298732,Mining,Mining +298731,Mining,Mining +298730,Mining,Mining +427361,Mining,Mining +427360,Mining,Mining +408419,Mining,Mining +408418,Mining,Mining +328570,Justice and Law Enforcement,Justice and Law Enforcement +328569,Justice and Law Enforcement,Justice and Law Enforcement +279249,Justice and Law Enforcement,Justice and Law Enforcement +386227,Justice and Law Enforcement,Justice and Law Enforcement +386226,Justice and Law Enforcement,Justice and Law Enforcement +386225,Justice and Law Enforcement,Justice and Law Enforcement +386224,Justice and Law Enforcement,Justice and Law Enforcement +368474,Justice and Law Enforcement,Justice and Law Enforcement +368472,Justice and Law Enforcement,Justice and Law Enforcement +368460,Justice and Law Enforcement,Justice and Law Enforcement +368458,Justice and Law Enforcement,Justice and Law Enforcement +368457,Justice and Law Enforcement,Justice and Law Enforcement +368454,Justice and Law Enforcement,Justice and Law Enforcement +279289,Budget,Budget +400518,Budget,Budget +400516,Budget,Budget +313369,Budget,Budget +312763,Budget,Budget +306709,Budget,Budget +292650,Budget,Budget +292649,Budget,Budget +290935,Budget,Budget +290931,Budget,Budget +279551,Budget,Budget +386122,Budget,Budget +386121,Budget,Budget +386120,Budget,Budget +386119,Budget,Budget +386118,Budget,Budget +386117,Budget,Budget +386116,Budget,Budget +386070,Budget,Budget +386069,Budget,Budget +386068,Budget,Budget +386067,Budget,Budget +386064,Budget,Budget +385548,Budget,Budget +385547,Budget,Budget +383396,Budget,Budget +383393,Budget,Budget +383392,Budget,Budget +380871,Budget,Budget +378982,Budget,Budget +378979,Budget,Budget +378973,Budget,Budget +376566,Budget,Budget +374465,Budget,Budget +370221,Budget,Budget +370217,Budget,Budget +370215,Budget,Budget +370213,Budget,Budget +370194,Budget,Budget +370193,Budget,Budget +370192,Budget,Budget +370190,Budget,Budget +370188,Budget,Budget +370186,Budget,Budget +370184,Budget,Budget +368178,Budget,Budget +368177,Budget,Budget +368175,Budget,Budget +365942,Budget,Budget +359442,Budget,Budget +359441,Budget,Budget +359439,Budget,Budget +347346,Budget,Budget +347343,Budget,Budget +347342,Budget,Budget +347339,Budget,Budget +347333,Budget,Budget +339675,Budget,Budget +339674,Budget,Budget +339673,Budget,Budget +339672,Budget,Budget +339671,Budget,Budget +335314,Budget,Budget +334477,Budget,Budget +333291,Budget,Budget +326433,Budget,Budget +324469,Budget,Budget +324465,Budget,Budget +531446,Budget,Budget +531443,Budget,Budget +529639,Budget,Budget +529637,Budget,Budget +529633,Budget,Budget +520289,Budget,Budget +506091,Budget,Budget +487930,Budget,Budget +487929,Budget,Budget +487927,Budget,Budget +487925,Budget,Budget +487922,Budget,Budget +487920,Budget,Budget +487916,Budget,Budget +487914,Budget,Budget +487911,Budget,Budget +487909,Budget,Budget +487908,Budget,Budget +487907,Budget,Budget +487906,Budget,Budget +487905,Budget,Budget +487904,Budget,Budget +487902,Budget,Budget +487901,Budget,Budget +487900,Budget,Budget +487899,Budget,Budget +487898,Budget,Budget +487897,Budget,Budget +487896,Budget,Budget +476085,Budget,Budget +468179,Budget,Budget +468177,Budget,Budget +449605,Budget,Budget +447507,Budget,Budget +447506,Budget,Budget +442157,Budget,Budget +438255,Budget,Budget +438254,Budget,Budget +438253,Budget,Budget +438252,Budget,Budget +438251,Budget,Budget +438250,Budget,Budget +438249,Budget,Budget +438248,Budget,Budget +438247,Budget,Budget +438246,Budget,Budget +438245,Budget,Budget +438244,Budget,Budget +438243,Budget,Budget +438242,Budget,Budget +438241,Budget,Budget +438240,Budget,Budget +438239,Budget,Budget +438238,Budget,Budget +438237,Budget,Budget +438236,Budget,Budget +438235,Budget,Budget +438234,Budget,Budget +438233,Budget,Budget +438232,Budget,Budget +438231,Budget,Budget +438230,Budget,Budget +438228,Budget,Budget +438227,Budget,Budget +438225,Budget,Budget +438223,Budget,Budget +438222,Budget,Budget +438220,Budget,Budget +438219,Budget,Budget +438217,Budget,Budget +438215,Budget,Budget +438214,Budget,Budget +437725,Budget,Budget +437724,Budget,Budget +437723,Budget,Budget +437722,Budget,Budget +412290,Budget,Budget +281209,Energy,Energy +466293,Labour,Labour +466292,Labour,Labour +289331,Labour,Labour +279791,Labour,Labour +529106,Labour,Labour +527692,Labour,Labour +524193,Labour,Labour +524192,Labour,Labour +524189,Labour,Labour +521271,Labour,Labour +521261,Labour,Labour +521259,Labour,Labour +521256,Labour,Labour +521253,Labour,Labour +521251,Labour,Labour +521249,Labour,Labour +518913,Labour,Labour +518909,Labour,Labour +516776,Labour,Labour +516774,Labour,Labour +494514,Labour,Labour +494510,Labour,Labour +494509,Labour,Labour +492552,Labour,Labour +489619,Labour,Labour +483551,Labour,Labour +476988,Labour,Labour +476986,Labour,Labour +472070,Labour,Labour +469691,Labour,Labour +469667,Labour,Labour +469666,Labour,Labour +469663,Labour,Labour +466377,Labour,Labour +466376,Labour,Labour +466370,Labour,Labour +466302,Labour,Labour +466301,Labour,Labour +466300,Labour,Labour +466298,Labour,Labour +466297,Labour,Labour +500425,Economic Development,Economic Development +498647,Economic Development,Economic Development +331464,Economic Development,Economic Development +331461,Economic Development,Economic Development +296780,Economic Development,Economic Development +296775,Economic Development,Economic Development +291010,Economic Development,Economic Development +279891,Economic Development,Economic Development +383310,Economic Development,Economic Development +381075,Economic Development,Economic Development +375360,Economic Development,Economic Development +375352,Economic Development,Economic Development +375351,Economic Development,Economic Development +375350,Economic Development,Economic Development +375348,Economic Development,Economic Development +375347,Economic Development,Economic Development +369432,Economic Development,Economic Development +357499,Economic Development,Economic Development +480989,Economic Development,Economic Development +457478,Economic Development,Economic Development +457473,Economic Development,Economic Development +457465,Economic Development,Economic Development +432357,Economic Development,Economic Development +432355,Economic Development,Economic Development +430335,Economic Development,Economic Development +421805,Economic Development,Economic Development +421795,Economic Development,Economic Development +406765,Economic Development,Economic Development +404593,Economic Development,Economic Development +404592,Economic Development,Economic Development +404591,Economic Development,Economic Development +399786,Economic Development,Economic Development +395020,Economic Development,Economic Development +385895,Economic Development,Economic Development +541641,Economic Development,Economic Development +541582,Economic Development,Economic Development +539888,Economic Development,Economic Development +539879,Economic Development,Economic Development +539867,Economic Development,Economic Development +534776,Economic Development,Economic Development +531439,Economic Development,Economic Development +522230,Economic Development,Economic Development +522208,Economic Development,Economic Development +510467,Economic Development,Economic Development +510464,Economic Development,Economic Development +510456,Economic Development,Economic Development +508287,Economic Development,Economic Development +503986,Economic Development,Economic Development +503985,Economic Development,Economic Development +503984,Economic Development,Economic Development +503983,Economic Development,Economic Development +503982,Economic Development,Economic Development +503981,Economic Development,Economic Development +503979,Economic Development,Economic Development +289111,Taxation and Finance,Taxation and Finance +283409,Taxation and Finance,Taxation and Finance +332672,Taxation and Finance,Taxation and Finance +332671,Taxation and Finance,Taxation and Finance +332669,Taxation and Finance,Taxation and Finance +309521,Agriculture,Agriculture +309520,Agriculture,Agriculture +309525,Agriculture,Agriculture +309523,Agriculture,Agriculture +309521,Financial Institutions,Financial Institutions +309520,Financial Institutions,Financial Institutions +309525,Financial Institutions,Financial Institutions +309523,Financial Institutions,Financial Institutions +309521,Taxation and Finance,Taxation and Finance +309520,Taxation and Finance,Taxation and Finance +309525,Taxation and Finance,Taxation and Finance +309523,Taxation and Finance,Taxation and Finance +357841,Government Procurement,Government Procurement +341519,Government Procurement,Government Procurement +304078,Government Procurement,Government Procurement +284072,Government Procurement,Government Procurement +284071,Government Procurement,Government Procurement +284070,Government Procurement,Government Procurement +284069,Government Procurement,Government Procurement +284058,Government Procurement,Government Procurement +284057,Government Procurement,Government Procurement +284056,Government Procurement,Government Procurement +284054,Government Procurement,Government Procurement +284053,Government Procurement,Government Procurement +284052,Government Procurement,Government Procurement +284051,Government Procurement,Government Procurement +416763,Economic Development,Economic Development +416761,Economic Development,Economic Development +294310,Economic Development,Economic Development +287190,Economic Development,Economic Development +368173,Economic Development,Economic Development +368171,Economic Development,Economic Development +356450,Economic Development,Economic Development +326437,Economic Development,Economic Development +324088,Economic Development,Economic Development +320092,Economic Development,Economic Development +416757,Economic Development,Economic Development +416753,Economic Development,Economic Development +412341,Economic Development,Economic Development +412310,Economic Development,Economic Development +412284,Economic Development,Economic Development +412247,Economic Development,Economic Development +412162,Economic Development,Economic Development +531446,Economic Development,Economic Development +531443,Economic Development,Economic Development +529639,Economic Development,Economic Development +520289,Economic Development,Economic Development +506091,Economic Development,Economic Development +487930,Economic Development,Economic Development +487929,Economic Development,Economic Development +487927,Economic Development,Economic Development +487922,Economic Development,Economic Development +487920,Economic Development,Economic Development +487914,Economic Development,Economic Development +487911,Economic Development,Economic Development +487909,Economic Development,Economic Development +487908,Economic Development,Economic Development +487906,Economic Development,Economic Development +487905,Economic Development,Economic Development +487904,Economic Development,Economic Development +487901,Economic Development,Economic Development +487899,Economic Development,Economic Development +487898,Economic Development,Economic Development +487897,Economic Development,Economic Development +487896,Economic Development,Economic Development +485357,Economic Development,Economic Development +468179,Economic Development,Economic Development +468177,Economic Development,Economic Development +462447,Economic Development,Economic Development +454707,Economic Development,Economic Development +454705,Economic Development,Economic Development +449652,Economic Development,Economic Development +449605,Economic Development,Economic Development +447522,Economic Development,Economic Development +447507,Economic Development,Economic Development +447506,Economic Development,Economic Development +447498,Economic Development,Economic Development +442164,Economic Development,Economic Development +442162,Economic Development,Economic Development +442161,Economic Development,Economic Development +442157,Economic Development,Economic Development +438244,Economic Development,Economic Development +438227,Economic Development,Economic Development +437723,Economic Development,Economic Development +437722,Economic Development,Economic Development +432672,Economic Development,Economic Development +431670,Economic Development,Economic Development +427307,Economic Development,Economic Development +427301,Economic Development,Economic Development +427299,Economic Development,Economic Development +427298,Economic Development,Economic Development +427297,Economic Development,Economic Development +427294,Economic Development,Economic Development +427293,Economic Development,Economic Development +427292,Economic Development,Economic Development +425471,Economic Development,Economic Development +425470,Economic Development,Economic Development +425469,Economic Development,Economic Development +425468,Economic Development,Economic Development +425414,Economic Development,Economic Development +421849,Economic Development,Economic Development +417695,Economic Development,Economic Development +417694,Economic Development,Economic Development +341581,International Development,International Development +341577,International Development,International Development +280809,Privacy and Access to Information,Privacy and Access to Information +301738,Environment,Environment +301734,Environment,Environment +301717,Environment,Environment +301715,Environment,Environment +301713,Environment,Environment +301711,Environment,Environment +301709,Environment,Environment +301709,Transportation,Transportation +301689,Transportation,Transportation +301738,Transportation,Transportation +301734,Transportation,Transportation +301717,Transportation,Transportation +301715,Transportation,Transportation +301713,Transportation,Transportation +280969,Employment and Training,Employment and Training +307649,Industry,Industry +296649,Industry,Industry +406928,Sports,Sports +405616,Sports,Sports +333708,Sports,Sports +322259,Sports,Sports +348885,Agriculture,Agriculture +404467,Agriculture,Agriculture +337341,Agriculture,Agriculture +335290,Agriculture,Agriculture +324008,Agriculture,Agriculture +323651,Agriculture,Agriculture +314731,Agriculture,Agriculture +377764,Agriculture,Agriculture +377762,Agriculture,Agriculture +369782,Agriculture,Agriculture +363842,Agriculture,Agriculture +363742,Agriculture,Agriculture +358142,Agriculture,Agriculture +355517,Agriculture,Agriculture +355510,Agriculture,Agriculture +355509,Agriculture,Agriculture +323651,International Trade,Commerce international +453202,International Trade,Commerce international +444599,Budget,Budget +444510,Budget,Budget +444602,Budget,Budget +444599,Health,Health +444510,Health,Health +374001,Health,Health +444602,Health,Health +444510,Research and Development,Research and Development +444601,Taxation and Finance,Taxation and Finance +444510,Taxation and Finance,Taxation and Finance +296718,Pensions,Pensions +289749,Pensions,Pensions +356904,Pensions,Pensions +338496,Pensions,Pensions +338495,Pensions,Pensions +324940,Pensions,Pensions +338495,Taxation and Finance,Taxation and Finance +324940,Taxation and Finance,Taxation and Finance +312865,Taxation and Finance,Taxation and Finance +312864,Taxation and Finance,Taxation and Finance +312863,Taxation and Finance,Taxation and Finance +296730,Taxation and Finance,Taxation and Finance +296718,Taxation and Finance,Taxation and Finance +289749,Taxation and Finance,Taxation and Finance +356904,Taxation and Finance,Taxation and Finance +342270,Taxation and Finance,Taxation and Finance +342268,Taxation and Finance,Taxation and Finance +521205,Consumer Issues,Consumer Issues +521204,Consumer Issues,Consumer Issues +352500,Consumer Issues,Consumer Issues +521203,Consumer Issues,Consumer Issues +521202,Consumer Issues,Consumer Issues +521201,Consumer Issues,Consumer Issues +521200,Consumer Issues,Consumer Issues +521199,Consumer Issues,Consumer Issues +521198,Consumer Issues,Consumer Issues +521196,Consumer Issues,Consumer Issues +521195,Consumer Issues,Consumer Issues +521193,Consumer Issues,Consumer Issues +521192,Consumer Issues,Consumer Issues +521188,Consumer Issues,Consumer Issues +497476,Consumer Issues,Consumer Issues +496782,Consumer Issues,Consumer Issues +496781,Consumer Issues,Consumer Issues +496617,Consumer Issues,Consumer Issues +496554,Consumer Issues,Consumer Issues +496553,Consumer Issues,Consumer Issues +496551,Consumer Issues,Consumer Issues +496549,Consumer Issues,Consumer Issues +496548,Consumer Issues,Consumer Issues +496547,Consumer Issues,Consumer Issues +496546,Consumer Issues,Consumer Issues +496545,Consumer Issues,Consumer Issues +496544,Consumer Issues,Consumer Issues +496543,Consumer Issues,Consumer Issues +496542,Consumer Issues,Consumer Issues +496540,Consumer Issues,Consumer Issues +463575,Consumer Issues,Consumer Issues +463574,Consumer Issues,Consumer Issues +463573,Consumer Issues,Consumer Issues +463570,Consumer Issues,Consumer Issues +463569,Consumer Issues,Consumer Issues +521537,Consumer Issues,Consumer Issues +521535,Consumer Issues,Consumer Issues +521534,Consumer Issues,Consumer Issues +515001,Economic Development,Economic Development +514424,Economic Development,Economic Development +372160,Economic Development,Economic Development +352500,Economic Development,Economic Development +521537,Economic Development,Economic Development +521535,Economic Development,Economic Development +521534,Economic Development,Economic Development +521533,Economic Development,Economic Development +521205,Economic Development,Economic Development +521204,Economic Development,Economic Development +521203,Economic Development,Economic Development +521202,Economic Development,Economic Development +521201,Economic Development,Economic Development +521200,Economic Development,Economic Development +521199,Economic Development,Economic Development +521198,Economic Development,Economic Development +521196,Economic Development,Economic Development +521195,Economic Development,Economic Development +521193,Economic Development,Economic Development +521192,Economic Development,Economic Development +521188,Economic Development,Economic Development +396723,Employment and Training,Employment and Training +516641,Industry,Industry +515001,Industry,Industry +521537,Industry,Industry +521535,Industry,Industry +521534,Industry,Industry +521533,Industry,Industry +521205,Industry,Industry +521204,Industry,Industry +521203,Industry,Industry +521202,Industry,Industry +521201,Industry,Industry +521200,Industry,Industry +521199,Industry,Industry +521198,Industry,Industry +521196,Industry,Industry +521195,Industry,Industry +521192,Industry,Industry +521188,Industry,Industry +521193,Research and Development,Research and Development +521192,Research and Development,Research and Development +396723,Research and Development,Research and Development +521537,Research and Development,Research and Development +521535,Research and Development,Research and Development +521534,Research and Development,Research and Development +521533,Research and Development,Research and Development +521203,Research and Development,Research and Development +521202,Research and Development,Research and Development +521200,Research and Development,Research and Development +521199,Research and Development,Research and Development +521198,Small Business,Small Business +521196,Small Business,Small Business +521537,Small Business,Small Business +521535,Small Business,Small Business +521534,Small Business,Small Business +521533,Small Business,Small Business +521205,Small Business,Small Business +521204,Small Business,Small Business +521203,Small Business,Small Business +521202,Small Business,Small Business +521201,Small Business,Small Business +521200,Small Business,Small Business +288189,Infrastructure,Infrastructure +285329,Infrastructure,Infrastructure +321951,Infrastructure,Infrastructure +321948,Infrastructure,Infrastructure +321944,Infrastructure,Infrastructure +321942,Infrastructure,Infrastructure +321941,Infrastructure,Infrastructure +321940,Infrastructure,Infrastructure +321939,Infrastructure,Infrastructure +321938,Infrastructure,Infrastructure +321937,Infrastructure,Infrastructure +321936,Infrastructure,Infrastructure +283649,Regional Development,Regional Development +491438,Health,Health +431418,Health,Health +371704,Health,Health +371686,Health,Health +340589,Health,Health +340547,Health,Health +340546,Health,Health +340545,Health,Health +340538,Health,Health +340504,Health,Health +340503,Health,Health +340501,Health,Health +340499,Health,Health +340497,Health,Health +340479,Health,Health +340440,Health,Health +339818,Health,Health +339817,Health,Health +339815,Health,Health +339814,Health,Health +339813,Health,Health +339809,Health,Health +322893,Health,Health +307650,Health,Health +307611,Health,Health +307610,Health,Health +307609,Health,Health +307589,Health,Health +307575,Health,Health +307574,Health,Health +307573,Health,Health +307571,Health,Health +307570,Health,Health +307569,Health,Health +307551,Health,Health +307530,Health,Health +307529,Health,Health +307314,Health,Health +307313,Health,Health +307312,Health,Health +307311,Health,Health +307310,Health,Health +307293,Health,Health +307292,Health,Health +307291,Health,Health +307290,Health,Health +307289,Health,Health +307269,Health,Health +307249,Health,Health +307229,Health,Health +307211,Health,Health +307210,Health,Health +307209,Health,Health +408586,Health,Health +408509,Health,Health +407770,Health,Health +395218,Health,Health +391255,Health,Health +390643,Health,Health +390638,Health,Health +390636,Health,Health +390632,Health,Health +390629,Health,Health +390627,Health,Health +390626,Health,Health +390625,Health,Health +390622,Health,Health +390620,Health,Health +390619,Health,Health +390617,Health,Health +390616,Health,Health +390614,Health,Health +390613,Health,Health +390612,Health,Health +390611,Health,Health +390602,Health,Health +390601,Health,Health +390599,Health,Health +390598,Health,Health +390594,Health,Health +390593,Health,Health +390585,Health,Health +390584,Health,Health +390582,Health,Health +390579,Health,Health +390576,Health,Health +390575,Health,Health +390364,Health,Health +390360,Health,Health +390353,Health,Health +390342,Health,Health +390333,Health,Health +390319,Health,Health +390314,Health,Health +390311,Health,Health +390308,Health,Health +390280,Health,Health +390278,Health,Health +390260,Health,Health +390259,Health,Health +390254,Health,Health +390249,Health,Health +390247,Health,Health +390246,Health,Health +390245,Health,Health +390244,Health,Health +390239,Health,Health +390234,Health,Health +390233,Health,Health +390230,Health,Health +390226,Health,Health +390219,Health,Health +390216,Health,Health +390209,Health,Health +390193,Health,Health +390190,Health,Health +390186,Health,Health +390185,Health,Health +390184,Health,Health +390183,Health,Health +390181,Health,Health +390176,Health,Health +390175,Health,Health +390173,Health,Health +390172,Health,Health +390169,Health,Health +390168,Health,Health +390166,Health,Health +390163,Health,Health +378590,Health,Health +377879,Health,Health +375598,Health,Health +539033,Health,Health +536119,Health,Health +526794,Health,Health +525621,Health,Health +525616,Health,Health +525612,Health,Health +525609,Health,Health +525608,Health,Health +525607,Health,Health +525605,Health,Health +525604,Health,Health +525602,Health,Health +525597,Health,Health +525596,Health,Health +525593,Health,Health +525590,Health,Health +525587,Health,Health +525582,Health,Health +525557,Health,Health +525551,Health,Health +525549,Health,Health +525547,Health,Health +498250,Health,Health +498247,Health,Health +491499,Health,Health +491482,Health,Health +304076,Government Procurement,Government Procurement +304073,Government Procurement,Government Procurement +304072,Government Procurement,Government Procurement +296609,Government Procurement,Government Procurement +284050,Government Procurement,Government Procurement +311270,Government Procurement,Government Procurement +337587,Agriculture,Agriculture +337587,Small Business,Small Business +386625,Health,Health +461364,Health,Health +411251,Health,Health +315595,Education,Education +315594,Education,Education +315598,Education,Education +315597,Education,Education +315595,Employment and Training,Employment and Training +315594,Employment and Training,Employment and Training +315598,Employment and Training,Employment and Training +315597,Employment and Training,Employment and Training +315595,Industry,Industry +315594,Industry,Industry +315598,Industry,Industry +353302,Government Procurement,Government Procurement +353301,Government Procurement,Government Procurement +329993,Government Procurement,Government Procurement +327240,Government Procurement,Government Procurement +400207,Government Procurement,Government Procurement +400206,Government Procurement,Government Procurement +372071,Government Procurement,Government Procurement +372050,Government Procurement,Government Procurement +372044,Government Procurement,Government Procurement +367525,Government Procurement,Government Procurement +314369,Government Procurement,Government Procurement +302351,Government Procurement,Government Procurement +295469,Transportation,Transportation +290409,Transportation,Transportation +295989,Transportation,Transportation +284610,Budget,Budget +418291,Economic Development,Economic Development +418290,Economic Development,Economic Development +284629,Economic Development,Economic Development +415202,Economic Development,Economic Development +412964,Economic Development,Economic Development +409417,Economic Development,Economic Development +403373,Economic Development,Economic Development +403365,Economic Development,Economic Development +403357,Economic Development,Economic Development +403352,Economic Development,Economic Development +403350,Economic Development,Economic Development +403344,Economic Development,Economic Development +403340,Economic Development,Economic Development +403336,Economic Development,Economic Development +403331,Economic Development,Economic Development +403328,Economic Development,Economic Development +403327,Economic Development,Economic Development +399801,Economic Development,Economic Development +399800,Economic Development,Economic Development +399799,Economic Development,Economic Development +378193,Economic Development,Economic Development +378192,Economic Development,Economic Development +378191,Economic Development,Economic Development +378190,Economic Development,Economic Development +378189,Economic Development,Economic Development +378188,Economic Development,Economic Development +378187,Economic Development,Economic Development +378186,Economic Development,Economic Development +378185,Economic Development,Economic Development +378184,Economic Development,Economic Development +378183,Economic Development,Economic Development +378182,Economic Development,Economic Development +378181,Economic Development,Economic Development +378180,Economic Development,Economic Development +378179,Economic Development,Economic Development +378178,Economic Development,Economic Development +378177,Economic Development,Economic Development +378176,Economic Development,Economic Development +378175,Economic Development,Economic Development +373752,Economic Development,Economic Development +373751,Economic Development,Economic Development +373750,Economic Development,Economic Development +370474,Economic Development,Economic Development +370473,Economic Development,Economic Development +370472,Economic Development,Economic Development +369786,Economic Development,Economic Development +535707,Economic Development,Economic Development +532368,Economic Development,Economic Development +529743,Economic Development,Economic Development +529742,Economic Development,Economic Development +529741,Economic Development,Economic Development +515877,Economic Development,Economic Development +514821,Economic Development,Economic Development +513199,Economic Development,Economic Development +502759,Economic Development,Economic Development +502754,Economic Development,Economic Development +499549,Economic Development,Economic Development +499543,Economic Development,Economic Development +491590,Economic Development,Economic Development +482304,Economic Development,Economic Development +482302,Economic Development,Economic Development +482299,Economic Development,Economic Development +482298,Economic Development,Economic Development +482286,Economic Development,Economic Development +479633,Economic Development,Economic Development +479630,Economic Development,Economic Development +479614,Economic Development,Economic Development +479606,Economic Development,Economic Development +477617,Economic Development,Economic Development +477614,Economic Development,Economic Development +475964,Economic Development,Economic Development +473738,Economic Development,Economic Development +473736,Economic Development,Economic Development +471233,Economic Development,Economic Development +471232,Economic Development,Economic Development +471223,Economic Development,Economic Development +471207,Economic Development,Economic Development +462895,Economic Development,Economic Development +462894,Economic Development,Economic Development +462826,Economic Development,Economic Development +448450,Economic Development,Economic Development +445765,Economic Development,Economic Development +445764,Economic Development,Economic Development +445761,Economic Development,Economic Development +433853,Economic Development,Economic Development +433852,Economic Development,Economic Development +431250,Economic Development,Economic Development +431247,Economic Development,Economic Development +431243,Economic Development,Economic Development +425649,Economic Development,Economic Development +425648,Economic Development,Economic Development +419883,Economic Development,Economic Development +294229,Transportation,Transportation +534875,Economic Development,Economic Development +513900,Economic Development,Economic Development +289970,Economic Development,Economic Development +289969,Economic Development,Economic Development +359916,Economic Development,Economic Development +353880,Economic Development,Economic Development +343637,Economic Development,Economic Development +338257,Economic Development,Economic Development +338254,Economic Development,Economic Development +333350,Economic Development,Economic Development +333349,Economic Development,Economic Development +295891,Economic Development,Economic Development +295889,Economic Development,Economic Development +289993,Economic Development,Economic Development +289990,Economic Development,Economic Development +289989,Economic Development,Economic Development +501271,Economic Development,Economic Development +498606,Economic Development,Economic Development +491137,Economic Development,Economic Development +464991,Economic Development,Economic Development +464990,Economic Development,Economic Development +435465,Economic Development,Economic Development +435464,Economic Development,Economic Development +435463,Economic Development,Economic Development +435462,Economic Development,Economic Development +432327,Economic Development,Economic Development +429388,Economic Development,Economic Development +429380,Economic Development,Economic Development +426233,Economic Development,Economic Development +416697,Economic Development,Economic Development +416688,Economic Development,Economic Development +399085,Economic Development,Economic Development +399084,Economic Development,Economic Development +461776,Immigration,Immigration +501269,Immigration,Immigration +528760,Security,Security +528759,Security,Security +353881,Security,Security +349020,Security,Security +343637,Security,Security +338502,Security,Security +338501,Security,Security +335664,Security,Security +335663,Security,Security +335661,Security,Security +333350,Security,Security +333349,Security,Security +327717,Security,Security +327713,Security,Security +315831,Security,Security +312841,Security,Security +312837,Security,Security +421726,Security,Security +413354,Security,Security +409377,Municipalities,Municipalities +296848,Industry,Industry +296848,Transportation,Transportation +296848,Environment,Environment +296848,International Trade,International Trade +296848,Infrastructure,Infrastructure +373490,Climate,Climate +373489,Climate,Climate +471707,Climate,Climate +460606,Climate,Climate +460605,Climate,Climate +460604,Climate,Climate +460603,Climate,Climate +397185,Climate,Climate +388028,Climate,Climate +388027,Climate,Climate +388025,Climate,Climate +388022,Climate,Climate +388019,Climate,Climate +373494,Climate,Climate +373493,Climate,Climate +373492,Climate,Climate +373490,Environment,Environment +373489,Environment,Environment +388028,Environment,Environment +388025,Environment,Environment +388022,Environment,Environment +388019,Environment,Environment +373494,Environment,Environment +373493,Environment,Environment +373492,Environment,Environment +318656,International Trade,International Trade +318654,International Trade,International Trade +290974,Environment,Environment +290972,Environment,Environment +287051,Immigration,Immigration +504475,Immigration,Immigration +292670,Employment and Training,Employment and Training +292670,Taxation and Finance,Taxation and Finance +399792,Agriculture,Agriculture +399790,Agriculture,Agriculture +341110,Agriculture,Agriculture +341109,Agriculture,Agriculture +341108,Agriculture,Agriculture +341107,Agriculture,Agriculture +333205,Agriculture,Agriculture +333204,Agriculture,Agriculture +319017,Agriculture,Agriculture +318990,Agriculture,Agriculture +308572,Agriculture,Agriculture +308571,Agriculture,Agriculture +301109,Agriculture,Agriculture +300449,Agriculture,Agriculture +300434,Agriculture,Agriculture +300433,Agriculture,Agriculture +300432,Agriculture,Agriculture +300431,Agriculture,Agriculture +300430,Agriculture,Agriculture +300429,Agriculture,Agriculture +513827,Agriculture,Agriculture +501647,Agriculture,Agriculture +498500,Agriculture,Agriculture +492198,Agriculture,Agriculture +492197,Agriculture,Agriculture +492196,Agriculture,Agriculture +487415,Agriculture,Agriculture +487412,Agriculture,Agriculture +487285,Agriculture,Agriculture +487283,Agriculture,Agriculture +487270,Agriculture,Agriculture +487269,Agriculture,Agriculture +487264,Agriculture,Agriculture +469719,Agriculture,Agriculture +469718,Agriculture,Agriculture +469621,Agriculture,Agriculture +465464,Agriculture,Agriculture +465463,Agriculture,Agriculture +465462,Agriculture,Agriculture +465461,Agriculture,Agriculture +450977,Agriculture,Agriculture +450976,Agriculture,Agriculture +450975,Agriculture,Agriculture +450972,Agriculture,Agriculture +450971,Agriculture,Agriculture +399796,Agriculture,Agriculture +399795,Agriculture,Agriculture +399794,Agriculture,Agriculture +465461,Climate,Climate +465460,Climate,Climate +450977,Climate,Climate +450976,Climate,Climate +450975,Climate,Climate +450972,Climate,Climate +450971,Climate,Climate +410422,Climate,Climate +513827,Climate,Climate +498500,Climate,Climate +492198,Climate,Climate +492197,Climate,Climate +492196,Climate,Climate +465463,Climate,Climate +465461,Economic Development,Economic Development +450975,Economic Development,Economic Development +371652,Economic Development,Economic Development +371651,Economic Development,Economic Development +371650,Economic Development,Economic Development +371648,Economic Development,Economic Development +465463,Economic Development,Economic Development +492198,Energy,Energy +465460,Energy,Energy +337211,Energy,Energy +300433,Energy,Energy +410422,Energy,Energy +513827,Energy,Energy +399792,Environment,Environment +399790,Environment,Environment +341110,Environment,Environment +341109,Environment,Environment +341108,Environment,Environment +341107,Environment,Environment +308573,Environment,Environment +308572,Environment,Environment +300449,Environment,Environment +300435,Environment,Environment +300434,Environment,Environment +300433,Environment,Environment +300432,Environment,Environment +300431,Environment,Environment +300430,Environment,Environment +300429,Environment,Environment +371652,Environment,Environment +371651,Environment,Environment +371650,Environment,Environment +371648,Environment,Environment +498500,Environment,Environment +487415,Environment,Environment +487412,Environment,Environment +487285,Environment,Environment +487283,Environment,Environment +487270,Environment,Environment +487269,Environment,Environment +487264,Environment,Environment +465462,Environment,Environment +465461,Environment,Environment +465460,Environment,Environment +450977,Environment,Environment +450976,Environment,Environment +450975,Environment,Environment +450972,Environment,Environment +450971,Environment,Environment +399796,Environment,Environment +399795,Environment,Environment +399794,Environment,Environment +487269,Industry,Industry +487264,Industry,Industry +337211,Industry,Industry +469719,Industry,Industry +469718,Industry,Industry +469621,Industry,Industry +465464,Industry,Industry +465463,Industry,Industry +465462,Industry,Industry +465460,Industry,Industry +450977,Industry,Industry +450976,Industry,Industry +450975,Industry,Industry +450972,Industry,Industry +450971,Industry,Industry +513827,Industry,Industry +501647,Industry,Industry +492196,Industry,Industry +487415,Industry,Industry +487412,Industry,Industry +487285,Industry,Industry +487283,Industry,Industry +469718,Labour,Labour +469621,Labour,Labour +308572,Labour,Labour +300449,Labour,Labour +450972,Transportation,Transportation +450971,Transportation,Transportation +308573,Transportation,Transportation +308572,Transportation,Transportation +308571,Transportation,Transportation +301109,Transportation,Transportation +300449,Transportation,Transportation +300434,Transportation,Transportation +300433,Transportation,Transportation +300432,Transportation,Transportation +300431,Transportation,Transportation +300430,Transportation,Transportation +300429,Transportation,Transportation +399796,Transportation,Transportation +399795,Transportation,Transportation +373753,Transportation,Transportation +371652,Transportation,Transportation +371651,Transportation,Transportation +371650,Transportation,Transportation +371648,Transportation,Transportation +351405,Transportation,Transportation +351403,Transportation,Transportation +347440,Transportation,Transportation +341110,Transportation,Transportation +341109,Transportation,Transportation +341108,Transportation,Transportation +341107,Transportation,Transportation +334769,Transportation,Transportation +333205,Transportation,Transportation +333204,Transportation,Transportation +319017,Transportation,Transportation +318990,Transportation,Transportation +492198,Transportation,Transportation +487285,Transportation,Transportation +487264,Transportation,Transportation +469719,Transportation,Transportation +469718,Transportation,Transportation +469621,Transportation,Transportation +465464,Transportation,Transportation +450977,Transportation,Transportation +485514,Health,Health +485513,Health,Health +317050,Health,Health +317049,Health,Health +311811,Health,Health +311810,Health,Health +311809,Health,Health +297929,Health,Health +297909,Health,Health +287430,Health,Health +465267,Health,Health +465266,Health,Health +453703,Health,Health +451921,Health,Health +451920,Health,Health +449575,Health,Health +449573,Health,Health +445108,Health,Health +437995,Health,Health +434536,Health,Health +433631,Health,Health +430554,Health,Health +430551,Health,Health +421813,Health,Health +418255,Health,Health +415996,Health,Health +415993,Health,Health +415992,Health,Health +415157,Health,Health +415155,Health,Health +415153,Health,Health +415150,Health,Health +411979,Health,Health +404619,Health,Health +404618,Health,Health +404617,Health,Health +399500,Health,Health +399158,Health,Health +397236,Health,Health +397235,Health,Health +393162,Health,Health +391919,Health,Health +388979,Health,Health +385776,Health,Health +379187,Health,Health +379184,Health,Health +378788,Health,Health +370666,Health,Health +370665,Health,Health +362583,Health,Health +356938,Health,Health +350836,Health,Health +342797,Health,Health +342421,Health,Health +342420,Health,Health +337171,Health,Health +337170,Health,Health +337169,Health,Health +322772,Health,Health +542165,Health,Health +534180,Health,Health +534176,Health,Health +530979,Health,Health +530290,Health,Health +527690,Health,Health +527688,Health,Health +527686,Health,Health +526746,Health,Health +524076,Health,Health +523526,Health,Health +506256,Health,Health +499864,Health,Health +495364,Health,Health +384380,Economic Development,Economic Development +384380,Industry,Industry +369651,Intellectual Property,Intellectual Property +326611,Intellectual Property,Intellectual Property +326610,Intellectual Property,Intellectual Property +326610,Industry,Industry +320695,Industry,Industry +317654,Industry,Industry +326612,Industry,Industry +300469,Economic Development,Economic Development +292813,Economic Development,Economic Development +326612,Economic Development,Economic Development +326611,Economic Development,Economic Development +326610,Economic Development,Economic Development +320695,Economic Development,Economic Development +317654,Economic Development,Economic Development +295251,Energy,Energy +295251,Industry,Industry +485981,Industry,Industry +478880,Industry,Industry +325469,Industry,Industry +309776,Industry,Industry +302569,Industry,Industry +451359,Industry,Industry +451358,Industry,Industry +451357,Industry,Industry +451356,Industry,Industry +451355,Industry,Industry +451354,Industry,Industry +451348,Industry,Industry +427655,Industry,Industry +427653,Industry,Industry +411470,Industry,Industry +401787,Industry,Industry +401782,Industry,Industry +401779,Industry,Industry +401771,Industry,Industry +401769,Industry,Industry +401761,Industry,Industry +401746,Industry,Industry +395338,Industry,Industry +533160,Industry,Industry +518868,Industry,Industry +516537,Industry,Industry +291131,Government Procurement,Government Procurement +291129,Government Procurement,Government Procurement +296817,Government Procurement,Government Procurement +294289,Employment and Training,Employment and Training +294250,Employment and Training,Employment and Training +294289,Labour,Labour +294269,Labour,Labour +294269,Mining,Mining +294250,Mining,Mining +334941,Mining,Mining +334934,Mining,Mining +334933,Mining,Mining +294290,Mining,Mining +334934,Regional Development,Regional Development +334933,Regional Development,Regional Development +294290,Transportation,Transportation +294269,Transportation,Transportation +334934,Transportation,Transportation +290973,Health,Health +289249,Health,Health +295649,Education,Education +289389,Education,Education +332357,Education,Education +326904,Education,Education +326901,Education,Education +309615,Education,Education +324041,Industry,Industry +324040,Industry,Industry +291069,Industry,Industry +304271,Health,Health +374260,Health,Health +353787,Health,Health +349009,Health,Health +343891,Health,Health +338950,Health,Health +338949,Health,Health +338948,Health,Health +338947,Health,Health +335911,Health,Health +330012,Health,Health +330011,Health,Health +330010,Health,Health +330009,Health,Health +316229,Health,Health +313429,Health,Health +310770,Health,Health +310769,Health,Health +304289,Health,Health +302353,Industry,Industry +451363,Employment and Training,Employment and Training +389169,Environment,Environment +465767,Infrastructure,Infrastructure +465764,Infrastructure,Infrastructure +349784,Infrastructure,Infrastructure +323669,Infrastructure,Infrastructure +307109,Infrastructure,Infrastructure +399944,Infrastructure,Infrastructure +399943,Infrastructure,Infrastructure +389170,Infrastructure,Infrastructure +389169,Infrastructure,Infrastructure +375106,Infrastructure,Infrastructure +368707,Infrastructure,Infrastructure +451370,Infrastructure,Infrastructure +451368,Infrastructure,Infrastructure +521526,International Relations,International Relations +374469,International Development,International Development +315837,Privacy and Access to Information,Privacy and Access to Information +301689,Environment,Environment +301711,Transportation,Transportation +280833,Industry,Industry +296633,Economic Development,Economic Development +296633,Industry,Industry +296633,International Trade,International Trade +280952,Economic Development,Economic Development +335174,Employment and Training,Employment and Training +307651,Industry,Industry +281729,Sports,Sports +281749,Research and Development,Research and Development +281770,Research and Development,Research and Development +282729,Security,Security +282749,Industry,Industry +282790,Taxation and Finance,Taxation and Finance +282891,Health,Health +353577,Agriculture,Agriculture +324008,International Trade,Commerce international +371631,Industry,Industry +391419,International Trade,International Trade +371631,Taxation and Finance,Taxation and Finance +371631,Environment,Environment +444601,Budget,Budget +444601,Health,Health +374001,Research and Development,Research and Development +444602,Taxation and Finance,Taxation and Finance +296730,Pensions,Pensions +338496,Taxation and Finance,Taxation and Finance +521533,Consumer Issues,Consumer Issues +516643,Economic Development,Economic Development +521198,Employment and Training,Employment and Training +516643,Industry,Industry +521198,Research and Development,Research and Development +521199,Small Business,Small Business +463571,Fisheries,Fisheries +285310,Industry,Industry +289390,Infrastructure,Infrastructure +326593,Regional Development,Regional Development +491446,Health,Health +311269,Government Procurement,Government Procurement +288593,Agriculture,Agriculture +288593,Small Business,Small Business +411248,Health,Health +288614,International Relations,International Relations +288614,International Trade,International Trade +315596,Education,Education +315596,Employment and Training,Employment and Training +315597,Industry,Industry +363210,Government Procurement,Government Procurement +314370,Government Procurement,Government Procurement +295987,Transportation,Transportation +284749,Budget,Budget +418292,Economic Development,Economic Development +290993,Infrastructure,Infrastructure +290993,Regional Development,Regional Development +290993,Small Business,Small Business +295549,Transportation,Transportation +543357,Economic Development,Economic Development +295889,Immigration,Immigration +403741,Security,Security +409380,Municipalities,Municipalities +284909,Official Languages,Official Languages +284909,Research and Development,Research and Development +284911,Economic Development,Economic Development +284809,Economic Development,Economic Development +284809,Industry,Industry +284917,Economic Development,Economic Development +284920,Economic Development,Economic Development +290669,Industry,Industry +290669,Infrastructure,Infrastructure +290669,International Trade,International Trade +290669,Transportation,Transportation +290669,Environment,Environment +296850,Industry,Industry +296850,Transportation,Transportation +296850,Environment,Environment +296850,International Trade,International Trade +296850,Infrastructure,Infrastructure +373491,Climate,Climate +373491,Environment,Environment +397184,International Trade,International Trade +290975,Environment,Environment +287170,Industry,Industry +290009,Economic Development,Economic Development +309649,Research and Development,Research and Development +285789,International Relations,International Relations +285830,Taxation and Finance,Taxation and Finance +287809,Employment and Training,Employment and Training +287789,Immigration,Immigration +286271,Energy,Energy +286831,Economic Development,Economic Development +286909,Research and Development,Research and Development +286911,Research and Development,Research and Development +286912,Research and Development,Research and Development +286913,Research and Development,Research and Development +310927,Immigration,Immigration +328509,Industry,Industry +292671,Economic Development,Economic Development +292671,Employment and Training,Employment and Training +292671,Taxation and Finance,Taxation and Finance +399793,Agriculture,Agriculture +465462,Climate,Climate +465462,Economic Development,Economic Development +498500,Energy,Energy +399793,Environment,Environment +325709,Immigration,Immigration +487270,Industry,Industry +469719,Labour,Labour +450976,Transportation,Transportation +287349,Economic Development,Economic Development +487261,Health,Health +297450,Taxation and Finance,Taxation and Finance +297769,Taxation and Finance,Taxation and Finance +314164,Government Procurement,Government Procurement +292750,Economic Development,Economic Development +292750,Employment and Training,Employment and Training +298410,Industry,Industry +369928,Intellectual Property,Intellectual Property +321801,Employment and Training,Employment and Training +326612,Intellectual Property,Intellectual Property +326611,Industry,Industry +308531,Economic Development,Economic Development +287529,International Relations,International Relations +295253,Energy,Energy +295253,Industry,Industry +485982,Industry,Industry +293849,Taxation and Finance,Taxation and Finance +297450,International Trade,International Trade +297769,International Trade,International Trade +291144,Government Procurement,Government Procurement +287829,Health,Health +294289,Economic Development,Economic Development +294290,Employment and Training,Employment and Training +294290,Labour,Labour +294289,Mining,Mining +334941,Regional Development,Regional Development +334933,Transportation,Transportation +293810,Health,Health +309614,Education,Education +324042,Industry,Industry +288049,Constitutional Issues,Constitutional Issues +290936,Energy,Energy +288069,Research and Development,Research and Development +304274,Health,Health +302354,Industry,Industry +302355,Industry,Industry +302355,Energy,Energy +368707,Employment and Training,Employment and Training +389170,Environment,Environment +465769,Infrastructure,Infrastructure +288349,Labour,Labour +288350,Labour,Labour +331483,Labour,Labour +331483,Immigration,Immigration +292749,Intellectual Property,Intellectual Property +298409,Economic Development,Economic Development +331483,Employment and Training,Employment and Training +298409,International Trade,International Trade +352063,Intellectual Property,Intellectual Property +288351,Immigration,Immigration +288351,Labour,Labour +288354,Mining,Mining +288429,Immigration,Immigration +296786,Education,Education +288509,Privacy and Access to Information,Privacy and Access to Information +352706,Economic Development,Economic Development +293289,Taxation and Finance,Taxation and Finance +297130,Justice and Law Enforcement,Justice and Law Enforcement +319809,International Trade,International Trade +325790,Taxation and Finance,Taxation and Finance +289332,Employment and Training,Employment and Training +289431,Economic Development,Economic Development +289431,Industry,Industry +289431,Energy,Energy +289431,Regional Development,Regional Development +435188,Employment and Training,Employment and Training +319431,Economic Development,Economic Development +319431,Industry,Industry +289669,Transportation,Transportation +289674,Transportation,Transportation +289789,Regional Development,Regional Development +319431,Defence,Defence +455521,Economic Development,Economic Development +451367,Infrastructure,Infrastructure +451363,Infrastructure,Infrastructure +292749,Economic Development,Economic Development +296785,Education,Education +290969,Education,Education +302494,Education,Education +302493,Education,Education +302492,Education,Education +344426,Economic Development,Economic Development +329952,Economic Development,Economic Development +327077,Economic Development,Economic Development +309209,Economic Development,Economic Development +297129,Justice and Law Enforcement,Justice and Law Enforcement +316429,International Trade,International Trade +310771,International Trade,International Trade +325790,International Trade,International Trade +319809,Taxation and Finance,Taxation and Finance +316429,Taxation and Finance,Taxation and Finance +310771,Taxation and Finance,Taxation and Finance +289430,Economic Development,Economic Development +289429,Economic Development,Economic Development +289449,Economic Development,Economic Development +289430,Industry,Industry +289429,Industry,Industry +289449,Industry,Industry +289430,Energy,Energy +289429,Energy,Energy +289449,Energy,Energy +289430,Regional Development,Regional Development +289429,Regional Development,Regional Development +289449,Regional Development,Regional Development +517813,Employment and Training,Employment and Training +490355,Employment and Training,Employment and Training +309630,Employment and Training,Employment and Training +289472,Employment and Training,Employment and Training +364793,Employment and Training,Employment and Training +364792,Employment and Training,Employment and Training +363269,Employment and Training,Employment and Training +335934,Employment and Training,Employment and Training +333626,Employment and Training,Employment and Training +333625,Employment and Training,Employment and Training +398471,Employment and Training,Employment and Training +475328,Employment and Training,Employment and Training +473190,Employment and Training,Employment and Training +456570,Employment and Training,Employment and Training +453987,Employment and Training,Employment and Training +451148,Employment and Training,Employment and Training +446588,Employment and Training,Employment and Training +445018,Employment and Training,Employment and Training +438458,Employment and Training,Employment and Training +438453,Employment and Training,Employment and Training +438449,Employment and Training,Employment and Training +455501,Economic Development,Economic Development +427815,Economic Development,Economic Development +362377,Economic Development,Economic Development +350857,Economic Development,Economic Development +338313,Economic Development,Economic Development +333203,Economic Development,Economic Development +333202,Economic Development,Economic Development +289996,Economic Development,Economic Development +378909,Economic Development,Economic Development +489362,Economic Development,Economic Development +467046,Economic Development,Economic Development +456756,Economic Development,Economic Development +277194,Aboriginal Affairs,Aboriginal Affairs +219667,Broadcasting,Broadcasting +436078,Broadcasting,Broadcasting +424367,Broadcasting,Broadcasting +234009,Broadcasting,Broadcasting +230704,Broadcasting,Broadcasting +230703,Broadcasting,Broadcasting +230702,Broadcasting,Broadcasting +228269,Broadcasting,Broadcasting +227315,Broadcasting,Broadcasting +227310,Broadcasting,Broadcasting +223202,Broadcasting,Broadcasting +223193,Broadcasting,Broadcasting +212518,Broadcasting,Broadcasting +212516,Broadcasting,Broadcasting +207636,Broadcasting,Broadcasting +200041,Broadcasting,Broadcasting +330110,Broadcasting,Broadcasting +313016,Broadcasting,Broadcasting +310459,Broadcasting,Broadcasting +310457,Broadcasting,Broadcasting +302929,Broadcasting,Broadcasting +245650,Broadcasting,Broadcasting +241669,Broadcasting,Broadcasting +241296,Broadcasting,Broadcasting +241290,Broadcasting,Broadcasting +241288,Broadcasting,Broadcasting +241278,Broadcasting,Broadcasting +241276,Broadcasting,Broadcasting +241275,Broadcasting,Broadcasting +241274,Broadcasting,Broadcasting +241272,Broadcasting,Broadcasting +241270,Broadcasting,Broadcasting +241267,Broadcasting,Broadcasting +241266,Broadcasting,Broadcasting +237220,Broadcasting,Broadcasting +237219,Broadcasting,Broadcasting +237218,Broadcasting,Broadcasting +237217,Broadcasting,Broadcasting +237216,Broadcasting,Broadcasting +237215,Broadcasting,Broadcasting +417546,Broadcasting,Broadcasting +416371,Broadcasting,Broadcasting +412186,Broadcasting,Broadcasting +409483,Broadcasting,Broadcasting +407877,Broadcasting,Broadcasting +405114,Broadcasting,Broadcasting +403110,Broadcasting,Broadcasting +398166,Broadcasting,Broadcasting +395704,Broadcasting,Broadcasting +391911,Broadcasting,Broadcasting +387948,Broadcasting,Broadcasting +383536,Broadcasting,Broadcasting +350402,Broadcasting,Broadcasting +350401,Broadcasting,Broadcasting +350387,Broadcasting,Broadcasting +350386,Broadcasting,Broadcasting +349327,Broadcasting,Broadcasting +349325,Broadcasting,Broadcasting +349324,Broadcasting,Broadcasting +341594,Broadcasting,Broadcasting +341589,Broadcasting,Broadcasting +341582,Broadcasting,Broadcasting +341570,Broadcasting,Broadcasting +337251,Broadcasting,Broadcasting +335339,Broadcasting,Broadcasting +473234,Broadcasting,Broadcasting +442477,Broadcasting,Broadcasting +436081,Broadcasting,Broadcasting +509001,Science and Technology,Science and Technology +505363,Science and Technology,Science and Technology +270329,Science and Technology,Science and Technology +209147,Science and Technology,Science and Technology +387578,Science and Technology,Science and Technology +379616,Science and Technology,Science and Technology +379612,Science and Technology,Science and Technology +379574,Science and Technology,Science and Technology +363042,Science and Technology,Science and Technology +361682,Science and Technology,Science and Technology +357162,Science and Technology,Science and Technology +342598,Science and Technology,Science and Technology +334313,Science and Technology,Science and Technology +467696,Science and Technology,Science and Technology +467687,Science and Technology,Science and Technology +459566,Science and Technology,Science and Technology +445258,Science and Technology,Science and Technology +445235,Science and Technology,Science and Technology +443149,Science and Technology,Science and Technology +437944,Science and Technology,Science and Technology +437943,Science and Technology,Science and Technology +434996,Science and Technology,Science and Technology +433087,Science and Technology,Science and Technology +414978,Science and Technology,Science and Technology +398162,Science and Technology,Science and Technology +395788,Science and Technology,Science and Technology +395786,Science and Technology,Science and Technology +407653,Arts and Culture,Arts and Culture +333661,Arts and Culture,Arts and Culture +202987,Telecommunications,Telecommunications +440033,Telecommunications,Telecommunications +239030,Telecommunications,Telecommunications +245443,Broadcasting,Broadcasting +245436,Broadcasting,Broadcasting +245427,Broadcasting,Broadcasting +245425,Broadcasting,Broadcasting +245423,Broadcasting,Broadcasting +237072,Broadcasting,Broadcasting +222147,Broadcasting,Broadcasting +222127,Broadcasting,Broadcasting +222108,Broadcasting,Broadcasting +222107,Broadcasting,Broadcasting +207198,Broadcasting,Broadcasting +319055,Broadcasting,Broadcasting +319035,Broadcasting,Broadcasting +319033,Broadcasting,Broadcasting +310013,Broadcasting,Broadcasting +310012,Broadcasting,Broadcasting +310011,Broadcasting,Broadcasting +310010,Broadcasting,Broadcasting +250760,Broadcasting,Broadcasting +250756,Broadcasting,Broadcasting +417620,Broadcasting,Broadcasting +417619,Broadcasting,Broadcasting +417618,Broadcasting,Broadcasting +417612,Broadcasting,Broadcasting +409785,Broadcasting,Broadcasting +409775,Broadcasting,Broadcasting +409763,Broadcasting,Broadcasting +406527,Broadcasting,Broadcasting +404956,Broadcasting,Broadcasting +397697,Broadcasting,Broadcasting +396294,Broadcasting,Broadcasting +396291,Broadcasting,Broadcasting +396289,Broadcasting,Broadcasting +396288,Broadcasting,Broadcasting +385358,Broadcasting,Broadcasting +385352,Broadcasting,Broadcasting +385349,Broadcasting,Broadcasting +385345,Broadcasting,Broadcasting +385339,Broadcasting,Broadcasting +385336,Broadcasting,Broadcasting +385333,Broadcasting,Broadcasting +385332,Broadcasting,Broadcasting +385329,Broadcasting,Broadcasting +382228,Broadcasting,Broadcasting +382226,Broadcasting,Broadcasting +375613,Broadcasting,Broadcasting +375612,Broadcasting,Broadcasting +375611,Broadcasting,Broadcasting +375610,Broadcasting,Broadcasting +372019,Broadcasting,Broadcasting +372017,Broadcasting,Broadcasting +372000,Broadcasting,Broadcasting +351239,Broadcasting,Broadcasting +351235,Broadcasting,Broadcasting +342418,Broadcasting,Broadcasting +543266,Broadcasting,Broadcasting +540789,Broadcasting,Broadcasting +533130,Broadcasting,Broadcasting +530692,Broadcasting,Broadcasting +530690,Broadcasting,Broadcasting +527483,Broadcasting,Broadcasting +527482,Broadcasting,Broadcasting +518812,Broadcasting,Broadcasting +515136,Broadcasting,Broadcasting +506611,Broadcasting,Broadcasting +506610,Broadcasting,Broadcasting +500978,Broadcasting,Broadcasting +497054,Broadcasting,Broadcasting +497053,Broadcasting,Broadcasting +497047,Broadcasting,Broadcasting +494240,Broadcasting,Broadcasting +485766,Broadcasting,Broadcasting +483760,Broadcasting,Broadcasting +468871,Broadcasting,Broadcasting +468869,Broadcasting,Broadcasting +468868,Broadcasting,Broadcasting +468867,Broadcasting,Broadcasting +468866,Broadcasting,Broadcasting +468865,Broadcasting,Broadcasting +468864,Broadcasting,Broadcasting +468863,Broadcasting,Broadcasting +468862,Broadcasting,Broadcasting +465783,Broadcasting,Broadcasting +451212,Broadcasting,Broadcasting +445078,Broadcasting,Broadcasting +444626,Broadcasting,Broadcasting +444623,Broadcasting,Broadcasting +444611,Broadcasting,Broadcasting +441605,Broadcasting,Broadcasting +441604,Broadcasting,Broadcasting +441602,Broadcasting,Broadcasting +441601,Broadcasting,Broadcasting +441599,Broadcasting,Broadcasting +441159,Broadcasting,Broadcasting +436982,Broadcasting,Broadcasting +434324,Broadcasting,Broadcasting +429864,Broadcasting,Broadcasting +429825,Broadcasting,Broadcasting +426744,Broadcasting,Broadcasting +426737,Broadcasting,Broadcasting +222127,Telecommunications,Telecommunications +222107,Telecommunications,Telecommunications +342418,Telecommunications,Telecommunications +310012,Telecommunications,Telecommunications +310010,Telecommunications,Telecommunications +315251,Aboriginal Affairs,Aboriginal Affairs +239672,Aboriginal Affairs,Aboriginal Affairs +239671,Aboriginal Affairs,Aboriginal Affairs +239670,Aboriginal Affairs,Aboriginal Affairs +239669,Aboriginal Affairs,Aboriginal Affairs +235009,Aboriginal Affairs,Aboriginal Affairs +234830,Aboriginal Affairs,Aboriginal Affairs +219727,Aboriginal Affairs,Aboriginal Affairs +211353,Aboriginal Affairs,Aboriginal Affairs +210108,Aboriginal Affairs,Aboriginal Affairs +210107,Aboriginal Affairs,Aboriginal Affairs +208947,Aboriginal Affairs,Aboriginal Affairs +205767,Aboriginal Affairs,Aboriginal Affairs +204667,Aboriginal Affairs,Aboriginal Affairs +204129,Aboriginal Affairs,Aboriginal Affairs +204128,Aboriginal Affairs,Aboriginal Affairs +203110,Aboriginal Affairs,Aboriginal Affairs +203109,Aboriginal Affairs,Aboriginal Affairs +203108,Aboriginal Affairs,Aboriginal Affairs +203107,Aboriginal Affairs,Aboriginal Affairs +315256,Aboriginal Affairs,Aboriginal Affairs +315255,Aboriginal Affairs,Aboriginal Affairs +315254,Aboriginal Affairs,Aboriginal Affairs +315253,Aboriginal Affairs,Aboriginal Affairs +259501,Science and Technology,Science and Technology +259499,Science and Technology,Science and Technology +227282,Science and Technology,Science and Technology +222670,Science and Technology,Science and Technology +219712,Science and Technology,Science and Technology +219711,Science and Technology,Science and Technology +219710,Science and Technology,Science and Technology +219709,Science and Technology,Science and Technology +326537,Broadcasting,Broadcasting +323249,Broadcasting,Broadcasting +331971,Broadcasting,Broadcasting +331970,Broadcasting,Broadcasting +223854,Arts and Culture,Arts and Culture +236013,Telecommunications,Telecommunications +236012,Telecommunications,Telecommunications +223090,Telecommunications,Telecommunications +223088,Telecommunications,Telecommunications +223087,Telecommunications,Telecommunications +223084,Telecommunications,Telecommunications +207589,Telecommunications,Telecommunications +304810,Telecommunications,Telecommunications +304809,Telecommunications,Telecommunications +283349,Telecommunications,Telecommunications +280791,Telecommunications,Telecommunications +280788,Telecommunications,Telecommunications +280787,Telecommunications,Telecommunications +280786,Telecommunications,Telecommunications +280785,Telecommunications,Telecommunications +280782,Telecommunications,Telecommunications +277375,Telecommunications,Telecommunications +266050,Telecommunications,Telecommunications +266049,Telecommunications,Telecommunications +259389,Telecommunications,Telecommunications +259368,Telecommunications,Telecommunications +259366,Telecommunications,Telecommunications +259363,Telecommunications,Telecommunications +259358,Telecommunications,Telecommunications +244216,Telecommunications,Telecommunications +244213,Telecommunications,Telecommunications +244200,Telecommunications,Telecommunications +402802,Aboriginal Affairs,Aboriginal Affairs +373134,Aboriginal Affairs,Aboriginal Affairs +366453,Aboriginal Affairs,Aboriginal Affairs +359602,Aboriginal Affairs,Aboriginal Affairs +353682,Aboriginal Affairs,Aboriginal Affairs +322298,Aboriginal Affairs,Aboriginal Affairs +310738,Aboriginal Affairs,Aboriginal Affairs +305112,Aboriginal Affairs,Aboriginal Affairs +287052,Aboriginal Affairs,Aboriginal Affairs +259598,Aboriginal Affairs,Aboriginal Affairs +241077,Aboriginal Affairs,Aboriginal Affairs +233692,Aboriginal Affairs,Aboriginal Affairs +463413,Aboriginal Affairs,Aboriginal Affairs +462539,Aboriginal Affairs,Aboriginal Affairs +456703,Aboriginal Affairs,Aboriginal Affairs +455003,Aboriginal Affairs,Aboriginal Affairs +455001,Aboriginal Affairs,Aboriginal Affairs +454999,Aboriginal Affairs,Aboriginal Affairs +454997,Aboriginal Affairs,Aboriginal Affairs +454988,Aboriginal Affairs,Aboriginal Affairs +454986,Aboriginal Affairs,Aboriginal Affairs +447094,Aboriginal Affairs,Aboriginal Affairs +444445,Aboriginal Affairs,Aboriginal Affairs +444443,Aboriginal Affairs,Aboriginal Affairs +435159,Aboriginal Affairs,Aboriginal Affairs +432502,Aboriginal Affairs,Aboriginal Affairs +417781,Aboriginal Affairs,Aboriginal Affairs +414493,Aboriginal Affairs,Aboriginal Affairs +410357,Aboriginal Affairs,Aboriginal Affairs +211783,Broadcasting,Broadcasting +206847,Broadcasting,Broadcasting +227272,Broadcasting,Broadcasting +223526,Broadcasting,Broadcasting +223518,Broadcasting,Broadcasting +223534,Broadcasting,Broadcasting +223534,Arts and Culture,Arts and Culture +336729,Telecommunications,Telecommunications +427101,Telecommunications,Telecommunications +229190,Telecommunications,Telecommunications +225768,Telecommunications,Telecommunications +218787,Telecommunications,Telecommunications +211915,Telecommunications,Telecommunications +211913,Telecommunications,Telecommunications +211910,Telecommunications,Telecommunications +420079,Science and Technology,Sciences et technologies +418138,Science and Technology,Sciences et technologies +415898,Science and Technology,Sciences et technologies +390133,Science and Technology,Sciences et technologies +390108,Science and Technology,Sciences et technologies +390099,Science and Technology,Sciences et technologies +541427,Science and Technology,Sciences et technologies +536229,Science and Technology,Sciences et technologies +514847,Science and Technology,Sciences et technologies +506320,Science and Technology,Sciences et technologies +506319,Science and Technology,Sciences et technologies +506157,Science and Technology,Sciences et technologies +501921,Science and Technology,Sciences et technologies +501907,Science and Technology,Sciences et technologies +501890,Science and Technology,Sciences et technologies +501888,Science and Technology,Sciences et technologies +501870,Science and Technology,Sciences et technologies +492215,Science and Technology,Sciences et technologies +492214,Science and Technology,Sciences et technologies +464565,Science and Technology,Sciences et technologies +464542,Science and Technology,Sciences et technologies +464539,Science and Technology,Sciences et technologies +464533,Science and Technology,Sciences et technologies +464530,Science and Technology,Sciences et technologies +464528,Science and Technology,Sciences et technologies +464524,Science and Technology,Sciences et technologies +464509,Science and Technology,Sciences et technologies +464505,Science and Technology,Sciences et technologies +464485,Science and Technology,Sciences et technologies +464038,Science and Technology,Sciences et technologies +461563,Science and Technology,Sciences et technologies +461562,Science and Technology,Sciences et technologies +456322,Science and Technology,Sciences et technologies +456321,Science and Technology,Sciences et technologies +456320,Science and Technology,Sciences et technologies +451062,Science and Technology,Sciences et technologies +449970,Science and Technology,Sciences et technologies +449968,Science and Technology,Sciences et technologies +449963,Science and Technology,Sciences et technologies +449059,Science and Technology,Sciences et technologies +449057,Science and Technology,Sciences et technologies +449054,Science and Technology,Sciences et technologies +449051,Science and Technology,Sciences et technologies +449047,Science and Technology,Sciences et technologies +449041,Science and Technology,Sciences et technologies +444192,Science and Technology,Sciences et technologies +444191,Science and Technology,Sciences et technologies +444190,Science and Technology,Sciences et technologies +444189,Science and Technology,Sciences et technologies +444188,Science and Technology,Sciences et technologies +444187,Science and Technology,Sciences et technologies +441020,Science and Technology,Sciences et technologies +439867,Science and Technology,Sciences et technologies +439862,Science and Technology,Sciences et technologies +426966,Science and Technology,Sciences et technologies +426965,Science and Technology,Sciences et technologies +215571,Arts and Culture,Arts and Culture +215570,Arts and Culture,Arts and Culture +217712,Broadcasting,Broadcasting +217710,Broadcasting,Broadcasting +217709,Broadcasting,Broadcasting +217707,Broadcasting,Broadcasting +217699,Broadcasting,Broadcasting +217698,Broadcasting,Broadcasting +217696,Broadcasting,Broadcasting +212552,Broadcasting,Broadcasting +212546,Broadcasting,Broadcasting +212542,Broadcasting,Broadcasting +212540,Broadcasting,Broadcasting +318964,Broadcasting,Broadcasting +241088,Broadcasting,Broadcasting +405766,Telecommunications,Telecommunications +405763,Telecommunications,Telecommunications +217715,Telecommunications,Telecommunications +217712,Telecommunications,Telecommunications +217710,Telecommunications,Telecommunications +217709,Telecommunications,Telecommunications +217707,Telecommunications,Telecommunications +217699,Telecommunications,Telecommunications +217698,Telecommunications,Telecommunications +217696,Telecommunications,Telecommunications +212562,Telecommunications,Telecommunications +212554,Telecommunications,Telecommunications +212552,Telecommunications,Telecommunications +212546,Telecommunications,Telecommunications +212542,Telecommunications,Telecommunications +212540,Telecommunications,Telecommunications +322324,Telecommunications,Telecommunications +322322,Telecommunications,Telecommunications +322319,Telecommunications,Telecommunications +304150,Telecommunications,Telecommunications +296875,Telecommunications,Telecommunications +296874,Telecommunications,Telecommunications +296873,Telecommunications,Telecommunications +296872,Telecommunications,Telecommunications +290706,Telecommunications,Telecommunications +290705,Telecommunications,Telecommunications +290701,Telecommunications,Telecommunications +287074,Telecommunications,Telecommunications +287073,Telecommunications,Telecommunications +287072,Telecommunications,Telecommunications +279849,Telecommunications,Telecommunications +273667,Telecommunications,Telecommunications +273665,Telecommunications,Telecommunications +269094,Telecommunications,Telecommunications +269092,Telecommunications,Telecommunications +269073,Telecommunications,Telecommunications +263629,Telecommunications,Telecommunications +263318,Telecommunications,Telecommunications +263317,Telecommunications,Telecommunications +263314,Telecommunications,Telecommunications +263312,Telecommunications,Telecommunications +263309,Telecommunications,Telecommunications +259613,Telecommunications,Telecommunications +259612,Telecommunications,Telecommunications +254147,Telecommunications,Telecommunications +254144,Telecommunications,Telecommunications +250840,Telecommunications,Telecommunications +241088,Telecommunications,Telecommunications +224207,Telecommunications,Telecommunications +223425,Telecommunications,Telecommunications +223421,Telecommunications,Telecommunications +398805,Telecommunications,Telecommunications +380726,Telecommunications,Telecommunications +379732,Telecommunications,Telecommunications +325000,Telecommunications,Telecommunications +322328,Telecommunications,Telecommunications +322326,Telecommunications,Telecommunications +511872,Telecommunications,Telecommunications +496148,Telecommunications,Telecommunications +461748,Telecommunications,Telecommunications +427875,Telecommunications,Telecommunications +422492,Telecommunications,Telecommunications +422491,Telecommunications,Telecommunications +414666,Telecommunications,Telecommunications +410423,Telecommunications,Telecommunications +405768,Telecommunications,Telecommunications +348532,Broadcasting,Broadcasting +348531,Broadcasting,Broadcasting +347377,Broadcasting,Broadcasting +340430,Broadcasting,Broadcasting +385881,Broadcasting,Broadcasting +358178,Telecommunications,Telecommunications +358177,Telecommunications,Telecommunications +263319,Telecommunications,Telecommunications +250850,Telecommunications,Telecommunications +356380,Telecommunications,Telecommunications +356377,Telecommunications,Telecommunications +356375,Telecommunications,Telecommunications +354062,Telecommunications,Telecommunications +348534,Telecommunications,Telecommunications +348532,Telecommunications,Telecommunications +348531,Telecommunications,Telecommunications +347377,Telecommunications,Telecommunications +347376,Telecommunications,Telecommunications +340435,Telecommunications,Telecommunications +340434,Telecommunications,Telecommunications +340433,Telecommunications,Telecommunications +340430,Telecommunications,Telecommunications +340428,Telecommunications,Telecommunications +334737,Telecommunications,Telecommunications +334736,Telecommunications,Telecommunications +334735,Telecommunications,Telecommunications +334734,Telecommunications,Telecommunications +329676,Telecommunications,Telecommunications +327912,Telecommunications,Telecommunications +327911,Telecommunications,Telecommunications +327910,Telecommunications,Telecommunications +326393,Telecommunications,Telecommunications +325018,Telecommunications,Telecommunications +324039,Telecommunications,Telecommunications +324038,Telecommunications,Telecommunications +324036,Telecommunications,Telecommunications +324035,Telecommunications,Telecommunications +324034,Telecommunications,Telecommunications +322331,Telecommunications,Telecommunications +322330,Telecommunications,Telecommunications +316071,Telecommunications,Telecommunications +312881,Telecommunications,Telecommunications +304375,Telecommunications,Telecommunications +304362,Telecommunications,Telecommunications +304361,Telecommunications,Telecommunications +304359,Telecommunications,Telecommunications +287069,Telecommunications,Telecommunications +279869,Telecommunications,Telecommunications +394097,Telecommunications,Telecommunications +389595,Telecommunications,Telecommunications +387791,Telecommunications,Telecommunications +387789,Telecommunications,Telecommunications +385881,Telecommunications,Telecommunications +385327,Telecommunications,Telecommunications +383601,Telecommunications,Telecommunications +383600,Telecommunications,Telecommunications +381017,Telecommunications,Telecommunications +381015,Telecommunications,Telecommunications +381012,Telecommunications,Telecommunications +379585,Telecommunications,Telecommunications +379581,Telecommunications,Telecommunications +379580,Telecommunications,Telecommunications +379578,Telecommunications,Telecommunications +379576,Telecommunications,Telecommunications +379573,Telecommunications,Telecommunications +379565,Telecommunications,Telecommunications +379562,Telecommunications,Telecommunications +379558,Telecommunications,Telecommunications +379557,Telecommunications,Telecommunications +376622,Telecommunications,Telecommunications +374744,Telecommunications,Telecommunications +372457,Telecommunications,Telecommunications +368831,Telecommunications,Telecommunications +365183,Telecommunications,Telecommunications +364806,Telecommunications,Telecommunications +363602,Telecommunications,Telecommunications +362378,Telecommunications,Telecommunications +359915,Telecommunications,Telecommunications +359914,Telecommunications,Telecommunications +359913,Telecommunications,Telecommunications +215517,Aboriginal Affairs,Aboriginal Affairs +215516,Aboriginal Affairs,Aboriginal Affairs +215514,Aboriginal Affairs,Aboriginal Affairs +215511,Aboriginal Affairs,Aboriginal Affairs +222307,Aboriginal Affairs,Aboriginal Affairs +215528,Aboriginal Affairs,Aboriginal Affairs +215527,Aboriginal Affairs,Aboriginal Affairs +215530,Aboriginal Affairs,Aboriginal Affairs +455553,Telecommunications,Telecommunications +455549,Telecommunications,Telecommunications +260229,Telecommunications,Telecommunications +455543,Telecommunications,Telecommunications +451381,Telecommunications,Telecommunications +451372,Telecommunications,Telecommunications +447508,Telecommunications,Telecommunications +447502,Telecommunications,Telecommunications +447501,Telecommunications,Telecommunications +445207,Telecommunications,Telecommunications +442915,Telecommunications,Telecommunications +442909,Telecommunications,Telecommunications +429760,Telecommunications,Telecommunications +427846,Telecommunications,Telecommunications +427843,Telecommunications,Telecommunications +425123,Telecommunications,Telecommunications +425015,Telecommunications,Telecommunications +420390,Telecommunications,Telecommunications +417623,Telecommunications,Telecommunications +389388,Telecommunications,Telecommunications +360403,Telecommunications,Telecommunications +360402,Telecommunications,Telecommunications +334713,Telecommunications,Telecommunications +334712,Telecommunications,Telecommunications +328097,Telecommunications,Telecommunications +542895,Telecommunications,Telecommunications +542894,Telecommunications,Telecommunications +542893,Telecommunications,Telecommunications +542891,Telecommunications,Telecommunications +540300,Telecommunications,Telecommunications +540299,Telecommunications,Telecommunications +536787,Telecommunications,Telecommunications +536786,Telecommunications,Telecommunications +536785,Telecommunications,Telecommunications +533712,Telecommunications,Telecommunications +533711,Telecommunications,Telecommunications +533707,Telecommunications,Telecommunications +527803,Telecommunications,Telecommunications +527802,Telecommunications,Telecommunications +525356,Telecommunications,Telecommunications +517747,Telecommunications,Telecommunications +514944,Telecommunications,Telecommunications +514664,Telecommunications,Telecommunications +514007,Telecommunications,Telecommunications +514006,Telecommunications,Telecommunications +514005,Telecommunications,Telecommunications +512171,Telecommunications,Telecommunications +512170,Telecommunications,Telecommunications +512169,Telecommunications,Telecommunications +512168,Telecommunications,Telecommunications +512167,Telecommunications,Telecommunications +512162,Telecommunications,Telecommunications +509858,Telecommunications,Telecommunications +509857,Telecommunications,Telecommunications +509856,Telecommunications,Telecommunications +508429,Telecommunications,Telecommunications +508427,Telecommunications,Telecommunications +504571,Telecommunications,Telecommunications +504567,Telecommunications,Telecommunications +504547,Telecommunications,Telecommunications +504540,Telecommunications,Telecommunications +501119,Telecommunications,Telecommunications +501113,Telecommunications,Telecommunications +501111,Telecommunications,Telecommunications +501108,Telecommunications,Telecommunications +501106,Telecommunications,Telecommunications +498371,Telecommunications,Telecommunications +495904,Telecommunications,Telecommunications +495896,Telecommunications,Telecommunications +495893,Telecommunications,Telecommunications +492668,Telecommunications,Telecommunications +490985,Telecommunications,Telecommunications +490981,Telecommunications,Telecommunications +490977,Telecommunications,Telecommunications +490970,Telecommunications,Telecommunications +486692,Telecommunications,Telecommunications +486690,Telecommunications,Telecommunications +484803,Telecommunications,Telecommunications +484737,Telecommunications,Telecommunications +484733,Telecommunications,Telecommunications +484726,Telecommunications,Telecommunications +484723,Telecommunications,Telecommunications +484720,Telecommunications,Telecommunications +481733,Telecommunications,Telecommunications +481729,Telecommunications,Telecommunications +481722,Telecommunications,Telecommunications +481714,Telecommunications,Telecommunications +479674,Telecommunications,Telecommunications +479671,Telecommunications,Telecommunications +479666,Telecommunications,Telecommunications +479663,Telecommunications,Telecommunications +479661,Telecommunications,Telecommunications +479659,Telecommunications,Telecommunications +479656,Telecommunications,Telecommunications +479645,Telecommunications,Telecommunications +479640,Telecommunications,Telecommunications +479635,Telecommunications,Telecommunications +479605,Telecommunications,Telecommunications +477207,Telecommunications,Telecommunications +477206,Telecommunications,Telecommunications +477205,Telecommunications,Telecommunications +477204,Telecommunications,Telecommunications +477202,Telecommunications,Telecommunications +477200,Telecommunications,Telecommunications +477198,Telecommunications,Telecommunications +477196,Telecommunications,Telecommunications +475134,Telecommunications,Telecommunications +475133,Telecommunications,Telecommunications +475130,Telecommunications,Telecommunications +475126,Telecommunications,Telecommunications +473304,Telecommunications,Telecommunications +473301,Telecommunications,Telecommunications +470138,Telecommunications,Telecommunications +470128,Telecommunications,Telecommunications +467994,Telecommunications,Telecommunications +467991,Telecommunications,Telecommunications +467989,Telecommunications,Telecommunications +467988,Telecommunications,Telecommunications +461324,Telecommunications,Telecommunications +460937,Telecommunications,Telecommunications +460450,Telecommunications,Telecommunications +460449,Telecommunications,Telecommunications +460448,Telecommunications,Telecommunications +459353,Telecommunications,Telecommunications +459352,Telecommunications,Telecommunications +457274,Telecommunications,Telecommunications +457272,Telecommunications,Telecommunications +375119,Telecommunications,Telecommunications +218567,Science and Technology,Science and Technology +218408,Science and Technology,Science and Technology +259614,Science and Technology,Science and Technology +218570,Science and Technology,Science and Technology +218569,Science and Technology,Science and Technology +405936,Science and Technology,Science and Technology +391488,Science and Technology,Science and Technology +388228,Science and Technology,Science and Technology +470548,Science and Technology,Science and Technology +459758,Science and Technology,Science and Technology +458742,Science and Technology,Science and Technology +458738,Science and Technology,Science and Technology +458737,Science and Technology,Science and Technology +447854,Science and Technology,Science and Technology +442248,Science and Technology,Science and Technology +517918,Telecommunications,Telecommunications +517912,Telecommunications,Telecommunications +499212,Telecommunications,Telecommunications +499209,Telecommunications,Telecommunications +499208,Telecommunications,Telecommunications +499206,Telecommunications,Telecommunications +499205,Telecommunications,Telecommunications +499202,Telecommunications,Telecommunications +499189,Telecommunications,Telecommunications +499187,Telecommunications,Telecommunications +499184,Telecommunications,Telecommunications +499181,Telecommunications,Telecommunications +495887,Telecommunications,Telecommunications +495886,Telecommunications,Telecommunications +534752,Telecommunications,Telecommunications +531147,Telecommunications,Telecommunications +531145,Telecommunications,Telecommunications +531130,Telecommunications,Telecommunications +531128,Telecommunications,Telecommunications +517945,Telecommunications,Telecommunications +517943,Telecommunications,Telecommunications +517939,Telecommunications,Telecommunications +517934,Telecommunications,Telecommunications +221467,Science and Technology,Science and Technology +384556,Science and Technology,Science and Technology +280910,Science and Technology,Science and Technology +233711,Science and Technology,Science and Technology +223573,Aboriginal Affairs,Aboriginal Affairs +223569,Aboriginal Affairs,Aboriginal Affairs +223620,Aboriginal Affairs,Aboriginal Affairs +223586,Aboriginal Affairs,Aboriginal Affairs +272570,Science and Technology,Science and Technology +272569,Science and Technology,Science and Technology +303509,Science and Technology,Science and Technology +303491,Science and Technology,Science and Technology +303470,Science and Technology,Science and Technology +298269,Science and Technology,Science and Technology +298253,Science and Technology,Science and Technology +298251,Science and Technology,Science and Technology +298250,Science and Technology,Science and Technology +298249,Science and Technology,Science and Technology +293989,Science and Technology,Science and Technology +293974,Science and Technology,Science and Technology +293973,Science and Technology,Science and Technology +293970,Science and Technology,Science and Technology +290992,Science and Technology,Science and Technology +290991,Science and Technology,Science and Technology +290986,Science and Technology,Science and Technology +290982,Science and Technology,Science and Technology +290977,Science and Technology,Science and Technology +290250,Science and Technology,Science and Technology +287029,Science and Technology,Science and Technology +284591,Science and Technology,Science and Technology +284590,Science and Technology,Science and Technology +284589,Science and Technology,Science and Technology +272593,Science and Technology,Science and Technology +272590,Science and Technology,Science and Technology +291030,Science and Technology,Science and Technology +217731,Science and Technology,Science and Technology +233819,Broadcasting,Broadcasting +233819,Telecommunications,Telecommunications +223672,Telecommunications,Telecommunications +223671,Telecommunications,Telecommunications +223621,Telecommunications,Telecommunications +223618,Telecommunications,Telecommunications +223614,Telecommunications,Telecommunications +223610,Telecommunications,Telecommunications +391120,Science and Technology,Science and Technology +383364,Science and Technology,Science and Technology +377252,Science and Technology,Science and Technology +377251,Science and Technology,Science and Technology +374456,Science and Technology,Science and Technology +374454,Science and Technology,Science and Technology +269556,Science and Technology,Science and Technology +269551,Science and Technology,Science and Technology +251434,Science and Technology,Science and Technology +230674,Science and Technology,Science and Technology +230673,Science and Technology,Science and Technology +493801,Science and Technology,Science and Technology +491028,Science and Technology,Science and Technology +487980,Science and Technology,Science and Technology +473750,Science and Technology,Science and Technology +473749,Science and Technology,Science and Technology +462835,Science and Technology,Science and Technology +460724,Science and Technology,Science and Technology +457724,Science and Technology,Science and Technology +457723,Science and Technology,Science and Technology +457722,Science and Technology,Science and Technology +453002,Science and Technology,Science and Technology +452999,Science and Technology,Science and Technology +448105,Science and Technology,Science and Technology +442767,Science and Technology,Science and Technology +442765,Science and Technology,Science and Technology +442763,Science and Technology,Science and Technology +432620,Science and Technology,Science and Technology +429577,Science and Technology,Science and Technology +429576,Science and Technology,Science and Technology +424312,Science and Technology,Science and Technology +424311,Science and Technology,Science and Technology +417253,Science and Technology,Science and Technology +417024,Science and Technology,Science and Technology +417021,Science and Technology,Science and Technology +413914,Science and Technology,Science and Technology +413911,Science and Technology,Science and Technology +396481,Science and Technology,Science and Technology +484919,Science and Technology,Science and Technology +484916,Science and Technology,Science and Technology +324730,Science and Technology,Science and Technology +324729,Science and Technology,Science and Technology +324661,Science and Technology,Science and Technology +322160,Science and Technology,Science and Technology +322159,Science and Technology,Science and Technology +322158,Science and Technology,Science and Technology +322157,Science and Technology,Science and Technology +322156,Science and Technology,Science and Technology +322153,Science and Technology,Science and Technology +322151,Science and Technology,Science and Technology +322150,Science and Technology,Science and Technology +322149,Science and Technology,Science and Technology +322147,Science and Technology,Science and Technology +322145,Science and Technology,Science and Technology +322141,Science and Technology,Science and Technology +233373,Science and Technology,Science and Technology +233372,Science and Technology,Science and Technology +224807,Science and Technology,Science and Technology +404745,Science and Technology,Science and Technology +401687,Science and Technology,Science and Technology +401686,Science and Technology,Science and Technology +401683,Science and Technology,Science and Technology +401681,Science and Technology,Science and Technology +401680,Science and Technology,Science and Technology +401679,Science and Technology,Science and Technology +400092,Science and Technology,Science and Technology +400091,Science and Technology,Science and Technology +400090,Science and Technology,Science and Technology +400089,Science and Technology,Science and Technology +400088,Science and Technology,Science and Technology +400087,Science and Technology,Science and Technology +400086,Science and Technology,Science and Technology +400085,Science and Technology,Science and Technology +400084,Science and Technology,Science and Technology +400083,Science and Technology,Science and Technology +400082,Science and Technology,Science and Technology +398564,Science and Technology,Science and Technology +398563,Science and Technology,Science and Technology +398562,Science and Technology,Science and Technology +398560,Science and Technology,Science and Technology +398559,Science and Technology,Science and Technology +398558,Science and Technology,Science and Technology +398557,Science and Technology,Science and Technology +398474,Science and Technology,Science and Technology +398473,Science and Technology,Science and Technology +393802,Science and Technology,Science and Technology +393788,Science and Technology,Science and Technology +393785,Science and Technology,Science and Technology +393784,Science and Technology,Science and Technology +393782,Science and Technology,Science and Technology +392244,Science and Technology,Science and Technology +387145,Science and Technology,Science and Technology +387143,Science and Technology,Science and Technology +387142,Science and Technology,Science and Technology +387140,Science and Technology,Science and Technology +387139,Science and Technology,Science and Technology +387138,Science and Technology,Science and Technology +387137,Science and Technology,Science and Technology +387136,Science and Technology,Science and Technology +387134,Science and Technology,Science and Technology +387132,Science and Technology,Science and Technology +387130,Science and Technology,Science and Technology +387128,Science and Technology,Science and Technology +387127,Science and Technology,Science and Technology +387125,Science and Technology,Science and Technology +384703,Science and Technology,Science and Technology +384702,Science and Technology,Science and Technology +384701,Science and Technology,Science and Technology +384700,Science and Technology,Science and Technology +384699,Science and Technology,Science and Technology +383418,Science and Technology,Science and Technology +383417,Science and Technology,Science and Technology +383416,Science and Technology,Science and Technology +383414,Science and Technology,Science and Technology +381868,Science and Technology,Science and Technology +381746,Science and Technology,Science and Technology +381745,Science and Technology,Science and Technology +381744,Science and Technology,Science and Technology +381742,Science and Technology,Science and Technology +379285,Science and Technology,Science and Technology +379279,Science and Technology,Science and Technology +379276,Science and Technology,Science and Technology +379269,Science and Technology,Science and Technology +379264,Science and Technology,Science and Technology +376784,Science and Technology,Science and Technology +376769,Science and Technology,Science and Technology +376768,Science and Technology,Science and Technology +376767,Science and Technology,Science and Technology +376765,Science and Technology,Science and Technology +374257,Science and Technology,Science and Technology +374248,Science and Technology,Science and Technology +368468,Science and Technology,Science and Technology +361365,Science and Technology,Science and Technology +361364,Science and Technology,Science and Technology +359649,Science and Technology,Science and Technology +358118,Science and Technology,Science and Technology +337832,Science and Technology,Science and Technology +333623,Science and Technology,Science and Technology +333621,Science and Technology,Science and Technology +328237,Science and Technology,Science and Technology +328236,Science and Technology,Science and Technology +328235,Science and Technology,Science and Technology +328234,Science and Technology,Science and Technology +328233,Science and Technology,Science and Technology +328232,Science and Technology,Science and Technology +328230,Science and Technology,Science and Technology +328229,Science and Technology,Science and Technology +481263,Science and Technology,Science and Technology +481261,Science and Technology,Science and Technology +481260,Science and Technology,Science and Technology +481258,Science and Technology,Science and Technology +481255,Science and Technology,Science and Technology +479460,Science and Technology,Science and Technology +479459,Science and Technology,Science and Technology +479458,Science and Technology,Science and Technology +479452,Science and Technology,Science and Technology +476947,Science and Technology,Science and Technology +476945,Science and Technology,Science and Technology +476942,Science and Technology,Science and Technology +476941,Science and Technology,Science and Technology +476940,Science and Technology,Science and Technology +475333,Science and Technology,Science and Technology +475329,Science and Technology,Science and Technology +475327,Science and Technology,Science and Technology +475326,Science and Technology,Science and Technology +475324,Science and Technology,Science and Technology +475323,Science and Technology,Science and Technology +475321,Science and Technology,Science and Technology +475319,Science and Technology,Science and Technology +475314,Science and Technology,Science and Technology +473189,Science and Technology,Science and Technology +473188,Science and Technology,Science and Technology +473186,Science and Technology,Science and Technology +473182,Science and Technology,Science and Technology +473181,Science and Technology,Science and Technology +473179,Science and Technology,Science and Technology +473140,Science and Technology,Science and Technology +473131,Science and Technology,Science and Technology +473128,Science and Technology,Science and Technology +473127,Science and Technology,Science and Technology +473125,Science and Technology,Science and Technology +473123,Science and Technology,Science and Technology +473122,Science and Technology,Science and Technology +473120,Science and Technology,Science and Technology +469751,Science and Technology,Science and Technology +469750,Science and Technology,Science and Technology +469749,Science and Technology,Science and Technology +469747,Science and Technology,Science and Technology +469743,Science and Technology,Science and Technology +469742,Science and Technology,Science and Technology +469741,Science and Technology,Science and Technology +469740,Science and Technology,Science and Technology +467146,Science and Technology,Science and Technology +467110,Science and Technology,Science and Technology +467105,Science and Technology,Science and Technology +467102,Science and Technology,Science and Technology +467100,Science and Technology,Science and Technology +467092,Science and Technology,Science and Technology +467083,Science and Technology,Science and Technology +467079,Science and Technology,Science and Technology +463646,Science and Technology,Science and Technology +462347,Science and Technology,Science and Technology +462341,Science and Technology,Science and Technology +462339,Science and Technology,Science and Technology +462338,Science and Technology,Science and Technology +462337,Science and Technology,Science and Technology +461389,Science and Technology,Science and Technology +461269,Science and Technology,Science and Technology +461267,Science and Technology,Science and Technology +461264,Science and Technology,Science and Technology +461262,Science and Technology,Science and Technology +460461,Science and Technology,Science and Technology +460460,Science and Technology,Science and Technology +460458,Science and Technology,Science and Technology +460457,Science and Technology,Science and Technology +459951,Science and Technology,Science and Technology +451150,Science and Technology,Science and Technology +441052,Science and Technology,Science and Technology +421228,Science and Technology,Science and Technology +421226,Science and Technology,Science and Technology +421219,Science and Technology,Science and Technology +421216,Science and Technology,Science and Technology +421214,Science and Technology,Science and Technology +421210,Science and Technology,Science and Technology +419666,Science and Technology,Science and Technology +419153,Science and Technology,Science and Technology +419151,Science and Technology,Science and Technology +419150,Science and Technology,Science and Technology +414931,Science and Technology,Science and Technology +414930,Science and Technology,Science and Technology +414929,Science and Technology,Science and Technology +414928,Science and Technology,Science and Technology +414925,Science and Technology,Science and Technology +414924,Science and Technology,Science and Technology +414923,Science and Technology,Science and Technology +414919,Science and Technology,Science and Technology +414918,Science and Technology,Science and Technology +414917,Science and Technology,Science and Technology +414916,Science and Technology,Science and Technology +411739,Science and Technology,Science and Technology +411723,Science and Technology,Science and Technology +411721,Science and Technology,Science and Technology +411720,Science and Technology,Science and Technology +411717,Science and Technology,Science and Technology +411715,Science and Technology,Science and Technology +411714,Science and Technology,Science and Technology +411713,Science and Technology,Science and Technology +411712,Science and Technology,Science and Technology +410481,Science and Technology,Science and Technology +410478,Science and Technology,Science and Technology +410475,Science and Technology,Science and Technology +408600,Science and Technology,Science and Technology +408598,Science and Technology,Science and Technology +408597,Science and Technology,Science and Technology +408596,Science and Technology,Science and Technology +408593,Science and Technology,Science and Technology +408592,Science and Technology,Science and Technology +407390,Science and Technology,Science and Technology +407389,Science and Technology,Science and Technology +407388,Science and Technology,Science and Technology +407387,Science and Technology,Science and Technology +407386,Science and Technology,Science and Technology +406498,Science and Technology,Science and Technology +406493,Science and Technology,Science and Technology +406492,Science and Technology,Science and Technology +406490,Science and Technology,Science and Technology +406489,Science and Technology,Science and Technology +406488,Science and Technology,Science and Technology +404748,Science and Technology,Science and Technology +404747,Science and Technology,Science and Technology +404746,Science and Technology,Science and Technology +543455,Science and Technology,Science and Technology +543452,Science and Technology,Science and Technology +539744,Science and Technology,Science and Technology +539743,Science and Technology,Science and Technology +539742,Science and Technology,Science and Technology +538717,Science and Technology,Science and Technology +538634,Science and Technology,Science and Technology +537054,Science and Technology,Science and Technology +537052,Science and Technology,Science and Technology +537051,Science and Technology,Science and Technology +537048,Science and Technology,Science and Technology +537047,Science and Technology,Science and Technology +533931,Science and Technology,Science and Technology +533929,Science and Technology,Science and Technology +530649,Science and Technology,Science and Technology +528616,Science and Technology,Science and Technology +528615,Science and Technology,Science and Technology +528555,Science and Technology,Science and Technology +528554,Science and Technology,Science and Technology +528553,Science and Technology,Science and Technology +528552,Science and Technology,Science and Technology +528551,Science and Technology,Science and Technology +528544,Science and Technology,Science and Technology +528466,Science and Technology,Science and Technology +528460,Science and Technology,Science and Technology +528458,Science and Technology,Science and Technology +528451,Science and Technology,Science and Technology +528449,Science and Technology,Science and Technology +528446,Science and Technology,Science and Technology +524681,Science and Technology,Science and Technology +524680,Science and Technology,Science and Technology +522501,Science and Technology,Science and Technology +522500,Science and Technology,Science and Technology +522499,Science and Technology,Science and Technology +522498,Science and Technology,Science and Technology +522497,Science and Technology,Science and Technology +519428,Science and Technology,Science and Technology +519427,Science and Technology,Science and Technology +519425,Science and Technology,Science and Technology +519424,Science and Technology,Science and Technology +519422,Science and Technology,Science and Technology +519420,Science and Technology,Science and Technology +517813,Science and Technology,Science and Technology +517810,Science and Technology,Science and Technology +517808,Science and Technology,Science and Technology +517805,Science and Technology,Science and Technology +517803,Science and Technology,Science and Technology +517801,Science and Technology,Science and Technology +515463,Science and Technology,Science and Technology +515462,Science and Technology,Science and Technology +515461,Science and Technology,Science and Technology +515459,Science and Technology,Science and Technology +515458,Science and Technology,Science and Technology +515457,Science and Technology,Science and Technology +514504,Science and Technology,Science and Technology +512807,Science and Technology,Science and Technology +512806,Science and Technology,Science and Technology +512805,Science and Technology,Science and Technology +512804,Science and Technology,Science and Technology +510655,Science and Technology,Science and Technology +510654,Science and Technology,Science and Technology +507751,Science and Technology,Science and Technology +507748,Science and Technology,Science and Technology +507747,Science and Technology,Science and Technology +504402,Science and Technology,Science and Technology +504400,Science and Technology,Science and Technology +500967,Science and Technology,Science and Technology +500963,Science and Technology,Science and Technology +500962,Science and Technology,Science and Technology +500961,Science and Technology,Science and Technology +500960,Science and Technology,Science and Technology +500959,Science and Technology,Science and Technology +500958,Science and Technology,Science and Technology +500957,Science and Technology,Science and Technology +500956,Science and Technology,Science and Technology +500955,Science and Technology,Science and Technology +497933,Science and Technology,Science and Technology +497932,Science and Technology,Science and Technology +494711,Science and Technology,Science and Technology +494710,Science and Technology,Science and Technology +494704,Science and Technology,Science and Technology +490352,Science and Technology,Science and Technology +490350,Science and Technology,Science and Technology +490347,Science and Technology,Science and Technology +486822,Science and Technology,Science and Technology +486818,Science and Technology,Science and Technology +486811,Science and Technology,Science and Technology +484929,Science and Technology,Science and Technology +484927,Science and Technology,Science and Technology +484925,Science and Technology,Science and Technology +484924,Science and Technology,Science and Technology +484922,Science and Technology,Science and Technology +244053,Science and Technology,Science and Technology +244052,Science and Technology,Science and Technology +353822,Science and Technology,Science and Technology +353820,Science and Technology,Science and Technology +329597,Science and Technology,Science and Technology +319114,Science and Technology,Science and Technology +318994,Science and Technology,Science and Technology +315189,Science and Technology,Science and Technology +285870,Science and Technology,Science and Technology +285790,Science and Technology,Science and Technology +272811,Science and Technology,Science and Technology +272810,Science and Technology,Science and Technology +247834,Science and Technology,Science and Technology +455698,Science and Technology,Science and Technology +455696,Science and Technology,Science and Technology +225428,Science and Technology,Science and Technology +430111,Science and Technology,Science and Technology +427404,Science and Technology,Science and Technology +427403,Science and Technology,Science and Technology +244051,Science and Technology,Science and Technology +244050,Science and Technology,Science and Technology +260135,Science and Technology,Science and Technology +353410,Aboriginal Affairs,Aboriginal Affairs +347619,Aboriginal Affairs,Aboriginal Affairs +325309,Aboriginal Affairs,Aboriginal Affairs +319429,Aboriginal Affairs,Aboriginal Affairs +264691,Aboriginal Affairs,Aboriginal Affairs +227294,Aboriginal Affairs,Aboriginal Affairs +227292,Aboriginal Affairs,Aboriginal Affairs +227289,Aboriginal Affairs,Aboriginal Affairs +227288,Aboriginal Affairs,Aboriginal Affairs +227287,Aboriginal Affairs,Aboriginal Affairs +227284,Aboriginal Affairs,Aboriginal Affairs +227281,Aboriginal Affairs,Aboriginal Affairs +225487,Broadcasting,Broadcasting +337202,Broadcasting,Broadcasting +334132,Broadcasting,Broadcasting +324438,Broadcasting,Broadcasting +323233,Broadcasting,Broadcasting +323232,Broadcasting,Broadcasting +321532,Broadcasting,Broadcasting +320289,Broadcasting,Broadcasting +313869,Broadcasting,Broadcasting +312469,Broadcasting,Broadcasting +275629,Broadcasting,Broadcasting +274490,Broadcasting,Broadcasting +294550,Science and Technology,Science and Technology +294549,Science and Technology,Science and Technology +253329,Science and Technology,Science and Technology +249012,Science and Technology,Science and Technology +230156,Science and Technology,Science and Technology +230153,Science and Technology,Science and Technology +294552,Science and Technology,Science and Technology +256670,Science and Technology,Science and Technology +255789,Science and Technology,Science and Technology +243109,Science and Technology,Science and Technology +288489,Science and Technology,Science and Technology +260950,Science and Technology,Science and Technology +258670,Science and Technology,Science and Technology +256709,Science and Technology,Science and Technology +256691,Science and Technology,Science and Technology +226127,Telecommunications,Telecommunications +229843,Science and Technology,Science and Technology +373198,Arts and Culture,Arts and Culture +432684,Arts and Culture,Arts and Culture +432683,Arts and Culture,Arts and Culture +432674,Arts and Culture,Arts and Culture +432673,Arts and Culture,Arts and Culture +427291,Arts and Culture,Arts and Culture +427290,Arts and Culture,Arts and Culture +427289,Arts and Culture,Arts and Culture +427288,Arts and Culture,Arts and Culture +414712,Arts and Culture,Arts and Culture +406151,Arts and Culture,Arts and Culture +406150,Arts and Culture,Arts and Culture +406149,Arts and Culture,Arts and Culture +393395,Arts and Culture,Arts and Culture +386741,Arts and Culture,Arts and Culture +380915,Arts and Culture,Arts and Culture +380165,Arts and Culture,Arts and Culture +377514,Arts and Culture,Arts and Culture +377429,Arts and Culture,Arts and Culture +373200,Arts and Culture,Arts and Culture +241590,Science and Technology,Science and Technology +241589,Science and Technology,Science and Technology +233476,Aboriginal Affairs,Aboriginal Affairs +233011,Aboriginal Affairs,Aboriginal Affairs +232889,Aboriginal Affairs,Aboriginal Affairs +245478,Arts and Culture,Arts and Culture +241142,Arts and Culture,Arts and Culture +262610,Arts and Culture,Arts and Culture +251873,Aboriginal Affairs,Aboriginal Affairs +246496,Aboriginal Affairs,Aboriginal Affairs +240752,Aboriginal Affairs,Aboriginal Affairs +316549,Arts and Culture,Arts and Culture +333899,Arts and Culture,Arts and Culture +241430,Science and Technology,Science and Technology +374429,Telecommunications,Telecommunications +374421,Telecommunications,Telecommunications +250957,Telecommunications,Telecommunications +250955,Telecommunications,Telecommunications +318549,Telecommunications,Telecommunications +315990,Telecommunications,Telecommunications +315981,Telecommunications,Telecommunications +277473,Telecommunications,Telecommunications +277463,Telecommunications,Telecommunications +277459,Telecommunications,Telecommunications +503235,Aboriginal Affairs,Aboriginal Affairs +500041,Aboriginal Affairs,Aboriginal Affairs +402206,Aboriginal Affairs,Aboriginal Affairs +393675,Aboriginal Affairs,Aboriginal Affairs +392956,Aboriginal Affairs,Aboriginal Affairs +392955,Aboriginal Affairs,Aboriginal Affairs +389717,Aboriginal Affairs,Aboriginal Affairs +389715,Aboriginal Affairs,Aboriginal Affairs +381135,Aboriginal Affairs,Aboriginal Affairs +380245,Aboriginal Affairs,Aboriginal Affairs +379015,Aboriginal Affairs,Aboriginal Affairs +379013,Aboriginal Affairs,Aboriginal Affairs +379011,Aboriginal Affairs,Aboriginal Affairs +379004,Aboriginal Affairs,Aboriginal Affairs +376906,Aboriginal Affairs,Aboriginal Affairs +376904,Aboriginal Affairs,Aboriginal Affairs +376903,Aboriginal Affairs,Aboriginal Affairs +376882,Aboriginal Affairs,Aboriginal Affairs +373257,Aboriginal Affairs,Aboriginal Affairs +372669,Aboriginal Affairs,Aboriginal Affairs +372637,Aboriginal Affairs,Aboriginal Affairs +371389,Aboriginal Affairs,Aboriginal Affairs +371385,Aboriginal Affairs,Aboriginal Affairs +371384,Aboriginal Affairs,Aboriginal Affairs +371382,Aboriginal Affairs,Aboriginal Affairs +371359,Aboriginal Affairs,Aboriginal Affairs +371355,Aboriginal Affairs,Aboriginal Affairs +371348,Aboriginal Affairs,Aboriginal Affairs +366680,Aboriginal Affairs,Aboriginal Affairs +496513,Aboriginal Affairs,Aboriginal Affairs +478905,Aboriginal Affairs,Aboriginal Affairs +477328,Aboriginal Affairs,Aboriginal Affairs +476415,Aboriginal Affairs,Aboriginal Affairs +476414,Aboriginal Affairs,Aboriginal Affairs +471737,Aboriginal Affairs,Aboriginal Affairs +471686,Aboriginal Affairs,Aboriginal Affairs +468963,Aboriginal Affairs,Aboriginal Affairs +463204,Aboriginal Affairs,Aboriginal Affairs +450405,Aboriginal Affairs,Aboriginal Affairs +450404,Aboriginal Affairs,Aboriginal Affairs +434749,Aboriginal Affairs,Aboriginal Affairs +434747,Aboriginal Affairs,Aboriginal Affairs +434746,Aboriginal Affairs,Aboriginal Affairs +432872,Aboriginal Affairs,Aboriginal Affairs +432867,Aboriginal Affairs,Aboriginal Affairs +421574,Aboriginal Affairs,Aboriginal Affairs +421573,Aboriginal Affairs,Aboriginal Affairs +421572,Aboriginal Affairs,Aboriginal Affairs +410745,Aboriginal Affairs,Aboriginal Affairs +410194,Aboriginal Affairs,Aboriginal Affairs +535953,Aboriginal Affairs,Aboriginal Affairs +535952,Aboriginal Affairs,Aboriginal Affairs +535951,Aboriginal Affairs,Aboriginal Affairs +535950,Aboriginal Affairs,Aboriginal Affairs +520802,Aboriginal Affairs,Aboriginal Affairs +520801,Aboriginal Affairs,Aboriginal Affairs +515676,Aboriginal Affairs,Aboriginal Affairs +239969,Arts and Culture,Arts and Culture +258276,Broadcasting,Broadcasting +258275,Broadcasting,Broadcasting +258278,Broadcasting,Broadcasting +251269,Telecommunications,Telecommunications +240511,Telecommunications,Telecommunications +284529,Telecommunications,Telecommunications +262150,Telecommunications,Telecommunications +262149,Telecommunications,Telecommunications +262129,Telecommunications,Telecommunications +262590,Arts and Culture,Arts and Culture +262589,Arts and Culture,Arts and Culture +250800,Arts and Culture,Arts and Culture +250798,Arts and Culture,Arts and Culture +250797,Arts and Culture,Arts and Culture +245486,Arts and Culture,Arts and Culture +245484,Arts and Culture,Arts and Culture +538293,Science and Technology,Science and Technology +501567,Science and Technology,Science and Technology +349125,Science and Technology,Science and Technology +248789,Broadcasting,Broadcasting +244129,Broadcasting,Broadcasting +245749,Science and Technology,Science and Technology +245870,Broadcasting,Broadcasting +245869,Broadcasting,Broadcasting +317817,Broadcasting,Broadcasting +317151,Broadcasting,Broadcasting +305410,Broadcasting,Broadcasting +305409,Broadcasting,Broadcasting +294630,Broadcasting,Broadcasting +294629,Broadcasting,Broadcasting +251769,Broadcasting,Broadcasting +294629,Telecommunications,Telecommunications +295851,Science and Technology,Science and Technology +295849,Science and Technology,Science and Technology +395386,Science and Technology,Science and Technology +387255,Science and Technology,Science and Technology +370634,Science and Technology,Science and Technology +367875,Science and Technology,Science and Technology +358081,Science and Technology,Science and Technology +358078,Science and Technology,Science and Technology +358076,Science and Technology,Science and Technology +358064,Science and Technology,Science and Technology +355994,Science and Technology,Science and Technology +348251,Science and Technology,Science and Technology +343580,Science and Technology,Science and Technology +337629,Science and Technology,Science and Technology +453184,Arts and Culture,Arts and Culture +444290,Arts and Culture,Arts and Culture +288889,Arts and Culture,Arts and Culture +262753,Arts and Culture,Arts and Culture +262752,Arts and Culture,Arts and Culture +257409,Arts and Culture,Arts and Culture +254408,Arts and Culture,Arts and Culture +254407,Arts and Culture,Arts and Culture +340831,Arts and Culture,Arts and Culture +340828,Arts and Culture,Arts and Culture +327915,Arts and Culture,Arts and Culture +321517,Arts and Culture,Arts and Culture +313550,Arts and Culture,Arts and Culture +311089,Arts and Culture,Arts and Culture +419329,Arts and Culture,Arts and Culture +417972,Arts and Culture,Arts and Culture +417971,Arts and Culture,Arts and Culture +408095,Arts and Culture,Arts and Culture +408094,Arts and Culture,Arts and Culture +408093,Arts and Culture,Arts and Culture +408092,Arts and Culture,Arts and Culture +406760,Arts and Culture,Arts and Culture +405189,Arts and Culture,Arts and Culture +393393,Arts and Culture,Arts and Culture +389160,Arts and Culture,Arts and Culture +378208,Arts and Culture,Arts and Culture +378207,Arts and Culture,Arts and Culture +374646,Arts and Culture,Arts and Culture +374640,Arts and Culture,Arts and Culture +374638,Arts and Culture,Arts and Culture +374635,Arts and Culture,Arts and Culture +515578,Arts and Culture,Arts and Culture +513661,Arts and Culture,Arts and Culture +503907,Arts and Culture,Arts and Culture +503906,Arts and Culture,Arts and Culture +503903,Arts and Culture,Arts and Culture +495521,Arts and Culture,Arts and Culture +495519,Arts and Culture,Arts and Culture +495518,Arts and Culture,Arts and Culture +495517,Arts and Culture,Arts and Culture +495516,Arts and Culture,Arts and Culture +492891,Arts and Culture,Arts and Culture +492889,Arts and Culture,Arts and Culture +491570,Arts and Culture,Arts and Culture +491559,Arts and Culture,Arts and Culture +491554,Arts and Culture,Arts and Culture +491549,Arts and Culture,Arts and Culture +491543,Arts and Culture,Arts and Culture +491535,Arts and Culture,Arts and Culture +477354,Arts and Culture,Arts and Culture +477352,Arts and Culture,Arts and Culture +477349,Arts and Culture,Arts and Culture +477340,Arts and Culture,Arts and Culture +472462,Arts and Culture,Arts and Culture +243129,Science and Technology,Science and Technology +364795,Science and Technology,Science and Technology +340539,Science and Technology,Science and Technology +243751,Arts and Culture,Arts and Culture +243750,Arts and Culture,Arts and Culture +243755,Arts and Culture,Arts and Culture +243751,Broadcasting,Broadcasting +243750,Broadcasting,Broadcasting +243755,Broadcasting,Broadcasting +243754,Broadcasting,Broadcasting +243753,Broadcasting,Broadcasting +243753,Telecommunications,Telecommunications +243750,Telecommunications,Telecommunications +416575,Broadcasting,Broadcasting +306009,Aboriginal Affairs,Aboriginal Affairs +245185,Aboriginal Affairs,Aboriginal Affairs +277310,Aboriginal Affairs,Aboriginal Affairs +245190,Aboriginal Affairs,Aboriginal Affairs +331630,Aboriginal Affairs,Aboriginal Affairs +451337,Aboriginal Affairs,Aboriginal Affairs +451336,Aboriginal Affairs,Aboriginal Affairs +483594,Aboriginal Affairs,Aboriginal Affairs +451346,Aboriginal Affairs,Aboriginal Affairs +451344,Aboriginal Affairs,Aboriginal Affairs +451343,Aboriginal Affairs,Aboriginal Affairs +451342,Aboriginal Affairs,Aboriginal Affairs +451341,Aboriginal Affairs,Aboriginal Affairs +451340,Aboriginal Affairs,Aboriginal Affairs +451339,Aboriginal Affairs,Aboriginal Affairs +337109,Broadcasting,Broadcasting +249014,Aboriginal Affairs,Aboriginal Affairs +392334,Science and Technology,Science and Technology +538302,Science and Technology,Science and Technology +373740,Science and Technology,Science and Technology +373739,Science and Technology,Science and Technology +370136,Science and Technology,Science and Technology +370135,Science and Technology,Science and Technology +349131,Science and Technology,Science and Technology +366727,Aboriginal Affairs,Aboriginal Affairs +365612,Aboriginal Affairs,Aboriginal Affairs +254155,Aboriginal Affairs,Aboriginal Affairs +254152,Aboriginal Affairs,Aboriginal Affairs +250888,Aboriginal Affairs,Aboriginal Affairs +250879,Aboriginal Affairs,Aboriginal Affairs +250874,Aboriginal Affairs,Aboriginal Affairs +250870,Aboriginal Affairs,Aboriginal Affairs +250861,Aboriginal Affairs,Aboriginal Affairs +310871,Aboriginal Affairs,Aboriginal Affairs +310854,Aboriginal Affairs,Aboriginal Affairs +286229,Aboriginal Affairs,Aboriginal Affairs +269602,Aboriginal Affairs,Aboriginal Affairs +269599,Aboriginal Affairs,Aboriginal Affairs +269566,Aboriginal Affairs,Aboriginal Affairs +254156,Aboriginal Affairs,Aboriginal Affairs +377766,Aboriginal Affairs,Aboriginal Affairs +377765,Aboriginal Affairs,Aboriginal Affairs +377761,Aboriginal Affairs,Aboriginal Affairs +373182,Aboriginal Affairs,Aboriginal Affairs +371548,Aboriginal Affairs,Aboriginal Affairs +371535,Aboriginal Affairs,Aboriginal Affairs +301961,Aboriginal Affairs,Aboriginal Affairs +296651,Aboriginal Affairs,Aboriginal Affairs +291651,Aboriginal Affairs,Aboriginal Affairs +251035,Aboriginal Affairs,Aboriginal Affairs +383254,Aboriginal Affairs,Aboriginal Affairs +371720,Aboriginal Affairs,Aboriginal Affairs +371719,Aboriginal Affairs,Aboriginal Affairs +324069,Aboriginal Affairs,Aboriginal Affairs +301970,Aboriginal Affairs,Aboriginal Affairs +301969,Aboriginal Affairs,Aboriginal Affairs +491424,Aboriginal Affairs,Aboriginal Affairs +480906,Aboriginal Affairs,Aboriginal Affairs +461545,Aboriginal Affairs,Aboriginal Affairs +461540,Aboriginal Affairs,Aboriginal Affairs +461539,Aboriginal Affairs,Aboriginal Affairs +461537,Aboriginal Affairs,Aboriginal Affairs +461535,Aboriginal Affairs,Aboriginal Affairs +452778,Aboriginal Affairs,Aboriginal Affairs +452772,Aboriginal Affairs,Aboriginal Affairs +452769,Aboriginal Affairs,Aboriginal Affairs +452673,Aboriginal Affairs,Aboriginal Affairs +442691,Aboriginal Affairs,Aboriginal Affairs +442690,Aboriginal Affairs,Aboriginal Affairs +442688,Aboriginal Affairs,Aboriginal Affairs +442684,Aboriginal Affairs,Aboriginal Affairs +442683,Aboriginal Affairs,Aboriginal Affairs +426302,Aboriginal Affairs,Aboriginal Affairs +420227,Aboriginal Affairs,Aboriginal Affairs +409936,Aboriginal Affairs,Aboriginal Affairs +409935,Aboriginal Affairs,Aboriginal Affairs +409933,Aboriginal Affairs,Aboriginal Affairs +409932,Aboriginal Affairs,Aboriginal Affairs +403735,Aboriginal Affairs,Aboriginal Affairs +403733,Aboriginal Affairs,Aboriginal Affairs +403730,Aboriginal Affairs,Aboriginal Affairs +403657,Aboriginal Affairs,Aboriginal Affairs +395317,Aboriginal Affairs,Aboriginal Affairs +395315,Aboriginal Affairs,Aboriginal Affairs +395314,Aboriginal Affairs,Aboriginal Affairs +395313,Aboriginal Affairs,Aboriginal Affairs +392559,Aboriginal Affairs,Aboriginal Affairs +383315,Aboriginal Affairs,Aboriginal Affairs +380837,Aboriginal Affairs,Aboriginal Affairs +380834,Aboriginal Affairs,Aboriginal Affairs +379709,Aboriginal Affairs,Aboriginal Affairs +379707,Aboriginal Affairs,Aboriginal Affairs +379701,Aboriginal Affairs,Aboriginal Affairs +379034,Aboriginal Affairs,Aboriginal Affairs +374945,Aboriginal Affairs,Aboriginal Affairs +373476,Aboriginal Affairs,Aboriginal Affairs +365099,Aboriginal Affairs,Aboriginal Affairs +349250,Aboriginal Affairs,Aboriginal Affairs +349245,Aboriginal Affairs,Aboriginal Affairs +349235,Aboriginal Affairs,Aboriginal Affairs +349221,Aboriginal Affairs,Aboriginal Affairs +341985,Aboriginal Affairs,Aboriginal Affairs +341977,Aboriginal Affairs,Aboriginal Affairs +331659,Aboriginal Affairs,Aboriginal Affairs +327521,Aboriginal Affairs,Aboriginal Affairs +324714,Aboriginal Affairs,Aboriginal Affairs +324672,Aboriginal Affairs,Aboriginal Affairs +324356,Aboriginal Affairs,Aboriginal Affairs +309897,Aboriginal Affairs,Aboriginal Affairs +309892,Aboriginal Affairs,Aboriginal Affairs +298990,Aboriginal Affairs,Aboriginal Affairs +273656,Aboriginal Affairs,Aboriginal Affairs +269031,Aboriginal Affairs,Aboriginal Affairs +254075,Aboriginal Affairs,Aboriginal Affairs +540109,Aboriginal Affairs,Aboriginal Affairs +517960,Aboriginal Affairs,Aboriginal Affairs +513271,Aboriginal Affairs,Aboriginal Affairs +513269,Aboriginal Affairs,Aboriginal Affairs +510539,Aboriginal Affairs,Aboriginal Affairs +508122,Aboriginal Affairs,Aboriginal Affairs +276529,Telecommunications,Telecommunications +259011,Telecommunications,Telecommunications +259830,Science and Technology,Science and Technology +259829,Science and Technology,Science and Technology +317652,Telecommunications,Telecommunications +274629,Telecommunications,Telecommunications +324713,Telecommunications,Telecommunications +321154,Telecommunications,Telecommunications +405395,Arts and Culture,Arts et culture +403593,Arts and Culture,Arts et culture +364995,Arts and Culture,Arts et culture +329784,Arts and Culture,Arts et culture +329783,Arts and Culture,Arts et culture +329782,Arts and Culture,Arts et culture +329781,Arts and Culture,Arts et culture +264286,Arts and Culture,Arts et culture +396701,Arts and Culture,Arts et culture +396687,Arts and Culture,Arts et culture +381511,Arts and Culture,Arts et culture +379259,Arts and Culture,Arts et culture +379258,Arts and Culture,Arts et culture +460212,Arts and Culture,Arts et culture +457221,Arts and Culture,Arts et culture +457219,Arts and Culture,Arts et culture +447734,Arts and Culture,Arts et culture +447729,Arts and Culture,Arts et culture +435318,Arts and Culture,Arts et culture +430116,Arts and Culture,Arts et culture +430115,Arts and Culture,Arts et culture +426338,Arts and Culture,Arts et culture +422157,Arts and Culture,Arts et culture +431812,Arts and Culture,Arts et culture +430114,Arts and Culture,Arts et culture +364993,Arts and Culture,Arts et culture +360084,Arts and Culture,Arts et culture +348799,Arts and Culture,Arts et culture +426336,Arts and Culture,Arts et culture +422147,Arts and Culture,Arts et culture +422142,Arts and Culture,Arts et culture +419981,Arts and Culture,Arts et culture +415041,Arts and Culture,Arts et culture +405391,Arts and Culture,Arts et culture +403587,Arts and Culture,Arts et culture +396691,Arts and Culture,Arts et culture +396655,Arts and Culture,Arts et culture +396652,Arts and Culture,Arts et culture +396646,Arts and Culture,Arts et culture +392571,Arts and Culture,Arts et culture +392568,Arts and Culture,Arts et culture +386029,Arts and Culture,Arts et culture +382720,Arts and Culture,Arts et culture +379255,Arts and Culture,Arts et culture +460211,Arts and Culture,Arts et culture +457217,Arts and Culture,Arts et culture +449490,Arts and Culture,Arts et culture +445073,Arts and Culture,Arts et culture +439076,Arts and Culture,Arts et culture +435320,Arts and Culture,Arts et culture +379253,Arts and Culture,Arts et culture +379252,Arts and Culture,Arts et culture +364994,Arts and Culture,Arts et culture +273294,Arts and Culture,Arts et culture +264285,Arts and Culture,Arts et culture +259129,Arts and Culture,Arts et culture +455428,Arts and Culture,Arts et culture +455312,Arts and Culture,Arts et culture +452494,Arts and Culture,Arts et culture +439083,Arts and Culture,Arts et culture +430113,Arts and Culture,Arts et culture +426337,Arts and Culture,Arts et culture +422153,Arts and Culture,Arts et culture +413279,Arts and Culture,Arts et culture +405404,Arts and Culture,Arts et culture +403592,Arts and Culture,Arts et culture +396695,Arts and Culture,Arts et culture +396684,Arts and Culture,Arts et culture +355504,Arts and Culture,Arts and Culture +355503,Arts and Culture,Arts and Culture +355508,Arts and Culture,Arts and Culture +258011,Science and Technology,Science and Technology +258010,Science and Technology,Science and Technology +458978,Aboriginal Affairs,Aboriginal Affairs +383222,Telecommunications,Telecommunications +383221,Telecommunications,Telecommunications +383220,Telecommunications,Telecommunications +381918,Telecommunications,Telecommunications +381917,Telecommunications,Telecommunications +378841,Telecommunications,Telecommunications +375785,Telecommunications,Telecommunications +373940,Telecommunications,Telecommunications +372198,Telecommunications,Telecommunications +372148,Telecommunications,Telecommunications +369095,Telecommunications,Telecommunications +369094,Telecommunications,Telecommunications +364822,Telecommunications,Telecommunications +363494,Telecommunications,Telecommunications +361602,Telecommunications,Telecommunications +357683,Telecommunications,Telecommunications +349165,Telecommunications,Telecommunications +347190,Telecommunications,Telecommunications +343307,Telecommunications,Telecommunications +339389,Telecommunications,Telecommunications +338652,Telecommunications,Telecommunications +327754,Telecommunications,Telecommunications +324550,Telecommunications,Telecommunications +322265,Telecommunications,Telecommunications +322264,Telecommunications,Telecommunications +322262,Telecommunications,Telecommunications +322261,Telecommunications,Telecommunications +316390,Telecommunications,Telecommunications +299629,Telecommunications,Telecommunications +299369,Telecommunications,Telecommunications +299350,Telecommunications,Telecommunications +299349,Telecommunications,Telecommunications +273352,Telecommunications,Telecommunications +273350,Telecommunications,Telecommunications +273348,Telecommunications,Telecommunications +263927,Telecommunications,Telecommunications +259573,Telecommunications,Telecommunications +540569,Telecommunications,Telecommunications +540567,Telecommunications,Telecommunications +520860,Telecommunications,Telecommunications +486039,Telecommunications,Telecommunications +483142,Telecommunications,Telecommunications +483141,Telecommunications,Telecommunications +465878,Telecommunications,Telecommunications +462165,Telecommunications,Telecommunications +458979,Telecommunications,Telecommunications +458978,Telecommunications,Telecommunications +458977,Telecommunications,Telecommunications +458976,Telecommunications,Telecommunications +448740,Telecommunications,Telecommunications +444722,Telecommunications,Telecommunications +440824,Telecommunications,Telecommunications +422661,Telecommunications,Telecommunications +417378,Telecommunications,Telecommunications +397586,Telecommunications,Telecommunications +395680,Telecommunications,Telecommunications +395678,Telecommunications,Telecommunications +395677,Telecommunications,Telecommunications +268954,Science and Technology,Science and Technology +268952,Science and Technology,Science and Technology +341702,Science and Technology,Science and Technology +341699,Science and Technology,Science and Technology +341698,Science and Technology,Science and Technology +341690,Science and Technology,Science and Technology +327893,Science and Technology,Science and Technology +327892,Science and Technology,Science and Technology +327891,Science and Technology,Science and Technology +327890,Science and Technology,Science and Technology +327889,Science and Technology,Science and Technology +304532,Science and Technology,Science and Technology +304531,Science and Technology,Science and Technology +268956,Science and Technology,Science and Technology +292812,Arts and Culture,Arts and Culture +286149,Arts and Culture,Arts and Culture +275050,Science and Technology,Science and Technology +275049,Science and Technology,Science and Technology +298551,Science and Technology,Science and Technology +298550,Science and Technology,Science and Technology +275410,Science and Technology,Science and Technology +275409,Science and Technology,Science and Technology +300609,Science and Technology,Science and Technology +275591,Science and Technology,Science and Technology +275556,Science and Technology,Science and Technology +275595,Science and Technology,Science and Technology +286289,Science and Technology,Science and Technology +274931,Science and Technology,Science and Technology +318729,Science and Technology,Science and Technology +287309,Telecommunications,Telecommunications +411937,Aboriginal Affairs,Aboriginal Affairs +438816,Aboriginal Affairs,Aboriginal Affairs +264548,Aboriginal Affairs,Aboriginal Affairs +416929,Aboriginal Affairs,Aboriginal Affairs +416923,Aboriginal Affairs,Aboriginal Affairs +416915,Aboriginal Affairs,Aboriginal Affairs +416914,Aboriginal Affairs,Aboriginal Affairs +399342,Aboriginal Affairs,Aboriginal Affairs +460395,Aboriginal Affairs,Aboriginal Affairs +399339,Aboriginal Affairs,Aboriginal Affairs +399337,Aboriginal Affairs,Aboriginal Affairs +399329,Aboriginal Affairs,Aboriginal Affairs +378877,Aboriginal Affairs,Aboriginal Affairs +378876,Aboriginal Affairs,Aboriginal Affairs +378874,Aboriginal Affairs,Aboriginal Affairs +378871,Aboriginal Affairs,Aboriginal Affairs +378870,Aboriginal Affairs,Aboriginal Affairs +378863,Aboriginal Affairs,Aboriginal Affairs +373424,Aboriginal Affairs,Aboriginal Affairs +373423,Aboriginal Affairs,Aboriginal Affairs +373421,Aboriginal Affairs,Aboriginal Affairs +322752,Aboriginal Affairs,Aboriginal Affairs +322751,Aboriginal Affairs,Aboriginal Affairs +301509,Aboriginal Affairs,Aboriginal Affairs +458187,Aboriginal Affairs,Aboriginal Affairs +458082,Aboriginal Affairs,Aboriginal Affairs +457918,Aboriginal Affairs,Aboriginal Affairs +454253,Aboriginal Affairs,Aboriginal Affairs +454252,Aboriginal Affairs,Aboriginal Affairs +454251,Aboriginal Affairs,Aboriginal Affairs +454248,Aboriginal Affairs,Aboriginal Affairs +454244,Aboriginal Affairs,Aboriginal Affairs +454243,Aboriginal Affairs,Aboriginal Affairs +453993,Aboriginal Affairs,Aboriginal Affairs +453990,Aboriginal Affairs,Aboriginal Affairs +453686,Aboriginal Affairs,Aboriginal Affairs +453685,Aboriginal Affairs,Aboriginal Affairs +453682,Aboriginal Affairs,Aboriginal Affairs +444476,Aboriginal Affairs,Aboriginal Affairs +444475,Aboriginal Affairs,Aboriginal Affairs +439900,Aboriginal Affairs,Aboriginal Affairs +437291,Aboriginal Affairs,Aboriginal Affairs +437289,Aboriginal Affairs,Aboriginal Affairs +433535,Aboriginal Affairs,Aboriginal Affairs +433533,Aboriginal Affairs,Aboriginal Affairs +433528,Aboriginal Affairs,Aboriginal Affairs +433525,Aboriginal Affairs,Aboriginal Affairs +433524,Aboriginal Affairs,Aboriginal Affairs +433520,Aboriginal Affairs,Aboriginal Affairs +420403,Aboriginal Affairs,Aboriginal Affairs +420402,Aboriginal Affairs,Aboriginal Affairs +420401,Aboriginal Affairs,Aboriginal Affairs +420400,Aboriginal Affairs,Aboriginal Affairs +420399,Aboriginal Affairs,Aboriginal Affairs +418584,Aboriginal Affairs,Aboriginal Affairs +196607,Telecommunications,Telecommunications +277196,Aboriginal Affairs,Aboriginal Affairs +239709,Broadcasting,Broadcasting +199623,Aboriginal Affairs,Aboriginal Affairs +436079,Broadcasting,Broadcasting +392161,Science and Technology,Science and Technology +391628,Telecommunications,Telecommunications +407655,Arts and Culture,Arts and Culture +440033,Broadcasting,Broadcasting +202988,Telecommunications,Telecommunications +245448,Broadcasting,Broadcasting +222147,Telecommunications,Telecommunications +473711,Science and Technology,Science and Technology +315252,Aboriginal Affairs,Aboriginal Affairs +204352,Science and Technology,Science and Technology +331969,Broadcasting,Broadcasting +223855,Arts and Culture,Arts and Culture +203668,Science and Technology,Science and Technology +203930,Arts and Culture,Arts and Culture +244194,Telecommunications,Telecommunications +407221,Aboriginal Affairs,Aboriginal Affairs +205027,Arts and Culture,Arts and Culture +217943,Aboriginal Affairs,Aboriginal Affairs +206130,Aboriginal Affairs,Aboriginal Affairs +206132,Aboriginal Affairs,Aboriginal Affairs +206767,Science and Technology,Science and Technology +211786,Broadcasting,Broadcasting +223529,Broadcasting,Broadcasting +223541,Broadcasting,Broadcasting +223541,Arts and Culture,Arts and Culture +207183,Aboriginal Affairs,Aboriginal Affairs +225447,Aboriginal Affairs,Aboriginal Affairs +356251,Telecommunications,Telecommunications +420080,Science and Technology,Sciences et technologies +215572,Arts and Culture,Arts and Culture +217715,Broadcasting,Broadcasting +405767,Telecommunications,Telecommunications +212491,Telecommunications,Telecommunications +233570,Arts and Culture,Arts and Culture +348534,Broadcasting,Broadcasting +359912,Telecommunications,Telecommunications +296163,Arts and Culture,Arts et culture +542748,Aboriginal Affairs,Aboriginal Affairs +222227,Aboriginal Affairs,Aboriginal Affairs +215529,Aboriginal Affairs,Aboriginal Affairs +455561,Telecommunications,Telecommunications +383968,Telecommunications,Telecommunications +218568,Science and Technology,Science and Technology +418266,Science and Technology,Science and Technology +517925,Telecommunications,Telecommunications +229750,Broadcasting,Broadcasting +232171,Broadcasting,Broadcasting +233710,Science and Technology,Science and Technology +223576,Aboriginal Affairs,Aboriginal Affairs +272589,Science and Technology,Science and Technology +303516,Science and Technology,Science and Technology +230064,Science and Technology,Science and Technology +217954,Aboriginal Affairs,Aboriginal Affairs +217969,Aboriginal Affairs,Aboriginal Affairs +218027,Aboriginal Affairs,Aboriginal Affairs +218029,Aboriginal Affairs,Aboriginal Affairs +232391,Science and Technology,Science and Technology +223553,Broadcasting,Broadcasting +233825,Broadcasting,Broadcasting +233825,Telecommunications,Telecommunications +251430,Science and Technology,Science and Technology +391124,Science and Technology,Science and Technology +484921,Science and Technology,Science and Technology +228169,Aboriginal Affairs,Aboriginal Affairs +244054,Science and Technology,Science and Technology +427395,Science and Technology,Science and Technology +247830,Science and Technology,Science and Technology +233689,Aboriginal Affairs,Aboriginal Affairs +227280,Aboriginal Affairs,Aboriginal Affairs +530614,Science and Technology,Science and Technology +274069,Broadcasting,Broadcasting +286049,Aboriginal Affairs,Aboriginal Affairs +225447,Science and Technology,Science and Technology +330258,Science and Technology,Science and Technology +294551,Science and Technology,Science and Technology +256689,Science and Technology,Science and Technology +226107,Telecommunications,Telecommunications +326411,Telecommunications,Telecommunications +229845,Science and Technology,Science and Technology +226289,Telecommunications,Telecommunications +227130,Science and Technology,Science and Technology +226727,Telecommunications,Telecommunications +228671,Science and Technology,Science and Technology +356576,Science and Technology,Science and Technology +247249,Science and Technology,Science and Technology +373199,Arts and Culture,Arts and Culture +247370,Science and Technology,Science and Technology +229107,Aboriginal Affairs,Aboriginal Affairs +233827,Broadcasting,Broadcasting +233831,Broadcasting,Broadcasting +231629,Science and Technology,Science and Technology +245480,Arts and Culture,Arts and Culture +273557,Aboriginal Affairs,Aboriginal Affairs +240753,Aboriginal Affairs,Aboriginal Affairs +333896,Arts and Culture,Arts and Culture +245829,Science and Technology,Science and Technology +374432,Telecommunications,Telecommunications +238749,Science and Technology,Science and Technology +277453,Telecommunications,Telecommunications +503523,Aboriginal Affairs,Aboriginal Affairs +289970,Arts and Culture,Arts and Culture +258277,Broadcasting,Broadcasting +251270,Telecommunications,Telecommunications +241120,Aboriginal Affairs,Aboriginal Affairs +241142,Aboriginal Affairs,Aboriginal Affairs +262609,Arts and Culture,Arts and Culture +335124,Science and Technology,Science and Technology +253431,Broadcasting,Broadcasting +245750,Science and Technology,Science and Technology +245871,Broadcasting,Broadcasting +317151,Telecommunications,Telecommunications +318930,Science and Technology,Science and Technology +326895,Science and Technology,Science and Technology +243069,Arts and Culture,Arts and Culture +396282,Science and Technology,Science and Technology +462363,Arts and Culture,Arts and Culture +243891,Science and Technology,Science and Technology +293169,Science and Technology,Science and Technology +288909,Science and Technology,Science and Technology +243752,Arts and Culture,Arts and Culture +243752,Broadcasting,Broadcasting +243754,Telecommunications,Telecommunications +255669,Aboriginal Affairs,Aboriginal Affairs +418037,Broadcasting,Broadcasting +248389,Science and Technology,Science and Technology +307489,Aboriginal Affairs,Aboriginal Affairs +280873,Aboriginal Affairs,Aboriginal Affairs +291079,Aboriginal Affairs,Aboriginal Affairs +245457,Science and Technology,Science and Technology +451338,Aboriginal Affairs,Aboriginal Affairs +375615,Broadcasting,Broadcasting +253370,Aboriginal Affairs,Aboriginal Affairs +501564,Science and Technology,Science and Technology +249259,Aboriginal Affairs,Aboriginal Affairs +249261,Aboriginal Affairs,Aboriginal Affairs +249262,Aboriginal Affairs,Aboriginal Affairs +249263,Aboriginal Affairs,Aboriginal Affairs +371534,Aboriginal Affairs,Aboriginal Affairs +301964,Aboriginal Affairs,Aboriginal Affairs +491457,Aboriginal Affairs,Aboriginal Affairs +276536,Telecommunications,Telecommunications +272409,Science and Technology,Science and Technology +317653,Telecommunications,Telecommunications +405400,Arts and Culture,Arts et culture +435317,Arts and Culture,Arts et culture +394409,Arts and Culture,Arts et culture +355507,Arts and Culture,Arts and Culture +257810,Telecommunications,Telecommunications +258012,Science and Technology,Science and Technology +258217,Aboriginal Affairs,Aboriginal Affairs +258529,Science and Technology,Science and Technology +520860,Aboriginal Affairs,Aboriginal Affairs +392195,Telecommunications,Telecommunications +268955,Science and Technology,Science and Technology +300471,Arts and Culture,Arts and Culture +498783,Aboriginal Affairs,Aboriginal Affairs +298549,Science and Technology,Science and Technology +275411,Science and Technology,Science and Technology +275594,Science and Technology,Science and Technology +299530,Science and Technology,Science and Technology +263620,Broadcasting,Broadcasting +263620,Telecommunications,Telecommunications +263620,Broadcasting,Broadcasting +263620,Telecommunications,Telecommunications +263751,Science and Technology,Science and Technology +416903,Aboriginal Affairs,Aboriginal Affairs +399344,Aboriginal Affairs,Aboriginal Affairs +454243,Arts and Culture,Arts and Culture +378863,Science and Technology,Science and Technology +325849,Science and Technology,Science and Technology +430001,Aboriginal Affairs,Aboriginal Affairs +284789,Aboriginal Affairs,Aboriginal Affairs +269612,Telecommunications,Telecommunications +273587,Telecommunications,Telecommunications +299590,Aboriginal Affairs,Aboriginal Affairs +331069,Aboriginal Affairs,Aboriginal Affairs +368889,Telecommunications,Telecommunications +273018,Telecommunications,Telecommunications +279190,Telecommunications,Telecommunications +269771,Science and Technology,Science and Technology +341097,Aboriginal Affairs,Aboriginal Affairs +278309,Aboriginal Affairs,Aboriginal Affairs +348719,Aboriginal Affairs,Aboriginal Affairs +270549,Science and Technology,Science and Technology +270713,Aboriginal Affairs,Aboriginal Affairs +363042,Aboriginal Affairs,Aboriginal Affairs +271136,Aboriginal Affairs,Aboriginal Affairs +290249,Telecommunications,Telecommunications +273646,Telecommunications,Telecommunications +274092,Science and Technology,Science and Technology +275663,Aboriginal Affairs,Aboriginal Affairs +275813,Telecommunications,Telecommunications +305949,Aboriginal Affairs,Aboriginal Affairs +443790,Science and Technology,Science and Technology +278033,Aboriginal Affairs,Aboriginal Affairs +482544,Science and Technology,Science and Technology +425956,Science and Technology,Science and Technology +401517,Aboriginal Affairs,Aboriginal Affairs +352469,Science and Technology,Science and Technology +320789,Science and Technology,Science and Technology +323810,Science and Technology,Science and Technology +272732,Arts and Culture,Arts and Culture +278956,Aboriginal Affairs,Aboriginal Affairs +273235,Arts and Culture,Arts and Culture +273236,Arts and Culture,Arts and Culture +273237,Arts and Culture,Arts and Culture +273238,Arts and Culture,Arts and Culture +309749,Aboriginal Affairs,Affaires autochtones +350290,Aboriginal Affairs,Aboriginal Affairs +278932,Aboriginal Affairs,Aboriginal Affairs +296788,Aboriginal Affairs,Aboriginal Affairs +312377,Aboriginal Affairs,Aboriginal Affairs +290569,Telecommunications,Telecommunications +275350,Science and Technology,Science and Technology +277430,Broadcasting,Broadcasting +407647,Science and Technology,Science and Technology +432741,Aboriginal Affairs,Aboriginal Affairs +360021,Science and Technology,Science and Technology +321830,Telecommunications,Telecommunications +325251,Arts and Culture,Arts and Culture +493681,Arts and Culture,Arts and Culture +277507,Science and Technology,Science and Technology +277512,Science and Technology,Science and Technology +277511,Science and Technology,Science and Technology +279870,Aboriginal Affairs,Aboriginal Affairs +278489,Telecommunications,Telecommunications +334089,Arts and Culture,Arts and Culture +397764,Broadcasting,Broadcasting +280469,Aboriginal Affairs,Aboriginal Affairs +290641,Telecommunications,Telecommunications +307651,Telecommunications,Telecommunications +282790,Science and Technology,Science and Technology +521195,Science and Technology,Science and Technology +290975,Science and Technology,Science and Technology +287170,Telecommunications,Telecommunications +300910,Science and Technology,Science and Technology +292671,Arts and Culture,Arts and Culture +292671,Broadcasting,Broadcasting +298410,Arts and Culture,Arts and Culture +341124,Broadcasting,Broadcasting +308531,Arts and Culture,Arts and Culture +317654,Broadcasting,Broadcasting +294290,Aboriginal Affairs,Aboriginal Affairs +295649,Aboriginal Affairs,Aboriginal Affairs +333894,Arts and Culture,Arts and Culture +385214,Arts and Culture,Arts and Culture +513696,Broadcasting,Broadcasting +296786,Aboriginal Affairs,Aboriginal Affairs +297130,Broadcasting,Broadcasting +319779,Science and Technology,Science and Technology +291591,Aboriginal Affairs,Aboriginal Affairs +300775,Telecommunications,Telecommunications +300775,Broadcasting,Broadcasting +293531,Aboriginal Affairs,Aboriginal Affairs +373760,Aboriginal Affairs,Aboriginal Affairs +293190,Science and Technology,Science and Technology +471224,Aboriginal Affairs,Aboriginal Affairs +315490,Aboriginal Affairs,Aboriginal Affairs +301850,Aboriginal Affairs,Aboriginal Affairs +535615,Science and Technology,Science and Technology +424010,Science and Technology,Science and Technology +309634,Aboriginal Affairs,Aboriginal Affairs +338525,Science and Technology,Science and Technology +504620,Science and Technology,Science and Technology +504625,Science and Technology,Science and Technology +403799,Science and Technology,Science and Technology +375745,Aboriginal Affairs,Aboriginal Affairs +296350,Broadcasting,Broadcasting +296369,Broadcasting,Broadcasting +296370,Broadcasting,Broadcasting +319056,Science and Technology,Science and Technology +320529,Telecommunications,Telecommunications +312861,Arts and Culture,Arts and Culture +383745,Arts and Culture,Arts and Culture +298453,Science and Technology,Science and Technology +373059,Aboriginal Affairs,Aboriginal Affairs +418574,Aboriginal Affairs,Aboriginal Affairs +418573,Aboriginal Affairs,Aboriginal Affairs +418493,Aboriginal Affairs,Aboriginal Affairs +410812,Aboriginal Affairs,Aboriginal Affairs +410811,Aboriginal Affairs,Aboriginal Affairs +410808,Aboriginal Affairs,Aboriginal Affairs +408521,Aboriginal Affairs,Aboriginal Affairs +408520,Aboriginal Affairs,Aboriginal Affairs +408519,Aboriginal Affairs,Aboriginal Affairs +399345,Aboriginal Affairs,Aboriginal Affairs +378876,Arts and Culture,Arts and Culture +373424,Science and Technology,Science and Technology +458187,Science and Technology,Science and Technology +339852,Science and Technology,Science and Technology +339851,Science and Technology,Science and Technology +339850,Science and Technology,Science and Technology +339849,Science and Technology,Science and Technology +322752,Science and Technology,Science and Technology +322751,Science and Technology,Science and Technology +420403,Science and Technology,Science and Technology +420402,Science and Technology,Science and Technology +420400,Science and Technology,Science and Technology +420399,Science and Technology,Science and Technology +418574,Science and Technology,Science and Technology +378874,Science and Technology,Science and Technology +378871,Science and Technology,Science and Technology +378870,Science and Technology,Science and Technology +286309,Science and Technology,Science and Technology +438679,Science and Technology,Science and Technology +373325,Science and Technology,Science and Technology +348435,Science and Technology,Science and Technology +430000,Aboriginal Affairs,Aboriginal Affairs +427802,Aboriginal Affairs,Aboriginal Affairs +368786,Aboriginal Affairs,Aboriginal Affairs +360723,Aboriginal Affairs,Aboriginal Affairs +280649,Aboriginal Affairs,Aboriginal Affairs +276489,Aboriginal Affairs,Aboriginal Affairs +272329,Aboriginal Affairs,Aboriginal Affairs +414580,Aboriginal Affairs,Aboriginal Affairs +414579,Aboriginal Affairs,Aboriginal Affairs +414033,Aboriginal Affairs,Aboriginal Affairs +406853,Aboriginal Affairs,Aboriginal Affairs +399303,Aboriginal Affairs,Aboriginal Affairs +397125,Aboriginal Affairs,Aboriginal Affairs +393267,Aboriginal Affairs,Aboriginal Affairs +372334,Aboriginal Affairs,Aboriginal Affairs +372070,Aboriginal Affairs,Aboriginal Affairs +372049,Aboriginal Affairs,Aboriginal Affairs +465537,Aboriginal Affairs,Aboriginal Affairs +450699,Aboriginal Affairs,Aboriginal Affairs +448420,Aboriginal Affairs,Aboriginal Affairs +448402,Aboriginal Affairs,Aboriginal Affairs +448398,Aboriginal Affairs,Aboriginal Affairs +437583,Aboriginal Affairs,Aboriginal Affairs +433010,Aboriginal Affairs,Aboriginal Affairs +430440,Aboriginal Affairs,Aboriginal Affairs +273583,Telecommunications,Telecommunications +273579,Telecommunications,Telecommunications +273621,Telecommunications,Telecommunications +273605,Telecommunications,Telecommunications +299589,Aboriginal Affairs,Aboriginal Affairs +299576,Aboriginal Affairs,Aboriginal Affairs +273703,Aboriginal Affairs,Aboriginal Affairs +273702,Aboriginal Affairs,Aboriginal Affairs +273701,Aboriginal Affairs,Aboriginal Affairs +273699,Aboriginal Affairs,Aboriginal Affairs +273698,Aboriginal Affairs,Aboriginal Affairs +273694,Aboriginal Affairs,Aboriginal Affairs +299591,Aboriginal Affairs,Aboriginal Affairs +310264,Aboriginal Affairs,Aboriginal Affairs +272509,Telecommunications,Telecommunications +380159,Telecommunications,Telecommunications +368894,Telecommunications,Telecommunications +368893,Telecommunications,Telecommunications +292029,Telecommunications,Telecommunications +287251,Telecommunications,Telecommunications +287250,Telecommunications,Telecommunications +283392,Telecommunications,Telecommunications +279189,Telecommunications,Telecommunications +331005,Aboriginal Affairs,Aboriginal Affairs +328530,Aboriginal Affairs,Aboriginal Affairs +326760,Aboriginal Affairs,Aboriginal Affairs +320587,Aboriginal Affairs,Aboriginal Affairs +305469,Aboriginal Affairs,Aboriginal Affairs +278294,Aboriginal Affairs,Aboriginal Affairs +278293,Aboriginal Affairs,Aboriginal Affairs +278292,Aboriginal Affairs,Aboriginal Affairs +278291,Aboriginal Affairs,Aboriginal Affairs +270111,Aboriginal Affairs,Aboriginal Affairs +348718,Aboriginal Affairs,Aboriginal Affairs +347430,Aboriginal Affairs,Aboriginal Affairs +348731,Aboriginal Affairs,Aboriginal Affairs +348726,Aboriginal Affairs,Aboriginal Affairs +348723,Aboriginal Affairs,Aboriginal Affairs +348721,Aboriginal Affairs,Aboriginal Affairs +467713,Aboriginal Affairs,Aboriginal Affairs +433087,Aboriginal Affairs,Aboriginal Affairs +414978,Aboriginal Affairs,Aboriginal Affairs +384852,Aboriginal Affairs,Aboriginal Affairs +271132,Aboriginal Affairs,Aboriginal Affairs +271129,Aboriginal Affairs,Aboriginal Affairs +288210,Telecommunications,Telecommunications +275662,Aboriginal Affairs,Aboriginal Affairs +275661,Aboriginal Affairs,Aboriginal Affairs +275667,Aboriginal Affairs,Aboriginal Affairs +275666,Aboriginal Affairs,Aboriginal Affairs +275665,Aboriginal Affairs,Aboriginal Affairs +275664,Aboriginal Affairs,Aboriginal Affairs +275812,Telecommunications,Telecommunications +275811,Telecommunications,Telecommunications +352070,Telecommunications,Telecommunications +352069,Telecommunications,Telecommunications +352068,Telecommunications,Telecommunications +352067,Telecommunications,Telecommunications +333347,Telecommunications,Telecommunications +333346,Telecommunications,Telecommunications +331635,Telecommunications,Telecommunications +327627,Telecommunications,Telecommunications +327624,Telecommunications,Telecommunications +327616,Telecommunications,Telecommunications +327613,Telecommunications,Telecommunications +324190,Telecommunications,Telecommunications +324189,Telecommunications,Telecommunications +320594,Telecommunications,Telecommunications +320593,Telecommunications,Telecommunications +320592,Telecommunications,Telecommunications +318418,Telecommunications,Telecommunications +312429,Telecommunications,Telecommunications +309530,Telecommunications,Telecommunications +309529,Telecommunications,Telecommunications +304016,Telecommunications,Telecommunications +294529,Telecommunications,Telecommunications +294514,Telecommunications,Telecommunications +294513,Telecommunications,Telecommunications +294512,Telecommunications,Telecommunications +294510,Telecommunications,Telecommunications +291931,Telecommunications,Telecommunications +280610,Telecommunications,Telecommunications +280609,Telecommunications,Telecommunications +275819,Telecommunications,Telecommunications +275818,Telecommunications,Telecommunications +275817,Telecommunications,Telecommunications +275816,Telecommunications,Telecommunications +275815,Telecommunications,Telecommunications +275814,Telecommunications,Telecommunications +443789,Science and Technology,Science and Technology +544323,Science and Technology,Science and Technology +398954,Science and Technology,Science and Technology +392473,Science and Technology,Science and Technology +391296,Science and Technology,Science and Technology +385282,Science and Technology,Science and Technology +465057,Science and Technology,Science and Technology +450154,Science and Technology,Science and Technology +443791,Science and Technology,Science and Technology +482543,Science and Technology,Science and Technology +478419,Science and Technology,Science and Technology +526071,Science and Technology,Science and Technology +526067,Science and Technology,Science and Technology +506033,Science and Technology,Science and Technology +491016,Science and Technology,Science and Technology +485432,Science and Technology,Science and Technology +394852,Science and Technology,Science and Technology +394851,Science and Technology,Science and Technology +340343,Science and Technology,Science and Technology +526322,Science and Technology,Science and Technology +509544,Science and Technology,Science and Technology +436742,Science and Technology,Science and Technology +394954,Aboriginal Affairs,Aboriginal Affairs +463634,Aboriginal Affairs,Aboriginal Affairs +379869,Aboriginal Affairs,Aboriginal Affairs +377957,Aboriginal Affairs,Aboriginal Affairs +377951,Aboriginal Affairs,Aboriginal Affairs +370525,Aboriginal Affairs,Aboriginal Affairs +369990,Aboriginal Affairs,Aboriginal Affairs +344587,Aboriginal Affairs,Aboriginal Affairs +334909,Aboriginal Affairs,Aboriginal Affairs +326588,Aboriginal Affairs,Aboriginal Affairs +429946,Aboriginal Affairs,Aboriginal Affairs +420436,Aboriginal Affairs,Aboriginal Affairs +418688,Aboriginal Affairs,Aboriginal Affairs +414540,Aboriginal Affairs,Aboriginal Affairs +348699,Science and Technology,Science and Technology +272189,Science and Technology,Science and Technology +285749,Science and Technology,Science and Technology +272809,Science and Technology,Science and Technology +330931,Science and Technology,Science and Technology +272731,Arts and Culture,Arts and Culture +272730,Arts and Culture,Arts and Culture +277223,Arts and Culture,Arts and Culture +278955,Aboriginal Affairs,Aboriginal Affairs +278954,Aboriginal Affairs,Aboriginal Affairs +321933,Aboriginal Affairs,Aboriginal Affairs +321930,Aboriginal Affairs,Aboriginal Affairs +321928,Aboriginal Affairs,Aboriginal Affairs +321923,Aboriginal Affairs,Aboriginal Affairs +321921,Aboriginal Affairs,Aboriginal Affairs +321919,Aboriginal Affairs,Aboriginal Affairs +321918,Aboriginal Affairs,Aboriginal Affairs +309627,Aboriginal Affairs,Aboriginal Affairs +309626,Aboriginal Affairs,Aboriginal Affairs +278967,Aboriginal Affairs,Aboriginal Affairs +278964,Aboriginal Affairs,Aboriginal Affairs +278962,Aboriginal Affairs,Aboriginal Affairs +278961,Aboriginal Affairs,Aboriginal Affairs +278960,Aboriginal Affairs,Aboriginal Affairs +278958,Aboriginal Affairs,Aboriginal Affairs +278957,Aboriginal Affairs,Aboriginal Affairs +296820,Aboriginal Affairs,Affaires autochtones +296818,Aboriginal Affairs,Affaires autochtones +338498,Aboriginal Affairs,Aboriginal Affairs +281084,Aboriginal Affairs,Aboriginal Affairs +281082,Aboriginal Affairs,Aboriginal Affairs +281078,Aboriginal Affairs,Aboriginal Affairs +281076,Aboriginal Affairs,Aboriginal Affairs +278931,Aboriginal Affairs,Aboriginal Affairs +278930,Aboriginal Affairs,Aboriginal Affairs +333958,Aboriginal Affairs,Aboriginal Affairs +333957,Aboriginal Affairs,Aboriginal Affairs +333956,Aboriginal Affairs,Aboriginal Affairs +333955,Aboriginal Affairs,Aboriginal Affairs +333954,Aboriginal Affairs,Aboriginal Affairs +318244,Aboriginal Affairs,Aboriginal Affairs +318243,Aboriginal Affairs,Aboriginal Affairs +318242,Aboriginal Affairs,Aboriginal Affairs +318241,Aboriginal Affairs,Aboriginal Affairs +318240,Aboriginal Affairs,Aboriginal Affairs +318239,Aboriginal Affairs,Aboriginal Affairs +318238,Aboriginal Affairs,Aboriginal Affairs +318237,Aboriginal Affairs,Aboriginal Affairs +318236,Aboriginal Affairs,Aboriginal Affairs +318234,Aboriginal Affairs,Aboriginal Affairs +278935,Aboriginal Affairs,Aboriginal Affairs +278934,Aboriginal Affairs,Aboriginal Affairs +278933,Aboriginal Affairs,Aboriginal Affairs +312376,Aboriginal Affairs,Aboriginal Affairs +312374,Aboriginal Affairs,Aboriginal Affairs +312373,Aboriginal Affairs,Aboriginal Affairs +312372,Aboriginal Affairs,Aboriginal Affairs +312371,Aboriginal Affairs,Aboriginal Affairs +312370,Aboriginal Affairs,Aboriginal Affairs +312094,Aboriginal Affairs,Aboriginal Affairs +312093,Aboriginal Affairs,Aboriginal Affairs +312092,Aboriginal Affairs,Aboriginal Affairs +312091,Aboriginal Affairs,Aboriginal Affairs +312090,Aboriginal Affairs,Aboriginal Affairs +312089,Aboriginal Affairs,Aboriginal Affairs +296789,Aboriginal Affairs,Aboriginal Affairs +290429,Telecommunications,Telecommunications +277480,Telecommunications,Telecommunications +312009,Telecommunications,Telecommunications +306451,Telecommunications,Telecommunications +299575,Telecommunications,Telecommunications +299574,Telecommunications,Telecommunications +299573,Telecommunications,Telecommunications +299572,Telecommunications,Telecommunications +299570,Telecommunications,Telecommunications +290573,Telecommunications,Telecommunications +290571,Telecommunications,Telecommunications +275349,Science and Technology,Science and Technology +370346,Science and Technology,Science and Technology +277429,Broadcasting,Broadcasting +277427,Broadcasting,Broadcasting +309855,Broadcasting,Broadcasting +541421,Science and Technology,Science and Technology +535184,Science and Technology,Science and Technology +318860,Science and Technology,Science and Technology +318838,Science and Technology,Science and Technology +301505,Science and Technology,Science and Technology +277751,Science and Technology,Science and Technology +494842,Science and Technology,Science and Technology +484881,Science and Technology,Science and Technology +447723,Science and Technology,Science and Technology +408218,Aboriginal Affairs,Aboriginal Affairs +408213,Aboriginal Affairs,Aboriginal Affairs +395337,Aboriginal Affairs,Aboriginal Affairs +393236,Aboriginal Affairs,Aboriginal Affairs +392345,Aboriginal Affairs,Aboriginal Affairs +392344,Aboriginal Affairs,Aboriginal Affairs +389062,Aboriginal Affairs,Aboriginal Affairs +384013,Aboriginal Affairs,Aboriginal Affairs +383051,Aboriginal Affairs,Aboriginal Affairs +383039,Aboriginal Affairs,Aboriginal Affairs +382888,Aboriginal Affairs,Aboriginal Affairs +382813,Aboriginal Affairs,Aboriginal Affairs +382769,Aboriginal Affairs,Aboriginal Affairs +382768,Aboriginal Affairs,Aboriginal Affairs +382767,Aboriginal Affairs,Aboriginal Affairs +382766,Aboriginal Affairs,Aboriginal Affairs +382764,Aboriginal Affairs,Aboriginal Affairs +382763,Aboriginal Affairs,Aboriginal Affairs +382762,Aboriginal Affairs,Aboriginal Affairs +382049,Aboriginal Affairs,Aboriginal Affairs +381782,Aboriginal Affairs,Aboriginal Affairs +375772,Aboriginal Affairs,Aboriginal Affairs +375771,Aboriginal Affairs,Aboriginal Affairs +375770,Aboriginal Affairs,Aboriginal Affairs +375768,Aboriginal Affairs,Aboriginal Affairs +375039,Aboriginal Affairs,Aboriginal Affairs +370949,Aboriginal Affairs,Aboriginal Affairs +460748,Aboriginal Affairs,Aboriginal Affairs +456217,Aboriginal Affairs,Aboriginal Affairs +360020,Science and Technology,Science and Technology +347456,Science and Technology,Science and Technology +336174,Science and Technology,Science and Technology +336173,Science and Technology,Science and Technology +336171,Science and Technology,Science and Technology +336170,Science and Technology,Science and Technology +336169,Science and Technology,Science and Technology +325151,Science and Technology,Science and Technology +325149,Science and Technology,Science and Technology +325138,Science and Technology,Science and Technology +325136,Science and Technology,Science and Technology +310890,Science and Technology,Science and Technology +297391,Science and Technology,Science and Technology +297390,Science and Technology,Science and Technology +284036,Science and Technology,Science and Technology +284034,Science and Technology,Science and Technology +284033,Science and Technology,Science and Technology +284032,Science and Technology,Science and Technology +284030,Science and Technology,Science and Technology +380130,Science and Technology,Science and Technology +380129,Science and Technology,Science and Technology +321829,Telecommunications,Telecommunications +307877,Telecommunications,Telecommunications +307871,Telecommunications,Telecommunications +307869,Telecommunications,Telecommunications +300029,Telecommunications,Telecommunications +300011,Telecommunications,Telecommunications +295870,Telecommunications,Telecommunications +292789,Telecommunications,Telecommunications +292470,Telecommunications,Telecommunications +292469,Telecommunications,Telecommunications +284729,Telecommunications,Telecommunications +280211,Telecommunications,Telecommunications +280210,Telecommunications,Telecommunications +280209,Telecommunications,Telecommunications +280132,Telecommunications,Telecommunications +280130,Telecommunications,Telecommunications +325250,Arts and Culture,Arts and Culture +325249,Arts and Culture,Arts and Culture +382680,Arts and Culture,Arts and Culture +356376,Arts and Culture,Arts and Culture +325253,Arts and Culture,Arts and Culture +325252,Arts and Culture,Arts and Culture +491676,Arts and Culture,Arts and Culture +491675,Arts and Culture,Arts and Culture +299849,Arts and Culture,Arts and Culture +387636,Arts and Culture,Arts and Culture +387635,Arts and Culture,Arts and Culture +387633,Arts and Culture,Arts and Culture +387397,Arts and Culture,Arts and Culture +387396,Arts and Culture,Arts and Culture +378823,Arts and Culture,Arts and Culture +378822,Arts and Culture,Arts and Culture +378818,Arts and Culture,Arts and Culture +376855,Arts and Culture,Arts and Culture +376834,Arts and Culture,Arts and Culture +376824,Arts and Culture,Arts and Culture +376813,Arts and Culture,Arts and Culture +376809,Arts and Culture,Arts and Culture +376805,Arts and Culture,Arts and Culture +376796,Arts and Culture,Arts and Culture +369873,Arts and Culture,Arts and Culture +354712,Arts and Culture,Arts and Culture +468104,Arts and Culture,Arts and Culture +468103,Arts and Culture,Arts and Culture +468102,Arts and Culture,Arts and Culture +468101,Arts and Culture,Arts and Culture +468100,Arts and Culture,Arts and Culture +468099,Arts and Culture,Arts and Culture +468098,Arts and Culture,Arts and Culture +468097,Arts and Culture,Arts and Culture +455102,Arts and Culture,Arts and Culture +455097,Arts and Culture,Arts and Culture +439774,Arts and Culture,Arts and Culture +439773,Arts and Culture,Arts and Culture +425157,Arts and Culture,Arts and Culture +419359,Arts and Culture,Arts and Culture +417265,Arts and Culture,Arts and Culture +417264,Arts and Culture,Arts and Culture +412050,Arts and Culture,Arts and Culture +412046,Arts and Culture,Arts and Culture +412040,Arts and Culture,Arts and Culture +412037,Arts and Culture,Arts and Culture +406671,Arts and Culture,Arts and Culture +406670,Arts and Culture,Arts and Culture +401843,Arts and Culture,Arts and Culture +401841,Arts and Culture,Arts and Culture +399743,Arts and Culture,Arts and Culture +397601,Arts and Culture,Arts and Culture +397600,Arts and Culture,Arts and Culture +391115,Arts and Culture,Arts and Culture +391110,Arts and Culture,Arts and Culture +391105,Arts and Culture,Arts and Culture +387642,Arts and Culture,Arts and Culture +387641,Arts and Culture,Arts and Culture +387640,Arts and Culture,Arts and Culture +535196,Arts and Culture,Arts and Culture +535193,Arts and Culture,Arts and Culture +523196,Arts and Culture,Arts and Culture +523193,Arts and Culture,Arts and Culture +518252,Arts and Culture,Arts and Culture +518251,Arts and Culture,Arts and Culture +515991,Arts and Culture,Arts and Culture +495945,Arts and Culture,Arts and Culture +495944,Arts and Culture,Arts and Culture +444616,Arts and Culture,Arts and Culture +434163,Arts and Culture,Arts and Culture +293069,Arts and Culture,Arts and Culture +414797,Arts and Culture,Arts and Culture +399461,Arts and Culture,Arts and Culture +399460,Arts and Culture,Arts and Culture +397764,Arts and Culture,Arts and Culture +393375,Arts and Culture,Arts and Culture +392193,Arts and Culture,Arts and Culture +385274,Arts and Culture,Arts and Culture +384214,Arts and Culture,Arts and Culture +384212,Arts and Culture,Arts and Culture +384211,Arts and Culture,Arts and Culture +382819,Arts and Culture,Arts and Culture +370067,Arts and Culture,Arts and Culture +370066,Arts and Culture,Arts and Culture +370064,Arts and Culture,Arts and Culture +370063,Arts and Culture,Arts and Culture +334321,Arts and Culture,Arts and Culture +392193,Broadcasting,Broadcasting +444616,Broadcasting,Broadcasting +385274,Broadcasting,Broadcasting +384212,Broadcasting,Broadcasting +384211,Broadcasting,Broadcasting +370067,Broadcasting,Broadcasting +370066,Broadcasting,Broadcasting +370064,Broadcasting,Broadcasting +370063,Broadcasting,Broadcasting +317872,Broadcasting,Broadcasting +399461,Broadcasting,Broadcasting +285549,Telecommunications,Telecommunications +307649,Telecommunications,Telecommunications +296649,Telecommunications,Telecommunications +521193,Science and Technology,Science and Technology +516643,Science and Technology,Science and Technology +521537,Science and Technology,Science and Technology +521535,Science and Technology,Science and Technology +521534,Science and Technology,Science and Technology +521533,Science and Technology,Science and Technology +521199,Science and Technology,Science and Technology +521196,Science and Technology,Science and Technology +290974,Science and Technology,Science and Technology +290972,Science and Technology,Science and Technology +292670,Broadcasting,Broadcasting +292829,Arts and Culture,Arts and Culture +292750,Arts and Culture,Arts and Culture +369928,Arts and Culture,Arts and Culture +341124,Arts and Culture,Arts and Culture +340396,Arts and Culture,Arts and Culture +339986,Arts and Culture,Arts and Culture +333895,Arts and Culture,Arts and Culture +330908,Arts and Culture,Arts and Culture +320149,Arts and Culture,Arts and Culture +340396,Broadcasting,Broadcasting +339986,Broadcasting,Broadcasting +375778,Broadcasting,Broadcasting +369651,Broadcasting,Broadcasting +300469,Arts and Culture,Arts and Culture +292813,Arts and Culture,Arts and Culture +294269,Aboriginal Affairs,Aboriginal Affairs +294250,Aboriginal Affairs,Aboriginal Affairs +334941,Aboriginal Affairs,Aboriginal Affairs +289389,Aboriginal Affairs,Aboriginal Affairs +332357,Aboriginal Affairs,Aboriginal Affairs +309615,Aboriginal Affairs,Aboriginal Affairs +309614,Aboriginal Affairs,Aboriginal Affairs +298409,Arts and Culture,Arts and Culture +292749,Arts and Culture,Arts and Culture +355670,Arts and Culture,Arts and Culture +447277,Arts and Culture,Arts and Culture +513696,Arts and Culture,Arts and Culture +335784,Arts and Culture,Arts and Culture +296785,Aboriginal Affairs,Aboriginal Affairs +290969,Aboriginal Affairs,Aboriginal Affairs +302494,Aboriginal Affairs,Aboriginal Affairs +302493,Aboriginal Affairs,Aboriginal Affairs +302492,Aboriginal Affairs,Aboriginal Affairs +294690,Telecommunications,Telecommunications +294690,Broadcasting,Broadcasting +370558,Aboriginal Affairs,Aboriginal Affairs +354405,Aboriginal Affairs,Aboriginal Affairs +339271,Aboriginal Affairs,Aboriginal Affairs +339270,Aboriginal Affairs,Aboriginal Affairs +339252,Aboriginal Affairs,Aboriginal Affairs +339251,Aboriginal Affairs,Aboriginal Affairs +339249,Aboriginal Affairs,Aboriginal Affairs +328477,Aboriginal Affairs,Aboriginal Affairs +320537,Aboriginal Affairs,Aboriginal Affairs +320535,Aboriginal Affairs,Aboriginal Affairs +320532,Aboriginal Affairs,Aboriginal Affairs +298491,Aboriginal Affairs,Aboriginal Affairs +298490,Aboriginal Affairs,Aboriginal Affairs +298489,Aboriginal Affairs,Aboriginal Affairs +298469,Aboriginal Affairs,Aboriginal Affairs +427071,Aboriginal Affairs,Aboriginal Affairs +389693,Aboriginal Affairs,Aboriginal Affairs +377561,Aboriginal Affairs,Aboriginal Affairs +471201,Aboriginal Affairs,Aboriginal Affairs +443537,Aboriginal Affairs,Aboriginal Affairs +311871,Aboriginal Affairs,Aboriginal Affairs +293729,Aboriginal Affairs,Aboriginal Affairs +385203,Aboriginal Affairs,Aboriginal Affairs +375214,Aboriginal Affairs,Aboriginal Affairs +361645,Aboriginal Affairs,Aboriginal Affairs +348147,Aboriginal Affairs,Aboriginal Affairs +348144,Aboriginal Affairs,Aboriginal Affairs +342517,Aboriginal Affairs,Aboriginal Affairs +537996,Aboriginal Affairs,Aboriginal Affairs +315489,Aboriginal Affairs,Aboriginal Affairs +301809,Aboriginal Affairs,Aboriginal Affairs +517954,Science and Technology,Science and Technology +517944,Science and Technology,Science and Technology +387824,Science and Technology,Science and Technology +294809,Science and Technology,Science and Technology +513284,Science and Technology,Science and Technology +513281,Science and Technology,Science and Technology +513274,Science and Technology,Science and Technology +502267,Science and Technology,Science and Technology +499350,Science and Technology,Science and Technology +479082,Science and Technology,Science and Technology +464930,Science and Technology,Science and Technology +464863,Science and Technology,Science and Technology +430945,Science and Technology,Science and Technology +430914,Science and Technology,Science and Technology +426312,Science and Technology,Science and Technology +426308,Science and Technology,Science and Technology +426307,Science and Technology,Science and Technology +421680,Science and Technology,Science and Technology +420230,Science and Technology,Science and Technology +420227,Science and Technology,Science and Technology +420221,Science and Technology,Science and Technology +420218,Science and Technology,Science and Technology +418058,Science and Technology,Science and Technology +416080,Science and Technology,Science and Technology +405206,Science and Technology,Science and Technology +403723,Science and Technology,Science and Technology +537476,Science and Technology,Science and Technology +421661,Science and Technology,Science and Technology +408132,Science and Technology,Science and Technology +294810,Science and Technology,Science and Technology +406477,Science and Technology,Science and Technology +405228,Science and Technology,Science and Technology +405226,Science and Technology,Science and Technology +405222,Science and Technology,Science and Technology +395314,Science and Technology,Science and Technology +394111,Science and Technology,Science and Technology +379843,Science and Technology,Science and Technology +537479,Science and Technology,Science and Technology +535569,Science and Technology,Science and Technology +535514,Science and Technology,Science and Technology +524930,Science and Technology,Science and Technology +517958,Science and Technology,Science and Technology +513277,Science and Technology,Science and Technology +513276,Science and Technology,Science and Technology +510535,Science and Technology,Science and Technology +475493,Science and Technology,Science and Technology +472977,Science and Technology,Science and Technology +470941,Science and Technology,Science and Technology +470759,Science and Technology,Science and Technology +429216,Science and Technology,Science and Technology +429199,Science and Technology,Science and Technology +426320,Science and Technology,Science and Technology +426318,Science and Technology,Science and Technology +309631,Aboriginal Affairs,Aboriginal Affairs +309629,Aboriginal Affairs,Aboriginal Affairs +303525,Aboriginal Affairs,Aboriginal Affairs +309635,Aboriginal Affairs,Aboriginal Affairs +464929,Science and Technology,Science and Technology +464914,Science and Technology,Science and Technology +295009,Science and Technology,Science and Technology +387836,Science and Technology,Science and Technology +379707,Science and Technology,Science and Technology +373476,Science and Technology,Science and Technology +429244,Science and Technology,Science and Technology +429195,Science and Technology,Science and Technology +426316,Science and Technology,Science and Technology +426314,Science and Technology,Science and Technology +426310,Science and Technology,Science and Technology +426285,Science and Technology,Science and Technology +424048,Science and Technology,Science and Technology +424002,Science and Technology,Science and Technology +421667,Science and Technology,Science and Technology +420222,Science and Technology,Science and Technology +420217,Science and Technology,Science and Technology +413137,Science and Technology,Science and Technology +406476,Science and Technology,Science and Technology +405227,Science and Technology,Science and Technology +405221,Science and Technology,Science and Technology +535929,Science and Technology,Science and Technology +524931,Science and Technology,Science and Technology +517964,Science and Technology,Science and Technology +510546,Science and Technology,Science and Technology +504621,Science and Technology,Science and Technology +502268,Science and Technology,Science and Technology +502253,Science and Technology,Science and Technology +295010,Science and Technology,Science and Technology +479084,Science and Technology,Science and Technology +475491,Science and Technology,Science and Technology +475489,Science and Technology,Science and Technology +470758,Science and Technology,Science and Technology +464816,Science and Technology,Science and Technology +430920,Science and Technology,Science and Technology +429246,Science and Technology,Science and Technology +429193,Science and Technology,Science and Technology +426321,Science and Technology,Science and Technology +426319,Science and Technology,Science and Technology +426311,Science and Technology,Science and Technology +426297,Science and Technology,Science and Technology +421643,Science and Technology,Science and Technology +421641,Science and Technology,Science and Technology +420223,Science and Technology,Science and Technology +420144,Science and Technology,Science and Technology +416092,Science and Technology,Science and Technology +405304,Science and Technology,Science and Technology +405211,Science and Technology,Science and Technology +403717,Science and Technology,Science and Technology +395317,Science and Technology,Science and Technology +395315,Science and Technology,Science and Technology +395313,Science and Technology,Science and Technology +379783,Science and Technology,Science and Technology +376905,Science and Technology,Science and Technology +364803,Science and Technology,Science and Technology +537488,Science and Technology,Science and Technology +535605,Science and Technology,Science and Technology +535599,Science and Technology,Science and Technology +527856,Science and Technology,Science and Technology +517968,Science and Technology,Science and Technology +517919,Science and Technology,Science and Technology +515836,Science and Technology,Science and Technology +513283,Science and Technology,Science and Technology +508100,Science and Technology,Science and Technology +403770,Science and Technology,Science and Technology +535611,Science and Technology,Science and Technology +399476,Science and Technology,Science and Technology +379819,Science and Technology,Science and Technology +379701,Science and Technology,Science and Technology +295011,Science and Technology,Science and Technology +527858,Science and Technology,Science and Technology +524935,Science and Technology,Science and Technology +524894,Science and Technology,Science and Technology +517951,Science and Technology,Science and Technology +517928,Science and Technology,Science and Technology +510547,Science and Technology,Science and Technology +504629,Science and Technology,Science and Technology +472981,Science and Technology,Science and Technology +470755,Science and Technology,Science and Technology +464876,Science and Technology,Science and Technology +430929,Science and Technology,Science and Technology +429225,Science and Technology,Science and Technology +426323,Science and Technology,Science and Technology +426322,Science and Technology,Science and Technology +426309,Science and Technology,Science and Technology +422108,Science and Technology,Science and Technology +421646,Science and Technology,Science and Technology +420225,Science and Technology,Science and Technology +418062,Science and Technology,Science and Technology +418055,Science and Technology,Science and Technology +416099,Science and Technology,Science and Technology +416085,Science and Technology,Science and Technology +407882,Science and Technology,Science and Technology +372901,Aboriginal Affairs,Aboriginal Affairs +370288,Aboriginal Affairs,Aboriginal Affairs +376073,Aboriginal Affairs,Aboriginal Affairs +296706,Science and Technology,Science and Technology +312470,Telecommunications,Telecommunications +309605,Telecommunications,Telecommunications +300390,Telecommunications,Telecommunications +299850,Telecommunications,Telecommunications +297629,Telecommunications,Telecommunications +297449,Telecommunications,Telecommunications +332789,Telecommunications,Telecommunications +330705,Telecommunications,Telecommunications +326672,Telecommunications,Telecommunications +323932,Telecommunications,Telecommunications +323931,Telecommunications,Telecommunications +323930,Telecommunications,Telecommunications +323929,Telecommunications,Telecommunications +320530,Telecommunications,Telecommunications +373765,Arts and Culture,Arts and Culture +329698,Arts and Culture,Arts and Culture +326552,Arts and Culture,Arts and Culture +326549,Arts and Culture,Arts and Culture +321389,Arts and Culture,Arts and Culture +312169,Arts and Culture,Arts and Culture +308453,Arts and Culture,Arts and Culture +420542,Arts and Culture,Arts and Culture +293530,International Relations,International Relations +293529,International Relations,International Relations +319829,International Relations,International Relations +294249,International Relations,International Relations +298330,Agriculture,Agriculture +290069,Agriculture,Agriculture +298330,Economic Development,Développement économique +290069,Economic Development,Développement économique +312552,International Trade,International Trade +296799,International Relations,International Relations +296798,International Relations,International Relations +315603,International Relations,International Relations +311760,International Relations,International Relations +311760,Mining,Mining +290795,Immigration,Immigration +469709,Immigration,Immigration +321855,Taxation and Finance,Taxation and Finance +321854,Taxation and Finance,Taxation and Finance +324480,Taxation and Finance,Taxation and Finance +406187,Sports,Sports +421795,Research and Development,Research and Development +406765,Research and Development,Research and Development +357499,Research and Development,Research and Development +335880,Research and Development,Research and Development +291010,Research and Development,Research and Development +531439,Research and Development,Research and Development +522230,Research and Development,Research and Development +522208,Research and Development,Research and Development +510467,Research and Development,Research and Development +510464,Research and Development,Research and Development +510456,Research and Development,Research and Development +508287,Research and Development,Research and Development +503986,Research and Development,Research and Development +503985,Research and Development,Research and Development +503984,Research and Development,Research and Development +503983,Research and Development,Research and Development +503982,Research and Development,Research and Development +503981,Research and Development,Research and Development +503979,Research and Development,Research and Development +501302,Research and Development,Research and Development +500425,Research and Development,Research and Development +498647,Research and Development,Research and Development +291030,Research and Development,Research and Development +426767,Economic Development,Economic Development +541792,Economic Development,Economic Development +291171,Economic Development,Economic Development +435445,Economic Development,Economic Development +330185,Education,Education +330183,Education,Education +330182,Education,Education +330179,Education,Education +330177,Education,Education +327589,Education,Education +327571,Education,Education +327566,Education,Education +330192,Education,Education +330191,Education,Education +330189,Education,Education +327571,Immigration,Immigration +327566,Immigration,Immigration +330192,Immigration,Immigration +330191,Immigration,Immigration +330189,Immigration,Immigration +330187,Immigration,Immigration +330185,Immigration,Immigration +330183,Immigration,Immigration +330182,Immigration,Immigration +330179,Immigration,Immigration +330177,Immigration,Immigration +312869,International Development,International Development +296715,International Development,International Development +330192,International Development,International Development +330191,International Development,International Development +330189,International Development,International Development +330187,International Development,International Development +330185,International Development,International Development +330183,International Development,International Development +330182,International Development,International Development +330179,International Development,International Development +330177,International Development,International Development +327589,International Development,International Development +327571,International Development,International Development +327566,International Development,International Development +312871,International Development,International Development +327566,International Relations,International Relations +296715,International Relations,International Relations +330192,International Relations,International Relations +330191,International Relations,International Relations +330189,International Relations,International Relations +330187,International Relations,International Relations +330185,International Relations,International Relations +330183,International Relations,International Relations +330182,International Relations,International Relations +330179,International Relations,International Relations +330177,International Relations,International Relations +327589,International Relations,International Relations +355280,Employment and Training,Employment and Training +351692,Employment and Training,Employment and Training +291749,Employment and Training,Employment and Training +298450,International Development,Développement international +298449,International Development,Développement international +380567,International Development,Développement international +319268,Employment and Training,Employment and Training +319265,Employment and Training,Employment and Training +319263,Employment and Training,Employment and Training +319261,Employment and Training,Employment and Training +328351,Employment and Training,Employment and Training +394926,International Trade,International Trade +394925,International Trade,International Trade +383035,International Trade,International Trade +375839,International Trade,International Trade +356686,International Trade,International Trade +311244,International Trade,International Trade +311243,International Trade,International Trade +311236,International Trade,International Trade +311235,International Trade,International Trade +311234,International Trade,International Trade +311233,International Trade,International Trade +311232,International Trade,International Trade +311229,International Trade,International Trade +491861,International Trade,International Trade +445977,International Trade,International Trade +396566,Climate,Climate +392336,Climate,Climate +329488,Climate,Climate +326030,Climate,Climate +291989,Climate,Climate +403250,Climate,Climate +371518,Climate,Climate +371515,Climate,Climate +310541,Climate,Climate +294690,Consumer Issues,Consumer Issues +311029,Agriculture,Agriculture +303050,Agriculture,Agriculture +343775,Agriculture,Agriculture +343773,Agriculture,Agriculture +333073,Agriculture,Agriculture +311036,Agriculture,Agriculture +311035,Agriculture,Agriculture +311033,Agriculture,Agriculture +343775,Research and Development,Research and Development +343773,Research and Development,Research and Development +333073,Research and Development,Research and Development +311036,Research and Development,Research and Development +311035,Research and Development,Research and Development +311033,Research and Development,Research and Development +311032,Research and Development,Research and Development +311029,Research and Development,Research and Development +519435,Taxation and Finance,Taxation and Finance +508960,Taxation and Finance,Taxation and Finance +310304,Taxation and Finance,Taxation and Finance +292569,Taxation and Finance,Taxation and Finance +332138,Taxation and Finance,Taxation and Finance +452858,Energy,Energy +450165,Energy,Energy +342066,Energy,Energy +342064,Energy,Energy +342063,Energy,Energy +342061,Energy,Energy +342060,Energy,Energy +342059,Energy,Energy +342057,Energy,Energy +342056,Energy,Energy +342055,Energy,Energy +342053,Energy,Energy +342052,Energy,Energy +342050,Energy,Energy +342049,Energy,Energy +342047,Energy,Energy +342045,Energy,Energy +342043,Energy,Energy +342027,Energy,Energy +342022,Energy,Energy +342018,Energy,Energy +342011,Energy,Energy +342007,Energy,Energy +338649,Energy,Energy +335788,Energy,Energy +333531,Energy,Energy +333530,Energy,Energy +333529,Energy,Energy +332137,Energy,Energy +330202,Energy,Energy +330201,Energy,Energy +330200,Energy,Energy +330199,Energy,Energy +327660,Energy,Energy +327656,Energy,Energy +327643,Energy,Energy +327552,Energy,Energy +327549,Energy,Energy +327546,Energy,Energy +327539,Energy,Energy +327536,Energy,Energy +327533,Energy,Energy +327531,Energy,Energy +324954,Energy,Energy +324953,Energy,Energy +324951,Energy,Energy +324947,Energy,Energy +324944,Energy,Energy +324287,Energy,Energy +322109,Energy,Energy +321676,Energy,Energy +321675,Energy,Energy +321674,Energy,Energy +319223,Energy,Energy +310315,Energy,Energy +310304,Energy,Energy +310129,Energy,Energy +304209,Energy,Energy +292569,Energy,Energy +388429,Energy,Energy +387910,Energy,Energy +387908,Energy,Energy +387906,Energy,Energy +387904,Energy,Energy +385568,Energy,Energy +385564,Energy,Energy +383851,Energy,Energy +382618,Energy,Energy +382613,Energy,Energy +382611,Energy,Energy +381606,Energy,Energy +381601,Energy,Energy +380046,Energy,Energy +380044,Energy,Energy +380043,Energy,Energy +380041,Energy,Energy +380018,Energy,Energy +377017,Energy,Energy +377015,Energy,Energy +377012,Energy,Energy +377010,Energy,Energy +377002,Energy,Energy +376997,Energy,Energy +376989,Energy,Energy +376979,Energy,Energy +373357,Energy,Energy +372245,Energy,Energy +372244,Energy,Energy +372242,Energy,Energy +372240,Energy,Energy +372236,Energy,Energy +372235,Energy,Energy +372233,Energy,Energy +372230,Energy,Energy +372228,Energy,Energy +369599,Energy,Energy +369597,Energy,Energy +366558,Energy,Energy +365435,Energy,Energy +365432,Energy,Energy +365111,Energy,Energy +365107,Energy,Energy +365102,Energy,Energy +359907,Energy,Energy +355814,Energy,Energy +355813,Energy,Energy +355812,Energy,Energy +355811,Energy,Energy +353998,Energy,Energy +353968,Energy,Energy +349382,Energy,Energy +349365,Energy,Energy +349364,Energy,Energy +347297,Energy,Energy +347296,Energy,Energy +347295,Energy,Energy +347294,Energy,Energy +347293,Energy,Energy +342067,Energy,Energy +445677,Energy,Energy +445675,Energy,Energy +445673,Energy,Energy +444001,Energy,Energy +442713,Energy,Energy +442712,Energy,Energy +442711,Energy,Energy +442710,Energy,Energy +442709,Energy,Energy +439281,Energy,Energy +439268,Energy,Energy +439262,Energy,Energy +439260,Energy,Energy +436026,Energy,Energy +436025,Energy,Energy +436023,Energy,Energy +436022,Energy,Energy +436020,Energy,Energy +436019,Energy,Energy +436016,Energy,Energy +436015,Energy,Energy +436013,Energy,Energy +436011,Energy,Energy +436009,Energy,Energy +436008,Energy,Energy +436007,Energy,Energy +436005,Energy,Energy +436002,Energy,Energy +435999,Energy,Energy +435997,Energy,Energy +435996,Energy,Energy +435995,Energy,Energy +435993,Energy,Energy +435992,Energy,Energy +433938,Energy,Energy +433925,Energy,Energy +433924,Energy,Energy +433923,Energy,Energy +433922,Energy,Energy +433921,Energy,Energy +433920,Energy,Energy +433919,Energy,Energy +433917,Energy,Energy +433916,Energy,Energy +433915,Energy,Energy +433913,Energy,Energy +432378,Energy,Energy +432377,Energy,Energy +432376,Energy,Energy +431220,Energy,Energy +431217,Energy,Energy +426805,Energy,Energy +426803,Energy,Energy +426802,Energy,Energy +426801,Energy,Energy +426799,Energy,Energy +424470,Energy,Energy +424469,Energy,Energy +424468,Energy,Energy +424467,Energy,Energy +424466,Energy,Energy +424465,Energy,Energy +424464,Energy,Energy +422406,Energy,Energy +422405,Energy,Energy +422404,Energy,Energy +422402,Energy,Energy +422399,Energy,Energy +422396,Energy,Energy +422393,Energy,Energy +420283,Energy,Energy +420246,Energy,Energy +420244,Energy,Energy +420243,Energy,Energy +420241,Energy,Energy +420240,Energy,Energy +420239,Energy,Energy +420238,Energy,Energy +416818,Energy,Energy +416816,Energy,Energy +416813,Energy,Energy +416801,Energy,Energy +416798,Energy,Energy +416795,Energy,Energy +416791,Energy,Energy +414899,Energy,Energy +413782,Energy,Energy +413778,Energy,Energy +406730,Energy,Energy +406729,Energy,Energy +405759,Energy,Energy +405757,Energy,Energy +403982,Energy,Energy +403980,Energy,Energy +401080,Energy,Energy +401079,Energy,Energy +398815,Energy,Energy +398813,Energy,Energy +398801,Energy,Energy +398799,Energy,Energy +398721,Energy,Energy +398718,Energy,Energy +398715,Energy,Energy +398710,Energy,Energy +392616,Energy,Energy +391557,Energy,Energy +544126,Energy,Energy +544125,Energy,Energy +541629,Energy,Energy +541624,Energy,Energy +541622,Energy,Energy +541572,Energy,Energy +541543,Energy,Energy +538609,Energy,Energy +538607,Energy,Energy +535502,Energy,Energy +531992,Energy,Energy +531990,Energy,Energy +531989,Energy,Energy +531985,Energy,Energy +531002,Energy,Energy +529675,Energy,Energy +529673,Energy,Energy +529671,Energy,Energy +529669,Energy,Energy +529668,Energy,Energy +529667,Energy,Energy +526604,Energy,Energy +526602,Energy,Energy +526601,Energy,Energy +526599,Energy,Energy +523312,Energy,Energy +523311,Energy,Energy +520146,Energy,Energy +520143,Energy,Energy +519433,Energy,Energy +518294,Energy,Energy +518289,Energy,Energy +515707,Energy,Energy +515706,Energy,Energy +514243,Energy,Energy +514241,Energy,Energy +511374,Energy,Energy +511371,Energy,Energy +508964,Energy,Energy +508960,Energy,Energy +508956,Energy,Energy +508953,Energy,Energy +508952,Energy,Energy +505664,Energy,Energy +505663,Energy,Energy +505661,Energy,Energy +505660,Energy,Energy +502681,Energy,Energy +502678,Energy,Energy +502677,Energy,Energy +502674,Energy,Energy +502673,Energy,Energy +499333,Energy,Energy +499328,Energy,Energy +499305,Energy,Energy +495844,Energy,Energy +495841,Energy,Energy +495839,Energy,Energy +495838,Energy,Energy +495836,Energy,Energy +495828,Energy,Energy +495824,Energy,Energy +495821,Energy,Energy +495820,Energy,Energy +495818,Energy,Energy +493614,Energy,Energy +493613,Energy,Energy +493611,Energy,Energy +493607,Energy,Energy +493601,Energy,Energy +493596,Energy,Energy +491673,Energy,Energy +491662,Energy,Energy +491660,Energy,Energy +491658,Energy,Energy +487745,Energy,Energy +487744,Energy,Energy +487742,Energy,Energy +487741,Energy,Energy +487740,Energy,Energy +487738,Energy,Energy +487737,Energy,Energy +485396,Energy,Energy +485395,Energy,Energy +482605,Energy,Energy +482604,Energy,Energy +480327,Energy,Energy +480326,Energy,Energy +477929,Energy,Energy +477925,Energy,Energy +477914,Energy,Energy +474880,Energy,Energy +474878,Energy,Energy +474877,Energy,Energy +473517,Energy,Energy +473514,Energy,Energy +470980,Energy,Energy +470978,Energy,Energy +470975,Energy,Energy +470969,Energy,Energy +470967,Energy,Energy +470962,Energy,Energy +470954,Energy,Energy +467951,Energy,Energy +467950,Energy,Energy +467949,Energy,Energy +467948,Energy,Energy +465025,Energy,Energy +465023,Energy,Energy +462853,Energy,Energy +462852,Energy,Energy +462851,Energy,Energy +461214,Energy,Energy +461171,Energy,Energy +459787,Energy,Energy +459786,Energy,Energy +459785,Energy,Energy +459784,Energy,Energy +459783,Energy,Energy +459782,Energy,Energy +459781,Energy,Energy +459780,Energy,Energy +459778,Energy,Energy +459777,Energy,Energy +459776,Energy,Energy +457739,Energy,Energy +452889,Energy,Energy +452888,Energy,Energy +452885,Energy,Energy +452884,Energy,Energy +452882,Energy,Energy +452863,Energy,Energy +381524,Taxation and Finance,Taxation and Finance +380330,Taxation and Finance,Taxation and Finance +342637,Taxation and Finance,Taxation and Finance +333469,Taxation and Finance,Taxation and Finance +328290,Taxation and Finance,Taxation and Finance +328289,Taxation and Finance,Taxation and Finance +325633,Taxation and Finance,Taxation and Finance +325632,Taxation and Finance,Taxation and Finance +311831,Taxation and Finance,Taxation and Finance +311830,Taxation and Finance,Taxation and Finance +311069,Taxation and Finance,Taxation and Finance +404297,Taxation and Finance,Taxation and Finance +399503,Taxation and Finance,Taxation and Finance +393002,Taxation and Finance,Taxation and Finance +382699,Taxation and Finance,Taxation and Finance +381532,Taxation and Finance,Taxation and Finance +381530,Taxation and Finance,Taxation and Finance +381527,Taxation and Finance,Taxation and Finance +293351,Agriculture,Agriculture +292669,Agriculture,Agriculture +315411,Agriculture,Agriculture +293351,International Trade,Commerce international +292669,International Trade,Commerce international +315411,International Trade,Commerce international +427269,Immigration,Immigration +426778,Immigration,Immigration +293129,Immigration,Immigration +419734,Immigration,Immigration +376271,Immigration,Immigration +372973,Immigration,Immigration +372971,Immigration,Immigration +372970,Immigration,Immigration +449661,Immigration,Immigration +449130,Immigration,Immigration +449030,Immigration,Immigration +434051,Immigration,Immigration +432042,Immigration,Immigration +293209,Economic Development,Economic Development +538867,Economic Development,Economic Development +296949,Transportation,Transportation +296905,Transportation,Transportation +304314,Transportation,Transportation +304312,Transportation,Transportation +296991,Transportation,Transportation +329851,Government Procurement,Government Procurement +329850,Government Procurement,Government Procurement +327419,Government Procurement,Government Procurement +327418,Government Procurement,Government Procurement +325050,Government Procurement,Government Procurement +325049,Government Procurement,Government Procurement +309189,Government Procurement,Government Procurement +293471,Government Procurement,Government Procurement +353381,Government Procurement,Government Procurement +353380,Government Procurement,Government Procurement +340768,Government Procurement,Government Procurement +337670,Government Procurement,Government Procurement +337669,Government Procurement,Government Procurement +335297,Government Procurement,Government Procurement +335296,Government Procurement,Government Procurement +315984,Employment and Training,Employment and Training +315969,Employment and Training,Employment and Training +306815,Employment and Training,Employment and Training +306813,Employment and Training,Employment and Training +295216,Employment and Training,Employment and Training +353392,Employment and Training,Employment and Training +353390,Employment and Training,Employment and Training +350499,Employment and Training,Employment and Training +350498,Employment and Training,Employment and Training +341955,Employment and Training,Employment and Training +341941,Employment and Training,Employment and Training +341936,Employment and Training,Employment and Training +330155,Employment and Training,Employment and Training +301209,Industry,Industry +295709,Industry,Industry +309993,Industry,Industry +301231,Industry,Industry +301217,Industry,Industry +301216,Industry,Industry +301215,Industry,Industry +301213,Industry,Industry +301212,Industry,Industry +302804,Regional Development,Regional Development +302803,Regional Development,Regional Development +364864,Mining,Mining +364863,Mining,Mining +364863,Economic Development,Economic Development +302811,Energy,Energy +308069,Taxation and Finance,Taxation and Finance +295589,Taxation and Finance,Taxation and Finance +315490,Mining,Mining +301850,Mining,Mining +301849,Mining,Mining +301829,Mining,Mining +301809,Mining,Mining +309629,Environment,Environment +303525,Environment,Environment +309635,Environment,Environment +309634,Environment,Environment +309629,Mining,Mining +303525,Mining,Mining +309635,Mining,Mining +309634,Mining,Mining +322252,Health,Health +522990,Energy,Energy +511547,Energy,Energy +338525,Energy,Energy +296777,Financial Institutions,Financial Institutions +296773,Financial Institutions,Financial Institutions +319371,Financial Institutions,Financial Institutions +313305,Financial Institutions,Financial Institutions +313304,Financial Institutions,Financial Institutions +313303,Financial Institutions,Financial Institutions +313302,Financial Institutions,Financial Institutions +313301,Financial Institutions,Financial Institutions +313274,Financial Institutions,Financial Institutions +313273,Financial Institutions,Financial Institutions +310576,Financial Institutions,Financial Institutions +310575,Financial Institutions,Financial Institutions +310574,Financial Institutions,Financial Institutions +310573,Financial Institutions,Financial Institutions +310572,Financial Institutions,Financial Institutions +310571,Financial Institutions,Financial Institutions +310570,Financial Institutions,Financial Institutions +310569,Financial Institutions,Financial Institutions +304689,Financial Institutions,Financial Institutions +304669,Financial Institutions,Financial Institutions +304649,Financial Institutions,Financial Institutions +304629,Financial Institutions,Financial Institutions +304609,Financial Institutions,Financial Institutions +304589,Financial Institutions,Financial Institutions +304569,Financial Institutions,Financial Institutions +304550,Financial Institutions,Financial Institutions +304549,Financial Institutions,Financial Institutions +304535,Financial Institutions,Financial Institutions +321539,Agriculture,Agriculture +372901,Employment and Training,Employment and Training +355809,Security,Security +451511,Security,Security +413092,Employment and Training,Employment and Training +396920,Employment and Training,Employment and Training +389330,Employment and Training,Employment and Training +335924,Employment and Training,Employment and Training +319134,Employment and Training,Employment and Training +310335,Employment and Training,Employment and Training +296449,Employment and Training,Employment and Training +541403,Employment and Training,Employment and Training +424014,Employment and Training,Employment and Training +421268,Employment and Training,Employment and Training +418697,Employment and Training,Employment and Training +418687,Employment and Training,Employment and Training +418676,Employment and Training,Employment and Training +416811,Employment and Training,Employment and Training +414208,Employment and Training,Employment and Training +341643,Constitutional Issues,Constitutional Issues +435687,Constitutional Issues,Constitutional Issues +336023,Constitutional Issues,Constitutional Issues +416471,Constitutional Issues,Constitutional Issues +405390,Constitutional Issues,Constitutional Issues +296762,Constitutional Issues,Constitutional Issues +341260,Constitutional Issues,Constitutional Issues +471209,International Development,International Development +460192,International Development,International Development +335640,International Development,International Development +335638,International Development,International Development +335633,International Development,International Development +335632,International Development,International Development +334903,International Development,International Development +333391,International Development,International Development +333390,International Development,International Development +333388,International Development,International Development +329753,International Development,International Development +329752,International Development,International Development +329751,International Development,International Development +329750,International Development,International Development +329747,International Development,International Development +329745,International Development,International Development +329744,International Development,International Development +329743,International Development,International Development +329742,International Development,International Development +329741,International Development,International Development +329740,International Development,International Development +329738,International Development,International Development +329735,International Development,International Development +329731,International Development,International Development +329730,International Development,International Development +329729,International Development,International Development +320093,International Development,International Development +311869,International Development,International Development +435534,International Development,International Development +407070,International Development,International Development +407069,International Development,International Development +392705,International Development,International Development +389833,International Development,International Development +387329,International Development,International Development +383084,International Development,International Development +375596,International Development,International Development +373495,International Development,International Development +371197,International Development,International Development +370315,International Development,International Development +370314,International Development,International Development +359045,International Development,International Development +359044,International Development,International Development +357749,International Development,International Development +357741,International Development,International Development +357740,International Development,International Development +351508,International Development,International Development +348145,International Development,International Development +348142,International Development,International Development +342519,International Development,International Development +340094,International Development,International Development +340092,International Development,International Development +339239,International Development,International Development +339236,International Development,International Development +337637,International Development,International Development +337580,International Development,International Development +544296,International Development,International Development +541956,International Development,International Development +541955,International Development,International Development +535561,International Development,International Development +532016,International Development,International Development +529654,International Development,International Development +523270,International Development,International Development +514247,International Development,International Development +514246,International Development,International Development +514239,International Development,International Development +508834,International Development,International Development +505504,International Development,International Development +505501,International Development,International Development +505498,International Development,International Development +502717,International Development,International Development +502711,International Development,International Development +485145,International Development,International Development +482521,International Development,International Development +296949,Infrastructure,Infrastructure +296905,Infrastructure,Infrastructure +304314,Infrastructure,Infrastructure +304312,Infrastructure,Infrastructure +296991,Infrastructure,Infrastructure +456774,Small Business,Petites entreprises +456773,Small Business,Petites entreprises +520889,Small Business,Petites entreprises +459911,Small Business,Petites entreprises +456777,Small Business,Petites entreprises +488639,International Trade,International Trade +370712,International Trade,International Trade +366784,International Trade,International Trade +366783,International Trade,International Trade +366782,International Trade,International Trade +366778,International Trade,International Trade +358225,International Trade,International Trade +358218,International Trade,International Trade +358162,International Trade,International Trade +358160,International Trade,International Trade +349366,International Trade,International Trade +349363,International Trade,International Trade +349358,International Trade,International Trade +342029,International Trade,International Trade +342006,International Trade,International Trade +339071,International Trade,International Trade +339008,International Trade,International Trade +339007,International Trade,International Trade +339005,International Trade,International Trade +339004,International Trade,International Trade +339003,International Trade,International Trade +339001,International Trade,International Trade +339000,International Trade,International Trade +338999,International Trade,International Trade +338998,International Trade,International Trade +338997,International Trade,International Trade +338996,International Trade,International Trade +338981,International Trade,International Trade +338979,International Trade,International Trade +334936,International Trade,International Trade +334935,International Trade,International Trade +325097,International Trade,International Trade +322713,International Trade,International Trade +322710,International Trade,International Trade +311695,International Trade,International Trade +311694,International Trade,International Trade +311693,International Trade,International Trade +311691,International Trade,International Trade +311609,International Trade,International Trade +311590,International Trade,International Trade +311569,International Trade,International Trade +311549,International Trade,International Trade +297609,International Trade,International Trade +477054,International Trade,International Trade +477051,International Trade,International Trade +477002,International Trade,International Trade +473542,International Trade,International Trade +471595,International Trade,International Trade +466783,International Trade,International Trade +466562,International Trade,International Trade +466533,International Trade,International Trade +466527,International Trade,International Trade +466522,International Trade,International Trade +466519,International Trade,International Trade +466516,International Trade,International Trade +465476,International Trade,International Trade +462040,International Trade,International Trade +454090,International Trade,International Trade +451684,International Trade,International Trade +451572,International Trade,International Trade +451571,International Trade,International Trade +451567,International Trade,International Trade +451248,International Trade,International Trade +450910,International Trade,International Trade +450909,International Trade,International Trade +449092,International Trade,International Trade +447123,International Trade,International Trade +446256,International Trade,International Trade +444538,International Trade,International Trade +437104,International Trade,International Trade +437103,International Trade,International Trade +434317,International Trade,International Trade +432007,International Trade,International Trade +431999,International Trade,International Trade +431998,International Trade,International Trade +423608,International Trade,International Trade +422659,International Trade,International Trade +419558,International Trade,International Trade +419555,International Trade,International Trade +419551,International Trade,International Trade +419545,International Trade,International Trade +419539,International Trade,International Trade +419535,International Trade,International Trade +419533,International Trade,International Trade +412518,International Trade,International Trade +412515,International Trade,International Trade +412514,International Trade,International Trade +412513,International Trade,International Trade +407233,International Trade,International Trade +407232,International Trade,International Trade +407231,International Trade,International Trade +400852,International Trade,International Trade +400834,International Trade,International Trade +400824,International Trade,International Trade +391018,International Trade,International Trade +373571,International Trade,International Trade +543502,International Trade,International Trade +540535,International Trade,International Trade +538763,International Trade,International Trade +519171,International Trade,International Trade +519170,International Trade,International Trade +519169,International Trade,International Trade +519168,International Trade,International Trade +519167,International Trade,International Trade +519166,International Trade,International Trade +519165,International Trade,International Trade +519164,International Trade,International Trade +517023,International Trade,International Trade +517021,International Trade,International Trade +516216,International Trade,International Trade +516215,International Trade,International Trade +516214,International Trade,International Trade +515536,International Trade,International Trade +515535,International Trade,International Trade +391971,Agriculture,Agriculture +388612,Agriculture,Agriculture +329091,Agriculture,Agriculture +329090,Agriculture,Agriculture +329089,Agriculture,Agriculture +315069,Agriculture,Agriculture +305889,Agriculture,Agriculture +357338,Agriculture,Agriculture +357337,Agriculture,Agriculture +357336,Agriculture,Agriculture +351840,Agriculture,Agriculture +350384,Agriculture,Agriculture +350383,Agriculture,Agriculture +350381,Agriculture,Agriculture +348464,Agriculture,Agriculture +348463,Agriculture,Agriculture +348462,Agriculture,Agriculture +348461,Agriculture,Agriculture +348460,Agriculture,Agriculture +348459,Agriculture,Agriculture +348458,Agriculture,Agriculture +348457,Agriculture,Agriculture +335271,Agriculture,Agriculture +394760,Agriculture,Agriculture +394759,Agriculture,Agriculture +394758,Agriculture,Agriculture +391977,Agriculture,Agriculture +391976,Agriculture,Agriculture +391975,Agriculture,Agriculture +391974,Agriculture,Agriculture +391973,Agriculture,Agriculture +391971,International Trade,International Trade +388612,International Trade,International Trade +357339,International Trade,International Trade +302649,Education,Education +306350,Economic Development,Economic Development +414888,Environment,Environment +414884,Environment,Environment +299732,Environment,Environment +299731,Environment,Environment +299730,Environment,Environment +316674,Environment,Environment +306349,Environment,Environment +414884,Industry,Industry +414888,International Relations,International Relations +414884,International Relations,International Relations +316674,International Relations,International Relations +306351,International Relations,International Relations +306350,International Relations,International Relations +306349,International Relations,International Relations +299732,International Relations,International Relations +299731,International Relations,International Relations +299730,International Trade,International Trade +470795,International Trade,International Trade +316674,International Trade,International Trade +306351,International Trade,International Trade +306350,International Trade,International Trade +306349,International Trade,International Trade +299732,International Trade,International Trade +414888,Transportation,Transportation +414884,Transportation,Transportation +316674,Transportation,Transportation +306351,Transportation,Transportation +306350,Transportation,Transportation +306349,Transportation,Transportation +299732,Transportation,Transportation +299731,Transportation,Transportation +299730,Transportation,Transportation +444285,Economic Development,Economic Development +394090,Economic Development,Economic Development +305870,Taxation and Finance,Taxation and Finance +305869,Taxation and Finance,Taxation and Finance +299649,Taxation and Finance,Taxation and Finance +298729,Taxation and Finance,Taxation and Finance +368026,Environment,Environment +367842,Environment,Environment +299736,Environment,Environment +414808,Environment,Environment +414806,Environment,Environment +399857,Environment,Environment +399856,Environment,Environment +399849,Environment,Environment +389129,Environment,Environment +389127,Environment,Environment +389125,Environment,Environment +389123,Environment,Environment +377564,Environment,Environment +377563,Environment,Environment +371544,Environment,Environment +368030,Environment,Environment +368029,Environment,Environment +368028,Environment,Environment +414808,Transportation,Transportation +414806,Transportation,Transportation +306371,Transportation,Transportation +299736,Transportation,Transportation +399857,Transportation,Transportation +399856,Transportation,Transportation +399849,Transportation,Transportation +389129,Transportation,Transportation +389127,Transportation,Transportation +389125,Transportation,Transportation +389123,Transportation,Transportation +377564,Transportation,Transportation +377563,Transportation,Transportation +371544,Transportation,Transportation +368030,Transportation,Transportation +368029,Transportation,Transportation +368028,Transportation,Transportation +368027,Transportation,Transportation +368026,Transportation,Transportation +367842,Transportation,Transportation +357436,Transportation,Transportation +337409,Transportation,Transportation +337309,Transportation,Transportation +466831,Transportation,Transportation +299736,International Trade,International Trade +466831,International Trade,International Trade +414808,International Trade,International Trade +414806,International Trade,International Trade +399857,International Trade,International Trade +399856,International Trade,International Trade +399849,International Trade,International Trade +389129,International Trade,International Trade +389127,International Trade,International Trade +389125,International Trade,International Trade +389123,International Trade,International Trade +377564,International Trade,International Trade +377563,International Trade,International Trade +368030,International Trade,International Trade +368029,International Trade,International Trade +368028,International Trade,International Trade +368027,International Trade,International Trade +368026,International Trade,International Trade +367842,International Trade,International Trade +357436,International Trade,International Trade +337409,International Trade,International Trade +337309,International Trade,International Trade +414808,Industry,Industry +414806,Industry,Industry +371544,Industry,Industry +368030,Industry,Industry +368029,Industry,Industry +368028,Industry,Industry +368027,Industry,Industry +368026,Industry,Industry +367842,Industry,Industry +357436,Industry,Industry +337409,Industry,Industry +337309,Industry,Industry +306371,Industry,Industry +399857,Industry,Industry +399856,Industry,Industry +399849,Industry,Industry +389129,Industry,Industry +389127,Industry,Industry +389125,Industry,Industry +389123,Industry,Industry +377564,Industry,Industry +389127,Economic Development,Economic Development +389125,Economic Development,Economic Development +389123,Economic Development,Economic Development +377564,Economic Development,Economic Development +377563,Economic Development,Economic Development +371544,Economic Development,Economic Development +368030,Economic Development,Economic Development +368029,Economic Development,Economic Development +368028,Economic Development,Economic Development +368027,Economic Development,Economic Development +368026,Economic Development,Economic Development +306371,Economic Development,Economic Development +299736,Economic Development,Economic Development +414808,Economic Development,Economic Development +414806,Economic Development,Economic Development +399857,Economic Development,Economic Development +399856,Economic Development,Economic Development +399849,Economic Development,Economic Development +357436,International Relations,International Relations +466659,International Relations,International Relations +306371,International Relations,International Relations +299736,International Relations,International Relations +414808,International Relations,International Relations +414806,International Relations,International Relations +399857,International Relations,International Relations +399856,International Relations,International Relations +399849,International Relations,International Relations +389129,International Relations,International Relations +389127,International Relations,International Relations +389125,International Relations,International Relations +389123,International Relations,International Relations +377564,International Relations,International Relations +377563,International Relations,International Relations +368030,International Relations,International Relations +368029,International Relations,International Relations +368028,International Relations,International Relations +368027,International Relations,International Relations +377216,Defence,Defence +377200,Defence,Defence +372649,Defence,Defence +322245,Defence,Defence +319430,Defence,Defence +303969,Defence,Defence +432602,Defence,Defence +432601,Defence,Defence +413846,Defence,Defence +413845,Defence,Defence +413844,Defence,Defence +410157,Defence,Defence +405806,Defence,Defence +403984,Defence,Defence +403970,Defence,Defence +399221,Defence,Defence +394396,Defence,Defence +394393,Defence,Defence +394390,Defence,Defence +391727,Defence,Defence +391726,Defence,Defence +382648,Defence,Defence +382647,Defence,Defence +380102,Defence,Defence +380101,Defence,Defence +394392,Intellectual Property,Intellectual Property +377200,Intellectual Property,Intellectual Property +322245,Intellectual Property,Intellectual Property +319430,Intellectual Property,Intellectual Property +303969,Intellectual Property,Intellectual Property +403984,Intellectual Property,Intellectual Property +403970,Intellectual Property,Intellectual Property +319430,Research and Development,Research and Development +394390,Security,Security +390004,Infrastructure,Infrastructure +390004,Employment and Training,Employment and Training +390004,Environment,Environment +301471,International Relations,International Relations +298450,International Relations,International Relations +318993,Taxation and Finance,Taxation and Finance +318991,Taxation and Finance,Taxation and Finance +324311,Taxation and Finance,Taxation and Finance +318943,Taxation and Finance,Taxation and Finance +318940,Taxation and Finance,Taxation and Finance +324310,Taxation and Finance,Taxation and Finance +293789,International Relations,International Relations +305313,Agriculture,Agriculture +305313,Economic Development,Développement économique +315601,International Trade,International Trade +312552,Taxation and Finance,Taxation and Finance +312552,Consumer Issues,Consumer Issues +296856,International Relations,International Relations +315603,Mining,Mining +339854,Government Procurement,Government Procurement +365199,Immigration,Immigration +324478,Taxation and Finance,Taxation and Finance +290829,Sports,Sports +290978,International Trade,International Trade +290979,Taxation and Finance,Taxation and Finance +290981,Industry,Industry +421805,Research and Development,Research and Development +303516,Research and Development,Research and Development +319779,Industry,Industry +319779,Government Procurement,Government Procurement +319779,Research and Development,Research and Development +318033,Taxation and Finance,Taxation and Finance +435444,Economic Development,Economic Development +330187,Education,Education +327589,Immigration,Immigration +312870,International Development,International Development +327571,International Relations,International Relations +355282,Employment and Training,Employment and Training +301471,International Development,Développement international +324554,Employment and Training,Employment and Training +319263,Immigration,Immigration +328351,Labour,Labour +429668,International Trade,International Trade +292189,International Trade,International Trade +403249,Climate,Climate +292089,Climate,Climate +300775,Consumer Issues,Consumer Issues +293490,Economic Development,Développement économique +311032,Agriculture,Agriculture +303050,Research and Development,Research and Development +316073,Taxation and Finance,Taxation and Finance +452861,Energy,Energy +381525,Taxation and Finance,Taxation and Finance +296731,Employment and Training,Employment and Training +296731,Health,Health +315407,Agriculture,Agriculture +315407,International Trade,Commerce international +318654,International Relations,International Relations +293531,Energy,Energy +427524,Immigration,Immigration +298389,Taxation and Finance,Taxation and Finance +293190,Government Procurement,Government Procurement +452499,Economic Development,Economic Development +293269,Economic Development,Economic Development +296989,Transportation,Transportation +333616,Government Procurement,Government Procurement +293669,International Development,International Development +293670,International Development,International Development +293689,International Development,International Development +293690,International Development,International Development +293709,International Development,International Development +292950,International Development,International Development +304498,Industry,Industry +304498,Infrastructure,Infrastructure +335028,Economic Development,Economic Development +325429,Employment and Training,Employment and Training +298229,Industry,Industry +301210,Industry,Industry +298529,Transportation,Transportation +302806,Regional Development,Regional Development +375426,Mining,Mining +364864,Economic Development,Economic Development +302918,Energy,Energy +326755,Taxation and Finance,Taxation and Finance +296779,Transportation,Transportation +315490,Employment and Training,Employment and Training +315490,Environment,Environment +315489,Mining,Mining +301850,Employment and Training,Employment and Training +301850,Environment,Environment +301789,Mining,Mining +309631,Environment,Environment +309631,Mining,Mining +322251,Health,Health +338525,Employment and Training,Employment and Training +528538,Energy,Energy +338525,Environment,Environment +296778,Financial Institutions,Financial Institutions +309952,Sports,Sports +302829,Forestry,Forestry +299431,Industry,Industry +337854,Agriculture,Agriculture +296821,Industry,Industry +296821,Defence,Defence +296821,Government Procurement,Government Procurement +296821,Transportation,Transportation +375745,Employment and Training,Employment and Training +449506,Security,Security +296369,Regional Development,Regional Development +296370,Regional Development,Regional Development +414110,Employment and Training,Employment and Training +297409,Labour,Labour +296700,Government Procurement,Government Procurement +296703,Government Procurement,Government Procurement +296704,Economic Development,Economic Development +296720,Constitutional Issues,Constitutional Issues +435061,Constitutional Issues,Constitutional Issues +482520,International Development,International Development +296989,Infrastructure,Infrastructure +415274,Industry,Industry +456774,Forestry,Foresterie +456776,Small Business,Petites entreprises +500394,International Trade,International Trade +391972,Agriculture,Agriculture +350380,International Trade,International Trade +302650,Education,Education +302149,Environment,Environment +306351,Economic Development,Economic Development +470795,Environment,Environment +414888,Industry,Industry +299730,International Relations,International Relations +299731,International Trade,International Trade +470795,Transportation,Transportation +444286,Economic Development,Economic Development +302570,Transportation,Transportation +309450,Taxation and Finance,Taxation and Finance +310258,Taxation and Finance,Taxation and Finance +368027,Environment,Environment +466659,Transportation,Transportation +306371,International Trade,International Trade +377563,Industry,Industry +389129,Economic Development,Economic Development +368026,International Relations,International Relations +380099,Defence,Defence +394396,Intellectual Property,Intellectual Property +322245,Research and Development,Research and Development +322245,Security,Security +303950,Defence,Defence +390005,Infrastructure,Infrastructure +390005,Economic Development,Economic Development +390005,Energy,Energy +390005,Employment and Training,Employment and Training +390005,Environment,Environment +310181,Employment and Training,Employment and Training +310181,Health,Health +310181,Labour,Labour +380567,International Relations,International Relations +310068,Taxation and Finance,Taxation and Finance +318995,Taxation and Finance,Taxation and Finance +318945,Taxation and Finance,Taxation and Finance +310060,Taxation and Finance,Taxation and Finance +318998,Taxation and Finance,Taxation and Finance +515846,International Trade,International Trade +472988,Labour,Labour +513283,Research and Development,Research and Development +310072,Taxation and Finance,Taxation and Finance +420200,Economic Development,Economic Development +308149,Taxation and Finance,Taxation and Finance +308132,Taxation and Finance,Taxation and Finance +308169,Taxation and Finance,Taxation and Finance +310099,Taxation and Finance,Taxation and Finance +310077,Taxation and Finance,Taxation and Finance +310106,Taxation and Finance,Taxation and Finance +520279,Labour,Labour +334891,Infrastructure,Infrastructure +333565,Environment,Environment +333567,Environment,Environment +332229,Consumer Issues,Consumer Issues +308409,Health,Health +308409,Taxation and Finance,Taxation and Finance +468099,Employment and Training,Employment and Training +318997,Taxation and Finance,Taxation and Finance +318996,Taxation and Finance,Taxation and Finance +324312,Taxation and Finance,Taxation and Finance +515842,International Trade,International Trade +513275,International Trade,International Trade +372734,International Trade,International Trade +347323,International Trade,International Trade +347321,International Trade,International Trade +341964,International Trade,International Trade +338769,International Trade,International Trade +338768,International Trade,International Trade +338766,International Trade,International Trade +338764,International Trade,International Trade +338757,International Trade,International Trade +338754,International Trade,International Trade +331655,International Trade,International Trade +324685,International Trade,International Trade +309898,International Trade,International Trade +309891,International Trade,International Trade +429216,International Trade,International Trade +429199,International Trade,International Trade +429195,International Trade,International Trade +429193,International Trade,International Trade +426323,International Trade,International Trade +426322,International Trade,International Trade +426321,International Trade,International Trade +426320,International Trade,International Trade +426319,International Trade,International Trade +426318,International Trade,International Trade +426316,International Trade,International Trade +426314,International Trade,International Trade +426312,International Trade,International Trade +426311,International Trade,International Trade +426310,International Trade,International Trade +426309,International Trade,International Trade +426308,International Trade,International Trade +426307,International Trade,International Trade +426297,International Trade,International Trade +426292,International Trade,International Trade +426290,International Trade,International Trade +426285,International Trade,International Trade +424048,International Trade,International Trade +424037,International Trade,International Trade +424010,International Trade,International Trade +424007,International Trade,International Trade +424005,International Trade,International Trade +424002,International Trade,International Trade +423999,International Trade,International Trade +422108,International Trade,International Trade +421680,International Trade,International Trade +421677,International Trade,International Trade +421667,International Trade,International Trade +421661,International Trade,International Trade +421646,International Trade,International Trade +421643,International Trade,International Trade +421641,International Trade,International Trade +420231,International Trade,International Trade +420230,International Trade,International Trade +420225,International Trade,International Trade +420223,International Trade,International Trade +420222,International Trade,International Trade +420221,International Trade,International Trade +420218,International Trade,International Trade +420217,International Trade,International Trade +420144,International Trade,International Trade +416099,International Trade,International Trade +416092,International Trade,International Trade +416087,International Trade,International Trade +416085,International Trade,International Trade +416080,International Trade,International Trade +413137,International Trade,International Trade +408132,International Trade,International Trade +407882,International Trade,International Trade +407718,International Trade,International Trade +407646,International Trade,International Trade +406722,International Trade,International Trade +406685,International Trade,International Trade +406477,International Trade,International Trade +406476,International Trade,International Trade +406475,International Trade,International Trade +406474,International Trade,International Trade +405304,International Trade,International Trade +405228,International Trade,International Trade +405227,International Trade,International Trade +405226,International Trade,International Trade +405222,International Trade,International Trade +405221,International Trade,International Trade +405211,International Trade,International Trade +405206,International Trade,International Trade +403660,International Trade,International Trade +403653,International Trade,International Trade +403649,International Trade,International Trade +403644,International Trade,International Trade +403632,International Trade,International Trade +399457,International Trade,International Trade +398984,International Trade,International Trade +398846,International Trade,International Trade +395320,International Trade,International Trade +395319,International Trade,International Trade +395318,International Trade,International Trade +395317,International Trade,International Trade +395315,International Trade,International Trade +395314,International Trade,International Trade +395313,International Trade,International Trade +379707,International Trade,International Trade +379702,International Trade,International Trade +373475,International Trade,International Trade +502264,International Trade,International Trade +502257,International Trade,International Trade +502244,International Trade,International Trade +499350,International Trade,International Trade +488024,International Trade,International Trade +488020,International Trade,International Trade +488017,International Trade,International Trade +488014,International Trade,International Trade +487999,International Trade,International Trade +485061,International Trade,International Trade +485054,International Trade,International Trade +485046,International Trade,International Trade +485030,International Trade,International Trade +485021,International Trade,International Trade +485017,International Trade,International Trade +482371,International Trade,International Trade +480906,International Trade,International Trade +479085,International Trade,International Trade +479077,International Trade,International Trade +478109,International Trade,International Trade +478090,International Trade,International Trade +478086,International Trade,International Trade +478082,International Trade,International Trade +478079,International Trade,International Trade +478077,International Trade,International Trade +475505,International Trade,International Trade +475477,International Trade,International Trade +475423,International Trade,International Trade +472999,International Trade,International Trade +472995,International Trade,International Trade +472993,International Trade,International Trade +470941,International Trade,International Trade +467866,International Trade,International Trade +464930,International Trade,International Trade +464929,International Trade,International Trade +464914,International Trade,International Trade +464876,International Trade,International Trade +464863,International Trade,International Trade +464816,International Trade,International Trade +462650,International Trade,International Trade +458443,International Trade,International Trade +458442,International Trade,International Trade +458440,International Trade,International Trade +457174,International Trade,International Trade +456003,International Trade,International Trade +455998,International Trade,International Trade +455991,International Trade,International Trade +455986,International Trade,International Trade +455980,International Trade,International Trade +455975,International Trade,International Trade +455973,International Trade,International Trade +455959,International Trade,International Trade +455956,International Trade,International Trade +455951,International Trade,International Trade +455945,International Trade,International Trade +455942,International Trade,International Trade +452827,International Trade,International Trade +452825,International Trade,International Trade +452822,International Trade,International Trade +452817,International Trade,International Trade +452805,International Trade,International Trade +452803,International Trade,International Trade +452761,International Trade,International Trade +449750,International Trade,International Trade +449749,International Trade,International Trade +449746,International Trade,International Trade +449744,International Trade,International Trade +449743,International Trade,International Trade +449742,International Trade,International Trade +449739,International Trade,International Trade +448137,International Trade,International Trade +448135,International Trade,International Trade +448134,International Trade,International Trade +445670,International Trade,International Trade +445669,International Trade,International Trade +445667,International Trade,International Trade +445663,International Trade,International Trade +445657,International Trade,International Trade +445652,International Trade,International Trade +445650,International Trade,International Trade +438802,International Trade,International Trade +438800,International Trade,International Trade +438191,International Trade,International Trade +438188,International Trade,International Trade +438144,International Trade,International Trade +438098,International Trade,International Trade +435642,International Trade,International Trade +435638,International Trade,International Trade +433674,International Trade,International Trade +433646,International Trade,International Trade +433644,International Trade,International Trade +432466,International Trade,International Trade +430948,International Trade,International Trade +430945,International Trade,International Trade +430942,International Trade,International Trade +430937,International Trade,International Trade +430934,International Trade,International Trade +430931,International Trade,International Trade +430930,International Trade,International Trade +430929,International Trade,International Trade +430927,International Trade,International Trade +430926,International Trade,International Trade +430924,International Trade,International Trade +430922,International Trade,International Trade +430920,International Trade,International Trade +430914,International Trade,International Trade +430906,International Trade,International Trade +430899,International Trade,International Trade +429249,International Trade,International Trade +429246,International Trade,International Trade +429244,International Trade,International Trade +429240,International Trade,International Trade +429225,International Trade,International Trade +537475,International Trade,International Trade +528304,International Trade,International Trade +526893,International Trade,International Trade +519867,International Trade,International Trade +472986,Labour,Labour +472982,Labour,Labour +379819,Labour,Labour +513287,Labour,Labour +513285,Labour,Labour +513281,Research and Development,Research and Development +513276,Research and Development,Research and Development +376905,Research and Development,Research and Development +364803,Research and Development,Research and Development +349254,Research and Development,Research and Development +338769,Research and Development,Research and Development +338764,Research and Development,Research and Development +338757,Research and Development,Research and Development +338754,Research and Development,Research and Development +324714,Research and Development,Research and Development +418062,Research and Development,Research and Development +418058,Research and Development,Research and Development +418055,Research and Development,Research and Development +416092,Research and Development,Research and Development +416085,Research and Development,Research and Development +416080,Research and Development,Research and Development +413137,Research and Development,Research and Development +408132,Research and Development,Research and Development +407882,Research and Development,Research and Development +406477,Research and Development,Research and Development +406476,Research and Development,Research and Development +405304,Research and Development,Research and Development +405228,Research and Development,Research and Development +405227,Research and Development,Research and Development +405226,Research and Development,Research and Development +405222,Research and Development,Research and Development +405221,Research and Development,Research and Development +405211,Research and Development,Research and Development +405206,Research and Development,Research and Development +403799,Research and Development,Research and Development +403723,Research and Development,Research and Development +403717,Research and Development,Research and Development +399476,Research and Development,Research and Development +395317,Research and Development,Research and Development +395315,Research and Development,Research and Development +395314,Research and Development,Research and Development +395313,Research and Development,Research and Development +387836,Research and Development,Research and Development +387824,Research and Development,Research and Development +385373,Research and Development,Research and Development +385372,Research and Development,Research and Development +379843,Research and Development,Research and Development +513274,Research and Development,Research and Development +510547,Research and Development,Research and Development +510546,Research and Development,Research and Development +510543,Research and Development,Research and Development +510535,Research and Development,Research and Development +508100,Research and Development,Research and Development +504629,Research and Development,Research and Development +504625,Research and Development,Research and Development +504623,Research and Development,Research and Development +504621,Research and Development,Research and Development +504620,Research and Development,Research and Development +502268,Research and Development,Research and Development +502267,Research and Development,Research and Development +502253,Research and Development,Research and Development +499350,Research and Development,Research and Development +499347,Research and Development,Research and Development +499331,Research and Development,Research and Development +495491,Research and Development,Research and Development +495490,Research and Development,Research and Development +492910,Research and Development,Research and Development +491452,Research and Development,Research and Development +491401,Research and Development,Research and Development +488024,Research and Development,Research and Development +488020,Research and Development,Research and Development +488014,Research and Development,Research and Development +487999,Research and Development,Research and Development +485061,Research and Development,Research and Development +485054,Research and Development,Research and Development +485046,Research and Development,Research and Development +485030,Research and Development,Research and Development +485017,Research and Development,Research and Development +472981,Research and Development,Research and Development +472977,Research and Development,Research and Development +470941,Research and Development,Research and Development +470759,Research and Development,Research and Development +470758,Research and Development,Research and Development +470755,Research and Development,Research and Development +442690,Research and Development,Research and Development +438800,Research and Development,Research and Development +430945,Research and Development,Research and Development +430929,Research and Development,Research and Development +430920,Research and Development,Research and Development +430914,Research and Development,Research and Development +429246,Research and Development,Research and Development +429244,Research and Development,Research and Development +429225,Research and Development,Research and Development +429216,Research and Development,Research and Development +429195,Research and Development,Research and Development +429193,Research and Development,Research and Development +426323,Research and Development,Research and Development +426322,Research and Development,Research and Development +426321,Research and Development,Research and Development +426320,Research and Development,Research and Development +426319,Research and Development,Research and Development +426318,Research and Development,Research and Development +426316,Research and Development,Research and Development +426314,Research and Development,Research and Development +426312,Research and Development,Research and Development +426311,Research and Development,Research and Development +426310,Research and Development,Research and Development +426309,Research and Development,Research and Development +426308,Research and Development,Research and Development +426307,Research and Development,Research and Development +426297,Research and Development,Research and Development +426285,Research and Development,Research and Development +424048,Research and Development,Research and Development +424010,Research and Development,Research and Development +424002,Research and Development,Research and Development +422108,Research and Development,Research and Development +421680,Research and Development,Research and Development +421667,Research and Development,Research and Development +421661,Research and Development,Research and Development +421646,Research and Development,Research and Development +421643,Research and Development,Research and Development +421641,Research and Development,Research and Development +421637,Research and Development,Research and Development +421635,Research and Development,Research and Development +420230,Research and Development,Research and Development +420225,Research and Development,Research and Development +420223,Research and Development,Research and Development +420222,Research and Development,Research and Development +420221,Research and Development,Research and Development +420218,Research and Development,Research and Development +420217,Research and Development,Research and Development +420144,Research and Development,Research and Development +544517,Research and Development,Research and Development +544516,Research and Development,Research and Development +544515,Research and Development,Research and Development +544514,Research and Development,Research and Development +540115,Research and Development,Research and Development +540113,Research and Development,Research and Development +540111,Research and Development,Research and Development +537488,Research and Development,Research and Development +537486,Research and Development,Research and Development +537482,Research and Development,Research and Development +537479,Research and Development,Research and Development +537476,Research and Development,Research and Development +537473,Research and Development,Research and Development +537471,Research and Development,Research and Development +537470,Research and Development,Research and Development +535929,Research and Development,Research and Development +535615,Research and Development,Research and Development +535611,Research and Development,Research and Development +535605,Research and Development,Research and Development +535599,Research and Development,Research and Development +535569,Research and Development,Research and Development +535514,Research and Development,Research and Development +527858,Research and Development,Research and Development +527856,Research and Development,Research and Development +524935,Research and Development,Research and Development +524931,Research and Development,Research and Development +524930,Research and Development,Research and Development +524894,Research and Development,Research and Development +522202,Research and Development,Research and Development +517968,Research and Development,Research and Development +517964,Research and Development,Research and Development +517958,Research and Development,Research and Development +517954,Research and Development,Research and Development +517951,Research and Development,Research and Development +517944,Research and Development,Research and Development +517928,Research and Development,Research and Development +517919,Research and Development,Research and Development +513284,Research and Development,Research and Development +308148,Taxation and Finance,Taxation and Finance +308146,Taxation and Finance,Taxation and Finance +308144,Taxation and Finance,Taxation and Finance +308142,Taxation and Finance,Taxation and Finance +308141,Taxation and Finance,Taxation and Finance +308139,Taxation and Finance,Taxation and Finance +308130,Taxation and Finance,Taxation and Finance +308129,Taxation and Finance,Taxation and Finance +308137,Taxation and Finance,Taxation and Finance +308136,Taxation and Finance,Taxation and Finance +308135,Taxation and Finance,Taxation and Finance +308134,Taxation and Finance,Taxation and Finance +308157,Taxation and Finance,Taxation and Finance +308156,Taxation and Finance,Taxation and Finance +308155,Taxation and Finance,Taxation and Finance +308154,Taxation and Finance,Taxation and Finance +308153,Taxation and Finance,Taxation and Finance +308151,Taxation and Finance,Taxation and Finance +310098,Taxation and Finance,Taxation and Finance +310097,Taxation and Finance,Taxation and Finance +324300,Taxation and Finance,Taxation and Finance +318858,Taxation and Finance,Taxation and Finance +318857,Taxation and Finance,Taxation and Finance +318856,Taxation and Finance,Taxation and Finance +318854,Taxation and Finance,Taxation and Finance +318853,Taxation and Finance,Taxation and Finance +318852,Taxation and Finance,Taxation and Finance +310104,Taxation and Finance,Taxation and Finance +310103,Taxation and Finance,Taxation and Finance +310102,Taxation and Finance,Taxation and Finance +310101,Taxation and Finance,Taxation and Finance +310074,Taxation and Finance,Taxation and Finance +310057,Taxation and Finance,Taxation and Finance +324301,Taxation and Finance,Taxation and Finance +318851,Taxation and Finance,Taxation and Finance +318849,Taxation and Finance,Taxation and Finance +318848,Taxation and Finance,Taxation and Finance +318847,Taxation and Finance,Taxation and Finance +318846,Taxation and Finance,Taxation and Finance +318845,Taxation and Finance,Taxation and Finance +310093,Taxation and Finance,Taxation and Finance +310091,Taxation and Finance,Taxation and Finance +310090,Taxation and Finance,Taxation and Finance +310079,Taxation and Finance,Taxation and Finance +310105,Taxation and Finance,Taxation and Finance +324299,Taxation and Finance,Taxation and Finance +318865,Taxation and Finance,Taxation and Finance +318864,Taxation and Finance,Taxation and Finance +318863,Taxation and Finance,Taxation and Finance +318862,Taxation and Finance,Taxation and Finance +318861,Taxation and Finance,Taxation and Finance +318859,Taxation and Finance,Taxation and Finance +310114,Taxation and Finance,Taxation and Finance +310112,Taxation and Finance,Taxation and Finance +310111,Taxation and Finance,Taxation and Finance +310109,Taxation and Finance,Taxation and Finance +310108,Taxation and Finance,Taxation and Finance +518681,Labour,Labour +518679,Labour,Labour +301214,Labour,Labour +492426,Labour,Labour +527451,Labour,Labour +527290,Labour,Labour +527166,Labour,Labour +527157,Labour,Labour +527122,Labour,Labour +527066,Labour,Labour +527065,Labour,Labour +524732,Labour,Labour +524646,Labour,Labour +524514,Labour,Labour +523652,Labour,Labour +523608,Labour,Labour +523557,Labour,Labour +523499,Labour,Labour +523498,Labour,Labour +520973,Labour,Labour +520825,Labour,Labour +520756,Labour,Labour +520657,Labour,Labour +520648,Labour,Labour +520597,Labour,Labour +520591,Labour,Labour +520545,Labour,Labour +520386,Labour,Labour +520280,Labour,Labour +334888,Infrastructure,Infrastructure +325591,Infrastructure,Infrastructure +308590,Infrastructure,Infrastructure +334896,Infrastructure,Infrastructure +334894,Infrastructure,Infrastructure +334893,Infrastructure,Infrastructure +334892,Infrastructure,Infrastructure +330225,Environment,Environment +308409,Consumer Issues,Consumer Issues +332229,Taxation and Finance,Taxation and Finance +455102,Employment and Training,Employment and Training +455097,Employment and Training,Employment and Training +387640,Employment and Training,Employment and Training +387633,Employment and Training,Employment and Training +468104,Employment and Training,Employment and Training +468103,Employment and Training,Employment and Training +468102,Employment and Training,Employment and Training +468101,Employment and Training,Employment and Training +468100,Employment and Training,Employment and Training +305449,Industry,Industry +305349,Industry,Industry +309671,Industry,Industry +309670,Industry,Industry +323157,Energy,Energy +323156,Energy,Energy +329059,Energy,Energy +329058,Energy,Energy +329053,International Relations,International Relations +329052,International Relations,International Relations +310088,Agriculture,Agriculture +307554,Agriculture,Agriculture +333115,Agriculture,Agriculture +322789,Agriculture,Agriculture +321794,Agriculture,Agriculture +321793,Agriculture,Agriculture +321792,Agriculture,Agriculture +317689,Agriculture,Agriculture +317670,Agriculture,Agriculture +317669,Agriculture,Agriculture +315230,Agriculture,Agriculture +314553,Agriculture,Agriculture +314010,Agriculture,Agriculture +307552,International Trade,International Trade +314010,Transportation,Transportation +314009,Transportation,Transportation +322790,Transportation,Transportation +317689,Transportation,Transportation +317670,Transportation,Transportation +317669,Transportation,Transportation +300213,Health,Health +300150,Health,Health +300110,Health,Health +343629,Health,Health +338356,Health,Health +338353,Health,Health +334509,Health,Health +328653,Health,Health +328652,Health,Health +328651,Health,Health +328650,Health,Health +314650,Health,Health +314349,Health,Health +310004,Health,Health +310001,Health,Health +309997,Health,Health +306489,Financial Institutions,Financial Institutions +456526,Economic Development,Economic Development +456525,Economic Development,Economic Development +384560,Economic Development,Economic Development +299990,Economic Development,Economic Development +536288,Economic Development,Economic Development +456529,Economic Development,Economic Development +456528,Economic Development,Economic Development +305729,Health,Health +365723,Environment,Environment +365722,Environment,Environment +326169,Environment,Environment +325269,Environment,Environment +309910,Environment,Environment +309909,Environment,Environment +309908,Environment,Environment +309907,Environment,Environment +309906,Environment,Environment +375537,Environment,Environment +373305,Environment,Environment +373304,Environment,Environment +368612,Environment,Environment +459669,Industry,Industry +402769,Industry,Industry +329818,Industry,Industry +326969,Industry,Industry +326169,Industry,Industry +325269,Industry,Industry +375537,Industry,Industry +373305,Industry,Industry +373304,Industry,Industry +368612,Industry,Industry +368611,Industry,Industry +365723,Industry,Industry +453923,Transportation,Transportation +402769,Transportation,Transportation +375537,Transportation,Transportation +373305,Transportation,Transportation +373304,Transportation,Transportation +373303,Transportation,Transportation +368612,Transportation,Transportation +368611,Transportation,Transportation +365723,Transportation,Transportation +365722,Transportation,Transportation +357341,Transportation,Transportation +357340,Transportation,Transportation +326969,Transportation,Transportation +326169,Transportation,Transportation +325269,Transportation,Transportation +309910,Transportation,Transportation +309909,Transportation,Transportation +309908,Transportation,Transportation +309907,Transportation,Transportation +309906,Transportation,Transportation +459669,Transportation,Transportation +358155,Budget,Budget +353631,Budget,Budget +328238,Budget,Budget +521290,Regional Development,Regional Development +521289,Regional Development,Regional Development +388174,Regional Development,Regional Development +387878,Regional Development,Regional Development +387867,Regional Development,Regional Development +387858,Regional Development,Regional Development +387848,Regional Development,Regional Development +387817,Regional Development,Regional Development +325918,Regional Development,Regional Development +325916,Regional Development,Regional Development +325915,Regional Development,Regional Development +325914,Regional Development,Regional Development +325913,Regional Development,Regional Development +325912,Regional Development,Regional Development +325909,Regional Development,Regional Development +309731,Regional Development,Regional Development +309729,Regional Development,Regional Development +309726,Regional Development,Regional Development +309170,Regional Development,Regional Development +309169,Regional Development,Regional Development +308411,Regional Development,Regional Development +308354,Regional Development,Regional Development +521380,Regional Development,Regional Development +521377,Regional Development,Regional Development +521376,Regional Development,Regional Development +521375,Regional Development,Regional Development +521374,Regional Development,Regional Development +521370,Regional Development,Regional Development +521366,Regional Development,Regional Development +521364,Regional Development,Regional Development +521363,Regional Development,Regional Development +521356,Regional Development,Regional Development +521332,Regional Development,Regional Development +521322,Regional Development,Regional Development +331789,Budget,Budget +301020,Budget,Budget +356626,Labour,Labour +343809,Labour,Labour +340544,Small Business,Small Business +310330,Small Business,Small Business +356626,Small Business,Small Business +356625,Small Business,Small Business +354623,Small Business,Small Business +343809,Economic Development,Economic Development +340544,Economic Development,Economic Development +356626,Economic Development,Economic Development +356625,Economic Development,Economic Development +301249,Government Procurement,Government Procurement +335888,Government Procurement,Government Procurement +327631,Government Procurement,Government Procurement +304110,Mining,Mining +304109,Mining,Mining +313971,Mining,Mining +309900,Mining,Mining +304149,Mining,Mining +432155,Agriculture,Agriculture +432154,Agriculture,Agriculture +466547,Agriculture,Agriculture +466543,Agriculture,Agriculture +466500,Agriculture,Agriculture +451029,Agriculture,Agriculture +301609,Economic Development,Economic Development +301609,Regional Development,Regional Development +544822,Transportation,Transportation +538648,Transportation,Transportation +371715,Transportation,Transportation +371708,Transportation,Transportation +371705,Transportation,Transportation +343754,Transportation,Transportation +301955,Transportation,Transportation +521861,Transportation,Transportation +521853,Transportation,Transportation +509946,Transportation,Transportation +458321,Transportation,Transportation +371714,Transportation,Transportation +371713,Transportation,Transportation +343751,Transportation,Transportation +301956,Transportation,Transportation +524274,Transportation,Transportation +511945,Transportation,Transportation +500512,Transportation,Transportation +451579,Transportation,Transportation +427854,Transportation,Transportation +424454,Transportation,Transportation +339028,International Trade,International Trade +301957,International Trade,International Trade +513503,International Trade,International Trade +492238,International Trade,International Trade +382137,International Trade,International Trade +373443,International Trade,International Trade +453047,Fisheries,Fisheries +371716,Fisheries,Fisheries +339022,Fisheries,Fisheries +482902,Economic Development,Economic Development +481716,Economic Development,Economic Development +330117,Economic Development,Economic Development +325364,Economic Development,Economic Development +319929,Economic Development,Economic Development +301989,Economic Development,Economic Development +411278,Economic Development,Economic Development +390878,Economic Development,Economic Development +386606,Economic Development,Economic Development +386605,Economic Development,Economic Development +386603,Economic Development,Economic Development +386601,Economic Development,Economic Development +383251,Economic Development,Economic Development +383250,Economic Development,Economic Development +383249,Economic Development,Economic Development +383247,Economic Development,Economic Development +376275,Economic Development,Economic Development +376270,Economic Development,Economic Development +358455,Economic Development,Economic Development +358454,Economic Development,Economic Development +358453,Economic Development,Economic Development +352987,Economic Development,Economic Development +352986,Economic Development,Economic Development +528809,Economic Development,Economic Development +525753,Economic Development,Economic Development +525697,Economic Development,Economic Development +482902,Employment and Training,Employment and Training +481716,Employment and Training,Employment and Training +358455,Employment and Training,Employment and Training +358454,Employment and Training,Employment and Training +358453,Employment and Training,Employment and Training +325364,Employment and Training,Employment and Training +301989,Employment and Training,Employment and Training +411278,Employment and Training,Employment and Training +411277,Employment and Training,Employment and Training +411276,Employment and Training,Employment and Training +385223,Employment and Training,Employment and Training +528941,Employment and Training,Employment and Training +528882,Employment and Training,Employment and Training +528809,Employment and Training,Employment and Training +525753,Employment and Training,Employment and Training +525697,Employment and Training,Employment and Training +525689,Employment and Training,Employment and Training +486034,Budget,Budget +482902,Budget,Budget +301989,Budget,Budget +386606,Budget,Budget +386605,Budget,Budget +386603,Budget,Budget +386601,Budget,Budget +385223,Budget,Budget +385222,Budget,Budget +383251,Budget,Budget +344592,Budget,Budget +411278,Budget,Budget +411277,Budget,Budget +411275,Budget,Budget +390878,Budget,Budget +528941,Budget,Budget +528859,Budget,Budget +528809,Budget,Budget +525753,Budget,Budget +525697,Budget,Budget +525689,Budget,Budget +521575,Budget,Budget +521574,Budget,Budget +521571,Budget,Budget +516508,Budget,Budget +516507,Budget,Budget +302050,Taxation and Finance,Taxation and Finance +312189,Agriculture,Agriculture +312191,International Trade,International Trade +312189,International Trade,International Trade +312191,Taxation and Finance,Taxation and Finance +389543,Security,Security +389538,Security,Security +350291,Security,Security +309849,Security,Security +309847,Security,Security +309835,Security,Security +532185,International Relations,International Relations +503087,International Relations,International Relations +325358,International Relations,International Relations +325357,International Relations,International Relations +322277,International Relations,International Relations +302473,International Relations,International Relations +387840,International Relations,International Relations +382491,International Relations,International Relations +365181,International Relations,International Relations +357678,International Relations,International Relations +356261,International Relations,International Relations +354157,International Relations,International Relations +354154,International Relations,International Relations +354147,International Relations,International Relations +441881,International Relations,International Relations +435753,International Relations,International Relations +432263,International Relations,International Relations +432261,International Relations,International Relations +432254,International Relations,International Relations +432250,International Relations,International Relations +430522,International Relations,International Relations +428136,International Relations,International Relations +428133,International Relations,International Relations +428128,International Relations,International Relations +425896,International Relations,International Relations +421662,International Relations,International Relations +412876,International Relations,International Relations +406755,International Relations,International Relations +404881,International Relations,International Relations +404547,International Relations,International Relations +404546,International Relations,International Relations +402226,International Relations,International Relations +400420,International Relations,International Relations +394452,International Relations,International Relations +407908,Health,Health +387316,Health,Health +434837,Health,Health +357863,Budget,Budget +355758,Budget,Budget +310451,Budget,Budget +303573,Budget,Budget +303569,Budget,Budget +303550,Budget,Budget +354180,International Development,International Development +342124,International Development,International Development +303643,Economic Development,Economic Development +303641,Economic Development,Economic Development +342124,Economic Development,Economic Development +342119,Economic Development,Economic Development +342118,Employment and Training,Employment and Training +303643,Employment and Training,Employment and Training +456384,Budget,Budget +456383,Budget,Budget +334166,Budget,Budget +304099,Budget,Budget +304093,Budget,Budget +394096,Budget,Budget +394095,Budget,Budget +394093,Budget,Budget +394091,Budget,Budget +391028,Budget,Budget +391025,Budget,Budget +387201,Budget,Budget +381340,Budget,Budget +381337,Budget,Budget +381335,Budget,Budget +378728,Budget,Budget +378727,Budget,Budget +369685,Budget,Budget +369684,Budget,Budget +369683,Budget,Budget +361239,Budget,Budget +361238,Budget,Budget +361237,Budget,Budget +361236,Budget,Budget +361235,Budget,Budget +354486,Budget,Budget +354485,Budget,Budget +354484,Budget,Budget +354483,Budget,Budget +354482,Budget,Budget +354481,Budget,Budget +354460,Budget,Budget +349271,Budget,Budget +341737,Budget,Budget +341703,Budget,Budget +341700,Budget,Budget +341696,Budget,Budget +338662,Budget,Budget +445029,Budget,Budget +445024,Budget,Budget +415119,Budget,Budget +411454,Budget,Budget +411364,Budget,Budget +411362,Budget,Budget +410771,Budget,Budget +408962,Budget,Budget +405033,Budget,Budget +405032,Budget,Budget +405028,Budget,Budget +402691,Budget,Budget +402690,Budget,Budget +402666,Budget,Budget +402665,Budget,Budget +402664,Budget,Budget +400264,Budget,Budget +399181,Budget,Budget +399180,Budget,Budget +399179,Budget,Budget +399177,Budget,Budget +399175,Budget,Budget +396555,Budget,Budget +396552,Budget,Budget +396550,Budget,Budget +396543,Budget,Budget +396536,Budget,Budget +396523,Budget,Budget +396515,Budget,Budget +396508,Budget,Budget +396497,Budget,Budget +541124,Budget,Budget +541123,Budget,Budget +459528,Budget,Budget +457096,Budget,Budget +445017,Research and Development,Research and Development +445013,Research and Development,Research and Development +304099,Research and Development,Research and Development +387201,Research and Development,Research and Development +381340,Research and Development,Research and Development +381337,Research and Development,Research and Development +381335,Research and Development,Research and Development +378728,Research and Development,Research and Development +378727,Research and Development,Research and Development +369685,Research and Development,Research and Development +369684,Research and Development,Research and Development +369683,Research and Development,Research and Development +361239,Research and Development,Research and Development +361238,Research and Development,Research and Development +361237,Research and Development,Research and Development +361236,Research and Development,Research and Development +361235,Research and Development,Research and Development +354486,Research and Development,Research and Development +354485,Research and Development,Research and Development +354484,Research and Development,Research and Development +354483,Research and Development,Research and Development +354482,Research and Development,Research and Development +354481,Research and Development,Research and Development +354460,Research and Development,Research and Development +349271,Research and Development,Research and Development +341737,Research and Development,Research and Development +341703,Research and Development,Research and Development +341700,Research and Development,Research and Development +341696,Research and Development,Research and Development +338662,Research and Development,Research and Development +334166,Research and Development,Research and Development +415119,Research and Development,Research and Development +411454,Research and Development,Research and Development +411364,Research and Development,Research and Development +411362,Research and Development,Research and Development +410771,Research and Development,Research and Development +408962,Research and Development,Research and Development +405033,Research and Development,Research and Development +405032,Research and Development,Research and Development +405028,Research and Development,Research and Development +402691,Research and Development,Research and Development +402690,Research and Development,Research and Development +402666,Research and Development,Research and Development +402665,Research and Development,Research and Development +402664,Research and Development,Research and Development +400264,Research and Development,Research and Development +399181,Research and Development,Research and Development +399180,Research and Development,Research and Development +399179,Research and Development,Research and Development +399177,Research and Development,Research and Development +399175,Research and Development,Research and Development +396555,Research and Development,Research and Development +396552,Research and Development,Research and Development +396550,Research and Development,Research and Development +396543,Research and Development,Research and Development +396536,Research and Development,Research and Development +396523,Research and Development,Research and Development +396515,Research and Development,Research and Development +396508,Research and Development,Research and Development +396497,Research and Development,Research and Development +394096,Research and Development,Research and Development +394095,Research and Development,Research and Development +394093,Research and Development,Research and Development +394091,Research and Development,Research and Development +391028,Research and Development,Research and Development +391025,Research and Development,Research and Development +467142,Research and Development,Research and Development +467125,Research and Development,Research and Development +462593,Research and Development,Research and Development +462592,Research and Development,Research and Development +462585,Research and Development,Research and Development +457096,Research and Development,Research and Development +456386,Research and Development,Research and Development +456382,Research and Development,Research and Development +445036,Research and Development,Research and Development +445034,Research and Development,Research and Development +445032,Research and Development,Research and Development +445029,Research and Development,Research and Development +445028,Research and Development,Research and Development +445027,Research and Development,Research and Development +445026,Research and Development,Research and Development +445024,Research and Development,Research and Development +331709,Environment,Environment +331144,Environment,Environment +313971,Environment,Environment +309900,Environment,Environment +304149,Environment,Environment +304129,Environment,Environment +304110,Environment,Environment +537631,Economic Development,Economic Development +537616,Economic Development,Economic Development +304230,Economic Development,Economic Development +382327,Economic Development,Economic Development +382325,Economic Development,Economic Development +381488,Economic Development,Economic Development +374576,Economic Development,Economic Development +320531,Economic Development,Economic Development +449753,Economic Development,Economic Development +449747,Economic Development,Economic Development +441109,Economic Development,Economic Development +423212,Economic Development,Economic Development +406794,Economic Development,Economic Development +391312,Economic Development,Economic Development +449747,Regional Development,Regional Development +441109,Regional Development,Regional Development +320531,Regional Development,Regional Development +304230,Regional Development,Regional Development +406794,Regional Development,Regional Development +374576,Regional Development,Regional Development +537631,Regional Development,Regional Development +537616,Regional Development,Regional Development +449961,Internal Trade,Commerce intérieur +410993,International Trade,Commerce international +388362,International Trade,Commerce international +386399,Economic Development,Développement économique +386397,Economic Development,Développement économique +451189,Economic Development,Développement économique +449961,Economic Development,Développement économique +444143,Economic Development,Développement économique +386399,Energy,Énergie +386397,Energy,Énergie +388362,Taxation and Finance,Impôts et finances +386397,Taxation and Finance,Impôts et finances +410999,Taxation and Finance,Impôts et finances +451184,Infrastructure,Infrastructure +449961,Infrastructure,Infrastructure +388362,Infrastructure,Infrastructure +386399,Infrastructure,Infrastructure +407674,Labour,Travail +404582,Labour,Travail +388362,Labour,Travail +313949,Labour,Travail +454198,Labour,Travail +453567,Labour,Travail +311313,Mining,Mining +465290,Environment,Environment +465288,Environment,Environment +526736,Environment,Environment +524341,Environment,Environment +524340,Environment,Environment +524338,Environment,Environment +524337,Environment,Environment +426876,Research and Development,Research and Development +426875,Research and Development,Research and Development +317437,Environment,Environment +316111,Industry,Industry +309261,Mining,Mining +309252,Mining,Mining +351929,Mining,Mining +351928,Mining,Mining +351924,Mining,Mining +351923,Mining,Mining +348890,Mining,Mining +348889,Mining,Mining +326572,Mining,Mining +317972,Mining,Mining +317970,Mining,Mining +317969,Mining,Mining +309263,Mining,Mining +325789,Infrastructure,Infrastructure +317255,Infrastructure,Infrastructure +329569,Infrastructure,Infrastructure +333690,Health,Health +333685,Health,Health +324346,Health,Health +324344,Health,Health +324342,Health,Health +324005,Health,Health +380069,Health,Health +361249,Health,Health +335676,Health,Health +324141,Health,Health +323953,Health,Health +324432,Health,Health +324331,Health,Health +324330,Health,Health +324329,Health,Health +324077,Health,Health +324076,Health,Health +372671,Health,Health +361250,Health,Health +349205,Health,Health +324183,Health,Health +324133,Health,Health +324185,Health,Health +513410,Pensions,Pensions +306511,Taxation and Finance,Taxation and Finance +310281,Employment and Training,Employment and Training +310279,Employment and Training,Employment and Training +310276,Environment,Environment +310273,Mining,Mining +310270,Mining,Mining +327510,Mining,Mining +325979,Mining,Mining +310285,Mining,Mining +310284,Mining,Mining +310283,Mining,Mining +310282,Mining,Mining +310281,Mining,Mining +310279,Mining,Mining +310276,Mining,Mining +310275,Mining,Mining +306491,Taxation and Finance,Taxation and Finance +332429,Consumer Issues,Consumer Issues +330788,Consumer Issues,Consumer Issues +330788,Industry,Industry +330724,Industry,Industry +332430,Industry,Industry +373612,Transportation,Transportation +373611,Transportation,Transportation +373608,Transportation,Transportation +371337,Transportation,Transportation +371334,Transportation,Transportation +371332,Transportation,Transportation +371328,Transportation,Transportation +357338,Transportation,Transportation +357337,Transportation,Transportation +357336,Transportation,Transportation +351840,Transportation,Transportation +350384,Transportation,Transportation +350383,Transportation,Transportation +350381,Transportation,Transportation +350380,Transportation,Transportation +348464,Transportation,Transportation +348463,Transportation,Transportation +348462,Transportation,Transportation +348461,Transportation,Transportation +348460,Transportation,Transportation +348459,Transportation,Transportation +348458,Transportation,Transportation +348457,Transportation,Transportation +340256,Transportation,Transportation +340254,Transportation,Transportation +335271,Transportation,Transportation +334131,Transportation,Transportation +329091,Transportation,Transportation +329090,Transportation,Transportation +329089,Transportation,Transportation +315069,Transportation,Transportation +305889,Transportation,Transportation +394760,Transportation,Transportation +394759,Transportation,Transportation +394758,Transportation,Transportation +392036,Transportation,Transportation +391977,Transportation,Transportation +391976,Transportation,Transportation +391975,Transportation,Transportation +391974,Transportation,Transportation +391973,Transportation,Transportation +305969,International Development,International Development +464508,International Development,International Development +398433,International Development,International Development +379092,International Development,International Development +319112,International Development,International Development +319111,International Development,International Development +306494,Taxation and Finance,Taxation and Finance +305989,Research and Development,Research and Development +387247,Research and Development,Research and Development +315835,Research and Development,Research and Development +348337,Economic Development,Economic Development +306049,Economic Development,Economic Development +386454,Economic Development,Economic Development +330806,Tourism,Tourism +328969,Tourism,Tourism +314730,Transportation,Transportation +313769,Transportation,Transportation +334469,Transportation,Transportation +330806,Transportation,Transportation +328969,Transportation,Transportation +326448,Transportation,Transportation +321010,Transportation,Transportation +306489,Taxation and Finance,Taxation and Finance +319813,Research and Development,Research and Development +319811,Research and Development,Research and Development +319817,Research and Development,Research and Development +402909,Housing,Housing +402907,Housing,Housing +306636,Housing,Housing +325194,Housing,Housing +325189,Housing,Housing +325188,Housing,Housing +325187,Housing,Housing +325186,Housing,Housing +325185,Housing,Housing +453798,Housing,Housing +370960,Economic Development,Economic Development +361156,Economic Development,Economic Development +349257,Economic Development,Economic Development +308537,Economic Development,Economic Development +308536,Economic Development,Economic Development +376899,Economic Development,Economic Development +374010,Economic Development,Economic Development +374008,Economic Development,Economic Development +371008,Economic Development,Economic Development +371000,Economic Development,Economic Development +370999,Economic Development,Economic Development +370982,Economic Development,Economic Development +442700,Employment and Training,Employment and Training +429429,Employment and Training,Employment and Training +374011,Employment and Training,Employment and Training +374009,Employment and Training,Employment and Training +370958,Employment and Training,Employment and Training +362203,Employment and Training,Employment and Training +362202,Employment and Training,Employment and Training +361156,Employment and Training,Employment and Training +308537,Employment and Training,Employment and Training +308536,Employment and Training,Employment and Training +479328,Employment and Training,Employment and Training +479326,Employment and Training,Employment and Training +370964,Immigration,Immigration +370961,Immigration,Immigration +368622,Immigration,Immigration +357724,Immigration,Immigration +357723,Immigration,Immigration +357716,Immigration,Immigration +356464,Immigration,Immigration +356462,Immigration,Immigration +351370,Immigration,Immigration +351368,Immigration,Immigration +308537,Immigration,Immigration +308536,Immigration,Immigration +409891,Immigration,Immigration +403951,Immigration,Immigration +306749,Research and Development,Research and Development +308829,Energy,Energy +308489,Energy,Energy +308829,Environment,Environment +308489,Environment,Environment +468590,Forestry,Forestry +468585,Forestry,Forestry +353418,Forestry,Forestry +353415,Forestry,Forestry +353411,Forestry,Forestry +323250,Forestry,Forestry +323212,Forestry,Forestry +323210,Forestry,Forestry +323209,Forestry,Forestry +322210,Forestry,Forestry +312198,Forestry,Forestry +453035,Forestry,Forestry +453034,Forestry,Forestry +440653,Forestry,Forestry +440652,Forestry,Forestry +427600,Forestry,Forestry +427598,Forestry,Forestry +409441,Forestry,Forestry +401560,Forestry,Forestry +401559,Forestry,Forestry +377654,Forestry,Forestry +377653,Forestry,Forestry +377651,Forestry,Forestry +364564,Forestry,Forestry +364563,Forestry,Forestry +359402,Forestry,Forestry +352680,Employment and Training,Employment and Training +337529,Employment and Training,Employment and Training +306889,Employment and Training,Employment and Training +398647,Employment and Training,Employment and Training +367557,Employment and Training,Employment and Training +367556,Employment and Training,Employment and Training +402556,Industry,Industry +402553,Industry,Industry +349825,Industry,Industry +402229,Industry,Industry +402228,Industry,Industry +400081,Industry,Industry +399751,Industry,Industry +399739,Industry,Industry +399676,Industry,Industry +399296,Industry,Industry +398798,Industry,Industry +398796,Industry,Industry +397367,Industry,Industry +397345,Industry,Industry +397344,Industry,Industry +397275,Industry,Industry +397263,Industry,Industry +397262,Industry,Industry +396095,Industry,Industry +395622,Industry,Industry +395232,Industry,Industry +395210,Industry,Industry +394939,Industry,Industry +394883,Industry,Industry +394882,Industry,Industry +394798,Industry,Industry +393943,Industry,Industry +393537,Industry,Industry +393468,Industry,Industry +393365,Industry,Industry +393308,Industry,Industry +393307,Industry,Industry +393306,Industry,Industry +393305,Industry,Industry +393174,Industry,Industry +393173,Industry,Industry +393034,Industry,Industry +390256,Industry,Industry +390252,Industry,Industry +389466,Industry,Industry +389465,Industry,Industry +389231,Industry,Industry +389210,Industry,Industry +388790,Industry,Industry +388682,Industry,Industry +386690,Industry,Industry +386484,Industry,Industry +386483,Industry,Industry +386349,Industry,Industry +386348,Industry,Industry +386314,Industry,Industry +386228,Industry,Industry +386203,Industry,Industry +385931,Industry,Industry +385930,Industry,Industry +385880,Industry,Industry +384704,Industry,Industry +384557,Industry,Industry +384491,Industry,Industry +384454,Industry,Industry +384453,Industry,Industry +384452,Industry,Industry +384299,Industry,Industry +384257,Industry,Industry +382771,Industry,Industry +382447,Industry,Industry +379147,Industry,Industry +377855,Industry,Industry +377759,Industry,Industry +377758,Industry,Industry +377544,Industry,Industry +377543,Industry,Industry +377287,Industry,Industry +375335,Industry,Industry +375107,Industry,Industry +373386,Industry,Industry +373238,Industry,Industry +369643,Industry,Industry +462153,Industry,Industry +446577,Industry,Industry +417257,Industry,Industry +417196,Industry,Industry +415490,Industry,Industry +415276,Industry,Industry +415266,Industry,Industry +415113,Industry,Industry +414746,Industry,Industry +414745,Industry,Industry +414581,Industry,Industry +414328,Industry,Industry +414327,Industry,Industry +414056,Industry,Industry +414054,Industry,Industry +411801,Industry,Industry +411800,Industry,Industry +411748,Industry,Industry +411568,Industry,Industry +411532,Industry,Industry +411531,Industry,Industry +411529,Industry,Industry +411412,Industry,Industry +411169,Industry,Industry +411168,Industry,Industry +411098,Industry,Industry +411097,Industry,Industry +411096,Industry,Industry +411095,Industry,Industry +410849,Industry,Industry +410794,Industry,Industry +410770,Industry,Industry +410769,Industry,Industry +410439,Industry,Industry +408933,Industry,Industry +370120,International Trade,International Trade +370118,International Trade,International Trade +334329,International Trade,International Trade +320269,International Trade,International Trade +384491,International Trade,International Trade +377855,International Trade,International Trade +427600,Environment,Environment +427598,Environment,Environment +409441,Environment,Environment +401560,Environment,Environment +401559,Environment,Environment +377654,Environment,Environment +377653,Environment,Environment +377651,Environment,Environment +364564,Environment,Environment +364563,Environment,Environment +363082,Environment,Environment +359402,Environment,Environment +353418,Environment,Environment +353415,Environment,Environment +353411,Environment,Environment +343041,Environment,Environment +334855,Environment,Environment +334854,Environment,Environment +486305,Environment,Environment +468590,Environment,Environment +468585,Environment,Environment +453035,Environment,Environment +453034,Environment,Environment +468590,Fisheries,Fisheries +468585,Fisheries,Fisheries +409441,Fisheries,Fisheries +401559,Fisheries,Fisheries +453034,Fisheries,Fisheries +440653,Fisheries,Fisheries +427600,Fisheries,Fisheries +446033,International Development,International Development +444790,International Development,International Development +326234,International Development,International Development +326233,International Development,International Development +326230,International Development,International Development +326229,International Development,International Development +320034,International Development,International Development +387065,International Development,International Development +387063,International Development,International Development +387061,International Development,International Development +387059,International Development,International Development +387058,International Development,International Development +384825,International Development,International Development +383041,International Development,International Development +377673,International Development,International Development +377672,International Development,International Development +377671,International Development,International Development +376052,International Development,International Development +376043,International Development,International Development +371549,International Development,International Development +354304,International Development,International Development +354303,International Development,International Development +340691,International Development,International Development +336137,International Development,International Development +328991,International Development,International Development +326769,International Development,International Development +438148,International Development,International Development +437631,International Development,International Development +437628,International Development,International Development +437627,International Development,International Development +427749,International Development,International Development +427747,International Development,International Development +427059,International Development,International Development +427058,International Development,International Development +427057,International Development,International Development +427056,International Development,International Development +426971,International Development,International Development +426969,International Development,International Development +426967,International Development,International Development +423027,International Development,International Development +423025,International Development,International Development +422968,International Development,International Development +419748,International Development,International Development +414623,International Development,International Development +414622,International Development,International Development +414621,International Development,International Development +414620,International Development,International Development +410395,International Development,International Development +404359,International Development,International Development +401616,International Development,International Development +401614,International Development,International Development +401613,International Development,International Development +394669,International Development,International Development +394668,International Development,International Development +394667,International Development,International Development +394665,International Development,International Development +394662,International Development,International Development +393589,International Development,International Development +393587,International Development,International Development +461236,International Development,International Development +460507,International Development,International Development +459193,International Development,International Development +459191,International Development,International Development +459190,International Development,International Development +457846,International Development,International Development +454817,International Development,International Development +454810,International Development,International Development +454807,International Development,International Development +453061,International Development,International Development +453059,International Development,International Development +453058,International Development,International Development +437628,Justice and Law Enforcement,Justice and Law Enforcement +437627,Justice and Law Enforcement,Justice and Law Enforcement +336137,Justice and Law Enforcement,Justice and Law Enforcement +328991,Justice and Law Enforcement,Justice and Law Enforcement +326769,Justice and Law Enforcement,Justice and Law Enforcement +326234,Justice and Law Enforcement,Justice and Law Enforcement +326233,Justice and Law Enforcement,Justice and Law Enforcement +326230,Justice and Law Enforcement,Justice and Law Enforcement +319469,Justice and Law Enforcement,Justice and Law Enforcement +319450,Justice and Law Enforcement,Justice and Law Enforcement +319449,Justice and Law Enforcement,Justice and Law Enforcement +427749,Justice and Law Enforcement,Justice and Law Enforcement +427747,Justice and Law Enforcement,Justice and Law Enforcement +427059,Justice and Law Enforcement,Justice and Law Enforcement +427058,Justice and Law Enforcement,Justice and Law Enforcement +427057,Justice and Law Enforcement,Justice and Law Enforcement +427056,Justice and Law Enforcement,Justice and Law Enforcement +426971,Justice and Law Enforcement,Justice and Law Enforcement +426969,Justice and Law Enforcement,Justice and Law Enforcement +426967,Justice and Law Enforcement,Justice and Law Enforcement +423026,Justice and Law Enforcement,Justice and Law Enforcement +423024,Justice and Law Enforcement,Justice and Law Enforcement +422968,Justice and Law Enforcement,Justice and Law Enforcement +414623,Justice and Law Enforcement,Justice and Law Enforcement +414622,Justice and Law Enforcement,Justice and Law Enforcement +414621,Justice and Law Enforcement,Justice and Law Enforcement +414620,Justice and Law Enforcement,Justice and Law Enforcement +411867,Justice and Law Enforcement,Justice and Law Enforcement +404359,Justice and Law Enforcement,Justice and Law Enforcement +401616,Justice and Law Enforcement,Justice and Law Enforcement +401614,Justice and Law Enforcement,Justice and Law Enforcement +401613,Justice and Law Enforcement,Justice and Law Enforcement +394669,Justice and Law Enforcement,Justice and Law Enforcement +394668,Justice and Law Enforcement,Justice and Law Enforcement +394667,Justice and Law Enforcement,Justice and Law Enforcement +394665,Justice and Law Enforcement,Justice and Law Enforcement +394662,Justice and Law Enforcement,Justice and Law Enforcement +393589,Justice and Law Enforcement,Justice and Law Enforcement +393587,Justice and Law Enforcement,Justice and Law Enforcement +387065,Justice and Law Enforcement,Justice and Law Enforcement +387063,Justice and Law Enforcement,Justice and Law Enforcement +387061,Justice and Law Enforcement,Justice and Law Enforcement +387059,Justice and Law Enforcement,Justice and Law Enforcement +387058,Justice and Law Enforcement,Justice and Law Enforcement +384825,Justice and Law Enforcement,Justice and Law Enforcement +383041,Justice and Law Enforcement,Justice and Law Enforcement +377673,Justice and Law Enforcement,Justice and Law Enforcement +377672,Justice and Law Enforcement,Justice and Law Enforcement +377671,Justice and Law Enforcement,Justice and Law Enforcement +376052,Justice and Law Enforcement,Justice and Law Enforcement +376043,Justice and Law Enforcement,Justice and Law Enforcement +376041,Justice and Law Enforcement,Justice and Law Enforcement +357665,Justice and Law Enforcement,Justice and Law Enforcement +354304,Justice and Law Enforcement,Justice and Law Enforcement +354302,Justice and Law Enforcement,Justice and Law Enforcement +340691,Justice and Law Enforcement,Justice and Law Enforcement +340690,Justice and Law Enforcement,Justice and Law Enforcement +461236,Justice and Law Enforcement,Justice and Law Enforcement +460507,Justice and Law Enforcement,Justice and Law Enforcement +459193,Justice and Law Enforcement,Justice and Law Enforcement +459191,Justice and Law Enforcement,Justice and Law Enforcement +459190,Justice and Law Enforcement,Justice and Law Enforcement +457846,Justice and Law Enforcement,Justice and Law Enforcement +454817,Justice and Law Enforcement,Justice and Law Enforcement +454810,Justice and Law Enforcement,Justice and Law Enforcement +454807,Justice and Law Enforcement,Justice and Law Enforcement +453061,Justice and Law Enforcement,Justice and Law Enforcement +453059,Justice and Law Enforcement,Justice and Law Enforcement +453058,Justice and Law Enforcement,Justice and Law Enforcement +448319,Justice and Law Enforcement,Justice and Law Enforcement +446033,Justice and Law Enforcement,Justice and Law Enforcement +444790,Justice and Law Enforcement,Justice and Law Enforcement +438148,Justice and Law Enforcement,Justice and Law Enforcement +338496,Budget,Budget +338495,Budget,Budget +342270,Budget,Budget +383043,Health,Health +373367,Health,Health +307696,Environment,Environment +307693,Environment,Environment +307729,Environment,Environment +307710,Energy,Energy +307693,Energy,Energy +307743,International Trade,International Trade +442220,International Development,International Development +438419,International Development,International Development +335068,International Development,International Development +335065,International Development,International Development +335064,International Development,International Development +335063,International Development,International Development +335062,International Development,International Development +335045,International Development,International Development +335043,International Development,International Development +335042,International Development,International Development +324736,International Development,International Development +322155,International Development,International Development +318925,International Development,International Development +311698,International Development,International Development +311697,International Development,International Development +311696,International Development,International Development +438416,International Development,International Development +432272,International Development,International Development +430735,International Development,International Development +428572,International Development,International Development +428570,International Development,International Development +415849,International Development,International Development +406604,International Development,International Development +398839,International Development,International Development +397515,International Development,International Development +392508,International Development,International Development +391126,International Development,International Development +387901,International Development,International Development +385196,International Development,International Development +380797,International Development,International Development +380794,International Development,International Development +357049,International Development,International Development +357048,International Development,International Development +357047,International Development,International Development +357046,International Development,International Development +524719,International Development,International Development +517028,International Development,International Development +511986,International Development,International Development +501680,International Development,International Development +498909,International Development,International Development +492892,International Development,International Development +464684,International Development,International Development +461025,Agriculture,Agriculture +453715,Agriculture,Agriculture +331809,Agriculture,Agriculture +331225,Agriculture,Agriculture +327728,Agriculture,Agriculture +386385,Agriculture,Agriculture +385945,Agriculture,Agriculture +381733,Agriculture,Agriculture +381729,Agriculture,Agriculture +375207,Agriculture,Agriculture +371599,Agriculture,Agriculture +371598,Agriculture,Agriculture +360626,Agriculture,Agriculture +439801,Agriculture,Agriculture +438882,Agriculture,Agriculture +438880,Agriculture,Agriculture +438879,Agriculture,Agriculture +438878,Agriculture,Agriculture +414912,Agriculture,Agriculture +414911,Agriculture,Agriculture +414910,Agriculture,Agriculture +414909,Agriculture,Agriculture +414908,Agriculture,Agriculture +414904,Agriculture,Agriculture +414903,Agriculture,Agriculture +414902,Agriculture,Agriculture +414901,Agriculture,Agriculture +411513,Agriculture,Agriculture +404288,Agriculture,Agriculture +399989,Agriculture,Agriculture +399988,Agriculture,Agriculture +399530,Agriculture,Agriculture +395842,Agriculture,Agriculture +395754,Agriculture,Agriculture +523286,Agriculture,Agriculture +523285,Agriculture,Agriculture +523283,Agriculture,Agriculture +523279,Agriculture,Agriculture +523276,Agriculture,Agriculture +509318,Agriculture,Agriculture +509317,Agriculture,Agriculture +509316,Agriculture,Agriculture +509315,Agriculture,Agriculture +506962,Agriculture,Agriculture +506961,Agriculture,Agriculture +500155,Agriculture,Agriculture +500152,Agriculture,Agriculture +494750,Agriculture,Agriculture +386385,Environment,Environment +438879,Research and Development,Research and Development +438878,Research and Development,Research and Development +375207,Research and Development,Research and Development +371599,Research and Development,Research and Development +371598,Research and Development,Research and Development +360626,Research and Development,Research and Development +331809,Research and Development,Research and Development +414912,Research and Development,Research and Development +414911,Research and Development,Research and Development +414910,Research and Development,Research and Development +414909,Research and Development,Research and Development +414908,Research and Development,Research and Development +414904,Research and Development,Research and Development +414903,Research and Development,Research and Development +414902,Research and Development,Research and Development +414901,Research and Development,Research and Development +411513,Research and Development,Research and Development +404288,Research and Development,Research and Development +399989,Research and Development,Research and Development +399988,Research and Development,Research and Development +399530,Research and Development,Research and Development +395842,Research and Development,Research and Development +395754,Research and Development,Research and Development +381733,Research and Development,Research and Development +381729,Research and Development,Research and Development +523286,Research and Development,Research and Development +523285,Research and Development,Research and Development +523283,Research and Development,Research and Development +523279,Research and Development,Research and Development +523276,Research and Development,Research and Development +509318,Research and Development,Research and Development +509317,Research and Development,Research and Development +509316,Research and Development,Research and Development +509315,Research and Development,Research and Development +506962,Research and Development,Research and Development +506961,Research and Development,Research and Development +500152,Research and Development,Research and Development +494750,Research and Development,Research and Development +461025,Research and Development,Research and Development +453715,Research and Development,Research and Development +439801,Research and Development,Research and Development +438882,Research and Development,Research and Development +475012,Economic Development,Développement économique +459059,Economic Development,Développement économique +459046,Economic Development,Développement économique +373280,Economic Development,Développement économique +371843,Economic Development,Développement économique +492027,Economic Development,Développement économique +488646,Economic Development,Développement économique +485460,Economic Development,Développement économique +485458,Tourism,Tourisme +475012,Tourism,Tourisme +310009,Tourism,Tourisme +309996,Tourism,Tourisme +459059,Tourism,Tourisme +459046,Tourism,Tourisme +373280,Tourism,Tourisme +371843,Tourism,Tourisme +371753,Tourism,Tourisme +371732,Tourism,Tourisme +492027,Tourism,Tourisme +488646,Tourism,Tourisme +318089,Labour,Labour +308810,Labour,Labour +313248,Industry,Industry +313248,Financial Institutions,Financial Institutions +318840,Taxation and Finance,Taxation and Finance +318839,Taxation and Finance,Taxation and Finance +324303,Taxation and Finance,Taxation and Finance +318844,Taxation and Finance,Taxation and Finance +318843,Taxation and Finance,Taxation and Finance +318842,Taxation and Finance,Taxation and Finance +318867,Taxation and Finance,Taxation and Finance +318866,Taxation and Finance,Taxation and Finance +324307,Taxation and Finance,Taxation and Finance +309633,International Trade,International Trade +456568,International Trade,International Trade +315110,Government Procurement,Government Procurement +315109,Government Procurement,Government Procurement +315113,Government Procurement,Government Procurement +315112,Government Procurement,Government Procurement +309681,Justice and Law Enforcement,Justice and Law Enforcement +309673,Justice and Law Enforcement,Justice and Law Enforcement +472606,Research and Development,Research and Development +472605,Research and Development,Research and Development +374171,Research and Development,Research and Development +374170,Research and Development,Research and Development +374169,Research and Development,Research and Development +374168,Research and Development,Research and Development +374167,Research and Development,Research and Development +374166,Research and Development,Research and Development +374165,Research and Development,Research and Development +339142,Research and Development,Research and Development +339140,Research and Development,Research and Development +339138,Research and Development,Research and Development +339137,Research and Development,Research and Development +339136,Research and Development,Research and Development +309822,Research and Development,Research and Development +309817,Research and Development,Research and Development +309816,Research and Development,Research and Development +309810,Research and Development,Research and Development +309808,Research and Development,Research and Development +309806,Research and Development,Research and Development +309803,Research and Development,Research and Development +469781,Research and Development,Research and Development +469778,Research and Development,Research and Development +469777,Research and Development,Research and Development +469776,Research and Development,Research and Development +469775,Research and Development,Research and Development +469774,Research and Development,Research and Development +469773,Research and Development,Research and Development +469772,Research and Development,Research and Development +469771,Research and Development,Research and Development +469770,Research and Development,Research and Development +469769,Research and Development,Research and Development +469768,Research and Development,Research and Development +469765,Research and Development,Research and Development +469764,Research and Development,Research and Development +469763,Research and Development,Research and Development +469761,Research and Development,Research and Development +469748,Research and Development,Research and Development +469744,Research and Development,Research and Development +469739,Research and Development,Research and Development +469738,Research and Development,Research and Development +469732,Research and Development,Research and Development +469731,Research and Development,Research and Development +469730,Research and Development,Research and Development +469729,Research and Development,Research and Development +469728,Research and Development,Research and Development +469725,Research and Development,Research and Development +469723,Research and Development,Research and Development +469722,Research and Development,Research and Development +469209,Research and Development,Research and Development +467226,Research and Development,Research and Development +467225,Research and Development,Research and Development +467224,Research and Development,Research and Development +467221,Research and Development,Research and Development +467220,Research and Development,Research and Development +467219,Research and Development,Research and Development +467217,Research and Development,Research and Development +467214,Research and Development,Research and Development +467201,Research and Development,Research and Development +467199,Research and Development,Research and Development +463833,Research and Development,Research and Development +463831,Research and Development,Research and Development +309669,Industry,Industry +323162,Energy,Energy +329055,International Relations,International Relations +314009,Agriculture,Agriculture +322789,International Trade,International Trade +314553,Transportation,Transportation +300249,Health,Health +306489,Agriculture,Agriculture +336070,Financial Institutions,Financial Institutions +456527,Economic Development,Economic Development +299990,Mining,Mining +299990,Regional Development,Regional Development +323089,Health,Health +368611,Environment,Environment +365722,Industry,Industry +453924,Transportation,Transportation +365083,Budget,Budget +393591,Taxation and Finance,Taxation and Finance +521297,Regional Development,Regional Development +300970,Research and Development,Research and Development +300973,Research and Development,Research and Development +300975,Research and Development,Research and Development +300979,Research and Development,Research and Development +331791,Budget,Budget +310330,Labour,Labour +343809,Small Business,Small Business +351820,Economic Development,Economic Development +311080,Government Procurement,Government Procurement +315709,Health,Health +301761,Government Procurement,Government Procurement +319032,Government Procurement,Government Procurement +304129,Mining,Mining +432156,Agriculture,Agriculture +466543,Health,Health +301630,Economic Development,Economic Development +301630,Regional Development,Regional Development +301762,Taxation and Finance,Taxation and Finance +442619,Transportation,Transportation +420450,Transportation,Transportation +369642,International Trade,International Trade +301958,Security,Security +301959,Fisheries,Fisheries +525689,Economic Development,Economic Development +486034,Employment and Training,Employment and Training +502284,Budget,Budget +303595,Taxation and Finance,Taxation and Finance +312191,Agriculture,Agriculture +329598,International Trade,International Trade +329598,Taxation and Finance,Taxation and Finance +309826,Security,Security +542084,International Relations,International Relations +340452,Employment and Training,Employment and Training +416020,Health,Health +302690,Mining,Mining +302690,Education,Education +303029,Research and Development,Research and Development +417665,Budget,Budget +355505,Budget,Budget +303627,International Development,International Development +303636,Justice and Law Enforcement,Justice and Law Enforcement +310374,Economic Development,Economic Development +342119,Employment and Training,Employment and Training +456385,Budget,Budget +445023,Research and Development,Research and Development +304109,Environment,Environment +304110,Economic Development,Economic Development +304129,Economic Development,Economic Development +542233,Economic Development,Economic Development +449753,Regional Development,Regional Development +454198,Internal Trade,Commerce intérieur +418817,International Trade,Commerce international +427606,Economic Development,Développement économique +388362,Energy,Énergie +410993,Taxation and Finance,Impôts et finances +386397,Industry,Industrie +451189,Infrastructure,Infrastructure +386397,Small Business,Petites entreprises +386399,Research and Development,Recherche et développement +418822,Labour,Travail +311316,Mining,Mining +343203,Agriculture,Agriculture +500195,Environment,Environment +317435,Research and Development,Research and Development +348682,Environment,Environment +316112,Industry,Industry +309262,Mining,Mining +316115,Industry,Industry +399998,International Trade,International Trade +317255,Environment,Environment +328169,Infrastructure,Infrastructure +335675,Health,Health +324144,Health,Health +333399,Health,Health +324334,Health,Health +324184,Health,Health +517773,Pensions,Pensions +337234,Taxation and Finance,Taxation and Finance +305790,Justice and Law Enforcement,Justice and Law Enforcement +305790,Municipalities,Municipalities +310282,Employment and Training,Employment and Training +310279,Environment,Environment +327510,Infrastructure,Infrastructure +310279,International Development,International Development +310281,Labour,Labour +310274,Mining,Mining +310285,Transportation,Transportation +306509,Taxation and Finance,Taxation and Finance +337235,Taxation and Finance,Taxation and Finance +332430,Consumer Issues,Consumer Issues +332429,Industry,Industry +391972,Transportation,Transportation +319108,International Development,International Development +337230,Taxation and Finance,Taxation and Finance +315834,Research and Development,Research and Development +370515,Economic Development,Economic Development +306049,Tourism,Tourism +306109,International Trade,International Trade +306490,Taxation and Finance,Taxation and Finance +306231,Government Procurement,Government Procurement +320874,Infrastructure,Infrastructure +334469,Tourism,Tourism +320874,Transportation,Transportation +337232,Taxation and Finance,Taxation and Finance +319815,Research and Development,Research and Development +306452,Justice and Law Enforcement,Justice and Law Enforcement +402910,Housing,Housing +370961,Economic Development,Economic Development +476264,Employment and Training,Employment and Training +371000,Immigration,Immigration +306769,Research and Development,Research and Development +308849,Energy,Energy +308849,Environment,Environment +308489,Regional Development,Regional Development +486307,Forestry,Forestry +367554,Employment and Training,Employment and Training +404565,Industry,Industry +376024,International Trade,International Trade +440653,Environment,Environment +427598,Fisheries,Fisheries +448319,International Development,International Development +437631,Justice and Law Enforcement,Justice and Law Enforcement +342268,Budget,Budget +376313,Industry,Industry +322029,Intellectual Property,Intellectual Property +384262,Health,Health +307710,Environment,Environment +307729,Energy,Energy +329671,International Trade,International Trade +329671,International Relations,International Relations +443573,International Development,International Development +307951,Environment,Environment +309989,Taxation and Finance,Taxation and Finance +470566,Agriculture,Agriculture +404288,Environment,Environment +438880,Research and Development,Research and Development +485458,Economic Development,Développement économique +485460,Tourism,Tourisme +350446,Labour,Labour +312919,Defence,Defence +312919,Economic Development,Economic Development +312919,Government Procurement,Government Procurement +312919,Industry,Industry +312919,Regional Development,Regional Development +312919,Security,Security +319031,Industry,Industry +319031,Financial Institutions,Financial Institutions +318841,Taxation and Finance,Taxation and Finance +318939,Taxation and Finance,Taxation and Finance +309450,Budget,Budget +317474,Transportation,Transportation +401679,International Trade,International Trade +315111,Government Procurement,Government Procurement +329590,Justice and Law Enforcement,Justice and Law Enforcement +309689,Municipalities,Municipalities +472609,Research and Development,Research and Development +310124,Industry,Industry +326824,Small Business,Small Business +326824,Transportation,Transportation +310122,Industry,Industry +309890,International Trade,International Trade +309890,International Development,International Development +310012,International Trade,International Trade +311631,Industry,Industry +310015,Fisheries,Fisheries +310027,Industry,Industry +381304,International Trade,International Trade +318663,Intellectual Property,Intellectual Property +310120,Industry,Industry +311757,Climate,Climate +311758,Energy,Energy +317951,Environment,Environment +310299,Privacy and Access to Information,Privacy and Access to Information +310411,Education,Education +310415,Housing,Housing +310400,Housing,Housing +310408,Education,Education +482605,Transportation,Transportation +310466,Industry,Industry +310474,Industry,Industry +310649,Employment and Training,Employment and Training +310694,Intellectual Property,Intellectual Property +445579,International Trade,International Trade +310871,Environment,Environment +310870,Fisheries,Fisheries +463829,Research and Development,Research and Development +463828,Research and Development,Research and Development +463820,Research and Development,Research and Development +463819,Research and Development,Research and Development +463818,Research and Development,Research and Development +463814,Research and Development,Research and Development +463812,Research and Development,Research and Development +463809,Research and Development,Research and Development +463807,Research and Development,Research and Development +462368,Research and Development,Research and Development +461438,Research and Development,Research and Development +461437,Research and Development,Research and Development +461436,Research and Development,Research and Development +461435,Research and Development,Research and Development +461434,Research and Development,Research and Development +461433,Research and Development,Research and Development +461432,Research and Development,Research and Development +461431,Research and Development,Research and Development +461430,Research and Development,Research and Development +461429,Research and Development,Research and Development +460579,Research and Development,Research and Development +460578,Research and Development,Research and Development +460577,Research and Development,Research and Development +460576,Research and Development,Research and Development +460575,Research and Development,Research and Development +460037,Research and Development,Research and Development +460035,Research and Development,Research and Development +459662,Research and Development,Research and Development +459661,Research and Development,Research and Development +459660,Research and Development,Research and Development +459659,Research and Development,Research and Development +459658,Research and Development,Research and Development +459657,Research and Development,Research and Development +459656,Research and Development,Research and Development +459655,Research and Development,Research and Development +457327,Research and Development,Research and Development +457326,Research and Development,Research and Development +455891,Research and Development,Research and Development +455881,Research and Development,Research and Development +455875,Research and Development,Research and Development +455872,Research and Development,Research and Development +455869,Research and Development,Research and Development +455867,Research and Development,Research and Development +451754,Research and Development,Research and Development +451753,Research and Development,Research and Development +451752,Research and Development,Research and Development +451749,Research and Development,Research and Development +451747,Research and Development,Research and Development +449723,Research and Development,Research and Development +448211,Research and Development,Research and Development +448210,Research and Development,Research and Development +448209,Research and Development,Research and Development +448208,Research and Development,Research and Development +448207,Research and Development,Research and Development +448206,Research and Development,Research and Development +448205,Research and Development,Research and Development +448204,Research and Development,Research and Development +448200,Research and Development,Research and Development +448198,Research and Development,Research and Development +448197,Research and Development,Research and Development +448195,Research and Development,Research and Development +448194,Research and Development,Research and Development +448193,Research and Development,Research and Development +448192,Research and Development,Research and Development +448191,Research and Development,Research and Development +448189,Research and Development,Research and Development +448184,Research and Development,Research and Development +448183,Research and Development,Research and Development +448181,Research and Development,Research and Development +448180,Research and Development,Research and Development +448178,Research and Development,Research and Development +445278,Research and Development,Research and Development +445276,Research and Development,Research and Development +441906,Research and Development,Research and Development +441904,Research and Development,Research and Development +441902,Research and Development,Research and Development +441900,Research and Development,Research and Development +441896,Research and Development,Research and Development +439143,Research and Development,Research and Development +439138,Research and Development,Research and Development +438848,Research and Development,Research and Development +438845,Research and Development,Research and Development +433567,Research and Development,Research and Development +433565,Research and Development,Research and Development +432074,Research and Development,Research and Development +431330,Research and Development,Research and Development +431318,Research and Development,Research and Development +428356,Research and Development,Research and Development +428350,Research and Development,Research and Development +428347,Research and Development,Research and Development +428340,Research and Development,Research and Development +426041,Research and Development,Research and Development +426037,Research and Development,Research and Development +426023,Research and Development,Research and Development +426019,Research and Development,Research and Development +424132,Research and Development,Research and Development +420139,Research and Development,Research and Development +420129,Research and Development,Research and Development +420124,Research and Development,Research and Development +420116,Research and Development,Research and Development +420112,Research and Development,Research and Development +420111,Research and Development,Research and Development +420110,Research and Development,Research and Development +420109,Research and Development,Research and Development +420105,Research and Development,Research and Development +420102,Research and Development,Research and Development +420097,Research and Development,Research and Development +420096,Research and Development,Research and Development +420092,Research and Development,Research and Development +420090,Research and Development,Research and Development +420088,Research and Development,Research and Development +420086,Research and Development,Research and Development +420078,Research and Development,Research and Development +409265,Research and Development,Research and Development +409264,Research and Development,Research and Development +409263,Research and Development,Research and Development +409262,Research and Development,Research and Development +409261,Research and Development,Research and Development +409260,Research and Development,Research and Development +409259,Research and Development,Research and Development +409257,Research and Development,Research and Development +396927,Research and Development,Research and Development +396924,Research and Development,Research and Development +542780,Research and Development,Research and Development +542777,Research and Development,Research and Development +542774,Research and Development,Research and Development +542773,Research and Development,Research and Development +542772,Research and Development,Research and Development +539502,Research and Development,Research and Development +539501,Research and Development,Research and Development +539498,Research and Development,Research and Development +539497,Research and Development,Research and Development +537882,Research and Development,Research and Development +536173,Research and Development,Research and Development +535721,Research and Development,Research and Development +535717,Research and Development,Research and Development +535713,Research and Development,Research and Development +535711,Research and Development,Research and Development +532197,Research and Development,Research and Development +532187,Research and Development,Research and Development +532184,Research and Development,Research and Development +532183,Research and Development,Research and Development +529682,Research and Development,Research and Development +529681,Research and Development,Research and Development +529680,Research and Development,Research and Development +529195,Research and Development,Research and Development +529174,Research and Development,Research and Development +529172,Research and Development,Research and Development +529170,Research and Development,Research and Development +525808,Research and Development,Research and Development +518172,Research and Development,Research and Development +518166,Research and Development,Research and Development +518164,Research and Development,Research and Development +518163,Research and Development,Research and Development +518160,Research and Development,Research and Development +518139,Research and Development,Research and Development +515057,Research and Development,Research and Development +515053,Research and Development,Research and Development +514967,Research and Development,Research and Development +514345,Research and Development,Research and Development +514339,Research and Development,Research and Development +513709,Research and Development,Research and Development +513669,Research and Development,Research and Development +512133,Research and Development,Research and Development +512132,Research and Development,Research and Development +511087,Research and Development,Research and Development +509747,Research and Development,Research and Development +506845,Research and Development,Research and Development +506844,Research and Development,Research and Development +506843,Research and Development,Research and Development +506842,Research and Development,Research and Development +506841,Research and Development,Research and Development +506840,Research and Development,Research and Development +506838,Research and Development,Research and Development +503606,Research and Development,Research and Development +503605,Research and Development,Research and Development +503603,Research and Development,Research and Development +503602,Research and Development,Research and Development +501768,Research and Development,Research and Development +501716,Research and Development,Research and Development +500442,Research and Development,Research and Development +500435,Research and Development,Research and Development +500434,Research and Development,Research and Development +500433,Research and Development,Research and Development +500432,Research and Development,Research and Development +500431,Research and Development,Research and Development +500430,Research and Development,Research and Development +500428,Research and Development,Research and Development +500427,Research and Development,Research and Development +497425,Research and Development,Research and Development +497158,Research and Development,Research and Development +497155,Research and Development,Research and Development +497151,Research and Development,Research and Development +497150,Research and Development,Research and Development +497147,Research and Development,Research and Development +494762,Research and Development,Research and Development +494761,Research and Development,Research and Development +494759,Research and Development,Research and Development +492420,Research and Development,Research and Development +492418,Research and Development,Research and Development +492416,Research and Development,Research and Development +492415,Research and Development,Research and Development +492414,Research and Development,Research and Development +492413,Research and Development,Research and Development +489579,Research and Development,Research and Development +489098,Research and Development,Research and Development +489096,Research and Development,Research and Development +489095,Research and Development,Research and Development +489093,Research and Development,Research and Development +489092,Research and Development,Research and Development +486094,Research and Development,Research and Development +486089,Research and Development,Research and Development +483450,Research and Development,Research and Development +482247,Research and Development,Research and Development +476796,Research and Development,Research and Development +476795,Research and Development,Research and Development +474912,Research and Development,Research and Development +472613,Research and Development,Research and Development +472611,Research and Development,Research and Development +472610,Research and Development,Research and Development +347892,Industry,Industry +347891,Industry,Industry +337214,Industry,Industry +336190,Industry,Industry +326824,Industry,Industry +321728,Industry,Industry +318060,Industry,Industry +310128,Industry,Industry +310126,Industry,Industry +321728,Small Business,Small Business +318060,Small Business,Small Business +347892,Small Business,Small Business +347891,Small Business,Small Business +337214,Small Business,Small Business +336190,Small Business,Small Business +321728,Transportation,Transportation +318060,Transportation,Transportation +347892,Transportation,Transportation +347891,Transportation,Transportation +337214,Transportation,Transportation +336190,Transportation,Transportation +309877,Industry,Industry +309874,Industry,Industry +311630,Industry,Industry +311629,Industry,Industry +379185,International Trade,International Trade +374053,International Trade,International Trade +343838,International Trade,International Trade +343835,International Trade,International Trade +343834,International Trade,International Trade +343833,International Trade,International Trade +338261,International Trade,International Trade +338259,International Trade,International Trade +335680,International Trade,International Trade +333343,International Trade,International Trade +324650,International Trade,International Trade +321206,International Trade,International Trade +310092,International Trade,International Trade +505298,International Trade,International Trade +492773,International Trade,International Trade +492770,International Trade,International Trade +471257,International Trade,International Trade +407051,International Trade,International Trade +406057,International Trade,International Trade +401433,International Trade,International Trade +397984,International Trade,International Trade +397974,International Trade,International Trade +389126,International Trade,International Trade +389124,International Trade,International Trade +381310,International Trade,International Trade +315895,Intellectual Property,Intellectual Property +312693,Intellectual Property,Intellectual Property +311756,Climate,Climate +333235,Climate,Climate +317951,Climate,Climate +311758,Climate,Climate +311757,Energy,Energy +311756,Energy,Energy +333235,Energy,Energy +317951,Energy,Energy +311758,Environment,Environment +311757,Environment,Environment +311756,Environment,Environment +333235,Environment,Environment +310397,Education,Education +310375,Education,Education +310413,Education,Education +310406,Housing,Housing +310375,Housing,Housing +394599,Housing,Housing +371794,Housing,Housing +371791,Housing,Housing +371788,Housing,Housing +338797,Housing,Housing +338795,Housing,Housing +338792,Housing,Housing +338788,Housing,Housing +464621,Housing,Housing +432859,Housing,Housing +310399,Housing,Housing +310397,Housing,Housing +310384,Housing,Housing +378807,Housing,Housing +378805,Housing,Housing +371798,Housing,Housing +338794,Housing,Housing +338790,Housing,Housing +338787,Housing,Housing +335544,Housing,Housing +310413,Housing,Housing +310411,Housing,Housing +310408,Housing,Housing +310404,Housing,Housing +310404,Education,Education +310384,Education,Education +371256,Intellectual Property,Intellectual Property +429472,International Trade,International Trade +429469,International Trade,International Trade +378997,International Trade,International Trade +377024,International Trade,International Trade +371262,International Trade,International Trade +371256,International Trade,International Trade +369268,International Trade,International Trade +369267,International Trade,International Trade +369266,International Trade,International Trade +343774,International Trade,International Trade +335209,International Trade,International Trade +322206,International Trade,International Trade +313144,International Trade,International Trade +313141,International Trade,International Trade +310694,International Trade,International Trade +417812,International Trade,International Trade +416603,International Trade,International Trade +416601,International Trade,International Trade +416599,International Trade,International Trade +416598,International Trade,International Trade +416597,International Trade,International Trade +416596,International Trade,International Trade +416593,International Trade,International Trade +416591,International Trade,International Trade +416588,International Trade,International Trade +416587,International Trade,International Trade +416582,International Trade,International Trade +416578,International Trade,International Trade +416576,International Trade,International Trade +416571,International Trade,International Trade +416567,International Trade,International Trade +416564,International Trade,International Trade +416559,International Trade,International Trade +416550,International Trade,International Trade +416548,International Trade,International Trade +416547,International Trade,International Trade +416543,International Trade,International Trade +416540,International Trade,International Trade +416537,International Trade,International Trade +416536,International Trade,International Trade +413520,International Trade,International Trade +413517,International Trade,International Trade +413513,International Trade,International Trade +413285,International Trade,International Trade +413284,International Trade,International Trade +413281,International Trade,International Trade +408197,International Trade,International Trade +404003,International Trade,International Trade +469899,International Trade,International Trade +452374,International Trade,International Trade +445587,International Trade,International Trade +310869,Environment,Environment +310854,Environment,Environment +373182,Environment,Environment +371535,Environment,Environment +366727,Environment,Environment +366588,Environment,Environment +310854,Fisheries,Fisheries +366727,Fisheries,Fisheries +371534,Regional Development,Regional Development +310854,Regional Development,Regional Development +379939,Regional Development,Regional Development +377766,Regional Development,Regional Development +377765,Regional Development,Regional Development +377761,Regional Development,Regional Development +373182,Regional Development,Regional Development +371548,Regional Development,Regional Development +531949,Taxation and Finance,Taxation and Finance +529648,Taxation and Finance,Taxation and Finance +356430,Taxation and Finance,Taxation and Finance +349399,Taxation and Finance,Taxation and Finance +310909,Taxation and Finance,Taxation and Finance +310891,Taxation and Finance,Taxation and Finance +520342,Taxation and Finance,Taxation and Finance +518310,Taxation and Finance,Taxation and Finance +502927,Taxation and Finance,Taxation and Finance +496268,Taxation and Finance,Taxation and Finance +491789,Taxation and Finance,Taxation and Finance +491787,Taxation and Finance,Taxation and Finance +465019,Taxation and Finance,Taxation and Finance +462027,Taxation and Finance,Taxation and Finance +404048,Taxation and Finance,Taxation and Finance +404047,Taxation and Finance,Taxation and Finance +404046,Taxation and Finance,Taxation and Finance +404045,Taxation and Finance,Taxation and Finance +374428,Health,Health +374414,Health,Health +327459,Health,Health +327458,Health,Health +327457,Health,Health +327455,Health,Health +327414,Health,Health +327413,Health,Health +327412,Health,Health +327411,Health,Health +327410,Health,Health +327409,Health,Health +327337,Health,Health +321616,Health,Health +321615,Health,Health +318698,Health,Health +318697,Health,Health +314805,Health,Health +314803,Health,Health +313972,Health,Health +313970,Health,Health +313969,Health,Health +371827,Health,Health +371823,Health,Health +366446,Health,Health +359684,Health,Health +358023,Health,Health +351120,Health,Health +348884,Health,Health +347148,Health,Health +343707,Health,Health +341042,Health,Health +338304,Health,Health +338303,Health,Health +338301,Health,Health +338299,Health,Health +338298,Health,Health +338297,Health,Health +338295,Health,Health +338294,Health,Health +338292,Health,Health +335671,Health,Health +335666,Health,Health +335662,Health,Health +331476,Health,Health +331474,Health,Health +327483,Health,Health +327482,Health,Health +327481,Health,Health +327480,Health,Health +327479,Health,Health +327477,Health,Health +327475,Health,Health +327474,Health,Health +327473,Health,Health +327472,Health,Health +327471,Health,Health +327470,Health,Health +327469,Health,Health +327467,Health,Health +327466,Health,Health +327465,Health,Health +327464,Health,Health +327463,Health,Health +327462,Health,Health +327460,Health,Health +402876,Health,Health +402875,Health,Health +402874,Health,Health +402873,Health,Health +402872,Health,Health +402871,Health,Health +402869,Health,Health +402863,Health,Health +402862,Health,Health +402857,Health,Health +402853,Health,Health +402852,Health,Health +402850,Health,Health +402846,Health,Health +402844,Health,Health +402842,Health,Health +402841,Health,Health +402839,Health,Health +402837,Health,Health +402835,Health,Health +402833,Health,Health +402832,Health,Health +402830,Health,Health +402827,Health,Health +402824,Health,Health +402820,Health,Health +402818,Health,Health +402817,Health,Health +402816,Health,Health +402812,Health,Health +402811,Health,Health +402809,Health,Health +402808,Health,Health +402806,Health,Health +402804,Health,Health +402800,Health,Health +392351,Health,Health +390355,Health,Health +383086,Health,Health +382150,Health,Health +374433,Health,Health +324168,Health,Health +324003,Health,Health +354084,Health,Health +324168,Infrastructure,Infrastructure +324003,Infrastructure,Infrastructure +324342,Infrastructure,Infrastructure +324005,Infrastructure,Infrastructure +324346,Infrastructure,Infrastructure +324144,Infrastructure,Infrastructure +324141,Infrastructure,Infrastructure +313730,Sports,Sports +311353,Sports,Sports +311374,Taxation and Finance,Impôts et finances +356630,Financial Institutions,Financial Institutions +325173,Financial Institutions,Financial Institutions +356632,Financial Institutions,Financial Institutions +325173,Housing,Housing +325172,Housing,Housing +356632,Housing,Housing +356631,Housing,Housing +356630,Housing,Housing +353750,Housing,Housing +349426,Housing,Housing +340025,Housing,Housing +325195,Housing,Housing +325176,Housing,Housing +366882,Financial Institutions,Financial Institutions +358582,Financial Institutions,Financial Institutions +386077,Financial Institutions,Financial Institutions +358582,Housing,Housing +325969,Housing,Housing +386077,Housing,Housing +383741,Housing,Housing +386077,Taxation and Finance,Taxation and Finance +383741,Taxation and Finance,Taxation and Finance +325170,Financial Institutions,Financial Institutions +318769,Financial Institutions,Financial Institutions +353752,Financial Institutions,Financial Institutions +340026,Financial Institutions,Financial Institutions +441964,Education,Education +441948,Education,Education +331929,Consumer Issues,Consumer Issues +331929,Taxation and Finance,Taxation and Finance +317871,Taxation and Finance,Taxation and Finance +423212,Consumer Issues,Consumer Issues +537631,Consumer Issues,Consumer Issues +382327,Consumer Issues,Consumer Issues +382325,Consumer Issues,Consumer Issues +333830,Consumer Issues,Consumer Issues +443637,Consumer Issues,Consumer Issues +503649,Environment,Environment +503648,Environment,Environment +311690,Environment,Environment +414312,Environment,Environment +368519,Environment,Environment +368484,Environment,Environment +541191,Environment,Environment +541190,Environment,Environment +531336,Environment,Environment +530684,Environment,Environment +529978,Environment,Environment +529301,Environment,Environment +527086,Environment,Environment +527085,Environment,Environment +426199,Fisheries,Fisheries +414312,Fisheries,Fisheries +311690,Fisheries,Fisheries +368519,Fisheries,Fisheries +368484,Fisheries,Fisheries +317849,Transportation,Transportation +315227,Taxation and Finance,Taxation and Finance +315225,Taxation and Finance,Taxation and Finance +318725,Taxation and Finance,Taxation and Finance +316730,Taxation and Finance,Taxation and Finance +311786,International Trade,International Trade +311785,International Trade,International Trade +312034,International Trade,International Trade +340078,Agriculture,Agriculture +476477,Agriculture,Agriculture +312031,Agriculture,Agriculture +311791,Agriculture,Agriculture +311790,Agriculture,Agriculture +311789,Agriculture,Agriculture +469460,Agriculture,Agriculture +453737,Agriculture,Agriculture +449457,Agriculture,Agriculture +449455,Agriculture,Agriculture +449453,Agriculture,Agriculture +449452,Agriculture,Agriculture +449451,Agriculture,Agriculture +435958,Agriculture,Agriculture +435956,Agriculture,Agriculture +355689,Agriculture,Agriculture +355688,Agriculture,Agriculture +355686,Agriculture,Agriculture +355685,Agriculture,Agriculture +340083,Agriculture,Agriculture +340082,Agriculture,Agriculture +340081,Agriculture,Agriculture +435956,Infrastructure,Infrastructure +435953,Infrastructure,Infrastructure +355783,Infrastructure,Infrastructure +355690,Infrastructure,Infrastructure +340081,Infrastructure,Infrastructure +340078,Infrastructure,Infrastructure +340077,Infrastructure,Infrastructure +312031,Infrastructure,Infrastructure +476477,Infrastructure,Infrastructure +469460,Infrastructure,Infrastructure +453737,Infrastructure,Infrastructure +449459,Infrastructure,Infrastructure +449457,Infrastructure,Infrastructure +449454,Infrastructure,Infrastructure +449451,Infrastructure,Infrastructure +435961,Infrastructure,Infrastructure +449453,International Trade,International Trade +449451,International Trade,International Trade +312031,International Trade,International Trade +311791,International Trade,International Trade +311790,International Trade,International Trade +311789,International Trade,International Trade +435953,Municipalities,Municipalities +435947,Municipalities,Municipalities +525171,Municipalities,Municipalities +476477,Municipalities,Municipalities +469460,Municipalities,Municipalities +449459,Municipalities,Municipalities +449458,Municipalities,Municipalities +449457,Transportation,Transportation +449451,Transportation,Transportation +340082,Transportation,Transportation +340080,Transportation,Transportation +340079,Transportation,Transportation +311849,Forestry,Forestry +311849,International Trade,International Trade +312551,Energy,Energy +312549,Energy,Energy +334390,Energy,Energy +334389,Energy,Energy +332769,Energy,Energy +327588,Energy,Energy +327576,Energy,Energy +318965,Energy,Energy +334389,Transportation,Transportation +332769,Transportation,Transportation +327588,Transportation,Transportation +327576,Transportation,Transportation +318965,Transportation,Transportation +315818,Transportation,Transportation +312551,Transportation,Transportation +312549,Transportation,Transportation +481399,Budget,Budget +481398,Budget,Budget +397428,Budget,Budget +393824,Budget,Budget +393068,Budget,Budget +393016,Budget,Budget +392983,Budget,Budget +392638,Budget,Budget +392308,Budget,Budget +392307,Budget,Budget +392305,Budget,Budget +390595,Budget,Budget +386310,Budget,Budget +384665,Budget,Budget +384462,Budget,Budget +384461,Budget,Budget +384460,Budget,Budget +384459,Budget,Budget +384096,Budget,Budget +384060,Budget,Budget +384031,Budget,Budget +383179,Budget,Budget +383178,Budget,Budget +383176,Budget,Budget +383175,Budget,Budget +383174,Budget,Budget +459024,Budget,Budget +456487,Budget,Budget +456486,Budget,Budget +449114,Budget,Budget +449113,Budget,Budget +440984,Budget,Budget +440983,Budget,Budget +440246,Budget,Budget +439772,Budget,Budget +437303,Budget,Budget +436382,Budget,Budget +436109,Budget,Budget +434068,Budget,Budget +424840,Budget,Budget +421541,Budget,Budget +418863,Budget,Budget +418720,Budget,Budget +414861,Budget,Budget +411151,Budget,Budget +411146,Budget,Budget +410748,Budget,Budget +410653,Budget,Budget +409381,Budget,Budget +408512,Budget,Budget +407866,Budget,Budget +407865,Budget,Budget +407421,Budget,Budget +536191,Budget,Budget +527689,Budget,Budget +527685,Budget,Budget +527681,Budget,Budget +527249,Budget,Budget +526810,Budget,Budget +526793,Budget,Budget +526769,Budget,Budget +526385,Budget,Budget +526291,Budget,Budget +525868,Budget,Budget +525867,Budget,Budget +525016,Budget,Budget +524810,Budget,Budget +524809,Budget,Budget +524790,Budget,Budget +524789,Budget,Budget +524788,Budget,Budget +524787,Budget,Budget +524786,Budget,Budget +524785,Budget,Budget +524784,Budget,Budget +524783,Budget,Budget +524782,Budget,Budget +524780,Budget,Budget +524779,Budget,Budget +524778,Budget,Budget +524777,Budget,Budget +524776,Budget,Budget +524774,Budget,Budget +524772,Budget,Budget +524771,Budget,Budget +524770,Budget,Budget +524762,Budget,Budget +524738,Budget,Budget +524736,Budget,Budget +524735,Budget,Budget +524729,Budget,Budget +524726,Budget,Budget +524725,Budget,Budget +524724,Budget,Budget +524723,Budget,Budget +524722,Budget,Budget +524448,Budget,Budget +524447,Budget,Budget +524444,Budget,Budget +524154,Budget,Budget +524153,Budget,Budget +524152,Budget,Budget +523940,Budget,Budget +523936,Budget,Budget +523935,Budget,Budget +523933,Budget,Budget +523842,Budget,Budget +523841,Budget,Budget +523840,Budget,Budget +523839,Budget,Budget +523838,Budget,Budget +523837,Budget,Budget +521246,Budget,Budget +521054,Budget,Budget +521053,Budget,Budget +520554,Budget,Budget +519121,Budget,Budget +518512,Budget,Budget +511728,Budget,Budget +506144,Budget,Budget +503748,Budget,Budget +500887,Budget,Budget +500141,Budget,Budget +499887,Budget,Budget +499844,Budget,Budget +499225,Budget,Budget +498377,Budget,Budget +498016,Budget,Budget +497951,Budget,Budget +497382,Budget,Budget +497381,Budget,Budget +497380,Budget,Budget +497379,Budget,Budget +497378,Budget,Budget +497377,Budget,Budget +497376,Budget,Budget +497375,Budget,Budget +497374,Budget,Budget +497373,Budget,Budget +497372,Budget,Budget +497371,Budget,Budget +497370,Budget,Budget +497369,Budget,Budget +497368,Budget,Budget +497367,Budget,Budget +497366,Budget,Budget +497365,Budget,Budget +497364,Budget,Budget +497363,Budget,Budget +497362,Budget,Budget +497361,Budget,Budget +497360,Budget,Budget +497359,Budget,Budget +497357,Budget,Budget +497356,Budget,Budget +497354,Budget,Budget +497353,Budget,Budget +497347,Budget,Budget +497346,Budget,Budget +497345,Budget,Budget +497344,Budget,Budget +497343,Budget,Budget +497340,Budget,Budget +497338,Budget,Budget +497337,Budget,Budget +497336,Budget,Budget +497335,Budget,Budget +497334,Budget,Budget +497333,Budget,Budget +497331,Budget,Budget +497330,Budget,Budget +497329,Budget,Budget +497326,Budget,Budget +497325,Budget,Budget +497324,Budget,Budget +497323,Budget,Budget +497322,Budget,Budget +497321,Budget,Budget +497319,Budget,Budget +497318,Budget,Budget +497317,Budget,Budget +496401,Budget,Budget +496301,Budget,Budget +494812,Budget,Budget +494811,Budget,Budget +494727,Budget,Budget +488869,Budget,Budget +488049,Budget,Budget +485808,Budget,Budget +482810,Budget,Budget +482797,Budget,Budget +482610,Budget,Budget +482609,Budget,Budget +482259,Budget,Budget +481741,Budget,Budget +481525,Budget,Budget +481522,Budget,Budget +456485,Climate,Climate +456483,Climate,Climate +461053,Climate,Climate +456487,Climate,Climate +439499,Mining,Mining +423915,Mining,Mining +405238,Mining,Mining +385440,Mining,Mining +381576,Mining,Mining +361003,Mining,Mining +323230,Mining,Mining +311973,Mining,Mining +529102,Mining,Mining +440692,Mining,Mining +439529,Mining,Mining +358168,Industry,Industry +351341,Industry,Industry +350325,Industry,Industry +349343,Industry,Industry +349342,Industry,Industry +343853,Industry,Industry +343849,Industry,Industry +341210,Industry,Industry +341206,Industry,Industry +330028,Industry,Industry +311990,Industry,Industry +399117,Industry,Industry +392426,Industry,Industry +392425,Industry,Industry +392424,Industry,Industry +392423,Industry,Industry +390933,Industry,Industry +390929,Industry,Industry +390928,Industry,Industry +379316,Industry,Industry +374683,Industry,Industry +374681,Industry,Industry +374678,Industry,Industry +374667,Industry,Industry +371630,Industry,Industry +371629,Industry,Industry +371628,Industry,Industry +371627,Industry,Industry +371626,Industry,Industry +371625,Industry,Industry +366575,Industry,Industry +366573,Industry,Industry +366570,Industry,Industry +366569,Industry,Industry +365122,Industry,Industry +365120,Industry,Industry +365118,Industry,Industry +365116,Industry,Industry +365110,Industry,Industry +365109,Industry,Industry +321569,Environment,Environment +352220,Environment,Environment +321569,Health,Health +352220,Health,Health +328869,Infrastructure,Infrastructure +464608,Fisheries,Fisheries +451988,Fisheries,Fisheries +416719,Fisheries,Fisheries +455415,Fisheries,Fisheries +312196,Fisheries,Fisheries +312253,Labour,Labour +312316,Health,Health +334470,Taxation and Finance,Taxation and Finance +464206,Transportation,Transportation +439769,Transportation,Transportation +401384,Transportation,Transportation +385951,Transportation,Transportation +365579,Transportation,Transportation +413985,Transportation,Transportation +320333,Health,Health +320333,Tourism,Tourism +315470,Industry,Industrie +315469,Industry,Industrie +435499,Industry,Industry +407824,Industry,Industry +367883,Industry,Industry +367881,Industry,Industry +367874,Industry,Industry +366271,Industry,Industry +366270,Industry,Industry +366269,Industry,Industry +363349,Industry,Industry +351921,Industry,Industry +337631,Industry,Industry +337630,Industry,Industry +333686,Industry,Industry +318924,Industry,Industry +318922,Industry,Industry +503292,Industry,Industry +318924,Taxation and Finance,Taxation and Finance +318922,Taxation and Finance,Taxation and Finance +325013,Housing,Housing +312729,Housing,Housing +365083,Infrastructure,Infrastructure +358155,Infrastructure,Infrastructure +328231,Infrastructure,Infrastructure +325013,Infrastructure,Infrastructure +315912,Infrastructure,Infrastructure +315912,Education,Education +312732,Education,Education +353631,Infrastructure,Infrastructure +328238,Infrastructure,Infrastructure +315913,Infrastructure,Infrastructure +315912,Housing,Housing +312732,Housing,Housing +328238,Housing,Housing +336393,Economic Development,Economic Development +317751,Economic Development,Economic Development +352866,Economic Development,Economic Development +352865,Economic Development,Economic Development +349802,Economic Development,Economic Development +467370,Budget,Budget +467364,Budget,Budget +382966,Budget,Budget +382965,Budget,Budget +382964,Budget,Budget +381222,Budget,Budget +381213,Budget,Budget +374134,Budget,Budget +374130,Budget,Budget +374123,Budget,Budget +368710,Budget,Budget +368706,Budget,Budget +353838,Budget,Budget +353831,Budget,Budget +351185,Budget,Budget +348343,Budget,Budget +348342,Budget,Budget +348299,Budget,Budget +343977,Budget,Budget +343970,Budget,Budget +343963,Budget,Budget +343887,Budget,Budget +343884,Budget,Budget +343881,Budget,Budget +343879,Budget,Budget +343878,Budget,Budget +341919,Budget,Budget +341749,Budget,Budget +341740,Budget,Budget +341706,Budget,Budget +341683,Budget,Budget +341661,Budget,Budget +337239,Budget,Budget +337222,Budget,Budget +337220,Budget,Budget +337215,Budget,Budget +335563,Budget,Budget +335551,Budget,Budget +335549,Budget,Budget +335543,Budget,Budget +335540,Budget,Budget +333192,Budget,Budget +333191,Budget,Budget +331243,Budget,Budget +327046,Budget,Budget +324474,Budget,Budget +322230,Budget,Budget +315183,Budget,Budget +312782,Budget,Budget +459390,Budget,Budget +459388,Budget,Budget +451383,Budget,Budget +451382,Budget,Budget +451180,Budget,Budget +446570,Budget,Budget +446568,Budget,Budget +446566,Budget,Budget +446562,Budget,Budget +444738,Budget,Budget +444737,Budget,Budget +440720,Budget,Budget +440718,Budget,Budget +436827,Budget,Budget +435080,Budget,Budget +433261,Budget,Budget +433260,Budget,Budget +431789,Budget,Budget +431774,Budget,Budget +431770,Budget,Budget +431769,Budget,Budget +430255,Budget,Budget +430253,Budget,Budget +428245,Budget,Budget +425563,Budget,Budget +425561,Budget,Budget +425560,Budget,Budget +425559,Budget,Budget +425556,Budget,Budget +425555,Budget,Budget +423317,Budget,Budget +421003,Budget,Budget +420998,Budget,Budget +420997,Budget,Budget +420996,Budget,Budget +419055,Budget,Budget +419054,Budget,Budget +419015,Budget,Budget +419013,Budget,Budget +417531,Budget,Budget +417530,Budget,Budget +417528,Budget,Budget +417526,Budget,Budget +415263,Budget,Budget +415260,Budget,Budget +415255,Budget,Budget +415248,Budget,Budget +415246,Budget,Budget +415241,Budget,Budget +415240,Budget,Budget +415239,Budget,Budget +415236,Budget,Budget +415235,Budget,Budget +415229,Budget,Budget +415224,Budget,Budget +415223,Budget,Budget +415222,Budget,Budget +415220,Budget,Budget +411585,Budget,Budget +411583,Budget,Budget +411581,Budget,Budget +411580,Budget,Budget +411575,Budget,Budget +411574,Budget,Budget +408959,Budget,Budget +408957,Budget,Budget +408956,Budget,Budget +408954,Budget,Budget +408952,Budget,Budget +408951,Budget,Budget +408950,Budget,Budget +408949,Budget,Budget +408948,Budget,Budget +408947,Budget,Budget +407374,Budget,Budget +407373,Budget,Budget +407372,Budget,Budget +406274,Budget,Budget +406273,Budget,Budget +406272,Budget,Budget +406271,Budget,Budget +406270,Budget,Budget +406268,Budget,Budget +406267,Budget,Budget +406266,Budget,Budget +406264,Budget,Budget +406263,Budget,Budget +406262,Budget,Budget +404586,Budget,Budget +404585,Budget,Budget +404581,Budget,Budget +404580,Budget,Budget +402021,Budget,Budget +402018,Budget,Budget +402017,Budget,Budget +402014,Budget,Budget +402010,Budget,Budget +402008,Budget,Budget +402006,Budget,Budget +402005,Budget,Budget +402003,Budget,Budget +402002,Budget,Budget +402001,Budget,Budget +401999,Budget,Budget +399768,Budget,Budget +399765,Budget,Budget +399764,Budget,Budget +398221,Budget,Budget +398220,Budget,Budget +395268,Budget,Budget +393170,Budget,Budget +393169,Budget,Budget +392130,Budget,Budget +392128,Budget,Budget +392127,Budget,Budget +386755,Budget,Budget +386754,Budget,Budget +386753,Budget,Budget +386750,Budget,Budget +386748,Budget,Budget +386746,Budget,Budget +386744,Budget,Budget +386743,Budget,Budget +384504,Budget,Budget +384502,Budget,Budget +384501,Budget,Budget +384499,Budget,Budget +384498,Budget,Budget +382967,Budget,Budget +545193,Budget,Budget +545191,Budget,Budget +545188,Budget,Budget +545187,Budget,Budget +545186,Budget,Budget +539579,Budget,Budget +530806,Budget,Budget +529422,Budget,Budget +529421,Budget,Budget +529420,Budget,Budget +524265,Budget,Budget +524264,Budget,Budget +524263,Budget,Budget +524259,Budget,Budget +521956,Budget,Budget +521935,Budget,Budget +521922,Budget,Budget +521919,Budget,Budget +514119,Budget,Budget +512029,Budget,Budget +509506,Budget,Budget +509505,Budget,Budget +506561,Budget,Budget +506560,Budget,Budget +506559,Budget,Budget +506558,Budget,Budget +506557,Budget,Budget +503445,Budget,Budget +503444,Budget,Budget +503443,Budget,Budget +500370,Budget,Budget +496733,Budget,Budget +494585,Budget,Budget +492383,Budget,Budget +489863,Budget,Budget +489860,Budget,Budget +489858,Budget,Budget +489857,Budget,Budget +489856,Budget,Budget +489852,Budget,Budget +489848,Budget,Budget +486326,Budget,Budget +486325,Budget,Budget +486323,Budget,Budget +486319,Budget,Budget +486318,Budget,Budget +486316,Budget,Budget +486315,Budget,Budget +486314,Budget,Budget +486313,Budget,Budget +485893,Budget,Budget +482835,Budget,Budget +480976,Budget,Budget +480975,Budget,Budget +470478,Budget,Budget +470477,Budget,Budget +470476,Budget,Budget +470474,Budget,Budget +470472,Budget,Budget +470469,Budget,Budget +415234,Research and Development,Research and Development +415233,Research and Development,Research and Development +415232,Research and Development,Research and Development +415231,Research and Development,Research and Development +415230,Research and Development,Research and Development +415228,Research and Development,Research and Development +415224,Research and Development,Research and Development +411577,Research and Development,Research and Development +408959,Research and Development,Research and Development +408951,Research and Development,Research and Development +408939,Research and Development,Research and Development +406274,Research and Development,Research and Development +406272,Research and Development,Research and Development +406270,Research and Development,Research and Development +406268,Research and Development,Research and Development +406267,Research and Development,Research and Development +406266,Research and Development,Research and Development +406265,Research and Development,Research and Development +404586,Research and Development,Research and Development +404584,Research and Development,Research and Development +399768,Research and Development,Research and Development +399765,Research and Development,Research and Development +399764,Research and Development,Research and Development +392132,Research and Development,Research and Development +392130,Research and Development,Research and Development +392128,Research and Development,Research and Development +389617,Research and Development,Research and Development +389616,Research and Development,Research and Development +389615,Research and Development,Research and Development +389612,Research and Development,Research and Development +389608,Research and Development,Research and Development +389607,Research and Development,Research and Development +389604,Research and Development,Research and Development +389602,Research and Development,Research and Development +389600,Research and Development,Research and Development +389599,Research and Development,Research and Development +389598,Research and Development,Research and Development +389596,Research and Development,Research and Development +386755,Research and Development,Research and Development +386754,Research and Development,Research and Development +386748,Research and Development,Research and Development +386744,Research and Development,Research and Development +386743,Research and Development,Research and Development +384507,Research and Development,Research and Development +382967,Research and Development,Research and Development +382966,Research and Development,Research and Development +382964,Research and Development,Research and Development +382193,Research and Development,Research and Development +382191,Research and Development,Research and Development +381230,Research and Development,Research and Development +381225,Research and Development,Research and Development +381222,Research and Development,Research and Development +381219,Research and Development,Research and Development +381216,Research and Development,Research and Development +381215,Research and Development,Research and Development +381214,Research and Development,Research and Development +381213,Research and Development,Research and Development +381212,Research and Development,Research and Development +378301,Research and Development,Research and Development +378297,Research and Development,Research and Development +375810,Research and Development,Research and Development +375809,Research and Development,Research and Development +375808,Research and Development,Research and Development +375807,Research and Development,Research and Development +375803,Research and Development,Research and Development +375801,Research and Development,Research and Development +374134,Research and Development,Research and Development +371863,Research and Development,Research and Development +371861,Research and Development,Research and Development +371860,Research and Development,Research and Development +371856,Research and Development,Research and Development +371853,Research and Development,Research and Development +368712,Research and Development,Research and Development +368708,Research and Development,Research and Development +368705,Research and Development,Research and Development +368703,Research and Development,Research and Development +357911,Research and Development,Research and Development +357902,Research and Development,Research and Development +357899,Research and Development,Research and Development +357897,Research and Development,Research and Development +357892,Research and Development,Research and Development +357883,Research and Development,Research and Development +357878,Research and Development,Research and Development +324471,Research and Development,Research and Development +322225,Research and Development,Research and Development +322221,Research and Development,Research and Development +322218,Research and Development,Research and Development +312781,Research and Development,Research and Development +312780,Research and Development,Research and Development +545193,Research and Development,Research and Development +545192,Research and Development,Research and Development +545191,Research and Development,Research and Development +545190,Research and Development,Research and Development +545188,Research and Development,Research and Development +545187,Research and Development,Research and Development +545186,Research and Development,Research and Development +543490,Research and Development,Research and Development +543489,Research and Development,Research and Development +541526,Research and Development,Research and Development +541522,Research and Development,Research and Development +539587,Research and Development,Research and Development +539579,Research and Development,Research and Development +538161,Research and Development,Research and Development +534756,Research and Development,Research and Development +534753,Research and Development,Research and Development +530806,Research and Development,Research and Development +529422,Research and Development,Research and Development +529421,Research and Development,Research and Development +524267,Research and Development,Research and Development +524266,Research and Development,Research and Development +524265,Research and Development,Research and Development +524261,Research and Development,Research and Development +524260,Research and Development,Research and Development +524259,Research and Development,Research and Development +521957,Research and Development,Research and Development +521955,Research and Development,Research and Development +521954,Research and Development,Research and Development +521936,Research and Development,Research and Development +521935,Research and Development,Research and Development +521920,Research and Development,Research and Development +521918,Research and Development,Research and Development +519395,Research and Development,Research and Development +519390,Research and Development,Research and Development +517484,Research and Development,Research and Development +517468,Research and Development,Research and Development +514984,Research and Development,Research and Development +514119,Research and Development,Research and Development +512029,Research and Development,Research and Development +509506,Research and Development,Research and Development +506560,Research and Development,Research and Development +506559,Research and Development,Research and Development +500373,Research and Development,Research and Development +500372,Research and Development,Research and Development +492391,Research and Development,Research and Development +486316,Research and Development,Research and Development +486315,Research and Development,Research and Development +480975,Research and Development,Research and Development +478705,Research and Development,Research and Development +476532,Research and Development,Research and Development +474835,Research and Development,Research and Development +474833,Research and Development,Research and Development +474832,Research and Development,Research and Development +470474,Research and Development,Research and Development +470472,Research and Development,Research and Development +470469,Research and Development,Research and Development +470465,Research and Development,Research and Development +461524,Research and Development,Research and Development +461519,Research and Development,Research and Development +448838,Research and Development,Research and Development +446570,Research and Development,Research and Development +446568,Research and Development,Research and Development +446566,Research and Development,Research and Development +436827,Research and Development,Research and Development +436826,Research and Development,Research and Development +436824,Research and Development,Research and Development +436821,Research and Development,Research and Development +436818,Research and Development,Research and Development +436814,Research and Development,Research and Development +435080,Research and Development,Research and Development +435075,Research and Development,Research and Development +433259,Research and Development,Research and Development +433258,Research and Development,Research and Development +431772,Research and Development,Research and Development +430251,Research and Development,Research and Development +425561,Research and Development,Research and Development +417531,Research and Development,Research and Development +417528,Research and Development,Research and Development +417526,Research and Development,Research and Development +323369,Education,Education +456441,Budget,Budget +456440,Budget,Budget +392233,Budget,Budget +462371,Budget,Budget +462370,Budget,Budget +456444,Budget,Budget +456443,Budget,Budget +456440,Economic Development,Economic Development +441451,Economic Development,Economic Development +392232,Economic Development,Economic Development +510389,Economic Development,Economic Development +509532,Economic Development,Economic Development +456444,Economic Development,Economic Development +456443,Economic Development,Economic Development +456442,Economic Development,Economic Development +312857,Employment and Training,Employment and Training +392233,Financial Institutions,Financial Institutions +456444,Financial Institutions,Financial Institutions +456443,Financial Institutions,Financial Institutions +456442,Financial Institutions,Financial Institutions +456441,Financial Institutions,Financial Institutions +392232,Immigration,Immigration +456440,Industry,Industry +392232,Industry,Industry +456444,Industry,Industry +456443,Industry,Industry +456442,Industry,Industry +312857,Labour,Labour +441451,Regional Development,Regional Development +510389,Regional Development,Regional Development +392232,Regional Development,Regional Development +456441,Taxation and Finance,Taxation and Finance +456440,Taxation and Finance,Taxation and Finance +392233,Taxation and Finance,Taxation and Finance +456444,Taxation and Finance,Taxation and Finance +456443,Taxation and Finance,Taxation and Finance +341943,Budget,Budget +341935,Budget,Budget +341882,Budget,Budget +341771,Budget,Budget +341428,Budget,Budget +341423,Budget,Budget +341422,Budget,Budget +341421,Budget,Budget +341420,Budget,Budget +341419,Budget,Budget +341418,Budget,Budget +341417,Budget,Budget +341268,Budget,Budget +341241,Budget,Budget +341225,Budget,Budget +341219,Budget,Budget +341214,Budget,Budget +341213,Budget,Budget +341211,Budget,Budget +341208,Budget,Budget +341205,Budget,Budget +341201,Budget,Budget +341199,Budget,Budget +341198,Budget,Budget +341186,Budget,Budget +340934,Budget,Budget +340933,Budget,Budget +340929,Budget,Budget +340925,Budget,Budget +340916,Budget,Budget +340907,Budget,Budget +340906,Budget,Budget +340904,Budget,Budget +340892,Budget,Budget +340889,Budget,Budget +340887,Budget,Budget +340886,Budget,Budget +340883,Budget,Budget +340882,Budget,Budget +340856,Budget,Budget +340854,Budget,Budget +340852,Budget,Budget +340848,Budget,Budget +340847,Budget,Budget +340846,Budget,Budget +340845,Budget,Budget +340844,Budget,Budget +340839,Budget,Budget +340836,Budget,Budget +340359,Budget,Budget +340302,Budget,Budget +339821,Budget,Budget +338036,Budget,Budget +338034,Budget,Budget +338032,Budget,Budget +338015,Budget,Budget +338014,Budget,Budget +338013,Budget,Budget +338012,Budget,Budget +338011,Budget,Budget +338010,Budget,Budget +338009,Budget,Budget +338008,Budget,Budget +338007,Budget,Budget +338005,Budget,Budget +338004,Budget,Budget +338002,Budget,Budget +338001,Budget,Budget +338000,Budget,Budget +337999,Budget,Budget +337998,Budget,Budget +337994,Budget,Budget +337993,Budget,Budget +337992,Budget,Budget +337991,Budget,Budget +337953,Budget,Budget +337952,Budget,Budget +337951,Budget,Budget +337950,Budget,Budget +337949,Budget,Budget +335559,Budget,Budget +335558,Budget,Budget +329885,Budget,Budget +318647,Budget,Budget +318643,Budget,Budget +318642,Budget,Budget +318641,Budget,Budget +318640,Budget,Budget +318638,Budget,Budget +318637,Budget,Budget +318636,Budget,Budget +318633,Budget,Budget +318631,Budget,Budget +318624,Budget,Budget +318620,Budget,Budget +315554,Budget,Budget +315553,Budget,Budget +315552,Budget,Budget +315551,Budget,Budget +315550,Budget,Budget +312839,Budget,Budget +312838,Budget,Budget +312834,Budget,Budget +497534,Budget,Budget +497529,Budget,Budget +399845,Budget,Budget +396480,Budget,Budget +393657,Budget,Budget +393654,Budget,Budget +392864,Budget,Budget +392863,Budget,Budget +392862,Budget,Budget +392563,Budget,Budget +392562,Budget,Budget +392561,Budget,Budget +392560,Budget,Budget +392455,Budget,Budget +392454,Budget,Budget +392453,Budget,Budget +390768,Budget,Budget +390760,Budget,Budget +390748,Budget,Budget +390746,Budget,Budget +390061,Budget,Budget +390060,Budget,Budget +390059,Budget,Budget +390057,Budget,Budget +390056,Budget,Budget +390055,Budget,Budget +390054,Budget,Budget +390053,Budget,Budget +390052,Budget,Budget +373590,Budget,Budget +373579,Budget,Budget +371857,Budget,Budget +371854,Budget,Budget +371852,Budget,Budget +369130,Budget,Budget +362176,Budget,Budget +357771,Budget,Budget +350714,Budget,Budget +350713,Budget,Budget +350712,Budget,Budget +348943,Budget,Budget +348942,Budget,Budget +348941,Budget,Budget +348939,Budget,Budget +348938,Budget,Budget +348901,Budget,Budget +347304,Budget,Budget +347300,Budget,Budget +347284,Budget,Budget +347277,Budget,Budget +347270,Budget,Budget +347255,Budget,Budget +344357,Budget,Budget +343755,Budget,Budget +343752,Budget,Budget +343750,Budget,Budget +343747,Budget,Budget +343745,Budget,Budget +343744,Budget,Budget +343740,Budget,Budget +343739,Budget,Budget +343733,Budget,Budget +343719,Budget,Budget +341983,Budget,Budget +341974,Budget,Budget +413281,Internal Trade,Internal Trade +409958,Internal Trade,Internal Trade +313141,Internal Trade,Internal Trade +382368,Internal Trade,Internal Trade +382367,Internal Trade,Internal Trade +378996,Internal Trade,Internal Trade +377024,Internal Trade,Internal Trade +371256,Internal Trade,Internal Trade +369268,Internal Trade,Internal Trade +348849,Internal Trade,Internal Trade +469899,Internal Trade,Internal Trade +452374,Internal Trade,Internal Trade +445587,Internal Trade,Internal Trade +417816,Internal Trade,Internal Trade +416603,Internal Trade,Internal Trade +416601,Internal Trade,Internal Trade +416599,Internal Trade,Internal Trade +416598,Internal Trade,Internal Trade +416597,Internal Trade,Internal Trade +416596,Internal Trade,Internal Trade +416593,Internal Trade,Internal Trade +416591,Internal Trade,Internal Trade +416588,Internal Trade,Internal Trade +416587,Internal Trade,Internal Trade +416582,Internal Trade,Internal Trade +416578,Internal Trade,Internal Trade +416576,Internal Trade,Internal Trade +416571,Internal Trade,Internal Trade +416567,Internal Trade,Internal Trade +416564,Internal Trade,Internal Trade +416559,Internal Trade,Internal Trade +416550,Internal Trade,Internal Trade +416548,Internal Trade,Internal Trade +416547,Internal Trade,Internal Trade +416543,Internal Trade,Internal Trade +416540,Internal Trade,Internal Trade +416537,Internal Trade,Internal Trade +416536,Internal Trade,Internal Trade +413520,Internal Trade,Internal Trade +413517,Internal Trade,Internal Trade +413513,Internal Trade,Internal Trade +413285,Internal Trade,Internal Trade +369268,Research and Development,Research and Development +313141,Research and Development,Research and Development +416591,Research and Development,Research and Development +416550,Research and Development,Research and Development +413520,Research and Development,Research and Development +413517,Research and Development,Research and Development +413513,Research and Development,Research and Development +413285,Research and Development,Research and Development +413284,Research and Development,Research and Development +391222,Economic Development,Economic Development +359666,Education,Education +315589,Economic Development,Economic Development +330573,Economic Development,Economic Development +319143,Government Procurement,Government Procurement +315589,Government Procurement,Government Procurement +325671,Health,Health +313469,Health,Health +445963,Labour,Labour +445957,Labour,Labour +314797,Labour,Labour +314795,Labour,Labour +536113,Climate,Climate +523811,Climate,Climate +348780,Climate,Climate +347629,Climate,Climate +347627,Climate,Climate +343222,Climate,Climate +343221,Climate,Climate +343220,Climate,Climate +334192,Climate,Climate +313571,Climate,Climate +313570,Climate,Climate +313569,Climate,Climate +465421,Climate,Climate +459524,Climate,Climate +458142,Climate,Climate +423931,Climate,Climate +418043,Climate,Climate +418040,Climate,Climate +399902,Climate,Climate +382956,Climate,Climate +545211,Climate,Climate +544651,Climate,Climate +543008,Climate,Climate +541291,Climate,Climate +539061,Infrastructure,Infrastructure +536113,Infrastructure,Infrastructure +523811,Infrastructure,Infrastructure +545211,Infrastructure,Infrastructure +543008,Infrastructure,Infrastructure +348737,Energy,Energy +348736,Energy,Energy +358543,Energy,Energy +358524,Energy,Energy +358523,Energy,Energy +358522,Energy,Energy +348739,Energy,Energy +348737,Environment,Environment +348736,Environment,Environment +358543,Environment,Environment +358524,Environment,Environment +358523,Environment,Environment +358522,Environment,Environment +348739,Environment,Environment +321920,Energy,Energy +321913,Energy,Energy +358544,Energy,Energy +358528,Energy,Energy +358527,Energy,Energy +358526,Energy,Energy +345617,Energy,Energy +345599,Energy,Energy +321974,Energy,Energy +321971,Energy,Energy +321970,Energy,Energy +321969,Energy,Energy +321929,Energy,Energy +321926,Energy,Energy +321925,Energy,Energy +321924,Energy,Energy +321920,Environment,Environment +321913,Environment,Environment +358544,Environment,Environment +358528,Environment,Environment +358527,Environment,Environment +358526,Environment,Environment +345617,Environment,Environment +321974,Environment,Environment +321971,Environment,Environment +321970,Environment,Environment +321969,Environment,Environment +321929,Environment,Environment +321926,Environment,Environment +321925,Environment,Environment +321924,Environment,Environment +321920,Employment and Training,Employment and Training +321913,Employment and Training,Employment and Training +345657,Employment and Training,Employment and Training +345618,Employment and Training,Employment and Training +345617,Employment and Training,Employment and Training +345599,Employment and Training,Employment and Training +321974,Employment and Training,Employment and Training +321971,Employment and Training,Employment and Training +321970,Employment and Training,Employment and Training +321969,Employment and Training,Employment and Training +321929,Employment and Training,Employment and Training +321926,Employment and Training,Employment and Training +321925,Employment and Training,Employment and Training +321924,Employment and Training,Employment and Training +321969,Immigration,Immigration +321929,Immigration,Immigration +345657,Immigration,Immigration +345618,Immigration,Immigration +345599,Immigration,Immigration +321971,Immigration,Immigration +321969,International Trade,International Trade +321925,International Trade,International Trade +358544,International Trade,International Trade +354099,Energy,Energy +354096,Energy,Energy +361642,Energy,Energy +354099,Environment,Environment +354096,Environment,Environment +361642,Environment,Environment +313669,Energy,Energy +319168,Budget,Budget +314880,Budget,Budget +319186,Budget,Budget +319184,Budget,Budget +319183,Budget,Budget +319177,Budget,Budget +319175,Budget,Budget +319174,Budget,Budget +319168,Justice and Law Enforcement,Justice and Law Enforcement +314880,Justice and Law Enforcement,Justice and Law Enforcement +319186,Justice and Law Enforcement,Justice and Law Enforcement +319184,Justice and Law Enforcement,Justice and Law Enforcement +319183,Justice and Law Enforcement,Justice and Law Enforcement +319179,Justice and Law Enforcement,Justice and Law Enforcement +319177,Justice and Law Enforcement,Justice and Law Enforcement +319175,Justice and Law Enforcement,Justice and Law Enforcement +319174,Justice and Law Enforcement,Justice and Law Enforcement +319172,Small Business,Small Business +319168,Small Business,Small Business +319186,Small Business,Small Business +319184,Small Business,Small Business +319183,Small Business,Small Business +319177,Small Business,Small Business +319175,Small Business,Small Business +334152,Health,Health +323069,Health,Health +353237,Health,Health +353236,Health,Health +353235,Health,Health +353234,Health,Health +353233,Health,Health +350942,Health,Health +350940,Health,Health +349725,Health,Health +349724,Health,Health +349723,Health,Health +349722,Health,Health +349721,Health,Health +349720,Health,Health +349719,Health,Health +348222,Health,Health +348220,Health,Health +346740,Health,Health +346739,Health,Health +346738,Health,Health +346737,Health,Health +340411,Health,Health +340410,Health,Health +340409,Health,Health +340408,Health,Health +371535,Regional Development,Regional Development +310855,Economic Development,Economic Development +310855,Infrastructure,Infrastructure +310855,Labour,Labour +310869,Economic Development,Economic Development +310869,Infrastructure,Infrastructure +310869,Labour,Labour +310870,Infrastructure,Infrastructure +310871,Health,Health +310871,Labour,Labour +404044,Taxation and Finance,Taxation and Finance +348699,Taxation and Finance,Taxation and Finance +352469,Transportation,Transportation +311060,Taxation and Finance,Taxation and Finance +374431,Health,Health +324169,Health,Health +324169,Infrastructure,Infrastructure +324344,Infrastructure,Infrastructure +324432,Infrastructure,Infrastructure +311350,Security,Security +339094,Sports,Sports +312950,Taxation and Finance,Impôts et finances +356631,Financial Institutions,Financial Institutions +325175,Housing,Housing +317855,Industry,Industry +317869,Taxation and Finance,Taxation and Finance +326766,Financial Institutions,Financial Institutions +383741,Financial Institutions,Financial Institutions +366882,Housing,Housing +366882,Taxation and Finance,Taxation and Finance +330572,Financial Institutions,Financial Institutions +311393,Education,Education +331931,Consumer Issues,Consumer Issues +317873,Industry,Industry +331933,Sports,Sports +331932,Taxation and Finance,Taxation and Finance +331930,Transportation,Transportation +441109,Consumer Issues,Consumer Issues +520152,Justice and Law Enforcement,Justice and Law Enforcement +520735,Environment,Environment +450665,Fisheries,Fisheries +322809,Transportation,Transportation +311771,Environment,Environment +316729,Taxation and Finance,Taxation and Finance +311781,International Trade,International Trade +311782,International Trade,International Trade +311783,International Trade,International Trade +311787,International Trade,International Trade +340080,Agriculture,Agriculture +435958,Infrastructure,Infrastructure +453737,International Trade,International Trade +449455,Municipalities,Municipalities +355687,Transportation,Transportation +312315,Health,Health +311850,Forestry,Forestry +311850,Industry,Industry +311850,International Trade,International Trade +315818,Energy,Energy +334390,Transportation,Transportation +481400,Budget,Budget +456486,Climate,Climate +311949,Privacy and Access to Information,Privacy and Access to Information +439526,Mining,Mining +358170,Industry,Industry +313689,Infrastructure,Infrastructure +313689,Tourism,Tourism +312032,International Trade,International Trade +312033,International Trade,International Trade +312035,International Trade,International Trade +312051,Justice and Law Enforcement,Justice and Law Enforcement +321570,Environment,Environment +321570,Health,Health +328869,Health,Health +328894,Infrastructure,Infrastructure +328869,Regional Development,Regional Development +312193,Fisheries,Fisheries +416725,Fisheries,Fisheries +313690,Infrastructure,Infrastructure +313690,Tourism,Tourism +351140,Government Procurement,Government Procurement +312251,Security,Security +327283,Labour,Labour +316511,Health,Health +334471,Taxation and Finance,Taxation and Finance +464207,Transportation,Transportation +315952,Industry,Industry +320335,Health,Health +320335,Tourism,Tourism +330269,Industry,Industrie +494587,Industry,Industry +407824,Taxation and Finance,Taxation and Finance +312729,Education,Education +365083,Housing,Housing +312729,Infrastructure,Infrastructure +315913,Education,Education +312732,Infrastructure,Infrastructure +328231,Housing,Housing +312753,Health,Health +344783,Economic Development,Economic Development +312756,Health,Health +470465,Budget,Budget +415241,Research and Development,Research and Development +323370,Education,Education +456442,Budget,Budget +456441,Economic Development,Economic Development +392232,Employment and Training,Employment and Training +456440,Financial Institutions,Financial Institutions +312857,Immigration,Immigration +456441,Industry,Industry +392232,Labour,Labour +509532,Regional Development,Regional Development +456442,Taxation and Finance,Taxation and Finance +341946,Budget,Budget +313126,Economic Development,Economic Development +313126,Justice and Law Enforcement,Justice and Law Enforcement +413284,Internal Trade,Internal Trade +413281,Research and Development,Research and Development +331070,Economic Development,Economic Development +331070,Infrastructure,Infrastructure +331070,Transportation,Transportation +313291,Security,Security +313329,Economic Development,Economic Development +359670,Education,Education +319143,Economic Development,Economic Development +330573,Government Procurement,Government Procurement +328529,Health,Health +320789,Industry,Industry +313509,Labour,Labour +324049,Agriculture,Agriculture +324049,Environment,Environment +539061,Climate,Climate +541291,Infrastructure,Infrastructure +348738,Energy,Energy +348738,Environment,Environment +358543,International Trade,International Trade +321922,Energy,Energy +321922,Environment,Environment +321922,Employment and Training,Employment and Training +321970,Immigration,Immigration +321974,International Trade,International Trade +354116,Energy,Energy +354116,Environment,Environment +318169,Energy,Energy +319172,Budget,Budget +319172,Justice and Law Enforcement,Justice and Law Enforcement +319174,Small Business,Small Business +334154,Health,Health +338718,Small Business,Small Business +328171,Small Business,Small Business +330824,Industry,Industry +318831,Health,Health +363824,Defence,Defence +366265,Economic Development,Economic Development +369569,Government Procurement,Government Procurement +314969,Industry,Industry +326657,Research and Development,Research and Development +314969,Security,Security +314690,Research and Development,Research and Development +314069,Municipalities,Municipalities +314070,Municipalities,Municipalities +325450,Municipalities,Municipalities +314089,International Trade,International Trade +332410,Infrastructure,Infrastructure +332410,Transportation,Transportation +324934,Government Procurement,Government Procurement +341111,Taxation and Finance,Taxation and Finance +502639,Industry,Industry +445890,Small Business,Small Business +377468,Tourism,Tourism +325086,Taxation and Finance,Taxation and Finance +529045,Economic Development,Economic Development +340413,Industry,Industry +340406,International Trade,International Trade +315829,International Relations,International Relations +357725,Health,Health +328210,Health,Health +339592,Health,Health +318072,Small Business,Small Business +318489,Consumer Issues,Consumer Issues +343019,Energy,Energy +343019,Industry,Industry +350281,Research and Development,Research and Development +482751,Environment,Environment +326070,Government Procurement,Government Procurement +370049,Consumer Issues,Consumer Issues +329904,Small Business,Small Business +335133,Infrastructure,Infrastructure +330170,Government Procurement,Government Procurement +383336,Research and Development,Research and Development +412776,Infrastructure,Infrastructure +388010,Transportation,Transportation +314653,Transportation,Transportation +334629,Transportation,Transportation +318712,International Trade,Commerce international +314750,Climate,Climate +314750,Economic Development,Economic Development +521491,Labour,Labour +317440,Agriculture,Agriculture +317441,Consumer Issues,Consumer Issues +317440,International Trade,International Trade +315158,Agriculture,Agriculture +419591,Agriculture,Agriculture +353822,International Trade,International Trade +334873,Sports,Sports +334873,Tourism,Tourisme +321805,Transportation,Transportation +315269,Employment and Training,Employment and Training +469267,Economic Development,Economic Development +439586,Transportation,Transportation +321850,Infrastructure,Infrastructure +340407,Health,Health +340403,Health,Health +340402,Health,Health +339412,Health,Health +339411,Health,Health +338972,Health,Health +335132,Health,Health +335131,Health,Health +338715,Small Business,Small Business +328170,Small Business,Small Business +315977,Small Business,Small Business +328172,Small Business,Small Business +361829,Defence,Defence +337192,Defence,Defence +326657,Defence,Defence +321289,Defence,Defence +392189,Defence,Defence +392071,Defence,Defence +364542,Defence,Defence +337192,Economic Development,Economic Development +321289,Economic Development,Economic Development +367565,Government Procurement,Government Procurement +366265,Government Procurement,Government Procurement +361829,Government Procurement,Government Procurement +356721,Government Procurement,Government Procurement +337192,Government Procurement,Government Procurement +326657,Government Procurement,Government Procurement +321289,Government Procurement,Government Procurement +314969,Government Procurement,Government Procurement +392189,Government Procurement,Government Procurement +392071,Government Procurement,Government Procurement +392189,Industry,Industry +392071,Industry,Industry +369569,Industry,Industry +360302,Industry,Industry +337192,Industry,Industry +326657,Industry,Industry +321289,Industry,Industry +321289,Research and Development,Research and Development +314969,Research and Development,Research and Development +392189,Security,Security +392071,Security,Security +367565,Security,Security +366265,Security,Security +361829,Security,Security +360302,Security,Security +358603,Security,Security +356723,Security,Security +356722,Security,Security +337192,Security,Security +326657,Security,Security +321289,Security,Security +320917,Security,Security +332409,Infrastructure,Infrastructure +318529,Infrastructure,Infrastructure +332409,Transportation,Transportation +318529,Transportation,Transportation +319917,Taxation and Finance,Taxation and Finance +319916,Taxation and Finance,Taxation and Finance +445889,Small Business,Small Business +445888,Small Business,Small Business +324006,Small Business,Small Business +405653,Small Business,Small Business +403060,Small Business,Small Business +377468,Small Business,Small Business +545116,Small Business,Small Business +534673,Small Business,Small Business +526922,Small Business,Small Business +518204,Small Business,Small Business +518200,Small Business,Small Business +502615,Small Business,Small Business +502606,Small Business,Small Business +534687,Tourism,Tourism +319913,Taxation and Finance,Taxation and Finance +319912,Taxation and Finance,Taxation and Finance +341106,Taxation and Finance,Taxation and Finance +330230,Taxation and Finance,Taxation and Finance +522678,Economic Development,Economic Development +507507,Economic Development,Economic Development +452078,Economic Development,Economic Development +543847,Economic Development,Economic Development +535048,Economic Development,Economic Development +529064,Economic Development,Economic Development +529060,Economic Development,Economic Development +340412,Industry,Industry +340406,Industry,Industry +340405,Industry,Industry +340404,Industry,Industry +340415,Industry,Industry +340414,Industry,Industry +340405,International Trade,International Trade +340404,International Trade,International Trade +340415,International Trade,International Trade +340414,International Trade,International Trade +340413,International Trade,International Trade +340412,International Trade,International Trade +355346,Health,Health +355345,Health,Health +338340,Health,Health +338338,Health,Health +338337,Health,Health +338336,Health,Health +338335,Health,Health +338331,Health,Health +338329,Health,Health +338251,Health,Health +338249,Health,Health +317650,Health,Health +355344,Health,Health +355343,Health,Health +355342,Health,Health +355341,Health,Health +355339,Health,Health +355338,Health,Health +355337,Health,Health +355336,Health,Health +355335,Health,Health +355333,Health,Health +355332,Health,Health +355330,Health,Health +355328,Health,Health +355325,Health,Health +353240,Health,Health +353239,Health,Health +353232,Health,Health +353231,Health,Health +353230,Health,Health +353229,Health,Health +353228,Health,Health +353227,Health,Health +353226,Health,Health +353225,Health,Health +353224,Health,Health +353223,Health,Health +353222,Health,Health +353221,Health,Health +348525,Health,Health +348524,Health,Health +348523,Health,Health +348522,Health,Health +347979,Health,Health +346417,Health,Health +346397,Health,Health +346380,Health,Health +346379,Health,Health +346377,Health,Health +344897,Health,Health +344896,Health,Health +344895,Health,Health +339900,Health,Health +339899,Health,Health +339898,Health,Health +339897,Health,Health +339895,Health,Health +339894,Health,Health +339802,Health,Health +339801,Health,Health +339800,Health,Health +339799,Health,Health +339798,Health,Health +339796,Health,Health +339795,Health,Health +339794,Health,Health +339793,Health,Health +339410,Health,Health +339250,Health,Health +339248,Health,Health +339246,Health,Health +338971,Health,Health +338970,Health,Health +338969,Health,Health +357727,Health,Health +328209,Health,Health +317649,Health,Health +415097,Health,Health +415011,Health,Health +354882,Health,Health +354881,Health,Health +354880,Health,Health +354546,Health,Health +348528,Health,Health +348527,Health,Health +348526,Health,Health +339409,Health,Health +328211,Health,Health +339591,Health,Health +322869,Health,Health +340018,Health,Health +340017,Health,Health +340016,Health,Health +340015,Health,Health +318070,Small Business,Small Business +318069,Small Business,Small Business +318077,Small Business,Small Business +318076,Small Business,Small Business +318075,Small Business,Small Business +318074,Small Business,Small Business +318073,Small Business,Small Business +343019,Consumer Issues,Consumer Issues +318489,Energy,Energy +318489,Industry,Industry +314609,Research and Development,Research and Development +397554,Research and Development,Research and Development +482737,Environment,Environment +474288,Environment,Environment +314611,Environment,Environment +514846,Environment,Environment +506432,Environment,Environment +500776,Environment,Environment +496734,Environment,Environment +496731,Environment,Environment +489365,Environment,Environment +489190,Environment,Environment +489188,Environment,Environment +326069,Government Procurement,Government Procurement +329904,Consumer Issues,Consumer Issues +370049,Small Business,Small Business +328130,Government Procurement,Government Procurement +328129,Government Procurement,Government Procurement +364387,Government Procurement,Government Procurement +347316,Government Procurement,Government Procurement +339218,Government Procurement,Government Procurement +337225,Government Procurement,Government Procurement +334887,Government Procurement,Government Procurement +334885,Government Procurement,Government Procurement +334884,Government Procurement,Government Procurement +383335,Research and Development,Research and Development +314629,Research and Development,Research and Development +384094,Research and Development,Research and Development +412765,Infrastructure,Infrastructure +410214,Infrastructure,Infrastructure +406866,Infrastructure,Infrastructure +401533,Infrastructure,Infrastructure +401532,Infrastructure,Infrastructure +401531,Infrastructure,Infrastructure +401530,Infrastructure,Infrastructure +401529,Infrastructure,Infrastructure +401528,Infrastructure,Infrastructure +401527,Infrastructure,Infrastructure +401526,Infrastructure,Infrastructure +401525,Infrastructure,Infrastructure +401524,Infrastructure,Infrastructure +401522,Infrastructure,Infrastructure +401521,Infrastructure,Infrastructure +401520,Infrastructure,Infrastructure +401519,Infrastructure,Infrastructure +401518,Infrastructure,Infrastructure +401516,Infrastructure,Infrastructure +401515,Infrastructure,Infrastructure +401513,Infrastructure,Infrastructure +398084,Infrastructure,Infrastructure +398083,Infrastructure,Infrastructure +395470,Infrastructure,Infrastructure +395072,Infrastructure,Infrastructure +391748,Infrastructure,Infrastructure +391747,Infrastructure,Infrastructure +391746,Infrastructure,Infrastructure +391744,Infrastructure,Infrastructure +391742,Infrastructure,Infrastructure +391741,Infrastructure,Infrastructure +388010,Infrastructure,Infrastructure +385937,Infrastructure,Infrastructure +383680,Infrastructure,Infrastructure +382589,Infrastructure,Infrastructure +378725,Infrastructure,Infrastructure +378724,Infrastructure,Infrastructure +378723,Infrastructure,Infrastructure +378722,Infrastructure,Infrastructure +378589,Infrastructure,Infrastructure +378588,Infrastructure,Infrastructure +378585,Infrastructure,Infrastructure +378583,Infrastructure,Infrastructure +378582,Infrastructure,Infrastructure +378580,Infrastructure,Infrastructure +378573,Infrastructure,Infrastructure +376415,Infrastructure,Infrastructure +370508,Infrastructure,Infrastructure +370401,Infrastructure,Infrastructure +370399,Infrastructure,Infrastructure +343964,Infrastructure,Infrastructure +343962,Infrastructure,Infrastructure +343961,Infrastructure,Infrastructure +343960,Infrastructure,Infrastructure +343957,Infrastructure,Infrastructure +343942,Infrastructure,Infrastructure +343568,Infrastructure,Infrastructure +430300,Infrastructure,Infrastructure +428180,Infrastructure,Infrastructure +428178,Infrastructure,Infrastructure +428176,Infrastructure,Infrastructure +428175,Infrastructure,Infrastructure +428173,Infrastructure,Infrastructure +428172,Infrastructure,Infrastructure +428170,Infrastructure,Infrastructure +428167,Infrastructure,Infrastructure +428165,Infrastructure,Infrastructure +428162,Infrastructure,Infrastructure +428161,Infrastructure,Infrastructure +428159,Infrastructure,Infrastructure +428158,Infrastructure,Infrastructure +428156,Infrastructure,Infrastructure +428155,Infrastructure,Infrastructure +428153,Infrastructure,Infrastructure +428151,Infrastructure,Infrastructure +428147,Infrastructure,Infrastructure +428146,Infrastructure,Infrastructure +425712,Infrastructure,Infrastructure +419036,Infrastructure,Infrastructure +417574,Infrastructure,Infrastructure +416141,Infrastructure,Infrastructure +416137,Infrastructure,Infrastructure +385937,Transportation,Transportation +383680,Transportation,Transportation +382589,Transportation,Transportation +378725,Transportation,Transportation +378724,Transportation,Transportation +378723,Transportation,Transportation +378722,Transportation,Transportation +378589,Transportation,Transportation +378588,Transportation,Transportation +378585,Transportation,Transportation +378583,Transportation,Transportation +378582,Transportation,Transportation +378580,Transportation,Transportation +378573,Transportation,Transportation +376415,Transportation,Transportation +370508,Transportation,Transportation +370401,Transportation,Transportation +370399,Transportation,Transportation +358202,Transportation,Transportation +351402,Transportation,Transportation +351399,Transportation,Transportation +351393,Transportation,Transportation +348899,Transportation,Transportation +344497,Transportation,Transportation +343964,Transportation,Transportation +343962,Transportation,Transportation +343961,Transportation,Transportation +343960,Transportation,Transportation +343957,Transportation,Transportation +343942,Transportation,Transportation +343568,Transportation,Transportation +444044,Transportation,Transportation +437310,Transportation,Transportation +437309,Transportation,Transportation +437308,Transportation,Transportation +437306,Transportation,Transportation +430300,Transportation,Transportation +428180,Transportation,Transportation +428178,Transportation,Transportation +428176,Transportation,Transportation +428175,Transportation,Transportation +428173,Transportation,Transportation +428172,Transportation,Transportation +428170,Transportation,Transportation +428167,Transportation,Transportation +428165,Transportation,Transportation +428162,Transportation,Transportation +428161,Transportation,Transportation +428159,Transportation,Transportation +428158,Transportation,Transportation +428156,Transportation,Transportation +428155,Transportation,Transportation +428153,Transportation,Transportation +428151,Transportation,Transportation +428147,Transportation,Transportation +428146,Transportation,Transportation +425712,Transportation,Transportation +424567,Transportation,Transportation +419036,Transportation,Transportation +419033,Transportation,Transportation +417574,Transportation,Transportation +412776,Transportation,Transportation +412771,Transportation,Transportation +412765,Transportation,Transportation +410214,Transportation,Transportation +401533,Transportation,Transportation +401532,Transportation,Transportation +401531,Transportation,Transportation +401530,Transportation,Transportation +401529,Transportation,Transportation +401528,Transportation,Transportation +401527,Transportation,Transportation +401526,Transportation,Transportation +401525,Transportation,Transportation +401524,Transportation,Transportation +401522,Transportation,Transportation +401521,Transportation,Transportation +401520,Transportation,Transportation +401519,Transportation,Transportation +401518,Transportation,Transportation +401516,Transportation,Transportation +401515,Transportation,Transportation +401513,Transportation,Transportation +400922,Transportation,Transportation +400224,Transportation,Transportation +398085,Transportation,Transportation +398083,Transportation,Transportation +398082,Transportation,Transportation +395072,Transportation,Transportation +391748,Transportation,Transportation +391747,Transportation,Transportation +391744,Transportation,Transportation +391741,Transportation,Transportation +494513,Transportation,Transportation +330948,Transportation,Transportation +314655,Transportation,Transportation +318710,International Trade,Commerce international +318709,International Trade,Commerce international +340431,International Trade,Commerce international +335069,International Trade,Commerce international +333838,International Trade,Commerce international +321790,International Trade,Commerce international +321789,International Trade,Commerce international +518493,Labour,Labour +503695,Labour,Labour +331486,Labour,Labour +330447,Labour,Labour +386782,Labour,Labour +361946,Labour,Labour +336312,Labour,Labour +531079,Labour,Labour +531073,Labour,Labour +531071,Labour,Labour +531065,Labour,Labour +531064,Labour,Labour +317439,Agriculture,Agriculture +348197,Agriculture,Agriculture +317441,Agriculture,Agriculture +317440,Consumer Issues,Consumer Issues +317439,Consumer Issues,Consumer Issues +317439,International Trade,International Trade +348197,International Trade,International Trade +317441,International Trade,International Trade +315157,Agriculture,Agriculture +315156,Agriculture,Agriculture +315155,Agriculture,Agriculture +395044,Agriculture,Agriculture +395043,Agriculture,Agriculture +315166,Agriculture,Agriculture +315165,Agriculture,Agriculture +315164,Agriculture,Agriculture +315163,Agriculture,Agriculture +369909,Agriculture,Agriculture +369907,Agriculture,Agriculture +369906,Agriculture,Agriculture +419593,Agriculture,Agriculture +353820,International Trade,International Trade +433170,International Trade,International Trade +329597,International Trade,International Trade +315189,International Trade,International Trade +469265,Economic Development,Economic Development +469263,Economic Development,Economic Development +364354,Economic Development,Economic Development +360903,Economic Development,Economic Development +359142,Economic Development,Economic Development +331792,Economic Development,Economic Development +392912,Economic Development,Economic Development +370481,Economic Development,Economic Development +536496,Economic Development,Economic Development +536494,Economic Development,Economic Development +486076,Economic Development,Economic Development +480918,Economic Development,Economic Development +474336,Economic Development,Economic Development +439583,Transportation,Transportation +439574,Transportation,Transportation +435905,Transportation,Transportation +435776,Transportation,Transportation +433826,Transportation,Transportation +433825,Transportation,Transportation +426530,Transportation,Transportation +426515,Transportation,Transportation +482137,Transportation,Transportation +450223,Transportation,Transportation +448236,Transportation,Transportation +448235,Transportation,Transportation +448234,Transportation,Transportation +445618,Transportation,Transportation +445617,Transportation,Transportation +445614,Transportation,Transportation +445611,Transportation,Transportation +445608,Transportation,Transportation +443942,Transportation,Transportation +443940,Transportation,Transportation +443936,Transportation,Transportation +443934,Transportation,Transportation +439595,Transportation,Transportation +411368,International Trade,Commerce international +407773,International Trade,Commerce international +344917,International Trade,Commerce international +404375,International Trade,Commerce international +395858,International Trade,Commerce international +378837,International Trade,Commerce international +378836,International Trade,Commerce international +368792,International Trade,Commerce international +362295,International Trade,Commerce international +362294,International Trade,Commerce international +362292,International Trade,Commerce international +362291,International Trade,Commerce international +362290,International Trade,Commerce international +362289,International Trade,Commerce international +362287,International Trade,Commerce international +362286,International Trade,Commerce international +362285,International Trade,Commerce international +362284,International Trade,Commerce international +359382,International Trade,Commerce international +359278,International Trade,Commerce international +359277,International Trade,Commerce international +359276,International Trade,Commerce international +359275,International Trade,Commerce international +359274,International Trade,Commerce international +359273,International Trade,Commerce international +359272,International Trade,Commerce international +359271,International Trade,Commerce international +359270,International Trade,Commerce international +359269,International Trade,Commerce international +359268,International Trade,Commerce international +359267,International Trade,Commerce international +359266,International Trade,Commerce international +359265,International Trade,Commerce international +359264,International Trade,Commerce international +359263,International Trade,Commerce international +359262,International Trade,Commerce international +359062,International Trade,Commerce international +539435,International Trade,Commerce international +514549,International Trade,Commerce international +477078,International Trade,Commerce international +459911,International Trade,Commerce international +436940,International Trade,Commerce international +436939,International Trade,Commerce international +434741,International Trade,Commerce international +434740,International Trade,Commerce international +434739,International Trade,Commerce international +432410,International Trade,Commerce international +429055,International Trade,Commerce international +423176,International Trade,Commerce international +423174,International Trade,Commerce international +421354,International Trade,Commerce international +419529,International Trade,Commerce international +415103,International Trade,Commerce international +411383,International Trade,Commerce international +348243,Fisheries,Pêches +348240,Fisheries,Pêches +344759,Fisheries,Pêches +341641,Fisheries,Pêches +341637,Fisheries,Pêches +341631,Fisheries,Pêches +336950,Fisheries,Pêches +336949,Fisheries,Pêches +334842,Fisheries,Pêches +331292,Fisheries,Pêches +331291,Fisheries,Pêches +329978,Fisheries,Pêches +326370,Fisheries,Pêches +320730,Fisheries,Pêches +320729,Fisheries,Pêches +319093,Fisheries,Pêches +319090,Fisheries,Pêches +319073,Fisheries,Pêches +319072,Fisheries,Pêches +407451,Fisheries,Pêches +407448,Fisheries,Pêches +393454,Fisheries,Pêches +393453,Fisheries,Pêches +389195,Fisheries,Pêches +389194,Fisheries,Pêches +389192,Fisheries,Pêches +389191,Fisheries,Pêches +387098,Fisheries,Pêches +387097,Fisheries,Pêches +387096,Fisheries,Pêches +387095,Fisheries,Pêches +387084,Fisheries,Pêches +387083,Fisheries,Pêches +382036,Fisheries,Pêches +381895,Fisheries,Pêches +381894,Fisheries,Pêches +371185,Fisheries,Pêches +371183,Fisheries,Pêches +371182,Fisheries,Pêches +363003,Fisheries,Pêches +357610,Fisheries,Pêches +356985,Fisheries,Pêches +356983,Fisheries,Pêches +356982,Fisheries,Pêches +356517,Fisheries,Pêches +352926,Fisheries,Pêches +352908,Fisheries,Pêches +352905,Fisheries,Pêches +348249,Fisheries,Pêches +348248,Fisheries,Pêches +511795,Labour,Labour +511793,Labour,Labour +315556,Labour,Labour +315555,Labour,Labour +384650,Labour,Labour +520203,Labour,Labour +511797,Labour,Labour +315619,Government Procurement,Government Procurement +364797,Employment and Training,Employment and Training +488798,Employment and Training,Employment and Training +339992,Employment and Training,Employment and Training +334591,Employment and Training,Employment and Training +488931,Energy,Energy +470121,Energy,Energy +470107,Energy,Energy +470103,Energy,Energy +461296,Energy,Energy +454676,Energy,Energy +447160,Energy,Energy +441073,Energy,Energy +441072,Energy,Energy +441068,Energy,Energy +441066,Energy,Energy +434821,Energy,Energy +432976,Energy,Energy +432833,Energy,Energy +424712,Energy,Energy +414697,Energy,Energy +404578,Energy,Energy +401440,Energy,Energy +401439,Energy,Energy +389489,Energy,Energy +386673,Energy,Energy +373497,Energy,Energy +339997,Energy,Energy +339996,Energy,Energy +401440,Environment,Environment +401439,Environment,Environment +389483,Environment,Environment +378079,Environment,Environment +370621,Environment,Environment +352433,Environment,Environment +349897,Environment,Environment +347890,Environment,Environment +347888,Environment,Environment +339997,Environment,Environment +339996,Environment,Environment +339995,Environment,Environment +336749,Environment,Environment +333097,Environment,Environment +328893,Environment,Environment +328890,Environment,Environment +327688,Environment,Environment +323109,Environment,Environment +320650,Environment,Environment +316019,Environment,Environment +501257,Environment,Environment +461296,Environment,Environment +454677,Environment,Environment +454676,Environment,Environment +447160,Environment,Environment +441069,Environment,Environment +441068,Environment,Environment +441066,Environment,Environment +434821,Environment,Environment +432976,Environment,Environment +432833,Environment,Environment +427659,Environment,Environment +424712,Environment,Environment +423172,Environment,Environment +421050,Environment,Environment +414698,Environment,Environment +414697,Environment,Environment +411491,Environment,Environment +405998,Environment,Environment +405997,Environment,Environment +437286,Industry,Industry +437262,Industry,Industry +334591,Labour,Labour +389483,Labour,Labour +497136,Mining,Mining +494292,Mining,Mining +364797,Mining,Mining +339995,Mining,Mining +339992,Mining,Mining +494291,Mining,Mining +494290,Mining,Mining +488803,Mining,Mining +488802,Mining,Mining +488801,Mining,Mining +488799,Mining,Mining +488798,Mining,Mining +488795,Mining,Mining +470107,Mining,Mining +466452,Mining,Mining +461296,Mining,Mining +454677,Mining,Mining +454676,Mining,Mining +447160,Mining,Mining +441069,Mining,Mining +434821,Mining,Mining +427659,Mining,Mining +423172,Mining,Mining +414698,Mining,Mining +411491,Mining,Mining +405998,Mining,Mining +405997,Mining,Mining +401439,Mining,Mining +389483,Mining,Mining +386668,Mining,Mining +378079,Mining,Mining +339996,Research and Development,Research and Development +414698,Research and Development,Research and Development +389483,Research and Development,Research and Development +386673,Research and Development,Research and Development +373497,Research and Development,Research and Development +370621,Research and Development,Research and Development +364797,Research and Development,Research and Development +389483,Taxation and Finance,Taxation and Finance +370621,Taxation and Finance,Taxation and Finance +470121,Taxation and Finance,Taxation and Finance +318473,Health,Health +372699,Health,Health +370896,Health,Health +370618,Health,Health +370617,Health,Health +318476,Health,Health +318475,Health,Health +352361,Small Business,Small Business +352360,Small Business,Small Business +352363,Small Business,Small Business +352360,Taxation and Finance,Taxation and Finance +357147,Taxation and Finance,Taxation and Finance +352363,Taxation and Finance,Taxation and Finance +352362,Taxation and Finance,Taxation and Finance +409600,International Trade,International Trade +409587,International Trade,International Trade +376594,International Trade,International Trade +318233,International Trade,International Trade +440114,International Trade,International Trade +430243,International Trade,International Trade +430238,International Trade,International Trade +427339,International Trade,International Trade +424821,International Trade,International Trade +420686,International Trade,International Trade +418639,International Trade,International Trade +416160,International Trade,International Trade +416134,International Trade,International Trade +412974,International Trade,International Trade +412972,International Trade,International Trade +324176,Infrastructure,Infrastructure +324132,Infrastructure,Infrastructure +324333,Infrastructure,Infrastructure +376696,International Trade,International Trade +376695,International Trade,International Trade +376693,International Trade,International Trade +376689,International Trade,International Trade +374100,International Trade,International Trade +373980,International Trade,International Trade +373979,International Trade,International Trade +373978,International Trade,International Trade +373977,International Trade,International Trade +373976,International Trade,International Trade +373975,International Trade,International Trade +373974,International Trade,International Trade +373970,International Trade,International Trade +373969,International Trade,International Trade +373965,International Trade,International Trade +373959,International Trade,International Trade +373954,International Trade,International Trade +373952,International Trade,International Trade +373950,International Trade,International Trade +373949,International Trade,International Trade +373948,International Trade,International Trade +373947,International Trade,International Trade +373946,International Trade,International Trade +373942,International Trade,International Trade +373912,International Trade,International Trade +373898,International Trade,International Trade +373877,International Trade,International Trade +371746,International Trade,International Trade +371745,International Trade,International Trade +371742,International Trade,International Trade +371738,International Trade,International Trade +371735,International Trade,International Trade +371734,International Trade,International Trade +371730,International Trade,International Trade +368778,International Trade,International Trade +368777,International Trade,International Trade +355997,International Trade,International Trade +355992,International Trade,International Trade +350948,International Trade,International Trade +350947,International Trade,International Trade +350944,International Trade,International Trade +344641,International Trade,International Trade +344640,International Trade,International Trade +344639,International Trade,International Trade +344638,International Trade,International Trade +343537,International Trade,International Trade +342083,International Trade,International Trade +342081,International Trade,International Trade +342080,International Trade,International Trade +342079,International Trade,International Trade +342077,International Trade,International Trade +342019,International Trade,International Trade +342017,International Trade,International Trade +342015,International Trade,International Trade +342014,International Trade,International Trade +342012,International Trade,International Trade +342010,International Trade,International Trade +342002,International Trade,International Trade +342001,International Trade,International Trade +336241,International Trade,International Trade +336240,International Trade,International Trade +336239,International Trade,International Trade +336238,International Trade,International Trade +336237,International Trade,International Trade +336236,International Trade,International Trade +336235,International Trade,International Trade +333575,International Trade,International Trade +333574,International Trade,International Trade +333573,International Trade,International Trade +329893,International Trade,International Trade +329892,International Trade,International Trade +329891,International Trade,International Trade +329890,International Trade,International Trade +329887,International Trade,International Trade +319120,International Trade,International Trade +316045,International Trade,International Trade +417148,International Trade,International Trade +417147,International Trade,International Trade +417146,International Trade,International Trade +415478,International Trade,International Trade +409074,International Trade,International Trade +407532,International Trade,International Trade +400475,International Trade,International Trade +396861,International Trade,International Trade +396860,International Trade,International Trade +394659,International Trade,International Trade +394658,International Trade,International Trade +394657,International Trade,International Trade +392282,International Trade,International Trade +392281,International Trade,International Trade +390072,International Trade,International Trade +384818,International Trade,International Trade +384812,International Trade,International Trade +383260,International Trade,International Trade +382305,International Trade,International Trade +330514,Fisheries,Fisheries +316386,Fisheries,Fisheries +316789,Labour,Labour +316749,Labour,Labour +351044,Labour,Labour +316749,Tourism,Tourism +381425,Economic Development,Economic Development +498229,Climate,Climate +543845,Climate,Climate +447257,Climate,Climate +444964,Climate,Climate +444963,Climate,Climate +444962,Climate,Climate +394030,Climate,Climate +394024,Climate,Climate +394020,Climate,Climate +394013,Climate,Climate +394008,Climate,Climate +394006,Climate,Climate +387720,Climate,Climate +387698,Climate,Climate +385110,Climate,Climate +385052,Climate,Climate +383909,Climate,Climate +537812,Climate,Climate +535048,Climate,Climate +532088,Climate,Climate +532086,Climate,Climate +532085,Climate,Climate +532084,Climate,Climate +532082,Climate,Climate +532081,Climate,Climate +532080,Climate,Climate +532079,Climate,Climate +532076,Climate,Climate +532075,Climate,Climate +529064,Climate,Climate +529060,Climate,Climate +529045,Climate,Climate +526002,Climate,Climate +410833,Taxation and Finance,Taxation and Finance +462265,Taxation and Finance,Taxation and Finance +365579,Taxation and Finance,Taxation and Finance +357948,Taxation and Finance,Taxation and Finance +348422,Taxation and Finance,Taxation and Finance +325181,Education,Education +325180,Education,Education +325183,Education,Education +325191,Education,Education +325190,Education,Education +325193,Education,Education +347595,Agriculture,Agriculture +317395,Agriculture,Agriculture +347595,International Trade,International Trade +317395,International Trade,International Trade +347592,Agriculture,Agriculture +347586,Agriculture,Agriculture +317394,Agriculture,Agriculture +407118,Agriculture,Agriculture +394836,Agriculture,Agriculture +394834,Agriculture,Agriculture +380181,Agriculture,Agriculture +380181,International Trade,International Trade +369716,International Trade,International Trade +347592,International Trade,International Trade +347586,International Trade,International Trade +329849,International Trade,International Trade +329289,International Trade,International Trade +317394,International Trade,International Trade +407118,International Trade,International Trade +394836,International Trade,International Trade +497296,Agriculture,Agriculture +497295,Agriculture,Agriculture +317392,Agriculture,Agriculture +471880,Agriculture,Agriculture +463806,Agriculture,Agriculture +463805,Agriculture,Agriculture +445817,Agriculture,Agriculture +445816,Agriculture,Agriculture +524831,Agriculture,Agriculture +524830,Agriculture,Agriculture +524827,Agriculture,Agriculture +524827,International Trade,International Trade +524826,International Trade,International Trade +317392,International Trade,International Trade +471880,International Trade,International Trade +463806,International Trade,International Trade +463805,International Trade,International Trade +445817,International Trade,International Trade +445816,International Trade,International Trade +524831,International Trade,International Trade +317715,Internal Trade,Internal Trade +322337,Financial Institutions,Financial Institutions +347447,Consumer Issues,Consumer Issues +427062,Consumer Issues,Consumer Issues +319775,Consumer Issues,Consumer Issues +349404,Consumer Issues,Consumer Issues +349403,Consumer Issues,Consumer Issues +349402,Consumer Issues,Consumer Issues +349401,Consumer Issues,Consumer Issues +347454,Consumer Issues,Consumer Issues +347453,Consumer Issues,Consumer Issues +410076,Employment and Training,Employment and Training +506519,Employment and Training,Employment and Training +347452,Employment and Training,Employment and Training +319775,Employment and Training,Employment and Training +319773,Employment and Training,Employment and Training +319770,Employment and Training,Employment and Training +396539,Environment,Environment +396509,Environment,Environment +319776,Environment,Environment +319775,Environment,Environment +319774,Environment,Environment +319773,Environment,Environment +319772,Environment,Environment +319770,Environment,Environment +319769,Environment,Environment +349404,Environment,Environment +349403,Environment,Environment +349402,Environment,Environment +349401,Environment,Environment +349400,Environment,Environment +347454,Environment,Environment +347453,Environment,Environment +347452,Environment,Environment +347450,Environment,Environment +347447,Environment,Environment +427062,Environment,Environment +410076,Environment,Environment +410075,Environment,Environment +410073,Environment,Environment +334872,Industry,Industry +334871,Industry,Industry +325331,Industry,Industry +368357,Industry,Industry +366447,Industry,Industry +360978,Industry,Industry +360977,Industry,Industry +360975,Industry,Industry +360972,Industry,Industry +373490,Constitutional Issues,Constitutional Issues +373489,Constitutional Issues,Constitutional Issues +335727,Constitutional Issues,Constitutional Issues +322336,Constitutional Issues,Constitutional Issues +322334,Constitutional Issues,Constitutional Issues +405996,Constitutional Issues,Constitutional Issues +401088,Constitutional Issues,Constitutional Issues +401087,Constitutional Issues,Constitutional Issues +401086,Constitutional Issues,Constitutional Issues +401085,Constitutional Issues,Constitutional Issues +401084,Constitutional Issues,Constitutional Issues +401083,Constitutional Issues,Constitutional Issues +401082,Constitutional Issues,Constitutional Issues +401081,Constitutional Issues,Constitutional Issues +397184,Constitutional Issues,Constitutional Issues +383917,Constitutional Issues,Constitutional Issues +383916,Constitutional Issues,Constitutional Issues +383914,Constitutional Issues,Constitutional Issues +377196,Constitutional Issues,Constitutional Issues +377193,Constitutional Issues,Constitutional Issues +376910,Constitutional Issues,Constitutional Issues +373494,Constitutional Issues,Constitutional Issues +373493,Constitutional Issues,Constitutional Issues +373492,Constitutional Issues,Constitutional Issues +325180,Financial Institutions,Financial Institutions +333874,Financial Institutions,Financial Institutions +333873,Financial Institutions,Financial Institutions +330571,Financial Institutions,Financial Institutions +330570,Financial Institutions,Financial Institutions +325183,Financial Institutions,Financial Institutions +325182,Financial Institutions,Financial Institutions +325181,Taxation and Finance,Taxation and Finance +325180,Taxation and Finance,Taxation and Finance +325183,Taxation and Finance,Taxation and Finance +325191,Financial Institutions,Financial Institutions +325190,Financial Institutions,Financial Institutions +333876,Financial Institutions,Financial Institutions +333875,Financial Institutions,Financial Institutions +330569,Financial Institutions,Financial Institutions +330567,Financial Institutions,Financial Institutions +325193,Financial Institutions,Financial Institutions +325191,Taxation and Finance,Taxation and Finance +325190,Taxation and Finance,Taxation and Finance +325193,Taxation and Finance,Taxation and Finance +370077,Health,Health +370076,Health,Health +366702,Health,Health +366700,Health,Health +360373,Health,Health +344119,Health,Health +344118,Health,Health +332297,Health,Health +332295,Health,Health +317969,Infrastructure,Infrastructure +342923,Infrastructure,Infrastructure +329329,Infrastructure,Infrastructure +326574,Infrastructure,Infrastructure +322263,Infrastructure,Infrastructure +321692,Infrastructure,Infrastructure +348893,Infrastructure,Infrastructure +342920,Infrastructure,Infrastructure +322267,Infrastructure,Infrastructure +321691,Infrastructure,Infrastructure +321689,Infrastructure,Infrastructure +317970,Infrastructure,Infrastructure +342919,Regional Development,Regional Development +321691,Regional Development,Regional Development +317971,Regional Development,Regional Development +351929,Regional Development,Regional Development +351928,Regional Development,Regional Development +351927,Regional Development,Regional Development +351926,Regional Development,Regional Development +351925,Regional Development,Regional Development +351924,Regional Development,Regional Development +351923,Regional Development,Regional Development +348897,Regional Development,Regional Development +348893,Regional Development,Regional Development +348890,Regional Development,Regional Development +342925,Regional Development,Regional Development +342924,Regional Development,Regional Development +324037,Constitutional Issues,Constitutional Issues +321169,Constitutional Issues,Constitutional Issues +329853,Constitutional Issues,Constitutional Issues +317972,Infrastructure,Infrastructure +322299,Infrastructure,Infrastructure +318047,Security,Security +318040,Security,Security +442563,Economic Development,Economic Development +429059,Economic Development,Economic Development +442563,Environment,Environment +429059,Environment,Environment +442563,Fisheries,Fisheries +442565,Forestry,Forestry +442563,Forestry,Forestry +442563,International Trade,International Trade +322146,Health,Health +322144,Health,Health +515687,Immigration,Immigration +489709,Immigration,Immigration +321229,Immigration,Immigration +318449,Immigration,Immigration +438634,Immigration,Immigration +423845,Immigration,Immigration +423841,Immigration,Immigration +415737,Immigration,Immigration +415736,Immigration,Immigration +415733,Immigration,Immigration +409617,Immigration,Immigration +406823,Immigration,Immigration +368547,Agriculture,Agriculture +466012,Agriculture,Agriculture +365950,Agriculture,Agriculture +347680,Agriculture,Agriculture +347679,Agriculture,Agriculture +347678,Agriculture,Agriculture +347677,Agriculture,Agriculture +347676,Agriculture,Agriculture +347675,Agriculture,Agriculture +319634,Agriculture,Agriculture +319633,Agriculture,Agriculture +319632,Agriculture,Agriculture +319631,Agriculture,Agriculture +461057,Agriculture,Agriculture +437492,Agriculture,Agriculture +437490,Agriculture,Agriculture +418707,Agriculture,Agriculture +418706,Agriculture,Agriculture +370340,Agriculture,Agriculture +368552,Agriculture,Agriculture +368551,Agriculture,Agriculture +368550,Agriculture,Agriculture +321860,Taxation and Finance,Taxation and Finance +321609,Taxation and Finance,Taxation and Finance +322745,Taxation and Finance,Taxation and Finance +322744,Taxation and Finance,Taxation and Finance +322743,Taxation and Finance,Taxation and Finance +322741,Taxation and Finance,Taxation and Finance +322740,Taxation and Finance,Taxation and Finance +322739,Taxation and Finance,Taxation and Finance +322737,Taxation and Finance,Taxation and Finance +322736,Taxation and Finance,Taxation and Finance +322735,Taxation and Finance,Taxation and Finance +322734,Taxation and Finance,Taxation and Finance +322733,Taxation and Finance,Taxation and Finance +322732,Taxation and Finance,Taxation and Finance +322731,Taxation and Finance,Taxation and Finance +322730,Taxation and Finance,Taxation and Finance +322729,Taxation and Finance,Taxation and Finance +321868,Taxation and Finance,Taxation and Finance +321866,Taxation and Finance,Taxation and Finance +321862,Taxation and Finance,Taxation and Finance +321935,Transportation,Transportation +321934,Transportation,Transportation +408507,International Trade,International Trade +408316,International Trade,International Trade +400176,International Trade,International Trade +399497,International Trade,International Trade +399443,International Trade,International Trade +399322,International Trade,International Trade +393298,International Trade,International Trade +322469,International Trade,International Trade +511903,Research and Development,Research and Development +511900,Research and Development,Research and Development +398979,Research and Development,Research and Development +398927,Research and Development,Research and Development +398923,Research and Development,Research and Development +395855,Research and Development,Research and Development +389520,Research and Development,Research and Development +389519,Research and Development,Research and Development +389518,Research and Development,Research and Development +389516,Research and Development,Research and Development +389515,Research and Development,Research and Development +389514,Research and Development,Research and Development +389513,Research and Development,Research and Development +389511,Research and Development,Research and Development +389510,Research and Development,Research and Development +389508,Research and Development,Research and Development +389507,Research and Development,Research and Development +389505,Research and Development,Research and Development +389504,Research and Development,Research and Development +389503,Research and Development,Research and Development +389502,Research and Development,Research and Development +389500,Research and Development,Research and Development +389499,Research and Development,Research and Development +389494,Research and Development,Research and Development +389493,Research and Development,Research and Development +389490,Research and Development,Research and Development +389486,Research and Development,Research and Development +389482,Research and Development,Research and Development +389481,Research and Development,Research and Development +384536,Research and Development,Research and Development +383002,Research and Development,Research and Development +377908,Research and Development,Research and Development +377907,Research and Development,Research and Development +377906,Research and Development,Research and Development +377905,Research and Development,Research and Development +377904,Research and Development,Research and Development +377674,Research and Development,Research and Development +374208,Research and Development,Research and Development +374193,Research and Development,Research and Development +373120,Research and Development,Research and Development +371510,Research and Development,Research and Development +371506,Research and Development,Research and Development +371263,Research and Development,Research and Development +371260,Research and Development,Research and Development +371258,Research and Development,Research and Development +371255,Research and Development,Research and Development +371253,Research and Development,Research and Development +371250,Research and Development,Research and Development +371248,Research and Development,Research and Development +371247,Research and Development,Research and Development +371245,Research and Development,Research and Development +371244,Research and Development,Research and Development +371243,Research and Development,Research and Development +371242,Research and Development,Research and Development +371241,Research and Development,Research and Development +371240,Research and Development,Research and Development +371237,Research and Development,Research and Development +371235,Research and Development,Research and Development +371232,Research and Development,Research and Development +371206,Research and Development,Research and Development +371205,Research and Development,Research and Development +369617,Research and Development,Research and Development +369615,Research and Development,Research and Development +347696,Research and Development,Research and Development +347695,Research and Development,Research and Development +347693,Research and Development,Research and Development +336225,Research and Development,Research and Development +333709,Research and Development,Research and Development +333698,Research and Development,Research and Development +328929,Research and Development,Research and Development +327489,Research and Development,Research and Development +327486,Research and Development,Research and Development +323029,Research and Development,Research and Development +318803,Research and Development,Research and Development +498898,Research and Development,Research and Development +488225,Research and Development,Research and Development +488223,Research and Development,Research and Development +488221,Research and Development,Research and Development +488219,Research and Development,Research and Development +488218,Research and Development,Research and Development +488214,Research and Development,Research and Development +488212,Research and Development,Research and Development +488210,Research and Development,Research and Development +488208,Research and Development,Research and Development +488206,Research and Development,Research and Development +488205,Research and Development,Research and Development +488204,Research and Development,Research and Development +488203,Research and Development,Research and Development +488201,Research and Development,Research and Development +488199,Research and Development,Research and Development +488196,Research and Development,Research and Development +488190,Research and Development,Research and Development +488182,Research and Development,Research and Development +439406,Research and Development,Research and Development +439404,Research and Development,Research and Development +439400,Research and Development,Research and Development +439271,Research and Development,Research and Development +439267,Research and Development,Research and Development +439261,Research and Development,Research and Development +439256,Research and Development,Research and Development +439252,Research and Development,Research and Development +439249,Research and Development,Research and Development +439244,Research and Development,Research and Development +439240,Research and Development,Research and Development +439235,Research and Development,Research and Development +439232,Research and Development,Research and Development +439217,Research and Development,Research and Development +439085,Research and Development,Research and Development +439081,Research and Development,Research and Development +439074,Research and Development,Research and Development +438628,Research and Development,Research and Development +438623,Research and Development,Research and Development +438617,Research and Development,Research and Development +437376,Research and Development,Research and Development +437373,Research and Development,Research and Development +437366,Research and Development,Research and Development +437363,Research and Development,Research and Development +432030,Research and Development,Research and Development +432006,Research and Development,Research and Development +430297,Research and Development,Research and Development +430292,Research and Development,Research and Development +427946,Research and Development,Research and Development +427939,Research and Development,Research and Development +425822,Research and Development,Research and Development +425257,Research and Development,Research and Development +425256,Research and Development,Research and Development +424563,Research and Development,Research and Development +424207,Research and Development,Research and Development +422850,Research and Development,Research and Development +422034,Research and Development,Research and Development +422032,Research and Development,Research and Development +422027,Research and Development,Research and Development +422021,Research and Development,Research and Development +422019,Research and Development,Research and Development +422018,Research and Development,Research and Development +422017,Research and Development,Research and Development +418392,Research and Development,Research and Development +417749,Research and Development,Research and Development +416916,Research and Development,Research and Development +416900,Research and Development,Research and Development +416873,Research and Development,Research and Development +414158,Research and Development,Research and Development +414154,Research and Development,Research and Development +414151,Research and Development,Research and Development +414150,Research and Development,Research and Development +411835,Research and Development,Research and Development +411558,Research and Development,Research and Development +411557,Research and Development,Research and Development +411553,Research and Development,Research and Development +411550,Research and Development,Research and Development +411549,Research and Development,Research and Development +411548,Research and Development,Research and Development +411546,Research and Development,Research and Development +411545,Research and Development,Research and Development +411544,Research and Development,Research and Development +411543,Research and Development,Research and Development +411542,Research and Development,Research and Development +411540,Research and Development,Research and Development +411539,Research and Development,Research and Development +411538,Research and Development,Research and Development +411536,Research and Development,Research and Development +411535,Research and Development,Research and Development +411534,Research and Development,Research and Development +411533,Research and Development,Research and Development +411530,Research and Development,Research and Development +411527,Research and Development,Research and Development +411524,Research and Development,Research and Development +411523,Research and Development,Research and Development +408107,Research and Development,Research and Development +408022,Research and Development,Research and Development +408021,Research and Development,Research and Development +408017,Research and Development,Research and Development +408002,Research and Development,Research and Development +406038,Research and Development,Research and Development +406037,Research and Development,Research and Development +406036,Research and Development,Research and Development +406034,Research and Development,Research and Development +404107,Research and Development,Research and Development +404099,Research and Development,Research and Development +400905,Research and Development,Research and Development +400857,Research and Development,Research and Development +468946,Employment and Training,Employment and Training +458930,Employment and Training,Employment and Training +369997,Employment and Training,Employment and Training +369993,Employment and Training,Employment and Training +352640,Employment and Training,Employment and Training +349885,Employment and Training,Employment and Training +349884,Employment and Training,Employment and Training +349883,Employment and Training,Employment and Training +349881,Employment and Training,Employment and Training +349878,Employment and Training,Employment and Training +335410,Employment and Training,Employment and Training +335408,Employment and Training,Employment and Training +488781,Employment and Training,Employment and Training +476531,Employment and Training,Employment and Training +476516,Employment and Training,Employment and Training +476515,Employment and Training,Employment and Training +474446,Employment and Training,Employment and Training +476515,Immigration,Immigration +382947,Immigration,Immigration +352640,Immigration,Immigration +349885,Immigration,Immigration +349881,Immigration,Immigration +349880,Immigration,Immigration +349878,Immigration,Immigration +335412,Immigration,Immigration +335410,Immigration,Immigration +437331,Intellectual Property,Intellectual Property +417927,Intellectual Property,Intellectual Property +417926,Taxation and Finance,Taxation and Finance +417922,Taxation and Finance,Taxation and Finance +369992,Taxation and Finance,Taxation and Finance +441363,Agriculture,Agriculture +439968,Agriculture,Agriculture +417209,Agriculture,Agriculture +417206,Agriculture,Agriculture +397311,Agriculture,Agriculture +391445,Agriculture,Agriculture +391444,Agriculture,Agriculture +391369,Agriculture,Agriculture +380242,Agriculture,Agriculture +380239,Agriculture,Agriculture +375405,Agriculture,Agriculture +371637,Agriculture,Agriculture +543794,Agriculture,Agriculture +517455,Agriculture,Agriculture +514271,Agriculture,Agriculture +491855,Agriculture,Agriculture +491854,Agriculture,Agriculture +485852,Agriculture,Agriculture +478774,Agriculture,Agriculture +478771,Agriculture,Agriculture +478770,Agriculture,Agriculture +465114,Agriculture,Agriculture +465103,Agriculture,Agriculture +450074,Agriculture,Agriculture +447419,Agriculture,Agriculture +443370,Agriculture,Agriculture +441391,Agriculture,Agriculture +441388,Agriculture,Agriculture +441384,Agriculture,Agriculture +441383,Agriculture,Agriculture +441378,Agriculture,Agriculture +441375,Agriculture,Agriculture +441373,Agriculture,Agriculture +441371,Agriculture,Agriculture +441370,Agriculture,Agriculture +441369,Agriculture,Agriculture +441368,Agriculture,Agriculture +517450,Budget,Budget +514271,Budget,Budget +380239,Budget,Budget +380238,Budget,Budget +380237,Budget,Budget +375407,Budget,Budget +375406,Budget,Budget +375404,Budget,Budget +371640,Budget,Budget +371639,Budget,Budget +371638,Budget,Budget +371637,Budget,Budget +371636,Budget,Budget +397311,Budget,Budget +397310,Budget,Budget +397309,Budget,Budget +397308,Budget,Budget +397307,Budget,Budget +395839,Budget,Budget +395837,Budget,Budget +395835,Budget,Budget +395833,Budget,Budget +395831,Budget,Budget +395829,Budget,Budget +395820,Budget,Budget +395819,Budget,Budget +395817,Budget,Budget +395816,Budget,Budget +395815,Budget,Budget +395814,Budget,Budget +394206,Budget,Budget +394204,Budget,Budget +394202,Budget,Budget +392318,Budget,Budget +392316,Budget,Budget +392315,Budget,Budget +392314,Budget,Budget +391452,Budget,Budget +391451,Budget,Budget +391445,Budget,Budget +391444,Budget,Budget +391369,Budget,Budget +380364,Budget,Budget +380243,Budget,Budget +380242,Budget,Budget +380241,Budget,Budget +380240,Budget,Budget +502706,Budget,Budget +502697,Budget,Budget +499836,Budget,Budget +495538,Budget,Budget +495535,Budget,Budget +495529,Budget,Budget +485852,Budget,Budget +484747,Budget,Budget +467750,Budget,Budget +465114,Budget,Budget +456108,Budget,Budget +447419,Budget,Budget +443370,Budget,Budget +441391,Budget,Budget +441388,Budget,Budget +441384,Budget,Budget +441383,Budget,Budget +441378,Budget,Budget +441375,Budget,Budget +441373,Budget,Budget +441371,Budget,Budget +441370,Budget,Budget +441369,Budget,Budget +441368,Budget,Budget +441367,Budget,Budget +441363,Budget,Budget +422350,Budget,Budget +422348,Budget,Budget +422347,Budget,Budget +417209,Budget,Budget +417205,Budget,Budget +538083,Budget,Budget +408068,Consumer Issues,Consumer Issues +538083,Consumer Issues,Consumer Issues +397309,Consumer Issues,Consumer Issues +395816,Consumer Issues,Consumer Issues +394215,Consumer Issues,Consumer Issues +391451,Consumer Issues,Consumer Issues +388382,Consumer Issues,Consumer Issues +388379,Consumer Issues,Consumer Issues +388374,Consumer Issues,Consumer Issues +502706,Consumer Issues,Consumer Issues +491854,Consumer Issues,Consumer Issues +465114,Consumer Issues,Consumer Issues +465103,Consumer Issues,Consumer Issues +450074,Consumer Issues,Consumer Issues +447419,Consumer Issues,Consumer Issues +417206,Consumer Issues,Consumer Issues +408073,Consumer Issues,Consumer Issues +422348,Economic Development,Economic Development +422347,Economic Development,Economic Development +408073,Economic Development,Economic Development +406852,Economic Development,Economic Development +400294,Economic Development,Economic Development +400280,Economic Development,Economic Development +397306,Economic Development,Economic Development +395839,Economic Development,Economic Development +395837,Economic Development,Economic Development +395820,Economic Development,Economic Development +395817,Economic Development,Economic Development +394215,Economic Development,Economic Development +394206,Economic Development,Economic Development +394204,Economic Development,Economic Development +394202,Economic Development,Economic Development +392318,Economic Development,Economic Development +392316,Economic Development,Economic Development +391456,Economic Development,Economic Development +391452,Economic Development,Economic Development +391451,Economic Development,Economic Development +391445,Economic Development,Economic Development +391369,Economic Development,Economic Development +388391,Economic Development,Economic Development +388387,Economic Development,Economic Development +388382,Economic Development,Economic Development +388379,Economic Development,Economic Development +381124,Economic Development,Economic Development +380364,Economic Development,Economic Development +380243,Economic Development,Economic Development +380242,Economic Development,Economic Development +380241,Economic Development,Economic Development +380240,Economic Development,Economic Development +380239,Economic Development,Economic Development +380238,Economic Development,Economic Development +380237,Economic Development,Economic Development +375407,Economic Development,Economic Development +375406,Economic Development,Economic Development +375405,Economic Development,Economic Development +375404,Economic Development,Economic Development +375403,Economic Development,Economic Development +371640,Economic Development,Economic Development +371639,Economic Development,Economic Development +371638,Economic Development,Economic Development +371637,Economic Development,Economic Development +371636,Economic Development,Economic Development +543794,Economic Development,Economic Development +533293,Economic Development,Economic Development +517455,Economic Development,Economic Development +517450,Economic Development,Economic Development +514271,Economic Development,Economic Development +502697,Economic Development,Economic Development +499836,Economic Development,Economic Development +495538,Economic Development,Economic Development +495535,Economic Development,Economic Development +495529,Economic Development,Economic Development +482601,Economic Development,Economic Development +478774,Economic Development,Economic Development +478771,Economic Development,Economic Development +478770,Economic Development,Economic Development +467750,Economic Development,Economic Development +465114,Economic Development,Economic Development +465103,Economic Development,Economic Development +456118,Economic Development,Economic Development +456114,Economic Development,Economic Development +456113,Economic Development,Economic Development +456112,Economic Development,Economic Development +456108,Economic Development,Economic Development +450074,Economic Development,Economic Development +447419,Economic Development,Economic Development +447386,Economic Development,Economic Development +443370,Economic Development,Economic Development +441391,Economic Development,Economic Development +441388,Economic Development,Economic Development +441384,Economic Development,Economic Development +441383,Economic Development,Economic Development +441378,Economic Development,Economic Development +441375,Economic Development,Economic Development +441373,Economic Development,Economic Development +441371,Economic Development,Economic Development +441370,Economic Development,Economic Development +441369,Economic Development,Economic Development +441368,Economic Development,Economic Development +441367,Economic Development,Economic Development +441363,Economic Development,Economic Development +439968,Economic Development,Economic Development +439967,Financial Institutions,Financial Institutions +538083,Financial Institutions,Financial Institutions +408068,Financial Institutions,Financial Institutions +395839,Financial Institutions,Financial Institutions +395837,Financial Institutions,Financial Institutions +395833,Financial Institutions,Financial Institutions +391451,Financial Institutions,Financial Institutions +391369,Financial Institutions,Financial Institutions +388391,Financial Institutions,Financial Institutions +388387,Financial Institutions,Financial Institutions +388382,Financial Institutions,Financial Institutions +388379,Financial Institutions,Financial Institutions +388374,Financial Institutions,Financial Institutions +388354,Financial Institutions,Financial Institutions +447419,Financial Institutions,Financial Institutions +439973,Financial Institutions,Financial Institutions +439971,Financial Institutions,Financial Institutions +439970,Financial Institutions,Financial Institutions +450074,Forestry,Forestry +444356,Forestry,Forestry +400292,Forestry,Forestry +397311,Forestry,Forestry +517455,Forestry,Forestry +478774,Forestry,Forestry +478771,Forestry,Forestry +478770,Forestry,Forestry +467750,Forestry,Forestry +465114,Forestry,Forestry +465103,Forestry,Forestry +465103,Housing,Housing +457668,Housing,Housing +456113,Housing,Housing +443370,Housing,Housing +441391,Housing,Housing +441388,Housing,Housing +441384,Housing,Housing +441383,Housing,Housing +441378,Housing,Housing +441375,Housing,Housing +441373,Housing,Housing +441371,Housing,Housing +441370,Housing,Housing +441369,Housing,Housing +441368,Housing,Housing +441367,Housing,Housing +441363,Housing,Housing +439968,Housing,Housing +439967,Housing,Housing +417209,Housing,Housing +417206,Housing,Housing +400292,Housing,Housing +395837,Housing,Housing +395835,Housing,Housing +395831,Housing,Housing +395829,Housing,Housing +395818,Housing,Housing +395817,Housing,Housing +395814,Housing,Housing +394217,Housing,Housing +394215,Housing,Housing +394204,Housing,Housing +394202,Housing,Housing +392318,Housing,Housing +391369,Housing,Housing +380237,Housing,Housing +371636,Housing,Housing +395829,Industry,Industry +514271,Industry,Industry +395827,Industry,Industry +395826,Industry,Industry +395820,Industry,Industry +395819,Industry,Industry +395818,Industry,Industry +395817,Industry,Industry +395816,Industry,Industry +395815,Industry,Industry +395814,Industry,Industry +395808,Industry,Industry +394217,Industry,Industry +394215,Industry,Industry +394206,Industry,Industry +394204,Industry,Industry +394202,Industry,Industry +392318,Industry,Industry +392316,Industry,Industry +392315,Industry,Industry +392314,Industry,Industry +391459,Industry,Industry +391456,Industry,Industry +391452,Industry,Industry +391444,Industry,Industry +388772,Industry,Industry +380364,Industry,Industry +380243,Industry,Industry +380240,Industry,Industry +375407,Industry,Industry +375406,Industry,Industry +375405,Industry,Industry +375404,Industry,Industry +375403,Industry,Industry +371640,Industry,Industry +371639,Industry,Industry +371638,Industry,Industry +371637,Industry,Industry +371636,Industry,Industry +478771,Industry,Industry +465114,Industry,Industry +465103,Industry,Industry +450074,Industry,Industry +422365,Industry,Industry +422364,Industry,Industry +422360,Industry,Industry +422359,Industry,Industry +422358,Industry,Industry +422356,Industry,Industry +422355,Industry,Industry +422347,Industry,Industry +417209,Industry,Industry +417206,Industry,Industry +417205,Industry,Industry +408073,Industry,Industry +408070,Industry,Industry +408069,Industry,Industry +400294,Industry,Industry +400292,Industry,Industry +400291,Industry,Industry +400280,Industry,Industry +400190,Industry,Industry +400189,Industry,Industry +397311,Industry,Industry +397310,Industry,Industry +397309,Industry,Industry +397308,Industry,Industry +397307,Industry,Industry +395839,Industry,Industry +395837,Industry,Industry +395835,Industry,Industry +395833,Industry,Industry +422358,Municipalities,Municipalities +417209,Municipalities,Municipalities +400292,Municipalities,Municipalities +400291,Municipalities,Municipalities +400280,Municipalities,Municipalities +397310,Municipalities,Municipalities +395819,Municipalities,Municipalities +395817,Municipalities,Municipalities +394206,Municipalities,Municipalities +391369,Municipalities,Municipalities +388772,Municipalities,Municipalities +380242,Municipalities,Municipalities +495529,Municipalities,Municipalities +465114,Municipalities,Municipalities +465103,Municipalities,Municipalities +456118,Municipalities,Municipalities +456114,Municipalities,Municipalities +456113,Municipalities,Municipalities +456112,Municipalities,Municipalities +456108,Municipalities,Municipalities +450074,Municipalities,Municipalities +447419,Municipalities,Municipalities +447386,Municipalities,Municipalities +422364,Municipalities,Municipalities +422360,Municipalities,Municipalities +502697,Regional Development,Regional Development +495538,Regional Development,Regional Development +395829,Regional Development,Regional Development +395827,Regional Development,Regional Development +395820,Regional Development,Regional Development +395818,Regional Development,Regional Development +395817,Regional Development,Regional Development +395816,Regional Development,Regional Development +394215,Regional Development,Regional Development +394206,Regional Development,Regional Development +392318,Regional Development,Regional Development +392316,Regional Development,Regional Development +391456,Regional Development,Regional Development +391452,Regional Development,Regional Development +391451,Regional Development,Regional Development +391445,Regional Development,Regional Development +391369,Regional Development,Regional Development +388772,Regional Development,Regional Development +380242,Regional Development,Regional Development +380239,Regional Development,Regional Development +371640,Regional Development,Regional Development +371636,Regional Development,Regional Development +495535,Regional Development,Regional Development +495529,Regional Development,Regional Development +478774,Regional Development,Regional Development +478771,Regional Development,Regional Development +478770,Regional Development,Regional Development +465114,Regional Development,Regional Development +465103,Regional Development,Regional Development +456118,Regional Development,Regional Development +456114,Regional Development,Regional Development +456113,Regional Development,Regional Development +456112,Regional Development,Regional Development +450074,Regional Development,Regional Development +447419,Regional Development,Regional Development +447386,Regional Development,Regional Development +443370,Regional Development,Regional Development +441391,Regional Development,Regional Development +441388,Regional Development,Regional Development +441384,Regional Development,Regional Development +441383,Regional Development,Regional Development +441378,Regional Development,Regional Development +441375,Regional Development,Regional Development +441373,Regional Development,Regional Development +441371,Regional Development,Regional Development +441370,Regional Development,Regional Development +441369,Regional Development,Regional Development +441368,Regional Development,Regional Development +441367,Regional Development,Regional Development +441363,Regional Development,Regional Development +439968,Regional Development,Regional Development +439967,Regional Development,Regional Development +422365,Regional Development,Regional Development +422364,Regional Development,Regional Development +422360,Regional Development,Regional Development +422359,Regional Development,Regional Development +422358,Regional Development,Regional Development +422356,Regional Development,Regional Development +422350,Regional Development,Regional Development +422348,Regional Development,Regional Development +422347,Regional Development,Regional Development +422345,Regional Development,Regional Development +417206,Regional Development,Regional Development +408070,Regional Development,Regional Development +408068,Regional Development,Regional Development +400292,Regional Development,Regional Development +400291,Regional Development,Regional Development +315369,International Trade,International Trade +411370,International Trade,Commerce international +348247,Fisheries,Pêches +324443,Government Procurement,Government Procurement +511796,Labour,Labour +315612,Immigration,Immigration +318214,Government Procurement,Government Procurement +315629,Infrastructure,Infrastructure +389483,Employment and Training,Employment and Training +489577,Energy,Energy +404578,Environment,Environment +470121,Industry,Industry +339992,Labour,Labour +501257,Mining,Mining +339997,Research and Development,Research and Development +470107,Taxation and Finance,Taxation and Finance +318474,Health,Health +352362,Small Business,Small Business +352361,Taxation and Finance,Taxation and Finance +409602,International Trade,International Trade +324177,Infrastructure,Infrastructure +419986,Health,Health +419986,Justice and Law Enforcement,Justice and Law Enforcement +379582,International Trade,International Trade +316116,Economic Development,Economic Development +335390,Fisheries,Fisheries +330574,Government Procurement,Government Procurement +316749,Agriculture,Agriculture +316749,Fisheries,Fisheries +316749,Infrastructure,Infrastructure +316749,Financial Institutions,Financial Institutions +316749,Transportation,Transportation +351043,Labour,Labour +316789,Tourism,Tourism +316749,Economic Development,Economic Development +316789,Small Business,Small Business +512759,Climate,Climate +324308,Taxation and Finance,Taxation and Finance +319309,Infrastructure,Infrastructure +316929,Tourism,Tourisme +413985,Taxation and Finance,Taxation and Finance +325182,Education,Education +325192,Education,Education +325791,International Trade,International Trade +317471,International Trade,International Trade +317471,Industry,Industry +317471,Regional Development,Regional Development +317471,Transportation,Transportation +322143,Consumer Issues,Consumer Issues +322143,Industry,Industry +347596,Agriculture,Agriculture +347596,International Trade,International Trade +369716,Agriculture,Agriculture +394834,International Trade,International Trade +317393,Agriculture,Agriculture +317393,International Trade,International Trade +524826,Agriculture,Agriculture +524830,International Trade,International Trade +322015,Internal Trade,Internal Trade +317455,Research and Development,Research and Development +321852,International Development,International Development +317589,Infrastructure,Infrastructure +321011,Agriculture,Agriculture +321011,International Trade,International Trade +327878,Financial Institutions,Financial Institutions +322337,Industry,Industry +347450,Consumer Issues,Consumer Issues +427062,Employment and Training,Employment and Training +404049,Environment,Environment +327243,Agriculture,Agriculture +348340,Industry,Industry +317850,Employment and Training,Employment and Training +324360,Research and Development,Research and Development +324360,Taxation and Finance,Taxation and Finance +324302,Taxation and Finance,Taxation and Finance +317752,Labour,Labour +317753,Labour,Labour +317878,Employment and Training,Employment and Training +373491,Constitutional Issues,Constitutional Issues +325181,Financial Institutions,Financial Institutions +325182,Taxation and Finance,Taxation and Finance +325192,Financial Institutions,Financial Institutions +325192,Taxation and Finance,Taxation and Finance +372598,Health,Health +321690,Infrastructure,Infrastructure +334370,Defence,Defence +334370,Government Procurement,Government Procurement +334370,Industry,Industry +348897,Infrastructure,Infrastructure +342922,Regional Development,Regional Development +329852,Constitutional Issues,Constitutional Issues +322286,Infrastructure,Infrastructure +317992,Internal Trade,Internal Trade +338815,Security,Security +442565,Economic Development,Economic Development +442565,Environment,Environment +442565,Fisheries,Fisheries +429059,Forestry,Forestry +442565,International Trade,International Trade +335597,Health,Health +324032,Economic Development,Economic Development +324032,Employment and Training,Employment and Training +324032,International Development,International Development +324032,Municipalities,Municipalities +324032,Regional Development,Regional Development +324032,Small Business,Small Business +324032,Tourism,Tourism +380800,Immigration,Immigration +322323,Transportation,Transportation +368548,Agriculture,Agriculture +318569,Internal Trade,Internal Trade +321861,Taxation and Finance,Taxation and Finance +323696,Transportation,Transportation +408508,International Trade,International Trade +339822,Internal Trade,Commerce intérieur +339822,International Trade,Commerce international +339822,Economic Development,Développement économique +339822,Infrastructure,Infrastructure +322549,Taxation and Finance,Taxation and Finance +324232,Economic Development,Economic Development +324232,Regional Development,Regional Development +324232,Employment and Training,Employment and Training +324232,International Development,International Development +515096,Research and Development,Research and Development +382946,Economic Development,Economic Development +469124,Employment and Training,Employment and Training +476516,Immigration,Immigration +437343,Intellectual Property,Intellectual Property +369991,Taxation and Finance,Taxation and Finance +441367,Agriculture,Agriculture +517455,Budget,Budget +408069,Consumer Issues,Consumer Issues +439967,Economic Development,Economic Development +439969,Financial Institutions,Financial Institutions +456108,Forestry,Forestry +538083,Housing,Housing +395831,Industry,Industry +422359,Municipalities,Municipalities +502706,Regional Development,Regional Development +478770,Small Business,Small Business +465103,Taxation and Finance,Taxation and Finance +348539,Agriculture,Agriculture +358742,Consumer Issues,Consumer Issues +348539,International Trade,International Trade +318832,Budget,Budget +318835,Privacy and Access to Information,Privacy and Access to Information +318895,Education,Education +332649,Constitutional Issues,Constitutional Issues +319192,Health,Health +356274,Religion,Religion +325461,Housing,Housing +357951,Health,Santé +319389,Infrastructure,Infrastructure +324163,Infrastructure,Infrastructure +324358,Infrastructure,Infrastructure +324172,Infrastructure,Infrastructure +324431,Infrastructure,Infrastructure +324433,Infrastructure,Infrastructure +324178,Infrastructure,Infrastructure +355405,Economic Development,Economic Development +332751,Industry,Industry +330338,Climate,Climate +330338,Energy,Energy +330338,Environment,Environment +320329,Taxation and Finance,Taxation and Finance +337471,Consumer Issues,Consumer Issues +337471,Employment and Training,Employment and Training +337472,Infrastructure,Infrastructure +337472,International Relations,International Relations +350685,Privacy and Access to Information,Privacy and Access to Information +373683,Immigration,Immigration +366482,Agriculture,Agriculture +366482,International Trade,International Trade +325452,Housing,Housing +340965,Defence,Defence +335164,Government Procurement,Government Procurement +322321,Transportation,Transportation +318831,Justice and Law Enforcement,Justice and Law Enforcement +320735,Taxation and Finance,Taxation and Finance +320589,Taxation and Finance,Taxation and Finance +365742,Internal Trade,Internal Trade +323767,Employment and Training,Employment and Training +320670,Transportation,Transportation +337705,Health,Health +337705,Industry,Industry +330338,Government Procurement,Government Procurement +433091,Taxation and Finance,Taxation and Finance +433091,Privacy and Access to Information,Privacy and Access to Information +433091,Consumer Issues,Consumer Issues +339650,Industry,Industry +514756,Employment and Training,Employment and Training +475789,Economic Development,Economic Development +401453,Defence,Defence +438628,Budget,Budget +400205,Consumer Issues,Consumer Issues +400205,Industry,Industry +400205,Taxation and Finance,Taxation and Finance +412897,Infrastructure,Infrastructure +320539,Economic Development,Economic Development +336790,Transportation,Transportation +326795,Defence,Defence +371610,Industry,Industry +328772,Taxation and Finance,Taxation and Finance +436428,Agriculture,Agriculture +372908,Budget,Budget +436409,Environment,Environment +436409,Infrastructure,Infrastructure +436409,Municipalities,Municipalities +437049,Industry,Industry +337095,International Relations,International Relations +325027,Industry,Industry +325004,Taxation and Finance,Taxation and Finance +321539,Infrastructure,Infrastructure +337848,Transportation,Transportation +323433,Industry,Industry +325389,Housing,Housing +334635,Infrastructure,Infrastructure +331044,Transportation,Transportation +324662,Employment and Training,Employment and Training +324657,International Development,International Development +324657,Mining,Mining +324655,Transportation,Transportation +335886,Health,Health +335886,Industry,Industry +322750,Government Procurement,Government Procurement +328352,Agriculture,Agriculture +328352,Financial Institutions,Financial Institutions +334940,International Trade,International Trade +320849,Labour,Labour +328095,Financial Institutions,Financial Institutions +366247,Immigration,Immigration +339803,Health,Health +321212,Infrastructure,Infrastructure +400280,Regional Development,Regional Development +400190,Regional Development,Regional Development +397311,Regional Development,Regional Development +397308,Regional Development,Regional Development +397306,Regional Development,Regional Development +543794,Regional Development,Regional Development +533293,Regional Development,Regional Development +517450,Regional Development,Regional Development +514271,Regional Development,Regional Development +465114,Small Business,Small Business +465103,Small Business,Small Business +380238,Small Business,Small Business +375405,Small Business,Small Business +456118,Small Business,Small Business +456114,Small Business,Small Business +456113,Small Business,Small Business +456112,Small Business,Small Business +456108,Small Business,Small Business +450074,Small Business,Small Business +447419,Small Business,Small Business +447386,Small Business,Small Business +443370,Small Business,Small Business +441391,Small Business,Small Business +441388,Small Business,Small Business +441384,Small Business,Small Business +441383,Small Business,Small Business +441378,Small Business,Small Business +441375,Small Business,Small Business +441373,Small Business,Small Business +441371,Small Business,Small Business +441370,Small Business,Small Business +441369,Small Business,Small Business +441368,Small Business,Small Business +441367,Small Business,Small Business +441363,Small Business,Small Business +439968,Small Business,Small Business +439967,Small Business,Small Business +422365,Small Business,Small Business +422364,Small Business,Small Business +422360,Small Business,Small Business +422359,Small Business,Small Business +422358,Small Business,Small Business +422356,Small Business,Small Business +422355,Small Business,Small Business +422350,Small Business,Small Business +422348,Small Business,Small Business +422347,Small Business,Small Business +422345,Small Business,Small Business +417209,Small Business,Small Business +417206,Small Business,Small Business +417205,Small Business,Small Business +408070,Small Business,Small Business +400292,Small Business,Small Business +400291,Small Business,Small Business +400280,Small Business,Small Business +400190,Small Business,Small Business +397311,Small Business,Small Business +397310,Small Business,Small Business +397309,Small Business,Small Business +397308,Small Business,Small Business +397307,Small Business,Small Business +397306,Small Business,Small Business +395839,Small Business,Small Business +395837,Small Business,Small Business +395835,Small Business,Small Business +395833,Small Business,Small Business +395831,Small Business,Small Business +395829,Small Business,Small Business +395820,Small Business,Small Business +395819,Small Business,Small Business +395818,Small Business,Small Business +395817,Small Business,Small Business +395816,Small Business,Small Business +395815,Small Business,Small Business +395814,Small Business,Small Business +395808,Small Business,Small Business +394215,Small Business,Small Business +394206,Small Business,Small Business +394204,Small Business,Small Business +394202,Small Business,Small Business +392318,Small Business,Small Business +392316,Small Business,Small Business +392315,Small Business,Small Business +392314,Small Business,Small Business +391456,Small Business,Small Business +391452,Small Business,Small Business +391451,Small Business,Small Business +391369,Small Business,Small Business +388391,Small Business,Small Business +388382,Small Business,Small Business +388374,Small Business,Small Business +388354,Small Business,Small Business +543794,Small Business,Small Business +517455,Small Business,Small Business +517450,Small Business,Small Business +514271,Small Business,Small Business +502706,Small Business,Small Business +495538,Small Business,Small Business +495535,Small Business,Small Business +478774,Small Business,Small Business +478771,Small Business,Small Business +456108,Taxation and Finance,Taxation and Finance +450074,Taxation and Finance,Taxation and Finance +422365,Taxation and Finance,Taxation and Finance +422364,Taxation and Finance,Taxation and Finance +422360,Taxation and Finance,Taxation and Finance +422359,Taxation and Finance,Taxation and Finance +422355,Taxation and Finance,Taxation and Finance +422350,Taxation and Finance,Taxation and Finance +422347,Taxation and Finance,Taxation and Finance +422345,Taxation and Finance,Taxation and Finance +392316,Taxation and Finance,Taxation and Finance +392315,Taxation and Finance,Taxation and Finance +392314,Taxation and Finance,Taxation and Finance +391456,Taxation and Finance,Taxation and Finance +391451,Taxation and Finance,Taxation and Finance +391445,Taxation and Finance,Taxation and Finance +391444,Taxation and Finance,Taxation and Finance +391369,Taxation and Finance,Taxation and Finance +375407,Taxation and Finance,Taxation and Finance +543794,Taxation and Finance,Taxation and Finance +517455,Taxation and Finance,Taxation and Finance +517450,Taxation and Finance,Taxation and Finance +514271,Taxation and Finance,Taxation and Finance +502706,Taxation and Finance,Taxation and Finance +495538,Taxation and Finance,Taxation and Finance +491855,Taxation and Finance,Taxation and Finance +491854,Taxation and Finance,Taxation and Finance +485852,Taxation and Finance,Taxation and Finance +478774,Taxation and Finance,Taxation and Finance +478771,Taxation and Finance,Taxation and Finance +478770,Taxation and Finance,Taxation and Finance +467750,Taxation and Finance,Taxation and Finance +465114,Taxation and Finance,Taxation and Finance +348537,Agriculture,Agriculture +318835,Agriculture,Agriculture +365742,Agriculture,Agriculture +358742,Agriculture,Agriculture +348539,Consumer Issues,Consumer Issues +348537,Consumer Issues,Consumer Issues +318835,Consumer Issues,Consumer Issues +365742,Consumer Issues,Consumer Issues +348537,International Trade,International Trade +318835,International Trade,International Trade +365742,International Trade,International Trade +358742,International Trade,International Trade +319193,Religion,Religion +325460,Housing,Housing +325459,Housing,Housing +357949,Health,Santé +357946,Health,Santé +324131,Infrastructure,Infrastructure +324071,Infrastructure,Infrastructure +324165,Infrastructure,Infrastructure +324164,Infrastructure,Infrastructure +324143,Infrastructure,Infrastructure +323969,Infrastructure,Infrastructure +324075,Infrastructure,Infrastructure +323989,Infrastructure,Infrastructure +324175,Infrastructure,Infrastructure +324174,Infrastructure,Infrastructure +324138,Infrastructure,Infrastructure +323849,Infrastructure,Infrastructure +324162,Infrastructure,Infrastructure +324074,Infrastructure,Infrastructure +324072,Infrastructure,Infrastructure +323970,Infrastructure,Infrastructure +324357,Infrastructure,Infrastructure +355404,Economic Development,Economic Development +355402,Economic Development,Economic Development +355041,Economic Development,Economic Development +354915,Economic Development,Economic Development +354741,Economic Development,Economic Development +354440,Economic Development,Economic Development +337089,Economic Development,Economic Development +333929,Economic Development,Economic Development +323821,Economic Development,Economic Development +355650,Economic Development,Economic Development +331167,Industry,Industry +323822,Industry,Industry +355405,Industry,Industry +355404,Industry,Industry +355402,Industry,Industry +355041,Industry,Industry +354915,Industry,Industry +354741,Industry,Industry +333929,Industry,Industry +320150,Energy,Energy +334951,Employment and Training,Employment and Training +350684,Privacy and Access to Information,Privacy and Access to Information +321705,Privacy and Access to Information,Privacy and Access to Information +373681,Immigration,Immigration +319891,Immigration,Immigration +349447,Agriculture,Agriculture +349447,International Trade,International Trade +325366,Housing,Housing +324772,Government Procurement,Government Procurement +324770,Government Procurement,Government Procurement +320734,Taxation and Finance,Taxation and Finance +391843,Taxation and Finance,Taxation and Finance +347243,Taxation and Finance,Taxation and Finance +341224,Taxation and Finance,Taxation and Finance +341220,Taxation and Finance,Taxation and Finance +341216,Taxation and Finance,Taxation and Finance +338571,Taxation and Finance,Taxation and Finance +330357,Taxation and Finance,Taxation and Finance +330356,Taxation and Finance,Taxation and Finance +327703,Taxation and Finance,Taxation and Finance +320736,Taxation and Finance,Taxation and Finance +391842,Taxation and Finance,Taxation and Finance +347242,Taxation and Finance,Taxation and Finance +343965,Taxation and Finance,Taxation and Finance +341743,Taxation and Finance,Taxation and Finance +341190,Taxation and Finance,Taxation and Finance +341188,Taxation and Finance,Taxation and Finance +341185,Taxation and Finance,Taxation and Finance +338554,Taxation and Finance,Taxation and Finance +330348,Taxation and Finance,Taxation and Finance +330346,Taxation and Finance,Taxation and Finance +327637,Taxation and Finance,Taxation and Finance +320591,Taxation and Finance,Taxation and Finance +320590,Taxation and Finance,Taxation and Finance +323764,Employment and Training,Employment and Training +323759,Employment and Training,Employment and Training +325892,Employment and Training,Employment and Training +325891,Employment and Training,Employment and Training +323770,Employment and Training,Employment and Training +329111,Health,Health +329111,Industry,Industry +507950,Employment and Training,Employment and Training +498649,Employment and Training,Employment and Training +326232,Employment and Training,Employment and Training +449831,Employment and Training,Employment and Training +407075,Employment and Training,Employment and Training +404899,Employment and Training,Employment and Training +514757,Employment and Training,Employment and Training +469588,Economic Development,Economic Development +500711,Economic Development,Economic Development +323391,Defence,Defence +438623,Budget,Budget +438617,Budget,Budget +336225,Budget,Budget +327486,Budget,Budget +437376,Budget,Budget +437373,Budget,Budget +437366,Budget,Budget +437363,Budget,Budget +437316,Budget,Budget +437052,Budget,Budget +437014,Budget,Budget +389513,Budget,Budget +389502,Budget,Budget +529098,Budget,Budget +529075,Budget,Budget +529072,Budget,Budget +529067,Budget,Budget +525831,Budget,Budget +525830,Budget,Budget +523093,Budget,Budget +523090,Budget,Budget +516836,Budget,Budget +516833,Budget,Budget +515096,Budget,Budget +505225,Budget,Budget +501253,Budget,Budget +501252,Budget,Budget +501251,Budget,Budget +501247,Budget,Budget +501239,Budget,Budget +498883,Budget,Budget +496133,Budget,Budget +496117,Budget,Budget +496112,Budget,Budget +465393,Budget,Budget +465212,Budget,Budget +439406,Budget,Budget +439404,Budget,Budget +439400,Budget,Budget +439271,Budget,Budget +439267,Budget,Budget +439261,Budget,Budget +439256,Budget,Budget +439252,Budget,Budget +439249,Budget,Budget +439244,Budget,Budget +439240,Budget,Budget +439235,Budget,Budget +439232,Budget,Budget +439217,Budget,Budget +439085,Budget,Budget +439081,Budget,Budget +439074,Budget,Budget +336789,Transportation,Transportation +324209,Transportation,Transportation +340737,Transportation,Transportation +338209,Transportation,Transportation +326794,Defence,Defence +326792,Defence,Defence +377362,Defence,Defence +371608,Defence,Defence +353521,Defence,Defence +335752,Defence,Defence +326796,Defence,Defence +325409,Taxation and Finance,Taxation and Finance +323709,Taxation and Finance,Taxation and Finance +350296,Taxation and Finance,Taxation and Finance +332490,Taxation and Finance,Taxation and Finance +436407,Agriculture,Agriculture +372907,Budget,Budget +436404,Budget,Budget +436407,Infrastructure,Infrastructure +436404,Infrastructure,Infrastructure +436404,Municipalities,Municipalities +372910,Municipalities,Municipalities +448127,Municipalities,Municipalities +434349,Industry,Industry +433054,Industry,Industry +404888,Industry,Industry +404886,Industry,Industry +393260,Industry,Industry +392177,Industry,Industry +384689,Industry,Industry +352820,Industry,Industry +350502,Industry,Industry +350501,Industry,Industry +329613,Industry,Industry +483097,Industry,Industry +471779,Industry,Industry +471778,Industry,Industry +469273,Industry,Industry +469272,Industry,Industry +463290,Industry,Industry +461072,Industry,Industry +459881,Industry,Industry +456820,Industry,Industry +456819,Industry,Industry +444396,Industry,Industry +444395,Industry,Industry +320569,International Relations,International Relations +325005,Industry,Industry +325001,Industry,Industry +321535,Infrastructure,Infrastructure +321539,Transportation,Transportation +321535,Transportation,Transportation +353420,Transportation,Transportation +343769,Transportation,Transportation +334635,Transportation,Transportation +324655,Employment and Training,Employment and Training +324652,Employment and Training,Employment and Training +324655,Mining,Mining +324652,Mining,Mining +324662,Mining,Mining +330034,Industry,Industry +324984,Industry,Industry +327093,Agriculture,Agriculture +325549,Agriculture,Agriculture +350522,Agriculture,Agriculture +334940,Agriculture,Agriculture +334938,Agriculture,Agriculture +332071,Agriculture,Agriculture +329764,Agriculture,Agriculture +327093,Financial Institutions,Financial Institutions +325549,Financial Institutions,Financial Institutions +350522,Financial Institutions,Financial Institutions +334940,Financial Institutions,Financial Institutions +334938,Financial Institutions,Financial Institutions +332071,Financial Institutions,Financial Institutions +329764,Financial Institutions,Financial Institutions +334938,International Trade,International Trade +328093,Financial Institutions,Financial Institutions +324523,Financial Institutions,Financial Institutions +321050,Immigration,Immigration +326609,International Development,International Development +321510,International Development,International Development +347917,International Development,International Development +321535,Mining,Mining +342921,Transportation,Transportation +321692,Transportation,Transportation +351927,Transportation,Transportation +351926,Transportation,Transportation +462591,Small Business,Small Business +462586,Small Business,Small Business +321711,Small Business,Small Business +321710,Small Business,Small Business +321709,Small Business,Small Business +321708,Small Business,Small Business +462620,Small Business,Small Business +462619,Small Business,Small Business +462618,Small Business,Small Business +462616,Small Business,Small Business +462615,Small Business,Small Business +462613,Small Business,Small Business +462603,Small Business,Small Business +462602,Small Business,Small Business +462600,Small Business,Small Business +385517,Government Procurement,Government Procurement +385498,Government Procurement,Government Procurement +362288,Government Procurement,Government Procurement +349185,Government Procurement,Government Procurement +324995,Government Procurement,Government Procurement +324990,Government Procurement,Government Procurement +321917,Government Procurement,Government Procurement +456748,Government Procurement,Government Procurement +432445,Government Procurement,Government Procurement +432438,Government Procurement,Government Procurement +425779,Government Procurement,Government Procurement +395401,Government Procurement,Government Procurement +395376,Government Procurement,Government Procurement +395374,Government Procurement,Government Procurement +395372,Government Procurement,Government Procurement +395370,Government Procurement,Government Procurement +395369,Government Procurement,Government Procurement +395368,Government Procurement,Government Procurement +395367,Government Procurement,Government Procurement +474445,Employment and Training,Employment and Training +329936,Immigration,Immigration +420219,Intellectual Property,Intellectual Property +420216,Intellectual Property,Intellectual Property +420228,Labour,Labour +340443,Consumer Issues,Consumer Issues +334369,Consumer Issues,Consumer Issues +410472,Consumer Issues,Consumer Issues +386055,Consumer Issues,Consumer Issues +373814,Consumer Issues,Consumer Issues +373810,Consumer Issues,Consumer Issues +373809,Consumer Issues,Consumer Issues +373807,Consumer Issues,Consumer Issues +386057,Financial Institutions,Financial Institutions +373814,Financial Institutions,Financial Institutions +340445,Financial Institutions,Financial Institutions +340444,Financial Institutions,Financial Institutions +401733,Financial Institutions,Financial Institutions +386055,Industry,Industry +386054,Industry,Industry +373807,Industry,Industry +340443,Industry,Industry +386054,Small Business,Small Business +381420,Small Business,Small Business +373814,Small Business,Small Business +373810,Small Business,Small Business +373809,Small Business,Small Business +373807,Small Business,Small Business +340444,Small Business,Small Business +340443,Small Business,Small Business +334369,Small Business,Small Business +410472,Small Business,Small Business +410471,Small Business,Small Business +324147,Health,Health +324161,Infrastructure,Infrastructure +324151,Health,Health +324150,Health,Health +324182,Health,Health +324151,Infrastructure,Infrastructure +324150,Infrastructure,Infrastructure +324182,Infrastructure,Infrastructure +324149,Health,Health +324148,Health,Health +324149,Infrastructure,Infrastructure +324148,Infrastructure,Infrastructure +324349,Health,Health +324157,Health,Health +324352,Health,Health +324349,Infrastructure,Infrastructure +324157,Infrastructure,Infrastructure +324352,Infrastructure,Infrastructure +323995,Transportation,Transportation +323994,Transportation,Transportation +324000,Transportation,Transportation +323997,Transportation,Transportation +323993,Transportation,Transportation +324002,Transportation,Transportation +413520,International Relations,International Relations +413517,International Relations,International Relations +413513,International Relations,International Relations +413285,International Relations,International Relations +413284,International Relations,International Relations +413281,International Relations,International Relations +408197,International Relations,International Relations +404003,International Relations,International Relations +372234,International Relations,International Relations +371262,International Relations,International Relations +371256,International Relations,International Relations +369268,International Relations,International Relations +369267,International Relations,International Relations +369266,International Relations,International Relations +343774,International Relations,International Relations +322206,International Relations,International Relations +445587,International Relations,International Relations +445579,International Relations,International Relations +429472,International Relations,International Relations +429469,International Relations,International Relations +417812,International Relations,International Relations +416603,International Relations,International Relations +416601,International Relations,International Relations +416599,International Relations,International Relations +416598,International Relations,International Relations +416597,International Relations,International Relations +416596,International Relations,International Relations +416593,International Relations,International Relations +416591,International Relations,International Relations +416588,International Relations,International Relations +416587,International Relations,International Relations +416582,International Relations,International Relations +416578,International Relations,International Relations +416576,International Relations,International Relations +416571,International Relations,International Relations +416567,International Relations,International Relations +416564,International Relations,International Relations +416559,International Relations,International Relations +416550,International Relations,International Relations +416548,International Relations,International Relations +416547,International Relations,International Relations +416543,International Relations,International Relations +416540,International Relations,International Relations +416537,International Relations,International Relations +324335,Infrastructure,Infrastructure +324156,Infrastructure,Infrastructure +324158,Infrastructure,Infrastructure +344278,Fisheries,Fisheries +324389,Fisheries,Fisheries +358432,Fisheries,Fisheries +357257,Fisheries,Fisheries +394396,Industry,Industry +394392,Industry,Industry +380102,Industry,Industry +380101,Industry,Industry +377200,Industry,Industry +322245,Industry,Industry +432601,Industry,Industry +413846,Industry,Industry +413844,Industry,Industry +410157,Industry,Industry +403984,Regional Development,Regional Development +394392,Economic Development,Economic Development +380102,Economic Development,Economic Development +322245,Economic Development,Economic Development +413846,Economic Development,Economic Development +413845,Economic Development,Economic Development +413844,Economic Development,Economic Development +403984,Economic Development,Economic Development +403970,Economic Development,Economic Development +394396,Economic Development,Economic Development +394386,Defence,Defence +394382,Defence,Defence +325032,Defence,Defence +377215,Defence,Defence +377214,Defence,Defence +377192,Defence,Defence +372664,Defence,Defence +372656,Defence,Defence +457485,Defence,Defence +433968,Defence,Defence +401057,Defence,Defence +401057,Industry,Industry +324155,Infrastructure,Infrastructure +324167,Infrastructure,Infrastructure +396063,Small Business,Small Business +333112,International Development,International Development +534049,Economic Development,Economic Development +534044,Economic Development,Economic Development +447561,Economic Development,Economic Development +541753,Economic Development,Economic Development +541751,Economic Development,Economic Development +447564,Environment,Environment +415400,Environment,Environment +409359,Environment,Environment +407472,Environment,Environment +406619,Environment,Environment +405068,Environment,Environment +405067,Environment,Environment +403055,Environment,Environment +372500,Environment,Environment +371162,Environment,Environment +333319,Environment,Environment +324369,Environment,Environment +324364,Environment,Environment +541753,Environment,Environment +541752,Environment,Environment +541751,Environment,Environment +510508,Environment,Environment +510352,Environment,Environment +510348,Environment,Environment +498133,Environment,Environment +498083,Environment,Environment +498082,Environment,Environment +493579,Environment,Environment +493566,Environment,Environment +477766,Environment,Environment +457344,Environment,Environment +452611,Environment,Environment +452608,Environment,Environment +450089,Environment,Environment +450088,Environment,Environment +450077,Environment,Environment +323289,Immigration,Immigration +471377,Agriculture,Agriculture +471376,Agriculture,Agriculture +386809,Agriculture,Agriculture +386714,Agriculture,Agriculture +386713,Agriculture,Agriculture +386710,Agriculture,Agriculture +386707,Agriculture,Agriculture +386703,Agriculture,Agriculture +355694,Agriculture,Agriculture +355692,Agriculture,Agriculture +340075,Agriculture,Agriculture +471375,Agriculture,Agriculture +471374,Agriculture,Agriculture +469462,Agriculture,Agriculture +465729,Agriculture,Agriculture +465728,Agriculture,Agriculture +465710,Agriculture,Agriculture +454351,Agriculture,Agriculture +449420,Agriculture,Agriculture +449418,Agriculture,Agriculture +449153,Agriculture,Agriculture +435974,Agriculture,Agriculture +435969,Agriculture,Agriculture +435968,Agriculture,Agriculture +435967,Agriculture,Agriculture +485962,Agriculture,Agriculture +476438,Agriculture,Agriculture +474362,Agriculture,Agriculture +472271,Agriculture,Agriculture +386709,Budget,Budget +382692,Budget,Budget +435969,Budget,Budget +435968,Budget,Budget +386809,Budget,Budget +386713,Budget,Budget +435967,Infrastructure,Infrastructure +429460,Infrastructure,Infrastructure +326320,Infrastructure,Infrastructure +326317,Infrastructure,Infrastructure +355782,Infrastructure,Infrastructure +355695,Infrastructure,Infrastructure +355691,Infrastructure,Infrastructure +340073,Infrastructure,Infrastructure +340072,Infrastructure,Infrastructure +340071,Infrastructure,Infrastructure +386809,Infrastructure,Infrastructure +386714,Infrastructure,Infrastructure +386703,Infrastructure,Infrastructure +485962,Infrastructure,Infrastructure +476438,Infrastructure,Infrastructure +474362,Infrastructure,Infrastructure +472271,Infrastructure,Infrastructure +471378,Infrastructure,Infrastructure +471377,Infrastructure,Infrastructure +471376,Infrastructure,Infrastructure +471374,Infrastructure,Infrastructure +469462,Infrastructure,Infrastructure +449425,Infrastructure,Infrastructure +449424,Infrastructure,Infrastructure +449423,Infrastructure,Infrastructure +449422,Infrastructure,Infrastructure +449421,Infrastructure,Infrastructure +449419,Infrastructure,Infrastructure +449418,Infrastructure,Infrastructure +449417,Infrastructure,Infrastructure +444718,Infrastructure,Infrastructure +435977,Infrastructure,Infrastructure +435974,Infrastructure,Infrastructure +435969,Infrastructure,Infrastructure +449153,International Trade,International Trade +435978,International Trade,International Trade +386712,International Trade,International Trade +454351,International Trade,International Trade +471375,Municipalities,Municipalities +469462,Municipalities,Municipalities +340074,Municipalities,Municipalities +465729,Municipalities,Municipalities +465728,Municipalities,Municipalities +465710,Municipalities,Municipalities +460475,Municipalities,Municipalities +454351,Municipalities,Municipalities +449425,Municipalities,Municipalities +449424,Municipalities,Municipalities +449423,Municipalities,Municipalities +449421,Municipalities,Municipalities +449420,Municipalities,Municipalities +448117,Municipalities,Municipalities +444718,Municipalities,Municipalities +435977,Municipalities,Municipalities +435968,Municipalities,Municipalities +435967,Municipalities,Municipalities +429460,Municipalities,Municipalities +386809,Municipalities,Municipalities +386713,Municipalities,Municipalities +386712,Municipalities,Municipalities +386711,Municipalities,Municipalities +386710,Municipalities,Municipalities +386709,Municipalities,Municipalities +386707,Municipalities,Municipalities +386705,Municipalities,Municipalities +386703,Municipalities,Municipalities +386701,Municipalities,Municipalities +485962,Municipalities,Municipalities +476438,Municipalities,Municipalities +474362,Municipalities,Municipalities +472271,Municipalities,Municipalities +471378,Municipalities,Municipalities +471377,Municipalities,Municipalities +327155,Transportation,Transportation +326315,Transportation,Transportation +476451,Agriculture,Agriculture +469461,Agriculture,Agriculture +372897,Budget,Budget +518638,Budget,Budget +469461,Infrastructure,Infrastructure +525173,Municipalities,Municipalities +518638,Municipalities,Municipalities +372905,Municipalities,Municipalities +476451,Municipalities,Municipalities +469461,Municipalities,Municipalities +500570,Small Business,Petites entreprises +457835,Small Business,Petites entreprises +329733,Small Business,Petites entreprises +323739,Small Business,Petites entreprises +514276,Small Business,Petites entreprises +514273,Tourism,Tourisme +500570,Tourism,Tourisme +329737,Tourism,Tourisme +328475,Tourism,Tourisme +323739,Tourism,Tourisme +514277,Tourism,Tourisme +514276,Tourism,Tourisme +514275,Tourism,Tourisme +417370,Justice and Law Enforcement,Justice and Law Enforcement +414740,Justice and Law Enforcement,Justice and Law Enforcement +380266,Justice and Law Enforcement,Justice and Law Enforcement +380265,Justice and Law Enforcement,Justice and Law Enforcement +370287,Justice and Law Enforcement,Justice and Law Enforcement +368498,Agriculture,Agriculture +465988,Agriculture,Agriculture +389179,Agriculture,Agriculture +389178,Agriculture,Agriculture +368506,Agriculture,Agriculture +368505,Agriculture,Agriculture +368503,Agriculture,Agriculture +368501,Agriculture,Agriculture +368500,Agriculture,Agriculture +419657,International Trade,International Trade +419655,International Trade,International Trade +419654,International Trade,International Trade +419652,International Trade,International Trade +393807,International Trade,International Trade +393806,International Trade,International Trade +393803,International Trade,International Trade +393801,International Trade,International Trade +393798,International Trade,International Trade +393794,International Trade,International Trade +368506,International Trade,International Trade +368505,International Trade,International Trade +368503,International Trade,International Trade +368501,International Trade,International Trade +368500,International Trade,International Trade +368499,International Trade,International Trade +368498,International Trade,International Trade +357416,International Trade,International Trade +465988,International Trade,International Trade +445882,International Trade,International Trade +327431,Labour,Labour +341606,Labour,Labour +335937,Labour,Labour +330043,Labour,Labour +335937,Agriculture,Agriculture +330043,Agriculture,Agriculture +330042,Agriculture,Agriculture +327431,Agriculture,Agriculture +330042,Immigration,Immigration +327431,Immigration,Immigration +341606,Immigration,Immigration +335937,Immigration,Immigration +330042,Industry,Industry +327431,Industry,Industry +341606,Industry,Industry +335937,Industry,Industry +330042,International Trade,International Trade +327431,International Trade,International Trade +341606,International Trade,International Trade +335937,International Trade,International Trade +331468,Immigration,Immigration +341625,Labour,Labour +335697,Labour,Labour +329157,Labour,Labour +329156,Labour,Labour +326862,Labour,Labour +328389,Financial Institutions,Financial Institutions +325883,Financial Institutions,Financial Institutions +330253,Financial Institutions,Financial Institutions +330252,Financial Institutions,Financial Institutions +323151,Constitutional Issues,Constitutional Issues +323149,Constitutional Issues,Constitutional Issues +323154,Constitutional Issues,Constitutional Issues +325030,Immigration,Immigration +358183,Immigration,Immigration +326441,Security,Sécurité +326440,Security,Sécurité +326440,Transportation,Transports +326443,Transportation,Transports +327719,Defence,Defence +327719,Industry,Industry +323577,Agriculture,Agriculture +460716,Taxation and Finance,Taxation and Finance +400005,Taxation and Finance,Taxation and Finance +371006,Taxation and Finance,Taxation and Finance +338258,Taxation and Finance,Taxation and Finance +338257,Taxation and Finance,Taxation and Finance +338254,Taxation and Finance,Taxation and Finance +541684,Taxation and Finance,Taxation and Finance +537570,Taxation and Finance,Taxation and Finance +534873,Taxation and Finance,Taxation and Finance +528758,Taxation and Finance,Taxation and Finance +519675,Taxation and Finance,Taxation and Finance +519674,Taxation and Finance,Taxation and Finance +517720,Taxation and Finance,Taxation and Finance +515571,Taxation and Finance,Taxation and Finance +507586,Taxation and Finance,Taxation and Finance +501271,Taxation and Finance,Taxation and Finance +501270,Taxation and Finance,Taxation and Finance +498609,Taxation and Finance,Taxation and Finance +498608,Taxation and Finance,Taxation and Finance +498606,Taxation and Finance,Taxation and Finance +495628,Taxation and Finance,Taxation and Finance +495627,Taxation and Finance,Taxation and Finance +493264,Taxation and Finance,Taxation and Finance +490774,Taxation and Finance,Taxation and Finance +486897,Taxation and Finance,Taxation and Finance +486890,Taxation and Finance,Taxation and Finance +468577,Taxation and Finance,Taxation and Finance +370952,Industry,Industry +324077,Infrastructure,Infrastructure +324076,Infrastructure,Infrastructure +323996,Infrastructure,Infrastructure +324001,Infrastructure,Infrastructure +324154,Infrastructure,Infrastructure +324153,Infrastructure,Infrastructure +324171,Infrastructure,Infrastructure +324154,Health,Health +324153,Health,Health +324171,Health,Health +324152,Health,Health +324152,Infrastructure,Infrastructure +324183,Infrastructure,Infrastructure +324133,Infrastructure,Infrastructure +324185,Infrastructure,Infrastructure +437554,Infrastructure,Infrastructure +437553,Infrastructure,Infrastructure +387036,Infrastructure,Infrastructure +387035,Infrastructure,Infrastructure +384261,Infrastructure,Infrastructure +382897,Infrastructure,Infrastructure +380674,Infrastructure,Infrastructure +380672,Infrastructure,Infrastructure +377926,Infrastructure,Infrastructure +377925,Infrastructure,Infrastructure +377924,Infrastructure,Infrastructure +377923,Infrastructure,Infrastructure +377921,Infrastructure,Infrastructure +330511,Infrastructure,Infrastructure +329373,Infrastructure,Infrastructure +329370,Infrastructure,Infrastructure +329369,Infrastructure,Infrastructure +324139,Infrastructure,Infrastructure +434914,Infrastructure,Infrastructure +434913,Infrastructure,Infrastructure +433034,Infrastructure,Infrastructure +433033,Infrastructure,Infrastructure +433032,Infrastructure,Infrastructure +433031,Infrastructure,Infrastructure +433030,Infrastructure,Infrastructure +431967,Infrastructure,Infrastructure +430290,Infrastructure,Infrastructure +430289,Infrastructure,Infrastructure +430288,Infrastructure,Infrastructure +430287,Infrastructure,Infrastructure +428368,Infrastructure,Infrastructure +428362,Infrastructure,Infrastructure +428328,Infrastructure,Infrastructure +425475,Infrastructure,Infrastructure +425473,Infrastructure,Infrastructure +425472,Infrastructure,Infrastructure +423396,Infrastructure,Infrastructure +421420,Infrastructure,Infrastructure +421418,Infrastructure,Infrastructure +421417,Infrastructure,Infrastructure +421416,Infrastructure,Infrastructure +419131,Infrastructure,Infrastructure +419129,Infrastructure,Infrastructure +419126,Infrastructure,Infrastructure +419119,Infrastructure,Infrastructure +419117,Infrastructure,Infrastructure +419115,Infrastructure,Infrastructure +419113,Infrastructure,Infrastructure +419110,Infrastructure,Infrastructure +419108,Infrastructure,Infrastructure +419103,Infrastructure,Infrastructure +419102,Infrastructure,Infrastructure +419099,Infrastructure,Infrastructure +321214,Environment,Environment +324435,Government Procurement,Government Procurement +324435,Industry,Industry +324435,Defence,Defence +347697,International Development,International Development +321510,International Trade,International Trade +323211,Transportation,Transportation +353420,Mining,Mining +336512,Industry,Industry +336512,Research and Development,Research and Development +351925,Transportation,Transportation +462597,Small Business,Small Business +322418,Energy,Energy +322418,Industry,Industry +322418,Transportation,Transportation +395365,Government Procurement,Government Procurement +321933,Fisheries,Fisheries +321951,Agriculture,Agriculture +329938,Employment and Training,Employment and Training +393647,Immigration,Immigration +420226,Intellectual Property,Intellectual Property +329938,Labour,Labour +340445,Consumer Issues,Consumer Issues +401288,Financial Institutions,Financial Institutions +401287,Industry,Industry +386055,Small Business,Small Business +324159,Health,Health +324159,Infrastructure,Infrastructure +324161,Health,Health +324147,Infrastructure,Infrastructure +324181,Health,Health +324181,Infrastructure,Infrastructure +324179,Health,Health +324179,Infrastructure,Infrastructure +324350,Health,Health +324350,Infrastructure,Infrastructure +323998,Transportation,Transportation +323999,Transportation,Transportation +322190,International Development,International Development +416536,International Relations,International Relations +324338,Infrastructure,Infrastructure +324180,Infrastructure,Infrastructure +357256,Fisheries,Fisheries +403984,Industry,Industry +322245,Regional Development,Regional Development +394393,Economic Development,Economic Development +394388,Defence,Defence +433968,Industry,Industry +401057,Intellectual Property,Intellectual Property +324166,Infrastructure,Infrastructure +324160,Infrastructure,Infrastructure +322310,Justice and Law Enforcement,Justice and Law Enforcement +322314,Justice and Law Enforcement,Justice and Law Enforcement +396065,Small Business,Small Business +333113,International Development,International Development +322989,Health,Health +404817,Financial Institutions,Financial Institutions +325389,Budget,Budget +325389,Taxation and Finance,Taxation and Finance +537420,Economic Development,Economic Development +447569,Environment,Environment +322777,Internal Trade,Internal Trade +323290,Immigration,Immigration +471378,Agriculture,Agriculture +386711,Budget,Budget +435968,Infrastructure,Infrastructure +449423,International Trade,International Trade +471376,Municipalities,Municipalities +340076,Transportation,Transportation +518638,Agriculture,Agriculture +372900,Budget,Budget +476451,Infrastructure,Infrastructure +448125,Municipalities,Municipalities +518638,Transportation,Transportation +323739,Industry,Industrie +514275,Small Business,Petites entreprises +514274,Tourism,Tourisme +417486,Justice and Law Enforcement,Justice and Law Enforcement +368499,Agriculture,Agriculture +419658,International Trade,International Trade +330042,Labour,Labour +326877,Industry,Industry +326877,International Trade,International Trade +341606,Agriculture,Agriculture +330043,Immigration,Immigration +330043,Industry,Industry +330043,International Trade,International Trade +341625,Agriculture,Agriculture +341625,Immigration,Immigration +341625,Industry,Industry +341625,International Trade,International Trade +326861,Labour,Labour +322989,Labour,Labour +328390,Financial Institutions,Financial Institutions +323152,Constitutional Issues,Constitutional Issues +324996,Economic Development,Economic Development +324996,Regional Development,Regional Development +324996,Small Business,Small Business +324996,Taxation and Finance,Taxation and Finance +338349,Immigration,Immigration +341625,Consumer Issues,Consumer Issues +326443,Security,Sécurité +326441,Transportation,Transports +355649,Defence,Defence +355649,Industry,Industry +323290,Security,Security +323369,Economic Development,Economic Development +323370,Economic Development,Economic Development +351425,Agriculture,Agriculture +323577,International Trade,International Trade +468576,Taxation and Finance,Taxation and Finance +333289,Mining,Mining +335011,Government Procurement,Government Procurement +370953,Industry,Industry +323821,Agriculture,Agriculture +324334,Infrastructure,Infrastructure +324434,Infrastructure,Infrastructure +324135,Infrastructure,Infrastructure +324007,Environment,Environment +324170,Infrastructure,Infrastructure +324170,Health,Health +324430,Health,Health +324430,Infrastructure,Infrastructure +354910,Health,Health +333289,International Relations,International Relations +333289,International Trade,International Trade +326869,International Trade,International Trade +324184,Infrastructure,Infrastructure +437556,Infrastructure,Infrastructure +324146,Defence,Defence +324331,Infrastructure,Infrastructure +324188,Infrastructure,Infrastructure +530907,International Trade,International Trade +324229,Sports,Sports +331181,Agriculture,Agriculture +326538,Regional Development,Regional Development +326538,Research and Development,Research and Development +324369,Employment and Training,Employment and Training +461042,Health,Health +324454,Pensions,Pensions +473589,Economic Development,Economic Development +324457,Economic Development,Economic Development +352064,International Trade,International Trade +326822,Agriculture,Agriculture +326822,Health,Health +324652,Immigration,Immigration +324655,Economic Development,Economic Development +324655,Infrastructure,Infrastructure +324659,Immigration,Immigration +495485,Economic Development,Economic Development +524930,Energy,Energy +515836,Infrastructure,Infrastructure +416092,Climate,Climate +498410,Privacy and Access to Information,Privacy and Access to Information +324705,Economic Development,Economic Development +324703,Immigration,Immigration +324704,Climate,Climate +324706,Climate,Climate +324706,Research and Development,Research and Development +415728,Economic Development,Economic Development +328034,Health,Health +330035,Small Business,Small Business +335940,Economic Development,Economic Development +343711,Government Procurement,Government Procurement +324929,Infrastructure,Infrastructure +330365,Government Procurement,Government Procurement +324933,Infrastructure,Infrastructure +324935,Infrastructure,Infrastructure +324936,Infrastructure,Infrastructure +324937,Infrastructure,Infrastructure +324938,Infrastructure,Infrastructure +324939,Infrastructure,Infrastructure +366551,International Trade,International Trade +325028,Economic Development,Economic Development +394386,Government Procurement,Government Procurement +534044,Employment and Training,Employment and Training +325042,Pensions,Pensions +325045,Economic Development,Economic Development +325045,Pensions,Pensions +336023,Budget,Budget +336023,Economic Development,Economic Development +325057,Internal Trade,Internal Trade +325057,International Trade,International Trade +537206,Justice and Law Enforcement,Justice and Law Enforcement +325057,Pensions,Pensions +325074,International Trade,International Trade +325118,International Trade,International Trade +325119,International Trade,International Trade +325121,International Trade,International Trade +327537,International Relations,International Relations +327537,International Trade,International Trade +327537,Mining,Mining +325529,Health,Health +336933,Regional Development,Regional Development +327625,Health,Health +419098,Infrastructure,Infrastructure +419097,Infrastructure,Infrastructure +419067,Infrastructure,Infrastructure +417837,Infrastructure,Infrastructure +417836,Infrastructure,Infrastructure +417835,Infrastructure,Infrastructure +417832,Infrastructure,Infrastructure +417830,Infrastructure,Infrastructure +415201,Infrastructure,Infrastructure +415200,Infrastructure,Infrastructure +415199,Infrastructure,Infrastructure +415198,Infrastructure,Infrastructure +415197,Infrastructure,Infrastructure +415196,Infrastructure,Infrastructure +415195,Infrastructure,Infrastructure +415194,Infrastructure,Infrastructure +415193,Infrastructure,Infrastructure +415192,Infrastructure,Infrastructure +415191,Infrastructure,Infrastructure +415188,Infrastructure,Infrastructure +412848,Infrastructure,Infrastructure +412844,Infrastructure,Infrastructure +412622,Infrastructure,Infrastructure +412613,Infrastructure,Infrastructure +408599,Infrastructure,Infrastructure +407319,Infrastructure,Infrastructure +407318,Infrastructure,Infrastructure +406153,Infrastructure,Infrastructure +406152,Infrastructure,Infrastructure +404895,Infrastructure,Infrastructure +404894,Infrastructure,Infrastructure +401959,Infrastructure,Infrastructure +399750,Infrastructure,Infrastructure +399749,Infrastructure,Infrastructure +399748,Infrastructure,Infrastructure +399747,Infrastructure,Infrastructure +399746,Infrastructure,Infrastructure +397949,Infrastructure,Infrastructure +395039,Infrastructure,Infrastructure +395037,Infrastructure,Infrastructure +395021,Infrastructure,Infrastructure +395003,Infrastructure,Infrastructure +395001,Infrastructure,Infrastructure +394999,Infrastructure,Infrastructure +394997,Infrastructure,Infrastructure +394909,Infrastructure,Infrastructure +393084,Infrastructure,Infrastructure +393083,Infrastructure,Infrastructure +393078,Infrastructure,Infrastructure +393076,Infrastructure,Infrastructure +393075,Infrastructure,Infrastructure +393074,Infrastructure,Infrastructure +392283,Infrastructure,Infrastructure +392280,Infrastructure,Infrastructure +392279,Infrastructure,Infrastructure +392278,Infrastructure,Infrastructure +388890,Infrastructure,Infrastructure +388889,Infrastructure,Infrastructure +388887,Infrastructure,Infrastructure +388886,Infrastructure,Infrastructure +388884,Infrastructure,Infrastructure +543974,Infrastructure,Infrastructure +543971,Infrastructure,Infrastructure +538536,Infrastructure,Infrastructure +538534,Infrastructure,Infrastructure +538533,Infrastructure,Infrastructure +538532,Infrastructure,Infrastructure +535675,Infrastructure,Infrastructure +535670,Infrastructure,Infrastructure +535664,Infrastructure,Infrastructure +525814,Infrastructure,Infrastructure +525813,Infrastructure,Infrastructure +525810,Infrastructure,Infrastructure +522565,Infrastructure,Infrastructure +522563,Infrastructure,Infrastructure +522561,Infrastructure,Infrastructure +515988,Infrastructure,Infrastructure +515538,Infrastructure,Infrastructure +515537,Infrastructure,Infrastructure +514195,Infrastructure,Infrastructure +512705,Infrastructure,Infrastructure +512701,Infrastructure,Infrastructure +512690,Infrastructure,Infrastructure +511286,Infrastructure,Infrastructure +511283,Infrastructure,Infrastructure +511278,Infrastructure,Infrastructure +511272,Infrastructure,Infrastructure +508268,Infrastructure,Infrastructure +505304,Infrastructure,Infrastructure +502412,Infrastructure,Infrastructure +502408,Infrastructure,Infrastructure +498473,Infrastructure,Infrastructure +498468,Infrastructure,Infrastructure +498433,Infrastructure,Infrastructure +495510,Infrastructure,Infrastructure +495508,Infrastructure,Infrastructure +495503,Infrastructure,Infrastructure +493486,Infrastructure,Infrastructure +493075,Infrastructure,Infrastructure +490506,Infrastructure,Infrastructure +490502,Infrastructure,Infrastructure +487645,Infrastructure,Infrastructure +472817,Infrastructure,Infrastructure +470313,Infrastructure,Infrastructure +470312,Infrastructure,Infrastructure +470304,Infrastructure,Infrastructure +467144,Infrastructure,Infrastructure +465617,Infrastructure,Infrastructure +464147,Infrastructure,Infrastructure +461074,Infrastructure,Infrastructure +460043,Infrastructure,Infrastructure +460042,Infrastructure,Infrastructure +460041,Infrastructure,Infrastructure +460040,Infrastructure,Infrastructure +460038,Infrastructure,Infrastructure +459467,Infrastructure,Infrastructure +459466,Infrastructure,Infrastructure +457316,Infrastructure,Infrastructure +457315,Infrastructure,Infrastructure +457314,Infrastructure,Infrastructure +457312,Infrastructure,Infrastructure +455002,Infrastructure,Infrastructure +454995,Infrastructure,Infrastructure +454992,Infrastructure,Infrastructure +452378,Infrastructure,Infrastructure +452371,Infrastructure,Infrastructure +452362,Infrastructure,Infrastructure +452358,Infrastructure,Infrastructure +452347,Infrastructure,Infrastructure +452344,Infrastructure,Infrastructure +452342,Infrastructure,Infrastructure +452340,Infrastructure,Infrastructure +449778,Infrastructure,Infrastructure +449776,Infrastructure,Infrastructure +449774,Infrastructure,Infrastructure +449770,Infrastructure,Infrastructure +447573,Infrastructure,Infrastructure +444338,Infrastructure,Infrastructure +444337,Infrastructure,Infrastructure +444336,Infrastructure,Infrastructure +444334,Infrastructure,Infrastructure +444333,Infrastructure,Infrastructure +443704,Infrastructure,Infrastructure +443633,Infrastructure,Infrastructure +440959,Infrastructure,Infrastructure +440958,Infrastructure,Infrastructure +440785,Infrastructure,Infrastructure +440772,Infrastructure,Infrastructure +437632,Infrastructure,Infrastructure +437587,Infrastructure,Infrastructure +437586,Infrastructure,Infrastructure +437585,Infrastructure,Infrastructure +324330,Infrastructure,Infrastructure +324329,Infrastructure,Infrastructure +530905,International Trade,International Trade +530904,International Trade,International Trade +327329,International Trade,International Trade +353444,International Trade,International Trade +353441,International Trade,International Trade +455784,International Trade,International Trade +425361,International Trade,International Trade +425360,International Trade,International Trade +425359,International Trade,International Trade +530908,International Trade,International Trade +331180,Agriculture,Agriculture +326538,Agriculture,Agriculture +461040,Health,Health +457373,Health,Health +325575,Health,Health +325574,Health,Health +325573,Health,Health +325572,Health,Health +325571,Health,Health +325570,Health,Health +325534,Health,Health +325390,Health,Health +448697,Health,Health +427002,Health,Health +424777,Health,Health +424776,Health,Health +400213,Health,Health +386332,Health,Health +384045,Health,Health +378440,Health,Health +373024,Health,Health +367953,Health,Health +367952,Health,Health +325579,Health,Health +325578,Health,Health +325577,Health,Health +325576,Health,Health +542741,Health,Health +527853,Health,Health +518871,Health,Health +518870,Health,Health +518864,Health,Health +516654,Health,Health +516651,Health,Health +516650,Health,Health +512082,Health,Health +461046,Health,Health +461045,Health,Health +324447,Pensions,Pensions +473585,Economic Development,Economic Development +543397,Economic Development,Economic Development +335587,Economic Development,Economic Development +324454,Economic Development,Economic Development +475719,Economic Development,Economic Development +475718,Economic Development,Economic Development +475716,Economic Development,Economic Development +416094,Immigration,Immigration +492910,Economic Development,Economic Development +491512,Economic Development,Economic Development +418055,Economic Development,Economic Development +413137,Economic Development,Economic Development +408132,Economic Development,Economic Development +407882,Economic Development,Economic Development +406477,Economic Development,Economic Development +406476,Economic Development,Economic Development +405304,Economic Development,Economic Development +405228,Economic Development,Economic Development +405227,Economic Development,Economic Development +405226,Economic Development,Economic Development +405222,Economic Development,Economic Development +405221,Economic Development,Economic Development +405211,Economic Development,Economic Development +405206,Economic Development,Economic Development +391087,Economic Development,Economic Development +385577,Economic Development,Economic Development +379819,Economic Development,Economic Development +379707,Economic Development,Economic Development +379034,Economic Development,Economic Development +365113,Economic Development,Economic Development +364803,Economic Development,Economic Development +341985,Economic Development,Economic Development +341977,Economic Development,Economic Development +324672,Economic Development,Economic Development +324669,Economic Development,Economic Development +491457,Economic Development,Economic Development +491452,Economic Development,Economic Development +491401,Economic Development,Economic Development +488024,Economic Development,Economic Development +488020,Economic Development,Economic Development +488017,Economic Development,Economic Development +488014,Economic Development,Economic Development +487999,Economic Development,Economic Development +485061,Economic Development,Economic Development +485054,Economic Development,Economic Development +485046,Economic Development,Economic Development +485030,Economic Development,Economic Development +475503,Economic Development,Economic Development +475493,Economic Development,Economic Development +475481,Economic Development,Economic Development +475418,Economic Development,Economic Development +472988,Economic Development,Economic Development +472986,Economic Development,Economic Development +472982,Economic Development,Economic Development +470952,Economic Development,Economic Development +470949,Economic Development,Economic Development +470941,Economic Development,Economic Development +470759,Economic Development,Economic Development +470758,Economic Development,Economic Development +470755,Economic Development,Economic Development +467866,Economic Development,Economic Development +464930,Economic Development,Economic Development +464929,Economic Development,Economic Development +464914,Economic Development,Economic Development +464876,Economic Development,Economic Development +464863,Economic Development,Economic Development +464816,Economic Development,Economic Development +458443,Economic Development,Economic Development +458442,Economic Development,Economic Development +458440,Economic Development,Economic Development +458435,Economic Development,Economic Development +458434,Economic Development,Economic Development +458432,Economic Development,Economic Development +458431,Economic Development,Economic Development +458430,Economic Development,Economic Development +456908,Economic Development,Economic Development +456906,Economic Development,Economic Development +456905,Economic Development,Economic Development +456904,Economic Development,Economic Development +456903,Economic Development,Economic Development +456901,Economic Development,Economic Development +455991,Economic Development,Economic Development +455986,Economic Development,Economic Development +455980,Economic Development,Economic Development +455959,Economic Development,Economic Development +452827,Economic Development,Economic Development +452825,Economic Development,Economic Development +452822,Economic Development,Economic Development +452817,Economic Development,Economic Development +452805,Economic Development,Economic Development +452803,Economic Development,Economic Development +452778,Economic Development,Economic Development +452772,Economic Development,Economic Development +452769,Economic Development,Economic Development +452673,Economic Development,Economic Development +449750,Economic Development,Economic Development +449749,Economic Development,Economic Development +449746,Economic Development,Economic Development +449744,Economic Development,Economic Development +449743,Economic Development,Economic Development +449742,Economic Development,Economic Development +449739,Economic Development,Economic Development +448137,Economic Development,Economic Development +448135,Economic Development,Economic Development +448134,Economic Development,Economic Development +445670,Economic Development,Economic Development +445669,Economic Development,Economic Development +445667,Economic Development,Economic Development +445663,Economic Development,Economic Development +442691,Economic Development,Economic Development +442688,Economic Development,Economic Development +442684,Economic Development,Economic Development +442683,Economic Development,Economic Development +438800,Economic Development,Economic Development +438191,Economic Development,Economic Development +438188,Economic Development,Economic Development +438142,Economic Development,Economic Development +435638,Economic Development,Economic Development +433674,Economic Development,Economic Development +432469,Economic Development,Economic Development +432468,Economic Development,Economic Development +432466,Economic Development,Economic Development +430945,Economic Development,Economic Development +430929,Economic Development,Economic Development +430920,Economic Development,Economic Development +430914,Economic Development,Economic Development +429246,Economic Development,Economic Development +429244,Economic Development,Economic Development +429225,Economic Development,Economic Development +429216,Economic Development,Economic Development +429199,Economic Development,Economic Development +429195,Economic Development,Economic Development +429193,Economic Development,Economic Development +426323,Economic Development,Economic Development +426322,Economic Development,Economic Development +426321,Economic Development,Economic Development +426320,Economic Development,Economic Development +426319,Economic Development,Economic Development +426318,Economic Development,Economic Development +426316,Economic Development,Economic Development +426314,Economic Development,Economic Development +426312,Economic Development,Economic Development +426311,Economic Development,Economic Development +426310,Economic Development,Economic Development +426309,Economic Development,Economic Development +426308,Economic Development,Economic Development +426307,Economic Development,Economic Development +426297,Economic Development,Economic Development +426285,Economic Development,Economic Development +424048,Economic Development,Economic Development +424010,Economic Development,Economic Development +424002,Economic Development,Economic Development +422108,Economic Development,Economic Development +421680,Economic Development,Economic Development +421667,Economic Development,Economic Development +421661,Economic Development,Economic Development +421646,Economic Development,Economic Development +421643,Economic Development,Economic Development +421641,Economic Development,Economic Development +420230,Economic Development,Economic Development +420225,Economic Development,Economic Development +420223,Economic Development,Economic Development +420222,Economic Development,Economic Development +420221,Economic Development,Economic Development +420218,Economic Development,Economic Development +420217,Economic Development,Economic Development +420144,Economic Development,Economic Development +418062,Economic Development,Economic Development +418058,Economic Development,Economic Development +544517,Economic Development,Economic Development +544516,Economic Development,Economic Development +544515,Economic Development,Economic Development +544514,Economic Development,Economic Development +540115,Economic Development,Economic Development +540113,Economic Development,Economic Development +540111,Economic Development,Economic Development +540109,Economic Development,Economic Development +537488,Economic Development,Economic Development +537486,Economic Development,Economic Development +537482,Economic Development,Economic Development +537479,Economic Development,Economic Development +537476,Economic Development,Economic Development +535929,Economic Development,Economic Development +535615,Economic Development,Economic Development +535611,Economic Development,Economic Development +535605,Economic Development,Economic Development +535599,Economic Development,Economic Development +535569,Economic Development,Economic Development +535541,Economic Development,Economic Development +535514,Economic Development,Economic Development +527858,Economic Development,Economic Development +527856,Economic Development,Economic Development +527855,Economic Development,Economic Development +524935,Economic Development,Economic Development +524931,Economic Development,Economic Development +524930,Economic Development,Economic Development +524894,Economic Development,Economic Development +517968,Economic Development,Economic Development +517964,Economic Development,Economic Development +517958,Economic Development,Economic Development +517954,Economic Development,Economic Development +517951,Economic Development,Economic Development +517944,Economic Development,Economic Development +517928,Economic Development,Economic Development +517919,Economic Development,Economic Development +513284,Economic Development,Economic Development +513283,Economic Development,Economic Development +513281,Economic Development,Economic Development +513276,Economic Development,Economic Development +513274,Economic Development,Economic Development +513269,Economic Development,Economic Development +510547,Economic Development,Economic Development +510546,Economic Development,Economic Development +510543,Economic Development,Economic Development +510535,Economic Development,Economic Development +508133,Economic Development,Economic Development +508100,Economic Development,Economic Development +508066,Economic Development,Economic Development +504631,Economic Development,Economic Development +504629,Economic Development,Economic Development +504625,Economic Development,Economic Development +504621,Economic Development,Economic Development +504620,Economic Development,Economic Development +502268,Economic Development,Economic Development +502267,Economic Development,Economic Development +502264,Economic Development,Economic Development +502260,Economic Development,Economic Development +502257,Economic Development,Economic Development +502253,Economic Development,Economic Development +499350,Economic Development,Economic Development +499347,Economic Development,Economic Development +499331,Economic Development,Economic Development +495491,Economic Development,Economic Development +495490,Economic Development,Economic Development +524894,Energy,Energy +519867,Energy,Energy +324672,Energy,Energy +406477,Energy,Energy +406476,Energy,Energy +405304,Energy,Energy +405228,Energy,Energy +405227,Energy,Energy +405226,Energy,Energy +405222,Energy,Energy +405221,Energy,Energy +405211,Energy,Energy +405206,Energy,Energy +517975,Energy,Energy +517944,Energy,Energy +517928,Energy,Energy +517919,Energy,Energy +513281,Energy,Energy +510543,Energy,Energy +461545,Energy,Energy +461540,Energy,Energy +461539,Energy,Energy +461537,Energy,Energy +461535,Energy,Energy +432469,Energy,Energy +544519,Energy,Energy +544518,Energy,Energy +537496,Energy,Energy +537486,Energy,Energy +537482,Energy,Energy +537479,Energy,Energy +537476,Energy,Energy +537471,Energy,Energy +537470,Energy,Energy +535929,Energy,Energy +535615,Energy,Energy +535611,Energy,Energy +535605,Energy,Energy +535599,Energy,Energy +535569,Energy,Energy +535555,Energy,Energy +535549,Energy,Energy +535546,Energy,Energy +535541,Energy,Energy +535533,Energy,Energy +535520,Energy,Energy +535514,Energy,Energy +527858,Energy,Energy +527857,Energy,Energy +527856,Energy,Energy +527855,Energy,Energy +524935,Energy,Energy +524931,Energy,Energy +510529,Infrastructure,Infrastructure +491485,Infrastructure,Infrastructure +341977,Infrastructure,Infrastructure +324669,Infrastructure,Infrastructure +461545,Infrastructure,Infrastructure +461540,Infrastructure,Infrastructure +461539,Infrastructure,Infrastructure +461537,Infrastructure,Infrastructure +461535,Infrastructure,Infrastructure +452778,Infrastructure,Infrastructure +452772,Infrastructure,Infrastructure +452769,Infrastructure,Infrastructure +452673,Infrastructure,Infrastructure +442693,Infrastructure,Infrastructure +442691,Infrastructure,Infrastructure +442690,Infrastructure,Infrastructure +442689,Infrastructure,Infrastructure +442686,Infrastructure,Infrastructure +403730,Infrastructure,Infrastructure +395320,Infrastructure,Infrastructure +395319,Infrastructure,Infrastructure +391089,Infrastructure,Infrastructure +391088,Infrastructure,Infrastructure +391087,Infrastructure,Infrastructure +372735,Infrastructure,Infrastructure +364604,Infrastructure,Infrastructure +341985,Infrastructure,Infrastructure +544518,Infrastructure,Infrastructure +537496,Infrastructure,Infrastructure +537494,Infrastructure,Infrastructure +537492,Infrastructure,Infrastructure +537484,Infrastructure,Infrastructure +537478,Infrastructure,Infrastructure +527857,Infrastructure,Infrastructure +517960,Infrastructure,Infrastructure +515842,Infrastructure,Infrastructure +416090,Climate,Climate +416087,Climate,Climate +324714,Climate,Climate +324669,Climate,Climate +416085,Climate,Climate +416080,Climate,Climate +416066,Climate,Climate +416058,Climate,Climate +416054,Climate,Climate +413137,Climate,Climate +408132,Climate,Climate +407882,Climate,Climate +405307,Climate,Climate +403799,Climate,Climate +403723,Climate,Climate +403717,Climate,Climate +399476,Climate,Climate +394111,Climate,Climate +391089,Climate,Climate +391088,Climate,Climate +391087,Climate,Climate +387836,Climate,Climate +387824,Climate,Climate +385577,Climate,Climate +385375,Climate,Climate +385373,Climate,Climate +385372,Climate,Climate +383316,Climate,Climate +383315,Climate,Climate +379843,Climate,Climate +379813,Climate,Climate +379783,Climate,Climate +379707,Climate,Climate +379701,Climate,Climate +379034,Climate,Climate +376905,Climate,Climate +374945,Climate,Climate +373477,Climate,Climate +372735,Climate,Climate +372734,Climate,Climate +544519,Climate,Climate +544518,Climate,Climate +544517,Climate,Climate +544516,Climate,Climate +544515,Climate,Climate +544514,Climate,Climate +540115,Climate,Climate +540113,Climate,Climate +540111,Climate,Climate +537496,Climate,Climate +535541,Climate,Climate +535533,Climate,Climate +535520,Climate,Climate +528304,Climate,Climate +526893,Climate,Climate +522202,Climate,Climate +519867,Climate,Climate +517982,Climate,Climate +517975,Climate,Climate +517960,Climate,Climate +517951,Climate,Climate +513283,Climate,Climate +513276,Climate,Climate +513269,Climate,Climate +510543,Climate,Climate +502244,Climate,Climate +470759,Climate,Climate +449750,Climate,Climate +448137,Climate,Climate +448135,Climate,Climate +448134,Climate,Climate +442693,Climate,Climate +442685,Climate,Climate +438802,Climate,Climate +438800,Climate,Climate +438142,Climate,Climate +432469,Climate,Climate +418068,Climate,Climate +493150,Privacy and Access to Information,Privacy and Access to Information +490492,Privacy and Access to Information,Privacy and Access to Information +341889,Privacy and Access to Information,Privacy and Access to Information +324689,Privacy and Access to Information,Privacy and Access to Information +393524,Privacy and Access to Information,Privacy and Access to Information +393513,Privacy and Access to Information,Privacy and Access to Information +393438,Privacy and Access to Information,Privacy and Access to Information +389198,Privacy and Access to Information,Privacy and Access to Information +381607,Privacy and Access to Information,Privacy and Access to Information +347017,Privacy and Access to Information,Privacy and Access to Information +477537,Privacy and Access to Information,Privacy and Access to Information +476470,Privacy and Access to Information,Privacy and Access to Information +467818,Privacy and Access to Information,Privacy and Access to Information +467811,Privacy and Access to Information,Privacy and Access to Information +467210,Privacy and Access to Information,Privacy and Access to Information +462249,Privacy and Access to Information,Privacy and Access to Information +458573,Privacy and Access to Information,Privacy and Access to Information +450218,Privacy and Access to Information,Privacy and Access to Information +443761,Privacy and Access to Information,Privacy and Access to Information +439549,Privacy and Access to Information,Privacy and Access to Information +439548,Privacy and Access to Information,Privacy and Access to Information +439546,Privacy and Access to Information,Privacy and Access to Information +439545,Privacy and Access to Information,Privacy and Access to Information +439543,Privacy and Access to Information,Privacy and Access to Information +439542,Privacy and Access to Information,Privacy and Access to Information +539152,Privacy and Access to Information,Privacy and Access to Information +537823,Privacy and Access to Information,Privacy and Access to Information +534653,Privacy and Access to Information,Privacy and Access to Information +534651,Privacy and Access to Information,Privacy and Access to Information +534650,Privacy and Access to Information,Privacy and Access to Information +534505,Privacy and Access to Information,Privacy and Access to Information +534504,Privacy and Access to Information,Privacy and Access to Information +531535,Privacy and Access to Information,Privacy and Access to Information +531506,Privacy and Access to Information,Privacy and Access to Information +529055,Privacy and Access to Information,Privacy and Access to Information +525675,Privacy and Access to Information,Privacy and Access to Information +519724,Privacy and Access to Information,Privacy and Access to Information +519693,Privacy and Access to Information,Privacy and Access to Information +519690,Privacy and Access to Information,Privacy and Access to Information +514915,Privacy and Access to Information,Privacy and Access to Information +513589,Privacy and Access to Information,Privacy and Access to Information +512791,Privacy and Access to Information,Privacy and Access to Information +510598,Privacy and Access to Information,Privacy and Access to Information +510590,Privacy and Access to Information,Privacy and Access to Information +510566,Privacy and Access to Information,Privacy and Access to Information +510564,Privacy and Access to Information,Privacy and Access to Information +501815,Privacy and Access to Information,Privacy and Access to Information +324704,Economic Development,Economic Development +415727,Economic Development,Economic Development +415726,Economic Development,Economic Development +328024,Health,Health +324898,Economic Development,Economic Development +353834,Economic Development,Economic Development +343710,Government Procurement,Government Procurement +337010,International Trade,International Trade +369929,International Trade,International Trade +367853,International Trade,International Trade +336003,Economic Development,Economic Development +543783,Economic Development,Economic Development +394382,Government Procurement,Government Procurement +457485,Government Procurement,Government Procurement +325032,Government Procurement,Government Procurement +377215,Government Procurement,Government Procurement +377214,Government Procurement,Government Procurement +377192,Government Procurement,Government Procurement +372664,Government Procurement,Government Procurement +372656,Government Procurement,Government Procurement +433968,Government Procurement,Government Procurement +401057,Government Procurement,Government Procurement +394388,Government Procurement,Government Procurement +477944,Economic Development,Economic Development +325055,Budget,Budget +376420,Budget,Budget +325057,Economic Development,Economic Development +543796,Economic Development,Economic Development +515310,Justice and Law Enforcement,Justice and Law Enforcement +510999,Justice and Law Enforcement,Justice and Law Enforcement +341643,Justice and Law Enforcement,Justice and Law Enforcement +325055,Justice and Law Enforcement,Justice and Law Enforcement +325054,Justice and Law Enforcement,Justice and Law Enforcement +476884,Justice and Law Enforcement,Justice and Law Enforcement +464010,Justice and Law Enforcement,Justice and Law Enforcement +435687,Justice and Law Enforcement,Justice and Law Enforcement +428604,Justice and Law Enforcement,Justice and Law Enforcement +405234,Justice and Law Enforcement,Justice and Law Enforcement +404039,Justice and Law Enforcement,Justice and Law Enforcement +403543,Justice and Law Enforcement,Justice and Law Enforcement +543796,Justice and Law Enforcement,Justice and Law Enforcement +325055,Pensions,Pensions +325120,International Trade,International Trade +327535,International Relations,International Relations +327526,International Relations,International Relations +357879,International Relations,International Relations +349148,International Relations,International Relations +333550,International Relations,International Relations +327535,International Trade,International Trade +327526,International Trade,International Trade +357879,International Trade,International Trade +349148,International Trade,International Trade +333550,International Trade,International Trade +327535,Mining,Mining +327526,Mining,Mining +357879,Mining,Mining +349148,Mining,Mining +333550,Mining,Mining +340360,Health,Health +336934,Health,Health +336933,Health,Health +336932,Health,Health +336931,Health,Health +336930,Health,Health +333989,Health,Health +330968,Health,Health +327341,Health,Health +326675,Health,Health +325530,Health,Health +336932,Regional Development,Regional Development +394364,Employment and Training,Employment and Training +410813,Climate,Climate +410810,Climate,Climate +373514,Climate,Climate +410822,Climate,Climate +410815,Climate,Climate +338107,Environment,Environment +337903,Environment,Environment +337901,Environment,Environment +326389,Environment,Environment +437474,Infrastructure,Infrastructure +437461,Infrastructure,Infrastructure +378974,Infrastructure,Infrastructure +378949,Infrastructure,Infrastructure +378947,Infrastructure,Infrastructure +378945,Infrastructure,Infrastructure +378943,Infrastructure,Infrastructure +378942,Infrastructure,Infrastructure +378939,Infrastructure,Infrastructure +378937,Infrastructure,Infrastructure +378933,Infrastructure,Infrastructure +378931,Infrastructure,Infrastructure +378905,Infrastructure,Infrastructure +378903,Infrastructure,Infrastructure +378900,Infrastructure,Infrastructure +378897,Infrastructure,Infrastructure +378895,Infrastructure,Infrastructure +378890,Infrastructure,Infrastructure +378883,Infrastructure,Infrastructure +378865,Infrastructure,Infrastructure +356957,Infrastructure,Infrastructure +325363,Infrastructure,Infrastructure +437455,Infrastructure,Infrastructure +437454,Infrastructure,Infrastructure +437453,Infrastructure,Infrastructure +336117,Energy,Energy +336116,Energy,Energy +490794,Health,Health +490777,Health,Health +373009,Health,Health +373008,Health,Health +373007,Health,Health +373006,Health,Health +373005,Health,Health +373004,Health,Health +373003,Health,Health +367845,Health,Health +367844,Health,Health +367843,Health,Health +367553,Health,Health +367023,Health,Health +367022,Health,Health +366780,Health,Health +366779,Health,Health +365573,Health,Health +365572,Health,Health +365571,Health,Health +365570,Health,Health +365569,Health,Health +365568,Health,Health +365566,Health,Health +365565,Health,Health +365511,Health,Health +365510,Health,Health +348080,Health,Health +348079,Health,Health +325480,Health,Health +479407,Health,Health +479406,Health,Health +479405,Health,Health +471466,Health,Health +465982,Health,Health +465972,Health,Health +465970,Health,Health +465969,Health,Health +465968,Health,Health +465967,Health,Health +465966,Health,Health +465962,Health,Health +465961,Health,Health +465960,Health,Health +465959,Health,Health +463925,Health,Health +463913,Health,Health +463912,Health,Health +463910,Health,Health +463908,Health,Health +462230,Health,Health +462229,Health,Health +462228,Health,Health +462227,Health,Health +462226,Health,Health +462225,Health,Health +462224,Health,Health +462223,Health,Health +461075,Health,Health +461060,Health,Health +461059,Health,Health +461058,Health,Health +459158,Health,Health +434315,Health,Health +434314,Health,Health +420697,Health,Health +414658,Health,Health +378574,Health,Health +377903,Health,Health +377902,Health,Health +377556,Health,Health +373484,Health,Health +373483,Health,Health +373482,Health,Health +522813,Health,Health +522810,Health,Health +522801,Health,Health +522799,Health,Health +522791,Health,Health +517744,Health,Health +334031,Health,Health +333117,Health,Health +335117,Health,Health +326773,Taxation and Finance,Taxation and Finance +326772,Taxation and Finance,Taxation and Finance +326776,Taxation and Finance,Taxation and Finance +326775,Taxation and Finance,Taxation and Finance +326779,Taxation and Finance,Taxation and Finance +331127,Taxation and Finance,Taxation and Finance +330017,Taxation and Finance,Taxation and Finance +343713,Taxation and Finance,Taxation and Finance +338395,Taxation and Finance,Taxation and Finance +335889,Taxation and Finance,Taxation and Finance +329911,Energy,Energy +329910,Energy,Energy +338290,Energy,Energy +338289,Energy,Energy +333266,Energy,Energy +333265,Energy,Energy +333264,Energy,Energy +333263,Energy,Energy +333262,Energy,Energy +331025,Energy,Energy +329918,Energy,Energy +329916,Energy,Energy +329918,Industry,Industry +329916,Industry,Industry +338290,Industry,Industry +338289,Industry,Industry +331025,Industry,Industry +411013,Labour,Labour +529357,Labour,Labour +369978,Labour,Labour +468158,Labour,Labour +468157,Labour,Labour +468155,Labour,Labour +468154,Labour,Labour +468152,Labour,Labour +468150,Labour,Labour +468147,Labour,Labour +468146,Labour,Labour +468145,Labour,Labour +465096,Labour,Labour +465095,Labour,Labour +454267,Labour,Labour +454266,Labour,Labour +454264,Labour,Labour +454263,Labour,Labour +454257,Labour,Labour +454255,Labour,Labour +454254,Labour,Labour +452047,Labour,Labour +452039,Labour,Labour +441309,Labour,Labour +439184,Labour,Labour +438477,Labour,Labour +438472,Labour,Labour +438455,Labour,Labour +438452,Labour,Labour +433374,Labour,Labour +432192,Labour,Labour +430572,Labour,Labour +430363,Labour,Labour +430349,Labour,Labour +425903,Labour,Labour +423086,Labour,Labour +419240,Labour,Labour +414989,Labour,Labour +414988,Labour,Labour +411029,Labour,Labour +411028,Labour,Labour +411026,Labour,Labour +411025,Labour,Labour +411024,Labour,Labour +411022,Labour,Labour +475213,Economic Development,Economic Development +473608,Economic Development,Economic Development +327561,Economic Development,Economic Development +327550,Economic Development,Economic Development +327532,Economic Development,Economic Development +400269,Economic Development,Economic Development +355133,Economic Development,Economic Development +355129,Economic Development,Economic Development +329589,Economic Development,Economic Development +327647,Economic Development,Economic Development +327602,Economic Development,Economic Development +327591,Economic Development,Economic Development +327581,Economic Development,Economic Development +327577,Economic Development,Economic Development +327570,Economic Development,Economic Development +327567,Economic Development,Economic Development +327565,Economic Development,Economic Development +327563,Economic Development,Economic Development +481033,Economic Development,Economic Development +479256,Economic Development,Economic Development +479255,Economic Development,Economic Development +479254,Economic Development,Economic Development +476810,Economic Development,Economic Development +476808,Economic Development,Economic Development +475218,Economic Development,Economic Development +475217,Economic Development,Economic Development +475216,Economic Development,Economic Development +475215,Economic Development,Economic Development +353149,Defence,Defence +388995,Government Procurement,Government Procurement +353149,Government Procurement,Government Procurement +404410,Government Procurement,Government Procurement +353169,Budget,Budget +353168,Budget,Budget +359082,Budget,Budget +355370,Budget,Budget +355369,Budget,Budget +355366,Budget,Budget +355364,Budget,Budget +355362,Budget,Budget +355359,Budget,Budget +355356,Budget,Budget +355354,Budget,Budget +353177,Budget,Budget +353174,Budget,Budget +353173,Budget,Budget +353171,Budget,Budget +326753,International Relations,International Relations +326753,Tourism,Tourism +354241,International Trade,International Trade +350263,International Trade,International Trade +361723,International Trade,International Trade +361722,International Trade,International Trade +357535,International Trade,International Trade +357450,International Trade,International Trade +355311,International Trade,International Trade +357524,Industry,Industry +332455,Agriculture,Agriculture +332454,Agriculture,Agriculture +332690,Agriculture,Agriculture +327092,Consumer Issues,Consumer Issues +326478,Consumer Issues,Consumer Issues +326729,Health,Health +328389,Taxation and Finance,Taxation and Finance +326392,Taxation and Finance,Taxation and Finance +333371,Taxation and Finance,Taxation and Finance +364988,Economic Development,Economic Development +364985,Economic Development,Economic Development +514359,Economic Development,Economic Development +509608,Economic Development,Economic Development +476243,Economic Development,Economic Development +476203,Economic Development,Economic Development +394054,Economic Development,Economic Development +379888,Economic Development,Economic Development +372501,Economic Development,Economic Development +372329,Economic Development,Economic Development +440453,Immigration,Immigration +440438,Immigration,Immigration +351774,Immigration,Immigration +351760,Immigration,Immigration +543623,Immigration,Immigration +543619,Immigration,Immigration +447156,Immigration,Immigration +326411,Financial Institutions,Financial Institutions +444142,Budget,Budget +444141,Budget,Budget +436857,Budget,Budget +436856,Budget,Budget +436854,Budget,Budget +431869,Budget,Budget +429978,Budget,Budget +421154,Budget,Budget +421153,Budget,Budget +421151,Budget,Budget +421149,Budget,Budget +417218,Budget,Budget +416682,Budget,Budget +409424,Budget,Budget +409423,Budget,Budget +409421,Budget,Budget +409420,Budget,Budget +403603,Budget,Budget +396746,Budget,Budget +396739,Budget,Budget +396722,Budget,Budget +395286,Budget,Budget +395284,Budget,Budget +395279,Budget,Budget +395274,Budget,Budget +392808,Budget,Budget +392807,Budget,Budget +357618,Budget,Budget +350292,Budget,Budget +350126,Budget,Budget +350122,Budget,Budget +350121,Budget,Budget +346744,Budget,Budget +346743,Budget,Budget +343342,Budget,Budget +343341,Budget,Budget +343339,Budget,Budget +340884,Budget,Budget +334562,Budget,Budget +334561,Budget,Budget +334560,Budget,Budget +334559,Budget,Budget +334558,Budget,Budget +334557,Budget,Budget +334556,Budget,Budget +334555,Budget,Budget +334554,Budget,Budget +334553,Budget,Budget +334552,Budget,Budget +332732,Budget,Budget +331338,Budget,Budget +331337,Budget,Budget +331335,Budget,Budget +331334,Budget,Budget +331333,Budget,Budget +331332,Budget,Budget +331331,Budget,Budget +331329,Budget,Budget +330397,Budget,Budget +329902,Budget,Budget +329901,Budget,Budget +329900,Budget,Budget +329896,Budget,Budget +327321,Budget,Budget +510158,Budget,Budget +509920,Budget,Budget +509918,Budget,Budget +509917,Budget,Budget +503406,Budget,Budget +502949,Budget,Budget +500538,Budget,Budget +496887,Budget,Budget +496886,Budget,Budget +496885,Budget,Budget +496884,Budget,Budget +494254,Budget,Budget +488950,Budget,Budget +488949,Budget,Budget +488948,Budget,Budget +488947,Budget,Budget +486929,Budget,Budget +486053,Budget,Budget +483102,Budget,Budget +479340,Budget,Budget +478605,Budget,Budget +476424,Budget,Budget +474470,Budget,Budget +474469,Budget,Budget +471601,Budget,Budget +463414,Budget,Budget +463412,Budget,Budget +463409,Budget,Budget +463407,Budget,Budget +455298,Budget,Budget +455295,Budget,Budget +455291,Budget,Budget +455289,Budget,Budget +455286,Budget,Budget +455285,Budget,Budget +455281,Budget,Budget +455279,Budget,Budget +455277,Budget,Budget +455252,Budget,Budget +455251,Budget,Budget +455250,Budget,Budget +451205,Budget,Budget +335289,Agriculture,Agriculture +330937,Agriculture,Agriculture +350660,Agriculture,Agriculture +350659,International Trade,Commerce international +331305,Immigration,Immigration +332949,Economic Development,Economic Development +328239,Economic Development,Economic Development +326574,Environment,Environment +542741,Employment and Training,Employment and Training +539093,Employment and Training,Employment and Training +373024,Employment and Training,Employment and Training +370201,Employment and Training,Employment and Training +370198,Employment and Training,Employment and Training +370197,Employment and Training,Employment and Training +368205,Employment and Training,Employment and Training +368170,Employment and Training,Employment and Training +367951,Employment and Training,Employment and Training +367950,Employment and Training,Employment and Training +367948,Employment and Training,Employment and Training +367946,Employment and Training,Employment and Training +367945,Employment and Training,Employment and Training +367944,Employment and Training,Employment and Training +366182,Employment and Training,Employment and Training +350219,Employment and Training,Employment and Training +347964,Employment and Training,Employment and Training +347961,Employment and Training,Employment and Training +342310,Employment and Training,Employment and Training +338909,Employment and Training,Employment and Training +328770,Employment and Training,Employment and Training +328769,Employment and Training,Employment and Training +418908,Employment and Training,Employment and Training +418906,Employment and Training,Employment and Training +418904,Employment and Training,Employment and Training +418903,Employment and Training,Employment and Training +414283,Employment and Training,Employment and Training +410636,Employment and Training,Employment and Training +410634,Employment and Training,Employment and Training +410633,Employment and Training,Employment and Training +410632,Employment and Training,Employment and Training +410630,Employment and Training,Employment and Training +410629,Employment and Training,Employment and Training +407503,Employment and Training,Employment and Training +407501,Employment and Training,Employment and Training +407392,Employment and Training,Employment and Training +407165,Employment and Training,Employment and Training +405302,Employment and Training,Employment and Training +404923,Employment and Training,Employment and Training +404291,Employment and Training,Employment and Training +402752,Employment and Training,Employment and Training +401246,Employment and Training,Employment and Training +400276,Employment and Training,Employment and Training +400274,Employment and Training,Employment and Training +400212,Employment and Training,Employment and Training +400211,Employment and Training,Employment and Training +395340,Employment and Training,Employment and Training +394727,Employment and Training,Employment and Training +394725,Employment and Training,Employment and Training +389230,Employment and Training,Employment and Training +385912,Employment and Training,Employment and Training +384252,Employment and Training,Employment and Training +380361,Employment and Training,Employment and Training +378445,Employment and Training,Employment and Training +378444,Employment and Training,Employment and Training +378443,Employment and Training,Employment and Training +378442,Employment and Training,Employment and Training +378441,Employment and Training,Employment and Training +376539,Employment and Training,Employment and Training +373687,Employment and Training,Employment and Training +373033,Employment and Training,Employment and Training +530434,Employment and Training,Employment and Training +530433,Employment and Training,Employment and Training +527853,Employment and Training,Employment and Training +527851,Employment and Training,Employment and Training +520975,Employment and Training,Employment and Training +518871,Employment and Training,Employment and Training +518869,Employment and Training,Employment and Training +516649,Employment and Training,Employment and Training +515030,Employment and Training,Employment and Training +513718,Employment and Training,Employment and Training +513717,Employment and Training,Employment and Training +512077,Employment and Training,Employment and Training +512074,Employment and Training,Employment and Training +509897,Employment and Training,Employment and Training +500725,Employment and Training,Employment and Training +500722,Employment and Training,Employment and Training +497413,Employment and Training,Employment and Training +486662,Employment and Training,Employment and Training +486654,Employment and Training,Employment and Training +486653,Employment and Training,Employment and Training +486651,Employment and Training,Employment and Training +476641,Employment and Training,Employment and Training +476635,Employment and Training,Employment and Training +472150,Employment and Training,Employment and Training +472146,Employment and Training,Employment and Training +472138,Employment and Training,Employment and Training +469612,Employment and Training,Employment and Training +469610,Employment and Training,Employment and Training +469609,Employment and Training,Employment and Training +465900,Employment and Training,Employment and Training +465897,Employment and Training,Employment and Training +463359,Employment and Training,Employment and Training +463356,Employment and Training,Employment and Training +461046,Employment and Training,Employment and Training +461045,Employment and Training,Employment and Training +461042,Employment and Training,Employment and Training +460936,Employment and Training,Employment and Training +460929,Employment and Training,Employment and Training +459380,Employment and Training,Employment and Training +459379,Employment and Training,Employment and Training +459378,Employment and Training,Employment and Training +458229,Employment and Training,Employment and Training +458228,Employment and Training,Employment and Training +458227,Employment and Training,Employment and Training +453455,Employment and Training,Employment and Training +453454,Employment and Training,Employment and Training +453451,Employment and Training,Employment and Training +453448,Employment and Training,Employment and Training +445973,Employment and Training,Employment and Training +445971,Employment and Training,Employment and Training +440598,Employment and Training,Employment and Training +440585,Employment and Training,Employment and Training +436880,Employment and Training,Employment and Training +436878,Employment and Training,Employment and Training +436877,Employment and Training,Employment and Training +434836,Employment and Training,Employment and Training +424779,Employment and Training,Employment and Training +422762,Employment and Training,Employment and Training +420881,Employment and Training,Employment and Training +329549,Transportation,Transportation +329529,Transportation,Transportation +339934,Transportation,Transportation +337210,Transportation,Transportation +337209,Transportation,Transportation +334590,Transportation,Transportation +334589,Transportation,Transportation +332711,Transportation,Transportation +332710,Transportation,Transportation +332709,Transportation,Transportation +332694,Transportation,Transportation +332693,Transportation,Transportation +331249,Transportation,Transportation +329552,Transportation,Transportation +329551,Transportation,Transportation +327736,International Trade,International Trade +327734,International Trade,International Trade +327730,Taxation and Finance,Taxation and Finance +327727,Taxation and Finance,Taxation and Finance +392903,Taxation and Finance,Taxation and Finance +357626,Taxation and Finance,Taxation and Finance +327736,Taxation and Finance,Taxation and Finance +335836,Employment and Training,Employment and Training +335840,Health,Health +335836,Taxation and Finance,Taxation and Finance +328332,Consumer Issues,Consumer Issues +328331,Consumer Issues,Consumer Issues +328336,Consumer Issues,Consumer Issues +328335,Consumer Issues,Consumer Issues +349083,Energy,Energy +329661,Energy,Energy +353508,Energy,Energy +350926,Energy,Energy +349098,Energy,Energy +336795,Environment,Environment +329661,Environment,Environment +353508,Environment,Environment +350926,Environment,Environment +349098,Environment,Environment +349096,Environment,Environment +349083,Environment,Environment +453923,Labour,Labour +453921,Labour,Labour +326969,Labour,Labour +402769,Labour,Labour +375537,Labour,Labour +373305,Labour,Labour +373304,Labour,Labour +373303,Labour,Labour +368612,Labour,Labour +368611,Labour,Labour +365723,Labour,Labour +365722,Labour,Labour +329818,Labour,Labour +459669,Labour,Labour +327090,Taxation and Finance,Taxation and Finance +344736,Taxation and Finance,Taxation and Finance +340057,Taxation and Finance,Taxation and Finance +351320,Health,Health +351317,Health,Health +341634,Health,Health +351322,Health,Health +327175,International Development,International Development +377202,International Development,International Development +377195,International Development,International Development +356387,International Development,International Development +341593,International Development,International Development +341587,International Development,International Development +341586,International Development,International Development +327176,International Development,International Development +380225,International Development,International Development +356396,International Development,International Development +327179,International Development,International Development +442743,International Development,International Development +377203,International Development,International Development +377201,International Development,International Development +349799,International Development,International Development +349798,International Development,International Development +331351,Agriculture,Agriculture +331350,Agriculture,Agriculture +396970,Agriculture,Agriculture +389589,Agriculture,Agriculture +381708,Agriculture,Agriculture +334571,Agriculture,Agriculture +334570,Agriculture,Agriculture +334570,Internal Trade,Internal Trade +334569,Internal Trade,Internal Trade +389589,Transportation,Transportation +381708,Transportation,Transportation +330254,Justice and Law Enforcement,Justice and Law Enforcement +327297,Justice and Law Enforcement,Justice and Law Enforcement +330240,Industry,Industry +330240,Infrastructure,Infrastructure +330167,Infrastructure,Infrastructure +330166,Infrastructure,Infrastructure +330167,Industry,Industry +330166,Industry,Industry +344037,Industry,Industry +344041,Infrastructure,Infrastructure +344039,Infrastructure,Infrastructure +330237,Infrastructure,Infrastructure +344041,Industry,Industry +344039,Industry,Industry +330237,Industry,Industry +329984,Infrastructure,Infrastructure +327496,Infrastructure,Infrastructure +358563,Infrastructure,Infrastructure +355401,Infrastructure,Infrastructure +355400,Infrastructure,Infrastructure +354820,Infrastructure,Infrastructure +354547,Infrastructure,Infrastructure +353107,Infrastructure,Infrastructure +353105,Infrastructure,Infrastructure +353104,Infrastructure,Infrastructure +353103,Infrastructure,Infrastructure +352590,Infrastructure,Infrastructure +352589,Infrastructure,Infrastructure +352587,Infrastructure,Infrastructure +349840,Infrastructure,Infrastructure +348865,Infrastructure,Infrastructure +348817,Infrastructure,Infrastructure +348816,Infrastructure,Infrastructure +348815,Infrastructure,Infrastructure +348814,Infrastructure,Infrastructure +348813,Infrastructure,Infrastructure +348812,Infrastructure,Infrastructure +348811,Infrastructure,Infrastructure +348810,Infrastructure,Infrastructure +348809,Infrastructure,Infrastructure +348794,Infrastructure,Infrastructure +348793,Infrastructure,Infrastructure +348792,Infrastructure,Infrastructure +348791,Infrastructure,Infrastructure +348782,Infrastructure,Infrastructure +348781,Infrastructure,Infrastructure +347885,Infrastructure,Infrastructure +347884,Infrastructure,Infrastructure +347881,Infrastructure,Infrastructure +338058,Infrastructure,Infrastructure +338056,Infrastructure,Infrastructure +338054,Infrastructure,Infrastructure +338052,Infrastructure,Infrastructure +338050,Infrastructure,Infrastructure +338048,Infrastructure,Infrastructure +338044,Infrastructure,Infrastructure +337840,Infrastructure,Infrastructure +335905,Infrastructure,Infrastructure +335903,Infrastructure,Infrastructure +335902,Infrastructure,Infrastructure +335897,Infrastructure,Infrastructure +331451,Infrastructure,Infrastructure +369089,Economic Development,Développement économique +333850,Economic Development,Développement économique +369089,Energy,Énergie +333850,Energy,Énergie +327836,Economic Development,Economic Development +327834,Economic Development,Economic Development +348740,Economic Development,Economic Development +340385,Economic Development,Economic Development +340382,Economic Development,Economic Development +331368,Economic Development,Economic Development +327829,Transportation,Transportation +327831,Transportation,Transportation +344880,Health,Health +352145,Transportation,Transportation +352145,Industry,Industry +352145,Environment,Environment +379968,Consumer Issues,Consumer Issues +379968,Health,Health +379968,International Trade,International Trade +355317,Agriculture,Agriculture +355317,International Trade,International Trade +329229,Economic Development,Economic Development +329229,Education,Education +350293,Education,Education +344553,Infrastructure,Infrastructure +333893,Research and Development,Research and Development +329229,Research and Development,Research and Development +350293,Research and Development,Research and Development +505071,Agriculture,Agriculture +505067,Agriculture,Agriculture +491799,Agriculture,Agriculture +491798,Agriculture,Agriculture +491796,Agriculture,Agriculture +454322,Agriculture,Agriculture +454321,Agriculture,Agriculture +454320,Agriculture,Agriculture +429663,Agriculture,Agriculture +401496,Agriculture,Agriculture +401495,Agriculture,Agriculture +401494,Agriculture,Agriculture +401492,Agriculture,Agriculture +401491,Agriculture,Agriculture +532853,Agriculture,Agriculture +532852,Agriculture,Agriculture +532851,Agriculture,Agriculture +517573,Agriculture,Agriculture +505071,Consumer Issues,Consumer Issues +505067,Consumer Issues,Consumer Issues +379473,Consumer Issues,Consumer Issues +379468,Consumer Issues,Consumer Issues +379465,Consumer Issues,Consumer Issues +532853,Health,Health +532852,Health,Health +379473,Health,Health +379468,Health,Health +379465,Health,Health +429662,Health,Health +454322,International Trade,International Trade +454321,International Trade,International Trade +379473,International Trade,International Trade +379468,International Trade,International Trade +379465,International Trade,International Trade +365146,International Trade,International Trade +454320,International Trade,International Trade +429663,International Trade,International Trade +429662,International Trade,International Trade +429661,International Trade,International Trade +401496,International Trade,International Trade +401495,International Trade,International Trade +401494,International Trade,International Trade +401492,International Trade,International Trade +401491,International Trade,International Trade +532853,International Trade,International Trade +532852,International Trade,International Trade +532851,International Trade,International Trade +517573,International Trade,International Trade +505074,International Trade,International Trade +505071,International Trade,International Trade +505067,International Trade,International Trade +491799,International Trade,International Trade +491798,International Trade,International Trade +410813,Economic Development,Economic Development +410810,Economic Development,Economic Development +338109,Economic Development,Economic Development +338107,Economic Development,Economic Development +337903,Economic Development,Economic Development +337901,Economic Development,Economic Development +329345,Economic Development,Economic Development +410822,Economic Development,Economic Development +410815,Economic Development,Economic Development +410813,Industry,Industry +410810,Industry,Industry +329345,Industry,Industry +410822,Industry,Industry +410815,Industry,Industry +410813,Infrastructure,Infrastructure +410810,Infrastructure,Infrastructure +410822,Infrastructure,Infrastructure +410815,Infrastructure,Infrastructure +338109,Regional Development,Regional Development +338107,Regional Development,Regional Development +337903,Regional Development,Regional Development +337901,Regional Development,Regional Development +375138,International Trade,International Trade +375136,International Trade,International Trade +374227,International Trade,International Trade +374213,International Trade,International Trade +374212,International Trade,International Trade +374211,International Trade,International Trade +374210,International Trade,International Trade +368320,International Trade,International Trade +365923,International Trade,International Trade +365922,International Trade,International Trade +360377,International Trade,International Trade +360376,International Trade,International Trade +360375,International Trade,International Trade +358823,International Trade,International Trade +358822,International Trade,International Trade +351689,International Trade,International Trade +351688,International Trade,International Trade +377522,International Trade,International Trade +376954,International Trade,International Trade +375373,International Trade,International Trade +375142,International Trade,International Trade +375141,International Trade,International Trade +355320,Agriculture,Agriculture +355319,Agriculture,Agriculture +355320,International Trade,International Trade +355319,International Trade,International Trade +454732,Agriculture,Agriculture +454729,Agriculture,Agriculture +401912,Agriculture,Agriculture +401910,Agriculture,Agriculture +401908,Agriculture,Agriculture +401906,Agriculture,Agriculture +401901,Agriculture,Agriculture +542133,Agriculture,Agriculture +540365,Agriculture,Agriculture +532887,Agriculture,Agriculture +532885,Agriculture,Agriculture +532884,Agriculture,Agriculture +505462,Agriculture,Agriculture +505461,Agriculture,Agriculture +505460,Agriculture,Agriculture +505459,Agriculture,Agriculture +491697,Agriculture,Agriculture +475612,Agriculture,Agriculture +467590,Agriculture,Agriculture +467481,Agriculture,Agriculture +467473,Agriculture,Agriculture +460784,Agriculture,Agriculture +379508,Consumer Issues,Consumer Issues +532885,Health,Health +475612,Health,Health +379509,Health,Health +429797,International Trade,International Trade +429796,International Trade,International Trade +401912,International Trade,International Trade +401910,International Trade,International Trade +401908,International Trade,International Trade +401906,International Trade,International Trade +401901,International Trade,International Trade +379509,International Trade,International Trade +379508,International Trade,International Trade +540365,International Trade,International Trade +532887,International Trade,International Trade +532885,International Trade,International Trade +532884,International Trade,International Trade +505462,International Trade,International Trade +505461,International Trade,International Trade +505460,International Trade,International Trade +505459,International Trade,International Trade +491697,International Trade,International Trade +467590,International Trade,International Trade +467481,International Trade,International Trade +467473,International Trade,International Trade +460784,International Trade,International Trade +456406,International Trade,International Trade +454732,International Trade,International Trade +454729,International Trade,International Trade +429800,International Trade,International Trade +373490,Energy,Energy +373489,Energy,Energy +471707,Energy,Energy +388027,Energy,Energy +373494,Energy,Energy +373493,Energy,Energy +373492,Energy,Energy +330219,Economic Development,Economic Development +330219,Energy,Energy +330219,Environment,Environment +333870,International Development,International Development +355314,Agriculture,Agriculture +355316,International Trade,International Trade +355314,International Trade,International Trade +378756,International Trade,International Trade +378755,International Trade,International Trade +378754,International Trade,International Trade +378753,International Trade,International Trade +424455,Energy,Energy +416827,Energy,Energy +351476,Energy,Energy +351475,Energy,Energy +351473,Energy,Energy +351469,Energy,Energy +351468,Energy,Energy +349381,Energy,Energy +349368,Energy,Energy +349367,Energy,Energy +347251,Energy,Energy +347250,Energy,Energy +347249,Energy,Energy +343628,Energy,Energy +343627,Energy,Energy +342069,Energy,Energy +338629,Energy,Energy +335735,Energy,Energy +335734,Energy,Energy +335733,Energy,Energy +335732,Energy,Energy +335731,Energy,Energy +335730,Energy,Energy +335729,Energy,Energy +333650,Energy,Energy +333648,Energy,Energy +333646,Energy,Energy +333637,Energy,Energy +333636,Energy,Energy +333632,Energy,Energy +413768,Energy,Energy +413766,Energy,Energy +405827,Energy,Energy +405765,Energy,Energy +405762,Energy,Energy +405761,Energy,Energy +405760,Energy,Energy +404002,Energy,Energy +404001,Energy,Energy +404000,Energy,Energy +398347,Energy,Energy +394417,Energy,Energy +392606,Energy,Energy +392603,Energy,Energy +387717,Energy,Energy +387714,Energy,Energy +387702,Energy,Energy +381608,Energy,Energy +380057,Energy,Energy +380056,Energy,Energy +380055,Energy,Energy +380054,Energy,Energy +380053,Energy,Energy +377040,Energy,Energy +377036,Energy,Energy +377033,Energy,Energy +377031,Energy,Energy +377027,Energy,Energy +377020,Energy,Energy +372255,Energy,Energy +372254,Energy,Energy +372253,Energy,Energy +372251,Energy,Energy +372250,Energy,Energy +372249,Energy,Energy +369605,Energy,Energy +369602,Energy,Energy +366557,Energy,Energy +366556,Energy,Energy +366555,Energy,Energy +366554,Energy,Energy +365227,Energy,Energy +363395,Energy,Energy +362582,Energy,Energy +362147,Energy,Energy +361153,Energy,Energy +361152,Energy,Energy +361151,Energy,Energy +361150,Energy,Energy +359918,Energy,Energy +359917,Energy,Energy +359876,Energy,Energy +359875,Energy,Energy +359789,Energy,Energy +359788,Energy,Energy +359787,Energy,Energy +359786,Energy,Energy +359785,Energy,Energy +359784,Energy,Energy +359782,Energy,Energy +357806,Energy,Energy +357805,Energy,Energy +357804,Energy,Energy +357800,Energy,Energy +355810,Energy,Energy +353993,Energy,Energy +353992,Energy,Energy +353991,Energy,Energy +353986,Energy,Energy +353982,Energy,Energy +353979,Energy,Energy +353975,Energy,Energy +353974,Energy,Energy +475985,Energy,Energy +467954,Energy,Energy +467953,Energy,Energy +456040,Energy,Energy +452953,Energy,Energy +452951,Energy,Energy +452945,Energy,Energy +450082,Energy,Energy +445678,Energy,Energy +444004,Energy,Energy +444000,Energy,Energy +443999,Energy,Energy +443998,Energy,Energy +443997,Energy,Energy +442718,Energy,Energy +442717,Energy,Energy +442716,Energy,Energy +442715,Energy,Energy +442714,Energy,Energy +439414,Energy,Energy +439197,Energy,Energy +436039,Energy,Energy +436038,Energy,Energy +436036,Energy,Energy +436035,Energy,Energy +436034,Energy,Energy +436032,Energy,Energy +436030,Energy,Energy +436029,Energy,Energy +436028,Energy,Energy +436027,Energy,Energy +433931,Energy,Energy +433930,Energy,Energy +433929,Energy,Energy +433928,Energy,Energy +433927,Energy,Energy +433926,Energy,Energy +431312,Energy,Energy +431311,Energy,Energy +431309,Energy,Energy +431296,Energy,Energy +431293,Energy,Energy +429500,Energy,Energy +426469,Energy,Energy +426468,Energy,Energy +424471,Energy,Energy +424463,Energy,Energy +424462,Energy,Energy +424461,Energy,Energy +424460,Energy,Energy +424459,Energy,Energy +424457,Energy,Energy +375384,Financial Institutions,Financial Institutions +375383,Financial Institutions,Financial Institutions +377236,Financial Institutions,Financial Institutions +375384,Industry,Industry +375383,Industry,Industry +375384,Pensions,Pensions +375383,Pensions,Pensions +377236,Pensions,Pensions +329064,Research and Development,Recherche et développement +375064,Climate,Climate +374532,Climate,Climate +372663,Climate,Climate +370770,Climate,Climate +370174,Climate,Climate +370166,Climate,Climate +370137,Climate,Climate +370084,Climate,Climate +369645,Climate,Climate +365482,Climate,Climate +450927,Climate,Climate +450598,Climate,Climate +450597,Climate,Climate +431415,Climate,Climate +414590,Climate,Climate +410848,Climate,Climate +410485,Climate,Climate +408759,Climate,Climate +392935,Climate,Climate +390354,Climate,Climate +388956,Climate,Climate +387356,Climate,Climate +386781,Climate,Climate +386560,Climate,Climate +386145,Climate,Climate +386144,Climate,Climate +386143,Climate,Climate +384266,Climate,Climate +382745,Climate,Climate +382744,Climate,Climate +381856,Climate,Climate +380264,Climate,Climate +380250,Climate,Climate +379872,Climate,Climate +379871,Climate,Climate +379869,Climate,Climate +378470,Climate,Climate +378466,Climate,Climate +377957,Climate,Climate +377954,Climate,Climate +377953,Climate,Climate +377952,Climate,Climate +377949,Climate,Climate +377947,Climate,Climate +377918,Climate,Climate +377915,Climate,Climate +377914,Climate,Climate +377913,Climate,Climate +375815,Climate,Climate +375626,Climate,Climate +375623,Climate,Climate +375172,Climate,Climate +375102,Climate,Climate +445810,Agriculture,Agriculture +445809,Agriculture,Agriculture +325219,Environment,Environment +398657,Employment and Training,Employment and Training +410814,Climate,Climate +338109,Environment,Environment +437486,Infrastructure,Infrastructure +340449,Energy,Energy +517737,Health,Health +335017,Health,Health +335117,Industry,Industry +326774,Taxation and Finance,Taxation and Finance +326778,Taxation and Finance,Taxation and Finance +335884,Taxation and Finance,Taxation and Finance +327929,Energy,Energy +329913,Energy,Energy +330975,Industry,Industry +411021,Labour,Labour +475214,Economic Development,Economic Development +404410,Defence,Defence +404410,Fisheries,Fisheries +397234,Government Procurement,Government Procurement +404410,Regional Development,Regional Development +353170,Budget,Budget +326754,International Relations,International Relations +326754,Tourism,Tourism +354715,International Trade,International Trade +361892,Industry,Industry +355264,Infrastructure,Infrastructure +332689,Agriculture,Agriculture +325729,Employment and Training,Employment and Training +325731,Consumer Issues,Consumer Issues +325791,Internal Trade,Internal Trade +326730,Health,Health +349465,Municipalities,Municipalités +328390,Taxation and Finance,Taxation and Finance +367552,Economic Development,Economic Development +325917,Industry,Industry +440455,Immigration,Immigration +326111,Energy,Energy +326333,Consumer Issues,Consumer Issues +326333,Housing,Housing +326349,Consumer Issues,Consumer Issues +326413,Financial Institutions,Financial Institutions +326411,Security,Security +326439,Economic Development,Economic Development +326471,Economic Development,Economic Development +326472,Economic Development,Economic Development +326473,Economic Development,Economic Development +326474,Economic Development,Economic Development +326475,Economic Development,Economic Development +446509,Budget,Budget +350659,Agriculture,Agriculture +350660,International Trade,Commerce international +330937,Industry,Industrie +326823,Financial Institutions,Financial Institutions +331305,Employment and Training,Employment and Training +332670,Immigration,Immigration +326535,Research and Development,Research and Development +339310,Economic Development,Economic Development +348893,Environment,Environment +418909,Employment and Training,Employment and Training +329550,Transportation,Transportation +357626,International Trade,International Trade +327734,Taxation and Finance,Taxation and Finance +329861,Labour,Labour +335840,Employment and Training,Employment and Training +335842,Health,Health +335842,Taxation and Finance,Taxation and Finance +328334,Consumer Issues,Consumer Issues +326925,Industry,Industry +326925,Consumer Issues,Consumer Issues +326925,Financial Institutions,Financial Institutions +349096,Energy,Energy +336796,Environment,Environment +453924,Labour,Labour +330226,Energy,Energy +330226,Industry,Industry +340055,Taxation and Finance,Taxation and Finance +351321,Health,Health +341575,International Development,International Development +356328,International Development,International Development +341599,International Development,International Development +327253,Housing,Housing +327259,Justice and Law Enforcement,Justice and Law Enforcement +334569,Agriculture,Agriculture +334571,Internal Trade,Internal Trade +396970,Transportation,Transportation +330255,Justice and Law Enforcement,Justice and Law Enforcement +330242,Industry,Industry +330242,Infrastructure,Infrastructure +344033,Infrastructure,Infrastructure +344033,Industry,Industry +327345,Labour,Labour +330235,Infrastructure,Infrastructure +330235,Industry,Industry +329985,Infrastructure,Infrastructure +376423,Economic Development,Développement économique +376423,Energy,Énergie +327711,Privacy and Access to Information,Privacy and Access to Information +371673,Education,Education +347397,Infrastructure,Infrastructure +327838,Economic Development,Economic Development +327830,Transportation,Transportation +348218,Health,Health +344881,Health,Health +328025,Immigration,Immigration +352146,Transportation,Transportation +352146,Industry,Industry +352146,Environment,Environment +379973,Consumer Issues,Consumer Issues +379973,Health,Health +379973,International Trade,International Trade +355318,Agriculture,Agriculture +355318,International Trade,International Trade +350293,Economic Development,Economic Development +333893,Education,Education +350293,Infrastructure,Infrastructure +329229,Regional Development,Regional Development +344553,Research and Development,Research and Development +505074,Agriculture,Agriculture +505074,Consumer Issues,Consumer Issues +429661,Health,Health +491796,International Trade,International Trade +410814,Economic Development,Economic Development +410814,Industry,Industry +410814,Infrastructure,Infrastructure +329345,Regional Development,Regional Development +375140,International Trade,International Trade +355321,Agriculture,Agriculture +355321,International Trade,International Trade +456406,Agriculture,Agriculture +379509,Consumer Issues,Consumer Issues +379508,Health,Health +429798,International Trade,International Trade +373491,Energy,Energy +330977,Industry,Industry +347145,Infrastructure,Infrastructure +333180,Economic Development,Economic Development +333180,Energy,Energy +333180,Environment,Environment +333180,Transportation,Transportation +356443,Economic Development,Economic Development +356438,Taxation and Finance,Taxation and Finance +333871,International Development,International Development +355316,Agriculture,Agriculture +365143,International Trade,International Trade +424456,Energy,Energy +376637,Financial Institutions,Financial Institutions +376637,Industry,Industry +376637,Pensions,Pensions +330281,Research and Development,Recherche et développement +334565,Industry,Industry +375101,Climate,Climate +445811,Agriculture,Agriculture +445810,International Trade,International Trade +471882,Agriculture,Agriculture +445815,International Trade,International Trade +330280,Research and Development,Recherche et développement +337507,Privacy and Access to Information,Privacy and Access to Information +384328,Justice and Law Enforcement,Justice and Law Enforcement +367707,Budget,Budget +344779,Small Business,Small Business +367705,Budget,Budget +340655,Small Business,Small Business +344779,Budget,Budget +342983,Small Business,Small Business +366341,Small Business,Small Business +375198,Taxation and Finance,Taxation and Finance +342984,Small Business,Small Business +347718,Budget,Budget +332191,Financial Institutions,Financial Institutions +347639,Employment and Training,Employment and Training +339471,Immigration,Immigration +526060,Infrastructure,Infrastructure +479577,Economic Development,Economic Development +484807,Employment and Training,Employment and Training +455417,Research and Development,Research and Development +467817,Economic Development,Economic Development +467867,Economic Development,Economic Development +351169,Industry,Industry +356161,Defence,Defence +334109,Fisheries,Fisheries +380280,Industry,Industry +330016,Infrastructure,Infrastructure +329778,Tourism,Tourism +460212,Tourism,Tourism +336489,Industry,Industry +343323,Consumer Issues,Consumer Issues +343323,Health,Health +359856,Immigration,Immigration +329873,Security,Sécurité +329875,Transportation,Transportation +396626,International Trade,International Trade +330258,Government Procurement,Government Procurement +359544,Energy,Energy +432914,Climate,Climate +330091,International Development,International Development +330117,Infrastructure,Infrastructure +331593,Employment and Training,Employment and Training +331593,Immigration,Immigration +331593,Industry,Industry +331593,Labour,Labour +330966,Government Procurement,Government Procurement +330168,Government Procurement,Government Procurement +330255,Security,Security +497306,Employment and Training,Employment and Training +474473,Immigration,Immigration +541609,Labour,Labour +330935,Security,Security +376319,Economic Development,Economic Development +377831,Small Business,Small Business +377831,Tourism,Tourism +410439,Consumer Issues,Consumer Issues +433040,Employment and Training,Employment and Training +411800,Intellectual Property,Intellectual Property +411097,Internal Trade,Internal Trade +330384,Justice and Law Enforcement,Justice et application des lois +465816,Housing,Housing +436908,Privacy and Access to Information,Privacy and Access to Information +330388,Regional Development,Regional Development +330388,Small Business,Small Business +357176,Infrastructure,Infrastructure +330424,Security,Security +353160,Infrastructure,Infrastructure +331203,Immigration,Immigration +404894,Research and Development,Research and Development +373067,Economic Development,Economic Development +373067,Tourism,Tourism +475770,Budget,Budget +330664,Climate,Climate +331936,Mining,Mining +339749,Environment,Environment +334432,Forestry,Forestry +339750,Taxation and Finance,Taxation and Finance +331285,International Relations,International Relations +333579,Economic Development,Economic Development +347585,Agriculture,Agriculture +347584,Agriculture,Agriculture +419088,Agriculture,Agriculture +419087,Agriculture,Agriculture +418595,Agriculture,Agriculture +414109,Agriculture,Agriculture +406751,Agriculture,Agriculture +394833,Agriculture,Agriculture +394832,Agriculture,Agriculture +394831,Agriculture,Agriculture +388713,Agriculture,Agriculture +369770,Agriculture,Agriculture +369769,Agriculture,Agriculture +524699,Agriculture,Agriculture +524698,Agriculture,Agriculture +524696,Agriculture,Agriculture +497182,Agriculture,Agriculture +497178,Agriculture,Agriculture +497175,Agriculture,Agriculture +463868,Agriculture,Agriculture +463792,Agriculture,Agriculture +463786,Agriculture,Agriculture +462068,Agriculture,Agriculture +445812,Agriculture,Agriculture +445809,International Trade,International Trade +434851,International Trade,International Trade +347585,International Trade,International Trade +347584,International Trade,International Trade +419088,International Trade,International Trade +419087,International Trade,International Trade +418595,International Trade,International Trade +414109,International Trade,International Trade +406751,International Trade,International Trade +394833,International Trade,International Trade +394832,International Trade,International Trade +394831,International Trade,International Trade +369770,International Trade,International Trade +369769,International Trade,International Trade +463868,International Trade,International Trade +463792,International Trade,International Trade +463786,International Trade,International Trade +462068,International Trade,International Trade +445812,International Trade,International Trade +445811,International Trade,International Trade +463803,Agriculture,Agriculture +463801,Agriculture,Agriculture +369718,Agriculture,Agriculture +347599,Agriculture,Agriculture +445815,Agriculture,Agriculture +445814,Agriculture,Agriculture +419086,Agriculture,Agriculture +419084,Agriculture,Agriculture +394816,Agriculture,Agriculture +394815,Agriculture,Agriculture +394812,Agriculture,Agriculture +394811,Agriculture,Agriculture +394804,Agriculture,Agriculture +380755,Agriculture,Agriculture +524238,Agriculture,Agriculture +524237,Agriculture,Agriculture +524235,Agriculture,Agriculture +497574,Agriculture,Agriculture +445814,International Trade,International Trade +524236,International Trade,International Trade +419086,International Trade,International Trade +419084,International Trade,International Trade +394816,International Trade,International Trade +394815,International Trade,International Trade +394812,International Trade,International Trade +394811,International Trade,International Trade +394804,International Trade,International Trade +380755,International Trade,International Trade +369718,International Trade,International Trade +347599,International Trade,International Trade +471882,International Trade,International Trade +463803,International Trade,International Trade +463801,International Trade,International Trade +329065,Research and Development,Recherche et développement +337505,Privacy and Access to Information,Privacy and Access to Information +334890,Privacy and Access to Information,Privacy and Access to Information +334889,Privacy and Access to Information,Privacy and Access to Information +334886,Privacy and Access to Information,Privacy and Access to Information +350239,Privacy and Access to Information,Privacy and Access to Information +350238,Privacy and Access to Information,Privacy and Access to Information +350237,Privacy and Access to Information,Privacy and Access to Information +350234,Privacy and Access to Information,Privacy and Access to Information +350233,Privacy and Access to Information,Privacy and Access to Information +348225,Privacy and Access to Information,Privacy and Access to Information +348224,Privacy and Access to Information,Privacy and Access to Information +348223,Privacy and Access to Information,Privacy and Access to Information +348221,Privacy and Access to Information,Privacy and Access to Information +345117,Privacy and Access to Information,Privacy and Access to Information +345037,Privacy and Access to Information,Privacy and Access to Information +384327,Justice and Law Enforcement,Justice and Law Enforcement +367704,Budget,Budget +329150,Budget,Budget +368288,Budget,Budget +368287,Budget,Budget +344733,Small Business,Small Business +340657,Small Business,Small Business +340653,Small Business,Small Business +329150,Small Business,Small Business +369780,Small Business,Small Business +369686,Small Business,Small Business +367707,Small Business,Small Business +344733,Budget,Budget +342984,Budget,Budget +342983,Budget,Budget +329151,Budget,Budget +340646,Small Business,Small Business +329151,Small Business,Small Business +375197,Small Business,Small Business +373158,Small Business,Small Business +369675,Small Business,Small Business +368288,Small Business,Small Business +347718,Small Business,Small Business +342985,Small Business,Small Business +342985,Budget,Budget +329152,Budget,Budget +375960,Budget,Budget +373159,Budget,Budget +373158,Budget,Budget +369974,Budget,Budget +369780,Budget,Budget +367706,Budget,Budget +367703,Budget,Budget +366341,Budget,Budget +340649,Small Business,Small Business +329152,Small Business,Small Business +367703,Small Business,Small Business +347978,Small Business,Small Business +347977,Small Business,Small Business +340652,Small Business,Small Business +340650,Small Business,Small Business +329153,Small Business,Small Business +375960,Small Business,Small Business +375200,Small Business,Small Business +375199,Small Business,Small Business +369974,Small Business,Small Business +368287,Small Business,Small Business +367704,Small Business,Small Business +373159,Taxation and Finance,Taxation and Finance +373158,Taxation and Finance,Taxation and Finance +369974,Taxation and Finance,Taxation and Finance +369780,Taxation and Finance,Taxation and Finance +369686,Taxation and Finance,Taxation and Finance +368288,Taxation and Finance,Taxation and Finance +368287,Taxation and Finance,Taxation and Finance +367707,Taxation and Finance,Taxation and Finance +367706,Taxation and Finance,Taxation and Finance +367705,Taxation and Finance,Taxation and Finance +367704,Taxation and Finance,Taxation and Finance +367703,Taxation and Finance,Taxation and Finance +366341,Taxation and Finance,Taxation and Finance +329153,Taxation and Finance,Taxation and Finance +375960,Taxation and Finance,Taxation and Finance +340654,Small Business,Small Business +329154,Small Business,Small Business +373159,Small Business,Small Business +369676,Small Business,Small Business +367706,Small Business,Small Business +367705,Small Business,Small Business +347717,Small Business,Small Business +347717,Budget,Budget +329155,Budget,Budget +369686,Budget,Budget +347978,Budget,Budget +347977,Budget,Budget +332190,Financial Institutions,Financial Institutions +347638,Employment and Training,Employment and Training +347637,Employment and Training,Employment and Training +339627,Employment and Training,Employment and Training +339491,Employment and Training,Employment and Training +339476,Employment and Training,Employment and Training +339475,Employment and Training,Employment and Training +339474,Employment and Training,Employment and Training +339473,Employment and Training,Employment and Training +339472,Employment and Training,Employment and Training +339471,Employment and Training,Employment and Training +332550,Employment and Training,Employment and Training +329770,Employment and Training,Employment and Training +348746,Employment and Training,Employment and Training +348745,Employment and Training,Employment and Training +348744,Employment and Training,Employment and Training +348743,Employment and Training,Employment and Training +348151,Employment and Training,Employment and Training +347644,Employment and Training,Employment and Training +347641,Employment and Training,Employment and Training +332550,Immigration,Immigration +329770,Immigration,Immigration +348746,Immigration,Immigration +348745,Immigration,Immigration +348744,Immigration,Immigration +348743,Immigration,Immigration +348151,Immigration,Immigration +347641,Immigration,Immigration +347639,Immigration,Immigration +347638,Immigration,Immigration +347637,Immigration,Immigration +339627,Immigration,Immigration +339474,Immigration,Immigration +339473,Immigration,Immigration +339472,Immigration,Immigration +494687,Infrastructure,Infrastructure +445229,Infrastructure,Infrastructure +387578,Infrastructure,Infrastructure +379617,Infrastructure,Infrastructure +370890,Infrastructure,Infrastructure +363042,Infrastructure,Infrastructure +361682,Infrastructure,Infrastructure +357162,Infrastructure,Infrastructure +342982,Infrastructure,Infrastructure +334313,Infrastructure,Infrastructure +329433,Infrastructure,Infrastructure +329432,Infrastructure,Infrastructure +329431,Infrastructure,Infrastructure +329430,Infrastructure,Infrastructure +329429,Infrastructure,Infrastructure +433087,Infrastructure,Infrastructure +395785,Infrastructure,Infrastructure +392150,Infrastructure,Infrastructure +476817,Economic Development,Economic Development +476816,Economic Development,Economic Development +353729,Economic Development,Economic Development +408012,Economic Development,Economic Development +408007,Economic Development,Economic Development +405360,Economic Development,Economic Development +405355,Economic Development,Economic Development +393421,Economic Development,Economic Development +392488,Economic Development,Economic Development +392472,Economic Development,Economic Development +392469,Economic Development,Economic Development +387955,Economic Development,Economic Development +385542,Economic Development,Economic Development +383609,Economic Development,Economic Development +383607,Economic Development,Economic Development +380988,Economic Development,Economic Development +508436,Economic Development,Economic Development +479588,Economic Development,Economic Development +476815,Employment and Training,Employment and Training +443534,Employment and Training,Employment and Training +413002,Employment and Training,Employment and Training +385581,Employment and Training,Employment and Training +374477,Employment and Training,Employment and Training +372041,Employment and Training,Employment and Training +447777,Research and Development,Research and Development +442371,Research and Development,Research and Development +374477,Research and Development,Research and Development +372041,Research and Development,Research and Development +369489,Research and Development,Research and Development +369488,Research and Development,Research and Development +361109,Research and Development,Research and Development +359733,Research and Development,Research and Development +359732,Research and Development,Research and Development +359729,Research and Development,Research and Development +359728,Research and Development,Research and Development +359727,Research and Development,Research and Development +359726,Research and Development,Research and Development +359724,Research and Development,Research and Development +358069,Research and Development,Research and Development +356406,Research and Development,Research and Development +356403,Research and Development,Research and Development +356402,Research and Development,Research and Development +356397,Research and Development,Research and Development +435124,Research and Development,Research and Development +409512,Research and Development,Research and Development +409502,Research and Development,Research and Development +409485,Research and Development,Research and Development +409461,Research and Development,Research and Development +400395,Research and Development,Research and Development +393414,Research and Development,Research and Development +393411,Research and Development,Research and Development +391194,Research and Development,Research and Development +391186,Research and Development,Research and Development +387960,Research and Development,Research and Development +479570,Research and Development,Research and Development +457024,Research and Development,Research and Development +457023,Research and Development,Research and Development +464585,Economic Development,Economic Development +459695,Economic Development,Economic Development +341254,Economic Development,Economic Development +341243,Economic Development,Economic Development +341237,Economic Development,Economic Development +341233,Economic Development,Economic Development +329692,Economic Development,Economic Development +372670,Economic Development,Economic Development +372666,Economic Development,Economic Development +372662,Economic Development,Economic Development +372660,Economic Development,Economic Development +372657,Economic Development,Economic Development +372653,Economic Development,Economic Development +372650,Economic Development,Economic Development +372636,Economic Development,Economic Development +372635,Economic Development,Economic Development +372631,Economic Development,Economic Development +372629,Economic Development,Economic Development +369776,Economic Development,Economic Development +369775,Economic Development,Economic Development +467860,Economic Development,Economic Development +467814,Economic Development,Economic Development +467800,Economic Development,Economic Development +374346,Economic Development,Economic Development +372665,Economic Development,Economic Development +372655,Economic Development,Economic Development +372647,Economic Development,Economic Development +372643,Economic Development,Economic Development +372640,Economic Development,Economic Development +372624,Economic Development,Economic Development +341256,Economic Development,Economic Development +341248,Economic Development,Economic Development +332130,Economic Development,Economic Development +329693,Economic Development,Economic Development +349067,Industry,Industry +469588,Industry,Industry +340923,Industry,Industry +333666,Industry,Industry +331094,Industry,Industry +330584,Industry,Industry +329717,Industry,Industry +363687,Industry,Industry +359836,Industry,Industry +353110,Industry,Industry +353109,Industry,Industry +353106,Industry,Industry +353102,Industry,Industry +351170,Industry,Industry +356160,Defence,Defence +352980,Defence,Defence +370365,Defence,Defence +333471,Fisheries,Fisheries +332832,Fisheries,Fisheries +334971,Fisheries,Fisheries +369751,Industry,Industry +369749,Industry,Industry +330021,Industry,Industry +330016,Industry,Industry +390071,Industry,Industry +384354,Industry,Industry +382748,Industry,Industry +330021,Infrastructure,Infrastructure +329777,Tourism,Tourism +457219,Tourism,Tourism +435318,Tourism,Tourism +329783,Tourism,Tourism +329782,Tourism,Tourism +430116,Tourism,Tourism +430115,Tourism,Tourism +426338,Tourism,Tourism +336489,Consumer Issues,Consumer Issues +351269,Security,Sécurité +396606,International Trade,International Trade +393949,International Trade,International Trade +329899,International Trade,International Trade +501631,International Trade,International Trade +409640,International Trade,International Trade +399094,International Trade,International Trade +359543,Energy,Energy +359542,Energy,Energy +342717,Energy,Energy +341959,Energy,Energy +341957,Energy,Energy +341952,Energy,Energy +341949,Energy,Energy +330935,Energy,Energy +330934,Energy,Energy +330933,Energy,Energy +367644,Energy,Energy +367643,Energy,Energy +367642,Energy,Energy +367641,Energy,Energy +359581,Energy,Energy +431902,Climate,Climate +431899,Climate,Climate +405931,Climate,Climate +378429,Climate,Climate +479160,Climate,Climate +479156,Climate,Climate +444439,Climate,Climate +444437,Climate,Climate +438086,Climate,Climate +438085,Climate,Climate +438084,Climate,Climate +438078,Climate,Climate +438074,Climate,Climate +438073,Climate,Climate +436551,Climate,Climate +436549,Climate,Climate +432924,Climate,Climate +331592,Employment and Training,Employment and Training +331592,Immigration,Immigration +331592,Industry,Industry +331592,Labour,Labour +497302,Employment and Training,Employment and Training +497301,Employment and Training,Employment and Training +359245,Employment and Training,Employment and Training +340377,Employment and Training,Employment and Training +333234,Employment and Training,Employment and Training +333233,Employment and Training,Employment and Training +331253,Employment and Training,Employment and Training +330710,Employment and Training,Employment and Training +330709,Employment and Training,Employment and Training +495606,Employment and Training,Employment and Training +495605,Employment and Training,Employment and Training +478601,Employment and Training,Employment and Training +478506,Employment and Training,Employment and Training +478505,Employment and Training,Employment and Training +476499,Employment and Training,Employment and Training +476498,Employment and Training,Employment and Training +476497,Employment and Training,Employment and Training +476123,Employment and Training,Employment and Training +474674,Employment and Training,Employment and Training +474473,Employment and Training,Employment and Training +474472,Employment and Training,Employment and Training +474471,Employment and Training,Employment and Training +500163,Employment and Training,Employment and Training +500089,Employment and Training,Employment and Training +497308,Employment and Training,Employment and Training +497307,Employment and Training,Employment and Training +474472,Immigration,Immigration +474471,Immigration,Immigration +333234,Immigration,Immigration +333233,Immigration,Immigration +331253,Immigration,Immigration +330710,Immigration,Immigration +330709,Immigration,Immigration +384313,Immigration,Immigration +384311,Immigration,Immigration +368406,Immigration,Immigration +359245,Immigration,Immigration +340377,Immigration,Immigration +506646,Immigration,Immigration +500163,Immigration,Immigration +497301,Immigration,Immigration +482722,Immigration,Immigration +478601,Immigration,Immigration +478506,Immigration,Immigration +478505,Immigration,Immigration +476499,Immigration,Immigration +476498,Immigration,Immigration +476497,Immigration,Immigration +476123,Immigration,Immigration +474674,Immigration,Immigration +541247,Labour,Labour +540908,Labour,Labour +359245,Labour,Labour +340377,Labour,Labour +333234,Labour,Labour +333233,Labour,Labour +331253,Labour,Labour +330710,Labour,Labour +330709,Labour,Labour +540907,Labour,Labour +540906,Labour,Labour +539003,Labour,Labour +539002,Labour,Labour +537347,Labour,Labour +533761,Labour,Labour +544526,Labour,Labour +543224,Labour,Labour +542943,Labour,Labour +542351,Labour,Labour +330934,Security,Security +330933,Security,Security +367644,Security,Security +367643,Security,Security +367642,Security,Security +367641,Security,Security +359581,Security,Security +359544,Security,Security +359543,Security,Security +359542,Security,Security +342717,Security,Security +341959,Security,Security +341957,Security,Security +341952,Security,Security +341949,Security,Security +375951,Economic Development,Economic Development +375308,Economic Development,Economic Development +378529,Economic Development,Economic Development +378022,Economic Development,Economic Development +378021,Economic Development,Economic Development +377900,Economic Development,Economic Development +377829,Economic Development,Economic Development +377523,Economic Development,Economic Development +376321,Economic Development,Economic Development +375311,Small Business,Small Business +375310,Small Business,Small Business +375311,Tourism,Tourism +375310,Tourism,Tourism +408933,Consumer Issues,Consumer Issues +404565,Consumer Issues,Consumer Issues +402553,Consumer Issues,Consumer Issues +402229,Consumer Issues,Consumer Issues +402228,Consumer Issues,Consumer Issues +401401,Consumer Issues,Consumer Issues +400081,Consumer Issues,Consumer Issues +399751,Consumer Issues,Consumer Issues +399739,Consumer Issues,Consumer Issues +399676,Consumer Issues,Consumer Issues +399296,Consumer Issues,Consumer Issues +398798,Consumer Issues,Consumer Issues +398796,Consumer Issues,Consumer Issues +397367,Consumer Issues,Consumer Issues +397345,Consumer Issues,Consumer Issues +397344,Consumer Issues,Consumer Issues +397275,Consumer Issues,Consumer Issues +397263,Consumer Issues,Consumer Issues +397262,Consumer Issues,Consumer Issues +396095,Consumer Issues,Consumer Issues +395622,Consumer Issues,Consumer Issues +395232,Consumer Issues,Consumer Issues +395210,Consumer Issues,Consumer Issues +394939,Consumer Issues,Consumer Issues +394883,Consumer Issues,Consumer Issues +394882,Consumer Issues,Consumer Issues +394798,Consumer Issues,Consumer Issues +393943,Consumer Issues,Consumer Issues +393537,Consumer Issues,Consumer Issues +393468,Consumer Issues,Consumer Issues +393365,Consumer Issues,Consumer Issues +393308,Consumer Issues,Consumer Issues +393307,Consumer Issues,Consumer Issues +393306,Consumer Issues,Consumer Issues +393305,Consumer Issues,Consumer Issues +393174,Consumer Issues,Consumer Issues +393173,Consumer Issues,Consumer Issues +393034,Consumer Issues,Consumer Issues +390256,Consumer Issues,Consumer Issues +390252,Consumer Issues,Consumer Issues +389466,Consumer Issues,Consumer Issues +389465,Consumer Issues,Consumer Issues +389231,Consumer Issues,Consumer Issues +389210,Consumer Issues,Consumer Issues +388790,Consumer Issues,Consumer Issues +388682,Consumer Issues,Consumer Issues +386690,Consumer Issues,Consumer Issues +386484,Consumer Issues,Consumer Issues +386483,Consumer Issues,Consumer Issues +386349,Consumer Issues,Consumer Issues +386348,Consumer Issues,Consumer Issues +386314,Consumer Issues,Consumer Issues +386228,Consumer Issues,Consumer Issues +386203,Consumer Issues,Consumer Issues +385931,Consumer Issues,Consumer Issues +385930,Consumer Issues,Consumer Issues +385880,Consumer Issues,Consumer Issues +384704,Consumer Issues,Consumer Issues +384557,Consumer Issues,Consumer Issues +384491,Consumer Issues,Consumer Issues +384454,Consumer Issues,Consumer Issues +384453,Consumer Issues,Consumer Issues +384452,Consumer Issues,Consumer Issues +384299,Consumer Issues,Consumer Issues +384257,Consumer Issues,Consumer Issues +377855,Consumer Issues,Consumer Issues +377759,Consumer Issues,Consumer Issues +377758,Consumer Issues,Consumer Issues +377544,Consumer Issues,Consumer Issues +377543,Consumer Issues,Consumer Issues +375335,Consumer Issues,Consumer Issues +373386,Consumer Issues,Consumer Issues +373238,Consumer Issues,Consumer Issues +350202,Consumer Issues,Consumer Issues +417257,Consumer Issues,Consumer Issues +417196,Consumer Issues,Consumer Issues +415490,Consumer Issues,Consumer Issues +415276,Consumer Issues,Consumer Issues +415266,Consumer Issues,Consumer Issues +415113,Consumer Issues,Consumer Issues +414746,Consumer Issues,Consumer Issues +414581,Consumer Issues,Consumer Issues +414328,Consumer Issues,Consumer Issues +414327,Consumer Issues,Consumer Issues +414056,Consumer Issues,Consumer Issues +411801,Consumer Issues,Consumer Issues +411800,Consumer Issues,Consumer Issues +411748,Consumer Issues,Consumer Issues +411568,Consumer Issues,Consumer Issues +411532,Consumer Issues,Consumer Issues +411531,Consumer Issues,Consumer Issues +411529,Consumer Issues,Consumer Issues +411412,Consumer Issues,Consumer Issues +411169,Consumer Issues,Consumer Issues +411168,Consumer Issues,Consumer Issues +411098,Consumer Issues,Consumer Issues +411097,Consumer Issues,Consumer Issues +411096,Consumer Issues,Consumer Issues +411095,Consumer Issues,Consumer Issues +410849,Consumer Issues,Consumer Issues +410794,Consumer Issues,Consumer Issues +410770,Consumer Issues,Consumer Issues +410769,Consumer Issues,Consumer Issues +411748,Intellectual Property,Intellectual Property +410849,Intellectual Property,Intellectual Property +393365,Intellectual Property,Intellectual Property +385880,Intellectual Property,Intellectual Property +377855,Intellectual Property,Intellectual Property +376024,Intellectual Property,Intellectual Property +374084,Intellectual Property,Intellectual Property +350202,Intellectual Property,Intellectual Property +411801,Intellectual Property,Intellectual Property +411096,Internal Trade,Internal Trade +411095,Internal Trade,Internal Trade +379147,Internal Trade,Internal Trade +352042,Internal Trade,Internal Trade +350202,Internal Trade,Internal Trade +334332,Internal Trade,Internal Trade +410794,Internal Trade,Internal Trade +410770,Internal Trade,Internal Trade +410769,Internal Trade,Internal Trade +410439,Internal Trade,Internal Trade +408933,Internal Trade,Internal Trade +402229,Internal Trade,Internal Trade +402228,Internal Trade,Internal Trade +401401,Internal Trade,Internal Trade +400081,Internal Trade,Internal Trade +399751,Internal Trade,Internal Trade +399739,Internal Trade,Internal Trade +399676,Internal Trade,Internal Trade +399296,Internal Trade,Internal Trade +398798,Internal Trade,Internal Trade +398796,Internal Trade,Internal Trade +397367,Internal Trade,Internal Trade +397345,Internal Trade,Internal Trade +397344,Internal Trade,Internal Trade +397275,Internal Trade,Internal Trade +397263,Internal Trade,Internal Trade +396095,Internal Trade,Internal Trade +395232,Internal Trade,Internal Trade +395210,Internal Trade,Internal Trade +394939,Internal Trade,Internal Trade +394883,Internal Trade,Internal Trade +394882,Internal Trade,Internal Trade +394798,Internal Trade,Internal Trade +393943,Internal Trade,Internal Trade +393537,Internal Trade,Internal Trade +393468,Internal Trade,Internal Trade +393365,Internal Trade,Internal Trade +393308,Internal Trade,Internal Trade +393307,Internal Trade,Internal Trade +393306,Internal Trade,Internal Trade +393305,Internal Trade,Internal Trade +393174,Internal Trade,Internal Trade +393173,Internal Trade,Internal Trade +393034,Internal Trade,Internal Trade +390256,Internal Trade,Internal Trade +390252,Internal Trade,Internal Trade +389466,Internal Trade,Internal Trade +389465,Internal Trade,Internal Trade +388790,Internal Trade,Internal Trade +388682,Internal Trade,Internal Trade +386690,Internal Trade,Internal Trade +386484,Internal Trade,Internal Trade +386483,Internal Trade,Internal Trade +386349,Internal Trade,Internal Trade +386348,Internal Trade,Internal Trade +386314,Internal Trade,Internal Trade +386203,Internal Trade,Internal Trade +385880,Internal Trade,Internal Trade +384491,Internal Trade,Internal Trade +384454,Internal Trade,Internal Trade +384453,Internal Trade,Internal Trade +384452,Internal Trade,Internal Trade +384257,Internal Trade,Internal Trade +382771,Internal Trade,Internal Trade +420902,Internal Trade,Internal Trade +419272,Internal Trade,Internal Trade +415113,Internal Trade,Internal Trade +414581,Internal Trade,Internal Trade +414056,Internal Trade,Internal Trade +414054,Internal Trade,Internal Trade +411801,Internal Trade,Internal Trade +411800,Internal Trade,Internal Trade +411748,Internal Trade,Internal Trade +411568,Internal Trade,Internal Trade +411532,Internal Trade,Internal Trade +411531,Internal Trade,Internal Trade +411529,Internal Trade,Internal Trade +411412,Internal Trade,Internal Trade +411169,Internal Trade,Internal Trade +411168,Internal Trade,Internal Trade +411098,Internal Trade,Internal Trade +465815,Housing,Housing +465813,Housing,Housing +386299,Housing,Housing +386298,Housing,Housing +456500,Housing,Housing +456498,Housing,Housing +456497,Housing,Housing +453668,Housing,Housing +445431,Housing,Housing +444797,Housing,Housing +444796,Housing,Housing +444794,Housing,Housing +444793,Housing,Housing +444792,Housing,Housing +444791,Housing,Housing +441009,Housing,Housing +441008,Housing,Housing +436908,Housing,Housing +427429,Housing,Housing +425271,Housing,Housing +423421,Housing,Housing +410587,Housing,Housing +401689,Housing,Housing +401539,Housing,Housing +401538,Housing,Housing +399901,Housing,Housing +399119,Housing,Housing +545005,Housing,Housing +542585,Housing,Housing +529843,Housing,Housing +527159,Housing,Housing +527130,Housing,Housing +526832,Housing,Housing +521311,Housing,Housing +520854,Housing,Housing +518447,Housing,Housing +518441,Housing,Housing +516557,Housing,Housing +516535,Housing,Housing +516470,Housing,Housing +516467,Housing,Housing +516466,Housing,Housing +516301,Housing,Housing +516300,Housing,Housing +516264,Housing,Housing +516253,Housing,Housing +516245,Housing,Housing +516177,Housing,Housing +514486,Housing,Housing +510656,Housing,Housing +509453,Housing,Housing +509448,Housing,Housing +509331,Housing,Housing +506023,Housing,Housing +496495,Housing,Housing +494401,Housing,Housing +492435,Housing,Housing +489143,Housing,Housing +488463,Housing,Housing +486294,Housing,Housing +486292,Housing,Housing +483388,Housing,Housing +482931,Housing,Housing +466755,Housing,Housing +465820,Housing,Housing +465819,Housing,Housing +465818,Housing,Housing +465817,Housing,Housing +410587,Privacy and Access to Information,Privacy and Access to Information +483388,Privacy and Access to Information,Privacy and Access to Information +466755,Privacy and Access to Information,Privacy and Access to Information +465820,Privacy and Access to Information,Privacy and Access to Information +465819,Privacy and Access to Information,Privacy and Access to Information +465818,Privacy and Access to Information,Privacy and Access to Information +465817,Privacy and Access to Information,Privacy and Access to Information +465816,Privacy and Access to Information,Privacy and Access to Information +465815,Privacy and Access to Information,Privacy and Access to Information +465813,Privacy and Access to Information,Privacy and Access to Information +444797,Privacy and Access to Information,Privacy and Access to Information +444796,Privacy and Access to Information,Privacy and Access to Information +444794,Privacy and Access to Information,Privacy and Access to Information +444793,Privacy and Access to Information,Privacy and Access to Information +444792,Privacy and Access to Information,Privacy and Access to Information +444791,Privacy and Access to Information,Privacy and Access to Information +331607,Infrastructure,Infrastructure +330565,Infrastructure,Infrastructure +331202,Immigration,Immigration +384261,Research and Development,Research and Development +384260,Research and Development,Research and Development +330514,Research and Development,Research and Development +330512,Research and Development,Research and Development +382897,Research and Development,Research and Development +380674,Research and Development,Research and Development +380672,Research and Development,Research and Development +352566,Research and Development,Research and Development +419108,Research and Development,Research and Development +404895,Research and Development,Research and Development +473277,Budget,Budget +469588,Budget,Budget +417066,Budget,Budget +417065,Budget,Budget +343039,Budget,Budget +513459,Budget,Budget +513457,Budget,Budget +488773,Budget,Budget +475787,Budget,Budget +475779,Budget,Budget +475776,Budget,Budget +331935,Mining,Mining +331934,Mining,Mining +355295,Mining,Mining +355293,Mining,Mining +355288,Mining,Mining +331943,Mining,Mining +331941,Mining,Mining +331939,Mining,Mining +334430,Forestry,Forestry +334432,Taxation and Finance,Taxation and Finance +332991,Economic Development,Economic Development +445318,Economic Development,Economic Development +445318,Forestry,Forestry +439390,Forestry,Forestry +426794,Forestry,Forestry +423742,Forestry,Forestry +422494,Forestry,Forestry +419693,Forestry,Forestry +418125,Forestry,Forestry +479271,Forestry,Forestry +459716,Forestry,Forestry +459715,Forestry,Forestry +333561,Health,Health +332991,Health,Health +331385,Economic Development,Economic Development +331384,Environment,Environment +330870,Environment,Environment +331387,Environment,Environment +331386,Environment,Environment +348155,Consumer Issues,Consumer Issues +337455,Consumer Issues,Consumer Issues +460895,Consumer Issues,Consumer Issues +440472,Consumer Issues,Consumer Issues +440470,Consumer Issues,Consumer Issues +440469,Consumer Issues,Consumer Issues +434292,Consumer Issues,Consumer Issues +373156,Consumer Issues,Consumer Issues +370470,Consumer Issues,Consumer Issues +370466,Consumer Issues,Consumer Issues +355536,Consumer Issues,Consumer Issues +355534,Consumer Issues,Consumer Issues +355533,Consumer Issues,Consumer Issues +355531,Consumer Issues,Consumer Issues +440472,Environment,Environment +483017,Environment,Environment +444247,Environment,Environment +476601,Health,Health +476600,Health,Health +380091,Health,Health +373155,Health,Health +373154,Health,Health +370470,Health,Health +370466,Health,Health +355536,Health,Health +355534,Health,Health +355533,Health,Health +355531,Health,Health +355528,Health,Health +337455,Health,Health +466898,Health,Health +466894,Health,Health +466890,Health,Health +464451,Health,Health +463657,Health,Health +463656,Health,Health +463655,Health,Health +463652,Health,Health +463651,Health,Health +463650,Health,Health +460896,Health,Health +460895,Health,Health +451503,Health,Health +451500,Health,Health +448989,Health,Health +448988,Health,Health +448987,Health,Health +448980,Health,Health +441006,Health,Health +440660,Health,Health +440658,Health,Health +440472,Health,Health +440471,Health,Health +440470,Health,Health +440469,Health,Health +440467,Health,Health +440459,Health,Health +434292,Health,Health +434102,Health,Health +434101,Health,Health +424984,Health,Health +424839,Health,Health +424837,Health,Health +424834,Health,Health +420794,Health,Health +416501,Health,Health +412906,Health,Health +412903,Health,Health +412901,Health,Health +412768,Health,Health +412750,Health,Health +412749,Health,Health +412745,Health,Health +412742,Health,Health +412737,Health,Health +412707,Health,Health +412704,Health,Health +412701,Health,Health +412699,Health,Health +412690,Health,Health +412669,Health,Health +412526,Health,Health +412522,Health,Health +526823,Health,Health +526744,Health,Health +523682,Health,Health +521643,Health,Health +521642,Health,Health +521051,Health,Health +521050,Health,Health +520566,Health,Health +519148,Health,Health +516812,Health,Health +516811,Health,Health +516810,Health,Health +516808,Health,Health +511990,Health,Health +511656,Health,Health +509656,Health,Health +507897,Health,Health +505981,Health,Health +497139,Health,Health +497138,Health,Health +488661,Health,Health +488660,Health,Health +485786,Health,Health +484213,Health,Health +483017,Health,Health +434102,Taxation and Finance,Taxation and Finance +434101,Taxation and Finance,Taxation and Finance +416501,Taxation and Finance,Taxation and Finance +412906,Taxation and Finance,Taxation and Finance +412903,Taxation and Finance,Taxation and Finance +412901,Taxation and Finance,Taxation and Finance +412768,Taxation and Finance,Taxation and Finance +412750,Taxation and Finance,Taxation and Finance +412749,Taxation and Finance,Taxation and Finance +412745,Taxation and Finance,Taxation and Finance +412742,Taxation and Finance,Taxation and Finance +412737,Taxation and Finance,Taxation and Finance +412707,Taxation and Finance,Taxation and Finance +412704,Taxation and Finance,Taxation and Finance +412701,Taxation and Finance,Taxation and Finance +412699,Taxation and Finance,Taxation and Finance +412690,Taxation and Finance,Taxation and Finance +412669,Taxation and Finance,Taxation and Finance +412526,Taxation and Finance,Taxation and Finance +412522,Taxation and Finance,Taxation and Finance +370470,Taxation and Finance,Taxation and Finance +463655,Taxation and Finance,Taxation and Finance +376443,Health,Health +372339,Health,Health +378850,Health,Health +382598,Economic Development,Economic Development +382597,Economic Development,Economic Development +372744,Economic Development,Economic Development +372732,Economic Development,Economic Development +372730,Economic Development,Economic Development +335369,Economic Development,Economic Development +335368,Economic Development,Economic Development +335368,Employment and Training,Employment and Training +382598,Energy,Energy +382597,Energy,Energy +372744,Energy,Energy +372732,Energy,Energy +372730,Energy,Energy +335369,Energy,Energy +335368,Energy,Energy +335367,Energy,Energy +392391,Energy,Energy +392389,Energy,Energy +335369,Environment,Environment +335368,Environment,Environment +392391,Environment,Environment +392389,Environment,Environment +392388,Environment,Environment +382598,Environment,Environment +382597,Environment,Environment +372744,Environment,Environment +335369,Regional Development,Regional Development +335367,Regional Development,Regional Development +372744,Regional Development,Regional Development +332735,Taxation and Finance,Taxation and Finance +330969,Infrastructure,Infrastructure +356996,International Relations,International Relations +344421,International Trade,International Trade +344419,International Trade,International Trade +356996,International Trade,International Trade +355041,Small Business,Small Business +476479,Agriculture,Agriculture +469459,Agriculture,Agriculture +372889,Agriculture,Agriculture +372884,Agriculture,Agriculture +372883,Agriculture,Agriculture +501310,Health,Health +501308,Health,Health +373414,Health,Health +373143,Health,Health +373142,Health,Health +373140,Health,Health +373139,Health,Health +353576,Health,Health +353573,Health,Health +353560,Health,Health +337549,Health,Health +337376,Health,Health +337372,Health,Health +472107,Health,Health +472105,Health,Health +457909,Health,Health +455435,Health,Health +453003,Health,Health +448500,Health,Health +436954,Health,Health +436349,Health,Health +436187,Health,Health +436180,Health,Health +436175,Health,Health +427222,Health,Health +427221,Health,Health +414990,Health,Health +414987,Health,Health +414126,Health,Health +414125,Health,Health +414124,Health,Health +401676,Health,Health +401475,Health,Health +401464,Health,Health +401462,Health,Health +401460,Health,Health +401458,Health,Health +384447,Health,Health +377455,Health,Health +544885,Health,Health +544883,Health,Health +536149,Health,Health +536012,Health,Health +535896,Health,Health +534996,Health,Health +534564,Health,Health +534561,Health,Health +533702,Health,Health +532971,Health,Health +532970,Health,Health +532969,Health,Health +532920,Health,Health +532919,Health,Health +532757,Health,Health +532628,Health,Health +532627,Health,Health +532557,Health,Health +532528,Health,Health +532502,Health,Health +532433,Health,Health +532315,Health,Health +531932,Health,Health +531931,Health,Health +531928,Health,Health +528031,Health,Health +524744,Health,Health +508787,Health,Health +508786,Health,Health +506919,Health,Health +506918,Health,Health +506916,Health,Health +506562,Health,Health +506381,Health,Health +506290,Health,Health +506241,Health,Health +506235,Health,Health +506234,Health,Health +503150,Health,Health +502929,Health,Health +331448,Taxation and Finance,Taxation and Finance +335791,International Trade,International Trade +389993,Labour,Labour +472784,Infrastructure,Infrastructure +472779,Infrastructure,Infrastructure +331509,Infrastructure,Infrastructure +381256,Infrastructure,Infrastructure +381254,Infrastructure,Infrastructure +377071,Infrastructure,Infrastructure +377057,Infrastructure,Infrastructure +374820,Infrastructure,Infrastructure +374819,Infrastructure,Infrastructure +374818,Infrastructure,Infrastructure +374816,Infrastructure,Infrastructure +374814,Infrastructure,Infrastructure +374810,Infrastructure,Infrastructure +371855,Infrastructure,Infrastructure +366563,Infrastructure,Infrastructure +331510,Infrastructure,Infrastructure +449403,Infrastructure,Infrastructure +449402,Infrastructure,Infrastructure +445576,Infrastructure,Infrastructure +444200,Infrastructure,Infrastructure +438811,Infrastructure,Infrastructure +433351,Infrastructure,Infrastructure +428899,Infrastructure,Infrastructure +423695,Infrastructure,Infrastructure +422400,Infrastructure,Infrastructure +416915,Infrastructure,Infrastructure +416914,Infrastructure,Infrastructure +416903,Infrastructure,Infrastructure +411934,Infrastructure,Infrastructure +407724,Infrastructure,Infrastructure +391583,Infrastructure,Infrastructure +391576,Infrastructure,Infrastructure +391572,Infrastructure,Infrastructure +391556,Infrastructure,Infrastructure +385701,Infrastructure,Infrastructure +383721,Infrastructure,Infrastructure +383710,Infrastructure,Infrastructure +383708,Infrastructure,Infrastructure +382204,Infrastructure,Infrastructure +540165,Infrastructure,Infrastructure +540147,Infrastructure,Infrastructure +540138,Infrastructure,Infrastructure +538260,Infrastructure,Infrastructure +538254,Infrastructure,Infrastructure +538228,Infrastructure,Infrastructure +522964,Infrastructure,Infrastructure +522944,Infrastructure,Infrastructure +519759,Infrastructure,Infrastructure +515738,Infrastructure,Infrastructure +513291,Infrastructure,Infrastructure +493221,Infrastructure,Infrastructure +493219,Infrastructure,Infrastructure +340375,Economic Development,Economic Development +338102,Taxation and Finance,Taxation and Finance +365744,Taxation and Finance,Taxation and Finance +348926,Taxation and Finance,Taxation and Finance +518584,Taxation and Finance,Taxation and Finance +518583,Taxation and Finance,Taxation and Finance +494362,Taxation and Finance,Taxation and Finance +447539,Taxation and Finance,Taxation and Finance +445925,Taxation and Finance,Taxation and Finance +438770,Taxation and Finance,Taxation and Finance +438768,Taxation and Finance,Taxation and Finance +434900,Taxation and Finance,Taxation and Finance +434886,Taxation and Finance,Taxation and Finance +433376,Taxation and Finance,Taxation and Finance +425632,Taxation and Finance,Taxation and Finance +425631,Taxation and Finance,Taxation and Finance +425630,Taxation and Finance,Taxation and Finance +422846,Taxation and Finance,Taxation and Finance +422840,Taxation and Finance,Taxation and Finance +412022,Taxation and Finance,Taxation and Finance +412021,Taxation and Finance,Taxation and Finance +404223,Taxation and Finance,Taxation and Finance +404222,Taxation and Finance,Taxation and Finance +400204,Taxation and Finance,Taxation and Finance +390980,Taxation and Finance,Taxation and Finance +390572,Taxation and Finance,Taxation and Finance +390570,Taxation and Finance,Taxation and Finance +387276,Taxation and Finance,Taxation and Finance +385561,Taxation and Finance,Taxation and Finance +385560,Taxation and Finance,Taxation and Finance +385558,Taxation and Finance,Taxation and Finance +382319,Taxation and Finance,Taxation and Finance +382318,Taxation and Finance,Taxation and Finance +382317,Taxation and Finance,Taxation and Finance +382316,Taxation and Finance,Taxation and Finance +368662,Taxation and Finance,Taxation and Finance +332674,Consumer Issues,Consumer Issues +348273,Taxation and Finance,Taxation and Finance +332674,Taxation and Finance,Taxation and Finance +463289,Infrastructure,Infrastructure +462952,Infrastructure,Infrastructure +371558,Infrastructure,Infrastructure +367549,Infrastructure,Infrastructure +365993,Infrastructure,Infrastructure +365991,Infrastructure,Infrastructure +365086,Infrastructure,Infrastructure +348530,Infrastructure,Infrastructure +348394,Infrastructure,Infrastructure +348392,Infrastructure,Infrastructure +343438,Infrastructure,Infrastructure +337474,Infrastructure,Infrastructure +331937,Infrastructure,Infrastructure +458955,Infrastructure,Infrastructure +457973,Infrastructure,Infrastructure +448667,Infrastructure,Infrastructure +445929,Infrastructure,Infrastructure +444954,Infrastructure,Infrastructure +444951,Infrastructure,Infrastructure +444950,Infrastructure,Infrastructure +444856,Infrastructure,Infrastructure +441272,Infrastructure,Infrastructure +434717,Infrastructure,Infrastructure +434701,Infrastructure,Infrastructure +434700,Infrastructure,Infrastructure +425251,Infrastructure,Infrastructure +421119,Infrastructure,Infrastructure +419801,Infrastructure,Infrastructure +418590,Infrastructure,Infrastructure +408363,Infrastructure,Infrastructure +406075,Infrastructure,Infrastructure +406071,Infrastructure,Infrastructure +404119,Infrastructure,Infrastructure +400279,Infrastructure,Infrastructure +399306,Infrastructure,Infrastructure +393338,Infrastructure,Infrastructure +389009,Infrastructure,Infrastructure +389005,Infrastructure,Infrastructure +389004,Infrastructure,Infrastructure +380070,Infrastructure,Infrastructure +378404,Infrastructure,Infrastructure +378403,Infrastructure,Infrastructure +378402,Infrastructure,Infrastructure +533453,Infrastructure,Infrastructure +516297,Infrastructure,Infrastructure +513603,Infrastructure,Infrastructure +511861,Infrastructure,Infrastructure +494473,Infrastructure,Infrastructure +488834,Infrastructure,Infrastructure +484547,Infrastructure,Infrastructure +476314,Infrastructure,Infrastructure +474319,Infrastructure,Infrastructure +471650,Infrastructure,Infrastructure +533472,Infrastructure,Infrastructure +530016,Infrastructure,Infrastructure +331940,Infrastructure,Infrastructure +400278,Infrastructure,Infrastructure +399312,Infrastructure,Infrastructure +399310,Infrastructure,Infrastructure +399308,Infrastructure,Infrastructure +398478,Infrastructure,Infrastructure +395109,Infrastructure,Infrastructure +394797,Infrastructure,Infrastructure +391421,Infrastructure,Infrastructure +389116,Infrastructure,Infrastructure +389001,Infrastructure,Infrastructure +389000,Infrastructure,Infrastructure +385960,Infrastructure,Infrastructure +385959,Infrastructure,Infrastructure +385958,Infrastructure,Infrastructure +385954,Infrastructure,Infrastructure +384490,Infrastructure,Infrastructure +352822,Infrastructure,Infrastructure +352821,Infrastructure,Infrastructure +343437,Infrastructure,Infrastructure +334738,Infrastructure,Infrastructure +514465,Infrastructure,Infrastructure +508038,Infrastructure,Infrastructure +506778,Infrastructure,Infrastructure +503226,Infrastructure,Infrastructure +496888,Infrastructure,Infrastructure +496578,Infrastructure,Infrastructure +496341,Infrastructure,Infrastructure +492439,Infrastructure,Infrastructure +484809,Infrastructure,Infrastructure +483120,Infrastructure,Infrastructure +476430,Infrastructure,Infrastructure +476341,Infrastructure,Infrastructure +474096,Infrastructure,Infrastructure +474002,Infrastructure,Infrastructure +462954,Infrastructure,Infrastructure +462953,Infrastructure,Infrastructure +461284,Infrastructure,Infrastructure +460906,Infrastructure,Infrastructure +453369,Infrastructure,Infrastructure +448666,Infrastructure,Infrastructure +448665,Infrastructure,Infrastructure +448661,Infrastructure,Infrastructure +444945,Infrastructure,Infrastructure +444869,Infrastructure,Infrastructure +444868,Infrastructure,Infrastructure +440944,Infrastructure,Infrastructure +439966,Infrastructure,Infrastructure +434718,Infrastructure,Infrastructure +434712,Infrastructure,Infrastructure +434708,Infrastructure,Infrastructure +434703,Infrastructure,Infrastructure +434702,Infrastructure,Infrastructure +429670,Infrastructure,Infrastructure +429665,Infrastructure,Infrastructure +423037,Infrastructure,Infrastructure +422866,Infrastructure,Infrastructure +421121,Infrastructure,Infrastructure +419809,Infrastructure,Infrastructure +419796,Infrastructure,Infrastructure +419793,Infrastructure,Infrastructure +419790,Infrastructure,Infrastructure +419782,Infrastructure,Infrastructure +419648,Infrastructure,Infrastructure +419609,Infrastructure,Infrastructure +418536,Infrastructure,Infrastructure +418535,Infrastructure,Infrastructure +418534,Infrastructure,Infrastructure +414065,Infrastructure,Infrastructure +412137,Infrastructure,Infrastructure +408812,Infrastructure,Infrastructure +408362,Infrastructure,Infrastructure +408351,Infrastructure,Infrastructure +406077,Infrastructure,Infrastructure +406070,Infrastructure,Infrastructure +404118,Infrastructure,Infrastructure +444869,International Trade,International Trade +444866,International Trade,International Trade +331942,International Trade,International Trade +419864,International Trade,International Trade +419809,International Trade,International Trade +419786,International Trade,International Trade +418534,International Trade,International Trade +414038,International Trade,International Trade +414036,International Trade,International Trade +408363,International Trade,International Trade +406072,International Trade,International Trade +399310,International Trade,International Trade +391421,International Trade,International Trade +389116,International Trade,International Trade +389009,International Trade,International Trade +389005,International Trade,International Trade +389004,International Trade,International Trade +389001,International Trade,International Trade +378405,International Trade,International Trade +365993,International Trade,International Trade +544459,International Trade,International Trade +538650,International Trade,International Trade +538636,International Trade,International Trade +514851,International Trade,International Trade +497419,International Trade,International Trade +492477,International Trade,International Trade +489239,International Trade,International Trade +487074,International Trade,International Trade +476313,International Trade,International Trade +471413,International Trade,International Trade +465924,International Trade,International Trade +465738,International Trade,International Trade +463226,International Trade,International Trade +458957,International Trade,International Trade +384445,Regional Development,Regional Development +384366,Regional Development,Regional Development +395291,Industry,Industry +395290,Industry,Industry +384445,Industry,Industry +384366,Industry,Industry +378299,Industry,Industry +373875,Industry,Industry +370557,Industry,Industry +370521,Industry,Industry +365986,Industry,Industry +365985,Industry,Industry +365984,Industry,Industry +365983,Industry,Industry +365982,Industry,Industry +356027,Industry,Industry +356025,Industry,Industry +349806,Industry,Industry +349805,Industry,Industry +349804,Industry,Industry +389575,Industry,Industry +389573,Industry,Industry +389572,Industry,Industry +389038,Industry,Industry +388993,Industry,Industry +388992,Industry,Industry +388991,Industry,Industry +386737,Industry,Industry +404149,Industry,Industry +404147,Industry,Industry +401941,Industry,Industry +399505,Industry,Industry +399504,Industry,Industry +399502,Industry,Industry +399501,Industry,Industry +395293,Industry,Industry +348207,Employment and Training,Employment and Training +335612,Employment and Training,Employment and Training +356027,Employment and Training,Employment and Training +356025,Employment and Training,Employment and Training +349806,Employment and Training,Employment and Training +349805,Employment and Training,Employment and Training +365983,Labour,Labour +365982,Labour,Labour +357818,Labour,Labour +356027,Labour,Labour +356025,Labour,Labour +349806,Labour,Labour +349805,Labour,Labour +349804,Labour,Labour +338586,Labour,Labour +338585,Labour,Labour +338583,Labour,Labour +337831,Labour,Labour +337608,Labour,Labour +337607,Labour,Labour +337606,Labour,Labour +335612,Labour,Labour +404149,Labour,Labour +404147,Labour,Labour +401941,Labour,Labour +399505,Labour,Labour +399504,Labour,Labour +399502,Labour,Labour +399501,Labour,Labour +395293,Labour,Labour +395292,Labour,Labour +395291,Labour,Labour +395290,Labour,Labour +389575,Labour,Labour +389573,Labour,Labour +389572,Labour,Labour +389038,Labour,Labour +388993,Labour,Labour +388992,Labour,Labour +388991,Labour,Labour +386737,Labour,Labour +378299,Labour,Labour +373875,Labour,Labour +370557,Labour,Labour +370521,Labour,Labour +365986,Labour,Labour +365985,Labour,Labour +332449,Budget,Budget +332009,Budget,Budget +397561,Budget,Budget +502929,Education,Education +501310,Education,Education +337549,Education,Education +337376,Education,Education +337372,Education,Education +436349,Education,Education +436187,Education,Education +436180,Education,Education +436175,Education,Education +427222,Education,Education +427221,Education,Education +414990,Education,Education +414987,Education,Education +401676,Education,Education +401475,Education,Education +401464,Education,Education +401462,Education,Education +401460,Education,Education +401458,Education,Education +384447,Education,Education +377455,Education,Education +373414,Education,Education +373143,Education,Education +373142,Education,Education +373140,Education,Education +373139,Education,Education +353576,Education,Education +353573,Education,Education +353560,Education,Education +536149,Education,Education +536012,Education,Education +535896,Education,Education +534996,Education,Education +534564,Education,Education +534561,Education,Education +533702,Education,Education +532971,Education,Education +532970,Education,Education +532969,Education,Education +532920,Education,Education +532919,Education,Education +532757,Education,Education +532628,Education,Education +532627,Education,Education +532557,Education,Education +532528,Education,Education +532502,Education,Education +532433,Education,Education +532315,Education,Education +531932,Education,Education +531931,Education,Education +531928,Education,Education +528031,Education,Education +524744,Education,Education +508787,Education,Education +508786,Education,Education +506919,Education,Education +506918,Education,Education +506916,Education,Education +506562,Education,Education +506381,Education,Education +506290,Education,Education +506241,Education,Education +506235,Education,Education +506234,Education,Education +337630,Internal Trade,Internal Trade +333686,International Relations,International Relations +503292,International Relations,International Relations +367883,International Relations,International Relations +367881,International Relations,International Relations +358094,International Relations,International Relations +337631,International Relations,International Relations +435499,International Trade,International Trade +407824,International Trade,International Trade +367883,International Trade,International Trade +367881,International Trade,International Trade +358094,International Trade,International Trade +337631,International Trade,International Trade +337630,International Trade,International Trade +333686,International Trade,International Trade +393205,Budget,Budget +442386,Budget,Budget +332290,Budget,Budget +332292,Economic Development,Economic Development +432629,Health,Health +422574,Health,Health +339134,Transportation,Transportation +339133,Transportation,Transportation +362565,Transportation,Transportation +362564,Transportation,Transportation +350925,Transportation,Transportation +350924,Transportation,Transportation +350923,Transportation,Transportation +350922,Transportation,Transportation +350921,Transportation,Transportation +350920,Transportation,Transportation +350919,Transportation,Transportation +350918,Transportation,Transportation +350917,Transportation,Transportation +342239,Transportation,Transportation +342238,Transportation,Transportation +342236,Transportation,Transportation +342235,Transportation,Transportation +342233,Transportation,Transportation +342232,Transportation,Transportation +342230,Transportation,Transportation +342229,Transportation,Transportation +332453,Taxation and Finance,Taxation and Finance +332452,Taxation and Finance,Taxation and Finance +332451,Taxation and Finance,Taxation and Finance +374952,Taxation and Finance,Taxation and Finance +381674,Justice and Law Enforcement,Justice and Law Enforcement +381672,Justice and Law Enforcement,Justice and Law Enforcement +381675,Health,Health +381674,Health,Health +381672,Health,Health +379761,Health,Health +377168,Health,Health +377167,Health,Health +375057,Health,Health +375056,Health,Health +375055,Health,Health +374977,Health,Health +374956,Health,Health +374953,Health,Health +374952,Health,Health +372719,Health,Health +369640,Health,Health +365296,Health,Health +361248,Health,Health +347331,Health,Health +374756,Transportation,Transportation +374755,Transportation,Transportation +332433,Transportation,Transportation +351360,Employment and Training,Employment and Training +332449,Employment and Training,Employment and Training +407305,Employment and Training,Employment and Training +407304,Employment and Training,Employment and Training +388858,Employment and Training,Employment and Training +375589,Employment and Training,Employment and Training +367815,Employment and Training,Employment and Training +366963,Employment and Training,Employment and Training +333754,Industry,Industry +338392,Industry,Industry +338387,Industry,Industry +338385,Industry,Industry +338382,Industry,Industry +338375,Industry,Industry +333757,Industry,Industry +333756,Industry,Industry +513668,Immigration,Immigration +436356,Immigration,Immigration +413985,Immigration,Immigration +401383,Immigration,Immigration +401382,Immigration,Immigration +401381,Immigration,Immigration +393255,Immigration,Immigration +393253,Immigration,Immigration +385951,Immigration,Immigration +383314,Immigration,Immigration +383313,Immigration,Immigration +383312,Immigration,Immigration +381813,Immigration,Immigration +365579,Immigration,Immigration +332549,Budget,Budget +333470,Consumer Issues,Consumer Issues +333472,Industry,Industry +333470,International Trade,International Trade +333470,Taxation and Finance,Taxation and Finance +372629,Environment,Environment +372624,Environment,Environment +372670,Environment,Environment +372666,Environment,Environment +372665,Environment,Environment +372662,Environment,Environment +372660,Environment,Environment +372657,Environment,Environment +372655,Environment,Environment +372653,Environment,Environment +372650,Environment,Environment +372647,Environment,Environment +372643,Environment,Environment +372640,Environment,Environment +372636,Environment,Environment +372635,Environment,Environment +348088,Industry,Industry +348087,Industry,Industry +348518,Industry,Industry +348090,Industry,Industry +348088,Economic Development,Economic Development +348087,Economic Development,Economic Development +348518,Economic Development,Economic Development +348090,Economic Development,Economic Development +348089,Regional Development,Regional Development +348087,Regional Development,Regional Development +348088,Energy,Energy +348087,Energy,Energy +348518,Energy,Energy +348090,Energy,Energy +348089,Taxation and Finance,Taxation and Finance +348088,Taxation and Finance,Taxation and Finance +422751,Immigration,Immigration +404357,Immigration,Immigration +400056,Immigration,Immigration +399506,Immigration,Immigration +393292,Immigration,Immigration +393291,Immigration,Immigration +373272,Immigration,Immigration +370081,Immigration,Immigration +350002,Immigration,Immigration +347730,Immigration,Immigration +335576,Immigration,Immigration +333769,Immigration,Immigration +333749,Immigration,Immigration +526156,Immigration,Immigration +526133,Immigration,Immigration +526126,Immigration,Immigration +522096,Immigration,Immigration +522095,Immigration,Immigration +522094,Immigration,Immigration +522093,Immigration,Immigration +522092,Immigration,Immigration +522091,Immigration,Immigration +522090,Immigration,Immigration +522089,Immigration,Immigration +522088,Immigration,Immigration +425917,Immigration,Immigration +352600,Justice and Law Enforcement,Justice and Law Enforcement +352536,Justice and Law Enforcement,Justice and Law Enforcement +337936,Mining,Mining +337935,Mining,Mining +341792,Mining,Mining +341787,Mining,Mining +341786,Mining,Mining +341783,Mining,Mining +341781,Mining,Mining +341776,Mining,Mining +341773,Mining,Mining +341766,Mining,Mining +337938,Mining,Mining +351682,Employment and Training,Employment and Training +351680,Employment and Training,Employment and Training +333633,Employment and Training,Employment and Training +333149,Employment and Training,Employment and Training +393004,Employment and Training,Employment and Training +375749,Employment and Training,Employment and Training +352840,Employment and Training,Employment and Training +351686,Employment and Training,Employment and Training +351685,Employment and Training,Employment and Training +351682,Immigration,Immigration +351680,Immigration,Immigration +333633,Immigration,Immigration +333149,Immigration,Immigration +352840,Immigration,Immigration +351686,Immigration,Immigration +333149,Industry,Industry +375750,Industry,Industry +375749,Industry,Industry +375747,Industry,Industry +375749,International Trade,International Trade +375747,International Trade,International Trade +333149,Labour,Labour +418470,Taxation and Finance,Taxation and Finance +341044,Agriculture,Agriculture +341043,Agriculture,Agriculture +341055,Agriculture,Agriculture +341051,Agriculture,Agriculture +341047,Agriculture,Agriculture +341046,Agriculture,Agriculture +341045,Immigration,Immigration +341043,Immigration,Immigration +341051,Immigration,Immigration +341047,Immigration,Immigration +333971,Energy,Energy +333970,Energy,Energy +335846,Budget,Budget +335845,Budget,Budget +335852,Budget,Budget +335850,Budget,Budget +335846,Health,Health +335845,Health,Health +335852,Health,Health +335850,Health,Health +334589,Infrastructure,Infrastructure +423835,Employment and Training,Employment and Training +423832,Employment and Training,Employment and Training +413013,Employment and Training,Employment and Training +479782,Employment and Training,Employment and Training +479776,Employment and Training,Employment and Training +479770,Employment and Training,Employment and Training +479768,Employment and Training,Employment and Training +479766,Employment and Training,Employment and Training +476785,Employment and Training,Employment and Training +426660,Employment and Training,Employment and Training +426597,Employment and Training,Employment and Training +426584,Employment and Training,Employment and Training +426576,Employment and Training,Employment and Training +423945,Employment and Training,Employment and Training +493558,Infrastructure,Infrastructure +493466,Infrastructure,Infrastructure +406618,Infrastructure,Infrastructure +393685,Infrastructure,Infrastructure +541753,Infrastructure,Infrastructure +541751,Infrastructure,Infrastructure +513032,Infrastructure,Infrastructure +513030,Infrastructure,Infrastructure +510503,Infrastructure,Infrastructure +510494,Infrastructure,Infrastructure +510489,Infrastructure,Infrastructure +510487,Infrastructure,Infrastructure +510484,Infrastructure,Infrastructure +510477,Infrastructure,Infrastructure +510368,Infrastructure,Infrastructure +510367,Infrastructure,Infrastructure +510366,Infrastructure,Infrastructure +510365,Infrastructure,Infrastructure +510359,Infrastructure,Infrastructure +510321,Infrastructure,Infrastructure +507332,Infrastructure,Infrastructure +507331,Infrastructure,Infrastructure +507330,Infrastructure,Infrastructure +507329,Infrastructure,Infrastructure +507328,Infrastructure,Infrastructure +507324,Infrastructure,Infrastructure +507318,Infrastructure,Infrastructure +507317,Infrastructure,Infrastructure +504877,Infrastructure,Infrastructure +504865,Infrastructure,Infrastructure +504862,Infrastructure,Infrastructure +504850,Infrastructure,Infrastructure +504846,Infrastructure,Infrastructure +504831,Infrastructure,Infrastructure +504808,Infrastructure,Infrastructure +504804,Infrastructure,Infrastructure +504793,Infrastructure,Infrastructure +503318,Infrastructure,Infrastructure +501397,Infrastructure,Infrastructure +501396,Infrastructure,Infrastructure +501393,Infrastructure,Infrastructure +501389,Infrastructure,Infrastructure +501386,Infrastructure,Infrastructure +501382,Infrastructure,Infrastructure +498134,Infrastructure,Infrastructure +498129,Infrastructure,Infrastructure +498127,Infrastructure,Infrastructure +498126,Infrastructure,Infrastructure +498090,Infrastructure,Infrastructure +498089,Infrastructure,Infrastructure +504872,International Trade,International Trade +504853,International Trade,International Trade +459480,International Trade,International Trade +458864,International Trade,International Trade +458860,International Trade,International Trade +457343,International Trade,International Trade +457340,International Trade,International Trade +457338,International Trade,International Trade +507318,International Trade,International Trade +335172,Government Procurement,Government Procurement +367523,Government Procurement,Government Procurement +511795,Budget,Budget +511793,Budget,Budget +396721,Budget,Budget +396709,Budget,Budget +396692,Budget,Budget +394676,Budget,Budget +389308,Budget,Budget +389304,Budget,Budget +384650,Budget,Budget +349464,Budget,Budget +335492,Budget,Budget +333735,Budget,Budget +496834,Budget,Budget +496833,Budget,Budget +442989,Budget,Budget +442988,Budget,Budget +520203,Budget,Budget +333753,Justice and Law Enforcement,Justice and Law Enforcement +444003,Justice and Law Enforcement,Justice and Law Enforcement +375035,Justice and Law Enforcement,Justice and Law Enforcement +390915,Health,Health +390914,Health,Health +389667,Health,Health +383149,Health,Health +449866,Forestry,Forestry +333579,Health,Health +331387,Economic Development,Economic Development +331385,Environment,Environment +332592,Economic Development,Développement économique +355528,Consumer Issues,Consumer Issues +443783,Environment,Environment +478749,Health,Health +460896,Taxation and Finance,Taxation and Finance +376444,Health,Health +455405,Defence,Defence +331248,Infrastructure,Infrastructure +331293,Justice and Law Enforcement,Justice and Law Enforcement +335367,Economic Development,Economic Development +335369,Employment and Training,Employment and Training +392388,Energy,Energy +372732,Environment,Environment +335369,International Trade,International Trade +372732,Regional Development,Regional Development +330937,Employment and Training,Employment and Training +330937,Immigration,Immigration +330937,Labour,Labour +332733,Taxation and Finance,Taxation and Finance +335289,Immigration,Immigration +335289,Labour,Travail +330981,Infrastructure,Infrastructure +331684,International Relations,International Relations +344422,International Trade,International Trade +331447,Immigration,Immigration +337089,Budget,Budget +354440,Employment and Training,Employment and Training +333929,Small Business,Small Business +372881,Agriculture,Agriculture +331206,Immigration,Immigration +501311,Health,Health +331361,Transportation,Transportation +331447,Taxation and Finance,Taxation and Finance +333898,Taxation and Finance,Taxation and Finance +331466,International Development,International Development +349002,International Trade,International Trade +392369,Labour,Labour +392369,Economic Development,Economic Development +392369,Infrastructure,Infrastructure +392369,Employment and Training,Employment and Training +392369,Industry,Industry +392369,Energy,Energy +337241,Defence,Defence +475101,Infrastructure,Infrastructure +331604,Economic Development,Economic Development +331604,Security,Security +338103,Taxation and Finance,Taxation and Finance +366449,Taxation and Finance,Taxation and Finance +348273,Consumer Issues,Consumer Issues +349888,Taxation and Finance,Taxation and Finance +336079,Financial Institutions,Financial Institutions +337226,Taxation and Finance,Taxation and Finance +336066,Financial Institutions,Financial Institutions +337294,Taxation and Finance,Taxation and Finance +465738,Infrastructure,Infrastructure +533615,Infrastructure,Infrastructure +456551,International Trade,International Trade +331989,Budget,Budget +348207,Regional Development,Regional Development +395292,Industry,Industry +349804,Employment and Training,Employment and Training +365984,Labour,Labour +388858,Budget,Budget +503150,Education,Education +337631,Internal Trade,Internal Trade +337630,International Relations,International Relations +503292,International Trade,International Trade +338396,Health,Health +332130,International Trade,International Trade +332189,Taxation and Finance,Taxation and Finance +332289,Economic Development,Economic Development +400550,Budget,Budget +373685,Economic Development,Economic Development +332294,Economic Development,Economic Development +332294,Employment and Training,Employment and Training +439555,Health,Health +339135,Transportation,Transportation +332450,Taxation and Finance,Taxation and Finance +374956,Taxation and Finance,Taxation and Finance +381675,Justice and Law Enforcement,Justice and Law Enforcement +343618,Health,Health +354093,Health,Health +356329,Health,Health +354083,Health,Health +332432,Transportation,Transportation +351361,Employment and Training,Employment and Training +333755,Industry,Industry +357948,Immigration,Immigration +397644,Budget,Budget +332549,Employment and Training,Employment and Training +333472,Consumer Issues,Consumer Issues +333470,Industry,Industry +333472,International Trade,International Trade +333472,Taxation and Finance,Taxation and Finance +372631,Environment,Environment +348089,Industry,Industry +348090,Environment,Environment +348089,Economic Development,Economic Development +348518,Regional Development,Regional Development +348089,Energy,Energy +348090,Taxation and Finance,Taxation and Finance +336290,Energy,Energy +339913,Environment,Environment +336290,Regional Development,Regional Development +339913,Transportation,Transportation +424011,Immigration,Immigration +356362,Justice and Law Enforcement,Justice and Law Enforcement +338994,Agriculture,Agriculture +338992,International Trade,International Trade +377519,Mining,Mining +377517,Fisheries,Fisheries +336969,Taxation and Finance,Taxation and Finance +356349,International Trade,International Trade +337937,Mining,Mining +351683,Employment and Training,Employment and Training +351684,Immigration,Immigration +333633,Industry,Industry +375750,International Trade,International Trade +333633,Labour,Labour +418472,Taxation and Finance,Taxation and Finance +333176,Labour,Labour +334130,Health,Health +341045,Agriculture,Agriculture +341046,Immigration,Immigration +333972,Energy,Energy +334394,Security,Security +333201,Industry,Industry +361623,Government Procurement,Government Procurement +333319,Infrastructure,Infrastructure +333319,International Trade,International Trade +335848,Budget,Budget +335848,Health,Health +357768,Health,Health +334590,Infrastructure,Infrastructure +333635,Immigration,Immigration +356443,Industry,Industry +333608,Employment and Training,Employment and Training +423936,Employment and Training,Employment and Training +498080,Infrastructure,Infrastructure +507317,International Trade,International Trade +429395,Energy,Energy +352240,Government Procurement,Government Procurement +511797,Budget,Budget +333750,Justice and Law Enforcement,Justice and Law Enforcement +333751,Justice and Law Enforcement,Justice and Law Enforcement +342357,Justice and Law Enforcement,Justice and Law Enforcement +390917,Health,Health +390915,International Development,International Development +403148,Research and Development,Research and Development +338108,Employment and Training,Employment and Training +354116,Fisheries,Fisheries +333838,Agriculture,Agriculture +376423,Environment,Environment +348699,Budget,Budget +354888,Economic Development,Economic Development +354888,Employment and Training,Employment and Training +354888,Fisheries,Fisheries +354888,Regional Development,Regional Development +347122,Agriculture,Agriculture +334315,Energy,Energy +334315,International Trade,International Trade +333909,Budget,Budget +338536,Health,Health +349336,Research and Development,Research and Development +349777,Internal Trade,Internal Trade +338296,Energy,Energy +338296,Environment,Environment +338296,Industry,Industry +338296,Research and Development,Research and Development +338296,Taxation and Finance,Taxation and Finance +338302,Employment and Training,Employment and Training +344262,Energy,Energy +341733,Environment,Environment +338302,Fisheries,Fisheries +338302,Immigration,Immigration +338302,Mining,Mining +338302,Regional Development,Regional Development +338302,Transportation,Transportation +341632,Environment,Environment +341632,Infrastructure,Infrastructure +340862,Education,Education +337773,Taxation and Finance,Impôts et finances +360102,Privacy and Access to Information,Privacy and Access to Information +338393,Taxation and Finance,Impôts et finances +337218,Industry,Industry +335054,Budget,Budget +335054,Health,Health +459403,Agriculture,Agriculture +339590,Industry,Industry +339590,International Trade,International Trade +335037,Taxation and Finance,Taxation and Finance +354850,Environment,Environment +354850,Forestry,Forestry +340900,International Trade,International Trade +427119,Budget,Budget +384914,Government Procurement,Government Procurement +504216,Budget,Budget +374128,Health,Health +374125,Health,Health +442556,Health,Health +442554,Health,Health +442553,Health,Health +442550,Health,Health +426715,Health,Health +403764,Health,Health +403763,Health,Health +403762,Health,Health +403757,Health,Health +403755,Health,Health +403189,Health,Health +403184,Health,Health +403156,Health,Health +403153,Health,Health +403148,Health,Health +403136,Health,Health +403130,Health,Health +390920,Health,Health +390919,Health,Health +390914,International Development,International Development +389667,International Development,International Development +341551,International Development,International Development +341549,International Development,International Development +341548,International Development,International Development +341545,International Development,International Development +337995,International Development,International Development +383149,International Development,International Development +381768,International Development,International Development +381377,International Development,International Development +379478,International Development,International Development +379477,International Development,International Development +374131,International Development,International Development +374128,International Development,International Development +374125,International Development,International Development +365104,International Development,International Development +356249,International Development,International Development +356248,International Development,International Development +356247,International Development,International Development +356246,International Development,International Development +356242,International Development,International Development +356241,International Development,International Development +356239,International Development,International Development +351563,International Development,International Development +351559,International Development,International Development +349015,International Development,International Development +341558,International Development,International Development +341556,International Development,International Development +341555,International Development,International Development +341553,International Development,International Development +442556,International Development,International Development +442554,International Development,International Development +442553,International Development,International Development +442550,International Development,International Development +426717,International Development,International Development +426715,International Development,International Development +413616,International Development,International Development +403764,International Development,International Development +403763,International Development,International Development +403762,International Development,International Development +403757,International Development,International Development +403755,International Development,International Development +403189,International Development,International Development +403184,International Development,International Development +403156,International Development,International Development +403153,International Development,International Development +403148,International Development,International Development +403136,International Development,International Development +403130,International Development,International Development +390920,International Development,International Development +390919,International Development,International Development +390917,International Development,International Development +403136,Research and Development,Research and Development +403130,Research and Development,Research and Development +374128,Research and Development,Research and Development +374125,Research and Development,Research and Development +442556,Research and Development,Research and Development +442554,Research and Development,Research and Development +442553,Research and Development,Research and Development +442550,Research and Development,Research and Development +428851,Research and Development,Research and Development +426715,Research and Development,Research and Development +403764,Research and Development,Research and Development +403763,Research and Development,Research and Development +403762,Research and Development,Research and Development +403757,Research and Development,Research and Development +403755,Research and Development,Research and Development +403189,Research and Development,Research and Development +403184,Research and Development,Research and Development +403156,Research and Development,Research and Development +403153,Research and Development,Research and Development +354099,Fisheries,Fisheries +354096,Fisheries,Fisheries +369089,Environment,Environment +333850,Environment,Environment +354129,Economic Development,Economic Development +342363,Economic Development,Economic Development +342363,Employment and Training,Employment and Training +354129,Fisheries,Fisheries +342363,Fisheries,Fisheries +354129,Regional Development,Regional Development +342363,Regional Development,Regional Development +347119,Agriculture,Agriculture +344380,Agriculture,Agriculture +377776,Agriculture,Agriculture +354200,Budget,Budget +336432,Health,Health +336431,Health,Health +340207,Health,Health +395211,Internal Trade,Internal Trade +378702,Internal Trade,Internal Trade +338302,Energy,Energy +341730,Environment,Environment +341726,Environment,Environment +338302,Environment,Environment +353792,Environment,Environment +341735,Environment,Environment +341734,Environment,Environment +337303,Education,Education +337302,Education,Education +356740,Privacy and Access to Information,Privacy and Access to Information +334092,Privacy and Access to Information,Privacy and Access to Information +360103,Privacy and Access to Information,Privacy and Access to Information +336275,Industry,Industry +335052,Budget,Budget +335051,Budget,Budget +335052,Health,Health +335051,Health,Health +459347,Agriculture,Agriculture +455161,Agriculture,Agriculture +343023,Agriculture,Agriculture +339589,Industry,Industry +335037,Industry,Industry +339589,International Trade,International Trade +335037,International Trade,International Trade +340900,Environment,Environment +340900,Forestry,Forestry +427118,Budget,Budget +427117,Budget,Budget +420633,Budget,Budget +397474,Budget,Budget +367557,Budget,Budget +367556,Budget,Budget +367554,Budget,Budget +337529,Budget,Budget +334320,Budget,Budget +433004,Budget,Budget +384913,Government Procurement,Government Procurement +384911,Government Procurement,Government Procurement +380116,Government Procurement,Government Procurement +380115,Government Procurement,Government Procurement +380114,Government Procurement,Government Procurement +380113,Government Procurement,Government Procurement +368220,Government Procurement,Government Procurement +361628,Government Procurement,Government Procurement +361627,Government Procurement,Government Procurement +353946,Government Procurement,Government Procurement +353945,Government Procurement,Government Procurement +353940,Government Procurement,Government Procurement +353938,Government Procurement,Government Procurement +348735,Government Procurement,Government Procurement +348728,Government Procurement,Government Procurement +444750,Government Procurement,Government Procurement +434589,Government Procurement,Government Procurement +434218,Government Procurement,Government Procurement +434215,Government Procurement,Government Procurement +434029,Government Procurement,Government Procurement +427584,Government Procurement,Government Procurement +424850,Government Procurement,Government Procurement +422864,Government Procurement,Government Procurement +422863,Government Procurement,Government Procurement +422860,Government Procurement,Government Procurement +422859,Government Procurement,Government Procurement +422858,Government Procurement,Government Procurement +422857,Government Procurement,Government Procurement +422856,Government Procurement,Government Procurement +415057,Government Procurement,Government Procurement +415056,Government Procurement,Government Procurement +406414,Government Procurement,Government Procurement +406412,Government Procurement,Government Procurement +406410,Government Procurement,Government Procurement +406408,Government Procurement,Government Procurement +406400,Government Procurement,Government Procurement +406399,Government Procurement,Government Procurement +402683,Government Procurement,Government Procurement +402675,Government Procurement,Government Procurement +402674,Government Procurement,Government Procurement +402673,Government Procurement,Government Procurement +402671,Government Procurement,Government Procurement +402670,Government Procurement,Government Procurement +397714,Government Procurement,Government Procurement +395413,Government Procurement,Government Procurement +395406,Government Procurement,Government Procurement +395379,Government Procurement,Government Procurement +395373,Government Procurement,Government Procurement +395371,Government Procurement,Government Procurement +391738,Government Procurement,Government Procurement +391737,Government Procurement,Government Procurement +384944,Government Procurement,Government Procurement +491865,Budget,Budget +339033,Employment and Training,Employment and Training +372898,Infrastructure,Infrastructure +367503,Infrastructure,Infrastructure +335127,Transportation,Transportation +335125,Transportation,Transportation +339896,Transportation,Transportation +339792,Transportation,Transportation +339791,Transportation,Transportation +336794,Transportation,Transportation +338976,Economic Development,Economic Development +336590,Budget,Budget +336589,Budget,Budget +337387,Economic Development,Economic Development +337385,Economic Development,Economic Development +338026,Economic Development,Economic Development +337390,Economic Development,Economic Development +337384,Employment and Training,Employment and Training +337383,Employment and Training,Employment and Training +338026,Employment and Training,Employment and Training +337390,Employment and Training,Employment and Training +337388,Employment and Training,Employment and Training +337386,Environment,Environment +337385,Environment,Environment +338026,Environment,Environment +337390,Environment,Environment +337388,Environment,Environment +337384,Infrastructure,Infrastructure +337383,Infrastructure,Infrastructure +338026,Infrastructure,Infrastructure +337390,Infrastructure,Infrastructure +337388,Infrastructure,Infrastructure +337386,Infrastructure,Infrastructure +338026,International Trade,International Trade +337388,International Trade,International Trade +337388,Labour,Labour +337387,Labour,Labour +338026,Labour,Labour +337384,Mining,Mining +337383,Mining,Mining +338026,Mining,Mining +337390,Mining,Mining +337388,Mining,Mining +337387,Mining,Mining +337386,Mining,Mining +337386,Regional Development,Regional Development +337385,Regional Development,Regional Development +337388,Taxation and Finance,Taxation and Finance +337384,Transportation,Transportation +337383,Transportation,Transportation +338026,Transportation,Transportation +337388,Transportation,Transportation +337386,Transportation,Transportation +350938,Health,Health +335726,Health,Health +355929,Health,Health +353610,Health,Health +353608,Health,Health +335726,Justice and Law Enforcement,Justice and Law Enforcement +335725,Justice and Law Enforcement,Justice and Law Enforcement +355929,Justice and Law Enforcement,Justice and Law Enforcement +353610,Justice and Law Enforcement,Justice and Law Enforcement +353608,Justice and Law Enforcement,Justice and Law Enforcement +353606,Justice and Law Enforcement,Justice and Law Enforcement +353606,Religion,Religion +350938,Religion,Religion +355929,Religion,Religion +353610,Religion,Religion +353605,Health,Health +350937,Health,Health +355927,Health,Health +353609,Health,Health +353605,Justice and Law Enforcement,Justice and Law Enforcement +350937,Justice and Law Enforcement,Justice and Law Enforcement +335724,Justice and Law Enforcement,Justice and Law Enforcement +335723,Justice and Law Enforcement,Justice and Law Enforcement +355927,Justice and Law Enforcement,Justice and Law Enforcement +353609,Justice and Law Enforcement,Justice and Law Enforcement +350937,Religion,Religion +335724,Religion,Religion +355927,Religion,Religion +353609,Religion,Religion +353607,Religion,Religion +444177,Energy,Energy +444175,Energy,Energy +338884,Energy,Energy +338883,Energy,Energy +338879,Energy,Energy +398621,Energy,Energy +398288,Energy,Energy +398286,Energy,Energy +398285,Energy,Energy +398284,Energy,Energy +398283,Energy,Energy +382243,Energy,Energy +382234,Energy,Energy +382233,Energy,Energy +540014,Energy,Energy +537552,Energy,Energy +537548,Energy,Energy +534315,Energy,Energy +534314,Energy,Energy +534172,Energy,Energy +531435,Energy,Energy +529434,Energy,Energy +525151,Energy,Energy +525149,Energy,Energy +519068,Energy,Energy +516816,Energy,Energy +511292,Energy,Energy +511290,Energy,Energy +511289,Energy,Energy +511284,Energy,Energy +508384,Energy,Energy +508380,Energy,Energy +505117,Energy,Energy +480218,Energy,Energy +480217,Energy,Energy +470608,Energy,Energy +468749,Energy,Energy +468748,Energy,Energy +468747,Energy,Energy +468746,Energy,Energy +461333,Energy,Energy +458511,Energy,Energy +457635,Energy,Energy +452875,Energy,Energy +458511,Transportation,Transportation +457635,Transportation,Transportation +398288,Transportation,Transportation +398286,Transportation,Transportation +398285,Transportation,Transportation +398284,Transportation,Transportation +398283,Transportation,Transportation +468749,Transportation,Transportation +468748,Transportation,Transportation +468747,Transportation,Transportation +347628,Transportation,Transportation +370227,Transportation,Transportation +356520,Transportation,Transportation +356519,Transportation,Transportation +356518,Transportation,Transportation +355220,Transportation,Transportation +355198,Transportation,Transportation +355196,Transportation,Transportation +352900,Energy,Energy +350310,Energy,Energy +370227,Energy,Energy +352903,Energy,Energy +350310,Mining,Mining +347628,Mining,Mining +370227,Mining,Mining +356520,Mining,Mining +356519,Mining,Mining +356518,Mining,Mining +355220,Mining,Mining +355198,Mining,Mining +355196,Mining,Mining +355194,Mining,Mining +352903,Mining,Mining +352902,Mining,Mining +352900,International Relations,International Relations +347628,International Relations,International Relations +370227,International Relations,International Relations +355220,International Relations,International Relations +355198,International Relations,International Relations +355196,International Relations,International Relations +355194,International Relations,International Relations +352903,International Relations,International Relations +401879,Industry,Industry +401422,Industry,Industry +419157,Industry,Industry +419155,Industry,Industry +401882,Industry,Industry +401881,Industry,Industry +335056,Transportation,Transportation +335056,Mining,Mining +384951,Economic Development,Economic Development +419269,Infrastructure,Infrastructure +408270,Infrastructure,Infrastructure +404200,Infrastructure,Infrastructure +398249,Infrastructure,Infrastructure +398244,Infrastructure,Infrastructure +395706,Infrastructure,Infrastructure +395703,Infrastructure,Infrastructure +393613,Infrastructure,Infrastructure +393549,Infrastructure,Infrastructure +392260,Infrastructure,Infrastructure +389686,Infrastructure,Infrastructure +383234,Infrastructure,Infrastructure +379808,Infrastructure,Infrastructure +373960,Infrastructure,Infrastructure +373958,Infrastructure,Infrastructure +366328,Infrastructure,Infrastructure +365270,Infrastructure,Infrastructure +364262,Infrastructure,Infrastructure +359182,Infrastructure,Infrastructure +359182,Municipalities,Municipalities +359182,Regional Development,Regional Development +382901,Mining,Mining +382900,Mining,Mining +381727,Consumer Issues,Consumer Issues +382756,Industry,Industry +343204,Health,Health +335357,Consumer Issues,Consumer Issues +335355,Consumer Issues,Consumer Issues +335357,Health,Health +335355,Health,Health +348788,Government Procurement,Government Procurement +338083,Government Procurement,Government Procurement +380120,Government Procurement,Government Procurement +380119,Government Procurement,Government Procurement +368245,Government Procurement,Government Procurement +368244,Government Procurement,Government Procurement +460843,Internal Trade,Internal Trade +460538,Internal Trade,Internal Trade +358542,Internal Trade,Internal Trade +350281,Internal Trade,Internal Trade +335110,Internal Trade,Internal Trade +489194,Internal Trade,Internal Trade +489193,Internal Trade,Internal Trade +474288,Internal Trade,Internal Trade +470332,Internal Trade,Internal Trade +457992,International Relations,International Relations +407846,International Relations,International Relations +350281,International Relations,International Relations +335111,International Relations,International Relations +470331,Internal Trade,Internal Trade +465470,Internal Trade,Internal Trade +335115,Internal Trade,Internal Trade +489192,Internal Trade,Internal Trade +340514,Consumer Issues,Consumer Issues +335923,Health,Health +335922,Health,Health +340515,Health,Health +408850,Economic Development,Economic Development +407539,Economic Development,Economic Development +340462,Economic Development,Economic Development +357801,Regional Development,Regional Development +432220,Regional Development,Regional Development +335174,Regional Development,Regional Development +365948,Regional Development,Regional Development +343231,Environment,Environment +343230,Environment,Environment +343229,Environment,Environment +343228,Environment,Environment +343225,Environment,Environment +343223,Environment,Environment +350302,Environment,Environment +349214,Environment,Environment +349212,Environment,Environment +343235,Environment,Environment +343234,Environment,Environment +353577,Immigration,Immigration +348885,Immigration,Immigration +335290,Immigration,Immigration +404467,Immigration,Immigration +363842,Immigration,Immigration +358142,Immigration,Immigration +348885,Labour,Labour +404467,Labour,Labour +335290,Labour,Labour +363842,Labour,Labour +363742,Labour,Labour +358142,Labour,Labour +355510,Labour,Labour +355509,Labour,Labour +476756,Health,Health +475749,Health,Health +392275,Health,Health +389532,Health,Health +376772,Health,Health +350394,Health,Health +350392,Health,Health +350391,Health,Health +347417,Health,Health +337305,Health,Health +337251,Health,Health +337249,Health,Health +335401,Health,Health +335398,Health,Health +335392,Health,Health +335346,Health,Health +473345,Health,Health +473343,Health,Health +473340,Health,Health +473336,Health,Health +470684,Health,Health +433162,Health,Health +424064,Health,Health +424061,Health,Health +406693,Health,Health +404153,Health,Health +393342,Health,Health +393339,Health,Health +523126,Health,Health +520338,Health,Health +511511,Health,Health +502083,Health,Health +443704,Employment and Training,Employment and Training +443633,Employment and Training,Employment and Training +382897,Employment and Training,Employment and Training +382896,Employment and Training,Employment and Training +382222,Employment and Training,Employment and Training +380681,Employment and Training,Employment and Training +380677,Employment and Training,Employment and Training +380674,Employment and Training,Employment and Training +380672,Employment and Training,Employment and Training +377926,Employment and Training,Employment and Training +377925,Employment and Training,Employment and Training +377924,Employment and Training,Employment and Training +377923,Employment and Training,Employment and Training +377921,Employment and Training,Employment and Training +355474,Employment and Training,Employment and Training +352565,Employment and Training,Employment and Training +352564,Employment and Training,Employment and Training +352470,Employment and Training,Employment and Training +350646,Employment and Training,Employment and Training +348955,Employment and Training,Employment and Training +348954,Employment and Training,Employment and Training +347915,Employment and Training,Employment and Training +347914,Employment and Training,Employment and Training +347913,Employment and Training,Employment and Training +347912,Employment and Training,Employment and Training +347911,Employment and Training,Employment and Training +347910,Employment and Training,Employment and Training +347908,Employment and Training,Employment and Training +344661,Employment and Training,Employment and Training +344660,Employment and Training,Employment and Training +344659,Employment and Training,Employment and Training +344658,Employment and Training,Employment and Training +344657,Employment and Training,Employment and Training +335396,Employment and Training,Employment and Training +335395,Employment and Training,Employment and Training +335391,Employment and Training,Employment and Training +440959,Employment and Training,Employment and Training +440958,Employment and Training,Employment and Training +440785,Employment and Training,Employment and Training +440772,Employment and Training,Employment and Training +437632,Employment and Training,Employment and Training +437587,Employment and Training,Employment and Training +437586,Employment and Training,Employment and Training +437585,Employment and Training,Employment and Training +437556,Employment and Training,Employment and Training +437554,Employment and Training,Employment and Training +437553,Employment and Training,Employment and Training +434914,Employment and Training,Employment and Training +434913,Employment and Training,Employment and Training +433034,Employment and Training,Employment and Training +433033,Employment and Training,Employment and Training +433032,Employment and Training,Employment and Training +433031,Employment and Training,Employment and Training +431967,Employment and Training,Employment and Training +430290,Employment and Training,Employment and Training +430289,Employment and Training,Employment and Training +430288,Employment and Training,Employment and Training +430287,Employment and Training,Employment and Training +428368,Employment and Training,Employment and Training +428362,Employment and Training,Employment and Training +428328,Employment and Training,Employment and Training +425475,Employment and Training,Employment and Training +425473,Employment and Training,Employment and Training +425472,Employment and Training,Employment and Training +423396,Employment and Training,Employment and Training +421420,Employment and Training,Employment and Training +421418,Employment and Training,Employment and Training +421417,Employment and Training,Employment and Training +421416,Employment and Training,Employment and Training +419131,Employment and Training,Employment and Training +419129,Employment and Training,Employment and Training +419126,Employment and Training,Employment and Training +419119,Employment and Training,Employment and Training +419117,Employment and Training,Employment and Training +419115,Employment and Training,Employment and Training +419113,Employment and Training,Employment and Training +419110,Employment and Training,Employment and Training +419108,Employment and Training,Employment and Training +419103,Employment and Training,Employment and Training +419102,Employment and Training,Employment and Training +419099,Employment and Training,Employment and Training +419098,Employment and Training,Employment and Training +419097,Employment and Training,Employment and Training +419067,Employment and Training,Employment and Training +415201,Employment and Training,Employment and Training +415200,Employment and Training,Employment and Training +415199,Employment and Training,Employment and Training +415198,Employment and Training,Employment and Training +415197,Employment and Training,Employment and Training +415196,Employment and Training,Employment and Training +415195,Employment and Training,Employment and Training +415194,Employment and Training,Employment and Training +415193,Employment and Training,Employment and Training +415192,Employment and Training,Employment and Training +415191,Employment and Training,Employment and Training +415188,Employment and Training,Employment and Training +412848,Employment and Training,Employment and Training +412844,Employment and Training,Employment and Training +412613,Employment and Training,Employment and Training +408599,Employment and Training,Employment and Training +407319,Employment and Training,Employment and Training +407318,Employment and Training,Employment and Training +406153,Employment and Training,Employment and Training +404895,Employment and Training,Employment and Training +404894,Employment and Training,Employment and Training +401959,Employment and Training,Employment and Training +399750,Employment and Training,Employment and Training +399749,Employment and Training,Employment and Training +399748,Employment and Training,Employment and Training +399747,Employment and Training,Employment and Training +399746,Employment and Training,Employment and Training +397949,Employment and Training,Employment and Training +395039,Employment and Training,Employment and Training +395037,Employment and Training,Employment and Training +395021,Employment and Training,Employment and Training +395003,Employment and Training,Employment and Training +395001,Employment and Training,Employment and Training +394999,Employment and Training,Employment and Training +394997,Employment and Training,Employment and Training +394994,Employment and Training,Employment and Training +394989,Employment and Training,Employment and Training +394909,Employment and Training,Employment and Training +393084,Employment and Training,Employment and Training +393083,Employment and Training,Employment and Training +393078,Employment and Training,Employment and Training +393076,Employment and Training,Employment and Training +393075,Employment and Training,Employment and Training +393074,Employment and Training,Employment and Training +393073,Employment and Training,Employment and Training +392283,Employment and Training,Employment and Training +392280,Employment and Training,Employment and Training +392279,Employment and Training,Employment and Training +388890,Employment and Training,Employment and Training +388889,Employment and Training,Employment and Training +388888,Employment and Training,Employment and Training +388887,Employment and Training,Employment and Training +388886,Employment and Training,Employment and Training +388885,Employment and Training,Employment and Training +388884,Employment and Training,Employment and Training +387036,Employment and Training,Employment and Training +387035,Employment and Training,Employment and Training +384261,Employment and Training,Employment and Training +541885,Employment and Training,Employment and Training +539970,Employment and Training,Employment and Training +535677,Employment and Training,Employment and Training +531824,Employment and Training,Employment and Training +531823,Employment and Training,Employment and Training +528294,Employment and Training,Employment and Training +514195,Employment and Training,Employment and Training +512705,Employment and Training,Employment and Training +470313,Employment and Training,Employment and Training +470312,Employment and Training,Employment and Training +465617,Employment and Training,Employment and Training +464147,Employment and Training,Employment and Training +461074,Employment and Training,Employment and Training +460043,Employment and Training,Employment and Training +460042,Employment and Training,Employment and Training +460041,Employment and Training,Employment and Training +460038,Employment and Training,Employment and Training +459467,Employment and Training,Employment and Training +459466,Employment and Training,Employment and Training +457316,Employment and Training,Employment and Training +457315,Employment and Training,Employment and Training +457314,Employment and Training,Employment and Training +457312,Employment and Training,Employment and Training +455002,Employment and Training,Employment and Training +454995,Employment and Training,Employment and Training +454992,Employment and Training,Employment and Training +452378,Employment and Training,Employment and Training +452371,Employment and Training,Employment and Training +452362,Employment and Training,Employment and Training +452358,Employment and Training,Employment and Training +452347,Employment and Training,Employment and Training +452344,Employment and Training,Employment and Training +452342,Employment and Training,Employment and Training +452340,Employment and Training,Employment and Training +449776,Employment and Training,Employment and Training +449774,Employment and Training,Employment and Training +449770,Employment and Training,Employment and Training +447573,Employment and Training,Employment and Training +444338,Employment and Training,Employment and Training +444337,Employment and Training,Employment and Training +444336,Employment and Training,Employment and Training +444334,Employment and Training,Employment and Training +390060,Research and Development,Research and Development +390054,Research and Development,Research and Development +335559,Research and Development,Research and Development +335895,International Trade,International Trade +457578,International Trade,International Trade +377099,International Trade,International Trade +372659,International Trade,International Trade +357528,International Trade,International Trade +352536,Sports,Sports +335655,Sports,Sports +356362,Sports,Sports +445316,Economic Development,Economic Development +433735,Economic Development,Economic Development +374809,Economic Development,Economic Development +374797,Economic Development,Economic Development +374786,Economic Development,Economic Development +372157,Economic Development,Economic Development +366503,Economic Development,Economic Development +366502,Economic Development,Economic Development +348669,Economic Development,Economic Development +335674,Economic Development,Economic Development +414536,Economic Development,Economic Development +409400,Economic Development,Economic Development +403473,Economic Development,Economic Development +403469,Economic Development,Economic Development +400099,Economic Development,Economic Development +400096,Economic Development,Economic Development +400093,Economic Development,Economic Development +395800,Economic Development,Economic Development +389077,Economic Development,Economic Development +382416,Economic Development,Economic Development +380958,Economic Development,Economic Development +380947,Economic Development,Economic Development +379826,Economic Development,Economic Development +379811,Economic Development,Economic Development +379796,Economic Development,Economic Development +376743,Economic Development,Economic Development +376735,Economic Development,Economic Development +376726,Economic Development,Economic Development +376720,Economic Development,Economic Development +376712,Economic Development,Economic Development +376702,Economic Development,Economic Development +376697,Economic Development,Economic Development +376692,Economic Development,Economic Development +477719,Economic Development,Economic Development +477709,Economic Development,Economic Development +476296,Economic Development,Economic Development +476295,Economic Development,Economic Development +476294,Economic Development,Economic Development +476267,Economic Development,Economic Development +432532,Official Languages,Official Languages +431347,Official Languages,Official Languages +406048,Official Languages,Official Languages +385142,Official Languages,Official Languages +353144,Official Languages,Official Languages +335716,Official Languages,Official Languages +542007,Official Languages,Official Languages +540235,Official Languages,Official Languages +538492,Official Languages,Official Languages +529364,Official Languages,Official Languages +493665,Official Languages,Official Languages +487713,Official Languages,Official Languages +482429,Official Languages,Official Languages +482427,Official Languages,Official Languages +478181,Official Languages,Official Languages +475925,Official Languages,Official Languages +475909,Official Languages,Official Languages +470748,Official Languages,Official Languages +459732,Official Languages,Official Languages +454913,Official Languages,Official Languages +454906,Official Languages,Official Languages +447354,Official Languages,Official Languages +336470,Energy,Energy +336470,Housing,Housing +366269,Energy,Energy +363349,Energy,Energy +337631,Energy,Energy +337630,Energy,Energy +367883,Energy,Energy +367881,Energy,Energy +337631,Environment,Environment +503292,Health,Health +494587,Health,Health +366271,Health,Health +366270,Health,Health +366269,Health,Health +363349,Health,Health +337631,Health,Health +337630,Health,Health +407824,Health,Health +367883,Health,Health +367881,Health,Health +534428,Housing,Housing +534386,Housing,Housing +405370,Housing,Housing +405365,Housing,Housing +400376,Housing,Housing +393413,Housing,Housing +351371,Housing,Housing +341155,Housing,Housing +337340,Industry,Industry +337340,Energy,Energy +424373,Industry,Industry +424372,Industry,Industry +374198,Industry,Industry +374194,Industry,Industry +374192,Industry,Industry +369612,Industry,Industry +522141,Industry,Industry +432636,Industry,Industry +369610,Infrastructure,Infrastructure +450622,Infrastructure,Infrastructure +369613,Infrastructure,Infrastructure +369612,Infrastructure,Infrastructure +370484,Regional Development,Regional Development +349054,Regional Development,Regional Development +348947,Regional Development,Regional Development +348935,Regional Development,Regional Development +348931,Regional Development,Regional Development +404192,Regional Development,Regional Development +396920,Regional Development,Regional Development +392319,Regional Development,Regional Development +477156,Health,Health +335962,Budget,Budget +528185,Budget,Budget +501946,Budget,Budget +377208,Budget,Budget +377203,Budget,Budget +377202,Budget,Budget +418389,Industry,Industry +339355,Taxation and Finance,Taxation and Finance +339353,Taxation and Finance,Taxation and Finance +349803,Taxation and Finance,Taxation and Finance +348206,Taxation and Finance,Taxation and Finance +414905,Agriculture,Agriculture +385388,Agriculture,Agriculture +338564,Agriculture,Agriculture +338556,Agriculture,Agriculture +368655,Agriculture,Agriculture +368654,Agriculture,Agriculture +368653,Agriculture,Agriculture +349431,Agriculture,Agriculture +349430,Agriculture,Agriculture +349424,Agriculture,Agriculture +341141,Agriculture,Agriculture +341139,Agriculture,Agriculture +341138,Agriculture,Agriculture +341138,Industry,Industry +338564,Industry,Industry +341141,Industry,Industry +368654,Infrastructure,Infrastructure +368653,Infrastructure,Infrastructure +414905,Infrastructure,Infrastructure +377335,Infrastructure,Infrastructure +374509,Infrastructure,Infrastructure +385388,International Relations,International Relations +368655,International Relations,International Relations +341141,International Relations,International Relations +341139,International Relations,International Relations +414906,International Trade,International Trade +414905,International Trade,International Trade +402157,International Trade,International Trade +377335,International Trade,International Trade +374509,International Trade,International Trade +368655,International Trade,International Trade +368654,International Trade,International Trade +368653,International Trade,International Trade +349431,International Trade,International Trade +349430,International Trade,International Trade +349424,International Trade,International Trade +341141,International Trade,International Trade +341139,International Trade,International Trade +338567,International Trade,International Trade +338556,International Trade,International Trade +414905,Mining,Mining +377335,Mining,Mining +368655,Mining,Mining +349431,Mining,Mining +349430,Mining,Mining +341141,Mining,Mining +341139,Mining,Mining +414906,Transportation,Transportation +414905,Transportation,Transportation +377335,Transportation,Transportation +374509,Transportation,Transportation +368655,Transportation,Transportation +368654,Transportation,Transportation +368653,Transportation,Transportation +349431,Transportation,Transportation +349430,Transportation,Transportation +349424,Transportation,Transportation +350738,International Trade,International Trade +344550,International Trade,International Trade +356568,International Trade,International Trade +356566,International Trade,International Trade +356562,International Trade,International Trade +356561,International Trade,International Trade +356560,International Trade,International Trade +506273,Defence,Defence +338491,Regional Development,Regional Development +340905,Intellectual Property,Intellectual Property +337774,Intellectual Property,Intellectual Property +361989,Intellectual Property,Intellectual Property +358171,Intellectual Property,Intellectual Property +354089,Intellectual Property,Intellectual Property +343979,Intellectual Property,Intellectual Property +340911,Intellectual Property,Intellectual Property +340905,International Relations,International Relations +337774,International Relations,International Relations +361989,International Relations,International Relations +358171,International Relations,International Relations +354089,International Relations,International Relations +343979,International Relations,International Relations +340911,International Relations,International Relations +340917,Intellectual Property,Intellectual Property +338300,Intellectual Property,Intellectual Property +361985,Intellectual Property,Intellectual Property +339033,Economic Development,Economic Development +377942,Employment and Training,Employment and Training +339033,Labour,Labour +339033,Small Business,Small Business +372913,Infrastructure,Infrastructure +335128,Transportation,Transportation +339006,Energy,Energy +340297,Economic Development,Economic Development +336591,Budget,Budget +337224,Health,Health +337223,Industry,Industry +337388,Economic Development,Economic Development +337387,Employment and Training,Employment and Training +337387,Environment,Environment +337388,Immigration,Immigration +337385,Infrastructure,Infrastructure +337386,International Trade,International Trade +337390,Labour,Labour +337385,Mining,Mining +338026,Regional Development,Regional Development +338026,Taxation and Finance,Taxation and Finance +337385,Transportation,Transportation +335592,International Trade,Commerce international +353606,Health,Health +350938,Justice and Law Enforcement,Justice and Law Enforcement +353608,Religion,Religion +353607,Health,Health +353607,Justice and Law Enforcement,Justice and Law Enforcement +353605,Religion,Religion +335119,Consumer Issues,Consumer Issues +335119,Health,Health +449033,Energy,Energy +468746,Transportation,Transportation +355194,Transportation,Transportation +352902,Energy,Energy +352900,Mining,Mining +352902,International Relations,International Relations +401880,Industry,Industry +335059,Transportation,Transportation +335059,Mining,Mining +334965,Budget,Budget +359182,Economic Development,Economic Development +419270,Infrastructure,Infrastructure +365270,Municipalities,Municipalities +366329,Regional Development,Regional Development +359182,Transportation,Transportation +384352,Mining,Mining +384032,Industry,Industry +382105,Consumer Issues,Consumer Issues +382792,Industry,Industry +344284,Health,Health +344284,Industry,Industry +344284,Research and Development,Research and Development +335028,Regional Development,Regional Development +337382,Consumer Issues,Consumer Issues +337382,Health,Health +348789,Government Procurement,Government Procurement +338545,Environment,Environment +462092,Internal Trade,Internal Trade +462092,International Relations,International Relations +489191,Internal Trade,Internal Trade +340515,Consumer Issues,Consumer Issues +340514,Health,Health +338493,Economic Development,Economic Development +335136,Economic Development,Economic Development +335136,Government Procurement,Government Procurement +485358,Intellectual Property,Intellectual Property +335137,Economic Development,Economic Development +335137,Government Procurement,Government Procurement +335138,Economic Development,Economic Development +335138,Government Procurement,Government Procurement +370048,Industry,Industry +335139,Economic Development,Economic Development +335139,Government Procurement,Government Procurement +335140,Economic Development,Economic Development +335140,Government Procurement,Government Procurement +335141,Economic Development,Economic Development +335141,Government Procurement,Government Procurement +335142,Economic Development,Economic Development +335142,Government Procurement,Government Procurement +335143,Economic Development,Economic Development +335143,Government Procurement,Government Procurement +335145,Economic Development,Economic Development +335145,Government Procurement,Government Procurement +335147,Economic Development,Economic Development +335147,Government Procurement,Government Procurement +335148,Economic Development,Economic Development +335148,Government Procurement,Government Procurement +335149,Economic Development,Economic Development +335149,Government Procurement,Government Procurement +335150,Economic Development,Economic Development +335150,Government Procurement,Government Procurement +335151,Economic Development,Economic Development +335151,Government Procurement,Government Procurement +335152,Economic Development,Economic Development +335152,Government Procurement,Government Procurement +335153,Economic Development,Economic Development +335153,Government Procurement,Government Procurement +335158,Economic Development,Economic Development +335158,Government Procurement,Government Procurement +335159,Economic Development,Economic Development +335159,Government Procurement,Government Procurement +335174,International Development,International Development +357803,Regional Development,Regional Development +515971,Religion,Religion +343232,Environment,Environment +355509,Immigration,Immigration +353577,Labour,Labour +502080,Health,Health +444333,Employment and Training,Employment and Training +339041,Environment,Environment +335491,Environment,Environment +335537,Budget,Budget +393657,Research and Development,Research and Development +335614,Budget,Budget +335615,Budget,Budget +335616,Budget,Budget +335617,Budget,Budget +335618,Budget,Budget +335619,Budget,Budget +335622,Budget,Budget +335624,Budget,Budget +335626,Budget,Budget +357527,International Trade,International Trade +335629,Budget,Budget +335630,Budget,Budget +352600,Sports,Sports +460183,Economic Development,Economic Development +443804,Official Languages,Official Languages +342987,Energy,Energy +342987,Environment,Environment +342987,Housing,Housing +350284,Intellectual Property,Intellectual Property +367874,Energy,Energy +366270,Environment,Environment +367874,Health,Health +335829,Housing,Housing +335836,Budget,Budget +335840,Budget,Budget +335842,Budget,Budget +338263,Industry,Industry +338263,Energy,Energy +348913,Transportation,Transportation +338333,International Trade,International Trade +432635,Industry,Industry +369611,Infrastructure,Infrastructure +336409,Infrastructure,Infrastructure +533405,Regional Development,Regional Development +348210,Health,Health +442837,Budget,Budget +335987,Privacy and Access to Information,Privacy and Access to Information +337237,Taxation and Finance,Taxation and Finance +336023,Small Business,Small Business +377197,Budget,Budget +336130,Economic Development,Economic Development +336136,Industry,Industry +336869,Mining,Mining +336869,International Trade,International Trade +336869,Agriculture,Agriculture +336869,Industry,Industry +336869,International Relations,International Relations +336869,Internal Trade,Internal Trade +408961,Budget,Budget +347092,Taxation and Finance,Taxation and Finance +338567,Agriculture,Agriculture +341139,Industry,Industry +368655,Infrastructure,Infrastructure +338556,International Relations,International Relations +414907,International Trade,International Trade +341138,Mining,Mining +341138,Regional Development,Regional Development +341141,Transportation,Transportation +338311,International Trade,International Trade +350739,International Trade,International Trade +336289,Defence,Defence +382680,Infrastructure,Infrastructure +338493,Regional Development,Regional Development +342039,Health,Health +342039,Justice and Law Enforcement,Justice and Law Enforcement +340908,Intellectual Property,Intellectual Property +340908,International Relations,International Relations +340922,Intellectual Property,Intellectual Property +361984,International Relations,International Relations +359810,Energy,Energy +338703,Environment,Environment +356616,Industry,Industry +338703,Infrastructure,Infrastructure +376318,International Relations,International Relations +359810,International Trade,International Trade +340697,Employment and Training,Employment and Training +339351,Agriculture,Agriculture +366408,International Trade,International Trade +366410,Taxation and Finance,Taxation and Finance +522365,Agriculture,Agriculture +440858,Economic Development,Economic Development +531882,Energy,Energy +340301,Environment,Environment +519125,Health,Health +356229,International Trade,International Trade +421140,Research and Development,Research and Development +341678,Consumer Issues,Consumer Issues +397197,Energy,Energy +468349,Environment,Environment +454433,Transportation,Transportation +336453,Consumer Issues,Consumer Issues +341972,Mining,Mining +337500,Energy,Energy +337500,International Trade,International Trade +355470,Financial Institutions,Financial Institutions +492594,Agriculture,Agriculture +350927,International Relations,International Relations +527817,Labour,Labour +399412,Transportation,Transportation +361984,Intellectual Property,Intellectual Property +358176,Intellectual Property,Intellectual Property +354090,Intellectual Property,Intellectual Property +358176,International Relations,International Relations +354090,International Relations,International Relations +340922,International Relations,International Relations +340917,International Relations,International Relations +338300,International Relations,International Relations +361985,International Relations,International Relations +359804,Energy,Energy +359803,Energy,Energy +356618,Energy,Energy +356617,Energy,Energy +356616,Energy,Energy +356447,Energy,Energy +356440,Energy,Energy +352602,Energy,Energy +338716,Energy,Energy +338710,Energy,Energy +338703,Energy,Energy +338699,Energy,Energy +338698,Energy,Energy +404828,Energy,Energy +392079,Energy,Energy +376318,Energy,Energy +366902,Energy,Energy +359812,Energy,Energy +359811,Energy,Energy +338699,Environment,Environment +338698,Environment,Environment +338716,Environment,Environment +338710,Environment,Environment +356447,Industry,Industry +356440,Industry,Industry +352602,Industry,Industry +338716,Industry,Industry +338710,Industry,Industry +338703,Industry,Industry +338699,Industry,Industry +338698,Industry,Industry +404826,Industry,Industry +381741,Industry,Industry +366902,Industry,Industry +359810,Industry,Industry +356617,Industry,Industry +338699,Infrastructure,Infrastructure +338698,Infrastructure,Infrastructure +356618,Infrastructure,Infrastructure +338716,Infrastructure,Infrastructure +338710,Infrastructure,Infrastructure +359812,International Relations,International Relations +359811,International Relations,International Relations +359810,International Relations,International Relations +359804,International Relations,International Relations +359803,International Relations,International Relations +343971,International Relations,International Relations +338716,International Relations,International Relations +338710,International Relations,International Relations +338703,International Relations,International Relations +338699,International Relations,International Relations +338698,International Relations,International Relations +359804,International Trade,International Trade +359803,International Trade,International Trade +356618,International Trade,International Trade +356617,International Trade,International Trade +356616,International Trade,International Trade +356447,International Trade,International Trade +356440,International Trade,International Trade +352602,International Trade,International Trade +338716,International Trade,International Trade +338710,International Trade,International Trade +338703,International Trade,International Trade +338699,International Trade,International Trade +338698,International Trade,International Trade +404828,International Trade,International Trade +404827,International Trade,International Trade +404826,International Trade,International Trade +392079,International Trade,International Trade +366902,International Trade,International Trade +359812,International Trade,International Trade +359811,International Trade,International Trade +339132,Employment and Training,Employment and Training +339350,Agriculture,Agriculture +339351,International Trade,International Trade +339350,International Trade,International Trade +366410,International Trade,International Trade +366408,Taxation and Finance,Taxation and Finance +522363,Agriculture,Agriculture +516834,Agriculture,Agriculture +370809,Agriculture,Agriculture +360745,Agriculture,Agriculture +360744,Agriculture,Agriculture +358422,Agriculture,Agriculture +356229,Agriculture,Agriculture +344720,Agriculture,Agriculture +340301,Agriculture,Agriculture +507124,Agriculture,Agriculture +498104,Agriculture,Agriculture +498103,Agriculture,Agriculture +492599,Agriculture,Agriculture +492591,Agriculture,Agriculture +490385,Agriculture,Agriculture +486993,Agriculture,Agriculture +486991,Agriculture,Agriculture +486924,Agriculture,Agriculture +486919,Agriculture,Agriculture +486907,Agriculture,Agriculture +479918,Agriculture,Agriculture +458837,Agriculture,Agriculture +458836,Agriculture,Agriculture +458834,Agriculture,Agriculture +452553,Agriculture,Agriculture +449934,Agriculture,Agriculture +449927,Agriculture,Agriculture +447742,Agriculture,Agriculture +447740,Agriculture,Agriculture +447739,Agriculture,Agriculture +447738,Agriculture,Agriculture +440859,Agriculture,Agriculture +440858,Agriculture,Agriculture +440854,Agriculture,Agriculture +440852,Agriculture,Agriculture +440851,Agriculture,Agriculture +440850,Agriculture,Agriculture +421140,Agriculture,Agriculture +394565,Agriculture,Agriculture +383932,Agriculture,Agriculture +383929,Agriculture,Agriculture +378406,Agriculture,Agriculture +374767,Agriculture,Agriculture +531882,Agriculture,Agriculture +531882,Environment,Environment +516835,Health,Health +344720,International Trade,International Trade +486919,International Trade,International Trade +421140,International Trade,International Trade +394565,International Trade,International Trade +383929,International Trade,International Trade +370809,International Trade,International Trade +360745,International Trade,International Trade +360744,International Trade,International Trade +341675,Consumer Issues,Consumer Issues +341667,Consumer Issues,Consumer Issues +341679,Consumer Issues,Consumer Issues +382688,Energy,Energy +381978,Energy,Energy +468357,Energy,Energy +468353,Energy,Energy +468352,Energy,Energy +468349,Energy,Energy +454433,Energy,Energy +452847,Energy,Energy +427949,Energy,Energy +409670,Energy,Energy +397201,Energy,Energy +397200,Energy,Energy +397199,Energy,Energy +397198,Energy,Energy +452847,Environment,Environment +427949,Environment,Environment +409670,Environment,Environment +397201,Environment,Environment +397200,Environment,Environment +397199,Environment,Environment +397198,Environment,Environment +397197,Environment,Environment +381978,Environment,Environment +468357,Environment,Environment +468353,Environment,Environment +468352,Environment,Environment +452847,Transportation,Transportation +427949,Transportation,Transportation +409670,Transportation,Transportation +468357,Transportation,Transportation +468353,Transportation,Transportation +468352,Transportation,Transportation +468349,Transportation,Transportation +336452,Consumer Issues,Consumer Issues +336451,Consumer Issues,Consumer Issues +377289,Consumer Issues,Consumer Issues +375019,Consumer Issues,Consumer Issues +351721,Consumer Issues,Consumer Issues +351720,Consumer Issues,Consumer Issues +341965,Mining,Mining +371550,Mining,Mining +357668,Mining,Mining +348574,Mining,Mining +348573,Mining,Mining +348572,Mining,Mining +344338,Mining,Mining +344002,Mining,Mining +341984,Mining,Mining +341981,Mining,Mining +341978,Mining,Mining +336610,Financial Institutions,Financial Institutions +496706,Financial Institutions,Financial Institutions +492589,Agriculture,Agriculture +447772,Agriculture,Agriculture +374764,Agriculture,Agriculture +370807,Agriculture,Agriculture +370806,Agriculture,Agriculture +370804,Agriculture,Agriculture +370803,Agriculture,Agriculture +369408,Agriculture,Agriculture +358424,Agriculture,Agriculture +355267,Agriculture,Agriculture +355266,Agriculture,Agriculture +350927,Agriculture,Agriculture +350533,Agriculture,Agriculture +350532,Agriculture,Agriculture +348282,Agriculture,Agriculture +348281,Agriculture,Agriculture +348280,Agriculture,Agriculture +348279,Agriculture,Agriculture +348278,Agriculture,Agriculture +348277,Agriculture,Agriculture +384978,Agriculture,Agriculture +383930,Agriculture,Agriculture +383925,Agriculture,Agriculture +378412,Agriculture,Agriculture +378411,Agriculture,Agriculture +378410,Agriculture,Agriculture +378409,Agriculture,Agriculture +378408,Agriculture,Agriculture +378407,Agriculture,Agriculture +527819,Agriculture,Agriculture +527818,Agriculture,Agriculture +524745,Agriculture,Agriculture +498100,Agriculture,Agriculture +494498,Agriculture,Agriculture +494497,Agriculture,Agriculture +486882,Labour,Labour +399410,Transportation,Transportation +399408,Transportation,Transportation +348278,Transportation,Transportation +348277,Transportation,Transportation +340300,Transportation,Transportation +340299,Transportation,Transportation +340298,Transportation,Transportation +397092,Transportation,Transportation +397090,Transportation,Transportation +397086,Transportation,Transportation +397080,Transportation,Transportation +394563,Transportation,Transportation +394562,Transportation,Transportation +394561,Transportation,Transportation +394560,Transportation,Transportation +394559,Transportation,Transportation +391111,Transportation,Transportation +384978,Transportation,Transportation +384973,Transportation,Transportation +383930,Transportation,Transportation +383925,Transportation,Transportation +382419,Transportation,Transportation +378434,Transportation,Transportation +378412,Transportation,Transportation +378411,Transportation,Transportation +378410,Transportation,Transportation +378409,Transportation,Transportation +378408,Transportation,Transportation +378407,Transportation,Transportation +374764,Transportation,Transportation +370807,Transportation,Transportation +370806,Transportation,Transportation +370804,Transportation,Transportation +370803,Transportation,Transportation +369408,Transportation,Transportation +358424,Transportation,Transportation +355267,Transportation,Transportation +355266,Transportation,Transportation +350927,Transportation,Transportation +350533,Transportation,Transportation +350532,Transportation,Transportation +348282,Transportation,Transportation +348281,Transportation,Transportation +348280,Transportation,Transportation +348279,Transportation,Transportation +527821,Transportation,Transportation +512416,Transportation,Transportation +510150,Transportation,Transportation +507128,Transportation,Transportation +503827,Transportation,Transportation +501368,Transportation,Transportation +498102,Transportation,Transportation +498099,Transportation,Transportation +490379,Transportation,Transportation +423358,Transportation,Transportation +423351,Transportation,Transportation +423349,Transportation,Transportation +423348,Transportation,Transportation +421139,Transportation,Transportation +421138,Transportation,Transportation +421137,Transportation,Transportation +421136,Transportation,Transportation +421134,Transportation,Transportation +420773,Transportation,Transportation +418161,Transportation,Transportation +418160,Transportation,Transportation +418159,Transportation,Transportation +418158,Transportation,Transportation +418157,Transportation,Transportation +418155,Transportation,Transportation +418154,Transportation,Transportation +418153,Transportation,Transportation +418152,Transportation,Transportation +418041,Transportation,Transportation +408229,Transportation,Transportation +408227,Transportation,Transportation +408226,Transportation,Transportation +406909,Transportation,Transportation +405797,Transportation,Transportation +405796,Transportation,Transportation +405795,Transportation,Transportation +405794,Transportation,Transportation +405793,Transportation,Transportation +405792,Transportation,Transportation +399414,Transportation,Transportation +353022,International Trade,International Trade +353020,International Trade,International Trade +353021,Transportation,Transportation +353020,Transportation,Transportation +357037,Labour,Labour +357036,Labour,Labour +370416,Labour,Labour +357041,Labour,Labour +357040,Labour,Labour +357039,Labour,Labour +357037,Economic Development,Economic Development +357036,Economic Development,Economic Development +357041,Economic Development,Economic Development +357040,Economic Development,Economic Development +357039,Economic Development,Economic Development +357037,Regional Development,Regional Development +357036,Regional Development,Regional Development +357041,Regional Development,Regional Development +357040,Regional Development,Regional Development +357039,Regional Development,Regional Development +357038,Taxation and Finance,Taxation and Finance +357037,Taxation and Finance,Taxation and Finance +357041,Taxation and Finance,Taxation and Finance +357040,Taxation and Finance,Taxation and Finance +357037,Health,Health +357036,Health,Health +357041,Health,Health +357040,Health,Health +357039,Health,Health +357037,Housing,Housing +357036,Housing,Housing +370416,Housing,Housing +357041,Housing,Housing +357040,Housing,Housing +357039,Housing,Housing +337114,Labour,Labour +337113,Labour,Labour +341537,Labour,Labour +337790,Labour,Labour +344423,International Trade,International Trade +344423,Infrastructure,Infrastructure +370239,Budget,Budget +369905,Budget,Budget +350445,Budget,Budget +348041,Budget,Budget +348040,Budget,Budget +348039,Budget,Budget +347762,Budget,Budget +342462,Budget,Budget +341074,Budget,Budget +339988,Budget,Budget +339987,Budget,Budget +339626,Budget,Budget +339625,Budget,Budget +339624,Budget,Budget +339623,Budget,Budget +339622,Budget,Budget +339621,Budget,Budget +339620,Budget,Budget +339619,Budget,Budget +339618,Budget,Budget +339616,Budget,Budget +339615,Budget,Budget +338020,Budget,Budget +336809,Budget,Budget +373010,Budget,Budget +370883,Budget,Budget +370598,Budget,Budget +370597,Budget,Budget +370502,Budget,Budget +370501,Budget,Budget +370500,Budget,Budget +370498,Budget,Budget +370403,Budget,Budget +370402,Budget,Budget +370244,Budget,Budget +370243,Budget,Budget +370242,Budget,Budget +370241,Budget,Budget +341693,Defence,Defence +339456,Defence,Defence +350405,Defence,Defence +343856,Defence,Defence +341687,Economic Development,Economic Development +339456,Economic Development,Economic Development +350405,Economic Development,Economic Development +343856,Economic Development,Economic Development +343658,Economic Development,Economic Development +342044,Economic Development,Economic Development +342042,Economic Development,Economic Development +342041,Economic Development,Economic Development +341693,Environment,Environment +339456,Environment,Environment +341693,International Trade,International Trade +339456,International Trade,International Trade +343856,International Trade,International Trade +343658,International Trade,International Trade +342042,International Trade,International Trade +341687,Mining,Mining +339456,Mining,Mining +350405,Mining,Mining +343856,Mining,Mining +343658,Mining,Mining +342044,Mining,Mining +342042,Mining,Mining +342041,Mining,Mining +341687,Research and Development,Research and Development +339456,Research and Development,Research and Development +350405,Research and Development,Research and Development +343856,Research and Development,Research and Development +343658,Research and Development,Research and Development +342044,Research and Development,Research and Development +342042,Research and Development,Research and Development +342041,Research and Development,Research and Development +374533,Agriculture,Agriculture +374531,Agriculture,Agriculture +378940,Agriculture,Agriculture +378938,Agriculture,Agriculture +374547,Agriculture,Agriculture +374545,Agriculture,Agriculture +374542,Agriculture,Agriculture +374538,Agriculture,Agriculture +374537,Agriculture,Agriculture +374535,Agriculture,Agriculture +374533,Consumer Issues,Consumer Issues +374531,Consumer Issues,Consumer Issues +378940,Consumer Issues,Consumer Issues +378938,Consumer Issues,Consumer Issues +374547,Consumer Issues,Consumer Issues +374545,Consumer Issues,Consumer Issues +374542,Consumer Issues,Consumer Issues +374538,Consumer Issues,Consumer Issues +374537,Consumer Issues,Consumer Issues +374535,Consumer Issues,Consumer Issues +374533,Health,Health +374531,Health,Health +378940,Health,Health +378938,Health,Health +374547,Health,Health +374545,Health,Health +374542,Health,Health +374538,Health,Health +374537,Health,Health +374535,Health,Health +341181,Defence,Defence +341177,Defence,Defence +352071,Defence,Defence +341179,Economic Development,Economic Development +341179,Industry,Industry +341177,Industry,Industry +343968,Infrastructure,Infrastructure +341179,Infrastructure,Infrastructure +341179,Security,Security +341177,Security,Security +352071,Security,Security +343968,Security,Security +436925,Economic Development,Economic Development +427588,Economic Development,Economic Development +400155,Economic Development,Economic Development +400152,Economic Development,Economic Development +400143,Economic Development,Economic Development +371281,Economic Development,Economic Development +371279,Economic Development,Economic Development +371276,Economic Development,Economic Development +371273,Economic Development,Economic Development +371270,Economic Development,Economic Development +436928,Economic Development,Economic Development +342361,Industry,Industry +342360,Industry,Industry +358305,Industry,Industry +358304,Industry,Industry +354004,Industry,Industry +354003,Industry,Industry +342377,Industry,Industry +342359,Intellectual Property,Intellectual Property +342358,Intellectual Property,Intellectual Property +358305,Intellectual Property,Intellectual Property +358304,Intellectual Property,Intellectual Property +356431,Intellectual Property,Intellectual Property +354004,Intellectual Property,Intellectual Property +354003,Intellectual Property,Intellectual Property +342377,Intellectual Property,Intellectual Property +342376,Intellectual Property,Intellectual Property +342375,Intellectual Property,Intellectual Property +342362,Intellectual Property,Intellectual Property +342361,Intellectual Property,Intellectual Property +342359,International Relations,International Relations +342358,International Relations,International Relations +358305,International Relations,International Relations +358304,International Relations,International Relations +356431,International Relations,International Relations +354004,International Relations,International Relations +354003,International Relations,International Relations +342377,International Relations,International Relations +342376,International Relations,International Relations +342375,International Relations,International Relations +342362,International Relations,International Relations +342361,International Relations,International Relations +342359,Research and Development,Research and Development +342358,Research and Development,Research and Development +354004,Research and Development,Research and Development +354003,Research and Development,Research and Development +342377,Research and Development,Research and Development +342376,Research and Development,Research and Development +342375,Research and Development,Research and Development +342362,Research and Development,Research and Development +342361,Research and Development,Research and Development +527265,Research and Development,Research and Development +523895,Research and Development,Research and Development +351881,Research and Development,Research and Development +337096,Research and Development,Research and Development +417113,Research and Development,Research and Development +416545,Research and Development,Research and Development +416531,Research and Development,Research and Development +416529,Research and Development,Research and Development +416523,Research and Development,Research and Development +416268,Research and Development,Research and Development +416256,Research and Development,Research and Development +397841,Research and Development,Research and Development +397688,Research and Development,Research and Development +375336,Research and Development,Research and Development +518770,Research and Development,Research and Development +518458,Research and Development,Research and Development +510950,Research and Development,Research and Development +510931,Research and Development,Research and Development +510927,Research and Development,Research and Development +510924,Research and Development,Research and Development +510922,Research and Development,Research and Development +510918,Research and Development,Research and Development +510915,Research and Development,Research and Development +510913,Research and Development,Research and Development +510909,Research and Development,Research and Development +508197,Research and Development,Research and Development +508184,Research and Development,Research and Development +503723,Research and Development,Research and Development +503722,Research and Development,Research and Development +503720,Research and Development,Research and Development +503718,Research and Development,Research and Development +502386,Research and Development,Research and Development +502367,Research and Development,Research and Development +502365,Research and Development,Research and Development +498689,Research and Development,Research and Development +498688,Research and Development,Research and Development +498687,Research and Development,Research and Development +498685,Research and Development,Research and Development +498684,Research and Development,Research and Development +498683,Research and Development,Research and Development +496225,Research and Development,Research and Development +496224,Research and Development,Research and Development +496223,Research and Development,Research and Development +496222,Research and Development,Research and Development +492692,Research and Development,Research and Development +492691,Research and Development,Research and Development +492690,Research and Development,Research and Development +489129,Research and Development,Research and Development +489126,Research and Development,Research and Development +489124,Research and Development,Research and Development +489107,Research and Development,Research and Development +489104,Research and Development,Research and Development +486309,Research and Development,Research and Development +484532,Research and Development,Research and Development +477967,Research and Development,Research and Development +477963,Research and Development,Research and Development +477951,Research and Development,Research and Development +477948,Research and Development,Research and Development +477920,Research and Development,Research and Development +475660,Research and Development,Research and Development +475642,Research and Development,Research and Development +475637,Research and Development,Research and Development +473921,Research and Development,Research and Development +473911,Research and Development,Research and Development +473440,Research and Development,Research and Development +473403,Research and Development,Research and Development +468365,Research and Development,Research and Development +468364,Research and Development,Research and Development +468363,Research and Development,Research and Development +468360,Research and Development,Research and Development +468358,Research and Development,Research and Development +468356,Research and Development,Research and Development +468350,Research and Development,Research and Development +468348,Research and Development,Research and Development +461794,Research and Development,Research and Development +461793,Research and Development,Research and Development +461792,Research and Development,Research and Development +461791,Research and Development,Research and Development +456909,Research and Development,Research and Development +455015,Research and Development,Research and Development +455014,Research and Development,Research and Development +455013,Research and Development,Research and Development +455011,Research and Development,Research and Development +452976,Research and Development,Research and Development +452907,Research and Development,Research and Development +452906,Research and Development,Research and Development +452905,Research and Development,Research and Development +452900,Research and Development,Research and Development +452899,Research and Development,Research and Development +452896,Research and Development,Research and Development +452887,Research and Development,Research and Development +452886,Research and Development,Research and Development +439763,Research and Development,Research and Development +439761,Research and Development,Research and Development +439760,Research and Development,Research and Development +439754,Research and Development,Research and Development +439751,Research and Development,Research and Development +439749,Research and Development,Research and Development +431344,Research and Development,Research and Development +431343,Research and Development,Research and Development +426851,Research and Development,Research and Development +426850,Research and Development,Research and Development +426849,Research and Development,Research and Development +426848,Research and Development,Research and Development +426847,Research and Development,Research and Development +424325,Research and Development,Research and Development +424319,Research and Development,Research and Development +544282,Research and Development,Research and Development +544280,Research and Development,Research and Development +543763,Research and Development,Research and Development +536983,Research and Development,Research and Development +533224,Research and Development,Research and Development +533201,Research and Development,Research and Development +533200,Research and Development,Research and Development +533199,Research and Development,Research and Development +533194,Research and Development,Research and Development +430217,Environment,Environment +434936,Environment,Environment +363104,Environment,Environment +363102,Environment,Environment +359424,Environment,Environment +355273,Environment,Environment +349682,International Trade,International Trade +344551,International Trade,International Trade +356565,International Trade,International Trade +356564,International Trade,International Trade +356563,International Trade,International Trade +471233,Transportation,Transportation +471232,Transportation,Transportation +433853,Transportation,Transportation +403433,Transportation,Transportation +403373,Transportation,Transportation +403352,Transportation,Transportation +403344,Transportation,Transportation +403328,Transportation,Transportation +403325,Transportation,Transportation +399799,Transportation,Transportation +378193,Transportation,Transportation +378192,Transportation,Transportation +378191,Transportation,Transportation +378190,Transportation,Transportation +378189,Transportation,Transportation +378186,Transportation,Transportation +378185,Transportation,Transportation +378184,Transportation,Transportation +378182,Transportation,Transportation +378179,Transportation,Transportation +378178,Transportation,Transportation +378177,Transportation,Transportation +378176,Transportation,Transportation +378175,Transportation,Transportation +378174,Transportation,Transportation +369786,Transportation,Transportation +537977,Transportation,Transportation +535707,Transportation,Transportation +529743,Transportation,Transportation +338399,Industry,Industry +338398,Industry,Industry +366485,Industry,Industry +366484,Industry,Industry +366382,Industry,Industry +356435,Industry,Industry +524076,Budget,Budget +523526,Budget,Budget +399500,Budget,Budget +399158,Budget,Budget +397236,Budget,Budget +397235,Budget,Budget +393162,Budget,Budget +393161,Budget,Budget +388979,Budget,Budget +386793,Budget,Budget +385775,Budget,Budget +385774,Budget,Budget +384186,Budget,Budget +379187,Budget,Budget +378788,Budget,Budget +375084,Budget,Budget +375083,Budget,Budget +370666,Budget,Budget +370665,Budget,Budget +368302,Budget,Budget +367636,Budget,Budget +362583,Budget,Budget +356938,Budget,Budget +356937,Budget,Budget +350836,Budget,Budget +347102,Budget,Budget +347101,Budget,Budget +342797,Budget,Budget +342420,Budget,Budget +337171,Budget,Budget +337170,Budget,Budget +337169,Budget,Budget +499864,Budget,Budget +499863,Budget,Budget +495413,Budget,Budget +495409,Budget,Budget +495364,Budget,Budget +487261,Budget,Budget +485514,Budget,Budget +465267,Budget,Budget +465266,Budget,Budget +461614,Budget,Budget +453703,Budget,Budget +451921,Budget,Budget +451920,Budget,Budget +449575,Budget,Budget +449573,Budget,Budget +446181,Budget,Budget +445111,Budget,Budget +445108,Budget,Budget +444245,Budget,Budget +438012,Budget,Budget +438010,Budget,Budget +438005,Budget,Budget +437999,Budget,Budget +437995,Budget,Budget +434536,Budget,Budget +433631,Budget,Budget +430554,Budget,Budget +430553,Budget,Budget +430551,Budget,Budget +423943,Budget,Budget +418255,Budget,Budget +415993,Budget,Budget +415992,Budget,Budget +415157,Budget,Budget +415155,Budget,Budget +415153,Budget,Budget +415150,Budget,Budget +411981,Budget,Budget +411979,Budget,Budget +411977,Budget,Budget +411972,Budget,Budget +408928,Budget,Budget +407967,Budget,Budget +404619,Budget,Budget +404617,Budget,Budget +542165,Budget,Budget +527686,Budget,Budget +374516,Agriculture,Agriculture +374515,Agriculture,Agriculture +349448,Agriculture,Agriculture +349446,Agriculture,Agriculture +349445,Agriculture,Agriculture +343423,Agriculture,Agriculture +343422,Agriculture,Agriculture +343421,Agriculture,Agriculture +343420,Agriculture,Agriculture +343419,Agriculture,Agriculture +343418,Agriculture,Agriculture +380375,Agriculture,Agriculture +380373,Agriculture,Agriculture +378857,Agriculture,Agriculture +378855,Agriculture,Agriculture +378854,Agriculture,Agriculture +374522,Agriculture,Agriculture +374521,Agriculture,Agriculture +374520,Agriculture,Agriculture +374519,Agriculture,Agriculture +380373,Consumer Issues,Consumer Issues +378857,Consumer Issues,Consumer Issues +378855,Consumer Issues,Consumer Issues +378854,Consumer Issues,Consumer Issues +374522,Consumer Issues,Consumer Issues +374521,Consumer Issues,Consumer Issues +374520,Consumer Issues,Consumer Issues +374519,Consumer Issues,Consumer Issues +374518,Consumer Issues,Consumer Issues +374516,Consumer Issues,Consumer Issues +374515,Consumer Issues,Consumer Issues +349448,Consumer Issues,Consumer Issues +349446,Consumer Issues,Consumer Issues +349445,Consumer Issues,Consumer Issues +343423,Consumer Issues,Consumer Issues +343422,Consumer Issues,Consumer Issues +343421,Consumer Issues,Consumer Issues +343420,Consumer Issues,Consumer Issues +343419,Consumer Issues,Consumer Issues +343418,Consumer Issues,Consumer Issues +343419,Health,Health +343418,Health,Health +380375,Health,Health +380373,Health,Health +378857,Health,Health +378855,Health,Health +378854,Health,Health +374522,Health,Health +374521,Health,Health +374520,Health,Health +374519,Health,Health +374518,Health,Health +374516,Health,Health +374515,Health,Health +349448,Health,Health +349446,Health,Health +349445,Health,Health +343423,Health,Health +343422,Health,Health +343421,Health,Health +340202,Energy,Energy +339069,Energy,Energy +351800,Energy,Energy +344410,Energy,Energy +340591,Energy,Energy +337216,Energy,Energy +534401,Employment and Training,Employment and Training +534389,Employment and Training,Employment and Training +378059,Employment and Training,Employment and Training +378058,Employment and Training,Employment and Training +376244,Employment and Training,Employment and Training +376242,Employment and Training,Employment and Training +375261,Employment and Training,Employment and Training +375259,Employment and Training,Employment and Training +375258,Employment and Training,Employment and Training +375256,Employment and Training,Employment and Training +375255,Employment and Training,Employment and Training +375254,Employment and Training,Employment and Training +375253,Employment and Training,Employment and Training +375251,Employment and Training,Employment and Training +370134,Employment and Training,Employment and Training +370133,Employment and Training,Employment and Training +370132,Employment and Training,Employment and Training +370131,Employment and Training,Employment and Training +370130,Employment and Training,Employment and Training +370129,Employment and Training,Employment and Training +370128,Employment and Training,Employment and Training +370127,Employment and Training,Employment and Training +368246,Employment and Training,Employment and Training +342206,Employment and Training,Employment and Training +337221,Employment and Training,Employment and Training +525496,Employment and Training,Employment and Training +522635,Employment and Training,Employment and Training +522621,Employment and Training,Employment and Training +522617,Employment and Training,Employment and Training +519859,Employment and Training,Employment and Training +340208,Economic Development,Economic Development +393927,Economic Development,Economic Development +340234,Economic Development,Economic Development +340233,Economic Development,Economic Development +340232,Economic Development,Economic Development +340231,Economic Development,Economic Development +340230,Economic Development,Economic Development +340229,Economic Development,Economic Development +340228,Economic Development,Economic Development +340227,Economic Development,Economic Development +340226,Economic Development,Economic Development +340225,Economic Development,Economic Development +340224,Economic Development,Economic Development +340223,Economic Development,Economic Development +353493,Energy,Energy +353492,Energy,Energy +353491,Energy,Energy +353490,Energy,Energy +353489,Energy,Energy +353488,Energy,Energy +353487,Energy,Energy +353485,Energy,Energy +353483,Energy,Energy +351042,Energy,Energy +351041,Energy,Energy +351040,Energy,Energy +348579,Energy,Energy +348576,Energy,Energy +346938,Energy,Energy +346937,Energy,Energy +343790,Energy,Energy +343789,Energy,Energy +343788,Energy,Energy +343783,Energy,Energy +343781,Energy,Energy +343779,Energy,Energy +340234,Energy,Energy +340233,Energy,Energy +340232,Energy,Energy +340231,Energy,Energy +340230,Energy,Energy +340229,Energy,Energy +340228,Energy,Energy +340227,Energy,Energy +340226,Energy,Energy +340225,Energy,Energy +340224,Energy,Energy +340223,Energy,Energy +340220,Energy,Energy +340208,Energy,Energy +393927,Energy,Energy +390574,Energy,Energy +368827,Energy,Energy +368826,Energy,Energy +366436,Energy,Energy +366435,Energy,Energy +366434,Energy,Energy +366433,Energy,Energy +366432,Energy,Energy +366431,Energy,Energy +366430,Energy,Energy +366429,Energy,Energy +366428,Energy,Energy +366427,Energy,Energy +364810,Energy,Energy +364809,Energy,Energy +364808,Energy,Energy +364807,Energy,Energy +363411,Energy,Energy +363410,Energy,Energy +363409,Energy,Energy +363408,Energy,Energy +363407,Energy,Energy +363406,Energy,Energy +363405,Energy,Energy +362083,Energy,Energy +362082,Energy,Energy +361065,Energy,Energy +361064,Energy,Energy +361063,Energy,Energy +361062,Energy,Energy +359578,Energy,Energy +359577,Energy,Energy +359576,Energy,Energy +359575,Energy,Energy +359574,Energy,Energy +359573,Energy,Energy +359572,Energy,Energy +359571,Energy,Energy +359570,Energy,Energy +357817,Energy,Energy +357816,Energy,Energy +355413,Energy,Energy +355412,Energy,Energy +355411,Energy,Energy +353500,Energy,Energy +353499,Energy,Energy +353498,Energy,Energy +353497,Energy,Energy +353495,Energy,Energy +348579,International Trade,International Trade +348576,International Trade,International Trade +346938,International Trade,International Trade +346937,International Trade,International Trade +343790,International Trade,International Trade +343789,International Trade,International Trade +343788,International Trade,International Trade +343783,International Trade,International Trade +343781,International Trade,International Trade +343779,International Trade,International Trade +340234,International Trade,International Trade +340233,International Trade,International Trade +340232,International Trade,International Trade +340231,International Trade,International Trade +340230,International Trade,International Trade +340229,International Trade,International Trade +340228,International Trade,International Trade +340227,International Trade,International Trade +340226,International Trade,International Trade +340225,International Trade,International Trade +340224,International Trade,International Trade +340223,International Trade,International Trade +340220,International Trade,International Trade +340208,International Trade,International Trade +390574,International Trade,International Trade +368827,International Trade,International Trade +368826,International Trade,International Trade +366436,International Trade,International Trade +366435,International Trade,International Trade +366434,International Trade,International Trade +366433,International Trade,International Trade +366432,International Trade,International Trade +366431,International Trade,International Trade +366430,International Trade,International Trade +366429,International Trade,International Trade +366428,International Trade,International Trade +366427,International Trade,International Trade +364810,International Trade,International Trade +364809,International Trade,International Trade +364808,International Trade,International Trade +364807,International Trade,International Trade +363411,International Trade,International Trade +363410,International Trade,International Trade +363409,International Trade,International Trade +363408,International Trade,International Trade +363407,International Trade,International Trade +363406,International Trade,International Trade +363405,International Trade,International Trade +362083,International Trade,International Trade +362082,International Trade,International Trade +361065,International Trade,International Trade +361064,International Trade,International Trade +361063,International Trade,International Trade +361062,International Trade,International Trade +359578,International Trade,International Trade +359577,International Trade,International Trade +359576,International Trade,International Trade +359575,International Trade,International Trade +359574,International Trade,International Trade +359573,International Trade,International Trade +359572,International Trade,International Trade +359571,International Trade,International Trade +359570,International Trade,International Trade +357817,International Trade,International Trade +357816,International Trade,International Trade +355413,International Trade,International Trade +355412,International Trade,International Trade +355411,International Trade,International Trade +353500,International Trade,International Trade +353499,International Trade,International Trade +353498,International Trade,International Trade +353497,International Trade,International Trade +353495,International Trade,International Trade +353494,International Trade,International Trade +353493,International Trade,International Trade +353492,International Trade,International Trade +353491,International Trade,International Trade +353490,International Trade,International Trade +353489,International Trade,International Trade +353488,International Trade,International Trade +353487,International Trade,International Trade +353485,International Trade,International Trade +353483,International Trade,International Trade +351042,International Trade,International Trade +351041,International Trade,International Trade +341045,Employment and Training,Employment and Training +341043,Employment and Training,Employment and Training +341051,Employment and Training,Employment and Training +341047,Employment and Training,Employment and Training +445330,Health,Health +442969,Health,Health +393696,Health,Health +392857,Health,Health +392856,Health,Health +392854,Health,Health +391350,Health,Health +391344,Health,Health +381244,Health,Health +374413,Health,Health +367324,Health,Health +367323,Health,Health +357525,Health,Health +355742,Health,Health +353795,Health,Health +536223,Health,Health +536215,Health,Health +461882,Health,Health +341719,Health,Health +339014,Education,Education +339014,Health,Health +401454,Education,Education +377341,Education,Education +353739,Education,Education +338819,Education,Education +377341,Health,Health +452988,Health,Health +338819,Health,Health +338126,Health,Health +353739,Health,Health +337989,Infrastructure,Infrastructure +376961,Infrastructure,Infrastructure +373437,Infrastructure,Infrastructure +376976,Infrastructure,Infrastructure +376970,Infrastructure,Infrastructure +368319,International Relations,International Relations +368318,International Relations,International Relations +473975,International Trade,International Trade +503560,International Trade,International Trade +373437,International Trade,International Trade +368316,International Trade,International Trade +368315,International Trade,International Trade +389039,International Trade,International Trade +384732,International Trade,International Trade +384730,International Trade,International Trade +384727,International Trade,International Trade +376976,International Trade,International Trade +376970,International Trade,International Trade +376963,International Trade,International Trade +446301,Transportation,Transportation +473975,Transportation,Transportation +384730,Transportation,Transportation +384727,Transportation,Transportation +376976,Transportation,Transportation +376970,Transportation,Transportation +376963,Transportation,Transportation +376961,Transportation,Transportation +373437,Transportation,Transportation +373436,Transportation,Transportation +368319,Transportation,Transportation +368318,Transportation,Transportation +368316,Transportation,Transportation +368315,Transportation,Transportation +368314,Transportation,Transportation +446306,Transportation,Transportation +343850,Economic Development,Développement économique +343844,Economic Development,Développement économique +350854,Economic Development,Développement économique +350852,Economic Development,Développement économique +350850,Economic Development,Développement économique +350846,Economic Development,Développement économique +350845,Economic Development,Développement économique +350844,Economic Development,Développement économique +350842,Economic Development,Développement économique +350840,Economic Development,Développement économique +350839,Economic Development,Développement économique +350837,Economic Development,Développement économique +349075,Economic Development,Développement économique +349074,Economic Development,Développement économique +349073,Economic Development,Développement économique +349028,Economic Development,Développement économique +347197,Economic Development,Développement économique +343844,Employment and Training,Emploi et formation +350854,Employment and Training,Emploi et formation +350852,Employment and Training,Emploi et formation +350850,Employment and Training,Emploi et formation +350846,Employment and Training,Emploi et formation +350845,Employment and Training,Emploi et formation +350844,Employment and Training,Emploi et formation +350842,Employment and Training,Emploi et formation +350840,Employment and Training,Emploi et formation +350839,Employment and Training,Emploi et formation +350837,Employment and Training,Emploi et formation +349075,Employment and Training,Emploi et formation +349074,Employment and Training,Emploi et formation +349073,Employment and Training,Emploi et formation +349028,Employment and Training,Emploi et formation +347197,Employment and Training,Emploi et formation +344005,Employment and Training,Emploi et formation +350839,Transportation,Transports +350837,Transportation,Transports +349075,Transportation,Transports +349074,Transportation,Transports +349073,Transportation,Transports +349028,Transportation,Transports +347197,Transportation,Transports +344005,Transportation,Transports +343850,Transportation,Transports +343844,Transportation,Transports +350854,Transportation,Transports +350852,Transportation,Transports +350850,Transportation,Transports +350846,Transportation,Transports +350845,Transportation,Transports +350844,Transportation,Transports +350842,Transportation,Transports +339907,Environment,Environment +339906,Environment,Environment +348117,Environment,Environment +339912,Environment,Environment +339907,Health,Health +339906,Health,Health +339912,Health,Health +339908,International Relations,International Relations +339907,Labour,Labour +339907,Mining,Mining +339906,Mining,Mining +348117,Mining,Mining +339912,Mining,Mining +339909,Mining,Mining +339909,Municipalities,Municipalities +339906,Municipalities,Municipalities +339909,Regional Development,Regional Development +339907,Regional Development,Regional Development +339908,Transportation,Transportation +337849,Employment and Training,Employment and Training +544469,Immigration,Immigration +544466,Immigration,Immigration +337853,Immigration,Immigration +337851,Immigration,Immigration +544481,Immigration,Immigration +544480,Immigration,Immigration +544478,Immigration,Immigration +544477,Immigration,Immigration +544476,Immigration,Immigration +544474,Immigration,Immigration +544473,Immigration,Immigration +544472,Immigration,Immigration +544471,Immigration,Immigration +337852,Economic Development,Economic Development +454550,Budget,Budget +447711,Budget,Budget +372586,Budget,Budget +372584,Budget,Budget +372577,Budget,Budget +372575,Budget,Budget +372570,Budget,Budget +372557,Budget,Budget +372552,Budget,Budget +372534,Budget,Budget +344260,Budget,Budget +344259,Budget,Budget +341638,Budget,Budget +341633,Budget,Budget +341630,Budget,Budget +341629,Budget,Budget +338355,Budget,Budget +443546,Budget,Budget +441931,Budget,Budget +441929,Budget,Budget +441926,Budget,Budget +437809,Budget,Budget +437801,Budget,Budget +437799,Budget,Budget +437795,Budget,Budget +437793,Budget,Budget +437788,Budget,Budget +435035,Budget,Budget +435034,Budget,Budget +435025,Budget,Budget +435021,Budget,Budget +435011,Budget,Budget +432060,Budget,Budget +432059,Budget,Budget +430334,Budget,Budget +430333,Budget,Budget +430332,Budget,Budget +430331,Budget,Budget +430218,Budget,Budget +430105,Budget,Budget +430104,Budget,Budget +428705,Budget,Budget +426622,Budget,Budget +417876,Budget,Budget +416349,Budget,Budget +416347,Budget,Budget +416345,Budget,Budget +410220,Budget,Budget +410218,Budget,Budget +410215,Budget,Budget +405472,Budget,Budget +391204,Budget,Budget +391197,Budget,Budget +391180,Budget,Budget +512703,Budget,Budget +512697,Budget,Budget +508855,Budget,Budget +470797,Budget,Budget +470787,Budget,Budget +470780,Budget,Budget +468659,Budget,Budget +468658,Budget,Budget +464573,Budget,Budget +462812,Budget,Budget +462805,Budget,Budget +462178,Budget,Budget +462174,Budget,Budget +462161,Budget,Budget +461659,Budget,Budget +461651,Budget,Budget +461644,Budget,Budget +461638,Budget,Budget +461029,Budget,Budget +461026,Budget,Budget +461021,Budget,Budget +460562,Budget,Budget +460561,Budget,Budget +458378,Budget,Budget +457275,Budget,Budget +457273,Budget,Budget +457163,Budget,Budget +456880,Budget,Budget +456879,Budget,Budget +456870,Budget,Budget +340194,Taxation and Finance,Taxation and Finance +340192,Taxation and Finance,Taxation and Finance +340197,Taxation and Finance,Taxation and Finance +340196,Taxation and Finance,Taxation and Finance +340194,Transportation,Transportation +340192,Transportation,Transportation +340197,Transportation,Transportation +340196,Transportation,Transportation +528769,Fisheries,Fisheries +526368,Fisheries,Fisheries +347150,Fisheries,Fisheries +338455,Fisheries,Fisheries +479794,Fisheries,Fisheries +477779,Fisheries,Fisheries +475414,Fisheries,Fisheries +462766,Fisheries,Fisheries +461652,Fisheries,Fisheries +461648,Fisheries,Fisheries +460599,Fisheries,Fisheries +460163,Fisheries,Fisheries +459577,Fisheries,Fisheries +459576,Fisheries,Fisheries +439742,Official Languages,Official Languages +439208,Official Languages,Official Languages +335941,Official Languages,Official Languages +380636,Official Languages,Official Languages +376949,Official Languages,Official Languages +423506,Official Languages,Official Languages +423505,Official Languages,Official Languages +419304,Official Languages,Official Languages +419303,Official Languages,Official Languages +418100,Official Languages,Official Languages +415050,Official Languages,Official Languages +415049,Official Languages,Official Languages +415047,Official Languages,Official Languages +413265,Official Languages,Official Languages +413264,Official Languages,Official Languages +413256,Official Languages,Official Languages +409026,Official Languages,Official Languages +408987,Official Languages,Official Languages +404622,Official Languages,Official Languages +404621,Official Languages,Official Languages +403878,Official Languages,Official Languages +403875,Official Languages,Official Languages +400358,Official Languages,Official Languages +396072,Official Languages,Official Languages +390633,Official Languages,Official Languages +390631,Official Languages,Official Languages +387687,Official Languages,Official Languages +387686,Official Languages,Official Languages +387684,Official Languages,Official Languages +385034,Official Languages,Official Languages +385032,Official Languages,Official Languages +385031,Official Languages,Official Languages +385030,Official Languages,Official Languages +541718,Official Languages,Official Languages +537773,Official Languages,Official Languages +535530,Official Languages,Official Languages +535510,Official Languages,Official Languages +535505,Official Languages,Official Languages +535451,Official Languages,Official Languages +535448,Official Languages,Official Languages +532564,Official Languages,Official Languages +531489,Official Languages,Official Languages +531477,Official Languages,Official Languages +528771,Official Languages,Official Languages +522946,Official Languages,Official Languages +522933,Official Languages,Official Languages +519625,Official Languages,Official Languages +519614,Official Languages,Official Languages +518096,Official Languages,Official Languages +518088,Official Languages,Official Languages +510876,Official Languages,Official Languages +508584,Official Languages,Official Languages +508582,Official Languages,Official Languages +508569,Official Languages,Official Languages +505031,Official Languages,Official Languages +493510,Official Languages,Official Languages +471115,Official Languages,Official Languages +467385,Official Languages,Official Languages +467375,Official Languages,Official Languages +464377,Official Languages,Official Languages +464368,Official Languages,Official Languages +461193,Official Languages,Official Languages +460190,Official Languages,Official Languages +455751,Official Languages,Official Languages +338635,Budget,Budget +416218,Privacy and Access to Information,Privacy and Access to Information +545079,Privacy and Access to Information,Privacy and Access to Information +536283,Privacy and Access to Information,Privacy and Access to Information +536282,Privacy and Access to Information,Privacy and Access to Information +530938,Privacy and Access to Information,Privacy and Access to Information +530936,Privacy and Access to Information,Privacy and Access to Information +530935,Privacy and Access to Information,Privacy and Access to Information +530934,Privacy and Access to Information,Privacy and Access to Information +520755,Privacy and Access to Information,Privacy and Access to Information +516451,Privacy and Access to Information,Privacy and Access to Information +338802,Government Procurement,Government Procurement +338752,Government Procurement,Government Procurement +338807,Government Procurement,Government Procurement +338806,Government Procurement,Government Procurement +338805,Government Procurement,Government Procurement +338804,Government Procurement,Government Procurement +415690,Transportation,Transportation +401750,Transportation,Transportation +399903,Transportation,Transportation +373266,Transportation,Transportation +373265,Transportation,Transportation +373258,Transportation,Transportation +373256,Transportation,Transportation +348252,Transportation,Transportation +341084,Transportation,Transportation +461320,Transportation,Transportation +444140,Transportation,Transportation +444139,Transportation,Transportation +443177,Transportation,Transportation +434072,Transportation,Transportation +431048,Transportation,Transportation +430301,Transportation,Transportation +415702,Transportation,Transportation +388793,Employment and Training,Employment and Training +388787,Employment and Training,Employment and Training +338977,Employment and Training,Employment and Training +388805,Employment and Training,Employment and Training +388804,Employment and Training,Employment and Training +388801,Employment and Training,Employment and Training +353766,Education,Education +339036,Education,Education +353766,Health,Health +339036,Health,Health +353624,Education,Education +339020,Education,Education +353624,Health,Health +339020,Health,Health +339034,Education,Education +377405,Education,Education +339034,Health,Health +377405,Health,Health +339019,Education,Education +339019,Health,Health +506580,Education,Education +506579,Education,Education +353601,Education,Education +339027,Education,Education +339023,Education,Education +436178,Education,Education +427471,Education,Education +427470,Education,Education +377414,Education,Education +506580,Health,Health +506579,Health,Health +353601,Health,Health +339027,Health,Health +339023,Health,Health +452998,Health,Health +436178,Health,Health +427471,Health,Health +427470,Health,Health +377414,Health,Health +339033,Climate,Climate +340194,International Trade,International Trade +340192,International Trade,International Trade +340197,International Trade,International Trade +340196,International Trade,International Trade +404362,Economic Development,Economic Development +349478,Transportation,Transportation +347332,Transportation,Transportation +353846,Transportation,Transportation +351523,Transportation,Transportation +351520,Transportation,Transportation +351518,Transportation,Transportation +339105,Education,Education +397183,Education,Education +377848,Education,Education +339105,Health,Health +397183,Health,Health +377848,Health,Health +349427,Health,Health +350918,Mining,Mining +339133,Mining,Mining +352381,Health,Health +342327,Health,Health +352381,Research and Development,Research and Development +342327,Research and Development,Research and Development +349800,Security,Security +344783,Security,Security +339131,Security,Security +349802,Security,Security +342230,Mining,Mining +339134,Mining,Mining +362564,Mining,Mining +350924,Mining,Mining +350923,Mining,Mining +350922,Mining,Mining +350920,Mining,Mining +350919,Mining,Mining +350917,Mining,Mining +342241,Mining,Mining +342238,Mining,Mining +342237,Mining,Mining +342236,Mining,Mining +342235,Mining,Mining +342229,Mining,Mining +339135,Mining,Mining +350925,Mining,Mining +350921,Mining,Mining +342239,Mining,Mining +341757,Infrastructure,Infrastructure +341755,Infrastructure,Infrastructure +353753,Education,Education +339211,Education,Education +339211,Health,Health +384448,Health,Health +341768,Health,Health +341765,Health,Health +341785,Health,Health +341779,Health,Health +341777,Health,Health +341775,Health,Health +341772,Health,Health +339222,Agriculture,Agriculture +339223,International Trade,International Trade +339222,Transportation,Transportation +342034,Health,Health +342026,Health,Health +348801,Health,Health +348533,Health,Health +347817,Health,Health +347742,Health,Health +346747,Health,Health +343928,Health,Health +343177,Health,Health +342766,Health,Health +342765,Health,Health +388807,Employment and Training,Employment and Training +388806,Employment and Training,Employment and Training +388803,Employment and Training,Employment and Training +388802,Employment and Training,Employment and Training +388800,Employment and Training,Employment and Training +388798,Employment and Training,Employment and Training +388797,Employment and Training,Employment and Training +388795,Employment and Training,Employment and Training +388792,Employment and Training,Employment and Training +388791,Employment and Training,Employment and Training +343572,Employment and Training,Employment and Training +352462,Research and Development,Research and Development +352382,Research and Development,Research and Development +352462,Health,Health +352382,Health,Health +377520,Health,Health +340394,Health,Health +339985,Health,Health +355060,Health,Health +355043,Health,Health +341999,Health,Health +341996,Health,Health +341122,Health,Health +341120,Health,Health +355043,Consumer Issues,Consumer Issues +340395,Research and Development,Research and Development +340394,Research and Development,Research and Development +350217,Research and Development,Research and Development +341996,Research and Development,Research and Development +341122,Research and Development,Research and Development +350067,Agriculture,Agriculture +350066,Agriculture,Agriculture +420516,Agriculture,Agriculture +420515,Agriculture,Agriculture +420514,Agriculture,Agriculture +396848,Agriculture,Agriculture +396841,Agriculture,Agriculture +396838,Agriculture,Agriculture +372615,Agriculture,Agriculture +370779,Agriculture,Agriculture +353466,Economic Development,Economic Development +353462,Economic Development,Economic Development +375942,Economic Development,Economic Development +420515,Health,Health +420514,Health,Health +350067,Internal Trade,Internal Trade +350066,Internal Trade,Internal Trade +370779,Internal Trade,Internal Trade +344397,Health,Health +344163,Health,Health +344162,Health,Health +344160,Health,Health +350198,Agriculture,Agriculture +350197,Agriculture,Agriculture +378499,Agriculture,Agriculture +378497,Agriculture,Agriculture +374095,Agriculture,Agriculture +374094,Agriculture,Agriculture +374093,Agriculture,Agriculture +368477,Agriculture,Agriculture +364624,Agriculture,Agriculture +355201,Agriculture,Agriculture +355200,Agriculture,Agriculture +350200,Agriculture,Agriculture +378497,Transportation,Transportation +368477,Transportation,Transportation +347638,Agriculture,Agriculture +347637,Agriculture,Agriculture +339627,Agriculture,Agriculture +339491,Agriculture,Agriculture +339476,Agriculture,Agriculture +339475,Agriculture,Agriculture +339474,Agriculture,Agriculture +339473,Agriculture,Agriculture +339472,Agriculture,Agriculture +339471,Agriculture,Agriculture +348746,Agriculture,Agriculture +348745,Agriculture,Agriculture +348744,Agriculture,Agriculture +348743,Agriculture,Agriculture +348151,Agriculture,Agriculture +347644,Agriculture,Agriculture +347641,Agriculture,Agriculture +348264,Agriculture,Agriculture +348264,International Trade,International Trade +356865,Employment and Training,Emploi et formation +356863,Employment and Training,Emploi et formation +351693,Employment and Training,Emploi et formation +350966,Employment and Training,Emploi et formation +398097,Employment and Training,Emploi et formation +368214,Employment and Training,Emploi et formation +366066,Employment and Training,Emploi et formation +364203,Employment and Training,Emploi et formation +359285,Employment and Training,Emploi et formation +359284,Employment and Training,Emploi et formation +359283,Employment and Training,Emploi et formation +359282,Employment and Training,Emploi et formation +351693,Immigration,Immigration +350966,Immigration,Immigration +398097,Immigration,Immigration +368214,Immigration,Immigration +366066,Immigration,Immigration +364203,Immigration,Immigration +359285,Immigration,Immigration +359284,Immigration,Immigration +359283,Immigration,Immigration +359282,Immigration,Immigration +356866,Immigration,Immigration +356865,Immigration,Immigration +356863,Immigration,Immigration +353164,Immigration,Immigration +368214,Labour,Travail +366066,Labour,Travail +359285,Labour,Travail +359284,Labour,Travail +359283,Labour,Travail +359282,Labour,Travail +356866,Labour,Travail +356865,Labour,Travail +356863,Labour,Travail +353164,Labour,Travail +353163,Labour,Travail +351693,Labour,Travail +350966,Labour,Travail +375825,Environment,Environment +372658,Environment,Environment +368709,Environment,Environment +403769,Environment,Environment +393902,Environment,Environment +393901,Environment,Environment +391773,Environment,Environment +391772,Environment,Environment +387407,Environment,Environment +387405,Environment,Environment +385119,Environment,Environment +385115,Environment,Environment +385108,Environment,Environment +385107,Environment,Environment +382722,Environment,Environment +382721,Environment,Environment +382719,Environment,Environment +382718,Environment,Environment +382717,Environment,Environment +382716,Environment,Environment +382714,Environment,Environment +382713,Environment,Environment +381874,Environment,Environment +380444,Environment,Environment +378784,Environment,Environment +378783,Environment,Environment +377504,Environment,Environment +377184,Environment,Environment +377183,Environment,Environment +377182,Environment,Environment +377147,Environment,Environment +375828,Environment,Environment +356216,Agriculture,Agriculture +356215,Agriculture,Agriculture +344857,Agriculture,Agriculture +402925,Agriculture,Agriculture +385675,Agriculture,Agriculture +385656,Agriculture,Agriculture +380620,Agriculture,Agriculture +379520,Agriculture,Agriculture +379519,Agriculture,Agriculture +379518,Agriculture,Agriculture +379517,Agriculture,Agriculture +375449,Agriculture,Agriculture +375329,Agriculture,Agriculture +375313,Agriculture,Agriculture +373323,Agriculture,Agriculture +373322,Agriculture,Agriculture +373322,International Trade,International Trade +344857,International Trade,International Trade +385675,International Trade,International Trade +380620,International Trade,International Trade +379520,International Trade,International Trade +379519,International Trade,International Trade +379518,International Trade,International Trade +379517,International Trade,International Trade +375449,International Trade,International Trade +436171,Education,Education +427223,Education,Education +401466,Education,Education +377346,Education,Education +353580,Education,Education +427223,Health,Health +401466,Health,Health +377346,Health,Health +353580,Health,Health +353579,Health,Health +452994,Health,Health +537465,Employment and Training,Employment and Training +537451,Employment and Training,Employment and Training +537518,Employment and Training,Employment and Training +537517,Employment and Training,Employment and Training +537515,Employment and Training,Employment and Training +537512,Employment and Training,Employment and Training +537510,Employment and Training,Employment and Training +537508,Employment and Training,Employment and Training +537507,Employment and Training,Employment and Training +537506,Employment and Training,Employment and Training +537505,Employment and Training,Employment and Training +537503,Employment and Training,Employment and Training +537502,Employment and Training,Employment and Training +537500,Employment and Training,Employment and Training +537498,Employment and Training,Employment and Training +537497,Employment and Training,Employment and Training +537495,Employment and Training,Employment and Training +537491,Employment and Training,Employment and Training +537465,Research and Development,Research and Development +537451,Research and Development,Research and Development +544094,Research and Development,Research and Development +537518,Research and Development,Research and Development +537512,Research and Development,Research and Development +537510,Research and Development,Research and Development +537495,Research and Development,Research and Development +537491,Research and Development,Research and Development +341764,Industry,Industry +342200,Energy,Energy +342197,Energy,Energy +519459,Transportation,Transports +496496,Transportation,Transports +487569,Government Procurement,Government Procurement +476464,Government Procurement,Government Procurement +406480,Government Procurement,Government Procurement +398532,Government Procurement,Government Procurement +389196,Government Procurement,Government Procurement +381581,Government Procurement,Government Procurement +376137,Government Procurement,Government Procurement +370979,Government Procurement,Government Procurement +361884,Government Procurement,Government Procurement +361003,Government Procurement,Government Procurement +359209,Government Procurement,Government Procurement +357916,Government Procurement,Government Procurement +355785,Government Procurement,Government Procurement +355641,Government Procurement,Government Procurement +348085,Government Procurement,Government Procurement +339933,Government Procurement,Government Procurement +464099,Government Procurement,Government Procurement +463042,Government Procurement,Government Procurement +463039,Government Procurement,Government Procurement +458372,Government Procurement,Government Procurement +440697,Government Procurement,Government Procurement +439497,Government Procurement,Government Procurement +439494,Government Procurement,Government Procurement +432871,Government Procurement,Government Procurement +431610,Government Procurement,Government Procurement +426381,Government Procurement,Government Procurement +543592,Government Procurement,Government Procurement +534650,Government Procurement,Government Procurement +534642,Government Procurement,Government Procurement +343202,Budget,Budget +342222,Budget,Budget +343202,Health,Health +342222,Health,Health +456539,Education,Éducation +456530,Education,Éducation +424493,Education,Éducation +413387,Education,Éducation +412933,Education,Éducation +386223,Education,Éducation +386222,Education,Éducation +386220,Education,Éducation +500246,Education,Éducation +386220,Research and Development,Recherche et développement +386219,Research and Development,Recherche et développement +456543,Research and Development,Recherche et développement +456539,Research and Development,Recherche et développement +456530,Research and Development,Recherche et développement +424493,Research and Development,Recherche et développement +413387,Research and Development,Recherche et développement +412933,Research and Development,Recherche et développement +386222,Research and Development,Recherche et développement +386290,Budget,Budget +386289,Budget,Budget +386288,Budget,Budget +386208,Budget,Budget +386207,Budget,Budget +386206,Budget,Budget +386205,Budget,Budget +386204,Budget,Budget +336633,Budget,Budget +336633,Consumer Issues,Consumer Issues +336633,International Trade,International Trade +336633,Industry,Industry +336633,Taxation and Finance,Taxation and Finance +336649,Consumer Issues,Consumer Issues +336649,Industry,Industry +336649,Taxation and Finance,Taxation and Finance +353024,Industry,Industry +353024,Infrastructure,Infrastructure +353024,International Trade,International Trade +353023,Transportation,Transportation +357038,Labour,Labour +357038,Economic Development,Economic Development +357038,Regional Development,Regional Development +357039,Taxation and Finance,Taxation and Finance +357038,Health,Health +357038,Housing,Housing +339018,Labour,Labour +337115,Labour,Labour +344424,International Trade,International Trade +344423,Transportation,Transportation +344424,Infrastructure,Infrastructure +370240,Budget,Budget +343658,Defence,Defence +341693,Economic Development,Economic Development +350405,Environment,Environment +342041,International Trade,International Trade +341693,Mining,Mining +341693,Research and Development,Research and Development +374534,Agriculture,Agriculture +374534,Consumer Issues,Consumer Issues +374534,Health,Health +343968,Defence,Defence +352071,Economic Development,Economic Development +352071,Industry,Industry +352071,Infrastructure,Infrastructure +341181,Security,Security +389543,International Relations,International Relations +436927,Economic Development,Economic Development +342362,Industry,Industry +342360,Intellectual Property,Intellectual Property +342360,International Relations,International Relations +342360,Research and Development,Research and Development +531832,Research and Development,Research and Development +340861,Environment,Environment +349683,International Trade,International Trade +475964,Transportation,Transportation +342070,Industry,Industry +526746,Budget,Budget +374518,Agriculture,Agriculture +380375,Consumer Issues,Consumer Issues +343420,Health,Health +340235,Energy,Energy +337217,Energy,Energy +398506,Employment and Training,Employment and Training +340220,Economic Development,Economic Development +353494,Energy,Energy +351040,International Trade,International Trade +340898,Employment and Training,Employment and Training +341046,Employment and Training,Employment and Training +445340,Health,Health +337710,Taxation and Finance,Taxation and Finance +337710,Industry,Industry +337710,International Trade,International Trade +355939,Budget,Budget +355939,Environment,Environment +349139,Health,Health +338334,Intellectual Property,Intellectual Property +337529,Agriculture,Agriculture +338669,Defence,Defence +338669,Industry,Industry +339106,Education,Education +339106,Health,Health +338126,Education,Education +401454,Health,Health +337990,Infrastructure,Infrastructure +344799,Intellectual Property,Intellectual Property +344799,Privacy and Access to Information,Privacy and Access to Information +376963,Infrastructure,Infrastructure +384732,International Relations,International Relations +376961,International Trade,International Trade +446303,Transportation,Transportation +340028,Economic Development,Economic Development +340028,Small Business,Small Business +344005,Economic Development,Développement économique +343850,Employment and Training,Emploi et formation +350840,Transportation,Transports +339909,Environment,Environment +339909,Health,Health +339912,International Relations,International Relations +339909,Labour,Labour +339908,Mining,Mining +339912,Municipalities,Municipalities +339912,Regional Development,Regional Development +339912,Transportation,Transportation +353420,Employment and Training,Employment and Training +544470,Immigration,Immigration +353420,Economic Development,Economic Development +338333,Taxation and Finance,Taxation and Finance +338351,Budget,Budget +456869,Budget,Budget +338356,Budget,Budget +340195,Taxation and Finance,Taxation and Finance +340195,Transportation,Transportation +344258,Taxation and Finance,Taxation and Finance +445434,Fisheries,Fisheries +338487,Government Procurement,Government Procurement +442114,Official Languages,Official Languages +341066,Government Procurement,Government Procurement +338592,Justice and Law Enforcement,Justice and Law Enforcement +338306,International Trade,International Trade +338305,International Trade,International Trade +338641,Budget,Budget +338655,Budget,Budget +494104,Privacy and Access to Information,Privacy and Access to Information +338709,Employment and Training,Employment and Training +338745,Infrastructure,Infrastructure +338749,Infrastructure,Infrastructure +338754,Industry,Industry +338757,Budget,Budget +338757,Industry,Industry +338764,Budget,Budget +338764,Industry,Industry +338766,Budget,Budget +338766,Industry,Industry +338768,Industry,Industry +338768,Budget,Budget +338769,Industry,Industry +338783,Economic Development,Economic Development +338803,Government Procurement,Government Procurement +415693,Transportation,Transportation +338973,Research and Development,Research and Development +388799,Employment and Training,Employment and Training +338990,Taxation and Finance,Taxation and Finance +338991,Taxation and Finance,Taxation and Finance +338993,Environment,Environment +365083,Regional Development,Regional Development +377348,Education,Education +377348,Health,Health +377457,Education,Education +377457,Health,Health +339021,Education,Education +339021,Health,Health +353599,Education,Education +353599,Health,Health +353598,Education,Education +384446,Health,Health +506581,Education,Education +506581,Health,Health +339033,Budget,Budget +377942,Climate,Climate +340195,International Trade,International Trade +339092,Economic Development,Economic Development +351517,Transportation,Transportation +353757,Education,Education +353757,Health,Health +349433,Health,Health +362565,Mining,Mining +352464,Health,Health +352464,Research and Development,Research and Development +349801,Security,Security +342233,Mining,Mining +342232,Mining,Mining +457507,Health,Health +341759,Infrastructure,Infrastructure +384448,Education,Education +353753,Health,Health +341769,Health,Health +339223,Agriculture,Agriculture +339222,International Trade,International Trade +339223,Transportation,Transportation +342038,Health,Health +339289,Employment and Training,Employment and Training +377520,Research and Development,Research and Development +360423,Health,Health +377520,Consumer Issues,Consumer Issues +340395,Health,Health +408313,Agriculture,Agriculture +355060,Consumer Issues,Consumer Issues +341120,Research and Development,Research and Development +350068,Agriculture,Agriculture +339413,Economic Development,Economic Development +375938,Economic Development,Economic Development +340697,Fisheries,Fisheries +339595,International Relations,International Relations +339595,Justice and Law Enforcement,Justice and Law Enforcement +420516,Health,Health +350068,Internal Trade,Internal Trade +344398,Health,Health +350199,Agriculture,Agriculture +378499,Transportation,Transportation +347639,Agriculture,Agriculture +348265,Agriculture,Agriculture +348265,International Trade,International Trade +356866,Employment and Training,Emploi et formation +353163,Immigration,Immigration +398097,Labour,Travail +375826,Environment,Environment +373321,Agriculture,Agriculture +373323,International Trade,International Trade +353598,Health,Health +384446,Education,Education +353579,Education,Education +436171,Health,Health +343889,Tourism,Tourism +537487,Employment and Training,Employment and Training +537487,Environment,Environment +537487,Research and Development,Research and Development +343397,Industry,Industry +341764,Taxation and Finance,Taxation and Finance +386078,Energy,Energy +342200,Financial Institutions,Financial Institutions +342201,Energy,Energy +342201,Financial Institutions,Financial Institutions +339822,Energy,Énergie +339822,Mining,Mines +339822,Tourism,Tourisme +339822,Transportation,Transports +340193,Economic Development,Développement économique +361282,Economic Development,Développement économique +405775,Transportation,Transports +519696,Government Procurement,Government Procurement +339985,Defence,Defence +344279,Budget,Budget +344279,Health,Health +456543,Education,Éducation +386221,Research and Development,Recherche et développement +386291,Budget,Budget +404610,Financial Institutions,Financial Institutions +439799,Small Business,Small Business +386291,Taxation and Finance,Taxation and Finance +479525,Economic Development,Economic Development +343443,Housing,Housing +343443,Taxation and Finance,Taxation and Finance +350297,Industry,Industry +347740,Consumer Issues,Consumer Issues +387699,Agriculture,Agriculture +397147,Transportation,Transportation +340470,Budget,Budget +340426,Industry,Industry +340449,Research and Development,Research and Development +496457,Agriculture,Agriculture +433702,International Trade,International Trade +343303,Education,Education +343304,Infrastructure,Infrastructure +381750,Government Procurement,Government Procurement +370163,Immigration,Immigration +392041,Official Languages,Official Languages +389548,Budget,Budget +340703,Budget,Budget +373059,Infrastructure,Infrastructure +448846,Budget,Budget +439799,Budget,Budget +388666,Budget,Budget +404609,Financial Institutions,Financial Institutions +399655,Financial Institutions,Financial Institutions +393109,Financial Institutions,Financial Institutions +393108,Financial Institutions,Financial Institutions +393107,Financial Institutions,Financial Institutions +391918,Financial Institutions,Financial Institutions +388666,Financial Institutions,Financial Institutions +386291,Financial Institutions,Financial Institutions +386290,Financial Institutions,Financial Institutions +386289,Financial Institutions,Financial Institutions +386288,Financial Institutions,Financial Institutions +386208,Financial Institutions,Financial Institutions +386207,Financial Institutions,Financial Institutions +386206,Financial Institutions,Financial Institutions +386205,Financial Institutions,Financial Institutions +386204,Financial Institutions,Financial Institutions +380754,Financial Institutions,Financial Institutions +380404,Financial Institutions,Financial Institutions +375061,Financial Institutions,Financial Institutions +366003,Financial Institutions,Financial Institutions +353701,Financial Institutions,Financial Institutions +469539,Financial Institutions,Financial Institutions +469536,Financial Institutions,Financial Institutions +469535,Financial Institutions,Financial Institutions +448846,Financial Institutions,Financial Institutions +439799,Financial Institutions,Financial Institutions +427445,Financial Institutions,Financial Institutions +427435,Financial Institutions,Financial Institutions +420186,Financial Institutions,Financial Institutions +414363,Financial Institutions,Financial Institutions +411537,Financial Institutions,Financial Institutions +411521,Financial Institutions,Financial Institutions +411313,Financial Institutions,Financial Institutions +411312,Financial Institutions,Financial Institutions +411311,Financial Institutions,Financial Institutions +411310,Financial Institutions,Financial Institutions +411309,Financial Institutions,Financial Institutions +410910,Financial Institutions,Financial Institutions +410908,Financial Institutions,Financial Institutions +410907,Financial Institutions,Financial Institutions +410905,Financial Institutions,Financial Institutions +410901,Financial Institutions,Financial Institutions +410898,Financial Institutions,Financial Institutions +410890,Financial Institutions,Financial Institutions +407089,Financial Institutions,Financial Institutions +406029,Financial Institutions,Financial Institutions +406028,Financial Institutions,Financial Institutions +406027,Financial Institutions,Financial Institutions +406026,Financial Institutions,Financial Institutions +404652,Financial Institutions,Financial Institutions +404616,Financial Institutions,Financial Institutions +404615,Financial Institutions,Financial Institutions +404614,Financial Institutions,Financial Institutions +404613,Financial Institutions,Financial Institutions +404612,Financial Institutions,Financial Institutions +404611,Financial Institutions,Financial Institutions +386290,Taxation and Finance,Taxation and Finance +386289,Taxation and Finance,Taxation and Finance +386288,Taxation and Finance,Taxation and Finance +386208,Taxation and Finance,Taxation and Finance +386207,Taxation and Finance,Taxation and Finance +386206,Taxation and Finance,Taxation and Finance +386205,Taxation and Finance,Taxation and Finance +386204,Taxation and Finance,Taxation and Finance +382320,Taxation and Finance,Taxation and Finance +381973,Taxation and Finance,Taxation and Finance +381972,Taxation and Finance,Taxation and Finance +380754,Taxation and Finance,Taxation and Finance +380404,Taxation and Finance,Taxation and Finance +375061,Taxation and Finance,Taxation and Finance +370471,Taxation and Finance,Taxation and Finance +366003,Taxation and Finance,Taxation and Finance +353701,Taxation and Finance,Taxation and Finance +469539,Taxation and Finance,Taxation and Finance +469536,Taxation and Finance,Taxation and Finance +469535,Taxation and Finance,Taxation and Finance +439799,Taxation and Finance,Taxation and Finance +393109,Taxation and Finance,Taxation and Finance +393108,Taxation and Finance,Taxation and Finance +393107,Taxation and Finance,Taxation and Finance +391918,Taxation and Finance,Taxation and Finance +479488,Economic Development,Economic Development +479470,Economic Development,Economic Development +381458,Economic Development,Economic Development +381457,Economic Development,Economic Development +380580,Economic Development,Economic Development +380573,Economic Development,Economic Development +380572,Economic Development,Economic Development +380571,Economic Development,Economic Development +376684,Economic Development,Economic Development +359561,Economic Development,Economic Development +355197,Economic Development,Economic Development +355193,Economic Development,Economic Development +355192,Economic Development,Economic Development +355191,Economic Development,Economic Development +355189,Economic Development,Economic Development +353243,Economic Development,Economic Development +340214,Economic Development,Economic Development +462678,Economic Development,Economic Development +462677,Economic Development,Economic Development +462675,Economic Development,Economic Development +462674,Economic Development,Economic Development +462673,Economic Development,Economic Development +459913,Economic Development,Economic Development +448747,Economic Development,Economic Development +448552,Economic Development,Economic Development +540724,Economic Development,Economic Development +513437,Economic Development,Economic Development +513429,Economic Development,Economic Development +513428,Economic Development,Economic Development +510780,Economic Development,Economic Development +510776,Economic Development,Economic Development +510773,Economic Development,Economic Development +508829,Economic Development,Economic Development +502635,Economic Development,Economic Development +502633,Economic Development,Economic Development +502631,Economic Development,Economic Development +502629,Economic Development,Economic Development +499257,Economic Development,Economic Development +499252,Economic Development,Economic Development +499249,Economic Development,Economic Development +499230,Economic Development,Economic Development +499210,Economic Development,Economic Development +495392,Economic Development,Economic Development +495391,Economic Development,Economic Development +495386,Economic Development,Economic Development +495381,Economic Development,Economic Development +495378,Economic Development,Economic Development +493511,Economic Development,Economic Development +493508,Economic Development,Economic Development +490584,Economic Development,Economic Development +490572,Economic Development,Economic Development +490557,Economic Development,Economic Development +490551,Economic Development,Economic Development +490546,Economic Development,Economic Development +490536,Economic Development,Economic Development +490532,Economic Development,Economic Development +484438,Economic Development,Economic Development +482309,Economic Development,Economic Development +482296,Economic Development,Economic Development +479545,Economic Development,Economic Development +479538,Economic Development,Economic Development +479532,Economic Development,Economic Development +479530,Economic Development,Economic Development +479529,Economic Development,Economic Development +479527,Economic Development,Economic Development +378610,Agriculture,Agriculture +378609,Agriculture,Agriculture +374951,Agriculture,Agriculture +374949,Agriculture,Agriculture +374948,Agriculture,Agriculture +369785,Agriculture,Agriculture +364878,Agriculture,Agriculture +355408,Agriculture,Agriculture +355406,Agriculture,Agriculture +350541,Agriculture,Agriculture +350540,Agriculture,Agriculture +350538,Agriculture,Agriculture +350536,Agriculture,Agriculture +405720,Agriculture,Agriculture +405712,Agriculture,Agriculture +405701,Agriculture,Agriculture +392892,Agriculture,Agriculture +392891,Agriculture,Agriculture +387706,Agriculture,Agriculture +387704,Agriculture,Agriculture +387700,Agriculture,Agriculture +378610,Transportation,Transportation +378609,Transportation,Transportation +369785,Transportation,Transportation +405720,Transportation,Transportation +405712,Transportation,Transportation +397153,Transportation,Transportation +397150,Transportation,Transportation +340468,Budget,Budget +340451,Budget,Budget +349578,Budget,Budget +349577,Budget,Budget +344519,Budget,Budget +343809,Budget,Budget +340544,Budget,Budget +340480,Budget,Budget +340474,Budget,Budget +340472,Budget,Budget +433702,Agriculture,Agriculture +393743,Agriculture,Agriculture +523487,Agriculture,Agriculture +496459,Agriculture,Agriculture +496458,Agriculture,Agriculture +523487,International Trade,International Trade +393743,International Trade,International Trade +496459,International Trade,International Trade +496458,International Trade,International Trade +496457,International Trade,International Trade +343303,Infrastructure,Infrastructure +370161,Immigration,Immigration +364202,Immigration,Immigration +389108,Immigration,Immigration +384359,Immigration,Immigration +370165,Immigration,Immigration +370164,Immigration,Immigration +389546,Budget,Budget +389540,Budget,Budget +340694,Budget,Budget +392248,Budget,Budget +392247,Budget,Budget +392249,Budget,Budget +389544,Budget,Budget +420200,Infrastructure,Infrastructure +409252,Infrastructure,Infrastructure +381738,Infrastructure,Infrastructure +349086,Employment and Training,Employment and Training +349082,Employment and Training,Employment and Training +349116,Employment and Training,Employment and Training +349107,Employment and Training,Employment and Training +349106,Employment and Training,Employment and Training +349104,Employment and Training,Employment and Training +349103,Employment and Training,Employment and Training +349102,Employment and Training,Employment and Training +349100,Employment and Training,Employment and Training +349099,Employment and Training,Employment and Training +349097,Employment and Training,Employment and Training +349095,Employment and Training,Employment and Training +349107,Housing,Housing +349103,Housing,Housing +349086,Municipalities,Municipalities +349082,Municipalities,Municipalities +349116,Municipalities,Municipalities +349107,Municipalities,Municipalities +349106,Municipalities,Municipalities +349104,Municipalities,Municipalities +349103,Municipalities,Municipalities +349102,Municipalities,Municipalities +349100,Municipalities,Municipalities +349099,Municipalities,Municipalities +349097,Municipalities,Municipalities +349095,Municipalities,Municipalities +349086,Transportation,Transportation +349082,Transportation,Transportation +349116,Transportation,Transportation +349107,Transportation,Transportation +349106,Transportation,Transportation +349104,Transportation,Transportation +349103,Transportation,Transportation +349102,Transportation,Transportation +349100,Transportation,Transportation +349099,Transportation,Transportation +349097,Transportation,Transportation +349095,Transportation,Transportation +340855,Economic Development,Economic Development +341436,Economic Development,Economic Development +453063,Agriculture,Agriculture +451708,Agriculture,Agriculture +398019,Agriculture,Agriculture +397958,Agriculture,Agriculture +471575,Climate,Climate +471571,Climate,Climate +373029,Climate,Climate +369246,Climate,Climate +366947,Climate,Climate +366946,Climate,Climate +366945,Climate,Climate +366944,Climate,Climate +366943,Climate,Climate +366942,Climate,Climate +349298,Climate,Climate +341674,Climate,Climate +341664,Climate,Climate +464367,Climate,Climate +463691,Climate,Climate +463690,Climate,Climate +461820,Climate,Climate +461328,Climate,Climate +427051,Climate,Climate +427050,Climate,Climate +427049,Climate,Climate +427043,Climate,Climate +399715,Climate,Climate +399714,Climate,Climate +388745,Climate,Climate +373031,Climate,Climate +540199,Climate,Climate +526548,Climate,Climate +526543,Climate,Climate +520158,Climate,Climate +520157,Climate,Climate +520155,Climate,Climate +520152,Climate,Climate +502462,Climate,Climate +502459,Climate,Climate +502456,Climate,Climate +502450,Climate,Climate +502445,Climate,Climate +494617,Climate,Climate +491128,Climate,Climate +488859,Climate,Climate +486331,Climate,Climate +486047,Climate,Climate +485362,Climate,Climate +460244,Economic Development,Economic Development +341778,Employment and Training,Employment and Training +341767,Employment and Training,Employment and Training +365036,Employment and Training,Employment and Training +341770,Taxation and Finance,Taxation and Finance +347347,Energy,Energy +343399,Energy,Energy +341959,Defence,Defence +341952,Defence,Defence +367644,Defence,Defence +367643,Defence,Defence +367642,Defence,Defence +367641,Defence,Defence +359581,Defence,Defence +359544,Defence,Defence +359543,Defence,Defence +359542,Defence,Defence +342300,Government Procurement,Government Procurement +342297,Government Procurement,Government Procurement +344263,Environment,Environment +342298,Environment,Environment +349134,Mining,Mining +344263,Mining,Mining +350918,Regional Development,Regional Development +350917,Regional Development,Regional Development +342239,Regional Development,Regional Development +342238,Regional Development,Regional Development +342236,Regional Development,Regional Development +342235,Regional Development,Regional Development +342232,Regional Development,Regional Development +342230,Regional Development,Regional Development +342229,Regional Development,Regional Development +362565,Regional Development,Regional Development +362564,Regional Development,Regional Development +350925,Regional Development,Regional Development +350924,Regional Development,Regional Development +350923,Regional Development,Regional Development +350922,Regional Development,Regional Development +350921,Regional Development,Regional Development +350920,Regional Development,Regional Development +342230,Infrastructure,Infrastructure +342229,Infrastructure,Infrastructure +362565,Infrastructure,Infrastructure +362564,Infrastructure,Infrastructure +350925,Infrastructure,Infrastructure +350924,Infrastructure,Infrastructure +350923,Infrastructure,Infrastructure +350922,Infrastructure,Infrastructure +350921,Infrastructure,Infrastructure +350920,Infrastructure,Infrastructure +350919,Infrastructure,Infrastructure +350918,Infrastructure,Infrastructure +350917,Infrastructure,Infrastructure +342238,Infrastructure,Infrastructure +342236,Infrastructure,Infrastructure +342235,Infrastructure,Infrastructure +342233,Infrastructure,Infrastructure +362565,Economic Development,Economic Development +362564,Economic Development,Economic Development +350925,Economic Development,Economic Development +350924,Economic Development,Economic Development +350923,Economic Development,Economic Development +350922,Economic Development,Economic Development +350921,Economic Development,Economic Development +350920,Economic Development,Economic Development +350919,Economic Development,Economic Development +350918,Economic Development,Economic Development +350917,Economic Development,Economic Development +342241,Economic Development,Economic Development +342239,Economic Development,Economic Development +342238,Economic Development,Economic Development +342237,Economic Development,Economic Development +342236,Economic Development,Economic Development +342235,Economic Development,Economic Development +342233,Economic Development,Economic Development +342232,Economic Development,Economic Development +342230,Economic Development,Economic Development +342236,Employment and Training,Employment and Training +342232,Employment and Training,Employment and Training +362565,Employment and Training,Employment and Training +362564,Employment and Training,Employment and Training +350925,Employment and Training,Employment and Training +350924,Employment and Training,Employment and Training +350923,Employment and Training,Employment and Training +350922,Employment and Training,Employment and Training +350921,Employment and Training,Employment and Training +350920,Employment and Training,Employment and Training +350919,Employment and Training,Employment and Training +350918,Employment and Training,Employment and Training +350917,Employment and Training,Employment and Training +343746,Industry,Industry +343742,Industry,Industry +343741,Industry,Industry +343738,Industry,Industry +343737,Industry,Industry +343734,Industry,Industry +343737,International Trade,International Trade +343734,International Trade,International Trade +350611,International Trade,International Trade +343746,International Trade,International Trade +343742,International Trade,International Trade +343741,International Trade,International Trade +342283,Mining,Mining +342282,Mining,Mining +351018,Mining,Mining +351017,Mining,Mining +351010,Mining,Mining +351009,Mining,Mining +342271,Mining,Mining +342269,Mining,Mining +351004,Mining,Mining +342281,Mining,Mining +342277,Mining,Mining +342272,Mining,Mining +351014,Mining,Mining +351006,Mining,Mining +351006,Infrastructure,Infrastructure +351004,Infrastructure,Infrastructure +342283,Infrastructure,Infrastructure +342282,Infrastructure,Infrastructure +342279,Infrastructure,Infrastructure +342278,Infrastructure,Infrastructure +342277,Infrastructure,Infrastructure +342272,Infrastructure,Infrastructure +342271,Infrastructure,Infrastructure +342269,Infrastructure,Infrastructure +351018,Infrastructure,Infrastructure +351017,Infrastructure,Infrastructure +351014,Infrastructure,Infrastructure +351010,Infrastructure,Infrastructure +351009,Infrastructure,Infrastructure +351008,Regional Development,Regional Development +351006,Regional Development,Regional Development +351004,Regional Development,Regional Development +342283,Regional Development,Regional Development +342282,Regional Development,Regional Development +342281,Regional Development,Regional Development +342279,Regional Development,Regional Development +342278,Regional Development,Regional Development +342277,Regional Development,Regional Development +342272,Regional Development,Regional Development +342271,Regional Development,Regional Development +342269,Regional Development,Regional Development +351018,Regional Development,Regional Development +351017,Regional Development,Regional Development +351014,Regional Development,Regional Development +351010,Regional Development,Regional Development +342278,Employment and Training,Employment and Training +351018,Employment and Training,Employment and Training +351017,Employment and Training,Employment and Training +351014,Employment and Training,Employment and Training +351010,Employment and Training,Employment and Training +351009,Employment and Training,Employment and Training +351008,Employment and Training,Employment and Training +351006,Employment and Training,Employment and Training +351004,Employment and Training,Employment and Training +342271,Transportation,Transportation +342269,Transportation,Transportation +351018,Transportation,Transportation +351017,Transportation,Transportation +351014,Transportation,Transportation +351010,Transportation,Transportation +351009,Transportation,Transportation +351008,Transportation,Transportation +351006,Transportation,Transportation +351004,Transportation,Transportation +342283,Transportation,Transportation +342282,Transportation,Transportation +342281,Transportation,Transportation +342279,Transportation,Transportation +342278,Transportation,Transportation +342277,Transportation,Transportation +342272,Economic Development,Economic Development +342269,Economic Development,Economic Development +351018,Economic Development,Economic Development +351017,Economic Development,Economic Development +351014,Economic Development,Economic Development +351010,Economic Development,Economic Development +351009,Economic Development,Economic Development +351008,Economic Development,Economic Development +351006,Economic Development,Economic Development +351004,Economic Development,Economic Development +342283,Economic Development,Economic Development +342282,Economic Development,Economic Development +342281,Economic Development,Economic Development +342279,Economic Development,Economic Development +342278,Economic Development,Economic Development +343737,Energy,Energy +343734,Energy,Energy +379227,Energy,Energy +379198,Energy,Energy +379189,Energy,Energy +350611,Energy,Energy +343746,Energy,Energy +343742,Energy,Energy +343741,Energy,Energy +342423,Energy,Energy +342422,Energy,Energy +342461,Energy,Energy +342460,Energy,Energy +342459,Energy,Energy +342458,Energy,Energy +342457,Energy,Energy +342438,Energy,Energy +342434,Energy,Energy +342433,Energy,Energy +342432,Energy,Energy +342431,Energy,Energy +342430,Energy,Energy +342429,Energy,Energy +342428,Energy,Energy +342427,Energy,Energy +342426,Energy,Energy +342425,Energy,Energy +342423,Environment,Environment +342422,Environment,Environment +342461,Environment,Environment +342460,Environment,Environment +342459,Environment,Environment +342458,Environment,Environment +342457,Environment,Environment +342438,Environment,Environment +342434,Environment,Environment +342433,Environment,Environment +342432,Environment,Environment +342431,Environment,Environment +342430,Environment,Environment +342429,Environment,Environment +342428,Environment,Environment +342427,Environment,Environment +342426,Environment,Environment +342425,Environment,Environment +342423,International Trade,International Trade +342422,International Trade,International Trade +342461,International Trade,International Trade +342460,International Trade,International Trade +342459,International Trade,International Trade +342458,International Trade,International Trade +342457,International Trade,International Trade +342438,International Trade,International Trade +342434,International Trade,International Trade +342433,International Trade,International Trade +342432,International Trade,International Trade +342431,International Trade,International Trade +342430,International Trade,International Trade +342429,International Trade,International Trade +342428,International Trade,International Trade +342427,International Trade,International Trade +342426,International Trade,International Trade +342425,International Trade,International Trade +342423,Taxation and Finance,Taxation and Finance +342422,Taxation and Finance,Taxation and Finance +342461,Taxation and Finance,Taxation and Finance +342460,Taxation and Finance,Taxation and Finance +342459,Taxation and Finance,Taxation and Finance +342458,Taxation and Finance,Taxation and Finance +342457,Taxation and Finance,Taxation and Finance +342438,Taxation and Finance,Taxation and Finance +342434,Taxation and Finance,Taxation and Finance +342433,Taxation and Finance,Taxation and Finance +342432,Taxation and Finance,Taxation and Finance +342431,Taxation and Finance,Taxation and Finance +342430,Taxation and Finance,Taxation and Finance +342429,Taxation and Finance,Taxation and Finance +342428,Taxation and Finance,Taxation and Finance +342427,Taxation and Finance,Taxation and Finance +342426,Taxation and Finance,Taxation and Finance +342425,Taxation and Finance,Taxation and Finance +502284,Infrastructure,Infrastructure +486034,Infrastructure,Infrastructure +358455,Infrastructure,Infrastructure +358454,Infrastructure,Infrastructure +358453,Infrastructure,Infrastructure +352987,Infrastructure,Infrastructure +352986,Infrastructure,Infrastructure +347792,Infrastructure,Infrastructure +347791,Infrastructure,Infrastructure +347790,Infrastructure,Infrastructure +347789,Infrastructure,Infrastructure +347788,Infrastructure,Infrastructure +344594,Infrastructure,Infrastructure +344593,Infrastructure,Infrastructure +396907,Infrastructure,Infrastructure +390878,Infrastructure,Infrastructure +386606,Infrastructure,Infrastructure +386605,Infrastructure,Infrastructure +386603,Infrastructure,Infrastructure +386601,Infrastructure,Infrastructure +385222,Infrastructure,Infrastructure +383251,Infrastructure,Infrastructure +383250,Infrastructure,Infrastructure +383249,Infrastructure,Infrastructure +383247,Infrastructure,Infrastructure +376275,Infrastructure,Infrastructure +342373,Pensions,Pensions +373815,Health,Health +342378,Health,Health +413220,Health,Health +404051,Health,Health +404051,Research and Development,Research and Development +404050,Research and Development,Research and Development +373815,Research and Development,Research and Development +342378,Research and Development,Research and Development +342521,Energy,Energy +342520,Energy,Energy +342570,Energy,Energy +342569,Energy,Energy +342568,Energy,Energy +342567,Energy,Energy +342566,Energy,Energy +342565,Energy,Energy +342564,Energy,Energy +342563,Energy,Energy +342562,Energy,Energy +342561,Energy,Energy +342560,Energy,Energy +342559,Energy,Energy +342558,Energy,Energy +342557,Energy,Energy +342537,Energy,Energy +342523,Energy,Energy +342521,Environment,Environment +342520,Environment,Environment +342570,Environment,Environment +342569,Environment,Environment +342568,Environment,Environment +342567,Environment,Environment +342566,Environment,Environment +342565,Environment,Environment +342564,Environment,Environment +342563,Environment,Environment +342562,Environment,Environment +342561,Environment,Environment +342560,Environment,Environment +342559,Environment,Environment +342558,Environment,Environment +342557,Environment,Environment +342537,Environment,Environment +342523,Environment,Environment +342521,International Trade,International Trade +342520,International Trade,International Trade +342570,International Trade,International Trade +342569,International Trade,International Trade +342568,International Trade,International Trade +342567,International Trade,International Trade +342566,International Trade,International Trade +342565,International Trade,International Trade +342564,International Trade,International Trade +342563,International Trade,International Trade +342562,International Trade,International Trade +342561,International Trade,International Trade +342560,International Trade,International Trade +342559,International Trade,International Trade +342558,International Trade,International Trade +342557,International Trade,International Trade +342537,International Trade,International Trade +342523,International Trade,International Trade +342521,Taxation and Finance,Taxation and Finance +342520,Taxation and Finance,Taxation and Finance +342570,Taxation and Finance,Taxation and Finance +342569,Taxation and Finance,Taxation and Finance +342568,Taxation and Finance,Taxation and Finance +342567,Taxation and Finance,Taxation and Finance +342566,Taxation and Finance,Taxation and Finance +342565,Taxation and Finance,Taxation and Finance +342564,Taxation and Finance,Taxation and Finance +342563,Taxation and Finance,Taxation and Finance +342562,Taxation and Finance,Taxation and Finance +342561,Taxation and Finance,Taxation and Finance +342560,Taxation and Finance,Taxation and Finance +342559,Taxation and Finance,Taxation and Finance +342558,Taxation and Finance,Taxation and Finance +342557,Taxation and Finance,Taxation and Finance +342537,Taxation and Finance,Taxation and Finance +342523,Taxation and Finance,Taxation and Finance +445128,Agriculture,Agriculture +445127,Agriculture,Agriculture +369915,Agriculture,Agriculture +369914,Agriculture,Agriculture +369913,Agriculture,Agriculture +419589,Agriculture,Agriculture +419586,Agriculture,Agriculture +465151,Agriculture,Agriculture +465140,Agriculture,Agriculture +465139,Agriculture,Agriculture +445120,Agriculture,Agriculture +445119,Agriculture,Agriculture +395059,Agriculture,Agriculture +395057,Agriculture,Agriculture +395056,Agriculture,Agriculture +395055,Agriculture,Agriculture +369920,Agriculture,Agriculture +369919,Agriculture,Agriculture +369918,Agriculture,Agriculture +369917,Agriculture,Agriculture +347095,Agriculture,Agriculture +347094,Agriculture,Agriculture +347093,Agriculture,Agriculture +419579,Agriculture,Agriculture +419577,Agriculture,Agriculture +419575,Agriculture,Agriculture +523728,Agriculture,Agriculture +523727,Agriculture,Agriculture +523726,Agriculture,Agriculture +523725,Agriculture,Agriculture +497555,Agriculture,Agriculture +497554,Agriculture,Agriculture +497553,Agriculture,Agriculture +344726,Defence,Defence +342937,Defence,Defence +375468,Consumer Issues,Consumer Issues +342571,Consumer Issues,Consumer Issues +342571,Housing,Housing +353972,Transportation,Transportation +344771,Transportation,Transportation +344769,Transportation,Transportation +344767,Transportation,Transportation +344766,Transportation,Transportation +344765,Transportation,Transportation +344764,Transportation,Transportation +344763,Transportation,Transportation +357963,Transportation,Transportation +357607,Transportation,Transportation +354700,Transportation,Transportation +353989,Transportation,Transportation +353987,Transportation,Transportation +353984,Transportation,Transportation +353980,Transportation,Transportation +353976,Transportation,Transportation +350787,Industry,Industry +343583,Industry,Industry +542139,International Trade,International Trade +471883,International Trade,International Trade +369721,International Trade,International Trade +463799,International Trade,International Trade +463798,International Trade,International Trade +445805,International Trade,International Trade +445804,International Trade,International Trade +394808,International Trade,International Trade +394807,International Trade,International Trade +542139,Agriculture,Agriculture +497563,Agriculture,Agriculture +369721,Agriculture,Agriculture +471883,Agriculture,Agriculture +463799,Agriculture,Agriculture +463798,Agriculture,Agriculture +445805,Agriculture,Agriculture +445804,Agriculture,Agriculture +394808,Agriculture,Agriculture +394807,Agriculture,Agriculture +522212,Housing,Housing +517129,Housing,Housing +376350,Housing,Housing +371570,Housing,Housing +371565,Housing,Housing +371564,Housing,Housing +371562,Housing,Housing +368877,Housing,Housing +368871,Housing,Housing +368870,Housing,Housing +366529,Housing,Housing +362165,Housing,Housing +438064,Housing,Housing +438062,Housing,Housing +438061,Housing,Housing +434998,Housing,Housing +434992,Housing,Housing +428592,Housing,Housing +428590,Housing,Housing +425938,Housing,Housing +411811,Housing,Housing +409299,Housing,Housing +409286,Housing,Housing +405025,Housing,Housing +405014,Housing,Housing +402880,Housing,Housing +402878,Housing,Housing +400154,Housing,Housing +400148,Housing,Housing +395640,Housing,Housing +392295,Housing,Housing +390002,Housing,Housing +387171,Housing,Housing +387169,Housing,Housing +384983,Housing,Housing +384976,Housing,Housing +384972,Housing,Housing +381131,Housing,Housing +381130,Housing,Housing +378559,Housing,Housing +469954,Housing,Housing +469952,Housing,Housing +469914,Housing,Housing +469912,Housing,Housing +466919,Housing,Housing +466916,Housing,Housing +463920,Housing,Housing +463900,Housing,Housing +457060,Housing,Housing +454665,Housing,Housing +447390,Housing,Housing +536804,Housing,Housing +536802,Housing,Housing +536799,Housing,Housing +531346,Housing,Housing +528477,Housing,Housing +528467,Housing,Housing +343816,Budget,Budget +351312,Education,Education +343817,Education,Education +351310,Health,Health +343813,Sports,Sports +351314,Sports,Sports +494183,Government Procurement,Government Procurement +494182,Government Procurement,Government Procurement +351582,Government Procurement,Government Procurement +344059,Government Procurement,Government Procurement +494181,Government Procurement,Government Procurement +494180,Government Procurement,Government Procurement +494179,Government Procurement,Government Procurement +494178,Government Procurement,Government Procurement +494177,Government Procurement,Government Procurement +494176,Government Procurement,Government Procurement +494175,Government Procurement,Government Procurement +494174,Government Procurement,Government Procurement +493878,Government Procurement,Government Procurement +491596,Government Procurement,Government Procurement +491413,Government Procurement,Government Procurement +491408,Government Procurement,Government Procurement +491379,Government Procurement,Government Procurement +491359,Government Procurement,Government Procurement +478788,Government Procurement,Government Procurement +540167,Government Procurement,Government Procurement +538000,Government Procurement,Government Procurement +535809,Government Procurement,Government Procurement +532003,Government Procurement,Government Procurement +532002,Government Procurement,Government Procurement +529298,Government Procurement,Government Procurement +527127,Government Procurement,Government Procurement +527125,Government Procurement,Government Procurement +522957,Government Procurement,Government Procurement +522956,Government Procurement,Government Procurement +522952,Government Procurement,Government Procurement +520187,Government Procurement,Government Procurement +520186,Government Procurement,Government Procurement +520185,Government Procurement,Government Procurement +518295,Government Procurement,Government Procurement +518293,Government Procurement,Government Procurement +518288,Government Procurement,Government Procurement +518287,Government Procurement,Government Procurement +518286,Government Procurement,Government Procurement +515841,Government Procurement,Government Procurement +514814,Government Procurement,Government Procurement +514813,Government Procurement,Government Procurement +514810,Government Procurement,Government Procurement +514809,Government Procurement,Government Procurement +514267,Government Procurement,Government Procurement +514265,Government Procurement,Government Procurement +514264,Government Procurement,Government Procurement +514263,Government Procurement,Government Procurement +513381,Government Procurement,Government Procurement +513380,Government Procurement,Government Procurement +513378,Government Procurement,Government Procurement +511180,Government Procurement,Government Procurement +511154,Government Procurement,Government Procurement +508870,Government Procurement,Government Procurement +508868,Government Procurement,Government Procurement +508853,Government Procurement,Government Procurement +506049,Government Procurement,Government Procurement +506048,Government Procurement,Government Procurement +506047,Government Procurement,Government Procurement +506046,Government Procurement,Government Procurement +506045,Government Procurement,Government Procurement +500996,Government Procurement,Government Procurement +500993,Government Procurement,Government Procurement +500986,Government Procurement,Government Procurement +500985,Government Procurement,Government Procurement +500982,Government Procurement,Government Procurement +500981,Government Procurement,Government Procurement +500980,Government Procurement,Government Procurement +500979,Government Procurement,Government Procurement +498858,Government Procurement,Government Procurement +498851,Government Procurement,Government Procurement +498847,Government Procurement,Government Procurement +498827,Government Procurement,Government Procurement +498824,Government Procurement,Government Procurement +498821,Government Procurement,Government Procurement +498817,Government Procurement,Government Procurement +498811,Government Procurement,Government Procurement +498805,Government Procurement,Government Procurement +498802,Government Procurement,Government Procurement +498789,Government Procurement,Government Procurement +495773,Government Procurement,Government Procurement +495772,Government Procurement,Government Procurement +495770,Government Procurement,Government Procurement +495769,Government Procurement,Government Procurement +495767,Government Procurement,Government Procurement +495766,Government Procurement,Government Procurement +495760,Government Procurement,Government Procurement +495759,Government Procurement,Government Procurement +495758,Government Procurement,Government Procurement +377144,Mining,Mining +377143,Mining,Mining +371105,Mining,Mining +356688,Mining,Mining +356687,Mining,Mining +342986,Mining,Mining +446093,Mining,Mining +430058,Mining,Mining +422012,Mining,Mining +397958,Internal Trade,Internal Trade +453063,International Trade,International Trade +451708,International Trade,International Trade +398019,International Trade,International Trade +397958,International Trade,International Trade +445530,Budget,Budget +444361,Budget,Budget +375889,Budget,Budget +375886,Budget,Budget +343118,Budget,Budget +412636,Budget,Budget +388931,Budget,Budget +380138,Budget,Budget +375890,Budget,Budget +502956,Budget,Budget +491921,Budget,Budget +491910,Budget,Budget +477693,Budget,Budget +475037,Budget,Budget +447662,Budget,Budget +447660,Budget,Budget +447658,Budget,Budget +447657,Budget,Budget +445536,Budget,Budget +357141,Agriculture,Agriculture +355513,Agriculture,Agriculture +382910,Agriculture,Agriculture +375392,Agriculture,Agriculture +375391,Agriculture,Agriculture +368495,Agriculture,Agriculture +368494,Agriculture,Agriculture +368493,Agriculture,Agriculture +368492,Agriculture,Agriculture +368491,Agriculture,Agriculture +368490,Agriculture,Agriculture +368489,Agriculture,Agriculture +368487,Agriculture,Agriculture +343164,Environment,Environment +348198,Consumer Issues,Consumer Issues +357357,Consumer Issues,Consumer Issues +348204,Consumer Issues,Consumer Issues +348203,Consumer Issues,Consumer Issues +348202,Consumer Issues,Consumer Issues +348201,Small Business,Small Business +348198,Small Business,Small Business +348204,Small Business,Small Business +368494,International Trade,International Trade +368493,International Trade,International Trade +368492,International Trade,International Trade +368491,International Trade,International Trade +368490,International Trade,International Trade +368489,International Trade,International Trade +368487,International Trade,International Trade +368485,International Trade,International Trade +357141,International Trade,International Trade +355515,International Trade,International Trade +377763,International Trade,International Trade +404068,Consumer Issues,Consumer Issues +404067,Consumer Issues,Consumer Issues +406608,Consumer Issues,Consumer Issues +405443,Consumer Issues,Consumer Issues +404075,Consumer Issues,Consumer Issues +404074,Consumer Issues,Consumer Issues +404073,Consumer Issues,Consumer Issues +404072,Consumer Issues,Consumer Issues +404071,Consumer Issues,Consumer Issues +404070,Consumer Issues,Consumer Issues +404068,Industry,Industry +404067,Industry,Industry +406608,Industry,Industry +405443,Industry,Industry +404075,Industry,Industry +404074,Industry,Industry +404073,Industry,Industry +404072,Industry,Industry +404071,Industry,Industry +404070,Industry,Industry +375479,Agriculture,Agriculture +347722,Agriculture,Agriculture +452978,Agriculture,Agriculture +420335,Agriculture,Agriculture +397966,Agriculture,Agriculture +397956,Internal Trade,Internal Trade +347722,International Trade,International Trade +452978,International Trade,International Trade +420335,International Trade,International Trade +397966,International Trade,International Trade +397956,International Trade,International Trade +398013,Agriculture,Agriculture +397961,Agriculture,Agriculture +347786,Agriculture,Agriculture +453056,Agriculture,Agriculture +398013,Internal Trade,Internal Trade +397961,Internal Trade,Internal Trade +453056,International Trade,International Trade +420339,International Trade,International Trade +347786,International Trade,International Trade +398013,International Trade,International Trade +398022,Agriculture,Agriculture +398015,Agriculture,Agriculture +347782,Agriculture,Agriculture +452646,Agriculture,Agriculture +398022,Internal Trade,Internal Trade +398015,Internal Trade,Internal Trade +398022,International Trade,International Trade +398015,International Trade,International Trade +375476,International Trade,International Trade +347782,International Trade,International Trade +452646,International Trade,International Trade +420341,Agriculture,Agriculture +397955,Agriculture,Agriculture +375480,Agriculture,Agriculture +347783,Internal Trade,Internal Trade +420341,International Trade,International Trade +397955,International Trade,International Trade +375480,International Trade,International Trade +453060,Agriculture,Agriculture +420414,Agriculture,Agriculture +398016,Agriculture,Agriculture +375481,Agriculture,Agriculture +347785,Internal Trade,Internal Trade +375481,International Trade,International Trade +347785,International Trade,International Trade +453060,International Trade,International Trade +420414,International Trade,International Trade +351071,Mining,Mining +351070,Mining,Mining +351061,Mining,Mining +351059,Mining,Mining +351057,Mining,Mining +351056,Mining,Mining +351052,Mining,Mining +348589,Mining,Mining +348588,Mining,Mining +348587,Mining,Mining +347040,Mining,Mining +346945,Mining,Mining +346944,Mining,Mining +346943,Mining,Mining +346941,Mining,Mining +346939,Mining,Mining +359569,Mining,Mining +357815,Mining,Mining +357814,Mining,Mining +357813,Mining,Mining +357812,Mining,Mining +357811,Mining,Mining +357810,Mining,Mining +357808,Mining,Mining +355420,Mining,Mining +355419,Mining,Mining +355418,Mining,Mining +355416,Mining,Mining +355415,Mining,Mining +355414,Mining,Mining +353509,Mining,Mining +353506,Mining,Mining +353505,Mining,Mining +353504,Mining,Mining +353503,Mining,Mining +353502,Mining,Mining +351076,Mining,Mining +351075,Mining,Mining +351074,Mining,Mining +351073,Mining,Mining +398023,Internal Trade,Internal Trade +397461,Internal Trade,Internal Trade +397461,International Trade,International Trade +375478,International Trade,International Trade +347787,International Trade,International Trade +420340,International Trade,International Trade +524354,Environment,Environment +524353,Environment,Environment +524333,Environment,Environment +524332,Environment,Environment +500194,Environment,Environment +496829,Environment,Environment +496828,Environment,Environment +465328,Environment,Environment +526737,Environment,Environment +524641,Environment,Environment +524336,Environment,Environment +524335,Environment,Environment +426618,Research and Development,Research and Development +377165,International Trade,International Trade +370251,International Trade,International Trade +355868,International Trade,International Trade +348921,International Trade,International Trade +343382,International Trade,International Trade +443278,International Trade,International Trade +442342,International Trade,International Trade +437922,International Trade,International Trade +437918,International Trade,International Trade +437917,International Trade,International Trade +437915,International Trade,International Trade +437903,International Trade,International Trade +435824,International Trade,International Trade +435811,International Trade,International Trade +435766,International Trade,International Trade +432531,International Trade,International Trade +432437,International Trade,International Trade +432436,International Trade,International Trade +431086,International Trade,International Trade +431080,International Trade,International Trade +429169,International Trade,International Trade +429150,International Trade,International Trade +428833,International Trade,International Trade +428830,International Trade,International Trade +425738,International Trade,International Trade +424417,International Trade,International Trade +424409,International Trade,International Trade +424001,International Trade,International Trade +423996,International Trade,International Trade +421981,International Trade,International Trade +421979,International Trade,International Trade +421972,International Trade,International Trade +421274,International Trade,International Trade +421269,International Trade,International Trade +421267,International Trade,International Trade +418766,International Trade,International Trade +418750,International Trade,International Trade +418686,International Trade,International Trade +418685,International Trade,International Trade +418683,International Trade,International Trade +418676,International Trade,International Trade +417568,International Trade,International Trade +416678,International Trade,International Trade +415179,International Trade,International Trade +413572,International Trade,International Trade +413092,International Trade,International Trade +404190,International Trade,International Trade +533398,International Trade,International Trade +527562,International Trade,International Trade +375010,International Trade,International Trade +375006,International Trade,International Trade +426133,International Trade,International Trade +426130,International Trade,International Trade +418075,International Trade,International Trade +418050,International Trade,International Trade +413786,International Trade,International Trade +405216,International Trade,International Trade +392769,International Trade,International Trade +386763,International Trade,International Trade +380963,International Trade,International Trade +530172,Regional Development,Regional Development +343822,Privacy and Access to Information,Privacy and Access to Information +499478,Privacy and Access to Information,Privacy and Access to Information +399008,Privacy and Access to Information,Privacy and Access to Information +392669,Privacy and Access to Information,Privacy and Access to Information +347079,Housing,Housing +347077,Housing,Housing +347079,Transportation,Transportation +347077,Transportation,Transportation +492200,Transportation,Transportation +492199,Transportation,Transportation +377792,Transportation,Transportation +377791,Transportation,Transportation +377789,Transportation,Transportation +372526,Transportation,Transportation +372522,Transportation,Transportation +356531,Transportation,Transportation +472072,Transportation,Transportation +469061,Transportation,Transportation +469060,Transportation,Transportation +468993,Transportation,Transportation +468992,Transportation,Transportation +468991,Transportation,Transportation +468981,Transportation,Transportation +468980,Transportation,Transportation +468979,Transportation,Transportation +468978,Transportation,Transportation +468977,Transportation,Transportation +468947,Transportation,Transportation +463907,Transportation,Transportation +452746,Transportation,Transportation +434293,Transportation,Transportation +432941,Transportation,Transportation +430278,Transportation,Transportation +430277,Transportation,Transportation +428248,Transportation,Transportation +428247,Transportation,Transportation +428246,Transportation,Transportation +427140,Transportation,Transportation +425104,Transportation,Transportation +425101,Transportation,Transportation +423469,Transportation,Transportation +423467,Transportation,Transportation +422924,Transportation,Transportation +417970,Transportation,Transportation +399785,Transportation,Transportation +397597,Transportation,Transportation +541608,Transportation,Transportation +533383,Transportation,Transportation +533124,Transportation,Transportation +533123,Transportation,Transportation +533122,Transportation,Transportation +533121,Transportation,Transportation +516220,Transportation,Transportation +514474,Transportation,Transportation +514429,Transportation,Transportation +514300,Transportation,Transportation +514299,Transportation,Transportation +513655,Transportation,Transportation +513654,Transportation,Transportation +511627,Transportation,Transportation +506340,Transportation,Transportation +506098,Transportation,Transportation +496663,Transportation,Transportation +494425,Transportation,Transportation +492203,Transportation,Transportation +492202,Transportation,Transportation +388104,Security,Security +388097,Security,Security +396374,Security,Security +388111,Security,Security +388109,Security,Security +388097,Industry,Industry +396374,Industry,Industry +388111,Industry,Industry +388109,Industry,Industry +388107,Industry,Industry +388104,Consumer Issues,Consumer Issues +388097,Consumer Issues,Consumer Issues +396374,Consumer Issues,Consumer Issues +388111,Consumer Issues,Consumer Issues +388109,Consumer Issues,Consumer Issues +388097,Health,Health +396374,Health,Health +388111,Health,Health +388109,Health,Health +388107,Health,Health +349223,Infrastructure,Infrastructure +349222,Infrastructure,Infrastructure +349217,Infrastructure,Infrastructure +347431,Infrastructure,Infrastructure +352202,Infrastructure,Infrastructure +352200,Infrastructure,Infrastructure +349229,Infrastructure,Infrastructure +368532,Agriculture,Agriculture +466289,Agriculture,Agriculture +368536,Agriculture,Agriculture +368535,Agriculture,Agriculture +466289,International Trade,International Trade +441473,International Trade,International Trade +368536,International Trade,International Trade +368535,International Trade,International Trade +368534,International Trade,International Trade +368532,International Trade,International Trade +419683,International Trade,International Trade +419682,International Trade,International Trade +393835,International Trade,International Trade +393834,International Trade,International Trade +393832,International Trade,International Trade +445819,International Trade,International Trade +445818,International Trade,International Trade +347593,International Trade,International Trade +434854,International Trade,International Trade +419082,International Trade,International Trade +419081,International Trade,International Trade +419079,International Trade,International Trade +394843,International Trade,International Trade +394842,International Trade,International Trade +369717,International Trade,International Trade +463869,International Trade,International Trade +463782,International Trade,International Trade +463780,International Trade,International Trade +463779,International Trade,International Trade +445819,Agriculture,Agriculture +445818,Agriculture,Agriculture +369717,Agriculture,Agriculture +347593,Agriculture,Agriculture +419082,Agriculture,Agriculture +419081,Agriculture,Agriculture +419079,Agriculture,Agriculture +394843,Agriculture,Agriculture +394842,Agriculture,Agriculture +497294,Agriculture,Agriculture +497293,Agriculture,Agriculture +463869,Agriculture,Agriculture +463782,Agriculture,Agriculture +463780,Agriculture,Agriculture +463779,Agriculture,Agriculture +353421,Transportation,Transportation +349033,Employment and Training,Employment and Training +349027,Employment and Training,Employment and Training +344317,Security,Security +400922,Security,Security +370508,Security,Security +370399,Security,Security +367186,Taxation and Finance,Taxation and Finance +367185,Taxation and Finance,Taxation and Finance +347457,Small Business,Small Business +347455,Small Business,Small Business +375534,Small Business,Small Business +347457,Financial Institutions,Financial Institutions +347455,Financial Institutions,Financial Institutions +367186,Financial Institutions,Financial Institutions +349357,International Development,International Development +349356,International Development,International Development +349361,International Development,International Development +349360,International Development,International Development +349356,Research and Development,Research and Development +349355,Research and Development,Research and Development +349361,Research and Development,Research and Development +481302,International Trade,Commerce international +449302,International Trade,Commerce international +392199,International Trade,Commerce international +348887,International Trade,Commerce international +521872,International Trade,Commerce international +518977,International Trade,Commerce international +484053,International Trade,Commerce international +521872,Environment,Environnement +518977,Environment,Environnement +348887,Environment,Environnement +484053,Environment,Environnement +484052,Environment,Environnement +481302,Environment,Environnement +476899,Environment,Environnement +449302,Environment,Environnement +476899,Industry,Industrie +474871,Industry,Industrie +449302,Industry,Industrie +392199,Industry,Industrie +521872,Industry,Industrie +518977,Industry,Industrie +510241,Industry,Industrie +484053,Industry,Industrie +484052,Industry,Industrie +481302,Infrastructure,Infrastructure +476899,Infrastructure,Infrastructure +392199,Infrastructure,Infrastructure +449302,Infrastructure,Infrastructure +484053,Infrastructure,Infrastructure +474871,Transportation,Transports +449302,Transportation,Transports +348887,Transportation,Transports +419476,Transportation,Transports +392199,Transportation,Transports +521872,Transportation,Transports +518977,Transportation,Transports +510241,Transportation,Transports +484053,Transportation,Transports +484052,Transportation,Transports +481302,Transportation,Transports +344420,Defence,Defence +344418,Defence,Defence +344417,Defence,Defence +344420,Energy,Energy +344419,Energy,Energy +344418,Energy,Energy +344417,Energy,Energy +344422,Energy,Energy +344418,Security,Security +344417,Security,Security +356996,Security,Security +344422,Security,Security +344421,Security,Security +344420,Security,Security +533532,Industry,Industry +463591,Infrastructure,Infrastructure +463590,Infrastructure,Infrastructure +369624,Infrastructure,Infrastructure +369623,Infrastructure,Infrastructure +369622,Infrastructure,Infrastructure +369620,Infrastructure,Infrastructure +369619,Infrastructure,Infrastructure +364722,Infrastructure,Infrastructure +364664,Infrastructure,Infrastructure +364663,Infrastructure,Infrastructure +346817,Infrastructure,Infrastructure +344437,Infrastructure,Infrastructure +450481,Infrastructure,Infrastructure +447756,Infrastructure,Infrastructure +444681,Infrastructure,Infrastructure +439800,Infrastructure,Infrastructure +438889,Infrastructure,Infrastructure +400481,Infrastructure,Infrastructure +397578,Infrastructure,Infrastructure +385944,Infrastructure,Infrastructure +385939,Infrastructure,Infrastructure +372962,Infrastructure,Infrastructure +371602,Infrastructure,Infrastructure +544453,Infrastructure,Infrastructure +523293,Infrastructure,Infrastructure +523292,Infrastructure,Infrastructure +523291,Infrastructure,Infrastructure +523290,Infrastructure,Infrastructure +506959,Infrastructure,Infrastructure +506958,Infrastructure,Infrastructure +506957,Infrastructure,Infrastructure +506953,Infrastructure,Infrastructure +500153,Infrastructure,Infrastructure +463594,Infrastructure,Infrastructure +344524,Agriculture,Agriculture +344479,Agriculture,Agriculture +389186,Agriculture,Agriculture +364844,Agriculture,Agriculture +344904,Agriculture,Agriculture +344902,Agriculture,Agriculture +344524,International Development,International Development +344479,International Development,International Development +364844,International Development,International Development +348923,International Development,International Development +344902,International Development,International Development +401532,Security,Security +370401,Security,Security +355510,Employment and Training,Emploi et formation +349658,Employment and Training,Employment and Training +350738,Agriculture,Agriculture +344550,Agriculture,Agriculture +356568,Agriculture,Agriculture +356566,Agriculture,Agriculture +356562,Agriculture,Agriculture +356561,Agriculture,Agriculture +356560,Agriculture,Agriculture +349682,Agriculture,Agriculture +344551,Agriculture,Agriculture +356565,Agriculture,Agriculture +356564,Agriculture,Agriculture +356563,Agriculture,Agriculture +373646,Climate,Climate +344586,Climate,Climate +387104,Climate,Climate +373646,Taxation and Finance,Taxation and Finance +344586,Taxation and Finance,Taxation and Finance +387104,Taxation and Finance,Taxation and Finance +356407,Economic Development,Economic Development +353842,Economic Development,Economic Development +353840,Industry,Industry +353839,Industry,Industry +347344,Consumer Issues,Consumer Issues +347344,Industry,Industry +349387,Employment and Training,Employment and Training +349386,Employment and Training,Employment and Training +349397,Employment and Training,Employment and Training +349396,Employment and Training,Employment and Training +349393,Employment and Training,Employment and Training +349392,Employment and Training,Employment and Training +349390,Employment and Training,Employment and Training +349387,Immigration,Immigration +349386,Immigration,Immigration +349397,Immigration,Immigration +349396,Immigration,Immigration +349393,Immigration,Immigration +349392,Immigration,Immigration +349390,Immigration,Immigration +349389,Regional Development,Regional Development +349386,Regional Development,Regional Development +349396,Regional Development,Regional Development +349393,Regional Development,Regional Development +349392,Regional Development,Regional Development +420426,International Trade,International Trade +420425,International Trade,International Trade +429910,International Trade,International Trade +423034,International Trade,International Trade +394685,International Trade,International Trade +344765,Infrastructure,Infrastructure +344763,Infrastructure,Infrastructure +357963,Infrastructure,Infrastructure +357607,Infrastructure,Infrastructure +354700,Infrastructure,Infrastructure +353989,Infrastructure,Infrastructure +353987,Infrastructure,Infrastructure +353985,Infrastructure,Infrastructure +353984,Infrastructure,Infrastructure +353980,Infrastructure,Infrastructure +353976,Infrastructure,Infrastructure +353973,Infrastructure,Infrastructure +353972,Infrastructure,Infrastructure +344771,Infrastructure,Infrastructure +344769,Infrastructure,Infrastructure +344767,Infrastructure,Infrastructure +480463,Consumer Issues,Consumer Issues +480042,Consumer Issues,Consumer Issues +376134,Consumer Issues,Consumer Issues +376133,Consumer Issues,Consumer Issues +344800,Consumer Issues,Consumer Issues +470721,Consumer Issues,Consumer Issues +468846,Consumer Issues,Consumer Issues +468844,Consumer Issues,Consumer Issues +467870,Consumer Issues,Consumer Issues +467868,Consumer Issues,Consumer Issues +467858,Consumer Issues,Consumer Issues +463978,Consumer Issues,Consumer Issues +462015,Consumer Issues,Consumer Issues +404392,Consumer Issues,Consumer Issues +401316,Consumer Issues,Consumer Issues +401315,Consumer Issues,Consumer Issues +401314,Consumer Issues,Consumer Issues +516064,Consumer Issues,Consumer Issues +510842,Consumer Issues,Consumer Issues +510841,Consumer Issues,Consumer Issues +500757,Consumer Issues,Consumer Issues +496290,Consumer Issues,Consumer Issues +490892,Consumer Issues,Consumer Issues +490891,Consumer Issues,Consumer Issues +357196,Agriculture,Agriculture +346077,Agriculture,Agriculture +411326,Agriculture,Agriculture +408563,Agriculture,Agriculture +397093,Agriculture,Agriculture +397083,Agriculture,Agriculture +370294,Agriculture,Agriculture +370293,Agriculture,Agriculture +411326,Internal Trade,Commerce intérieur +408563,Internal Trade,Commerce intérieur +397093,Internal Trade,Commerce intérieur +397083,Internal Trade,Commerce intérieur +370294,Internal Trade,Commerce intérieur +370293,Internal Trade,Commerce intérieur +357201,Internal Trade,Commerce intérieur +357196,Internal Trade,Commerce intérieur +346077,International Trade,Commerce international +411326,International Trade,Commerce international +408563,International Trade,Commerce international +397093,International Trade,Commerce international +397083,International Trade,Commerce international +370294,International Trade,Commerce international +370293,International Trade,Commerce international +357201,International Trade,Commerce international +418708,Agriculture,Agriculture +496918,Agriculture,Agriculture +446688,Agriculture,Agriculture +424614,Agriculture,Agriculture +424613,Agriculture,Agriculture +424612,Agriculture,Agriculture +419943,Agriculture,Agriculture +419931,Agriculture,Agriculture +430100,Consumer Issues,Consumer Issues +430099,Consumer Issues,Consumer Issues +424614,Consumer Issues,Consumer Issues +424613,Consumer Issues,Consumer Issues +424612,Consumer Issues,Consumer Issues +419943,Consumer Issues,Consumer Issues +419931,Consumer Issues,Consumer Issues +419930,Consumer Issues,Consumer Issues +446688,Consumer Issues,Consumer Issues +438008,Consumer Issues,Consumer Issues +438007,Consumer Issues,Consumer Issues +465323,International Trade,International Trade +446688,International Trade,International Trade +438008,International Trade,International Trade +438007,International Trade,International Trade +438006,International Trade,International Trade +430100,International Trade,International Trade +430099,International Trade,International Trade +424614,International Trade,International Trade +424613,International Trade,International Trade +424612,International Trade,International Trade +419943,International Trade,International Trade +419931,International Trade,International Trade +419930,International Trade,International Trade +418708,International Trade,International Trade +394963,International Trade,International Trade +394959,International Trade,International Trade +356422,Economic Development,Economic Development +353850,Economic Development,Economic Development +353849,Industry,Industry +353847,Industry,Industry +358946,Small Business,Small Business +368383,International Trade,Commerce international +357664,International Trade,Commerce international +350757,International Trade,Commerce international +412211,International Trade,Commerce international +409213,International Trade,Commerce international +407423,International Trade,Commerce international +404657,International Trade,Commerce international +400020,International Trade,Commerce international +503451,Budget,Budget +502995,Budget,Budget +397929,Budget,Budget +397915,Budget,Budget +396511,Budget,Budget +394556,Budget,Budget +488878,Budget,Budget +515587,Budget,Budget +486200,Economic Development,Economic Development +482767,Economic Development,Economic Development +470384,Economic Development,Economic Development +460944,Economic Development,Economic Development +460943,Economic Development,Economic Development +460941,Economic Development,Economic Development +444393,Economic Development,Economic Development +444392,Economic Development,Economic Development +444391,Economic Development,Economic Development +444332,Economic Development,Economic Development +444331,Economic Development,Economic Development +444330,Economic Development,Economic Development +444329,Economic Development,Economic Development +444328,Economic Development,Economic Development +444327,Economic Development,Economic Development +444326,Economic Development,Economic Development +444325,Economic Development,Economic Development +444324,Economic Development,Economic Development +444323,Economic Development,Economic Development +442872,Economic Development,Economic Development +442871,Economic Development,Economic Development +440331,Economic Development,Economic Development +440330,Economic Development,Economic Development +440299,Economic Development,Economic Development +440298,Economic Development,Economic Development +394556,Economic Development,Economic Development +533920,Economic Development,Economic Development +533850,Economic Development,Economic Development +533849,Economic Development,Economic Development +530317,Economic Development,Economic Development +527805,Economic Development,Economic Development +527415,Economic Development,Economic Development +515588,Economic Development,Economic Development +513516,Economic Development,Economic Development +511659,Economic Development,Economic Development +509309,Economic Development,Economic Development +506762,Economic Development,Economic Development +504975,Economic Development,Economic Development +504971,Economic Development,Economic Development +503819,Economic Development,Economic Development +503340,Economic Development,Economic Development +503338,Economic Development,Economic Development +500409,Economic Development,Economic Development +500269,Economic Development,Economic Development +500268,Economic Development,Economic Development +500267,Economic Development,Economic Development +496880,Economic Development,Economic Development +496879,Economic Development,Economic Development +496761,Economic Development,Economic Development +494468,Economic Development,Economic Development +494467,Economic Development,Economic Development +494430,Economic Development,Economic Development +494427,Economic Development,Economic Development +493853,Economic Development,Economic Development +492445,Economic Development,Economic Development +492072,Economic Development,Economic Development +490255,Economic Development,Economic Development +489066,Economic Development,Economic Development +489065,Economic Development,Economic Development +488879,Economic Development,Economic Development +488878,Economic Development,Economic Development +488786,Economic Development,Economic Development +486557,Economic Development,Economic Development +486555,Economic Development,Economic Development +444393,Municipalities,Municipalities +444329,Municipalities,Municipalities +440330,Municipalities,Municipalities +421178,Agriculture,Agriculture +395257,Agriculture,Agriculture +370354,Agriculture,Agriculture +370353,Agriculture,Agriculture +370352,Agriculture,Agriculture +370351,Agriculture,Agriculture +346898,Agriculture,Agriculture +421182,Agriculture,Agriculture +421181,Agriculture,Agriculture +421180,Agriculture,Agriculture +421178,Internal Trade,Commerce intérieur +395257,Internal Trade,Commerce intérieur +370354,Internal Trade,Commerce intérieur +370353,Internal Trade,Commerce intérieur +370352,Internal Trade,Commerce intérieur +370351,Internal Trade,Commerce intérieur +346898,Internal Trade,Commerce intérieur +421182,Internal Trade,Commerce intérieur +421181,Internal Trade,Commerce intérieur +421180,Internal Trade,Commerce intérieur +370352,International Trade,Commerce international +370351,International Trade,Commerce international +346898,International Trade,Commerce international +421182,International Trade,Commerce international +421181,International Trade,Commerce international +421180,International Trade,Commerce international +421179,International Trade,Commerce international +421178,International Trade,Commerce international +395257,International Trade,Commerce international +370354,International Trade,Commerce international +412211,Transportation,Transports +368383,Transportation,Transports +483125,Transportation,Transports +448339,Transportation,Transports +446119,Transportation,Transports +347077,Security,Security +347084,Security,Security +347098,Agriculture,Agriculture +347096,Agriculture,Agriculture +406228,Agriculture,Agriculture +395047,Agriculture,Agriculture +395045,Agriculture,Agriculture +369927,Agriculture,Agriculture +369925,Agriculture,Agriculture +369924,Agriculture,Agriculture +357777,Infrastructure,Infrastructure +357775,Infrastructure,Infrastructure +444300,Defence,Defence +441592,Defence,Defence +384725,Defence,Defence +384722,Defence,Defence +384721,Defence,Defence +375934,Defence,Defence +375929,Defence,Defence +375921,Defence,Defence +439142,Defence,Defence +439127,Defence,Defence +434959,Defence,Defence +433020,Defence,Defence +433014,Defence,Defence +433013,Defence,Defence +433012,Defence,Defence +433011,Defence,Defence +433007,Defence,Defence +425049,Defence,Defence +425048,Defence,Defence +425047,Defence,Defence +412128,Defence,Defence +405022,Defence,Defence +403022,Defence,Defence +400779,Defence,Defence +391200,Defence,Defence +391190,Defence,Defence +512811,Defence,Defence +502159,Defence,Defence +491103,Defence,Defence +487268,Defence,Defence +487262,Defence,Defence +459299,Defence,Defence +459298,Defence,Defence +459297,Defence,Defence +459296,Defence,Defence +459295,Defence,Defence +458538,Defence,Defence +458536,Defence,Defence +457193,Defence,Defence +457193,Government Procurement,Government Procurement +454659,Government Procurement,Government Procurement +444300,Government Procurement,Government Procurement +441592,Government Procurement,Government Procurement +439142,Government Procurement,Government Procurement +439127,Government Procurement,Government Procurement +434959,Government Procurement,Government Procurement +433020,Government Procurement,Government Procurement +433014,Government Procurement,Government Procurement +433013,Government Procurement,Government Procurement +433012,Government Procurement,Government Procurement +433011,Government Procurement,Government Procurement +433007,Government Procurement,Government Procurement +425048,Government Procurement,Government Procurement +425047,Government Procurement,Government Procurement +406508,Government Procurement,Government Procurement +405022,Government Procurement,Government Procurement +391200,Government Procurement,Government Procurement +384722,Government Procurement,Government Procurement +384721,Government Procurement,Government Procurement +379125,Government Procurement,Government Procurement +379122,Government Procurement,Government Procurement +375929,Government Procurement,Government Procurement +512811,Government Procurement,Government Procurement +491103,Government Procurement,Government Procurement +459299,Government Procurement,Government Procurement +459298,Government Procurement,Government Procurement +459297,Government Procurement,Government Procurement +459296,Government Procurement,Government Procurement +459295,Government Procurement,Government Procurement +458538,Government Procurement,Government Procurement +502159,Industry,Industry +491103,Industry,Industry +406508,Industry,Industry +405022,Industry,Industry +400779,Industry,Industry +398656,Industry,Industry +391190,Industry,Industry +391169,Industry,Industry +388008,Industry,Industry +384729,Industry,Industry +384725,Industry,Industry +384722,Industry,Industry +375934,Industry,Industry +375929,Industry,Industry +375926,Industry,Industry +375921,Industry,Industry +370570,Industry,Industry +487268,Industry,Industry +487262,Industry,Industry +457193,Industry,Industry +441592,Industry,Industry +434969,Industry,Industry +434968,Industry,Industry +434966,Industry,Industry +434965,Industry,Industry +434962,Industry,Industry +434960,Industry,Industry +433020,Industry,Industry +349092,Employment and Training,Employment and Training +349116,Housing,Housing +349092,Municipalities,Municipalities +349092,Transportation,Transportation +350678,Economic Development,Economic Development +340877,Privacy and Access to Information,Privacy and Access to Information +340888,Environment,Environment +340895,Security,Security +351240,Economic Development,Economic Development +375477,Agriculture,Agriculture +471576,Climate,Climate +341762,Government Procurement,Government Procurement +365037,Economic Development,Economic Development +354343,Employment and Training,Employment and Training +352249,Taxation and Finance,Taxation and Finance +347350,Energy,Energy +343399,Taxation and Finance,Taxation and Finance +343399,Mining,Mining +343399,Infrastructure,Infrastructure +342717,Defence,Defence +353817,Government Procurement,Government Procurement +349137,Environment,Environment +356537,Mining,Mining +349136,Fisheries,Fisheries +342008,Infrastructure,Infrastructure +342013,Infrastructure,Infrastructure +342013,Pensions,Pensions +350919,Regional Development,Regional Development +342232,Infrastructure,Infrastructure +342229,Economic Development,Economic Development +342238,Employment and Training,Employment and Training +350611,Industry,Industry +343738,International Trade,International Trade +351008,Mining,Mining +342279,Mining,Mining +342278,Mining,Mining +351008,Infrastructure,Infrastructure +351009,Regional Development,Regional Development +342279,Employment and Training,Employment and Training +342272,Transportation,Transportation +342277,Economic Development,Economic Development +343738,Energy,Energy +342424,Energy,Energy +342424,Environment,Environment +342424,International Trade,International Trade +342424,Taxation and Finance,Taxation and Finance +342301,Budget,Budget +376270,Infrastructure,Infrastructure +342373,Consumer Issues,Consumer Issues +342374,Pensions,Pensions +404050,Health,Health +413220,Research and Development,Research and Development +342522,Energy,Energy +342522,Environment,Environment +342522,International Trade,International Trade +342522,Taxation and Finance,Taxation and Finance +445129,Agriculture,Agriculture +497552,Agriculture,Agriculture +344729,Defence,Defence +378248,Energy,Energy +375469,Consumer Issues,Consumer Issues +394709,Housing,Housing +353973,Transportation,Transportation +351305,Industry,Industry +342679,Economic Development,Economic Development +342679,Employment and Training,Employment and Training +342679,International Trade,International Trade +342680,Employment and Training,Employment and Training +394805,International Trade,International Trade +394805,Agriculture,Agriculture +522217,Housing,Housing +343817,Budget,Budget +351314,Education,Education +351312,Health,Health +351310,Sports,Sports +466318,Industry,Industry +495752,Government Procurement,Government Procurement +377760,Mining,Mining +398019,Internal Trade,Internal Trade +375477,International Trade,International Trade +351673,Taxation and Finance,Impôts et finances +445535,Budget,Budget +368485,Agriculture,Agriculture +344775,Environment,Environment +343164,Fisheries,Fisheries +348201,Consumer Issues,Consumer Issues +348202,Small Business,Small Business +368495,International Trade,International Trade +351424,Energy,Energy +343203,Health,Health +343204,Budget,Budget +355025,Official Languages,Official Languages +404071,Employment and Training,Employment and Training +404069,Consumer Issues,Consumer Issues +404069,Industry,Industry +358963,International Trade,International Trade +397956,Agriculture,Agriculture +397966,Internal Trade,Internal Trade +375479,International Trade,International Trade +420339,Agriculture,Agriculture +347786,Internal Trade,Internal Trade +397961,International Trade,International Trade +420338,Agriculture,Agriculture +347782,Internal Trade,Internal Trade +420338,International Trade,International Trade +347783,Agriculture,Agriculture +397955,Internal Trade,Internal Trade +347783,International Trade,International Trade +347785,Agriculture,Agriculture +398016,Internal Trade,Internal Trade +398016,International Trade,International Trade +351072,Mining,Mining +347787,Internal Trade,Internal Trade +398023,International Trade,International Trade +524355,Environment,Environment +394210,Research and Development,Research and Development +349887,Government Procurement,Government Procurement +343322,Labour,Labour +524334,Environment,Environment +426623,Research and Development,Research and Development +451665,International Trade,International Trade +352598,Transportation,Transportation +343621,Economic Development,Economic Development +343621,Employment and Training,Employment and Training +343621,Government Procurement,Government Procurement +343712,Health,Health +343771,International Relations,International Relations +348423,Taxation and Finance,Taxation and Finance +380961,International Trade,International Trade +343795,Regional Development,Regional Development +343808,Regional Development,Regional Development +396676,Privacy and Access to Information,Privacy and Access to Information +343829,Privacy and Access to Information,Privacy and Access to Information +343831,Privacy and Access to Information,Privacy and Access to Information +347084,Housing,Housing +347084,Transportation,Transportation +492201,Transportation,Transportation +544408,Economic Development,Economic Development +388107,Security,Security +388104,Industry,Industry +388107,Consumer Issues,Consumer Issues +388104,Health,Health +343568,International Trade,International Trade +343568,Security,Security +343942,International Trade,International Trade +343942,Security,Security +343957,International Trade,International Trade +343957,Security,Security +343960,International Trade,International Trade +343960,Security,Security +343961,International Trade,International Trade +343961,Security,Security +343962,International Trade,International Trade +343964,International Trade,International Trade +349225,Infrastructure,Infrastructure +344122,Infrastructure,Infrastructure +344125,Employment and Training,Employment and Training +373761,International Trade,International Trade +368534,Agriculture,Agriculture +393831,International Trade,International Trade +462067,International Trade,International Trade +462067,Agriculture,Agriculture +344258,Justice and Law Enforcement,Justice and Law Enforcement +344258,Financial Institutions,Financial Institutions +344258,Privacy and Access to Information,Privacy and Access to Information +347433,Health,Health +353422,Transportation,Transportation +353422,Regional Development,Regional Development +353422,Mining,Mining +353422,Agriculture,Agriculture +353422,International Relations,International Relations +349039,Employment and Training,Employment and Training +348899,Security,Security +375534,Taxation and Finance,Taxation and Finance +374096,Small Business,Small Business +367185,Financial Institutions,Financial Institutions +349359,International Development,International Development +349360,Research and Development,Research and Development +484052,International Trade,Commerce international +392199,Environment,Environnement +481302,Industry,Industrie +484052,Infrastructure,Infrastructure +476899,Transportation,Transports +347837,Employment and Training,Employment and Training +347837,Government Procurement,Government Procurement +347837,International Trade,International Trade +347837,Justice and Law Enforcement,Justice and Law Enforcement +347837,Security,Security +344422,Defence,Defence +344421,Energy,Energy +344419,Security,Security +519418,Justice and Law Enforcement,Justice and Law Enforcement +533533,Industry,Industry +344588,Industry,Industry +344588,Regional Development,Regional Development +463592,Infrastructure,Infrastructure +344525,Agriculture,Agriculture +344525,International Development,International Development +344497,Security,Security +363742,Employment and Training,Emploi et formation +349660,Employment and Training,Employment and Training +350739,Agriculture,Agriculture +349683,Agriculture,Agriculture +377920,Climate,Climate +377920,Taxation and Finance,Taxation and Finance +356412,Economic Development,Economic Development +356399,Industry,Industry +344847,Energy,Energy +347345,Consumer Issues,Consumer Issues +347345,Industry,Industry +349389,Employment and Training,Employment and Training +349389,Immigration,Immigration +349393,International Trade,International Trade +349390,Regional Development,Regional Development +429910,Agriculture,Agriculture +423033,International Trade,International Trade +394686,International Trade,International Trade +344766,Infrastructure,Infrastructure +344768,Consumer Issues,Consumer Issues +344768,Small Business,Small Business +483146,Consumer Issues,Consumer Issues +349418,Health,Health +357201,Agriculture,Agriculture +346077,Internal Trade,Commerce intérieur +357196,International Trade,Commerce international +419930,Agriculture,Agriculture +438006,Consumer Issues,Consumer Issues +465323,Health,Health +496918,International Trade,International Trade +413936,Research and Development,Research and Development +346437,Transportation,Transportation +356425,Economic Development,Economic Development +356424,Industry,Industry +358947,Small Business,Small Business +349659,Agriculture,Agriculture +349659,Economic Development,Economic Development +400017,International Trade,Commerce international +509309,Budget,Budget +486552,Economic Development,Economic Development +420143,Municipalities,Municipalities +346762,Constitutional Issues,Constitutional Issues +346762,Privacy and Access to Information,Privacy and Access to Information +346762,Security,Security +421179,Agriculture,Agriculture +421179,Internal Trade,Commerce intérieur +370353,International Trade,Commerce international +445924,Transportation,Transports +347079,Security,Security +347099,Agriculture,Agriculture +357934,Infrastructure,Infrastructure +454659,Defence,Defence +458536,Government Procurement,Government Procurement +520974,Industry,Industry +421783,International Relations,International Relations +433011,International Trade,International Trade +502159,Regional Development,Regional Development +347433,Agriculture,Agriculture +349339,Government Procurement,Government Procurement +470258,Employment and Training,Employment and Training +349537,Sports,Sports +382242,International Trade,International Trade +500337,Security,Security +393851,International Trade,International Trade +393847,International Trade,International Trade +384223,Transportation,Transportation +433014,Industry,Industry +433013,Industry,Industry +433012,Industry,Industry +433011,Industry,Industry +433007,Industry,Industry +425047,Industry,Industry +412134,Industry,Industry +417756,International Relations,International Relations +405022,International Relations,International Relations +370567,International Relations,International Relations +369522,International Relations,International Relations +392214,International Relations,International Relations +384725,International Relations,International Relations +384724,International Relations,International Relations +384723,International Relations,International Relations +379125,International Relations,International Relations +379122,International Relations,International Relations +375934,International Relations,International Relations +375929,International Relations,International Relations +375926,International Relations,International Relations +375921,International Relations,International Relations +370570,International Relations,International Relations +502159,International Relations,International Relations +487258,International Relations,International Relations +457193,International Relations,International Relations +454657,International Relations,International Relations +444300,International Relations,International Relations +441595,International Relations,International Relations +441593,International Relations,International Relations +441592,International Relations,International Relations +439148,International Relations,International Relations +439142,International Relations,International Relations +439137,International Relations,International Relations +439136,International Relations,International Relations +439133,International Relations,International Relations +439130,International Relations,International Relations +439127,International Relations,International Relations +434978,International Relations,International Relations +434977,International Relations,International Relations +434976,International Relations,International Relations +434975,International Relations,International Relations +434974,International Relations,International Relations +434973,International Relations,International Relations +434969,International Relations,International Relations +434968,International Relations,International Relations +433020,International Relations,International Relations +433014,International Relations,International Relations +433013,International Relations,International Relations +433012,International Relations,International Relations +433011,International Relations,International Relations +433007,International Relations,International Relations +433007,International Trade,International Trade +432130,International Trade,International Trade +375929,International Trade,International Trade +375926,International Trade,International Trade +375921,International Trade,International Trade +370570,International Trade,International Trade +370567,International Trade,International Trade +369522,International Trade,International Trade +355836,International Trade,International Trade +425049,International Trade,International Trade +425048,International Trade,International Trade +425047,International Trade,International Trade +423682,International Trade,International Trade +421783,International Trade,International Trade +417756,International Trade,International Trade +412128,International Trade,International Trade +406508,International Trade,International Trade +405022,International Trade,International Trade +403019,International Trade,International Trade +396208,International Trade,International Trade +392214,International Trade,International Trade +391190,International Trade,International Trade +391177,International Trade,International Trade +384725,International Trade,International Trade +384724,International Trade,International Trade +384723,International Trade,International Trade +375934,International Trade,International Trade +520974,International Trade,International Trade +519677,International Trade,International Trade +519671,International Trade,International Trade +519670,International Trade,International Trade +517194,International Trade,International Trade +517193,International Trade,International Trade +515338,International Trade,International Trade +515337,International Trade,International Trade +514705,International Trade,International Trade +513807,International Trade,International Trade +512811,International Trade,International Trade +512809,International Trade,International Trade +510865,International Trade,International Trade +504806,International Trade,International Trade +502159,International Trade,International Trade +502152,International Trade,International Trade +495834,International Trade,International Trade +495829,International Trade,International Trade +493351,International Trade,International Trade +493347,International Trade,International Trade +491106,International Trade,International Trade +491103,International Trade,International Trade +487268,International Trade,International Trade +487262,International Trade,International Trade +487258,International Trade,International Trade +487251,International Trade,International Trade +484779,International Trade,International Trade +479304,International Trade,International Trade +477294,International Trade,International Trade +477284,International Trade,International Trade +460069,International Trade,International Trade +458536,International Trade,International Trade +457193,International Trade,International Trade +454657,International Trade,International Trade +450025,International Trade,International Trade +444300,International Trade,International Trade +441595,International Trade,International Trade +441593,International Trade,International Trade +441592,International Trade,International Trade +439148,International Trade,International Trade +439142,International Trade,International Trade +439137,International Trade,International Trade +439136,International Trade,International Trade +439133,International Trade,International Trade +439130,International Trade,International Trade +439127,International Trade,International Trade +434978,International Trade,International Trade +434977,International Trade,International Trade +434976,International Trade,International Trade +434975,International Trade,International Trade +434974,International Trade,International Trade +434973,International Trade,International Trade +434969,International Trade,International Trade +434968,International Trade,International Trade +434966,International Trade,International Trade +434965,International Trade,International Trade +434962,International Trade,International Trade +434960,International Trade,International Trade +433020,International Trade,International Trade +433014,International Trade,International Trade +433013,International Trade,International Trade +433012,International Trade,International Trade +491103,Regional Development,Regional Development +487268,Regional Development,Regional Development +433020,Regional Development,Regional Development +433014,Regional Development,Regional Development +433013,Regional Development,Regional Development +433012,Regional Development,Regional Development +433011,Regional Development,Regional Development +433007,Regional Development,Regional Development +379125,Regional Development,Regional Development +379122,Regional Development,Regional Development +512811,Regional Development,Regional Development +347432,Agriculture,Agriculture +358963,Agriculture,Agriculture +349338,Government Procurement,Government Procurement +349337,Government Procurement,Government Procurement +381265,International Trade,International Trade +381264,International Trade,International Trade +371922,International Trade,International Trade +371807,International Trade,International Trade +370632,International Trade,International Trade +370627,International Trade,International Trade +414604,International Trade,International Trade +414603,International Trade,International Trade +414602,International Trade,International Trade +414601,International Trade,International Trade +414600,International Trade,International Trade +414599,International Trade,International Trade +414598,International Trade,International Trade +414597,International Trade,International Trade +414587,International Trade,International Trade +409277,International Trade,International Trade +404317,International Trade,International Trade +399640,Security,Security +389357,Security,Security +382668,Security,Security +347624,Security,Security +514298,Security,Security +512618,Security,Security +393850,International Trade,International Trade +393846,International Trade,International Trade +368552,International Trade,International Trade +347678,International Trade,International Trade +347675,International Trade,International Trade +466012,International Trade,International Trade +445206,International Trade,International Trade +437492,International Trade,International Trade +437490,International Trade,International Trade +418707,International Trade,International Trade +448788,International Trade,International Trade +418706,International Trade,International Trade +370340,International Trade,International Trade +368551,International Trade,International Trade +368550,International Trade,International Trade +368548,International Trade,International Trade +368547,International Trade,International Trade +365950,International Trade,International Trade +347680,International Trade,International Trade +347679,International Trade,International Trade +347677,International Trade,International Trade +347676,International Trade,International Trade +347726,Transportation,Transportation +426928,Transportation,Transportation +426923,Transportation,Transportation +400226,Transportation,Transportation +400225,Transportation,Transportation +400223,Transportation,Transportation +400222,Transportation,Transportation +400221,Transportation,Transportation +384093,Transportation,Transportation +377388,Transportation,Transportation +377387,Transportation,Transportation +377386,Transportation,Transportation +377385,Transportation,Transportation +377384,Transportation,Transportation +374760,Transportation,Transportation +370021,Transportation,Transportation +367873,Transportation,Transportation +453176,Transportation,Transportation +426942,Transportation,Transportation +400222,Fisheries,Fisheries +347963,Health,Health +347959,Health,Health +349681,Health,Health +349680,Health,Health +349679,Health,Health +527638,Government Procurement,Government Procurement +527637,Government Procurement,Government Procurement +436166,Government Procurement,Government Procurement +436165,Government Procurement,Government Procurement +436164,Government Procurement,Government Procurement +436163,Government Procurement,Government Procurement +436162,Government Procurement,Government Procurement +422527,Government Procurement,Government Procurement +521568,Government Procurement,Government Procurement +521567,Government Procurement,Government Procurement +519071,Government Procurement,Government Procurement +519070,Government Procurement,Government Procurement +519069,Government Procurement,Government Procurement +519021,Government Procurement,Government Procurement +519020,Government Procurement,Government Procurement +519019,Government Procurement,Government Procurement +519017,Government Procurement,Government Procurement +508596,Government Procurement,Government Procurement +508586,Government Procurement,Government Procurement +508578,Government Procurement,Government Procurement +504719,Government Procurement,Government Procurement +501607,Government Procurement,Government Procurement +501606,Government Procurement,Government Procurement +501605,Government Procurement,Government Procurement +501604,Government Procurement,Government Procurement +499179,Government Procurement,Government Procurement +499177,Government Procurement,Government Procurement +495923,Government Procurement,Government Procurement +495921,Government Procurement,Government Procurement +495920,Government Procurement,Government Procurement +493478,Government Procurement,Government Procurement +493474,Government Procurement,Government Procurement +493473,Government Procurement,Government Procurement +493472,Government Procurement,Government Procurement +493470,Government Procurement,Government Procurement +493467,Government Procurement,Government Procurement +493464,Government Procurement,Government Procurement +493457,Government Procurement,Government Procurement +492170,Government Procurement,Government Procurement +492169,Government Procurement,Government Procurement +492168,Government Procurement,Government Procurement +492167,Government Procurement,Government Procurement +492166,Government Procurement,Government Procurement +492164,Government Procurement,Government Procurement +492163,Government Procurement,Government Procurement +491550,Government Procurement,Government Procurement +491548,Government Procurement,Government Procurement +491544,Government Procurement,Government Procurement +491538,Government Procurement,Government Procurement +491531,Government Procurement,Government Procurement +491527,Government Procurement,Government Procurement +491523,Government Procurement,Government Procurement +491520,Government Procurement,Government Procurement +491510,Government Procurement,Government Procurement +491478,Government Procurement,Government Procurement +491466,Government Procurement,Government Procurement +491458,Government Procurement,Government Procurement +491453,Government Procurement,Government Procurement +484197,Government Procurement,Government Procurement +484195,Government Procurement,Government Procurement +484193,Government Procurement,Government Procurement +484190,Government Procurement,Government Procurement +484189,Government Procurement,Government Procurement +484188,Government Procurement,Government Procurement +484187,Government Procurement,Government Procurement +484186,Government Procurement,Government Procurement +484185,Government Procurement,Government Procurement +484184,Government Procurement,Government Procurement +484183,Government Procurement,Government Procurement +484182,Government Procurement,Government Procurement +481652,Government Procurement,Government Procurement +481645,Government Procurement,Government Procurement +481635,Government Procurement,Government Procurement +481634,Government Procurement,Government Procurement +479876,Government Procurement,Government Procurement +479874,Government Procurement,Government Procurement +479873,Government Procurement,Government Procurement +479871,Government Procurement,Government Procurement +479870,Government Procurement,Government Procurement +479869,Government Procurement,Government Procurement +479867,Government Procurement,Government Procurement +478122,Government Procurement,Government Procurement +478121,Government Procurement,Government Procurement +478120,Government Procurement,Government Procurement +478119,Government Procurement,Government Procurement +478118,Government Procurement,Government Procurement +478117,Government Procurement,Government Procurement +478115,Government Procurement,Government Procurement +478113,Government Procurement,Government Procurement +478110,Government Procurement,Government Procurement +478106,Government Procurement,Government Procurement +476194,Government Procurement,Government Procurement +476193,Government Procurement,Government Procurement +476192,Government Procurement,Government Procurement +476191,Government Procurement,Government Procurement +470524,Government Procurement,Government Procurement +470522,Government Procurement,Government Procurement +470520,Government Procurement,Government Procurement +470518,Government Procurement,Government Procurement +470516,Government Procurement,Government Procurement +470515,Government Procurement,Government Procurement +468354,Government Procurement,Government Procurement +468351,Government Procurement,Government Procurement +464146,Government Procurement,Government Procurement +464145,Government Procurement,Government Procurement +464143,Government Procurement,Government Procurement +464142,Government Procurement,Government Procurement +464141,Government Procurement,Government Procurement +464140,Government Procurement,Government Procurement +464138,Government Procurement,Government Procurement +462425,Government Procurement,Government Procurement +462424,Government Procurement,Government Procurement +462420,Government Procurement,Government Procurement +462419,Government Procurement,Government Procurement +462417,Government Procurement,Government Procurement +462414,Government Procurement,Government Procurement +462412,Government Procurement,Government Procurement +461383,Government Procurement,Government Procurement +460567,Government Procurement,Government Procurement +460499,Government Procurement,Government Procurement +460497,Government Procurement,Government Procurement +460248,Government Procurement,Government Procurement +459714,Government Procurement,Government Procurement +458388,Government Procurement,Government Procurement +457570,Government Procurement,Government Procurement +455411,Government Procurement,Government Procurement +455410,Government Procurement,Government Procurement +455409,Government Procurement,Government Procurement +455408,Government Procurement,Government Procurement +455407,Government Procurement,Government Procurement +455406,Government Procurement,Government Procurement +451651,Government Procurement,Government Procurement +449871,Government Procurement,Government Procurement +449870,Government Procurement,Government Procurement +449869,Government Procurement,Government Procurement +449868,Government Procurement,Government Procurement +449867,Government Procurement,Government Procurement +449865,Government Procurement,Government Procurement +447814,Government Procurement,Government Procurement +447808,Government Procurement,Government Procurement +447401,Government Procurement,Government Procurement +445848,Government Procurement,Government Procurement +445847,Government Procurement,Government Procurement +445846,Government Procurement,Government Procurement +445845,Government Procurement,Government Procurement +445844,Government Procurement,Government Procurement +445843,Government Procurement,Government Procurement +445842,Government Procurement,Government Procurement +445841,Government Procurement,Government Procurement +445840,Government Procurement,Government Procurement +445839,Government Procurement,Government Procurement +445837,Government Procurement,Government Procurement +445836,Government Procurement,Government Procurement +445835,Government Procurement,Government Procurement +443684,Government Procurement,Government Procurement +443679,Government Procurement,Government Procurement +436170,Government Procurement,Government Procurement +436169,Government Procurement,Government Procurement +436168,Government Procurement,Government Procurement +436167,Government Procurement,Government Procurement +539397,Government Procurement,Government Procurement +537165,Government Procurement,Government Procurement +473957,Health,Health +473956,Health,Health +420195,Health,Health +416208,Health,Health +416205,Health,Health +416204,Health,Health +413950,Health,Health +413949,Health,Health +407688,Health,Health +406406,Health,Health +406405,Health,Health +405229,Health,Health +403525,Health,Health +403521,Health,Health +398620,Health,Health +396351,Health,Health +392432,Health,Health +390946,Health,Health +390939,Health,Health +383772,Health,Health +359453,Health,Health +359436,Health,Health +359432,Health,Health +359428,Health,Health +359425,Health,Health +477014,Health,Health +413950,International Development,International Development +413949,International Development,International Development +406405,International Development,International Development +405229,International Development,International Development +403525,International Development,International Development +403521,International Development,International Development +398627,International Development,International Development +396351,International Development,International Development +396345,International Development,International Development +390946,International Development,International Development +390939,International Development,International Development +383772,International Development,International Development +382303,International Development,International Development +382297,International Development,International Development +381461,International Development,International Development +381429,International Development,International Development +381427,International Development,International Development +378965,International Development,International Development +376562,International Development,International Development +376560,International Development,International Development +376559,International Development,International Development +374572,International Development,International Development +374571,International Development,International Development +361191,International Development,International Development +359453,International Development,International Development +359436,International Development,International Development +359432,International Development,International Development +359428,International Development,International Development +359425,International Development,International Development +543692,International Development,International Development +543688,International Development,International Development +543685,International Development,International Development +536577,International Development,International Development +534543,International Development,International Development +528064,International Development,International Development +525282,International Development,International Development +525281,International Development,International Development +521242,International Development,International Development +521149,International Development,International Development +507723,International Development,International Development +507721,International Development,International Development +501623,International Development,International Development +501622,International Development,International Development +492954,International Development,International Development +492953,International Development,International Development +490224,International Development,International Development +490221,International Development,International Development +479442,International Development,International Development +479438,International Development,International Development +477017,International Development,International Development +477016,International Development,International Development +477013,International Development,International Development +474571,International Development,International Development +473957,International Development,International Development +473956,International Development,International Development +420195,International Development,International Development +348786,Transportation,Transports +348784,Transportation,Transports +419326,International Trade,International Trade +349004,Health,Health +353596,Health,Health +350939,Health,Health +349007,Health,Health +349006,Health,Health +354783,Transportation,Transportation +354782,Transportation,Transportation +354781,Transportation,Transportation +354780,Transportation,Transportation +354785,Transportation,Transportation +350489,Infrastructure,Infrastructure +364846,Agriculture,Agriculture +364845,Agriculture,Agriculture +391864,Agriculture,Agriculture +389188,Agriculture,Agriculture +385649,Agriculture,Agriculture +376529,Budget,Budget +376527,Budget,Budget +376533,Budget,Budget +376532,Budget,Budget +376531,Budget,Budget +349317,Health,Health +348004,Health,Health +356882,Health,Health +448596,Mining,Mining +429097,Mining,Mining +429092,Mining,Mining +398648,Mining,Mining +392815,Mining,Mining +392813,Mining,Mining +392812,Mining,Mining +380789,Mining,Mining +347921,Mining,Mining +473109,Mining,Mining +473108,Mining,Mining +452624,Mining,Mining +465374,Labour,Travail +465373,Labour,Travail +378726,Labour,Travail +355580,Labour,Travail +352066,Labour,Travail +352065,Labour,Travail +350241,Labour,Travail +534372,Labour,Travail +530218,Labour,Travail +523607,Labour,Travail +516799,Labour,Travail +496611,Labour,Travail +348686,Economic Development,Economic Development +348684,Economic Development,Economic Development +357952,Economic Development,Economic Development +350265,Economic Development,Economic Development +350264,Economic Development,Economic Development +348940,Economic Development,Economic Development +348686,Fisheries,Fisheries +348684,Fisheries,Fisheries +357952,Fisheries,Fisheries +350265,Fisheries,Fisheries +350264,Fisheries,Fisheries +348940,Fisheries,Fisheries +348686,Regional Development,Regional Development +348684,Regional Development,Regional Development +357952,Regional Development,Regional Development +350265,Regional Development,Regional Development +350264,Regional Development,Regional Development +348940,Regional Development,Regional Development +350137,Fisheries,Fisheries +350135,Fisheries,Fisheries +370219,Fisheries,Fisheries +370214,Fisheries,Fisheries +370211,Fisheries,Fisheries +354301,Fisheries,Fisheries +370214,Economic Development,Economic Development +370211,Economic Development,Economic Development +370214,Regional Development,Regional Development +370211,Regional Development,Regional Development +354907,Environment,Environment +354906,Environment,Environment +354905,Environment,Environment +360026,Environment,Environment +360003,Fisheries,Fisheries +354905,Mining,Mining +360026,Mining,Mining +360003,Mining,Mining +354907,Mining,Mining +350789,Consumer Issues,Consumer Issues +350789,Financial Institutions,Financial Institutions +350785,Financial Institutions,Financial Institutions +352203,Research and Development,Research and Development +349663,Research and Development,Research and Development +352208,Research and Development,Research and Development +352207,Research and Development,Research and Development +352206,Research and Development,Research and Development +352205,Research and Development,Research and Development +351084,Privacy and Access to Information,Privacy and Access to Information +351079,Privacy and Access to Information,Privacy and Access to Information +354088,Privacy and Access to Information,Privacy and Access to Information +351090,Privacy and Access to Information,Privacy and Access to Information +351089,Privacy and Access to Information,Privacy and Access to Information +351088,Privacy and Access to Information,Privacy and Access to Information +351086,Privacy and Access to Information,Privacy and Access to Information +374004,Transportation,Transportation +522910,Transportation,Transportation +463130,Transportation,Transportation +413025,Transportation,Transportation +355538,Financial Institutions,Financial Institutions +355537,Financial Institutions,Financial Institutions +355564,Financial Institutions,Financial Institutions +355563,Financial Institutions,Financial Institutions +355562,Financial Institutions,Financial Institutions +355561,Financial Institutions,Financial Institutions +355559,Financial Institutions,Financial Institutions +355558,Financial Institutions,Financial Institutions +355557,Financial Institutions,Financial Institutions +355554,Financial Institutions,Financial Institutions +355553,Financial Institutions,Financial Institutions +355551,Financial Institutions,Financial Institutions +355550,Financial Institutions,Financial Institutions +355548,Financial Institutions,Financial Institutions +355545,Financial Institutions,Financial Institutions +355543,Financial Institutions,Financial Institutions +355541,Financial Institutions,Financial Institutions +348352,Taxation and Finance,Taxation and Finance +408230,Taxation and Finance,Taxation and Finance +349616,Infrastructure,Infrastructure +349615,Infrastructure,Infrastructure +355911,Infrastructure,Infrastructure +380305,Transportation,Transportation +348375,Transportation,Transportation +424836,Transportation,Transportation +424835,Transportation,Transportation +424833,Transportation,Transportation +420688,Transportation,Transportation +407127,Transportation,Transportation +400739,Transportation,Transportation +397823,Transportation,Transportation +396635,Transportation,Transportation +396445,Transportation,Transportation +394945,Transportation,Transportation +388913,Transportation,Transportation +388912,Transportation,Transportation +388911,Transportation,Transportation +388910,Transportation,Transportation +388724,Transportation,Transportation +388642,Transportation,Transportation +371338,Employment and Training,Employment and Training +371336,Employment and Training,Employment and Training +350313,Employment and Training,Employment and Training +375695,Employment and Training,Employment and Training +374566,Employment and Training,Employment and Training +371342,Employment and Training,Employment and Training +371336,Infrastructure,Infrastructure +350313,Infrastructure,Infrastructure +371342,Infrastructure,Infrastructure +371339,Infrastructure,Infrastructure +371336,Education,Education +350313,Education,Education +371342,Education,Education +371339,Education,Education +391498,Immigration,Immigration +380155,Immigration,Immigration +350962,Justice and Law Enforcement,Justice et application des lois +350959,Justice and Law Enforcement,Justice et application des lois +350962,Privacy and Access to Information,Vie privée et Accès à l'information +350959,Privacy and Access to Information,Vie privée et Accès à l'information +350792,Transportation,Transportation +350791,Transportation,Transportation +350796,Transportation,Transportation +350795,Transportation,Transportation +350794,Transportation,Transportation +350792,Infrastructure,Infrastructure +350791,Infrastructure,Infrastructure +350796,Infrastructure,Infrastructure +350795,Infrastructure,Infrastructure +350794,Infrastructure,Infrastructure +350792,Energy,Energy +350791,Energy,Energy +350796,Energy,Energy +350795,Energy,Energy +350794,Energy,Energy +350793,Environment,Environment +350792,Environment,Environment +350795,Environment,Environment +350792,Industry,Industry +350791,Industry,Industry +350796,Industry,Industry +350795,Industry,Industry +348584,Immigration,Immigration +348581,Immigration,Immigration +355733,Health,Health +353162,Health,Health +355735,Health,Health +355734,Defence,Defence +355733,Defence,Defence +429429,Education,Education +388257,Education,Education +370958,Education,Education +366542,Education,Education +366539,Education,Education +366505,Education,Education +366504,Education,Education +362203,Education,Education +362202,Education,Education +361156,Education,Education +357722,Education,Education +357721,Education,Education +357719,Education,Education +535105,Privacy and Access to Information,Privacy and Access to Information +502534,Privacy and Access to Information,Privacy and Access to Information +363500,Privacy and Access to Information,Privacy and Access to Information +363459,Privacy and Access to Information,Privacy and Access to Information +361157,Privacy and Access to Information,Privacy and Access to Information +353484,Privacy and Access to Information,Privacy and Access to Information +416944,Privacy and Access to Information,Privacy and Access to Information +416937,Privacy and Access to Information,Privacy and Access to Information +543865,Privacy and Access to Information,Privacy and Access to Information +535160,Privacy and Access to Information,Privacy and Access to Information +409904,Security,Security +409900,Security,Security +362203,Security,Security +361157,Security,Security +357720,Security,Security +535298,Security,Security +535291,Security,Security +535287,Security,Security +528745,Security,Security +490952,Security,Security +490946,Security,Security +490942,Security,Security +478164,Security,Security +465012,Security,Security +465010,Security,Security +459625,Security,Security +450313,Security,Security +450312,Security,Security +448223,Security,Security +431192,Security,Security +429446,Security,Security +429429,Security,Security +429423,Security,Security +429391,Security,Security +417789,Security,Security +357719,Small Business,Small Business +357717,Small Business,Small Business +456058,Small Business,Small Business +362203,Small Business,Small Business +362202,Small Business,Small Business +357722,Small Business,Small Business +349233,International Relations,International Relations +349233,Mining,Mining +493972,Industry,Industry +483765,Industry,Industry +504516,Industry,Industry +504512,Industry,Industry +500692,Industry,Industry +500682,Industry,Industry +350781,Taxation and Finance,Taxation and Finance +350780,Taxation and Finance,Taxation and Finance +350784,Taxation and Finance,Taxation and Finance +350783,Taxation and Finance,Taxation and Finance +351207,Taxation and Finance,Taxation and Finance +351199,Taxation and Finance,Taxation and Finance +351207,Sports,Sports +351199,Sports,Sports +371551,Economic Development,Economic Development +349144,Economic Development,Economic Development +379107,Economic Development,Economic Development +393028,Budget,Budget +393027,Budget,Budget +384787,Budget,Budget +384785,Budget,Budget +384783,Budget,Budget +384780,Budget,Budget +384774,Budget,Budget +384766,Budget,Budget +384764,Budget,Budget +384760,Budget,Budget +384758,Budget,Budget +384757,Budget,Budget +384200,Budget,Budget +384199,Budget,Budget +384198,Budget,Budget +353819,Budget,Budget +351666,Budget,Budget +351665,Budget,Budget +351663,Budget,Budget +351661,Budget,Budget +351660,Budget,Budget +530849,Budget,Budget +506966,Budget,Budget +503920,Budget,Budget +500580,Budget,Budget +498283,Budget,Budget +498273,Budget,Budget +498270,Budget,Budget +494609,Budget,Budget +489308,Budget,Budget +486152,Budget,Budget +396281,Budget,Budget +396279,Budget,Budget +396276,Budget,Budget +396275,Budget,Budget +396274,Budget,Budget +396273,Budget,Budget +396270,Budget,Budget +393030,Budget,Budget +439849,Forestry,Forestry +414984,Forestry,Forestry +404991,Forestry,Forestry +349297,Forestry,Forestry +349394,Immigration,Immigration +349394,International Trade,International Trade +351628,Education,Education +351625,Education,Education +351635,Education,Education +351634,Education,Education +351633,Education,Education +351632,Education,Education +351631,Education,Education +351630,Education,Education +351625,Environment,Environment +351624,Environment,Environment +351635,Environment,Environment +351630,Environment,Environment +351628,Environment,Environment +351625,Fisheries,Fisheries +351624,Fisheries,Fisheries +351635,Fisheries,Fisheries +351634,Fisheries,Fisheries +351632,Fisheries,Fisheries +351631,Fisheries,Fisheries +351630,Fisheries,Fisheries +351629,Fisheries,Fisheries +351628,Fisheries,Fisheries +351627,Industry,Industry +351630,Mining,Mining +351628,Mining,Mining +351625,Regional Development,Regional Development +351633,Regional Development,Regional Development +351632,Regional Development,Regional Development +351630,Regional Development,Regional Development +351625,Research and Development,Research and Development +351624,Research and Development,Research and Development +351634,Research and Development,Research and Development +351633,Research and Development,Research and Development +351632,Research and Development,Research and Development +367823,Consumer Issues,Consumer Issues +367822,Consumer Issues,Consumer Issues +366949,Consumer Issues,Consumer Issues +366948,Consumer Issues,Consumer Issues +366268,Consumer Issues,Consumer Issues +366267,Consumer Issues,Consumer Issues +360426,Consumer Issues,Consumer Issues +360425,Consumer Issues,Consumer Issues +349474,Consumer Issues,Consumer Issues +349470,Consumer Issues,Consumer Issues +382989,Consumer Issues,Consumer Issues +382987,Consumer Issues,Consumer Issues +382940,Consumer Issues,Consumer Issues +382938,Consumer Issues,Consumer Issues +382937,Consumer Issues,Consumer Issues +382936,Consumer Issues,Consumer Issues +375186,Consumer Issues,Consumer Issues +375185,Consumer Issues,Consumer Issues +375184,Consumer Issues,Consumer Issues +375183,Consumer Issues,Consumer Issues +352461,Health,Health +352460,Health,Health +349474,Health,Health +349470,Health,Health +382940,Health,Health +382937,Health,Health +382936,Health,Health +375186,Health,Health +375185,Health,Health +375183,Health,Health +367823,Health,Health +367822,Health,Health +366949,Health,Health +366948,Health,Health +366268,Health,Health +366267,Health,Health +360426,Health,Health +349474,Research and Development,Research and Development +349470,Research and Development,Research and Development +382940,Research and Development,Research and Development +382938,Research and Development,Research and Development +375182,Research and Development,Research and Development +366268,Research and Development,Research and Development +360426,Research and Development,Research and Development +377109,Consumer Issues,Consumer Issues +377108,Consumer Issues,Consumer Issues +368589,Consumer Issues,Consumer Issues +365582,Consumer Issues,Consumer Issues +358356,Consumer Issues,Consumer Issues +358354,Consumer Issues,Consumer Issues +349489,Consumer Issues,Consumer Issues +385990,Consumer Issues,Consumer Issues +385988,Consumer Issues,Consumer Issues +379044,Consumer Issues,Consumer Issues +377121,Consumer Issues,Consumer Issues +377113,Consumer Issues,Consumer Issues +377112,Consumer Issues,Consumer Issues +377111,Consumer Issues,Consumer Issues +368589,Financial Institutions,Financial Institutions +365582,Financial Institutions,Financial Institutions +358356,Financial Institutions,Financial Institutions +358354,Financial Institutions,Financial Institutions +349489,Financial Institutions,Financial Institutions +385990,Financial Institutions,Financial Institutions +385988,Financial Institutions,Financial Institutions +379044,Financial Institutions,Financial Institutions +377121,Financial Institutions,Financial Institutions +377113,Financial Institutions,Financial Institutions +377112,Financial Institutions,Financial Institutions +377111,Financial Institutions,Financial Institutions +377110,Financial Institutions,Financial Institutions +377109,Financial Institutions,Financial Institutions +358354,Housing,Housing +349489,Housing,Housing +385990,Housing,Housing +385988,Housing,Housing +379044,Housing,Housing +377121,Housing,Housing +377113,Housing,Housing +377112,Housing,Housing +377111,Housing,Housing +377110,Housing,Housing +426932,Transportation,Transportation +400225,Fisheries,Fisheries +349677,Health,Health +347959,Consumer Issues,Consumer Issues +537164,Government Procurement,Government Procurement +477009,Health,Health +416208,International Development,International Development +348787,Transportation,Transports +347738,International Trade,International Trade +347738,Economic Development,Economic Development +348424,Employment and Training,Employment and Training +349005,Health,Health +356543,Fisheries,Fisheries +356543,Environment,Environment +349204,Health,Health +354784,Transportation,Transportation +353522,Government Procurement,Government Procurement +349000,Regional Development,Regional Development +353758,Infrastructure,Infrastructure +364847,Agriculture,Agriculture +351579,Economic Development,Economic Development +351579,Regional Development,Regional Development +376530,Budget,Budget +428654,Agriculture,Agriculture +428654,Financial Institutions,Financial Institutions +356881,Health,Health +347920,Budget,Budget +350625,Economic Development,Economic Development +350625,Employment and Training,Employment and Training +350625,Health,Health +350625,Labour,Labour +450114,Mining,Mining +485780,Labour,Travail +348687,Economic Development,Economic Development +348687,Fisheries,Fisheries +348687,Regional Development,Regional Development +348419,Industry,Industry +350253,Fisheries,Fisheries +370219,Economic Development,Economic Development +370219,Regional Development,Regional Development +360003,Environment,Environment +360026,Fisheries,Fisheries +360026,Labour,Labour +354906,Mining,Mining +350785,Privacy and Access to Information,Privacy and Access to Information +350790,Consumer Issues,Consumer Issues +350790,Financial Institutions,Financial Institutions +348087,Budget,Budget +352204,Research and Development,Research and Development +351085,Privacy and Access to Information,Privacy and Access to Information +413014,Transportation,Transportation +394193,Taxation and Finance,Taxation and Finance +355540,Financial Institutions,Financial Institutions +348197,Employment and Training,Employment and Training +348948,Health,Health +356679,Taxation and Finance,Taxation and Finance +348276,Employment and Training,Employment and Training +355910,Economic Development,Economic Development +355910,Infrastructure,Infrastructure +348354,Taxation and Finance,Taxation and Finance +380711,Defence,Défense +380306,Transportation,Transportation +352988,Economic Development,Economic Development +371339,Employment and Training,Employment and Training +371338,Infrastructure,Infrastructure +371338,Education,Education +393934,Economic Development,Economic Development +393934,Regional Development,Regional Development +348442,Immigration,Immigration +348536,Industry,Industry +350963,Justice and Law Enforcement,Justice et application des lois +350963,Privacy and Access to Information,Vie privée et Accès à l'information +350793,Transportation,Transportation +350793,Infrastructure,Infrastructure +350793,Energy,Energy +350794,Environment,Environment +350793,Industry,Industry +378469,Immigration,Immigration +355734,Health,Health +355735,Defence,Defence +357717,Education,Education +535110,Privacy and Access to Information,Privacy and Access to Information +409906,Security,Security +357721,Small Business,Small Business +436873,Government Procurement,Government Procurement +350300,International Relations,International Relations +350300,Mining,Mining +499261,Industry,Industry +350782,Taxation and Finance,Taxation and Finance +351209,Taxation and Finance,Taxation and Finance +351209,Sports,Sports +360704,Economic Development,Développement économique +358530,International Trade,International Trade +350357,Agriculture,Agriculture +349144,Consumer Issues,Consumer Issues +374911,Economic Development,Economic Development +349144,Health,Health +349262,Research and Development,Research and Development +393029,Budget,Budget +478522,Forestry,Forestry +349384,International Trade,International Trade +349384,International Development,International Development +349388,Immigration,Immigration +349388,International Development,International Development +349388,International Trade,International Trade +349391,Immigration,Immigration +349391,International Trade,International Trade +349391,International Development,International Development +357954,Immigration,Immigration +349394,International Development,International Development +357954,International Trade,International Trade +351629,Education,Education +351627,Environment,Environment +351627,Fisheries,Fisheries +351635,Industry,Industry +351635,Mining,Mining +351628,Regional Development,Regional Development +351627,Research and Development,Research and Development +358358,Regional Development,Regional Development +349462,Sports,Sports +349465,Economic Development,Economic Development +349474,Agriculture,Agriculture +375182,Consumer Issues,Consumer Issues +360425,Health,Health +360425,Research and Development,Research and Development +377110,Consumer Issues,Consumer Issues +377108,Financial Institutions,Financial Institutions +358356,Housing,Housing +365582,Industry,Industry +358354,Taxation and Finance,Taxation and Finance +451371,Research and Development,Research and Development +354320,Economic Development,Economic Development +354320,Government Procurement,Government Procurement +354320,Industry,Industry +351299,Internal Trade,Internal Trade +354320,Regional Development,Regional Development +372011,Infrastructure,Infrastructure +372020,Budget,Budget +460142,Energy,Energy +350491,International Development,International Development +469172,International Trade,International Trade +469171,Agriculture,Agriculture +359682,Agriculture,Agriculture +359682,International Trade,International Trade +358785,Transportation,Transportation +355925,Intellectual Property,Intellectual Property +491363,Climate,Climate +382457,Defence,Defence +365103,Industry,Industry +365098,International Relations,International Relations +382458,International Trade,International Trade +351514,Taxation and Finance,Taxation and Finance +365100,Transportation,Transportation +349779,Research and Development,Research and Development +349779,Transportation,Transportation +349758,Economic Development,Economic Development +350019,Budget,Budget +352595,Employment and Training,Employment and Training +349797,International Relations,International Relations +395343,Intellectual Property,Propriété intellectuelle +404658,Health,Health +356726,Small Business,Small Business +350601,Energy,Energy +350120,Consumer Issues,Consumer Issues +350120,Employment and Training,Employment and Training +350120,Industry,Industry +349977,Taxation and Finance,Taxation and Finance +354580,Taxation and Finance,Taxation and Finance +370175,Defence,Defence +355502,Municipalities,Municipalities +360231,Industry,Industry +350153,Taxation and Finance,Taxation and Finance +351695,Health,Health +421316,Agriculture,Agriculture +421314,Health,Health +421316,International Trade,International Trade +473035,Economic Development,Economic Development +350855,Energy,Energy +350855,Environment,Environment +379964,Energy,Energy +379964,Environment,Environment +379964,Industry,Industry +362389,Transportation,Transportation +356217,Environment,Environment +350417,Taxation and Finance,Taxation and Finance +350417,Transportation,Transportation +441624,Employment and Training,Employment and Training +353832,Agriculture,Agriculture +353827,Employment and Training,Employment and Training +353832,Energy,Energy +352546,International Relations,International Relations +353827,International Trade,International Trade +377109,Housing,Housing +377108,Housing,Housing +368589,Housing,Housing +365582,Housing,Housing +358356,Industry,Industry +358354,Industry,Industry +379044,Industry,Industry +349489,Taxation and Finance,Taxation and Finance +379044,Taxation and Finance,Taxation and Finance +368589,Taxation and Finance,Taxation and Finance +365582,Taxation and Finance,Taxation and Finance +358356,Taxation and Finance,Taxation and Finance +451366,Research and Development,Research and Development +431428,Research and Development,Research and Development +390661,Research and Development,Research and Development +390645,Research and Development,Research and Development +388603,Research and Development,Research and Development +388602,Research and Development,Research and Development +388600,Research and Development,Research and Development +388597,Research and Development,Research and Development +364944,Research and Development,Research and Development +349523,Research and Development,Research and Development +505537,Research and Development,Research and Development +502996,Research and Development,Research and Development +498990,Research and Development,Research and Development +453332,Research and Development,Research and Development +351301,Economic Development,Economic Development +351299,Economic Development,Economic Development +351301,Government Procurement,Government Procurement +351299,Government Procurement,Government Procurement +351301,Industry,Industry +351301,Regional Development,Regional Development +351299,Regional Development,Regional Development +371961,Infrastructure,Infrastructure +351168,Infrastructure,Infrastructure +372075,Infrastructure,Infrastructure +372053,Infrastructure,Infrastructure +372047,Infrastructure,Infrastructure +372020,Infrastructure,Infrastructure +372011,Budget,Budget +371961,Budget,Budget +372075,Budget,Budget +372053,Budget,Budget +372047,Budget,Budget +459377,Energy,Energy +459376,Energy,Energy +430988,Energy,Energy +430091,Energy,Energy +368704,Energy,Energy +539403,Energy,Energy +525898,Energy,Energy +519998,Energy,Energy +516887,Energy,Energy +507213,Energy,Energy +501043,Energy,Energy +495461,Energy,Energy +495456,Energy,Energy +490042,Energy,Energy +489906,Energy,Energy +489902,Energy,Energy +487328,Energy,Energy +487011,Energy,Energy +487008,Energy,Energy +487003,Energy,Energy +487000,Energy,Energy +486586,Energy,Energy +486535,Energy,Energy +483819,Energy,Energy +483818,Energy,Energy +483817,Energy,Energy +483813,Energy,Energy +481130,Energy,Energy +481129,Energy,Energy +481127,Energy,Energy +479722,Energy,Energy +479718,Energy,Energy +479717,Energy,Energy +479716,Energy,Energy +479713,Energy,Energy +479709,Energy,Energy +479707,Energy,Energy +479704,Energy,Energy +476910,Energy,Energy +476909,Energy,Energy +476556,Energy,Energy +476554,Energy,Energy +476553,Energy,Energy +474352,Energy,Energy +474351,Energy,Energy +473069,Energy,Energy +473068,Energy,Energy +473067,Energy,Energy +470470,Energy,Energy +470466,Energy,Energy +468215,Energy,Energy +467959,Energy,Energy +467147,Energy,Energy +467126,Energy,Energy +467045,Energy,Energy +467041,Energy,Energy +464982,Energy,Energy +464944,Energy,Energy +464383,Energy,Energy +464381,Energy,Energy +464379,Energy,Energy +464378,Energy,Energy +464376,Energy,Energy +464374,Energy,Energy +464371,Energy,Energy +464370,Energy,Energy +462465,Energy,Energy +461527,Energy,Energy +461526,Energy,Energy +460470,Energy,Energy +460143,Energy,Energy +422509,International Trade,International Trade +469169,Agriculture,Agriculture +456957,Agriculture,Agriculture +422511,Agriculture,Agriculture +422510,Agriculture,Agriculture +422509,Agriculture,Agriculture +422508,Agriculture,Agriculture +422507,Agriculture,Agriculture +469172,Agriculture,Agriculture +358784,Transportation,Transportation +349622,Transportation,Transportation +367626,Transportation,Transportation +358786,Transportation,Transportation +355923,Intellectual Property,Intellectual Property +466224,Climate,Climate +453029,Climate,Climate +444412,Climate,Climate +441185,Climate,Climate +441184,Climate,Climate +441179,Climate,Climate +427738,Climate,Climate +427737,Climate,Climate +418572,Climate,Climate +417379,Climate,Climate +410678,Climate,Climate +410658,Climate,Climate +410657,Climate,Climate +410656,Climate,Climate +410655,Climate,Climate +410654,Climate,Climate +399701,Climate,Climate +399285,Climate,Climate +399284,Climate,Climate +399283,Climate,Climate +399282,Climate,Climate +399279,Climate,Climate +399277,Climate,Climate +399275,Climate,Climate +387012,Climate,Climate +383046,Climate,Climate +383045,Climate,Climate +379327,Climate,Climate +379321,Climate,Climate +371870,Climate,Climate +543709,Climate,Climate +541857,Climate,Climate +541239,Climate,Climate +541224,Climate,Climate +537894,Climate,Climate +537884,Climate,Climate +537877,Climate,Climate +537873,Climate,Climate +535719,Climate,Climate +535716,Climate,Climate +535712,Climate,Climate +532347,Climate,Climate +532346,Climate,Climate +532345,Climate,Climate +532343,Climate,Climate +532319,Climate,Climate +528338,Climate,Climate +528337,Climate,Climate +528336,Climate,Climate +528333,Climate,Climate +522375,Climate,Climate +522374,Climate,Climate +522373,Climate,Climate +520460,Climate,Climate +519945,Climate,Climate +517142,Climate,Climate +517140,Climate,Climate +517138,Climate,Climate +514729,Climate,Climate +514020,Climate,Climate +510079,Climate,Climate +509456,Climate,Climate +507949,Climate,Climate +506019,Climate,Climate +502493,Climate,Climate +502486,Climate,Climate +365096,Industry,Industry +365094,Industry,Industry +358190,Industry,Industry +358188,Industry,Industry +358187,Industry,Industry +358184,Industry,Industry +382879,Industry,Industry +382457,Industry,Industry +382456,Industry,Industry +376086,Industry,Industry +382458,International Relations,International Relations +382456,International Trade,International Trade +356529,Transportation,Transportation +356528,Transportation,Transportation +356526,Transportation,Transportation +349778,Transportation,Transportation +350015,Budget,Budget +349783,Budget,Budget +366623,Budget,Budget +365398,Budget,Budget +364894,Budget,Budget +364882,Budget,Budget +357042,Budget,Budget +355188,Budget,Budget +354901,Budget,Budget +354887,Budget,Budget +354886,Budget,Budget +350020,Budget,Budget +352594,Employment and Training,Employment and Training +350628,Employment and Training,Employment and Training +355421,Employment and Training,Employment and Training +395342,Intellectual Property,Propriété intellectuelle +395341,Intellectual Property,Propriété intellectuelle +376040,Intellectual Property,Propriété intellectuelle +376037,Intellectual Property,Propriété intellectuelle +370367,Intellectual Property,Propriété intellectuelle +451928,Intellectual Property,Propriété intellectuelle +451926,Intellectual Property,Propriété intellectuelle +451923,Intellectual Property,Propriété intellectuelle +450741,Intellectual Property,Propriété intellectuelle +437759,Intellectual Property,Propriété intellectuelle +437756,Intellectual Property,Propriété intellectuelle +437753,Intellectual Property,Propriété intellectuelle +437747,Intellectual Property,Propriété intellectuelle +437741,Intellectual Property,Propriété intellectuelle +423256,Intellectual Property,Propriété intellectuelle +423255,Intellectual Property,Propriété intellectuelle +423254,Intellectual Property,Propriété intellectuelle +423253,Intellectual Property,Propriété intellectuelle +423252,Intellectual Property,Propriété intellectuelle +423251,Intellectual Property,Propriété intellectuelle +408827,Intellectual Property,Propriété intellectuelle +406574,Intellectual Property,Propriété intellectuelle +401415,Intellectual Property,Propriété intellectuelle +401414,Intellectual Property,Propriété intellectuelle +395346,Intellectual Property,Propriété intellectuelle +395345,Intellectual Property,Propriété intellectuelle +395344,Intellectual Property,Propriété intellectuelle +404529,Health,Health +404381,Health,Health +401500,Health,Health +401499,Health,Health +398573,Health,Health +397588,Health,Health +397340,Health,Health +395224,Health,Health +395223,Health,Health +395221,Health,Health +394189,Health,Health +389733,Health,Health +389066,Health,Health +384102,Health,Health +379606,Health,Health +379601,Health,Health +376226,Health,Health +368852,Health,Health +356726,Health,Health +446465,Health,Health +443007,Health,Health +439752,Health,Health +433345,Health,Health +431652,Health,Health +430062,Health,Health +427330,Health,Health +425704,Health,Health +425122,Health,Health +410645,Health,Health +410644,Health,Health +410643,Health,Health +408842,Health,Health +407057,Health,Health +407025,Health,Health +405851,Health,Health +350119,Consumer Issues,Consumer Issues +350118,Consumer Issues,Consumer Issues +350119,Employment and Training,Employment and Training +350118,Employment and Training,Employment and Training +350119,Industry,Industry +350118,Industry,Industry +355535,Defence,Defence +355502,Defence,Defence +355535,Municipalities,Municipalities +350207,Health,Health +350205,Health,Health +357755,Health,Health +357753,Health,Health +356785,Health,Health +356684,Health,Health +356683,Health,Health +356682,Health,Health +356001,Health,Health +354908,Health,Health +421314,Agriculture,Agriculture +421313,Agriculture,Agriculture +440606,Agriculture,Agriculture +428516,Agriculture,Agriculture +428515,Agriculture,Agriculture +428514,Agriculture,Agriculture +421313,Health,Health +440606,Health,Health +428516,Health,Health +428515,Health,Health +428514,Health,Health +421316,Health,Health +421314,International Trade,International Trade +421313,International Trade,International Trade +440606,International Trade,International Trade +428516,International Trade,International Trade +428515,International Trade,International Trade +428514,International Trade,International Trade +439536,Economic Development,Economic Development +439533,Economic Development,Economic Development +350260,Economic Development,Economic Development +413197,Economic Development,Economic Development +413195,Economic Development,Economic Development +413193,Economic Development,Economic Development +410161,Economic Development,Economic Development +406611,Economic Development,Economic Development +405119,Economic Development,Economic Development +403971,Economic Development,Economic Development +403813,Economic Development,Economic Development +400611,Economic Development,Economic Development +400562,Economic Development,Economic Development +400558,Economic Development,Economic Development +399005,Economic Development,Economic Development +396665,Economic Development,Economic Development +396654,Economic Development,Economic Development +394318,Economic Development,Economic Development +392687,Economic Development,Economic Development +392683,Economic Development,Economic Development +392682,Economic Development,Economic Development +392675,Economic Development,Economic Development +391273,Economic Development,Economic Development +391258,Economic Development,Economic Development +391244,Economic Development,Economic Development +388335,Economic Development,Economic Development +388216,Economic Development,Economic Development +388207,Economic Development,Economic Development +385191,Economic Development,Economic Development +385177,Economic Development,Economic Development +385169,Economic Development,Economic Development +385133,Economic Development,Economic Development +385132,Economic Development,Economic Development +385130,Economic Development,Economic Development +385120,Economic Development,Economic Development +383777,Economic Development,Economic Development +379751,Economic Development,Economic Development +379747,Economic Development,Economic Development +544064,Economic Development,Economic Development +544061,Economic Development,Economic Development +544058,Economic Development,Economic Development +544056,Economic Development,Economic Development +544050,Economic Development,Economic Development +544040,Economic Development,Economic Development +544036,Economic Development,Economic Development +542026,Economic Development,Economic Development +542025,Economic Development,Economic Development +542024,Economic Development,Economic Development +542023,Economic Development,Economic Development +542020,Economic Development,Economic Development +542015,Economic Development,Economic Development +542013,Economic Development,Economic Development +542010,Economic Development,Economic Development +542009,Economic Development,Economic Development +542007,Economic Development,Economic Development +540270,Economic Development,Economic Development +540265,Economic Development,Economic Development +540253,Economic Development,Economic Development +540234,Economic Development,Economic Development +540233,Economic Development,Economic Development +540231,Economic Development,Economic Development +540203,Economic Development,Economic Development +534975,Economic Development,Economic Development +531863,Economic Development,Economic Development +518247,Economic Development,Economic Development +499465,Economic Development,Economic Development +487713,Economic Development,Economic Development +487712,Economic Development,Economic Development +487711,Economic Development,Economic Development +487710,Economic Development,Economic Development +484589,Economic Development,Economic Development +478181,Economic Development,Economic Development +475895,Economic Development,Economic Development +475889,Economic Development,Economic Development +475879,Economic Development,Economic Development +475872,Economic Development,Economic Development +475836,Economic Development,Economic Development +475828,Economic Development,Economic Development +350848,Energy,Energy +350843,Energy,Energy +363945,Energy,Energy +363944,Energy,Energy +363943,Energy,Energy +363942,Energy,Energy +363266,Energy,Energy +358428,Energy,Energy +358391,Energy,Energy +357441,Energy,Energy +357439,Energy,Energy +357438,Energy,Energy +357437,Energy,Energy +350848,Environment,Environment +350843,Environment,Environment +363945,Environment,Environment +363944,Environment,Environment +363943,Environment,Environment +363942,Environment,Environment +363266,Environment,Environment +358428,Environment,Environment +358391,Environment,Environment +357441,Environment,Environment +357439,Environment,Environment +357438,Environment,Environment +357437,Environment,Environment +365317,Energy,Energy +359762,Energy,Energy +379971,Energy,Energy +365317,Environment,Environment +361273,Transportation,Transportation +351367,Transportation,Transportation +365314,Transportation,Transportation +441622,Employment and Training,Employment and Training +495415,Employment and Training,Employment and Training +453822,Employment and Training,Employment and Training +447178,Employment and Training,Employment and Training +447177,Employment and Training,Employment and Training +353827,Agriculture,Agriculture +352546,Agriculture,Agriculture +353395,Employment and Training,Employment and Training +352546,Employment and Training,Employment and Training +353832,Employment and Training,Employment and Training +353827,Energy,Energy +352546,Energy,Energy +353395,International Trade,International Trade +352546,International Trade,International Trade +353832,International Trade,International Trade +373517,Economic Development,Développement économique +373515,Economic Development,Développement économique +368644,Economic Development,Développement économique +368643,Economic Development,Développement économique +364962,Economic Development,Développement économique +382997,Economic Development,Développement économique +382996,Economic Development,Développement économique +382995,Economic Development,Développement économique +382818,Economic Development,Développement économique +382816,Economic Development,Développement économique +382815,Economic Development,Développement économique +380934,Economic Development,Développement économique +378845,Economic Development,Développement économique +378843,Economic Development,Développement économique +378842,Economic Development,Développement économique +421903,Health,Health +420594,Health,Health +352340,Health,Health +353801,Environment,Environment +353800,Environment,Environment +353810,Environment,Environment +353805,Environment,Environment +527820,International Trade,International Trade +469098,Budget,Budget +467524,Budget,Budget +405353,Budget,Budget +405351,Budget,Budget +403349,Budget,Budget +400938,Budget,Budget +400934,Budget,Budget +400915,Budget,Budget +398751,Budget,Budget +398748,Budget,Budget +398741,Budget,Budget +395734,Budget,Budget +395731,Budget,Budget +395729,Budget,Budget +395727,Budget,Budget +395711,Budget,Budget +393505,Budget,Budget +390953,Budget,Budget +387577,Budget,Budget +387576,Budget,Budget +384718,Budget,Budget +384717,Budget,Budget +384716,Budget,Budget +383448,Budget,Budget +383447,Budget,Budget +382336,Budget,Budget +382331,Budget,Budget +382329,Budget,Budget +375908,Budget,Budget +372618,Budget,Budget +357287,Budget,Budget +357285,Budget,Budget +350603,Budget,Budget +465661,Budget,Budget +465660,Budget,Budget +465656,Budget,Budget +465655,Budget,Budget +465654,Budget,Budget +462499,Budget,Budget +462498,Budget,Budget +459975,Budget,Budget +459956,Budget,Budget +458416,Budget,Budget +458353,Budget,Budget +458351,Budget,Budget +458350,Budget,Budget +458348,Budget,Budget +458346,Budget,Budget +458345,Budget,Budget +458342,Budget,Budget +458339,Budget,Budget +457929,Budget,Budget +456857,Budget,Budget +454158,Budget,Budget +454157,Budget,Budget +454156,Budget,Budget +454155,Budget,Budget +448329,Budget,Budget +448325,Budget,Budget +444218,Budget,Budget +440319,Budget,Budget +440318,Budget,Budget +440317,Budget,Budget +430634,Budget,Budget +429098,Budget,Budget +429096,Budget,Budget +420689,Budget,Budget +420050,Budget,Budget +420048,Budget,Budget +420047,Budget,Budget +420046,Budget,Budget +420045,Budget,Budget +420044,Budget,Budget +420043,Budget,Budget +418163,Budget,Budget +412405,Budget,Budget +409855,Budget,Budget +409614,Budget,Budget +511895,Budget,Budget +479039,Budget,Budget +476269,Budget,Budget +476268,Budget,Budget +474889,Budget,Budget +471715,Budget,Budget +471505,Budget,Budget +471404,Budget,Budget +470088,Budget,Budget +459037,Housing,Housing +356980,Housing,Housing +485817,Housing,Housing +435115,International Trade,International Trade +425668,International Trade,International Trade +536618,International Trade,International Trade +536615,International Trade,International Trade +503461,International Trade,International Trade +437131,Climate,Climate +437130,Climate,Climate +415451,Climate,Climate +395548,Climate,Climate +388559,Climate,Climate +388548,Climate,Climate +388538,Climate,Climate +387580,Climate,Climate +387573,Climate,Climate +387570,Climate,Climate +437166,Climate,Climate +437165,Climate,Climate +437164,Climate,Climate +437163,Climate,Climate +437162,Climate,Climate +437161,Climate,Climate +437160,Climate,Climate +437159,Climate,Climate +437158,Climate,Climate +437157,Climate,Climate +437156,Climate,Climate +437155,Climate,Climate +437154,Climate,Climate +437153,Climate,Climate +437152,Climate,Climate +437151,Climate,Climate +437150,Climate,Climate +437149,Climate,Climate +437148,Climate,Climate +437147,Climate,Climate +437146,Climate,Climate +437144,Climate,Climate +437142,Climate,Climate +437141,Climate,Climate +437140,Climate,Climate +437138,Climate,Climate +437136,Climate,Climate +437134,Climate,Climate +437169,Climate,Climate +353101,International Trade,International Trade +353100,International Trade,International Trade +439082,Health,Health +435690,Health,Health +387701,Health,Health +356259,Health,Health +356257,Health,Health +351446,Health,Health +454969,Health,Health +443885,Health,Health +435690,Consumer Issues,Consumer Issues +387701,Consumer Issues,Consumer Issues +356259,Consumer Issues,Consumer Issues +356257,Consumer Issues,Consumer Issues +351446,Consumer Issues,Consumer Issues +454969,Consumer Issues,Consumer Issues +443885,Consumer Issues,Consumer Issues +497775,Budget,Budget +497773,Budget,Budget +358862,Budget,Budget +350987,Budget,Budget +497771,Budget,Budget +466030,Budget,Budget +466029,Budget,Budget +466027,Budget,Budget +466025,Budget,Budget +466023,Budget,Budget +447222,Budget,Budget +444968,Budget,Budget +444914,Budget,Budget +443392,Budget,Budget +443388,Budget,Budget +438575,Budget,Budget +438560,Budget,Budget +438533,Budget,Budget +438527,Budget,Budget +438525,Budget,Budget +438518,Budget,Budget +438175,Budget,Budget +438167,Budget,Budget +533802,Budget,Budget +533798,Budget,Budget +525718,Budget,Budget +513820,Budget,Budget +501115,Budget,Budget +501109,Budget,Budget +497792,Budget,Budget +497789,Budget,Budget +497770,Budget,Budget +358863,Budget,Budget +350810,Budget,Budget +466028,Budget,Budget +466026,Budget,Budget +447237,Budget,Budget +444966,Budget,Budget +444965,Budget,Budget +444916,Budget,Budget +444915,Budget,Budget +444911,Budget,Budget +444908,Budget,Budget +443396,Budget,Budget +443379,Budget,Budget +438569,Budget,Budget +438552,Budget,Budget +438537,Budget,Budget +438532,Budget,Budget +438521,Budget,Budget +438517,Budget,Budget +438486,Budget,Budget +438186,Budget,Budget +438184,Budget,Budget +438169,Budget,Budget +438165,Budget,Budget +438162,Budget,Budget +438138,Budget,Budget +398327,Budget,Budget +533810,Budget,Budget +504035,Budget,Budget +501118,Budget,Budget +398405,Budget,Budget +398334,Budget,Budget +350812,Budget,Budget +533805,Budget,Budget +533800,Budget,Budget +504047,Budget,Budget +501114,Budget,Budget +501112,Budget,Budget +497795,Budget,Budget +497774,Budget,Budget +497772,Budget,Budget +497426,Budget,Budget +466024,Budget,Budget +466022,Budget,Budget +447230,Budget,Budget +444913,Budget,Budget +444910,Budget,Budget +444907,Budget,Budget +443407,Budget,Budget +443394,Budget,Budget +443393,Budget,Budget +443386,Budget,Budget +443377,Budget,Budget +443376,Budget,Budget +443375,Budget,Budget +438572,Budget,Budget +438535,Budget,Budget +438528,Budget,Budget +438522,Budget,Budget +438515,Budget,Budget +438513,Budget,Budget +438174,Budget,Budget +438172,Budget,Budget +438171,Budget,Budget +413068,Agriculture,Agriculture +414399,Environment,Environment +446006,Climate,Climate +440978,Climate,Climate +470925,Economic Development,Economic Development +462324,Economic Development,Economic Development +404258,Economic Development,Economic Development +379983,Economic Development,Economic Development +379980,Economic Development,Economic Development +379956,Economic Development,Economic Development +367868,Economic Development,Economic Development +367867,Economic Development,Economic Development +526461,Economic Development,Economic Development +525363,Economic Development,Economic Development +525360,Economic Development,Economic Development +525357,Economic Development,Economic Development +525354,Economic Development,Economic Development +525161,Economic Development,Economic Development +523660,Economic Development,Economic Development +523642,Economic Development,Economic Development +523641,Economic Development,Economic Development +518818,Economic Development,Economic Development +516716,Economic Development,Economic Development +516322,Economic Development,Economic Development +506874,Economic Development,Economic Development +506873,Economic Development,Economic Development +503035,Economic Development,Economic Development +503034,Economic Development,Economic Development +503033,Economic Development,Economic Development +503032,Economic Development,Economic Development +500136,Economic Development,Economic Development +489012,Economic Development,Economic Development +485025,Economic Development,Economic Development +471363,Economic Development,Economic Development +446006,Energy,Energy +440978,Energy,Energy +384057,Employment and Training,Employment and Training +384056,Employment and Training,Employment and Training +384055,Employment and Training,Employment and Training +384054,Employment and Training,Employment and Training +384053,Employment and Training,Employment and Training +371082,Employment and Training,Employment and Training +371081,Employment and Training,Employment and Training +371080,Employment and Training,Employment and Training +371077,Employment and Training,Employment and Training +355223,Employment and Training,Employment and Training +353389,Employment and Training,Employment and Training +353388,Employment and Training,Employment and Training +353387,Employment and Training,Employment and Training +430362,Employment and Training,Employment and Training +430361,Employment and Training,Employment and Training +352149,Health,Health +357361,Regional Development,Regional Development +357360,Regional Development,Regional Development +357359,Regional Development,Regional Development +357358,Regional Development,Regional Development +355560,Regional Development,Regional Development +355555,Regional Development,Regional Development +353029,Regional Development,Regional Development +353028,Regional Development,Regional Development +353026,Regional Development,Regional Development +353025,Regional Development,Regional Development +353002,Regional Development,Regional Development +358983,Regional Development,Regional Development +353025,Economic Development,Economic Development +353002,Economic Development,Economic Development +358983,Economic Development,Economic Development +358982,Economic Development,Economic Development +357361,Economic Development,Economic Development +357360,Economic Development,Economic Development +357359,Economic Development,Economic Development +357358,Economic Development,Economic Development +355560,Economic Development,Economic Development +355555,Economic Development,Economic Development +353029,Economic Development,Economic Development +353028,Economic Development,Economic Development +353025,Transportation,Transportation +353002,Transportation,Transportation +358983,Transportation,Transportation +358982,Transportation,Transportation +355560,Transportation,Transportation +355555,Transportation,Transportation +361305,Immigration,Immigration +513348,Climate,Climate +510530,Climate,Climate +537338,Climate,Climate +518894,Environment,Environment +513348,Environment,Environment +537338,Environment,Environment +510530,Transportation,Transportation +450372,Transportation,Transportation +525458,Transportation,Transportation +525458,Industry,Industry +510530,Industry,Industry +450369,Industry,Industry +379225,International Trade,International Trade +379225,Transportation,Transportation +369885,Transportation,Transportation +356878,Economic Development,Développement économique +410913,Economic Development,Développement économique +385916,Regional Development,Développement régional +385916,Industry,Industrie +356016,International Trade,International Trade +354562,International Trade,International Trade +356055,International Trade,International Trade +408756,International Development,International Development +405071,International Development,International Development +404324,International Development,International Development +397251,International Development,International Development +394773,International Development,International Development +375355,International Development,International Development +352122,International Development,International Development +486382,International Development,International Development +451031,International Development,International Development +450956,International Development,International Development +449108,International Development,International Development +448572,International Development,International Development +434134,International Development,International Development +434080,International Development,International Development +433066,International Development,International Development +424642,International Development,International Development +423214,International Development,International Development +422691,International Development,International Development +420568,International Development,International Development +420567,International Development,International Development +415713,International Development,International Development +410734,International Development,International Development +410503,International Development,International Development +352142,Transportation,Transportation +527559,Privacy and Access to Information,Privacy and Access to Information +525029,Privacy and Access to Information,Privacy and Access to Information +486337,Privacy and Access to Information,Privacy and Access to Information +483814,Privacy and Access to Information,Privacy and Access to Information +483812,Privacy and Access to Information,Privacy and Access to Information +483811,Privacy and Access to Information,Privacy and Access to Information +465823,Privacy and Access to Information,Privacy and Access to Information +542511,Privacy and Access to Information,Privacy and Access to Information +536318,Privacy and Access to Information,Privacy and Access to Information +354701,Agriculture,Agriculture +354701,Financial Institutions,Financial Institutions +484404,Economic Development,Economic Development +484392,Economic Development,Economic Development +461479,Economic Development,Economic Development +461477,Economic Development,Economic Development +461473,Economic Development,Economic Development +541393,Economic Development,Economic Development +531831,Economic Development,Economic Development +522207,Economic Development,Economic Development +517262,Economic Development,Economic Development +506015,Economic Development,Economic Development +504238,Economic Development,Economic Development +501362,Economic Development,Economic Development +501351,Economic Development,Economic Development +501338,Economic Development,Economic Development +501319,Economic Development,Economic Development +497979,Economic Development,Economic Development +497976,Economic Development,Economic Development +497975,Economic Development,Economic Development +497968,Economic Development,Economic Development +496583,Economic Development,Economic Development +490699,Economic Development,Economic Development +490696,Economic Development,Economic Development +490671,Economic Development,Economic Development +490655,Economic Development,Economic Development +490644,Economic Development,Economic Development +486880,Economic Development,Economic Development +486858,Economic Development,Economic Development +486813,Economic Development,Economic Development +408224,Agriculture,Agriculture +397077,Agriculture,Agriculture +397074,Agriculture,Agriculture +384988,Agriculture,Agriculture +384986,Agriculture,Agriculture +384985,Agriculture,Agriculture +383931,Agriculture,Agriculture +522362,Agriculture,Agriculture +503830,Agriculture,Agriculture +503829,Agriculture,Agriculture +503828,Agriculture,Agriculture +492596,Agriculture,Agriculture +492592,Agriculture,Agriculture +490381,Agriculture,Agriculture +358423,International Trade,International Trade +449928,International Trade,International Trade +406943,International Trade,International Trade +406915,International Trade,International Trade +406906,International Trade,International Trade +397077,International Trade,International Trade +394567,International Trade,International Trade +394558,International Trade,International Trade +384988,International Trade,International Trade +384986,International Trade,International Trade +384985,International Trade,International Trade +384986,Labour,Labour +384984,Labour,Labour +399407,Labour,Labour +397074,Labour,Labour +368246,Small Business,Small Business +398525,Small Business,Small Business +378059,Small Business,Small Business +378058,Small Business,Small Business +376244,Small Business,Small Business +376242,Small Business,Small Business +375261,Small Business,Small Business +375259,Small Business,Small Business +375258,Small Business,Small Business +375256,Small Business,Small Business +375254,Small Business,Small Business +375253,Small Business,Small Business +375251,Small Business,Small Business +370134,Small Business,Small Business +370133,Small Business,Small Business +370132,Small Business,Small Business +370131,Small Business,Small Business +370130,Small Business,Small Business +370129,Small Business,Small Business +370128,Small Business,Small Business +353169,Economic Development,Développement économique +353168,Economic Development,Développement économique +359082,Economic Development,Développement économique +353177,Economic Development,Développement économique +353174,Economic Development,Développement économique +353173,Economic Development,Développement économique +353171,Economic Development,Développement économique +353170,International Development,Développement international +353169,International Development,Développement international +359082,International Development,Développement international +355369,International Development,Développement international +355366,International Development,Développement international +355364,International Development,Développement international +355362,International Development,Développement international +355359,International Development,Développement international +355356,International Development,Développement international +355354,International Development,Développement international +353177,International Development,Développement international +353174,International Development,Développement international +353173,International Development,Développement international +355978,Health,Santé +355955,Health,Santé +355986,Health,Santé +355983,Health,Santé +352864,Employment and Training,Employment and Training +527692,Employment and Training,Employment and Training +454517,Economic Development,Economic Development +454512,Economic Development,Economic Development +434000,Economic Development,Economic Development +399596,Economic Development,Economic Development +395714,Economic Development,Economic Development +395712,Economic Development,Economic Development +395581,Economic Development,Economic Development +395568,Economic Development,Economic Development +395562,Economic Development,Economic Development +381262,Economic Development,Economic Development +381233,Economic Development,Economic Development +381231,Economic Development,Economic Development +381228,Economic Development,Economic Development +381226,Economic Development,Economic Development +381224,Economic Development,Economic Development +366439,Economic Development,Economic Development +364350,Economic Development,Economic Development +520586,Economic Development,Economic Development +474875,Economic Development,Economic Development +456540,Economic Development,Economic Development +358344,International Trade,International Trade +354561,International Trade,International Trade +370548,International Trade,International Trade +358942,International Trade,International Trade +358729,International Trade,International Trade +357867,International Trade,International Trade +375453,International Trade,International Trade +370663,International Trade,International Trade +370662,International Trade,International Trade +362171,International Trade,International Trade +361042,International Trade,International Trade +355971,Economic Development,Economic Development +355967,Economic Development,Economic Development +362084,Economic Development,Economic Development +355974,Energy,Energy +355971,Energy,Energy +355974,Environment,Environment +355971,Industry,Industry +355967,Industry,Industry +355974,Regional Development,Regional Development +355967,Regional Development,Regional Development +441749,International Relations,International Relations +439417,International Relations,International Relations +422238,International Relations,International Relations +403885,International Relations,International Relations +403225,International Relations,International Relations +403216,International Relations,International Relations +400385,International Relations,International Relations +398786,International Relations,International Relations +398217,International Relations,International Relations +392848,International Relations,International Relations +374103,International Relations,International Relations +370415,International Relations,International Relations +357739,International Relations,International Relations +357735,International Relations,International Relations +353317,International Relations,International Relations +511162,International Relations,International Relations +511157,International Relations,International Relations +511146,International Relations,International Relations +511132,International Relations,International Relations +511129,International Relations,International Relations +508676,International Relations,International Relations +508667,International Relations,International Relations +475875,International Relations,International Relations +475842,International Relations,International Relations +475830,International Relations,International Relations +473621,International Relations,International Relations +473617,International Relations,International Relations +473591,International Relations,International Relations +473000,International Relations,International Relations +472997,International Relations,International Relations +468412,International Relations,International Relations +452635,International Relations,International Relations +445226,International Relations,International Relations +445223,International Relations,International Relations +356550,Small Business,Small Business +368043,Economic Development,Economic Development +474799,Economic Development,Economic Development +353394,Economic Development,Economic Development +353395,Taxation and Finance,Taxation and Finance +353395,Economic Development,Economic Development +353827,Industry,Industry +353827,Regional Development,Regional Development +353827,Transportation,Transportation +500407,Economic Development,Economic Development +500280,Economic Development,Economic Development +500278,Economic Development,Economic Development +500066,Economic Development,Economic Development +500065,Economic Development,Economic Development +500017,Economic Development,Economic Development +499968,Economic Development,Economic Development +497389,Economic Development,Economic Development +497358,Economic Development,Economic Development +497355,Economic Development,Economic Development +497352,Economic Development,Economic Development +496877,Economic Development,Economic Development +496876,Economic Development,Economic Development +496571,Economic Development,Economic Development +496473,Economic Development,Economic Development +496471,Economic Development,Economic Development +495204,Economic Development,Economic Development +495193,Economic Development,Economic Development +494482,Economic Development,Economic Development +494112,Economic Development,Economic Development +494085,Economic Development,Economic Development +494084,Economic Development,Economic Development +494082,Economic Development,Economic Development +493939,Economic Development,Economic Development +493938,Economic Development,Economic Development +493573,Economic Development,Economic Development +493095,Economic Development,Economic Development +492491,Economic Development,Economic Development +492065,Economic Development,Economic Development +492064,Economic Development,Economic Development +489658,Economic Development,Economic Development +489470,Economic Development,Economic Development +489169,Economic Development,Economic Development +489168,Economic Development,Economic Development +489167,Economic Development,Economic Development +489165,Economic Development,Economic Development +488770,Economic Development,Economic Development +488769,Economic Development,Economic Development +488768,Economic Development,Economic Development +488510,Economic Development,Economic Development +488503,Economic Development,Economic Development +488501,Economic Development,Economic Development +488499,Economic Development,Economic Development +488495,Economic Development,Economic Development +488493,Economic Development,Economic Development +488492,Economic Development,Economic Development +488490,Economic Development,Economic Development +486987,Economic Development,Economic Development +486985,Economic Development,Economic Development +486438,Economic Development,Economic Development +486206,Economic Development,Economic Development +486205,Economic Development,Economic Development +486204,Economic Development,Economic Development +486197,Economic Development,Economic Development +486196,Economic Development,Economic Development +486190,Economic Development,Economic Development +486189,Economic Development,Economic Development +486188,Economic Development,Economic Development +486187,Economic Development,Economic Development +485620,Economic Development,Economic Development +485616,Economic Development,Economic Development +485590,Economic Development,Economic Development +485557,Economic Development,Economic Development +485556,Economic Development,Economic Development +484212,Economic Development,Economic Development +484210,Economic Development,Economic Development +484206,Economic Development,Economic Development +483236,Economic Development,Economic Development +483231,Economic Development,Economic Development +482792,Economic Development,Economic Development +482791,Economic Development,Economic Development +481421,Economic Development,Economic Development +481013,Economic Development,Economic Development +480907,Economic Development,Economic Development +480621,Economic Development,Economic Development +480620,Economic Development,Economic Development +479003,Economic Development,Economic Development +478941,Economic Development,Economic Development +478686,Economic Development,Economic Development +545255,Economic Development,Economic Development +545124,Economic Development,Economic Development +544919,Economic Development,Economic Development +544797,Economic Development,Economic Development +544733,Economic Development,Economic Development +544693,Economic Development,Economic Development +544574,Economic Development,Economic Development +542861,Economic Development,Economic Development +542505,Economic Development,Economic Development +542503,Economic Development,Economic Development +536112,Economic Development,Economic Development +533175,Economic Development,Economic Development +533114,Economic Development,Economic Development +532687,Economic Development,Economic Development +532481,Economic Development,Economic Development +531155,Economic Development,Economic Development +530823,Economic Development,Economic Development +530718,Economic Development,Economic Development +530487,Economic Development,Economic Development +530486,Economic Development,Economic Development +530311,Economic Development,Economic Development +530307,Economic Development,Economic Development +528305,Economic Development,Economic Development +527869,Economic Development,Economic Development +527614,Economic Development,Economic Development +527492,Economic Development,Economic Development +527377,Economic Development,Economic Development +527375,Economic Development,Economic Development +527321,Economic Development,Economic Development +527257,Economic Development,Economic Development +527256,Economic Development,Economic Development +527247,Economic Development,Economic Development +527246,Economic Development,Economic Development +527245,Economic Development,Economic Development +527244,Economic Development,Economic Development +527158,Economic Development,Economic Development +526952,Economic Development,Economic Development +526732,Economic Development,Economic Development +526457,Economic Development,Economic Development +525531,Economic Development,Economic Development +524666,Economic Development,Economic Development +524580,Economic Development,Economic Development +524330,Economic Development,Economic Development +524188,Economic Development,Economic Development +524106,Economic Development,Economic Development +524073,Economic Development,Economic Development +523766,Economic Development,Economic Development +523756,Economic Development,Economic Development +523635,Economic Development,Economic Development +523594,Economic Development,Economic Development +523531,Economic Development,Economic Development +523519,Economic Development,Economic Development +523386,Economic Development,Economic Development +523365,Economic Development,Economic Development +522051,Economic Development,Economic Development +521899,Economic Development,Economic Development +521748,Economic Development,Economic Development +521743,Economic Development,Economic Development +521672,Economic Development,Economic Development +521618,Economic Development,Economic Development +521422,Economic Development,Economic Development +521421,Economic Development,Economic Development +521402,Economic Development,Economic Development +521401,Economic Development,Economic Development +521359,Economic Development,Economic Development +521358,Economic Development,Economic Development +521328,Economic Development,Economic Development +521325,Economic Development,Economic Development +521002,Economic Development,Economic Development +521001,Economic Development,Economic Development +520958,Economic Development,Economic Development +520957,Economic Development,Economic Development +520813,Economic Development,Economic Development +520753,Economic Development,Economic Development +520618,Economic Development,Economic Development +520617,Economic Development,Economic Development +520513,Economic Development,Economic Development +520413,Economic Development,Economic Development +518536,Economic Development,Economic Development +518504,Economic Development,Economic Development +516880,Economic Development,Economic Development +516879,Economic Development,Economic Development +516536,Economic Development,Economic Development +516144,Economic Development,Economic Development +516031,Economic Development,Economic Development +514859,Economic Development,Economic Development +514855,Economic Development,Economic Development +512677,Economic Development,Economic Development +512197,Economic Development,Economic Development +511951,Economic Development,Economic Development +511950,Economic Development,Economic Development +511745,Economic Development,Economic Development +511742,Economic Development,Economic Development +511741,Economic Development,Economic Development +511740,Economic Development,Economic Development +511737,Economic Development,Economic Development +509225,Economic Development,Economic Development +509224,Economic Development,Economic Development +507256,Economic Development,Economic Development +507217,Economic Development,Economic Development +507216,Economic Development,Economic Development +507177,Economic Development,Economic Development +506621,Economic Development,Economic Development +506620,Economic Development,Economic Development +506618,Economic Development,Economic Development +506183,Economic Development,Economic Development +504821,Economic Development,Economic Development +504425,Economic Development,Economic Development +504368,Economic Development,Economic Development +503331,Economic Development,Economic Development +503184,Economic Development,Economic Development +502970,Economic Development,Economic Development +501237,Economic Development,Economic Development +500561,Economic Development,Economic Development +544797,Labour,Labour +544693,Labour,Labour +391313,Labour,Labour +477225,Infrastructure,Infrastructure +357730,Government Procurement,Government Procurement +355244,Government Procurement,Government Procurement +359766,Government Procurement,Government Procurement +355936,Environment,Environment +460938,Research and Development,Research and Development +435055,Research and Development,Research and Development +377430,Research and Development,Research and Development +374146,Research and Development,Research and Development +374143,Research and Development,Research and Development +374139,Research and Development,Research and Development +373400,Research and Development,Research and Development +373399,Research and Development,Research and Development +373398,Research and Development,Research and Development +373397,Research and Development,Research and Development +373395,Research and Development,Research and Development +373394,Research and Development,Research and Development +373392,Research and Development,Research and Development +373391,Research and Development,Research and Development +373390,Research and Development,Research and Development +373389,Research and Development,Research and Development +373382,Research and Development,Research and Development +373381,Research and Development,Research and Development +373380,Research and Development,Research and Development +373379,Research and Development,Research and Development +373378,Research and Development,Research and Development +373377,Research and Development,Research and Development +373376,Research and Development,Research and Development +373375,Research and Development,Research and Development +373374,Research and Development,Research and Development +373373,Research and Development,Research and Development +373372,Research and Development,Research and Development +373371,Research and Development,Research and Development +373366,Research and Development,Research and Development +367819,Research and Development,Research and Development +370947,International Trade,International Trade +353731,International Trade,International Trade +380219,International Trade,International Trade +429077,International Trade,International Trade +423215,International Trade,International Trade +366622,International Trade,International Trade +353781,International Trade,International Trade +416272,International Trade,International Trade +400505,International Trade,International Trade +452620,International Trade,International Trade +452616,International Trade,International Trade +452614,International Trade,International Trade +452612,International Trade,International Trade +452609,International Trade,International Trade +356410,Government Procurement,Government Procurement +358161,Privacy and Access to Information,Privacy and Access to Information +358161,Security,Security +356410,Security,Security +354036,Environment,Environment +354033,Environment,Environment +356916,Environment,Environment +356284,Environment,Environment +354041,Environment,Environment +354039,Environment,Environment +354036,Infrastructure,Infrastructure +354033,Infrastructure,Infrastructure +356916,Infrastructure,Infrastructure +356284,Infrastructure,Infrastructure +354041,Infrastructure,Infrastructure +354039,Infrastructure,Infrastructure +354036,International Trade,International Trade +354033,International Trade,International Trade +356916,International Trade,International Trade +356284,International Trade,International Trade +354041,International Trade,International Trade +354039,International Trade,International Trade +356916,Security,Security +356284,Security,Security +354041,Security,Security +354039,Security,Security +354037,Security,Security +354036,Security,Security +354036,Taxation and Finance,Taxation and Finance +354033,Taxation and Finance,Taxation and Finance +356916,Taxation and Finance,Taxation and Finance +356284,Taxation and Finance,Taxation and Finance +354041,Taxation and Finance,Taxation and Finance +354039,Taxation and Finance,Taxation and Finance +354036,Tourism,Tourism +354033,Tourism,Tourism +356916,Tourism,Tourism +356284,Tourism,Tourism +354041,Tourism,Tourism +354039,Tourism,Tourism +354036,Transportation,Transportation +354033,Transportation,Transportation +356916,Transportation,Transportation +356284,Transportation,Transportation +354041,Transportation,Transportation +354039,Transportation,Transportation +353818,Education,Education +377408,Health,Health +376862,Defence,Defence +355195,Defence,Defence +355195,Government Procurement,Government Procurement +397679,Government Procurement,Government Procurement +355195,Industry,Industry +355195,Intellectual Property,Intellectual Property +376862,International Trade,International Trade +355195,Regional Development,Regional Development +355195,Research and Development,Research and Development +355195,Security,Security +355195,Transportation,Transportation +356857,Government Procurement,Government Procurement +356856,Government Procurement,Government Procurement +390764,Government Procurement,Government Procurement +384318,Government Procurement,Government Procurement +374078,Government Procurement,Government Procurement +373679,Government Procurement,Government Procurement +356857,Security,Security +356856,Security,Security +390764,Security,Security +385985,Security,Security +385984,Security,Security +384318,Security,Security +376792,Security,Security +376421,Security,Security +375851,Security,Security +375170,Security,Security +373679,Security,Security +354031,Defence,Defence +386492,Infrastructure,Infrastructure +386499,Infrastructure,Infrastructure +386498,Infrastructure,Infrastructure +386497,Infrastructure,Infrastructure +386496,Infrastructure,Infrastructure +386495,Infrastructure,Infrastructure +383009,Transportation,Transportation +383005,Transportation,Transportation +392144,Transportation,Transportation +392143,Transportation,Transportation +392142,Transportation,Transportation +389387,Transportation,Transportation +384849,Transportation,Transportation +384848,Transportation,Transportation +384847,Transportation,Transportation +384846,Transportation,Transportation +383011,Transportation,Transportation +460024,Economic Development,Economic Development +457222,Economic Development,Economic Development +378916,Economic Development,Economic Development +378914,Economic Development,Economic Development +378910,Economic Development,Economic Development +378908,Economic Development,Economic Development +377133,Economic Development,Economic Development +365188,Economic Development,Economic Development +365179,Economic Development,Economic Development +354300,Economic Development,Economic Development +451986,Economic Development,Economic Development +447674,Economic Development,Economic Development +445015,Economic Development,Economic Development +445012,Economic Development,Economic Development +423662,Economic Development,Economic Development +422614,Economic Development,Economic Development +419896,Economic Development,Economic Development +404034,Economic Development,Economic Development +404033,Economic Development,Economic Development +404032,Economic Development,Economic Development +404031,Economic Development,Economic Development +399174,Economic Development,Economic Development +387627,Economic Development,Economic Development +381878,Economic Development,Economic Development +467254,Economic Development,Economic Development +467253,Economic Development,Economic Development +403087,Sports,Sports +440754,Economic Development,Economic Development +440752,Economic Development,Economic Development +367222,Economic Development,Economic Development +539280,Economic Development,Economic Development +536514,Economic Development,Economic Development +529926,Economic Development,Economic Development +526965,Economic Development,Economic Development +523802,Economic Development,Economic Development +521714,Economic Development,Economic Development +521711,Economic Development,Economic Development +520620,Economic Development,Economic Development +520619,Economic Development,Economic Development +520285,Economic Development,Economic Development +519009,Economic Development,Economic Development +516926,Economic Development,Economic Development +516501,Economic Development,Economic Development +516500,Economic Development,Economic Development +514871,Economic Development,Economic Development +513518,Economic Development,Economic Development +500788,Economic Development,Economic Development +500787,Economic Development,Economic Development +500786,Economic Development,Economic Development +481831,Economic Development,Economic Development +436960,Research and Development,Research and Development +436959,Research and Development,Research and Development +411167,Research and Development,Research and Development +394765,Research and Development,Research and Development +394756,Research and Development,Research and Development +386447,Research and Development,Research and Development +368025,Research and Development,Research and Development +367222,Research and Development,Research and Development +359322,Research and Development,Research and Development +456465,Agriculture,Agriculture +414820,Agriculture,Agriculture +510852,Agriculture,Agriculture +499301,Agriculture,Agriculture +484228,Agriculture,Agriculture +484226,Agriculture,Agriculture +481266,Agriculture,Agriculture +479775,Economic Development,Economic Development +473860,Economic Development,Economic Development +369541,Economic Development,Economic Development +369540,Economic Development,Economic Development +369537,Economic Development,Economic Development +369529,Economic Development,Economic Development +363366,Economic Development,Economic Development +363365,Economic Development,Economic Development +356558,Economic Development,Economic Development +356555,Economic Development,Economic Development +356554,Economic Development,Economic Development +356553,Economic Development,Economic Development +356551,Economic Development,Economic Development +468645,Economic Development,Economic Development +468639,Economic Development,Economic Development +468638,Economic Development,Economic Development +468634,Economic Development,Economic Development +468631,Economic Development,Economic Development +468630,Economic Development,Economic Development +468625,Economic Development,Economic Development +468624,Economic Development,Economic Development +465497,Economic Development,Economic Development +461446,Economic Development,Economic Development +461444,Economic Development,Economic Development +461443,Economic Development,Economic Development +461442,Economic Development,Economic Development +461439,Economic Development,Economic Development +459850,Economic Development,Economic Development +459849,Economic Development,Economic Development +459848,Economic Development,Economic Development +456746,Economic Development,Economic Development +456734,Economic Development,Economic Development +456733,Economic Development,Economic Development +456729,Economic Development,Economic Development +456469,Economic Development,Economic Development +447284,Economic Development,Economic Development +447276,Economic Development,Economic Development +443003,Economic Development,Economic Development +443002,Economic Development,Economic Development +443000,Economic Development,Economic Development +427440,Economic Development,Economic Development +427439,Economic Development,Economic Development +427437,Economic Development,Economic Development +424070,Economic Development,Economic Development +424060,Economic Development,Economic Development +424051,Economic Development,Economic Development +422706,Economic Development,Economic Development +420536,Economic Development,Economic Development +420535,Economic Development,Economic Development +420527,Economic Development,Economic Development +414820,Economic Development,Economic Development +398974,Economic Development,Economic Development +379911,Economic Development,Economic Development +529854,Economic Development,Economic Development +522897,Economic Development,Economic Development +514698,Economic Development,Economic Development +514696,Economic Development,Economic Development +510852,Economic Development,Economic Development +507731,Economic Development,Economic Development +505961,Economic Development,Economic Development +505960,Economic Development,Economic Development +502139,Economic Development,Economic Development +499315,Economic Development,Economic Development +499308,Economic Development,Economic Development +499297,Economic Development,Economic Development +499290,Economic Development,Economic Development +496515,Economic Development,Economic Development +490242,Economic Development,Economic Development +490236,Economic Development,Economic Development +490222,Economic Development,Economic Development +484230,Economic Development,Economic Development +484227,Economic Development,Economic Development +484226,Economic Development,Economic Development +481266,Economic Development,Economic Development +481265,Economic Development,Economic Development +481264,Economic Development,Economic Development +479804,Economic Development,Economic Development +479802,Economic Development,Economic Development +479799,Economic Development,Economic Development +479789,Economic Development,Economic Development +479787,Economic Development,Economic Development +499315,Education,Education +499304,Education,Education +379918,Education,Education +369541,Education,Education +369539,Education,Education +369538,Education,Education +369529,Education,Education +363363,Education,Education +427442,Education,Education +427441,Education,Education +420527,Education,Education +414825,Education,Education +414823,Education,Education +414799,Education,Education +413824,Education,Education +409811,Education,Education +409768,Education,Education +406832,Education,Education +403655,Education,Education +403636,Education,Education +379928,Education,Education +379922,Education,Education +499297,Education,Education +490246,Education,Education +488122,Education,Education +484230,Education,Education +484229,Education,Education +481269,Education,Education +481265,Education,Education +481264,Education,Education +479811,Education,Education +479810,Education,Education +479800,Education,Education +479785,Education,Education +465497,Education,Education +461442,Education,Education +460842,Education,Education +460805,Education,Education +460804,Education,Education +459850,Education,Education +459849,Education,Education +456772,Education,Education +456746,Education,Education +456734,Education,Education +456730,Education,Education +456729,Education,Education +456470,Education,Education +456469,Education,Education +456468,Education,Education +456466,Education,Education +456465,Education,Education +456464,Education,Education +449957,Education,Education +449911,Education,Education +449910,Education,Education +447284,Education,Education +447276,Education,Education +446244,Education,Education +446243,Education,Education +443003,Education,Education +443002,Education,Education +443000,Education,Education +434001,Education,Education +542925,Education,Education +542924,Education,Education +540349,Education,Education +540348,Education,Education +535010,Education,Education +535008,Education,Education +535006,Education,Education +535005,Education,Education +532407,Education,Education +532406,Education,Education +532405,Education,Education +529853,Education,Education +528766,Education,Education +526005,Education,Education +526004,Education,Education +526003,Education,Education +522900,Education,Education +522897,Education,Education +522895,Education,Education +522893,Education,Education +522891,Education,Education +522889,Education,Education +522887,Education,Education +522756,Education,Education +517886,Education,Education +517882,Education,Education +517879,Education,Education +517878,Education,Education +515650,Education,Education +514694,Education,Education +514692,Education,Education +514691,Education,Education +512295,Education,Education +510854,Education,Education +507728,Education,Education +505960,Education,Education +505959,Education,Education +502135,Education,Education +502128,Education,Education +502123,Education,Education +502116,Education,Education +434001,Employment and Training,Employment and Training +427439,Employment and Training,Employment and Training +392852,Employment and Training,Employment and Training +379928,Employment and Training,Employment and Training +369536,Employment and Training,Employment and Training +363367,Employment and Training,Employment and Training +499315,Employment and Training,Employment and Training +496515,Employment and Training,Employment and Training +484230,Employment and Training,Employment and Training +484228,Employment and Training,Employment and Training +484226,Employment and Training,Employment and Training +479785,Employment and Training,Employment and Training +479780,Employment and Training,Employment and Training +468627,Employment and Training,Employment and Training +461442,Employment and Training,Employment and Training +460805,Employment and Training,Employment and Training +456746,Employment and Training,Employment and Training +456734,Employment and Training,Employment and Training +456729,Employment and Training,Employment and Training +456470,Employment and Training,Employment and Training +456468,Employment and Training,Employment and Training +449957,Employment and Training,Employment and Training +409745,Energy,Energy +379934,Energy,Energy +363371,Energy,Energy +363370,Energy,Energy +484230,Energy,Energy +459849,Environment,Environment +459848,Environment,Environment +369541,Environment,Environment +369535,Environment,Environment +369533,Environment,Environment +363373,Environment,Environment +363362,Environment,Environment +356572,Environment,Environment +427438,Environment,Environment +398972,Environment,Environment +379928,Environment,Environment +499310,Environment,Environment +499301,Environment,Environment +490228,Environment,Environment +488126,Environment,Environment +481265,Environment,Environment +479790,Environment,Environment +479780,Environment,Environment +473861,Environment,Environment +468641,Environment,Environment +468636,Environment,Environment +468632,Environment,Environment +468627,Environment,Environment +479793,Fisheries,Fisheries +479792,Fisheries,Fisheries +379922,Fisheries,Fisheries +379911,Fisheries,Fisheries +369541,Fisheries,Fisheries +369540,Fisheries,Fisheries +369536,Fisheries,Fisheries +461448,Fisheries,Fisheries +461446,Fisheries,Fisheries +460805,Fisheries,Fisheries +459850,Fisheries,Fisheries +459849,Fisheries,Fisheries +459848,Fisheries,Fisheries +456466,Fisheries,Fisheries +456464,Fisheries,Fisheries +446243,Fisheries,Fisheries +427442,Fisheries,Fisheries +427438,Fisheries,Fisheries +414825,Fisheries,Fisheries +409731,Fisheries,Fisheries +398977,Fisheries,Fisheries +398969,Fisheries,Fisheries +507729,Fisheries,Fisheries +499330,Fisheries,Fisheries +496517,Fisheries,Fisheries +488126,Fisheries,Fisheries +488124,Fisheries,Fisheries +488103,Fisheries,Fisheries +484233,Fisheries,Fisheries +481264,Fisheries,Fisheries +490236,Industry,Industry +490222,Industry,Industry +369537,Industry,Industry +369532,Industry,Industry +363368,Industry,Industry +363366,Industry,Industry +481269,Industry,Industry +481265,Industry,Industry +481264,Industry,Industry +479810,Industry,Industry +479800,Industry,Industry +479797,Industry,Industry +479789,Industry,Industry +479787,Industry,Industry +479785,Industry,Industry +468645,Industry,Industry +468634,Industry,Industry +468631,Industry,Industry +465497,Industry,Industry +463757,Industry,Industry +461446,Industry,Industry +461439,Industry,Industry +460805,Industry,Industry +460804,Industry,Industry +459953,Industry,Industry +459850,Industry,Industry +459849,Industry,Industry +459848,Industry,Industry +456734,Industry,Industry +456470,Industry,Industry +422706,Industry,Industry +420527,Industry,Industry +507727,Industry,Industry +505961,Industry,Industry +505960,Industry,Industry +502133,Infrastructure,Infrastructure +499308,Infrastructure,Infrastructure +379925,Infrastructure,Infrastructure +369538,Infrastructure,Infrastructure +488108,Infrastructure,Infrastructure +479780,Infrastructure,Infrastructure +461446,Infrastructure,Infrastructure +460805,Infrastructure,Infrastructure +449910,Infrastructure,Infrastructure +447276,Infrastructure,Infrastructure +446244,Infrastructure,Infrastructure +446243,Infrastructure,Infrastructure +479787,Regional Development,Regional Development +479780,Regional Development,Regional Development +356558,Regional Development,Regional Development +356555,Regional Development,Regional Development +356554,Regional Development,Regional Development +356553,Regional Development,Regional Development +356551,Regional Development,Regional Development +468638,Regional Development,Regional Development +468637,Regional Development,Regional Development +468630,Regional Development,Regional Development +461444,Regional Development,Regional Development +456469,Regional Development,Regional Development +427440,Regional Development,Regional Development +420536,Regional Development,Regional Development +420527,Regional Development,Regional Development +388617,Regional Development,Regional Development +369540,Regional Development,Regional Development +505962,Regional Development,Regional Development +490236,Regional Development,Regional Development +479811,Regional Development,Regional Development +479802,Regional Development,Regional Development +479799,Regional Development,Regional Development +479797,Regional Development,Regional Development +461448,Research and Development,Research and Development +456772,Research and Development,Research and Development +379938,Research and Development,Research and Development +379934,Research and Development,Research and Development +379931,Research and Development,Research and Development +379928,Research and Development,Research and Development +379925,Research and Development,Research and Development +379922,Research and Development,Research and Development +379918,Research and Development,Research and Development +375032,Research and Development,Research and Development +375031,Research and Development,Research and Development +375030,Research and Development,Research and Development +352546,Mining,Mining +350657,Industry,Industry +378839,Economic Development,Développement économique +426816,Health,Health +378343,International Development,International Development +350524,Privacy and Access to Information,Privacy and Access to Information +350528,Privacy and Access to Information,Privacy and Access to Information +350529,Research and Development,Research and Development +353804,Environment,Environment +378410,International Trade,International Trade +398943,Justice and Law Enforcement,Justice and Law Enforcement +350580,Justice and Law Enforcement,Justice and Law Enforcement +469280,Budget,Budget +350678,Employment and Training,Employment and Training +356980,Consumer Issues,Consumer Issues +461277,Housing,Housing +356980,Taxation and Finance,Taxation and Finance +445212,International Trade,International Trade +350722,International Development,International Development +350787,Budget,Budget +350792,Taxation and Finance,Taxation and Finance +437132,Climate,Climate +437170,Climate,Climate +353764,International Trade,International Trade +443883,Health,Health +443883,Consumer Issues,Consumer Issues +351446,Intellectual Property,Intellectual Property +497791,Budget,Budget +353315,Research and Development,Research and Development +497800,Budget,Budget +438166,Budget,Budget +413070,Agriculture,Agriculture +413068,Health,Health +351510,Taxation and Finance,Taxation and Finance +351512,Taxation and Finance,Taxation and Finance +358179,International Trade,International Trade +358179,Taxation and Finance,Taxation and Finance +374273,Environment,Environment +446007,Climate,Climate +471362,Economic Development,Economic Development +446007,Energy,Energy +353386,International Development,International Development +394880,Employment and Training,Employment and Training +353122,Health,Health +358982,Regional Development,Regional Development +353026,Economic Development,Economic Development +353028,Transportation,Transportation +381969,Immigration,Immigration +353001,Economic Development,Economic Development +353001,Small Business,Small Business +518894,Climate,Climate +518894,Energy,Energy +525458,Environment,Environment +541192,Infrastructure,Infrastructure +513348,Transportation,Transportation +537338,Industry,Industry +381440,International Trade,International Trade +381440,Transportation,Transportation +385916,Economic Development,Développement économique +356878,Regional Development,Développement régional +356878,Industry,Industrie +377537,Infrastructure,Infrastructure +352060,International Trade,International Trade +356044,International Trade,International Trade +409385,International Development,International Development +352140,Transportation,Transportation +357526,Transportation,Transportation +533426,Privacy and Access to Information,Privacy and Access to Information +352150,Official Languages,Official Languages +354703,Agriculture,Agriculture +354703,Financial Institutions,Financial Institutions +486810,Economic Development,Economic Development +358423,Agriculture,Agriculture +384984,Employment and Training,Employment and Training +384984,Immigration,Immigration +382412,International Trade,International Trade +384987,Labour,Labour +352480,Economic Development,Economic Development +352480,International Trade,International Trade +380287,Defence,Defence +380287,International Relations,International Relations +380287,International Trade,International Trade +354717,International Development,International Development +372990,Research and Development,Research and Development +352596,Research and Development,Research and Development +352597,Security,Security +352598,International Relations,International Relations +370127,Small Business,Small Business +353170,Economic Development,Développement économique +353171,International Development,Développement international +352824,Economic Development,Economic Development +355980,Health,Santé +489618,Employment and Training,Employment and Training +454521,Economic Development,Economic Development +354120,Energy,Energy +358385,International Trade,International Trade +360602,International Trade,International Trade +353238,Energy,Energy +353274,Economic Development,Economic Development +353278,Employment and Training,Employment and Training +355974,Economic Development,Economic Development +362084,Energy,Energy +362084,Environment,Environment +362084,Industry,Industry +362084,Regional Development,Regional Development +355971,Transportation,Transportation +356433,Economic Development,Economic Development +356433,Energy,Energy +356433,Environment,Environment +353315,Intellectual Property,Intellectual Property +353315,Economic Development,Economic Development +445215,International Relations,International Relations +353318,Employment and Training,Employment and Training +353318,Intellectual Property,Intellectual Property +353318,Research and Development,Research and Development +356629,Consumer Issues,Consumer Issues +356550,Energy,Energy +356629,Small Business,Small Business +356629,Housing,Housing +384957,Economic Development,Economic Development +353832,Taxation and Finance,Taxation and Finance +353832,Economic Development,Economic Development +353827,Economic Development,Economic Development +353832,Industry,Industry +353827,Infrastructure,Infrastructure +353832,Labour,Labour +353832,Regional Development,Regional Development +353827,Taxation and Finance,Taxation and Finance +353832,Transportation,Transportation +500477,Economic Development,Economic Development +380814,Labour,Labour +384985,Health,Health +353419,Agriculture,Agriculture +354621,Environment,Environment +354621,Transportation,Transportation +353464,Agriculture,Agriculture +353467,Agriculture,Agriculture +353520,Infrastructure,Infrastructure +354022,Environment,Environment +357731,Government Procurement,Government Procurement +366366,Environment,Environment +353645,Research and Development,Research and Development +357798,Government Procurement,Government Procurement +374808,International Trade,International Trade +353701,Economic Development,Economic Development +353723,Taxation and Finance,Taxation and Finance +432505,International Trade,International Trade +360242,Government Procurement,Government Procurement +360242,Privacy and Access to Information,Privacy and Access to Information +360242,Security,Security +354037,Environment,Environment +354037,Infrastructure,Infrastructure +354037,International Trade,International Trade +354033,Security,Security +354037,Taxation and Finance,Taxation and Finance +354037,Tourism,Tourism +354037,Transportation,Transportation +377408,Education,Education +353818,Health,Health +397679,Defence,Defence +376862,Government Procurement,Government Procurement +376862,Industry,Industry +376862,Intellectual Property,Intellectual Property +355195,International Trade,International Trade +376862,Regional Development,Regional Development +376862,Religion,Religion +376862,Research and Development,Research and Development +376862,Security,Security +376862,Transportation,Transportation +368660,Government Procurement,Government Procurement +368660,Security,Security +353834,International Development,International Development +353834,Infrastructure,Infrastructure +353834,Government Procurement,Government Procurement +353834,International Relations,International Relations +353860,International Development,International Development +353864,Forestry,Forestry +439799,Economic Development,Economic Development +358724,Defence,Defence +358724,Transportation,Transportation +386493,Infrastructure,Infrastructure +383010,Transportation,Transportation +354280,Housing,Housing +354280,Consumer Issues,Consumer Issues +461299,Economic Development,Economic Development +394998,Sports,Sports +408149,Sports,Sports +474415,Economic Development,Economic Development +468996,Research and Development,Research and Development +479811,Agriculture,Agriculture +363365,Budget,Budget +479780,Economic Development,Economic Development +502114,Education,Education +443000,Employment and Training,Employment and Training +456772,Energy,Energy +459955,Environment,Environment +479795,Fisheries,Fisheries +460842,Health,Health +499315,Industry,Industry +510852,Infrastructure,Infrastructure +479789,Regional Development,Regional Development +468645,Research and Development,Research and Development +363367,Transportation,Transportation +355286,Industry,Industry +355286,Intellectual Property,Intellectual Property +355286,Justice and Law Enforcement,Justice and Law Enforcement +355286,Privacy and Access to Information,Privacy and Access to Information +356976,Financial Institutions,Financial Institutions +361282,Small Business,Small Business +356104,Health,Health +355274,Education,Education +355291,Industry,Industry +355291,Intellectual Property,Intellectual Property +355291,Justice and Law Enforcement,Justice and Law Enforcement +355291,Privacy and Access to Information,Privacy and Access to Information +360230,Economic Development,Economic Development +360228,Industry,Industry +356628,Defence,Defence +356627,International Relations,International Relations +356627,International Trade,International Trade +455102,Intellectual Property,Intellectual Property +354718,Economic Development,Economic Development +355404,Regional Development,Regional Development +357316,International Development,International Development +356233,Transportation,Transportation +358642,Environment,Environment +356231,Budget,Budget +356547,Economic Development,Economic Development +502843,Fisheries,Fisheries +476068,Industry,Industry +502843,International Trade,International Trade +478421,Regional Development,Regional Development +538011,Health,Health +354902,Economic Development,Economic Development +375029,Research and Development,Research and Development +375027,Research and Development,Research and Development +369541,Research and Development,Research and Development +369540,Research and Development,Research and Development +369539,Research and Development,Research and Development +369538,Research and Development,Research and Development +369537,Research and Development,Research and Development +369535,Research and Development,Research and Development +369533,Research and Development,Research and Development +369532,Research and Development,Research and Development +369529,Research and Development,Research and Development +363373,Research and Development,Research and Development +363372,Research and Development,Research and Development +363371,Research and Development,Research and Development +363370,Research and Development,Research and Development +363369,Research and Development,Research and Development +363368,Research and Development,Research and Development +363367,Research and Development,Research and Development +363366,Research and Development,Research and Development +363365,Research and Development,Research and Development +363364,Research and Development,Research and Development +356572,Research and Development,Research and Development +356557,Research and Development,Research and Development +356556,Research and Development,Research and Development +356555,Research and Development,Research and Development +356554,Research and Development,Research and Development +356553,Research and Development,Research and Development +356551,Research and Development,Research and Development +449911,Research and Development,Research and Development +427442,Research and Development,Research and Development +427438,Research and Development,Research and Development +427437,Research and Development,Research and Development +424070,Research and Development,Research and Development +424060,Research and Development,Research and Development +424051,Research and Development,Research and Development +422706,Research and Development,Research and Development +420535,Research and Development,Research and Development +420528,Research and Development,Research and Development +414827,Research and Development,Research and Development +414799,Research and Development,Research and Development +409850,Research and Development,Research and Development +409827,Research and Development,Research and Development +409811,Research and Development,Research and Development +409801,Research and Development,Research and Development +409788,Research and Development,Research and Development +409768,Research and Development,Research and Development +409752,Research and Development,Research and Development +409745,Research and Development,Research and Development +409731,Research and Development,Research and Development +406855,Research and Development,Research and Development +406832,Research and Development,Research and Development +406828,Research and Development,Research and Development +406820,Research and Development,Research and Development +405856,Research and Development,Research and Development +403683,Research and Development,Research and Development +403670,Research and Development,Research and Development +403665,Research and Development,Research and Development +403655,Research and Development,Research and Development +403647,Research and Development,Research and Development +403641,Research and Development,Research and Development +403636,Research and Development,Research and Development +403460,Research and Development,Research and Development +398980,Research and Development,Research and Development +398977,Research and Development,Research and Development +398976,Research and Development,Research and Development +398974,Research and Development,Research and Development +398972,Research and Development,Research and Development +398969,Research and Development,Research and Development +392852,Research and Development,Research and Development +388619,Research and Development,Research and Development +388617,Research and Development,Research and Development +388615,Research and Development,Research and Development +388614,Research and Development,Research and Development +388613,Research and Development,Research and Development +522900,Research and Development,Research and Development +519615,Research and Development,Research and Development +517886,Research and Development,Research and Development +515649,Research and Development,Research and Development +514694,Research and Development,Research and Development +512294,Research and Development,Research and Development +496520,Research and Development,Research and Development +496512,Research and Development,Research and Development +488122,Research and Development,Research and Development +479809,Research and Development,Research and Development +479788,Research and Development,Research and Development +356557,Transportation,Transportation +398969,Transportation,Transportation +369535,Transportation,Transportation +355285,Industry,Industry +355284,Industry,Industry +355287,Industry,Industry +355285,Intellectual Property,Intellectual Property +355284,Intellectual Property,Intellectual Property +355287,Intellectual Property,Intellectual Property +355285,Justice and Law Enforcement,Justice and Law Enforcement +355284,Justice and Law Enforcement,Justice and Law Enforcement +355287,Justice and Law Enforcement,Justice and Law Enforcement +355285,Privacy and Access to Information,Privacy and Access to Information +355284,Privacy and Access to Information,Privacy and Access to Information +355287,Privacy and Access to Information,Privacy and Access to Information +354480,Small Business,Small Business +356103,Health,Health +356101,Health,Health +376456,Health,Health +376455,Health,Health +376452,Health,Health +356105,Health,Health +355290,Industry,Industry +355289,Industry,Industry +360542,Industry,Industry +355294,Industry,Industry +355290,Intellectual Property,Intellectual Property +355289,Intellectual Property,Intellectual Property +360542,Intellectual Property,Intellectual Property +355294,Intellectual Property,Intellectual Property +355290,Justice and Law Enforcement,Justice and Law Enforcement +355289,Justice and Law Enforcement,Justice and Law Enforcement +360542,Justice and Law Enforcement,Justice and Law Enforcement +355294,Justice and Law Enforcement,Justice and Law Enforcement +355290,Privacy and Access to Information,Privacy and Access to Information +355289,Privacy and Access to Information,Privacy and Access to Information +355294,Privacy and Access to Information,Privacy and Access to Information +360228,Economic Development,Economic Development +360227,Economic Development,Economic Development +360227,Industry,Industry +360226,Industry,Industry +360230,Industry,Industry +356627,Defence,Defence +355611,International Relations,International Relations +355604,International Relations,International Relations +356628,International Relations,International Relations +355611,International Trade,International Trade +355604,International Trade,International Trade +356628,International Trade,International Trade +455097,Intellectual Property,Intellectual Property +523193,Intellectual Property,Intellectual Property +354712,Intellectual Property,Intellectual Property +439773,Intellectual Property,Intellectual Property +412040,Intellectual Property,Intellectual Property +412037,Intellectual Property,Intellectual Property +391115,Intellectual Property,Intellectual Property +387642,Intellectual Property,Intellectual Property +387636,Intellectual Property,Intellectual Property +387635,Intellectual Property,Intellectual Property +387397,Intellectual Property,Intellectual Property +376805,Intellectual Property,Intellectual Property +493681,Intellectual Property,Intellectual Property +468104,Intellectual Property,Intellectual Property +468103,Intellectual Property,Intellectual Property +468102,Intellectual Property,Intellectual Property +468101,Intellectual Property,Intellectual Property +468100,Intellectual Property,Intellectual Property +468099,Intellectual Property,Intellectual Property +468098,Intellectual Property,Intellectual Property +468097,Intellectual Property,Intellectual Property +355402,Regional Development,Regional Development +354915,Regional Development,Regional Development +355650,Regional Development,Regional Development +355405,Regional Development,Regional Development +356524,International Development,International Development +354745,International Development,International Development +395691,International Development,International Development +395690,International Development,International Development +385910,International Development,International Development +375916,International Development,International Development +375912,International Development,International Development +375910,International Development,International Development +375907,International Development,International Development +375163,International Development,International Development +372781,International Development,International Development +359963,International Development,International Development +359962,International Development,International Development +356231,Environment,Environment +478421,Fisheries,Fisheries +476068,Fisheries,Fisheries +356547,Fisheries,Fisheries +498835,Health,Health +498826,Health,Health +410825,Health,Health +354860,Health,Health +377911,Economic Development,Economic Development +377910,Economic Development,Economic Development +401759,Economic Development,Economic Development +399570,Economic Development,Economic Development +393251,Economic Development,Economic Development +399570,Environment,Environment +393251,Environment,Environment +389393,Environment,Environment +377911,Environment,Environment +378078,Environment,Environment +378073,International Trade,International Trade +378072,International Trade,International Trade +378073,Transportation,Transportation +378072,Transportation,Transportation +378464,Transportation,Transportation +428078,Energy,Energy +428075,Energy,Energy +355741,Energy,Energy +428075,Economic Development,Economic Development +355741,Economic Development,Economic Development +428075,Environment,Environment +355741,Environment,Environment +428087,Environment,Environment +428075,Industry,Industry +380160,Mining,Mining +378737,Mining,Mining +375370,Mining,Mining +373635,Mining,Mining +370105,Mining,Mining +369895,Mining,Mining +369825,Mining,Mining +356724,Mining,Mining +504758,Energy,Energy +465067,Energy,Energy +369551,Energy,Energy +366485,Energy,Energy +366484,Energy,Energy +366382,Energy,Energy +356435,Energy,Energy +418344,Energy,Energy +418323,Energy,Energy +417282,Energy,Energy +417280,Energy,Energy +417276,Energy,Energy +417273,Energy,Energy +417271,Energy,Energy +416978,Energy,Energy +413239,Energy,Energy +410329,Energy,Energy +405966,Energy,Energy +405963,Energy,Energy +392823,Energy,Energy +374293,Energy,Energy +372985,Energy,Energy +372984,Energy,Energy +372983,Energy,Energy +372982,Energy,Energy +372980,Energy,Energy +372979,Energy,Energy +494043,Justice and Law Enforcement,Justice and Law Enforcement +494042,Justice and Law Enforcement,Justice and Law Enforcement +355021,Justice and Law Enforcement,Justice and Law Enforcement +480638,Justice and Law Enforcement,Justice and Law Enforcement +444276,Justice and Law Enforcement,Justice and Law Enforcement +382953,Justice and Law Enforcement,Justice and Law Enforcement +382804,Justice and Law Enforcement,Justice and Law Enforcement +431745,Employment and Training,Employment and Training +431744,Employment and Training,Employment and Training +409057,Employment and Training,Employment and Training +409051,Employment and Training,Employment and Training +463897,Employment and Training,Employment and Training +463895,Employment and Training,Employment and Training +463893,Employment and Training,Employment and Training +440928,Employment and Training,Employment and Training +437068,Employment and Training,Employment and Training +437067,Employment and Training,Employment and Training +437063,Employment and Training,Employment and Training +431744,Industry,Industry +428002,Industry,Industry +415454,Industry,Industry +412401,Industry,Industry +412400,Industry,Industry +412399,Industry,Industry +409057,Industry,Industry +409051,Industry,Industry +403237,Industry,Industry +403234,Industry,Industry +463897,Industry,Industry +463895,Industry,Industry +463893,Industry,Industry +440928,Industry,Industry +437068,Industry,Industry +437067,Industry,Industry +437063,Industry,Industry +431747,Industry,Industry +431746,Industry,Industry +463897,Labour,Labour +463895,Labour,Labour +440928,Labour,Labour +437068,Labour,Labour +437067,Labour,Labour +437063,Labour,Labour +428002,Labour,Labour +412401,Labour,Labour +412400,Labour,Labour +409057,Labour,Labour +403237,Small Business,Small Business +403234,Small Business,Small Business +463897,Small Business,Small Business +463895,Small Business,Small Business +463893,Small Business,Small Business +440928,Small Business,Small Business +437068,Small Business,Small Business +437067,Small Business,Small Business +437063,Small Business,Small Business +431747,Small Business,Small Business +431746,Small Business,Small Business +431745,Small Business,Small Business +431744,Small Business,Small Business +428002,Small Business,Small Business +415454,Small Business,Small Business +412401,Small Business,Small Business +412400,Small Business,Small Business +412399,Small Business,Small Business +409057,Small Business,Small Business +431745,Taxation and Finance,Taxation and Finance +412399,Taxation and Finance,Taxation and Finance +440928,Taxation and Finance,Taxation and Finance +382098,International Trade,International Trade +382096,International Trade,International Trade +370513,International Trade,International Trade +370512,International Trade,International Trade +370506,International Trade,International Trade +357459,International Trade,International Trade +357457,International Trade,International Trade +357455,International Trade,International Trade +357454,International Trade,International Trade +357452,International Trade,International Trade +428239,International Trade,International Trade +428238,International Trade,International Trade +428237,International Trade,International Trade +416815,International Trade,International Trade +416812,International Trade,International Trade +389637,International Trade,International Trade +389636,International Trade,International Trade +382120,International Trade,International Trade +382104,International Trade,International Trade +382101,International Trade,International Trade +389636,Taxation and Finance,Taxation and Finance +389635,Taxation and Finance,Taxation and Finance +382120,Taxation and Finance,Taxation and Finance +382104,Taxation and Finance,Taxation and Finance +382101,Taxation and Finance,Taxation and Finance +382099,Taxation and Finance,Taxation and Finance +382098,Taxation and Finance,Taxation and Finance +382096,Taxation and Finance,Taxation and Finance +370513,Taxation and Finance,Taxation and Finance +370512,Taxation and Finance,Taxation and Finance +370506,Taxation and Finance,Taxation and Finance +357459,Taxation and Finance,Taxation and Finance +357457,Taxation and Finance,Taxation and Finance +357454,Taxation and Finance,Taxation and Finance +357452,Taxation and Finance,Taxation and Finance +428239,Taxation and Finance,Taxation and Finance +428238,Taxation and Finance,Taxation and Finance +428237,Taxation and Finance,Taxation and Finance +416815,Taxation and Finance,Taxation and Finance +416812,Taxation and Finance,Taxation and Finance +399823,Taxation and Finance,Taxation and Finance +355205,Tourism,Tourism +442655,Industry,Industry +411121,Industry,Industry +393885,Industry,Industry +371612,Industry,Industry +371609,Industry,Industry +371605,Industry,Industry +368590,Industry,Industry +361149,Industry,Industry +358361,Industry,Industry +380179,Intellectual Property,Intellectual Property +380178,Intellectual Property,Intellectual Property +371612,Intellectual Property,Intellectual Property +371609,Intellectual Property,Intellectual Property +371605,Intellectual Property,Intellectual Property +368590,Intellectual Property,Intellectual Property +361149,Intellectual Property,Intellectual Property +358361,Intellectual Property,Intellectual Property +444307,Intellectual Property,Intellectual Property +442655,Intellectual Property,Intellectual Property +435381,Intellectual Property,Intellectual Property +411121,Intellectual Property,Intellectual Property +435381,Justice and Law Enforcement,Justice and Law Enforcement +435380,Justice and Law Enforcement,Justice and Law Enforcement +380179,Justice and Law Enforcement,Justice and Law Enforcement +380178,Justice and Law Enforcement,Justice and Law Enforcement +371612,Justice and Law Enforcement,Justice and Law Enforcement +371609,Justice and Law Enforcement,Justice and Law Enforcement +371605,Justice and Law Enforcement,Justice and Law Enforcement +368590,Justice and Law Enforcement,Justice and Law Enforcement +361149,Justice and Law Enforcement,Justice and Law Enforcement +358361,Justice and Law Enforcement,Justice and Law Enforcement +419742,Justice and Law Enforcement,Justice and Law Enforcement +418357,Justice and Law Enforcement,Justice and Law Enforcement +418356,Justice and Law Enforcement,Justice and Law Enforcement +414764,Justice and Law Enforcement,Justice and Law Enforcement +411121,Justice and Law Enforcement,Justice and Law Enforcement +411120,Justice and Law Enforcement,Justice and Law Enforcement +411118,Justice and Law Enforcement,Justice and Law Enforcement +411116,Justice and Law Enforcement,Justice and Law Enforcement +393885,Justice and Law Enforcement,Justice and Law Enforcement +444307,Justice and Law Enforcement,Justice and Law Enforcement +359857,Health,Health +359851,Health,Health +359857,Research and Development,Research and Development +359851,Research and Development,Research and Development +355288,Environment,Environment +355295,Environment,Environment +357450,Energy,Energy +355311,Energy,Energy +355273,Infrastructure,Infrastructure +430217,Infrastructure,Infrastructure +363104,Infrastructure,Infrastructure +363102,Infrastructure,Infrastructure +418751,Transportation,Transportation +411252,Transportation,Transportation +375902,Transportation,Transportation +355490,Transportation,Transportation +355489,Transportation,Transportation +411050,Transportation,Transportation +411045,Transportation,Transportation +411043,Transportation,Transportation +411040,Transportation,Transportation +400466,Transportation,Transportation +400462,Transportation,Transportation +400460,Transportation,Transportation +400459,Transportation,Transportation +400458,Transportation,Transportation +400457,Transportation,Transportation +400456,Transportation,Transportation +400454,Transportation,Transportation +400453,Transportation,Transportation +400451,Transportation,Transportation +386762,Transportation,Transportation +466102,Transportation,Transportation +426120,Transportation,Transportation +423633,Transportation,Transportation +422929,Transportation,Transportation +420250,Transportation,Transportation +355737,Infrastructure,Infrastructure +355736,Infrastructure,Infrastructure +355739,Infrastructure,Infrastructure +455968,Agriculture,Agriculture +455965,Agriculture,Agriculture +365202,Agriculture,Agriculture +362405,Agriculture,Agriculture +362404,Agriculture,Agriculture +362403,Agriculture,Agriculture +361542,Agriculture,Agriculture +359896,Agriculture,Agriculture +359895,Agriculture,Agriculture +359893,Agriculture,Agriculture +359890,Agriculture,Agriculture +359888,Agriculture,Agriculture +359887,Agriculture,Agriculture +359886,Agriculture,Agriculture +359882,Agriculture,Agriculture +398039,Agriculture,Agriculture +395138,Agriculture,Agriculture +395136,Agriculture,Agriculture +395135,Agriculture,Agriculture +394355,Agriculture,Agriculture +392710,Agriculture,Agriculture +387941,Agriculture,Agriculture +387940,Agriculture,Agriculture +381634,Agriculture,Agriculture +381633,Agriculture,Agriculture +381632,Agriculture,Agriculture +381631,Agriculture,Agriculture +381630,Agriculture,Agriculture +379882,Agriculture,Agriculture +379881,Agriculture,Agriculture +379879,Agriculture,Agriculture +379877,Agriculture,Agriculture +377023,Agriculture,Agriculture +377018,Agriculture,Agriculture +374996,Agriculture,Agriculture +374995,Agriculture,Agriculture +371777,Agriculture,Agriculture +371757,Agriculture,Agriculture +371756,Agriculture,Agriculture +371755,Agriculture,Agriculture +371754,Agriculture,Agriculture +371751,Agriculture,Agriculture +371750,Agriculture,Agriculture +371749,Agriculture,Agriculture +371747,Agriculture,Agriculture +368310,Agriculture,Agriculture +365206,Agriculture,Agriculture +365203,Agriculture,Agriculture +449686,Agriculture,Agriculture +449684,Agriculture,Agriculture +449683,Agriculture,Agriculture +449682,Agriculture,Agriculture +447333,Agriculture,Agriculture +447331,Agriculture,Agriculture +447330,Agriculture,Agriculture +447328,Agriculture,Agriculture +447327,Agriculture,Agriculture +445118,Agriculture,Agriculture +443881,Agriculture,Agriculture +443880,Agriculture,Agriculture +443879,Agriculture,Agriculture +443878,Agriculture,Agriculture +443876,Agriculture,Agriculture +442374,Agriculture,Agriculture +442372,Agriculture,Agriculture +442370,Agriculture,Agriculture +442367,Agriculture,Agriculture +437501,Agriculture,Agriculture +437500,Agriculture,Agriculture +437499,Agriculture,Agriculture +437498,Agriculture,Agriculture +437497,Agriculture,Agriculture +437496,Agriculture,Agriculture +437495,Agriculture,Agriculture +437493,Agriculture,Agriculture +435431,Agriculture,Agriculture +435430,Agriculture,Agriculture +435429,Agriculture,Agriculture +435428,Agriculture,Agriculture +435427,Agriculture,Agriculture +435426,Agriculture,Agriculture +435425,Agriculture,Agriculture +435424,Agriculture,Agriculture +435423,Agriculture,Agriculture +435422,Agriculture,Agriculture +433890,Agriculture,Agriculture +433889,Agriculture,Agriculture +433886,Agriculture,Agriculture +432497,Agriculture,Agriculture +432494,Agriculture,Agriculture +429952,Agriculture,Agriculture +429340,Agriculture,Agriculture +429338,Agriculture,Agriculture +425281,Agriculture,Agriculture +425280,Agriculture,Agriculture +423704,Agriculture,Agriculture +423702,Agriculture,Agriculture +420663,Agriculture,Agriculture +419847,Agriculture,Agriculture +419845,Agriculture,Agriculture +417249,Agriculture,Agriculture +416895,Agriculture,Agriculture +416893,Agriculture,Agriculture +416892,Agriculture,Agriculture +416889,Agriculture,Agriculture +416885,Agriculture,Agriculture +413781,Agriculture,Agriculture +413779,Agriculture,Agriculture +413776,Agriculture,Agriculture +413773,Agriculture,Agriculture +413771,Agriculture,Agriculture +410824,Agriculture,Agriculture +410065,Agriculture,Agriculture +410064,Agriculture,Agriculture +410063,Agriculture,Agriculture +410062,Agriculture,Agriculture +410060,Agriculture,Agriculture +410059,Agriculture,Agriculture +410058,Agriculture,Agriculture +410057,Agriculture,Agriculture +408168,Agriculture,Agriculture +408167,Agriculture,Agriculture +408166,Agriculture,Agriculture +408165,Agriculture,Agriculture +408163,Agriculture,Agriculture +408162,Agriculture,Agriculture +403035,Agriculture,Agriculture +403034,Agriculture,Agriculture +403032,Agriculture,Agriculture +400686,Agriculture,Agriculture +400682,Agriculture,Agriculture +531122,Agriculture,Agriculture +531121,Agriculture,Agriculture +528101,Agriculture,Agriculture +525240,Agriculture,Agriculture +525235,Agriculture,Agriculture +521018,Agriculture,Agriculture +521016,Agriculture,Agriculture +521015,Agriculture,Agriculture +521014,Agriculture,Agriculture +521013,Agriculture,Agriculture +521012,Agriculture,Agriculture +521011,Agriculture,Agriculture +521010,Agriculture,Agriculture +521009,Agriculture,Agriculture +518533,Agriculture,Agriculture +509520,Agriculture,Agriculture +505005,Agriculture,Agriculture +501759,Agriculture,Agriculture +501758,Agriculture,Agriculture +498527,Agriculture,Agriculture +498524,Agriculture,Agriculture +498520,Agriculture,Agriculture +498518,Agriculture,Agriculture +498517,Agriculture,Agriculture +498515,Agriculture,Agriculture +498508,Agriculture,Agriculture +495632,Agriculture,Agriculture +492067,Agriculture,Agriculture +490433,Agriculture,Agriculture +490432,Agriculture,Agriculture +490425,Agriculture,Agriculture +490421,Agriculture,Agriculture +490419,Agriculture,Agriculture +490418,Agriculture,Agriculture +485820,Agriculture,Agriculture +477895,Agriculture,Agriculture +476308,Agriculture,Agriculture +473606,Agriculture,Agriculture +473605,Agriculture,Agriculture +473601,Agriculture,Agriculture +473596,Agriculture,Agriculture +470429,Agriculture,Agriculture +466601,Agriculture,Agriculture +466600,Agriculture,Agriculture +466599,Agriculture,Agriculture +466598,Agriculture,Agriculture +466597,Agriculture,Agriculture +464397,Agriculture,Agriculture +464395,Agriculture,Agriculture +464394,Agriculture,Agriculture +464393,Agriculture,Agriculture +464392,Agriculture,Agriculture +462090,Agriculture,Agriculture +460877,Agriculture,Agriculture +460866,Agriculture,Agriculture +457980,Agriculture,Agriculture +457979,Agriculture,Agriculture +456433,Agriculture,Agriculture +464392,International Trade,International Trade +462090,International Trade,International Trade +400686,International Trade,International Trade +400682,International Trade,International Trade +398039,International Trade,International Trade +395138,International Trade,International Trade +395136,International Trade,International Trade +395135,International Trade,International Trade +392710,International Trade,International Trade +387940,International Trade,International Trade +381633,International Trade,International Trade +381632,International Trade,International Trade +379882,International Trade,International Trade +377023,International Trade,International Trade +371755,International Trade,International Trade +371754,International Trade,International Trade +371751,International Trade,International Trade +371750,International Trade,International Trade +371749,International Trade,International Trade +371747,International Trade,International Trade +365206,International Trade,International Trade +365203,International Trade,International Trade +362404,International Trade,International Trade +362403,International Trade,International Trade +361542,International Trade,International Trade +359895,International Trade,International Trade +359890,International Trade,International Trade +359887,International Trade,International Trade +359886,International Trade,International Trade +359883,International Trade,International Trade +359882,International Trade,International Trade +445118,International Trade,International Trade +443876,International Trade,International Trade +442372,International Trade,International Trade +442370,International Trade,International Trade +442367,International Trade,International Trade +437501,International Trade,International Trade +437500,International Trade,International Trade +437499,International Trade,International Trade +437498,International Trade,International Trade +437497,International Trade,International Trade +437495,International Trade,International Trade +435429,International Trade,International Trade +435428,International Trade,International Trade +435427,International Trade,International Trade +435426,International Trade,International Trade +435425,International Trade,International Trade +435424,International Trade,International Trade +435423,International Trade,International Trade +435422,International Trade,International Trade +433890,International Trade,International Trade +433889,International Trade,International Trade +433888,International Trade,International Trade +433886,International Trade,International Trade +432497,International Trade,International Trade +432496,International Trade,International Trade +432494,International Trade,International Trade +429948,International Trade,International Trade +429340,International Trade,International Trade +429338,International Trade,International Trade +429334,International Trade,International Trade +425284,International Trade,International Trade +425283,International Trade,International Trade +425282,International Trade,International Trade +425281,International Trade,International Trade +425280,International Trade,International Trade +425278,International Trade,International Trade +425277,International Trade,International Trade +423707,International Trade,International Trade +423706,International Trade,International Trade +423704,International Trade,International Trade +423702,International Trade,International Trade +420663,International Trade,International Trade +420662,International Trade,International Trade +419846,International Trade,International Trade +419845,International Trade,International Trade +419840,International Trade,International Trade +417249,International Trade,International Trade +416895,International Trade,International Trade +416893,International Trade,International Trade +416892,International Trade,International Trade +416889,International Trade,International Trade +416885,International Trade,International Trade +413773,International Trade,International Trade +413771,International Trade,International Trade +410065,International Trade,International Trade +410064,International Trade,International Trade +410063,International Trade,International Trade +410060,International Trade,International Trade +410059,International Trade,International Trade +410058,International Trade,International Trade +410057,International Trade,International Trade +408168,International Trade,International Trade +408167,International Trade,International Trade +408166,International Trade,International Trade +408163,International Trade,International Trade +408162,International Trade,International Trade +408161,International Trade,International Trade +403034,International Trade,International Trade +403032,International Trade,International Trade +531126,International Trade,International Trade +531122,International Trade,International Trade +528103,International Trade,International Trade +525237,International Trade,International Trade +525235,International Trade,International Trade +518533,International Trade,International Trade +509520,International Trade,International Trade +498524,International Trade,International Trade +492067,International Trade,International Trade +477895,International Trade,International Trade +476308,International Trade,International Trade +475873,International Trade,International Trade +473606,International Trade,International Trade +473604,International Trade,International Trade +473601,International Trade,International Trade +473599,International Trade,International Trade +473596,International Trade,International Trade +466596,International Trade,International Trade +464397,International Trade,International Trade +464395,International Trade,International Trade +464394,International Trade,International Trade +381397,Health,Health +374155,Health,Health +363982,Health,Health +360382,Health,Health +356633,Health,Health +356081,Health,Health +356080,Health,Health +356064,Health,Health +408883,Health,Health +408882,Health,Health +408881,Health,Health +408880,Health,Health +408879,Health,Health +408878,Health,Health +408877,Health,Health +408876,Health,Health +408875,Health,Health +407211,Health,Health +523370,Budget,Budget +518615,Budget,Budget +435741,Budget,Budget +392137,Budget,Budget +382689,Budget,Budget +372877,Budget,Budget +372874,Budget,Budget +372854,Budget,Budget +372852,Budget,Budget +527049,Budget,Budget +531786,Energy,Energy +527049,Energy,Energy +372879,Energy,Energy +523370,Energy,Energy +518615,Energy,Energy +485964,Energy,Energy +444719,Energy,Energy +435881,Energy,Energy +435875,Energy,Energy +531130,Sports,Sports +470693,Health,Health +468036,Health,Health +370781,Health,Health +355804,Health,Health +355803,Health,Health +355802,Health,Health +355801,Health,Health +358056,Employment and Training,Employment and Training +358056,Taxation and Finance,Taxation and Finance +468572,Agriculture,Agriculture +468571,Agriculture,Agriculture +429332,Agriculture,Agriculture +429329,Agriculture,Agriculture +518309,Agriculture,Agriculture +502932,Agriculture,Agriculture +429332,Health,Health +429329,Health,Health +520345,Health,Health +520344,Health,Health +520343,Health,Health +506528,Health,Health +502932,Health,Health +468572,Health,Health +432379,Economic Development,Economic Development +431846,Economic Development,Economic Development +355866,Economic Development,Economic Development +544292,Economic Development,Economic Development +544291,Economic Development,Economic Development +520150,Economic Development,Economic Development +493680,Economic Development,Economic Development +470710,Economic Development,Economic Development +461804,Economic Development,Economic Development +457444,Economic Development,Economic Development +457439,Economic Development,Economic Development +533779,Transportation,Transportation +511898,Transportation,Transportation +381024,Transportation,Transportation +375077,Transportation,Transportation +375076,Transportation,Transportation +375071,Transportation,Transportation +375062,Transportation,Transportation +375060,Transportation,Transportation +375059,Transportation,Transportation +370619,Transportation,Transportation +370569,Transportation,Transportation +368647,Transportation,Transportation +368393,Transportation,Transportation +363207,Transportation,Transportation +363206,Transportation,Transportation +363122,Transportation,Transportation +358824,Transportation,Transportation +358795,Transportation,Transportation +491948,Transportation,Transportation +462003,Transportation,Transportation +455029,Transportation,Transportation +455028,Transportation,Transportation +455025,Transportation,Transportation +453070,Transportation,Transportation +429920,Transportation,Transportation +424249,Transportation,Transportation +422503,Transportation,Transportation +422502,Transportation,Transportation +417567,Transportation,Transportation +417565,Transportation,Transportation +417562,Transportation,Transportation +414176,Transportation,Transportation +414175,Transportation,Transportation +414174,Transportation,Transportation +414173,Transportation,Transportation +414172,Transportation,Transportation +414169,Transportation,Transportation +414168,Transportation,Transportation +414167,Transportation,Transportation +406538,Transportation,Transportation +406535,Transportation,Transportation +406533,Transportation,Transportation +400885,Transportation,Transportation +397753,Transportation,Transportation +388943,Transportation,Transportation +388942,Transportation,Transportation +388903,Transportation,Transportation +388902,Transportation,Transportation +384438,Transportation,Transportation +384302,Transportation,Transportation +384301,Transportation,Transportation +382523,Transportation,Transportation +357204,Budget,Budget +357203,Budget,Budget +373320,Budget,Budget +367559,Budget,Budget +367322,Budget,Budget +366768,Budget,Budget +365544,Budget,Budget +365543,Budget,Budget +364892,Budget,Budget +364843,Budget,Budget +364842,Budget,Budget +357211,Budget,Budget +357210,Budget,Budget +357209,Budget,Budget +357208,Budget,Budget +357207,Budget,Budget +357206,Budget,Budget +364842,Housing,Housing +364142,Housing,Housing +357211,Housing,Housing +357210,Housing,Housing +357209,Housing,Housing +357208,Housing,Housing +357207,Housing,Housing +357206,Housing,Housing +357205,Housing,Housing +357204,Housing,Housing +357203,Housing,Housing +373320,Housing,Housing +373319,Housing,Housing +367559,Housing,Housing +367322,Housing,Housing +366768,Housing,Housing +365544,Housing,Housing +365543,Housing,Housing +364892,Housing,Housing +357204,Infrastructure,Infrastructure +357203,Infrastructure,Infrastructure +373320,Infrastructure,Infrastructure +373319,Infrastructure,Infrastructure +367559,Infrastructure,Infrastructure +367322,Infrastructure,Infrastructure +366768,Infrastructure,Infrastructure +365544,Infrastructure,Infrastructure +365543,Infrastructure,Infrastructure +364892,Infrastructure,Infrastructure +364843,Infrastructure,Infrastructure +364842,Infrastructure,Infrastructure +364142,Infrastructure,Infrastructure +357211,Infrastructure,Infrastructure +357210,Infrastructure,Infrastructure +357209,Infrastructure,Infrastructure +357208,Infrastructure,Infrastructure +357207,Infrastructure,Infrastructure +357206,Infrastructure,Infrastructure +357204,Municipalities,Municipalities +357203,Municipalities,Municipalities +373319,Municipalities,Municipalities +365543,Municipalities,Municipalities +364843,Municipalities,Municipalities +364842,Municipalities,Municipalities +364142,Municipalities,Municipalities +357210,Municipalities,Municipalities +357209,Municipalities,Municipalities +357208,Municipalities,Municipalities +357207,Municipalities,Municipalities +357205,Taxation and Finance,Taxation and Finance +357204,Taxation and Finance,Taxation and Finance +365544,Taxation and Finance,Taxation and Finance +365543,Taxation and Finance,Taxation and Finance +364892,Taxation and Finance,Taxation and Finance +364843,Taxation and Finance,Taxation and Finance +364842,Taxation and Finance,Taxation and Finance +357211,Taxation and Finance,Taxation and Finance +357210,Taxation and Finance,Taxation and Finance +357209,Taxation and Finance,Taxation and Finance +357208,Taxation and Finance,Taxation and Finance +357207,Taxation and Finance,Taxation and Finance +433081,Health,Health +422831,Health,Health +388980,Health,Health +382058,Health,Health +381988,Health,Health +381987,Health,Health +380922,Health,Health +380547,Health,Health +380546,Health,Health +358060,Employment and Training,Employment and Training +358055,Employment and Training,Employment and Training +358053,Employment and Training,Employment and Training +358051,Employment and Training,Employment and Training +358048,Employment and Training,Employment and Training +381968,Employment and Training,Employment and Training +370645,Employment and Training,Employment and Training +370643,Employment and Training,Employment and Training +370642,Employment and Training,Employment and Training +370642,Industry,Industry +370635,Industry,Industry +381968,Industry,Industry +370645,Industry,Industry +370642,Regional Development,Regional Development +370635,Regional Development,Regional Development +381968,Regional Development,Regional Development +370645,Regional Development,Regional Development +358051,Taxation and Finance,Taxation and Finance +358048,Taxation and Finance,Taxation and Finance +381968,Taxation and Finance,Taxation and Finance +370645,Taxation and Finance,Taxation and Finance +370643,Taxation and Finance,Taxation and Finance +370635,Taxation and Finance,Taxation and Finance +358060,Taxation and Finance,Taxation and Finance +358055,Taxation and Finance,Taxation and Finance +417146,Immigration,Immigration +400475,Immigration,Immigration +392282,Immigration,Immigration +390072,Immigration,Immigration +373877,Immigration,Immigration +359547,Immigration,Immigration +355992,Immigration,Immigration +422794,Immigration,Immigration +417148,Immigration,Immigration +376452,Budget,Budget +356105,Budget,Budget +376456,Budget,Budget +358944,Small Business,Small Business +522371,Economic Development,Economic Development +504186,Economic Development,Economic Development +394011,Economic Development,Economic Development +392536,Economic Development,Economic Development +383243,Economic Development,Economic Development +379365,Economic Development,Economic Development +359753,Economic Development,Economic Development +359751,Economic Development,Economic Development +489481,Economic Development,Economic Development +474974,Economic Development,Economic Development +470292,Economic Development,Economic Development +464178,Economic Development,Economic Development +464177,Economic Development,Economic Development +452517,Economic Development,Economic Development +452510,Economic Development,Economic Development +447817,Economic Development,Economic Development +537318,Economic Development,Economic Development +534073,Economic Development,Economic Development +534068,Economic Development,Economic Development +531650,Economic Development,Economic Development +528087,Economic Development,Economic Development +528081,Economic Development,Economic Development +356306,Forestry,Forestry +440261,Labour,Labour +517080,Labour,Labour +373135,Labour,Labour +372841,Labour,Labour +359944,Regional Development,Regional Development +359943,Regional Development,Regional Development +359942,Regional Development,Regional Development +357907,Regional Development,Regional Development +357906,Regional Development,Regional Development +357905,Regional Development,Regional Development +361166,Regional Development,Regional Development +359950,Regional Development,Regional Development +359949,Regional Development,Regional Development +359948,Regional Development,Regional Development +359947,Regional Development,Regional Development +359946,Regional Development,Regional Development +440256,International Trade,International Trade +371975,Economic Development,Economic Development +542854,Economic Development,Economic Development +365228,Economic Development,Economic Development +361123,Economic Development,Economic Development +357898,Economic Development,Economic Development +428311,Economic Development,Economic Development +416485,Economic Development,Economic Development +416480,Economic Development,Economic Development +409206,Economic Development,Economic Development +403126,Economic Development,Economic Development +400271,Economic Development,Economic Development +400270,Economic Development,Economic Development +392246,Economic Development,Economic Development +392245,Economic Development,Economic Development +390369,Economic Development,Economic Development +387325,Economic Development,Economic Development +383324,Economic Development,Economic Development +382425,Economic Development,Economic Development +382210,Economic Development,Economic Development +382209,Economic Development,Economic Development +382205,Economic Development,Economic Development +382203,Economic Development,Economic Development +382202,Economic Development,Economic Development +542856,International Trade,International Trade +516925,International Trade,International Trade +416480,International Trade,International Trade +390369,International Trade,International Trade +383324,International Trade,International Trade +382203,International Trade,International Trade +371990,International Trade,International Trade +371985,International Trade,International Trade +371980,International Trade,International Trade +357896,International Trade,International Trade +357895,International Trade,International Trade +357894,International Trade,International Trade +357888,International Trade,International Trade +498207,International Trade,International Trade +492984,International Trade,International Trade +490943,International Trade,International Trade +481905,International Trade,International Trade +542858,International Trade,International Trade +426928,International Trade,International Trade +426923,International Trade,International Trade +400226,International Trade,International Trade +400225,International Trade,International Trade +400223,International Trade,International Trade +400222,International Trade,International Trade +400221,International Trade,International Trade +384093,International Trade,International Trade +377388,International Trade,International Trade +377387,International Trade,International Trade +377386,International Trade,International Trade +377385,International Trade,International Trade +377384,International Trade,International Trade +374760,International Trade,International Trade +370021,International Trade,International Trade +426942,International Trade,International Trade +360963,Energy,Energy +360962,Energy,Energy +360979,Energy,Energy +360976,Energy,Energy +360967,Energy,Energy +446812,Consumer Issues,Consumer Issues +446811,Consumer Issues,Consumer Issues +398182,Consumer Issues,Consumer Issues +532760,Health,Health +532759,Health,Health +428784,Health,Health +427899,Health,Health +427695,Health,Health +418547,Health,Health +411401,Health,Health +402977,Health,Health +402974,Health,Health +402930,Health,Health +402927,Health,Health +402924,Health,Health +402920,Health,Health +402906,Health,Health +402905,Health,Health +402902,Health,Health +402900,Health,Health +402896,Health,Health +402892,Health,Health +402689,Health,Health +381909,Health,Health +381908,Health,Health +381907,Health,Health +381906,Health,Health +357098,Health,Health +514207,Health,Health +445834,Health,Health +445833,Health,Health +445832,Health,Health +357142,Research and Development,Research and Development +426814,Research and Development,Research and Development +372786,Research and Development,Research and Development +363385,Research and Development,Research and Development +363384,Research and Development,Research and Development +359965,Research and Development,Research and Development +357381,Environment,Environnement +519102,Environment,Environnement +441665,Environment,Environnement +359644,Environment,Environnement +357381,Transportation,Transports +357242,Transportation,Transports +441665,Transportation,Transports +368664,Transportation,Transports +366419,Transportation,Transports +364528,Transportation,Transports +360966,Transportation,Transports +359644,Transportation,Transports +423653,Health,Santé +423652,Health,Santé +448350,Health,Santé +448349,Health,Santé +447092,Health,Santé +447091,Health,Santé +447089,Health,Santé +438698,Health,Santé +438694,Health,Santé +438692,Health,Santé +436952,Health,Santé +428947,Health,Santé +428291,Health,Santé +428289,Health,Santé +496768,Agriculture,Agriculture +496766,Agriculture,Agriculture +370350,Agriculture,Agriculture +368924,Agriculture,Agriculture +368923,Agriculture,Agriculture +496766,Internal Trade,Commerce intérieur +380368,Internal Trade,Commerce intérieur +370350,Internal Trade,Commerce intérieur +368924,Internal Trade,Commerce intérieur +368923,Internal Trade,Commerce intérieur +496768,International Trade,Commerce international +496766,International Trade,Commerce international +380368,International Trade,Commerce international +370350,International Trade,Commerce international +368924,International Trade,Commerce international +502906,Budget,Budget +502899,Budget,Budget +535117,Budget,Budget +535115,Budget,Budget +525112,Budget,Budget +525105,Budget,Budget +525096,Budget,Budget +525093,Budget,Budget +525090,Budget,Budget +525089,Budget,Budget +525082,Budget,Budget +525071,Budget,Budget +514163,Budget,Budget +513036,Budget,Budget +508417,Budget,Budget +505516,Budget,Budget +505515,Budget,Budget +505514,Budget,Budget +505512,Budget,Budget +505511,Budget,Budget +384276,Health,Health +538668,Health,Health +525112,Health,Health +513035,Health,Health +483840,Health,Health +479985,Health,Health +478180,Health,Health +478177,Health,Health +475525,Health,Health +472815,Health,Health +472811,Health,Health +472806,Health,Health +472804,Health,Health +471093,Health,Health +471092,Health,Health +442940,Health,Health +457324,International Development,International Development +457323,International Development,International Development +453843,International Development,International Development +453842,International Development,International Development +453840,International Development,International Development +453835,International Development,International Development +453833,International Development,International Development +453830,International Development,International Development +453829,International Development,International Development +453827,International Development,International Development +452300,International Development,International Development +452297,International Development,International Development +452267,International Development,International Development +450521,International Development,International Development +450520,International Development,International Development +450519,International Development,International Development +445736,International Development,International Development +445734,International Development,International Development +443510,International Development,International Development +443509,International Development,International Development +443508,International Development,International Development +443506,International Development,International Development +442940,International Development,International Development +414560,International Development,International Development +402776,International Development,International Development +397881,International Development,International Development +389870,International Development,International Development +389869,International Development,International Development +389868,International Development,International Development +387310,International Development,International Development +384283,International Development,International Development +384282,International Development,International Development +384274,International Development,International Development +538668,International Development,International Development +535117,International Development,International Development +535115,International Development,International Development +525112,International Development,International Development +525105,International Development,International Development +525096,International Development,International Development +525093,International Development,International Development +525090,International Development,International Development +525089,International Development,International Development +525082,International Development,International Development +525071,International Development,International Development +525062,International Development,International Development +514164,International Development,International Development +513034,International Development,International Development +511554,International Development,International Development +511553,International Development,International Development +511552,International Development,International Development +511551,International Development,International Development +508420,International Development,International Development +505514,International Development,International Development +505513,International Development,International Development +502906,International Development,International Development +502905,International Development,International Development +502904,International Development,International Development +502899,International Development,International Development +499494,International Development,International Development +499492,International Development,International Development +499490,International Development,International Development +499488,International Development,International Development +499485,International Development,International Development +499484,International Development,International Development +499482,International Development,International Development +499481,International Development,International Development +495569,International Development,International Development +493714,International Development,International Development +493713,International Development,International Development +490795,International Development,International Development +490791,International Development,International Development +490790,International Development,International Development +490789,International Development,International Development +488081,International Development,International Development +483840,International Development,International Development +483839,International Development,International Development +483660,International Development,International Development +483659,International Development,International Development +479981,International Development,International Development +479978,International Development,International Development +479975,International Development,International Development +479734,International Development,International Development +478182,International Development,International Development +478180,International Development,International Development +478179,International Development,International Development +478178,International Development,International Development +478177,International Development,International Development +478176,International Development,International Development +475536,International Development,International Development +475533,International Development,International Development +475525,International Development,International Development +472806,International Development,International Development +472804,International Development,International Development +471093,International Development,International Development +471092,International Development,International Development +468583,International Development,International Development +468582,International Development,International Development +468580,International Development,International Development +468579,International Development,International Development +468578,International Development,International Development +464938,International Development,International Development +464936,International Development,International Development +464931,International Development,International Development +459650,International Development,International Development +391284,Economic Development,Economic Development +391278,Economic Development,Economic Development +383981,Economic Development,Economic Development +383698,Economic Development,Economic Development +383693,Economic Development,Economic Development +378373,Economic Development,Economic Development +378371,Economic Development,Economic Development +378370,Economic Development,Economic Development +378367,Economic Development,Economic Development +378366,Economic Development,Economic Development +378365,Economic Development,Economic Development +378364,Economic Development,Economic Development +378363,Economic Development,Economic Development +378362,Economic Development,Economic Development +378361,Economic Development,Economic Development +378360,Economic Development,Economic Development +378359,Economic Development,Economic Development +378358,Economic Development,Economic Development +378357,Economic Development,Economic Development +378356,Economic Development,Economic Development +378355,Economic Development,Economic Development +378354,Economic Development,Economic Development +378353,Economic Development,Economic Development +378348,Economic Development,Economic Development +378346,Economic Development,Economic Development +378345,Economic Development,Economic Development +372786,Economic Development,Economic Development +359967,Economic Development,Economic Development +357379,Economic Development,Economic Development +422633,Economic Development,Economic Development +418674,Economic Development,Economic Development +406079,Economic Development,Economic Development +404290,Economic Development,Economic Development +392739,Economic Development,Economic Development +392736,Economic Development,Economic Development +363265,Intellectual Property,Propriété intellectuelle +358727,Intellectual Property,Propriété intellectuelle +392121,Intellectual Property,Propriété intellectuelle +389329,Intellectual Property,Propriété intellectuelle +389328,Intellectual Property,Propriété intellectuelle +389327,Intellectual Property,Propriété intellectuelle +389326,Intellectual Property,Propriété intellectuelle +389325,Intellectual Property,Propriété intellectuelle +387364,Intellectual Property,Propriété intellectuelle +387363,Intellectual Property,Propriété intellectuelle +387362,Intellectual Property,Propriété intellectuelle +387361,Intellectual Property,Propriété intellectuelle +387359,Intellectual Property,Propriété intellectuelle +387357,Intellectual Property,Propriété intellectuelle +382852,Intellectual Property,Propriété intellectuelle +382289,Intellectual Property,Propriété intellectuelle +378763,Intellectual Property,Propriété intellectuelle +376564,Intellectual Property,Propriété intellectuelle +376131,Intellectual Property,Propriété intellectuelle +376130,Intellectual Property,Propriété intellectuelle +376129,Intellectual Property,Propriété intellectuelle +376128,Intellectual Property,Propriété intellectuelle +373973,Intellectual Property,Propriété intellectuelle +373972,Intellectual Property,Propriété intellectuelle +373971,Intellectual Property,Propriété intellectuelle +373968,Intellectual Property,Propriété intellectuelle +373967,Intellectual Property,Propriété intellectuelle +373966,Intellectual Property,Propriété intellectuelle +373964,Intellectual Property,Propriété intellectuelle +373963,Intellectual Property,Propriété intellectuelle +373961,Intellectual Property,Propriété intellectuelle +370286,Intellectual Property,Propriété intellectuelle +370285,Intellectual Property,Propriété intellectuelle +370284,Intellectual Property,Propriété intellectuelle +370283,Intellectual Property,Propriété intellectuelle +370282,Intellectual Property,Propriété intellectuelle +369384,Intellectual Property,Propriété intellectuelle +369383,Intellectual Property,Propriété intellectuelle +413009,International Trade,International Trade +394762,International Trade,International Trade +380712,International Trade,International Trade +375488,International Trade,International Trade +374997,International Trade,International Trade +374994,International Trade,International Trade +374993,International Trade,International Trade +374989,International Trade,International Trade +368449,International Trade,International Trade +358128,International Trade,International Trade +357556,International Trade,International Trade +360224,Environment,Environment +360225,Mining,Mining +360224,Mining,Mining +357624,Education,Education +450818,Education,Education +399596,Education,Education +395581,Education,Education +381262,Education,Education +381233,Education,Education +381231,Education,Education +381228,Education,Education +381226,Education,Education +381224,Education,Education +454512,Infrastructure,Infrastructure +434000,Infrastructure,Infrastructure +399596,Infrastructure,Infrastructure +395712,Infrastructure,Infrastructure +381262,Infrastructure,Infrastructure +381233,Infrastructure,Infrastructure +381228,Infrastructure,Infrastructure +381224,Infrastructure,Infrastructure +366439,Infrastructure,Infrastructure +364350,Infrastructure,Infrastructure +541744,Education,Education +531400,Education,Education +366439,Education,Education +357625,Education,Education +474875,Education,Education +456540,Education,Education +395714,Education,Education +395712,Education,Education +395568,Education,Education +376373,Infrastructure,Infrastructure +520586,Infrastructure,Infrastructure +357625,Infrastructure,Infrastructure +474875,Infrastructure,Infrastructure +456540,Infrastructure,Infrastructure +454521,Infrastructure,Infrastructure +454517,Infrastructure,Infrastructure +450818,Infrastructure,Infrastructure +395714,Infrastructure,Infrastructure +395581,Infrastructure,Infrastructure +395568,Infrastructure,Infrastructure +395562,Infrastructure,Infrastructure +381231,Infrastructure,Infrastructure +357863,Research and Development,Research and Development +513677,Research and Development,Research and Development +359904,Industry,Industry +359898,Industry,Industry +364812,Industry,Industry +379596,Economic Development,Economic Development +379586,Economic Development,Economic Development +391271,Economic Development,Economic Development +391270,Economic Development,Economic Development +391269,Economic Development,Economic Development +388326,Economic Development,Economic Development +383525,Economic Development,Economic Development +381200,Economic Development,Economic Development +480241,Environment,Environment +480240,Environment,Environment +396176,Environment,Environment +385894,Environment,Environment +385893,Environment,Environment +379593,Environment,Environment +379591,Environment,Environment +379586,Environment,Environment +377364,Environment,Environment +377361,Environment,Environment +377355,Environment,Environment +480237,Environment,Environment +478328,Environment,Environment +478325,Environment,Environment +478322,Environment,Environment +478319,Environment,Environment +478316,Environment,Environment +478314,Environment,Environment +478312,Environment,Environment +478311,Environment,Environment +476048,Environment,Environment +476046,Environment,Environment +476045,Environment,Environment +476044,Environment,Environment +476043,Environment,Environment +476042,Environment,Environment +476038,Environment,Environment +473548,Environment,Environment +473547,Environment,Environment +473546,Environment,Environment +473545,Environment,Environment +473544,Environment,Environment +473540,Environment,Environment +471157,Environment,Environment +471149,Environment,Environment +424013,Environment,Environment +424009,Environment,Environment +424004,Environment,Environment +421745,Environment,Environment +421744,Environment,Environment +421743,Environment,Environment +421742,Environment,Environment +538641,Environment,Environment +538640,Environment,Environment +538639,Environment,Environment +536211,Environment,Environment +536210,Environment,Environment +536209,Environment,Environment +536208,Environment,Environment +532402,Environment,Environment +530340,Environment,Environment +530339,Environment,Environment +530338,Environment,Environment +530337,Environment,Environment +530336,Environment,Environment +527145,Environment,Environment +527143,Environment,Environment +527142,Environment,Environment +527141,Environment,Environment +527140,Environment,Environment +527139,Environment,Environment +527138,Environment,Environment +527137,Environment,Environment +527136,Environment,Environment +527135,Environment,Environment +527134,Environment,Environment +527133,Environment,Environment +523538,Environment,Environment +523537,Environment,Environment +523536,Environment,Environment +523535,Environment,Environment +523534,Environment,Environment +523533,Environment,Environment +520602,Environment,Environment +518322,Environment,Environment +518320,Environment,Environment +518318,Environment,Environment +516112,Environment,Environment +516111,Environment,Environment +516110,Environment,Environment +513483,Environment,Environment +513482,Environment,Environment +513481,Environment,Environment +511442,Environment,Environment +511441,Environment,Environment +511440,Environment,Environment +511438,Environment,Environment +511436,Environment,Environment +511435,Environment,Environment +511433,Environment,Environment +511431,Environment,Environment +511430,Environment,Environment +511429,Environment,Environment +511428,Environment,Environment +511427,Environment,Environment +509170,Environment,Environment +509169,Environment,Environment +509168,Environment,Environment +509167,Environment,Environment +509165,Environment,Environment +509164,Environment,Environment +509161,Environment,Environment +509160,Environment,Environment +509159,Environment,Environment +509158,Environment,Environment +509157,Environment,Environment +509156,Environment,Environment +509155,Environment,Environment +509154,Environment,Environment +509153,Environment,Environment +509143,Environment,Environment +509142,Environment,Environment +509141,Environment,Environment +505945,Environment,Environment +505943,Environment,Environment +505942,Environment,Environment +505941,Environment,Environment +505940,Environment,Environment +505939,Environment,Environment +505938,Environment,Environment +505936,Environment,Environment +505935,Environment,Environment +505934,Environment,Environment +505933,Environment,Environment +505932,Environment,Environment +505931,Environment,Environment +505930,Environment,Environment +505929,Environment,Environment +505928,Environment,Environment +505927,Environment,Environment +505853,Environment,Environment +505851,Environment,Environment +502860,Environment,Environment +502859,Environment,Environment +502858,Environment,Environment +502857,Environment,Environment +502855,Environment,Environment +502854,Environment,Environment +502853,Environment,Environment +502852,Environment,Environment +502846,Environment,Environment +502842,Environment,Environment +502839,Environment,Environment +502837,Environment,Environment +502835,Environment,Environment +502834,Environment,Environment +502832,Environment,Environment +502831,Environment,Environment +502828,Environment,Environment +499743,Environment,Environment +499742,Environment,Environment +499741,Environment,Environment +499740,Environment,Environment +499739,Environment,Environment +499738,Environment,Environment +499737,Environment,Environment +499736,Environment,Environment +499735,Environment,Environment +499732,Environment,Environment +499729,Environment,Environment +499725,Environment,Environment +499721,Environment,Environment +499712,Environment,Environment +499698,Environment,Environment +499694,Environment,Environment +499692,Environment,Environment +499689,Environment,Environment +499678,Environment,Environment +496202,Environment,Environment +496201,Environment,Environment +496200,Environment,Environment +496199,Environment,Environment +496198,Environment,Environment +496197,Environment,Environment +496196,Environment,Environment +496195,Environment,Environment +496194,Environment,Environment +496193,Environment,Environment +496192,Environment,Environment +496191,Environment,Environment +496190,Environment,Environment +496189,Environment,Environment +496188,Environment,Environment +496187,Environment,Environment +496186,Environment,Environment +496184,Environment,Environment +496182,Environment,Environment +496180,Environment,Environment +496179,Environment,Environment +496177,Environment,Environment +493781,Environment,Environment +493780,Environment,Environment +493779,Environment,Environment +493778,Environment,Environment +493777,Environment,Environment +493776,Environment,Environment +493775,Environment,Environment +493774,Environment,Environment +493773,Environment,Environment +493772,Environment,Environment +493771,Environment,Environment +493770,Environment,Environment +493769,Environment,Environment +493768,Environment,Environment +493750,Environment,Environment +493748,Environment,Environment +493746,Environment,Environment +491783,Environment,Environment +491782,Environment,Environment +491780,Environment,Environment +491776,Environment,Environment +491771,Environment,Environment +491769,Environment,Environment +491765,Environment,Environment +491763,Environment,Environment +491761,Environment,Environment +491757,Environment,Environment +491754,Environment,Environment +491751,Environment,Environment +491750,Environment,Environment +488295,Environment,Environment +488294,Environment,Environment +488293,Environment,Environment +488292,Environment,Environment +488291,Environment,Environment +488290,Environment,Environment +488289,Environment,Environment +488288,Environment,Environment +488287,Environment,Environment +488286,Environment,Environment +488285,Environment,Environment +488284,Environment,Environment +488283,Environment,Environment +488282,Environment,Environment +488281,Environment,Environment +485282,Environment,Environment +485279,Environment,Environment +485277,Environment,Environment +485276,Environment,Environment +485274,Environment,Environment +485271,Environment,Environment +485269,Environment,Environment +485265,Environment,Environment +485261,Environment,Environment +485259,Environment,Environment +485257,Environment,Environment +485255,Environment,Environment +485253,Environment,Environment +485251,Environment,Environment +485246,Environment,Environment +485245,Environment,Environment +485243,Environment,Environment +485242,Environment,Environment +485240,Environment,Environment +485236,Environment,Environment +485234,Environment,Environment +482529,Environment,Environment +482528,Environment,Environment +482527,Environment,Environment +482526,Environment,Environment +482525,Environment,Environment +482524,Environment,Environment +480253,Environment,Environment +480252,Environment,Environment +480251,Environment,Environment +480250,Environment,Environment +480249,Environment,Environment +480248,Environment,Environment +480247,Environment,Environment +480246,Environment,Environment +480244,Environment,Environment +480243,Environment,Environment +509160,Infrastructure,Infrastructure +509159,Infrastructure,Infrastructure +381190,Infrastructure,Infrastructure +381186,Infrastructure,Infrastructure +379598,Infrastructure,Infrastructure +379596,Infrastructure,Infrastructure +379593,Infrastructure,Infrastructure +379591,Infrastructure,Infrastructure +379586,Infrastructure,Infrastructure +377361,Infrastructure,Infrastructure +372380,Infrastructure,Infrastructure +365604,Infrastructure,Infrastructure +391271,Infrastructure,Infrastructure +391270,Infrastructure,Infrastructure +391269,Infrastructure,Infrastructure +388326,Infrastructure,Infrastructure +385894,Infrastructure,Infrastructure +385893,Infrastructure,Infrastructure +383642,Infrastructure,Infrastructure +383526,Infrastructure,Infrastructure +383525,Infrastructure,Infrastructure +382219,Infrastructure,Infrastructure +381200,Infrastructure,Infrastructure +509158,Infrastructure,Infrastructure +509157,Infrastructure,Infrastructure +509156,Infrastructure,Infrastructure +509155,Infrastructure,Infrastructure +509154,Infrastructure,Infrastructure +509153,Infrastructure,Infrastructure +509143,Infrastructure,Infrastructure +509142,Infrastructure,Infrastructure +509141,Infrastructure,Infrastructure +505945,Infrastructure,Infrastructure +505943,Infrastructure,Infrastructure +505942,Infrastructure,Infrastructure +505941,Infrastructure,Infrastructure +505940,Infrastructure,Infrastructure +505939,Infrastructure,Infrastructure +505938,Infrastructure,Infrastructure +505936,Infrastructure,Infrastructure +505935,Infrastructure,Infrastructure +505934,Infrastructure,Infrastructure +505933,Infrastructure,Infrastructure +505932,Infrastructure,Infrastructure +505931,Infrastructure,Infrastructure +505930,Infrastructure,Infrastructure +505929,Infrastructure,Infrastructure +505928,Infrastructure,Infrastructure +505927,Infrastructure,Infrastructure +505853,Infrastructure,Infrastructure +505851,Infrastructure,Infrastructure +502860,Infrastructure,Infrastructure +502859,Infrastructure,Infrastructure +502858,Infrastructure,Infrastructure +502857,Infrastructure,Infrastructure +502855,Infrastructure,Infrastructure +502854,Infrastructure,Infrastructure +502853,Infrastructure,Infrastructure +502852,Infrastructure,Infrastructure +502846,Infrastructure,Infrastructure +502842,Infrastructure,Infrastructure +502839,Infrastructure,Infrastructure +502837,Infrastructure,Infrastructure +502835,Infrastructure,Infrastructure +502834,Infrastructure,Infrastructure +502832,Infrastructure,Infrastructure +502831,Infrastructure,Infrastructure +502828,Infrastructure,Infrastructure +499743,Infrastructure,Infrastructure +499742,Infrastructure,Infrastructure +499741,Infrastructure,Infrastructure +499740,Infrastructure,Infrastructure +499739,Infrastructure,Infrastructure +499738,Infrastructure,Infrastructure +499737,Infrastructure,Infrastructure +389393,Economic Development,Economic Development +401759,Environment,Environment +378464,Environment,Environment +378072,Infrastructure,Infrastructure +378464,International Trade,International Trade +378078,Transportation,Transportation +357357,Research and Development,Research and Development +428087,Energy,Energy +428078,Economic Development,Economic Development +428078,Environment,Environment +428078,Industry,Industry +356696,Mining,Mining +372978,Energy,Energy +380367,Justice and Law Enforcement,Justice and Law Enforcement +431747,Employment and Training,Employment and Training +431745,Industry,Industry +409051,Labour,Labour +409051,Small Business,Small Business +431746,Taxation and Finance,Taxation and Finance +382099,International Trade,International Trade +389637,Taxation and Finance,Taxation and Finance +355191,International Development,International Development +355191,International Trade,International Trade +369950,Consumer Issues,Consumer Issues +357768,Tourism,Tourism +444307,Industry,Industry +411120,Intellectual Property,Intellectual Property +442655,Justice and Law Enforcement,Justice and Law Enforcement +358361,Privacy and Access to Information,Privacy and Access to Information +359860,Health,Health +359860,Research and Development,Research and Development +355274,Infrastructure,Infrastructure +355276,Health,Health +392335,Economic Development,Economic Development +355288,Regional Development,Regional Development +355293,Environment,Environment +357535,Energy,Energy +359424,Infrastructure,Infrastructure +355475,Transportation,Transportation +420249,Transportation,Transportation +355738,Infrastructure,Infrastructure +355513,Research and Development,Research and Development +355636,Economic Development,Economic Development +355649,Government Procurement,Government Procurement +456432,Agriculture,Agriculture +464393,International Trade,International Trade +370488,Agriculture,Agriculture +369886,Consumer Issues,Consumer Issues +384347,Health,Health +525148,Budget,Budget +544074,Energy,Energy +355792,Sports,Sports +355794,Sports,Sports +477919,Health,Health +358387,Employment and Training,Employment and Training +358387,Taxation and Finance,Taxation and Finance +476086,Agriculture,Agriculture +468571,Health,Health +432380,Economic Development,Economic Development +533784,Transportation,Transportation +357205,Budget,Budget +364843,Housing,Housing +357205,Infrastructure,Infrastructure +357205,Municipalities,Municipalities +357206,Taxation and Finance,Taxation and Finance +380545,Health,Health +422831,Regional Development,Regional Development +355945,Privacy and Access to Information,Privacy and Access to Information +370635,Employment and Training,Employment and Training +370643,Industry,Industry +370643,Regional Development,Regional Development +358053,Taxation and Finance,Taxation and Finance +417147,Immigration,Immigration +376455,Budget,Budget +356233,Tourism,Tourism +356233,Consumer Issues,Consumer Issues +358945,Small Business,Small Business +525323,Economic Development,Economic Development +366403,Forestry,Forestry +356533,Taxation and Finance,Taxation and Finance +356544,Labour,Labour +359945,Regional Development,Regional Development +410213,Sports,Sports +444906,International Trade,International Trade +358962,Transportation,Transportation +371990,Economic Development,Economic Development +542857,International Trade,International Trade +426932,International Trade,International Trade +357140,Agriculture,Agriculture +357140,Pensions,Pensions +357140,Taxation and Finance,Taxation and Finance +356737,Employment and Training,Employment and Training +356738,Employment and Training,Employment and Training +435810,Health,Health +360742,Industry,Industry +360742,Infrastructure,Infrastructure +360742,Security,Security +360964,Energy,Energy +398177,Consumer Issues,Consumer Issues +356977,Budget,Budget +433479,Health,Health +359964,Research and Development,Research and Development +357516,Environment,Environnement +357516,Transportation,Transports +425107,Health,Santé +380368,Agriculture,Agriculture +496768,Internal Trade,Commerce intérieur +368923,International Trade,Commerce international +360018,International Trade,International Trade +360018,Taxation and Finance,Taxation and Finance +357216,Education,Education +357216,Infrastructure,Infrastructure +357216,Tourism,Tourism +505510,Budget,Budget +384277,Health,Health +457325,International Development,International Development +475533,International Relations,International Relations +357367,Government Procurement,Government Procurement +357368,Government Procurement,Government Procurement +357369,Government Procurement,Government Procurement +357373,Government Procurement,Government Procurement +357375,Government Procurement,Government Procurement +357376,Government Procurement,Government Procurement +357377,Government Procurement,Government Procurement +392735,Economic Development,Economic Development +365013,Intellectual Property,Propriété intellectuelle +357440,Regional Development,Regional Development +357445,International Trade,International Trade +360225,Environment,Environment +404958,Mining,Mining +357496,Agriculture,Agriculture +357497,Taxation and Finance,Taxation and Finance +357498,Taxation and Finance,Taxation and Finance +370366,Industry,Industrie +431867,Economic Development,Economic Development +364350,Education,Education +357624,Infrastructure,Infrastructure +395562,Education,Education +381226,Infrastructure,Infrastructure +389890,Research and Development,Research and Development +359906,Industry,Industry +364812,International Trade,International Trade +379598,Economic Development,Economic Development +480242,Environment,Environment +509161,Infrastructure,Infrastructure +383525,Regional Development,Regional Development +383525,Sports,Sports +491776,Tourism,Tourism +357754,Security,Security +357773,Security,Security +371990,Taxation and Finance,Taxation and Finance +502279,Health,Health +543835,Official Languages,Official Languages +471463,Regional Development,Regional Development +403885,Small Business,Small Business +357756,Forestry,Forestry +358888,Health,Health +429117,International Relations,Relations internationales +358155,Health,Health +358208,Sports,Sports +358231,Infrastructure,Infrastructure +417184,Immigration,Immigration +358346,Research and Development,Research and Development +358388,International Trade,International Trade +375344,Energy,Energy +359908,Infrastructure,Infrastructure +430375,Employment and Training,Emploi et formation +505203,Government Procurement,Government Procurement +362102,Government Procurement,Government Procurement +358945,International Trade,International Trade +358947,International Trade,International Trade +358984,Employment and Training,Employment and Training +370664,Energy,Energy +370664,International Trade,International Trade +370664,Mining,Mining +364396,Transportation,Transportation +461738,Government Procurement,Government Procurement +358643,Infrastructure,Infrastructure +426794,Transportation,Transportation +382227,Energy,Energy +369164,Pensions,Pensions +359043,Justice and Law Enforcement,Justice and Law Enforcement +427606,Immigration,Immigration +386399,Intellectual Property,Propriété intellectuelle +375698,Government Procurement,Government Procurement +443240,Research and Development,Research and Development +360010,Industry,Industry +500135,International Trade,International Trade +465873,Economic Development,Economic Development +456390,Environment,Environment +360011,Industry,Industry +359670,Consumer Issues,Consumer Issues +359670,Health,Health +501951,Housing,Housing +363625,Economic Development,Economic Development +363623,Fisheries,Fisheries +363625,International Trade,International Trade +499736,Infrastructure,Infrastructure +499735,Infrastructure,Infrastructure +499732,Infrastructure,Infrastructure +499729,Infrastructure,Infrastructure +499725,Infrastructure,Infrastructure +499721,Infrastructure,Infrastructure +499712,Infrastructure,Infrastructure +499698,Infrastructure,Infrastructure +499694,Infrastructure,Infrastructure +499692,Infrastructure,Infrastructure +499689,Infrastructure,Infrastructure +499678,Infrastructure,Infrastructure +496202,Infrastructure,Infrastructure +496201,Infrastructure,Infrastructure +496200,Infrastructure,Infrastructure +496199,Infrastructure,Infrastructure +496198,Infrastructure,Infrastructure +496197,Infrastructure,Infrastructure +496196,Infrastructure,Infrastructure +496195,Infrastructure,Infrastructure +496194,Infrastructure,Infrastructure +496193,Infrastructure,Infrastructure +496192,Infrastructure,Infrastructure +496191,Infrastructure,Infrastructure +496190,Infrastructure,Infrastructure +496189,Infrastructure,Infrastructure +496188,Infrastructure,Infrastructure +496187,Infrastructure,Infrastructure +496186,Infrastructure,Infrastructure +496184,Infrastructure,Infrastructure +496182,Infrastructure,Infrastructure +496180,Infrastructure,Infrastructure +496179,Infrastructure,Infrastructure +496177,Infrastructure,Infrastructure +493781,Infrastructure,Infrastructure +493780,Infrastructure,Infrastructure +493779,Infrastructure,Infrastructure +493778,Infrastructure,Infrastructure +493777,Infrastructure,Infrastructure +493776,Infrastructure,Infrastructure +493775,Infrastructure,Infrastructure +493774,Infrastructure,Infrastructure +493773,Infrastructure,Infrastructure +493772,Infrastructure,Infrastructure +493771,Infrastructure,Infrastructure +493770,Infrastructure,Infrastructure +493769,Infrastructure,Infrastructure +493768,Infrastructure,Infrastructure +493750,Infrastructure,Infrastructure +493748,Infrastructure,Infrastructure +493746,Infrastructure,Infrastructure +491783,Infrastructure,Infrastructure +491782,Infrastructure,Infrastructure +491780,Infrastructure,Infrastructure +491776,Infrastructure,Infrastructure +491771,Infrastructure,Infrastructure +491769,Infrastructure,Infrastructure +491765,Infrastructure,Infrastructure +491763,Infrastructure,Infrastructure +491761,Infrastructure,Infrastructure +491757,Infrastructure,Infrastructure +491754,Infrastructure,Infrastructure +491751,Infrastructure,Infrastructure +491750,Infrastructure,Infrastructure +488295,Infrastructure,Infrastructure +488294,Infrastructure,Infrastructure +488293,Infrastructure,Infrastructure +488292,Infrastructure,Infrastructure +488291,Infrastructure,Infrastructure +488290,Infrastructure,Infrastructure +488289,Infrastructure,Infrastructure +488288,Infrastructure,Infrastructure +488287,Infrastructure,Infrastructure +488286,Infrastructure,Infrastructure +488285,Infrastructure,Infrastructure +488284,Infrastructure,Infrastructure +488283,Infrastructure,Infrastructure +488282,Infrastructure,Infrastructure +488281,Infrastructure,Infrastructure +485282,Infrastructure,Infrastructure +485279,Infrastructure,Infrastructure +485277,Infrastructure,Infrastructure +485276,Infrastructure,Infrastructure +485274,Infrastructure,Infrastructure +485271,Infrastructure,Infrastructure +485269,Infrastructure,Infrastructure +485265,Infrastructure,Infrastructure +485261,Infrastructure,Infrastructure +485259,Infrastructure,Infrastructure +485257,Infrastructure,Infrastructure +485255,Infrastructure,Infrastructure +485253,Infrastructure,Infrastructure +485251,Infrastructure,Infrastructure +485246,Infrastructure,Infrastructure +485245,Infrastructure,Infrastructure +485243,Infrastructure,Infrastructure +485242,Infrastructure,Infrastructure +485240,Infrastructure,Infrastructure +485236,Infrastructure,Infrastructure +485234,Infrastructure,Infrastructure +482529,Infrastructure,Infrastructure +482528,Infrastructure,Infrastructure +482527,Infrastructure,Infrastructure +482526,Infrastructure,Infrastructure +482525,Infrastructure,Infrastructure +482524,Infrastructure,Infrastructure +480253,Infrastructure,Infrastructure +480252,Infrastructure,Infrastructure +480251,Infrastructure,Infrastructure +480250,Infrastructure,Infrastructure +480249,Infrastructure,Infrastructure +480248,Infrastructure,Infrastructure +480247,Infrastructure,Infrastructure +480246,Infrastructure,Infrastructure +480244,Infrastructure,Infrastructure +480243,Infrastructure,Infrastructure +480242,Infrastructure,Infrastructure +480241,Infrastructure,Infrastructure +480240,Infrastructure,Infrastructure +480237,Infrastructure,Infrastructure +478328,Infrastructure,Infrastructure +478325,Infrastructure,Infrastructure +478322,Infrastructure,Infrastructure +478319,Infrastructure,Infrastructure +478316,Infrastructure,Infrastructure +478314,Infrastructure,Infrastructure +478312,Infrastructure,Infrastructure +478311,Infrastructure,Infrastructure +476048,Infrastructure,Infrastructure +476046,Infrastructure,Infrastructure +476045,Infrastructure,Infrastructure +476044,Infrastructure,Infrastructure +476043,Infrastructure,Infrastructure +476042,Infrastructure,Infrastructure +476038,Infrastructure,Infrastructure +473548,Infrastructure,Infrastructure +473547,Infrastructure,Infrastructure +473546,Infrastructure,Infrastructure +473545,Infrastructure,Infrastructure +473544,Infrastructure,Infrastructure +473540,Infrastructure,Infrastructure +471157,Infrastructure,Infrastructure +471149,Infrastructure,Infrastructure +538641,Infrastructure,Infrastructure +538640,Infrastructure,Infrastructure +538639,Infrastructure,Infrastructure +536211,Infrastructure,Infrastructure +536210,Infrastructure,Infrastructure +536209,Infrastructure,Infrastructure +536208,Infrastructure,Infrastructure +532402,Infrastructure,Infrastructure +530340,Infrastructure,Infrastructure +530339,Infrastructure,Infrastructure +530338,Infrastructure,Infrastructure +530337,Infrastructure,Infrastructure +530336,Infrastructure,Infrastructure +527145,Infrastructure,Infrastructure +527143,Infrastructure,Infrastructure +527142,Infrastructure,Infrastructure +527141,Infrastructure,Infrastructure +527140,Infrastructure,Infrastructure +527139,Infrastructure,Infrastructure +527138,Infrastructure,Infrastructure +527137,Infrastructure,Infrastructure +527136,Infrastructure,Infrastructure +527135,Infrastructure,Infrastructure +527134,Infrastructure,Infrastructure +527133,Infrastructure,Infrastructure +523538,Infrastructure,Infrastructure +523537,Infrastructure,Infrastructure +523536,Infrastructure,Infrastructure +523535,Infrastructure,Infrastructure +523534,Infrastructure,Infrastructure +523533,Infrastructure,Infrastructure +520602,Infrastructure,Infrastructure +518322,Infrastructure,Infrastructure +518320,Infrastructure,Infrastructure +518318,Infrastructure,Infrastructure +516112,Infrastructure,Infrastructure +516111,Infrastructure,Infrastructure +516110,Infrastructure,Infrastructure +513483,Infrastructure,Infrastructure +513482,Infrastructure,Infrastructure +513481,Infrastructure,Infrastructure +511442,Infrastructure,Infrastructure +511441,Infrastructure,Infrastructure +511440,Infrastructure,Infrastructure +511438,Infrastructure,Infrastructure +511436,Infrastructure,Infrastructure +511435,Infrastructure,Infrastructure +511433,Infrastructure,Infrastructure +511431,Infrastructure,Infrastructure +511430,Infrastructure,Infrastructure +511429,Infrastructure,Infrastructure +511428,Infrastructure,Infrastructure +511427,Infrastructure,Infrastructure +509170,Infrastructure,Infrastructure +509169,Infrastructure,Infrastructure +509168,Infrastructure,Infrastructure +509167,Infrastructure,Infrastructure +509165,Infrastructure,Infrastructure +509164,Infrastructure,Infrastructure +381200,Regional Development,Regional Development +357915,Regional Development,Regional Development +383526,Regional Development,Regional Development +379593,Sports,Sports +396175,Sports,Sports +383642,Sports,Sports +383526,Sports,Sports +491771,Tourism,Tourism +491769,Tourism,Tourism +391269,Tourism,Tourism +385894,Tourism,Tourism +383642,Tourism,Tourism +383526,Tourism,Tourism +383525,Tourism,Tourism +379598,Tourism,Tourism +379596,Tourism,Tourism +379588,Tourism,Tourism +379586,Tourism,Tourism +377361,Tourism,Tourism +491765,Tourism,Tourism +491763,Tourism,Tourism +491761,Tourism,Tourism +491757,Tourism,Tourism +491754,Tourism,Tourism +491751,Tourism,Tourism +491750,Tourism,Tourism +488295,Tourism,Tourism +488294,Tourism,Tourism +488293,Tourism,Tourism +488292,Tourism,Tourism +488291,Tourism,Tourism +488290,Tourism,Tourism +488289,Tourism,Tourism +488288,Tourism,Tourism +488287,Tourism,Tourism +488286,Tourism,Tourism +488285,Tourism,Tourism +488284,Tourism,Tourism +488283,Tourism,Tourism +488282,Tourism,Tourism +488281,Tourism,Tourism +485282,Tourism,Tourism +485279,Tourism,Tourism +485277,Tourism,Tourism +485276,Tourism,Tourism +485274,Tourism,Tourism +485271,Tourism,Tourism +485269,Tourism,Tourism +485265,Tourism,Tourism +485261,Tourism,Tourism +485259,Tourism,Tourism +485257,Tourism,Tourism +485255,Tourism,Tourism +485253,Tourism,Tourism +485251,Tourism,Tourism +485246,Tourism,Tourism +485245,Tourism,Tourism +485243,Tourism,Tourism +485242,Tourism,Tourism +485240,Tourism,Tourism +485236,Tourism,Tourism +485234,Tourism,Tourism +482529,Tourism,Tourism +482528,Tourism,Tourism +482527,Tourism,Tourism +482526,Tourism,Tourism +482525,Tourism,Tourism +482524,Tourism,Tourism +480253,Tourism,Tourism +480252,Tourism,Tourism +480251,Tourism,Tourism +480250,Tourism,Tourism +480249,Tourism,Tourism +480248,Tourism,Tourism +480247,Tourism,Tourism +480246,Tourism,Tourism +480244,Tourism,Tourism +480243,Tourism,Tourism +480242,Tourism,Tourism +480241,Tourism,Tourism +480240,Tourism,Tourism +480237,Tourism,Tourism +478328,Tourism,Tourism +478325,Tourism,Tourism +478322,Tourism,Tourism +478319,Tourism,Tourism +478316,Tourism,Tourism +478314,Tourism,Tourism +478312,Tourism,Tourism +478311,Tourism,Tourism +476048,Tourism,Tourism +476046,Tourism,Tourism +476045,Tourism,Tourism +476044,Tourism,Tourism +476043,Tourism,Tourism +476042,Tourism,Tourism +476038,Tourism,Tourism +473548,Tourism,Tourism +473547,Tourism,Tourism +473546,Tourism,Tourism +473545,Tourism,Tourism +473544,Tourism,Tourism +473540,Tourism,Tourism +471157,Tourism,Tourism +471149,Tourism,Tourism +538641,Tourism,Tourism +538640,Tourism,Tourism +538639,Tourism,Tourism +536211,Tourism,Tourism +536210,Tourism,Tourism +536209,Tourism,Tourism +536208,Tourism,Tourism +532402,Tourism,Tourism +530340,Tourism,Tourism +530339,Tourism,Tourism +530338,Tourism,Tourism +530337,Tourism,Tourism +530336,Tourism,Tourism +527145,Tourism,Tourism +527143,Tourism,Tourism +527142,Tourism,Tourism +527141,Tourism,Tourism +527140,Tourism,Tourism +527139,Tourism,Tourism +527138,Tourism,Tourism +527137,Tourism,Tourism +527136,Tourism,Tourism +527135,Tourism,Tourism +527134,Tourism,Tourism +527133,Tourism,Tourism +523538,Tourism,Tourism +523537,Tourism,Tourism +523536,Tourism,Tourism +523535,Tourism,Tourism +523534,Tourism,Tourism +523533,Tourism,Tourism +520602,Tourism,Tourism +518322,Tourism,Tourism +518320,Tourism,Tourism +518318,Tourism,Tourism +516112,Tourism,Tourism +516111,Tourism,Tourism +516110,Tourism,Tourism +513483,Tourism,Tourism +513482,Tourism,Tourism +513481,Tourism,Tourism +511442,Tourism,Tourism +511441,Tourism,Tourism +511440,Tourism,Tourism +511438,Tourism,Tourism +511436,Tourism,Tourism +511435,Tourism,Tourism +511433,Tourism,Tourism +511431,Tourism,Tourism +511430,Tourism,Tourism +511429,Tourism,Tourism +511428,Tourism,Tourism +511427,Tourism,Tourism +509170,Tourism,Tourism +509169,Tourism,Tourism +509168,Tourism,Tourism +509167,Tourism,Tourism +509165,Tourism,Tourism +509164,Tourism,Tourism +509161,Tourism,Tourism +509160,Tourism,Tourism +509159,Tourism,Tourism +509158,Tourism,Tourism +509157,Tourism,Tourism +509156,Tourism,Tourism +509155,Tourism,Tourism +509154,Tourism,Tourism +509153,Tourism,Tourism +509143,Tourism,Tourism +509142,Tourism,Tourism +509141,Tourism,Tourism +505945,Tourism,Tourism +505943,Tourism,Tourism +505942,Tourism,Tourism +505941,Tourism,Tourism +505940,Tourism,Tourism +505939,Tourism,Tourism +505938,Tourism,Tourism +505936,Tourism,Tourism +505935,Tourism,Tourism +505934,Tourism,Tourism +505933,Tourism,Tourism +505932,Tourism,Tourism +505931,Tourism,Tourism +505930,Tourism,Tourism +505929,Tourism,Tourism +505928,Tourism,Tourism +505927,Tourism,Tourism +505853,Tourism,Tourism +505851,Tourism,Tourism +502860,Tourism,Tourism +502859,Tourism,Tourism +502858,Tourism,Tourism +502857,Tourism,Tourism +502855,Tourism,Tourism +502854,Tourism,Tourism +502853,Tourism,Tourism +502852,Tourism,Tourism +502846,Tourism,Tourism +502842,Tourism,Tourism +502839,Tourism,Tourism +502837,Tourism,Tourism +502835,Tourism,Tourism +502834,Tourism,Tourism +502832,Tourism,Tourism +502831,Tourism,Tourism +502828,Tourism,Tourism +499743,Tourism,Tourism +499742,Tourism,Tourism +499741,Tourism,Tourism +499740,Tourism,Tourism +499739,Tourism,Tourism +499738,Tourism,Tourism +499737,Tourism,Tourism +499736,Tourism,Tourism +499735,Tourism,Tourism +499732,Tourism,Tourism +499729,Tourism,Tourism +499725,Tourism,Tourism +499721,Tourism,Tourism +499712,Tourism,Tourism +499698,Tourism,Tourism +499694,Tourism,Tourism +499692,Tourism,Tourism +499689,Tourism,Tourism +499678,Tourism,Tourism +496202,Tourism,Tourism +496201,Tourism,Tourism +496200,Tourism,Tourism +496199,Tourism,Tourism +496198,Tourism,Tourism +496197,Tourism,Tourism +496196,Tourism,Tourism +496195,Tourism,Tourism +496194,Tourism,Tourism +496193,Tourism,Tourism +496192,Tourism,Tourism +496191,Tourism,Tourism +496190,Tourism,Tourism +496189,Tourism,Tourism +496188,Tourism,Tourism +496187,Tourism,Tourism +496186,Tourism,Tourism +496184,Tourism,Tourism +496182,Tourism,Tourism +496180,Tourism,Tourism +496179,Tourism,Tourism +496177,Tourism,Tourism +493781,Tourism,Tourism +493780,Tourism,Tourism +493779,Tourism,Tourism +493778,Tourism,Tourism +493777,Tourism,Tourism +493776,Tourism,Tourism +493775,Tourism,Tourism +493774,Tourism,Tourism +493773,Tourism,Tourism +493772,Tourism,Tourism +493771,Tourism,Tourism +493770,Tourism,Tourism +493769,Tourism,Tourism +493768,Tourism,Tourism +493750,Tourism,Tourism +493748,Tourism,Tourism +493746,Tourism,Tourism +491783,Tourism,Tourism +491782,Tourism,Tourism +491780,Tourism,Tourism +371985,Taxation and Finance,Taxation and Finance +371980,Taxation and Finance,Taxation and Finance +357896,Taxation and Finance,Taxation and Finance +357895,Taxation and Finance,Taxation and Finance +357894,Taxation and Finance,Taxation and Finance +357888,Taxation and Finance,Taxation and Finance +382203,Taxation and Finance,Taxation and Finance +495890,Health,Health +456941,Health,Health +437562,Health,Health +403885,Health,Health +393046,Health,Health +378242,Health,Health +373882,Health,Health +366405,Health,Health +360969,Health,Health +535552,Health,Health +541765,Official Languages,Official Languages +403201,Official Languages,Official Languages +403197,Official Languages,Official Languages +443809,Regional Development,Regional Development +393046,Small Business,Small Business +420059,Small Business,Small Business +418026,Small Business,Small Business +410070,Immigration,Immigration +391811,Immigration,Immigration +380128,Immigration,Immigration +361568,Immigration,Immigration +358288,Immigration,Immigration +420389,Immigration,Immigration +368137,Energy,Energy +359908,Energy,Energy +427169,Energy,Energy +427167,Energy,Energy +421116,Energy,Energy +376255,Energy,Energy +375345,Energy,Energy +427169,Infrastructure,Infrastructure +427167,Infrastructure,Infrastructure +376255,Infrastructure,Infrastructure +368137,Infrastructure,Infrastructure +412320,Employment and Training,Emploi et formation +412317,Employment and Training,Emploi et formation +374591,Employment and Training,Emploi et formation +402814,Employment and Training,Emploi et formation +402810,Employment and Training,Emploi et formation +402805,Employment and Training,Emploi et formation +402801,Employment and Training,Emploi et formation +400234,Employment and Training,Emploi et formation +400231,Employment and Training,Emploi et formation +400228,Employment and Training,Emploi et formation +398360,Employment and Training,Emploi et formation +398359,Employment and Training,Emploi et formation +398356,Employment and Training,Emploi et formation +398355,Employment and Training,Emploi et formation +398353,Employment and Training,Emploi et formation +398350,Employment and Training,Emploi et formation +398348,Employment and Training,Emploi et formation +398343,Employment and Training,Emploi et formation +396199,Employment and Training,Emploi et formation +396197,Employment and Training,Emploi et formation +396196,Employment and Training,Emploi et formation +396195,Employment and Training,Emploi et formation +396194,Employment and Training,Emploi et formation +396193,Employment and Training,Emploi et formation +396187,Employment and Training,Emploi et formation +396183,Employment and Training,Emploi et formation +396180,Employment and Training,Emploi et formation +393708,Employment and Training,Emploi et formation +393707,Employment and Training,Emploi et formation +393706,Employment and Training,Emploi et formation +393704,Employment and Training,Emploi et formation +393702,Employment and Training,Emploi et formation +392272,Employment and Training,Emploi et formation +392271,Employment and Training,Emploi et formation +392270,Employment and Training,Emploi et formation +392269,Employment and Training,Emploi et formation +389908,Employment and Training,Emploi et formation +389903,Employment and Training,Emploi et formation +389900,Employment and Training,Emploi et formation +389896,Employment and Training,Emploi et formation +389893,Employment and Training,Emploi et formation +389889,Employment and Training,Emploi et formation +389886,Employment and Training,Emploi et formation +389883,Employment and Training,Emploi et formation +386861,Employment and Training,Emploi et formation +386860,Employment and Training,Emploi et formation +386856,Employment and Training,Emploi et formation +386855,Employment and Training,Emploi et formation +386853,Employment and Training,Emploi et formation +386851,Employment and Training,Emploi et formation +384206,Employment and Training,Emploi et formation +378992,Employment and Training,Emploi et formation +375769,Employment and Training,Emploi et formation +456931,Employment and Training,Emploi et formation +456930,Employment and Training,Emploi et formation +456929,Employment and Training,Emploi et formation +456926,Employment and Training,Emploi et formation +447008,Employment and Training,Emploi et formation +447007,Employment and Training,Emploi et formation +444840,Employment and Training,Emploi et formation +444839,Employment and Training,Emploi et formation +444838,Employment and Training,Emploi et formation +444837,Employment and Training,Emploi et formation +444836,Employment and Training,Emploi et formation +441704,Employment and Training,Emploi et formation +433358,Employment and Training,Emploi et formation +433357,Employment and Training,Emploi et formation +430395,Employment and Training,Emploi et formation +430384,Employment and Training,Emploi et formation +430381,Employment and Training,Emploi et formation +358944,International Trade,International Trade +358946,International Trade,International Trade +364396,Energy,Energy +362440,Energy,Energy +364396,Mining,Mining +362440,Mining,Mining +362440,Transportation,Transportation +370664,Transportation,Transportation +447593,Government Procurement,Government Procurement +447585,Government Procurement,Government Procurement +409654,Government Procurement,Government Procurement +381312,Government Procurement,Government Procurement +364785,Government Procurement,Government Procurement +362106,Government Procurement,Government Procurement +360682,Government Procurement,Government Procurement +359438,Government Procurement,Government Procurement +462784,Government Procurement,Government Procurement +358762,Transportation,Transportation +382225,Energy,Energy +386397,Immigration,Immigration +442914,Research and Development,Research and Development +428546,Research and Development,Research and Development +422632,Research and Development,Research and Development +414324,Research and Development,Research and Development +414228,Research and Development,Research and Development +414227,Research and Development,Research and Development +411700,Research and Development,Research and Development +409198,Research and Development,Research and Development +409197,Research and Development,Research and Development +409194,Research and Development,Research and Development +409193,Research and Development,Research and Development +408494,Research and Development,Research and Development +407094,Research and Development,Research and Development +407093,Research and Development,Research and Development +406370,Research and Development,Research and Development +404232,Research and Development,Research and Development +394898,Research and Development,Research and Development +393735,Research and Development,Research and Development +393154,Research and Development,Research and Development +393090,Research and Development,Research and Development +393089,Research and Development,Research and Development +386843,Research and Development,Research and Development +385406,Research and Development,Research and Development +381803,Research and Development,Research and Development +381802,Research and Development,Research and Development +381702,Research and Development,Research and Development +367546,Research and Development,Research and Development +366571,Research and Development,Research and Development +359303,Research and Development,Research and Development +533047,Research and Development,Research and Development +495505,Research and Development,Research and Development +492659,Research and Development,Research and Development +462965,Research and Development,Research and Development +460814,Research and Development,Research and Development +460305,Research and Development,Research and Development +460304,Research and Development,Research and Development +457947,Research and Development,Research and Development +456698,Research and Development,Research and Development +448941,Research and Development,Research and Development +448940,Research and Development,Research and Development +448939,Research and Development,Research and Development +448938,Research and Development,Research and Development +448936,Research and Development,Research and Development +448934,Research and Development,Research and Development +496736,International Trade,International Trade +496368,International Trade,International Trade +362336,International Trade,International Trade +361565,International Trade,International Trade +361069,International Trade,International Trade +360782,International Trade,International Trade +360623,International Trade,International Trade +360622,International Trade,International Trade +360264,International Trade,International Trade +359754,International Trade,International Trade +465873,International Trade,International Trade +456390,International Trade,International Trade +450650,International Trade,International Trade +432004,International Trade,International Trade +427196,International Trade,International Trade +404664,International Trade,International Trade +401868,International Trade,International Trade +395174,International Trade,International Trade +395096,International Trade,International Trade +456390,Economic Development,Economic Development +450650,Economic Development,Economic Development +362336,Economic Development,Economic Development +361565,Economic Development,Economic Development +361069,Economic Development,Economic Development +360782,Economic Development,Economic Development +360623,Economic Development,Economic Development +360622,Economic Development,Economic Development +360264,Economic Development,Economic Development +359754,Economic Development,Economic Development +427196,Economic Development,Economic Development +404664,Economic Development,Economic Development +401868,Economic Development,Economic Development +395174,Economic Development,Economic Development +395096,Economic Development,Economic Development +500135,Economic Development,Economic Development +496736,Economic Development,Economic Development +496368,Economic Development,Economic Development +450650,Environment,Environment +427196,Environment,Environment +362336,Environment,Environment +361565,Environment,Environment +361069,Environment,Environment +360782,Environment,Environment +360623,Environment,Environment +360622,Environment,Environment +360264,Environment,Environment +359754,Environment,Environment +404664,Environment,Environment +401868,Environment,Environment +395174,Environment,Environment +395096,Environment,Environment +465873,Environment,Environment +359666,Consumer Issues,Consumer Issues +359666,Health,Health +481676,Housing,Housing +470772,Housing,Housing +418785,Housing,Housing +418784,Housing,Housing +404957,Housing,Housing +386963,Housing,Housing +386962,Housing,Housing +386430,Housing,Housing +501952,Housing,Housing +363624,Economic Development,Economic Development +363623,Economic Development,Economic Development +359920,Fisheries,Fisheries +359919,Fisheries,Fisheries +363625,Fisheries,Fisheries +363624,Fisheries,Fisheries +363624,International Trade,International Trade +363623,International Trade,International Trade +459081,Privacy and Access to Information,Privacy and Access to Information +361163,Financial Institutions,Financial Institutions +361162,Financial Institutions,Financial Institutions +361165,Financial Institutions,Financial Institutions +405868,Environment,Environment +360227,Energy,Energy +360226,Energy,Energy +360230,Energy,Energy +360563,International Trade,International Trade +360562,International Trade,International Trade +365320,International Trade,International Trade +365319,International Trade,International Trade +365318,International Trade,International Trade +365316,International Trade,International Trade +362344,International Trade,International Trade +362822,Economic Development,Développement économique +361462,Economic Development,Développement économique +368696,Economic Development,Développement économique +360443,International Trade,International Trade +360442,International Trade,International Trade +365197,Economic Development,Economic Development +383319,Economic Development,Economic Development +436705,Taxation and Finance,Taxation and Finance +416063,Taxation and Finance,Taxation and Finance +360566,International Trade,International Trade +360565,International Trade,International Trade +404314,International Trade,International Trade +378702,International Trade,International Trade +378699,International Trade,International Trade +378695,International Trade,International Trade +373432,International Trade,International Trade +360568,International Trade,International Trade +413014,Infrastructure,Infrastructure +496925,Infrastructure,Infrastructure +372607,Environment,Environment +496465,Environment,Environment +420505,Environment,Environment +420504,Environment,Environment +383006,Environment,Environment +383004,Environment,Environment +373819,Fisheries,Fisheries +373818,Fisheries,Fisheries +370412,Fisheries,Fisheries +370411,Fisheries,Fisheries +366282,Fisheries,Fisheries +386494,Fisheries,Fisheries +384845,Fisheries,Fisheries +384424,Fisheries,Fisheries +383008,Fisheries,Fisheries +383003,Fisheries,Fisheries +382083,Fisheries,Fisheries +382082,Fisheries,Fisheries +382080,Fisheries,Fisheries +378205,Fisheries,Fisheries +376032,Fisheries,Fisheries +376031,Fisheries,Fisheries +376030,Fisheries,Fisheries +376029,Fisheries,Fisheries +376028,Fisheries,Fisheries +388605,Taxation and Finance,Taxation and Finance +388604,Taxation and Finance,Taxation and Finance +415919,Taxation and Finance,Taxation and Finance +407580,Taxation and Finance,Taxation and Finance +388610,Taxation and Finance,Taxation and Finance +388609,Taxation and Finance,Taxation and Finance +388608,Taxation and Finance,Taxation and Finance +388601,Health,Health +388599,Health,Health +428554,Health,Health +421218,Health,Health +415919,Health,Health +407580,Health,Health +404750,Health,Health +399987,Health,Health +399986,Health,Health +399985,Health,Health +399983,Health,Health +398930,Health,Health +398928,Health,Health +395866,Health,Health +392787,Health,Health +388610,Health,Health +388609,Health,Health +388608,Health,Health +388606,Health,Health +388605,Health,Health +399983,Justice and Law Enforcement,Justice and Law Enforcement +398928,Justice and Law Enforcement,Justice and Law Enforcement +399987,Justice and Law Enforcement,Justice and Law Enforcement +399986,Justice and Law Enforcement,Justice and Law Enforcement +362087,Consumer Issues,Consumer Issues +392429,International Development,International Development +442214,Security,Security +442204,Security,Security +407122,Security,Security +386082,Security,Security +381966,Security,Security +381965,Security,Security +378386,Security,Security +361626,Security,Security +361625,Security,Security +361564,Security,Security +361563,Security,Security +381391,Research and Development,Research and Development +381389,Research and Development,Research and Development +379234,Research and Development,Research and Development +379223,Research and Development,Research and Development +379221,Research and Development,Research and Development +379216,Research and Development,Research and Development +379213,Research and Development,Research and Development +379211,Research and Development,Research and Development +379159,Research and Development,Research and Development +374215,Research and Development,Research and Development +369031,Research and Development,Research and Development +387377,Research and Development,Research and Development +387376,Research and Development,Research and Development +387375,Research and Development,Research and Development +387373,Research and Development,Research and Development +387372,Research and Development,Research and Development +387371,Research and Development,Research and Development +383550,Research and Development,Research and Development +361987,Intellectual Property,Intellectual Property +361986,Intellectual Property,Intellectual Property +420052,Immigration,Immigration +420051,Immigration,Immigration +404904,Immigration,Immigration +404903,Immigration,Immigration +402236,Immigration,Immigration +402235,Immigration,Immigration +402234,Immigration,Immigration +400566,Immigration,Immigration +377103,Immigration,Immigration +388816,Industry,Industrie +473068,Employment and Training,Employment and Training +470470,Employment and Training,Employment and Training +361362,Economic Development,Economic Development +414942,Energy,Energy +362090,Energy,Energy +459651,Energy,Energy +457347,Energy,Energy +457317,Energy,Energy +450092,Energy,Energy +444117,Energy,Energy +440225,Energy,Energy +434296,Energy,Energy +430282,Energy,Energy +430281,Energy,Energy +430280,Energy,Energy +430056,Energy,Energy +430052,Energy,Energy +430050,Energy,Energy +407337,Environment,Environment +459651,Environment,Environment +362090,Environment,Environment +371303,Consumer Issues,Consumer Issues +445872,Consumer Issues,Consumer Issues +418970,Industry,Industry +371303,Financial Institutions,Financial Institutions +370509,Financial Institutions,Financial Institutions +445872,Financial Institutions,Financial Institutions +361446,Infrastructure,Infrastructure +374329,Infrastructure,Infrastructure +363467,Government Procurement,Government Procurement +389180,Government Procurement,Government Procurement +365486,Government Procurement,Government Procurement +365485,Government Procurement,Government Procurement +365484,Government Procurement,Government Procurement +364288,Government Procurement,Government Procurement +364287,Government Procurement,Government Procurement +364286,Government Procurement,Government Procurement +364285,Government Procurement,Government Procurement +364284,Government Procurement,Government Procurement +364283,Government Procurement,Government Procurement +364282,Government Procurement,Government Procurement +363492,Government Procurement,Government Procurement +363491,Government Procurement,Government Procurement +363490,Government Procurement,Government Procurement +363489,Government Procurement,Government Procurement +363488,Government Procurement,Government Procurement +363487,Government Procurement,Government Procurement +363485,Government Procurement,Government Procurement +363484,Government Procurement,Government Procurement +363483,Government Procurement,Government Procurement +363482,Government Procurement,Government Procurement +363481,Government Procurement,Government Procurement +363480,Government Procurement,Government Procurement +363479,Government Procurement,Government Procurement +363477,Government Procurement,Government Procurement +363475,Government Procurement,Government Procurement +363474,Government Procurement,Government Procurement +363473,Government Procurement,Government Procurement +363471,Government Procurement,Government Procurement +363470,Government Procurement,Government Procurement +384945,Government Procurement,Government Procurement +381289,Government Procurement,Government Procurement +435453,Government Procurement,Government Procurement +397973,Government Procurement,Government Procurement +397972,Government Procurement,Government Procurement +393848,Government Procurement,Government Procurement +420389,Employment and Training,Employment and Training +417184,Employment and Training,Employment and Training +393471,Health,Health +386509,Health,Health +393473,Health,Health +387578,Environment,Environment +484487,Environment,Environment +361682,Environment,Environment +404965,Health,Health +404964,Health,Health +404963,Health,Health +404962,Health,Health +399155,Health,Health +399154,Health,Health +399153,Health,Health +399152,Health,Health +395697,Health,Health +390653,Health,Health +390647,Health,Health +390640,Health,Health +387967,Health,Health +387964,Health,Health +373274,Health,Health +369070,Health,Health +365262,Health,Health +453082,Health,Health +453081,Health,Health +444002,Health,Health +432722,Health,Health +428981,Health,Health +428975,Health,Health +427070,Health,Health +427069,Health,Health +427068,Health,Health +427067,Health,Health +422515,Health,Health +422514,Health,Health +422513,Health,Health +422512,Health,Health +416994,Health,Health +416992,Health,Health +416990,Health,Health +416989,Health,Health +409720,Health,Health +390647,International Trade,International Trade +390640,International Trade,International Trade +395697,International Trade,International Trade +390647,Taxation and Finance,Taxation and Finance +390640,Taxation and Finance,Taxation and Finance +395697,Taxation and Finance,Taxation and Finance +451495,Research and Development,Research and Development +448737,Research and Development,Research and Development +397737,Research and Development,Research and Development +395331,Research and Development,Research and Development +386585,Research and Development,Research and Development +367872,Research and Development,Research and Development +367871,Research and Development,Research and Development +362982,Research and Development,Research and Development +361765,Research and Development,Research and Development +446520,Research and Development,Research and Development +446519,Research and Development,Research and Development +446518,Research and Development,Research and Development +446517,Research and Development,Research and Development +446515,Research and Development,Research and Development +444405,Research and Development,Research and Development +444404,Research and Development,Research and Development +443067,Research and Development,Research and Development +443066,Research and Development,Research and Development +440792,Research and Development,Research and Development +440789,Research and Development,Research and Development +437432,Research and Development,Research and Development +437431,Research and Development,Research and Development +437430,Research and Development,Research and Development +437428,Research and Development,Research and Development +437427,Research and Development,Research and Development +437426,Research and Development,Research and Development +437422,Research and Development,Research and Development +437419,Research and Development,Research and Development +434340,Research and Development,Research and Development +434339,Research and Development,Research and Development +434338,Research and Development,Research and Development +433332,Research and Development,Research and Development +433331,Research and Development,Research and Development +432127,Research and Development,Research and Development +430423,Research and Development,Research and Development +423413,Research and Development,Research and Development +423408,Research and Development,Research and Development +411479,Research and Development,Research and Development +411478,Research and Development,Research and Development +409042,Research and Development,Research and Development +409040,Research and Development,Research and Development +407303,Research and Development,Research and Development +407302,Research and Development,Research and Development +401989,Research and Development,Research and Development +397739,Research and Development,Research and Development +397738,Research and Development,Research and Development +545182,Research and Development,Research and Development +545180,Research and Development,Research and Development +545179,Research and Development,Research and Development +545177,Research and Development,Research and Development +542671,Research and Development,Research and Development +542669,Research and Development,Research and Development +542668,Research and Development,Research and Development +542666,Research and Development,Research and Development +542617,Research and Development,Research and Development +542616,Research and Development,Research and Development +542614,Research and Development,Research and Development +542613,Research and Development,Research and Development +542612,Research and Development,Research and Development +540982,Research and Development,Research and Development +540981,Research and Development,Research and Development +540980,Research and Development,Research and Development +539547,Research and Development,Research and Development +539543,Research and Development,Research and Development +539541,Research and Development,Research and Development +539539,Research and Development,Research and Development +539538,Research and Development,Research and Development +539537,Research and Development,Research and Development +539536,Research and Development,Research and Development +538789,Research and Development,Research and Development +538099,Research and Development,Research and Development +538061,Research and Development,Research and Development +538043,Research and Development,Research and Development +538040,Research and Development,Research and Development +537171,Research and Development,Research and Development +537168,Research and Development,Research and Development +537166,Research and Development,Research and Development +533222,Research and Development,Research and Development +533221,Research and Development,Research and Development +533220,Research and Development,Research and Development +533219,Research and Development,Research and Development +530681,Research and Development,Research and Development +530680,Research and Development,Research and Development +530679,Research and Development,Research and Development +530678,Research and Development,Research and Development +527433,Research and Development,Research and Development +527431,Research and Development,Research and Development +524028,Research and Development,Research and Development +524027,Research and Development,Research and Development +524026,Research and Development,Research and Development +521008,Research and Development,Research and Development +520954,Research and Development,Research and Development +520793,Research and Development,Research and Development +520792,Research and Development,Research and Development +520790,Research and Development,Research and Development +518686,Research and Development,Research and Development +516480,Research and Development,Research and Development +516476,Research and Development,Research and Development +516475,Research and Development,Research and Development +516473,Research and Development,Research and Development +516471,Research and Development,Research and Development +515068,Research and Development,Research and Development +513620,Research and Development,Research and Development +512339,Research and Development,Research and Development +506587,Research and Development,Research and Development +506586,Research and Development,Research and Development +506585,Research and Development,Research and Development +503556,Research and Development,Research and Development +500529,Research and Development,Research and Development +497501,Research and Development,Research and Development +497254,Research and Development,Research and Development +488916,Research and Development,Research and Development +483211,Research and Development,Research and Development +483210,Research and Development,Research and Development +480952,Research and Development,Research and Development +480951,Research and Development,Research and Development +480950,Research and Development,Research and Development +463520,Research and Development,Research and Development +397249,Agriculture,Agriculture +389312,Agriculture,Agriculture +380196,Agriculture,Agriculture +375085,Agriculture,Agriculture +365393,Agriculture,Agriculture +397250,International Trade,International Trade +397249,International Trade,International Trade +389312,International Trade,International Trade +380196,International Trade,International Trade +389312,Transportation,Transportation +380196,Transportation,Transportation +365393,Transportation,Transportation +374891,Agriculture,Agriculture +399488,Agriculture,Agriculture +429866,International Trade,International Trade +420374,International Trade,International Trade +399488,International Trade,International Trade +391755,International Trade,International Trade +380944,International Trade,International Trade +378229,International Trade,International Trade +374892,International Trade,International Trade +378211,International Trade,International Trade +378210,International Trade,International Trade +391756,International Trade,International Trade +363205,Transportation,Transportation +363203,Transportation,Transportation +486888,Taxation and Finance,Taxation and Finance +486885,Taxation and Finance,Taxation and Finance +362142,Taxation and Finance,Taxation and Finance +435283,Taxation and Finance,Taxation and Finance +426336,Tourism,Tourisme +419981,Tourism,Tourisme +460211,Tourism,Tourisme +457217,Tourism,Tourisme +435320,Tourism,Tourisme +435317,Tourism,Tourisme +426337,Tourism,Tourisme +455428,Tourism,Tourisme +394409,Tourism,Tourisme +369526,Housing,Housing +369523,Housing,Housing +362205,Housing,Housing +435693,Housing,Housing +429101,Housing,Housing +429100,Housing,Housing +411855,Housing,Housing +405300,Housing,Housing +405296,Housing,Housing +403018,Housing,Housing +403017,Housing,Housing +390398,Housing,Housing +385295,Housing,Housing +379686,Housing,Housing +376704,Housing,Housing +363023,Government Procurement,Government Procurement +363022,Government Procurement,Government Procurement +364311,Government Procurement,Government Procurement +364309,Government Procurement,Government Procurement +364307,Government Procurement,Government Procurement +364305,Government Procurement,Government Procurement +537207,Housing,Housing +537206,Housing,Housing +376420,Housing,Housing +372716,Housing,Housing +369193,Housing,Housing +362301,Housing,Housing +411843,Housing,Housing +405234,Housing,Housing +390187,Housing,Housing +385684,Housing,Housing +364309,International Trade,International Trade +364305,International Trade,International Trade +403360,Housing,Housing +538147,Housing,Housing +391343,Housing,Housing +379421,Housing,Housing +374597,Housing,Housing +372138,Housing,Housing +369172,Housing,Housing +369169,Housing,Housing +362317,Housing,Housing +362305,Housing,Housing +470737,Housing,Housing +435084,Housing,Housing +428474,Housing,Housing +428470,Housing,Housing +411735,Housing,Housing +411728,Housing,Housing +405166,Housing,Housing +405163,Housing,Housing +432264,Official Languages,Official Languages +521647,Official Languages,Official Languages +410192,Official Languages,Official Languages +462324,Official Languages,Official Languages +461168,Official Languages,Official Languages +440549,Official Languages,Official Languages +440548,Official Languages,Official Languages +440546,Official Languages,Official Languages +391906,Climate,Climate +362369,Climate,Climate +391904,Climate,Climate +507443,Climate,Climate +362370,Climate,Climate +419710,Climate,Climate +415764,Climate,Climate +362375,Climate,Climate +419719,Climate,Climate +464831,Housing,Housing +435700,Housing,Housing +429444,Housing,Housing +429440,Housing,Housing +423458,Housing,Housing +413623,Housing,Housing +405609,Housing,Housing +405605,Housing,Housing +391516,Housing,Housing +385697,Housing,Housing +385696,Housing,Housing +383923,Housing,Housing +381626,Housing,Housing +380029,Housing,Housing +376995,Housing,Housing +374923,Housing,Housing +372469,Housing,Housing +369227,Housing,Housing +365312,Housing,Housing +362383,Housing,Housing +537807,Housing,Housing +537806,Housing,Housing +470923,Housing,Housing +362962,Consumer Issues,Consumer Issues +362962,Economic Development,Economic Development +362962,Taxation and Finance,Taxation and Finance +368298,Budget,Budget +373176,Budget,Budget +369035,Budget,Budget +369033,Budget,Budget +434187,Economic Development,Economic Development +533502,Economic Development,Economic Development +453759,Economic Development,Economic Development +496376,Immigration,Immigration +496375,Immigration,Immigration +362542,Immigration,Immigration +486589,Immigration,Immigration +482410,Immigration,Immigration +482403,Immigration,Immigration +479291,Immigration,Immigration +479289,Immigration,Immigration +479287,Immigration,Immigration +479286,Immigration,Immigration +479284,Immigration,Immigration +479283,Immigration,Immigration +479282,Immigration,Immigration +479281,Immigration,Immigration +479279,Immigration,Immigration +479278,Immigration,Immigration +479276,Immigration,Immigration +479274,Immigration,Immigration +479273,Immigration,Immigration +477543,Immigration,Immigration +477416,Immigration,Immigration +477412,Immigration,Immigration +477402,Immigration,Immigration +477399,Immigration,Immigration +477396,Immigration,Immigration +477168,Immigration,Immigration +477165,Immigration,Immigration +477162,Immigration,Immigration +477159,Immigration,Immigration +477154,Immigration,Immigration +477153,Immigration,Immigration +477147,Immigration,Immigration +474176,Immigration,Immigration +474175,Immigration,Immigration +474174,Immigration,Immigration +472208,Immigration,Immigration +472207,Immigration,Immigration +472206,Immigration,Immigration +470136,Immigration,Immigration +470129,Immigration,Immigration +445150,Immigration,Immigration +400111,Immigration,Immigration +399559,Immigration,Immigration +393582,Immigration,Immigration +393580,Immigration,Immigration +392953,Immigration,Immigration +382601,Immigration,Immigration +377773,Immigration,Immigration +373175,Immigration,Immigration +369035,Immigration,Immigration +369033,Immigration,Immigration +369030,Immigration,Immigration +369025,Immigration,Immigration +368299,Immigration,Immigration +368293,Immigration,Immigration +541256,Immigration,Immigration +522602,Immigration,Immigration +512073,Immigration,Immigration +509969,Immigration,Immigration +509960,Immigration,Immigration +506706,Immigration,Immigration +506705,Immigration,Immigration +503488,Immigration,Immigration +503485,Immigration,Immigration +503483,Immigration,Immigration +500647,Immigration,Immigration +500642,Immigration,Immigration +497456,Immigration,Immigration +497455,Immigration,Immigration +497454,Immigration,Immigration +497453,Immigration,Immigration +497451,Immigration,Immigration +497450,Immigration,Immigration +497449,Immigration,Immigration +496381,Immigration,Immigration +427093,Health,Health +374163,Health,Health +374161,Health,Health +442561,Health,Health +442560,Health,Health +442558,Health,Health +429064,International Development,International Development +427093,International Development,International Development +385804,International Development,International Development +385706,International Development,International Development +381772,International Development,International Development +374164,International Development,International Development +374163,International Development,International Development +374161,International Development,International Development +442561,International Development,International Development +442560,International Development,International Development +374163,Research and Development,Research and Development +374161,Research and Development,Research and Development +442561,Research and Development,Research and Development +442560,Research and Development,Research and Development +442558,Research and Development,Research and Development +429064,Research and Development,Research and Development +363142,Economic Development,Economic Development +363142,Transportation,Transportation +371922,Privacy and Access to Information,Privacy and Access to Information +371807,Privacy and Access to Information,Privacy and Access to Information +368659,Health,Health +367404,Health,Health +370268,Tourism,Tourism +468872,Mining,Mining +468770,Mining,Mining +401217,Mining,Mining +453121,Mining,Mining +436139,Mining,Mining +436138,Mining,Mining +436137,Mining,Mining +433150,Mining,Mining +433149,Mining,Mining +431588,Mining,Mining +431392,Mining,Mining +424709,Mining,Mining +424708,Mining,Mining +424707,Mining,Mining +401478,Mining,Mining +401477,Mining,Mining +533207,Mining,Mining +516553,Mining,Mining +516182,Mining,Mining +511988,Mining,Mining +511721,Mining,Mining +488412,Mining,Mining +482903,Mining,Mining +481396,Mining,Mining +480730,Mining,Mining +476266,Mining,Mining +470770,Mining,Mining +469675,Mining,Mining +469389,Mining,Mining +424708,Environment,Environment +424707,Environment,Environment +533207,Environment,Environment +511988,Environment,Environment +511721,Environment,Environment +453121,Environment,Environment +436139,Environment,Environment +436138,Environment,Environment +436137,Environment,Environment +433149,Environment,Environment +431392,Environment,Environment +455089,Employment and Training,Employment and Training +455087,Employment and Training,Employment and Training +379782,Employment and Training,Employment and Training +376021,Employment and Training,Employment and Training +401832,Employment and Training,Employment and Training +401831,Employment and Training,Employment and Training +396122,Employment and Training,Employment and Training +396118,Employment and Training,Employment and Training +468074,Employment and Training,Employment and Training +468073,Employment and Training,Employment and Training +468072,Employment and Training,Employment and Training +468071,Employment and Training,Employment and Training +468070,Employment and Training,Employment and Training +455087,Intellectual Property,Intellectual Property +439692,Intellectual Property,Intellectual Property +396122,Intellectual Property,Intellectual Property +396118,Intellectual Property,Intellectual Property +384834,Intellectual Property,Intellectual Property +379782,Intellectual Property,Intellectual Property +368583,Intellectual Property,Intellectual Property +515820,Intellectual Property,Intellectual Property +493679,Intellectual Property,Intellectual Property +470502,Intellectual Property,Intellectual Property +470501,Intellectual Property,Intellectual Property +468075,Intellectual Property,Intellectual Property +468074,Intellectual Property,Intellectual Property +468073,Intellectual Property,Intellectual Property +468072,Intellectual Property,Intellectual Property +468071,Intellectual Property,Intellectual Property +468070,Intellectual Property,Intellectual Property +468069,Intellectual Property,Intellectual Property +364390,International Trade,International Trade +364389,International Trade,International Trade +378798,International Trade,International Trade +375051,International Trade,International Trade +373442,International Trade,International Trade +367702,Budget,Budget +362944,Budget,Budget +367702,Immigration,Immigration +362944,Immigration,Immigration +368159,Immigration,Immigration +444731,Economic Development,Economic Development +448614,Economic Development,Economic Development +478408,Employment and Training,Employment and Training +452328,Employment and Training,Employment and Training +444732,Employment and Training,Employment and Training +503721,Employment and Training,Employment and Training +509417,Infrastructure,Infrastructure +383569,Economic Development,Economic Development +381029,Economic Development,Economic Development +368569,Economic Development,Economic Development +407830,Economic Development,Economic Development +406563,Economic Development,Economic Development +406562,Economic Development,Economic Development +406561,Economic Development,Economic Development +406560,Economic Development,Economic Development +406559,Economic Development,Economic Development +406557,Economic Development,Economic Development +406554,Economic Development,Economic Development +404947,Economic Development,Economic Development +404945,Economic Development,Economic Development +404944,Economic Development,Economic Development +404933,Economic Development,Economic Development +404932,Economic Development,Economic Development +404931,Economic Development,Economic Development +404929,Economic Development,Economic Development +404927,Economic Development,Economic Development +404925,Economic Development,Economic Development +402889,Economic Development,Economic Development +402888,Economic Development,Economic Development +402886,Economic Development,Economic Development +402885,Economic Development,Economic Development +402879,Economic Development,Economic Development +402834,Economic Development,Economic Development +402829,Economic Development,Economic Development +402828,Economic Development,Economic Development +402825,Economic Development,Economic Development +402823,Economic Development,Economic Development +402821,Economic Development,Economic Development +402819,Economic Development,Economic Development +402815,Economic Development,Economic Development +400070,Economic Development,Economic Development +395865,Economic Development,Economic Development +395864,Economic Development,Economic Development +395863,Economic Development,Economic Development +395861,Economic Development,Economic Development +393933,Economic Development,Economic Development +393932,Economic Development,Economic Development +393931,Economic Development,Economic Development +393930,Economic Development,Economic Development +393929,Economic Development,Economic Development +392402,Economic Development,Economic Development +392401,Economic Development,Economic Development +392400,Economic Development,Economic Development +392399,Economic Development,Economic Development +392398,Economic Development,Economic Development +392397,Economic Development,Economic Development +390944,Economic Development,Economic Development +390943,Economic Development,Economic Development +390942,Economic Development,Economic Development +390938,Economic Development,Economic Development +390936,Economic Development,Economic Development +387889,Economic Development,Economic Development +387888,Economic Development,Economic Development +387885,Economic Development,Economic Development +387884,Economic Development,Economic Development +381029,Tourism,Tourism +368569,Tourism,Tourism +406563,Tourism,Tourism +406562,Tourism,Tourism +406557,Tourism,Tourism +404947,Tourism,Tourism +404945,Tourism,Tourism +404944,Tourism,Tourism +404933,Tourism,Tourism +402889,Tourism,Tourism +402888,Tourism,Tourism +402886,Tourism,Tourism +402885,Tourism,Tourism +402879,Tourism,Tourism +402834,Tourism,Tourism +368023,Sports,Sports +369606,Health,Health +395307,Health,Health +371178,Health,Health +369614,Health,Health +369606,Research and Development,Research and Development +395307,Research and Development,Research and Development +371178,Research and Development,Research and Development +369614,Research and Development,Research and Development +380323,Consumer Issues,Consumer Issues +371345,Forestry,Forestry +371344,Forestry,Forestry +415545,Forestry,Forestry +404561,Forestry,Forestry +397919,Forestry,Forestry +397917,Forestry,Forestry +397914,Forestry,Forestry +397911,Forestry,Forestry +397908,Forestry,Forestry +392203,Forestry,Forestry +392201,Forestry,Forestry +389253,Forestry,Forestry +389252,Forestry,Forestry +389251,Forestry,Forestry +389250,Forestry,Forestry +389249,Forestry,Forestry +380319,Forestry,Forestry +376050,Forestry,Forestry +375969,Forestry,Forestry +375493,Forestry,Forestry +375145,Forestry,Forestry +374106,Forestry,Forestry +374105,Forestry,Forestry +373520,Forestry,Forestry +372547,Forestry,Forestry +372524,Forestry,Forestry +374106,Industry,Industry +374105,Industry,Industry +373520,Industry,Industry +372547,Industry,Industry +372524,Industry,Industry +371346,Industry,Industry +371345,Industry,Industry +371344,Industry,Industry +415545,Industry,Industry +404561,Industry,Industry +397919,Industry,Industry +397917,Industry,Industry +397914,Industry,Industry +397911,Industry,Industry +397908,Industry,Industry +392203,Industry,Industry +392201,Industry,Industry +389253,Industry,Industry +389252,Industry,Industry +389251,Industry,Industry +389250,Industry,Industry +389249,Industry,Industry +380319,Industry,Industry +376050,Industry,Industry +375969,Industry,Industry +375493,Industry,Industry +389250,International Trade,International Trade +389249,International Trade,International Trade +380319,International Trade,International Trade +376050,International Trade,International Trade +375969,International Trade,International Trade +375493,International Trade,International Trade +375145,International Trade,International Trade +374106,International Trade,International Trade +374105,International Trade,International Trade +373520,International Trade,International Trade +372547,International Trade,International Trade +372524,International Trade,International Trade +371346,International Trade,International Trade +371345,International Trade,International Trade +371344,International Trade,International Trade +415545,International Trade,International Trade +404561,International Trade,International Trade +397919,International Trade,International Trade +397917,International Trade,International Trade +397914,International Trade,International Trade +397911,International Trade,International Trade +397908,International Trade,International Trade +392203,International Trade,International Trade +392201,International Trade,International Trade +389253,International Trade,International Trade +389252,International Trade,International Trade +392134,Fisheries,Fisheries +389925,Fisheries,Fisheries +418118,Fisheries,Fisheries +409492,Fisheries,Fisheries +397326,Fisheries,Fisheries +363278,Environment,Environment +363504,Immigration,Immigration +363278,Immigration,Immigration +363844,Immigration,Immigration +363278,Housing,Housing +363283,Privacy and Access to Information,Privacy and Access to Information +368858,Industry,Industry +363383,Industry,Industry +426813,Industry,Industry +406079,Industry,Industry +392739,Industry,Industry +392736,Industry,Industry +392735,Industry,Industry +391284,Industry,Industry +391278,Industry,Industry +378373,Industry,Industry +378371,Industry,Industry +378370,Industry,Industry +378367,Industry,Industry +378366,Industry,Industry +378365,Industry,Industry +378364,Industry,Industry +378363,Industry,Industry +378362,Industry,Industry +378361,Industry,Industry +378360,Industry,Industry +378359,Industry,Industry +378358,Industry,Industry +378357,Industry,Industry +378356,Industry,Industry +378355,Industry,Industry +378354,Industry,Industry +378353,Industry,Industry +378348,Industry,Industry +378347,Industry,Industry +378346,Industry,Industry +378345,Industry,Industry +378344,Industry,Industry +374702,Industry,Industry +372786,Industry,Industry +368861,Industry,Industry +379766,Health,Health +526343,Health,Health +424488,Health,Health +424487,Health,Health +424486,Health,Health +424485,Health,Health +380258,Health,Health +532015,Immigration,Immigration +443541,Immigration,Immigration +363397,Immigration,Immigration +382782,Immigration,Immigration +529652,Immigration,Immigration +365426,Immigration,Immigration +363390,Immigration,Immigration +399124,Immigration,Immigration +365427,Immigration,Immigration +363392,Immigration,Immigration +385205,Immigration,Immigration +383085,Immigration,Immigration +381863,Immigration,Immigration +364242,Education,Education +375723,Defence,Defence +373755,Defence,Defence +365405,Defence,Defence +363823,Defence,Defence +363822,Defence,Defence +460823,Defence,Defence +450558,Defence,Defence +450557,Defence,Defence +444034,Defence,Defence +443168,Defence,Defence +441306,Defence,Defence +440233,Defence,Defence +429902,Defence,Defence +424773,Defence,Defence +424505,Defence,Defence +389247,Defence,Defence +387037,Defence,Defence +386505,Defence,Defence +384272,Defence,Defence +383487,Defence,Defence +383485,Defence,Defence +470612,Economic Development,Economic Development +460823,Economic Development,Economic Development +380137,Economic Development,Economic Development +380136,Economic Development,Economic Development +375724,Economic Development,Economic Development +375723,Economic Development,Economic Development +365405,Economic Development,Economic Development +450558,Economic Development,Economic Development +450557,Economic Development,Economic Development +444034,Economic Development,Economic Development +443168,Economic Development,Economic Development +441306,Economic Development,Economic Development +440233,Economic Development,Economic Development +429902,Economic Development,Economic Development +424505,Economic Development,Economic Development +403306,Economic Development,Economic Development +403304,Economic Development,Economic Development +389247,Economic Development,Economic Development +387037,Economic Development,Economic Development +386505,Economic Development,Economic Development +384272,Economic Development,Economic Development +383487,Economic Development,Economic Development +383485,Economic Development,Economic Development +383482,Economic Development,Economic Development +477430,Economic Development,Economic Development +477424,Economic Development,Economic Development +383482,Government Procurement,Government Procurement +375724,Government Procurement,Government Procurement +375723,Government Procurement,Government Procurement +373755,Government Procurement,Government Procurement +365405,Government Procurement,Government Procurement +363823,Government Procurement,Government Procurement +363822,Government Procurement,Government Procurement +470612,Government Procurement,Government Procurement +460823,Government Procurement,Government Procurement +450558,Government Procurement,Government Procurement +450557,Government Procurement,Government Procurement +444034,Government Procurement,Government Procurement +443168,Government Procurement,Government Procurement +441306,Government Procurement,Government Procurement +440233,Government Procurement,Government Procurement +429902,Government Procurement,Government Procurement +424773,Government Procurement,Government Procurement +424505,Government Procurement,Government Procurement +389247,Government Procurement,Government Procurement +387037,Government Procurement,Government Procurement +386505,Government Procurement,Government Procurement +383487,Government Procurement,Government Procurement +403304,Security,Security +470612,Security,Security +444034,Security,Security +424773,Security,Security +490115,Climate,Climate +490112,Climate,Climate +390294,Climate,Climate +390286,Climate,Climate +390277,Climate,Climate +426666,Climate,Climate +426407,Climate,Climate +426275,Climate,Climate +415608,Climate,Climate +415414,Climate,Climate +415407,Climate,Climate +415404,Climate,Climate +415394,Climate,Climate +413410,Climate,Climate +413407,Climate,Climate +413319,Climate,Climate +403551,Climate,Climate +403548,Climate,Climate +403320,Climate,Climate +390301,Climate,Climate +490107,Climate,Climate +490105,Climate,Climate +490098,Climate,Climate +490097,Climate,Climate +490074,Climate,Climate +485084,Climate,Climate +485060,Climate,Climate +485056,Climate,Climate +485040,Climate,Climate +485028,Climate,Climate +485023,Climate,Climate +485019,Climate,Climate +485013,Climate,Climate +485001,Climate,Climate +484992,Climate,Climate +482161,Climate,Climate +482159,Climate,Climate +482156,Climate,Climate +479964,Climate,Climate +479951,Climate,Climate +479915,Climate,Climate +479898,Climate,Climate +479875,Climate,Climate +479857,Climate,Climate +467497,Climate,Climate +467459,Climate,Climate +464475,Climate,Climate +462584,Climate,Climate +462580,Climate,Climate +462578,Climate,Climate +461332,Climate,Climate +461304,Climate,Climate +458031,Climate,Climate +457290,Climate,Climate +455226,Climate,Climate +455213,Climate,Climate +455150,Climate,Climate +452572,Climate,Climate +452548,Climate,Climate +449320,Climate,Climate +448041,Climate,Climate +447969,Climate,Climate +447843,Climate,Climate +447771,Climate,Climate +447758,Climate,Climate +445084,Climate,Climate +443721,Climate,Climate +442023,Climate,Climate +442001,Climate,Climate +441981,Climate,Climate +441972,Climate,Climate +441899,Climate,Climate +441892,Climate,Climate +441722,Climate,Climate +441702,Climate,Climate +441697,Climate,Climate +441644,Climate,Climate +441629,Climate,Climate +432552,Climate,Climate +460384,Privacy and Access to Information,Privacy and Access to Information +361164,Financial Institutions,Financial Institutions +359964,International Relations,International Relations +359965,International Trade,International Trade +360025,Environment,Environment +360228,Energy,Energy +360282,Labour,Labour +360564,International Trade,International Trade +363504,Economic Development,Développement économique +361462,Small Business,Petites entreprises +360444,International Trade,International Trade +365233,Economic Development,Economic Development +488004,Privacy and Access to Information,Privacy and Access to Information +376727,Taxation and Finance,Taxation and Finance +360567,International Trade,International Trade +368448,Infrastructure,Infrastructure +420503,Environment,Environment +383007,Environment,Environment +376020,Fisheries,Fisheries +388606,Taxation and Finance,Taxation and Finance +388604,Health,Health +398930,Infrastructure,Infrastructure +399985,Justice and Law Enforcement,Justice and Law Enforcement +362211,Consumer Issues,Consumer Issues +431305,Health,Health +431305,International Development,International Development +360842,Labour,Labour +361562,Security,Security +381434,Research and Development,Research and Development +361238,Health,Health +361261,Intellectual Property,Intellectual Property +361263,Intellectual Property,Intellectual Property +379266,Intellectual Property,Intellectual Property +362388,Transportation,Transportation +422720,Immigration,Immigration +422654,Industry,Industrie +368704,Employment and Training,Employment and Training +361363,Economic Development,Economic Development +361363,Industry,Industry +417570,Energy,Energy +417570,Environment,Environment +361402,Industry,Industry +418970,Consumer Issues,Consumer Issues +445872,Industry,Industry +418970,Financial Institutions,Financial Institutions +371193,Infrastructure,Infrastructure +363468,Government Procurement,Government Procurement +361567,Employment and Training,Employment and Training +361567,Immigration,Immigration +392062,Government Procurement,Government Procurement +361568,Employment and Training,Employment and Training +362283,Agriculture,Agriculture +362283,International Trade,International Trade +393472,Health,Health +395787,Environment,Environment +408056,Health,Health +390653,International Trade,International Trade +390653,Taxation and Finance,Taxation and Finance +363633,Mining,Mining +363633,International Trade,International Trade +463519,Research and Development,Research and Development +397250,Agriculture,Agriculture +389312,Environment,Environment +365393,International Trade,International Trade +397249,Transportation,Transportation +380944,Agriculture,Agriculture +374891,International Trade,International Trade +380945,Agriculture,Agriculture +380945,International Trade,International Trade +363002,Industry,Industry +363208,Transportation,Transportation +362664,Economic Development,Développement économique +362664,Regional Development,Développement régional +528894,Taxation and Finance,Taxation and Finance +362166,Tourism,Tourisme +430114,Tourism,Tourisme +430113,Tourism,Tourisme +372367,Housing,Housing +363024,Government Procurement,Government Procurement +464010,Housing,Housing +364310,International Trade,International Trade +362302,Housing,Housing +403361,Housing,Housing +440539,Official Languages,Official Languages +419715,Climate,Climate +401257,Climate,Climate +419717,Climate,Climate +467871,Housing,Housing +362963,Consumer Issues,Consumer Issues +362963,Economic Development,Economic Development +362963,Taxation and Finance,Taxation and Finance +363529,Economic Development,Economic Development +363529,Industry,Industry +363529,Mining,Mining +363529,Regional Development,Regional Development +369030,Budget,Budget +434458,Economic Development,Economic Development +496377,Immigration,Immigration +429064,Health,Health +442558,International Development,International Development +427093,Research and Development,Research and Development +363143,Economic Development,Economic Development +363143,Transportation,Transportation +365395,Housing,Housing +365395,Immigration,Immigration +382924,Privacy and Access to Information,Privacy and Access to Information +388407,Government Procurement,Government Procurement +373927,Health,Health +436790,Taxation and Finance,Taxation and Finance +386863,Tourism,Tourism +362882,Industry,Industry +362882,International Trade,International Trade +468923,Mining,Mining +424709,Environment,Environment +362822,Environment,Environment +468069,Employment and Training,Employment and Training +455089,Intellectual Property,Intellectual Property +364392,Government Procurement,Government Procurement +469110,Health,Health +469110,Industry,Industry +364391,International Trade,International Trade +380757,Budget,Budget +380757,Immigration,Immigration +368159,Budget,Budget +368160,Immigration,Immigration +444319,Government Procurement,Government Procurement +509425,Constitutional Issues,Constitutional Issues +445369,Economic Development,Economic Development +497706,Employment and Training,Employment and Training +453091,Housing,Housing +453091,Infrastructure,Infrastructure +504374,Education,Education +385742,Economic Development,Economic Development +383569,Tourism,Tourism +368570,Economic Development,Economic Development +368570,Tourism,Tourism +363191,Economic Development,Economic Development +375844,Sports,Sports +364362,Economic Development,Economic Development +369607,Health,Health +369607,Research and Development,Research and Development +380324,Consumer Issues,Consumer Issues +371346,Forestry,Forestry +375145,Industry,Industry +389251,International Trade,International Trade +393678,Fisheries,Fisheries +363504,Environment,Environment +363843,Immigration,Immigration +363504,Housing,Housing +365276,Privacy and Access to Information,Privacy and Access to Information +365384,Immigration,Immigration +368859,Industry,Industry +380247,Health,Health +363389,Immigration,Immigration +387341,Immigration,Immigration +370311,Immigration,Immigration +364243,Education,Education +364243,Employment and Training,Employment and Training +383482,Defence,Defence +477403,Economic Development,Economic Development +383485,Government Procurement,Government Procurement +403306,Security,Security +490119,Climate,Climate +471681,Health,Health +363504,Defence,Defence +368696,Infrastructure,Infrastructure +375250,Energy,Energy +364204,Economic Development,Economic Development +375330,Environment,Environment +454381,Research and Development,Research and Development +363666,Consumer Issues,Consumer Issues +375298,Consumer Issues,Consumer Issues +383317,Industry,Industry +367002,International Trade,International Trade +374196,Defence,Defence +374196,Employment and Training,Employment and Training +384941,Health,Health +374196,Security,Security +469023,Employment and Training,Employment and Training +409960,Industry,Industry +371905,Intellectual Property,Intellectual Property +371772,Industry,Industry +370515,Infrastructure,Infrastructure +369200,Climate,Climate +383193,Climate,Climate +416020,Infrastructure,Infrastructure +432545,Climate,Climate +432544,Climate,Climate +432530,Climate,Climate +432501,Climate,Climate +538921,Climate,Climate +531312,Climate,Climate +531308,Climate,Climate +528243,Climate,Climate +528231,Climate,Climate +526203,Climate,Climate +526200,Climate,Climate +526199,Climate,Climate +526196,Climate,Climate +526193,Climate,Climate +522401,Climate,Climate +522397,Climate,Climate +519237,Climate,Climate +517897,Climate,Climate +517894,Climate,Climate +517889,Climate,Climate +517874,Climate,Climate +517869,Climate,Climate +517864,Climate,Climate +517841,Climate,Climate +517828,Climate,Climate +517154,Climate,Climate +517153,Climate,Climate +517152,Climate,Climate +517151,Climate,Climate +517150,Climate,Climate +517149,Climate,Climate +517148,Climate,Climate +517146,Climate,Climate +517145,Climate,Climate +515371,Climate,Climate +513082,Climate,Climate +513078,Climate,Climate +505292,Climate,Climate +505262,Climate,Climate +505252,Climate,Climate +505249,Climate,Climate +505241,Climate,Climate +505233,Climate,Climate +501885,Climate,Climate +501868,Climate,Climate +501844,Climate,Climate +498586,Climate,Climate +495762,Climate,Climate +493617,Climate,Climate +493204,Climate,Climate +490121,Climate,Climate +471679,Health,Health +458946,Health,Health +451193,Health,Health +451190,Health,Health +442045,Health,Health +439628,Health,Health +439626,Health,Health +430403,Health,Health +430402,Health,Health +430399,Health,Health +427713,Health,Health +426841,Health,Health +423291,Health,Health +419692,Health,Health +419691,Health,Health +410281,Health,Health +410280,Health,Health +410279,Health,Health +399222,Health,Health +375455,Health,Health +369088,Health,Health +369081,Health,Health +544837,Health,Health +542349,Health,Health +542348,Health,Health +533491,Health,Health +532372,Health,Health +532371,Health,Health +527228,Health,Health +520533,Health,Health +515153,Health,Health +507854,Health,Health +499877,Health,Health +496258,Health,Health +496257,Health,Health +496256,Health,Health +493963,Health,Health +491895,Health,Health +491892,Health,Health +491890,Health,Health +491889,Health,Health +491888,Health,Health +488821,Health,Health +488820,Health,Health +488819,Health,Health +486510,Health,Health +480581,Health,Health +475476,Health,Health +475467,Health,Health +471682,Health,Health +363504,Infrastructure,Infrastructure +373213,Energy,Energy +373212,Energy,Energy +375330,Economic Development,Economic Development +364204,Environment,Environment +454379,Research and Development,Research and Development +399235,Research and Development,Research and Development +380226,Research and Development,Research and Development +380225,Research and Development,Research and Development +380224,Research and Development,Research and Development +380222,Research and Development,Research and Development +377210,Research and Development,Research and Development +377209,Research and Development,Research and Development +377208,Research and Development,Research and Development +377207,Research and Development,Research and Development +377206,Research and Development,Research and Development +377204,Research and Development,Research and Development +377201,Research and Development,Research and Development +377199,Research and Development,Research and Development +373574,Research and Development,Research and Development +373573,Research and Development,Research and Development +373572,Research and Development,Research and Development +373570,Research and Development,Research and Development +373569,Research and Development,Research and Development +373567,Research and Development,Research and Development +373566,Research and Development,Research and Development +373565,Research and Development,Research and Development +372174,Research and Development,Research and Development +372161,Research and Development,Research and Development +372154,Research and Development,Research and Development +372121,Research and Development,Research and Development +372086,Research and Development,Research and Development +372058,Research and Development,Research and Development +365423,Research and Development,Research and Development +365422,Research and Development,Research and Development +477139,Research and Development,Research and Development +459268,Research and Development,Research and Development +459267,Research and Development,Research and Development +458061,Research and Development,Research and Development +457441,Research and Development,Research and Development +457434,Research and Development,Research and Development +455241,Research and Development,Research and Development +455230,Research and Development,Research and Development +455225,Research and Development,Research and Development +375297,Consumer Issues,Consumer Issues +375296,Consumer Issues,Consumer Issues +370539,Consumer Issues,Consumer Issues +364626,Consumer Issues,Consumer Issues +364625,Consumer Issues,Consumer Issues +382973,Consumer Issues,Consumer Issues +382761,Consumer Issues,Consumer Issues +382102,Consumer Issues,Consumer Issues +381913,Consumer Issues,Consumer Issues +381912,Consumer Issues,Consumer Issues +381911,Consumer Issues,Consumer Issues +381910,Consumer Issues,Consumer Issues +380819,Consumer Issues,Consumer Issues +375474,Consumer Issues,Consumer Issues +375302,Consumer Issues,Consumer Issues +375301,Consumer Issues,Consumer Issues +375300,Consumer Issues,Consumer Issues +375299,Consumer Issues,Consumer Issues +383068,Industry,Industry +382973,Industry,Industry +380805,Industry,Industry +375300,Industry,Industry +375299,Industry,Industry +375298,Industry,Industry +375296,Industry,Industry +375295,Industry,Industry +374092,Industry,Industry +370544,Industry,Industry +370543,Industry,Industry +370538,Industry,Industry +364626,Industry,Industry +364625,Industry,Industry +386168,Industry,Industry +386094,Industry,Industry +385298,Industry,Industry +385241,Industry,Industry +384667,Industry,Industry +384338,Industry,Industry +384091,Industry,Industry +364626,International Trade,International Trade +364625,International Trade,International Trade +375301,International Trade,International Trade +375300,International Trade,International Trade +375299,International Trade,International Trade +375298,International Trade,International Trade +375297,International Trade,International Trade +370542,International Trade,International Trade +370541,International Trade,International Trade +370540,International Trade,International Trade +374195,Defence,Defence +374195,Employment and Training,Employment and Training +374196,Health,Health +374195,Security,Security +371814,Intellectual Property,Intellectual Property +363862,Infrastructure,Infrastructure +386454,Infrastructure,Infrastructure +403287,Climate,Climate +392583,Climate,Climate +376600,Climate,Climate +380676,Climate,Climate +374453,Climate,Climate +454284,Climate,Climate +448764,Climate,Climate +431679,Climate,Climate +431678,Climate,Climate +427968,Climate,Climate +427940,Climate,Climate +422671,Climate,Climate +411282,Climate,Climate +411279,Climate,Climate +410561,Climate,Climate +409849,Climate,Climate +402728,Climate,Climate +402724,Climate,Climate +402714,Climate,Climate +402711,Climate,Climate +402709,Climate,Climate +402708,Climate,Climate +402706,Climate,Climate +402702,Climate,Climate +402696,Climate,Climate +402641,Climate,Climate +402640,Climate,Climate +402627,Climate,Climate +393335,Climate,Climate +393065,Climate,Climate +388996,Climate,Climate +384028,Climate,Climate +384027,Climate,Climate +407908,Infrastructure,Infrastructure +366822,Financial Institutions,Financial Institutions +366822,Housing,Housing +366822,Taxation and Finance,Taxation and Finance +404089,Economic Development,Economic Development +404079,Economic Development,Economic Development +538402,Economic Development,Economic Development +534861,Economic Development,Economic Development +463788,Economic Development,Economic Development +404089,Infrastructure,Infrastructure +404079,Infrastructure,Infrastructure +375521,Infrastructure,Infrastructure +538404,Infrastructure,Infrastructure +534861,Infrastructure,Infrastructure +508031,Infrastructure,Infrastructure +463776,Infrastructure,Infrastructure +463600,Infrastructure,Infrastructure +422841,Infrastructure,Infrastructure +379198,Environment,Environment +379189,Environment,Environment +509571,Infrastructure,Infrastructure +509570,Infrastructure,Infrastructure +393615,Infrastructure,Infrastructure +393611,Infrastructure,Infrastructure +393548,Infrastructure,Infrastructure +389689,Infrastructure,Infrastructure +389688,Infrastructure,Infrastructure +389685,Infrastructure,Infrastructure +389682,Infrastructure,Infrastructure +384949,Infrastructure,Infrastructure +384948,Infrastructure,Infrastructure +365264,Infrastructure,Infrastructure +500217,Infrastructure,Infrastructure +488527,Infrastructure,Infrastructure +486467,Infrastructure,Infrastructure +486464,Infrastructure,Infrastructure +485743,Infrastructure,Infrastructure +444516,Infrastructure,Infrastructure +428731,Infrastructure,Infrastructure +428709,Infrastructure,Infrastructure +427249,Infrastructure,Infrastructure +423921,Infrastructure,Infrastructure +423919,Infrastructure,Infrastructure +420752,Infrastructure,Infrastructure +420749,Infrastructure,Infrastructure +420746,Infrastructure,Infrastructure +418892,Infrastructure,Infrastructure +418889,Infrastructure,Infrastructure +418459,Infrastructure,Infrastructure +417223,Infrastructure,Infrastructure +417222,Infrastructure,Infrastructure +410477,Infrastructure,Infrastructure +408267,Infrastructure,Infrastructure +407261,Infrastructure,Infrastructure +398248,Infrastructure,Infrastructure +398242,Infrastructure,Infrastructure +516600,Infrastructure,Infrastructure +516241,Infrastructure,Infrastructure +384948,Transportation,Transportation +365264,Transportation,Transportation +404203,Transportation,Transportation +404199,Transportation,Transportation +401655,Health,Santé +388941,Health,Santé +464017,Economic Development,Economic Development +421963,Economic Development,Economic Development +404078,Economic Development,Economic Development +404077,Economic Development,Economic Development +538209,Economic Development,Economic Development +526170,Economic Development,Economic Development +526166,Economic Development,Economic Development +522731,Economic Development,Economic Development +513175,Economic Development,Economic Development +501636,Economic Development,Economic Development +498634,Economic Development,Economic Development +498633,Economic Development,Economic Development +495611,Economic Development,Economic Development +492985,Economic Development,Economic Development +492980,Economic Development,Economic Development +467157,Economic Development,Economic Development +467149,Economic Development,Economic Development +464186,Economic Development,Economic Development +464183,Economic Development,Economic Development +464040,Economic Development,Economic Development +470160,Housing,Housing +463958,Housing,Housing +538209,Housing,Housing +534814,Housing,Housing +513175,Housing,Housing +513174,Housing,Housing +538209,Infrastructure,Infrastructure +534814,Infrastructure,Infrastructure +513175,Infrastructure,Infrastructure +467157,Infrastructure,Infrastructure +467149,Infrastructure,Infrastructure +464186,Infrastructure,Infrastructure +464183,Infrastructure,Infrastructure +464040,Infrastructure,Infrastructure +464027,Infrastructure,Infrastructure +464017,Infrastructure,Infrastructure +421964,Infrastructure,Infrastructure +421963,Infrastructure,Infrastructure +404078,Infrastructure,Infrastructure +404077,Infrastructure,Infrastructure +421964,Municipalities,Municipalities +421963,Municipalities,Municipalities +514159,Municipalities,Municipalities +421964,Regional Development,Regional Development +421963,Regional Development,Regional Development +538209,Regional Development,Regional Development +526170,Regional Development,Regional Development +526166,Regional Development,Regional Development +522731,Regional Development,Regional Development +501636,Regional Development,Regional Development +498634,Regional Development,Regional Development +498633,Regional Development,Regional Development +492985,Regional Development,Regional Development +492980,Regional Development,Regional Development +467157,Regional Development,Regional Development +467149,Regional Development,Regional Development +464186,Regional Development,Regional Development +464183,Regional Development,Regional Development +364842,Environment,Environment +364142,Environment,Environment +365544,Environment,Environment +427618,Climate,Climate +427591,Climate,Climate +378452,Climate,Climate +378342,Climate,Climate +378341,Climate,Climate +378339,Climate,Climate +373767,Climate,Climate +373695,Climate,Climate +373655,Climate,Climate +370029,Climate,Climate +369959,Climate,Climate +369958,Climate,Climate +369957,Climate,Climate +369954,Climate,Climate +369953,Climate,Climate +427618,Employment and Training,Employment and Training +427591,Employment and Training,Employment and Training +378452,Employment and Training,Employment and Training +378342,Employment and Training,Employment and Training +378341,Employment and Training,Employment and Training +378339,Employment and Training,Employment and Training +373767,Employment and Training,Employment and Training +373695,Employment and Training,Employment and Training +373655,Employment and Training,Employment and Training +370029,Employment and Training,Employment and Training +369959,Employment and Training,Employment and Training +369958,Employment and Training,Employment and Training +369957,Employment and Training,Employment and Training +369954,Employment and Training,Employment and Training +369953,Employment and Training,Employment and Training +427618,Energy,Energy +427591,Energy,Energy +378452,Energy,Energy +378342,Energy,Energy +378341,Energy,Energy +378339,Energy,Energy +373767,Energy,Energy +373695,Energy,Energy +373655,Energy,Energy +370029,Energy,Energy +369959,Energy,Energy +369958,Energy,Energy +369957,Energy,Energy +369954,Energy,Energy +369953,Energy,Energy +427591,Environment,Environment +378452,Environment,Environment +378342,Environment,Environment +378341,Environment,Environment +378339,Environment,Environment +373767,Environment,Environment +373695,Environment,Environment +373655,Environment,Environment +370029,Environment,Environment +369959,Environment,Environment +369958,Environment,Environment +369957,Environment,Environment +369954,Environment,Environment +369953,Environment,Environment +369951,Environment,Environment +369953,Infrastructure,Infrastructure +369951,Infrastructure,Infrastructure +378452,Infrastructure,Infrastructure +378342,Infrastructure,Infrastructure +378341,Infrastructure,Infrastructure +378339,Infrastructure,Infrastructure +373767,Infrastructure,Infrastructure +373695,Infrastructure,Infrastructure +373655,Infrastructure,Infrastructure +370029,Infrastructure,Infrastructure +369959,Infrastructure,Infrastructure +369958,Infrastructure,Infrastructure +369957,Infrastructure,Infrastructure +369953,Research and Development,Research and Development +369951,Research and Development,Research and Development +378452,Research and Development,Research and Development +378342,Research and Development,Research and Development +378341,Research and Development,Research and Development +378339,Research and Development,Research and Development +373767,Research and Development,Research and Development +373695,Research and Development,Research and Development +373655,Research and Development,Research and Development +370029,Research and Development,Research and Development +369959,Research and Development,Research and Development +369958,Research and Development,Research and Development +369957,Research and Development,Research and Development +497561,Agriculture,Agriculture +497560,Agriculture,Agriculture +463870,Agriculture,Agriculture +463785,Agriculture,Agriculture +463783,Agriculture,Agriculture +445826,Agriculture,Agriculture +445825,Agriculture,Agriculture +445824,Agriculture,Agriculture +419094,Agriculture,Agriculture +419093,Agriculture,Agriculture +394844,Agriculture,Agriculture +419093,International Trade,International Trade +394844,International Trade,International Trade +380756,International Trade,International Trade +463870,International Trade,International Trade +463785,International Trade,International Trade +463783,International Trade,International Trade +445826,International Trade,International Trade +445825,International Trade,International Trade +445824,International Trade,International Trade +369395,Infrastructure,Infrastructure +369394,Infrastructure,Infrastructure +369395,International Trade,International Trade +369394,International Trade,International Trade +414436,Agriculture,Agriculture +463193,Agriculture,Agriculture +439759,Agriculture,Agriculture +439758,Agriculture,Agriculture +439757,Agriculture,Agriculture +439756,Agriculture,Agriculture +439755,Agriculture,Agriculture +439753,Agriculture,Agriculture +414883,Agriculture,Agriculture +414840,Agriculture,Agriculture +414444,Agriculture,Agriculture +414443,Agriculture,Agriculture +414442,Agriculture,Agriculture +414441,Agriculture,Agriculture +439759,Environment,Environment +439758,Environment,Environment +414444,Environment,Environment +414443,Environment,Environment +414442,Environment,Environment +414441,Environment,Environment +414440,Environment,Environment +414436,Environment,Environment +414440,Research and Development,Research and Development +414436,Research and Development,Research and Development +463193,Research and Development,Research and Development +439759,Research and Development,Research and Development +439758,Research and Development,Research and Development +439757,Research and Development,Research and Development +439756,Research and Development,Research and Development +439755,Research and Development,Research and Development +439753,Research and Development,Research and Development +414883,Research and Development,Research and Development +414840,Research and Development,Research and Development +414444,Research and Development,Research and Development +414443,Research and Development,Research and Development +414442,Research and Development,Research and Development +371350,Education,Education +371347,Education,Education +371354,Education,Education +371350,Immigration,Immigration +371347,Immigration,Immigration +371354,Immigration,Immigration +372977,Taxation and Finance,Taxation and Finance +369553,Taxation and Finance,Taxation and Finance +372983,Taxation and Finance,Taxation and Finance +372982,Taxation and Finance,Taxation and Finance +372981,Taxation and Finance,Taxation and Finance +372980,Taxation and Finance,Taxation and Finance +372979,Taxation and Finance,Taxation and Finance +365071,Regional Development,Regional Development +365070,Regional Development,Regional Development +394793,Regional Development,Regional Development +387266,Regional Development,Regional Development +387265,Regional Development,Regional Development +387260,Regional Development,Regional Development +387259,Regional Development,Regional Development +387258,Regional Development,Regional Development +374486,Regional Development,Regional Development +374473,Regional Development,Regional Development +374467,Regional Development,Regional Development +374464,Regional Development,Regional Development +365074,Regional Development,Regional Development +365073,Fisheries,Fisheries +365071,Fisheries,Fisheries +394793,Fisheries,Fisheries +387266,Fisheries,Fisheries +387265,Fisheries,Fisheries +387260,Fisheries,Fisheries +387259,Fisheries,Fisheries +374486,Fisheries,Fisheries +374473,Fisheries,Fisheries +374467,Fisheries,Fisheries +374464,Fisheries,Fisheries +365071,Labour,Labour +365070,Labour,Labour +387266,Labour,Labour +374486,Labour,Labour +374473,Labour,Labour +374467,Labour,Labour +365074,Labour,Labour +365071,Environment,Environment +365070,Environment,Environment +394793,Environment,Environment +387266,Environment,Environment +387265,Environment,Environment +387260,Environment,Environment +387259,Environment,Environment +387258,Environment,Environment +374486,Environment,Environment +374473,Environment,Environment +374467,Environment,Environment +374464,Environment,Environment +365074,Environment,Environment +387259,Mining,Mining +387258,Mining,Mining +374486,Mining,Mining +374473,Mining,Mining +374467,Mining,Mining +374464,Mining,Mining +365074,Mining,Mining +365073,Mining,Mining +365071,Mining,Mining +365070,Mining,Mining +394793,Mining,Mining +387266,Mining,Mining +387265,Mining,Mining +488589,Budget,Budget +488585,Budget,Budget +411261,Budget,Budget +408966,Budget,Budget +408289,Budget,Budget +529826,Budget,Budget +522280,Budget,Budget +520944,Budget,Budget +489217,Budget,Budget +488589,Education,Education +488585,Education,Education +411261,Education,Education +408289,Education,Education +520944,Education,Education +514606,Education,Education +489217,Education,Education +488585,Health,Health +463369,Health,Health +411261,Health,Health +408966,Health,Health +408289,Health,Health +529826,Health,Health +522280,Health,Health +520944,Health,Health +514606,Health,Health +493425,Health,Health +489217,Health,Health +489216,Health,Health +408966,Sports,Sports +408289,Sports,Sports +529826,Sports,Sports +522280,Sports,Sports +520944,Sports,Sports +514606,Sports,Sports +493425,Sports,Sports +489217,Sports,Sports +488589,Sports,Sports +488585,Sports,Sports +463369,Sports,Sports +411261,Taxation and Finance,Taxation and Finance +529826,Taxation and Finance,Taxation and Finance +522280,Taxation and Finance,Taxation and Finance +367635,Budget,Budget +367634,Budget,Budget +367633,Budget,Budget +367632,Budget,Budget +367632,Education,Education +367631,Education,Education +367635,Education,Education +367632,Health,Health +367631,Health,Health +367635,Health,Health +367634,Health,Health +367632,Research and Development,Research and Development +367631,Research and Development,Research and Development +367635,Research and Development,Research and Development +367634,Research and Development,Research and Development +367632,Sports,Sports +367631,Sports,Sports +367635,Sports,Sports +367634,Sports,Sports +374368,Health,Health +400240,Health,Health +367640,Budget,Budget +367604,Budget,Budget +391108,Budget,Budget +391106,Budget,Budget +391104,Budget,Budget +391103,Budget,Budget +386389,Budget,Budget +386328,Budget,Budget +386327,Budget,Budget +386326,Budget,Budget +386325,Budget,Budget +386324,Budget,Budget +386323,Budget,Budget +383975,Budget,Budget +383974,Budget,Budget +383973,Budget,Budget +367604,Education,Education +367603,Education,Education +367602,Education,Education +391108,Education,Education +391106,Education,Education +391104,Education,Education +391103,Education,Education +386328,Education,Education +386325,Education,Education +386324,Education,Education +386323,Education,Education +383975,Education,Education +383974,Education,Education +383973,Education,Education +383972,Education,Education +367640,Education,Education +367604,Sports,Sports +367602,Sports,Sports +391108,Sports,Sports +391106,Sports,Sports +391104,Sports,Sports +391103,Sports,Sports +386389,Sports,Sports +386328,Sports,Sports +386327,Sports,Sports +386326,Sports,Sports +386325,Sports,Sports +386324,Sports,Sports +386323,Sports,Sports +383975,Sports,Sports +383974,Sports,Sports +383973,Sports,Sports +383972,Sports,Sports +367640,Sports,Sports +367603,Health,Health +367602,Health,Health +391108,Health,Health +391106,Health,Health +391104,Health,Health +391103,Health,Health +386389,Health,Health +386328,Health,Health +386327,Health,Health +386326,Health,Health +386325,Health,Health +386324,Health,Health +386323,Health,Health +383975,Health,Health +383974,Health,Health +383973,Health,Health +383972,Health,Health +367640,Health,Health +367639,Health,Health +383973,Taxation and Finance,Taxation and Finance +383972,Taxation and Finance,Taxation and Finance +391108,Taxation and Finance,Taxation and Finance +391106,Taxation and Finance,Taxation and Finance +391104,Taxation and Finance,Taxation and Finance +391103,Taxation and Finance,Taxation and Finance +386389,Taxation and Finance,Taxation and Finance +386328,Taxation and Finance,Taxation and Finance +386327,Taxation and Finance,Taxation and Finance +386326,Taxation and Finance,Taxation and Finance +386325,Taxation and Finance,Taxation and Finance +386324,Taxation and Finance,Taxation and Finance +386323,Taxation and Finance,Taxation and Finance +383975,Taxation and Finance,Taxation and Finance +370482,Economic Development,Economic Development +370482,Government Procurement,Government Procurement +370482,Industry,Industry +370482,Security,Security +370482,Small Business,Small Business +370482,Taxation and Finance,Taxation and Finance +370482,Tourism,Tourism +370482,Transportation,Transportation +380318,Taxation and Finance,Taxation and Finance +371633,Defence,Defence +371632,Defence,Defence +387808,Defence,Defence +387800,Defence,Defence +379261,Defence,Defence +379260,Defence,Defence +379256,Defence,Defence +379254,Defence,Defence +379249,Defence,Defence +379246,Defence,Defence +379254,Industry,Industry +379249,Industry,Industry +379261,Industry,Industry +379260,Industry,Industry +371633,International Trade,International Trade +371632,International Trade,International Trade +387808,International Trade,International Trade +387800,International Trade,International Trade +379261,International Trade,International Trade +379260,International Trade,International Trade +379256,International Trade,International Trade +379254,International Trade,International Trade +379249,International Trade,International Trade +379246,International Trade,International Trade +366607,Climate,Climate +366606,Climate,Climate +366607,Environment,Environment +366606,Environment,Environment +399376,Economic Development,Economic Development +516741,Economic Development,Economic Development +389648,Economic Development,Economic Development +536933,Education,Education +536358,Education,Education +473953,Education,Education +473952,Education,Education +536938,Education,Education +536933,Employment and Training,Employment and Training +536358,Employment and Training,Employment and Training +536938,Employment and Training,Employment and Training +377787,Research and Development,Research and Development +367902,Regional Development,Regional Development +367866,Regional Development,Regional Development +370054,Regional Development,Regional Development +367902,Fisheries,Fisheries +367866,Fisheries,Fisheries +370054,Fisheries,Fisheries +370053,Fisheries,Fisheries +367902,Economic Development,Economic Development +367866,Economic Development,Economic Development +370054,Economic Development,Economic Development +370053,Economic Development,Economic Development +386138,Consumer Issues,Consumer Issues +385975,Consumer Issues,Consumer Issues +407098,Consumer Issues,Consumer Issues +406119,Consumer Issues,Consumer Issues +399477,Consumer Issues,Consumer Issues +399211,Consumer Issues,Consumer Issues +399210,Consumer Issues,Consumer Issues +399209,Consumer Issues,Consumer Issues +399208,Consumer Issues,Consumer Issues +399207,Consumer Issues,Consumer Issues +389035,Consumer Issues,Consumer Issues +399208,Economic Development,Economic Development +399206,Economic Development,Economic Development +389035,Economic Development,Economic Development +389034,Economic Development,Economic Development +386138,Economic Development,Economic Development +407098,Economic Development,Economic Development +406119,Economic Development,Economic Development +399477,Economic Development,Economic Development +386138,Energy,Energy +406119,Energy,Energy +399477,Energy,Energy +399206,Energy,Energy +389035,Energy,Energy +385975,Financial Institutions,Financial Institutions +430279,Financial Institutions,Financial Institutions +407098,Financial Institutions,Financial Institutions +406119,Financial Institutions,Financial Institutions +399211,Financial Institutions,Financial Institutions +399210,Financial Institutions,Financial Institutions +399209,Financial Institutions,Financial Institutions +399208,Financial Institutions,Financial Institutions +399207,Financial Institutions,Financial Institutions +399206,Financial Institutions,Financial Institutions +389035,Financial Institutions,Financial Institutions +389034,Financial Institutions,Financial Institutions +389035,Industry,Industry +389034,Industry,Industry +386138,Industry,Industry +407098,Industry,Industry +406119,Industry,Industry +399211,Industry,Industry +399209,Industry,Industry +389034,International Development,International Development +386138,International Development,International Development +406119,International Development,International Development +399477,International Development,International Development +399211,International Development,International Development +399210,International Development,International Development +399208,International Development,International Development +399207,International Development,International Development +399206,International Development,International Development +385975,International Trade,International Trade +430279,International Trade,International Trade +407098,International Trade,International Trade +406119,International Trade,International Trade +399477,International Trade,International Trade +399211,International Trade,International Trade +399210,International Trade,International Trade +399209,International Trade,International Trade +399208,International Trade,International Trade +399207,International Trade,International Trade +399206,International Trade,International Trade +389035,International Trade,International Trade +389034,International Trade,International Trade +365077,Environment,Environment +365076,Environment,Environment +374496,Environment,Environment +374495,Environment,Environment +374493,Environment,Environment +374492,Environment,Environment +374495,Regional Development,Regional Development +374493,Regional Development,Regional Development +374492,Regional Development,Regional Development +374487,Regional Development,Regional Development +365077,Regional Development,Regional Development +365076,Regional Development,Regional Development +365077,Fisheries,Fisheries +365076,Fisheries,Fisheries +374496,Fisheries,Fisheries +374495,Fisheries,Fisheries +374493,Fisheries,Fisheries +374492,Fisheries,Fisheries +365077,Labour,Labour +365076,Labour,Labour +374496,Labour,Labour +374495,Labour,Labour +374493,Labour,Labour +374492,Labour,Labour +365077,Mining,Mining +365076,Mining,Mining +374496,Mining,Mining +374495,Mining,Mining +374493,Mining,Mining +374492,Mining,Mining +368124,Constitutional Issues,Constitutional Issues +368123,Constitutional Issues,Constitutional Issues +376627,Constitutional Issues,Constitutional Issues +373757,Constitutional Issues,Constitutional Issues +371606,International Trade,International Trade +371606,Defence,Defence +429504,Climate,Climate +429501,Climate,Climate +372439,Climate,Climate +372427,Climate,Climate +372420,Climate,Climate +367288,Climate,Climate +367285,Climate,Climate +408281,Climate,Climate +397119,Climate,Climate +392879,Climate,Climate +390412,Climate,Climate +542004,Climate,Climate +531582,Climate,Climate +520273,Climate,Climate +520272,Climate,Climate +515930,Climate,Climate +513340,Climate,Climate +432645,Climate,Climate +432644,Climate,Climate +432643,Climate,Climate +432642,Climate,Climate +429512,Climate,Climate +429510,Climate,Climate +429509,Climate,Climate +520269,Environment,Environment +515930,Environment,Environment +383849,Environment,Environment +379043,Environment,Environment +379042,Environment,Environment +378768,Environment,Environment +372439,Environment,Environment +372427,Environment,Environment +372420,Environment,Environment +367286,Environment,Environment +367285,Environment,Environment +432647,Environment,Environment +432645,Environment,Environment +432644,Environment,Environment +432643,Environment,Environment +432642,Environment,Environment +431014,Environment,Environment +431013,Environment,Environment +431011,Environment,Environment +429512,Environment,Environment +429510,Environment,Environment +429506,Environment,Environment +429504,Environment,Environment +414083,Environment,Environment +414082,Environment,Environment +408281,Environment,Environment +397122,Environment,Environment +394578,Environment,Environment +392879,Environment,Environment +529793,Environment,Environment +520273,Environment,Environment +391179,Economic Development,Economic Development +391172,Economic Development,Economic Development +387048,Economic Development,Economic Development +387047,Economic Development,Economic Development +387044,Economic Development,Economic Development +383189,Economic Development,Economic Development +380812,Economic Development,Economic Development +380811,Economic Development,Economic Development +380810,Economic Development,Economic Development +378736,Economic Development,Economic Development +373604,Economic Development,Economic Development +373603,Economic Development,Economic Development +429908,Economic Development,Economic Development +393499,Economic Development,Economic Development +392188,Economic Development,Economic Development +429908,Environment,Environment +429907,Environment,Environment +393499,Environment,Environment +392188,Environment,Environment +392187,Environment,Environment +391179,Environment,Environment +387048,Environment,Environment +387044,Environment,Environment +384620,Environment,Environment +380812,Environment,Environment +380811,Environment,Environment +380810,Environment,Environment +378736,Environment,Environment +373604,Environment,Environment +373603,Environment,Environment +429908,Mining,Mining +429907,Mining,Mining +392188,Mining,Mining +392187,Mining,Mining +391179,Mining,Mining +391172,Mining,Mining +387048,Mining,Mining +387047,Mining,Mining +387044,Mining,Mining +384620,Mining,Mining +383189,Mining,Mining +380812,Mining,Mining +380811,Mining,Mining +380810,Mining,Mining +378736,Mining,Mining +373604,Mining,Mining +373603,Mining,Mining +429908,Regional Development,Regional Development +429907,Regional Development,Regional Development +393499,Regional Development,Regional Development +392188,Regional Development,Regional Development +392187,Regional Development,Regional Development +391179,Regional Development,Regional Development +391172,Regional Development,Regional Development +387048,Regional Development,Regional Development +387047,Regional Development,Regional Development +387044,Regional Development,Regional Development +384620,Regional Development,Regional Development +380812,Regional Development,Regional Development +380811,Regional Development,Regional Development +380810,Regional Development,Regional Development +378736,Regional Development,Regional Development +373604,Regional Development,Regional Development +373603,Regional Development,Regional Development +370621,Infrastructure,Infrastructure +364797,Infrastructure,Infrastructure +461296,Transportation,Transportation +394197,Regional Development,Regional Development +386547,Regional Development,Regional Development +369008,Regional Development,Regional Development +369008,Transportation,Transportation +364895,Transportation,Transportation +464914,Industry,Industry +464876,Industry,Industry +403799,Industry,Industry +399476,Industry,Industry +395320,Industry,Industry +395319,Industry,Industry +395318,Industry,Industry +385577,Industry,Industry +382442,Industry,Industry +379783,Industry,Industry +379707,Industry,Industry +379034,Industry,Industry +376905,Industry,Industry +364803,Industry,Industry +464863,Industry,Industry +464816,Industry,Industry +458443,Industry,Industry +458442,Industry,Industry +458440,Industry,Industry +458435,Industry,Industry +458434,Industry,Industry +458432,Industry,Industry +458431,Industry,Industry +458430,Industry,Industry +457174,Industry,Industry +456908,Industry,Industry +456906,Industry,Industry +456905,Industry,Industry +456904,Industry,Industry +456903,Industry,Industry +456901,Industry,Industry +455991,Industry,Industry +455986,Industry,Industry +455980,Industry,Industry +455975,Industry,Industry +455973,Industry,Industry +455959,Industry,Industry +455956,Industry,Industry +455951,Industry,Industry +455945,Industry,Industry +455942,Industry,Industry +452827,Industry,Industry +452825,Industry,Industry +452822,Industry,Industry +452817,Industry,Industry +452805,Industry,Industry +452803,Industry,Industry +452767,Industry,Industry +452761,Industry,Industry +449744,Industry,Industry +449743,Industry,Industry +449742,Industry,Industry +449739,Industry,Industry +448137,Industry,Industry +448135,Industry,Industry +448134,Industry,Industry +442691,Industry,Industry +442688,Industry,Industry +442686,Industry,Industry +438142,Industry,Industry +432468,Industry,Industry +430945,Industry,Industry +430929,Industry,Industry +430920,Industry,Industry +430914,Industry,Industry +429246,Industry,Industry +429244,Industry,Industry +429225,Industry,Industry +429216,Industry,Industry +429199,Industry,Industry +429195,Industry,Industry +429193,Industry,Industry +426323,Industry,Industry +426322,Industry,Industry +426321,Industry,Industry +426320,Industry,Industry +426319,Industry,Industry +426318,Industry,Industry +426316,Industry,Industry +426314,Industry,Industry +426312,Industry,Industry +426311,Industry,Industry +426310,Industry,Industry +426309,Industry,Industry +426308,Industry,Industry +426307,Industry,Industry +426297,Industry,Industry +426285,Industry,Industry +424048,Industry,Industry +424010,Industry,Industry +424002,Industry,Industry +422108,Industry,Industry +421680,Industry,Industry +421667,Industry,Industry +421661,Industry,Industry +421646,Industry,Industry +421643,Industry,Industry +421641,Industry,Industry +420230,Industry,Industry +420225,Industry,Industry +420223,Industry,Industry +420222,Industry,Industry +420221,Industry,Industry +420218,Industry,Industry +420217,Industry,Industry +420144,Industry,Industry +418062,Industry,Industry +418058,Industry,Industry +418055,Industry,Industry +416092,Industry,Industry +416085,Industry,Industry +416080,Industry,Industry +528304,Industry,Industry +527868,Industry,Industry +526893,Industry,Industry +504631,Industry,Industry +502264,Industry,Industry +502257,Industry,Industry +479085,Industry,Industry +479077,Industry,Industry +478109,Industry,Industry +478090,Industry,Industry +478086,Industry,Industry +478082,Industry,Industry +478079,Industry,Industry +478077,Industry,Industry +475505,Industry,Industry +475481,Industry,Industry +475477,Industry,Industry +475423,Industry,Industry +475418,Industry,Industry +472999,Industry,Industry +472995,Industry,Industry +472993,Industry,Industry +472981,Industry,Industry +472977,Industry,Industry +467866,Industry,Industry +464930,Industry,Industry +371311,Infrastructure,Infrastructure +371308,Infrastructure,Infrastructure +427363,Consumer Issues,Consumer Issues +516020,Consumer Issues,Consumer Issues +497040,Consumer Issues,Consumer Issues +496698,Consumer Issues,Consumer Issues +486151,Consumer Issues,Consumer Issues +482025,Consumer Issues,Consumer Issues +482022,Consumer Issues,Consumer Issues +478955,Consumer Issues,Consumer Issues +465356,Consumer Issues,Consumer Issues +465237,Consumer Issues,Consumer Issues +462361,Consumer Issues,Consumer Issues +460956,Consumer Issues,Consumer Issues +460820,Consumer Issues,Consumer Issues +457847,Consumer Issues,Consumer Issues +456249,Consumer Issues,Consumer Issues +456248,Consumer Issues,Consumer Issues +454376,Consumer Issues,Consumer Issues +453038,Consumer Issues,Consumer Issues +448754,Consumer Issues,Consumer Issues +440614,Consumer Issues,Consumer Issues +434127,Consumer Issues,Consumer Issues +434126,Consumer Issues,Consumer Issues +431497,Consumer Issues,Consumer Issues +427366,Consumer Issues,Consumer Issues +364894,Infrastructure,Infrastructure +364882,Infrastructure,Infrastructure +426869,Municipalities,Municipalities +364882,Environment,Environment +390702,International Relations,International Relations +388600,International Relations,International Relations +383262,International Relations,International Relations +379550,International Relations,International Relations +368133,International Relations,International Relations +364948,International Relations,International Relations +512980,International Relations,International Relations +468814,International Relations,International Relations +468230,International Relations,International Relations +453323,International Relations,International Relations +448525,International Relations,International Relations +446092,International Relations,International Relations +408501,International Relations,International Relations +408496,International Relations,International Relations +399537,International Relations,International Relations +398315,International Relations,International Relations +447782,Climate,Climate +527781,Climate,Climate +489688,Climate,Climate +477450,Economic Development,Economic Development +477448,Economic Development,Economic Development +475311,Economic Development,Economic Development +475310,Economic Development,Economic Development +475309,Economic Development,Economic Development +472665,Economic Development,Economic Development +472663,Economic Development,Economic Development +467292,Economic Development,Economic Development +464491,Economic Development,Economic Development +464456,Economic Development,Economic Development +464452,Economic Development,Economic Development +464450,Economic Development,Economic Development +462796,Economic Development,Economic Development +462794,Economic Development,Economic Development +449895,Economic Development,Economic Development +449893,Economic Development,Economic Development +449891,Economic Development,Economic Development +449890,Economic Development,Economic Development +449881,Economic Development,Economic Development +449874,Economic Development,Economic Development +447782,Economic Development,Economic Development +423783,Economic Development,Economic Development +412006,Economic Development,Economic Development +399719,Economic Development,Economic Development +543753,Economic Development,Economic Development +541264,Economic Development,Economic Development +541262,Economic Development,Economic Development +541258,Economic Development,Economic Development +539622,Economic Development,Economic Development +539621,Economic Development,Economic Development +539620,Economic Development,Economic Development +539619,Economic Development,Economic Development +539617,Economic Development,Economic Development +536976,Economic Development,Economic Development +536975,Economic Development,Economic Development +536972,Economic Development,Economic Development +527780,Economic Development,Economic Development +521885,Economic Development,Economic Development +521883,Economic Development,Economic Development +521882,Economic Development,Economic Development +521881,Economic Development,Economic Development +521880,Economic Development,Economic Development +521798,Economic Development,Economic Development +519870,Economic Development,Economic Development +519358,Economic Development,Economic Development +513782,Economic Development,Economic Development +513780,Economic Development,Economic Development +513778,Economic Development,Economic Development +512843,Economic Development,Economic Development +512838,Economic Development,Economic Development +511228,Economic Development,Economic Development +511226,Economic Development,Economic Development +511223,Economic Development,Economic Development +511219,Economic Development,Economic Development +511217,Economic Development,Economic Development +511215,Economic Development,Economic Development +511213,Economic Development,Economic Development +511207,Economic Development,Economic Development +511204,Economic Development,Economic Development +511201,Economic Development,Economic Development +511199,Economic Development,Economic Development +511197,Economic Development,Economic Development +511196,Economic Development,Economic Development +511195,Economic Development,Economic Development +511193,Economic Development,Economic Development +511126,Economic Development,Economic Development +511120,Economic Development,Economic Development +502261,Economic Development,Economic Development +502259,Economic Development,Economic Development +502255,Economic Development,Economic Development +502254,Economic Development,Economic Development +502251,Economic Development,Economic Development +502249,Economic Development,Economic Development +502248,Economic Development,Economic Development +502246,Economic Development,Economic Development +502245,Economic Development,Economic Development +502241,Economic Development,Economic Development +502235,Economic Development,Economic Development +502232,Economic Development,Economic Development +502200,Economic Development,Economic Development +498780,Economic Development,Economic Development +498777,Economic Development,Economic Development +498773,Economic Development,Economic Development +498768,Economic Development,Economic Development +498767,Economic Development,Economic Development +498765,Economic Development,Economic Development +498764,Economic Development,Economic Development +498762,Economic Development,Economic Development +498753,Economic Development,Economic Development +498751,Economic Development,Economic Development +498748,Economic Development,Economic Development +498746,Economic Development,Economic Development +498741,Economic Development,Economic Development +494918,Economic Development,Economic Development +494913,Economic Development,Economic Development +494912,Economic Development,Economic Development +494908,Economic Development,Economic Development +493327,Economic Development,Economic Development +489689,Economic Development,Economic Development +489688,Economic Development,Economic Development +489645,Economic Development,Economic Development +489640,Economic Development,Economic Development +489639,Economic Development,Economic Development +486434,Economic Development,Economic Development +486432,Economic Development,Economic Development +486430,Economic Development,Economic Development +486429,Economic Development,Economic Development +486428,Economic Development,Economic Development +486424,Economic Development,Economic Development +486422,Economic Development,Economic Development +486421,Economic Development,Economic Development +485824,Economic Development,Economic Development +484743,Economic Development,Economic Development +484740,Economic Development,Economic Development +484735,Economic Development,Economic Development +484732,Economic Development,Economic Development +484727,Economic Development,Economic Development +484725,Economic Development,Economic Development +484727,Research and Development,Research and Development +484721,Research and Development,Research and Development +467292,Research and Development,Research and Development +458370,Research and Development,Research and Development +458369,Research and Development,Research and Development +455198,Research and Development,Research and Development +455197,Research and Development,Research and Development +455196,Research and Development,Research and Development +455194,Research and Development,Research and Development +455184,Research and Development,Research and Development +455183,Research and Development,Research and Development +455181,Research and Development,Research and Development +455180,Research and Development,Research and Development +455178,Research and Development,Research and Development +455176,Research and Development,Research and Development +455174,Research and Development,Research and Development +455171,Research and Development,Research and Development +455169,Research and Development,Research and Development +449895,Research and Development,Research and Development +449893,Research and Development,Research and Development +449891,Research and Development,Research and Development +449890,Research and Development,Research and Development +449881,Research and Development,Research and Development +449874,Research and Development,Research and Development +447779,Research and Development,Research and Development +442501,Research and Development,Research and Development +442500,Research and Development,Research and Development +442499,Research and Development,Research and Development +442497,Research and Development,Research and Development +412001,Research and Development,Research and Development +412000,Research and Development,Research and Development +411999,Research and Development,Research and Development +411998,Research and Development,Research and Development +411997,Research and Development,Research and Development +407526,Research and Development,Research and Development +407524,Research and Development,Research and Development +407523,Research and Development,Research and Development +407521,Research and Development,Research and Development +407519,Research and Development,Research and Development +407518,Research and Development,Research and Development +543753,Research and Development,Research and Development +541847,Research and Development,Research and Development +541266,Research and Development,Research and Development +541264,Research and Development,Research and Development +541262,Research and Development,Research and Development +541258,Research and Development,Research and Development +539622,Research and Development,Research and Development +539621,Research and Development,Research and Development +539620,Research and Development,Research and Development +539619,Research and Development,Research and Development +539617,Research and Development,Research and Development +536976,Research and Development,Research and Development +536975,Research and Development,Research and Development +536972,Research and Development,Research and Development +533722,Research and Development,Research and Development +533654,Research and Development,Research and Development +533653,Research and Development,Research and Development +527780,Research and Development,Research and Development +524885,Research and Development,Research and Development +524881,Research and Development,Research and Development +524879,Research and Development,Research and Development +524877,Research and Development,Research and Development +521885,Research and Development,Research and Development +521883,Research and Development,Research and Development +521882,Research and Development,Research and Development +521881,Research and Development,Research and Development +521880,Research and Development,Research and Development +521798,Research and Development,Research and Development +521039,Research and Development,Research and Development +521038,Research and Development,Research and Development +519870,Research and Development,Research and Development +519358,Research and Development,Research and Development +513787,Research and Development,Research and Development +513786,Research and Development,Research and Development +513785,Research and Development,Research and Development +513782,Research and Development,Research and Development +513780,Research and Development,Research and Development +513779,Research and Development,Research and Development +513778,Research and Development,Research and Development +512843,Research and Development,Research and Development +512842,Research and Development,Research and Development +512840,Research and Development,Research and Development +512838,Research and Development,Research and Development +511231,Research and Development,Research and Development +511228,Research and Development,Research and Development +511226,Research and Development,Research and Development +511223,Research and Development,Research and Development +511219,Research and Development,Research and Development +511217,Research and Development,Research and Development +511215,Research and Development,Research and Development +511213,Research and Development,Research and Development +511207,Research and Development,Research and Development +511204,Research and Development,Research and Development +511201,Research and Development,Research and Development +511199,Research and Development,Research and Development +511197,Research and Development,Research and Development +511196,Research and Development,Research and Development +511195,Research and Development,Research and Development +511130,Research and Development,Research and Development +511120,Research and Development,Research and Development +507862,Research and Development,Research and Development +507856,Research and Development,Research and Development +504807,Research and Development,Research and Development +504802,Research and Development,Research and Development +504795,Research and Development,Research and Development +504792,Research and Development,Research and Development +504788,Research and Development,Research and Development +504781,Research and Development,Research and Development +498780,Research and Development,Research and Development +498777,Research and Development,Research and Development +498773,Research and Development,Research and Development +498768,Research and Development,Research and Development +498767,Research and Development,Research and Development +498765,Research and Development,Research and Development +498764,Research and Development,Research and Development +498762,Research and Development,Research and Development +498753,Research and Development,Research and Development +498751,Research and Development,Research and Development +498748,Research and Development,Research and Development +498746,Research and Development,Research and Development +498741,Research and Development,Research and Development +494922,Research and Development,Research and Development +494918,Research and Development,Research and Development +494916,Research and Development,Research and Development +494913,Research and Development,Research and Development +494912,Research and Development,Research and Development +494908,Research and Development,Research and Development +489645,Research and Development,Research and Development +484743,Research and Development,Research and Development +374297,Housing,Housing +373278,Housing,Housing +370616,Housing,Housing +537495,Economic Development,Economic Development +537491,Economic Development,Economic Development +537465,Regional Development,Regional Development +383398,Budget,Budget +374852,Budget,Budget +406821,Budget,Budget +383398,Economic Development,Economic Development +374852,Economic Development,Economic Development +411860,Economic Development,Economic Development +406821,Economic Development,Economic Development +391942,Economic Development,Economic Development +383398,Education,Education +374852,Education,Education +366681,Education,Education +411860,Education,Education +406821,Education,Education +391942,Education,Education +383398,Employment and Training,Employment and Training +374852,Employment and Training,Employment and Training +416776,Employment and Training,Employment and Training +411860,Employment and Training,Employment and Training +391942,Employment and Training,Employment and Training +383398,Health,Health +374852,Health,Health +391942,Health,Health +391942,Housing,Housing +391940,Housing,Housing +383398,Housing,Housing +383398,Industry,Industry +374852,Industry,Industry +416776,Infrastructure,Infrastructure +383398,Infrastructure,Infrastructure +383398,Regional Development,Regional Development +374852,Regional Development,Regional Development +416776,Regional Development,Regional Development +391942,Regional Development,Regional Development +372629,International Development,International Development +372624,International Development,International Development +372670,International Development,International Development +372666,International Development,International Development +372665,International Development,International Development +372662,International Development,International Development +372660,International Development,International Development +372657,International Development,International Development +372655,International Development,International Development +372653,International Development,International Development +372650,International Development,International Development +372647,International Development,International Development +372643,International Development,International Development +372640,International Development,International Development +372636,International Development,International Development +372635,International Development,International Development +416546,Financial Institutions,Financial Institutions +370511,Financial Institutions,Financial Institutions +416555,Financial Institutions,Financial Institutions +416551,Financial Institutions,Financial Institutions +381370,Industry,Industry +382342,Consumer Issues,Consumer Issues +381370,Consumer Issues,Consumer Issues +370511,Consumer Issues,Consumer Issues +416555,Consumer Issues,Consumer Issues +416551,Consumer Issues,Consumer Issues +416549,Consumer Issues,Consumer Issues +377149,Taxation and Finance,Taxation and Finance +377148,Taxation and Finance,Taxation and Finance +375005,Taxation and Finance,Taxation and Finance +375004,Taxation and Finance,Taxation and Finance +375003,Taxation and Finance,Taxation and Finance +375002,Taxation and Finance,Taxation and Finance +375001,Taxation and Finance,Taxation and Finance +375000,Taxation and Finance,Taxation and Finance +374999,Taxation and Finance,Taxation and Finance +374985,Taxation and Finance,Taxation and Finance +372817,Taxation and Finance,Taxation and Finance +372816,Taxation and Finance,Taxation and Finance +372815,Taxation and Finance,Taxation and Finance +372814,Taxation and Finance,Taxation and Finance +372813,Taxation and Finance,Taxation and Finance +372812,Taxation and Finance,Taxation and Finance +372811,Taxation and Finance,Taxation and Finance +372810,Taxation and Finance,Taxation and Finance +372809,Taxation and Finance,Taxation and Finance +381638,Taxation and Finance,Taxation and Finance +381637,Taxation and Finance,Taxation and Finance +381636,Taxation and Finance,Taxation and Finance +381635,Taxation and Finance,Taxation and Finance +380063,Taxation and Finance,Taxation and Finance +380062,Taxation and Finance,Taxation and Finance +380061,Taxation and Finance,Taxation and Finance +377157,Taxation and Finance,Taxation and Finance +377156,Taxation and Finance,Taxation and Finance +377155,Taxation and Finance,Taxation and Finance +377154,Taxation and Finance,Taxation and Finance +377153,Taxation and Finance,Taxation and Finance +377152,Taxation and Finance,Taxation and Finance +398903,Health,Health +398902,Health,Health +405010,Health,Health +405009,Health,Health +405002,Health,Health +400478,Health,Health +398914,Health,Health +398913,Health,Health +384794,Taxation and Finance,Taxation and Finance +384792,Taxation and Finance,Taxation and Finance +382898,Taxation and Finance,Taxation and Finance +382100,Taxation and Finance,Taxation and Finance +380107,Taxation and Finance,Taxation and Finance +380106,Taxation and Finance,Taxation and Finance +380105,Taxation and Finance,Taxation and Finance +380104,Taxation and Finance,Taxation and Finance +376102,Taxation and Finance,Taxation and Finance +376099,Taxation and Finance,Taxation and Finance +376098,Taxation and Finance,Taxation and Finance +376095,Taxation and Finance,Taxation and Finance +376093,Taxation and Finance,Taxation and Finance +376092,Taxation and Finance,Taxation and Finance +376090,Taxation and Finance,Taxation and Finance +376087,Taxation and Finance,Taxation and Finance +376085,Taxation and Finance,Taxation and Finance +376084,Taxation and Finance,Taxation and Finance +376083,Taxation and Finance,Taxation and Finance +376081,Taxation and Finance,Taxation and Finance +374920,Taxation and Finance,Taxation and Finance +374918,Taxation and Finance,Taxation and Finance +374917,Taxation and Finance,Taxation and Finance +374914,Taxation and Finance,Taxation and Finance +374913,Taxation and Finance,Taxation and Finance +374909,Taxation and Finance,Taxation and Finance +374907,Taxation and Finance,Taxation and Finance +374905,Taxation and Finance,Taxation and Finance +372519,Taxation and Finance,Taxation and Finance +372516,Taxation and Finance,Taxation and Finance +372515,Taxation and Finance,Taxation and Finance +372512,Taxation and Finance,Taxation and Finance +372510,Taxation and Finance,Taxation and Finance +372509,Taxation and Finance,Taxation and Finance +372506,Taxation and Finance,Taxation and Finance +372504,Taxation and Finance,Taxation and Finance +372502,Taxation and Finance,Taxation and Finance +365409,Taxation and Finance,Taxation and Finance +365408,Taxation and Finance,Taxation and Finance +405010,Taxation and Finance,Taxation and Finance +405009,Taxation and Finance,Taxation and Finance +405002,Taxation and Finance,Taxation and Finance +400478,Taxation and Finance,Taxation and Finance +398914,Taxation and Finance,Taxation and Finance +398913,Taxation and Finance,Taxation and Finance +398905,Taxation and Finance,Taxation and Finance +398903,Taxation and Finance,Taxation and Finance +398902,Taxation and Finance,Taxation and Finance +392621,Taxation and Finance,Taxation and Finance +392617,Taxation and Finance,Taxation and Finance +392615,Taxation and Finance,Taxation and Finance +392611,Taxation and Finance,Taxation and Finance +392608,Taxation and Finance,Taxation and Finance +387165,Taxation and Finance,Taxation and Finance +387164,Taxation and Finance,Taxation and Finance +387162,Taxation and Finance,Taxation and Finance +387159,Taxation and Finance,Taxation and Finance +387158,Taxation and Finance,Taxation and Finance +387156,Taxation and Finance,Taxation and Finance +387155,Taxation and Finance,Taxation and Finance +387153,Taxation and Finance,Taxation and Finance +384805,Taxation and Finance,Taxation and Finance +384804,Taxation and Finance,Taxation and Finance +384800,Taxation and Finance,Taxation and Finance +384799,Taxation and Finance,Taxation and Finance +384798,Taxation and Finance,Taxation and Finance +384797,Taxation and Finance,Taxation and Finance +365507,Government Procurement,Government Procurement +365951,Employment and Training,Employment and Training +375697,Employment and Training,Employment and Training +368157,Employment and Training,Employment and Training +368157,Industry,Industry +365951,Industry,Industry +365953,Infrastructure,Infrastructure +365951,Infrastructure,Infrastructure +392756,Justice and Law Enforcement,Justice and Law Enforcement +392755,Justice and Law Enforcement,Justice and Law Enforcement +372820,Environment,Environment +372819,Environment,Environment +383660,Environment,Environment +383659,Environment,Environment +383656,Environment,Environment +372820,Consumer Issues,Consumer Issues +372819,Consumer Issues,Consumer Issues +383660,Consumer Issues,Consumer Issues +383659,Consumer Issues,Consumer Issues +383656,Consumer Issues,Consumer Issues +372820,Health,Health +372819,Health,Health +383660,Health,Health +383659,Health,Health +383656,Health,Health +372822,Employment and Training,Employment and Training +372818,Employment and Training,Employment and Training +372833,Employment and Training,Employment and Training +372832,Employment and Training,Employment and Training +372831,Employment and Training,Employment and Training +372830,Employment and Training,Employment and Training +372829,Employment and Training,Employment and Training +372828,Employment and Training,Employment and Training +372826,Employment and Training,Employment and Training +372825,Employment and Training,Employment and Training +372822,Taxation and Finance,Taxation and Finance +372818,Taxation and Finance,Taxation and Finance +372833,Taxation and Finance,Taxation and Finance +372832,Taxation and Finance,Taxation and Finance +372831,Taxation and Finance,Taxation and Finance +372830,Taxation and Finance,Taxation and Finance +372829,Taxation and Finance,Taxation and Finance +372828,Taxation and Finance,Taxation and Finance +372826,Taxation and Finance,Taxation and Finance +372825,Taxation and Finance,Taxation and Finance +372822,Intellectual Property,Intellectual Property +372818,Intellectual Property,Intellectual Property +372833,Intellectual Property,Intellectual Property +372832,Intellectual Property,Intellectual Property +372831,Intellectual Property,Intellectual Property +372830,Intellectual Property,Intellectual Property +372829,Intellectual Property,Intellectual Property +372828,Intellectual Property,Intellectual Property +372826,Intellectual Property,Intellectual Property +372825,Intellectual Property,Intellectual Property +372822,Internal Trade,Internal Trade +372818,Internal Trade,Internal Trade +372833,Internal Trade,Internal Trade +372832,Internal Trade,Internal Trade +372831,Internal Trade,Internal Trade +372830,Internal Trade,Internal Trade +372829,Internal Trade,Internal Trade +372828,Internal Trade,Internal Trade +372826,Internal Trade,Internal Trade +372825,Internal Trade,Internal Trade +372818,Industry,Industry +372833,Industry,Industry +372832,Industry,Industry +372831,Industry,Industry +372830,Industry,Industry +372829,Industry,Industry +372828,Industry,Industry +372826,Industry,Industry +372825,Industry,Industry +372824,Industry,Industry +372822,Economic Development,Economic Development +372818,Economic Development,Economic Development +372833,Economic Development,Economic Development +372832,Economic Development,Economic Development +372831,Economic Development,Economic Development +372830,Economic Development,Economic Development +372829,Economic Development,Economic Development +372828,Economic Development,Economic Development +372826,Economic Development,Economic Development +372825,Economic Development,Economic Development +366002,Government Procurement,Government Procurement +437022,Defence,Defence +365505,Defence,Defence +440232,Defence,Defence +375775,Economic Development,Economic Development +375773,Economic Development,Economic Development +365505,Economic Development,Economic Development +440232,Economic Development,Economic Development +437022,Economic Development,Economic Development +437424,Government Procurement,Government Procurement +437022,Government Procurement,Government Procurement +365505,Government Procurement,Government Procurement +437022,International Trade,International Trade +378018,International Trade,International Trade +437424,Research and Development,Research and Development +437022,Research and Development,Research and Development +378018,Research and Development,Research and Development +411388,Security,Security +411385,Security,Security +400151,Security,Security +400146,Security,Security +400143,Security,Security +436928,Security,Security +436927,Security,Security +436926,Security,Security +436925,Security,Security +436924,Security,Security +427589,Security,Security +411397,Security,Security +369111,Climate,Climate +365542,Climate,Climate +387053,Climate,Climate +387049,Climate,Climate +384621,Climate,Climate +375486,Climate,Climate +373602,Climate,Climate +384621,Environment,Environment +375486,Environment,Environment +387053,Environment,Environment +437022,Employment and Training,Employment and Training +365505,Employment and Training,Employment and Training +378251,Transportation,Transportation +367885,Transportation,Transportation +367884,Transportation,Transportation +367880,Transportation,Transportation +367885,International Trade,International Trade +367424,Health,Health +365957,Health,Health +365957,Research and Development,Research and Development +365576,Research and Development,Research and Development +372322,Research and Development,Research and Development +440787,Agriculture,Agriculture +382783,International Trade,International Trade +373668,Taxation and Finance,Taxation and Finance +373667,Taxation and Finance,Taxation and Finance +369462,Transportation,Transports +369458,Transportation,Transports +369471,Transportation,Transports +369470,Transportation,Transports +369469,Transportation,Transports +369466,Transportation,Transports +427436,Agriculture,Agriculture +420463,Agriculture,Agriculture +373164,Agriculture,Agriculture +465285,Agriculture,Agriculture +461425,Agriculture,Agriculture +496775,Financial Institutions,Financial Institutions +494366,Financial Institutions,Financial Institutions +386620,Financial Institutions,Financial Institutions +386616,Financial Institutions,Financial Institutions +378338,Financial Institutions,Financial Institutions +378048,Financial Institutions,Financial Institutions +377513,Financial Institutions,Financial Institutions +375361,Financial Institutions,Financial Institutions +373253,Financial Institutions,Financial Institutions +373172,Financial Institutions,Financial Institutions +373166,Financial Institutions,Financial Institutions +373164,Financial Institutions,Financial Institutions +373161,Financial Institutions,Financial Institutions +368575,Financial Institutions,Financial Institutions +368566,Financial Institutions,Financial Institutions +368562,Financial Institutions,Financial Institutions +368486,Financial Institutions,Financial Institutions +488946,Financial Institutions,Financial Institutions +486530,Financial Institutions,Financial Institutions +483761,Financial Institutions,Financial Institutions +482846,Financial Institutions,Financial Institutions +473677,Financial Institutions,Financial Institutions +473676,Financial Institutions,Financial Institutions +473675,Financial Institutions,Financial Institutions +473674,Financial Institutions,Financial Institutions +473672,Financial Institutions,Financial Institutions +473671,Financial Institutions,Financial Institutions +472979,Financial Institutions,Financial Institutions +471035,Financial Institutions,Financial Institutions +471027,Financial Institutions,Financial Institutions +468881,Financial Institutions,Financial Institutions +468861,Financial Institutions,Financial Institutions +468860,Financial Institutions,Financial Institutions +365106,International Trade,International Trade +366564,Taxation and Finance,Taxation and Finance +366564,International Trade,International Trade +383700,Financial Institutions,Financial Institutions +383700,Housing,Housing +383700,Taxation and Finance,Taxation and Finance +463776,Economic Development,Economic Development +455712,Housing,Housing +412916,Infrastructure,Infrastructure +538402,Regional Development,Regional Development +378250,Environment,Environment +378248,International Relations,International Relations +379227,Environment,Environment +513665,Infrastructure,Infrastructure +384949,Transportation,Transportation +386249,Economic Development,Développement économique +386249,Taxation and Finance,Impôts et finances +401655,Industry,Industrie +373114,Health,Santé +464027,Economic Development,Economic Development +470204,Housing,Housing +375518,Infrastructure,Infrastructure +463932,Municipalities,Municipalities +464040,Regional Development,Regional Development +364843,Environment,Environment +369951,Climate,Climate +369951,Employment and Training,Employment and Training +369951,Energy,Energy +427618,Environment,Environment +369954,Infrastructure,Infrastructure +369954,Research and Development,Research and Development +380756,Agriculture,Agriculture +419094,International Trade,International Trade +369396,Infrastructure,Infrastructure +369396,International Trade,International Trade +414440,Agriculture,Agriculture +463193,Environment,Environment +463193,International Development,International Development +414441,Research and Development,Research and Development +364310,Industry,Industry +364311,Industry,Industry +371351,Education,Education +371351,Immigration,Immigration +366382,Infrastructure,Infrastructure +372978,Taxation and Finance,Taxation and Finance +365073,Regional Development,Regional Development +365074,Fisheries,Fisheries +387266,International Relations,International Relations +365073,Labour,Labour +365073,Environment,Environment +387260,Mining,Mining +489216,Budget,Budget +489216,Education,Education +488589,Health,Health +411261,Sports,Sports +463369,Taxation and Finance,Taxation and Finance +366671,Taxation and Finance,Taxation and Finance +367631,Budget,Budget +367634,Education,Education +367633,Health,Health +367633,Research and Development,Research and Development +367633,Sports,Sports +401363,International Trade,International Trade +370903,Health,Health +379283,Health,Health +383972,Budget,Budget +367639,Education,Education +367639,Sports,Sports +367604,Health,Health +383974,Taxation and Finance,Taxation and Finance +370483,Economic Development,Economic Development +370483,Government Procurement,Government Procurement +370483,Industry,Industry +370483,Security,Security +370483,Small Business,Small Business +370483,Taxation and Finance,Taxation and Finance +370483,Tourism,Tourism +370483,Transportation,Transportation +380318,Financial Institutions,Financial Institutions +380318,International Trade,International Trade +380318,Pensions,Pensions +371419,Taxation and Finance,Taxation and Finance +379208,Defence,Defence +379256,Industry,Industry +379208,International Trade,International Trade +377377,Climate,Climate +377377,Environment,Environment +377377,Fisheries,Fisheries +370519,Economic Development,Economic Development +536936,Education,Education +536936,Employment and Training,Employment and Training +516741,Infrastructure,Infrastructure +389648,Research and Development,Research and Development +367904,Regional Development,Regional Development +367904,Fisheries,Fisheries +367904,Economic Development,Economic Development +389034,Consumer Issues,Consumer Issues +399210,Economic Development,Economic Development +389034,Energy,Energy +386138,Financial Institutions,Financial Institutions +399206,Industry,Industry +389035,International Development,International Development +386138,International Trade,International Trade +374487,Environment,Environment +374496,Regional Development,Regional Development +374487,Fisheries,Fisheries +374487,Labour,Labour +374487,Mining,Mining +366368,Transportation,Transportation +366567,Economic Development,Economic Development +366567,Energy,Energy +370056,Transportation,Transports +368125,Constitutional Issues,Constitutional Issues +371607,International Trade,International Trade +371607,Defence,Defence +369681,Infrastructure,Infrastructure +429506,Climate,Climate +520272,Environment,Environment +374063,Agriculture,Agriculture +374063,Health,Health +388914,Justice and Law Enforcement,Justice and Law Enforcement +364763,Labour,Labour +392187,Economic Development,Economic Development +429909,Environment,Environment +429909,Mining,Mining +429909,Regional Development,Regional Development +389489,Infrastructure,Infrastructure +364797,Transportation,Transportation +369008,Municipalities,Municipalities +364895,Regional Development,Regional Development +394197,Transportation,Transportation +464929,Industry,Industry +371313,Infrastructure,Infrastructure +427365,Consumer Issues,Consumer Issues +364881,Climate,Climate +364881,Environment,Environment +364881,Infrastructure,Infrastructure +364881,Municipalities,Municipalities +365398,Infrastructure,Infrastructure +364882,Municipalities,Municipalities +389525,Environment,Environment +374050,Agriculture,Agriculture +374050,Health,Health +374050,Industry,Industry +398307,International Relations,International Relations +381459,Education,Education +381459,Employment and Training,Employment and Training +365007,Immigration,Immigration +489645,Climate,Climate +484721,Economic Development,Economic Development +484735,Research and Development,Research and Development +369152,Housing,Housing +374297,Taxation and Finance,Taxation and Finance +537487,Climate,Climate +537502,Economic Development,Economic Development +537487,Energy,Energy +537502,Infrastructure,Infrastructure +537495,Regional Development,Regional Development +391942,Budget,Budget +391940,Economic Development,Economic Development +391940,Education,Education +391940,Employment and Training,Employment and Training +391940,Health,Health +416776,Housing,Housing +391940,Industry,Industry +374852,Infrastructure,Infrastructure +391940,Regional Development,Regional Development +365216,Research and Development,Research and Development +365217,Research and Development,Research and Development +366330,Regional Development,Regional Development +372631,International Development,International Development +416549,Financial Institutions,Financial Institutions +416549,Small Business,Small Business +382342,Industry,Industry +416546,Consumer Issues,Consumer Issues +366088,Employment and Training,Employment and Training +366088,Immigration,Immigration +395978,Energy,Energy +377150,Taxation and Finance,Taxation and Finance +365509,Government Procurement,Government Procurement +398905,Health,Health +384795,Taxation and Finance,Taxation and Finance +365702,Government Procurement,Government Procurement +365953,Employment and Training,Employment and Training +365953,Housing,Housing +365953,Immigration,Immigration +374147,Industry,Industry +382538,Infrastructure,Infrastructure +392757,Justice and Law Enforcement,Justice and Law Enforcement +383653,Environment,Environment +383653,Consumer Issues,Consumer Issues +383653,Health,Health +372824,Employment and Training,Employment and Training +372824,Taxation and Finance,Taxation and Finance +372824,Intellectual Property,Intellectual Property +372824,Internal Trade,Internal Trade +372822,Industry,Industry +372824,Economic Development,Economic Development +368234,Government Procurement,Government Procurement +437424,Defence,Defence +378018,Economic Development,Economic Development +440232,Government Procurement,Government Procurement +365505,International Trade,International Trade +365505,Research and Development,Research and Development +365505,Security,Security +411395,Security,Security +366364,Financial Institutions,Financial Institutions +369119,Climate,Climate +387049,Environment,Environment +437424,Employment and Training,Employment and Training +365507,Economic Development,Economic Development +365507,Defence,Defence +365509,Defence,Defence +365509,Economic Development,Economic Development +378252,Immigration,Immigration +378252,Industry,Industry +378252,Transportation,Transportation +378252,International Trade,International Trade +372322,Health,Health +367424,Research and Development,Research and Development +382783,Agriculture,Agriculture +440787,International Trade,International Trade +440787,Small Business,Small Business +370503,Taxation and Finance,Taxation and Finance +370503,Health,Health +369464,Transportation,Transports +366596,Taxation and Finance,Impôts et finances +433369,Agriculture,Agriculture +368562,Budget,Budget +497071,Financial Institutions,Financial Institutions +488946,Small Business,Small Business +498357,Taxation and Finance,Taxation and Finance +408217,Environment,Environment +395251,Environment,Environment +384018,Infrastructure,Infrastructure +516081,Climate,Climate +440296,Environment,Environment +400164,Environment,Environment +423094,International Relations,International Relations +403536,Government Procurement,Government Procurement +372209,Justice and Law Enforcement,Justice and Law Enforcement +389457,Health,Health +378125,Justice and Law Enforcement,Justice and Law Enforcement +367325,Justice and Law Enforcement,Justice and Law Enforcement +378123,Health,Health +386230,Justice and Law Enforcement,Justice and Law Enforcement +425675,Infrastructure,Infrastructure +373064,Justice and Law Enforcement,Justice and Law Enforcement +369723,Mining,Mining +426369,International Trade,International Trade +426369,Agriculture,Agriculture +426369,Health,Health +426369,Consumer Issues,Consumer Issues +468859,Financial Institutions,Financial Institutions +468856,Financial Institutions,Financial Institutions +468633,Financial Institutions,Financial Institutions +468629,Financial Institutions,Financial Institutions +468628,Financial Institutions,Financial Institutions +468626,Financial Institutions,Financial Institutions +463676,Financial Institutions,Financial Institutions +463123,Financial Institutions,Financial Institutions +461424,Financial Institutions,Financial Institutions +459902,Financial Institutions,Financial Institutions +459806,Financial Institutions,Financial Institutions +458963,Financial Institutions,Financial Institutions +458181,Financial Institutions,Financial Institutions +456389,Financial Institutions,Financial Institutions +456387,Financial Institutions,Financial Institutions +454724,Financial Institutions,Financial Institutions +448554,Financial Institutions,Financial Institutions +444239,Financial Institutions,Financial Institutions +442897,Financial Institutions,Financial Institutions +441001,Financial Institutions,Financial Institutions +440740,Financial Institutions,Financial Institutions +439836,Financial Institutions,Financial Institutions +439832,Financial Institutions,Financial Institutions +439831,Financial Institutions,Financial Institutions +439830,Financial Institutions,Financial Institutions +436503,Financial Institutions,Financial Institutions +436323,Financial Institutions,Financial Institutions +433369,Financial Institutions,Financial Institutions +431979,Financial Institutions,Financial Institutions +431959,Financial Institutions,Financial Institutions +427262,Financial Institutions,Financial Institutions +427261,Financial Institutions,Financial Institutions +427260,Financial Institutions,Financial Institutions +423569,Financial Institutions,Financial Institutions +419487,Financial Institutions,Financial Institutions +419159,Financial Institutions,Financial Institutions +419100,Financial Institutions,Financial Institutions +418728,Financial Institutions,Financial Institutions +418438,Financial Institutions,Financial Institutions +417295,Financial Institutions,Financial Institutions +416468,Financial Institutions,Financial Institutions +411528,Financial Institutions,Financial Institutions +411166,Financial Institutions,Financial Institutions +411051,Financial Institutions,Financial Institutions +410777,Financial Institutions,Financial Institutions +410731,Financial Institutions,Financial Institutions +409023,Financial Institutions,Financial Institutions +408742,Financial Institutions,Financial Institutions +408672,Financial Institutions,Financial Institutions +408670,Financial Institutions,Financial Institutions +407164,Financial Institutions,Financial Institutions +406258,Financial Institutions,Financial Institutions +406257,Financial Institutions,Financial Institutions +405096,Financial Institutions,Financial Institutions +405094,Financial Institutions,Financial Institutions +405093,Financial Institutions,Financial Institutions +404122,Financial Institutions,Financial Institutions +402793,Financial Institutions,Financial Institutions +402701,Financial Institutions,Financial Institutions +398689,Financial Institutions,Financial Institutions +394763,Financial Institutions,Financial Institutions +394450,Financial Institutions,Financial Institutions +393285,Financial Institutions,Financial Institutions +386629,Financial Institutions,Financial Institutions +386628,Financial Institutions,Financial Institutions +386627,Financial Institutions,Financial Institutions +540540,Financial Institutions,Financial Institutions +532657,Financial Institutions,Financial Institutions +527423,Financial Institutions,Financial Institutions +521909,Financial Institutions,Financial Institutions +521430,Financial Institutions,Financial Institutions +518843,Financial Institutions,Financial Institutions +518738,Financial Institutions,Financial Institutions +516450,Financial Institutions,Financial Institutions +516449,Financial Institutions,Financial Institutions +516447,Financial Institutions,Financial Institutions +515165,Financial Institutions,Financial Institutions +515164,Financial Institutions,Financial Institutions +515163,Financial Institutions,Financial Institutions +515161,Financial Institutions,Financial Institutions +515061,Financial Institutions,Financial Institutions +514889,Financial Institutions,Financial Institutions +514888,Financial Institutions,Financial Institutions +514887,Financial Institutions,Financial Institutions +513505,Financial Institutions,Financial Institutions +503135,Financial Institutions,Financial Institutions +501329,Financial Institutions,Financial Institutions +501007,Financial Institutions,Financial Institutions +500024,Financial Institutions,Financial Institutions +498425,Financial Institutions,Financial Institutions +498422,Financial Institutions,Financial Institutions +498421,Financial Institutions,Financial Institutions +498414,Financial Institutions,Financial Institutions +498406,Financial Institutions,Financial Institutions +498373,Financial Institutions,Financial Institutions +498370,Financial Institutions,Financial Institutions +498369,Financial Institutions,Financial Institutions +498368,Financial Institutions,Financial Institutions +498357,Financial Institutions,Financial Institutions +498085,Financial Institutions,Financial Institutions +483761,Small Business,Small Business +482846,Small Business,Small Business +436503,Small Business,Small Business +518738,Small Business,Small Business +516450,Small Business,Small Business +516449,Small Business,Small Business +516447,Small Business,Small Business +515165,Small Business,Small Business +515164,Small Business,Small Business +515163,Small Business,Small Business +515161,Small Business,Small Business +514889,Small Business,Small Business +514888,Small Business,Small Business +514887,Small Business,Small Business +498085,Small Business,Small Business +497071,Taxation and Finance,Taxation and Finance +496775,Taxation and Finance,Taxation and Finance +368562,Taxation and Finance,Taxation and Finance +540540,Taxation and Finance,Taxation and Finance +503135,Taxation and Finance,Taxation and Finance +500024,Taxation and Finance,Taxation and Finance +498425,Taxation and Finance,Taxation and Finance +498422,Taxation and Finance,Taxation and Finance +498421,Taxation and Finance,Taxation and Finance +498414,Taxation and Finance,Taxation and Finance +498406,Taxation and Finance,Taxation and Finance +498373,Taxation and Finance,Taxation and Finance +498370,Taxation and Finance,Taxation and Finance +498369,Taxation and Finance,Taxation and Finance +498368,Taxation and Finance,Taxation and Finance +398123,Environment,Environment +398119,Environment,Environment +395336,Environment,Environment +393062,Environment,Environment +384014,Environment,Environment +378448,Environment,Environment +378447,Environment,Environment +377337,Environment,Environment +375038,Environment,Environment +370950,Environment,Environment +370710,Environment,Environment +365623,Environment,Environment +541003,Environment,Environment +538702,Environment,Environment +536538,Environment,Environment +524306,Environment,Environment +520909,Environment,Environment +520763,Environment,Environment +516544,Environment,Environment +516084,Environment,Environment +515317,Environment,Environment +506637,Environment,Environment +498700,Environment,Environment +494856,Environment,Environment +484904,Environment,Environment +483246,Environment,Environment +482898,Environment,Environment +482719,Environment,Environment +482712,Environment,Environment +480835,Environment,Environment +480395,Environment,Environment +478637,Environment,Environment +476934,Environment,Environment +476276,Environment,Environment +471289,Environment,Environment +466484,Environment,Environment +465355,Environment,Environment +463141,Environment,Environment +462917,Environment,Environment +462845,Environment,Environment +462831,Environment,Environment +461102,Environment,Environment +461009,Environment,Environment +460951,Environment,Environment +460950,Environment,Environment +460872,Environment,Environment +460848,Environment,Environment +460841,Environment,Environment +460747,Environment,Environment +460746,Environment,Environment +457940,Environment,Environment +456216,Environment,Environment +453601,Environment,Environment +453119,Environment,Environment +449796,Environment,Environment +449794,Environment,Environment +449793,Environment,Environment +449792,Environment,Environment +449791,Environment,Environment +444398,Environment,Environment +432740,Environment,Environment +432739,Environment,Environment +432462,Environment,Environment +431986,Environment,Environment +425232,Environment,Environment +424609,Environment,Environment +418486,Environment,Environment +418485,Environment,Environment +411819,Environment,Environment +392342,Environment,Environment +386166,Environment,Environment +386165,Environment,Environment +386164,Environment,Environment +386163,Environment,Environment +384018,Environment,Environment +384017,Environment,Environment +381784,Environment,Environment +375765,Environment,Environment +375033,Environment,Environment +370951,Environment,Environment +365625,Environment,Environment +410604,Environment,Environment +398125,Environment,Environment +398122,Environment,Environment +384017,Infrastructure,Infrastructure +381784,Infrastructure,Infrastructure +375765,Infrastructure,Infrastructure +375040,Infrastructure,Infrastructure +375033,Infrastructure,Infrastructure +370951,Infrastructure,Infrastructure +410604,Infrastructure,Infrastructure +398125,Infrastructure,Infrastructure +398122,Infrastructure,Infrastructure +395251,Infrastructure,Infrastructure +392342,Infrastructure,Infrastructure +386166,Infrastructure,Infrastructure +386165,Infrastructure,Infrastructure +386164,Infrastructure,Infrastructure +386163,Infrastructure,Infrastructure +515316,Climate,Climate +515314,Climate,Climate +365624,Climate,Climate +511809,Climate,Climate +506297,Climate,Climate +500125,Climate,Climate +494852,Climate,Climate +494073,Climate,Climate +482716,Climate,Climate +481210,Climate,Climate +466485,Climate,Climate +463602,Climate,Climate +463140,Climate,Climate +462915,Climate,Climate +462830,Climate,Climate +461099,Climate,Climate +461007,Climate,Climate +460888,Climate,Climate +460887,Climate,Climate +460838,Climate,Climate +460743,Climate,Climate +460742,Climate,Climate +457863,Climate,Climate +456215,Climate,Climate +440296,Climate,Climate +436594,Climate,Climate +436584,Climate,Climate +384020,Climate,Climate +532929,Climate,Climate +532927,Climate,Climate +527417,Climate,Climate +524712,Climate,Climate +524305,Climate,Climate +524248,Climate,Climate +523430,Climate,Climate +520764,Climate,Climate +520760,Climate,Climate +520757,Climate,Climate +518644,Climate,Climate +516949,Climate,Climate +436594,Environment,Environment +436584,Environment,Environment +384020,Environment,Environment +365624,Environment,Environment +532929,Environment,Environment +532927,Environment,Environment +527417,Environment,Environment +524712,Environment,Environment +524305,Environment,Environment +524248,Environment,Environment +523430,Environment,Environment +520764,Environment,Environment +520760,Environment,Environment +520757,Environment,Environment +518644,Environment,Environment +516949,Environment,Environment +516081,Environment,Environment +515316,Environment,Environment +515314,Environment,Environment +511809,Environment,Environment +506297,Environment,Environment +500125,Environment,Environment +494852,Environment,Environment +494073,Environment,Environment +482716,Environment,Environment +481210,Environment,Environment +466485,Environment,Environment +463602,Environment,Environment +463140,Environment,Environment +462915,Environment,Environment +462830,Environment,Environment +461099,Environment,Environment +461007,Environment,Environment +460888,Environment,Environment +460887,Environment,Environment +460838,Environment,Environment +460743,Environment,Environment +460742,Environment,Environment +457863,Environment,Environment +456215,Environment,Environment +400161,Environment,Environment +400159,Environment,Environment +375527,Environment,Environment +375526,Environment,Environment +375524,Environment,Environment +423094,Environment,Environment +423093,Environment,Environment +423092,Environment,Environment +404481,Environment,Environment +400166,Environment,Environment +423093,International Relations,International Relations +423092,International Relations,International Relations +392656,Government Procurement,Government Procurement +392640,Government Procurement,Government Procurement +422948,Justice and Law Enforcement,Justice and Law Enforcement +393111,Justice and Law Enforcement,Justice and Law Enforcement +372213,Justice and Law Enforcement,Justice and Law Enforcement +386236,Health,Health +386235,Health,Health +386234,Health,Health +382475,Health,Health +382043,Health,Health +378125,Health,Health +378124,Health,Health +377222,Health,Health +395807,Health,Health +389851,Health,Health +389850,Health,Health +378124,Justice and Law Enforcement,Justice and Law Enforcement +377222,Justice and Law Enforcement,Justice and Law Enforcement +395807,Justice and Law Enforcement,Justice and Law Enforcement +389851,Justice and Law Enforcement,Justice and Law Enforcement +389850,Justice and Law Enforcement,Justice and Law Enforcement +389457,Justice and Law Enforcement,Justice and Law Enforcement +386236,Justice and Law Enforcement,Justice and Law Enforcement +386235,Justice and Law Enforcement,Justice and Law Enforcement +386234,Justice and Law Enforcement,Justice and Law Enforcement +382475,Justice and Law Enforcement,Justice and Law Enforcement +382043,Justice and Law Enforcement,Justice and Law Enforcement +378121,Health,Health +377221,Health,Health +395806,Health,Health +389456,Health,Health +386232,Health,Health +386231,Health,Health +386230,Health,Health +382474,Health,Health +382042,Health,Health +382474,Justice and Law Enforcement,Justice and Law Enforcement +382042,Justice and Law Enforcement,Justice and Law Enforcement +378123,Justice and Law Enforcement,Justice and Law Enforcement +378121,Justice and Law Enforcement,Justice and Law Enforcement +377221,Justice and Law Enforcement,Justice and Law Enforcement +395806,Justice and Law Enforcement,Justice and Law Enforcement +389456,Justice and Law Enforcement,Justice and Law Enforcement +386232,Justice and Law Enforcement,Justice and Law Enforcement +386231,Justice and Law Enforcement,Justice and Law Enforcement +425673,Infrastructure,Infrastructure +418844,Infrastructure,Infrastructure +399955,Infrastructure,Infrastructure +399953,Infrastructure,Infrastructure +399952,Infrastructure,Infrastructure +399950,Infrastructure,Infrastructure +399949,Infrastructure,Infrastructure +399948,Infrastructure,Infrastructure +399947,Infrastructure,Infrastructure +399946,Infrastructure,Infrastructure +399945,Infrastructure,Infrastructure +399941,Infrastructure,Infrastructure +399940,Infrastructure,Infrastructure +386802,Infrastructure,Infrastructure +384858,Infrastructure,Infrastructure +383246,Infrastructure,Infrastructure +382079,Infrastructure,Infrastructure +380593,Infrastructure,Infrastructure +375995,Infrastructure,Infrastructure +375958,Infrastructure,Infrastructure +375957,Infrastructure,Infrastructure +375956,Infrastructure,Infrastructure +375955,Infrastructure,Infrastructure +375954,Infrastructure,Infrastructure +375953,Infrastructure,Infrastructure +375952,Infrastructure,Infrastructure +375950,Infrastructure,Infrastructure +375948,Infrastructure,Infrastructure +375947,Infrastructure,Infrastructure +375945,Infrastructure,Infrastructure +375939,Infrastructure,Infrastructure +375937,Infrastructure,Infrastructure +375936,Infrastructure,Infrastructure +375933,Infrastructure,Infrastructure +375932,Infrastructure,Infrastructure +375931,Infrastructure,Infrastructure +375930,Infrastructure,Infrastructure +375928,Infrastructure,Infrastructure +375927,Infrastructure,Infrastructure +375925,Infrastructure,Infrastructure +375924,Infrastructure,Infrastructure +375917,Infrastructure,Infrastructure +371436,Infrastructure,Infrastructure +371434,Infrastructure,Infrastructure +371432,Infrastructure,Infrastructure +368466,Infrastructure,Infrastructure +368463,Infrastructure,Infrastructure +368443,Infrastructure,Infrastructure +507513,Infrastructure,Infrastructure +494879,Infrastructure,Infrastructure +489671,Infrastructure,Infrastructure +460904,Infrastructure,Infrastructure +457967,Infrastructure,Infrastructure +425696,Infrastructure,Infrastructure +425695,Infrastructure,Infrastructure +425693,Infrastructure,Infrastructure +425692,Infrastructure,Infrastructure +425691,Infrastructure,Infrastructure +425690,Infrastructure,Infrastructure +425689,Infrastructure,Infrastructure +425688,Infrastructure,Infrastructure +425687,Infrastructure,Infrastructure +425686,Infrastructure,Infrastructure +425684,Infrastructure,Infrastructure +425683,Infrastructure,Infrastructure +425682,Infrastructure,Infrastructure +425678,Infrastructure,Infrastructure +425677,Infrastructure,Infrastructure +373058,Justice and Law Enforcement,Justice and Law Enforcement +426367,International Trade,International Trade +426365,International Trade,International Trade +366731,International Trade,International Trade +448996,International Trade,International Trade +448995,International Trade,International Trade +448994,International Trade,International Trade +426367,Agriculture,Agriculture +426365,Agriculture,Agriculture +366731,Agriculture,Agriculture +448996,Agriculture,Agriculture +448995,Agriculture,Agriculture +448994,Agriculture,Agriculture +426367,Health,Health +426365,Health,Health +448996,Health,Health +448995,Health,Health +448994,Health,Health +426367,Consumer Issues,Consumer Issues +426365,Consumer Issues,Consumer Issues +448996,Consumer Issues,Consumer Issues +448995,Consumer Issues,Consumer Issues +448994,Consumer Issues,Consumer Issues +310650,Telecommunications,Telecommunications +305449,Telecommunications,Telecommunications +305349,Telecommunications,Telecommunications +309671,Telecommunications,Telecommunications +309670,Telecommunications,Telecommunications +311076,Broadcasting,Broadcasting +311074,Broadcasting,Broadcasting +351512,Broadcasting,Broadcasting +330019,Broadcasting,Broadcasting +327615,Broadcasting,Broadcasting +322272,Broadcasting,Broadcasting +319034,Broadcasting,Broadcasting +387316,Aboriginal Affairs,Aboriginal Affairs +340452,Aboriginal Affairs,Aboriginal Affairs +303330,Aboriginal Affairs,Aboriginal Affairs +303321,Aboriginal Affairs,Aboriginal Affairs +323219,Aboriginal Affairs,Aboriginal Affairs +323218,Aboriginal Affairs,Aboriginal Affairs +323217,Aboriginal Affairs,Aboriginal Affairs +323214,Aboriginal Affairs,Aboriginal Affairs +318250,Aboriginal Affairs,Aboriginal Affairs +318249,Aboriginal Affairs,Aboriginal Affairs +303431,Aboriginal Affairs,Aboriginal Affairs +513677,Science and Technology,Science and Technology +482642,Science and Technology,Science and Technology +389890,Science and Technology,Science and Technology +357863,Science and Technology,Science and Technology +355758,Science and Technology,Science and Technology +310451,Science and Technology,Science and Technology +303573,Science and Technology,Science and Technology +303569,Science and Technology,Science and Technology +483328,Science and Technology,Science and Technology +454067,Science and Technology,Science and Technology +304109,Aboriginal Affairs,Aboriginal Affairs +313971,Aboriginal Affairs,Aboriginal Affairs +309900,Aboriginal Affairs,Aboriginal Affairs +304149,Aboriginal Affairs,Aboriginal Affairs +304129,Aboriginal Affairs,Aboriginal Affairs +310282,Aboriginal Affairs,Aboriginal Affairs +310281,Aboriginal Affairs,Aboriginal Affairs +330788,Telecommunications,Telecommunications +330724,Telecommunications,Telecommunications +332430,Telecommunications,Telecommunications +316118,Science and Technology,Science and Technology +319817,Science and Technology,Science and Technology +319815,Science and Technology,Science and Technology +319813,Science and Technology,Science and Technology +531000,Aboriginal Affairs,Aboriginal Affairs +513828,Aboriginal Affairs,Aboriginal Affairs +357049,Aboriginal Affairs,Aboriginal Affairs +343357,Aboriginal Affairs,Aboriginal Affairs +398842,Aboriginal Affairs,Aboriginal Affairs +385194,Aboriginal Affairs,Aboriginal Affairs +507939,Aboriginal Affairs,Aboriginal Affairs +494979,Aboriginal Affairs,Aboriginal Affairs +492894,Aboriginal Affairs,Aboriginal Affairs +482213,Aboriginal Affairs,Aboriginal Affairs +482212,Aboriginal Affairs,Aboriginal Affairs +479861,Aboriginal Affairs,Aboriginal Affairs +479860,Aboriginal Affairs,Aboriginal Affairs +477315,Aboriginal Affairs,Aboriginal Affairs +467353,Aboriginal Affairs,Aboriginal Affairs +460104,Aboriginal Affairs,Aboriginal Affairs +455545,Aboriginal Affairs,Aboriginal Affairs +455542,Aboriginal Affairs,Aboriginal Affairs +455541,Aboriginal Affairs,Aboriginal Affairs +455540,Aboriginal Affairs,Aboriginal Affairs +451546,Aboriginal Affairs,Aboriginal Affairs +443576,Aboriginal Affairs,Aboriginal Affairs +443569,Aboriginal Affairs,Aboriginal Affairs +442215,Aboriginal Affairs,Aboriginal Affairs +438434,Aboriginal Affairs,Aboriginal Affairs +438431,Aboriginal Affairs,Aboriginal Affairs +438421,Aboriginal Affairs,Aboriginal Affairs +435532,Aboriginal Affairs,Aboriginal Affairs +430736,Aboriginal Affairs,Aboriginal Affairs +430731,Aboriginal Affairs,Aboriginal Affairs +426422,Aboriginal Affairs,Aboriginal Affairs +426420,Aboriginal Affairs,Aboriginal Affairs +426419,Aboriginal Affairs,Aboriginal Affairs +426417,Aboriginal Affairs,Aboriginal Affairs +426415,Aboriginal Affairs,Aboriginal Affairs +426413,Aboriginal Affairs,Aboriginal Affairs +426412,Aboriginal Affairs,Aboriginal Affairs +426411,Aboriginal Affairs,Aboriginal Affairs +426409,Aboriginal Affairs,Aboriginal Affairs +426406,Aboriginal Affairs,Aboriginal Affairs +426404,Aboriginal Affairs,Aboriginal Affairs +426403,Aboriginal Affairs,Aboriginal Affairs +426402,Aboriginal Affairs,Aboriginal Affairs +426399,Aboriginal Affairs,Aboriginal Affairs +426396,Aboriginal Affairs,Aboriginal Affairs +426394,Aboriginal Affairs,Aboriginal Affairs +426391,Aboriginal Affairs,Aboriginal Affairs +426386,Aboriginal Affairs,Aboriginal Affairs +426385,Aboriginal Affairs,Aboriginal Affairs +425950,Aboriginal Affairs,Aboriginal Affairs +425947,Aboriginal Affairs,Aboriginal Affairs +425946,Aboriginal Affairs,Aboriginal Affairs +422708,Aboriginal Affairs,Aboriginal Affairs +415853,Aboriginal Affairs,Aboriginal Affairs +442882,Arts and Culture,Arts and Culture +437974,Arts and Culture,Arts and Culture +426363,Arts and Culture,Arts and Culture +418983,Arts and Culture,Arts and Culture +413287,Arts and Culture,Arts and Culture +406999,Arts and Culture,Arts and Culture +406994,Arts and Culture,Arts and Culture +395641,Arts and Culture,Arts and Culture +395636,Arts and Culture,Arts and Culture +367627,Arts and Culture,Arts and Culture +336939,Arts and Culture,Arts and Culture +543064,Arts and Culture,Arts and Culture +514508,Arts and Culture,Arts and Culture +509697,Arts and Culture,Arts and Culture +507183,Arts and Culture,Arts and Culture +503541,Arts and Culture,Arts and Culture +503540,Arts and Culture,Arts and Culture +503539,Arts and Culture,Arts and Culture +500566,Arts and Culture,Arts and Culture +497278,Arts and Culture,Arts and Culture +497277,Arts and Culture,Arts and Culture +489692,Arts and Culture,Arts and Culture +488617,Arts and Culture,Arts and Culture +484099,Arts and Culture,Arts and Culture +484096,Arts and Culture,Arts and Culture +484090,Arts and Culture,Arts and Culture +484089,Arts and Culture,Arts and Culture +484087,Arts and Culture,Arts and Culture +484086,Arts and Culture,Arts and Culture +482590,Arts and Culture,Arts and Culture +482589,Arts and Culture,Arts and Culture +482588,Arts and Culture,Arts and Culture +482587,Arts and Culture,Arts and Culture +482585,Arts and Culture,Arts and Culture +482582,Arts and Culture,Arts and Culture +466655,Arts and Culture,Arts and Culture +466654,Arts and Culture,Arts and Culture +466652,Arts and Culture,Arts and Culture +463367,Arts and Culture,Arts and Culture +463300,Arts and Culture,Arts and Culture +463299,Arts and Culture,Arts and Culture +463297,Arts and Culture,Arts and Culture +458213,Arts and Culture,Arts and Culture +457100,Arts and Culture,Arts and Culture +457099,Arts and Culture,Arts and Culture +457098,Arts and Culture,Arts and Culture +447109,Arts and Culture,Arts and Culture +447108,Arts and Culture,Arts and Culture +447107,Arts and Culture,Arts and Culture +447105,Arts and Culture,Arts and Culture +445103,Arts and Culture,Arts and Culture +445100,Arts and Culture,Arts and Culture +443345,Arts and Culture,Arts and Culture +506961,Science and Technology,Science and Technology +461025,Science and Technology,Science and Technology +453715,Science and Technology,Science and Technology +439801,Science and Technology,Science and Technology +438880,Science and Technology,Science and Technology +414912,Science and Technology,Science and Technology +414911,Science and Technology,Science and Technology +414910,Science and Technology,Science and Technology +414909,Science and Technology,Science and Technology +414908,Science and Technology,Science and Technology +414904,Science and Technology,Science and Technology +414903,Science and Technology,Science and Technology +414902,Science and Technology,Science and Technology +414901,Science and Technology,Science and Technology +411513,Science and Technology,Science and Technology +404288,Science and Technology,Science and Technology +385945,Science and Technology,Science and Technology +523286,Science and Technology,Science and Technology +523285,Science and Technology,Science and Technology +523283,Science and Technology,Science and Technology +523279,Science and Technology,Science and Technology +523276,Science and Technology,Science and Technology +509318,Science and Technology,Science and Technology +509317,Science and Technology,Science and Technology +509316,Science and Technology,Science and Technology +509315,Science and Technology,Science and Technology +485458,Arts and Culture,Arts et culture +475012,Arts and Culture,Arts et culture +373280,Arts and Culture,Arts et culture +371843,Arts and Culture,Arts et culture +459059,Arts and Culture,Arts et culture +459046,Arts and Culture,Arts et culture +492027,Arts and Culture,Arts et culture +488646,Arts and Culture,Arts et culture +315110,Science and Technology,Science and Technology +315109,Science and Technology,Science and Technology +315113,Science and Technology,Science and Technology +315112,Science and Technology,Science and Technology +517242,Aboriginal Affairs,Aboriginal Affairs +501917,Aboriginal Affairs,Aboriginal Affairs +381558,Aboriginal Affairs,Aboriginal Affairs +381557,Aboriginal Affairs,Aboriginal Affairs +381555,Aboriginal Affairs,Aboriginal Affairs +381553,Aboriginal Affairs,Aboriginal Affairs +381551,Aboriginal Affairs,Aboriginal Affairs +381549,Aboriginal Affairs,Aboriginal Affairs +379031,Aboriginal Affairs,Aboriginal Affairs +379030,Aboriginal Affairs,Aboriginal Affairs +316065,Aboriginal Affairs,Aboriginal Affairs +310677,Aboriginal Affairs,Aboriginal Affairs +481848,Aboriginal Affairs,Aboriginal Affairs +468131,Aboriginal Affairs,Aboriginal Affairs +435984,Aboriginal Affairs,Aboriginal Affairs +435981,Aboriginal Affairs,Aboriginal Affairs +396958,Aboriginal Affairs,Aboriginal Affairs +396957,Aboriginal Affairs,Aboriginal Affairs +318988,Telecommunications,Telecommunications +311076,Telecommunications,Telecommunications +311074,Telecommunications,Telecommunications +330019,Telecommunications,Telecommunications +327615,Telecommunications,Telecommunications +322272,Telecommunications,Telecommunications +311774,Telecommunications,Telecommunications +311771,Telecommunications,Telecommunications +312032,Telecommunications,Telecommunications +311776,Telecommunications,Telecommunications +311779,Telecommunications,Telecommunications +311778,Telecommunications,Telecommunications +494059,Telecommunications,Telecommunications +493476,Telecommunications,Telecommunications +340064,Telecommunications,Telecommunications +312033,Telecommunications,Telecommunications +311780,Telecommunications,Telecommunications +476434,Telecommunications,Telecommunications +474363,Telecommunications,Telecommunications +472270,Telecommunications,Telecommunications +469458,Telecommunications,Telecommunications +448116,Telecommunications,Telecommunications +435875,Telecommunications,Telecommunications +540845,Telecommunications,Telecommunications +527049,Telecommunications,Telecommunications +525148,Telecommunications,Telecommunications +523370,Telecommunications,Telecommunications +435958,Telecommunications,Telecommunications +435956,Telecommunications,Telecommunications +312031,Telecommunications,Telecommunications +340083,Telecommunications,Telecommunications +476477,Telecommunications,Telecommunications +469457,Telecommunications,Telecommunications +448120,Telecommunications,Telecommunications +340089,Telecommunications,Telecommunications +312036,Telecommunications,Telecommunications +311799,Telecommunications,Telecommunications +311796,Telecommunications,Telecommunications +311795,Telecommunications,Telecommunications +436420,Telecommunications,Telecommunications +436415,Telecommunications,Telecommunications +436412,Telecommunications,Telecommunications +386808,Telecommunications,Telecommunications +386695,Telecommunications,Telecommunications +527050,Telecommunications,Telecommunications +525165,Telecommunications,Telecommunications +523366,Telecommunications,Telecommunications +518620,Telecommunications,Telecommunications +494062,Telecommunications,Telecommunications +493485,Telecommunications,Telecommunications +476435,Telecommunications,Telecommunications +474361,Telecommunications,Telecommunications +472268,Telecommunications,Telecommunications +471383,Telecommunications,Telecommunications +471382,Telecommunications,Telecommunications +471381,Telecommunications,Telecommunications +471380,Telecommunications,Telecommunications +316511,Aboriginal Affairs,Aboriginal Affairs +379289,Science and Technology,Science and Technology +311991,Science and Technology,Science and Technology +383334,Science and Technology,Science and Technology +383332,Science and Technology,Science and Technology +383331,Science and Technology,Science and Technology +382341,Science and Technology,Science and Technology +379312,Science and Technology,Science and Technology +379311,Science and Technology,Science and Technology +379299,Science and Technology,Science and Technology +320333,Arts and Culture,Arts and Culture +315469,Telecommunications,Télécommunications +330269,Telecommunications,Télécommunications +355993,Science and Technology,Science and Technology +494587,Science and Technology,Science and Technology +353578,Science and Technology,Science and Technology +351921,Science and Technology,Science and Technology +337631,Science and Technology,Science and Technology +337630,Science and Technology,Science and Technology +333686,Science and Technology,Science and Technology +318924,Science and Technology,Science and Technology +318922,Science and Technology,Science and Technology +407824,Science and Technology,Science and Technology +367883,Science and Technology,Science and Technology +367881,Science and Technology,Science and Technology +367874,Science and Technology,Science and Technology +366271,Science and Technology,Science and Technology +366270,Science and Technology,Science and Technology +366269,Science and Technology,Science and Technology +325671,Science and Technology,Science and Technology +313469,Science and Technology,Science and Technology +358543,Aboriginal Affairs,Aboriginal Affairs +358524,Aboriginal Affairs,Aboriginal Affairs +358523,Aboriginal Affairs,Aboriginal Affairs +358522,Aboriginal Affairs,Aboriginal Affairs +348739,Aboriginal Affairs,Aboriginal Affairs +348738,Aboriginal Affairs,Aboriginal Affairs +348737,Aboriginal Affairs,Aboriginal Affairs +321920,Aboriginal Affairs,Aboriginal Affairs +321913,Aboriginal Affairs,Aboriginal Affairs +358544,Aboriginal Affairs,Aboriginal Affairs +358528,Aboriginal Affairs,Aboriginal Affairs +358527,Aboriginal Affairs,Aboriginal Affairs +358526,Aboriginal Affairs,Aboriginal Affairs +345617,Aboriginal Affairs,Aboriginal Affairs +345599,Aboriginal Affairs,Aboriginal Affairs +321974,Aboriginal Affairs,Aboriginal Affairs +321971,Aboriginal Affairs,Aboriginal Affairs +321970,Aboriginal Affairs,Aboriginal Affairs +321969,Aboriginal Affairs,Aboriginal Affairs +321929,Aboriginal Affairs,Aboriginal Affairs +321926,Aboriginal Affairs,Aboriginal Affairs +321925,Aboriginal Affairs,Aboriginal Affairs +321924,Aboriginal Affairs,Aboriginal Affairs +314570,Telecommunications,Telecommunications +314569,Telecommunications,Telecommunications +474645,Science and Technology,Science and Technology +474644,Science and Technology,Science and Technology +386335,Science and Technology,Science and Technology +377034,Science and Technology,Science and Technology +367468,Science and Technology,Science and Technology +367467,Science and Technology,Science and Technology +506934,Science and Technology,Science and Technology +502971,Science and Technology,Science and Technology +502969,Science and Technology,Science and Technology +535048,Aboriginal Affairs,Aboriginal Affairs +407107,Science and Technology,Science and Technology +407106,Science and Technology,Science and Technology +314629,Science and Technology,Science and Technology +404339,Science and Technology,Science and Technology +389317,Science and Technology,Science and Technology +384094,Science and Technology,Science and Technology +383336,Science and Technology,Science and Technology +383335,Science and Technology,Science and Technology +414641,Science and Technology,Science and Technology +414640,Science and Technology,Science and Technology +413923,Science and Technology,Science and Technology +413876,Science and Technology,Science and Technology +413875,Science and Technology,Science and Technology +408733,Science and Technology,Science and Technology +408429,Science and Technology,Science and Technology +407203,Science and Technology,Science and Technology +407178,Science and Technology,Science and Technology +314610,Aboriginal Affairs,Aboriginal Affairs +335126,Aboriginal Affairs,Aboriginal Affairs +377924,Arts and Culture,Arts and Culture +377923,Arts and Culture,Arts and Culture +364502,Arts and Culture,Arts and Culture +355472,Arts and Culture,Arts and Culture +355471,Arts and Culture,Arts and Culture +335393,Arts and Culture,Arts and Culture +329369,Arts and Culture,Arts and Culture +324146,Arts and Culture,Arts and Culture +324136,Arts and Culture,Arts and Culture +324134,Arts and Culture,Arts and Culture +324130,Arts and Culture,Arts and Culture +315491,Arts and Culture,Arts and Culture +419110,Arts and Culture,Arts and Culture +408599,Arts and Culture,Arts and Culture +407319,Arts and Culture,Arts and Culture +407318,Arts and Culture,Arts and Culture +406152,Arts and Culture,Arts and Culture +401961,Arts and Culture,Arts and Culture +401960,Arts and Culture,Arts and Culture +401959,Arts and Culture,Arts and Culture +399750,Arts and Culture,Arts and Culture +399749,Arts and Culture,Arts and Culture +399748,Arts and Culture,Arts and Culture +399747,Arts and Culture,Arts and Culture +399746,Arts and Culture,Arts and Culture +397951,Arts and Culture,Arts and Culture +397950,Arts and Culture,Arts and Culture +397949,Arts and Culture,Arts and Culture +395039,Arts and Culture,Arts and Culture +395037,Arts and Culture,Arts and Culture +395021,Arts and Culture,Arts and Culture +395003,Arts and Culture,Arts and Culture +395001,Arts and Culture,Arts and Culture +394999,Arts and Culture,Arts and Culture +394997,Arts and Culture,Arts and Culture +394994,Arts and Culture,Arts and Culture +394989,Arts and Culture,Arts and Culture +394909,Arts and Culture,Arts and Culture +393083,Arts and Culture,Arts and Culture +393078,Arts and Culture,Arts and Culture +393075,Arts and Culture,Arts and Culture +393074,Arts and Culture,Arts and Culture +393073,Arts and Culture,Arts and Culture +392280,Arts and Culture,Arts and Culture +392278,Arts and Culture,Arts and Culture +388890,Arts and Culture,Arts and Culture +388887,Arts and Culture,Arts and Culture +388886,Arts and Culture,Arts and Culture +388885,Arts and Culture,Arts and Culture +388884,Arts and Culture,Arts and Culture +387036,Arts and Culture,Arts and Culture +387035,Arts and Culture,Arts and Culture +382896,Arts and Culture,Arts and Culture +382892,Arts and Culture,Arts and Culture +382222,Arts and Culture,Arts and Culture +380681,Arts and Culture,Arts and Culture +380678,Arts and Culture,Arts and Culture +380677,Arts and Culture,Arts and Culture +380674,Arts and Culture,Arts and Culture +380672,Arts and Culture,Arts and Culture +377926,Arts and Culture,Arts and Culture +488795,Aboriginal Affairs,Aboriginal Affairs +485985,Aboriginal Affairs,Aboriginal Affairs +370696,Aboriginal Affairs,Aboriginal Affairs +370621,Aboriginal Affairs,Aboriginal Affairs +364797,Aboriginal Affairs,Aboriginal Affairs +339992,Aboriginal Affairs,Aboriginal Affairs +466452,Aboriginal Affairs,Aboriginal Affairs +461296,Aboriginal Affairs,Aboriginal Affairs +441073,Aboriginal Affairs,Aboriginal Affairs +441072,Aboriginal Affairs,Aboriginal Affairs +437286,Aboriginal Affairs,Aboriginal Affairs +414698,Aboriginal Affairs,Aboriginal Affairs +389483,Aboriginal Affairs,Aboriginal Affairs +378079,Aboriginal Affairs,Aboriginal Affairs +497136,Aboriginal Affairs,Aboriginal Affairs +494292,Aboriginal Affairs,Aboriginal Affairs +494291,Aboriginal Affairs,Aboriginal Affairs +494290,Aboriginal Affairs,Aboriginal Affairs +489577,Aboriginal Affairs,Aboriginal Affairs +488931,Aboriginal Affairs,Aboriginal Affairs +488801,Aboriginal Affairs,Aboriginal Affairs +488799,Aboriginal Affairs,Aboriginal Affairs +318474,Aboriginal Affairs,Aboriginal Affairs +318473,Aboriginal Affairs,Aboriginal Affairs +372699,Aboriginal Affairs,Aboriginal Affairs +370896,Aboriginal Affairs,Aboriginal Affairs +370618,Aboriginal Affairs,Aboriginal Affairs +370617,Aboriginal Affairs,Aboriginal Affairs +318476,Aboriginal Affairs,Aboriginal Affairs +316376,Telecommunications,Telecommunications +316374,Telecommunications,Telecommunications +335510,Telecommunications,Telecommunications +329273,Telecommunications,Telecommunications +329272,Telecommunications,Telecommunications +329271,Telecommunications,Telecommunications +329270,Telecommunications,Telecommunications +400281,Science and Technology,Science and Technology +394006,Science and Technology,Science and Technology +425722,Science and Technology,Science and Technology +348889,Aboriginal Affairs,Aboriginal Affairs +317971,Aboriginal Affairs,Aboriginal Affairs +351924,Aboriginal Affairs,Aboriginal Affairs +442563,Aboriginal Affairs,Aboriginal Affairs +319091,Telecommunications,Telecommunications +453892,Arts and Culture,Arts and Culture +453891,Arts and Culture,Arts and Culture +373268,Arts and Culture,Arts and Culture +373267,Arts and Culture,Arts and Culture +369995,Arts and Culture,Arts and Culture +349886,Arts and Culture,Arts and Culture +349879,Arts and Culture,Arts and Culture +335413,Arts and Culture,Arts and Culture +335411,Arts and Culture,Arts and Culture +335409,Arts and Culture,Arts and Culture +447797,Arts and Culture,Arts and Culture +443178,Arts and Culture,Arts and Culture +441011,Arts and Culture,Arts and Culture +437343,Arts and Culture,Arts and Culture +417922,Arts and Culture,Arts and Culture +417913,Arts and Culture,Arts and Culture +417908,Arts and Culture,Arts and Culture +393053,Arts and Culture,Arts and Culture +382946,Arts and Culture,Arts and Culture +382945,Arts and Culture,Arts and Culture +537091,Arts and Culture,Arts and Culture +537090,Arts and Culture,Arts and Culture +526846,Arts and Culture,Arts and Culture +524203,Arts and Culture,Arts and Culture +523820,Arts and Culture,Arts and Culture +520376,Arts and Culture,Arts and Culture +519046,Arts and Culture,Arts and Culture +518842,Arts and Culture,Arts and Culture +518821,Arts and Culture,Arts and Culture +518628,Arts and Culture,Arts and Culture +518460,Arts and Culture,Arts and Culture +516011,Arts and Culture,Arts and Culture +515180,Arts and Culture,Arts and Culture +514672,Arts and Culture,Arts and Culture +511957,Arts and Culture,Arts and Culture +511010,Arts and Culture,Arts and Culture +509814,Arts and Culture,Arts and Culture +506739,Arts and Culture,Arts and Culture +498043,Arts and Culture,Arts and Culture +492208,Arts and Culture,Arts and Culture +487401,Arts and Culture,Arts and Culture +483350,Arts and Culture,Arts and Culture +478951,Arts and Culture,Arts and Culture +478410,Arts and Culture,Arts and Culture +476516,Arts and Culture,Arts and Culture +476515,Arts and Culture,Arts and Culture +476309,Arts and Culture,Arts and Culture +476139,Arts and Culture,Arts and Culture +474246,Arts and Culture,Arts and Culture +474020,Arts and Culture,Arts and Culture +473005,Arts and Culture,Arts and Culture +472255,Arts and Culture,Arts and Culture +471947,Arts and Culture,Arts and Culture +471388,Arts and Culture,Arts and Culture +469631,Arts and Culture,Arts and Culture +469630,Arts and Culture,Arts and Culture +469127,Arts and Culture,Arts and Culture +469126,Arts and Culture,Arts and Culture +469125,Arts and Culture,Arts and Culture +469124,Arts and Culture,Arts and Culture +469121,Arts and Culture,Arts and Culture +468946,Arts and Culture,Arts and Culture +459157,Arts and Culture,Arts and Culture +459156,Arts and Culture,Arts and Culture +459155,Arts and Culture,Arts and Culture +459047,Arts and Culture,Arts and Culture +459044,Arts and Culture,Arts and Culture +518820,Broadcasting,Broadcasting +494138,Broadcasting,Broadcasting +382946,Broadcasting,Broadcasting +382945,Broadcasting,Broadcasting +349886,Broadcasting,Broadcasting +481050,Broadcasting,Broadcasting +453891,Broadcasting,Broadcasting +443178,Broadcasting,Broadcasting +417922,Broadcasting,Broadcasting +417913,Broadcasting,Broadcasting +417908,Broadcasting,Broadcasting +540836,Broadcasting,Broadcasting +540487,Broadcasting,Broadcasting +441367,Aboriginal Affairs,Aboriginal Affairs +441363,Aboriginal Affairs,Aboriginal Affairs +417209,Aboriginal Affairs,Aboriginal Affairs +397306,Aboriginal Affairs,Aboriginal Affairs +385436,Aboriginal Affairs,Aboriginal Affairs +465114,Aboriginal Affairs,Aboriginal Affairs +465103,Aboriginal Affairs,Aboriginal Affairs +447419,Aboriginal Affairs,Aboriginal Affairs +443370,Aboriginal Affairs,Aboriginal Affairs +441391,Aboriginal Affairs,Aboriginal Affairs +441388,Aboriginal Affairs,Aboriginal Affairs +441384,Aboriginal Affairs,Aboriginal Affairs +441383,Aboriginal Affairs,Aboriginal Affairs +441378,Aboriginal Affairs,Aboriginal Affairs +441375,Aboriginal Affairs,Aboriginal Affairs +441373,Aboriginal Affairs,Aboriginal Affairs +441371,Aboriginal Affairs,Aboriginal Affairs +441370,Aboriginal Affairs,Aboriginal Affairs +441369,Aboriginal Affairs,Aboriginal Affairs +318870,Aboriginal Affairs,Aboriginal Affairs +318869,Aboriginal Affairs,Aboriginal Affairs +357078,Aboriginal Affairs,Aboriginal Affairs +348154,Aboriginal Affairs,Aboriginal Affairs +334950,Science and Technology,Science and Technology +323850,Science and Technology,Science and Technology +337471,Science and Technology,Science and Technology +436407,Telecommunications,Telecommunications +434349,Broadcasting,Broadcasting +430071,Broadcasting,Broadcasting +368387,Broadcasting,Broadcasting +352820,Broadcasting,Broadcasting +350502,Broadcasting,Broadcasting +350501,Broadcasting,Broadcasting +350500,Broadcasting,Broadcasting +329614,Broadcasting,Broadcasting +329613,Broadcasting,Broadcasting +324191,Broadcasting,Broadcasting +420666,Broadcasting,Broadcasting +404888,Broadcasting,Broadcasting +404886,Broadcasting,Broadcasting +393260,Broadcasting,Broadcasting +392177,Broadcasting,Broadcasting +389591,Broadcasting,Broadcasting +384689,Broadcasting,Broadcasting +540820,Broadcasting,Broadcasting +539107,Broadcasting,Broadcasting +539106,Broadcasting,Broadcasting +536623,Broadcasting,Broadcasting +530332,Broadcasting,Broadcasting +527310,Broadcasting,Broadcasting +527309,Broadcasting,Broadcasting +527308,Broadcasting,Broadcasting +523904,Broadcasting,Broadcasting +523903,Broadcasting,Broadcasting +523902,Broadcasting,Broadcasting +518724,Broadcasting,Broadcasting +509740,Broadcasting,Broadcasting +503455,Broadcasting,Broadcasting +503453,Broadcasting,Broadcasting +500412,Broadcasting,Broadcasting +494215,Broadcasting,Broadcasting +489084,Broadcasting,Broadcasting +489083,Broadcasting,Broadcasting +480873,Broadcasting,Broadcasting +478789,Broadcasting,Broadcasting +476503,Broadcasting,Broadcasting +471779,Broadcasting,Broadcasting +471778,Broadcasting,Broadcasting +469279,Broadcasting,Broadcasting +469273,Broadcasting,Broadcasting +469272,Broadcasting,Broadcasting +463290,Broadcasting,Broadcasting +461072,Broadcasting,Broadcasting +459881,Broadcasting,Broadcasting +456820,Broadcasting,Broadcasting +456819,Broadcasting,Broadcasting +446245,Broadcasting,Broadcasting +444396,Broadcasting,Broadcasting +444395,Broadcasting,Broadcasting +503663,Arts and Culture,Arts and Culture +503457,Arts and Culture,Arts and Culture +329938,Arts and Culture,Arts and Culture +492207,Arts and Culture,Arts and Culture +483805,Arts and Culture,Arts and Culture +483346,Arts and Culture,Arts and Culture +476222,Arts and Culture,Arts and Culture +420228,Arts and Culture,Arts and Culture +420216,Arts and Culture,Arts and Culture +393612,Arts and Culture,Arts and Culture +393610,Arts and Culture,Arts and Culture +386379,Arts and Culture,Arts and Culture +386378,Arts and Culture,Arts and Culture +386377,Arts and Culture,Arts and Culture +386376,Arts and Culture,Arts and Culture +386375,Arts and Culture,Arts and Culture +538440,Arts and Culture,Arts and Culture +526845,Arts and Culture,Arts and Culture +524417,Arts and Culture,Arts and Culture +524202,Arts and Culture,Arts and Culture +514673,Arts and Culture,Arts and Culture +541318,Broadcasting,Broadcasting +495332,Aboriginal Affairs,Aboriginal Affairs +493590,Aboriginal Affairs,Aboriginal Affairs +534506,Aboriginal Affairs,Aboriginal Affairs +534503,Aboriginal Affairs,Aboriginal Affairs +517311,Aboriginal Affairs,Aboriginal Affairs +435968,Telecommunications,Telecommunications +435967,Telecommunications,Telecommunications +386809,Telecommunications,Telecommunications +386703,Telecommunications,Telecommunications +355693,Telecommunications,Telecommunications +476438,Telecommunications,Telecommunications +474362,Telecommunications,Telecommunications +472271,Telecommunications,Telecommunications +471378,Telecommunications,Telecommunications +471377,Telecommunications,Telecommunications +471376,Telecommunications,Telecommunications +471375,Telecommunications,Telecommunications +471374,Telecommunications,Telecommunications +469462,Telecommunications,Telecommunications +448117,Telecommunications,Telecommunications +448125,Telecommunications,Telecommunications +518638,Telecommunications,Telecommunications +476451,Telecommunications,Telecommunications +370953,Telecommunications,Telecommunications +370952,Telecommunications,Telecommunications +402777,Telecommunications,Telecommunications +382071,Telecommunications,Telecommunications +382070,Telecommunications,Telecommunications +374272,Telecommunications,Telecommunications +370952,Broadcasting,Broadcasting +442988,Aboriginal Affairs,Aboriginal Affairs +431645,Aboriginal Affairs,Aboriginal Affairs +327513,Aboriginal Affairs,Aboriginal Affairs +324278,Aboriginal Affairs,Aboriginal Affairs +419174,Aboriginal Affairs,Aboriginal Affairs +399632,Aboriginal Affairs,Aboriginal Affairs +396702,Aboriginal Affairs,Aboriginal Affairs +395859,Aboriginal Affairs,Aboriginal Affairs +394678,Aboriginal Affairs,Aboriginal Affairs +394673,Aboriginal Affairs,Aboriginal Affairs +389308,Aboriginal Affairs,Aboriginal Affairs +389301,Aboriginal Affairs,Aboriginal Affairs +384656,Aboriginal Affairs,Aboriginal Affairs +384653,Aboriginal Affairs,Aboriginal Affairs +384650,Aboriginal Affairs,Aboriginal Affairs +384646,Aboriginal Affairs,Aboriginal Affairs +335491,Aboriginal Affairs,Aboriginal Affairs +336931,Science and Technology,Science and Technology +336930,Science and Technology,Science and Technology +330968,Science and Technology,Science and Technology +330967,Science and Technology,Science and Technology +326675,Science and Technology,Science and Technology +340360,Science and Technology,Science and Technology +336934,Science and Technology,Science and Technology +336933,Science and Technology,Science and Technology +482902,Arts and Culture,Arts and Culture +481716,Arts and Culture,Arts and Culture +376275,Arts and Culture,Arts and Culture +358455,Arts and Culture,Arts and Culture +358454,Arts and Culture,Arts and Culture +358453,Arts and Culture,Arts and Culture +352987,Arts and Culture,Arts and Culture +352986,Arts and Culture,Arts and Culture +347788,Arts and Culture,Arts and Culture +344592,Arts and Culture,Arts and Culture +330117,Arts and Culture,Arts and Culture +325364,Arts and Culture,Arts and Culture +411278,Arts and Culture,Arts and Culture +411276,Arts and Culture,Arts and Culture +411275,Arts and Culture,Arts and Culture +390878,Arts and Culture,Arts and Culture +534478,Arts and Culture,Arts and Culture +528941,Arts and Culture,Arts and Culture +528882,Arts and Culture,Arts and Culture +528859,Arts and Culture,Arts and Culture +528809,Arts and Culture,Arts and Culture +525753,Arts and Culture,Arts and Culture +525697,Arts and Culture,Arts and Culture +525689,Arts and Culture,Arts and Culture +521575,Arts and Culture,Arts and Culture +521574,Arts and Culture,Arts and Culture +521571,Arts and Culture,Arts and Culture +516510,Arts and Culture,Arts and Culture +516508,Arts and Culture,Arts and Culture +516507,Arts and Culture,Arts and Culture +335749,Broadcasting,Broadcasting +350984,Telecommunications,Telecommunications +326753,Arts and Culture,Arts and Culture +357524,Telecommunications,Telecommunications +355264,Telecommunications,Telecommunications +327276,Science and Technology,Science and Technology +330240,Telecommunications,Telecommunications +344037,Telecommunications,Telecommunications +344033,Telecommunications,Telecommunications +330167,Telecommunications,Telecommunications +344039,Telecommunications,Telecommunications +330237,Telecommunications,Telecommunications +330235,Telecommunications,Telecommunications +347397,Science and Technology,Science and Technology +333893,Science and Technology,Science and Technology +329229,Science and Technology,Science and Technology +350293,Science and Technology,Science and Technology +340834,Telecommunications,Telecommunications +459799,Science and Technology,Science and Technology +458424,Science and Technology,Science and Technology +353860,Science and Technology,Science and Technology +353819,Science and Technology,Science and Technology +351666,Science and Technology,Science and Technology +351665,Science and Technology,Science and Technology +351663,Science and Technology,Science and Technology +351661,Science and Technology,Science and Technology +351660,Science and Technology,Science and Technology +349269,Science and Technology,Science and Technology +349268,Science and Technology,Science and Technology +347478,Science and Technology,Science and Technology +347477,Science and Technology,Science and Technology +343981,Science and Technology,Science and Technology +341041,Science and Technology,Science and Technology +341040,Science and Technology,Science and Technology +341039,Science and Technology,Science and Technology +341038,Science and Technology,Science and Technology +338989,Science and Technology,Science and Technology +338719,Science and Technology,Science and Technology +335885,Science and Technology,Science and Technology +335883,Science and Technology,Science and Technology +335882,Science and Technology,Science and Technology +333543,Science and Technology,Science and Technology +333542,Science and Technology,Science and Technology +333539,Science and Technology,Science and Technology +332352,Science and Technology,Science and Technology +332351,Science and Technology,Science and Technology +332350,Science and Technology,Science and Technology +331092,Science and Technology,Science and Technology +396281,Science and Technology,Science and Technology +396279,Science and Technology,Science and Technology +396276,Science and Technology,Science and Technology +396275,Science and Technology,Science and Technology +396274,Science and Technology,Science and Technology +396273,Science and Technology,Science and Technology +396270,Science and Technology,Science and Technology +393030,Science and Technology,Science and Technology +393029,Science and Technology,Science and Technology +393028,Science and Technology,Science and Technology +393027,Science and Technology,Science and Technology +388774,Science and Technology,Science and Technology +384787,Science and Technology,Science and Technology +384785,Science and Technology,Science and Technology +384783,Science and Technology,Science and Technology +384780,Science and Technology,Science and Technology +384774,Science and Technology,Science and Technology +384766,Science and Technology,Science and Technology +384764,Science and Technology,Science and Technology +384760,Science and Technology,Science and Technology +384758,Science and Technology,Science and Technology +384757,Science and Technology,Science and Technology +384200,Science and Technology,Science and Technology +384199,Science and Technology,Science and Technology +384198,Science and Technology,Science and Technology +381809,Science and Technology,Science and Technology +543389,Science and Technology,Science and Technology +543387,Science and Technology,Science and Technology +539535,Science and Technology,Science and Technology +539445,Science and Technology,Science and Technology +539443,Science and Technology,Science and Technology +539379,Science and Technology,Science and Technology +539378,Science and Technology,Science and Technology +536736,Science and Technology,Science and Technology +535274,Science and Technology,Science and Technology +533664,Science and Technology,Science and Technology +533663,Science and Technology,Science and Technology +533662,Science and Technology,Science and Technology +533661,Science and Technology,Science and Technology +533660,Science and Technology,Science and Technology +533659,Science and Technology,Science and Technology +530987,Science and Technology,Science and Technology +530985,Science and Technology,Science and Technology +530847,Science and Technology,Science and Technology +530829,Science and Technology,Science and Technology +530827,Science and Technology,Science and Technology +530825,Science and Technology,Science and Technology +527725,Science and Technology,Science and Technology +527724,Science and Technology,Science and Technology +527723,Science and Technology,Science and Technology +527722,Science and Technology,Science and Technology +527720,Science and Technology,Science and Technology +524573,Science and Technology,Science and Technology +524571,Science and Technology,Science and Technology +524570,Science and Technology,Science and Technology +524569,Science and Technology,Science and Technology +521565,Science and Technology,Science and Technology +516747,Science and Technology,Science and Technology +516745,Science and Technology,Science and Technology +516744,Science and Technology,Science and Technology +516743,Science and Technology,Science and Technology +515217,Science and Technology,Science and Technology +515187,Science and Technology,Science and Technology +515186,Science and Technology,Science and Technology +515184,Science and Technology,Science and Technology +515182,Science and Technology,Science and Technology +514611,Science and Technology,Science and Technology +512582,Science and Technology,Science and Technology +506968,Science and Technology,Science and Technology +506966,Science and Technology,Science and Technology +503919,Science and Technology,Science and Technology +503917,Science and Technology,Science and Technology +500580,Science and Technology,Science and Technology +500575,Science and Technology,Science and Technology +498283,Science and Technology,Science and Technology +498281,Science and Technology,Science and Technology +498273,Science and Technology,Science and Technology +498270,Science and Technology,Science and Technology +494609,Science and Technology,Science and Technology +493005,Science and Technology,Science and Technology +492996,Science and Technology,Science and Technology +492995,Science and Technology,Science and Technology +489339,Science and Technology,Science and Technology +489323,Science and Technology,Science and Technology +489320,Science and Technology,Science and Technology +489314,Science and Technology,Science and Technology +489311,Science and Technology,Science and Technology +489308,Science and Technology,Science and Technology +489307,Science and Technology,Science and Technology +486159,Science and Technology,Science and Technology +486157,Science and Technology,Science and Technology +486154,Science and Technology,Science and Technology +486153,Science and Technology,Science and Technology +486152,Science and Technology,Science and Technology +486150,Science and Technology,Science and Technology +482971,Science and Technology,Science and Technology +481664,Science and Technology,Science and Technology +481663,Science and Technology,Science and Technology +481662,Science and Technology,Science and Technology +481661,Science and Technology,Science and Technology +481660,Science and Technology,Science and Technology +481659,Science and Technology,Science and Technology +479045,Science and Technology,Science and Technology +479044,Science and Technology,Science and Technology +479043,Science and Technology,Science and Technology +479042,Science and Technology,Science and Technology +479041,Science and Technology,Science and Technology +479040,Science and Technology,Science and Technology +478362,Science and Technology,Science and Technology +478360,Science and Technology,Science and Technology +463649,Science and Technology,Science and Technology +461751,Science and Technology,Science and Technology +461674,Science and Technology,Science and Technology +461669,Science and Technology,Science and Technology +421914,Aboriginal Affairs,Aboriginal Affairs +421911,Aboriginal Affairs,Aboriginal Affairs +526308,Aboriginal Affairs,Aboriginal Affairs +522945,Aboriginal Affairs,Aboriginal Affairs +484819,Aboriginal Affairs,Aboriginal Affairs +369751,Science and Technology,Science and Technology +369749,Science and Technology,Science and Technology +384354,Telecommunications,Telecommunications +382748,Telecommunications,Telecommunications +380280,Telecommunications,Telecommunications +369749,Telecommunications,Telecommunications +330021,Telecommunications,Telecommunications +330016,Telecommunications,Telecommunications +448713,Science and Technology,Science and Technology +417883,Aboriginal Affairs,Aboriginal Affairs +373067,Aboriginal Affairs,Aboriginal Affairs +372742,Aboriginal Affairs,Aboriginal Affairs +372732,Aboriginal Affairs,Aboriginal Affairs +335369,Aboriginal Affairs,Aboriginal Affairs +335368,Aboriginal Affairs,Aboriginal Affairs +335367,Aboriginal Affairs,Aboriginal Affairs +392391,Aboriginal Affairs,Aboriginal Affairs +392389,Aboriginal Affairs,Aboriginal Affairs +370076,Science and Technology,Science and Technology +332292,Science and Technology,Science and Technology +373685,Science and Technology,Science and Technology +370080,Science and Technology,Science and Technology +358885,Arts and Culture,Arts and Culture +358884,Arts and Culture,Arts and Culture +358884,Broadcasting,Broadcasting +418470,Broadcasting,Broadcasting +351687,Broadcasting,Broadcasting +418475,Broadcasting,Broadcasting +343725,Arts and Culture,Arts and Culture +356371,Science and Technology,Science and Technology +356366,Science and Technology,Science and Technology +366444,Science and Technology,Science and Technology +362364,Science and Technology,Science and Technology +362361,Science and Technology,Science and Technology +358072,Science and Technology,Science and Technology +358067,Science and Technology,Science and Technology +358065,Science and Technology,Science and Technology +338375,Aboriginal Affairs,Aboriginal Affairs +333754,Aboriginal Affairs,Aboriginal Affairs +333756,Aboriginal Affairs,Aboriginal Affairs +333757,Aboriginal Affairs,Aboriginal Affairs +353789,Aboriginal Affairs,Aboriginal Affairs +338302,Aboriginal Affairs,Aboriginal Affairs +337302,Aboriginal Affairs,Aboriginal Affairs +336590,Arts and Culture,Arts and Culture +336589,Arts and Culture,Arts and Culture +337385,Aboriginal Affairs,Aboriginal Affairs +337384,Aboriginal Affairs,Aboriginal Affairs +338026,Aboriginal Affairs,Aboriginal Affairs +337390,Aboriginal Affairs,Aboriginal Affairs +337388,Aboriginal Affairs,Aboriginal Affairs +478776,Arts and Culture,Arts and Culture +341675,Broadcasting,Broadcasting +341667,Broadcasting,Broadcasting +341679,Broadcasting,Broadcasting +340588,Arts and Culture,Arts and Culture +380100,Telecommunications,Telecommunications +374198,Telecommunications,Telecommunications +374194,Telecommunications,Telecommunications +374192,Telecommunications,Telecommunications +369613,Telecommunications,Telecommunications +369612,Telecommunications,Telecommunications +369611,Telecommunications,Telecommunications +369610,Telecommunications,Telecommunications +544308,Telecommunications,Telecommunications +469312,Telecommunications,Telecommunications +450622,Telecommunications,Telecommunications +435479,Telecommunications,Telecommunications +433618,Telecommunications,Telecommunications +432636,Telecommunications,Telecommunications +432635,Telecommunications,Telecommunications +431165,Telecommunications,Telecommunications +431164,Telecommunications,Telecommunications +424373,Telecommunications,Telecommunications +424372,Telecommunications,Telecommunications +420310,Telecommunications,Telecommunications +417228,Telecommunications,Telecommunications +399349,Telecommunications,Telecommunications +374194,Science and Technology,Science and Technology +374192,Science and Technology,Science and Technology +340855,Arts and Culture,Arts and Culture +440852,Science and Technology,Science and Technology +440851,Science and Technology,Science and Technology +421140,Science and Technology,Science and Technology +440859,Science and Technology,Science and Technology +340421,Arts and Culture,Arts and Culture +340416,Arts and Culture,Arts and Culture +341800,Arts and Culture,Arts and Culture +357037,Aboriginal Affairs,Aboriginal Affairs +357036,Aboriginal Affairs,Aboriginal Affairs +370416,Aboriginal Affairs,Aboriginal Affairs +357041,Aboriginal Affairs,Aboriginal Affairs +357040,Aboriginal Affairs,Aboriginal Affairs +357039,Aboriginal Affairs,Aboriginal Affairs +344423,Aboriginal Affairs,Aboriginal Affairs +339456,Science and Technology,Science and Technology +350405,Science and Technology,Science and Technology +343856,Science and Technology,Science and Technology +343658,Science and Technology,Science and Technology +342044,Science and Technology,Science and Technology +341179,Science and Technology,Science and Technology +341179,Telecommunications,Telecommunications +341177,Telecommunications,Telecommunications +352071,Telecommunications,Telecommunications +343968,Telecommunications,Telecommunications +354004,Science and Technology,Science and Technology +354003,Science and Technology,Science and Technology +343801,Science and Technology,Science and Technology +343800,Science and Technology,Science and Technology +512652,Aboriginal Affairs,Aboriginal Affairs +512623,Aboriginal Affairs,Aboriginal Affairs +338118,Aboriginal Affairs,Aboriginal Affairs +511072,Aboriginal Affairs,Aboriginal Affairs +503932,Aboriginal Affairs,Aboriginal Affairs +502514,Aboriginal Affairs,Aboriginal Affairs +502509,Aboriginal Affairs,Aboriginal Affairs +502506,Aboriginal Affairs,Aboriginal Affairs +502502,Aboriginal Affairs,Aboriginal Affairs +502497,Aboriginal Affairs,Aboriginal Affairs +491132,Aboriginal Affairs,Aboriginal Affairs +487244,Aboriginal Affairs,Aboriginal Affairs +452620,Aboriginal Affairs,Aboriginal Affairs +448190,Aboriginal Affairs,Aboriginal Affairs +445716,Aboriginal Affairs,Aboriginal Affairs +443904,Aboriginal Affairs,Aboriginal Affairs +439409,Aboriginal Affairs,Aboriginal Affairs +435203,Aboriginal Affairs,Aboriginal Affairs +423206,Aboriginal Affairs,Aboriginal Affairs +407772,Aboriginal Affairs,Aboriginal Affairs +534255,Aboriginal Affairs,Aboriginal Affairs +515173,Aboriginal Affairs,Aboriginal Affairs +514642,Aboriginal Affairs,Aboriginal Affairs +514641,Aboriginal Affairs,Aboriginal Affairs +514640,Aboriginal Affairs,Aboriginal Affairs +513890,Aboriginal Affairs,Aboriginal Affairs +342978,Broadcasting,Broadcasting +342977,Broadcasting,Broadcasting +401316,Broadcasting,Broadcasting +401315,Broadcasting,Broadcasting +401314,Broadcasting,Broadcasting +397420,Broadcasting,Broadcasting +376134,Broadcasting,Broadcasting +376133,Broadcasting,Broadcasting +344797,Broadcasting,Broadcasting +342981,Broadcasting,Broadcasting +342980,Broadcasting,Broadcasting +339907,Aboriginal Affairs,Aboriginal Affairs +339906,Aboriginal Affairs,Aboriginal Affairs +348117,Aboriginal Affairs,Aboriginal Affairs +339912,Aboriginal Affairs,Aboriginal Affairs +339909,Aboriginal Affairs,Aboriginal Affairs +344480,Telecommunications,Telecommunications +339331,Telecommunications,Telecommunications +376567,Telecommunications,Telecommunications +364222,Telecommunications,Telecommunications +362842,Telecommunications,Telecommunications +361083,Telecommunications,Telecommunications +354743,Telecommunications,Telecommunications +354742,Telecommunications,Telecommunications +352160,Telecommunications,Telecommunications +341757,Arts and Culture,Arts and Culture +341755,Arts and Culture,Arts and Culture +382715,Aboriginal Affairs,Aboriginal Affairs +382714,Aboriginal Affairs,Aboriginal Affairs +382713,Aboriginal Affairs,Aboriginal Affairs +381874,Aboriginal Affairs,Aboriginal Affairs +380444,Aboriginal Affairs,Aboriginal Affairs +378784,Aboriginal Affairs,Aboriginal Affairs +378783,Aboriginal Affairs,Aboriginal Affairs +377504,Aboriginal Affairs,Aboriginal Affairs +377185,Aboriginal Affairs,Aboriginal Affairs +377184,Aboriginal Affairs,Aboriginal Affairs +377183,Aboriginal Affairs,Aboriginal Affairs +377182,Aboriginal Affairs,Aboriginal Affairs +377181,Aboriginal Affairs,Aboriginal Affairs +377180,Aboriginal Affairs,Aboriginal Affairs +377151,Aboriginal Affairs,Aboriginal Affairs +377147,Aboriginal Affairs,Aboriginal Affairs +375828,Aboriginal Affairs,Aboriginal Affairs +375827,Aboriginal Affairs,Aboriginal Affairs +375826,Aboriginal Affairs,Aboriginal Affairs +375825,Aboriginal Affairs,Aboriginal Affairs +372658,Aboriginal Affairs,Aboriginal Affairs +368709,Aboriginal Affairs,Aboriginal Affairs +403769,Aboriginal Affairs,Aboriginal Affairs +393902,Aboriginal Affairs,Aboriginal Affairs +393901,Aboriginal Affairs,Aboriginal Affairs +393900,Aboriginal Affairs,Aboriginal Affairs +393899,Aboriginal Affairs,Aboriginal Affairs +391776,Aboriginal Affairs,Aboriginal Affairs +391773,Aboriginal Affairs,Aboriginal Affairs +391772,Aboriginal Affairs,Aboriginal Affairs +387407,Aboriginal Affairs,Aboriginal Affairs +387405,Aboriginal Affairs,Aboriginal Affairs +387398,Aboriginal Affairs,Aboriginal Affairs +387395,Aboriginal Affairs,Aboriginal Affairs +387391,Aboriginal Affairs,Aboriginal Affairs +385119,Aboriginal Affairs,Aboriginal Affairs +385115,Aboriginal Affairs,Aboriginal Affairs +385108,Aboriginal Affairs,Aboriginal Affairs +385107,Aboriginal Affairs,Aboriginal Affairs +385103,Aboriginal Affairs,Aboriginal Affairs +382722,Aboriginal Affairs,Aboriginal Affairs +382721,Aboriginal Affairs,Aboriginal Affairs +382719,Aboriginal Affairs,Aboriginal Affairs +382718,Aboriginal Affairs,Aboriginal Affairs +431221,Science and Technology,Science and Technology +429378,Science and Technology,Science and Technology +370982,Science and Technology,Science and Technology +370976,Science and Technology,Science and Technology +370960,Science and Technology,Science and Technology +368622,Science and Technology,Science and Technology +366543,Science and Technology,Science and Technology +366505,Science and Technology,Science and Technology +363516,Science and Technology,Science and Technology +362203,Science and Technology,Science and Technology +361157,Science and Technology,Science and Technology +361156,Science and Technology,Science and Technology +357726,Science and Technology,Science and Technology +357722,Science and Technology,Science and Technology +357721,Science and Technology,Science and Technology +357719,Science and Technology,Science and Technology +357718,Science and Technology,Science and Technology +357717,Science and Technology,Science and Technology +343459,Science and Technology,Science and Technology +340296,Science and Technology,Science and Technology +413617,Science and Technology,Science and Technology +413601,Science and Technology,Science and Technology +405556,Science and Technology,Science and Technology +398470,Science and Technology,Science and Technology +396470,Science and Technology,Science and Technology +396461,Science and Technology,Science and Technology +396443,Science and Technology,Science and Technology +396439,Science and Technology,Science and Technology +396434,Science and Technology,Science and Technology +394109,Science and Technology,Science and Technology +391528,Science and Technology,Science and Technology +371768,Science and Technology,Science and Technology +371008,Science and Technology,Science and Technology +370999,Science and Technology,Science and Technology +370996,Science and Technology,Science and Technology +538048,Science and Technology,Science and Technology +487589,Science and Technology,Science and Technology +482439,Science and Technology,Science and Technology +478160,Science and Technology,Science and Technology +478154,Science and Technology,Science and Technology +478148,Science and Technology,Science and Technology +478142,Science and Technology,Science and Technology +478138,Science and Technology,Science and Technology +478134,Science and Technology,Science and Technology +478132,Science and Technology,Science and Technology +478128,Science and Technology,Science and Technology +478126,Science and Technology,Science and Technology +478123,Science and Technology,Science and Technology +465011,Science and Technology,Science and Technology +452923,Science and Technology,Science and Technology +448170,Science and Technology,Science and Technology +442687,Science and Technology,Science and Technology +438951,Science and Technology,Science and Technology +347739,Broadcasting,Broadcasting +341436,Arts and Culture,Arts and Culture +344726,Telecommunications,Telecommunications +342937,Telecommunications,Telecommunications +344729,Telecommunications,Telecommunications +344728,Telecommunications,Telecommunications +350787,Science and Technology,Science and Technology +343583,Science and Technology,Science and Technology +351312,Aboriginal Affairs,Aboriginal Affairs +351310,Aboriginal Affairs,Aboriginal Affairs +477875,Arts and Culture,Arts and Culture +388965,Arts and Culture,Arts and Culture +388964,Arts and Culture,Arts and Culture +388646,Arts and Culture,Arts and Culture +388645,Arts and Culture,Arts and Culture +388644,Arts and Culture,Arts and Culture +388643,Arts and Culture,Arts and Culture +386294,Arts and Culture,Arts and Culture +386293,Arts and Culture,Arts and Culture +386292,Arts and Culture,Arts and Culture +368482,Arts and Culture,Arts and Culture +347451,Arts and Culture,Arts and Culture +347449,Arts and Culture,Arts and Culture +347448,Arts and Culture,Arts and Culture +347446,Arts and Culture,Arts and Culture +347445,Arts and Culture,Arts and Culture +391770,Arts and Culture,Arts and Culture +478111,Arts and Culture,Arts and Culture +477877,Arts and Culture,Arts and Culture +533532,Arts and Culture,Arts and Culture +519418,Arts and Culture,Arts and Culture +349386,Science and Technology,Science and Technology +351578,Arts and Culture,Arts and Culture +354906,Aboriginal Affairs,Aboriginal Affairs +354905,Aboriginal Affairs,Aboriginal Affairs +360026,Aboriginal Affairs,Aboriginal Affairs +360003,Aboriginal Affairs,Aboriginal Affairs +371336,Arts and Culture,Arts and Culture +350313,Arts and Culture,Arts and Culture +371342,Arts and Culture,Arts and Culture +371339,Arts and Culture,Arts and Culture +355734,Aboriginal Affairs,Aboriginal Affairs +355733,Aboriginal Affairs,Aboriginal Affairs +351625,Science and Technology,Science and Technology +351624,Science and Technology,Science and Technology +351635,Science and Technology,Science and Technology +351634,Science and Technology,Science and Technology +351632,Science and Technology,Science and Technology +351631,Science and Technology,Science and Technology +351630,Science and Technology,Science and Technology +351629,Science and Technology,Science and Technology +349474,Science and Technology,Science and Technology +349470,Science and Technology,Science and Technology +382938,Science and Technology,Science and Technology +382936,Science and Technology,Science and Technology +360426,Science and Technology,Science and Technology +350288,Arts and Culture,Arts and Culture +350287,Arts and Culture,Arts and Culture +350287,Telecommunications,Telecommunications +355923,Arts and Culture,Arts and Culture +451922,Arts and Culture,Arts et culture +450741,Arts and Culture,Arts et culture +437759,Arts and Culture,Arts et culture +437756,Arts and Culture,Arts et culture +437753,Arts and Culture,Arts et culture +437747,Arts and Culture,Arts et culture +423255,Arts and Culture,Arts et culture +423254,Arts and Culture,Arts et culture +423253,Arts and Culture,Arts et culture +423252,Arts and Culture,Arts et culture +401415,Arts and Culture,Arts et culture +401414,Arts and Culture,Arts et culture +395346,Arts and Culture,Arts et culture +395345,Arts and Culture,Arts et culture +395344,Arts and Culture,Arts et culture +395343,Arts and Culture,Arts et culture +395342,Arts and Culture,Arts et culture +395341,Arts and Culture,Arts et culture +382876,Arts and Culture,Arts et culture +370367,Arts and Culture,Arts et culture +451928,Arts and Culture,Arts et culture +451926,Arts and Culture,Arts et culture +356218,Science and Technology,Science and Technology +356217,Science and Technology,Science and Technology +358083,Science and Technology,Science and Technology +358080,Science and Technology,Science and Technology +358079,Science and Technology,Science and Technology +358075,Science and Technology,Science and Technology +358074,Science and Technology,Science and Technology +358071,Science and Technology,Science and Technology +350848,Aboriginal Affairs,Aboriginal Affairs +350843,Aboriginal Affairs,Aboriginal Affairs +363945,Aboriginal Affairs,Aboriginal Affairs +363944,Aboriginal Affairs,Aboriginal Affairs +363943,Aboriginal Affairs,Aboriginal Affairs +363942,Aboriginal Affairs,Aboriginal Affairs +358428,Aboriginal Affairs,Aboriginal Affairs +358391,Aboriginal Affairs,Aboriginal Affairs +357441,Aboriginal Affairs,Aboriginal Affairs +357439,Aboriginal Affairs,Aboriginal Affairs +357438,Aboriginal Affairs,Aboriginal Affairs +357437,Aboriginal Affairs,Aboriginal Affairs +444778,Aboriginal Affairs,Aboriginal Affairs +444777,Aboriginal Affairs,Aboriginal Affairs +429007,Aboriginal Affairs,Aboriginal Affairs +428997,Aboriginal Affairs,Aboriginal Affairs +398379,Aboriginal Affairs,Aboriginal Affairs +534472,Aboriginal Affairs,Aboriginal Affairs +534471,Aboriginal Affairs,Aboriginal Affairs +534469,Aboriginal Affairs,Aboriginal Affairs +353827,Aboriginal Affairs,Aboriginal Affairs +352546,Aboriginal Affairs,Aboriginal Affairs +426816,Science and Technology,Science and Technology +426813,Science and Technology,Science and Technology +392735,Science and Technology,Science and Technology +391284,Science and Technology,Science and Technology +383698,Science and Technology,Science and Technology +383693,Science and Technology,Science and Technology +359967,Science and Technology,Science and Technology +357379,Science and Technology,Science and Technology +357142,Science and Technology,Science and Technology +354718,Science and Technology,Science and Technology +353802,Aboriginal Affairs,Aboriginal Affairs +353801,Aboriginal Affairs,Aboriginal Affairs +353810,Aboriginal Affairs,Aboriginal Affairs +353805,Aboriginal Affairs,Aboriginal Affairs +350918,Aboriginal Affairs,Aboriginal Affairs +350917,Aboriginal Affairs,Aboriginal Affairs +362565,Aboriginal Affairs,Aboriginal Affairs +362564,Aboriginal Affairs,Aboriginal Affairs +350925,Aboriginal Affairs,Aboriginal Affairs +350924,Aboriginal Affairs,Aboriginal Affairs +350923,Aboriginal Affairs,Aboriginal Affairs +350922,Aboriginal Affairs,Aboriginal Affairs +350921,Aboriginal Affairs,Aboriginal Affairs +350920,Aboriginal Affairs,Aboriginal Affairs +354601,Aboriginal Affairs,Aboriginal Affairs +354600,Aboriginal Affairs,Aboriginal Affairs +352861,Telecommunications,Télécommunications +352860,Telecommunications,Télécommunications +539109,Telecommunications,Telecommunications +356536,Telecommunications,Telecommunications +353140,Telecommunications,Telecommunications +366842,Telecommunications,Telecommunications +355955,Arts and Culture,Arts et culture +355954,Arts and Culture,Arts et culture +355986,Arts and Culture,Arts et culture +355983,Arts and Culture,Arts et culture +355980,Arts and Culture,Arts et culture +355967,Science and Technology,Science and Technology +362802,Aboriginal Affairs,Aboriginal Affairs +355936,Aboriginal Affairs,Aboriginal Affairs +383093,Science and Technology,Science and Technology +382951,Science and Technology,Science and Technology +377667,Science and Technology,Science and Technology +375690,Science and Technology,Science and Technology +375688,Science and Technology,Science and Technology +375196,Science and Technology,Science and Technology +375195,Science and Technology,Science and Technology +374808,Science and Technology,Science and Technology +374172,Science and Technology,Science and Technology +373754,Science and Technology,Science and Technology +373187,Science and Technology,Science and Technology +373167,Science and Technology,Science and Technology +373040,Science and Technology,Science and Technology +373039,Science and Technology,Science and Technology +370947,Science and Technology,Science and Technology +370636,Science and Technology,Science and Technology +370152,Science and Technology,Science and Technology +369916,Science and Technology,Science and Technology +368697,Science and Technology,Science and Technology +368587,Science and Technology,Science and Technology +368303,Science and Technology,Science and Technology +367987,Science and Technology,Science and Technology +367986,Science and Technology,Science and Technology +367985,Science and Technology,Science and Technology +365011,Science and Technology,Science and Technology +359814,Science and Technology,Science and Technology +353731,Science and Technology,Science and Technology +411562,Science and Technology,Science and Technology +388169,Science and Technology,Science and Technology +384578,Science and Technology,Science and Technology +384577,Science and Technology,Science and Technology +384444,Science and Technology,Science and Technology +384217,Science and Technology,Science and Technology +383210,Science and Technology,Science and Technology +358161,Science and Technology,Science and Technology +376862,Science and Technology,Science and Technology +496521,Aboriginal Affairs,Aboriginal Affairs +496515,Aboriginal Affairs,Aboriginal Affairs +369540,Aboriginal Affairs,Aboriginal Affairs +363373,Aboriginal Affairs,Aboriginal Affairs +356558,Aboriginal Affairs,Aboriginal Affairs +356556,Aboriginal Affairs,Aboriginal Affairs +310651,Telecommunications,Telecommunications +309669,Telecommunications,Telecommunications +323159,Aboriginal Affairs,Aboriginal Affairs +318988,Broadcasting,Broadcasting +301473,Science and Technology,Science and Technology +434837,Aboriginal Affairs,Aboriginal Affairs +303249,Science and Technology,Science and Technology +303418,Aboriginal Affairs,Aboriginal Affairs +303550,Science and Technology,Science and Technology +355505,Science and Technology,Science and Technology +304110,Aboriginal Affairs,Aboriginal Affairs +310283,Aboriginal Affairs,Aboriginal Affairs +332429,Telecommunications,Telecommunications +319811,Science and Technology,Science and Technology +310993,Arts and Culture,Arts and Culture +310993,Telecommunications,Telecommunications +310993,Broadcasting,Broadcasting +306730,Broadcasting,Broadcasting +322029,Arts and Culture,Arts and Culture +307740,Aboriginal Affairs,Aboriginal Affairs +412455,Aboriginal Affairs,Aboriginal Affairs +307744,Aboriginal Affairs,Aboriginal Affairs +442883,Arts and Culture,Arts and Culture +506962,Science and Technology,Science and Technology +485460,Arts and Culture,Arts et culture +315111,Science and Technology,Science and Technology +366526,Aboriginal Affairs,Aboriginal Affairs +381559,Aboriginal Affairs,Aboriginal Affairs +310746,Science and Technology,Science and Technology +310855,Science and Technology,Science and Technology +319034,Telecommunications,Telecommunications +311775,Telecommunications,Telecommunications +312035,Telecommunications,Telecommunications +518615,Telecommunications,Telecommunications +469460,Telecommunications,Telecommunications +311793,Telecommunications,Telecommunications +471379,Telecommunications,Telecommunications +311801,Aboriginal Affairs,Aboriginal Affairs +324993,Aboriginal Affairs,Aboriginal Affairs +379292,Science and Technology,Science and Technology +313689,Arts and Culture,Arts and Culture +312034,Telecommunications,Telecommunications +313690,Arts and Culture,Arts and Culture +320335,Arts and Culture,Arts and Culture +315470,Telecommunications,Télécommunications +358094,Science and Technology,Science and Technology +312880,Arts and Culture,Arts and Culture +313409,Telecommunications,Telecommunications +328529,Science and Technology,Science and Technology +348736,Aboriginal Affairs,Aboriginal Affairs +321922,Aboriginal Affairs,Aboriginal Affairs +314571,Telecommunications,Telecommunications +474646,Science and Technology,Science and Technology +394013,Aboriginal Affairs,Aboriginal Affairs +407109,Science and Technology,Science and Technology +320791,Aboriginal Affairs,Aboriginal Affairs +315210,Arts and Culture,Arts and Culture +377925,Arts and Culture,Arts and Culture +315630,Aboriginal Affairs,Aboriginal Affairs +488798,Aboriginal Affairs,Aboriginal Affairs +318475,Aboriginal Affairs,Aboriginal Affairs +316949,Science and Technology,Science and Technology +316113,Aboriginal Affairs,Aboriginal Affairs +316114,Aboriginal Affairs,Aboriginal Affairs +329269,Telecommunications,Telecommunications +316749,Aboriginal Affairs,Aboriginal Affairs +406641,Science and Technology,Science and Technology +322143,Telecommunications,Telecommunications +351923,Aboriginal Affairs,Aboriginal Affairs +442565,Aboriginal Affairs,Aboriginal Affairs +324032,Aboriginal Affairs,Aboriginal Affairs +320069,Telecommunications,Telecommunications +324232,Aboriginal Affairs,Aboriginal Affairs +458930,Arts and Culture,Arts and Culture +521911,Broadcasting,Broadcasting +441368,Aboriginal Affairs,Aboriginal Affairs +339599,Aboriginal Affairs,Aboriginal Affairs +335080,Science and Technology,Science and Technology +320669,Aboriginal Affairs,Aboriginal Affairs +320389,Science and Technology,Science and Technology +448127,Telecommunications,Telecommunications +437049,Broadcasting,Broadcasting +320933,Arts and Culture,Arts and Culture +336512,Science and Technology,Science and Technology +506738,Arts and Culture,Arts and Culture +420219,Broadcasting,Broadcasting +322449,Science and Technology,Science and Technology +515557,Aboriginal Affairs,Aboriginal Affairs +435974,Telecommunications,Telecommunications +469461,Telecommunications,Telecommunications +326655,Telecommunications,Telecommunications +374268,Telecommunications,Telecommunications +370953,Broadcasting,Broadcasting +333735,Aboriginal Affairs,Aboriginal Affairs +336932,Science and Technology,Science and Technology +486034,Arts and Culture,Arts and Culture +338863,Broadcasting,Broadcasting +366214,Telecommunications,Telecommunications +326754,Arts and Culture,Arts and Culture +339820,Telecommunications,Telecommunications +340895,Telecommunications,Telecommunications +361892,Telecommunications,Telecommunications +325850,Aboriginal Affairs,Aboriginal Affairs +325851,Aboriginal Affairs,Aboriginal Affairs +326925,Telecommunications,Telecommunications +357956,Science and Technology,Science and Technology +330242,Telecommunications,Telecommunications +330166,Telecommunications,Telecommunications +344041,Telecommunications,Telecommunications +327493,Arts and Culture,Arts and Culture +371673,Science and Technology,Science and Technology +344553,Science and Technology,Science and Technology +351303,Broadcasting,Broadcasting +351303,Telecommunications,Telecommunications +333180,Aboriginal Affairs,Aboriginal Affairs +328894,Aboriginal Affairs,Aboriginal Affairs +460029,Science and Technology,Science and Technology +329434,Broadcasting,Broadcasting +484813,Aboriginal Affairs,Aboriginal Affairs +390071,Science and Technology,Science and Technology +390071,Telecommunications,Telecommunications +377543,Science and Technology,Science and Technology +417884,Aboriginal Affairs,Aboriginal Affairs +373067,Arts and Culture,Arts and Culture +392388,Aboriginal Affairs,Aboriginal Affairs +392369,Aboriginal Affairs,Aboriginal Affairs +370077,Science and Technology,Science and Technology +339913,Aboriginal Affairs,Aboriginal Affairs +360422,Arts and Culture,Arts and Culture +358885,Broadcasting,Broadcasting +418473,Broadcasting,Broadcasting +334130,Science and Technology,Science and Technology +333319,Science and Technology,Science and Technology +348785,Arts and Culture,Arts and Culture +356401,Science and Technology,Science and Technology +338387,Aboriginal Affairs,Aboriginal Affairs +333755,Aboriginal Affairs,Aboriginal Affairs +338382,Aboriginal Affairs,Aboriginal Affairs +338392,Aboriginal Affairs,Aboriginal Affairs +338296,Science and Technology,Science and Technology +353792,Aboriginal Affairs,Aboriginal Affairs +337303,Aboriginal Affairs,Aboriginal Affairs +335037,Arts and Culture,Arts and Culture +335591,Telecommunications,Télécommunications +336270,Arts and Culture,Arts and Culture +339033,Science and Technology,Science and Technology +392034,Telecommunications,Telecommunications +336591,Arts and Culture,Arts and Culture +337387,Aboriginal Affairs,Aboriginal Affairs +370110,Telecommunications,Telecommunications +343204,Science and Technology,Science and Technology +485358,Arts and Culture,Arts and Culture +341678,Broadcasting,Broadcasting +335608,Aboriginal Affairs,Aboriginal Affairs +350284,Arts and Culture,Arts and Culture +340588,Broadcasting,Broadcasting +380103,Telecommunications,Telecommunications +374198,Science and Technology,Science and Technology +336407,Arts and Culture,Arts and Culture +336136,Science and Technology,Science and Technology +350678,Arts and Culture,Arts and Culture +370657,Science and Technology,Science and Technology +440858,Science and Technology,Science and Technology +340442,Arts and Culture,Arts and Culture +357038,Aboriginal Affairs,Aboriginal Affairs +344424,Aboriginal Affairs,Aboriginal Affairs +341693,Science and Technology,Science and Technology +352071,Science and Technology,Science and Technology +341181,Telecommunications,Telecommunications +342360,Science and Technology,Science and Technology +343810,Science and Technology,Science and Technology +340303,Aboriginal Affairs,Aboriginal Affairs +337710,Arts and Culture,Arts and Culture +355939,Aboriginal Affairs,Aboriginal Affairs +513877,Aboriginal Affairs,Aboriginal Affairs +337529,Aboriginal Affairs,Aboriginal Affairs +342979,Broadcasting,Broadcasting +339908,Aboriginal Affairs,Aboriginal Affairs +338375,Telecommunications,Telecommunications +338382,Telecommunications,Telecommunications +338385,Telecommunications,Telecommunications +338387,Telecommunications,Telecommunications +338392,Telecommunications,Telecommunications +339797,Broadcasting,Broadcasting +339797,Telecommunications,Telecommunications +344481,Telecommunications,Telecommunications +341759,Arts and Culture,Arts and Culture +398097,Arts and Culture,Arts et culture +382716,Aboriginal Affairs,Aboriginal Affairs +544094,Science and Technology,Science and Technology +339822,Aboriginal Affairs,Affaires autochtones +339988,Aboriginal Affairs,Aboriginal Affairs +435955,Science and Technology,Science and Technology +350297,Broadcasting,Broadcasting +347740,Broadcasting,Broadcasting +340383,Arts and Culture,Arts and Culture +343300,Arts and Culture,Arts and Culture +351240,Arts and Culture,Arts and Culture +340895,Science and Technology,Science and Technology +341778,Aboriginal Affairs,Aboriginal Affairs +356535,Aboriginal Affairs,Aboriginal Affairs +344727,Telecommunications,Telecommunications +351305,Science and Technology,Science and Technology +342679,Aboriginal Affairs,Aboriginal Affairs +342680,Aboriginal Affairs,Aboriginal Affairs +392294,Telecommunications,Telecommunications +351314,Aboriginal Affairs,Aboriginal Affairs +343621,Aboriginal Affairs,Aboriginal Affairs +477876,Arts and Culture,Arts and Culture +519418,Broadcasting,Broadcasting +533533,Arts and Culture,Arts and Culture +349396,Science and Technology,Science and Technology +344758,Broadcasting,Broadcasting +356543,Aboriginal Affairs,Aboriginal Affairs +351579,Arts and Culture,Arts and Culture +350625,Aboriginal Affairs,Aboriginal Affairs +354907,Aboriginal Affairs,Aboriginal Affairs +354009,Aboriginal Affairs,Aboriginal Affairs +371338,Arts and Culture,Arts and Culture +355735,Aboriginal Affairs,Aboriginal Affairs +426626,Telecommunications,Telecommunications +351628,Science and Technology,Science and Technology +358358,Telecommunications,Telecommunications +360425,Science and Technology,Science and Technology +354320,Science and Technology,Science and Technology +372555,Arts and Culture,Arts and Culture +350288,Telecommunications,Telecommunications +355925,Arts and Culture,Arts and Culture +451923,Arts and Culture,Arts et culture +350601,Science and Technology,Science and Technology +356219,Science and Technology,Science and Technology +350855,Aboriginal Affairs,Aboriginal Affairs +534468,Aboriginal Affairs,Aboriginal Affairs +353832,Aboriginal Affairs,Aboriginal Affairs +352340,Science and Technology,Science and Technology +353804,Aboriginal Affairs,Aboriginal Affairs +350785,Telecommunications,Telecommunications +350919,Aboriginal Affairs,Aboriginal Affairs +351006,Aboriginal Affairs,Aboriginal Affairs +351008,Aboriginal Affairs,Aboriginal Affairs +351009,Aboriginal Affairs,Aboriginal Affairs +351010,Aboriginal Affairs,Aboriginal Affairs +351014,Aboriginal Affairs,Aboriginal Affairs +351017,Aboriginal Affairs,Aboriginal Affairs +351018,Aboriginal Affairs,Aboriginal Affairs +362436,Aboriginal Affairs,Aboriginal Affairs +352862,Telecommunications,Télécommunications +542079,Telecommunications,Telecommunications +360024,Telecommunications,Telecommunications +355978,Arts and Culture,Arts et culture +355974,Science and Technology,Science and Technology +366366,Aboriginal Affairs,Aboriginal Affairs +383094,Science and Technology,Science and Technology +353701,Aboriginal Affairs,Aboriginal Affairs +360242,Science and Technology,Science and Technology +355195,Science and Technology,Science and Technology +386500,Aboriginal Affairs,Aboriginal Affairs +496522,Aboriginal Affairs,Aboriginal Affairs +462855,Arts and Culture,Arts and Culture +424060,Science and Technology,Science and Technology +355274,Aboriginal Affairs,Aboriginal Affairs +356677,Broadcasting,Radiodiffusion +358642,Aboriginal Affairs,Aboriginal Affairs +532440,Aboriginal Affairs,Aboriginal Affairs +355741,Science and Technology,Science and Technology +376269,Aboriginal Affairs,Aboriginal Affairs +355738,Arts and Culture,Arts and Culture +373320,Aboriginal Affairs,Aboriginal Affairs +356544,Aboriginal Affairs,Aboriginal Affairs +373886,Science and Technology,Science and Technology +491955,Broadcasting,Broadcasting +422797,Telecommunications,Telecommunications +368362,Broadcasting,Broadcasting +368362,Telecommunications,Telecommunications +436967,Broadcasting,Broadcasting +446811,Telecommunications,Telecommunications +357216,Arts and Culture,Arts and Culture +357278,Aboriginal Affairs,Aboriginal Affairs +385893,Aboriginal Affairs,Aboriginal Affairs +358984,Arts and Culture,Arts and Culture +386399,Science and Technology,Sciences et technologies +360025,Science and Technology,Science and Technology +362822,Science and Technology,Sciences et technologies +379202,Science and Technology,Science and Technology +362358,Arts and Culture,Arts and Culture +363529,Science and Technology,Science and Technology +362664,Science and Technology,Science and Technology +468070,Arts and Culture,Arts and Culture +373634,Aboriginal Affairs,Aboriginal Affairs +497434,Aboriginal Affairs,Aboriginal Affairs +398476,Arts and Culture,Arts and Culture +368570,Arts and Culture,Arts and Culture +395307,Science and Technology,Science and Technology +363278,Arts and Culture,Arts and Culture +364884,Aboriginal Affairs,Aboriginal Affairs +364884,Arts and Culture,Arts and Culture +363511,Aboriginal Affairs,Aboriginal Affairs +384941,Aboriginal Affairs,Aboriginal Affairs +473666,Arts and Culture,Arts and Culture +371921,Arts and Culture,Arts and Culture +371772,Broadcasting,Broadcasting +371772,Arts and Culture,Arts and Culture +376818,Arts and Culture,Arts and Culture +369445,Aboriginal Affairs,Aboriginal Affairs +387892,Science and Technology,Science and Technology +365925,Aboriginal Affairs,Aboriginal Affairs +365924,Aboriginal Affairs,Aboriginal Affairs +369954,Science and Technology,Science and Technology +439756,Science and Technology,Science and Technology +366343,Broadcasting,Radiodiffusion +387260,Aboriginal Affairs,Aboriginal Affairs +367633,Arts and Culture,Arts and Culture +366607,Science and Technology,Science and Technology +389732,Aboriginal Affairs,Aboriginal Affairs +399376,Science and Technology,Science and Technology +374487,Aboriginal Affairs,Aboriginal Affairs +380064,Arts and Culture,Arts and Culture +369681,Aboriginal Affairs,Aboriginal Affairs +369680,Aboriginal Affairs,Aboriginal Affairs +392188,Aboriginal Affairs,Aboriginal Affairs +371311,Aboriginal Affairs,Aboriginal Affairs +381459,Aboriginal Affairs,Aboriginal Affairs +482038,Aboriginal Affairs,Aboriginal Affairs +374297,Aboriginal Affairs,Aboriginal Affairs +368895,Arts and Culture,Arts and Culture +391940,Aboriginal Affairs,Aboriginal Affairs +406821,Science and Technology,Science and Technology +366330,Aboriginal Affairs,Aboriginal Affairs +372824,Arts and Culture,Arts and Culture +372824,Broadcasting,Broadcasting +372824,Telecommunications,Telecommunications +365505,Science and Technology,Science and Technology +439214,Aboriginal Affairs,Aboriginal Affairs +387053,Science and Technology,Science and Technology +369664,Arts and Culture,Arts and Culture +365576,Science and Technology,Science and Technology +448306,Science and Technology,Science and Technology +371533,Science and Technology,Science and Technology +366568,Aboriginal Affairs,Aboriginal Affairs +384688,Aboriginal Affairs,Aboriginal Affairs +381349,Science and Technology,Science and Technology +381349,Telecommunications,Telecommunications +380804,Aboriginal Affairs,Aboriginal Affairs +382076,Telecommunications,Telecommunications +375321,Science and Technology,Science and Technology +484439,Science and Technology,Science and Technology +434943,Aboriginal Affairs,Aboriginal Affairs +399404,Science and Technology,Science and Technology +398495,Science and Technology,Sciences et technologies +463229,Aboriginal Affairs,Aboriginal Affairs +472092,Arts and Culture,Arts and Culture +380583,Science and Technology,Science and Technology +371698,Aboriginal Affairs,Aboriginal Affairs +375535,Aboriginal Affairs,Affaires autochtones +395085,Aboriginal Affairs,Affaires autochtones +366382,Science and Technology,Science and Technology +366484,Science and Technology,Science and Technology +366485,Science and Technology,Science and Technology +377382,Arts and Culture,Arts and Culture +368232,Aboriginal Affairs,Aboriginal Affairs +368232,Arts and Culture,Arts and Culture +372326,Aboriginal Affairs,Aboriginal Affairs +369720,Science and Technology,Science and Technology +388619,Aboriginal Affairs,Aboriginal Affairs +379928,Aboriginal Affairs,Aboriginal Affairs +468627,Aboriginal Affairs,Aboriginal Affairs +459955,Aboriginal Affairs,Aboriginal Affairs +456733,Aboriginal Affairs,Aboriginal Affairs +449957,Aboriginal Affairs,Aboriginal Affairs +510853,Aboriginal Affairs,Aboriginal Affairs +502137,Aboriginal Affairs,Aboriginal Affairs +502129,Aboriginal Affairs,Aboriginal Affairs +496524,Aboriginal Affairs,Aboriginal Affairs +510853,Arts and Culture,Arts and Culture +510852,Arts and Culture,Arts and Culture +468637,Arts and Culture,Arts and Culture +468627,Arts and Culture,Arts and Culture +424051,Science and Technology,Science and Technology +422706,Science and Technology,Science and Technology +375032,Science and Technology,Science and Technology +375031,Science and Technology,Science and Technology +375030,Science and Technology,Science and Technology +375029,Science and Technology,Science and Technology +375027,Science and Technology,Science and Technology +369541,Science and Technology,Science and Technology +369540,Science and Technology,Science and Technology +369538,Science and Technology,Science and Technology +369537,Science and Technology,Science and Technology +369536,Science and Technology,Science and Technology +369535,Science and Technology,Science and Technology +369533,Science and Technology,Science and Technology +369532,Science and Technology,Science and Technology +363373,Science and Technology,Science and Technology +363372,Science and Technology,Science and Technology +363371,Science and Technology,Science and Technology +363370,Science and Technology,Science and Technology +363369,Science and Technology,Science and Technology +363368,Science and Technology,Science and Technology +363367,Science and Technology,Science and Technology +363366,Science and Technology,Science and Technology +363365,Science and Technology,Science and Technology +363364,Science and Technology,Science and Technology +363363,Science and Technology,Science and Technology +363362,Science and Technology,Science and Technology +420535,Science and Technology,Science and Technology +420528,Science and Technology,Science and Technology +420527,Science and Technology,Science and Technology +398980,Science and Technology,Science and Technology +398977,Science and Technology,Science and Technology +398976,Science and Technology,Science and Technology +398974,Science and Technology,Science and Technology +398972,Science and Technology,Science and Technology +398969,Science and Technology,Science and Technology +392852,Science and Technology,Science and Technology +388619,Science and Technology,Science and Technology +388617,Science and Technology,Science and Technology +388615,Science and Technology,Science and Technology +388614,Science and Technology,Science and Technology +388613,Science and Technology,Science and Technology +379938,Science and Technology,Science and Technology +379934,Science and Technology,Science and Technology +379931,Science and Technology,Science and Technology +379928,Science and Technology,Science and Technology +379925,Science and Technology,Science and Technology +379922,Science and Technology,Science and Technology +379918,Science and Technology,Science and Technology +496518,Science and Technology,Science and Technology +490242,Science and Technology,Science and Technology +488116,Science and Technology,Science and Technology +488108,Science and Technology,Science and Technology +479809,Science and Technology,Science and Technology +479800,Science and Technology,Science and Technology +479790,Science and Technology,Science and Technology +479788,Science and Technology,Science and Technology +479775,Science and Technology,Science and Technology +463756,Science and Technology,Science and Technology +459953,Science and Technology,Science and Technology +456730,Science and Technology,Science and Technology +447284,Science and Technology,Science and Technology +447276,Science and Technology,Science and Technology +427438,Science and Technology,Science and Technology +427437,Science and Technology,Science and Technology +424070,Science and Technology,Science and Technology +356231,Aboriginal Affairs,Aboriginal Affairs +473307,Aboriginal Affairs,Aboriginal Affairs +473305,Aboriginal Affairs,Aboriginal Affairs +355188,Aboriginal Affairs,Aboriginal Affairs +354901,Aboriginal Affairs,Aboriginal Affairs +354887,Aboriginal Affairs,Aboriginal Affairs +354886,Aboriginal Affairs,Aboriginal Affairs +436251,Aboriginal Affairs,Aboriginal Affairs +405984,Aboriginal Affairs,Aboriginal Affairs +405983,Aboriginal Affairs,Aboriginal Affairs +405982,Aboriginal Affairs,Aboriginal Affairs +394791,Aboriginal Affairs,Aboriginal Affairs +357042,Aboriginal Affairs,Aboriginal Affairs +543586,Aboriginal Affairs,Aboriginal Affairs +543585,Aboriginal Affairs,Aboriginal Affairs +375669,Aboriginal Affairs,Aboriginal Affairs +369490,Aboriginal Affairs,Aboriginal Affairs +357702,Aboriginal Affairs,Aboriginal Affairs +357700,Aboriginal Affairs,Aboriginal Affairs +357699,Aboriginal Affairs,Aboriginal Affairs +392335,Aboriginal Affairs,Aboriginal Affairs +355737,Arts and Culture,Arts and Culture +355736,Arts and Culture,Arts and Culture +355739,Arts and Culture,Arts and Culture +357210,Aboriginal Affairs,Aboriginal Affairs +357205,Aboriginal Affairs,Aboriginal Affairs +356796,Science and Technology,Science and Technology +489584,Broadcasting,Broadcasting +470074,Broadcasting,Broadcasting +384574,Broadcasting,Broadcasting +384572,Broadcasting,Broadcasting +463715,Broadcasting,Broadcasting +463714,Broadcasting,Broadcasting +462140,Broadcasting,Broadcasting +462139,Broadcasting,Broadcasting +460873,Broadcasting,Broadcasting +460445,Broadcasting,Broadcasting +429666,Broadcasting,Broadcasting +422797,Broadcasting,Broadcasting +418709,Broadcasting,Broadcasting +415430,Broadcasting,Broadcasting +399004,Broadcasting,Broadcasting +399003,Broadcasting,Broadcasting +518623,Broadcasting,Broadcasting +506254,Broadcasting,Broadcasting +502326,Broadcasting,Broadcasting +502324,Broadcasting,Broadcasting +502318,Broadcasting,Broadcasting +496470,Broadcasting,Broadcasting +495275,Broadcasting,Broadcasting +418709,Telecommunications,Telecommunications +415430,Telecommunications,Telecommunications +399004,Telecommunications,Telecommunications +384574,Telecommunications,Telecommunications +384572,Telecommunications,Telecommunications +460445,Telecommunications,Telecommunications +368361,Broadcasting,Broadcasting +368359,Broadcasting,Broadcasting +368364,Broadcasting,Broadcasting +368361,Telecommunications,Telecommunications +368359,Telecommunications,Telecommunications +368364,Telecommunications,Telecommunications +436966,Broadcasting,Broadcasting +429667,Broadcasting,Broadcasting +446812,Broadcasting,Broadcasting +446811,Broadcasting,Broadcasting +436967,Telecommunications,Telecommunications +436966,Telecommunications,Telecommunications +446812,Telecommunications,Telecommunications +405868,Science and Technology,Science and Technology +361462,Science and Technology,Sciences et technologies +541597,Science and Technology,Science and Technology +484286,Science and Technology,Science and Technology +411452,Science and Technology,Science and Technology +401854,Science and Technology,Science and Technology +401849,Science and Technology,Science and Technology +468069,Arts and Culture,Arts and Culture +455089,Arts and Culture,Arts and Culture +371203,Arts and Culture,Arts and Culture +368583,Arts and Culture,Arts and Culture +455087,Arts and Culture,Arts and Culture +439694,Arts and Culture,Arts and Culture +439692,Arts and Culture,Arts and Culture +417266,Arts and Culture,Arts and Culture +417262,Arts and Culture,Arts and Culture +416039,Arts and Culture,Arts and Culture +412475,Arts and Culture,Arts and Culture +412473,Arts and Culture,Arts and Culture +412471,Arts and Culture,Arts and Culture +406661,Arts and Culture,Arts and Culture +406660,Arts and Culture,Arts and Culture +401832,Arts and Culture,Arts and Culture +401831,Arts and Culture,Arts and Culture +399744,Arts and Culture,Arts and Culture +396122,Arts and Culture,Arts and Culture +396118,Arts and Culture,Arts and Culture +384834,Arts and Culture,Arts and Culture +379782,Arts and Culture,Arts and Culture +376021,Arts and Culture,Arts and Culture +372556,Arts and Culture,Arts and Culture +371204,Arts and Culture,Arts and Culture +518249,Arts and Culture,Arts and Culture +518248,Arts and Culture,Arts and Culture +515820,Arts and Culture,Arts and Culture +511102,Arts and Culture,Arts and Culture +495978,Arts and Culture,Arts and Culture +495976,Arts and Culture,Arts and Culture +493679,Arts and Culture,Arts and Culture +491686,Arts and Culture,Arts and Culture +470502,Arts and Culture,Arts and Culture +470501,Arts and Culture,Arts and Culture +468075,Arts and Culture,Arts and Culture +468074,Arts and Culture,Arts and Culture +468073,Arts and Culture,Arts and Culture +468072,Arts and Culture,Arts and Culture +468071,Arts and Culture,Arts and Culture +497432,Aboriginal Affairs,Aboriginal Affairs +493992,Aboriginal Affairs,Aboriginal Affairs +485631,Aboriginal Affairs,Aboriginal Affairs +485553,Aboriginal Affairs,Aboriginal Affairs +483808,Aboriginal Affairs,Aboriginal Affairs +483806,Aboriginal Affairs,Aboriginal Affairs +480729,Aboriginal Affairs,Aboriginal Affairs +478952,Aboriginal Affairs,Aboriginal Affairs +478408,Aboriginal Affairs,Aboriginal Affairs +471558,Aboriginal Affairs,Aboriginal Affairs +469816,Aboriginal Affairs,Aboriginal Affairs +469122,Aboriginal Affairs,Aboriginal Affairs +463710,Aboriginal Affairs,Aboriginal Affairs +459177,Aboriginal Affairs,Aboriginal Affairs +459048,Aboriginal Affairs,Aboriginal Affairs +452334,Aboriginal Affairs,Aboriginal Affairs +452328,Aboriginal Affairs,Aboriginal Affairs +446163,Aboriginal Affairs,Aboriginal Affairs +445369,Aboriginal Affairs,Aboriginal Affairs +444732,Aboriginal Affairs,Aboriginal Affairs +444731,Aboriginal Affairs,Aboriginal Affairs +532656,Aboriginal Affairs,Aboriginal Affairs +527250,Aboriginal Affairs,Aboriginal Affairs +526856,Aboriginal Affairs,Aboriginal Affairs +525935,Aboriginal Affairs,Aboriginal Affairs +523528,Aboriginal Affairs,Aboriginal Affairs +522650,Aboriginal Affairs,Aboriginal Affairs +521914,Aboriginal Affairs,Aboriginal Affairs +521913,Aboriginal Affairs,Aboriginal Affairs +521293,Aboriginal Affairs,Aboriginal Affairs +521000,Aboriginal Affairs,Aboriginal Affairs +520906,Aboriginal Affairs,Aboriginal Affairs +516686,Aboriginal Affairs,Aboriginal Affairs +516192,Aboriginal Affairs,Aboriginal Affairs +516106,Aboriginal Affairs,Aboriginal Affairs +514919,Aboriginal Affairs,Aboriginal Affairs +512159,Aboriginal Affairs,Aboriginal Affairs +512158,Aboriginal Affairs,Aboriginal Affairs +511959,Aboriginal Affairs,Aboriginal Affairs +507267,Aboriginal Affairs,Aboriginal Affairs +507262,Aboriginal Affairs,Aboriginal Affairs +507259,Aboriginal Affairs,Aboriginal Affairs +506820,Aboriginal Affairs,Aboriginal Affairs +503783,Aboriginal Affairs,Aboriginal Affairs +503772,Aboriginal Affairs,Aboriginal Affairs +503146,Aboriginal Affairs,Aboriginal Affairs +500375,Aboriginal Affairs,Aboriginal Affairs +498553,Aboriginal Affairs,Aboriginal Affairs +498550,Aboriginal Affairs,Aboriginal Affairs +497496,Aboriginal Affairs,Aboriginal Affairs +497435,Aboriginal Affairs,Aboriginal Affairs +394106,Arts and Culture,Arts and Culture +385742,Arts and Culture,Arts and Culture +368569,Arts and Culture,Arts and Culture +406563,Arts and Culture,Arts and Culture +406562,Arts and Culture,Arts and Culture +406557,Arts and Culture,Arts and Culture +404947,Arts and Culture,Arts and Culture +404945,Arts and Culture,Arts and Culture +404944,Arts and Culture,Arts and Culture +404933,Arts and Culture,Arts and Culture +402889,Arts and Culture,Arts and Culture +402888,Arts and Culture,Arts and Culture +402886,Arts and Culture,Arts and Culture +402885,Arts and Culture,Arts and Culture +402879,Arts and Culture,Arts and Culture +402834,Arts and Culture,Arts and Culture +400075,Arts and Culture,Arts and Culture +400074,Arts and Culture,Arts and Culture +400073,Arts and Culture,Arts and Culture +400072,Arts and Culture,Arts and Culture +400071,Arts and Culture,Arts and Culture +371178,Science and Technology,Science and Technology +369614,Science and Technology,Science and Technology +364243,Aboriginal Affairs,Aboriginal Affairs +364242,Aboriginal Affairs,Aboriginal Affairs +364243,Arts and Culture,Arts and Culture +364242,Arts and Culture,Arts and Culture +473664,Arts and Culture,Arts and Culture +523142,Arts and Culture,Arts and Culture +372553,Arts and Culture,Arts and Culture +439693,Arts and Culture,Arts and Culture +382287,Arts and Culture,Arts and Culture +482111,Arts and Culture,Arts and Culture +482110,Arts and Culture,Arts and Culture +480223,Arts and Culture,Arts and Culture +371905,Arts and Culture,Arts and Culture +371814,Arts and Culture,Arts and Culture +371941,Arts and Culture,Arts and Culture +371929,Arts and Culture,Arts and Culture +369443,Aboriginal Affairs,Aboriginal Affairs +365066,Aboriginal Affairs,Aboriginal Affairs +385957,Aboriginal Affairs,Aboriginal Affairs +385956,Aboriginal Affairs,Aboriginal Affairs +385955,Aboriginal Affairs,Aboriginal Affairs +385953,Aboriginal Affairs,Aboriginal Affairs +385952,Aboriginal Affairs,Aboriginal Affairs +380007,Aboriginal Affairs,Aboriginal Affairs +372344,Aboriginal Affairs,Aboriginal Affairs +369459,Aboriginal Affairs,Aboriginal Affairs +369457,Aboriginal Affairs,Aboriginal Affairs +369455,Aboriginal Affairs,Aboriginal Affairs +369454,Aboriginal Affairs,Aboriginal Affairs +369452,Aboriginal Affairs,Aboriginal Affairs +369953,Science and Technology,Science and Technology +369951,Science and Technology,Science and Technology +378452,Science and Technology,Science and Technology +378342,Science and Technology,Science and Technology +378341,Science and Technology,Science and Technology +378339,Science and Technology,Science and Technology +373767,Science and Technology,Science and Technology +373695,Science and Technology,Science and Technology +373655,Science and Technology,Science and Technology +370029,Science and Technology,Science and Technology +369959,Science and Technology,Science and Technology +369958,Science and Technology,Science and Technology +369957,Science and Technology,Science and Technology +439755,Science and Technology,Science and Technology +439753,Science and Technology,Science and Technology +414883,Science and Technology,Science and Technology +414840,Science and Technology,Science and Technology +414444,Science and Technology,Science and Technology +414443,Science and Technology,Science and Technology +414442,Science and Technology,Science and Technology +414441,Science and Technology,Science and Technology +414440,Science and Technology,Science and Technology +414436,Science and Technology,Science and Technology +439759,Science and Technology,Science and Technology +439758,Science and Technology,Science and Technology +439757,Science and Technology,Science and Technology +364883,Broadcasting,Radiodiffusion +387259,Aboriginal Affairs,Aboriginal Affairs +387258,Aboriginal Affairs,Aboriginal Affairs +374486,Aboriginal Affairs,Aboriginal Affairs +374473,Aboriginal Affairs,Aboriginal Affairs +374467,Aboriginal Affairs,Aboriginal Affairs +374464,Aboriginal Affairs,Aboriginal Affairs +365074,Aboriginal Affairs,Aboriginal Affairs +365073,Aboriginal Affairs,Aboriginal Affairs +365071,Aboriginal Affairs,Aboriginal Affairs +365070,Aboriginal Affairs,Aboriginal Affairs +394793,Aboriginal Affairs,Aboriginal Affairs +387266,Aboriginal Affairs,Aboriginal Affairs +387265,Aboriginal Affairs,Aboriginal Affairs +367632,Arts and Culture,Arts and Culture +367631,Arts and Culture,Arts and Culture +367635,Arts and Culture,Arts and Culture +367634,Arts and Culture,Arts and Culture +366606,Science and Technology,Science and Technology +366605,Science and Technology,Science and Technology +387830,Science and Technology,Science and Technology +387826,Science and Technology,Science and Technology +387825,Science and Technology,Science and Technology +365077,Aboriginal Affairs,Aboriginal Affairs +365076,Aboriginal Affairs,Aboriginal Affairs +374496,Aboriginal Affairs,Aboriginal Affairs +374495,Aboriginal Affairs,Aboriginal Affairs +374493,Aboriginal Affairs,Aboriginal Affairs +374492,Aboriginal Affairs,Aboriginal Affairs +391179,Aboriginal Affairs,Aboriginal Affairs +387047,Aboriginal Affairs,Aboriginal Affairs +380812,Aboriginal Affairs,Aboriginal Affairs +380810,Aboriginal Affairs,Aboriginal Affairs +378736,Aboriginal Affairs,Aboriginal Affairs +373603,Aboriginal Affairs,Aboriginal Affairs +482037,Aboriginal Affairs,Aboriginal Affairs +482036,Aboriginal Affairs,Aboriginal Affairs +464496,Aboriginal Affairs,Aboriginal Affairs +464491,Aboriginal Affairs,Aboriginal Affairs +464488,Aboriginal Affairs,Aboriginal Affairs +464456,Aboriginal Affairs,Aboriginal Affairs +464452,Aboriginal Affairs,Aboriginal Affairs +464450,Aboriginal Affairs,Aboriginal Affairs +464446,Aboriginal Affairs,Aboriginal Affairs +464441,Aboriginal Affairs,Aboriginal Affairs +464437,Aboriginal Affairs,Aboriginal Affairs +458369,Aboriginal Affairs,Aboriginal Affairs +449895,Aboriginal Affairs,Aboriginal Affairs +449893,Aboriginal Affairs,Aboriginal Affairs +449891,Aboriginal Affairs,Aboriginal Affairs +449890,Aboriginal Affairs,Aboriginal Affairs +449881,Aboriginal Affairs,Aboriginal Affairs +449874,Aboriginal Affairs,Aboriginal Affairs +442501,Aboriginal Affairs,Aboriginal Affairs +442500,Aboriginal Affairs,Aboriginal Affairs +442499,Aboriginal Affairs,Aboriginal Affairs +442497,Aboriginal Affairs,Aboriginal Affairs +543753,Aboriginal Affairs,Aboriginal Affairs +541264,Aboriginal Affairs,Aboriginal Affairs +541262,Aboriginal Affairs,Aboriginal Affairs +541258,Aboriginal Affairs,Aboriginal Affairs +539622,Aboriginal Affairs,Aboriginal Affairs +539621,Aboriginal Affairs,Aboriginal Affairs +539620,Aboriginal Affairs,Aboriginal Affairs +539619,Aboriginal Affairs,Aboriginal Affairs +539617,Aboriginal Affairs,Aboriginal Affairs +536976,Aboriginal Affairs,Aboriginal Affairs +536975,Aboriginal Affairs,Aboriginal Affairs +536972,Aboriginal Affairs,Aboriginal Affairs +521885,Aboriginal Affairs,Aboriginal Affairs +521883,Aboriginal Affairs,Aboriginal Affairs +521882,Aboriginal Affairs,Aboriginal Affairs +521881,Aboriginal Affairs,Aboriginal Affairs +521880,Aboriginal Affairs,Aboriginal Affairs +521798,Aboriginal Affairs,Aboriginal Affairs +519870,Aboriginal Affairs,Aboriginal Affairs +519358,Aboriginal Affairs,Aboriginal Affairs +515367,Aboriginal Affairs,Aboriginal Affairs +513782,Aboriginal Affairs,Aboriginal Affairs +513778,Aboriginal Affairs,Aboriginal Affairs +512843,Aboriginal Affairs,Aboriginal Affairs +512838,Aboriginal Affairs,Aboriginal Affairs +511228,Aboriginal Affairs,Aboriginal Affairs +511226,Aboriginal Affairs,Aboriginal Affairs +511223,Aboriginal Affairs,Aboriginal Affairs +511219,Aboriginal Affairs,Aboriginal Affairs +511217,Aboriginal Affairs,Aboriginal Affairs +511215,Aboriginal Affairs,Aboriginal Affairs +511213,Aboriginal Affairs,Aboriginal Affairs +511207,Aboriginal Affairs,Aboriginal Affairs +511204,Aboriginal Affairs,Aboriginal Affairs +511201,Aboriginal Affairs,Aboriginal Affairs +511199,Aboriginal Affairs,Aboriginal Affairs +511197,Aboriginal Affairs,Aboriginal Affairs +511196,Aboriginal Affairs,Aboriginal Affairs +511195,Aboriginal Affairs,Aboriginal Affairs +511193,Aboriginal Affairs,Aboriginal Affairs +511120,Aboriginal Affairs,Aboriginal Affairs +502261,Aboriginal Affairs,Aboriginal Affairs +502259,Aboriginal Affairs,Aboriginal Affairs +502255,Aboriginal Affairs,Aboriginal Affairs +502254,Aboriginal Affairs,Aboriginal Affairs +502251,Aboriginal Affairs,Aboriginal Affairs +502249,Aboriginal Affairs,Aboriginal Affairs +502248,Aboriginal Affairs,Aboriginal Affairs +502246,Aboriginal Affairs,Aboriginal Affairs +502245,Aboriginal Affairs,Aboriginal Affairs +502241,Aboriginal Affairs,Aboriginal Affairs +502235,Aboriginal Affairs,Aboriginal Affairs +502232,Aboriginal Affairs,Aboriginal Affairs +502200,Aboriginal Affairs,Aboriginal Affairs +498780,Aboriginal Affairs,Aboriginal Affairs +498777,Aboriginal Affairs,Aboriginal Affairs +498773,Aboriginal Affairs,Aboriginal Affairs +498768,Aboriginal Affairs,Aboriginal Affairs +498767,Aboriginal Affairs,Aboriginal Affairs +498765,Aboriginal Affairs,Aboriginal Affairs +498764,Aboriginal Affairs,Aboriginal Affairs +498762,Aboriginal Affairs,Aboriginal Affairs +498753,Aboriginal Affairs,Aboriginal Affairs +498751,Aboriginal Affairs,Aboriginal Affairs +498748,Aboriginal Affairs,Aboriginal Affairs +498746,Aboriginal Affairs,Aboriginal Affairs +494918,Aboriginal Affairs,Aboriginal Affairs +494916,Aboriginal Affairs,Aboriginal Affairs +494913,Aboriginal Affairs,Aboriginal Affairs +494912,Aboriginal Affairs,Aboriginal Affairs +494908,Aboriginal Affairs,Aboriginal Affairs +489685,Aboriginal Affairs,Aboriginal Affairs +489640,Aboriginal Affairs,Aboriginal Affairs +489639,Aboriginal Affairs,Aboriginal Affairs +486434,Aboriginal Affairs,Aboriginal Affairs +486432,Aboriginal Affairs,Aboriginal Affairs +486430,Aboriginal Affairs,Aboriginal Affairs +486429,Aboriginal Affairs,Aboriginal Affairs +486428,Aboriginal Affairs,Aboriginal Affairs +486425,Aboriginal Affairs,Aboriginal Affairs +486424,Aboriginal Affairs,Aboriginal Affairs +485824,Aboriginal Affairs,Aboriginal Affairs +484743,Aboriginal Affairs,Aboriginal Affairs +484740,Aboriginal Affairs,Aboriginal Affairs +484735,Aboriginal Affairs,Aboriginal Affairs +484732,Aboriginal Affairs,Aboriginal Affairs +484727,Aboriginal Affairs,Aboriginal Affairs +484725,Aboriginal Affairs,Aboriginal Affairs +484721,Aboriginal Affairs,Aboriginal Affairs +482040,Aboriginal Affairs,Aboriginal Affairs +482039,Aboriginal Affairs,Aboriginal Affairs +373278,Aboriginal Affairs,Aboriginal Affairs +383398,Aboriginal Affairs,Aboriginal Affairs +374852,Aboriginal Affairs,Aboriginal Affairs +391942,Aboriginal Affairs,Aboriginal Affairs +374852,Science and Technology,Science and Technology +372822,Arts and Culture,Arts and Culture +372818,Arts and Culture,Arts and Culture +372833,Arts and Culture,Arts and Culture +372832,Arts and Culture,Arts and Culture +372831,Arts and Culture,Arts and Culture +372830,Arts and Culture,Arts and Culture +372829,Arts and Culture,Arts and Culture +372828,Arts and Culture,Arts and Culture +372826,Arts and Culture,Arts and Culture +372825,Arts and Culture,Arts and Culture +372822,Broadcasting,Broadcasting +372818,Broadcasting,Broadcasting +372833,Broadcasting,Broadcasting +372832,Broadcasting,Broadcasting +372831,Broadcasting,Broadcasting +372830,Broadcasting,Broadcasting +372829,Broadcasting,Broadcasting +372828,Broadcasting,Broadcasting +372826,Broadcasting,Broadcasting +372825,Broadcasting,Broadcasting +372822,Telecommunications,Telecommunications +372818,Telecommunications,Telecommunications +372833,Telecommunications,Telecommunications +372832,Telecommunications,Telecommunications +372831,Telecommunications,Telecommunications +372830,Telecommunications,Telecommunications +372829,Telecommunications,Telecommunications +372828,Telecommunications,Telecommunications +372826,Telecommunications,Telecommunications +372825,Telecommunications,Telecommunications +378018,Science and Technology,Science and Technology +440232,Science and Technology,Science and Technology +439213,Aboriginal Affairs,Aboriginal Affairs +487742,Aboriginal Affairs,Aboriginal Affairs +365434,Aboriginal Affairs,Aboriginal Affairs +365433,Aboriginal Affairs,Aboriginal Affairs +439223,Aboriginal Affairs,Aboriginal Affairs +439221,Aboriginal Affairs,Aboriginal Affairs +369111,Science and Technology,Science and Technology +369661,Arts and Culture,Arts and Culture +369636,Arts and Culture,Arts and Culture +370817,Arts and Culture,Arts and Culture +370815,Arts and Culture,Arts and Culture +370812,Arts and Culture,Arts and Culture +422672,Science and Technology,Science and Technology +401586,Science and Technology,Science and Technology +461326,Science and Technology,Science and Technology +448310,Science and Technology,Science and Technology +366588,Science and Technology,Science and Technology +365612,Science and Technology,Science and Technology +384687,Aboriginal Affairs,Aboriginal Affairs +384686,Aboriginal Affairs,Aboriginal Affairs +384685,Aboriginal Affairs,Aboriginal Affairs +384684,Aboriginal Affairs,Aboriginal Affairs +370345,Aboriginal Affairs,Aboriginal Affairs +370344,Aboriginal Affairs,Aboriginal Affairs +370343,Aboriginal Affairs,Aboriginal Affairs +421281,Aboriginal Affairs,Aboriginal Affairs +398696,Aboriginal Affairs,Aboriginal Affairs +381343,Science and Technology,Science and Technology +376831,Science and Technology,Science and Technology +385413,Science and Technology,Science and Technology +381360,Science and Technology,Science and Technology +381357,Science and Technology,Science and Technology +381355,Science and Technology,Science and Technology +381352,Science and Technology,Science and Technology +381343,Telecommunications,Telecommunications +376831,Telecommunications,Telecommunications +372602,Telecommunications,Telecommunications +372599,Telecommunications,Telecommunications +372581,Telecommunications,Telecommunications +369442,Telecommunications,Telecommunications +392876,Telecommunications,Telecommunications +392874,Telecommunications,Telecommunications +392872,Telecommunications,Telecommunications +392871,Telecommunications,Telecommunications +392870,Telecommunications,Telecommunications +392764,Telecommunications,Telecommunications +392762,Telecommunications,Telecommunications +390038,Telecommunications,Telecommunications +385413,Telecommunications,Telecommunications +383939,Telecommunications,Telecommunications +383937,Telecommunications,Telecommunications +382515,Telecommunications,Telecommunications +382512,Telecommunications,Telecommunications +381360,Telecommunications,Telecommunications +381357,Telecommunications,Telecommunications +381355,Telecommunications,Telecommunications +381352,Telecommunications,Telecommunications +380803,Aboriginal Affairs,Aboriginal Affairs +377851,Aboriginal Affairs,Aboriginal Affairs +375520,Aboriginal Affairs,Aboriginal Affairs +375519,Aboriginal Affairs,Aboriginal Affairs +434945,Aboriginal Affairs,Aboriginal Affairs +434237,Aboriginal Affairs,Aboriginal Affairs +434055,Aboriginal Affairs,Aboriginal Affairs +434054,Aboriginal Affairs,Aboriginal Affairs +431682,Aboriginal Affairs,Aboriginal Affairs +429433,Aboriginal Affairs,Aboriginal Affairs +426958,Aboriginal Affairs,Aboriginal Affairs +420357,Aboriginal Affairs,Aboriginal Affairs +410571,Aboriginal Affairs,Aboriginal Affairs +410569,Aboriginal Affairs,Aboriginal Affairs +384571,Aboriginal Affairs,Aboriginal Affairs +384559,Aboriginal Affairs,Aboriginal Affairs +384222,Aboriginal Affairs,Aboriginal Affairs +381926,Aboriginal Affairs,Aboriginal Affairs +373277,Science and Technology,Science and Technology +373271,Science and Technology,Science and Technology +484234,Science and Technology,Science and Technology +481812,Science and Technology,Science and Technology +505168,Science and Technology,Science and Technology +505164,Science and Technology,Science and Technology +505158,Science and Technology,Science and Technology +502020,Science and Technology,Science and Technology +502018,Science and Technology,Science and Technology +432791,Aboriginal Affairs,Aboriginal Affairs +431556,Aboriginal Affairs,Aboriginal Affairs +401395,Aboriginal Affairs,Aboriginal Affairs +379697,Aboriginal Affairs,Aboriginal Affairs +434947,Aboriginal Affairs,Aboriginal Affairs +434944,Aboriginal Affairs,Aboriginal Affairs +379697,Science and Technology,Science and Technology +398493,Science and Technology,Sciences et technologies +398489,Science and Technology,Sciences et technologies +394043,Science and Technology,Sciences et technologies +394041,Science and Technology,Sciences et technologies +391891,Science and Technology,Sciences et technologies +391889,Science and Technology,Sciences et technologies +386828,Science and Technology,Sciences et technologies +384576,Science and Technology,Sciences et technologies +384449,Science and Technology,Sciences et technologies +384231,Science and Technology,Sciences et technologies +383201,Science and Technology,Sciences et technologies +383199,Science and Technology,Sciences et technologies +383198,Science and Technology,Sciences et technologies +383197,Science and Technology,Sciences et technologies +383196,Science and Technology,Sciences et technologies +383195,Science and Technology,Sciences et technologies +382116,Science and Technology,Sciences et technologies +381858,Science and Technology,Sciences et technologies +380750,Science and Technology,Sciences et technologies +380749,Science and Technology,Sciences et technologies +380748,Science and Technology,Sciences et technologies +380365,Science and Technology,Sciences et technologies +380353,Science and Technology,Sciences et technologies +380352,Science and Technology,Sciences et technologies +380351,Science and Technology,Sciences et technologies +380350,Science and Technology,Sciences et technologies +380348,Science and Technology,Sciences et technologies +380347,Science and Technology,Sciences et technologies +380346,Science and Technology,Sciences et technologies +378581,Science and Technology,Sciences et technologies +378579,Science and Technology,Sciences et technologies +378578,Science and Technology,Sciences et technologies +378575,Science and Technology,Sciences et technologies +378570,Science and Technology,Sciences et technologies +378567,Science and Technology,Sciences et technologies +378563,Science and Technology,Sciences et technologies +378262,Science and Technology,Sciences et technologies +378261,Science and Technology,Sciences et technologies +378260,Science and Technology,Sciences et technologies +378082,Science and Technology,Sciences et technologies +378081,Science and Technology,Sciences et technologies +378080,Science and Technology,Sciences et technologies +375944,Science and Technology,Sciences et technologies +375943,Science and Technology,Sciences et technologies +375940,Science and Technology,Sciences et technologies +375935,Science and Technology,Sciences et technologies +371213,Science and Technology,Sciences et technologies +541280,Science and Technology,Sciences et technologies +499848,Science and Technology,Sciences et technologies +454666,Science and Technology,Sciences et technologies +454102,Science and Technology,Sciences et technologies +454100,Science and Technology,Sciences et technologies +454003,Science and Technology,Sciences et technologies +435024,Science and Technology,Sciences et technologies +432065,Science and Technology,Sciences et technologies +430494,Science and Technology,Sciences et technologies +430488,Science and Technology,Sciences et technologies +427652,Science and Technology,Sciences et technologies +427647,Science and Technology,Sciences et technologies +419861,Science and Technology,Sciences et technologies +419853,Science and Technology,Sciences et technologies +419842,Science and Technology,Sciences et technologies +419839,Science and Technology,Sciences et technologies +419835,Science and Technology,Sciences et technologies +419829,Science and Technology,Sciences et technologies +419826,Science and Technology,Sciences et technologies +419821,Science and Technology,Sciences et technologies +419811,Science and Technology,Sciences et technologies +419794,Science and Technology,Sciences et technologies +416105,Science and Technology,Sciences et technologies +416069,Science and Technology,Sciences et technologies +400218,Science and Technology,Sciences et technologies +444421,Aboriginal Affairs,Aboriginal Affairs +428182,Aboriginal Affairs,Aboriginal Affairs +423537,Aboriginal Affairs,Aboriginal Affairs +419280,Aboriginal Affairs,Aboriginal Affairs +418710,Aboriginal Affairs,Aboriginal Affairs +403438,Aboriginal Affairs,Aboriginal Affairs +403437,Aboriginal Affairs,Aboriginal Affairs +391863,Aboriginal Affairs,Aboriginal Affairs +391862,Aboriginal Affairs,Aboriginal Affairs +391861,Aboriginal Affairs,Aboriginal Affairs +383323,Aboriginal Affairs,Aboriginal Affairs +380584,Aboriginal Affairs,Aboriginal Affairs +380583,Aboriginal Affairs,Aboriginal Affairs +380582,Aboriginal Affairs,Aboriginal Affairs +378136,Aboriginal Affairs,Aboriginal Affairs +373288,Aboriginal Affairs,Aboriginal Affairs +373287,Aboriginal Affairs,Aboriginal Affairs +373285,Aboriginal Affairs,Aboriginal Affairs +373283,Aboriginal Affairs,Aboriginal Affairs +373281,Aboriginal Affairs,Aboriginal Affairs +520999,Aboriginal Affairs,Aboriginal Affairs +500302,Aboriginal Affairs,Aboriginal Affairs +488590,Aboriginal Affairs,Aboriginal Affairs +482607,Aboriginal Affairs,Aboriginal Affairs +481315,Aboriginal Affairs,Aboriginal Affairs +480809,Aboriginal Affairs,Aboriginal Affairs +476158,Aboriginal Affairs,Aboriginal Affairs +474443,Aboriginal Affairs,Aboriginal Affairs +472097,Aboriginal Affairs,Aboriginal Affairs +472096,Aboriginal Affairs,Aboriginal Affairs +463671,Aboriginal Affairs,Aboriginal Affairs +463670,Aboriginal Affairs,Aboriginal Affairs +463667,Aboriginal Affairs,Aboriginal Affairs +463671,Arts and Culture,Arts and Culture +463229,Arts and Culture,Arts and Culture +380583,Arts and Culture,Arts and Culture +373283,Arts and Culture,Arts and Culture +488590,Arts and Culture,Arts and Culture +481315,Arts and Culture,Arts and Culture +476158,Arts and Culture,Arts and Culture +378136,Science and Technology,Science and Technology +373281,Science and Technology,Science and Technology +403440,Science and Technology,Science and Technology +380584,Science and Technology,Science and Technology +371697,Aboriginal Affairs,Aboriginal Affairs +395083,Aboriginal Affairs,Affaires autochtones +394138,Aboriginal Affairs,Affaires autochtones +384960,Aboriginal Affairs,Affaires autochtones +384959,Aboriginal Affairs,Affaires autochtones +381915,Aboriginal Affairs,Affaires autochtones +468785,Aboriginal Affairs,Affaires autochtones +437874,Aboriginal Affairs,Affaires autochtones +395166,Aboriginal Affairs,Affaires autochtones +377356,Arts and Culture,Arts and Culture +377351,Arts and Culture,Arts and Culture +371620,Arts and Culture,Arts and Culture +371619,Arts and Culture,Arts and Culture +371618,Arts and Culture,Arts and Culture +371617,Arts and Culture,Arts and Culture +371616,Arts and Culture,Arts and Culture +371614,Arts and Culture,Arts and Culture +371613,Arts and Culture,Arts and Culture +371611,Arts and Culture,Arts and Culture +369269,Arts and Culture,Arts and Culture +459734,Arts and Culture,Arts and Culture +458899,Arts and Culture,Arts and Culture +458898,Arts and Culture,Arts and Culture +458897,Arts and Culture,Arts and Culture +458895,Arts and Culture,Arts and Culture +458893,Arts and Culture,Arts and Culture +457784,Arts and Culture,Arts and Culture +457783,Arts and Culture,Arts and Culture +456175,Arts and Culture,Arts and Culture +456174,Arts and Culture,Arts and Culture +456173,Arts and Culture,Arts and Culture +456172,Arts and Culture,Arts and Culture +456171,Arts and Culture,Arts and Culture +456170,Arts and Culture,Arts and Culture +456169,Arts and Culture,Arts and Culture +456168,Arts and Culture,Arts and Culture +456167,Arts and Culture,Arts and Culture +456165,Arts and Culture,Arts and Culture +456164,Arts and Culture,Arts and Culture +456162,Arts and Culture,Arts and Culture +456161,Arts and Culture,Arts and Culture +449186,Arts and Culture,Arts and Culture +449185,Arts and Culture,Arts and Culture +449182,Arts and Culture,Arts and Culture +449181,Arts and Culture,Arts and Culture +449179,Arts and Culture,Arts and Culture +445048,Arts and Culture,Arts and Culture +442542,Arts and Culture,Arts and Culture +442539,Arts and Culture,Arts and Culture +442538,Arts and Culture,Arts and Culture +438128,Arts and Culture,Arts and Culture +413613,Arts and Culture,Arts and Culture +413611,Arts and Culture,Arts and Culture +413609,Arts and Culture,Arts and Culture +396761,Arts and Culture,Arts and Culture +396759,Arts and Culture,Arts and Culture +396757,Arts and Culture,Arts and Culture +396754,Arts and Culture,Arts and Culture +394399,Arts and Culture,Arts and Culture +394019,Arts and Culture,Arts and Culture +392436,Arts and Culture,Arts and Culture +387094,Arts and Culture,Arts and Culture +387093,Arts and Culture,Arts and Culture +387092,Arts and Culture,Arts and Culture +387091,Arts and Culture,Arts and Culture +387088,Arts and Culture,Arts and Culture +379471,Arts and Culture,Arts and Culture +379469,Arts and Culture,Arts and Culture +379466,Arts and Culture,Arts and Culture +379464,Arts and Culture,Arts and Culture +379461,Arts and Culture,Arts and Culture +379460,Arts and Culture,Arts and Culture +379459,Arts and Culture,Arts and Culture +379457,Arts and Culture,Arts and Culture +372325,Aboriginal Affairs,Aboriginal Affairs +372324,Aboriginal Affairs,Aboriginal Affairs +366733,International Trade,International Trade +396192,International Trade,International Trade +396190,International Trade,International Trade +396190,Agriculture,Agriculture +396186,Agriculture,Agriculture +366733,Agriculture,Agriculture +396190,Consumer Issues,Consumer Issues +396186,Consumer Issues,Consumer Issues +396190,Health,Health +396186,Health,Health +370604,Energy,Energy +370176,Energy,Energy +370615,Energy,Energy +370614,Energy,Energy +370612,Energy,Energy +370611,Energy,Energy +370609,Energy,Energy +370608,Energy,Energy +370607,Energy,Energy +370180,Environment,Environment +368321,Environment,Environment +370614,Environment,Environment +370612,Environment,Environment +370611,Environment,Environment +370608,Environment,Environment +370181,International Trade,International Trade +370179,International Trade,International Trade +370183,Transportation,Transportation +370182,Transportation,Transportation +370343,Economic Development,Economic Development +398696,Economic Development,Economic Development +384688,Economic Development,Economic Development +384686,Economic Development,Economic Development +384685,Economic Development,Economic Development +370345,Economic Development,Economic Development +421281,Energy,Energy +398696,Energy,Energy +384688,Energy,Energy +384687,Energy,Energy +384685,Energy,Energy +384684,Energy,Energy +370345,Energy,Energy +370344,Energy,Energy +370344,Infrastructure,Infrastructure +370343,Infrastructure,Infrastructure +384687,Infrastructure,Infrastructure +384686,Infrastructure,Infrastructure +370344,Regional Development,Regional Development +370343,Regional Development,Regional Development +384688,Regional Development,Regional Development +384687,Regional Development,Regional Development +384686,Regional Development,Regional Development +384685,Regional Development,Regional Development +372339,Consumer Issues,Consumer Issues +372338,Consumer Issues,Consumer Issues +378852,Consumer Issues,Consumer Issues +378850,Consumer Issues,Consumer Issues +376451,Consumer Issues,Consumer Issues +376450,Consumer Issues,Consumer Issues +376448,Consumer Issues,Consumer Issues +376444,Consumer Issues,Consumer Issues +496453,Agriculture,Agriculture +496452,Agriculture,Agriculture +370761,Agriculture,Agriculture +370759,Agriculture,Agriculture +369711,Agriculture,Agriculture +464803,Agriculture,Agriculture +444854,Agriculture,Agriculture +419411,Agriculture,Agriculture +523460,Agriculture,Agriculture +523459,Agriculture,Agriculture +523458,Agriculture,Agriculture +496456,Agriculture,Agriculture +496455,Agriculture,Agriculture +496453,Consumer Issues,Consumer Issues +496452,Consumer Issues,Consumer Issues +370761,Consumer Issues,Consumer Issues +370759,Consumer Issues,Consumer Issues +369711,Consumer Issues,Consumer Issues +464803,Consumer Issues,Consumer Issues +444854,Consumer Issues,Consumer Issues +523460,Consumer Issues,Consumer Issues +523459,Consumer Issues,Consumer Issues +523458,Consumer Issues,Consumer Issues +496456,Consumer Issues,Consumer Issues +496455,Consumer Issues,Consumer Issues +496452,Environment,Environment +464803,Environment,Environment +370761,Environment,Environment +370759,Environment,Environment +523460,Environment,Environment +523459,Environment,Environment +523458,Environment,Environment +496456,Environment,Environment +496455,Environment,Environment +496454,Environment,Environment +496453,Health,Health +496452,Health,Health +419411,Health,Health +464803,Health,Health +444854,Health,Health +523460,Health,Health +523459,Health,Health +523458,Health,Health +496456,Health,Health +496455,Health,Health +419411,International Trade,International Trade +370761,International Trade,International Trade +370759,International Trade,International Trade +369711,International Trade,International Trade +523460,International Trade,International Trade +523459,International Trade,International Trade +523458,International Trade,International Trade +496456,International Trade,International Trade +496455,International Trade,International Trade +496454,International Trade,International Trade +496453,International Trade,International Trade +496452,International Trade,International Trade +464803,International Trade,International Trade +369441,Energy,Energy +369438,Energy,Energy +369574,Energy,Energy +369447,Energy,Energy +369446,Energy,Energy +381343,Industry,Industry +376831,Industry,Industry +381360,Industry,Industry +381357,Industry,Industry +381355,Industry,Industry +381352,Industry,Industry +372602,Infrastructure,Infrastructure +372599,Infrastructure,Infrastructure +369442,Infrastructure,Infrastructure +392764,Infrastructure,Infrastructure +392762,Infrastructure,Infrastructure +385413,Infrastructure,Infrastructure +382515,Infrastructure,Infrastructure +382512,Infrastructure,Infrastructure +382515,Municipalities,Municipalities +382512,Municipalities,Municipalities +392764,Municipalities,Municipalities +392870,Regional Development,Regional Development +392764,Regional Development,Regional Development +385413,Regional Development,Regional Development +382515,Regional Development,Regional Development +382512,Regional Development,Regional Development +381360,Regional Development,Regional Development +381357,Regional Development,Regional Development +381355,Regional Development,Regional Development +381352,Regional Development,Regional Development +381349,Regional Development,Regional Development +381343,Regional Development,Regional Development +372599,Regional Development,Regional Development +372581,Regional Development,Regional Development +369442,Regional Development,Regional Development +392876,Regional Development,Regional Development +392874,Regional Development,Regional Development +381349,Research and Development,Research and Development +381343,Research and Development,Research and Development +372602,Research and Development,Research and Development +392872,Research and Development,Research and Development +381360,Research and Development,Research and Development +381357,Research and Development,Research and Development +381355,Research and Development,Research and Development +377851,Education,Education +375520,Education,Education +410571,Education,Education +410569,Education,Education +384571,Education,Education +384559,Education,Education +380803,Employment and Training,Employment and Training +375520,Employment and Training,Employment and Training +410571,Employment and Training,Employment and Training +410569,Employment and Training,Employment and Training +384571,Employment and Training,Employment and Training +384559,Employment and Training,Employment and Training +384222,Employment and Training,Employment and Training +381926,Employment and Training,Employment and Training +375520,Health,Health +375519,Health,Health +434945,Health,Health +434237,Health,Health +434055,Health,Health +434054,Health,Health +431682,Health,Health +429433,Health,Health +426958,Health,Health +420357,Health,Health +410571,Health,Health +410569,Health,Health +384742,Health,Health +384571,Health,Health +384559,Health,Health +384222,Health,Health +380804,Health,Health +380803,Research and Development,Research and Development +375520,Research and Development,Research and Development +410571,Research and Development,Research and Development +410569,Research and Development,Research and Development +384742,Research and Development,Research and Development +384571,Research and Development,Research and Development +384559,Research and Development,Research and Development +384222,Research and Development,Research and Development +502020,Government Procurement,Government Procurement +372012,Health,Health +432791,Infrastructure,Infrastructure +431556,Infrastructure,Infrastructure +401395,Infrastructure,Infrastructure +379697,Infrastructure,Infrastructure +434947,Infrastructure,Infrastructure +434944,Infrastructure,Infrastructure +379697,Regional Development,Regional Development +432791,Education,Education +454100,Budget,Budget +454003,Budget,Budget +492582,Budget,Budget +474171,Budget,Budget +474170,Budget,Budget +474168,Budget,Budget +472550,Budget,Budget +516822,Education,Éducation +515370,Education,Éducation +386823,Education,Éducation +384576,Education,Éducation +384449,Education,Éducation +384231,Education,Éducation +383201,Education,Éducation +383199,Education,Éducation +383198,Education,Éducation +383197,Education,Éducation +383196,Education,Éducation +383195,Education,Éducation +382116,Education,Éducation +381858,Education,Éducation +380750,Education,Éducation +380749,Education,Éducation +380748,Education,Éducation +380365,Education,Éducation +380353,Education,Éducation +380352,Education,Éducation +380351,Education,Éducation +380350,Education,Éducation +380348,Education,Éducation +380347,Education,Éducation +380346,Education,Éducation +378581,Education,Éducation +378579,Education,Éducation +378578,Education,Éducation +378575,Education,Éducation +378570,Education,Éducation +378567,Education,Éducation +378563,Education,Éducation +378262,Education,Éducation +378261,Education,Éducation +378260,Education,Éducation +378082,Education,Éducation +378081,Education,Éducation +494588,Education,Éducation +490479,Education,Éducation +486698,Education,Éducation +484615,Education,Éducation +484613,Education,Éducation +484603,Education,Éducation +467794,Education,Éducation +467771,Education,Éducation +467758,Education,Éducation +467731,Education,Éducation +467704,Education,Éducation +467685,Education,Éducation +467661,Education,Éducation +467500,Education,Éducation +467378,Education,Éducation +467373,Education,Éducation +457239,Education,Éducation +454654,Education,Éducation +454102,Education,Éducation +454100,Education,Éducation +454003,Education,Éducation +449585,Education,Éducation +445221,Education,Éducation +441788,Education,Éducation +430494,Education,Éducation +427652,Education,Éducation +427647,Education,Éducation +423535,Education,Éducation +419861,Education,Éducation +419853,Education,Éducation +419842,Education,Éducation +419839,Education,Éducation +419835,Education,Éducation +419829,Education,Éducation +419826,Education,Éducation +419821,Education,Éducation +419811,Education,Éducation +419794,Education,Éducation +418016,Education,Éducation +416105,Education,Éducation +416095,Education,Éducation +416069,Education,Éducation +409737,Education,Éducation +404911,Education,Éducation +400218,Education,Éducation +398495,Education,Éducation +398493,Education,Éducation +398489,Education,Éducation +398488,Education,Éducation +398486,Education,Éducation +394043,Education,Éducation +394041,Education,Éducation +391891,Education,Éducation +391889,Education,Éducation +386828,Education,Éducation +386827,Education,Éducation +386825,Education,Éducation +541278,Education,Éducation +528193,Education,Éducation +519664,Education,Éducation +398486,Employment and Training,Emploi et formation +494588,Employment and Training,Emploi et formation +484613,Employment and Training,Emploi et formation +484603,Employment and Training,Emploi et formation +467685,Employment and Training,Emploi et formation +467661,Employment and Training,Emploi et formation +467500,Employment and Training,Emploi et formation +467378,Employment and Training,Emploi et formation +457239,Employment and Training,Emploi et formation +454654,Employment and Training,Emploi et formation +454102,Employment and Training,Emploi et formation +454100,Employment and Training,Emploi et formation +454003,Employment and Training,Emploi et formation +449585,Employment and Training,Emploi et formation +445221,Employment and Training,Emploi et formation +441788,Employment and Training,Emploi et formation +435031,Employment and Training,Emploi et formation +435024,Employment and Training,Emploi et formation +398495,Employment and Training,Emploi et formation +398489,Employment and Training,Emploi et formation +531010,Environment,Environnement +531007,Environment,Environnement +467758,Environment,Environnement +454102,Environment,Environnement +454100,Environment,Environnement +516819,Industry,Industrie +467373,Infrastructure,Infrastructure +435031,Infrastructure,Infrastructure +398495,Infrastructure,Infrastructure +398489,Infrastructure,Infrastructure +386828,Infrastructure,Infrastructure +384576,Infrastructure,Infrastructure +384231,Infrastructure,Infrastructure +383201,Infrastructure,Infrastructure +383199,Infrastructure,Infrastructure +383198,Infrastructure,Infrastructure +383197,Infrastructure,Infrastructure +383196,Infrastructure,Infrastructure +383195,Infrastructure,Infrastructure +382116,Infrastructure,Infrastructure +380750,Infrastructure,Infrastructure +380749,Infrastructure,Infrastructure +380748,Infrastructure,Infrastructure +380365,Infrastructure,Infrastructure +380353,Infrastructure,Infrastructure +380352,Infrastructure,Infrastructure +380351,Infrastructure,Infrastructure +380350,Infrastructure,Infrastructure +380347,Infrastructure,Infrastructure +380346,Infrastructure,Infrastructure +378581,Infrastructure,Infrastructure +378579,Infrastructure,Infrastructure +378578,Infrastructure,Infrastructure +378575,Infrastructure,Infrastructure +378570,Infrastructure,Infrastructure +378567,Infrastructure,Infrastructure +378563,Infrastructure,Infrastructure +378262,Infrastructure,Infrastructure +378261,Infrastructure,Infrastructure +378260,Infrastructure,Infrastructure +378081,Infrastructure,Infrastructure +375944,Infrastructure,Infrastructure +371213,Infrastructure,Infrastructure +494588,Infrastructure,Infrastructure +492582,Infrastructure,Infrastructure +490472,Infrastructure,Infrastructure +474171,Infrastructure,Infrastructure +474170,Infrastructure,Infrastructure +474168,Infrastructure,Infrastructure +454003,Intellectual Property,Propriété intellectuelle +423535,Intellectual Property,Propriété intellectuelle +454102,Intellectual Property,Propriété intellectuelle +467378,Research and Development,Recherche et développement +454666,Research and Development,Recherche et développement +432909,Research and Development,Recherche et développement +432908,Research and Development,Recherche et développement +430494,Research and Development,Recherche et développement +430488,Research and Development,Recherche et développement +419861,Research and Development,Recherche et développement +419853,Research and Development,Recherche et développement +419842,Research and Development,Recherche et développement +419839,Research and Development,Recherche et développement +419835,Research and Development,Recherche et développement +419829,Research and Development,Recherche et développement +419826,Research and Development,Recherche et développement +419811,Research and Development,Recherche et développement +419794,Research and Development,Recherche et développement +418016,Research and Development,Recherche et développement +416105,Research and Development,Recherche et développement +416095,Research and Development,Recherche et développement +416069,Research and Development,Recherche et développement +409737,Research and Development,Recherche et développement +404911,Research and Development,Recherche et développement +400218,Research and Development,Recherche et développement +398495,Research and Development,Recherche et développement +398493,Research and Development,Recherche et développement +398489,Research and Development,Recherche et développement +391891,Research and Development,Recherche et développement +391889,Research and Development,Recherche et développement +381858,Research and Development,Recherche et développement +380348,Research and Development,Recherche et développement +378082,Research and Development,Recherche et développement +378080,Research and Development,Recherche et développement +375944,Research and Development,Recherche et développement +375943,Research and Development,Recherche et développement +375940,Research and Development,Recherche et développement +375935,Research and Development,Recherche et développement +374066,Research and Development,Recherche et développement +371213,Research and Development,Recherche et développement +531010,Research and Development,Recherche et développement +531007,Research and Development,Recherche et développement +528193,Research and Development,Recherche et développement +528192,Research and Development,Recherche et développement +522236,Research and Development,Recherche et développement +522232,Research and Development,Recherche et développement +516822,Research and Development,Recherche et développement +516819,Research and Development,Recherche et développement +515369,Research and Development,Recherche et développement +514594,Research and Development,Recherche et développement +512658,Research and Development,Recherche et développement +512654,Research and Development,Recherche et développement +510117,Research and Development,Recherche et développement +510096,Research and Development,Recherche et développement +510095,Research and Development,Recherche et développement +507232,Research and Development,Recherche et développement +504452,Research and Development,Recherche et développement +504352,Research and Development,Recherche et développement +504350,Research and Development,Recherche et développement +501686,Research and Development,Recherche et développement +494588,Research and Development,Recherche et développement +472550,Research and Development,Recherche et développement +467704,Research and Development,Recherche et développement +467685,Research and Development,Recherche et développement +467661,Research and Development,Recherche et développement +484603,International Relations,Relations internationales +499835,Health,Santé +499833,Health,Santé +378080,Health,Santé +375935,Health,Santé +374066,Health,Santé +486698,Health,Santé +467500,Health,Santé +467378,Health,Santé +454666,Health,Santé +432909,Health,Santé +418016,Health,Santé +386827,Health,Santé +386825,Health,Santé +386823,Health,Santé +384449,Health,Santé +381858,Health,Santé +516822,Health,Santé +499848,Health,Santé +499840,Health,Santé +499838,Health,Santé +451986,International Development,International Development +451992,International Development,International Development +533812,International Development,International Development +451985,International Development,International Development +373254,Consumer Issues,Consumer Issues +368405,Consumer Issues,Consumer Issues +373254,Health,Health +370424,Health,Health +368322,Health,Health +382814,Health,Health +382811,Health,Health +382806,Health,Health +378310,Health,Health +374688,Health,Health +374687,Health,Health +382809,International Trade,International Trade +382806,International Trade,International Trade +378310,International Trade,International Trade +370424,Justice and Law Enforcement,Justice and Law Enforcement +368405,Justice and Law Enforcement,Justice and Law Enforcement +382812,Justice and Law Enforcement,Justice and Law Enforcement +374688,Justice and Law Enforcement,Justice and Law Enforcement +382811,Research and Development,Research and Development +382806,Research and Development,Research and Development +373255,Research and Development,Research and Development +373254,Research and Development,Research and Development +373252,Research and Development,Research and Development +382814,Research and Development,Research and Development +382807,Taxation and Finance,Taxation and Finance +368322,Taxation and Finance,Taxation and Finance +482607,Budget,Budget +481315,Budget,Budget +391862,Budget,Budget +383323,Budget,Budget +380584,Budget,Budget +380583,Budget,Budget +378136,Budget,Budget +373288,Budget,Budget +373287,Budget,Budget +373285,Budget,Budget +373283,Budget,Budget +373281,Budget,Budget +476158,Budget,Budget +472097,Budget,Budget +472096,Budget,Budget +465272,Budget,Budget +463671,Budget,Budget +463667,Budget,Budget +488098,Economic Development,Economic Development +482607,Economic Development,Economic Development +481315,Economic Development,Economic Development +476158,Economic Development,Economic Development +474635,Economic Development,Economic Development +474443,Economic Development,Economic Development +472097,Economic Development,Economic Development +472096,Economic Development,Economic Development +472093,Economic Development,Economic Development +472092,Economic Development,Economic Development +463671,Economic Development,Economic Development +444421,Economic Development,Economic Development +444420,Economic Development,Economic Development +424909,Economic Development,Economic Development +418710,Economic Development,Economic Development +412019,Economic Development,Economic Development +391863,Economic Development,Economic Development +391862,Economic Development,Economic Development +383323,Economic Development,Economic Development +380584,Economic Development,Economic Development +380583,Economic Development,Economic Development +380582,Economic Development,Economic Development +378136,Economic Development,Economic Development +373288,Economic Development,Economic Development +373287,Economic Development,Economic Development +373285,Economic Development,Economic Development +373283,Economic Development,Economic Development +373281,Economic Development,Economic Development +520999,Economic Development,Economic Development +503286,Economic Development,Economic Development +498944,Economic Development,Economic Development +494706,Economic Development,Economic Development +418710,Education,Education +412019,Education,Education +403440,Education,Education +403438,Education,Education +403437,Education,Education +391863,Education,Education +391862,Education,Education +383323,Education,Education +380584,Education,Education +380583,Education,Education +380582,Education,Education +378136,Education,Education +373288,Education,Education +373287,Education,Education +373285,Education,Education +373283,Education,Education +373281,Education,Education +481315,Education,Education +458178,Education,Education +444421,Education,Education +428182,Education,Education +424909,Education,Education +444421,Employment and Training,Employment and Training +444420,Employment and Training,Employment and Training +428182,Employment and Training,Employment and Training +424909,Employment and Training,Employment and Training +423537,Employment and Training,Employment and Training +419280,Employment and Training,Employment and Training +418710,Employment and Training,Employment and Training +414098,Employment and Training,Employment and Training +412019,Employment and Training,Employment and Training +403440,Employment and Training,Employment and Training +403439,Employment and Training,Employment and Training +403438,Employment and Training,Employment and Training +403437,Employment and Training,Employment and Training +391863,Employment and Training,Employment and Training +391862,Employment and Training,Employment and Training +391861,Employment and Training,Employment and Training +383323,Employment and Training,Employment and Training +380584,Employment and Training,Employment and Training +380583,Employment and Training,Employment and Training +380582,Employment and Training,Employment and Training +378136,Employment and Training,Employment and Training +373288,Employment and Training,Employment and Training +373287,Employment and Training,Employment and Training +373285,Employment and Training,Employment and Training +373283,Employment and Training,Employment and Training +373281,Employment and Training,Employment and Training +530075,Employment and Training,Employment and Training +520999,Employment and Training,Employment and Training +507613,Employment and Training,Employment and Training +503694,Employment and Training,Employment and Training +503286,Employment and Training,Employment and Training +488590,Employment and Training,Employment and Training +480809,Employment and Training,Employment and Training +476158,Employment and Training,Employment and Training +472092,Employment and Training,Employment and Training +463671,Employment and Training,Employment and Training +463670,Employment and Training,Employment and Training +463229,Employment and Training,Employment and Training +463671,Health,Health +476158,Health,Health +403440,Health,Health +403439,Health,Health +403438,Health,Health +403437,Health,Health +391863,Health,Health +391862,Health,Health +383323,Health,Health +380584,Health,Health +380583,Health,Health +380582,Health,Health +373288,Health,Health +373287,Health,Health +373285,Health,Health +373283,Health,Health +373281,Health,Health +373283,Housing,Housing +463671,Housing,Housing +444421,Housing,Housing +428182,Housing,Housing +418710,Housing,Housing +414098,Housing,Housing +403440,Housing,Housing +403439,Housing,Housing +391863,Housing,Housing +391862,Housing,Housing +391861,Housing,Housing +383323,Housing,Housing +380584,Housing,Housing +380583,Housing,Housing +380582,Housing,Housing +373288,Housing,Housing +373287,Housing,Housing +463667,Industry,Industry +463229,Industry,Industry +378136,Industry,Industry +373288,Industry,Industry +373287,Industry,Industry +373285,Industry,Industry +373283,Industry,Industry +373281,Industry,Industry +444420,Industry,Industry +403439,Industry,Industry +403438,Industry,Industry +391863,Industry,Industry +391861,Industry,Industry +391860,Industry,Industry +391859,Industry,Industry +383323,Industry,Industry +380584,Industry,Industry +380583,Industry,Industry +380582,Industry,Industry +503286,Industry,Industry +488759,Industry,Industry +472093,Industry,Industry +380582,Infrastructure,Infrastructure +414098,Infrastructure,Infrastructure +378136,Infrastructure,Infrastructure +373288,Infrastructure,Infrastructure +373287,Infrastructure,Infrastructure +373285,Infrastructure,Infrastructure +373283,Infrastructure,Infrastructure +373281,Infrastructure,Infrastructure +383323,Infrastructure,Infrastructure +380584,Infrastructure,Infrastructure +373285,Internal Trade,Internal Trade +463671,Internal Trade,Internal Trade +472096,Regional Development,Regional Development +472093,Regional Development,Regional Development +383323,Regional Development,Regional Development +380584,Regional Development,Regional Development +380583,Regional Development,Regional Development +380582,Regional Development,Regional Development +378136,Regional Development,Regional Development +373288,Regional Development,Regional Development +373287,Regional Development,Regional Development +373285,Regional Development,Regional Development +373283,Regional Development,Regional Development +373281,Regional Development,Regional Development +463671,Regional Development,Regional Development +444421,Regional Development,Regional Development +444420,Regional Development,Regional Development +424909,Regional Development,Regional Development +414098,Regional Development,Regional Development +391863,Regional Development,Regional Development +391862,Regional Development,Regional Development +391861,Regional Development,Regional Development +391860,Regional Development,Regional Development +391859,Regional Development,Regional Development +503286,Regional Development,Regional Development +488590,Regional Development,Regional Development +488098,Regional Development,Regional Development +476158,Regional Development,Regional Development +503286,Research and Development,Research and Development +444420,Research and Development,Research and Development +391863,Research and Development,Research and Development +391862,Research and Development,Research and Development +380584,Research and Development,Research and Development +380583,Research and Development,Research and Development +378136,Research and Development,Research and Development +373283,Research and Development,Research and Development +371688,Government Procurement,Government Procurement +371687,Government Procurement,Government Procurement +371677,Government Procurement,Government Procurement +371671,Government Procurement,Government Procurement +371683,Transportation,Transportation +371680,Transportation,Transportation +371623,International Trade,International Trade +370551,Health,Health +370550,Health,Health +476066,Economic Development,Economic Development +452984,Economic Development,Economic Development +487985,Economic Development,Economic Development +367245,Environment,Environment +367246,Environment,Environment +533974,Economic Development,Développement économique +533969,Economic Development,Développement économique +384959,Economic Development,Développement économique +383595,Economic Development,Développement économique +383592,Economic Development,Développement économique +381916,Economic Development,Développement économique +381915,Economic Development,Développement économique +381122,Economic Development,Développement économique +373151,Economic Development,Développement économique +366363,Economic Development,Développement économique +468786,Economic Development,Développement économique +468780,Economic Development,Développement économique +451225,Economic Development,Développement économique +437861,Economic Development,Développement économique +433042,Economic Development,Développement économique +428019,Economic Development,Développement économique +421701,Economic Development,Développement économique +421697,Economic Development,Développement économique +401719,Economic Development,Développement économique +395166,Economic Development,Développement économique +395085,Economic Development,Développement économique +395083,Economic Development,Développement économique +393081,Economic Development,Développement économique +393072,Economic Development,Développement économique +389101,Economic Development,Développement économique +387569,Economic Development,Développement économique +384966,Economic Development,Développement économique +384963,Economic Development,Développement économique +384961,Economic Development,Développement économique +533961,Research and Development,Recherche et développement +533960,Research and Development,Recherche et développement +421701,Research and Development,Recherche et développement +421697,Research and Development,Recherche et développement +421693,Research and Development,Recherche et développement +415261,Research and Development,Recherche et développement +415259,Research and Development,Recherche et développement +405904,Research and Development,Recherche et développement +399811,Research and Development,Recherche et développement +390074,Research and Development,Recherche et développement +389136,Research and Development,Recherche et développement +389105,Research and Development,Recherche et développement +389104,Research and Development,Recherche et développement +389103,Research and Development,Recherche et développement +387569,Research and Development,Recherche et développement +384963,Research and Development,Recherche et développement +383596,Research and Development,Recherche et développement +377546,Research and Development,Recherche et développement +373141,Research and Development,Recherche et développement +373133,Research and Development,Recherche et développement +366363,Research and Development,Recherche et développement +533957,Research and Development,Recherche et développement +531692,Research and Development,Recherche et développement +531685,Research and Development,Recherche et développement +528437,Research and Development,Recherche et développement +528432,Research and Development,Recherche et développement +528430,Research and Development,Recherche et développement +525329,Research and Development,Recherche et développement +525318,Research and Development,Recherche et développement +525313,Research and Development,Recherche et développement +525308,Research and Development,Recherche et développement +525307,Research and Development,Recherche et développement +525305,Research and Development,Recherche et développement +522161,Research and Development,Recherche et développement +522156,Research and Development,Recherche et développement +522152,Research and Development,Recherche et développement +522151,Research and Development,Recherche et développement +519374,Research and Development,Recherche et développement +519371,Research and Development,Recherche et développement +517413,Research and Development,Recherche et développement +517405,Research and Development,Recherche et développement +515312,Research and Development,Recherche et développement +515296,Research and Development,Recherche et développement +515294,Research and Development,Recherche et développement +514538,Research and Development,Recherche et développement +512150,Research and Development,Recherche et développement +512149,Research and Development,Recherche et développement +512148,Research and Development,Recherche et développement +512147,Research and Development,Recherche et développement +510243,Research and Development,Recherche et développement +510238,Research and Development,Recherche et développement +507915,Research and Development,Recherche et développement +507912,Research and Development,Recherche et développement +507906,Research and Development,Recherche et développement +507900,Research and Development,Recherche et développement +500991,Research and Development,Recherche et développement +500990,Research and Development,Recherche et développement +500989,Research and Development,Recherche et développement +500988,Research and Development,Recherche et développement +500987,Research and Development,Recherche et développement +498109,Research and Development,Recherche et développement +498105,Research and Development,Recherche et développement +498101,Research and Development,Recherche et développement +495074,Research and Development,Recherche et développement +495070,Research and Development,Recherche et développement +492743,Research and Development,Recherche et développement +492733,Research and Development,Recherche et développement +490367,Research and Development,Recherche et développement +490341,Research and Development,Recherche et développement +486783,Research and Development,Recherche et développement +486772,Research and Development,Recherche et développement +485009,Research and Development,Recherche et développement +485008,Research and Development,Recherche et développement +485004,Research and Development,Recherche et développement +484994,Research and Development,Recherche et développement +484983,Research and Development,Recherche et développement +481474,Research and Development,Recherche et développement +479025,Research and Development,Recherche et développement +479024,Research and Development,Recherche et développement +479023,Research and Development,Recherche et développement +479022,Research and Development,Recherche et développement +479021,Research and Development,Recherche et développement +479020,Research and Development,Recherche et développement +479018,Research and Development,Recherche et développement +476885,Research and Development,Recherche et développement +476883,Research and Development,Recherche et développement +476879,Research and Development,Recherche et développement +476878,Research and Development,Recherche et développement +476877,Research and Development,Recherche et développement +476876,Research and Development,Recherche et développement +474802,Research and Development,Recherche et développement +474800,Research and Development,Recherche et développement +474793,Research and Development,Recherche et développement +474792,Research and Development,Recherche et développement +474700,Research and Development,Recherche et développement +474699,Research and Development,Recherche et développement +473882,Research and Development,Recherche et développement +473881,Research and Development,Recherche et développement +473879,Research and Development,Recherche et développement +473878,Research and Development,Recherche et développement +473877,Research and Development,Recherche et développement +473876,Research and Development,Recherche et développement +473874,Research and Development,Recherche et développement +473873,Research and Development,Recherche et développement +473870,Research and Development,Recherche et développement +473869,Research and Development,Recherche et développement +473868,Research and Development,Recherche et développement +473867,Research and Development,Recherche et développement +473866,Research and Development,Recherche et développement +473865,Research and Development,Recherche et développement +473864,Research and Development,Recherche et développement +473863,Research and Development,Recherche et développement +473862,Research and Development,Recherche et développement +471292,Research and Development,Recherche et développement +471291,Research and Development,Recherche et développement +471290,Research and Development,Recherche et développement +471288,Research and Development,Recherche et développement +471285,Research and Development,Recherche et développement +468786,Research and Development,Recherche et développement +468780,Research and Development,Recherche et développement +468779,Research and Development,Recherche et développement +462776,Research and Development,Recherche et développement +461826,Research and Development,Recherche et développement +444855,Research and Development,Recherche et développement +444848,Research and Development,Recherche et développement +444194,Research and Development,Recherche et développement +443455,Research and Development,Recherche et développement +443454,Research and Development,Recherche et développement +443453,Research and Development,Recherche et développement +441811,Research and Development,Recherche et développement +441471,Research and Development,Recherche et développement +441462,Research and Development,Recherche et développement +441458,Research and Development,Recherche et développement +441454,Research and Development,Recherche et développement +441452,Research and Development,Recherche et développement +441450,Research and Development,Recherche et développement +441448,Research and Development,Recherche et développement +441447,Research and Development,Recherche et développement +441443,Research and Development,Recherche et développement +441441,Research and Development,Recherche et développement +441435,Research and Development,Recherche et développement +441430,Research and Development,Recherche et développement +441425,Research and Development,Recherche et développement +441423,Research and Development,Recherche et développement +438817,Research and Development,Recherche et développement +437877,Research and Development,Recherche et développement +437874,Research and Development,Recherche et développement +437871,Research and Development,Recherche et développement +437869,Research and Development,Recherche et développement +437868,Research and Development,Recherche et développement +437866,Research and Development,Recherche et développement +437861,Research and Development,Recherche et développement +433045,Research and Development,Recherche et développement +433042,Research and Development,Recherche et développement +433041,Research and Development,Recherche et développement +425842,Research and Development,Recherche et développement +425841,Research and Development,Recherche et développement +425840,Research and Development,Recherche et développement +543761,Research and Development,Recherche et développement +543759,Research and Development,Recherche et développement +543756,Research and Development,Recherche et développement +543751,Research and Development,Recherche et développement +543740,Research and Development,Recherche et développement +543738,Research and Development,Recherche et développement +543736,Research and Development,Recherche et développement +543733,Research and Development,Recherche et développement +543730,Research and Development,Recherche et développement +543727,Research and Development,Recherche et développement +543720,Research and Development,Recherche et développement +543716,Research and Development,Recherche et développement +543711,Research and Development,Recherche et développement +541520,Research and Development,Recherche et développement +541518,Research and Development,Recherche et développement +538039,Research and Development,Recherche et développement +538036,Research and Development,Recherche et développement +538035,Research and Development,Recherche et développement +538032,Research and Development,Recherche et développement +534636,Research and Development,Recherche et développement +533976,Research and Development,Recherche et développement +533966,Research and Development,Recherche et développement +404052,Agriculture,Agriculture +401290,Agriculture,Agriculture +383591,Agriculture,Agriculture +381701,Agriculture,Agriculture +380146,Agriculture,Agriculture +380144,Agriculture,Agriculture +378809,Agriculture,Agriculture +377545,Agriculture,Agriculture +375366,Agriculture,Agriculture +375365,Agriculture,Agriculture +375364,Agriculture,Agriculture +373737,Agriculture,Agriculture +371324,Agriculture,Agriculture +369155,Agriculture,Agriculture +370812,Infrastructure,Infrastructure +369636,Infrastructure,Infrastructure +370817,Infrastructure,Infrastructure +374438,Pensions,Pensions +374275,Pensions,Pensions +368830,Pensions,Pensions +369194,International Trade,International Trade +369191,International Trade,International Trade +371634,International Trade,International Trade +371622,International Trade,International Trade +371621,International Trade,International Trade +369211,International Trade,International Trade +456162,Infrastructure,Infrastructure +456161,Infrastructure,Infrastructure +371613,Infrastructure,Infrastructure +371611,Infrastructure,Infrastructure +369269,Infrastructure,Infrastructure +396761,Infrastructure,Infrastructure +396759,Infrastructure,Infrastructure +396757,Infrastructure,Infrastructure +396754,Infrastructure,Infrastructure +394399,Infrastructure,Infrastructure +392436,Infrastructure,Infrastructure +387094,Infrastructure,Infrastructure +387093,Infrastructure,Infrastructure +387092,Infrastructure,Infrastructure +387091,Infrastructure,Infrastructure +387088,Infrastructure,Infrastructure +379471,Infrastructure,Infrastructure +379469,Infrastructure,Infrastructure +379466,Infrastructure,Infrastructure +379464,Infrastructure,Infrastructure +379461,Infrastructure,Infrastructure +379460,Infrastructure,Infrastructure +379459,Infrastructure,Infrastructure +379457,Infrastructure,Infrastructure +377382,Infrastructure,Infrastructure +377356,Infrastructure,Infrastructure +377351,Infrastructure,Infrastructure +371620,Infrastructure,Infrastructure +371619,Infrastructure,Infrastructure +371618,Infrastructure,Infrastructure +371617,Infrastructure,Infrastructure +371616,Infrastructure,Infrastructure +371614,Infrastructure,Infrastructure +449186,Infrastructure,Infrastructure +449185,Infrastructure,Infrastructure +449182,Infrastructure,Infrastructure +449181,Infrastructure,Infrastructure +449179,Infrastructure,Infrastructure +445048,Infrastructure,Infrastructure +442542,Infrastructure,Infrastructure +442539,Infrastructure,Infrastructure +442538,Infrastructure,Infrastructure +438133,Infrastructure,Infrastructure +396186,International Trade,International Trade +396192,Agriculture,Agriculture +396192,Consumer Issues,Consumer Issues +396192,Health,Health +370606,Energy,Energy +370605,Environment,Environment +370607,Fisheries,Fisheries +370606,International Trade,International Trade +370178,Taxation and Finance,Taxation and Finance +370609,Transportation,Transportation +370344,Economic Development,Economic Development +370343,Energy,Energy +370345,Infrastructure,Infrastructure +370345,Regional Development,Regional Development +376443,Consumer Issues,Consumer Issues +496454,Agriculture,Agriculture +496454,Consumer Issues,Consumer Issues +496453,Environment,Environment +496454,Health,Health +444854,International Trade,International Trade +369446,Climate,Climate +369444,Energy,Energy +369574,Transportation,Transportation +381349,Industry,Industry +376831,Infrastructure,Infrastructure +392762,Municipalities,Municipalities +392871,Regional Development,Regional Development +381352,Research and Development,Research and Development +384222,Education,Education +380804,Employment and Training,Employment and Training +380803,Health,Health +380804,Research and Development,Research and Development +382076,Constitutional Issues,Constitutional Issues +505158,Government Procurement,Government Procurement +370478,Economic Development,Développement économique +365995,International Trade,International Trade +384370,Consumer Issues,Consumer Issues +370910,Health,Health +372016,Health,Health +377440,Government Procurement,Government Procurement +379697,Economic Development,Economic Development +434943,Infrastructure,Infrastructure +401395,Regional Development,Regional Development +379697,Research and Development,Research and Development +434943,Education,Education +366087,Economic Development,Economic Development +366087,Energy,Energy +366087,Environment,Environment +366087,International Relations,International Relations +454102,Budget,Budget +398489,Regional Development,Développement régional +519655,Education,Éducation +398488,Employment and Training,Emploi et formation +454003,Environment,Environnement +467500,Industry,Industrie +472550,Infrastructure,Infrastructure +454100,Intellectual Property,Propriété intellectuelle +467500,Research and Development,Recherche et développement +484613,International Relations,Relations internationales +499837,Health,Santé +366091,International Development,International Development +366093,International Development,International Development +366094,International Development,International Development +366102,Climate,Climate +370410,Agriculture,Agriculture +370410,Consumer Issues,Consumer Issues +370410,Employment and Training,Employment and Training +370410,Health,Health +370422,Agriculture,Agriculture +373255,Consumer Issues,Consumer Issues +373255,Health,Health +382811,International Trade,International Trade +374687,Justice and Law Enforcement,Justice and Law Enforcement +382812,Research and Development,Research and Development +382810,Taxation and Finance,Taxation and Finance +366205,Immigration,Immigration +366207,Immigration,Immigration +488590,Budget,Budget +493758,Economic Development,Economic Development +419280,Education,Education +458178,Employment and Training,Employment and Training +474635,Health,Health +373285,Housing,Housing +463671,Industry,Industry +380583,Infrastructure,Infrastructure +373288,Internal Trade,Internal Trade +472097,Regional Development,Regional Development +373281,Research and Development,Research and Development +371695,Infrastructure,Infrastructure +371693,Fisheries,Fisheries +371689,Environment,Environment +375906,International Trade,International Trade +371692,Government Procurement,Government Procurement +371679,Government Procurement,Government Procurement +371678,Environment,Environment +371685,Transportation,Transportation +371624,International Trade,International Trade +373601,Health,Health +476073,Economic Development,Economic Development +377403,Environment,Environment +377459,Environment,Environment +382909,Budget,Budget +375535,Health,Santé +384960,Economic Development,Développement économique +533963,Research and Development,Recherche et développement +366369,Research and Development,Recherche et développement +369145,Agriculture,Agriculture +366402,Health,Health +370815,Infrastructure,Infrastructure +374442,Pensions,Pensions +366982,Environment,Environnement +369206,International Trade,International Trade +456164,Infrastructure,Infrastructure +368232,Health,Health +373057,Justice and Law Enforcement,Justice and Law Enforcement +368262,Sports,Sports +378739,Environment,Environment +378739,Energy,Energy +372326,Economic Development,Economic Development +372326,Energy,Energy +369720,Industry,Industry +369720,Infrastructure,Infrastructure +369720,Regional Development,Regional Development +369720,Research and Development,Research and Development +448304,Research and Development,Research and Development +375133,Health,Health +366679,Economic Development,Economic Development +478905,Infrastructure,Infrastructure +376904,Taxation and Finance,Taxation and Finance +374724,Environment,Environment +379124,Mining,Mining +374727,Research and Development,Research and Development +402290,Education,Education +366746,Economic Development,Economic Development +399383,Sports,Sports +383695,Energy,Energy +371615,Financial Institutions,Financial Institutions +366902,Climate,Climate +417230,Government Procurement,Government Procurement +371289,Agriculture,Agriculture +371288,Economic Development,Economic Development +371288,Employment and Training,Employment and Training +371288,Industry,Industry +371289,Infrastructure,Infrastructure +371288,Regional Development,Regional Development +371291,Taxation and Finance,Taxation and Finance +371289,Transportation,Transportation +371807,Financial Institutions,Financial Institutions +375790,Taxation and Finance,Taxation and Finance +372823,Environment,Environment +406916,Industry,Industry +405869,Infrastructure,Infrastructure +405869,Internal Trade,Internal Trade +406916,International Relations,International Relations +406916,International Trade,International Trade +372823,Regional Development,Regional Development +372823,Transportation,Transportation +392008,Infrastructure,Infrastructure +373428,Education,Education +373428,Immigration,Immigration +436483,Economic Development,Economic Development +375465,International Trade,International Trade +542324,Transportation,Transportation +513292,Climate,Climate +537499,Economic Development,Economic Development +535619,Energy,Energy +421799,Environment,Environment +372694,Fisheries,Fisheries +456013,Industry,Industry +515865,Infrastructure,Infrastructure +379685,International Development,International Development +458439,International Trade,International Trade +513296,Labour,Labour +515859,Mining,Mining +482366,Regional Development,Regional Development +504639,Research and Development,Research and Development +372695,Taxation and Finance,Taxation and Finance +372705,Transportation,Transportation +497670,Environment,Environment +463545,Health,Health +381098,Infrastructure,Infrastructure +371670,Government Procurement,Government Procurement +371667,Environment,Environment +377185,Economic Development,Economic Development +377181,Education,Education +370413,Health,Health +379456,International Trade,International Trade +379456,Transportation,Transportation +372014,Transportation,Transportation +367851,Transportation,Transportation +383978,Economic Development,Economic Development +367851,International Trade,International Trade +370414,Health,Health +413225,Employment and Training,Employment and Training +413225,Immigration,Immigration +413225,Small Business,Small Business +375155,Infrastructure,Infrastructure +374783,Infrastructure,Infrastructure +415774,Infrastructure,Infrastructure +374778,Transportation,Transportation +411358,Infrastructure,Infrastructure +411358,Mining,Mining +369534,Regional Development,Regional Development +438130,Infrastructure,Infrastructure +438129,Infrastructure,Infrastructure +438128,Infrastructure,Infrastructure +438126,Infrastructure,Infrastructure +432528,Infrastructure,Infrastructure +413613,Infrastructure,Infrastructure +413611,Infrastructure,Infrastructure +413609,Infrastructure,Infrastructure +459734,Infrastructure,Infrastructure +458899,Infrastructure,Infrastructure +458898,Infrastructure,Infrastructure +458897,Infrastructure,Infrastructure +458895,Infrastructure,Infrastructure +458893,Infrastructure,Infrastructure +457784,Infrastructure,Infrastructure +457783,Infrastructure,Infrastructure +456175,Infrastructure,Infrastructure +456174,Infrastructure,Infrastructure +456173,Infrastructure,Infrastructure +456172,Infrastructure,Infrastructure +456171,Infrastructure,Infrastructure +456170,Infrastructure,Infrastructure +456169,Infrastructure,Infrastructure +456168,Infrastructure,Infrastructure +456167,Infrastructure,Infrastructure +456165,Infrastructure,Infrastructure +368262,Justice and Law Enforcement,Justice and Law Enforcement +368232,Justice and Law Enforcement,Justice and Law Enforcement +368232,Sports,Sports +367820,Sports,Sports +384079,Sports,Sports +373057,Sports,Sports +371396,Sports,Sports +370895,Sports,Sports +369945,Sports,Sports +372325,Economic Development,Economic Development +372324,Economic Development,Economic Development +372325,Energy,Energy +372324,Energy,Energy +443750,Research and Development,Research and Development +439848,Research and Development,Research and Development +437545,Research and Development,Research and Development +437542,Research and Development,Research and Development +437537,Research and Development,Research and Development +428735,Research and Development,Research and Development +428726,Research and Development,Research and Development +415704,Research and Development,Research and Development +414864,Research and Development,Research and Development +411215,Research and Development,Research and Development +411214,Research and Development,Research and Development +408338,Research and Development,Research and Development +406575,Research and Development,Research and Development +405909,Research and Development,Research and Development +401385,Research and Development,Research and Development +387639,Research and Development,Research and Development +377669,Research and Development,Research and Development +377668,Research and Development,Research and Development +374733,Research and Development,Research and Development +374730,Research and Development,Research and Development +374722,Research and Development,Research and Development +371452,Research and Development,Research and Development +371440,Research and Development,Research and Development +371431,Research and Development,Research and Development +371429,Research and Development,Research and Development +366601,Research and Development,Research and Development +475700,Research and Development,Research and Development +472369,Research and Development,Research and Development +471094,Research and Development,Research and Development +421574,Economic Development,Economic Development +421573,Economic Development,Economic Development +376903,Economic Development,Economic Development +373257,Economic Development,Economic Development +372637,Economic Development,Economic Development +371385,Economic Development,Economic Development +371382,Economic Development,Economic Development +371355,Economic Development,Economic Development +371348,Economic Development,Economic Development +477328,Infrastructure,Infrastructure +476414,Infrastructure,Infrastructure +376882,Infrastructure,Infrastructure +373257,Infrastructure,Infrastructure +372637,Infrastructure,Infrastructure +371385,Infrastructure,Infrastructure +371382,Infrastructure,Infrastructure +371355,Infrastructure,Infrastructure +371348,Infrastructure,Infrastructure +366679,Infrastructure,Infrastructure +432867,Infrastructure,Infrastructure +421574,Infrastructure,Infrastructure +402208,Infrastructure,Infrastructure +380245,Infrastructure,Infrastructure +379015,Infrastructure,Infrastructure +379011,Infrastructure,Infrastructure +379004,Infrastructure,Infrastructure +376906,Infrastructure,Infrastructure +376904,Infrastructure,Infrastructure +376903,Infrastructure,Infrastructure +535953,Infrastructure,Infrastructure +535950,Infrastructure,Infrastructure +376882,Taxation and Finance,Taxation and Finance +366680,Taxation and Finance,Taxation and Finance +379013,Taxation and Finance,Taxation and Finance +376906,Taxation and Finance,Taxation and Finance +379121,Mining,Mining +374729,Mining,Mining +382413,Mining,Mining +382411,Mining,Mining +368182,Sports,Sports +374101,Energy,Energy +371615,Energy,Energy +383695,Financial Institutions,Financial Institutions +374101,Financial Institutions,Financial Institutions +397290,Government Procurement,Government Procurement +388825,Government Procurement,Government Procurement +444534,Government Procurement,Government Procurement +427873,Government Procurement,Government Procurement +419915,Government Procurement,Government Procurement +371288,Agriculture,Agriculture +371286,Agriculture,Agriculture +371291,Agriculture,Agriculture +371287,Economic Development,Economic Development +371286,Economic Development,Economic Development +371291,Economic Development,Economic Development +371289,Economic Development,Economic Development +371287,Employment and Training,Employment and Training +371286,Employment and Training,Employment and Training +371291,Employment and Training,Employment and Training +371289,Employment and Training,Employment and Training +371287,Industry,Industry +371286,Industry,Industry +371291,Industry,Industry +371289,Industry,Industry +371288,Infrastructure,Infrastructure +371286,Infrastructure,Infrastructure +371291,Infrastructure,Infrastructure +371287,Regional Development,Regional Development +371286,Regional Development,Regional Development +371291,Regional Development,Regional Development +371289,Regional Development,Regional Development +371289,Taxation and Finance,Taxation and Finance +371288,Taxation and Finance,Taxation and Finance +371288,Transportation,Transportation +371286,Transportation,Transportation +371291,Transportation,Transportation +370632,Financial Institutions,Financial Institutions +370627,Financial Institutions,Financial Institutions +419216,Financial Institutions,Financial Institutions +419213,Financial Institutions,Financial Institutions +417386,Financial Institutions,Financial Institutions +417382,Financial Institutions,Financial Institutions +414602,Financial Institutions,Financial Institutions +414587,Financial Institutions,Financial Institutions +409277,Financial Institutions,Financial Institutions +404317,Financial Institutions,Financial Institutions +382924,Financial Institutions,Financial Institutions +382242,Financial Institutions,Financial Institutions +375701,Financial Institutions,Financial Institutions +375691,Financial Institutions,Financial Institutions +371922,Financial Institutions,Financial Institutions +369573,Environment,Environment +369572,Environment,Environment +406916,Environment,Environment +405869,Environment,Environment +392827,Environment,Environment +391782,Environment,Environment +369573,Internal Trade,Internal Trade +405869,International Relations,International Relations +392827,International Relations,International Relations +391782,International Relations,International Relations +372823,International Relations,International Relations +369573,International Relations,International Relations +369572,International Relations,International Relations +391782,International Trade,International Trade +369572,International Trade,International Trade +369572,Regional Development,Regional Development +369573,Transportation,Transportation +369572,Transportation,Transportation +406916,Transportation,Transportation +405869,Transportation,Transportation +392827,Transportation,Transportation +391782,Transportation,Transportation +373427,Education,Education +373420,Education,Education +373430,Education,Education +373429,Education,Education +373427,Immigration,Immigration +373420,Immigration,Immigration +373430,Immigration,Immigration +373429,Immigration,Immigration +542324,Economic Development,Economic Development +510193,Economic Development,Economic Development +383971,Economic Development,Economic Development +378084,Economic Development,Economic Development +375465,Economic Development,Economic Development +375464,Economic Development,Economic Development +375464,International Trade,International Trade +542324,International Trade,International Trade +510193,International Trade,International Trade +500085,International Trade,International Trade +436483,International Trade,International Trade +383971,International Trade,International Trade +378084,International Trade,International Trade +510193,Transportation,Transportation +500085,Transportation,Transportation +436483,Transportation,Transportation +383971,Transportation,Transportation +378084,Transportation,Transportation +375465,Transportation,Transportation +375464,Transportation,Transportation +513288,Climate,Climate +470987,Climate,Climate +372705,Climate,Climate +372701,Climate,Climate +416554,Climate,Climate +416552,Climate,Climate +391168,Climate,Climate +379834,Climate,Climate +379693,Climate,Climate +379689,Climate,Climate +540119,Climate,Climate +535619,Climate,Climate +517896,Climate,Climate +513295,Climate,Climate +379693,Economic Development,Economic Development +379689,Economic Development,Economic Development +445672,Economic Development,Economic Development +432470,Economic Development,Economic Development +426332,Economic Development,Economic Development +426330,Economic Development,Economic Development +426327,Economic Development,Economic Development +426325,Economic Development,Economic Development +424047,Economic Development,Economic Development +421799,Economic Development,Economic Development +421797,Economic Development,Economic Development +420210,Economic Development,Economic Development +420205,Economic Development,Economic Development +420202,Economic Development,Economic Development +420201,Economic Development,Economic Development +420179,Economic Development,Economic Development +524979,Economic Development,Economic Development +524977,Economic Development,Economic Development +513295,Economic Development,Economic Development +513292,Economic Development,Economic Development +513290,Economic Development,Economic Development +513288,Economic Development,Economic Development +508129,Economic Development,Economic Development +504639,Economic Development,Economic Development +502336,Economic Development,Economic Development +502335,Economic Development,Economic Development +502272,Economic Development,Economic Development +495494,Economic Development,Economic Development +475520,Economic Development,Economic Development +470987,Economic Development,Economic Development +458439,Economic Development,Economic Development +457012,Economic Development,Economic Development +456892,Economic Development,Economic Development +456891,Economic Development,Economic Development +449756,Economic Development,Economic Development +449752,Economic Development,Economic Development +540119,Economic Development,Economic Development +524979,Energy,Energy +524977,Energy,Energy +379689,Environment,Environment +421797,Environment,Environment +420210,Environment,Environment +420205,Environment,Environment +420202,Environment,Environment +420201,Environment,Environment +420179,Environment,Environment +395878,Environment,Environment +395875,Environment,Environment +395873,Environment,Environment +395871,Environment,Environment +524977,Environment,Environment +515866,Environment,Environment +515865,Environment,Environment +515859,Environment,Environment +515852,Environment,Environment +438805,Environment,Environment +426332,Environment,Environment +426330,Environment,Environment +426327,Environment,Environment +426325,Environment,Environment +424047,Environment,Environment +449756,Industry,Industry +449752,Industry,Industry +372691,Industry,Industry +426332,Industry,Industry +426330,Industry,Industry +426327,Industry,Industry +426325,Industry,Industry +424047,Industry,Industry +421799,Industry,Industry +421797,Industry,Industry +420210,Industry,Industry +420205,Industry,Industry +420202,Industry,Industry +420201,Industry,Industry +420179,Industry,Industry +416554,Industry,Industry +416552,Industry,Industry +379693,Industry,Industry +379689,Industry,Industry +479086,Industry,Industry +478071,Industry,Industry +475508,Industry,Industry +458439,Industry,Industry +457012,Industry,Industry +456894,Industry,Industry +456892,Industry,Industry +456891,Industry,Industry +515859,Infrastructure,Infrastructure +515852,Infrastructure,Infrastructure +372705,Infrastructure,Infrastructure +456894,International Trade,International Trade +456014,International Trade,International Trade +379689,International Trade,International Trade +379685,International Trade,International Trade +372701,International Trade,International Trade +456013,International Trade,International Trade +449759,International Trade,International Trade +449758,International Trade,International Trade +449756,International Trade,International Trade +449755,International Trade,International Trade +449752,International Trade,International Trade +445672,International Trade,International Trade +438805,International Trade,International Trade +435651,International Trade,International Trade +435648,International Trade,International Trade +432470,International Trade,International Trade +430959,International Trade,International Trade +430957,International Trade,International Trade +430956,International Trade,International Trade +430955,International Trade,International Trade +429253,International Trade,International Trade +426332,International Trade,International Trade +426330,International Trade,International Trade +426329,International Trade,International Trade +426327,International Trade,International Trade +426325,International Trade,International Trade +424047,International Trade,International Trade +421799,International Trade,International Trade +421797,International Trade,International Trade +420210,International Trade,International Trade +420205,International Trade,International Trade +420202,International Trade,International Trade +420201,International Trade,International Trade +420179,International Trade,International Trade +416554,International Trade,International Trade +416552,International Trade,International Trade +403671,International Trade,International Trade +403666,International Trade,International Trade +398989,International Trade,International Trade +398986,International Trade,International Trade +395878,International Trade,International Trade +395875,International Trade,International Trade +395873,International Trade,International Trade +395871,International Trade,International Trade +515866,International Trade,International Trade +515865,International Trade,International Trade +482366,International Trade,International Trade +479086,International Trade,International Trade +478071,International Trade,International Trade +475520,International Trade,International Trade +475508,International Trade,International Trade +462649,International Trade,International Trade +515852,Mining,Mining +502276,Mining,Mining +475518,Mining,Mining +475508,Mining,Mining +470987,Mining,Mining +445672,Mining,Mining +403671,Mining,Mining +403666,Mining,Mining +395878,Mining,Mining +395875,Mining,Mining +395873,Mining,Mining +395871,Mining,Mining +379834,Mining,Mining +372701,Mining,Mining +372695,Mining,Mining +372694,Mining,Mining +372691,Mining,Mining +535619,Mining,Mining +524979,Mining,Mining +524977,Mining,Mining +517896,Mining,Mining +515866,Mining,Mining +515865,Mining,Mining +502276,Regional Development,Regional Development +502336,Research and Development,Research and Development +502335,Research and Development,Research and Development +391168,Research and Development,Research and Development +502276,Research and Development,Research and Development +502272,Research and Development,Research and Development +495494,Research and Development,Research and Development +470987,Research and Development,Research and Development +426332,Research and Development,Research and Development +426330,Research and Development,Research and Development +426327,Research and Development,Research and Development +426325,Research and Development,Research and Development +424047,Research and Development,Research and Development +421799,Research and Development,Research and Development +421797,Research and Development,Research and Development +420210,Research and Development,Research and Development +420205,Research and Development,Research and Development +420202,Research and Development,Research and Development +420201,Research and Development,Research and Development +420179,Research and Development,Research and Development +416554,Research and Development,Research and Development +416552,Research and Development,Research and Development +395878,Research and Development,Research and Development +395875,Research and Development,Research and Development +395873,Research and Development,Research and Development +395871,Research and Development,Research and Development +540119,Research and Development,Research and Development +537499,Research and Development,Research and Development +524979,Research and Development,Research and Development +524977,Research and Development,Research and Development +513295,Research and Development,Research and Development +513292,Research and Development,Research and Development +513290,Research and Development,Research and Development +432470,Taxation and Finance,Taxation and Finance +517896,Taxation and Finance,Taxation and Finance +379693,Taxation and Finance,Taxation and Finance +508129,Transportation,Transportation +497305,Environment,Environment +497303,Environment,Environment +480316,Environment,Environment +467922,Environment,Environment +463548,Environment,Environment +462149,Environment,Environment +462148,Environment,Environment +457223,Environment,Environment +427206,Environment,Environment +414106,Environment,Environment +411183,Environment,Environment +406585,Environment,Environment +406584,Environment,Environment +404469,Environment,Environment +396138,Environment,Environment +384851,Environment,Environment +381097,Environment,Environment +381094,Environment,Environment +381093,Environment,Environment +381088,Environment,Environment +378240,Environment,Environment +376239,Environment,Environment +376236,Environment,Environment +376234,Environment,Environment +376231,Environment,Environment +542289,Environment,Environment +527320,Environment,Environment +527258,Environment,Environment +526980,Environment,Environment +524049,Environment,Environment +523438,Environment,Environment +522807,Environment,Environment +522450,Environment,Environment +521307,Environment,Environment +511638,Environment,Environment +510282,Environment,Environment +506073,Environment,Environment +504009,Environment,Environment +504007,Environment,Environment +503170,Environment,Environment +502332,Environment,Environment +502331,Environment,Environment +500273,Environment,Environment +500239,Environment,Environment +500001,Environment,Environment +497305,Health,Health +497303,Health,Health +396138,Health,Health +389574,Health,Health +384850,Health,Health +371664,Government Procurement,Government Procurement +371662,Government Procurement,Government Procurement +375827,Economic Development,Economic Development +393902,Economic Development,Economic Development +393900,Economic Development,Economic Development +393899,Economic Development,Economic Development +391776,Economic Development,Economic Development +387405,Economic Development,Economic Development +387398,Economic Development,Economic Development +387391,Economic Development,Economic Development +385119,Economic Development,Economic Development +385108,Economic Development,Economic Development +385107,Economic Development,Economic Development +382722,Economic Development,Economic Development +382721,Economic Development,Economic Development +382716,Economic Development,Economic Development +381874,Economic Development,Economic Development +378784,Economic Development,Economic Development +378783,Economic Development,Economic Development +377180,Education,Education +377151,Education,Education +403769,Education,Education +393902,Education,Education +391773,Education,Education +377183,Education,Education +379455,International Trade,International Trade +379454,International Trade,International Trade +415366,International Trade,International Trade +415364,International Trade,International Trade +415362,International Trade,International Trade +409065,International Trade,International Trade +408084,International Trade,International Trade +408082,International Trade,International Trade +408081,International Trade,International Trade +408079,International Trade,International Trade +403181,International Trade,International Trade +403179,International Trade,International Trade +403178,International Trade,International Trade +403127,International Trade,International Trade +403121,International Trade,International Trade +403119,International Trade,International Trade +400570,International Trade,International Trade +400557,International Trade,International Trade +400553,International Trade,International Trade +400551,International Trade,International Trade +399114,International Trade,International Trade +396826,International Trade,International Trade +396821,International Trade,International Trade +396813,International Trade,International Trade +396808,International Trade,International Trade +390911,International Trade,International Trade +390909,International Trade,International Trade +390908,International Trade,International Trade +389666,International Trade,International Trade +385463,International Trade,International Trade +385454,International Trade,International Trade +385446,International Trade,International Trade +385432,International Trade,International Trade +385428,International Trade,International Trade +379865,International Trade,International Trade +379455,Transportation,Transportation +379454,Transportation,Transportation +415366,Transportation,Transportation +415364,Transportation,Transportation +415362,Transportation,Transportation +409065,Transportation,Transportation +408084,Transportation,Transportation +408082,Transportation,Transportation +408081,Transportation,Transportation +408079,Transportation,Transportation +400570,Transportation,Transportation +400557,Transportation,Transportation +400553,Transportation,Transportation +400551,Transportation,Transportation +396816,Transportation,Transportation +396814,Transportation,Transportation +396813,Transportation,Transportation +396808,Transportation,Transportation +394401,Transportation,Transportation +379865,Transportation,Transportation +369968,Transportation,Transportation +367850,Transportation,Transportation +367849,Transportation,Transportation +383978,Transportation,Transportation +383977,Transportation,Transportation +383976,Transportation,Transportation +368063,Transportation,Transportation +367852,Transportation,Transportation +383977,Economic Development,Economic Development +383976,Economic Development,Economic Development +368063,Economic Development,Economic Development +367852,Economic Development,Economic Development +367851,Economic Development,Economic Development +367850,Economic Development,Economic Development +367849,Economic Development,Economic Development +367850,International Trade,International Trade +367849,International Trade,International Trade +383978,International Trade,International Trade +383977,International Trade,International Trade +383976,International Trade,International Trade +368063,International Trade,International Trade +367852,International Trade,International Trade +379220,Immigration,Immigration +375154,Infrastructure,Infrastructure +369644,Infrastructure,Infrastructure +374773,Infrastructure,Infrastructure +369528,Infrastructure,Infrastructure +417668,Infrastructure,Infrastructure +411711,Infrastructure,Infrastructure +391830,Infrastructure,Infrastructure +374778,Infrastructure,Infrastructure +374773,Transportation,Transportation +369534,Transportation,Transportation +415776,Transportation,Transportation +415774,Transportation,Transportation +411711,Transportation,Transportation +411358,Transportation,Transportation +391830,Transportation,Transportation +374783,Transportation,Transportation +374782,Transportation,Transportation +374782,Infrastructure,Infrastructure +369534,Infrastructure,Infrastructure +415776,Infrastructure,Infrastructure +391830,Mining,Mining +374783,Mining,Mining +374782,Mining,Mining +374778,Mining,Mining +374773,Mining,Mining +369534,Mining,Mining +369531,Mining,Mining +369528,Mining,Mining +369527,Mining,Mining +417668,Mining,Mining +415776,Mining,Mining +411711,Mining,Mining +369528,Regional Development,Regional Development +369527,Regional Development,Regional Development +417668,Regional Development,Regional Development +415774,Regional Development,Regional Development +411711,Regional Development,Regional Development +411358,Regional Development,Regional Development +391830,Regional Development,Regional Development +374782,Regional Development,Regional Development +374778,Regional Development,Regional Development +374773,Regional Development,Regional Development +374778,International Trade,International Trade +369531,International Trade,International Trade +395454,Government Procurement,Marchés publics +389709,Climate,Climate +389706,Climate,Climate +387775,Climate,Climate +380842,Climate,Climate +380840,Climate,Climate +380839,Climate,Climate +380838,Climate,Climate +379431,Climate,Climate +379352,Climate,Climate +379349,Climate,Climate +379338,Climate,Climate +376990,Climate,Climate +376920,Climate,Climate +435228,Climate,Climate +423769,Climate,Climate +421957,Climate,Climate +421955,Climate,Climate +412205,Climate,Climate +405043,Climate,Climate +405042,Climate,Climate +402682,Climate,Climate +399891,Climate,Climate +376990,Economic Development,Economic Development +376920,Economic Development,Economic Development +423769,Economic Development,Economic Development +421957,Economic Development,Economic Development +421955,Economic Development,Economic Development +412205,Economic Development,Economic Development +405043,Economic Development,Economic Development +405042,Economic Development,Economic Development +399891,Economic Development,Economic Development +399890,Economic Development,Economic Development +389709,Economic Development,Economic Development +389706,Economic Development,Economic Development +387775,Economic Development,Economic Development +380842,Economic Development,Economic Development +380840,Economic Development,Economic Development +380839,Economic Development,Economic Development +376990,Energy,Energy +376920,Energy,Energy +423769,Energy,Energy +421957,Energy,Energy +421955,Energy,Energy +412205,Energy,Energy +405043,Energy,Energy +405042,Energy,Energy +402682,Energy,Energy +399891,Energy,Energy +399890,Energy,Energy +389709,Energy,Energy +389706,Energy,Energy +387775,Energy,Energy +380842,Energy,Energy +380840,Energy,Energy +380839,Energy,Energy +380838,Energy,Energy +379431,Energy,Energy +379352,Energy,Energy +421957,Environment,Environment +421955,Environment,Environment +379349,Environment,Environment +379338,Environment,Environment +376990,Environment,Environment +376920,Environment,Environment +412205,Environment,Environment +405043,Environment,Environment +405042,Environment,Environment +402682,Environment,Environment +399891,Environment,Environment +399890,Environment,Environment +389709,Environment,Environment +389706,Environment,Environment +387775,Environment,Environment +380842,Environment,Environment +380840,Environment,Environment +380839,Environment,Environment +380838,Environment,Environment +379431,Environment,Environment +379352,Environment,Environment +421955,Infrastructure,Infrastructure +412205,Infrastructure,Infrastructure +405043,Infrastructure,Infrastructure +405042,Infrastructure,Infrastructure +402682,Infrastructure,Infrastructure +399891,Infrastructure,Infrastructure +399890,Infrastructure,Infrastructure +389709,Infrastructure,Infrastructure +389706,Infrastructure,Infrastructure +423769,Infrastructure,Infrastructure +386955,Economic Development,Economic Development +386953,Economic Development,Economic Development +373224,Economic Development,Economic Development +373223,Economic Development,Economic Development +373222,Economic Development,Economic Development +373221,Economic Development,Economic Development +373220,Economic Development,Economic Development +373219,Economic Development,Economic Development +373218,Economic Development,Economic Development +373217,Economic Development,Economic Development +373215,Economic Development,Economic Development +373044,Economic Development,Economic Development +373028,Economic Development,Economic Development +373025,Economic Development,Economic Development +394806,Economic Development,Economic Development +386959,Economic Development,Economic Development +386957,Economic Development,Economic Development +386953,Industry,Industry +386955,Labour,Labour +386953,Labour,Labour +373224,Labour,Labour +373221,Labour,Labour +373219,Labour,Labour +373215,Labour,Labour +401474,Labour,Labour +401472,Labour,Labour +401471,Labour,Labour +401470,Labour,Labour +394821,Labour,Labour +394820,Labour,Labour +394819,Labour,Labour +394818,Labour,Labour +394806,Labour,Labour +401472,Transportation,Transportation +386958,Transportation,Transportation +373222,Transportation,Transportation +373220,Transportation,Transportation +459052,Economic Development,Economic Development +457964,Economic Development,Economic Development +386342,Economic Development,Economic Development +386336,Economic Development,Economic Development +377051,Economic Development,Economic Development +377034,Economic Development,Economic Development +367524,Economic Development,Economic Development +367468,Economic Development,Economic Development +367467,Economic Development,Economic Development +454977,Economic Development,Economic Development +453977,Economic Development,Economic Development +453976,Economic Development,Economic Development +453974,Economic Development,Economic Development +401958,Economic Development,Economic Development +397256,Economic Development,Economic Development +393600,Economic Development,Economic Development +393272,Economic Development,Economic Development +393271,Economic Development,Economic Development +393270,Economic Development,Economic Development +393269,Economic Development,Economic Development +389241,Economic Development,Economic Development +389239,Economic Development,Economic Development +389236,Economic Development,Economic Development +537226,Economic Development,Economic Development +537225,Economic Development,Economic Development +537224,Economic Development,Economic Development +515232,Economic Development,Economic Development +512055,Economic Development,Economic Development +506936,Economic Development,Economic Development +506934,Economic Development,Economic Development +506161,Economic Development,Economic Development +506160,Economic Development,Economic Development +503204,Economic Development,Economic Development +502971,Economic Development,Economic Development +502969,Economic Development,Economic Development +502966,Economic Development,Economic Development +493905,Economic Development,Economic Development +493904,Economic Development,Economic Development +485425,Economic Development,Economic Development +482803,Economic Development,Economic Development +481803,Economic Development,Economic Development +477517,Economic Development,Economic Development +474646,Economic Development,Economic Development +474645,Economic Development,Economic Development +381741,Climate,Climate +376318,Climate,Climate +404828,Climate,Climate +404827,Climate,Climate +376318,Economic Development,Economic Development +409467,Consumer Issues,Consumer Issues +391294,Consumer Issues,Consumer Issues +409488,Consumer Issues,Consumer Issues +409487,Consumer Issues,Consumer Issues +409486,Consumer Issues,Consumer Issues +409482,Consumer Issues,Consumer Issues +409481,Consumer Issues,Consumer Issues +409480,Consumer Issues,Consumer Issues +409476,Consumer Issues,Consumer Issues +409474,Consumer Issues,Consumer Issues +409472,Consumer Issues,Consumer Issues +374649,Employment and Training,Employment and Training +374605,Employment and Training,Employment and Training +435921,Employment and Training,Employment and Training +435920,Employment and Training,Employment and Training +435919,Employment and Training,Employment and Training +435918,Employment and Training,Employment and Training +426439,Employment and Training,Employment and Training +426438,Employment and Training,Employment and Training +426436,Employment and Training,Employment and Training +426435,Employment and Training,Employment and Training +409488,Employment and Training,Employment and Training +409487,Employment and Training,Employment and Training +409486,Employment and Training,Employment and Training +409482,Employment and Training,Employment and Training +409481,Employment and Training,Employment and Training +409480,Employment and Training,Employment and Training +409476,Employment and Training,Employment and Training +409474,Employment and Training,Employment and Training +409472,Employment and Training,Employment and Training +409468,Employment and Training,Employment and Training +409467,Employment and Training,Employment and Training +409468,Environment,Environment +409467,Environment,Environment +391294,Environment,Environment +374649,Environment,Environment +374605,Environment,Environment +435921,Environment,Environment +435920,Environment,Environment +435919,Environment,Environment +435918,Environment,Environment +430304,Environment,Environment +426439,Environment,Environment +426438,Environment,Environment +426436,Environment,Environment +426435,Environment,Environment +409488,Environment,Environment +409487,Environment,Environment +409486,Environment,Environment +409482,Environment,Environment +409481,Environment,Environment +409480,Environment,Environment +409476,Environment,Environment +409474,Environment,Environment +374649,Forestry,Forestry +374605,Forestry,Forestry +435921,Forestry,Forestry +435920,Forestry,Forestry +435919,Forestry,Forestry +435918,Forestry,Forestry +430304,Forestry,Forestry +430303,Forestry,Forestry +426439,Forestry,Forestry +426438,Forestry,Forestry +426436,Forestry,Forestry +426435,Forestry,Forestry +416586,Forestry,Forestry +416580,Forestry,Forestry +409488,Forestry,Forestry +409487,Forestry,Forestry +409486,Forestry,Forestry +409482,Forestry,Forestry +409481,Forestry,Forestry +409480,Forestry,Forestry +409476,Forestry,Forestry +409474,Forestry,Forestry +409472,Forestry,Forestry +409468,Forestry,Forestry +409467,Forestry,Forestry +391294,Industry,Industry +374649,Industry,Industry +435921,Industry,Industry +435920,Industry,Industry +435919,Industry,Industry +435918,Industry,Industry +430304,Industry,Industry +430303,Industry,Industry +426439,Industry,Industry +426438,Industry,Industry +426436,Industry,Industry +426435,Industry,Industry +416586,Industry,Industry +416580,Industry,Industry +409488,Industry,Industry +409487,Industry,Industry +409486,Industry,Industry +409482,Industry,Industry +409481,Industry,Industry +409480,Industry,Industry +409476,Industry,Industry +409474,Industry,Industry +409472,Industry,Industry +409468,Industry,Industry +435918,Internal Trade,Internal Trade +391446,Economic Development,Economic Development +383501,Economic Development,Economic Development +383501,Employment and Training,Employment and Training +382645,Fisheries,Fisheries +374603,Fisheries,Fisheries +391446,Fisheries,Fisheries +383501,Regional Development,Regional Development +374603,Regional Development,Regional Development +380551,Infrastructure,Infrastructure +370518,Infrastructure,Infrastructure +392221,Infrastructure,Infrastructure +388989,Infrastructure,Infrastructure +383215,Infrastructure,Infrastructure +380552,Regional Development,Regional Development +380551,Regional Development,Regional Development +392221,Regional Development,Regional Development +388989,Regional Development,Regional Development +377992,Infrastructure,Infrastructure +377991,Infrastructure,Infrastructure +378066,Infrastructure,Infrastructure +378065,Infrastructure,Infrastructure +378068,Infrastructure,Infrastructure +371372,Industry,Industry +371368,Industry,Industry +371372,Transportation,Transportation +371368,Transportation,Transportation +411431,Transportation,Transportation +396843,Transportation,Transportation +391523,Transportation,Transportation +391521,Transportation,Transportation +391514,Transportation,Transportation +377256,Transportation,Transportation +436708,Health,Health +367544,Taxation and Finance,Taxation and Finance +367542,Taxation and Finance,Taxation and Finance +440726,Taxation and Finance,Taxation and Finance +386314,Taxation and Finance,Taxation and Finance +385930,Taxation and Finance,Taxation and Finance +376024,Taxation and Finance,Taxation and Finance +370822,Taxation and Finance,Taxation and Finance +370121,Taxation and Finance,Taxation and Finance +370119,Taxation and Finance,Taxation and Finance +368284,Taxation and Finance,Taxation and Finance +414054,Taxation and Finance,Taxation and Finance +410439,Taxation and Finance,Taxation and Finance +386203,Taxation and Finance,Taxation and Finance +385931,Taxation and Finance,Taxation and Finance +374084,Taxation and Finance,Taxation and Finance +371224,Taxation and Finance,Taxation and Finance +370823,Taxation and Finance,Taxation and Finance +370613,Taxation and Finance,Taxation and Finance +370117,Taxation and Finance,Taxation and Finance +368285,Taxation and Finance,Taxation and Finance +368283,Taxation and Finance,Taxation and Finance +367543,Taxation and Finance,Taxation and Finance +440721,Taxation and Finance,Taxation and Finance +417257,Taxation and Finance,Taxation and Finance +417196,Taxation and Finance,Taxation and Finance +415276,Taxation and Finance,Taxation and Finance +375402,Defence,Defence +512066,Government Procurement,Government Procurement +367545,International Relations,International Relations +367545,International Trade,International Trade +497162,Research and Development,Research and Development +497156,Research and Development,Research and Development +394770,Research and Development,Research and Development +367545,Research and Development,Research and Development +496749,Research and Development,Research and Development +492399,Research and Development,Research and Development +492395,Research and Development,Research and Development +492384,Research and Development,Research and Development +489276,Research and Development,Research and Development +484570,Research and Development,Research and Development +471469,Research and Development,Research and Development +459170,Research and Development,Research and Development +456429,Research and Development,Research and Development +455000,Research and Development,Research and Development +448617,Research and Development,Research and Development +504008,Research and Development,Research and Development +367504,Government Procurement,Government Procurement +408674,Government Procurement,Government Procurement +367504,International Relations,International Relations +375394,International Trade,International Trade +486217,Research and Development,Research and Development +459004,Research and Development,Research and Development +405970,Research and Development,Research and Development +375394,Research and Development,Research and Development +367504,Research and Development,Research and Development +506775,Research and Development,Research and Development +504049,Research and Development,Research and Development +504017,Research and Development,Research and Development +504010,Research and Development,Research and Development +503928,Research and Development,Research and Development +500664,Research and Development,Research and Development +500656,Research and Development,Research and Development +500593,Research and Development,Research and Development +497169,Research and Development,Research and Development +494553,Research and Development,Research and Development +367555,Defence,Defence +375420,Defence,Defence +367555,Employment and Training,Employment and Training +367555,Government Procurement,Government Procurement +448621,Research and Development,Research and Development +448616,Research and Development,Research and Development +375402,Research and Development,Research and Development +367555,Research and Development,Research and Development +504069,Research and Development,Research and Development +504056,Research and Development,Research and Development +504050,Research and Development,Research and Development +504019,Research and Development,Research and Development +503927,Research and Development,Research and Development +503926,Research and Development,Research and Development +503901,Research and Development,Research and Development +500663,Research and Development,Research and Development +500662,Research and Development,Research and Development +500661,Research and Development,Research and Development +500652,Research and Development,Research and Development +500596,Research and Development,Research and Development +497222,Research and Development,Research and Development +497141,Research and Development,Research and Development +494569,Research and Development,Research and Development +492387,Research and Development,Research and Development +489275,Research and Development,Research and Development +489272,Research and Development,Research and Development +489251,Research and Development,Research and Development +471612,Research and Development,Research and Development +469075,Research and Development,Research and Development +367646,Government Procurement,Government Procurement +367646,International Development,International Development +469074,International Development,International Development +367646,International Relations,International Relations +486166,Research and Development,Research and Development +471470,Research and Development,Research and Development +367646,Research and Development,Research and Development +448624,Research and Development,Research and Development +448619,Research and Development,Research and Development +432985,Research and Development,Research and Development +504013,Research and Development,Research and Development +504003,Research and Development,Research and Development +500658,Research and Development,Research and Development +500599,Research and Development,Research and Development +497167,Research and Development,Research and Development +497140,Research and Development,Research and Development +494567,Research and Development,Research and Development +494566,Research and Development,Research and Development +492357,Research and Development,Research and Development +367560,Defence,Defence +375402,Employment and Training,Employment and Training +367560,Employment and Training,Employment and Training +367560,International Relations,International Relations +469076,Research and Development,Research and Development +469074,Research and Development,Research and Development +375420,Research and Development,Research and Development +375401,Research and Development,Research and Development +367560,Research and Development,Research and Development +504052,Research and Development,Research and Development +504018,Research and Development,Research and Development +504006,Research and Development,Research and Development +500594,Research and Development,Research and Development +494565,Research and Development,Research and Development +492381,Research and Development,Research and Development +492380,Research and Development,Research and Development +492371,Research and Development,Research and Development +484578,Research and Development,Research and Development +375394,Employment and Training,Employment and Training +375420,International Development,International Development +375394,International Development,International Development +486213,Research and Development,Research and Development +448622,Research and Development,Research and Development +367561,Research and Development,Research and Development +504054,Research and Development,Research and Development +504020,Research and Development,Research and Development +503902,Research and Development,Research and Development +503878,Research and Development,Research and Development +500665,Research and Development,Research and Development +500657,Research and Development,Research and Development +497165,Research and Development,Research and Development +496740,Research and Development,Research and Development +492919,Research and Development,Research and Development +492397,Research and Development,Research and Development +489274,Research and Development,Research and Development +367562,Government Procurement,Government Procurement +367562,International Development,International Development +375401,International Trade,International Trade +367562,International Trade,International Trade +484582,Research and Development,Research and Development +448618,Research and Development,Research and Development +433654,Research and Development,Research and Development +408674,Research and Development,Research and Development +367562,Research and Development,Research and Development +504033,Research and Development,Research and Development +500660,Research and Development,Research and Development +500654,Research and Development,Research and Development +500610,Research and Development,Research and Development +497166,Research and Development,Research and Development +497145,Research and Development,Research and Development +494568,Research and Development,Research and Development +492386,Research and Development,Research and Development +492382,Research and Development,Research and Development +492378,Research and Development,Research and Development +492376,Research and Development,Research and Development +486216,Research and Development,Research and Development +369322,Education,Éducation +382365,Infrastructure,Infrastructure +369322,Infrastructure,Infrastructure +382365,Official Languages,Langues officielles +369322,Official Languages,Langues officielles +373012,Defence,Defence +424486,Labour,Labour +424485,Labour,Labour +424488,Labour,Labour +526347,Mining,Mining +521803,Mining,Mining +373012,Mining,Mining +373811,Health,Health +367989,Health,Health +375205,Justice and Law Enforcement,Justice and Law Enforcement +367989,Justice and Law Enforcement,Justice and Law Enforcement +386546,Justice and Law Enforcement,Justice and Law Enforcement +465679,Agriculture,Agriculture +461091,Agriculture,Agriculture +453306,Agriculture,Agriculture +453305,Agriculture,Agriculture +453302,Agriculture,Agriculture +453301,Agriculture,Agriculture +446224,Agriculture,Agriculture +446223,Agriculture,Agriculture +446015,Agriculture,Agriculture +446014,Agriculture,Agriculture +446012,Agriculture,Agriculture +446011,Agriculture,Agriculture +435625,Agriculture,Agriculture +394462,Agriculture,Agriculture +394461,Agriculture,Agriculture +394459,Agriculture,Agriculture +368679,Agriculture,Agriculture +368615,Agriculture,Agriculture +368614,Agriculture,Agriculture +368613,Agriculture,Agriculture +524362,Agriculture,Agriculture +524361,Agriculture,Agriculture +524360,Agriculture,Agriculture +524359,Agriculture,Agriculture +524358,Agriculture,Agriculture +500197,Agriculture,Agriculture +496807,Agriculture,Agriculture +496806,Agriculture,Agriculture +496805,Agriculture,Agriculture +496804,Agriculture,Agriculture +465683,Agriculture,Agriculture +465682,Agriculture,Agriculture +465681,Agriculture,Agriculture +453305,International Trade,International Trade +453302,International Trade,International Trade +394462,International Trade,International Trade +394461,International Trade,International Trade +394459,International Trade,International Trade +368679,International Trade,International Trade +368615,International Trade,International Trade +368614,International Trade,International Trade +368613,International Trade,International Trade +453301,International Trade,International Trade +446224,International Trade,International Trade +446223,International Trade,International Trade +446015,International Trade,International Trade +446014,International Trade,International Trade +446012,International Trade,International Trade +446011,International Trade,International Trade +435625,International Trade,International Trade +524362,International Trade,International Trade +524361,International Trade,International Trade +524360,International Trade,International Trade +524359,International Trade,International Trade +524358,International Trade,International Trade +500197,International Trade,International Trade +496807,International Trade,International Trade +496806,International Trade,International Trade +496805,International Trade,International Trade +496804,International Trade,International Trade +465683,International Trade,International Trade +465682,International Trade,International Trade +465681,International Trade,International Trade +465680,International Trade,International Trade +465679,International Trade,International Trade +461091,International Trade,International Trade +370765,Infrastructure,Infrastructure +370763,Infrastructure,Infrastructure +370765,Regional Development,Regional Development +370763,Regional Development,Regional Development +370765,Energy,Energy +370763,Energy,Energy +370765,Economic Development,Economic Development +370763,Economic Development,Economic Development +541278,Economic Development,Développement économique +501675,Economic Development,Développement économique +467794,Economic Development,Développement économique +467771,Economic Development,Développement économique +467500,Economic Development,Développement économique +467378,Economic Development,Développement économique +454102,Economic Development,Développement économique +454100,Economic Development,Développement économique +454003,Economic Development,Développement économique +427652,Economic Development,Développement économique +427647,International Development,Développement international +398488,Immigration,Immigration +398486,Immigration,Immigration +467731,Immigration,Immigration +454102,Immigration,Immigration +454100,Immigration,Immigration +370709,Economic Development,Economic Development +370092,Economic Development,Economic Development +368775,Tourism,Tourism +367762,Tourism,Tourism +370709,Tourism,Tourism +473736,Budget,Budget +471232,Budget,Budget +403328,Budget,Budget +370475,Budget,Budget +445764,Climate,Climate +445761,Climate,Climate +436042,Climate,Climate +433853,Climate,Climate +433852,Climate,Climate +431250,Climate,Climate +431247,Climate,Climate +431243,Climate,Climate +425649,Climate,Climate +425648,Climate,Climate +419883,Climate,Climate +418290,Climate,Climate +409418,Climate,Climate +409417,Climate,Climate +407764,Climate,Climate +403331,Climate,Climate +403328,Climate,Climate +378193,Climate,Climate +378192,Climate,Climate +378191,Climate,Climate +378190,Climate,Climate +378189,Climate,Climate +378188,Climate,Climate +378187,Climate,Climate +378186,Climate,Climate +378184,Climate,Climate +378181,Climate,Climate +378179,Climate,Climate +378178,Climate,Climate +378177,Climate,Climate +378176,Climate,Climate +378175,Climate,Climate +378174,Climate,Climate +370475,Climate,Climate +369786,Climate,Climate +535710,Climate,Climate +535709,Climate,Climate +535708,Climate,Climate +532368,Climate,Climate +529744,Climate,Climate +529743,Climate,Climate +529742,Climate,Climate +529741,Climate,Climate +529740,Climate,Climate +515877,Climate,Climate +513199,Climate,Climate +502759,Climate,Climate +502754,Climate,Climate +499549,Climate,Climate +499543,Climate,Climate +491591,Climate,Climate +487863,Climate,Climate +487862,Climate,Climate +487861,Climate,Climate +487859,Climate,Climate +482304,Climate,Climate +482302,Climate,Climate +482299,Climate,Climate +482298,Climate,Climate +482295,Climate,Climate +471233,Climate,Climate +471232,Climate,Climate +462895,Climate,Climate +462894,Climate,Climate +462826,Climate,Climate +448450,Climate,Climate +487859,Energy,Energy +370475,Energy,Energy +369786,Energy,Energy +482304,Energy,Energy +482302,Energy,Energy +482299,Energy,Energy +482298,Energy,Energy +482295,Energy,Energy +473738,Energy,Energy +473736,Energy,Energy +462894,Energy,Energy +462826,Energy,Energy +448450,Energy,Energy +445764,Energy,Energy +445761,Energy,Energy +433852,Energy,Energy +432590,Energy,Energy +431250,Energy,Energy +431247,Energy,Energy +425650,Energy,Energy +425649,Energy,Energy +425648,Energy,Energy +421720,Energy,Energy +418290,Energy,Energy +409418,Energy,Energy +407758,Energy,Energy +403352,Energy,Energy +403347,Energy,Energy +403344,Energy,Energy +403328,Energy,Energy +399802,Energy,Energy +378193,Energy,Energy +378191,Energy,Energy +378187,Energy,Energy +378178,Energy,Energy +535710,Energy,Energy +535709,Energy,Energy +535708,Energy,Energy +532368,Energy,Energy +502754,Energy,Energy +499558,Energy,Energy +491591,Energy,Energy +487863,Energy,Energy +487862,Energy,Energy +399799,Environment,Environment +399798,Environment,Environment +378193,Environment,Environment +378192,Environment,Environment +378191,Environment,Environment +378190,Environment,Environment +378189,Environment,Environment +378186,Environment,Environment +378184,Environment,Environment +378182,Environment,Environment +378179,Environment,Environment +378178,Environment,Environment +378177,Environment,Environment +378176,Environment,Environment +378175,Environment,Environment +378174,Environment,Environment +369786,Environment,Environment +515880,Environment,Environment +514821,Environment,Environment +502754,Environment,Environment +499558,Environment,Environment +487859,Environment,Environment +482295,Environment,Environment +479614,Environment,Environment +477614,Environment,Environment +473738,Environment,Environment +473736,Environment,Environment +471233,Environment,Environment +471232,Environment,Environment +445764,Environment,Environment +436042,Environment,Environment +433852,Environment,Environment +432590,Environment,Environment +431250,Environment,Environment +431243,Environment,Environment +425649,Environment,Environment +425648,Environment,Environment +419883,Environment,Environment +418290,Environment,Environment +409417,Environment,Environment +407764,Environment,Environment +403347,Environment,Environment +403344,Environment,Environment +403331,Environment,Environment +403328,Environment,Environment +399804,Environment,Environment +399799,Immigration,Immigration +399798,Immigration,Immigration +389797,Immigration,Immigration +378191,Immigration,Immigration +378189,Immigration,Immigration +378184,Immigration,Immigration +378183,Immigration,Immigration +378181,Immigration,Immigration +378180,Immigration,Immigration +378179,Immigration,Immigration +378178,Immigration,Immigration +378177,Immigration,Immigration +370474,Immigration,Immigration +369786,Immigration,Immigration +419884,Immigration,Immigration +403436,Immigration,Immigration +403434,Immigration,Immigration +403433,Immigration,Immigration +403373,Immigration,Immigration +403331,Immigration,Immigration +403328,Immigration,Immigration +471233,Infrastructure,Infrastructure +471232,Infrastructure,Infrastructure +425650,Infrastructure,Infrastructure +425649,Infrastructure,Infrastructure +425648,Infrastructure,Infrastructure +421720,Infrastructure,Infrastructure +418290,Infrastructure,Infrastructure +403434,Infrastructure,Infrastructure +403352,Infrastructure,Infrastructure +403328,Infrastructure,Infrastructure +399804,Infrastructure,Infrastructure +399799,Infrastructure,Infrastructure +378193,Infrastructure,Infrastructure +378192,Infrastructure,Infrastructure +378191,Infrastructure,Infrastructure +378190,Infrastructure,Infrastructure +378189,Infrastructure,Infrastructure +378187,Infrastructure,Infrastructure +378186,Infrastructure,Infrastructure +378185,Infrastructure,Infrastructure +378184,Infrastructure,Infrastructure +378182,Infrastructure,Infrastructure +378179,Infrastructure,Infrastructure +378178,Infrastructure,Infrastructure +378177,Infrastructure,Infrastructure +378176,Infrastructure,Infrastructure +378175,Infrastructure,Infrastructure +378174,Infrastructure,Infrastructure +369786,Infrastructure,Infrastructure +529744,International Trade,International Trade +515877,International Trade,International Trade +432590,International Trade,International Trade +419883,International Trade,International Trade +418290,International Trade,International Trade +409417,International Trade,International Trade +403434,International Trade,International Trade +403373,International Trade,International Trade +403352,International Trade,International Trade +403344,International Trade,International Trade +403331,International Trade,International Trade +403328,International Trade,International Trade +403322,International Trade,International Trade +399804,International Trade,International Trade +399800,International Trade,International Trade +397333,International Trade,International Trade +378193,International Trade,International Trade +378192,International Trade,International Trade +378191,International Trade,International Trade +378190,International Trade,International Trade +378189,International Trade,International Trade +378188,International Trade,International Trade +378186,International Trade,International Trade +378185,International Trade,International Trade +378184,International Trade,International Trade +378183,International Trade,International Trade +378182,International Trade,International Trade +378181,International Trade,International Trade +378179,International Trade,International Trade +378178,International Trade,International Trade +378177,International Trade,International Trade +378176,International Trade,International Trade +378175,International Trade,International Trade +378174,International Trade,International Trade +370474,International Trade,International Trade +374801,Education,Education +369435,Education,Education +408142,Education,Education +388272,Education,Education +388268,Education,Education +388258,Education,Education +385408,Education,Education +376851,Education,Education +376847,Employment and Training,Employment and Training +374801,Employment and Training,Employment and Training +408142,Employment and Training,Employment and Training +391436,Employment and Training,Employment and Training +390041,Employment and Training,Employment and Training +388272,Employment and Training,Employment and Training +388268,Employment and Training,Employment and Training +388258,Employment and Training,Employment and Training +385408,Employment and Training,Employment and Training +383940,Employment and Training,Employment and Training +383934,Employment and Training,Employment and Training +383933,Employment and Training,Employment and Training +381375,Employment and Training,Employment and Training +408142,Health,Health +382261,Energy,Energy +382260,Energy,Energy +418343,Energy,Energy +393102,Energy,Energy +404524,Environment,Environment +398418,Environment,Environment +393103,Environment,Environment +393102,Environment,Environment +393100,Environment,Environment +386158,Environment,Environment +383950,Environment,Environment +382262,Environment,Environment +376548,Environment,Environment +424958,Environment,Environment +418343,Environment,Environment +410704,Environment,Environment +404527,Environment,Environment +404526,Environment,Environment +369261,Mining,Mining +369260,Mining,Mining +369263,Mining,Mining +533017,Economic Development,Economic Development +533016,Economic Development,Economic Development +424688,Economic Development,Economic Development +408932,Economic Development,Economic Development +408931,Economic Development,Economic Development +381699,Economic Development,Economic Development +375270,Economic Development,Economic Development +375269,Economic Development,Economic Development +375268,Economic Development,Economic Development +374400,Economic Development,Economic Development +374396,Economic Development,Economic Development +465458,Economic Development,Economic Development +465457,Economic Development,Economic Development +451642,Economic Development,Economic Development +451312,Economic Development,Economic Development +451277,Economic Development,Economic Development +451221,Economic Development,Economic Development +424689,Economic Development,Economic Development +542099,Economic Development,Economic Development +533017,Environment,Environment +533016,Environment,Environment +465458,Environment,Environment +465457,Environment,Environment +408932,Environment,Environment +533016,Infrastructure,Infrastructure +465457,Infrastructure,Infrastructure +424689,Infrastructure,Infrastructure +424688,Infrastructure,Infrastructure +408932,Infrastructure,Infrastructure +408931,Infrastructure,Infrastructure +374400,Infrastructure,Infrastructure +374396,Infrastructure,Infrastructure +451642,Infrastructure,Infrastructure +451312,Infrastructure,Infrastructure +451277,Infrastructure,Infrastructure +451221,Infrastructure,Infrastructure +542099,Infrastructure,Infrastructure +533280,Infrastructure,Infrastructure +533279,Infrastructure,Infrastructure +533280,Tourism,Tourism +533279,Tourism,Tourism +381699,Tourism,Tourism +375270,Tourism,Tourism +375269,Tourism,Tourism +375268,Tourism,Tourism +374400,Tourism,Tourism +374396,Tourism,Tourism +465457,Tourism,Tourism +451642,Tourism,Tourism +451312,Tourism,Tourism +451277,Tourism,Tourism +451221,Tourism,Tourism +424689,Tourism,Tourism +424688,Tourism,Tourism +408932,Tourism,Tourism +408931,Tourism,Tourism +533016,Transportation,Transportation +465457,Transportation,Transportation +381699,Transportation,Transportation +375270,Transportation,Transportation +375269,Transportation,Transportation +375268,Transportation,Transportation +374400,Transportation,Transportation +374396,Transportation,Transportation +424689,Transportation,Transportation +424688,Transportation,Transportation +408932,Transportation,Transportation +408931,Transportation,Transportation +542099,Transportation,Transportation +533280,Transportation,Transportation +533279,Transportation,Transportation +377532,Health,Health +377330,Health,Health +377329,Health,Health +377328,Health,Health +377327,Health,Health +374632,Health,Health +368218,Health,Health +368217,Health,Health +368216,Health,Health +368215,Health,Health +377888,Health,Health +377887,Health,Health +368216,Justice and Law Enforcement,Justice and Law Enforcement +368215,Justice and Law Enforcement,Justice and Law Enforcement +377888,Justice and Law Enforcement,Justice and Law Enforcement +377887,Justice and Law Enforcement,Justice and Law Enforcement +377886,Justice and Law Enforcement,Justice and Law Enforcement +377532,Justice and Law Enforcement,Justice and Law Enforcement +377330,Justice and Law Enforcement,Justice and Law Enforcement +377329,Justice and Law Enforcement,Justice and Law Enforcement +377328,Justice and Law Enforcement,Justice and Law Enforcement +377327,Justice and Law Enforcement,Justice and Law Enforcement +375666,Justice and Law Enforcement,Justice and Law Enforcement +375239,Justice and Law Enforcement,Justice and Law Enforcement +375238,Justice and Law Enforcement,Justice and Law Enforcement +375237,Justice and Law Enforcement,Justice and Law Enforcement +375236,Justice and Law Enforcement,Justice and Law Enforcement +375234,Justice and Law Enforcement,Justice and Law Enforcement +375233,Justice and Law Enforcement,Justice and Law Enforcement +375232,Justice and Law Enforcement,Justice and Law Enforcement +375231,Justice and Law Enforcement,Justice and Law Enforcement +375230,Justice and Law Enforcement,Justice and Law Enforcement +375227,Justice and Law Enforcement,Justice and Law Enforcement +374632,Justice and Law Enforcement,Justice and Law Enforcement +368218,Justice and Law Enforcement,Justice and Law Enforcement +377323,Health,Health +377322,Health,Health +374643,Health,Health +368223,Health,Health +368222,Health,Health +368221,Health,Health +368219,Health,Health +377892,Health,Health +377890,Health,Health +377889,Health,Health +377533,Health,Health +377325,Health,Health +368221,Justice and Law Enforcement,Justice and Law Enforcement +368219,Justice and Law Enforcement,Justice and Law Enforcement +377892,Justice and Law Enforcement,Justice and Law Enforcement +377890,Justice and Law Enforcement,Justice and Law Enforcement +377889,Justice and Law Enforcement,Justice and Law Enforcement +377533,Justice and Law Enforcement,Justice and Law Enforcement +377325,Justice and Law Enforcement,Justice and Law Enforcement +377324,Justice and Law Enforcement,Justice and Law Enforcement +377323,Justice and Law Enforcement,Justice and Law Enforcement +377322,Justice and Law Enforcement,Justice and Law Enforcement +375668,Justice and Law Enforcement,Justice and Law Enforcement +375249,Justice and Law Enforcement,Justice and Law Enforcement +375248,Justice and Law Enforcement,Justice and Law Enforcement +375247,Justice and Law Enforcement,Justice and Law Enforcement +375246,Justice and Law Enforcement,Justice and Law Enforcement +375245,Justice and Law Enforcement,Justice and Law Enforcement +375244,Justice and Law Enforcement,Justice and Law Enforcement +375243,Justice and Law Enforcement,Justice and Law Enforcement +375242,Justice and Law Enforcement,Justice and Law Enforcement +375241,Justice and Law Enforcement,Justice and Law Enforcement +375240,Justice and Law Enforcement,Justice and Law Enforcement +374643,Justice and Law Enforcement,Justice and Law Enforcement +368223,Justice and Law Enforcement,Justice and Law Enforcement +374344,Environment,Environment +374338,Environment,Environment +441188,Agriculture,Agriculture +433450,Agriculture,Agriculture +412370,Agriculture,Agriculture +412369,Agriculture,Agriculture +412362,Agriculture,Agriculture +410628,Agriculture,Agriculture +410623,Agriculture,Agriculture +404159,Agriculture,Agriculture +400692,Agriculture,Agriculture +397898,Agriculture,Agriculture +397897,Agriculture,Agriculture +397895,Agriculture,Agriculture +382742,Agriculture,Agriculture +509615,Agriculture,Agriculture +483059,Agriculture,Agriculture +482685,Agriculture,Agriculture +480788,Agriculture,Agriculture +462944,Agriculture,Agriculture +462943,Agriculture,Agriculture +459742,Agriculture,Agriculture +441202,Agriculture,Agriculture +441192,Agriculture,Agriculture +382741,Consumer Issues,Consumer Issues +382740,Consumer Issues,Consumer Issues +400697,Consumer Issues,Consumer Issues +400692,Consumer Issues,Consumer Issues +386364,Consumer Issues,Consumer Issues +382743,Consumer Issues,Consumer Issues +427494,Economic Development,Economic Development +427493,Economic Development,Economic Development +382358,Economic Development,Economic Development +370547,Economic Development,Economic Development +370546,Economic Development,Economic Development +370537,Economic Development,Economic Development +421100,Economic Development,Economic Development +421099,Economic Development,Economic Development +420724,Economic Development,Economic Development +413909,Economic Development,Economic Development +412374,Economic Development,Economic Development +412370,Economic Development,Economic Development +412369,Economic Development,Economic Development +412368,Economic Development,Economic Development +412367,Economic Development,Economic Development +412366,Economic Development,Economic Development +412365,Economic Development,Economic Development +412364,Economic Development,Economic Development +412363,Economic Development,Economic Development +412362,Economic Development,Economic Development +412361,Economic Development,Economic Development +412360,Economic Development,Economic Development +412359,Economic Development,Economic Development +412358,Economic Development,Economic Development +412357,Economic Development,Economic Development +412356,Economic Development,Economic Development +412355,Economic Development,Economic Development +411226,Economic Development,Economic Development +411225,Economic Development,Economic Development +410724,Economic Development,Economic Development +410628,Economic Development,Economic Development +410627,Economic Development,Economic Development +410623,Economic Development,Economic Development +410620,Economic Development,Economic Development +410615,Economic Development,Economic Development +410614,Economic Development,Economic Development +410612,Economic Development,Economic Development +410608,Economic Development,Economic Development +407266,Economic Development,Economic Development +407265,Economic Development,Economic Development +407004,Economic Development,Economic Development +404159,Economic Development,Economic Development +404158,Economic Development,Economic Development +404156,Economic Development,Economic Development +395129,Economic Development,Economic Development +392969,Economic Development,Economic Development +392921,Economic Development,Economic Development +392159,Economic Development,Economic Development +389100,Economic Development,Economic Development +389099,Economic Development,Economic Development +389098,Economic Development,Economic Development +389097,Economic Development,Economic Development +389096,Economic Development,Economic Development +389008,Economic Development,Economic Development +389007,Economic Development,Economic Development +389006,Economic Development,Economic Development +389003,Economic Development,Economic Development +389002,Economic Development,Economic Development +387102,Economic Development,Economic Development +386474,Economic Development,Economic Development +386472,Economic Development,Economic Development +386471,Economic Development,Economic Development +386469,Economic Development,Economic Development +386467,Economic Development,Economic Development +386424,Economic Development,Economic Development +386422,Economic Development,Economic Development +386421,Economic Development,Economic Development +386420,Economic Development,Economic Development +386419,Economic Development,Economic Development +386418,Economic Development,Economic Development +386417,Economic Development,Economic Development +386416,Economic Development,Economic Development +386415,Economic Development,Economic Development +386414,Economic Development,Economic Development +386412,Economic Development,Economic Development +386411,Economic Development,Economic Development +386410,Economic Development,Economic Development +386409,Economic Development,Economic Development +386408,Economic Development,Economic Development +386407,Economic Development,Economic Development +386374,Economic Development,Economic Development +386373,Economic Development,Economic Development +386372,Economic Development,Economic Development +386371,Economic Development,Economic Development +386370,Economic Development,Economic Development +386369,Economic Development,Economic Development +386368,Economic Development,Economic Development +386367,Economic Development,Economic Development +386366,Economic Development,Economic Development +386365,Economic Development,Economic Development +386364,Economic Development,Economic Development +386361,Economic Development,Economic Development +386360,Economic Development,Economic Development +386359,Economic Development,Economic Development +386079,Economic Development,Economic Development +386076,Economic Development,Economic Development +386074,Economic Development,Economic Development +386073,Economic Development,Economic Development +382739,Economic Development,Economic Development +527011,Economic Development,Economic Development +526855,Economic Development,Economic Development +526699,Economic Development,Economic Development +525448,Economic Development,Economic Development +524180,Economic Development,Economic Development +483221,Economic Development,Economic Development +483058,Economic Development,Economic Development +482686,Economic Development,Economic Development +482685,Economic Development,Economic Development +482684,Economic Development,Economic Development +481257,Economic Development,Economic Development +481256,Economic Development,Economic Development +480016,Economic Development,Economic Development +478726,Economic Development,Economic Development +478725,Economic Development,Economic Development +478662,Economic Development,Economic Development +477125,Economic Development,Economic Development +476673,Economic Development,Economic Development +467522,Economic Development,Economic Development +467521,Economic Development,Economic Development +467515,Economic Development,Economic Development +465896,Economic Development,Economic Development +463165,Economic Development,Economic Development +463162,Economic Development,Economic Development +463161,Economic Development,Economic Development +462944,Economic Development,Economic Development +462943,Economic Development,Economic Development +461192,Economic Development,Economic Development +453153,Economic Development,Economic Development +442135,Economic Development,Economic Development +442127,Economic Development,Economic Development +441202,Economic Development,Economic Development +441201,Economic Development,Economic Development +441200,Economic Development,Economic Development +441199,Economic Development,Economic Development +441198,Economic Development,Economic Development +441197,Economic Development,Economic Development +441196,Economic Development,Economic Development +441194,Economic Development,Economic Development +441193,Economic Development,Economic Development +441192,Economic Development,Economic Development +441191,Economic Development,Economic Development +441190,Economic Development,Economic Development +441189,Economic Development,Economic Development +433451,Economic Development,Economic Development +463163,Environment,Environment +463162,Environment,Environment +463161,Environment,Environment +463160,Environment,Environment +459008,Environment,Environment +459007,Environment,Environment +453154,Environment,Environment +453152,Environment,Environment +442135,Environment,Environment +441193,Environment,Environment +431732,Environment,Environment +424996,Environment,Environment +404115,Environment,Environment +382357,Environment,Environment +380639,Environment,Environment +525446,Environment,Environment +485751,Environment,Environment +485701,Environment,Environment +485700,Environment,Environment +484406,Environment,Environment +484405,Environment,Environment +482686,Environment,Environment +467522,Environment,Environment +467521,Environment,Environment +467519,Environment,Environment +467517,Environment,Environment +467515,Environment,Environment +463165,Environment,Environment +424992,Health,Health +420724,Health,Health +373813,Health,Health +370546,Health,Health +370537,Health,Health +412374,Health,Health +412370,Health,Health +412369,Health,Health +412368,Health,Health +412367,Health,Health +412366,Health,Health +412365,Health,Health +412364,Health,Health +412363,Health,Health +412362,Health,Health +412361,Health,Health +412360,Health,Health +412359,Health,Health +412358,Health,Health +412357,Health,Health +412356,Health,Health +412355,Health,Health +411831,Health,Health +411830,Health,Health +411226,Health,Health +411225,Health,Health +411223,Health,Health +410724,Health,Health +410668,Health,Health +410628,Health,Health +410627,Health,Health +410625,Health,Health +410623,Health,Health +410620,Health,Health +410615,Health,Health +410614,Health,Health +410612,Health,Health +410608,Health,Health +407004,Health,Health +404567,Health,Health +404157,Health,Health +404156,Health,Health +400697,Health,Health +399496,Health,Health +397900,Health,Health +397898,Health,Health +397897,Health,Health +397896,Health,Health +397895,Health,Health +397890,Health,Health +395605,Health,Health +395189,Health,Health +395129,Health,Health +392921,Health,Health +392159,Health,Health +392158,Health,Health +389100,Health,Health +389099,Health,Health +389098,Health,Health +389097,Health,Health +389096,Health,Health +389008,Health,Health +389007,Health,Health +389006,Health,Health +389003,Health,Health +389002,Health,Health +387192,Health,Health +387191,Health,Health +387102,Health,Health +386474,Health,Health +386472,Health,Health +386471,Health,Health +386469,Health,Health +386467,Health,Health +386424,Health,Health +386422,Health,Health +386421,Health,Health +386420,Health,Health +386419,Health,Health +386418,Health,Health +386417,Health,Health +386416,Health,Health +386415,Health,Health +386412,Health,Health +386411,Health,Health +386410,Health,Health +386409,Health,Health +386408,Health,Health +386407,Health,Health +386374,Health,Health +386373,Health,Health +386372,Health,Health +386371,Health,Health +386370,Health,Health +386368,Health,Health +386367,Health,Health +386366,Health,Health +386364,Health,Health +386359,Health,Health +386081,Health,Health +386079,Health,Health +386074,Health,Health +386073,Health,Health +382743,Health,Health +382742,Health,Health +382741,Health,Health +382740,Health,Health +382739,Health,Health +382358,Health,Health +527011,Health,Health +526855,Health,Health +526699,Health,Health +525578,Health,Health +525450,Health,Health +525448,Health,Health +524180,Health,Health +523816,Health,Health +516806,Health,Health +516805,Health,Health +516804,Health,Health +516802,Health,Health +516801,Health,Health +516800,Health,Health +494472,Health,Health +494471,Health,Health +488520,Health,Health +485749,Health,Health +484409,Health,Health +483221,Health,Health +483059,Health,Health +483058,Health,Health +467441,Health,Health +467439,Health,Health +463165,Health,Health +463164,Health,Health +463162,Health,Health +463161,Health,Health +463159,Health,Health +461192,Health,Health +448675,Health,Health +448674,Health,Health +448673,Health,Health +442127,Health,Health +441201,Health,Health +441200,Health,Health +441199,Health,Health +441196,Health,Health +441194,Health,Health +441193,Health,Health +441190,Health,Health +441189,Health,Health +441188,Health,Health +441169,Health,Health +441168,Health,Health +433452,Health,Health +433451,Health,Health +433450,Health,Health +441191,Industry,Industry +441189,Industry,Industry +407004,Industry,Industry +404158,Industry,Industry +392969,Industry,Industry +386414,Industry,Industry +386369,Industry,Industry +386365,Industry,Industry +386361,Industry,Industry +386360,Industry,Industry +382743,Industry,Industry +382742,Industry,Industry +382741,Industry,Industry +382740,Industry,Industry +382739,Industry,Industry +441200,Industry,Industry +441199,Industry,Industry +441198,Industry,Industry +441197,Industry,Industry +441196,Industry,Industry +468702,International Trade,International Trade +465896,International Trade,International Trade +441198,International Trade,International Trade +400702,International Trade,International Trade +400698,International Trade,International Trade +463161,Taxation and Finance,Taxation and Finance +441170,Taxation and Finance,Taxation and Finance +370547,Taxation and Finance,Taxation and Finance +370546,Taxation and Finance,Taxation and Finance +370537,Taxation and Finance,Taxation and Finance +412374,Taxation and Finance,Taxation and Finance +412370,Taxation and Finance,Taxation and Finance +412369,Taxation and Finance,Taxation and Finance +412368,Taxation and Finance,Taxation and Finance +412367,Taxation and Finance,Taxation and Finance +412366,Taxation and Finance,Taxation and Finance +412365,Taxation and Finance,Taxation and Finance +412364,Taxation and Finance,Taxation and Finance +412363,Taxation and Finance,Taxation and Finance +412362,Taxation and Finance,Taxation and Finance +412361,Taxation and Finance,Taxation and Finance +412360,Taxation and Finance,Taxation and Finance +412359,Taxation and Finance,Taxation and Finance +412358,Taxation and Finance,Taxation and Finance +412357,Taxation and Finance,Taxation and Finance +412356,Taxation and Finance,Taxation and Finance +412355,Taxation and Finance,Taxation and Finance +410625,Taxation and Finance,Taxation and Finance +410620,Taxation and Finance,Taxation and Finance +410615,Taxation and Finance,Taxation and Finance +410614,Taxation and Finance,Taxation and Finance +410612,Taxation and Finance,Taxation and Finance +410608,Taxation and Finance,Taxation and Finance +395129,Taxation and Finance,Taxation and Finance +392969,Taxation and Finance,Taxation and Finance +392159,Taxation and Finance,Taxation and Finance +387102,Taxation and Finance,Taxation and Finance +386474,Taxation and Finance,Taxation and Finance +386472,Taxation and Finance,Taxation and Finance +386471,Taxation and Finance,Taxation and Finance +386469,Taxation and Finance,Taxation and Finance +386467,Taxation and Finance,Taxation and Finance +386424,Taxation and Finance,Taxation and Finance +386422,Taxation and Finance,Taxation and Finance +386421,Taxation and Finance,Taxation and Finance +386420,Taxation and Finance,Taxation and Finance +386419,Taxation and Finance,Taxation and Finance +386418,Taxation and Finance,Taxation and Finance +386417,Taxation and Finance,Taxation and Finance +386416,Taxation and Finance,Taxation and Finance +386415,Taxation and Finance,Taxation and Finance +386414,Taxation and Finance,Taxation and Finance +386412,Taxation and Finance,Taxation and Finance +386411,Taxation and Finance,Taxation and Finance +386410,Taxation and Finance,Taxation and Finance +386409,Taxation and Finance,Taxation and Finance +386408,Taxation and Finance,Taxation and Finance +386407,Taxation and Finance,Taxation and Finance +386374,Taxation and Finance,Taxation and Finance +386373,Taxation and Finance,Taxation and Finance +386372,Taxation and Finance,Taxation and Finance +386371,Taxation and Finance,Taxation and Finance +386370,Taxation and Finance,Taxation and Finance +386369,Taxation and Finance,Taxation and Finance +386368,Taxation and Finance,Taxation and Finance +386367,Taxation and Finance,Taxation and Finance +386366,Taxation and Finance,Taxation and Finance +386365,Taxation and Finance,Taxation and Finance +386364,Taxation and Finance,Taxation and Finance +386361,Taxation and Finance,Taxation and Finance +386360,Taxation and Finance,Taxation and Finance +386359,Taxation and Finance,Taxation and Finance +386079,Taxation and Finance,Taxation and Finance +386076,Taxation and Finance,Taxation and Finance +386074,Taxation and Finance,Taxation and Finance +386073,Taxation and Finance,Taxation and Finance +370172,Justice and Law Enforcement,Justice and Law Enforcement +370170,Justice and Law Enforcement,Justice and Law Enforcement +381980,Justice and Law Enforcement,Justice and Law Enforcement +378146,Justice and Law Enforcement,Justice and Law Enforcement +378145,Justice and Law Enforcement,Justice and Law Enforcement +378144,Justice and Law Enforcement,Justice and Law Enforcement +377269,Justice and Law Enforcement,Justice and Law Enforcement +374679,Health,Health +374615,Health,Health +372005,Health,Health +371583,Health,Health +371542,Health,Health +370171,Health,Health +370059,Health,Health +381980,Health,Health +378146,Health,Health +378145,Health,Health +378144,Health,Health +378150,Justice and Law Enforcement,Justice and Law Enforcement +378148,Justice and Law Enforcement,Justice and Law Enforcement +378046,Justice and Law Enforcement,Justice and Law Enforcement +377270,Justice and Law Enforcement,Justice and Law Enforcement +371588,Justice and Law Enforcement,Justice and Law Enforcement +371586,Justice and Law Enforcement,Justice and Law Enforcement +371586,Health,Health +371543,Health,Health +381979,Health,Health +378150,Health,Health +378148,Health,Health +378046,Health,Health +377270,Health,Health +374680,Health,Health +374625,Health,Health +372008,Health,Health +371591,Health,Health +371590,Health,Health +371589,Health,Health +391926,Health,Health +381380,Health,Health +483785,Health,Health +461117,Health,Health +423246,Health,Health +423242,Health,Health +391926,Industry,Industry +381380,Industry,Industry +483785,Industry,Industry +461117,Industry,Industry +423246,Industry,Industry +423242,Industry,Industry +381380,Taxation and Finance,Taxation and Finance +483785,Taxation and Finance,Taxation and Finance +376512,Security,Security +373194,Security,Security +376514,Security,Security +375744,Health,Health +371330,Justice and Law Enforcement,Justice and Law Enforcement +371330,Security,Security +513720,Immigration,Immigration +469607,Immigration,Immigration +367949,Immigration,Immigration +421240,Immigration,Immigration +407503,Immigration,Immigration +394723,Immigration,Immigration +514398,Immigration,Immigration +370169,Justice and Law Enforcement,Justice and Law Enforcement +386865,Infrastructure,Infrastructure +384358,Infrastructure,Infrastructure +375553,Infrastructure,Infrastructure +375552,Infrastructure,Infrastructure +373519,Infrastructure,Infrastructure +370268,Infrastructure,Infrastructure +367892,Infrastructure,Infrastructure +399482,Infrastructure,Infrastructure +399481,Infrastructure,Infrastructure +395813,Infrastructure,Infrastructure +389470,Infrastructure,Infrastructure +389468,Infrastructure,Infrastructure +386935,Infrastructure,Infrastructure +386934,Infrastructure,Infrastructure +386933,Infrastructure,Infrastructure +386931,Infrastructure,Infrastructure +386930,Infrastructure,Infrastructure +386925,Infrastructure,Infrastructure +386924,Infrastructure,Infrastructure +386922,Infrastructure,Infrastructure +386921,Infrastructure,Infrastructure +386918,Infrastructure,Infrastructure +386916,Infrastructure,Infrastructure +386915,Infrastructure,Infrastructure +386912,Infrastructure,Infrastructure +386911,Infrastructure,Infrastructure +386910,Infrastructure,Infrastructure +386909,Infrastructure,Infrastructure +386907,Infrastructure,Infrastructure +386905,Infrastructure,Infrastructure +386903,Infrastructure,Infrastructure +386901,Infrastructure,Infrastructure +386899,Infrastructure,Infrastructure +386897,Infrastructure,Infrastructure +386896,Infrastructure,Infrastructure +386895,Infrastructure,Infrastructure +386894,Infrastructure,Infrastructure +386893,Infrastructure,Infrastructure +386892,Infrastructure,Infrastructure +386870,Infrastructure,Infrastructure +386869,Infrastructure,Infrastructure +386868,Infrastructure,Infrastructure +386867,Infrastructure,Infrastructure +371778,Economic Development,Economic Development +371808,Economic Development,Economic Development +371808,Education,Education +371808,Industry,Industry +371812,Regional Development,Regional Development +371808,Tourism,Tourism +411155,Economic Development,Economic Development +383404,Economic Development,Economic Development +370419,Economic Development,Economic Development +370369,Economic Development,Economic Development +370363,Economic Development,Economic Development +370362,Economic Development,Economic Development +370360,Economic Development,Economic Development +370360,Regional Development,Regional Development +370358,Regional Development,Regional Development +370419,Regional Development,Regional Development +370369,Regional Development,Regional Development +370363,Regional Development,Regional Development +370360,Infrastructure,Infrastructure +370358,Infrastructure,Infrastructure +383409,Infrastructure,Infrastructure +383408,Infrastructure,Infrastructure +383404,Infrastructure,Infrastructure +383401,Infrastructure,Infrastructure +370419,Infrastructure,Infrastructure +370369,Infrastructure,Infrastructure +370363,Infrastructure,Infrastructure +370358,Energy,Energy +411155,Energy,Energy +397864,Energy,Energy +383409,Energy,Energy +383408,Energy,Energy +383402,Energy,Energy +383401,Energy,Energy +375331,Energy,Energy +370419,Energy,Energy +370369,Energy,Energy +370363,Energy,Energy +370362,Energy,Energy +380541,Regional Development,Regional Development +397443,Regional Development,Regional Development +389562,Regional Development,Regional Development +389559,Regional Development,Regional Development +384363,Regional Development,Regional Development +380541,Infrastructure,Infrastructure +370514,Infrastructure,Infrastructure +389562,Infrastructure,Infrastructure +389559,Infrastructure,Infrastructure +372951,Infrastructure,Infrastructure +372950,Infrastructure,Infrastructure +372954,Infrastructure,Infrastructure +372953,Infrastructure,Infrastructure +395012,Economic Development,Economic Development +375368,Economic Development,Economic Development +370334,Industry,Industry +370333,Industry,Industry +395017,Industry,Industry +372976,Industry,Industry +372972,Industry,Industry +372969,Industry,Industry +372967,Industry,Industry +372964,Industry,Industry +372963,Industry,Industry +372957,Industry,Industry +372955,Industry,Industry +370339,Industry,Industry +370338,Industry,Industry +370337,Industry,Industry +370336,Industry,Industry +370336,Labour,Labour +370335,Labour,Labour +370334,Labour,Labour +370333,Labour,Labour +395012,Labour,Labour +370339,Labour,Labour +370338,Labour,Labour +395012,Transportation,Transportation +375368,Transportation,Transportation +370339,Transportation,Transportation +370338,Transportation,Transportation +370337,Transportation,Transportation +370336,Transportation,Transportation +370335,Transportation,Transportation +370334,Transportation,Transportation +370333,Transportation,Transportation +374726,Budget,Budget +374723,Budget,Budget +374734,Budget,Budget +374731,Budget,Budget +374726,Infrastructure,Infrastructure +374723,Infrastructure,Infrastructure +374734,Infrastructure,Infrastructure +374731,Infrastructure,Infrastructure +506832,Energy,Energy +506831,Energy,Energy +376636,Energy,Energy +373758,Energy,Energy +394322,Energy,Energy +394313,Energy,Energy +387763,Energy,Energy +387760,Energy,Energy +387755,Energy,Energy +382674,Energy,Energy +381167,Energy,Energy +381166,Energy,Energy +376646,Energy,Energy +376644,Energy,Energy +376642,Energy,Energy +494705,Industry,Industry +480445,Industry,Industry +428677,Industry,Industry +394092,Industry,Industry +510257,Industry,Industry +368424,Industry,Industry +368422,Industry,Industry +380946,Industry,Industry +376160,Industry,Industry +375624,Industry,Industry +375097,Industry,Industry +374491,Industry,Industry +373463,Industry,Industry +373289,Industry,Industry +373232,Industry,Industry +371215,Industry,Industry +370905,Industry,Industry +371215,Employment and Training,Employment and Training +370905,Employment and Training,Employment and Training +376160,Employment and Training,Employment and Training +375624,Employment and Training,Employment and Training +375097,Employment and Training,Employment and Training +374491,Employment and Training,Employment and Training +373463,Employment and Training,Employment and Training +373289,Employment and Training,Employment and Training +368424,Economic Development,Economic Development +368422,Economic Development,Economic Development +380946,Economic Development,Economic Development +376160,Economic Development,Economic Development +375624,Economic Development,Economic Development +375097,Economic Development,Economic Development +374491,Economic Development,Economic Development +373463,Economic Development,Economic Development +373289,Economic Development,Economic Development +373232,Economic Development,Economic Development +371215,Economic Development,Economic Development +370905,Economic Development,Economic Development +396426,Health,Health +395239,Health,Health +395239,Industry,Industry +372180,Research and Development,Research and Development +372030,Research and Development,Research and Development +396426,Research and Development,Research and Development +395239,Research and Development,Research and Development +464688,Budget,Budget +464685,Budget,Budget +368230,Budget,Budget +390948,Budget,Budget +390852,Budget,Budget +390845,Budget,Budget +390835,Budget,Budget +390805,Budget,Budget +390781,Budget,Budget +390717,Budget,Budget +390714,Budget,Budget +390713,Budget,Budget +390707,Budget,Budget +390699,Budget,Budget +390691,Budget,Budget +390688,Budget,Budget +390682,Budget,Budget +390672,Budget,Budget +387538,Budget,Budget +387536,Budget,Budget +387534,Budget,Budget +387528,Budget,Budget +387522,Budget,Budget +385064,Budget,Budget +385063,Budget,Budget +382170,Budget,Budget +380543,Budget,Budget +380542,Budget,Budget +380540,Budget,Budget +380539,Budget,Budget +380521,Budget,Budget +379665,Budget,Budget +378656,Budget,Budget +378652,Budget,Budget +378650,Budget,Budget +378629,Budget,Budget +377567,Budget,Budget +377284,Budget,Budget +377282,Budget,Budget +377276,Budget,Budget +377273,Budget,Budget +377271,Budget,Budget +377263,Budget,Budget +377260,Budget,Budget +376753,Budget,Budget +376750,Budget,Budget +376749,Budget,Budget +376736,Budget,Budget +376731,Budget,Budget +376729,Budget,Budget +374007,Budget,Budget +374006,Budget,Budget +373996,Budget,Budget +373995,Budget,Budget +373994,Budget,Budget +373993,Budget,Budget +373992,Budget,Budget +373990,Budget,Budget +373989,Budget,Budget +373987,Budget,Budget +373986,Budget,Budget +368231,Budget,Budget +464683,Budget,Budget +464682,Budget,Budget +464678,Budget,Budget +462002,Budget,Budget +453084,Budget,Budget +442645,Budget,Budget +442408,Budget,Budget +442390,Budget,Budget +442388,Budget,Budget +442373,Budget,Budget +442368,Budget,Budget +439683,Budget,Budget +439682,Budget,Budget +439680,Budget,Budget +439679,Budget,Budget +439678,Budget,Budget +439676,Budget,Budget +439665,Budget,Budget +439663,Budget,Budget +439661,Budget,Budget +439660,Budget,Budget +439657,Budget,Budget +439654,Budget,Budget +439653,Budget,Budget +439650,Budget,Budget +439649,Budget,Budget +439648,Budget,Budget +439635,Budget,Budget +439634,Budget,Budget +439633,Budget,Budget +439632,Budget,Budget +439627,Budget,Budget +439625,Budget,Budget +439624,Budget,Budget +439619,Budget,Budget +436001,Budget,Budget +433811,Budget,Budget +427872,Budget,Budget +423012,Budget,Budget +423011,Budget,Budget +423010,Budget,Budget +416325,Budget,Budget +416324,Budget,Budget +412595,Budget,Budget +412574,Budget,Budget +408357,Budget,Budget +392766,Budget,Budget +391030,Budget,Budget +391029,Budget,Budget +391027,Budget,Budget +391026,Budget,Budget +391023,Budget,Budget +391021,Budget,Budget +391019,Budget,Budget +391014,Budget,Budget +391001,Budget,Budget +390997,Budget,Budget +510504,Budget,Budget +509257,Budget,Budget +509228,Budget,Budget +508807,Budget,Budget +508794,Budget,Budget +505279,Budget,Budget +501970,Budget,Budget +501968,Budget,Budget +501964,Budget,Budget +499547,Budget,Budget +499541,Budget,Budget +499533,Budget,Budget +499521,Budget,Budget +499132,Budget,Budget +495706,Budget,Budget +495696,Budget,Budget +492222,Budget,Budget +492219,Budget,Budget +492217,Budget,Budget +492193,Budget,Budget +492192,Budget,Budget +492191,Budget,Budget +492190,Budget,Budget +492189,Budget,Budget +492188,Budget,Budget +492187,Budget,Budget +492186,Budget,Budget +492184,Budget,Budget +492183,Budget,Budget +492182,Budget,Budget +492181,Budget,Budget +492178,Budget,Budget +492177,Budget,Budget +492176,Budget,Budget +492175,Budget,Budget +492174,Budget,Budget +492173,Budget,Budget +492172,Budget,Budget +492171,Budget,Budget +492165,Budget,Budget +492158,Budget,Budget +492157,Budget,Budget +492156,Budget,Budget +492155,Budget,Budget +492154,Budget,Budget +492153,Budget,Budget +492150,Budget,Budget +492149,Budget,Budget +492147,Budget,Budget +488399,Budget,Budget +481178,Budget,Budget +479319,Budget,Budget +390714,Economic Development,Economic Development +390713,Economic Development,Economic Development +390707,Economic Development,Economic Development +390699,Economic Development,Economic Development +390691,Economic Development,Economic Development +390688,Economic Development,Economic Development +390682,Economic Development,Economic Development +390672,Economic Development,Economic Development +387538,Economic Development,Economic Development +387536,Economic Development,Economic Development +387522,Economic Development,Economic Development +385064,Economic Development,Economic Development +385063,Economic Development,Economic Development +382170,Economic Development,Economic Development +380543,Economic Development,Economic Development +380542,Economic Development,Economic Development +380540,Economic Development,Economic Development +380539,Economic Development,Economic Development +380521,Economic Development,Economic Development +379665,Economic Development,Economic Development +378656,Economic Development,Economic Development +378652,Economic Development,Economic Development +378650,Economic Development,Economic Development +378629,Economic Development,Economic Development +377567,Economic Development,Economic Development +377284,Economic Development,Economic Development +377282,Economic Development,Economic Development +377276,Economic Development,Economic Development +377273,Economic Development,Economic Development +377271,Economic Development,Economic Development +377263,Economic Development,Economic Development +377260,Economic Development,Economic Development +376753,Economic Development,Economic Development +376750,Economic Development,Economic Development +376749,Economic Development,Economic Development +376736,Economic Development,Economic Development +376731,Economic Development,Economic Development +376729,Economic Development,Economic Development +374007,Economic Development,Economic Development +374006,Economic Development,Economic Development +373996,Economic Development,Economic Development +373995,Economic Development,Economic Development +373994,Economic Development,Economic Development +373993,Economic Development,Economic Development +373992,Economic Development,Economic Development +373990,Economic Development,Economic Development +373989,Economic Development,Economic Development +373987,Economic Development,Economic Development +373986,Economic Development,Economic Development +368231,Economic Development,Economic Development +368230,Economic Development,Economic Development +505279,Economic Development,Economic Development +495706,Economic Development,Economic Development +481178,Economic Development,Economic Development +392766,Economic Development,Economic Development +391030,Economic Development,Economic Development +391029,Economic Development,Economic Development +391027,Economic Development,Economic Development +391026,Economic Development,Economic Development +391023,Economic Development,Economic Development +391021,Economic Development,Economic Development +391019,Economic Development,Economic Development +391014,Economic Development,Economic Development +391001,Economic Development,Economic Development +390997,Economic Development,Economic Development +390948,Economic Development,Economic Development +390852,Economic Development,Economic Development +390845,Economic Development,Economic Development +390835,Economic Development,Economic Development +390805,Economic Development,Economic Development +390781,Economic Development,Economic Development +439660,Research and Development,Research and Development +439657,Research and Development,Research and Development +368231,Research and Development,Research and Development +368230,Research and Development,Research and Development +387538,Research and Development,Research and Development +387536,Research and Development,Research and Development +387534,Research and Development,Research and Development +387528,Research and Development,Research and Development +387522,Research and Development,Research and Development +385064,Research and Development,Research and Development +385063,Research and Development,Research and Development +382170,Research and Development,Research and Development +380543,Research and Development,Research and Development +380542,Research and Development,Research and Development +380540,Research and Development,Research and Development +380539,Research and Development,Research and Development +380521,Research and Development,Research and Development +379665,Research and Development,Research and Development +378656,Research and Development,Research and Development +378652,Research and Development,Research and Development +378650,Research and Development,Research and Development +378629,Research and Development,Research and Development +377567,Research and Development,Research and Development +377284,Research and Development,Research and Development +377282,Research and Development,Research and Development +377276,Research and Development,Research and Development +377273,Research and Development,Research and Development +377271,Research and Development,Research and Development +377263,Research and Development,Research and Development +377260,Research and Development,Research and Development +376753,Research and Development,Research and Development +376750,Research and Development,Research and Development +376749,Research and Development,Research and Development +376736,Research and Development,Research and Development +376731,Research and Development,Research and Development +376729,Research and Development,Research and Development +374007,Research and Development,Research and Development +374006,Research and Development,Research and Development +373996,Research and Development,Research and Development +373995,Research and Development,Research and Development +373994,Research and Development,Research and Development +373993,Research and Development,Research and Development +373992,Research and Development,Research and Development +373990,Research and Development,Research and Development +373989,Research and Development,Research and Development +373987,Research and Development,Research and Development +373986,Research and Development,Research and Development +439654,Research and Development,Research and Development +439653,Research and Development,Research and Development +439650,Research and Development,Research and Development +439649,Research and Development,Research and Development +439648,Research and Development,Research and Development +439635,Research and Development,Research and Development +439634,Research and Development,Research and Development +439633,Research and Development,Research and Development +439632,Research and Development,Research and Development +439627,Research and Development,Research and Development +439625,Research and Development,Research and Development +439624,Research and Development,Research and Development +439619,Research and Development,Research and Development +436001,Research and Development,Research and Development +433811,Research and Development,Research and Development +427872,Research and Development,Research and Development +423011,Research and Development,Research and Development +408359,Research and Development,Research and Development +408357,Research and Development,Research and Development +399132,Research and Development,Research and Development +398884,Research and Development,Research and Development +396129,Research and Development,Research and Development +396104,Research and Development,Research and Development +396101,Research and Development,Research and Development +393705,Research and Development,Research and Development +393703,Research and Development,Research and Development +392853,Research and Development,Research and Development +392766,Research and Development,Research and Development +392765,Research and Development,Research and Development +392761,Research and Development,Research and Development +392759,Research and Development,Research and Development +392758,Research and Development,Research and Development +391030,Research and Development,Research and Development +391029,Research and Development,Research and Development +391027,Research and Development,Research and Development +391026,Research and Development,Research and Development +391023,Research and Development,Research and Development +391021,Research and Development,Research and Development +391019,Research and Development,Research and Development +391014,Research and Development,Research and Development +391001,Research and Development,Research and Development +390997,Research and Development,Research and Development +390948,Research and Development,Research and Development +390852,Research and Development,Research and Development +390845,Research and Development,Research and Development +390835,Research and Development,Research and Development +390805,Research and Development,Research and Development +390781,Research and Development,Research and Development +390717,Research and Development,Research and Development +390714,Research and Development,Research and Development +417668,Employment and Training,Employment and Training +374783,International Trade,International Trade +368659,Justice and Law Enforcement,Justice and Law Enforcement +483127,Government Procurement,Marchés publics +399890,Climate,Climate +380838,Economic Development,Economic Development +379349,Energy,Energy +423769,Environment,Environment +421957,Infrastructure,Infrastructure +386956,Economic Development,Economic Development +386957,Industry,Industry +386956,Labour,Labour +373028,Transportation,Transportation +474644,Economic Development,Economic Development +367468,International Trade,International Trade +367471,International Relations,International Relations +404826,Climate,Climate +381741,Economic Development,Economic Development +413286,Immigration,Immigration +409468,Consumer Issues,Consumer Issues +391294,Employment and Training,Employment and Training +409472,Environment,Environment +391294,Forestry,Forestry +409467,Industry,Industry +435919,Internal Trade,Internal Trade +374603,Economic Development,Economic Development +391446,Employment and Training,Employment and Training +383501,Fisheries,Fisheries +391446,Regional Development,Regional Development +380552,Infrastructure,Infrastructure +383215,Regional Development,Regional Development +370522,Regional Development,Regional Development +378064,Infrastructure,Infrastructure +378067,Infrastructure,Infrastructure +377256,Agriculture,Agriculture +371373,Industry,Industry +391523,Infrastructure,Infrastructure +371367,Labour,Labour +371373,Transportation,Transportation +457899,Health,Health +368282,Taxation and Finance,Taxation and Finance +414056,Taxation and Finance,Taxation and Finance +367545,Defence,Defence +367545,Employment and Training,Employment and Training +367545,Government Procurement,Government Procurement +367545,International Development,International Development +375402,International Relations,International Relations +375420,International Trade,International Trade +497221,Research and Development,Research and Development +367504,Defence,Defence +367504,Employment and Training,Employment and Training +375401,Government Procurement,Government Procurement +367504,International Development,International Development +375401,International Relations,International Relations +367504,International Trade,International Trade +492375,Research and Development,Research and Development +375401,Defence,Defence +375401,Employment and Training,Employment and Training +375402,Government Procurement,Government Procurement +367555,International Development,International Development +367555,International Relations,International Relations +367555,International Trade,International Trade +448625,Research and Development,Research and Development +367646,Defence,Defence +367646,Employment and Training,Employment and Training +375420,Government Procurement,Government Procurement +375401,International Development,International Development +375394,International Relations,International Relations +367646,International Trade,International Trade +486212,Research and Development,Research and Development +375394,Defence,Defence +375420,Employment and Training,Employment and Training +367560,Government Procurement,Government Procurement +367560,International Development,International Development +375420,International Relations,International Relations +367560,International Trade,International Trade +471610,Research and Development,Research and Development +367561,Defence,Defence +367561,Employment and Training,Employment and Training +367561,Government Procurement,Government Procurement +367561,International Development,International Development +367561,International Relations,International Relations +367561,International Trade,International Trade +486215,Research and Development,Research and Development +367562,Defence,Defence +367562,Employment and Training,Employment and Training +375394,Government Procurement,Government Procurement +375402,International Development,International Development +367562,International Relations,International Relations +375402,International Trade,International Trade +486214,Research and Development,Research and Development +367563,Defence,Defence +367563,Employment and Training,Employment and Training +367563,Government Procurement,Government Procurement +367563,International Development,International Development +367563,International Relations,International Relations +367563,International Trade,International Trade +367563,Research and Development,Research and Development +394547,Infrastructure,Infrastructure +393194,Education,Éducation +393194,Infrastructure,Infrastructure +393194,Official Languages,Langues officielles +373013,Defence,Defence +424487,Labour,Labour +373011,Mining,Mining +373808,Health,Health +375205,Health,Health +375205,Intellectual Property,Intellectual Property +386546,Health,Health +386545,Justice and Law Enforcement,Justice and Law Enforcement +367630,Research and Development,Research and Development +465680,Agriculture,Agriculture +453306,International Trade,International Trade +367632,Economic Development,Economic Development +367633,Economic Development,Economic Development +367634,Economic Development,Economic Development +367635,Infrastructure,Infrastructure +367635,Economic Development,Economic Development +369180,Environment,Environment +370768,Infrastructure,Infrastructure +370768,Regional Development,Regional Development +370768,Energy,Energy +370768,Economic Development,Economic Development +427647,Economic Development,Développement économique +427652,International Development,Développement international +454003,Immigration,Immigration +467771,Official Languages,Langues officielles +467794,Security,Sécurité +367762,Economic Development,Economic Development +367762,Education,Education +370092,Tourism,Tourism +369362,Economic Development,Economic Development +369362,Energy,Energy +369786,Budget,Budget +445765,Climate,Climate +487861,Energy,Energy +399803,Environment,Environment +399800,Immigration,Immigration +537976,Infrastructure,Infrastructure +369786,International Trade,International Trade +408142,Economic Development,Economic Development +376847,Education,Education +376851,Employment and Training,Employment and Training +376847,Health,Health +382262,Energy,Energy +404525,Environment,Environment +369262,Mining,Mining +378657,Taxation and Finance,Taxation and Finance +533280,Economic Development,Economic Development +542099,Environment,Environment +533017,Infrastructure,Infrastructure +542099,Tourism,Tourism +533017,Transportation,Transportation +377886,Health,Health +368217,Justice and Law Enforcement,Justice and Law Enforcement +377324,Health,Health +368222,Justice and Law Enforcement,Justice and Law Enforcement +374347,Environment,Environment +441191,Agriculture,Agriculture +382742,Consumer Issues,Consumer Issues +433449,Economic Development,Economic Development +463164,Environment,Environment +433449,Health,Health +441194,Industry,Industry +412361,Internal Trade,Internal Trade +468703,International Trade,International Trade +382739,Taxation and Finance,Taxation and Finance +371583,Justice and Law Enforcement,Justice and Law Enforcement +377269,Health,Health +381979,Justice and Law Enforcement,Justice and Law Enforcement +371588,Health,Health +393059,Health,Health +393059,Industry,Industry +483785,Intellectual Property,Intellectual Property +483785,International Trade,International Trade +393059,Taxation and Finance,Taxation and Finance +376513,Security,Security +371330,Health,Health +375744,Justice and Law Enforcement,Justice and Law Enforcement +375744,Security,Security +514397,Immigration,Immigration +370167,Justice and Law Enforcement,Justice and Law Enforcement +370058,Health,Health +370168,Immigration,Immigration +382781,Justice and Law Enforcement,Justice and Law Enforcement +386866,Infrastructure,Infrastructure +371789,Economic Development,Economic Development +371812,Economic Development,Economic Development +371812,Education,Education +371812,Industry,Industry +371808,Regional Development,Regional Development +371812,Tourism,Tourism +369253,Health,Health +389659,Taxation and Finance,Taxation and Finance +370358,Economic Development,Economic Development +370362,Regional Development,Regional Development +370362,Infrastructure,Infrastructure +370360,Energy,Energy +380544,Regional Development,Regional Development +380544,Infrastructure,Infrastructure +369393,Budget,Budget +372952,Infrastructure,Infrastructure +395017,Economic Development,Economic Development +370335,Industry,Industry +370337,Labour,Labour +395017,Taxation and Finance,Taxation and Finance +401140,Transportation,Transportation +374728,Budget,Budget +374728,Infrastructure,Infrastructure +402653,Budget,Budget +368227,Economic Development,Economic Development +368227,Employment and Training,Employment and Training +368227,Industry,Industry +368202,Economic Development,Economic Development +368202,Employment and Training,Employment and Training +368202,Industry,Industry +506833,Energy,Energy +494746,Industry,Industry +476242,Infrastructure,Infrastructure +368452,Economic Development,Economic Development +368452,Infrastructure,Infrastructure +368452,Tourism,Tourism +368453,Economic Development,Economic Development +368453,Infrastructure,Infrastructure +368453,Tourism,Tourism +368425,Industry,Industry +373232,Employment and Training,Employment and Training +368425,Economic Development,Economic Development +378630,Health,Health +396426,Industry,Industry +378630,Research and Development,Research and Development +375722,Economic Development,Développement économique +375722,Regional Development,Développement régional +375722,Health,Santé +370496,Budget,Budget +370496,Education,Education +370496,Employment and Training,Employment and Training +370496,Health,Health +370496,Labour,Labour +469063,Budget,Budget +390717,Economic Development,Economic Development +439661,Research and Development,Research and Development +382838,Economic Development,Economic Development +382838,Environment,Environment +382838,Infrastructure,Infrastructure +382838,Tourism,Tourism +382838,Transportation,Transportation +374785,Health,Health +393713,Economic Development,Economic Development +369600,Environment,Environment +369603,Infrastructure,Infrastructure +369603,Tourism,Tourism +393714,Transportation,Transportation +378625,Health,Health +378625,Industry,Industry +378625,Research and Development,Research and Development +373700,International Trade,Commerce international +376354,Economic Development,Développement économique +370499,Regional Development,Développement régional +370499,Employment and Training,Emploi et formation +370499,Environment,Environnement +373700,Industry,Industrie +373700,Intellectual Property,Propriété intellectuelle +370499,Research and Development,Recherche et développement +377353,Housing,Housing +377353,Immigration,Immigration +377373,Infrastructure,Infrastructure +377372,Municipalities,Municipalities +371572,Small Business,Small Business +401180,Consumer Issues,Consumer Issues +401180,Financial Institutions,Financial Institutions +441877,Economic Development,Economic Development +403868,Taxation and Finance,Taxation and Finance +395528,Employment and Training,Emploi et formation +388867,Labour,Travail +414107,Immigration,Immigration +368387,Taxation and Finance,Taxation and Finance +370479,Employment and Training,Emploi et formation +404786,Health,Health +374141,Forestry,Forestry +379343,International Trade,International Trade +374997,Agriculture,Agriculture +368449,Agriculture,Agriculture +390713,Research and Development,Research and Development +390707,Research and Development,Research and Development +390699,Research and Development,Research and Development +390691,Research and Development,Research and Development +390688,Research and Development,Research and Development +390682,Research and Development,Research and Development +390672,Research and Development,Research and Development +509257,Research and Development,Research and Development +509228,Research and Development,Research and Development +508807,Research and Development,Research and Development +505279,Research and Development,Research and Development +501970,Research and Development,Research and Development +501968,Research and Development,Research and Development +501964,Research and Development,Research and Development +499547,Research and Development,Research and Development +499541,Research and Development,Research and Development +499533,Research and Development,Research and Development +499521,Research and Development,Research and Development +499132,Research and Development,Research and Development +495706,Research and Development,Research and Development +495696,Research and Development,Research and Development +492222,Research and Development,Research and Development +492219,Research and Development,Research and Development +492217,Research and Development,Research and Development +492193,Research and Development,Research and Development +492192,Research and Development,Research and Development +492191,Research and Development,Research and Development +492190,Research and Development,Research and Development +492189,Research and Development,Research and Development +492188,Research and Development,Research and Development +492187,Research and Development,Research and Development +492186,Research and Development,Research and Development +492184,Research and Development,Research and Development +492183,Research and Development,Research and Development +492182,Research and Development,Research and Development +492181,Research and Development,Research and Development +492178,Research and Development,Research and Development +492177,Research and Development,Research and Development +492176,Research and Development,Research and Development +492175,Research and Development,Research and Development +492174,Research and Development,Research and Development +492173,Research and Development,Research and Development +492172,Research and Development,Research and Development +492171,Research and Development,Research and Development +492165,Research and Development,Research and Development +492158,Research and Development,Research and Development +492157,Research and Development,Research and Development +492156,Research and Development,Research and Development +492155,Research and Development,Research and Development +492154,Research and Development,Research and Development +492153,Research and Development,Research and Development +492150,Research and Development,Research and Development +492149,Research and Development,Research and Development +492147,Research and Development,Research and Development +488399,Research and Development,Research and Development +481178,Research and Development,Research and Development +479319,Research and Development,Research and Development +469063,Research and Development,Research and Development +464688,Research and Development,Research and Development +464685,Research and Development,Research and Development +464683,Research and Development,Research and Development +464682,Research and Development,Research and Development +464678,Research and Development,Research and Development +462002,Research and Development,Research and Development +442645,Research and Development,Research and Development +442408,Research and Development,Research and Development +442390,Research and Development,Research and Development +442373,Research and Development,Research and Development +442368,Research and Development,Research and Development +439683,Research and Development,Research and Development +439682,Research and Development,Research and Development +439680,Research and Development,Research and Development +439679,Research and Development,Research and Development +439678,Research and Development,Research and Development +439676,Research and Development,Research and Development +439665,Research and Development,Research and Development +439663,Research and Development,Research and Development +382837,Economic Development,Economic Development +382837,Environment,Environment +382837,Infrastructure,Infrastructure +382837,Tourism,Tourism +382837,Transportation,Transportation +370920,Health,Health +386427,Economic Development,Economic Development +386426,Economic Development,Economic Development +369604,Economic Development,Economic Development +369603,Economic Development,Economic Development +369601,Economic Development,Economic Development +369600,Economic Development,Economic Development +393714,Economic Development,Economic Development +393714,Environment,Environment +393713,Environment,Environment +386427,Environment,Environment +386426,Environment,Environment +369604,Environment,Environment +369603,Environment,Environment +369601,Environment,Environment +369601,Infrastructure,Infrastructure +369600,Infrastructure,Infrastructure +393714,Infrastructure,Infrastructure +393713,Infrastructure,Infrastructure +386427,Infrastructure,Infrastructure +386426,Infrastructure,Infrastructure +369604,Infrastructure,Infrastructure +369601,Tourism,Tourism +369600,Tourism,Tourism +393714,Tourism,Tourism +393713,Tourism,Tourism +386427,Tourism,Tourism +386426,Tourism,Tourism +369604,Tourism,Tourism +393713,Transportation,Transportation +386427,Transportation,Transportation +386426,Transportation,Transportation +369604,Transportation,Transportation +369603,Transportation,Transportation +369601,Transportation,Transportation +369600,Transportation,Transportation +373525,Health,Health +373524,Health,Health +395348,Health,Health +395347,Health,Health +393264,Health,Health +378626,Health,Health +373524,Industry,Industry +395349,Industry,Industry +393265,Industry,Industry +393264,Industry,Industry +392450,Industry,Industry +384092,Industry,Industry +382828,Industry,Industry +380686,Industry,Industry +378628,Industry,Industry +378626,Industry,Industry +373525,Research and Development,Research and Development +373524,Research and Development,Research and Development +395349,Research and Development,Research and Development +395348,Research and Development,Research and Development +395347,Research and Development,Research and Development +393265,Research and Development,Research and Development +393264,Research and Development,Research and Development +380686,Research and Development,Research and Development +378628,Research and Development,Research and Development +378626,Research and Development,Research and Development +370499,International Trade,Commerce international +370499,Economic Development,Développement économique +370497,Economic Development,Développement économique +370499,Industry,Industrie +376354,Industry,Industrie +370499,Intellectual Property,Propriété intellectuelle +370497,Intellectual Property,Propriété intellectuelle +370497,Research and Development,Recherche et développement +382408,Research and Development,Recherche et développement +376354,Research and Development,Recherche et développement +374237,Research and Development,Recherche et développement +373700,Research and Development,Recherche et développement +377370,Municipalities,Municipalities +377353,Municipalities,Municipalities +377376,Municipalities,Municipalities +377373,Municipalities,Municipalities +392403,Consumer Issues,Consumer Issues +441875,Economic Development,Economic Development +441852,Economic Development,Economic Development +371170,Economic Development,Economic Development +371169,Economic Development,Economic Development +371167,Economic Development,Economic Development +371166,Economic Development,Economic Development +371165,Economic Development,Economic Development +371164,Economic Development,Economic Development +371163,Economic Development,Economic Development +371160,Economic Development,Economic Development +371159,Economic Development,Economic Development +371154,Economic Development,Economic Development +371153,Economic Development,Economic Development +371151,Economic Development,Economic Development +371150,Economic Development,Economic Development +371148,Economic Development,Economic Development +371121,Economic Development,Economic Development +370469,Economic Development,Economic Development +370468,Economic Development,Economic Development +370467,Economic Development,Economic Development +370465,Economic Development,Economic Development +370448,Economic Development,Economic Development +368693,Economic Development,Economic Development +368692,Economic Development,Economic Development +368689,Economic Development,Economic Development +368687,Economic Development,Economic Development +368686,Economic Development,Economic Development +368685,Economic Development,Economic Development +368682,Economic Development,Economic Development +368681,Economic Development,Economic Development +368680,Economic Development,Economic Development +368677,Economic Development,Economic Development +368676,Economic Development,Economic Development +368656,Economic Development,Economic Development +387133,Economic Development,Economic Development +387073,Economic Development,Economic Development +387071,Economic Development,Economic Development +387070,Economic Development,Economic Development +387066,Economic Development,Economic Development +387064,Economic Development,Economic Development +387062,Economic Development,Economic Development +387056,Economic Development,Economic Development +386951,Economic Development,Economic Development +386950,Economic Development,Economic Development +386948,Economic Development,Economic Development +386947,Economic Development,Economic Development +386946,Economic Development,Economic Development +386945,Economic Development,Economic Development +386944,Economic Development,Economic Development +386943,Economic Development,Economic Development +386862,Economic Development,Economic Development +386859,Economic Development,Economic Development +386857,Economic Development,Economic Development +386854,Economic Development,Economic Development +386852,Economic Development,Economic Development +386849,Economic Development,Economic Development +386846,Economic Development,Economic Development +386844,Economic Development,Economic Development +386719,Economic Development,Economic Development +386718,Economic Development,Economic Development +386717,Economic Development,Economic Development +386716,Economic Development,Economic Development +386715,Economic Development,Economic Development +386704,Economic Development,Economic Development +386702,Economic Development,Economic Development +386699,Economic Development,Economic Development +386696,Economic Development,Economic Development +386694,Economic Development,Economic Development +386691,Economic Development,Economic Development +386687,Economic Development,Economic Development +386681,Economic Development,Economic Development +386677,Economic Development,Economic Development +386617,Economic Development,Economic Development +386615,Economic Development,Economic Development +386614,Economic Development,Economic Development +386613,Economic Development,Economic Development +386612,Economic Development,Economic Development +386609,Economic Development,Economic Development +385172,Economic Development,Economic Development +385170,Economic Development,Economic Development +385165,Economic Development,Economic Development +385156,Economic Development,Economic Development +385151,Economic Development,Economic Development +383109,Economic Development,Economic Development +383108,Economic Development,Economic Development +383061,Economic Development,Economic Development +383060,Economic Development,Economic Development +383059,Economic Development,Economic Development +383054,Economic Development,Economic Development +380650,Economic Development,Economic Development +380648,Economic Development,Economic Development +380647,Economic Development,Economic Development +380644,Economic Development,Economic Development +380642,Economic Development,Economic Development +380635,Economic Development,Economic Development +378560,Economic Development,Economic Development +378324,Economic Development,Economic Development +378322,Economic Development,Economic Development +378321,Economic Development,Economic Development +378319,Economic Development,Economic Development +378318,Economic Development,Economic Development +378317,Economic Development,Economic Development +378316,Economic Development,Economic Development +378315,Economic Development,Economic Development +378314,Economic Development,Economic Development +378311,Economic Development,Economic Development +375679,Economic Development,Economic Development +375678,Economic Development,Economic Development +375675,Economic Development,Economic Development +375671,Economic Development,Economic Development +375667,Economic Development,Economic Development +375529,Economic Development,Economic Development +438684,Economic Development,Economic Development +435927,Economic Development,Economic Development +435906,Economic Development,Economic Development +435664,Economic Development,Economic Development +435590,Economic Development,Economic Development +433424,Economic Development,Economic Development +433422,Economic Development,Economic Development +433207,Economic Development,Economic Development +433206,Economic Development,Economic Development +431730,Economic Development,Economic Development +427648,Economic Development,Economic Development +427646,Economic Development,Economic Development +427642,Economic Development,Economic Development +427640,Economic Development,Economic Development +427630,Economic Development,Economic Development +427626,Economic Development,Economic Development +426739,Economic Development,Economic Development +426733,Economic Development,Economic Development +426727,Economic Development,Economic Development +426721,Economic Development,Economic Development +426706,Economic Development,Economic Development +422302,Economic Development,Economic Development +422233,Economic Development,Economic Development +422232,Economic Development,Economic Development +422231,Economic Development,Economic Development +419971,Economic Development,Economic Development +419966,Economic Development,Economic Development +419964,Economic Development,Economic Development +418004,Economic Development,Economic Development +418000,Economic Development,Economic Development +417248,Economic Development,Economic Development +416646,Economic Development,Economic Development +416644,Economic Development,Economic Development +416638,Economic Development,Economic Development +416635,Economic Development,Economic Development +415052,Economic Development,Economic Development +413024,Economic Development,Economic Development +412857,Economic Development,Economic Development +412838,Economic Development,Economic Development +412837,Economic Development,Economic Development +412835,Economic Development,Economic Development +412816,Economic Development,Economic Development +412809,Economic Development,Economic Development +412806,Economic Development,Economic Development +412803,Economic Development,Economic Development +412797,Economic Development,Economic Development +412774,Economic Development,Economic Development +412733,Economic Development,Economic Development +412726,Economic Development,Economic Development +412721,Economic Development,Economic Development +412717,Economic Development,Economic Development +412710,Economic Development,Economic Development +412688,Economic Development,Economic Development +409273,Economic Development,Economic Development +409272,Economic Development,Economic Development +409271,Economic Development,Economic Development +409270,Economic Development,Economic Development +409268,Economic Development,Economic Development +407762,Economic Development,Economic Development +407365,Economic Development,Economic Development +407363,Economic Development,Economic Development +407362,Economic Development,Economic Development +407360,Economic Development,Economic Development +407357,Economic Development,Economic Development +407356,Economic Development,Economic Development +407355,Economic Development,Economic Development +407353,Economic Development,Economic Development +407352,Economic Development,Economic Development +407351,Economic Development,Economic Development +407350,Economic Development,Economic Development +407349,Economic Development,Economic Development +407348,Economic Development,Economic Development +407347,Economic Development,Economic Development +407343,Economic Development,Economic Development +407342,Economic Development,Economic Development +407341,Economic Development,Economic Development +407199,Economic Development,Economic Development +407198,Economic Development,Economic Development +407195,Economic Development,Economic Development +407194,Economic Development,Economic Development +407193,Economic Development,Economic Development +407192,Economic Development,Economic Development +405974,Economic Development,Economic Development +405837,Economic Development,Economic Development +404522,Economic Development,Economic Development +403895,Economic Development,Economic Development +403881,Economic Development,Economic Development +403868,Economic Development,Economic Development +403863,Economic Development,Economic Development +403859,Economic Development,Economic Development +401137,Economic Development,Economic Development +401135,Economic Development,Economic Development +401130,Economic Development,Economic Development +400923,Economic Development,Economic Development +400919,Economic Development,Economic Development +400889,Economic Development,Economic Development +400768,Economic Development,Economic Development +400763,Economic Development,Economic Development +400757,Economic Development,Economic Development +398061,Economic Development,Economic Development +398060,Economic Development,Economic Development +398059,Economic Development,Economic Development +398058,Economic Development,Economic Development +398057,Economic Development,Economic Development +398056,Economic Development,Economic Development +395228,Economic Development,Economic Development +395071,Economic Development,Economic Development +393058,Economic Development,Economic Development +393057,Economic Development,Economic Development +393056,Economic Development,Economic Development +392868,Economic Development,Economic Development +392867,Economic Development,Economic Development +392866,Economic Development,Economic Development +390164,Economic Development,Economic Development +390083,Economic Development,Economic Development +389459,Economic Development,Economic Development +389458,Economic Development,Economic Development +389455,Economic Development,Economic Development +389454,Economic Development,Economic Development +389452,Economic Development,Economic Development +389451,Economic Development,Economic Development +389450,Economic Development,Economic Development +389447,Economic Development,Economic Development +389444,Economic Development,Economic Development +389441,Economic Development,Economic Development +389439,Economic Development,Economic Development +389353,Economic Development,Economic Development +541841,Economic Development,Economic Development +530634,Economic Development,Economic Development +529615,Economic Development,Economic Development +526195,Economic Development,Economic Development +526194,Economic Development,Economic Development +526190,Economic Development,Economic Development +523040,Economic Development,Economic Development +519160,Economic Development,Economic Development +499798,Economic Development,Economic Development +499792,Economic Development,Economic Development +486746,Economic Development,Economic Development +486742,Economic Development,Economic Development +486741,Economic Development,Economic Development +486740,Economic Development,Economic Development +486739,Economic Development,Economic Development +486734,Economic Development,Economic Development +483512,Economic Development,Economic Development +483508,Economic Development,Economic Development +483506,Economic Development,Economic Development +483504,Economic Development,Economic Development +483503,Economic Development,Economic Development +483502,Economic Development,Economic Development +483496,Economic Development,Economic Development +483495,Economic Development,Economic Development +483492,Economic Development,Economic Development +483490,Economic Development,Economic Development +483489,Economic Development,Economic Development +483487,Economic Development,Economic Development +477015,Economic Development,Economic Development +462011,Economic Development,Economic Development +462010,Economic Development,Economic Development +455971,Economic Development,Economic Development +455960,Economic Development,Economic Development +455955,Economic Development,Economic Development +455946,Economic Development,Economic Development +455938,Economic Development,Economic Development +455904,Economic Development,Economic Development +455892,Economic Development,Economic Development +455870,Economic Development,Economic Development +448802,Economic Development,Economic Development +448801,Economic Development,Economic Development +448799,Economic Development,Economic Development +448793,Economic Development,Economic Development +446955,Economic Development,Economic Development +442599,Economic Development,Economic Development +442174,Economic Development,Economic Development +442017,Economic Development,Economic Development +442012,Economic Development,Economic Development +442007,Economic Development,Economic Development +442000,Economic Development,Economic Development +441966,Economic Development,Economic Development +441936,Economic Development,Economic Development +441935,Economic Development,Economic Development +441928,Economic Development,Economic Development +441921,Economic Development,Economic Development +441917,Economic Development,Economic Development +441905,Economic Development,Economic Development +441903,Economic Development,Economic Development +441897,Economic Development,Economic Development +441884,Economic Development,Economic Development +403863,Taxation and Finance,Taxation and Finance +403859,Taxation and Finance,Taxation and Finance +375671,Taxation and Finance,Taxation and Finance +375667,Taxation and Finance,Taxation and Finance +375529,Taxation and Finance,Taxation and Finance +373411,Taxation and Finance,Taxation and Finance +371170,Taxation and Finance,Taxation and Finance +371169,Taxation and Finance,Taxation and Finance +371167,Taxation and Finance,Taxation and Finance +371166,Taxation and Finance,Taxation and Finance +371165,Taxation and Finance,Taxation and Finance +371164,Taxation and Finance,Taxation and Finance +371163,Taxation and Finance,Taxation and Finance +371160,Taxation and Finance,Taxation and Finance +371159,Taxation and Finance,Taxation and Finance +371154,Taxation and Finance,Taxation and Finance +371153,Taxation and Finance,Taxation and Finance +371151,Taxation and Finance,Taxation and Finance +371150,Taxation and Finance,Taxation and Finance +371148,Taxation and Finance,Taxation and Finance +371121,Taxation and Finance,Taxation and Finance +370469,Taxation and Finance,Taxation and Finance +370468,Taxation and Finance,Taxation and Finance +370467,Taxation and Finance,Taxation and Finance +370465,Taxation and Finance,Taxation and Finance +370448,Taxation and Finance,Taxation and Finance +368693,Taxation and Finance,Taxation and Finance +368692,Taxation and Finance,Taxation and Finance +368689,Taxation and Finance,Taxation and Finance +368687,Taxation and Finance,Taxation and Finance +368686,Taxation and Finance,Taxation and Finance +368685,Taxation and Finance,Taxation and Finance +368682,Taxation and Finance,Taxation and Finance +368681,Taxation and Finance,Taxation and Finance +368680,Taxation and Finance,Taxation and Finance +368677,Taxation and Finance,Taxation and Finance +368676,Taxation and Finance,Taxation and Finance +368656,Taxation and Finance,Taxation and Finance +401137,Taxation and Finance,Taxation and Finance +401135,Taxation and Finance,Taxation and Finance +401130,Taxation and Finance,Taxation and Finance +400923,Taxation and Finance,Taxation and Finance +400919,Taxation and Finance,Taxation and Finance +400889,Taxation and Finance,Taxation and Finance +400768,Taxation and Finance,Taxation and Finance +400763,Taxation and Finance,Taxation and Finance +400757,Taxation and Finance,Taxation and Finance +398061,Taxation and Finance,Taxation and Finance +398060,Taxation and Finance,Taxation and Finance +398059,Taxation and Finance,Taxation and Finance +398058,Taxation and Finance,Taxation and Finance +398057,Taxation and Finance,Taxation and Finance +398056,Taxation and Finance,Taxation and Finance +395228,Taxation and Finance,Taxation and Finance +395071,Taxation and Finance,Taxation and Finance +393058,Taxation and Finance,Taxation and Finance +393057,Taxation and Finance,Taxation and Finance +393056,Taxation and Finance,Taxation and Finance +392868,Taxation and Finance,Taxation and Finance +392867,Taxation and Finance,Taxation and Finance +392866,Taxation and Finance,Taxation and Finance +390164,Taxation and Finance,Taxation and Finance +390083,Taxation and Finance,Taxation and Finance +389459,Taxation and Finance,Taxation and Finance +389458,Taxation and Finance,Taxation and Finance +389455,Taxation and Finance,Taxation and Finance +389454,Taxation and Finance,Taxation and Finance +389452,Taxation and Finance,Taxation and Finance +389451,Taxation and Finance,Taxation and Finance +389450,Taxation and Finance,Taxation and Finance +389447,Taxation and Finance,Taxation and Finance +389444,Taxation and Finance,Taxation and Finance +389441,Taxation and Finance,Taxation and Finance +389439,Taxation and Finance,Taxation and Finance +389353,Taxation and Finance,Taxation and Finance +387133,Taxation and Finance,Taxation and Finance +387073,Taxation and Finance,Taxation and Finance +387071,Taxation and Finance,Taxation and Finance +387070,Taxation and Finance,Taxation and Finance +387066,Taxation and Finance,Taxation and Finance +387064,Taxation and Finance,Taxation and Finance +387062,Taxation and Finance,Taxation and Finance +387056,Taxation and Finance,Taxation and Finance +386951,Taxation and Finance,Taxation and Finance +386950,Taxation and Finance,Taxation and Finance +386948,Taxation and Finance,Taxation and Finance +386947,Taxation and Finance,Taxation and Finance +386946,Taxation and Finance,Taxation and Finance +386945,Taxation and Finance,Taxation and Finance +386944,Taxation and Finance,Taxation and Finance +386943,Taxation and Finance,Taxation and Finance +386862,Taxation and Finance,Taxation and Finance +386859,Taxation and Finance,Taxation and Finance +386857,Taxation and Finance,Taxation and Finance +386854,Taxation and Finance,Taxation and Finance +386852,Taxation and Finance,Taxation and Finance +386849,Taxation and Finance,Taxation and Finance +386846,Taxation and Finance,Taxation and Finance +386844,Taxation and Finance,Taxation and Finance +386719,Taxation and Finance,Taxation and Finance +386718,Taxation and Finance,Taxation and Finance +386717,Taxation and Finance,Taxation and Finance +386716,Taxation and Finance,Taxation and Finance +386715,Taxation and Finance,Taxation and Finance +386704,Taxation and Finance,Taxation and Finance +386702,Taxation and Finance,Taxation and Finance +386699,Taxation and Finance,Taxation and Finance +386696,Taxation and Finance,Taxation and Finance +386694,Taxation and Finance,Taxation and Finance +386691,Taxation and Finance,Taxation and Finance +386687,Taxation and Finance,Taxation and Finance +386681,Taxation and Finance,Taxation and Finance +386677,Taxation and Finance,Taxation and Finance +386617,Taxation and Finance,Taxation and Finance +386615,Taxation and Finance,Taxation and Finance +386614,Taxation and Finance,Taxation and Finance +386613,Taxation and Finance,Taxation and Finance +386612,Taxation and Finance,Taxation and Finance +386609,Taxation and Finance,Taxation and Finance +385172,Taxation and Finance,Taxation and Finance +385170,Taxation and Finance,Taxation and Finance +385165,Taxation and Finance,Taxation and Finance +385156,Taxation and Finance,Taxation and Finance +385151,Taxation and Finance,Taxation and Finance +383109,Taxation and Finance,Taxation and Finance +383108,Taxation and Finance,Taxation and Finance +383061,Taxation and Finance,Taxation and Finance +383060,Taxation and Finance,Taxation and Finance +383059,Taxation and Finance,Taxation and Finance +383054,Taxation and Finance,Taxation and Finance +380650,Taxation and Finance,Taxation and Finance +380648,Taxation and Finance,Taxation and Finance +380647,Taxation and Finance,Taxation and Finance +380644,Taxation and Finance,Taxation and Finance +380642,Taxation and Finance,Taxation and Finance +380635,Taxation and Finance,Taxation and Finance +378560,Taxation and Finance,Taxation and Finance +378324,Taxation and Finance,Taxation and Finance +378322,Taxation and Finance,Taxation and Finance +378321,Taxation and Finance,Taxation and Finance +378319,Taxation and Finance,Taxation and Finance +378318,Taxation and Finance,Taxation and Finance +378317,Taxation and Finance,Taxation and Finance +378316,Taxation and Finance,Taxation and Finance +378315,Taxation and Finance,Taxation and Finance +378314,Taxation and Finance,Taxation and Finance +378311,Taxation and Finance,Taxation and Finance +375679,Taxation and Finance,Taxation and Finance +375678,Taxation and Finance,Taxation and Finance +375675,Taxation and Finance,Taxation and Finance +462011,Taxation and Finance,Taxation and Finance +462010,Taxation and Finance,Taxation and Finance +446955,Taxation and Finance,Taxation and Finance +442599,Taxation and Finance,Taxation and Finance +442174,Taxation and Finance,Taxation and Finance +442017,Taxation and Finance,Taxation and Finance +442012,Taxation and Finance,Taxation and Finance +442007,Taxation and Finance,Taxation and Finance +442000,Taxation and Finance,Taxation and Finance +441966,Taxation and Finance,Taxation and Finance +441936,Taxation and Finance,Taxation and Finance +441935,Taxation and Finance,Taxation and Finance +441928,Taxation and Finance,Taxation and Finance +441921,Taxation and Finance,Taxation and Finance +441917,Taxation and Finance,Taxation and Finance +441905,Taxation and Finance,Taxation and Finance +441903,Taxation and Finance,Taxation and Finance +441897,Taxation and Finance,Taxation and Finance +441884,Taxation and Finance,Taxation and Finance +441877,Taxation and Finance,Taxation and Finance +441875,Taxation and Finance,Taxation and Finance +441852,Taxation and Finance,Taxation and Finance +431730,Taxation and Finance,Taxation and Finance +415052,Taxation and Finance,Taxation and Finance +412857,Taxation and Finance,Taxation and Finance +412838,Taxation and Finance,Taxation and Finance +412837,Taxation and Finance,Taxation and Finance +412835,Taxation and Finance,Taxation and Finance +412816,Taxation and Finance,Taxation and Finance +412809,Taxation and Finance,Taxation and Finance +412806,Taxation and Finance,Taxation and Finance +412803,Taxation and Finance,Taxation and Finance +412797,Taxation and Finance,Taxation and Finance +412774,Taxation and Finance,Taxation and Finance +412733,Taxation and Finance,Taxation and Finance +412726,Taxation and Finance,Taxation and Finance +412721,Taxation and Finance,Taxation and Finance +412717,Taxation and Finance,Taxation and Finance +412710,Taxation and Finance,Taxation and Finance +412688,Taxation and Finance,Taxation and Finance +409273,Taxation and Finance,Taxation and Finance +409272,Taxation and Finance,Taxation and Finance +409271,Taxation and Finance,Taxation and Finance +409270,Taxation and Finance,Taxation and Finance +409268,Taxation and Finance,Taxation and Finance +407762,Taxation and Finance,Taxation and Finance +407365,Taxation and Finance,Taxation and Finance +407363,Taxation and Finance,Taxation and Finance +407362,Taxation and Finance,Taxation and Finance +407360,Taxation and Finance,Taxation and Finance +407357,Taxation and Finance,Taxation and Finance +407356,Taxation and Finance,Taxation and Finance +407355,Taxation and Finance,Taxation and Finance +407353,Taxation and Finance,Taxation and Finance +407352,Taxation and Finance,Taxation and Finance +407351,Taxation and Finance,Taxation and Finance +407350,Taxation and Finance,Taxation and Finance +407349,Taxation and Finance,Taxation and Finance +407348,Taxation and Finance,Taxation and Finance +407347,Taxation and Finance,Taxation and Finance +407343,Taxation and Finance,Taxation and Finance +407342,Taxation and Finance,Taxation and Finance +407341,Taxation and Finance,Taxation and Finance +407199,Taxation and Finance,Taxation and Finance +407198,Taxation and Finance,Taxation and Finance +407195,Taxation and Finance,Taxation and Finance +407194,Taxation and Finance,Taxation and Finance +407193,Taxation and Finance,Taxation and Finance +407192,Taxation and Finance,Taxation and Finance +405974,Taxation and Finance,Taxation and Finance +405837,Taxation and Finance,Taxation and Finance +404522,Taxation and Finance,Taxation and Finance +403895,Taxation and Finance,Taxation and Finance +403881,Taxation and Finance,Taxation and Finance +388892,Employment and Training,Emploi et formation +388891,Employment and Training,Emploi et formation +388869,Employment and Training,Emploi et formation +388868,Employment and Training,Emploi et formation +388867,Employment and Training,Emploi et formation +388866,Employment and Training,Emploi et formation +388865,Employment and Training,Emploi et formation +386317,Employment and Training,Emploi et formation +383692,Employment and Training,Emploi et formation +381700,Employment and Training,Emploi et formation +374132,Employment and Training,Emploi et formation +374126,Employment and Training,Emploi et formation +371404,Employment and Training,Emploi et formation +371222,Employment and Training,Emploi et formation +371221,Employment and Training,Emploi et formation +371220,Employment and Training,Emploi et formation +371218,Employment and Training,Emploi et formation +371217,Employment and Training,Emploi et formation +370904,Employment and Training,Emploi et formation +370901,Employment and Training,Emploi et formation +370899,Employment and Training,Emploi et formation +370022,Employment and Training,Emploi et formation +370020,Employment and Training,Emploi et formation +368847,Employment and Training,Emploi et formation +454141,Employment and Training,Emploi et formation +451542,Employment and Training,Emploi et formation +451026,Employment and Training,Emploi et formation +436521,Employment and Training,Emploi et formation +431499,Employment and Training,Emploi et formation +429778,Employment and Training,Emploi et formation +427266,Employment and Training,Emploi et formation +427264,Employment and Training,Emploi et formation +414107,Employment and Training,Emploi et formation +410732,Employment and Training,Emploi et formation +402989,Employment and Training,Emploi et formation +398108,Employment and Training,Emploi et formation +398107,Employment and Training,Emploi et formation +398106,Employment and Training,Emploi et formation +398105,Employment and Training,Emploi et formation +398104,Employment and Training,Emploi et formation +398103,Employment and Training,Emploi et formation +397334,Employment and Training,Emploi et formation +388866,Labour,Travail +388865,Labour,Travail +381700,Labour,Travail +371404,Labour,Travail +371222,Labour,Travail +371221,Labour,Travail +371220,Labour,Travail +371218,Labour,Travail +371217,Labour,Travail +370904,Labour,Travail +370901,Labour,Travail +370899,Labour,Travail +369783,Labour,Travail +468717,Labour,Travail +414107,Labour,Travail +410732,Labour,Travail +398108,Labour,Travail +398107,Labour,Travail +398106,Labour,Travail +398105,Labour,Travail +398104,Labour,Travail +398103,Labour,Travail +388892,Labour,Travail +388891,Labour,Travail +388869,Labour,Travail +388868,Labour,Travail +410732,Immigration,Immigration +402989,Immigration,Immigration +398108,Immigration,Immigration +398107,Immigration,Immigration +398106,Immigration,Immigration +398105,Immigration,Immigration +398104,Immigration,Immigration +398103,Immigration,Immigration +397334,Immigration,Immigration +395528,Immigration,Immigration +393532,Immigration,Immigration +388892,Immigration,Immigration +388891,Immigration,Immigration +388869,Immigration,Immigration +388868,Immigration,Immigration +388867,Immigration,Immigration +388866,Immigration,Immigration +388865,Immigration,Immigration +386317,Immigration,Immigration +383692,Immigration,Immigration +381700,Immigration,Immigration +374132,Immigration,Immigration +374126,Immigration,Immigration +371404,Immigration,Immigration +371222,Immigration,Immigration +371221,Immigration,Immigration +371220,Immigration,Immigration +371218,Immigration,Immigration +371217,Immigration,Immigration +370904,Immigration,Immigration +370901,Immigration,Immigration +370899,Immigration,Immigration +370022,Immigration,Immigration +370020,Immigration,Immigration +369783,Immigration,Immigration +368847,Immigration,Immigration +469249,Immigration,Immigration +468717,Immigration,Immigration +458184,Immigration,Immigration +454141,Immigration,Immigration +451542,Immigration,Immigration +451026,Immigration,Immigration +436521,Immigration,Immigration +431499,Immigration,Immigration +429898,Immigration,Immigration +429778,Immigration,Immigration +427266,Immigration,Immigration +427264,Immigration,Immigration +423369,Immigration,Immigration +375050,Employment and Training,Emploi et formation +373654,Employment and Training,Emploi et formation +403176,Health,Health +403175,Health,Health +374140,Forestry,Forestry +374141,International Trade,International Trade +374140,International Trade,International Trade +374994,Agriculture,Agriculture +368447,Agriculture,Agriculture +413009,Agriculture,Agriculture +405440,Agriculture,Agriculture +394762,Agriculture,Agriculture +406007,Agriculture,Agriculture +406006,Agriculture,Agriculture +380713,Agriculture,Agriculture +375488,Agriculture,Agriculture +374993,Agriculture,Agriculture +503648,Consumer Issues,Consumer Issues +426201,Consumer Issues,Consumer Issues +368518,Consumer Issues,Consumer Issues +544623,Consumer Issues,Consumer Issues +542574,Consumer Issues,Consumer Issues +373260,Economic Development,Economic Development +373259,Economic Development,Economic Development +375974,Economic Development,Economic Development +373983,Economic Development,Economic Development +373264,Economic Development,Economic Development +373260,Environment,Environment +373259,Environment,Environment +375974,Environment,Environment +373983,Environment,Environment +373264,Environment,Environment +373260,Transportation,Transportation +373259,Transportation,Transportation +375974,Transportation,Transportation +373983,Transportation,Transportation +373264,Transportation,Transportation +371201,Regional Development,Regional Development +396111,Tourism,Tourism +392202,Tourism,Tourism +376017,Tourism,Tourism +371211,Tourism,Tourism +371210,Tourism,Tourism +406663,Tourism,Tourism +405215,Tourism,Tourism +405213,Tourism,Tourism +405210,Tourism,Tourism +405208,Tourism,Tourism +405207,Tourism,Tourism +405205,Tourism,Tourism +401838,Tourism,Tourism +401837,Tourism,Tourism +371211,Regional Development,Regional Development +371210,Regional Development,Regional Development +406663,Regional Development,Regional Development +405215,Regional Development,Regional Development +405213,Regional Development,Regional Development +405210,Regional Development,Regional Development +405208,Regional Development,Regional Development +405207,Regional Development,Regional Development +405205,Regional Development,Regional Development +382934,Infrastructure,Infrastructure +391611,Infrastructure,Infrastructure +387360,Infrastructure,Infrastructure +444307,Constitutional Issues,Constitutional Issues +442655,Constitutional Issues,Constitutional Issues +435381,Constitutional Issues,Constitutional Issues +435380,Constitutional Issues,Constitutional Issues +419742,Constitutional Issues,Constitutional Issues +418357,Constitutional Issues,Constitutional Issues +418356,Constitutional Issues,Constitutional Issues +414764,Constitutional Issues,Constitutional Issues +411121,Constitutional Issues,Constitutional Issues +411120,Constitutional Issues,Constitutional Issues +411118,Constitutional Issues,Constitutional Issues +411116,Constitutional Issues,Constitutional Issues +393885,Constitutional Issues,Constitutional Issues +380179,Constitutional Issues,Constitutional Issues +380178,Constitutional Issues,Constitutional Issues +371612,Constitutional Issues,Constitutional Issues +371609,Constitutional Issues,Constitutional Issues +423242,Economic Development,Economic Development +483785,Economic Development,Economic Development +393059,Economic Development,Economic Development +381380,Economic Development,Economic Development +379395,Agriculture,Agriculture +379387,Agriculture,Agriculture +398261,Agriculture,Agriculture +396234,Agriculture,Agriculture +393738,Agriculture,Agriculture +393734,Agriculture,Agriculture +392541,Agriculture,Agriculture +392539,Agriculture,Agriculture +389721,Agriculture,Agriculture +387765,Agriculture,Agriculture +387737,Agriculture,Agriculture +387734,Agriculture,Agriculture +382026,Agriculture,Agriculture +382023,Agriculture,Agriculture +382018,Agriculture,Agriculture +374451,Immigration,Immigration +393738,Immigration,Immigration +382026,Immigration,Immigration +382023,Immigration,Immigration +382018,Immigration,Immigration +380854,Immigration,Immigration +374449,Justice and Law Enforcement,Justice and Law Enforcement +374448,Justice and Law Enforcement,Justice and Law Enforcement +398261,Justice and Law Enforcement,Justice and Law Enforcement +396234,Justice and Law Enforcement,Justice and Law Enforcement +393734,Justice and Law Enforcement,Justice and Law Enforcement +392539,Justice and Law Enforcement,Justice and Law Enforcement +389721,Justice and Law Enforcement,Justice and Law Enforcement +387765,Justice and Law Enforcement,Justice and Law Enforcement +387737,Justice and Law Enforcement,Justice and Law Enforcement +387734,Justice and Law Enforcement,Justice and Law Enforcement +382035,Justice and Law Enforcement,Justice and Law Enforcement +379395,Justice and Law Enforcement,Justice and Law Enforcement +368702,International Development,International Development +368701,International Development,International Development +372959,International Development,International Development +368702,International Relations,International Relations +368701,International Relations,International Relations +372959,International Relations,International Relations +368724,International Trade,International Trade +368702,International Trade,International Trade +368701,International Trade,International Trade +418355,Infrastructure,Infrastructure +414605,Infrastructure,Infrastructure +429605,Infrastructure,Infrastructure +418614,International Relations,International Relations +418355,International Relations,International Relations +418355,Transportation,Transportation +414605,Transportation,Transportation +429605,Transportation,Transportation +368775,International Relations,International Relations +384788,Health,Health +384786,Health,Health +382459,Health,Health +381989,Health,Health +380550,Health,Health +380549,Health,Health +380548,Health,Health +490600,Health,Health +470200,Health,Health +436840,Health,Health +436839,Health,Health +389603,Health,Health +388990,Health,Health +406759,Budget,Budget +391336,Budget,Budget +391333,Budget,Budget +391327,Budget,Budget +391326,Budget,Budget +391323,Budget,Budget +379129,Budget,Budget +379110,Budget,Budget +375582,Budget,Budget +375581,Budget,Budget +375580,Budget,Budget +375578,Budget,Budget +375577,Budget,Budget +375576,Budget,Budget +375574,Budget,Budget +375573,Budget,Budget +375572,Budget,Budget +375571,Budget,Budget +375570,Budget,Budget +375569,Budget,Budget +375568,Budget,Budget +375567,Budget,Budget +375565,Budget,Budget +375563,Budget,Budget +375562,Budget,Budget +375561,Budget,Budget +375560,Budget,Budget +375559,Budget,Budget +375558,Budget,Budget +368809,Budget,Budget +523521,Budget,Budget +523520,Budget,Budget +523518,Budget,Budget +523516,Budget,Budget +523485,Budget,Budget +523481,Budget,Budget +523475,Budget,Budget +523467,Budget,Budget +368849,Budget,Budget +423173,Sports,Sports +410916,Sports,Sports +372765,Sports,Sports +368849,Sports,Sports +431896,Sports,Sports +429789,Sports,Sports +427477,Sports,Sports +376967,Infrastructure,Infrastructure +376960,Infrastructure,Infrastructure +376956,Infrastructure,Infrastructure +374446,Infrastructure,Infrastructure +374445,Infrastructure,Infrastructure +374444,Infrastructure,Infrastructure +374443,Infrastructure,Infrastructure +374444,Tourism,Tourism +374443,Tourism,Tourism +379442,Tourism,Tourism +376967,Tourism,Tourism +376960,Tourism,Tourism +376956,Tourism,Tourism +374446,Tourism,Tourism +371675,Housing,Housing +371417,Taxation and Finance,Taxation and Finance +369014,Economic Development,Economic Development +380928,Environment,Environment +374258,Health,Health +371421,Health,Health +381686,Health,Health +381685,Health,Health +381684,Health,Health +381683,Health,Health +376547,Health,Health +375795,Health,Health +375794,Health,Health +375793,Health,Health +462467,Environment,Environment +462465,Environment,Environment +430091,Environment,Environment +501043,Environment,Environment +476910,Environment,Environment +476909,Environment,Environment +467959,Environment,Environment +467045,Environment,Environment +464944,Environment,Environment +464372,Environment,Environment +461897,Infrastructure,Infrastructure +458545,Infrastructure,Infrastructure +458543,Infrastructure,Infrastructure +451048,Infrastructure,Infrastructure +445676,Infrastructure,Infrastructure +445674,Infrastructure,Infrastructure +445379,Infrastructure,Infrastructure +445378,Infrastructure,Infrastructure +445376,Infrastructure,Infrastructure +445375,Infrastructure,Infrastructure +445374,Infrastructure,Infrastructure +445373,Infrastructure,Infrastructure +442469,Infrastructure,Infrastructure +430034,Infrastructure,Infrastructure +425005,Infrastructure,Infrastructure +425002,Infrastructure,Infrastructure +424999,Infrastructure,Infrastructure +424998,Infrastructure,Infrastructure +421263,Infrastructure,Infrastructure +421262,Infrastructure,Infrastructure +421261,Infrastructure,Infrastructure +386887,Infrastructure,Infrastructure +386886,Infrastructure,Infrastructure +369082,Infrastructure,Infrastructure +541251,Infrastructure,Infrastructure +537348,Infrastructure,Infrastructure +537346,Infrastructure,Infrastructure +537344,Infrastructure,Infrastructure +537332,Infrastructure,Infrastructure +531314,Infrastructure,Infrastructure +524510,Infrastructure,Infrastructure +521752,Infrastructure,Infrastructure +519467,Infrastructure,Infrastructure +519465,Infrastructure,Infrastructure +517054,Infrastructure,Infrastructure +515374,Infrastructure,Infrastructure +515372,Infrastructure,Infrastructure +513737,Infrastructure,Infrastructure +511973,Infrastructure,Infrastructure +507938,Infrastructure,Infrastructure +492965,Infrastructure,Infrastructure +489637,Infrastructure,Infrastructure +486700,Infrastructure,Infrastructure +484420,Infrastructure,Infrastructure +468680,Infrastructure,Infrastructure +370755,Intellectual Property,Intellectual Property +370754,Intellectual Property,Intellectual Property +385003,Intellectual Property,Intellectual Property +385002,Intellectual Property,Intellectual Property +385001,Intellectual Property,Intellectual Property +385000,Intellectual Property,Intellectual Property +385004,Intellectual Property,Intellectual Property +443352,Agriculture,Agriculture +443349,Agriculture,Agriculture +372352,Agriculture,Agriculture +507111,Agriculture,Agriculture +507110,Agriculture,Agriculture +479095,Agriculture,Agriculture +477104,Agriculture,Agriculture +443357,Agriculture,Agriculture +443356,Agriculture,Agriculture +479095,Climate,Climate +477104,Climate,Climate +372352,Climate,Climate +443357,Climate,Climate +443356,Climate,Climate +443355,Climate,Climate +443357,Employment and Training,Employment and Training +443355,Employment and Training,Employment and Training +372351,Employment and Training,Employment and Training +372349,Employment and Training,Employment and Training +516809,Employment and Training,Employment and Training +514004,Employment and Training,Employment and Training +511115,Employment and Training,Employment and Training +443356,Environment,Environment +443355,Environment,Environment +372352,Environment,Environment +443349,Environment,Environment +479095,Environment,Environment +477104,Environment,Environment +443357,Labour,Labour +443355,Labour,Labour +372351,Labour,Labour +372349,Labour,Labour +516809,Labour,Labour +372352,Taxation and Finance,Taxation and Finance +399538,Consumer Issues,Consumer Issues +395167,Consumer Issues,Consumer Issues +399542,Consumer Issues,Consumer Issues +399541,Consumer Issues,Consumer Issues +440254,Health,Health +416465,Industry,Industry +416465,International Trade,International Trade +395167,International Trade,International Trade +454075,International Trade,International Trade +371392,Employment and Training,Employment and Training +385006,Intellectual Property,Intellectual Property +370749,Intellectual Property,Intellectual Property +375972,Employment and Training,Employment and Training +370749,Employment and Training,Employment and Training +370751,Industry,Industry +370750,Industry,Industry +393523,Economic Development,Economic Development +393522,Economic Development,Economic Development +370752,Economic Development,Economic Development +370751,Economic Development,Economic Development +370750,Economic Development,Economic Development +393529,Economic Development,Economic Development +393528,Economic Development,Economic Development +393527,Economic Development,Economic Development +393526,Economic Development,Economic Development +393525,Employment and Training,Employment and Training +393523,Employment and Training,Employment and Training +370752,Employment and Training,Employment and Training +370751,Employment and Training,Employment and Training +370750,Employment and Training,Employment and Training +393527,Employment and Training,Employment and Training +370751,Education,Education +370750,Education,Education +370751,Tourism,Tourism +370750,Tourism,Tourism +393529,Tourism,Tourism +393528,Tourism,Tourism +393527,Tourism,Tourism +393526,Tourism,Tourism +393525,Tourism,Tourism +393523,Tourism,Tourism +393522,Tourism,Tourism +393525,Regional Development,Regional Development +393523,Regional Development,Regional Development +393522,Regional Development,Regional Development +370752,Regional Development,Regional Development +370751,Regional Development,Regional Development +370750,Regional Development,Regional Development +393529,Regional Development,Regional Development +393528,Regional Development,Regional Development +393527,Regional Development,Regional Development +385069,Employment and Training,Employment and Training +383152,Employment and Training,Employment and Training +371412,Environment,Environment +371412,International Trade,International Trade +371411,Taxation and Finance,Taxation and Finance +407141,Fisheries,Fisheries +371306,International Trade,International Trade +371405,Environment,Environment +371406,Infrastructure,Infrastructure +371531,Employment and Training,Employment and Training +371297,Environment,Environment +371297,Industry,Industry +371299,International Trade,International Trade +371297,International Trade,International Trade +391764,International Trade,International Trade +391762,International Trade,International Trade +391761,International Trade,International Trade +391759,International Trade,International Trade +391758,International Trade,International Trade +388753,International Trade,International Trade +388752,International Trade,International Trade +371293,Pensions,Pensions +371297,Taxation and Finance,Taxation and Finance +371293,Taxation and Finance,Taxation and Finance +369896,International Trade,International Trade +369342,International Trade,International Trade +436160,International Trade,International Trade +434832,International Trade,International Trade +432638,International Trade,International Trade +432186,International Trade,International Trade +432183,International Trade,International Trade +431528,International Trade,International Trade +429918,International Trade,International Trade +429632,International Trade,International Trade +427259,International Trade,International Trade +427256,International Trade,International Trade +423635,International Trade,International Trade +423634,International Trade,International Trade +423632,International Trade,International Trade +423630,International Trade,International Trade +420682,International Trade,International Trade +420680,International Trade,International Trade +420677,International Trade,International Trade +419286,International Trade,International Trade +419284,International Trade,International Trade +419283,International Trade,International Trade +419254,International Trade,International Trade +419252,International Trade,International Trade +414439,International Trade,International Trade +414437,International Trade,International Trade +414025,International Trade,International Trade +410797,International Trade,International Trade +410078,International Trade,International Trade +404255,International Trade,International Trade +402090,International Trade,International Trade +401407,International Trade,International Trade +399483,International Trade,International Trade +383455,International Trade,International Trade +382015,International Trade,International Trade +379158,International Trade,International Trade +379156,International Trade,International Trade +376497,International Trade,International Trade +375767,International Trade,International Trade +375620,International Trade,International Trade +375429,International Trade,International Trade +375130,International Trade,International Trade +375129,International Trade,International Trade +375128,International Trade,International Trade +373360,International Trade,International Trade +373171,International Trade,International Trade +373170,International Trade,International Trade +371233,International Trade,International Trade +370894,International Trade,International Trade +370892,International Trade,International Trade +370718,International Trade,International Trade +370717,International Trade,International Trade +370716,International Trade,International Trade +370417,International Trade,International Trade +370153,International Trade,International Trade +370018,International Trade,International Trade +369437,International Development,International Development +420080,International Development,International Development +501888,Regional Development,Regional Development +501870,Regional Development,Regional Development +369437,Regional Development,Regional Development +420080,Regional Development,Regional Development +420079,Regional Development,Regional Development +415898,Regional Development,Regional Development +393067,Regional Development,Regional Development +390133,Regional Development,Regional Development +390108,Regional Development,Regional Development +390099,Regional Development,Regional Development +492215,Regional Development,Regional Development +492214,Regional Development,Regional Development +464565,Regional Development,Regional Development +464533,Regional Development,Regional Development +464530,Regional Development,Regional Development +464524,Regional Development,Regional Development +464509,Regional Development,Regional Development +464505,Regional Development,Regional Development +464485,Regional Development,Regional Development +464038,Regional Development,Regional Development +456322,Regional Development,Regional Development +456321,Regional Development,Regional Development +449970,Regional Development,Regional Development +449968,Regional Development,Regional Development +449963,Regional Development,Regional Development +426966,Regional Development,Regional Development +426965,Regional Development,Regional Development +541427,Regional Development,Regional Development +536229,Regional Development,Regional Development +514847,Regional Development,Regional Development +506320,Regional Development,Regional Development +506319,Regional Development,Regional Development +506157,Regional Development,Regional Development +541427,Education,Education +536229,Education,Education +420080,Education,Education +420079,Education,Education +418138,Education,Education +390133,Education,Education +390108,Education,Education +390099,Education,Education +369437,Education,Education +506320,Education,Education +506319,Education,Education +501890,Education,Education +501888,Education,Education +492213,Education,Education +476183,Education,Education +476182,Education,Education +476181,Education,Education +464565,Education,Education +456322,Education,Education +456321,Education,Education +449970,Education,Education +449968,Education,Education +449967,Education,Education +476181,Employment and Training,Employment and Training +541427,Employment and Training,Employment and Training +369437,Employment and Training,Employment and Training +492213,Employment and Training,Employment and Training +476183,Employment and Training,Employment and Training +449968,Infrastructure,Infrastructure +439862,Infrastructure,Infrastructure +415898,Infrastructure,Infrastructure +369437,Infrastructure,Infrastructure +456322,Infrastructure,Infrastructure +464528,Research and Development,Research and Development +464505,Research and Development,Research and Development +369437,Research and Development,Research and Development +464485,Research and Development,Research and Development +464038,Research and Development,Research and Development +456322,Research and Development,Research and Development +456321,Research and Development,Research and Development +444192,Research and Development,Research and Development +444191,Research and Development,Research and Development +444190,Research and Development,Research and Development +444189,Research and Development,Research and Development +444188,Research and Development,Research and Development +444187,Research and Development,Research and Development +441020,Research and Development,Research and Development +439867,Research and Development,Research and Development +420080,Research and Development,Research and Development +420079,Research and Development,Research and Development +415898,Research and Development,Research and Development +514847,Research and Development,Research and Development +506320,Research and Development,Research and Development +506319,Research and Development,Research and Development +506157,Research and Development,Research and Development +501890,Research and Development,Research and Development +501888,Research and Development,Research and Development +492215,Research and Development,Research and Development +492214,Research and Development,Research and Development +464565,Research and Development,Research and Development +464542,Research and Development,Research and Development +464539,Research and Development,Research and Development +464533,Research and Development,Research and Development +369437,Health,Health +441020,Health,Health +369455,Budget,Budget +369445,Budget,Budget +380007,Budget,Budget +372344,Budget,Budget +369459,Budget,Budget +429571,Economic Development,Economic Development +395448,Economic Development,Economic Development +369451,Economic Development,Economic Development +377135,Immigration,Immigration +377134,Immigration,Immigration +369477,Immigration,Immigration +369475,Immigration,Immigration +457530,Economic Development,Economic Development +456046,Economic Development,Economic Development +390482,Economic Development,Economic Development +390481,Economic Development,Economic Development +390480,Economic Development,Economic Development +390479,Economic Development,Economic Development +390478,Economic Development,Economic Development +390477,Economic Development,Economic Development +390476,Economic Development,Economic Development +390475,Economic Development,Economic Development +390474,Economic Development,Economic Development +390473,Economic Development,Economic Development +387378,Economic Development,Economic Development +385725,Economic Development,Economic Development +385721,Economic Development,Economic Development +385720,Economic Development,Economic Development +385718,Economic Development,Economic Development +385716,Economic Development,Economic Development +385715,Economic Development,Economic Development +385713,Economic Development,Economic Development +385711,Economic Development,Economic Development +383567,Economic Development,Economic Development +383565,Economic Development,Economic Development +383563,Economic Development,Economic Development +382774,Economic Development,Economic Development +381099,Economic Development,Economic Development +381068,Economic Development,Economic Development +381066,Economic Development,Economic Development +381056,Economic Development,Economic Development +381055,Economic Development,Economic Development +381053,Economic Development,Economic Development +381051,Economic Development,Economic Development +379991,Economic Development,Economic Development +379990,Economic Development,Economic Development +377309,Economic Development,Economic Development +377308,Economic Development,Economic Development +377307,Economic Development,Economic Development +377306,Economic Development,Economic Development +377304,Economic Development,Economic Development +377303,Economic Development,Economic Development +377301,Economic Development,Economic Development +377300,Economic Development,Economic Development +456044,Economic Development,Economic Development +456043,Economic Development,Economic Development +456042,Economic Development,Economic Development +456041,Economic Development,Economic Development +449754,Economic Development,Economic Development +449748,Economic Development,Economic Development +449745,Economic Development,Economic Development +449736,Economic Development,Economic Development +449735,Economic Development,Economic Development +449732,Economic Development,Economic Development +449730,Economic Development,Economic Development +449727,Economic Development,Economic Development +449721,Economic Development,Economic Development +449719,Economic Development,Economic Development +449717,Economic Development,Economic Development +449714,Economic Development,Economic Development +449711,Economic Development,Economic Development +449709,Economic Development,Economic Development +449707,Economic Development,Economic Development +449704,Economic Development,Economic Development +449701,Economic Development,Economic Development +448179,Economic Development,Economic Development +448177,Economic Development,Economic Development +448175,Economic Development,Economic Development +448172,Economic Development,Economic Development +448171,Economic Development,Economic Development +448169,Economic Development,Economic Development +448168,Economic Development,Economic Development +448166,Economic Development,Economic Development +448155,Economic Development,Economic Development +442696,Economic Development,Economic Development +442695,Economic Development,Economic Development +442692,Economic Development,Economic Development +438507,Economic Development,Economic Development +438505,Economic Development,Economic Development +438503,Economic Development,Economic Development +438498,Economic Development,Economic Development +435336,Economic Development,Economic Development +429496,Economic Development,Economic Development +429495,Economic Development,Economic Development +429494,Economic Development,Economic Development +429492,Economic Development,Economic Development +424562,Economic Development,Economic Development +424561,Economic Development,Economic Development +421816,Economic Development,Economic Development +421811,Economic Development,Economic Development +421809,Economic Development,Economic Development +421808,Economic Development,Economic Development +421806,Economic Development,Economic Development +421803,Economic Development,Economic Development +421801,Economic Development,Economic Development +421798,Economic Development,Economic Development +421796,Economic Development,Economic Development +419480,Economic Development,Economic Development +411905,Economic Development,Economic Development +411904,Economic Development,Economic Development +411903,Economic Development,Economic Development +411901,Economic Development,Economic Development +411898,Economic Development,Economic Development +411897,Economic Development,Economic Development +407040,Economic Development,Economic Development +405264,Economic Development,Economic Development +401447,Economic Development,Economic Development +401446,Economic Development,Economic Development +401445,Economic Development,Economic Development +400262,Economic Development,Economic Development +400261,Economic Development,Economic Development +400260,Economic Development,Economic Development +399140,Economic Development,Economic Development +399139,Economic Development,Economic Development +396167,Economic Development,Economic Development +396162,Economic Development,Economic Development +393663,Economic Development,Economic Development +393662,Economic Development,Economic Development +392704,Economic Development,Economic Development +390484,Economic Development,Economic Development +390483,Economic Development,Economic Development +544157,Economic Development,Economic Development +544156,Economic Development,Economic Development +544154,Economic Development,Economic Development +544153,Economic Development,Economic Development +544151,Economic Development,Economic Development +544148,Economic Development,Economic Development +544146,Economic Development,Economic Development +541977,Economic Development,Economic Development +537952,Economic Development,Economic Development +537950,Economic Development,Economic Development +537945,Economic Development,Economic Development +537944,Economic Development,Economic Development +535894,Economic Development,Economic Development +531878,Economic Development,Economic Development +531877,Economic Development,Economic Development +531876,Economic Development,Economic Development +523271,Economic Development,Economic Development +519181,Economic Development,Economic Development +519180,Economic Development,Economic Development +519179,Economic Development,Economic Development +519178,Economic Development,Economic Development +519177,Economic Development,Economic Development +518350,Economic Development,Economic Development +514826,Economic Development,Economic Development +514824,Economic Development,Economic Development +513219,Economic Development,Economic Development +511496,Economic Development,Economic Development +502907,Economic Development,Economic Development +499707,Economic Development,Economic Development +499697,Economic Development,Economic Development +496140,Economic Development,Economic Development +496139,Economic Development,Economic Development +490071,Economic Development,Economic Development +487942,Economic Development,Economic Development +482668,Economic Development,Economic Development +480100,Economic Development,Economic Development +480098,Economic Development,Economic Development +480096,Economic Development,Economic Development +478210,Economic Development,Economic Development +478208,Economic Development,Economic Development +478207,Economic Development,Economic Development +462882,Economic Development,Economic Development +462881,Economic Development,Economic Development +462880,Economic Development,Economic Development +461049,Economic Development,Economic Development +457538,Economic Development,Economic Development +531876,International Trade,International Trade +523271,International Trade,International Trade +390479,International Trade,International Trade +390478,International Trade,International Trade +390477,International Trade,International Trade +390475,International Trade,International Trade +390474,International Trade,International Trade +390473,International Trade,International Trade +387378,International Trade,International Trade +385721,International Trade,International Trade +385718,International Trade,International Trade +385716,International Trade,International Trade +383567,International Trade,International Trade +383565,International Trade,International Trade +383563,International Trade,International Trade +382774,International Trade,International Trade +381099,International Trade,International Trade +381068,International Trade,International Trade +381056,International Trade,International Trade +381055,International Trade,International Trade +381053,International Trade,International Trade +381052,International Trade,International Trade +381051,International Trade,International Trade +379991,International Trade,International Trade +379990,International Trade,International Trade +377309,International Trade,International Trade +377308,International Trade,International Trade +377307,International Trade,International Trade +377306,International Trade,International Trade +377304,International Trade,International Trade +377303,International Trade,International Trade +377301,International Trade,International Trade +377300,International Trade,International Trade +519181,International Trade,International Trade +519179,International Trade,International Trade +519178,International Trade,International Trade +518350,International Trade,International Trade +514827,International Trade,International Trade +514826,International Trade,International Trade +514824,International Trade,International Trade +513219,International Trade,International Trade +511496,International Trade,International Trade +511489,International Trade,International Trade +502908,International Trade,International Trade +502907,International Trade,International Trade +499707,International Trade,International Trade +499701,International Trade,International Trade +499697,International Trade,International Trade +496140,International Trade,International Trade +496139,International Trade,International Trade +490071,International Trade,International Trade +490070,International Trade,International Trade +487942,International Trade,International Trade +482668,International Trade,International Trade +480100,International Trade,International Trade +480098,International Trade,International Trade +480096,International Trade,International Trade +478210,International Trade,International Trade +478208,International Trade,International Trade +478207,International Trade,International Trade +462882,International Trade,International Trade +462881,International Trade,International Trade +462880,International Trade,International Trade +461049,International Trade,International Trade +457538,International Trade,International Trade +457532,International Trade,International Trade +457530,International Trade,International Trade +456046,International Trade,International Trade +456044,International Trade,International Trade +456043,International Trade,International Trade +449754,International Trade,International Trade +449748,International Trade,International Trade +449745,International Trade,International Trade +449736,International Trade,International Trade +449735,International Trade,International Trade +449732,International Trade,International Trade +449730,International Trade,International Trade +449727,International Trade,International Trade +449719,International Trade,International Trade +449717,International Trade,International Trade +449714,International Trade,International Trade +449711,International Trade,International Trade +449704,International Trade,International Trade +449701,International Trade,International Trade +448177,International Trade,International Trade +448175,International Trade,International Trade +448172,International Trade,International Trade +448171,International Trade,International Trade +448169,International Trade,International Trade +448166,International Trade,International Trade +448155,International Trade,International Trade +442696,International Trade,International Trade +442695,International Trade,International Trade +442692,International Trade,International Trade +438507,International Trade,International Trade +438505,International Trade,International Trade +438503,International Trade,International Trade +438498,International Trade,International Trade +435339,International Trade,International Trade +435336,International Trade,International Trade +435335,International Trade,International Trade +435334,International Trade,International Trade +429496,International Trade,International Trade +429495,International Trade,International Trade +429494,International Trade,International Trade +429492,International Trade,International Trade +424562,International Trade,International Trade +424561,International Trade,International Trade +421816,International Trade,International Trade +421811,International Trade,International Trade +421809,International Trade,International Trade +421808,International Trade,International Trade +421806,International Trade,International Trade +421803,International Trade,International Trade +421801,International Trade,International Trade +421798,International Trade,International Trade +421796,International Trade,International Trade +419480,International Trade,International Trade +411905,International Trade,International Trade +411904,International Trade,International Trade +411903,International Trade,International Trade +411901,International Trade,International Trade +411898,International Trade,International Trade +411897,International Trade,International Trade +411895,International Trade,International Trade +407040,International Trade,International Trade +405264,International Trade,International Trade +401447,International Trade,International Trade +401446,International Trade,International Trade +401445,International Trade,International Trade +400262,International Trade,International Trade +400261,International Trade,International Trade +400260,International Trade,International Trade +399140,International Trade,International Trade +396167,International Trade,International Trade +393663,International Trade,International Trade +393662,International Trade,International Trade +392704,International Trade,International Trade +390484,International Trade,International Trade +390483,International Trade,International Trade +390482,International Trade,International Trade +390481,International Trade,International Trade +390480,International Trade,International Trade +544156,International Trade,International Trade +544154,International Trade,International Trade +544153,International Trade,International Trade +544148,International Trade,International Trade +544146,International Trade,International Trade +541977,International Trade,International Trade +537952,International Trade,International Trade +537950,International Trade,International Trade +537945,International Trade,International Trade +537944,International Trade,International Trade +535894,International Trade,International Trade +531879,International Trade,International Trade +448172,Transportation,Transportation +448171,Transportation,Transportation +377306,Transportation,Transportation +377304,Transportation,Transportation +377303,Transportation,Transportation +377301,Transportation,Transportation +377300,Transportation,Transportation +371556,Transportation,Transportation +448169,Transportation,Transportation +448168,Transportation,Transportation +448166,Transportation,Transportation +448155,Transportation,Transportation +442696,Transportation,Transportation +442695,Transportation,Transportation +442692,Transportation,Transportation +438507,Transportation,Transportation +438505,Transportation,Transportation +438503,Transportation,Transportation +438498,Transportation,Transportation +435339,Transportation,Transportation +435336,Transportation,Transportation +435335,Transportation,Transportation +435334,Transportation,Transportation +429496,Transportation,Transportation +429495,Transportation,Transportation +429494,Transportation,Transportation +429492,Transportation,Transportation +424562,Transportation,Transportation +424561,Transportation,Transportation +421816,Transportation,Transportation +421811,Transportation,Transportation +421809,Transportation,Transportation +421808,Transportation,Transportation +421806,Transportation,Transportation +421803,Transportation,Transportation +421801,Transportation,Transportation +421798,Transportation,Transportation +421796,Transportation,Transportation +419480,Transportation,Transportation +411905,Transportation,Transportation +411904,Transportation,Transportation +411903,Transportation,Transportation +411901,Transportation,Transportation +411898,Transportation,Transportation +411897,Transportation,Transportation +411895,Transportation,Transportation +411894,Transportation,Transportation +407040,Transportation,Transportation +405264,Transportation,Transportation +401447,Transportation,Transportation +401446,Transportation,Transportation +401445,Transportation,Transportation +400262,Transportation,Transportation +400260,Transportation,Transportation +399140,Transportation,Transportation +399139,Transportation,Transportation +396169,Transportation,Transportation +396167,Transportation,Transportation +396165,Transportation,Transportation +396162,Transportation,Transportation +393663,Transportation,Transportation +393662,Transportation,Transportation +392704,Transportation,Transportation +392703,Transportation,Transportation +390484,Transportation,Transportation +390483,Transportation,Transportation +390482,Transportation,Transportation +390481,Transportation,Transportation +390480,Transportation,Transportation +390479,Transportation,Transportation +390478,Transportation,Transportation +390477,Transportation,Transportation +390476,Transportation,Transportation +390475,Transportation,Transportation +390474,Transportation,Transportation +390473,Transportation,Transportation +387378,Transportation,Transportation +385725,Transportation,Transportation +385724,Transportation,Transportation +385721,Transportation,Transportation +385720,Transportation,Transportation +385718,Transportation,Transportation +385716,Transportation,Transportation +385715,Transportation,Transportation +385713,Transportation,Transportation +385711,Transportation,Transportation +383567,Transportation,Transportation +383565,Transportation,Transportation +383563,Transportation,Transportation +382774,Transportation,Transportation +381099,Transportation,Transportation +381068,Transportation,Transportation +381066,Transportation,Transportation +381056,Transportation,Transportation +381055,Transportation,Transportation +381053,Transportation,Transportation +381052,Transportation,Transportation +381051,Transportation,Transportation +379991,Transportation,Transportation +379990,Transportation,Transportation +377309,Transportation,Transportation +377308,Transportation,Transportation +377307,Transportation,Transportation +544157,Transportation,Transportation +544156,Transportation,Transportation +544154,Transportation,Transportation +544153,Transportation,Transportation +544151,Transportation,Transportation +544148,Transportation,Transportation +544146,Transportation,Transportation +541977,Transportation,Transportation +537952,Transportation,Transportation +537950,Transportation,Transportation +537945,Transportation,Transportation +537944,Transportation,Transportation +535894,Transportation,Transportation +531879,Transportation,Transportation +531878,Transportation,Transportation +531877,Transportation,Transportation +531876,Transportation,Transportation +523271,Transportation,Transportation +519181,Transportation,Transportation +519180,Transportation,Transportation +519179,Transportation,Transportation +519178,Transportation,Transportation +519177,Transportation,Transportation +518350,Transportation,Transportation +514827,Transportation,Transportation +514826,Transportation,Transportation +514824,Transportation,Transportation +513219,Transportation,Transportation +511496,Transportation,Transportation +511489,Transportation,Transportation +502908,Transportation,Transportation +502907,Transportation,Transportation +499714,Transportation,Transportation +499707,Transportation,Transportation +499701,Transportation,Transportation +499697,Transportation,Transportation +496140,Transportation,Transportation +496139,Transportation,Transportation +490071,Transportation,Transportation +490070,Transportation,Transportation +487942,Transportation,Transportation +482668,Transportation,Transportation +480100,Transportation,Transportation +480098,Transportation,Transportation +480096,Transportation,Transportation +478210,Transportation,Transportation +478208,Transportation,Transportation +478207,Transportation,Transportation +462882,Transportation,Transportation +462881,Transportation,Transportation +462880,Transportation,Transportation +462879,Transportation,Transportation +461049,Transportation,Transportation +457538,Transportation,Transportation +457532,Transportation,Transportation +457530,Transportation,Transportation +456046,Transportation,Transportation +456044,Transportation,Transportation +456043,Transportation,Transportation +456042,Transportation,Transportation +456041,Transportation,Transportation +449754,Transportation,Transportation +449748,Transportation,Transportation +449745,Transportation,Transportation +449736,Transportation,Transportation +449735,Transportation,Transportation +449732,Transportation,Transportation +449730,Transportation,Transportation +449727,Transportation,Transportation +449724,Transportation,Transportation +449721,Transportation,Transportation +449719,Transportation,Transportation +449717,Transportation,Transportation +449714,Transportation,Transportation +449711,Transportation,Transportation +449709,Transportation,Transportation +449707,Transportation,Transportation +449705,Transportation,Transportation +449704,Transportation,Transportation +449701,Transportation,Transportation +448179,Transportation,Transportation +448177,Transportation,Transportation +372977,Fisheries,Fisheries +369553,Fisheries,Fisheries +372983,Fisheries,Fisheries +372982,Fisheries,Fisheries +372981,Fisheries,Fisheries +372980,Fisheries,Fisheries +372979,Fisheries,Fisheries +457307,Sports,Sports +457305,Sports,Sports +409391,Sports,Sports +382895,Sports,Sports +512829,Sports,Sports +512828,Sports,Sports +512826,Sports,Sports +512824,Sports,Sports +512822,Sports,Sports +512818,Sports,Sports +512817,Sports,Sports +510328,Sports,Sports +510326,Sports,Sports +510320,Sports,Sports +508514,Sports,Sports +508511,Sports,Sports +508504,Sports,Sports +458685,Sports,Sports +382219,Climate,Climate +381190,Climate,Climate +391271,Climate,Climate +388326,Climate,Climate +385894,Climate,Climate +385893,Climate,Climate +383642,Climate,Climate +383526,Climate,Climate +379586,Transportation,Transportation +380160,Environment,Environment +378737,Environment,Environment +375370,Environment,Environment +370105,Environment,Environment +375513,Economic Development,Economic Development +373762,Economic Development,Economic Development +375513,Industry,Industry +373762,Industry,Industry +375513,International Trade,International Trade +373762,International Trade,International Trade +375513,Taxation and Finance,Taxation and Finance +373762,Taxation and Finance,Taxation and Finance +485157,Budget,Budget +482191,Budget,Budget +398963,Budget,Budget +398957,Budget,Budget +396667,Budget,Budget +394487,Budget,Budget +394411,Budget,Budget +381258,Budget,Budget +374822,Budget,Budget +371855,Budget,Budget +369674,Budget,Budget +369673,Budget,Budget +369672,Budget,Budget +369671,Budget,Budget +369670,Budget,Budget +464943,Budget,Budget +464939,Budget,Budget +460155,Budget,Budget +445576,Budget,Budget +444213,Budget,Budget +444212,Budget,Budget +444205,Budget,Budget +444204,Budget,Budget +444203,Budget,Budget +438820,Budget,Budget +438819,Budget,Budget +438816,Budget,Budget +438814,Budget,Budget +438811,Budget,Budget +438810,Budget,Budget +435939,Budget,Budget +435936,Budget,Budget +435933,Budget,Budget +435931,Budget,Budget +435930,Budget,Budget +423698,Budget,Budget +422398,Budget,Budget +422394,Budget,Budget +422392,Budget,Budget +419607,Budget,Budget +416925,Budget,Budget +416880,Budget,Budget +416878,Budget,Budget +411935,Budget,Budget +411933,Budget,Budget +411932,Budget,Budget +411930,Budget,Budget +409653,Budget,Budget +409649,Budget,Budget +540165,Budget,Budget +529177,Budget,Budget +526370,Budget,Budget +526338,Budget,Budget +522964,Budget,Budget +517613,Budget,Budget +517609,Budget,Budget +515744,Budget,Budget +507439,Budget,Budget +507437,Budget,Budget +507435,Budget,Budget +504354,Budget,Budget +504353,Budget,Budget +502319,Budget,Budget +502317,Budget,Budget +502306,Budget,Budget +502304,Budget,Budget +502297,Budget,Budget +490590,Budget,Budget +400275,Agriculture,Agriculture +544224,Agriculture,Agriculture +418791,Agriculture,Agriculture +544225,Budget,Budget +541866,Budget,Budget +541866,Consumer Issues,Consumer Issues +418791,Industry,Industry +520147,Industry,Industry +386983,Industry,Industry +381192,Industry,Industry +375618,Industry,Industry +381192,Internal Trade,Internal Trade +466681,Internal Trade,Internal Trade +433541,Taxation and Finance,Taxation and Finance +429344,Taxation and Finance,Taxation and Finance +371181,Taxation and Finance,Taxation and Finance +418966,Taxation and Finance,Taxation and Finance +416143,Taxation and Finance,Taxation and Finance +415719,Taxation and Finance,Taxation and Finance +415718,Taxation and Finance,Taxation and Finance +400275,Taxation and Finance,Taxation and Finance +400273,Taxation and Finance,Taxation and Finance +388623,Taxation and Finance,Taxation and Finance +381192,Taxation and Finance,Taxation and Finance +544225,Taxation and Finance,Taxation and Finance +544224,Taxation and Finance,Taxation and Finance +541866,Taxation and Finance,Taxation and Finance +447025,Taxation and Finance,Taxation and Finance +436947,Taxation and Finance,Taxation and Finance +436946,Taxation and Finance,Taxation and Finance +436945,Taxation and Finance,Taxation and Finance +436944,Taxation and Finance,Taxation and Finance +436943,Taxation and Finance,Taxation and Finance +434667,Taxation and Finance,Taxation and Finance +433543,Taxation and Finance,Taxation and Finance +374430,Tourism,Tourism +370954,Tourism,Tourism +379444,Tourism,Tourism +376980,Tourism,Tourism +376978,Tourism,Tourism +376975,Tourism,Tourism +376973,Tourism,Tourism +374439,Tourism,Tourism +374436,Tourism,Tourism +374430,Infrastructure,Infrastructure +370954,Infrastructure,Infrastructure +379444,Infrastructure,Infrastructure +376980,Infrastructure,Infrastructure +376978,Infrastructure,Infrastructure +376975,Infrastructure,Infrastructure +376973,Infrastructure,Infrastructure +374439,Infrastructure,Infrastructure +374436,Infrastructure,Infrastructure +467761,Economic Development,Economic Development +461493,Economic Development,Economic Development +382311,Economic Development,Economic Development +543676,Economic Development,Economic Development +539433,Economic Development,Economic Development +539432,Economic Development,Economic Development +531531,Economic Development,Economic Development +528841,Economic Development,Economic Development +522725,Economic Development,Economic Development +520090,Economic Development,Economic Development +520088,Economic Development,Economic Development +517582,Economic Development,Economic Development +517563,Economic Development,Economic Development +517557,Economic Development,Economic Development +515582,Economic Development,Economic Development +515581,Economic Development,Economic Development +515580,Economic Development,Economic Development +514679,Economic Development,Economic Development +514676,Economic Development,Economic Development +514066,Economic Development,Economic Development +513181,Economic Development,Economic Development +510723,Economic Development,Economic Development +510720,Economic Development,Economic Development +510718,Economic Development,Economic Development +510704,Economic Development,Economic Development +508000,Economic Development,Economic Development +505449,Economic Development,Economic Development +501350,Economic Development,Economic Development +498654,Economic Development,Economic Development +498653,Economic Development,Economic Development +498652,Economic Development,Economic Development +498642,Economic Development,Economic Development +495642,Economic Development,Economic Development +495641,Economic Development,Economic Development +495640,Economic Development,Economic Development +493067,Economic Development,Economic Development +493065,Economic Development,Economic Development +493064,Economic Development,Economic Development +493062,Economic Development,Economic Development +493060,Economic Development,Economic Development +490813,Economic Development,Economic Development +490812,Economic Development,Economic Development +490811,Economic Development,Economic Development +490810,Economic Development,Economic Development +484458,Economic Development,Economic Development +484456,Economic Development,Economic Development +481840,Economic Development,Economic Development +481834,Economic Development,Economic Development +480046,Economic Development,Economic Development +478129,Economic Development,Economic Development +477592,Economic Development,Economic Development +477111,Economic Development,Economic Development +477108,Economic Development,Economic Development +472825,Economic Development,Economic Development +459903,Agriculture,Agriculture +431815,Agriculture,Agriculture +481838,Agriculture,Agriculture +475128,Small Business,Small Business +475088,Small Business,Small Business +480040,Small Business,Small Business +480022,Small Business,Small Business +480014,Small Business,Small Business +376383,Agriculture,Agriculture +376381,Agriculture,Agriculture +394642,Agriculture,Agriculture +394641,Agriculture,Agriculture +387584,Agriculture,Agriculture +387583,Agriculture,Agriculture +384215,Agriculture,Agriculture +380359,Agriculture,Agriculture +394642,Budget,Budget +394641,Budget,Budget +377536,Budget,Budget +376383,Budget,Budget +376381,Budget,Budget +387584,Budget,Budget +387583,Budget,Budget +384215,Budget,Budget +394642,Economic Development,Economic Development +394641,Economic Development,Economic Development +387584,Economic Development,Economic Development +387583,Economic Development,Economic Development +384215,Economic Development,Economic Development +380359,Economic Development,Economic Development +377536,Economic Development,Economic Development +376383,Economic Development,Economic Development +394642,Employment and Training,Employment and Training +394641,Employment and Training,Employment and Training +387584,Employment and Training,Employment and Training +387583,Employment and Training,Employment and Training +384215,Employment and Training,Employment and Training +380359,Employment and Training,Employment and Training +377536,Employment and Training,Employment and Training +376383,Employment and Training,Employment and Training +376383,Environment,Environment +376381,Environment,Environment +394642,Environment,Environment +394641,Environment,Environment +387584,Environment,Environment +387583,Environment,Environment +384215,Environment,Environment +380359,Environment,Environment +376383,Fisheries,Fisheries +376381,Fisheries,Fisheries +394642,Fisheries,Fisheries +394641,Fisheries,Fisheries +387584,Fisheries,Fisheries +387583,Fisheries,Fisheries +384215,Fisheries,Fisheries +380359,Fisheries,Fisheries +376383,Industry,Industry +376381,Industry,Industry +394642,Industry,Industry +394641,Industry,Industry +387584,Industry,Industry +387583,Industry,Industry +384215,Industry,Industry +380359,Industry,Industry +376383,International Trade,International Trade +376381,International Trade,International Trade +394642,International Trade,International Trade +394641,International Trade,International Trade +387584,International Trade,International Trade +387583,International Trade,International Trade +384215,International Trade,International Trade +380359,International Trade,International Trade +387583,Labour,Labour +384215,Labour,Labour +380359,Labour,Labour +377536,Labour,Labour +376383,Labour,Labour +376381,Labour,Labour +394642,Labour,Labour +394641,Labour,Labour +387583,Regional Development,Regional Development +384215,Regional Development,Regional Development +380359,Regional Development,Regional Development +377536,Regional Development,Regional Development +376383,Regional Development,Regional Development +376381,Regional Development,Regional Development +394642,Regional Development,Regional Development +394641,Regional Development,Regional Development +376383,Research and Development,Research and Development +376381,Research and Development,Research and Development +394642,Research and Development,Research and Development +394641,Research and Development,Research and Development +387584,Research and Development,Research and Development +387583,Research and Development,Research and Development +384215,Research and Development,Research and Development +380359,Research and Development,Research and Development +377536,Taxation and Finance,Taxation and Finance +376383,Taxation and Finance,Taxation and Finance +376381,Taxation and Finance,Taxation and Finance +394642,Taxation and Finance,Taxation and Finance +394641,Taxation and Finance,Taxation and Finance +387584,Taxation and Finance,Taxation and Finance +387583,Taxation and Finance,Taxation and Finance +384215,Taxation and Finance,Taxation and Finance +371198,Environment,Environment +371195,Environment,Environment +371198,International Trade,International Trade +370266,Consumer Issues,Consumer Issues +370229,Consumer Issues,Consumer Issues +381774,Consumer Issues,Consumer Issues +380411,Consumer Issues,Consumer Issues +380094,Consumer Issues,Consumer Issues +380093,Consumer Issues,Consumer Issues +378167,Consumer Issues,Consumer Issues +378166,Consumer Issues,Consumer Issues +378053,Consumer Issues,Consumer Issues +378052,Consumer Issues,Consumer Issues +378051,Consumer Issues,Consumer Issues +378050,Consumer Issues,Consumer Issues +378049,Consumer Issues,Consumer Issues +377883,Consumer Issues,Consumer Issues +377472,Consumer Issues,Consumer Issues +375816,Consumer Issues,Consumer Issues +374340,Consumer Issues,Consumer Issues +375816,Economic Development,Economic Development +374340,Economic Development,Economic Development +370347,Economic Development,Economic Development +370266,Economic Development,Economic Development +370229,Economic Development,Economic Development +381774,Economic Development,Economic Development +380411,Economic Development,Economic Development +380094,Economic Development,Economic Development +380093,Economic Development,Economic Development +378167,Economic Development,Economic Development +378166,Economic Development,Economic Development +378053,Economic Development,Economic Development +378051,Economic Development,Economic Development +378050,Economic Development,Economic Development +378049,Economic Development,Economic Development +377883,Economic Development,Economic Development +370266,Transportation,Transportation +370229,Transportation,Transportation +381774,Transportation,Transportation +380411,Transportation,Transportation +380094,Transportation,Transportation +380093,Transportation,Transportation +378167,Transportation,Transportation +378166,Transportation,Transportation +378053,Transportation,Transportation +378052,Transportation,Transportation +378051,Transportation,Transportation +378050,Transportation,Transportation +378049,Transportation,Transportation +377883,Transportation,Transportation +377472,Transportation,Transportation +375816,Transportation,Transportation +374340,Transportation,Transportation +374574,Government Procurement,Government Procurement +374574,Health,Health +372795,Economic Development,Economic Development +372794,Economic Development,Economic Development +372797,Environment,Environment +372795,Infrastructure,Infrastructure +372794,Infrastructure,Infrastructure +372799,Infrastructure,Infrastructure +372795,Municipalities,Municipalities +372794,Municipalities,Municipalities +372799,Municipalities,Municipalities +372797,Transportation,Transportation +372794,Transportation,Transportation +370262,Consumer Issues,Consumer Issues +370258,Consumer Issues,Consumer Issues +384061,Consumer Issues,Consumer Issues +378034,Consumer Issues,Consumer Issues +378003,Consumer Issues,Consumer Issues +378002,Consumer Issues,Consumer Issues +374300,Consumer Issues,Consumer Issues +374298,Consumer Issues,Consumer Issues +374153,Consumer Issues,Consumer Issues +374151,Consumer Issues,Consumer Issues +374135,Consumer Issues,Consumer Issues +373461,Consumer Issues,Consumer Issues +370019,Economic Development,Economic Development +370017,Economic Development,Economic Development +384061,Economic Development,Economic Development +378034,Economic Development,Economic Development +378003,Economic Development,Economic Development +378002,Economic Development,Economic Development +374300,Economic Development,Economic Development +374298,Economic Development,Economic Development +374153,Economic Development,Economic Development +374151,Economic Development,Economic Development +374135,Economic Development,Economic Development +373461,Economic Development,Economic Development +370265,Economic Development,Economic Development +370262,Economic Development,Economic Development +370017,Transportation,Transportation +427267,Transportation,Transportation +397399,Transportation,Transportation +395351,Transportation,Transportation +384061,Transportation,Transportation +378034,Transportation,Transportation +378003,Transportation,Transportation +378002,Transportation,Transportation +374300,Transportation,Transportation +374298,Transportation,Transportation +374153,Transportation,Transportation +374151,Transportation,Transportation +374135,Transportation,Transportation +373461,Transportation,Transportation +370265,Transportation,Transportation +370262,Transportation,Transportation +370258,Transportation,Transportation +372806,Health,Health +375115,International Development,International Development +370464,International Development,International Development +384241,Economic Development,Economic Development +420750,Economic Development,Economic Development +384285,Industry,Industry +384241,Industry,Industry +420750,Transportation,Transportation +418663,Transportation,Transportation +392939,Transportation,Transportation +384285,Transportation,Transportation +379549,Internal Trade,Commerce intérieur +376651,Internal Trade,Commerce intérieur +372945,International Trade,Commerce international +372944,International Trade,Commerce international +372941,International Trade,Commerce international +372939,International Trade,Commerce international +370397,International Trade,Commerce international +370396,International Trade,Commerce international +370395,International Trade,Commerce international +370393,International Trade,Commerce international +400401,International Trade,Commerce international +397180,International Trade,Commerce international +397177,International Trade,Commerce international +397176,International Trade,Commerce international +394249,International Trade,Commerce international +394233,International Trade,Commerce international +392841,International Trade,Commerce international +392839,International Trade,Commerce international +390547,International Trade,Commerce international +390540,International Trade,Commerce international +390535,International Trade,Commerce international +390533,International Trade,Commerce international +390531,International Trade,Commerce international +390529,International Trade,Commerce international +390526,International Trade,Commerce international +390519,International Trade,Commerce international +390510,International Trade,Commerce international +390508,International Trade,Commerce international +390507,International Trade,Commerce international +390505,International Trade,Commerce international +390504,International Trade,Commerce international +388711,International Trade,Commerce international +388710,International Trade,Commerce international +388704,International Trade,Commerce international +388703,International Trade,Commerce international +388701,International Trade,Commerce international +388698,International Trade,Commerce international +388697,International Trade,Commerce international +388693,International Trade,Commerce international +388692,International Trade,Commerce international +388691,International Trade,Commerce international +388687,International Trade,Commerce international +385867,International Trade,Commerce international +385861,International Trade,Commerce international +385860,International Trade,Commerce international +385851,International Trade,Commerce international +385850,International Trade,Commerce international +385847,International Trade,Commerce international +385846,International Trade,Commerce international +385844,International Trade,Commerce international +385843,International Trade,Commerce international +383815,International Trade,Commerce international +383814,International Trade,Commerce international +383805,International Trade,Commerce international +383803,International Trade,Commerce international +383797,International Trade,Commerce international +382673,International Trade,Commerce international +382672,International Trade,Commerce international +382671,International Trade,Commerce international +380932,International Trade,Commerce international +380931,International Trade,Commerce international +380930,International Trade,Commerce international +380929,International Trade,Commerce international +379553,International Trade,Commerce international +379549,International Trade,Commerce international +379547,International Trade,Commerce international +379541,International Trade,Commerce international +379540,International Trade,Commerce international +377693,International Trade,Commerce international +377691,International Trade,Commerce international +377688,International Trade,Commerce international +376679,International Trade,Commerce international +376667,International Trade,Commerce international +376651,International Trade,Commerce international +375272,International Trade,Commerce international +374856,International Trade,Commerce international +374855,International Trade,Commerce international +374854,International Trade,Commerce international +373723,International Trade,Commerce international +385845,Economic Development,Développement économique +377693,Regional Development,Développement régional +376651,Regional Development,Développement régional +385845,Regional Development,Développement régional +376651,Employment and Training,Emploi et formation +376651,Environment,Environnement +374855,Environment,Environnement +379540,Environment,Environnement +377693,Environment,Environnement +377691,Environment,Environnement +377688,Environment,Environnement +390505,Forestry,Foresterie +390504,Forestry,Foresterie +370397,Forestry,Foresterie +370396,Forestry,Foresterie +370395,Forestry,Foresterie +370393,Forestry,Foresterie +388711,Forestry,Foresterie +388710,Forestry,Foresterie +388709,Forestry,Foresterie +388706,Forestry,Foresterie +388704,Forestry,Foresterie +388703,Forestry,Foresterie +388699,Forestry,Foresterie +388693,Forestry,Foresterie +388692,Forestry,Foresterie +388691,Forestry,Foresterie +388687,Forestry,Foresterie +385867,Forestry,Foresterie +385851,Forestry,Foresterie +385847,Forestry,Foresterie +385846,Forestry,Foresterie +385844,Forestry,Foresterie +385843,Forestry,Foresterie +383815,Forestry,Foresterie +383807,Forestry,Foresterie +383805,Forestry,Foresterie +383803,Forestry,Foresterie +383797,Forestry,Foresterie +383794,Forestry,Foresterie +382673,Forestry,Foresterie +382672,Forestry,Foresterie +382671,Forestry,Foresterie +380932,Forestry,Foresterie +380931,Forestry,Foresterie +380930,Forestry,Foresterie +380929,Forestry,Foresterie +379553,Forestry,Foresterie +379549,Forestry,Foresterie +379547,Forestry,Foresterie +379541,Forestry,Foresterie +379540,Forestry,Foresterie +377693,Forestry,Foresterie +377691,Forestry,Foresterie +377688,Forestry,Foresterie +376679,Forestry,Foresterie +376667,Forestry,Foresterie +376651,Forestry,Foresterie +375272,Forestry,Foresterie +374856,Forestry,Foresterie +374855,Forestry,Foresterie +374854,Forestry,Foresterie +373723,Forestry,Foresterie +373638,Forestry,Foresterie +373636,Forestry,Foresterie +372945,Forestry,Foresterie +372944,Forestry,Foresterie +372941,Forestry,Foresterie +372939,Forestry,Foresterie +400401,Forestry,Foresterie +397180,Forestry,Foresterie +397177,Forestry,Foresterie +397176,Forestry,Foresterie +397158,Forestry,Foresterie +394249,Forestry,Foresterie +394233,Forestry,Foresterie +392841,Forestry,Foresterie +392839,Forestry,Foresterie +392836,Forestry,Foresterie +390547,Forestry,Foresterie +390540,Forestry,Foresterie +390535,Forestry,Foresterie +390533,Forestry,Foresterie +390531,Forestry,Foresterie +390529,Forestry,Foresterie +390526,Forestry,Foresterie +390519,Forestry,Foresterie +390510,Forestry,Foresterie +390508,Forestry,Foresterie +385846,Taxation and Finance,Impôts et finances +385843,Taxation and Finance,Impôts et finances +397176,Taxation and Finance,Impôts et finances +388693,Taxation and Finance,Impôts et finances +388692,Taxation and Finance,Impôts et finances +385861,Taxation and Finance,Impôts et finances +385851,Taxation and Finance,Impôts et finances +376651,Industry,Industrie +371582,Industry,Industry +371560,Industry,Industry +371582,Transportation,Transportation +371560,Transportation,Transportation +375656,Transportation,Transportation +374162,Transportation,Transportation +373688,Transportation,Transportation +418791,International Trade,International Trade +398245,International Trade,International Trade +386982,International Trade,International Trade +381192,International Trade,International Trade +371180,International Trade,International Trade +508905,International Trade,International Trade +371259,Agriculture,Agriculture +371257,Agriculture,Agriculture +371269,Agriculture,Agriculture +371267,Agriculture,Agriculture +371265,Agriculture,Agriculture +371259,Employment and Training,Employment and Training +371257,Employment and Training,Employment and Training +371269,Employment and Training,Employment and Training +371267,Employment and Training,Employment and Training +371265,Employment and Training,Employment and Training +371259,Infrastructure,Infrastructure +371257,Infrastructure,Infrastructure +371269,Infrastructure,Infrastructure +371267,Infrastructure,Infrastructure +371265,Infrastructure,Infrastructure +371259,Economic Development,Economic Development +371257,Economic Development,Economic Development +371269,Economic Development,Economic Development +371267,Economic Development,Economic Development +371265,Economic Development,Economic Development +371261,Taxation and Finance,Taxation and Finance +371259,Industry,Industry +371257,Industry,Industry +371269,Industry,Industry +371267,Industry,Industry +371265,Industry,Industry +371259,Transportation,Transportation +371257,Transportation,Transportation +371269,Transportation,Transportation +371267,Transportation,Transportation +371265,Transportation,Transportation +371259,Regional Development,Regional Development +371257,Regional Development,Regional Development +371269,Regional Development,Regional Development +371267,Regional Development,Regional Development +371265,Regional Development,Regional Development +512595,Taxation and Finance,Taxation and Finance +512593,Taxation and Finance,Taxation and Finance +511074,Taxation and Finance,Taxation and Finance +507558,Taxation and Finance,Taxation and Finance +487255,Taxation and Finance,Taxation and Finance +487244,Taxation and Finance,Taxation and Finance +477853,Taxation and Finance,Taxation and Finance +475456,Taxation and Finance,Taxation and Finance +475446,Taxation and Finance,Taxation and Finance +475442,Taxation and Finance,Taxation and Finance +472975,Taxation and Finance,Taxation and Finance +472974,Taxation and Finance,Taxation and Finance +472966,Taxation and Finance,Taxation and Finance +472961,Taxation and Finance,Taxation and Finance +472958,Taxation and Finance,Taxation and Finance +472952,Taxation and Finance,Taxation and Finance +472951,Taxation and Finance,Taxation and Finance +472946,Taxation and Finance,Taxation and Finance +472936,Taxation and Finance,Taxation and Finance +472931,Taxation and Finance,Taxation and Finance +472922,Taxation and Finance,Taxation and Finance +472915,Taxation and Finance,Taxation and Finance +472911,Taxation and Finance,Taxation and Finance +470683,Taxation and Finance,Taxation and Finance +470678,Taxation and Finance,Taxation and Finance +470671,Taxation and Finance,Taxation and Finance +470665,Taxation and Finance,Taxation and Finance +470659,Taxation and Finance,Taxation and Finance +470656,Taxation and Finance,Taxation and Finance +470651,Taxation and Finance,Taxation and Finance +470648,Taxation and Finance,Taxation and Finance +470643,Taxation and Finance,Taxation and Finance +470632,Taxation and Finance,Taxation and Finance +442401,Taxation and Finance,Taxation and Finance +439434,Taxation and Finance,Taxation and Finance +439427,Taxation and Finance,Taxation and Finance +435180,Taxation and Finance,Taxation and Finance +429121,Taxation and Finance,Taxation and Finance +429111,Taxation and Finance,Taxation and Finance +426784,Taxation and Finance,Taxation and Finance +426677,Taxation and Finance,Taxation and Finance +423218,Taxation and Finance,Taxation and Finance +423215,Taxation and Finance,Taxation and Finance +416584,Taxation and Finance,Taxation and Finance +416507,Taxation and Finance,Taxation and Finance +372175,Taxation and Finance,Taxation and Finance +544700,Taxation and Finance,Taxation and Finance +544507,Taxation and Finance,Taxation and Finance +543253,Taxation and Finance,Taxation and Finance +543249,Taxation and Finance,Taxation and Finance +543243,Taxation and Finance,Taxation and Finance +543238,Taxation and Finance,Taxation and Finance +543234,Taxation and Finance,Taxation and Finance +540008,Taxation and Finance,Taxation and Finance +531148,Taxation and Finance,Taxation and Finance +526305,Taxation and Finance,Taxation and Finance +526298,Taxation and Finance,Taxation and Finance +526295,Taxation and Finance,Taxation and Finance +526292,Taxation and Finance,Taxation and Finance +526288,Taxation and Finance,Taxation and Finance +521781,Taxation and Finance,Taxation and Finance +521779,Taxation and Finance,Taxation and Finance +521778,Taxation and Finance,Taxation and Finance +519319,Taxation and Finance,Taxation and Finance +519315,Taxation and Finance,Taxation and Finance +517650,Taxation and Finance,Taxation and Finance +517639,Taxation and Finance,Taxation and Finance +517635,Taxation and Finance,Taxation and Finance +517623,Taxation and Finance,Taxation and Finance +515170,Taxation and Finance,Taxation and Finance +515168,Taxation and Finance,Taxation and Finance +514882,Taxation and Finance,Taxation and Finance +513879,Taxation and Finance,Taxation and Finance +512650,Taxation and Finance,Taxation and Finance +512647,Taxation and Finance,Taxation and Finance +512640,Taxation and Finance,Taxation and Finance +429895,Agriculture,Agriculture +429893,Agriculture,Agriculture +419927,Agriculture,Agriculture +439951,Agriculture,Agriculture +439950,Agriculture,Agriculture +383170,Budget,Budget +383163,Budget,Budget +376927,Economic Development,Economic Development +376901,Economic Development,Economic Development +399898,Economic Development,Economic Development +398257,Economic Development,Economic Development +396235,Economic Development,Economic Development +396230,Economic Development,Economic Development +396228,Economic Development,Economic Development +392572,Economic Development,Economic Development +383180,Economic Development,Economic Development +383170,Economic Development,Economic Development +383163,Economic Development,Economic Development +382027,Economic Development,Economic Development +382024,Economic Development,Economic Development +382021,Economic Development,Economic Development +379427,Economic Development,Economic Development +376901,Employment and Training,Employment and Training +376927,Industry,Industry +376901,Industry,Industry +383180,Industry,Industry +383170,Industry,Industry +383163,Industry,Industry +382027,Industry,Industry +376927,Infrastructure,Infrastructure +376901,Infrastructure,Infrastructure +399898,Infrastructure,Infrastructure +398257,Infrastructure,Infrastructure +396235,Infrastructure,Infrastructure +396230,Infrastructure,Infrastructure +396228,Infrastructure,Infrastructure +392572,Infrastructure,Infrastructure +387758,Infrastructure,Infrastructure +387754,Infrastructure,Infrastructure +387727,Infrastructure,Infrastructure +385240,Infrastructure,Infrastructure +382021,Infrastructure,Infrastructure +379427,Infrastructure,Infrastructure +376927,Research and Development,Research and Development +376901,Research and Development,Research and Development +383180,Research and Development,Research and Development +383170,Research and Development,Research and Development +383163,Research and Development,Research and Development +382027,Research and Development,Research and Development +382024,Research and Development,Research and Development +379427,Research and Development,Research and Development +487942,Infrastructure,Infrastructure +482668,Infrastructure,Infrastructure +385725,Infrastructure,Infrastructure +385724,Infrastructure,Infrastructure +385721,Infrastructure,Infrastructure +385720,Infrastructure,Infrastructure +385718,Infrastructure,Infrastructure +385716,Infrastructure,Infrastructure +385715,Infrastructure,Infrastructure +385713,Infrastructure,Infrastructure +385711,Infrastructure,Infrastructure +383567,Infrastructure,Infrastructure +382774,Infrastructure,Infrastructure +381068,Infrastructure,Infrastructure +381056,Infrastructure,Infrastructure +381053,Infrastructure,Infrastructure +381051,Infrastructure,Infrastructure +379991,Infrastructure,Infrastructure +379990,Infrastructure,Infrastructure +377309,Infrastructure,Infrastructure +377308,Infrastructure,Infrastructure +377307,Infrastructure,Infrastructure +377306,Infrastructure,Infrastructure +377303,Infrastructure,Infrastructure +377301,Infrastructure,Infrastructure +377300,Infrastructure,Infrastructure +371556,Infrastructure,Infrastructure +480100,Infrastructure,Infrastructure +480098,Infrastructure,Infrastructure +480096,Infrastructure,Infrastructure +478210,Infrastructure,Infrastructure +478208,Infrastructure,Infrastructure +478207,Infrastructure,Infrastructure +462882,Infrastructure,Infrastructure +462881,Infrastructure,Infrastructure +376522,Financial Institutions,Financial Institutions +389992,Taxation and Finance,Taxation and Finance +503649,Consumer Issues,Consumer Issues +368695,Economic Development,Développement économique +368695,Environment,Environnement +373263,Economic Development,Economic Development +373263,Environment,Environment +373263,Transportation,Transportation +371202,Regional Development,Regional Development +401836,Tourism,Tourism +396111,Regional Development,Regional Development +386880,Industry,Industry +385025,Infrastructure,Infrastructure +368591,Constitutional Issues,Constitutional Issues +461117,Economic Development,Economic Development +368643,Tourism,Tourism +368643,Regional Development,Regional Development +368644,Regional Development,Regional Development +368644,Tourism,Tourism +380855,Agriculture,Agriculture +376940,Immigration,Immigration +376940,Justice and Law Enforcement,Justice and Law Enforcement +377369,Industry,Industry +374216,Energy,Energy +368724,International Development,International Development +368724,International Relations,International Relations +372959,International Trade,International Trade +418614,Infrastructure,Infrastructure +429605,International Relations,International Relations +418355,Security,Security +418614,Transportation,Transportation +368695,Regional Development,Regional Development +368695,Employment and Training,Employment and Training +370709,International Relations,International Relations +386736,Health,Health +368813,Energy,Energy +368809,Taxation and Finance,Taxation and Finance +429045,Budget,Budget +372765,Budget,Budget +427474,Sports,Sports +379442,Infrastructure,Infrastructure +374445,Tourism,Tourism +406002,Housing,Housing +371417,Education,Education +371417,Employment and Training,Employment and Training +371417,Health,Health +371420,International Trade,International Trade +371418,Justice and Law Enforcement,Justice and Law Enforcement +371417,Pensions,Pensions +371420,Taxation and Finance,Taxation and Finance +370114,Infrastructure,Infrastructure +373363,Infrastructure,Infrastructure +369005,Economic Development,Economic Development +380928,Economic Development,Economic Development +373036,Energy,Energy +373036,Environment,Environment +374259,Health,Health +373450,Defence,Defence +373450,Government Procurement,Government Procurement +464370,Environment,Environment +466282,Infrastructure,Infrastructure +384999,Intellectual Property,Intellectual Property +385005,Intellectual Property,Intellectual Property +443355,Agriculture,Agriculture +443349,Climate,Climate +511105,Employment and Training,Employment and Training +443357,Environment,Environment +515025,Labour,Labour +443357,Taxation and Finance,Taxation and Finance +371409,Infrastructure,Infrastructure +371409,Taxation and Finance,Taxation and Finance +371410,Transportation,Transportation +399539,Consumer Issues,Consumer Issues +454075,Health,Health +395167,Industry,Industry +440254,International Trade,International Trade +371394,Agriculture,Agriculture +371392,Education,Education +371394,Employment and Training,Employment and Training +371392,Health,Health +371394,Industry,Industry +371394,International Trade,International Trade +371392,Pensions,Pensions +371392,Taxation and Finance,Taxation and Finance +371422,Infrastructure,Infrastructure +371423,Justice and Law Enforcement,Justice and Law Enforcement +371423,Security,Security +371425,Transportation,Transportation +385008,Intellectual Property,Intellectual Property +376011,Employment and Training,Employment and Training +370752,Industry,Industry +393525,Economic Development,Economic Development +393526,Employment and Training,Employment and Training +370752,Education,Education +370752,Tourism,Tourism +393526,Regional Development,Regional Development +389654,Employment and Training,Employment and Training +369258,Education,Education +369258,Employment and Training,Employment and Training +371412,Energy,Energy +371413,Environment,Environment +371412,Financial Institutions,Financial Institutions +371412,Forestry,Forestry +371412,Industry,Industry +371411,Infrastructure,Infrastructure +371413,International Trade,International Trade +371412,Mining,Mining +371412,Taxation and Finance,Taxation and Finance +371412,Transportation,Transportation +371416,Infrastructure,Infrastructure +371414,Justice and Law Enforcement,Justice and Law Enforcement +371529,Employment and Training,Employment and Training +371529,Labour,Labour +371307,Agriculture,Agriculture +371306,Environment,Environment +371304,Fisheries,Fisheries +371307,International Trade,International Trade +371304,Transportation,Transportation +371525,Employment and Training,Employment and Training +371527,Government Procurement,Government Procurement +371527,Infrastructure,Infrastructure +371525,Labour,Labour +371729,Transportation,Transportation +371407,Energy,Energy +371407,Environment,Environment +371407,Forestry,Forestry +371406,Government Procurement,Government Procurement +371407,Industry,Industry +371407,Infrastructure,Infrastructure +371407,International Trade,International Trade +371407,Mining,Mining +371405,Research and Development,Research and Development +371407,Taxation and Finance,Taxation and Finance +371532,Economic Development,Economic Development +371532,Employment and Training,Employment and Training +371532,Housing,Housing +371532,Justice and Law Enforcement,Justice and Law Enforcement +371531,Labour,Labour +371293,Education,Education +371293,Employment and Training,Employment and Training +371297,Energy,Energy +375193,Environment,Environment +371297,Financial Institutions,Financial Institutions +371297,Forestry,Forestry +371297,Government Procurement,Government Procurement +375193,Industry,Industry +375193,International Trade,International Trade +371297,Mining,Mining +375193,Pensions,Pensions +371297,Research and Development,Research and Development +371299,Taxation and Finance,Taxation and Finance +371297,Transportation,Transportation +371519,Employment and Training,Employment and Training +371519,Government Procurement,Government Procurement +371519,Labour,Labour +371519,Taxation and Finance,Taxation and Finance +371516,Transportation,Transportation +369897,International Trade,International Trade +372370,International Development,International Development +501890,Regional Development,Regional Development +449963,Education,Education +476182,Employment and Training,Employment and Training +456321,Infrastructure,Infrastructure +464530,Research and Development,Research and Development +369437,International Relations,International Relations +372370,Health,Health +369457,Budget,Budget +369445,Infrastructure,Infrastructure +439719,Economic Development,Economic Development +369474,Immigration,Immigration +369506,Infrastructure,Infrastructure +369513,Budget,Budget +457532,Economic Development,Economic Development +531877,International Trade,International Trade +448175,Transportation,Transportation +372978,Fisheries,Fisheries +385493,Budget,Budget +458682,Sports,Sports +369636,Education,Education +369636,International Relations,International Relations +383525,Climate,Climate +379593,Transportation,Transportation +369825,Environment,Environment +377191,Economic Development,Economic Development +377191,Industry,Industry +377191,International Trade,International Trade +377191,Taxation and Finance,Taxation and Finance +485158,Budget,Budget +418789,Agriculture,Agriculture +381192,Budget,Budget +544225,Consumer Issues,Consumer Issues +520147,Health,Health +429344,Industry,Industry +386983,Internal Trade,Internal Trade +433542,Taxation and Finance,Taxation and Finance +374434,Tourism,Tourism +374434,Infrastructure,Infrastructure +470301,Economic Development,Economic Development +460584,Agriculture,Agriculture +475168,Small Business,Small Business +370889,Employment and Training,Employment and Training +370821,Infrastructure,Infrastructure +370889,Justice and Law Enforcement,Justice and Law Enforcement +370821,Taxation and Finance,Taxation and Finance +377536,Agriculture,Agriculture +380359,Budget,Budget +376381,Economic Development,Economic Development +376381,Employment and Training,Employment and Training +377536,Environment,Environment +377536,Fisheries,Fisheries +377536,Industry,Industry +377536,International Trade,International Trade +387584,Labour,Labour +387584,Regional Development,Regional Development +377536,Research and Development,Research and Development +380359,Taxation and Finance,Taxation and Finance +370891,Agriculture,Agriculture +370891,Employment and Training,Employment and Training +370891,Industry,Industry +370891,International Trade,International Trade +370893,Justice and Law Enforcement,Justice and Law Enforcement +371199,Energy,Energy +371199,Environment,Environment +371199,Forestry,Forestry +371199,Industry,Industry +371199,Infrastructure,Infrastructure +371199,International Trade,International Trade +371199,Mining,Mining +371199,Taxation and Finance,Taxation and Finance +370347,Consumer Issues,Consumer Issues +377472,Economic Development,Economic Development +370347,Transportation,Transportation +411391,Budget,Budget +420955,Industry,Industry +411391,Research and Development,Research and Development +374575,Government Procurement,Government Procurement +374575,Health,Health +372797,Economic Development,Economic Development +372799,Environment,Environment +372797,Infrastructure,Infrastructure +372797,Municipalities,Municipalities +372799,Transportation,Transportation +370265,Consumer Issues,Consumer Issues +370258,Economic Development,Economic Development +370019,Transportation,Transportation +373306,Health,Health +382047,International Development,International Development +371412,Research and Development,Research and Development +384285,Economic Development,Economic Development +420750,Industry,Industry +384241,Transportation,Transportation +373638,Internal Trade,Commerce intérieur +373636,International Trade,Commerce international +376651,Economic Development,Développement économique +383805,Regional Development,Développement régional +377693,Employment and Training,Emploi et formation +376667,Environment,Environnement +390507,Forestry,Foresterie +385847,Taxation and Finance,Impôts et finances +377693,Industry,Industrie +376651,Research and Development,Recherche et développement +376651,Labour,Travail +371584,International Trade,International Trade +371584,Industry,Industry +371584,Transportation,Transportation +436945,International Trade,International Trade +369950,Taxation and Finance,Taxation and Finance +380673,Transportation,Transports +371261,Agriculture,Agriculture +371261,Employment and Training,Employment and Training +371261,Infrastructure,Infrastructure +371261,Economic Development,Economic Development +371269,Taxation and Finance,Taxation and Finance +371261,Industry,Industry +371261,Transportation,Transportation +371261,Regional Development,Regional Development +381751,Health,Health +512625,Taxation and Finance,Taxation and Finance +439948,Agriculture,Agriculture +383180,Budget,Budget +379420,Economic Development,Economic Development +376927,Employment and Training,Employment and Training +382024,Industry,Industry +379420,Infrastructure,Infrastructure +379420,Research and Development,Research and Development +490070,Infrastructure,Infrastructure +377652,Intellectual Property,Intellectual Property +387454,Intellectual Property,Intellectual Property +392989,Intellectual Property,Intellectual Property +387457,Intellectual Property,Intellectual Property +392990,Intellectual Property,Intellectual Property +377859,Financial Institutions,Financial Institutions +399423,Health,Health +377859,Infrastructure,Infrastructure +375343,Agriculture,Agriculture +399133,Industry,Industry +394548,International Trade,International Trade +391597,Intellectual Property,Intellectual Property +404420,Labour,Labour +370053,International Trade,International Trade +375475,Consumer Issues,Consumer Issues +394543,Industry,Industry +408866,International Trade,International Trade +370060,International Trade,International Trade +376441,Health,Health +370325,Consumer Issues,Consumer Issues +370325,Economic Development,Economic Development +370325,Transportation,Transportation +410703,Industry,Industry +371541,Health,Health +434131,Budget,Budget +389232,Defence,Defence +389232,Government Procurement,Government Procurement +377834,Industry,Industry +389235,Research and Development,Research and Development +380360,Agriculture,Agriculture +394643,Consumer Issues,Consumer Issues +394643,Defence,Defence +380360,Employment and Training,Employment and Training +394643,Fisheries,Fisheries +394643,Forestry,Forestry +394643,Government Procurement,Government Procurement +380360,Immigration,Immigration +394643,Industry,Industry +380360,Infrastructure,Infrastructure +394643,Internal Trade,Internal Trade +377535,International Relations,International Relations +380360,Labour,Labour +394643,Mining,Mining +394643,Regional Development,Regional Development +394643,Small Business,Small Business +394643,Taxation and Finance,Taxation and Finance +394643,Transportation,Transportation +472408,Tourism,Tourism +472408,Transportation,Transportation +370886,Infrastructure,Infrastructure +370885,Employment and Training,Employment and Training +370885,Education,Education +375474,Transportation,Transportation +370113,Research and Development,Research and Development +372800,Municipalities,Municipalities +372798,Infrastructure,Infrastructure +372798,Economic Development,Economic Development +372798,Transportation,Transportation +372800,Environment,Environment +375256,Consumer Issues,Consumer Issues +370127,International Trade,International Trade +370127,Economic Development,Economic Development +370128,Economic Development,Economic Development +370128,International Trade,International Trade +370130,Economic Development,Economic Development +370130,International Trade,International Trade +370131,Economic Development,Economic Development +370131,International Trade,International Trade +370132,Economic Development,Economic Development +370132,International Trade,International Trade +370133,Economic Development,Economic Development +370133,International Trade,International Trade +370134,Economic Development,Economic Development +370134,International Trade,International Trade +371973,Mining,Mining +376550,Taxation and Finance,Taxation and Finance +417463,Government Procurement,Government Procurement +408581,International Development,International Development +406146,International Trade,International Trade +462880,Infrastructure,Infrastructure +462879,Infrastructure,Infrastructure +461049,Infrastructure,Infrastructure +457538,Infrastructure,Infrastructure +457532,Infrastructure,Infrastructure +457530,Infrastructure,Infrastructure +456046,Infrastructure,Infrastructure +456044,Infrastructure,Infrastructure +456043,Infrastructure,Infrastructure +456042,Infrastructure,Infrastructure +456041,Infrastructure,Infrastructure +449754,Infrastructure,Infrastructure +449748,Infrastructure,Infrastructure +449745,Infrastructure,Infrastructure +449736,Infrastructure,Infrastructure +449735,Infrastructure,Infrastructure +449732,Infrastructure,Infrastructure +449730,Infrastructure,Infrastructure +449727,Infrastructure,Infrastructure +449724,Infrastructure,Infrastructure +449719,Infrastructure,Infrastructure +449717,Infrastructure,Infrastructure +449714,Infrastructure,Infrastructure +449711,Infrastructure,Infrastructure +449709,Infrastructure,Infrastructure +449707,Infrastructure,Infrastructure +449705,Infrastructure,Infrastructure +449704,Infrastructure,Infrastructure +449701,Infrastructure,Infrastructure +448179,Infrastructure,Infrastructure +448177,Infrastructure,Infrastructure +448175,Infrastructure,Infrastructure +448172,Infrastructure,Infrastructure +448171,Infrastructure,Infrastructure +448169,Infrastructure,Infrastructure +448168,Infrastructure,Infrastructure +448166,Infrastructure,Infrastructure +448155,Infrastructure,Infrastructure +442696,Infrastructure,Infrastructure +442695,Infrastructure,Infrastructure +442692,Infrastructure,Infrastructure +438507,Infrastructure,Infrastructure +438505,Infrastructure,Infrastructure +438503,Infrastructure,Infrastructure +438498,Infrastructure,Infrastructure +435336,Infrastructure,Infrastructure +429496,Infrastructure,Infrastructure +429495,Infrastructure,Infrastructure +429494,Infrastructure,Infrastructure +429492,Infrastructure,Infrastructure +424562,Infrastructure,Infrastructure +424561,Infrastructure,Infrastructure +421816,Infrastructure,Infrastructure +421811,Infrastructure,Infrastructure +421809,Infrastructure,Infrastructure +421808,Infrastructure,Infrastructure +421806,Infrastructure,Infrastructure +421803,Infrastructure,Infrastructure +421801,Infrastructure,Infrastructure +421798,Infrastructure,Infrastructure +421796,Infrastructure,Infrastructure +419480,Infrastructure,Infrastructure +411905,Infrastructure,Infrastructure +411904,Infrastructure,Infrastructure +411903,Infrastructure,Infrastructure +411901,Infrastructure,Infrastructure +411898,Infrastructure,Infrastructure +411897,Infrastructure,Infrastructure +411895,Infrastructure,Infrastructure +411894,Infrastructure,Infrastructure +407040,Infrastructure,Infrastructure +405264,Infrastructure,Infrastructure +401447,Infrastructure,Infrastructure +401446,Infrastructure,Infrastructure +401445,Infrastructure,Infrastructure +400262,Infrastructure,Infrastructure +400261,Infrastructure,Infrastructure +399140,Infrastructure,Infrastructure +396169,Infrastructure,Infrastructure +396167,Infrastructure,Infrastructure +396165,Infrastructure,Infrastructure +396162,Infrastructure,Infrastructure +392704,Infrastructure,Infrastructure +392703,Infrastructure,Infrastructure +390484,Infrastructure,Infrastructure +390483,Infrastructure,Infrastructure +390482,Infrastructure,Infrastructure +390481,Infrastructure,Infrastructure +390480,Infrastructure,Infrastructure +390479,Infrastructure,Infrastructure +390478,Infrastructure,Infrastructure +390477,Infrastructure,Infrastructure +390476,Infrastructure,Infrastructure +390475,Infrastructure,Infrastructure +390474,Infrastructure,Infrastructure +390473,Infrastructure,Infrastructure +387378,Infrastructure,Infrastructure +544157,Infrastructure,Infrastructure +544156,Infrastructure,Infrastructure +544154,Infrastructure,Infrastructure +544153,Infrastructure,Infrastructure +544151,Infrastructure,Infrastructure +544148,Infrastructure,Infrastructure +541977,Infrastructure,Infrastructure +537952,Infrastructure,Infrastructure +537950,Infrastructure,Infrastructure +537945,Infrastructure,Infrastructure +537944,Infrastructure,Infrastructure +535894,Infrastructure,Infrastructure +531879,Infrastructure,Infrastructure +531878,Infrastructure,Infrastructure +531877,Infrastructure,Infrastructure +531876,Infrastructure,Infrastructure +523271,Infrastructure,Infrastructure +519181,Infrastructure,Infrastructure +519180,Infrastructure,Infrastructure +519179,Infrastructure,Infrastructure +519178,Infrastructure,Infrastructure +519177,Infrastructure,Infrastructure +518350,Infrastructure,Infrastructure +514827,Infrastructure,Infrastructure +514826,Infrastructure,Infrastructure +514824,Infrastructure,Infrastructure +513219,Infrastructure,Infrastructure +511496,Infrastructure,Infrastructure +511489,Infrastructure,Infrastructure +502908,Infrastructure,Infrastructure +502907,Infrastructure,Infrastructure +499714,Infrastructure,Infrastructure +499707,Infrastructure,Infrastructure +499697,Infrastructure,Infrastructure +496140,Infrastructure,Infrastructure +496139,Infrastructure,Infrastructure +490071,Infrastructure,Infrastructure +370043,Intellectual Property,Intellectual Property +370044,Intellectual Property,Intellectual Property +380399,Intellectual Property,Intellectual Property +370045,Intellectual Property,Intellectual Property +373684,Intellectual Property,Intellectual Property +370046,Intellectual Property,Intellectual Property +392988,Intellectual Property,Intellectual Property +392986,Intellectual Property,Intellectual Property +392985,Intellectual Property,Intellectual Property +377860,Intellectual Property,Intellectual Property +377858,Intellectual Property,Intellectual Property +370047,Intellectual Property,Intellectual Property +444973,Intellectual Property,Intellectual Property +377857,Financial Institutions,Financial Institutions +377856,Financial Institutions,Financial Institutions +399430,Financial Institutions,Financial Institutions +399429,Financial Institutions,Financial Institutions +399428,Financial Institutions,Financial Institutions +399427,Financial Institutions,Financial Institutions +399426,Financial Institutions,Financial Institutions +399425,Financial Institutions,Financial Institutions +399424,Financial Institutions,Financial Institutions +399423,Financial Institutions,Financial Institutions +399422,Financial Institutions,Financial Institutions +399420,Financial Institutions,Financial Institutions +377877,Financial Institutions,Financial Institutions +377876,Financial Institutions,Financial Institutions +377875,Financial Institutions,Financial Institutions +377874,Financial Institutions,Financial Institutions +377873,Financial Institutions,Financial Institutions +377872,Financial Institutions,Financial Institutions +377871,Financial Institutions,Financial Institutions +377870,Financial Institutions,Financial Institutions +377869,Financial Institutions,Financial Institutions +377868,Financial Institutions,Financial Institutions +377867,Financial Institutions,Financial Institutions +377866,Financial Institutions,Financial Institutions +377865,Financial Institutions,Financial Institutions +377864,Financial Institutions,Financial Institutions +377863,Financial Institutions,Financial Institutions +377862,Financial Institutions,Financial Institutions +377861,Financial Institutions,Financial Institutions +399422,Health,Health +399420,Health,Health +377877,Health,Health +377876,Health,Health +377875,Health,Health +377874,Health,Health +377873,Health,Health +377872,Health,Health +377871,Health,Health +377870,Health,Health +377869,Health,Health +377868,Health,Health +377867,Health,Health +377866,Health,Health +377865,Health,Health +377864,Health,Health +377863,Health,Health +377862,Health,Health +377861,Health,Health +377859,Health,Health +377857,Health,Health +377856,Health,Health +399430,Health,Health +399429,Health,Health +399428,Health,Health +399427,Health,Health +399426,Health,Health +399425,Health,Health +399424,Health,Health +377857,Infrastructure,Infrastructure +377856,Infrastructure,Infrastructure +399430,Infrastructure,Infrastructure +399429,Infrastructure,Infrastructure +399428,Infrastructure,Infrastructure +399427,Infrastructure,Infrastructure +399426,Infrastructure,Infrastructure +399425,Infrastructure,Infrastructure +399424,Infrastructure,Infrastructure +399423,Infrastructure,Infrastructure +399422,Infrastructure,Infrastructure +399420,Infrastructure,Infrastructure +377877,Infrastructure,Infrastructure +377876,Infrastructure,Infrastructure +377875,Infrastructure,Infrastructure +377874,Infrastructure,Infrastructure +377873,Infrastructure,Infrastructure +377872,Infrastructure,Infrastructure +377871,Infrastructure,Infrastructure +377870,Infrastructure,Infrastructure +377869,Infrastructure,Infrastructure +377868,Infrastructure,Infrastructure +377867,Infrastructure,Infrastructure +377866,Infrastructure,Infrastructure +377865,Infrastructure,Infrastructure +377864,Infrastructure,Infrastructure +377863,Infrastructure,Infrastructure +377862,Infrastructure,Infrastructure +377861,Infrastructure,Infrastructure +402232,Agriculture,Agriculture +394549,Industry,Industry +394548,Industry,Industry +408785,Industry,Industry +408782,Industry,Industry +391594,Intellectual Property,Intellectual Property +426361,Consumer Issues,Consumer Issues +394542,Industry,Industry +394541,Industry,Industry +391596,Industry,Industry +388970,Industry,Industry +388969,Industry,Industry +388968,Industry,Industry +374104,Industry,Industry +370671,Industry,Industry +432168,Industry,Industry +432167,Industry,Industry +427897,Industry,Industry +426361,Industry,Industry +423411,Industry,Industry +423410,Industry,Industry +421384,Industry,Industry +421373,Industry,Industry +421372,Industry,Industry +420651,Industry,Industry +417964,Industry,Industry +417255,Industry,Industry +417254,Industry,Industry +416985,Industry,Industry +411335,Industry,Industry +411334,Industry,Industry +411333,Industry,Industry +411332,Industry,Industry +411331,Industry,Industry +411330,Industry,Industry +411329,Industry,Industry +410130,Industry,Industry +410127,Industry,Industry +408862,Industry,Industry +408854,Industry,Industry +408853,Industry,Industry +408799,Industry,Industry +401554,Industry,Industry +401060,Industry,Industry +401058,Industry,Industry +399138,Industry,Industry +394927,Industry,Industry +408865,International Trade,International Trade +408853,International Trade,International Trade +370670,International Trade,International Trade +370669,International Trade,International Trade +370668,International Trade,International Trade +394543,International Trade,International Trade +394542,International Trade,International Trade +394541,International Trade,International Trade +388971,International Trade,International Trade +388968,International Trade,International Trade +417964,International Trade,International Trade +376439,Health,Health +374552,Health,Health +409071,Industry,Industry +409070,Industry,Industry +401258,Industry,Industry +400337,Industry,Industry +400335,Industry,Industry +400329,Industry,Industry +393975,Industry,Industry +393971,Industry,Industry +393968,Industry,Industry +393966,Industry,Industry +393965,Industry,Industry +377332,Industry,Industry +377326,Industry,Industry +377321,Industry,Industry +377320,Industry,Industry +377318,Industry,Industry +450843,Industry,Industry +435378,Industry,Industry +391961,Budget,Budget +391960,Budget,Budget +391959,Budget,Budget +391958,Budget,Budget +389335,Budget,Budget +389240,Budget,Budget +389237,Budget,Budget +389235,Budget,Budget +389232,Budget,Budget +384616,Budget,Budget +384615,Budget,Budget +381587,Budget,Budget +377834,Budget,Budget +377526,Budget,Budget +373186,Budget,Budget +373185,Budget,Budget +372023,Budget,Budget +372021,Budget,Budget +372018,Budget,Budget +372015,Budget,Budget +372010,Budget,Budget +372007,Budget,Budget +372004,Budget,Budget +371991,Budget,Budget +371979,Budget,Budget +411347,Defence,Defence +453026,Government Procurement,Government Procurement +411347,Government Procurement,Government Procurement +377526,Government Procurement,Government Procurement +389335,Government Procurement,Government Procurement +377526,Industry,Industry +453026,Industry,Industry +373186,Industry,Industry +372023,Industry,Industry +372021,Industry,Industry +372018,Industry,Industry +372010,Industry,Industry +372007,Industry,Industry +372004,Industry,Industry +371991,Industry,Industry +411347,Industry,Industry +411346,Industry,Industry +407562,Industry,Industry +391961,Industry,Industry +391960,Industry,Industry +391959,Industry,Industry +391958,Industry,Industry +389335,Industry,Industry +389240,Industry,Industry +389237,Industry,Industry +389235,Industry,Industry +389232,Industry,Industry +384617,Industry,Industry +384616,Industry,Industry +384615,Industry,Industry +381587,Industry,Industry +381587,Research and Development,Research and Development +453026,Research and Development,Research and Development +377834,Research and Development,Research and Development +373186,Research and Development,Research and Development +373185,Research and Development,Research and Development +372023,Research and Development,Research and Development +372021,Research and Development,Research and Development +372018,Research and Development,Research and Development +372015,Research and Development,Research and Development +372010,Research and Development,Research and Development +372007,Research and Development,Research and Development +372004,Research and Development,Research and Development +371991,Research and Development,Research and Development +371979,Research and Development,Research and Development +411347,Research and Development,Research and Development +389335,Research and Development,Research and Development +389240,Research and Development,Research and Development +389237,Research and Development,Research and Development +377535,Agriculture,Agriculture +394643,Agriculture,Agriculture +380360,Consumer Issues,Consumer Issues +377535,Consumer Issues,Consumer Issues +380360,Defence,Defence +377535,Employment and Training,Employment and Training +394643,Employment and Training,Employment and Training +380360,Fisheries,Fisheries +377535,Fisheries,Fisheries +380360,Forestry,Forestry +380360,Government Procurement,Government Procurement +394643,Immigration,Immigration +380360,Industry,Industry +377535,Industry,Industry +377535,Infrastructure,Infrastructure +394643,Infrastructure,Infrastructure +380360,Internal Trade,Internal Trade +377535,Internal Trade,Internal Trade +394643,International Relations,International Relations +380360,International Relations,International Relations +394643,Labour,Labour +380360,Mining,Mining +377535,Mining,Mining +380360,Regional Development,Regional Development +377535,Regional Development,Regional Development +380360,Small Business,Small Business +377535,Small Business,Small Business +380360,Taxation and Finance,Taxation and Finance +377535,Taxation and Finance,Taxation and Finance +380360,Transportation,Transportation +377535,Transportation,Transportation +472407,Tourism,Tourism +472406,Tourism,Tourism +383326,Tourism,Tourism +378236,Tourism,Tourism +378201,Tourism,Tourism +378200,Tourism,Tourism +378199,Tourism,Tourism +378198,Tourism,Tourism +378197,Tourism,Tourism +378196,Tourism,Tourism +375720,Tourism,Tourism +375719,Tourism,Tourism +375718,Tourism,Tourism +375717,Tourism,Tourism +375716,Tourism,Tourism +375714,Tourism,Tourism +373184,Tourism,Tourism +373183,Tourism,Tourism +371526,Tourism,Tourism +371524,Tourism,Tourism +371523,Tourism,Tourism +371522,Tourism,Tourism +371521,Tourism,Tourism +371520,Tourism,Tourism +371517,Tourism,Tourism +371508,Tourism,Tourism +371503,Tourism,Tourism +371502,Tourism,Tourism +371493,Tourism,Tourism +371492,Tourism,Tourism +371488,Tourism,Tourism +370622,Tourism,Tourism +414696,Tourism,Tourism +414695,Tourism,Tourism +406404,Tourism,Tourism +406032,Tourism,Tourism +401443,Tourism,Tourism +401442,Tourism,Tourism +401441,Tourism,Tourism +397460,Tourism,Tourism +397459,Tourism,Tourism +397458,Tourism,Tourism +397457,Tourism,Tourism +393406,Tourism,Tourism +393405,Tourism,Tourism +393404,Tourism,Tourism +393401,Tourism,Tourism +393399,Tourism,Tourism +393397,Tourism,Tourism +389364,Tourism,Tourism +389362,Tourism,Tourism +389359,Tourism,Tourism +385012,Tourism,Tourism +385011,Tourism,Tourism +385010,Tourism,Tourism +385009,Tourism,Tourism +385007,Tourism,Tourism +539088,Tourism,Tourism +524195,Tourism,Tourism +524190,Tourism,Tourism +520915,Tourism,Tourism +519024,Tourism,Tourism +514556,Tourism,Tourism +503871,Tourism,Tourism +503869,Tourism,Tourism +501128,Tourism,Tourism +501127,Tourism,Tourism +501125,Tourism,Tourism +497752,Tourism,Tourism +490011,Tourism,Tourism +490008,Tourism,Tourism +490002,Tourism,Tourism +486988,Tourism,Tourism +483989,Tourism,Tourism +481330,Tourism,Tourism +479280,Tourism,Tourism +476526,Tourism,Tourism +476525,Tourism,Tourism +476524,Tourism,Tourism +474259,Tourism,Tourism +474258,Tourism,Tourism +474257,Tourism,Tourism +474256,Tourism,Tourism +474255,Tourism,Tourism +474254,Tourism,Tourism +474253,Tourism,Tourism +474252,Tourism,Tourism +472632,Tourism,Tourism +472409,Tourism,Tourism +472407,Transportation,Transportation +472406,Transportation,Transportation +371526,Transportation,Transportation +371524,Transportation,Transportation +371523,Transportation,Transportation +371522,Transportation,Transportation +371521,Transportation,Transportation +371520,Transportation,Transportation +371517,Transportation,Transportation +371508,Transportation,Transportation +371503,Transportation,Transportation +371502,Transportation,Transportation +371493,Transportation,Transportation +371492,Transportation,Transportation +371488,Transportation,Transportation +370622,Transportation,Transportation +414696,Transportation,Transportation +414695,Transportation,Transportation +406404,Transportation,Transportation +406032,Transportation,Transportation +401443,Transportation,Transportation +401442,Transportation,Transportation +401441,Transportation,Transportation +397460,Transportation,Transportation +397459,Transportation,Transportation +397458,Transportation,Transportation +397457,Transportation,Transportation +393406,Transportation,Transportation +393405,Transportation,Transportation +393404,Transportation,Transportation +393401,Transportation,Transportation +393399,Transportation,Transportation +393397,Transportation,Transportation +389364,Transportation,Transportation +389362,Transportation,Transportation +389359,Transportation,Transportation +385012,Transportation,Transportation +385011,Transportation,Transportation +385010,Transportation,Transportation +385009,Transportation,Transportation +385007,Transportation,Transportation +383326,Transportation,Transportation +378236,Transportation,Transportation +378201,Transportation,Transportation +378200,Transportation,Transportation +378199,Transportation,Transportation +378198,Transportation,Transportation +378197,Transportation,Transportation +378196,Transportation,Transportation +375720,Transportation,Transportation +375719,Transportation,Transportation +375718,Transportation,Transportation +375717,Transportation,Transportation +375716,Transportation,Transportation +375714,Transportation,Transportation +373184,Transportation,Transportation +373183,Transportation,Transportation +539088,Transportation,Transportation +524195,Transportation,Transportation +524190,Transportation,Transportation +520915,Transportation,Transportation +519024,Transportation,Transportation +514556,Transportation,Transportation +503871,Transportation,Transportation +503869,Transportation,Transportation +501128,Transportation,Transportation +501127,Transportation,Transportation +501125,Transportation,Transportation +497752,Transportation,Transportation +490011,Transportation,Transportation +490008,Transportation,Transportation +490002,Transportation,Transportation +486988,Transportation,Transportation +483989,Transportation,Transportation +481330,Transportation,Transportation +479280,Transportation,Transportation +476526,Transportation,Transportation +476525,Transportation,Transportation +476524,Transportation,Transportation +474259,Transportation,Transportation +474258,Transportation,Transportation +474257,Transportation,Transportation +474256,Transportation,Transportation +474255,Transportation,Transportation +474254,Transportation,Transportation +474253,Transportation,Transportation +474252,Transportation,Transportation +472632,Transportation,Transportation +472409,Transportation,Transportation +370885,Infrastructure,Infrastructure +378330,Infrastructure,Infrastructure +370888,Infrastructure,Infrastructure +370884,Employment and Training,Employment and Training +370882,Employment and Training,Employment and Training +378329,Employment and Training,Employment and Training +370886,Employment and Training,Employment and Training +370884,Education,Education +370882,Education,Education +370886,Education,Education +375302,Transportation,Transportation +374092,Transportation,Transportation +370111,Transportation,Transportation +372796,Municipalities,Municipalities +372793,Municipalities,Municipalities +372801,Municipalities,Municipalities +372796,Infrastructure,Infrastructure +372793,Infrastructure,Infrastructure +372801,Infrastructure,Infrastructure +372800,Infrastructure,Infrastructure +372796,Economic Development,Economic Development +372793,Economic Development,Economic Development +372801,Economic Development,Economic Development +372796,Transportation,Transportation +372793,Transportation,Transportation +372801,Transportation,Transportation +372800,Transportation,Transportation +372796,Environment,Environment +375254,Consumer Issues,Consumer Issues +375253,Consumer Issues,Consumer Issues +398511,Consumer Issues,Consumer Issues +378059,Consumer Issues,Consumer Issues +378058,Consumer Issues,Consumer Issues +376244,Consumer Issues,Consumer Issues +376242,Consumer Issues,Consumer Issues +375261,Consumer Issues,Consumer Issues +375259,Consumer Issues,Consumer Issues +375258,Consumer Issues,Consumer Issues +374369,Taxation and Finance,Taxation and Finance +374074,Taxation and Finance,Taxation and Finance +376551,Taxation and Finance,Taxation and Finance +406137,International Trade,International Trade +377560,Industry,Industry +377558,Industry,Industry +373023,Industry,Industry +373022,Industry,Industry +373020,Industry,Industry +373022,International Trade,International Trade +373020,International Trade,International Trade +377562,International Trade,International Trade +377560,International Trade,International Trade +377558,International Trade,International Trade +377560,Environment,Environment +377558,Environment,Environment +373023,Environment,Environment +373022,Environment,Environment +373020,Environment,Environment +373022,Transportation,Transportation +373020,Transportation,Transportation +377562,Transportation,Transportation +377560,Transportation,Transportation +377558,Transportation,Transportation +373022,Economic Development,Economic Development +373020,Economic Development,Economic Development +377562,Economic Development,Economic Development +377560,Economic Development,Economic Development +377558,Economic Development,Economic Development +373022,International Relations,International Relations +373020,International Relations,International Relations +377562,International Relations,International Relations +377560,International Relations,International Relations +377558,International Relations,International Relations +374886,Environment,Environment +374884,Environment,Environment +381808,Environment,Environment +381807,Environment,Environment +381807,Infrastructure,Infrastructure +381806,Infrastructure,Infrastructure +374886,Infrastructure,Infrastructure +374884,Infrastructure,Infrastructure +374886,Economic Development,Economic Development +374884,Economic Development,Economic Development +381808,Economic Development,Economic Development +381807,Economic Development,Economic Development +374886,Transportation,Transportation +374884,Transportation,Transportation +381808,Transportation,Transportation +381807,Transportation,Transportation +381806,Tourism,Tourism +374886,Tourism,Tourism +374884,Tourism,Tourism +381808,Tourism,Tourism +375700,Economic Development,Economic Development +375699,Economic Development,Economic Development +371361,Environment,Environment +371360,Environment,Environment +371365,Environment,Environment +371363,Environment,Environment +371361,Transportation,Transportation +371360,Transportation,Transportation +371365,Transportation,Transportation +371363,Transportation,Transportation +379494,Environment,Environment +379494,International Trade,International Trade +370187,Budget,Budget +370185,Budget,Budget +376868,Budget,Budget +376865,Budget,Budget +376864,Budget,Budget +376864,Consumer Issues,Consumer Issues +376861,Consumer Issues,Consumer Issues +370187,Consumer Issues,Consumer Issues +370185,Consumer Issues,Consumer Issues +390312,Consumer Issues,Consumer Issues +390307,Consumer Issues,Consumer Issues +390300,Consumer Issues,Consumer Issues +390292,Consumer Issues,Consumer Issues +390289,Consumer Issues,Consumer Issues +376868,Consumer Issues,Consumer Issues +370187,Economic Development,Economic Development +370185,Economic Development,Economic Development +390312,Economic Development,Economic Development +390307,Economic Development,Economic Development +390300,Economic Development,Economic Development +390292,Economic Development,Economic Development +390289,Economic Development,Economic Development +376868,Economic Development,Economic Development +376865,Economic Development,Economic Development +376864,Economic Development,Economic Development +370185,Industry,Industry +390312,Industry,Industry +390307,Industry,Industry +390300,Industry,Industry +390292,Industry,Industry +390289,Industry,Industry +370187,Regional Development,Regional Development +370185,Regional Development,Regional Development +376868,Regional Development,Regional Development +376865,Regional Development,Regional Development +376864,Regional Development,Regional Development +489103,Justice and Law Enforcement,Justice and Law Enforcement +440447,Justice and Law Enforcement,Justice and Law Enforcement +372345,International Trade,Commerce international +372343,International Trade,Commerce international +375049,International Trade,Commerce international +406294,Taxation and Finance,Taxation and Finance +399348,Taxation and Finance,Taxation and Finance +395312,Taxation and Finance,Taxation and Finance +394600,Taxation and Finance,Taxation and Finance +386773,Taxation and Finance,Taxation and Finance +386242,Taxation and Finance,Taxation and Finance +371179,Taxation and Finance,Taxation and Finance +376150,Health,Health +376149,Health,Health +380882,Health,Health +376524,Health,Health +376150,Justice and Law Enforcement,Justice and Law Enforcement +376149,Justice and Law Enforcement,Justice and Law Enforcement +376524,Justice and Law Enforcement,Justice and Law Enforcement +373173,Immigration,Immigration +387109,Taxation and Finance,Impôts et finances +387106,Taxation and Finance,Impôts et finances +383252,Taxation and Finance,Impôts et finances +382149,Taxation and Finance,Impôts et finances +378396,Taxation and Finance,Impôts et finances +375201,Taxation and Finance,Impôts et finances +373174,Taxation and Finance,Impôts et finances +373173,Taxation and Finance,Impôts et finances +404589,Taxation and Finance,Impôts et finances +397665,Taxation and Finance,Impôts et finances +393259,Taxation and Finance,Impôts et finances +392085,Taxation and Finance,Impôts et finances +389589,International Trade,International Trade +381708,International Trade,International Trade +541608,Environment,Environment +518737,Environment,Environment +377792,Environment,Environment +377791,Environment,Environment +463906,Environment,Environment +452748,Environment,Environment +427140,Environment,Environment +423469,Environment,Environment +423467,Environment,Environment +492139,Health,Health +492138,Health,Health +469061,Health,Health +469060,Health,Health +468993,Health,Health +468992,Health,Health +468991,Health,Health +468981,Health,Health +468980,Health,Health +468979,Health,Health +468978,Health,Health +468977,Health,Health +468947,Health,Health +468851,Health,Health +468850,Health,Health +468848,Health,Health +496663,Health,Health +492204,Health,Health +492203,Health,Health +492202,Health,Health +492201,Health,Health +492200,Health,Health +468945,Industry,Industry +468944,Industry,Industry +388657,Industry,Industry +388656,Industry,Industry +378789,Industry,Industry +377756,Industry,Industry +377753,Industry,Industry +377749,Industry,Industry +377747,Industry,Industry +377746,Industry,Industry +377745,Industry,Industry +377744,Industry,Industry +377743,Industry,Industry +432941,Industry,Industry +469061,Industry,Industry +469060,Industry,Industry +468993,Industry,Industry +468992,Industry,Industry +468991,Industry,Industry +468981,Industry,Industry +468980,Industry,Industry +468979,Industry,Industry +468978,Industry,Industry +468947,Small Business,Small Business +452747,Small Business,Small Business +410529,Small Business,Small Business +468993,Small Business,Small Business +468992,Small Business,Small Business +468991,Small Business,Small Business +468981,Small Business,Small Business +468980,Small Business,Small Business +468979,Small Business,Small Business +468978,Small Business,Small Business +377745,Taxation and Finance,Taxation and Finance +377744,Taxation and Finance,Taxation and Finance +377743,Taxation and Finance,Taxation and Finance +372526,Taxation and Finance,Taxation and Finance +469080,Taxation and Finance,Taxation and Finance +469079,Taxation and Finance,Taxation and Finance +444753,Taxation and Finance,Taxation and Finance +430374,Taxation and Finance,Taxation and Finance +398453,Taxation and Finance,Taxation and Finance +391454,Taxation and Finance,Taxation and Finance +378789,Taxation and Finance,Taxation and Finance +377756,Taxation and Finance,Taxation and Finance +377753,Taxation and Finance,Taxation and Finance +377749,Taxation and Finance,Taxation and Finance +377747,Taxation and Finance,Taxation and Finance +370491,Economic Development,Economic Development +444394,Economic Development,Economic Development +384348,Economic Development,Economic Development +374367,Economic Development,Economic Development +370686,Education,Education +370491,Education,Education +444394,Education,Education +384348,Employment and Training,Employment and Training +429056,Climate,Climate +429047,Climate,Climate +429089,Climate,Climate +429078,Climate,Climate +429076,Climate,Climate +387851,Energy,Energy +392458,Pensions,Pensions +376148,Pensions,Pensions +394480,Pensions,Pensions +473247,Taxation and Finance,Taxation and Finance +473087,Taxation and Finance,Taxation and Finance +382096,Economic Development,Economic Development +370513,Economic Development,Economic Development +389637,Economic Development,Economic Development +389636,Economic Development,Economic Development +382120,Economic Development,Economic Development +382104,Economic Development,Economic Development +382101,Economic Development,Economic Development +382099,Economic Development,Economic Development +536713,Security,Security +533525,Security,Security +394901,Security,Security +386454,Security,Security +384698,Security,Security +383318,Security,Security +382794,Security,Security +370515,Security,Security +383064,Infrastructure,Infrastructure +383063,Infrastructure,Infrastructure +372132,Infrastructure,Infrastructure +383064,Economic Development,Economic Development +383063,Economic Development,Economic Development +372132,Economic Development,Economic Development +372132,Transportation,Transportation +372128,Transportation,Transportation +383064,Transportation,Transportation +372189,Transportation,Transportation +372177,Transportation,Transportation +373045,Transportation,Transportation +373043,Transportation,Transportation +372189,Infrastructure,Infrastructure +372177,Infrastructure,Infrastructure +373045,Infrastructure,Infrastructure +373043,Infrastructure,Infrastructure +372189,Economic Development,Economic Development +372177,Economic Development,Economic Development +373045,Economic Development,Economic Development +373043,Economic Development,Economic Development +384622,Budget,Budget +375487,Budget,Budget +398114,Budget,Budget +393501,Budget,Budget +391201,Budget,Budget +391198,Budget,Budget +391196,Budget,Budget +391193,Budget,Budget +391189,Budget,Budget +391193,Climate,Climate +391189,Climate,Climate +378743,Climate,Climate +378742,Climate,Climate +378741,Climate,Climate +378738,Climate,Climate +391198,Climate,Climate +378741,Energy,Energy +378738,Energy,Energy +391201,Energy,Energy +391198,Energy,Energy +391196,Energy,Energy +391193,Energy,Energy +391189,Energy,Energy +378743,Energy,Energy +391193,Government Procurement,Government Procurement +391184,Government Procurement,Government Procurement +378743,Government Procurement,Government Procurement +378742,Government Procurement,Government Procurement +378741,Government Procurement,Government Procurement +378738,Government Procurement,Government Procurement +391201,Government Procurement,Government Procurement +378738,Infrastructure,Infrastructure +375487,Infrastructure,Infrastructure +398114,Infrastructure,Infrastructure +393501,Infrastructure,Infrastructure +391201,Infrastructure,Infrastructure +391198,Infrastructure,Infrastructure +391196,Infrastructure,Infrastructure +391193,Infrastructure,Infrastructure +391184,Infrastructure,Infrastructure +384622,Infrastructure,Infrastructure +378743,Infrastructure,Infrastructure +378742,Infrastructure,Infrastructure +393501,Research and Development,Research and Development +391201,Research and Development,Research and Development +391198,Research and Development,Research and Development +391196,Research and Development,Research and Development +391193,Research and Development,Research and Development +391189,Research and Development,Research and Development +391184,Research and Development,Research and Development +384622,Research and Development,Research and Development +378743,Research and Development,Research and Development +378742,Research and Development,Research and Development +378741,Research and Development,Research and Development +378738,Research and Development,Research and Development +375487,Research and Development,Research and Development +370563,Economic Development,Economic Development +370562,Economic Development,Economic Development +370574,Economic Development,Economic Development +370573,Economic Development,Economic Development +370572,Economic Development,Economic Development +370566,Infrastructure,Infrastructure +370561,Infrastructure,Infrastructure +370574,Infrastructure,Infrastructure +370573,Infrastructure,Infrastructure +370573,Regional Development,Regional Development +370572,Regional Development,Regional Development +370592,Economic Development,Economic Development +370590,Economic Development,Economic Development +370596,Economic Development,Economic Development +370595,Economic Development,Economic Development +370594,Economic Development,Economic Development +370592,Infrastructure,Infrastructure +370590,Infrastructure,Infrastructure +370596,Infrastructure,Infrastructure +370595,Infrastructure,Infrastructure +370594,Infrastructure,Infrastructure +370593,Mining,Mining +370590,Mining,Mining +370596,Mining,Mining +370595,Mining,Mining +370592,Regional Development,Regional Development +370590,Regional Development,Regional Development +370596,Regional Development,Regional Development +370595,Regional Development,Regional Development +370594,Regional Development,Regional Development +370593,Transportation,Transportation +370590,Transportation,Transportation +370596,Transportation,Transportation +370595,Transportation,Transportation +371060,International Trade,International Trade +371060,Taxation and Finance,Taxation and Finance +371063,Environment,Environment +371060,Environment,Environment +371157,Environment,Environment +371087,Environment,Environment +371072,Environment,Environment +404317,Economic Development,Economic Development +404304,Economic Development,Economic Development +382924,Economic Development,Economic Development +382242,Economic Development,Economic Development +375701,Economic Development,Economic Development +375691,Economic Development,Economic Development +371922,Economic Development,Economic Development +370627,Economic Development,Economic Development +419216,Economic Development,Economic Development +419213,Economic Development,Economic Development +417386,Economic Development,Economic Development +417382,Economic Development,Economic Development +414604,Economic Development,Economic Development +414603,Economic Development,Economic Development +414602,Economic Development,Economic Development +414601,Economic Development,Economic Development +414600,Economic Development,Economic Development +414599,Economic Development,Economic Development +414598,Economic Development,Economic Development +414597,Economic Development,Economic Development +414589,Economic Development,Economic Development +414587,Economic Development,Economic Development +370633,Budget,Budget +487941,Transportation,Transportation +377392,Taxation and Finance,Taxation and Finance +377391,Taxation and Finance,Taxation and Finance +414096,Taxation and Finance,Taxation and Finance +414095,Taxation and Finance,Taxation and Finance +414094,Taxation and Finance,Taxation and Finance +411153,Taxation and Finance,Taxation and Finance +400121,Taxation and Finance,Taxation and Finance +399984,Taxation and Finance,Taxation and Finance +399982,Taxation and Finance,Taxation and Finance +377508,Taxation and Finance,Taxation and Finance +386284,Health,Health +386283,Health,Health +386282,Health,Health +377508,Health,Health +377507,Health,Health +377392,Health,Health +377391,Health,Health +414096,Health,Health +414095,Health,Health +414094,Health,Health +411153,Health,Health +400121,Health,Health +399984,Health,Health +399982,Health,Health +390765,Health,Health +390763,Health,Health +390761,Health,Health +388781,Health,Health +386301,Health,Health +380964,Health,Health +380960,Health,Health +532374,Taxation and Finance,Taxation and Finance +502883,Taxation and Finance,Taxation and Finance +404369,Taxation and Finance,Taxation and Finance +403823,Taxation and Finance,Taxation and Finance +403173,Taxation and Finance,Taxation and Finance +403163,Taxation and Finance,Taxation and Finance +387814,Taxation and Finance,Taxation and Finance +377232,Taxation and Finance,Taxation and Finance +413309,Taxation and Finance,Taxation and Finance +535993,Taxation and Finance,Taxation and Finance +532383,Taxation and Finance,Taxation and Finance +532377,Taxation and Finance,Taxation and Finance +532376,Taxation and Finance,Taxation and Finance +502883,Agriculture,Agriculture +499719,Agriculture,Agriculture +377232,Agriculture,Agriculture +413321,Agriculture,Agriculture +413314,Agriculture,Agriculture +413309,Agriculture,Agriculture +404369,Agriculture,Agriculture +403823,Agriculture,Agriculture +403173,Agriculture,Agriculture +403163,Agriculture,Agriculture +387814,Agriculture,Agriculture +535993,Agriculture,Agriculture +532383,Agriculture,Agriculture +532377,Agriculture,Agriculture +532376,Agriculture,Agriculture +532375,Agriculture,Agriculture +532374,Agriculture,Agriculture +530206,Agriculture,Agriculture +532374,Regional Development,Regional Development +530206,Regional Development,Regional Development +413321,Regional Development,Regional Development +413314,Regional Development,Regional Development +413309,Regional Development,Regional Development +404369,Regional Development,Regional Development +403823,Regional Development,Regional Development +403173,Regional Development,Regional Development +403163,Regional Development,Regional Development +387814,Regional Development,Regional Development +377232,Regional Development,Regional Development +502885,Regional Development,Regional Development +502883,Regional Development,Regional Development +499719,Regional Development,Regional Development +535993,Regional Development,Regional Development +532383,Regional Development,Regional Development +532377,Regional Development,Regional Development +532376,Regional Development,Regional Development +403163,Tourism,Tourism +502885,Tourism,Tourism +387814,Tourism,Tourism +377232,Tourism,Tourism +499719,Tourism,Tourism +404369,Tourism,Tourism +403823,Tourism,Tourism +530206,Infrastructure,Infrastructure +499719,Infrastructure,Infrastructure +413321,Infrastructure,Infrastructure +413314,Infrastructure,Infrastructure +413309,Infrastructure,Infrastructure +404369,Infrastructure,Infrastructure +403823,Infrastructure,Infrastructure +403173,Infrastructure,Infrastructure +403163,Infrastructure,Infrastructure +377232,Infrastructure,Infrastructure +535993,Infrastructure,Infrastructure +532383,Infrastructure,Infrastructure +532377,Infrastructure,Infrastructure +532376,Infrastructure,Infrastructure +532375,Infrastructure,Infrastructure +413321,Employment and Training,Employment and Training +535993,Employment and Training,Employment and Training +413314,Employment and Training,Employment and Training +404369,Employment and Training,Employment and Training +403823,Employment and Training,Employment and Training +403173,Employment and Training,Employment and Training +394590,Environment,Environment +394589,Environment,Environment +394589,Industry,Industry +377574,Industry,Industry +430308,Industry,Industry +430307,Industry,Industry +423600,Industry,Industry +423599,Industry,Industry +423598,Industry,Industry +423597,Industry,Industry +423596,Industry,Industry +422460,Industry,Industry +422457,Industry,Industry +422456,Industry,Industry +422454,Industry,Industry +422452,Industry,Industry +422448,Industry,Industry +422437,Industry,Industry +422432,Industry,Industry +544326,Industry,Industry +544324,Industry,Industry +523137,Industry,Industry +435925,Industry,Industry +544326,Government Procurement,Government Procurement +544324,Government Procurement,Government Procurement +435925,Government Procurement,Government Procurement +430309,Government Procurement,Government Procurement +430308,Government Procurement,Government Procurement +430307,Government Procurement,Government Procurement +423600,Government Procurement,Government Procurement +423599,Government Procurement,Government Procurement +423598,Government Procurement,Government Procurement +423597,Government Procurement,Government Procurement +423596,Government Procurement,Government Procurement +422460,Government Procurement,Government Procurement +422457,Government Procurement,Government Procurement +422456,Government Procurement,Government Procurement +422454,Government Procurement,Government Procurement +422452,Government Procurement,Government Procurement +422448,Government Procurement,Government Procurement +422437,Government Procurement,Government Procurement +430308,Transportation,Transportation +430307,Transportation,Transportation +523137,Infrastructure,Infrastructure +435925,Infrastructure,Infrastructure +422448,Regional Development,Regional Development +544326,Regional Development,Regional Development +435925,Regional Development,Regional Development +430309,Regional Development,Regional Development +423600,Regional Development,Regional Development +423599,Regional Development,Regional Development +423598,Regional Development,Regional Development +423597,Regional Development,Regional Development +423596,Regional Development,Regional Development +422457,Regional Development,Regional Development +422456,Regional Development,Regional Development +422454,Regional Development,Regional Development +523137,Fisheries,Fisheries +544324,Employment and Training,Employment and Training +523137,Employment and Training,Employment and Training +422437,Defence,Defence +422432,Defence,Defence +423600,Defence,Defence +423599,Defence,Defence +423598,Defence,Defence +423597,Defence,Defence +423596,Defence,Defence +422460,Defence,Defence +422457,Defence,Defence +422456,Defence,Defence +422454,Defence,Defence +422452,Defence,Defence +370662,Environment,Environment +370663,Forestry,Forestry +370662,Forestry,Forestry +423412,Transportation,Transportation +388969,Transportation,Transportation +375475,Transportation,Transportation +374104,Transportation,Transportation +370667,Transportation,Transportation +399147,Constitutional Issues,Constitutional Issues +399146,Constitutional Issues,Constitutional Issues +388152,Constitutional Issues,Constitutional Issues +386384,Constitutional Issues,Constitutional Issues +386383,Constitutional Issues,Constitutional Issues +380236,Constitutional Issues,Constitutional Issues +425870,Health,Health +407274,Health,Health +388152,Health,Health +386381,Health,Health +386380,Health,Health +380236,Health,Health +380235,Health,Health +375266,Health,Health +375265,Health,Health +491947,Health,Health +459801,Health,Health +450385,Health,Health +439767,Health,Health +375267,Justice and Law Enforcement,Justice and Law Enforcement +491947,Justice and Law Enforcement,Justice and Law Enforcement +407274,Justice and Law Enforcement,Justice and Law Enforcement +399146,Justice and Law Enforcement,Justice and Law Enforcement +388152,Justice and Law Enforcement,Justice and Law Enforcement +386384,Justice and Law Enforcement,Justice and Law Enforcement +386380,Justice and Law Enforcement,Justice and Law Enforcement +375868,Health,Health +375863,Health,Health +370693,International Trade,International Trade +516307,International Trade,International Trade +370690,International Trade,International Trade +429497,International Trade,International Trade +422972,International Trade,International Trade +420523,International Trade,International Trade +420421,International Trade,International Trade +414023,International Trade,International Trade +407169,International Trade,International Trade +404214,International Trade,International Trade +404188,International Trade,International Trade +384184,International Trade,International Trade +381811,International Trade,International Trade +375498,International Trade,International Trade +375306,International Trade,International Trade +373362,International Trade,International Trade +371076,Financial Institutions,Financial Institutions +386877,International Trade,Commerce international +386877,Economic Development,Développement économique +386876,Economic Development,Développement économique +386877,Defence,Défense +386876,Defence,Défense +373456,Agriculture,Agriculture +373455,Agriculture,Agriculture +373454,Agriculture,Agriculture +373453,Agriculture,Agriculture +373452,Agriculture,Agriculture +373460,Agriculture,Agriculture +373459,Agriculture,Agriculture +373458,Agriculture,Agriculture +373453,Climate,Climate +373452,Climate,Climate +373460,Climate,Climate +373459,Climate,Climate +373458,Climate,Climate +373457,Climate,Climate +373456,Climate,Climate +373455,Climate,Climate +484584,Economic Development,Economic Development +483061,Economic Development,Economic Development +373460,Economic Development,Economic Development +373459,Economic Development,Economic Development +373458,Economic Development,Economic Development +373457,Economic Development,Economic Development +373456,Economic Development,Economic Development +373455,Economic Development,Economic Development +373454,Economic Development,Economic Development +373453,Economic Development,Economic Development +373453,Environment,Environment +373452,Environment,Environment +373460,Environment,Environment +373459,Environment,Environment +373458,Environment,Environment +373457,Environment,Environment +373456,Environment,Environment +373455,Environment,Environment +373452,Financial Institutions,Financial Institutions +483061,Financial Institutions,Financial Institutions +373460,Financial Institutions,Financial Institutions +373459,Financial Institutions,Financial Institutions +373458,Financial Institutions,Financial Institutions +373457,Financial Institutions,Financial Institutions +373456,Financial Institutions,Financial Institutions +373455,Financial Institutions,Financial Institutions +373454,Financial Institutions,Financial Institutions +373459,Government Procurement,Government Procurement +373458,Government Procurement,Government Procurement +373457,Government Procurement,Government Procurement +373456,Government Procurement,Government Procurement +373455,Government Procurement,Government Procurement +373454,Government Procurement,Government Procurement +373453,Government Procurement,Government Procurement +373452,Government Procurement,Government Procurement +484584,Industry,Industry +483061,Industry,Industry +373460,Industry,Industry +373459,Industry,Industry +373458,Industry,Industry +373457,Industry,Industry +373456,Industry,Industry +373455,Industry,Industry +373454,Industry,Industry +373453,Industry,Industry +373453,Infrastructure,Infrastructure +373452,Infrastructure,Infrastructure +373460,Infrastructure,Infrastructure +373459,Infrastructure,Infrastructure +373458,Infrastructure,Infrastructure +373457,Infrastructure,Infrastructure +373456,Infrastructure,Infrastructure +373455,Infrastructure,Infrastructure +373459,Regional Development,Regional Development +373458,Regional Development,Regional Development +373457,Regional Development,Regional Development +373456,Regional Development,Regional Development +373455,Regional Development,Regional Development +373454,Regional Development,Regional Development +373453,Regional Development,Regional Development +373452,Regional Development,Regional Development +483061,Regional Development,Regional Development +373457,Research and Development,Research and Development +484584,Research and Development,Research and Development +373456,Research and Development,Research and Development +373455,Research and Development,Research and Development +373454,Research and Development,Research and Development +373453,Research and Development,Research and Development +373452,Research and Development,Research and Development +373460,Research and Development,Research and Development +373459,Research and Development,Research and Development +373453,Small Business,Small Business +373452,Small Business,Small Business +373460,Small Business,Small Business +373459,Small Business,Small Business +373458,Small Business,Small Business +373457,Small Business,Small Business +373456,Small Business,Small Business +373455,Small Business,Small Business +373453,Taxation and Finance,Taxation and Finance +373452,Taxation and Finance,Taxation and Finance +373460,Taxation and Finance,Taxation and Finance +373459,Taxation and Finance,Taxation and Finance +373458,Taxation and Finance,Taxation and Finance +373457,Taxation and Finance,Taxation and Finance +373456,Taxation and Finance,Taxation and Finance +373455,Taxation and Finance,Taxation and Finance +373452,Transportation,Transportation +483061,Transportation,Transportation +373460,Transportation,Transportation +373459,Transportation,Transportation +373458,Transportation,Transportation +373457,Transportation,Transportation +373456,Transportation,Transportation +373455,Transportation,Transportation +373454,Transportation,Transportation +373464,Agriculture,Agriculture +373462,Agriculture,Agriculture +373464,Economic Development,Economic Development +373462,Economic Development,Economic Development +373464,Energy,Energy +373462,Energy,Energy +373464,Environment,Environment +373462,Environment,Environment +373464,Forestry,Forestry +373462,Forestry,Forestry +373464,Government Procurement,Government Procurement +373462,Government Procurement,Government Procurement +373464,Industry,Industry +373462,Industry,Industry +373464,Infrastructure,Infrastructure +373462,Infrastructure,Infrastructure +373464,International Trade,International Trade +373462,International Trade,International Trade +373464,Regional Development,Regional Development +373462,Regional Development,Regional Development +373464,Research and Development,Research and Development +373462,Research and Development,Research and Development +373464,Small Business,Small Business +373462,Small Business,Small Business +373464,Taxation and Finance,Taxation and Finance +373462,Taxation and Finance,Taxation and Finance +370765,Climate,Climate +370763,Climate,Climate +370765,Environment,Environment +370763,Environment,Environment +375531,Health,Health +381101,Climate,Climate +381095,Climate,Climate +378962,Climate,Climate +378959,Climate,Climate +378957,Climate,Climate +378954,Climate,Climate +378932,Climate,Climate +378928,Climate,Climate +378927,Climate,Climate +378926,Climate,Climate +420695,Climate,Climate +419380,Climate,Climate +390231,Climate,Climate +390229,Climate,Climate +390227,Climate,Climate +390222,Climate,Climate +388744,Climate,Climate +388743,Climate,Climate +522135,Environment,Environment +381277,Energy,Energy +381269,Energy,Energy +381282,Energy,Energy +381277,Environment,Environment +381269,Environment,Environment +381282,Environment,Environment +427667,Government Procurement,Government Procurement +427666,Government Procurement,Government Procurement +427665,Government Procurement,Government Procurement +427664,Government Procurement,Government Procurement +427663,Government Procurement,Government Procurement +427662,Government Procurement,Government Procurement +415212,Government Procurement,Government Procurement +415211,Government Procurement,Government Procurement +415210,Government Procurement,Government Procurement +415208,Government Procurement,Government Procurement +415207,Government Procurement,Government Procurement +415206,Government Procurement,Government Procurement +415205,Government Procurement,Government Procurement +415204,Government Procurement,Government Procurement +388449,Government Procurement,Government Procurement +388443,Government Procurement,Government Procurement +378336,Government Procurement,Government Procurement +378335,Government Procurement,Government Procurement +378334,Government Procurement,Government Procurement +378333,Government Procurement,Government Procurement +378332,Government Procurement,Government Procurement +378331,Government Procurement,Government Procurement +444696,Government Procurement,Government Procurement +444695,Government Procurement,Government Procurement +444694,Government Procurement,Government Procurement +444693,Government Procurement,Government Procurement +433002,Government Procurement,Government Procurement +433001,Government Procurement,Government Procurement +427669,Government Procurement,Government Procurement +415204,Defence,Defence +388441,Defence,Defence +378336,Defence,Defence +378335,Defence,Defence +378334,Defence,Defence +378333,Defence,Defence +378332,Defence,Defence +378331,Defence,Defence +375900,Defence,Defence +375899,Defence,Defence +375897,Defence,Defence +375896,Defence,Defence +375895,Defence,Defence +375894,Defence,Defence +375892,Defence,Defence +444696,Defence,Defence +444695,Defence,Defence +444694,Defence,Defence +444693,Defence,Defence +433002,Defence,Defence +433001,Defence,Defence +433000,Defence,Defence +432999,Defence,Defence +432998,Defence,Defence +432997,Defence,Defence +427669,Defence,Defence +427668,Defence,Defence +427667,Defence,Defence +427666,Defence,Defence +427665,Defence,Defence +427664,Defence,Defence +427663,Defence,Defence +427662,Defence,Defence +415212,Defence,Defence +415211,Defence,Defence +415210,Defence,Defence +415209,Defence,Defence +415208,Defence,Defence +415207,Defence,Defence +415206,Defence,Defence +444694,Regional Development,Regional Development +444693,Regional Development,Regional Development +388449,Regional Development,Regional Development +388440,Regional Development,Regional Development +388438,Regional Development,Regional Development +388434,Regional Development,Regional Development +433002,Regional Development,Regional Development +433001,Regional Development,Regional Development +433000,Regional Development,Regional Development +432999,Regional Development,Regional Development +432998,Regional Development,Regional Development +432997,Regional Development,Regional Development +427668,Regional Development,Regional Development +427667,Regional Development,Regional Development +427666,Regional Development,Regional Development +427665,Regional Development,Regional Development +427664,Regional Development,Regional Development +427663,Regional Development,Regional Development +415211,Regional Development,Regional Development +415210,Regional Development,Regional Development +415208,Regional Development,Regional Development +415207,Regional Development,Regional Development +415206,Regional Development,Regional Development +444696,Regional Development,Regional Development +375768,Budget,Budget +460748,Budget,Budget +456217,Budget,Budget +432741,Budget,Budget +408218,Budget,Budget +408213,Budget,Budget +395337,Budget,Budget +393236,Budget,Budget +392345,Budget,Budget +392344,Budget,Budget +389062,Budget,Budget +384013,Budget,Budget +383051,Budget,Budget +383039,Budget,Budget +382888,Budget,Budget +382813,Budget,Budget +382769,Budget,Budget +382768,Budget,Budget +382767,Budget,Budget +382766,Budget,Budget +382765,Budget,Budget +382764,Budget,Budget +382763,Budget,Budget +382762,Budget,Budget +382049,Budget,Budget +375772,Budget,Budget +375771,Budget,Budget +375770,Climate,Climate +375768,Climate,Climate +460748,Climate,Climate +456217,Climate,Climate +432741,Climate,Climate +408218,Climate,Climate +408213,Climate,Climate +395337,Climate,Climate +393236,Climate,Climate +392345,Climate,Climate +392344,Climate,Climate +389062,Climate,Climate +384013,Climate,Climate +383051,Climate,Climate +383039,Climate,Climate +382888,Climate,Climate +382813,Climate,Climate +382049,Climate,Climate +375772,Climate,Climate +460748,Economic Development,Economic Development +456217,Economic Development,Economic Development +432741,Economic Development,Economic Development +408218,Economic Development,Economic Development +408213,Economic Development,Economic Development +395337,Economic Development,Economic Development +393236,Economic Development,Economic Development +392345,Economic Development,Economic Development +392344,Economic Development,Economic Development +389062,Economic Development,Economic Development +384013,Economic Development,Economic Development +383051,Economic Development,Economic Development +383039,Economic Development,Economic Development +382888,Economic Development,Economic Development +382813,Economic Development,Economic Development +382769,Economic Development,Economic Development +382768,Economic Development,Economic Development +382764,Economic Development,Economic Development +382049,Economic Development,Economic Development +375772,Economic Development,Economic Development +375771,Economic Development,Economic Development +375770,Economic Development,Economic Development +375770,Employment and Training,Employment and Training +375768,Employment and Training,Employment and Training +460748,Employment and Training,Employment and Training +456217,Employment and Training,Employment and Training +432741,Employment and Training,Employment and Training +408218,Employment and Training,Employment and Training +408213,Employment and Training,Employment and Training +395337,Employment and Training,Employment and Training +393236,Employment and Training,Employment and Training +389062,Employment and Training,Employment and Training +384013,Employment and Training,Employment and Training +383051,Employment and Training,Employment and Training +383039,Employment and Training,Employment and Training +382888,Employment and Training,Employment and Training +382813,Employment and Training,Employment and Training +382049,Employment and Training,Employment and Training +375772,Employment and Training,Employment and Training +382049,Labour,Labour +460748,Labour,Labour +375772,Labour,Labour +375771,Labour,Labour +375770,Labour,Labour +375768,Labour,Labour +384013,Labour,Labour +383051,Labour,Labour +383039,Labour,Labour +382888,Labour,Labour +375768,Tourism,Tourism +460748,Tourism,Tourism +384013,Tourism,Tourism +383051,Tourism,Tourism +383039,Tourism,Tourism +382888,Tourism,Tourism +382813,Tourism,Tourism +382049,Tourism,Tourism +375772,Tourism,Tourism +375771,Tourism,Tourism +380083,Environment,Environment +380081,Environment,Environment +380096,Environment,Environment +380095,Environment,Environment +380087,Environment,Environment +380086,Environment,Environment +377837,Energy,Énergie +377836,Energy,Énergie +377997,Energy,Énergie +377840,Energy,Énergie +377837,Environment,Environnement +377836,Environment,Environnement +377997,Environment,Environnement +377840,Environment,Environnement +377837,Industry,Industrie +377836,Industry,Industrie +377997,Industry,Industrie +377840,Industry,Industrie +377837,Infrastructure,Infrastructure +377836,Infrastructure,Infrastructure +377997,Infrastructure,Infrastructure +377840,Infrastructure,Infrastructure +377836,Transportation,Transports +377997,Transportation,Transports +377840,Transportation,Transports +377838,Transportation,Transports +381892,Research and Development,Recherche et développement +371188,Research and Development,Recherche et développement +393983,Health,Health +387086,Health,Health +429807,Health,Health +405836,Health,Health +405835,Health,Health +401468,Health,Health +394004,Health,Health +385828,Agriculture,Agriculture +377158,Agriculture,Agriculture +385833,Agriculture,Agriculture +385832,Agriculture,Agriculture +385828,Mining,Mining +377158,Mining,Mining +385834,Mining,Mining +385833,Mining,Mining +385832,Mining,Mining +385828,International Trade,International Trade +377158,International Trade,International Trade +385833,International Trade,International Trade +385832,International Trade,International Trade +407141,Employment and Training,Employment and Training +378213,Economic Development,Développement économique +378212,Economic Development,Développement économique +378215,Economic Development,Développement économique +378213,Environment,Environnement +378212,Environment,Environnement +378215,Environment,Environnement +383105,Economic Development,Economic Development +378439,Economic Development,Economic Development +373951,International Trade,International Trade +387639,Economic Development,Economic Development +377669,Economic Development,Economic Development +374735,Economic Development,Economic Development +374733,Economic Development,Economic Development +374725,Economic Development,Economic Development +371452,Economic Development,Economic Development +371448,Economic Development,Economic Development +371443,Economic Development,Economic Development +371440,Economic Development,Economic Development +371435,Economic Development,Economic Development +371431,Economic Development,Economic Development +444256,Economic Development,Economic Development +443517,Economic Development,Economic Development +428735,Economic Development,Economic Development +428726,Economic Development,Economic Development +428683,Economic Development,Economic Development +415704,Economic Development,Economic Development +411215,Economic Development,Economic Development +411214,Economic Development,Economic Development +408339,Economic Development,Economic Development +407323,Economic Development,Economic Development +405909,Economic Development,Economic Development +388750,International Trade,International Trade +371545,International Trade,International Trade +391791,International Trade,International Trade +391789,International Trade,International Trade +391788,International Trade,International Trade +377379,Environment,Environment +377379,International Trade,International Trade +382899,Economic Development,Economic Development +372408,Economic Development,Economic Development +399569,Economic Development,Economic Development +399568,Economic Development,Economic Development +399568,Environment,Environment +399567,Environment,Environment +372408,Environment,Environment +399568,Industry,Industry +399567,Industry,Industry +399568,Infrastructure,Infrastructure +399567,Infrastructure,Infrastructure +382899,Infrastructure,Infrastructure +372408,Infrastructure,Infrastructure +399567,Internal Trade,Internal Trade +372408,Internal Trade,Internal Trade +399569,Internal Trade,Internal Trade +399567,Mining,Mining +382899,Mining,Mining +372408,Mining,Mining +399569,Mining,Mining +399567,Transportation,Transportation +382899,Transportation,Transportation +372408,Transportation,Transportation +399569,Transportation,Transportation +382514,Climate,Climate +377123,Energy,Energy +377122,Energy,Energy +436071,Energy,Energy +408205,Energy,Energy +402247,Energy,Energy +399118,Energy,Energy +394420,Energy,Energy +382525,Energy,Energy +382521,Energy,Energy +382520,Energy,Energy +382514,Energy,Energy +381644,Energy,Energy +381643,Energy,Energy +381642,Energy,Energy +379361,Energy,Energy +379342,Energy,Energy +379340,Energy,Energy +408205,Environment,Environment +402247,Environment,Environment +394420,Environment,Environment +382520,Environment,Environment +402247,Industry,Industry +394420,Industry,Industry +402247,Infrastructure,Infrastructure +399118,Infrastructure,Infrastructure +382525,Infrastructure,Infrastructure +382521,Infrastructure,Infrastructure +382520,Infrastructure,Infrastructure +382514,Infrastructure,Infrastructure +381644,Infrastructure,Infrastructure +381643,Infrastructure,Infrastructure +381642,Infrastructure,Infrastructure +379361,Infrastructure,Infrastructure +379342,Infrastructure,Infrastructure +379340,Infrastructure,Infrastructure +379332,Infrastructure,Infrastructure +379332,Transportation,Transportation +436071,Transportation,Transportation +408205,Transportation,Transportation +394420,Transportation,Transportation +379361,Transportation,Transportation +379342,Transportation,Transportation +371653,International Trade,International Trade +473236,Taxation and Finance,Taxation and Finance +473081,Taxation and Finance,Taxation and Finance +522999,Budget,Budget +478016,Budget,Budget +370719,Budget,Budget +523020,Budget,Budget +523016,Budget,Budget +523012,Budget,Budget +429066,Climate,Climate +429053,Climate,Climate +381267,Climate,Climate +370719,Climate,Climate +429094,Climate,Climate +429080,Climate,Climate +429075,Climate,Climate +459059,Regional Development,Regional Development +377562,Industry,Industry +373023,International Trade,International Trade +377562,Environment,Environment +373023,Transportation,Transportation +373023,Economic Development,Economic Development +373023,International Relations,International Relations +381806,Environment,Environment +381808,Infrastructure,Infrastructure +381806,Economic Development,Economic Development +381806,Transportation,Transportation +381807,Tourism,Tourism +375680,Transportation,Transportation +375680,Economic Development,Economic Development +375680,International Trade,International Trade +375450,Transportation,Transportation +375450,Industry,Industry +375450,Environment,Environment +375450,Fisheries,Fisheries +375702,Economic Development,Economic Development +370165,International Trade,International Trade +370165,International Relations,International Relations +371362,Environment,Environment +371362,Transportation,Transportation +379496,Environment,Environment +379496,International Trade,International Trade +370181,Economic Development,Economic Development +376861,Budget,Budget +376865,Consumer Issues,Consumer Issues +376861,Economic Development,Economic Development +370187,Industry,Industry +376861,Regional Development,Regional Development +371376,Infrastructure,Infrastructure +380164,Agriculture,Agriculture +380164,Health,Health +370216,Budget,Budget +370276,Justice and Law Enforcement,Justice and Law Enforcement +374102,Labour,Travail +374102,Employment and Training,Emploi et formation +374102,Immigration,Immigration +394900,Health,Health +371594,Transportation,Transportation +371594,Consumer Issues,Consumer Issues +375048,International Trade,Commerce international +372343,Economic Development,Développement économique +406988,Taxation and Finance,Taxation and Finance +372613,Economic Development,Développement économique +372613,Government Procurement,Marchés publics +376523,Health,Health +376523,Justice and Law Enforcement,Justice and Law Enforcement +370327,Taxation and Finance,Taxation and Finance +370328,Agriculture,Agriculture +370333,International Trade,International Trade +373174,Immigration,Immigration +392084,Taxation and Finance,Impôts et finances +396970,International Trade,International Trade +422924,Environment,Environment +492199,Health,Health +468947,Industry,Industry +468977,Small Business,Small Business +377746,Taxation and Finance,Taxation and Finance +404410,Transportation,Transportation +370686,Economic Development,Economic Development +384348,Education,Education +370491,Employment and Training,Employment and Training +429058,Climate,Climate +523121,Education,Education +478034,Energy,Energy +392460,Pensions,Pensions +479475,Taxation and Finance,Taxation and Finance +382098,Economic Development,Economic Development +536714,Security,Security +373014,Infrastructure,Infrastructure +372128,Infrastructure,Infrastructure +372128,Economic Development,Economic Development +383063,Transportation,Transportation +372193,Transportation,Transportation +372193,Infrastructure,Infrastructure +372193,Economic Development,Economic Development +370548,Environment,Environment +370548,Forestry,Forestry +382417,International Trade,International Trade +391184,Budget,Budget +391196,Climate,Climate +378742,Energy,Energy +391198,Government Procurement,Government Procurement +378741,Infrastructure,Infrastructure +398114,Research and Development,Research and Development +370566,Economic Development,Economic Development +370572,Infrastructure,Infrastructure +370574,Regional Development,Regional Development +370593,Economic Development,Economic Development +370593,Infrastructure,Infrastructure +370594,Mining,Mining +370593,Regional Development,Regional Development +370594,Transportation,Transportation +374452,Environment,Environment +374452,International Relations,International Relations +371063,International Trade,International Trade +371063,Taxation and Finance,Taxation and Finance +371068,Environment,Environment +370616,Infrastructure,Infrastructure +409277,Economic Development,Economic Development +370637,Budget,Budget +487941,Government Procurement,Government Procurement +502879,Transportation,Transportation +377507,Taxation and Finance,Taxation and Finance +386300,Health,Health +373706,Environment,Environment +370644,Budget,Budget +396693,Health,Health +372335,Budget,Budget +372335,Health,Health +372335,Taxation and Finance,Taxation and Finance +380968,Health,Health +532375,Taxation and Finance,Taxation and Finance +502885,Agriculture,Agriculture +532375,Regional Development,Regional Development +403173,Tourism,Tourism +532374,Infrastructure,Infrastructure +403163,Employment and Training,Employment and Training +377574,Energy,Energy +377574,Environment,Environment +394590,Industry,Industry +377574,Transportation,Transportation +430309,Industry,Industry +422432,Government Procurement,Government Procurement +544324,Labour,Labour +430309,Transportation,Transportation +544326,Infrastructure,Infrastructure +422452,Regional Development,Regional Development +422457,Fisheries,Fisheries +544326,Employment and Training,Employment and Training +422448,Defence,Defence +370663,Environment,Environment +375453,Forestry,Forestry +432168,Transportation,Transportation +373512,International Trade,International Trade +491947,Constitutional Issues,Constitutional Issues +425872,Health,Health +380235,Justice and Law Enforcement,Justice and Law Enforcement +381359,Economic Development,Développement économique +378642,Health,Health +371649,International Trade,International Trade +371083,Taxation and Finance,Taxation and Finance +371083,Pensions,Pensions +371083,Financial Institutions,Financial Institutions +371083,International Trade,International Trade +386878,International Trade,Commerce international +386878,Economic Development,Développement économique +386878,Defence,Défense +373457,Agriculture,Agriculture +373454,Climate,Climate +373452,Economic Development,Economic Development +373454,Environment,Environment +373453,Financial Institutions,Financial Institutions +373460,Government Procurement,Government Procurement +373452,Industry,Industry +373454,Infrastructure,Infrastructure +373460,Regional Development,Regional Development +373458,Research and Development,Research and Development +373454,Small Business,Small Business +373454,Taxation and Finance,Taxation and Finance +373453,Transportation,Transportation +376314,International Trade,International Trade +376314,Industry,Industry +373465,Agriculture,Agriculture +373465,Economic Development,Economic Development +373465,Energy,Energy +373465,Environment,Environment +373465,Forestry,Forestry +373465,Government Procurement,Government Procurement +373465,Industry,Industry +373465,Infrastructure,Infrastructure +373465,International Trade,International Trade +373465,Regional Development,Regional Development +373465,Research and Development,Research and Development +373465,Small Business,Small Business +373465,Taxation and Finance,Taxation and Finance +370768,Climate,Climate +370768,Environment,Environment +375531,Agriculture,Agriculture +375530,Health,Health +394786,Economic Development,Développement économique +383696,Climate,Climate +420695,Economic Development,Economic Development +390376,Research and Development,Research and Development +386244,Climate,Climate +386244,Environment,Environment +381279,Energy,Energy +381279,Environment,Environment +381269,Industry,Industry +427668,Government Procurement,Government Procurement +415205,Defence,Defence +444695,Regional Development,Regional Development +375770,Budget,Budget +375771,Climate,Climate +375768,Economic Development,Economic Development +375771,Employment and Training,Employment and Training +382813,Labour,Labour +375770,Tourism,Tourism +380085,Environment,Environment +370926,Industry,Industry +370927,Industry,Industry +370928,Industry,Industry +370929,Industry,Industry +370991,Employment and Training,Employment and Training +377838,Energy,Énergie +377838,Environment,Environnement +377838,Industry,Industrie +377838,Infrastructure,Infrastructure +377837,Transportation,Transports +407451,Research and Development,Recherche et développement +393989,Health,Health +385831,Agriculture,Agriculture +385831,Mining,Mining +385831,International Trade,International Trade +371307,Employment and Training,Employment and Training +378214,Economic Development,Développement économique +378214,Environment,Environnement +384947,Economic Development,Economic Development +378439,Health,Health +378439,Industry,Industry +378439,International Trade,International Trade +389995,Health,Health +371412,Government Procurement,Government Procurement +372074,Agriculture,Agriculture +372074,Employment and Training,Employment and Training +372074,Infrastructure,Infrastructure +372074,Regional Development,Regional Development +372074,Taxation and Finance,Taxation and Finance +372074,Tourism,Tourism +371416,Government Procurement,Government Procurement +371422,Government Procurement,Government Procurement +401385,Economic Development,Economic Development +371759,Infrastructure,Infrastructure +371482,Consumer Issues,Consumer Issues +371504,Consumer Issues,Consumer Issues +371518,Infrastructure,Infrastructure +374129,Pensions,Pensions +391790,International Trade,International Trade +388751,International Trade,International Trade +371553,International Trade,International Trade +371557,International Trade,International Trade +379419,Environment,Environment +379419,International Trade,International Trade +372221,Health,Health +399567,Economic Development,Economic Development +399569,Environment,Environment +399569,Industry,Industry +399569,Infrastructure,Infrastructure +399568,Internal Trade,Internal Trade +399568,Mining,Mining +399568,Transportation,Transportation +382520,Climate,Climate +379332,Energy,Energy +382514,Environment,Environment +408205,Industry,Industry +408205,Infrastructure,Infrastructure +379340,Transportation,Transportation +379817,Economic Development,Economic Development +376187,Regional Development,Regional Development +376141,International Trade,International Trade +370719,Taxation and Finance,Taxation and Finance +523010,Budget,Budget +429070,Climate,Climate +370719,Government Procurement,Government Procurement +475012,Regional Development,Regional Development +379203,Health,Health +371921,International Trade,International Trade +379179,Security,Security +376818,International Trade,International Trade +371941,Budget,Budget +371961,Employment and Training,Employment and Training +371961,Immigration,Immigration +371961,Education,Education +372010,Economic Development,Economic Development +372011,Education,Education +372011,Employment and Training,Employment and Training +372011,Immigration,Immigration +372020,Immigration,Immigration +372020,Employment and Training,Employment and Training +372020,Education,Education +523025,Budget,Budget +429069,Climate,Climate +372027,Government Procurement,Government Procurement +374754,Infrastructure,Infrastructure +473162,Taxation and Finance,Taxation and Finance +370719,Infrastructure,Infrastructure +473155,Taxation and Finance,Taxation and Finance +372032,Infrastructure,Infrastructure +372032,Budget,Budget +372035,Financial Institutions,Financial Institutions +372035,Research and Development,Research and Development +473096,Taxation and Finance,Taxation and Finance +372035,Government Procurement,Government Procurement +372035,Forestry,Forestry +372035,Energy,Energy +377676,Justice and Law Enforcement,Justice and Law Enforcement +377368,Health,Health +372048,Infrastructure,Infrastructure +372048,Government Procurement,Government Procurement +372047,Immigration,Immigration +372047,Employment and Training,Employment and Training +372047,Education,Education +372053,Education,Education +372053,Employment and Training,Employment and Training +372053,Immigration,Immigration +372057,Housing,Housing +447307,Economic Development,Economic Development +372062,Security,Security +372067,Taxation and Finance,Taxation and Finance +372075,Education,Education +372075,Employment and Training,Employment and Training +372075,Immigration,Immigration +372091,Economic Development,Economic Development +372101,Taxation and Finance,Taxation and Finance +523005,Budget,Budget +412881,Pensions,Pensions +374054,Regional Development,Développement régional +374054,Research and Development,Recherche et développement +373051,Justice and Law Enforcement,Justice and Law Enforcement +373051,Health,Health +373050,Justice and Law Enforcement,Justice and Law Enforcement +373050,Health,Health +415843,Health,Health +409232,Health,Health +426473,Taxation and Finance,Taxation and Finance +536193,Environment,Environment +473492,Climate,Climate +439788,Economic Development,Economic Development +412929,International Trade,International Trade +422538,Agriculture,Agriculture +412925,Energy,Energy +391669,Research and Development,Research and Development +376189,Infrastructure,Infrastructure +541658,Economic Development,Economic Development +518265,Research and Development,Research and Development +372227,Economic Development,Economic Development +467024,Climate,Climate +442182,Climate,Climate +372335,Small Business,Small Business +376448,Sports,Sports +459046,Regional Development,Regional Development +371843,Regional Development,Regional Development +492027,Regional Development,Regional Development +488646,Regional Development,Regional Development +485460,Regional Development,Regional Development +485458,Regional Development,Regional Development +371905,International Trade,International Trade +379162,Security,Security +371911,Security,Security +379183,Security,Security +371941,International Trade,International Trade +371929,International Trade,International Trade +371929,Budget,Budget +372007,Economic Development,Economic Development +372004,Economic Development,Economic Development +453026,Economic Development,Economic Development +434131,Economic Development,Economic Development +411347,Economic Development,Economic Development +407562,Economic Development,Economic Development +391961,Economic Development,Economic Development +391960,Economic Development,Economic Development +391959,Economic Development,Economic Development +391958,Economic Development,Economic Development +389335,Economic Development,Economic Development +389240,Economic Development,Economic Development +389237,Economic Development,Economic Development +389235,Economic Development,Economic Development +389232,Economic Development,Economic Development +384617,Economic Development,Economic Development +384616,Economic Development,Economic Development +384615,Economic Development,Economic Development +382626,Economic Development,Economic Development +381587,Economic Development,Economic Development +377834,Economic Development,Economic Development +377526,Economic Development,Economic Development +373186,Economic Development,Economic Development +373185,Economic Development,Economic Development +372023,Economic Development,Economic Development +372021,Economic Development,Economic Development +372015,Economic Development,Economic Development +523024,Budget,Budget +522995,Budget,Budget +396747,Budget,Budget +372027,Budget,Budget +523035,Budget,Budget +429065,Climate,Climate +429062,Climate,Climate +372027,Climate,Climate +429084,Climate,Climate +372027,Infrastructure,Infrastructure +473090,Taxation and Finance,Taxation and Finance +473084,Taxation and Finance,Taxation and Finance +372027,Taxation and Finance,Taxation and Finance +476089,Taxation and Finance,Taxation and Finance +476088,Taxation and Finance,Taxation and Finance +473091,Taxation and Finance,Taxation and Finance +473089,Taxation and Finance,Taxation and Finance +372032,Taxation and Finance,Taxation and Finance +473269,Taxation and Finance,Taxation and Finance +473197,Taxation and Finance,Taxation and Finance +473178,Taxation and Finance,Taxation and Finance +473160,Taxation and Finance,Taxation and Finance +473158,Taxation and Finance,Taxation and Finance +480447,Infrastructure,Infrastructure +478020,Budget,Budget +473088,Taxation and Finance,Taxation and Finance +372035,Taxation and Finance,Taxation and Finance +476087,Taxation and Finance,Taxation and Finance +473257,Taxation and Finance,Taxation and Finance +471125,Forestry,Forestry +471124,Forestry,Forestry +442003,Forestry,Forestry +478055,Energy,Energy +377368,Justice and Law Enforcement,Justice and Law Enforcement +374154,Justice and Law Enforcement,Justice and Law Enforcement +379356,Justice and Law Enforcement,Justice and Law Enforcement +377677,Justice and Law Enforcement,Justice and Law Enforcement +374154,Health,Health +447302,Economic Development,Economic Development +445528,Economic Development,Economic Development +372057,Economic Development,Economic Development +485308,Economic Development,Economic Development +485306,Economic Development,Economic Development +485305,Economic Development,Economic Development +480447,Economic Development,Economic Development +478175,Economic Development,Economic Development +471133,Economic Development,Economic Development +471130,Economic Development,Economic Development +471128,Economic Development,Economic Development +471127,Economic Development,Economic Development +471125,Economic Development,Economic Development +471124,Economic Development,Economic Development +471118,Economic Development,Economic Development +471117,Economic Development,Economic Development +471116,Economic Development,Economic Development +471114,Economic Development,Economic Development +471112,Economic Development,Economic Development +471111,Economic Development,Economic Development +471110,Economic Development,Economic Development +471108,Economic Development,Economic Development +471105,Economic Development,Economic Development +471103,Economic Development,Economic Development +471101,Economic Development,Economic Development +471075,Economic Development,Economic Development +471062,Economic Development,Economic Development +459862,Economic Development,Economic Development +447317,Economic Development,Economic Development +447316,Economic Development,Economic Development +447314,Economic Development,Economic Development +447311,Economic Development,Economic Development +447310,Economic Development,Economic Development +447309,Economic Development,Economic Development +447308,Economic Development,Economic Development +473183,Taxation and Finance,Taxation and Finance +476091,Taxation and Finance,Taxation and Finance +473099,Taxation and Finance,Taxation and Finance +523001,Budget,Budget +522997,Budget,Budget +372101,Budget,Budget +523034,Budget,Budget +523033,Budget,Budget +523029,Budget,Budget +394483,Pensions,Pensions +394479,Pensions,Pensions +372101,Pensions,Pensions +373640,Regional Development,Développement régional +373639,Regional Development,Développement régional +373639,Research and Development,Recherche et développement +415823,Health,Health +407132,Health,Health +372209,Health,Health +424794,Health,Health +407133,Health,Health +400247,Health,Health +372213,Health,Health +422948,Health,Health +415900,Health,Health +415810,Health,Health +412164,Health,Health +412144,Health,Health +409234,Health,Health +471173,Taxation and Finance,Taxation and Finance +536179,Environment,Environment +532261,Environment,Environment +439938,Environment,Environment +439937,Environment,Environment +433905,Environment,Environment +429269,Environment,Environment +429260,Environment,Environment +429235,Environment,Environment +426477,Environment,Environment +426473,Environment,Environment +426470,Environment,Environment +422540,Environment,Environment +422538,Environment,Environment +416565,Environment,Environment +416562,Environment,Environment +413174,Environment,Environment +412929,Environment,Environment +412925,Environment,Environment +412922,Environment,Environment +412920,Environment,Environment +406624,Environment,Environment +406623,Environment,Environment +403211,Environment,Environment +399080,Environment,Environment +391669,Environment,Environment +376189,Environment,Environment +510746,Environment,Environment +503020,Environment,Environment +499693,Environment,Environment +499687,Environment,Environment +499684,Environment,Environment +493783,Environment,Environment +487685,Environment,Environment +482634,Environment,Environment +482633,Environment,Environment +473497,Environment,Environment +473495,Environment,Environment +473492,Environment,Environment +471173,Environment,Environment +468212,Environment,Environment +459005,Environment,Environment +450421,Environment,Environment +443216,Environment,Environment +443215,Environment,Environment +440973,Environment,Environment +440239,Environment,Environment +439941,Environment,Environment +439940,Environment,Environment +439939,Environment,Environment +538544,Environment,Environment +473491,Climate,Climate +471180,Climate,Climate +376189,Climate,Climate +459005,Climate,Climate +450421,Climate,Climate +443216,Climate,Climate +443215,Climate,Climate +440973,Climate,Climate +440239,Climate,Climate +439941,Climate,Climate +439940,Climate,Climate +439939,Climate,Climate +439938,Climate,Climate +439937,Climate,Climate +433905,Climate,Climate +429269,Climate,Climate +429260,Climate,Climate +429235,Climate,Climate +426477,Climate,Climate +426473,Climate,Climate +426470,Climate,Climate +422542,Climate,Climate +422540,Climate,Climate +422538,Climate,Climate +406624,Climate,Climate +544446,Climate,Climate +538548,Climate,Climate +536167,Climate,Climate +532246,Climate,Climate +529489,Climate,Climate +529454,Climate,Climate +524752,Climate,Climate +524737,Climate,Climate +524733,Climate,Climate +522979,Climate,Climate +522973,Climate,Climate +520121,Climate,Climate +518468,Climate,Climate +518464,Climate,Climate +513546,Climate,Climate +513539,Climate,Climate +510750,Climate,Climate +510745,Climate,Climate +510738,Climate,Climate +510731,Climate,Climate +510724,Climate,Climate +510697,Climate,Climate +505427,Climate,Climate +505426,Climate,Climate +503021,Climate,Climate +499693,Climate,Climate +499687,Climate,Climate +499684,Climate,Climate +496181,Climate,Climate +491801,Climate,Climate +485336,Climate,Climate +485318,Climate,Climate +482637,Climate,Climate +482636,Climate,Climate +482635,Climate,Climate +482634,Climate,Climate +473497,Climate,Climate +473495,Climate,Climate +416565,Economic Development,Economic Development +416562,Economic Development,Economic Development +499693,Economic Development,Economic Development +499687,Economic Development,Economic Development +499684,Economic Development,Economic Development +473497,Economic Development,Economic Development +473495,Economic Development,Economic Development +473492,Economic Development,Economic Development +473491,Economic Development,Economic Development +471180,Economic Development,Economic Development +399080,International Trade,International Trade +391664,International Trade,International Trade +450420,International Trade,International Trade +406623,Agriculture,Agriculture +536179,Agriculture,Agriculture +510697,Agriculture,Agriculture +491801,Agriculture,Agriculture +487685,Agriculture,Agriculture +485336,Agriculture,Agriculture +473491,Agriculture,Agriculture +422542,Agriculture,Agriculture +422540,Agriculture,Agriculture +412922,Energy,Energy +412920,Energy,Energy +406624,Energy,Energy +406623,Energy,Energy +403211,Energy,Energy +376189,Energy,Energy +538548,Energy,Energy +538544,Energy,Energy +536193,Energy,Energy +536167,Energy,Energy +532261,Energy,Energy +532246,Energy,Energy +529489,Energy,Energy +529454,Energy,Energy +524752,Energy,Energy +524737,Energy,Energy +524733,Energy,Energy +522979,Energy,Energy +522973,Energy,Energy +520121,Energy,Energy +518468,Energy,Energy +518464,Energy,Energy +513546,Energy,Energy +513539,Energy,Energy +510750,Energy,Energy +510746,Energy,Energy +510745,Energy,Energy +510738,Energy,Energy +510731,Energy,Energy +510724,Energy,Energy +503020,Energy,Energy +487685,Energy,Energy +482637,Energy,Energy +482636,Energy,Energy +482634,Energy,Energy +482633,Energy,Energy +468212,Energy,Energy +443215,Energy,Energy +440973,Energy,Energy +440239,Energy,Energy +439941,Energy,Energy +439940,Energy,Energy +439938,Energy,Energy +439937,Energy,Energy +433905,Energy,Energy +426477,Energy,Energy +426470,Energy,Energy +422542,Energy,Energy +422540,Energy,Energy +422538,Energy,Energy +413174,Energy,Energy +412929,Energy,Energy +539604,Economic Development,Economic Development +537209,Economic Development,Economic Development +518267,Economic Development,Economic Development +518254,Economic Development,Economic Development +502215,Economic Development,Economic Development +487626,Economic Development,Economic Development +485143,Economic Development,Economic Development +485132,Economic Development,Economic Development +485126,Economic Development,Economic Development +485105,Economic Development,Economic Development +485097,Economic Development,Economic Development +485094,Economic Development,Economic Development +544711,Economic Development,Economic Development +543580,Economic Development,Economic Development +518257,Research and Development,Research and Development +518254,Research and Development,Research and Development +496079,Research and Development,Research and Development +487641,Research and Development,Research and Development +487637,Research and Development,Research and Development +487634,Research and Development,Research and Development +487630,Research and Development,Research and Development +485182,Research and Development,Research and Development +485143,Research and Development,Research and Development +485132,Research and Development,Research and Development +485126,Research and Development,Research and Development +485120,Research and Development,Research and Development +485117,Research and Development,Research and Development +485107,Research and Development,Research and Development +485097,Research and Development,Research and Development +485094,Research and Development,Research and Development +485093,Research and Development,Research and Development +485088,Research and Development,Research and Development +482381,Research and Development,Research and Development +477767,Research and Development,Research and Development +462970,Research and Development,Research and Development +461427,Research and Development,Research and Development +460796,Research and Development,Research and Development +460795,Research and Development,Research and Development +458755,Research and Development,Research and Development +458754,Research and Development,Research and Development +458753,Research and Development,Research and Development +457517,Research and Development,Research and Development +457514,Research and Development,Research and Development +457509,Research and Development,Research and Development +455733,Research and Development,Research and Development +455729,Research and Development,Research and Development +455722,Research and Development,Research and Development +455721,Research and Development,Research and Development +455720,Research and Development,Research and Development +455717,Research and Development,Research and Development +453033,Research and Development,Research and Development +453032,Research and Development,Research and Development +453031,Research and Development,Research and Development +450284,Research and Development,Research and Development +432751,Research and Development,Research and Development +432405,Research and Development,Research and Development +419424,Research and Development,Research and Development +407661,Research and Development,Research and Development +406441,Research and Development,Research and Development +406440,Research and Development,Research and Development +404651,Research and Development,Research and Development +404650,Research and Development,Research and Development +404649,Research and Development,Research and Development +404648,Research and Development,Research and Development +404647,Research and Development,Research and Development +404646,Research and Development,Research and Development +404645,Research and Development,Research and Development +518267,Research and Development,Research and Development +372225,Economic Development,Economic Development +372223,Economic Development,Economic Development +379418,Economic Development,Economic Development +372237,Economic Development,Economic Development +372232,Economic Development,Economic Development +372231,Economic Development,Economic Development +372229,Economic Development,Economic Development +463993,Climate,Climate +442217,Climate,Climate +426091,Climate,Climate +420120,Climate,Climate +400982,Climate,Climate +398959,Climate,Climate +394458,Climate,Climate +387927,Climate,Climate +381583,Climate,Climate +372319,Climate,Climate +522919,Climate,Climate +490311,Climate,Climate +543158,Climate,Climate +531587,Climate,Climate +426083,Climate,Climate +422284,Climate,Climate +420113,Climate,Climate +394451,Climate,Climate +392837,Climate,Climate +372321,Climate,Climate +376443,Sports,Sports +372338,Sports,Sports +378852,Sports,Sports +378851,Sports,Sports +378850,Sports,Sports +376451,Sports,Sports +376450,Sports,Sports +493969,Economic Development,Développement économique +493874,Economic Development,Développement économique +378097,Economic Development,Développement économique +378056,Economic Development,Développement économique +378033,Economic Development,Développement économique +378004,Economic Development,Développement économique +409523,Economic Development,Développement économique +530225,Economic Development,Développement économique +527478,Economic Development,Développement économique +523668,Economic Development,Développement économique +523643,Economic Development,Développement économique +523532,Economic Development,Développement économique +523506,Economic Development,Développement économique +504232,Economic Development,Développement économique +503183,Economic Development,Développement économique +496793,Economic Development,Développement économique +494666,Economic Development,Développement économique +494312,Economic Development,Développement économique +494312,Budget,Budget +493874,Budget,Budget +378004,Budget,Budget +527478,Budget,Budget +523668,Budget,Budget +523532,Taxation and Finance,Impôts et finances +523506,Taxation and Finance,Impôts et finances +378004,Taxation and Finance,Impôts et finances +494666,Taxation and Finance,Impôts et finances +493984,Taxation and Finance,Impôts et finances +377102,Health,Health +398660,Justice and Law Enforcement,Justice and Law Enforcement +398659,Justice and Law Enforcement,Justice and Law Enforcement +397122,Justice and Law Enforcement,Justice and Law Enforcement +397117,Justice and Law Enforcement,Justice and Law Enforcement +397114,Justice and Law Enforcement,Justice and Law Enforcement +394586,Justice and Law Enforcement,Justice and Law Enforcement +394585,Justice and Law Enforcement,Justice and Law Enforcement +394583,Justice and Law Enforcement,Justice and Law Enforcement +394582,Justice and Law Enforcement,Justice and Law Enforcement +394580,Justice and Law Enforcement,Justice and Law Enforcement +394579,Justice and Law Enforcement,Justice and Law Enforcement +394578,Justice and Law Enforcement,Justice and Law Enforcement +394577,Justice and Law Enforcement,Justice and Law Enforcement +394576,Justice and Law Enforcement,Justice and Law Enforcement +392878,Justice and Law Enforcement,Justice and Law Enforcement +392877,Justice and Law Enforcement,Justice and Law Enforcement +385273,Justice and Law Enforcement,Justice and Law Enforcement +385272,Justice and Law Enforcement,Justice and Law Enforcement +383848,Justice and Law Enforcement,Justice and Law Enforcement +378778,Justice and Law Enforcement,Justice and Law Enforcement +378777,Justice and Law Enforcement,Justice and Law Enforcement +378775,Justice and Law Enforcement,Justice and Law Enforcement +378774,Justice and Law Enforcement,Justice and Law Enforcement +378772,Justice and Law Enforcement,Justice and Law Enforcement +378771,Justice and Law Enforcement,Justice and Law Enforcement +378770,Justice and Law Enforcement,Justice and Law Enforcement +375045,Justice and Law Enforcement,Justice and Law Enforcement +375044,Justice and Law Enforcement,Justice and Law Enforcement +375043,Justice and Law Enforcement,Justice and Law Enforcement +375042,Justice and Law Enforcement,Justice and Law Enforcement +372439,Justice and Law Enforcement,Justice and Law Enforcement +372437,Justice and Law Enforcement,Justice and Law Enforcement +372416,Justice and Law Enforcement,Justice and Law Enforcement +372414,Justice and Law Enforcement,Justice and Law Enforcement +372410,Justice and Law Enforcement,Justice and Law Enforcement +372400,Justice and Law Enforcement,Justice and Law Enforcement +372396,Justice and Law Enforcement,Justice and Law Enforcement +372390,Justice and Law Enforcement,Justice and Law Enforcement +445884,Justice and Law Enforcement,Justice and Law Enforcement +442761,Justice and Law Enforcement,Justice and Law Enforcement +442760,Justice and Law Enforcement,Justice and Law Enforcement +442759,Justice and Law Enforcement,Justice and Law Enforcement +442757,Justice and Law Enforcement,Justice and Law Enforcement +439886,Justice and Law Enforcement,Justice and Law Enforcement +439885,Justice and Law Enforcement,Justice and Law Enforcement +439882,Justice and Law Enforcement,Justice and Law Enforcement +436095,Justice and Law Enforcement,Justice and Law Enforcement +436094,Justice and Law Enforcement,Justice and Law Enforcement +436092,Justice and Law Enforcement,Justice and Law Enforcement +436088,Justice and Law Enforcement,Justice and Law Enforcement +432641,Justice and Law Enforcement,Justice and Law Enforcement +431010,Justice and Law Enforcement,Justice and Law Enforcement +429514,Justice and Law Enforcement,Justice and Law Enforcement +429513,Justice and Law Enforcement,Justice and Law Enforcement +429509,Justice and Law Enforcement,Justice and Law Enforcement +429505,Justice and Law Enforcement,Justice and Law Enforcement +429503,Justice and Law Enforcement,Justice and Law Enforcement +429502,Justice and Law Enforcement,Justice and Law Enforcement +426994,Justice and Law Enforcement,Justice and Law Enforcement +426993,Justice and Law Enforcement,Justice and Law Enforcement +422291,Justice and Law Enforcement,Justice and Law Enforcement +422278,Justice and Law Enforcement,Justice and Law Enforcement +414081,Justice and Law Enforcement,Justice and Law Enforcement +410095,Justice and Law Enforcement,Justice and Law Enforcement +410093,Justice and Law Enforcement,Justice and Law Enforcement +410092,Justice and Law Enforcement,Justice and Law Enforcement +410091,Justice and Law Enforcement,Justice and Law Enforcement +408282,Justice and Law Enforcement,Justice and Law Enforcement +408278,Justice and Law Enforcement,Justice and Law Enforcement +408277,Justice and Law Enforcement,Justice and Law Enforcement +406281,Justice and Law Enforcement,Justice and Law Enforcement +405313,Justice and Law Enforcement,Justice and Law Enforcement +404178,Justice and Law Enforcement,Justice and Law Enforcement +404170,Justice and Law Enforcement,Justice and Law Enforcement +404169,Justice and Law Enforcement,Justice and Law Enforcement +404168,Justice and Law Enforcement,Justice and Law Enforcement +401045,Justice and Law Enforcement,Justice and Law Enforcement +401044,Justice and Law Enforcement,Justice and Law Enforcement +401043,Justice and Law Enforcement,Justice and Law Enforcement +372386,Health,Health +494927,Climate,Climate +494925,Climate,Climate +521230,Budget,Budget +521227,Budget,Budget +388414,Budget,Budget +372448,Budget,Budget +468167,Budget,Budget +468166,Budget,Budget +468165,Budget,Budget +468164,Budget,Budget +464867,Budget,Budget +464856,Budget,Budget +464839,Budget,Budget +464833,Budget,Budget +447554,Budget,Budget +447552,Budget,Budget +442732,Budget,Budget +442730,Budget,Budget +442729,Budget,Budget +442728,Budget,Budget +442727,Budget,Budget +439366,Budget,Budget +439181,Budget,Budget +439172,Budget,Budget +439171,Budget,Budget +438980,Budget,Budget +438974,Budget,Budget +438971,Budget,Budget +438970,Budget,Budget +438969,Budget,Budget +429345,Budget,Budget +426815,Budget,Budget +426810,Budget,Budget +426807,Budget,Budget +424316,Budget,Budget +422436,Budget,Budget +422434,Budget,Budget +422428,Budget,Budget +422422,Budget,Budget +420301,Budget,Budget +420299,Budget,Budget +420298,Budget,Budget +420297,Budget,Budget +420295,Budget,Budget +415170,Budget,Budget +415168,Budget,Budget +415152,Budget,Budget +415141,Budget,Budget +414762,Budget,Budget +542814,Budget,Budget +542809,Budget,Budget +534784,Budget,Budget +531806,Budget,Budget +531784,Budget,Budget +529145,Budget,Budget +529137,Budget,Budget +529124,Budget,Budget +529111,Budget,Budget +525615,Budget,Budget +525513,Budget,Budget +525510,Budget,Budget +525508,Budget,Budget +525506,Budget,Budget +525485,Budget,Budget +525439,Budget,Budget +525438,Budget,Budget +523646,Budget,Budget +521237,Budget,Budget +521236,Budget,Budget +521234,Budget,Budget +521233,Budget,Budget +401201,Budget,Budget +401200,Budget,Budget +381184,Budget,Budget +381183,Budget,Budget +378664,Budget,Budget +378659,Budget,Budget +378658,Budget,Budget +378654,Budget,Budget +378647,Budget,Budget +429061,Budget,Budget +429043,Budget,Budget +401200,Economic Development,Economic Development +401199,Economic Development,Economic Development +387023,Economic Development,Economic Development +429043,Economic Development,Economic Development +429038,Economic Development,Economic Development +424447,Economic Development,Economic Development +408323,Economic Development,Economic Development +403090,Economic Development,Economic Development +401215,Economic Development,Economic Development +401214,Economic Development,Economic Development +378664,Energy,Energy +453876,Energy,Energy +378659,Energy,Energy +378658,Energy,Energy +378655,Energy,Energy +378654,Energy,Energy +378648,Energy,Energy +378647,Energy,Energy +378639,Energy,Energy +376826,Energy,Energy +376820,Energy,Energy +376192,Energy,Energy +429061,Energy,Energy +429043,Energy,Energy +429038,Energy,Energy +424447,Energy,Energy +413738,Energy,Energy +413730,Energy,Energy +413723,Energy,Energy +408323,Energy,Energy +406701,Energy,Energy +406697,Energy,Energy +403090,Energy,Energy +401215,Energy,Energy +401214,Energy,Energy +401201,Energy,Energy +401200,Energy,Energy +401199,Energy,Energy +401197,Energy,Energy +401195,Energy,Energy +401194,Energy,Energy +396807,Energy,Energy +396803,Energy,Energy +390010,Energy,Energy +390008,Energy,Energy +390000,Energy,Energy +387023,Energy,Energy +387020,Energy,Energy +381184,Energy,Energy +381183,Energy,Energy +381184,Taxation and Finance,Taxation and Finance +381183,Taxation and Finance,Taxation and Finance +413723,Taxation and Finance,Taxation and Finance +403090,Taxation and Finance,Taxation and Finance +401215,Taxation and Finance,Taxation and Finance +401214,Taxation and Finance,Taxation and Finance +401195,Climate,Climate +401194,Climate,Climate +396807,Climate,Climate +396803,Climate,Climate +390010,Climate,Climate +390008,Climate,Climate +390000,Climate,Climate +387023,Climate,Climate +387020,Climate,Climate +381184,Climate,Climate +381183,Climate,Climate +378666,Climate,Climate +378664,Climate,Climate +378659,Climate,Climate +378655,Climate,Climate +378654,Climate,Climate +378648,Climate,Climate +378647,Climate,Climate +378639,Climate,Climate +376826,Climate,Climate +376820,Climate,Climate +376192,Climate,Climate +429061,Climate,Climate +429043,Climate,Climate +429038,Climate,Climate +424447,Climate,Climate +413738,Climate,Climate +413730,Climate,Climate +408323,Climate,Climate +406697,Climate,Climate +401215,Climate,Climate +401214,Climate,Climate +401201,Climate,Climate +401200,Climate,Climate +401199,Climate,Climate +401195,International Trade,International Trade +387020,International Trade,International Trade +453876,International Trade,International Trade +413738,International Trade,International Trade +413730,International Trade,International Trade +413723,International Trade,International Trade +403090,International Trade,International Trade +401214,International Trade,International Trade +390000,Environment,Environment +387023,Environment,Environment +387020,Environment,Environment +381184,Environment,Environment +381183,Environment,Environment +378666,Environment,Environment +378664,Environment,Environment +378659,Environment,Environment +378658,Environment,Environment +378655,Environment,Environment +378654,Environment,Environment +378648,Environment,Environment +378647,Environment,Environment +378639,Environment,Environment +376826,Environment,Environment +376820,Environment,Environment +376192,Environment,Environment +429061,Environment,Environment +429043,Environment,Environment +429038,Environment,Environment +424447,Environment,Environment +413738,Environment,Environment +413730,Environment,Environment +413723,Environment,Environment +408323,Environment,Environment +406701,Environment,Environment +406697,Environment,Environment +403090,Environment,Environment +401215,Environment,Environment +401214,Environment,Environment +401201,Environment,Environment +401200,Environment,Environment +401199,Environment,Environment +401197,Environment,Environment +401195,Environment,Environment +401194,Environment,Environment +396807,Environment,Environment +396803,Environment,Environment +390010,Environment,Environment +396807,Agriculture,Agriculture +396803,Agriculture,Agriculture +378658,Agriculture,Agriculture +378655,Agriculture,Agriculture +378648,Agriculture,Agriculture +378647,Agriculture,Agriculture +378639,Agriculture,Agriculture +429043,Agriculture,Agriculture +424447,Agriculture,Agriculture +413738,Agriculture,Agriculture +413730,Agriculture,Agriculture +413723,Agriculture,Agriculture +406701,Agriculture,Agriculture +403090,Agriculture,Agriculture +401215,Agriculture,Agriculture +401214,Agriculture,Agriculture +401201,Agriculture,Agriculture +401200,Agriculture,Agriculture +401199,Agriculture,Agriculture +376820,Infrastructure,Infrastructure +376192,Infrastructure,Infrastructure +381183,Infrastructure,Infrastructure +381184,Research and Development,Research and Development +385520,Transportation,Transportation +463905,Budget,Budget +372540,Climate,Climate +517324,Climate,Climate +464125,Climate,Climate +398929,Climate,Climate +385608,Climate,Climate +467028,Climate,Climate +464137,Climate,Climate +372544,Climate,Climate +443622,Climate,Climate +442240,Climate,Climate +442178,Climate,Climate +439087,Climate,Climate +408242,Climate,Climate +401700,Climate,Climate +401699,Climate,Climate +401229,Climate,Climate +398937,Climate,Climate +391653,Climate,Climate +387934,Climate,Climate +387932,Climate,Climate +385610,Climate,Climate +381578,Climate,Climate +376327,Climate,Climate +376326,Climate,Climate +534731,Climate,Climate +529686,Climate,Climate +522923,Climate,Climate +517337,Climate,Climate +514654,Climate,Climate +501423,Climate,Climate +426088,Climate,Climate +422298,Climate,Climate +400986,Climate,Climate +398960,Climate,Climate +394482,Climate,Climate +385600,Climate,Climate +383749,Climate,Climate +382630,Climate,Climate +381585,Climate,Climate +379363,Climate,Climate +376331,Climate,Climate +372550,Climate,Climate +531589,Climate,Climate +529685,Climate,Climate +526167,Climate,Climate +522925,Climate,Climate +513932,Climate,Climate +490325,Climate,Climate +467026,Climate,Climate +464124,Climate,Climate +463989,Climate,Climate +432471,Climate,Climate +372634,Employment and Training,Employment and Training +372632,Employment and Training,Employment and Training +372667,Employment and Training,Employment and Training +420515,International Trade,International Trade +420514,International Trade,International Trade +372615,International Trade,International Trade +396848,International Trade,International Trade +396841,International Trade,International Trade +396838,International Trade,International Trade +496785,Agriculture,Agriculture +496504,Agriculture,Agriculture +421952,Agriculture,Agriculture +372630,Agriculture,Agriculture +372628,Agriculture,Agriculture +372627,Agriculture,Agriculture +372626,Agriculture,Agriculture +496504,International Trade,International Trade +372626,International Trade,International Trade +446231,International Trade,International Trade +446230,International Trade,International Trade +446120,International Trade,International Trade +421952,International Trade,International Trade +420520,International Trade,International Trade +396795,International Trade,International Trade +396735,International Trade,International Trade +372630,International Trade,International Trade +372628,International Trade,International Trade +372627,International Trade,International Trade +540903,International Trade,International Trade +521279,International Trade,International Trade +521278,International Trade,International Trade +513860,International Trade,International Trade +497478,International Trade,International Trade +373316,Defence,Defence +373315,Defence,Defence +373316,Economic Development,Economic Development +373315,Economic Development,Economic Development +373316,Industry,Industry +373315,Industry,Industry +374360,Budget,Budget +386544,Budget,Budget +386013,Budget,Budget +384101,Budget,Budget +384099,Budget,Budget +383092,Budget,Budget +383091,Budget,Budget +380395,Budget,Budget +380232,Budget,Budget +380231,Budget,Budget +380230,Budget,Budget +380229,Budget,Budget +377786,Budget,Budget +377785,Budget,Budget +377784,Budget,Budget +377783,Budget,Budget +377782,Budget,Budget +374374,Budget,Budget +374372,Defence,Defence +374360,Defence,Defence +394699,Defence,Defence +394698,Defence,Defence +394697,Defence,Defence +393088,Defence,Defence +386544,Defence,Defence +386013,Defence,Defence +384101,Defence,Defence +384100,Defence,Defence +384099,Defence,Defence +383092,Defence,Defence +383091,Defence,Defence +381798,Defence,Defence +380395,Defence,Defence +380232,Defence,Defence +380231,Defence,Defence +380230,Defence,Defence +380229,Defence,Defence +377786,Defence,Defence +377785,Defence,Defence +377784,Defence,Defence +377783,Defence,Defence +377782,Defence,Defence +374374,Defence,Defence +383092,Economic Development,Economic Development +383091,Economic Development,Economic Development +380232,Economic Development,Economic Development +380231,Economic Development,Economic Development +380229,Economic Development,Economic Development +377783,Economic Development,Economic Development +374374,Economic Development,Economic Development +377783,Employment and Training,Employment and Training +374374,Employment and Training,Employment and Training +384101,Employment and Training,Employment and Training +381443,Industry,Industry +377783,Industry,Industry +384100,Industry,Industry +453020,International Trade,International Trade +445225,International Trade,International Trade +372713,International Trade,International Trade +539774,International Trade,International Trade +534313,International Trade,International Trade +526282,International Trade,International Trade +523200,International Trade,International Trade +518261,International Trade,International Trade +518259,International Trade,International Trade +518255,International Trade,International Trade +495286,International Trade,International Trade +379250,Transportation,Transportation +372736,Transportation,Transportation +392391,Transportation,Transportation +392389,Transportation,Transportation +392388,Transportation,Transportation +382598,Transportation,Transportation +392736,Agriculture,Agriculture +392735,Agriculture,Agriculture +422633,Agriculture,Agriculture +406079,Agriculture,Agriculture +383698,Employment and Training,Employment and Training +383693,Employment and Training,Employment and Training +422633,Employment and Training,Employment and Training +392739,Employment and Training,Employment and Training +392736,Employment and Training,Employment and Training +392735,Employment and Training,Employment and Training +391284,Employment and Training,Employment and Training +374705,Small Business,Small Business +374704,Small Business,Small Business +511585,Environment,Environment +425896,Environment,Environment +396644,Environment,Environment +372901,Infrastructure,Infrastructure +471381,Municipalities,Municipalities +471380,Municipalities,Municipalities +372914,Municipalities,Municipalities +372912,Municipalities,Municipalities +372911,Municipalities,Municipalities +471379,Municipalities,Municipalities +469457,Municipalities,Municipalities +465648,Municipalities,Municipalities +465647,Municipalities,Municipalities +465646,Municipalities,Municipalities +454353,Municipalities,Municipalities +450042,Municipalities,Municipalities +450040,Municipalities,Municipalities +450039,Municipalities,Municipalities +450038,Municipalities,Municipalities +450037,Municipalities,Municipalities +450034,Municipalities,Municipalities +450032,Municipalities,Municipalities +450027,Municipalities,Municipalities +448120,Municipalities,Municipalities +444706,Municipalities,Municipalities +436427,Municipalities,Municipalities +436422,Municipalities,Municipalities +436419,Municipalities,Municipalities +436418,Municipalities,Municipalities +436417,Municipalities,Municipalities +436416,Municipalities,Municipalities +436415,Municipalities,Municipalities +436412,Municipalities,Municipalities +436411,Municipalities,Municipalities +392136,Municipalities,Municipalities +386808,Municipalities,Municipalities +386700,Municipalities,Municipalities +386698,Municipalities,Municipalities +386697,Municipalities,Municipalities +386695,Municipalities,Municipalities +386692,Municipalities,Municipalities +386688,Municipalities,Municipalities +386685,Municipalities,Municipalities +386679,Municipalities,Municipalities +386676,Municipalities,Municipalities +382691,Municipalities,Municipalities +382675,Municipalities,Municipalities +544066,Municipalities,Municipalities +531792,Municipalities,Municipalities +527050,Municipalities,Municipalities +525167,Municipalities,Municipalities +525165,Municipalities,Municipalities +523366,Municipalities,Municipalities +518620,Municipalities,Municipalities +494062,Municipalities,Municipalities +485954,Municipalities,Municipalities +476435,Municipalities,Municipalities +474361,Municipalities,Municipalities +472268,Municipalities,Municipalities +471383,Municipalities,Municipalities +372948,Municipalities,Municipalities +372964,International Trade,International Trade +372972,International Trade,International Trade +374274,Health,Health +377529,Regional Development,Regional Development +394034,Climate,Climate +394029,Climate,Climate +394034,Environment,Environment +394029,Environment,Environment +372995,Industry,Industry +372993,Industry,Industry +373000,Industry,Industry +372999,Industry,Industry +439807,Agriculture,Agriculture +431868,Agriculture,Agriculture +420972,Agriculture,Agriculture +420971,Agriculture,Agriculture +414046,Agriculture,Agriculture +414045,Agriculture,Agriculture +503433,Agriculture,Agriculture +450982,Agriculture,Agriculture +450841,Agriculture,Agriculture +446668,Agriculture,Agriculture +446667,Agriculture,Agriculture +431868,International Trade,International Trade +420972,International Trade,International Trade +377540,Climate,Climate +377539,Climate,Climate +420785,Climate,Climate +420784,Climate,Climate +420782,Climate,Climate +420780,Climate,Climate +377539,Energy,Energy +373044,International Trade,International Trade +373025,International Trade,International Trade +401474,International Trade,International Trade +401470,International Trade,International Trade +394821,International Trade,International Trade +394819,International Trade,International Trade +394806,International Trade,International Trade +386955,International Trade,International Trade +373223,International Trade,International Trade +373055,International Trade,International Trade +488407,Privacy and Access to Information,Privacy and Access to Information +486641,Privacy and Access to Information,Privacy and Access to Information +381641,Privacy and Access to Information,Privacy and Access to Information +380187,Privacy and Access to Information,Privacy and Access to Information +378267,Privacy and Access to Information,Privacy and Access to Information +378266,Privacy and Access to Information,Privacy and Access to Information +377778,Privacy and Access to Information,Privacy and Access to Information +376010,Privacy and Access to Information,Privacy and Access to Information +373056,Privacy and Access to Information,Privacy and Access to Information +427116,Privacy and Access to Information,Privacy and Access to Information +427114,Privacy and Access to Information,Privacy and Access to Information +427113,Privacy and Access to Information,Privacy and Access to Information +425756,Privacy and Access to Information,Privacy and Access to Information +403424,Privacy and Access to Information,Privacy and Access to Information +397750,Privacy and Access to Information,Privacy and Access to Information +394778,Privacy and Access to Information,Privacy and Access to Information +544542,Privacy and Access to Information,Privacy and Access to Information +544541,Privacy and Access to Information,Privacy and Access to Information +542179,Privacy and Access to Information,Privacy and Access to Information +538703,Privacy and Access to Information,Privacy and Access to Information +532780,Privacy and Access to Information,Privacy and Access to Information +517116,Privacy and Access to Information,Privacy and Access to Information +517115,Privacy and Access to Information,Privacy and Access to Information +494349,Privacy and Access to Information,Privacy and Access to Information +494348,Privacy and Access to Information,Privacy and Access to Information +491477,Privacy and Access to Information,Privacy and Access to Information +381184,Transportation,Transportation +381183,Transportation,Transportation +378664,Transportation,Transportation +378659,Transportation,Transportation +378658,Transportation,Transportation +378655,Transportation,Transportation +378654,Transportation,Transportation +378648,Transportation,Transportation +378647,Transportation,Transportation +376826,Transportation,Transportation +376820,Transportation,Transportation +376192,Transportation,Transportation +429061,Transportation,Transportation +429043,Transportation,Transportation +429038,Transportation,Transportation +424447,Transportation,Transportation +413738,Transportation,Transportation +413730,Transportation,Transportation +413723,Transportation,Transportation +408323,Transportation,Transportation +401215,Transportation,Transportation +401214,Transportation,Transportation +401201,Transportation,Transportation +401200,Transportation,Transportation +401199,Transportation,Transportation +401197,Transportation,Transportation +401195,Transportation,Transportation +401194,Transportation,Transportation +396807,Transportation,Transportation +396803,Transportation,Transportation +390010,Transportation,Transportation +390008,Transportation,Transportation +390000,Transportation,Transportation +385802,Economic Development,Economic Development +379074,Economic Development,Economic Development +379074,Health,Health +385800,Research and Development,Research and Development +379074,Research and Development,Research and Development +401892,Health,Health +401891,Health,Health +377968,Health,Health +377967,Health,Health +377965,Health,Health +377963,Health,Health +460916,Health,Health +455306,Health,Health +455305,Health,Health +455304,Health,Health +455302,Health,Health +455300,Health,Health +455299,Health,Health +455297,Health,Health +427313,Health,Health +427312,Health,Health +427311,Health,Health +427310,Health,Health +427309,Health,Health +401902,Health,Health +401895,Health,Health +401894,Health,Health +455299,Industry,Industry +455297,Industry,Industry +401902,Industry,Industry +401895,Industry,Industry +401894,Industry,Industry +401893,Industry,Industry +401892,Industry,Industry +401891,Industry,Industry +377968,Industry,Industry +377967,Industry,Industry +377965,Industry,Industry +377963,Industry,Industry +455306,Industry,Industry +455305,Industry,Industry +455304,Industry,Industry +455302,Industry,Industry +455299,Taxation and Finance,Taxation and Finance +455297,Taxation and Finance,Taxation and Finance +421953,Taxation and Finance,Taxation and Finance +412653,Taxation and Finance,Taxation and Finance +412648,Taxation and Finance,Taxation and Finance +412646,Taxation and Finance,Taxation and Finance +412643,Taxation and Finance,Taxation and Finance +412640,Taxation and Finance,Taxation and Finance +455306,Taxation and Finance,Taxation and Finance +455305,Taxation and Finance,Taxation and Finance +455304,Taxation and Finance,Taxation and Finance +455302,Taxation and Finance,Taxation and Finance +412920,Transportation,Transportation +439939,Transportation,Transportation +376189,Transportation,Transportation +422542,Transportation,Transportation +374197,Research and Development,Research and Development +375523,Security,Security +374197,Security,Security +380791,Security,Security +378202,Environment,Environment +378204,Environment,Environment +378203,Industry,Industry +378202,Industry,Industry +378203,Infrastructure,Infrastructure +378202,Infrastructure,Infrastructure +378203,Municipalities,Municipalities +378202,Municipalities,Municipalities +373196,International Trade,International Trade +373191,International Trade,International Trade +373435,International Trade,International Trade +382575,Industry,Industry +375710,Industry,Industry +376512,Government Procurement,Government Procurement +373194,Government Procurement,Government Procurement +376514,Government Procurement,Government Procurement +479395,Climate,Climate +374860,Climate,Climate +536808,Climate,Climate +525534,Climate,Climate +525533,Climate,Climate +525530,Climate,Climate +513680,Climate,Climate +495527,Climate,Climate +495525,Climate,Climate +495524,Climate,Climate +510229,Housing,Housing +469935,Housing,Housing +389873,Housing,Housing +385131,Housing,Housing +378547,Housing,Housing +435045,Housing,Housing +428358,Housing,Housing +428351,Housing,Housing +411692,Housing,Housing +405050,Housing,Housing +405048,Housing,Housing +404063,Housing,Housing +536808,Housing,Housing +374973,Transportation,Transportation +397348,Consumer Issues,Consumer Issues +389495,Consumer Issues,Consumer Issues +410583,Consumer Issues,Consumer Issues +410582,Consumer Issues,Consumer Issues +410581,Transportation,Transportation +397805,Transportation,Transportation +410583,Transportation,Transportation +376744,Justice and Law Enforcement,Justice et application des lois +376740,Justice and Law Enforcement,Justice et application des lois +379876,Justice and Law Enforcement,Justice et application des lois +379864,Justice and Law Enforcement,Justice et application des lois +379862,Justice and Law Enforcement,Justice et application des lois +379858,Justice and Law Enforcement,Justice et application des lois +379857,Justice and Law Enforcement,Justice et application des lois +379850,Justice and Law Enforcement,Justice et application des lois +379848,Justice and Law Enforcement,Justice et application des lois +379846,Justice and Law Enforcement,Justice et application des lois +379845,Justice and Law Enforcement,Justice et application des lois +379587,Justice and Law Enforcement,Justice et application des lois +379536,Justice and Law Enforcement,Justice et application des lois +379535,Justice and Law Enforcement,Justice et application des lois +376803,Justice and Law Enforcement,Justice et application des lois +376802,Justice and Law Enforcement,Justice et application des lois +376762,Justice and Law Enforcement,Justice et application des lois +376759,Justice and Law Enforcement,Justice et application des lois +376757,Justice and Law Enforcement,Justice et application des lois +376756,Justice and Law Enforcement,Justice et application des lois +376751,Justice and Law Enforcement,Justice et application des lois +386958,Infrastructure,Infrastructure +386957,Infrastructure,Infrastructure +378320,Transportation,Transports +397331,Privacy and Access to Information,Privacy and Access to Information +397330,Privacy and Access to Information,Privacy and Access to Information +397329,Privacy and Access to Information,Privacy and Access to Information +397328,Privacy and Access to Information,Privacy and Access to Information +383034,Privacy and Access to Information,Privacy and Access to Information +383033,Privacy and Access to Information,Privacy and Access to Information +384411,International Development,International Development +383079,International Development,International Development +375321,Privacy and Access to Information,Privacy and Access to Information +373277,Privacy and Access to Information,Privacy and Access to Information +389523,Consumer Issues,Consumer Issues +389522,Consumer Issues,Consumer Issues +410590,Transportation,Transportation +410589,Transportation,Transportation +394037,Financial Institutions,Financial Institutions +394034,Financial Institutions,Financial Institutions +433233,International Relations,International Relations +433232,International Relations,International Relations +416986,International Relations,International Relations +397397,International Relations,International Relations +394930,International Relations,International Relations +403064,International Trade,International Trade +397396,International Trade,International Trade +423419,International Trade,International Trade +423418,International Trade,International Trade +423415,International Trade,International Trade +417966,International Trade,International Trade +416987,International Trade,International Trade +416986,International Trade,International Trade +408172,International Trade,International Trade +394930,Mining,Mining +394929,Mining,Mining +433234,Mining,Mining +433233,Mining,Mining +433232,Mining,Mining +426397,Mining,Mining +426395,Mining,Mining +426393,Mining,Mining +426387,Mining,Mining +423420,Mining,Mining +423418,Mining,Mining +423417,Mining,Mining +423415,Mining,Mining +423414,Mining,Mining +417969,Mining,Mining +417968,Mining,Mining +417967,Mining,Mining +417966,Mining,Mining +416987,Mining,Mining +416986,Mining,Mining +413735,Mining,Mining +413504,Mining,Mining +405714,Mining,Mining +404928,Mining,Mining +404924,Mining,Mining +397397,Mining,Mining +397396,Mining,Mining +397395,Mining,Mining +397393,Mining,Mining +397392,Mining,Mining +397387,Mining,Mining +397386,Mining,Mining +394932,Mining,Mining +540019,Budget,Budget +539957,Budget,Budget +477010,Budget,Budget +477006,Budget,Budget +477004,Budget,Budget +508784,Budget,Budget +382902,Transportation,Transportation +425303,Small Business,Small Business +425301,Small Business,Small Business +410222,Small Business,Small Business +376112,Small Business,Small Business +376111,Small Business,Small Business +376110,Small Business,Small Business +376109,Small Business,Small Business +376108,Small Business,Small Business +376107,Small Business,Small Business +376106,Small Business,Small Business +376105,Small Business,Small Business +376104,Small Business,Small Business +376103,Small Business,Small Business +376101,Small Business,Small Business +376100,Small Business,Small Business +376097,Small Business,Small Business +376096,Small Business,Small Business +376094,Small Business,Small Business +376089,Small Business,Small Business +376088,Small Business,Small Business +376080,Small Business,Small Business +376079,Small Business,Small Business +376078,Small Business,Small Business +376076,Small Business,Small Business +376075,Small Business,Small Business +376074,Small Business,Small Business +376072,Small Business,Small Business +376070,Small Business,Small Business +376069,Small Business,Small Business +376067,Small Business,Small Business +376066,Small Business,Small Business +425336,Small Business,Small Business +425335,Small Business,Small Business +425334,Small Business,Small Business +425332,Small Business,Small Business +425331,Small Business,Small Business +425329,Small Business,Small Business +425328,Small Business,Small Business +425326,Small Business,Small Business +425325,Small Business,Small Business +425324,Small Business,Small Business +425322,Small Business,Small Business +425321,Small Business,Small Business +425320,Small Business,Small Business +425319,Small Business,Small Business +425318,Small Business,Small Business +425317,Small Business,Small Business +425316,Small Business,Small Business +425315,Small Business,Small Business +425314,Small Business,Small Business +425312,Small Business,Small Business +425311,Small Business,Small Business +425310,Small Business,Small Business +425309,Small Business,Small Business +425308,Small Business,Small Business +425307,Small Business,Small Business +425306,Small Business,Small Business +376510,Industry,Industry +383752,Government Procurement,Government Procurement +374568,Government Procurement,Government Procurement +393679,Government Procurement,Government Procurement +383823,Government Procurement,Government Procurement +393715,Economic Development,Economic Development +392566,Economic Development,Economic Development +380846,Economic Development,Economic Development +380845,Economic Development,Economic Development +380844,Economic Development,Economic Development +380843,Economic Development,Economic Development +379415,Economic Development,Economic Development +412196,Economic Development,Economic Development +406516,Economic Development,Economic Development +406513,Economic Development,Economic Development +399893,Economic Development,Economic Development +380843,Health,Health +379415,Health,Health +412196,Health,Health +406516,Health,Health +406513,Health,Health +399893,Health,Health +393722,Health,Health +393715,Health,Health +392566,Health,Health +380846,Health,Health +380845,Health,Health +380844,International Relations,International Relations +380843,International Relations,International Relations +393722,International Relations,International Relations +393715,International Relations,International Relations +392566,International Relations,International Relations +380846,International Relations,International Relations +396756,Defence,Defence +396745,Defence,Defence +375494,Defence,Defence +373910,Government Procurement,Government Procurement +373905,Government Procurement,Government Procurement +396756,Government Procurement,Government Procurement +396745,Government Procurement,Government Procurement +396733,Government Procurement,Government Procurement +390887,Government Procurement,Government Procurement +380710,Government Procurement,Government Procurement +375494,Government Procurement,Government Procurement +375492,Government Procurement,Government Procurement +373905,Industry,Industry +396745,Industry,Industry +375494,Industry,Industry +375492,Industry,Industry +375490,Industry,Industry +374230,International Trade,International Trade +376188,Infrastructure,Infrastructure +376127,Infrastructure,Infrastructure +376126,Infrastructure,Infrastructure +376125,Infrastructure,Infrastructure +376124,Infrastructure,Infrastructure +375655,Infrastructure,Infrastructure +375654,Infrastructure,Infrastructure +375644,Infrastructure,Infrastructure +375644,Regional Development,Regional Development +375550,Regional Development,Regional Development +376188,Regional Development,Regional Development +376127,Regional Development,Regional Development +376126,Regional Development,Regional Development +376125,Regional Development,Regional Development +376124,Regional Development,Regional Development +388180,Government Procurement,Government Procurement +388167,Government Procurement,Government Procurement +383133,Government Procurement,Government Procurement +383132,Government Procurement,Government Procurement +380328,Government Procurement,Government Procurement +380326,Government Procurement,Government Procurement +376674,Government Procurement,Government Procurement +373356,Government Procurement,Government Procurement +373355,Government Procurement,Government Procurement +373354,Government Procurement,Government Procurement +373353,Government Procurement,Government Procurement +373352,Government Procurement,Government Procurement +373351,Government Procurement,Government Procurement +373350,Government Procurement,Government Procurement +373349,Government Procurement,Government Procurement +373348,Government Procurement,Government Procurement +373347,Government Procurement,Government Procurement +373346,Government Procurement,Government Procurement +373345,Government Procurement,Government Procurement +373344,Government Procurement,Government Procurement +373343,Government Procurement,Government Procurement +373342,Government Procurement,Government Procurement +373341,Government Procurement,Government Procurement +373340,Government Procurement,Government Procurement +373339,Government Procurement,Government Procurement +373337,Government Procurement,Government Procurement +373336,Government Procurement,Government Procurement +373335,Government Procurement,Government Procurement +373334,Government Procurement,Government Procurement +373333,Government Procurement,Government Procurement +373331,Government Procurement,Government Procurement +373330,Government Procurement,Government Procurement +373329,Government Procurement,Government Procurement +373328,Government Procurement,Government Procurement +373327,Government Procurement,Government Procurement +462927,Government Procurement,Government Procurement +411655,Government Procurement,Government Procurement +411654,Government Procurement,Government Procurement +411652,Government Procurement,Government Procurement +395029,Government Procurement,Government Procurement +488455,Labour,Labour +488452,Labour,Labour +469270,Labour,Labour +468973,Labour,Labour +462927,Labour,Labour +461855,Labour,Labour +460964,Labour,Labour +460856,Labour,Labour +451214,Labour,Labour +451209,Labour,Labour +446142,Labour,Labour +446141,Labour,Labour +446139,Labour,Labour +442163,Labour,Labour +432940,Labour,Labour +432939,Labour,Labour +427923,Labour,Labour +427922,Labour,Labour +424865,Labour,Labour +423345,Labour,Labour +420068,Labour,Labour +420063,Labour,Labour +419595,Labour,Labour +418175,Labour,Labour +418150,Labour,Labour +411655,Labour,Labour +411654,Labour,Labour +411653,Labour,Labour +411652,Labour,Labour +408869,Labour,Labour +408867,Labour,Labour +395029,Labour,Labour +395025,Labour,Labour +395023,Labour,Labour +388182,Labour,Labour +388180,Labour,Labour +388176,Labour,Labour +388167,Labour,Labour +383379,Labour,Labour +383136,Labour,Labour +383134,Labour,Labour +383133,Labour,Labour +383132,Labour,Labour +380328,Labour,Labour +378272,Labour,Labour +378232,Labour,Labour +378231,Labour,Labour +376683,Labour,Labour +376674,Labour,Labour +373355,Labour,Labour +544893,Labour,Labour +544714,Labour,Labour +537170,Labour,Labour +536640,Labour,Labour +527573,Labour,Labour +523980,Labour,Labour +516019,Labour,Labour +514906,Labour,Labour +512338,Labour,Labour +506493,Labour,Labour +506307,Labour,Labour +506080,Labour,Labour +497667,Labour,Labour +490342,Labour,Labour +489313,Labour,Labour +489032,Labour,Labour +488460,Labour,Labour +488458,Labour,Labour +497666,Taxation and Finance,Taxation and Finance +497665,Taxation and Finance,Taxation and Finance +373335,Taxation and Finance,Taxation and Finance +373334,Taxation and Finance,Taxation and Finance +373333,Taxation and Finance,Taxation and Finance +373331,Taxation and Finance,Taxation and Finance +373330,Taxation and Finance,Taxation and Finance +373329,Taxation and Finance,Taxation and Finance +373328,Taxation and Finance,Taxation and Finance +373327,Taxation and Finance,Taxation and Finance +419595,Taxation and Finance,Taxation and Finance +411655,Taxation and Finance,Taxation and Finance +411654,Taxation and Finance,Taxation and Finance +395029,Taxation and Finance,Taxation and Finance +378231,Taxation and Finance,Taxation and Finance +373356,Taxation and Finance,Taxation and Finance +373354,Taxation and Finance,Taxation and Finance +373353,Taxation and Finance,Taxation and Finance +373352,Taxation and Finance,Taxation and Finance +373351,Taxation and Finance,Taxation and Finance +373350,Taxation and Finance,Taxation and Finance +373349,Taxation and Finance,Taxation and Finance +373348,Taxation and Finance,Taxation and Finance +373347,Taxation and Finance,Taxation and Finance +373346,Taxation and Finance,Taxation and Finance +373345,Taxation and Finance,Taxation and Finance +373344,Taxation and Finance,Taxation and Finance +373343,Taxation and Finance,Taxation and Finance +373342,Taxation and Finance,Taxation and Finance +373341,Taxation and Finance,Taxation and Finance +373340,Taxation and Finance,Taxation and Finance +373339,Taxation and Finance,Taxation and Finance +373337,Taxation and Finance,Taxation and Finance +373336,Taxation and Finance,Taxation and Finance +544893,Taxation and Finance,Taxation and Finance +537170,Taxation and Finance,Taxation and Finance +527573,Taxation and Finance,Taxation and Finance +523980,Taxation and Finance,Taxation and Finance +512338,Taxation and Finance,Taxation and Finance +506493,Taxation and Finance,Taxation and Finance +506080,Taxation and Finance,Taxation and Finance +500119,Taxation and Finance,Taxation and Finance +410783,Taxation and Finance,Taxation and Finance +375089,Taxation and Finance,Taxation and Finance +376386,Infrastructure,Infrastructure +376382,Infrastructure,Infrastructure +381378,Infrastructure,Infrastructure +381159,Infrastructure,Infrastructure +381158,Infrastructure,Infrastructure +381157,Infrastructure,Infrastructure +381156,Infrastructure,Infrastructure +381155,Infrastructure,Infrastructure +376409,Infrastructure,Infrastructure +376407,Infrastructure,Infrastructure +376405,Infrastructure,Infrastructure +376404,Infrastructure,Infrastructure +376403,Infrastructure,Infrastructure +376400,Infrastructure,Infrastructure +376396,Infrastructure,Infrastructure +376386,Regional Development,Regional Development +376382,Regional Development,Regional Development +381159,Regional Development,Regional Development +381158,Regional Development,Regional Development +381157,Regional Development,Regional Development +381156,Regional Development,Regional Development +381155,Regional Development,Regional Development +376409,Regional Development,Regional Development +376407,Regional Development,Regional Development +376405,Regional Development,Regional Development +376404,Regional Development,Regional Development +376403,Regional Development,Regional Development +376400,Regional Development,Regional Development +376396,Regional Development,Regional Development +377014,Infrastructure,Infrastructure +377013,Infrastructure,Infrastructure +377041,Infrastructure,Infrastructure +377035,Infrastructure,Infrastructure +377032,Infrastructure,Infrastructure +377028,Infrastructure,Infrastructure +377022,Infrastructure,Infrastructure +377019,Infrastructure,Infrastructure +377014,Regional Development,Regional Development +377013,Regional Development,Regional Development +377041,Regional Development,Regional Development +377035,Regional Development,Regional Development +377032,Regional Development,Regional Development +377028,Regional Development,Regional Development +377022,Regional Development,Regional Development +377019,Regional Development,Regional Development +376196,Regional Development,Regional Development +376193,Regional Development,Regional Development +381164,Regional Development,Regional Development +381163,Regional Development,Regional Development +381162,Regional Development,Regional Development +381161,Regional Development,Regional Development +381160,Regional Development,Regional Development +376411,Regional Development,Regional Development +376379,Regional Development,Regional Development +376378,Regional Development,Regional Development +376377,Regional Development,Regional Development +376376,Regional Development,Regional Development +381161,Infrastructure,Infrastructure +381160,Infrastructure,Infrastructure +376411,Infrastructure,Infrastructure +376379,Infrastructure,Infrastructure +376378,Infrastructure,Infrastructure +376377,Infrastructure,Infrastructure +376376,Infrastructure,Infrastructure +376199,Infrastructure,Infrastructure +376197,Infrastructure,Infrastructure +376196,Infrastructure,Infrastructure +376193,Infrastructure,Infrastructure +424916,Infrastructure,Infrastructure +424915,Infrastructure,Infrastructure +381221,Infrastructure,Infrastructure +381164,Infrastructure,Infrastructure +381163,Infrastructure,Infrastructure +470664,Economic Development,Economic Development +470647,Economic Development,Economic Development +373658,Economic Development,Economic Development +456852,Economic Development,Economic Development +456851,Economic Development,Economic Development +456850,Economic Development,Economic Development +456849,Economic Development,Economic Development +456138,Economic Development,Economic Development +454311,Economic Development,Economic Development +448334,Economic Development,Economic Development +446986,Economic Development,Economic Development +445385,Economic Development,Economic Development +445175,Economic Development,Economic Development +443451,Economic Development,Economic Development +443450,Economic Development,Economic Development +443070,Economic Development,Economic Development +443069,Economic Development,Economic Development +443065,Economic Development,Economic Development +441806,Economic Development,Economic Development +497080,Economic Development,Economic Development +486140,Economic Development,Economic Development +486138,Economic Development,Economic Development +486137,Economic Development,Economic Development +483418,Economic Development,Economic Development +483416,Economic Development,Economic Development +483415,Economic Development,Economic Development +483414,Economic Development,Economic Development +481489,Economic Development,Economic Development +479207,Economic Development,Economic Development +478965,Economic Development,Economic Development +477588,Economic Development,Economic Development +475299,Economic Development,Economic Development +475298,Economic Development,Economic Development +475297,Economic Development,Economic Development +475296,Economic Development,Economic Development +475145,Economic Development,Economic Development +472176,Economic Development,Economic Development +472171,Economic Development,Economic Development +472169,Economic Development,Economic Development +443069,Energy,Energy +443065,Energy,Energy +373658,Energy,Energy +537316,Energy,Energy +535844,Energy,Energy +535838,Energy,Energy +535837,Energy,Energy +521155,Energy,Energy +518747,Energy,Energy +512165,Energy,Energy +512164,Energy,Energy +512163,Energy,Energy +483418,Energy,Energy +481489,Energy,Energy +475299,Energy,Energy +475297,Energy,Energy +475296,Energy,Energy +475145,Energy,Energy +456138,Energy,Energy +454311,Energy,Energy +448334,Energy,Energy +446986,Energy,Energy +445385,Energy,Energy +445175,Energy,Energy +443451,Energy,Energy +443450,Energy,Energy +477588,Environment,Environment +475299,Environment,Environment +475298,Environment,Environment +475297,Environment,Environment +475296,Environment,Environment +475145,Environment,Environment +472171,Environment,Environment +456850,Environment,Environment +456849,Environment,Environment +455371,Environment,Environment +455369,Environment,Environment +455368,Environment,Environment +455367,Environment,Environment +455366,Environment,Environment +455365,Environment,Environment +455364,Environment,Environment +454311,Environment,Environment +448334,Environment,Environment +446986,Environment,Environment +445385,Environment,Environment +445175,Environment,Environment +443451,Environment,Environment +443450,Environment,Environment +443070,Environment,Environment +443069,Environment,Environment +443065,Environment,Environment +417494,Environment,Environment +391900,Environment,Environment +391876,Environment,Environment +373658,Environment,Environment +537316,Environment,Environment +535844,Environment,Environment +535841,Environment,Environment +530326,Environment,Environment +521155,Environment,Environment +518747,Environment,Environment +512165,Environment,Environment +512164,Environment,Environment +512163,Environment,Environment +497080,Environment,Environment +492268,Environment,Environment +486140,Environment,Environment +483418,Environment,Environment +483416,Environment,Environment +483415,Environment,Environment +483414,Environment,Environment +481489,Environment,Environment +497080,Transportation,Transportation +492268,Transportation,Transportation +384654,Transportation,Transportation +384652,Transportation,Transportation +384648,Transportation,Transportation +373658,Transportation,Transportation +441806,Transportation,Transportation +417494,Transportation,Transportation +414077,Transportation,Transportation +414076,Transportation,Transportation +391895,Transportation,Transportation +391894,Transportation,Transportation +493984,Economic Development,Développement économique +494666,Budget,Budget +493874,Taxation and Finance,Impôts et finances +377104,Health,Health +401040,Justice and Law Enforcement,Justice and Law Enforcement +377103,Health,Health +372386,Justice and Law Enforcement,Justice and Law Enforcement +375224,Climate,Climate +521232,Budget,Budget +381184,Government Procurement,Government Procurement +429038,Budget,Budget +401201,Economic Development,Economic Development +378666,Energy,Energy +387020,Taxation and Finance,Taxation and Finance +401197,Climate,Climate +401200,International Trade,International Trade +390008,Environment,Environment +429061,Consumer Issues,Consumer Issues +401195,Agriculture,Agriculture +376826,Infrastructure,Infrastructure +390000,Research and Development,Research and Development +385535,Transportation,Transportation +372522,Budget,Budget +372539,Energy,Energy +382634,Climate,Climate +501421,Climate,Climate +426094,Climate,Climate +372661,Employment and Training,Employment and Training +372672,Infrastructure,Infrastructure +420516,International Trade,International Trade +497478,Agriculture,Agriculture +496785,International Trade,International Trade +373317,Defence,Defence +373317,Economic Development,Economic Development +373317,Industry,Industry +373315,International Relations,International Relations +373316,Research and Development,Research and Development +374373,Budget,Budget +374373,Defence,Defence +393088,Economic Development,Economic Development +384100,Employment and Training,Employment and Training +383090,Industry,Industry +377783,International Trade,International Trade +372688,Budget,Budget +372713,International Relations,International Relations +495281,International Trade,International Trade +382597,Transportation,Transportation +392739,Agriculture,Agriculture +391278,Employment and Training,Employment and Training +378340,Small Business,Small Business +390741,Environment,Environment +373306,Intellectual Property,Intellectual Property +380349,Defence,Defence +375745,Infrastructure,Infrastructure +471382,Municipalities,Municipalities +374847,Municipalities,Municipalities +372955,International Trade,International Trade +372957,Internal Trade,Internal Trade +372963,International Trade,International Trade +375368,International Trade,International Trade +372967,International Trade,International Trade +372969,International Trade,International Trade +401140,International Trade,International Trade +372976,International Trade,International Trade +374276,Health,Health +394656,Energy,Energy +394656,Environment,Environment +394656,Regional Development,Regional Development +394037,Climate,Climate +394037,Environment,Environment +372997,Industry,Industry +439808,Agriculture,Agriculture +446668,International Trade,International Trade +401263,Climate,Climate +377540,Energy,Energy +373217,International Trade,International Trade +377641,Environment,Environment +378266,International Trade,International Trade +488574,Privacy and Access to Information,Privacy and Access to Information +373064,Health,Health +373117,Budget,Budget +387023,Transportation,Transportation +393218,Economic Development,Economic Development +385800,Health,Health +385802,Research and Development,Research and Development +401893,Health,Health +455300,Industry,Industry +455300,Taxation and Finance,Taxation and Finance +373613,Regional Development,Regional Development +373613,Transportation,Transportation +412922,Transportation,Transportation +374197,Government Procurement,Government Procurement +378425,Privacy and Access to Information,Privacy and Access to Information +378425,Research and Development,Research and Development +378425,Security,Security +378203,Environment,Environment +378204,Industry,Industry +378204,Infrastructure,Infrastructure +378204,Municipalities,Municipalities +374677,Agriculture,Agriculture +373197,International Trade,International Trade +382576,Industry,Industry +376513,Government Procurement,Government Procurement +495523,Climate,Climate +536807,Housing,Housing +377381,Environment,Environnement +374984,Transportation,Transportation +373222,Infrastructure,Infrastructure +410581,Consumer Issues,Consumer Issues +410582,Transportation,Transportation +376747,Justice and Law Enforcement,Justice et application des lois +386959,Infrastructure,Infrastructure +380389,Transportation,Transports +373271,Privacy and Access to Information,Privacy and Access to Information +374337,Climate,Climate +374337,Health,Health +374337,International Development,International Development +397332,Privacy and Access to Information,Privacy and Access to Information +389524,Consumer Issues,Consumer Issues +381864,Industry,Industry +410591,Transportation,Transportation +394029,Financial Institutions,Financial Institutions +433234,International Relations,International Relations +404928,International Trade,International Trade +394931,Mining,Mining +394931,Taxation and Finance,Taxation and Finance +373292,Budget,Budget +373295,Budget,Budget +383071,Transportation,Transportation +425304,Small Business,Small Business +376511,Industry,Industry +383753,Government Procurement,Government Procurement +373308,Infrastructure,Infrastructure +393722,Economic Development,Economic Development +380844,Health,Health +380845,International Relations,International Relations +373905,Defence,Defence +375494,Fisheries,Fisheries +375490,Government Procurement,Government Procurement +373944,Industry,Industry +375494,Transportation,Transportation +378292,International Trade,International Trade +375550,Infrastructure,Infrastructure +375654,Regional Development,Regional Development +382409,Fisheries,Fisheries +395023,Government Procurement,Government Procurement +488457,Labour,Labour +497667,Taxation and Finance,Taxation and Finance +410784,Taxation and Finance,Taxation and Finance +376388,Infrastructure,Infrastructure +376388,Regional Development,Regional Development +377016,Infrastructure,Infrastructure +377016,Regional Development,Regional Development +376199,Regional Development,Regional Development +381162,Infrastructure,Infrastructure +470872,Economic Development,Economic Development +443070,Energy,Energy +478965,Environment,Environment +512163,Transportation,Transportation +529804,Taxation and Finance,Taxation and Finance +462681,International Relations,International Relations +462687,Energy,Energy +502334,Industry,Industry +462681,International Trade,International Trade +459252,Internal Trade,Internal Trade +459252,Environment,Environment +462687,Health,Health +394213,Agriculture,Agriculture +394213,International Trade,International Trade +400429,Economic Development,Economic Development +374218,Housing,Housing +374159,Research and Development,Research and Development +393961,Industry,Industry +374608,Energy,Energy +478088,Climate,Climate +374577,International Development,International Development +378431,Employment and Training,Employment and Training +375705,Economic Development,Economic Development +521998,Internal Trade,Internal Trade +423330,Labour,Labour +423330,Transportation,Transportation +439541,Health,Health +454414,Climate,Climate +473853,Economic Development,Economic Development +454414,Employment and Training,Employment and Training +454414,Environment,Environment +473853,Industry,Industry +454414,Infrastructure,Infrastructure +454414,International Trade,International Trade +473853,Small Business,Small Business +373494,Economic Development,Economic Development +373493,Economic Development,Economic Development +373491,Economic Development,Economic Development +411303,Mining,Mining +411303,International Relations,International Relations +413925,International Trade,International Trade +381223,Economic Development,Economic Development +374691,Budget,Budget +425892,Taxation and Finance,Taxation and Finance +375609,Employment and Training,Employment and Training +375605,Economic Development,Economic Development +375605,Government Procurement,Government Procurement +381523,Economic Development,Economic Development +375586,Employment and Training,Employment and Training +381523,Government Procurement,Government Procurement +379765,Health,Health +405151,International Development,International Development +373509,Economic Development,Economic Development +409233,Infrastructure,Infrastructure +373515,Regional Development,Regional Development +373515,Tourism,Tourism +373517,Regional Development,Regional Development +373517,Tourism,Tourism +440538,Economic Development,Economic Development +400109,Environment,Environment +373736,Government Procurement,Government Procurement +373556,Budget,Budget +373556,Economic Development,Economic Development +440584,Housing,Housing +440584,Small Business,Small Business +373556,Industry,Industry +374322,Employment and Training,Employment and Training +375143,Environment,Environment +391890,Transportation,Transportation +391888,Transportation,Transportation +391886,Transportation,Transportation +391885,Transportation,Transportation +391884,Transportation,Transportation +391883,Transportation,Transportation +391878,Transportation,Transportation +391877,Transportation,Transportation +391876,Transportation,Transportation +391874,Transportation,Transportation +388922,Transportation,Transportation +386362,Transportation,Transportation +486140,Transportation,Transportation +486138,Transportation,Transportation +486137,Transportation,Transportation +483418,Transportation,Transportation +483416,Transportation,Transportation +483415,Transportation,Transportation +483414,Transportation,Transportation +481489,Transportation,Transportation +479207,Transportation,Transportation +478965,Transportation,Transportation +477588,Transportation,Transportation +475299,Transportation,Transportation +475298,Transportation,Transportation +475297,Transportation,Transportation +475296,Transportation,Transportation +475145,Transportation,Transportation +472176,Transportation,Transportation +472171,Transportation,Transportation +472169,Transportation,Transportation +470664,Transportation,Transportation +470647,Transportation,Transportation +466875,Transportation,Transportation +456852,Transportation,Transportation +456851,Transportation,Transportation +456850,Transportation,Transportation +456849,Transportation,Transportation +456848,Transportation,Transportation +455371,Transportation,Transportation +455369,Transportation,Transportation +455368,Transportation,Transportation +455367,Transportation,Transportation +455366,Transportation,Transportation +455365,Transportation,Transportation +455364,Transportation,Transportation +455358,Transportation,Transportation +454311,Transportation,Transportation +448334,Transportation,Transportation +446986,Transportation,Transportation +445385,Transportation,Transportation +445175,Transportation,Transportation +443451,Transportation,Transportation +443450,Transportation,Transportation +443070,Transportation,Transportation +443069,Transportation,Transportation +443065,Transportation,Transportation +537316,Transportation,Transportation +535844,Transportation,Transportation +535841,Transportation,Transportation +535838,Transportation,Transportation +535837,Transportation,Transportation +535834,Transportation,Transportation +535833,Transportation,Transportation +530326,Transportation,Transportation +521155,Transportation,Transportation +518747,Transportation,Transportation +512165,Transportation,Transportation +512164,Transportation,Transportation +529803,Taxation and Finance,Taxation and Finance +477996,Taxation and Finance,Taxation and Finance +462687,Taxation and Finance,Taxation and Finance +462681,Taxation and Finance,Taxation and Finance +542088,Taxation and Finance,Taxation and Finance +502334,International Relations,International Relations +498644,International Relations,International Relations +495980,International Relations,International Relations +477990,International Relations,International Relations +477981,International Relations,International Relations +463426,International Relations,International Relations +462687,International Relations,International Relations +462681,Energy,Energy +459252,Energy,Energy +463426,Energy,Energy +498644,Industry,Industry +495980,Industry,Industry +477996,Industry,Industry +477990,Industry,Industry +477981,Industry,Industry +463426,Industry,Industry +462687,Industry,Industry +462681,Industry,Industry +459252,Industry,Industry +459252,International Trade,International Trade +452190,International Trade,International Trade +393091,International Trade,International Trade +542088,International Trade,International Trade +529804,International Trade,International Trade +529803,International Trade,International Trade +523305,International Trade,International Trade +502334,International Trade,International Trade +495980,International Trade,International Trade +477996,International Trade,International Trade +477990,International Trade,International Trade +477981,International Trade,International Trade +463426,International Trade,International Trade +462687,International Trade,International Trade +462681,Health,Health +459252,Health,Health +502334,Health,Health +498644,Health,Health +495980,Health,Health +477996,Health,Health +477990,Health,Health +477981,Health,Health +472868,Health,Health +463426,Health,Health +394212,Agriculture,Agriculture +394211,Agriculture,Agriculture +394212,International Trade,International Trade +394211,International Trade,International Trade +461124,Economic Development,Economic Development +421987,Economic Development,Economic Development +416196,Economic Development,Economic Development +416192,Economic Development,Economic Development +416153,Economic Development,Economic Development +416150,Economic Development,Economic Development +416147,Economic Development,Economic Development +414000,Economic Development,Economic Development +403040,Economic Development,Economic Development +403038,Economic Development,Economic Development +403037,Economic Development,Economic Development +403036,Economic Development,Economic Development +403033,Economic Development,Economic Development +403029,Economic Development,Economic Development +374158,Research and Development,Research and Development +374606,Energy,Energy +374602,Energy,Energy +393961,Energy,Energy +472899,Climate,Climate +463991,Climate,Climate +376266,Climate,Climate +541949,Climate,Climate +540187,Climate,Climate +535653,Climate,Climate +514211,Climate,Climate +513087,Climate,Climate +511332,Climate,Climate +502513,Climate,Climate +499504,Climate,Climate +495604,Climate,Climate +495603,Climate,Climate +495602,Climate,Climate +495601,Climate,Climate +495599,Climate,Climate +491254,Climate,Climate +491253,Climate,Climate +491247,Climate,Climate +486959,Climate,Climate +485091,Climate,Climate +482262,Climate,Climate +479749,Climate,Climate +375706,Employment and Training,Employment and Training +374569,Employment and Training,Employment and Training +375704,Economic Development,Economic Development +423329,Labour,Labour +413860,Labour,Labour +527055,Labour,Labour +521998,Labour,Labour +511866,Labour,Labour +483382,Labour,Labour +474528,Labour,Labour +452463,Labour,Labour +448629,Labour,Labour +448627,Labour,Labour +448623,Labour,Labour +441684,Labour,Labour +441682,Labour,Labour +441680,Labour,Labour +441678,Labour,Labour +441673,Labour,Labour +436702,Labour,Labour +429780,Labour,Labour +423333,Labour,Labour +413861,Transportation,Transportation +413860,Transportation,Transportation +386137,Transportation,Transportation +386136,Transportation,Transportation +386135,Transportation,Transportation +386134,Transportation,Transportation +527055,Transportation,Transportation +521998,Transportation,Transportation +511866,Transportation,Transportation +483382,Transportation,Transportation +452463,Transportation,Transportation +448629,Transportation,Transportation +448623,Transportation,Transportation +441684,Transportation,Transportation +441682,Transportation,Transportation +441680,Transportation,Transportation +441678,Transportation,Transportation +441673,Transportation,Transportation +436702,Transportation,Transportation +429780,Transportation,Transportation +425875,Transportation,Transportation +425874,Transportation,Transportation +425873,Transportation,Transportation +423333,Transportation,Transportation +473853,Climate,Climate +454414,Economic Development,Economic Development +454414,Industry,Industry +454414,Small Business,Small Business +373489,Economic Development,Economic Development +373492,Economic Development,Economic Development +373490,Economic Development,Economic Development +471707,Economic Development,Economic Development +410435,Mining,Mining +408315,Mining,Mining +413925,Mining,Mining +408315,International Relations,International Relations +411303,International Trade,International Trade +408315,International Trade,International Trade +381220,Economic Development,Economic Development +381218,Economic Development,Economic Development +387381,Economic Development,Economic Development +374690,Budget,Budget +374686,Budget,Budget +438844,Budget,Budget +438842,Budget,Budget +438841,Budget,Budget +438840,Budget,Budget +390903,Budget,Budget +390894,Budget,Budget +390891,Budget,Budget +390884,Budget,Budget +374693,Budget,Budget +374692,Budget,Budget +399878,Taxation and Finance,Taxation and Finance +399875,Taxation and Finance,Taxation and Finance +375587,Employment and Training,Employment and Training +373506,Employment and Training,Employment and Training +381533,Employment and Training,Employment and Training +381531,Employment and Training,Employment and Training +381529,Employment and Training,Employment and Training +381523,Employment and Training,Employment and Training +381515,Employment and Training,Employment and Training +381513,Employment and Training,Employment and Training +381494,Employment and Training,Employment and Training +375587,Economic Development,Economic Development +373506,Economic Development,Economic Development +381531,Economic Development,Economic Development +381517,Economic Development,Economic Development +381515,Economic Development,Economic Development +381494,Economic Development,Economic Development +375608,Economic Development,Economic Development +375584,Government Procurement,Government Procurement +373506,Government Procurement,Government Procurement +381529,Government Procurement,Government Procurement +381517,Government Procurement,Government Procurement +381513,Government Procurement,Government Procurement +381494,Government Procurement,Government Procurement +375609,Government Procurement,Government Procurement +381514,Economic Development,Economic Development +381513,Economic Development,Economic Development +375609,Economic Development,Economic Development +375586,Economic Development,Economic Development +375584,Economic Development,Economic Development +373507,Economic Development,Economic Development +381533,Economic Development,Economic Development +381529,Economic Development,Economic Development +375584,Employment and Training,Employment and Training +373507,Employment and Training,Employment and Training +381517,Employment and Training,Employment and Training +381514,Employment and Training,Employment and Training +375608,Employment and Training,Employment and Training +375605,Employment and Training,Employment and Training +381515,Government Procurement,Government Procurement +381514,Government Procurement,Government Procurement +375608,Government Procurement,Government Procurement +375587,Government Procurement,Government Procurement +375586,Government Procurement,Government Procurement +373507,Government Procurement,Government Procurement +381533,Government Procurement,Government Procurement +381531,Government Procurement,Government Procurement +376553,Health,Health +375819,Health,Health +405153,Health,Health +405151,Health,Health +402774,Health,Health +402773,Health,Health +397693,Health,Health +397055,Health,Health +396079,Health,Health +391229,Health,Health +389798,Health,Health +386480,Health,Health +386479,Health,Health +384401,Health,Health +384400,Health,Health +382108,Health,Health +380909,Health,Health +402774,International Development,International Development +402773,International Development,International Development +397693,International Development,International Development +391229,International Development,International Development +389798,International Development,International Development +386480,International Development,International Development +386479,International Development,International Development +384401,International Development,International Development +383001,International Development,International Development +382108,International Development,International Development +376553,International Development,International Development +405153,International Development,International Development +412153,Economic Development,Economic Development +373509,Infrastructure,Infrastructure +509550,Infrastructure,Infrastructure +415871,Infrastructure,Infrastructure +412153,Infrastructure,Infrastructure +440368,Economic Development,Economic Development +400109,Economic Development,Economic Development +378086,Economic Development,Economic Development +378085,Economic Development,Economic Development +374352,Economic Development,Economic Development +374351,Economic Development,Economic Development +467667,Economic Development,Economic Development +467665,Economic Development,Economic Development +440540,Economic Development,Economic Development +440540,Environment,Environment +373553,Budget,Budget +440584,Budget,Budget +373553,Economic Development,Economic Development +440584,Economic Development,Economic Development +373553,Industry,Industry +374318,Employment and Training,Employment and Training +375139,Environment,Environment +375135,Environment,Environment +375135,Fisheries,Fisheries +411848,Fisheries,Fisheries +411846,Fisheries,Fisheries +411845,Fisheries,Fisheries +404091,Fisheries,Fisheries +375144,Fisheries,Fisheries +375143,Fisheries,Fisheries +375139,Fisheries,Fisheries +379648,Agriculture,Agriculture +379648,Health,Santé +379646,Health,Santé +417176,Privacy and Access to Information,Privacy and Access to Information +373640,Economic Development,Economic Development +373639,Economic Development,Economic Development +374318,Government Procurement,Government Procurement +375853,Transportation,Transportation +375852,Transportation,Transportation +383119,Transportation,Transportation +381176,Transportation,Transportation +381174,Transportation,Transportation +380398,Transportation,Transportation +380397,Transportation,Transportation +380396,Transportation,Transportation +375857,Transportation,Transportation +375856,Transportation,Transportation +375855,Transportation,Transportation +441806,Research and Development,Research and Development +417494,Research and Development,Research and Development +391903,Research and Development,Research and Development +391892,Research and Development,Research and Development +391880,Research and Development,Research and Development +391874,Research and Development,Research and Development +388922,Research and Development,Research and Development +384654,Research and Development,Research and Development +384652,Research and Development,Research and Development +384648,Research and Development,Research and Development +382787,Research and Development,Research and Development +373658,Research and Development,Research and Development +448334,Research and Development,Research and Development +446986,Research and Development,Research and Development +445385,Research and Development,Research and Development +445175,Research and Development,Research and Development +443451,Research and Development,Research and Development +443450,Research and Development,Research and Development +443070,Research and Development,Research and Development +443069,Research and Development,Research and Development +378239,Budget,Budget +373682,Budget,Budget +412615,Budget,Budget +375346,Defence,Defence +380505,Taxation and Finance,Impôts et finances +375780,Taxation and Finance,Impôts et finances +373765,Economic Development,Economic Development +379391,Health,Health +379364,Health,Health +379412,Health,Health +379403,Health,Health +400012,Economic Development,Développement économique +446119,Industry,Industrie +446117,Industry,Industrie +445924,Industry,Industrie +377527,Climate,Climate +374761,Climate,Climate +378289,Climate,Climate +378270,Climate,Climate +378269,Climate,Climate +378268,Climate,Climate +377530,Climate,Climate +377527,Energy,Energy +374761,Energy,Energy +378289,Energy,Energy +378270,Energy,Energy +378269,Energy,Energy +378268,Energy,Energy +377530,Energy,Energy +377527,Environment,Environment +374761,Environment,Environment +378289,Environment,Environment +378270,Environment,Environment +378269,Environment,Environment +378268,Environment,Environment +377530,Environment,Environment +380388,Climate,Climate +380386,Climate,Climate +380380,Climate,Climate +380341,Climate,Climate +380340,Climate,Climate +380336,Climate,Climate +375341,Climate,Climate +375221,Climate,Climate +375220,Climate,Climate +375219,Climate,Climate +380392,Climate,Climate +375222,Economic Development,Economic Development +375220,Economic Development,Economic Development +380392,Economic Development,Economic Development +380390,Economic Development,Economic Development +380388,Economic Development,Economic Development +380386,Economic Development,Economic Development +380380,Economic Development,Economic Development +380341,Economic Development,Economic Development +380340,Economic Development,Economic Development +380339,Economic Development,Economic Development +380338,Economic Development,Economic Development +380337,Economic Development,Economic Development +380336,Economic Development,Economic Development +375339,Economic Development,Economic Development +375339,Energy,Energy +375219,Energy,Energy +380386,Energy,Energy +375220,Environment,Environment +375219,Environment,Environment +380392,Environment,Environment +380386,Environment,Environment +380341,Environment,Environment +380336,Environment,Environment +375341,Environment,Environment +375338,Environment,Environment +375222,Environment,Environment +375221,Research and Development,Research and Development +375220,Research and Development,Research and Development +380392,Research and Development,Research and Development +380390,Research and Development,Research and Development +380388,Research and Development,Research and Development +380386,Research and Development,Research and Development +380380,Research and Development,Research and Development +380341,Research and Development,Research and Development +380340,Research and Development,Research and Development +380339,Research and Development,Research and Development +375341,Research and Development,Research and Development +375339,Research and Development,Research and Development +375338,Research and Development,Research and Development +389497,Consumer Issues,Consumer Issues +381834,Consumer Issues,Consumer Issues +521278,Agriculture,Agriculture +513860,Agriculture,Agriculture +446231,Agriculture,Agriculture +446230,Agriculture,Agriculture +446120,Agriculture,Agriculture +420520,Agriculture,Agriculture +396795,Agriculture,Agriculture +396735,Agriculture,Agriculture +540903,Agriculture,Agriculture +376641,Defence,Defence +376641,Economic Development,Economic Development +380943,Housing,Housing +376641,Industry,Industry +376641,Infrastructure,Infrastructure +376641,Regional Development,Regional Development +376641,Security,Security +531747,Economic Development,Economic Development +531743,Economic Development,Economic Development +395168,Economic Development,Economic Development +531747,Environment,Environment +531743,Environment,Environment +395168,Environment,Environment +379048,Environment,Environment +506831,Environment,Environment +394322,Environment,Environment +394313,Environment,Environment +381167,Environment,Environment +376646,Environment,Environment +376640,Environment,Environment +373756,Environment,Environment +506833,Environment,Environment +379434,Economic Development,Economic Development +375753,Economic Development,Economic Development +416560,Economic Development,Economic Development +397049,Economic Development,Economic Development +385451,Economic Development,Economic Development +385443,Economic Development,Economic Development +375753,Small Business,Small Business +416560,Small Business,Small Business +397049,Small Business,Small Business +385451,Small Business,Small Business +385443,Small Business,Small Business +381519,Small Business,Small Business +382153,Taxation and Finance,Taxation and Finance +382152,Taxation and Finance,Taxation and Finance +373814,Taxation and Finance,Taxation and Finance +373810,Taxation and Finance,Taxation and Finance +373809,Taxation and Finance,Taxation and Finance +410472,Taxation and Finance,Taxation and Finance +410471,Taxation and Finance,Taxation and Finance +401288,Taxation and Finance,Taxation and Finance +401287,Taxation and Finance,Taxation and Finance +392715,Health,Health +375152,Mining,Mining +383640,Agriculture,Agriculture +383641,Climate,Climate +391966,Climate,Climate +385663,Climate,Climate +385660,Climate,Climate +385655,Climate,Climate +385625,Climate,Climate +382313,Climate,Climate +381059,Climate,Climate +374514,Climate,Climate +374514,Economic Development,Economic Development +374061,Economic Development,Economic Development +382313,Economic Development,Economic Development +375164,Agriculture,Agriculture +439304,Climate,Climate +382891,Energy,Energy +382890,Energy,Energy +377406,Energy,Energy +377404,Energy,Energy +377401,Energy,Energy +449592,Energy,Energy +439304,Energy,Energy +439296,Energy,Energy +425373,Energy,Energy +420324,Energy,Energy +420320,Energy,Energy +425375,Industry,Industry +420320,Industry,Industry +444905,Industry,Industry +439296,Research and Development,Research and Development +428741,Research and Development,Research and Development +425375,Research and Development,Research and Development +425373,Research and Development,Research and Development +420324,Research and Development,Research and Development +420320,Research and Development,Research and Development +382891,Research and Development,Research and Development +377401,Research and Development,Research and Development +378593,Economic Development,Economic Development +378593,Government Procurement,Government Procurement +378593,Industry,Industry +378593,Infrastructure,Infrastructure +378596,International Trade,International Trade +378593,International Trade,International Trade +378593,Transportation,Transportation +441104,Tourism,Tourism +433641,Tourism,Tourism +419345,Tourism,Tourism +415077,Tourism,Tourism +415074,Tourism,Tourism +415071,Tourism,Tourism +411519,Tourism,Tourism +411518,Tourism,Tourism +411517,Tourism,Tourism +410695,Tourism,Tourism +397690,Tourism,Tourism +397687,Tourism,Tourism +392658,Tourism,Tourism +387613,Tourism,Tourism +380312,Tourism,Tourism +410695,Transportation,Transportation +402792,Transportation,Transportation +385622,Transportation,Transportation +380312,Transportation,Transportation +380311,Transportation,Transportation +433641,Transportation,Transportation +419347,Transportation,Transportation +415077,Transportation,Transportation +415074,Transportation,Transportation +415071,Transportation,Transportation +411519,Transportation,Transportation +411518,Transportation,Transportation +382364,Small Business,Small Business +380920,Small Business,Small Business +392513,Small Business,Small Business +392513,Tourism,Tourism +392510,Tourism,Tourism +382364,Tourism,Tourism +392513,Transportation,Transportation +392510,Transportation,Transportation +387896,Transportation,Transportation +387895,Transportation,Transportation +385653,Transportation,Transportation +382363,Transportation,Transportation +380920,Transportation,Transportation +380918,Transportation,Transportation +401355,Agriculture,Agriculture +377312,Agriculture,Agriculture +382448,International Trade,International Trade +377312,International Trade,International Trade +401360,International Trade,International Trade +375277,Taxation and Finance,Impôts et finances +374857,Taxation and Finance,Impôts et finances +388708,Taxation and Finance,Impôts et finances +385855,Taxation and Finance,Impôts et finances +383799,Taxation and Finance,Impôts et finances +379560,Taxation and Finance,Impôts et finances +464908,Economic Development,Economic Development +464906,Economic Development,Economic Development +417381,Economic Development,Economic Development +417380,Economic Development,Economic Development +415547,Economic Development,Economic Development +410259,Economic Development,Economic Development +410257,Economic Development,Economic Development +407367,Economic Development,Economic Development +407366,Economic Development,Economic Development +394002,Economic Development,Economic Development +394001,Economic Development,Economic Development +394000,Economic Development,Economic Development +393984,Economic Development,Economic Development +391781,Economic Development,Economic Development +387404,Economic Development,Economic Development +387402,Economic Development,Economic Development +387401,Economic Development,Economic Development +385152,Economic Development,Economic Development +385147,Economic Development,Economic Development +385146,Economic Development,Economic Development +385144,Economic Development,Economic Development +382734,Economic Development,Economic Development +382730,Economic Development,Economic Development +379089,Economic Development,Economic Development +379088,Economic Development,Economic Development +379086,Economic Development,Economic Development +379077,Economic Development,Economic Development +379076,Economic Development,Economic Development +379072,Economic Development,Economic Development +379071,Economic Development,Economic Development +379070,Economic Development,Economic Development +379069,Economic Development,Economic Development +379067,Economic Development,Economic Development +379066,Economic Development,Economic Development +379065,Economic Development,Economic Development +379064,Economic Development,Economic Development +379063,Economic Development,Economic Development +377541,Economic Development,Economic Development +377176,Economic Development,Economic Development +531738,Economic Development,Economic Development +531737,Economic Development,Economic Development +531736,Economic Development,Economic Development +531735,Economic Development,Economic Development +531734,Economic Development,Economic Development +531733,Economic Development,Economic Development +500047,Economic Development,Economic Development +498389,Economic Development,Economic Development +493884,Economic Development,Economic Development +489347,Economic Development,Economic Development +484220,Economic Development,Economic Development +464928,Economic Development,Economic Development +464924,Economic Development,Economic Development +464920,Economic Development,Economic Development +464916,Economic Development,Economic Development +531734,Environment,Environment +531733,Environment,Environment +377541,Environment,Environment +377505,Environment,Environment +377179,Environment,Environment +377177,Environment,Environment +377175,Environment,Environment +377161,Environment,Environment +394002,Environment,Environment +393984,Environment,Environment +391780,Environment,Environment +391778,Environment,Environment +387402,Environment,Environment +387401,Environment,Environment +387400,Environment,Environment +387399,Environment,Environment +385152,Environment,Environment +385150,Environment,Environment +385147,Environment,Environment +385146,Environment,Environment +382734,Environment,Environment +382733,Environment,Environment +382732,Environment,Environment +382731,Environment,Environment +382730,Environment,Environment +382727,Environment,Environment +382726,Environment,Environment +380445,Environment,Environment +379089,Environment,Environment +379088,Environment,Environment +379086,Environment,Environment +379082,Environment,Environment +379080,Environment,Environment +379078,Environment,Environment +379077,Environment,Environment +379075,Environment,Environment +379073,Environment,Environment +379072,Environment,Environment +379071,Environment,Environment +379070,Environment,Environment +379069,Environment,Environment +379067,Environment,Environment +379066,Environment,Environment +379065,Environment,Environment +379064,Environment,Environment +379063,Environment,Environment +379062,Environment,Environment +500609,Environment,Environment +500047,Environment,Environment +491086,Environment,Environment +489347,Environment,Environment +484220,Environment,Environment +464928,Environment,Environment +464924,Environment,Environment +464920,Environment,Environment +464916,Environment,Environment +464911,Environment,Environment +464908,Environment,Environment +464906,Environment,Environment +464886,Environment,Environment +464880,Environment,Environment +417380,Environment,Environment +415547,Environment,Environment +410259,Environment,Environment +410257,Environment,Environment +408478,Environment,Environment +407367,Environment,Environment +407366,Environment,Environment +405466,Environment,Environment +403749,Environment,Environment +397520,Environment,Environment +397519,Environment,Environment +531738,Environment,Environment +531737,Environment,Environment +531736,Environment,Environment +393997,Education,Education +393984,Education,Education +391780,Education,Education +379077,Education,Education +379073,Education,Education +379071,Education,Education +379069,Education,Education +379066,Education,Education +379061,Education,Education +377178,Education,Education +379055,Education,Education +379053,Economic Development,Economic Development +379051,Economic Development,Economic Development +385168,Economic Development,Economic Development +385162,Economic Development,Economic Development +385160,Economic Development,Economic Development +385157,Economic Development,Economic Development +379119,Economic Development,Economic Development +379053,Environment,Environment +379051,Environment,Environment +385168,Environment,Environment +385167,Environment,Environment +385162,Environment,Environment +385160,Environment,Environment +379119,Environment,Environment +379060,Environment,Environment +425347,Government Procurement,Government Procurement +375683,Government Procurement,Government Procurement +452057,Government Procurement,Government Procurement +449139,Government Procurement,Government Procurement +446475,Government Procurement,Government Procurement +473855,Government Procurement,Government Procurement +473854,Government Procurement,Government Procurement +438311,Government Procurement,Government Procurement +438310,Government Procurement,Government Procurement +438309,Government Procurement,Government Procurement +435488,Government Procurement,Government Procurement +429151,Government Procurement,Government Procurement +429145,Government Procurement,Government Procurement +429143,Government Procurement,Government Procurement +429142,Government Procurement,Government Procurement +429137,Government Procurement,Government Procurement +429128,Government Procurement,Government Procurement +404374,Government Procurement,Government Procurement +522802,Government Procurement,Government Procurement +522797,Government Procurement,Government Procurement +522788,Government Procurement,Government Procurement +481637,Government Procurement,Government Procurement +473855,Infrastructure,Infrastructure +473854,Infrastructure,Infrastructure +522802,Infrastructure,Infrastructure +481637,Infrastructure,Infrastructure +414631,International Trade,International Trade +522797,International Trade,International Trade +474238,International Trade,International Trade +473857,International Trade,International Trade +461112,International Trade,International Trade +459060,International Trade,International Trade +435489,International Trade,International Trade +435487,International Trade,International Trade +435486,International Trade,International Trade +431372,International Trade,International Trade +431371,International Trade,International Trade +431370,International Trade,International Trade +431367,International Trade,International Trade +429155,International Trade,International Trade +429151,International Trade,International Trade +429149,International Trade,International Trade +429148,International Trade,International Trade +429147,International Trade,International Trade +429145,International Trade,International Trade +423100,International Trade,International Trade +418284,International Trade,International Trade +403532,Government Procurement,Government Procurement +374186,Economic Development,Economic Development +374185,Economic Development,Economic Development +402296,Economic Development,Economic Development +402295,Economic Development,Economic Development +402294,Economic Development,Economic Development +374191,Economic Development,Economic Development +374189,Economic Development,Economic Development +443087,Small Business,Small Business +443083,Small Business,Small Business +410807,Small Business,Small Business +395310,Small Business,Small Business +395309,Small Business,Small Business +395308,Small Business,Small Business +386243,Small Business,Small Business +380098,Small Business,Small Business +374199,Small Business,Small Business +398262,Budget,Budget +378956,Consumer Issues,Consumer Issues +378764,Consumer Issues,Consumer Issues +386192,Consumer Issues,Consumer Issues +378764,Health,Health +422011,Health,Health +386192,Health,Health +386191,Health,Health +386191,Industry,Industry +378956,Industry,Industry +398262,Industry,Industry +431975,Intellectual Property,Intellectual Property +422011,Intellectual Property,Intellectual Property +398262,Intellectual Property,Intellectual Property +386192,Intellectual Property,Intellectual Property +386191,Intellectual Property,Intellectual Property +382702,Intellectual Property,Intellectual Property +378956,Intellectual Property,Intellectual Property +378988,Employment and Training,Emploi et formation +375762,Employment and Training,Emploi et formation +402796,Employment and Training,Emploi et formation +402794,Employment and Training,Emploi et formation +398342,Employment and Training,Emploi et formation +398341,Employment and Training,Emploi et formation +398340,Employment and Training,Emploi et formation +398339,Employment and Training,Emploi et formation +398338,Employment and Training,Emploi et formation +398337,Employment and Training,Emploi et formation +398336,Employment and Training,Emploi et formation +398335,Employment and Training,Emploi et formation +396211,Employment and Training,Emploi et formation +396210,Employment and Training,Emploi et formation +396206,Employment and Training,Emploi et formation +396205,Employment and Training,Emploi et formation +396202,Employment and Training,Emploi et formation +396201,Employment and Training,Emploi et formation +393711,Employment and Training,Emploi et formation +393710,Employment and Training,Emploi et formation +393709,Employment and Training,Emploi et formation +392267,Employment and Training,Emploi et formation +389977,Employment and Training,Emploi et formation +389972,Employment and Training,Emploi et formation +386848,Employment and Training,Emploi et formation +386845,Employment and Training,Emploi et formation +422839,Justice and Law Enforcement,Justice and Law Enforcement +485118,Budget,Budget +485106,Budget,Budget +407071,Budget,Budget +407070,Budget,Budget +407069,Budget,Budget +407068,Budget,Budget +406982,Budget,Budget +404919,Budget,Budget +401160,Budget,Budget +396121,Budget,Budget +396098,Budget,Budget +394272,Budget,Budget +394271,Budget,Budget +394238,Budget,Budget +392707,Budget,Budget +392706,Budget,Budget +389830,Budget,Budget +387345,Budget,Budget +387332,Budget,Budget +385204,Budget,Budget +384561,Budget,Budget +382754,Budget,Budget +382753,Budget,Budget +382752,Budget,Budget +381870,Budget,Budget +374332,Budget,Budget +482523,Budget,Budget +482522,Budget,Budget +482521,Budget,Budget +482520,Budget,Budget +480165,Budget,Budget +480164,Budget,Budget +480163,Budget,Budget +480162,Budget,Budget +480161,Budget,Budget +480160,Budget,Budget +478301,Budget,Budget +478300,Budget,Budget +478299,Budget,Budget +478296,Budget,Budget +476083,Budget,Budget +476082,Budget,Budget +476081,Budget,Budget +476078,Budget,Budget +476076,Budget,Budget +476072,Budget,Budget +476069,Budget,Budget +476065,Budget,Budget +476061,Budget,Budget +476056,Budget,Budget +476047,Budget,Budget +473788,Budget,Budget +473787,Budget,Budget +473786,Budget,Budget +473784,Budget,Budget +473783,Budget,Budget +473782,Budget,Budget +473780,Budget,Budget +473779,Budget,Budget +473778,Budget,Budget +473777,Budget,Budget +473776,Budget,Budget +473775,Budget,Budget +471229,Budget,Budget +471224,Budget,Budget +471213,Budget,Budget +471211,Budget,Budget +471209,Budget,Budget +471205,Budget,Budget +471204,Budget,Budget +471201,Budget,Budget +471199,Budget,Budget +471198,Budget,Budget +468191,Budget,Budget +468190,Budget,Budget +468185,Budget,Budget +468184,Budget,Budget +468183,Budget,Budget +468182,Budget,Budget +464986,Budget,Budget +464985,Budget,Budget +464984,Budget,Budget +464983,Budget,Budget +462919,Budget,Budget +462918,Budget,Budget +461845,Budget,Budget +461761,Budget,Budget +460237,Budget,Budget +460192,Budget,Budget +459671,Budget,Budget +459670,Budget,Budget +458772,Budget,Budget +458714,Budget,Budget +458711,Budget,Budget +457745,Budget,Budget +457744,Budget,Budget +432431,Budget,Budget +432298,Budget,Budget +431996,Budget,Budget +431496,Budget,Budget +431495,Budget,Budget +431494,Budget,Budget +431493,Budget,Budget +425760,Budget,Budget +421202,Budget,Budget +421196,Budget,Budget +419231,Budget,Budget +419229,Budget,Budget +417735,Budget,Budget +417734,Budget,Budget +415564,Budget,Budget +415520,Budget,Budget +415495,Budget,Budget +413629,Budget,Budget +413622,Budget,Budget +409965,Budget,Budget +409962,Budget,Budget +409961,Budget,Budget +408083,Budget,Budget +408080,Budget,Budget +408076,Budget,Budget +408066,Budget,Budget +544678,Budget,Budget +544677,Budget,Budget +544298,Budget,Budget +544296,Budget,Budget +541956,Budget,Budget +541955,Budget,Budget +541952,Budget,Budget +540248,Budget,Budget +537997,Budget,Budget +537996,Budget,Budget +532015,Budget,Budget +529654,Budget,Budget +529652,Budget,Budget +523269,Budget,Budget +520219,Budget,Budget +520217,Budget,Budget +520215,Budget,Budget +520214,Budget,Budget +518308,Budget,Budget +518306,Budget,Budget +518291,Budget,Budget +518281,Budget,Budget +514808,Budget,Budget +514806,Budget,Budget +514247,Budget,Budget +514245,Budget,Budget +514239,Budget,Budget +513212,Budget,Budget +513211,Budget,Budget +513210,Budget,Budget +513209,Budget,Budget +513206,Budget,Budget +513204,Budget,Budget +511012,Budget,Budget +511011,Budget,Budget +511008,Budget,Budget +511003,Budget,Budget +508846,Budget,Budget +508844,Budget,Budget +508842,Budget,Budget +508841,Budget,Budget +508839,Budget,Budget +508836,Budget,Budget +505506,Budget,Budget +505504,Budget,Budget +505501,Budget,Budget +505499,Budget,Budget +505498,Budget,Budget +505497,Budget,Budget +505495,Budget,Budget +505493,Budget,Budget +505490,Budget,Budget +502713,Budget,Budget +502695,Budget,Budget +502693,Budget,Budget +502692,Budget,Budget +502691,Budget,Budget +502689,Budget,Budget +502688,Budget,Budget +502686,Budget,Budget +502685,Budget,Budget +499477,Budget,Budget +499476,Budget,Budget +499475,Budget,Budget +499469,Budget,Budget +499468,Budget,Budget +499467,Budget,Budget +499463,Budget,Budget +495387,Budget,Budget +495382,Budget,Budget +495380,Budget,Budget +495376,Budget,Budget +495369,Budget,Budget +495365,Budget,Budget +495361,Budget,Budget +495356,Budget,Budget +495349,Budget,Budget +495345,Budget,Budget +493708,Budget,Budget +493705,Budget,Budget +491734,Budget,Budget +491732,Budget,Budget +491717,Budget,Budget +491714,Budget,Budget +491712,Budget,Budget +487821,Budget,Budget +487817,Budget,Budget +487816,Budget,Budget +487813,Budget,Budget +487809,Budget,Budget +487807,Budget,Budget +487801,Budget,Budget +485151,Budget,Budget +485148,Budget,Budget +485145,Budget,Budget +485140,Budget,Budget +485130,Budget,Budget +374339,Infrastructure,Infrastructure +465454,Government Procurement,Government Procurement +465451,Government Procurement,Government Procurement +374415,Government Procurement,Government Procurement +539992,Government Procurement,Government Procurement +514502,Government Procurement,Government Procurement +501149,Government Procurement,Government Procurement +501140,Government Procurement,Government Procurement +501139,Government Procurement,Government Procurement +493734,Government Procurement,Government Procurement +489763,Government Procurement,Government Procurement +489761,Government Procurement,Government Procurement +385286,International Trade,International Trade +385284,International Trade,International Trade +378418,International Trade,International Trade +378416,International Trade,International Trade +378415,International Trade,International Trade +378413,International Trade,International Trade +410179,International Trade,International Trade +409460,International Trade,International Trade +409457,International Trade,International Trade +404373,International Trade,International Trade +404372,International Trade,International Trade +404371,International Trade,International Trade +403825,International Trade,International Trade +409455,Government Procurement,Government Procurement +404373,Government Procurement,Government Procurement +404372,Government Procurement,Government Procurement +404371,Government Procurement,Government Procurement +403825,Government Procurement,Government Procurement +391305,Government Procurement,Government Procurement +385288,Government Procurement,Government Procurement +385286,Government Procurement,Government Procurement +385284,Government Procurement,Government Procurement +383495,Government Procurement,Government Procurement +383494,Government Procurement,Government Procurement +378418,Government Procurement,Government Procurement +378416,Government Procurement,Government Procurement +378415,Government Procurement,Government Procurement +378413,Government Procurement,Government Procurement +375386,Government Procurement,Government Procurement +532378,Government Procurement,Government Procurement +523148,Government Procurement,Government Procurement +518344,Government Procurement,Government Procurement +422417,Government Procurement,Government Procurement +416572,Government Procurement,Government Procurement +416569,Government Procurement,Government Procurement +413346,Government Procurement,Government Procurement +413342,Government Procurement,Government Procurement +413336,Government Procurement,Government Procurement +410179,Government Procurement,Government Procurement +409464,Government Procurement,Government Procurement +409462,Government Procurement,Government Procurement +409460,Government Procurement,Government Procurement +409459,Government Procurement,Government Procurement +409458,Government Procurement,Government Procurement +523148,Employment and Training,Employment and Training +518344,Employment and Training,Employment and Training +422417,Employment and Training,Employment and Training +416572,Employment and Training,Employment and Training +416569,Employment and Training,Employment and Training +413346,Employment and Training,Employment and Training +413342,Employment and Training,Employment and Training +413336,Employment and Training,Employment and Training +410179,Employment and Training,Employment and Training +409464,Employment and Training,Employment and Training +409462,Employment and Training,Employment and Training +409460,Employment and Training,Employment and Training +409459,Employment and Training,Employment and Training +409458,Employment and Training,Employment and Training +409457,Employment and Training,Employment and Training +409455,Employment and Training,Employment and Training +404373,Employment and Training,Employment and Training +404372,Employment and Training,Employment and Training +404371,Employment and Training,Employment and Training +403825,Employment and Training,Employment and Training +391305,Employment and Training,Employment and Training +385288,Employment and Training,Employment and Training +385286,Employment and Training,Employment and Training +385284,Employment and Training,Employment and Training +378418,Employment and Training,Employment and Training +378416,Employment and Training,Employment and Training +378415,Employment and Training,Employment and Training +378413,Employment and Training,Employment and Training +375386,Employment and Training,Employment and Training +404371,Transportation,Transportation +403825,Transportation,Transportation +404373,Transportation,Transportation +404371,Security,Security +403825,Security,Security +391305,Security,Security +385288,Security,Security +385286,Security,Security +385284,Security,Security +383495,Security,Security +383494,Security,Security +378418,Security,Security +378416,Security,Security +378415,Security,Security +378413,Security,Security +375386,Security,Security +532378,Security,Security +523148,Security,Security +422417,Security,Security +416572,Security,Security +416569,Security,Security +413346,Security,Security +413342,Security,Security +413336,Security,Security +410179,Security,Security +409464,Security,Security +409462,Security,Security +409460,Security,Security +409459,Security,Security +409458,Security,Security +409457,Security,Security +409455,Security,Security +404373,Security,Security +503315,Budget,Budget +498081,Climate,Climate +424555,Forestry,Forestry +498081,Forestry,Forestry +475448,Industry,Industry +424555,Industry,Industry +433727,Industry,Industry +452116,International Trade,International Trade +442621,International Trade,International Trade +452172,International Trade,International Trade +393065,Infrastructure,Infrastructure +383193,Infrastructure,Infrastructure +411279,Infrastructure,Infrastructure +411274,Infrastructure,Infrastructure +410560,Infrastructure,Infrastructure +402728,Infrastructure,Infrastructure +402724,Infrastructure,Infrastructure +402714,Infrastructure,Infrastructure +402711,Infrastructure,Infrastructure +402709,Infrastructure,Infrastructure +402708,Infrastructure,Infrastructure +402706,Infrastructure,Infrastructure +402702,Infrastructure,Infrastructure +402696,Infrastructure,Infrastructure +402640,Infrastructure,Infrastructure +383193,Taxation and Finance,Taxation and Finance +383190,Taxation and Finance,Taxation and Finance +402728,Taxation and Finance,Taxation and Finance +402711,Taxation and Finance,Taxation and Finance +402708,Taxation and Finance,Taxation and Finance +402706,Taxation and Finance,Taxation and Finance +376439,Economic Development,Economic Development +376439,Employment and Training,Employment and Training +380804,Regional Development,Regional Development +380803,Regional Development,Regional Development +420357,Regional Development,Regional Development +410571,Regional Development,Regional Development +410569,Regional Development,Regional Development +384742,Regional Development,Regional Development +384571,Regional Development,Regional Development +384559,Regional Development,Regional Development +384222,Regional Development,Regional Development +376641,Government Procurement,Government Procurement +435915,Environment,Environment +435915,Industry,Industry +413332,Industry,Industry +377235,Industry,Industry +377234,Industry,Industry +377233,Industry,Industry +413326,Industry,Industry +396876,Industry,Industry +413326,International Trade,International Trade +396876,International Trade,International Trade +435916,International Trade,International Trade +435915,International Trade,International Trade +397696,Energy,Energy +409548,Tourism,Tourisme +409542,Tourism,Tourisme +459580,Tourism,Tourisme +457471,Tourism,Tourisme +409591,Tourism,Tourisme +409570,Tourism,Tourisme +409564,Tourism,Tourisme +405523,Climate,Climate +405515,Climate,Climate +391834,Climate,Climate +391832,Climate,Climate +391831,Climate,Climate +380124,Climate,Climate +380123,Climate,Climate +380122,Climate,Climate +380121,Climate,Climate +411354,Economic Development,Economic Development +405515,Economic Development,Economic Development +391832,Economic Development,Economic Development +405523,Energy,Energy +405515,Energy,Energy +391834,Energy,Energy +391832,Energy,Energy +380124,Energy,Energy +380122,Energy,Energy +380121,Energy,Energy +391832,Environment,Environment +380124,Environment,Environment +411354,Environment,Environment +405523,Environment,Environment +380123,Infrastructure,Infrastructure +380122,Infrastructure,Infrastructure +405515,Infrastructure,Infrastructure +391834,Infrastructure,Infrastructure +391832,Infrastructure,Infrastructure +380123,Municipalities,Municipalities +380122,Municipalities,Municipalities +391834,Municipalities,Municipalities +391942,Research and Development,Research and Development +391940,Research and Development,Research and Development +378168,Transportation,Transportation +392545,Transportation,Transportation +378171,Transportation,Transportation +378170,Transportation,Transportation +378169,Infrastructure,Infrastructure +378168,Infrastructure,Infrastructure +392545,Infrastructure,Infrastructure +378171,Infrastructure,Infrastructure +378169,International Trade,International Trade +378168,International Trade,International Trade +392545,International Trade,International Trade +378171,International Trade,International Trade +378169,Regional Development,Regional Development +378168,Regional Development,Regional Development +392545,Regional Development,Regional Development +378171,Regional Development,Regional Development +378169,Economic Development,Economic Development +378168,Economic Development,Economic Development +392545,Economic Development,Economic Development +378171,Economic Development,Economic Development +378168,Environment,Environment +392545,Environment,Environment +378171,Environment,Environment +378170,Environment,Environment +401256,Environment,Environment +401255,Environment,Environment +424532,Environment,Environment +420449,Environment,Environment +419760,Environment,Environment +419552,Environment,Environment +415148,Environment,Environment +414847,Environment,Environment +414845,Environment,Environment +414844,Environment,Environment +414843,Environment,Environment +401256,Transportation,Transportation +401255,Transportation,Transportation +424532,Transportation,Transportation +420449,Transportation,Transportation +419760,Transportation,Transportation +419552,Transportation,Transportation +415148,Transportation,Transportation +414847,Transportation,Transportation +414845,Transportation,Transportation +414844,Transportation,Transportation +414843,Transportation,Transportation +401256,International Trade,International Trade +401255,International Trade,International Trade +424532,International Trade,International Trade +420449,International Trade,International Trade +419760,International Trade,International Trade +419552,International Trade,International Trade +414847,International Trade,International Trade +414845,International Trade,International Trade +414844,International Trade,International Trade +414843,International Trade,International Trade +401256,Fisheries,Fisheries +401255,Fisheries,Fisheries +401255,Internal Trade,Internal Trade +424532,Internal Trade,Internal Trade +415148,Internal Trade,Internal Trade +414842,Internal Trade,Internal Trade +401256,Industry,Industry +401255,Industry,Industry +424532,Industry,Industry +420449,Industry,Industry +419760,Industry,Industry +419552,Industry,Industry +415148,Industry,Industry +414847,Industry,Industry +414845,Industry,Industry +414844,Industry,Industry +414843,Industry,Industry +457472,Tourism,Tourism +409585,Tourism,Tourism +409578,Tourism,Tourism +409567,Tourism,Tourism +409561,Tourism,Tourism +409551,Tourism,Tourism +411857,Climate,Climate +411856,Climate,Climate +411859,Climate,Climate +411857,Infrastructure,Infrastructure +411856,Infrastructure,Infrastructure +411859,Infrastructure,Infrastructure +411857,Research and Development,Research and Development +411856,Research and Development,Research and Development +411859,Research and Development,Research and Development +377486,Climate,Climate +377485,Climate,Climate +377489,Climate,Climate +377488,Climate,Climate +377485,Economic Development,Economic Development +377484,Economic Development,Economic Development +377489,Economic Development,Economic Development +377488,Economic Development,Economic Development +377487,Economic Development,Economic Development +377485,Energy,Energy +377484,Energy,Energy +377489,Energy,Energy +377488,Energy,Energy +377487,Energy,Energy +377485,Environment,Environment +377484,Environment,Environment +377489,Environment,Environment +377488,Environment,Environment +377487,Environment,Environment +377486,Industry,Industry +377485,Industry,Industry +377489,Industry,Industry +377488,Industry,Industry +439564,Environment,Environment +439562,Environment,Environment +435986,Environment,Environment +433838,Environment,Environment +433836,Environment,Environment +433833,Environment,Environment +430757,Environment,Environment +430750,Environment,Environment +430744,Environment,Environment +430741,Environment,Environment +429294,Environment,Environment +429284,Environment,Environment +429273,Environment,Environment +429271,Environment,Environment +424315,Environment,Environment +424314,Environment,Environment +424313,Environment,Environment +420259,Environment,Environment +418306,Environment,Environment +406923,Environment,Environment +406922,Environment,Environment +405498,Environment,Environment +405492,Environment,Environment +405490,Environment,Environment +405487,Environment,Environment +403992,Environment,Environment +403991,Environment,Environment +400893,Environment,Environment +396955,Environment,Environment +392680,Environment,Environment +391768,Environment,Environment +391715,Environment,Environment +391714,Environment,Environment +391713,Environment,Environment +391712,Environment,Environment +385812,Environment,Environment +385809,Environment,Environment +383882,Environment,Environment +382625,Environment,Environment +381544,Environment,Environment +381541,Environment,Environment +381538,Environment,Environment +377224,Environment,Environment +374980,Environment,Environment +543374,Environment,Environment +535157,Environment,Environment +535154,Environment,Environment +535151,Environment,Environment +519787,Environment,Environment +519777,Environment,Environment +519770,Environment,Environment +517220,Environment,Environment +509500,Environment,Environment +475555,Environment,Environment +474032,Environment,Environment +471081,Environment,Environment +471080,Environment,Environment +471078,Environment,Environment +471072,Environment,Environment +468133,Environment,Environment +468130,Environment,Environment +465001,Environment,Environment +465000,Environment,Environment +464999,Environment,Environment +462962,Environment,Environment +462844,Environment,Environment +457603,Environment,Environment +457602,Environment,Environment +457599,Environment,Environment +457598,Environment,Environment +457596,Environment,Environment +457594,Environment,Environment +456028,Environment,Environment +456027,Environment,Environment +456025,Environment,Environment +456023,Environment,Environment +452921,Environment,Environment +452920,Environment,Environment +450321,Environment,Environment +450319,Environment,Environment +448122,Environment,Environment +445829,Environment,Environment +445828,Environment,Environment +445827,Environment,Environment +443958,Environment,Environment +442092,Environment,Environment +442091,Environment,Environment +442090,Environment,Environment +442089,Environment,Environment +442088,Environment,Environment +442087,Environment,Environment +442085,Environment,Environment +442084,Environment,Environment +442082,Environment,Environment +442079,Environment,Environment +442076,Environment,Environment +442069,Environment,Environment +439579,Environment,Environment +439577,Environment,Environment +439573,Environment,Environment +439571,Environment,Environment +439569,Environment,Environment +439567,Environment,Environment +391549,Economic Development,Economic Development +379954,Economic Development,Economic Development +391554,Economic Development,Economic Development +391551,Economic Development,Economic Development +391550,International Trade,International Trade +391549,International Trade,International Trade +379960,International Trade,International Trade +379954,International Trade,International Trade +379952,International Trade,International Trade +379951,International Trade,International Trade +379949,International Trade,International Trade +391554,International Trade,International Trade +377159,Transportation,Transportation +377146,Transportation,Transportation +391554,Transportation,Transportation +391551,Transportation,Transportation +391550,Transportation,Transportation +391549,Transportation,Transportation +383549,Transportation,Transportation +379960,Transportation,Transportation +379954,Transportation,Transportation +379952,Transportation,Transportation +379951,Transportation,Transportation +383174,Pensions,Pensions +382926,Pensions,Pensions +375026,Pensions,Pensions +393824,Pensions,Pensions +393068,Pensions,Pensions +392638,Pensions,Pensions +392308,Pensions,Pensions +392307,Pensions,Pensions +392305,Pensions,Pensions +390595,Pensions,Pensions +384462,Pensions,Pensions +384461,Pensions,Pensions +384096,Pensions,Pensions +384060,Pensions,Pensions +383176,Pensions,Pensions +379411,Economic Development,Economic Development +379394,Economic Development,Economic Development +379411,Energy,Energy +379394,Energy,Energy +379411,Environment,Environment +379394,Environment,Environment +379411,Infrastructure,Infrastructure +379394,Infrastructure,Infrastructure +379411,Transportation,Transportation +379394,Transportation,Transportation +429757,Health,Health +429756,Health,Health +429759,Health,Health +375264,Health,Health +424573,Health,Health +375617,Health,Health +375616,Research and Development,Research and Development +375264,Research and Development,Research and Development +424573,Research and Development,Research and Development +379130,Agriculture,Agriculture +379128,Agriculture,Agriculture +384997,Agriculture,Agriculture +380900,Agriculture,Agriculture +380899,Agriculture,Agriculture +380898,Agriculture,Agriculture +380896,Agriculture,Agriculture +380894,Agriculture,Agriculture +380893,Agriculture,Agriculture +380892,Agriculture,Agriculture +379572,Agriculture,Agriculture +379139,Agriculture,Agriculture +379137,Agriculture,Agriculture +379136,Agriculture,Agriculture +379134,Agriculture,Agriculture +379132,Agriculture,Agriculture +376165,Economic Development,Economic Development +376164,Economic Development,Economic Development +383697,Economic Development,Economic Development +380405,Economic Development,Economic Development +376258,Economic Development,Economic Development +376256,Economic Development,Economic Development +376174,Economic Development,Economic Development +380405,Transportation,Transportation +376258,Transportation,Transportation +376256,Transportation,Transportation +376174,Transportation,Transportation +376167,Transportation,Transportation +376165,Transportation,Transportation +376164,Transportation,Transportation +383697,Environment,Environment +380405,Environment,Environment +376258,Environment,Environment +376256,Environment,Environment +376174,Environment,Environment +376167,Environment,Environment +376165,Environment,Environment +412320,Budget,Budget +412317,Budget,Budget +375769,Budget,Budget +402814,Budget,Budget +402810,Budget,Budget +402805,Budget,Budget +402801,Budget,Budget +400228,Budget,Budget +398360,Budget,Budget +398359,Budget,Budget +398356,Budget,Budget +398355,Budget,Budget +398353,Budget,Budget +398350,Budget,Budget +398348,Budget,Budget +398345,Budget,Budget +398343,Budget,Budget +396199,Budget,Budget +396197,Budget,Budget +396196,Budget,Budget +396195,Budget,Budget +396194,Budget,Budget +396193,Budget,Budget +396187,Budget,Budget +396183,Budget,Budget +396180,Budget,Budget +393708,Budget,Budget +393707,Budget,Budget +393706,Budget,Budget +393704,Budget,Budget +393702,Budget,Budget +392272,Budget,Budget +392271,Budget,Budget +389908,Budget,Budget +389906,Budget,Budget +389901,Budget,Budget +389900,Budget,Budget +389899,Budget,Budget +389896,Budget,Budget +389893,Budget,Budget +389889,Budget,Budget +389886,Budget,Budget +389883,Budget,Budget +389880,Budget,Budget +389878,Budget,Budget +386861,Budget,Budget +386860,Budget,Budget +386858,Budget,Budget +386856,Budget,Budget +386855,Budget,Budget +386853,Budget,Budget +386851,Budget,Budget +385331,Budget,Budget +456931,Budget,Budget +456930,Budget,Budget +456929,Budget,Budget +456926,Budget,Budget +447008,Budget,Budget +447007,Budget,Budget +444840,Budget,Budget +444839,Budget,Budget +444838,Budget,Budget +444837,Budget,Budget +444836,Budget,Budget +441704,Budget,Budget +433358,Budget,Budget +433357,Budget,Budget +430395,Budget,Budget +430384,Budget,Budget +430381,Budget,Budget +385334,Budget,Budget +375762,Budget,Budget +402796,Budget,Budget +402794,Budget,Budget +398342,Budget,Budget +398341,Budget,Budget +398340,Budget,Budget +398339,Budget,Budget +398338,Budget,Budget +398337,Budget,Budget +398336,Budget,Budget +398335,Budget,Budget +396211,Budget,Budget +396210,Budget,Budget +396206,Budget,Budget +396205,Budget,Budget +396202,Budget,Budget +396201,Budget,Budget +393711,Budget,Budget +393710,Budget,Budget +393709,Budget,Budget +392268,Budget,Budget +392267,Budget,Budget +389977,Budget,Budget +389975,Budget,Budget +389973,Budget,Budget +389972,Budget,Budget +389970,Budget,Budget +389968,Budget,Budget +389966,Budget,Budget +389963,Budget,Budget +389962,Budget,Budget +389958,Budget,Budget +386848,Budget,Budget +386847,Budget,Budget +379355,Employment and Training,Employment and Training +380177,Transportation,Transportation +379355,Transportation,Transportation +420640,Transportation,Transportation +388822,Transportation,Transportation +388672,Transportation,Transportation +386954,Transportation,Transportation +384599,Transportation,Transportation +445334,Economic Development,Développement économique +437429,Economic Development,Développement économique +379002,Economic Development,Développement économique +376919,Economic Development,Développement économique +376875,Economic Development,Développement économique +376872,Economic Development,Développement économique +376867,Economic Development,Développement économique +435509,Economic Development,Développement économique +423031,Economic Development,Développement économique +421208,Economic Development,Développement économique +419336,Economic Development,Développement économique +419335,Economic Development,Développement économique +415670,Economic Development,Développement économique +415605,Economic Development,Développement économique +415601,Economic Development,Développement économique +415592,Economic Development,Développement économique +415584,Economic Development,Développement économique +408846,Economic Development,Développement économique +408845,Economic Development,Développement économique +407333,Economic Development,Développement économique +407332,Economic Development,Développement économique +406237,Economic Development,Développement économique +405618,Economic Development,Développement économique +405615,Economic Development,Développement économique +405612,Economic Development,Développement économique +405602,Economic Development,Développement économique +402748,Economic Development,Développement économique +402746,Economic Development,Développement économique +402745,Economic Development,Développement économique +401168,Economic Development,Développement économique +397743,Economic Development,Développement économique +393683,Economic Development,Développement économique +390310,Economic Development,Développement économique +386761,Economic Development,Développement économique +386749,Economic Development,Développement économique +386747,Economic Development,Développement économique +385799,Economic Development,Développement économique +385411,Economic Development,Développement économique +384203,Economic Development,Développement économique +384202,Economic Development,Développement économique +383329,Economic Development,Développement économique +382582,Economic Development,Développement économique +381273,Economic Development,Développement économique +379007,Economic Development,Développement économique +379005,Economic Development,Développement économique +467315,Economic Development,Développement économique +467303,Economic Development,Développement économique +460593,Economic Development,Développement économique +458334,Economic Development,Développement économique +437429,Energy,Énergie +435509,Energy,Énergie +423031,Energy,Énergie +421208,Energy,Énergie +419336,Energy,Énergie +419335,Energy,Énergie +415670,Energy,Énergie +415605,Energy,Énergie +415601,Energy,Énergie +415592,Energy,Énergie +415584,Energy,Énergie +407333,Energy,Énergie +407332,Energy,Énergie +375137,Fisheries,Fisheries +373616,Infrastructure,Infrastructure +379654,Agriculture,Agriculture +379651,Health,Santé +417178,Privacy and Access to Information,Privacy and Access to Information +374054,Economic Development,Economic Development +383407,Infrastructure,Infrastructure +375743,Health,Health +375743,Justice and Law Enforcement,Justice and Law Enforcement +375743,Security,Security +374322,Government Procurement,Government Procurement +375854,Transportation,Transportation +443065,Research and Development,Research and Development +378258,Budget,Budget +377302,Defence,Defence +377891,Environment,Environment +373693,Taxation and Finance,Impôts et finances +383745,Economic Development,Economic Development +373694,Financial Institutions,Financial Institutions +384628,Housing,Housing +379396,Health,Health +446117,Economic Development,Développement économique +448339,Industry,Industrie +377528,Climate,Climate +377528,Energy,Energy +377528,Environment,Environment +380390,Climate,Climate +375338,Economic Development,Economic Development +380380,Energy,Energy +375221,Environment,Environment +380339,Industry,Industry +375222,Research and Development,Research and Development +377884,Economic Development,Economic Development +377884,Energy,Energy +389497,Economic Development,Economic Development +389501,Consumer Issues,Consumer Issues +521279,Agriculture,Agriculture +380943,Defence,Defence +380943,Economic Development,Economic Development +376641,Housing,Housing +380943,Industry,Industry +380943,Infrastructure,Infrastructure +380943,Regional Development,Regional Development +380943,Security,Security +379047,Economic Development,Economic Development +395168,Education,Education +379047,Environment,Environment +506832,Environment,Environment +381519,Economic Development,Economic Development +379434,Small Business,Small Business +386057,Taxation and Finance,Taxation and Finance +392715,Environment,Environment +463549,Health,Health +378740,Mining,Mining +378740,Environment,Environment +383641,Agriculture,Agriculture +383979,Climate,Climate +374061,Climate,Climate +381059,Economic Development,Economic Development +428662,Health,Health +375263,Agriculture,Agriculture +420927,Consumer Issues,Consumer Issues +420927,Industry,Industry +373945,Government Procurement,Government Procurement +373945,Economic Development,Economic Development +373945,Environment,Environment +373945,Housing,Housing +373945,Infrastructure,Infrastructure +373945,Mining,Mining +373945,Transportation,Transportation +374063,Industry,Industry +382890,Climate,Climate +393044,Energy,Energy +382890,Environment,Environment +428741,Industry,Industry +444905,Research and Development,Research and Development +377375,Government Procurement,Government Procurement +377375,Infrastructure,Infrastructure +377371,International Trade,International Trade +377371,Labour,Labour +378596,Economic Development,Economic Development +378596,Government Procurement,Government Procurement +378596,Industry,Industry +378596,Infrastructure,Infrastructure +387175,International Trade,International Trade +378596,Transportation,Transportation +380311,Tourism,Tourism +411517,Transportation,Transportation +382362,Regional Development,Regional Development +392510,Small Business,Small Business +382362,Tourism,Tourism +400236,Transportation,Transportation +401360,Agriculture,Agriculture +401355,International Trade,International Trade +377312,Small Business,Small Business +377105,Financial Institutions,Financial Institutions +379529,Taxation and Finance,Impôts et finances +464911,Economic Development,Economic Development +531735,Environment,Environment +394002,Education,Education +379060,Education,Education +379055,Economic Development,Economic Development +379055,Environment,Environment +375681,Government Procurement,Government Procurement +443268,Government Procurement,Government Procurement +481637,Economic Development,Economic Development +473856,Government Procurement,Government Procurement +473856,Infrastructure,Infrastructure +414632,International Trade,International Trade +378417,Government Procurement,Government Procurement +374187,Economic Development,Economic Development +480153,Small Business,Small Business +378956,Budget,Budget +386191,Consumer Issues,Consumer Issues +378956,Health,Health +386192,Industry,Industry +378764,Intellectual Property,Intellectual Property +386192,International Relations,International Relations +384204,Employment and Training,Emploi et formation +443277,Justice and Law Enforcement,Justice and Law Enforcement +485127,Budget,Budget +441665,Infrastructure,Infrastructure +374366,Infrastructure,Infrastructure +374371,Consumer Issues,Consumer Issues +486446,Government Procurement,Government Procurement +385288,International Trade,International Trade +409457,Government Procurement,Government Procurement +532378,Employment and Training,Employment and Training +404372,Transportation,Transportation +404372,Security,Security +383499,Privacy and Access to Information,Privacy and Access to Information +390224,Budget,Budget +390224,Climate,Climate +498081,Environment,Environment +390224,Forestry,Forestry +498081,Industry,Industry +424555,International Trade,International Trade +424555,Taxation and Finance,Taxation and Finance +378206,Transportation,Transports +433727,Government Procurement,Government Procurement +442621,Industry,Industry +452122,International Trade,International Trade +393394,Infrastructure,Infrastructure +402702,Taxation and Finance,Taxation and Finance +374536,Privacy and Access to Information,Privacy and Access to Information +376441,Economic Development,Economic Development +376441,Employment and Training,Employment and Training +381926,Regional Development,Regional Development +380943,Government Procurement,Government Procurement +435916,Environment,Environment +435916,Industry,Industry +413332,International Trade,International Trade +374696,Intellectual Property,Intellectual Property +374736,Climate,Climate +374737,Climate,Climate +397761,Energy,Energy +409554,Tourism,Tourisme +411357,Climate,Climate +391831,Economic Development,Economic Development +411354,Energy,Energy +391834,Environment,Environment +380123,Industry,Industry +391831,Infrastructure,Infrastructure +391832,Municipalities,Municipalities +374852,Research and Development,Research and Development +415452,Municipalities,Municipalities +415452,Small Business,Small Business +415452,Housing,Housing +415452,Budget,Budget +415452,Industry,Industry +415452,Economic Development,Economic Development +378169,Transportation,Transportation +378170,Infrastructure,Infrastructure +378170,International Trade,International Trade +378170,Regional Development,Regional Development +378170,Economic Development,Economic Development +378169,Environment,Environment +414842,Environment,Environment +414842,Transportation,Transportation +414842,International Trade,International Trade +424532,Fisheries,Fisheries +401256,Internal Trade,Internal Trade +414842,Industry,Industry +374910,Economic Development,Economic Development +409546,Tourism,Tourism +411858,Climate,Climate +411858,Infrastructure,Infrastructure +411858,Research and Development,Research and Development +377487,Climate,Climate +377486,Economic Development,Economic Development +377486,Energy,Energy +377486,Environment,Environment +377487,Industry,Industry +439566,Environment,Environment +391550,Economic Development,Economic Development +391551,International Trade,International Trade +379949,Transportation,Transportation +383175,Pensions,Pensions +379416,Economic Development,Economic Development +379416,Energy,Energy +379416,Environment,Environment +379416,Infrastructure,Infrastructure +379416,Transportation,Transportation +376317,Sports,Sports +429758,Health,Health +375616,Health,Health +375617,Research and Development,Research and Development +375064,Economic Development,Economic Development +379131,Agriculture,Agriculture +376167,Economic Development,Economic Development +383697,Transportation,Transportation +376164,Environment,Environment +430375,Budget,Budget +386845,Budget,Budget +375093,International Trade,International Trade +375096,International Trade,International Trade +380177,Employment and Training,Employment and Training +384598,Transportation,Transportation +456032,Economic Development,Développement économique +445334,Energy,Énergie +379005,Environment,Environnement +378069,Health,Health +378069,Regional Development,Regional Development +382464,Small Business,Small Business +417213,Transportation,Transportation +471590,International Relations,International Relations +516344,Industry,Industry +407417,Immigration,Immigration +471577,Economic Development,Economic Development +440314,Research and Development,Research and Development +523546,Energy,Energy +496699,Consumer Issues,Consumer Issues +523546,Environment,Environment +382865,Industry,Industry +382865,Research and Development,Research and Development +423784,Energy,Energy +423790,Environment,Environment +395682,Industry,Industry +423927,Infrastructure,Infrastructure +384500,Climate,Climate +401205,Energy,Energy +384500,Environment,Environment +384500,Government Procurement,Government Procurement +404478,Housing,Housing +384500,Industry,Industry +395650,Infrastructure,Infrastructure +410489,International Trade,International Trade +379570,Environment,Environment +384919,Climate,Climate +379532,Energy,Energy +379552,Environment,Environment +384897,Government Procurement,Government Procurement +384897,Infrastructure,Infrastructure +375284,Agriculture,Agriculture +435745,International Trade,International Trade +379131,International Trade,International Trade +375144,International Relations,International Relations +460885,Agriculture,Agriculture +516542,Climate,Climate +500124,Environment,Environment +457862,Infrastructure,Infrastructure +406237,Energy,Énergie +405618,Energy,Énergie +405615,Energy,Énergie +405612,Energy,Énergie +405602,Energy,Énergie +402748,Energy,Énergie +402746,Energy,Énergie +402745,Energy,Énergie +386761,Energy,Énergie +386749,Energy,Énergie +386747,Energy,Énergie +385799,Energy,Énergie +385411,Energy,Énergie +384203,Energy,Énergie +384202,Energy,Énergie +382582,Energy,Énergie +379007,Energy,Énergie +379005,Energy,Énergie +379002,Energy,Énergie +376875,Energy,Énergie +376872,Energy,Énergie +376867,Energy,Énergie +460593,Energy,Énergie +458334,Energy,Énergie +379002,Environment,Environnement +376867,Environment,Environnement +460593,Environment,Environnement +458334,Environment,Environnement +456032,Environment,Environnement +445334,Environment,Environnement +437429,Environment,Environnement +435509,Environment,Environnement +421208,Environment,Environnement +419336,Environment,Environnement +419335,Environment,Environnement +415670,Environment,Environnement +415605,Environment,Environnement +415601,Environment,Environnement +415592,Environment,Environnement +415584,Environment,Environnement +407333,Environment,Environnement +407332,Environment,Environnement +405618,Environment,Environnement +405615,Environment,Environnement +405612,Environment,Environnement +405602,Environment,Environnement +393683,Environment,Environnement +390310,Environment,Environnement +386761,Environment,Environnement +386749,Environment,Environnement +386747,Environment,Environnement +385799,Environment,Environnement +385411,Environment,Environnement +383329,Environment,Environnement +383328,Environment,Environnement +382582,Environment,Environnement +379007,Environment,Environnement +375665,Small Business,Small Business +414309,Transportation,Transportation +523546,Transportation,Transportation +471589,International Relations,International Relations +440314,International Relations,International Relations +436498,International Relations,International Relations +429935,International Relations,International Relations +429934,International Relations,International Relations +429770,International Relations,International Relations +418403,International Relations,International Relations +417216,International Relations,International Relations +417213,International Relations,International Relations +411272,International Relations,International Relations +407417,International Relations,International Relations +401808,International Relations,International Relations +401807,International Relations,International Relations +401806,International Relations,International Relations +397264,International Relations,International Relations +377461,International Relations,International Relations +542202,International Relations,International Relations +542200,International Relations,International Relations +540736,International Relations,International Relations +540734,International Relations,International Relations +540733,International Relations,International Relations +533116,International Relations,International Relations +530292,International Relations,International Relations +530163,International Relations,International Relations +530162,International Relations,International Relations +528107,International Relations,International Relations +523546,International Relations,International Relations +522808,International Relations,International Relations +521829,International Relations,International Relations +520835,International Relations,International Relations +520690,International Relations,International Relations +520689,International Relations,International Relations +519082,International Relations,International Relations +516342,International Relations,International Relations +516341,International Relations,International Relations +516340,International Relations,International Relations +516338,International Relations,International Relations +516337,International Relations,International Relations +516336,International Relations,International Relations +516335,International Relations,International Relations +507525,International Relations,International Relations +503293,International Relations,International Relations +503221,International Relations,International Relations +494936,International Relations,International Relations +494933,International Relations,International Relations +493942,International Relations,International Relations +493941,International Relations,International Relations +489404,International Relations,International Relations +489403,International Relations,International Relations +471935,International Relations,International Relations +471588,Industry,Industry +471577,Industry,Industry +414309,Industry,Industry +465413,Industry,Industry +429774,Industry,Industry +418403,Industry,Industry +417213,Industry,Industry +533116,Industry,Industry +523546,Industry,Industry +522808,Industry,Industry +519082,Industry,Industry +418403,Immigration,Immigration +496813,Immigration,Immigration +465413,Economic Development,Economic Development +460594,Economic Development,Economic Development +440314,Economic Development,Economic Development +434337,Economic Development,Economic Development +417216,Economic Development,Economic Development +417213,Economic Development,Economic Development +384867,Economic Development,Economic Development +377469,Economic Development,Economic Development +533116,Economic Development,Economic Development +523592,Economic Development,Economic Development +523546,Economic Development,Economic Development +516344,Economic Development,Economic Development +516340,Economic Development,Economic Development +509386,Economic Development,Economic Development +503293,Economic Development,Economic Development +503221,Economic Development,Economic Development +496813,Economic Development,Economic Development +496699,Economic Development,Economic Development +494936,Economic Development,Economic Development +493941,Economic Development,Economic Development +471935,Economic Development,Economic Development +471588,Economic Development,Economic Development +465413,Energy,Energy +418403,Energy,Energy +533116,Energy,Energy +494936,Consumer Issues,Consumer Issues +493941,Consumer Issues,Consumer Issues +401808,Consumer Issues,Consumer Issues +401807,Consumer Issues,Consumer Issues +401806,Consumer Issues,Consumer Issues +401805,Consumer Issues,Consumer Issues +397264,Consumer Issues,Consumer Issues +395107,Consumer Issues,Consumer Issues +395106,Consumer Issues,Consumer Issues +395105,Consumer Issues,Consumer Issues +394846,Consumer Issues,Consumer Issues +382107,Consumer Issues,Consumer Issues +381950,Consumer Issues,Consumer Issues +381947,Consumer Issues,Consumer Issues +377471,Consumer Issues,Consumer Issues +377469,Consumer Issues,Consumer Issues +377464,Consumer Issues,Consumer Issues +377462,Consumer Issues,Consumer Issues +375869,Consumer Issues,Consumer Issues +471935,Consumer Issues,Consumer Issues +471588,Consumer Issues,Consumer Issues +471577,Consumer Issues,Consumer Issues +465413,Consumer Issues,Consumer Issues +460594,Consumer Issues,Consumer Issues +440314,Consumer Issues,Consumer Issues +434337,Consumer Issues,Consumer Issues +418403,Consumer Issues,Consumer Issues +417216,Consumer Issues,Consumer Issues +417213,Consumer Issues,Consumer Issues +414309,Consumer Issues,Consumer Issues +533116,Consumer Issues,Consumer Issues +523546,Consumer Issues,Consumer Issues +496813,Environment,Environment +478754,Environment,Environment +533116,Environment,Environment +380859,Industry,Industry +380859,Research and Development,Research and Development +420747,Energy,Energy +403198,Energy,Energy +395682,Energy,Energy +395681,Energy,Energy +395679,Energy,Energy +420751,Environment,Environment +395681,Industry,Industry +395679,Industry,Industry +423792,Infrastructure,Infrastructure +403198,Infrastructure,Infrastructure +379577,Infrastructure,Infrastructure +384496,Climate,Climate +384494,Climate,Climate +407377,Climate,Climate +385312,Climate,Climate +385276,Climate,Climate +398164,Energy,Energy +395650,Energy,Energy +395649,Energy,Energy +395648,Energy,Energy +395647,Energy,Energy +395646,Energy,Energy +395643,Energy,Energy +392379,Energy,Energy +392374,Energy,Energy +392373,Energy,Energy +392372,Energy,Energy +387589,Energy,Energy +385312,Energy,Energy +385276,Energy,Energy +384922,Energy,Energy +384494,Energy,Energy +434227,Energy,Energy +432479,Energy,Energy +422603,Energy,Energy +421107,Energy,Energy +418559,Energy,Energy +418462,Energy,Energy +417515,Energy,Energy +417053,Energy,Energy +414407,Energy,Energy +414404,Energy,Energy +414398,Energy,Energy +414386,Energy,Energy +411163,Energy,Energy +410749,Energy,Energy +410492,Energy,Energy +410489,Energy,Energy +410483,Energy,Energy +410482,Energy,Energy +408348,Energy,Energy +407251,Energy,Energy +405549,Energy,Energy +404478,Energy,Energy +404477,Energy,Energy +404417,Energy,Energy +404416,Energy,Energy +404197,Energy,Energy +402781,Energy,Energy +384496,Environment,Environment +384494,Environment,Environment +422606,Environment,Environment +420479,Environment,Environment +418205,Environment,Environment +414713,Environment,Environment +410497,Environment,Environment +410483,Environment,Environment +410482,Environment,Environment +407384,Environment,Environment +407378,Environment,Environment +407081,Environment,Environment +406215,Environment,Environment +405549,Environment,Environment +404478,Environment,Environment +404477,Environment,Environment +404417,Environment,Environment +404416,Environment,Environment +401205,Environment,Environment +395649,Environment,Environment +395646,Environment,Environment +393487,Environment,Environment +392379,Environment,Environment +387589,Environment,Environment +385312,Environment,Environment +385276,Environment,Environment +384922,Environment,Environment +384496,Government Procurement,Government Procurement +384494,Government Procurement,Government Procurement +420479,Government Procurement,Government Procurement +410750,Government Procurement,Government Procurement +410504,Government Procurement,Government Procurement +410483,Government Procurement,Government Procurement +410482,Government Procurement,Government Procurement +385312,Government Procurement,Government Procurement +384922,Government Procurement,Government Procurement +404206,Housing,Housing +384496,Industry,Industry +384494,Industry,Industry +434227,Industry,Industry +395647,Industry,Industry +392379,Industry,Industry +385312,Industry,Industry +385276,Industry,Industry +395648,Infrastructure,Infrastructure +395643,Infrastructure,Infrastructure +393487,Infrastructure,Infrastructure +392379,Infrastructure,Infrastructure +392374,Infrastructure,Infrastructure +392373,Infrastructure,Infrastructure +392372,Infrastructure,Infrastructure +385312,Infrastructure,Infrastructure +385276,Infrastructure,Infrastructure +384922,Infrastructure,Infrastructure +384500,Infrastructure,Infrastructure +384496,Infrastructure,Infrastructure +384494,Infrastructure,Infrastructure +434032,Infrastructure,Infrastructure +422607,Infrastructure,Infrastructure +422602,Infrastructure,Infrastructure +420479,Infrastructure,Infrastructure +419456,Infrastructure,Infrastructure +419288,Infrastructure,Infrastructure +418468,Infrastructure,Infrastructure +417515,Infrastructure,Infrastructure +417057,Infrastructure,Infrastructure +417053,Infrastructure,Infrastructure +414714,Infrastructure,Infrastructure +414382,Infrastructure,Infrastructure +410750,Infrastructure,Infrastructure +410749,Infrastructure,Infrastructure +410504,Infrastructure,Infrastructure +408346,Infrastructure,Infrastructure +407385,Infrastructure,Infrastructure +407384,Infrastructure,Infrastructure +407382,Infrastructure,Infrastructure +407378,Infrastructure,Infrastructure +407376,Infrastructure,Infrastructure +407251,Infrastructure,Infrastructure +406216,Infrastructure,Infrastructure +406215,Infrastructure,Infrastructure +405906,Infrastructure,Infrastructure +404477,Infrastructure,Infrastructure +404418,Infrastructure,Infrastructure +404417,Infrastructure,Infrastructure +404206,Infrastructure,Infrastructure +402781,Infrastructure,Infrastructure +407377,International Trade,International Trade +384897,Climate,Climate +384894,Climate,Climate +384920,Climate,Climate +393497,Energy,Energy +384920,Energy,Energy +384919,Energy,Energy +384897,Energy,Energy +384894,Energy,Energy +376210,Environment,Environment +393497,Environment,Environment +384920,Environment,Environment +384919,Environment,Environment +384897,Environment,Environment +384894,Environment,Environment +379564,Environment,Environment +384894,Government Procurement,Government Procurement +379538,Government Procurement,Government Procurement +384920,Government Procurement,Government Procurement +384919,Government Procurement,Government Procurement +384894,Infrastructure,Infrastructure +379538,Infrastructure,Infrastructure +384920,Infrastructure,Infrastructure +384919,Infrastructure,Infrastructure +379130,International Trade,International Trade +379128,International Trade,International Trade +376668,International Trade,International Trade +384997,International Trade,International Trade +380900,International Trade,International Trade +380899,International Trade,International Trade +380898,International Trade,International Trade +380896,International Trade,International Trade +380894,International Trade,International Trade +380893,International Trade,International Trade +380892,International Trade,International Trade +379572,International Trade,International Trade +379139,International Trade,International Trade +379137,International Trade,International Trade +379136,International Trade,International Trade +379134,International Trade,International Trade +379132,International Trade,International Trade +460741,Agriculture,Agriculture +457862,Agriculture,Agriculture +376506,Agriculture,Agriculture +375148,Agriculture,Agriculture +375147,Agriculture,Agriculture +375146,Agriculture,Agriculture +456218,Agriculture,Agriculture +456214,Agriculture,Agriculture +440295,Agriculture,Agriculture +440294,Agriculture,Agriculture +436583,Agriculture,Agriculture +432735,Agriculture,Agriculture +432459,Agriculture,Agriculture +423939,Agriculture,Agriculture +419492,Agriculture,Agriculture +417337,Agriculture,Agriculture +410520,Agriculture,Agriculture +408211,Agriculture,Agriculture +404890,Agriculture,Agriculture +401671,Agriculture,Agriculture +401266,Agriculture,Agriculture +395252,Agriculture,Agriculture +393234,Agriculture,Agriculture +392970,Agriculture,Agriculture +392341,Agriculture,Agriculture +389061,Agriculture,Agriculture +384019,Agriculture,Agriculture +383052,Agriculture,Agriculture +523426,Agriculture,Agriculture +520767,Agriculture,Agriculture +520765,Agriculture,Agriculture +518646,Agriculture,Agriculture +518604,Agriculture,Agriculture +516694,Agriculture,Agriculture +516542,Agriculture,Agriculture +511603,Agriculture,Agriculture +506635,Agriculture,Agriculture +500124,Agriculture,Agriculture +494851,Agriculture,Agriculture +492233,Agriculture,Agriculture +483383,Agriculture,Agriculture +483247,Agriculture,Agriculture +482895,Agriculture,Agriculture +482715,Agriculture,Agriculture +482710,Agriculture,Agriculture +481209,Agriculture,Agriculture +480831,Agriculture,Agriculture +476279,Agriculture,Agriculture +476277,Agriculture,Agriculture +474335,Agriculture,Agriculture +472426,Agriculture,Agriculture +472424,Agriculture,Agriculture +471555,Agriculture,Agriculture +465925,Agriculture,Agriculture +465354,Agriculture,Agriculture +465352,Agriculture,Agriculture +463210,Agriculture,Agriculture +463138,Agriculture,Agriculture +463136,Agriculture,Agriculture +463132,Agriculture,Agriculture +462837,Agriculture,Agriculture +462834,Agriculture,Agriculture +462833,Agriculture,Agriculture +462828,Agriculture,Agriculture +462108,Agriculture,Agriculture +462105,Agriculture,Agriculture +462104,Agriculture,Agriculture +462102,Agriculture,Agriculture +461098,Agriculture,Agriculture +461006,Agriculture,Agriculture +460886,Agriculture,Agriculture +511603,Climate,Climate +506635,Climate,Climate +432735,Climate,Climate +432459,Climate,Climate +423939,Climate,Climate +419492,Climate,Climate +417337,Climate,Climate +410520,Climate,Climate +408211,Climate,Climate +404890,Climate,Climate +401671,Climate,Climate +401266,Climate,Climate +398116,Climate,Climate +395252,Climate,Climate +393234,Climate,Climate +392970,Climate,Climate +392341,Climate,Climate +389061,Climate,Climate +384019,Climate,Climate +383052,Climate,Climate +376506,Climate,Climate +375148,Climate,Climate +375147,Climate,Climate +375146,Climate,Climate +506634,Climate,Climate +494851,Climate,Climate +483247,Climate,Climate +482895,Climate,Climate +482715,Climate,Climate +482710,Climate,Climate +476279,Climate,Climate +476277,Climate,Climate +471555,Climate,Climate +465925,Climate,Climate +465354,Climate,Climate +465352,Climate,Climate +463210,Climate,Climate +463138,Climate,Climate +463136,Climate,Climate +463132,Climate,Climate +462837,Climate,Climate +462834,Climate,Climate +462833,Climate,Climate +462828,Climate,Climate +462108,Climate,Climate +462105,Climate,Climate +462104,Climate,Climate +462102,Climate,Climate +461098,Climate,Climate +461006,Climate,Climate +460886,Climate,Climate +460885,Climate,Climate +460741,Climate,Climate +457862,Climate,Climate +456218,Climate,Climate +456214,Climate,Climate +440295,Climate,Climate +440294,Climate,Climate +436583,Climate,Climate +523426,Climate,Climate +520767,Climate,Climate +518604,Climate,Climate +516694,Climate,Climate +494851,Environment,Environment +492233,Environment,Environment +483383,Environment,Environment +483247,Environment,Environment +482895,Environment,Environment +482715,Environment,Environment +482710,Environment,Environment +481209,Environment,Environment +480831,Environment,Environment +476936,Environment,Environment +476279,Environment,Environment +476277,Environment,Environment +474335,Environment,Environment +472426,Environment,Environment +472424,Environment,Environment +471555,Environment,Environment +465925,Environment,Environment +465354,Environment,Environment +465352,Environment,Environment +463210,Environment,Environment +463138,Environment,Environment +463136,Environment,Environment +463132,Environment,Environment +462837,Environment,Environment +462834,Environment,Environment +462833,Environment,Environment +462828,Environment,Environment +462108,Environment,Environment +462105,Environment,Environment +462104,Environment,Environment +462102,Environment,Environment +461098,Environment,Environment +461006,Environment,Environment +460886,Environment,Environment +460885,Environment,Environment +460741,Environment,Environment +457862,Environment,Environment +456218,Environment,Environment +456214,Environment,Environment +440295,Environment,Environment +440294,Environment,Environment +436583,Environment,Environment +432735,Environment,Environment +432459,Environment,Environment +423939,Environment,Environment +419492,Environment,Environment +417337,Environment,Environment +410520,Environment,Environment +408211,Environment,Environment +404890,Environment,Environment +401671,Environment,Environment +401266,Environment,Environment +398116,Environment,Environment +395252,Environment,Environment +393234,Environment,Environment +392970,Environment,Environment +392341,Environment,Environment +389061,Environment,Environment +384019,Environment,Environment +383052,Environment,Environment +376506,Environment,Environment +375148,Environment,Environment +375147,Environment,Environment +375146,Environment,Environment +523426,Environment,Environment +520767,Environment,Environment +520765,Environment,Environment +518646,Environment,Environment +518604,Environment,Environment +516694,Environment,Environment +516542,Environment,Environment +511603,Environment,Environment +506635,Environment,Environment +506634,Environment,Environment +456218,Infrastructure,Infrastructure +456214,Infrastructure,Infrastructure +393234,Infrastructure,Infrastructure +392970,Infrastructure,Infrastructure +392341,Infrastructure,Infrastructure +384019,Infrastructure,Infrastructure +376506,Infrastructure,Infrastructure +375763,Infrastructure,Infrastructure +375148,Infrastructure,Infrastructure +375147,Infrastructure,Infrastructure +375146,Infrastructure,Infrastructure +440295,Infrastructure,Infrastructure +440294,Infrastructure,Infrastructure +436583,Infrastructure,Infrastructure +432735,Infrastructure,Infrastructure +432459,Infrastructure,Infrastructure +423939,Infrastructure,Infrastructure +419492,Infrastructure,Infrastructure +417337,Infrastructure,Infrastructure +410520,Infrastructure,Infrastructure +408211,Infrastructure,Infrastructure +404890,Infrastructure,Infrastructure +401671,Infrastructure,Infrastructure +401266,Infrastructure,Infrastructure +398116,Infrastructure,Infrastructure +395252,Infrastructure,Infrastructure +518646,Infrastructure,Infrastructure +506635,Infrastructure,Infrastructure +476279,Infrastructure,Infrastructure +476277,Infrastructure,Infrastructure +474335,Infrastructure,Infrastructure +465925,Infrastructure,Infrastructure +465354,Infrastructure,Infrastructure +465352,Infrastructure,Infrastructure +463210,Infrastructure,Infrastructure +463138,Infrastructure,Infrastructure +463136,Infrastructure,Infrastructure +463132,Infrastructure,Infrastructure +462837,Infrastructure,Infrastructure +462834,Infrastructure,Infrastructure +462833,Infrastructure,Infrastructure +462828,Infrastructure,Infrastructure +462108,Infrastructure,Infrastructure +462105,Infrastructure,Infrastructure +462104,Infrastructure,Infrastructure +462102,Infrastructure,Infrastructure +461098,Infrastructure,Infrastructure +461006,Infrastructure,Infrastructure +460886,Infrastructure,Infrastructure +460885,Infrastructure,Infrastructure +460741,Infrastructure,Infrastructure +375197,International Trade,International Trade +375202,Fisheries,Pêches +388729,Regional Development,Regional Development +386027,Regional Development,Regional Development +425178,Regional Development,Regional Development +425177,Regional Development,Regional Development +388729,Infrastructure,Infrastructure +386027,Infrastructure,Infrastructure +425178,Infrastructure,Infrastructure +425177,Infrastructure,Infrastructure +425176,Infrastructure,Infrastructure +388729,Economic Development,Economic Development +386027,Economic Development,Economic Development +425178,Economic Development,Economic Development +425177,Economic Development,Economic Development +388729,Environment,Environment +386027,Environment,Environment +425178,Environment,Environment +425177,Environment,Environment +425177,International Trade,International Trade +425176,International Trade,International Trade +388729,International Trade,International Trade +386027,International Trade,International Trade +425177,Transportation,Transportation +425176,Transportation,Transportation +388729,Transportation,Transportation +386027,Transportation,Transportation +379433,Economic Development,Economic Development +377383,Economic Development,Economic Development +379452,Economic Development,Economic Development +379451,Economic Development,Economic Development +379450,Economic Development,Economic Development +379449,Economic Development,Economic Development +379445,Economic Development,Economic Development +379451,Infrastructure,Infrastructure +401674,Economic Development,Economic Development +399641,Economic Development,Economic Development +523958,Economic Development,Economic Development +476523,Economic Development,Economic Development +476522,Economic Development,Economic Development +476521,Economic Development,Economic Development +468974,Economic Development,Economic Development +458204,Economic Development,Economic Development +458203,Economic Development,Economic Development +454916,Economic Development,Economic Development +451290,Economic Development,Economic Development +451289,Economic Development,Economic Development +448814,Economic Development,Economic Development +425593,Economic Development,Economic Development +425589,Economic Development,Economic Development +424522,Economic Development,Economic Development +376244,Economic Development,Economic Development +376242,Economic Development,Economic Development +398519,Economic Development,Economic Development +375254,International Trade,International Trade +375253,International Trade,International Trade +398509,International Trade,International Trade +378059,International Trade,International Trade +378058,International Trade,International Trade +376244,International Trade,International Trade +375261,International Trade,International Trade +375259,International Trade,International Trade +375258,International Trade,International Trade +377398,Health,Health +377393,Health,Health +411192,Health,Health +411191,Health,Health +411190,Health,Health +408644,Health,Health +408643,Health,Health +408642,Health,Health +404295,Health,Health +404294,Health,Health +404293,Health,Health +404292,Health,Health +397394,Health,Health +397391,Health,Health +397385,Health,Health +397384,Health,Health +396311,Health,Health +396310,Health,Health +396309,Health,Health +396308,Health,Health +396307,Health,Health +396306,Health,Health +396290,Health,Health +391540,Health,Health +391537,Health,Health +391535,Health,Health +391533,Health,Health +391531,Health,Health +391530,Health,Health +391527,Health,Health +390470,Health,Health +390467,Health,Health +386297,Health,Health +386296,Health,Health +386295,Health,Health +384023,Research and Development,Recherche et développement +384022,Research and Development,Recherche et développement +387261,Research and Development,Recherche et développement +384871,Small Business,Small Business +375319,Small Business,Small Business +536508,Small Business,Small Business +500332,Small Business,Small Business +500326,Small Business,Small Business +485793,Small Business,Small Business +466779,Small Business,Small Business +461266,Small Business,Small Business +449886,Small Business,Small Business +440576,Small Business,Small Business +423322,Small Business,Small Business +423319,Small Business,Small Business +423318,Small Business,Small Business +421204,Small Business,Small Business +414520,Small Business,Small Business +407151,Small Business,Small Business +405086,Small Business,Small Business +405084,Small Business,Small Business +405082,Small Business,Small Business +402849,Small Business,Small Business +402847,Small Business,Small Business +402845,Small Business,Small Business +398398,Small Business,Small Business +398396,Small Business,Small Business +398392,Small Business,Small Business +398386,Small Business,Small Business +393535,Small Business,Small Business +390111,Small Business,Small Business +390110,Small Business,Small Business +390107,Small Business,Small Business +386607,Small Business,Small Business +462169,Small Business,Small Business +456578,Small Business,Small Business +423323,Small Business,Small Business +423321,Small Business,Small Business +423320,Small Business,Small Business +409037,Small Business,Small Business +409035,Small Business,Small Business +409032,Small Business,Small Business +409031,Small Business,Small Business +405085,Small Business,Small Business +405083,Small Business,Small Business +402843,Small Business,Small Business +398399,Small Business,Small Business +398397,Small Business,Small Business +398394,Small Business,Small Business +398393,Small Business,Small Business +398390,Small Business,Small Business +398388,Small Business,Small Business +398387,Small Business,Small Business +395667,Small Business,Small Business +395666,Small Business,Small Business +395665,Small Business,Small Business +393536,Small Business,Small Business +384888,Small Business,Small Business +384885,Small Business,Small Business +384872,Small Business,Small Business +384868,Small Business,Small Business +375322,Small Business,Small Business +516492,Small Business,Small Business +500324,Small Business,Small Business +500323,Small Business,Small Business +494355,Small Business,Small Business +494354,Small Business,Small Business +492037,Small Business,Small Business +474247,Small Business,Small Business +425557,Transportation,Transportation +399642,Transportation,Transportation +389122,Transportation,Transportation +469227,Transportation,Transportation +451959,Transportation,Transportation +435867,Transportation,Transportation +434980,Transportation,Transportation +399642,International Relations,International Relations +389122,International Relations,International Relations +435867,International Relations,International Relations +434980,International Relations,International Relations +425558,International Relations,International Relations +425558,Environment,Environment +425557,Environment,Environment +399642,Environment,Environment +389122,Environment,Environment +435867,Environment,Environment +399642,International Trade,International Trade +389122,International Trade,International Trade +435867,International Trade,International Trade +434980,International Trade,International Trade +425558,International Trade,International Trade +399642,Industry,Industry +389122,Industry,Industry +451959,Industry,Industry +435867,Industry,Industry +434980,Industry,Industry +425558,Industry,Industry +435867,Economic Development,Economic Development +434980,Economic Development,Economic Development +389122,Economic Development,Economic Development +425558,Economic Development,Economic Development +425557,Economic Development,Economic Development +414240,Health,Health +452223,Agriculture,Agriculture +445061,Agriculture,Agriculture +378706,Agriculture,Agriculture +390116,Agriculture,Agriculture +390113,Agriculture,Agriculture +390104,Agriculture,Agriculture +423425,Agriculture,Agriculture +400227,Agriculture,Agriculture +398690,Agriculture,Agriculture +396340,Agriculture,Agriculture +396339,Agriculture,Agriculture +392881,Agriculture,Agriculture +491027,Agriculture,Agriculture +476890,Agriculture,Agriculture +476888,Agriculture,Agriculture +463639,Agriculture,Agriculture +458104,Agriculture,Agriculture +458103,Agriculture,Agriculture +457377,Agriculture,Agriculture +457376,Agriculture,Agriculture +452242,Agriculture,Agriculture +452239,Agriculture,Agriculture +452231,Agriculture,Agriculture +396340,Internal Trade,Commerce intérieur +396339,Internal Trade,Commerce intérieur +452242,Internal Trade,Commerce intérieur +452239,Internal Trade,Commerce intérieur +452231,Internal Trade,Commerce intérieur +452227,Internal Trade,Commerce intérieur +452223,Internal Trade,Commerce intérieur +423425,Internal Trade,Commerce intérieur +445061,International Trade,Commerce international +423425,International Trade,Commerce international +400227,International Trade,Commerce international +398690,International Trade,Commerce international +396340,International Trade,Commerce international +396339,International Trade,Commerce international +392881,International Trade,Commerce international +390116,International Trade,Commerce international +390113,International Trade,Commerce international +390104,International Trade,Commerce international +378706,International Trade,Commerce international +491027,International Trade,Commerce international +476890,International Trade,Commerce international +463639,International Trade,Commerce international +458104,International Trade,Commerce international +458103,International Trade,Commerce international +457377,International Trade,Commerce international +457376,International Trade,Commerce international +452242,International Trade,Commerce international +452239,International Trade,Commerce international +452231,International Trade,Commerce international +452227,International Trade,Commerce international +421805,Employment and Training,Employment and Training +404591,Employment and Training,Employment and Training +404590,Employment and Training,Employment and Training +375351,Employment and Training,Employment and Training +399786,Employment and Training,Employment and Training +395020,Employment and Training,Employment and Training +375354,Employment and Training,Employment and Training +480989,Employment and Training,Employment and Training +421795,Employment and Training,Employment and Training +376573,Employment and Training,Employment and Training +376571,Employment and Training,Employment and Training +376579,Employment and Training,Employment and Training +376578,Employment and Training,Employment and Training +376576,Employment and Training,Employment and Training +376573,Infrastructure,Infrastructure +375169,Employment and Training,Employment and Training +375184,Taxation and Finance,Taxation and Finance +379177,Environment,Environment +375198,International Trade,International Trade +377618,Fisheries,Pêches +375595,Taxation and Finance,Taxation and Finance +388785,Employment and Training,Employment and Training +388785,Health,Health +425176,Regional Development,Regional Development +410272,Infrastructure,Infrastructure +425176,Economic Development,Economic Development +425176,Environment,Environment +425178,International Trade,International Trade +425178,Transportation,Transportation +379436,International Trade,International Trade +379441,Economic Development,Economic Development +379452,Infrastructure,Infrastructure +379441,Taxation and Finance,Taxation and Finance +420667,Economic Development,Economic Development +398515,Economic Development,Economic Development +375256,International Trade,International Trade +377399,Health,Health +384024,Research and Development,Recherche et développement +375284,International Trade,International Trade +377132,Agriculture,Agriculture +377132,International Trade,Commerce international +377132,International Development,Développement international +377132,Energy,Énergie +377132,Infrastructure,Infrastructure +377132,Small Business,Petites entreprises +384877,Small Business,Small Business +466776,Small Business,Small Business +378995,Sports,Sports +398171,Justice and Law Enforcement,Justice and Law Enforcement +386309,Small Business,Small Business +386309,Transportation,Transportation +386309,Consumer Issues,Consumer Issues +386309,Industry,Industry +386309,Labour,Labour +386309,Tourism,Tourism +425558,Transportation,Transportation +425557,International Relations,International Relations +434980,Environment,Environment +425557,International Trade,International Trade +425557,Industry,Industry +399642,Economic Development,Economic Development +375343,Health,Health +452227,Agriculture,Agriculture +400227,Internal Trade,Commerce intérieur +452223,International Trade,Commerce international +375347,Employment and Training,Employment and Training +375348,Employment and Training,Employment and Training +375350,Employment and Training,Employment and Training +404592,Employment and Training,Employment and Training +375352,Employment and Training,Employment and Training +375360,Employment and Training,Employment and Training +376574,Employment and Training,Employment and Training +376574,Infrastructure,Infrastructure +376576,Labour,Labour +403333,Justice and Law Enforcement,Justice and Law Enforcement +403374,Constitutional Issues,Constitutional Issues +403359,Economic Development,Economic Development +377333,Education,Education +395774,Health,Health +377339,Housing,Housing +377338,Infrastructure,Infrastructure +380655,Mining,Mining +477134,Employment and Training,Employment and Training +418979,Industry,Industry +382930,Economic Development,Développement économique +388776,Environment,Environment +388776,Industry,Industry +389632,Energy,Energy +388776,Infrastructure,Infrastructure +388776,Climate,Climate +388776,Economic Development,Economic Development +388776,Municipalities,Municipalities +400242,Industry,Industry +377231,Economic Development,Economic Development +391289,Employment and Training,Employment and Training +376649,Industry,Industry +391288,Environment,Environment +391292,International Relations,International Relations +377231,Energy,Energy +416961,Industry,Industry +377571,Economic Development,Economic Development +377571,Employment and Training,Employment and Training +377571,Immigration,Immigration +377571,International Relations,International Relations +416962,International Trade,International Trade +377572,Research and Development,Research and Development +377572,Labour,Labour +417039,Research and Development,Research and Development +417039,Agriculture,Agriculture +444274,Immigration,Immigration +448809,Small Business,Small Business +424538,Education,Education +454953,Infrastructure,Infrastructure +454953,Security,Security +454953,Transportation,Transportation +454953,International Trade,International Trade +454953,Environment,Environment +378584,Health,Health +392463,Financial Institutions,Financial Institutions +392463,Industry,Industry +377470,Budget,Budget +377470,Health,Health +386550,Immigration,Immigration +379658,Infrastructure,Infrastructure +417690,Security,Sécurité +388851,Transportation,Transports +387286,Energy,Energy +387286,Environment,Environment +387291,Infrastructure,Infrastructure +381971,Small Business,Small Business +407119,Health,Health +381970,Justice and Law Enforcement,Justice and Law Enforcement +381971,Budget,Budget +375456,Economic Development,Economic Development +378057,Energy,Energy +375774,Economic Development,Economic Development +375774,Infrastructure,Infrastructure +375774,Municipalities,Municipalities +375774,Regional Development,Regional Development +375774,Tourism,Tourism +375774,Transportation,Transportation +375463,Economic Development,Economic Development +375463,Infrastructure,Infrastructure +375463,Regional Development,Regional Development +375463,Transportation,Transportation +429525,Energy,Energy +429525,Environment,Environment +377173,Justice and Law Enforcement,Justice and Law Enforcement +375476,Consumer Issues,Consumer Issues +375476,Economic Development,Economic Development +375477,Consumer Issues,Consumer Issues +375477,Economic Development,Economic Development +375478,Consumer Issues,Consumer Issues +375478,Economic Development,Economic Development +375479,Consumer Issues,Consumer Issues +375479,Economic Development,Economic Development +375480,Consumer Issues,Consumer Issues +375480,Economic Development,Economic Development +375481,Consumer Issues,Consumer Issues +375481,Economic Development,Economic Development +397958,Consumer Issues,Consumer Issues +398019,Economic Development,Economic Development +381866,International Development,International Development +433294,Immigration,Immigration +375484,Budget,Budget +375484,Climate,Climate +482832,Economic Development,Economic Development +477431,Infrastructure,Infrastructure +480029,Transportation,Transportation +377895,Agriculture,Agriculture +377895,International Trade,International Trade +377895,Small Business,Small Business +376871,Small Business,Small Business +375728,Industry,Industry +375728,Research and Development,Research and Development +382999,Agriculture,Agriculture +382999,International Trade,International Trade +380088,Industry,Industry +378139,International Trade,Commerce international +382062,Health,Health +378035,Justice and Law Enforcement,Justice and Law Enforcement +376913,Regional Development,Développement régional +376913,Industry,Industrie +375840,Education,Éducation +375840,Official Languages,Langues officielles +375841,Education,Éducation +375542,Official Languages,Langues officielles +375545,Education,Éducation +380355,Official Languages,Langues officielles +450342,Education,Éducation +451198,Official Languages,Langues officielles +378374,Health,Health +377119,Transportation,Transportation +383015,Small Business,Small Business +383015,Taxation and Finance,Taxation and Finance +380403,Industry,Industry +380403,Infrastructure,Infrastructure +403302,Climate,Climate +379050,Energy,Energy +403302,Environment,Environment +403299,Industry,Industry +398950,International Relations,International Relations +420138,International Trade,International Trade +437890,International Trade,International Trade +437890,Industry,Industry +382264,Taxation and Finance,Taxation and Finance +375707,Health,Health +453438,Transportation,Transportation +383879,Transportation,Transportation +375724,Industry,Industry +407760,Taxation and Finance,Taxation and Finance +375747,Pensions,Pensions +375749,Pensions,Pensions +375750,Pensions,Pensions +376842,Consumer Issues,Consumer Issues +401591,Government Procurement,Government Procurement +429943,Immigration,Immigration +376842,International Trade,International Trade +377250,Transportation,Transportation +375755,Immigration,Immigration +434151,Agriculture,Agriculture +380288,Transportation,Transportation +380288,Consumer Issues,Consumer Issues +380288,Economic Development,Economic Development +382485,Infrastructure,Infrastructure +380507,Taxation and Finance,Impôts et finances +380506,Taxation and Finance,Impôts et finances +384247,Infrastructure,Infrastructure +524619,Agriculture,Agriculture +425110,Taxation and Finance,Impôts et finances +377339,Budget,Budget +381074,Small Business,Small Business +381074,Consumer Issues,Consumer Issues +383702,Taxation and Finance,Taxation and Finance +380090,Government Procurement,Government Procurement +380090,Research and Development,Research and Development +380090,Industry,Industry +378915,Research and Development,Research and Development +385008,Immigration,Immigration +385818,Climate,Climate +376571,Infrastructure,Infrastructure +376579,Infrastructure,Infrastructure +376578,Infrastructure,Infrastructure +376576,Infrastructure,Infrastructure +376574,Labour,Labour +376573,Labour,Labour +376579,Labour,Labour +376578,Labour,Labour +380651,Justice and Law Enforcement,Justice and Law Enforcement +377338,Justice and Law Enforcement,Justice and Law Enforcement +403374,Justice and Law Enforcement,Justice and Law Enforcement +403372,Justice and Law Enforcement,Justice and Law Enforcement +403366,Justice and Law Enforcement,Justice and Law Enforcement +403372,Constitutional Issues,Constitutional Issues +403356,Economic Development,Economic Development +403351,Economic Development,Economic Development +403374,Economic Development,Economic Development +380656,Education,Education +377342,Education,Education +380652,Health,Health +377333,Health,Health +403374,Health,Health +403372,Health,Health +403356,Health,Health +403333,Health,Health +377338,Housing,Housing +377333,Housing,Housing +403374,Housing,Housing +403372,Housing,Housing +403333,Housing,Housing +377336,Infrastructure,Infrastructure +377333,Infrastructure,Infrastructure +414873,Infrastructure,Infrastructure +403372,Infrastructure,Infrastructure +377339,Infrastructure,Infrastructure +377342,Mining,Mining +418978,Industry,Industry +418977,Industry,Industry +388775,Environment,Environment +388773,Environment,Environment +419414,Environment,Environment +419413,Environment,Environment +419392,Environment,Environment +419388,Environment,Environment +419386,Environment,Environment +389632,Environment,Environment +389631,Environment,Environment +389630,Environment,Environment +388775,Industry,Industry +389631,Energy,Energy +389630,Energy,Energy +388776,Energy,Energy +388775,Energy,Energy +388773,Energy,Energy +388775,Infrastructure,Infrastructure +388773,Infrastructure,Infrastructure +388775,Climate,Climate +388773,Climate,Climate +389632,Climate,Climate +389631,Climate,Climate +389630,Climate,Climate +388775,Economic Development,Economic Development +388775,Municipalities,Municipalities +388773,Municipalities,Municipalities +376649,Economic Development,Economic Development +376645,Economic Development,Economic Development +404370,Economic Development,Economic Development +404368,Economic Development,Economic Development +404367,Economic Development,Economic Development +391292,Economic Development,Economic Development +391289,Economic Development,Economic Development +391288,Economic Development,Economic Development +391285,Economic Development,Economic Development +391288,Employment and Training,Employment and Training +391285,Employment and Training,Employment and Training +404370,Employment and Training,Employment and Training +404368,Employment and Training,Employment and Training +404367,Employment and Training,Employment and Training +391292,Employment and Training,Employment and Training +376645,Industry,Industry +404368,Industry,Industry +391289,Industry,Industry +391288,Industry,Industry +391285,Industry,Industry +377231,Industry,Industry +391285,Environment,Environment +377231,Environment,Environment +376649,Environment,Environment +376645,Environment,Environment +404370,Environment,Environment +404368,Environment,Environment +404367,Environment,Environment +391292,Environment,Environment +391289,Environment,Environment +376649,Energy,Energy +376645,Energy,Energy +404370,Energy,Energy +404368,Energy,Energy +404367,Energy,Energy +391292,Energy,Energy +391289,Energy,Energy +391288,Energy,Energy +391285,Energy,Energy +416960,Industry,Industry +416959,Industry,Industry +377572,Industry,Industry +377571,Industry,Industry +377569,Industry,Industry +377568,Industry,Industry +416962,Industry,Industry +377569,Economic Development,Economic Development +377568,Economic Development,Economic Development +416962,Economic Development,Economic Development +416961,Economic Development,Economic Development +416960,Economic Development,Economic Development +416959,Economic Development,Economic Development +377572,Economic Development,Economic Development +377569,Employment and Training,Employment and Training +377568,Employment and Training,Employment and Training +416962,Employment and Training,Employment and Training +416961,Employment and Training,Employment and Training +416960,Employment and Training,Employment and Training +416959,Employment and Training,Employment and Training +377572,Employment and Training,Employment and Training +377569,Immigration,Immigration +377568,Immigration,Immigration +416962,Immigration,Immigration +416961,Immigration,Immigration +416960,Immigration,Immigration +416959,Immigration,Immigration +377572,Immigration,Immigration +377569,International Relations,International Relations +416962,International Relations,International Relations +377572,International Relations,International Relations +377572,International Trade,International Trade +377571,International Trade,International Trade +377571,Research and Development,Research and Development +377571,Labour,Labour +377568,Labour,Labour +417038,Research and Development,Research and Development +417036,Research and Development,Research and Development +440243,Research and Development,Research and Development +440242,Research and Development,Research and Development +440241,Research and Development,Research and Development +417041,Research and Development,Research and Development +417040,Research and Development,Research and Development +417038,Agriculture,Agriculture +417036,Agriculture,Agriculture +440243,Agriculture,Agriculture +440242,Agriculture,Agriculture +440241,Agriculture,Agriculture +417041,Agriculture,Agriculture +417040,Agriculture,Agriculture +444272,Immigration,Immigration +444271,Immigration,Immigration +428776,Immigration,Immigration +428024,Immigration,Immigration +427392,Immigration,Immigration +427391,Immigration,Immigration +427389,Immigration,Immigration +427388,Immigration,Immigration +427387,Immigration,Immigration +427213,Immigration,Immigration +427184,Immigration,Immigration +427183,Immigration,Immigration +427182,Immigration,Immigration +427180,Immigration,Immigration +427135,Immigration,Immigration +425342,Immigration,Immigration +425341,Immigration,Immigration +425340,Immigration,Immigration +425338,Immigration,Immigration +424855,Immigration,Immigration +424853,Immigration,Immigration +424851,Immigration,Immigration +424849,Immigration,Immigration +424848,Immigration,Immigration +424539,Immigration,Immigration +424538,Immigration,Immigration +424537,Immigration,Immigration +424535,Immigration,Immigration +420921,Immigration,Immigration +407226,Immigration,Immigration +406160,Immigration,Immigration +444275,Immigration,Immigration +446174,Small Business,Small Business +424537,Education,Education +424535,Education,Education +420921,Education,Education +407226,Education,Education +406160,Education,Education +448809,Education,Education +446174,Education,Education +444275,Education,Education +444274,Education,Education +444272,Education,Education +444271,Education,Education +428776,Education,Education +428024,Education,Education +427392,Education,Education +427391,Education,Education +427389,Education,Education +427388,Education,Education +427387,Education,Education +427213,Education,Education +427184,Education,Education +427183,Education,Education +427182,Education,Education +427180,Education,Education +427135,Education,Education +425342,Education,Education +425341,Education,Education +425340,Education,Education +425338,Education,Education +424855,Education,Education +424853,Education,Education +424851,Education,Education +424849,Education,Education +424848,Education,Education +424539,Education,Education +395753,Transportation,Transportation +391238,Financial Institutions,Financial Institutions +387242,Financial Institutions,Financial Institutions +431161,Financial Institutions,Financial Institutions +426300,Financial Institutions,Financial Institutions +413202,Financial Institutions,Financial Institutions +404379,Financial Institutions,Financial Institutions +404377,Financial Institutions,Financial Institutions +401411,Financial Institutions,Financial Institutions +397889,Financial Institutions,Financial Institutions +397888,Financial Institutions,Financial Institutions +393987,Financial Institutions,Financial Institutions +393986,Financial Institutions,Financial Institutions +392464,Financial Institutions,Financial Institutions +391238,Industry,Industry +387242,Industry,Industry +404379,Industry,Industry +404377,Industry,Industry +401411,Industry,Industry +397889,Industry,Industry +397888,Industry,Industry +393987,Industry,Industry +393986,Industry,Industry +392464,Industry,Industry +390039,Infrastructure,Infrastructure +388851,Infrastructure,Infrastructure +386458,Infrastructure,Infrastructure +382173,Infrastructure,Infrastructure +382172,Infrastructure,Infrastructure +381932,Infrastructure,Infrastructure +390039,Security,Sécurité +388851,Security,Sécurité +386458,Security,Sécurité +386457,Security,Sécurité +379658,Security,Sécurité +386458,Transportation,Transports +386456,Transportation,Transports +382797,Transportation,Transports +382796,Transportation,Transports +379658,Transportation,Transports +417690,Transportation,Transports +394792,Transportation,Transports +390039,Transportation,Transports +388997,Transportation,Transports +387285,Environment,Environment +387284,Environment,Environment +415162,Environment,Environment +415160,Environment,Environment +415154,Environment,Environment +415146,Environment,Environment +387295,Environment,Environment +387292,Environment,Environment +387291,Environment,Environment +387289,Environment,Environment +387284,Infrastructure,Infrastructure +381970,Small Business,Small Business +381971,Health,Health +381970,Health,Health +407121,Health,Health +407120,Health,Health +523718,Justice and Law Enforcement,Justice and Law Enforcement +520997,Justice and Law Enforcement,Justice and Law Enforcement +407121,Justice and Law Enforcement,Justice and Law Enforcement +407120,Justice and Law Enforcement,Justice and Law Enforcement +407119,Justice and Law Enforcement,Justice and Law Enforcement +381971,Justice and Law Enforcement,Justice and Law Enforcement +381970,Budget,Budget +378001,Energy,Energy +376158,Energy,Energy +378098,Energy,Energy +375460,Economic Development,Economic Development +375460,Infrastructure,Infrastructure +375460,Municipalities,Municipalities +375460,Regional Development,Regional Development +375460,Tourism,Tourism +375460,Transportation,Transportation +375462,Economic Development,Economic Development +375461,Economic Development,Economic Development +375462,Infrastructure,Infrastructure +375461,Infrastructure,Infrastructure +375462,Regional Development,Regional Development +375461,Regional Development,Regional Development +375462,Transportation,Transportation +375461,Transportation,Transportation +453063,Consumer Issues,Consumer Issues +451708,Consumer Issues,Consumer Issues +398019,Consumer Issues,Consumer Issues +451708,Economic Development,Economic Development +381865,International Development,International Development +375846,International Development,International Development +381867,International Development,International Development +429601,Immigration,Immigration +475431,Infrastructure,Infrastructure +475424,Infrastructure,Infrastructure +518386,Infrastructure,Infrastructure +516318,Infrastructure,Infrastructure +504969,Infrastructure,Infrastructure +504954,Infrastructure,Infrastructure +498947,Infrastructure,Infrastructure +494694,Infrastructure,Infrastructure +493829,Infrastructure,Infrastructure +480028,Transportation,Transportation +477431,Transportation,Transportation +535628,Transportation,Transportation +513519,Transportation,Transportation +504969,Transportation,Transportation +504954,Transportation,Transportation +498947,Transportation,Transportation +494694,Transportation,Transportation +493829,Transportation,Transportation +482832,Transportation,Transportation +378259,Agriculture,Agriculture +378259,International Trade,International Trade +378138,International Trade,Commerce international +378137,International Trade,Commerce international +381020,International Trade,Commerce international +381019,International Trade,Commerce international +380773,International Trade,Commerce international +380772,International Trade,Commerce international +380770,International Trade,Commerce international +380769,International Trade,Commerce international +380768,International Trade,Commerce international +380767,International Trade,Commerce international +380766,International Trade,Commerce international +380765,International Trade,Commerce international +380762,International Trade,Commerce international +380761,International Trade,Commerce international +380760,International Trade,Commerce international +380759,International Trade,Commerce international +378152,International Trade,Commerce international +378151,International Trade,Commerce international +378149,International Trade,Commerce international +378147,International Trade,Commerce international +378143,International Trade,Commerce international +378142,International Trade,Commerce international +378141,International Trade,Commerce international +378140,International Trade,Commerce international +382061,Health,Health +382059,Health,Health +380200,Health,Health +380199,Health,Health +380198,Health,Health +380197,Health,Health +378044,Health,Health +378043,Health,Health +378042,Health,Health +378041,Health,Health +378039,Health,Health +378037,Health,Health +378036,Health,Health +378035,Health,Health +399778,Justice and Law Enforcement,Justice and Law Enforcement +393248,Justice and Law Enforcement,Justice and Law Enforcement +382062,Justice and Law Enforcement,Justice and Law Enforcement +382061,Justice and Law Enforcement,Justice and Law Enforcement +382059,Justice and Law Enforcement,Justice and Law Enforcement +380200,Justice and Law Enforcement,Justice and Law Enforcement +380199,Justice and Law Enforcement,Justice and Law Enforcement +380198,Justice and Law Enforcement,Justice and Law Enforcement +380197,Justice and Law Enforcement,Justice and Law Enforcement +378044,Justice and Law Enforcement,Justice and Law Enforcement +378043,Justice and Law Enforcement,Justice and Law Enforcement +378042,Justice and Law Enforcement,Justice and Law Enforcement +378041,Justice and Law Enforcement,Justice and Law Enforcement +378039,Justice and Law Enforcement,Justice and Law Enforcement +378037,Justice and Law Enforcement,Justice and Law Enforcement +378036,Justice and Law Enforcement,Justice and Law Enforcement +375539,Education,Éducation +375538,Education,Éducation +403667,Education,Éducation +403630,Education,Éducation +398196,Education,Éducation +395930,Education,Éducation +395929,Education,Éducation +395927,Education,Éducation +395925,Education,Éducation +395924,Education,Éducation +395922,Education,Éducation +395919,Education,Éducation +391671,Education,Éducation +391667,Education,Éducation +384046,Education,Éducation +375539,Official Languages,Langues officielles +375538,Official Languages,Langues officielles +403667,Official Languages,Langues officielles +403630,Official Languages,Langues officielles +398196,Official Languages,Langues officielles +395930,Official Languages,Langues officielles +395929,Official Languages,Langues officielles +395927,Official Languages,Langues officielles +395925,Official Languages,Langues officielles +395924,Official Languages,Langues officielles +395922,Official Languages,Langues officielles +395919,Official Languages,Langues officielles +391671,Official Languages,Langues officielles +391667,Official Languages,Langues officielles +384046,Official Languages,Langues officielles +375542,Education,Éducation +375541,Education,Éducation +380481,Education,Éducation +375541,Official Languages,Langues officielles +380481,Official Languages,Langues officielles +375841,Official Languages,Langues officielles +375544,Education,Éducation +375543,Education,Éducation +483256,Education,Éducation +453728,Education,Éducation +451466,Education,Éducation +451465,Education,Éducation +451387,Education,Éducation +451254,Education,Éducation +445986,Education,Éducation +434074,Education,Éducation +420248,Education,Éducation +417167,Education,Éducation +417165,Education,Éducation +414277,Education,Éducation +408490,Education,Éducation +403656,Education,Éducation +398195,Education,Éducation +395946,Education,Éducation +395945,Education,Éducation +395943,Education,Éducation +395939,Education,Éducation +391656,Education,Éducation +384049,Education,Éducation +380355,Education,Éducation +375842,Education,Éducation +375842,Official Languages,Langues officielles +375545,Official Languages,Langues officielles +375544,Official Languages,Langues officielles +375543,Official Languages,Langues officielles +483256,Official Languages,Langues officielles +453728,Official Languages,Langues officielles +451466,Official Languages,Langues officielles +451465,Official Languages,Langues officielles +451387,Official Languages,Langues officielles +451254,Official Languages,Langues officielles +445986,Official Languages,Langues officielles +434074,Official Languages,Langues officielles +420832,Official Languages,Langues officielles +417167,Official Languages,Langues officielles +417165,Official Languages,Langues officielles +414277,Official Languages,Langues officielles +403656,Official Languages,Langues officielles +398195,Official Languages,Langues officielles +395946,Official Languages,Langues officielles +395945,Official Languages,Langues officielles +395943,Official Languages,Langues officielles +395939,Official Languages,Langues officielles +391656,Official Languages,Langues officielles +384049,Official Languages,Langues officielles +445934,Education,Éducation +445933,Education,Éducation +380356,Education,Éducation +375843,Education,Éducation +375548,Education,Éducation +375547,Education,Éducation +375546,Education,Éducation +451198,Education,Éducation +450342,Official Languages,Langues officielles +445934,Official Languages,Langues officielles +445933,Official Languages,Langues officielles +380356,Official Languages,Langues officielles +375843,Official Languages,Langues officielles +375548,Official Languages,Langues officielles +375547,Official Languages,Langues officielles +375546,Official Languages,Langues officielles +378372,Health,Health +378369,Health,Health +378460,Health,Health +378459,Health,Health +378458,Health,Health +377118,Transportation,Transportation +377117,Transportation,Transportation +383610,Transportation,Transportation +383608,Transportation,Transportation +382255,Transportation,Transportation +377120,Transportation,Transportation +377955,Taxation and Finance,Taxation and Finance +379045,Energy,Energy +378399,Energy,Energy +443449,Energy,Energy +420138,Energy,Energy +403303,Energy,Energy +403302,Energy,Energy +403299,Energy,Energy +380589,Energy,Energy +380588,Energy,Energy +380587,Energy,Energy +379522,Energy,Energy +379521,Energy,Energy +403299,Environment,Environment +380589,Environment,Environment +380588,Environment,Environment +379522,Environment,Environment +379521,Environment,Environment +379045,Environment,Environment +378400,Environment,Environment +420138,Environment,Environment +403303,Environment,Environment +396964,International Relations,International Relations +378399,International Relations,International Relations +420138,International Relations,International Relations +409612,International Relations,International Relations +409612,International Trade,International Trade +398950,International Trade,International Trade +437053,International Trade,International Trade +437053,Industry,Industry +380883,Taxation and Finance,Taxation and Finance +379656,Taxation and Finance,Taxation and Finance +392262,Taxation and Finance,Taxation and Finance +382266,Taxation and Finance,Taxation and Finance +382265,Taxation and Finance,Taxation and Finance +399619,Transportation,Transportation +397462,Transportation,Transportation +380511,Transportation,Transportation +377551,Transportation,Transportation +377549,Transportation,Transportation +375721,Transportation,Transportation +382450,Transportation,Transportation +377299,Transportation,Transportation +406665,Taxation and Finance,Taxation and Finance +388988,Taxation and Finance,Taxation and Finance +376840,Consumer Issues,Consumer Issues +376836,Consumer Issues,Consumer Issues +377250,Consumer Issues,Consumer Issues +376911,Consumer Issues,Consumer Issues +376909,Consumer Issues,Consumer Issues +376907,Consumer Issues,Consumer Issues +376846,Consumer Issues,Consumer Issues +392184,Government Procurement,Government Procurement +392182,Government Procurement,Government Procurement +415063,Government Procurement,Government Procurement +413983,Government Procurement,Government Procurement +413982,Government Procurement,Government Procurement +406421,Government Procurement,Government Procurement +406418,Government Procurement,Government Procurement +406417,Government Procurement,Government Procurement +401706,Government Procurement,Government Procurement +401705,Government Procurement,Government Procurement +401704,Government Procurement,Government Procurement +401592,Government Procurement,Government Procurement +415710,Immigration,Immigration +395209,Immigration,Immigration +417492,International Trade,International Trade +409131,International Trade,International Trade +409129,International Trade,International Trade +408391,International Trade,International Trade +394922,International Trade,International Trade +393539,International Trade,International Trade +393363,International Trade,International Trade +393362,International Trade,International Trade +389861,International Trade,International Trade +389859,International Trade,International Trade +389855,International Trade,International Trade +376909,International Trade,International Trade +376907,International Trade,International Trade +376846,International Trade,International Trade +376911,Transportation,Transportation +432956,Agriculture,Agriculture +426175,Agriculture,Agriculture +426126,Agriculture,Agriculture +426123,Agriculture,Agriculture +426122,Agriculture,Agriculture +426120,Agriculture,Agriculture +426117,Agriculture,Agriculture +426115,Agriculture,Agriculture +426111,Agriculture,Agriculture +426108,Agriculture,Agriculture +426107,Agriculture,Agriculture +426104,Agriculture,Agriculture +426103,Agriculture,Agriculture +426100,Agriculture,Agriculture +426096,Agriculture,Agriculture +426057,Agriculture,Agriculture +426050,Agriculture,Agriculture +426034,Agriculture,Agriculture +426009,Agriculture,Agriculture +426007,Agriculture,Agriculture +422929,Agriculture,Agriculture +420250,Agriculture,Agriculture +420249,Agriculture,Agriculture +418751,Agriculture,Agriculture +418503,Agriculture,Agriculture +416077,Agriculture,Agriculture +416047,Agriculture,Agriculture +411252,Agriculture,Agriculture +411050,Agriculture,Agriculture +411045,Agriculture,Agriculture +411043,Agriculture,Agriculture +411040,Agriculture,Agriculture +407951,Agriculture,Agriculture +400470,Agriculture,Agriculture +400469,Agriculture,Agriculture +400468,Agriculture,Agriculture +400467,Agriculture,Agriculture +400466,Agriculture,Agriculture +400465,Agriculture,Agriculture +400464,Agriculture,Agriculture +400461,Agriculture,Agriculture +400460,Agriculture,Agriculture +400459,Agriculture,Agriculture +400458,Agriculture,Agriculture +400457,Agriculture,Agriculture +400456,Agriculture,Agriculture +400455,Agriculture,Agriculture +400454,Agriculture,Agriculture +400453,Agriculture,Agriculture +400452,Agriculture,Agriculture +390431,Agriculture,Agriculture +389254,Agriculture,Agriculture +386762,Agriculture,Agriculture +375902,Agriculture,Agriculture +527286,Agriculture,Agriculture +527285,Agriculture,Agriculture +527284,Agriculture,Agriculture +527283,Agriculture,Agriculture +527282,Agriculture,Agriculture +527281,Agriculture,Agriculture +527280,Agriculture,Agriculture +527279,Agriculture,Agriculture +527278,Agriculture,Agriculture +527277,Agriculture,Agriculture +527276,Agriculture,Agriculture +523882,Agriculture,Agriculture +523881,Agriculture,Agriculture +523879,Agriculture,Agriculture +523877,Agriculture,Agriculture +500262,Agriculture,Agriculture +500261,Agriculture,Agriculture +500260,Agriculture,Agriculture +500258,Agriculture,Agriculture +500257,Agriculture,Agriculture +500254,Agriculture,Agriculture +500253,Agriculture,Agriculture +500251,Agriculture,Agriculture +500078,Agriculture,Agriculture +500077,Agriculture,Agriculture +500075,Agriculture,Agriculture +500074,Agriculture,Agriculture +500073,Agriculture,Agriculture +472088,Agriculture,Agriculture +469330,Agriculture,Agriculture +469182,Agriculture,Agriculture +469181,Agriculture,Agriculture +469180,Agriculture,Agriculture +466121,Agriculture,Agriculture +466120,Agriculture,Agriculture +466119,Agriculture,Agriculture +466118,Agriculture,Agriculture +466117,Agriculture,Agriculture +466116,Agriculture,Agriculture +466115,Agriculture,Agriculture +466114,Agriculture,Agriculture +466113,Agriculture,Agriculture +466112,Agriculture,Agriculture +466111,Agriculture,Agriculture +466110,Agriculture,Agriculture +466109,Agriculture,Agriculture +466108,Agriculture,Agriculture +466107,Agriculture,Agriculture +466106,Agriculture,Agriculture +466104,Agriculture,Agriculture +466103,Agriculture,Agriculture +460940,Agriculture,Agriculture +459194,Agriculture,Agriculture +459173,Agriculture,Agriculture +459077,Agriculture,Agriculture +456813,Agriculture,Agriculture +454121,Agriculture,Agriculture +451307,Agriculture,Agriculture +451306,Agriculture,Agriculture +451305,Agriculture,Agriculture +451304,Agriculture,Agriculture +451303,Agriculture,Agriculture +451271,Agriculture,Agriculture +451270,Agriculture,Agriculture +451269,Agriculture,Agriculture +451267,Agriculture,Agriculture +451266,Agriculture,Agriculture +451265,Agriculture,Agriculture +451264,Agriculture,Agriculture +451263,Agriculture,Agriculture +451262,Agriculture,Agriculture +451260,Agriculture,Agriculture +451259,Agriculture,Agriculture +451258,Agriculture,Agriculture +451257,Agriculture,Agriculture +451256,Agriculture,Agriculture +451253,Agriculture,Agriculture +451251,Agriculture,Agriculture +451249,Agriculture,Agriculture +375782,Taxation and Finance,Impôts et finances +375781,Taxation and Finance,Impôts et finances +494540,Infrastructure,Infrastructure +494533,Infrastructure,Infrastructure +406184,Infrastructure,Infrastructure +402040,Infrastructure,Infrastructure +399885,Infrastructure,Infrastructure +395381,Infrastructure,Infrastructure +516722,Agriculture,Agriculture +512210,Agriculture,Agriculture +421019,Agriculture,Agriculture +406185,Agriculture,Agriculture +399881,Agriculture,Agriculture +494539,Agriculture,Agriculture +491058,Agriculture,Agriculture +490701,Agriculture,Agriculture +490653,Agriculture,Agriculture +490646,Agriculture,Agriculture +486672,Agriculture,Agriculture +486630,Agriculture,Agriculture +481974,Agriculture,Agriculture +481973,Agriculture,Agriculture +465981,Agriculture,Agriculture +465980,Agriculture,Agriculture +452556,Agriculture,Agriculture +448823,Agriculture,Agriculture +444549,Agriculture,Agriculture +440996,Agriculture,Agriculture +536922,Agriculture,Agriculture +536917,Agriculture,Agriculture +524623,Agriculture,Agriculture +423151,Taxation and Finance,Impôts et finances +423147,Taxation and Finance,Impôts et finances +395381,Taxation and Finance,Impôts et finances +395378,Taxation and Finance,Impôts et finances +384248,Taxation and Finance,Impôts et finances +382065,Taxation and Finance,Impôts et finances +423146,Taxation and Finance,Impôts et finances +423145,Taxation and Finance,Impôts et finances +421012,Taxation and Finance,Impôts et finances +420943,Taxation and Finance,Impôts et finances +420941,Taxation and Finance,Impôts et finances +418191,Taxation and Finance,Impôts et finances +415672,Taxation and Finance,Impôts et finances +415426,Taxation and Finance,Impôts et finances +415424,Taxation and Finance,Impôts et finances +412883,Taxation and Finance,Impôts et finances +412882,Taxation and Finance,Impôts et finances +412873,Taxation and Finance,Impôts et finances +412872,Taxation and Finance,Impôts et finances +412859,Taxation and Finance,Impôts et finances +412855,Taxation and Finance,Impôts et finances +402195,Taxation and Finance,Impôts et finances +402053,Taxation and Finance,Impôts et finances +402039,Taxation and Finance,Impôts et finances +402037,Taxation and Finance,Impôts et finances +401872,Taxation and Finance,Impôts et finances +399887,Taxation and Finance,Impôts et finances +399882,Taxation and Finance,Impôts et finances +397838,Taxation and Finance,Impôts et finances +397837,Taxation and Finance,Impôts et finances +397836,Taxation and Finance,Impôts et finances +528140,Taxation and Finance,Impôts et finances +490654,Taxation and Finance,Impôts et finances +474348,Taxation and Finance,Impôts et finances +448822,Taxation and Finance,Impôts et finances +440994,Taxation and Finance,Impôts et finances +437620,Taxation and Finance,Impôts et finances +427796,Taxation and Finance,Impôts et finances +427795,Taxation and Finance,Impôts et finances +427794,Taxation and Finance,Impôts et finances +427793,Taxation and Finance,Impôts et finances +377338,Budget,Budget +377333,Budget,Budget +381065,Small Business,Small Business +381063,Small Business,Small Business +383702,Small Business,Small Business +381065,Consumer Issues,Consumer Issues +381063,Consumer Issues,Consumer Issues +383702,Consumer Issues,Consumer Issues +380089,Government Procurement,Government Procurement +380089,Research and Development,Research and Development +380089,Industry,Industry +378904,Research and Development,Research and Development +376062,Research and Development,Research and Development +395538,Research and Development,Research and Development +394588,Research and Development,Research and Development +391638,Research and Development,Research and Development +389778,Research and Development,Research and Development +389777,Research and Development,Research and Development +386400,Research and Development,Research and Development +378922,Research and Development,Research and Development +378920,Research and Development,Research and Development +376011,Immigration,Immigration +375972,Immigration,Immigration +385816,Climate,Climate +376260,Transportation,Transports +375865,Tourism,Tourism +375867,Sports,Sports +417326,Economic Development,Développement économique +414733,Economic Development,Développement économique +385842,Economic Development,Développement économique +379537,Economic Development,Développement économique +379526,Economic Development,Développement économique +379537,Regional Development,Développement régional +379526,Regional Development,Développement régional +426291,Regional Development,Développement régional +422091,Regional Development,Développement régional +422089,Regional Development,Développement régional +417327,Regional Development,Développement régional +417326,Regional Development,Développement régional +414733,Regional Development,Développement régional +385866,Regional Development,Développement régional +385854,Regional Development,Développement régional +398174,Infrastructure,Infrastructure +398173,Infrastructure,Infrastructure +390515,Infrastructure,Infrastructure +390502,Infrastructure,Infrastructure +388712,Infrastructure,Infrastructure +388700,Infrastructure,Infrastructure +388696,Infrastructure,Infrastructure +388695,Infrastructure,Infrastructure +388689,Infrastructure,Infrastructure +385866,Infrastructure,Infrastructure +385862,Infrastructure,Infrastructure +385854,Infrastructure,Infrastructure +385842,Infrastructure,Infrastructure +382669,Infrastructure,Infrastructure +379537,Infrastructure,Infrastructure +379526,Infrastructure,Infrastructure +376660,Infrastructure,Infrastructure +376657,Infrastructure,Infrastructure +431634,Infrastructure,Infrastructure +430644,Infrastructure,Infrastructure +430643,Infrastructure,Infrastructure +430635,Infrastructure,Infrastructure +430629,Infrastructure,Infrastructure +429141,Infrastructure,Infrastructure +429140,Infrastructure,Infrastructure +429130,Infrastructure,Infrastructure +429120,Infrastructure,Infrastructure +426296,Infrastructure,Infrastructure +426291,Infrastructure,Infrastructure +426283,Infrastructure,Infrastructure +426280,Infrastructure,Infrastructure +424265,Infrastructure,Infrastructure +424264,Infrastructure,Infrastructure +424261,Infrastructure,Infrastructure +424260,Infrastructure,Infrastructure +424257,Infrastructure,Infrastructure +422091,Infrastructure,Infrastructure +422089,Infrastructure,Infrastructure +422085,Infrastructure,Infrastructure +419536,Infrastructure,Infrastructure +417328,Infrastructure,Infrastructure +417327,Infrastructure,Infrastructure +417326,Infrastructure,Infrastructure +414733,Infrastructure,Infrastructure +414720,Infrastructure,Infrastructure +417326,Transportation,Transports +414733,Transportation,Transports +388689,Transportation,Transports +430644,Transportation,Transports +430643,Transportation,Transports +429130,Transportation,Transports +417328,Transportation,Transports +375972,Taxation and Finance,Taxation and Finance +376011,International Trade,International Trade +375972,International Trade,International Trade +385008,International Trade,International Trade +536013,Education,Education +453001,Health,Health +536013,Health,Health +377833,Health,Health +457915,Health,Health +423254,International Trade,International Trade +423253,International Trade,International Trade +376038,International Trade,International Trade +437759,International Trade,International Trade +423256,International Trade,International Trade +414634,Intellectual Property,Propriété intellectuelle +414633,Intellectual Property,Propriété intellectuelle +414636,Intellectual Property,Propriété intellectuelle +384321,Transportation,Transportation +378462,Transportation,Transportation +401501,Transportation,Transportation +388967,Transportation,Transportation +388966,Transportation,Transportation +384325,Transportation,Transportation +384324,Transportation,Transportation +384323,Transportation,Transportation +376056,Budget,Budget +395538,Budget,Budget +394588,Budget,Budget +393070,Budget,Budget +391638,Budget,Budget +389788,Budget,Budget +389785,Budget,Budget +389781,Budget,Budget +389778,Budget,Budget +389777,Budget,Budget +387043,Budget,Budget +386400,Budget,Budget +378922,Budget,Budget +378920,Budget,Budget +376062,Infrastructure,Infrastructure +376056,Infrastructure,Infrastructure +395538,Infrastructure,Infrastructure +393070,Infrastructure,Infrastructure +391638,Infrastructure,Infrastructure +389788,Infrastructure,Infrastructure +389785,Infrastructure,Infrastructure +389778,Infrastructure,Infrastructure +387043,Infrastructure,Infrastructure +386400,Infrastructure,Infrastructure +378922,Infrastructure,Infrastructure +378920,Infrastructure,Infrastructure +378915,Infrastructure,Infrastructure +378920,Economic Development,Economic Development +376056,Economic Development,Economic Development +395538,Economic Development,Economic Development +391638,Economic Development,Economic Development +389788,Economic Development,Economic Development +387043,Economic Development,Economic Development +386400,Economic Development,Economic Development +378915,Government Procurement,Government Procurement +376062,Government Procurement,Government Procurement +395538,Government Procurement,Government Procurement +391638,Government Procurement,Government Procurement +387043,Government Procurement,Government Procurement +378922,Government Procurement,Government Procurement +535848,Government Procurement,Government Procurement +525970,Government Procurement,Government Procurement +410049,Government Procurement,Government Procurement +407971,Government Procurement,Government Procurement +405742,Government Procurement,Government Procurement +403781,Government Procurement,Government Procurement +399068,Government Procurement,Government Procurement +396312,Government Procurement,Government Procurement +394130,Government Procurement,Government Procurement +394126,Government Procurement,Government Procurement +391595,Government Procurement,Government Procurement +388134,Government Procurement,Government Procurement +388126,Government Procurement,Government Procurement +388118,Government Procurement,Government Procurement +388096,Government Procurement,Government Procurement +388091,Government Procurement,Government Procurement +383679,Government Procurement,Government Procurement +383658,Government Procurement,Government Procurement +383651,Government Procurement,Government Procurement +382383,Government Procurement,Government Procurement +382382,Government Procurement,Government Procurement +382381,Government Procurement,Government Procurement +382380,Government Procurement,Government Procurement +379515,Government Procurement,Government Procurement +376123,Government Procurement,Government Procurement +513069,Government Procurement,Government Procurement +510907,Government Procurement,Government Procurement +510906,Government Procurement,Government Procurement +508731,Government Procurement,Government Procurement +498734,Government Procurement,Government Procurement +495754,Government Procurement,Government Procurement +493313,Government Procurement,Government Procurement +493312,Government Procurement,Government Procurement +493311,Government Procurement,Government Procurement +490901,Government Procurement,Government Procurement +490899,Government Procurement,Government Procurement +487750,Government Procurement,Government Procurement +487748,Government Procurement,Government Procurement +457489,Government Procurement,Government Procurement +455901,Government Procurement,Government Procurement +438913,Government Procurement,Government Procurement +438904,Government Procurement,Government Procurement +438891,Government Procurement,Government Procurement +438886,Government Procurement,Government Procurement +438857,Government Procurement,Government Procurement +435549,Government Procurement,Government Procurement +431023,Government Procurement,Government Procurement +431021,Government Procurement,Government Procurement +428924,Government Procurement,Government Procurement +428923,Government Procurement,Government Procurement +426859,Government Procurement,Government Procurement +419925,Government Procurement,Government Procurement +544337,Government Procurement,Government Procurement +542001,Government Procurement,Government Procurement +522649,Immigration,Immigration +522647,Immigration,Immigration +510906,Immigration,Immigration +505859,Immigration,Immigration +495756,Immigration,Immigration +490902,Immigration,Immigration +487750,Immigration,Immigration +438908,Immigration,Immigration +438888,Immigration,Immigration +438881,Immigration,Immigration +403811,Immigration,Immigration +403807,Immigration,Immigration +403785,Immigration,Immigration +400502,Immigration,Immigration +400498,Immigration,Immigration +400483,Immigration,Immigration +399079,Immigration,Immigration +399074,Immigration,Immigration +399068,Immigration,Immigration +399067,Immigration,Immigration +399057,Immigration,Immigration +399053,Immigration,Immigration +399048,Immigration,Immigration +399042,Immigration,Immigration +399041,Immigration,Immigration +396329,Immigration,Immigration +396327,Immigration,Immigration +396326,Immigration,Immigration +396325,Immigration,Immigration +396324,Immigration,Immigration +396323,Immigration,Immigration +396321,Immigration,Immigration +394135,Immigration,Immigration +394132,Immigration,Immigration +391593,Immigration,Immigration +391590,Immigration,Immigration +391588,Immigration,Immigration +391584,Immigration,Immigration +388378,Immigration,Immigration +388363,Immigration,Immigration +388360,Immigration,Immigration +388139,Immigration,Immigration +388115,Immigration,Immigration +388114,Immigration,Immigration +388091,Immigration,Immigration +385797,Immigration,Immigration +385795,Immigration,Immigration +385791,Immigration,Immigration +385789,Immigration,Immigration +385760,Immigration,Immigration +385759,Immigration,Immigration +385758,Immigration,Immigration +385757,Immigration,Immigration +385755,Immigration,Immigration +385753,Immigration,Immigration +385752,Immigration,Immigration +385749,Immigration,Immigration +385748,Immigration,Immigration +385746,Immigration,Immigration +385745,Immigration,Immigration +383687,Immigration,Immigration +383686,Immigration,Immigration +383684,Immigration,Immigration +383666,Immigration,Immigration +383662,Immigration,Immigration +383652,Immigration,Immigration +383651,Immigration,Immigration +382399,Immigration,Immigration +382398,Immigration,Immigration +382397,Immigration,Immigration +382396,Immigration,Immigration +379515,Immigration,Immigration +379513,Immigration,Immigration +377170,Immigration,Immigration +377169,Immigration,Immigration +544338,Immigration,Immigration +542003,Immigration,Immigration +540000,Immigration,Immigration +535849,Immigration,Immigration +535843,Immigration,Immigration +535840,Immigration,Immigration +535835,Immigration,Immigration +532070,Immigration,Immigration +532066,Immigration,Immigration +532065,Immigration,Immigration +532063,Immigration,Immigration +456011,Intellectual Property,Intellectual Property +455922,Intellectual Property,Intellectual Property +449858,Intellectual Property,Intellectual Property +438914,Intellectual Property,Intellectual Property +438850,Intellectual Property,Intellectual Property +432475,Intellectual Property,Intellectual Property +431037,Intellectual Property,Intellectual Property +428928,Intellectual Property,Intellectual Property +422101,Intellectual Property,Intellectual Property +417975,Intellectual Property,Intellectual Property +416314,Intellectual Property,Intellectual Property +410045,Intellectual Property,Intellectual Property +410041,Intellectual Property,Intellectual Property +405744,Intellectual Property,Intellectual Property +405741,Intellectual Property,Intellectual Property +403783,Intellectual Property,Intellectual Property +403780,Intellectual Property,Intellectual Property +400490,Intellectual Property,Intellectual Property +400488,Intellectual Property,Intellectual Property +400487,Intellectual Property,Intellectual Property +399070,Intellectual Property,Intellectual Property +399068,Intellectual Property,Intellectual Property +399062,Intellectual Property,Intellectual Property +399051,Intellectual Property,Intellectual Property +392780,Intellectual Property,Intellectual Property +388135,Intellectual Property,Intellectual Property +383651,Intellectual Property,Intellectual Property +382400,Intellectual Property,Intellectual Property +382391,Intellectual Property,Intellectual Property +379515,Intellectual Property,Intellectual Property +535850,Intellectual Property,Intellectual Property +535845,Intellectual Property,Intellectual Property +532077,Intellectual Property,Intellectual Property +532073,Intellectual Property,Intellectual Property +529738,Intellectual Property,Intellectual Property +526395,Intellectual Property,Intellectual Property +520100,Intellectual Property,Intellectual Property +514177,Intellectual Property,Intellectual Property +514174,Intellectual Property,Intellectual Property +498734,Intellectual Property,Intellectual Property +493313,Intellectual Property,Intellectual Property +490901,Intellectual Property,Intellectual Property +490900,Intellectual Property,Intellectual Property +487750,Intellectual Property,Intellectual Property +487748,Intellectual Property,Intellectual Property +468015,Intellectual Property,Intellectual Property +464299,Intellectual Property,Intellectual Property +464295,Intellectual Property,Intellectual Property +462605,Intellectual Property,Intellectual Property +462601,Intellectual Property,Intellectual Property +462599,Intellectual Property,Intellectual Property +462596,Intellectual Property,Intellectual Property +462595,Intellectual Property,Intellectual Property +458719,Intellectual Property,Intellectual Property +458719,Regional Development,Regional Development +455922,Regional Development,Regional Development +388140,Regional Development,Regional Development +382400,Regional Development,Regional Development +376122,Regional Development,Regional Development +438905,Regional Development,Regional Development +438899,Regional Development,Regional Development +438894,Regional Development,Regional Development +438890,Regional Development,Regional Development +438854,Regional Development,Regional Development +432474,Regional Development,Regional Development +426865,Regional Development,Regional Development +426860,Regional Development,Regional Development +416314,Regional Development,Regional Development +416103,Regional Development,Regional Development +403783,Regional Development,Regional Development +403779,Regional Development,Regional Development +535848,Regional Development,Regional Development +535846,Regional Development,Regional Development +522646,Regional Development,Regional Development +520100,Regional Development,Regional Development +514177,Regional Development,Regional Development +508719,Regional Development,Regional Development +487751,Regional Development,Regional Development +473509,Regional Development,Regional Development +473496,Regional Development,Regional Development +462617,Regional Development,Regional Development +462604,Regional Development,Regional Development +462601,Regional Development,Regional Development +462599,Regional Development,Regional Development +462598,Regional Development,Regional Development +462595,Regional Development,Regional Development +386937,Infrastructure,Infrastructure +386936,Infrastructure,Infrastructure +380419,Infrastructure,Infrastructure +380416,Infrastructure,Infrastructure +379652,Infrastructure,Infrastructure +378351,Health,Health +378350,Health,Health +376292,Budget,Budget +376289,Budget,Budget +376295,Budget,Budget +376294,Climate,Climate +376289,Climate,Climate +376292,Government Procurement,Government Procurement +380316,Transportation,Transportation +376292,Taxation and Finance,Taxation and Finance +393639,Health,Health +393069,Health,Health +384548,Health,Health +384546,Health,Health +381857,Health,Health +527304,Health,Health +527303,Health,Health +527302,Health,Health +527299,Health,Health +527298,Health,Health +527297,Health,Health +527296,Health,Health +527295,Health,Health +527294,Health,Health +527293,Health,Health +527292,Health,Health +527291,Health,Health +527289,Health,Health +527288,Health,Health +519176,Health,Health +516179,Health,Health +503701,Health,Health +501064,Health,Health +494618,Health,Health +490909,Health,Health +490908,Health,Health +490907,Health,Health +490906,Health,Health +490905,Health,Health +490904,Health,Health +490903,Health,Health +478340,Health,Health +463419,Health,Health +461902,Health,Health +460970,Health,Health +457469,Health,Health +457468,Health,Health +457466,Health,Health +457464,Health,Health +457461,Health,Health +457460,Health,Health +457458,Health,Health +457456,Health,Health +457454,Health,Health +457451,Health,Health +457259,Health,Health +433024,Health,Health +433021,Health,Health +433019,Health,Health +433016,Health,Health +417204,Health,Health +417145,Health,Health +417144,Health,Health +417143,Health,Health +417142,Health,Health +417141,Health,Health +417140,Health,Health +417139,Health,Health +417137,Health,Health +417136,Health,Health +417134,Health,Health +417133,Health,Health +417132,Health,Health +417131,Health,Health +417130,Health,Health +417129,Health,Health +417128,Health,Health +417127,Health,Health +417125,Health,Health +417124,Health,Health +417123,Health,Health +417121,Health,Health +417101,Health,Health +417100,Health,Health +417099,Health,Health +417098,Health,Health +417097,Health,Health +410842,Health,Health +410841,Health,Health +410840,Health,Health +410839,Health,Health +407730,Health,Health +395902,Health,Health +377515,Climate,Climate +482306,Infrastructure,Infrastructure +477968,Infrastructure,Infrastructure +387015,Infrastructure,Infrastructure +387014,Infrastructure,Infrastructure +387013,Infrastructure,Infrastructure +378680,Infrastructure,Infrastructure +378679,Infrastructure,Infrastructure +378677,Infrastructure,Infrastructure +378676,Infrastructure,Infrastructure +378671,Infrastructure,Infrastructure +458927,Infrastructure,Infrastructure +458926,Infrastructure,Infrastructure +458672,Infrastructure,Infrastructure +458671,Infrastructure,Infrastructure +458668,Infrastructure,Infrastructure +452142,Infrastructure,Infrastructure +452091,Infrastructure,Infrastructure +451784,Infrastructure,Infrastructure +448447,Infrastructure,Infrastructure +448445,Infrastructure,Infrastructure +446482,Infrastructure,Infrastructure +445361,Infrastructure,Infrastructure +445353,Infrastructure,Infrastructure +444562,Infrastructure,Infrastructure +444561,Infrastructure,Infrastructure +436239,Infrastructure,Infrastructure +505454,Infrastructure,Infrastructure +444562,Industry,Industry +444561,Industry,Industry +378680,Industry,Industry +378679,Industry,Industry +378677,Industry,Industry +378676,Industry,Industry +378671,Industry,Industry +431333,Industry,Industry +477968,Industry,Industry +458671,Industry,Industry +452091,Industry,Industry +451784,Industry,Industry +448447,Industry,Industry +446482,Industry,Industry +445361,Industry,Industry +442902,Agriculture,Agriculture +440990,Agriculture,Agriculture +442902,Environment,Environment +442902,Industry,Industry +440990,Industry,Industry +376341,Immigration,Immigration +462157,Immigration,Immigration +376494,Immigration,Immigration +376493,Immigration,Immigration +376492,Immigration,Immigration +376490,Immigration,Immigration +376486,Immigration,Immigration +376483,Immigration,Immigration +376481,Immigration,Immigration +376480,Immigration,Immigration +376477,Immigration,Immigration +376474,Immigration,Immigration +376473,Immigration,Immigration +376472,Immigration,Immigration +376471,Immigration,Immigration +376470,Immigration,Immigration +376468,Immigration,Immigration +376418,Immigration,Immigration +376417,Immigration,Immigration +376410,Immigration,Immigration +376368,Immigration,Immigration +516778,Environment,Environment +434000,Research and Development,Research and Development +531400,Research and Development,Research and Development +399596,Research and Development,Research and Development +395714,Research and Development,Research and Development +395712,Research and Development,Research and Development +395581,Research and Development,Research and Development +395568,Research and Development,Research and Development +395562,Research and Development,Research and Development +381262,Research and Development,Research and Development +381233,Research and Development,Research and Development +381231,Research and Development,Research and Development +381228,Research and Development,Research and Development +381226,Research and Development,Research and Development +381224,Research and Development,Research and Development +474875,Research and Development,Research and Development +456540,Research and Development,Research and Development +454521,Research and Development,Research and Development +454517,Research and Development,Research and Development +454512,Research and Development,Research and Development +382009,Government Procurement,Government Procurement +382008,Government Procurement,Government Procurement +409655,Government Procurement,Government Procurement +407659,Government Procurement,Government Procurement +398189,Government Procurement,Government Procurement +398186,Government Procurement,Government Procurement +376398,Immigration,Immigration +450334,International Trade,International Trade +448293,International Trade,International Trade +382724,International Trade,International Trade +382723,International Trade,International Trade +381556,International Trade,International Trade +381542,International Trade,International Trade +381536,International Trade,International Trade +381534,International Trade,International Trade +406581,International Trade,International Trade +406580,International Trade,International Trade +406579,International Trade,International Trade +401002,International Trade,International Trade +401001,International Trade,International Trade +401000,International Trade,International Trade +400998,International Trade,International Trade +400997,International Trade,International Trade +399356,International Trade,International Trade +399355,International Trade,International Trade +399353,International Trade,International Trade +394584,International Trade,International Trade +394581,International Trade,International Trade +392890,International Trade,International Trade +392889,International Trade,International Trade +392888,International Trade,International Trade +391805,International Trade,International Trade +391804,International Trade,International Trade +391803,International Trade,International Trade +388488,International Trade,International Trade +388483,International Trade,International Trade +388281,International Trade,International Trade +385995,International Trade,International Trade +385994,International Trade,International Trade +385992,International Trade,International Trade +385986,International Trade,International Trade +448292,International Trade,International Trade +448291,International Trade,International Trade +445773,International Trade,International Trade +444008,International Trade,International Trade +444007,International Trade,International Trade +442726,International Trade,International Trade +442725,International Trade,International Trade +442724,International Trade,International Trade +442723,International Trade,International Trade +442722,International Trade,International Trade +442721,International Trade,International Trade +442720,International Trade,International Trade +436045,International Trade,International Trade +436043,International Trade,International Trade +433988,International Trade,International Trade +431364,International Trade,International Trade +431363,International Trade,International Trade +431362,International Trade,International Trade +429523,International Trade,International Trade +429522,International Trade,International Trade +429520,International Trade,International Trade +429517,International Trade,International Trade +429515,International Trade,International Trade +426537,International Trade,International Trade +426534,International Trade,International Trade +426529,International Trade,International Trade +424435,International Trade,International Trade +422699,International Trade,International Trade +422636,International Trade,International Trade +422635,International Trade,International Trade +422634,International Trade,International Trade +422631,International Trade,International Trade +420309,International Trade,International Trade +420307,International Trade,International Trade +420306,International Trade,International Trade +420305,International Trade,International Trade +420304,International Trade,International Trade +418300,International Trade,International Trade +418299,International Trade,International Trade +418298,International Trade,International Trade +418297,International Trade,International Trade +418296,International Trade,International Trade +417018,International Trade,International Trade +417017,International Trade,International Trade +417016,International Trade,International Trade +417015,International Trade,International Trade +417014,International Trade,International Trade +417012,International Trade,International Trade +417011,International Trade,International Trade +417010,International Trade,International Trade +417009,International Trade,International Trade +417008,International Trade,International Trade +417007,International Trade,International Trade +417006,International Trade,International Trade +417005,International Trade,International Trade +417004,International Trade,International Trade +417003,International Trade,International Trade +417002,International Trade,International Trade +417001,International Trade,International Trade +416999,International Trade,International Trade +416998,International Trade,International Trade +416997,International Trade,International Trade +413729,International Trade,International Trade +413725,International Trade,International Trade +413716,International Trade,International Trade +413714,International Trade,International Trade +413711,International Trade,International Trade +413675,International Trade,International Trade +413672,International Trade,International Trade +413670,International Trade,International Trade +413666,International Trade,International Trade +413654,International Trade,International Trade +410231,International Trade,International Trade +544690,International Trade,International Trade +544689,International Trade,International Trade +544688,International Trade,International Trade +544687,International Trade,International Trade +544686,International Trade,International Trade +542021,International Trade,International Trade +542019,International Trade,International Trade +542018,International Trade,International Trade +542017,International Trade,International Trade +542016,International Trade,International Trade +542014,International Trade,International Trade +542012,International Trade,International Trade +532756,International Trade,International Trade +532755,International Trade,International Trade +532754,International Trade,International Trade +532753,International Trade,International Trade +532752,International Trade,International Trade +532751,International Trade,International Trade +529641,International Trade,International Trade +529640,International Trade,International Trade +529638,International Trade,International Trade +529636,International Trade,International Trade +529635,International Trade,International Trade +529634,International Trade,International Trade +529632,International Trade,International Trade +529631,International Trade,International Trade +525937,International Trade,International Trade +525932,International Trade,International Trade +522963,International Trade,International Trade +520805,International Trade,International Trade +520804,International Trade,International Trade +520803,International Trade,International Trade +518284,International Trade,International Trade +515812,International Trade,International Trade +515811,International Trade,International Trade +511542,International Trade,International Trade +509036,International Trade,International Trade +509035,International Trade,International Trade +509034,International Trade,International Trade +509032,International Trade,International Trade +509031,International Trade,International Trade +502786,International Trade,International Trade +498736,International Trade,International Trade +490024,International Trade,International Trade +490023,International Trade,International Trade +490021,International Trade,International Trade +490014,International Trade,International Trade +490007,International Trade,International Trade +476028,International Trade,International Trade +476026,International Trade,International Trade +476025,International Trade,International Trade +471165,International Trade,International Trade +471163,International Trade,International Trade +471161,International Trade,International Trade +464998,International Trade,International Trade +464997,International Trade,International Trade +464996,International Trade,International Trade +460239,International Trade,International Trade +460238,International Trade,International Trade +456279,International Trade,International Trade +456278,International Trade,International Trade +456277,International Trade,International Trade +456276,International Trade,International Trade +456275,International Trade,International Trade +456274,International Trade,International Trade +456272,International Trade,International Trade +456271,International Trade,International Trade +456259,International Trade,International Trade +452967,International Trade,International Trade +419435,Agriculture,Agriculture +419429,Agriculture,Agriculture +419427,Agriculture,Agriculture +411496,Agriculture,Agriculture +404327,Agriculture,Agriculture +396953,Agriculture,Agriculture +396951,Agriculture,Agriculture +396948,Agriculture,Agriculture +396944,Agriculture,Agriculture +396941,Agriculture,Agriculture +396936,Agriculture,Agriculture +396934,Agriculture,Agriculture +396922,Agriculture,Agriculture +387216,Agriculture,Agriculture +521523,Agriculture,Agriculture +521521,Agriculture,Agriculture +521520,Agriculture,Agriculture +521518,Agriculture,Agriculture +521516,Agriculture,Agriculture +521515,Agriculture,Agriculture +499160,Agriculture,Agriculture +499144,Agriculture,Agriculture +499140,Agriculture,Agriculture +499139,Agriculture,Agriculture +499138,Agriculture,Agriculture +499130,Agriculture,Agriculture +499128,Agriculture,Agriculture +499124,Agriculture,Agriculture +492097,Agriculture,Agriculture +489163,Agriculture,Agriculture +489162,Agriculture,Agriculture +489161,Agriculture,Agriculture +489160,Agriculture,Agriculture +489159,Agriculture,Agriculture +489158,Agriculture,Agriculture +489157,Agriculture,Agriculture +488868,Agriculture,Agriculture +465375,Agriculture,Agriculture +465085,Agriculture,Agriculture +465084,Agriculture,Agriculture +465083,Agriculture,Agriculture +465082,Agriculture,Agriculture +465081,Agriculture,Agriculture +465080,Agriculture,Agriculture +465079,Agriculture,Agriculture +465077,Agriculture,Agriculture +465076,Agriculture,Agriculture +459453,Agriculture,Agriculture +459283,Agriculture,Agriculture +447259,Agriculture,Agriculture +447258,Agriculture,Agriculture +447255,Agriculture,Agriculture +447250,Agriculture,Agriculture +446395,Agriculture,Agriculture +446394,Agriculture,Agriculture +446393,Agriculture,Agriculture +446222,Agriculture,Agriculture +446221,Agriculture,Agriculture +446214,Agriculture,Agriculture +446211,Agriculture,Agriculture +446209,Agriculture,Agriculture +446208,Agriculture,Agriculture +427575,Agriculture,Agriculture +427572,Agriculture,Agriculture +420027,Agriculture,Agriculture +420018,Agriculture,Agriculture +420014,Agriculture,Agriculture +420011,Agriculture,Agriculture +420004,Agriculture,Agriculture +419999,Agriculture,Agriculture +419985,Agriculture,Agriculture +419457,Agriculture,Agriculture +419450,Agriculture,Agriculture +419448,Agriculture,Agriculture +419445,Agriculture,Agriculture +419442,Agriculture,Agriculture +419437,Agriculture,Agriculture +465077,Internal Trade,Commerce intérieur +465076,Internal Trade,Commerce intérieur +446395,Internal Trade,Commerce intérieur +446394,Internal Trade,Commerce intérieur +446393,Internal Trade,Commerce intérieur +446222,Internal Trade,Commerce intérieur +446221,Internal Trade,Commerce intérieur +446214,Internal Trade,Commerce intérieur +446211,Internal Trade,Commerce intérieur +446209,Internal Trade,Commerce intérieur +446208,Internal Trade,Commerce intérieur +427575,Internal Trade,Commerce intérieur +427572,Internal Trade,Commerce intérieur +420027,Internal Trade,Commerce intérieur +420018,Internal Trade,Commerce intérieur +420014,Internal Trade,Commerce intérieur +420011,Internal Trade,Commerce intérieur +420004,Internal Trade,Commerce intérieur +419999,Internal Trade,Commerce intérieur +419985,Internal Trade,Commerce intérieur +419457,Internal Trade,Commerce intérieur +419450,Internal Trade,Commerce intérieur +419448,Internal Trade,Commerce intérieur +419445,Internal Trade,Commerce intérieur +419442,Internal Trade,Commerce intérieur +419437,Internal Trade,Commerce intérieur +419436,Internal Trade,Commerce intérieur +419435,Internal Trade,Commerce intérieur +419429,Internal Trade,Commerce intérieur +419427,Internal Trade,Commerce intérieur +396953,Internal Trade,Commerce intérieur +396951,Internal Trade,Commerce intérieur +396948,Internal Trade,Commerce intérieur +396944,Internal Trade,Commerce intérieur +396941,Internal Trade,Commerce intérieur +396936,Internal Trade,Commerce intérieur +396934,Internal Trade,Commerce intérieur +396922,Internal Trade,Commerce intérieur +387216,Internal Trade,Commerce intérieur +521523,Internal Trade,Commerce intérieur +521521,Internal Trade,Commerce intérieur +521520,Internal Trade,Commerce intérieur +521518,Internal Trade,Commerce intérieur +521516,Internal Trade,Commerce intérieur +521515,Internal Trade,Commerce intérieur +499140,Internal Trade,Commerce intérieur +465375,Internal Trade,Commerce intérieur +465085,Internal Trade,Commerce intérieur +465084,Internal Trade,Commerce intérieur +465083,Internal Trade,Commerce intérieur +465082,Internal Trade,Commerce intérieur +465081,Internal Trade,Commerce intérieur +465080,Internal Trade,Commerce intérieur +465375,International Trade,Commerce international +465085,International Trade,Commerce international +465084,International Trade,Commerce international +465083,International Trade,Commerce international +465082,International Trade,Commerce international +465081,International Trade,Commerce international +465080,International Trade,Commerce international +465079,International Trade,Commerce international +465077,International Trade,Commerce international +465076,International Trade,Commerce international +459453,International Trade,Commerce international +459283,International Trade,Commerce international +447259,International Trade,Commerce international +447258,International Trade,Commerce international +447255,International Trade,Commerce international +447250,International Trade,Commerce international +446395,International Trade,Commerce international +446394,International Trade,Commerce international +446393,International Trade,Commerce international +446222,International Trade,Commerce international +446221,International Trade,Commerce international +446214,International Trade,Commerce international +446211,International Trade,Commerce international +446209,International Trade,Commerce international +446208,International Trade,Commerce international +427575,International Trade,Commerce international +427572,International Trade,Commerce international +420027,International Trade,Commerce international +420018,International Trade,Commerce international +420014,International Trade,Commerce international +420011,International Trade,Commerce international +420004,International Trade,Commerce international +419999,International Trade,Commerce international +419985,International Trade,Commerce international +419457,International Trade,Commerce international +419450,International Trade,Commerce international +419448,International Trade,Commerce international +419445,International Trade,Commerce international +419442,International Trade,Commerce international +419437,International Trade,Commerce international +419436,International Trade,Commerce international +419435,International Trade,Commerce international +419429,International Trade,Commerce international +419427,International Trade,Commerce international +411496,International Trade,Commerce international +404327,International Trade,Commerce international +396953,International Trade,Commerce international +396951,International Trade,Commerce international +396948,International Trade,Commerce international +396944,International Trade,Commerce international +396941,International Trade,Commerce international +396936,International Trade,Commerce international +396934,International Trade,Commerce international +396922,International Trade,Commerce international +387216,International Trade,Commerce international +521523,International Trade,Commerce international +521521,International Trade,Commerce international +521520,International Trade,Commerce international +521518,International Trade,Commerce international +521516,International Trade,Commerce international +521515,International Trade,Commerce international +499160,International Trade,Commerce international +499144,International Trade,Commerce international +446209,Health,Santé +446208,Health,Santé +420027,Health,Santé +420018,Health,Santé +420014,Health,Santé +420011,Health,Santé +420004,Health,Santé +419999,Health,Santé +419985,Health,Santé +465081,Health,Santé +446395,Health,Santé +446394,Health,Santé +446393,Health,Santé +446222,Health,Santé +446221,Health,Santé +446214,Health,Santé +446221,Security,Sécurité +446214,Security,Sécurité +446395,Security,Sécurité +446394,Security,Sécurité +379595,Environment,Environment +384709,Education,Education +384707,Education,Education +461907,Education,Education +460711,Education,Education +458932,Education,Education +457559,Education,Education +452544,Education,Education +445519,Education,Education +442039,Education,Education +420146,Education,Education +452544,Employment and Training,Employment and Training +445519,Employment and Training,Employment and Training +442039,Employment and Training,Employment and Training +420146,Employment and Training,Employment and Training +383273,Employment and Training,Employment and Training +461907,Employment and Training,Employment and Training +460711,Employment and Training,Employment and Training +458932,Employment and Training,Employment and Training +467500,Agriculture,Agriculture +467378,Agriculture,Agriculture +519664,Agriculture,Agriculture +519655,Agriculture,Agriculture +501678,Agriculture,Agriculture +499838,Agriculture,Agriculture +499837,Agriculture,Agriculture +499835,Agriculture,Agriculture +499833,Agriculture,Agriculture +492582,Agriculture,Agriculture +490472,Agriculture,Agriculture +474171,Agriculture,Agriculture +474170,Agriculture,Agriculture +474168,Agriculture,Agriculture +467685,Agriculture,Agriculture +442163,Employment and Training,Employment and Training +411654,Employment and Training,Employment and Training +376674,Employment and Training,Employment and Training +512338,Employment and Training,Employment and Training +527573,Employment and Training,Employment and Training +523980,Employment and Training,Employment and Training +376683,Employment and Training,Employment and Training +468973,Employment and Training,Employment and Training +460856,Employment and Training,Employment and Training +379325,Economic Development,Economic Development +379322,Economic Development,Economic Development +379337,Economic Development,Economic Development +379334,Economic Development,Economic Development +379325,Immigration,Immigration +379322,Immigration,Immigration +379337,Immigration,Immigration +379334,Immigration,Immigration +379325,Energy,Energy +379322,Energy,Energy +379337,Energy,Energy +379334,Energy,Energy +421836,Infrastructure,Infrastructure +399732,Infrastructure,Infrastructure +399731,Infrastructure,Infrastructure +399730,Infrastructure,Infrastructure +399729,Infrastructure,Infrastructure +399727,Infrastructure,Infrastructure +399724,Infrastructure,Infrastructure +389954,Infrastructure,Infrastructure +389949,Infrastructure,Infrastructure +376778,Infrastructure,Infrastructure +386201,Industry,Industry +376823,Industry,Industry +412375,Industry,Industry +409129,Industry,Industry +406421,Industry,Industry +401713,Industry,Industry +401706,Industry,Industry +395209,Industry,Industry +393361,Industry,Industry +376836,Industry,Industry +415710,Industry,Industry +413982,Industry,Industry +412376,Industry,Industry +412353,Industry,Industry +408388,Industry,Industry +406419,Industry,Industry +406418,Industry,Industry +402764,Industry,Industry +389855,Industry,Industry +376840,Industry,Industry +429943,Industry,Industry +417492,Industry,Industry +413983,Industry,Industry +412372,Industry,Industry +412351,Industry,Industry +401591,Industry,Industry +393680,Industry,Industry +389859,Industry,Industry +376842,Industry,Industry +412373,Industry,Industry +412352,Industry,Industry +408390,Industry,Industry +408389,Industry,Industry +406423,Industry,Industry +406422,Industry,Industry +401710,Industry,Industry +401704,Industry,Industry +396141,Industry,Industry +393363,Industry,Industry +384372,Industry,Industry +376846,Industry,Industry +417490,Industry,Industry +415063,Industry,Industry +412379,Industry,Industry +412377,Industry,Industry +409131,Industry,Industry +408391,Industry,Industry +406417,Industry,Industry +396143,Industry,Industry +396139,Industry,Industry +394924,Industry,Industry +389858,Industry,Industry +525001,Budget,Budget +524981,Budget,Budget +494900,Budget,Budget +494898,Budget,Budget +386806,Budget,Budget +525013,Budget,Budget +417212,Education,Education +417096,Education,Education +386807,Education,Education +515304,Education,Education +512371,Education,Education +469271,Education,Education +463616,Education,Education +421142,Education,Education +469271,Employment and Training,Employment and Training +463616,Employment and Training,Employment and Training +421142,Employment and Training,Employment and Training +418747,Employment and Training,Employment and Training +533217,Employment and Training,Employment and Training +525013,Employment and Training,Employment and Training +525010,Employment and Training,Employment and Training +525001,Employment and Training,Employment and Training +524981,Employment and Training,Employment and Training +518687,Employment and Training,Employment and Training +516306,Employment and Training,Employment and Training +515304,Employment and Training,Employment and Training +514923,Employment and Training,Employment and Training +512371,Employment and Training,Employment and Training +504417,Employment and Training,Employment and Training +497055,Employment and Training,Employment and Training +494900,Employment and Training,Employment and Training +494898,Employment and Training,Employment and Training +492180,Employment and Training,Employment and Training +492179,Employment and Training,Employment and Training +486602,Employment and Training,Employment and Training +486538,Employment and Training,Employment and Training +486537,Employment and Training,Employment and Training +486461,Employment and Training,Employment and Training +386807,Energy,Energy +376886,Infrastructure,Infrastructure +469271,Infrastructure,Infrastructure +397351,Infrastructure,Infrastructure +386805,Infrastructure,Infrastructure +382038,Infrastructure,Infrastructure +381071,Infrastructure,Infrastructure +381069,Infrastructure,Infrastructure +379084,Infrastructure,Infrastructure +515304,Regional Development,Regional Development +525010,Research and Development,Research and Development +400537,Industry,Industry +394278,Industry,Industry +393362,Industry,Industry +376907,Industry,Industry +417491,Industry,Industry +412354,Industry,Industry +408394,Industry,Industry +401711,Industry,Industry +401705,Industry,Industry +401592,Industry,Industry +399861,Industry,Industry +396144,Industry,Industry +379387,Employment and Training,Employment and Training +376940,Employment and Training,Employment and Training +393738,Employment and Training,Employment and Training +382026,Employment and Training,Employment and Training +382023,Employment and Training,Employment and Training +382018,Employment and Training,Employment and Training +442590,Industry,Industry +442401,Industry,Industry +442378,Industry,Industry +442376,Industry,Industry +442366,Industry,Industry +442364,Industry,Industry +439434,Industry,Industry +439427,Industry,Industry +439415,Industry,Industry +439409,Industry,Industry +435770,Industry,Industry +435767,Industry,Industry +435763,Industry,Industry +435310,Industry,Industry +435302,Industry,Industry +435215,Industry,Industry +435207,Industry,Industry +435203,Industry,Industry +435201,Industry,Industry +435195,Industry,Industry +435180,Industry,Industry +433672,Industry,Industry +433671,Industry,Industry +433667,Industry,Industry +432883,Industry,Industry +432882,Industry,Industry +432505,Industry,Industry +430382,Industry,Industry +429164,Industry,Industry +429121,Industry,Industry +429111,Industry,Industry +429077,Industry,Industry +429072,Industry,Industry +429068,Industry,Industry +426784,Industry,Industry +426680,Industry,Industry +426679,Industry,Industry +426677,Industry,Industry +423218,Industry,Industry +423215,Industry,Industry +421363,Industry,Industry +458861,Industry,Industry +457212,Industry,Industry +457209,Industry,Industry +457208,Industry,Industry +457206,Industry,Industry +452609,Industry,Industry +448190,Industry,Industry +448188,Industry,Industry +448187,Industry,Industry +448186,Industry,Industry +445716,Industry,Industry +445713,Industry,Industry +445710,Industry,Industry +443904,Industry,Industry +443903,Industry,Industry +443897,Industry,Industry +537897,Housing,Housing +469937,Housing,Housing +435044,Housing,Housing +428553,Housing,Housing +428551,Housing,Housing +412941,Housing,Housing +405771,Housing,Housing +405770,Housing,Housing +402822,Housing,Housing +402807,Housing,Housing +391630,Housing,Housing +385820,Housing,Housing +379116,Housing,Housing +376986,Housing,Housing +378288,Justice and Law Enforcement,Justice et application des lois +403970,Government Procurement,Government Procurement +399221,Government Procurement,Government Procurement +394396,Government Procurement,Government Procurement +394393,Government Procurement,Government Procurement +394392,Government Procurement,Government Procurement +394390,Government Procurement,Government Procurement +391727,Government Procurement,Government Procurement +391726,Government Procurement,Government Procurement +382648,Government Procurement,Government Procurement +382647,Government Procurement,Government Procurement +380102,Government Procurement,Government Procurement +380101,Government Procurement,Government Procurement +380099,Government Procurement,Government Procurement +377216,Government Procurement,Government Procurement +377200,Government Procurement,Government Procurement +432602,Government Procurement,Government Procurement +432601,Government Procurement,Government Procurement +413846,Government Procurement,Government Procurement +413845,Government Procurement,Government Procurement +413844,Government Procurement,Government Procurement +410157,Government Procurement,Government Procurement +382651,Defence,Defence +377211,Defence,Defence +413843,Defence,Defence +413842,Defence,Defence +410160,Defence,Defence +401059,Defence,Defence +401055,Defence,Defence +397098,Defence,Defence +391725,Defence,Defence +413842,Government Procurement,Government Procurement +410160,Government Procurement,Government Procurement +401059,Government Procurement,Government Procurement +401055,Government Procurement,Government Procurement +397098,Government Procurement,Government Procurement +391725,Government Procurement,Government Procurement +384320,Government Procurement,Government Procurement +382652,Government Procurement,Government Procurement +382651,Government Procurement,Government Procurement +382650,Government Procurement,Government Procurement +377213,Government Procurement,Government Procurement +377211,Government Procurement,Government Procurement +384320,Industry,Industry +382650,Industry,Industry +413843,Industry,Industry +413842,Industry,Industry +384320,Intellectual Property,Intellectual Property +384320,Research and Development,Research and Development +396876,Research and Development,Research and Development +377235,Research and Development,Research and Development +435916,Research and Development,Research and Development +435915,Research and Development,Research and Development +413332,Research and Development,Research and Development +380610,Transportation,Transportation +378195,Transportation,Transportation +492630,Transportation,Transportation +476527,Transportation,Transportation +465571,Transportation,Transportation +465566,Transportation,Transportation +465558,Transportation,Transportation +436636,Transportation,Transportation +436635,Transportation,Transportation +436634,Transportation,Transportation +436632,Transportation,Transportation +380614,Transportation,Transportation +380613,Transportation,Transportation +465566,Municipalities,Municipalities +465558,Municipalities,Municipalities +436636,Municipalities,Municipalities +436635,Municipalities,Municipalities +436634,Municipalities,Municipalities +436632,Municipalities,Municipalities +380614,Municipalities,Municipalities +380613,Municipalities,Municipalities +380611,Municipalities,Municipalities +380610,Municipalities,Municipalities +378195,Municipalities,Municipalities +492630,Municipalities,Municipalities +476527,Municipalities,Municipalities +436632,Small Business,Small Business +492630,Small Business,Small Business +380614,Small Business,Small Business +380613,Small Business,Small Business +380611,Small Business,Small Business +380610,Small Business,Small Business +378195,Small Business,Small Business +476527,Small Business,Small Business +465571,Small Business,Small Business +465566,Small Business,Small Business +465558,Small Business,Small Business +436636,Small Business,Small Business +436635,Small Business,Small Business +404266,Justice and Law Enforcement,Justice and Law Enforcement +404265,Justice and Law Enforcement,Justice and Law Enforcement +381407,Justice and Law Enforcement,Justice and Law Enforcement +381404,Justice and Law Enforcement,Justice and Law Enforcement +428936,Justice and Law Enforcement,Justice and Law Enforcement +428935,Justice and Law Enforcement,Justice and Law Enforcement +428934,Justice and Law Enforcement,Justice and Law Enforcement +428933,Justice and Law Enforcement,Justice and Law Enforcement +428932,Justice and Law Enforcement,Justice and Law Enforcement +428931,Justice and Law Enforcement,Justice and Law Enforcement +428929,Justice and Law Enforcement,Justice and Law Enforcement +428927,Justice and Law Enforcement,Justice and Law Enforcement +428925,Justice and Law Enforcement,Justice and Law Enforcement +417252,Justice and Law Enforcement,Justice and Law Enforcement +414461,Justice and Law Enforcement,Justice and Law Enforcement +414460,Justice and Law Enforcement,Justice and Law Enforcement +414009,Justice and Law Enforcement,Justice and Law Enforcement +413959,Justice and Law Enforcement,Justice and Law Enforcement +413958,Justice and Law Enforcement,Justice and Law Enforcement +412938,Justice and Law Enforcement,Justice and Law Enforcement +412937,Justice and Law Enforcement,Justice and Law Enforcement +412935,Justice and Law Enforcement,Justice and Law Enforcement +411196,Justice and Law Enforcement,Justice and Law Enforcement +411195,Justice and Law Enforcement,Justice and Law Enforcement +411194,Justice and Law Enforcement,Justice and Law Enforcement +411123,Justice and Law Enforcement,Justice and Law Enforcement +411122,Justice and Law Enforcement,Justice and Law Enforcement +411049,Justice and Law Enforcement,Justice and Law Enforcement +411048,Justice and Law Enforcement,Justice and Law Enforcement +411047,Justice and Law Enforcement,Justice and Law Enforcement +410984,Justice and Law Enforcement,Justice and Law Enforcement +410983,Justice and Law Enforcement,Justice and Law Enforcement +410982,Justice and Law Enforcement,Justice and Law Enforcement +410980,Justice and Law Enforcement,Justice and Law Enforcement +410979,Justice and Law Enforcement,Justice and Law Enforcement +410978,Justice and Law Enforcement,Justice and Law Enforcement +410977,Justice and Law Enforcement,Justice and Law Enforcement +410976,Justice and Law Enforcement,Justice and Law Enforcement +410975,Justice and Law Enforcement,Justice and Law Enforcement +410974,Justice and Law Enforcement,Justice and Law Enforcement +404268,Justice and Law Enforcement,Justice and Law Enforcement +415817,Agriculture,Agriculture +415787,Agriculture,Agriculture +385383,Agriculture,Agriculture +428787,Agriculture,Agriculture +436212,Employment and Training,Employment and Training +432876,Employment and Training,Employment and Training +380335,Employment and Training,Employment and Training +378456,Employment and Training,Employment and Training +378387,Employment and Training,Employment and Training +378377,Employment and Training,Employment and Training +378376,Employment and Training,Employment and Training +378375,Employment and Training,Employment and Training +378377,International Relations,International Relations +466636,International Relations,International Relations +381794,International Relations,International Relations +380335,International Relations,International Relations +378456,International Relations,International Relations +378387,International Relations,International Relations +450750,Industry,Industry +450163,Industry,Industry +380335,Industry,Industry +378456,Industry,Industry +378387,Industry,Industry +378378,Industry,Industry +378377,Industry,Industry +378376,Industry,Industry +378375,Industry,Industry +436212,Industry,Industry +434150,Industry,Industry +432876,Industry,Industry +427448,Industry,Industry +381794,Industry,Industry +466636,Industry,Industry +461213,Industry,Industry +459837,Industry,Industry +378377,International Trade,International Trade +378376,International Trade,International Trade +378375,International Trade,International Trade +466636,International Trade,International Trade +436212,International Trade,International Trade +434150,International Trade,International Trade +427185,International Trade,International Trade +381794,International Trade,International Trade +380335,International Trade,International Trade +378456,International Trade,International Trade +378387,International Trade,International Trade +450750,Defence,Defence +436212,Defence,Defence +380335,Defence,Defence +378456,Defence,Defence +378387,Defence,Defence +378378,Defence,Defence +378377,Defence,Defence +434150,Defence,Defence +436212,Economic Development,Economic Development +432876,Economic Development,Economic Development +381794,Economic Development,Economic Development +380335,Economic Development,Economic Development +378456,Economic Development,Economic Development +378387,Economic Development,Economic Development +378378,Economic Development,Economic Development +378377,Economic Development,Economic Development +378376,Economic Development,Economic Development +378375,Economic Development,Economic Development +466636,Economic Development,Economic Development +397678,Taxation and Finance,Taxation and Finance +393273,Taxation and Finance,Taxation and Finance +384047,Education,Éducation +380483,Education,Éducation +380482,Education,Éducation +380357,Education,Éducation +377878,Education,Éducation +377426,Education,Éducation +403637,Education,Éducation +403635,Education,Éducation +400387,Education,Éducation +400386,Education,Éducation +403635,Official Languages,Langues officielles +400387,Official Languages,Langues officielles +400386,Official Languages,Langues officielles +395935,Official Languages,Langues officielles +384047,Official Languages,Langues officielles +380483,Official Languages,Langues officielles +380482,Official Languages,Langues officielles +380357,Official Languages,Langues officielles +377878,Official Languages,Langues officielles +377426,Official Languages,Langues officielles +384051,Education,Éducation +384050,Education,Éducation +380486,Education,Éducation +380485,Education,Éducation +380484,Education,Éducation +377427,Education,Éducation +403663,Education,Éducation +400390,Education,Éducation +400389,Education,Éducation +395948,Education,Éducation +394907,Education,Éducation +393061,Education,Éducation +392720,Education,Éducation +391090,Education,Éducation +389731,Education,Éducation +380484,Official Languages,Langues officielles +377427,Official Languages,Langues officielles +403663,Official Languages,Langues officielles +400390,Official Languages,Langues officielles +400389,Official Languages,Langues officielles +395948,Official Languages,Langues officielles +394907,Official Languages,Langues officielles +393061,Official Languages,Langues officielles +392720,Official Languages,Langues officielles +391090,Official Languages,Langues officielles +389731,Official Languages,Langues officielles +384052,Official Languages,Langues officielles +384051,Official Languages,Langues officielles +384050,Official Languages,Langues officielles +380486,Official Languages,Langues officielles +384209,Economic Development,Economic Development +434289,Economic Development,Economic Development +399436,Economic Development,Economic Development +411820,Health,Health +384331,Health,Health +411829,Health,Health +411828,Health,Health +411827,Health,Health +411826,Health,Health +411825,Health,Health +411824,Health,Health +411823,Health,Health +411822,Health,Health +402771,Industry,Industry +399437,Industry,Industry +391358,Agriculture,Agriculture +391357,Agriculture,Agriculture +391358,Economic Development,Economic Development +391357,Economic Development,Economic Development +391358,Transportation,Transportation +391357,Transportation,Transportation +530677,Economic Development,Economic Development +487854,Economic Development,Economic Development +472479,Economic Development,Economic Development +466701,Economic Development,Economic Development +464188,Economic Development,Economic Development +537677,Economic Development,Economic Development +537665,Economic Development,Economic Development +475195,Education,Education +530677,Small Business,Small Business +522984,Small Business,Small Business +410298,Small Business,Small Business +508156,Small Business,Small Business +477483,Small Business,Small Business +477482,Small Business,Small Business +477481,Small Business,Small Business +477480,Small Business,Small Business +475197,Small Business,Small Business +475196,Small Business,Small Business +475194,Small Business,Small Business +475193,Small Business,Small Business +472479,Small Business,Small Business +469734,Small Business,Small Business +469733,Small Business,Small Business +466701,Small Business,Small Business +464192,Small Business,Small Business +456875,Small Business,Small Business +456864,Small Business,Small Business +540098,Small Business,Small Business +537677,Small Business,Small Business +534612,Small Business,Small Business +534597,Small Business,Small Business +378474,Infrastructure,Infrastructure +378474,Industry,Industry +378474,Tourism,Tourism +530162,Internal Trade,Internal Trade +523546,International Trade,International Trade +521829,International Trade,International Trade +436497,International Trade,International Trade +434336,International Trade,International Trade +417213,International Trade,International Trade +411272,International Trade,International Trade +407417,International Trade,International Trade +401806,International Trade,International Trade +382107,International Trade,International Trade +381947,International Trade,International Trade +377471,International Trade,International Trade +377467,International Trade,International Trade +377461,International Trade,International Trade +509386,International Trade,International Trade +507525,International Trade,International Trade +503293,International Trade,International Trade +496699,International Trade,International Trade +493942,International Trade,International Trade +478754,International Trade,International Trade +471590,International Trade,International Trade +471589,International Trade,International Trade +460594,International Trade,International Trade +542202,International Trade,International Trade +503221,International Trade,International Trade +496813,International Trade,International Trade +384867,International Trade,International Trade +381950,International Trade,International Trade +377462,International Trade,International Trade +494936,International Trade,International Trade +494398,International Trade,International Trade +493941,International Trade,International Trade +471588,International Trade,International Trade +471577,International Trade,International Trade +433218,International Trade,International Trade +429774,International Trade,International Trade +429770,International Trade,International Trade +418403,International Trade,International Trade +401808,International Trade,International Trade +401807,International Trade,International Trade +401805,International Trade,International Trade +401804,International Trade,International Trade +522808,International Trade,International Trade +530292,International Trade,International Trade +523592,International Trade,International Trade +377464,International Trade,International Trade +520689,International Trade,International Trade +516344,International Trade,International Trade +516340,International Trade,International Trade +494933,International Trade,International Trade +471935,International Trade,International Trade +465413,International Trade,International Trade +434004,International Trade,International Trade +433219,International Trade,International Trade +417216,International Trade,International Trade +414309,International Trade,International Trade +397264,International Trade,International Trade +395107,International Trade,International Trade +395106,International Trade,International Trade +395105,International Trade,International Trade +394846,International Trade,International Trade +540733,International Trade,International Trade +383308,Sports,Sports +383307,Sports,Sports +387893,Sports,Sports +385019,Sports,Sports +433420,Economic Development,Economic Development +419844,Economic Development,Economic Development +377491,Economic Development,Economic Development +537231,Economic Development,Economic Development +497066,Economic Development,Economic Development +463890,Economic Development,Economic Development +454465,Economic Development,Economic Development +395549,Economic Development,Economic Development +383255,Economic Development,Economic Development +377492,Economic Development,Economic Development +525285,Economic Development,Economic Development +522326,Economic Development,Economic Development +504208,Economic Development,Economic Development +422092,Economic Development,Economic Development +419969,Economic Development,Economic Development +383257,Economic Development,Economic Development +377493,Economic Development,Economic Development +537232,Economic Development,Economic Development +533500,Economic Development,Economic Development +522282,Economic Development,Economic Development +486523,Economic Development,Economic Development +486517,Economic Development,Economic Development +411909,Economic Development,Economic Development +389117,Economic Development,Economic Development +377494,Economic Development,Economic Development +541176,Economic Development,Economic Development +530691,Economic Development,Economic Development +525284,Economic Development,Economic Development +525283,Economic Development,Economic Development +380663,Economic Development,Economic Development +380581,Economic Development,Economic Development +380579,Economic Development,Economic Development +380578,Economic Development,Economic Development +380577,Economic Development,Economic Development +380576,Economic Development,Economic Development +380576,Industry,Industry +379105,Industry,Industry +380663,Industry,Industry +380581,Industry,Industry +380579,Industry,Industry +380578,Industry,Industry +391870,Regional Development,Regional Development +391867,Regional Development,Regional Development +380663,Regional Development,Regional Development +380581,Regional Development,Regional Development +380579,Regional Development,Regional Development +380578,Regional Development,Regional Development +380577,Regional Development,Regional Development +380576,Regional Development,Regional Development +379105,Regional Development,Regional Development +380576,Research and Development,Research and Development +379105,Research and Development,Research and Development +380663,Research and Development,Research and Development +380581,Research and Development,Research and Development +380579,Research and Development,Research and Development +380578,Research and Development,Research and Development +424517,Health,Health +424516,Health,Health +382449,Health,Health +377912,Health,Health +421676,Health,Health +421673,Health,Health +421669,Health,Health +421663,Health,Health +421656,Health,Health +421652,Health,Health +419741,Health,Health +419732,Health,Health +415769,Health,Health +415767,Health,Health +415766,Health,Health +415765,Health,Health +415763,Health,Health +415760,Health,Health +415759,Health,Health +415758,Health,Health +415757,Health,Health +415749,Health,Health +415744,Health,Health +415742,Health,Health +415741,Health,Health +410919,Health,Health +410918,Health,Health +410917,Health,Health +404675,Health,Health +401351,Health,Health +401348,Health,Health +395065,Health,Health +392979,Health,Health +392978,Health,Health +434716,Health,Health +434709,Health,Health +434706,Health,Health +433048,Health,Health +433046,Health,Health +433044,Health,Health +433043,Health,Health +432765,Health,Health +432763,Health,Health +432757,Health,Health +432756,Health,Health +432755,Health,Health +432754,Health,Health +432753,Health,Health +431017,Health,Health +431016,Health,Health +424520,Health,Health +424519,Health,Health +414178,Environment,Environment +410597,Environment,Environment +403800,Environment,Environment +391979,Environment,Environment +377850,Environment,Environment +377849,Environment,Environment +414184,Environment,Environment +414183,Environment,Environment +414182,Environment,Environment +414180,Environment,Environment +394936,Fisheries,Fisheries +391978,Fisheries,Fisheries +377849,Fisheries,Fisheries +414185,Fisheries,Fisheries +414184,Fisheries,Fisheries +414182,Fisheries,Fisheries +414181,Fisheries,Fisheries +414180,Fisheries,Fisheries +414179,Fisheries,Fisheries +414178,Fisheries,Fisheries +410598,Fisheries,Fisheries +410597,Fisheries,Fisheries +407204,Fisheries,Fisheries +407201,Fisheries,Fisheries +407200,Fisheries,Fisheries +403810,Fisheries,Fisheries +401870,Fisheries,Fisheries +401241,Fisheries,Fisheries +395176,Fisheries,Fisheries +391979,Infrastructure,Infrastructure +377850,Infrastructure,Infrastructure +394937,Infrastructure,Infrastructure +391981,Infrastructure,Infrastructure +380360,Environment,Environment +377535,Environment,Environment +380406,International Relations,International Relations +378294,International Relations,International Relations +380410,International Relations,International Relations +380409,International Relations,International Relations +380408,International Relations,International Relations +451354,Climate,Climate +451348,Climate,Climate +395338,Climate,Climate +516537,Climate,Climate +451359,Climate,Climate +451358,Climate,Climate +451357,Climate,Climate +451356,Climate,Climate +377644,Economic Development,Economic Development +377644,Industry,Industry +463498,Fisheries,Fisheries +462971,Fisheries,Fisheries +407890,Fisheries,Fisheries +404184,Fisheries,Fisheries +403761,Fisheries,Fisheries +403759,Fisheries,Fisheries +401370,Fisheries,Fisheries +401369,Fisheries,Fisheries +401183,Fisheries,Fisheries +401182,Fisheries,Fisheries +401181,Fisheries,Fisheries +397276,Fisheries,Fisheries +395823,Fisheries,Fisheries +394835,Fisheries,Fisheries +394062,Fisheries,Fisheries +393098,Fisheries,Fisheries +393097,Fisheries,Fisheries +393096,Fisheries,Fisheries +389492,Fisheries,Fisheries +388905,Fisheries,Fisheries +387281,Fisheries,Fisheries +387279,Fisheries,Fisheries +387213,Fisheries,Fisheries +387212,Fisheries,Fisheries +379828,Fisheries,Fisheries +379825,Fisheries,Fisheries +379823,Fisheries,Fisheries +379820,Fisheries,Fisheries +379812,Fisheries,Fisheries +379809,Fisheries,Fisheries +379805,Fisheries,Fisheries +379804,Fisheries,Fisheries +379803,Fisheries,Fisheries +379802,Fisheries,Fisheries +379800,Fisheries,Fisheries +379797,Fisheries,Fisheries +379795,Fisheries,Fisheries +379793,Fisheries,Fisheries +379792,Fisheries,Fisheries +454408,Fisheries,Fisheries +454407,Fisheries,Fisheries +453138,Fisheries,Fisheries +453136,Fisheries,Fisheries +453133,Fisheries,Fisheries +449122,Fisheries,Fisheries +448654,Fisheries,Fisheries +446173,Fisheries,Fisheries +446172,Fisheries,Fisheries +445057,Fisheries,Fisheries +445056,Fisheries,Fisheries +440164,Fisheries,Fisheries +436700,Fisheries,Fisheries +436699,Fisheries,Fisheries +436698,Fisheries,Fisheries +436696,Fisheries,Fisheries +436694,Fisheries,Fisheries +436693,Fisheries,Fisheries +434907,Fisheries,Fisheries +425509,Fisheries,Fisheries +425508,Fisheries,Fisheries +424964,Fisheries,Fisheries +424747,Fisheries,Fisheries +424503,Fisheries,Fisheries +424502,Fisheries,Fisheries +423228,Fisheries,Fisheries +423227,Fisheries,Fisheries +423226,Fisheries,Fisheries +423048,Fisheries,Fisheries +423047,Fisheries,Fisheries +423045,Fisheries,Fisheries +422816,Fisheries,Fisheries +422728,Fisheries,Fisheries +422726,Fisheries,Fisheries +422725,Fisheries,Fisheries +422344,Fisheries,Fisheries +420553,Fisheries,Fisheries +418629,Fisheries,Fisheries +415156,Fisheries,Fisheries +414800,Fisheries,Fisheries +414742,Fisheries,Fisheries +414523,Fisheries,Fisheries +414519,Fisheries,Fisheries +414518,Fisheries,Fisheries +411666,Fisheries,Fisheries +410436,Fisheries,Fisheries +408433,Fisheries,Fisheries +408395,Fisheries,Fisheries +408286,Fisheries,Fisheries +408285,Fisheries,Fisheries +408284,Fisheries,Fisheries +542876,Fisheries,Fisheries +542164,Fisheries,Fisheries +538892,Fisheries,Fisheries +536300,Fisheries,Fisheries +536299,Fisheries,Fisheries +533261,Fisheries,Fisheries +533260,Fisheries,Fisheries +533256,Fisheries,Fisheries +530574,Fisheries,Fisheries +530568,Fisheries,Fisheries +528124,Fisheries,Fisheries +528123,Fisheries,Fisheries +523517,Fisheries,Fisheries +523515,Fisheries,Fisheries +520822,Fisheries,Fisheries +520821,Fisheries,Fisheries +520820,Fisheries,Fisheries +518839,Fisheries,Fisheries +518722,Fisheries,Fisheries +518169,Fisheries,Fisheries +518167,Fisheries,Fisheries +516174,Fisheries,Fisheries +515806,Fisheries,Fisheries +515802,Fisheries,Fisheries +515801,Fisheries,Fisheries +512548,Fisheries,Fisheries +512544,Fisheries,Fisheries +511706,Fisheries,Fisheries +511705,Fisheries,Fisheries +507461,Fisheries,Fisheries +506797,Fisheries,Fisheries +506796,Fisheries,Fisheries +500469,Fisheries,Fisheries +495903,Fisheries,Fisheries +495902,Fisheries,Fisheries +495897,Fisheries,Fisheries +495894,Fisheries,Fisheries +494347,Fisheries,Fisheries +493830,Fisheries,Fisheries +486478,Fisheries,Fisheries +478693,Fisheries,Fisheries +473735,Fisheries,Fisheries +473734,Fisheries,Fisheries +473731,Fisheries,Fisheries +468708,Fisheries,Fisheries +468706,Fisheries,Fisheries +468705,Fisheries,Fisheries +468704,Fisheries,Fisheries +466037,Fisheries,Fisheries +465741,Fisheries,Fisheries +515804,Environment,Environment +512544,Environment,Environment +511706,Environment,Environment +511705,Environment,Environment +500472,Environment,Environment +500471,Environment,Environment +499940,Environment,Environment +497026,Environment,Environment +495899,Environment,Environment +494347,Environment,Environment +473737,Environment,Environment +440165,Environment,Environment +544463,Environment,Environment +540579,Environment,Environment +538891,Environment,Environment +538890,Environment,Environment +538887,Environment,Environment +536298,Environment,Environment +536297,Environment,Environment +536296,Environment,Environment +533259,Environment,Environment +533258,Environment,Environment +376265,Transportation,Transports +378640,Tourism,Tourism +378643,Sports,Sports +375868,Environment,Environment +417327,Economic Development,Développement économique +385842,Regional Development,Développement régional +412430,Infrastructure,Infrastructure +417327,Transportation,Transports +377839,Justice and Law Enforcement,Justice and Law Enforcement +377343,Education,Education +377343,Health,Health +377525,Economic Development,Economic Development +377525,Health,Health +376011,Taxation and Finance,Taxation and Finance +385006,International Trade,International Trade +377425,Education,Education +377425,Health,Health +407012,Education,Education +407012,Health,Health +377833,Education,Education +453022,Health,Health +423255,International Trade,International Trade +414635,Intellectual Property,Propriété intellectuelle +378462,Small Business,Small Business +384322,Transportation,Transportation +378915,Budget,Budget +378904,Infrastructure,Infrastructure +378922,Economic Development,Economic Development +378920,Government Procurement,Government Procurement +379357,Immigration,Immigration +537577,Government Procurement,Government Procurement +526399,Immigration,Immigration +457488,Intellectual Property,Intellectual Property +459686,Regional Development,Regional Development +376141,Pensions,Pensions +376141,Health,Health +376141,Justice and Law Enforcement,Justice and Law Enforcement +380917,Taxation and Finance,Taxation and Finance +392263,Infrastructure,Infrastructure +378446,Health,Health +379222,Environment,Environment +379222,Infrastructure,Infrastructure +379222,Transportation,Transportation +376294,Budget,Budget +376295,Climate,Climate +376294,Government Procurement,Government Procurement +376295,Infrastructure,Infrastructure +380317,Transportation,Transportation +382379,Transportation,Transportation +376294,Taxation and Finance,Taxation and Finance +396845,Industry,Industry +394757,Health,Health +377515,Budget,Budget +377516,Climate,Climate +505452,Infrastructure,Infrastructure +445353,Industry,Industry +446268,Agriculture,Agriculture +446268,Environment,Environment +446268,Industry,Industry +442902,Internal Trade,Internal Trade +401735,Government Procurement,Government Procurement +376360,Immigration,Immigration +541744,Environment,Environment +450818,Research and Development,Research and Development +384933,Government Procurement,Government Procurement +401243,Immigration,Immigration +452966,International Trade,International Trade +419436,Agriculture,Agriculture +465079,Internal Trade,Commerce intérieur +499140,International Trade,Commerce international +446211,Health,Santé +446393,Security,Sécurité +379611,Environment,Environment +377278,Environment,Environnement +393915,Education,Education +457559,Employment and Training,Employment and Training +467661,Agriculture,Agriculture +461855,Employment and Training,Employment and Training +383133,Employment and Training,Employment and Training +376728,Consumer Issues,Consumer Issues +377521,Consumer Issues,Consumer Issues +377521,Industry,Industry +377521,Transportation,Transportation +379330,Economic Development,Economic Development +379330,Immigration,Immigration +379330,Energy,Energy +493568,Infrastructure,Infrastructure +376778,Pensions,Pensions +394922,Industry,Industry +401707,Industry,Industry +393539,Industry,Industry +389863,Industry,Industry +386202,Industry,Industry +525010,Budget,Budget +418747,Education,Education +471931,Employment and Training,Employment and Training +418747,Energy,Energy +379081,Infrastructure,Infrastructure +386805,Regional Development,Regional Development +386805,Research and Development,Research and Development +422414,Industry,Industry +380287,Economic Development,Economic Development +380287,Employment and Training,Employment and Training +380287,Industry,Industry +396142,Industry,Industry +380854,Employment and Training,Employment and Training +443893,Industry,Industry +537898,Housing,Housing +378291,Justice and Law Enforcement,Justice et application des lois +405806,Government Procurement,Government Procurement +384320,Defence,Defence +413843,Government Procurement,Government Procurement +391725,Industry,Industry +401059,Intellectual Property,Intellectual Property +391725,Research and Development,Research and Development +413326,Research and Development,Research and Development +387423,Internal Trade,Commerce intérieur +387423,International Trade,Commerce international +387423,Regional Development,Développement régional +387423,Employment and Training,Emploi et formation +387423,Research and Development,Recherche et développement +380611,Transportation,Transportation +465571,Municipalities,Municipalities +436634,Small Business,Small Business +404267,Justice and Law Enforcement,Justice and Law Enforcement +428786,Agriculture,Agriculture +451569,Employment and Training,Employment and Training +378378,International Relations,International Relations +451569,Industry,Industry +378378,International Trade,International Trade +432876,Defence,Defence +451569,Economic Development,Economic Development +401673,Taxation and Finance,Taxation and Finance +395935,Education,Éducation +403637,Official Languages,Langues officielles +384052,Education,Éducation +380485,Official Languages,Langues officielles +377428,Fisheries,Fisheries +399436,Employment and Training,Employment and Training +384210,Economic Development,Economic Development +411821,Health,Health +423231,Industry,Industry +392884,Health,Health +392884,Environment,Environment +392208,Agriculture,Agriculture +392208,Economic Development,Economic Development +392208,Employment and Training,Employment and Training +392208,Research and Development,Research and Development +392208,Transportation,Transportation +534597,Economic Development,Economic Development +475198,Education,Education +534593,Small Business,Small Business +378479,Infrastructure,Infrastructure +378479,Industry,Industry +378479,Tourism,Tourism +540736,Internal Trade,Internal Trade +528107,International Trade,International Trade +520835,International Trade,International Trade +533116,International Trade,International Trade +377469,International Trade,International Trade +383309,Sports,Sports +483263,Economic Development,Economic Development +495162,Economic Development,Economic Development +460523,Economic Development,Economic Development +488622,Economic Development,Economic Development +379105,Economic Development,Economic Development +380577,Industry,Industry +379105,Infrastructure,Infrastructure +379105,Municipalities,Municipalities +391872,Regional Development,Regional Development +380577,Research and Development,Research and Development +424518,Health,Health +414179,Environment,Environment +394938,Fisheries,Fisheries +391980,Infrastructure,Infrastructure +394643,Environment,Environment +380407,International Relations,International Relations +451355,Climate,Climate +386065,Environment,Environment +384243,Infrastructure,Infrastructure +386065,Taxation and Finance,Taxation and Finance +378054,Fisheries,Fisheries +377647,Economic Development,Economic Development +377647,Industry,Industry +465739,Fisheries,Fisheries +515810,Environment,Environment +377618,Small Business,Small Business +450348,Energy,Energy +450348,Research and Development,Research and Development +384033,Industry,Industry +391846,Budget,Budget +377788,Justice and Law Enforcement,Justice and Law Enforcement +377800,Health,Health +386052,Industry,Industry +458982,Economic Development,Economic Development +458982,Environment,Environment +511954,Transportation,Transportation +382776,Agriculture,Agriculture +382776,Consumer Issues,Consumer Issues +382776,International Trade,International Trade +377795,International Development,International Development +468531,Environment,Environment +441195,International Trade,International Trade +441195,Research and Development,Research and Development +528518,Transportation,Transportation +456691,Environment,Environment +416137,International Trade,International Trade +440196,Industry,Industry +418838,International Relations,International Relations +408516,International Trade,International Trade +378533,Mining,Mining +384642,Education,Education +384642,Budget,Budget +381141,Transportation,Transportation +402171,Environment,Environment +377844,Energy,Energy +377844,Environment,Environment +377844,Industry,Industry +377844,Infrastructure,Infrastructure +377844,Regional Development,Regional Development +377997,Regional Development,Regional Development +377836,Regional Development,Regional Development +377837,Regional Development,Regional Development +377838,Regional Development,Regional Development +377840,Regional Development,Regional Development +378604,Transportation,Transportation +377854,Economic Development,Economic Development +377854,Taxation and Finance,Taxation and Finance +377854,Small Business,Small Business +404044,Consumer Issues,Consumer Issues +404045,Economic Development,Economic Development +404044,Industry,Industry +429324,Internal Trade,Internal Trade +465019,International Relations,International Relations +429395,International Trade,International Trade +391513,Constitutional Issues,Constitutional Issues +391513,Agriculture,Agriculture +391513,Small Business,Small Business +391513,Justice and Law Enforcement,Justice and Law Enforcement +391505,Health,Health +391505,Industry,Industry +391513,Financial Institutions,Financial Institutions +391505,Consumer Issues,Consumer Issues +391505,Taxation and Finance,Taxation and Finance +380847,Fisheries,Fisheries +380671,Intellectual Property,Intellectual Property +380671,Internal Trade,Internal Trade +386346,Economic Development,Economic Development +380672,Municipalities,Municipalities +413973,Budget,Budget +377990,Consumer Issues,Consumer Issues +413973,Government Procurement,Government Procurement +449838,Health,Health +413973,International Trade,International Trade +413973,Taxation and Finance,Taxation and Finance +533257,Environment,Environment +530576,Environment,Environment +530572,Environment,Environment +530570,Environment,Environment +528121,Environment,Environment +528118,Environment,Environment +528116,Environment,Environment +528115,Environment,Environment +528114,Environment,Environment +523695,Environment,Environment +523514,Environment,Environment +520823,Environment,Environment +520822,Environment,Environment +518177,Environment,Environment +518176,Environment,Environment +518174,Environment,Environment +375202,Small Business,Small Business +384033,Budget,Budget +384030,Budget,Budget +444143,Justice and Law Enforcement,Justice and Law Enforcement +456788,Economic Development,Economic Development +456788,Environment,Environment +458982,Transportation,Transportation +456788,Transportation,Transportation +392037,Transportation,Transportation +392035,Transportation,Transportation +511955,Transportation,Transportation +468530,Environment,Environment +468522,Environment,Environment +441195,Environment,Environment +441165,Environment,Environment +401390,Environment,Environment +401389,Environment,Environment +400996,Environment,Environment +400980,Environment,Environment +397266,Environment,Environment +389453,Environment,Environment +389373,Environment,Environment +389360,Environment,Environment +389358,Environment,Environment +389355,Environment,Environment +540962,Environment,Environment +538626,Environment,Environment +528518,Environment,Environment +528515,Environment,Environment +528509,Environment,Environment +468536,Environment,Environment +468534,Environment,Environment +468532,Environment,Environment +441165,International Trade,International Trade +441147,International Trade,International Trade +401390,International Trade,International Trade +401389,International Trade,International Trade +397266,International Trade,International Trade +389453,International Trade,International Trade +538626,International Trade,International Trade +528518,International Trade,International Trade +528515,International Trade,International Trade +468539,International Trade,International Trade +468532,International Trade,International Trade +468531,International Trade,International Trade +468522,International Trade,International Trade +462904,International Trade,International Trade +462562,International Trade,International Trade +460723,International Trade,International Trade +458889,International Trade,International Trade +450271,International Trade,International Trade +441165,Research and Development,Research and Development +441147,Research and Development,Research and Development +401390,Research and Development,Research and Development +401389,Research and Development,Research and Development +389453,Research and Development,Research and Development +468532,Research and Development,Research and Development +468522,Research and Development,Research and Development +528515,Transportation,Transportation +528509,Transportation,Transportation +380228,Transportation,Transportation +380227,Transportation,Transportation +468532,Transportation,Transportation +468527,Transportation,Transportation +468522,Transportation,Transportation +462904,Transportation,Transportation +462562,Transportation,Transportation +441195,Transportation,Transportation +441165,Transportation,Transportation +441147,Transportation,Transportation +401390,Transportation,Transportation +401389,Transportation,Transportation +397266,Transportation,Transportation +389453,Transportation,Transportation +540962,Transportation,Transportation +538626,Transportation,Transportation +456690,Environment,Environment +456688,Environment,Environment +445268,Environment,Environment +444044,Environment,Environment +437310,Environment,Environment +437309,Environment,Environment +437308,Environment,Environment +430300,Environment,Environment +428180,Environment,Environment +428178,Environment,Environment +428176,Environment,Environment +428175,Environment,Environment +428173,Environment,Environment +428172,Environment,Environment +428170,Environment,Environment +428167,Environment,Environment +428165,Environment,Environment +428162,Environment,Environment +428161,Environment,Environment +428159,Environment,Environment +428158,Environment,Environment +428156,Environment,Environment +428155,Environment,Environment +428153,Environment,Environment +428151,Environment,Environment +428147,Environment,Environment +428146,Environment,Environment +425712,Environment,Environment +412771,Environment,Environment +401533,Environment,Environment +401532,Environment,Environment +401531,Environment,Environment +401530,Environment,Environment +401529,Environment,Environment +401528,Environment,Environment +401527,Environment,Environment +401526,Environment,Environment +401525,Environment,Environment +401524,Environment,Environment +401522,Environment,Environment +401521,Environment,Environment +401520,Environment,Environment +401519,Environment,Environment +401518,Environment,Environment +401516,Environment,Environment +401515,Environment,Environment +401513,Environment,Environment +382584,Environment,Environment +543422,Environment,Environment +535915,Environment,Environment +535912,Environment,Environment +535911,Environment,Environment +535910,Environment,Environment +535909,Environment,Environment +535908,Environment,Environment +535906,Environment,Environment +531609,Environment,Environment +527149,Environment,Environment +523140,Environment,Environment +523136,Environment,Environment +523131,Environment,Environment +523124,Environment,Environment +518181,Environment,Environment +514321,Environment,Environment +513635,Environment,Environment +513634,Environment,Environment +513633,Environment,Environment +513632,Environment,Environment +513631,Environment,Environment +513630,Environment,Environment +513629,Environment,Environment +513628,Environment,Environment +513627,Environment,Environment +513626,Environment,Environment +513624,Environment,Environment +513623,Environment,Environment +513622,Environment,Environment +513621,Environment,Environment +513619,Environment,Environment +513617,Environment,Environment +513616,Environment,Environment +412771,International Trade,International Trade +412765,International Trade,International Trade +378582,International Trade,International Trade +378580,International Trade,International Trade +378573,International Trade,International Trade +407395,International Trade,International Trade +406866,International Trade,International Trade +401533,International Trade,International Trade +401532,International Trade,International Trade +401531,International Trade,International Trade +401530,International Trade,International Trade +401529,International Trade,International Trade +401528,International Trade,International Trade +401527,International Trade,International Trade +401526,International Trade,International Trade +401525,International Trade,International Trade +401524,International Trade,International Trade +401522,International Trade,International Trade +401521,International Trade,International Trade +401520,International Trade,International Trade +401519,International Trade,International Trade +401518,International Trade,International Trade +401516,International Trade,International Trade +401515,International Trade,International Trade +401513,International Trade,International Trade +400924,International Trade,International Trade +400224,International Trade,International Trade +398085,International Trade,International Trade +398082,International Trade,International Trade +395072,International Trade,International Trade +391747,International Trade,International Trade +391742,International Trade,International Trade +388010,International Trade,International Trade +385937,International Trade,International Trade +383680,International Trade,International Trade +382589,International Trade,International Trade +378725,International Trade,International Trade +378724,International Trade,International Trade +378723,International Trade,International Trade +378722,International Trade,International Trade +378589,International Trade,International Trade +378588,International Trade,International Trade +378585,International Trade,International Trade +378583,International Trade,International Trade +437310,International Trade,International Trade +437309,International Trade,International Trade +437308,International Trade,International Trade +437306,International Trade,International Trade +430300,International Trade,International Trade +428180,International Trade,International Trade +428178,International Trade,International Trade +428176,International Trade,International Trade +428175,International Trade,International Trade +428173,International Trade,International Trade +428172,International Trade,International Trade +428170,International Trade,International Trade +428167,International Trade,International Trade +428165,International Trade,International Trade +428162,International Trade,International Trade +428161,International Trade,International Trade +428159,International Trade,International Trade +428158,International Trade,International Trade +428156,International Trade,International Trade +428155,International Trade,International Trade +428153,International Trade,International Trade +428151,International Trade,International Trade +428147,International Trade,International Trade +428146,International Trade,International Trade +425712,International Trade,International Trade +416141,International Trade,International Trade +440195,Industry,Industry +434334,Industry,Industry +399027,Industry,Industry +383305,Industry,Industry +446763,Industry,Industry +446762,Industry,Industry +408516,International Relations,International Relations +423477,International Relations,International Relations +399027,International Trade,International Trade +390066,International Trade,International Trade +383305,International Trade,International Trade +378592,International Trade,International Trade +378534,International Trade,International Trade +378533,International Trade,International Trade +378512,International Trade,International Trade +378401,International Trade,International Trade +446763,International Trade,International Trade +446762,International Trade,International Trade +440195,International Trade,International Trade +434334,International Trade,International Trade +423477,International Trade,International Trade +418838,International Trade,International Trade +378512,Mining,Mining +378401,Mining,Mining +446763,Mining,Mining +446762,Mining,Mining +440196,Mining,Mining +440195,Mining,Mining +434334,Mining,Mining +423477,Mining,Mining +418838,Mining,Mining +408516,Mining,Mining +399027,Mining,Mining +390066,Mining,Mining +383305,Mining,Mining +378592,Mining,Mining +378534,Mining,Mining +383969,Education,Education +383661,Education,Education +383969,Budget,Budget +383661,Budget,Budget +381140,Transportation,Transportation +381139,Transportation,Transportation +381905,Transportation,Transportation +381891,Transportation,Transportation +381890,Transportation,Transportation +381889,Transportation,Transportation +381888,Transportation,Transportation +381887,Transportation,Transportation +381886,Transportation,Transportation +381885,Transportation,Transportation +381884,Transportation,Transportation +381883,Transportation,Transportation +381879,Transportation,Transportation +381151,Transportation,Transportation +381150,Transportation,Transportation +381149,Transportation,Transportation +381148,Transportation,Transportation +381147,Transportation,Transportation +381146,Transportation,Transportation +381145,Transportation,Transportation +381144,Transportation,Transportation +381143,Transportation,Transportation +402170,Environment,Environment +510902,Environment,Environment +416762,Environment,Environment +402177,Environment,Environment +402173,Environment,Environment +377843,Energy,Energy +377842,Energy,Energy +378604,Energy,Energy +377994,Energy,Energy +377843,Environment,Environment +377842,Environment,Environment +378604,Environment,Environment +377994,Environment,Environment +377843,Industry,Industry +377842,Industry,Industry +378604,Industry,Industry +377994,Industry,Industry +377843,Infrastructure,Infrastructure +377842,Infrastructure,Infrastructure +378604,Infrastructure,Infrastructure +377994,Infrastructure,Infrastructure +377843,Regional Development,Regional Development +377842,Regional Development,Regional Development +378604,Regional Development,Regional Development +377994,Regional Development,Regional Development +377844,Transportation,Transportation +377843,Transportation,Transportation +529648,Consumer Issues,Consumer Issues +518310,Consumer Issues,Consumer Issues +491789,Consumer Issues,Consumer Issues +462027,Consumer Issues,Consumer Issues +429324,Consumer Issues,Consumer Issues +429316,Consumer Issues,Consumer Issues +417174,Consumer Issues,Consumer Issues +410077,Consumer Issues,Consumer Issues +404048,Consumer Issues,Consumer Issues +404047,Consumer Issues,Consumer Issues +404046,Consumer Issues,Consumer Issues +404045,Consumer Issues,Consumer Issues +404044,Economic Development,Economic Development +404043,Economic Development,Economic Development +531949,Economic Development,Economic Development +529648,Economic Development,Economic Development +520342,Economic Development,Economic Development +518310,Economic Development,Economic Development +516000,Economic Development,Economic Development +502927,Economic Development,Economic Development +496268,Economic Development,Economic Development +491789,Economic Development,Economic Development +491787,Economic Development,Economic Development +462027,Economic Development,Economic Development +429324,Economic Development,Economic Development +429316,Economic Development,Economic Development +417174,Economic Development,Economic Development +410077,Economic Development,Economic Development +404048,Economic Development,Economic Development +404047,Economic Development,Economic Development +404046,Economic Development,Economic Development +404043,Industry,Industry +462027,Industry,Industry +429324,Industry,Industry +410077,Industry,Industry +404048,Industry,Industry +404047,Industry,Industry +404045,Industry,Industry +429316,Internal Trade,Internal Trade +516000,Internal Trade,Internal Trade +462027,Internal Trade,Internal Trade +391505,Constitutional Issues,Constitutional Issues +461036,Constitutional Issues,Constitutional Issues +391505,Agriculture,Agriculture +461036,Agriculture,Agriculture +391505,Small Business,Small Business +461036,Small Business,Small Business +391505,Justice and Law Enforcement,Justice and Law Enforcement +461036,Justice and Law Enforcement,Justice and Law Enforcement +391502,Justice and Law Enforcement,Justice and Law Enforcement +391502,Health,Health +461036,Health,Health +391513,Health,Health +391502,Industry,Industry +461036,Industry,Industry +391513,Industry,Industry +391505,Financial Institutions,Financial Institutions +391502,Financial Institutions,Financial Institutions +461036,Financial Institutions,Financial Institutions +391502,Consumer Issues,Consumer Issues +461036,Consumer Issues,Consumer Issues +391513,Consumer Issues,Consumer Issues +391502,Taxation and Finance,Taxation and Finance +461036,Taxation and Finance,Taxation and Finance +391513,Taxation and Finance,Taxation and Finance +396245,Fisheries,Fisheries +396226,Fisheries,Fisheries +389704,Fisheries,Fisheries +383181,Fisheries,Fisheries +383164,Fisheries,Fisheries +383162,Fisheries,Fisheries +383161,Fisheries,Fisheries +382034,Fisheries,Fisheries +382033,Fisheries,Fisheries +382025,Fisheries,Fisheries +382020,Fisheries,Fisheries +380857,Fisheries,Fisheries +380853,Fisheries,Fisheries +380851,Fisheries,Fisheries +380849,Fisheries,Fisheries +380670,Intellectual Property,Intellectual Property +380668,Intellectual Property,Intellectual Property +380670,Internal Trade,Internal Trade +380668,Internal Trade,Internal Trade +386241,Economic Development,Economic Development +383966,Economic Development,Economic Development +386774,Economic Development,Economic Development +377923,Municipalities,Municipalities +535669,Municipalities,Municipalities +404895,Municipalities,Municipalities +404894,Municipalities,Municipalities +395039,Municipalities,Municipalities +395003,Municipalities,Municipalities +393083,Municipalities,Municipalities +393076,Municipalities,Municipalities +393075,Municipalities,Municipalities +392278,Municipalities,Municipalities +380674,Municipalities,Municipalities +413973,Consumer Issues,Consumer Issues +449837,Health,Health +449836,Health,Health +423308,Health,Health +421749,Health,Health +413973,Health,Health +377990,Health,Health +395684,Environment,Environment +395684,Energy,Energy +382789,Education,Education +380112,Education,Education +389726,Education,Education +382789,Health,Health +380112,Health,Health +384693,Fisheries,Fisheries +384692,Fisheries,Fisheries +385324,Fisheries,Fisheries +384697,Fisheries,Fisheries +384696,Fisheries,Fisheries +394644,Agriculture,Agriculture +389744,Agriculture,Agriculture +384657,Agriculture,Agriculture +381825,Agriculture,Agriculture +380669,Agriculture,Agriculture +438300,Agriculture,Agriculture +411359,Agriculture,Agriculture +411359,Consumer Issues,Consumer Issues +438300,International Trade,International Trade +427684,International Trade,International Trade +411359,International Trade,International Trade +407733,International Trade,International Trade +394644,International Trade,International Trade +389744,International Trade,International Trade +384657,International Trade,International Trade +381825,International Trade,International Trade +411359,Small Business,Small Business +380664,Industry,Industry +380665,Research and Development,Research and Development +380665,Regional Development,Regional Development +401737,Infrastructure,Infrastructure +387322,Infrastructure,Infrastructure +383125,Infrastructure,Infrastructure +387322,Sports,Sports +383125,Sports,Sports +493969,Environment,Environment +493874,Environment,Environment +378097,Environment,Environment +378056,Environment,Environment +378033,Environment,Environment +378010,Environment,Environment +378008,Environment,Environment +530225,Environment,Environment +527478,Environment,Environment +523532,Environment,Environment +523037,Environment,Environment +501850,Environment,Environment +501238,Environment,Environment +501229,Environment,Environment +496793,Environment,Environment +494666,Environment,Environment +494400,Environment,Environment +494312,Environment,Environment +493969,Industry,Industry +493874,Industry,Industry +409523,Industry,Industry +378097,Industry,Industry +378056,Industry,Industry +378033,Industry,Industry +378008,Industry,Industry +530225,Industry,Industry +527478,Industry,Industry +523668,Industry,Industry +523532,Industry,Industry +523506,Industry,Industry +504232,Industry,Industry +503183,Industry,Industry +499930,Industry,Industry +496793,Industry,Industry +494666,Industry,Industry +494312,Industry,Industry +433609,Government Procurement,Government Procurement +413315,Government Procurement,Government Procurement +396865,Government Procurement,Government Procurement +387774,Government Procurement,Government Procurement +413315,International Trade,International Trade +413304,International Trade,International Trade +387774,Research and Development,Research and Development +387768,Research and Development,Research and Development +488631,Economic Development,Economic Development +486525,Economic Development,Economic Development +460880,Economic Development,Economic Development +405113,Economic Development,Economic Development +388254,Economic Development,Economic Development +378055,Economic Development,Economic Development +525286,Economic Development,Economic Development +512450,Economic Development,Economic Development +486527,Economic Development,Economic Development +469558,Economic Development,Economic Development +426183,Economic Development,Economic Development +419838,Economic Development,Economic Development +419721,Economic Development,Economic Development +397327,Economic Development,Economic Development +378076,Economic Development,Economic Development +533507,Economic Development,Economic Development +379965,Economic Development,Economic Development +379959,Economic Development,Economic Development +381326,Regional Development,Regional Development +379959,Regional Development,Regional Development +379965,Transportation,Transportation +379959,Transportation,Transportation +381327,Transportation,Transportation +381326,Transportation,Transportation +392057,Budget,Budget +387252,Budget,Budget +436429,Budget,Budget +429718,Budget,Budget +400342,Health,Health +392057,Health,Health +387252,Health,Health +436429,Health,Health +436429,Research and Development,Research and Development +429718,Research and Development,Research and Development +400342,Research and Development,Research and Development +392057,Research and Development,Research and Development +382697,Consumer Issues,Consumer Issues +382696,Consumer Issues,Consumer Issues +385224,Consumer Issues,Consumer Issues +382697,Financial Institutions,Financial Institutions +382696,Financial Institutions,Financial Institutions +385224,Financial Institutions,Financial Institutions +382697,Government Procurement,Government Procurement +382696,Government Procurement,Government Procurement +385224,Government Procurement,Government Procurement +382697,Privacy and Access to Information,Privacy and Access to Information +382696,Privacy and Access to Information,Privacy and Access to Information +385224,Privacy and Access to Information,Privacy and Access to Information +382696,Security,Security +385224,Security,Security +382698,Security,Security +382697,Taxation and Finance,Taxation and Finance +382696,Taxation and Finance,Taxation and Finance +385224,Taxation and Finance,Taxation and Finance +381373,Economic Development,Economic Development +388167,Employment and Training,Employment and Training +378232,Employment and Training,Employment and Training +462927,Employment and Training,Employment and Training +411655,Employment and Training,Employment and Training +411653,Employment and Training,Employment and Training +395029,Employment and Training,Employment and Training +401938,Agriculture,Agriculture +401936,Agriculture,Agriculture +401945,Agriculture,Agriculture +401942,Agriculture,Agriculture +401938,International Trade,International Trade +401936,International Trade,International Trade +401945,International Trade,International Trade +401942,International Trade,International Trade +378272,Health,Health +544714,Health,Health +469270,Health,Health +451209,Pensions,Pensions +418150,Pensions,Pensions +395029,Pensions,Pensions +386434,Economic Development,Economic Development +407166,Infrastructure,Infrastructure +386434,Transportation,Transportation +380598,Transportation,Transportation +412819,Transportation,Transportation +407166,Transportation,Transportation +380950,Agriculture,Agriculture +380950,International Trade,International Trade +380950,Research and Development,Research and Development +380950,Industry,Industry +542746,Climate,Climate +542186,Climate,Climate +400214,Climate,Climate +407401,Taxation and Finance,Taxation and Finance +382758,Education,Education +382757,Education,Education +382955,Education,Education +382757,Health,Health +380776,Health,Health +382955,Health,Health +382759,Health,Health +382757,Sports,Sports +380776,Sports,Sports +382955,Sports,Sports +382759,Sports,Sports +388653,Health,Health +388651,Health,Health +395689,Health,Health +395687,Health,Health +388660,Health,Health +388659,Health,Health +388658,Health,Health +384917,Consumer Issues,Consumer Issues +384240,Consumer Issues,Consumer Issues +405895,Consumer Issues,Consumer Issues +400114,Consumer Issues,Consumer Issues +388909,Consumer Issues,Consumer Issues +384240,Taxation and Finance,Taxation and Finance +481517,Economic Development,Economic Development +481515,Economic Development,Economic Development +378482,Economic Development,Economic Development +538995,Economic Development,Economic Development +538994,Economic Development,Economic Development +506903,Economic Development,Economic Development +502077,Economic Development,Economic Development +380412,Industry,Industry +392364,Infrastructure,Infrastructure +380412,Security,Security +395656,Transportation,Transportation +393491,Transportation,Transportation +393490,Transportation,Transportation +393489,Transportation,Transportation +393486,Transportation,Transportation +392364,Transportation,Transportation +392362,Transportation,Transportation +390925,Transportation,Transportation +390921,Transportation,Transportation +389990,Transportation,Transportation +389985,Transportation,Transportation +389984,Transportation,Transportation +389976,Transportation,Transportation +389974,Transportation,Transportation +389971,Transportation,Transportation +389969,Transportation,Transportation +389960,Transportation,Transportation +389951,Transportation,Transportation +386926,Transportation,Transportation +382069,Transportation,Transportation +380412,Transportation,Transportation +404205,Transportation,Transportation +403773,Transportation,Transportation +403767,Transportation,Transportation +401207,Transportation,Transportation +400362,Transportation,Transportation +389964,Transportation,Transportation +380413,Transportation,Transportation +393492,Transportation,Transportation +392367,Transportation,Transportation +389987,Transportation,Transportation +389980,Transportation,Transportation +389979,Transportation,Transportation +379566,Financial Institutions,Financial Institutions +486715,Financial Institutions,Financial Institutions +404553,Financial Institutions,Financial Institutions +379571,Financial Institutions,Financial Institutions +382682,Transportation,Transportation +384191,Tourism,Tourism +378745,Energy,Energy +378744,Energy,Energy +378747,Energy,Energy +378745,Environment,Environment +378744,Environment,Environment +378747,Environment,Environment +378745,Industry,Industry +378744,Industry,Industry +378747,Industry,Industry +378745,Infrastructure,Infrastructure +378744,Infrastructure,Infrastructure +378747,Infrastructure,Infrastructure +378745,International Trade,International Trade +378744,International Trade,International Trade +378747,International Trade,International Trade +378745,Regional Development,Regional Development +378744,Regional Development,Regional Development +378747,Regional Development,Regional Development +378745,Transportation,Transportation +378744,Transportation,Transportation +378747,Transportation,Transportation +378749,Energy,Energy +378748,Energy,Energy +378751,Energy,Energy +378749,Environment,Environment +378748,Environment,Environment +378751,Environment,Environment +378749,Industry,Industry +378748,Industry,Industry +378751,Industry,Industry +378749,Infrastructure,Infrastructure +378748,Infrastructure,Infrastructure +378751,Infrastructure,Infrastructure +378749,Transportation,Transportation +378748,Transportation,Transportation +378751,Transportation,Transportation +531734,Budget,Budget +531733,Budget,Budget +380445,Budget,Budget +379071,Budget,Budget +379069,Budget,Budget +379067,Budget,Budget +379065,Budget,Budget +379063,Budget,Budget +491086,Budget,Budget +489347,Budget,Budget +397520,Budget,Budget +397519,Budget,Budget +394002,Budget,Budget +394001,Budget,Budget +394000,Budget,Budget +393997,Budget,Budget +393984,Budget,Budget +391781,Budget,Budget +391780,Budget,Budget +391778,Budget,Budget +387404,Budget,Budget +387403,Budget,Budget +387402,Budget,Budget +387401,Budget,Budget +387400,Budget,Budget +387399,Budget,Budget +385152,Budget,Budget +385150,Budget,Budget +385147,Budget,Budget +385146,Budget,Budget +385145,Budget,Budget +385144,Budget,Budget +382734,Budget,Budget +382733,Budget,Budget +382732,Budget,Budget +382731,Budget,Budget +382730,Budget,Budget +382729,Budget,Budget +382727,Budget,Budget +382726,Budget,Budget +531738,Budget,Budget +531737,Budget,Budget +531736,Budget,Budget +382729,Fisheries,Fisheries +379078,Fisheries,Fisheries +407367,Fisheries,Fisheries +407366,Fisheries,Fisheries +405466,Fisheries,Fisheries +387403,Fisheries,Fisheries +498389,Forestry,Forestry +493884,Forestry,Forestry +484220,Climate,Climate +531738,Climate,Climate +379071,Climate,Climate +379067,Climate,Climate +379065,Climate,Climate +379063,Climate,Climate +531737,Climate,Climate +531736,Climate,Climate +531735,Climate,Climate +531734,Climate,Climate +531733,Climate,Climate +500609,Climate,Climate +500047,Climate,Climate +498389,Climate,Climate +379607,Health,Health +387043,Climate,Climate +378904,Climate,Climate +391638,Climate,Climate +378904,Industry,Industry +378915,Industry,Industry +395538,Industry,Industry +391638,Energy,Energy +378920,Energy,Energy +378920,Industry,Industry +387043,Energy,Energy +387043,Industry,Industry +378922,Industry,Industry +391638,Industry,Industry +378922,International Trade,International Trade +394588,Climate,Climate +378922,Climate,Climate +437454,Energy,Energy +437453,Energy,Energy +378967,Energy,Energy +410963,Energy,Energy +410958,Energy,Energy +410934,Energy,Energy +437488,Energy,Energy +437487,Energy,Energy +437485,Energy,Energy +437484,Energy,Energy +437477,Energy,Energy +437476,Energy,Energy +437475,Energy,Energy +437473,Energy,Energy +437472,Energy,Energy +437471,Energy,Energy +410912,Energy,Energy +378970,Energy,Energy +437483,Energy,Energy +437481,Energy,Energy +437480,Energy,Energy +437470,Energy,Energy +437469,Energy,Energy +437467,Energy,Energy +437466,Energy,Energy +437465,Energy,Energy +437464,Energy,Energy +437463,Energy,Energy +437460,Energy,Energy +437456,Energy,Energy +437455,Energy,Energy +410960,Energy,Energy +410940,Energy,Energy +436031,Economic Development,Economic Development +433448,Economic Development,Economic Development +382368,Economic Development,Economic Development +382367,Economic Development,Economic Development +424422,Economic Development,Economic Development +417816,Economic Development,Economic Development +417812,Economic Development,Economic Development +416603,Economic Development,Economic Development +416601,Economic Development,Economic Development +416599,Economic Development,Economic Development +416598,Economic Development,Economic Development +416597,Economic Development,Economic Development +416596,Economic Development,Economic Development +416593,Economic Development,Economic Development +416591,Economic Development,Economic Development +416588,Economic Development,Economic Development +416587,Economic Development,Economic Development +416582,Economic Development,Economic Development +416578,Economic Development,Economic Development +416576,Economic Development,Economic Development +416571,Economic Development,Economic Development +416567,Economic Development,Economic Development +416564,Economic Development,Economic Development +416559,Economic Development,Economic Development +416550,Economic Development,Economic Development +416548,Economic Development,Economic Development +416547,Economic Development,Economic Development +416543,Economic Development,Economic Development +416540,Economic Development,Economic Development +416537,Economic Development,Economic Development +416536,Economic Development,Economic Development +413520,Economic Development,Economic Development +413517,Economic Development,Economic Development +413513,Economic Development,Economic Development +413285,Economic Development,Economic Development +413284,Economic Development,Economic Development +413281,Economic Development,Economic Development +409958,Economic Development,Economic Development +499535,Economic Development,Economic Development +469901,Economic Development,Economic Development +469899,Economic Development,Economic Development +466971,Economic Development,Economic Development +452374,Economic Development,Economic Development +450051,Economic Development,Economic Development +450049,Economic Development,Economic Development +450045,Economic Development,Economic Development +450044,Economic Development,Economic Development +450043,Economic Development,Economic Development +447874,Economic Development,Economic Development +447873,Economic Development,Economic Development +445587,Economic Development,Economic Development +443996,Economic Development,Economic Development +443995,Economic Development,Economic Development +443994,Economic Development,Economic Development +443993,Economic Development,Economic Development +443992,Economic Development,Economic Development +443989,Economic Development,Economic Development +443987,Economic Development,Economic Development +443985,Economic Development,Economic Development +443984,Economic Development,Economic Development +443983,Economic Development,Economic Development +443982,Economic Development,Economic Development +443980,Economic Development,Economic Development +443979,Economic Development,Economic Development +443978,Economic Development,Economic Development +443977,Economic Development,Economic Development +443976,Economic Development,Economic Development +443975,Economic Development,Economic Development +443974,Economic Development,Economic Development +443972,Economic Development,Economic Development +443971,Economic Development,Economic Development +443970,Economic Development,Economic Development +443969,Economic Development,Economic Development +443968,Economic Development,Economic Development +443966,Economic Development,Economic Development +443964,Economic Development,Economic Development +443962,Economic Development,Economic Development +443960,Economic Development,Economic Development +443957,Economic Development,Economic Development +439615,Economic Development,Economic Development +439614,Economic Development,Economic Development +439613,Economic Development,Economic Development +439612,Economic Development,Economic Development +436040,Economic Development,Economic Development +436037,Economic Development,Economic Development +388083,Infrastructure,Infrastructure +388078,Infrastructure,Infrastructure +445587,Infrastructure,Infrastructure +445578,Infrastructure,Infrastructure +429472,Infrastructure,Infrastructure +429469,Infrastructure,Infrastructure +416593,Infrastructure,Infrastructure +409958,Infrastructure,Infrastructure +388100,Infrastructure,Infrastructure +388094,Infrastructure,Infrastructure +388090,Infrastructure,Infrastructure +379055,Budget,Budget +379051,Budget,Budget +385168,Budget,Budget +385167,Budget,Budget +385162,Budget,Budget +385160,Budget,Budget +385159,Budget,Budget +379051,Climate,Climate +379051,Employment and Training,Employment and Training +379051,Tourism,Tourism +434107,Pensions,Pensions +429627,Pensions,Pensions +420681,Pensions,Pensions +420680,Pensions,Pensions +419287,Pensions,Pensions +419286,Pensions,Pensions +419256,Pensions,Pensions +414116,Pensions,Pensions +410796,Pensions,Pensions +410079,Pensions,Pensions +404229,Pensions,Pensions +403114,Pensions,Pensions +402174,Pensions,Pensions +397575,Pensions,Pensions +395010,Pensions,Pensions +395008,Pensions,Pensions +395004,Pensions,Pensions +393515,Pensions,Pensions +393424,Pensions,Pensions +392063,Pensions,Pensions +392060,Pensions,Pensions +389934,Pensions,Pensions +389751,Pensions,Pensions +379215,Pensions,Pensions +379214,Pensions,Pensions +379212,Pensions,Pensions +379163,Pensions,Pensions +379161,Pensions,Pensions +474535,Pensions,Pensions +471293,Pensions,Pensions +469694,Pensions,Pensions +469290,Pensions,Pensions +469179,Pensions,Pensions +465673,Pensions,Pensions +465671,Pensions,Pensions +465670,Pensions,Pensions +456341,Pensions,Pensions +447301,Pensions,Pensions +447300,Pensions,Pensions +447299,Pensions,Pensions +436158,Pensions,Pensions +434119,Pensions,Pensions +434118,Pensions,Pensions +434117,Pensions,Pensions +434116,Pensions,Pensions +434115,Pensions,Pensions +434114,Pensions,Pensions +434113,Pensions,Pensions +434112,Pensions,Pensions +392435,Environment,Environment +392434,Environment,Environment +448803,Fisheries,Fisheries +405644,Fisheries,Fisheries +396880,Fisheries,Fisheries +476633,Budget,Budget +476630,Budget,Budget +389229,Budget,Budget +476629,Budget,Budget +474332,Budget,Budget +474331,Budget,Budget +474330,Budget,Budget +474328,Budget,Budget +474327,Budget,Budget +474326,Budget,Budget +474325,Budget,Budget +474324,Budget,Budget +474323,Budget,Budget +474322,Budget,Budget +474321,Budget,Budget +474320,Budget,Budget +474318,Budget,Budget +472157,Budget,Budget +472156,Budget,Budget +472155,Budget,Budget +472154,Budget,Budget +472153,Budget,Budget +472151,Budget,Budget +472148,Budget,Budget +472144,Budget,Budget +472143,Budget,Budget +472140,Budget,Budget +472139,Budget,Budget +469618,Budget,Budget +469616,Budget,Budget +469614,Budget,Budget +469607,Budget,Budget +465903,Budget,Budget +465902,Budget,Budget +465901,Budget,Budget +465899,Budget,Budget +465898,Budget,Budget +463360,Budget,Budget +463355,Budget,Budget +463354,Budget,Budget +463353,Budget,Budget +463352,Budget,Budget +463351,Budget,Budget +463350,Budget,Budget +463348,Budget,Budget +463347,Budget,Budget +463346,Budget,Budget +463345,Budget,Budget +463344,Budget,Budget +463343,Budget,Budget +463341,Budget,Budget +463339,Budget,Budget +463338,Budget,Budget +463337,Budget,Budget +463335,Budget,Budget +463334,Budget,Budget +463333,Budget,Budget +463332,Budget,Budget +463331,Budget,Budget +463330,Budget,Budget +463329,Budget,Budget +462307,Budget,Budget +462306,Budget,Budget +462304,Budget,Budget +462302,Budget,Budget +462301,Budget,Budget +462299,Budget,Budget +462297,Budget,Budget +462296,Budget,Budget +462293,Budget,Budget +462292,Budget,Budget +462289,Budget,Budget +462287,Budget,Budget +462286,Budget,Budget +461046,Budget,Budget +461043,Budget,Budget +460936,Budget,Budget +458230,Budget,Budget +440605,Budget,Budget +440604,Budget,Budget +440603,Budget,Budget +440602,Budget,Budget +440601,Budget,Budget +440600,Budget,Budget +440599,Budget,Budget +440597,Budget,Budget +440596,Budget,Budget +440595,Budget,Budget +440594,Budget,Budget +440593,Budget,Budget +440591,Budget,Budget +440590,Budget,Budget +440588,Budget,Budget +440587,Budget,Budget +440586,Budget,Budget +436879,Budget,Budget +422761,Budget,Budget +410636,Budget,Budget +410635,Budget,Budget +410634,Budget,Budget +410633,Budget,Budget +410632,Budget,Budget +410630,Budget,Budget +410629,Budget,Budget +542741,Budget,Budget +540801,Budget,Budget +540800,Budget,Budget +539093,Budget,Budget +533411,Budget,Budget +530433,Budget,Budget +527853,Budget,Budget +527852,Budget,Budget +527851,Budget,Budget +520975,Budget,Budget +518871,Budget,Budget +518870,Budget,Budget +518869,Budget,Budget +518867,Budget,Budget +518866,Budget,Budget +518865,Budget,Budget +518864,Budget,Budget +516654,Budget,Budget +516653,Budget,Budget +516651,Budget,Budget +516650,Budget,Budget +515033,Budget,Budget +515031,Budget,Budget +515030,Budget,Budget +514398,Budget,Budget +514397,Budget,Budget +513719,Budget,Budget +512082,Budget,Budget +512081,Budget,Budget +512080,Budget,Budget +512079,Budget,Budget +512076,Budget,Budget +512074,Budget,Budget +509903,Budget,Budget +509902,Budget,Budget +509901,Budget,Budget +509900,Budget,Budget +509899,Budget,Budget +509898,Budget,Budget +509897,Budget,Budget +509896,Budget,Budget +509895,Budget,Budget +509894,Budget,Budget +509872,Budget,Budget +503863,Budget,Budget +503855,Budget,Budget +500729,Budget,Budget +500728,Budget,Budget +500727,Budget,Budget +500726,Budget,Budget +500725,Budget,Budget +500724,Budget,Budget +500723,Budget,Budget +500722,Budget,Budget +500721,Budget,Budget +500720,Budget,Budget +500719,Budget,Budget +500718,Budget,Budget +500717,Budget,Budget +497414,Budget,Budget +497412,Budget,Budget +497411,Budget,Budget +497410,Budget,Budget +497409,Budget,Budget +497408,Budget,Budget +494460,Budget,Budget +494459,Budget,Budget +494458,Budget,Budget +494457,Budget,Budget +494455,Budget,Budget +494454,Budget,Budget +494453,Budget,Budget +494452,Budget,Budget +494451,Budget,Budget +494450,Budget,Budget +494448,Budget,Budget +494447,Budget,Budget +494446,Budget,Budget +494445,Budget,Budget +492636,Budget,Budget +492635,Budget,Budget +492633,Budget,Budget +492632,Budget,Budget +492631,Budget,Budget +489561,Budget,Budget +489557,Budget,Budget +489555,Budget,Budget +486664,Budget,Budget +486660,Budget,Budget +486659,Budget,Budget +486657,Budget,Budget +486649,Budget,Budget +483892,Budget,Budget +483891,Budget,Budget +483890,Budget,Budget +483889,Budget,Budget +483888,Budget,Budget +483887,Budget,Budget +483886,Budget,Budget +481282,Budget,Budget +481281,Budget,Budget +481280,Budget,Budget +481279,Budget,Budget +481277,Budget,Budget +481276,Budget,Budget +481275,Budget,Budget +481273,Budget,Budget +478714,Budget,Budget +478713,Budget,Budget +478711,Budget,Budget +478710,Budget,Budget +478709,Budget,Budget +476643,Budget,Budget +476642,Budget,Budget +476641,Budget,Budget +476640,Budget,Budget +476638,Budget,Budget +476637,Budget,Budget +472157,Justice and Law Enforcement,Justice and Law Enforcement +472153,Justice and Law Enforcement,Justice and Law Enforcement +445972,Justice and Law Enforcement,Justice and Law Enforcement +427002,Justice and Law Enforcement,Justice and Law Enforcement +425876,Justice and Law Enforcement,Justice and Law Enforcement +424780,Justice and Law Enforcement,Justice and Law Enforcement +422760,Justice and Law Enforcement,Justice and Law Enforcement +379291,Research and Development,Recherche et développement +379273,Research and Development,Recherche et développement +415446,Research and Development,Recherche et développement +415445,Research and Development,Recherche et développement +409046,Research and Development,Recherche et développement +390538,Research and Development,Recherche et développement +383169,Research and Development,Recherche et développement +379266,Economic Development,Economic Development +379266,Industry,Industry +379312,Defence,Defence +379311,Defence,Defence +379299,Defence,Defence +379292,Defence,Defence +383332,Defence,Defence +391941,Research and Development,Recherche et développement +381202,Research and Development,Recherche et développement +430901,Research and Development,Recherche et développement +426558,Research and Development,Recherche et développement +424481,Research and Development,Recherche et développement +448293,International Development,International Development +448292,International Development,International Development +442726,International Development,International Development +442725,International Development,International Development +442722,International Development,International Development +442719,International Development,International Development +431364,International Development,International Development +431363,International Development,International Development +431362,International Development,International Development +429515,International Development,International Development +424436,International Development,International Development +418300,International Development,International Development +418299,International Development,International Development +418297,International Development,International Development +418296,International Development,International Development +413675,International Development,International Development +413666,International Development,International Development +413654,International Development,International Development +406581,International Development,International Development +406580,International Development,International Development +406579,International Development,International Development +401002,International Development,International Development +401001,International Development,International Development +401000,International Development,International Development +400998,International Development,International Development +399356,International Development,International Development +399355,International Development,International Development +399353,International Development,International Development +394584,International Development,International Development +394581,International Development,International Development +392890,International Development,International Development +392889,International Development,International Development +392888,International Development,International Development +391805,International Development,International Development +391804,International Development,International Development +391803,International Development,International Development +388488,International Development,International Development +388483,International Development,International Development +388281,International Development,International Development +385995,International Development,International Development +385994,International Development,International Development +385992,International Development,International Development +385986,International Development,International Development +382724,International Development,International Development +382723,International Development,International Development +381556,International Development,International Development +381542,International Development,International Development +381539,International Development,International Development +381536,International Development,International Development +379462,International Development,International Development +544690,International Development,International Development +544689,International Development,International Development +544688,International Development,International Development +544687,International Development,International Development +544686,International Development,International Development +542021,International Development,International Development +542019,International Development,International Development +542018,International Development,International Development +542017,International Development,International Development +542016,International Development,International Development +542014,International Development,International Development +542012,International Development,International Development +532756,International Development,International Development +532755,International Development,International Development +532754,International Development,International Development +532753,International Development,International Development +532752,International Development,International Development +532751,International Development,International Development +529641,International Development,International Development +529640,International Development,International Development +529638,International Development,International Development +529636,International Development,International Development +529635,International Development,International Development +529634,International Development,International Development +529632,International Development,International Development +529631,International Development,International Development +525932,International Development,International Development +522963,International Development,International Development +520805,International Development,International Development +520804,International Development,International Development +520803,International Development,International Development +518284,International Development,International Development +515812,International Development,International Development +515811,International Development,International Development +511542,International Development,International Development +509036,International Development,International Development +509035,International Development,International Development +509034,International Development,International Development +509032,International Development,International Development +509031,International Development,International Development +502786,International Development,International Development +498736,International Development,International Development +490023,International Development,International Development +490021,International Development,International Development +490016,International Development,International Development +490014,International Development,International Development +490007,International Development,International Development +484668,International Development,International Development +476028,International Development,International Development +476026,International Development,International Development +476025,International Development,International Development +471165,International Development,International Development +471163,International Development,International Development +471161,International Development,International Development +464998,International Development,International Development +464997,International Development,International Development +464996,International Development,International Development +460239,International Development,International Development +452967,International Development,International Development +452966,International Development,International Development +531760,Research and Development,Research and Development +502703,Research and Development,Research and Development +473711,Research and Development,Research and Development +537575,Small Business,Small Business +532072,Small Business,Small Business +388172,Small Business,Small Business +388144,Small Business,Small Business +388135,Small Business,Small Business +388126,Small Business,Small Business +382390,Small Business,Small Business +382389,Small Business,Small Business +379511,Small Business,Small Business +522645,Small Business,Small Business +515832,Small Business,Small Business +513069,Small Business,Small Business +490901,Small Business,Small Business +487751,Small Business,Small Business +487750,Small Business,Small Business +487749,Small Business,Small Business +487748,Small Business,Small Business +468017,Small Business,Small Business +468016,Small Business,Small Business +468015,Small Business,Small Business +464299,Small Business,Small Business +464295,Small Business,Small Business +462604,Small Business,Small Business +455947,Small Business,Small Business +452445,Small Business,Small Business +452441,Small Business,Small Business +449858,Small Business,Small Business +438890,Small Business,Small Business +438850,Small Business,Small Business +435553,Small Business,Small Business +431029,Small Business,Small Business +431026,Small Business,Small Business +424251,Small Business,Small Business +424250,Small Business,Small Business +412895,Small Business,Small Business +405750,Small Business,Small Business +400499,Small Business,Small Business +399065,Small Business,Small Business +399054,Small Business,Small Business +394131,Small Business,Small Business +394129,Small Business,Small Business +392777,Small Business,Small Business +392771,Small Business,Small Business +542002,Small Business,Small Business +464297,Economic Development,Economic Development +464295,Economic Development,Economic Development +379516,Economic Development,Economic Development +379515,Economic Development,Economic Development +379514,Economic Development,Economic Development +379512,Economic Development,Economic Development +462617,Economic Development,Economic Development +462606,Economic Development,Economic Development +462605,Economic Development,Economic Development +462601,Economic Development,Economic Development +462598,Economic Development,Economic Development +462595,Economic Development,Economic Development +459686,Economic Development,Economic Development +459685,Economic Development,Economic Development +458715,Economic Development,Economic Development +457489,Economic Development,Economic Development +457488,Economic Development,Economic Development +456018,Economic Development,Economic Development +456011,Economic Development,Economic Development +455922,Economic Development,Economic Development +455893,Economic Development,Economic Development +438912,Economic Development,Economic Development +438911,Economic Development,Economic Development +438909,Economic Development,Economic Development +438908,Economic Development,Economic Development +438902,Economic Development,Economic Development +438901,Economic Development,Economic Development +438900,Economic Development,Economic Development +438894,Economic Development,Economic Development +438891,Economic Development,Economic Development +438888,Economic Development,Economic Development +438886,Economic Development,Economic Development +438883,Economic Development,Economic Development +438881,Economic Development,Economic Development +438858,Economic Development,Economic Development +438853,Economic Development,Economic Development +438850,Economic Development,Economic Development +438849,Economic Development,Economic Development +435553,Economic Development,Economic Development +435549,Economic Development,Economic Development +435548,Economic Development,Economic Development +432475,Economic Development,Economic Development +432474,Economic Development,Economic Development +431036,Economic Development,Economic Development +431030,Economic Development,Economic Development +431029,Economic Development,Economic Development +431023,Economic Development,Economic Development +431021,Economic Development,Economic Development +428928,Economic Development,Economic Development +428923,Economic Development,Economic Development +426865,Economic Development,Economic Development +426864,Economic Development,Economic Development +426861,Economic Development,Economic Development +426860,Economic Development,Economic Development +424253,Economic Development,Economic Development +424251,Economic Development,Economic Development +424250,Economic Development,Economic Development +422125,Economic Development,Economic Development +422114,Economic Development,Economic Development +422111,Economic Development,Economic Development +422109,Economic Development,Economic Development +422101,Economic Development,Economic Development +419920,Economic Development,Economic Development +417980,Economic Development,Economic Development +417977,Economic Development,Economic Development +417976,Economic Development,Economic Development +417975,Economic Development,Economic Development +416158,Economic Development,Economic Development +416103,Economic Development,Economic Development +416096,Economic Development,Economic Development +412900,Economic Development,Economic Development +410049,Economic Development,Economic Development +410045,Economic Development,Economic Development +410044,Economic Development,Economic Development +406637,Economic Development,Economic Development +406634,Economic Development,Economic Development +405748,Economic Development,Economic Development +405747,Economic Development,Economic Development +405744,Economic Development,Economic Development +405741,Economic Development,Economic Development +403788,Economic Development,Economic Development +403783,Economic Development,Economic Development +403779,Economic Development,Economic Development +400488,Economic Development,Economic Development +399078,Economic Development,Economic Development +399067,Economic Development,Economic Development +399062,Economic Development,Economic Development +399054,Economic Development,Economic Development +399051,Economic Development,Economic Development +399047,Economic Development,Economic Development +399045,Economic Development,Economic Development +396326,Economic Development,Economic Development +396322,Economic Development,Economic Development +396321,Economic Development,Economic Development +396319,Economic Development,Economic Development +396316,Economic Development,Economic Development +396313,Economic Development,Economic Development +396312,Economic Development,Economic Development +392779,Economic Development,Economic Development +392775,Economic Development,Economic Development +392771,Economic Development,Economic Development +388151,Economic Development,Economic Development +388091,Economic Development,Economic Development +388030,Economic Development,Economic Development +385794,Economic Development,Economic Development +385792,Economic Development,Economic Development +385759,Economic Development,Economic Development +385754,Economic Development,Economic Development +385744,Economic Development,Economic Development +383651,Economic Development,Economic Development +382400,Economic Development,Economic Development +382388,Economic Development,Economic Development +382387,Economic Development,Economic Development +382386,Economic Development,Economic Development +382385,Economic Development,Economic Development +544338,Economic Development,Economic Development +544337,Economic Development,Economic Development +544336,Economic Development,Economic Development +544335,Economic Development,Economic Development +542003,Economic Development,Economic Development +542002,Economic Development,Economic Development +542001,Economic Development,Economic Development +537579,Economic Development,Economic Development +537578,Economic Development,Economic Development +537577,Economic Development,Economic Development +537576,Economic Development,Economic Development +535850,Economic Development,Economic Development +535849,Economic Development,Economic Development +535848,Economic Development,Economic Development +535846,Economic Development,Economic Development +535845,Economic Development,Economic Development +532077,Economic Development,Economic Development +532073,Economic Development,Economic Development +532072,Economic Development,Economic Development +532070,Economic Development,Economic Development +532067,Economic Development,Economic Development +532066,Economic Development,Economic Development +532065,Economic Development,Economic Development +532063,Economic Development,Economic Development +529738,Economic Development,Economic Development +529737,Economic Development,Economic Development +526399,Economic Development,Economic Development +526395,Economic Development,Economic Development +525979,Economic Development,Economic Development +525975,Economic Development,Economic Development +525970,Economic Development,Economic Development +525968,Economic Development,Economic Development +525966,Economic Development,Economic Development +525962,Economic Development,Economic Development +522649,Economic Development,Economic Development +522648,Economic Development,Economic Development +522647,Economic Development,Economic Development +522646,Economic Development,Economic Development +522645,Economic Development,Economic Development +520100,Economic Development,Economic Development +515834,Economic Development,Economic Development +515832,Economic Development,Economic Development +514178,Economic Development,Economic Development +514177,Economic Development,Economic Development +514174,Economic Development,Economic Development +513069,Economic Development,Economic Development +510907,Economic Development,Economic Development +510906,Economic Development,Economic Development +510905,Economic Development,Economic Development +508744,Economic Development,Economic Development +508731,Economic Development,Economic Development +508726,Economic Development,Economic Development +508722,Economic Development,Economic Development +498734,Economic Development,Economic Development +495754,Economic Development,Economic Development +493313,Economic Development,Economic Development +490902,Economic Development,Economic Development +490901,Economic Development,Economic Development +487751,Economic Development,Economic Development +487750,Economic Development,Economic Development +487749,Economic Development,Economic Development +487748,Economic Development,Economic Development +480212,Economic Development,Economic Development +477683,Economic Development,Economic Development +477682,Economic Development,Economic Development +477681,Economic Development,Economic Development +477680,Economic Development,Economic Development +475480,Economic Development,Economic Development +475475,Economic Development,Economic Development +473510,Economic Development,Economic Development +473509,Economic Development,Economic Development +473503,Economic Development,Economic Development +473502,Economic Development,Economic Development +473501,Economic Development,Economic Development +473496,Economic Development,Economic Development +470817,Economic Development,Economic Development +470815,Economic Development,Economic Development +470810,Economic Development,Economic Development +470808,Economic Development,Economic Development +470805,Economic Development,Economic Development +470801,Economic Development,Economic Development +470796,Economic Development,Economic Development +470790,Economic Development,Economic Development +470788,Economic Development,Economic Development +468018,Economic Development,Economic Development +468016,Economic Development,Economic Development +468015,Economic Development,Economic Development +464303,Economic Development,Economic Development +438888,Employment and Training,Employment and Training +438881,Employment and Training,Employment and Training +400483,Employment and Training,Employment and Training +399076,Employment and Training,Employment and Training +399068,Employment and Training,Employment and Training +399057,Employment and Training,Employment and Training +399048,Employment and Training,Employment and Training +396328,Employment and Training,Employment and Training +396324,Employment and Training,Employment and Training +396323,Employment and Training,Employment and Training +396321,Employment and Training,Employment and Training +396316,Employment and Training,Employment and Training +387951,Employment and Training,Employment and Training +379516,Employment and Training,Employment and Training +379515,Employment and Training,Employment and Training +379512,Employment and Training,Employment and Training +537577,Employment and Training,Employment and Training +535849,Employment and Training,Employment and Training +535846,Employment and Training,Employment and Training +535845,Employment and Training,Employment and Training +535843,Employment and Training,Employment and Training +535840,Employment and Training,Employment and Training +535835,Employment and Training,Employment and Training +526413,Employment and Training,Employment and Training +515840,Employment and Training,Employment and Training +514780,Employment and Training,Employment and Training +514776,Employment and Training,Employment and Training +514774,Employment and Training,Employment and Training +514772,Employment and Training,Employment and Training +495754,Employment and Training,Employment and Training +455922,Research and Development,Research and Development +455908,Research and Development,Research and Development +452445,Research and Development,Research and Development +452441,Research and Development,Research and Development +449858,Research and Development,Research and Development +443751,Research and Development,Research and Development +438905,Research and Development,Research and Development +438903,Research and Development,Research and Development +438902,Research and Development,Research and Development +438900,Research and Development,Research and Development +438894,Research and Development,Research and Development +438893,Research and Development,Research and Development +438858,Research and Development,Research and Development +438854,Research and Development,Research and Development +431030,Research and Development,Research and Development +431026,Research and Development,Research and Development +428928,Research and Development,Research and Development +426865,Research and Development,Research and Development +426864,Research and Development,Research and Development +426863,Research and Development,Research and Development +426861,Research and Development,Research and Development +426860,Research and Development,Research and Development +424253,Research and Development,Research and Development +424251,Research and Development,Research and Development +424250,Research and Development,Research and Development +422111,Research and Development,Research and Development +422109,Research and Development,Research and Development +422106,Research and Development,Research and Development +422101,Research and Development,Research and Development +422099,Research and Development,Research and Development +419925,Research and Development,Research and Development +418437,Research and Development,Research and Development +417980,Research and Development,Research and Development +417978,Research and Development,Research and Development +416314,Research and Development,Research and Development +416313,Research and Development,Research and Development +416131,Research and Development,Research and Development +405743,Research and Development,Research and Development +403790,Research and Development,Research and Development +403783,Research and Development,Research and Development +403779,Research and Development,Research and Development +400503,Research and Development,Research and Development +400487,Research and Development,Research and Development +392779,Research and Development,Research and Development +388164,Research and Development,Research and Development +388151,Research and Development,Research and Development +388147,Research and Development,Research and Development +388110,Research and Development,Research and Development +388087,Research and Development,Research and Development +385758,Research and Development,Research and Development +379515,Research and Development,Research and Development +544337,Research and Development,Research and Development +544336,Research and Development,Research and Development +544335,Research and Development,Research and Development +542001,Research and Development,Research and Development +537577,Research and Development,Research and Development +537575,Research and Development,Research and Development +535852,Research and Development,Research and Development +535850,Research and Development,Research and Development +535845,Research and Development,Research and Development +532077,Research and Development,Research and Development +532072,Research and Development,Research and Development +520100,Research and Development,Research and Development +513069,Research and Development,Research and Development +510907,Research and Development,Research and Development +510906,Research and Development,Research and Development +493313,Research and Development,Research and Development +490901,Research and Development,Research and Development +487751,Research and Development,Research and Development +477683,Research and Development,Research and Development +464303,Research and Development,Research and Development +464299,Research and Development,Research and Development +462606,Research and Development,Research and Development +458719,Research and Development,Research and Development +458716,Research and Development,Research and Development +458715,Research and Development,Research and Development +457493,Research and Development,Research and Development +457488,Research and Development,Research and Development +525970,Budget,Budget +522645,Budget,Budget +379516,Budget,Budget +487750,Budget,Budget +449858,Budget,Budget +438904,Budget,Budget +438901,Budget,Budget +438854,Budget,Budget +416313,Budget,Budget +416163,Budget,Budget +460346,Transportation,Transportation +416977,Transportation,Transportation +410335,Transportation,Transportation +406320,Transportation,Transportation +387696,Transportation,Transportation +383238,Transportation,Transportation +381710,Transportation,Transportation +379930,Transportation,Transportation +379912,Transportation,Transportation +538167,Transportation,Transportation +538165,Transportation,Transportation +538162,Transportation,Transportation +518058,Transportation,Transportation +515702,Transportation,Transportation +512568,Transportation,Transportation +512566,Transportation,Transportation +510661,Transportation,Transportation +510450,Transportation,Transportation +493107,Transportation,Transportation +493098,Transportation,Transportation +491327,Transportation,Transportation +491309,Transportation,Transportation +491273,Transportation,Transportation +487388,Transportation,Transportation +487338,Transportation,Transportation +487316,Transportation,Transportation +484717,Transportation,Transportation +483914,Transportation,Transportation +476092,Transportation,Transportation +465067,Transportation,Transportation +462906,Transportation,Transportation +462905,Transportation,Transportation +461822,Transportation,Transportation +479810,International Trade,International Trade +456730,International Trade,International Trade +422704,International Trade,International Trade +379911,International Trade,International Trade +381616,Education,Education +380162,Economic Development,Economic Development +380161,Economic Development,Economic Development +380164,Economic Development,Economic Development +380161,International Trade,International Trade +453504,Climate,Climate +453503,Climate,Climate +474209,Climate,Climate +474208,Climate,Climate +474207,Climate,Climate +453501,Economic Development,Economic Development +474490,Energy,Energy +474489,Energy,Energy +474488,Energy,Energy +474487,Energy,Energy +474486,Energy,Energy +474485,Energy,Energy +474212,Energy,Energy +474211,Energy,Energy +474210,Energy,Energy +474209,Energy,Energy +474208,Energy,Energy +474207,Energy,Energy +471614,Energy,Energy +453506,Energy,Energy +453505,Energy,Energy +453503,Energy,Energy +453502,Energy,Energy +453501,Energy,Energy +403805,Energy,Energy +453503,Infrastructure,Infrastructure +403805,Infrastructure,Infrastructure +521368,Infrastructure,Infrastructure +471614,Infrastructure,Infrastructure +453505,Infrastructure,Infrastructure +388416,Government Procurement,Government Procurement +381372,Industry,Industry +491087,Government Procurement,Government Procurement +489258,Government Procurement,Government Procurement +469969,Government Procurement,Government Procurement +452033,Government Procurement,Government Procurement +411188,Defence,Defence +397284,Employment and Training,Employment and Training +397283,Employment and Training,Employment and Training +397287,Employment and Training,Employment and Training +395685,Environment,Environment +395685,Energy,Energy +388524,Education,Education +388524,Health,Health +385324,Environment,Environment +384695,Fisheries,Fisheries +384696,Transportation,Transportation +407733,Agriculture,Agriculture +438300,Consumer Issues,Consumer Issues +407733,Industry,Industry +380669,International Trade,International Trade +438300,Small Business,Small Business +438300,Taxation and Finance,Taxation and Finance +380665,Industry,Industry +380664,Research and Development,Research and Development +380664,Regional Development,Regional Development +414105,Infrastructure,Infrastructure +401737,Sports,Sports +493984,Environment,Environment +493984,Industry,Industry +382747,Government Procurement,Government Procurement +387768,Government Procurement,Government Procurement +433609,International Trade,International Trade +396865,Research and Development,Research and Development +497070,Economic Development,Economic Development +395311,International Relations,International Relations +395311,Transportation,Transportation +378073,Climate,Climate +495161,Economic Development,Economic Development +380709,Regional Development,Regional Development +380709,Transportation,Transportation +381322,Economic Development,Economic Development +381327,Regional Development,Regional Development +381322,Transportation,Transportation +400342,Budget,Budget +429718,Health,Health +387252,Research and Development,Research and Development +382698,Consumer Issues,Consumer Issues +382698,Financial Institutions,Financial Institutions +382698,Government Procurement,Government Procurement +382698,Privacy and Access to Information,Privacy and Access to Information +382697,Security,Security +382698,Taxation and Finance,Taxation and Finance +378226,Infrastructure,Infrastructure +385438,Economic Development,Economic Development +378227,Constitutional Issues,Constitutional Issues +378227,International Trade,International Trade +388180,Employment and Training,Employment and Training +378232,Official Languages,Official Languages +401939,Agriculture,Agriculture +401939,International Trade,International Trade +378258,Justice and Law Enforcement,Justice and Law Enforcement +380326,Defence,Defence +420063,Health,Health +378272,International Trade,International Trade +378272,Pensions,Pensions +378271,Tourism,Tourism +378289,Economic Development,Economic Development +386435,Economic Development,Economic Development +380598,Infrastructure,Infrastructure +386435,Transportation,Transportation +378283,Government Procurement,Government Procurement +378326,Government Procurement,Government Procurement +380953,Agriculture,Agriculture +380953,International Trade,International Trade +380953,Research and Development,Research and Development +380953,Industry,Industry +378344,Defence,Defence +378347,Defence,Defence +380256,Climate,Climate +407402,Taxation and Finance,Taxation and Finance +378397,Transportation,Transports +378398,Economic Development,Développement économique +378398,Energy,Énergie +378455,International Trade,International Trade +378455,Government Procurement,Government Procurement +378455,Employment and Training,Employment and Training +378455,Security,Security +378733,Defence,Defence +378734,Government Procurement,Government Procurement +380793,Taxation and Finance,Taxation and Finance +382759,Education,Education +382758,Health,Health +382758,Sports,Sports +388654,Health,Health +384240,Security,Security +385906,Consumer Issues,Consumer Issues +385906,Taxation and Finance,Taxation and Finance +384240,Financial Institutions,Financial Institutions +481520,Economic Development,Economic Development +388952,Transportation,Transportation +378611,International Trade,International Trade +393490,Economic Development,Economic Development +393490,Industry,Industry +400362,Infrastructure,Infrastructure +380412,International Trade,International Trade +386926,Security,Security +398165,Transportation,Transportation +380413,Industry,Industry +392367,Infrastructure,Infrastructure +380413,International Trade,International Trade +380413,Security,Security +389965,Transportation,Transportation +379568,Financial Institutions,Financial Institutions +385890,Transportation,Transportation +385890,Economic Development,Economic Development +382682,Environment,Environment +384192,Employment and Training,Employment and Training +384189,Infrastructure,Infrastructure +384192,Labour,Labour +384189,Regional Development,Regional Development +384193,Tourism,Tourism +378746,Energy,Energy +378746,Environment,Environment +378746,Industry,Industry +378746,Infrastructure,Infrastructure +378746,International Trade,International Trade +378746,Regional Development,Regional Development +378746,Transportation,Transportation +385269,Industry,Industry +385269,Regional Development,Regional Development +385269,Transportation,Transportation +378750,Energy,Energy +378750,Environment,Environment +378750,Industry,Industry +378750,Infrastructure,Infrastructure +378750,Transportation,Transportation +531735,Budget,Budget +385147,Fisheries,Fisheries +500047,Forestry,Forestry +489347,Climate,Climate +379609,Health,Health +378904,Energy,Energy +389788,Climate,Climate +389778,Industry,Industry +389788,Industry,Industry +378920,Climate,Climate +394588,Energy,Energy +394588,Industry,Industry +378922,Energy,Energy +389777,Industry,Industry +389781,International Trade,International Trade +395538,Climate,Climate +378929,Education,Education +437468,Energy,Energy +410922,Energy,Energy +378984,Infrastructure,Infrastructure +378984,Agriculture,Agriculture +378984,Immigration,Immigration +378984,International Relations,International Relations +383739,Consumer Issues,Consumer Issues +383739,Small Business,Small Business +383739,Taxation and Finance,Taxation and Finance +436033,Economic Development,Economic Development +388086,Infrastructure,Infrastructure +443449,Economic Development,Economic Development +385157,Budget,Budget +379055,Climate,Climate +379055,Employment and Training,Employment and Training +379055,Tourism,Tourism +379063,Employment and Training,Employment and Training +379063,Tourism,Tourism +379083,Climate,Climate +434111,Pensions,Pensions +396880,Environment,Environment +392434,Fisheries,Fisheries +476635,Budget,Budget +540801,Justice and Law Enforcement,Justice and Law Enforcement +383168,Research and Development,Recherche et développement +380684,Economic Development,Economic Development +380684,Health,Health +380684,Industry,Industry +380684,International Trade,International Trade +383331,Defence,Defence +412086,Research and Development,Recherche et développement +379387,Economic Development,Economic Development +379387,Labour,Labour +450334,International Development,International Development +461921,Research and Development,Research and Development +537579,Small Business,Small Business +464299,Economic Development,Economic Development +464299,Employment and Training,Employment and Training +456018,Research and Development,Research and Development +525978,Budget,Budget +379673,Agriculture,Agriculture +379867,Transportation,Transportation +460347,Transportation,Transportation +484224,International Trade,International Trade +380027,Education,Education +380064,Economic Development,Economic Development +380097,Climate,Climate +380097,Environment,Environment +380163,Economic Development,Economic Development +380162,Industry,Industry +380163,International Trade,International Trade +380605,Energy,Energy +380110,International Development,International Development +453505,Climate,Climate +521371,Economic Development,Economic Development +521373,Energy,Energy +521369,Environment,Environment +453504,Infrastructure,Infrastructure +397975,Government Procurement,Government Procurement +380117,Taxation and Finance,Taxation and Finance +388121,Government Procurement,Government Procurement +391717,Consumer Issues,Consumer Issues +391717,Transportation,Transportation +380120,Justice and Law Enforcement,Justice and Law Enforcement +381374,Industry,Industry +381165,Agriculture,Agriculture +381165,International Trade,International Trade +425348,Government Procurement,Government Procurement +420770,Defence,Defence +397285,Employment and Training,Employment and Training +397285,Health,Health +397284,Housing,Housing +397285,Taxation and Finance,Taxation and Finance +397285,Transportation,Transportation +380683,Education,Education +380683,International Relations,International Relations +402380,Infrastructure,Infrastructure +380286,International Relations,International Relations +454338,Agriculture,Agriculture +532865,Health,Health +454338,International Trade,International Trade +380218,Economic Development,Economic Development +380217,Economic Development,Economic Development +380217,Tourism,Tourism +465629,Climate,Climate +466216,Energy,Energy +462080,Environment,Environment +509117,Fisheries,Fisheries +533297,Industry,Industry +386405,Justice and Law Enforcement,Justice and Law Enforcement +477156,Education,Education +477156,Employment and Training,Employment and Training +387801,Consumer Issues,Consumer Issues +391272,Health,Health +398069,Internal Trade,Internal Trade +398069,Justice and Law Enforcement,Justice and Law Enforcement +398069,Taxation and Finance,Taxation and Finance +407074,Sports,Sports +382835,Employment and Training,Employment and Training +382835,Industry,Industry +382835,Labour,Labour +533386,Industry,Industry +412407,Consumer Issues,Consumer Issues +456803,Industry,Industry +383890,Economic Development,Economic Development +382086,Small Business,Small Business +382112,Taxation and Finance,Taxation and Finance +382112,Tourism,Tourism +380303,Financial Institutions,Financial Institutions +380304,Industry,Industry +537228,Housing,Housing +380308,Environment,Environment +380322,Transportation,Transportation +380322,Economic Development,Economic Development +380322,Consumer Issues,Consumer Issues +452663,Privacy and Access to Information,Privacy and Access to Information +382887,Sports,Sports +383049,Education,Education +382885,Health,Health +380659,Environment,Environment +380659,Fisheries,Fisheries +380392,International Trade,International Trade +424761,Employment and Training,Employment and Training +471721,Health,Health +424760,Immigration,Immigration +397284,Health,Health +397283,Health,Health +397287,Health,Health +397283,Housing,Housing +397287,Housing,Housing +397285,Housing,Housing +397284,Taxation and Finance,Taxation and Finance +397283,Taxation and Finance,Taxation and Finance +397287,Taxation and Finance,Taxation and Finance +397284,Transportation,Transportation +397283,Transportation,Transportation +397287,Transportation,Transportation +380682,Education,Education +380679,Education,Education +385830,Education,Education +385829,Education,Education +383837,Education,Education +383602,Education,Education +382395,Education,Education +382394,Education,Education +382393,Education,Education +382392,Education,Education +380682,International Relations,International Relations +380679,International Relations,International Relations +385830,International Relations,International Relations +385829,International Relations,International Relations +383837,International Relations,International Relations +383602,International Relations,International Relations +382395,International Relations,International Relations +382394,International Relations,International Relations +382393,International Relations,International Relations +382392,International Relations,International Relations +402379,Infrastructure,Infrastructure +402378,Infrastructure,Infrastructure +402377,Infrastructure,Infrastructure +402376,Infrastructure,Infrastructure +402375,Infrastructure,Infrastructure +402374,Infrastructure,Infrastructure +402373,Infrastructure,Infrastructure +402372,Infrastructure,Infrastructure +387511,Infrastructure,Infrastructure +387510,Infrastructure,Infrastructure +387509,Infrastructure,Infrastructure +387508,Infrastructure,Infrastructure +387507,Infrastructure,Infrastructure +387506,Infrastructure,Infrastructure +387505,Infrastructure,Infrastructure +387504,Infrastructure,Infrastructure +387503,Infrastructure,Infrastructure +387502,Infrastructure,Infrastructure +380972,Infrastructure,Infrastructure +404801,Infrastructure,Infrastructure +404800,Infrastructure,Infrastructure +404799,Infrastructure,Infrastructure +404798,Infrastructure,Infrastructure +404797,Infrastructure,Infrastructure +402980,Infrastructure,Infrastructure +402969,Infrastructure,Infrastructure +402951,Infrastructure,Infrastructure +402603,Infrastructure,Infrastructure +402450,Infrastructure,Infrastructure +402390,Infrastructure,Infrastructure +402389,Infrastructure,Infrastructure +402388,Infrastructure,Infrastructure +402387,Infrastructure,Infrastructure +402386,Infrastructure,Infrastructure +402385,Infrastructure,Infrastructure +402384,Infrastructure,Infrastructure +402383,Infrastructure,Infrastructure +402382,Infrastructure,Infrastructure +402381,Infrastructure,Infrastructure +454336,Agriculture,Agriculture +454333,Agriculture,Agriculture +532868,Agriculture,Agriculture +532867,Agriculture,Agriculture +532866,Agriculture,Agriculture +532865,Agriculture,Agriculture +532864,Agriculture,Agriculture +517581,Agriculture,Agriculture +505420,Agriculture,Agriculture +505417,Agriculture,Agriculture +505416,Agriculture,Agriculture +505414,Agriculture,Agriculture +505413,Agriculture,Agriculture +491748,Agriculture,Agriculture +491747,Agriculture,Agriculture +491746,Agriculture,Agriculture +491745,Agriculture,Agriculture +491744,Agriculture,Agriculture +454341,Agriculture,Agriculture +532864,Health,Health +429790,Health,Health +532866,Health,Health +454336,International Trade,International Trade +454333,International Trade,International Trade +429794,International Trade,International Trade +429793,International Trade,International Trade +429792,International Trade,International Trade +429791,International Trade,International Trade +429790,International Trade,International Trade +532868,International Trade,International Trade +532867,International Trade,International Trade +532866,International Trade,International Trade +532865,International Trade,International Trade +532864,International Trade,International Trade +517581,International Trade,International Trade +505420,International Trade,International Trade +505417,International Trade,International Trade +505416,International Trade,International Trade +505414,International Trade,International Trade +505413,International Trade,International Trade +491748,International Trade,International Trade +491747,International Trade,International Trade +491746,International Trade,International Trade +491745,International Trade,International Trade +491744,International Trade,International Trade +454341,International Trade,International Trade +462080,Climate,Climate +456866,Climate,Climate +448312,Climate,Climate +437409,Climate,Climate +429862,Climate,Climate +429861,Climate,Climate +422765,Climate,Climate +386450,Climate,Climate +386449,Climate,Climate +384196,Climate,Climate +539421,Climate,Climate +533490,Climate,Climate +533297,Climate,Climate +533042,Climate,Climate +532948,Climate,Climate +532946,Climate,Climate +530216,Climate,Climate +530120,Climate,Climate +528612,Climate,Climate +526948,Climate,Climate +526920,Climate,Climate +525405,Climate,Climate +525254,Climate,Climate +524678,Climate,Climate +524677,Climate,Climate +524676,Climate,Climate +524674,Climate,Climate +509116,Climate,Climate +499170,Climate,Climate +499167,Climate,Climate +489344,Climate,Climate +488517,Climate,Climate +485114,Climate,Climate +472842,Climate,Climate +472838,Climate,Climate +472836,Climate,Climate +472835,Climate,Climate +467289,Climate,Climate +467288,Climate,Climate +467286,Climate,Climate +467285,Climate,Climate +467283,Climate,Climate +467281,Climate,Climate +467278,Climate,Climate +467274,Climate,Climate +467272,Climate,Climate +467271,Climate,Climate +466716,Climate,Climate +466713,Climate,Climate +466695,Climate,Climate +466694,Climate,Climate +466216,Climate,Climate +465629,Energy,Energy +462080,Energy,Energy +456866,Energy,Energy +448312,Energy,Energy +437410,Energy,Energy +393484,Energy,Energy +539421,Energy,Energy +537449,Energy,Energy +533490,Energy,Energy +533297,Energy,Energy +533042,Energy,Energy +532948,Energy,Energy +532946,Energy,Energy +530216,Energy,Energy +530120,Energy,Energy +528612,Energy,Energy +527413,Energy,Energy +526948,Energy,Energy +526920,Energy,Energy +525405,Energy,Energy +525254,Energy,Energy +524678,Energy,Energy +524677,Energy,Energy +524676,Energy,Energy +524674,Energy,Energy +509116,Energy,Energy +499170,Energy,Energy +499167,Energy,Energy +489344,Energy,Energy +488517,Energy,Energy +485114,Energy,Energy +472842,Energy,Energy +472838,Energy,Energy +472836,Energy,Energy +472835,Energy,Energy +467289,Energy,Energy +467288,Energy,Energy +467286,Energy,Energy +467285,Energy,Energy +467283,Energy,Energy +467281,Energy,Energy +467278,Energy,Energy +467274,Energy,Energy +467272,Energy,Energy +467271,Energy,Energy +466716,Energy,Energy +466713,Energy,Energy +466695,Energy,Energy +466694,Energy,Energy +456866,Environment,Environment +437410,Environment,Environment +413919,Environment,Environment +404215,Environment,Environment +393484,Environment,Environment +386450,Environment,Environment +386449,Environment,Environment +384196,Environment,Environment +539421,Environment,Environment +537449,Environment,Environment +533490,Environment,Environment +533297,Environment,Environment +533042,Environment,Environment +532948,Environment,Environment +532946,Environment,Environment +530216,Environment,Environment +530120,Environment,Environment +528612,Environment,Environment +527413,Environment,Environment +526948,Environment,Environment +526920,Environment,Environment +525405,Environment,Environment +525254,Environment,Environment +524678,Environment,Environment +524677,Environment,Environment +524676,Environment,Environment +524674,Environment,Environment +509118,Environment,Environment +509116,Environment,Environment +499170,Environment,Environment +499167,Environment,Environment +489344,Environment,Environment +488517,Environment,Environment +485114,Environment,Environment +472842,Environment,Environment +472838,Environment,Environment +472836,Environment,Environment +472835,Environment,Environment +467289,Environment,Environment +467288,Environment,Environment +467286,Environment,Environment +467285,Environment,Environment +467283,Environment,Environment +467281,Environment,Environment +467278,Environment,Environment +467274,Environment,Environment +467272,Environment,Environment +467271,Environment,Environment +466716,Environment,Environment +466713,Environment,Environment +466695,Environment,Environment +466694,Environment,Environment +466216,Environment,Environment +465629,Environment,Environment +499994,Fisheries,Fisheries +489344,Fisheries,Fisheries +467283,Fisheries,Fisheries +467274,Fisheries,Fisheries +467272,Fisheries,Fisheries +466718,Fisheries,Fisheries +466716,Fisheries,Fisheries +460788,Fisheries,Fisheries +460390,Fisheries,Fisheries +456866,Fisheries,Fisheries +448312,Fisheries,Fisheries +437410,Fisheries,Fisheries +437409,Fisheries,Fisheries +437408,Fisheries,Fisheries +437407,Fisheries,Fisheries +429863,Fisheries,Fisheries +386450,Fisheries,Fisheries +386449,Fisheries,Fisheries +384196,Fisheries,Fisheries +533297,Fisheries,Fisheries +532948,Fisheries,Fisheries +527413,Fisheries,Fisheries +532948,Industry,Industry +485114,Industry,Industry +467289,Industry,Industry +467288,Industry,Industry +467286,Industry,Industry +467285,Industry,Industry +467283,Industry,Industry +467281,Industry,Industry +467278,Industry,Industry +467274,Industry,Industry +467272,Industry,Industry +467271,Industry,Industry +466716,Industry,Industry +466713,Industry,Industry +466695,Industry,Industry +466694,Industry,Industry +456866,Industry,Industry +448312,Industry,Industry +437409,Industry,Industry +413919,Industry,Industry +393484,Industry,Industry +386450,Industry,Industry +386449,Industry,Industry +384196,Industry,Industry +539421,Industry,Industry +407984,Consumer Issues,Consumer Issues +398069,Consumer Issues,Consumer Issues +391272,Consumer Issues,Consumer Issues +387801,Health,Health +407984,Health,Health +398069,Health,Health +391272,Internal Trade,Internal Trade +391272,Justice and Law Enforcement,Justice and Law Enforcement +387801,Justice and Law Enforcement,Justice and Law Enforcement +407984,Justice and Law Enforcement,Justice and Law Enforcement +391272,Taxation and Finance,Taxation and Finance +407984,Taxation and Finance,Taxation and Finance +393742,Sports,Sports +382834,Employment and Training,Employment and Training +382834,Industry,Industry +382834,Labour,Labour +525820,Industry,Industry +511739,Industry,Industry +461114,Industry,Industry +423245,Industry,Industry +456802,Industry,Industry +456801,Industry,Industry +456805,Industry,Industry +456804,Industry,Industry +383887,Economic Development,Economic Development +383884,Economic Development,Economic Development +382114,Economic Development,Economic Development +382113,Economic Development,Economic Development +382112,Economic Development,Economic Development +382111,Economic Development,Economic Development +382086,Economic Development,Economic Development +393022,Economic Development,Economic Development +393021,Economic Development,Economic Development +393020,Economic Development,Economic Development +393019,Economic Development,Economic Development +393018,Economic Development,Economic Development +393017,Economic Development,Economic Development +393015,Economic Development,Economic Development +391677,Economic Development,Economic Development +391666,Economic Development,Economic Development +391662,Economic Development,Economic Development +391652,Economic Development,Economic Development +391647,Economic Development,Economic Development +391640,Economic Development,Economic Development +391635,Economic Development,Economic Development +384423,Economic Development,Economic Development +384422,Economic Development,Economic Development +384421,Economic Development,Economic Development +384420,Economic Development,Economic Development +383897,Economic Development,Economic Development +383896,Economic Development,Economic Development +383893,Economic Development,Economic Development +393022,Small Business,Small Business +393021,Small Business,Small Business +393020,Small Business,Small Business +393019,Small Business,Small Business +393018,Small Business,Small Business +393017,Small Business,Small Business +393015,Small Business,Small Business +391677,Small Business,Small Business +391666,Small Business,Small Business +391662,Small Business,Small Business +391652,Small Business,Small Business +391647,Small Business,Small Business +391640,Small Business,Small Business +391635,Small Business,Small Business +384423,Small Business,Small Business +384422,Small Business,Small Business +384421,Small Business,Small Business +384420,Small Business,Small Business +383897,Small Business,Small Business +383896,Small Business,Small Business +383893,Small Business,Small Business +383890,Small Business,Small Business +383887,Small Business,Small Business +383884,Small Business,Small Business +382114,Small Business,Small Business +382113,Small Business,Small Business +382112,Small Business,Small Business +382111,Small Business,Small Business +382111,Taxation and Finance,Taxation and Finance +382086,Taxation and Finance,Taxation and Finance +393022,Taxation and Finance,Taxation and Finance +393021,Taxation and Finance,Taxation and Finance +393020,Taxation and Finance,Taxation and Finance +393019,Taxation and Finance,Taxation and Finance +393018,Taxation and Finance,Taxation and Finance +393017,Taxation and Finance,Taxation and Finance +393015,Taxation and Finance,Taxation and Finance +391677,Taxation and Finance,Taxation and Finance +391666,Taxation and Finance,Taxation and Finance +391662,Taxation and Finance,Taxation and Finance +391652,Taxation and Finance,Taxation and Finance +391647,Taxation and Finance,Taxation and Finance +391640,Taxation and Finance,Taxation and Finance +391635,Taxation and Finance,Taxation and Finance +384423,Taxation and Finance,Taxation and Finance +384422,Taxation and Finance,Taxation and Finance +384421,Taxation and Finance,Taxation and Finance +384420,Taxation and Finance,Taxation and Finance +383897,Taxation and Finance,Taxation and Finance +383896,Taxation and Finance,Taxation and Finance +383893,Taxation and Finance,Taxation and Finance +383890,Taxation and Finance,Taxation and Finance +383887,Taxation and Finance,Taxation and Finance +383884,Taxation and Finance,Taxation and Finance +382114,Taxation and Finance,Taxation and Finance +382113,Taxation and Finance,Taxation and Finance +382111,Tourism,Tourism +382086,Tourism,Tourism +393022,Tourism,Tourism +393021,Tourism,Tourism +393020,Tourism,Tourism +393019,Tourism,Tourism +393018,Tourism,Tourism +393017,Tourism,Tourism +393015,Tourism,Tourism +391677,Tourism,Tourism +391666,Tourism,Tourism +391662,Tourism,Tourism +391652,Tourism,Tourism +391647,Tourism,Tourism +391640,Tourism,Tourism +391635,Tourism,Tourism +384423,Tourism,Tourism +384422,Tourism,Tourism +384421,Tourism,Tourism +384420,Tourism,Tourism +383897,Tourism,Tourism +383896,Tourism,Tourism +383893,Tourism,Tourism +383890,Tourism,Tourism +383887,Tourism,Tourism +383884,Tourism,Tourism +382114,Tourism,Tourism +382113,Tourism,Tourism +470308,Housing,Housing +463845,Housing,Housing +455054,Housing,Housing +435057,Housing,Housing +428675,Housing,Housing +413400,Housing,Housing +405399,Housing,Housing +405390,Housing,Housing +403095,Housing,Housing +403093,Housing,Housing +390101,Housing,Housing +537229,Housing,Housing +452662,Privacy and Access to Information,Privacy and Access to Information +449986,Privacy and Access to Information,Privacy and Access to Information +510673,Privacy and Access to Information,Privacy and Access to Information +481791,Privacy and Access to Information,Privacy and Access to Information +479840,Privacy and Access to Information,Privacy and Access to Information +479724,Privacy and Access to Information,Privacy and Access to Information +473445,Privacy and Access to Information,Privacy and Access to Information +473393,Privacy and Access to Information,Privacy and Access to Information +467429,Privacy and Access to Information,Privacy and Access to Information +464493,Privacy and Access to Information,Privacy and Access to Information +462522,Privacy and Access to Information,Privacy and Access to Information +460564,Privacy and Access to Information,Privacy and Access to Information +459487,Privacy and Access to Information,Privacy and Access to Information +459486,Privacy and Access to Information,Privacy and Access to Information +458445,Privacy and Access to Information,Privacy and Access to Information +455093,Privacy and Access to Information,Privacy and Access to Information +455081,Privacy and Access to Information,Privacy and Access to Information +382886,Sports,Sports +382885,Sports,Sports +386882,Sports,Sports +386881,Sports,Sports +385018,Sports,Sports +385017,Sports,Sports +383049,Sports,Sports +382887,Education,Education +382886,Education,Education +386882,Health,Health +383049,Health,Health +382887,Health,Health +382886,Health,Health +380658,Environment,Environment +380657,Environment,Environment +383029,Environment,Environment +381850,Environment,Environment +381849,Environment,Environment +380658,Fisheries,Fisheries +380657,Fisheries,Fisheries +383029,Fisheries,Fisheries +381850,Fisheries,Fisheries +381849,Fisheries,Fisheries +380337,International Trade,International Trade +424760,Employment and Training,Employment and Training +391751,Industry,Industry +384427,Defence,Defence +406148,Defence,Defence +401864,Defence,Defence +394769,Defence,Defence +394768,Defence,Defence +394767,Defence,Defence +390182,Defence,Defence +386577,Defence,Defence +386574,Defence,Defence +384573,Defence,Defence +384468,Defence,Defence +384430,Defence,Defence +384429,Defence,Defence +384427,Economic Development,Economic Development +491716,Economic Development,Economic Development +392947,Economic Development,Economic Development +390182,Economic Development,Economic Development +384468,Economic Development,Economic Development +406148,Government Procurement,Government Procurement +401864,Government Procurement,Government Procurement +394769,Government Procurement,Government Procurement +394768,Government Procurement,Government Procurement +394767,Government Procurement,Government Procurement +390182,Government Procurement,Government Procurement +386577,Government Procurement,Government Procurement +386574,Government Procurement,Government Procurement +384573,Government Procurement,Government Procurement +384468,Government Procurement,Government Procurement +384430,Government Procurement,Government Procurement +384429,Government Procurement,Government Procurement +384428,Government Procurement,Government Procurement +384427,Industry,Industry +491716,Industry,Industry +392947,Industry,Industry +390182,Industry,Industry +384427,Regional Development,Regional Development +395982,Health,Health +387846,Health,Health +385105,Health,Health +383383,Health,Health +382284,Health,Health +406553,Health,Health +405137,Health,Health +405136,Health,Health +405135,Health,Health +405129,Health,Health +405101,Health,Health +403245,Health,Health +405129,Justice and Law Enforcement,Justice and Law Enforcement +405101,Justice and Law Enforcement,Justice and Law Enforcement +403245,Justice and Law Enforcement,Justice and Law Enforcement +395983,Justice and Law Enforcement,Justice and Law Enforcement +395982,Justice and Law Enforcement,Justice and Law Enforcement +387846,Justice and Law Enforcement,Justice and Law Enforcement +385105,Justice and Law Enforcement,Justice and Law Enforcement +383383,Justice and Law Enforcement,Justice and Law Enforcement +382284,Justice and Law Enforcement,Justice and Law Enforcement +406553,Justice and Law Enforcement,Justice and Law Enforcement +405137,Justice and Law Enforcement,Justice and Law Enforcement +405136,Justice and Law Enforcement,Justice and Law Enforcement +383383,Research and Development,Research and Development +382284,Research and Development,Research and Development +403245,Research and Development,Research and Development +389408,Economic Development,Economic Development +389407,Economic Development,Economic Development +389404,Economic Development,Economic Development +389403,Economic Development,Economic Development +389403,Housing,Housing +389399,Housing,Housing +399906,Housing,Housing +399905,Housing,Housing +389408,Housing,Housing +389407,Housing,Housing +389403,Municipalities,Municipalities +389399,Municipalities,Municipalities +389408,Municipalities,Municipalities +389407,Municipalities,Municipalities +389403,Taxation and Finance,Taxation and Finance +389399,Taxation and Finance,Taxation and Finance +407708,Taxation and Finance,Taxation and Finance +406520,Taxation and Finance,Taxation and Finance +404906,Taxation and Finance,Taxation and Finance +399527,Taxation and Finance,Taxation and Finance +396430,Taxation and Finance,Taxation and Finance +396428,Taxation and Finance,Taxation and Finance +389408,Taxation and Finance,Taxation and Finance +389407,Taxation and Finance,Taxation and Finance +389405,Taxation and Finance,Taxation and Finance +389403,Tourism,Tourism +389399,Tourism,Tourism +389408,Tourism,Tourism +389407,Tourism,Tourism +416952,Environment,Environment +402311,Environment,Environment +427176,Environment,Environment +427175,Environment,Environment +427174,Environment,Environment +427173,Environment,Environment +427172,Environment,Environment +427171,Environment,Environment +416956,Environment,Environment +416955,Environment,Environment +416954,Environment,Environment +416952,Mining,Mining +402311,Mining,Mining +397521,Mining,Mining +427176,Mining,Mining +427175,Mining,Mining +427174,Mining,Mining +427173,Mining,Mining +427172,Mining,Mining +427171,Mining,Mining +416956,Mining,Mining +416955,Mining,Mining +416954,Mining,Mining +383403,Environment,Environment +381920,Environment,Environment +402012,Environment,Environment +383403,Fisheries,Fisheries +381920,Fisheries,Fisheries +383403,Mining,Mining +381920,Mining,Mining +402012,Mining,Mining +380431,Energy,Energy +380426,Energy,Energy +382017,Energy,Energy +380435,Energy,Energy +380434,Energy,Energy +382713,Budget,Budget +380444,Budget,Budget +393902,Budget,Budget +393901,Budget,Budget +393900,Budget,Budget +393899,Budget,Budget +391776,Budget,Budget +391773,Budget,Budget +391772,Budget,Budget +387407,Budget,Budget +387405,Budget,Budget +387398,Budget,Budget +387395,Budget,Budget +385119,Budget,Budget +385115,Budget,Budget +385108,Budget,Budget +385107,Budget,Budget +385103,Budget,Budget +382722,Budget,Budget +382721,Budget,Budget +382719,Budget,Budget +382718,Budget,Budget +382717,Budget,Budget +382716,Budget,Budget +382715,Budget,Budget +385108,Fisheries,Fisheries +382715,Fisheries,Fisheries +514989,Economic Development,Economic Development +514988,Economic Development,Economic Development +383025,Economic Development,Economic Development +383024,Economic Development,Economic Development +383023,Economic Development,Economic Development +383022,Economic Development,Economic Development +515105,Economic Development,Economic Development +514992,Economic Development,Economic Development +514991,Economic Development,Economic Development +473944,Tourism,Tourism +473915,Tourism,Tourism +515105,Tourism,Tourism +514992,Tourism,Tourism +396681,Economic Development,Economic Development +396666,Economic Development,Economic Development +415804,Economic Development,Economic Development +415800,Economic Development,Economic Development +400744,Economic Development,Economic Development +400741,Economic Development,Economic Development +420265,Employment and Training,Employment and Training +415800,Employment and Training,Employment and Training +458451,Agriculture,Agriculture +458448,Agriculture,Agriculture +380594,Agriculture,Agriculture +410599,Agriculture,Agriculture +406747,Agriculture,Agriculture +405986,Agriculture,Agriculture +405386,Agriculture,Agriculture +405385,Agriculture,Agriculture +405384,Agriculture,Agriculture +405381,Agriculture,Agriculture +405373,Agriculture,Agriculture +405371,Agriculture,Agriculture +396925,Agriculture,Agriculture +393937,Agriculture,Agriculture +391268,Agriculture,Agriculture +388013,Agriculture,Agriculture +382472,Agriculture,Agriculture +458447,Agriculture,Agriculture +457533,Agriculture,Agriculture +455204,Agriculture,Agriculture +452253,Agriculture,Agriculture +452252,Agriculture,Agriculture +452251,Agriculture,Agriculture +452250,Agriculture,Agriculture +452249,Agriculture,Agriculture +452248,Agriculture,Agriculture +452247,Agriculture,Agriculture +452246,Agriculture,Agriculture +452244,Agriculture,Agriculture +452243,Agriculture,Agriculture +452241,Agriculture,Agriculture +452240,Agriculture,Agriculture +452237,Agriculture,Agriculture +452235,Agriculture,Agriculture +452233,Agriculture,Agriculture +449655,Agriculture,Agriculture +449625,Agriculture,Agriculture +445088,Agriculture,Agriculture +442458,Agriculture,Agriculture +442399,Agriculture,Agriculture +439713,Agriculture,Agriculture +439712,Agriculture,Agriculture +439711,Agriculture,Agriculture +439710,Agriculture,Agriculture +439709,Agriculture,Agriculture +439708,Agriculture,Agriculture +439707,Agriculture,Agriculture +439706,Agriculture,Agriculture +436343,Agriculture,Agriculture +436342,Agriculture,Agriculture +436339,Agriculture,Agriculture +436338,Agriculture,Agriculture +424894,Agriculture,Agriculture +424893,Agriculture,Agriculture +424891,Agriculture,Agriculture +424890,Agriculture,Agriculture +424888,Agriculture,Agriculture +422427,Agriculture,Agriculture +422426,Agriculture,Agriculture +419645,Agriculture,Agriculture +419644,Agriculture,Agriculture +419642,Agriculture,Agriculture +419640,Agriculture,Agriculture +419638,Agriculture,Agriculture +419635,Agriculture,Agriculture +417299,Agriculture,Agriculture +413590,Agriculture,Agriculture +413589,Agriculture,Agriculture +413587,Agriculture,Agriculture +413583,Agriculture,Agriculture +413581,Agriculture,Agriculture +413579,Agriculture,Agriculture +413577,Agriculture,Agriculture +413575,Agriculture,Agriculture +410606,Agriculture,Agriculture +410605,Agriculture,Agriculture +410603,Agriculture,Agriculture +410602,Agriculture,Agriculture +410601,Agriculture,Agriculture +410600,Agriculture,Agriculture +543370,Agriculture,Agriculture +543369,Agriculture,Agriculture +543368,Agriculture,Agriculture +543367,Agriculture,Agriculture +541200,Agriculture,Agriculture +541199,Agriculture,Agriculture +539662,Agriculture,Agriculture +538559,Agriculture,Agriculture +538558,Agriculture,Agriculture +538557,Agriculture,Agriculture +534114,Agriculture,Agriculture +534109,Agriculture,Agriculture +534104,Agriculture,Agriculture +534099,Agriculture,Agriculture +534096,Agriculture,Agriculture +534095,Agriculture,Agriculture +531420,Agriculture,Agriculture +531419,Agriculture,Agriculture +531387,Agriculture,Agriculture +531384,Agriculture,Agriculture +531381,Agriculture,Agriculture +531379,Agriculture,Agriculture +531378,Agriculture,Agriculture +531375,Agriculture,Agriculture +531374,Agriculture,Agriculture +531373,Agriculture,Agriculture +531372,Agriculture,Agriculture +531370,Agriculture,Agriculture +528439,Agriculture,Agriculture +528438,Agriculture,Agriculture +528435,Agriculture,Agriculture +528433,Agriculture,Agriculture +528431,Agriculture,Agriculture +528429,Agriculture,Agriculture +528427,Agriculture,Agriculture +528423,Agriculture,Agriculture +528422,Agriculture,Agriculture +528415,Agriculture,Agriculture +524861,Agriculture,Agriculture +524854,Agriculture,Agriculture +524852,Agriculture,Agriculture +521896,Agriculture,Agriculture +521894,Agriculture,Agriculture +521891,Agriculture,Agriculture +521886,Agriculture,Agriculture +519275,Agriculture,Agriculture +519274,Agriculture,Agriculture +519271,Agriculture,Agriculture +519270,Agriculture,Agriculture +519268,Agriculture,Agriculture +516922,Agriculture,Agriculture +516921,Agriculture,Agriculture +516920,Agriculture,Agriculture +516919,Agriculture,Agriculture +516918,Agriculture,Agriculture +516917,Agriculture,Agriculture +516916,Agriculture,Agriculture +516915,Agriculture,Agriculture +516914,Agriculture,Agriculture +516913,Agriculture,Agriculture +516912,Agriculture,Agriculture +515577,Agriculture,Agriculture +515576,Agriculture,Agriculture +515575,Agriculture,Agriculture +512702,Agriculture,Agriculture +512699,Agriculture,Agriculture +512698,Agriculture,Agriculture +509958,Agriculture,Agriculture +509910,Agriculture,Agriculture +509909,Agriculture,Agriculture +509908,Agriculture,Agriculture +507521,Agriculture,Agriculture +507520,Agriculture,Agriculture +504472,Agriculture,Agriculture +501179,Agriculture,Agriculture +501177,Agriculture,Agriculture +495148,Agriculture,Agriculture +495147,Agriculture,Agriculture +495146,Agriculture,Agriculture +492567,Agriculture,Agriculture +492565,Agriculture,Agriculture +489897,Agriculture,Agriculture +489896,Agriculture,Agriculture +487009,Agriculture,Agriculture +487005,Agriculture,Agriculture +487002,Agriculture,Agriculture +487001,Agriculture,Agriculture +486999,Agriculture,Agriculture +483771,Agriculture,Agriculture +483769,Agriculture,Agriculture +479394,Agriculture,Agriculture +479393,Agriculture,Agriculture +476836,Agriculture,Agriculture +476834,Agriculture,Agriculture +476832,Agriculture,Agriculture +474982,Agriculture,Agriculture +472453,Agriculture,Agriculture +472452,Agriculture,Agriculture +472450,Agriculture,Agriculture +472449,Agriculture,Agriculture +472368,Agriculture,Agriculture +472367,Agriculture,Agriculture +466821,Agriculture,Agriculture +465187,Agriculture,Agriculture +465186,Agriculture,Agriculture +465185,Agriculture,Agriculture +465184,Agriculture,Agriculture +465183,Agriculture,Agriculture +465182,Agriculture,Agriculture +465179,Agriculture,Agriculture +464743,Agriculture,Agriculture +464234,Agriculture,Agriculture +462878,Agriculture,Agriculture +462529,Agriculture,Agriculture +462528,Agriculture,Agriculture +462023,Agriculture,Agriculture +462022,Agriculture,Agriculture +462021,Agriculture,Agriculture +462019,Agriculture,Agriculture +460837,Agriculture,Agriculture +407700,Consumer Issues,Consumer Issues +487009,Economic Development,Economic Development +486999,Economic Development,Economic Development +458452,Economic Development,Economic Development +458451,Economic Development,Economic Development +458448,Economic Development,Economic Development +458447,Economic Development,Economic Development +516913,Economic Development,Economic Development +516912,Economic Development,Economic Development +515577,Economic Development,Economic Development +515576,Economic Development,Economic Development +515575,Economic Development,Economic Development +407700,Health,Health +531370,Health,Health +449659,Health,Health +442458,Health,Health +439712,Health,Health +439709,Health,Health +436343,Health,Health +436342,Health,Health +436338,Health,Health +430726,Health,Health +428181,Health,Health +428179,Health,Health +428177,Health,Health +428171,Health,Health +428169,Health,Health +428163,Health,Health +428160,Health,Health +428157,Health,Health +428154,Health,Health +428150,Health,Health +428148,Health,Health +428122,Health,Health +428121,Health,Health +428118,Health,Health +428116,Health,Health +428113,Health,Health +428112,Health,Health +428111,Health,Health +424893,Health,Health +424891,Health,Health +424890,Health,Health +424888,Health,Health +528427,Industry,Industry +528423,Industry,Industry +430726,Industry,Industry +419644,Industry,Industry +528422,Industry,Industry +528415,Industry,Industry +524861,Industry,Industry +524854,Industry,Industry +524852,Industry,Industry +521896,Industry,Industry +521894,Industry,Industry +521891,Industry,Industry +521886,Industry,Industry +519275,Industry,Industry +519274,Industry,Industry +519271,Industry,Industry +519270,Industry,Industry +519268,Industry,Industry +516922,Industry,Industry +516921,Industry,Industry +516920,Industry,Industry +516919,Industry,Industry +516918,Industry,Industry +516917,Industry,Industry +516916,Industry,Industry +516915,Industry,Industry +516914,Industry,Industry +516913,Industry,Industry +516912,Industry,Industry +515577,Industry,Industry +515576,Industry,Industry +515575,Industry,Industry +512702,Industry,Industry +512699,Industry,Industry +512698,Industry,Industry +509958,Industry,Industry +509910,Industry,Industry +509909,Industry,Industry +509908,Industry,Industry +507521,Industry,Industry +507520,Industry,Industry +504472,Industry,Industry +501179,Industry,Industry +501177,Industry,Industry +495148,Industry,Industry +495147,Industry,Industry +495146,Industry,Industry +492567,Industry,Industry +492565,Industry,Industry +489897,Industry,Industry +489896,Industry,Industry +487009,Industry,Industry +487005,Industry,Industry +487002,Industry,Industry +487001,Industry,Industry +486999,Industry,Industry +483771,Industry,Industry +483769,Industry,Industry +479394,Industry,Industry +479393,Industry,Industry +476836,Industry,Industry +476834,Industry,Industry +476832,Industry,Industry +474982,Industry,Industry +472453,Industry,Industry +472452,Industry,Industry +472450,Industry,Industry +472449,Industry,Industry +472368,Industry,Industry +472367,Industry,Industry +466821,Industry,Industry +465187,Industry,Industry +465186,Industry,Industry +465185,Industry,Industry +465184,Industry,Industry +465183,Industry,Industry +465182,Industry,Industry +465179,Industry,Industry +464232,Industry,Industry +458452,Industry,Industry +458451,Industry,Industry +458448,Industry,Industry +452253,Industry,Industry +452252,Industry,Industry +452251,Industry,Industry +452250,Industry,Industry +452249,Industry,Industry +452248,Industry,Industry +452247,Industry,Industry +452246,Industry,Industry +452244,Industry,Industry +452243,Industry,Industry +452241,Industry,Industry +452240,Industry,Industry +543370,Industry,Industry +543369,Industry,Industry +543368,Industry,Industry +543367,Industry,Industry +541200,Industry,Industry +541199,Industry,Industry +539662,Industry,Industry +538559,Industry,Industry +538558,Industry,Industry +538557,Industry,Industry +534114,Industry,Industry +534109,Industry,Industry +534104,Industry,Industry +534099,Industry,Industry +534096,Industry,Industry +534095,Industry,Industry +531420,Industry,Industry +531419,Industry,Industry +531387,Industry,Industry +531384,Industry,Industry +531381,Industry,Industry +531379,Industry,Industry +531378,Industry,Industry +531375,Industry,Industry +531374,Industry,Industry +531373,Industry,Industry +531372,Industry,Industry +531370,Industry,Industry +528439,Industry,Industry +528438,Industry,Industry +528435,Industry,Industry +528433,Industry,Industry +528431,Industry,Industry +462019,Internal Trade,Internal Trade +405373,Internal Trade,Internal Trade +393937,Internal Trade,Internal Trade +462022,Internal Trade,Internal Trade +462021,Internal Trade,Internal Trade +474982,International Relations,International Relations +452235,International Relations,International Relations +524861,International Trade,International Trade +524854,International Trade,International Trade +413587,International Trade,International Trade +413583,International Trade,International Trade +413581,International Trade,International Trade +413579,International Trade,International Trade +413577,International Trade,International Trade +413575,International Trade,International Trade +410606,International Trade,International Trade +410605,International Trade,International Trade +410603,International Trade,International Trade +410602,International Trade,International Trade +410601,International Trade,International Trade +410600,International Trade,International Trade +410599,International Trade,International Trade +407699,International Trade,International Trade +407695,International Trade,International Trade +407694,International Trade,International Trade +406747,International Trade,International Trade +406746,International Trade,International Trade +406745,International Trade,International Trade +406744,International Trade,International Trade +405986,International Trade,International Trade +405386,International Trade,International Trade +405385,International Trade,International Trade +405384,International Trade,International Trade +405381,International Trade,International Trade +405371,International Trade,International Trade +405364,International Trade,International Trade +401158,International Trade,International Trade +396929,International Trade,International Trade +396925,International Trade,International Trade +391267,International Trade,International Trade +391265,International Trade,International Trade +388021,International Trade,International Trade +388013,International Trade,International Trade +380594,International Trade,International Trade +524852,International Trade,International Trade +521896,International Trade,International Trade +521894,International Trade,International Trade +521891,International Trade,International Trade +521886,International Trade,International Trade +519275,International Trade,International Trade +519274,International Trade,International Trade +519271,International Trade,International Trade +519270,International Trade,International Trade +519268,International Trade,International Trade +516922,International Trade,International Trade +516921,International Trade,International Trade +516920,International Trade,International Trade +516919,International Trade,International Trade +516918,International Trade,International Trade +516917,International Trade,International Trade +516916,International Trade,International Trade +516915,International Trade,International Trade +516914,International Trade,International Trade +516913,International Trade,International Trade +516912,International Trade,International Trade +515577,International Trade,International Trade +515576,International Trade,International Trade +515575,International Trade,International Trade +512702,International Trade,International Trade +512699,International Trade,International Trade +512698,International Trade,International Trade +509958,International Trade,International Trade +509910,International Trade,International Trade +509909,International Trade,International Trade +509908,International Trade,International Trade +507521,International Trade,International Trade +507520,International Trade,International Trade +504472,International Trade,International Trade +501179,International Trade,International Trade +501177,International Trade,International Trade +495148,International Trade,International Trade +495147,International Trade,International Trade +495146,International Trade,International Trade +492567,International Trade,International Trade +492565,International Trade,International Trade +489897,International Trade,International Trade +489896,International Trade,International Trade +487009,International Trade,International Trade +487005,International Trade,International Trade +487002,International Trade,International Trade +483771,International Trade,International Trade +483769,International Trade,International Trade +479394,International Trade,International Trade +479393,International Trade,International Trade +476836,International Trade,International Trade +476834,International Trade,International Trade +476832,International Trade,International Trade +472453,International Trade,International Trade +472452,International Trade,International Trade +472450,International Trade,International Trade +472449,International Trade,International Trade +472368,International Trade,International Trade +472367,International Trade,International Trade +466821,International Trade,International Trade +465187,International Trade,International Trade +465186,International Trade,International Trade +465185,International Trade,International Trade +465184,International Trade,International Trade +465183,International Trade,International Trade +465182,International Trade,International Trade +465179,International Trade,International Trade +462530,International Trade,International Trade +460837,International Trade,International Trade +460700,International Trade,International Trade +459099,International Trade,International Trade +459097,International Trade,International Trade +459096,International Trade,International Trade +458452,International Trade,International Trade +458451,International Trade,International Trade +458448,International Trade,International Trade +458447,International Trade,International Trade +457533,International Trade,International Trade +457529,International Trade,International Trade +455204,International Trade,International Trade +452253,International Trade,International Trade +452252,International Trade,International Trade +452251,International Trade,International Trade +452250,International Trade,International Trade +452249,International Trade,International Trade +452247,International Trade,International Trade +452246,International Trade,International Trade +452244,International Trade,International Trade +452243,International Trade,International Trade +452241,International Trade,International Trade +452240,International Trade,International Trade +452237,International Trade,International Trade +452233,International Trade,International Trade +449655,International Trade,International Trade +449654,International Trade,International Trade +449625,International Trade,International Trade +449624,International Trade,International Trade +449622,International Trade,International Trade +449618,International Trade,International Trade +449617,International Trade,International Trade +449615,International Trade,International Trade +449614,International Trade,International Trade +449613,International Trade,International Trade +449611,International Trade,International Trade +449608,International Trade,International Trade +449607,International Trade,International Trade +445088,International Trade,International Trade +442399,International Trade,International Trade +439713,International Trade,International Trade +439712,International Trade,International Trade +439711,International Trade,International Trade +439710,International Trade,International Trade +439709,International Trade,International Trade +439708,International Trade,International Trade +439707,International Trade,International Trade +439706,International Trade,International Trade +436342,International Trade,International Trade +436339,International Trade,International Trade +433039,International Trade,International Trade +433038,International Trade,International Trade +430725,International Trade,International Trade +424894,International Trade,International Trade +424891,International Trade,International Trade +424890,International Trade,International Trade +424889,International Trade,International Trade +424888,International Trade,International Trade +422427,International Trade,International Trade +422426,International Trade,International Trade +419645,International Trade,International Trade +419644,International Trade,International Trade +419642,International Trade,International Trade +419640,International Trade,International Trade +419638,International Trade,International Trade +417299,International Trade,International Trade +413590,International Trade,International Trade +413589,International Trade,International Trade +543370,International Trade,International Trade +543369,International Trade,International Trade +543368,International Trade,International Trade +543367,International Trade,International Trade +541200,International Trade,International Trade +541199,International Trade,International Trade +539662,International Trade,International Trade +538559,International Trade,International Trade +538558,International Trade,International Trade +538557,International Trade,International Trade +534114,International Trade,International Trade +534109,International Trade,International Trade +534104,International Trade,International Trade +534099,International Trade,International Trade +534096,International Trade,International Trade +534095,International Trade,International Trade +531420,International Trade,International Trade +531419,International Trade,International Trade +531387,International Trade,International Trade +531384,International Trade,International Trade +531381,International Trade,International Trade +531379,International Trade,International Trade +531378,International Trade,International Trade +531375,International Trade,International Trade +531374,International Trade,International Trade +531373,International Trade,International Trade +531372,International Trade,International Trade +531370,International Trade,International Trade +528439,International Trade,International Trade +528438,International Trade,International Trade +528435,International Trade,International Trade +528433,International Trade,International Trade +528431,International Trade,International Trade +528429,International Trade,International Trade +528427,International Trade,International Trade +528423,International Trade,International Trade +528422,International Trade,International Trade +384710,Health,Health +384708,Health,Health +399999,Health,Health +398045,Health,Health +398044,Health,Health +389093,Health,Health +384715,Health,Health +384714,Health,Health +467743,Environment,Environnement +400208,Environment,Environnement +543427,Environment,Environnement +477761,Environment,Environment +384595,Environment,Environment +381993,Transportation,Transportation +381992,Transportation,Transportation +386085,Transportation,Transportation +386084,Transportation,Transportation +384595,Transportation,Transportation +383623,Transportation,Transportation +383621,Transportation,Transportation +383472,Transportation,Transportation +383471,Transportation,Transportation +381998,Transportation,Transportation +381997,Transportation,Transportation +381996,Transportation,Transportation +402790,Energy,Energy +402788,Energy,Energy +417191,Energy,Energy +417189,Energy,Energy +417188,Energy,Energy +417187,Energy,Energy +402790,Environment,Environment +402788,Environment,Environment +417191,Environment,Environment +417189,Environment,Environment +417188,Environment,Environment +417187,Environment,Environment +384077,Economic Development,Economic Development +384071,Economic Development,Economic Development +384070,Economic Development,Economic Development +384068,Economic Development,Economic Development +384067,Economic Development,Economic Development +384065,Economic Development,Economic Development +384064,Economic Development,Economic Development +384063,Economic Development,Economic Development +384071,Environment,Environment +384070,Environment,Environment +384067,Environment,Environment +384066,Environment,Environment +384064,Environment,Environment +384064,Industry,Industry +384063,Industry,Industry +384078,Industry,Industry +384071,Industry,Industry +384070,Industry,Industry +384068,Industry,Industry +384066,Industry,Industry +384066,Small Business,Small Business +384064,Small Business,Small Business +384078,Small Business,Small Business +384077,Small Business,Small Business +384068,Small Business,Small Business +459467,Economic Development,Economic Development +459466,Economic Development,Economic Development +394909,Economic Development,Economic Development +393084,Economic Development,Economic Development +393083,Economic Development,Economic Development +393078,Economic Development,Economic Development +393076,Economic Development,Economic Development +393075,Economic Development,Economic Development +393074,Economic Development,Economic Development +393073,Economic Development,Economic Development +392283,Economic Development,Economic Development +392280,Economic Development,Economic Development +392279,Economic Development,Economic Development +392278,Economic Development,Economic Development +388890,Economic Development,Economic Development +388889,Economic Development,Economic Development +388888,Economic Development,Economic Development +387036,Economic Development,Economic Development +387035,Economic Development,Economic Development +384261,Economic Development,Economic Development +382897,Economic Development,Economic Development +382896,Economic Development,Economic Development +382892,Economic Development,Economic Development +382222,Economic Development,Economic Development +380681,Economic Development,Economic Development +380677,Economic Development,Economic Development +380674,Economic Development,Economic Development +380672,Economic Development,Economic Development +457316,Economic Development,Economic Development +457315,Economic Development,Economic Development +457314,Economic Development,Economic Development +457312,Economic Development,Economic Development +455002,Economic Development,Economic Development +454995,Economic Development,Economic Development +454992,Economic Development,Economic Development +452378,Economic Development,Economic Development +452371,Economic Development,Economic Development +452362,Economic Development,Economic Development +452358,Economic Development,Economic Development +452347,Economic Development,Economic Development +452344,Economic Development,Economic Development +452342,Economic Development,Economic Development +452340,Economic Development,Economic Development +449778,Economic Development,Economic Development +449776,Economic Development,Economic Development +449774,Economic Development,Economic Development +449770,Economic Development,Economic Development +447573,Economic Development,Economic Development +444338,Economic Development,Economic Development +444337,Economic Development,Economic Development +444336,Economic Development,Economic Development +444334,Economic Development,Economic Development +444333,Economic Development,Economic Development +443704,Economic Development,Economic Development +443633,Economic Development,Economic Development +440959,Economic Development,Economic Development +440958,Economic Development,Economic Development +440785,Economic Development,Economic Development +440772,Economic Development,Economic Development +437632,Economic Development,Economic Development +437587,Economic Development,Economic Development +437586,Economic Development,Economic Development +437585,Economic Development,Economic Development +437556,Economic Development,Economic Development +437554,Economic Development,Economic Development +437553,Economic Development,Economic Development +434914,Economic Development,Economic Development +434913,Economic Development,Economic Development +433034,Economic Development,Economic Development +433033,Economic Development,Economic Development +433032,Economic Development,Economic Development +433031,Economic Development,Economic Development +431967,Economic Development,Economic Development +430290,Economic Development,Economic Development +428368,Economic Development,Economic Development +428362,Economic Development,Economic Development +428328,Economic Development,Economic Development +425475,Economic Development,Economic Development +425473,Economic Development,Economic Development +425472,Economic Development,Economic Development +423396,Economic Development,Economic Development +421417,Economic Development,Economic Development +421416,Economic Development,Economic Development +419131,Economic Development,Economic Development +419129,Economic Development,Economic Development +419126,Economic Development,Economic Development +419119,Economic Development,Economic Development +419117,Economic Development,Economic Development +419115,Economic Development,Economic Development +419110,Economic Development,Economic Development +419103,Economic Development,Economic Development +419102,Economic Development,Economic Development +419099,Economic Development,Economic Development +419098,Economic Development,Economic Development +419097,Economic Development,Economic Development +419067,Economic Development,Economic Development +417837,Economic Development,Economic Development +417836,Economic Development,Economic Development +417835,Economic Development,Economic Development +417832,Economic Development,Economic Development +417830,Economic Development,Economic Development +415201,Economic Development,Economic Development +415200,Economic Development,Economic Development +415199,Economic Development,Economic Development +415198,Economic Development,Economic Development +415197,Economic Development,Economic Development +415196,Economic Development,Economic Development +415195,Economic Development,Economic Development +415194,Economic Development,Economic Development +415193,Economic Development,Economic Development +415192,Economic Development,Economic Development +415191,Economic Development,Economic Development +415188,Economic Development,Economic Development +412848,Economic Development,Economic Development +412844,Economic Development,Economic Development +412622,Economic Development,Economic Development +412613,Economic Development,Economic Development +408599,Economic Development,Economic Development +407319,Economic Development,Economic Development +407318,Economic Development,Economic Development +406153,Economic Development,Economic Development +406152,Economic Development,Economic Development +404895,Economic Development,Economic Development +404894,Economic Development,Economic Development +401961,Economic Development,Economic Development +401960,Economic Development,Economic Development +401959,Economic Development,Economic Development +399750,Economic Development,Economic Development +399749,Economic Development,Economic Development +399748,Economic Development,Economic Development +399747,Economic Development,Economic Development +399746,Economic Development,Economic Development +397950,Economic Development,Economic Development +397949,Economic Development,Economic Development +395039,Economic Development,Economic Development +395037,Economic Development,Economic Development +395021,Economic Development,Economic Development +395016,Economic Development,Economic Development +395003,Economic Development,Economic Development +395001,Economic Development,Economic Development +394999,Economic Development,Economic Development +394997,Economic Development,Economic Development +394994,Economic Development,Economic Development +394989,Economic Development,Economic Development +543974,Economic Development,Economic Development +541885,Economic Development,Economic Development +539970,Economic Development,Economic Development +538536,Economic Development,Economic Development +538534,Economic Development,Economic Development +538533,Economic Development,Economic Development +538532,Economic Development,Economic Development +535677,Economic Development,Economic Development +531825,Economic Development,Economic Development +531824,Economic Development,Economic Development +531823,Economic Development,Economic Development +528299,Economic Development,Economic Development +528294,Economic Development,Economic Development +522565,Economic Development,Economic Development +522563,Economic Development,Economic Development +522561,Economic Development,Economic Development +515988,Economic Development,Economic Development +515538,Economic Development,Economic Development +515537,Economic Development,Economic Development +514195,Economic Development,Economic Development +512705,Economic Development,Economic Development +512701,Economic Development,Economic Development +512690,Economic Development,Economic Development +511286,Economic Development,Economic Development +511283,Economic Development,Economic Development +511278,Economic Development,Economic Development +511272,Economic Development,Economic Development +508268,Economic Development,Economic Development +505304,Economic Development,Economic Development +502412,Economic Development,Economic Development +502408,Economic Development,Economic Development +498473,Economic Development,Economic Development +498468,Economic Development,Economic Development +498430,Economic Development,Economic Development +495510,Economic Development,Economic Development +495508,Economic Development,Economic Development +495503,Economic Development,Economic Development +493486,Economic Development,Economic Development +493075,Economic Development,Economic Development +487645,Economic Development,Economic Development +470313,Economic Development,Economic Development +470312,Economic Development,Economic Development +467928,Economic Development,Economic Development +467144,Economic Development,Economic Development +465617,Economic Development,Economic Development +464147,Economic Development,Economic Development +461074,Economic Development,Economic Development +460043,Economic Development,Economic Development +460042,Economic Development,Economic Development +460041,Economic Development,Economic Development +460040,Economic Development,Economic Development +535670,Regional Development,Regional Development +535669,Regional Development,Regional Development +434913,Regional Development,Regional Development +419102,Regional Development,Regional Development +415200,Regional Development,Regional Development +406152,Regional Development,Regional Development +404895,Regional Development,Regional Development +404894,Regional Development,Regional Development +397949,Regional Development,Regional Development +395039,Regional Development,Regional Development +395021,Regional Development,Regional Development +395016,Regional Development,Regional Development +395003,Regional Development,Regional Development +395001,Regional Development,Regional Development +394999,Regional Development,Regional Development +394997,Regional Development,Regional Development +394989,Regional Development,Regional Development +393076,Regional Development,Regional Development +393075,Regional Development,Regional Development +392278,Regional Development,Regional Development +382897,Regional Development,Regional Development +380674,Regional Development,Regional Development +419131,Transportation,Transportation +456211,Health,Health +452449,Health,Health +436936,Health,Health +423232,Health,Health +411940,Health,Health +510846,Health,Health +461004,Health,Health +441794,Education,Education +439102,Education,Education +383459,Education,Education +383458,Education,Education +433608,Education,Education +431641,Education,Education +431640,Education,Education +431153,Education,Education +426268,Education,Education +426267,Education,Education +426264,Education,Education +426256,Education,Education +426255,Education,Education +426254,Education,Education +423681,Education,Education +419449,Education,Education +418148,Education,Education +418143,Education,Education +402960,Education,Education +402957,Education,Education +398782,Education,Education +398775,Education,Education +396341,Education,Education +394191,Education,Education +543914,Education,Education +543908,Education,Education +543899,Education,Education +538159,Education,Education +533189,Education,Education +533188,Education,Education +533187,Education,Education +533186,Education,Education +533185,Education,Education +533183,Education,Education +533182,Education,Education +533181,Education,Education +504412,Education,Education +504411,Education,Education +504409,Education,Education +499830,Education,Education +465699,Education,Education +448199,Education,Education +445567,Education,Education +443973,Education,Education +441802,Education,Education +441801,Education,Education +441800,Education,Education +441799,Education,Education +396781,Climate,Climate +385225,Agriculture,Agriculture +383173,Agriculture,Agriculture +392564,Agriculture,Agriculture +389705,Agriculture,Agriculture +387741,Agriculture,Agriculture +387726,Agriculture,Agriculture +385239,Agriculture,Agriculture +385237,Agriculture,Agriculture +385232,Agriculture,Agriculture +385225,Climate,Climate +383173,Climate,Climate +392564,Climate,Climate +389705,Climate,Climate +387741,Climate,Climate +387726,Climate,Climate +385239,Climate,Climate +385237,Climate,Climate +385232,Climate,Climate +383173,Economic Development,Economic Development +385227,Environment,Environment +385225,Environment,Environment +392564,Environment,Environment +389705,Environment,Environment +387741,Environment,Environment +387726,Environment,Environment +385239,Environment,Environment +387735,Climate,Climate +387730,Climate,Climate +383183,Climate,Climate +383182,Climate,Climate +383160,Climate,Climate +432066,Climate,Climate +428398,Climate,Climate +396248,Climate,Climate +396231,Climate,Climate +393712,Climate,Climate +392574,Climate,Climate +392547,Climate,Climate +389719,Climate,Climate +389713,Climate,Climate +387742,Climate,Climate +383182,Economic Development,Economic Development +383160,Economic Development,Economic Development +432066,Economic Development,Economic Development +428398,Economic Development,Economic Development +396248,Economic Development,Economic Development +396231,Economic Development,Economic Development +393712,Economic Development,Economic Development +392574,Economic Development,Economic Development +392547,Economic Development,Economic Development +389719,Economic Development,Economic Development +389713,Economic Development,Economic Development +387742,Economic Development,Economic Development +387739,Economic Development,Economic Development +387735,Economic Development,Economic Development +387730,Economic Development,Economic Development +383182,Energy,Energy +383160,Energy,Energy +396248,Energy,Energy +396231,Energy,Energy +393712,Energy,Energy +392574,Energy,Energy +392547,Energy,Energy +389719,Energy,Energy +389713,Energy,Energy +387742,Energy,Energy +387739,Energy,Energy +387735,Energy,Energy +387730,Energy,Energy +385233,Energy,Energy +408307,Consumer Issues,Consumer Issues +405606,Consumer Issues,Consumer Issues +401486,Consumer Issues,Consumer Issues +401485,Consumer Issues,Consumer Issues +400147,Consumer Issues,Consumer Issues +394262,Consumer Issues,Consumer Issues +389670,Consumer Issues,Consumer Issues +389669,Consumer Issues,Consumer Issues +389185,Consumer Issues,Consumer Issues +389184,Consumer Issues,Consumer Issues +388939,Consumer Issues,Consumer Issues +388938,Consumer Issues,Consumer Issues +388937,Consumer Issues,Consumer Issues +388936,Consumer Issues,Consumer Issues +388935,Consumer Issues,Consumer Issues +388934,Consumer Issues,Consumer Issues +382872,Consumer Issues,Consumer Issues +382871,Consumer Issues,Consumer Issues +382870,Consumer Issues,Consumer Issues +382861,Consumer Issues,Consumer Issues +382860,Consumer Issues,Consumer Issues +382858,Consumer Issues,Consumer Issues +381842,Consumer Issues,Consumer Issues +498551,Consumer Issues,Consumer Issues +492001,Consumer Issues,Consumer Issues +490676,Consumer Issues,Consumer Issues +476358,Consumer Issues,Consumer Issues +474251,Consumer Issues,Consumer Issues +473994,Consumer Issues,Consumer Issues +466032,Consumer Issues,Consumer Issues +464034,Consumer Issues,Consumer Issues +461104,Consumer Issues,Consumer Issues +458603,Consumer Issues,Consumer Issues +456564,Consumer Issues,Consumer Issues +456563,Consumer Issues,Consumer Issues +444734,Consumer Issues,Consumer Issues +444733,Consumer Issues,Consumer Issues +444040,Consumer Issues,Consumer Issues +444039,Consumer Issues,Consumer Issues +436590,Consumer Issues,Consumer Issues +436589,Consumer Issues,Consumer Issues +436588,Consumer Issues,Consumer Issues +436332,Consumer Issues,Consumer Issues +433151,Consumer Issues,Consumer Issues +432801,Consumer Issues,Consumer Issues +420255,Consumer Issues,Consumer Issues +420253,Consumer Issues,Consumer Issues +420252,Consumer Issues,Consumer Issues +417300,Consumer Issues,Consumer Issues +417296,Consumer Issues,Consumer Issues +414022,Consumer Issues,Consumer Issues +414020,Consumer Issues,Consumer Issues +411053,Consumer Issues,Consumer Issues +409216,Consumer Issues,Consumer Issues +408486,Consumer Issues,Consumer Issues +408485,Consumer Issues,Consumer Issues +389669,Economic Development,Economic Development +492490,Economic Development,Economic Development +382858,Economic Development,Economic Development +381841,Economic Development,Economic Development +432802,Economic Development,Economic Development +425626,Economic Development,Economic Development +425623,Economic Development,Economic Development +417298,Economic Development,Economic Development +414805,Economic Development,Economic Development +414021,Economic Development,Economic Development +405606,Economic Development,Economic Development +405566,Economic Development,Economic Development +401486,Economic Development,Economic Development +401485,Economic Development,Economic Development +417300,Employment and Training,Employment and Training +414022,Employment and Training,Employment and Training +433155,Financial Institutions,Financial Institutions +417296,Financial Institutions,Financial Institutions +405564,Financial Institutions,Financial Institutions +389202,Financial Institutions,Financial Institutions +388932,Financial Institutions,Financial Institutions +381843,Financial Institutions,Financial Institutions +461103,Financial Institutions,Financial Institutions +444734,Financial Institutions,Financial Institutions +388935,Government Procurement,Government Procurement +388934,Government Procurement,Government Procurement +384336,Government Procurement,Government Procurement +384335,Government Procurement,Government Procurement +384333,Government Procurement,Government Procurement +384332,Government Procurement,Government Procurement +382872,Government Procurement,Government Procurement +382871,Government Procurement,Government Procurement +382870,Government Procurement,Government Procurement +382861,Government Procurement,Government Procurement +381842,Government Procurement,Government Procurement +381840,Government Procurement,Government Procurement +436332,Government Procurement,Government Procurement +389185,Government Procurement,Government Procurement +388939,Government Procurement,Government Procurement +388938,Government Procurement,Government Procurement +388937,Government Procurement,Government Procurement +389185,Intellectual Property,Intellectual Property +388940,Intellectual Property,Intellectual Property +381842,Intellectual Property,Intellectual Property +381841,Intellectual Property,Intellectual Property +381840,Intellectual Property,Intellectual Property +492374,Intellectual Property,Intellectual Property +474935,Intellectual Property,Intellectual Property +467969,Intellectual Property,Intellectual Property +464034,Intellectual Property,Intellectual Property +461104,Intellectual Property,Intellectual Property +444040,Intellectual Property,Intellectual Property +444039,Intellectual Property,Intellectual Property +436590,Intellectual Property,Intellectual Property +436589,Intellectual Property,Intellectual Property +436588,Intellectual Property,Intellectual Property +433152,Intellectual Property,Intellectual Property +432801,Intellectual Property,Intellectual Property +420255,Intellectual Property,Intellectual Property +420253,Intellectual Property,Intellectual Property +420252,Intellectual Property,Intellectual Property +417298,Intellectual Property,Intellectual Property +408486,Intellectual Property,Intellectual Property +408485,Intellectual Property,Intellectual Property +408484,Intellectual Property,Intellectual Property +462052,International Relations,International Relations +400149,International Relations,International Relations +405606,Taxation and Finance,Taxation and Finance +405564,Taxation and Finance,Taxation and Finance +506741,Taxation and Finance,Taxation and Finance +464037,Taxation and Finance,Taxation and Finance +464036,Taxation and Finance,Taxation and Finance +462054,Taxation and Finance,Taxation and Finance +462051,Taxation and Finance,Taxation and Finance +461103,Taxation and Finance,Taxation and Finance +444041,Taxation and Finance,Taxation and Finance +424605,Taxation and Finance,Taxation and Finance +424604,Taxation and Finance,Taxation and Finance +424603,Taxation and Finance,Taxation and Finance +424600,Taxation and Finance,Taxation and Finance +414810,Taxation and Finance,Taxation and Finance +414809,Taxation and Finance,Taxation and Finance +414807,Taxation and Finance,Taxation and Finance +433421,Transportation,Transportation +430816,Transportation,Transportation +428463,Transportation,Transportation +428456,Transportation,Transportation +428449,Transportation,Transportation +428408,Transportation,Transportation +428405,Transportation,Transportation +426053,Transportation,Transportation +423786,Transportation,Transportation +423785,Transportation,Transportation +423782,Transportation,Transportation +423780,Transportation,Transportation +423772,Transportation,Transportation +419051,Transportation,Transportation +419050,Transportation,Transportation +417874,Transportation,Transportation +417869,Transportation,Transportation +417867,Transportation,Transportation +417865,Transportation,Transportation +417864,Transportation,Transportation +415674,Transportation,Transportation +409881,Transportation,Transportation +409879,Transportation,Transportation +409782,Transportation,Transportation +409774,Transportation,Transportation +409632,Transportation,Transportation +407751,Transportation,Transportation +407744,Transportation,Transportation +407741,Transportation,Transportation +407705,Transportation,Transportation +407704,Transportation,Transportation +405041,Transportation,Transportation +405039,Transportation,Transportation +405038,Transportation,Transportation +405037,Transportation,Transportation +405036,Transportation,Transportation +405035,Transportation,Transportation +405034,Transportation,Transportation +405031,Transportation,Transportation +405027,Transportation,Transportation +405026,Transportation,Transportation +405024,Transportation,Transportation +405018,Transportation,Transportation +405017,Transportation,Transportation +405015,Transportation,Transportation +405011,Transportation,Transportation +405008,Transportation,Transportation +405007,Transportation,Transportation +405006,Transportation,Transportation +404330,Transportation,Transportation +404329,Transportation,Transportation +404328,Transportation,Transportation +402704,Transportation,Transportation +399897,Transportation,Transportation +399896,Transportation,Transportation +399895,Transportation,Transportation +396252,Transportation,Transportation +396239,Transportation,Transportation +393731,Transportation,Transportation +392569,Transportation,Transportation +392543,Transportation,Transportation +389722,Transportation,Transportation +389714,Transportation,Transportation +387771,Transportation,Transportation +387732,Transportation,Transportation +387722,Transportation,Transportation +385229,Transportation,Transportation +385219,Transportation,Transportation +382032,Transportation,Transportation +382031,Transportation,Transportation +382029,Transportation,Transportation +484765,Transportation,Transportation +484759,Transportation,Transportation +472741,Transportation,Transportation +459581,Transportation,Transportation +457017,Transportation,Transportation +449553,Transportation,Transportation +447334,Transportation,Transportation +447332,Transportation,Transportation +441324,Transportation,Transportation +441321,Transportation,Transportation +435150,Transportation,Transportation +435148,Transportation,Transportation +380664,Economic Development,Economic Development +394267,Agriculture,Agriculture +382354,Agriculture,Agriculture +400233,Agriculture,Agriculture +400230,Infrastructure,Infrastructure +380786,International Development,International Development +460928,Health,Health +460927,Health,Health +380818,Health,Health +440193,Health,Health +440192,Health,Health +440191,Health,Health +440190,Health,Health +440189,Health,Health +440188,Health,Health +440187,Health,Health +440186,Health,Health +440185,Health,Health +440184,Health,Health +440183,Health,Health +440182,Health,Health +440181,Health,Health +440180,Health,Health +440179,Health,Health +440178,Health,Health +440177,Health,Health +440176,Health,Health +440175,Health,Health +440174,Health,Health +440172,Health,Health +440162,Health,Health +439356,Health,Health +439338,Health,Health +426602,Health,Health +426588,Health,Health +426582,Health,Health +426572,Health,Health +544533,Health,Health +542219,Health,Health +541120,Health,Health +537032,Health,Health +536240,Health,Health +532443,Health,Health +528950,Health,Health +528946,Health,Health +526457,Health,Health +523386,Health,Health +521748,Health,Health +384003,Education,Éducation +384002,Education,Éducation +382808,Education,Éducation +382808,Immigration,Immigration +382467,Immigration,Immigration +386238,Immigration,Immigration +386237,Immigration,Immigration +384004,Immigration,Immigration +384003,Immigration,Immigration +386238,Transportation,Transports +386237,Transportation,Transports +383619,International Trade,Commerce international +383618,International Trade,Commerce international +389721,Economic Development,Economic Development +380855,Economic Development,Economic Development +393738,Economic Development,Economic Development +393734,Economic Development,Economic Development +392541,Economic Development,Economic Development +387068,Economic Development,Développement économique +437146,Immigration,Immigration +437144,Immigration,Immigration +437142,Immigration,Immigration +437141,Immigration,Immigration +437140,Immigration,Immigration +437138,Immigration,Immigration +437136,Immigration,Immigration +437134,Immigration,Immigration +437132,Immigration,Immigration +437131,Immigration,Immigration +437130,Immigration,Immigration +427680,Immigration,Immigration +427676,Immigration,Immigration +427675,Immigration,Immigration +425770,Immigration,Immigration +425769,Immigration,Immigration +423520,Immigration,Immigration +421657,Immigration,Immigration +421636,Immigration,Immigration +416361,Immigration,Immigration +395547,Immigration,Immigration +395546,Immigration,Immigration +386534,Immigration,Immigration +386486,Immigration,Immigration +384512,Immigration,Immigration +381170,Immigration,Immigration +380949,Immigration,Immigration +445075,Immigration,Immigration +443186,Immigration,Immigration +443185,Immigration,Immigration +437401,Immigration,Immigration +437400,Immigration,Immigration +437166,Immigration,Immigration +437165,Immigration,Immigration +437164,Immigration,Immigration +437163,Immigration,Immigration +437162,Immigration,Immigration +437161,Immigration,Immigration +437160,Immigration,Immigration +437159,Immigration,Immigration +437158,Immigration,Immigration +437157,Immigration,Immigration +437156,Immigration,Immigration +437155,Immigration,Immigration +437154,Immigration,Immigration +437153,Immigration,Immigration +437152,Immigration,Immigration +437151,Immigration,Immigration +437150,Immigration,Immigration +437149,Immigration,Immigration +437148,Immigration,Immigration +437037,Economic Development,Economic Development +424027,Economic Development,Economic Development +395596,Economic Development,Economic Development +380970,Economic Development,Economic Development +380969,Economic Development,Economic Development +404336,Economic Development,Economic Development +392006,Economic Development,Economic Development +392006,Mining,Mining +380978,Mining,Mining +409807,Mining,Mining +404338,Mining,Mining +404337,Mining,Mining +392006,Transportation,Transportation +461907,Research and Development,Research and Development +498645,Security,Security +382862,Housing,Housing +382778,Housing,Housing +382864,Housing,Housing +425982,Consumer Issues,Consumer Issues +425971,Consumer Issues,Consumer Issues +391529,Consumer Issues,Consumer Issues +391524,Consumer Issues,Consumer Issues +385285,Consumer Issues,Consumer Issues +385190,Consumer Issues,Consumer Issues +514720,Consumer Issues,Consumer Issues +508407,Consumer Issues,Consumer Issues +477830,Consumer Issues,Consumer Issues +459581,Employment and Training,Employment and Training +457017,Employment and Training,Employment and Training +457017,Industry,Industry +528633,Health,Health +520586,Health,Health +516778,Health,Health +450818,Regional Development,Regional Development +434000,Regional Development,Regional Development +395714,Regional Development,Regional Development +395712,Regional Development,Regional Development +395581,Regional Development,Regional Development +395568,Regional Development,Regional Development +395562,Regional Development,Regional Development +520586,Regional Development,Regional Development +474875,Regional Development,Regional Development +456540,Regional Development,Regional Development +454521,Regional Development,Regional Development +382777,Economic Development,Développement économique +381435,Economic Development,Développement économique +397498,Economic Development,Développement économique +397497,Economic Development,Développement économique +387697,Economic Development,Développement économique +385394,Economic Development,Développement économique +385393,Economic Development,Développement économique +385392,Economic Development,Développement économique +385391,Economic Development,Développement économique +383122,Economic Development,Développement économique +381349,Economic Development,Economic Development +381343,Economic Development,Economic Development +392764,Economic Development,Economic Development +392762,Economic Development,Economic Development +381360,Economic Development,Economic Development +381357,Economic Development,Economic Development +381355,Economic Development,Economic Development +402475,Health,Health +402475,Industry,Industry +381853,Housing,Housing +465651,Government Procurement,Government Procurement +458417,Government Procurement,Government Procurement +396958,Infrastructure,Infrastructure +396957,Infrastructure,Infrastructure +391715,Infrastructure,Infrastructure +391713,Infrastructure,Infrastructure +382625,Infrastructure,Infrastructure +381559,Infrastructure,Infrastructure +381558,Infrastructure,Infrastructure +381557,Infrastructure,Infrastructure +381555,Infrastructure,Infrastructure +381553,Infrastructure,Infrastructure +381551,Infrastructure,Infrastructure +381549,Infrastructure,Infrastructure +381546,Infrastructure,Infrastructure +543378,Infrastructure,Infrastructure +517242,Infrastructure,Infrastructure +487542,Infrastructure,Infrastructure +432585,Infrastructure,Infrastructure +429284,Infrastructure,Infrastructure +418312,Infrastructure,Infrastructure +418310,Infrastructure,Infrastructure +418308,Infrastructure,Infrastructure +413750,Infrastructure,Infrastructure +413739,Infrastructure,Infrastructure +413731,Infrastructure,Infrastructure +406920,Infrastructure,Infrastructure +403990,Infrastructure,Infrastructure +386551,Transportation,Transportation +386548,Transportation,Transportation +386554,Transportation,Transportation +470796,Financial Institutions,Financial Institutions +470790,Financial Institutions,Financial Institutions +399077,Financial Institutions,Financial Institutions +399062,Financial Institutions,Financial Institutions +399051,Financial Institutions,Financial Institutions +399045,Financial Institutions,Financial Institutions +394128,Financial Institutions,Financial Institutions +392775,Financial Institutions,Financial Institutions +388151,Financial Institutions,Financial Institutions +388144,Financial Institutions,Financial Institutions +388142,Financial Institutions,Financial Institutions +388141,Financial Institutions,Financial Institutions +381687,Financial Institutions,Financial Institutions +459686,Financial Institutions,Financial Institutions +438901,Financial Institutions,Financial Institutions +426862,Financial Institutions,Financial Institutions +424251,Financial Institutions,Financial Institutions +410047,Financial Institutions,Financial Institutions +410046,Financial Institutions,Financial Institutions +542002,Financial Institutions,Financial Institutions +535850,Financial Institutions,Financial Institutions +522645,Financial Institutions,Financial Institutions +515832,Financial Institutions,Financial Institutions +386339,Transportation,Transportation +386333,Transportation,Transportation +386330,Transportation,Transportation +396970,Environment,Environment +456425,Transportation,Transportation +456425,Energy,Energy +456425,Environment,Environment +427063,Labour,Labour +408234,Transportation,Transportation +396355,Transportation,Transportation +450412,Transportation,Transportation +432983,Transportation,Transportation +461264,Health,Health +448750,Health,Health +421209,Health,Health +393805,Health,Health +381747,Health,Health +528551,Health,Health +515462,Health,Health +512805,Health,Health +500959,Health,Health +490344,Health,Health +476940,Health,Health +469745,Health,Health +410574,Transportation,Transportation +410574,International Trade,International Trade +410573,International Trade,International Trade +410580,International Trade,International Trade +410577,International Trade,International Trade +410576,International Trade,International Trade +410574,Consumer Issues,Consumer Issues +410573,Consumer Issues,Consumer Issues +466257,Consumer Issues,Consumer Issues +410580,Consumer Issues,Consumer Issues +410577,Consumer Issues,Consumer Issues +410576,Consumer Issues,Consumer Issues +424396,Agriculture,Agriculture +461984,Agriculture,Agriculture +424396,Economic Development,Economic Development +385806,Economic Development,Economic Development +461984,Economic Development,Economic Development +431249,Agriculture,Agriculture +431248,Agriculture,Agriculture +383146,Agriculture,Agriculture +382344,Agriculture,Agriculture +431255,Agriculture,Agriculture +431253,Agriculture,Agriculture +382345,Economic Development,Economic Development +434372,Economic Development,Economic Development +385457,Economic Development,Economic Development +383148,Economic Development,Economic Development +513504,Economic Development,Economic Development +462111,Economic Development,Economic Development +426135,Economic Development,Economic Development +404431,Economic Development,Economic Development +404428,Economic Development,Economic Development +404427,Economic Development,Economic Development +404426,Economic Development,Economic Development +404425,Economic Development,Economic Development +401783,Economic Development,Economic Development +401780,Economic Development,Economic Development +401778,Economic Development,Economic Development +401775,Economic Development,Economic Development +401773,Economic Development,Economic Development +401767,Economic Development,Economic Development +401765,Economic Development,Economic Development +401763,Economic Development,Economic Development +394198,Economic Development,Economic Development +394196,Economic Development,Economic Development +392230,Economic Development,Economic Development +381780,Economic Development,Economic Development +524641,Economic Development,Economic Development +514353,Economic Development,Economic Development +391589,Industry,Industry +422579,Industry,Industry +407286,Industry,Industry +407285,Industry,Industry +407282,Industry,Industry +407281,Industry,Industry +403063,Industry,Industry +394546,Industry,Industry +394545,Industry,Industry +391592,Industry,Industry +444399,Climate,Climate +444137,Climate,Climate +392971,Climate,Climate +386167,Climate,Climate +384016,Climate,Climate +381787,Climate,Climate +381786,Climate,Climate +381785,Climate,Climate +436749,Climate,Climate +432738,Climate,Climate +432737,Climate,Climate +431404,Climate,Climate +425231,Climate,Climate +424610,Climate,Climate +422771,Climate,Climate +418483,Climate,Climate +532930,Climate,Climate +527766,Climate,Climate +523429,Climate,Climate +520758,Climate,Climate +516540,Climate,Climate +516083,Climate,Climate +511810,Climate,Climate +506754,Climate,Climate +506636,Climate,Climate +494074,Climate,Climate +488708,Climate,Climate +483385,Climate,Climate +482718,Climate,Climate +482713,Climate,Climate +481212,Climate,Climate +476416,Climate,Climate +474343,Climate,Climate +472428,Climate,Climate +472425,Climate,Climate +471557,Climate,Climate +471556,Climate,Climate +471286,Climate,Climate +465353,Climate,Climate +465351,Climate,Climate +463733,Climate,Climate +463209,Climate,Climate +463139,Climate,Climate +463137,Climate,Climate +463134,Climate,Climate +462916,Climate,Climate +462843,Climate,Climate +462839,Climate,Climate +462836,Climate,Climate +462832,Climate,Climate +462109,Climate,Climate +462106,Climate,Climate +462103,Climate,Climate +461101,Climate,Climate +461008,Climate,Climate +460949,Climate,Climate +460948,Climate,Climate +460871,Climate,Climate +460840,Climate,Climate +460745,Climate,Climate +460745,Energy,Energy +449795,Energy,Energy +444399,Energy,Energy +444137,Energy,Energy +436749,Energy,Energy +432738,Energy,Energy +432737,Energy,Energy +431404,Energy,Energy +425231,Energy,Energy +424610,Energy,Energy +422771,Energy,Energy +418483,Energy,Energy +392971,Energy,Energy +386167,Energy,Energy +384016,Energy,Energy +381787,Energy,Energy +381786,Energy,Energy +381785,Energy,Energy +532930,Energy,Energy +527766,Energy,Energy +523429,Energy,Energy +520758,Energy,Energy +516540,Energy,Energy +516083,Energy,Energy +511810,Energy,Energy +506636,Energy,Energy +494074,Energy,Energy +493944,Energy,Energy +488708,Energy,Energy +483385,Energy,Energy +482897,Energy,Energy +482718,Energy,Energy +482713,Energy,Energy +481212,Energy,Energy +476416,Energy,Energy +474343,Energy,Energy +472428,Energy,Energy +472425,Energy,Energy +471557,Energy,Energy +471556,Energy,Energy +471286,Energy,Energy +465353,Energy,Energy +465351,Energy,Energy +463733,Energy,Energy +463209,Energy,Energy +463139,Energy,Energy +463137,Energy,Energy +463134,Energy,Energy +462916,Energy,Energy +462843,Energy,Energy +462839,Energy,Energy +462836,Energy,Energy +462832,Energy,Energy +462109,Energy,Energy +462106,Energy,Energy +462103,Energy,Energy +461101,Energy,Energy +461008,Energy,Energy +460949,Energy,Energy +460948,Energy,Energy +460871,Energy,Energy +444137,Environment,Environment +436749,Environment,Environment +432738,Environment,Environment +432737,Environment,Environment +431404,Environment,Environment +425231,Environment,Environment +424610,Environment,Environment +422771,Environment,Environment +418483,Environment,Environment +392971,Environment,Environment +386167,Environment,Environment +384016,Environment,Environment +381787,Environment,Environment +381786,Environment,Environment +381785,Environment,Environment +527766,Environment,Environment +523429,Environment,Environment +520758,Environment,Environment +516083,Environment,Environment +511810,Environment,Environment +506754,Environment,Environment +506636,Environment,Environment +494074,Environment,Environment +493944,Environment,Environment +483385,Environment,Environment +482897,Environment,Environment +482718,Environment,Environment +482713,Environment,Environment +481212,Environment,Environment +480834,Environment,Environment +476416,Environment,Environment +474343,Environment,Environment +472428,Environment,Environment +472425,Environment,Environment +471557,Environment,Environment +471556,Environment,Environment +471286,Environment,Environment +465353,Environment,Environment +465351,Environment,Environment +463733,Environment,Environment +463209,Environment,Environment +463139,Environment,Environment +463137,Environment,Environment +463134,Environment,Environment +462916,Environment,Environment +462843,Environment,Environment +462839,Environment,Environment +462836,Environment,Environment +462832,Environment,Environment +462109,Environment,Environment +462106,Environment,Environment +462103,Environment,Environment +461101,Environment,Environment +461008,Environment,Environment +460949,Environment,Environment +460948,Environment,Environment +460871,Environment,Environment +460840,Environment,Environment +460745,Environment,Environment +449795,Environment,Environment +381787,Government Procurement,Government Procurement +381786,Government Procurement,Government Procurement +381785,Government Procurement,Government Procurement +465353,Government Procurement,Government Procurement +465351,Government Procurement,Government Procurement +463733,Government Procurement,Government Procurement +463209,Government Procurement,Government Procurement +463139,Government Procurement,Government Procurement +463137,Government Procurement,Government Procurement +463134,Government Procurement,Government Procurement +462916,Government Procurement,Government Procurement +462843,Government Procurement,Government Procurement +462839,Government Procurement,Government Procurement +462836,Government Procurement,Government Procurement +462832,Government Procurement,Government Procurement +462109,Government Procurement,Government Procurement +462106,Government Procurement,Government Procurement +462103,Government Procurement,Government Procurement +461101,Government Procurement,Government Procurement +461008,Government Procurement,Government Procurement +460949,Government Procurement,Government Procurement +460948,Government Procurement,Government Procurement +460871,Government Procurement,Government Procurement +460840,Government Procurement,Government Procurement +460745,Government Procurement,Government Procurement +449795,Government Procurement,Government Procurement +444137,Government Procurement,Government Procurement +436749,Government Procurement,Government Procurement +432738,Government Procurement,Government Procurement +432737,Government Procurement,Government Procurement +425231,Government Procurement,Government Procurement +422771,Government Procurement,Government Procurement +418483,Government Procurement,Government Procurement +422771,Infrastructure,Infrastructure +418483,Infrastructure,Infrastructure +392971,Infrastructure,Infrastructure +381787,Infrastructure,Infrastructure +381786,Infrastructure,Infrastructure +381785,Infrastructure,Infrastructure +506754,Infrastructure,Infrastructure +506636,Infrastructure,Infrastructure +474343,Infrastructure,Infrastructure +471557,Infrastructure,Infrastructure +471556,Infrastructure,Infrastructure +471286,Infrastructure,Infrastructure +465353,Infrastructure,Infrastructure +465351,Infrastructure,Infrastructure +463733,Infrastructure,Infrastructure +463209,Infrastructure,Infrastructure +463139,Infrastructure,Infrastructure +463137,Infrastructure,Infrastructure +463134,Infrastructure,Infrastructure +462916,Infrastructure,Infrastructure +462843,Infrastructure,Infrastructure +462839,Infrastructure,Infrastructure +462836,Infrastructure,Infrastructure +462832,Infrastructure,Infrastructure +462109,Infrastructure,Infrastructure +462106,Infrastructure,Infrastructure +462103,Infrastructure,Infrastructure +461101,Infrastructure,Infrastructure +461008,Infrastructure,Infrastructure +460949,Infrastructure,Infrastructure +460948,Infrastructure,Infrastructure +460871,Infrastructure,Infrastructure +460840,Infrastructure,Infrastructure +460745,Infrastructure,Infrastructure +449795,Infrastructure,Infrastructure +444137,Infrastructure,Infrastructure +436749,Infrastructure,Infrastructure +432738,Infrastructure,Infrastructure +432737,Infrastructure,Infrastructure +444137,International Trade,International Trade +436749,International Trade,International Trade +432738,International Trade,International Trade +432737,International Trade,International Trade +425231,International Trade,International Trade +422771,International Trade,International Trade +418483,International Trade,International Trade +381787,International Trade,International Trade +381786,International Trade,International Trade +381785,International Trade,International Trade +465353,International Trade,International Trade +463733,International Trade,International Trade +463209,International Trade,International Trade +463139,International Trade,International Trade +463137,International Trade,International Trade +463134,International Trade,International Trade +462916,International Trade,International Trade +462843,International Trade,International Trade +462839,International Trade,International Trade +462836,International Trade,International Trade +462832,International Trade,International Trade +462109,International Trade,International Trade +462106,International Trade,International Trade +462103,International Trade,International Trade +460949,International Trade,International Trade +460745,Taxation and Finance,Taxation and Finance +444137,Taxation and Finance,Taxation and Finance +436749,Taxation and Finance,Taxation and Finance +432738,Taxation and Finance,Taxation and Finance +432737,Taxation and Finance,Taxation and Finance +425231,Taxation and Finance,Taxation and Finance +422771,Taxation and Finance,Taxation and Finance +418483,Taxation and Finance,Taxation and Finance +386167,Taxation and Finance,Taxation and Finance +381787,Taxation and Finance,Taxation and Finance +381786,Taxation and Finance,Taxation and Finance +381785,Taxation and Finance,Taxation and Finance +532930,Taxation and Finance,Taxation and Finance +471286,Taxation and Finance,Taxation and Finance +465353,Taxation and Finance,Taxation and Finance +463733,Taxation and Finance,Taxation and Finance +463209,Taxation and Finance,Taxation and Finance +463139,Taxation and Finance,Taxation and Finance +463137,Taxation and Finance,Taxation and Finance +463134,Taxation and Finance,Taxation and Finance +462916,Taxation and Finance,Taxation and Finance +462843,Taxation and Finance,Taxation and Finance +462839,Taxation and Finance,Taxation and Finance +462836,Taxation and Finance,Taxation and Finance +462832,Taxation and Finance,Taxation and Finance +462109,Taxation and Finance,Taxation and Finance +462106,Taxation and Finance,Taxation and Finance +462103,Taxation and Finance,Taxation and Finance +460949,Taxation and Finance,Taxation and Finance +382012,Government Procurement,Government Procurement +382011,Government Procurement,Government Procurement +383742,Government Procurement,Government Procurement +383740,Government Procurement,Government Procurement +383746,Government Procurement,Government Procurement +383743,Government Procurement,Government Procurement +480279,Defence,Defence +465059,Defence,Defence +439251,Defence,Defence +439247,Defence,Defence +439245,Defence,Defence +422424,Defence,Defence +395358,Defence,Defence +395357,Defence,Defence +395356,Defence,Defence +395355,Defence,Defence +395354,Defence,Defence +385636,Defence,Defence +544330,Defence,Defence +544329,Defence,Defence +544328,Defence,Defence +544327,Defence,Defence +532379,Defence,Defence +532379,Government Procurement,Government Procurement +520198,Government Procurement,Government Procurement +465059,Government Procurement,Government Procurement +439251,Government Procurement,Government Procurement +439247,Government Procurement,Government Procurement +439245,Government Procurement,Government Procurement +395358,Government Procurement,Government Procurement +395357,Government Procurement,Government Procurement +395356,Government Procurement,Government Procurement +395355,Government Procurement,Government Procurement +395354,Government Procurement,Government Procurement +544322,Industry,Industry +544321,Industry,Industry +385636,Industry,Industry +532379,Industry,Industry +529630,Industry,Industry +520198,Industry,Industry +511510,Industry,Industry +511507,Industry,Industry +511506,Industry,Industry +505854,Industry,Industry +485304,Industry,Industry +485294,Industry,Industry +485292,Industry,Industry +465059,Industry,Industry +511506,Research and Development,Research and Development (R&D) +505854,Research and Development,Research and Development (R&D) +511510,Research and Development,Research and Development (R&D) +478327,Economic Development,Economic Development +465059,Economic Development,Economic Development +385636,Economic Development,Economic Development +439251,Economic Development,Economic Development +439247,Economic Development,Economic Development +439245,Economic Development,Economic Development +422459,Economic Development,Economic Development +422424,Economic Development,Economic Development +395358,Economic Development,Economic Development +395357,Economic Development,Economic Development +395356,Economic Development,Economic Development +395355,Economic Development,Economic Development +395354,Economic Development,Economic Development +544330,Economic Development,Economic Development +544329,Economic Development,Economic Development +544328,Economic Development,Economic Development +544327,Economic Development,Economic Development +544322,Economic Development,Economic Development +544321,Economic Development,Economic Development +540226,Economic Development,Economic Development +532379,Economic Development,Economic Development +529630,Economic Development,Economic Development +523143,Economic Development,Economic Development +523141,Economic Development,Economic Development +520200,Economic Development,Economic Development +520198,Economic Development,Economic Development +520195,Economic Development,Economic Development +520193,Economic Development,Economic Development +520190,Economic Development,Economic Development +518507,Economic Development,Economic Development +511510,Economic Development,Economic Development +511507,Economic Development,Economic Development +511506,Economic Development,Economic Development +505854,Economic Development,Economic Development +499733,Economic Development,Economic Development +439247,Employment and Training,Employment and Training +439245,Employment and Training,Employment and Training +395358,Employment and Training,Employment and Training +395357,Employment and Training,Employment and Training +395356,Employment and Training,Employment and Training +395355,Employment and Training,Employment and Training +395354,Employment and Training,Employment and Training +385636,Employment and Training,Employment and Training +523143,Employment and Training,Employment and Training +523141,Employment and Training,Employment and Training +520200,Employment and Training,Employment and Training +520198,Employment and Training,Employment and Training +520195,Employment and Training,Employment and Training +520193,Employment and Training,Employment and Training +520190,Employment and Training,Employment and Training +518507,Employment and Training,Employment and Training +465059,Employment and Training,Employment and Training +499733,International Trade,International Trade +480279,International Trade,International Trade +422424,International Trade,International Trade +544330,International Trade,International Trade +544329,International Trade,International Trade +544328,International Trade,International Trade +544327,International Trade,International Trade +544322,International Trade,International Trade +544321,International Trade,International Trade +540226,International Trade,International Trade +529630,International Trade,International Trade +520200,International Trade,International Trade +520198,International Trade,International Trade +520195,International Trade,International Trade +520193,International Trade,International Trade +520190,International Trade,International Trade +425653,International Trade,International Trade +407338,International Trade,International Trade +397247,International Trade,International Trade +381991,International Trade,International Trade +466669,International Trade,International Trade +451628,International Trade,International Trade +451627,International Trade,International Trade +451622,International Trade,International Trade +451620,International Trade,International Trade +451619,International Trade,International Trade +448738,International Trade,International Trade +441829,International Trade,International Trade +441826,International Trade,International Trade +441824,International Trade,International Trade +441821,International Trade,International Trade +436838,International Trade,International Trade +436837,International Trade,International Trade +436836,International Trade,International Trade +436829,International Trade,International Trade +433249,International Trade,International Trade +433248,International Trade,International Trade +433247,International Trade,International Trade +432875,International Trade,International Trade +432047,International Trade,International Trade +432066,Budget,Budget +428398,Budget,Budget +387739,Budget,Budget +387735,Budget,Budget +387730,Budget,Budget +385233,Budget,Budget +383183,Budget,Budget +383182,Budget,Budget +383160,Budget,Budget +432066,Housing,Housing +428398,Housing,Housing +396248,Housing,Housing +396231,Housing,Housing +393712,Housing,Housing +392574,Housing,Housing +392547,Housing,Housing +389719,Housing,Housing +389713,Housing,Housing +387742,Housing,Housing +387739,Housing,Housing +387735,Housing,Housing +387730,Housing,Housing +385233,Housing,Housing +383183,Housing,Housing +383182,Housing,Housing +381964,Economic Development,Economic Development +381963,Economic Development,Economic Development +381963,Environment,Environment +381964,Fisheries,Fisheries +384216,Budget,Budget +384216,Defence,Defence +384216,Economic Development,Economic Development +384216,Financial Institutions,Financial Institutions +384216,Government Procurement,Government Procurement +384216,International Trade,International Trade +384216,Research and Development,Research and Development +384216,Security,Security +397748,Industry,Industry +384428,Defence,Defence +384430,Economic Development,Economic Development +384427,Government Procurement,Government Procurement +384430,Industry,Industry +392947,Regional Development,Regional Development +392947,Transportation,Transportation +395983,Health,Health +405135,Justice and Law Enforcement,Justice and Law Enforcement +385105,Research and Development,Research and Development +509761,Labour,Labour +541171,Privacy and Access to Information,Privacy and Access to Information +389399,Economic Development,Economic Development +389404,Housing,Housing +389404,Municipalities,Municipalities +389404,Taxation and Finance,Taxation and Finance +389404,Tourism,Tourism +416953,Environment,Environment +416953,Mining,Mining +383406,Environment,Environment +383406,Fisheries,Fisheries +383406,Mining,Mining +380433,Energy,Energy +380436,Economic Development,Economic Development +382714,Budget,Budget +387395,Fisheries,Fisheries +514990,Economic Development,Economic Development +514991,Tourism,Tourism +380566,Fisheries,Fisheries +380566,Regional Development,Regional Development +380566,Economic Development,Economic Development +440362,Budget,Budget +435990,Climate,Climate +400729,Economic Development,Economic Development +396666,Employment and Training,Employment and Training +396681,Forestry,Forestry +381815,Economic Development,Développement économique +381815,Consumer Issues,Questions touchant les consommateurs +381815,Transportation,Transports +381774,Employment and Training,Employment and Training +380574,International Trade,International Trade +458452,Agriculture,Agriculture +449659,Consumer Issues,Consumer Issues +509909,Economic Development,Economic Development +419635,Health,Health +528429,Industry,Industry +462020,Internal Trade,Internal Trade +487001,International Relations,International Relations +528415,International Trade,International Trade +384712,Health,Health +541359,Environment,Environnement +380528,Environment,Environment +386085,Environment,Environment +381995,Transportation,Transportation +417191,International Relations,International Relations +402791,Energy,Energy +402791,Environment,Environment +417188,International Trade,International Trade +390558,Regional Development,Regional Development +390558,Industry,Industry +390558,Economic Development,Economic Development +390558,Government Procurement,Government Procurement +384078,Economic Development,Economic Development +384077,Environment,Environment +384065,Industry,Industry +384067,Small Business,Small Business +460038,Economic Development,Economic Development +380672,Regional Development,Regional Development +437632,Transportation,Transportation +458331,Health,Health +441798,Education,Education +381704,Employment and Training,Employment and Training +381704,Economic Development,Economic Development +381704,Consumer Issues,Consumer Issues +381704,Transportation,Transportation +396781,Economic Development,Economic Development +397677,Climate,Climate +396781,Forestry,Forestry +385227,Agriculture,Agriculture +385227,Climate,Climate +385237,Economic Development,Economic Development +385232,Environment,Environment +387739,Climate,Climate +383183,Economic Development,Economic Development +383183,Energy,Energy +392547,Environment,Environment +408484,Consumer Issues,Consumer Issues +389670,Economic Development,Economic Development +467972,Employment and Training,Employment and Training +444733,Financial Institutions,Financial Institutions +388936,Government Procurement,Government Procurement +408307,Intellectual Property,Intellectual Property +462053,International Relations,International Relations +400149,International Trade,International Trade +464035,Small Business,Small Business +414804,Taxation and Finance,Taxation and Finance +457017,Labour,Labour +472741,Tourism,Tourism +435140,Transportation,Transportation +380653,Agriculture,Agriculture +380654,Transportation,Transportation +382482,Industry,Industry +380665,Economic Development,Economic Development +381197,Industry,Industry +381197,Transportation,Transportation +400230,Agriculture,Agriculture +400235,Infrastructure,Infrastructure +387776,International Development,International Development +380788,International Development,International Development +387935,Government Procurement,Marchés publics +488489,Health,Health +384004,Education,Éducation +384002,Immigration,Immigration +382467,Transportation,Transports +383620,International Trade,Commerce international +392539,Economic Development,Economic Development +380884,Industry,Industry +380884,Economic Development,Economic Development +397318,Economic Development,Développement économique +382670,Infrastructure,Infrastructure +437147,Immigration,Immigration +437044,Economic Development,Economic Development +404337,Economic Development,Economic Development +409807,Environment,Environment +404336,Mining,Mining +404336,Transportation,Transportation +386478,Research and Development,Research and Development +381059,Budget,Budget +381074,International Trade,International Trade +381075,Security,Security +382863,Housing,Housing +470277,Consumer Issues,Consumer Issues +472741,Employment and Training,Employment and Training +472741,Industry,Industry +381262,Agriculture,Agriculture +381269,International Trade,International Trade +381292,Defence,Defence +381292,Economic Development,Economic Development +381292,Industry,Industry +381293,Defence,Defence +381293,Economic Development,Economic Development +381293,Industry,Industry +381296,Security,Security +541744,Health,Health +454517,Regional Development,Regional Development +382857,Economic Development,Développement économique +382777,Industry,Industrie +381316,Government Procurement,Government Procurement +381319,Government Procurement,Government Procurement +381320,Government Procurement,Government Procurement +381352,Economic Development,Economic Development +452117,Infrastructure,Infrastructure +402476,Health,Health +402476,Industry,Industry +383081,Housing,Housing +466178,Government Procurement,Government Procurement +396647,Health,Health +381484,Budget,Budget +381494,Health,Health +381494,International Development,International Development +381494,Regional Development,Regional Development +381494,Infrastructure,Infrastructure +381513,Health,Health +381513,Infrastructure,Infrastructure +381513,International Development,International Development +381513,Regional Development,Regional Development +381514,Health,Health +381514,Infrastructure,Infrastructure +381514,International Development,International Development +381514,Regional Development,Regional Development +381515,Health,Health +381515,Infrastructure,Infrastructure +381515,International Development,International Development +381515,Regional Development,Regional Development +381517,Health,Health +381517,Infrastructure,Infrastructure +381517,International Development,International Development +381517,Regional Development,Regional Development +381523,Health,Health +381523,Infrastructure,Infrastructure +381523,International Development,International Development +381523,Regional Development,Regional Development +381529,Health,Health +381529,Infrastructure,Infrastructure +381529,International Development,International Development +381529,Regional Development,Regional Development +381531,Health,Health +381531,Infrastructure,Infrastructure +381531,International Development,International Development +381531,Regional Development,Regional Development +381533,Health,Health +381533,Infrastructure,Infrastructure +381533,International Development,International Development +381533,Regional Development,Regional Development +400893,Infrastructure,Infrastructure +381263,Consumer Issues,Consumer Issues +386552,Transportation,Transportation +381634,Industry,Industry +510905,Financial Institutions,Financial Institutions +381688,Constitutional Issues,Constitutional Issues +386344,Transportation,Transportation +381708,Climate,Climate +381708,Environment,Environment +381737,Transportation,Transportation +458078,Transportation,Transportation +468690,Energy,Energy +468690,Environment,Environment +383902,Industry,Industry +427064,Labour,Labour +417691,Transportation,Transportation +381777,Economic Development,Economic Development +381777,Forestry,Forestry +381777,Regional Development,Regional Development +467112,Health,Health +429773,Transportation,Transportation +410575,International Trade,International Trade +410575,Consumer Issues,Consumer Issues +424400,Agriculture,Agriculture +424398,Economic Development,Economic Development +387067,Transportation,Transportation +431251,Agriculture,Agriculture +383147,Economic Development,Economic Development +382875,Tourism,Tourisme +381999,Fisheries,Fisheries +381999,Agriculture,Agriculture +381999,Justice and Law Enforcement,Justice and Law Enforcement +381999,Environment,Environment +381999,Industry,Industry +381876,Industry,Industry +514352,Economic Development,Economic Development +391591,Industry,Industry +449795,Climate,Climate +460840,Energy,Energy +444399,Environment,Environment +386167,Government Procurement,Government Procurement +425231,Infrastructure,Infrastructure +460948,International Trade,International Trade +460948,Taxation and Finance,Taxation and Finance +383451,Government Procurement,Government Procurement +383748,Government Procurement,Government Procurement +529630,Defence,Defence +385636,Government Procurement,Government Procurement +422459,Industry,Industry +511507,Research and Development,Research and Development (R&D) +478331,Economic Development,Economic Development +439251,Employment and Training,Employment and Training +518507,International Trade,International Trade +425654,International Trade,International Trade +387742,Budget,Budget +383160,Housing,Housing +382022,Economic Development,Economic Development +382022,Environment,Environment +382022,Fisheries,Fisheries +382022,Industry,Industry +382022,Regional Development,Regional Development +382022,Small Business,Small Business +382022,Tourism,Tourism +382350,Budget,Budget +419588,Energy,Energy +382351,Environment,Environment +419610,Industry,Industry +419597,Infrastructure,Infrastructure +396364,Research and Development,Research and Development +385078,Climate,Climate +471783,Health,Health +468568,Consumer Issues,Consumer Issues +429352,Employment and Training,Employment and Training +429346,Environment,Environment +409508,Financial Institutions,Financial Institutions +450166,Health,Health +409508,Industry,Industry +468568,Internal Trade,Internal Trade +468206,International Trade,International Trade +381963,Fisheries,Fisheries +381964,Industry,Industry +381963,Industry,Industry +381964,Regional Development,Regional Development +381963,Regional Development,Regional Development +381964,Small Business,Small Business +381963,Small Business,Small Business +381964,Tourism,Tourism +381963,Tourism,Tourism +382347,Budget,Budget +421960,Budget,Budget +419610,Budget,Budget +419597,Budget,Budget +419588,Budget,Budget +396364,Budget,Budget +383632,Budget,Budget +383629,Budget,Budget +382351,Budget,Budget +396364,Energy,Energy +383632,Energy,Energy +383629,Energy,Energy +382351,Energy,Energy +382350,Energy,Energy +382347,Energy,Energy +421960,Energy,Energy +419610,Energy,Energy +419597,Energy,Energy +382350,Environment,Environment +382347,Environment,Environment +421960,Environment,Environment +419610,Environment,Environment +419597,Environment,Environment +419588,Environment,Environment +396364,Environment,Environment +383632,Environment,Environment +383629,Environment,Environment +419597,Industry,Industry +419588,Industry,Industry +396364,Industry,Industry +383632,Industry,Industry +383629,Industry,Industry +382351,Industry,Industry +382350,Industry,Industry +382347,Industry,Industry +421960,Industry,Industry +419588,Infrastructure,Infrastructure +396364,Infrastructure,Infrastructure +421960,Infrastructure,Infrastructure +419610,Infrastructure,Infrastructure +383632,Research and Development,Research and Development +383629,Research and Development,Research and Development +421960,Research and Development,Research and Development +419610,Research and Development,Research and Development +419597,Research and Development,Research and Development +419588,Research and Development,Research and Development +385076,Climate,Climate +385080,Health,Health +468563,Consumer Issues,Consumer Issues +468206,Consumer Issues,Consumer Issues +450168,Consumer Issues,Consumer Issues +450167,Consumer Issues,Consumer Issues +450166,Consumer Issues,Consumer Issues +430306,Consumer Issues,Consumer Issues +430305,Consumer Issues,Consumer Issues +413303,Consumer Issues,Consumer Issues +409519,Consumer Issues,Consumer Issues +409518,Consumer Issues,Consumer Issues +409517,Consumer Issues,Consumer Issues +409516,Consumer Issues,Consumer Issues +409515,Consumer Issues,Consumer Issues +409514,Consumer Issues,Consumer Issues +409511,Consumer Issues,Consumer Issues +409508,Consumer Issues,Consumer Issues +409501,Consumer Issues,Consumer Issues +395362,Consumer Issues,Consumer Issues +395361,Consumer Issues,Consumer Issues +395360,Consumer Issues,Consumer Issues +395359,Consumer Issues,Consumer Issues +520199,Consumer Issues,Consumer Issues +505855,Consumer Issues,Consumer Issues +520199,Employment and Training,Employment and Training +518345,Employment and Training,Employment and Training +520199,Environment,Environment +505855,Environment,Environment +468568,Environment,Environment +468563,Environment,Environment +468206,Environment,Environment +450167,Environment,Environment +450166,Environment,Environment +429353,Environment,Environment +429352,Environment,Environment +429350,Environment,Environment +429348,Environment,Environment +409501,Financial Institutions,Financial Institutions +382644,Financial Institutions,Financial Institutions +413303,Financial Institutions,Financial Institutions +409519,Financial Institutions,Financial Institutions +409518,Financial Institutions,Financial Institutions +409517,Financial Institutions,Financial Institutions +409516,Financial Institutions,Financial Institutions +409515,Financial Institutions,Financial Institutions +409514,Financial Institutions,Financial Institutions +409511,Financial Institutions,Financial Institutions +429353,Health,Health +520199,Health,Health +468568,Health,Health +468206,Health,Health +450168,Health,Health +409501,Industry,Industry +505855,Industry,Industry +395362,Industry,Industry +395361,Industry,Industry +395360,Industry,Industry +395359,Industry,Industry +450168,Industry,Industry +450167,Industry,Industry +450166,Industry,Industry +430306,Industry,Industry +430305,Industry,Industry +429353,Industry,Industry +429352,Industry,Industry +429350,Industry,Industry +413303,Industry,Industry +409519,Industry,Industry +409518,Industry,Industry +409517,Industry,Industry +409516,Industry,Industry +409515,Industry,Industry +409514,Industry,Industry +409511,Industry,Industry +520199,Regional Development,Regional Development +395360,Small Business,Small Business +395359,Small Business,Small Business +413303,Small Business,Small Business +409519,Small Business,Small Business +409518,Small Business,Small Business +409517,Small Business,Small Business +409516,Small Business,Small Business +409515,Small Business,Small Business +409514,Small Business,Small Business +409511,Small Business,Small Business +409508,Small Business,Small Business +409501,Small Business,Small Business +395362,Small Business,Small Business +409508,Taxation and Finance,Taxation and Finance +409501,Taxation and Finance,Taxation and Finance +430306,Taxation and Finance,Taxation and Finance +430305,Taxation and Finance,Taxation and Finance +409519,Taxation and Finance,Taxation and Finance +409518,Taxation and Finance,Taxation and Finance +409517,Taxation and Finance,Taxation and Finance +409516,Taxation and Finance,Taxation and Finance +409515,Taxation and Finance,Taxation and Finance +409514,Taxation and Finance,Taxation and Finance +468563,Transportation,Transportation +468206,Transportation,Transportation +520199,Transportation,Transportation +383836,Climate,Climate +383836,Energy,Energy +396566,Energy,Energy +391771,Energy,Energy +392336,Environment,Environment +384993,Environment,Environment +403250,Environment,Environment +403249,Environment,Environment +400186,Environment,Environment +396566,Environment,Environment +406786,Infrastructure,Infrastructure +381810,Infrastructure,Infrastructure +406878,Infrastructure,Infrastructure +462265,Regional Development,Regional Development +447002,Regional Development,Regional Development +447000,Regional Development,Regional Development +446999,Regional Development,Regional Development +444124,Regional Development,Regional Development +444121,Regional Development,Regional Development +444119,Regional Development,Regional Development +441110,Regional Development,Regional Development +441107,Regional Development,Regional Development +441103,Regional Development,Regional Development +439770,Regional Development,Regional Development +439768,Regional Development,Regional Development +436356,Regional Development,Regional Development +436355,Regional Development,Regional Development +436354,Regional Development,Regional Development +436353,Regional Development,Regional Development +436352,Regional Development,Regional Development +432800,Regional Development,Regional Development +432799,Regional Development,Regional Development +432798,Regional Development,Regional Development +432797,Regional Development,Regional Development +422766,Regional Development,Regional Development +420994,Regional Development,Regional Development +420993,Regional Development,Regional Development +420992,Regional Development,Regional Development +420647,Regional Development,Regional Development +420646,Regional Development,Regional Development +410834,Regional Development,Regional Development +405152,Regional Development,Regional Development +401384,Regional Development,Regional Development +401383,Regional Development,Regional Development +393256,Regional Development,Regional Development +393255,Regional Development,Regional Development +393254,Regional Development,Regional Development +383363,Regional Development,Regional Development +544315,Regional Development,Regional Development +497970,Regional Development,Regional Development +464207,Regional Development,Regional Development +391920,Agriculture,Agriculture +401335,International Trade,International Trade +391920,International Trade,International Trade +383063,International Trade,International Trade +383017,Fisheries,Fisheries +383016,Fisheries,Fisheries +383017,Regional Development,Regional Development +383016,Regional Development,Regional Development +408023,Health,Health +404017,Health,Health +382841,Transportation,Transports +382337,Transportation,Transports +386036,Economic Development,Economic Development +446063,Health,Health +424551,Health,Health +410793,Health,Health +410792,Health,Health +394694,Health,Health +394692,Health,Health +394691,Health,Health +386037,Health,Health +384950,Budget,Budget +384505,Economic Development,Economic Development +383104,Economic Development,Economic Development +408269,Economic Development,Economic Development +392256,Economic Development,Economic Development +392255,Economic Development,Economic Development +389941,Economic Development,Economic Development +389691,Economic Development,Economic Development +389683,Economic Development,Economic Development +384950,Economic Development,Economic Development +393608,Regional Development,Regional Development +393547,Regional Development,Regional Development +389941,Regional Development,Regional Development +389683,Regional Development,Regional Development +385267,Regional Development,Regional Development +385266,Regional Development,Regional Development +385264,Regional Development,Regional Development +384950,Regional Development,Regional Development +384932,Regional Development,Regional Development +383106,Regional Development,Regional Development +397735,Economic Development,Economic Development +397734,Economic Development,Economic Development +460869,Economic Development,Economic Development +453050,Economic Development,Economic Development +453021,Economic Development,Economic Development +495851,Internal Trade,Internal Trade +410588,Energy,Energy +382299,Energy,Energy +382298,Energy,Energy +384036,Energy,Energy +384035,Energy,Energy +383080,Energy,Energy +383078,Energy,Energy +383077,Energy,Energy +383076,Energy,Energy +383075,Energy,Energy +383074,Energy,Energy +382832,Energy,Energy +382831,Energy,Energy +382829,Energy,Energy +382827,Energy,Energy +382826,Energy,Energy +382304,Energy,Energy +382302,Energy,Energy +382301,Energy,Energy +384035,Environment,Environment +424399,Justice and Law Enforcement,Justice and Law Enforcement +424396,Justice and Law Enforcement,Justice and Law Enforcement +382420,Labour,Labour +467440,Housing,Housing +465302,Housing,Housing +391276,Housing,Housing +391275,Housing,Housing +391259,Housing,Housing +391251,Housing,Housing +391246,Housing,Housing +391245,Housing,Housing +391243,Housing,Housing +391241,Housing,Housing +387897,Housing,Housing +387731,Housing,Housing +387729,Housing,Housing +387716,Housing,Housing +387713,Housing,Housing +385686,Housing,Housing +385682,Housing,Housing +385674,Housing,Housing +385667,Housing,Housing +384034,Housing,Housing +462994,Housing,Housing +462914,Housing,Housing +462911,Housing,Housing +462910,Housing,Housing +461906,Housing,Housing +461788,Housing,Housing +455635,Housing,Housing +455624,Housing,Housing +455622,Housing,Housing +452819,Housing,Housing +452812,Housing,Housing +452809,Housing,Housing +452786,Housing,Housing +452779,Housing,Housing +452776,Housing,Housing +450545,Housing,Housing +450544,Housing,Housing +450543,Housing,Housing +450542,Housing,Housing +450540,Housing,Housing +450539,Housing,Housing +450534,Housing,Housing +450533,Housing,Housing +448786,Housing,Housing +448785,Housing,Housing +448784,Housing,Housing +444678,Housing,Housing +444677,Housing,Housing +444456,Housing,Housing +444149,Housing,Housing +444059,Housing,Housing +442869,Housing,Housing +441770,Housing,Housing +441767,Housing,Housing +440311,Housing,Housing +440310,Housing,Housing +440194,Housing,Housing +439512,Housing,Housing +436010,Housing,Housing +436006,Housing,Housing +436003,Housing,Housing +435998,Housing,Housing +435994,Housing,Housing +434008,Housing,Housing +434007,Housing,Housing +434006,Housing,Housing +432409,Housing,Housing +432408,Housing,Housing +432407,Housing,Housing +431139,Housing,Housing +430033,Housing,Housing +429915,Housing,Housing +429914,Housing,Housing +429913,Housing,Housing +428799,Housing,Housing +428788,Housing,Housing +428783,Housing,Housing +428782,Housing,Housing +428781,Housing,Housing +426957,Housing,Housing +426956,Housing,Housing +426955,Housing,Housing +426954,Housing,Housing +422267,Housing,Housing +422259,Housing,Housing +418810,Housing,Housing +418809,Housing,Housing +418289,Housing,Housing +418288,Housing,Housing +418287,Housing,Housing +418286,Housing,Housing +418285,Housing,Housing +418283,Housing,Housing +416641,Housing,Housing +416640,Housing,Housing +416637,Housing,Housing +416615,Housing,Housing +416610,Housing,Housing +416609,Housing,Housing +412589,Housing,Housing +412585,Housing,Housing +412584,Housing,Housing +412580,Housing,Housing +412577,Housing,Housing +412571,Housing,Housing +412565,Housing,Housing +408557,Housing,Housing +408551,Housing,Housing +407126,Housing,Housing +406811,Housing,Housing +406807,Housing,Housing +406805,Housing,Housing +406804,Housing,Housing +405662,Housing,Housing +405659,Housing,Housing +403219,Housing,Housing +401523,Housing,Housing +400480,Housing,Housing +399508,Housing,Housing +396269,Housing,Housing +394125,Housing,Housing +394124,Housing,Housing +391290,Housing,Housing +391277,Housing,Housing +540309,Housing,Housing +540027,Housing,Housing +540025,Housing,Housing +540024,Housing,Housing +540021,Housing,Housing +536202,Housing,Housing +536201,Housing,Housing +536200,Housing,Housing +536080,Housing,Housing +536070,Housing,Housing +536069,Housing,Housing +536066,Housing,Housing +536065,Housing,Housing +536064,Housing,Housing +536057,Housing,Housing +533559,Housing,Housing +532194,Housing,Housing +529376,Housing,Housing +526970,Housing,Housing +521783,Housing,Housing +521656,Housing,Housing +521655,Housing,Housing +521651,Housing,Housing +520938,Housing,Housing +519647,Housing,Housing +519645,Housing,Housing +519642,Housing,Housing +517516,Housing,Housing +517259,Housing,Housing +517254,Housing,Housing +517244,Housing,Housing +517243,Housing,Housing +517229,Housing,Housing +517218,Housing,Housing +517212,Housing,Housing +516109,Housing,Housing +516108,Housing,Housing +515203,Housing,Housing +515202,Housing,Housing +511735,Housing,Housing +509416,Housing,Housing +508619,Housing,Housing +507926,Housing,Housing +506806,Housing,Housing +506805,Housing,Housing +506480,Housing,Housing +505356,Housing,Housing +505313,Housing,Housing +505311,Housing,Housing +505310,Housing,Housing +505196,Housing,Housing +503313,Housing,Housing +500911,Housing,Housing +500910,Housing,Housing +500856,Housing,Housing +500189,Housing,Housing +500188,Housing,Housing +497705,Housing,Housing +497704,Housing,Housing +497703,Housing,Housing +497701,Housing,Housing +497700,Housing,Housing +497479,Housing,Housing +497252,Housing,Housing +497250,Housing,Housing +492968,Housing,Housing +492967,Housing,Housing +492757,Housing,Housing +492756,Housing,Housing +490417,Housing,Housing +490415,Housing,Housing +490243,Housing,Housing +490239,Housing,Housing +490233,Housing,Housing +490227,Housing,Housing +487433,Housing,Housing +487431,Housing,Housing +486125,Housing,Housing +486124,Housing,Housing +485923,Housing,Housing +485921,Housing,Housing +485919,Housing,Housing +485915,Housing,Housing +485711,Housing,Housing +485710,Housing,Housing +485709,Housing,Housing +485703,Housing,Housing +483640,Housing,Housing +483242,Housing,Housing +483241,Housing,Housing +483237,Housing,Housing +482819,Housing,Housing +482818,Housing,Housing +482817,Housing,Housing +482773,Housing,Housing +481530,Housing,Housing +481417,Housing,Housing +480792,Housing,Housing +480408,Housing,Housing +480377,Housing,Housing +480376,Housing,Housing +479034,Housing,Housing +478487,Housing,Housing +478412,Housing,Housing +476337,Housing,Housing +476333,Housing,Housing +476149,Housing,Housing +474823,Housing,Housing +474822,Housing,Housing +474001,Housing,Housing +470330,Housing,Housing +470262,Housing,Housing +470260,Housing,Housing +470111,Housing,Housing +470106,Housing,Housing +470003,Housing,Housing +469996,Housing,Housing +469064,Housing,Housing +469059,Housing,Housing +469058,Housing,Housing +467495,Housing,Housing +467447,Housing,Housing +384319,Energy,Energy +397189,Environment,Environment +393435,Environment,Environment +393435,Infrastructure,Infrastructure +451622,Consumer Issues,Consumer Issues +441824,Consumer Issues,Consumer Issues +509381,Consumer Issues,Consumer Issues +381977,Consumer Issues,Consumer Issues +381976,Consumer Issues,Consumer Issues +410586,Consumer Issues,Consumer Issues +410584,Consumer Issues,Consumer Issues +397346,Consumer Issues,Consumer Issues +389491,Consumer Issues,Consumer Issues +389488,Consumer Issues,Consumer Issues +389485,Consumer Issues,Consumer Issues +410584,International Trade,International Trade +389485,International Trade,International Trade +387672,Labour,Labour +387671,Labour,Labour +404865,Budget,Budget +395574,Budget,Budget +418975,Budget,Budget +413847,Economic Development,Economic Development +395574,Economic Development,Economic Development +413847,Energy,Energy +404865,Environment,Environment +395574,Environment,Environment +404865,Industry,Industry +395574,Industry,Industry +395574,International Trade,International Trade +418975,International Trade,International Trade +509381,Agriculture,Agriculture +480523,Agriculture,Agriculture +381991,Agriculture,Agriculture +466669,Agriculture,Agriculture +451628,Agriculture,Agriculture +451627,Agriculture,Agriculture +451622,Agriculture,Agriculture +451620,Agriculture,Agriculture +451619,Agriculture,Agriculture +448738,Agriculture,Agriculture +441829,Agriculture,Agriculture +441824,Agriculture,Agriculture +436838,Agriculture,Agriculture +436836,Agriculture,Agriculture +436829,Agriculture,Agriculture +433249,Agriculture,Agriculture +433248,Agriculture,Agriculture +433247,Agriculture,Agriculture +432875,Agriculture,Agriculture +425654,Agriculture,Agriculture +425653,Agriculture,Agriculture +383850,Health,Health +383839,Health,Health +383904,Health,Health +383903,Health,Health +383901,Health,Health +383850,Consumer Issues,Consumer Issues +383839,Consumer Issues,Consumer Issues +383904,Consumer Issues,Consumer Issues +383903,Consumer Issues,Consumer Issues +383901,Consumer Issues,Consumer Issues +383900,Consumer Issues,Consumer Issues +383874,Justice and Law Enforcement,Justice and Law Enforcement +383850,Justice and Law Enforcement,Justice and Law Enforcement +383904,Justice and Law Enforcement,Justice and Law Enforcement +383901,Justice and Law Enforcement,Justice and Law Enforcement +490788,Health,Health +490786,Health,Health +481629,Health,Health +481628,Health,Health +468689,Health,Health +468688,Health,Health +461775,Health,Health +455828,Health,Health +447918,Health,Health +410085,Health,Health +410084,Health,Health +410083,Health,Health +416592,Infrastructure,Infrastructure +389800,Agriculture,Agriculture +389799,Agriculture,Agriculture +461663,Agriculture,Agriculture +440651,Agriculture,Agriculture +440649,Agriculture,Agriculture +440648,Agriculture,Agriculture +436559,Agriculture,Agriculture +424906,Agriculture,Agriculture +424904,Agriculture,Agriculture +424901,Agriculture,Agriculture +424885,Agriculture,Agriculture +424884,Agriculture,Agriculture +424883,Agriculture,Agriculture +389803,Agriculture,Agriculture +389802,Agriculture,Agriculture +424883,Climate,Climate +411921,Climate,Climate +395768,Climate,Climate +440647,Climate,Climate +424901,Climate,Climate +424884,Environment,Environment +411921,Environment,Environment +440651,Environment,Environment +440650,Environment,Environment +440649,Environment,Environment +440647,Environment,Environment +424906,Environment,Environment +424901,Environment,Environment +461663,International Trade,International Trade +440651,International Trade,International Trade +440650,International Trade,International Trade +440649,International Trade,International Trade +440648,International Trade,International Trade +436566,International Trade,International Trade +424906,International Trade,International Trade +424905,International Trade,International Trade +424904,International Trade,International Trade +424903,International Trade,International Trade +424902,International Trade,International Trade +424901,International Trade,International Trade +424900,International Trade,International Trade +424885,International Trade,International Trade +424884,International Trade,International Trade +424883,International Trade,International Trade +411921,International Trade,International Trade +420383,Transportation,Transportation +411921,Transportation,Transportation +424906,Transportation,Transportation +424905,Transportation,Transportation +424904,Transportation,Transportation +424903,Transportation,Transportation +424902,Transportation,Transportation +424900,Transportation,Transportation +424884,Transportation,Transportation +385700,Budget,Budget +385695,Budget,Budget +385700,Industry,Industry +385695,Industry,Industry +385700,Regional Development,Regional Development +382402,Transportation,Transportation +385308,Transportation,Transportation +385306,Transportation,Transportation +383225,Transportation,Transportation +385466,Taxation and Finance,Taxation and Finance +538666,Agriculture,Agriculture +480576,Infrastructure,Infrastructure +488598,Tourism,Tourism +488596,Tourism,Tourism +516486,Tourism,Tourism +509357,Tourism,Tourism +506352,Tourism,Tourism +506351,Tourism,Tourism +506350,Tourism,Tourism +488887,Tourism,Tourism +406479,International Trade,Commerce international +405451,International Trade,Commerce international +459794,International Trade,Commerce international +448964,International Trade,Commerce international +448963,International Trade,Commerce international +418250,International Trade,Commerce international +416382,International Trade,Commerce international +411944,International Trade,Commerce international +411943,International Trade,Commerce international +408246,International Trade,Commerce international +407628,International Trade,Commerce international +405451,Employment and Training,Emploi et formation +459794,Employment and Training,Emploi et formation +448963,Employment and Training,Emploi et formation +418250,Employment and Training,Emploi et formation +418246,Employment and Training,Emploi et formation +416382,Employment and Training,Emploi et formation +411944,Employment and Training,Emploi et formation +411943,Employment and Training,Emploi et formation +408246,Employment and Training,Emploi et formation +407976,Employment and Training,Emploi et formation +407628,Employment and Training,Emploi et formation +407050,Employment and Training,Emploi et formation +384440,Transportation,Transportation +384439,Transportation,Transportation +384768,Transportation,Transportation +384763,Transportation,Transportation +398657,Economic Development,Economic Development +391015,Economic Development,Economic Development +382159,Economic Development,Economic Development +428043,Economic Development,Economic Development +428040,Economic Development,Economic Development +428038,Economic Development,Economic Development +428035,Economic Development,Economic Development +428033,Economic Development,Economic Development +417888,Economic Development,Economic Development +412624,Economic Development,Economic Development +412620,Economic Development,Economic Development +412612,Economic Development,Economic Development +409392,Economic Development,Economic Development +409388,Economic Development,Economic Development +405468,Economic Development,Economic Development +404113,Economic Development,Economic Development +400621,Economic Development,Economic Development +383155,Industry,Industry +383154,Industry,Industry +383555,Industry,Industry +383150,Industry,Industry +434077,Industry,Industry +432745,Industry,Industry +545306,Industry,Industry +545246,Industry,Industry +545245,Industry,Industry +542377,Industry,Industry +542376,Industry,Industry +539739,Industry,Industry +532470,Industry,Industry +524860,Industry,Industry +497437,Industry,Industry +483977,Industry,Industry +476155,Industry,Industry +476154,Industry,Industry +460271,Industry,Industry +457870,Industry,Industry +444851,Industry,Industry +444849,Industry,Industry +444847,Industry,Industry +444845,Industry,Industry +444844,Industry,Industry +441734,Industry,Industry +441731,Industry,Industry +441730,Industry,Industry +441728,Industry,Industry +441726,Industry,Industry +403367,Environment,Environment +382225,Environment,Environment +382242,Tourism,Tourism +404304,Industry,Industry +382242,Industry,Industry +417386,Industry,Industry +417382,Industry,Industry +414604,Industry,Industry +414603,Industry,Industry +414602,Industry,Industry +414601,Industry,Industry +414600,Industry,Industry +414599,Industry,Industry +414598,Industry,Industry +414597,Industry,Industry +414589,Industry,Industry +414587,Industry,Industry +409277,Industry,Industry +404317,Small Business,Small Business +383552,Infrastructure,Infrastructure +383410,Infrastructure,Infrastructure +383552,Security,Security +383410,Security,Security +383552,Transportation,Transportation +383410,Transportation,Transportation +383552,Justice and Law Enforcement,Justice and Law Enforcement +383410,Justice and Law Enforcement,Justice and Law Enforcement +385378,Taxation and Finance,Taxation and Finance +385377,Taxation and Finance,Taxation and Finance +431248,Health,Health +431246,Health,Health +394023,Health,Health +392437,Health,Health +383148,Health,Health +383147,Health,Health +383145,Health,Health +383143,Health,Health +382565,Health,Health +431255,Health,Health +431253,Health,Health +431251,Health,Health +493447,Official Languages,Official Languages +493445,Official Languages,Official Languages +423109,Official Languages,Official Languages +420641,Official Languages,Official Languages +414943,Official Languages,Official Languages +414268,Official Languages,Official Languages +414260,Official Languages,Official Languages +398431,Official Languages,Official Languages +395434,Official Languages,Official Languages +393377,Official Languages,Official Languages +392993,Official Languages,Official Languages +391964,Official Languages,Official Languages +391866,Official Languages,Official Languages +389436,Official Languages,Official Languages +389434,Official Languages,Official Languages +389432,Official Languages,Official Languages +389430,Official Languages,Official Languages +389429,Official Languages,Official Languages +389428,Official Languages,Official Languages +389426,Official Languages,Official Languages +386114,Official Languages,Official Languages +495620,Official Languages,Official Languages +495619,Official Languages,Official Languages +495618,Official Languages,Official Languages +495617,Official Languages,Official Languages +495616,Official Languages,Official Languages +495615,Official Languages,Official Languages +495614,Official Languages,Official Languages +495613,Official Languages,Official Languages +493463,Official Languages,Official Languages +493458,Official Languages,Official Languages +493456,Official Languages,Official Languages +493455,Official Languages,Official Languages +493453,Official Languages,Official Languages +388625,Budget,Budget +385709,Budget,Budget +389365,Budget,Budget +388625,Economic Development,Economic Development +385710,Economic Development,Economic Development +389365,Economic Development,Economic Development +385709,Industry,Industry +389365,Industry,Industry +389363,Industry,Industry +388626,Industry,Industry +388625,Industry,Industry +388625,Regional Development,Regional Development +385710,Regional Development,Regional Development +389365,Regional Development,Regional Development +389363,Regional Development,Regional Development +438852,Taxation and Finance,Taxation and Finance +435548,Taxation and Finance,Taxation and Finance +382384,Taxation and Finance,Taxation and Finance +428923,Taxation and Finance,Taxation and Finance +424252,Taxation and Finance,Taxation and Finance +422106,Taxation and Finance,Taxation and Finance +422096,Taxation and Finance,Taxation and Finance +422094,Taxation and Finance,Taxation and Finance +418437,Taxation and Finance,Taxation and Finance +416317,Taxation and Finance,Taxation and Finance +412895,Taxation and Finance,Taxation and Finance +410047,Taxation and Finance,Taxation and Finance +399077,Taxation and Finance,Taxation and Finance +396330,Taxation and Finance,Taxation and Finance +388369,Taxation and Finance,Taxation and Finance +388154,Taxation and Finance,Taxation and Finance +388151,Taxation and Finance,Taxation and Finance +385792,Taxation and Finance,Taxation and Finance +383683,Taxation and Finance,Taxation and Finance +383682,Taxation and Finance,Taxation and Finance +537575,Taxation and Finance,Taxation and Finance +535852,Taxation and Finance,Taxation and Finance +515834,Taxation and Finance,Taxation and Finance +495754,Taxation and Finance,Taxation and Finance +473507,Taxation and Finance,Taxation and Finance +468017,Taxation and Finance,Taxation and Finance +468016,Taxation and Finance,Taxation and Finance +462608,Taxation and Finance,Taxation and Finance +459685,Taxation and Finance,Taxation and Finance +458719,Taxation and Finance,Taxation and Finance +458716,Taxation and Finance,Taxation and Finance +458712,Taxation and Finance,Taxation and Finance +457492,Taxation and Finance,Taxation and Finance +455893,Taxation and Finance,Taxation and Finance +449858,Taxation and Finance,Taxation and Finance +438912,Taxation and Finance,Taxation and Finance +438911,Taxation and Finance,Taxation and Finance +438909,Taxation and Finance,Taxation and Finance +438905,Taxation and Finance,Taxation and Finance +438903,Taxation and Finance,Taxation and Finance +438900,Taxation and Finance,Taxation and Finance +438893,Taxation and Finance,Taxation and Finance +385877,Industry,Industry +385877,Intellectual Property,Intellectual Property +395558,Immigration,Immigration +395557,Immigration,Immigration +382427,Immigration,Immigration +437406,Immigration,Immigration +437170,Immigration,Immigration +437169,Immigration,Immigration +433407,Immigration,Immigration +427672,Immigration,Immigration +425762,Immigration,Immigration +401329,International Trade,International Trade +418410,Transportation,Transportation +417198,Transportation,Transportation +399938,Transportation,Transportation +397477,Transportation,Transportation +397214,Transportation,Transportation +382575,Economic Development,Economic Development +413105,Taxation and Finance,Taxation and Finance +413100,Taxation and Finance,Taxation and Finance +413098,Taxation and Finance,Taxation and Finance +413095,Taxation and Finance,Taxation and Finance +409668,Taxation and Finance,Taxation and Finance +403778,Taxation and Finance,Taxation and Finance +400844,Taxation and Finance,Taxation and Finance +400827,Taxation and Finance,Taxation and Finance +400767,Taxation and Finance,Taxation and Finance +382592,Taxation and Finance,Taxation and Finance +465956,Taxation and Finance,Taxation and Finance +465955,Taxation and Finance,Taxation and Finance +465954,Taxation and Finance,Taxation and Finance +465951,Taxation and Finance,Taxation and Finance +465950,Taxation and Finance,Taxation and Finance +465948,Taxation and Finance,Taxation and Finance +465947,Taxation and Finance,Taxation and Finance +465946,Taxation and Finance,Taxation and Finance +465733,Taxation and Finance,Taxation and Finance +465732,Taxation and Finance,Taxation and Finance +465730,Taxation and Finance,Taxation and Finance +465727,Taxation and Finance,Taxation and Finance +465726,Taxation and Finance,Taxation and Finance +465723,Taxation and Finance,Taxation and Finance +465722,Taxation and Finance,Taxation and Finance +465721,Taxation and Finance,Taxation and Finance +465719,Taxation and Finance,Taxation and Finance +465718,Taxation and Finance,Taxation and Finance +465716,Taxation and Finance,Taxation and Finance +465715,Taxation and Finance,Taxation and Finance +465714,Taxation and Finance,Taxation and Finance +465713,Taxation and Finance,Taxation and Finance +461622,Taxation and Finance,Taxation and Finance +459540,Taxation and Finance,Taxation and Finance +457576,Taxation and Finance,Taxation and Finance +452782,Taxation and Finance,Taxation and Finance +450200,Taxation and Finance,Taxation and Finance +448068,Taxation and Finance,Taxation and Finance +448042,Taxation and Finance,Taxation and Finance +442403,Taxation and Finance,Taxation and Finance +425444,Taxation and Finance,Taxation and Finance +425428,Taxation and Finance,Taxation and Finance +424030,Taxation and Finance,Taxation and Finance +418146,Taxation and Finance,Taxation and Finance +416621,Taxation and Finance,Taxation and Finance +416620,Taxation and Finance,Taxation and Finance +416616,Taxation and Finance,Taxation and Finance +416606,Taxation and Finance,Taxation and Finance +416577,Taxation and Finance,Taxation and Finance +416568,Taxation and Finance,Taxation and Finance +416563,Taxation and Finance,Taxation and Finance +416561,Taxation and Finance,Taxation and Finance +416558,Taxation and Finance,Taxation and Finance +460311,Budget,Budget +460310,Budget,Budget +400448,Budget,Budget +395260,Budget,Budget +385908,Budget,Budget +384690,Budget,Budget +384351,Budget,Budget +383101,Health,Health +382908,Health,Health +465636,Health,Health +426867,Health,Health +400448,Health,Health +384690,Health,Health +384351,Health,Health +383101,Research and Development,Research and Development +382908,Research and Development,Research and Development +426867,Research and Development,Research and Development +424874,Research and Development,Research and Development +400448,Research and Development,Research and Development +386398,Research and Development,Research and Development +384690,Research and Development,Research and Development +384690,Taxation and Finance,Taxation and Finance +387078,Employment and Training,Employment and Training +387076,Employment and Training,Employment and Training +387075,Employment and Training,Employment and Training +383123,Employment and Training,Employment and Training +383121,Employment and Training,Employment and Training +534313,Regional Development,Regional Development +523200,Regional Development,Regional Development +492862,Regional Development,Regional Development +492856,Regional Development,Regional Development +518259,Tourism,Tourism +518255,Tourism,Tourism +439422,Tourism,Tourism +439365,Tourism,Tourism +526282,Tourism,Tourism +523200,Tourism,Tourism +408424,Economic Development,Economic Development +471521,Infrastructure,Infrastructure +461085,Infrastructure,Infrastructure +427061,Infrastructure,Infrastructure +408424,Infrastructure,Infrastructure +384025,Infrastructure,Infrastructure +458125,Agriculture,Agriculture +457878,Agriculture,Agriculture +450320,Agriculture,Agriculture +449435,Agriculture,Agriculture +449431,Agriculture,Agriculture +449429,Agriculture,Agriculture +449427,Agriculture,Agriculture +442746,Agriculture,Agriculture +521942,Agriculture,Agriculture +521941,Agriculture,Agriculture +521940,Agriculture,Agriculture +521938,Agriculture,Agriculture +488555,Agriculture,Agriculture +488504,Agriculture,Agriculture +486738,Agriculture,Agriculture +486735,Agriculture,Agriculture +486731,Agriculture,Agriculture +486729,Agriculture,Agriculture +486727,Agriculture,Agriculture +486725,Agriculture,Agriculture +486724,Agriculture,Agriculture +486716,Agriculture,Agriculture +464567,Agriculture,Agriculture +463966,Agriculture,Agriculture +463964,Agriculture,Agriculture +463963,Agriculture,Agriculture +463962,Agriculture,Agriculture +463959,Agriculture,Agriculture +463956,Agriculture,Agriculture +463949,Agriculture,Agriculture +461106,Agriculture,Agriculture +461105,Environment,Environment +442746,Environment,Environment +521942,Environment,Environment +521941,Environment,Environment +521940,Environment,Environment +521938,Environment,Environment +488555,Environment,Environment +488504,Environment,Environment +486738,Environment,Environment +486735,Environment,Environment +486731,Environment,Environment +486729,Environment,Environment +486727,Environment,Environment +486725,Environment,Environment +486724,Environment,Environment +449431,International Trade,International Trade +442746,International Trade,International Trade +521942,International Trade,International Trade +521941,International Trade,International Trade +521940,International Trade,International Trade +521938,International Trade,International Trade +488555,International Trade,International Trade +488504,International Trade,International Trade +486738,International Trade,International Trade +486735,International Trade,International Trade +486731,International Trade,International Trade +486729,International Trade,International Trade +486727,International Trade,International Trade +486725,International Trade,International Trade +486724,International Trade,International Trade +486716,International Trade,International Trade +463949,International Trade,International Trade +461106,International Trade,International Trade +461105,International Trade,International Trade +453289,Infrastructure,Infrastructure +453281,Infrastructure,Infrastructure +487033,Infrastructure,Infrastructure +487030,Infrastructure,Infrastructure +468904,Infrastructure,Infrastructure +468899,Infrastructure,Infrastructure +468898,Infrastructure,Infrastructure +468896,Infrastructure,Infrastructure +468893,Infrastructure,Infrastructure +468890,Infrastructure,Infrastructure +462001,Infrastructure,Infrastructure +461991,Infrastructure,Infrastructure +461990,Infrastructure,Infrastructure +461086,Infrastructure,Infrastructure +453559,Infrastructure,Infrastructure +453557,Infrastructure,Infrastructure +453500,Infrastructure,Infrastructure +453499,Infrastructure,Infrastructure +453498,Infrastructure,Infrastructure +453496,Infrastructure,Infrastructure +453494,Infrastructure,Infrastructure +453493,Infrastructure,Infrastructure +453485,Infrastructure,Infrastructure +453484,Infrastructure,Infrastructure +453482,Infrastructure,Infrastructure +453475,Infrastructure,Infrastructure +453472,Infrastructure,Infrastructure +453470,Infrastructure,Infrastructure +453459,Infrastructure,Infrastructure +453436,Infrastructure,Infrastructure +453434,Infrastructure,Infrastructure +453431,Infrastructure,Infrastructure +453429,Infrastructure,Infrastructure +453426,Infrastructure,Infrastructure +453425,Infrastructure,Infrastructure +453424,Infrastructure,Infrastructure +453423,Infrastructure,Infrastructure +453422,Infrastructure,Infrastructure +453418,Infrastructure,Infrastructure +453416,Infrastructure,Infrastructure +453414,Infrastructure,Infrastructure +453410,Infrastructure,Infrastructure +453408,Infrastructure,Infrastructure +453407,Infrastructure,Infrastructure +453406,Infrastructure,Infrastructure +453399,Infrastructure,Infrastructure +453398,Infrastructure,Infrastructure +453397,Infrastructure,Infrastructure +453396,Infrastructure,Infrastructure +453393,Infrastructure,Infrastructure +453392,Infrastructure,Infrastructure +453391,Infrastructure,Infrastructure +453387,Infrastructure,Infrastructure +453376,Infrastructure,Infrastructure +453375,Infrastructure,Infrastructure +453353,Infrastructure,Infrastructure +453349,Infrastructure,Infrastructure +453346,Infrastructure,Infrastructure +453344,Infrastructure,Infrastructure +453342,Infrastructure,Infrastructure +453341,Infrastructure,Infrastructure +453337,Infrastructure,Infrastructure +453309,Infrastructure,Infrastructure +383167,Research and Development,Recherche et développement +383165,Research and Development,Recherche et développement +387101,Research and Development,Recherche et développement +387100,Research and Development,Recherche et développement +459588,Tourism,Tourisme +455430,Tourism,Tourisme +409583,Tourism,Tourisme +409576,Tourism,Tourisme +409565,Tourism,Tourisme +409559,Tourism,Tourisme +409550,Tourism,Tourisme +383521,International Trade,International Trade +401125,Justice and Law Enforcement,Justice and Law Enforcement +384964,Economic Development,Economic Development +383463,Economic Development,Economic Development +392654,Economic Development,Economic Development +382755,Industry,Industry +460748,Fisheries,Fisheries +432741,Fisheries,Fisheries +395337,Fisheries,Fisheries +392345,Fisheries,Fisheries +389062,Fisheries,Fisheries +384013,Fisheries,Fisheries +383051,Fisheries,Fisheries +383039,Fisheries,Fisheries +382888,Fisheries,Fisheries +382813,Fisheries,Fisheries +384569,Health,Health +384568,Health,Health +420355,Health,Health +420354,Health,Health +420353,Health,Health +420352,Health,Health +411182,Health,Health +411061,Health,Health +411060,Health,Health +410689,Health,Health +410254,Health,Health +408673,Health,Health +408506,Health,Health +408505,Health,Health +408504,Health,Health +408503,Health,Health +408100,Health,Health +406297,Health,Health +406296,Health,Health +406173,Health,Health +404386,Health,Health +404385,Health,Health +404384,Health,Health +399454,Health,Health +384568,Education,Education +384221,Education,Education +420355,Education,Education +420354,Education,Education +420353,Education,Education +420352,Education,Education +411182,Education,Education +411061,Education,Education +411060,Education,Education +410689,Education,Education +410254,Education,Education +408673,Education,Education +408506,Education,Education +408505,Education,Education +408504,Education,Education +408503,Education,Education +408100,Education,Education +406296,Education,Education +406173,Education,Education +406171,Education,Education +404386,Education,Education +404385,Education,Education +404384,Education,Education +399454,Education,Education +390003,Education,Education +384570,Education,Education +540475,Energy,Energy +540474,Energy,Energy +386813,Energy,Energy +386812,Energy,Energy +386811,Energy,Energy +386810,Energy,Energy +384296,Energy,Energy +384294,Energy,Energy +384293,Energy,Energy +384292,Energy,Energy +384291,Energy,Energy +384290,Energy,Energy +384289,Energy,Energy +384288,Energy,Energy +384287,Energy,Energy +524200,Energy,Energy +523512,Energy,Energy +523511,Energy,Energy +519144,Energy,Energy +480481,Energy,Energy +465436,Energy,Energy +450559,Energy,Energy +450486,Energy,Energy +431840,Energy,Energy +431839,Energy,Energy +427564,Energy,Energy +427562,Energy,Energy +427220,Energy,Energy +427219,Energy,Energy +427218,Energy,Energy +403369,Energy,Energy +402961,Energy,Energy +402958,Energy,Energy +402954,Energy,Energy +402950,Energy,Energy +391183,Energy,Energy +386821,Energy,Energy +386819,Energy,Energy +386818,Energy,Energy +386817,Energy,Energy +402961,Environment,Environment +402958,Environment,Environment +402954,Environment,Environment +402950,Environment,Environment +386821,Environment,Environment +386819,Environment,Environment +386818,Environment,Environment +386817,Environment,Environment +386815,Environment,Environment +386813,Environment,Environment +386812,Environment,Environment +386811,Environment,Environment +386810,Environment,Environment +384296,Environment,Environment +384294,Environment,Environment +384293,Environment,Environment +384292,Environment,Environment +384291,Environment,Environment +384290,Environment,Environment +384289,Environment,Environment +384288,Environment,Environment +384287,Environment,Environment +450559,Environment,Environment +450486,Environment,Environment +431840,Environment,Environment +431839,Environment,Environment +427564,Environment,Environment +427562,Environment,Environment +427220,Environment,Environment +427219,Environment,Environment +427218,Environment,Environment +384552,Environment,Environment +384551,Environment,Environment +384554,Environment,Environment +384551,Infrastructure,Infrastructure +384554,Infrastructure,Infrastructure +384553,Infrastructure,Infrastructure +384552,Tourism,Tourism +384551,Tourism,Tourism +384554,Tourism,Tourism +431840,Economic Development,Economic Development +431839,Economic Development,Economic Development +427564,Economic Development,Economic Development +427562,Economic Development,Economic Development +427220,Economic Development,Economic Development +427219,Economic Development,Economic Development +427218,Economic Development,Economic Development +403369,Economic Development,Economic Development +402961,Economic Development,Economic Development +402958,Economic Development,Economic Development +402954,Economic Development,Economic Development +391183,Economic Development,Economic Development +386821,Economic Development,Economic Development +386819,Economic Development,Economic Development +386818,Economic Development,Economic Development +386817,Economic Development,Economic Development +386815,Economic Development,Economic Development +386813,Economic Development,Economic Development +386812,Economic Development,Economic Development +386811,Economic Development,Economic Development +386810,Economic Development,Economic Development +384296,Economic Development,Economic Development +384294,Economic Development,Economic Development +384293,Economic Development,Economic Development +384292,Economic Development,Economic Development +384291,Economic Development,Economic Development +384290,Economic Development,Economic Development +384289,Economic Development,Economic Development +384288,Economic Development,Economic Development +384287,Economic Development,Economic Development +450559,Economic Development,Economic Development +382780,Climate,Climate +538472,Climate,Climate +544185,Climate,Climate +544183,Climate,Climate +544181,Climate,Climate +538472,Environment,Environment +508896,Environment,Environment +389053,Environment,Environment +382780,Environment,Environment +544185,Environment,Environment +544183,Environment,Environment +544181,Environment,Environment +544178,Environment,Environment +544177,Environment,Environment +542034,Environment,Environment +383399,Economic Development,Economic Development +410722,International Trade,International Trade +408767,International Trade,International Trade +382784,International Trade,International Trade +437633,International Trade,International Trade +432743,International Trade,International Trade +542149,Budget,Budget +529993,Budget,Budget +387002,Budget,Budget +384750,Budget,Budget +382788,Budget,Budget +518892,Budget,Budget +485420,Budget,Budget +465523,Budget,Budget +465521,Budget,Budget +461666,Budget,Budget +461661,Budget,Budget +542332,Budget,Budget +542151,Budget,Budget +387537,Environment,Environment +387535,Environment,Environment +404806,Environment,Environment +404805,Environment,Environment +404804,Environment,Environment +404803,Environment,Environment +404802,Environment,Environment +402981,Environment,Environment +402970,Environment,Environment +402952,Environment,Environment +402610,Environment,Environment +402451,Environment,Environment +402409,Environment,Environment +402408,Environment,Environment +402407,Environment,Environment +402406,Environment,Environment +402405,Environment,Environment +402404,Environment,Environment +402403,Environment,Environment +402402,Environment,Environment +402401,Environment,Environment +402400,Environment,Environment +402399,Environment,Environment +402398,Environment,Environment +402397,Environment,Environment +402396,Environment,Environment +402395,Environment,Environment +402394,Environment,Environment +402393,Environment,Environment +402392,Environment,Environment +402391,Environment,Environment +387546,Environment,Environment +387545,Environment,Environment +387544,Environment,Environment +387543,Environment,Environment +387542,Environment,Environment +387541,Environment,Environment +387540,Environment,Environment +387513,Environment,Environment +387512,Environment,Environment +404811,Environment,Environment +404810,Environment,Environment +404809,Environment,Environment +404808,Environment,Environment +404807,Environment,Environment +402984,Environment,Environment +402971,Environment,Environment +402953,Environment,Environment +402605,Environment,Environment +402452,Environment,Environment +402428,Environment,Environment +402427,Environment,Environment +402426,Environment,Environment +402425,Environment,Environment +402424,Environment,Environment +402423,Environment,Environment +402422,Environment,Environment +402421,Environment,Environment +402420,Environment,Environment +402419,Environment,Environment +402418,Environment,Environment +402417,Environment,Environment +402416,Environment,Environment +402415,Environment,Environment +402414,Environment,Environment +402413,Environment,Environment +402412,Environment,Environment +402411,Environment,Environment +402410,Environment,Environment +387521,Environment,Environment +387520,Environment,Environment +387519,Environment,Environment +387518,Environment,Environment +387517,Environment,Environment +387516,Environment,Environment +387515,Environment,Environment +387513,Infrastructure,Infrastructure +387512,Infrastructure,Infrastructure +404811,Infrastructure,Infrastructure +404810,Infrastructure,Infrastructure +404809,Infrastructure,Infrastructure +404808,Infrastructure,Infrastructure +404807,Infrastructure,Infrastructure +402984,Infrastructure,Infrastructure +402971,Infrastructure,Infrastructure +402953,Infrastructure,Infrastructure +402605,Infrastructure,Infrastructure +402452,Infrastructure,Infrastructure +402428,Infrastructure,Infrastructure +402427,Infrastructure,Infrastructure +402426,Infrastructure,Infrastructure +402425,Infrastructure,Infrastructure +402424,Infrastructure,Infrastructure +402423,Infrastructure,Infrastructure +402422,Infrastructure,Infrastructure +402421,Infrastructure,Infrastructure +402420,Infrastructure,Infrastructure +402419,Infrastructure,Infrastructure +402418,Infrastructure,Infrastructure +402417,Infrastructure,Infrastructure +402416,Infrastructure,Infrastructure +402415,Infrastructure,Infrastructure +402414,Infrastructure,Infrastructure +402413,Infrastructure,Infrastructure +402412,Infrastructure,Infrastructure +402411,Infrastructure,Infrastructure +402410,Infrastructure,Infrastructure +387521,Infrastructure,Infrastructure +387520,Infrastructure,Infrastructure +387519,Infrastructure,Infrastructure +387518,Infrastructure,Infrastructure +387517,Infrastructure,Infrastructure +387516,Infrastructure,Infrastructure +387515,Infrastructure,Infrastructure +402373,Environment,Environment +402372,Environment,Environment +387511,Environment,Environment +387510,Environment,Environment +387509,Environment,Environment +387508,Environment,Environment +387507,Environment,Environment +387506,Environment,Environment +387505,Environment,Environment +387504,Environment,Environment +387503,Environment,Environment +387502,Environment,Environment +404801,Environment,Environment +404800,Environment,Environment +404799,Environment,Environment +404798,Environment,Environment +404797,Environment,Environment +402980,Environment,Environment +402969,Environment,Environment +402951,Environment,Environment +402603,Environment,Environment +402450,Environment,Environment +402390,Environment,Environment +402389,Environment,Environment +402388,Environment,Environment +402387,Environment,Environment +402386,Environment,Environment +402385,Environment,Environment +402384,Environment,Environment +402383,Environment,Environment +402382,Environment,Environment +402381,Environment,Environment +402380,Environment,Environment +402379,Environment,Environment +402378,Environment,Environment +402377,Environment,Environment +402376,Environment,Environment +402375,Environment,Environment +402342,Environment,Environment +402341,Environment,Environment +402340,Environment,Environment +402339,Environment,Environment +402338,Environment,Environment +402337,Environment,Environment +402336,Environment,Environment +402335,Environment,Environment +402334,Environment,Environment +387533,Environment,Environment +387532,Environment,Environment +387531,Environment,Environment +387530,Environment,Environment +387529,Environment,Environment +387527,Environment,Environment +387526,Environment,Environment +387525,Environment,Environment +387524,Environment,Environment +387523,Environment,Environment +404791,Environment,Environment +404790,Environment,Environment +404789,Environment,Environment +404788,Environment,Environment +404787,Environment,Environment +402975,Environment,Environment +402963,Environment,Environment +402947,Environment,Environment +402600,Environment,Environment +402448,Environment,Environment +402352,Environment,Environment +402351,Environment,Environment +402350,Environment,Environment +402349,Environment,Environment +402348,Environment,Environment +402347,Environment,Environment +402346,Environment,Environment +402345,Environment,Environment +402344,Environment,Environment +387524,Infrastructure,Infrastructure +387523,Infrastructure,Infrastructure +404791,Infrastructure,Infrastructure +404790,Infrastructure,Infrastructure +404789,Infrastructure,Infrastructure +404788,Infrastructure,Infrastructure +404787,Infrastructure,Infrastructure +402975,Infrastructure,Infrastructure +402963,Infrastructure,Infrastructure +402947,Infrastructure,Infrastructure +402600,Infrastructure,Infrastructure +402448,Infrastructure,Infrastructure +402352,Infrastructure,Infrastructure +402351,Infrastructure,Infrastructure +402350,Infrastructure,Infrastructure +402349,Infrastructure,Infrastructure +402348,Infrastructure,Infrastructure +402347,Infrastructure,Infrastructure +402346,Infrastructure,Infrastructure +402345,Infrastructure,Infrastructure +402344,Infrastructure,Infrastructure +402343,Infrastructure,Infrastructure +402342,Infrastructure,Infrastructure +402341,Infrastructure,Infrastructure +402340,Infrastructure,Infrastructure +402339,Infrastructure,Infrastructure +402338,Infrastructure,Infrastructure +402337,Infrastructure,Infrastructure +402336,Infrastructure,Infrastructure +402335,Infrastructure,Infrastructure +402334,Infrastructure,Infrastructure +387533,Infrastructure,Infrastructure +387532,Infrastructure,Infrastructure +387531,Infrastructure,Infrastructure +387530,Infrastructure,Infrastructure +387529,Infrastructure,Infrastructure +387527,Infrastructure,Infrastructure +387526,Infrastructure,Infrastructure +404812,Environment,Environment +402986,Environment,Environment +402972,Environment,Environment +402955,Environment,Environment +402609,Environment,Environment +402453,Environment,Environment +402447,Environment,Environment +402446,Environment,Environment +402445,Environment,Environment +402444,Environment,Environment +402443,Environment,Environment +402442,Environment,Environment +402441,Environment,Environment +402440,Environment,Environment +402439,Environment,Environment +402438,Environment,Environment +402437,Environment,Environment +402436,Environment,Environment +402435,Environment,Environment +402434,Environment,Environment +402433,Environment,Environment +402432,Environment,Environment +402431,Environment,Environment +402430,Environment,Environment +402429,Environment,Environment +387556,Environment,Environment +387555,Environment,Environment +387554,Environment,Environment +387553,Environment,Environment +387552,Environment,Environment +387551,Environment,Environment +387550,Environment,Environment +387549,Environment,Environment +387548,Environment,Environment +387547,Environment,Environment +404816,Environment,Environment +404815,Environment,Environment +404814,Environment,Environment +387548,Infrastructure,Infrastructure +387547,Infrastructure,Infrastructure +404816,Infrastructure,Infrastructure +404815,Infrastructure,Infrastructure +404814,Infrastructure,Infrastructure +404813,Infrastructure,Infrastructure +404812,Infrastructure,Infrastructure +402986,Infrastructure,Infrastructure +402972,Infrastructure,Infrastructure +402955,Infrastructure,Infrastructure +402609,Infrastructure,Infrastructure +402453,Infrastructure,Infrastructure +402447,Infrastructure,Infrastructure +402446,Infrastructure,Infrastructure +402445,Infrastructure,Infrastructure +402444,Infrastructure,Infrastructure +402443,Infrastructure,Infrastructure +402442,Infrastructure,Infrastructure +402441,Infrastructure,Infrastructure +402440,Infrastructure,Infrastructure +402439,Infrastructure,Infrastructure +402438,Infrastructure,Infrastructure +402437,Infrastructure,Infrastructure +402436,Infrastructure,Infrastructure +402435,Infrastructure,Infrastructure +402434,Infrastructure,Infrastructure +402433,Infrastructure,Infrastructure +402432,Infrastructure,Infrastructure +402431,Infrastructure,Infrastructure +402430,Infrastructure,Infrastructure +402429,Infrastructure,Infrastructure +387556,Infrastructure,Infrastructure +387555,Infrastructure,Infrastructure +387554,Infrastructure,Infrastructure +387553,Infrastructure,Infrastructure +387552,Infrastructure,Infrastructure +387551,Infrastructure,Infrastructure +387550,Infrastructure,Infrastructure +387560,Environment,Environment +387559,Environment,Environment +387558,Environment,Environment +387557,Environment,Environment +404796,Environment,Environment +404795,Environment,Environment +404794,Environment,Environment +404793,Environment,Environment +404792,Environment,Environment +402978,Environment,Environment +402967,Environment,Environment +402949,Environment,Environment +402607,Environment,Environment +402449,Environment,Environment +402371,Environment,Environment +402370,Environment,Environment +402369,Environment,Environment +402368,Environment,Environment +402367,Environment,Environment +402366,Environment,Environment +402365,Environment,Environment +402364,Environment,Environment +402363,Environment,Environment +402362,Environment,Environment +402361,Environment,Environment +402360,Environment,Environment +402359,Environment,Environment +402358,Environment,Environment +402357,Environment,Environment +402356,Environment,Environment +402355,Environment,Environment +402354,Environment,Environment +402353,Environment,Environment +387566,Environment,Environment +387565,Environment,Environment +387564,Environment,Environment +387563,Environment,Environment +387562,Environment,Environment +387558,Infrastructure,Infrastructure +387557,Infrastructure,Infrastructure +404796,Infrastructure,Infrastructure +404795,Infrastructure,Infrastructure +404794,Infrastructure,Infrastructure +404793,Infrastructure,Infrastructure +404792,Infrastructure,Infrastructure +402978,Infrastructure,Infrastructure +402967,Infrastructure,Infrastructure +402949,Infrastructure,Infrastructure +402607,Infrastructure,Infrastructure +402449,Infrastructure,Infrastructure +402371,Infrastructure,Infrastructure +402370,Infrastructure,Infrastructure +402369,Infrastructure,Infrastructure +402368,Infrastructure,Infrastructure +402367,Infrastructure,Infrastructure +402366,Infrastructure,Infrastructure +402365,Infrastructure,Infrastructure +402364,Infrastructure,Infrastructure +402363,Infrastructure,Infrastructure +402362,Infrastructure,Infrastructure +402361,Infrastructure,Infrastructure +402360,Infrastructure,Infrastructure +402359,Infrastructure,Infrastructure +402358,Infrastructure,Infrastructure +402357,Infrastructure,Infrastructure +402356,Infrastructure,Infrastructure +402355,Infrastructure,Infrastructure +402354,Infrastructure,Infrastructure +402353,Infrastructure,Infrastructure +387566,Infrastructure,Infrastructure +387565,Infrastructure,Infrastructure +387564,Infrastructure,Infrastructure +387563,Infrastructure,Infrastructure +387562,Infrastructure,Infrastructure +387561,Infrastructure,Infrastructure +387560,Infrastructure,Infrastructure +395553,Defence,Defence +395552,Defence,Defence +446959,Defence,Defence +421102,Defence,Defence +405438,Defence,Defence +405419,Defence,Defence +405408,Defence,Defence +403024,Defence,Defence +402614,Defence,Defence +402614,Government Procurement,Government Procurement +402310,Government Procurement,Government Procurement +515773,Government Procurement,Government Procurement +451113,Government Procurement,Government Procurement +447040,Government Procurement,Government Procurement +446959,Government Procurement,Government Procurement +421102,Government Procurement,Government Procurement +405438,Government Procurement,Government Procurement +405419,Government Procurement,Government Procurement +405408,Government Procurement,Government Procurement +447040,Research and Development,Research and Development +437443,Research and Development,Research and Development +466593,Research and Development,Research and Development +397872,Agriculture,Agriculture +390721,Agriculture,Agriculture +424492,Agriculture,Agriculture +424491,Agriculture,Agriculture +424490,Agriculture,Agriculture +410427,Agriculture,Agriculture +410330,Agriculture,Agriculture +397874,Agriculture,Agriculture +397871,International Trade,International Trade +390721,International Trade,International Trade +444464,International Trade,International Trade +444463,International Trade,International Trade +438164,International Trade,International Trade +424492,International Trade,International Trade +424491,International Trade,International Trade +424490,International Trade,International Trade +410427,International Trade,International Trade +410330,International Trade,International Trade +397874,International Trade,International Trade +397873,International Trade,International Trade +397871,Transportation,Transportation +390721,Transportation,Transportation +466924,Transportation,Transportation +444464,Transportation,Transportation +444463,Transportation,Transportation +438164,Transportation,Transportation +424492,Transportation,Transportation +424491,Transportation,Transportation +424490,Transportation,Transportation +410427,Transportation,Transportation +410330,Transportation,Transportation +397874,Transportation,Transportation +397873,Transportation,Transportation +424491,Economic Development,Economic Development +424490,Economic Development,Economic Development +410427,Economic Development,Economic Development +410330,Economic Development,Economic Development +397874,Economic Development,Economic Development +397873,Economic Development,Economic Development +397872,Economic Development,Economic Development +397871,Economic Development,Economic Development +390721,Economic Development,Economic Development +444464,Economic Development,Economic Development +444463,Economic Development,Economic Development +438164,Economic Development,Economic Development +390721,Infrastructure,Infrastructure +466924,Infrastructure,Infrastructure +444464,Infrastructure,Infrastructure +444463,Infrastructure,Infrastructure +438164,Infrastructure,Infrastructure +468206,Regional Development,Regional Development +395361,Small Business,Small Business +409511,Taxation and Finance,Taxation and Finance +520189,Transportation,Transportation +384993,Climate,Climate +384993,Energy,Energy +396557,Environment,Environment +406870,Infrastructure,Infrastructure +392884,Agriculture,Agriculture +392884,Economic Development,Economic Development +392884,Employment and Training,Employment and Training +392884,Industry,Industry +464206,Regional Development,Regional Development +404671,Agriculture,Agriculture +391920,Consumer Issues,Consumer Issues +391920,Economic Development,Economic Development +404671,International Trade,International Trade +383064,International Trade,International Trade +382851,Agriculture,Agriculture +383018,Fisheries,Fisheries +383018,Regional Development,Regional Development +408025,Health,Health +391261,Internal Trade,Internal Trade +392824,Health,Health +382842,Transportation,Transports +386037,Economic Development,Economic Development +386036,Health,Health +381828,Infrastructure,Infrastructure +381831,Infrastructure,Infrastructure +400546,Budget,Budget +398247,Budget,Budget +384932,Economic Development,Economic Development +400360,Regional Development,Regional Development +397736,Economic Development,Economic Development +432024,Internal Trade,Internal Trade +381864,Energy,Energy +382300,Energy,Energy +384036,Environment,Environment +461984,Justice and Law Enforcement,Justice and Law Enforcement +383927,Labour,Labour +467443,Housing,Housing +397189,Energy,Energy +410556,Environment,Environment +410556,Infrastructure,Infrastructure +466669,Consumer Issues,Consumer Issues +389491,Economic Development,Economic Development +389484,Consumer Issues,Consumer Issues +410586,International Trade,International Trade +387705,Labour,Labour +478297,Taxation and Finance,Taxation and Finance +413847,Budget,Budget +404865,Climate,Climate +418975,Economic Development,Economic Development +418975,Energy,Energy +418975,Environment,Environment +418975,Industry,Industry +404865,International Trade,International Trade +418975,Regional Development,Regional Development +395574,Taxation and Finance,Taxation and Finance +521092,Agriculture,Agriculture +383900,Health,Health +383875,Consumer Issues,Consumer Issues +383900,Justice and Law Enforcement,Justice and Law Enforcement +501524,Health,Health +384259,Industry,Industry +384259,Infrastructure,Infrastructure +384259,Transportation,Transportation +389801,Agriculture,Agriculture +424899,Climate,Climate +424899,Environment,Environment +389799,International Trade,International Trade +424883,Transportation,Transportation +389366,Budget,Budget +389366,Economic Development,Economic Development +389366,Industry,Industry +389366,Regional Development,Regional Development +383223,Transportation,Transportation +385484,Taxation and Finance,Taxation and Finance +443401,Security,Security +492045,Agriculture,Agriculture +382785,Infrastructure,Infrastructure +488602,Tourism,Tourism +407050,International Trade,Commerce international +406479,Employment and Training,Emploi et formation +384759,Transportation,Transportation +391419,Economic Development,Economic Development +383153,Economic Development,Economic Development +383153,Industry,Industry +383153,Research and Development,Research and Development +400618,Economic Development,Economic Development +383156,Industry,Industry +382177,Small Business,Small Business +382182,Small Business,Small Business +383558,Industry,Industry +383747,Tourism,Tourisme +439845,Industry,Industry +403537,Environment,Environment +404317,Tourism,Tourism +404317,Industry,Industry +382242,Small Business,Small Business +387151,Infrastructure,Infrastructure +387151,Security,Security +387151,Tourism,Tourism +387151,Transportation,Transportation +387151,Justice and Law Enforcement,Justice and Law Enforcement +385382,Taxation and Finance,Taxation and Finance +431249,Health,Health +493449,Official Languages,Official Languages +389363,Budget,Budget +388626,Economic Development,Economic Development +385710,Industry,Industry +388626,Regional Development,Regional Development +385710,Research and Development,Research and Development +438853,Taxation and Finance,Taxation and Finance +419603,Industry,Industry +419603,Intellectual Property,Intellectual Property +385877,International Trade,International Trade +416346,Immigration,Immigration +404667,Agriculture,Agriculture +404667,International Trade,International Trade +392950,Transportation,Transportation +382578,Consumer Issues,Consumer Issues +382576,Economic Development,Economic Development +382578,Labour,Labour +416556,Taxation and Finance,Taxation and Finance +382657,Research and Development,Research and Development +399566,Immigration,Immigration +382658,Research and Development,Research and Development +382916,Budget,Budget +383102,Health,Health +383102,Research and Development,Research and Development +386398,Taxation and Finance,Taxation and Finance +383123,Economic Development,Economic Development +404120,Employment and Training,Employment and Training +443859,Regional Development,Regional Development +518261,Tourism,Tourism +382917,Budget,Budget +382913,Budget,Budget +427061,Economic Development,Economic Development +382825,Infrastructure,Infrastructure +461105,Agriculture,Agriculture +442746,Climate,Climate +486716,Environment,Environment +449435,International Trade,International Trade +461105,Transportation,Transportation +453303,Infrastructure,Infrastructure +387099,Research and Development,Recherche et développement +396853,Government Procurement,Government Procurement +409544,Tourism,Tourisme +401125,International Trade,International Trade +383521,Justice and Law Enforcement,Justice and Law Enforcement +383463,Consumer Issues,Consumer Issues +384967,Economic Development,Economic Development +384090,Industry,Industry +382763,Fisheries,Fisheries +382770,Transportation,Transportation +382770,Government Procurement,Government Procurement +384570,Health,Health +384569,Education,Education +386815,Energy,Energy +403369,Environment,Environment +384553,Environment,Environment +384552,Infrastructure,Infrastructure +384553,Tourism,Tourism +450486,Economic Development,Economic Development +540058,Climate,Climate +540058,Environment,Environment +383405,Economic Development,Economic Development +418388,International Trade,International Trade +542150,Budget,Budget +387539,Environment,Environment +387072,Environment,Environment +387514,Environment,Environment +387514,Infrastructure,Infrastructure +402374,Environment,Environment +402343,Environment,Environment +387525,Infrastructure,Infrastructure +404813,Environment,Environment +387549,Infrastructure,Infrastructure +387561,Environment,Environment +387559,Infrastructure,Infrastructure +402310,Defence,Defence +403024,Government Procurement,Government Procurement +453363,Research and Development,Research and Development +395553,Security,Security +397873,Agriculture,Agriculture +397872,International Trade,International Trade +397872,Transportation,Transportation +424492,Economic Development,Economic Development +397871,Infrastructure,Infrastructure +385982,Economic Development,Economic Development +406063,Transportation,Transportation +508662,International Trade,International Trade +466928,Infrastructure,Infrastructure +385981,Regional Development,Regional Development +508662,Environment,Environment +519379,Sports,Sports +454361,Health,Health +407658,Education,Education +411814,Taxation and Finance,Taxation and Finance +489010,Budget,Budget +382834,Infrastructure,Infrastructure +382835,Transportation,Transportation +383635,International Trade,Commerce international +395276,Security,Security +427988,Mining,Mining +427988,Economic Development,Economic Development +427988,Regional Development,Regional Development +382841,Environment,Environment +382842,Industry,Industry +382842,Energy,Energy +385474,Economic Development,Economic Development +385472,Intellectual Property,Intellectual Property +385472,Municipalities,Municipalities +383681,Climate,Climate +383681,Energy,Energy +383681,Environment,Environment +383681,International Development,International Development +383681,Small Business,Small Business +394591,Infrastructure,Infrastructure +387163,Economic Development,Economic Development +387163,Employment and Training,Employment and Training +387163,Industry,Industry +387157,Infrastructure,Infrastructure +420848,International Trade,International Trade +387163,Taxation and Finance,Taxation and Finance +387163,Transportation,Transportation +383117,Sports,Sports +383118,Tourism,Tourism +431904,Education,Education +384307,Employment and Training,Employment and Training +384308,Health,Health +443072,Industry,Industry +384304,International Development,International Development +454439,Labour,Labour +443072,Research and Development,Research and Development +400230,Municipalities,Municipalities +415650,Consumer Issues,Consumer Issues +415650,Employment and Training,Employment and Training +417232,Industry,Industry +417232,Official Languages,Official Languages +417232,Transportation,Transportation +384255,Employment and Training,Employment and Training +386193,Industry,Industry +485383,Official Languages,Official Languages +418659,Transportation,Transportation +480101,Fisheries,Fisheries +382903,Infrastructure,Infrastructure +383992,Energy,Energy +383991,Environment,Environment +383989,Industry,Industry +383991,International Trade,International Trade +383129,Justice and Law Enforcement,Justice and Law Enforcement +383129,Security,Security +389107,Taxation and Finance,Taxation and Finance +389107,Budget,Budget +389107,Education,Education +383129,Government Procurement,Government Procurement +389107,Health,Health +389107,Housing,Housing +389107,Infrastructure,Infrastructure +382910,Economic Development,Economic Development +382914,Budget,Budget +382915,Budget,Budget +389684,Economic Development,Economic Development +389684,Regional Development,Regional Development +393898,Transportation,Transportation +410156,Intellectual Property,Intellectual Property +413916,Industry,Industry +386501,Infrastructure,Infrastructure +386501,Economic Development,Economic Development +386501,Tourism,Tourism +395551,Industry,Industry +398419,International Trade,International Trade +384188,Health,Health +532036,Climate,Climate +384901,Consumer Issues,Consumer Issues +442598,Economic Development,Economic Development +521194,Environment,Environment +449639,Health,Health +443190,Immigration,Immigration +398910,Industry,Industry +464531,International Trade,International Trade +525503,Transportation,Transportation +422585,Industry,Industry +420271,Agriculture,Agriculture +410119,Health,Health +383445,Climate,Climate +383445,Economic Development,Economic Development +383445,Energy,Energy +383445,Environment,Environment +383445,Agriculture,Agriculture +383445,Industry,Industry +384980,Agriculture,Agriculture +388145,Transportation,Transportation +384817,Justice and Law Enforcement,Justice and Law Enforcement +398171,Religion,Religion +398171,Taxation and Finance,Taxation and Finance +393233,Climate,Climate +384015,Economic Development,Economic Development +393233,Energy,Energy +393233,Environment,Environment +383087,Education,Education +389338,Mining,Mining +383311,Environment,Environment +383311,Fisheries,Fisheries +384097,Environment,Environment +388525,Energy,Energy +388523,Environment,Environment +383099,Transportation,Transportation +532995,Employment and Training,Employment and Training +430582,Health,Health +430582,Research and Development,Research and Development +387742,Infrastructure,Infrastructure +398257,Education,Education +396230,Education,Education +385227,Budget,Budget +392572,Education,Education +383182,Infrastructure,Infrastructure +387735,Infrastructure,Infrastructure +383213,Transportation,Transportation +383216,Transportation,Transportation +383217,Transportation,Transportation +386478,Transportation,Transportation +387842,Government Procurement,Government Procurement +387355,Mining,Mining +387355,Fisheries,Fisheries +387355,Environment,Environment +420146,International Relations,International Relations +383271,Environment,Environment +383275,Security,Security +383310,Justice and Law Enforcement,Justice and Law Enforcement +514275,Budget,Budget +475678,Health,Health +385980,Economic Development,Economic Development +385980,Environment,Environment +385980,Infrastructure,Infrastructure +385980,Municipalities,Municipalities +385980,Regional Development,Regional Development +392643,Government Procurement,Government Procurement +432743,Industry,Industry +423160,Industry,Industry +470878,Defence,Defence +445349,Government Procurement,Government Procurement +395758,Economic Development,Economic Development +386506,Security,Security +430436,Climate,Climate +385218,Environment,Environment +488034,Economic Development,Economic Development +541452,Environment,Environment +383622,Climate,Climate +383668,Labour,Labour +383672,Labour,Labour +383673,Labour,Labour +383676,Labour,Labour +395130,Climate,Climate +397839,Economic Development,Economic Development +397839,Energy,Energy +395130,Environment,Environment +386477,Industry,Industry +386477,Infrastructure,Infrastructure +397839,Regional Development,Regional Development +395130,Taxation and Finance,Taxation and Finance +388690,Industry,Industry +388690,International Trade,International Trade +388690,Health,Health +386245,Research and Development,Recherche et développement +531573,Climate,Climate +383942,Transportation,Transports +436701,Environment,Environment +463754,Health,Health +383968,Immigration,Immigration +383968,Industry,Industry +395429,Economic Development,Développement économique +395429,Regional Development,Développement régional +385897,Government Procurement,Government Procurement +423261,Health,Health +385669,Employment and Training,Employment and Training +385980,Government Procurement,Government Procurement +384946,Economic Development,Economic Development +384946,Regional Development,Regional Development +384946,Research and Development,Research and Development +437769,Intellectual Property,Intellectual Property +416671,Privacy and Access to Information,Privacy and Access to Information +386722,Research and Development,Research and Development +386506,Justice and Law Enforcement,Justice and Law Enforcement +389708,Economic Development,Economic Development +389708,Health,Health +384671,Agriculture,Agriculture +384671,Health,Health +384021,Agriculture,Agriculture +387406,Education,Education +390096,Infrastructure,Infrastructure +390096,Employment and Training,Employment and Training +395429,Infrastructure,Infrastructure +468461,Economic Development,Economic Development +393322,Economic Development,Economic Development +393322,Government Procurement,Government Procurement +393322,Health,Health +386425,International Trade,International Trade +389694,Industry,Industry +397762,Health,Health +386059,Economic Development,Economic Development +424492,Infrastructure,Infrastructure +424491,Infrastructure,Infrastructure +424490,Infrastructure,Infrastructure +410427,Infrastructure,Infrastructure +410330,Infrastructure,Infrastructure +397874,Infrastructure,Infrastructure +397873,Infrastructure,Infrastructure +397872,Infrastructure,Infrastructure +385981,Economic Development,Economic Development +508662,Economic Development,Economic Development +466930,Economic Development,Economic Development +466928,Economic Development,Economic Development +466926,Economic Development,Economic Development +466925,Economic Development,Economic Development +408354,Economic Development,Economic Development +408349,Economic Development,Economic Development +408332,Economic Development,Economic Development +399967,Economic Development,Economic Development +385983,Economic Development,Economic Development +399967,Transportation,Transportation +385983,Transportation,Transportation +385982,Transportation,Transportation +385981,Transportation,Transportation +508662,Transportation,Transportation +494836,Transportation,Transportation +466930,Transportation,Transportation +466928,Transportation,Transportation +466926,Transportation,Transportation +466925,Transportation,Transportation +453802,Transportation,Transportation +453801,Transportation,Transportation +408354,Transportation,Transportation +408349,Transportation,Transportation +408332,Transportation,Transportation +506410,International Trade,International Trade +494836,International Trade,International Trade +408354,International Trade,International Trade +408349,International Trade,International Trade +408332,International Trade,International Trade +406063,International Trade,International Trade +399967,International Trade,International Trade +385983,International Trade,International Trade +385982,International Trade,International Trade +385981,International Trade,International Trade +466930,International Trade,International Trade +466928,International Trade,International Trade +466926,International Trade,International Trade +466925,International Trade,International Trade +453802,International Trade,International Trade +453801,International Trade,International Trade +466926,Infrastructure,Infrastructure +466925,Infrastructure,Infrastructure +453802,Infrastructure,Infrastructure +453801,Infrastructure,Infrastructure +408354,Infrastructure,Infrastructure +408349,Infrastructure,Infrastructure +408332,Infrastructure,Infrastructure +406063,Infrastructure,Infrastructure +399967,Infrastructure,Infrastructure +385983,Infrastructure,Infrastructure +385982,Infrastructure,Infrastructure +385981,Infrastructure,Infrastructure +466930,Infrastructure,Infrastructure +466930,Regional Development,Regional Development +466926,Regional Development,Regional Development +408354,Regional Development,Regional Development +408349,Regional Development,Regional Development +408332,Regional Development,Regional Development +399967,Regional Development,Regional Development +385983,Regional Development,Regional Development +385982,Regional Development,Regional Development +506410,Environment,Environment +494836,Environment,Environment +466930,Environment,Environment +466928,Environment,Environment +466926,Environment,Environment +466925,Environment,Environment +453802,Environment,Environment +453801,Environment,Environment +408354,Environment,Environment +408349,Environment,Environment +408332,Environment,Environment +399967,Environment,Environment +385983,Environment,Environment +385982,Environment,Environment +385981,Environment,Environment +519067,Sports,Sports +509365,Sports,Sports +411814,Sports,Sports +407658,Sports,Sports +407656,Sports,Sports +407654,Sports,Sports +489010,Sports,Sports +463255,Sports,Sports +454366,Sports,Sports +454364,Sports,Sports +454363,Sports,Sports +454362,Sports,Sports +454361,Sports,Sports +454153,Sports,Sports +441349,Sports,Sports +526987,Sports,Sports +523590,Sports,Sports +521923,Sports,Sports +521921,Sports,Sports +521181,Sports,Sports +521101,Sports,Sports +520899,Sports,Sports +454153,Health,Health +441349,Health,Health +411814,Health,Health +407658,Health,Health +407656,Health,Health +407654,Health,Health +526987,Health,Health +523590,Health,Health +521923,Health,Health +521921,Health,Health +521551,Health,Health +521181,Health,Health +521101,Health,Health +521100,Health,Health +520899,Health,Health +520507,Health,Health +520505,Health,Health +519379,Health,Health +519067,Health,Health +500462,Health,Health +494420,Health,Health +489010,Health,Health +463255,Health,Health +454366,Health,Health +454364,Health,Health +454363,Health,Health +454362,Health,Health +407656,Education,Education +407654,Education,Education +524109,Education,Education +519379,Education,Education +407658,Taxation and Finance,Taxation and Finance +407656,Taxation and Finance,Taxation and Finance +407654,Taxation and Finance,Taxation and Finance +526987,Taxation and Finance,Taxation and Finance +524109,Taxation and Finance,Taxation and Finance +523590,Taxation and Finance,Taxation and Finance +521101,Taxation and Finance,Taxation and Finance +521100,Taxation and Finance,Taxation and Finance +509365,Taxation and Finance,Taxation and Finance +441349,Budget,Budget +411814,Budget,Budget +407658,Budget,Budget +407656,Budget,Budget +407654,Budget,Budget +526987,Budget,Budget +524109,Budget,Budget +523590,Budget,Budget +521923,Budget,Budget +521921,Budget,Budget +521551,Budget,Budget +521181,Budget,Budget +521101,Budget,Budget +521100,Budget,Budget +520899,Budget,Budget +520507,Budget,Budget +520505,Budget,Budget +519379,Budget,Budget +519067,Budget,Budget +500462,Budget,Budget +494420,Budget,Budget +382841,Industry,Industry +382841,Energy,Energy +518830,Economic Development,Economic Development +518828,Economic Development,Economic Development +432055,Economic Development,Economic Development +431460,Economic Development,Economic Development +431053,Economic Development,Economic Development +429528,Economic Development,Economic Development +423818,Economic Development,Economic Development +418915,Economic Development,Economic Development +418190,Economic Development,Economic Development +412632,Economic Development,Economic Development +412626,Economic Development,Economic Development +406861,Economic Development,Economic Development +404942,Economic Development,Economic Development +395231,Economic Development,Economic Development +391300,Infrastructure,Infrastructure +389517,Infrastructure,Infrastructure +394592,Infrastructure,Infrastructure +387160,Economic Development,Economic Development +420850,Employment and Training,Employment and Training +387160,Industry,Industry +387157,Industry,Industry +420847,Infrastructure,Infrastructure +420846,Infrastructure,Infrastructure +387163,Infrastructure,Infrastructure +387160,Infrastructure,Infrastructure +387160,Transportation,Transportation +387157,Transportation,Transportation +420851,Transportation,Transportation +420847,Transportation,Transportation +420846,Transportation,Transportation +431903,Education,Education +423485,Education,Education +470104,Education,Education +470101,Education,Education +454439,Education,Education +481884,Employment and Training,Employment and Training +470104,Employment and Training,Employment and Training +456677,Employment and Training,Employment and Training +454439,Employment and Training,Employment and Training +443072,Employment and Training,Employment and Training +431904,Employment and Training,Employment and Training +431903,Employment and Training,Employment and Training +384921,Employment and Training,Employment and Training +384309,Employment and Training,Employment and Training +384308,Employment and Training,Employment and Training +384307,Health,Health +384303,Health,Health +470104,Health,Health +470101,Health,Health +456677,Health,Health +454439,Health,Health +443072,Health,Health +431904,Health,Health +431903,Health,Health +423485,Health,Health +423482,Health,Health +384921,Health,Health +384309,Health,Health +394267,Municipalities,Municipalities +415650,Industry,Industry +415650,Official Languages,Official Languages +415650,Transportation,Transportation +382920,Employment and Training,Employment and Training +382919,Employment and Training,Employment and Training +384255,Industry,Industry +485367,Official Languages,Official Languages +465635,Official Languages,Official Languages +422928,Official Languages,Official Languages +422880,Official Languages,Official Languages +422075,Official Languages,Official Languages +418659,Official Languages,Official Languages +418658,Official Languages,Official Languages +418656,Official Languages,Official Languages +408530,Official Languages,Official Languages +397422,Official Languages,Official Languages +397271,Official Languages,Official Languages +397270,Official Languages,Official Languages +393112,Official Languages,Official Languages +386194,Official Languages,Official Languages +386193,Official Languages,Official Languages +384255,Official Languages,Official Languages +384254,Official Languages,Official Languages +384253,Official Languages,Official Languages +382920,Official Languages,Official Languages +382919,Official Languages,Official Languages +382907,Official Languages,Official Languages +532934,Official Languages,Official Languages +527459,Official Languages,Official Languages +527457,Official Languages,Official Languages +520886,Official Languages,Official Languages +507705,Official Languages,Official Languages +486227,Official Languages,Official Languages +485384,Official Languages,Official Languages +418658,Transportation,Transportation +418656,Transportation,Transportation +384255,Transportation,Transportation +384253,Transportation,Transportation +382920,Transportation,Transportation +382907,Transportation,Transportation +486227,Transportation,Transportation +440635,Transportation,Transportation +422928,Transportation,Transportation +422075,Transportation,Transportation +472817,Fisheries,Fisheries +460040,Fisheries,Fisheries +382892,Fisheries,Fisheries +434913,Fisheries,Fisheries +433033,Fisheries,Fisheries +433030,Fisheries,Fisheries +430289,Fisheries,Fisheries +430288,Fisheries,Fisheries +430287,Fisheries,Fisheries +421417,Fisheries,Fisheries +419113,Fisheries,Fisheries +419108,Fisheries,Fisheries +412854,Fisheries,Fisheries +412848,Fisheries,Fisheries +539969,Fisheries,Fisheries +519539,Fisheries,Fisheries +516739,Fisheries,Fisheries +505303,Fisheries,Fisheries +502412,Fisheries,Fisheries +498430,Fisheries,Fisheries +481764,Fisheries,Fisheries +383991,Energy,Energy +383990,Energy,Energy +383989,Energy,Energy +387653,Energy,Energy +385926,Energy,Energy +385925,Energy,Energy +385924,Energy,Energy +383995,Energy,Energy +383994,Energy,Energy +383993,Energy,Energy +383990,Environment,Environment +383989,Environment,Environment +383995,Environment,Environment +383994,Environment,Environment +383993,Environment,Environment +383992,Environment,Environment +383990,International Trade,International Trade +383989,International Trade,International Trade +383995,International Trade,International Trade +383994,International Trade,International Trade +383993,International Trade,International Trade +383992,International Trade,International Trade +383129,Taxation and Finance,Taxation and Finance +383129,Budget,Budget +389107,Government Procurement,Government Procurement +383129,Health,Health +383129,Housing,Housing +383129,Infrastructure,Infrastructure +392904,Transportation,Transportation +394282,Intellectual Property,Intellectual Property +413916,Intellectual Property,Intellectual Property +394282,Industry,Industry +395550,Industry,Industry +484696,Industry,Industry +429841,Industry,Industry +421102,Industry,Industry +405438,Industry,Industry +405419,Industry,Industry +405408,Industry,Industry +398419,Industry,Industry +395554,Industry,Industry +395553,Industry,Industry +395552,Industry,Industry +515773,International Trade,International Trade +521194,Climate,Climate +519918,Climate,Climate +402599,Economic Development,Economic Development +521194,Economic Development,Economic Development +519918,Environment,Environment +519917,Environment,Environment +509907,Environment,Environment +527071,Environment,Environment +439016,Immigration,Immigration +430706,Immigration,Immigration +405069,Immigration,Immigration +402608,Immigration,Immigration +395227,Immigration,Immigration +391765,Immigration,Immigration +398909,Industry,Industry +439621,Industry,Industry +428373,Industry,Industry +407570,Industry,Industry +402598,Industry,Industry +464529,International Trade,International Trade +464523,International Trade,International Trade +449696,International Trade,International Trade +449640,International Trade,International Trade +445351,International Trade,International Trade +442930,International Trade,International Trade +439623,International Trade,International Trade +439622,International Trade,International Trade +435731,International Trade,International Trade +435723,International Trade,International Trade +428370,International Trade,International Trade +428367,International Trade,International Trade +428363,International Trade,International Trade +428359,International Trade,International Trade +428355,International Trade,International Trade +419618,International Trade,International Trade +418969,International Trade,International Trade +409059,International Trade,International Trade +407573,International Trade,International Trade +407567,International Trade,International Trade +407290,International Trade,International Trade +407289,International Trade,International Trade +407288,International Trade,International Trade +406741,International Trade,International Trade +406740,International Trade,International Trade +402611,International Trade,International Trade +402606,International Trade,International Trade +395226,International Trade,International Trade +395225,International Trade,International Trade +384916,International Trade,International Trade +384915,International Trade,International Trade +384901,International Trade,International Trade +525503,International Trade,International Trade +506341,International Trade,International Trade +464538,International Trade,International Trade +464536,International Trade,International Trade +464535,International Trade,International Trade +464534,International Trade,International Trade +525501,Transportation,Transportation +457475,Transportation,Transportation +428363,Transportation,Transportation +397221,Transportation,Transportation +397220,Transportation,Transportation +397219,Transportation,Transportation +397218,Transportation,Transportation +397216,Transportation,Transportation +384918,Transportation,Transportation +384909,Transportation,Transportation +384908,Transportation,Transportation +420271,Industry,Industry +408858,Health,Health +383444,Climate,Climate +383444,Economic Development,Economic Development +383444,Energy,Energy +383444,Environment,Environment +383444,Industry,Industry +384982,Transportation,Transportation +384980,Transportation,Transportation +408231,Transportation,Transportation +408228,Transportation,Transportation +408225,Transportation,Transportation +406912,Transportation,Transportation +399415,Transportation,Transportation +399413,Transportation,Transportation +399411,Transportation,Transportation +399409,Transportation,Transportation +397091,Transportation,Transportation +397088,Transportation,Transportation +397082,Transportation,Transportation +392343,Climate,Climate +384015,Climate,Climate +395334,Climate,Climate +395334,Economic Development,Economic Development +393233,Economic Development,Economic Development +392343,Economic Development,Economic Development +392343,Energy,Energy +384015,Energy,Energy +395334,Energy,Energy +392343,Environment,Environment +384015,Environment,Environment +395334,Environment,Environment +389337,Mining,Mining +383311,Mining,Mining +389341,Mining,Mining +389340,Mining,Mining +389339,Mining,Mining +388523,Energy,Energy +388521,Energy,Energy +388520,Energy,Energy +388521,Environment,Environment +388520,Environment,Environment +388525,Environment,Environment +383098,Transportation,Transportation +383097,Transportation,Transportation +383100,Transportation,Transportation +532995,Health,Health +387730,Infrastructure,Infrastructure +383160,Infrastructure,Infrastructure +392547,Infrastructure,Infrastructure +396235,Education,Education +396228,Education,Education +387758,Education,Education +387754,Education,Education +387727,Education,Education +383163,Education,Education +385240,Education,Education +383170,Education,Education +399898,Education,Education +385225,Budget,Budget +383173,Budget,Budget +392564,Budget,Budget +389705,Budget,Budget +387741,Budget,Budget +387726,Budget,Budget +385239,Budget,Budget +385237,Budget,Budget +385232,Budget,Budget +383180,Education,Education +396248,Infrastructure,Infrastructure +393712,Infrastructure,Infrastructure +387739,Infrastructure,Infrastructure +385233,Infrastructure,Infrastructure +383183,Infrastructure,Infrastructure +396231,Infrastructure,Infrastructure +392574,Infrastructure,Infrastructure +389719,Infrastructure,Infrastructure +389713,Infrastructure,Infrastructure +383218,Transportation,Transportation +387354,Mining,Mining +387349,Mining,Mining +387349,Fisheries,Fisheries +387354,Environment,Environment +387349,Environment,Environment +383269,International Relations,International Relations +514274,Budget,Budget +514273,Budget,Budget +514277,Budget,Budget +514276,Budget,Budget +475672,Health,Health +475666,Health,Health +512829,Health,Health +512828,Health,Health +512826,Health,Health +512824,Health,Health +512822,Health,Health +512818,Health,Health +512817,Health,Health +510328,Health,Health +510326,Health,Health +510320,Health,Health +508514,Health,Health +508511,Health,Health +508504,Health,Health +493393,Health,Health +479899,Health,Health +477383,Health,Health +477375,Health,Health +477369,Health,Health +475686,Health,Health +392642,Government Procurement,Government Procurement +536563,Government Procurement,Government Procurement +392646,Government Procurement,Government Procurement +392645,Government Procurement,Government Procurement +392644,Government Procurement,Government Procurement +407111,Industry,Industry +405948,Industry,Industry +437633,Industry,Industry +410722,Industry,Industry +408767,Industry,Industry +444159,Industry,Industry +389794,Government Procurement,Government Procurement +395756,Economic Development,Economic Development +390450,Economic Development,Economic Development +384528,Economic Development,Economic Development +384527,Economic Development,Economic Development +384526,Economic Development,Economic Development +384525,Economic Development,Economic Development +384524,Economic Development,Economic Development +384521,Economic Development,Economic Development +384520,Economic Development,Economic Development +414160,Economic Development,Economic Development +412997,Economic Development,Economic Development +412996,Economic Development,Economic Development +410406,Economic Development,Economic Development +406429,Economic Development,Economic Development +403078,Economic Development,Economic Development +403077,Economic Development,Economic Development +403076,Economic Development,Economic Development +403075,Economic Development,Economic Development +403074,Economic Development,Economic Development +403072,Economic Development,Economic Development +403070,Economic Development,Economic Development +403068,Economic Development,Economic Development +403065,Economic Development,Economic Development +400195,Economic Development,Economic Development +398448,Economic Development,Economic Development +398447,Economic Development,Economic Development +398446,Economic Development,Economic Development +398444,Economic Development,Economic Development +398440,Economic Development,Economic Development +395764,Economic Development,Economic Development +395763,Economic Development,Economic Development +395762,Economic Development,Economic Development +395761,Economic Development,Economic Development +395760,Economic Development,Economic Development +384177,Security,Security +384171,Security,Security +399702,Security,Security +397641,Security,Security +390063,Security,Security +430434,Climate,Climate +429298,Climate,Climate +425013,Climate,Climate +425012,Climate,Climate +424990,Climate,Climate +424987,Climate,Climate +424862,Climate,Climate +424326,Climate,Climate +414718,Climate,Climate +412041,Climate,Climate +411600,Climate,Climate +411466,Climate,Climate +411452,Climate,Climate +411434,Climate,Climate +401854,Climate,Climate +401835,Climate,Climate +401833,Climate,Climate +387379,Climate,Climate +387377,Climate,Climate +387373,Climate,Climate +387370,Climate,Climate +387368,Climate,Climate +387367,Climate,Climate +385122,Climate,Climate +383557,Climate,Climate +383551,Climate,Climate +383550,Climate,Climate +383535,Climate,Climate +544806,Climate,Climate +543781,Climate,Climate +541951,Climate,Climate +541597,Climate,Climate +541594,Climate,Climate +541592,Climate,Climate +529233,Climate,Climate +529013,Climate,Climate +522983,Climate,Climate +522024,Climate,Climate +516992,Climate,Climate +516979,Climate,Climate +503882,Climate,Climate +500707,Climate,Climate +484286,Climate,Climate +481357,Climate,Climate +441893,Climate,Climate +441889,Climate,Climate +441883,Climate,Climate +441876,Climate,Climate +441869,Climate,Climate +441863,Climate,Climate +433482,Climate,Climate +433481,Climate,Climate +433475,Climate,Climate +433472,Climate,Climate +432358,Climate,Climate +488032,Economic Development,Economic Development +488031,Economic Development,Economic Development +414706,Economic Development,Economic Development +414325,Economic Development,Economic Development +383617,Economic Development,Economic Development +488041,Economic Development,Economic Development +488039,Economic Development,Economic Development +488037,Economic Development,Economic Development +488036,Economic Development,Economic Development +539913,Environment,Environment +539902,Environment,Environment +405495,Environment,Environment +405491,Environment,Environment +403486,Environment,Environment +394604,Environment,Environment +394601,Environment,Environment +389089,Environment,Environment +385305,Environment,Environment +383627,Environment,Environment +383626,Environment,Environment +383625,Environment,Environment +383624,Environment,Environment +383622,Environment,Environment +496312,Environment,Environment +451813,Environment,Environment +451799,Environment,Environment +544159,Environment,Environment +544158,Environment,Environment +544155,Environment,Environment +544150,Environment,Environment +544145,Environment,Environment +541470,Environment,Environment +541460,Environment,Environment +541458,Environment,Environment +538599,Climate,Climate +538597,Climate,Climate +468454,Climate,Climate +468453,Climate,Climate +422888,Climate,Climate +422887,Climate,Climate +405495,Climate,Climate +405491,Climate,Climate +403486,Climate,Climate +394604,Climate,Climate +394601,Climate,Climate +389089,Climate,Climate +385305,Climate,Climate +383726,Climate,Climate +383716,Climate,Climate +383627,Climate,Climate +383626,Climate,Climate +383625,Climate,Climate +383624,Climate,Climate +386785,Climate,Climate +386475,Climate,Climate +386477,Economic Development,Economic Development +386475,Economic Development,Economic Development +395130,Energy,Energy +386785,Energy,Energy +386477,Energy,Energy +386475,Energy,Energy +386468,Energy,Energy +386785,Environment,Environment +386475,Environment,Environment +397839,Environment,Environment +386475,Industry,Industry +386468,Industry,Industry +386785,Industry,Industry +386475,Infrastructure,Infrastructure +386477,Regional Development,Regional Development +386475,Regional Development,Regional Development +386477,Taxation and Finance,Taxation and Finance +386475,Taxation and Finance,Taxation and Finance +383983,Research and Development,Recherche et développement +531570,Climate,Climate +529070,Climate,Climate +423606,Climate,Climate +417856,Climate,Climate +417854,Climate,Climate +405121,Climate,Climate +405120,Climate,Climate +402851,Climate,Climate +393960,Climate,Climate +393959,Climate,Climate +393956,Climate,Climate +393950,Climate,Climate +393947,Climate,Climate +393938,Climate,Climate +387710,Climate,Climate +385138,Climate,Climate +385097,Climate,Climate +385095,Climate,Climate +384237,Climate,Climate +384235,Climate,Climate +384230,Climate,Climate +384229,Climate,Climate +384226,Climate,Climate +384225,Climate,Climate +384224,Climate,Climate +384044,Climate,Climate +383911,Climate,Climate +522367,Climate,Climate +514125,Climate,Climate +514124,Climate,Climate +512765,Climate,Climate +510444,Climate,Climate +509445,Climate,Climate +507502,Climate,Climate +498232,Climate,Climate +449246,Climate,Climate +444959,Climate,Climate +444952,Climate,Climate +444937,Climate,Climate +438504,Climate,Climate +438492,Climate,Climate +435199,Climate,Climate +430465,Climate,Climate +430464,Climate,Climate +430462,Climate,Climate +429586,Climate,Climate +429585,Climate,Climate +428652,Climate,Climate +428651,Climate,Climate +543852,Climate,Climate +543850,Climate,Climate +541757,Climate,Climate +541745,Climate,Climate +541739,Climate,Climate +541737,Climate,Climate +539946,Climate,Climate +539943,Climate,Climate +539942,Climate,Climate +539939,Climate,Climate +539936,Climate,Climate +537827,Climate,Climate +537825,Climate,Climate +537820,Climate,Climate +537815,Climate,Climate +535046,Climate,Climate +535041,Climate,Climate +424494,Environment,Environment +394371,Environment,Environment +480720,Environment,Environment +480719,Environment,Environment +445885,Health,Health +424494,Health,Health +413980,Health,Health +412994,Health,Health +412993,Health,Health +394371,Health,Health +386063,Health,Health +385963,Health,Health +385962,Health,Health +480720,Health,Health +476169,Health,Health +395066,Economic Development,Développement économique +394803,Economic Development,Développement économique +398235,Economic Development,Développement économique +395066,Regional Development,Développement régional +394803,Regional Development,Développement régional +398235,Regional Development,Développement régional +389997,Health,Health +430017,Intellectual Property,Intellectual Property +427413,Intellectual Property,Intellectual Property +427411,Intellectual Property,Intellectual Property +427410,Intellectual Property,Intellectual Property +427409,Intellectual Property,Intellectual Property +421962,Intellectual Property,Intellectual Property +421961,Intellectual Property,Intellectual Property +421959,Intellectual Property,Intellectual Property +416671,Intellectual Property,Intellectual Property +508018,Intellectual Property,Intellectual Property +495610,Intellectual Property,Intellectual Property +490562,Intellectual Property,Intellectual Property +437775,Intellectual Property,Intellectual Property +437772,Intellectual Property,Intellectual Property +508018,Privacy and Access to Information,Privacy and Access to Information +490562,Privacy and Access to Information,Privacy and Access to Information +421962,Privacy and Access to Information,Privacy and Access to Information +421961,Privacy and Access to Information,Privacy and Access to Information +421959,Privacy and Access to Information,Privacy and Access to Information +386721,Research and Development,Research and Development +416671,Research and Development,Research and Development +386728,Research and Development,Research and Development +386727,Research and Development,Research and Development +386726,Research and Development,Research and Development +386725,Research and Development,Research and Development +386724,Research and Development,Research and Development +386723,Research and Development,Research and Development +384177,Justice and Law Enforcement,Justice and Law Enforcement +384171,Justice and Law Enforcement,Justice and Law Enforcement +389707,Economic Development,Economic Development +387766,Economic Development,Economic Development +393729,Economic Development,Economic Development +393726,Economic Development,Economic Development +392570,Economic Development,Economic Development +392567,Economic Development,Economic Development +392538,Economic Development,Economic Development +389720,Economic Development,Economic Development +389718,Economic Development,Economic Development +389716,Economic Development,Economic Development +389712,Economic Development,Economic Development +389707,Health,Health +387766,Health,Health +393729,Health,Health +393726,Health,Health +392570,Health,Health +392567,Health,Health +392538,Health,Health +389720,Health,Health +389718,Health,Health +389716,Health,Health +389712,Health,Health +384670,Agriculture,Agriculture +384669,Agriculture,Agriculture +384683,Agriculture,Agriculture +384682,Agriculture,Agriculture +384681,Agriculture,Agriculture +384680,Agriculture,Agriculture +384679,Agriculture,Agriculture +384678,Agriculture,Agriculture +384677,Agriculture,Agriculture +384675,Agriculture,Agriculture +384674,Agriculture,Agriculture +384672,Agriculture,Agriculture +384670,Health,Health +384669,Health,Health +384683,Health,Health +384682,Health,Health +384681,Health,Health +384680,Health,Health +384679,Health,Health +384678,Health,Health +384677,Health,Health +384675,Health,Health +384674,Health,Health +384672,Health,Health +390095,Infrastructure,Infrastructure +387406,Infrastructure,Infrastructure +390095,Employment and Training,Employment and Training +387406,Employment and Training,Employment and Training +397815,Employment and Training,Employment and Training +393596,Employment and Training,Employment and Training +395066,Infrastructure,Infrastructure +394803,Infrastructure,Infrastructure +398235,Infrastructure,Infrastructure +468460,Economic Development,Economic Development +439685,Economic Development,Economic Development +404353,Economic Development,Economic Development +396828,Economic Development,Economic Development +396825,Economic Development,Economic Development +384039,Economic Development,Economic Development +499218,Economic Development,Economic Development +468471,Economic Development,Economic Development +387777,Health,Health +386804,Industry,Industry +386197,Industry,Industry +398252,Industry,Industry +397208,Industry,Industry +397207,Industry,Industry +396305,Industry,Industry +395230,Industry,Industry +384084,Health,Health +379121,Science and Technology,Science and Technology +373126,Broadcasting,Broadcasting +373125,Broadcasting,Broadcasting +373128,Broadcasting,Broadcasting +373126,Telecommunications,Telecommunications +373125,Telecommunications,Telecommunications +374073,Telecommunications,Telecommunications +374072,Telecommunications,Telecommunications +373128,Telecommunications,Telecommunications +371286,Aboriginal Affairs,Aboriginal Affairs +371291,Aboriginal Affairs,Aboriginal Affairs +371289,Aboriginal Affairs,Aboriginal Affairs +371288,Aboriginal Affairs,Aboriginal Affairs +513288,Aboriginal Affairs,Aboriginal Affairs +482366,Aboriginal Affairs,Aboriginal Affairs +379834,Aboriginal Affairs,Aboriginal Affairs +379693,Aboriginal Affairs,Aboriginal Affairs +379689,Aboriginal Affairs,Aboriginal Affairs +403677,Aboriginal Affairs,Aboriginal Affairs +395878,Aboriginal Affairs,Aboriginal Affairs +395875,Aboriginal Affairs,Aboriginal Affairs +395873,Aboriginal Affairs,Aboriginal Affairs +475518,Science and Technology,Science and Technology +470987,Science and Technology,Science and Technology +426332,Science and Technology,Science and Technology +426330,Science and Technology,Science and Technology +426327,Science and Technology,Science and Technology +426325,Science and Technology,Science and Technology +424047,Science and Technology,Science and Technology +421799,Science and Technology,Science and Technology +421797,Science and Technology,Science and Technology +420210,Science and Technology,Science and Technology +420205,Science and Technology,Science and Technology +420202,Science and Technology,Science and Technology +420201,Science and Technology,Science and Technology +420179,Science and Technology,Science and Technology +416554,Science and Technology,Science and Technology +416552,Science and Technology,Science and Technology +395878,Science and Technology,Science and Technology +395875,Science and Technology,Science and Technology +395873,Science and Technology,Science and Technology +395871,Science and Technology,Science and Technology +391168,Science and Technology,Science and Technology +379834,Science and Technology,Science and Technology +379689,Science and Technology,Science and Technology +537499,Science and Technology,Science and Technology +524979,Science and Technology,Science and Technology +524977,Science and Technology,Science and Technology +515859,Science and Technology,Science and Technology +515852,Science and Technology,Science and Technology +513295,Science and Technology,Science and Technology +513292,Science and Technology,Science and Technology +513290,Science and Technology,Science and Technology +504639,Science and Technology,Science and Technology +502336,Science and Technology,Science and Technology +502335,Science and Technology,Science and Technology +502276,Science and Technology,Science and Technology +502272,Science and Technology,Science and Technology +411711,Aboriginal Affairs,Aboriginal Affairs +411358,Aboriginal Affairs,Aboriginal Affairs +374773,Aboriginal Affairs,Aboriginal Affairs +369534,Aboriginal Affairs,Aboriginal Affairs +369527,Aboriginal Affairs,Aboriginal Affairs +381741,Science and Technology,Science and Technology +376318,Science and Technology,Science and Technology +380551,Aboriginal Affairs,Aboriginal Affairs +370518,Aboriginal Affairs,Aboriginal Affairs +371200,Arts and Culture,Arts and Culture +417261,Arts and Culture,Arts and Culture +377991,Aboriginal Affairs,Aboriginal Affairs +370522,Aboriginal Affairs,Aboriginal Affairs +378064,Aboriginal Affairs,Aboriginal Affairs +378066,Aboriginal Affairs,Aboriginal Affairs +378065,Aboriginal Affairs,Aboriginal Affairs +378068,Aboriginal Affairs,Aboriginal Affairs +373012,Aboriginal Affairs,Aboriginal Affairs +373011,Aboriginal Affairs,Aboriginal Affairs +400182,Aboriginal Affairs,Aboriginal Affairs +400179,Aboriginal Affairs,Aboriginal Affairs +400168,Aboriginal Affairs,Aboriginal Affairs +380258,Aboriginal Affairs,Aboriginal Affairs +380247,Aboriginal Affairs,Aboriginal Affairs +369182,Aboriginal Affairs,Aboriginal Affairs +370765,Aboriginal Affairs,Aboriginal Affairs +370763,Aboriginal Affairs,Aboriginal Affairs +368775,Arts and Culture,Arts and Culture +431247,Aboriginal Affairs,Aboriginal Affairs +425647,Aboriginal Affairs,Aboriginal Affairs +409417,Aboriginal Affairs,Aboriginal Affairs +403365,Aboriginal Affairs,Aboriginal Affairs +403357,Aboriginal Affairs,Aboriginal Affairs +403350,Aboriginal Affairs,Aboriginal Affairs +403347,Aboriginal Affairs,Aboriginal Affairs +403344,Aboriginal Affairs,Aboriginal Affairs +403340,Aboriginal Affairs,Aboriginal Affairs +403336,Aboriginal Affairs,Aboriginal Affairs +403331,Aboriginal Affairs,Aboriginal Affairs +403328,Aboriginal Affairs,Aboriginal Affairs +399803,Aboriginal Affairs,Aboriginal Affairs +399799,Aboriginal Affairs,Aboriginal Affairs +397333,Aboriginal Affairs,Aboriginal Affairs +378193,Aboriginal Affairs,Aboriginal Affairs +378192,Aboriginal Affairs,Aboriginal Affairs +378191,Aboriginal Affairs,Aboriginal Affairs +378190,Aboriginal Affairs,Aboriginal Affairs +378189,Aboriginal Affairs,Aboriginal Affairs +378188,Aboriginal Affairs,Aboriginal Affairs +378187,Aboriginal Affairs,Aboriginal Affairs +378186,Aboriginal Affairs,Aboriginal Affairs +378185,Aboriginal Affairs,Aboriginal Affairs +378184,Aboriginal Affairs,Aboriginal Affairs +378183,Aboriginal Affairs,Aboriginal Affairs +378182,Aboriginal Affairs,Aboriginal Affairs +378181,Aboriginal Affairs,Aboriginal Affairs +378180,Aboriginal Affairs,Aboriginal Affairs +378179,Aboriginal Affairs,Aboriginal Affairs +378178,Aboriginal Affairs,Aboriginal Affairs +378177,Aboriginal Affairs,Aboriginal Affairs +378176,Aboriginal Affairs,Aboriginal Affairs +378175,Aboriginal Affairs,Aboriginal Affairs +378174,Aboriginal Affairs,Aboriginal Affairs +370475,Aboriginal Affairs,Aboriginal Affairs +369786,Aboriginal Affairs,Aboriginal Affairs +502766,Aboriginal Affairs,Aboriginal Affairs +499567,Aboriginal Affairs,Aboriginal Affairs +462826,Aboriginal Affairs,Aboriginal Affairs +418290,Science and Technology,Science and Technology +529742,Science and Technology,Science and Technology +403373,Science and Technology,Science and Technology +403331,Science and Technology,Science and Technology +403328,Science and Technology,Science and Technology +397333,Science and Technology,Science and Technology +378193,Science and Technology,Science and Technology +378192,Science and Technology,Science and Technology +378191,Science and Technology,Science and Technology +378190,Science and Technology,Science and Technology +378189,Science and Technology,Science and Technology +378188,Science and Technology,Science and Technology +378187,Science and Technology,Science and Technology +378186,Science and Technology,Science and Technology +378185,Science and Technology,Science and Technology +378184,Science and Technology,Science and Technology +378183,Science and Technology,Science and Technology +378182,Science and Technology,Science and Technology +378181,Science and Technology,Science and Technology +378180,Science and Technology,Science and Technology +378179,Science and Technology,Science and Technology +378178,Science and Technology,Science and Technology +378177,Science and Technology,Science and Technology +378176,Science and Technology,Science and Technology +378175,Science and Technology,Science and Technology +378174,Science and Technology,Science and Technology +378173,Science and Technology,Science and Technology +373751,Science and Technology,Science and Technology +369786,Science and Technology,Science and Technology +376847,Aboriginal Affairs,Aboriginal Affairs +374801,Aboriginal Affairs,Aboriginal Affairs +408142,Aboriginal Affairs,Aboriginal Affairs +385408,Aboriginal Affairs,Aboriginal Affairs +376847,Science and Technology,Science and Technology +374801,Science and Technology,Science and Technology +369435,Science and Technology,Science and Technology +408142,Science and Technology,Science and Technology +391436,Science and Technology,Science and Technology +390041,Science and Technology,Science and Technology +388272,Science and Technology,Science and Technology +388268,Science and Technology,Science and Technology +388258,Science and Technology,Science and Technology +385408,Science and Technology,Science and Technology +383940,Science and Technology,Science and Technology +381375,Science and Technology,Science and Technology +381333,Science and Technology,Science and Technology +393102,Aboriginal Affairs,Aboriginal Affairs +393100,Aboriginal Affairs,Aboriginal Affairs +382262,Aboriginal Affairs,Aboriginal Affairs +382261,Aboriginal Affairs,Aboriginal Affairs +382260,Aboriginal Affairs,Aboriginal Affairs +370304,Science and Technology,Science and Technology +399347,Science and Technology,Science and Technology +419327,Arts and Culture,Arts and Culture +369275,Arts and Culture,Arts and Culture +422318,Arts and Culture,Arts and Culture +422316,Arts and Culture,Arts and Culture +422315,Arts and Culture,Arts and Culture +372892,Arts and Culture,Arts and Culture +370289,Arts and Culture,Arts and Culture +406161,Arts and Culture,Arts and Culture +402658,Arts and Culture,Arts and Culture +401286,Arts and Culture,Arts and Culture +401285,Arts and Culture,Arts and Culture +397232,Arts and Culture,Arts and Culture +386446,Arts and Culture,Arts and Culture +383126,Arts and Culture,Arts and Culture +380269,Arts and Culture,Arts and Culture +380268,Arts and Culture,Arts and Culture +406161,Broadcasting,Broadcasting +401285,Broadcasting,Broadcasting +397232,Broadcasting,Broadcasting +386446,Broadcasting,Broadcasting +380269,Broadcasting,Broadcasting +380267,Broadcasting,Broadcasting +483785,Science and Technology,Science and Technology +461117,Science and Technology,Science and Technology +381380,Science and Technology,Science and Technology +423246,Science and Technology,Science and Technology +423242,Science and Technology,Science and Technology +393059,Science and Technology,Science and Technology +371789,Arts and Culture,Arts and Culture +371808,Arts and Culture,Arts and Culture +370360,Aboriginal Affairs,Aboriginal Affairs +370358,Aboriginal Affairs,Aboriginal Affairs +397864,Aboriginal Affairs,Aboriginal Affairs +383409,Aboriginal Affairs,Aboriginal Affairs +383401,Aboriginal Affairs,Aboriginal Affairs +370419,Aboriginal Affairs,Aboriginal Affairs +370369,Aboriginal Affairs,Aboriginal Affairs +370363,Aboriginal Affairs,Aboriginal Affairs +380544,Aboriginal Affairs,Aboriginal Affairs +380541,Aboriginal Affairs,Aboriginal Affairs +465269,Telecommunications,Telecommunications +463301,Telecommunications,Telecommunications +444299,Telecommunications,Telecommunications +428677,Telecommunications,Telecommunications +421889,Telecommunications,Telecommunications +417539,Telecommunications,Telecommunications +394092,Telecommunications,Telecommunications +386404,Telecommunications,Telecommunications +375789,Telecommunications,Telecommunications +521403,Telecommunications,Telecommunications +515970,Telecommunications,Telecommunications +515036,Telecommunications,Telecommunications +510257,Telecommunications,Telecommunications +497157,Telecommunications,Telecommunications +494746,Telecommunications,Telecommunications +494705,Telecommunications,Telecommunications +485842,Telecommunications,Telecommunications +482923,Telecommunications,Telecommunications +480910,Telecommunications,Telecommunications +480871,Telecommunications,Telecommunications +480445,Telecommunications,Telecommunications +478755,Telecommunications,Telecommunications +476242,Telecommunications,Telecommunications +372030,Science and Technology,Science and Technology +396426,Science and Technology,Science and Technology +395239,Science and Technology,Science and Technology +378626,Science and Technology,Science and Technology +373525,Science and Technology,Science and Technology +373524,Science and Technology,Science and Technology +395349,Science and Technology,Science and Technology +393264,Science and Technology,Science and Technology +393263,Science and Technology,Science and Technology +392450,Science and Technology,Science and Technology +384092,Science and Technology,Science and Technology +382828,Science and Technology,Science and Technology +454141,Arts and Culture,Arts et culture +410732,Arts and Culture,Arts et culture +398108,Arts and Culture,Arts et culture +398106,Arts and Culture,Arts et culture +374132,Arts and Culture,Arts et culture +399817,Science and Technology,Science and Technology +399814,Science and Technology,Science and Technology +404786,Science and Technology,Science and Technology +403176,Science and Technology,Science and Technology +403175,Science and Technology,Science and Technology +374000,Aboriginal Affairs,Aboriginal Affairs +368446,Aboriginal Affairs,Aboriginal Affairs +371201,Arts and Culture,Arts and Culture +376017,Arts and Culture,Arts and Culture +371211,Arts and Culture,Arts and Culture +371210,Arts and Culture,Arts and Culture +406663,Arts and Culture,Arts and Culture +405215,Arts and Culture,Arts and Culture +405213,Arts and Culture,Arts and Culture +405210,Arts and Culture,Arts and Culture +405208,Arts and Culture,Arts and Culture +405207,Arts and Culture,Arts and Culture +405205,Arts and Culture,Arts and Culture +401838,Arts and Culture,Arts and Culture +401837,Arts and Culture,Arts and Culture +401836,Arts and Culture,Arts and Culture +397602,Arts and Culture,Arts and Culture +396111,Arts and Culture,Arts and Culture +411121,Aboriginal Affairs,Aboriginal Affairs +411118,Aboriginal Affairs,Aboriginal Affairs +368591,Aboriginal Affairs,Aboriginal Affairs +368697,Aboriginal Affairs,Aboriginal Affairs +388169,Aboriginal Affairs,Aboriginal Affairs +370727,Arts and Culture,Arts and Culture +526851,Arts and Culture,Arts and Culture +457898,Arts and Culture,Arts and Culture +401871,Arts and Culture,Arts and Culture +467959,Aboriginal Affairs,Aboriginal Affairs +467147,Aboriginal Affairs,Aboriginal Affairs +464944,Aboriginal Affairs,Aboriginal Affairs +490042,Aboriginal Affairs,Aboriginal Affairs +489903,Aboriginal Affairs,Aboriginal Affairs +489902,Aboriginal Affairs,Aboriginal Affairs +487003,Aboriginal Affairs,Aboriginal Affairs +487000,Aboriginal Affairs,Aboriginal Affairs +476910,Aboriginal Affairs,Aboriginal Affairs +476909,Aboriginal Affairs,Aboriginal Affairs +474352,Aboriginal Affairs,Aboriginal Affairs +370755,Broadcasting,Broadcasting +370754,Broadcasting,Broadcasting +385003,Broadcasting,Broadcasting +385002,Broadcasting,Broadcasting +385001,Broadcasting,Broadcasting +385000,Broadcasting,Broadcasting +385002,Arts and Culture,Arts and Culture +385001,Arts and Culture,Arts and Culture +385000,Arts and Culture,Arts and Culture +384999,Arts and Culture,Arts and Culture +370755,Arts and Culture,Arts and Culture +370754,Arts and Culture,Arts and Culture +385004,Arts and Culture,Arts and Culture +385004,Broadcasting,Broadcasting +375972,Arts and Culture,Arts and Culture +370749,Arts and Culture,Arts and Culture +385008,Arts and Culture,Arts and Culture +385006,Arts and Culture,Arts and Culture +370756,Arts and Culture,Arts and Culture +370751,Arts and Culture,Arts and Culture +370750,Arts and Culture,Arts and Culture +393529,Arts and Culture,Arts and Culture +393528,Arts and Culture,Arts and Culture +393527,Arts and Culture,Arts and Culture +393526,Arts and Culture,Arts and Culture +393525,Arts and Culture,Arts and Culture +393523,Arts and Culture,Arts and Culture +393522,Arts and Culture,Arts and Culture +446893,Broadcasting,Broadcasting +446892,Broadcasting,Broadcasting +371299,Broadcasting,Broadcasting +446902,Broadcasting,Broadcasting +446897,Broadcasting,Broadcasting +446896,Broadcasting,Broadcasting +446895,Broadcasting,Broadcasting +371297,Telecommunications,Telecommunications +381200,Arts and Culture,Arts and Culture +381189,Arts and Culture,Arts and Culture +379598,Arts and Culture,Arts and Culture +379593,Arts and Culture,Arts and Culture +379588,Arts and Culture,Arts and Culture +379586,Arts and Culture,Arts and Culture +377361,Arts and Culture,Arts and Culture +372380,Arts and Culture,Arts and Culture +372378,Arts and Culture,Arts and Culture +369647,Arts and Culture,Arts and Culture +391270,Arts and Culture,Arts and Culture +391269,Arts and Culture,Arts and Culture +388326,Arts and Culture,Arts and Culture +383642,Arts and Culture,Arts and Culture +383526,Arts and Culture,Arts and Culture +383525,Arts and Culture,Arts and Culture +394642,Aboriginal Affairs,Aboriginal Affairs +394641,Aboriginal Affairs,Aboriginal Affairs +387584,Aboriginal Affairs,Aboriginal Affairs +387583,Aboriginal Affairs,Aboriginal Affairs +384215,Aboriginal Affairs,Aboriginal Affairs +380359,Aboriginal Affairs,Aboriginal Affairs +377536,Aboriginal Affairs,Aboriginal Affairs +376383,Aboriginal Affairs,Aboriginal Affairs +394642,Science and Technology,Science and Technology +394641,Science and Technology,Science and Technology +387584,Science and Technology,Science and Technology +387583,Science and Technology,Science and Technology +384215,Science and Technology,Science and Technology +380359,Science and Technology,Science and Technology +377536,Science and Technology,Science and Technology +376383,Science and Technology,Science and Technology +411391,Science and Technology,Science and Technology +378341,Aboriginal Affairs,Aboriginal Affairs +378339,Aboriginal Affairs,Aboriginal Affairs +373767,Aboriginal Affairs,Aboriginal Affairs +373695,Aboriginal Affairs,Aboriginal Affairs +373655,Aboriginal Affairs,Aboriginal Affairs +370029,Aboriginal Affairs,Aboriginal Affairs +369959,Aboriginal Affairs,Aboriginal Affairs +427618,Aboriginal Affairs,Aboriginal Affairs +427591,Aboriginal Affairs,Aboriginal Affairs +378452,Aboriginal Affairs,Aboriginal Affairs +371257,Aboriginal Affairs,Aboriginal Affairs +371269,Aboriginal Affairs,Aboriginal Affairs +371267,Aboriginal Affairs,Aboriginal Affairs +371265,Aboriginal Affairs,Aboriginal Affairs +371261,Aboriginal Affairs,Aboriginal Affairs +376927,Arts and Culture,Arts and Culture +376901,Arts and Culture,Arts and Culture +387365,Arts and Culture,Arts and Culture +382884,Arts and Culture,Arts and Culture +420269,Arts and Culture,Arts and Culture +408855,Arts and Culture,Arts and Culture +404420,Arts and Culture,Arts and Culture +401064,Arts and Culture,Arts and Culture +394934,Arts and Culture,Arts and Culture +394933,Arts and Culture,Arts and Culture +391597,Arts and Culture,Arts and Culture +371979,Science and Technology,Science and Technology +453026,Science and Technology,Science and Technology +391961,Science and Technology,Science and Technology +391960,Science and Technology,Science and Technology +391959,Science and Technology,Science and Technology +391958,Science and Technology,Science and Technology +389335,Science and Technology,Science and Technology +389240,Science and Technology,Science and Technology +389237,Science and Technology,Science and Technology +389235,Science and Technology,Science and Technology +384617,Science and Technology,Science and Technology +384616,Science and Technology,Science and Technology +384615,Science and Technology,Science and Technology +382626,Science and Technology,Science and Technology +381587,Science and Technology,Science and Technology +377834,Science and Technology,Science and Technology +377526,Science and Technology,Science and Technology +373186,Science and Technology,Science and Technology +373185,Science and Technology,Science and Technology +372023,Science and Technology,Science and Technology +372021,Science and Technology,Science and Technology +372015,Science and Technology,Science and Technology +372010,Science and Technology,Science and Technology +372007,Science and Technology,Science and Technology +372004,Science and Technology,Science and Technology +377526,Telecommunications,Telecommunications +370884,Arts and Culture,Arts and Culture +370881,Arts and Culture,Arts and Culture +378329,Arts and Culture,Arts and Culture +370886,Arts and Culture,Arts and Culture +377649,Science and Technology,Science and Technology +377648,Science and Technology,Science and Technology +380161,Science and Technology,Science and Technology +380097,Science and Technology,Science and Technology +380164,Science and Technology,Science and Technology +444858,Science and Technology,Science and Technology +444807,Science and Technology,Science and Technology +411247,Science and Technology,Science and Technology +411246,Science and Technology,Science and Technology +411243,Science and Technology,Science and Technology +411241,Science and Technology,Science and Technology +386625,Science and Technology,Science and Technology +381824,Science and Technology,Science and Technology +373441,Science and Technology,Science and Technology +540975,Science and Technology,Science and Technology +529569,Broadcasting,Broadcasting +526752,Broadcasting,Broadcasting +396897,Broadcasting,Broadcasting +396888,Broadcasting,Broadcasting +396884,Broadcasting,Broadcasting +394478,Broadcasting,Broadcasting +394477,Broadcasting,Broadcasting +394476,Broadcasting,Broadcasting +394433,Broadcasting,Broadcasting +394431,Broadcasting,Broadcasting +394429,Broadcasting,Broadcasting +394427,Broadcasting,Broadcasting +394425,Broadcasting,Broadcasting +394423,Broadcasting,Broadcasting +522999,Broadcasting,Broadcasting +522997,Broadcasting,Broadcasting +520326,Broadcasting,Broadcasting +520325,Broadcasting,Broadcasting +520321,Broadcasting,Broadcasting +520320,Broadcasting,Broadcasting +520317,Broadcasting,Broadcasting +520316,Broadcasting,Broadcasting +520315,Broadcasting,Broadcasting +505996,Broadcasting,Broadcasting +473257,Broadcasting,Broadcasting +473193,Broadcasting,Broadcasting +473093,Broadcasting,Broadcasting +473084,Broadcasting,Broadcasting +440144,Broadcasting,Broadcasting +440142,Broadcasting,Broadcasting +440140,Broadcasting,Broadcasting +440138,Broadcasting,Broadcasting +440135,Broadcasting,Broadcasting +440115,Broadcasting,Broadcasting +440113,Broadcasting,Broadcasting +440095,Broadcasting,Broadcasting +440093,Broadcasting,Broadcasting +440092,Broadcasting,Broadcasting +440091,Broadcasting,Broadcasting +440090,Broadcasting,Broadcasting +440087,Broadcasting,Broadcasting +440085,Broadcasting,Broadcasting +440082,Broadcasting,Broadcasting +440080,Broadcasting,Broadcasting +440078,Broadcasting,Broadcasting +440077,Broadcasting,Broadcasting +440076,Broadcasting,Broadcasting +440075,Broadcasting,Broadcasting +440074,Broadcasting,Broadcasting +440070,Broadcasting,Broadcasting +440069,Broadcasting,Broadcasting +440068,Broadcasting,Broadcasting +440067,Broadcasting,Broadcasting +440066,Broadcasting,Broadcasting +440063,Broadcasting,Broadcasting +440058,Broadcasting,Broadcasting +440057,Broadcasting,Broadcasting +440055,Broadcasting,Broadcasting +440054,Broadcasting,Broadcasting +440053,Broadcasting,Broadcasting +440052,Broadcasting,Broadcasting +440048,Broadcasting,Broadcasting +440031,Broadcasting,Broadcasting +413948,Broadcasting,Broadcasting +396931,Broadcasting,Broadcasting +396923,Broadcasting,Broadcasting +396919,Broadcasting,Broadcasting +396914,Broadcasting,Broadcasting +396908,Broadcasting,Broadcasting +396904,Broadcasting,Broadcasting +396902,Broadcasting,Broadcasting +544413,Broadcasting,Broadcasting +523024,Telecommunications,Telecommunications +523010,Telecommunications,Telecommunications +370563,Aboriginal Affairs,Aboriginal Affairs +370595,Aboriginal Affairs,Aboriginal Affairs +371388,Aboriginal Affairs,Aboriginal Affairs +371386,Aboriginal Affairs,Aboriginal Affairs +372642,Aboriginal Affairs,Aboriginal Affairs +371391,Aboriginal Affairs,Aboriginal Affairs +370662,Aboriginal Affairs,Aboriginal Affairs +373513,Arts and Culture,Arts and Culture +373511,Arts and Culture,Arts and Culture +381279,Aboriginal Affairs,Aboriginal Affairs +381277,Aboriginal Affairs,Aboriginal Affairs +380083,Aboriginal Affairs,Aboriginal Affairs +380081,Aboriginal Affairs,Aboriginal Affairs +380096,Aboriginal Affairs,Aboriginal Affairs +380095,Aboriginal Affairs,Aboriginal Affairs +380087,Aboriginal Affairs,Aboriginal Affairs +380086,Aboriginal Affairs,Aboriginal Affairs +399567,Aboriginal Affairs,Aboriginal Affairs +382899,Aboriginal Affairs,Aboriginal Affairs +399569,Aboriginal Affairs,Aboriginal Affairs +371610,Science and Technology,Science and Technology +523025,Telecommunications,Telecommunications +523016,Telecommunications,Telecommunications +370719,Telecommunications,Telecommunications +526749,Telecommunications,Telecommunications +523035,Telecommunications,Telecommunications +441599,Telecommunications,Telecommunications +441159,Telecommunications,Telecommunications +375613,Telecommunications,Telecommunications +375612,Telecommunications,Telecommunications +375611,Telecommunications,Telecommunications +375610,Telecommunications,Telecommunications +372019,Telecommunications,Telecommunications +372000,Telecommunications,Telecommunications +506611,Telecommunications,Telecommunications +506610,Telecommunications,Telecommunications +497054,Telecommunications,Telecommunications +497053,Telecommunications,Telecommunications +497047,Telecommunications,Telecommunications +494240,Telecommunications,Telecommunications +485766,Telecommunications,Telecommunications +483760,Telecommunications,Telecommunications +468871,Telecommunications,Telecommunications +468869,Telecommunications,Telecommunications +468868,Telecommunications,Telecommunications +468867,Telecommunications,Telecommunications +468866,Telecommunications,Telecommunications +468865,Telecommunications,Telecommunications +468864,Telecommunications,Telecommunications +468863,Telecommunications,Telecommunications +468862,Telecommunications,Telecommunications +441605,Telecommunications,Telecommunications +441604,Telecommunications,Telecommunications +441602,Telecommunications,Telecommunications +523033,Telecommunications,Telecommunications +523020,Telecommunications,Telecommunications +372027,Telecommunications,Telecommunications +523012,Telecommunications,Telecommunications +478039,Broadcasting,Broadcasting +473086,Broadcasting,Broadcasting +372067,Broadcasting,Broadcasting +443119,Broadcasting,Broadcasting +440156,Broadcasting,Broadcasting +440154,Broadcasting,Broadcasting +440148,Broadcasting,Broadcasting +440146,Broadcasting,Broadcasting +440141,Broadcasting,Broadcasting +440137,Broadcasting,Broadcasting +440136,Broadcasting,Broadcasting +440116,Broadcasting,Broadcasting +440112,Broadcasting,Broadcasting +440111,Broadcasting,Broadcasting +440110,Broadcasting,Broadcasting +440108,Broadcasting,Broadcasting +440106,Broadcasting,Broadcasting +440100,Broadcasting,Broadcasting +440099,Broadcasting,Broadcasting +440098,Broadcasting,Broadcasting +440097,Broadcasting,Broadcasting +440096,Broadcasting,Broadcasting +440094,Broadcasting,Broadcasting +440089,Broadcasting,Broadcasting +440088,Broadcasting,Broadcasting +440086,Broadcasting,Broadcasting +440084,Broadcasting,Broadcasting +440081,Broadcasting,Broadcasting +440079,Broadcasting,Broadcasting +440072,Broadcasting,Broadcasting +440071,Broadcasting,Broadcasting +440065,Broadcasting,Broadcasting +440064,Broadcasting,Broadcasting +440062,Broadcasting,Broadcasting +440061,Broadcasting,Broadcasting +440060,Broadcasting,Broadcasting +440059,Broadcasting,Broadcasting +440056,Broadcasting,Broadcasting +440051,Broadcasting,Broadcasting +440050,Broadcasting,Broadcasting +440049,Broadcasting,Broadcasting +440037,Broadcasting,Broadcasting +424403,Broadcasting,Broadcasting +419365,Broadcasting,Broadcasting +396918,Broadcasting,Broadcasting +396916,Broadcasting,Broadcasting +396910,Broadcasting,Broadcasting +396894,Broadcasting,Broadcasting +396893,Broadcasting,Broadcasting +394418,Broadcasting,Broadcasting +526753,Broadcasting,Broadcasting +523005,Broadcasting,Broadcasting +523001,Broadcasting,Broadcasting +522995,Broadcasting,Broadcasting +520327,Broadcasting,Broadcasting +520324,Broadcasting,Broadcasting +520323,Broadcasting,Broadcasting +520322,Broadcasting,Broadcasting +520319,Broadcasting,Broadcasting +520314,Broadcasting,Broadcasting +520313,Broadcasting,Broadcasting +520312,Broadcasting,Broadcasting +505995,Broadcasting,Broadcasting +505994,Broadcasting,Broadcasting +526750,Telecommunications,Telecommunications +416588,Aboriginal Affairs,Aboriginal Affairs +409958,Aboriginal Affairs,Aboriginal Affairs +372234,Aboriginal Affairs,Aboriginal Affairs +443978,Aboriginal Affairs,Aboriginal Affairs +443977,Aboriginal Affairs,Aboriginal Affairs +443976,Aboriginal Affairs,Aboriginal Affairs +373316,Science and Technology,Science and Technology +373315,Science and Technology,Science and Technology +372979,Aboriginal Affairs,Aboriginal Affairs +372978,Aboriginal Affairs,Aboriginal Affairs +372983,Aboriginal Affairs,Aboriginal Affairs +372982,Aboriginal Affairs,Aboriginal Affairs +385800,Science and Technology,Science and Technology +393218,Science and Technology,Science and Technology +427310,Aboriginal Affairs,Aboriginal Affairs +427309,Aboriginal Affairs,Aboriginal Affairs +455306,Aboriginal Affairs,Aboriginal Affairs +455305,Aboriginal Affairs,Aboriginal Affairs +455304,Aboriginal Affairs,Aboriginal Affairs +455302,Aboriginal Affairs,Aboriginal Affairs +455300,Aboriginal Affairs,Aboriginal Affairs +455299,Aboriginal Affairs,Aboriginal Affairs +455297,Aboriginal Affairs,Aboriginal Affairs +427313,Aboriginal Affairs,Aboriginal Affairs +427312,Aboriginal Affairs,Aboriginal Affairs +375523,Science and Technology,Science and Technology +374197,Science and Technology,Science and Technology +410581,Science and Technology,Science and Technology +389495,Science and Technology,Science and Technology +410583,Science and Technology,Science and Technology +375644,Telecommunications,Telecommunications +375550,Telecommunications,Telecommunications +376188,Telecommunications,Telecommunications +376127,Telecommunications,Telecommunications +376126,Telecommunications,Telecommunications +376125,Telecommunications,Telecommunications +376124,Telecommunications,Telecommunications +375655,Telecommunications,Telecommunications +389524,Science and Technology,Science and Technology +389523,Science and Technology,Science and Technology +506493,Science and Technology,Science and Technology +500120,Science and Technology,Science and Technology +388182,Science and Technology,Science and Technology +388180,Science and Technology,Science and Technology +388176,Science and Technology,Science and Technology +383133,Science and Technology,Science and Technology +383132,Science and Technology,Science and Technology +380327,Science and Technology,Science and Technology +373356,Science and Technology,Science and Technology +373354,Science and Technology,Science and Technology +373353,Science and Technology,Science and Technology +373352,Science and Technology,Science and Technology +373351,Science and Technology,Science and Technology +373350,Science and Technology,Science and Technology +373349,Science and Technology,Science and Technology +373348,Science and Technology,Science and Technology +373347,Science and Technology,Science and Technology +373346,Science and Technology,Science and Technology +373345,Science and Technology,Science and Technology +373344,Science and Technology,Science and Technology +373343,Science and Technology,Science and Technology +373342,Science and Technology,Science and Technology +373341,Science and Technology,Science and Technology +373340,Science and Technology,Science and Technology +373339,Science and Technology,Science and Technology +373337,Science and Technology,Science and Technology +373336,Science and Technology,Science and Technology +373335,Science and Technology,Science and Technology +373334,Science and Technology,Science and Technology +373333,Science and Technology,Science and Technology +373331,Science and Technology,Science and Technology +373330,Science and Technology,Science and Technology +373329,Science and Technology,Science and Technology +373328,Science and Technology,Science and Technology +373327,Science and Technology,Science and Technology +468973,Science and Technology,Science and Technology +451209,Science and Technology,Science and Technology +418175,Science and Technology,Science and Technology +411655,Science and Technology,Science and Technology +411654,Science and Technology,Science and Technology +395029,Science and Technology,Science and Technology +395025,Science and Technology,Science and Technology +527573,Science and Technology,Science and Technology +514906,Science and Technology,Science and Technology +381156,Telecommunications,Telecommunications +381155,Telecommunications,Telecommunications +376409,Telecommunications,Telecommunications +376407,Telecommunications,Telecommunications +376405,Telecommunications,Telecommunications +376404,Telecommunications,Telecommunications +376403,Telecommunications,Telecommunications +376400,Telecommunications,Telecommunications +376396,Telecommunications,Telecommunications +376388,Telecommunications,Telecommunications +376386,Telecommunications,Telecommunications +376382,Telecommunications,Telecommunications +381378,Telecommunications,Telecommunications +381159,Telecommunications,Telecommunications +381158,Telecommunications,Telecommunications +377035,Telecommunications,Telecommunications +377032,Telecommunications,Telecommunications +377028,Telecommunications,Telecommunications +377022,Telecommunications,Telecommunications +377019,Telecommunications,Telecommunications +377016,Telecommunications,Telecommunications +377014,Telecommunications,Telecommunications +377013,Telecommunications,Telecommunications +424916,Telecommunications,Telecommunications +424915,Telecommunications,Telecommunications +381221,Telecommunications,Telecommunications +381164,Telecommunications,Telecommunications +381163,Telecommunications,Telecommunications +381162,Telecommunications,Telecommunications +381161,Telecommunications,Telecommunications +381160,Telecommunications,Telecommunications +376411,Telecommunications,Telecommunications +376379,Telecommunications,Telecommunications +376378,Telecommunications,Telecommunications +376377,Telecommunications,Telecommunications +376376,Telecommunications,Telecommunications +376199,Telecommunications,Telecommunications +376197,Telecommunications,Telecommunications +376196,Telecommunications,Telecommunications +462681,Science and Technology,Science and Technology +459252,Science and Technology,Science and Technology +502334,Science and Technology,Science and Technology +498644,Science and Technology,Science and Technology +495980,Science and Technology,Science and Technology +477996,Science and Technology,Science and Technology +477990,Science and Technology,Science and Technology +477981,Science and Technology,Science and Technology +472868,Science and Technology,Science and Technology +463426,Science and Technology,Science and Technology +374606,Aboriginal Affairs,Aboriginal Affairs +374602,Aboriginal Affairs,Aboriginal Affairs +381533,Aboriginal Affairs,Aboriginal Affairs +381531,Aboriginal Affairs,Aboriginal Affairs +381529,Aboriginal Affairs,Aboriginal Affairs +381523,Aboriginal Affairs,Aboriginal Affairs +381517,Aboriginal Affairs,Aboriginal Affairs +381515,Aboriginal Affairs,Aboriginal Affairs +381513,Aboriginal Affairs,Aboriginal Affairs +375605,Aboriginal Affairs,Aboriginal Affairs +375584,Aboriginal Affairs,Aboriginal Affairs +373507,Aboriginal Affairs,Aboriginal Affairs +381514,Aboriginal Affairs,Aboriginal Affairs +381494,Aboriginal Affairs,Aboriginal Affairs +375609,Aboriginal Affairs,Aboriginal Affairs +375608,Aboriginal Affairs,Aboriginal Affairs +375587,Aboriginal Affairs,Aboriginal Affairs +449233,Aboriginal Affairs,Aboriginal Affairs +494325,Aboriginal Affairs,Aboriginal Affairs +494324,Aboriginal Affairs,Aboriginal Affairs +375898,Aboriginal Affairs,Aboriginal Affairs +375802,Aboriginal Affairs,Aboriginal Affairs +443069,Science and Technology,Science and Technology +443065,Science and Technology,Science and Technology +391903,Science and Technology,Science and Technology +391901,Science and Technology,Science and Technology +391896,Science and Technology,Science and Technology +391892,Science and Technology,Science and Technology +388922,Science and Technology,Science and Technology +386362,Science and Technology,Science and Technology +384652,Science and Technology,Science and Technology +384648,Science and Technology,Science and Technology +382787,Science and Technology,Science and Technology +373658,Science and Technology,Science and Technology +456848,Science and Technology,Science and Technology +455358,Science and Technology,Science and Technology +454311,Science and Technology,Science and Technology +448334,Science and Technology,Science and Technology +446986,Science and Technology,Science and Technology +445385,Science and Technology,Science and Technology +445175,Science and Technology,Science and Technology +443451,Science and Technology,Science and Technology +443450,Science and Technology,Science and Technology +375222,Science and Technology,Science and Technology +375221,Science and Technology,Science and Technology +380388,Science and Technology,Science and Technology +380340,Science and Technology,Science and Technology +380336,Science and Technology,Science and Technology +389497,Science and Technology,Science and Technology +531747,Aboriginal Affairs,Aboriginal Affairs +531743,Aboriginal Affairs,Aboriginal Affairs +379048,Aboriginal Affairs,Aboriginal Affairs +379047,Aboriginal Affairs,Aboriginal Affairs +373956,Science and Technology,Science and Technology +373951,Science and Technology,Science and Technology +378439,Science and Technology,Science and Technology +373957,Science and Technology,Science and Technology +373955,Science and Technology,Science and Technology +379817,Science and Technology,Science and Technology +379528,Science and Technology,Science and Technology +379527,Science and Technology,Science and Technology +376187,Science and Technology,Science and Technology +376180,Science and Technology,Science and Technology +376169,Science and Technology,Science and Technology +376155,Science and Technology,Science and Technology +420324,Science and Technology,Science and Technology +420320,Science and Technology,Science and Technology +377406,Science and Technology,Science and Technology +449592,Science and Technology,Science and Technology +444905,Science and Technology,Science and Technology +428741,Science and Technology,Science and Technology +464886,Aboriginal Affairs,Aboriginal Affairs +464880,Aboriginal Affairs,Aboriginal Affairs +382733,Aboriginal Affairs,Aboriginal Affairs +382732,Aboriginal Affairs,Aboriginal Affairs +382730,Aboriginal Affairs,Aboriginal Affairs +382729,Aboriginal Affairs,Aboriginal Affairs +382727,Aboriginal Affairs,Aboriginal Affairs +382726,Aboriginal Affairs,Aboriginal Affairs +380445,Aboriginal Affairs,Aboriginal Affairs +379089,Aboriginal Affairs,Aboriginal Affairs +379088,Aboriginal Affairs,Aboriginal Affairs +379086,Aboriginal Affairs,Aboriginal Affairs +379082,Aboriginal Affairs,Aboriginal Affairs +379080,Aboriginal Affairs,Aboriginal Affairs +379078,Aboriginal Affairs,Aboriginal Affairs +379077,Aboriginal Affairs,Aboriginal Affairs +379076,Aboriginal Affairs,Aboriginal Affairs +379075,Aboriginal Affairs,Aboriginal Affairs +379073,Aboriginal Affairs,Aboriginal Affairs +379072,Aboriginal Affairs,Aboriginal Affairs +379071,Aboriginal Affairs,Aboriginal Affairs +379070,Aboriginal Affairs,Aboriginal Affairs +379069,Aboriginal Affairs,Aboriginal Affairs +379067,Aboriginal Affairs,Aboriginal Affairs +379066,Aboriginal Affairs,Aboriginal Affairs +379065,Aboriginal Affairs,Aboriginal Affairs +379064,Aboriginal Affairs,Aboriginal Affairs +379063,Aboriginal Affairs,Aboriginal Affairs +379062,Aboriginal Affairs,Aboriginal Affairs +379061,Aboriginal Affairs,Aboriginal Affairs +377541,Aboriginal Affairs,Aboriginal Affairs +377505,Aboriginal Affairs,Aboriginal Affairs +377179,Aboriginal Affairs,Aboriginal Affairs +377178,Aboriginal Affairs,Aboriginal Affairs +377177,Aboriginal Affairs,Aboriginal Affairs +377176,Aboriginal Affairs,Aboriginal Affairs +377175,Aboriginal Affairs,Aboriginal Affairs +377161,Aboriginal Affairs,Aboriginal Affairs +417381,Aboriginal Affairs,Aboriginal Affairs +417380,Aboriginal Affairs,Aboriginal Affairs +415547,Aboriginal Affairs,Aboriginal Affairs +410259,Aboriginal Affairs,Aboriginal Affairs +410257,Aboriginal Affairs,Aboriginal Affairs +408478,Aboriginal Affairs,Aboriginal Affairs +407367,Aboriginal Affairs,Aboriginal Affairs +407366,Aboriginal Affairs,Aboriginal Affairs +405466,Aboriginal Affairs,Aboriginal Affairs +403749,Aboriginal Affairs,Aboriginal Affairs +397520,Aboriginal Affairs,Aboriginal Affairs +397519,Aboriginal Affairs,Aboriginal Affairs +394002,Aboriginal Affairs,Aboriginal Affairs +394001,Aboriginal Affairs,Aboriginal Affairs +394000,Aboriginal Affairs,Aboriginal Affairs +393997,Aboriginal Affairs,Aboriginal Affairs +393984,Aboriginal Affairs,Aboriginal Affairs +391781,Aboriginal Affairs,Aboriginal Affairs +391780,Aboriginal Affairs,Aboriginal Affairs +391778,Aboriginal Affairs,Aboriginal Affairs +387404,Aboriginal Affairs,Aboriginal Affairs +387403,Aboriginal Affairs,Aboriginal Affairs +387402,Aboriginal Affairs,Aboriginal Affairs +387401,Aboriginal Affairs,Aboriginal Affairs +387400,Aboriginal Affairs,Aboriginal Affairs +387399,Aboriginal Affairs,Aboriginal Affairs +385152,Aboriginal Affairs,Aboriginal Affairs +385150,Aboriginal Affairs,Aboriginal Affairs +385147,Aboriginal Affairs,Aboriginal Affairs +385146,Aboriginal Affairs,Aboriginal Affairs +385145,Aboriginal Affairs,Aboriginal Affairs +385144,Aboriginal Affairs,Aboriginal Affairs +382734,Aboriginal Affairs,Aboriginal Affairs +531738,Aboriginal Affairs,Aboriginal Affairs +531737,Aboriginal Affairs,Aboriginal Affairs +531736,Aboriginal Affairs,Aboriginal Affairs +531735,Aboriginal Affairs,Aboriginal Affairs +531734,Aboriginal Affairs,Aboriginal Affairs +531733,Aboriginal Affairs,Aboriginal Affairs +512931,Aboriginal Affairs,Aboriginal Affairs +500609,Aboriginal Affairs,Aboriginal Affairs +500047,Aboriginal Affairs,Aboriginal Affairs +498389,Aboriginal Affairs,Aboriginal Affairs +493884,Aboriginal Affairs,Aboriginal Affairs +491086,Aboriginal Affairs,Aboriginal Affairs +489347,Aboriginal Affairs,Aboriginal Affairs +484220,Aboriginal Affairs,Aboriginal Affairs +464928,Aboriginal Affairs,Aboriginal Affairs +464924,Aboriginal Affairs,Aboriginal Affairs +464920,Aboriginal Affairs,Aboriginal Affairs +464916,Aboriginal Affairs,Aboriginal Affairs +464911,Aboriginal Affairs,Aboriginal Affairs +464908,Aboriginal Affairs,Aboriginal Affairs +385159,Aboriginal Affairs,Aboriginal Affairs +385157,Aboriginal Affairs,Aboriginal Affairs +379119,Aboriginal Affairs,Aboriginal Affairs +379060,Aboriginal Affairs,Aboriginal Affairs +379055,Aboriginal Affairs,Aboriginal Affairs +379053,Aboriginal Affairs,Aboriginal Affairs +379051,Aboriginal Affairs,Aboriginal Affairs +385168,Aboriginal Affairs,Aboriginal Affairs +385167,Aboriginal Affairs,Aboriginal Affairs +385162,Aboriginal Affairs,Aboriginal Affairs +390224,Science and Technology,Science and Technology +387447,Science and Technology,Science and Technology +397517,Science and Technology,Science and Technology +413326,Science and Technology,Science and Technology +396876,Science and Technology,Science and Technology +377235,Science and Technology,Science and Technology +377234,Science and Technology,Science and Technology +377233,Science and Technology,Science and Technology +435916,Science and Technology,Science and Technology +435915,Science and Technology,Science and Technology +459580,Arts and Culture,Arts et culture +457471,Arts and Culture,Arts et culture +422161,Arts and Culture,Arts et culture +409591,Arts and Culture,Arts et culture +409570,Arts and Culture,Arts et culture +409564,Arts and Culture,Arts et culture +409554,Arts and Culture,Arts et culture +409548,Arts and Culture,Arts et culture +409542,Arts and Culture,Arts et culture +396603,Arts and Culture,Arts et culture +396416,Arts and Culture,Arts et culture +396415,Arts and Culture,Arts et culture +411354,Science and Technology,Science and Technology +405515,Science and Technology,Science and Technology +391834,Science and Technology,Science and Technology +391832,Science and Technology,Science and Technology +391831,Science and Technology,Science and Technology +380124,Science and Technology,Science and Technology +380123,Science and Technology,Science and Technology +380122,Science and Technology,Science and Technology +457472,Arts and Culture,Arts et culture +422165,Arts and Culture,Arts et culture +409585,Arts and Culture,Arts et culture +409578,Arts and Culture,Arts et culture +409567,Arts and Culture,Arts et culture +409561,Arts and Culture,Arts et culture +409551,Arts and Culture,Arts et culture +409546,Arts and Culture,Arts et culture +406752,Arts and Culture,Arts et culture +403583,Arts and Culture,Arts et culture +409576,Arts and Culture,Arts et culture +409565,Arts and Culture,Arts et culture +409559,Arts and Culture,Arts et culture +409550,Arts and Culture,Arts et culture +409544,Arts and Culture,Arts et culture +406753,Arts and Culture,Arts et culture +403581,Arts and Culture,Arts et culture +381506,Arts and Culture,Arts et culture +376804,Arts and Culture,Arts et culture +459588,Arts and Culture,Arts et culture +455430,Arts and Culture,Arts et culture +455315,Arts and Culture,Arts et culture +422162,Arts and Culture,Arts et culture +379411,Aboriginal Affairs,Aboriginal Affairs +379394,Aboriginal Affairs,Aboriginal Affairs +483033,Science and Technology,Sciences et technologies +482828,Science and Technology,Sciences et technologies +518614,Science and Technology,Sciences et technologies +503481,Science and Technology,Sciences et technologies +503479,Science and Technology,Sciences et technologies +503476,Science and Technology,Sciences et technologies +497892,Science and Technology,Sciences et technologies +494358,Science and Technology,Sciences et technologies +494357,Science and Technology,Sciences et technologies +427820,Aboriginal Affairs,Aboriginal Affairs +423947,Aboriginal Affairs,Aboriginal Affairs +380475,Aboriginal Affairs,Aboriginal Affairs +377339,Aboriginal Affairs,Aboriginal Affairs +377338,Aboriginal Affairs,Aboriginal Affairs +414941,Aboriginal Affairs,Aboriginal Affairs +403374,Aboriginal Affairs,Aboriginal Affairs +403333,Aboriginal Affairs,Aboriginal Affairs +377569,Science and Technology,Science and Technology +377568,Science and Technology,Science and Technology +377572,Science and Technology,Science and Technology +380421,Arts and Culture,Arts and Culture +504819,Arts and Culture,Arts and Culture +382282,Arts and Culture,Arts and Culture +380424,Arts and Culture,Arts and Culture +380422,Broadcasting,Broadcasting +380421,Broadcasting,Broadcasting +382282,Broadcasting,Broadcasting +417038,Science and Technology,Science and Technology +417036,Science and Technology,Science and Technology +440243,Science and Technology,Science and Technology +440242,Science and Technology,Science and Technology +440241,Science and Technology,Science and Technology +417041,Science and Technology,Science and Technology +417040,Science and Technology,Science and Technology +381970,Aboriginal Affairs,Aboriginal Affairs +397165,Arts and Culture,Arts et culture +397168,Broadcasting,Radiodiffusion +397165,Broadcasting,Radiodiffusion +397162,Broadcasting,Radiodiffusion +397155,Broadcasting,Radiodiffusion +394254,Broadcasting,Radiodiffusion +394253,Broadcasting,Radiodiffusion +394252,Broadcasting,Radiodiffusion +394245,Broadcasting,Radiodiffusion +394244,Broadcasting,Radiodiffusion +394242,Broadcasting,Radiodiffusion +394236,Broadcasting,Radiodiffusion +394234,Broadcasting,Radiodiffusion +394232,Broadcasting,Radiodiffusion +385853,Broadcasting,Radiodiffusion +385849,Broadcasting,Radiodiffusion +417325,Broadcasting,Radiodiffusion +417322,Broadcasting,Radiodiffusion +417317,Broadcasting,Radiodiffusion +417316,Broadcasting,Radiodiffusion +417315,Broadcasting,Radiodiffusion +414736,Broadcasting,Radiodiffusion +414734,Broadcasting,Radiodiffusion +414729,Broadcasting,Radiodiffusion +414727,Broadcasting,Radiodiffusion +405568,Broadcasting,Radiodiffusion +405289,Broadcasting,Radiodiffusion +403726,Broadcasting,Radiodiffusion +398529,Broadcasting,Radiodiffusion +398527,Broadcasting,Radiodiffusion +398222,Broadcasting,Radiodiffusion +397179,Broadcasting,Radiodiffusion +397172,Broadcasting,Radiodiffusion +375870,Telecommunications,Télécommunications +375575,Telecommunications,Télécommunications +426286,Telecommunications,Télécommunications +417325,Telecommunications,Télécommunications +417322,Telecommunications,Télécommunications +417317,Telecommunications,Télécommunications +417316,Telecommunications,Télécommunications +417315,Telecommunications,Télécommunications +414736,Telecommunications,Télécommunications +414734,Telecommunications,Télécommunications +414729,Telecommunications,Télécommunications +414727,Telecommunications,Télécommunications +403726,Telecommunications,Télécommunications +398527,Telecommunications,Télécommunications +397165,Telecommunications,Télécommunications +394232,Telecommunications,Télécommunications +392842,Telecommunications,Télécommunications +390544,Telecommunications,Télécommunications +390537,Telecommunications,Télécommunications +390524,Telecommunications,Télécommunications +385853,Telecommunications,Télécommunications +385849,Telecommunications,Télécommunications +383809,Telecommunications,Télécommunications +383790,Telecommunications,Télécommunications +380935,Telecommunications,Télécommunications +379563,Telecommunications,Télécommunications +377707,Telecommunications,Télécommunications +377700,Telecommunications,Télécommunications +377696,Telecommunications,Télécommunications +377314,Telecommunications,Télécommunications +376654,Telecommunications,Télécommunications +397164,Arts and Culture,Arts et culture +405292,Broadcasting,Radiodiffusion +403728,Broadcasting,Radiodiffusion +398530,Broadcasting,Radiodiffusion +398524,Broadcasting,Radiodiffusion +398224,Broadcasting,Radiodiffusion +397178,Broadcasting,Radiodiffusion +397173,Broadcasting,Radiodiffusion +397171,Broadcasting,Radiodiffusion +397169,Broadcasting,Radiodiffusion +397164,Broadcasting,Radiodiffusion +397163,Broadcasting,Radiodiffusion +397156,Broadcasting,Radiodiffusion +394258,Broadcasting,Radiodiffusion +394257,Broadcasting,Radiodiffusion +394256,Broadcasting,Radiodiffusion +394248,Broadcasting,Radiodiffusion +394247,Broadcasting,Radiodiffusion +394243,Broadcasting,Radiodiffusion +394239,Broadcasting,Radiodiffusion +394235,Broadcasting,Radiodiffusion +394231,Broadcasting,Radiodiffusion +388707,Broadcasting,Radiodiffusion +385859,Broadcasting,Radiodiffusion +385852,Broadcasting,Radiodiffusion +385848,Broadcasting,Radiodiffusion +417331,Broadcasting,Radiodiffusion +417324,Broadcasting,Radiodiffusion +417318,Broadcasting,Radiodiffusion +417314,Broadcasting,Radiodiffusion +414738,Broadcasting,Radiodiffusion +414735,Broadcasting,Radiodiffusion +414730,Broadcasting,Radiodiffusion +414728,Broadcasting,Radiodiffusion +398524,Telecommunications,Télécommunications +397164,Telecommunications,Télécommunications +394231,Telecommunications,Télécommunications +392844,Telecommunications,Télécommunications +390541,Telecommunications,Télécommunications +390539,Telecommunications,Télécommunications +390523,Telecommunications,Télécommunications +388707,Telecommunications,Télécommunications +385859,Telecommunications,Télécommunications +385852,Telecommunications,Télécommunications +385848,Telecommunications,Télécommunications +383812,Telecommunications,Télécommunications +383791,Telecommunications,Télécommunications +380936,Telecommunications,Télécommunications +379567,Telecommunications,Télécommunications +377705,Telecommunications,Télécommunications +377702,Telecommunications,Télécommunications +377698,Telecommunications,Télécommunications +377315,Telecommunications,Télécommunications +376656,Telecommunications,Télécommunications +376650,Telecommunications,Télécommunications +375871,Telecommunications,Télécommunications +375579,Telecommunications,Télécommunications +426287,Telecommunications,Télécommunications +417331,Telecommunications,Télécommunications +417324,Telecommunications,Télécommunications +417318,Telecommunications,Télécommunications +417314,Telecommunications,Télécommunications +414738,Telecommunications,Télécommunications +414735,Telecommunications,Télécommunications +414730,Telecommunications,Télécommunications +414728,Telecommunications,Télécommunications +375746,Aboriginal Affairs,Aboriginal Affairs +401710,Arts and Culture,Arts and Culture +401709,Arts and Culture,Arts and Culture +394924,Arts and Culture,Arts and Culture +393361,Arts and Culture,Arts and Culture +389865,Arts and Culture,Arts and Culture +386202,Arts and Culture,Arts and Culture +408384,Arts and Culture,Arts and Culture +408383,Arts and Culture,Arts and Culture +401713,Arts and Culture,Arts and Culture +401712,Arts and Culture,Arts and Culture +378646,Arts and Culture,Arts and Culture +414634,Arts and Culture,Arts et culture +414633,Arts and Culture,Arts et culture +414636,Arts and Culture,Arts et culture +406203,Aboriginal Affairs,Aboriginal Affairs +400108,Aboriginal Affairs,Aboriginal Affairs +400107,Aboriginal Affairs,Aboriginal Affairs +400106,Aboriginal Affairs,Aboriginal Affairs +397448,Aboriginal Affairs,Aboriginal Affairs +397447,Aboriginal Affairs,Aboriginal Affairs +397446,Aboriginal Affairs,Aboriginal Affairs +397445,Aboriginal Affairs,Aboriginal Affairs +397444,Aboriginal Affairs,Aboriginal Affairs +390078,Aboriginal Affairs,Aboriginal Affairs +390077,Aboriginal Affairs,Aboriginal Affairs +390076,Aboriginal Affairs,Aboriginal Affairs +390075,Aboriginal Affairs,Aboriginal Affairs +384026,Aboriginal Affairs,Aboriginal Affairs +382799,Aboriginal Affairs,Aboriginal Affairs +382798,Aboriginal Affairs,Aboriginal Affairs +382293,Aboriginal Affairs,Aboriginal Affairs +382292,Aboriginal Affairs,Aboriginal Affairs +382290,Aboriginal Affairs,Aboriginal Affairs +380289,Aboriginal Affairs,Aboriginal Affairs +378433,Aboriginal Affairs,Aboriginal Affairs +376643,Aboriginal Affairs,Aboriginal Affairs +516059,Aboriginal Affairs,Aboriginal Affairs +496953,Aboriginal Affairs,Aboriginal Affairs +446114,Aboriginal Affairs,Aboriginal Affairs +408541,Aboriginal Affairs,Aboriginal Affairs +408540,Aboriginal Affairs,Aboriginal Affairs +408539,Aboriginal Affairs,Aboriginal Affairs +408538,Aboriginal Affairs,Aboriginal Affairs +406205,Aboriginal Affairs,Aboriginal Affairs +380440,Arts and Culture,Arts and Culture +383042,Arts and Culture,Arts and Culture +380442,Arts and Culture,Arts and Culture +380441,Broadcasting,Broadcasting +380440,Broadcasting,Broadcasting +383042,Broadcasting,Broadcasting +376193,Aboriginal Affairs,Aboriginal Affairs +381161,Aboriginal Affairs,Aboriginal Affairs +381160,Aboriginal Affairs,Aboriginal Affairs +376196,Aboriginal Affairs,Aboriginal Affairs +436239,Telecommunications,Telecommunications +431333,Telecommunications,Telecommunications +387015,Telecommunications,Telecommunications +387014,Telecommunications,Telecommunications +387013,Telecommunications,Telecommunications +378680,Telecommunications,Telecommunications +378679,Telecommunications,Telecommunications +378677,Telecommunications,Telecommunications +378676,Telecommunications,Telecommunications +378671,Telecommunications,Telecommunications +505454,Telecommunications,Telecommunications +505452,Telecommunications,Telecommunications +482306,Telecommunications,Telecommunications +477968,Telecommunications,Telecommunications +458927,Telecommunications,Telecommunications +458926,Telecommunications,Telecommunications +458672,Telecommunications,Telecommunications +458671,Telecommunications,Telecommunications +458668,Telecommunications,Telecommunications +458667,Telecommunications,Telecommunications +452142,Telecommunications,Telecommunications +452091,Telecommunications,Telecommunications +451784,Telecommunications,Telecommunications +448447,Telecommunications,Telecommunications +448445,Telecommunications,Telecommunications +446482,Telecommunications,Telecommunications +445361,Telecommunications,Telecommunications +445353,Telecommunications,Telecommunications +444562,Telecommunications,Telecommunications +448445,Science and Technology,Science and Technology +446482,Science and Technology,Science and Technology +452142,Science and Technology,Science and Technology +452091,Science and Technology,Science and Technology +451784,Science and Technology,Science and Technology +522923,Science and Technology,Science and Technology +522919,Science and Technology,Science and Technology +504983,Science and Technology,Science and Technology +501425,Science and Technology,Science and Technology +490325,Science and Technology,Science and Technology +443622,Science and Technology,Science and Technology +420123,Science and Technology,Science and Technology +387938,Science and Technology,Science and Technology +387937,Science and Technology,Science and Technology +381579,Science and Technology,Science and Technology +379363,Science and Technology,Science and Technology +376331,Science and Technology,Science and Technology +534731,Science and Technology,Science and Technology +531589,Science and Technology,Science and Technology +531587,Science and Technology,Science and Technology +528633,Aboriginal Affairs,Aboriginal Affairs +520586,Aboriginal Affairs,Aboriginal Affairs +381233,Aboriginal Affairs,Aboriginal Affairs +454512,Science and Technology,Science and Technology +450818,Science and Technology,Science and Technology +395714,Science and Technology,Science and Technology +395712,Science and Technology,Science and Technology +395581,Science and Technology,Science and Technology +395568,Science and Technology,Science and Technology +395562,Science and Technology,Science and Technology +381262,Science and Technology,Science and Technology +381233,Science and Technology,Science and Technology +381231,Science and Technology,Science and Technology +381228,Science and Technology,Science and Technology +381226,Science and Technology,Science and Technology +381224,Science and Technology,Science and Technology +474875,Science and Technology,Science and Technology +456540,Science and Technology,Science and Technology +454521,Science and Technology,Science and Technology +376411,Aboriginal Affairs,Aboriginal Affairs +376386,Aboriginal Affairs,Aboriginal Affairs +376403,Aboriginal Affairs,Aboriginal Affairs +376404,Aboriginal Affairs,Aboriginal Affairs +381156,Aboriginal Affairs,Aboriginal Affairs +376409,Aboriginal Affairs,Aboriginal Affairs +378850,Arts and Culture,Arts and Culture +376450,Arts and Culture,Arts and Culture +378852,Arts and Culture,Arts and Culture +379611,Broadcasting,Broadcasting +379595,Broadcasting,Broadcasting +404911,Aboriginal Affairs,Affaires autochtones +379325,Science and Technology,Science and Technology +379322,Science and Technology,Science and Technology +379337,Science and Technology,Science and Technology +379334,Science and Technology,Science and Technology +379325,Aboriginal Affairs,Aboriginal Affairs +379322,Aboriginal Affairs,Aboriginal Affairs +381931,Aboriginal Affairs,Aboriginal Affairs +379337,Aboriginal Affairs,Aboriginal Affairs +379334,Aboriginal Affairs,Aboriginal Affairs +394278,Science and Technology,Science and Technology +422414,Science and Technology,Science and Technology +376990,Aboriginal Affairs,Aboriginal Affairs +376920,Aboriginal Affairs,Aboriginal Affairs +423769,Aboriginal Affairs,Aboriginal Affairs +421957,Aboriginal Affairs,Aboriginal Affairs +421955,Aboriginal Affairs,Aboriginal Affairs +412205,Aboriginal Affairs,Aboriginal Affairs +405043,Aboriginal Affairs,Aboriginal Affairs +405042,Aboriginal Affairs,Aboriginal Affairs +402682,Aboriginal Affairs,Aboriginal Affairs +399891,Aboriginal Affairs,Aboriginal Affairs +399890,Aboriginal Affairs,Aboriginal Affairs +389709,Aboriginal Affairs,Aboriginal Affairs +389706,Aboriginal Affairs,Aboriginal Affairs +387775,Aboriginal Affairs,Aboriginal Affairs +380842,Aboriginal Affairs,Aboriginal Affairs +380840,Aboriginal Affairs,Aboriginal Affairs +380839,Aboriginal Affairs,Aboriginal Affairs +380838,Aboriginal Affairs,Aboriginal Affairs +379431,Aboriginal Affairs,Aboriginal Affairs +379352,Aboriginal Affairs,Aboriginal Affairs +407023,Science and Technology,Science and Technology +407022,Science and Technology,Science and Technology +382542,Science and Technology,Science and Technology +376992,Science and Technology,Science and Technology +458859,Science and Technology,Science and Technology +432340,Science and Technology,Science and Technology +432339,Science and Technology,Science and Technology +432338,Science and Technology,Science and Technology +432326,Science and Technology,Science and Technology +384320,Telecommunications,Telecommunications +384209,Arts and Culture,Arts and Culture +434289,Arts and Culture,Arts and Culture +399436,Arts and Culture,Arts and Culture +385277,Arts and Culture,Arts and Culture +472490,Science and Technology,Science and Technology +472482,Science and Technology,Science and Technology +543212,Science and Technology,Science and Technology +540098,Science and Technology,Science and Technology +534612,Science and Technology,Science and Technology +534607,Science and Technology,Science and Technology +522985,Science and Technology,Science and Technology +522984,Science and Technology,Science and Technology +508156,Science and Technology,Science and Technology +501745,Science and Technology,Science and Technology +501743,Science and Technology,Science and Technology +495333,Science and Technology,Science and Technology +487854,Science and Technology,Science and Technology +477483,Science and Technology,Science and Technology +477482,Science and Technology,Science and Technology +475192,Science and Technology,Science and Technology +475191,Science and Technology,Science and Technology +378474,Science and Technology,Science and Technology +378474,Arts and Culture,Arts and Culture +380576,Science and Technology,Science and Technology +379105,Science and Technology,Science and Technology +380663,Science and Technology,Science and Technology +380581,Science and Technology,Science and Technology +380579,Science and Technology,Science and Technology +380578,Science and Technology,Science and Technology +380576,Telecommunications,Telecommunications +379105,Telecommunications,Telecommunications +391872,Telecommunications,Telecommunications +391870,Telecommunications,Telecommunications +391867,Telecommunications,Telecommunications +380663,Telecommunications,Telecommunications +380581,Telecommunications,Telecommunications +380579,Telecommunications,Telecommunications +380578,Telecommunications,Telecommunications +392979,Telecommunications,Telecommunications +434716,Telecommunications,Telecommunications +434709,Telecommunications,Telecommunications +434706,Telecommunications,Telecommunications +433048,Telecommunications,Telecommunications +433046,Telecommunications,Telecommunications +433044,Telecommunications,Telecommunications +433043,Telecommunications,Telecommunications +432765,Telecommunications,Telecommunications +432763,Telecommunications,Telecommunications +432757,Telecommunications,Telecommunications +432756,Telecommunications,Telecommunications +432755,Telecommunications,Telecommunications +432754,Telecommunications,Telecommunications +432753,Telecommunications,Telecommunications +431017,Telecommunications,Telecommunications +431016,Telecommunications,Telecommunications +424520,Telecommunications,Telecommunications +424519,Telecommunications,Telecommunications +424518,Telecommunications,Telecommunications +424517,Telecommunications,Telecommunications +424516,Telecommunications,Telecommunications +421676,Telecommunications,Telecommunications +421673,Telecommunications,Telecommunications +421669,Telecommunications,Telecommunications +421663,Telecommunications,Telecommunications +421656,Telecommunications,Telecommunications +421652,Telecommunications,Telecommunications +419741,Telecommunications,Telecommunications +419732,Telecommunications,Telecommunications +415769,Telecommunications,Telecommunications +415767,Telecommunications,Telecommunications +415765,Telecommunications,Telecommunications +415763,Telecommunications,Telecommunications +415760,Telecommunications,Telecommunications +415759,Telecommunications,Telecommunications +415758,Telecommunications,Telecommunications +415757,Telecommunications,Telecommunications +415749,Telecommunications,Telecommunications +415744,Telecommunications,Telecommunications +415742,Telecommunications,Telecommunications +415741,Telecommunications,Telecommunications +410919,Telecommunications,Telecommunications +410918,Telecommunications,Telecommunications +410917,Telecommunications,Telecommunications +395538,Science and Technology,Science and Technology +394588,Science and Technology,Science and Technology +378922,Science and Technology,Science and Technology +378920,Science and Technology,Science and Technology +378915,Science and Technology,Science and Technology +383124,Science and Technology,Science and Technology +383969,Science and Technology,Science and Technology +383661,Science and Technology,Science and Technology +380670,Arts and Culture,Arts and Culture +380668,Arts and Culture,Arts and Culture +389675,Arts and Culture,Arts and Culture +389674,Arts and Culture,Arts and Culture +377922,Arts and Culture,Arts and Culture +433004,Arts and Culture,Arts and Culture +431951,Arts and Culture,Arts and Culture +431866,Arts and Culture,Arts and Culture +429865,Arts and Culture,Arts and Culture +428226,Arts and Culture,Arts and Culture +428225,Arts and Culture,Arts and Culture +427119,Arts and Culture,Arts and Culture +427118,Arts and Culture,Arts and Culture +427117,Arts and Culture,Arts and Culture +425656,Arts and Culture,Arts and Culture +425268,Arts and Culture,Arts and Culture +424575,Arts and Culture,Arts and Culture +424574,Arts and Culture,Arts and Culture +423071,Arts and Culture,Arts and Culture +420633,Arts and Culture,Arts and Culture +420632,Arts and Culture,Arts and Culture +417149,Arts and Culture,Arts and Culture +415269,Arts and Culture,Arts and Culture +415267,Arts and Culture,Arts and Culture +408469,Arts and Culture,Arts and Culture +398647,Arts and Culture,Arts and Culture +395545,Arts and Culture,Arts and Culture +389680,Arts and Culture,Arts and Culture +389679,Arts and Culture,Arts and Culture +380664,Telecommunications,Telecommunications +380664,Science and Technology,Science and Technology +387774,Science and Technology,Science and Technology +387768,Science and Technology,Science and Technology +413315,Science and Technology,Science and Technology +378217,Aboriginal Affairs,Aboriginal Affairs +382758,Aboriginal Affairs,Aboriginal Affairs +382757,Aboriginal Affairs,Aboriginal Affairs +382955,Aboriginal Affairs,Aboriginal Affairs +382758,Arts and Culture,Arts and Culture +382757,Arts and Culture,Arts and Culture +382955,Arts and Culture,Arts and Culture +389971,Aboriginal Affairs,Aboriginal Affairs +380412,Aboriginal Affairs,Aboriginal Affairs +395654,Aboriginal Affairs,Aboriginal Affairs +393486,Aboriginal Affairs,Aboriginal Affairs +393485,Aboriginal Affairs,Aboriginal Affairs +390925,Aboriginal Affairs,Aboriginal Affairs +390921,Aboriginal Affairs,Aboriginal Affairs +389990,Aboriginal Affairs,Aboriginal Affairs +389984,Aboriginal Affairs,Aboriginal Affairs +389965,Aboriginal Affairs,Aboriginal Affairs +380413,Aboriginal Affairs,Aboriginal Affairs +380775,Aboriginal Affairs,Aboriginal Affairs +405947,Arts and Culture,Arts and Culture +395220,Arts and Culture,Arts and Culture +384270,Arts and Culture,Arts and Culture +416591,Science and Technology,Science and Technology +416550,Science and Technology,Science and Technology +413284,Science and Technology,Science and Technology +536709,Science and Technology,Science and Technology +536708,Science and Technology,Science and Technology +536707,Science and Technology,Science and Technology +536706,Science and Technology,Science and Technology +536705,Science and Technology,Science and Technology +536704,Science and Technology,Science and Technology +536703,Science and Technology,Science and Technology +453453,Aboriginal Affairs,Aboriginal Affairs +424778,Aboriginal Affairs,Aboriginal Affairs +407502,Aboriginal Affairs,Aboriginal Affairs +397304,Aboriginal Affairs,Aboriginal Affairs +484049,Aboriginal Affairs,Aboriginal Affairs +379266,Science and Technology,Science and Technology +381372,Science and Technology,Science and Technology +525820,Science and Technology,Science and Technology +511739,Science and Technology,Science and Technology +461114,Science and Technology,Science and Technology +458395,Science and Technology,Science and Technology +399491,Aboriginal Affairs,Aboriginal Affairs +382886,Aboriginal Affairs,Aboriginal Affairs +382885,Aboriginal Affairs,Aboriginal Affairs +383049,Aboriginal Affairs,Aboriginal Affairs +382886,Arts and Culture,Arts and Culture +382885,Arts and Culture,Arts and Culture +383049,Arts and Culture,Arts and Culture +405101,Aboriginal Affairs,Aboriginal Affairs +403245,Aboriginal Affairs,Aboriginal Affairs +406553,Aboriginal Affairs,Aboriginal Affairs +405137,Aboriginal Affairs,Aboriginal Affairs +405136,Aboriginal Affairs,Aboriginal Affairs +405135,Aboriginal Affairs,Aboriginal Affairs +427172,Aboriginal Affairs,Aboriginal Affairs +427171,Aboriginal Affairs,Aboriginal Affairs +416956,Aboriginal Affairs,Aboriginal Affairs +416955,Aboriginal Affairs,Aboriginal Affairs +416954,Aboriginal Affairs,Aboriginal Affairs +416953,Aboriginal Affairs,Aboriginal Affairs +416952,Aboriginal Affairs,Aboriginal Affairs +402311,Aboriginal Affairs,Aboriginal Affairs +427176,Aboriginal Affairs,Aboriginal Affairs +427175,Aboriginal Affairs,Aboriginal Affairs +427174,Aboriginal Affairs,Aboriginal Affairs +435991,Aboriginal Affairs,Aboriginal Affairs +435990,Aboriginal Affairs,Aboriginal Affairs +420265,Aboriginal Affairs,Aboriginal Affairs +415804,Aboriginal Affairs,Aboriginal Affairs +415800,Aboriginal Affairs,Aboriginal Affairs +400746,Aboriginal Affairs,Aboriginal Affairs +400744,Aboriginal Affairs,Aboriginal Affairs +400741,Aboriginal Affairs,Aboriginal Affairs +400737,Aboriginal Affairs,Aboriginal Affairs +400733,Aboriginal Affairs,Aboriginal Affairs +400729,Aboriginal Affairs,Aboriginal Affairs +396726,Aboriginal Affairs,Aboriginal Affairs +396712,Aboriginal Affairs,Aboriginal Affairs +396681,Aboriginal Affairs,Aboriginal Affairs +396666,Aboriginal Affairs,Aboriginal Affairs +440363,Aboriginal Affairs,Aboriginal Affairs +418148,Aboriginal Affairs,Aboriginal Affairs +418143,Aboriginal Affairs,Aboriginal Affairs +402960,Aboriginal Affairs,Aboriginal Affairs +402957,Aboriginal Affairs,Aboriginal Affairs +398775,Aboriginal Affairs,Aboriginal Affairs +396341,Aboriginal Affairs,Aboriginal Affairs +392651,Aboriginal Affairs,Aboriginal Affairs +381982,Aboriginal Affairs,Aboriginal Affairs +380716,Aboriginal Affairs,Aboriginal Affairs +504412,Aboriginal Affairs,Aboriginal Affairs +465699,Aboriginal Affairs,Aboriginal Affairs +464170,Aboriginal Affairs,Aboriginal Affairs +463365,Aboriginal Affairs,Aboriginal Affairs +448199,Aboriginal Affairs,Aboriginal Affairs +445567,Aboriginal Affairs,Aboriginal Affairs +443973,Aboriginal Affairs,Aboriginal Affairs +441802,Aboriginal Affairs,Aboriginal Affairs +441801,Aboriginal Affairs,Aboriginal Affairs +441800,Aboriginal Affairs,Aboriginal Affairs +441799,Aboriginal Affairs,Aboriginal Affairs +441798,Aboriginal Affairs,Aboriginal Affairs +439111,Aboriginal Affairs,Aboriginal Affairs +439102,Aboriginal Affairs,Aboriginal Affairs +439099,Aboriginal Affairs,Aboriginal Affairs +439094,Aboriginal Affairs,Aboriginal Affairs +433608,Aboriginal Affairs,Aboriginal Affairs +431641,Aboriginal Affairs,Aboriginal Affairs +431640,Aboriginal Affairs,Aboriginal Affairs +431153,Aboriginal Affairs,Aboriginal Affairs +426268,Aboriginal Affairs,Aboriginal Affairs +426267,Aboriginal Affairs,Aboriginal Affairs +426254,Aboriginal Affairs,Aboriginal Affairs +387611,Aboriginal Affairs,Aboriginal Affairs +382943,Aboriginal Affairs,Aboriginal Affairs +419004,Aboriginal Affairs,Aboriginal Affairs +415722,Aboriginal Affairs,Aboriginal Affairs +389670,Arts and Culture,Arts and Culture +389669,Arts and Culture,Arts and Culture +381841,Broadcasting,Broadcasting +381840,Broadcasting,Broadcasting +409216,Broadcasting,Broadcasting +382858,Broadcasting,Broadcasting +380634,Aboriginal Affairs,Aboriginal Affairs +512321,Broadcasting,Radiodiffusion +476225,Broadcasting,Radiodiffusion +424733,Broadcasting,Radiodiffusion +381799,Broadcasting,Radiodiffusion +381136,Broadcasting,Radiodiffusion +523746,Broadcasting,Radiodiffusion +516351,Broadcasting,Radiodiffusion +516118,Broadcasting,Radiodiffusion +404337,Aboriginal Affairs,Aboriginal Affairs +404336,Aboriginal Affairs,Aboriginal Affairs +392006,Aboriginal Affairs,Aboriginal Affairs +402475,Science and Technology,Science and Technology +410574,Science and Technology,Science and Technology +410573,Science and Technology,Science and Technology +410580,Science and Technology,Science and Technology +410577,Science and Technology,Science and Technology +410576,Science and Technology,Science and Technology +424396,Science and Technology,Science and Technology +461984,Science and Technology,Science and Technology +382430,Aboriginal Affairs,Aboriginal Affairs +381763,Aboriginal Affairs,Aboriginal Affairs +383116,Aboriginal Affairs,Aboriginal Affairs +412351,Aboriginal Affairs,Aboriginal Affairs +381776,Aboriginal Affairs,Aboriginal Affairs +382103,Arts and Culture,Arts and Culture +422579,Arts and Culture,Arts and Culture +407285,Arts and Culture,Arts and Culture +407282,Arts and Culture,Arts and Culture +401068,Arts and Culture,Arts and Culture +401067,Arts and Culture,Arts and Culture +401066,Arts and Culture,Arts and Culture +401065,Arts and Culture,Arts and Culture +394546,Arts and Culture,Arts and Culture +394545,Arts and Culture,Arts and Culture +391592,Arts and Culture,Arts and Culture +391591,Arts and Culture,Arts and Culture +391591,Broadcasting,Broadcasting +391589,Broadcasting,Broadcasting +381786,Aboriginal Affairs,Aboriginal Affairs +381785,Aboriginal Affairs,Aboriginal Affairs +463733,Aboriginal Affairs,Aboriginal Affairs +463209,Aboriginal Affairs,Aboriginal Affairs +463139,Aboriginal Affairs,Aboriginal Affairs +463137,Aboriginal Affairs,Aboriginal Affairs +463134,Aboriginal Affairs,Aboriginal Affairs +462916,Aboriginal Affairs,Aboriginal Affairs +462843,Aboriginal Affairs,Aboriginal Affairs +462839,Aboriginal Affairs,Aboriginal Affairs +462836,Aboriginal Affairs,Aboriginal Affairs +462832,Aboriginal Affairs,Aboriginal Affairs +462109,Aboriginal Affairs,Aboriginal Affairs +462106,Aboriginal Affairs,Aboriginal Affairs +460948,Aboriginal Affairs,Aboriginal Affairs +449795,Aboriginal Affairs,Aboriginal Affairs +432738,Aboriginal Affairs,Aboriginal Affairs +432737,Aboriginal Affairs,Aboriginal Affairs +418483,Aboriginal Affairs,Aboriginal Affairs +381964,Aboriginal Affairs,Aboriginal Affairs +381963,Aboriginal Affairs,Aboriginal Affairs +383632,Science and Technology,Science and Technology +383629,Science and Technology,Science and Technology +382351,Science and Technology,Science and Technology +382347,Science and Technology,Science and Technology +421960,Science and Technology,Science and Technology +419610,Science and Technology,Science and Technology +419597,Science and Technology,Science and Technology +419588,Science and Technology,Science and Technology +389983,Science and Technology,Science and Technology +402779,Science and Technology,Science and Technology +408023,Aboriginal Affairs,Aboriginal Affairs +404017,Aboriginal Affairs,Aboriginal Affairs +389981,Science and Technology,Science and Technology +384952,Science and Technology,Science and Technology +404518,Science and Technology,Science and Technology +404517,Science and Technology,Science and Technology +403221,Science and Technology,Science and Technology +400546,Science and Technology,Science and Technology +393608,Science and Technology,Science and Technology +393547,Science and Technology,Science and Technology +392256,Science and Technology,Science and Technology +392255,Science and Technology,Science and Technology +389941,Science and Technology,Science and Technology +389691,Science and Technology,Science and Technology +389683,Science and Technology,Science and Technology +385267,Science and Technology,Science and Technology +385266,Science and Technology,Science and Technology +385264,Science and Technology,Science and Technology +384950,Science and Technology,Science and Technology +384932,Science and Technology,Science and Technology +384505,Science and Technology,Science and Technology +383107,Science and Technology,Science and Technology +383106,Science and Technology,Science and Technology +410479,Science and Technology,Science and Technology +408269,Science and Technology,Science and Technology +407258,Science and Technology,Science and Technology +404515,Science and Technology,Science and Technology +404514,Science and Technology,Science and Technology +404512,Science and Technology,Science and Technology +404204,Science and Technology,Science and Technology +404202,Science and Technology,Science and Technology +404201,Science and Technology,Science and Technology +404198,Science and Technology,Science and Technology +403483,Science and Technology,Science and Technology +403212,Science and Technology,Science and Technology +403099,Science and Technology,Science and Technology +400360,Science and Technology,Science and Technology +398247,Science and Technology,Science and Technology +395670,Science and Technology,Science and Technology +382298,Aboriginal Affairs,Aboriginal Affairs +384036,Aboriginal Affairs,Aboriginal Affairs +384035,Aboriginal Affairs,Aboriginal Affairs +383080,Aboriginal Affairs,Aboriginal Affairs +383078,Aboriginal Affairs,Aboriginal Affairs +383077,Aboriginal Affairs,Aboriginal Affairs +383076,Aboriginal Affairs,Aboriginal Affairs +383075,Aboriginal Affairs,Aboriginal Affairs +383074,Aboriginal Affairs,Aboriginal Affairs +382832,Aboriginal Affairs,Aboriginal Affairs +382831,Aboriginal Affairs,Aboriginal Affairs +382829,Aboriginal Affairs,Aboriginal Affairs +382827,Aboriginal Affairs,Aboriginal Affairs +382826,Aboriginal Affairs,Aboriginal Affairs +382304,Aboriginal Affairs,Aboriginal Affairs +382302,Aboriginal Affairs,Aboriginal Affairs +382301,Aboriginal Affairs,Aboriginal Affairs +382300,Aboriginal Affairs,Aboriginal Affairs +389485,Science and Technology,Science and Technology +389484,Science and Technology,Science and Technology +410586,Science and Technology,Science and Technology +410584,Science and Technology,Science and Technology +389491,Science and Technology,Science and Technology +385409,Arts and Culture,Arts and Culture +445543,Arts and Culture,Arts and Culture +387705,Arts and Culture,Arts and Culture +387672,Arts and Culture,Arts and Culture +445543,Broadcasting,Broadcasting +410084,Science and Technology,Science and Technology +410083,Science and Technology,Science and Technology +383568,Arts and Culture,Arts et culture +383562,Arts and Culture,Arts et culture +387902,Arts and Culture,Arts et culture +387900,Arts and Culture,Arts et culture +387899,Arts and Culture,Arts et culture +387898,Arts and Culture,Arts et culture +387894,Arts and Culture,Arts et culture +385632,Arts and Culture,Arts et culture +385631,Arts and Culture,Arts et culture +385624,Arts and Culture,Arts et culture +385620,Arts and Culture,Arts et culture +385617,Arts and Culture,Arts et culture +396545,Arts and Culture,Arts et culture +396699,Arts and Culture,Arts et culture +445074,Arts and Culture,Arts et culture +388625,Science and Technology,Science and Technology +385710,Science and Technology,Science and Technology +389363,Science and Technology,Science and Technology +419603,Arts and Culture,Arts and Culture +382988,Aboriginal Affairs,Aboriginal Affairs +532963,Arts and Culture,Arts and Culture +520448,Arts and Culture,Arts and Culture +483599,Arts and Culture,Arts and Culture +483198,Arts and Culture,Arts and Culture +464352,Arts and Culture,Arts and Culture +427061,Arts and Culture,Arts and Culture +425744,Arts and Culture,Arts and Culture +410823,Arts and Culture,Arts and Culture +408424,Arts and Culture,Arts and Culture +404385,Arts and Culture,Arts and Culture +404384,Arts and Culture,Arts and Culture +399454,Arts and Culture,Arts and Culture +390001,Arts and Culture,Arts and Culture +384570,Arts and Culture,Arts and Culture +384569,Arts and Culture,Arts and Culture +384568,Arts and Culture,Arts and Culture +384221,Arts and Culture,Arts and Culture +383044,Arts and Culture,Arts and Culture +420355,Arts and Culture,Arts and Culture +420354,Arts and Culture,Arts and Culture +420353,Arts and Culture,Arts and Culture +420352,Arts and Culture,Arts and Culture +411182,Arts and Culture,Arts and Culture +411061,Arts and Culture,Arts and Culture +411060,Arts and Culture,Arts and Culture +410689,Arts and Culture,Arts and Culture +410254,Arts and Culture,Arts and Culture +408673,Arts and Culture,Arts and Culture +408506,Arts and Culture,Arts and Culture +408505,Arts and Culture,Arts and Culture +408504,Arts and Culture,Arts and Culture +408503,Arts and Culture,Arts and Culture +408100,Arts and Culture,Arts and Culture +406296,Arts and Culture,Arts and Culture +406295,Arts and Culture,Arts and Culture +406173,Arts and Culture,Arts and Culture +408503,Aboriginal Affairs,Aboriginal Affairs +408100,Aboriginal Affairs,Aboriginal Affairs +406297,Aboriginal Affairs,Aboriginal Affairs +406296,Aboriginal Affairs,Aboriginal Affairs +406295,Aboriginal Affairs,Aboriginal Affairs +406173,Aboriginal Affairs,Aboriginal Affairs +406171,Aboriginal Affairs,Aboriginal Affairs +404386,Aboriginal Affairs,Aboriginal Affairs +404385,Aboriginal Affairs,Aboriginal Affairs +404384,Aboriginal Affairs,Aboriginal Affairs +399455,Aboriginal Affairs,Aboriginal Affairs +399454,Aboriginal Affairs,Aboriginal Affairs +390003,Aboriginal Affairs,Aboriginal Affairs +390001,Aboriginal Affairs,Aboriginal Affairs +384570,Aboriginal Affairs,Aboriginal Affairs +384569,Aboriginal Affairs,Aboriginal Affairs +384568,Aboriginal Affairs,Aboriginal Affairs +384221,Aboriginal Affairs,Aboriginal Affairs +383044,Aboriginal Affairs,Aboriginal Affairs +420355,Aboriginal Affairs,Aboriginal Affairs +420354,Aboriginal Affairs,Aboriginal Affairs +420353,Aboriginal Affairs,Aboriginal Affairs +420352,Aboriginal Affairs,Aboriginal Affairs +417290,Aboriginal Affairs,Aboriginal Affairs +411182,Aboriginal Affairs,Aboriginal Affairs +411061,Aboriginal Affairs,Aboriginal Affairs +411060,Aboriginal Affairs,Aboriginal Affairs +410689,Aboriginal Affairs,Aboriginal Affairs +410254,Aboriginal Affairs,Aboriginal Affairs +379124,Science and Technology,Science and Technology +373127,Broadcasting,Broadcasting +373127,Telecommunications,Telecommunications +371287,Aboriginal Affairs,Aboriginal Affairs +395871,Aboriginal Affairs,Aboriginal Affairs +475520,Science and Technology,Science and Technology +417668,Aboriginal Affairs,Aboriginal Affairs +392079,Science and Technology,Science and Technology +380552,Aboriginal Affairs,Aboriginal Affairs +372559,Arts and Culture,Arts and Culture +377992,Aboriginal Affairs,Aboriginal Affairs +378067,Aboriginal Affairs,Aboriginal Affairs +394547,Arts and Culture,Arts and Culture +379766,Aboriginal Affairs,Aboriginal Affairs +391956,Arts and Culture,Arts et culture +367989,Science and Technology,Science and Technology +367630,Science and Technology,Science and Technology +369265,Aboriginal Affairs,Aboriginal Affairs +370768,Aboriginal Affairs,Aboriginal Affairs +368450,Arts and Culture,Arts and Culture +367762,Aboriginal Affairs,Aboriginal Affairs +370092,Arts and Culture,Arts and Culture +431250,Aboriginal Affairs,Aboriginal Affairs +513199,Science and Technology,Science and Technology +376851,Aboriginal Affairs,Aboriginal Affairs +376851,Science and Technology,Science and Technology +376549,Aboriginal Affairs,Aboriginal Affairs +370305,Science and Technology,Science and Technology +419328,Arts and Culture,Arts and Culture +380267,Arts and Culture,Arts and Culture +372892,Broadcasting,Broadcasting +391926,Science and Technology,Science and Technology +371778,Arts and Culture,Arts and Culture +371812,Arts and Culture,Arts and Culture +370362,Aboriginal Affairs,Aboriginal Affairs +397443,Aboriginal Affairs,Aboriginal Affairs +380774,Aboriginal Affairs,Aboriginal Affairs +474869,Telecommunications,Telecommunications +372180,Science and Technology,Science and Technology +370496,Aboriginal Affairs,Aboriginal Affairs +380686,Science and Technology,Science and Technology +374126,Arts and Culture,Arts et culture +399818,Science and Technology,Science and Technology +374003,Aboriginal Affairs,Aboriginal Affairs +371202,Arts and Culture,Arts and Culture +392202,Arts and Culture,Arts and Culture +435380,Aboriginal Affairs,Aboriginal Affairs +385027,Arts and Culture,Arts and Culture +385027,Broadcasting,Broadcasting +368695,Science and Technology,Science and Technology +373187,Aboriginal Affairs,Aboriginal Affairs +371675,Aboriginal Affairs,Aboriginal Affairs +371420,Broadcasting,Broadcasting +371420,Telecommunications,Telecommunications +378030,Arts and Culture,Arts and Culture +468215,Aboriginal Affairs,Aboriginal Affairs +384999,Broadcasting,Broadcasting +385003,Arts and Culture,Arts and Culture +385005,Arts and Culture,Arts and Culture +385005,Broadcasting,Broadcasting +371393,Aboriginal Affairs,Aboriginal Affairs +376011,Arts and Culture,Arts and Culture +370757,Arts and Culture,Arts and Culture +370752,Arts and Culture,Arts and Culture +371412,Science and Technology,Science and Technology +371412,Telecommunications,Telecommunications +371530,Aboriginal Affairs,Aboriginal Affairs +446894,Broadcasting,Broadcasting +371297,Science and Technology,Science and Technology +371299,Telecommunications,Telecommunications +371519,Aboriginal Affairs,Aboriginal Affairs +382219,Arts and Culture,Arts and Culture +370191,Arts and Culture,Arts et culture +376381,Aboriginal Affairs,Aboriginal Affairs +376381,Science and Technology,Science and Technology +371199,Science and Technology,Science and Technology +420955,Science and Technology,Science and Technology +376651,Science and Technology,Sciences et technologies +374144,Science and Technology,Science and Technology +378342,Aboriginal Affairs,Aboriginal Affairs +371259,Aboriginal Affairs,Aboriginal Affairs +382021,Arts and Culture,Arts and Culture +391594,Arts and Culture,Arts and Culture +370076,Arts and Culture,Arts and Culture +371991,Science and Technology,Science and Technology +381587,Telecommunications,Telecommunications +370885,Arts and Culture,Arts and Culture +371973,Aboriginal Affairs,Aboriginal Affairs +417463,Aboriginal Affairs,Aboriginal Affairs +370177,Aboriginal Affairs,Aboriginal Affairs +371376,Science and Technology,Science and Technology +380162,Science and Technology,Science and Technology +374102,Arts and Culture,Arts et culture +509409,Science and Technology,Science and Technology +544409,Broadcasting,Broadcasting +523029,Telecommunications,Telecommunications +370548,Aboriginal Affairs,Aboriginal Affairs +370573,Aboriginal Affairs,Aboriginal Affairs +370596,Aboriginal Affairs,Aboriginal Affairs +371390,Aboriginal Affairs,Aboriginal Affairs +373707,Aboriginal Affairs,Aboriginal Affairs +377574,Science and Technology,Science and Technology +370663,Aboriginal Affairs,Aboriginal Affairs +377171,Arts and Culture,Arts and Culture +381282,Aboriginal Affairs,Aboriginal Affairs +380085,Aboriginal Affairs,Aboriginal Affairs +375823,Broadcasting,Radiodiffusion +371092,Aboriginal Affairs,Aboriginal Affairs +371095,Aboriginal Affairs,Aboriginal Affairs +371103,Aboriginal Affairs,Aboriginal Affairs +399568,Aboriginal Affairs,Aboriginal Affairs +377362,Science and Technology,Science and Technology +523034,Telecommunications,Telecommunications +371936,Arts and Culture,Arts and Culture +441601,Telecommunications,Telecommunications +526751,Telecommunications,Telecommunications +372035,Science and Technology,Science and Technology +372035,Telecommunications,Telecommunications +485307,Broadcasting,Broadcasting +372067,Telecommunications,Telecommunications +426809,Aboriginal Affairs,Aboriginal Affairs +372465,Aboriginal Affairs,Aboriginal Affairs +372472,Aboriginal Affairs,Aboriginal Affairs +372478,Aboriginal Affairs,Aboriginal Affairs +373317,Science and Technology,Science and Technology +372902,Aboriginal Affairs,Aboriginal Affairs +372903,Aboriginal Affairs,Aboriginal Affairs +372909,Aboriginal Affairs,Aboriginal Affairs +372980,Aboriginal Affairs,Aboriginal Affairs +394656,Aboriginal Affairs,Aboriginal Affairs +385802,Science and Technology,Science and Technology +427311,Aboriginal Affairs,Aboriginal Affairs +378425,Science and Technology,Science and Technology +410582,Science and Technology,Science and Technology +382811,Science and Technology,Science and Technology +375654,Telecommunications,Telecommunications +389522,Science and Technology,Science and Technology +377885,Science and Technology,Science and Technology +512338,Science and Technology,Science and Technology +381157,Telecommunications,Telecommunications +377041,Telecommunications,Telecommunications +376193,Telecommunications,Telecommunications +462687,Science and Technology,Science and Technology +374608,Aboriginal Affairs,Aboriginal Affairs +373506,Aboriginal Affairs,Aboriginal Affairs +375586,Aboriginal Affairs,Aboriginal Affairs +373510,Aboriginal Affairs,Aboriginal Affairs +373528,Aboriginal Affairs,Aboriginal Affairs +375786,Arts and Culture,Arts and Culture +518640,Aboriginal Affairs,Aboriginal Affairs +443070,Science and Technology,Science and Technology +380338,Aboriginal Affairs,Aboriginal Affairs +375339,Science and Technology,Science and Technology +389501,Science and Technology,Science and Technology +375426,Aboriginal Affairs,Aboriginal Affairs +395168,Aboriginal Affairs,Aboriginal Affairs +373898,Aboriginal Affairs,Aboriginal Affairs +376153,Science and Technology,Science and Technology +373962,Science and Technology,Science and Technology +425375,Science and Technology,Science and Technology +464906,Aboriginal Affairs,Aboriginal Affairs +385160,Aboriginal Affairs,Aboriginal Affairs +374269,Science and Technology,Science and Technology +397516,Science and Technology,Science and Technology +413332,Science and Technology,Science and Technology +381505,Arts and Culture,Arts et culture +380121,Science and Technology,Science and Technology +381507,Arts and Culture,Arts et culture +409583,Arts and Culture,Arts et culture +379416,Aboriginal Affairs,Aboriginal Affairs +493605,Science and Technology,Sciences et technologies +375169,Aboriginal Affairs,Aboriginal Affairs +379932,Aboriginal Affairs,Aboriginal Affairs +381914,Aboriginal Affairs,Aboriginal Affairs +377340,Aboriginal Affairs,Aboriginal Affairs +477134,Telecommunications,Telecommunications +379561,Science and Technology,Sciences et technologies +377571,Science and Technology,Science and Technology +380422,Arts and Culture,Arts and Culture +380424,Broadcasting,Broadcasting +417039,Science and Technology,Science and Technology +377278,Aboriginal Affairs,Affaires autochtones +381971,Aboriginal Affairs,Aboriginal Affairs +398527,Arts and Culture,Arts et culture +397170,Broadcasting,Radiodiffusion +376647,Telecommunications,Télécommunications +398524,Arts and Culture,Arts et culture +405570,Broadcasting,Radiodiffusion +403728,Telecommunications,Télécommunications +375644,Aboriginal Affairs,Aboriginal Affairs +375654,Aboriginal Affairs,Aboriginal Affairs +375550,Aboriginal Affairs,Aboriginal Affairs +388988,Science and Technology,Science and Technology +395634,Aboriginal Affairs,Aboriginal Affairs +401711,Arts and Culture,Arts and Culture +375865,Arts and Culture,Arts and Culture +375866,Arts and Culture,Arts and Culture +375867,Arts and Culture,Arts and Culture +377839,Aboriginal Affairs,Aboriginal Affairs +414635,Arts and Culture,Arts et culture +406204,Aboriginal Affairs,Aboriginal Affairs +380441,Arts and Culture,Arts and Culture +380442,Broadcasting,Broadcasting +376120,Broadcasting,Radiodiffusion +376124,Aboriginal Affairs,Aboriginal Affairs +376125,Aboriginal Affairs,Aboriginal Affairs +376188,Aboriginal Affairs,Aboriginal Affairs +376190,Science and Technology,Science and Technology +381162,Aboriginal Affairs,Aboriginal Affairs +381164,Aboriginal Affairs,Aboriginal Affairs +376199,Aboriginal Affairs,Aboriginal Affairs +386130,Science and Technology,Science and Technology +444561,Telecommunications,Telecommunications +448447,Science and Technology,Science and Technology +526180,Science and Technology,Science and Technology +376376,Aboriginal Affairs,Aboriginal Affairs +376377,Aboriginal Affairs,Aboriginal Affairs +381231,Aboriginal Affairs,Aboriginal Affairs +454517,Science and Technology,Science and Technology +381163,Aboriginal Affairs,Aboriginal Affairs +376382,Aboriginal Affairs,Aboriginal Affairs +381155,Aboriginal Affairs,Aboriginal Affairs +376388,Aboriginal Affairs,Aboriginal Affairs +376400,Aboriginal Affairs,Aboriginal Affairs +381159,Aboriginal Affairs,Aboriginal Affairs +381158,Aboriginal Affairs,Aboriginal Affairs +381157,Aboriginal Affairs,Aboriginal Affairs +378851,Arts and Culture,Arts and Culture +403102,Broadcasting,Broadcasting +403102,Telecommunications,Telecommunications +419821,Aboriginal Affairs,Affaires autochtones +377521,Science and Technology,Science and Technology +379330,Science and Technology,Science and Technology +379330,Aboriginal Affairs,Aboriginal Affairs +400537,Science and Technology,Science and Technology +379349,Aboriginal Affairs,Aboriginal Affairs +407024,Science and Technology,Science and Technology +377013,Aboriginal Affairs,Aboriginal Affairs +377014,Aboriginal Affairs,Aboriginal Affairs +377016,Aboriginal Affairs,Aboriginal Affairs +377022,Aboriginal Affairs,Aboriginal Affairs +377028,Aboriginal Affairs,Aboriginal Affairs +377032,Aboriginal Affairs,Aboriginal Affairs +391725,Telecommunications,Telecommunications +384210,Arts and Culture,Arts and Culture +434289,Broadcasting,Broadcasting +434289,Telecommunications,Telecommunications +475190,Science and Technology,Science and Technology +378479,Science and Technology,Science and Technology +378479,Arts and Culture,Arts and Culture +380577,Science and Technology,Science and Technology +380577,Telecommunications,Telecommunications +395065,Telecommunications,Telecommunications +377519,Aboriginal Affairs,Aboriginal Affairs +378904,Science and Technology,Science and Technology +450348,Science and Technology,Science and Technology +391846,Science and Technology,Science and Technology +384642,Science and Technology,Science and Technology +380671,Arts and Culture,Arts and Culture +389677,Arts and Culture,Arts and Culture +413973,Science and Technology,Science and Technology +380665,Telecommunications,Telecommunications +380665,Science and Technology,Science and Technology +401265,Science and Technology,Science and Technology +413304,Science and Technology,Science and Technology +399481,Aboriginal Affairs,Aboriginal Affairs +378329,Aboriginal Affairs,Aboriginal Affairs +382759,Aboriginal Affairs,Aboriginal Affairs +382759,Arts and Culture,Arts and Culture +389974,Aboriginal Affairs,Aboriginal Affairs +389979,Aboriginal Affairs,Aboriginal Affairs +385269,Aboriginal Affairs,Aboriginal Affairs +379078,Science and Technology,Science and Technology +407103,Arts and Culture,Arts and Culture +378984,Arts and Culture,Arts and Culture +536702,Science and Technology,Science and Technology +405644,Science and Technology,Science and Technology +394724,Aboriginal Affairs,Aboriginal Affairs +379242,Aboriginal Affairs,Aboriginal Affairs +380684,Science and Technology,Science and Technology +381374,Science and Technology,Science and Technology +380139,Aboriginal Affairs,Aboriginal Affairs +533386,Science and Technology,Science and Technology +380329,Aboriginal Affairs,Aboriginal Affairs +382887,Aboriginal Affairs,Aboriginal Affairs +382887,Arts and Culture,Arts and Culture +380369,Aboriginal Affairs,Aboriginal Affairs +405129,Aboriginal Affairs,Aboriginal Affairs +427173,Aboriginal Affairs,Aboriginal Affairs +380910,Aboriginal Affairs,Affaires autochtones +399527,Science and Technology,Science and Technology +440362,Aboriginal Affairs,Aboriginal Affairs +380520,Aboriginal Affairs,Aboriginal Affairs +419449,Aboriginal Affairs,Aboriginal Affairs +415721,Aboriginal Affairs,Aboriginal Affairs +404480,Broadcasting,Broadcasting +397677,Aboriginal Affairs,Aboriginal Affairs +381840,Arts and Culture,Arts and Culture +381842,Broadcasting,Broadcasting +463172,Aboriginal Affairs,Aboriginal Affairs +380911,Aboriginal Affairs,Affaires autochtones +514842,Broadcasting,Radiodiffusion +380825,Aboriginal Affairs,Aboriginal Affairs +383935,Arts and Culture,Arts and Culture +383936,Broadcasting,Broadcasting +409807,Aboriginal Affairs,Aboriginal Affairs +404860,Broadcasting,Broadcasting +452117,Telecommunications,Telecommunications +402476,Science and Technology,Science and Technology +396647,Aboriginal Affairs,Aboriginal Affairs +381470,Science and Technology,Science and Technology +381777,Aboriginal Affairs,Aboriginal Affairs +410575,Science and Technology,Science and Technology +424398,Science and Technology,Science and Technology +434372,Science and Technology,Science and Technology +382971,Aboriginal Affairs,Aboriginal Affairs +412379,Aboriginal Affairs,Aboriginal Affairs +381999,Science and Technology,Science and Technology +394195,Arts and Culture,Arts and Culture +391589,Arts and Culture,Arts and Culture +391592,Broadcasting,Broadcasting +381787,Aboriginal Affairs,Aboriginal Affairs +382022,Aboriginal Affairs,Aboriginal Affairs +396364,Science and Technology,Science and Technology +395657,Science and Technology,Science and Technology +408025,Aboriginal Affairs,Aboriginal Affairs +395668,Science and Technology,Science and Technology +395669,Science and Technology,Science and Technology +382299,Aboriginal Affairs,Aboriginal Affairs +410556,Science and Technology,Science and Technology +389488,Science and Technology,Science and Technology +387671,Arts and Culture,Arts and Culture +385409,Broadcasting,Broadcasting +410085,Science and Technology,Science and Technology +385700,Science and Technology,Science and Technology +385614,Arts and Culture,Arts et culture +424788,Aboriginal Affairs,Aboriginal Affairs +383153,Arts and Culture,Arts and Culture +382286,Arts and Culture,Arts et culture +382790,Arts and Culture,Arts et culture +388626,Science and Technology,Science and Technology +385877,Arts and Culture,Arts and Culture +382436,Aboriginal Affairs,Aboriginal Affairs +382543,Science and Technology,Science and Technology +382609,Science and Technology,Science and Technology +544562,Arts and Culture,Arts and Culture +404386,Arts and Culture,Arts and Culture +408504,Aboriginal Affairs,Aboriginal Affairs +384553,Arts and Culture,Arts and Culture +385671,Aboriginal Affairs,Aboriginal Affairs +383681,Science and Technology,Science and Technology +384307,Aboriginal Affairs,Aboriginal Affairs +389107,Aboriginal Affairs,Aboriginal Affairs +383991,Aboriginal Affairs,Aboriginal Affairs +413916,Arts and Culture,Arts and Culture +437443,Science and Technology,Science and Technology +447563,Science and Technology,Science and Technology +414642,Arts and Culture,Arts and Culture +456026,Aboriginal Affairs,Aboriginal Affairs +387355,Aboriginal Affairs,Aboriginal Affairs +383269,Science and Technology,Science and Technology +385980,Aboriginal Affairs,Aboriginal Affairs +385980,Science and Technology,Science and Technology +405948,Science and Technology,Science and Technology +387451,Science and Technology,Science and Technology +398441,Aboriginal Affairs,Aboriginal Affairs +390063,Telecommunications,Telecommunications +386245,Science and Technology,Sciences et technologies +386721,Science and Technology,Science and Technology +389708,Aboriginal Affairs,Aboriginal Affairs +424493,Science and Technology,Sciences et technologies +390096,Aboriginal Affairs,Aboriginal Affairs +393322,Aboriginal Affairs,Aboriginal Affairs +389694,Science and Technology,Science and Technology +384084,Aboriginal Affairs,Aboriginal Affairs +401262,Science and Technology,Science and Technology +538368,Aboriginal Affairs,Aboriginal Affairs +452990,Arts and Culture,Arts and Culture +393733,Science and Technology,Science and Technology +390024,Science and Technology,Science and Technology +386641,Aboriginal Affairs,Aboriginal Affairs +388468,Aboriginal Affairs,Aboriginal Affairs +388055,Aboriginal Affairs,Aboriginal Affairs +399160,Science and Technology,Science and Technology +395545,Aboriginal Affairs,Aboriginal Affairs +387018,Aboriginal Affairs,Aboriginal Affairs +390820,Science and Technology,Science and Technology +384541,Aboriginal Affairs,Aboriginal Affairs +384541,Science and Technology,Science and Technology +439695,Arts and Culture,Arts and Culture +408673,Aboriginal Affairs,Aboriginal Affairs +408506,Aboriginal Affairs,Aboriginal Affairs +408505,Aboriginal Affairs,Aboriginal Affairs +384552,Arts and Culture,Arts and Culture +384551,Arts and Culture,Arts and Culture +384554,Arts and Culture,Arts and Culture +385661,Aboriginal Affairs,Aboriginal Affairs +385657,Aboriginal Affairs,Aboriginal Affairs +384305,Aboriginal Affairs,Aboriginal Affairs +384303,Aboriginal Affairs,Aboriginal Affairs +384921,Aboriginal Affairs,Aboriginal Affairs +384309,Aboriginal Affairs,Aboriginal Affairs +384308,Aboriginal Affairs,Aboriginal Affairs +383129,Aboriginal Affairs,Aboriginal Affairs +383990,Aboriginal Affairs,Aboriginal Affairs +383989,Aboriginal Affairs,Aboriginal Affairs +387653,Aboriginal Affairs,Aboriginal Affairs +385926,Aboriginal Affairs,Aboriginal Affairs +385925,Aboriginal Affairs,Aboriginal Affairs +385924,Aboriginal Affairs,Aboriginal Affairs +383995,Aboriginal Affairs,Aboriginal Affairs +383994,Aboriginal Affairs,Aboriginal Affairs +383993,Aboriginal Affairs,Aboriginal Affairs +383992,Aboriginal Affairs,Aboriginal Affairs +410156,Arts and Culture,Arts and Culture +394282,Arts and Culture,Arts and Culture +466593,Science and Technology,Science and Technology +453363,Science and Technology,Science and Technology +405438,Science and Technology,Science and Technology +405419,Science and Technology,Science and Technology +405408,Science and Technology,Science and Technology +398419,Science and Technology,Science and Technology +395554,Science and Technology,Science and Technology +395552,Science and Technology,Science and Technology +395551,Science and Technology,Science and Technology +395550,Science and Technology,Science and Technology +447040,Science and Technology,Science and Technology +446959,Science and Technology,Science and Technology +402604,Science and Technology,Science and Technology +388037,Science and Technology,Science and Technology +414642,Aboriginal Affairs,Aboriginal Affairs +387349,Aboriginal Affairs,Aboriginal Affairs +459620,Science and Technology,Science and Technology +398838,Science and Technology,Science and Technology +398826,Science and Technology,Science and Technology +393636,Science and Technology,Science and Technology +390220,Science and Technology,Science and Technology +387448,Science and Technology,Science and Technology +387444,Science and Technology,Science and Technology +444159,Science and Technology,Science and Technology +432743,Science and Technology,Science and Technology +423160,Science and Technology,Science and Technology +410722,Science and Technology,Science and Technology +408767,Science and Technology,Science and Technology +387449,Science and Technology,Science and Technology +387445,Science and Technology,Science and Technology +437633,Science and Technology,Science and Technology +408687,Science and Technology,Science and Technology +407111,Science and Technology,Science and Technology +398828,Science and Technology,Science and Technology +398440,Aboriginal Affairs,Aboriginal Affairs +395764,Aboriginal Affairs,Aboriginal Affairs +395763,Aboriginal Affairs,Aboriginal Affairs +395762,Aboriginal Affairs,Aboriginal Affairs +395761,Aboriginal Affairs,Aboriginal Affairs +395760,Aboriginal Affairs,Aboriginal Affairs +395758,Aboriginal Affairs,Aboriginal Affairs +395756,Aboriginal Affairs,Aboriginal Affairs +393751,Aboriginal Affairs,Aboriginal Affairs +390450,Aboriginal Affairs,Aboriginal Affairs +384528,Aboriginal Affairs,Aboriginal Affairs +384527,Aboriginal Affairs,Aboriginal Affairs +384526,Aboriginal Affairs,Aboriginal Affairs +384525,Aboriginal Affairs,Aboriginal Affairs +384524,Aboriginal Affairs,Aboriginal Affairs +384521,Aboriginal Affairs,Aboriginal Affairs +384520,Aboriginal Affairs,Aboriginal Affairs +443418,Aboriginal Affairs,Aboriginal Affairs +441167,Aboriginal Affairs,Aboriginal Affairs +423573,Aboriginal Affairs,Aboriginal Affairs +423572,Aboriginal Affairs,Aboriginal Affairs +423571,Aboriginal Affairs,Aboriginal Affairs +414160,Aboriginal Affairs,Aboriginal Affairs +412999,Aboriginal Affairs,Aboriginal Affairs +412998,Aboriginal Affairs,Aboriginal Affairs +412997,Aboriginal Affairs,Aboriginal Affairs +412996,Aboriginal Affairs,Aboriginal Affairs +410406,Aboriginal Affairs,Aboriginal Affairs +406429,Aboriginal Affairs,Aboriginal Affairs +405117,Aboriginal Affairs,Aboriginal Affairs +403078,Aboriginal Affairs,Aboriginal Affairs +403077,Aboriginal Affairs,Aboriginal Affairs +403076,Aboriginal Affairs,Aboriginal Affairs +403075,Aboriginal Affairs,Aboriginal Affairs +403074,Aboriginal Affairs,Aboriginal Affairs +403073,Aboriginal Affairs,Aboriginal Affairs +403072,Aboriginal Affairs,Aboriginal Affairs +403070,Aboriginal Affairs,Aboriginal Affairs +403069,Aboriginal Affairs,Aboriginal Affairs +403068,Aboriginal Affairs,Aboriginal Affairs +403067,Aboriginal Affairs,Aboriginal Affairs +403066,Aboriginal Affairs,Aboriginal Affairs +403065,Aboriginal Affairs,Aboriginal Affairs +400199,Aboriginal Affairs,Aboriginal Affairs +400198,Aboriginal Affairs,Aboriginal Affairs +400196,Aboriginal Affairs,Aboriginal Affairs +400195,Aboriginal Affairs,Aboriginal Affairs +400192,Aboriginal Affairs,Aboriginal Affairs +398448,Aboriginal Affairs,Aboriginal Affairs +398447,Aboriginal Affairs,Aboriginal Affairs +398446,Aboriginal Affairs,Aboriginal Affairs +398444,Aboriginal Affairs,Aboriginal Affairs +398443,Aboriginal Affairs,Aboriginal Affairs +398442,Aboriginal Affairs,Aboriginal Affairs +384177,Telecommunications,Telecommunications +384171,Telecommunications,Telecommunications +399702,Telecommunications,Telecommunications +416671,Science and Technology,Science and Technology +495610,Science and Technology,Science and Technology +386728,Science and Technology,Science and Technology +386727,Science and Technology,Science and Technology +386726,Science and Technology,Science and Technology +386725,Science and Technology,Science and Technology +386724,Science and Technology,Science and Technology +386723,Science and Technology,Science and Technology +386722,Science and Technology,Science and Technology +389707,Aboriginal Affairs,Aboriginal Affairs +387766,Aboriginal Affairs,Aboriginal Affairs +393729,Aboriginal Affairs,Aboriginal Affairs +393726,Aboriginal Affairs,Aboriginal Affairs +392570,Aboriginal Affairs,Aboriginal Affairs +392567,Aboriginal Affairs,Aboriginal Affairs +392538,Aboriginal Affairs,Aboriginal Affairs +389720,Aboriginal Affairs,Aboriginal Affairs +389718,Aboriginal Affairs,Aboriginal Affairs +389716,Aboriginal Affairs,Aboriginal Affairs +389712,Aboriginal Affairs,Aboriginal Affairs +413387,Science and Technology,Sciences et technologies +412933,Science and Technology,Sciences et technologies +386223,Science and Technology,Sciences et technologies +386219,Science and Technology,Sciences et technologies +456543,Science and Technology,Sciences et technologies +456539,Science and Technology,Sciences et technologies +390095,Aboriginal Affairs,Aboriginal Affairs +387406,Aboriginal Affairs,Aboriginal Affairs +387777,Aboriginal Affairs,Aboriginal Affairs +386804,Science and Technology,Science and Technology +386197,Science and Technology,Science and Technology +397208,Science and Technology,Science and Technology +397207,Science and Technology,Science and Technology +396305,Science and Technology,Science and Technology +493807,Aboriginal Affairs,Aboriginal Affairs +544170,Aboriginal Affairs,Aboriginal Affairs +453008,Aboriginal Affairs,Aboriginal Affairs +453006,Aboriginal Affairs,Aboriginal Affairs +538372,Aboriginal Affairs,Aboriginal Affairs +448109,Arts and Culture,Arts and Culture +448106,Arts and Culture,Arts and Culture +433954,Arts and Culture,Arts and Culture +432618,Arts and Culture,Arts and Culture +432617,Arts and Culture,Arts and Culture +544173,Arts and Culture,Arts and Culture +544170,Arts and Culture,Arts and Culture +540469,Arts and Culture,Arts and Culture +538372,Arts and Culture,Arts and Culture +538368,Arts and Culture,Arts and Culture +502825,Arts and Culture,Arts and Culture +502801,Arts and Culture,Arts and Culture +496211,Arts and Culture,Arts and Culture +493807,Arts and Culture,Arts and Culture +493802,Arts and Culture,Arts and Culture +457726,Arts and Culture,Arts and Culture +457725,Arts and Culture,Arts and Culture +453008,Arts and Culture,Arts and Culture +453006,Arts and Culture,Arts and Culture +386640,Aboriginal Affairs,Aboriginal Affairs +386637,Aboriginal Affairs,Aboriginal Affairs +386636,Aboriginal Affairs,Aboriginal Affairs +528196,Aboriginal Affairs,Aboriginal Affairs +522969,Aboriginal Affairs,Aboriginal Affairs +520499,Aboriginal Affairs,Aboriginal Affairs +519795,Aboriginal Affairs,Aboriginal Affairs +515680,Aboriginal Affairs,Aboriginal Affairs +477326,Aboriginal Affairs,Aboriginal Affairs +476413,Aboriginal Affairs,Aboriginal Affairs +476412,Aboriginal Affairs,Aboriginal Affairs +474142,Aboriginal Affairs,Aboriginal Affairs +472837,Aboriginal Affairs,Aboriginal Affairs +471740,Aboriginal Affairs,Aboriginal Affairs +471738,Aboriginal Affairs,Aboriginal Affairs +414074,Aboriginal Affairs,Aboriginal Affairs +414073,Aboriginal Affairs,Aboriginal Affairs +414072,Aboriginal Affairs,Aboriginal Affairs +414071,Aboriginal Affairs,Aboriginal Affairs +407032,Aboriginal Affairs,Aboriginal Affairs +402214,Aboriginal Affairs,Aboriginal Affairs +402213,Aboriginal Affairs,Aboriginal Affairs +402212,Aboriginal Affairs,Aboriginal Affairs +402211,Aboriginal Affairs,Aboriginal Affairs +395420,Aboriginal Affairs,Aboriginal Affairs +395418,Aboriginal Affairs,Aboriginal Affairs +395417,Aboriginal Affairs,Aboriginal Affairs +395416,Aboriginal Affairs,Aboriginal Affairs +395415,Aboriginal Affairs,Aboriginal Affairs +395414,Aboriginal Affairs,Aboriginal Affairs +395412,Aboriginal Affairs,Aboriginal Affairs +395411,Aboriginal Affairs,Aboriginal Affairs +395409,Aboriginal Affairs,Aboriginal Affairs +395407,Aboriginal Affairs,Aboriginal Affairs +395404,Aboriginal Affairs,Aboriginal Affairs +391775,Aboriginal Affairs,Aboriginal Affairs +391774,Aboriginal Affairs,Aboriginal Affairs +386654,Aboriginal Affairs,Aboriginal Affairs +386646,Aboriginal Affairs,Aboriginal Affairs +386645,Aboriginal Affairs,Aboriginal Affairs +386644,Aboriginal Affairs,Aboriginal Affairs +386642,Aboriginal Affairs,Aboriginal Affairs +388466,Aboriginal Affairs,Aboriginal Affairs +388453,Aboriginal Affairs,Aboriginal Affairs +392595,Aboriginal Affairs,Aboriginal Affairs +389774,Aboriginal Affairs,Aboriginal Affairs +389772,Aboriginal Affairs,Aboriginal Affairs +388519,Aboriginal Affairs,Aboriginal Affairs +388518,Aboriginal Affairs,Aboriginal Affairs +388517,Aboriginal Affairs,Aboriginal Affairs +388516,Aboriginal Affairs,Aboriginal Affairs +388515,Aboriginal Affairs,Aboriginal Affairs +388514,Aboriginal Affairs,Aboriginal Affairs +388513,Aboriginal Affairs,Aboriginal Affairs +388512,Aboriginal Affairs,Aboriginal Affairs +388511,Aboriginal Affairs,Aboriginal Affairs +388508,Aboriginal Affairs,Aboriginal Affairs +388500,Aboriginal Affairs,Aboriginal Affairs +388496,Aboriginal Affairs,Aboriginal Affairs +388493,Aboriginal Affairs,Aboriginal Affairs +388490,Aboriginal Affairs,Aboriginal Affairs +388477,Aboriginal Affairs,Aboriginal Affairs +388473,Aboriginal Affairs,Aboriginal Affairs +388472,Aboriginal Affairs,Aboriginal Affairs +388471,Aboriginal Affairs,Aboriginal Affairs +388470,Aboriginal Affairs,Aboriginal Affairs +388469,Aboriginal Affairs,Aboriginal Affairs +388051,Aboriginal Affairs,Aboriginal Affairs +388047,Aboriginal Affairs,Aboriginal Affairs +388058,Aboriginal Affairs,Aboriginal Affairs +388057,Aboriginal Affairs,Aboriginal Affairs +399159,Science and Technology,Science and Technology +395984,Science and Technology,Science and Technology +404990,Science and Technology,Science and Technology +399161,Science and Technology,Science and Technology +431951,Aboriginal Affairs,Aboriginal Affairs +427119,Aboriginal Affairs,Aboriginal Affairs +427118,Aboriginal Affairs,Aboriginal Affairs +427117,Aboriginal Affairs,Aboriginal Affairs +425656,Aboriginal Affairs,Aboriginal Affairs +425655,Aboriginal Affairs,Aboriginal Affairs +424577,Aboriginal Affairs,Aboriginal Affairs +424576,Aboriginal Affairs,Aboriginal Affairs +424575,Aboriginal Affairs,Aboriginal Affairs +424574,Aboriginal Affairs,Aboriginal Affairs +387017,Aboriginal Affairs,Aboriginal Affairs +484965,Aboriginal Affairs,Aboriginal Affairs +408322,Aboriginal Affairs,Aboriginal Affairs +401213,Aboriginal Affairs,Aboriginal Affairs +401211,Aboriginal Affairs,Aboriginal Affairs +401206,Aboriginal Affairs,Aboriginal Affairs +396837,Aboriginal Affairs,Aboriginal Affairs +396829,Aboriginal Affairs,Aboriginal Affairs +387022,Aboriginal Affairs,Aboriginal Affairs +387021,Aboriginal Affairs,Aboriginal Affairs +387019,Aboriginal Affairs,Aboriginal Affairs +384540,Aboriginal Affairs,Aboriginal Affairs +384539,Aboriginal Affairs,Aboriginal Affairs +384542,Aboriginal Affairs,Aboriginal Affairs +412478,Arts and Culture,Arts and Culture +412477,Arts and Culture,Arts and Culture +480226,Arts and Culture,Arts and Culture +480225,Arts and Culture,Arts and Culture +468065,Arts and Culture,Arts and Culture +468064,Arts and Culture,Arts and Culture +468063,Arts and Culture,Arts and Culture +468062,Arts and Culture,Arts and Culture +468061,Arts and Culture,Arts and Culture +459006,Arts and Culture,Arts and Culture +441984,Arts and Culture,Arts and Culture +441982,Arts and Culture,Arts and Culture +441980,Arts and Culture,Arts and Culture +470058,Budget,Budget +543713,Budget,Budget +470057,Budget,Budget +470055,Budget,Budget +470054,Budget,Budget +470051,Budget,Budget +466571,Budget,Budget +466568,Budget,Budget +466564,Budget,Budget +466545,Budget,Budget +466544,Budget,Budget +466537,Budget,Budget +463765,Budget,Budget +463764,Budget,Budget +463763,Budget,Budget +446891,Budget,Budget +443109,Budget,Budget +438052,Budget,Budget +435708,Budget,Budget +432296,Budget,Budget +427736,Budget,Budget +427690,Budget,Budget +427689,Budget,Budget +427688,Budget,Budget +423143,Budget,Budget +403431,Budget,Budget +403430,Budget,Budget +403429,Budget,Budget +403426,Budget,Budget +403283,Budget,Budget +403278,Budget,Budget +403264,Budget,Budget +398556,Budget,Budget +398551,Budget,Budget +392633,Budget,Budget +392612,Budget,Budget +392607,Budget,Budget +389952,Budget,Budget +389950,Budget,Budget +389948,Budget,Budget +388056,Budget,Budget +388054,Budget,Budget +388052,Budget,Budget +388050,Budget,Budget +388046,Budget,Budget +388042,Budget,Budget +388024,Budget,Budget +388020,Budget,Budget +384638,Budget,Budget +384637,Budget,Budget +384636,Budget,Budget +384635,Budget,Budget +541203,Budget,Budget +541202,Budget,Budget +541201,Budget,Budget +539613,Budget,Budget +537064,Budget,Budget +537063,Budget,Budget +537060,Budget,Budget +534169,Budget,Budget +534034,Budget,Budget +531218,Budget,Budget +531216,Budget,Budget +531214,Budget,Budget +531213,Budget,Budget +528629,Budget,Budget +528622,Budget,Budget +528621,Budget,Budget +528619,Budget,Budget +525132,Budget,Budget +525131,Budget,Budget +525129,Budget,Budget +525126,Budget,Budget +525120,Budget,Budget +521819,Budget,Budget +521817,Budget,Budget +521816,Budget,Budget +521815,Budget,Budget +521812,Budget,Budget +521810,Budget,Budget +521809,Budget,Budget +521808,Budget,Budget +521807,Budget,Budget +521806,Budget,Budget +519660,Budget,Budget +519659,Budget,Budget +519657,Budget,Budget +519654,Budget,Budget +517093,Budget,Budget +517091,Budget,Budget +517089,Budget,Budget +517087,Budget,Budget +517083,Budget,Budget +514091,Budget,Budget +512814,Budget,Budget +512813,Budget,Budget +512743,Budget,Budget +512742,Budget,Budget +511654,Budget,Budget +510830,Budget,Budget +510829,Budget,Budget +510828,Budget,Budget +510827,Budget,Budget +510826,Budget,Budget +510825,Budget,Budget +510824,Budget,Budget +507391,Budget,Budget +507386,Budget,Budget +507385,Budget,Budget +507383,Budget,Budget +507381,Budget,Budget +507380,Budget,Budget +507378,Budget,Budget +507375,Budget,Budget +505159,Budget,Budget +505155,Budget,Budget +505154,Budget,Budget +501534,Budget,Budget +501533,Budget,Budget +501532,Budget,Budget +501530,Budget,Budget +501529,Budget,Budget +501527,Budget,Budget +501525,Budget,Budget +501522,Budget,Budget +501520,Budget,Budget +501517,Budget,Budget +501516,Budget,Budget +501507,Budget,Budget +501506,Budget,Budget +501502,Budget,Budget +501499,Budget,Budget +501496,Budget,Budget +501492,Budget,Budget +501490,Budget,Budget +498200,Budget,Budget +498199,Budget,Budget +498198,Budget,Budget +498197,Budget,Budget +498196,Budget,Budget +498194,Budget,Budget +498193,Budget,Budget +495416,Budget,Budget +495408,Budget,Budget +495407,Budget,Budget +495405,Budget,Budget +495404,Budget,Budget +495403,Budget,Budget +495402,Budget,Budget +495398,Budget,Budget +495396,Budget,Budget +495394,Budget,Budget +495383,Budget,Budget +495379,Budget,Budget +495375,Budget,Budget +495373,Budget,Budget +495367,Budget,Budget +493251,Budget,Budget +493250,Budget,Budget +493248,Budget,Budget +493246,Budget,Budget +493245,Budget,Budget +493244,Budget,Budget +493243,Budget,Budget +493241,Budget,Budget +493240,Budget,Budget +493239,Budget,Budget +490322,Budget,Budget +490312,Budget,Budget +488442,Budget,Budget +487128,Budget,Budget +487121,Budget,Budget +487117,Budget,Budget +487114,Budget,Budget +487113,Budget,Budget +487112,Budget,Budget +487110,Budget,Budget +483767,Budget,Budget +483766,Budget,Budget +483764,Budget,Budget +483744,Budget,Budget +483742,Budget,Budget +482149,Budget,Budget +482142,Budget,Budget +479732,Budget,Budget +479699,Budget,Budget +479697,Budget,Budget +479696,Budget,Budget +479695,Budget,Budget +479694,Budget,Budget +479693,Budget,Budget +479691,Budget,Budget +479689,Budget,Budget +479683,Budget,Budget +477754,Budget,Budget +477715,Budget,Budget +477713,Budget,Budget +477697,Budget,Budget +476852,Budget,Budget +476851,Budget,Budget +476846,Budget,Budget +476845,Budget,Budget +476841,Budget,Budget +476840,Budget,Budget +476838,Budget,Budget +476835,Budget,Budget +476833,Budget,Budget +474726,Budget,Budget +474725,Budget,Budget +474720,Budget,Budget +474703,Budget,Budget +474701,Budget,Budget +474698,Budget,Budget +474697,Budget,Budget +474696,Budget,Budget +474695,Budget,Budget +474694,Budget,Budget +472601,Budget,Budget +472600,Budget,Budget +472599,Budget,Budget +472598,Budget,Budget +472597,Budget,Budget +472596,Budget,Budget +472594,Budget,Budget +472593,Budget,Budget +472589,Budget,Budget +472585,Budget,Budget +472584,Budget,Budget +472583,Budget,Budget +470468,Budget,Budget +470467,Budget,Budget +470464,Budget,Budget +470463,Budget,Budget +470462,Budget,Budget +470461,Budget,Budget +470460,Budget,Budget +470458,Budget,Budget +470456,Budget,Budget +470060,Budget,Budget +463763,Employment and Training,Employment and Training +427689,Employment and Training,Employment and Training +423144,Employment and Training,Employment and Training +419749,Employment and Training,Employment and Training +412545,Employment and Training,Employment and Training +407754,Employment and Training,Employment and Training +403426,Employment and Training,Employment and Training +403283,Employment and Training,Employment and Training +398547,Employment and Training,Employment and Training +392633,Employment and Training,Employment and Training +392612,Employment and Training,Employment and Training +388024,Employment and Training,Employment and Training +384638,Employment and Training,Employment and Training +443108,Employment and Training,Employment and Training +528630,Employment and Training,Employment and Training +528626,Employment and Training,Employment and Training +525119,Employment and Training,Employment and Training +519659,Employment and Training,Employment and Training +519657,Employment and Training,Employment and Training +517089,Employment and Training,Employment and Training +515451,Employment and Training,Employment and Training +507383,Employment and Training,Employment and Training +501522,Employment and Training,Employment and Training +501507,Employment and Training,Employment and Training +501492,Employment and Training,Employment and Training +501490,Employment and Training,Employment and Training +501488,Employment and Training,Employment and Training +498197,Employment and Training,Employment and Training +495416,Employment and Training,Employment and Training +495412,Employment and Training,Employment and Training +493249,Employment and Training,Employment and Training +493242,Employment and Training,Employment and Training +490314,Employment and Training,Employment and Training +483740,Employment and Training,Employment and Training +476845,Employment and Training,Employment and Training +474726,Employment and Training,Employment and Training +472594,Employment and Training,Employment and Training +472588,Employment and Training,Employment and Training +472585,Employment and Training,Employment and Training +470467,Employment and Training,Employment and Training +470463,Employment and Training,Employment and Training +470462,Employment and Training,Employment and Training +470059,Employment and Training,Employment and Training +470058,Employment and Training,Employment and Training +470057,Employment and Training,Employment and Training +470055,Employment and Training,Employment and Training +470054,Employment and Training,Employment and Training +466571,Employment and Training,Employment and Training +466568,Employment and Training,Employment and Training +466545,Employment and Training,Employment and Training +466544,Employment and Training,Employment and Training +463765,Employment and Training,Employment and Training +463763,Health,Health +543713,Health,Health +407754,Health,Health +525129,Health,Health +525120,Health,Health +507380,Health,Health +470059,Health,Health +470058,Health,Health +470057,Health,Health +470055,Health,Health +470054,Health,Health +466568,Health,Health +466545,Health,Health +466544,Health,Health +463765,Health,Health +398556,Housing,Housing +525132,Infrastructure,Infrastructure +521807,Infrastructure,Infrastructure +412545,Infrastructure,Infrastructure +403431,Infrastructure,Infrastructure +403278,Infrastructure,Infrastructure +403264,Infrastructure,Infrastructure +392633,Infrastructure,Infrastructure +392612,Infrastructure,Infrastructure +392607,Infrastructure,Infrastructure +389952,Infrastructure,Infrastructure +389948,Infrastructure,Infrastructure +389947,Infrastructure,Infrastructure +388042,Infrastructure,Infrastructure +388029,Infrastructure,Infrastructure +388020,Infrastructure,Infrastructure +384638,Infrastructure,Infrastructure +384637,Infrastructure,Infrastructure +384636,Infrastructure,Infrastructure +384635,Infrastructure,Infrastructure +505161,Infrastructure,Infrastructure +501530,Infrastructure,Infrastructure +501490,Infrastructure,Infrastructure +493241,Infrastructure,Infrastructure +488443,Infrastructure,Infrastructure +482138,Infrastructure,Infrastructure +482129,Infrastructure,Infrastructure +479699,Infrastructure,Infrastructure +479697,Infrastructure,Infrastructure +476833,Infrastructure,Infrastructure +474725,Infrastructure,Infrastructure +474695,Infrastructure,Infrastructure +472598,Infrastructure,Infrastructure +470059,Infrastructure,Infrastructure +470058,Infrastructure,Infrastructure +470057,Infrastructure,Infrastructure +470055,Infrastructure,Infrastructure +470054,Infrastructure,Infrastructure +466568,Infrastructure,Infrastructure +466564,Infrastructure,Infrastructure +466545,Infrastructure,Infrastructure +466544,Infrastructure,Infrastructure +463765,Infrastructure,Infrastructure +463764,Infrastructure,Infrastructure +463763,Infrastructure,Infrastructure +446891,Infrastructure,Infrastructure +443109,Infrastructure,Infrastructure +438052,Infrastructure,Infrastructure +435708,Infrastructure,Infrastructure +432296,Infrastructure,Infrastructure +427736,Infrastructure,Infrastructure +541202,Infrastructure,Infrastructure +403430,International Development,International Development +385899,Government Procurement,Government Procurement +385898,Government Procurement,Government Procurement +385917,Government Procurement,Government Procurement +384258,Government Procurement,Government Procurement +390517,Economic Development,Développement économique +390512,Economic Development,Développement économique +388705,Economic Development,Développement économique +388702,Economic Development,Développement économique +388694,Economic Development,Développement économique +388688,Economic Development,Développement économique +385858,Economic Development,Développement économique +385856,Economic Development,Développement économique +394241,Economic Development,Développement économique +388694,Regional Development,Développement régional +388688,Regional Development,Développement régional +385858,Regional Development,Développement régional +385856,Regional Development,Développement régional +394241,Regional Development,Développement régional +390545,Regional Development,Développement régional +390517,Regional Development,Développement régional +390512,Regional Development,Développement régional +388705,Regional Development,Développement régional +386239,Health,Health +388923,Health,Health +388684,Health,Health +386334,Health,Health +386240,Justice and Law Enforcement,Justice and Law Enforcement +386239,Justice and Law Enforcement,Justice and Law Enforcement +388923,Justice and Law Enforcement,Justice and Law Enforcement +388684,Justice and Law Enforcement,Justice and Law Enforcement +386334,Consumer Issues,Consumer Issues +386240,Consumer Issues,Consumer Issues +386240,Taxation and Finance,Taxation and Finance +386239,Taxation and Finance,Taxation and Finance +388923,Taxation and Finance,Taxation and Finance +388684,Taxation and Finance,Taxation and Finance +392944,Transportation,Transportation +386542,Transportation,Transportation +474872,Transportation,Transportation +472789,Transportation,Transportation +472344,Transportation,Transportation +472343,Transportation,Transportation +472341,Transportation,Transportation +472340,Transportation,Transportation +472335,Transportation,Transportation +471324,Transportation,Transportation +471323,Transportation,Transportation +470832,Transportation,Transportation +470804,Transportation,Transportation +470800,Transportation,Transportation +470786,Transportation,Transportation +432864,Transportation,Transportation +432863,Transportation,Transportation +432170,Transportation,Transportation +432169,Transportation,Transportation +431662,Transportation,Transportation +431661,Transportation,Transportation +431658,Transportation,Transportation +421793,Transportation,Transportation +418797,Transportation,Transportation +385176,Transportation,Transportation +385173,Transportation,Transportation +385421,Transportation,Transportation +385176,Infrastructure,Infrastructure +385173,Infrastructure,Infrastructure +385421,Infrastructure,Infrastructure +496211,Education,Education +493807,Education,Education +457726,Education,Education +457725,Education,Education +453008,Education,Education +453006,Education,Education +452990,Education,Education +448109,Education,Education +448106,Education,Education +433954,Education,Education +432617,Education,Education +544173,Education,Education +544170,Education,Education +540469,Education,Education +538372,Education,Education +538368,Education,Education +502825,Education,Education +452990,Immigration,Immigration +432618,Immigration,Immigration +384205,Sports,Sports +447009,Sports,Sports +400234,Sports,Sports +389893,Sports,Sports +389889,Sports,Sports +389886,Sports,Sports +389883,Sports,Sports +393724,Health,Health +393733,Health,Health +393732,Health,Health +393730,Taxation and Finance,Taxation and Finance +393724,Taxation and Finance,Taxation and Finance +393733,Taxation and Finance,Taxation and Finance +393732,Justice and Law Enforcement,Justice and Law Enforcement +393730,Justice and Law Enforcement,Justice and Law Enforcement +393730,Research and Development,Research and Development +393724,Research and Development,Research and Development +393733,Research and Development,Research and Development +415892,Environment,Environnement +407241,Environment,Environnement +439897,Environment,Environnement +439893,Environment,Environnement +431787,Environment,Environnement +431784,Environment,Environnement +431782,Environment,Environnement +431778,Environment,Environnement +427869,Environment,Environnement +427867,Environment,Environnement +427863,Environment,Environnement +427862,Environment,Environnement +427861,Environment,Environnement +427860,Environment,Environnement +427859,Environment,Environnement +418727,Environment,Environnement +415895,Environment,Environnement +538621,Research and Development,Recherche et développement +533408,Research and Development,Recherche et développement +407783,Research and Development,Recherche et développement +407241,Research and Development,Recherche et développement +404213,Research and Development,Recherche et développement +398269,Research and Development,Recherche et développement +394911,Research and Development,Recherche et développement +394910,Research and Development,Recherche et développement +390022,Research and Development,Recherche et développement +390019,Research and Development,Recherche et développement +390018,Research and Development,Recherche et développement +390017,Research and Development,Recherche et développement +389046,Research and Development,Recherche et développement +388771,Research and Development,Recherche et développement +388770,Research and Development,Recherche et développement +387708,Research and Development,Recherche et développement +387334,Research and Development,Recherche et développement +387326,Research and Development,Recherche et développement +386508,Research and Development,Recherche et développement +439897,Research and Development,Recherche et développement +439893,Research and Development,Recherche et développement +427869,Research and Development,Recherche et développement +427867,Research and Development,Recherche et développement +427863,Research and Development,Recherche et développement +427862,Research and Development,Recherche et développement +427861,Research and Development,Recherche et développement +427860,Research and Development,Recherche et développement +427859,Research and Development,Recherche et développement +418727,Research and Development,Recherche et développement +415895,Research and Development,Recherche et développement +415893,Research and Development,Recherche et développement +415892,Research and Development,Recherche et développement +426963,Employment and Training,Employment and Training +414057,Employment and Training,Employment and Training +397491,Employment and Training,Employment and Training +432804,Employment and Training,Employment and Training +384597,Transportation,Transportation +384596,Transportation,Transportation +428612,Transportation,Transportation +426963,Transportation,Transportation +424216,Transportation,Transportation +420639,Transportation,Transportation +414057,Transportation,Transportation +397491,Transportation,Transportation +388683,Transportation,Transportation +387691,Transportation,Transportation +386952,Transportation,Transportation +386622,Transportation,Transportation +386621,Transportation,Transportation +429820,Infrastructure,Infrastructure +429818,Infrastructure,Infrastructure +424378,Infrastructure,Infrastructure +420908,Infrastructure,Infrastructure +420359,Infrastructure,Infrastructure +420358,Infrastructure,Infrastructure +418783,Infrastructure,Infrastructure +418781,Infrastructure,Infrastructure +418774,Infrastructure,Infrastructure +418558,Infrastructure,Infrastructure +418467,Infrastructure,Infrastructure +418465,Infrastructure,Infrastructure +417224,Infrastructure,Infrastructure +408717,Infrastructure,Infrastructure +408265,Infrastructure,Infrastructure +408261,Infrastructure,Infrastructure +407078,Infrastructure,Infrastructure +404910,Infrastructure,Infrastructure +400366,Infrastructure,Infrastructure +397802,Infrastructure,Infrastructure +390098,Infrastructure,Infrastructure +522218,Infrastructure,Infrastructure +522200,Infrastructure,Infrastructure +516158,Infrastructure,Infrastructure +516157,Infrastructure,Infrastructure +514974,Infrastructure,Infrastructure +509071,Infrastructure,Infrastructure +504999,Infrastructure,Infrastructure +500234,Infrastructure,Infrastructure +500233,Infrastructure,Infrastructure +499264,Infrastructure,Infrastructure +497992,Infrastructure,Infrastructure +492123,Infrastructure,Infrastructure +488547,Infrastructure,Infrastructure +486457,Infrastructure,Infrastructure +485480,Infrastructure,Infrastructure +476449,Infrastructure,Infrastructure +471489,Infrastructure,Infrastructure +471488,Infrastructure,Infrastructure +471328,Infrastructure,Infrastructure +471326,Infrastructure,Infrastructure +469833,Infrastructure,Infrastructure +466462,Infrastructure,Infrastructure +465612,Infrastructure,Infrastructure +462768,Infrastructure,Infrastructure +462764,Infrastructure,Infrastructure +460473,Infrastructure,Infrastructure +460472,Infrastructure,Infrastructure +459132,Infrastructure,Infrastructure +458059,Infrastructure,Infrastructure +458056,Infrastructure,Infrastructure +458054,Infrastructure,Infrastructure +458051,Infrastructure,Infrastructure +458049,Infrastructure,Infrastructure +458044,Infrastructure,Infrastructure +458040,Infrastructure,Infrastructure +454086,Infrastructure,Infrastructure +454085,Infrastructure,Infrastructure +454073,Infrastructure,Infrastructure +450614,Infrastructure,Infrastructure +450611,Infrastructure,Infrastructure +450572,Infrastructure,Infrastructure +447210,Infrastructure,Infrastructure +446423,Infrastructure,Infrastructure +446359,Infrastructure,Infrastructure +444580,Infrastructure,Infrastructure +440210,Infrastructure,Infrastructure +440209,Infrastructure,Infrastructure +439734,Infrastructure,Infrastructure +432779,Infrastructure,Infrastructure +516754,Transportation,Transportation +516612,Transportation,Transportation +414715,Transportation,Transportation +404521,Transportation,Transportation +404415,Transportation,Transportation +402780,Transportation,Transportation +400366,Transportation,Transportation +397801,Transportation,Transportation +390098,Transportation,Transportation +448777,Transportation,Transportation +446358,Transportation,Transportation +441421,Transportation,Transportation +434225,Transportation,Transportation +533380,Transportation,Transportation +533379,Transportation,Transportation +527662,Transportation,Transportation +395415,Environment,Environment +395409,Environment,Environment +402214,Environment,Environment +402213,Environment,Environment +471740,Infrastructure,Infrastructure +471738,Infrastructure,Infrastructure +414074,Infrastructure,Infrastructure +414073,Infrastructure,Infrastructure +414072,Infrastructure,Infrastructure +407032,Infrastructure,Infrastructure +395417,Infrastructure,Infrastructure +395415,Infrastructure,Infrastructure +395409,Infrastructure,Infrastructure +391774,Infrastructure,Infrastructure +519795,Infrastructure,Infrastructure +480728,Infrastructure,Infrastructure +477326,Infrastructure,Infrastructure +476413,Infrastructure,Infrastructure +476412,Infrastructure,Infrastructure +474142,Infrastructure,Infrastructure +414073,Regional Development,Regional Development +414072,Regional Development,Regional Development +395409,Regional Development,Regional Development +391774,Regional Development,Regional Development +488092,Regional Development,Regional Development +477326,Regional Development,Regional Development +476412,Regional Development,Regional Development +384410,Economic Development,Développement économique +384991,Regional Development,Développement régional +388470,Government Procurement,Government Procurement +388469,Government Procurement,Government Procurement +389774,Government Procurement,Government Procurement +389772,Government Procurement,Government Procurement +388519,Government Procurement,Government Procurement +388518,Government Procurement,Government Procurement +388517,Government Procurement,Government Procurement +388516,Government Procurement,Government Procurement +388515,Government Procurement,Government Procurement +388514,Government Procurement,Government Procurement +388513,Government Procurement,Government Procurement +388512,Government Procurement,Government Procurement +388511,Government Procurement,Government Procurement +388508,Government Procurement,Government Procurement +388500,Government Procurement,Government Procurement +388496,Government Procurement,Government Procurement +388493,Government Procurement,Government Procurement +388490,Government Procurement,Government Procurement +388477,Government Procurement,Government Procurement +388473,Government Procurement,Government Procurement +388472,Government Procurement,Government Procurement +387748,Industry,Industry +384443,Industry,Industry +388051,Government Procurement,Government Procurement +388047,Government Procurement,Government Procurement +388058,Government Procurement,Government Procurement +388057,Government Procurement,Government Procurement +457481,Research and Development,Research and Development +457479,Research and Development,Research and Development +389743,Research and Development,Research and Development +506661,Research and Development,Research and Development +506660,Research and Development,Research and Development +391007,Research and Development,Research and Development +391005,Research and Development,Research and Development +391003,Research and Development,Research and Development +391002,Research and Development,Research and Development +390998,Research and Development,Research and Development +390995,Research and Development,Research and Development +390993,Research and Development,Research and Development +390992,Research and Development,Research and Development +390989,Research and Development,Research and Development +390987,Research and Development,Research and Development +390984,Research and Development,Research and Development +390983,Research and Development,Research and Development +390981,Research and Development,Research and Development +390977,Research and Development,Research and Development +390975,Research and Development,Research and Development +390973,Research and Development,Research and Development +390972,Research and Development,Research and Development +390971,Research and Development,Research and Development +390970,Research and Development,Research and Development +390969,Research and Development,Research and Development +390968,Research and Development,Research and Development +390967,Research and Development,Research and Development +390955,Research and Development,Research and Development +390954,Research and Development,Research and Development +390952,Research and Development,Research and Development +390951,Research and Development,Research and Development +390945,Research and Development,Research and Development +430127,Research and Development,Research and Development +527240,Research and Development,Research and Development +523550,Research and Development,Research and Development +512563,Research and Development,Research and Development +511991,Research and Development,Research and Development +507863,Research and Development,Research and Development +506676,Research and Development,Research and Development +384339,Taxation and Finance,Taxation and Finance +384337,Taxation and Finance,Taxation and Finance +384341,Taxation and Finance,Taxation and Finance +385050,Health,Health +452159,Mining,Mining +443327,Mining,Mining +408322,Mining,Mining +401213,Mining,Mining +401211,Mining,Mining +401209,Mining,Mining +401206,Mining,Mining +396837,Mining,Mining +396831,Mining,Mining +396829,Mining,Mining +387022,Mining,Mining +387021,Mining,Mining +387019,Mining,Mining +387018,Mining,Mining +387017,Mining,Mining +484965,Mining,Mining +482307,Employment and Training,Employment and Training +443327,Employment and Training,Employment and Training +387022,Employment and Training,Employment and Training +387018,Employment and Training,Employment and Training +387017,Employment and Training,Employment and Training +408322,Employment and Training,Employment and Training +401211,Employment and Training,Employment and Training +401206,Employment and Training,Employment and Training +396831,Employment and Training,Employment and Training +396831,Economic Development,Economic Development +396829,Economic Development,Economic Development +387022,Economic Development,Economic Development +387021,Economic Development,Economic Development +387019,Economic Development,Economic Development +387018,Economic Development,Economic Development +387017,Economic Development,Economic Development +484965,Economic Development,Economic Development +482307,Economic Development,Economic Development +408322,Economic Development,Economic Development +401213,Economic Development,Economic Development +401211,Economic Development,Economic Development +401209,Economic Development,Economic Development +401206,Economic Development,Economic Development +387018,Climate,Climate +387017,Climate,Climate +443327,Climate,Climate +408322,Climate,Climate +401213,Climate,Climate +401211,Climate,Climate +387022,Climate,Climate +387018,Environment,Environment +387017,Environment,Environment +484965,Environment,Environment +482307,Environment,Environment +443327,Environment,Environment +408322,Environment,Environment +401213,Environment,Environment +401211,Environment,Environment +401209,Environment,Environment +401206,Environment,Environment +396837,Environment,Environment +396831,Environment,Environment +396829,Environment,Environment +387022,Environment,Environment +387021,Environment,Environment +484965,Industry,Industry +482307,Industry,Industry +408322,Industry,Industry +401213,Industry,Industry +401211,Industry,Industry +401206,Industry,Industry +396831,Industry,Industry +387022,Industry,Industry +387018,International Trade,International Trade +484965,International Trade,International Trade +443327,International Trade,International Trade +408322,International Trade,International Trade +401213,International Trade,International Trade +401211,International Trade,International Trade +396837,International Trade,International Trade +388239,Education,Education +388233,Education,Education +394012,Education,Education +388246,Education,Education +388244,Education,Education +387207,Consumer Issues,Consumer Issues +387206,Consumer Issues,Consumer Issues +387209,Consumer Issues,Consumer Issues +387207,Transportation,Transportation +387206,Transportation,Transportation +387209,Transportation,Transportation +384589,International Trade,International Trade +384540,Municipalities,Municipalities +384539,Municipalities,Municipalities +384542,Municipalities,Municipalities +384540,Regional Development,Regional Development +384539,Regional Development,Regional Development +384542,Regional Development,Regional Development +384540,Infrastructure,Infrastructure +384539,Infrastructure,Infrastructure +384542,Infrastructure,Infrastructure +384541,Economic Development,Economic Development +384540,Economic Development,Economic Development +384539,Economic Development,Economic Development +384540,Industry,Industry +384539,Industry,Industry +384540,Environment,Environment +384539,Environment,Environment +384542,Environment,Environment +384540,Government Procurement,Government Procurement +384539,Government Procurement,Government Procurement +384542,Government Procurement,Government Procurement +412478,Intellectual Property,Intellectual Property +412477,Intellectual Property,Intellectual Property +526539,Intellectual Property,Intellectual Property +523146,Intellectual Property,Intellectual Property +511090,Intellectual Property,Intellectual Property +493673,Intellectual Property,Intellectual Property +480226,Intellectual Property,Intellectual Property +480225,Intellectual Property,Intellectual Property +468065,Intellectual Property,Intellectual Property +468064,Intellectual Property,Intellectual Property +468063,Intellectual Property,Intellectual Property +468062,Intellectual Property,Intellectual Property +468061,Intellectual Property,Intellectual Property +459006,Intellectual Property,Intellectual Property +441984,Intellectual Property,Intellectual Property +441982,Intellectual Property,Intellectual Property +384528,Energy,Energy +384520,Energy,Energy +412999,Energy,Energy +410406,Energy,Energy +403078,Energy,Energy +403076,Energy,Energy +403074,Energy,Energy +403073,Energy,Energy +403072,Energy,Energy +403069,Energy,Energy +403067,Energy,Energy +403066,Energy,Energy +403065,Energy,Energy +400199,Energy,Energy +400195,Energy,Energy +398447,Energy,Energy +398446,Energy,Energy +398444,Energy,Energy +398443,Energy,Energy +398442,Energy,Energy +398441,Energy,Energy +398440,Energy,Energy +398438,Energy,Energy +395763,Energy,Energy +395762,Energy,Energy +395761,Energy,Energy +395759,Energy,Energy +393751,Energy,Energy +384520,Climate,Climate +412996,Environment,Environment +403072,Environment,Environment +403070,Environment,Environment +403066,Environment,Environment +400198,Environment,Environment +400192,Environment,Environment +398447,Environment,Environment +398446,Environment,Environment +398444,Environment,Environment +395764,Environment,Environment +395763,Environment,Environment +395760,Environment,Environment +393751,Environment,Environment +393750,Environment,Environment +390450,Environment,Environment +384528,Environment,Environment +389588,Government Procurement,Government Procurement +384843,Employment and Training,Employment and Training +386459,Economic Development,Economic Development +386461,Economic Development,Economic Development +386460,Employment and Training,Employment and Training +386459,Employment and Training,Employment and Training +386460,Health,Health +386459,Health,Health +386504,Health,Health +386460,Industry,Industry +386459,Industry,Industry +386504,Industry,Industry +386460,Infrastructure,Infrastructure +386459,Infrastructure,Infrastructure +386504,Infrastructure,Infrastructure +386460,Regional Development,Regional Development +386459,Regional Development,Regional Development +386504,Regional Development,Regional Development +386460,Research and Development,Research and Development +386459,Research and Development,Research and Development +386504,Research and Development,Research and Development +527289,Budget,Budget +527288,Budget,Budget +395902,Budget,Budget +394757,Budget,Budget +393639,Budget,Budget +393069,Budget,Budget +384548,Budget,Budget +384546,Budget,Budget +461902,Budget,Budget +460970,Budget,Budget +433019,Budget,Budget +417204,Budget,Budget +417145,Budget,Budget +417144,Budget,Budget +417143,Budget,Budget +417142,Budget,Budget +417141,Budget,Budget +417140,Budget,Budget +417139,Budget,Budget +417137,Budget,Budget +417136,Budget,Budget +417134,Budget,Budget +417133,Budget,Budget +417132,Budget,Budget +417131,Budget,Budget +417130,Budget,Budget +417129,Budget,Budget +417128,Budget,Budget +417127,Budget,Budget +417125,Budget,Budget +417124,Budget,Budget +417123,Budget,Budget +417121,Budget,Budget +417101,Budget,Budget +417100,Budget,Budget +417099,Budget,Budget +417098,Budget,Budget +417097,Budget,Budget +410842,Budget,Budget +410841,Budget,Budget +410840,Budget,Budget +410839,Budget,Budget +407730,Budget,Budget +527304,Budget,Budget +527303,Budget,Budget +527302,Budget,Budget +527299,Budget,Budget +527297,Budget,Budget +527295,Budget,Budget +527294,Budget,Budget +527293,Budget,Budget +527292,Budget,Budget +384582,Transportation,Transportation +384581,Transportation,Transportation +384587,Transportation,Transportation +384585,Transportation,Transportation +536288,Environment,Environment +532714,Environment,Environment +410571,Economic Development,Economic Development +410569,Economic Development,Economic Development +384566,International Trade,International Trade +395156,Consumer Issues,Consumer Issues +394636,Consumer Issues,Consumer Issues +394634,Consumer Issues,Consumer Issues +394632,Consumer Issues,Consumer Issues +394629,Consumer Issues,Consumer Issues +395157,Economic Development,Economic Development +395156,Economic Development,Economic Development +394632,Health,Health +394629,Health,Health +409251,Health,Health +409250,Health,Health +409249,Health,Health +409248,Health,Health +409246,Health,Health +409245,Health,Health +409243,Health,Health +395157,Health,Health +395156,Health,Health +394636,Health,Health +394632,Industry,Industry +394629,Industry,Industry +395157,Industry,Industry +395156,Industry,Industry +394636,Industry,Industry +394632,International Trade,International Trade +394629,International Trade,International Trade +395157,International Trade,International Trade +395156,International Trade,International Trade +394636,International Trade,International Trade +394632,Justice and Law Enforcement,Justice and Law Enforcement +394629,Justice and Law Enforcement,Justice and Law Enforcement +409251,Justice and Law Enforcement,Justice and Law Enforcement +409250,Justice and Law Enforcement,Justice and Law Enforcement +409249,Justice and Law Enforcement,Justice and Law Enforcement +409248,Justice and Law Enforcement,Justice and Law Enforcement +409246,Justice and Law Enforcement,Justice and Law Enforcement +409245,Justice and Law Enforcement,Justice and Law Enforcement +409243,Justice and Law Enforcement,Justice and Law Enforcement +395157,Justice and Law Enforcement,Justice and Law Enforcement +395156,Justice and Law Enforcement,Justice and Law Enforcement +394636,Justice and Law Enforcement,Justice and Law Enforcement +394634,Research and Development,Research and Development +394632,Research and Development,Research and Development +395157,Research and Development,Research and Development +395156,Research and Development,Research and Development +394632,Taxation and Finance,Taxation and Finance +394629,Taxation and Finance,Taxation and Finance +409251,Taxation and Finance,Taxation and Finance +409250,Taxation and Finance,Taxation and Finance +409249,Taxation and Finance,Taxation and Finance +409248,Taxation and Finance,Taxation and Finance +409246,Taxation and Finance,Taxation and Finance +409245,Taxation and Finance,Taxation and Finance +409243,Taxation and Finance,Taxation and Finance +395157,Taxation and Finance,Taxation and Finance +395156,Taxation and Finance,Taxation and Finance +394636,Taxation and Finance,Taxation and Finance +462503,Government Procurement,Government Procurement +456923,Government Procurement,Government Procurement +454390,Government Procurement,Government Procurement +454383,Government Procurement,Government Procurement +452054,Government Procurement,Government Procurement +452051,Government Procurement,Government Procurement +452046,Government Procurement,Government Procurement +452042,Government Procurement,Government Procurement +452038,Government Procurement,Government Procurement +446476,Government Procurement,Government Procurement +430022,Government Procurement,Government Procurement +430021,Government Procurement,Government Procurement +430020,Government Procurement,Government Procurement +430019,Government Procurement,Government Procurement +430018,Government Procurement,Government Procurement +423563,Government Procurement,Government Procurement +401736,Government Procurement,Government Procurement +401734,Government Procurement,Government Procurement +395170,Government Procurement,Government Procurement +395169,Government Procurement,Government Procurement +396406,Employment and Training,Employment and Training +392880,Employment and Training,Employment and Training +391154,Employment and Training,Employment and Training +391151,Employment and Training,Employment and Training +391150,Employment and Training,Employment and Training +391147,Employment and Training,Employment and Training +387384,Employment and Training,Employment and Training +387277,Employment and Training,Employment and Training +387273,Employment and Training,Employment and Training +405447,Employment and Training,Employment and Training +405431,Employment and Training,Employment and Training +405428,Employment and Training,Employment and Training +400917,Employment and Training,Employment and Training +400913,Employment and Training,Employment and Training +405431,Immigration,Immigration +405428,Immigration,Immigration +400917,Immigration,Immigration +400909,Immigration,Immigration +396409,Immigration,Immigration +396406,Immigration,Immigration +392880,Immigration,Immigration +391154,Immigration,Immigration +391151,Immigration,Immigration +391150,Immigration,Immigration +391147,Immigration,Immigration +387384,Immigration,Immigration +387277,Immigration,Immigration +387273,Immigration,Immigration +428299,Defence,Defence +428298,Defence,Defence +415066,Defence,Defence +411297,Defence,Defence +411296,Defence,Defence +411289,Defence,Defence +404378,Defence,Defence +400257,Defence,Defence +397614,Defence,Defence +397269,Defence,Defence +397267,Defence,Defence +395265,Defence,Defence +390390,Defence,Defence +390385,Defence,Defence +389052,Defence,Defence +389051,Defence,Defence +389050,Defence,Defence +389049,Defence,Defence +389048,Defence,Defence +389047,Defence,Defence +386481,Defence,Defence +386047,Defence,Defence +384866,Defence,Defence +384865,Defence,Defence +384864,Defence,Defence +384863,Defence,Defence +384857,Defence,Defence +440336,Defence,Defence +440335,Defence,Defence +431585,Defence,Defence +387464,Employment and Training,Emploi et formation +387464,Immigration,Immigration +397556,Agriculture,Agriculture +389045,Health,Health +386048,Health,Health +386048,Infrastructure,Infrastructure +389045,Regional Development,Regional Development +389045,Research and Development,Research and Development +386048,Research and Development,Research and Development +384863,Government Procurement,Government Procurement +384857,Government Procurement,Government Procurement +440336,Government Procurement,Government Procurement +440335,Government Procurement,Government Procurement +431585,Government Procurement,Government Procurement +428300,Government Procurement,Government Procurement +428299,Government Procurement,Government Procurement +428298,Government Procurement,Government Procurement +411297,Government Procurement,Government Procurement +411296,Government Procurement,Government Procurement +411289,Government Procurement,Government Procurement +404378,Government Procurement,Government Procurement +400257,Government Procurement,Government Procurement +397614,Government Procurement,Government Procurement +397269,Government Procurement,Government Procurement +397267,Government Procurement,Government Procurement +395265,Government Procurement,Government Procurement +390390,Government Procurement,Government Procurement +390385,Government Procurement,Government Procurement +389052,Government Procurement,Government Procurement +389051,Government Procurement,Government Procurement +389050,Government Procurement,Government Procurement +389049,Government Procurement,Government Procurement +389048,Government Procurement,Government Procurement +389047,Government Procurement,Government Procurement +386481,Government Procurement,Government Procurement +386047,Government Procurement,Government Procurement +384866,Government Procurement,Government Procurement +384865,Government Procurement,Government Procurement +389051,Industry,Industry +389048,Industry,Industry +404378,Industry,Industry +400257,Industry,Industry +389049,Infrastructure,Infrastructure +397614,Infrastructure,Infrastructure +395265,Infrastructure,Infrastructure +389051,Infrastructure,Infrastructure +411296,International Trade,International Trade +411289,International Trade,International Trade +431585,International Trade,International Trade +415066,International Trade,International Trade +389051,Regional Development,Regional Development +389050,Regional Development,Regional Development +404378,Regional Development,Regional Development +400257,Regional Development,Regional Development +397614,Regional Development,Regional Development +462505,Taxation and Finance,Taxation and Finance +436327,Taxation and Finance,Taxation and Finance +399509,Taxation and Finance,Taxation and Finance +387946,Budget,Budget +387945,Budget,Budget +387946,Health,Health +387945,Health,Health +398033,Health,Health +391892,Budget,Budget +391890,Budget,Budget +391888,Budget,Budget +391887,Budget,Budget +391886,Budget,Budget +391885,Budget,Budget +391884,Budget,Budget +391883,Budget,Budget +391882,Budget,Budget +391881,Budget,Budget +391880,Budget,Budget +391878,Budget,Budget +391877,Budget,Budget +391876,Budget,Budget +391874,Budget,Budget +386362,Budget,Budget +384654,Budget,Budget +384652,Budget,Budget +454311,Budget,Budget +448334,Budget,Budget +446986,Budget,Budget +445385,Budget,Budget +445175,Budget,Budget +443451,Budget,Budget +443450,Budget,Budget +443070,Budget,Budget +443069,Budget,Budget +443065,Budget,Budget +391903,Budget,Budget +391901,Budget,Budget +391900,Budget,Budget +391896,Budget,Budget +391895,Budget,Budget +411733,Industry,Industry +411729,Industry,Industry +446187,Industry,Industry +446166,Industry,Industry +411733,Mining,Mining +411729,Mining,Mining +446187,Mining,Mining +446166,Mining,Mining +446164,Mining,Mining +437077,Mining,Mining +436576,Mining,Mining +398883,Health,Health +398882,Health,Health +404999,Health,Health +404998,Health,Health +404997,Health,Health +400477,Health,Health +398891,Health,Health +398890,Health,Health +391674,Taxation and Finance,Taxation and Finance +391670,Taxation and Finance,Taxation and Finance +391659,Taxation and Finance,Taxation and Finance +391657,Taxation and Finance,Taxation and Finance +391654,Taxation and Finance,Taxation and Finance +391648,Taxation and Finance,Taxation and Finance +391645,Taxation and Finance,Taxation and Finance +391644,Taxation and Finance,Taxation and Finance +391641,Taxation and Finance,Taxation and Finance +391639,Taxation and Finance,Taxation and Finance +391636,Taxation and Finance,Taxation and Finance +387200,Taxation and Finance,Taxation and Finance +387199,Taxation and Finance,Taxation and Finance +387198,Taxation and Finance,Taxation and Finance +387197,Taxation and Finance,Taxation and Finance +387196,Taxation and Finance,Taxation and Finance +387195,Taxation and Finance,Taxation and Finance +387194,Taxation and Finance,Taxation and Finance +387193,Taxation and Finance,Taxation and Finance +384782,Taxation and Finance,Taxation and Finance +384781,Taxation and Finance,Taxation and Finance +384779,Taxation and Finance,Taxation and Finance +384777,Taxation and Finance,Taxation and Finance +384775,Taxation and Finance,Taxation and Finance +384773,Taxation and Finance,Taxation and Finance +384771,Taxation and Finance,Taxation and Finance +384770,Taxation and Finance,Taxation and Finance +384769,Taxation and Finance,Taxation and Finance +406739,Taxation and Finance,Taxation and Finance +404999,Taxation and Finance,Taxation and Finance +404998,Taxation and Finance,Taxation and Finance +404997,Taxation and Finance,Taxation and Finance +400477,Taxation and Finance,Taxation and Finance +398891,Taxation and Finance,Taxation and Finance +398890,Taxation and Finance,Taxation and Finance +398887,Taxation and Finance,Taxation and Finance +398883,Taxation and Finance,Taxation and Finance +398882,Taxation and Finance,Taxation and Finance +392605,Taxation and Finance,Taxation and Finance +392602,Taxation and Finance,Taxation and Finance +392601,Taxation and Finance,Taxation and Finance +392600,Taxation and Finance,Taxation and Finance +392598,Taxation and Finance,Taxation and Finance +392596,Taxation and Finance,Taxation and Finance +391711,Taxation and Finance,Taxation and Finance +391710,Taxation and Finance,Taxation and Finance +391709,Taxation and Finance,Taxation and Finance +391708,Taxation and Finance,Taxation and Finance +391706,Taxation and Finance,Taxation and Finance +391705,Taxation and Finance,Taxation and Finance +391704,Taxation and Finance,Taxation and Finance +391701,Taxation and Finance,Taxation and Finance +391700,Taxation and Finance,Taxation and Finance +391698,Taxation and Finance,Taxation and Finance +391696,Taxation and Finance,Taxation and Finance +391694,Taxation and Finance,Taxation and Finance +391688,Taxation and Finance,Taxation and Finance +391686,Taxation and Finance,Taxation and Finance +391684,Taxation and Finance,Taxation and Finance +391682,Taxation and Finance,Taxation and Finance +391680,Taxation and Finance,Taxation and Finance +391678,Taxation and Finance,Taxation and Finance +437887,Pensions,Pensions +388835,Economic Development,Economic Development +388834,Economic Development,Economic Development +388846,Economic Development,Economic Development +388845,Economic Development,Economic Development +388844,Economic Development,Economic Development +388835,Infrastructure,Infrastructure +388834,Infrastructure,Infrastructure +399448,Infrastructure,Infrastructure +389724,Infrastructure,Infrastructure +389723,Infrastructure,Infrastructure +388849,Infrastructure,Infrastructure +388848,Infrastructure,Infrastructure +388847,Infrastructure,Infrastructure +388846,Infrastructure,Infrastructure +388845,Infrastructure,Infrastructure +388844,Infrastructure,Infrastructure +388842,Infrastructure,Infrastructure +388841,Infrastructure,Infrastructure +388839,Infrastructure,Infrastructure +388839,Justice and Law Enforcement,Justice and Law Enforcement +388835,Justice and Law Enforcement,Justice and Law Enforcement +399445,Justice and Law Enforcement,Justice and Law Enforcement +389725,Justice and Law Enforcement,Justice and Law Enforcement +388848,Justice and Law Enforcement,Justice and Law Enforcement +388846,Justice and Law Enforcement,Justice and Law Enforcement +388844,Justice and Law Enforcement,Justice and Law Enforcement +388842,Justice and Law Enforcement,Justice and Law Enforcement +446483,Regional Development,Regional Development +419407,International Trade,International Trade +419406,International Trade,International Trade +403312,International Trade,International Trade +390106,International Trade,International Trade +384881,International Trade,International Trade +524325,International Trade,International Trade +511942,International Trade,International Trade +474250,International Trade,International Trade +474247,International Trade,International Trade +474245,International Trade,International Trade +468273,International Trade,International Trade +467313,International Trade,International Trade +466774,International Trade,International Trade +463500,International Trade,International Trade +462169,International Trade,International Trade +462168,International Trade,International Trade +461250,International Trade,International Trade +453449,International Trade,International Trade +449886,International Trade,International Trade +449883,International Trade,International Trade +438577,International Trade,International Trade +393536,Economic Development,Economic Development +390106,Economic Development,Economic Development +384881,Economic Development,Economic Development +500332,Economic Development,Economic Development +479083,Economic Development,Economic Development +471763,Economic Development,Economic Development +456599,Economic Development,Economic Development +449883,Economic Development,Economic Development +446543,Economic Development,Economic Development +446542,Economic Development,Economic Development +446541,Economic Development,Economic Development +446540,Economic Development,Economic Development +444811,Economic Development,Economic Development +434770,Economic Development,Economic Development +430339,Economic Development,Economic Development +430338,Economic Development,Economic Development +470284,Climate,Climate +463423,Climate,Climate +459234,Climate,Climate +450718,Climate,Climate +444043,Climate,Climate +418141,Climate,Climate +412403,Climate,Climate +405257,Climate,Climate +405249,Climate,Climate +403615,Climate,Climate +401003,Climate,Climate +396284,Climate,Climate +396267,Climate,Climate +392859,Climate,Climate +392858,Climate,Climate +385650,Climate,Climate +385641,Climate,Climate +385629,Climate,Climate +385621,Climate,Climate +539048,Climate,Climate +534208,Climate,Climate +528145,Climate,Climate +528144,Climate,Climate +525337,Climate,Climate +525309,Climate,Climate +525306,Climate,Climate +522398,Climate,Climate +513685,Climate,Climate +511701,Climate,Climate +507253,Climate,Climate +507046,Climate,Climate +507033,Climate,Climate +507028,Climate,Climate +504348,Climate,Climate +504347,Climate,Climate +504339,Climate,Climate +501199,Climate,Climate +386333,Infrastructure,Infrastructure +386330,Infrastructure,Infrastructure +389795,Government Procurement,Government Procurement +388356,Government Procurement,Government Procurement +406446,Government Procurement,Government Procurement +404568,Government Procurement,Government Procurement +439847,Agriculture,Agriculture +386635,Consumer Issues,Consumer Issues +386304,Consumer Issues,Consumer Issues +440771,Consumer Issues,Consumer Issues +412599,Consumer Issues,Consumer Issues +407307,Consumer Issues,Consumer Issues +386305,Economic Development,Economic Development +386218,Economic Development,Economic Development +439847,Economic Development,Economic Development +432938,Economic Development,Economic Development +408725,Economic Development,Economic Development +408689,Economic Development,Economic Development +408647,Economic Development,Economic Development +407027,Economic Development,Economic Development +389368,Economic Development,Economic Development +389159,Economic Development,Economic Development +389158,Economic Development,Economic Development +397293,Health,Health +395296,Health,Health +395171,Health,Health +395154,Health,Health +395124,Health,Health +394304,Health,Health +393330,Health,Health +393329,Health,Health +393328,Health,Health +393327,Health,Health +393299,Health,Health +389368,Health,Health +389159,Health,Health +389158,Health,Health +386635,Health,Health +386322,Health,Health +386321,Health,Health +386319,Health,Health +386307,Health,Health +386305,Health,Health +386304,Health,Health +386218,Health,Health +450453,Health,Health +444535,Health,Health +444036,Health,Health +440771,Health,Health +439847,Health,Health +433057,Health,Health +432938,Health,Health +432733,Health,Health +432732,Health,Health +432731,Health,Health +431857,Health,Health +431380,Health,Health +431379,Health,Health +430032,Health,Health +427709,Health,Health +420650,Health,Health +414471,Health,Health +414434,Health,Health +414201,Health,Health +414145,Health,Health +414063,Health,Health +414062,Health,Health +410775,Health,Health +408726,Health,Health +408725,Health,Health +408724,Health,Health +408691,Health,Health +408690,Health,Health +408689,Health,Health +408647,Health,Health +408646,Health,Health +408634,Health,Health +408633,Health,Health +407307,Health,Health +407306,Health,Health +407207,Health,Health +407027,Health,Health +406471,Health,Health +405062,Health,Health +386304,Industry,Industry +389159,International Trade,International Trade +389158,International Trade,International Trade +386319,International Trade,International Trade +433057,International Trade,International Trade +431380,International Trade,International Trade +431379,International Trade,International Trade +430032,International Trade,International Trade +414201,International Trade,International Trade +414145,International Trade,International Trade +397293,International Trade,International Trade +395154,International Trade,International Trade +395124,International Trade,International Trade +394304,International Trade,International Trade +393330,International Trade,International Trade +393329,International Trade,International Trade +393328,International Trade,International Trade +386635,Justice and Law Enforcement,Justice and Law Enforcement +386304,Justice and Law Enforcement,Justice and Law Enforcement +408647,Justice and Law Enforcement,Justice and Law Enforcement +408646,Justice and Law Enforcement,Justice and Law Enforcement +408634,Justice and Law Enforcement,Justice and Law Enforcement +408633,Justice and Law Enforcement,Justice and Law Enforcement +395296,Justice and Law Enforcement,Justice and Law Enforcement +395154,Justice and Law Enforcement,Justice and Law Enforcement +395124,Justice and Law Enforcement,Justice and Law Enforcement +394304,Justice and Law Enforcement,Justice and Law Enforcement +393330,Justice and Law Enforcement,Justice and Law Enforcement +393329,Justice and Law Enforcement,Justice and Law Enforcement +393328,Justice and Law Enforcement,Justice and Law Enforcement +393327,Justice and Law Enforcement,Justice and Law Enforcement +406471,Regional Development,Regional Development +389368,Regional Development,Regional Development +386307,Regional Development,Regional Development +386304,Regional Development,Regional Development +386218,Regional Development,Regional Development +439847,Regional Development,Regional Development +408691,Regional Development,Regional Development +408689,Regional Development,Regional Development +408647,Regional Development,Regional Development +420650,Taxation and Finance,Taxation and Finance +414471,Taxation and Finance,Taxation and Finance +412599,Taxation and Finance,Taxation and Finance +408726,Taxation and Finance,Taxation and Finance +408725,Taxation and Finance,Taxation and Finance +408724,Taxation and Finance,Taxation and Finance +408691,Taxation and Finance,Taxation and Finance +408689,Taxation and Finance,Taxation and Finance +395296,Taxation and Finance,Taxation and Finance +395154,Taxation and Finance,Taxation and Finance +386059,Regional Development,Regional Development +386059,Research and Development,Research and Development +470059,Budget,Budget +463764,Employment and Training,Employment and Training +463764,Health,Health +403275,Housing,Housing +403429,Immigration,Immigration +528622,Infrastructure,Infrastructure +389950,International Development,International Development +384369,Consumer Issues,Consumer Issues +385900,Government Procurement,Government Procurement +384316,Financial Institutions,Financial Institutions +389792,Government Procurement,Government Procurement +389792,Security,Security +390545,Economic Development,Développement économique +388702,Regional Development,Développement régional +386240,Health,Health +386334,Justice and Law Enforcement,Justice and Law Enforcement +388923,Consumer Issues,Consumer Issues +386334,Taxation and Finance,Taxation and Finance +411494,Transportation,Transportation +401262,Government Procurement,Government Procurement +385417,Transportation,Transportation +385417,Infrastructure,Infrastructure +384190,Energy,Energy +502801,Education,Education +453008,Immigration,Immigration +384191,Transportation,Transportation +389968,Sports,Sports +384208,Sports,Sports +398419,Internal Trade,Internal Trade +393730,Health,Health +393732,Taxation and Finance,Taxation and Finance +393733,Justice and Law Enforcement,Justice and Law Enforcement +393732,Research and Development,Research and Development +415893,Environment,Environnement +538622,Research and Development,Recherche et développement +428612,Employment and Training,Employment and Training +386619,Transportation,Transportation +430407,Infrastructure,Infrastructure +518708,Transportation,Transportation +395418,Environment,Environment +472837,Infrastructure,Infrastructure +414074,Regional Development,Regional Development +384991,Economic Development,Développement économique +384410,Regional Development,Développement régional +384314,Economic Development,Economic Development +384315,Economic Development,Economic Development +388471,Government Procurement,Government Procurement +387751,Industry,Industry +388055,Government Procurement,Government Procurement +404990,Industry,Industry +484036,Research and Development,Research and Development +392894,Defence,Defence +392894,Government Procurement,Government Procurement +384326,Security,Security +506663,Research and Development,Research and Development +384567,Taxation and Finance,Taxation and Finance +384340,Taxation and Finance,Taxation and Finance +385051,Health,Health +482307,Mining,Mining +396829,Employment and Training,Employment and Training +396837,Economic Development,Economic Development +387021,Climate,Climate +387019,Environment,Environment +387018,Industry,Industry +387019,International Trade,International Trade +386998,Health,Health +388241,Education,Education +394193,Economic Development,Economic Development +394193,Infrastructure,Infrastructure +394193,Regional Development,Regional Development +394193,Small Business,Small Business +385808,Energy,Energy +387208,Consumer Issues,Consumer Issues +387208,Transportation,Transportation +392887,International Trade,International Trade +384589,Taxation and Finance,Taxation and Finance +384541,Municipalities,Municipalities +384541,Health,Health +384541,Regional Development,Regional Development +384541,Infrastructure,Infrastructure +384542,Employment and Training,Employment and Training +384542,Economic Development,Economic Development +384541,Industry,Industry +384541,Environment,Environment +384541,Government Procurement,Government Procurement +384541,Research and Development,Research and Development +385323,Economic Development,Economic Development +385323,International Trade,International Trade +385323,Mining,Mining +441980,Intellectual Property,Intellectual Property +384590,Environment,Environment +393750,Energy,Energy +395762,Climate,Climate +384520,Environment,Environment +384843,Government Procurement,Government Procurement +389588,Employment and Training,Employment and Training +386460,Economic Development,Economic Development +386461,Employment and Training,Employment and Training +386461,Health,Health +386461,Industry,Industry +386461,Infrastructure,Infrastructure +386461,Regional Development,Regional Development +386461,Research and Development,Research and Development +386504,Small Business,Small Business +527291,Budget,Budget +384583,Transportation,Transportation +384560,Environment,Environment +384560,Research and Development,Research and Development +420357,Economic Development,Economic Development +410569,International Trade,International Trade +395157,Consumer Issues,Consumer Issues +409246,Economic Development,Economic Development +394634,Health,Health +394634,Industry,Industry +394634,International Trade,International Trade +394634,Justice and Law Enforcement,Justice and Law Enforcement +394636,Research and Development,Research and Development +394634,Taxation and Finance,Taxation and Finance +388123,Government Procurement,Government Procurement +384590,Budget,Budget +384590,Taxation and Finance,Taxation and Finance +396409,Employment and Training,Employment and Training +405447,Immigration,Immigration +428300,Defence,Defence +387465,Employment and Training,Emploi et formation +387465,Immigration,Immigration +397640,Agriculture,Agriculture +393681,Health,Health +389045,Infrastructure,Infrastructure +393681,Regional Development,Regional Development +393681,Research and Development,Research and Development +384864,Government Procurement,Government Procurement +390390,Industry,Industry +389050,Infrastructure,Infrastructure +411297,International Trade,International Trade +389052,Regional Development,Regional Development +524549,Taxation and Finance,Taxation and Finance +391925,Budget,Budget +391925,Health,Health +387945,Research and Development,Research and Development +392678,Transportation,Transportation +384642,Employment and Training,Employment and Training +391894,Budget,Budget +384684,Environment,Environment +446164,Industry,Industry +414346,Employment and Training,Employment and Training +414346,Mining,Mining +384715,Industry,Industry +398887,Health,Health +391676,Taxation and Finance,Taxation and Finance +384750,Taxation and Finance,Taxation and Finance +409126,Pensions,Pensions +388837,Economic Development,Economic Development +388837,Infrastructure,Infrastructure +388841,Justice and Law Enforcement,Justice and Law Enforcement +388839,Regional Development,Regional Development +384816,Regional Development,Regional Development +384816,Energy,Energy +385889,Mining,Mining +385889,Research and Development,Research and Development +391946,Government Procurement,Government Procurement +397211,Economic Development,Développement économique +431262,International Trade,International Trade +398388,Economic Development,Economic Development +384898,Housing,Housing +478481,Climate,Climate +384927,Government Procurement,Government Procurement +384957,Infrastructure,Infrastructure +397074,Environment,Environment +385907,Health,Health +386339,Infrastructure,Infrastructure +400593,Government Procurement,Government Procurement +387069,Energy,Energy +385162,Fisheries,Fisheries +385258,International Development,International Development +406471,Agriculture,Agriculture +407207,Consumer Issues,Consumer Issues +386307,Economic Development,Economic Development +401444,Health,Health +432938,Industry,Industry +393327,International Trade,International Trade +393299,Justice and Law Enforcement,Justice and Law Enforcement +407027,Regional Development,Regional Development +386304,Taxation and Finance,Taxation and Finance +405011,Consumer Issues,Consumer Issues +503921,Economic Development,Economic Development +514559,Infrastructure,Infrastructure +518985,International Trade,International Trade +501231,Transportation,Transportation +385325,Industry,Industry +403700,Climate,Climate +395124,Taxation and Finance,Taxation and Finance +394304,Taxation and Finance,Taxation and Finance +393330,Taxation and Finance,Taxation and Finance +393329,Taxation and Finance,Taxation and Finance +393328,Taxation and Finance,Taxation and Finance +393327,Taxation and Finance,Taxation and Finance +389159,Taxation and Finance,Taxation and Finance +386307,Taxation and Finance,Taxation and Finance +405008,Consumer Issues,Consumer Issues +405007,Consumer Issues,Consumer Issues +405006,Consumer Issues,Consumer Issues +404330,Consumer Issues,Consumer Issues +404329,Consumer Issues,Consumer Issues +404328,Consumer Issues,Consumer Issues +402704,Consumer Issues,Consumer Issues +399897,Consumer Issues,Consumer Issues +399896,Consumer Issues,Consumer Issues +399895,Consumer Issues,Consumer Issues +396252,Consumer Issues,Consumer Issues +396239,Consumer Issues,Consumer Issues +393731,Consumer Issues,Consumer Issues +392569,Consumer Issues,Consumer Issues +392543,Consumer Issues,Consumer Issues +389722,Consumer Issues,Consumer Issues +389714,Consumer Issues,Consumer Issues +387771,Consumer Issues,Consumer Issues +387732,Consumer Issues,Consumer Issues +387722,Consumer Issues,Consumer Issues +385229,Consumer Issues,Consumer Issues +385219,Consumer Issues,Consumer Issues +484765,Consumer Issues,Consumer Issues +484759,Consumer Issues,Consumer Issues +459581,Consumer Issues,Consumer Issues +449553,Consumer Issues,Consumer Issues +447334,Consumer Issues,Consumer Issues +447332,Consumer Issues,Consumer Issues +441324,Consumer Issues,Consumer Issues +441321,Consumer Issues,Consumer Issues +435150,Consumer Issues,Consumer Issues +435148,Consumer Issues,Consumer Issues +435140,Consumer Issues,Consumer Issues +433421,Consumer Issues,Consumer Issues +430816,Consumer Issues,Consumer Issues +428463,Consumer Issues,Consumer Issues +428456,Consumer Issues,Consumer Issues +428449,Consumer Issues,Consumer Issues +428408,Consumer Issues,Consumer Issues +428405,Consumer Issues,Consumer Issues +426053,Consumer Issues,Consumer Issues +423786,Consumer Issues,Consumer Issues +423785,Consumer Issues,Consumer Issues +423782,Consumer Issues,Consumer Issues +423780,Consumer Issues,Consumer Issues +423772,Consumer Issues,Consumer Issues +419051,Consumer Issues,Consumer Issues +419050,Consumer Issues,Consumer Issues +417874,Consumer Issues,Consumer Issues +417869,Consumer Issues,Consumer Issues +417867,Consumer Issues,Consumer Issues +417865,Consumer Issues,Consumer Issues +417864,Consumer Issues,Consumer Issues +415674,Consumer Issues,Consumer Issues +409881,Consumer Issues,Consumer Issues +409879,Consumer Issues,Consumer Issues +409782,Consumer Issues,Consumer Issues +409774,Consumer Issues,Consumer Issues +409632,Consumer Issues,Consumer Issues +407751,Consumer Issues,Consumer Issues +407744,Consumer Issues,Consumer Issues +407741,Consumer Issues,Consumer Issues +407705,Consumer Issues,Consumer Issues +407704,Consumer Issues,Consumer Issues +406509,Consumer Issues,Consumer Issues +405041,Consumer Issues,Consumer Issues +405039,Consumer Issues,Consumer Issues +405038,Consumer Issues,Consumer Issues +405037,Consumer Issues,Consumer Issues +405036,Consumer Issues,Consumer Issues +405035,Consumer Issues,Consumer Issues +405034,Consumer Issues,Consumer Issues +405031,Consumer Issues,Consumer Issues +405027,Consumer Issues,Consumer Issues +405026,Consumer Issues,Consumer Issues +405024,Consumer Issues,Consumer Issues +405018,Consumer Issues,Consumer Issues +405017,Consumer Issues,Consumer Issues +405015,Consumer Issues,Consumer Issues +501231,Economic Development,Economic Development +501230,Economic Development,Economic Development +411779,Economic Development,Economic Development +411778,Economic Development,Economic Development +411776,Economic Development,Economic Development +411774,Economic Development,Economic Development +411773,Economic Development,Economic Development +411770,Economic Development,Economic Development +411768,Economic Development,Economic Development +411766,Economic Development,Economic Development +406496,Economic Development,Economic Development +402222,Economic Development,Economic Development +402221,Economic Development,Economic Development +400068,Economic Development,Economic Development +399919,Economic Development,Economic Development +399918,Economic Development,Economic Development +399917,Economic Development,Economic Development +399916,Economic Development,Economic Development +395746,Economic Development,Economic Development +395744,Economic Development,Economic Development +395742,Economic Development,Economic Development +392209,Economic Development,Economic Development +389248,Economic Development,Economic Development +387170,Economic Development,Economic Development +495068,Economic Development,Economic Development +492467,Economic Development,Economic Development +492466,Economic Development,Economic Development +489973,Economic Development,Economic Development +481288,Economic Development,Economic Development +481287,Economic Development,Economic Development +476900,Economic Development,Economic Development +462416,Economic Development,Economic Development +462415,Economic Development,Economic Development +462413,Economic Development,Economic Development +462411,Economic Development,Economic Development +461163,Economic Development,Economic Development +457043,Economic Development,Economic Development +457041,Economic Development,Economic Development +451764,Economic Development,Economic Development +451763,Economic Development,Economic Development +451762,Economic Development,Economic Development +450101,Economic Development,Economic Development +447006,Economic Development,Economic Development +447005,Economic Development,Economic Development +447003,Economic Development,Economic Development +447001,Economic Development,Economic Development +446998,Economic Development,Economic Development +443383,Economic Development,Economic Development +443382,Economic Development,Economic Development +443381,Economic Development,Economic Development +427989,Economic Development,Economic Development +427926,Economic Development,Economic Development +427925,Economic Development,Economic Development +427924,Economic Development,Economic Development +423500,Economic Development,Economic Development +422110,Economic Development,Economic Development +421781,Economic Development,Economic Development +421778,Economic Development,Economic Development +421772,Economic Development,Economic Development +421765,Economic Development,Economic Development +421759,Economic Development,Economic Development +421757,Economic Development,Economic Development +421755,Economic Development,Economic Development +419417,Economic Development,Economic Development +417726,Economic Development,Economic Development +543355,Economic Development,Economic Development +543350,Economic Development,Economic Development +543349,Economic Development,Economic Development +543346,Economic Development,Economic Development +543344,Economic Development,Economic Development +537321,Economic Development,Economic Development +537244,Economic Development,Economic Development +531284,Economic Development,Economic Development +531283,Economic Development,Economic Development +531282,Economic Development,Economic Development +518988,Economic Development,Economic Development +518985,Economic Development,Economic Development +518983,Economic Development,Economic Development +518981,Economic Development,Economic Development +515344,Economic Development,Economic Development +515343,Economic Development,Economic Development +515342,Economic Development,Economic Development +514559,Economic Development,Economic Development +512415,Economic Development,Economic Development +512409,Economic Development,Economic Development +512415,Infrastructure,Infrastructure +512409,Infrastructure,Infrastructure +406496,Infrastructure,Infrastructure +402222,Infrastructure,Infrastructure +402221,Infrastructure,Infrastructure +400068,Infrastructure,Infrastructure +399919,Infrastructure,Infrastructure +399918,Infrastructure,Infrastructure +399917,Infrastructure,Infrastructure +399916,Infrastructure,Infrastructure +395746,Infrastructure,Infrastructure +395744,Infrastructure,Infrastructure +395742,Infrastructure,Infrastructure +392209,Infrastructure,Infrastructure +389248,Infrastructure,Infrastructure +387170,Infrastructure,Infrastructure +503921,Infrastructure,Infrastructure +501231,Infrastructure,Infrastructure +501230,Infrastructure,Infrastructure +495068,Infrastructure,Infrastructure +492467,Infrastructure,Infrastructure +492466,Infrastructure,Infrastructure +489973,Infrastructure,Infrastructure +481288,Infrastructure,Infrastructure +481287,Infrastructure,Infrastructure +476900,Infrastructure,Infrastructure +462416,Infrastructure,Infrastructure +462415,Infrastructure,Infrastructure +462413,Infrastructure,Infrastructure +462411,Infrastructure,Infrastructure +461163,Infrastructure,Infrastructure +457043,Infrastructure,Infrastructure +457041,Infrastructure,Infrastructure +451764,Infrastructure,Infrastructure +451763,Infrastructure,Infrastructure +451762,Infrastructure,Infrastructure +450101,Infrastructure,Infrastructure +447006,Infrastructure,Infrastructure +447005,Infrastructure,Infrastructure +447003,Infrastructure,Infrastructure +447001,Infrastructure,Infrastructure +446998,Infrastructure,Infrastructure +443383,Infrastructure,Infrastructure +443382,Infrastructure,Infrastructure +443381,Infrastructure,Infrastructure +427989,Infrastructure,Infrastructure +427926,Infrastructure,Infrastructure +427925,Infrastructure,Infrastructure +427924,Infrastructure,Infrastructure +423500,Infrastructure,Infrastructure +422110,Infrastructure,Infrastructure +421781,Infrastructure,Infrastructure +421778,Infrastructure,Infrastructure +421772,Infrastructure,Infrastructure +421765,Infrastructure,Infrastructure +421759,Infrastructure,Infrastructure +421757,Infrastructure,Infrastructure +421755,Infrastructure,Infrastructure +419417,Infrastructure,Infrastructure +417726,Infrastructure,Infrastructure +411779,Infrastructure,Infrastructure +411778,Infrastructure,Infrastructure +411776,Infrastructure,Infrastructure +411774,Infrastructure,Infrastructure +411773,Infrastructure,Infrastructure +411770,Infrastructure,Infrastructure +411768,Infrastructure,Infrastructure +411766,Infrastructure,Infrastructure +543355,Infrastructure,Infrastructure +543350,Infrastructure,Infrastructure +543349,Infrastructure,Infrastructure +543346,Infrastructure,Infrastructure +543344,Infrastructure,Infrastructure +537321,Infrastructure,Infrastructure +537244,Infrastructure,Infrastructure +531284,Infrastructure,Infrastructure +531283,Infrastructure,Infrastructure +531282,Infrastructure,Infrastructure +518988,Infrastructure,Infrastructure +518985,Infrastructure,Infrastructure +518983,Infrastructure,Infrastructure +518981,Infrastructure,Infrastructure +515344,Infrastructure,Infrastructure +515343,Infrastructure,Infrastructure +515342,Infrastructure,Infrastructure +518983,International Trade,International Trade +518981,International Trade,International Trade +392209,International Trade,International Trade +387170,International Trade,International Trade +515344,International Trade,International Trade +515343,International Trade,International Trade +515342,International Trade,International Trade +514559,International Trade,International Trade +512415,International Trade,International Trade +512409,International Trade,International Trade +503921,International Trade,International Trade +501231,International Trade,International Trade +501230,International Trade,International Trade +495068,International Trade,International Trade +492467,International Trade,International Trade +492466,International Trade,International Trade +489973,International Trade,International Trade +481288,International Trade,International Trade +481287,International Trade,International Trade +476900,International Trade,International Trade +462416,International Trade,International Trade +462415,International Trade,International Trade +462413,International Trade,International Trade +462411,International Trade,International Trade +461163,International Trade,International Trade +457043,International Trade,International Trade +457041,International Trade,International Trade +451764,International Trade,International Trade +451763,International Trade,International Trade +451762,International Trade,International Trade +447006,International Trade,International Trade +447005,International Trade,International Trade +447003,International Trade,International Trade +447001,International Trade,International Trade +446998,International Trade,International Trade +411779,International Trade,International Trade +411778,International Trade,International Trade +411776,International Trade,International Trade +411774,International Trade,International Trade +411773,International Trade,International Trade +411770,International Trade,International Trade +411768,International Trade,International Trade +411766,International Trade,International Trade +406496,International Trade,International Trade +402222,International Trade,International Trade +402221,International Trade,International Trade +400068,International Trade,International Trade +399919,International Trade,International Trade +399918,International Trade,International Trade +399917,International Trade,International Trade +399916,International Trade,International Trade +395746,International Trade,International Trade +395744,International Trade,International Trade +395742,International Trade,International Trade +543355,International Trade,International Trade +543350,International Trade,International Trade +543349,International Trade,International Trade +543346,International Trade,International Trade +543344,International Trade,International Trade +537321,International Trade,International Trade +537244,International Trade,International Trade +531284,International Trade,International Trade +531283,International Trade,International Trade +531282,International Trade,International Trade +518988,International Trade,International Trade +501230,Transportation,Transportation +495068,Transportation,Transportation +421755,Transportation,Transportation +419417,Transportation,Transportation +417726,Transportation,Transportation +411779,Transportation,Transportation +411778,Transportation,Transportation +411776,Transportation,Transportation +411774,Transportation,Transportation +411773,Transportation,Transportation +411770,Transportation,Transportation +411768,Transportation,Transportation +411766,Transportation,Transportation +406496,Transportation,Transportation +402222,Transportation,Transportation +402221,Transportation,Transportation +400068,Transportation,Transportation +399919,Transportation,Transportation +399918,Transportation,Transportation +399917,Transportation,Transportation +399916,Transportation,Transportation +395746,Transportation,Transportation +395744,Transportation,Transportation +395742,Transportation,Transportation +392209,Transportation,Transportation +389248,Transportation,Transportation +387170,Transportation,Transportation +492467,Transportation,Transportation +492466,Transportation,Transportation +489973,Transportation,Transportation +481288,Transportation,Transportation +481287,Transportation,Transportation +476900,Transportation,Transportation +462416,Transportation,Transportation +462415,Transportation,Transportation +462413,Transportation,Transportation +462411,Transportation,Transportation +461163,Transportation,Transportation +457043,Transportation,Transportation +457041,Transportation,Transportation +451764,Transportation,Transportation +451763,Transportation,Transportation +451762,Transportation,Transportation +450101,Transportation,Transportation +447006,Transportation,Transportation +447005,Transportation,Transportation +447003,Transportation,Transportation +447001,Transportation,Transportation +446998,Transportation,Transportation +443383,Transportation,Transportation +443382,Transportation,Transportation +443381,Transportation,Transportation +427989,Transportation,Transportation +427926,Transportation,Transportation +427925,Transportation,Transportation +427924,Transportation,Transportation +423500,Transportation,Transportation +422110,Transportation,Transportation +421781,Transportation,Transportation +421778,Transportation,Transportation +421772,Transportation,Transportation +421765,Transportation,Transportation +421759,Transportation,Transportation +421757,Transportation,Transportation +543355,Transportation,Transportation +543350,Transportation,Transportation +543349,Transportation,Transportation +543346,Transportation,Transportation +543344,Transportation,Transportation +537321,Transportation,Transportation +537244,Transportation,Transportation +531284,Transportation,Transportation +531283,Transportation,Transportation +531282,Transportation,Transportation +518988,Transportation,Transportation +518985,Transportation,Transportation +518983,Transportation,Transportation +518981,Transportation,Transportation +515344,Transportation,Transportation +515343,Transportation,Transportation +515342,Transportation,Transportation +514559,Transportation,Transportation +512415,Transportation,Transportation +512409,Transportation,Transportation +503921,Transportation,Transportation +403698,Climate,Climate +385383,Climate,Climate +415787,Climate,Climate +415783,Climate,Climate +385383,Environment,Environment +428787,Environment,Environment +415783,Environment,Environment +403700,Environment,Environment +415787,International Trade,International Trade +428787,International Trade,International Trade +389056,Economic Development,Economic Development +391823,Economic Development,Economic Development +389057,Industry,Industry +389056,Industry,Industry +391823,Industry,Industry +387470,International Trade,International Trade +387469,International Trade,International Trade +459207,International Trade,International Trade +459206,International Trade,International Trade +458522,International Trade,International Trade +397402,International Trade,International Trade +397401,International Trade,International Trade +397400,International Trade,International Trade +395475,International Trade,International Trade +395473,International Trade,International Trade +391038,International Trade,International Trade +391037,International Trade,International Trade +391036,International Trade,International Trade +391035,International Trade,International Trade +391033,International Trade,International Trade +391032,International Trade,International Trade +387472,International Trade,International Trade +387478,International Trade,International Trade +387477,International Trade,International Trade +459211,International Trade,International Trade +459210,International Trade,International Trade +458524,International Trade,International Trade +397411,International Trade,International Trade +397410,International Trade,International Trade +397409,International Trade,International Trade +395489,International Trade,International Trade +395485,International Trade,International Trade +391064,International Trade,International Trade +391063,International Trade,International Trade +391062,International Trade,International Trade +391061,International Trade,International Trade +391058,International Trade,International Trade +391057,International Trade,International Trade +391055,International Trade,International Trade +387480,International Trade,International Trade +400230,Regional Development,Regional Development +390572,Economic Development,Economic Development +385558,Economic Development,Economic Development +438770,Economic Development,Economic Development +425631,Economic Development,Economic Development +412022,Economic Development,Economic Development +412021,Economic Development,Economic Development +385558,International Trade,International Trade +518584,International Trade,International Trade +456693,International Trade,International Trade +434900,International Trade,International Trade +412021,International Trade,International Trade +438770,Small Business,Small Business +438768,Small Business,Small Business +422846,Small Business,Small Business +422840,Small Business,Small Business +400204,Small Business,Small Business +422846,Economic Development,Economic Development +524886,Economic Development,Economic Development +385560,Economic Development,Economic Development +434886,Economic Development,Economic Development +425630,International Trade,International Trade +412022,International Trade,International Trade +400204,International Trade,International Trade +390980,International Trade,International Trade +385560,International Trade,International Trade +524886,International Trade,International Trade +471308,International Trade,International Trade +471307,International Trade,International Trade +447539,International Trade,International Trade +518583,Small Business,Small Business +494679,Small Business,Small Business +447539,Small Business,Small Business +434886,Small Business,Small Business +433376,Small Business,Small Business +425630,Small Business,Small Business +390980,Small Business,Small Business +387276,Small Business,Small Business +385560,Small Business,Small Business +387276,Economic Development,Economic Development +385561,Economic Development,Economic Development +438768,Economic Development,Economic Development +425632,Economic Development,Economic Development +422840,Economic Development,Economic Development +390980,Economic Development,Economic Development +387276,International Trade,International Trade +385561,International Trade,International Trade +438770,International Trade,International Trade +438768,International Trade,International Trade +433376,International Trade,International Trade +425632,International Trade,International Trade +425631,International Trade,International Trade +422846,International Trade,International Trade +422840,International Trade,International Trade +385561,Small Business,Small Business +518584,Small Business,Small Business +456693,Small Business,Small Business +434900,Small Business,Small Business +425631,Small Business,Small Business +412022,Small Business,Small Business +412021,Small Business,Small Business +390572,Small Business,Small Business +387490,International Trade,International Trade +394507,Health,Health +392886,Health,Health +392885,Health,Health +388607,Health,Health +385613,Health,Health +385609,Health,Health +385607,Health,Health +463464,Health,Health +430517,Health,Health +429162,Health,Health +422270,Health,Health +422265,Health,Health +417244,Health,Health +395503,Health,Health +395501,Health,Health +395500,Health,Health +395499,Health,Health +394923,Health,Health +385616,Infrastructure,Infrastructure +385609,Infrastructure,Infrastructure +422270,Infrastructure,Infrastructure +385758,Labour,Labour +490902,Labour,Labour +438852,Labour,Labour +400498,Labour,Labour +399076,Labour,Labour +385759,Labour,Labour +391082,International Trade,International Trade +387492,International Trade,International Trade +459222,International Trade,International Trade +459221,International Trade,International Trade +458526,International Trade,International Trade +459224,International Trade,International Trade +459223,International Trade,International Trade +397417,International Trade,International Trade +391083,International Trade,International Trade +395483,International Trade,International Trade +395482,International Trade,International Trade +391053,International Trade,International Trade +391052,International Trade,International Trade +391051,International Trade,International Trade +391050,International Trade,International Trade +391048,International Trade,International Trade +391047,International Trade,International Trade +391046,International Trade,International Trade +387475,International Trade,International Trade +387474,International Trade,International Trade +387473,International Trade,International Trade +459209,International Trade,International Trade +459208,International Trade,International Trade +458523,International Trade,International Trade +397408,International Trade,International Trade +397407,International Trade,International Trade +387489,International Trade,International Trade +388114,Labour,Labour +385791,Labour,Labour +438851,Labour,Labour +400501,Labour,Labour +388329,Labour,Labour +387951,Labour,Labour +385796,Labour,Labour +399074,Labour,Labour +504332,Mining,Mining +492965,Mining,Mining +442469,Mining,Mining +437906,Mining,Mining +437905,Mining,Mining +437902,Mining,Mining +435233,Mining,Mining +430034,Mining,Mining +425005,Mining,Mining +425002,Mining,Mining +424999,Mining,Mining +424998,Mining,Mining +421263,Mining,Mining +421262,Mining,Mining +421261,Mining,Mining +414651,Mining,Mining +414643,Mining,Mining +411352,Mining,Mining +411351,Mining,Mining +411350,Mining,Mining +386887,Mining,Mining +386886,Mining,Mining +385871,Mining,Mining +385870,Mining,Mining +477090,Mining,Mining +475586,Mining,Mining +473479,Mining,Mining +473471,Mining,Mining +473465,Mining,Mining +473446,Mining,Mining +473420,Mining,Mining +469889,Mining,Mining +468680,Mining,Mining +468654,Mining,Mining +468651,Mining,Mining +466282,Mining,Mining +466281,Mining,Mining +462376,Mining,Mining +462375,Mining,Mining +461897,Mining,Mining +451048,Mining,Mining +445676,Mining,Mining +445674,Mining,Mining +445379,Mining,Mining +445378,Mining,Mining +445376,Mining,Mining +445375,Mining,Mining +445374,Mining,Mining +445373,Mining,Mining +541251,Mining,Mining +537348,Mining,Mining +537346,Mining,Mining +537344,Mining,Mining +537335,Mining,Mining +537332,Mining,Mining +537328,Mining,Mining +537325,Mining,Mining +531316,Mining,Mining +531314,Mining,Mining +528034,Mining,Mining +524510,Mining,Mining +521752,Mining,Mining +519467,Mining,Mining +517054,Mining,Mining +515374,Mining,Mining +515372,Mining,Mining +515111,Mining,Mining +513737,Mining,Mining +511974,Mining,Mining +511973,Mining,Mining +507945,Mining,Mining +507943,Mining,Mining +466282,Economic Development,Economic Development +466281,Economic Development,Economic Development +386887,Economic Development,Economic Development +386886,Economic Development,Economic Development +385871,Economic Development,Economic Development +385870,Economic Development,Economic Development +462375,Economic Development,Economic Development +458545,Economic Development,Economic Development +458543,Economic Development,Economic Development +451048,Economic Development,Economic Development +445676,Economic Development,Economic Development +445674,Economic Development,Economic Development +445379,Economic Development,Economic Development +445378,Economic Development,Economic Development +445376,Economic Development,Economic Development +445375,Economic Development,Economic Development +445374,Economic Development,Economic Development +445373,Economic Development,Economic Development +442469,Economic Development,Economic Development +430034,Economic Development,Economic Development +425005,Economic Development,Economic Development +425002,Economic Development,Economic Development +424999,Economic Development,Economic Development +424998,Economic Development,Economic Development +421263,Economic Development,Economic Development +421262,Economic Development,Economic Development +421261,Economic Development,Economic Development +414651,Economic Development,Economic Development +414643,Economic Development,Economic Development +411352,Economic Development,Economic Development +411351,Economic Development,Economic Development +411350,Economic Development,Economic Development +537335,Economic Development,Economic Development +531314,Economic Development,Economic Development +528034,Economic Development,Economic Development +524510,Economic Development,Economic Development +521752,Economic Development,Economic Development +519467,Economic Development,Economic Development +517054,Economic Development,Economic Development +515372,Economic Development,Economic Development +513737,Economic Development,Economic Development +511973,Economic Development,Economic Development +477090,Economic Development,Economic Development +475586,Economic Development,Economic Development +469889,Economic Development,Economic Development +468680,Economic Development,Economic Development +468654,Economic Development,Economic Development +414643,Regional Development,Regional Development +524510,Regional Development,Regional Development +411352,Regional Development,Regional Development +411351,Regional Development,Regional Development +411350,Regional Development,Regional Development +386887,Regional Development,Regional Development +386886,Regional Development,Regional Development +385871,Regional Development,Regional Development +385870,Regional Development,Regional Development +519465,Regional Development,Regional Development +511974,Regional Development,Regional Development +507938,Regional Development,Regional Development +484420,Regional Development,Regional Development +469889,Regional Development,Regional Development +468680,Regional Development,Regional Development +466281,Regional Development,Regional Development +445676,Regional Development,Regional Development +445674,Regional Development,Regional Development +445379,Regional Development,Regional Development +445378,Regional Development,Regional Development +445376,Regional Development,Regional Development +445375,Regional Development,Regional Development +445374,Regional Development,Regional Development +445373,Regional Development,Regional Development +442469,Regional Development,Regional Development +430034,Regional Development,Regional Development +425005,Regional Development,Regional Development +425002,Regional Development,Regional Development +424999,Regional Development,Regional Development +424998,Regional Development,Regional Development +421263,Regional Development,Regional Development +421262,Regional Development,Regional Development +421261,Regional Development,Regional Development +415635,Regional Development,Regional Development +445378,Employment and Training,Employment and Training +541251,Employment and Training,Employment and Training +425005,Employment and Training,Employment and Training +424999,Employment and Training,Employment and Training +421263,Employment and Training,Employment and Training +421262,Employment and Training,Employment and Training +415635,Employment and Training,Employment and Training +414656,Employment and Training,Employment and Training +414651,Employment and Training,Employment and Training +414643,Employment and Training,Employment and Training +411352,Employment and Training,Employment and Training +411351,Employment and Training,Employment and Training +411350,Employment and Training,Employment and Training +386887,Employment and Training,Employment and Training +386886,Employment and Training,Employment and Training +385871,Employment and Training,Employment and Training +537346,Employment and Training,Employment and Training +537344,Employment and Training,Employment and Training +537340,Employment and Training,Employment and Training +537335,Employment and Training,Employment and Training +537328,Employment and Training,Employment and Training +537325,Employment and Training,Employment and Training +531314,Employment and Training,Employment and Training +528034,Employment and Training,Employment and Training +524510,Employment and Training,Employment and Training +521752,Employment and Training,Employment and Training +521750,Employment and Training,Employment and Training +519467,Employment and Training,Employment and Training +519465,Employment and Training,Employment and Training +517054,Employment and Training,Employment and Training +515374,Employment and Training,Employment and Training +515372,Employment and Training,Employment and Training +513737,Employment and Training,Employment and Training +511973,Employment and Training,Employment and Training +507945,Employment and Training,Employment and Training +507943,Employment and Training,Employment and Training +507941,Employment and Training,Employment and Training +507938,Employment and Training,Employment and Training +504332,Employment and Training,Employment and Training +504326,Employment and Training,Employment and Training +497982,Employment and Training,Employment and Training +492965,Employment and Training,Employment and Training +489637,Employment and Training,Employment and Training +486700,Employment and Training,Employment and Training +486697,Employment and Training,Employment and Training +484416,Employment and Training,Employment and Training +479143,Employment and Training,Employment and Training +477090,Employment and Training,Employment and Training +469889,Employment and Training,Employment and Training +468680,Employment and Training,Employment and Training +468654,Employment and Training,Employment and Training +466281,Employment and Training,Employment and Training +462375,Employment and Training,Employment and Training +386252,Economic Development,Economic Development +386250,Economic Development,Economic Development +396163,Economic Development,Economic Development +395393,Economic Development,Economic Development +389585,Economic Development,Economic Development +389584,Economic Development,Economic Development +389012,Economic Development,Economic Development +389011,Economic Development,Economic Development +388733,Economic Development,Economic Development +386254,Economic Development,Economic Development +386252,Industry,Industry +386250,Industry,Industry +396163,Industry,Industry +395393,Industry,Industry +394375,Industry,Industry +394373,Industry,Industry +394369,Industry,Industry +389585,Industry,Industry +389584,Industry,Industry +389012,Industry,Industry +389011,Industry,Industry +388733,Industry,Industry +386254,Industry,Industry +386254,Regional Development,Regional Development +386253,Regional Development,Regional Development +389585,Regional Development,Regional Development +386252,Research and Development,Research and Development +386250,Research and Development,Research and Development +396163,Research and Development,Research and Development +395393,Research and Development,Research and Development +394375,Research and Development,Research and Development +394373,Research and Development,Research and Development +394369,Research and Development,Research and Development +389585,Research and Development,Research and Development +389584,Research and Development,Research and Development +389012,Research and Development,Research and Development +389011,Research and Development,Research and Development +388733,Research and Development,Research and Development +386254,Research and Development,Research and Development +405745,International Trade,International Trade +397563,International Trade,International Trade +407500,International Trade,International Trade +405774,International Trade,International Trade +405756,International Trade,International Trade +405755,International Trade,International Trade +405753,International Trade,International Trade +405752,International Trade,International Trade +390115,Research and Development,Research and Development +386732,Research and Development,Research and Development +441307,Privacy and Access to Information,Privacy and Access to Information +434551,Intellectual Property,Intellectual Property +430110,Intellectual Property,Intellectual Property +404080,Intellectual Property,Intellectual Property +490663,Intellectual Property,Intellectual Property +410913,Fisheries,Fisheries +390063,Government Procurement,Government Procurement +385918,Government Procurement,Government Procurement +399702,Government Procurement,Government Procurement +419875,Privacy and Access to Information,Privacy and Access to Information +415782,Privacy and Access to Information,Privacy and Access to Information +415778,Privacy and Access to Information,Privacy and Access to Information +415777,Privacy and Access to Information,Privacy and Access to Information +415775,Privacy and Access to Information,Privacy and Access to Information +414751,Privacy and Access to Information,Privacy and Access to Information +414750,Privacy and Access to Information,Privacy and Access to Information +414747,Privacy and Access to Information,Privacy and Access to Information +434728,Privacy and Access to Information,Privacy and Access to Information +434727,Privacy and Access to Information,Privacy and Access to Information +434726,Privacy and Access to Information,Privacy and Access to Information +434723,Privacy and Access to Information,Privacy and Access to Information +434721,Privacy and Access to Information,Privacy and Access to Information +433076,Privacy and Access to Information,Privacy and Access to Information +433056,Privacy and Access to Information,Privacy and Access to Information +433055,Privacy and Access to Information,Privacy and Access to Information +432764,Privacy and Access to Information,Privacy and Access to Information +432762,Privacy and Access to Information,Privacy and Access to Information +432761,Privacy and Access to Information,Privacy and Access to Information +432760,Privacy and Access to Information,Privacy and Access to Information +432759,Privacy and Access to Information,Privacy and Access to Information +432758,Privacy and Access to Information,Privacy and Access to Information +431018,Privacy and Access to Information,Privacy and Access to Information +424525,Privacy and Access to Information,Privacy and Access to Information +424524,Privacy and Access to Information,Privacy and Access to Information +424523,Privacy and Access to Information,Privacy and Access to Information +421688,Privacy and Access to Information,Privacy and Access to Information +421686,Privacy and Access to Information,Privacy and Access to Information +421682,Privacy and Access to Information,Privacy and Access to Information +421681,Privacy and Access to Information,Privacy and Access to Information +421679,Privacy and Access to Information,Privacy and Access to Information +385954,Transportation,Transportation +533453,Transportation,Transportation +445929,Transportation,Transportation +434718,Transportation,Transportation +434717,Transportation,Transportation +434712,Transportation,Transportation +434703,Transportation,Transportation +434702,Transportation,Transportation +434701,Transportation,Transportation +389116,Transportation,Transportation +385958,Transportation,Transportation +533472,Transportation,Transportation +434700,Transportation,Transportation +411256,Transportation,Transportation +411253,Transportation,Transportation +408812,Transportation,Transportation +408351,Transportation,Transportation +408304,Transportation,Transportation +407974,Transportation,Transportation +400279,Transportation,Transportation +392924,Transportation,Transportation +391421,Transportation,Transportation +389009,Transportation,Transportation +403698,Environment,Environment +415817,International Trade,International Trade +385406,International Development,International Development +389057,Economic Development,Economic Development +391822,Environment,Environment +391822,Industry,Industry +391034,International Relations,International Relations +387471,International Trade,International Trade +387479,International Trade,International Trade +400235,Regional Development,Regional Development +400204,Economic Development,Economic Development +390572,International Trade,International Trade +385558,Small Business,Small Business +425630,Economic Development,Economic Development +434886,International Trade,International Trade +524886,Small Business,Small Business +390570,Economic Development,Economic Development +390570,International Trade,International Trade +390570,Small Business,Small Business +391079,International Trade,International Trade +394512,Health,Health +394921,Infrastructure,Infrastructure +385757,Labour,Labour +399057,Labour,Labour +388122,Labour,Labour +397416,International Trade,International Trade +387493,International Trade,International Trade +387476,International Relations,International Relations +397406,International Trade,International Trade +391078,International Trade,International Trade +388115,Labour,Labour +385795,Labour,Labour +391593,Labour,Labour +385832,Environment,Environment +385832,Economic Development,Economic Development +385833,Environment,Environment +385835,Environment,Environment +507941,Mining,Mining +468651,Economic Development,Economic Development +414651,Regional Development,Regional Development +445674,Employment and Training,Employment and Training +386253,Economic Development,Economic Development +386253,Industry,Industry +389584,Regional Development,Regional Development +386253,Research and Development,Research and Development +405749,International Trade,International Trade +404080,Research and Development,Research and Development +490663,Privacy and Access to Information,Privacy and Access to Information +441307,Intellectual Property,Intellectual Property +385916,Fisheries,Fisheries +397641,Government Procurement,Government Procurement +385932,Government Procurement,Government Procurement +419877,Privacy and Access to Information,Privacy and Access to Information +389001,Transportation,Transportation +389004,Transportation,Transportation +413980,Industry,Industry +385962,Economic Development,Economic Development +394371,Economic Development,Economic Development +388861,Industry,Industry +388861,Regional Development,Regional Development +388861,Economic Development,Economic Development +388861,Climate,Climate +388861,Energy,Energy +388861,Environment,Environment +388861,Research and Development,Research and Development +386138,Taxation and Finance,Taxation and Finance +427565,Climate,Climate +387184,Research and Development,Research and Development +468590,International Trade,International Trade +386045,Government Procurement,Government Procurement +386745,Environment,Environment +386745,Energy,Energy +386742,Regional Development,Regional Development +386742,Industry,Industry +386745,Climate,Climate +386745,Economic Development,Economic Development +386062,Defence,Defence +386062,Government Procurement,Government Procurement +405756,Forestry,Forestry +424494,Forestry,Forestry +387936,Industry,Industry +387933,Infrastructure,Infrastructure +387936,International Trade,International Trade +387936,Small Business,Small Business +387936,Taxation and Finance,Taxation and Finance +392064,Environment,Environment +392064,Health,Health +533201,Climate,Climate +401010,Economic Development,Economic Development +425874,Employment and Training,Employment and Training +388007,Industry,Industry +388011,Infrastructure,Infrastructure +388014,International Trade,International Trade +388014,Small Business,Small Business +388011,Taxation and Finance,Taxation and Finance +388618,Industry,Industry +388618,Infrastructure,Infrastructure +388618,International Trade,International Trade +388618,Small Business,Small Business +388618,Taxation and Finance,Taxation and Finance +389682,Economic Development,Economic Development +400361,Industry,Industry +392949,Taxation and Finance,Taxation and Finance +410752,Economic Development,Economic Development +471329,Environment,Environment +471329,Industry,Industry +480931,International Trade,International Trade +440359,Security,Security +393546,Taxation and Finance,Taxation and Finance +386213,Budget,Budget +439629,Economic Development,Economic Development +439629,Financial Institutions,Financial Institutions +439629,Small Business,Small Business +386212,Taxation and Finance,Taxation and Finance +395238,Security,Security +388783,Economic Development,Economic Development +388783,Energy,Energy +393636,Budget,Budget +391984,Housing,Housing +391984,Infrastructure,Infrastructure +388908,Industry,Industry +411149,Intellectual Property,Intellectual Property +386316,Small Business,Small Business +386316,Tourism,Tourism +386318,Immigration,Immigration +397335,Transportation,Transports +412456,Industry,Industry +412456,Infrastructure,Infrastructure +388529,International Trade,International Trade +394305,Small Business,Small Business +388529,Taxation and Finance,Taxation and Finance +387813,Environment,Environment +387813,Agriculture,Agriculture +387813,Energy,Energy +387813,Industry,Industry +387813,Transportation,Transportation +407445,Industry,Industry +394311,Infrastructure,Infrastructure +388528,International Trade,International Trade +394311,Small Business,Small Business +394311,Taxation and Finance,Taxation and Finance +397569,Housing,Housing +531564,Financial Institutions,Financial Institutions +394310,Environment,Environment +389217,Energy,Energy +389217,International Trade,International Trade +395492,Taxation and Finance,Taxation and Finance +456743,Climate,Climate +387282,Taxation and Finance,Taxation and Finance +387280,Taxation and Finance,Taxation and Finance +386425,Economic Development,Economic Development +386425,Tourism,Tourism +432448,Climate,Climate +406133,Economic Development,Economic Development +389392,Energy,Energy +432449,Municipalities,Municipalities +459218,International Trade,International Trade +395567,Agriculture,Agriculture +397419,International Trade,International Trade +387486,International Trade,International Trade +391077,International Trade,International Trade +388877,Energy,Energy +388851,Economic Development,Economic Development +390039,Environment,Environment +399123,Consumer Issues,Consumer Issues +399123,Financial Institutions,Financial Institutions +399123,Housing,Housing +399123,Taxation and Finance,Taxation and Finance +389367,Employment and Training,Employment and Training +389369,Education,Education +402171,Agriculture,Agriculture +402171,Consumer Issues,Consumer Issues +402171,Health,Health +402171,International Trade,International Trade +404857,Housing,Housing +404857,Taxation and Finance,Taxation and Finance +444282,Health,Health +389219,Energy,Energy +389219,International Trade,International Trade +415508,Economic Development,Economic Development +415512,Employment and Training,Employment and Training +392166,Economic Development,Economic Development +397632,Regional Development,Regional Development +392165,Employment and Training,Employment and Training +388067,Government Procurement,Government Procurement +386885,Agriculture,Agriculture +386885,Transportation,Transportation +398325,Financial Institutions,Financial Institutions +527322,Employment and Training,Employment and Training +477115,Mining,Mining +389912,Education,Education +389912,Health,Health +392081,Budget,Budget +392521,Economic Development,Economic Development +392521,Education,Education +392521,Employment and Training,Employment and Training +392081,Government Procurement,Government Procurement +388863,Health,Health +392081,Housing,Housing +392081,Infrastructure,Infrastructure +392521,Labour,Labour +388863,Small Business,Small Business +389173,Economic Development,Economic Development +389173,Employment and Training,Employment and Training +389173,Research and Development,Research and Development +397418,International Trade,International Trade +459213,International Trade,International Trade +387491,International Trade,International Trade +389005,Transportation,Transportation +394371,Industry,Industry +385962,Industry,Industry +424494,Industry,Industry +480720,Economic Development,Economic Development +424494,Economic Development,Economic Development +386063,Economic Development,Economic Development +385963,Economic Development,Economic Development +388860,Industry,Industry +388859,Industry,Industry +411744,Industry,Industry +410547,Industry,Industry +410461,Industry,Industry +402775,Industry,Industry +401399,Industry,Industry +395465,Industry,Industry +395455,Industry,Industry +395453,Industry,Industry +395451,Industry,Industry +395450,Industry,Industry +388864,Industry,Industry +388862,Industry,Industry +388860,Regional Development,Regional Development +388859,Regional Development,Regional Development +411744,Regional Development,Regional Development +410547,Regional Development,Regional Development +410461,Regional Development,Regional Development +395455,Regional Development,Regional Development +395453,Regional Development,Regional Development +395451,Regional Development,Regional Development +395450,Regional Development,Regional Development +388864,Regional Development,Regional Development +388862,Regional Development,Regional Development +388860,Economic Development,Economic Development +388859,Economic Development,Economic Development +411744,Economic Development,Economic Development +410547,Economic Development,Economic Development +410461,Economic Development,Economic Development +402775,Economic Development,Economic Development +401399,Economic Development,Economic Development +395455,Economic Development,Economic Development +395453,Economic Development,Economic Development +395451,Economic Development,Economic Development +395450,Economic Development,Economic Development +388864,Economic Development,Economic Development +388862,Economic Development,Economic Development +388860,Climate,Climate +388859,Climate,Climate +411744,Climate,Climate +410547,Climate,Climate +410461,Climate,Climate +402775,Climate,Climate +395455,Climate,Climate +395453,Climate,Climate +395451,Climate,Climate +395450,Climate,Climate +388864,Climate,Climate +388862,Climate,Climate +388860,Energy,Energy +388859,Energy,Energy +411744,Energy,Energy +410547,Energy,Energy +410461,Energy,Energy +402775,Energy,Energy +401399,Energy,Energy +395465,Energy,Energy +395455,Energy,Energy +395453,Energy,Energy +395451,Energy,Energy +395450,Energy,Energy +388864,Energy,Energy +388862,Energy,Energy +388860,Environment,Environment +388859,Environment,Environment +411744,Environment,Environment +410547,Environment,Environment +410461,Environment,Environment +401399,Environment,Environment +395455,Environment,Environment +395453,Environment,Environment +395451,Environment,Environment +395450,Environment,Environment +388864,Environment,Environment +388862,Environment,Environment +388860,Research and Development,Research and Development +388859,Research and Development,Research and Development +411744,Research and Development,Research and Development +410547,Research and Development,Research and Development +410461,Research and Development,Research and Development +402775,Research and Development,Research and Development +401399,Research and Development,Research and Development +395465,Research and Development,Research and Development +395455,Research and Development,Research and Development +395453,Research and Development,Research and Development +395451,Research and Development,Research and Development +395450,Research and Development,Research and Development +388864,Research and Development,Research and Development +388862,Research and Development,Research and Development +385975,Taxation and Finance,Taxation and Finance +406119,Taxation and Finance,Taxation and Finance +389035,Taxation and Finance,Taxation and Finance +389034,Taxation and Finance,Taxation and Finance +420672,Climate,Climate +411502,Climate,Climate +441582,Climate,Climate +441574,Climate,Climate +441572,Climate,Climate +441570,Climate,Climate +441510,Climate,Climate +387183,Research and Development,Research and Development +387182,Research and Development,Research and Development +468585,International Trade,International Trade +453034,International Trade,International Trade +440653,International Trade,International Trade +409441,International Trade,International Trade +401562,International Trade,International Trade +401561,International Trade,International Trade +401560,International Trade,International Trade +401559,International Trade,International Trade +386028,International Trade,International Trade +486306,International Trade,International Trade +386742,Environment,Environment +386631,Environment,Environment +386742,Energy,Energy +386631,Energy,Energy +386632,Regional Development,Regional Development +386745,Regional Development,Regional Development +386632,Industry,Industry +386631,Industry,Industry +386745,Industry,Industry +386631,Climate,Climate +386742,Economic Development,Economic Development +386632,Economic Development,Economic Development +405752,Forestry,Forestry +397563,Forestry,Forestry +407500,Forestry,Forestry +405774,Forestry,Forestry +413980,Forestry,Forestry +386063,Forestry,Forestry +387933,Industry,Industry +448112,Industry,Industry +391129,Industry,Industry +387933,International Trade,International Trade +448112,International Trade,International Trade +391129,International Trade,International Trade +387933,Taxation and Finance,Taxation and Finance +448112,Taxation and Finance,Taxation and Finance +391129,Taxation and Finance,Taxation and Finance +533200,Climate,Climate +533194,Climate,Climate +518458,Climate,Climate +498689,Climate,Climate +498685,Climate,Climate +543763,Climate,Climate +533200,Economic Development,Economic Development +533199,Economic Development,Economic Development +510909,Economic Development,Economic Development +503723,Economic Development,Economic Development +498689,Economic Development,Economic Development +498685,Economic Development,Economic Development +498683,Economic Development,Economic Development +486309,Economic Development,Economic Development +477963,Economic Development,Economic Development +475660,Economic Development,Economic Development +475642,Economic Development,Economic Development +475637,Economic Development,Economic Development +468365,Economic Development,Economic Development +459882,Economic Development,Economic Development +455015,Economic Development,Economic Development +455014,Economic Development,Economic Development +455011,Economic Development,Economic Development +426853,Economic Development,Economic Development +422245,Economic Development,Economic Development +425873,Employment and Training,Employment and Training +423333,Employment and Training,Employment and Training +423329,Employment and Training,Employment and Training +386131,Employment and Training,Employment and Training +511866,Employment and Training,Employment and Training +448629,Employment and Training,Employment and Training +448627,Employment and Training,Employment and Training +448623,Employment and Training,Employment and Training +441673,Employment and Training,Employment and Training +436702,Employment and Training,Employment and Training +425875,Employment and Training,Employment and Training +445791,Industry,Industry +413859,Industry,Industry +394337,Industry,Industry +388015,Industry,Industry +388014,Industry,Industry +388011,International Trade,International Trade +388007,International Trade,International Trade +445791,International Trade,International Trade +413859,International Trade,International Trade +394337,International Trade,International Trade +388018,International Trade,International Trade +388015,International Trade,International Trade +388011,Small Business,Small Business +388007,Small Business,Small Business +388018,Small Business,Small Business +388015,Small Business,Small Business +388007,Taxation and Finance,Taxation and Finance +445791,Taxation and Finance,Taxation and Finance +413859,Taxation and Finance,Taxation and Finance +394337,Taxation and Finance,Taxation and Finance +388018,Taxation and Finance,Taxation and Finance +388015,Taxation and Finance,Taxation and Finance +388014,Taxation and Finance,Taxation and Finance +388616,Industry,Industry +387585,Industry,Industry +388620,Industry,Industry +388616,Infrastructure,Infrastructure +387585,Infrastructure,Infrastructure +388620,Infrastructure,Infrastructure +388616,International Trade,International Trade +387585,International Trade,International Trade +388620,International Trade,International Trade +388616,Small Business,Small Business +387585,Small Business,Small Business +388620,Small Business,Small Business +388616,Taxation and Finance,Taxation and Finance +387585,Taxation and Finance,Taxation and Finance +388620,Taxation and Finance,Taxation and Finance +480351,Economic Development,Economic Development +400359,Industry,Industry +506976,Industry,Industry +417223,Industry,Industry +391828,Taxation and Finance,Taxation and Finance +531270,Economic Development,Economic Development +516240,Economic Development,Economic Development +392277,Economic Development,Economic Development +392273,Economic Development,Economic Development +496287,Economic Development,Economic Development +496286,Economic Development,Economic Development +496284,Economic Development,Economic Development +476695,Economic Development,Economic Development +471490,Economic Development,Economic Development +471487,Economic Development,Economic Development +471328,Economic Development,Economic Development +471326,Economic Development,Economic Development +469846,Economic Development,Economic Development +469844,Economic Development,Economic Development +469840,Economic Development,Economic Development +469837,Economic Development,Economic Development +469835,Economic Development,Economic Development +469821,Economic Development,Economic Development +469820,Economic Development,Economic Development +469819,Economic Development,Economic Development +469818,Economic Development,Economic Development +469817,Economic Development,Economic Development +471328,Industry,Industry +471326,Industry,Industry +518708,Industry,Industry +516240,Industry,Industry +463375,International Trade,International Trade +408265,Security,Security +404196,Security,Security +393544,Taxation and Finance,Taxation and Finance +393542,Taxation and Finance,Taxation and Finance +397856,Taxation and Finance,Taxation and Finance +386212,Budget,Budget +386211,Budget,Budget +439629,Budget,Budget +386215,Budget,Budget +386214,Budget,Budget +410887,Financial Institutions,Financial Institutions +410877,Financial Institutions,Financial Institutions +386215,Financial Institutions,Financial Institutions +386214,Financial Institutions,Financial Institutions +386213,Financial Institutions,Financial Institutions +386212,Financial Institutions,Financial Institutions +386211,Financial Institutions,Financial Institutions +386211,Taxation and Finance,Taxation and Finance +439629,Taxation and Finance,Taxation and Finance +386215,Taxation and Finance,Taxation and Finance +386214,Taxation and Finance,Taxation and Finance +386213,Taxation and Finance,Taxation and Finance +395237,Security,Security +393635,Budget,Budget +390220,Budget,Budget +437633,Budget,Budget +410722,Budget,Budget +408767,Budget,Budget +393643,Budget,Budget +393642,Budget,Budget +393641,Budget,Budget +393640,Budget,Budget +393638,Budget,Budget +391983,Housing,Housing +391982,Housing,Housing +391989,Housing,Housing +391988,Housing,Housing +391986,Housing,Housing +391985,Housing,Housing +391983,Infrastructure,Infrastructure +391982,Infrastructure,Infrastructure +391989,Infrastructure,Infrastructure +391988,Infrastructure,Infrastructure +391986,Infrastructure,Infrastructure +391985,Infrastructure,Infrastructure +388907,Industry,Industry +388906,Industry,Industry +389010,Intellectual Property,Intellectual Property +397335,Immigration,Immigration +394305,Industry,Industry +388529,Industry,Industry +394305,Infrastructure,Infrastructure +388529,Infrastructure,Infrastructure +445418,International Trade,International Trade +412456,International Trade,International Trade +394305,International Trade,International Trade +388529,Small Business,Small Business +394305,Taxation and Finance,Taxation and Finance +394311,Industry,Industry +394307,Industry,Industry +388528,Industry,Industry +394307,Infrastructure,Infrastructure +388528,Infrastructure,Infrastructure +407445,Infrastructure,Infrastructure +407445,International Trade,International Trade +394311,International Trade,International Trade +394307,International Trade,International Trade +394307,Small Business,Small Business +388528,Small Business,Small Business +394307,Taxation and Finance,Taxation and Finance +388528,Taxation and Finance,Taxation and Finance +531563,Financial Institutions,Financial Institutions +531561,Financial Institutions,Financial Institutions +443082,Financial Institutions,Financial Institutions +443080,Financial Institutions,Financial Institutions +392861,Environment,Environment +392860,Environment,Environment +392855,Environment,Environment +389392,Environment,Environment +389389,Environment,Environment +389380,Environment,Environment +389378,Environment,Environment +389377,Environment,Environment +389376,Environment,Environment +389375,Environment,Environment +389345,Environment,Environment +389344,Environment,Environment +389315,Environment,Environment +442547,Environment,Environment +442540,Environment,Environment +434883,Environment,Environment +434882,Environment,Environment +433761,Environment,Environment +433759,Environment,Environment +432450,Environment,Environment +432449,Environment,Environment +432448,Environment,Environment +432446,Environment,Environment +421347,Environment,Environment +411114,Environment,Environment +411113,Environment,Environment +406133,Environment,Environment +406132,Environment,Environment +406131,Environment,Environment +400220,Environment,Environment +400203,Environment,Environment +399148,Environment,Environment +396928,Environment,Environment +389216,Energy,Energy +389214,Energy,Energy +389216,International Trade,International Trade +389214,International Trade,International Trade +395492,International Trade,International Trade +450728,Climate,Climate +450713,Climate,Climate +423423,Climate,Climate +422673,Climate,Climate +419601,Climate,Climate +412402,Climate,Climate +407966,Climate,Climate +407965,Climate,Climate +405261,Climate,Climate +394404,Climate,Climate +392456,Climate,Climate +390931,Climate,Climate +387995,Climate,Climate +528146,Climate,Climate +516969,Climate,Climate +510156,Climate,Climate +504346,Climate,Climate +504345,Climate,Climate +504337,Climate,Climate +501204,Climate,Climate +501201,Climate,Climate +478482,Climate,Climate +476265,Climate,Climate +474123,Climate,Climate +471700,Climate,Climate +471526,Climate,Climate +459237,Climate,Climate +459236,Climate,Climate +496932,Taxation and Finance,Taxation and Finance +432446,Climate,Climate +421347,Climate,Climate +411114,Climate,Climate +411113,Climate,Climate +406133,Climate,Climate +406132,Climate,Climate +406131,Climate,Climate +400220,Climate,Climate +400203,Climate,Climate +399148,Climate,Climate +396928,Climate,Climate +394310,Climate,Climate +392861,Climate,Climate +392860,Climate,Climate +392855,Climate,Climate +389389,Climate,Climate +389380,Climate,Climate +389378,Climate,Climate +389377,Climate,Climate +389376,Climate,Climate +389375,Climate,Climate +389345,Climate,Climate +389344,Climate,Climate +389343,Climate,Climate +389315,Climate,Climate +442547,Climate,Climate +442540,Climate,Climate +434883,Climate,Climate +434882,Climate,Climate +433761,Climate,Climate +433759,Climate,Climate +432450,Climate,Climate +432449,Climate,Climate +406132,Economic Development,Economic Development +406131,Economic Development,Economic Development +400220,Economic Development,Economic Development +400203,Economic Development,Economic Development +399148,Economic Development,Economic Development +396928,Economic Development,Economic Development +394310,Economic Development,Economic Development +392861,Economic Development,Economic Development +392860,Economic Development,Economic Development +392855,Economic Development,Economic Development +389392,Economic Development,Economic Development +389389,Economic Development,Economic Development +389380,Economic Development,Economic Development +389378,Economic Development,Economic Development +389377,Economic Development,Economic Development +389376,Economic Development,Economic Development +389375,Economic Development,Economic Development +389345,Economic Development,Economic Development +389344,Economic Development,Economic Development +389343,Economic Development,Economic Development +389315,Economic Development,Economic Development +442547,Economic Development,Economic Development +442540,Economic Development,Economic Development +434883,Economic Development,Economic Development +434882,Economic Development,Economic Development +433761,Economic Development,Economic Development +433759,Economic Development,Economic Development +432450,Economic Development,Economic Development +432449,Economic Development,Economic Development +432448,Economic Development,Economic Development +432446,Economic Development,Economic Development +421347,Economic Development,Economic Development +411114,Economic Development,Economic Development +411113,Economic Development,Economic Development +389389,Energy,Energy +389380,Energy,Energy +389378,Energy,Energy +389377,Energy,Energy +389376,Energy,Energy +389375,Energy,Energy +389345,Energy,Energy +389315,Energy,Energy +442547,Energy,Energy +442540,Energy,Energy +434883,Energy,Energy +434882,Energy,Energy +433761,Energy,Energy +433759,Energy,Energy +432450,Energy,Energy +432449,Energy,Energy +432448,Energy,Energy +432446,Energy,Energy +421347,Energy,Energy +411114,Energy,Energy +411113,Energy,Energy +406133,Energy,Energy +406132,Energy,Energy +406131,Energy,Energy +400220,Energy,Energy +400203,Energy,Energy +399148,Energy,Energy +396928,Energy,Energy +394310,Energy,Energy +392861,Energy,Energy +392860,Energy,Energy +392855,Energy,Energy +432448,Municipalities,Municipalities +432446,Municipalities,Municipalities +421347,Municipalities,Municipalities +411114,Municipalities,Municipalities +411113,Municipalities,Municipalities +406133,Municipalities,Municipalities +406132,Municipalities,Municipalities +406131,Municipalities,Municipalities +400220,Municipalities,Municipalities +400203,Municipalities,Municipalities +399148,Municipalities,Municipalities +396928,Municipalities,Municipalities +394310,Municipalities,Municipalities +392861,Municipalities,Municipalities +392860,Municipalities,Municipalities +392855,Municipalities,Municipalities +389392,Municipalities,Municipalities +389389,Municipalities,Municipalities +389380,Municipalities,Municipalities +389378,Municipalities,Municipalities +389377,Municipalities,Municipalities +389376,Municipalities,Municipalities +389375,Municipalities,Municipalities +389345,Municipalities,Municipalities +389344,Municipalities,Municipalities +389315,Municipalities,Municipalities +442547,Municipalities,Municipalities +442540,Municipalities,Municipalities +434883,Municipalities,Municipalities +434882,Municipalities,Municipalities +433761,Municipalities,Municipalities +433759,Municipalities,Municipalities +432450,Municipalities,Municipalities +458527,International Trade,International Trade +397415,International Trade,International Trade +460028,International Trade,International Trade +459219,International Trade,International Trade +389331,Agriculture,Agriculture +402648,Agriculture,Agriculture +400188,Agriculture,Agriculture +387485,International Trade,International Trade +387484,International Trade,International Trade +397405,International Trade,International Trade +397404,International Trade,International Trade +397403,International Trade,International Trade +395479,International Trade,International Trade +395477,International Trade,International Trade +391045,International Trade,International Trade +391044,International Trade,International Trade +391043,International Trade,International Trade +391042,International Trade,International Trade +391041,International Trade,International Trade +391040,International Trade,International Trade +391039,International Trade,International Trade +387488,International Trade,International Trade +388876,Energy,Energy +388879,Energy,Energy +388878,Energy,Energy +386458,Economic Development,Economic Development +417690,Economic Development,Economic Development +390039,Economic Development,Economic Development +388851,Environment,Environment +386458,Environment,Environment +399122,Consumer Issues,Consumer Issues +392936,Consumer Issues,Consumer Issues +399122,Financial Institutions,Financial Institutions +392936,Financial Institutions,Financial Institutions +404355,Financial Institutions,Financial Institutions +402255,Financial Institutions,Financial Institutions +399122,Housing,Housing +392936,Housing,Housing +399122,Taxation and Finance,Taxation and Finance +389369,Employment and Training,Employment and Training +389367,Education,Education +402170,Agriculture,Agriculture +491302,Agriculture,Agriculture +416762,Agriculture,Agriculture +402177,Agriculture,Agriculture +402173,Agriculture,Agriculture +402170,Consumer Issues,Consumer Issues +491302,Consumer Issues,Consumer Issues +416762,Consumer Issues,Consumer Issues +411899,Consumer Issues,Consumer Issues +402177,Consumer Issues,Consumer Issues +402173,Consumer Issues,Consumer Issues +402170,Health,Health +435665,Health,Health +416762,Health,Health +411899,Health,Health +402177,Health,Health +402173,Health,Health +402170,International Trade,International Trade +416762,International Trade,International Trade +402177,International Trade,International Trade +402173,International Trade,International Trade +397574,Housing,Housing +397574,Taxation and Finance,Taxation and Finance +402326,Health,Health +415483,Economic Development,Economic Development +416500,Economic Development,Economic Development +415518,Economic Development,Economic Development +415512,Economic Development,Economic Development +415508,Employment and Training,Employment and Training +415483,Employment and Training,Employment and Training +416500,Employment and Training,Employment and Training +415518,Employment and Training,Employment and Training +392165,Economic Development,Economic Development +392164,Economic Development,Economic Development +397633,Economic Development,Economic Development +397632,Economic Development,Economic Development +397631,Economic Development,Economic Development +397630,Economic Development,Economic Development +395397,Economic Development,Economic Development +395396,Economic Development,Economic Development +397631,Regional Development,Regional Development +397630,Regional Development,Regional Development +397633,Regional Development,Regional Development +392164,Employment and Training,Employment and Training +397633,Employment and Training,Employment and Training +397632,Employment and Training,Employment and Training +397631,Employment and Training,Employment and Training +397630,Employment and Training,Employment and Training +395397,Employment and Training,Employment and Training +395396,Employment and Training,Employment and Training +392166,Employment and Training,Employment and Training +388065,Government Procurement,Government Procurement +388063,Government Procurement,Government Procurement +392693,Government Procurement,Government Procurement +390495,Government Procurement,Government Procurement +390494,Government Procurement,Government Procurement +390493,Government Procurement,Government Procurement +390492,Government Procurement,Government Procurement +388120,Government Procurement,Government Procurement +388117,Government Procurement,Government Procurement +388102,Government Procurement,Government Procurement +388099,Government Procurement,Government Procurement +388098,Government Procurement,Government Procurement +388095,Government Procurement,Government Procurement +388092,Government Procurement,Government Procurement +388089,Government Procurement,Government Procurement +388088,Government Procurement,Government Procurement +388084,Government Procurement,Government Procurement +388079,Government Procurement,Government Procurement +388076,Government Procurement,Government Procurement +388074,Government Procurement,Government Procurement +388071,Government Procurement,Government Procurement +386884,Agriculture,Agriculture +386883,Agriculture,Agriculture +405718,Agriculture,Agriculture +405717,Agriculture,Agriculture +405716,Agriculture,Agriculture +386884,Transportation,Transportation +386883,Transportation,Transportation +416988,Transportation,Transportation +413751,Transportation,Transportation +405718,Transportation,Transportation +405717,Transportation,Transportation +394550,Transportation,Transportation +392774,Transportation,Transportation +394104,Financial Institutions,Financial Institutions +390016,Financial Institutions,Financial Institutions +429254,Employment and Training,Employment and Training +429215,Employment and Training,Employment and Training +531321,Employment and Training,Employment and Training +429254,Mining,Mining +429215,Mining,Mining +536602,Mining,Mining +536595,Mining,Mining +510928,Mining,Mining +510920,Mining,Mining +487213,Mining,Mining +478850,Mining,Mining +477169,Mining,Mining +477157,Mining,Mining +477152,Mining,Mining +477144,Mining,Mining +477137,Mining,Mining +477135,Mining,Mining +477133,Mining,Mining +477130,Mining,Mining +389587,Education,Education +389587,Health,Health +392080,Budget,Budget +388863,Budget,Budget +392521,Budget,Budget +392083,Budget,Budget +392082,Budget,Budget +392080,Government Procurement,Government Procurement +388863,Government Procurement,Government Procurement +392083,Government Procurement,Government Procurement +392082,Government Procurement,Government Procurement +392080,Housing,Housing +388863,Housing,Housing +392521,Housing,Housing +392083,Housing,Housing +392082,Housing,Housing +392080,Infrastructure,Infrastructure +388863,Infrastructure,Infrastructure +392521,Infrastructure,Infrastructure +392083,Infrastructure,Infrastructure +392082,Infrastructure,Infrastructure +387620,Economic Development,Economic Development +387620,Employment and Training,Employment and Training +387620,Research and Development,Research and Development +391084,International Trade,International Trade +387494,International Trade,International Trade +459216,International Trade,International Trade +459215,International Trade,International Trade +458528,International Trade,International Trade +459212,International Trade,International Trade +458525,International Trade,International Trade +397414,International Trade,International Trade +397413,International Trade,International Trade +397412,International Trade,International Trade +395491,International Trade,International Trade +395490,International Trade,International Trade +391074,International Trade,International Trade +391072,International Trade,International Trade +391071,International Trade,International Trade +391069,International Trade,International Trade +391068,International Trade,International Trade +391067,International Trade,International Trade +391065,International Trade,International Trade +387483,International Trade,International Trade +387482,International Trade,International Trade +387481,International Trade,International Trade +391080,International Trade,International Trade +394197,Infrastructure,Infrastructure +450718,Infrastructure,Infrastructure +450713,Infrastructure,Infrastructure +387995,Infrastructure,Infrastructure +444043,Infrastructure,Infrastructure +423423,Infrastructure,Infrastructure +422673,Infrastructure,Infrastructure +419601,Infrastructure,Infrastructure +418141,Infrastructure,Infrastructure +412403,Infrastructure,Infrastructure +412402,Infrastructure,Infrastructure +407966,Infrastructure,Infrastructure +407965,Infrastructure,Infrastructure +405261,Infrastructure,Infrastructure +405257,Infrastructure,Infrastructure +405249,Infrastructure,Infrastructure +403615,Infrastructure,Infrastructure +401003,Infrastructure,Infrastructure +396284,Infrastructure,Infrastructure +396267,Infrastructure,Infrastructure +394404,Infrastructure,Infrastructure +392859,Infrastructure,Infrastructure +392858,Infrastructure,Infrastructure +392456,Infrastructure,Infrastructure +390931,Infrastructure,Infrastructure +539048,Infrastructure,Infrastructure +534208,Infrastructure,Infrastructure +528145,Infrastructure,Infrastructure +525337,Infrastructure,Infrastructure +525309,Infrastructure,Infrastructure +522398,Infrastructure,Infrastructure +510156,Infrastructure,Infrastructure +507253,Infrastructure,Infrastructure +507046,Infrastructure,Infrastructure +507036,Infrastructure,Infrastructure +507033,Infrastructure,Infrastructure +507028,Infrastructure,Infrastructure +504348,Infrastructure,Infrastructure +504347,Infrastructure,Infrastructure +504346,Infrastructure,Infrastructure +504345,Infrastructure,Infrastructure +504339,Infrastructure,Infrastructure +501204,Infrastructure,Infrastructure +478482,Infrastructure,Infrastructure +476265,Infrastructure,Infrastructure +474123,Infrastructure,Infrastructure +471700,Infrastructure,Infrastructure +471526,Infrastructure,Infrastructure +470284,Infrastructure,Infrastructure +469258,Infrastructure,Infrastructure +469240,Infrastructure,Infrastructure +459236,Infrastructure,Infrastructure +459234,Infrastructure,Infrastructure +456743,Infrastructure,Infrastructure +433827,Climate,Climate +503797,Climate,Climate +443118,Climate,Climate +451597,Economic Development,Economic Development +443118,Economic Development,Economic Development +443117,Economic Development,Economic Development +443116,Economic Development,Economic Development +441070,Economic Development,Economic Development +435917,Economic Development,Economic Development +435909,Economic Development,Economic Development +433828,Economic Development,Economic Development +427447,Economic Development,Economic Development +425003,Economic Development,Economic Development +425001,Economic Development,Economic Development +424985,Economic Development,Economic Development +422962,Economic Development,Economic Development +422961,Economic Development,Economic Development +422960,Economic Development,Economic Development +422959,Economic Development,Economic Development +422958,Economic Development,Economic Development +422955,Economic Development,Economic Development +419310,Economic Development,Economic Development +419309,Economic Development,Economic Development +419308,Economic Development,Economic Development +419307,Economic Development,Economic Development +419305,Economic Development,Economic Development +419302,Economic Development,Economic Development +419301,Economic Development,Economic Development +411161,Economic Development,Economic Development +411160,Economic Development,Economic Development +411159,Economic Development,Economic Development +399756,Economic Development,Economic Development +399755,Economic Development,Economic Development +399754,Economic Development,Economic Development +399753,Economic Development,Economic Development +399752,Economic Development,Economic Development +388253,Economic Development,Economic Development +388249,Economic Development,Economic Development +388247,Economic Development,Economic Development +388243,Economic Development,Economic Development +388236,Economic Development,Economic Development +388230,Economic Development,Economic Development +388226,Economic Development,Economic Development +537923,Economic Development,Economic Development +537922,Economic Development,Economic Development +533107,Economic Development,Economic Development +533106,Economic Development,Economic Development +527610,Economic Development,Economic Development +527609,Economic Development,Economic Development +510270,Economic Development,Economic Development +509441,Economic Development,Economic Development +506798,Economic Development,Economic Development +503797,Economic Development,Economic Development +494487,Economic Development,Economic Development +472313,Economic Development,Economic Development +472312,Economic Development,Economic Development +472310,Economic Development,Economic Development +472308,Economic Development,Economic Development +527610,Energy,Energy +527609,Energy,Energy +388253,Energy,Energy +388249,Energy,Energy +388247,Energy,Energy +388243,Energy,Energy +388236,Energy,Energy +388230,Energy,Energy +388226,Energy,Energy +510270,Energy,Energy +509441,Energy,Energy +506798,Energy,Energy +503797,Energy,Energy +494487,Energy,Energy +472313,Energy,Energy +472312,Energy,Energy +472310,Energy,Energy +472308,Energy,Energy +422962,Energy,Energy +419310,Energy,Energy +419309,Energy,Energy +419308,Energy,Energy +419307,Energy,Energy +419305,Energy,Energy +419302,Energy,Energy +419301,Energy,Energy +537923,Energy,Energy +537922,Energy,Energy +533107,Energy,Energy +503797,Environment,Environment +494487,Environment,Environment +388253,Environment,Environment +388249,Environment,Environment +388247,Environment,Environment +388243,Environment,Environment +388236,Environment,Environment +388230,Environment,Environment +388226,Environment,Environment +443118,Environment,Environment +443117,Environment,Environment +435917,Environment,Environment +435909,Environment,Environment +433827,Environment,Environment +424985,Environment,Environment +422962,Environment,Environment +419310,Environment,Environment +419309,Environment,Environment +419308,Environment,Environment +419307,Environment,Environment +419305,Environment,Environment +419302,Environment,Environment +419301,Environment,Environment +533107,Environment,Environment +527610,Environment,Environment +527609,Environment,Environment +510270,Environment,Environment +419302,Regional Development,Regional Development +419301,Regional Development,Regional Development +425003,Regional Development,Regional Development +425001,Regional Development,Regional Development +422962,Regional Development,Regional Development +419310,Regional Development,Regional Development +419309,Regional Development,Regional Development +419308,Regional Development,Regional Development +419307,Regional Development,Regional Development +388226,Taxation and Finance,Taxation and Finance +533106,Taxation and Finance,Taxation and Finance +451683,Taxation and Finance,Taxation and Finance +451597,Taxation and Finance,Taxation and Finance +399756,Taxation and Finance,Taxation and Finance +399755,Taxation and Finance,Taxation and Finance +399754,Taxation and Finance,Taxation and Finance +399753,Taxation and Finance,Taxation and Finance +399752,Taxation and Finance,Taxation and Finance +388253,Taxation and Finance,Taxation and Finance +388249,Taxation and Finance,Taxation and Finance +388247,Taxation and Finance,Taxation and Finance +388243,Taxation and Finance,Taxation and Finance +388236,Taxation and Finance,Taxation and Finance +412603,Financial Institutions,Financial Institutions +412597,Financial Institutions,Financial Institutions +412593,Financial Institutions,Financial Institutions +442351,Financial Institutions,Financial Institutions +442329,Financial Institutions,Financial Institutions +411193,Transportation,Transportation +386961,Transportation,Transportation +511897,Transportation,Transportation +532935,Research and Development,Research and Development +509801,Research and Development,Research and Development +386599,Research and Development,Research and Development +449079,Research and Development,Research and Development +411083,Research and Development,Research and Development +411082,Research and Development,Research and Development +411081,Research and Development,Research and Development +411080,Research and Development,Research and Development +411079,Research and Development,Research and Development +411078,Research and Development,Research and Development +411077,Research and Development,Research and Development +411076,Research and Development,Research and Development +411038,Research and Development,Research and Development +545254,Research and Development,Research and Development +489858,Economic Development,Economic Development +489857,Economic Development,Economic Development +395268,Economic Development,Economic Development +395263,Economic Development,Economic Development +389604,Economic Development,Economic Development +389596,Economic Development,Economic Development +386746,Economic Development,Economic Development +470478,Economic Development,Economic Development +470476,Economic Development,Economic Development +470474,Economic Development,Economic Development +461522,Economic Development,Economic Development +461521,Economic Development,Economic Development +461512,Economic Development,Economic Development +460279,Economic Development,Economic Development +446566,Economic Development,Economic Development +444738,Economic Development,Economic Development +444737,Economic Development,Economic Development +431772,Economic Development,Economic Development +430251,Economic Development,Economic Development +430245,Economic Development,Economic Development +420996,Economic Development,Economic Development +419015,Economic Development,Economic Development +417530,Economic Development,Economic Development +538161,Economic Development,Economic Development +521922,Economic Development,Economic Development +521919,Economic Development,Economic Development +519401,Economic Development,Economic Development +514119,Economic Development,Economic Development +506560,Economic Development,Economic Development +494585,Economic Development,Economic Development +492383,Economic Development,Economic Development +489864,Economic Development,Economic Development +489863,Economic Development,Economic Development +392798,Housing,Housing +394437,Environment,Environment +392588,Environment,Environment +401996,Environment,Environment +401994,Environment,Environment +401993,Environment,Environment +401774,Environment,Environment +399808,Environment,Environment +398176,Environment,Environment +398175,Environment,Environment +395717,Environment,Environment +394447,Environment,Environment +401774,Fisheries,Fisheries +399808,Fisheries,Fisheries +401996,Fisheries,Fisheries +401994,Fisheries,Fisheries +389876,Mining,Mining +389857,Mining,Mining +401994,Mining,Mining +395717,Mining,Mining +394444,Mining,Mining +394441,Mining,Mining +394437,Mining,Mining +392657,Mining,Mining +392591,Mining,Mining +392590,Mining,Mining +392588,Mining,Mining +390026,Mining,Mining +386768,Infrastructure,Infrastructure +463104,Infrastructure,Infrastructure +411490,Infrastructure,Infrastructure +404849,Infrastructure,Infrastructure +404848,Infrastructure,Infrastructure +404847,Infrastructure,Infrastructure +404846,Infrastructure,Infrastructure +404844,Infrastructure,Infrastructure +404843,Infrastructure,Infrastructure +404841,Infrastructure,Infrastructure +404837,Infrastructure,Infrastructure +404836,Infrastructure,Infrastructure +404835,Infrastructure,Infrastructure +404834,Infrastructure,Infrastructure +404833,Infrastructure,Infrastructure +404831,Infrastructure,Infrastructure +404830,Infrastructure,Infrastructure +386770,Infrastructure,Infrastructure +393040,Environment,Environment +393036,Environment,Environment +424774,Environment,Environment +424772,Environment,Environment +424771,Environment,Environment +424770,Environment,Environment +424705,Environment,Environment +424704,Environment,Environment +418748,Environment,Environment +418719,Environment,Environment +418718,Environment,Environment +418717,Environment,Environment +418716,Environment,Environment +417106,Environment,Environment +407825,Environment,Environment +407680,Environment,Environment +407679,Environment,Environment +407677,Environment,Environment +401400,Environment,Environment +398000,Environment,Environment +397998,Environment,Environment +397996,Environment,Environment +397995,Environment,Environment +397994,Environment,Environment +397869,Environment,Environment +393043,Environment,Environment +407825,Research and Development,Research and Development +397996,Research and Development,Research and Development +393041,Research and Development,Research and Development +393040,Research and Development,Research and Development +424770,Research and Development,Research and Development +418719,Research and Development,Research and Development +407679,Climate,Climate +407677,Climate,Climate +398000,Climate,Climate +397998,Climate,Climate +397996,Climate,Climate +397995,Climate,Climate +397994,Climate,Climate +397869,Climate,Climate +393043,Climate,Climate +393041,Climate,Climate +393040,Climate,Climate +393036,Climate,Climate +424774,Climate,Climate +424772,Climate,Climate +424771,Climate,Climate +424770,Climate,Climate +424705,Climate,Climate +424704,Climate,Climate +418748,Climate,Climate +418719,Climate,Climate +418718,Climate,Climate +418717,Climate,Climate +418716,Climate,Climate +407825,Climate,Climate +407680,Employment and Training,Employment and Training +407679,Employment and Training,Employment and Training +398000,Employment and Training,Employment and Training +397998,Employment and Training,Employment and Training +397996,Employment and Training,Employment and Training +397995,Employment and Training,Employment and Training +397994,Employment and Training,Employment and Training +397870,Employment and Training,Employment and Training +393041,Employment and Training,Employment and Training +393040,Employment and Training,Employment and Training +424774,Employment and Training,Employment and Training +424772,Employment and Training,Employment and Training +424771,Employment and Training,Employment and Training +424705,Employment and Training,Employment and Training +418748,Employment and Training,Employment and Training +407677,Energy,Energy +401400,Energy,Energy +398000,Energy,Energy +397998,Energy,Energy +397996,Energy,Energy +397995,Energy,Energy +397994,Energy,Energy +397870,Energy,Energy +397869,Energy,Energy +393043,Energy,Energy +393041,Energy,Energy +393040,Energy,Energy +393036,Energy,Energy +424774,Energy,Energy +424772,Energy,Energy +424771,Energy,Energy +424770,Energy,Energy +424705,Energy,Energy +424704,Energy,Energy +418748,Energy,Energy +418719,Energy,Energy +418718,Energy,Energy +418717,Energy,Energy +418716,Energy,Energy +417106,Energy,Energy +413061,Energy,Energy +407825,Energy,Energy +407680,Energy,Energy +393040,Infrastructure,Infrastructure +393036,Infrastructure,Infrastructure +424774,Infrastructure,Infrastructure +424772,Infrastructure,Infrastructure +424771,Infrastructure,Infrastructure +424770,Infrastructure,Infrastructure +424705,Infrastructure,Infrastructure +424704,Infrastructure,Infrastructure +418748,Infrastructure,Infrastructure +418719,Infrastructure,Infrastructure +418718,Infrastructure,Infrastructure +418717,Infrastructure,Infrastructure +418716,Infrastructure,Infrastructure +407825,Infrastructure,Infrastructure +407680,Infrastructure,Infrastructure +407679,Infrastructure,Infrastructure +407677,Infrastructure,Infrastructure +401400,Infrastructure,Infrastructure +398000,Infrastructure,Infrastructure +397998,Infrastructure,Infrastructure +397996,Infrastructure,Infrastructure +397995,Infrastructure,Infrastructure +397994,Infrastructure,Infrastructure +397870,Infrastructure,Infrastructure +397869,Infrastructure,Infrastructure +393043,Infrastructure,Infrastructure +391297,Defence,Defence +391293,Defence,Defence +391311,Defence,Defence +391309,Defence,Defence +391307,Defence,Defence +391304,Defence,Defence +391302,Defence,Defence +391297,Forestry,Forestry +391293,Forestry,Forestry +391311,Forestry,Forestry +391309,Forestry,Forestry +391307,Forestry,Forestry +391304,Forestry,Forestry +391302,Forestry,Forestry +391297,Government Procurement,Government Procurement +391293,Government Procurement,Government Procurement +391311,Government Procurement,Government Procurement +391309,Government Procurement,Government Procurement +391307,Government Procurement,Government Procurement +391304,Government Procurement,Government Procurement +391302,Government Procurement,Government Procurement +413674,Agriculture,Agriculture +413667,Agriculture,Agriculture +447037,Agriculture,Agriculture +422003,Agriculture,Agriculture +421994,Agriculture,Agriculture +421993,Agriculture,Agriculture +421989,Agriculture,Agriculture +421985,Agriculture,Agriculture +412619,Financial Institutions,Financial Institutions +412618,Financial Institutions,Financial Institutions +412630,Financial Institutions,Financial Institutions +412627,Financial Institutions,Financial Institutions +389412,Climate,Climat +389412,Environment,Environnement +542454,Environment,Environnement +386879,Financial Institutions,Financial Institutions +524395,Financial Institutions,Financial Institutions +441092,Financial Institutions,Financial Institutions +387420,Economic Development,Développement économique +394813,Environment,Environment +394809,Environment,Environment +394817,Environment,Environment +394810,Infrastructure,Infrastructure +394809,Infrastructure,Infrastructure +394817,Infrastructure,Infrastructure +394814,Infrastructure,Infrastructure +390087,Transportation,Transportation +390085,Transportation,Transportation +390091,Transportation,Transportation +424771,Internal Trade,Internal Trade +424770,Internal Trade,Internal Trade +418748,Internal Trade,Internal Trade +418719,Internal Trade,Internal Trade +407825,Internal Trade,Internal Trade +407680,Internal Trade,Internal Trade +407679,Internal Trade,Internal Trade +407677,Internal Trade,Internal Trade +398000,Internal Trade,Internal Trade +397998,Internal Trade,Internal Trade +397996,Internal Trade,Internal Trade +397995,Internal Trade,Internal Trade +397994,Internal Trade,Internal Trade +397869,Internal Trade,Internal Trade +393043,Internal Trade,Internal Trade +393041,Internal Trade,Internal Trade +393040,Internal Trade,Internal Trade +442122,Financial Institutions,Financial Institutions +442121,Financial Institutions,Financial Institutions +413004,Financial Institutions,Financial Institutions +458926,Consumer Issues,Consumer Issues +458672,Consumer Issues,Consumer Issues +444561,Consumer Issues,Consumer Issues +436239,Consumer Issues,Consumer Issues +387013,Consumer Issues,Consumer Issues +445361,Consumer Issues,Consumer Issues +387014,Consumer Issues,Consumer Issues +505454,Consumer Issues,Consumer Issues +458671,Consumer Issues,Consumer Issues +458668,Consumer Issues,Consumer Issues +452142,Consumer Issues,Consumer Issues +452091,Consumer Issues,Consumer Issues +387015,Consumer Issues,Consumer Issues +482306,Consumer Issues,Consumer Issues +458927,Consumer Issues,Consumer Issues +458667,Consumer Issues,Consumer Issues +451784,Consumer Issues,Consumer Issues +448447,Consumer Issues,Consumer Issues +448445,Consumer Issues,Consumer Issues +445353,Consumer Issues,Consumer Issues +444562,Consumer Issues,Consumer Issues +401209,Energy,Energy +401206,Energy,Energy +396829,Energy,Energy +387021,Energy,Energy +484965,Energy,Energy +408322,Energy,Energy +401213,Energy,Energy +484965,Regional Development,Regional Development +482307,Regional Development,Regional Development +408322,Regional Development,Regional Development +401213,Regional Development,Regional Development +401211,Regional Development,Regional Development +401209,Regional Development,Regional Development +401206,Regional Development,Regional Development +396831,Regional Development,Regional Development +482307,Research and Development,Research and Development +443327,Research and Development,Research and Development +408322,Research and Development,Research and Development +401213,Research and Development,Research and Development +401211,Research and Development,Research and Development +396831,Research and Development,Research and Development +387022,Transportation,Transportation +484965,Transportation,Transportation +401211,Transportation,Transportation +390503,Transportation,Transports +390536,Transportation,Transports +390534,Transportation,Transports +390532,Transportation,Transports +390530,Transportation,Transports +390528,Transportation,Transports +390527,Transportation,Transports +390525,Transportation,Transports +390522,Transportation,Transports +390518,Transportation,Transports +390516,Transportation,Transports +390513,Transportation,Transports +489692,Sports,Sports +488617,Sports,Sports +395641,Sports,Sports +395636,Sports,Sports +387087,Sports,Sports +466655,Sports,Sports +466654,Sports,Sports +466652,Sports,Sports +463367,Sports,Sports +463300,Sports,Sports +463299,Sports,Sports +463297,Sports,Sports +458213,Sports,Sports +457100,Sports,Sports +457099,Sports,Sports +457098,Sports,Sports +447109,Sports,Sports +447108,Sports,Sports +447107,Sports,Sports +447105,Sports,Sports +445103,Sports,Sports +445100,Sports,Sports +443345,Sports,Sports +442883,Sports,Sports +442882,Sports,Sports +437974,Sports,Sports +426363,Sports,Sports +418983,Sports,Sports +413287,Sports,Sports +406999,Sports,Sports +406994,Sports,Sports +543064,Sports,Sports +514508,Sports,Sports +509697,Sports,Sports +507183,Sports,Sports +503541,Sports,Sports +503540,Sports,Sports +503539,Sports,Sports +500566,Sports,Sports +497278,Sports,Sports +390565,Economic Development,Economic Development +390562,Economic Development,Economic Development +431375,Economic Development,Economic Development +416976,Economic Development,Economic Development +416975,Economic Development,Economic Development +411960,Economic Development,Economic Development +406556,Economic Development,Economic Development +405146,Economic Development,Economic Development +405145,Economic Development,Economic Development +405144,Economic Development,Economic Development +405143,Economic Development,Economic Development +405142,Economic Development,Economic Development +405141,Economic Development,Economic Development +405140,Economic Development,Economic Development +405139,Economic Development,Economic Development +400497,Economic Development,Economic Development +400496,Economic Development,Economic Development +400495,Economic Development,Economic Development +400493,Economic Development,Economic Development +400492,Economic Development,Economic Development +400491,Economic Development,Economic Development +390628,Economic Development,Economic Development +390609,Economic Development,Economic Development +390605,Economic Development,Economic Development +390591,Economic Development,Economic Development +400492,Employment and Training,Employment and Training +400491,Employment and Training,Employment and Training +390628,Employment and Training,Employment and Training +390609,Employment and Training,Employment and Training +390591,Employment and Training,Employment and Training +390565,Employment and Training,Employment and Training +390562,Employment and Training,Employment and Training +406556,Employment and Training,Employment and Training +405146,Employment and Training,Employment and Training +405145,Employment and Training,Employment and Training +405144,Employment and Training,Employment and Training +405143,Employment and Training,Employment and Training +405142,Employment and Training,Employment and Training +405141,Employment and Training,Employment and Training +405140,Employment and Training,Employment and Training +405139,Employment and Training,Employment and Training +400497,Employment and Training,Employment and Training +400496,Employment and Training,Employment and Training +400495,Employment and Training,Employment and Training +390580,Energy,Energy +390565,Energy,Energy +406556,Energy,Energy +405146,Energy,Energy +405145,Energy,Energy +405144,Energy,Energy +405143,Energy,Energy +405142,Energy,Energy +405141,Energy,Energy +405140,Energy,Energy +405139,Energy,Energy +400497,Energy,Energy +400496,Energy,Energy +400495,Energy,Energy +400493,Energy,Energy +400492,Energy,Energy +400491,Energy,Energy +390628,Energy,Energy +390609,Energy,Energy +400492,Environment,Environment +400491,Environment,Environment +390628,Environment,Environment +390609,Environment,Environment +390591,Environment,Environment +390565,Environment,Environment +406556,Environment,Environment +405146,Environment,Environment +405145,Environment,Environment +405144,Environment,Environment +405143,Environment,Environment +405142,Environment,Environment +405141,Environment,Environment +405140,Environment,Environment +405139,Environment,Environment +400497,Environment,Environment +400496,Environment,Environment +400495,Environment,Environment +400493,Housing,Housing +400492,Housing,Housing +390591,Housing,Housing +390565,Housing,Housing +416976,Housing,Housing +405146,Housing,Housing +405145,Housing,Housing +405144,Housing,Housing +405143,Housing,Housing +405142,Housing,Housing +405141,Housing,Housing +405140,Housing,Housing +456355,Agriculture,Agriculture +455349,Agriculture,Agriculture +437450,Agriculture,Agriculture +428458,Agriculture,Agriculture +427573,Agriculture,Agriculture +425225,Agriculture,Agriculture +424936,Agriculture,Agriculture +422705,Agriculture,Agriculture +422618,Agriculture,Agriculture +410498,Agriculture,Agriculture +408699,Agriculture,Agriculture +408306,Agriculture,Agriculture +407645,Agriculture,Agriculture +407410,Agriculture,Agriculture +407173,Agriculture,Agriculture +406285,Agriculture,Agriculture +406276,Agriculture,Agriculture +406162,Agriculture,Agriculture +406060,Agriculture,Agriculture +406059,Agriculture,Agriculture +403944,Agriculture,Agriculture +401377,Agriculture,Agriculture +397289,Agriculture,Agriculture +394647,Agriculture,Agriculture +394645,Agriculture,Agriculture +390188,Agriculture,Agriculture +389531,Agriculture,Agriculture +389528,Agriculture,Agriculture +389527,Agriculture,Agriculture +388735,Agriculture,Agriculture +388734,Agriculture,Agriculture +388732,Agriculture,Agriculture +499932,Agriculture,Agriculture +489728,Agriculture,Agriculture +473959,Agriculture,Agriculture +473950,Agriculture,Agriculture +471841,Agriculture,Agriculture +471580,Agriculture,Agriculture +470196,Agriculture,Agriculture +468933,Agriculture,Agriculture +468834,Agriculture,Agriculture +463493,Agriculture,Agriculture +463492,Agriculture,Agriculture +468933,International Trade,International Trade +468834,International Trade,International Trade +463493,International Trade,International Trade +463492,International Trade,International Trade +455349,International Trade,International Trade +437450,International Trade,International Trade +434166,International Trade,International Trade +429477,International Trade,International Trade +428458,International Trade,International Trade +427573,International Trade,International Trade +424936,International Trade,International Trade +422705,International Trade,International Trade +422618,International Trade,International Trade +418623,International Trade,International Trade +410498,International Trade,International Trade +408699,International Trade,International Trade +408306,International Trade,International Trade +407645,International Trade,International Trade +407410,International Trade,International Trade +407173,International Trade,International Trade +406285,International Trade,International Trade +406276,International Trade,International Trade +406162,International Trade,International Trade +406060,International Trade,International Trade +406059,International Trade,International Trade +403944,International Trade,International Trade +401377,International Trade,International Trade +397289,International Trade,International Trade +394645,International Trade,International Trade +390188,International Trade,International Trade +389531,International Trade,International Trade +389528,International Trade,International Trade +389527,International Trade,International Trade +388735,International Trade,International Trade +388734,International Trade,International Trade +388732,International Trade,International Trade +482805,International Trade,International Trade +395028,Transportation,Transportation +395027,Transportation,Transportation +414287,Transportation,Transportation +395027,Infrastructure,Infrastructure +395026,Infrastructure,Infrastructure +414287,Infrastructure,Infrastructure +414104,Infrastructure,Infrastructure +544292,Security,Security +433588,Security,Security +398908,Security,Security +471282,Industry,Industry +471281,Industry,Industry +404352,Industry,Industry +404351,Industry,Industry +404350,Industry,Industry +404349,Industry,Industry +404348,Industry,Industry +404347,Industry,Industry +404346,Industry,Industry +404345,Industry,Industry +404344,Industry,Industry +404343,Industry,Industry +401663,Industry,Industry +401662,Industry,Industry +401661,Industry,Industry +401660,Industry,Industry +471280,Industry,Industry +471279,Industry,Industry +471277,Industry,Industry +460315,Industry,Industry +484033,Industry,Industry +484029,Industry,Industry +471278,Energy,Energy +460315,Energy,Energy +404352,Energy,Energy +404351,Energy,Energy +404350,Energy,Energy +404348,Energy,Energy +404346,Energy,Energy +404343,Energy,Energy +401663,Energy,Energy +401662,Energy,Energy +401661,Energy,Energy +392264,Transportation,Transportation +390025,Transportation,Transportation +392265,Environment,Environment +392264,Environment,Environment +390025,Environment,Environment +387263,Government Procurement,Government Procurement +388046,Taxation and Finance,Taxation and Finance +479686,Taxation and Finance,Taxation and Finance +412536,Taxation and Finance,Taxation and Finance +412535,Taxation and Finance,Taxation and Finance +412533,Taxation and Finance,Taxation and Finance +412532,Taxation and Finance,Taxation and Finance +412531,Taxation and Finance,Taxation and Finance +411923,Taxation and Finance,Taxation and Finance +388056,Taxation and Finance,Taxation and Finance +388054,Taxation and Finance,Taxation and Finance +388052,Taxation and Finance,Taxation and Finance +393040,Economic Development,Economic Development +393036,Economic Development,Economic Development +424774,Economic Development,Economic Development +424772,Economic Development,Economic Development +424771,Economic Development,Economic Development +424770,Economic Development,Economic Development +424705,Economic Development,Economic Development +424704,Economic Development,Economic Development +418748,Economic Development,Economic Development +418719,Economic Development,Economic Development +418718,Economic Development,Economic Development +418717,Economic Development,Economic Development +418716,Economic Development,Economic Development +413061,Economic Development,Economic Development +407825,Economic Development,Economic Development +407680,Economic Development,Economic Development +407679,Economic Development,Economic Development +407677,Economic Development,Economic Development +401400,Economic Development,Economic Development +398000,Economic Development,Economic Development +397998,Economic Development,Economic Development +397996,Economic Development,Economic Development +397995,Economic Development,Economic Development +397994,Economic Development,Economic Development +397870,Economic Development,Economic Development +397869,Economic Development,Economic Development +393043,Economic Development,Economic Development +397995,International Trade,International Trade +397994,International Trade,International Trade +397870,International Trade,International Trade +397869,International Trade,International Trade +393043,International Trade,International Trade +393041,International Trade,International Trade +393040,International Trade,International Trade +393036,International Trade,International Trade +418719,International Trade,International Trade +407825,International Trade,International Trade +407677,International Trade,International Trade +398000,International Trade,International Trade +397998,International Trade,International Trade +455102,Immigration,Immigration +455097,Immigration,Immigration +401843,Immigration,Immigration +401841,Immigration,Immigration +397601,Immigration,Immigration +397600,Immigration,Immigration +391110,Immigration,Immigration +387640,Immigration,Immigration +387633,Immigration,Immigration +468098,Immigration,Immigration +396081,Health,Health +396081,Justice and Law Enforcement,Justice and Law Enforcement +387469,Small Business,Small Business +391038,Small Business,Small Business +391036,Small Business,Small Business +387471,Small Business,Small Business +387472,Small Business,Small Business +387474,Small Business,Small Business +391046,Small Business,Small Business +387475,Small Business,Small Business +391051,Small Business,Small Business +391050,Small Business,Small Business +387476,Small Business,Small Business +391061,Small Business,Small Business +387478,Small Business,Small Business +391055,Small Business,Small Business +387479,Small Business,Small Business +391062,Small Business,Small Business +387480,Small Business,Small Business +387482,Small Business,Small Business +391065,Small Business,Small Business +387483,Small Business,Small Business +391072,Small Business,Small Business +391071,Small Business,Small Business +391069,Small Business,Small Business +391039,Small Business,Small Business +387484,Small Business,Small Business +387485,Small Business,Small Business +391041,Small Business,Small Business +387486,Small Business,Small Business +391044,Small Business,Small Business +387487,Small Business,Small Business +387487,International Trade,International Trade +387488,Small Business,Small Business +387489,Small Business,Small Business +387490,Small Business,Small Business +387491,Small Business,Small Business +387492,Small Business,Small Business +387493,Small Business,Small Business +387494,Small Business,Small Business +427650,Economic Development,Economic Development +427649,Economic Development,Economic Development +401078,Economic Development,Economic Development +389816,Economic Development,Economic Development +389815,Economic Development,Economic Development +389814,Economic Development,Economic Development +389813,Economic Development,Economic Development +389812,Economic Development,Economic Development +402392,Infrastructure,Infrastructure +402391,Infrastructure,Infrastructure +404806,Infrastructure,Infrastructure +404805,Infrastructure,Infrastructure +404804,Infrastructure,Infrastructure +404803,Infrastructure,Infrastructure +404802,Infrastructure,Infrastructure +402981,Infrastructure,Infrastructure +402970,Infrastructure,Infrastructure +402952,Infrastructure,Infrastructure +402610,Infrastructure,Infrastructure +402451,Infrastructure,Infrastructure +402409,Infrastructure,Infrastructure +402408,Infrastructure,Infrastructure +402407,Infrastructure,Infrastructure +402406,Infrastructure,Infrastructure +402405,Infrastructure,Infrastructure +402404,Infrastructure,Infrastructure +402403,Infrastructure,Infrastructure +402402,Infrastructure,Infrastructure +402401,Infrastructure,Infrastructure +402400,Infrastructure,Infrastructure +402399,Infrastructure,Infrastructure +402398,Infrastructure,Infrastructure +402397,Infrastructure,Infrastructure +402396,Infrastructure,Infrastructure +402395,Infrastructure,Infrastructure +402394,Infrastructure,Infrastructure +419359,International Trade,International Trade +417265,International Trade,International Trade +412050,International Trade,International Trade +412040,International Trade,International Trade +412037,International Trade,International Trade +406671,International Trade,International Trade +406670,International Trade,International Trade +401843,International Trade,International Trade +401841,International Trade,International Trade +399743,International Trade,International Trade +397601,International Trade,International Trade +397600,International Trade,International Trade +391115,International Trade,International Trade +391110,International Trade,International Trade +391105,International Trade,International Trade +515991,International Trade,International Trade +468104,International Trade,International Trade +468103,International Trade,International Trade +468102,International Trade,International Trade +468101,International Trade,International Trade +468100,International Trade,International Trade +468099,International Trade,International Trade +468098,International Trade,International Trade +468097,International Trade,International Trade +455102,International Trade,International Trade +455097,International Trade,International Trade +395779,Employment and Training,Employment and Training +395778,Employment and Training,Employment and Training +395777,Employment and Training,Employment and Training +388464,Employment and Training,Employment and Training +388456,Employment and Training,Employment and Training +388451,Employment and Training,Employment and Training +388446,Employment and Training,Employment and Training +403375,Employment and Training,Employment and Training +395803,Employment and Training,Employment and Training +388984,Economic Development,Economic Development +388983,Economic Development,Economic Development +405952,Economic Development,Economic Development +393519,Economic Development,Economic Development +393517,Economic Development,Economic Development +393514,Economic Development,Economic Development +393512,Economic Development,Economic Development +393511,Economic Development,Economic Development +389646,Economic Development,Economic Development +389645,Economic Development,Economic Development +388986,Economic Development,Economic Development +388984,Health,Health +388983,Health,Health +393519,Health,Health +393517,Health,Health +393514,Health,Health +393512,Health,Health +393511,Health,Health +389646,Health,Health +389645,Health,Health +388986,Health,Health +388983,Industry,Industry +398377,Industry,Industry +393519,Industry,Industry +393517,Industry,Industry +393514,Industry,Industry +393512,Industry,Industry +393511,Industry,Industry +389646,Industry,Industry +389645,Industry,Industry +388986,Industry,Industry +388985,Industry,Industry +388984,Research and Development,Research and Development +388983,Research and Development,Research and Development +405952,Research and Development,Research and Development +387815,Budget,Budget +387793,Budget,Budget +417284,Budget,Budget +417282,Budget,Budget +417280,Budget,Budget +417276,Budget,Budget +417275,Budget,Budget +417273,Budget,Budget +417271,Budget,Budget +410329,Budget,Budget +387965,Budget,Budget +387838,Budget,Budget +387829,Budget,Budget +405874,Taxation and Finance,Taxation and Finance +405873,Taxation and Finance,Taxation and Finance +391615,Taxation and Finance,Taxation and Finance +391614,Taxation and Finance,Taxation and Finance +391613,Taxation and Finance,Taxation and Finance +391612,Taxation and Finance,Taxation and Finance +391610,Taxation and Finance,Taxation and Finance +391607,Taxation and Finance,Taxation and Finance +391604,Taxation and Finance,Taxation and Finance +391602,Taxation and Finance,Taxation and Finance +391598,Taxation and Finance,Taxation and Finance +387965,Taxation and Finance,Taxation and Finance +387838,Taxation and Finance,Taxation and Finance +387829,Taxation and Finance,Taxation and Finance +387820,Taxation and Finance,Taxation and Finance +387815,Taxation and Finance,Taxation and Finance +387793,Taxation and Finance,Taxation and Finance +406136,Taxation and Finance,Taxation and Finance +405884,Taxation and Finance,Taxation and Finance +405883,Taxation and Finance,Taxation and Finance +405882,Taxation and Finance,Taxation and Finance +405880,Taxation and Finance,Taxation and Finance +405878,Taxation and Finance,Taxation and Finance +405876,Taxation and Finance,Taxation and Finance +388832,Infrastructure,Infrastructure +421549,Infrastructure,Infrastructure +410744,Infrastructure,Infrastructure +402218,Infrastructure,Infrastructure +395421,Infrastructure,Infrastructure +391777,Infrastructure,Infrastructure +389730,Infrastructure,Infrastructure +499062,International Relations,International Relations +478059,International Relations,International Relations +430912,International Relations,International Relations +416749,International Relations,International Relations +405133,International Relations,International Relations +403475,International Relations,International Relations +403463,International Relations,International Relations +403461,International Relations,International Relations +398763,International Relations,International Relations +398762,International Relations,International Relations +398759,International Relations,International Relations +398728,International Relations,International Relations +394327,International Relations,International Relations +388002,Infrastructure,Infrastructure +388011,Economic Development,Economic Development +388007,Economic Development,Economic Development +445791,Economic Development,Economic Development +413859,Economic Development,Economic Development +388018,Economic Development,Economic Development +388015,Economic Development,Economic Development +534082,Sports,Sports +510829,Sports,Sports +472597,Sports,Sports +472594,Sports,Sports +427690,Sports,Sports +403426,Sports,Sports +392633,Sports,Sports +392612,Sports,Sports +392607,Sports,Sports +389948,Sports,Sports +389947,Sports,Sports +429099,Religion,Religion +399621,Religion,Religion +388850,Religion,Religion +392810,Research and Development,Research and Development +471043,Research and Development,Research and Development +388093,Research and Development,Research and Development +388108,Research and Development,Research and Development +421606,Research and Development,Research and Development +391128,Research and Development,Research and Development +388112,Research and Development,Research and Development +394268,Research and Development,Research and Development +471022,Research and Development,Research and Development +499244,Budget,Budget +499240,Budget,Budget +390886,Budget,Budget +390883,Budget,Budget +390881,Budget,Budget +390877,Budget,Budget +390874,Budget,Budget +390867,Budget,Budget +390860,Budget,Budget +424854,Budget,Budget +405180,Budget,Budget +499275,Budget,Budget +499263,Budget,Budget +499256,Budget,Budget +390881,Defence,Defence +390877,Defence,Defence +390874,Economic Development,Economic Development +390867,Economic Development,Economic Development +417274,Economic Development,Economic Development +405180,Economic Development,Economic Development +390886,Economic Development,Economic Development +390883,Economic Development,Economic Development +390881,Economic Development,Economic Development +515467,Financial Institutions,Financial Institutions +514526,Financial Institutions,Financial Institutions +390874,Financial Institutions,Financial Institutions +538244,Financial Institutions,Financial Institutions +492581,Health,Health +492579,Health,Health +466245,Health,Health +466243,Health,Health +461216,Health,Health +458426,Health,Health +457171,Health,Health +449025,Health,Health +448628,Health,Health +442833,Health,Health +390886,Health,Health +390883,Health,Health +390867,Health,Health +390860,Health,Health +388290,Health,Health +388285,Health,Health +539799,Health,Health +539798,Health,Health +539797,Health,Health +539796,Health,Health +538253,Health,Health +538244,Health,Health +538241,Health,Health +538240,Health,Health +538237,Health,Health +538234,Health,Health +538232,Health,Health +538227,Health,Health +535613,Health,Health +535609,Health,Health +535603,Health,Health +535600,Health,Health +535595,Health,Health +535592,Health,Health +532463,Health,Health +528978,Health,Health +526525,Health,Health +526524,Health,Health +526523,Health,Health +526522,Health,Health +526521,Health,Health +526520,Health,Health +526519,Health,Health +526518,Health,Health +526517,Health,Health +526514,Health,Health +526512,Health,Health +526441,Health,Health +526434,Health,Health +523105,Health,Health +523089,Health,Health +523084,Health,Health +523080,Health,Health +523078,Health,Health +523075,Health,Health +523073,Health,Health +523070,Health,Health +523066,Health,Health +523065,Health,Health +523061,Health,Health +520140,Health,Health +520139,Health,Health +520138,Health,Health +515473,Health,Health +512122,Health,Health +512120,Health,Health +510735,Health,Health +510729,Health,Health +510713,Health,Health +508104,Health,Health +505583,Health,Health +505581,Health,Health +505579,Health,Health +505574,Health,Health +466245,International Development,International Development +466243,International Development,International Development +390886,International Development,International Development +390883,International Development,International Development +390881,International Development,International Development +390877,International Development,International Development +390874,International Development,International Development +390867,International Development,International Development +390860,International Development,International Development +388307,International Development,International Development +388290,International Development,International Development +388285,International Development,International Development +462947,International Development,International Development +462313,International Development,International Development +461216,International Development,International Development +458426,International Development,International Development +457171,International Development,International Development +449025,International Development,International Development +448628,International Development,International Development +442835,International Development,International Development +442834,International Development,International Development +442833,International Development,International Development +431386,International Development,International Development +424854,International Development,International Development +417274,International Development,International Development +408641,International Development,International Development +408640,International Development,International Development +408639,International Development,International Development +406116,International Development,International Development +405180,International Development,International Development +405178,International Development,International Development +402521,International Development,International Development +539799,International Development,International Development +539798,International Development,International Development +539797,International Development,International Development +539796,International Development,International Development +538253,International Development,International Development +538244,International Development,International Development +538241,International Development,International Development +538240,International Development,International Development +538237,International Development,International Development +538234,International Development,International Development +538232,International Development,International Development +538227,International Development,International Development +535613,International Development,International Development +535609,International Development,International Development +535603,International Development,International Development +535600,International Development,International Development +535595,International Development,International Development +535592,International Development,International Development +532463,International Development,International Development +532462,International Development,International Development +532461,International Development,International Development +528978,International Development,International Development +526525,International Development,International Development +526524,International Development,International Development +526523,International Development,International Development +526522,International Development,International Development +526521,International Development,International Development +526520,International Development,International Development +526519,International Development,International Development +526518,International Development,International Development +526517,International Development,International Development +526514,International Development,International Development +526512,International Development,International Development +526441,International Development,International Development +526434,International Development,International Development +523105,International Development,International Development +523089,International Development,International Development +523084,International Development,International Development +523080,International Development,International Development +523078,International Development,International Development +523075,International Development,International Development +523073,International Development,International Development +523070,International Development,International Development +523066,International Development,International Development +523065,International Development,International Development +523061,International Development,International Development +520140,International Development,International Development +520139,International Development,International Development +520138,International Development,International Development +515473,International Development,International Development +515467,International Development,International Development +514526,International Development,International Development +512122,International Development,International Development +512120,International Development,International Development +510740,International Development,International Development +510735,International Development,International Development +510729,International Development,International Development +510713,International Development,International Development +510708,International Development,International Development +508104,International Development,International Development +505583,International Development,International Development +505581,International Development,International Development +505579,International Development,International Development +505574,International Development,International Development +501881,International Development,International Development +499275,International Development,International Development +499263,International Development,International Development +499256,International Development,International Development +499250,International Development,International Development +499244,International Development,International Development +499240,International Development,International Development +499235,International Development,International Development +492583,International Development,International Development +492581,International Development,International Development +492580,International Development,International Development +492579,International Development,International Development +491347,International Development,International Development +487239,International Development,International Development +483966,International Development,International Development +483963,International Development,International Development +483962,International Development,International Development +483959,International Development,International Development +479130,International Development,International Development +476788,International Development,International Development +476786,International Development,International Development +475848,International Development,International Development +475844,International Development,International Development +475821,International Development,International Development +472941,International Development,International Development +472935,International Development,International Development +472932,International Development,International Development +472926,International Development,International Development +472904,International Development,International Development +472900,International Development,International Development +472898,International Development,International Development +448628,International Relations,International Relations +424854,International Relations,International Relations +417274,International Relations,International Relations +408641,International Relations,International Relations +408640,International Relations,International Relations +408639,International Relations,International Relations +405180,International Relations,International Relations +402521,International Relations,International Relations +390886,International Relations,International Relations +390883,International Relations,International Relations +390881,International Relations,International Relations +390877,International Relations,International Relations +390874,International Relations,International Relations +390867,International Relations,International Relations +390860,International Relations,International Relations +388307,International Relations,International Relations +388290,International Relations,International Relations +388285,International Relations,International Relations +510236,Security,Security +510235,Security,Security +418249,Security,Security +418242,Security,Security +418235,Security,Security +418232,Security,Security +418228,Security,Security +415786,Security,Security +415785,Security,Security +415784,Security,Security +414018,Security,Security +388185,Security,Security +492524,Security,Security +492519,Security,Security +458467,Security,Security +454757,Security,Security +447979,Security,Security +447975,Security,Security +447949,Security,Security +526087,Security,Security +512580,Security,Security +391949,Government Procurement,Government Procurement +438818,Budget,Budget +438813,Budget,Budget +422401,Budget,Budget +422389,Budget,Budget +416693,Budget,Budget +416670,Budget,Budget +413493,Budget,Budget +409947,Budget,Budget +409944,Budget,Budget +409942,Budget,Budget +409940,Budget,Budget +409939,Budget,Budget +409937,Budget,Budget +403955,Budget,Budget +403952,Budget,Budget +403914,Budget,Budget +403913,Budget,Budget +403907,Budget,Budget +403905,Budget,Budget +401034,Budget,Budget +401033,Budget,Budget +401032,Budget,Budget +401030,Budget,Budget +401029,Budget,Budget +401027,Budget,Budget +401025,Budget,Budget +399023,Budget,Budget +399022,Budget,Budget +399021,Budget,Budget +399020,Budget,Budget +399019,Budget,Budget +399018,Budget,Budget +399017,Budget,Budget +399015,Budget,Budget +399014,Budget,Budget +399013,Budget,Budget +399012,Budget,Budget +397240,Budget,Budget +397063,Budget,Budget +397061,Budget,Budget +397060,Budget,Budget +397054,Budget,Budget +397051,Budget,Budget +397048,Budget,Budget +397047,Budget,Budget +397046,Budget,Budget +397044,Budget,Budget +397042,Budget,Budget +397039,Budget,Budget +397037,Budget,Budget +394500,Budget,Budget +392340,Budget,Budget +391574,Budget,Budget +391573,Budget,Budget +391569,Budget,Budget +391568,Budget,Budget +391567,Budget,Budget +391566,Budget,Budget +391565,Budget,Budget +391563,Budget,Budget +391561,Budget,Budget +391560,Budget,Budget +391559,Budget,Budget +391558,Budget,Budget +388452,Budget,Budget +388450,Budget,Budget +388444,Budget,Budget +388439,Budget,Budget +388435,Budget,Budget +388432,Budget,Budget +388316,Budget,Budget +438869,Budget,Budget +438865,Budget,Budget +438864,Budget,Budget +438862,Budget,Budget +438861,Budget,Budget +438831,Budget,Budget +438829,Budget,Budget +438828,Budget,Budget +438827,Budget,Budget +533401,Small Business,Small Business +530587,Small Business,Small Business +416814,Small Business,Small Business +414029,Small Business,Small Business +413084,Small Business,Small Business +393221,Small Business,Small Business +388594,Small Business,Small Business +388608,Budget,Budget +388920,Transportation,Transportation +390435,Education,Education +390432,Education,Education +390435,Health,Health +390432,Health,Health +388630,Infrastructure,Infrastructure +388627,Infrastructure,Infrastructure +404665,Transportation,Transportation +389820,Transportation,Transportation +389819,Transportation,Transportation +389818,Transportation,Transportation +389817,Transportation,Transportation +404769,Transportation,Transportation +404768,Transportation,Transportation +404767,Transportation,Transportation +404766,Transportation,Transportation +404765,Transportation,Transportation +404694,Transportation,Transportation +404693,Transportation,Transportation +404692,Transportation,Transportation +404691,Transportation,Transportation +404690,Transportation,Transportation +404687,Transportation,Transportation +404686,Transportation,Transportation +404685,Transportation,Transportation +404684,Transportation,Transportation +404682,Transportation,Transportation +404681,Transportation,Transportation +404680,Transportation,Transportation +404679,Transportation,Transportation +404678,Transportation,Transportation +404677,Transportation,Transportation +404676,Transportation,Transportation +404674,Transportation,Transportation +404673,Transportation,Transportation +404672,Transportation,Transportation +404670,Transportation,Transportation +404669,Transportation,Transportation +404668,Transportation,Transportation +391539,International Trade,International Trade +391536,International Trade,International Trade +392652,International Trade,International Trade +392461,Economic Development,Economic Development +388721,Economic Development,Economic Development +393684,Economic Development,Economic Development +393682,Economic Development,Economic Development +396078,Economic Development,Economic Development +396077,Economic Development,Economic Development +396076,Economic Development,Economic Development +396074,Economic Development,Economic Development +393684,Infrastructure,Infrastructure +393682,Infrastructure,Infrastructure +396078,Infrastructure,Infrastructure +396077,Infrastructure,Infrastructure +396076,Infrastructure,Infrastructure +396074,Infrastructure,Infrastructure +393684,Transportation,Transportation +393682,Transportation,Transportation +396078,Transportation,Transportation +396077,Transportation,Transportation +396076,Transportation,Transportation +396074,Transportation,Transportation +388727,Constitutional Issues,Constitutional Issues +388726,Health,Health +388840,Health,Health +388838,Health,Health +388728,Health,Health +388840,Labour,Labour +388838,Labour,Labour +393668,Economic Development,Economic Development +393667,Economic Development,Economic Development +393673,Economic Development,Economic Development +393672,Economic Development,Economic Development +393671,Economic Development,Economic Development +393668,Health,Health +393667,Health,Health +410409,Health,Health +410408,Health,Health +393673,Health,Health +393672,Health,Health +393671,Health,Health +388973,Housing,Housing +388972,Housing,Housing +418624,Housing,Housing +410409,Housing,Housing +410408,Housing,Housing +393673,Housing,Housing +393672,Housing,Housing +393671,Housing,Housing +393670,Housing,Housing +393668,Housing,Housing +393668,Immigration,Immigration +393667,Immigration,Immigration +393673,Immigration,Immigration +393672,Immigration,Immigration +393671,Immigration,Immigration +393668,Infrastructure,Infrastructure +393667,Infrastructure,Infrastructure +388973,Infrastructure,Infrastructure +388972,Infrastructure,Infrastructure +418624,Infrastructure,Infrastructure +410409,Infrastructure,Infrastructure +410408,Infrastructure,Infrastructure +393673,Infrastructure,Infrastructure +393672,Infrastructure,Infrastructure +393671,Infrastructure,Infrastructure +402660,Government Procurement,Government Procurement +402659,Government Procurement,Government Procurement +398230,Government Procurement,Government Procurement +398228,Government Procurement,Government Procurement +398227,Government Procurement,Government Procurement +398226,Government Procurement,Government Procurement +398225,Government Procurement,Government Procurement +398183,Government Procurement,Government Procurement +398181,Government Procurement,Government Procurement +398180,Government Procurement,Government Procurement +398178,Government Procurement,Government Procurement +396038,Government Procurement,Government Procurement +396037,Government Procurement,Government Procurement +392692,Government Procurement,Government Procurement +391838,Government Procurement,Government Procurement +391837,Government Procurement,Government Procurement +391836,Government Procurement,Government Procurement +391835,Government Procurement,Government Procurement +389030,Government Procurement,Government Procurement +389029,Government Procurement,Government Procurement +389028,Government Procurement,Government Procurement +389026,Government Procurement,Government Procurement +389025,Government Procurement,Government Procurement +389024,Government Procurement,Government Procurement +389023,Government Procurement,Government Procurement +389022,Government Procurement,Government Procurement +389021,Government Procurement,Government Procurement +389020,Government Procurement,Government Procurement +389019,Government Procurement,Government Procurement +389018,Government Procurement,Government Procurement +389017,Government Procurement,Government Procurement +389016,Government Procurement,Government Procurement +389015,Government Procurement,Government Procurement +389014,Government Procurement,Government Procurement +389013,Government Procurement,Government Procurement +460713,Government Procurement,Government Procurement +460229,Government Procurement,Government Procurement +459311,Government Procurement,Government Procurement +459310,Government Procurement,Government Procurement +459309,Government Procurement,Government Procurement +451893,Government Procurement,Government Procurement +451891,Government Procurement,Government Procurement +451888,Government Procurement,Government Procurement +451886,Government Procurement,Government Procurement +451884,Government Procurement,Government Procurement +451882,Government Procurement,Government Procurement +451880,Government Procurement,Government Procurement +451879,Government Procurement,Government Procurement +451876,Government Procurement,Government Procurement +451874,Government Procurement,Government Procurement +447617,Government Procurement,Government Procurement +447616,Government Procurement,Government Procurement +447615,Government Procurement,Government Procurement +445661,Government Procurement,Government Procurement +442059,Government Procurement,Government Procurement +442057,Government Procurement,Government Procurement +442056,Government Procurement,Government Procurement +442054,Government Procurement,Government Procurement +442052,Government Procurement,Government Procurement +442049,Government Procurement,Government Procurement +438916,Government Procurement,Government Procurement +435389,Government Procurement,Government Procurement +435388,Government Procurement,Government Procurement +435387,Government Procurement,Government Procurement +435386,Government Procurement,Government Procurement +433255,Government Procurement,Government Procurement +433254,Government Procurement,Government Procurement +432314,Government Procurement,Government Procurement +431092,Government Procurement,Government Procurement +431090,Government Procurement,Government Procurement +431087,Government Procurement,Government Procurement +431085,Government Procurement,Government Procurement +425807,Government Procurement,Government Procurement +423241,Government Procurement,Government Procurement +423240,Government Procurement,Government Procurement +423239,Government Procurement,Government Procurement +423238,Government Procurement,Government Procurement +423237,Government Procurement,Government Procurement +423236,Government Procurement,Government Procurement +423235,Government Procurement,Government Procurement +423234,Government Procurement,Government Procurement +421725,Government Procurement,Government Procurement +419299,Government Procurement,Government Procurement +419298,Government Procurement,Government Procurement +419297,Government Procurement,Government Procurement +419296,Government Procurement,Government Procurement +417583,Government Procurement,Government Procurement +414977,Government Procurement,Government Procurement +414976,Government Procurement,Government Procurement +414975,Government Procurement,Government Procurement +414974,Government Procurement,Government Procurement +414973,Government Procurement,Government Procurement +411954,Government Procurement,Government Procurement +411953,Government Procurement,Government Procurement +411952,Government Procurement,Government Procurement +411951,Government Procurement,Government Procurement +411950,Government Procurement,Government Procurement +411949,Government Procurement,Government Procurement +411948,Government Procurement,Government Procurement +411947,Government Procurement,Government Procurement +411946,Government Procurement,Government Procurement +408899,Government Procurement,Government Procurement +407670,Government Procurement,Government Procurement +406576,Government Procurement,Government Procurement +405346,Government Procurement,Government Procurement +403265,Consumer Issues,Consumer Issues +403263,Consumer Issues,Consumer Issues +399402,Consumer Issues,Consumer Issues +399401,Consumer Issues,Consumer Issues +399237,Consumer Issues,Consumer Issues +399236,Consumer Issues,Consumer Issues +399234,Consumer Issues,Consumer Issues +394288,Consumer Issues,Consumer Issues +394287,Consumer Issues,Consumer Issues +394286,Consumer Issues,Consumer Issues +394285,Consumer Issues,Consumer Issues +394284,Consumer Issues,Consumer Issues +394283,Consumer Issues,Consumer Issues +390652,Consumer Issues,Consumer Issues +390651,Consumer Issues,Consumer Issues +390648,Consumer Issues,Consumer Issues +388731,Consumer Issues,Consumer Issues +445490,Consumer Issues,Consumer Issues +445486,Consumer Issues,Consumer Issues +435570,Consumer Issues,Consumer Issues +435567,Consumer Issues,Consumer Issues +435558,Consumer Issues,Consumer Issues +435555,Consumer Issues,Consumer Issues +425955,Consumer Issues,Consumer Issues +425953,Consumer Issues,Consumer Issues +424484,Consumer Issues,Consumer Issues +424482,Consumer Issues,Consumer Issues +416837,Consumer Issues,Consumer Issues +416831,Consumer Issues,Consumer Issues +416824,Consumer Issues,Consumer Issues +407944,Consumer Issues,Consumer Issues +407941,Consumer Issues,Consumer Issues +407940,Consumer Issues,Consumer Issues +463487,Tourism,Tourism +463434,Tourism,Tourism +463489,Tourism,Tourism +463488,Transportation,Transportation +463487,Transportation,Transportation +463434,Transportation,Transportation +411502,Environment,Environment +411501,Environment,Environment +441570,Environment,Environment +441510,Forestry,Forestry +431775,Forestry,Forestry +427565,Forestry,Forestry +420672,Forestry,Forestry +411503,Forestry,Forestry +411502,Forestry,Forestry +411501,Forestry,Forestry +441582,Forestry,Forestry +441574,Forestry,Forestry +441572,Forestry,Forestry +436833,Transportation,Transportation +436832,Transportation,Transportation +436835,Transportation,Transportation +436833,Small Business,Small Business +436832,Small Business,Small Business +436835,Small Business,Small Business +502210,Constitutional Issues,Constitutional Issues +494372,Constitutional Issues,Constitutional Issues +462899,Constitutional Issues,Constitutional Issues +526589,Constitutional Issues,Constitutional Issues +523321,Constitutional Issues,Constitutional Issues +523319,Constitutional Issues,Constitutional Issues +518643,Constitutional Issues,Constitutional Issues +518358,Constitutional Issues,Constitutional Issues +502240,Constitutional Issues,Constitutional Issues +505911,International Relations,International Relations +505910,International Relations,International Relations +427459,International Relations,International Relations +532629,International Relations,International Relations +532573,International Relations,International Relations +532445,International Relations,International Relations +532444,International Relations,International Relations +530133,International Relations,International Relations +530132,International Relations,International Relations +530131,International Relations,International Relations +523606,International Relations,International Relations +523457,International Relations,International Relations +523129,International Relations,International Relations +520070,International Relations,International Relations +518532,International Relations,International Relations +516201,International Relations,International Relations +515757,International Relations,International Relations +515756,International Relations,International Relations +515755,International Relations,International Relations +515753,International Relations,International Relations +515752,International Relations,International Relations +515750,International Relations,International Relations +515748,International Relations,International Relations +515685,International Relations,International Relations +509363,International Relations,International Relations +509323,International Relations,International Relations +509322,International Relations,International Relations +509274,International Relations,International Relations +509271,International Relations,International Relations +509270,International Relations,International Relations +509269,International Relations,International Relations +509268,International Relations,International Relations +509267,International Relations,International Relations +509266,International Relations,International Relations +509265,International Relations,International Relations +509264,International Relations,International Relations +505968,International Relations,International Relations +505914,International Relations,International Relations +505913,International Relations,International Relations +518642,Justice and Law Enforcement,Justice and Law Enforcement +515700,Justice and Law Enforcement,Justice and Law Enforcement +434825,Justice and Law Enforcement,Justice and Law Enforcement +434823,Justice and Law Enforcement,Justice and Law Enforcement +429702,Justice and Law Enforcement,Justice and Law Enforcement +395750,Justice and Law Enforcement,Justice and Law Enforcement +395747,Justice and Law Enforcement,Justice and Law Enforcement +538879,Justice and Law Enforcement,Justice and Law Enforcement +538877,Justice and Law Enforcement,Justice and Law Enforcement +538769,Justice and Law Enforcement,Justice and Law Enforcement +538768,Justice and Law Enforcement,Justice and Law Enforcement +536524,Justice and Law Enforcement,Justice and Law Enforcement +536467,Justice and Law Enforcement,Justice and Law Enforcement +536466,Justice and Law Enforcement,Justice and Law Enforcement +536465,Justice and Law Enforcement,Justice and Law Enforcement +536464,Justice and Law Enforcement,Justice and Law Enforcement +536463,Justice and Law Enforcement,Justice and Law Enforcement +536462,Justice and Law Enforcement,Justice and Law Enforcement +536461,Justice and Law Enforcement,Justice and Law Enforcement +536460,Justice and Law Enforcement,Justice and Law Enforcement +536459,Justice and Law Enforcement,Justice and Law Enforcement +536457,Justice and Law Enforcement,Justice and Law Enforcement +536456,Justice and Law Enforcement,Justice and Law Enforcement +536455,Justice and Law Enforcement,Justice and Law Enforcement +536454,Justice and Law Enforcement,Justice and Law Enforcement +536453,Justice and Law Enforcement,Justice and Law Enforcement +536452,Justice and Law Enforcement,Justice and Law Enforcement +536451,Justice and Law Enforcement,Justice and Law Enforcement +536449,Justice and Law Enforcement,Justice and Law Enforcement +536448,Justice and Law Enforcement,Justice and Law Enforcement +536447,Justice and Law Enforcement,Justice and Law Enforcement +536446,Justice and Law Enforcement,Justice and Law Enforcement +536445,Justice and Law Enforcement,Justice and Law Enforcement +536444,Justice and Law Enforcement,Justice and Law Enforcement +536443,Justice and Law Enforcement,Justice and Law Enforcement +536442,Justice and Law Enforcement,Justice and Law Enforcement +536441,Justice and Law Enforcement,Justice and Law Enforcement +536440,Justice and Law Enforcement,Justice and Law Enforcement +536439,Justice and Law Enforcement,Justice and Law Enforcement +536438,Justice and Law Enforcement,Justice and Law Enforcement +536437,Justice and Law Enforcement,Justice and Law Enforcement +536436,Justice and Law Enforcement,Justice and Law Enforcement +536435,Justice and Law Enforcement,Justice and Law Enforcement +536434,Justice and Law Enforcement,Justice and Law Enforcement +536433,Justice and Law Enforcement,Justice and Law Enforcement +536432,Justice and Law Enforcement,Justice and Law Enforcement +536431,Justice and Law Enforcement,Justice and Law Enforcement +536430,Justice and Law Enforcement,Justice and Law Enforcement +536429,Justice and Law Enforcement,Justice and Law Enforcement +536428,Justice and Law Enforcement,Justice and Law Enforcement +536427,Justice and Law Enforcement,Justice and Law Enforcement +536426,Justice and Law Enforcement,Justice and Law Enforcement +536425,Justice and Law Enforcement,Justice and Law Enforcement +536424,Justice and Law Enforcement,Justice and Law Enforcement +536423,Justice and Law Enforcement,Justice and Law Enforcement +536421,Justice and Law Enforcement,Justice and Law Enforcement +536420,Justice and Law Enforcement,Justice and Law Enforcement +536419,Justice and Law Enforcement,Justice and Law Enforcement +536418,Justice and Law Enforcement,Justice and Law Enforcement +536417,Justice and Law Enforcement,Justice and Law Enforcement +536416,Justice and Law Enforcement,Justice and Law Enforcement +536415,Justice and Law Enforcement,Justice and Law Enforcement +536414,Justice and Law Enforcement,Justice and Law Enforcement +536413,Justice and Law Enforcement,Justice and Law Enforcement +536412,Justice and Law Enforcement,Justice and Law Enforcement +536411,Justice and Law Enforcement,Justice and Law Enforcement +536409,Justice and Law Enforcement,Justice and Law Enforcement +536408,Justice and Law Enforcement,Justice and Law Enforcement +536407,Justice and Law Enforcement,Justice and Law Enforcement +536406,Justice and Law Enforcement,Justice and Law Enforcement +536405,Justice and Law Enforcement,Justice and Law Enforcement +536404,Justice and Law Enforcement,Justice and Law Enforcement +533677,Justice and Law Enforcement,Justice and Law Enforcement +526589,Justice and Law Enforcement,Justice and Law Enforcement +520209,Religion,Religion +520208,Religion,Religion +520207,Religion,Religion +520206,Religion,Religion +519220,Religion,Religion +518643,Religion,Religion +518642,Religion,Religion +518511,Religion,Religion +518481,Religion,Religion +518480,Religion,Religion +518479,Religion,Religion +518478,Religion,Religion +518477,Religion,Religion +518476,Religion,Religion +518475,Religion,Religion +518474,Religion,Religion +518472,Religion,Religion +518358,Religion,Religion +516570,Religion,Religion +510872,Religion,Religion +510871,Religion,Religion +510869,Religion,Religion +509521,Religion,Religion +509384,Religion,Religion +509363,Religion,Religion +509273,Religion,Religion +509270,Religion,Religion +496568,Religion,Religion +494676,Religion,Religion +494371,Religion,Religion +494030,Religion,Religion +493976,Religion,Religion +493975,Religion,Religion +492994,Religion,Religion +492842,Religion,Religion +492841,Religion,Religion +492837,Religion,Religion +492836,Religion,Religion +492834,Religion,Religion +485770,Religion,Religion +485769,Religion,Religion +485768,Religion,Religion +485767,Religion,Religion +484886,Religion,Religion +484882,Religion,Religion +484856,Religion,Religion +484841,Religion,Religion +484829,Religion,Religion +484826,Religion,Religion +484824,Religion,Religion +484821,Religion,Religion +484806,Religion,Religion +484801,Religion,Religion +484778,Religion,Religion +477269,Religion,Religion +473834,Religion,Religion +473833,Religion,Religion +473832,Religion,Religion +473831,Religion,Religion +465065,Religion,Religion +465064,Religion,Religion +465063,Religion,Religion +459707,Religion,Religion +459706,Religion,Religion +459705,Religion,Religion +459704,Religion,Religion +459703,Religion,Religion +459702,Religion,Religion +459701,Religion,Religion +457706,Religion,Religion +457705,Religion,Religion +457701,Religion,Religion +456097,Religion,Religion +456096,Religion,Religion +456095,Religion,Religion +456094,Religion,Religion +456093,Religion,Religion +456092,Religion,Religion +456091,Religion,Religion +456090,Religion,Religion +456089,Religion,Religion +456088,Religion,Religion +456087,Religion,Religion +456086,Religion,Religion +456085,Religion,Religion +456084,Religion,Religion +451817,Religion,Religion +451794,Religion,Religion +448362,Religion,Religion +448361,Religion,Religion +446144,Religion,Religion +444231,Religion,Religion +444161,Religion,Religion +443990,Religion,Religion +440377,Religion,Religion +440376,Religion,Religion +440375,Religion,Religion +437247,Religion,Religion +437245,Religion,Religion +431207,Religion,Religion +431205,Religion,Religion +431204,Religion,Religion +431196,Religion,Religion +431194,Religion,Religion +431180,Religion,Religion +425821,Religion,Religion +526589,Religion,Religion +526588,Religion,Religion +526587,Religion,Religion +526585,Religion,Religion +523329,Religion,Religion +523328,Religion,Religion +523324,Religion,Religion +523323,Religion,Religion +448362,Security,Security +448361,Security,Security +444232,Security,Security +444166,Security,Security +444163,Security,Security +434825,Security,Security +434823,Security,Security +431207,Security,Security +431205,Security,Security +431204,Security,Security +431196,Security,Security +431194,Security,Security +431180,Security,Security +429702,Security,Security +410204,Security,Security +408186,Security,Security +395750,Security,Security +386547,Environment,Environment +386547,Infrastructure,Infrastructure +450728,Infrastructure,Infrastructure +443117,Climate,Climate +451683,Economic Development,Economic Development +533106,Energy,Energy +509441,Environment,Environment +419305,Regional Development,Regional Development +388230,Taxation and Finance,Taxation and Finance +412607,Financial Institutions,Financial Institutions +404298,Economic Development,Economic Development +404298,Employment and Training,Employment and Training +404298,Labour,Labour +414177,Transportation,Transportation +539024,Research and Development,Research and Development +489860,Economic Development,Economic Development +392799,Housing,Housing +386710,Environment,Environment +386714,Energy,Energy +518638,Environment,Environment +403094,Health,Health +394441,Environment,Environment +401993,Fisheries,Fisheries +389879,Mining,Mining +386760,Infrastructure,Infrastructure +386760,Economic Development,Economic Development +395474,Energy,Energy +395474,Industry,Industry +391280,Agriculture,Agriculture +386769,Infrastructure,Infrastructure +393041,Environment,Environment +413061,Research and Development,Research and Development +407680,Climate,Climate +407825,Employment and Training,Employment and Training +407679,Energy,Energy +393041,Infrastructure,Infrastructure +522201,Health,Health +522201,Internal Trade,Internal Trade +494712,Industry,Industry +391301,Defence,Defence +391301,Forestry,Forestry +391301,Government Procurement,Government Procurement +413677,Agriculture,Agriculture +412623,Financial Institutions,Financial Institutions +393991,Climate,Climat +393991,Environment,Environnement +441091,Financial Institutions,Financial Institutions +386879,Environment,Environment +386879,Industry,Industry +386879,Taxation and Finance,Taxation and Finance +386879,Economic Development,Economic Development +386879,Housing,Housing +386879,Small Business,Small Business +386886,Energy,Energy +386886,Environment,Environment +393905,Economic Development,Développement économique +387420,Regional Development,Développement régional +387420,Industry,Industrie +387420,Infrastructure,Infrastructure +387420,Transportation,Transports +394814,Environment,Environment +394813,Infrastructure,Infrastructure +390089,Transportation,Transportation +393036,Internal Trade,Internal Trade +413003,Financial Institutions,Financial Institutions +387008,Economic Development,Economic Development +387010,Economic Development,Economic Development +389655,Labour,Labour +477968,Consumer Issues,Consumer Issues +390035,Transportation,Transports +446482,Consumer Issues,Consumer Issues +431333,Consumer Issues,Consumer Issues +388812,Infrastructure,Infrastructure +388812,Tourism,Tourism +401211,Energy,Energy +387022,Energy,Energy +387022,Regional Development,Regional Development +387022,Research and Development,Research and Development +401209,Transportation,Transportation +390511,Transportation,Transports +387053,Infrastructure,Infrastructure +389936,Transportation,Transportation +497277,Sports,Sports +390580,Economic Development,Economic Development +400493,Employment and Training,Employment and Training +390591,Energy,Energy +400493,Environment,Environment +400496,Housing,Housing +460959,Agriculture,Agriculture +473959,International Trade,International Trade +387151,International Relations,International Relations +395026,Regional Development,Regional Development +414104,Transportation,Transportation +395028,Infrastructure,Infrastructure +387161,Security,Security +471283,Industry,Industry +401660,Energy,Energy +392265,Transportation,Transportation +393496,Environment,Environment +393496,Regional Development,Regional Development +390025,Tourism,Tourism +422932,Government Procurement,Government Procurement +422932,Regional Development,Regional Development +387284,Transportation,Transportation +387284,Economic Development,Economic Development +387284,Climate,Climate +387289,Fisheries,Fisheries +388050,Taxation and Finance,Taxation and Finance +393041,Economic Development,Economic Development +397996,International Trade,International Trade +468097,Immigration,Immigration +399232,Health,Health +399231,Justice and Law Enforcement,Justice and Law Enforcement +391034,Small Business,Small Business +387470,Small Business,Small Business +391037,Small Business,Small Business +391035,Small Business,Small Business +387473,Small Business,Small Business +391053,Small Business,Small Business +391048,Small Business,Small Business +391052,Small Business,Small Business +387477,Small Business,Small Business +391063,Small Business,Small Business +391058,Small Business,Small Business +391064,Small Business,Small Business +387481,Small Business,Small Business +391074,Small Business,Small Business +391068,Small Business,Small Business +391043,Small Business,Small Business +391045,Small Business,Small Business +391042,Small Business,Small Business +391076,Small Business,Small Business +391076,International Trade,International Trade +391077,Small Business,Small Business +391078,Small Business,Small Business +391079,Small Business,Small Business +391080,Small Business,Small Business +391082,Small Business,Small Business +391083,Small Business,Small Business +391084,Small Business,Small Business +458819,Transportation,Transportation +389811,Economic Development,Economic Development +387535,Infrastructure,Infrastructure +402393,Infrastructure,Infrastructure +387537,Infrastructure,Infrastructure +387539,Infrastructure,Infrastructure +387540,Infrastructure,Infrastructure +387541,Infrastructure,Infrastructure +387542,Infrastructure,Infrastructure +387543,Infrastructure,Infrastructure +387544,Infrastructure,Infrastructure +387545,Infrastructure,Infrastructure +387546,Infrastructure,Infrastructure +393495,Health,Health +439774,International Trade,International Trade +387636,International Trade,International Trade +387640,International Trade,International Trade +387641,International Trade,International Trade +387642,International Trade,International Trade +395781,Employment and Training,Employment and Training +387694,Climate,Climate +387694,Research and Development,Research and Development +388985,Economic Development,Economic Development +388985,Health,Health +388984,Industry,Industry +388985,Research and Development,Research and Development +387820,Budget,Budget +405875,Taxation and Finance,Taxation and Finance +389727,Infrastructure,Infrastructure +387935,Economic Development,Economic Development +387952,International Trade,International Trade +387954,Internal Trade,Internal Trade +387956,Environment,Environment +387956,Energy,Energy +387958,Health,Health +387959,Health,Health +387978,International Relations,International Relations +389218,Government Procurement,Government Procurement +412296,Infrastructure,Infrastructure +388014,Economic Development,Economic Development +388029,Sports,Sports +388043,Research and Development,Research and Development +388049,Immigration,Immigration +388064,Religion,Religion +388030,Environment,Environment +388070,International Trade,International Trade +388081,Research and Development,Research and Development +388087,Health,Health +421611,Research and Development,Research and Development +391176,Research and Development,Research and Development +388110,Environment,Environment +391176,Research and Development,Research and Development +388113,Research and Development,Research and Development +388128,International Trade,International Trade +499250,Budget,Budget +466245,Climate,Climate +390883,Defence,Defence +390877,Economic Development,Economic Development +532462,Financial Institutions,Financial Institutions +501881,Health,Health +466252,International Development,International Development +458426,International Relations,International Relations +388135,Industry,Industry +388140,Industry,Industry +388141,Industry,Industry +388142,Internal Trade,Internal Trade +388147,Security,Security +388155,Environment,Environment +388155,Energy,Energy +388164,Health,Health +510239,Security,Security +391951,Government Procurement,Government Procurement +388332,Security,Security +388339,Internal Trade,Internal Trade +388373,Security,Security +388364,International Trade,International Trade +438825,Budget,Budget +388390,Immigration,Immigration +394365,Economic Development,Economic Development +533405,Small Business,Small Business +388606,Budget,Budget +392787,Budget,Budget +388609,Budget,Budget +388610,Budget,Budget +388621,International Trade,International Trade +388622,International Trade,International Trade +388921,Transportation,Transportation +390957,Education,Education +390957,Health,Health +396832,Infrastructure,Infrastructure +389138,Environment,Environment +389138,Internal Trade,Internal Trade +389138,Transportation,Transportation +389138,Industry,Industry +389138,International Trade,International Trade +389177,Economic Development,Economic Development +389177,Environment,Environment +389177,Infrastructure,Infrastructure +389177,International Trade,International Trade +389177,Regional Development,Regional Development +389177,Transportation,Transportation +404666,Transportation,Transportation +391541,International Trade,International Trade +400801,Economic Development,Economic Development +393687,Economic Development,Economic Development +393687,Infrastructure,Infrastructure +393687,Transportation,Transportation +388728,Constitutional Issues,Constitutional Issues +388727,Health,Health +388726,Labour,Labour +389586,Economic Development,Economic Development +389586,Housing,Housing +389586,Immigration,Immigration +389586,Infrastructure,Infrastructure +393670,Economic Development,Economic Development +393670,Health,Health +393667,Housing,Housing +393670,Immigration,Immigration +393670,Infrastructure,Infrastructure +425806,Economic Development,Economic Development +402661,Government Procurement,Government Procurement +405839,Consumer Issues,Consumer Issues +463488,Tourism,Tourism +463489,Transportation,Transportation +410725,Labour,Travail +410725,Employment and Training,Emploi et formation +410725,Immigration,Immigration +420672,Environment,Environment +441570,Forestry,Forestry +431775,Research and Development,Research and Development +436834,Transportation,Transportation +436834,Small Business,Small Business +395811,Health,Health +395811,Taxation and Finance,Taxation and Finance +394785,Health,Health +502213,Constitutional Issues,Constitutional Issues +505912,International Relations,International Relations +518741,Justice and Law Enforcement,Justice and Law Enforcement +523322,Religion,Religion +449210,Security,Security +462898,Transportation,Transportation +471232,Health,Health +425649,Research and Development,Research and Development +393919,Housing,Housing +413745,Health,Health +388816,Economic Development,Economic Development +389621,Research and Development,Research and Development +394952,Financial Institutions,Financial Institutions +393051,Taxation and Finance,Taxation and Finance +401076,Employment and Training,Employment and Training +401076,Small Business,Small Business +397096,Transportation,Transportation +403946,Small Business,Small Business +394367,Transportation,Transportation +401077,Consumer Issues,Consumer Issues +403975,Small Business,Small Business +397097,Transportation,Transportation +401072,Consumer Issues,Consumer Issues +403949,Small Business,Small Business +401072,Transportation,Transportation +390963,Infrastructure,Infrastructure +390966,Transportation,Transportation +407305,Small Business,Small Business +390029,International Trade,International Trade +395451,Intellectual Property,Intellectual Property +395451,International Trade,International Trade +393656,Municipalities,Municipalities +389560,Budget,Budget +431984,Defence,Defence +417312,Employment and Training,Employment and Training +389031,Government Procurement,Government Procurement +418675,Industry,Industry +395747,Security,Security +543184,Security,Security +539156,Security,Security +539056,Security,Security +538804,Security,Security +531046,Security,Security +526589,Security,Security +526588,Security,Security +526584,Security,Security +523330,Security,Security +523328,Security,Security +523327,Security,Security +523325,Security,Security +523324,Security,Security +523323,Security,Security +523321,Security,Security +523319,Security,Security +515699,Security,Security +515697,Security,Security +510873,Security,Security +510868,Security,Security +510867,Security,Security +510866,Security,Security +509341,Security,Security +509272,Security,Security +509271,Security,Security +509270,Security,Security +502252,Security,Security +502219,Security,Security +502217,Security,Security +497420,Security,Security +497184,Security,Security +494675,Security,Security +494372,Security,Security +494370,Security,Security +494369,Security,Security +494031,Security,Security +492931,Security,Security +492841,Security,Security +492839,Security,Security +492833,Security,Security +492832,Security,Security +492831,Security,Security +492825,Security,Security +456084,Security,Security +471223,Health,Health +471207,Health,Health +403328,Health,Health +471233,Health,Health +418290,Research and Development,Research and Development +403328,Research and Development,Research and Development +529742,Research and Development,Research and Development +499549,Research and Development,Research and Development +392883,Housing,Housing +390033,Housing,Housing +408859,Health,Health +408856,Health,Health +407284,Health,Health +407283,Health,Health +407280,Health,Health +407279,Health,Health +407277,Health,Health +407276,Health,Health +403062,Health,Health +403061,Health,Health +401070,Health,Health +401069,Health,Health +399137,Health,Health +399136,Health,Health +399135,Health,Health +399134,Health,Health +397398,Health,Health +397019,Health,Health +397016,Health,Health +397012,Health,Health +394553,Health,Health +394552,Health,Health +394551,Health,Health +392773,Health,Health +392772,Health,Health +391609,Health,Health +391608,Health,Health +391606,Health,Health +391605,Health,Health +424276,Health,Health +422580,Health,Health +389620,Research and Development,Research and Development +394755,Financial Institutions,Financial Institutions +393051,Financial Institutions,Financial Institutions +461947,Financial Institutions,Financial Institutions +460382,Financial Institutions,Financial Institutions +431587,Financial Institutions,Financial Institutions +401656,Financial Institutions,Financial Institutions +401186,Financial Institutions,Financial Institutions +399463,Financial Institutions,Financial Institutions +461947,Taxation and Finance,Taxation and Finance +460382,Taxation and Finance,Taxation and Finance +431587,Taxation and Finance,Taxation and Finance +431586,Taxation and Finance,Taxation and Finance +429869,Taxation and Finance,Taxation and Finance +429669,Taxation and Finance,Taxation and Finance +429606,Taxation and Finance,Taxation and Finance +427555,Taxation and Finance,Taxation and Finance +399463,Taxation and Finance,Taxation and Finance +394952,Taxation and Finance,Taxation and Finance +394755,Taxation and Finance,Taxation and Finance +394374,Transportation,Transportation +392897,Transportation,Transportation +401076,Transportation,Transportation +392898,Transportation,Transportation +401063,Transportation,Transportation +397094,Transportation,Transportation +401077,Small Business,Small Business +394376,Transportation,Transportation +392899,Transportation,Transportation +401077,Transportation,Transportation +401072,Small Business,Small Business +397095,Transportation,Transportation +394370,Transportation,Transportation +392896,Transportation,Transportation +390959,Infrastructure,Infrastructure +434060,Infrastructure,Infrastructure +390966,Infrastructure,Infrastructure +390963,Transportation,Transportation +390959,Transportation,Transportation +434060,Transportation,Transportation +432640,Transportation,Transportation +407304,Small Business,Small Business +397561,Small Business,Small Business +388858,Small Business,Small Business +407311,Small Business,Small Business +407310,Small Business,Small Business +407308,Small Business,Small Business +390028,International Trade,International Trade +390027,International Trade,International Trade +392851,International Trade,International Trade +392478,International Trade,International Trade +392476,International Trade,International Trade +391814,International Trade,International Trade +390032,International Trade,International Trade +390031,International Trade,International Trade +390030,International Trade,International Trade +395450,Intellectual Property,Intellectual Property +388864,Intellectual Property,Intellectual Property +411744,Intellectual Property,Intellectual Property +410547,Intellectual Property,Intellectual Property +410461,Intellectual Property,Intellectual Property +402775,Intellectual Property,Intellectual Property +395465,Intellectual Property,Intellectual Property +395455,Intellectual Property,Intellectual Property +395453,Intellectual Property,Intellectual Property +395450,International Trade,International Trade +388864,International Trade,International Trade +411744,International Trade,International Trade +410547,International Trade,International Trade +402775,International Trade,International Trade +395465,International Trade,International Trade +395455,International Trade,International Trade +395453,International Trade,International Trade +388872,Budget,Budget +427593,Defence,Defence +423326,Defence,Defence +410804,Defence,Defence +410800,Defence,Defence +401828,Defence,Defence +400170,Defence,Defence +399444,Defence,Defence +397990,Defence,Defence +397549,Defence,Defence +397547,Defence,Defence +389570,Defence,Defence +389569,Defence,Defence +389568,Defence,Defence +389567,Defence,Defence +389566,Defence,Defence +389565,Defence,Defence +389560,Defence,Defence +389557,Defence,Defence +389555,Defence,Defence +389064,Defence,Defence +389043,Defence,Defence +389042,Defence,Defence +389041,Defence,Defence +389040,Defence,Defence +389032,Defence,Defence +388872,Defence,Defence +388871,Defence,Defence +388870,Defence,Defence +410801,Employment and Training,Employment and Training +410800,Employment and Training,Employment and Training +401828,Employment and Training,Employment and Training +397988,Employment and Training,Employment and Training +397547,Employment and Training,Employment and Training +389569,Employment and Training,Employment and Training +389557,Employment and Training,Employment and Training +389043,Employment and Training,Employment and Training +388871,Employment and Training,Employment and Training +431984,Employment and Training,Employment and Training +427593,Employment and Training,Employment and Training +388872,Government Procurement,Government Procurement +388870,Government Procurement,Government Procurement +431984,Government Procurement,Government Procurement +423326,Government Procurement,Government Procurement +418675,Government Procurement,Government Procurement +417312,Government Procurement,Government Procurement +401828,Government Procurement,Government Procurement +400170,Government Procurement,Government Procurement +400169,Government Procurement,Government Procurement +399444,Government Procurement,Government Procurement +399230,Government Procurement,Government Procurement +397990,Government Procurement,Government Procurement +397989,Government Procurement,Government Procurement +397549,Government Procurement,Government Procurement +397548,Government Procurement,Government Procurement +389570,Government Procurement,Government Procurement +389569,Government Procurement,Government Procurement +389568,Government Procurement,Government Procurement +389567,Government Procurement,Government Procurement +389566,Government Procurement,Government Procurement +389565,Government Procurement,Government Procurement +389564,Government Procurement,Government Procurement +389560,Government Procurement,Government Procurement +389555,Government Procurement,Government Procurement +389064,Government Procurement,Government Procurement +389043,Government Procurement,Government Procurement +389042,Government Procurement,Government Procurement +389041,Government Procurement,Government Procurement +389040,Government Procurement,Government Procurement +389032,Government Procurement,Government Procurement +397989,Industry,Industry +397548,Industry,Industry +389570,Industry,Industry +389566,Industry,Industry +389564,Industry,Industry +389557,Industry,Industry +389064,Industry,Industry +389040,Industry,Industry +389031,Industry,Industry +388871,Industry,Industry +410801,Transportation,Transportation +410800,Transportation,Transportation +401828,Transportation,Transportation +400170,Transportation,Transportation +400169,Transportation,Transportation +399444,Transportation,Transportation +399230,Transportation,Transportation +397989,Transportation,Transportation +397988,Transportation,Transportation +397548,Transportation,Transportation +397547,Transportation,Transportation +389569,Transportation,Transportation +389567,Transportation,Transportation +389565,Transportation,Transportation +389560,Transportation,Transportation +389555,Transportation,Transportation +389064,Transportation,Transportation +389043,Transportation,Transportation +389041,Transportation,Transportation +389032,Transportation,Transportation +388872,Transportation,Transportation +388870,Transportation,Transportation +427593,Transportation,Transportation +410800,Economic Development,Economic Development +397989,Economic Development,Economic Development +397988,Economic Development,Economic Development +397548,Economic Development,Economic Development +397547,Economic Development,Economic Development +389568,Economic Development,Economic Development +389564,Economic Development,Economic Development +389557,Economic Development,Economic Development +389042,Economic Development,Economic Development +389031,Economic Development,Economic Development +388871,Economic Development,Economic Development +472757,Fisheries,Fisheries +470170,Fisheries,Fisheries +467414,Fisheries,Fisheries +467409,Fisheries,Fisheries +467397,Fisheries,Fisheries +463842,Fisheries,Fisheries +462437,Fisheries,Fisheries +462435,Fisheries,Fisheries +462432,Fisheries,Fisheries +462429,Fisheries,Fisheries +461494,Fisheries,Fisheries +461486,Fisheries,Fisheries +460586,Fisheries,Fisheries +459904,Fisheries,Fisheries +458724,Fisheries,Fisheries +458721,Fisheries,Fisheries +458720,Fisheries,Fisheries +433592,Fisheries,Fisheries +433589,Fisheries,Fisheries +429731,Fisheries,Fisheries +426390,Fisheries,Fisheries +426376,Fisheries,Fisheries +395275,Fisheries,Fisheries +395273,Fisheries,Fisheries +393179,Fisheries,Fisheries +513182,Fisheries,Fisheries +495639,Fisheries,Fisheries +493088,Fisheries,Fisheries +493087,Fisheries,Fisheries +484479,Fisheries,Fisheries +481859,Fisheries,Fisheries +480261,Fisheries,Fisheries +480090,Fisheries,Fisheries +477097,Fisheries,Fisheries +475122,Fisheries,Fisheries +475121,Fisheries,Fisheries +392048,Infrastructure,Infrastructure +388920,Infrastructure,Infrastructure +388906,Taxation and Finance,Taxation and Finance +388901,Taxation and Finance,Taxation and Finance +388908,Taxation and Finance,Taxation and Finance +391969,Health,Health +391967,Health,Health +397885,Tourism,Tourism +389130,Tourism,Tourism +436582,Tourism,Tourism +407455,Tourism,Tourism +397885,Small Business,Small Business +389130,Small Business,Small Business +411071,Small Business,Small Business +407455,Small Business,Small Business +397885,Transportation,Transportation +389130,Transportation,Transportation +463405,Transportation,Transportation +463404,Transportation,Transportation +440542,Transportation,Transportation +436582,Transportation,Transportation +436528,Transportation,Transportation +411071,Transportation,Transportation +407455,Transportation,Transportation +406158,Transportation,Transportation +436582,Industry,Industry +436528,Industry,Industry +411071,Industry,Industry +407455,Industry,Industry +406158,Industry,Industry +397886,Industry,Industry +397885,Industry,Industry +389130,Industry,Industry +463405,Industry,Industry +463404,Industry,Industry +389132,Transportation,Transportation +389131,Transportation,Transportation +389135,Transportation,Transportation +389132,Environment,Environment +389131,Environment,Environment +389135,Environment,Environment +389132,Industry,Industry +389131,Industry,Industry +389135,Industry,Industry +389132,Internal Trade,Internal Trade +389131,Internal Trade,Internal Trade +389135,Internal Trade,Internal Trade +389132,International Trade,International Trade +389131,International Trade,International Trade +389135,International Trade,International Trade +395277,Fisheries,Fisheries +393087,Government Procurement,Government Procurement +393086,Government Procurement,Government Procurement +416783,Government Procurement,Government Procurement +396242,Energy,Energy +396229,Energy,Energy +425934,Energy,Energy +407810,Energy,Energy +536575,Climate,Climate +533021,Energy,Energy +542475,Environment,Environment +536575,Environment,Environment +428336,Infrastructure,Infrastructure +443080,Taxation and Finance,Taxation and Finance +399872,Taxation and Finance,Taxation and Finance +531564,Taxation and Finance,Taxation and Finance +531563,Taxation and Finance,Taxation and Finance +531561,Taxation and Finance,Taxation and Finance +392474,International Trade,International Trade +392486,Agriculture,Agriculture +392479,Agriculture,Agriculture +395795,Agriculture,Agriculture +395792,Agriculture,Agriculture +395791,Agriculture,Agriculture +397238,Budget,Budget +458079,Budget,Budget +447038,Budget,Budget +446392,Budget,Budget +446390,Budget,Budget +444265,Budget,Budget +444264,Budget,Budget +442876,Budget,Budget +442875,Budget,Budget +437737,Budget,Budget +437735,Budget,Budget +434236,Budget,Budget +432978,Budget,Budget +432212,Budget,Budget +414617,Budget,Budget +397238,Health,Health +458079,Health,Health +457620,Health,Health +457231,Health,Health +454949,Health,Health +454947,Health,Health +454946,Health,Health +454945,Health,Health +454944,Health,Health +453986,Health,Health +450881,Health,Health +446392,Health,Health +446391,Health,Health +446390,Health,Health +444265,Health,Health +444264,Health,Health +442875,Health,Health +437862,Health,Health +437746,Health,Health +437737,Health,Health +437735,Health,Health +434236,Health,Health +432978,Health,Health +432212,Health,Health +418565,Health,Health +414618,Health,Health +414617,Health,Health +414616,Health,Health +413953,Health,Health +411130,Health,Health +408328,Health,Health +407026,Health,Health +401764,Health,Health +399617,Health,Health +390565,Infrastructure,Infrastructure +431375,Infrastructure,Infrastructure +416975,Infrastructure,Infrastructure +411960,Infrastructure,Infrastructure +406556,Infrastructure,Infrastructure +405146,Infrastructure,Infrastructure +405145,Infrastructure,Infrastructure +405143,Infrastructure,Infrastructure +405142,Infrastructure,Infrastructure +405141,Infrastructure,Infrastructure +405139,Infrastructure,Infrastructure +400497,Infrastructure,Infrastructure +400496,Infrastructure,Infrastructure +400495,Infrastructure,Infrastructure +400493,Infrastructure,Infrastructure +400492,Infrastructure,Infrastructure +400491,Infrastructure,Infrastructure +390628,Infrastructure,Infrastructure +390609,Infrastructure,Infrastructure +390605,Infrastructure,Infrastructure +390591,Infrastructure,Infrastructure +412093,Economic Development,Economic Development +412090,Economic Development,Economic Development +412089,Economic Development,Economic Development +412087,Economic Development,Economic Development +412085,Economic Development,Economic Development +412084,Economic Development,Economic Development +412082,Economic Development,Economic Development +412080,Economic Development,Economic Development +412075,Economic Development,Economic Development +412073,Economic Development,Economic Development +412072,Economic Development,Economic Development +412070,Economic Development,Economic Development +412067,Economic Development,Economic Development +412063,Economic Development,Economic Development +412061,Economic Development,Economic Development +412058,Economic Development,Economic Development +412055,Economic Development,Economic Development +412053,Economic Development,Economic Development +412051,Economic Development,Economic Development +412047,Economic Development,Economic Development +412045,Economic Development,Economic Development +412043,Economic Development,Economic Development +412039,Economic Development,Economic Development +411919,Economic Development,Economic Development +411917,Economic Development,Economic Development +411916,Economic Development,Economic Development +411915,Economic Development,Economic Development +411914,Economic Development,Economic Development +411913,Economic Development,Economic Development +411912,Economic Development,Economic Development +411911,Economic Development,Economic Development +411910,Economic Development,Economic Development +411908,Economic Development,Economic Development +411907,Economic Development,Economic Development +411906,Economic Development,Economic Development +411886,Economic Development,Economic Development +411885,Economic Development,Economic Development +411882,Economic Development,Economic Development +411880,Economic Development,Economic Development +411878,Economic Development,Economic Development +437284,Economic Development,Economic Development +437243,Economic Development,Economic Development +437188,Economic Development,Economic Development +437182,Economic Development,Economic Development +437174,Economic Development,Economic Development +412342,Economic Development,Economic Development +412340,Economic Development,Economic Development +412336,Economic Development,Economic Development +412262,Economic Development,Economic Development +412258,Economic Development,Economic Development +412255,Economic Development,Economic Development +412252,Economic Development,Economic Development +412251,Economic Development,Economic Development +412248,Economic Development,Economic Development +412244,Economic Development,Economic Development +412237,Economic Development,Economic Development +412235,Economic Development,Economic Development +412231,Economic Development,Economic Development +412174,Economic Development,Economic Development +412172,Economic Development,Economic Development +412171,Economic Development,Economic Development +412170,Economic Development,Economic Development +412169,Economic Development,Economic Development +412168,Economic Development,Economic Development +412166,Economic Development,Economic Development +412142,Economic Development,Economic Development +412139,Economic Development,Economic Development +412138,Economic Development,Economic Development +412132,Economic Development,Economic Development +412130,Economic Development,Economic Development +412129,Economic Development,Economic Development +412126,Economic Development,Economic Development +412113,Economic Development,Economic Development +412110,Economic Development,Economic Development +412109,Economic Development,Economic Development +412107,Economic Development,Economic Development +412104,Economic Development,Economic Development +412102,Economic Development,Economic Development +437194,Employment and Training,Employment and Training +437184,Employment and Training,Employment and Training +390466,Employment and Training,Employment and Training +390465,Employment and Training,Employment and Training +390464,Employment and Training,Employment and Training +390463,Employment and Training,Employment and Training +390462,Employment and Training,Employment and Training +390461,Employment and Training,Employment and Training +390460,Employment and Training,Employment and Training +390459,Employment and Training,Employment and Training +390457,Employment and Training,Employment and Training +390456,Employment and Training,Employment and Training +390455,Employment and Training,Employment and Training +390454,Employment and Training,Employment and Training +390453,Employment and Training,Employment and Training +390452,Employment and Training,Employment and Training +390429,Employment and Training,Employment and Training +390428,Employment and Training,Employment and Training +390427,Employment and Training,Employment and Training +390426,Employment and Training,Employment and Training +390425,Employment and Training,Employment and Training +390423,Employment and Training,Employment and Training +390420,Employment and Training,Employment and Training +390417,Employment and Training,Employment and Training +390416,Employment and Training,Employment and Training +390415,Employment and Training,Employment and Training +390411,Employment and Training,Employment and Training +390406,Employment and Training,Employment and Training +390401,Employment and Training,Employment and Training +390399,Employment and Training,Employment and Training +390387,Employment and Training,Employment and Training +390383,Employment and Training,Employment and Training +390380,Employment and Training,Employment and Training +390368,Employment and Training,Employment and Training +390350,Employment and Training,Employment and Training +390343,Employment and Training,Employment and Training +390331,Employment and Training,Employment and Training +390321,Employment and Training,Employment and Training +390306,Employment and Training,Employment and Training +390297,Employment and Training,Employment and Training +390291,Employment and Training,Employment and Training +390283,Employment and Training,Employment and Training +390270,Employment and Training,Employment and Training +390262,Employment and Training,Employment and Training +390255,Employment and Training,Employment and Training +390242,Employment and Training,Employment and Training +390237,Employment and Training,Employment and Training +390235,Employment and Training,Employment and Training +390228,Employment and Training,Employment and Training +390223,Employment and Training,Employment and Training +390217,Employment and Training,Employment and Training +390211,Employment and Training,Employment and Training +390200,Employment and Training,Employment and Training +390196,Employment and Training,Employment and Training +390189,Employment and Training,Employment and Training +390178,Employment and Training,Employment and Training +390171,Employment and Training,Employment and Training +412342,Employment and Training,Employment and Training +412340,Employment and Training,Employment and Training +412336,Employment and Training,Employment and Training +412262,Employment and Training,Employment and Training +412258,Employment and Training,Employment and Training +412255,Employment and Training,Employment and Training +412252,Employment and Training,Employment and Training +412251,Employment and Training,Employment and Training +412248,Employment and Training,Employment and Training +412244,Employment and Training,Employment and Training +412237,Employment and Training,Employment and Training +412235,Employment and Training,Employment and Training +412231,Employment and Training,Employment and Training +412174,Employment and Training,Employment and Training +412172,Employment and Training,Employment and Training +412171,Employment and Training,Employment and Training +412170,Employment and Training,Employment and Training +412169,Employment and Training,Employment and Training +412168,Employment and Training,Employment and Training +412166,Employment and Training,Employment and Training +412142,Employment and Training,Employment and Training +412139,Employment and Training,Employment and Training +412138,Employment and Training,Employment and Training +412132,Employment and Training,Employment and Training +412130,Employment and Training,Employment and Training +412129,Employment and Training,Employment and Training +412126,Employment and Training,Employment and Training +412113,Employment and Training,Employment and Training +412110,Employment and Training,Employment and Training +412109,Employment and Training,Employment and Training +412107,Employment and Training,Employment and Training +412104,Employment and Training,Employment and Training +412102,Employment and Training,Employment and Training +412094,Employment and Training,Employment and Training +412093,Employment and Training,Employment and Training +412090,Employment and Training,Employment and Training +412089,Employment and Training,Employment and Training +412087,Employment and Training,Employment and Training +412085,Employment and Training,Employment and Training +412084,Employment and Training,Employment and Training +412082,Employment and Training,Employment and Training +412080,Employment and Training,Employment and Training +412075,Employment and Training,Employment and Training +412073,Employment and Training,Employment and Training +412072,Employment and Training,Employment and Training +412070,Employment and Training,Employment and Training +412067,Employment and Training,Employment and Training +412063,Employment and Training,Employment and Training +412061,Employment and Training,Employment and Training +412058,Employment and Training,Employment and Training +412055,Employment and Training,Employment and Training +412053,Employment and Training,Employment and Training +412051,Employment and Training,Employment and Training +412047,Employment and Training,Employment and Training +412045,Employment and Training,Employment and Training +412043,Employment and Training,Employment and Training +412039,Employment and Training,Employment and Training +411919,Employment and Training,Employment and Training +411917,Employment and Training,Employment and Training +411916,Employment and Training,Employment and Training +411915,Employment and Training,Employment and Training +411914,Employment and Training,Employment and Training +411913,Employment and Training,Employment and Training +411912,Employment and Training,Employment and Training +411911,Employment and Training,Employment and Training +411910,Employment and Training,Employment and Training +411908,Employment and Training,Employment and Training +411907,Employment and Training,Employment and Training +411906,Employment and Training,Employment and Training +411886,Employment and Training,Employment and Training +411885,Employment and Training,Employment and Training +411882,Employment and Training,Employment and Training +411881,Employment and Training,Employment and Training +411880,Employment and Training,Employment and Training +411878,Employment and Training,Employment and Training +397253,Employment and Training,Employment and Training +390723,Employment and Training,Employment and Training +390718,Employment and Training,Employment and Training +390716,Employment and Training,Employment and Training +390710,Employment and Training,Employment and Training +390706,Employment and Training,Employment and Training +390700,Employment and Training,Employment and Training +390687,Employment and Training,Employment and Training +390669,Employment and Training,Employment and Training +390656,Employment and Training,Employment and Training +390472,Employment and Training,Employment and Training +390471,Employment and Training,Employment and Training +390469,Employment and Training,Employment and Training +390468,Employment and Training,Employment and Training +437235,Employment and Training,Employment and Training +411915,Energy,Energy +411914,Energy,Energy +411913,Energy,Energy +411912,Energy,Energy +411911,Energy,Energy +411910,Energy,Energy +411908,Energy,Energy +411907,Energy,Energy +411906,Energy,Energy +411886,Energy,Energy +411885,Energy,Energy +411882,Energy,Energy +411881,Energy,Energy +411880,Energy,Energy +411878,Energy,Energy +397253,Energy,Energy +390723,Energy,Energy +390718,Energy,Energy +390716,Energy,Energy +390710,Energy,Energy +390706,Energy,Energy +390700,Energy,Energy +390687,Energy,Energy +390669,Energy,Energy +390656,Energy,Energy +390472,Energy,Energy +390471,Energy,Energy +390469,Energy,Energy +390468,Energy,Energy +390466,Energy,Energy +390465,Energy,Energy +390464,Energy,Energy +390463,Energy,Energy +390462,Energy,Energy +390461,Energy,Energy +390460,Energy,Energy +390459,Energy,Energy +390457,Energy,Energy +390456,Energy,Energy +390455,Energy,Energy +390454,Energy,Energy +390453,Energy,Energy +390452,Energy,Energy +390429,Energy,Energy +390428,Energy,Energy +390427,Energy,Energy +390426,Energy,Energy +390425,Energy,Energy +390423,Energy,Energy +390420,Energy,Energy +390417,Energy,Energy +390416,Energy,Energy +390415,Energy,Energy +390411,Energy,Energy +390406,Energy,Energy +390401,Energy,Energy +390399,Energy,Energy +390387,Energy,Energy +390383,Energy,Energy +390380,Energy,Energy +390368,Energy,Energy +390350,Energy,Energy +390343,Energy,Energy +390331,Energy,Energy +390321,Energy,Energy +390306,Energy,Energy +390297,Energy,Energy +390291,Energy,Energy +390283,Energy,Energy +390270,Energy,Energy +390262,Energy,Energy +390255,Energy,Energy +390242,Energy,Energy +390237,Energy,Energy +390235,Energy,Energy +390228,Energy,Energy +390223,Energy,Energy +390217,Energy,Energy +390211,Energy,Energy +390200,Energy,Energy +390196,Energy,Energy +390189,Energy,Energy +390178,Energy,Energy +390171,Energy,Energy +437386,Energy,Energy +437367,Energy,Energy +437284,Energy,Energy +437273,Energy,Energy +437270,Energy,Energy +437263,Energy,Energy +437260,Energy,Energy +437259,Energy,Energy +437254,Energy,Energy +437253,Energy,Energy +437251,Energy,Energy +437250,Energy,Energy +437249,Energy,Energy +437248,Energy,Energy +437246,Energy,Energy +437244,Energy,Energy +437243,Energy,Energy +437242,Energy,Energy +437241,Energy,Energy +437240,Energy,Energy +437239,Energy,Energy +437238,Energy,Energy +437237,Energy,Energy +437236,Energy,Energy +437235,Energy,Energy +437233,Energy,Energy +437232,Energy,Energy +437229,Energy,Energy +437227,Energy,Energy +437224,Energy,Energy +437223,Energy,Energy +437221,Energy,Energy +437219,Energy,Energy +437218,Energy,Energy +437204,Energy,Energy +437203,Energy,Energy +437202,Energy,Energy +437201,Energy,Energy +437198,Energy,Energy +437195,Energy,Energy +437194,Energy,Energy +437192,Energy,Energy +437191,Energy,Energy +437190,Energy,Energy +437188,Energy,Energy +437186,Energy,Energy +437185,Energy,Energy +437184,Energy,Energy +437182,Energy,Energy +437180,Energy,Energy +437179,Energy,Energy +437176,Energy,Energy +437175,Energy,Energy +437174,Energy,Energy +437171,Energy,Energy +427531,Energy,Energy +427530,Energy,Energy +427528,Energy,Energy +427525,Energy,Energy +412342,Energy,Energy +412340,Energy,Energy +412336,Energy,Energy +412262,Energy,Energy +412258,Energy,Energy +412255,Energy,Energy +412252,Energy,Energy +412251,Energy,Energy +412248,Energy,Energy +412244,Energy,Energy +412237,Energy,Energy +412235,Energy,Energy +412231,Energy,Energy +412174,Energy,Energy +412172,Energy,Energy +412171,Energy,Energy +412170,Energy,Energy +412169,Energy,Energy +412168,Energy,Energy +412166,Energy,Energy +412142,Energy,Energy +412139,Energy,Energy +412138,Energy,Energy +412132,Energy,Energy +412130,Energy,Energy +412129,Energy,Energy +412126,Energy,Energy +412113,Energy,Energy +412110,Energy,Energy +412109,Energy,Energy +412107,Energy,Energy +412104,Energy,Energy +412102,Energy,Energy +412094,Energy,Energy +412093,Energy,Energy +412090,Energy,Energy +412089,Energy,Energy +412087,Energy,Energy +412085,Energy,Energy +412084,Energy,Energy +412082,Energy,Energy +412080,Energy,Energy +412075,Energy,Energy +412073,Energy,Energy +412072,Energy,Energy +412070,Energy,Energy +412067,Energy,Energy +412063,Energy,Energy +412061,Energy,Energy +412058,Energy,Energy +412055,Energy,Energy +412053,Energy,Energy +412051,Energy,Energy +412047,Energy,Energy +412045,Energy,Energy +412043,Energy,Energy +412039,Energy,Energy +411919,Energy,Energy +411917,Energy,Energy +412104,Environment,Environment +412102,Environment,Environment +390242,Environment,Environment +390237,Environment,Environment +390235,Environment,Environment +390228,Environment,Environment +390223,Environment,Environment +390217,Environment,Environment +390211,Environment,Environment +390200,Environment,Environment +390196,Environment,Environment +390189,Environment,Environment +390178,Environment,Environment +390171,Environment,Environment +412094,Environment,Environment +412093,Environment,Environment +412090,Environment,Environment +412089,Environment,Environment +412087,Environment,Environment +412085,Environment,Environment +412084,Environment,Environment +412082,Environment,Environment +412080,Environment,Environment +412075,Environment,Environment +412073,Environment,Environment +412072,Environment,Environment +412070,Environment,Environment +412067,Environment,Environment +412063,Environment,Environment +412061,Environment,Environment +412058,Environment,Environment +412055,Environment,Environment +412053,Environment,Environment +412051,Environment,Environment +412047,Environment,Environment +412045,Environment,Environment +412043,Environment,Environment +412039,Environment,Environment +411919,Environment,Environment +411917,Environment,Environment +411915,Environment,Environment +411913,Environment,Environment +411912,Environment,Environment +411911,Environment,Environment +411910,Environment,Environment +411908,Environment,Environment +411906,Environment,Environment +411886,Environment,Environment +411885,Environment,Environment +411882,Environment,Environment +411881,Environment,Environment +397253,Environment,Environment +390723,Environment,Environment +390718,Environment,Environment +390716,Environment,Environment +390710,Environment,Environment +390706,Environment,Environment +390700,Environment,Environment +390687,Environment,Environment +390669,Environment,Environment +390656,Environment,Environment +390472,Environment,Environment +390471,Environment,Environment +390469,Environment,Environment +390468,Environment,Environment +390466,Environment,Environment +390465,Environment,Environment +390464,Environment,Environment +390463,Environment,Environment +390462,Environment,Environment +390461,Environment,Environment +390460,Environment,Environment +390459,Environment,Environment +390457,Environment,Environment +390456,Environment,Environment +390455,Environment,Environment +390454,Environment,Environment +390453,Environment,Environment +390452,Environment,Environment +390429,Environment,Environment +390428,Environment,Environment +390427,Environment,Environment +390426,Environment,Environment +390425,Environment,Environment +390423,Environment,Environment +390420,Environment,Environment +390417,Environment,Environment +390416,Environment,Environment +390415,Environment,Environment +390411,Environment,Environment +390406,Environment,Environment +390401,Environment,Environment +390399,Environment,Environment +390387,Environment,Environment +390383,Environment,Environment +390380,Environment,Environment +390368,Environment,Environment +390350,Environment,Environment +390343,Environment,Environment +390331,Environment,Environment +390321,Environment,Environment +390306,Environment,Environment +390297,Environment,Environment +390291,Environment,Environment +390283,Environment,Environment +390270,Environment,Environment +390262,Environment,Environment +390255,Environment,Environment +437284,Environment,Environment +437254,Environment,Environment +437251,Environment,Environment +437248,Environment,Environment +437244,Environment,Environment +437243,Environment,Environment +437241,Environment,Environment +437236,Environment,Environment +437235,Environment,Environment +437221,Environment,Environment +437220,Environment,Environment +437219,Environment,Environment +437204,Environment,Environment +437203,Environment,Environment +437202,Environment,Environment +437201,Environment,Environment +437198,Environment,Environment +437194,Environment,Environment +437192,Environment,Environment +437191,Environment,Environment +437188,Environment,Environment +437186,Environment,Environment +437185,Environment,Environment +437182,Environment,Environment +437180,Environment,Environment +437179,Environment,Environment +437176,Environment,Environment +437174,Environment,Environment +437171,Environment,Environment +412342,Environment,Environment +412340,Environment,Environment +412336,Environment,Environment +412262,Environment,Environment +412258,Environment,Environment +412255,Environment,Environment +412252,Environment,Environment +412251,Environment,Environment +412248,Environment,Environment +412244,Environment,Environment +412237,Environment,Environment +412235,Environment,Environment +412231,Environment,Environment +412174,Environment,Environment +412172,Environment,Environment +412171,Environment,Environment +412170,Environment,Environment +412169,Environment,Environment +412168,Environment,Environment +412166,Environment,Environment +412142,Environment,Environment +412139,Environment,Environment +412138,Environment,Environment +412132,Environment,Environment +412130,Environment,Environment +412129,Environment,Environment +412126,Environment,Environment +412113,Environment,Environment +412110,Environment,Environment +412109,Environment,Environment +411880,Industry,Industry +390417,Industry,Industry +437190,Industry,Industry +427531,Industry,Industry +427530,Industry,Industry +427528,Industry,Industry +427525,Industry,Industry +411917,Labour,Labour +411916,Labour,Labour +411915,Labour,Labour +411914,Labour,Labour +411913,Labour,Labour +411912,Labour,Labour +411911,Labour,Labour +411910,Labour,Labour +411908,Labour,Labour +411907,Labour,Labour +411906,Labour,Labour +411886,Labour,Labour +411885,Labour,Labour +411882,Labour,Labour +411881,Labour,Labour +411880,Labour,Labour +411878,Labour,Labour +408732,Labour,Labour +408731,Labour,Labour +397253,Labour,Labour +390723,Labour,Labour +390718,Labour,Labour +390716,Labour,Labour +390710,Labour,Labour +390706,Labour,Labour +390700,Labour,Labour +390687,Labour,Labour +390669,Labour,Labour +390656,Labour,Labour +390472,Labour,Labour +390471,Labour,Labour +390469,Labour,Labour +390468,Labour,Labour +390466,Labour,Labour +390465,Labour,Labour +390464,Labour,Labour +390463,Labour,Labour +390462,Labour,Labour +390461,Labour,Labour +390460,Labour,Labour +390459,Labour,Labour +390457,Labour,Labour +390456,Labour,Labour +390455,Labour,Labour +390454,Labour,Labour +390453,Labour,Labour +390452,Labour,Labour +390429,Labour,Labour +390428,Labour,Labour +390427,Labour,Labour +390426,Labour,Labour +390425,Labour,Labour +390423,Labour,Labour +390420,Labour,Labour +390416,Labour,Labour +390415,Labour,Labour +390411,Labour,Labour +390406,Labour,Labour +390401,Labour,Labour +390399,Labour,Labour +390387,Labour,Labour +390383,Labour,Labour +390380,Labour,Labour +390368,Labour,Labour +390350,Labour,Labour +390343,Labour,Labour +390331,Labour,Labour +390321,Labour,Labour +390306,Labour,Labour +390297,Labour,Labour +390291,Labour,Labour +390283,Labour,Labour +390270,Labour,Labour +390262,Labour,Labour +390255,Labour,Labour +390242,Labour,Labour +390237,Labour,Labour +390235,Labour,Labour +390228,Labour,Labour +390223,Labour,Labour +390217,Labour,Labour +390211,Labour,Labour +390200,Labour,Labour +390196,Labour,Labour +390189,Labour,Labour +390178,Labour,Labour +390171,Labour,Labour +437386,Labour,Labour +437367,Labour,Labour +437273,Labour,Labour +437270,Labour,Labour +437263,Labour,Labour +437259,Labour,Labour +437254,Labour,Labour +437253,Labour,Labour +437250,Labour,Labour +437249,Labour,Labour +437246,Labour,Labour +437241,Labour,Labour +437240,Labour,Labour +437238,Labour,Labour +437237,Labour,Labour +437233,Labour,Labour +437232,Labour,Labour +437223,Labour,Labour +437221,Labour,Labour +437184,Labour,Labour +437182,Labour,Labour +437180,Labour,Labour +437179,Labour,Labour +437175,Labour,Labour +437171,Labour,Labour +412342,Labour,Labour +412340,Labour,Labour +412336,Labour,Labour +412262,Labour,Labour +412258,Labour,Labour +412255,Labour,Labour +412252,Labour,Labour +412251,Labour,Labour +412248,Labour,Labour +412244,Labour,Labour +412237,Labour,Labour +412235,Labour,Labour +412231,Labour,Labour +412174,Labour,Labour +412172,Labour,Labour +412171,Labour,Labour +412170,Labour,Labour +412169,Labour,Labour +412168,Labour,Labour +412166,Labour,Labour +412142,Labour,Labour +412139,Labour,Labour +412138,Labour,Labour +412132,Labour,Labour +412130,Labour,Labour +412129,Labour,Labour +412126,Labour,Labour +412113,Labour,Labour +412110,Labour,Labour +412109,Labour,Labour +412107,Labour,Labour +412104,Labour,Labour +412102,Labour,Labour +412094,Labour,Labour +412093,Labour,Labour +412090,Labour,Labour +412089,Labour,Labour +412087,Labour,Labour +412085,Labour,Labour +412084,Labour,Labour +412082,Labour,Labour +412080,Labour,Labour +412075,Labour,Labour +412073,Labour,Labour +412072,Labour,Labour +412070,Labour,Labour +412067,Labour,Labour +412063,Labour,Labour +412061,Labour,Labour +412058,Labour,Labour +412055,Labour,Labour +412053,Labour,Labour +412051,Labour,Labour +412047,Labour,Labour +412045,Labour,Labour +412043,Labour,Labour +412039,Labour,Labour +391784,Consumer Issues,Consumer Issues +391783,Consumer Issues,Consumer Issues +405870,Consumer Issues,Consumer Issues +404025,Consumer Issues,Consumer Issues +532479,Economic Development,Economic Development +532478,Economic Development,Economic Development +405870,Economic Development,Economic Development +404025,Economic Development,Economic Development +391784,Economic Development,Economic Development +404025,Government Procurement,Government Procurement +532479,Industry,Industry +532478,Industry,Industry +391784,Industry,Industry +405870,Industry,Industry +404025,Industry,Industry +391784,International Trade,International Trade +391783,International Trade,International Trade +392826,Security,Security +391783,Security,Security +391783,Transportation,Transportation +442904,Industry,Industry +442903,Industry,Industry +396779,Industry,Industry +394602,Industry,Industry +389089,Industry,Industry +455475,Industry,Industry +442906,Mining,Mining +442904,Mining,Mining +442903,Mining,Mining +389089,Mining,Mining +455475,Mining,Mining +389755,Economic Development,Développement économique +512797,Economic Development,Développement économique +510023,Economic Development,Développement économique +508781,Economic Development,Développement économique +508764,Economic Development,Développement économique +431768,Economic Development,Développement économique +429449,Economic Development,Développement économique +429407,Economic Development,Développement économique +417696,Economic Development,Développement économique +408693,Economic Development,Développement économique +403145,Economic Development,Développement économique +396102,Economic Development,Développement économique +393891,Economic Development,Développement économique +393890,Economic Development,Développement économique +389796,Economic Development,Développement économique +508764,Energy,Énergie +452799,Energy,Énergie +393891,Energy,Énergie +393890,Energy,Énergie +392224,Energy,Énergie +389796,Energy,Énergie +389771,Energy,Énergie +389768,Energy,Énergie +389764,Energy,Énergie +389755,Energy,Énergie +452790,Energy,Énergie +452788,Energy,Énergie +452781,Energy,Énergie +452770,Energy,Énergie +435439,Energy,Énergie +435438,Energy,Énergie +432361,Energy,Énergie +431768,Energy,Énergie +429449,Energy,Énergie +429441,Energy,Énergie +429427,Energy,Énergie +429419,Energy,Énergie +429414,Energy,Énergie +429413,Energy,Énergie +429407,Energy,Énergie +426826,Energy,Énergie +426822,Energy,Énergie +422346,Energy,Énergie +417696,Energy,Énergie +416921,Energy,Énergie +416920,Energy,Énergie +416918,Energy,Énergie +408696,Energy,Énergie +408695,Energy,Énergie +408694,Energy,Énergie +408693,Energy,Énergie +403180,Energy,Énergie +403151,Energy,Énergie +403145,Energy,Énergie +400472,Energy,Énergie +400471,Energy,Énergie +396117,Energy,Énergie +396102,Energy,Énergie +393893,Energy,Énergie +512797,Energy,Énergie +512757,Energy,Énergie +510025,Energy,Énergie +510024,Energy,Énergie +510023,Energy,Énergie +510020,Energy,Énergie +510023,Environment,Environnement +510020,Environment,Environnement +452799,Environment,Environnement +452790,Environment,Environnement +452788,Environment,Environnement +452781,Environment,Environnement +452770,Environment,Environnement +435439,Environment,Environnement +435438,Environment,Environnement +432361,Environment,Environnement +429441,Environment,Environnement +429427,Environment,Environnement +429414,Environment,Environnement +429413,Environment,Environnement +422346,Environment,Environnement +417696,Environment,Environnement +416921,Environment,Environnement +408696,Environment,Environnement +408695,Environment,Environnement +408694,Environment,Environnement +403180,Environment,Environnement +403151,Environment,Environnement +403145,Environment,Environnement +400472,Environment,Environnement +400471,Environment,Environnement +396117,Environment,Environnement +396102,Environment,Environnement +393893,Environment,Environnement +393891,Environment,Environnement +389796,Environment,Environnement +389771,Environment,Environnement +389768,Environment,Environnement +389764,Environment,Environnement +389755,Environment,Environnement +510025,Environment,Environnement +389764,Infrastructure,Infrastructure +389755,Infrastructure,Infrastructure +452799,Infrastructure,Infrastructure +452790,Infrastructure,Infrastructure +452788,Infrastructure,Infrastructure +452781,Infrastructure,Infrastructure +452770,Infrastructure,Infrastructure +435439,Infrastructure,Infrastructure +435438,Infrastructure,Infrastructure +432361,Infrastructure,Infrastructure +431768,Infrastructure,Infrastructure +429449,Infrastructure,Infrastructure +429441,Infrastructure,Infrastructure +429427,Infrastructure,Infrastructure +429419,Infrastructure,Infrastructure +429407,Infrastructure,Infrastructure +426826,Infrastructure,Infrastructure +426822,Infrastructure,Infrastructure +417696,Infrastructure,Infrastructure +416921,Infrastructure,Infrastructure +416920,Infrastructure,Infrastructure +416918,Infrastructure,Infrastructure +408693,Infrastructure,Infrastructure +403145,Infrastructure,Infrastructure +396102,Infrastructure,Infrastructure +393893,Infrastructure,Infrastructure +393891,Infrastructure,Infrastructure +393890,Infrastructure,Infrastructure +389764,Transportation,Transports +452799,Transportation,Transports +452790,Transportation,Transports +452788,Transportation,Transports +435438,Transportation,Transports +432361,Transportation,Transports +429414,Transportation,Transports +429413,Transportation,Transports +408696,Transportation,Transports +408695,Transportation,Transports +408694,Transportation,Transports +403145,Transportation,Transports +400471,Transportation,Transports +396117,Transportation,Transports +396102,Transportation,Transports +389796,Transportation,Transports +389771,Transportation,Transports +418897,Health,Health +410494,Health,Health +453134,Health,Health +450579,Health,Health +446866,Health,Health +445465,Health,Health +443767,Health,Health +436391,Health,Health +428708,Health,Health +424350,Health,Health +410494,Industry,Industry +417023,Industry,Industry +417022,Industry,Industry +417022,Economic Development,Economic Development +425987,Health,Health +423366,Health,Health +410493,Health,Health +410480,Health,Health +402262,Health,Health +402261,Health,Health +402260,Health,Health +402259,Health,Health +392371,Health,Health +392370,Health,Health +392366,Health,Health +392357,Health,Health +392354,Health,Health +392353,Health,Health +389996,Health,Health +443060,Health,Health +440855,Health,Health +436390,Health,Health +434031,Health,Health +433275,Health,Health +432781,Health,Health +432477,Health,Health +431432,Health,Health +392353,Industry,Industry +389996,Industry,Industry +443060,Industry,Industry +440855,Industry,Industry +436390,Industry,Industry +434031,Industry,Industry +433275,Industry,Industry +432781,Industry,Industry +432477,Industry,Industry +431432,Industry,Industry +430182,Industry,Industry +425987,Industry,Industry +410493,Industry,Industry +410480,Industry,Industry +392371,Industry,Industry +392370,Industry,Industry +392357,Industry,Industry +389163,Budget,Budget +389162,Budget,Budget +395676,Budget,Budget +395673,Budget,Budget +393332,Budget,Budget +392284,Budget,Budget +389168,Budget,Budget +389165,Budget,Budget +391417,Immigration,Immigration +391413,Immigration,Immigration +391374,Immigration,Immigration +395183,Immigration,Immigration +395182,Immigration,Immigration +395181,Immigration,Immigration +395180,Immigration,Immigration +395179,Immigration,Immigration +395178,Immigration,Immigration +395177,Immigration,Immigration +391463,Immigration,Immigration +391455,Immigration,Immigration +391432,Immigration,Immigration +391426,Immigration,Immigration +393144,Climate,Climat +393143,Climate,Climat +393149,Climate,Climat +393148,Climate,Climat +393147,Climate,Climat +393146,Climate,Climat +393143,Economic Development,Développement économique +400094,Economic Development,Développement économique +393143,Energy,Énergie +400094,Energy,Énergie +393149,Energy,Énergie +393148,Energy,Énergie +393147,Energy,Énergie +393146,Energy,Énergie +393145,Energy,Énergie +393144,Environment,Environnement +393143,Environment,Environnement +393149,Environment,Environnement +393148,Environment,Environnement +393147,Environment,Environnement +393146,Environment,Environnement +404276,Health,Health +391145,Health,Health +429091,Health,Health +401911,Labour,Labour +399628,Labour,Labour +401911,Industry,Industry +399628,Industry,Industry +416464,Justice and Law Enforcement,Justice and Law Enforcement +416464,Consumer Issues,Consumer Issues +401904,Consumer Issues,Consumer Issues +416464,Financial Institutions,Financial Institutions +401904,Financial Institutions,Financial Institutions +421945,Financial Institutions,Financial Institutions +390549,Economic Development,Economic Development +390542,Economic Development,Economic Development +400476,Economic Development,Economic Development +400474,Economic Development,Economic Development +390549,Industry,Industry +390542,Industry,Industry +410452,Industry,Industry +400476,Industry,Industry +400474,Industry,Industry +390549,International Trade,International Trade +390542,International Trade,International Trade +410452,International Trade,International Trade +400476,International Trade,International Trade +400474,International Trade,International Trade +390549,Small Business,Small Business +390542,Small Business,Small Business +410452,Small Business,Small Business +400476,Small Business,Small Business +400474,Small Business,Small Business +390549,Taxation and Finance,Taxation and Finance +390542,Taxation and Finance,Taxation and Finance +410452,Taxation and Finance,Taxation and Finance +400476,Taxation and Finance,Taxation and Finance +400474,Taxation and Finance,Taxation and Finance +396517,Housing,Housing +393664,Housing,Housing +392805,Housing,Housing +417451,Housing,Housing +410474,Housing,Housing +396532,Housing,Housing +421266,Health,Health +421264,Health,Health +410827,Health,Health +395022,Taxation and Finance,Taxation and Finance +389239,Taxation and Finance,Taxation and Finance +410836,Economic Development,Economic Development +403965,Economic Development,Economic Development +391856,Economic Development,Economic Development +391855,Economic Development,Economic Development +423167,Economic Development,Economic Development +423166,Economic Development,Economic Development +418836,Economic Development,Economic Development +418329,Economic Development,Economic Development +406308,Economic Development,Economic Development +404320,Economic Development,Economic Development +406308,Industry,Industry +404320,Industry,Industry +406308,Infrastructure,Infrastructure +404320,Infrastructure,Infrastructure +406308,Municipalities,Municipalities +404320,Municipalities,Municipalities +404320,Regional Development,Regional Development +391948,Regional Development,Regional Development +410944,Regional Development,Regional Development +406308,Tourism,Tourism +404320,Tourism,Tourism +406308,Transportation,Transportation +404320,Transportation,Transportation +442988,Housing,Housing +419174,Housing,Housing +399632,Housing,Housing +399630,Housing,Housing +396732,Housing,Housing +396692,Housing,Housing +394676,Housing,Housing +394673,Housing,Housing +394671,Housing,Housing +419174,Immigration,Immigration +496833,Immigration,Immigration +399632,Immigration,Immigration +389303,Immigration,Immigration +520203,Immigration,Immigration +511796,Immigration,Immigration +394675,Immigration,Immigration +394673,Immigration,Immigration +389308,Immigration,Immigration +496834,Immigration,Immigration +462929,Immigration,Immigration +442988,Immigration,Immigration +389309,Economic Development,Economic Development +475050,Government Procurement,Government Procurement +484268,Government Procurement,Government Procurement +481427,Government Procurement,Government Procurement +479864,Government Procurement,Government Procurement +477546,Government Procurement,Government Procurement +399721,Economic Development,Economic Development +399721,Research and Development,Research and Development +418408,Environment,Environment +410551,Environment,Environment +410550,Environment,Environment +410549,Environment,Environment +404151,Environment,Environment +397522,Environment,Environment +394575,Environment,Environment +393014,Environment,Environment +393013,Environment,Environment +393012,Environment,Environment +393011,Environment,Environment +428140,Environment,Environment +428139,Environment,Environment +465942,Regional Development,Regional Development +465941,Regional Development,Regional Development +465938,Regional Development,Regional Development +465936,Regional Development,Regional Development +463624,Regional Development,Regional Development +463623,Regional Development,Regional Development +458354,Regional Development,Regional Development +451237,Regional Development,Regional Development +451234,Regional Development,Regional Development +443077,Regional Development,Regional Development +443076,Regional Development,Regional Development +443075,Regional Development,Regional Development +443074,Regional Development,Regional Development +443073,Regional Development,Regional Development +440811,Regional Development,Regional Development +440810,Regional Development,Regional Development +434807,Regional Development,Regional Development +434802,Regional Development,Regional Development +434801,Regional Development,Regional Development +434798,Regional Development,Regional Development +434792,Regional Development,Regional Development +432994,Regional Development,Regional Development +432992,Regional Development,Regional Development +420658,Regional Development,Regional Development +408620,Regional Development,Regional Development +408619,Regional Development,Regional Development +408618,Regional Development,Regional Development +408616,Regional Development,Regional Development +408615,Regional Development,Regional Development +407660,Regional Development,Regional Development +406303,Regional Development,Regional Development +406301,Regional Development,Regional Development +406300,Regional Development,Regional Development +406299,Regional Development,Regional Development +472574,Tourism,Tourism +472573,Tourism,Tourism +465942,Tourism,Tourism +465941,Tourism,Tourism +465940,Tourism,Tourism +465939,Tourism,Tourism +465938,Tourism,Tourism +465936,Tourism,Tourism +463624,Tourism,Tourism +463623,Tourism,Tourism +463622,Tourism,Tourism +458354,Tourism,Tourism +451237,Tourism,Tourism +451234,Tourism,Tourism +443077,Tourism,Tourism +443076,Tourism,Tourism +443075,Tourism,Tourism +443074,Tourism,Tourism +443073,Tourism,Tourism +440811,Tourism,Tourism +440810,Tourism,Tourism +434807,Tourism,Tourism +434802,Tourism,Tourism +434801,Tourism,Tourism +434798,Tourism,Tourism +434792,Tourism,Tourism +432994,Tourism,Tourism +432992,Tourism,Tourism +431906,Tourism,Tourism +430179,Tourism,Tourism +420658,Tourism,Tourism +418820,Tourism,Tourism +408620,Tourism,Tourism +408619,Tourism,Tourism +408618,Tourism,Tourism +408616,Tourism,Tourism +408615,Tourism,Tourism +407660,Tourism,Tourism +406303,Tourism,Tourism +406301,Tourism,Tourism +406300,Tourism,Tourism +406299,Tourism,Tourism +395428,Tourism,Tourism +395426,Tourism,Tourism +395425,Tourism,Tourism +395424,Tourism,Tourism +395423,Tourism,Tourism +392170,Tourism,Tourism +392169,Tourism,Tourism +392168,Tourism,Tourism +392167,Tourism,Tourism +500537,Tourism,Tourism +500536,Tourism,Tourism +497051,Tourism,Tourism +497049,Tourism,Tourism +497048,Tourism,Tourism +490237,Tourism,Tourism +490234,Tourism,Tourism +486420,Tourism,Tourism +486419,Tourism,Tourism +476972,Tourism,Tourism +472576,Tourism,Tourism +427513,Employment and Training,Employment and Training +427512,Employment and Training,Employment and Training +427511,Employment and Training,Employment and Training +427510,Employment and Training,Employment and Training +418326,Employment and Training,Employment and Training +402966,Employment and Training,Employment and Training +397707,Employment and Training,Employment and Training +498058,Employment and Training,Employment and Training +489224,Employment and Training,Employment and Training +427515,Employment and Training,Employment and Training +485827,Labour,Labour +526664,Climate,Climate +526658,Climate,Climate +413969,Climate,Climate +389406,Climate,Climate +463953,Climate,Climate +438942,Climate,Climate +397725,Energy,Energy +397724,Environment,Environment +397723,Environment,Environment +402934,Environment,Environment +397728,Environment,Environment +397724,Municipalities,Municipalities +397723,Municipalities,Municipalities +402934,Municipalities,Municipalities +397728,Municipalities,Municipalities +397726,Municipalities,Municipalities +390893,Economic Development,Economic Development +390890,Economic Development,Economic Development +416280,Economic Development,Economic Development +416277,Economic Development,Economic Development +416276,Economic Development,Economic Development +390905,Economic Development,Economic Development +390904,Economic Development,Economic Development +390902,Economic Development,Economic Development +390898,Economic Development,Economic Development +390893,Employment and Training,Employment and Training +390890,Employment and Training,Employment and Training +416286,Employment and Training,Employment and Training +390904,Employment and Training,Employment and Training +390902,Employment and Training,Employment and Training +390896,Energy,Energy +390893,Energy,Energy +390904,Energy,Energy +390902,Energy,Energy +390898,Environment,Environment +390893,Environment,Environment +390904,Environment,Environment +390893,Housing,Housing +416277,Infrastructure,Infrastructure +416276,Infrastructure,Infrastructure +390905,Infrastructure,Infrastructure +390904,Infrastructure,Infrastructure +390902,Infrastructure,Infrastructure +390898,Infrastructure,Infrastructure +390896,Infrastructure,Infrastructure +390893,Infrastructure,Infrastructure +520277,Employment and Training,Employment and Training +535970,Labour,Labour +535965,Labour,Labour +391160,Labour,Labour +528201,Labour,Labour +504871,Labour,Labour +538451,Labour,Labour +538447,Labour,Labour +392052,Budget,Budget +392003,Budget,Budget +392055,Budget,Budget +392054,Budget,Budget +392052,Economic Development,Economic Development +392003,Economic Development,Economic Development +413829,Economic Development,Economic Development +413827,Economic Development,Economic Development +402107,Economic Development,Economic Development +402105,Economic Development,Economic Development +402098,Economic Development,Economic Development +392055,Economic Development,Economic Development +392052,Industry,Industry +413827,Industry,Industry +402107,Industry,Industry +402102,Industry,Industry +394591,Government Procurement,Government Procurement +389517,Government Procurement,Government Procurement +396384,Health,Health +396369,Health,Health +404727,Health,Health +445139,Agriculture,Agriculture +445138,Agriculture,Agriculture +523739,Agriculture,Agriculture +523738,Agriculture,Agriculture +523737,Agriculture,Agriculture +497626,Agriculture,Agriculture +497624,Agriculture,Agriculture +465148,Agriculture,Agriculture +465147,Agriculture,Agriculture +410804,Transportation,Transportation +410801,Economic Development,Economic Development +472761,Fisheries,Fisheries +395275,Transportation,Transportation +393181,Infrastructure,Infrastructure +392048,Transportation,Transportation +388921,Infrastructure,Infrastructure +388907,Taxation and Finance,Taxation and Finance +391970,Health,Health +391968,Health,Health +397886,Tourism,Tourism +397886,Small Business,Small Business +397886,Transportation,Transportation +440542,Industry,Industry +389133,Transportation,Transportation +389133,Environment,Environment +389133,Industry,Industry +389133,Internal Trade,Internal Trade +389133,International Trade,International Trade +390080,Defence,Defence +390080,Government Procurement,Government Procurement +390080,Economic Development,Economic Development +395278,Fisheries,Fisheries +395278,Transportation,Transportation +414647,Government Procurement,Government Procurement +396258,Energy,Energy +388950,Economic Development,Economic Development +542475,Climate,Climate +533021,Economic Development,Economic Development +542475,Energy,Energy +428336,Environment,Environment +460184,Infrastructure,Infrastructure +443082,Taxation and Finance,Taxation and Finance +395794,International Trade,International Trade +392487,Agriculture,Agriculture +392482,Employment and Training,Employment and Training +392785,Taxation and Finance,Taxation and Finance +408328,Budget,Budget +397239,Health,Health +397217,Economic Development,Développement économique +397217,Research and Development,Recherche et développement +389660,Taxation and Finance,Taxation and Finance +390580,Infrastructure,Infrastructure +389687,Infrastructure,Infrastructure +424798,Internal Trade,Commerce intérieur +424798,International Trade,Commerce international +424798,Economic Development,Développement économique +424798,Regional Development,Développement régional +424798,Environment,Environnement +424798,Infrastructure,Infrastructure +424798,Transportation,Transports +412094,Economic Development,Economic Development +437227,Employment and Training,Employment and Training +411916,Energy,Energy +412107,Environment,Environment +411882,Industry,Industry +411919,Labour,Labour +392826,Consumer Issues,Consumer Issues +539206,Economic Development,Economic Development +404025,Environment,Environment +405870,Government Procurement,Government Procurement +539206,Industry,Industry +539206,Intellectual Property,Intellectual Property +392826,International Trade,International Trade +405870,Security,Security +392826,Transportation,Transportation +389085,Financial Institutions,Financial Institutions +389618,Infrastructure,Infrastructure +442906,Industry,Industry +447803,Mining,Mining +389771,Economic Development,Développement économique +508781,Energy,Énergie +510024,Environment,Environnement +389796,Infrastructure,Infrastructure +389768,Transportation,Transports +401395,Employment and Training,Employment and Training +402631,Consumer Issues,Consumer Issues +402631,Economic Development,Economic Development +402631,Environment,Environment +402631,Government Procurement,Government Procurement +402631,Industry,Industry +402631,Intellectual Property,Intellectual Property +402631,International Trade,International Trade +402631,Security,Security +402631,Transportation,Transportation +423926,Health,Health +436391,Industry,Industry +391127,Industry,Industry +391127,Transportation,Transportation +391127,Consumer Issues,Consumer Issues +417023,Economic Development,Economic Development +391127,Security,Security +430182,Health,Health +392354,Industry,Industry +389164,Budget,Budget +389166,International Trade,International Trade +389167,International Trade,International Trade +391424,Immigration,Immigration +389175,Climate,Climate +393145,Climate,Climat +393149,Economic Development,Développement économique +393144,Energy,Énergie +393145,Environment,Environnement +393143,Financial Institutions,Institutions financières +418390,Health,Health +404076,Labour,Labour +404076,Industry,Industry +416665,Justice and Law Enforcement,Justice and Law Enforcement +416665,Consumer Issues,Consumer Issues +416665,Financial Institutions,Financial Institutions +390553,Economic Development,Economic Development +390553,Industry,Industry +390553,International Trade,International Trade +390553,Small Business,Small Business +390553,Taxation and Finance,Taxation and Finance +393664,Economic Development,Economic Development +393664,Health,Health +396530,Housing,Housing +393664,Labour,Labour +395986,Health,Health +418447,Taxation and Finance,Taxation and Finance +414893,Economic Development,Economic Development +403965,Research and Development,Research and Development +410944,Economic Development,Economic Development +410944,Industry,Industry +410944,Infrastructure,Infrastructure +410944,Municipalities,Municipalities +406308,Regional Development,Regional Development +410944,Tourism,Tourism +410944,Transportation,Transportation +389480,Education,Education +389480,Health,Health +389480,Research and Development,Research and Development +389302,Housing,Housing +431646,Immigration,Immigration +419173,Immigration,Immigration +389307,Economic Development,Economic Development +393740,Economic Development,Economic Development +389314,Security,Security +415686,Forestry,Forestry +393144,Government Procurement,Government Procurement +477540,Government Procurement,Government Procurement +399723,Economic Development,Economic Development +399722,International Trade,International Trade +399723,Research and Development,Research and Development +404151,Energy,Energy +418409,Environment,Environment +476972,Regional Development,Regional Development +472575,Tourism,Tourism +427514,Employment and Training,Employment and Training +429769,Labour,Labour +403165,International Development,International Development +417769,Health,Health +425357,Climate,Climate +389406,Research and Development,Research and Development +397728,Energy,Energy +397725,Environment,Environment +397725,Municipalities,Municipalities +390896,Economic Development,Economic Development +390898,Employment and Training,Employment and Training +390898,Energy,Energy +390902,Environment,Environment +390898,Housing,Housing +416280,Infrastructure,Infrastructure +535968,Employment and Training,Employment and Training +538441,Labour,Labour +392053,Budget,Budget +392054,Economic Development,Economic Development +392055,Industry,Industry +394592,Government Procurement,Government Procurement +396389,Health,Health +390697,International Trade,International Trade +390697,Labour,Labour +390697,Taxation and Finance,Taxation and Finance +465146,Agriculture,Agriculture +513565,Government Procurement,Government Procurement +400345,Consumer Issues,Consumer Issues +400352,Financial Institutions,Financial Institutions +400350,Industry,Industry +400350,Taxation and Finance,Taxation and Finance +389579,Intellectual Property,Intellectual Property +450893,Transportation,Transportation +395111,Environment,Environment +392925,Infrastructure,Infrastructure +395111,Transportation,Transportation +393686,Education,Éducation +393686,Official Languages,Langues officielles +397691,Industry,Industry +397691,Research and Development,Research and Development +397691,Economic Development,Economic Development +389711,Industry,Industry +397722,Municipalities,Municipalities +405872,Taxation and Finance,Taxation and Finance +389729,Sports,Sports +389777,Education,Education +391740,Infrastructure,Infrastructure +394881,Education,Education +394881,Health,Health +424282,Industry,Industry +424282,Transportation,Transportation +481902,International Trade,International Trade +391945,Regional Development,Regional Development +391945,Energy,Energy +393104,Agriculture,Agriculture +393104,Health,Health +393099,Industry,Industry +393104,Internal Trade,Internal Trade +392002,Budget,Budget +391999,Climate,Climate +392002,Economic Development,Economic Development +392000,Housing,Housing +392001,Infrastructure,Infrastructure +392000,Municipalities,Municipalities +392000,Taxation and Finance,Taxation and Finance +397573,Health,Health +456694,Industry,Industry +397545,Defence,Defence +397544,Transportation,Transportation +395282,International Relations,International Relations +397684,Industry,Industry +392148,Consumer Issues,Consumer Issues +400416,Government Procurement,Government Procurement +392148,Taxation and Finance,Taxation and Finance +392148,Small Business,Small Business +392148,Financial Institutions,Financial Institutions +406155,Employment and Training,Employment and Training +406155,Regional Development,Regional Development +408271,Health,Health +415957,Infrastructure,Infrastructure +397790,Infrastructure,Infrastructure +397790,Employment and Training,Employment and Training +397782,Labour,Labour +413237,Agriculture,Agriculture +430848,Energy,Energy +426511,Municipalities,Municipalities +470528,Small Business,Small Business +435515,Taxation and Finance,Taxation and Finance +501888,Economic Development,Economic Development +506157,Industry,Industry +506157,Economic Development,Economic Development +393067,Small Business,Small Business +456321,Economic Development,Economic Development +390108,Industry,Industry +390133,Industry,Industry +486602,Economic Development,Economic Development +390145,Housing,Housing +390149,Housing,Housing +390152,Housing,Housing +392443,Transportation,Transports +393520,Agriculture,Agriculture +419279,Consumer Issues,Consumer Issues +419279,Health,Health +393520,International Relations,International Relations +393520,International Trade,International Trade +390848,Defence,Defence +392938,Environment,Environment +415458,Pensions,Pensions +489024,Agriculture,Agriculture +390564,Government Procurement,Government Procurement +390564,Employment and Training,Employment and Training +400493,Tourism,Tourism +390665,Climate,Climate +391165,Defence,Defence +416280,Tourism,Tourism +400717,Environment,Environment +400717,Energy,Energy +400717,Transportation,Transportation +411278,Education,Education +396907,Industry,Industry +423405,Economic Development,Economic Development +391032,Small Business,Small Business +391256,Agriculture,Agriculture +418701,Industry,Industry +418701,International Trade,International Trade +391283,Agriculture,Agriculture +391283,Transportation,Transportation +488815,Climate,Climate +433658,Pensions,Pensions +435929,International Trade,International Trade +435929,Financial Institutions,Financial Institutions +433655,Taxation and Finance,Taxation and Finance +504411,Budget,Budget +426259,Economic Development,Economic Development +439094,Employment and Training,Employment and Training +418148,Immigration,Immigration +466897,Intellectual Property,Intellectual Property +426259,International Trade,International Trade +426257,Municipalities,Municipalities +471274,Privacy and Access to Information,Privacy and Access to Information +538159,Regional Development,Regional Development +408036,Security,Security +504409,Small Business,Small Business +394206,Energy,Energy +391387,Taxation and Finance,Taxation and Finance +399100,Security,Security +391445,Environment,Environment +391447,Economic Development,Economic Development +409790,Defence,Defence +414644,Government Procurement,Government Procurement +508833,Government Procurement,Government Procurement +491456,Government Procurement,Government Procurement +473767,Government Procurement,Government Procurement +462783,Government Procurement,Government Procurement +458820,Government Procurement,Government Procurement +452343,Government Procurement,Government Procurement +447587,Government Procurement,Government Procurement +430575,Government Procurement,Government Procurement +414650,Government Procurement,Government Procurement +404559,Government Procurement,Government Procurement +400350,Financial Institutions,Financial Institutions +400348,Financial Institutions,Financial Institutions +400382,Financial Institutions,Financial Institutions +400381,Financial Institutions,Financial Institutions +400380,Financial Institutions,Financial Institutions +400379,Financial Institutions,Financial Institutions +400348,Industry,Industry +400345,Industry,Industry +400382,Industry,Industry +400381,Industry,Industry +400380,Industry,Industry +400379,Industry,Industry +400352,Industry,Industry +400348,Taxation and Finance,Taxation and Finance +400345,Taxation and Finance,Taxation and Finance +400382,Taxation and Finance,Taxation and Finance +400381,Taxation and Finance,Taxation and Finance +400380,Taxation and Finance,Taxation and Finance +400379,Taxation and Finance,Taxation and Finance +400352,Taxation and Finance,Taxation and Finance +389578,Intellectual Property,Intellectual Property +389577,Intellectual Property,Intellectual Property +389582,Intellectual Property,Intellectual Property +389581,Intellectual Property,Intellectual Property +389580,Intellectual Property,Intellectual Property +438065,Transportation,Transportation +412529,Transportation,Transportation +399127,Transportation,Transportation +399126,Transportation,Transportation +389583,Transportation,Transportation +395095,Environment,Environment +392925,Environment,Environment +395095,Transportation,Transportation +392925,Transportation,Transportation +393060,Education,Éducation +389994,Education,Éducation +401998,Education,Éducation +394895,Education,Éducation +393060,Official Languages,Langues officielles +389994,Official Languages,Langues officielles +401998,Official Languages,Langues officielles +394895,Official Languages,Langues officielles +407453,Municipalities,Municipalities +406984,Municipalities,Municipalities +402913,Municipalities,Municipalities +397722,Taxation and Finance,Taxation and Finance +394869,Education,Education +394868,Education,Education +395559,Education,Education +395530,Education,Education +395128,Education,Education +394869,Health,Health +394868,Health,Health +397341,Health,Health +395559,Health,Health +395530,Health,Health +395128,Health,Health +422321,Industry,Industry +420279,Industry,Industry +393101,Agriculture,Agriculture +393099,Internal Trade,Internal Trade +392001,Budget,Budget +392000,Budget,Budget +400583,Budget,Budget +392001,Economic Development,Economic Development +391999,Housing,Housing +400583,Housing,Housing +392002,Housing,Housing +392001,Housing,Housing +392000,Infrastructure,Infrastructure +391999,Infrastructure,Infrastructure +392002,Infrastructure,Infrastructure +391999,Taxation and Finance,Taxation and Finance +397572,Health,Health +397570,Health,Health +397538,Defence,Defence +395512,Defence,Defence +399657,Defence,Defence +399636,Defence,Defence +397628,Defence,Defence +397543,Transportation,Transportation +397542,Transportation,Transportation +397541,Transportation,Transportation +397540,Transportation,Transportation +397539,Transportation,Transportation +397537,Transportation,Transportation +397536,Transportation,Transportation +397535,Transportation,Transportation +397533,Transportation,Transportation +397532,Transportation,Transportation +397526,Transportation,Transportation +397525,Transportation,Transportation +395514,Transportation,Transportation +395512,Transportation,Transportation +395034,Transportation,Transportation +395033,Transportation,Transportation +395031,Transportation,Transportation +395030,Transportation,Transportation +392322,Transportation,Transportation +413891,Transportation,Transportation +410342,Transportation,Transportation +410341,Transportation,Transportation +410339,Transportation,Transportation +410338,Transportation,Transportation +410337,Transportation,Transportation +410336,Transportation,Transportation +399635,Transportation,Transportation +397629,Transportation,Transportation +397627,Transportation,Transportation +397626,Transportation,Transportation +397625,Transportation,Transportation +397624,Transportation,Transportation +397623,Transportation,Transportation +397622,Transportation,Transportation +397620,Transportation,Transportation +397619,Transportation,Transportation +397617,Transportation,Transportation +397616,Transportation,Transportation +397546,Transportation,Transportation +396051,Industry,Industry +392146,Industry,Industry +405187,Industry,Industry +400416,Industry,Industry +397685,Industry,Industry +392147,Consumer Issues,Consumer Issues +392146,Consumer Issues,Consumer Issues +405187,Consumer Issues,Consumer Issues +400416,Consumer Issues,Consumer Issues +397685,Consumer Issues,Consumer Issues +397684,Consumer Issues,Consumer Issues +396051,Consumer Issues,Consumer Issues +392147,Taxation and Finance,Taxation and Finance +392146,Taxation and Finance,Taxation and Finance +405187,Taxation and Finance,Taxation and Finance +400416,Taxation and Finance,Taxation and Finance +397685,Taxation and Finance,Taxation and Finance +397684,Taxation and Finance,Taxation and Finance +396051,Taxation and Finance,Taxation and Finance +392147,Small Business,Small Business +392146,Small Business,Small Business +405187,Small Business,Small Business +400416,Small Business,Small Business +397685,Small Business,Small Business +397684,Small Business,Small Business +392147,Financial Institutions,Financial Institutions +392266,Health,Health +415955,Infrastructure,Infrastructure +415954,Infrastructure,Infrastructure +397788,Infrastructure,Infrastructure +397782,Infrastructure,Infrastructure +398276,Infrastructure,Infrastructure +397788,Employment and Training,Employment and Training +397782,Employment and Training,Employment and Training +398276,Employment and Training,Employment and Training +393494,Labour,Labour +393493,Labour,Labour +398276,Labour,Labour +397790,Labour,Labour +397788,Labour,Labour +410210,Agriculture,Agriculture +409825,Agriculture,Agriculture +535144,Agriculture,Agriculture +535142,Agriculture,Agriculture +535141,Agriculture,Agriculture +535139,Agriculture,Agriculture +535135,Agriculture,Agriculture +535130,Agriculture,Agriculture +535126,Agriculture,Agriculture +535125,Agriculture,Agriculture +535123,Agriculture,Agriculture +493410,Agriculture,Agriculture +470527,Agriculture,Agriculture +445660,Agriculture,Agriculture +426499,Agriculture,Agriculture +415961,Agriculture,Agriculture +415960,Agriculture,Agriculture +415958,Agriculture,Agriculture +415956,Agriculture,Agriculture +415952,Agriculture,Agriculture +470527,Small Business,Small Business +468377,Small Business,Small Business +415942,Small Business,Small Business +479854,Small Business,Small Business +478017,Small Business,Small Business +475682,Small Business,Small Business +475675,Small Business,Small Business +475496,Small Business,Small Business +473159,Small Business,Small Business +473156,Small Business,Small Business +473153,Small Business,Small Business +470533,Small Business,Small Business +470532,Small Business,Small Business +470531,Small Business,Small Business +433699,Taxation and Finance,Taxation and Finance +432076,Taxation and Finance,Taxation and Finance +429214,Taxation and Finance,Taxation and Finance +426520,Taxation and Finance,Taxation and Finance +426517,Taxation and Finance,Taxation and Finance +426514,Taxation and Finance,Taxation and Finance +426251,Taxation and Finance,Taxation and Finance +426250,Taxation and Finance,Taxation and Finance +423985,Taxation and Finance,Taxation and Finance +423982,Taxation and Finance,Taxation and Finance +419903,Taxation and Finance,Taxation and Finance +419902,Taxation and Finance,Taxation and Finance +417686,Taxation and Finance,Taxation and Finance +417684,Taxation and Finance,Taxation and Finance +417683,Taxation and Finance,Taxation and Finance +415962,Taxation and Finance,Taxation and Finance +415961,Taxation and Finance,Taxation and Finance +415960,Taxation and Finance,Taxation and Finance +415958,Taxation and Finance,Taxation and Finance +415956,Taxation and Finance,Taxation and Finance +415950,Taxation and Finance,Taxation and Finance +413218,Taxation and Finance,Taxation and Finance +413208,Taxation and Finance,Taxation and Finance +410210,Taxation and Finance,Taxation and Finance +409862,Taxation and Finance,Taxation and Finance +409861,Taxation and Finance,Taxation and Finance +409858,Taxation and Finance,Taxation and Finance +409846,Taxation and Finance,Taxation and Finance +409839,Taxation and Finance,Taxation and Finance +409834,Taxation and Finance,Taxation and Finance +409825,Taxation and Finance,Taxation and Finance +409707,Taxation and Finance,Taxation and Finance +409705,Taxation and Finance,Taxation and Finance +409702,Taxation and Finance,Taxation and Finance +409693,Taxation and Finance,Taxation and Finance +409675,Taxation and Finance,Taxation and Finance +409664,Taxation and Finance,Taxation and Finance +409616,Taxation and Finance,Taxation and Finance +409613,Taxation and Finance,Taxation and Finance +409604,Taxation and Finance,Taxation and Finance +409599,Taxation and Finance,Taxation and Finance +409590,Taxation and Finance,Taxation and Finance +409579,Taxation and Finance,Taxation and Finance +409573,Taxation and Finance,Taxation and Finance +409569,Taxation and Finance,Taxation and Finance +409562,Taxation and Finance,Taxation and Finance +409558,Taxation and Finance,Taxation and Finance +409556,Taxation and Finance,Taxation and Finance +409382,Taxation and Finance,Taxation and Finance +409378,Taxation and Finance,Taxation and Finance +409346,Taxation and Finance,Taxation and Finance +409331,Taxation and Finance,Taxation and Finance +409325,Taxation and Finance,Taxation and Finance +409323,Taxation and Finance,Taxation and Finance +409310,Taxation and Finance,Taxation and Finance +409292,Taxation and Finance,Taxation and Finance +409287,Taxation and Finance,Taxation and Finance +409282,Taxation and Finance,Taxation and Finance +407673,Taxation and Finance,Taxation and Finance +407515,Taxation and Finance,Taxation and Finance +407513,Taxation and Finance,Taxation and Finance +407512,Taxation and Finance,Taxation and Finance +405657,Taxation and Finance,Taxation and Finance +405265,Taxation and Finance,Taxation and Finance +401867,Taxation and Finance,Taxation and Finance +398639,Taxation and Finance,Taxation and Finance +398395,Taxation and Finance,Taxation and Finance +398391,Taxation and Finance,Taxation and Finance +398385,Taxation and Finance,Taxation and Finance +398369,Taxation and Finance,Taxation and Finance +396390,Taxation and Finance,Taxation and Finance +396387,Taxation and Finance,Taxation and Finance +396379,Taxation and Finance,Taxation and Finance +396373,Taxation and Finance,Taxation and Finance +393994,Taxation and Finance,Taxation and Finance +544017,Taxation and Finance,Taxation and Finance +531681,Taxation and Finance,Taxation and Finance +526364,Taxation and Finance,Taxation and Finance +520265,Taxation and Finance,Taxation and Finance +512954,Taxation and Finance,Taxation and Finance +502483,Taxation and Finance,Taxation and Finance +502475,Taxation and Finance,Taxation and Finance +498772,Taxation and Finance,Taxation and Finance +498769,Taxation and Finance,Taxation and Finance +493412,Taxation and Finance,Taxation and Finance +490420,Taxation and Finance,Taxation and Finance +484909,Taxation and Finance,Taxation and Finance +479854,Taxation and Finance,Taxation and Finance +473149,Taxation and Finance,Taxation and Finance +473148,Taxation and Finance,Taxation and Finance +473146,Taxation and Finance,Taxation and Finance +473144,Taxation and Finance,Taxation and Finance +473141,Taxation and Finance,Taxation and Finance +470530,Taxation and Finance,Taxation and Finance +470526,Taxation and Finance,Taxation and Finance +463238,Taxation and Finance,Taxation and Finance +463237,Taxation and Finance,Taxation and Finance +463233,Taxation and Finance,Taxation and Finance +458768,Taxation and Finance,Taxation and Finance +458767,Taxation and Finance,Taxation and Finance +457501,Taxation and Finance,Taxation and Finance +455426,Taxation and Finance,Taxation and Finance +455424,Taxation and Finance,Taxation and Finance +455423,Taxation and Finance,Taxation and Finance +455422,Taxation and Finance,Taxation and Finance +445656,Taxation and Finance,Taxation and Finance +442481,Taxation and Finance,Taxation and Finance +442476,Taxation and Finance,Taxation and Finance +435757,Taxation and Finance,Taxation and Finance +435526,Taxation and Finance,Taxation and Finance +435525,Taxation and Finance,Taxation and Finance +435522,Taxation and Finance,Taxation and Finance +435517,Taxation and Finance,Taxation and Finance +492214,Economic Development,Economic Development +492213,Economic Development,Economic Development +464542,Economic Development,Economic Development +464528,Economic Development,Economic Development +464524,Economic Development,Economic Development +464485,Economic Development,Economic Development +420079,Economic Development,Economic Development +415898,Economic Development,Economic Development +393067,Economic Development,Economic Development +390099,Economic Development,Economic Development +541427,Economic Development,Economic Development +536229,Economic Development,Economic Development +506319,Economic Development,Economic Development +464485,Industry,Industry +464038,Industry,Industry +390099,Industry,Industry +501890,Economic Development,Economic Development +476182,Economic Development,Economic Development +464565,Economic Development,Economic Development +464533,Economic Development,Economic Development +464530,Economic Development,Economic Development +461562,Economic Development,Economic Development +390133,Economic Development,Economic Development +514847,Economic Development,Economic Development +506320,Economic Development,Economic Development +390133,Small Business,Small Business +420080,Economic Development,Economic Development +501870,Economic Development,Economic Development +390108,Economic Development,Economic Development +492215,Economic Development,Economic Development +476183,Economic Development,Economic Development +476181,Economic Development,Economic Development +464539,Economic Development,Economic Development +464509,Economic Development,Economic Development +464505,Economic Development,Economic Development +464038,Economic Development,Economic Development +456322,Economic Development,Economic Development +486538,Economic Development,Economic Development +486537,Economic Development,Economic Development +469271,Economic Development,Economic Development +421142,Economic Development,Economic Development +418747,Economic Development,Economic Development +417211,Economic Development,Economic Development +417210,Economic Development,Economic Development +404960,Economic Development,Economic Development +390136,Economic Development,Economic Development +533217,Economic Development,Economic Development +525013,Economic Development,Economic Development +525010,Economic Development,Economic Development +525001,Economic Development,Economic Development +515304,Economic Development,Economic Development +514923,Economic Development,Economic Development +504417,Economic Development,Economic Development +497055,Economic Development,Economic Development +494900,Economic Development,Economic Development +494898,Economic Development,Economic Development +451918,Housing,Housing +392441,Transportation,Transports +392440,Transportation,Transports +400977,Transportation,Transports +400976,Transportation,Transports +398113,Transportation,Transports +398112,Transportation,Transports +398111,Transportation,Transports +398110,Transportation,Transports +398109,Transportation,Transports +396620,Transportation,Transports +396583,Transportation,Transports +396573,Transportation,Transports +396571,Transportation,Transports +394121,Transportation,Transports +394089,Transportation,Transports +394088,Transportation,Transports +394087,Transportation,Transports +394085,Transportation,Transports +392446,Transportation,Transports +392445,Transportation,Transports +419279,Agriculture,Agriculture +393520,Consumer Issues,Consumer Issues +393520,Health,Health +419279,International Trade,International Trade +392937,Environment,Environment +415457,Pensions,Pensions +390555,Pensions,Pensions +440454,Pensions,Pensions +440441,Pensions,Pensions +415486,Pensions,Pensions +415481,Pensions,Pensions +415474,Pensions,Pensions +415472,Pensions,Pensions +415468,Pensions,Pensions +415467,Pensions,Pensions +415464,Pensions,Pensions +415463,Pensions,Pensions +415460,Pensions,Pensions +489023,Agriculture,Agriculture +489022,Agriculture,Agriculture +390552,Agriculture,Agriculture +390543,Agriculture,Agriculture +447497,Agriculture,Agriculture +447154,Agriculture,Agriculture +440455,Agriculture,Agriculture +440453,Agriculture,Agriculture +440452,Agriculture,Agriculture +440445,Agriculture,Agriculture +440438,Agriculture,Agriculture +440436,Agriculture,Agriculture +440434,Agriculture,Agriculture +421093,Agriculture,Agriculture +415462,Agriculture,Agriculture +390560,Government Procurement,Government Procurement +390560,Employment and Training,Employment and Training +400492,Tourism,Tourism +390605,Tourism,Tourism +416975,Tourism,Tourism +411960,Tourism,Tourism +405146,Tourism,Tourism +405143,Tourism,Tourism +405142,Tourism,Tourism +400497,Tourism,Tourism +400496,Tourism,Tourism +513000,Climate,Climate +512971,Climate,Climate +454057,Climate,Climate +451239,Climate,Climate +423378,Climate,Climate +390680,Climate,Climate +390666,Climate,Climate +416277,Tourism,Tourism +416276,Tourism,Tourism +390905,Tourism,Tourism +391017,Environment,Environment +391012,Environment,Environment +430962,Environment,Environment +391017,Energy,Energy +391012,Energy,Energy +430962,Energy,Energy +391017,Transportation,Transportation +391012,Transportation,Transportation +430962,Transportation,Transportation +422844,Economic Development,Economic Development +422842,Economic Development,Economic Development +412024,Economic Development,Economic Development +412023,Economic Development,Economic Development +390965,Economic Development,Economic Development +390962,Economic Development,Economic Development +390960,Economic Development,Economic Development +418701,Agriculture,Agriculture +399643,Industry,Industry +431366,Industry,Industry +399643,International Trade,International Trade +391256,International Trade,International Trade +431366,International Trade,International Trade +391281,Agriculture,Agriculture +391279,Agriculture,Agriculture +391287,Agriculture,Agriculture +391286,Agriculture,Agriculture +391281,Transportation,Transportation +391279,Transportation,Transportation +415724,Transportation,Transportation +391287,Transportation,Transportation +391286,Transportation,Transportation +488811,Climate,Climate +449058,Climate,Climate +429608,Climate,Climate +429607,Climate,Climate +405001,Climate,Climate +391291,Climate,Climate +544068,Climate,Climate +517232,Climate,Climate +506298,Climate,Climate +488816,Climate,Climate +433655,Pensions,Pensions +391299,Pensions,Pensions +499723,Pensions,Pensions +465058,Pensions,Pensions +464337,Pensions,Pensions +464335,Pensions,Pensions +464332,Pensions,Pensions +435929,Pensions,Pensions +391299,International Trade,International Trade +499723,International Trade,International Trade +433658,Financial Institutions,Financial Institutions +433655,Financial Institutions,Financial Institutions +391299,Financial Institutions,Financial Institutions +465058,Financial Institutions,Financial Institutions +464337,Financial Institutions,Financial Institutions +464335,Financial Institutions,Financial Institutions +464332,Financial Institutions,Financial Institutions +391299,Taxation and Finance,Taxation and Finance +499723,Taxation and Finance,Taxation and Finance +465058,Taxation and Finance,Taxation and Finance +464337,Taxation and Finance,Taxation and Finance +464335,Taxation and Finance,Taxation and Finance +464332,Taxation and Finance,Taxation and Finance +435929,Taxation and Finance,Taxation and Finance +433658,Taxation and Finance,Taxation and Finance +504409,Budget,Budget +499830,Budget,Budget +394191,Budget,Budget +392365,Budget,Budget +392363,Budget,Budget +392361,Budget,Budget +392360,Budget,Budget +392359,Budget,Budget +392358,Budget,Budget +467273,Budget,Budget +466704,Budget,Budget +465699,Budget,Budget +464170,Budget,Budget +448199,Budget,Budget +445567,Budget,Budget +443973,Budget,Budget +441802,Budget,Budget +441801,Budget,Budget +441800,Budget,Budget +441799,Budget,Budget +441798,Budget,Budget +439102,Budget,Budget +504412,Budget,Budget +426258,Economic Development,Economic Development +420931,Economic Development,Economic Development +419449,Economic Development,Economic Development +418148,Economic Development,Economic Development +418143,Economic Development,Economic Development +415976,Economic Development,Economic Development +408036,Economic Development,Economic Development +398783,Economic Development,Economic Development +398780,Economic Development,Economic Development +398775,Economic Development,Economic Development +394192,Economic Development,Economic Development +394190,Economic Development,Economic Development +533189,Economic Development,Economic Development +533188,Economic Development,Economic Development +533187,Economic Development,Economic Development +533186,Economic Development,Economic Development +533185,Economic Development,Economic Development +533183,Economic Development,Economic Development +533182,Economic Development,Economic Development +533181,Economic Development,Economic Development +504412,Economic Development,Economic Development +504411,Economic Development,Economic Development +504409,Economic Development,Economic Development +478355,Economic Development,Economic Development +478354,Economic Development,Economic Development +471311,Economic Development,Economic Development +470580,Economic Development,Economic Development +466897,Economic Development,Economic Development +465239,Economic Development,Economic Development +457637,Economic Development,Economic Development +456685,Economic Development,Economic Development +456416,Economic Development,Economic Development +456415,Economic Development,Economic Development +451773,Economic Development,Economic Development +441802,Economic Development,Economic Development +441801,Economic Development,Economic Development +441800,Economic Development,Economic Development +441799,Economic Development,Economic Development +441798,Economic Development,Economic Development +441796,Economic Development,Economic Development +441794,Economic Development,Economic Development +441793,Economic Development,Economic Development +439111,Economic Development,Economic Development +439108,Economic Development,Economic Development +439102,Economic Development,Economic Development +439099,Economic Development,Economic Development +439094,Economic Development,Economic Development +426267,Economic Development,Economic Development +431641,Employment and Training,Employment and Training +431640,Employment and Training,Employment and Training +426267,Employment and Training,Employment and Training +426264,Employment and Training,Employment and Training +426258,Employment and Training,Employment and Training +426255,Employment and Training,Employment and Training +420931,Employment and Training,Employment and Training +418148,Employment and Training,Employment and Training +418143,Employment and Training,Employment and Training +415976,Employment and Training,Employment and Training +398783,Employment and Training,Employment and Training +398782,Employment and Training,Employment and Training +398780,Employment and Training,Employment and Training +394191,Employment and Training,Employment and Training +394190,Employment and Training,Employment and Training +392365,Employment and Training,Employment and Training +392361,Employment and Training,Employment and Training +392360,Employment and Training,Employment and Training +543914,Employment and Training,Employment and Training +543908,Employment and Training,Employment and Training +543899,Employment and Training,Employment and Training +533189,Employment and Training,Employment and Training +533188,Employment and Training,Employment and Training +533187,Employment and Training,Employment and Training +533186,Employment and Training,Employment and Training +533185,Employment and Training,Employment and Training +533183,Employment and Training,Employment and Training +533182,Employment and Training,Employment and Training +533181,Employment and Training,Employment and Training +504412,Employment and Training,Employment and Training +504411,Employment and Training,Employment and Training +504409,Employment and Training,Employment and Training +478355,Employment and Training,Employment and Training +478354,Employment and Training,Employment and Training +465239,Employment and Training,Employment and Training +464170,Employment and Training,Employment and Training +445567,Employment and Training,Employment and Training +441794,Employment and Training,Employment and Training +441793,Employment and Training,Employment and Training +439111,Employment and Training,Employment and Training +439102,Employment and Training,Employment and Training +439099,Employment and Training,Employment and Training +418143,Immigration,Immigration +398782,Immigration,Immigration +457637,Immigration,Immigration +456356,Immigration,Immigration +454641,Immigration,Immigration +451788,Immigration,Immigration +465239,Intellectual Property,Intellectual Property +420931,Intellectual Property,Intellectual Property +423664,International Trade,International Trade +419451,International Trade,International Trade +418151,International Trade,International Trade +418148,International Trade,International Trade +418143,International Trade,International Trade +410785,International Trade,International Trade +408344,International Trade,International Trade +408343,International Trade,International Trade +408342,International Trade,International Trade +408036,International Trade,International Trade +465239,International Trade,International Trade +462078,International Trade,International Trade +441793,International Trade,International Trade +419451,Municipalities,Municipalities +471273,Privacy and Access to Information,Privacy and Access to Information +466897,Privacy and Access to Information,Privacy and Access to Information +426269,Privacy and Access to Information,Privacy and Access to Information +426266,Privacy and Access to Information,Privacy and Access to Information +533189,Privacy and Access to Information,Privacy and Access to Information +533188,Privacy and Access to Information,Privacy and Access to Information +533187,Privacy and Access to Information,Privacy and Access to Information +533186,Privacy and Access to Information,Privacy and Access to Information +533185,Privacy and Access to Information,Privacy and Access to Information +533183,Privacy and Access to Information,Privacy and Access to Information +533182,Privacy and Access to Information,Privacy and Access to Information +533181,Privacy and Access to Information,Privacy and Access to Information +407143,Security,Security +398780,Security,Security +391489,Security,Security +464294,Security,Security +464170,Security,Security +439111,Security,Security +439099,Security,Security +439094,Security,Security +426269,Security,Security +426267,Security,Security +426266,Security,Security +426265,Security,Security +426262,Security,Security +420931,Security,Security +419451,Security,Security +533189,Security,Security +533188,Security,Security +533187,Security,Security +533186,Security,Security +533185,Security,Security +533183,Security,Security +533182,Security,Security +533181,Security,Security +504412,Security,Security +504411,Security,Security +504409,Security,Security +471311,Security,Security +471274,Security,Security +471273,Security,Security +470580,Security,Security +466897,Security,Security +441794,Small Business,Small Business +441793,Small Business,Small Business +398780,Small Business,Small Business +391489,Small Business,Small Business +504412,Small Business,Small Business +504411,Small Business,Small Business +388772,Energy,Energy +543794,Energy,Energy +465114,Energy,Energy +441391,Energy,Energy +441388,Energy,Energy +441384,Energy,Energy +441383,Energy,Energy +441378,Energy,Energy +441375,Energy,Energy +441373,Energy,Energy +441371,Energy,Energy +441370,Energy,Energy +441369,Energy,Energy +441368,Energy,Energy +441367,Energy,Energy +441363,Energy,Energy +395814,Energy,Energy +391415,Security,Security +465114,Environment,Environment +443370,Environment,Environment +417209,Environment,Environment +417206,Environment,Environment +408069,Environment,Environment +395835,Environment,Environment +395814,Environment,Environment +409790,Government Procurement,Government Procurement +393860,Government Procurement,Government Procurement +465114,Employment and Training,Employment and Training +465103,Employment and Training,Employment and Training +400294,Employment and Training,Employment and Training +400280,Employment and Training,Employment and Training +397310,Employment and Training,Employment and Training +397306,Employment and Training,Employment and Training +395818,Employment and Training,Employment and Training +395815,Employment and Training,Employment and Training +394206,Employment and Training,Employment and Training +391452,Employment and Training,Employment and Training +447386,Employment and Training,Employment and Training +443370,Employment and Training,Employment and Training +441391,Employment and Training,Employment and Training +441388,Employment and Training,Employment and Training +441384,Employment and Training,Employment and Training +441383,Employment and Training,Employment and Training +441378,Employment and Training,Employment and Training +441375,Employment and Training,Employment and Training +441373,Employment and Training,Employment and Training +441371,Employment and Training,Employment and Training +441370,Employment and Training,Employment and Training +441369,Employment and Training,Employment and Training +441368,Employment and Training,Employment and Training +441367,Employment and Training,Employment and Training +441363,Employment and Training,Employment and Training +439968,Employment and Training,Employment and Training +422365,Employment and Training,Employment and Training +422350,Employment and Training,Employment and Training +422348,Employment and Training,Employment and Training +422345,Employment and Training,Employment and Training +408073,Employment and Training,Employment and Training +408068,Employment and Training,Employment and Training +406852,Employment and Training,Employment and Training +502706,Employment and Training,Employment and Training +502697,Employment and Training,Employment and Training +420254,Agriculture,Agriculture +400703,Agriculture,Agriculture +420258,Agriculture,Agriculture +420257,Agriculture,Agriculture +540132,Agriculture,Agriculture +538297,Agriculture,Agriculture +517654,Agriculture,Agriculture +502712,Agriculture,Agriculture +458495,Agriculture,Agriculture +443446,Agriculture,Agriculture +438819,Agriculture,Agriculture +432090,Agriculture,Agriculture +423716,Agriculture,Agriculture +418088,Agriculture,Agriculture +413650,Agriculture,Agriculture +540154,Agriculture,Agriculture +540140,Agriculture,Agriculture +540136,Agriculture,Agriculture +423716,Climate,Climate +413573,Climate,Climate +430530,Transportation,Transportation +514171,Transportation,Transportation +480398,Intellectual Property,Intellectual Property +397748,Intellectual Property,Intellectual Property +391795,International Trade,International Trade +440703,Research and Development,Research and Development +440702,Research and Development,Research and Development +399834,Research and Development,Research and Development +434580,Research and Development,Research and Development +433301,Research and Development,Research and Development +428672,Research and Development,Research and Development +428208,Research and Development,Research and Development +428207,Research and Development,Research and Development +428206,Research and Development,Research and Development +428204,Research and Development,Research and Development +428203,Research and Development,Research and Development +427798,Research and Development,Research and Development +427797,Research and Development,Research and Development +427792,Research and Development,Research and Development +427791,Research and Development,Research and Development +427787,Research and Development,Research and Development +427785,Research and Development,Research and Development +427784,Research and Development,Research and Development +427782,Research and Development,Research and Development +427772,Research and Development,Research and Development +427753,Research and Development,Research and Development +427752,Research and Development,Research and Development +427751,Research and Development,Research and Development +427750,Research and Development,Research and Development +427748,Research and Development,Research and Development +427740,Research and Development,Research and Development +427734,Research and Development,Research and Development +427722,Research and Development,Research and Development +427721,Research and Development,Research and Development +427720,Research and Development,Research and Development +427457,Research and Development,Research and Development +427456,Research and Development,Research and Development +427455,Research and Development,Research and Development +427454,Research and Development,Research and Development +427453,Research and Development,Research and Development +427452,Research and Development,Research and Development +427451,Research and Development,Research and Development +427450,Research and Development,Research and Development +427419,Research and Development,Research and Development +427418,Research and Development,Research and Development +427287,Research and Development,Research and Development +427286,Research and Development,Research and Development +427285,Research and Development,Research and Development +427284,Research and Development,Research and Development +427283,Research and Development,Research and Development +427282,Research and Development,Research and Development +427281,Research and Development,Research and Development +427280,Research and Development,Research and Development +427279,Research and Development,Research and Development +427278,Research and Development,Research and Development +427277,Research and Development,Research and Development +427276,Research and Development,Research and Development +427275,Research and Development,Research and Development +427274,Research and Development,Research and Development +427273,Research and Development,Research and Development +427272,Research and Development,Research and Development +427271,Research and Development,Research and Development +427245,Research and Development,Research and Development +427244,Research and Development,Research and Development +426210,Research and Development,Research and Development +426207,Research and Development,Research and Development +426206,Research and Development,Research and Development +426205,Research and Development,Research and Development +426204,Research and Development,Research and Development +426202,Research and Development,Research and Development +426200,Research and Development,Research and Development +426198,Research and Development,Research and Development +426196,Research and Development,Research and Development +425646,Research and Development,Research and Development +425645,Research and Development,Research and Development +425644,Research and Development,Research and Development +425643,Research and Development,Research and Development +425642,Research and Development,Research and Development +425641,Research and Development,Research and Development +425640,Research and Development,Research and Development +425639,Research and Development,Research and Development +425638,Research and Development,Research and Development +425637,Research and Development,Research and Development +425636,Research and Development,Research and Development +425567,Research and Development,Research and Development +425528,Research and Development,Research and Development +425527,Research and Development,Research and Development +425526,Research and Development,Research and Development +425525,Research and Development,Research and Development +425524,Research and Development,Research and Development +425523,Research and Development,Research and Development +425522,Research and Development,Research and Development +425521,Research and Development,Research and Development +425520,Research and Development,Research and Development +425519,Research and Development,Research and Development +425518,Research and Development,Research and Development +425517,Research and Development,Research and Development +425516,Research and Development,Research and Development +425515,Research and Development,Research and Development +425514,Research and Development,Research and Development +425513,Research and Development,Research and Development +425512,Research and Development,Research and Development +422870,Research and Development,Research and Development +422869,Research and Development,Research and Development +422868,Research and Development,Research and Development +415186,Research and Development,Research and Development +411091,Research and Development,Research and Development +411090,Research and Development,Research and Development +407205,Research and Development,Research and Development +403523,Research and Development,Research and Development +401670,Research and Development,Research and Development +401667,Research and Development,Research and Development +401666,Research and Development,Research and Development +401665,Research and Development,Research and Development +401664,Research and Development,Research and Development +401642,Research and Development,Research and Development +401640,Research and Development,Research and Development +401639,Research and Development,Research and Development +401637,Research and Development,Research and Development +401636,Research and Development,Research and Development +401635,Research and Development,Research and Development +401634,Research and Development,Research and Development +401633,Research and Development,Research and Development +401632,Research and Development,Research and Development +401630,Research and Development,Research and Development +401627,Research and Development,Research and Development +401626,Research and Development,Research and Development +401625,Research and Development,Research and Development +401624,Research and Development,Research and Development +401623,Research and Development,Research and Development +401622,Research and Development,Research and Development +401621,Research and Development,Research and Development +401620,Research and Development,Research and Development +401619,Research and Development,Research and Development +401618,Research and Development,Research and Development +401617,Research and Development,Research and Development +401615,Research and Development,Research and Development +401612,Research and Development,Research and Development +401611,Research and Development,Research and Development +401610,Research and Development,Research and Development +401609,Research and Development,Research and Development +401599,Research and Development,Research and Development +401598,Research and Development,Research and Development +401597,Research and Development,Research and Development +401596,Research and Development,Research and Development +401595,Research and Development,Research and Development +401594,Research and Development,Research and Development +401593,Research and Development,Research and Development +401590,Research and Development,Research and Development +401589,Research and Development,Research and Development +401588,Research and Development,Research and Development +401587,Research and Development,Research and Development +401585,Research and Development,Research and Development +401584,Research and Development,Research and Development +401583,Research and Development,Research and Development +401582,Research and Development,Research and Development +401581,Research and Development,Research and Development +401580,Research and Development,Research and Development +401579,Research and Development,Research and Development +401578,Research and Development,Research and Development +401577,Research and Development,Research and Development +401553,Research and Development,Research and Development +401552,Research and Development,Research and Development +401551,Research and Development,Research and Development +401550,Research and Development,Research and Development +401549,Research and Development,Research and Development +401548,Research and Development,Research and Development +401547,Research and Development,Research and Development +401546,Research and Development,Research and Development +401545,Research and Development,Research and Development +401544,Research and Development,Research and Development +401543,Research and Development,Research and Development +401536,Research and Development,Research and Development +401534,Research and Development,Research and Development +541891,Research and Development,Research and Development +540181,Research and Development,Research and Development +535978,Research and Development,Research and Development +531818,Research and Development,Research and Development +531817,Research and Development,Research and Development +531816,Research and Development,Research and Development +531815,Research and Development,Research and Development +508738,Research and Development,Research and Development +508733,Research and Development,Research and Development +508729,Research and Development,Research and Development +508710,Research and Development,Research and Development +508406,Research and Development,Research and Development +508405,Research and Development,Research and Development +508404,Research and Development,Research and Development +508403,Research and Development,Research and Development +508402,Research and Development,Research and Development +508401,Research and Development,Research and Development +508400,Research and Development,Research and Development +508399,Research and Development,Research and Development +508398,Research and Development,Research and Development +508396,Research and Development,Research and Development +508395,Research and Development,Research and Development +508393,Research and Development,Research and Development +508392,Research and Development,Research and Development +508391,Research and Development,Research and Development +508390,Research and Development,Research and Development +508389,Research and Development,Research and Development +508388,Research and Development,Research and Development +508387,Research and Development,Research and Development +508386,Research and Development,Research and Development +508385,Research and Development,Research and Development +508383,Research and Development,Research and Development +508382,Research and Development,Research and Development +508381,Research and Development,Research and Development +508379,Research and Development,Research and Development +508378,Research and Development,Research and Development +508377,Research and Development,Research and Development +508376,Research and Development,Research and Development +508375,Research and Development,Research and Development +508374,Research and Development,Research and Development +508373,Research and Development,Research and Development +508372,Research and Development,Research and Development +508371,Research and Development,Research and Development +508369,Research and Development,Research and Development +508367,Research and Development,Research and Development +508365,Research and Development,Research and Development +508364,Research and Development,Research and Development +508230,Research and Development,Research and Development +508226,Research and Development,Research and Development +508225,Research and Development,Research and Development +508222,Research and Development,Research and Development +508209,Research and Development,Research and Development +508205,Research and Development,Research and Development +508203,Research and Development,Research and Development +508200,Research and Development,Research and Development +508195,Research and Development,Research and Development +508191,Research and Development,Research and Development +508186,Research and Development,Research and Development +508183,Research and Development,Research and Development +508181,Research and Development,Research and Development +508179,Research and Development,Research and Development +508177,Research and Development,Research and Development +506001,Research and Development,Research and Development +506000,Research and Development,Research and Development +505999,Research and Development,Research and Development +501730,Research and Development,Research and Development +499979,Research and Development,Research and Development +499978,Research and Development,Research and Development +499977,Research and Development,Research and Development +497916,Research and Development,Research and Development +497915,Research and Development,Research and Development +497854,Research and Development,Research and Development +497760,Research and Development,Research and Development +495152,Research and Development,Research and Development +495150,Research and Development,Research and Development +492031,Research and Development,Research and Development +492030,Research and Development,Research and Development +491289,Research and Development,Research and Development +491285,Research and Development,Research and Development +491212,Research and Development,Research and Development +491210,Research and Development,Research and Development +491208,Research and Development,Research and Development +491203,Research and Development,Research and Development +491196,Research and Development,Research and Development +491193,Research and Development,Research and Development +491189,Research and Development,Research and Development +491185,Research and Development,Research and Development +491180,Research and Development,Research and Development +491173,Research and Development,Research and Development +491158,Research and Development,Research and Development +491157,Research and Development,Research and Development +491152,Research and Development,Research and Development +491149,Research and Development,Research and Development +488644,Research and Development,Research and Development +486113,Research and Development,Research and Development +486112,Research and Development,Research and Development +485705,Research and Development,Research and Development +483759,Research and Development,Research and Development +483758,Research and Development,Research and Development +483755,Research and Development,Research and Development +483754,Research and Development,Research and Development +483751,Research and Development,Research and Development +483750,Research and Development,Research and Development +483749,Research and Development,Research and Development +483747,Research and Development,Research and Development +483745,Research and Development,Research and Development +481048,Research and Development,Research and Development +481047,Research and Development,Research and Development +479298,Research and Development,Research and Development +478691,Research and Development,Research and Development +478097,Research and Development,Research and Development +474672,Research and Development,Research and Development +474668,Research and Development,Research and Development +474095,Research and Development,Research and Development +470825,Research and Development,Research and Development +470814,Research and Development,Research and Development +463288,Research and Development,Research and Development +459408,Research and Development,Research and Development +459039,Research and Development,Research and Development +458003,Research and Development,Research and Development +452753,Research and Development,Research and Development +452631,Research and Development,Research and Development +452618,Research and Development,Research and Development +452610,Research and Development,Research and Development +452606,Research and Development,Research and Development +452605,Research and Development,Research and Development +452427,Research and Development,Research and Development +452426,Research and Development,Research and Development +452425,Research and Development,Research and Development +452423,Research and Development,Research and Development +452422,Research and Development,Research and Development +452421,Research and Development,Research and Development +452418,Research and Development,Research and Development +452417,Research and Development,Research and Development +452416,Research and Development,Research and Development +452415,Research and Development,Research and Development +452414,Research and Development,Research and Development +452413,Research and Development,Research and Development +452412,Research and Development,Research and Development +452411,Research and Development,Research and Development +452410,Research and Development,Research and Development +452409,Research and Development,Research and Development +452408,Research and Development,Research and Development +452407,Research and Development,Research and Development +452406,Research and Development,Research and Development +452404,Research and Development,Research and Development +452403,Research and Development,Research and Development +452402,Research and Development,Research and Development +452401,Research and Development,Research and Development +452400,Research and Development,Research and Development +452399,Research and Development,Research and Development +452398,Research and Development,Research and Development +452397,Research and Development,Research and Development +452395,Research and Development,Research and Development +452394,Research and Development,Research and Development +452393,Research and Development,Research and Development +452392,Research and Development,Research and Development +452390,Research and Development,Research and Development +452388,Research and Development,Research and Development +452387,Research and Development,Research and Development +452384,Research and Development,Research and Development +452382,Research and Development,Research and Development +452375,Research and Development,Research and Development +452372,Research and Development,Research and Development +452370,Research and Development,Research and Development +452369,Research and Development,Research and Development +452368,Research and Development,Research and Development +452364,Research and Development,Research and Development +452355,Research and Development,Research and Development +452354,Research and Development,Research and Development +452351,Research and Development,Research and Development +452341,Research and Development,Research and Development +452337,Research and Development,Research and Development +452336,Research and Development,Research and Development +452335,Research and Development,Research and Development +452333,Research and Development,Research and Development +452332,Research and Development,Research and Development +452331,Research and Development,Research and Development +452330,Research and Development,Research and Development +452329,Research and Development,Research and Development +452327,Research and Development,Research and Development +452324,Research and Development,Research and Development +452323,Research and Development,Research and Development +452322,Research and Development,Research and Development +452320,Research and Development,Research and Development +452279,Research and Development,Research and Development +452276,Research and Development,Research and Development +452274,Research and Development,Research and Development +452271,Research and Development,Research and Development +410152,Climate,Climate +506278,Climate,Climate +432928,Climate,Climate +432927,Climate,Climate +428189,Climate,Climate +416411,Climate,Climate +393006,Climate,Climate +393005,Climate,Climate +393008,Climate,Climate +393006,Environment,Environment +393005,Environment,Environment +393008,Environment,Environment +393006,Energy,Energy +393005,Energy,Energy +393008,Energy,Energy +408612,Economic Development,Economic Development +408610,Economic Development,Economic Development +418821,Economic Development,Economic Development +408614,Economic Development,Economic Development +406302,Energy,Energy +395402,Energy,Energy +418821,Energy,Energy +408614,Energy,Energy +408613,Energy,Energy +408612,Energy,Energy +408610,Energy,Energy +408610,Environment,Environment +407652,Environment,Environment +408614,Environment,Environment +408613,Environment,Environment +408610,Financial Institutions,Financial Institutions +406302,Financial Institutions,Financial Institutions +418821,Financial Institutions,Financial Institutions +408614,Financial Institutions,Financial Institutions +408613,Financial Institutions,Financial Institutions +408612,Industry,Industry +408610,Industry,Industry +408614,Industry,Industry +408612,Infrastructure,Infrastructure +408610,Infrastructure,Infrastructure +408614,Infrastructure,Infrastructure +408613,International Relations,International Relations +408612,International Relations,International Relations +406302,International Trade,International Trade +395402,International Trade,International Trade +418821,International Trade,International Trade +408614,International Trade,International Trade +408613,International Trade,International Trade +408612,International Trade,International Trade +408610,International Trade,International Trade +408612,Small Business,Small Business +408610,Small Business,Small Business +408614,Small Business,Small Business +429126,Justice and Law Enforcement,Justice et application des lois +429122,Justice and Law Enforcement,Justice et application des lois +426284,Justice and Law Enforcement,Justice et application des lois +422093,Justice and Law Enforcement,Justice et application des lois +422086,Justice and Law Enforcement,Justice et application des lois +422084,Justice and Law Enforcement,Justice et application des lois +403729,Justice and Law Enforcement,Justice et application des lois +403729,Security,Sécurité +400413,Security,Sécurité +429126,Security,Sécurité +429122,Security,Sécurité +426284,Security,Sécurité +422093,Security,Sécurité +422086,Security,Sécurité +422086,Transportation,Transports +400413,Transportation,Transports +429126,Transportation,Transports +429122,Transportation,Transports +500703,Economic Development,Economic Development +499784,Economic Development,Economic Development +419719,Economic Development,Economic Development +419717,Economic Development,Economic Development +419715,Economic Development,Economic Development +419659,Economic Development,Economic Development +413453,Economic Development,Economic Development +413450,Economic Development,Economic Development +413447,Economic Development,Economic Development +410378,Economic Development,Economic Development +410376,Economic Development,Economic Development +400862,Economic Development,Economic Development +399194,Economic Development,Economic Development +397148,Economic Development,Economic Development +397142,Economic Development,Economic Development +397140,Economic Development,Economic Development +397138,Economic Development,Economic Development +397134,Economic Development,Economic Development +397133,Economic Development,Economic Development +397132,Economic Development,Economic Development +394281,Economic Development,Economic Development +394277,Economic Development,Economic Development +394275,Economic Development,Economic Development +394273,Economic Development,Economic Development +394264,Economic Development,Economic Development +392911,Economic Development,Economic Development +392910,Economic Development,Economic Development +392909,Economic Development,Economic Development +391893,Economic Development,Economic Development +391858,Economic Development,Economic Development +495458,Economic Development,Economic Development +494561,Economic Development,Economic Development +494559,Economic Development,Economic Development +492525,Economic Development,Economic Development +489720,Economic Development,Economic Development +464771,Economic Development,Economic Development +456975,Economic Development,Economic Development +448424,Economic Development,Economic Development +447985,Economic Development,Economic Development +447979,Economic Development,Economic Development +447975,Economic Development,Economic Development +447965,Economic Development,Economic Development +447962,Economic Development,Economic Development +447955,Economic Development,Economic Development +447949,Economic Development,Economic Development +447942,Economic Development,Economic Development +442219,Economic Development,Economic Development +437964,Economic Development,Economic Development +437963,Economic Development,Economic Development +437961,Economic Development,Economic Development +437958,Economic Development,Economic Development +434037,Economic Development,Economic Development +425990,Economic Development,Economic Development +422523,Economic Development,Economic Development +526124,Economic Development,Economic Development +526113,Economic Development,Economic Development +512579,Economic Development,Economic Development +507451,Economic Development,Economic Development +507447,Economic Development,Economic Development +507444,Economic Development,Economic Development +503893,Economic Development,Economic Development +500705,Economic Development,Economic Development +409958,Budget,Budget +391879,Budget,Budget +473747,Budget,Budget +469899,Budget,Budget +469894,Budget,Budget +469892,Budget,Budget +466971,Budget,Budget +462813,Budget,Budget +462811,Budget,Budget +462809,Budget,Budget +452374,Budget,Budget +450045,Budget,Budget +447874,Budget,Budget +447873,Budget,Budget +445588,Budget,Budget +445587,Budget,Budget +445584,Budget,Budget +445582,Budget,Budget +445581,Budget,Budget +445578,Budget,Budget +443996,Budget,Budget +443995,Budget,Budget +443994,Budget,Budget +443993,Budget,Budget +443992,Budget,Budget +443989,Budget,Budget +443987,Budget,Budget +443985,Budget,Budget +443984,Budget,Budget +443983,Budget,Budget +443982,Budget,Budget +443980,Budget,Budget +443979,Budget,Budget +443978,Budget,Budget +443977,Budget,Budget +443976,Budget,Budget +443975,Budget,Budget +443974,Budget,Budget +443972,Budget,Budget +443971,Budget,Budget +443970,Budget,Budget +443969,Budget,Budget +443968,Budget,Budget +443966,Budget,Budget +443964,Budget,Budget +443962,Budget,Budget +443960,Budget,Budget +443957,Budget,Budget +442862,Budget,Budget +442861,Budget,Budget +442860,Budget,Budget +436040,Budget,Budget +436037,Budget,Budget +436033,Budget,Budget +436031,Budget,Budget +416599,Budget,Budget +416598,Budget,Budget +416564,Budget,Budget +402778,Taxation and Finance,Taxation and Finance +402652,Taxation and Finance,Taxation and Finance +397858,Taxation and Finance,Taxation and Finance +397849,Taxation and Finance,Taxation and Finance +397810,Taxation and Finance,Taxation and Finance +395235,Taxation and Finance,Taxation and Finance +393545,Taxation and Finance,Taxation and Finance +393541,Taxation and Finance,Taxation and Finance +392276,Taxation and Finance,Taxation and Finance +425171,Taxation and Finance,Taxation and Finance +424749,Taxation and Finance,Taxation and Finance +420911,Taxation and Finance,Taxation and Finance +420609,Taxation and Finance,Taxation and Finance +418466,Taxation and Finance,Taxation and Finance +418464,Taxation and Finance,Taxation and Finance +414396,Taxation and Finance,Taxation and Finance +412002,Taxation and Finance,Taxation and Finance +410760,Taxation and Finance,Taxation and Finance +410758,Taxation and Finance,Taxation and Finance +410757,Taxation and Finance,Taxation and Finance +410756,Taxation and Finance,Taxation and Finance +410755,Taxation and Finance,Taxation and Finance +410754,Taxation and Finance,Taxation and Finance +410753,Taxation and Finance,Taxation and Finance +408266,Taxation and Finance,Taxation and Finance +406218,Taxation and Finance,Taxation and Finance +391932,International Trade,International Trade +391928,International Trade,International Trade +404472,International Trade,International Trade +404471,International Trade,International Trade +404470,International Trade,International Trade +399578,International Trade,International Trade +399576,International Trade,International Trade +399575,International Trade,International Trade +391937,International Trade,International Trade +391936,International Trade,International Trade +391934,International Trade,International Trade +401555,Health,Health +397033,Health,Health +401557,Health,Health +533732,Labour,Labour +533731,Labour,Labour +393206,Labour,Labour +391943,Labour,Labour +417609,Labour,Labour +397880,Labour,Labour +533734,Labour,Labour +392977,Education,Education +393374,Education,Education +496413,Agriculture,Agriculture +464835,Agriculture,Agriculture +446322,Agriculture,Agriculture +444857,Agriculture,Agriculture +419275,Agriculture,Agriculture +523456,Agriculture,Agriculture +523455,Agriculture,Agriculture +523454,Agriculture,Agriculture +523453,Agriculture,Agriculture +523452,Agriculture,Agriculture +496417,Agriculture,Agriculture +496416,Agriculture,Agriculture +496415,Agriculture,Agriculture +464835,Consumer Issues,Consumer Issues +444857,Consumer Issues,Consumer Issues +419275,Consumer Issues,Consumer Issues +523456,Consumer Issues,Consumer Issues +523455,Consumer Issues,Consumer Issues +523454,Consumer Issues,Consumer Issues +523453,Consumer Issues,Consumer Issues +523452,Consumer Issues,Consumer Issues +496417,Consumer Issues,Consumer Issues +496416,Consumer Issues,Consumer Issues +496415,Consumer Issues,Consumer Issues +496414,Consumer Issues,Consumer Issues +496414,Economic Development,Economic Development +496413,Economic Development,Economic Development +464835,Economic Development,Economic Development +446322,Economic Development,Economic Development +523454,Economic Development,Economic Development +523453,Economic Development,Economic Development +523452,Economic Development,Economic Development +496417,Economic Development,Economic Development +496416,Economic Development,Economic Development +496413,Environment,Environment +464835,Environment,Environment +523456,Environment,Environment +523455,Environment,Environment +523454,Environment,Environment +523453,Environment,Environment +523452,Environment,Environment +496417,Environment,Environment +496416,Environment,Environment +496415,Environment,Environment +496415,Health,Health +496414,Health,Health +496413,Health,Health +464835,Health,Health +446322,Health,Health +444857,Health,Health +419275,Health,Health +523456,Health,Health +523455,Health,Health +523454,Health,Health +523453,Health,Health +523452,Health,Health +496417,Health,Health +496413,International Trade,International Trade +464835,International Trade,International Trade +446322,International Trade,International Trade +444857,International Trade,International Trade +419275,International Trade,International Trade +523456,International Trade,International Trade +523455,International Trade,International Trade +523454,International Trade,International Trade +523453,International Trade,International Trade +523452,International Trade,International Trade +496417,International Trade,International Trade +496416,International Trade,International Trade +496415,International Trade,International Trade +393176,Consumer Issues,Consumer Issues +399549,Financial Institutions,Financial Institutions +393176,Financial Institutions,Financial Institutions +421941,Financial Institutions,Financial Institutions +392913,Regional Development,Regional Development +391950,Employment and Training,Employment and Training +420356,Employment and Training,Employment and Training +391953,Employment and Training,Employment and Training +394394,Economic Development,Economic Development +394329,Economic Development,Economic Development +394328,Economic Development,Economic Development +393928,Economic Development,Economic Development +393926,Economic Development,Economic Development +393928,Internal Trade,Internal Trade +393926,Internal Trade,Internal Trade +394398,Internal Trade,Internal Trade +394394,Internal Trade,Internal Trade +394329,Internal Trade,Internal Trade +393928,International Trade,International Trade +393926,International Trade,International Trade +394398,International Trade,International Trade +394394,International Trade,International Trade +394329,International Trade,International Trade +393926,Labour,Labour +397772,Education,Education +445821,Agriculture,Agriculture +445820,Agriculture,Agriculture +419092,Agriculture,Agriculture +419091,Agriculture,Agriculture +419089,Agriculture,Agriculture +394838,Agriculture,Agriculture +394837,Agriculture,Agriculture +463777,Agriculture,Agriculture +463775,Agriculture,Agriculture +463774,Agriculture,Agriculture +394838,International Trade,International Trade +394837,International Trade,International Trade +463777,International Trade,International Trade +463775,International Trade,International Trade +463774,International Trade,International Trade +445823,International Trade,International Trade +445821,International Trade,International Trade +445820,International Trade,International Trade +434527,International Trade,International Trade +419092,International Trade,International Trade +419091,International Trade,International Trade +397717,Economic Development,Economic Development +397716,Economic Development,Economic Development +397718,Infrastructure,Infrastructure +397716,Infrastructure,Infrastructure +413829,Health,Health +413827,Health,Health +402107,Health,Health +402105,Health,Health +402103,Health,Health +402102,Health,Health +402099,Health,Health +402098,Health,Health +392055,Health,Health +392054,Health,Health +392053,Health,Health +392052,Health,Health +402103,Research and Development,Research and Development +402102,Research and Development,Research and Development +402099,Research and Development,Research and Development +402098,Research and Development,Research and Development +392055,Research and Development,Research and Development +392054,Research and Development,Research and Development +392053,Research and Development,Research and Development +392052,Research and Development,Research and Development +392003,Research and Development,Research and Development +413829,Research and Development,Research and Development +413827,Research and Development,Research and Development +402107,Research and Development,Research and Development +391997,Environment,Environment +403601,Environment,Environment +394303,Environment,Environment +394302,Environment,Environment +394301,Environment,Environment +394300,Mining,Mining +391997,Mining,Mining +394303,Mining,Mining +394302,Mining,Mining +418575,Education,Education +407458,Education,Education +407316,Education,Education +407315,Education,Education +407314,Education,Education +395542,Education,Education +395541,Education,Education +395540,Education,Education +395539,Education,Education +395537,Education,Education +395536,Education,Education +395535,Education,Education +393085,Education,Education +393026,Education,Education +393025,Education,Education +393024,Education,Education +393023,Education,Education +455179,Education,Education +453725,Education,Education +453724,Education,Education +453140,Education,Education +452056,Education,Education +451351,Education,Education +434421,Education,Education +434420,Education,Education +434419,Education,Education +434304,Education,Education +434073,Education,Education +434013,Education,Education +433996,Education,Education +433995,Education,Education +433993,Education,Education +433992,Education,Education +407315,Official Languages,Official Languages +407314,Official Languages,Official Languages +395542,Official Languages,Official Languages +395541,Official Languages,Official Languages +395540,Official Languages,Official Languages +395539,Official Languages,Official Languages +395537,Official Languages,Official Languages +395536,Official Languages,Official Languages +395535,Official Languages,Official Languages +393085,Official Languages,Official Languages +393026,Official Languages,Official Languages +393025,Official Languages,Official Languages +393024,Official Languages,Official Languages +393023,Official Languages,Official Languages +455179,Official Languages,Official Languages +453725,Official Languages,Official Languages +453724,Official Languages,Official Languages +453140,Official Languages,Official Languages +452056,Official Languages,Official Languages +451351,Official Languages,Official Languages +434421,Official Languages,Official Languages +434420,Official Languages,Official Languages +434419,Official Languages,Official Languages +434304,Official Languages,Official Languages +434073,Official Languages,Official Languages +434013,Official Languages,Official Languages +433996,Official Languages,Official Languages +433995,Official Languages,Official Languages +433993,Official Languages,Official Languages +433992,Official Languages,Official Languages +420833,Official Languages,Official Languages +418575,Official Languages,Official Languages +407458,Official Languages,Official Languages +410975,Constitutional Issues,Constitutional Issues +410974,Constitutional Issues,Constitutional Issues +428936,Constitutional Issues,Constitutional Issues +428935,Constitutional Issues,Constitutional Issues +428934,Constitutional Issues,Constitutional Issues +428933,Constitutional Issues,Constitutional Issues +428932,Constitutional Issues,Constitutional Issues +428931,Constitutional Issues,Constitutional Issues +428929,Constitutional Issues,Constitutional Issues +428927,Constitutional Issues,Constitutional Issues +428925,Constitutional Issues,Constitutional Issues +417252,Constitutional Issues,Constitutional Issues +414461,Constitutional Issues,Constitutional Issues +414460,Constitutional Issues,Constitutional Issues +414009,Constitutional Issues,Constitutional Issues +413959,Constitutional Issues,Constitutional Issues +413958,Constitutional Issues,Constitutional Issues +412938,Constitutional Issues,Constitutional Issues +412937,Constitutional Issues,Constitutional Issues +412935,Constitutional Issues,Constitutional Issues +411196,Constitutional Issues,Constitutional Issues +411195,Constitutional Issues,Constitutional Issues +411194,Constitutional Issues,Constitutional Issues +411123,Constitutional Issues,Constitutional Issues +411122,Constitutional Issues,Constitutional Issues +411049,Constitutional Issues,Constitutional Issues +411048,Constitutional Issues,Constitutional Issues +411047,Constitutional Issues,Constitutional Issues +410984,Constitutional Issues,Constitutional Issues +410983,Constitutional Issues,Constitutional Issues +410982,Constitutional Issues,Constitutional Issues +410980,Constitutional Issues,Constitutional Issues +410979,Constitutional Issues,Constitutional Issues +410978,Constitutional Issues,Constitutional Issues +410977,Constitutional Issues,Constitutional Issues +410974,International Trade,International Trade +410972,International Trade,International Trade +428936,International Trade,International Trade +428935,International Trade,International Trade +428934,International Trade,International Trade +428933,International Trade,International Trade +428932,International Trade,International Trade +428931,International Trade,International Trade +428929,International Trade,International Trade +428927,International Trade,International Trade +428925,International Trade,International Trade +417252,International Trade,International Trade +414461,International Trade,International Trade +414460,International Trade,International Trade +414009,International Trade,International Trade +413959,International Trade,International Trade +413958,International Trade,International Trade +412938,International Trade,International Trade +412937,International Trade,International Trade +412935,International Trade,International Trade +411196,International Trade,International Trade +411195,International Trade,International Trade +411194,International Trade,International Trade +411123,International Trade,International Trade +411122,International Trade,International Trade +411049,International Trade,International Trade +411048,International Trade,International Trade +411047,International Trade,International Trade +410984,International Trade,International Trade +410983,International Trade,International Trade +410982,International Trade,International Trade +410980,International Trade,International Trade +410979,International Trade,International Trade +410978,International Trade,International Trade +410977,International Trade,International Trade +410976,International Trade,International Trade +410975,Sports,Sports +410974,Sports,Sports +428936,Sports,Sports +428935,Sports,Sports +428934,Sports,Sports +428933,Sports,Sports +428932,Sports,Sports +428931,Sports,Sports +428929,Sports,Sports +428927,Sports,Sports +428925,Sports,Sports +417252,Sports,Sports +414461,Sports,Sports +414460,Sports,Sports +414009,Sports,Sports +413959,Sports,Sports +413958,Sports,Sports +412938,Sports,Sports +412937,Sports,Sports +412935,Sports,Sports +411196,Sports,Sports +411195,Sports,Sports +411194,Sports,Sports +411123,Sports,Sports +411122,Sports,Sports +411049,Sports,Sports +411048,Sports,Sports +411047,Sports,Sports +410984,Sports,Sports +410983,Sports,Sports +410982,Sports,Sports +410980,Sports,Sports +410979,Sports,Sports +410978,Sports,Sports +410977,Sports,Sports +393862,International Trade,International Trade +393861,International Trade,International Trade +438801,International Trade,International Trade +409754,International Trade,International Trade +404573,International Trade,International Trade +403544,International Trade,International Trade +395976,International Trade,International Trade +428621,Industry,Industry +428345,Industry,Industry +428638,Industry,Industry +428631,Industry,Industry +428627,Industry,Industry +404573,Economic Development,Economic Development +403544,Economic Development,Economic Development +428638,Economic Development,Economic Development +428631,Economic Development,Economic Development +428627,Economic Development,Economic Development +428623,Economic Development,Economic Development +428621,Economic Development,Economic Development +428345,Economic Development,Economic Development +411689,Economic Development,Economic Development +409771,Economic Development,Economic Development +409762,Economic Development,Economic Development +409760,Economic Development,Economic Development +409757,Economic Development,Economic Development +409754,Economic Development,Economic Development +409733,Economic Development,Economic Development +409657,Economic Development,Economic Development +407657,Economic Development,Economic Development +406448,Economic Development,Economic Development +407657,International Relations,International Relations +403544,International Relations,International Relations +428638,International Relations,International Relations +428631,International Relations,International Relations +428627,International Relations,International Relations +428623,International Relations,International Relations +428621,International Relations,International Relations +428345,International Relations,International Relations +411689,International Relations,International Relations +409762,International Relations,International Relations +409760,International Relations,International Relations +409754,International Relations,International Relations +407657,Energy,Energy +406448,Energy,Energy +428638,Energy,Energy +428631,Energy,Energy +428627,Energy,Energy +428623,Energy,Energy +428621,Energy,Energy +428345,Energy,Energy +411689,Energy,Energy +409771,Energy,Energy +409762,Energy,Energy +409760,Energy,Energy +409757,Energy,Energy +399868,Intellectual Property,Intellectual Property +404336,Climate,Climate +392006,Climate,Climate +404338,Climate,Climate +404336,Infrastructure,Infrastructure +392006,Infrastructure,Infrastructure +392044,Justice and Law Enforcement,Justice et application des lois +399164,Health,Santé +399162,Health,Santé +399164,Defence,Défense +399162,Defence,Défense +393197,Budget,Budget +393196,Budget,Budget +393200,Budget,Budget +393197,Economic Development,Economic Development +393196,Economic Development,Economic Development +393200,Economic Development,Economic Development +393197,Infrastructure,Infrastructure +393196,Infrastructure,Infrastructure +393200,Infrastructure,Infrastructure +393197,Municipalities,Municipalities +393196,Municipalities,Municipalities +393200,Municipalities,Municipalities +393197,Regional Development,Regional Development +393196,Regional Development,Regional Development +393200,Regional Development,Regional Development +393197,Tourism,Tourism +393196,Tourism,Tourism +393200,Tourism,Tourism +407447,Budget,Budget +415979,Industry,Industry +407447,Industry,Industry +397577,Industry,Industry +393645,Industry,Industry +393644,Industry,Industry +472038,Industry,Industry +465075,Industry,Industry +465074,Industry,Industry +443171,Industry,Industry +513648,International Trade,International Trade +509094,International Trade,International Trade +401758,International Trade,International Trade +401757,International Trade,International Trade +401756,International Trade,International Trade +401755,International Trade,International Trade +401752,International Trade,International Trade +401751,International Trade,International Trade +401749,International Trade,International Trade +400991,International Trade,International Trade +397577,International Trade,International Trade +397518,International Trade,International Trade +393646,International Trade,International Trade +490620,International Trade,International Trade +490618,International Trade,International Trade +472039,International Trade,International Trade +472038,International Trade,International Trade +472033,International Trade,International Trade +465075,International Trade,International Trade +465073,International Trade,International Trade +465072,International Trade,International Trade +465071,International Trade,International Trade +465070,International Trade,International Trade +465069,International Trade,International Trade +459085,International Trade,International Trade +459084,International Trade,International Trade +455348,International Trade,International Trade +455339,International Trade,International Trade +455338,International Trade,International Trade +449359,International Trade,International Trade +449356,International Trade,International Trade +445721,International Trade,International Trade +443174,International Trade,International Trade +443172,International Trade,International Trade +443170,International Trade,International Trade +438807,International Trade,International Trade +438803,International Trade,International Trade +438579,International Trade,International Trade +438563,International Trade,International Trade +432775,International Trade,International Trade +421212,International Trade,International Trade +419000,International Trade,International Trade +418999,International Trade,International Trade +415979,International Trade,International Trade +415977,International Trade,International Trade +415974,International Trade,International Trade +407447,International Trade,International Trade +533283,International Trade,International Trade +533282,International Trade,International Trade +533281,International Trade,International Trade +522906,International Trade,International Trade +494832,Budget,Budget +494829,Budget,Budget +393925,Budget,Budget +393924,Budget,Budget +393922,Budget,Budget +392075,Budget,Budget +532122,Budget,Budget +532110,Budget,Budget +532107,Budget,Budget +532104,Budget,Budget +506449,Budget,Budget +506446,Budget,Budget +494838,Budget,Budget +502977,Climate,Climate +502975,Climate,Climate +401992,Climate,Climate +401990,Climate,Climate +506448,Climate,Climate +506446,Climate,Climate +470391,Economic Development,Economic Development +470387,Economic Development,Economic Development +444368,Economic Development,Economic Development +441714,Economic Development,Economic Development +441712,Economic Development,Economic Development +434301,Economic Development,Economic Development +434300,Economic Development,Economic Development +433389,Economic Development,Economic Development +431764,Economic Development,Economic Development +431763,Economic Development,Economic Development +431762,Economic Development,Economic Development +431169,Economic Development,Economic Development +431167,Economic Development,Economic Development +424925,Economic Development,Economic Development +424922,Economic Development,Economic Development +424921,Economic Development,Economic Development +423309,Economic Development,Economic Development +420692,Economic Development,Economic Development +420691,Economic Development,Economic Development +416281,Economic Development,Economic Development +411992,Economic Development,Economic Development +411990,Economic Development,Economic Development +402308,Economic Development,Economic Development +401997,Economic Development,Economic Development +401995,Economic Development,Economic Development +401991,Economic Development,Economic Development +401159,Economic Development,Economic Development +393925,Economic Development,Economic Development +393924,Economic Development,Economic Development +393923,Economic Development,Economic Development +393922,Economic Development,Economic Development +392286,Economic Development,Economic Development +392075,Economic Development,Economic Development +538875,Economic Development,Economic Development +538874,Economic Development,Economic Development +532122,Economic Development,Economic Development +532109,Economic Development,Economic Development +532107,Economic Development,Economic Development +532106,Economic Development,Economic Development +521065,Economic Development,Economic Development +521064,Economic Development,Economic Development +521058,Economic Development,Economic Development +521057,Economic Development,Economic Development +521056,Economic Development,Economic Development +515689,Economic Development,Economic Development +515686,Economic Development,Economic Development +515684,Economic Development,Economic Development +515682,Economic Development,Economic Development +506449,Economic Development,Economic Development +506448,Economic Development,Economic Development +506446,Economic Development,Economic Development +506445,Economic Development,Economic Development +502977,Economic Development,Economic Development +502975,Economic Development,Economic Development +494838,Economic Development,Economic Development +494833,Economic Development,Economic Development +494832,Economic Development,Economic Development +494829,Economic Development,Economic Development +494293,Economic Development,Economic Development +490608,Economic Development,Economic Development +486404,Economic Development,Economic Development +478535,Economic Development,Economic Development +470395,Economic Development,Economic Development +532110,Employment and Training,Employment and Training +521063,Employment and Training,Employment and Training +444407,Employment and Training,Employment and Training +502977,Energy,Energy +506445,Environment,Environment +502977,Environment,Environment +401992,Environment,Environment +506449,Environment,Environment +506448,Environment,Environment +502977,Government Procurement,Government Procurement +401448,Immigration,Immigration +411993,International Trade,International Trade +416284,Small Business,Small Business +411995,Taxation and Finance,Taxation and Finance +398031,Industry,Industry +398030,Industry,Industry +410782,Industry,Industry +410781,Industry,Industry +410546,Industry,Industry +410545,Industry,Industry +410544,Industry,Industry +410543,Industry,Industry +410542,Industry,Industry +410543,Small Business,Small Business +410542,Small Business,Small Business +410782,Small Business,Small Business +410781,Small Business,Small Business +410546,Small Business,Small Business +410545,Small Business,Small Business +514125,Infrastructure,Infrastructure +510444,Infrastructure,Infrastructure +393947,Infrastructure,Infrastructure +464466,Infrastructure,Infrastructure +429587,Infrastructure,Infrastructure +531573,Infrastructure,Infrastructure +465736,Climate,Climate +465735,Climate,Climate +544074,Climate,Climate +531786,Climate,Climate +527049,Climate,Climate +525148,Climate,Climate +523370,Climate,Climate +518615,Climate,Climate +465736,Environment,Environment +465735,Environment,Environment +453736,Environment,Environment +449463,Environment,Environment +449462,Environment,Environment +444719,Environment,Environment +435883,Environment,Environment +435740,Environment,Environment +435729,Environment,Environment +544074,Environment,Environment +531786,Environment,Environment +527049,Environment,Environment +525148,Environment,Environment +523370,Environment,Environment +518615,Environment,Environment +451541,Justice and Law Enforcement,Justice and Law Enforcement +449467,Justice and Law Enforcement,Justice and Law Enforcement +435875,Justice and Law Enforcement,Justice and Law Enforcement +435740,Justice and Law Enforcement,Justice and Law Enforcement +435729,Justice and Law Enforcement,Justice and Law Enforcement +435716,Justice and Law Enforcement,Justice and Law Enforcement +429468,Justice and Law Enforcement,Justice and Law Enforcement +527049,Justice and Law Enforcement,Justice and Law Enforcement +525150,Justice and Law Enforcement,Justice and Law Enforcement +525148,Justice and Law Enforcement,Justice and Law Enforcement +523370,Justice and Law Enforcement,Justice and Law Enforcement +518615,Justice and Law Enforcement,Justice and Law Enforcement +494059,Justice and Law Enforcement,Justice and Law Enforcement +454352,Justice and Law Enforcement,Justice and Law Enforcement +523370,Municipalities,Municipalities +518615,Municipalities,Municipalities +494059,Municipalities,Municipalities +485964,Municipalities,Municipalities +476434,Municipalities,Municipalities +474363,Municipalities,Municipalities +472270,Municipalities,Municipalities +469458,Municipalities,Municipalities +469365,Municipalities,Municipalities +465929,Municipalities,Municipalities +465736,Municipalities,Municipalities +465735,Municipalities,Municipalities +454352,Municipalities,Municipalities +451541,Municipalities,Municipalities +449468,Municipalities,Municipalities +449467,Municipalities,Municipalities +449464,Municipalities,Municipalities +448116,Municipalities,Municipalities +444720,Municipalities,Municipalities +435886,Municipalities,Municipalities +435741,Municipalities,Municipalities +435716,Municipalities,Municipalities +544074,Municipalities,Municipalities +540845,Municipalities,Municipalities +531786,Municipalities,Municipalities +527049,Municipalities,Municipalities +525150,Municipalities,Municipalities +486285,Budget,Budget +485010,Budget,Budget +434230,Budget,Budget +432742,Budget,Budget +428310,Budget,Budget +428301,Budget,Budget +426401,Budget,Budget +424554,Budget,Budget +420333,Budget,Budget +498088,Industry,Industry +498086,Industry,Industry +420333,Industry,Industry +418635,Industry,Industry +417410,Industry,Industry +411547,Industry,Industry +492869,Industry,Industry +489173,Industry,Industry +486285,Industry,Industry +485010,Industry,Industry +478107,Industry,Industry +478104,Industry,Industry +475445,Industry,Industry +470947,Industry,Industry +463179,Industry,Industry +463178,Industry,Industry +463177,Industry,Industry +461693,Industry,Industry +447273,Industry,Industry +444544,Industry,Industry +437992,Industry,Industry +434230,Industry,Industry +432742,Industry,Industry +432499,Industry,Industry +430336,Industry,Industry +428310,Industry,Industry +428301,Industry,Industry +426401,Industry,Industry +424693,Industry,Industry +540750,Industry,Industry +530620,Industry,Industry +530618,Industry,Industry +523961,Industry,Industry +521343,Industry,Industry +514500,Industry,Industry +514499,Industry,Industry +513726,Industry,Industry +513695,Industry,Industry +509300,Industry,Industry +506895,Industry,Industry +506895,Intellectual Property,Intellectual Property +506459,Intellectual Property,Intellectual Property +498088,Intellectual Property,Intellectual Property +498086,Intellectual Property,Intellectual Property +492869,Intellectual Property,Intellectual Property +486285,Intellectual Property,Intellectual Property +485010,Intellectual Property,Intellectual Property +478107,Intellectual Property,Intellectual Property +478104,Intellectual Property,Intellectual Property +470947,Intellectual Property,Intellectual Property +466733,Intellectual Property,Intellectual Property +466731,Intellectual Property,Intellectual Property +463179,Intellectual Property,Intellectual Property +463178,Intellectual Property,Intellectual Property +463177,Intellectual Property,Intellectual Property +461693,Intellectual Property,Intellectual Property +437992,Intellectual Property,Intellectual Property +434230,Intellectual Property,Intellectual Property +432742,Intellectual Property,Intellectual Property +428301,Intellectual Property,Intellectual Property +424693,Intellectual Property,Intellectual Property +417410,Intellectual Property,Intellectual Property +411547,Intellectual Property,Intellectual Property +407786,Intellectual Property,Intellectual Property +407011,Intellectual Property,Intellectual Property +523961,Intellectual Property,Intellectual Property +521343,Intellectual Property,Intellectual Property +521336,Intellectual Property,Intellectual Property +517749,Intellectual Property,Intellectual Property +516250,Intellectual Property,Intellectual Property +514500,Intellectual Property,Intellectual Property +513726,Intellectual Property,Intellectual Property +430336,International Trade,International Trade +417410,International Trade,International Trade +411547,International Trade,International Trade +407786,International Trade,International Trade +492869,International Trade,International Trade +486285,International Trade,International Trade +485010,International Trade,International Trade +470947,International Trade,International Trade +466733,International Trade,International Trade +444544,International Trade,International Trade +440790,International Trade,International Trade +439936,International Trade,International Trade +434230,International Trade,International Trade +432742,International Trade,International Trade +397130,Immigration,Immigration +397129,Immigration,Immigration +416957,Immigration,Immigration +416521,Immigration,Immigration +416518,Immigration,Immigration +416509,Immigration,Immigration +416495,Immigration,Immigration +407660,Industry,Industry +406300,Industry,Industry +392167,Industry,Industry +472576,Industry,Industry +465941,Industry,Industry +465940,Industry,Industry +465936,Industry,Industry +443073,Industry,Industry +440810,Industry,Industry +465938,Industry,Industry +458354,Industry,Industry +443077,Industry,Industry +443075,Industry,Industry +443074,Industry,Industry +440811,Industry,Industry +434798,Industry,Industry +430179,Industry,Industry +420658,Industry,Industry +408619,Industry,Industry +408618,Industry,Industry +408616,Industry,Industry +406301,Industry,Industry +392168,Industry,Industry +497049,Industry,Industry +476972,Industry,Industry +472575,Industry,Industry +472573,Industry,Industry +434801,Industry,Industry +434792,Industry,Industry +406303,Industry,Industry +406299,Industry,Industry +392169,Industry,Industry +472574,Industry,Industry +451237,Industry,Industry +432992,Industry,Industry +431906,Industry,Industry +408620,Industry,Industry +392170,Industry,Industry +500536,Industry,Industry +490234,Industry,Industry +463624,Industry,Industry +451234,Industry,Industry +443076,Industry,Industry +434802,Industry,Industry +394852,Industry,Industry +394851,Industry,Industry +509544,Tourism,Tourism +488082,Tourism,Tourism +394852,Tourism,Tourism +394851,Tourism,Tourism +399512,Economic Development,Economic Development +410233,Infrastructure,Infrastructure +399512,Transportation,Transportation +514354,Economic Development,Economic Development +462112,Economic Development,Economic Development +426873,Economic Development,Economic Development +413952,Economic Development,Economic Development +413951,Economic Development,Economic Development +403470,Economic Development,Economic Development +395255,Economic Development,Economic Development +392229,Economic Development,Economic Development +527129,Economic Development,Economic Development +470783,Transportation,Transportation +470783,International Trade,International Trade +470783,Environment,Environment +395147,Economic Development,Economic Development +392231,Economic Development,Economic Development +404440,Economic Development,Economic Development +404437,Economic Development,Economic Development +404436,Economic Development,Economic Development +404435,Economic Development,Economic Development +404434,Economic Development,Economic Development +401792,Economic Development,Economic Development +401791,Economic Development,Economic Development +399927,Health,Santé +392287,Health,Health +392285,Health,Health +395676,Health,Health +400370,Infrastructure,Infrastructure +397803,Infrastructure,Infrastructure +408718,Infrastructure,Infrastructure +408263,Infrastructure,Infrastructure +408260,Infrastructure,Infrastructure +407076,Infrastructure,Infrastructure +463540,Taxation and Finance,Taxation and Finance +463539,Taxation and Finance,Taxation and Finance +462142,Taxation and Finance,Taxation and Finance +462141,Taxation and Finance,Taxation and Finance +458945,Taxation and Finance,Taxation and Finance +458944,Taxation and Finance,Taxation and Finance +456643,Taxation and Finance,Taxation and Finance +454209,Taxation and Finance,Taxation and Finance +454208,Taxation and Finance,Taxation and Finance +454207,Taxation and Finance,Taxation and Finance +454206,Taxation and Finance,Taxation and Finance +454205,Taxation and Finance,Taxation and Finance +448473,Taxation and Finance,Taxation and Finance +444725,Taxation and Finance,Taxation and Finance +444724,Taxation and Finance,Taxation and Finance +442961,Taxation and Finance,Taxation and Finance +436617,Taxation and Finance,Taxation and Finance +436616,Taxation and Finance,Taxation and Finance +436615,Taxation and Finance,Taxation and Finance +432910,Taxation and Finance,Taxation and Finance +422950,Taxation and Finance,Taxation and Finance +421096,Taxation and Finance,Taxation and Finance +421095,Taxation and Finance,Taxation and Finance +419317,Taxation and Finance,Taxation and Finance +418449,Taxation and Finance,Taxation and Finance +417843,Taxation and Finance,Taxation and Finance +417287,Taxation and Finance,Taxation and Finance +417285,Taxation and Finance,Taxation and Finance +414165,Taxation and Finance,Taxation and Finance +414164,Taxation and Finance,Taxation and Finance +410947,Taxation and Finance,Taxation and Finance +410878,Taxation and Finance,Taxation and Finance +410247,Taxation and Finance,Taxation and Finance +408331,Taxation and Finance,Taxation and Finance +407213,Taxation and Finance,Taxation and Finance +406415,Taxation and Finance,Taxation and Finance +397552,Taxation and Finance,Taxation and Finance +393325,Taxation and Finance,Taxation and Finance +534251,Taxation and Finance,Taxation and Finance +534248,Taxation and Finance,Taxation and Finance +534245,Taxation and Finance,Taxation and Finance +534244,Taxation and Finance,Taxation and Finance +534243,Taxation and Finance,Taxation and Finance +534240,Taxation and Finance,Taxation and Finance +534238,Taxation and Finance,Taxation and Finance +534236,Taxation and Finance,Taxation and Finance +534235,Taxation and Finance,Taxation and Finance +534233,Taxation and Finance,Taxation and Finance +534231,Taxation and Finance,Taxation and Finance +533470,Taxation and Finance,Taxation and Finance +533469,Taxation and Finance,Taxation and Finance +533468,Taxation and Finance,Taxation and Finance +533467,Taxation and Finance,Taxation and Finance +533466,Taxation and Finance,Taxation and Finance +533465,Taxation and Finance,Taxation and Finance +533464,Taxation and Finance,Taxation and Finance +530488,Taxation and Finance,Taxation and Finance +528050,Taxation and Finance,Taxation and Finance +523853,Taxation and Finance,Taxation and Finance +523851,Taxation and Finance,Taxation and Finance +521697,Taxation and Finance,Taxation and Finance +521696,Taxation and Finance,Taxation and Finance +521693,Taxation and Finance,Taxation and Finance +519774,Taxation and Finance,Taxation and Finance +519769,Taxation and Finance,Taxation and Finance +516477,Taxation and Finance,Taxation and Finance +507911,Taxation and Finance,Taxation and Finance +507910,Taxation and Finance,Taxation and Finance +507907,Taxation and Finance,Taxation and Finance +507904,Taxation and Finance,Taxation and Finance +500451,Taxation and Finance,Taxation and Finance +500449,Taxation and Finance,Taxation and Finance +500448,Taxation and Finance,Taxation and Finance +500446,Taxation and Finance,Taxation and Finance +496693,Taxation and Finance,Taxation and Finance +496331,Taxation and Finance,Taxation and Finance +496329,Taxation and Finance,Taxation and Finance +494226,Taxation and Finance,Taxation and Finance +494080,Taxation and Finance,Taxation and Finance +494079,Taxation and Finance,Taxation and Finance +492273,Taxation and Finance,Taxation and Finance +492271,Taxation and Finance,Taxation and Finance +492270,Taxation and Finance,Taxation and Finance +488573,Taxation and Finance,Taxation and Finance +485693,Taxation and Finance,Taxation and Finance +485691,Taxation and Finance,Taxation and Finance +485690,Taxation and Finance,Taxation and Finance +485689,Taxation and Finance,Taxation and Finance +485688,Taxation and Finance,Taxation and Finance +478667,Taxation and Finance,Taxation and Finance +463544,Taxation and Finance,Taxation and Finance +392780,Internal Trade,Internal Trade +392771,Internal Trade,Internal Trade +405750,Internal Trade,Internal Trade +400485,Internal Trade,Internal Trade +399070,Internal Trade,Internal Trade +399055,Internal Trade,Internal Trade +396317,Internal Trade,Internal Trade +415750,Economic Development,Economic Development +415739,Economic Development,Economic Development +392821,Economic Development,Economic Development +392817,Economic Development,Economic Development +439287,Economic Development,Economic Development +393202,Budget,Budget +393201,Budget,Budget +393204,Budget,Budget +393202,Municipalities,Municipalities +393201,Municipalities,Municipalities +393204,Municipalities,Municipalities +393201,Tourism,Tourism +393204,Tourism,Tourism +393203,Tourism,Tourism +393202,Infrastructure,Infrastructure +393201,Infrastructure,Infrastructure +393204,Infrastructure,Infrastructure +393031,Health,Health +399892,Housing,Housing +398259,Housing,Housing +396254,Housing,Housing +407702,Housing,Housing +405030,Housing,Housing +393677,Health,Health +393033,Health,Health +394879,Regional Development,Regional Development +394616,Regional Development,Regional Development +417796,Regional Development,Regional Development +412271,Regional Development,Regional Development +412266,Regional Development,Regional Development +399357,Regional Development,Regional Development +414064,Economic Development,Economic Development +394046,Budget,Budget +395573,Industry,Industry +408326,Infrastructure,Infrastructure +408324,Infrastructure,Infrastructure +395573,Infrastructure,Infrastructure +394046,Infrastructure,Infrastructure +437511,Agriculture,Agriculture +399552,Agriculture,Agriculture +393783,International Trade,International Trade +465987,International Trade,International Trade +445210,International Trade,International Trade +437511,International Trade,International Trade +419651,International Trade,International Trade +419650,International Trade,International Trade +419649,International Trade,International Trade +419647,International Trade,International Trade +419646,International Trade,International Trade +408477,International Trade,International Trade +399552,International Trade,International Trade +393791,International Trade,International Trade +393789,International Trade,International Trade +393114,Health,Health +393113,Health,Health +427422,Health,Health +427421,Health,Health +427420,Health,Health +424875,Health,Health +420382,Health,Health +410526,Health,Health +408423,Health,Health +408421,Health,Health +408420,Health,Health +393116,Health,Health +415163,Mining,Mining +395387,Mining,Mining +415163,International Trade,International Trade +395387,International Trade,International Trade +395387,Industry,Industry +395387,Employment and Training,Employment and Training +408240,Economic Development,Economic Development +395387,Economic Development,Economic Development +396940,Internal Trade,Internal Trade +394292,Internal Trade,Internal Trade +399096,Internal Trade,Internal Trade +394294,International Trade,International Trade +394292,International Trade,International Trade +399096,International Trade,International Trade +396946,International Trade,International Trade +398506,Climate,Climate +398501,Climate,Climate +395061,Industry,Industry +395048,Industry,Industry +395063,Industry,Industry +395046,Intellectual Property,Intellectual Property +393353,Intellectual Property,Intellectual Property +395063,Intellectual Property,Intellectual Property +395062,Intellectual Property,Intellectual Property +395061,Intellectual Property,Intellectual Property +395060,Intellectual Property,Intellectual Property +395058,Intellectual Property,Intellectual Property +395054,Intellectual Property,Intellectual Property +395053,Intellectual Property,Intellectual Property +395051,Intellectual Property,Intellectual Property +400667,Intellectual Property,Intellectual Property +400660,Intellectual Property,Intellectual Property +396824,Intellectual Property,Intellectual Property +396812,Intellectual Property,Intellectual Property +396802,Intellectual Property,Intellectual Property +396799,Intellectual Property,Intellectual Property +396798,Intellectual Property,Intellectual Property +396793,Intellectual Property,Intellectual Property +396792,Intellectual Property,Intellectual Property +396778,Intellectual Property,Intellectual Property +396771,Intellectual Property,Intellectual Property +396768,Intellectual Property,Intellectual Property +396765,Intellectual Property,Intellectual Property +396763,Intellectual Property,Intellectual Property +396758,Intellectual Property,Intellectual Property +396752,Intellectual Property,Intellectual Property +396742,Intellectual Property,Intellectual Property +394670,Intellectual Property,Intellectual Property +400722,Intellectual Property,Intellectual Property +400720,Intellectual Property,Intellectual Property +400716,Intellectual Property,Intellectual Property +400684,Intellectual Property,Intellectual Property +400680,Intellectual Property,Intellectual Property +397130,Economic Development,Economic Development +397129,Economic Development,Economic Development +431175,Economic Development,Economic Development +416957,Economic Development,Economic Development +416521,Economic Development,Economic Development +416518,Economic Development,Economic Development +416509,Economic Development,Economic Development +416495,Economic Development,Economic Development +416479,Economic Development,Economic Development +400347,Health,Health +422304,Economic Development,Economic Development +404186,Economic Development,Economic Development +393003,Economic Development,Economic Development +460399,Economic Development,Economic Development +451681,Economic Development,Economic Development +447313,Economic Development,Economic Development +443281,Economic Development,Economic Development +431350,Economic Development,Economic Development +461033,Government Procurement,Government Procurement +485510,Government Procurement,Government Procurement +447313,Industry,Industry +443281,Industry,Industry +431350,Industry,Industry +431349,Industry,Industry +422304,Industry,Industry +404187,Industry,Industry +511892,Industry,Industry +511890,Industry,Industry +511689,Industry,Industry +509774,Industry,Industry +509110,Industry,Industry +503622,Industry,Industry +503117,Industry,Industry +503116,Industry,Industry +499929,Industry,Industry +499324,Industry,Industry +494343,Industry,Industry +494342,Industry,Industry +494048,Industry,Industry +494047,Industry,Industry +488583,Industry,Industry +488582,Industry,Industry +488581,Industry,Industry +488580,Industry,Industry +486236,Industry,Industry +485726,Industry,Industry +485512,Industry,Industry +485511,Industry,Industry +485510,Industry,Industry +482700,Industry,Industry +481313,Industry,Industry +481186,Industry,Industry +481185,Industry,Industry +478443,Industry,Industry +478442,Industry,Industry +478441,Industry,Industry +478440,Industry,Industry +478439,Industry,Industry +478438,Industry,Industry +478437,Industry,Industry +470268,Industry,Industry +470266,Industry,Industry +470265,Industry,Industry +470261,Industry,Industry +465868,Industry,Industry +461034,Industry,Industry +461033,Industry,Industry +461032,Industry,Industry +460399,Industry,Industry +459897,Industry,Industry +459867,Industry,Industry +459866,Industry,Industry +457868,Industry,Industry +456836,Industry,Industry +456835,Industry,Industry +454445,Industry,Industry +393288,Health,Health +393283,Health,Health +401203,Health,Health +393288,Research and Development,Research and Development +393283,Research and Development,Research and Development +401203,Research and Development,Research and Development +393288,Taxation and Finance,Taxation and Finance +393283,Taxation and Finance,Taxation and Finance +401203,Taxation and Finance,Taxation and Finance +394948,Health,Health +394651,Health,Health +394948,Intellectual Property,Intellectual Property +394651,Intellectual Property,Intellectual Property +394948,Research and Development,Research and Development +394651,Research and Development,Research and Development +394948,Taxation and Finance,Taxation and Finance +394651,Taxation and Finance,Taxation and Finance +394651,Industry,Industry +404056,Industry,Industry +427146,Mining,Mining +422600,Mining,Mining +427845,Mining,Mining +398259,Consumer Issues,Consumer Issues +396254,Consumer Issues,Consumer Issues +407702,Consumer Issues,Consumer Issues +405030,Consumer Issues,Consumer Issues +405004,Consumer Issues,Consumer Issues +398259,Financial Institutions,Financial Institutions +396254,Financial Institutions,Financial Institutions +407702,Financial Institutions,Financial Institutions +405030,Financial Institutions,Financial Institutions +405369,Employment and Training,Employment and Training +393319,Industry,Industry +393318,Industry,Industry +410751,Industry,Industry +406118,Industry,Industry +405367,Industry,Industry +405366,Industry,Industry +396110,Industry,Industry +393321,Industry,Industry +405369,Education,Education +405368,Education,Education +426379,International Trade,International Trade +426375,International Trade,International Trade +395805,International Trade,International Trade +395804,International Trade,International Trade +395802,International Trade,International Trade +395801,International Trade,International Trade +467239,International Trade,International Trade +466041,International Trade,International Trade +426382,International Trade,International Trade +467239,Health,Health +466041,Health,Health +426382,Health,Health +426380,Health,Health +426379,Health,Health +426375,Health,Health +395805,Health,Health +395804,Health,Health +395802,Health,Health +395802,Agriculture,Agriculture +395801,Agriculture,Agriculture +467239,Agriculture,Agriculture +466041,Agriculture,Agriculture +426382,Agriculture,Agriculture +426380,Agriculture,Agriculture +426379,Agriculture,Agriculture +426375,Agriculture,Agriculture +395805,Agriculture,Agriculture +395802,Consumer Issues,Consumer Issues +395801,Consumer Issues,Consumer Issues +467239,Consumer Issues,Consumer Issues +466041,Consumer Issues,Consumer Issues +426382,Consumer Issues,Consumer Issues +426380,Consumer Issues,Consumer Issues +426379,Consumer Issues,Consumer Issues +426375,Consumer Issues,Consumer Issues +395805,Consumer Issues,Consumer Issues +393003,Regional Development,Regional Development +402168,Economic Development,Economic Development +402167,Economic Development,Economic Development +402165,Economic Development,Economic Development +402125,Economic Development,Economic Development +402117,Economic Development,Economic Development +396859,Economic Development,Economic Development +396855,Economic Development,Economic Development +396850,Economic Development,Economic Development +396844,Economic Development,Economic Development +526473,Economic Development,Economic Development +526472,Economic Development,Economic Development +526468,Economic Development,Economic Development +514187,Economic Development,Economic Development +508153,Economic Development,Economic Development +503285,Economic Development,Economic Development +485159,Economic Development,Economic Development +485156,Economic Development,Economic Development +443886,Energy,Energy +413874,Energy,Energy +402169,Energy,Energy +402168,Energy,Energy +402167,Energy,Energy +402165,Energy,Energy +402125,Energy,Energy +402117,Energy,Energy +396859,Energy,Energy +396855,Energy,Energy +396850,Energy,Energy +396844,Energy,Energy +543979,Energy,Energy +540044,Energy,Energy +532518,Energy,Energy +532517,Energy,Energy +532516,Energy,Energy +532515,Energy,Energy +526468,Energy,Energy +520467,Energy,Energy +518327,Energy,Energy +518325,Energy,Energy +518317,Energy,Energy +518316,Energy,Energy +518315,Energy,Energy +515907,Energy,Energy +514187,Energy,Energy +513205,Energy,Energy +511032,Energy,Energy +511030,Energy,Energy +511029,Energy,Energy +511022,Energy,Energy +511021,Energy,Energy +511019,Energy,Energy +510969,Energy,Energy +510937,Energy,Energy +508155,Energy,Energy +508074,Energy,Energy +508069,Energy,Energy +505185,Energy,Energy +505182,Energy,Energy +505178,Energy,Energy +505176,Energy,Energy +505172,Energy,Energy +503285,Energy,Energy +502401,Energy,Energy +502399,Energy,Energy +502392,Energy,Energy +502388,Energy,Energy +502278,Energy,Energy +499137,Energy,Energy +496113,Energy,Energy +496110,Energy,Energy +491345,Energy,Energy +487539,Energy,Energy +487536,Energy,Energy +487534,Energy,Energy +487510,Energy,Energy +487507,Energy,Energy +485159,Energy,Energy +485156,Energy,Energy +482271,Energy,Energy +480368,Energy,Energy +480367,Energy,Energy +480364,Energy,Energy +475732,Energy,Energy +475721,Energy,Energy +473651,Energy,Energy +472421,Energy,Energy +470208,Energy,Energy +470203,Energy,Energy +458710,Energy,Energy +458458,Energy,Energy +458705,Infrastructure,Infrastructure +443886,Infrastructure,Infrastructure +402169,Infrastructure,Infrastructure +402168,Infrastructure,Infrastructure +402167,Infrastructure,Infrastructure +402165,Infrastructure,Infrastructure +402125,Infrastructure,Infrastructure +402117,Infrastructure,Infrastructure +396859,Infrastructure,Infrastructure +396855,Infrastructure,Infrastructure +396850,Infrastructure,Infrastructure +396844,Infrastructure,Infrastructure +540044,Infrastructure,Infrastructure +532517,Infrastructure,Infrastructure +480368,Infrastructure,Infrastructure +461682,Infrastructure,Infrastructure +491345,International Trade,International Trade +487507,International Trade,International Trade +402169,International Trade,International Trade +402168,International Trade,International Trade +499836,Employment and Training,Employment and Training +420256,Agriculture,Agriculture +391557,Climate,Climate +391585,Internal Trade,Internal Trade +540135,Agriculture,Agriculture +435923,Climate,Climate +416890,Intellectual Property,Intellectual Property +485155,Transportation,Transportation +391586,Internal Trade,Internal Trade +391743,Climate,Climate +391743,Infrastructure,Infrastructure +391743,Environment,Environment +391743,Energy,Energy +391637,Environment,Environment +391751,Intellectual Property,Intellectual Property +391796,International Trade,International Trade +452265,Research and Development,Research and Development +410153,Climate,Climate +393007,Climate,Climate +393007,Environment,Environment +393007,Energy,Energy +407652,Budget,Budget +408613,Economic Development,Economic Development +407652,Energy,Energy +408612,Environment,Environment +408612,Financial Institutions,Financial Institutions +408613,Industry,Industry +408613,Infrastructure,Infrastructure +408614,International Relations,International Relations +407652,International Trade,International Trade +408613,Small Business,Small Business +400413,Justice and Law Enforcement,Justice et application des lois +422084,Security,Sécurité +426284,Transportation,Transports +500704,Economic Development,Economic Development +413281,Budget,Budget +406217,Taxation and Finance,Taxation and Finance +391933,International Trade,International Trade +401556,Health,Health +533733,Labour,Labour +393373,Education,Education +496414,Agriculture,Agriculture +496413,Consumer Issues,Consumer Issues +496415,Economic Development,Economic Development +496414,Environment,Environment +496416,Health,Health +496414,International Trade,International Trade +392931,Taxation and Finance,Taxation and Finance +399549,Consumer Issues,Consumer Issues +421937,Financial Institutions,Financial Institutions +391946,Budget,Budget +404022,Financial Institutions,Financial Institutions +397241,Environment,Environment +397241,Infrastructure,Infrastructure +397241,Regional Development,Regional Development +391952,Employment and Training,Employment and Training +394398,Economic Development,Economic Development +394328,Internal Trade,Internal Trade +394328,International Trade,International Trade +393928,Labour,Labour +394394,Transportation,Transportation +397774,Education,Education +445823,Agriculture,Agriculture +419089,International Trade,International Trade +397720,Economic Development,Economic Development +397720,Energy,Energy +397720,Infrastructure,Infrastructure +397717,Environment,Environment +392003,Health,Health +402105,Research and Development,Research and Development +391997,Economic Development,Economic Development +394299,Environment,Environment +394301,Mining,Mining +391997,Regional Development,Regional Development +391263,Government Procurement,Government Procurement +420833,Education,Education +407316,Official Languages,Official Languages +410976,Constitutional Issues,Constitutional Issues +410975,International Trade,International Trade +410976,Sports,Sports +393863,International Trade,International Trade +428623,Industry,Industry +403544,Infrastructure,Infrastructure +406442,Economic Development,Economic Development +409733,International Relations,International Relations +409754,Energy,Energy +399869,Intellectual Property,Intellectual Property +404337,Climate,Climate +404337,Infrastructure,Infrastructure +392006,Regional Development,Regional Development +392946,Justice and Law Enforcement,Justice et application des lois +399171,Health,Santé +399171,Defence,Défense +392045,Labour,Labour +393198,Budget,Budget +393198,Economic Development,Economic Development +393198,Infrastructure,Infrastructure +393198,Municipalities,Municipalities +393198,Regional Development,Regional Development +393198,Tourism,Tourism +415974,Budget,Budget +415984,Industry,Industry +522899,International Trade,International Trade +392404,Energy,Energy +392404,Infrastructure,Infrastructure +392404,International Development,International Development +392404,International Relations,International Relations +494833,Budget,Budget +506445,Climate,Climate +470394,Economic Development,Economic Development +411991,Employment and Training,Employment and Training +401991,Energy,Energy +506446,Environment,Environment +506445,Government Procurement,Government Procurement +411991,Immigration,Immigration +448899,Intellectual Property,Intellectual Property +411994,International Trade,International Trade +393923,Regional Development,Regional Development +392286,Research and Development,Research and Development +392076,Small Business,Small Business +411996,Taxation and Finance,Taxation and Finance +398911,Industry,Industry +410544,Small Business,Small Business +442106,Taxation and Finance,Taxation and Finance +531570,Infrastructure,Infrastructure +465929,Climate,Climate +465929,Environment,Environment +453736,Justice and Law Enforcement,Justice and Law Enforcement +525148,Municipalities,Municipalities +417410,Budget,Budget +506459,Industry,Industry +509300,Intellectual Property,Intellectual Property +411547,International Relations,International Relations +432499,International Trade,International Trade +416479,Immigration,Immigration +394766,Official Languages,Langues officielles +408615,Industry,Industry +465942,Industry,Industry +434807,Industry,Industry +432994,Industry,Industry +425956,Industry,Industry +526322,Tourism,Tourism +410233,Economic Development,Economic Development +399512,Infrastructure,Infrastructure +410233,Transportation,Transportation +514403,Economic Development,Economic Development +394712,Transportation,Transportation +424757,Transportation,Transportation +424757,Infrastructure,Infrastructure +424757,Regional Development,Regional Development +424757,Economic Development,Economic Development +424757,International Trade,International Trade +424757,Environment,Environment +401789,Economic Development,Economic Development +410459,Health,Santé +395673,Health,Health +392331,Economic Development,Economic Development +394655,Health,Health +394620,Government Procurement,Government Procurement +394620,Defence,Defence +392651,Health,Health +392651,Small Business,Small Business +392651,Employment and Training,Employment and Training +404913,Infrastructure,Infrastructure +463541,Taxation and Finance,Taxation and Finance +392709,Labour,Labour +396314,Internal Trade,Internal Trade +392781,Health,Health +392784,Health,Health +392783,Health,Health +439275,Economic Development,Economic Development +393203,Budget,Budget +393203,Municipalities,Municipalities +393202,Tourism,Tourism +393203,Infrastructure,Infrastructure +397382,Consumer Issues,Consumer Issues +397382,Health,Health +405004,Housing,Housing +405004,Taxation and Finance,Taxation and Finance +400972,Transportation,Transportation +397383,Consumer Issues,Consumer Issues +397383,Health,Health +397230,Regional Development,Regional Development +431346,Economic Development,Economic Development +527386,Fisheries,Fisheries +395573,Budget,Budget +395573,Employment and Training,Employment and Training +407147,Government Procurement,Government Procurement +418976,Industry,Industry +414475,Infrastructure,Infrastructure +395573,Labour,Labour +394046,Municipalities,Municipalities +465987,Agriculture,Agriculture +393786,International Trade,International Trade +393115,Health,Health +418913,Energy,Energy +418913,Economic Development,Economic Development +418913,Environment,Environment +418912,Mining,Mining +418912,International Trade,International Trade +395387,Climate,Climate +395387,Environment,Environment +415163,Industry,Industry +408240,Employment and Training,Employment and Training +415163,Economic Development,Economic Development +396946,Internal Trade,Internal Trade +396940,International Trade,International Trade +398533,Climate,Climate +393843,International Trade,International Trade +395062,Industry,Industry +395048,Intellectual Property,Intellectual Property +392933,Economic Development,Economic Development +394670,Industry,Industry +400675,Intellectual Property,Intellectual Property +407471,Economic Development,Economic Development +406603,Health,Health +460399,Defence,Defence +431349,Economic Development,Economic Development +470268,Government Procurement,Government Procurement +451681,Industry,Industry +443281,International Trade,International Trade +401202,Health,Health +393283,Industry,Industry +401203,Intellectual Property,Intellectual Property +401202,Research and Development,Research and Development +401202,Taxation and Finance,Taxation and Finance +393675,Housing,Housing +393864,Government Procurement,Government Procurement +404056,Health,Health +404056,Intellectual Property,Intellectual Property +404056,Research and Development,Research and Development +404056,Taxation and Finance,Taxation and Finance +394948,Industry,Industry +427845,Economic Development,Economic Development +427845,International Trade,International Trade +427148,Mining,Mining +427845,Regional Development,Regional Development +393871,Financial Institutions,Financial Institutions +393871,Industry,Industry +399892,Consumer Issues,Consumer Issues +399892,Financial Institutions,Financial Institutions +406118,Employment and Training,Employment and Training +405367,Regional Development,Regional Development +405368,Immigration,Immigration +396110,Small Business,Small Business +393320,Industry,Industry +406118,Education,Education +410751,Research and Development,Research and Development +396921,Transportation,Transportation +426380,International Trade,International Trade +395801,Health,Health +395804,Agriculture,Agriculture +395804,Consumer Issues,Consumer Issues +404186,Regional Development,Regional Development +402169,Economic Development,Economic Development +452975,Energy,Energy +458708,Infrastructure,Infrastructure +505178,International Trade,International Trade +393648,Financial Institutions,Financial Institutions +503421,Economic Development,Economic Development +494096,Transportation,Transportation +494096,Tourism,Tourism +494097,Infrastructure,Infrastructure +494096,Environment,Environment +445531,Infrastructure,Infrastructure +537742,Regional Development,Regional Development +393650,Consumer Issues,Consumer Issues +393650,International Trade,International Trade +393650,Justice and Law Enforcement,Justice and Law Enforcement +393650,Taxation and Finance,Taxation and Finance +460786,Research and Development,Research and Development +399900,Municipalities,Municipalities +399899,Defence,Defence +399900,Forestry,Forestry +399900,Government Procurement,Government Procurement +393653,Justice and Law Enforcement,Justice and Law Enforcement +427605,Economic Development,Economic Development +393357,Health,Santé +393650,Economic Development,Economic Development +394716,Agriculture,Agriculture +394717,Economic Development,Economic Development +397621,Infrastructure,Infrastructure +397613,Regional Development,Regional Development +397613,Transportation,Transportation +408040,Defence,Defence +393054,Tourism,Tourism +393054,Infrastructure,Infrastructure +393883,Consumer Issues,Consumer Issues +393883,Economic Development,Economic Development +393882,International Trade,International Trade +393883,Justice and Law Enforcement,Justice and Law Enforcement +393883,Taxation and Finance,Taxation and Finance +415724,Agriculture,Agriculture +482375,Government Procurement,Government Procurement +393736,Infrastructure,Infrastructure +394298,Taxation and Finance,Taxation and Finance +408544,International Trade,Commerce international +402167,International Trade,International Trade +402165,International Trade,International Trade +396859,International Trade,International Trade +396855,International Trade,International Trade +396850,International Trade,International Trade +396844,International Trade,International Trade +518317,International Trade,International Trade +518316,International Trade,International Trade +505185,International Trade,International Trade +486454,Economic Development,Economic Development +465759,Economic Development,Economic Development +408969,Economic Development,Economic Development +408967,Economic Development,Economic Development +493855,Transportation,Transportation +465759,Transportation,Transportation +408969,Transportation,Transportation +408967,Transportation,Transportation +504961,Transportation,Transportation +500374,Transportation,Transportation +499986,Transportation,Transportation +494098,Transportation,Transportation +494097,Transportation,Transportation +493855,Tourism,Tourism +486454,Tourism,Tourism +465759,Tourism,Tourism +408969,Tourism,Tourism +408967,Tourism,Tourism +504961,Tourism,Tourism +503421,Tourism,Tourism +500374,Tourism,Tourism +499986,Tourism,Tourism +494098,Tourism,Tourism +494097,Tourism,Tourism +494096,Infrastructure,Infrastructure +465759,Infrastructure,Infrastructure +408969,Infrastructure,Infrastructure +408967,Infrastructure,Infrastructure +504961,Infrastructure,Infrastructure +503421,Infrastructure,Infrastructure +500374,Infrastructure,Infrastructure +499986,Infrastructure,Infrastructure +494098,Infrastructure,Infrastructure +493855,Environment,Environment +465759,Environment,Environment +408969,Environment,Environment +408967,Environment,Environment +504961,Environment,Environment +503421,Environment,Environment +500374,Environment,Environment +494098,Environment,Environment +494097,Environment,Environment +443612,Infrastructure,Infrastructure +442522,Infrastructure,Infrastructure +405864,Infrastructure,Infrastructure +405862,Infrastructure,Infrastructure +539592,Infrastructure,Infrastructure +537755,Infrastructure,Infrastructure +537754,Infrastructure,Infrastructure +537753,Infrastructure,Infrastructure +537750,Infrastructure,Infrastructure +537748,Infrastructure,Infrastructure +537746,Infrastructure,Infrastructure +537742,Infrastructure,Infrastructure +537736,Infrastructure,Infrastructure +537718,Infrastructure,Infrastructure +478011,Infrastructure,Infrastructure +475501,Infrastructure,Infrastructure +473055,Infrastructure,Infrastructure +447528,Infrastructure,Infrastructure +537736,Regional Development,Regional Development +537718,Regional Development,Regional Development +522861,Regional Development,Regional Development +513027,Regional Development,Regional Development +479218,Regional Development,Regional Development +479215,Regional Development,Regional Development +442967,Regional Development,Regional Development +442966,Regional Development,Regional Development +442964,Regional Development,Regional Development +435300,Regional Development,Regional Development +435202,Regional Development,Regional Development +537755,Regional Development,Regional Development +537754,Regional Development,Regional Development +537753,Regional Development,Regional Development +537750,Regional Development,Regional Development +537748,Regional Development,Regional Development +537746,Regional Development,Regional Development +393649,Consumer Issues,Consumer Issues +393649,International Trade,International Trade +393649,Justice and Law Enforcement,Justice and Law Enforcement +393649,Taxation and Finance,Taxation and Finance +460780,Research and Development,Research and Development +459740,Research and Development,Research and Development +445151,Research and Development,Research and Development +445149,Research and Development,Research and Development +445146,Research and Development,Research and Development +445143,Research and Development,Research and Development +445141,Research and Development,Research and Development +445116,Research and Development,Research and Development +444132,Research and Development,Research and Development +438773,Research and Development,Research and Development +437847,Research and Development,Research and Development +437844,Research and Development,Research and Development +437842,Research and Development,Research and Development +437050,Research and Development,Research and Development +436515,Research and Development,Research and Development +436514,Research and Development,Research and Development +434465,Research and Development,Research and Development +434463,Research and Development,Research and Development +434462,Research and Development,Research and Development +434461,Research and Development,Research and Development +434459,Research and Development,Research and Development +434458,Research and Development,Research and Development +434457,Research and Development,Research and Development +434455,Research and Development,Research and Development +434453,Research and Development,Research and Development +434187,Research and Development,Research and Development +430946,Research and Development,Research and Development +430943,Research and Development,Research and Development +424489,Research and Development,Research and Development +419306,Research and Development,Research and Development +418931,Research and Development,Research and Development +418930,Research and Development,Research and Development +418929,Research and Development,Research and Development +418928,Research and Development,Research and Development +418927,Research and Development,Research and Development +418926,Research and Development,Research and Development +408834,Research and Development,Research and Development +408833,Research and Development,Research and Development +408832,Research and Development,Research and Development +408829,Research and Development,Research and Development +406047,Research and Development,Research and Development +402890,Research and Development,Research and Development +402323,Research and Development,Research and Development +401572,Research and Development,Research and Development +401571,Research and Development,Research and Development +401570,Research and Development,Research and Development +401569,Research and Development,Research and Development +401103,Research and Development,Research and Development +401102,Research and Development,Research and Development +400118,Research and Development,Research and Development +400117,Research and Development,Research and Development +400111,Research and Development,Research and Development +399561,Research and Development,Research and Development +399560,Research and Development,Research and Development +399559,Research and Development,Research and Development +396504,Research and Development,Research and Development +393581,Research and Development,Research and Development +393010,Research and Development,Research and Development +543013,Research and Development,Research and Development +543012,Research and Development,Research and Development +541265,Research and Development,Research and Development +539912,Research and Development,Research and Development +539911,Research and Development,Research and Development +538720,Research and Development,Research and Development +536037,Research and Development,Research and Development +533515,Research and Development,Research and Development +533511,Research and Development,Research and Development +533504,Research and Development,Research and Development +533503,Research and Development,Research and Development +533502,Research and Development,Research and Development +533499,Research and Development,Research and Development +531008,Research and Development,Research and Development +528599,Research and Development,Research and Development +524865,Research and Development,Research and Development +524842,Research and Development,Research and Development +524806,Research and Development,Research and Development +516584,Research and Development,Research and Development +516579,Research and Development,Research and Development +516578,Research and Development,Research and Development +514314,Research and Development,Research and Development +509831,Research and Development,Research and Development +506751,Research and Development,Research and Development +503493,Research and Development,Research and Development +500450,Research and Development,Research and Development +500447,Research and Development,Research and Development +500445,Research and Development,Research and Development +497463,Research and Development,Research and Development +497462,Research and Development,Research and Development +496383,Research and Development,Research and Development +490270,Research and Development,Research and Development +490265,Research and Development,Research and Development +477543,Research and Development,Research and Development +477416,Research and Development,Research and Development +477412,Research and Development,Research and Development +477402,Research and Development,Research and Development +477399,Research and Development,Research and Development +477396,Research and Development,Research and Development +474176,Research and Development,Research and Development +474175,Research and Development,Research and Development +472349,Research and Development,Research and Development +472348,Research and Development,Research and Development +472346,Research and Development,Research and Development +470134,Research and Development,Research and Development +466313,Research and Development,Research and Development +466311,Research and Development,Research and Development +465369,Research and Development,Research and Development +465368,Research and Development,Research and Development +465367,Research and Development,Research and Development +463399,Research and Development,Research and Development +463398,Research and Development,Research and Development +463397,Research and Development,Research and Development +463393,Research and Development,Research and Development +463391,Research and Development,Research and Development +463389,Research and Development,Research and Development +461071,Research and Development,Research and Development +460787,Research and Development,Research and Development +399899,Forestry,Forestry +399899,Government Procurement,Government Procurement +405865,Economic Development,Economic Development +405862,Economic Development,Economic Development +535435,Economic Development,Economic Development +528874,Economic Development,Economic Development +526731,Economic Development,Economic Development +526725,Economic Development,Economic Development +526724,Economic Development,Economic Development +526722,Economic Development,Economic Development +522861,Economic Development,Economic Development +513027,Economic Development,Economic Development +500684,Economic Development,Economic Development +493184,Economic Development,Economic Development +493172,Economic Development,Economic Development +484781,Economic Development,Economic Development +479227,Economic Development,Economic Development +479221,Economic Development,Economic Development +479218,Economic Development,Economic Development +478011,Economic Development,Economic Development +478006,Economic Development,Economic Development +477999,Economic Development,Economic Development +477992,Economic Development,Economic Development +475511,Economic Development,Economic Development +475501,Economic Development,Economic Development +473055,Economic Development,Economic Development +469702,Economic Development,Economic Development +469701,Economic Development,Economic Development +461831,Economic Development,Economic Development +461728,Economic Development,Economic Development +458655,Economic Development,Economic Development +448108,Economic Development,Economic Development +447538,Economic Development,Economic Development +447534,Economic Development,Economic Development +447533,Economic Development,Economic Development +442967,Economic Development,Economic Development +442966,Economic Development,Economic Development +442964,Economic Development,Economic Development +442962,Economic Development,Economic Development +438747,Economic Development,Economic Development +438741,Economic Development,Economic Development +438637,Economic Development,Economic Development +438355,Economic Development,Economic Development +435300,Economic Development,Economic Development +435202,Economic Development,Economic Development +432299,Economic Development,Economic Development +430259,Economic Development,Economic Development +393356,Health,Santé +393354,Health,Santé +393359,Health,Santé +393358,Health,Santé +393649,Economic Development,Economic Development +394714,Economic Development,Economic Development +394713,Economic Development,Economic Development +397621,Economic Development,Economic Development +397618,Economic Development,Economic Development +397613,Infrastructure,Infrastructure +394714,Regional Development,Regional Development +394713,Regional Development,Regional Development +397621,Regional Development,Regional Development +397618,Regional Development,Regional Development +394715,Transportation,Transportation +394714,Transportation,Transportation +393882,Consumer Issues,Consumer Issues +393882,Economic Development,Economic Development +393883,International Trade,International Trade +393882,Justice and Law Enforcement,Justice and Law Enforcement +393882,Taxation and Finance,Taxation and Finance +476017,Government Procurement,Government Procurement +449676,Government Procurement,Government Procurement +399904,Government Procurement,Government Procurement +491522,Government Procurement,Government Procurement +491515,Government Procurement,Government Procurement +394297,Taxation and Finance,Taxation and Finance +394293,Taxation and Finance,Taxation and Finance +396614,International Trade,Commerce international +393666,International Trade,Commerce international +417202,International Trade,Commerce international +410747,International Trade,Commerce international +408545,International Trade,Commerce international +393666,Taxation and Finance,Impôts et finances +417202,Taxation and Finance,Impôts et finances +410747,Taxation and Finance,Impôts et finances +398158,Taxation and Finance,Impôts et finances +398157,Taxation and Finance,Impôts et finances +398156,Taxation and Finance,Impôts et finances +398155,Taxation and Finance,Impôts et finances +396614,Taxation and Finance,Impôts et finances +396610,Taxation and Finance,Impôts et finances +408545,Industry,Industrie +408544,Industry,Industrie +398158,Industry,Industrie +398157,Industry,Industrie +398156,Industry,Industrie +398155,Industry,Industrie +396614,Industry,Industrie +396610,Industry,Industrie +393666,Industry,Industrie +417202,Industry,Industrie +414558,Industry,Industrie +414557,Industry,Industrie +414556,Industry,Industrie +396585,Justice and Law Enforcement,Justice et application des lois +393666,Justice and Law Enforcement,Justice et application des lois +417202,Justice and Law Enforcement,Justice et application des lois +414558,Justice and Law Enforcement,Justice et application des lois +414557,Justice and Law Enforcement,Justice et application des lois +414556,Justice and Law Enforcement,Justice et application des lois +410747,Justice and Law Enforcement,Justice et application des lois +408545,Justice and Law Enforcement,Justice et application des lois +408544,Justice and Law Enforcement,Justice et application des lois +398158,Justice and Law Enforcement,Justice et application des lois +398157,Justice and Law Enforcement,Justice et application des lois +398156,Justice and Law Enforcement,Justice et application des lois +398155,Justice and Law Enforcement,Justice et application des lois +396614,Justice and Law Enforcement,Justice et application des lois +396585,Health,Santé +393666,Health,Santé +417202,Health,Santé +414558,Health,Santé +414557,Health,Santé +414556,Health,Santé +410747,Health,Santé +408545,Health,Santé +408544,Health,Santé +398158,Health,Santé +398157,Health,Santé +398156,Health,Santé +398155,Health,Santé +396614,Health,Santé +399629,Fisheries,Fisheries +453080,Economic Development,Economic Development +445722,Industry,Industry +442517,Industry,Industry +437124,Industry,Industry +437122,Industry,Industry +434474,Industry,Industry +429418,Industry,Industry +429416,Industry,Industry +429415,Industry,Industry +396913,Industry,Industry +396905,Industry,Industry +393627,Industry,Industry +393626,Industry,Industry +393625,Industry,Industry +393624,Industry,Industry +459852,Industry,Industry +453080,Industry,Industry +445724,Energy,Energy +445722,Energy,Energy +396913,Energy,Energy +396905,Energy,Energy +398038,Industry,Industry +398037,Industry,Industry +422646,Industry,Industry +410829,Industry,Industry +410828,Industry,Industry +410779,Industry,Industry +410541,Industry,Industry +410540,Industry,Industry +410538,Industry,Industry +410538,Small Business,Small Business +410537,Small Business,Small Business +422646,Small Business,Small Business +410829,Small Business,Small Business +410828,Small Business,Small Business +410779,Small Business,Small Business +410541,Small Business,Small Business +431403,Climate,Climate +431402,Climate,Climate +427198,Climate,Climate +427197,Climate,Climate +427015,Climate,Climate +427014,Climate,Climate +427013,Climate,Climate +425234,Climate,Climate +425233,Climate,Climate +424608,Climate,Climate +423187,Climate,Climate +422495,Climate,Climate +419493,Climate,Climate +418482,Climate,Climate +417215,Climate,Climate +411818,Climate,Climate +411675,Climate,Climate +411674,Climate,Climate +411673,Climate,Climate +411672,Climate,Climate +411671,Climate,Climate +408572,Climate,Climate +408210,Climate,Climate +404889,Climate,Climate +401668,Climate,Climate +399637,Climate,Climate +398124,Climate,Climate +398115,Climate,Climate +395335,Climate,Climate +395249,Climate,Climate +393235,Climate,Climate +516543,Climate,Climate +516082,Climate,Climate +483384,Climate,Climate +482896,Climate,Climate +482717,Climate,Climate +481211,Climate,Climate +480396,Climate,Climate +476932,Climate,Climate +465350,Climate,Climate +463601,Climate,Climate +463208,Climate,Climate +462842,Climate,Climate +462829,Climate,Climate +462107,Climate,Climate +461100,Climate,Climate +461005,Climate,Climate +460890,Climate,Climate +460889,Climate,Climate +460870,Climate,Climate +460849,Climate,Climate +460839,Climate,Climate +460744,Climate,Climate +456219,Climate,Climate +436585,Climate,Climate +436294,Climate,Climate +481224,Energy,Energy +465350,Energy,Energy +463601,Energy,Energy +463208,Energy,Energy +462842,Energy,Energy +462829,Energy,Energy +462107,Energy,Energy +461100,Energy,Energy +461005,Energy,Energy +460890,Energy,Energy +460889,Energy,Energy +460870,Energy,Energy +460849,Energy,Energy +460839,Energy,Energy +460744,Energy,Energy +456219,Energy,Energy +436585,Energy,Energy +436294,Energy,Energy +431635,Energy,Energy +431403,Energy,Energy +431402,Energy,Energy +427198,Energy,Energy +427197,Energy,Energy +427015,Energy,Energy +427014,Energy,Energy +427013,Energy,Energy +425234,Energy,Energy +425233,Energy,Energy +424608,Energy,Energy +423187,Energy,Energy +422495,Energy,Energy +419493,Energy,Energy +418482,Energy,Energy +417215,Energy,Energy +411818,Energy,Energy +411675,Energy,Energy +411674,Energy,Energy +411673,Energy,Energy +411672,Energy,Energy +411671,Energy,Energy +408572,Energy,Energy +408210,Energy,Energy +404889,Energy,Energy +401668,Energy,Energy +399637,Energy,Energy +398124,Energy,Energy +395335,Energy,Energy +395249,Energy,Energy +393235,Energy,Energy +516543,Energy,Energy +494854,Energy,Energy +483861,Energy,Energy +483248,Energy,Energy +520766,Environment,Environment +518645,Environment,Environment +422495,Environment,Environment +419493,Environment,Environment +418482,Environment,Environment +417215,Environment,Environment +411818,Environment,Environment +411675,Environment,Environment +411674,Environment,Environment +411673,Environment,Environment +411672,Environment,Environment +411671,Environment,Environment +408572,Environment,Environment +408210,Environment,Environment +404889,Environment,Environment +401668,Environment,Environment +399637,Environment,Environment +398124,Environment,Environment +398115,Environment,Environment +395335,Environment,Environment +395249,Environment,Environment +393235,Environment,Environment +516543,Environment,Environment +516541,Environment,Environment +516082,Environment,Environment +515315,Environment,Environment +506755,Environment,Environment +503434,Environment,Environment +494854,Environment,Environment +493792,Environment,Environment +493791,Environment,Environment +492232,Environment,Environment +491844,Environment,Environment +489245,Environment,Environment +488710,Environment,Environment +488709,Environment,Environment +486220,Environment,Environment +485654,Environment,Environment +485653,Environment,Environment +483861,Environment,Environment +483384,Environment,Environment +483248,Environment,Environment +483245,Environment,Environment +482896,Environment,Environment +482717,Environment,Environment +482714,Environment,Environment +482711,Environment,Environment +481224,Environment,Environment +481208,Environment,Environment +480833,Environment,Environment +480832,Environment,Environment +480534,Environment,Environment +480396,Environment,Environment +479068,Environment,Environment +478708,Environment,Environment +478621,Environment,Environment +478620,Environment,Environment +478619,Environment,Environment +478596,Environment,Environment +478449,Environment,Environment +477511,Environment,Environment +476933,Environment,Environment +476932,Environment,Environment +476278,Environment,Environment +476198,Environment,Environment +474693,Environment,Environment +474692,Environment,Environment +474312,Environment,Environment +474310,Environment,Environment +474206,Environment,Environment +472130,Environment,Environment +465350,Environment,Environment +463601,Environment,Environment +463208,Environment,Environment +462842,Environment,Environment +462829,Environment,Environment +462107,Environment,Environment +461100,Environment,Environment +461005,Environment,Environment +460890,Environment,Environment +460889,Environment,Environment +460870,Environment,Environment +460849,Environment,Environment +460839,Environment,Environment +460744,Environment,Environment +456219,Environment,Environment +449790,Environment,Environment +436585,Environment,Environment +436294,Environment,Environment +431635,Environment,Environment +431403,Environment,Environment +431402,Environment,Environment +427396,Environment,Environment +427198,Environment,Environment +427197,Environment,Environment +427015,Environment,Environment +427014,Environment,Environment +427013,Environment,Environment +425234,Environment,Environment +425233,Environment,Environment +424608,Environment,Environment +423663,Environment,Environment +423187,Environment,Environment +542896,Environment,Environment +541005,Environment,Environment +523843,Environment,Environment +523431,Environment,Environment +523428,Environment,Environment +395335,Fisheries,Fisheries +393235,Fisheries,Fisheries +465350,Fisheries,Fisheries +463601,Fisheries,Fisheries +463208,Fisheries,Fisheries +462829,Fisheries,Fisheries +462107,Fisheries,Fisheries +460744,Fisheries,Fisheries +456219,Fisheries,Fisheries +425234,Fisheries,Fisheries +425233,Fisheries,Fisheries +424608,Fisheries,Fisheries +422495,Fisheries,Fisheries +419493,Fisheries,Fisheries +417215,Fisheries,Fisheries +411818,Fisheries,Fisheries +411675,Fisheries,Fisheries +411674,Fisheries,Fisheries +411673,Fisheries,Fisheries +411672,Fisheries,Fisheries +411671,Fisheries,Fisheries +408572,Fisheries,Fisheries +401668,Fisheries,Fisheries +399637,Fisheries,Fisheries +411887,Taxation and Finance,Taxation and Finance +411063,Taxation and Finance,Taxation and Finance +407331,Taxation and Finance,Taxation and Finance +393064,Taxation and Finance,Taxation and Finance +435157,Taxation and Finance,Taxation and Finance +435153,Taxation and Finance,Taxation and Finance +425417,Taxation and Finance,Taxation and Finance +424826,Taxation and Finance,Taxation and Finance +422851,Taxation and Finance,Taxation and Finance +422772,Taxation and Finance,Taxation and Finance +420788,Taxation and Finance,Taxation and Finance +420787,Taxation and Finance,Taxation and Finance +420786,Taxation and Finance,Taxation and Finance +420783,Taxation and Finance,Taxation and Finance +420781,Taxation and Finance,Taxation and Finance +418616,Taxation and Finance,Taxation and Finance +414275,Taxation and Finance,Taxation and Finance +414273,Taxation and Finance,Taxation and Finance +414272,Taxation and Finance,Taxation and Finance +414271,Taxation and Finance,Taxation and Finance +411918,Taxation and Finance,Taxation and Finance +411892,Taxation and Finance,Taxation and Finance +399399,International Trade,International Trade +399399,Taxation and Finance,Taxation and Finance +429398,International Trade,International Trade +425074,International Trade,International Trade +416424,International Trade,International Trade +412333,International Trade,International Trade +406863,International Trade,International Trade +400888,International Trade,International Trade +400886,International Trade,International Trade +400884,International Trade,International Trade +400883,International Trade,International Trade +400881,International Trade,International Trade +400865,International Trade,International Trade +400859,International Trade,International Trade +398830,International Trade,International Trade +396892,International Trade,International Trade +396890,International Trade,International Trade +453076,International Trade,International Trade +450267,International Trade,International Trade +434468,International Trade,International Trade +429412,International Trade,International Trade +429411,International Trade,International Trade +429410,International Trade,International Trade +429405,International Trade,International Trade +396890,Transportation,Transportation +394082,Transportation,Transportation +453077,Transportation,Transportation +453075,Transportation,Transportation +429411,Transportation,Transportation +429404,Transportation,Transportation +429402,Transportation,Transportation +429398,Transportation,Transportation +425074,Transportation,Transportation +416424,Transportation,Transportation +412333,Transportation,Transportation +400888,Transportation,Transportation +400886,Transportation,Transportation +400884,Transportation,Transportation +400883,Transportation,Transportation +400881,Transportation,Transportation +400865,Transportation,Transportation +400859,Transportation,Transportation +398830,Transportation,Transportation +416424,Industry,Industry +412333,Industry,Industry +429411,Industry,Industry +429410,Industry,Industry +412333,Fisheries,Fisheries +453074,Fisheries,Fisheries +425074,Fisheries,Fisheries +400875,Agriculture,Agriculture +396898,Consumer Issues,Consumer Issues +416427,Consumer Issues,Consumer Issues +409717,Security,Security +409694,Industry,Industry +409685,Industry,Industry +416427,Industry,Industry +413026,Industry,Industry +409728,Industry,Industry +409718,Industry,Industry +409717,Industry,Industry +409716,Industry,Industry +396900,Health,Health +396898,Health,Health +416427,Health,Health +409728,Health,Health +409718,Health,Health +409717,Health,Health +409716,Health,Health +409713,Health,Health +409694,Health,Health +397152,Health,Health +397151,Health,Health +394251,Health,Health +405577,Health,Health +400407,Health,Health +400400,Health,Health +398172,Health,Health +397182,Health,Health +397181,Health,Health +397167,Health,Health +397166,Health,Health +397161,Health,Health +397160,Health,Health +397157,Health,Health +401977,Mining,Mining +399493,Mining,Mining +414387,Mining,Mining +414379,Mining,Mining +414378,International Trade,International Trade +414377,Environment,Environment +397635,Taxation and Finance,Taxation and Finance +397634,Taxation and Finance,Taxation and Finance +393367,Research and Development,Research and Development +393366,Research and Development,Research and Development +427449,Research and Development,Research and Development +422518,Research and Development,Research and Development +418423,Research and Development,Research and Development +408335,Research and Development,Research and Development +407102,Research and Development,Research and Development +394151,Transportation,Transports +394147,Transportation,Transports +394638,Transportation,Transports +394631,Transportation,Transports +394627,Transportation,Transports +394626,Transportation,Transports +394622,Transportation,Transports +394619,Transportation,Transports +394618,Transportation,Transports +394613,Transportation,Transports +394612,Transportation,Transports +394611,Transportation,Transports +394610,Transportation,Transports +394609,Transportation,Transports +394608,Transportation,Transports +394607,Transportation,Transports +394606,Transportation,Transports +394605,Transportation,Transports +394603,Transportation,Transports +394182,Transportation,Transports +394181,Transportation,Transports +394179,Transportation,Transports +394177,Transportation,Transports +394175,Transportation,Transports +448964,Research and Development,Research and Development +448963,Research and Development,Research and Development +408246,Research and Development,Research and Development +407976,Research and Development,Research and Development +407628,Research and Development,Research and Development +407050,Research and Development,Research and Development +406479,Research and Development,Research and Development +405451,Research and Development,Research and Development +399776,Research and Development,Research and Development +395588,Research and Development,Research and Development +393110,Research and Development,Research and Development +418250,Research and Development,Research and Development +418246,Research and Development,Research and Development +416388,Research and Development,Research and Development +416382,Research and Development,Research and Development +411944,Research and Development,Research and Development +411943,Research and Development,Research and Development +411942,Research and Development,Research and Development +482843,Research and Development,Research and Development +463232,Research and Development,Research and Development +462726,Research and Development,Research and Development +462724,Research and Development,Research and Development +460749,Research and Development,Research and Development +414452,Transportation,Transportation +408934,Transportation,Transportation +471839,Transportation,Transportation +441352,Transportation,Transportation +440105,Transportation,Transportation +440104,Transportation,Transportation +440103,Transportation,Transportation +440102,Transportation,Transportation +440101,Transportation,Transportation +424742,Transportation,Transportation +424741,Transportation,Transportation +424740,Transportation,Transportation +415185,Transportation,Transportation +440102,Infrastructure,Infrastructure +440101,Infrastructure,Infrastructure +424742,Infrastructure,Infrastructure +424741,Infrastructure,Infrastructure +424740,Infrastructure,Infrastructure +415185,Infrastructure,Infrastructure +414453,Infrastructure,Infrastructure +414452,Infrastructure,Infrastructure +408934,Infrastructure,Infrastructure +520421,Infrastructure,Infrastructure +494840,Infrastructure,Infrastructure +441352,Infrastructure,Infrastructure +440105,Infrastructure,Infrastructure +440104,Infrastructure,Infrastructure +414452,Economic Development,Economic Development +408934,Economic Development,Economic Development +440105,Economic Development,Economic Development +440104,Economic Development,Economic Development +440101,Economic Development,Economic Development +424742,Economic Development,Economic Development +424741,Economic Development,Economic Development +424740,Economic Development,Economic Development +415185,Economic Development,Economic Development +414453,Tourism,Tourism +414452,Tourism,Tourism +408934,Tourism,Tourism +520421,Tourism,Tourism +494840,Tourism,Tourism +441352,Tourism,Tourism +440105,Tourism,Tourism +440104,Tourism,Tourism +440103,Tourism,Tourism +440102,Tourism,Tourism +440101,Tourism,Tourism +424742,Tourism,Tourism +424741,Tourism,Tourism +424740,Tourism,Tourism +424741,Environment,Environment +424740,Environment,Environment +415185,Environment,Environment +414453,Environment,Environment +414452,Environment,Environment +408934,Environment,Environment +393128,Official Languages,Official Languages +393126,Official Languages,Official Languages +393138,Official Languages,Official Languages +393136,Official Languages,Official Languages +393134,Official Languages,Official Languages +393133,Official Languages,Official Languages +393132,Official Languages,Official Languages +393131,Official Languages,Official Languages +393130,Official Languages,Official Languages +393128,Education,Education +393126,Education,Education +393138,Education,Education +393136,Education,Education +393134,Education,Education +393133,Education,Education +393132,Education,Education +393131,Education,Education +393130,Education,Education +393128,Infrastructure,Infrastructure +393126,Infrastructure,Infrastructure +393138,Infrastructure,Infrastructure +393136,Infrastructure,Infrastructure +393134,Infrastructure,Infrastructure +393133,Infrastructure,Infrastructure +393132,Infrastructure,Infrastructure +393130,Infrastructure,Infrastructure +396938,Infrastructure,Infrastructure +523466,Agriculture,Agriculture +523465,Agriculture,Agriculture +429808,Agriculture,Agriculture +420069,Agriculture,Agriculture +419273,Agriculture,Agriculture +419271,Agriculture,Agriculture +496421,Agriculture,Agriculture +496420,Agriculture,Agriculture +496419,Agriculture,Agriculture +496418,Agriculture,Agriculture +464840,Agriculture,Agriculture +444862,Agriculture,Agriculture +438024,Agriculture,Agriculture +523466,Consumer Issues,Consumer Issues +523465,Consumer Issues,Consumer Issues +496421,Consumer Issues,Consumer Issues +496420,Consumer Issues,Consumer Issues +496419,Consumer Issues,Consumer Issues +496418,Consumer Issues,Consumer Issues +464840,Consumer Issues,Consumer Issues +444862,Consumer Issues,Consumer Issues +438024,Consumer Issues,Consumer Issues +438023,Consumer Issues,Consumer Issues +438022,Consumer Issues,Consumer Issues +429808,Consumer Issues,Consumer Issues +420069,Consumer Issues,Consumer Issues +419273,Consumer Issues,Consumer Issues +523465,Environment,Environment +496421,Environment,Environment +496420,Environment,Environment +496419,Environment,Environment +496418,Environment,Environment +464840,Environment,Environment +438023,Health,Health +438022,Health,Health +420069,Health,Health +419273,Health,Health +419271,Health,Health +523466,Health,Health +523465,Health,Health +496421,Health,Health +496420,Health,Health +496419,Health,Health +496418,Health,Health +464840,Health,Health +444862,Health,Health +419273,International Trade,International Trade +419271,International Trade,International Trade +523466,International Trade,International Trade +523465,International Trade,International Trade +496421,International Trade,International Trade +496420,International Trade,International Trade +496419,International Trade,International Trade +496418,International Trade,International Trade +464840,International Trade,International Trade +444862,International Trade,International Trade +438024,International Trade,International Trade +438023,International Trade,International Trade +438022,International Trade,International Trade +429808,International Trade,International Trade +395802,Environment,Environment +395801,Environment,Environment +467239,Environment,Environment +466041,Environment,Environment +395805,Environment,Environment +411306,Taxation and Finance,Taxation and Finance +411305,Taxation and Finance,Taxation and Finance +411308,Taxation and Finance,Taxation and Finance +411306,Industry,Industry +411305,Industry,Industry +411308,Industry,Industry +411308,International Trade,International Trade +411307,International Trade,International Trade +411306,International Trade,International Trade +411305,International Trade,International Trade +411304,International Trade,International Trade +404413,International Trade,International Trade +411304,Economic Development,Economic Development +404413,Economic Development,Economic Development +411308,Economic Development,Economic Development +411307,Economic Development,Economic Development +411306,Economic Development,Economic Development +411305,Intellectual Property,Intellectual Property +404413,Intellectual Property,Intellectual Property +411308,Intellectual Property,Intellectual Property +411307,Intellectual Property,Intellectual Property +399672,Immigration,Immigration +396926,Government Procurement,Government Procurement +394594,Government Procurement,Government Procurement +393185,Constitutional Issues,Constitutional Issues +393182,Constitutional Issues,Constitutional Issues +397877,Constitutional Issues,Constitutional Issues +397876,Constitutional Issues,Constitutional Issues +397875,Constitutional Issues,Constitutional Issues +394736,Constitutional Issues,Constitutional Issues +394735,Constitutional Issues,Constitutional Issues +393185,Intellectual Property,Intellectual Property +393182,Intellectual Property,Intellectual Property +434284,Intellectual Property,Intellectual Property +434283,Intellectual Property,Intellectual Property +395709,Intellectual Property,Intellectual Property +394737,Intellectual Property,Intellectual Property +394736,Intellectual Property,Intellectual Property +394735,Intellectual Property,Intellectual Property +394734,Intellectual Property,Intellectual Property +425609,Economic Development,Economic Development +453065,Economic Development,Economic Development +432067,Economic Development,Economic Development +422663,Consumer Issues,Consumer Issues +419415,Consumer Issues,Consumer Issues +413826,Consumer Issues,Consumer Issues +413825,Consumer Issues,Consumer Issues +410681,Consumer Issues,Consumer Issues +393230,Consumer Issues,Consumer Issues +393229,Consumer Issues,Consumer Issues +393228,Consumer Issues,Consumer Issues +393227,Consumer Issues,Consumer Issues +433053,Consumer Issues,Consumer Issues +433051,Consumer Issues,Consumer Issues +429724,Consumer Issues,Consumer Issues +429723,Consumer Issues,Consumer Issues +429722,Consumer Issues,Consumer Issues +422666,Consumer Issues,Consumer Issues +422665,Consumer Issues,Consumer Issues +393228,Financial Institutions,Financial Institutions +393227,Financial Institutions,Financial Institutions +433053,Financial Institutions,Financial Institutions +433051,Financial Institutions,Financial Institutions +429724,Financial Institutions,Financial Institutions +429723,Financial Institutions,Financial Institutions +429722,Financial Institutions,Financial Institutions +422666,Financial Institutions,Financial Institutions +422665,Financial Institutions,Financial Institutions +422664,Financial Institutions,Financial Institutions +422663,Financial Institutions,Financial Institutions +419415,Financial Institutions,Financial Institutions +413826,Financial Institutions,Financial Institutions +413825,Financial Institutions,Financial Institutions +410681,Financial Institutions,Financial Institutions +393228,Housing,Housing +393227,Housing,Housing +433053,Housing,Housing +433051,Housing,Housing +429724,Housing,Housing +429723,Housing,Housing +429722,Housing,Housing +422666,Housing,Housing +422665,Housing,Housing +422664,Housing,Housing +422663,Housing,Housing +413826,Housing,Housing +413825,Housing,Housing +410681,Housing,Housing +393230,Housing,Housing +393229,Industry,Industry +393228,Industry,Industry +393227,Industry,Industry +433053,Industry,Industry +433051,Industry,Industry +429724,Industry,Industry +429723,Industry,Industry +429722,Industry,Industry +422666,Industry,Industry +422665,Industry,Industry +422664,Industry,Industry +422663,Industry,Industry +413826,Industry,Industry +413825,Industry,Industry +413825,Taxation and Finance,Taxation and Finance +410681,Taxation and Finance,Taxation and Finance +393229,Taxation and Finance,Taxation and Finance +393228,Taxation and Finance,Taxation and Finance +393227,Taxation and Finance,Taxation and Finance +433053,Taxation and Finance,Taxation and Finance +433051,Taxation and Finance,Taxation and Finance +429724,Taxation and Finance,Taxation and Finance +429723,Taxation and Finance,Taxation and Finance +429722,Taxation and Finance,Taxation and Finance +422666,Taxation and Finance,Taxation and Finance +422665,Taxation and Finance,Taxation and Finance +422664,Taxation and Finance,Taxation and Finance +422663,Taxation and Finance,Taxation and Finance +419415,Taxation and Finance,Taxation and Finance +396943,Consumer Issues,Consumer Issues +396943,International Trade,International Trade +405951,Industry,Industry +393301,Industry,Industry +493837,Industry,Industry +465478,Industry,Industry +465189,Industry,Industry +463156,Industry,Industry +424641,Industry,Industry +424639,Industry,Industry +422653,Industry,Industry +429237,Defence,Defence +484343,Defence,Defence +444873,Defence,Defence +429982,Government Procurement,Government Procurement +484343,Government Procurement,Government Procurement +444873,Government Procurement,Government Procurement +444872,Infrastructure,Infrastructure +444872,Security,Security +429982,Security,Security +429237,Security,Security +484343,Security,Security +394652,Financial Institutions,Financial Institutions +492979,Financial Institutions,Financial Institutions +466240,Financial Institutions,Financial Institutions +445534,Financial Institutions,Financial Institutions +445533,Financial Institutions,Financial Institutions +439972,Financial Institutions,Financial Institutions +436726,Financial Institutions,Financial Institutions +436725,Financial Institutions,Financial Institutions +434504,Financial Institutions,Financial Institutions +418199,Financial Institutions,Financial Institutions +417303,Financial Institutions,Financial Institutions +415183,Financial Institutions,Financial Institutions +411301,Financial Institutions,Financial Institutions +411300,Financial Institutions,Financial Institutions +411299,Financial Institutions,Financial Institutions +411298,Financial Institutions,Financial Institutions +401119,Financial Institutions,Financial Institutions +399261,Financial Institutions,Financial Institutions +399259,Financial Institutions,Financial Institutions +399258,Financial Institutions,Financial Institutions +399257,Financial Institutions,Financial Institutions +399256,Financial Institutions,Financial Institutions +394663,Financial Institutions,Financial Institutions +394654,Financial Institutions,Financial Institutions +399257,Consumer Issues,Consumer Issues +399256,Consumer Issues,Consumer Issues +394663,Consumer Issues,Consumer Issues +394654,Consumer Issues,Consumer Issues +394653,Consumer Issues,Consumer Issues +394652,Consumer Issues,Consumer Issues +492979,Consumer Issues,Consumer Issues +466240,Consumer Issues,Consumer Issues +445534,Consumer Issues,Consumer Issues +445533,Consumer Issues,Consumer Issues +439972,Consumer Issues,Consumer Issues +436726,Consumer Issues,Consumer Issues +436725,Consumer Issues,Consumer Issues +434504,Consumer Issues,Consumer Issues +434147,Consumer Issues,Consumer Issues +418199,Consumer Issues,Consumer Issues +417303,Consumer Issues,Consumer Issues +415183,Consumer Issues,Consumer Issues +411301,Consumer Issues,Consumer Issues +411300,Consumer Issues,Consumer Issues +411299,Consumer Issues,Consumer Issues +411298,Consumer Issues,Consumer Issues +401119,Consumer Issues,Consumer Issues +399261,Consumer Issues,Consumer Issues +399259,Consumer Issues,Consumer Issues +401449,Education,Education +401451,Education,Education +401449,Employment and Training,Employment and Training +397273,Employment and Training,Employment and Training +460727,Economic Development,Economic Development +460726,Economic Development,Economic Development +439278,Economic Development,Economic Development +435891,Economic Development,Economic Development +435888,Economic Development,Economic Development +435885,Economic Development,Economic Development +435877,Economic Development,Economic Development +435846,Economic Development,Economic Development +435585,Economic Development,Economic Development +435379,Economic Development,Economic Development +406094,Economic Development,Economic Development +406061,Economic Development,Economic Development +399995,Economic Development,Economic Development +399994,Economic Development,Economic Development +399993,Economic Development,Economic Development +399992,Economic Development,Economic Development +399931,Economic Development,Economic Development +398824,Economic Development,Economic Development +395000,Economic Development,Economic Development +460730,Economic Development,Economic Development +460729,Economic Development,Economic Development +460727,Industry,Industry +460726,Industry,Industry +439278,Industry,Industry +435891,Industry,Industry +435888,Industry,Industry +435885,Industry,Industry +435877,Industry,Industry +435846,Industry,Industry +435585,Industry,Industry +435379,Industry,Industry +406094,Industry,Industry +406061,Industry,Industry +399995,Industry,Industry +399994,Industry,Industry +399993,Industry,Industry +399992,Industry,Industry +399931,Industry,Industry +398824,Industry,Industry +395000,Industry,Industry +460730,Industry,Industry +460729,Industry,Industry +398824,International Trade,International Trade +395000,International Trade,International Trade +460730,International Trade,International Trade +460729,International Trade,International Trade +460728,International Trade,International Trade +460727,International Trade,International Trade +460726,International Trade,International Trade +439278,International Trade,International Trade +435891,International Trade,International Trade +435888,International Trade,International Trade +435885,International Trade,International Trade +435877,International Trade,International Trade +435846,International Trade,International Trade +435585,International Trade,International Trade +435379,International Trade,International Trade +406094,International Trade,International Trade +406061,International Trade,International Trade +399995,International Trade,International Trade +399994,International Trade,International Trade +399993,International Trade,International Trade +399992,International Trade,International Trade +398824,Transportation,Transportation +395000,Transportation,Transportation +460727,Transportation,Transportation +439278,Transportation,Transportation +435891,Transportation,Transportation +435888,Transportation,Transportation +435885,Transportation,Transportation +435877,Transportation,Transportation +435846,Transportation,Transportation +435585,Transportation,Transportation +435379,Transportation,Transportation +406094,Transportation,Transportation +406061,Transportation,Transportation +399995,Transportation,Transportation +399994,Transportation,Transportation +399993,Transportation,Transportation +399992,Transportation,Transportation +411074,Labour,Labour +482904,Labour,Labour +393410,Labour,Labour +393390,Labour,Labour +393719,Climate,Climate +394187,Economic Development,Développement économique +394184,Economic Development,Développement économique +397906,Economic Development,Développement économique +395796,Economic Development,Développement économique +394740,Economic Development,Développement économique +394352,Economic Development,Développement économique +394349,Economic Development,Développement économique +437755,Economic Development,Economic Development +437739,Economic Development,Economic Development +409108,Economic Development,Economic Development +407463,Economic Development,Economic Development +406469,Economic Development,Economic Development +400145,Economic Development,Economic Development +398833,Economic Development,Economic Development +398829,Economic Development,Economic Development +395911,Economic Development,Economic Development +395907,Economic Development,Economic Development +395900,Economic Development,Economic Development +395887,Economic Development,Economic Development +393448,Economic Development,Economic Development +486927,Economic Development,Economic Development +481504,Economic Development,Economic Development +481502,Economic Development,Economic Development +481499,Economic Development,Economic Development +442022,Economic Development,Economic Development +442016,Economic Development,Economic Development +442013,Economic Development,Economic Development +442009,Economic Development,Economic Development +437768,Economic Development,Economic Development +501660,Climate,Climate +469261,Climate,Climate +458216,Climate,Climate +458215,Climate,Climate +441986,Climate,Climate +437767,Climate,Climate +407463,Climate,Climate +406469,Climate,Climate +398833,Climate,Climate +398829,Climate,Climate +393448,Climate,Climate +542559,Climate,Climate +542558,Climate,Climate +539562,Climate,Climate +537676,Climate,Climate +537674,Climate,Climate +537673,Climate,Climate +537672,Climate,Climate +537669,Climate,Climate +537667,Climate,Climate +532880,Climate,Climate +532879,Climate,Climate +532878,Climate,Climate +532877,Climate,Climate +532876,Climate,Climate +531504,Climate,Climate +531501,Climate,Climate +531500,Climate,Climate +531499,Climate,Climate +531498,Climate,Climate +531497,Climate,Climate +531495,Climate,Climate +531494,Climate,Climate +531492,Climate,Climate +531491,Climate,Climate +531487,Climate,Climate +531483,Climate,Climate +531481,Climate,Climate +531479,Climate,Climate +531476,Climate,Climate +531473,Climate,Climate +531471,Climate,Climate +527607,Climate,Climate +527605,Climate,Climate +527604,Climate,Climate +527603,Climate,Climate +527602,Climate,Climate +527601,Climate,Climate +527600,Climate,Climate +527599,Climate,Climate +527598,Climate,Climate +524047,Climate,Climate +524044,Climate,Climate +524042,Climate,Climate +524041,Climate,Climate +524040,Climate,Climate +524038,Climate,Climate +524036,Climate,Climate +524035,Climate,Climate +524034,Climate,Climate +524033,Climate,Climate +524032,Climate,Climate +520934,Climate,Climate +520930,Climate,Climate +520929,Climate,Climate +520926,Climate,Climate +520925,Climate,Climate +496919,Climate,Climate +433173,Climate,Climate +422967,Climate,Climate +419011,Climate,Climate +419010,Climate,Climate +419009,Climate,Climate +419008,Climate,Climate +419007,Climate,Climate +408219,Climate,Climate +408216,Climate,Climate +408212,Climate,Climate +408209,Climate,Climate +398233,Climate,Climate +395497,Economic Development,Economic Development +496919,Economic Development,Economic Development +433173,Economic Development,Economic Development +422967,Economic Development,Economic Development +419011,Economic Development,Economic Development +419010,Economic Development,Economic Development +419009,Economic Development,Economic Development +419008,Economic Development,Economic Development +419007,Economic Development,Economic Development +408219,Economic Development,Economic Development +408216,Economic Development,Economic Development +408212,Economic Development,Economic Development +408209,Economic Development,Economic Development +395497,Environment,Environment +496919,Environment,Environment +433173,Environment,Environment +422967,Environment,Environment +419011,Environment,Environment +419010,Environment,Environment +419009,Environment,Environment +419008,Environment,Environment +419007,Environment,Environment +408219,Environment,Environment +408216,Environment,Environment +408212,Environment,Environment +408209,Environment,Environment +476914,Economic Development,Economic Development +476913,Economic Development,Economic Development +404663,Economic Development,Economic Development +403084,Economic Development,Economic Development +403083,Economic Development,Economic Development +442305,Economic Development,Economic Development +442304,Economic Development,Economic Development +442303,Economic Development,Economic Development +442285,Economic Development,Economic Development +442281,Economic Development,Economic Development +442191,Economic Development,Economic Development +441954,Economic Development,Economic Development +441944,Economic Development,Economic Development +435440,Economic Development,Economic Development +435435,Economic Development,Economic Development +435433,Economic Development,Economic Development +435432,Economic Development,Economic Development +435421,Economic Development,Economic Development +435420,Economic Development,Economic Development +433362,Economic Development,Economic Development +433361,Economic Development,Economic Development +433360,Economic Development,Economic Development +433359,Economic Development,Economic Development +433356,Economic Development,Economic Development +433355,Economic Development,Economic Development +425740,Economic Development,Economic Development +425739,Economic Development,Economic Development +425736,Economic Development,Economic Development +425734,Economic Development,Economic Development +425732,Economic Development,Economic Development +418945,Economic Development,Economic Development +418865,Economic Development,Economic Development +418860,Economic Development,Economic Development +418858,Economic Development,Economic Development +418856,Economic Development,Economic Development +417392,Economic Development,Economic Development +417391,Economic Development,Economic Development +415008,Economic Development,Economic Development +415005,Economic Development,Economic Development +415003,Economic Development,Economic Development +415002,Economic Development,Economic Development +415001,Economic Development,Economic Development +414999,Economic Development,Economic Development +414998,Economic Development,Economic Development +411708,Economic Development,Economic Development +411707,Economic Development,Economic Development +411706,Economic Development,Economic Development +411705,Economic Development,Economic Development +411704,Economic Development,Economic Development +411703,Economic Development,Economic Development +411702,Economic Development,Economic Development +411699,Economic Development,Economic Development +411698,Economic Development,Economic Development +411697,Economic Development,Economic Development +411696,Economic Development,Economic Development +408968,Economic Development,Economic Development +408965,Economic Development,Economic Development +407361,Economic Development,Economic Development +406365,Economic Development,Economic Development +406364,Economic Development,Economic Development +537588,Economic Development,Economic Development +403084,Government Procurement,Government Procurement +403083,Government Procurement,Government Procurement +398253,Government Procurement,Government Procurement +397946,Government Procurement,Government Procurement +397945,Government Procurement,Government Procurement +397944,Government Procurement,Government Procurement +397943,Government Procurement,Government Procurement +397942,Government Procurement,Government Procurement +397941,Government Procurement,Government Procurement +397940,Government Procurement,Government Procurement +397939,Government Procurement,Government Procurement +395992,Government Procurement,Government Procurement +395991,Government Procurement,Government Procurement +395990,Government Procurement,Government Procurement +395989,Government Procurement,Government Procurement +495926,Government Procurement,Government Procurement +495925,Government Procurement,Government Procurement +490796,Government Procurement,Government Procurement +490793,Government Procurement,Government Procurement +490792,Government Procurement,Government Procurement +487057,Government Procurement,Government Procurement +487056,Government Procurement,Government Procurement +487055,Government Procurement,Government Procurement +484267,Government Procurement,Government Procurement +484265,Government Procurement,Government Procurement +484264,Government Procurement,Government Procurement +481620,Government Procurement,Government Procurement +481619,Government Procurement,Government Procurement +481618,Government Procurement,Government Procurement +479204,Government Procurement,Government Procurement +479203,Government Procurement,Government Procurement +479202,Government Procurement,Government Procurement +479201,Government Procurement,Government Procurement +460714,Government Procurement,Government Procurement +460226,Government Procurement,Government Procurement +459307,Government Procurement,Government Procurement +451867,Government Procurement,Government Procurement +451864,Government Procurement,Government Procurement +451859,Government Procurement,Government Procurement +451857,Government Procurement,Government Procurement +451854,Government Procurement,Government Procurement +451853,Government Procurement,Government Procurement +451851,Government Procurement,Government Procurement +451850,Government Procurement,Government Procurement +451849,Government Procurement,Government Procurement +451847,Government Procurement,Government Procurement +447624,Government Procurement,Government Procurement +447623,Government Procurement,Government Procurement +447622,Government Procurement,Government Procurement +447620,Government Procurement,Government Procurement +447618,Government Procurement,Government Procurement +445653,Government Procurement,Government Procurement +408965,Government Procurement,Government Procurement +411697,Regional Development,Regional Development +398454,Health,Health +397763,Health,Health +398701,Health,Health +398700,Health,Health +398699,Health,Health +496457,Consumer Issues,Consumer Issues +523487,Consumer Issues,Consumer Issues +433702,Consumer Issues,Consumer Issues +393743,Consumer Issues,Consumer Issues +496459,Consumer Issues,Consumer Issues +433702,Economic Development,Economic Development +393743,Economic Development,Economic Development +496459,Economic Development,Economic Development +496458,Economic Development,Economic Development +393743,Health,Health +523487,Health,Health +496459,Health,Health +496458,Health,Health +444872,Industry,Industry +429237,Industry,Industry +484343,Industry,Industry +444872,Justice and Law Enforcement,Justice and Law Enforcement +397810,Budget,Budget +397806,Budget,Budget +395233,Budget,Budget +393545,Budget,Budget +393541,Budget,Budget +397858,Budget,Budget +496287,Budget,Budget +496286,Budget,Budget +397856,Budget,Budget +395234,Budget,Budget +393546,Budget,Budget +393544,Budget,Budget +394639,Agriculture,Agriculture +406218,Employment and Training,Employment and Training +406217,Employment and Training,Employment and Training +404907,Employment and Training,Employment and Training +393629,Employment and Training,Employment and Training +395658,Economic Development,Economic Development +395658,Environment,Environment +395658,Infrastructure,Infrastructure +397430,Budget,Budget +514487,Budget,Budget +397442,Budget,Budget +397440,Budget,Budget +397439,Budget,Budget +397437,Budget,Budget +453719,Climate,Climate +446898,Climate,Climate +399150,Climate,Climate +397440,Climate,Climate +397437,Climate,Climate +397433,Climate,Climate +397430,Climate,Climate +514487,Climate,Climate +397437,Constitutional Issues,Constitutional Issues +397433,Constitutional Issues,Constitutional Issues +455691,Constitutional Issues,Constitutional Issues +455662,Constitutional Issues,Constitutional Issues +453719,Constitutional Issues,Constitutional Issues +397440,Constitutional Issues,Constitutional Issues +446898,Energy,Energy +399149,Energy,Energy +397440,Energy,Energy +394946,Energy,Energy +514487,Energy,Energy +464410,Energy,Energy +455662,Energy,Energy +474147,Environment,Environment +467973,Environment,Environment +394946,Environment,Environment +464410,Environment,Environment +455691,Environment,Environment +455662,Environment,Environment +453720,Environment,Environment +453719,Environment,Environment +448564,Environment,Environment +446898,Environment,Environment +442951,Environment,Environment +441022,Environment,Environment +441021,Environment,Environment +440202,Environment,Environment +440201,Environment,Environment +440200,Environment,Environment +438035,Environment,Environment +438033,Environment,Environment +438030,Environment,Environment +438029,Environment,Environment +438028,Environment,Environment +438026,Environment,Environment +438025,Environment,Environment +436064,Environment,Environment +436063,Environment,Environment +436062,Environment,Environment +436061,Environment,Environment +436058,Environment,Environment +433367,Environment,Environment +433366,Environment,Environment +424303,Environment,Environment +423230,Environment,Environment +421097,Environment,Environment +419515,Environment,Environment +419513,Environment,Environment +418714,Environment,Environment +414341,Environment,Environment +411989,Environment,Environment +411988,Environment,Environment +411987,Environment,Environment +411986,Environment,Environment +411985,Environment,Environment +411984,Environment,Environment +411983,Environment,Environment +411328,Environment,Environment +411327,Environment,Environment +409158,Environment,Environment +408571,Environment,Environment +408570,Environment,Environment +408569,Environment,Environment +408568,Environment,Environment +408567,Environment,Environment +408566,Environment,Environment +408565,Environment,Environment +408564,Environment,Environment +399151,Environment,Environment +399150,Environment,Environment +399149,Environment,Environment +397442,Environment,Environment +397440,Environment,Environment +397439,Environment,Environment +397437,Environment,Environment +397433,Environment,Environment +397430,Environment,Environment +514487,Environment,Environment +511840,Environment,Environment +503966,Environment,Environment +485545,Environment,Environment +483078,Environment,Environment +480895,Environment,Environment +480889,Environment,Environment +455691,Fisheries,Fisheries +455662,Fisheries,Fisheries +397440,Fisheries,Fisheries +397433,Fisheries,Fisheries +397433,Infrastructure,Infrastructure +514487,Infrastructure,Infrastructure +446898,Infrastructure,Infrastructure +455662,Justice and Law Enforcement,Justice and Law Enforcement +397437,Transportation,Transportation +455662,Transportation,Transportation +453720,Transportation,Transportation +394942,Transportation,Transportation +394940,Transportation,Transportation +394957,Transportation,Transportation +394956,Transportation,Transportation +394944,Transportation,Transportation +394942,Agriculture,Agriculture +394940,Agriculture,Agriculture +404335,Agriculture,Agriculture +404334,Agriculture,Agriculture +404333,Agriculture,Agriculture +394957,Agriculture,Agriculture +394956,Agriculture,Agriculture +394944,Agriculture,Agriculture +393786,Health,Health +393783,Health,Health +465987,Health,Health +445210,Health,Health +419651,Health,Health +419650,Health,Health +419649,Health,Health +419647,Health,Health +419646,Health,Health +408477,Health,Health +393791,Health,Health +465988,Health,Health +419658,Health,Health +407171,Health,Health +393807,Health,Health +393798,Health,Health +419657,Health,Health +419654,Health,Health +393801,Health,Health +445882,Health,Health +393803,Health,Health +393895,Health,Health +393894,Health,Health +469902,Health,Health +469901,Health,Health +393897,Health,Health +393894,Justice and Law Enforcement,Justice and Law Enforcement +393897,Justice and Law Enforcement,Justice and Law Enforcement +393896,Justice and Law Enforcement,Justice and Law Enforcement +448992,Agriculture,Agriculture +448991,Agriculture,Agriculture +395810,Agriculture,Agriculture +395809,Agriculture,Agriculture +395810,Consumer Issues,Consumer Issues +395809,Consumer Issues,Consumer Issues +448993,Consumer Issues,Consumer Issues +448992,Consumer Issues,Consumer Issues +395809,Environment,Environment +448992,Health,Health +448991,Health,Health +395810,Health,Health +395809,Health,Health +395810,International Trade,International Trade +395809,International Trade,International Trade +448993,International Trade,International Trade +448992,International Trade,International Trade +395798,Consumer Issues,Consumer Issues +395793,Consumer Issues,Consumer Issues +395798,Agriculture,Agriculture +395793,Agriculture,Agriculture +395798,International Trade,International Trade +395793,International Trade,International Trade +395798,Environment,Environment +395793,Environment,Environment +395798,Health,Health +395793,Health,Health +394364,International Relations,International Relations +400484,Health,Health +400482,Health,Health +399059,Health,Health +399050,Health,Health +399040,Health,Health +396315,Health,Health +394127,Health,Health +510907,Health,Health +510906,Health,Health +508731,Health,Health +470806,Health,Health +438906,Health,Health +438896,Health,Health +419923,Health,Health +419922,Health,Health +405754,Health,Health +405751,Health,Health +405750,Health,Health +403786,Health,Health +403780,Health,Health +400489,Health,Health +394133,Environment,Environment +526395,Environment,Environment +438902,Environment,Environment +438894,Environment,Environment +416102,Environment,Environment +410042,Environment,Environment +403775,Environment,Environment +399043,Climate,Climate +396318,Climate,Climate +438902,Climate,Climate +416102,Climate,Climate +410049,Climate,Climate +410042,Climate,Climate +403779,Climate,Climate +399052,Climate,Climate +399049,Climate,Climate +510906,Infrastructure,Infrastructure +473496,Infrastructure,Infrastructure +455966,Infrastructure,Infrastructure +455941,Infrastructure,Infrastructure +455922,Infrastructure,Infrastructure +438856,Infrastructure,Infrastructure +419921,Infrastructure,Infrastructure +416102,Infrastructure,Infrastructure +405746,Infrastructure,Infrastructure +403788,Infrastructure,Infrastructure +403779,Infrastructure,Infrastructure +542001,Infrastructure,Infrastructure +503550,Environment,Environment +503549,Environment,Environment +418500,Environment,Environment +418497,Environment,Environment +413866,Environment,Environment +413863,Environment,Environment +410798,Environment,Environment +404259,Environment,Environment +397015,Environment,Environment +394261,Environment,Environment +394260,Environment,Environment +394259,Environment,Environment +394255,Environment,Environment +486618,Environment,Environment +483336,Environment,Environment +483335,Environment,Environment +483334,Environment,Environment +482513,Environment,Environment +478196,Environment,Environment +471677,Environment,Environment +469222,Environment,Environment +469160,Environment,Environment +466369,Environment,Environment +465520,Environment,Environment +465518,Environment,Environment +463046,Environment,Environment +463045,Environment,Environment +463044,Environment,Environment +462145,Environment,Environment +461821,Environment,Environment +458168,Environment,Environment +458167,Environment,Environment +456608,Environment,Environment +456359,Environment,Environment +456357,Environment,Environment +448757,Environment,Environment +448756,Environment,Environment +446506,Environment,Environment +446504,Environment,Environment +444221,Environment,Environment +440160,Environment,Environment +440159,Environment,Environment +440158,Environment,Environment +440153,Environment,Environment +440151,Environment,Environment +440147,Environment,Environment +434156,Environment,Environment +434155,Environment,Environment +428315,Environment,Environment +428314,Environment,Environment +428312,Environment,Environment +425565,Environment,Environment +423422,Environment,Environment +418502,Environment,Environment +418501,Environment,Environment +466597,Economic Development,Economic Development +461752,Economic Development,Economic Development +410062,Economic Development,Economic Development +460877,Health,Health +449686,Health,Health +449684,Health,Health +449683,Health,Health +449682,Health,Health +447333,Health,Health +447331,Health,Health +447330,Health,Health +447328,Health,Health +447327,Health,Health +443881,Health,Health +443880,Health,Health +396585,Taxation and Finance,Impôts et finances +410747,Industry,Industrie +396610,Justice and Law Enforcement,Justice et application des lois +396610,Health,Santé +393754,Budget,Budget +394690,Small Business,Small Business +394690,Industry,Industry +394690,Taxation and Finance,Taxation and Finance +394690,Infrastructure,Infrastructure +394690,International Trade,International Trade +395069,Small Business,Small Business +395069,International Trade,International Trade +395069,Taxation and Finance,Taxation and Finance +395069,Industry,Industry +395069,Infrastructure,Infrastructure +394544,Budget,Budget +393178,Fisheries,Fisheries +459852,Economic Development,Economic Development +445724,Industry,Industry +459852,Energy,Energy +410537,Industry,Industry +410540,Small Business,Small Business +431635,Climate,Climate +482717,Energy,Energy +523427,Environment,Environment +398124,Fisheries,Fisheries +394228,Consumer Issues,Consumer Issues +394228,Economic Development,Economic Development +394228,International Trade,International Trade +394228,Justice and Law Enforcement,Justice and Law Enforcement +394228,Taxation and Finance,Taxation and Finance +411888,Taxation and Finance,Taxation and Finance +399400,International Trade,International Trade +399400,Taxation and Finance,Taxation and Finance +429404,International Trade,International Trade +396892,Transportation,Transportation +425074,Industry,Industry +416424,Fisheries,Fisheries +420326,Consumer Issues,Consumer Issues +434472,Agriculture,Agriculture +396900,Consumer Issues,Consumer Issues +416427,Security,Security +409713,Industry,Industry +409685,Health,Health +416431,Consumer Issues,Consumer Issues +416431,Taxation and Finance,Taxation and Finance +416431,Financial Institutions,Financial Institutions +397154,Health,Health +397584,Justice and Law Enforcement,Justice and Law Enforcement +414406,Agriculture,Agriculture +401978,Mining,Mining +414400,International Trade,International Trade +401975,Environment,Environment +417707,Taxation and Finance,Taxation and Finance +398695,International Trade,International Trade +398695,Taxation and Finance,Taxation and Finance +393368,Research and Development,Research and Development +394154,Transportation,Transports +393099,Economic Development,Economic Development +393099,Research and Development,Research and Development +393101,International Trade,International Trade +459794,Research and Development,Research and Development +414453,Transportation,Transportation +440103,Infrastructure,Infrastructure +414453,Economic Development,Economic Development +415185,Tourism,Tourism +424742,Environment,Environment +393129,Official Languages,Official Languages +393129,Education,Education +393129,Infrastructure,Infrastructure +396939,Infrastructure,Infrastructure +438023,Agriculture,Agriculture +419271,Consumer Issues,Consumer Issues +523466,Environment,Environment +438024,Health,Health +420069,International Trade,International Trade +395804,Environment,Environment +411307,Taxation and Finance,Taxation and Finance +411307,Industry,Industry +399396,International Trade,International Trade +411305,Economic Development,Economic Development +411306,Intellectual Property,Intellectual Property +406816,Employment and Training,Employment and Training +406816,Immigration,Immigration +406816,Transportation,Transportation +400950,Government Procurement,Government Procurement +394596,Government Procurement,Government Procurement +394734,Constitutional Issues,Constitutional Issues +394733,Intellectual Property,Intellectual Property +425611,Economic Development,Economic Development +446906,Health,Health +422664,Consumer Issues,Consumer Issues +393229,Financial Institutions,Financial Institutions +393229,Housing,Housing +410681,Industry,Industry +413826,Taxation and Finance,Taxation and Finance +393239,Constitutional Issues,Constitutional Issues +393247,Environment,Environment +401230,Consumer Issues,Consumer Issues +401230,International Trade,International Trade +410407,Defence,Defence +410407,Environment,Environment +410407,Government Procurement,Government Procurement +410407,Infrastructure,Infrastructure +410407,Security,Security +414088,Industry,Industry +444872,Defence,Defence +444872,Government Procurement,Government Procurement +444873,Infrastructure,Infrastructure +444873,Security,Security +394653,Financial Institutions,Financial Institutions +399258,Consumer Issues,Consumer Issues +401451,Economic Development,Economic Development +401450,Education,Education +401451,Employment and Training,Employment and Training +460728,Economic Development,Economic Development +460728,Industry,Industry +399931,International Trade,International Trade +399931,Transportation,Transportation +393387,Labour,Labour +418880,Climate,Climate +394188,Economic Development,Développement économique +393448,Government Procurement,Government Procurement +437760,Economic Development,Economic Development +509877,Climate,Climate +395497,Climate,Climate +398233,Economic Development,Economic Development +398233,Environment,Environment +398260,Economic Development,Economic Development +398260,Health,Health +398260,Regional Development,Regional Development +476915,Economic Development,Economic Development +403085,Government Procurement,Government Procurement +411702,Regional Development,Regional Development +398697,Health,Health +496458,Consumer Issues,Consumer Issues +496457,Economic Development,Economic Development +496457,Health,Health +405233,Agriculture,Agriculture +444873,Industry,Industry +444873,Justice and Law Enforcement,Justice and Law Enforcement +397849,Budget,Budget +393542,Budget,Budget +393597,Budget,Budget +393597,Taxation and Finance,Taxation and Finance +394640,Agriculture,Agriculture +408266,Employment and Training,Employment and Training +393648,Taxation and Finance,Taxation and Finance +393653,Budget,Budget +396405,Economic Development,Economic Development +396456,Intellectual Property,Intellectual Property +396456,International Trade,International Trade +396804,Taxation and Finance,Taxation and Finance +393674,Government Procurement,Government Procurement +393676,Government Procurement,Government Procurement +395739,Economic Development,Economic Development +395739,Environment,Environment +395739,Infrastructure,Infrastructure +393736,Economic Development,Economic Development +397433,Budget,Budget +455662,Climate,Climate +397439,Constitutional Issues,Constitutional Issues +453719,Energy,Energy +474149,Environment,Environment +397430,Fisheries,Fisheries +397437,Infrastructure,Infrastructure +455691,Justice and Law Enforcement,Justice and Law Enforcement +514487,Regional Development,Regional Development +397440,Transportation,Transportation +394943,Transportation,Transportation +394943,Agriculture,Agriculture +393789,Health,Health +393794,Health,Health +419652,Health,Health +419655,Health,Health +393806,Health,Health +393831,Health,Health +393832,Health,Health +393834,Health,Health +393835,Health,Health +393846,Health,Health +393847,Health,Health +393850,Health,Health +393851,Health,Health +393896,Health,Health +393895,Justice and Law Enforcement,Justice and Law Enforcement +393915,Health,Health +393920,Environment,Environment +393921,Fisheries,Fisheries +393956,International Development,International Development +448993,Agriculture,Agriculture +448991,Consumer Issues,Consumer Issues +395810,Environment,Environment +448993,Health,Health +448991,International Trade,International Trade +395799,Consumer Issues,Consumer Issues +395799,Agriculture,Agriculture +395799,International Trade,International Trade +395799,Environment,Environment +395799,Health,Health +394020,International Development,International Development +396220,Fisheries,Fisheries +395840,Climate,Climate +407466,International Relations,International Relations +394119,Employment and Training,Employment and Training +400486,Health,Health +399047,Environment,Environment +399046,Climate,Climate +410049,Energy,Energy +510907,Infrastructure,Infrastructure +394195,Internal Trade,Internal Trade +394211,Consumer Issues,Consumer Issues +394212,Consumer Issues,Consumer Issues +394213,Consumer Issues,Consumer Issues +394213,Research and Development,Research and Development +394223,Pensions,Pensions +503572,Environment,Environment +410058,Economic Development,Economic Development +490418,Health,Health +443881,Industry,Industry +498515,Regional Development,Regional Development +408162,Research and Development,Research and Development +407922,Employment and Training,Employment and Training +461183,Education,Education +461186,Education,Education +394201,Economic Development,Economic Development +394455,Economic Development,Economic Development +394457,Economic Development,Economic Development +435625,Consumer Issues,Consumer Issues +394459,Economic Development,Economic Development +465681,Consumer Issues,Consumer Issues +394461,Economic Development,Economic Development +446223,Consumer Issues,Consumer Issues +394462,Economic Development,Economic Development +394520,Industry,Industry +414542,Economic Development,Economic Development +410221,Employment and Training,Employment and Training +394625,Constitutional Issues,Constitutional Issues +407173,Research and Development,Research and Development +396715,Small Business,Small Business +449262,International Trade,International Trade +447132,Taxation and Finance,Taxation and Finance +438833,Economic Development,Economic Development +438833,Health,Health +438833,Environment,Environment +438833,Agriculture,Agriculture +438833,Climate,Climate +394701,Security,Security +407249,Security,Security +407244,Security,Security +394712,Environment,Environment +394712,Regional Development,Regional Development +397792,Immigration,Immigration +398121,Economic Development,Economic Development +398121,Energy,Energy +398121,Environment,Environment +401273,Government Procurement,Government Procurement +401273,Industry,Industry +398121,Infrastructure,Infrastructure +401272,Regional Development,Regional Development +410511,Research and Development,Research and Development +398120,Budget,Budget +398117,Climate,Climate +408214,Economic Development,Economic Development +398117,Energy,Energy +425229,Environment,Environment +410512,Government Procurement,Government Procurement +410512,Industry,Industry +410510,Infrastructure,Infrastructure +407273,International Trade,International Trade +401276,Regional Development,Regional Development +408220,Research and Development,Research and Development +410508,Small Business,Small Business +425229,Taxation and Finance,Taxation and Finance +399740,Financial Institutions,Financial Institutions +401465,Taxation and Finance,Taxation and Finance +454420,Energy,Energy +443879,Health,Health +443878,Health,Health +435431,Health,Health +419847,Health,Health +410061,Health,Health +408162,Health,Health +498520,Health,Health +492067,Health,Health +490433,Health,Health +490432,Health,Health +490425,Health,Health +490421,Health,Health +490419,Health,Health +443879,Industry,Industry +443878,Industry,Industry +410062,Industry,Industry +528103,Industry,Industry +498520,Industry,Industry +498518,Industry,Industry +498517,Industry,Industry +498515,Industry,Industry +498508,Industry,Industry +460877,Industry,Industry +459735,Industry,Industry +458984,Industry,Industry +449684,Industry,Industry +449683,Industry,Industry +449682,Industry,Industry +490432,Research and Development,Research and Development +405690,Employment and Training,Employment and Training +394408,Employment and Training,Employment and Training +447544,Employment and Training,Employment and Training +435395,Employment and Training,Employment and Training +431129,Employment and Training,Employment and Training +416326,Employment and Training,Employment and Training +458916,Education,Education +449860,Education,Education +413659,Education,Education +394438,Education,Education +498187,Education,Education +495175,Education,Education +487377,Education,Education +479818,Education,Education +466381,Education,Education +463815,Education,Education +462319,Education,Education +462317,Education,Education +462315,Education,Education +461189,Education,Education +461187,Education,Education +461184,Education,Education +458923,Education,Education +394443,Education,Education +477753,Education,Education +475173,Education,Education +463813,Education,Education +461190,Education,Education +461188,Education,Education +394459,Consumer Issues,Consumer Issues +524360,Consumer Issues,Consumer Issues +500197,Consumer Issues,Consumer Issues +496807,Consumer Issues,Consumer Issues +465679,Consumer Issues,Consumer Issues +453306,Consumer Issues,Consumer Issues +446012,Consumer Issues,Consumer Issues +446011,Consumer Issues,Consumer Issues +465680,Consumer Issues,Consumer Issues +453302,Consumer Issues,Consumer Issues +394461,Consumer Issues,Consumer Issues +524362,Consumer Issues,Consumer Issues +524361,Consumer Issues,Consumer Issues +524359,Consumer Issues,Consumer Issues +524358,Consumer Issues,Consumer Issues +496805,Consumer Issues,Consumer Issues +465682,Consumer Issues,Consumer Issues +446015,Consumer Issues,Consumer Issues +446014,Consumer Issues,Consumer Issues +394462,Consumer Issues,Consumer Issues +496806,Consumer Issues,Consumer Issues +496804,Consumer Issues,Consumer Issues +465683,Consumer Issues,Consumer Issues +461091,Consumer Issues,Consumer Issues +453305,Consumer Issues,Consumer Issues +453301,Consumer Issues,Consumer Issues +446224,Consumer Issues,Consumer Issues +489028,Industry,Industry +489027,Industry,Industry +465263,Industry,Industry +422882,Industry,Industry +414429,Industry,Industry +414171,Industry,Industry +401218,Industry,Industry +399745,Industry,Industry +397740,Industry,Industry +410221,Economic Development,Economic Development +444762,Economic Development,Economic Development +420769,Economic Development,Economic Development +524433,Constitutional Issues,Constitutional Issues +505977,Constitutional Issues,Constitutional Issues +496297,Constitutional Issues,Constitutional Issues +436256,Constitutional Issues,Constitutional Issues +397289,Research and Development,Research and Development +394647,Research and Development,Research and Development +431498,Research and Development,Research and Development +425225,Research and Development,Research and Development +422618,Research and Development,Research and Development +407645,Research and Development,Research and Development +407246,Security,Security +394703,Security,Security +407243,Security,Security +394706,Security,Security +407245,Security,Security +395966,Immigration,Immigration +395965,Immigration,Immigration +418776,Immigration,Immigration +418773,Immigration,Immigration +414389,Immigration,Immigration +400363,Immigration,Immigration +397813,Immigration,Immigration +397808,Immigration,Immigration +397807,Immigration,Immigration +397804,Immigration,Immigration +397799,Immigration,Immigration +397798,Immigration,Immigration +397797,Immigration,Immigration +397796,Immigration,Immigration +397795,Immigration,Immigration +397794,Immigration,Immigration +397793,Immigration,Immigration +398118,Economic Development,Economic Development +395333,Economic Development,Economic Development +425230,Economic Development,Economic Development +422770,Economic Development,Economic Development +422497,Economic Development,Economic Development +418481,Economic Development,Economic Development +410946,Economic Development,Economic Development +410519,Economic Development,Economic Development +410517,Economic Development,Economic Development +410515,Economic Development,Economic Development +410513,Economic Development,Economic Development +410511,Economic Development,Economic Development +410509,Economic Development,Economic Development +410507,Economic Development,Economic Development +408221,Economic Development,Economic Development +408215,Economic Development,Economic Development +407272,Economic Development,Economic Development +401284,Economic Development,Economic Development +401282,Economic Development,Economic Development +401279,Economic Development,Economic Development +401277,Economic Development,Economic Development +401275,Economic Development,Economic Development +401273,Economic Development,Economic Development +401272,Economic Development,Economic Development +401268,Economic Development,Economic Development +398118,Energy,Energy +395333,Energy,Energy +427397,Energy,Energy +425230,Energy,Energy +422770,Energy,Energy +422497,Energy,Energy +419494,Energy,Energy +418481,Energy,Energy +410946,Energy,Energy +410519,Energy,Energy +410517,Energy,Energy +410515,Energy,Energy +410513,Energy,Energy +410511,Energy,Energy +410509,Energy,Energy +410507,Energy,Energy +408221,Energy,Energy +408215,Energy,Energy +407272,Energy,Energy +401284,Energy,Energy +401282,Energy,Energy +401279,Energy,Energy +401277,Energy,Energy +401275,Energy,Energy +401273,Energy,Energy +401272,Energy,Energy +401268,Energy,Energy +398118,Environment,Environment +395333,Environment,Environment +427397,Environment,Environment +425230,Environment,Environment +422770,Environment,Environment +422497,Environment,Environment +419494,Environment,Environment +418481,Environment,Environment +410946,Environment,Environment +410519,Environment,Environment +410517,Environment,Environment +410515,Environment,Environment +410513,Environment,Environment +410511,Environment,Environment +410509,Environment,Environment +410507,Environment,Environment +408221,Environment,Environment +408215,Environment,Environment +407272,Environment,Environment +401284,Environment,Environment +401282,Environment,Environment +401279,Environment,Environment +401277,Environment,Environment +401275,Environment,Environment +401273,Environment,Environment +401272,Environment,Environment +401268,Environment,Environment +401272,Government Procurement,Government Procurement +401268,Government Procurement,Government Procurement +398121,Government Procurement,Government Procurement +398118,Government Procurement,Government Procurement +395333,Government Procurement,Government Procurement +425230,Government Procurement,Government Procurement +422770,Government Procurement,Government Procurement +422497,Government Procurement,Government Procurement +419494,Government Procurement,Government Procurement +418481,Government Procurement,Government Procurement +410946,Government Procurement,Government Procurement +410519,Government Procurement,Government Procurement +410517,Government Procurement,Government Procurement +410515,Government Procurement,Government Procurement +410513,Government Procurement,Government Procurement +410511,Government Procurement,Government Procurement +410509,Government Procurement,Government Procurement +410507,Government Procurement,Government Procurement +408221,Government Procurement,Government Procurement +408215,Government Procurement,Government Procurement +407272,Government Procurement,Government Procurement +401284,Government Procurement,Government Procurement +401282,Government Procurement,Government Procurement +401279,Government Procurement,Government Procurement +401277,Government Procurement,Government Procurement +401275,Government Procurement,Government Procurement +401272,Industry,Industry +401268,Industry,Industry +398121,Industry,Industry +398118,Industry,Industry +395333,Industry,Industry +427397,Industry,Industry +425230,Industry,Industry +422770,Industry,Industry +422497,Industry,Industry +419494,Industry,Industry +418481,Industry,Industry +410946,Industry,Industry +410519,Industry,Industry +410517,Industry,Industry +410515,Industry,Industry +410513,Industry,Industry +410511,Industry,Industry +410509,Industry,Industry +410507,Industry,Industry +408221,Industry,Industry +408215,Industry,Industry +407272,Industry,Industry +401284,Industry,Industry +401282,Industry,Industry +401279,Industry,Industry +401277,Industry,Industry +401275,Industry,Industry +398118,Infrastructure,Infrastructure +395333,Infrastructure,Infrastructure +425230,Infrastructure,Infrastructure +422770,Infrastructure,Infrastructure +422497,Infrastructure,Infrastructure +419494,Infrastructure,Infrastructure +418481,Infrastructure,Infrastructure +410946,Infrastructure,Infrastructure +410519,Infrastructure,Infrastructure +410517,Infrastructure,Infrastructure +410515,Infrastructure,Infrastructure +410513,Infrastructure,Infrastructure +410511,Infrastructure,Infrastructure +410509,Infrastructure,Infrastructure +410507,Infrastructure,Infrastructure +408221,Infrastructure,Infrastructure +408215,Infrastructure,Infrastructure +407272,Infrastructure,Infrastructure +401284,Infrastructure,Infrastructure +401282,Infrastructure,Infrastructure +401279,Infrastructure,Infrastructure +401277,Infrastructure,Infrastructure +401275,Infrastructure,Infrastructure +401273,Infrastructure,Infrastructure +401272,Infrastructure,Infrastructure +401268,Infrastructure,Infrastructure +401268,Regional Development,Regional Development +398118,Regional Development,Regional Development +425230,Regional Development,Regional Development +422770,Regional Development,Regional Development +422497,Regional Development,Regional Development +418481,Regional Development,Regional Development +410946,Regional Development,Regional Development +410519,Regional Development,Regional Development +410517,Regional Development,Regional Development +410515,Regional Development,Regional Development +410513,Regional Development,Regional Development +410511,Regional Development,Regional Development +410509,Regional Development,Regional Development +410507,Regional Development,Regional Development +408221,Regional Development,Regional Development +408215,Regional Development,Regional Development +407272,Regional Development,Regional Development +401284,Regional Development,Regional Development +401282,Regional Development,Regional Development +401279,Regional Development,Regional Development +401277,Regional Development,Regional Development +401275,Regional Development,Regional Development +401273,Regional Development,Regional Development +410509,Research and Development,Research and Development +410507,Research and Development,Research and Development +408221,Research and Development,Research and Development +408215,Research and Development,Research and Development +407272,Research and Development,Research and Development +401284,Research and Development,Research and Development +401282,Research and Development,Research and Development +401279,Research and Development,Research and Development +401277,Research and Development,Research and Development +401275,Research and Development,Research and Development +401273,Research and Development,Research and Development +401272,Research and Development,Research and Development +401268,Research and Development,Research and Development +398118,Research and Development,Research and Development +425230,Research and Development,Research and Development +422770,Research and Development,Research and Development +422497,Research and Development,Research and Development +418481,Research and Development,Research and Development +410946,Research and Development,Research and Development +410519,Research and Development,Research and Development +410517,Research and Development,Research and Development +410515,Research and Development,Research and Development +410513,Research and Development,Research and Development +398117,Budget,Budget +395250,Budget,Budget +432736,Budget,Budget +431987,Budget,Budget +425229,Budget,Budget +422496,Budget,Budget +418480,Budget,Budget +416964,Budget,Budget +410945,Budget,Budget +410518,Budget,Budget +410516,Budget,Budget +410514,Budget,Budget +410512,Budget,Budget +410510,Budget,Budget +410508,Budget,Budget +410506,Budget,Budget +408220,Budget,Budget +408214,Budget,Budget +407273,Budget,Budget +401283,Budget,Budget +401281,Budget,Budget +401280,Budget,Budget +401278,Budget,Budget +401276,Budget,Budget +401274,Budget,Budget +395332,Climate,Climate +395250,Climate,Climate +444136,Climate,Climate +432736,Climate,Climate +431987,Climate,Climate +425229,Climate,Climate +422769,Climate,Climate +422496,Climate,Climate +418480,Climate,Climate +416964,Climate,Climate +410945,Climate,Climate +410518,Climate,Climate +410516,Climate,Climate +410514,Climate,Climate +410512,Climate,Climate +410510,Climate,Climate +410508,Climate,Climate +410506,Climate,Climate +408220,Climate,Climate +408214,Climate,Climate +407273,Climate,Climate +401283,Climate,Climate +401281,Climate,Climate +401280,Climate,Climate +401278,Climate,Climate +401276,Climate,Climate +401274,Climate,Climate +398120,Climate,Climate +407273,Economic Development,Economic Development +401283,Economic Development,Economic Development +401281,Economic Development,Economic Development +401280,Economic Development,Economic Development +401278,Economic Development,Economic Development +401276,Economic Development,Economic Development +401274,Economic Development,Economic Development +398120,Economic Development,Economic Development +398117,Economic Development,Economic Development +395250,Economic Development,Economic Development +444136,Economic Development,Economic Development +432736,Economic Development,Economic Development +431987,Economic Development,Economic Development +425229,Economic Development,Economic Development +422769,Economic Development,Economic Development +422496,Economic Development,Economic Development +418480,Economic Development,Economic Development +416964,Economic Development,Economic Development +410945,Economic Development,Economic Development +410518,Economic Development,Economic Development +410516,Economic Development,Economic Development +410514,Economic Development,Economic Development +410512,Economic Development,Economic Development +410510,Economic Development,Economic Development +410508,Economic Development,Economic Development +410506,Economic Development,Economic Development +408220,Economic Development,Economic Development +395332,Energy,Energy +395250,Energy,Energy +444136,Energy,Energy +432736,Energy,Energy +431987,Energy,Energy +427398,Energy,Energy +425229,Energy,Energy +422769,Energy,Energy +422496,Energy,Energy +419495,Energy,Energy +418480,Energy,Energy +416964,Energy,Energy +410945,Energy,Energy +410518,Energy,Energy +410516,Energy,Energy +410514,Energy,Energy +410512,Energy,Energy +410510,Energy,Energy +410508,Energy,Energy +410506,Energy,Energy +408220,Energy,Energy +408214,Energy,Energy +407273,Energy,Energy +401283,Energy,Energy +401281,Energy,Energy +401280,Energy,Energy +401278,Energy,Energy +401276,Energy,Energy +401274,Energy,Energy +398120,Energy,Energy +422769,Environment,Environment +422496,Environment,Environment +419495,Environment,Environment +418480,Environment,Environment +416964,Environment,Environment +410945,Environment,Environment +410518,Environment,Environment +410516,Environment,Environment +410514,Environment,Environment +410512,Environment,Environment +410510,Environment,Environment +410508,Environment,Environment +410506,Environment,Environment +408220,Environment,Environment +408214,Environment,Environment +407273,Environment,Environment +401283,Environment,Environment +401281,Environment,Environment +401280,Environment,Environment +401278,Environment,Environment +401276,Environment,Environment +401274,Environment,Environment +398120,Environment,Environment +398117,Environment,Environment +395332,Environment,Environment +395250,Environment,Environment +444136,Environment,Environment +432736,Environment,Environment +431987,Environment,Environment +427398,Environment,Environment +410510,Government Procurement,Government Procurement +410508,Government Procurement,Government Procurement +410506,Government Procurement,Government Procurement +408220,Government Procurement,Government Procurement +408214,Government Procurement,Government Procurement +407273,Government Procurement,Government Procurement +401283,Government Procurement,Government Procurement +401281,Government Procurement,Government Procurement +401280,Government Procurement,Government Procurement +401278,Government Procurement,Government Procurement +401276,Government Procurement,Government Procurement +401274,Government Procurement,Government Procurement +398120,Government Procurement,Government Procurement +398117,Government Procurement,Government Procurement +395332,Government Procurement,Government Procurement +395250,Government Procurement,Government Procurement +444136,Government Procurement,Government Procurement +432736,Government Procurement,Government Procurement +425229,Government Procurement,Government Procurement +422769,Government Procurement,Government Procurement +422496,Government Procurement,Government Procurement +419495,Government Procurement,Government Procurement +418480,Government Procurement,Government Procurement +416964,Government Procurement,Government Procurement +410945,Government Procurement,Government Procurement +410518,Government Procurement,Government Procurement +410516,Government Procurement,Government Procurement +410514,Government Procurement,Government Procurement +410510,Industry,Industry +410508,Industry,Industry +410506,Industry,Industry +408220,Industry,Industry +408214,Industry,Industry +407273,Industry,Industry +401283,Industry,Industry +401281,Industry,Industry +401280,Industry,Industry +401278,Industry,Industry +401276,Industry,Industry +401274,Industry,Industry +398120,Industry,Industry +398117,Industry,Industry +395332,Industry,Industry +395250,Industry,Industry +444136,Industry,Industry +432736,Industry,Industry +427398,Industry,Industry +425229,Industry,Industry +422769,Industry,Industry +422496,Industry,Industry +419495,Industry,Industry +418480,Industry,Industry +416964,Industry,Industry +410945,Industry,Industry +410518,Industry,Industry +410516,Industry,Industry +410514,Industry,Industry +410508,Infrastructure,Infrastructure +410506,Infrastructure,Infrastructure +408220,Infrastructure,Infrastructure +408214,Infrastructure,Infrastructure +407273,Infrastructure,Infrastructure +401669,Infrastructure,Infrastructure +401283,Infrastructure,Infrastructure +401281,Infrastructure,Infrastructure +401280,Infrastructure,Infrastructure +401278,Infrastructure,Infrastructure +401276,Infrastructure,Infrastructure +401274,Infrastructure,Infrastructure +398120,Infrastructure,Infrastructure +398117,Infrastructure,Infrastructure +395332,Infrastructure,Infrastructure +395250,Infrastructure,Infrastructure +444136,Infrastructure,Infrastructure +432736,Infrastructure,Infrastructure +425229,Infrastructure,Infrastructure +422769,Infrastructure,Infrastructure +422496,Infrastructure,Infrastructure +419495,Infrastructure,Infrastructure +418480,Infrastructure,Infrastructure +416964,Infrastructure,Infrastructure +410945,Infrastructure,Infrastructure +410518,Infrastructure,Infrastructure +410516,Infrastructure,Infrastructure +410514,Infrastructure,Infrastructure +410512,Infrastructure,Infrastructure +401283,International Trade,International Trade +401281,International Trade,International Trade +401280,International Trade,International Trade +401278,International Trade,International Trade +401276,International Trade,International Trade +401274,International Trade,International Trade +398117,International Trade,International Trade +444136,International Trade,International Trade +432736,International Trade,International Trade +425229,International Trade,International Trade +422769,International Trade,International Trade +422496,International Trade,International Trade +418480,International Trade,International Trade +416964,International Trade,International Trade +410945,International Trade,International Trade +410518,International Trade,International Trade +410516,International Trade,International Trade +410514,International Trade,International Trade +410512,International Trade,International Trade +410510,International Trade,International Trade +410508,International Trade,International Trade +410506,International Trade,International Trade +408220,International Trade,International Trade +408214,International Trade,International Trade +401274,Regional Development,Regional Development +398117,Regional Development,Regional Development +444136,Regional Development,Regional Development +432736,Regional Development,Regional Development +425229,Regional Development,Regional Development +422769,Regional Development,Regional Development +422496,Regional Development,Regional Development +418480,Regional Development,Regional Development +416964,Regional Development,Regional Development +410945,Regional Development,Regional Development +410518,Regional Development,Regional Development +410516,Regional Development,Regional Development +410514,Regional Development,Regional Development +410512,Regional Development,Regional Development +410510,Regional Development,Regional Development +410508,Regional Development,Regional Development +410506,Regional Development,Regional Development +408220,Regional Development,Regional Development +408214,Regional Development,Regional Development +407273,Regional Development,Regional Development +401283,Regional Development,Regional Development +401281,Regional Development,Regional Development +401280,Regional Development,Regional Development +401278,Regional Development,Regional Development +408214,Research and Development,Research and Development +407273,Research and Development,Research and Development +401283,Research and Development,Research and Development +401281,Research and Development,Research and Development +401280,Research and Development,Research and Development +401278,Research and Development,Research and Development +401276,Research and Development,Research and Development +401274,Research and Development,Research and Development +398117,Research and Development,Research and Development +444136,Research and Development,Research and Development +432736,Research and Development,Research and Development +425229,Research and Development,Research and Development +422769,Research and Development,Research and Development +422496,Research and Development,Research and Development +418480,Research and Development,Research and Development +416964,Research and Development,Research and Development +410945,Research and Development,Research and Development +410518,Research and Development,Research and Development +410516,Research and Development,Research and Development +410514,Research and Development,Research and Development +410512,Research and Development,Research and Development +410510,Research and Development,Research and Development +410508,Research and Development,Research and Development +410506,Research and Development,Research and Development +410506,Small Business,Small Business +408220,Small Business,Small Business +408214,Small Business,Small Business +407273,Small Business,Small Business +401283,Small Business,Small Business +401281,Small Business,Small Business +401280,Small Business,Small Business +401278,Small Business,Small Business +401276,Small Business,Small Business +401274,Small Business,Small Business +398117,Small Business,Small Business +444136,Small Business,Small Business +432736,Small Business,Small Business +425229,Small Business,Small Business +422769,Small Business,Small Business +422496,Small Business,Small Business +418480,Small Business,Small Business +416964,Small Business,Small Business +410945,Small Business,Small Business +410518,Small Business,Small Business +410516,Small Business,Small Business +410514,Small Business,Small Business +410512,Small Business,Small Business +410510,Small Business,Small Business +422769,Taxation and Finance,Taxation and Finance +422496,Taxation and Finance,Taxation and Finance +418480,Taxation and Finance,Taxation and Finance +416964,Taxation and Finance,Taxation and Finance +410945,Taxation and Finance,Taxation and Finance +410518,Taxation and Finance,Taxation and Finance +410516,Taxation and Finance,Taxation and Finance +410514,Taxation and Finance,Taxation and Finance +410512,Taxation and Finance,Taxation and Finance +410510,Taxation and Finance,Taxation and Finance +410508,Taxation and Finance,Taxation and Finance +410506,Taxation and Finance,Taxation and Finance +408220,Taxation and Finance,Taxation and Finance +408214,Taxation and Finance,Taxation and Finance +407273,Taxation and Finance,Taxation and Finance +401283,Taxation and Finance,Taxation and Finance +401281,Taxation and Finance,Taxation and Finance +401280,Taxation and Finance,Taxation and Finance +401278,Taxation and Finance,Taxation and Finance +401276,Taxation and Finance,Taxation and Finance +401274,Taxation and Finance,Taxation and Finance +398117,Taxation and Finance,Taxation and Finance +395332,Taxation and Finance,Taxation and Finance +444136,Taxation and Finance,Taxation and Finance +432736,Taxation and Finance,Taxation and Finance +427398,Taxation and Finance,Taxation and Finance +399738,Financial Institutions,Financial Institutions +399557,Financial Institutions,Financial Institutions +399392,Financial Institutions,Financial Institutions +399391,Financial Institutions,Financial Institutions +399390,Financial Institutions,Financial Institutions +399389,Financial Institutions,Financial Institutions +399387,Financial Institutions,Financial Institutions +399386,Financial Institutions,Financial Institutions +413940,Financial Institutions,Financial Institutions +410642,Financial Institutions,Financial Institutions +410641,Financial Institutions,Financial Institutions +410640,Financial Institutions,Financial Institutions +410639,Financial Institutions,Financial Institutions +410638,Financial Institutions,Financial Institutions +410637,Financial Institutions,Financial Institutions +408824,Financial Institutions,Financial Institutions +406981,Financial Institutions,Financial Institutions +406980,Financial Institutions,Financial Institutions +406979,Financial Institutions,Financial Institutions +404992,Financial Institutions,Financial Institutions +404535,Financial Institutions,Financial Institutions +404533,Financial Institutions,Financial Institutions +404532,Financial Institutions,Financial Institutions +404531,Financial Institutions,Financial Institutions +404530,Financial Institutions,Financial Institutions +404489,Financial Institutions,Financial Institutions +404488,Financial Institutions,Financial Institutions +404487,Financial Institutions,Financial Institutions +404486,Financial Institutions,Financial Institutions +404485,Financial Institutions,Financial Institutions +404484,Financial Institutions,Financial Institutions +404483,Financial Institutions,Financial Institutions +404482,Financial Institutions,Financial Institutions +401823,Financial Institutions,Financial Institutions +401431,Financial Institutions,Financial Institutions +401430,Financial Institutions,Financial Institutions +401235,Financial Institutions,Financial Institutions +401234,Financial Institutions,Financial Institutions +401461,Taxation and Finance,Taxation and Finance +401459,Taxation and Finance,Taxation and Finance +483856,Energy,Energy +483855,Energy,Energy +454420,Labour,Labour +483855,Employment and Training,Employment and Training +454420,Employment and Training,Employment and Training +397342,Employment and Training,Employment and Training +474975,Environment,Environment +454420,Environment,Environment +483856,Environment,Environment +483855,Industry,Industry +454420,Industry,Industry +397342,Industry,Industry +520847,Budget,Budget +516896,Budget,Budget +402175,Budget,Budget +399791,Budget,Budget +399789,Budget,Budget +397787,Budget,Budget +397785,Budget,Budget +397784,Budget,Budget +397783,Budget,Budget +397781,Budget,Budget +397780,Budget,Budget +397777,Budget,Budget +444366,Budget,Budget +444287,Budget,Budget +444242,Budget,Budget +443328,Budget,Budget +443218,Budget,Budget +442952,Budget,Budget +441044,Budget,Budget +440316,Budget,Budget +439846,Budget,Budget +436633,Budget,Budget +425146,Budget,Budget +425137,Budget,Budget +418819,Budget,Budget +418818,Budget,Budget +418563,Budget,Budget +418562,Budget,Budget +418561,Budget,Budget +411514,Budget,Budget +411512,Budget,Budget +411511,Budget,Budget +500485,Budget,Budget +500299,Budget,Budget +494129,Budget,Budget +492480,Budget,Budget +492254,Budget,Budget +491913,Budget,Budget +488616,Budget,Budget +488475,Budget,Budget +488421,Budget,Budget +486572,Budget,Budget +485781,Budget,Budget +483558,Budget,Budget +483322,Budget,Budget +481786,Budget,Budget +481665,Budget,Budget +480966,Budget,Budget +480791,Budget,Budget +480790,Budget,Budget +478758,Budget,Budget +478757,Budget,Budget +478366,Budget,Budget +478364,Budget,Budget +466914,Budget,Budget +466595,Budget,Budget +466594,Budget,Budget +465604,Budget,Budget +465603,Budget,Budget +465468,Budget,Budget +465434,Budget,Budget +465433,Budget,Budget +465432,Budget,Budget +465431,Budget,Budget +465406,Budget,Budget +465404,Budget,Budget +465403,Budget,Budget +465402,Budget,Budget +465401,Budget,Budget +465400,Budget,Budget +465399,Budget,Budget +465398,Budget,Budget +462961,Budget,Budget +462960,Budget,Budget +462959,Budget,Budget +460919,Budget,Budget +445714,Budget,Budget +527076,Budget,Budget +524494,Budget,Budget +500299,Health,Health +494129,Health,Health +492480,Health,Health +492254,Health,Health +491913,Health,Health +488616,Health,Health +488475,Health,Health +488421,Health,Health +486572,Health,Health +485781,Health,Health +483558,Health,Health +483322,Health,Health +481786,Health,Health +481665,Health,Health +480966,Health,Health +480791,Health,Health +480790,Health,Health +478758,Health,Health +478757,Health,Health +478366,Health,Health +478364,Health,Health +474223,Health,Health +474022,Health,Health +466914,Health,Health +466595,Health,Health +466594,Health,Health +465604,Health,Health +465603,Health,Health +465468,Health,Health +465434,Health,Health +465433,Health,Health +465432,Health,Health +465431,Health,Health +465406,Health,Health +465404,Health,Health +465403,Health,Health +465402,Health,Health +465401,Health,Health +465400,Health,Health +465399,Health,Health +465398,Health,Health +462961,Health,Health +462960,Health,Health +462959,Health,Health +460919,Health,Health +455154,Health,Health +455116,Health,Health +454750,Health,Health +451860,Health,Health +445714,Health,Health +444366,Health,Health +444287,Health,Health +444242,Health,Health +443328,Health,Health +443218,Health,Health +442952,Health,Health +441044,Health,Health +440316,Health,Health +439846,Health,Health +439253,Health,Health +439237,Health,Health +436633,Health,Health +425146,Health,Health +425137,Health,Health +418819,Health,Health +418818,Health,Health +418563,Health,Health +418562,Health,Health +418561,Health,Health +411514,Health,Health +411512,Health,Health +411511,Health,Health +402175,Health,Health +399791,Health,Health +399789,Health,Health +397787,Health,Health +397785,Health,Health +397784,Health,Health +397783,Health,Health +397781,Health,Health +397780,Health,Health +397777,Health,Health +527076,Health,Health +524494,Health,Health +523340,Health,Health +520847,Health,Health +516896,Health,Health +398807,Government Procurement,Government Procurement +398803,Government Procurement,Government Procurement +445254,Government Procurement,Government Procurement +443557,Government Procurement,Government Procurement +442344,Government Procurement,Government Procurement +403227,Government Procurement,Government Procurement +413393,Economic Development,Economic Development +413389,Economic Development,Economic Development +413386,Economic Development,Economic Development +413379,Economic Development,Economic Development +395979,Economic Development,Economic Development +395977,Economic Development,Economic Development +431047,Economic Development,Economic Development +395979,Energy,Energy +395977,Energy,Energy +413386,Environment,Environment +413379,Environment,Environment +395979,Environment,Environment +395977,Environment,Environment +413393,Environment,Environment +395979,Mining,Mining +395977,Mining,Mining +431047,Mining,Mining +431046,Mining,Mining +413393,Mining,Mining +413389,Mining,Mining +413386,Mining,Mining +413379,Mining,Mining +413386,Regional Development,Regional Development +413379,Regional Development,Regional Development +395979,Regional Development,Regional Development +395977,Regional Development,Regional Development +431046,Regional Development,Regional Development +413393,Regional Development,Regional Development +465879,Health,Health +465866,Health,Health +486500,Health,Health +465866,Infrastructure,Infrastructure +452682,Infrastructure,Infrastructure +486500,Infrastructure,Infrastructure +478663,Infrastructure,Infrastructure +465866,Regional Development,Regional Development +452682,Regional Development,Regional Development +465866,Research and Development,Research and Development +452682,Research and Development,Research and Development +418835,Research and Development,Research and Development +395070,Financial Institutions,Financial Institutions +395070,International Trade,International Trade +400238,Housing,Housing +395429,Employment and Training,Employment and Training +395066,Employment and Training,Employment and Training +394803,Employment and Training,Employment and Training +395066,Energy,Energy +394803,Energy,Energy +395066,Environment,Environment +394803,Environment,Environment +395066,Research and Development,Research and Development +394803,Research and Development,Research and Development +398235,Research and Development,Research and Development +439658,Mining,Mining +439656,Mining,Mining +431989,Mining,Mining +431988,Mining,Mining +431329,Mining,Mining +431328,Mining,Mining +403323,Mining,Mining +403321,Mining,Mining +403319,Mining,Mining +403317,Mining,Mining +403316,Mining,Mining +403311,Mining,Mining +403301,Mining,Mining +403289,Mining,Mining +455603,Mining,Mining +448320,Mining,Mining +448283,Mining,Mining +448282,Mining,Mining +448281,Mining,Mining +448280,Mining,Mining +403311,Industry,Industry +431988,Industry,Industry +403321,Industry,Industry +403319,Industry,Industry +439658,Environment,Environment +431328,Environment,Environment +403319,Economic Development,Economic Development +403311,Economic Development,Economic Development +395394,Economic Development,Economic Development +395394,Small Business,Small Business +415514,Forestry,Forestry +415360,Forestry,Forestry +403507,Forestry,Forestry +403497,Forestry,Forestry +478270,Forestry,Forestry +444165,Forestry,Forestry +439314,Forestry,Forestry +425507,Forestry,Forestry +422940,Forestry,Forestry +415552,Forestry,Forestry +449509,Security,Security +410169,Economic Development,Economic Development +399144,Economic Development,Economic Development +395695,International Trade,International Trade +395694,International Trade,International Trade +429387,International Trade,International Trade +410168,International Trade,International Trade +401075,International Trade,International Trade +401074,International Trade,International Trade +493838,Industry,Industry +489029,Industry,Industry +446326,Industry,Industry +446325,Industry,Industry +440919,Industry,Industry +428650,Industry,Industry +424230,Industry,Industry +414707,Industry,Industry +414170,Industry,Industry +401155,Industry,Industry +397822,Industry,Industry +395644,Economic Development,Développement économique +395642,Economic Development,Développement économique +399087,Economic Development,Développement économique +452924,Agriculture,Agriculture +452922,Agriculture,Agriculture +449842,Agriculture,Agriculture +449807,Agriculture,Agriculture +447305,Agriculture,Agriculture +447304,Agriculture,Agriculture +447303,Agriculture,Agriculture +445064,Agriculture,Agriculture +442292,Agriculture,Agriculture +442288,Agriculture,Agriculture +442284,Agriculture,Agriculture +442283,Agriculture,Agriculture +442278,Agriculture,Agriculture +442277,Agriculture,Agriculture +442273,Agriculture,Agriculture +442269,Agriculture,Agriculture +438277,Agriculture,Agriculture +434898,Agriculture,Agriculture +434897,Agriculture,Agriculture +434896,Agriculture,Agriculture +432196,Agriculture,Agriculture +432194,Agriculture,Agriculture +430286,Agriculture,Agriculture +420598,Agriculture,Agriculture +415644,Agriculture,Agriculture +412586,Agriculture,Agriculture +412562,Agriculture,Agriculture +409278,Agriculture,Agriculture +409276,Agriculture,Agriculture +409274,Agriculture,Agriculture +406261,Agriculture,Agriculture +406260,Agriculture,Agriculture +406259,Agriculture,Agriculture +404463,Agriculture,Agriculture +403345,Agriculture,Agriculture +403343,Agriculture,Agriculture +399886,Agriculture,Agriculture +399884,Agriculture,Agriculture +398086,Agriculture,Agriculture +395242,Agriculture,Agriculture +395241,Agriculture,Agriculture +501260,Agriculture,Agriculture +498565,Agriculture,Agriculture +498560,Agriculture,Agriculture +495693,Agriculture,Agriculture +495692,Agriculture,Agriculture +493436,Agriculture,Agriculture +483596,Agriculture,Agriculture +482216,Agriculture,Agriculture +482211,Agriculture,Agriculture +480035,Agriculture,Agriculture +480033,Agriculture,Agriculture +480030,Agriculture,Agriculture +480024,Agriculture,Agriculture +475240,Agriculture,Agriculture +470451,Agriculture,Agriculture +466270,Agriculture,Agriculture +466269,Agriculture,Agriculture +466268,Agriculture,Agriculture +466256,Agriculture,Agriculture +466255,Agriculture,Agriculture +466251,Agriculture,Agriculture +466250,Agriculture,Agriculture +466249,Agriculture,Agriculture +466248,Agriculture,Agriculture +466246,Agriculture,Agriculture +466244,Agriculture,Agriculture +463116,Agriculture,Agriculture +463115,Agriculture,Agriculture +463114,Agriculture,Agriculture +463113,Agriculture,Agriculture +463112,Agriculture,Agriculture +463110,Agriculture,Agriculture +463109,Agriculture,Agriculture +463049,Agriculture,Agriculture +463048,Agriculture,Agriculture +463047,Agriculture,Agriculture +461313,Agriculture,Agriculture +459595,Agriculture,Agriculture +458288,Agriculture,Agriculture +458287,Agriculture,Agriculture +458283,Agriculture,Agriculture +457051,Agriculture,Agriculture +457047,Agriculture,Agriculture +456127,Agriculture,Agriculture +456125,Agriculture,Agriculture +528112,Climate,Climate +520144,Climate,Climate +406260,Climate,Climate +406259,Climate,Climate +404463,Climate,Climate +403345,Climate,Climate +403343,Climate,Climate +399886,Climate,Climate +399884,Climate,Climate +398086,Climate,Climate +395242,Climate,Climate +395241,Climate,Climate +456127,Climate,Climate +456125,Climate,Climate +452925,Climate,Climate +452924,Climate,Climate +452922,Climate,Climate +449842,Climate,Climate +449807,Climate,Climate +447305,Climate,Climate +447304,Climate,Climate +447303,Climate,Climate +445064,Climate,Climate +442292,Climate,Climate +442288,Climate,Climate +442284,Climate,Climate +442283,Climate,Climate +442278,Climate,Climate +442277,Climate,Climate +442273,Climate,Climate +442269,Climate,Climate +438277,Climate,Climate +434898,Climate,Climate +434897,Climate,Climate +434896,Climate,Climate +432196,Climate,Climate +432194,Climate,Climate +430286,Climate,Climate +429424,Climate,Climate +420598,Climate,Climate +415644,Climate,Climate +412586,Climate,Climate +412562,Climate,Climate +409278,Climate,Climate +409276,Climate,Climate +409274,Climate,Climate +406261,Climate,Climate +518414,Climate,Climate +518413,Climate,Climate +518407,Climate,Climate +515714,Climate,Climate +515713,Climate,Climate +514811,Climate,Climate +513983,Climate,Climate +513982,Climate,Climate +511871,Climate,Climate +511870,Climate,Climate +511869,Climate,Climate +511868,Climate,Climate +511867,Climate,Climate +511410,Climate,Climate +511408,Climate,Climate +511405,Climate,Climate +511404,Climate,Climate +511402,Climate,Climate +511399,Climate,Climate +511398,Climate,Climate +511395,Climate,Climate +511391,Climate,Climate +511386,Climate,Climate +507975,Climate,Climate +507970,Climate,Climate +507967,Climate,Climate +507964,Climate,Climate +507962,Climate,Climate +507961,Climate,Climate +507958,Climate,Climate +507954,Climate,Climate +501260,Climate,Climate +498565,Climate,Climate +498562,Climate,Climate +498561,Climate,Climate +498558,Climate,Climate +495693,Climate,Climate +495692,Climate,Climate +493438,Climate,Climate +493436,Climate,Climate +493434,Climate,Climate +491901,Climate,Climate +491898,Climate,Climate +487760,Climate,Climate +487759,Climate,Climate +487758,Climate,Climate +487757,Climate,Climate +483596,Climate,Climate +483593,Climate,Climate +483592,Climate,Climate +483591,Climate,Climate +483590,Climate,Climate +483589,Climate,Climate +483588,Climate,Climate +483587,Climate,Climate +483586,Climate,Climate +483583,Climate,Climate +483581,Climate,Climate +482423,Climate,Climate +482422,Climate,Climate +482420,Climate,Climate +482417,Climate,Climate +480035,Climate,Climate +480033,Climate,Climate +480030,Climate,Climate +480026,Climate,Climate +480024,Climate,Climate +480020,Climate,Climate +477533,Climate,Climate +477498,Climate,Climate +475241,Climate,Climate +475240,Climate,Climate +475239,Climate,Climate +475238,Climate,Climate +466270,Climate,Climate +466269,Climate,Climate +466268,Climate,Climate +466256,Climate,Climate +466255,Climate,Climate +466251,Climate,Climate +466250,Climate,Climate +466249,Climate,Climate +466248,Climate,Climate +466246,Climate,Climate +466244,Climate,Climate +463116,Climate,Climate +463115,Climate,Climate +463114,Climate,Climate +463113,Climate,Climate +463112,Climate,Climate +463110,Climate,Climate +463109,Climate,Climate +463049,Climate,Climate +463048,Climate,Climate +463047,Climate,Climate +461313,Climate,Climate +459595,Climate,Climate +458288,Climate,Climate +458287,Climate,Climate +458283,Climate,Climate +457051,Climate,Climate +457047,Climate,Climate +534527,Climate,Climate +534525,Climate,Climate +534522,Climate,Climate +534520,Climate,Climate +531865,Climate,Climate +531864,Climate,Climate +528122,Climate,Climate +528119,Climate,Climate +528117,Climate,Climate +511391,Economic Development,Economic Development +511386,Economic Development,Economic Development +438277,Economic Development,Economic Development +434898,Economic Development,Economic Development +434897,Economic Development,Economic Development +434896,Economic Development,Economic Development +432196,Economic Development,Economic Development +432194,Economic Development,Economic Development +430286,Economic Development,Economic Development +420598,Economic Development,Economic Development +415644,Economic Development,Economic Development +412586,Economic Development,Economic Development +412562,Economic Development,Economic Development +409278,Economic Development,Economic Development +409276,Economic Development,Economic Development +409274,Economic Development,Economic Development +406261,Economic Development,Economic Development +406260,Economic Development,Economic Development +406259,Economic Development,Economic Development +404463,Economic Development,Economic Development +403345,Economic Development,Economic Development +403343,Economic Development,Economic Development +399886,Economic Development,Economic Development +399884,Economic Development,Economic Development +398086,Economic Development,Economic Development +395242,Economic Development,Economic Development +395241,Economic Development,Economic Development +503822,Economic Development,Economic Development +501260,Economic Development,Economic Development +498565,Economic Development,Economic Development +498562,Economic Development,Economic Development +498561,Economic Development,Economic Development +498560,Economic Development,Economic Development +498558,Economic Development,Economic Development +495693,Economic Development,Economic Development +495692,Economic Development,Economic Development +495690,Economic Development,Economic Development +493438,Economic Development,Economic Development +493436,Economic Development,Economic Development +493434,Economic Development,Economic Development +491901,Economic Development,Economic Development +491898,Economic Development,Economic Development +487760,Economic Development,Economic Development +487759,Economic Development,Economic Development +487758,Economic Development,Economic Development +487757,Economic Development,Economic Development +483596,Economic Development,Economic Development +483593,Economic Development,Economic Development +483592,Economic Development,Economic Development +483591,Economic Development,Economic Development +483590,Economic Development,Economic Development +483589,Economic Development,Economic Development +483588,Economic Development,Economic Development +483587,Economic Development,Economic Development +483586,Economic Development,Economic Development +483583,Economic Development,Economic Development +482423,Economic Development,Economic Development +482422,Economic Development,Economic Development +482420,Economic Development,Economic Development +482417,Economic Development,Economic Development +482211,Economic Development,Economic Development +480035,Economic Development,Economic Development +480033,Economic Development,Economic Development +480030,Economic Development,Economic Development +480026,Economic Development,Economic Development +480024,Economic Development,Economic Development +480023,Economic Development,Economic Development +480020,Economic Development,Economic Development +477533,Economic Development,Economic Development +477498,Economic Development,Economic Development +475241,Economic Development,Economic Development +475240,Economic Development,Economic Development +475239,Economic Development,Economic Development +475238,Economic Development,Economic Development +472636,Economic Development,Economic Development +472635,Economic Development,Economic Development +472633,Economic Development,Economic Development +470452,Economic Development,Economic Development +470451,Economic Development,Economic Development +470449,Economic Development,Economic Development +470447,Economic Development,Economic Development +466270,Economic Development,Economic Development +466269,Economic Development,Economic Development +466268,Economic Development,Economic Development +466256,Economic Development,Economic Development +466255,Economic Development,Economic Development +466251,Economic Development,Economic Development +466250,Economic Development,Economic Development +466249,Economic Development,Economic Development +466248,Economic Development,Economic Development +466246,Economic Development,Economic Development +466244,Economic Development,Economic Development +463116,Economic Development,Economic Development +463115,Economic Development,Economic Development +463114,Economic Development,Economic Development +463113,Economic Development,Economic Development +463112,Economic Development,Economic Development +463110,Economic Development,Economic Development +463109,Economic Development,Economic Development +463049,Economic Development,Economic Development +463048,Economic Development,Economic Development +463047,Economic Development,Economic Development +461313,Economic Development,Economic Development +459595,Economic Development,Economic Development +458288,Economic Development,Economic Development +458287,Economic Development,Economic Development +458283,Economic Development,Economic Development +457051,Economic Development,Economic Development +457047,Economic Development,Economic Development +456127,Economic Development,Economic Development +456125,Economic Development,Economic Development +452925,Economic Development,Economic Development +452924,Economic Development,Economic Development +452922,Economic Development,Economic Development +449842,Economic Development,Economic Development +449807,Economic Development,Economic Development +447305,Economic Development,Economic Development +447304,Economic Development,Economic Development +447303,Economic Development,Economic Development +445064,Economic Development,Economic Development +442292,Economic Development,Economic Development +442288,Economic Development,Economic Development +442284,Economic Development,Economic Development +442283,Economic Development,Economic Development +442278,Economic Development,Economic Development +442277,Economic Development,Economic Development +442273,Economic Development,Economic Development +442269,Economic Development,Economic Development +534527,Economic Development,Economic Development +534525,Economic Development,Economic Development +534522,Economic Development,Economic Development +534520,Economic Development,Economic Development +531865,Economic Development,Economic Development +531864,Economic Development,Economic Development +528122,Economic Development,Economic Development +528119,Economic Development,Economic Development +528117,Economic Development,Economic Development +528113,Economic Development,Economic Development +528112,Economic Development,Economic Development +520144,Economic Development,Economic Development +518414,Economic Development,Economic Development +518413,Economic Development,Economic Development +518407,Economic Development,Economic Development +515714,Economic Development,Economic Development +515713,Economic Development,Economic Development +514811,Economic Development,Economic Development +513983,Economic Development,Economic Development +513982,Economic Development,Economic Development +511871,Economic Development,Economic Development +511870,Economic Development,Economic Development +511869,Economic Development,Economic Development +511868,Economic Development,Economic Development +511867,Economic Development,Economic Development +511410,Economic Development,Economic Development +511408,Economic Development,Economic Development +511405,Economic Development,Economic Development +511404,Economic Development,Economic Development +511402,Economic Development,Economic Development +511399,Economic Development,Economic Development +511398,Economic Development,Economic Development +461313,Energy,Energy +459595,Energy,Energy +398086,Energy,Energy +395242,Energy,Energy +395241,Energy,Energy +458288,Energy,Energy +458287,Energy,Energy +458283,Energy,Energy +457051,Energy,Energy +457047,Energy,Energy +456127,Energy,Energy +456125,Energy,Energy +452925,Energy,Energy +452924,Energy,Energy +452922,Energy,Energy +449842,Energy,Energy +449807,Energy,Energy +447305,Energy,Energy +447304,Energy,Energy +447303,Energy,Energy +445064,Energy,Energy +442292,Energy,Energy +442288,Energy,Energy +442284,Energy,Energy +442283,Energy,Energy +442278,Energy,Energy +442277,Energy,Energy +442273,Energy,Energy +442269,Energy,Energy +438277,Energy,Energy +434898,Energy,Energy +434897,Energy,Energy +434896,Energy,Energy +432196,Energy,Energy +432194,Energy,Energy +430286,Energy,Energy +429424,Energy,Energy +420598,Energy,Energy +415644,Energy,Energy +412586,Energy,Energy +412562,Energy,Energy +409278,Energy,Energy +409276,Energy,Energy +409274,Energy,Energy +406261,Energy,Energy +406260,Energy,Energy +406259,Energy,Energy +404463,Energy,Energy +403345,Energy,Energy +403343,Energy,Energy +399886,Energy,Energy +399884,Energy,Energy +534527,Energy,Energy +534525,Energy,Energy +534522,Energy,Energy +534520,Energy,Energy +531865,Energy,Energy +531864,Energy,Energy +528122,Energy,Energy +528119,Energy,Energy +528117,Energy,Energy +528113,Energy,Energy +528112,Energy,Energy +520144,Energy,Energy +518414,Energy,Energy +518413,Energy,Energy +518407,Energy,Energy +515714,Energy,Energy +515713,Energy,Energy +514811,Energy,Energy +513983,Energy,Energy +513982,Energy,Energy +511871,Energy,Energy +511870,Energy,Energy +511869,Energy,Energy +511868,Energy,Energy +511867,Energy,Energy +511410,Energy,Energy +511408,Energy,Energy +511405,Energy,Energy +511404,Energy,Energy +511402,Energy,Energy +511399,Energy,Energy +511398,Energy,Energy +511395,Energy,Energy +511391,Energy,Energy +511386,Energy,Energy +507975,Energy,Energy +507970,Energy,Energy +507967,Energy,Energy +507964,Energy,Energy +507962,Energy,Energy +507961,Energy,Energy +507958,Energy,Energy +507954,Energy,Energy +501260,Energy,Energy +498565,Energy,Energy +498562,Energy,Energy +498561,Energy,Energy +498560,Energy,Energy +498558,Energy,Energy +495693,Energy,Energy +495692,Energy,Energy +495690,Energy,Energy +493438,Energy,Energy +493436,Energy,Energy +493434,Energy,Energy +491901,Energy,Energy +491898,Energy,Energy +487760,Energy,Energy +487759,Energy,Energy +487758,Energy,Energy +487757,Energy,Energy +483596,Energy,Energy +483593,Energy,Energy +483592,Energy,Energy +483591,Energy,Energy +483590,Energy,Energy +483589,Energy,Energy +483588,Energy,Energy +483587,Energy,Energy +483586,Energy,Energy +483583,Energy,Energy +482423,Energy,Energy +482422,Energy,Energy +482420,Energy,Energy +482417,Energy,Energy +482216,Energy,Energy +482211,Energy,Energy +480035,Energy,Energy +480033,Energy,Energy +480030,Energy,Energy +480026,Energy,Energy +480024,Energy,Energy +480023,Energy,Energy +480020,Energy,Energy +477533,Energy,Energy +477498,Energy,Energy +475241,Energy,Energy +475240,Energy,Energy +475239,Energy,Energy +475238,Energy,Energy +472636,Energy,Energy +472635,Energy,Energy +472634,Energy,Energy +472633,Energy,Energy +472631,Energy,Energy +472630,Energy,Energy +472629,Energy,Energy +470452,Energy,Energy +470451,Energy,Energy +470449,Energy,Energy +466270,Energy,Energy +466269,Energy,Energy +466268,Energy,Energy +466256,Energy,Energy +466255,Energy,Energy +466251,Energy,Energy +466250,Energy,Energy +466249,Energy,Energy +466248,Energy,Energy +466246,Energy,Energy +466244,Energy,Energy +463116,Energy,Energy +463115,Energy,Energy +463114,Energy,Energy +463113,Energy,Energy +463112,Energy,Energy +463110,Energy,Energy +463109,Energy,Energy +463049,Energy,Energy +463048,Energy,Energy +495692,Environment,Environment +495690,Environment,Environment +420598,Environment,Environment +415644,Environment,Environment +412586,Environment,Environment +412562,Environment,Environment +409278,Environment,Environment +409276,Environment,Environment +409274,Environment,Environment +406261,Environment,Environment +406260,Environment,Environment +406259,Environment,Environment +404463,Environment,Environment +403345,Environment,Environment +403343,Environment,Environment +399886,Environment,Environment +399884,Environment,Environment +398086,Environment,Environment +395242,Environment,Environment +395241,Environment,Environment +493438,Environment,Environment +493436,Environment,Environment +493434,Environment,Environment +491901,Environment,Environment +491898,Environment,Environment +487760,Environment,Environment +487759,Environment,Environment +487758,Environment,Environment +487757,Environment,Environment +483596,Environment,Environment +483593,Environment,Environment +483592,Environment,Environment +483591,Environment,Environment +483590,Environment,Environment +483589,Environment,Environment +483588,Environment,Environment +483587,Environment,Environment +483586,Environment,Environment +483583,Environment,Environment +482423,Environment,Environment +482422,Environment,Environment +482420,Environment,Environment +482417,Environment,Environment +482216,Environment,Environment +482211,Environment,Environment +480035,Environment,Environment +480033,Environment,Environment +480030,Environment,Environment +480026,Environment,Environment +480024,Environment,Environment +480020,Environment,Environment +477533,Environment,Environment +477498,Environment,Environment +475241,Environment,Environment +475240,Environment,Environment +475239,Environment,Environment +475238,Environment,Environment +472636,Environment,Environment +472635,Environment,Environment +472634,Environment,Environment +472633,Environment,Environment +472631,Environment,Environment +472630,Environment,Environment +472629,Environment,Environment +470452,Environment,Environment +470451,Environment,Environment +470449,Environment,Environment +470447,Environment,Environment +470445,Environment,Environment +470442,Environment,Environment +466270,Environment,Environment +466269,Environment,Environment +466268,Environment,Environment +466256,Environment,Environment +466255,Environment,Environment +466251,Environment,Environment +466250,Environment,Environment +466249,Environment,Environment +466248,Environment,Environment +466246,Environment,Environment +466244,Environment,Environment +463116,Environment,Environment +463115,Environment,Environment +463114,Environment,Environment +463113,Environment,Environment +463112,Environment,Environment +463110,Environment,Environment +463109,Environment,Environment +463049,Environment,Environment +463048,Environment,Environment +463047,Environment,Environment +461313,Environment,Environment +459595,Environment,Environment +458288,Environment,Environment +458287,Environment,Environment +458283,Environment,Environment +457051,Environment,Environment +457047,Environment,Environment +456127,Environment,Environment +456125,Environment,Environment +452925,Environment,Environment +452924,Environment,Environment +452922,Environment,Environment +449842,Environment,Environment +449807,Environment,Environment +447305,Environment,Environment +447304,Environment,Environment +447303,Environment,Environment +445064,Environment,Environment +442292,Environment,Environment +442288,Environment,Environment +442284,Environment,Environment +442283,Environment,Environment +442278,Environment,Environment +442277,Environment,Environment +442273,Environment,Environment +442269,Environment,Environment +438277,Environment,Environment +434898,Environment,Environment +434897,Environment,Environment +434896,Environment,Environment +432196,Environment,Environment +432194,Environment,Environment +430286,Environment,Environment +429424,Environment,Environment +534527,Environment,Environment +534525,Environment,Environment +534522,Environment,Environment +534520,Environment,Environment +531865,Environment,Environment +531864,Environment,Environment +528122,Environment,Environment +528119,Environment,Environment +528117,Environment,Environment +528113,Environment,Environment +528112,Environment,Environment +520144,Environment,Environment +518414,Environment,Environment +518413,Environment,Environment +518407,Environment,Environment +515714,Environment,Environment +515713,Environment,Environment +514811,Environment,Environment +513983,Environment,Environment +513982,Environment,Environment +511871,Environment,Environment +511870,Environment,Environment +511869,Environment,Environment +511868,Environment,Environment +511867,Environment,Environment +511410,Environment,Environment +511408,Environment,Environment +511405,Environment,Environment +511404,Environment,Environment +511402,Environment,Environment +511399,Environment,Environment +511398,Environment,Environment +511395,Environment,Environment +511391,Environment,Environment +511386,Environment,Environment +507975,Environment,Environment +507970,Environment,Environment +507967,Environment,Environment +507964,Environment,Environment +507962,Environment,Environment +507961,Environment,Environment +507958,Environment,Environment +507954,Environment,Environment +501260,Environment,Environment +498565,Environment,Environment +498562,Environment,Environment +498561,Environment,Environment +498560,Environment,Environment +498558,Environment,Environment +412586,Forestry,Forestry +412562,Forestry,Forestry +409278,Forestry,Forestry +409276,Forestry,Forestry +409274,Forestry,Forestry +406261,Forestry,Forestry +406260,Forestry,Forestry +406259,Forestry,Forestry +404463,Forestry,Forestry +403345,Forestry,Forestry +403343,Forestry,Forestry +399886,Forestry,Forestry +399884,Forestry,Forestry +398086,Forestry,Forestry +395242,Forestry,Forestry +395241,Forestry,Forestry +498565,Forestry,Forestry +495693,Forestry,Forestry +495692,Forestry,Forestry +480035,Forestry,Forestry +480033,Forestry,Forestry +480030,Forestry,Forestry +480024,Forestry,Forestry +466270,Forestry,Forestry +466269,Forestry,Forestry +466268,Forestry,Forestry +466256,Forestry,Forestry +466255,Forestry,Forestry +466251,Forestry,Forestry +466250,Forestry,Forestry +466249,Forestry,Forestry +466248,Forestry,Forestry +466246,Forestry,Forestry +466244,Forestry,Forestry +463116,Forestry,Forestry +463115,Forestry,Forestry +463114,Forestry,Forestry +463113,Forestry,Forestry +463112,Forestry,Forestry +463110,Forestry,Forestry +463109,Forestry,Forestry +463049,Forestry,Forestry +463048,Forestry,Forestry +463047,Forestry,Forestry +461313,Forestry,Forestry +459595,Forestry,Forestry +458288,Forestry,Forestry +458287,Forestry,Forestry +458283,Forestry,Forestry +457051,Forestry,Forestry +457047,Forestry,Forestry +456127,Forestry,Forestry +456125,Forestry,Forestry +452925,Forestry,Forestry +452924,Forestry,Forestry +452922,Forestry,Forestry +449842,Forestry,Forestry +449807,Forestry,Forestry +447305,Forestry,Forestry +447304,Forestry,Forestry +447303,Forestry,Forestry +445064,Forestry,Forestry +442292,Forestry,Forestry +442288,Forestry,Forestry +442284,Forestry,Forestry +442283,Forestry,Forestry +442278,Forestry,Forestry +442277,Forestry,Forestry +442273,Forestry,Forestry +442269,Forestry,Forestry +438277,Forestry,Forestry +434898,Forestry,Forestry +434897,Forestry,Forestry +434896,Forestry,Forestry +432196,Forestry,Forestry +432194,Forestry,Forestry +430286,Forestry,Forestry +420598,Forestry,Forestry +432196,Industry,Industry +432194,Industry,Industry +430286,Industry,Industry +420598,Industry,Industry +415644,Industry,Industry +412586,Industry,Industry +412562,Industry,Industry +409278,Industry,Industry +409276,Industry,Industry +409274,Industry,Industry +406261,Industry,Industry +406260,Industry,Industry +406259,Industry,Industry +404463,Industry,Industry +403345,Industry,Industry +403343,Industry,Industry +399886,Industry,Industry +399884,Industry,Industry +398086,Industry,Industry +395242,Industry,Industry +395241,Industry,Industry +503822,Industry,Industry +498565,Industry,Industry +498558,Industry,Industry +495692,Industry,Industry +480035,Industry,Industry +480033,Industry,Industry +480030,Industry,Industry +480026,Industry,Industry +470452,Industry,Industry +466270,Industry,Industry +466269,Industry,Industry +466268,Industry,Industry +466256,Industry,Industry +466255,Industry,Industry +466251,Industry,Industry +466250,Industry,Industry +466249,Industry,Industry +466248,Industry,Industry +466246,Industry,Industry +466244,Industry,Industry +463116,Industry,Industry +463115,Industry,Industry +463114,Industry,Industry +463113,Industry,Industry +463112,Industry,Industry +463110,Industry,Industry +463109,Industry,Industry +463049,Industry,Industry +463048,Industry,Industry +463047,Industry,Industry +461313,Industry,Industry +459595,Industry,Industry +458288,Industry,Industry +458287,Industry,Industry +458283,Industry,Industry +457051,Industry,Industry +457047,Industry,Industry +456127,Industry,Industry +456125,Industry,Industry +452925,Industry,Industry +452924,Industry,Industry +452922,Industry,Industry +449842,Industry,Industry +449807,Industry,Industry +447305,Industry,Industry +447304,Industry,Industry +447303,Industry,Industry +445064,Industry,Industry +442292,Industry,Industry +442288,Industry,Industry +442284,Industry,Industry +442283,Industry,Industry +442278,Industry,Industry +442277,Industry,Industry +442273,Industry,Industry +442269,Industry,Industry +438277,Industry,Industry +434898,Industry,Industry +434897,Industry,Industry +498565,Transportation,Transportation +495692,Transportation,Transportation +480035,Transportation,Transportation +480033,Transportation,Transportation +480030,Transportation,Transportation +480024,Transportation,Transportation +477533,Transportation,Transportation +477498,Transportation,Transportation +466270,Transportation,Transportation +466269,Transportation,Transportation +466268,Transportation,Transportation +466256,Transportation,Transportation +466255,Transportation,Transportation +466251,Transportation,Transportation +466250,Transportation,Transportation +466249,Transportation,Transportation +466248,Transportation,Transportation +466246,Transportation,Transportation +466244,Transportation,Transportation +463116,Transportation,Transportation +463115,Transportation,Transportation +463114,Transportation,Transportation +463113,Transportation,Transportation +463112,Transportation,Transportation +463110,Transportation,Transportation +463109,Transportation,Transportation +463049,Transportation,Transportation +463048,Transportation,Transportation +463047,Transportation,Transportation +461313,Transportation,Transportation +459595,Transportation,Transportation +458288,Transportation,Transportation +458287,Transportation,Transportation +458283,Transportation,Transportation +457051,Transportation,Transportation +457047,Transportation,Transportation +456127,Transportation,Transportation +456125,Transportation,Transportation +452925,Transportation,Transportation +452924,Transportation,Transportation +452922,Transportation,Transportation +449842,Transportation,Transportation +449807,Transportation,Transportation +447305,Transportation,Transportation +447304,Transportation,Transportation +447303,Transportation,Transportation +445064,Transportation,Transportation +442292,Transportation,Transportation +442288,Transportation,Transportation +442284,Transportation,Transportation +442283,Transportation,Transportation +442278,Transportation,Transportation +442277,Transportation,Transportation +442273,Transportation,Transportation +442269,Transportation,Transportation +438277,Transportation,Transportation +434898,Transportation,Transportation +434897,Transportation,Transportation +434896,Transportation,Transportation +432196,Transportation,Transportation +432194,Transportation,Transportation +430286,Transportation,Transportation +429424,Transportation,Transportation +420598,Transportation,Transportation +415644,Transportation,Transportation +412586,Transportation,Transportation +412562,Transportation,Transportation +409278,Transportation,Transportation +409276,Transportation,Transportation +409274,Transportation,Transportation +406261,Transportation,Transportation +406260,Transportation,Transportation +406259,Transportation,Transportation +404463,Transportation,Transportation +403345,Transportation,Transportation +403343,Transportation,Transportation +399886,Transportation,Transportation +399884,Transportation,Transportation +398086,Transportation,Transportation +395242,Transportation,Transportation +468526,Agriculture,Agriculture +468522,Agriculture,Agriculture +462904,Agriculture,Agriculture +462562,Agriculture,Agriculture +460723,Agriculture,Agriculture +458890,Agriculture,Agriculture +458889,Agriculture,Agriculture +458888,Agriculture,Agriculture +458887,Agriculture,Agriculture +450302,Agriculture,Agriculture +450300,Agriculture,Agriculture +450276,Agriculture,Agriculture +450273,Agriculture,Agriculture +450271,Agriculture,Agriculture +447087,Agriculture,Agriculture +447085,Agriculture,Agriculture +447083,Agriculture,Agriculture +447082,Agriculture,Agriculture +441195,Agriculture,Agriculture +441165,Agriculture,Agriculture +441147,Agriculture,Agriculture +401390,Agriculture,Agriculture +401389,Agriculture,Agriculture +400996,Agriculture,Agriculture +400980,Agriculture,Agriculture +394920,Agriculture,Agriculture +540962,Agriculture,Agriculture +538626,Agriculture,Agriculture +528518,Agriculture,Agriculture +528515,Agriculture,Agriculture +528509,Agriculture,Agriculture +468542,Agriculture,Agriculture +468541,Agriculture,Agriculture +468540,Agriculture,Agriculture +468539,Agriculture,Agriculture +468538,Agriculture,Agriculture +468537,Agriculture,Agriculture +468536,Agriculture,Agriculture +468535,Agriculture,Agriculture +468534,Agriculture,Agriculture +468533,Agriculture,Agriculture +468532,Agriculture,Agriculture +468531,Agriculture,Agriculture +468530,Agriculture,Agriculture +468529,Agriculture,Agriculture +396392,International Trade,International Trade +417026,Education,Education +417025,Education,Education +417029,Education,Education +417028,Education,Education +417026,Employment and Training,Employment and Training +417025,Employment and Training,Employment and Training +417029,Employment and Training,Employment and Training +417028,Employment and Training,Employment and Training +417026,Labour,Labour +417025,Labour,Labour +417029,Labour,Labour +417028,Labour,Labour +395797,Economic Development,Développement économique +395131,Economic Development,Développement économique +397226,Economic Development,Développement économique +395797,Tourism,Tourisme +395131,Tourism,Tourisme +397226,Tourism,Tourisme +398235,Municipalities,Municipalities +395429,Municipalities,Municipalities +395066,Financial Institutions,Financial Institutions +437061,Health,Health +436888,Internal Trade,Internal Trade +418807,Internal Trade,Internal Trade +492559,Internal Trade,Internal Trade +451003,Internal Trade,Internal Trade +451002,Internal Trade,Internal Trade +451001,Internal Trade,Internal Trade +451000,Internal Trade,Internal Trade +450999,Internal Trade,Internal Trade +450998,Internal Trade,Internal Trade +450997,Internal Trade,Internal Trade +450996,Internal Trade,Internal Trade +450995,Internal Trade,Internal Trade +450992,Internal Trade,Internal Trade +450991,Internal Trade,Internal Trade +450990,Internal Trade,Internal Trade +450989,Internal Trade,Internal Trade +450988,Internal Trade,Internal Trade +450987,Internal Trade,Internal Trade +436884,Regional Development,Regional Development +436888,International Trade,International Trade +530404,International Trade,International Trade +474237,International Trade,International Trade +466896,International Trade,International Trade +466893,International Trade,International Trade +466891,International Trade,International Trade +466889,International Trade,International Trade +466887,International Trade,International Trade +466886,International Trade,International Trade +454221,International Trade,International Trade +451003,International Trade,International Trade +451002,International Trade,International Trade +451001,International Trade,International Trade +451000,International Trade,International Trade +450999,International Trade,International Trade +450998,International Trade,International Trade +450997,International Trade,International Trade +450996,International Trade,International Trade +450995,International Trade,International Trade +450994,International Trade,International Trade +450992,International Trade,International Trade +450991,International Trade,International Trade +450990,International Trade,International Trade +450989,International Trade,International Trade +450988,International Trade,International Trade +466841,Agriculture,Agriculture +466839,Agriculture,Agriculture +404182,Agriculture,Agriculture +461055,Agriculture,Agriculture +461041,Agriculture,Agriculture +461039,Agriculture,Agriculture +459093,Agriculture,Agriculture +454223,Agriculture,Agriculture +454219,Agriculture,Agriculture +451003,Agriculture,Agriculture +451002,Agriculture,Agriculture +451001,Agriculture,Agriculture +451000,Agriculture,Agriculture +450999,Agriculture,Agriculture +450998,Agriculture,Agriculture +450997,Agriculture,Agriculture +450996,Agriculture,Agriculture +450995,Agriculture,Agriculture +450994,Agriculture,Agriculture +450992,Agriculture,Agriculture +450991,Agriculture,Agriculture +450990,Agriculture,Agriculture +450989,Agriculture,Agriculture +450988,Agriculture,Agriculture +450987,Agriculture,Agriculture +448812,Agriculture,Agriculture +448811,Agriculture,Agriculture +447022,Agriculture,Agriculture +436888,Agriculture,Agriculture +436887,Agriculture,Agriculture +436884,Agriculture,Agriculture +435218,Agriculture,Agriculture +435217,Agriculture,Agriculture +435216,Agriculture,Agriculture +433120,Agriculture,Agriculture +433119,Agriculture,Agriculture +433118,Agriculture,Agriculture +433117,Agriculture,Agriculture +433116,Agriculture,Agriculture +433115,Agriculture,Agriculture +433114,Agriculture,Agriculture +431920,Agriculture,Agriculture +431918,Agriculture,Agriculture +431916,Agriculture,Agriculture +431915,Agriculture,Agriculture +431913,Agriculture,Agriculture +431912,Agriculture,Agriculture +431911,Agriculture,Agriculture +431910,Agriculture,Agriculture +431908,Agriculture,Agriculture +430983,Agriculture,Agriculture +430981,Agriculture,Agriculture +430979,Agriculture,Agriculture +428330,Agriculture,Agriculture +425273,Agriculture,Agriculture +425272,Agriculture,Agriculture +420674,Agriculture,Agriculture +420673,Agriculture,Agriculture +420671,Agriculture,Agriculture +418807,Agriculture,Agriculture +542968,Agriculture,Agriculture +542967,Agriculture,Agriculture +533376,Agriculture,Agriculture +533375,Agriculture,Agriculture +533373,Agriculture,Agriculture +533371,Agriculture,Agriculture +533370,Agriculture,Agriculture +533369,Agriculture,Agriculture +533368,Agriculture,Agriculture +533365,Agriculture,Agriculture +530404,Agriculture,Agriculture +530403,Agriculture,Agriculture +530402,Agriculture,Agriculture +530401,Agriculture,Agriculture +530400,Agriculture,Agriculture +521154,Agriculture,Agriculture +521153,Agriculture,Agriculture +521152,Agriculture,Agriculture +521148,Agriculture,Agriculture +517795,Agriculture,Agriculture +517794,Agriculture,Agriculture +517793,Agriculture,Agriculture +516560,Agriculture,Agriculture +516559,Agriculture,Agriculture +516558,Agriculture,Agriculture +516556,Agriculture,Agriculture +507056,Agriculture,Agriculture +507049,Agriculture,Agriculture +507048,Agriculture,Agriculture +507030,Agriculture,Agriculture +507019,Agriculture,Agriculture +503712,Agriculture,Agriculture +503710,Agriculture,Agriculture +481688,Agriculture,Agriculture +474237,Agriculture,Agriculture +466896,Agriculture,Agriculture +466893,Agriculture,Agriculture +466891,Agriculture,Agriculture +466889,Agriculture,Agriculture +466887,Agriculture,Agriculture +466886,Agriculture,Agriculture +466845,Agriculture,Agriculture +503712,Industry,Industry +503709,Industry,Industry +485898,Industry,Industry +451003,Industry,Industry +451002,Industry,Industry +451001,Industry,Industry +451000,Industry,Industry +450999,Industry,Industry +450998,Industry,Industry +450997,Industry,Industry +450996,Industry,Industry +450995,Industry,Industry +450994,Industry,Industry +450992,Industry,Industry +450991,Industry,Industry +450990,Industry,Industry +450989,Industry,Industry +450988,Industry,Industry +450987,Industry,Industry +433120,Industry,Industry +433119,Industry,Industry +433118,Industry,Industry +433117,Industry,Industry +433116,Industry,Industry +433115,Industry,Industry +428337,Industry,Industry +428335,Industry,Industry +428332,Industry,Industry +428331,Industry,Industry +428330,Industry,Industry +428329,Industry,Industry +533376,Industry,Industry +533375,Industry,Industry +533373,Industry,Industry +533371,Industry,Industry +533370,Industry,Industry +533369,Industry,Industry +533368,Industry,Industry +533365,Industry,Industry +507056,Industry,Industry +507049,Industry,Industry +507048,Industry,Industry +507030,Industry,Industry +428338,Health,Health +420674,Health,Health +433120,Health,Health +433119,Health,Health +433118,Health,Health +433117,Health,Health +433116,Health,Health +433115,Health,Health +433114,Health,Health +431920,Health,Health +431918,Health,Health +431916,Health,Health +431915,Health,Health +431913,Health,Health +431912,Health,Health +431911,Health,Health +431910,Health,Health +431908,Health,Health +430983,Health,Health +430981,Health,Health +430979,Health,Health +428375,Health,Health +428374,Health,Health +428369,Health,Health +428366,Health,Health +428360,Health,Health +428357,Health,Health +428354,Health,Health +428349,Health,Health +428346,Health,Health +428343,Health,Health +428341,Health,Health +450988,Economic Development,Economic Development +436888,Economic Development,Economic Development +435218,Economic Development,Economic Development +435217,Economic Development,Economic Development +435216,Economic Development,Economic Development +395150,Employment and Training,Employment and Training +401798,Intellectual Property,Intellectual Property +401796,Intellectual Property,Intellectual Property +401800,Intellectual Property,Intellectual Property +397359,Employment and Training,Employment and Training +397358,Employment and Training,Employment and Training +448820,Employment and Training,Employment and Training +448818,Employment and Training,Employment and Training +448817,Employment and Training,Employment and Training +432971,Employment and Training,Employment and Training +488480,Immigration,Immigration +474105,Immigration,Immigration +465859,Immigration,Immigration +465857,Immigration,Immigration +465856,Immigration,Immigration +465855,Immigration,Immigration +465854,Immigration,Immigration +448820,Immigration,Immigration +448818,Immigration,Immigration +448817,Immigration,Immigration +432971,Immigration,Immigration +397360,Immigration,Immigration +397359,Immigration,Immigration +397358,Immigration,Immigration +526986,Immigration,Immigration +521263,Immigration,Immigration +432971,Official Languages,Official Languages +526986,Official Languages,Official Languages +397360,Official Languages,Official Languages +397359,Official Languages,Official Languages +397358,Official Languages,Official Languages +465859,Official Languages,Official Languages +465857,Official Languages,Official Languages +465856,Official Languages,Official Languages +465855,Official Languages,Official Languages +465854,Official Languages,Official Languages +448820,Official Languages,Official Languages +448818,Official Languages,Official Languages +395173,Infrastructure,Infrastructure +400245,Health,Health +398250,Health,Health +398240,Health,Health +417372,Health,Health +417221,Health,Health +410500,Health,Health +410499,Health,Health +398250,International Development,International Development +398240,International Development,International Development +417372,International Development,International Development +417221,International Development,International Development +414659,Religion,Religion +398255,Economic Development,Economic Development +398254,Economic Development,Economic Development +398374,Economic Development,Economic Development +398373,Economic Development,Economic Development +398372,Economic Development,Economic Development +398370,Economic Development,Economic Development +398368,Economic Development,Economic Development +398366,Economic Development,Economic Development +398254,Energy,Energy +398374,Energy,Energy +398373,Energy,Energy +398372,Energy,Energy +398370,Energy,Energy +398368,Energy,Energy +398366,Energy,Energy +398361,Energy,Energy +398366,Environment,Environment +398255,Environment,Environment +398374,Environment,Environment +398373,Environment,Environment +398372,Environment,Environment +398370,Environment,Environment +398255,International Trade,International Trade +398254,International Trade,International Trade +398374,International Trade,International Trade +398373,International Trade,International Trade +398372,International Trade,International Trade +398370,International Trade,International Trade +398368,International Trade,International Trade +398366,International Trade,International Trade +398255,Transportation,Transportation +398254,Transportation,Transportation +398374,Transportation,Transportation +398373,Transportation,Transportation +398372,Transportation,Transportation +398370,Transportation,Transportation +398368,Transportation,Transportation +398366,Transportation,Transportation +399214,Research and Development,Research and Development +399213,Research and Development,Research and Development +399218,Research and Development,Research and Development +399217,Research and Development,Research and Development +399216,Research and Development,Research and Development +445787,Industry,Industry +431202,Industry,Industry +455830,Industry,Industry +455824,Industry,Industry +449643,Industry,Industry +455824,International Relations,International Relations +449643,International Relations,International Relations +410323,Consumer Issues,Consumer Issues +404085,Consumer Issues,Consumer Issues +404084,Consumer Issues,Consumer Issues +404083,Consumer Issues,Consumer Issues +397223,Consumer Issues,Consumer Issues +404084,Health,Health +404083,Health,Health +410323,Health,Health +404084,Industry,Industry +404083,Industry,Industry +410323,Industry,Industry +397223,Taxation and Finance,Taxation and Finance +397222,Taxation and Finance,Taxation and Finance +395326,Energy,Energy +499320,Energy,Energy +404608,Energy,Energy +485982,Economic Development,Economic Development +485981,Economic Development,Economic Development +451359,Economic Development,Economic Development +451358,Economic Development,Economic Development +451357,Economic Development,Economic Development +451356,Economic Development,Economic Development +451355,Economic Development,Economic Development +451354,Economic Development,Economic Development +451348,Economic Development,Economic Development +427655,Economic Development,Economic Development +427653,Economic Development,Economic Development +411470,Economic Development,Economic Development +401787,Economic Development,Economic Development +401782,Economic Development,Economic Development +401779,Economic Development,Economic Development +401771,Economic Development,Economic Development +401769,Economic Development,Economic Development +401761,Economic Development,Economic Development +401746,Economic Development,Economic Development +422969,Infrastructure,Infrastructure +408708,Infrastructure,Infrastructure +399157,Infrastructure,Infrastructure +438806,Government Procurement,Government Procurement +456010,Government Procurement,Government Procurement +448871,Government Procurement,Government Procurement +397245,Transportation,Transportation +397244,Transportation,Transportation +395431,Transportation,Transportation +395430,Transportation,Transportation +405324,Transportation,Transportation +401654,Transportation,Transportation +401653,Transportation,Transportation +401652,Transportation,Transportation +401651,Transportation,Transportation +401650,Transportation,Transportation +401649,Transportation,Transportation +401648,Transportation,Transportation +401647,Transportation,Transportation +401646,Transportation,Transportation +401645,Transportation,Transportation +401644,Transportation,Transportation +399713,Transportation,Transportation +399709,Transportation,Transportation +399707,Transportation,Transportation +399706,Transportation,Transportation +399704,Transportation,Transportation +395504,Budget,Budget +395419,Budget,Budget +446854,Budget,Budget +398456,Environment,Environnement +398456,Infrastructure,Infrastructure +446886,Budget,Budget +420907,Budget,Budget +499359,Budget,Budget +395527,Budget,Budget +407201,Budget,Budget +395532,Budget,Budget +395533,Budget,Budget +499361,Budget,Budget +447264,Regional Development,Regional Development +402616,Economic Development,Economic Development +402615,Economic Development,Economic Development +402621,Economic Development,Economic Development +402616,Industry,Industry +402615,Industry,Industry +402621,Industry,Industry +402620,Intellectual Property,Intellectual Property +402616,International Trade,International Trade +402615,International Trade,International Trade +402621,International Trade,International Trade +402620,International Trade,International Trade +402619,International Trade,International Trade +402620,Regional Development,Regional Development +402617,Regional Development,Regional Development +439718,International Trade,International Trade +449115,Agriculture,Agriculture +439718,Agriculture,Agriculture +469208,Agriculture,Agriculture +469207,Agriculture,Agriculture +413728,Agriculture,Agriculture +395597,Budget,Budget +492250,Budget,Budget +446879,Budget,Budget +446819,Budget,Budget +446817,Budget,Budget +446814,Budget,Budget +421597,Budget,Budget +395608,Budget,Budget +421028,Budget,Budget +395609,Budget,Budget +395610,Budget,Budget +446786,Budget,Budget +446853,Budget,Budget +499380,Budget,Budget +420905,Budget,Budget +421022,Budget,Budget +395617,Budget,Budget +446842,Budget,Budget +395618,Budget,Budget +421030,Budget,Budget +395619,Budget,Budget +421554,Budget,Budget +398676,Economic Development,Economic Development +397272,Economic Development,Economic Development +404569,Environment,Environment +404009,Environment,Environment +404570,Energy,Energy +404569,Energy,Energy +407124,Energy,Energy +407123,Energy,Energy +406727,Energy,Energy +395676,International Trade,International Trade +395675,International Trade,International Trade +446827,Budget,Budget +492247,Budget,Budget +446856,Budget,Budget +420916,Budget,Budget +395719,Budget,Budget +446833,Budget,Budget +422057,Budget,Budget +395720,Budget,Budget +395725,Budget,Budget +446874,Budget,Budget +446823,Budget,Budget +420913,Budget,Budget +395730,Budget,Budget +446850,Budget,Budget +395733,Budget,Budget +446847,Budget,Budget +395736,Budget,Budget +400892,International Trade,International Trade +423572,Transportation,Transportation +423571,Transportation,Transportation +414160,Transportation,Transportation +412999,Transportation,Transportation +412997,Transportation,Transportation +412996,Transportation,Transportation +412995,Transportation,Transportation +410406,Transportation,Transportation +406429,Transportation,Transportation +405117,Transportation,Transportation +403078,Transportation,Transportation +403077,Transportation,Transportation +403076,Transportation,Transportation +403075,Transportation,Transportation +403074,Transportation,Transportation +403073,Transportation,Transportation +403072,Transportation,Transportation +403070,Transportation,Transportation +403069,Transportation,Transportation +403068,Transportation,Transportation +403067,Transportation,Transportation +403066,Transportation,Transportation +403065,Transportation,Transportation +400199,Transportation,Transportation +400198,Transportation,Transportation +400196,Transportation,Transportation +400195,Transportation,Transportation +400192,Transportation,Transportation +398448,Transportation,Transportation +398447,Transportation,Transportation +398446,Transportation,Transportation +398444,Transportation,Transportation +398443,Transportation,Transportation +398442,Transportation,Transportation +398441,Transportation,Transportation +398440,Transportation,Transportation +398438,Transportation,Transportation +395764,Transportation,Transportation +395763,Transportation,Transportation +395762,Transportation,Transportation +395761,Transportation,Transportation +395760,Transportation,Transportation +395759,Transportation,Transportation +395758,Transportation,Transportation +395756,Transportation,Transportation +443418,Transportation,Transportation +441167,Transportation,Transportation +397967,Economic Development,Economic Development +403128,Mining,Mining +397967,Mining,Mining +416857,Mining,Mining +403118,Health,Health +397969,Economic Development,Economic Development +397968,Economic Development,Economic Development +397969,International Trade,International Trade +397968,International Trade,International Trade +428236,International Trade,International Trade +428235,International Trade,International Trade +428234,International Trade,International Trade +416848,International Trade,International Trade +416843,International Trade,International Trade +416848,Taxation and Finance,Taxation and Finance +416843,Taxation and Finance,Taxation and Finance +403131,Taxation and Finance,Taxation and Finance +399822,Taxation and Finance,Taxation and Finance +397969,Taxation and Finance,Taxation and Finance +397968,Taxation and Finance,Taxation and Finance +428236,Taxation and Finance,Taxation and Finance +428235,Taxation and Finance,Taxation and Finance +398008,Environment,Environment +398007,Environment,Environment +404781,Environment,Environment +404780,Environment,Environment +403154,Environment,Environment +403149,Environment,Environment +403010,Environment,Environment +403008,Environment,Environment +402595,Environment,Environment +402541,Environment,Environment +402540,Environment,Environment +402539,Environment,Environment +402538,Environment,Environment +402537,Environment,Environment +402536,Environment,Environment +402535,Environment,Environment +402534,Environment,Environment +402533,Environment,Environment +402532,Environment,Environment +402531,Environment,Environment +402530,Environment,Environment +402529,Environment,Environment +402528,Environment,Environment +402527,Environment,Environment +402526,Environment,Environment +402525,Environment,Environment +402524,Environment,Environment +402523,Environment,Environment +402522,Environment,Environment +399846,Environment,Environment +399844,Environment,Environment +402527,Infrastructure,Infrastructure +402526,Infrastructure,Infrastructure +402525,Infrastructure,Infrastructure +402524,Infrastructure,Infrastructure +402523,Infrastructure,Infrastructure +402522,Infrastructure,Infrastructure +399846,Infrastructure,Infrastructure +399844,Infrastructure,Infrastructure +404781,Infrastructure,Infrastructure +404780,Infrastructure,Infrastructure +403154,Infrastructure,Infrastructure +403149,Infrastructure,Infrastructure +403010,Infrastructure,Infrastructure +403008,Infrastructure,Infrastructure +402595,Infrastructure,Infrastructure +402541,Infrastructure,Infrastructure +402540,Infrastructure,Infrastructure +402539,Infrastructure,Infrastructure +402538,Infrastructure,Infrastructure +402537,Infrastructure,Infrastructure +402536,Infrastructure,Infrastructure +402535,Infrastructure,Infrastructure +402534,Infrastructure,Infrastructure +402533,Infrastructure,Infrastructure +402532,Infrastructure,Infrastructure +402531,Infrastructure,Infrastructure +402530,Infrastructure,Infrastructure +402529,Infrastructure,Infrastructure +398008,Transportation,Transportation +398007,Transportation,Transportation +398003,Environment,Environment +398001,Environment,Environment +404777,Environment,Environment +404776,Environment,Environment +403142,Environment,Environment +403141,Environment,Environment +402997,Environment,Environment +402993,Environment,Environment +402593,Environment,Environment +402498,Environment,Environment +402497,Environment,Environment +402496,Environment,Environment +402495,Environment,Environment +402494,Environment,Environment +402493,Environment,Environment +402490,Environment,Environment +402489,Environment,Environment +402488,Environment,Environment +402487,Environment,Environment +397342,Labour,Labour +483856,Employment and Training,Employment and Training +483855,Environment,Environment +483856,Industry,Industry +394754,Immigration,Immigration +394754,Consumer Issues,Consumer Issues +523340,Budget,Budget +500485,Health,Health +403226,Government Procurement,Government Procurement +431046,Economic Development,Economic Development +406552,Energy,Energy +413389,Environment,Environment +406552,Mining,Mining +413389,Regional Development,Regional Development +394766,Economic Development,Economic Development +410287,Environment,Environment +478663,Health,Health +465879,Infrastructure,Infrastructure +465879,Regional Development,Regional Development +465879,Research and Development,Research and Development +395070,Economic Development,Economic Development +399371,Financial Institutions,Financial Institutions +399371,International Trade,International Trade +398686,Housing,Housing +394799,International Development,International Development +399125,Health,Health +394803,Agriculture,Agriculture +398235,Employment and Training,Employment and Training +395429,Energy,Energy +398235,Environment,Environment +394803,Taxation and Finance,Taxation and Finance +394803,Industry,Industry +394803,Mining,Mining +395429,Research and Development,Research and Development +394803,Labour,Labour +403323,International Trade,International Trade +439659,Mining,Mining +403316,Industry,Industry +439659,Environment,Environment +403323,Economic Development,Economic Development +395394,Budget,Budget +407831,Economic Development,Economic Development +407831,Small Business,Small Business +395394,Taxation and Finance,Taxation and Finance +401165,Economic Development,Economic Development +415525,Forestry,Forestry +451679,Security,Security +410170,Economic Development,Economic Development +401073,International Trade,International Trade +394896,Industry,Industry +399086,Economic Development,Développement économique +452925,Agriculture,Agriculture +528113,Climate,Climate +511395,Economic Development,Economic Development +463047,Energy,Energy +495693,Environment,Environment +415644,Forestry,Forestry +434896,Industry,Industry +395241,Transportation,Transportation +468527,Agriculture,Agriculture +400892,Regional Development,Développement régional +400892,Environment,Environnement +400892,Industry,Industrie +400892,Health,Santé +398159,Infrastructure,Infrastructure +406107,Agriculture,Agriculture +396392,International Relations,International Relations +406107,International Trade,International Trade +398784,Economic Development,Economic Development +398784,Employment and Training,Employment and Training +417029,Economic Development,Economic Development +417027,Education,Education +417027,Employment and Training,Employment and Training +417027,Labour,Labour +396484,Economic Development,Développement économique +396484,Tourism,Tourisme +395066,Municipalities,Municipalities +395429,Financial Institutions,Financial Institutions +397706,Immigration,Immigration +397706,Labour,Labour +407406,Agriculture,Agriculture +397706,Employment and Training,Employment and Training +395980,Budget,Budget +395980,Research and Development,Research and Development +437061,Budget,Budget +483851,Health,Health +447022,Internal Trade,Internal Trade +459093,Taxation and Finance,Taxation and Finance +436887,Regional Development,Regional Development +447022,International Trade,International Trade +466844,Agriculture,Agriculture +507019,Industry,Industry +428339,Health,Health +474237,International Relations,International Relations +450994,Economic Development,Economic Development +399558,Employment and Training,Employment and Training +399558,Government Procurement,Government Procurement +399558,Industry,Industry +399558,Labour,Labour +419276,Agriculture,Agriculture +419276,Consumer Issues,Consumer Issues +419276,Health,Health +419276,International Relations,International Relations +401799,Intellectual Property,Intellectual Property +397360,Employment and Training,Employment and Training +501770,Immigration,Immigration +448817,Official Languages,Official Languages +399403,Infrastructure,Infrastructure +397361,Official Languages,Official Languages +397361,Employment and Training,Employment and Training +397361,Immigration,Immigration +446379,Health,Health +398274,Health,Health +398274,International Development,International Development +398266,Health,Health +398266,International Development,International Development +420699,Religion,Religion +398361,Economic Development,Economic Development +398255,Energy,Energy +398368,Environment,Environment +398361,International Trade,International Trade +398361,Transportation,Transportation +396350,Infrastructure,Infrastructure +396350,Transportation,Transports +399821,Intellectual Property,Intellectual Property +399215,Research and Development,Research and Development +395436,International Trade,Commerce international +445790,Environment,Environment +445790,Industry,Industry +455830,International Relations,International Relations +397222,Consumer Issues,Consumer Issues +404085,Health,Health +404085,Industry,Industry +410323,Taxation and Finance,Taxation and Finance +410323,Justice and Law Enforcement,Justice and Law Enforcement +395322,Energy,Energy +395324,Energy,Energy +395325,Energy,Energy +395327,Energy,Energy +518868,Economic Development,Economic Development +395338,Economic Development,Economic Development +419753,Infrastructure,Infrastructure +419753,International Relations,International Relations +419753,Industry,Industry +397603,Infrastructure,Infrastructure +443739,Economic Development,Economic Development +443739,Government Procurement,Government Procurement +451566,Government Procurement,Government Procurement +405448,Industry,Industry +397246,Transportation,Transportation +395435,International Development,International Development +395452,Defence,Defence +420879,Budget,Budget +395518,Budget,Budget +420897,Budget,Budget +401810,Environment,Environnement +401810,Infrastructure,Infrastructure +398456,Tourism,Tourisme +395519,Budget,Budget +395520,Budget,Budget +395523,Budget,Budget +395524,Budget,Budget +395526,Budget,Budget +420877,Budget,Budget +407204,Budget,Budget +395531,Budget,Budget +421024,Budget,Budget +421023,Budget,Budget +395534,Budget,Budget +395555,Regional Development,Regional Development +402616,Budget,Budget +402620,Economic Development,Economic Development +402621,Immigration,Immigration +402620,Industry,Industry +402621,Intellectual Property,Intellectual Property +402618,International Trade,International Trade +402621,Regional Development,Regional Development +402616,Taxation and Finance,Taxation and Finance +399633,Economic Development,Economic Development +449115,Environment,Environment +469208,International Trade,International Trade +449115,Labour,Labour +469206,Agriculture,Agriculture +413737,International Trade,International Trade +413737,Agriculture,Agriculture +413728,Environment,Environment +395594,Budget,Budget +421069,Budget,Budget +395598,Budget,Budget +395603,Budget,Budget +421034,Budget,Budget +446837,Budget,Budget +421077,Budget,Budget +395611,Budget,Budget +395614,Budget,Budget +395616,Budget,Budget +421041,Budget,Budget +446848,Budget,Budget +421057,Budget,Budget +395620,Budget,Budget +396794,Industry,Industry +396794,International Trade,International Trade +410069,Economic Development,Economic Development +397272,Infrastructure,Infrastructure +397272,Budget,Budget +404570,Environment,Environment +406723,Energy,Energy +395671,Justice and Law Enforcement,Justice and Law Enforcement +395674,International Trade,International Trade +493326,International Trade,International Trade +395701,Budget,Budget +395708,Budget,Budget +395713,Budget,Budget +395715,Budget,Budget +421033,Budget,Budget +446855,Budget,Budget +396212,Budget,Budget +421063,Budget,Budget +396796,Budget,Budget +421910,Budget,Budget +395732,Budget,Budget +421545,Budget,Budget +395735,Budget,Budget +421456,Budget,Budget +395737,Budget,Budget +395748,International Trade,International Trade +395749,International Trade,International Trade +423573,Transportation,Transportation +403128,Agriculture,Agriculture +403128,Economic Development,Economic Development +403128,International Trade,International Trade +412447,Mining,Mining +403123,Health,Health +403131,Economic Development,Economic Development +403131,International Trade,International Trade +428234,Taxation and Finance,Taxation and Finance +398010,Environment,Environment +402528,Infrastructure,Infrastructure +398010,Transportation,Transportation +398004,Environment,Environment +404777,Infrastructure,Infrastructure +398004,Transportation,Transportation +403135,Environment,Environment +402454,Infrastructure,Infrastructure +397999,Transportation,Transportation +398021,Environment,Environment +402499,Infrastructure,Infrastructure +398021,Transportation,Transportation +398017,Environment,Environment +402542,Infrastructure,Infrastructure +398017,Transportation,Transportation +403351,Transportation,Transportation +398027,Environment,Environment +402568,Infrastructure,Infrastructure +398027,Transportation,Transportation +395785,Security,Security +395788,Security,Security +421264,Infrastructure,Infrastructure +397639,International Trade,International Trade +395812,Agriculture,Agriculture +431738,Fisheries,Fisheries +396192,Environment,Environment +498018,Health,Health +396200,Environment,Environment +395867,Environment,Environment +395905,Economic Development,Economic Development +396736,Industry,Industry +397055,Intellectual Property,Intellectual Property +397693,Research and Development,Research and Development +402486,Environment,Environment +402485,Environment,Environment +402484,Environment,Environment +402483,Environment,Environment +402482,Environment,Environment +402481,Environment,Environment +402480,Environment,Environment +402479,Environment,Environment +402478,Environment,Environment +402477,Environment,Environment +399843,Environment,Environment +399842,Environment,Environment +404776,Infrastructure,Infrastructure +403142,Infrastructure,Infrastructure +403141,Infrastructure,Infrastructure +402997,Infrastructure,Infrastructure +402993,Infrastructure,Infrastructure +402593,Infrastructure,Infrastructure +402498,Infrastructure,Infrastructure +402497,Infrastructure,Infrastructure +402496,Infrastructure,Infrastructure +402495,Infrastructure,Infrastructure +402494,Infrastructure,Infrastructure +402493,Infrastructure,Infrastructure +402490,Infrastructure,Infrastructure +402489,Infrastructure,Infrastructure +402488,Infrastructure,Infrastructure +402487,Infrastructure,Infrastructure +402486,Infrastructure,Infrastructure +402485,Infrastructure,Infrastructure +402484,Infrastructure,Infrastructure +402483,Infrastructure,Infrastructure +402482,Infrastructure,Infrastructure +402481,Infrastructure,Infrastructure +402480,Infrastructure,Infrastructure +402479,Infrastructure,Infrastructure +402478,Infrastructure,Infrastructure +402477,Infrastructure,Infrastructure +399843,Infrastructure,Infrastructure +399842,Infrastructure,Infrastructure +398003,Transportation,Transportation +398001,Transportation,Transportation +402992,Environment,Environment +402991,Environment,Environment +402592,Environment,Environment +402473,Environment,Environment +402472,Environment,Environment +402471,Environment,Environment +402470,Environment,Environment +402469,Environment,Environment +402468,Environment,Environment +402467,Environment,Environment +402466,Environment,Environment +402465,Environment,Environment +402464,Environment,Environment +402463,Environment,Environment +402462,Environment,Environment +402461,Environment,Environment +402460,Environment,Environment +402459,Environment,Environment +402458,Environment,Environment +402457,Environment,Environment +402456,Environment,Environment +402455,Environment,Environment +402454,Environment,Environment +399841,Environment,Environment +399839,Environment,Environment +397999,Environment,Environment +397997,Environment,Environment +397992,Environment,Environment +404775,Environment,Environment +404774,Environment,Environment +403138,Environment,Environment +399841,Infrastructure,Infrastructure +399839,Infrastructure,Infrastructure +404775,Infrastructure,Infrastructure +404774,Infrastructure,Infrastructure +403138,Infrastructure,Infrastructure +403135,Infrastructure,Infrastructure +402992,Infrastructure,Infrastructure +402991,Infrastructure,Infrastructure +402592,Infrastructure,Infrastructure +402473,Infrastructure,Infrastructure +402472,Infrastructure,Infrastructure +402471,Infrastructure,Infrastructure +402470,Infrastructure,Infrastructure +402469,Infrastructure,Infrastructure +402468,Infrastructure,Infrastructure +402467,Infrastructure,Infrastructure +402466,Infrastructure,Infrastructure +402465,Infrastructure,Infrastructure +402464,Infrastructure,Infrastructure +402463,Infrastructure,Infrastructure +402462,Infrastructure,Infrastructure +402461,Infrastructure,Infrastructure +402460,Infrastructure,Infrastructure +402459,Infrastructure,Infrastructure +402458,Infrastructure,Infrastructure +402457,Infrastructure,Infrastructure +402456,Infrastructure,Infrastructure +402455,Infrastructure,Infrastructure +397997,Transportation,Transportation +397992,Transportation,Transportation +398020,Environment,Environment +398018,Environment,Environment +404779,Environment,Environment +404778,Environment,Environment +403146,Environment,Environment +403144,Environment,Environment +403005,Environment,Environment +403000,Environment,Environment +402594,Environment,Environment +402518,Environment,Environment +402517,Environment,Environment +402516,Environment,Environment +402515,Environment,Environment +402514,Environment,Environment +402513,Environment,Environment +402512,Environment,Environment +402511,Environment,Environment +402510,Environment,Environment +402509,Environment,Environment +402508,Environment,Environment +402507,Environment,Environment +402506,Environment,Environment +402505,Environment,Environment +402504,Environment,Environment +402503,Environment,Environment +402502,Environment,Environment +402501,Environment,Environment +402500,Environment,Environment +402499,Environment,Environment +399853,Environment,Environment +399851,Environment,Environment +399853,Infrastructure,Infrastructure +399851,Infrastructure,Infrastructure +404779,Infrastructure,Infrastructure +404778,Infrastructure,Infrastructure +403146,Infrastructure,Infrastructure +403144,Infrastructure,Infrastructure +403005,Infrastructure,Infrastructure +403000,Infrastructure,Infrastructure +402594,Infrastructure,Infrastructure +402518,Infrastructure,Infrastructure +402517,Infrastructure,Infrastructure +402516,Infrastructure,Infrastructure +402515,Infrastructure,Infrastructure +402514,Infrastructure,Infrastructure +402513,Infrastructure,Infrastructure +402512,Infrastructure,Infrastructure +402511,Infrastructure,Infrastructure +402510,Infrastructure,Infrastructure +402509,Infrastructure,Infrastructure +402508,Infrastructure,Infrastructure +402507,Infrastructure,Infrastructure +402506,Infrastructure,Infrastructure +402505,Infrastructure,Infrastructure +402504,Infrastructure,Infrastructure +402503,Infrastructure,Infrastructure +402502,Infrastructure,Infrastructure +402501,Infrastructure,Infrastructure +402500,Infrastructure,Infrastructure +398020,Transportation,Transportation +398018,Transportation,Transportation +398012,Environment,Environment +398011,Environment,Environment +404783,Environment,Environment +404782,Environment,Environment +403167,Environment,Environment +403164,Environment,Environment +403013,Environment,Environment +403012,Environment,Environment +402596,Environment,Environment +402566,Environment,Environment +402565,Environment,Environment +402564,Environment,Environment +402563,Environment,Environment +402562,Environment,Environment +402561,Environment,Environment +402560,Environment,Environment +402559,Environment,Environment +402557,Environment,Environment +402555,Environment,Environment +402554,Environment,Environment +402552,Environment,Environment +402550,Environment,Environment +402549,Environment,Environment +402548,Environment,Environment +402547,Environment,Environment +402545,Environment,Environment +402544,Environment,Environment +402543,Environment,Environment +402542,Environment,Environment +399855,Environment,Environment +399854,Environment,Environment +399855,Infrastructure,Infrastructure +399854,Infrastructure,Infrastructure +404783,Infrastructure,Infrastructure +404782,Infrastructure,Infrastructure +403167,Infrastructure,Infrastructure +403164,Infrastructure,Infrastructure +403013,Infrastructure,Infrastructure +403012,Infrastructure,Infrastructure +402596,Infrastructure,Infrastructure +402566,Infrastructure,Infrastructure +402565,Infrastructure,Infrastructure +402564,Infrastructure,Infrastructure +402563,Infrastructure,Infrastructure +402562,Infrastructure,Infrastructure +402561,Infrastructure,Infrastructure +402560,Infrastructure,Infrastructure +402559,Infrastructure,Infrastructure +402557,Infrastructure,Infrastructure +402555,Infrastructure,Infrastructure +402554,Infrastructure,Infrastructure +402552,Infrastructure,Infrastructure +402550,Infrastructure,Infrastructure +402549,Infrastructure,Infrastructure +402548,Infrastructure,Infrastructure +402547,Infrastructure,Infrastructure +402545,Infrastructure,Infrastructure +402544,Infrastructure,Infrastructure +402543,Infrastructure,Infrastructure +398012,Transportation,Transportation +398011,Transportation,Transportation +403333,Transportation,Transportation +395775,Transportation,Transportation +403372,Transportation,Transportation +403359,Transportation,Transportation +398026,Environment,Environment +398025,Environment,Environment +404785,Environment,Environment +404784,Environment,Environment +403162,Environment,Environment +403159,Environment,Environment +403015,Environment,Environment +403014,Environment,Environment +402597,Environment,Environment +402591,Environment,Environment +402590,Environment,Environment +402589,Environment,Environment +402588,Environment,Environment +402587,Environment,Environment +402586,Environment,Environment +402585,Environment,Environment +402584,Environment,Environment +402583,Environment,Environment +402581,Environment,Environment +402580,Environment,Environment +402579,Environment,Environment +402577,Environment,Environment +402576,Environment,Environment +402574,Environment,Environment +402573,Environment,Environment +402571,Environment,Environment +402570,Environment,Environment +402569,Environment,Environment +402568,Environment,Environment +399850,Environment,Environment +399848,Environment,Environment +399850,Infrastructure,Infrastructure +399848,Infrastructure,Infrastructure +404785,Infrastructure,Infrastructure +404784,Infrastructure,Infrastructure +403162,Infrastructure,Infrastructure +403159,Infrastructure,Infrastructure +403015,Infrastructure,Infrastructure +403014,Infrastructure,Infrastructure +402597,Infrastructure,Infrastructure +402591,Infrastructure,Infrastructure +402590,Infrastructure,Infrastructure +402589,Infrastructure,Infrastructure +402588,Infrastructure,Infrastructure +402587,Infrastructure,Infrastructure +402586,Infrastructure,Infrastructure +402585,Infrastructure,Infrastructure +402584,Infrastructure,Infrastructure +402583,Infrastructure,Infrastructure +402581,Infrastructure,Infrastructure +402580,Infrastructure,Infrastructure +402579,Infrastructure,Infrastructure +402577,Infrastructure,Infrastructure +402576,Infrastructure,Infrastructure +402574,Infrastructure,Infrastructure +402573,Infrastructure,Infrastructure +402571,Infrastructure,Infrastructure +402570,Infrastructure,Infrastructure +402569,Infrastructure,Infrastructure +398026,Transportation,Transportation +398025,Transportation,Transportation +459566,Security,Security +445229,Security,Security +509001,Security,Security +410827,Infrastructure,Infrastructure +395986,Infrastructure,Infrastructure +421266,Infrastructure,Infrastructure +431737,Fisheries,Fisheries +431736,Fisheries,Fisheries +395812,Fisheries,Fisheries +516648,Fisheries,Fisheries +506062,Fisheries,Fisheries +483394,Fisheries,Fisheries +453445,Fisheries,Fisheries +432819,Fisheries,Fisheries +432818,Fisheries,Fisheries +431739,Fisheries,Fisheries +396190,Environment,Environment +396186,Environment,Environment +493497,Health,Health +491886,Health,Health +469307,Health,Health +461303,Health,Health +461301,Health,Health +455416,Health,Health +428274,Health,Health +417201,Health,Health +417200,Health,Health +417199,Health,Health +404035,Health,Health +395841,Health,Health +539566,Health,Health +537358,Health,Health +537291,Health,Health +533965,Health,Health +530819,Health,Health +529210,Health,Health +528603,Health,Health +524559,Health,Health +521559,Health,Health +521509,Health,Health +521507,Health,Health +521505,Health,Health +504511,Health,Health +498046,Health,Health +396005,Industry,Industry +396003,Industry,Industry +399116,Industry,Industry +396854,Industry,Industry +396853,Industry,Industry +396079,Intellectual Property,Intellectual Property +397055,Research and Development,Research and Development +396079,Research and Development,Research and Development +531879,Environment,Environment +531878,Environment,Environment +411905,Environment,Environment +405264,Environment,Environment +401447,Environment,Environment +401446,Environment,Environment +400262,Environment,Environment +400260,Environment,Environment +399140,Environment,Environment +396169,Environment,Environment +523271,Environment,Environment +519181,Environment,Environment +519179,Environment,Environment +519178,Environment,Environment +519177,Environment,Environment +518350,Environment,Environment +514827,Environment,Environment +514826,Environment,Environment +513219,Environment,Environment +511496,Environment,Environment +511489,Environment,Environment +502908,Environment,Environment +502907,Environment,Environment +499714,Environment,Environment +499707,Environment,Environment +499697,Environment,Environment +490070,Environment,Environment +482668,Environment,Environment +480096,Environment,Environment +462882,Environment,Environment +462879,Environment,Environment +461049,Environment,Environment +457538,Environment,Environment +457532,Environment,Environment +457530,Environment,Environment +456044,Environment,Environment +456043,Environment,Environment +456042,Environment,Environment +456041,Environment,Environment +449754,Environment,Environment +449748,Environment,Environment +449745,Environment,Environment +449736,Environment,Environment +449735,Environment,Environment +449732,Environment,Environment +449730,Environment,Environment +449727,Environment,Environment +449724,Environment,Environment +449719,Environment,Environment +449717,Environment,Environment +449714,Environment,Environment +449711,Environment,Environment +449709,Environment,Environment +449707,Environment,Environment +449705,Environment,Environment +449704,Environment,Environment +448177,Environment,Environment +448175,Environment,Environment +448169,Environment,Environment +448166,Environment,Environment +442692,Environment,Environment +438503,Environment,Environment +435336,Environment,Environment +429494,Environment,Environment +424562,Environment,Environment +421811,Environment,Environment +421809,Environment,Environment +421806,Environment,Environment +421801,Environment,Environment +544157,Environment,Environment +544156,Environment,Environment +544153,Environment,Environment +544151,Environment,Environment +544148,Environment,Environment +541977,Environment,Environment +537952,Environment,Environment +537944,Environment,Environment +502908,Fisheries,Fisheries +499714,Fisheries,Fisheries +396169,Fisheries,Fisheries +462879,Fisheries,Fisheries +457532,Fisheries,Fisheries +457530,Fisheries,Fisheries +456044,Fisheries,Fisheries +456043,Fisheries,Fisheries +456042,Fisheries,Fisheries +456041,Fisheries,Fisheries +449754,Fisheries,Fisheries +449748,Fisheries,Fisheries +449736,Fisheries,Fisheries +449735,Fisheries,Fisheries +449732,Fisheries,Fisheries +449730,Fisheries,Fisheries +449727,Fisheries,Fisheries +449724,Fisheries,Fisheries +449719,Fisheries,Fisheries +449717,Fisheries,Fisheries +449714,Fisheries,Fisheries +449711,Fisheries,Fisheries +449707,Fisheries,Fisheries +449705,Fisheries,Fisheries +449704,Fisheries,Fisheries +448177,Fisheries,Fisheries +448175,Fisheries,Fisheries +448171,Fisheries,Fisheries +448166,Fisheries,Fisheries +411905,Fisheries,Fisheries +405264,Fisheries,Fisheries +544151,Fisheries,Fisheries +535894,Fisheries,Fisheries +531879,Fisheries,Fisheries +519181,Fisheries,Fisheries +519179,Fisheries,Fisheries +519178,Fisheries,Fisheries +396596,Defence,Defence +396185,Defence,Defence +406548,Economic Development,Economic Development +401744,Economic Development,Economic Development +396596,Economic Development,Economic Development +471613,Health,Health +406548,Health,Health +396596,Health,Health +396596,Research and Development,Research and Development +471613,Research and Development,Research and Development +396204,Budget,Budget +499374,Budget,Budget +421064,Budget,Budget +396207,Budget,Budget +446883,Budget,Budget +396216,Budget,Budget +499329,Budget,Budget +446885,Budget,Budget +396218,Budget,Budget +506008,Budget,Budget +499388,Budget,Budget +411506,Energy,Energy +425934,Economic Development,Economic Development +407810,Economic Development,Economic Development +396258,Economic Development,Economic Development +396242,Economic Development,Economic Development +396242,Environment,Environment +396229,Environment,Environment +425934,Environment,Environment +407810,Environment,Environment +396242,Regional Development,Regional Development +396229,Regional Development,Regional Development +425934,Regional Development,Regional Development +420892,Budget,Budget +396214,Budget,Budget +421056,Budget,Budget +421591,Budget,Budget +396244,Budget,Budget +421404,Budget,Budget +396247,Budget,Budget +396250,Budget,Budget +421067,Budget,Budget +420894,Budget,Budget +446803,Budget,Budget +446887,Budget,Budget +420895,Budget,Budget +521753,Justice and Law Enforcement,Justice and Law Enforcement +519775,Justice and Law Enforcement,Justice and Law Enforcement +517945,Justice and Law Enforcement,Justice and Law Enforcement +517943,Justice and Law Enforcement,Justice and Law Enforcement +517939,Justice and Law Enforcement,Justice and Law Enforcement +513329,Justice and Law Enforcement,Justice and Law Enforcement +513326,Justice and Law Enforcement,Justice and Law Enforcement +513321,Justice and Law Enforcement,Justice and Law Enforcement +513319,Justice and Law Enforcement,Justice and Law Enforcement +511653,Justice and Law Enforcement,Justice and Law Enforcement +511650,Justice and Law Enforcement,Justice and Law Enforcement +511649,Justice and Law Enforcement,Justice and Law Enforcement +506152,Justice and Law Enforcement,Justice and Law Enforcement +499226,Justice and Law Enforcement,Justice and Law Enforcement +499222,Justice and Law Enforcement,Justice and Law Enforcement +499212,Justice and Law Enforcement,Justice and Law Enforcement +499208,Justice and Law Enforcement,Justice and Law Enforcement +499205,Justice and Law Enforcement,Justice and Law Enforcement +499202,Justice and Law Enforcement,Justice and Law Enforcement +499193,Justice and Law Enforcement,Justice and Law Enforcement +495887,Justice and Law Enforcement,Justice and Law Enforcement +495886,Justice and Law Enforcement,Justice and Law Enforcement +493555,Justice and Law Enforcement,Justice and Law Enforcement +491875,Justice and Law Enforcement,Justice and Law Enforcement +491116,Justice and Law Enforcement,Justice and Law Enforcement +488355,Justice and Law Enforcement,Justice and Law Enforcement +484083,Justice and Law Enforcement,Justice and Law Enforcement +484080,Justice and Law Enforcement,Justice and Law Enforcement +479947,Justice and Law Enforcement,Justice and Law Enforcement +478139,Justice and Law Enforcement,Justice and Law Enforcement +478136,Justice and Law Enforcement,Justice and Law Enforcement +476108,Justice and Law Enforcement,Justice and Law Enforcement +476103,Justice and Law Enforcement,Justice and Law Enforcement +476101,Justice and Law Enforcement,Justice and Law Enforcement +473315,Justice and Law Enforcement,Justice and Law Enforcement +471314,Justice and Law Enforcement,Justice and Law Enforcement +470569,Justice and Law Enforcement,Justice and Law Enforcement +468474,Justice and Law Enforcement,Justice and Law Enforcement +468461,Justice and Law Enforcement,Justice and Law Enforcement +468459,Justice and Law Enforcement,Justice and Law Enforcement +468457,Justice and Law Enforcement,Justice and Law Enforcement +464694,Justice and Law Enforcement,Justice and Law Enforcement +459771,Justice and Law Enforcement,Justice and Law Enforcement +459754,Justice and Law Enforcement,Justice and Law Enforcement +458756,Justice and Law Enforcement,Justice and Law Enforcement +457616,Justice and Law Enforcement,Justice and Law Enforcement +457591,Justice and Law Enforcement,Justice and Law Enforcement +455620,Justice and Law Enforcement,Justice and Law Enforcement +455608,Justice and Law Enforcement,Justice and Law Enforcement +455604,Justice and Law Enforcement,Justice and Law Enforcement +455602,Justice and Law Enforcement,Justice and Law Enforcement +455591,Justice and Law Enforcement,Justice and Law Enforcement +455582,Justice and Law Enforcement,Justice and Law Enforcement +452479,Justice and Law Enforcement,Justice and Law Enforcement +452476,Justice and Law Enforcement,Justice and Law Enforcement +450121,Justice and Law Enforcement,Justice and Law Enforcement +450115,Justice and Law Enforcement,Justice and Law Enforcement +450111,Justice and Law Enforcement,Justice and Law Enforcement +442270,Justice and Law Enforcement,Justice and Law Enforcement +442266,Justice and Law Enforcement,Justice and Law Enforcement +439698,Justice and Law Enforcement,Justice and Law Enforcement +439461,Justice and Law Enforcement,Justice and Law Enforcement +435841,Justice and Law Enforcement,Justice and Law Enforcement +435835,Justice and Law Enforcement,Justice and Law Enforcement +434046,Justice and Law Enforcement,Justice and Law Enforcement +433178,Justice and Law Enforcement,Justice and Law Enforcement +428704,Justice and Law Enforcement,Justice and Law Enforcement +418270,Justice and Law Enforcement,Justice and Law Enforcement +417070,Justice and Law Enforcement,Justice and Law Enforcement +417067,Justice and Law Enforcement,Justice and Law Enforcement +417055,Justice and Law Enforcement,Justice and Law Enforcement +409141,Justice and Law Enforcement,Justice and Law Enforcement +407898,Justice and Law Enforcement,Justice and Law Enforcement +405558,Justice and Law Enforcement,Justice and Law Enforcement +403894,Justice and Law Enforcement,Justice and Law Enforcement +403889,Justice and Law Enforcement,Justice and Law Enforcement +403874,Justice and Law Enforcement,Justice and Law Enforcement +403869,Justice and Law Enforcement,Justice and Law Enforcement +400921,Justice and Law Enforcement,Justice and Law Enforcement +398202,Justice and Law Enforcement,Justice and Law Enforcement +398200,Justice and Law Enforcement,Justice and Law Enforcement +397833,Justice and Law Enforcement,Justice and Law Enforcement +397832,Justice and Law Enforcement,Justice and Law Enforcement +397830,Justice and Law Enforcement,Justice and Law Enforcement +397829,Justice and Law Enforcement,Justice and Law Enforcement +397827,Justice and Law Enforcement,Justice and Law Enforcement +397826,Justice and Law Enforcement,Justice and Law Enforcement +397825,Justice and Law Enforcement,Justice and Law Enforcement +397824,Justice and Law Enforcement,Justice and Law Enforcement +397820,Justice and Law Enforcement,Justice and Law Enforcement +397819,Justice and Law Enforcement,Justice and Law Enforcement +397818,Justice and Law Enforcement,Justice and Law Enforcement +397817,Justice and Law Enforcement,Justice and Law Enforcement +397800,Justice and Law Enforcement,Justice and Law Enforcement +396852,Justice and Law Enforcement,Justice and Law Enforcement +396811,Justice and Law Enforcement,Justice and Law Enforcement +396801,Justice and Law Enforcement,Justice and Law Enforcement +396788,Justice and Law Enforcement,Justice and Law Enforcement +396686,Justice and Law Enforcement,Justice and Law Enforcement +396679,Justice and Law Enforcement,Justice and Law Enforcement +396668,Justice and Law Enforcement,Justice and Law Enforcement +396658,Justice and Law Enforcement,Justice and Law Enforcement +396650,Justice and Law Enforcement,Justice and Law Enforcement +396643,Justice and Law Enforcement,Justice and Law Enforcement +396636,Justice and Law Enforcement,Justice and Law Enforcement +396633,Justice and Law Enforcement,Justice and Law Enforcement +396631,Justice and Law Enforcement,Justice and Law Enforcement +396265,Justice and Law Enforcement,Justice and Law Enforcement +396264,Justice and Law Enforcement,Justice and Law Enforcement +396263,Justice and Law Enforcement,Justice and Law Enforcement +543438,Justice and Law Enforcement,Justice and Law Enforcement +543429,Justice and Law Enforcement,Justice and Law Enforcement +537187,Justice and Law Enforcement,Justice and Law Enforcement +534757,Justice and Law Enforcement,Justice and Law Enforcement +531147,Justice and Law Enforcement,Justice and Law Enforcement +531145,Justice and Law Enforcement,Justice and Law Enforcement +531128,Justice and Law Enforcement,Justice and Law Enforcement +528273,Justice and Law Enforcement,Justice and Law Enforcement +527867,Justice and Law Enforcement,Justice and Law Enforcement +397697,International Trade,International Trade +396294,International Trade,International Trade +434324,International Trade,International Trade +426744,International Trade,International Trade +426737,International Trade,International Trade +417618,International Trade,International Trade +417612,International Trade,International Trade +438914,International Trade,International Trade +438912,International Trade,International Trade +438909,International Trade,International Trade +438907,International Trade,International Trade +438898,International Trade,International Trade +438890,International Trade,International Trade +438858,International Trade,International Trade +438851,International Trade,International Trade +432476,International Trade,International Trade +416314,International Trade,International Trade +412900,International Trade,International Trade +410045,International Trade,International Trade +410043,International Trade,International Trade +410042,International Trade,International Trade +410041,International Trade,International Trade +400500,International Trade,International Trade +525975,International Trade,International Trade +535850,Privacy and Access to Information,Privacy and Access to Information +525962,Privacy and Access to Information,Privacy and Access to Information +405741,Privacy and Access to Information,Privacy and Access to Information +405740,Privacy and Access to Information,Privacy and Access to Information +403790,Privacy and Access to Information,Privacy and Access to Information +438904,Privacy and Access to Information,Privacy and Access to Information +438894,Privacy and Access to Information,Privacy and Access to Information +431030,Privacy and Access to Information,Privacy and Access to Information +431021,Privacy and Access to Information,Privacy and Access to Information +419921,Privacy and Access to Information,Privacy and Access to Information +419920,Privacy and Access to Information,Privacy and Access to Information +416096,Privacy and Access to Information,Privacy and Access to Information +406637,Privacy and Access to Information,Privacy and Access to Information +406634,Privacy and Access to Information,Privacy and Access to Information +405748,Privacy and Access to Information,Privacy and Access to Information +405747,Privacy and Access to Information,Privacy and Access to Information +405744,Privacy and Access to Information,Privacy and Access to Information +405743,Privacy and Access to Information,Privacy and Access to Information +422237,Tourism,Tourism +539801,Tourism,Tourism +396566,Infrastructure,Infrastructure +396566,Economic Development,Economic Development +399467,Economic Development,Economic Development +397353,Economic Development,Economic Development +399474,Economic Development,Economic Development +399473,Economic Development,Economic Development +399472,Economic Development,Economic Development +399471,Economic Development,Economic Development +399470,Economic Development,Economic Development +399469,Economic Development,Economic Development +399466,Energy,Energy +397353,Energy,Energy +399474,Energy,Energy +399473,Energy,Energy +399472,Energy,Energy +399471,Energy,Energy +399470,Energy,Energy +399469,Energy,Energy +399468,Energy,Energy +399466,Environment,Environment +397353,Environment,Environment +399474,Environment,Environment +399473,Environment,Environment +399472,Environment,Environment +399471,Environment,Environment +399470,Environment,Environment +399469,Environment,Environment +399468,Environment,Environment +399466,International Trade,International Trade +397353,International Trade,International Trade +399474,International Trade,International Trade +399473,International Trade,International Trade +399472,International Trade,International Trade +399471,International Trade,International Trade +399470,International Trade,International Trade +399469,International Trade,International Trade +399468,International Trade,International Trade +399466,Transportation,Transportation +397353,Transportation,Transportation +399474,Transportation,Transportation +399473,Transportation,Transportation +399472,Transportation,Transportation +399471,Transportation,Transportation +399470,Transportation,Transportation +399469,Transportation,Transportation +399468,Transportation,Transportation +396708,Environment,Environment +396681,Environment,Environment +440362,Environment,Environment +435990,Environment,Environment +420265,Environment,Environment +415804,Environment,Environment +415800,Environment,Environment +400746,Environment,Environment +400744,Environment,Environment +415804,Education,Education +396681,Education,Education +446858,Budget,Budget +446840,Budget,Budget +396738,Budget,Budget +396810,Budget,Budget +446829,Budget,Budget +446788,Budget,Budget +421027,Budget,Budget +420909,Budget,Budget +396823,Budget,Budget +446876,Budget,Budget +420518,Agriculture,Agriculture +420517,Agriculture,Agriculture +396835,Agriculture,Agriculture +396833,Agriculture,Agriculture +396830,Agriculture,Agriculture +446447,Agriculture,Agriculture +446445,Agriculture,Agriculture +446444,Agriculture,Agriculture +446445,International Trade,International Trade +446444,International Trade,International Trade +420519,International Trade,International Trade +420518,International Trade,International Trade +420517,International Trade,International Trade +396835,International Trade,International Trade +396833,International Trade,International Trade +396830,International Trade,International Trade +446882,Budget,Budget +420918,Budget,Budget +446813,Budget,Budget +396847,Budget,Budget +413315,Defence,Defence +446832,Budget,Budget +396881,Budget,Budget +396885,Budget,Budget +499387,Budget,Budget +421547,Budget,Budget +396912,Budget,Budget +396933,Budget,Budget +396937,Budget,Budget +499381,Budget,Budget +396940,Consumer Issues,Consumer Issues +446834,Budget,Budget +446830,Budget,Budget +396947,Budget,Budget +420917,Budget,Budget +420903,Budget,Budget +396945,Budget,Budget +420920,Budget,Budget +396952,Budget,Budget +396956,Budget,Budget +396980,Budget,Budget +499384,Budget,Budget +396990,Budget,Budget +396995,Budget,Budget +446881,Budget,Budget +421904,Budget,Budget +396994,Budget,Budget +396996,Budget,Budget +446806,Budget,Budget +396997,Budget,Budget +421044,Budget,Budget +396998,Budget,Budget +446826,Budget,Budget +499385,Budget,Budget +420869,Budget,Budget +397004,Budget,Budget +529311,Budget,Budget +499321,Budget,Budget +397007,Budget,Budget +446798,Budget,Budget +421552,Budget,Budget +399138,Immigration,Immigration +397009,Immigration,Immigration +421384,Immigration,Immigration +421373,Immigration,Immigration +421372,Immigration,Immigration +416985,Immigration,Immigration +446871,Budget,Budget +421411,Budget,Budget +397018,Budget,Budget +492248,Budget,Budget +446828,Budget,Budget +421042,Budget,Budget +420906,Budget,Budget +397026,Budget,Budget +446880,Budget,Budget +421502,Budget,Budget +421065,Budget,Budget +421399,Budget,Budget +420887,Budget,Budget +397052,Budget,Budget +499378,Budget,Budget +446884,Budget,Budget +421037,Budget,Budget +446889,Budget,Budget +421396,Budget,Budget +397062,Budget,Budget +397064,Budget,Budget +397065,Budget,Budget +397066,Budget,Budget +446809,Budget,Budget +420878,Budget,Budget +421589,Budget,Budget +397069,Budget,Budget +446785,Budget,Budget +421392,Budget,Budget +531459,Budget,Budget +397071,Budget,Budget +421908,Budget,Budget +421537,Budget,Budget +420891,Budget,Budget +397072,Budget,Budget +397073,Budget,Budget +499390,Budget,Budget +499327,Budget,Budget +421439,Budget,Budget +397078,Budget,Budget +420867,Budget,Budget +397079,Budget,Budget +421054,Budget,Budget +397081,Budget,Budget +397087,Budget,Budget +397089,Budget,Budget +499377,Budget,Budget +421021,Budget,Budget +397101,Research and Development,Research and Development +397100,Research and Development,Research and Development +397105,Research and Development,Research and Development +397104,Research and Development,Research and Development +397106,Budget,Budget +446794,Budget,Budget +421031,Budget,Budget +397107,Budget,Budget +446796,Budget,Budget +446792,Budget,Budget +420896,Budget,Budget +397108,Budget,Budget +499341,Budget,Budget +446865,Budget,Budget +420904,Budget,Budget +446844,Budget,Budget +397111,Budget,Budget +522441,Budget,Budget +499334,Budget,Budget +397115,Budget,Budget +418359,Budget,Budget +397120,Budget,Budget +421586,Budget,Budget +421070,Budget,Budget +397118,Budget,Budget +522439,Budget,Budget +446864,Budget,Budget +420893,Budget,Budget +401860,Economic Development,Economic Development +401469,Economic Development,Economic Development +411403,Economic Development,Economic Development +407033,Economic Development,Economic Development +401866,Economic Development,Economic Development +401865,Economic Development,Economic Development +401863,Economic Development,Economic Development +401862,Regional Development,Regional Development +401860,Regional Development,Regional Development +411403,Regional Development,Regional Development +401866,Regional Development,Regional Development +401865,Regional Development,Regional Development +400077,Economic Development,Développement économique +398523,Economic Development,Développement économique +431582,Economic Development,Développement économique +431581,Economic Development,Développement économique +429786,Economic Development,Développement économique +407174,Economic Development,Développement économique +400077,Infrastructure,Infrastructure +398523,Infrastructure,Infrastructure +398523,Municipalities,Municipalités +402693,Government Procurement,Government Procurement +476322,Government Procurement,Government Procurement +407987,Government Procurement,Government Procurement +498952,Industry,Industry +457702,Industry,Industry +512925,Climate,Climate +399378,Climate,Climat +399377,Climate,Climat +399381,Climate,Climat +399380,Climate,Climat +404829,Transportation,Transportation +401558,Transportation,Transportation +431874,Transportation,Transportation +429672,Transportation,Transportation +402153,Environment,Environment +402152,Environment,Environment +402153,Health,Health +402152,Health,Health +402152,Regional Development,Regional Development +400957,International Relations,International Relations +400952,International Relations,International Relations +416810,International Relations,International Relations +416808,International Relations,International Relations +416807,International Relations,International Relations +403174,International Relations,International Relations +403172,International Relations,International Relations +401115,International Relations,International Relations +401114,International Relations,International Relations +401113,International Relations,International Relations +400957,International Trade,International Trade +400952,International Trade,International Trade +416810,International Trade,International Trade +416808,International Trade,International Trade +416807,International Trade,International Trade +403174,International Trade,International Trade +403172,International Trade,International Trade +401115,International Trade,International Trade +401114,International Trade,International Trade +401113,International Trade,International Trade +403379,Environment,Environment +400868,Environment,Environment +431783,Environment,Environment +424752,Environment,Environment +424751,Environment,Environment +410579,Environment,Environment +408707,Environment,Environment +408706,Environment,Environment +408705,Environment,Environment +407202,Environment,Environment +406017,Environment,Environment +400868,Health,Health +424751,Health,Health +410579,Health,Health +410578,Health,Health +408707,Health,Health +408706,Health,Health +408705,Health,Health +407202,Health,Health +406017,Health,Health +403400,Health,Health +403379,Regional Development,Regional Development +400868,Regional Development,Regional Development +424752,Regional Development,Regional Development +410579,Regional Development,Regional Development +410578,Regional Development,Regional Development +408707,Regional Development,Regional Development +408706,Regional Development,Regional Development +408705,Regional Development,Regional Development +406017,Regional Development,Regional Development +409253,Health,Health +401695,Economic Development,Economic Development +401695,Industry,Industry +399737,Industry,Industry +401695,Regional Development,Regional Development +399737,Regional Development,Regional Development +434337,Intellectual Property,Intellectual Property +418403,Intellectual Property,Intellectual Property +397264,Intellectual Property,Intellectual Property +465413,Intellectual Property,Intellectual Property +494858,Education,Education +465078,Education,Education +402287,Education,Education +402285,Education,Education +410410,Research and Development,Research and Development +524431,Research and Development,Research and Development +511882,Research and Development,Research and Development +509772,Research and Development,Research and Development +506656,Research and Development,Research and Development +506654,Research and Development,Research and Development +506651,Research and Development,Research and Development +503197,Research and Development,Research and Development +503196,Research and Development,Research and Development +503195,Research and Development,Research and Development +494289,Research and Development,Research and Development +494288,Research and Development,Research and Development +494287,Research and Development,Research and Development +477280,Research and Development,Research and Development +471460,Research and Development,Research and Development +464775,Research and Development,Research and Development +462333,Research and Development,Research and Development +445212,Research and Development,Research and Development +430658,Research and Development,Research and Development +427973,Research and Development,Research and Development +427971,Research and Development,Research and Development +399779,Agriculture,Agriculture +399773,Agriculture,Agriculture +397593,Agriculture,Agriculture +397592,Agriculture,Agriculture +397591,Agriculture,Agriculture +420332,Agriculture,Agriculture +420331,Agriculture,Agriculture +411607,Agriculture,Agriculture +411604,Agriculture,Agriculture +402898,Agriculture,Agriculture +402897,Agriculture,Agriculture +402895,Agriculture,Agriculture +402894,Agriculture,Agriculture +402893,Agriculture,Agriculture +402891,Agriculture,Agriculture +402887,Agriculture,Agriculture +402883,Agriculture,Agriculture +402630,Agriculture,Agriculture +402893,Economic Development,Economic Development +402883,Economic Development,Economic Development +402895,Economic Development,Economic Development +397593,Industry,Industry +397591,Industry,Industry +397590,International Trade,International Trade +420332,International Trade,International Trade +402898,International Trade,International Trade +402897,International Trade,International Trade +401117,International Relations,International Relations +401116,International Relations,International Relations +416855,International Relations,International Relations +416851,International Relations,International Relations +404772,International Relations,International Relations +404771,International Relations,International Relations +404770,International Relations,International Relations +403116,International Relations,International Relations +416855,International Trade,International Trade +416851,International Trade,International Trade +404772,International Trade,International Trade +404771,International Trade,International Trade +404770,International Trade,International Trade +403116,International Trade,International Trade +403115,International Trade,International Trade +401117,International Trade,International Trade +401122,International Relations,International Relations +401121,International Relations,International Relations +401124,International Relations,International Relations +401122,International Trade,International Trade +401121,International Trade,International Trade +401124,International Trade,International Trade +469887,Economic Development,Economic Development +469885,Economic Development,Economic Development +418102,Economic Development,Economic Development +418101,Economic Development,Economic Development +418099,Economic Development,Economic Development +418097,Economic Development,Economic Development +418096,Economic Development,Economic Development +418095,Economic Development,Economic Development +418094,Economic Development,Economic Development +418093,Economic Development,Economic Development +415369,Economic Development,Economic Development +415363,Economic Development,Economic Development +412684,Economic Development,Economic Development +412681,Economic Development,Economic Development +412680,Economic Development,Economic Development +412678,Economic Development,Economic Development +412677,Economic Development,Economic Development +412676,Economic Development,Economic Development +412673,Economic Development,Economic Development +412667,Economic Development,Economic Development +412664,Economic Development,Economic Development +412654,Economic Development,Economic Development +412650,Economic Development,Economic Development +412608,Economic Development,Economic Development +412606,Economic Development,Economic Development +412598,Economic Development,Economic Development +412596,Economic Development,Economic Development +410457,Economic Development,Economic Development +409727,Economic Development,Economic Development +409725,Economic Development,Economic Development +406842,Economic Development,Economic Development +406841,Economic Development,Economic Development +406839,Economic Development,Economic Development +404875,Economic Development,Economic Development +404023,Economic Development,Economic Development +403051,Economic Development,Economic Development +403050,Economic Development,Economic Development +403049,Economic Development,Economic Development +403048,Economic Development,Economic Development +403047,Economic Development,Economic Development +403045,Economic Development,Economic Development +402699,Economic Development,Economic Development +400112,Economic Development,Economic Development +461344,Economic Development,Economic Development +455798,Economic Development,Economic Development +452883,Economic Development,Economic Development +452830,Economic Development,Economic Development +452816,Economic Development,Economic Development +452814,Economic Development,Economic Development +452813,Economic Development,Economic Development +452810,Economic Development,Economic Development +452808,Economic Development,Economic Development +452807,Economic Development,Economic Development +452801,Economic Development,Economic Development +452775,Economic Development,Economic Development +452774,Economic Development,Economic Development +452763,Economic Development,Economic Development +452757,Economic Development,Economic Development +447878,Economic Development,Economic Development +443681,Economic Development,Economic Development +441127,Economic Development,Economic Development +441125,Economic Development,Economic Development +441124,Economic Development,Economic Development +441123,Economic Development,Economic Development +441122,Economic Development,Economic Development +441121,Economic Development,Economic Development +438729,Economic Development,Economic Development +438727,Economic Development,Economic Development +438726,Economic Development,Economic Development +438724,Economic Development,Economic Development +438723,Economic Development,Economic Development +435742,Economic Development,Economic Development +435738,Economic Development,Economic Development +426501,Economic Development,Economic Development +423720,Economic Development,Economic Development +419636,Economic Development,Economic Development +419633,Economic Development,Economic Development +419631,Economic Development,Economic Development +419630,Economic Development,Economic Development +541670,Economic Development,Economic Development +537938,Economic Development,Economic Development +537936,Economic Development,Economic Development +537935,Economic Development,Economic Development +537934,Economic Development,Economic Development +537933,Economic Development,Economic Development +534860,Economic Development,Economic Development +517081,Economic Development,Economic Development +515525,Economic Development,Economic Development +513993,Economic Development,Economic Development +512335,Economic Development,Economic Development +510327,Economic Development,Economic Development +510325,Economic Development,Economic Development +507102,Economic Development,Economic Development +507100,Economic Development,Economic Development +504091,Economic Development,Economic Development +504090,Economic Development,Economic Development +504089,Economic Development,Economic Development +504088,Economic Development,Economic Development +504086,Economic Development,Economic Development +501558,Economic Development,Economic Development +501557,Economic Development,Economic Development +495431,Economic Development,Economic Development +490771,Economic Development,Economic Development +490747,Economic Development,Economic Development +486403,Economic Development,Economic Development +486402,Economic Development,Economic Development +486401,Economic Development,Economic Development +486400,Economic Development,Economic Development +484417,Economic Development,Economic Development +481747,Economic Development,Economic Development +480258,Economic Development,Economic Development +480256,Economic Development,Economic Development +480255,Economic Development,Economic Development +480254,Economic Development,Economic Development +480245,Economic Development,Economic Development +477224,Economic Development,Economic Development +477223,Economic Development,Economic Development +476016,Economic Development,Economic Development +476013,Economic Development,Economic Development +476010,Economic Development,Economic Development +473448,Economic Development,Economic Development +473443,Economic Development,Economic Development +473443,Health,Health +473436,Health,Health +423720,Health,Health +419636,Health,Health +419633,Health,Health +419631,Health,Health +419630,Health,Health +418102,Health,Health +418101,Health,Health +418099,Health,Health +418097,Health,Health +418096,Health,Health +418095,Health,Health +418094,Health,Health +418093,Health,Health +415369,Health,Health +415363,Health,Health +412684,Health,Health +412681,Health,Health +412680,Health,Health +412678,Health,Health +412677,Health,Health +412676,Health,Health +412673,Health,Health +412667,Health,Health +412664,Health,Health +412654,Health,Health +412650,Health,Health +412608,Health,Health +412606,Health,Health +412598,Health,Health +412596,Health,Health +410457,Health,Health +409727,Health,Health +409725,Health,Health +406842,Health,Health +406841,Health,Health +406839,Health,Health +403048,Health,Health +469887,Health,Health +469885,Health,Health +461344,Health,Health +455798,Health,Health +452883,Health,Health +452830,Health,Health +452816,Health,Health +452814,Health,Health +452813,Health,Health +452810,Health,Health +452808,Health,Health +452807,Health,Health +452801,Health,Health +452775,Health,Health +452774,Health,Health +452763,Health,Health +452757,Health,Health +447878,Health,Health +443681,Health,Health +441127,Health,Health +441125,Health,Health +441124,Health,Health +441123,Health,Health +441122,Health,Health +441121,Health,Health +438729,Health,Health +438727,Health,Health +438726,Health,Health +438724,Health,Health +438723,Health,Health +435742,Health,Health +435738,Health,Health +426501,Health,Health +541670,Health,Health +537938,Health,Health +537936,Health,Health +537935,Health,Health +537934,Health,Health +537933,Health,Health +534860,Health,Health +517081,Health,Health +515525,Health,Health +513993,Health,Health +512335,Health,Health +510327,Health,Health +510325,Health,Health +507102,Health,Health +507100,Health,Health +504091,Health,Health +504090,Health,Health +504089,Health,Health +504088,Health,Health +504086,Health,Health +501558,Health,Health +501557,Health,Health +495431,Health,Health +490771,Health,Health +490747,Health,Health +486403,Health,Health +486402,Health,Health +486401,Health,Health +486400,Health,Health +484417,Health,Health +481747,Health,Health +480258,Health,Health +480256,Health,Health +480255,Health,Health +480254,Health,Health +480245,Health,Health +477224,Health,Health +477223,Health,Health +476016,Health,Health +476013,Health,Health +476010,Health,Health +412684,Research and Development,Research and Development +412681,Research and Development,Research and Development +412680,Research and Development,Research and Development +412678,Research and Development,Research and Development +412677,Research and Development,Research and Development +412676,Research and Development,Research and Development +412673,Research and Development,Research and Development +412667,Research and Development,Research and Development +412664,Research and Development,Research and Development +412654,Research and Development,Research and Development +412650,Research and Development,Research and Development +412608,Research and Development,Research and Development +412606,Research and Development,Research and Development +412598,Research and Development,Research and Development +412596,Research and Development,Research and Development +410457,Research and Development,Research and Development +409727,Research and Development,Research and Development +409725,Research and Development,Research and Development +406842,Research and Development,Research and Development +406841,Research and Development,Research and Development +406839,Research and Development,Research and Development +404875,Research and Development,Research and Development +404023,Research and Development,Research and Development +403051,Research and Development,Research and Development +403050,Research and Development,Research and Development +403049,Research and Development,Research and Development +403048,Research and Development,Research and Development +403047,Research and Development,Research and Development +403045,Research and Development,Research and Development +402699,Research and Development,Research and Development +400112,Research and Development,Research and Development +541670,Research and Development,Research and Development +537938,Research and Development,Research and Development +537936,Research and Development,Research and Development +537935,Research and Development,Research and Development +537934,Research and Development,Research and Development +537933,Research and Development,Research and Development +534860,Research and Development,Research and Development +517081,Research and Development,Research and Development +515525,Research and Development,Research and Development +513993,Research and Development,Research and Development +512335,Research and Development,Research and Development +510327,Research and Development,Research and Development +510325,Research and Development,Research and Development +507102,Research and Development,Research and Development +507100,Research and Development,Research and Development +504091,Research and Development,Research and Development +504090,Research and Development,Research and Development +504089,Research and Development,Research and Development +504088,Research and Development,Research and Development +504086,Research and Development,Research and Development +501558,Research and Development,Research and Development +501557,Research and Development,Research and Development +495431,Research and Development,Research and Development +490771,Research and Development,Research and Development +490747,Research and Development,Research and Development +486403,Research and Development,Research and Development +486402,Research and Development,Research and Development +486401,Research and Development,Research and Development +486400,Research and Development,Research and Development +484417,Research and Development,Research and Development +481747,Research and Development,Research and Development +480258,Research and Development,Research and Development +480256,Research and Development,Research and Development +480255,Research and Development,Research and Development +480254,Research and Development,Research and Development +480245,Research and Development,Research and Development +477224,Research and Development,Research and Development +477223,Research and Development,Research and Development +476016,Research and Development,Research and Development +476013,Research and Development,Research and Development +476010,Research and Development,Research and Development +473448,Research and Development,Research and Development +473443,Research and Development,Research and Development +473436,Research and Development,Research and Development +469887,Research and Development,Research and Development +469885,Research and Development,Research and Development +461344,Research and Development,Research and Development +455798,Research and Development,Research and Development +452883,Research and Development,Research and Development +452830,Research and Development,Research and Development +452816,Research and Development,Research and Development +452814,Research and Development,Research and Development +452813,Research and Development,Research and Development +452810,Research and Development,Research and Development +452808,Research and Development,Research and Development +452807,Research and Development,Research and Development +452801,Research and Development,Research and Development +452775,Research and Development,Research and Development +452774,Research and Development,Research and Development +452763,Research and Development,Research and Development +452757,Research and Development,Research and Development +447878,Research and Development,Research and Development +443681,Research and Development,Research and Development +441127,Research and Development,Research and Development +441125,Research and Development,Research and Development +441124,Research and Development,Research and Development +441123,Research and Development,Research and Development +441122,Research and Development,Research and Development +441121,Research and Development,Research and Development +438729,Research and Development,Research and Development +438727,Research and Development,Research and Development +438726,Research and Development,Research and Development +438724,Research and Development,Research and Development +438723,Research and Development,Research and Development +435742,Research and Development,Research and Development +435738,Research and Development,Research and Development +426501,Research and Development,Research and Development +423720,Research and Development,Research and Development +419636,Research and Development,Research and Development +419633,Research and Development,Research and Development +419631,Research and Development,Research and Development +419630,Research and Development,Research and Development +418102,Research and Development,Research and Development +418101,Research and Development,Research and Development +418099,Research and Development,Research and Development +418097,Research and Development,Research and Development +418096,Research and Development,Research and Development +418095,Research and Development,Research and Development +418094,Research and Development,Research and Development +418093,Research and Development,Research and Development +415369,Research and Development,Research and Development +399378,International Trade,Commerce international +399377,International Trade,Commerce international +399381,International Trade,Commerce international +399380,International Trade,Commerce international +399378,International Development,Développement international +399377,International Development,Développement international +399381,International Development,Développement international +399380,International Development,Développement international +399378,Environment,Environnement +399377,Environment,Environnement +399381,Environment,Environnement +399380,Environment,Environnement +399378,Forestry,Foresterie +399377,Forestry,Foresterie +399382,Forestry,Foresterie +399381,Forestry,Foresterie +399380,Forestry,Foresterie +397305,International Trade,International Trade +451101,International Trade,International Trade +441667,International Trade,International Trade +436614,International Trade,International Trade +436613,International Trade,International Trade +427079,International Trade,International Trade +427077,International Trade,International Trade +427075,International Trade,International Trade +419314,International Trade,International Trade +419313,International Trade,International Trade +419312,International Trade,International Trade +399219,Economic Development,Economic Development +399219,Employment and Training,Employment and Training +398028,Agriculture,Agriculture +398024,Agriculture,Agriculture +421293,Agriculture,Agriculture +421292,Agriculture,Agriculture +421291,Agriculture,Agriculture +421290,Agriculture,Agriculture +421288,Agriculture,Agriculture +417564,Agriculture,Agriculture +417563,Agriculture,Agriculture +417560,Agriculture,Agriculture +414700,Agriculture,Agriculture +414689,Agriculture,Agriculture +414688,Agriculture,Agriculture +411088,Agriculture,Agriculture +411084,Agriculture,Agriculture +409028,Agriculture,Agriculture +407991,Agriculture,Agriculture +406319,Agriculture,Agriculture +406309,Agriculture,Agriculture +406304,Agriculture,Agriculture +405079,Agriculture,Agriculture +402582,Agriculture,Agriculture +401127,International Relations,International Relations +401126,International Relations,International Relations +401129,International Relations,International Relations +401127,International Trade,International Trade +401126,International Trade,International Trade +401129,International Trade,International Trade +397393,International Development,International Development +422270,Industry,Industry +419334,Industry,Industry +399660,Housing,Housing +398272,Housing,Housing +399556,Forestry,Forestry +471953,Forestry,Forestry +419508,Forestry,Forestry +418551,Forestry,Forestry +402246,Forestry,Forestry +402245,Forestry,Forestry +508489,Defence,Defence +508469,Defence,Defence +444018,Defence,Defence +432615,Defence,Defence +432605,Defence,Defence +432603,Defence,Defence +429530,Defence,Defence +429529,Defence,Defence +424327,Defence,Defence +413841,Defence,Defence +413840,Defence,Defence +413839,Defence,Defence +413838,Defence,Defence +413836,Defence,Defence +413833,Defence,Defence +410158,Defence,Defence +405807,Defence,Defence +405804,Defence,Defence +403963,Defence,Defence +403960,Defence,Defence +523444,Defence,Defence +523441,Defence,Defence +400349,Health,Health +398280,Health,Health +400349,Justice and Law Enforcement,Justice and Law Enforcement +398281,Justice and Law Enforcement,Justice and Law Enforcement +397566,Taxation and Finance,Taxation and Finance +399302,Taxation and Finance,Taxation and Finance +397585,Taxation and Finance,Taxation and Finance +430101,Economic Development,Economic Development +424649,Economic Development,Economic Development +461665,Economic Development,Economic Development +461664,Economic Development,Economic Development +460706,Economic Development,Economic Development +460705,Economic Development,Economic Development +460704,Economic Development,Economic Development +460702,Economic Development,Economic Development +459728,Economic Development,Economic Development +458936,Economic Development,Economic Development +452711,Economic Development,Economic Development +452707,Economic Development,Economic Development +450705,Economic Development,Economic Development +450703,Economic Development,Economic Development +447976,Economic Development,Economic Development +447937,Economic Development,Economic Development +447934,Economic Development,Economic Development +447928,Economic Development,Economic Development +447926,Economic Development,Economic Development +447923,Economic Development,Economic Development +445416,Economic Development,Economic Development +445273,Economic Development,Economic Development +445272,Economic Development,Economic Development +443717,Economic Development,Economic Development +443714,Economic Development,Economic Development +442618,Economic Development,Economic Development +442617,Economic Development,Economic Development +442616,Economic Development,Economic Development +442615,Economic Development,Economic Development +442614,Economic Development,Economic Development +442613,Economic Development,Economic Development +442612,Economic Development,Economic Development +442611,Economic Development,Economic Development +442608,Economic Development,Economic Development +438877,Economic Development,Economic Development +438876,Economic Development,Economic Development +438875,Economic Development,Economic Development +438873,Economic Development,Economic Development +438872,Economic Development,Economic Development +438871,Economic Development,Economic Development +438870,Economic Development,Economic Development +435252,Economic Development,Economic Development +435240,Economic Development,Economic Development +435229,Economic Development,Economic Development +435227,Economic Development,Economic Development +420926,Intellectual Property,Intellectual Property +420925,Intellectual Property,Intellectual Property +460706,Intellectual Property,Intellectual Property +460704,Intellectual Property,Intellectual Property +452711,Intellectual Property,Intellectual Property +450706,Intellectual Property,Intellectual Property +442617,Intellectual Property,Intellectual Property +435227,Intellectual Property,Intellectual Property +427835,Intellectual Property,Intellectual Property +427821,Research and Development,Research and Development +424649,Research and Development,Research and Development +420928,Research and Development,Research and Development +461665,Research and Development,Research and Development +461664,Research and Development,Research and Development +459728,Research and Development,Research and Development +455806,Research and Development,Research and Development +455800,Research and Development,Research and Development +452707,Research and Development,Research and Development +447978,Research and Development,Research and Development +447937,Research and Development,Research and Development +447934,Research and Development,Research and Development +443717,Research and Development,Research and Development +442616,Research and Development,Research and Development +442614,Research and Development,Research and Development +442610,Research and Development,Research and Development +438876,Research and Development,Research and Development +438873,Research and Development,Research and Development +438872,Research and Development,Research and Development +438871,Research and Development,Research and Development +435252,Research and Development,Research and Development +435249,Research and Development,Research and Development +435229,Research and Development,Research and Development +435227,Research and Development,Research and Development +401824,Agriculture,Agriculture +397695,Agriculture,Agriculture +524413,Agriculture,Agriculture +462555,Agriculture,Agriculture +461891,Agriculture,Agriculture +427986,Agriculture,Agriculture +427981,Agriculture,Agriculture +427979,Agriculture,Agriculture +412121,Agriculture,Agriculture +427981,Consumer Issues,Consumer Issues +427979,Consumer Issues,Consumer Issues +461891,Consumer Issues,Consumer Issues +462555,Economic Development,Economic Development +461891,Economic Development,Economic Development +427986,Economic Development,Economic Development +427981,Economic Development,Economic Development +427979,Economic Development,Economic Development +401824,Economic Development,Economic Development +397695,Economic Development,Economic Development +412121,International Trade,International Trade +397695,International Trade,International Trade +461891,International Trade,International Trade +427986,International Trade,International Trade +427981,International Trade,International Trade +398006,Defence,Defence +398005,Defence,Defence +401146,Defence,Defence +401144,Defence,Defence +399703,Defence,Defence +399313,Defence,Defence +399309,Defence,Defence +399307,Defence,Defence +399305,Defence,Defence +398271,Defence,Defence +398270,Defence,Defence +398267,Defence,Defence +398264,Defence,Defence +398263,Defence,Defence +398191,Defence,Defence +398271,Economic Development,Economic Development +398270,Economic Development,Economic Development +398267,Economic Development,Economic Development +398264,Economic Development,Economic Development +398263,Economic Development,Economic Development +398191,Economic Development,Economic Development +398190,Economic Development,Economic Development +398006,Economic Development,Economic Development +398005,Economic Development,Economic Development +456423,Economic Development,Economic Development +456420,Economic Development,Economic Development +441302,Economic Development,Economic Development +441300,Economic Development,Economic Development +439888,Economic Development,Economic Development +414068,Economic Development,Economic Development +401146,Economic Development,Economic Development +401144,Economic Development,Economic Development +399703,Economic Development,Economic Development +399313,Economic Development,Economic Development +399309,Economic Development,Economic Development +399307,Economic Development,Economic Development +399307,Environment,Environment +399305,Environment,Environment +398271,Environment,Environment +398270,Environment,Environment +398267,Environment,Environment +398264,Environment,Environment +398263,Environment,Environment +398191,Environment,Environment +398190,Environment,Environment +398005,Environment,Environment +439888,Environment,Environment +401146,Environment,Environment +401144,Environment,Environment +399313,Environment,Environment +398005,Financial Institutions,Financial Institutions +439888,Financial Institutions,Financial Institutions +401146,Financial Institutions,Financial Institutions +401144,Financial Institutions,Financial Institutions +399313,Financial Institutions,Financial Institutions +399309,Financial Institutions,Financial Institutions +399307,Financial Institutions,Financial Institutions +399305,Financial Institutions,Financial Institutions +398271,Financial Institutions,Financial Institutions +398270,Financial Institutions,Financial Institutions +398267,Financial Institutions,Financial Institutions +398264,Financial Institutions,Financial Institutions +398263,Financial Institutions,Financial Institutions +398191,Financial Institutions,Financial Institutions +439888,Government Procurement,Government Procurement +419820,Government Procurement,Government Procurement +401146,Government Procurement,Government Procurement +401144,Government Procurement,Government Procurement +399313,Government Procurement,Government Procurement +399309,Government Procurement,Government Procurement +399307,Government Procurement,Government Procurement +399305,Government Procurement,Government Procurement +398271,Government Procurement,Government Procurement +398270,Government Procurement,Government Procurement +398267,Government Procurement,Government Procurement +398264,Government Procurement,Government Procurement +398263,Government Procurement,Government Procurement +398191,Government Procurement,Government Procurement +398190,Government Procurement,Government Procurement +398005,Government Procurement,Government Procurement +456423,Government Procurement,Government Procurement +456420,Government Procurement,Government Procurement +441302,Government Procurement,Government Procurement +401146,Industry,Industry +401144,Industry,Industry +399703,Industry,Industry +399313,Industry,Industry +399309,Industry,Industry +399307,Industry,Industry +399305,Industry,Industry +398271,Industry,Industry +398270,Industry,Industry +398267,Industry,Industry +398264,Industry,Industry +398263,Industry,Industry +398191,Industry,Industry +398190,Industry,Industry +398006,Industry,Industry +398005,Industry,Industry +441302,Industry,Industry +441300,Industry,Industry +439888,Industry,Industry +398006,International Trade,International Trade +398005,International Trade,International Trade +401146,International Trade,International Trade +401144,International Trade,International Trade +399313,International Trade,International Trade +399309,International Trade,International Trade +399307,International Trade,International Trade +399305,International Trade,International Trade +398271,International Trade,International Trade +398270,International Trade,International Trade +398267,International Trade,International Trade +398264,International Trade,International Trade +398263,International Trade,International Trade +398191,International Trade,International Trade +399894,Employment and Training,Employment and Training +423765,Employment and Training,Employment and Training +412204,Employment and Training,Employment and Training +412203,Employment and Training,Employment and Training +412200,Employment and Training,Employment and Training +409876,Employment and Training,Employment and Training +406517,Employment and Training,Employment and Training +406514,Employment and Training,Employment and Training +402695,Employment and Training,Employment and Training +402695,Immigration,Immigration +402692,Immigration,Immigration +423765,Immigration,Immigration +412204,Immigration,Immigration +412203,Immigration,Immigration +412200,Immigration,Immigration +409876,Immigration,Immigration +406517,Immigration,Immigration +402692,Infrastructure,Infrastructure +399894,Infrastructure,Infrastructure +406517,Infrastructure,Infrastructure +406514,Infrastructure,Infrastructure +402692,Labour,Labour +399894,Labour,Labour +423765,Labour,Labour +412204,Labour,Labour +412203,Labour,Labour +412200,Labour,Labour +409876,Labour,Labour +406517,Labour,Labour +406514,Labour,Labour +398665,Financial Institutions,Financial Institutions +398664,Financial Institutions,Financial Institutions +398669,Financial Institutions,Financial Institutions +398665,Economic Development,Economic Development +398664,Economic Development,Economic Development +398669,Economic Development,Economic Development +398665,Infrastructure,Infrastructure +398664,Infrastructure,Infrastructure +398669,Infrastructure,Infrastructure +398006,Infrastructure,Infrastructure +398005,Infrastructure,Infrastructure +441302,Infrastructure,Infrastructure +441300,Infrastructure,Infrastructure +439888,Infrastructure,Infrastructure +414068,Infrastructure,Infrastructure +401146,Infrastructure,Infrastructure +401144,Infrastructure,Infrastructure +399703,Infrastructure,Infrastructure +399313,Infrastructure,Infrastructure +399309,Infrastructure,Infrastructure +399307,Infrastructure,Infrastructure +399305,Infrastructure,Infrastructure +398271,Infrastructure,Infrastructure +398270,Infrastructure,Infrastructure +398267,Infrastructure,Infrastructure +398264,Infrastructure,Infrastructure +398263,Infrastructure,Infrastructure +398191,Infrastructure,Infrastructure +398006,Regional Development,Regional Development +398005,Regional Development,Regional Development +401146,Regional Development,Regional Development +401144,Regional Development,Regional Development +399313,Regional Development,Regional Development +399309,Regional Development,Regional Development +399307,Regional Development,Regional Development +399305,Regional Development,Regional Development +398271,Regional Development,Regional Development +398270,Regional Development,Regional Development +398267,Regional Development,Regional Development +398264,Regional Development,Regional Development +398263,Regional Development,Regional Development +398191,Regional Development,Regional Development +398006,Taxation and Finance,Taxation and Finance +398005,Taxation and Finance,Taxation and Finance +401146,Taxation and Finance,Taxation and Finance +401144,Taxation and Finance,Taxation and Finance +399703,Taxation and Finance,Taxation and Finance +399313,Taxation and Finance,Taxation and Finance +399309,Taxation and Finance,Taxation and Finance +399307,Taxation and Finance,Taxation and Finance +399305,Taxation and Finance,Taxation and Finance +398271,Taxation and Finance,Taxation and Finance +398270,Taxation and Finance,Taxation and Finance +398267,Taxation and Finance,Taxation and Finance +398264,Taxation and Finance,Taxation and Finance +398263,Taxation and Finance,Taxation and Finance +398191,Taxation and Finance,Taxation and Finance +398006,Transportation,Transportation +398005,Transportation,Transportation +456423,Transportation,Transportation +441302,Transportation,Transportation +441300,Transportation,Transportation +401146,Transportation,Transportation +401144,Transportation,Transportation +399313,Transportation,Transportation +399309,Transportation,Transportation +399307,Transportation,Transportation +399305,Transportation,Transportation +398271,Transportation,Transportation +398270,Transportation,Transportation +398267,Transportation,Transportation +398264,Transportation,Transportation +398263,Transportation,Transportation +398191,Transportation,Transportation +397598,Economic Development,Développement économique +397596,Environment,Environnement +397596,Infrastructure,Infrastructure +399646,Labour,Labour +399645,Labour,Labour +399664,Labour,Labour +399661,Labour,Labour +399659,Labour,Labour +399658,Labour,Labour +399649,Labour,Labour +399648,Labour,Labour +397607,Employment and Training,Employment and Training +406857,Government Procurement,Government Procurement +403260,Government Procurement,Government Procurement +403259,Government Procurement,Government Procurement +403256,Government Procurement,Government Procurement +397608,Government Procurement,Government Procurement +397605,Infrastructure,Infrastructure +397604,Infrastructure,Infrastructure +406858,Infrastructure,Infrastructure +403267,Infrastructure,Infrastructure +403259,Infrastructure,Infrastructure +403256,Infrastructure,Infrastructure +397608,Infrastructure,Infrastructure +397607,Infrastructure,Infrastructure +403267,Regional Development,Regional Development +397608,Regional Development,Regional Development +418477,Transportation,Transportation +415709,Transportation,Transportation +415707,Transportation,Transportation +415703,Transportation,Transportation +406858,Transportation,Transportation +403259,Transportation,Transportation +403256,Transportation,Transportation +397608,Transportation,Transportation +397607,Transportation,Transportation +397606,Transportation,Transportation +397605,Transportation,Transportation +402044,Agriculture,Agriculture +402031,Agriculture,Agriculture +402050,Agriculture,Agriculture +402044,Economic Development,Economic Development +402031,Economic Development,Economic Development +402050,Economic Development,Economic Development +402031,Environment,Environment +402044,Health,Health +402044,Small Business,Small Business +402031,Small Business,Small Business +402050,Small Business,Small Business +474983,Climate,Climate +474740,Climate,Climate +407780,Climate,Climate +407779,Climate,Climate +406625,Climate,Climate +403252,Climate,Climate +403251,Climate,Climate +401228,Climate,Climate +401227,Climate,Climate +401226,Climate,Climate +401225,Climate,Climate +401220,Climate,Climate +399431,Climate,Climate +474739,Climate,Climate +472746,Climate,Climate +472743,Climate,Climate +471671,Climate,Climate +471670,Climate,Climate +471669,Climate,Climate +471473,Climate,Climate +471472,Climate,Climate +465600,Climate,Climate +465599,Climate,Climate +465538,Climate,Climate +465268,Climate,Climate +461746,Climate,Climate +460435,Climate,Climate +460434,Climate,Climate +459306,Climate,Climate +459305,Climate,Climate +458649,Climate,Climate +457897,Climate,Climate +457019,Climate,Climate +456611,Climate,Climate +456494,Climate,Climate +452264,Climate,Climate +448930,Climate,Climate +448929,Climate,Climate +448646,Climate,Climate +448645,Climate,Climate +448586,Climate,Climate +446923,Climate,Climate +446922,Climate,Climate +442976,Climate,Climate +442975,Climate,Climate +442974,Climate,Climate +440218,Climate,Climate +440217,Climate,Climate +440216,Climate,Climate +440215,Climate,Climate +435008,Climate,Climate +434848,Climate,Climate +433159,Climate,Climate +433158,Climate,Climate +433156,Climate,Climate +433154,Climate,Climate +433148,Climate,Climate +432133,Climate,Climate +432132,Climate,Climate +430971,Climate,Climate +430967,Climate,Climate +427741,Climate,Climate +425803,Climate,Climate +425802,Climate,Climate +425799,Climate,Climate +425797,Climate,Climate +423494,Climate,Climate +423475,Climate,Climate +419107,Climate,Climate +419104,Climate,Climate +417841,Climate,Climate +417838,Climate,Climate +415337,Climate,Climate +415332,Climate,Climate +415330,Climate,Climate +415329,Climate,Climate +412538,Climate,Climate +409505,Climate,Climate +409503,Climate,Climate +409498,Climate,Climate +542115,Climate,Climate +536349,Climate,Climate +521635,Climate,Climate +519372,Climate,Climate +507154,Climate,Climate +507151,Climate,Climate +504763,Climate,Climate +497173,Climate,Climate +494769,Climate,Climate +489419,Climate,Climate +485604,Climate,Climate +482689,Climate,Climate +480733,Climate,Climate +480732,Climate,Climate +480654,Climate,Climate +460435,Economic Development,Economic Development +442976,Economic Development,Economic Development +430971,Economic Development,Economic Development +430967,Economic Development,Economic Development +545321,Economic Development,Economic Development +542115,Economic Development,Economic Development +540690,Economic Development,Economic Development +540393,Economic Development,Economic Development +540392,Economic Development,Economic Development +519372,Economic Development,Economic Development +516065,Economic Development,Economic Development +507154,Economic Development,Economic Development +507151,Economic Development,Economic Development +482689,Economic Development,Economic Development +542115,Employment and Training,Employment and Training +540690,Employment and Training,Employment and Training +423475,Energy,Energy +419107,Energy,Energy +419104,Energy,Energy +417841,Energy,Energy +417838,Energy,Energy +415337,Energy,Energy +415332,Energy,Energy +415330,Energy,Energy +415329,Energy,Energy +412538,Energy,Energy +409505,Energy,Energy +409503,Energy,Energy +409498,Energy,Energy +401228,Energy,Energy +401227,Energy,Energy +401226,Energy,Energy +401225,Energy,Energy +401220,Energy,Energy +399431,Energy,Energy +542115,Energy,Energy +540690,Energy,Energy +540393,Energy,Energy +536349,Energy,Energy +521635,Energy,Energy +516065,Energy,Energy +507154,Energy,Energy +504763,Energy,Energy +494769,Energy,Energy +489419,Energy,Energy +485604,Energy,Energy +480654,Energy,Energy +474983,Energy,Energy +474740,Energy,Energy +474739,Energy,Energy +472746,Energy,Energy +471671,Energy,Energy +471670,Energy,Energy +471669,Energy,Energy +465600,Energy,Energy +465538,Energy,Energy +465268,Energy,Energy +461746,Energy,Energy +460435,Energy,Energy +459305,Energy,Energy +458649,Energy,Energy +457897,Energy,Energy +456611,Energy,Energy +456494,Energy,Energy +448930,Energy,Energy +448929,Energy,Energy +446923,Energy,Energy +446922,Energy,Energy +442976,Energy,Energy +442974,Energy,Energy +440218,Energy,Energy +440217,Energy,Energy +440216,Energy,Energy +440215,Energy,Energy +435008,Energy,Energy +434848,Energy,Energy +433159,Energy,Energy +433158,Energy,Energy +433156,Energy,Energy +433154,Energy,Energy +433148,Energy,Energy +432132,Energy,Energy +430971,Energy,Energy +430967,Energy,Energy +427741,Energy,Energy +425802,Energy,Energy +425799,Energy,Energy +425797,Energy,Energy +504763,Environment,Environment +497173,Environment,Environment +494769,Environment,Environment +489419,Environment,Environment +485604,Environment,Environment +482689,Environment,Environment +480733,Environment,Environment +480732,Environment,Environment +480654,Environment,Environment +479229,Environment,Environment +476615,Environment,Environment +474984,Environment,Environment +474983,Environment,Environment +472746,Environment,Environment +472743,Environment,Environment +471671,Environment,Environment +471670,Environment,Environment +471669,Environment,Environment +471473,Environment,Environment +471472,Environment,Environment +465600,Environment,Environment +465599,Environment,Environment +465538,Environment,Environment +465268,Environment,Environment +461746,Environment,Environment +460435,Environment,Environment +460434,Environment,Environment +459306,Environment,Environment +459305,Environment,Environment +458649,Environment,Environment +457897,Environment,Environment +457019,Environment,Environment +456611,Environment,Environment +456494,Environment,Environment +452270,Environment,Environment +452268,Environment,Environment +452264,Environment,Environment +448930,Environment,Environment +448929,Environment,Environment +448646,Environment,Environment +448645,Environment,Environment +448586,Environment,Environment +448585,Environment,Environment +446923,Environment,Environment +446922,Environment,Environment +442975,Environment,Environment +442974,Environment,Environment +440218,Environment,Environment +440217,Environment,Environment +440216,Environment,Environment +440215,Environment,Environment +435008,Environment,Environment +434848,Environment,Environment +433159,Environment,Environment +433158,Environment,Environment +433156,Environment,Environment +433154,Environment,Environment +433148,Environment,Environment +432133,Environment,Environment +432132,Environment,Environment +430971,Environment,Environment +430967,Environment,Environment +427741,Environment,Environment +425803,Environment,Environment +425802,Environment,Environment +425799,Environment,Environment +425797,Environment,Environment +423494,Environment,Environment +423475,Environment,Environment +419107,Environment,Environment +419104,Environment,Environment +417841,Environment,Environment +417838,Environment,Environment +415337,Environment,Environment +415332,Environment,Environment +415330,Environment,Environment +415329,Environment,Environment +412538,Environment,Environment +409505,Environment,Environment +409503,Environment,Environment +409498,Environment,Environment +407780,Environment,Environment +407779,Environment,Environment +406625,Environment,Environment +403252,Environment,Environment +403251,Environment,Environment +401228,Environment,Environment +401227,Environment,Environment +401226,Environment,Environment +401225,Environment,Environment +401220,Environment,Environment +399431,Environment,Environment +542115,Environment,Environment +540690,Environment,Environment +536349,Environment,Environment +521635,Environment,Environment +519372,Environment,Environment +516065,Environment,Environment +507154,Environment,Environment +519372,Industry,Industry +516065,Industry,Industry +430971,Industry,Industry +430967,Industry,Industry +419107,Industry,Industry +419104,Industry,Industry +507154,Industry,Industry +507151,Industry,Industry +504763,Industry,Industry +494769,Industry,Industry +482689,Industry,Industry +474984,Industry,Industry +472746,Industry,Industry +471473,Industry,Industry +471472,Industry,Industry +465600,Industry,Industry +465599,Industry,Industry +461746,Industry,Industry +459305,Industry,Industry +448930,Industry,Industry +448929,Industry,Industry +448585,Industry,Industry +442976,Industry,Industry +542115,Industry,Industry +540690,Industry,Industry +540393,Industry,Industry +542115,Infrastructure,Infrastructure +536349,Infrastructure,Infrastructure +442976,Infrastructure,Infrastructure +442975,Infrastructure,Infrastructure +435008,Infrastructure,Infrastructure +434848,Infrastructure,Infrastructure +433159,Infrastructure,Infrastructure +433158,Infrastructure,Infrastructure +433156,Infrastructure,Infrastructure +433154,Infrastructure,Infrastructure +433148,Infrastructure,Infrastructure +432132,Infrastructure,Infrastructure +430971,Infrastructure,Infrastructure +430967,Infrastructure,Infrastructure +427741,Infrastructure,Infrastructure +425802,Infrastructure,Infrastructure +425799,Infrastructure,Infrastructure +425797,Infrastructure,Infrastructure +419107,Infrastructure,Infrastructure +419104,Infrastructure,Infrastructure +417841,Infrastructure,Infrastructure +417838,Infrastructure,Infrastructure +415337,Infrastructure,Infrastructure +415332,Infrastructure,Infrastructure +415330,Infrastructure,Infrastructure +415329,Infrastructure,Infrastructure +412538,Infrastructure,Infrastructure +409505,Infrastructure,Infrastructure +409503,Infrastructure,Infrastructure +409498,Infrastructure,Infrastructure +403252,Infrastructure,Infrastructure +403251,Infrastructure,Infrastructure +401228,Infrastructure,Infrastructure +401227,Infrastructure,Infrastructure +401226,Infrastructure,Infrastructure +401225,Infrastructure,Infrastructure +401220,Infrastructure,Infrastructure +521635,Infrastructure,Infrastructure +519372,Infrastructure,Infrastructure +516065,Infrastructure,Infrastructure +507154,Infrastructure,Infrastructure +507151,Infrastructure,Infrastructure +504763,Infrastructure,Infrastructure +494769,Infrastructure,Infrastructure +489419,Infrastructure,Infrastructure +479229,Infrastructure,Infrastructure +474983,Infrastructure,Infrastructure +472746,Infrastructure,Infrastructure +471671,Infrastructure,Infrastructure +471670,Infrastructure,Infrastructure +471669,Infrastructure,Infrastructure +465600,Infrastructure,Infrastructure +465538,Infrastructure,Infrastructure +465268,Infrastructure,Infrastructure +460435,Infrastructure,Infrastructure +460434,Infrastructure,Infrastructure +459306,Infrastructure,Infrastructure +459305,Infrastructure,Infrastructure +458649,Infrastructure,Infrastructure +457897,Infrastructure,Infrastructure +457019,Infrastructure,Infrastructure +456611,Infrastructure,Infrastructure +456494,Infrastructure,Infrastructure +448930,Infrastructure,Infrastructure +446923,Infrastructure,Infrastructure +446923,Transportation,Transportation +446922,Transportation,Transportation +401220,Transportation,Transportation +399431,Transportation,Transportation +442976,Transportation,Transportation +442975,Transportation,Transportation +442974,Transportation,Transportation +440218,Transportation,Transportation +440217,Transportation,Transportation +440216,Transportation,Transportation +440215,Transportation,Transportation +435008,Transportation,Transportation +434848,Transportation,Transportation +433159,Transportation,Transportation +433158,Transportation,Transportation +433156,Transportation,Transportation +433154,Transportation,Transportation +433148,Transportation,Transportation +432133,Transportation,Transportation +432132,Transportation,Transportation +430971,Transportation,Transportation +430967,Transportation,Transportation +427741,Transportation,Transportation +425803,Transportation,Transportation +425802,Transportation,Transportation +425799,Transportation,Transportation +425797,Transportation,Transportation +423494,Transportation,Transportation +423475,Transportation,Transportation +419107,Transportation,Transportation +419104,Transportation,Transportation +417841,Transportation,Transportation +417838,Transportation,Transportation +415337,Transportation,Transportation +415332,Transportation,Transportation +415330,Transportation,Transportation +415329,Transportation,Transportation +412538,Transportation,Transportation +409505,Transportation,Transportation +409503,Transportation,Transportation +409498,Transportation,Transportation +407780,Transportation,Transportation +407779,Transportation,Transportation +406625,Transportation,Transportation +403252,Transportation,Transportation +403251,Transportation,Transportation +401228,Transportation,Transportation +401227,Transportation,Transportation +401226,Transportation,Transportation +401225,Transportation,Transportation +545321,Transportation,Transportation +542115,Transportation,Transportation +524568,Transportation,Transportation +521635,Transportation,Transportation +519372,Transportation,Transportation +516065,Transportation,Transportation +507154,Transportation,Transportation +507151,Transportation,Transportation +504763,Transportation,Transportation +497173,Transportation,Transportation +494769,Transportation,Transportation +489419,Transportation,Transportation +485604,Transportation,Transportation +482689,Transportation,Transportation +480733,Transportation,Transportation +480732,Transportation,Transportation +480654,Transportation,Transportation +479229,Transportation,Transportation +476615,Transportation,Transportation +474984,Transportation,Transportation +474983,Transportation,Transportation +474740,Transportation,Transportation +474739,Transportation,Transportation +472746,Transportation,Transportation +472743,Transportation,Transportation +471671,Transportation,Transportation +471670,Transportation,Transportation +471669,Transportation,Transportation +471473,Transportation,Transportation +471472,Transportation,Transportation +465600,Transportation,Transportation +465599,Transportation,Transportation +465538,Transportation,Transportation +465268,Transportation,Transportation +461746,Transportation,Transportation +460435,Transportation,Transportation +460434,Transportation,Transportation +459306,Transportation,Transportation +459305,Transportation,Transportation +458649,Transportation,Transportation +457897,Transportation,Transportation +457019,Transportation,Transportation +456611,Transportation,Transportation +456494,Transportation,Transportation +452270,Transportation,Transportation +452268,Transportation,Transportation +452264,Transportation,Transportation +448930,Transportation,Transportation +448929,Transportation,Transportation +448646,Transportation,Transportation +448645,Transportation,Transportation +448586,Transportation,Transportation +399545,Industry,Industry +399545,Small Business,Small Business +420743,Defence,Defence +408350,Government Procurement,Government Procurement +488634,Environment,Environment +457855,Environment,Environment +402100,Environment,Environment +399510,Environment,Environment +399499,Environment,Environment +399498,Environment,Environment +536410,Environment,Environment +533333,Environment,Environment +532685,Environment,Environment +530537,Environment,Environment +527558,Environment,Environment +516873,Environment,Environment +515226,Environment,Environment +506602,Environment,Environment +504162,Environment,Environment +503581,Environment,Environment +503422,Environment,Environment +503227,Environment,Environment +496474,Environment,Environment +397769,Agriculture,Agriculture +397766,Agriculture,Agriculture +448734,Taxation and Finance,Taxation and Finance +448732,Taxation and Finance,Taxation and Finance +399805,Taxation and Finance,Taxation and Finance +398073,Taxation and Finance,Taxation and Finance +398072,Taxation and Finance,Taxation and Finance +398071,Taxation and Finance,Taxation and Finance +465839,Taxation and Finance,Taxation and Finance +465838,Taxation and Finance,Taxation and Finance +465837,Taxation and Finance,Taxation and Finance +465836,Taxation and Finance,Taxation and Finance +465835,Taxation and Finance,Taxation and Finance +465232,Taxation and Finance,Taxation and Finance +465231,Taxation and Finance,Taxation and Finance +465229,Taxation and Finance,Taxation and Finance +462006,Taxation and Finance,Taxation and Finance +456964,Taxation and Finance,Taxation and Finance +456963,Taxation and Finance,Taxation and Finance +408108,Agriculture,Agriculture +403765,Agriculture,Agriculture +441065,Agriculture,Agriculture +441064,Agriculture,Agriculture +441063,Agriculture,Agriculture +420790,Agriculture,Agriculture +420789,Agriculture,Agriculture +417389,Agriculture,Agriculture +414250,Agriculture,Agriculture +414249,Agriculture,Agriculture +414247,Agriculture,Agriculture +411336,Agriculture,Agriculture +408562,Agriculture,Agriculture +408559,Agriculture,Agriculture +408558,Agriculture,Agriculture +408120,Agriculture,Agriculture +441064,International Trade,International Trade +441063,International Trade,International Trade +420792,International Trade,International Trade +420791,International Trade,International Trade +420790,International Trade,International Trade +420789,International Trade,International Trade +417389,International Trade,International Trade +414253,International Trade,International Trade +414252,International Trade,International Trade +414251,International Trade,International Trade +414250,International Trade,International Trade +414249,International Trade,International Trade +414248,International Trade,International Trade +414247,International Trade,International Trade +411336,International Trade,International Trade +408562,International Trade,International Trade +408561,International Trade,International Trade +408560,International Trade,International Trade +408559,International Trade,International Trade +408558,International Trade,International Trade +408556,International Trade,International Trade +408119,International Trade,International Trade +408108,International Trade,International Trade +407381,International Trade,International Trade +405920,International Trade,International Trade +405919,International Trade,International Trade +405918,International Trade,International Trade +404283,International Trade,International Trade +403771,International Trade,International Trade +403768,International Trade,International Trade +403765,International Trade,International Trade +445200,International Trade,International Trade +445194,International Trade,International Trade +409781,Agriculture,Agriculture +400633,Labour,Labour +397742,Climate,Climate +397741,Climate,Climate +399242,Climate,Climate +399238,Industry,Industry +397756,Economic Development,Economic Development +397754,Economic Development,Economic Development +422811,Economic Development,Economic Development +422810,Economic Development,Economic Development +418705,Economic Development,Economic Development +417334,Economic Development,Economic Development +414937,Economic Development,Economic Development +414936,Economic Development,Economic Development +414317,Economic Development,Economic Development +414315,Economic Development,Economic Development +414314,Economic Development,Economic Development +414313,Economic Development,Economic Development +410470,Economic Development,Economic Development +410469,Economic Development,Economic Development +410468,Economic Development,Economic Development +410467,Economic Development,Economic Development +404315,Economic Development,Economic Development +404313,Economic Development,Economic Development +404311,Economic Development,Economic Development +400799,Economic Development,Economic Development +400797,Economic Development,Economic Development +400789,Economic Development,Economic Development +400786,Economic Development,Economic Development +400785,Economic Development,Economic Development +400780,Economic Development,Economic Development +400776,Economic Development,Economic Development +400775,Economic Development,Economic Development +399375,Economic Development,Economic Development +399129,Economic Development,Economic Development +398856,Economic Development,Economic Development +398853,Economic Development,Economic Development +397759,Economic Development,Economic Development +397758,Economic Development,Economic Development +410468,Industry,Industry +410467,Industry,Industry +404315,Industry,Industry +404313,Industry,Industry +404311,Industry,Industry +400799,Industry,Industry +400797,Industry,Industry +400789,Industry,Industry +400786,Industry,Industry +400785,Industry,Industry +400780,Industry,Industry +400776,Industry,Industry +400775,Industry,Industry +399375,Industry,Industry +399129,Industry,Industry +398856,Industry,Industry +398853,Industry,Industry +397759,Industry,Industry +397758,Industry,Industry +397757,Industry,Industry +397756,Industry,Industry +397754,Industry,Industry +422811,Industry,Industry +422810,Industry,Industry +418705,Industry,Industry +417334,Industry,Industry +414937,Industry,Industry +414936,Industry,Industry +414317,Industry,Industry +414315,Industry,Industry +414314,Industry,Industry +414313,Industry,Industry +410470,Industry,Industry +397756,Small Business,Small Business +397754,Small Business,Small Business +422811,Small Business,Small Business +422810,Small Business,Small Business +418705,Small Business,Small Business +417334,Small Business,Small Business +410470,Small Business,Small Business +410469,Small Business,Small Business +410468,Small Business,Small Business +399375,Small Business,Small Business +399129,Small Business,Small Business +398856,Small Business,Small Business +398853,Small Business,Small Business +397759,Small Business,Small Business +397758,Small Business,Small Business +398697,International Development,International Development +397763,International Development,International Development +398701,International Development,International Development +398700,International Development,International Development +401482,Health,Health +401482,Research and Development,Research and Development +397804,Budget,Budget +397793,Employment and Training,Employment and Training +397792,Employment and Training,Employment and Training +407077,Employment and Training,Employment and Training +404909,Employment and Training,Employment and Training +397813,Employment and Training,Employment and Training +397799,Employment and Training,Employment and Training +397798,Employment and Training,Employment and Training +397797,Employment and Training,Employment and Training +397796,Employment and Training,Employment and Training +397795,Employment and Training,Employment and Training +419419,Taxation and Finance,Taxation and Finance +418729,Taxation and Finance,Taxation and Finance +414170,Taxation and Finance,Taxation and Finance +408416,Taxation and Finance,Taxation and Finance +408415,Taxation and Finance,Taxation and Finance +405951,Taxation and Finance,Taxation and Finance +397822,Taxation and Finance,Taxation and Finance +514924,Taxation and Finance,Taxation and Finance +497808,Taxation and Finance,Taxation and Finance +489027,Taxation and Finance,Taxation and Finance +488321,Taxation and Finance,Taxation and Finance +480527,Taxation and Finance,Taxation and Finance +463156,Taxation and Finance,Taxation and Finance +461107,Taxation and Finance,Taxation and Finance +456424,Taxation and Finance,Taxation and Finance +446325,Taxation and Finance,Taxation and Finance +446190,Taxation and Finance,Taxation and Finance +440919,Taxation and Finance,Taxation and Finance +440297,Taxation and Finance,Taxation and Finance +440168,Taxation and Finance,Taxation and Finance +440167,Taxation and Finance,Taxation and Finance +440166,Taxation and Finance,Taxation and Finance +437609,Taxation and Finance,Taxation and Finance +436264,Taxation and Finance,Taxation and Finance +434130,Taxation and Finance,Taxation and Finance +430207,Taxation and Finance,Taxation and Finance +427354,Taxation and Finance,Taxation and Finance +425109,Taxation and Finance,Taxation and Finance +424639,Taxation and Finance,Taxation and Finance +424230,Taxation and Finance,Taxation and Finance +415253,Constitutional Issues,Constitutional Issues +415252,Constitutional Issues,Constitutional Issues +411035,Constitutional Issues,Constitutional Issues +408821,Constitutional Issues,Constitutional Issues +408745,Constitutional Issues,Constitutional Issues +408744,Constitutional Issues,Constitutional Issues +406163,Constitutional Issues,Constitutional Issues +404902,Constitutional Issues,Constitutional Issues +404901,Constitutional Issues,Constitutional Issues +404465,Constitutional Issues,Constitutional Issues +404464,Constitutional Issues,Constitutional Issues +401607,Constitutional Issues,Constitutional Issues +401606,Constitutional Issues,Constitutional Issues +401605,Constitutional Issues,Constitutional Issues +401604,Constitutional Issues,Constitutional Issues +401603,Constitutional Issues,Constitutional Issues +401602,Constitutional Issues,Constitutional Issues +401233,Constitutional Issues,Constitutional Issues +401232,Constitutional Issues,Constitutional Issues +401231,Constitutional Issues,Constitutional Issues +542283,Constitutional Issues,Constitutional Issues +542282,Constitutional Issues,Constitutional Issues +542281,Constitutional Issues,Constitutional Issues +532420,Constitutional Issues,Constitutional Issues +532419,Constitutional Issues,Constitutional Issues +516446,Constitutional Issues,Constitutional Issues +516445,Constitutional Issues,Constitutional Issues +506391,Constitutional Issues,Constitutional Issues +506390,Constitutional Issues,Constitutional Issues +496384,Constitutional Issues,Constitutional Issues +496382,Constitutional Issues,Constitutional Issues +496379,Constitutional Issues,Constitutional Issues +493929,Constitutional Issues,Constitutional Issues +493928,Constitutional Issues,Constitutional Issues +485651,Constitutional Issues,Constitutional Issues +482907,Constitutional Issues,Constitutional Issues +475209,Constitutional Issues,Constitutional Issues +472762,Constitutional Issues,Constitutional Issues +462110,Constitutional Issues,Constitutional Issues +460282,Constitutional Issues,Constitutional Issues +459813,Constitutional Issues,Constitutional Issues +459812,Constitutional Issues,Constitutional Issues +456853,Constitutional Issues,Constitutional Issues +453089,Constitutional Issues,Constitutional Issues +450712,Constitutional Issues,Constitutional Issues +446498,Constitutional Issues,Constitutional Issues +446497,Constitutional Issues,Constitutional Issues +444583,Constitutional Issues,Constitutional Issues +444576,Constitutional Issues,Constitutional Issues +440556,Constitutional Issues,Constitutional Issues +439855,Constitutional Issues,Constitutional Issues +439854,Constitutional Issues,Constitutional Issues +436505,Constitutional Issues,Constitutional Issues +436496,Constitutional Issues,Constitutional Issues +436495,Constitutional Issues,Constitutional Issues +436494,Constitutional Issues,Constitutional Issues +429023,Constitutional Issues,Constitutional Issues +429021,Constitutional Issues,Constitutional Issues +424775,Constitutional Issues,Constitutional Issues +424553,Constitutional Issues,Constitutional Issues +422956,Constitutional Issues,Constitutional Issues +422947,Constitutional Issues,Constitutional Issues +422881,Constitutional Issues,Constitutional Issues +422830,Constitutional Issues,Constitutional Issues +422829,Constitutional Issues,Constitutional Issues +422828,Constitutional Issues,Constitutional Issues +422827,Constitutional Issues,Constitutional Issues +422826,Constitutional Issues,Constitutional Issues +419498,Constitutional Issues,Constitutional Issues +419497,Constitutional Issues,Constitutional Issues +419496,Constitutional Issues,Constitutional Issues +418564,Constitutional Issues,Constitutional Issues +418352,Constitutional Issues,Constitutional Issues +417309,Constitutional Issues,Constitutional Issues +399363,Privacy and Access to Information,Privacy and Access to Information +399360,Privacy and Access to Information,Privacy and Access to Information +450712,Privacy and Access to Information,Privacy and Access to Information +446497,Privacy and Access to Information,Privacy and Access to Information +444576,Privacy and Access to Information,Privacy and Access to Information +440556,Privacy and Access to Information,Privacy and Access to Information +439855,Privacy and Access to Information,Privacy and Access to Information +439854,Privacy and Access to Information,Privacy and Access to Information +436496,Privacy and Access to Information,Privacy and Access to Information +436495,Privacy and Access to Information,Privacy and Access to Information +436494,Privacy and Access to Information,Privacy and Access to Information +429023,Privacy and Access to Information,Privacy and Access to Information +429021,Privacy and Access to Information,Privacy and Access to Information +424775,Privacy and Access to Information,Privacy and Access to Information +424553,Privacy and Access to Information,Privacy and Access to Information +422947,Privacy and Access to Information,Privacy and Access to Information +422881,Privacy and Access to Information,Privacy and Access to Information +422829,Privacy and Access to Information,Privacy and Access to Information +422828,Privacy and Access to Information,Privacy and Access to Information +422827,Privacy and Access to Information,Privacy and Access to Information +422826,Privacy and Access to Information,Privacy and Access to Information +418352,Privacy and Access to Information,Privacy and Access to Information +417309,Privacy and Access to Information,Privacy and Access to Information +415268,Privacy and Access to Information,Privacy and Access to Information +415253,Privacy and Access to Information,Privacy and Access to Information +415252,Privacy and Access to Information,Privacy and Access to Information +411035,Privacy and Access to Information,Privacy and Access to Information +408745,Privacy and Access to Information,Privacy and Access to Information +408744,Privacy and Access to Information,Privacy and Access to Information +406163,Privacy and Access to Information,Privacy and Access to Information +404902,Privacy and Access to Information,Privacy and Access to Information +404465,Privacy and Access to Information,Privacy and Access to Information +404464,Privacy and Access to Information,Privacy and Access to Information +401607,Privacy and Access to Information,Privacy and Access to Information +401606,Privacy and Access to Information,Privacy and Access to Information +401605,Privacy and Access to Information,Privacy and Access to Information +401604,Privacy and Access to Information,Privacy and Access to Information +401603,Privacy and Access to Information,Privacy and Access to Information +401602,Privacy and Access to Information,Privacy and Access to Information +401232,Privacy and Access to Information,Privacy and Access to Information +401231,Privacy and Access to Information,Privacy and Access to Information +506391,Security,Security +506390,Security,Security +482907,Security,Security +460282,Security,Security +459813,Security,Security +459812,Security,Security +457842,Security,Security +456853,Security,Security +453089,Security,Security +450712,Security,Security +535894,Environment,Environment +514827,Fisheries,Fisheries +401744,Defence,Defence +396185,Economic Development,Economic Development +396185,Fisheries,Fisheries +396185,Health,Health +406548,Research and Development,Research and Development +421061,Budget,Budget +421590,Budget,Budget +396213,Budget,Budget +396215,Budget,Budget +421453,Budget,Budget +499355,Budget,Budget +396221,Budget,Budget +396223,Budget,Budget +411507,Climate,Climate +411507,Energy,Energy +396229,Budget,Budget +396229,Economic Development,Economic Development +396258,Environment,Environment +396258,Regional Development,Regional Development +421055,Budget,Budget +446846,Budget,Budget +421407,Budget,Budget +421397,Budget,Budget +396253,Budget,Budget +396255,Budget,Budget +396257,Budget,Budget +521761,Justice and Law Enforcement,Justice and Law Enforcement +396282,Climate,Climate +409775,International Trade,International Trade +396186,Small Business,Small Business +468016,International Trade,International Trade +405742,Privacy and Access to Information,Privacy and Access to Information +396341,Health,Health +406371,Tourism,Tourism +396557,Industry,Industry +400186,Infrastructure,Infrastructure +396566,Budget,Budget +400186,Economic Development,Economic Development +399468,Economic Development,Economic Development +399467,Energy,Energy +399467,Environment,Environment +399467,International Trade,International Trade +397353,Regional Development,Regional Development +399467,Transportation,Transportation +396640,Justice and Law Enforcement,Justice and Law Enforcement +400737,Environment,Environment +420265,Education,Education +446870,Budget,Budget +396781,Environment,Environment +396781,Fisheries,Fisheries +396787,Environment,Environment +397677,Environment,Environment +421020,Budget,Budget +396819,Budget,Budget +446836,Budget,Budget +420519,Agriculture,Agriculture +446447,International Trade,International Trade +396839,Budget,Budget +446868,Budget,Budget +396857,Security,Security +396865,Defence,Defence +396872,Budget,Budget +446861,Budget,Budget +421039,Budget,Budget +421595,Budget,Budget +396917,Budget,Budget +446875,Budget,Budget +396935,Budget,Budget +421596,Budget,Budget +399096,Consumer Issues,Consumer Issues +449505,Budget,Budget +421550,Budget,Budget +446790,Budget,Budget +421060,Budget,Budget +396963,Budget,Budget +421062,Budget,Budget +396983,Budget,Budget +396984,Budget,Budget +396988,Budget,Budget +446860,Budget,Budget +420868,Budget,Budget +446843,Budget,Budget +421032,Budget,Budget +446863,Budget,Budget +446825,Budget,Budget +397000,Budget,Budget +397001,Budget,Budget +421408,Budget,Budget +397005,Budget,Budget +421029,Budget,Budget +408862,Immigration,Immigration +397011,Budget,Budget +499382,Budget,Budget +397020,Budget,Budget +446835,Budget,Budget +397028,Budget,Budget +397032,Budget,Budget +397034,Budget,Budget +420898,Budget,Budget +397058,Budget,Budget +421402,Budget,Budget +446878,Budget,Budget +446797,Budget,Budget +492249,Budget,Budget +397067,Budget,Budget +397068,Budget,Budget +422056,Budget,Budget +397070,Budget,Budget +421555,Budget,Budget +446838,Budget,Budget +446787,Budget,Budget +397076,Budget,Budget +446808,Budget,Budget +421419,Budget,Budget +421058,Budget,Budget +421438,Budget,Budget +420901,Budget,Budget +397102,Research and Development,Research and Development +421025,Budget,Budget +421043,Budget,Budget +446849,Budget,Budget +397109,Budget,Budget +397110,Budget,Budget +421587,Budget,Budget +397112,Budget,Budget +420874,Budget,Budget +420899,Budget,Budget +446852,Budget,Budget +397123,Budget,Budget +397124,Budget,Budget +397136,Agriculture,Agriculture +401862,Economic Development,Economic Development +401863,Regional Development,Regional Development +407007,Economic Development,Développement économique +398523,Energy,Énergie +407174,Infrastructure,Infrastructure +400077,Municipalities,Municipalités +398523,Labour,Travail +402707,Government Procurement,Government Procurement +483477,Industry,Industry +399633,Budget,Budget +397212,Budget,Budget +397212,Consumer Issues,Consumer Issues +397212,Justice and Law Enforcement,Justice and Law Enforcement +397212,Research and Development,Research and Development +457702,Labour,Labour +502243,Infrastructure,Infrastructure +498952,Employment and Training,Employment and Training +512925,Industry,Industry +502243,Climate,Climate +399379,Climate,Climat +429671,Transportation,Transportation +402154,Energy,Energy +402154,Environment,Environment +402154,Health,Health +402153,Regional Development,Regional Development +401112,International Relations,International Relations +401112,International Trade,International Trade +403400,Environment,Environment +403379,Health,Health +403400,Regional Development,Regional Development +400868,Transportation,Transportation +397253,International Trade,International Trade +409254,Health,Health +401732,Economic Development,Economic Development +401732,Environment,Environment +401732,Industry,Industry +401695,International Trade,International Trade +401732,Regional Development,Regional Development +440314,Intellectual Property,Intellectual Property +404332,Regional Development,Regional Development +404332,Economic Development,Economic Development +404332,Industry,Industry +402284,Education,Education +400586,Climate,Climate +400586,Energy,Energy +405978,Defence,Defence +397287,Infrastructure,Infrastructure +425668,Research and Development,Research and Development +399780,Agriculture,Agriculture +402894,Economic Development,Economic Development +397595,Industry,Industry +402891,International Trade,International Trade +403115,International Relations,International Relations +401116,International Trade,International Trade +401123,International Relations,International Relations +401123,International Trade,International Trade +473436,Economic Development,Economic Development +473448,Health,Health +415363,Research and Development,Research and Development +399379,International Trade,Commerce international +399379,International Development,Développement international +399379,Environment,Environnement +399379,Forestry,Foresterie +399381,Research and Development,Recherche et développement +419311,International Trade,International Trade +399220,Economic Development,Economic Development +399220,Employment and Training,Employment and Training +404299,Environment,Environment +404299,Health,Health +397325,Consumer Issues,Consumer Issues +399478,Agriculture,Agriculture +397336,Immigration,Immigration +397336,Employment and Training,Employment and Training +398455,Government Procurement,Marchés publics +414376,Transportation,Transportation +401128,International Relations,International Relations +401128,International Trade,International Trade +397395,International Development,International Development +397681,Education,Education +397681,Research and Development,Research and Development +430517,Industry,Industry +399662,Housing,Housing +402244,Forestry,Forestry +508493,Defence,Defence +399627,Budget,Budget +399627,Economic Development,Economic Development +407508,Health,Health +402782,Justice and Law Enforcement,Justice and Law Enforcement +397567,Taxation and Finance,Taxation and Finance +430102,Economic Development,Economic Development +420929,Intellectual Property,Intellectual Property +432810,Research and Development,Research and Development +412117,Agriculture,Agriculture +427986,Consumer Issues,Consumer Issues +524413,Economic Development,Economic Development +427979,International Trade,International Trade +397695,Research and Development,Research and Development +398190,Defence,Defence +399305,Economic Development,Economic Development +399309,Environment,Environment +398190,Financial Institutions,Financial Institutions +441300,Government Procurement,Government Procurement +414068,Industry,Industry +398190,International Trade,International Trade +399894,Economic Development,Economic Development +402692,Employment and Training,Employment and Training +406514,Immigration,Immigration +402695,Infrastructure,Infrastructure +402695,Labour,Labour +397561,Economic Development,Economic Development +399156,Environment,Environment +399156,Tourism,Tourism +398668,Financial Institutions,Financial Institutions +398668,Economic Development,Economic Development +398668,Infrastructure,Infrastructure +398190,Infrastructure,Infrastructure +398190,Regional Development,Regional Development +398190,Taxation and Finance,Taxation and Finance +398190,Transportation,Transportation +397596,Economic Development,Développement économique +397598,Environment,Environnement +397598,Infrastructure,Infrastructure +399647,Labour,Labour +397608,Employment and Training,Employment and Training +406858,Government Procurement,Government Procurement +397606,Infrastructure,Infrastructure +406858,Regional Development,Regional Development +397604,Transportation,Transportation +402046,Agriculture,Agriculture +402046,Economic Development,Economic Development +402050,Environment,Environment +402046,Health,Health +398378,Industry,Industry +401972,International Trade,International Trade +402046,Small Business,Small Business +427619,Climate,Climate +427619,Economic Development,Economic Development +427619,Energy,Energy +427619,Environment,Environment +427619,Internal Trade,Internal Trade +427619,International Trade,International Trade +474984,Climate,Climate +461746,Economic Development,Economic Development +472746,Employment and Training,Employment and Training +423494,Energy,Energy +507151,Environment,Environment +540392,Industry,Industry +446922,Infrastructure,Infrastructure +448585,Transportation,Transportation +399546,Industry,Industry +399546,Research and Development,Research and Development +399546,Small Business,Small Business +408350,Defence,Defence +420743,Government Procurement,Government Procurement +408350,Security,Security +432091,Economic Development,Economic Development +495267,Environment,Environment +399495,Budget,Budget +399495,Education,Education +397770,Agriculture,Agriculture +451051,Taxation and Finance,Taxation and Finance +408119,Agriculture,Agriculture +441065,International Trade,International Trade +400436,Agriculture,Agriculture +397719,Fisheries,Fisheries +397727,Infrastructure,Infrastructure +400630,Labour,Labour +399238,Climate,Climate +399243,Industry,Industry +399238,Taxation and Finance,Taxation and Finance +397757,Economic Development,Economic Development +410469,Industry,Industry +397757,Small Business,Small Business +398699,International Development,International Development +397762,International Development,International Development +401484,Health,Health +401483,Justice and Law Enforcement,Justice and Law Enforcement +401484,Research and Development,Research and Development +398239,Budget,Budget +397794,Employment and Training,Employment and Training +422653,Taxation and Finance,Taxation and Finance +397848,Security,Security +397851,Security,Security +415268,Constitutional Issues,Constitutional Issues +399717,Privacy and Access to Information,Privacy and Access to Information +506392,Security,Security +399716,Sports,Sports +446498,Security,Security +446497,Security,Security +444583,Security,Security +440556,Security,Security +439855,Security,Security +439854,Security,Security +436505,Security,Security +436496,Security,Security +436495,Security,Security +436494,Security,Security +429023,Security,Security +429021,Security,Security +424775,Security,Security +424553,Security,Security +422956,Security,Security +422947,Security,Security +422830,Security,Security +422829,Security,Security +422826,Security,Security +419498,Security,Security +419497,Security,Security +419496,Security,Security +418564,Security,Security +418352,Security,Security +417309,Security,Security +411035,Security,Security +408821,Security,Security +408745,Security,Security +408744,Security,Security +406163,Security,Security +404465,Security,Security +404464,Security,Security +401607,Security,Security +401606,Security,Security +401605,Security,Security +401604,Security,Security +401603,Security,Security +401602,Security,Security +401233,Security,Security +401232,Security,Security +401231,Security,Security +399717,Security,Security +399716,Security,Security +398404,Security,Security +532420,Security,Security +532419,Security,Security +516445,Security,Security +514838,Security,Security +398404,Sports,Sports +456853,Sports,Sports +439855,Sports,Sports +439854,Sports,Sports +436505,Sports,Sports +436496,Sports,Sports +436495,Sports,Sports +422828,Sports,Sports +419497,Sports,Sports +408821,Sports,Sports +408745,Sports,Sports +408744,Sports,Sports +406163,Sports,Sports +404465,Sports,Sports +404464,Sports,Sports +401607,Sports,Sports +401606,Sports,Sports +401605,Sports,Sports +401604,Sports,Sports +401603,Sports,Sports +401602,Sports,Sports +401233,Sports,Sports +401232,Sports,Sports +401231,Sports,Sports +399717,Sports,Sports +468599,Security,Security +468594,Security,Security +399696,Security,Security +399675,Security,Security +397857,Security,Security +518032,Security,Security +518013,Security,Security +517985,Security,Security +517633,Security,Security +515102,Security,Security +513524,Security,Security +502269,Security,Security +475421,Security,Security +468607,Security,Security +468606,Security,Security +468605,Security,Security +468602,Security,Security +468601,Security,Security +418105,Health,Health +418103,Health,Health +544375,Infrastructure,Infrastructure +527910,Infrastructure,Infrastructure +439771,Infrastructure,Infrastructure +511805,Infrastructure,Infrastructure +511804,Infrastructure,Infrastructure +509514,Infrastructure,Infrastructure +504336,Infrastructure,Infrastructure +504334,Infrastructure,Infrastructure +504328,Infrastructure,Infrastructure +501667,Infrastructure,Infrastructure +501664,Infrastructure,Infrastructure +498498,Infrastructure,Infrastructure +498490,Infrastructure,Infrastructure +494991,Infrastructure,Infrastructure +494989,Infrastructure,Infrastructure +494987,Infrastructure,Infrastructure +493624,Infrastructure,Infrastructure +492838,Infrastructure,Infrastructure +492835,Infrastructure,Infrastructure +492276,Infrastructure,Infrastructure +492275,Infrastructure,Infrastructure +492056,Infrastructure,Infrastructure +491403,Infrastructure,Infrastructure +491391,Infrastructure,Infrastructure +491389,Infrastructure,Infrastructure +488666,Infrastructure,Infrastructure +485754,Infrastructure,Infrastructure +485752,Infrastructure,Infrastructure +485582,Infrastructure,Infrastructure +485581,Infrastructure,Infrastructure +485580,Infrastructure,Infrastructure +485578,Infrastructure,Infrastructure +485577,Infrastructure,Infrastructure +481904,Infrastructure,Infrastructure +481898,Infrastructure,Infrastructure +481897,Infrastructure,Infrastructure +478645,Infrastructure,Infrastructure +467323,Infrastructure,Infrastructure +466478,Infrastructure,Infrastructure +466476,Infrastructure,Infrastructure +466471,Infrastructure,Infrastructure +466468,Infrastructure,Infrastructure +466464,Infrastructure,Infrastructure +461064,Infrastructure,Infrastructure +436570,Budget,Budget +436569,Budget,Budget +436938,Budget,Budget +436569,Industry,Industry +436938,Industry,Industry +436571,Industry,Industry +398499,Taxation and Finance,Taxation and Finance +398439,Taxation and Finance,Taxation and Finance +411745,Taxation and Finance,Taxation and Finance +399494,Taxation and Finance,Taxation and Finance +399492,Taxation and Finance,Taxation and Finance +398894,Taxation and Finance,Taxation and Finance +469895,Industry,Industry +469893,Industry,Industry +461536,Industry,Industry +452052,Industry,Industry +447430,Industry,Industry +442338,Industry,Industry +437399,Industry,Industry +437397,Industry,Industry +494126,Industry,Industry +490305,Industry,Industry +490303,Industry,Industry +490300,Industry,Industry +469900,Industry,Industry +490305,Defence,Defence +490303,Defence,Defence +490300,Defence,Defence +469900,Defence,Defence +469897,Defence,Defence +469895,Defence,Defence +469893,Defence,Defence +461536,Defence,Defence +452052,Defence,Defence +447430,Defence,Defence +442338,Defence,Defence +437399,Defence,Defence +437397,Defence,Defence +433629,Defence,Defence +433628,Defence,Defence +417822,Defence,Defence +433629,Government Procurement,Government Procurement +433628,Government Procurement,Government Procurement +494126,Government Procurement,Government Procurement +490305,Government Procurement,Government Procurement +490303,Government Procurement,Government Procurement +490300,Government Procurement,Government Procurement +469900,Government Procurement,Government Procurement +469897,Government Procurement,Government Procurement +469895,Government Procurement,Government Procurement +469893,Government Procurement,Government Procurement +461536,Government Procurement,Government Procurement +452052,Government Procurement,Government Procurement +447430,Government Procurement,Government Procurement +442338,Government Procurement,Government Procurement +437399,Government Procurement,Government Procurement +397966,Consumer Issues,Consumer Issues +397956,Consumer Issues,Consumer Issues +399224,Economic Development,Economic Development +399223,Economic Development,Economic Development +410799,Economic Development,Economic Development +399224,Education,Education +399223,Education,Education +399224,Employment and Training,Employment and Training +399223,Employment and Training,Employment and Training +410799,Employment and Training,Employment and Training +399224,Immigration,Immigration +410799,Research and Development,Research and Development +397971,Climate,Climate +530286,Climate,Climate +452947,Climate,Climate +452928,Climate,Climate +431507,Climate,Climate +426976,Climate,Climate +410440,Climate,Climate +407399,Climate,Climate +407398,Climate,Climate +407295,Climate,Climate +407137,Climate,Climate +407136,Climate,Climate +407135,Climate,Climate +407052,Climate,Climate +407051,Climate,Climate +406602,Climate,Climate +406601,Climate,Climate +406342,Climate,Climate +406341,Climate,Climate +406340,Climate,Climate +406339,Climate,Climate +406338,Climate,Climate +406058,Climate,Climate +406057,Climate,Climate +406055,Climate,Climate +405995,Climate,Climate +405994,Climate,Climate +405993,Climate,Climate +405992,Climate,Climate +405991,Climate,Climate +405990,Climate,Climate +405989,Climate,Climate +401433,Climate,Climate +399915,Climate,Climate +399914,Climate,Climate +405993,Transportation,Transportation +405991,Transportation,Transportation +399728,Transportation,Transportation +397971,Transportation,Transportation +491439,Transportation,Transportation +471255,Transportation,Transportation +431507,Transportation,Transportation +397978,Transportation,Transportation +426976,Transportation,Transportation +406601,Transportation,Transportation +397987,Employment and Training,Employment and Training +397987,Labour,Labour +398028,International Trade,International Trade +398024,International Trade,International Trade +421296,International Trade,International Trade +421295,International Trade,International Trade +421294,International Trade,International Trade +421293,International Trade,International Trade +421292,International Trade,International Trade +421291,International Trade,International Trade +421290,International Trade,International Trade +421288,International Trade,International Trade +421287,International Trade,International Trade +421286,International Trade,International Trade +421285,International Trade,International Trade +421284,International Trade,International Trade +421283,International Trade,International Trade +421282,International Trade,International Trade +418964,International Trade,International Trade +418962,International Trade,International Trade +418961,International Trade,International Trade +418960,International Trade,International Trade +418958,International Trade,International Trade +418957,International Trade,International Trade +418956,International Trade,International Trade +418954,International Trade,International Trade +418953,International Trade,International Trade +418952,International Trade,International Trade +418951,International Trade,International Trade +418950,International Trade,International Trade +418949,International Trade,International Trade +417564,International Trade,International Trade +417563,International Trade,International Trade +417560,International Trade,International Trade +417559,International Trade,International Trade +417557,International Trade,International Trade +417556,International Trade,International Trade +417555,International Trade,International Trade +414700,International Trade,International Trade +414692,International Trade,International Trade +414691,International Trade,International Trade +414690,International Trade,International Trade +414689,International Trade,International Trade +414687,International Trade,International Trade +414686,International Trade,International Trade +414684,International Trade,International Trade +414683,International Trade,International Trade +414682,International Trade,International Trade +414681,International Trade,International Trade +414680,International Trade,International Trade +414679,International Trade,International Trade +414678,International Trade,International Trade +414677,International Trade,International Trade +414675,International Trade,International Trade +414674,International Trade,International Trade +414673,International Trade,International Trade +414672,International Trade,International Trade +414670,International Trade,International Trade +414669,International Trade,International Trade +411089,International Trade,International Trade +411088,International Trade,International Trade +411087,International Trade,International Trade +409039,International Trade,International Trade +409036,International Trade,International Trade +409033,International Trade,International Trade +409030,International Trade,International Trade +409029,International Trade,International Trade +409028,International Trade,International Trade +408090,International Trade,International Trade +407996,International Trade,International Trade +407993,International Trade,International Trade +407992,International Trade,International Trade +407991,International Trade,International Trade +407989,International Trade,International Trade +407986,International Trade,International Trade +406319,International Trade,International Trade +406312,International Trade,International Trade +406311,International Trade,International Trade +406310,International Trade,International Trade +406309,International Trade,International Trade +406307,International Trade,International Trade +406306,International Trade,International Trade +406305,International Trade,International Trade +406304,International Trade,International Trade +405079,International Trade,International Trade +402582,International Trade,International Trade +399478,International Relations,International Relations +398024,International Relations,International Relations +421290,International Relations,International Relations +417563,International Relations,International Relations +417560,International Relations,International Relations +417559,International Relations,International Relations +417556,International Relations,International Relations +414678,International Relations,International Relations +409030,International Relations,International Relations +407991,International Relations,International Relations +407989,International Relations,International Relations +406319,International Relations,International Relations +406309,International Relations,International Relations +406304,International Relations,International Relations +448732,Economic Development,Economic Development +448731,Economic Development,Economic Development +401659,Economic Development,Economic Development +399805,Economic Development,Economic Development +398072,Economic Development,Economic Development +398070,Economic Development,Economic Development +518400,Economic Development,Economic Development +518399,Economic Development,Economic Development +518397,Economic Development,Economic Development +518395,Economic Development,Economic Development +518394,Economic Development,Economic Development +518392,Economic Development,Economic Development +465839,Economic Development,Economic Development +465838,Economic Development,Economic Development +465837,Economic Development,Economic Development +465836,Economic Development,Economic Development +465835,Economic Development,Economic Development +465229,Economic Development,Economic Development +462006,Economic Development,Economic Development +456964,Economic Development,Economic Development +456963,Economic Development,Economic Development +451051,Economic Development,Economic Development +398065,International Relations,International Relations +477547,International Relations,International Relations +417283,International Relations,International Relations +417281,International Relations,International Relations +398067,International Relations,International Relations +420668,Budget,Budget +420668,Climate,Climate +420668,Forestry,Forestry +414981,Infrastructure,Infrastructure +414980,Infrastructure,Infrastructure +420669,Infrastructure,Infrastructure +437943,Regional Development,Regional Development +467718,Fisheries,Fisheries +422088,Industry,Industrie +414724,Industry,Industrie +412429,Industry,Industrie +412425,Industry,Industrie +403721,Industry,Industrie +429146,Industry,Industrie +449941,Security,Sécurité +449912,Security,Sécurité +449903,Security,Sécurité +449901,Security,Sécurité +447370,Security,Sécurité +447369,Security,Sécurité +447368,Security,Sécurité +445190,Security,Sécurité +445188,Security,Sécurité +443232,Security,Sécurité +443230,Security,Sécurité +443229,Security,Sécurité +443228,Security,Sécurité +441221,Security,Sécurité +441219,Security,Sécurité +441218,Security,Sécurité +441217,Security,Sécurité +441216,Security,Sécurité +441215,Security,Sécurité +437029,Security,Sécurité +437028,Security,Sécurité +437026,Security,Sécurité +437025,Security,Sécurité +437024,Security,Sécurité +437023,Security,Sécurité +434847,Security,Sécurité +434846,Security,Sécurité +434845,Security,Sécurité +434844,Security,Sécurité +434842,Security,Sécurité +434841,Security,Sécurité +431633,Security,Sécurité +430647,Security,Sécurité +430642,Security,Sécurité +430639,Security,Sécurité +430637,Security,Sécurité +430633,Security,Sécurité +430632,Security,Sécurité +430631,Security,Sécurité +430630,Security,Sécurité +429146,Security,Sécurité +429133,Security,Sécurité +429118,Security,Sécurité +429116,Security,Sécurité +429115,Security,Sécurité +429113,Security,Sécurité +426317,Security,Sécurité +426315,Security,Sécurité +426303,Security,Sécurité +426299,Security,Sécurité +426288,Security,Sécurité +426281,Security,Sécurité +426278,Security,Sécurité +426277,Security,Sécurité +426276,Security,Sécurité +426273,Security,Sécurité +424959,Security,Sécurité +424259,Security,Sécurité +422100,Security,Sécurité +422095,Security,Sécurité +422088,Security,Sécurité +422083,Security,Sécurité +422081,Security,Sécurité +422080,Security,Sécurité +422079,Security,Sécurité +417323,Security,Sécurité +417320,Security,Sécurité +417319,Security,Sécurité +414732,Security,Sécurité +414731,Security,Sécurité +414725,Security,Sécurité +414724,Security,Sécurité +414723,Security,Sécurité +414722,Security,Sécurité +412429,Security,Sécurité +412428,Security,Sécurité +412427,Security,Sécurité +412426,Security,Sécurité +412425,Security,Sécurité +403721,Security,Sécurité +503096,Security,Sécurité +501285,Security,Sécurité +499985,Security,Sécurité +494592,Security,Sécurité +491991,Security,Sécurité +488512,Security,Sécurité +488483,Security,Sécurité +476873,Security,Sécurité +474008,Security,Sécurité +468024,Security,Sécurité +468022,Security,Sécurité +468021,Security,Sécurité +465045,Security,Sécurité +525750,Transportation,Transports +520781,Transportation,Transports +422095,Transportation,Transports +422088,Transportation,Transports +422083,Transportation,Transports +422081,Transportation,Transports +422080,Transportation,Transports +422079,Transportation,Transports +419544,Transportation,Transports +419542,Transportation,Transports +419541,Transportation,Transports +419538,Transportation,Transports +417323,Transportation,Transports +417320,Transportation,Transports +417319,Transportation,Transports +414732,Transportation,Transports +414731,Transportation,Transports +414725,Transportation,Transports +414724,Transportation,Transports +414723,Transportation,Transports +414722,Transportation,Transports +412429,Transportation,Transports +412428,Transportation,Transports +412427,Transportation,Transports +412426,Transportation,Transports +412425,Transportation,Transports +410135,Transportation,Transports +407631,Transportation,Transports +407630,Transportation,Transports +406318,Transportation,Transports +405592,Transportation,Transports +405591,Transportation,Transports +405589,Transportation,Transports +405587,Transportation,Transports +405584,Transportation,Transports +405574,Transportation,Transports +405297,Transportation,Transports +403721,Transportation,Transports +400403,Transportation,Transports +399304,Transportation,Transports +515958,Transportation,Transports +503096,Transportation,Transports +501285,Transportation,Transports +499985,Transportation,Transports +497422,Transportation,Transports +494592,Transportation,Transports +491991,Transportation,Transports +488512,Transportation,Transports +488483,Transportation,Transports +484366,Transportation,Transports +484361,Transportation,Transports +476873,Transportation,Transports +476241,Transportation,Transports +474008,Transportation,Transports +468027,Transportation,Transports +468024,Transportation,Transports +468022,Transportation,Transports +468021,Transportation,Transports +465045,Transportation,Transports +465044,Transportation,Transports +465043,Transportation,Transports +465042,Transportation,Transports +465041,Transportation,Transports +465040,Transportation,Transports +465039,Transportation,Transports +449941,Transportation,Transports +449912,Transportation,Transports +449903,Transportation,Transports +449901,Transportation,Transports +449898,Transportation,Transports +447370,Transportation,Transports +447369,Transportation,Transports +447368,Transportation,Transports +445190,Transportation,Transports +445188,Transportation,Transports +443232,Transportation,Transports +443230,Transportation,Transports +443229,Transportation,Transports +443228,Transportation,Transports +441221,Transportation,Transports +441219,Transportation,Transports +441218,Transportation,Transports +441217,Transportation,Transports +441216,Transportation,Transports +441215,Transportation,Transports +437029,Transportation,Transports +437028,Transportation,Transports +437027,Transportation,Transports +437026,Transportation,Transports +437025,Transportation,Transports +437024,Transportation,Transports +434847,Transportation,Transports +434846,Transportation,Transports +434845,Transportation,Transports +434844,Transportation,Transports +434842,Transportation,Transports +434841,Transportation,Transports +431633,Transportation,Transports +430647,Transportation,Transports +430642,Transportation,Transports +430639,Transportation,Transports +430637,Transportation,Transports +430633,Transportation,Transports +430632,Transportation,Transports +430631,Transportation,Transports +430630,Transportation,Transports +429146,Transportation,Transports +429133,Transportation,Transports +429118,Transportation,Transports +429116,Transportation,Transports +429115,Transportation,Transports +429113,Transportation,Transports +426317,Transportation,Transports +426315,Transportation,Transports +426303,Transportation,Transports +426299,Transportation,Transports +426288,Transportation,Transports +426281,Transportation,Transports +426278,Transportation,Transports +426277,Transportation,Transports +426276,Transportation,Transports +426273,Transportation,Transports +424959,Transportation,Transports +424263,Transportation,Transports +424262,Transportation,Transports +424259,Transportation,Transports +424258,Transportation,Transports +422100,Transportation,Transports +532035,Transportation,Transports +398193,Education,Éducation +398194,Official Languages,Langues officielles +398193,Official Languages,Langues officielles +468832,Official Languages,Langues officielles +468830,Official Languages,Langues officielles +468828,Official Languages,Langues officielles +468826,Official Languages,Langues officielles +466402,Official Languages,Langues officielles +466400,Official Languages,Langues officielles +466130,Official Languages,Langues officielles +465416,Official Languages,Langues officielles +465414,Official Languages,Langues officielles +463614,Official Languages,Langues officielles +463612,Official Languages,Langues officielles +463610,Official Languages,Langues officielles +429703,Official Languages,Langues officielles +427886,Official Languages,Langues officielles +427885,Official Languages,Langues officielles +427884,Official Languages,Langues officielles +427883,Official Languages,Langues officielles +427461,Official Languages,Langues officielles +427352,Official Languages,Langues officielles +427066,Official Languages,Langues officielles +425238,Official Languages,Langues officielles +425237,Official Languages,Langues officielles +422741,Official Languages,Langues officielles +420831,Official Languages,Langues officielles +420247,Official Languages,Langues officielles +418965,Official Languages,Langues officielles +418348,Official Languages,Langues officielles +417925,Official Languages,Langues officielles +417166,Official Languages,Langues officielles +417164,Official Languages,Langues officielles +414276,Official Languages,Langues officielles +414274,Official Languages,Langues officielles +411726,Official Languages,Langues officielles +408626,Official Languages,Langues officielles +408625,Official Languages,Langues officielles +408489,Official Languages,Langues officielles +408479,Official Languages,Langues officielles +398207,Official Languages,Langues officielles +408625,Education,Éducation +398206,Education,Éducation +468832,Education,Éducation +468830,Education,Éducation +468828,Education,Éducation +468826,Education,Éducation +466402,Education,Éducation +466400,Education,Éducation +466130,Education,Éducation +465416,Education,Éducation +465414,Education,Éducation +463614,Education,Éducation +463612,Education,Éducation +463610,Education,Éducation +429703,Education,Éducation +425238,Education,Éducation +420831,Education,Éducation +420247,Education,Éducation +418348,Education,Éducation +417925,Education,Éducation +417166,Education,Éducation +417164,Education,Éducation +403247,Health,Health +403247,Justice and Law Enforcement,Justice and Law Enforcement +400951,Economic Development,Economic Development +400949,Economic Development,Economic Development +435737,Economic Development,Economic Development +435736,Economic Development,Economic Development +435730,Economic Development,Economic Development +435728,Economic Development,Economic Development +435726,Economic Development,Economic Development +435722,Economic Development,Economic Development +435719,Economic Development,Economic Development +400975,Economic Development,Economic Development +400971,Economic Development,Economic Development +400970,Economic Development,Economic Development +400969,Economic Development,Economic Development +400967,Economic Development,Economic Development +400964,Economic Development,Economic Development +400963,Economic Development,Economic Development +400962,Economic Development,Economic Development +400960,Economic Development,Economic Development +400958,Economic Development,Economic Development +400956,Economic Development,Economic Development +400954,Economic Development,Economic Development +400951,Transportation,Transportation +400949,Transportation,Transportation +400975,Transportation,Transportation +400971,Transportation,Transportation +400970,Transportation,Transportation +400969,Transportation,Transportation +400967,Transportation,Transportation +400964,Transportation,Transportation +400963,Transportation,Transportation +400962,Transportation,Transportation +400960,Transportation,Transportation +400958,Transportation,Transportation +400956,Transportation,Transportation +400954,Transportation,Transportation +399960,Economic Development,Economic Development +399959,Economic Development,Economic Development +436105,Economic Development,Economic Development +399962,Economic Development,Economic Development +489734,Industry,Industry +432657,Consumer Issues,Consumer Issues +429762,Consumer Issues,Consumer Issues +420561,Consumer Issues,Consumer Issues +410399,Consumer Issues,Consumer Issues +410398,Consumer Issues,Consumer Issues +410397,Consumer Issues,Consumer Issues +410345,Consumer Issues,Consumer Issues +443176,Consumer Issues,Consumer Issues +399960,Transportation,Transportation +399959,Transportation,Transportation +489734,Transportation,Transportation +443176,Transportation,Transportation +436105,Transportation,Transportation +432657,Transportation,Transportation +429762,Transportation,Transportation +420561,Transportation,Transportation +410399,Transportation,Transportation +410398,Transportation,Transportation +410397,Transportation,Transportation +410345,Transportation,Transportation +408511,Transportation,Transportation +408428,Transportation,Transportation +399962,Transportation,Transportation +399858,Defence,Defence +509351,Defence,Defence +399863,Defence,Defence +399862,Defence,Defence +399860,Defence,Defence +399859,Security,Security +399858,Security,Security +399863,Security,Security +399862,Security,Security +399859,Budget,Budget +399858,Budget,Budget +436529,Budget,Budget +436484,Budget,Budget +399863,Budget,Budget +399862,Budget,Budget +399858,Industry,Industry +500177,Industry,Industry +465829,Industry,Industry +450601,Industry,Industry +450600,Industry,Industry +436529,Industry,Industry +436484,Industry,Industry +427346,Industry,Industry +414592,Industry,Industry +399863,Industry,Industry +399862,Industry,Industry +399860,Industry,Industry +418557,Budget,Budget +416983,International Trade,International Trade +416982,International Trade,International Trade +433818,International Trade,International Trade +432482,International Trade,International Trade +432481,International Trade,International Trade +432482,Health,Health +432481,Health,Health +422582,Health,Health +420278,Health,Health +420275,Health,Health +416984,Health,Health +416983,Health,Health +416982,Health,Health +416981,Health,Health +413733,Industry,Industry +433821,Industry,Industry +399397,International Trade,International Trade +399397,Taxation and Finance,Taxation and Finance +542282,Justice and Law Enforcement,Justice and Law Enforcement +542281,Justice and Law Enforcement,Justice and Law Enforcement +418352,Justice and Law Enforcement,Justice and Law Enforcement +415268,Justice and Law Enforcement,Justice and Law Enforcement +415253,Justice and Law Enforcement,Justice and Law Enforcement +415252,Justice and Law Enforcement,Justice and Law Enforcement +404902,Justice and Law Enforcement,Justice and Law Enforcement +404901,Justice and Law Enforcement,Justice and Law Enforcement +404464,Justice and Law Enforcement,Justice and Law Enforcement +401607,Justice and Law Enforcement,Justice and Law Enforcement +401605,Justice and Law Enforcement,Justice and Law Enforcement +401604,Justice and Law Enforcement,Justice and Law Enforcement +401603,Justice and Law Enforcement,Justice and Law Enforcement +401602,Justice and Law Enforcement,Justice and Law Enforcement +398404,Justice and Law Enforcement,Justice and Law Enforcement +532419,Justice and Law Enforcement,Justice and Law Enforcement +516446,Justice and Law Enforcement,Justice and Law Enforcement +516445,Justice and Law Enforcement,Justice and Law Enforcement +514838,Justice and Law Enforcement,Justice and Law Enforcement +506392,Justice and Law Enforcement,Justice and Law Enforcement +506391,Justice and Law Enforcement,Justice and Law Enforcement +496384,Justice and Law Enforcement,Justice and Law Enforcement +496379,Justice and Law Enforcement,Justice and Law Enforcement +493928,Justice and Law Enforcement,Justice and Law Enforcement +485651,Justice and Law Enforcement,Justice and Law Enforcement +482907,Justice and Law Enforcement,Justice and Law Enforcement +475212,Justice and Law Enforcement,Justice and Law Enforcement +471025,Justice and Law Enforcement,Justice and Law Enforcement +471024,Justice and Law Enforcement,Justice and Law Enforcement +462110,Justice and Law Enforcement,Justice and Law Enforcement +460282,Justice and Law Enforcement,Justice and Law Enforcement +459813,Justice and Law Enforcement,Justice and Law Enforcement +459812,Justice and Law Enforcement,Justice and Law Enforcement +456853,Justice and Law Enforcement,Justice and Law Enforcement +446497,Justice and Law Enforcement,Justice and Law Enforcement +444583,Justice and Law Enforcement,Justice and Law Enforcement +439855,Justice and Law Enforcement,Justice and Law Enforcement +439854,Justice and Law Enforcement,Justice and Law Enforcement +436505,Justice and Law Enforcement,Justice and Law Enforcement +436494,Justice and Law Enforcement,Justice and Law Enforcement +429021,Justice and Law Enforcement,Justice and Law Enforcement +424775,Justice and Law Enforcement,Justice and Law Enforcement +424553,Justice and Law Enforcement,Justice and Law Enforcement +422956,Justice and Law Enforcement,Justice and Law Enforcement +422881,Justice and Law Enforcement,Justice and Law Enforcement +422829,Justice and Law Enforcement,Justice and Law Enforcement +422828,Justice and Law Enforcement,Justice and Law Enforcement +399438,Financial Institutions,Financial Institutions +399172,Financial Institutions,Financial Institutions +437729,Financial Institutions,Financial Institutions +408387,Financial Institutions,Financial Institutions +407781,Financial Institutions,Financial Institutions +407650,Financial Institutions,Financial Institutions +407649,Financial Institutions,Financial Institutions +407028,Financial Institutions,Financial Institutions +405985,Financial Institutions,Financial Institutions +404915,Financial Institutions,Financial Institutions +404411,Financial Institutions,Financial Institutions +404402,Financial Institutions,Financial Institutions +404250,Financial Institutions,Financial Institutions +404249,Financial Institutions,Financial Institutions +404249,International Relations,International Relations +404248,International Relations,International Relations +408387,International Relations,International Relations +407781,International Relations,International Relations +407650,International Relations,International Relations +407649,International Relations,International Relations +407028,International Relations,International Relations +405985,International Relations,International Relations +404915,International Relations,International Relations +404411,International Relations,International Relations +404402,International Relations,International Relations +404249,Transportation,Transportation +404248,Transportation,Transportation +408387,Transportation,Transportation +407781,Transportation,Transportation +407650,Transportation,Transportation +407649,Transportation,Transportation +407028,Transportation,Transportation +405985,Transportation,Transportation +404915,Transportation,Transportation +404411,Transportation,Transportation +404402,Transportation,Transportation +414943,Government Procurement,Government Procurement +414261,Government Procurement,Government Procurement +406921,Government Procurement,Government Procurement +406919,Government Procurement,Government Procurement +405354,Government Procurement,Government Procurement +400250,Government Procurement,Government Procurement +398431,Government Procurement,Government Procurement +495620,Government Procurement,Government Procurement +495619,Government Procurement,Government Procurement +495618,Government Procurement,Government Procurement +495617,Government Procurement,Government Procurement +495616,Government Procurement,Government Procurement +495615,Government Procurement,Government Procurement +495614,Government Procurement,Government Procurement +495613,Government Procurement,Government Procurement +495612,Government Procurement,Government Procurement +493463,Government Procurement,Government Procurement +493458,Government Procurement,Government Procurement +493456,Government Procurement,Government Procurement +493455,Government Procurement,Government Procurement +493453,Government Procurement,Government Procurement +493449,Government Procurement,Government Procurement +493447,Government Procurement,Government Procurement +493445,Government Procurement,Government Procurement +435046,Defence,Defence +435043,Defence,Defence +435043,Fisheries,Fisheries +435043,Government Procurement,Government Procurement +409275,Government Procurement,Government Procurement +398480,Budget,Budget +468600,Security,Security +418106,Health,Health +461063,Infrastructure,Infrastructure +436571,Budget,Budget +436570,Industry,Industry +398603,Taxation and Finance,Taxation and Finance +469897,Industry,Industry +494126,Defence,Defence +437397,Government Procurement,Government Procurement +397955,Consumer Issues,Consumer Issues +420335,Consumer Issues,Consumer Issues +397961,Consumer Issues,Consumer Issues +400175,Economic Development,Economic Development +399225,Education,Education +400175,Employment and Training,Employment and Training +400175,Immigration,Immigration +400175,Research and Development,Research and Development +399728,Climate,Climate +407398,Transportation,Transportation +406339,Transportation,Transportation +398102,Employment and Training,Employment and Training +398102,Labour,Labour +398013,Economic Development,Economic Development +398022,Consumer Issues,Consumer Issues +398022,Economic Development,Economic Development +398023,Consumer Issues,Consumer Issues +398023,Economic Development,Economic Development +399478,International Trade,International Trade +402582,International Relations,International Relations +398044,International Trade,International Trade +448734,Economic Development,Economic Development +416973,Taxation and Finance,Taxation and Finance +398066,International Relations,International Relations +405375,Environment,Environment +399920,Sports,Sports +398128,Defence,Defence +420669,Budget,Budget +420669,Climate,Climate +420669,Forestry,Forestry +420668,Infrastructure,Infrastructure +398162,Forestry,Forestry +445229,Regional Development,Regional Development +415007,Fisheries,Fisheries +422095,Industry,Industrie +465044,Security,Sécurité +525754,Transportation,Transports +398179,Agriculture,Agriculture +398194,Education,Éducation +398194,Immigration,Immigration +398208,Official Languages,Langues officielles +408476,Consumer Issues,Consumer Issues +408476,Economic Development,Economic Development +408476,Industry,Industry +408476,Intellectual Property,Intellectual Property +408476,Justice and Law Enforcement,Justice and Law Enforcement +408476,Security,Security +408476,Transportation,Transportation +398206,Official Languages,Langues officielles +411340,Education,Éducation +403253,Health,Health +403253,Justice and Law Enforcement,Justice and Law Enforcement +400953,Economic Development,Economic Development +400953,Transportation,Transportation +429762,Security,Security +399961,Economic Development,Economic Development +420561,Industry,Industry +436105,Consumer Issues,Consumer Issues +399961,Transportation,Transportation +399859,Defence,Defence +399860,Security,Security +399860,Budget,Budget +399859,Industry,Industry +418782,Budget,Budget +424366,Defence,Defence +424366,Economic Development,Economic Development +424366,Government Procurement,Government Procurement +424366,Industry,Industry +424366,International Relations,International Relations +424366,International Trade,International Trade +424366,Regional Development,Regional Development +424366,Research and Development,Research and Development +431022,International Trade,International Trade +433821,Health,Health +433821,Economic Development,Economic Development +422582,Industry,Industry +398326,Municipalities,Municipalities +398357,Agriculture,Agriculture +398400,Infrastructure,Infrastructure +399529,International Trade,International Trade +399398,Internal Trade,Internal Trade +399398,Taxation and Finance,Taxation and Finance +399529,Industry,Industry +419496,Justice and Law Enforcement,Justice and Law Enforcement +404422,Health,Health +404248,Financial Institutions,Financial Institutions +404250,International Relations,International Relations +404250,Transportation,Transportation +423109,Government Procurement,Government Procurement +409275,Defence,Defence +409275,Economic Development,Economic Development +409275,Employment and Training,Employment and Training +435046,Fisheries,Fisheries +435046,Government Procurement,Government Procurement +409275,Industry,Industry +398526,Budget,Budget +398484,Government Procurement,Government Procurement +398503,Intellectual Property,Intellectual Property +398511,Intellectual Property,Intellectual Property +398520,Agriculture,Agriculture +398576,Immigration,Immigration +398671,Climate,Climate +461974,Agriculture,Agriculture +532808,Economic Development,Economic Development +439771,Regional Development,Regional Development +461064,Education,Education +446376,Economic Development,Economic Development +439771,Budget,Budget +439771,Government Procurement,Government Procurement +461063,Industry,Industry +439771,International Development,International Development +431674,Privacy and Access to Information,Privacy and Access to Information +431675,Research and Development,Research and Development +399385,Health,Health +519575,Regional Development,Développement régional +398775,Health,Health +398784,Regional Development,Regional Development +402134,Agriculture,Agriculture +402134,Economic Development,Economic Development +406834,Employment and Training,Employment and Training +402134,Regional Development,Regional Development +402134,Research and Development,Research and Development +402134,Small Business,Small Business +444927,Intellectual Property,Intellectual Property +425258,Security,Security +411459,Security,Security +435180,Financial Institutions,Financial Institutions +398982,Security,Security +398983,Health,Health +399105,International Trade,International Trade +399112,International Trade,International Trade +399116,International Trade,International Trade +413832,Industry,Industry +399147,Employment and Training,Employment and Training +399281,Research and Development,Research and Development +399274,Environment,Environment +399280,Climate,Climate +399281,Economic Development,Economic Development +399272,Industry,Industry +399278,Mining,Mining +402134,Health,Health +400727,Immigration,Immigration +409426,Research and Development,Recherche et développement +410534,Industry,Industry +442945,Taxation and Finance,Taxation and Finance +399239,Industry,Industry +399240,Industry,Industry +410655,Infrastructure,Infrastructure +399287,Economic Development,Economic Development +420676,Economic Development,Economic Development +420676,Transportation,Transportation +541917,Municipalities,Municipalities +399298,Infrastructure,Infrastructure +399301,Infrastructure,Infrastructure +401926,Energy,Energy +401930,Environment,Environment +487692,Economic Development,Economic Development +405992,Research and Development,Research and Development +400251,Health,Health +415203,Transportation,Transportation +412852,Environment,Environment +467449,Energy,Energy +490595,Climate,Climate +401917,International Trade,International Trade +399866,Budget,Budget +465538,Municipalities,Municipalities +460434,Tourism,Tourism +399384,Defence,Defence +453774,Housing,Housing +399384,Government Procurement,Government Procurement +401376,Health,Health +401376,Research and Development,Research and Development +402143,Energy,Energy +402144,Environment,Environment +402145,Regional Development,Regional Development +416458,Environment,Environment +402655,Regional Development,Développement régional +402655,Environment,Environnement +402655,Health,Santé +401940,Transportation,Transports +416362,Infrastructure,Infrastructure +400046,Agriculture,Agriculture +400046,Infrastructure,Infrastructure +407561,Budget,Budget +399418,Defence,Defence +420886,Economic Development,Economic Development +407560,Government Procurement,Government Procurement +409970,Industry,Industry +399418,Research and Development,Research and Development +407101,Agriculture,Agriculture +406275,International Trade,International Trade +402703,Government Procurement,Government Procurement +544147,Health,Health +406512,Justice and Law Enforcement,Justice and Law Enforcement +409499,Regional Development,Développement régional +409506,Environment,Environnement +409509,Infrastructure,Infrastructure +409499,Health,Santé +401915,Transportation,Transports +403081,Economic Development,Economic Development +403081,Employment and Training,Employment and Training +403081,Regional Development,Regional Development +400590,Health,Health +406437,Government Procurement,Government Procurement +427917,Government Procurement,Government Procurement +405958,Economic Development,Economic Development +424101,Environment,Environment +402996,Infrastructure,Infrastructure +408406,International Trade,International Trade +401986,Climate,Climate +401986,Energy,Energy +401986,Environment,Environment +401986,Government Procurement,Government Procurement +401988,Industry,Industry +401988,Infrastructure,Infrastructure +401988,Taxation and Finance,Taxation and Finance +418103,Government Procurement,Government Procurement +405813,Taxation and Finance,Taxation and Finance +481657,Budget,Budget +474858,Budget,Budget +464428,Budget,Budget +542692,Government Procurement,Government Procurement +533658,Immigration,Immigration +514151,Immigration,Immigration +451437,Immigration,Immigration +451436,Immigration,Immigration +451432,Immigration,Immigration +451430,Immigration,Immigration +451426,Immigration,Immigration +413173,Immigration,Immigration +413154,Immigration,Immigration +398585,Immigration,Immigration +457621,Agriculture,Agriculture +532804,Economic Development,Economic Development +532800,Economic Development,Economic Development +461063,Economic Development,Economic Development +431675,Economic Development,Economic Development +431674,Economic Development,Economic Development +418513,Economic Development,Economic Development +431675,Regional Development,Regional Development +431674,Regional Development,Regional Development +461063,Education,Education +439771,Education,Education +431675,Education,Education +431674,Education,Education +414419,Education,Education +511805,Education,Education +511804,Education,Education +509514,Education,Education +504336,Education,Education +504334,Education,Education +504328,Education,Education +501667,Education,Education +501664,Education,Education +498498,Education,Education +498490,Education,Education +494991,Education,Education +494989,Education,Education +494987,Education,Education +493624,Education,Education +492838,Education,Education +492835,Education,Education +492276,Education,Education +492275,Education,Education +492056,Education,Education +491403,Education,Education +491391,Education,Education +491389,Education,Education +488666,Education,Education +485754,Education,Education +485752,Education,Education +485582,Education,Education +485581,Education,Education +485580,Education,Education +485578,Education,Education +485577,Education,Education +481904,Education,Education +481898,Education,Education +481897,Education,Education +443524,Economic Development,Economic Development +495799,Economic Development,Economic Development +431674,Budget,Budget +414419,Budget,Budget +414419,Research and Development,Research and Development +439771,Research and Development,Research and Development +402133,Agriculture,Agriculture +402130,Agriculture,Agriculture +406834,Agriculture,Agriculture +402133,Economic Development,Economic Development +402130,Economic Development,Economic Development +406834,Economic Development,Economic Development +402134,Employment and Training,Employment and Training +402133,Employment and Training,Employment and Training +402133,Regional Development,Regional Development +402130,Regional Development,Regional Development +406834,Regional Development,Regional Development +402133,Research and Development,Research and Development +402130,Research and Development,Research and Development +402133,Small Business,Small Business +402130,Small Business,Small Business +406834,Small Business,Small Business +419961,Intellectual Property,Intellectual Property +419957,Intellectual Property,Intellectual Property +416742,Intellectual Property,Intellectual Property +416727,Intellectual Property,Intellectual Property +416720,Intellectual Property,Intellectual Property +400732,Intellectual Property,Intellectual Property +399698,Intellectual Property,Intellectual Property +459667,Intellectual Property,Intellectual Property +455599,Intellectual Property,Intellectual Property +455565,Intellectual Property,Intellectual Property +422024,Security,Security +416901,Security,Security +400903,Security,Security +398938,Security,Security +461581,Security,Security +450914,Security,Security +437051,Security,Security +404093,Security,Security +398946,Security,Security +448658,Security,Security +428044,Security,Security +427928,Security,Security +422030,Security,Security +422026,Security,Security +419869,Security,Security +416910,Security,Security +516829,Security,Security +450912,Security,Security +446378,Security,Security +424200,Security,Security +422028,Security,Security +416906,Security,Security +414161,Security,Security +414151,Security,Security +404102,Security,Security +399104,International Trade,International Trade +399278,Research and Development,Research and Development +399276,Research and Development,Research and Development +399272,Environment,Environment +399270,Environment,Environment +399281,Environment,Environment +399280,Environment,Environment +399278,Environment,Environment +399276,Environment,Environment +399278,Economic Development,Economic Development +402133,Health,Health +402130,Health,Health +406834,Health,Health +410533,Industry,Industry +410532,Industry,Industry +399813,Industry,Industry +514016,Industry,Industry +510382,Industry,Industry +411957,Industry,Industry +410831,Industry,Industry +410830,Industry,Industry +410780,Industry,Industry +410536,Industry,Industry +410535,Industry,Industry +410654,Infrastructure,Infrastructure +405957,Infrastructure,Infrastructure +399285,Infrastructure,Infrastructure +399284,Infrastructure,Infrastructure +399283,Infrastructure,Infrastructure +399282,Infrastructure,Infrastructure +399279,Infrastructure,Infrastructure +399277,Infrastructure,Infrastructure +399275,Infrastructure,Infrastructure +471358,Infrastructure,Infrastructure +441185,Infrastructure,Infrastructure +441184,Infrastructure,Infrastructure +441182,Infrastructure,Infrastructure +441179,Infrastructure,Infrastructure +441178,Infrastructure,Infrastructure +441174,Infrastructure,Infrastructure +440395,Infrastructure,Infrastructure +427738,Infrastructure,Infrastructure +418572,Infrastructure,Infrastructure +410678,Infrastructure,Infrastructure +410658,Infrastructure,Infrastructure +410657,Infrastructure,Infrastructure +410656,Infrastructure,Infrastructure +420675,Economic Development,Economic Development +401678,Economic Development,Economic Development +401678,Transportation,Transportation +534706,Municipalities,Municipalities +494685,Municipalities,Municipalities +468915,Municipalities,Municipalities +465985,Municipalities,Municipalities +452179,Energy,Energy +431816,Energy,Energy +401930,Energy,Energy +449266,Environment,Environment +431816,Environment,Environment +487690,Economic Development,Economic Development +487689,Economic Development,Economic Development +411094,Economic Development,Economic Development +410803,Economic Development,Economic Development +410802,Economic Development,Economic Development +410440,Economic Development,Economic Development +406338,Economic Development,Economic Development +405995,Economic Development,Economic Development +405993,Economic Development,Economic Development +405992,Economic Development,Economic Development +401434,Economic Development,Economic Development +399728,Economic Development,Economic Development +539389,Economic Development,Economic Development +532806,Economic Development,Economic Development +513678,Economic Development,Economic Development +512680,Economic Development,Economic Development +511026,Economic Development,Economic Development +511023,Economic Development,Economic Development +508823,Economic Development,Economic Development +508820,Economic Development,Economic Development +508818,Economic Development,Economic Development +508815,Economic Development,Economic Development +505301,Economic Development,Economic Development +505300,Economic Development,Economic Development +505298,Economic Development,Economic Development +505297,Economic Development,Economic Development +502826,Economic Development,Economic Development +502822,Economic Development,Economic Development +502820,Economic Development,Economic Development +502811,Economic Development,Economic Development +492764,Economic Development,Economic Development +487693,Economic Development,Economic Development +405990,Research and Development,Research and Development +405989,Research and Development,Research and Development +431507,Research and Development,Research and Development +410803,Research and Development,Research and Development +406057,Research and Development,Research and Development +400249,Health,Health +400248,Health,Health +467449,Environment,Environment +412852,Energy,Energy +401917,Energy,Energy +490595,Energy,Energy +490588,Energy,Energy +472764,Energy,Energy +490588,Climate,Climate +472764,Climate,Climate +399864,Budget,Budget +399828,Budget,Budget +407391,Budget,Budget +404401,Budget,Budget +404400,Budget,Budget +404399,Budget,Budget +404398,Budget,Budget +404397,Budget,Budget +404396,Budget,Budget +404395,Budget,Budget +404394,Budget,Budget +402687,Budget,Budget +402685,Budget,Budget +402636,Budget,Budget +402632,Budget,Budget +402625,Budget,Budget +401971,Budget,Budget +401970,Budget,Budget +401969,Budget,Budget +401967,Budget,Budget +401966,Budget,Budget +401965,Budget,Budget +401964,Budget,Budget +401963,Budget,Budget +401374,Budget,Budget +401373,Budget,Budget +401372,Budget,Budget +401368,Budget,Budget +401366,Budget,Budget +401365,Budget,Budget +401364,Budget,Budget +401333,Budget,Budget +401328,Budget,Budget +401326,Budget,Budget +401324,Budget,Budget +401323,Budget,Budget +401322,Budget,Budget +401319,Budget,Budget +401318,Budget,Budget +401317,Budget,Budget +401216,Budget,Budget +399867,Budget,Budget +459306,Tourism,Tourism +457897,Tourism,Tourism +451176,Housing,Housing +399384,Housing,Housing +399395,Health,Health +399394,Health,Health +402770,Health,Health +399395,Research and Development,Research and Development +399394,Research and Development,Research and Development +402770,Research and Development,Research and Development +402142,Energy,Energy +402141,Energy,Energy +402254,Energy,Energy +402253,Energy,Energy +402252,Energy,Energy +402251,Energy,Energy +402250,Energy,Energy +402145,Energy,Energy +402144,Energy,Energy +402143,Environment,Environment +402142,Environment,Environment +402253,Environment,Environment +402252,Environment,Environment +402251,Environment,Environment +402144,Regional Development,Regional Development +402142,Regional Development,Regional Development +402141,Regional Development,Regional Development +402254,Regional Development,Regional Development +409078,Environment,Environment +407397,Environment,Environment +401260,Environment,Environment +401259,Environment,Environment +416463,Environment,Environment +402613,Regional Development,Développement régional +401940,Regional Development,Développement régional +424886,Regional Development,Développement régional +413282,Regional Development,Développement régional +413280,Regional Development,Développement régional +409531,Regional Development,Développement régional +409529,Regional Development,Développement régional +409527,Regional Development,Développement régional +409524,Regional Development,Développement régional +406596,Regional Development,Développement régional +405312,Regional Development,Développement régional +405309,Regional Development,Développement régional +402613,Environment,Environnement +401940,Environment,Environnement +424887,Environment,Environnement +424886,Environment,Environnement +413282,Environment,Environnement +409531,Environment,Environnement +409529,Environment,Environnement +409527,Environment,Environnement +409524,Environment,Environnement +406596,Environment,Environnement +405312,Environment,Environnement +405309,Environment,Environnement +402613,Health,Santé +401940,Health,Santé +424887,Health,Santé +413282,Health,Santé +413280,Health,Santé +409531,Health,Santé +409529,Health,Santé +409527,Health,Santé +409524,Health,Santé +406596,Health,Santé +405312,Health,Santé +405309,Health,Santé +402655,Transportation,Transports +402613,Transportation,Transports +404943,Infrastructure,Infrastructure +404941,Infrastructure,Infrastructure +437881,Infrastructure,Infrastructure +435361,Infrastructure,Infrastructure +435356,Infrastructure,Infrastructure +431748,Infrastructure,Infrastructure +419507,Infrastructure,Infrastructure +409970,Economic Development,Economic Development +404284,Economic Development,Economic Development +428519,Economic Development,Economic Development +404284,Government Procurement,Government Procurement +399418,Government Procurement,Government Procurement +407561,Government Procurement,Government Procurement +407561,Industry,Industry +404284,Industry,Industry +428519,Industry,Industry +416738,Industry,Industry +413831,Industry,Industry +406275,Agriculture,Agriculture +544147,Government Procurement,Government Procurement +544144,Government Procurement,Government Procurement +426056,Government Procurement,Government Procurement +417872,Government Procurement,Government Procurement +417871,Government Procurement,Government Procurement +415645,Government Procurement,Government Procurement +415642,Government Procurement,Government Procurement +415638,Government Procurement,Government Procurement +412194,Government Procurement,Government Procurement +412192,Government Procurement,Government Procurement +412191,Government Procurement,Government Procurement +412190,Government Procurement,Government Procurement +412180,Government Procurement,Government Procurement +409882,Government Procurement,Government Procurement +409878,Government Procurement,Government Procurement +409877,Government Procurement,Government Procurement +409873,Government Procurement,Government Procurement +409871,Government Procurement,Government Procurement +409854,Government Procurement,Government Procurement +406512,Government Procurement,Government Procurement +405040,Government Procurement,Government Procurement +544144,Health,Health +532108,Health,Health +493342,Health,Health +470210,Health,Health +470188,Health,Health +470184,Health,Health +467326,Health,Health +467322,Health,Health +467321,Health,Health +467320,Health,Health +438442,Health,Health +438438,Health,Health +435144,Health,Health +435134,Health,Health +426056,Health,Health +415645,Health,Health +415642,Health,Health +415638,Health,Health +412194,Health,Health +412192,Health,Health +412191,Health,Health +412190,Health,Health +412180,Health,Health +409882,Health,Health +409880,Health,Health +409878,Health,Health +409877,Health,Health +409873,Health,Health +409871,Health,Health +409854,Health,Health +409853,Health,Health +406512,Health,Health +405040,Health,Health +402703,Health,Health +405040,Justice and Law Enforcement,Justice and Law Enforcement +402703,Justice and Law Enforcement,Justice and Law Enforcement +435134,Justice and Law Enforcement,Justice and Law Enforcement +417872,Justice and Law Enforcement,Justice and Law Enforcement +417871,Justice and Law Enforcement,Justice and Law Enforcement +415645,Justice and Law Enforcement,Justice and Law Enforcement +415642,Justice and Law Enforcement,Justice and Law Enforcement +415638,Justice and Law Enforcement,Justice and Law Enforcement +412194,Justice and Law Enforcement,Justice and Law Enforcement +412192,Justice and Law Enforcement,Justice and Law Enforcement +412191,Justice and Law Enforcement,Justice and Law Enforcement +412190,Justice and Law Enforcement,Justice and Law Enforcement +412180,Justice and Law Enforcement,Justice and Law Enforcement +409882,Justice and Law Enforcement,Justice and Law Enforcement +409877,Justice and Law Enforcement,Justice and Law Enforcement +409873,Justice and Law Enforcement,Justice and Law Enforcement +409871,Justice and Law Enforcement,Justice and Law Enforcement +409854,Justice and Law Enforcement,Justice and Law Enforcement +406600,Regional Development,Développement régional +401915,Regional Development,Développement régional +424869,Regional Development,Développement régional +413278,Regional Development,Développement régional +413277,Regional Development,Développement régional +409513,Regional Development,Développement régional +409509,Regional Development,Développement régional +409506,Regional Development,Développement régional +409499,Environment,Environnement +406600,Environment,Environnement +401915,Environment,Environnement +424873,Environment,Environnement +424869,Environment,Environnement +413278,Environment,Environnement +409513,Environment,Environnement +409509,Environment,Environnement +406600,Health,Santé +401915,Health,Santé +424873,Health,Santé +413278,Health,Santé +413277,Health,Santé +409513,Health,Santé +409506,Health,Santé +403080,Economic Development,Economic Development +403079,Economic Development,Economic Development +403082,Economic Development,Economic Development +403080,Employment and Training,Employment and Training +403079,Employment and Training,Employment and Training +403082,Employment and Training,Employment and Training +403080,Regional Development,Regional Development +403079,Regional Development,Regional Development +403082,Regional Development,Regional Development +406433,Government Procurement,Government Procurement +403446,Government Procurement,Government Procurement +434213,Government Procurement,Government Procurement +432068,Government Procurement,Government Procurement +426339,Government Procurement,Government Procurement +425606,Government Procurement,Government Procurement +425592,Government Procurement,Government Procurement +402996,Environment,Environment +500101,Environment,Environment +444381,Infrastructure,Infrastructure +444380,Infrastructure,Infrastructure +414534,Infrastructure,Infrastructure +408407,Infrastructure,Infrastructure +405956,Infrastructure,Infrastructure +408405,International Trade,International Trade +401983,Climate,Climate +401982,Climate,Climate +401988,Climate,Climate +401987,Climate,Climate +401983,Energy,Energy +401982,Energy,Energy +401988,Energy,Energy +401987,Energy,Energy +401983,Environment,Environment +401982,Environment,Environment +401988,Environment,Environment +401987,Environment,Environment +401983,Government Procurement,Government Procurement +401982,Government Procurement,Government Procurement +401987,Industry,Industry +401986,Industry,Industry +401987,Infrastructure,Infrastructure +405812,Taxation and Finance,Taxation and Finance +401039,Taxation and Finance,Taxation and Finance +401248,Taxation and Finance,Taxation and Finance +401247,Taxation and Finance,Taxation and Finance +413933,Taxation and Finance,Taxation and Finance +413932,Taxation and Finance,Taxation and Finance +404194,Taxation and Finance,Taxation and Finance +401394,Taxation and Finance,Taxation and Finance +401391,Taxation and Finance,Taxation and Finance +401254,Taxation and Finance,Taxation and Finance +401253,Taxation and Finance,Taxation and Finance +401252,Taxation and Finance,Taxation and Finance +401250,Taxation and Finance,Taxation and Finance +451513,International Development,International Development +451512,International Development,International Development +447319,International Development,International Development +441211,International Development,International Development +441210,International Development,International Development +441209,International Development,International Development +441086,International Development,International Development +441084,International Development,International Development +435208,International Development,International Development +433306,International Development,International Development +433305,International Development,International Development +433304,International Development,International Development +433303,International Development,International Development +433302,International Development,International Development +433299,International Development,International Development +433298,International Development,International Development +432203,International Development,International Development +432199,International Development,International Development +432175,International Development,International Development +430947,International Development,International Development +430819,International Development,International Development +430815,International Development,International Development +430814,International Development,International Development +430813,International Development,International Development +430810,International Development,International Development +430809,International Development,International Development +430806,International Development,International Development +430805,International Development,International Development +430802,International Development,International Development +430797,International Development,International Development +430796,International Development,International Development +430795,International Development,International Development +430792,International Development,International Development +430790,International Development,International Development +430788,International Development,International Development +430780,International Development,International Development +430775,International Development,International Development +430772,International Development,International Development +430770,International Development,International Development +430764,International Development,International Development +430761,International Development,International Development +428630,International Development,International Development +428629,International Development,International Development +428626,International Development,International Development +428624,International Development,International Development +428619,International Development,International Development +425952,International Development,International Development +425951,International Development,International Development +425949,International Development,International Development +425948,International Development,International Development +425945,International Development,International Development +425942,International Development,International Development +425926,International Development,International Development +424474,International Development,International Development +424473,International Development,International Development +424472,International Development,International Development +424239,International Development,International Development +424238,International Development,International Development +421127,International Development,International Development +421126,International Development,International Development +421125,International Development,International Development +421122,International Development,International Development +420031,International Development,International Development +420021,International Development,International Development +420009,International Development,International Development +420007,International Development,International Development +417873,International Development,International Development +416793,International Development,International Development +414817,International Development,International Development +411974,International Development,International Development +406293,International Development,International Development +406292,International Development,International Development +406291,International Development,International Development +406290,International Development,International Development +404040,International Development,International Development +400987,International Development,International Development +400984,International Development,International Development +400662,International Development,International Development +545083,International Development,International Development +545068,International Development,International Development +545065,International Development,International Development +545064,International Development,International Development +544511,International Development,International Development +543985,International Development,International Development +541037,International Development,International Development +540314,International Development,International Development +540313,International Development,International Development +535960,International Development,International Development +535959,International Development,International Development +530700,International Development,International Development +529877,International Development,International Development +529873,International Development,International Development +529872,International Development,International Development +529870,International Development,International Development +520202,International Development,International Development +505829,International Development,International Development +505818,International Development,International Development +502864,International Development,International Development +502862,International Development,International Development +499511,International Development,International Development +495563,International Development,International Development +493716,International Development,International Development +493715,International Development,International Development +490440,International Development,International Development +490434,International Development,International Development +488441,International Development,International Development +485440,International Development,International Development +484205,International Development,International Development +474222,International Development,International Development +468404,International Development,International Development +468401,International Development,International Development +468397,International Development,International Development +465417,International Development,International Development +458891,International Development,International Development +456456,International Development,International Development +456455,International Development,International Development +403539,Taxation and Finance,Taxation and Finance +403527,Taxation and Finance,Taxation and Finance +406656,Taxation and Finance,Taxation and Finance +405204,Taxation and Finance,Taxation and Finance +403562,Taxation and Finance,Taxation and Finance +403732,Taxation and Finance,Taxation and Finance +401109,Taxation and Finance,Taxation and Finance +405817,Taxation and Finance,Taxation and Finance +405816,Taxation and Finance,Taxation and Finance +403738,Taxation and Finance,Taxation and Finance +403514,Taxation and Finance,Taxation and Finance +403491,Taxation and Finance,Taxation and Finance +405424,Taxation and Finance,Taxation and Finance +405415,Taxation and Finance,Taxation and Finance +403705,Taxation and Finance,Taxation and Finance +400463,Taxation and Finance,Taxation and Finance +405815,Taxation and Finance,Taxation and Finance +405814,Taxation and Finance,Taxation and Finance +403712,Taxation and Finance,Taxation and Finance +403710,Taxation and Finance,Taxation and Finance +399753,Industry,Industry +399752,Industry,Industry +443118,Industry,Industry +443117,Industry,Industry +443116,Industry,Industry +441070,Industry,Industry +435917,Industry,Industry +435909,Industry,Industry +427447,Industry,Industry +425003,Industry,Industry +425001,Industry,Industry +424985,Industry,Industry +422962,Industry,Industry +422961,Industry,Industry +422960,Industry,Industry +422959,Industry,Industry +422958,Industry,Industry +422955,Industry,Industry +419310,Industry,Industry +419309,Industry,Industry +419308,Industry,Industry +419307,Industry,Industry +419305,Industry,Industry +419302,Industry,Industry +419301,Industry,Industry +411161,Industry,Industry +411160,Industry,Industry +411159,Industry,Industry +399756,Industry,Industry +399755,Industry,Industry +399752,International Trade,International Trade +537923,International Trade,International Trade +411161,International Trade,International Trade +411160,International Trade,International Trade +411159,International Trade,International Trade +399756,International Trade,International Trade +399755,International Trade,International Trade +399754,International Trade,International Trade +420785,Forestry,Forestry +420784,Forestry,Forestry +420782,Forestry,Forestry +420780,Forestry,Forestry +401264,Forestry,Forestry +401263,Forestry,Forestry +401907,Health,Health +401905,Health,Health +455668,Health,Health +455664,Health,Health +401907,Industry,Industry +401905,Industry,Industry +404028,Health,Health +404027,Health,Health +419881,Health,Health +419880,Health,Health +419879,Health,Health +419876,Health,Health +410114,Health,Health +410113,Health,Health +410112,Health,Health +410110,Health,Health +419876,Industry,Industry +404029,Industry,Industry +422581,Industry,Industry +419881,Industry,Industry +419880,Industry,Industry +419879,Industry,Industry +419878,Research and Development,Research and Development +419876,Research and Development,Research and Development +419881,Research and Development,Research and Development +419880,Research and Development,Research and Development +454166,Economic Development,Economic Development +454165,Economic Development,Economic Development +421160,Economic Development,Economic Development +412781,Economic Development,Economic Development +409124,Economic Development,Economic Development +409123,Economic Development,Economic Development +399574,Economic Development,Economic Development +467862,Economic Development,Economic Development +467846,Economic Development,Economic Development +467671,Economic Development,Economic Development +467664,Economic Development,Economic Development +467652,Economic Development,Economic Development +462053,International Development,International Development +455565,Budget,Budget +416727,Industry,Industry +416720,Industry,Industry +399698,Industry,Industry +459667,Industry,Industry +455599,Industry,Industry +455565,Industry,Industry +444927,Industry,Industry +419961,Industry,Industry +455565,International Relations,International Relations +444927,International Trade,International Trade +419957,International Trade,International Trade +455599,International Trade,International Trade +400419,Industry,Industry +400417,Industry,Industry +400423,Industry,Industry +400419,International Trade,International Trade +400417,International Trade,International Trade +400423,International Trade,International Trade +402297,Employment and Training,Employment and Training +402298,Economic Development,Economic Development +402297,Economic Development,Economic Development +401408,Employment and Training,Employment and Training +401406,Employment and Training,Employment and Training +429897,Employment and Training,Employment and Training +429431,Employment and Training,Employment and Training +426960,Employment and Training,Employment and Training +401406,Regional Development,Regional Development +401408,Economic Development,Economic Development +401406,Economic Development,Economic Development +429897,Economic Development,Economic Development +429431,Economic Development,Economic Development +426960,Economic Development,Economic Development +426953,Economic Development,Economic Development +426952,Economic Development,Economic Development +404383,Financial Institutions,Financial Institutions +404383,Consumer Issues,Consumer Issues +436495,Justice and Law Enforcement,Justice and Law Enforcement +429023,Justice and Law Enforcement,Justice and Law Enforcement +422947,Justice and Law Enforcement,Justice and Law Enforcement +422830,Justice and Law Enforcement,Justice and Law Enforcement +422827,Justice and Law Enforcement,Justice and Law Enforcement +422826,Justice and Law Enforcement,Justice and Law Enforcement +419498,Justice and Law Enforcement,Justice and Law Enforcement +419497,Justice and Law Enforcement,Justice and Law Enforcement +418564,Justice and Law Enforcement,Justice and Law Enforcement +417309,Justice and Law Enforcement,Justice and Law Enforcement +411035,Justice and Law Enforcement,Justice and Law Enforcement +408821,Justice and Law Enforcement,Justice and Law Enforcement +408745,Justice and Law Enforcement,Justice and Law Enforcement +408744,Justice and Law Enforcement,Justice and Law Enforcement +406163,Justice and Law Enforcement,Justice and Law Enforcement +404465,Justice and Law Enforcement,Justice and Law Enforcement +401606,Justice and Law Enforcement,Justice and Law Enforcement +401233,Justice and Law Enforcement,Justice and Law Enforcement +401232,Justice and Law Enforcement,Justice and Law Enforcement +401231,Justice and Law Enforcement,Justice and Law Enforcement +399716,Justice and Law Enforcement,Justice and Law Enforcement +542283,Justice and Law Enforcement,Justice and Law Enforcement +532420,Justice and Law Enforcement,Justice and Law Enforcement +496382,Justice and Law Enforcement,Justice and Law Enforcement +493929,Justice and Law Enforcement,Justice and Law Enforcement +475211,Justice and Law Enforcement,Justice and Law Enforcement +475210,Justice and Law Enforcement,Justice and Law Enforcement +471621,Justice and Law Enforcement,Justice and Law Enforcement +457842,Justice and Law Enforcement,Justice and Law Enforcement +453089,Justice and Law Enforcement,Justice and Law Enforcement +450712,Justice and Law Enforcement,Justice and Law Enforcement +446498,Justice and Law Enforcement,Justice and Law Enforcement +444576,Justice and Law Enforcement,Justice and Law Enforcement +440556,Justice and Law Enforcement,Justice and Law Enforcement +400202,Environment,Environment +400116,Environment,Environment +459836,Environment,Environment +427225,Environment,Environment +424859,Environment,Environment +422519,Environment,Environment +418421,Environment,Environment +411709,Environment,Environment +410837,Environment,Environment +406314,Environment,Environment +406287,Environment,Environment +405898,Environment,Environment +400116,Mining,Mining +459836,Mining,Mining +424859,Mining,Mining +422519,Mining,Mining +418338,Mining,Mining +418337,Mining,Mining +411709,Mining,Mining +410837,Mining,Mining +406314,Mining,Mining +406287,Mining,Mining +405898,Mining,Mining +401739,Mining,Mining +401375,Mining,Mining +417666,Taxation and Finance,Taxation and Finance +417250,Taxation and Finance,Taxation and Finance +415889,Taxation and Finance,Taxation and Finance +409620,Taxation and Finance,Taxation and Finance +409619,Taxation and Finance,Taxation and Finance +409610,Taxation and Finance,Taxation and Finance +406154,Taxation and Finance,Taxation and Finance +405378,Taxation and Finance,Taxation and Finance +404654,Taxation and Finance,Taxation and Finance +404653,Taxation and Finance,Taxation and Finance +404450,Taxation and Finance,Taxation and Finance +404447,Taxation and Finance,Taxation and Finance +404310,Taxation and Finance,Taxation and Finance +404305,Taxation and Finance,Taxation and Finance +403748,Taxation and Finance,Taxation and Finance +401514,Taxation and Finance,Taxation and Finance +424230,International Trade,International Trade +399745,International Trade,International Trade +463156,International Trade,International Trade +456546,International Trade,International Trade +469718,International Trade,International Trade +487415,International Trade,International Trade +404871,Employment and Training,Employment and Training +399785,Employment and Training,Employment and Training +538997,Employment and Training,Employment and Training +427142,Employment and Training,Employment and Training +401437,Energy,Energy +401412,Energy,Energy +401412,International Trade,International Trade +407547,International Trade,International Trade +401438,International Trade,International Trade +401437,Transportation,Transportation +401412,Transportation,Transportation +407547,Transportation,Transportation +488805,Transportation,Transportation +488804,Transportation,Transportation +483943,Transportation,Transportation +483935,Transportation,Transportation +465849,Transportation,Transportation +465847,Transportation,Transportation +465845,Transportation,Transportation +461215,Transportation,Transportation +429610,Transportation,Transportation +405001,Transportation,Transportation +402279,Transportation,Transportation +402692,Housing,Housing +399894,Housing,Housing +406517,Housing,Housing +406514,Housing,Housing +469223,Taxation and Finance,Taxation and Finance +412382,Small Business,Small Business +412378,Small Business,Small Business +465380,Climate,Climate +465379,Climate,Climate +443040,Climate,Climate +430497,Climate,Climate +430487,Climate,Climate +430485,Climate,Climate +430483,Climate,Climate +408848,Climate,Climate +408847,Climate,Climate +406606,Climate,Climate +402270,Climate,Climate +402265,Climate,Climate +507919,Climate,Climate +499073,Climate,Climate +430483,Environment,Environment +406606,Environment,Environment +515990,Environment,Environment +509093,Environment,Environment +499073,Environment,Environment +465922,Environment,Environment +465380,Environment,Environment +450957,Environment,Environment +450955,Environment,Environment +450954,Environment,Environment +443040,Environment,Environment +430497,Environment,Environment +430487,Environment,Environment +544420,Climate,Climate +544419,Climate,Climate +399923,Climate,Climate +399922,Climate,Climate +544420,Environment,Environment +544419,Environment,Environment +460963,Environment,Environment +399923,Environment,Environment +399922,Environment,Environment +544420,Infrastructure,Infrastructure +544419,Infrastructure,Infrastructure +399923,Infrastructure,Infrastructure +399922,Infrastructure,Infrastructure +544420,Transportation,Transportation +544419,Transportation,Transportation +399923,Transportation,Transportation +399922,Transportation,Transportation +399925,Climate,Climate +399924,Climate,Climate +399925,Environment,Environment +399924,Environment,Environment +399925,Infrastructure,Infrastructure +399924,Infrastructure,Infrastructure +399925,Transportation,Transportation +399924,Transportation,Transportation +401222,International Trade,International Trade +401224,International Trade,International Trade +402669,Transportation,Transportation +402668,Transportation,Transportation +402676,Transportation,Transportation +490290,Financial Institutions,Financial Institutions +490287,Financial Institutions,Financial Institutions +474505,Financial Institutions,Financial Institutions +450381,Financial Institutions,Financial Institutions +450378,Financial Institutions,Financial Institutions +427732,Financial Institutions,Financial Institutions +427731,Financial Institutions,Financial Institutions +427729,Financial Institutions,Financial Institutions +427728,Financial Institutions,Financial Institutions +427556,Financial Institutions,Financial Institutions +425249,Financial Institutions,Financial Institutions +407510,Financial Institutions,Financial Institutions +407509,Financial Institutions,Financial Institutions +407191,Financial Institutions,Financial Institutions +407108,Financial Institutions,Financial Institutions +407021,Financial Institutions,Financial Institutions +407020,Financial Institutions,Financial Institutions +407019,Financial Institutions,Financial Institutions +404228,Financial Institutions,Financial Institutions +404227,Financial Institutions,Financial Institutions +404133,Financial Institutions,Financial Institutions +404060,Financial Institutions,Financial Institutions +403449,Financial Institutions,Financial Institutions +402575,Financial Institutions,Financial Institutions +401984,Financial Institutions,Financial Institutions +401976,Financial Institutions,Financial Institutions +401903,Financial Institutions,Financial Institutions +401675,Financial Institutions,Financial Institutions +401657,Financial Institutions,Financial Institutions +401188,Financial Institutions,Financial Institutions +401187,Financial Institutions,Financial Institutions +400549,Financial Institutions,Financial Institutions +400547,Financial Institutions,Financial Institutions +520824,Financial Institutions,Financial Institutions +520235,Financial Institutions,Financial Institutions +401574,Economic Development,Economic Development +401573,Economic Development,Economic Development +422781,Economic Development,Economic Development +401574,Employment and Training,Employment and Training +401573,Employment and Training,Employment and Training +422781,Employment and Training,Employment and Training +401573,Industry,Industry +417033,Industry,Industry +417033,Infrastructure,Infrastructure +473701,Government Procurement,Government Procurement +473699,Government Procurement,Government Procurement +449670,Government Procurement,Government Procurement +445802,Government Procurement,Government Procurement +445801,Government Procurement,Government Procurement +445800,Government Procurement,Government Procurement +431007,Government Procurement,Government Procurement +431006,Government Procurement,Government Procurement +418121,Government Procurement,Government Procurement +418117,Government Procurement,Government Procurement +417032,Government Procurement,Government Procurement +417031,Government Procurement,Government Procurement +417030,Government Procurement,Government Procurement +412982,Government Procurement,Government Procurement +403244,Government Procurement,Government Procurement +403243,Government Procurement,Government Procurement +403239,Government Procurement,Government Procurement +491564,Government Procurement,Government Procurement +491533,Government Procurement,Government Procurement +491529,Government Procurement,Government Procurement +485338,Government Procurement,Government Procurement +482392,Government Procurement,Government Procurement +476004,Government Procurement,Government Procurement +475997,Government Procurement,Government Procurement +475990,Government Procurement,Government Procurement +475989,Government Procurement,Government Procurement +473704,Government Procurement,Government Procurement +448898,Education,Education +448897,Education,Education +448896,Education,Education +448895,Education,Education +448894,Education,Education +448893,Education,Education +448892,Education,Education +448890,Education,Education +448888,Education,Education +437538,Education,Education +437234,Education,Education +437231,Education,Education +437230,Education,Education +437228,Education,Education +437226,Education,Education +437225,Education,Education +436186,Education,Education +436185,Education,Education +436184,Education,Education +436183,Education,Education +436182,Education,Education +436181,Education,Education +436177,Education,Education +436176,Education,Education +436174,Education,Education +436172,Education,Education +425410,Education,Education +425370,Education,Education +425369,Education,Education +425368,Education,Education +425367,Education,Education +425366,Education,Education +425365,Education,Education +425364,Education,Education +425363,Education,Education +425120,Education,Education +425119,Education,Education +425117,Education,Education +408985,Education,Education +408983,Education,Education +405646,Education,Education +405645,Education,Education +405637,Education,Education +405633,Education,Education +405632,Education,Education +405630,Education,Education +405629,Education,Education +405628,Education,Education +405626,Education,Education +406205,Budget,Budget +400107,Budget,Budget +400108,Taxation and Finance,Taxation and Finance +403364,Environment,Environment +403364,Infrastructure,Infrastructure +401240,Security,Sécurité +400621,International Development,International Development +400618,International Development,International Development +448010,International Development,International Development +448007,International Development,International Development +412624,International Development,International Development +412620,International Development,International Development +412612,International Development,International Development +409392,International Development,International Development +409388,International Development,International Development +407466,International Development,International Development +405468,International Development,International Development +421689,Climate,Climate +421666,Climate,Climate +405327,Climate,Climate +405325,Climate,Climate +513773,Climate,Climate +504060,Climate,Climate +489372,Climate,Climate +476782,Climate,Climate +472017,Climate,Climate +466714,Climate,Climate +447106,Climate,Climate +447103,Climate,Climate +447098,Climate,Climate +447095,Climate,Climate +447088,Climate,Climate +438760,Climate,Climate +433375,Climate,Climate +433370,Climate,Climate +428509,Climate,Climate +506915,Economic Development,Economic Development +495506,Economic Development,Economic Development +487170,Economic Development,Economic Development +487168,Economic Development,Economic Development +474339,Economic Development,Economic Development +472017,Economic Development,Economic Development +441338,Economic Development,Economic Development +513773,Economic Development,Economic Development +513015,Economic Development,Economic Development +421691,Energy,Energy +421666,Energy,Energy +513773,Energy,Energy +472017,Energy,Energy +433375,Energy,Energy +433373,Energy,Energy +405327,Environment,Environment +405325,Environment,Environment +511302,Environment,Environment +498493,Environment,Environment +454395,Environment,Environment +447106,Environment,Environment +447103,Environment,Environment +447098,Environment,Environment +447095,Environment,Environment +447088,Environment,Environment +441338,Environment,Environment +433373,Environment,Environment +421666,Environment,Environment +417894,Environment,Environment +402331,International Development,International Development +402328,International Development,International Development +466714,International Development,International Development +447106,International Development,International Development +447103,International Development,International Development +447098,International Development,International Development +438760,International Development,International Development +428510,International Development,International Development +428509,International Development,International Development +428508,International Development,International Development +421666,International Development,International Development +418586,International Development,International Development +417894,International Development,International Development +417892,International Development,International Development +409633,International Development,International Development +407344,International Development,International Development +421690,International Relations,International Relations +421684,International Relations,International Relations +500912,International Relations,International Relations +495506,International Relations,International Relations +466714,International Relations,International Relations +447103,International Relations,International Relations +447098,International Relations,International Relations +438760,International Relations,International Relations +428511,International Relations,International Relations +428510,International Relations,International Relations +428509,International Relations,International Relations +498488,Research and Development,Research and Development +466714,Research and Development,Research and Development +447106,Research and Development,Research and Development +447103,Research and Development,Research and Development +447098,Research and Development,Research and Development +447095,Research and Development,Research and Development +447093,Research and Development,Research and Development +447088,Research and Development,Research and Development +428511,Research and Development,Research and Development +428510,Research and Development,Research and Development +428508,Research and Development,Research and Development +421666,Research and Development,Research and Development +418587,Research and Development,Research and Development +422672,Research and Development,Research and Development +401586,Research and Development,Research and Development +448306,Small Business,Small Business +403393,International Development,International Development +450871,International Development,International Development +431385,International Development,International Development +431383,International Development,International Development +431382,International Development,International Development +429972,International Development,International Development +429971,International Development,International Development +429970,International Development,International Development +429969,International Development,International Development +429967,International Development,International Development +429966,International Development,International Development +429965,International Development,International Development +429964,International Development,International Development +429963,International Development,International Development +429962,International Development,International Development +429961,International Development,International Development +429960,International Development,International Development +429958,International Development,International Development +429957,International Development,International Development +429956,International Development,International Development +429955,International Development,International Development +429954,International Development,International Development +419770,International Development,International Development +419762,International Development,International Development +419729,International Development,International Development +416132,International Development,International Development +404986,Environment,Environment +403362,Environment,Environment +436182,International Development,International Development +405626,International Development,International Development +436185,International Development,International Development +436184,International Development,International Development +405630,International Relations,International Relations +405629,International Relations,International Relations +405646,International Relations,International Relations +461445,Budget,Budget +460504,Budget,Budget +445205,Budget,Budget +441587,Budget,Budget +441584,Budget,Budget +437873,Budget,Budget +437870,Budget,Budget +437867,Budget,Budget +437860,Budget,Budget +435032,Budget,Budget +435028,Budget,Budget +435018,Budget,Budget +435017,Budget,Budget +435012,Budget,Budget +435005,Budget,Budget +435001,Budget,Budget +432179,Budget,Budget +430417,Budget,Budget +430415,Budget,Budget +430413,Budget,Budget +430412,Budget,Budget +430391,Budget,Budget +430299,Budget,Budget +430298,Budget,Budget +409816,Budget,Budget +405446,Budget,Budget +405104,Budget,Budget +405103,Budget,Budget +405099,Budget,Budget +405098,Budget,Budget +405097,Budget,Budget +400540,Budget,Budget +400534,Budget,Budget +540905,Budget,Budget +537012,Budget,Budget +537011,Budget,Budget +537010,Budget,Budget +530795,Budget,Budget +529869,Budget,Budget +528689,Budget,Budget +524493,Budget,Budget +524491,Budget,Budget +524488,Budget,Budget +521569,Budget,Budget +521564,Budget,Budget +521563,Budget,Budget +519189,Budget,Budget +519187,Budget,Budget +516755,Budget,Budget +516742,Budget,Budget +516737,Budget,Budget +516735,Budget,Budget +516733,Budget,Budget +516732,Budget,Budget +515107,Budget,Budget +512319,Budget,Budget +512308,Budget,Budget +512307,Budget,Budget +512304,Budget,Budget +509888,Budget,Budget +509887,Budget,Budget +509884,Budget,Budget +509881,Budget,Budget +509878,Budget,Budget +509875,Budget,Budget +509873,Budget,Budget +506928,Budget,Budget +506927,Budget,Budget +504163,Budget,Budget +501191,Budget,Budget +497924,Budget,Budget +497723,Budget,Budget +494830,Budget,Budget +492609,Budget,Budget +492568,Budget,Budget +492566,Budget,Budget +489693,Budget,Budget +489691,Budget,Budget +489675,Budget,Budget +489673,Budget,Budget +489661,Budget,Budget +489659,Budget,Budget +489655,Budget,Budget +486866,Budget,Budget +486851,Budget,Budget +483528,Budget,Budget +481133,Budget,Budget +481132,Budget,Budget +479468,Budget,Budget +479463,Budget,Budget +479455,Budget,Budget +479451,Budget,Budget +474801,Budget,Budget +474791,Budget,Budget +469698,Budget,Budget +469662,Budget,Budget +466506,Budget,Budget +462222,Budget,Budget +462220,Budget,Budget +462219,Budget,Budget +462218,Budget,Budget +462217,Budget,Budget +461452,Budget,Budget +400508,Infrastructure,Infrastructure +495089,Security,Security +403676,Infrastructure,Infrastructure +403684,International Trade,International Trade +403676,International Trade,International Trade +400601,Security,Security +518649,Security,Security +421709,Security,Security +400614,Security,Security +400612,Security,Security +400607,Security,Security +403920,Budget,Budget +403697,Budget,Budget +403697,Climate,Climate +403922,Energy,Energy +403920,Energy,Energy +403916,Energy,Energy +403912,Energy,Energy +403697,Energy,Energy +403691,Energy,Energy +403675,Energy,Energy +403664,Energy,Energy +403659,Energy,Energy +403638,Energy,Energy +403620,Energy,Energy +403927,Energy,Energy +403638,Environment,Environment +403620,Environment,Environment +403927,Environment,Environment +403925,Environment,Environment +403922,Environment,Environment +403920,Environment,Environment +403916,Environment,Environment +403912,Environment,Environment +403697,Environment,Environment +403691,Environment,Environment +403675,Environment,Environment +403664,Environment,Environment +403638,Infrastructure,Infrastructure +403620,Infrastructure,Infrastructure +403927,Infrastructure,Infrastructure +403925,Infrastructure,Infrastructure +403922,Infrastructure,Infrastructure +403920,Infrastructure,Infrastructure +403916,Infrastructure,Infrastructure +403912,Infrastructure,Infrastructure +403697,Infrastructure,Infrastructure +403691,Infrastructure,Infrastructure +403675,Infrastructure,Infrastructure +403664,Infrastructure,Infrastructure +403921,Budget,Budget +403695,Budget,Budget +403695,Climate,Climate +403631,Energy,Energy +403933,Energy,Energy +403930,Energy,Energy +403926,Energy,Energy +403923,Energy,Energy +403921,Energy,Energy +403918,Energy,Energy +403915,Energy,Energy +403695,Energy,Energy +403694,Energy,Energy +403669,Energy,Energy +403662,Energy,Energy +403645,Environment,Environment +403631,Environment,Environment +403933,Environment,Environment +403930,Environment,Environment +403926,Environment,Environment +403923,Environment,Environment +403921,Environment,Environment +403918,Environment,Environment +403915,Environment,Environment +403695,Environment,Environment +403694,Environment,Environment +403669,Environment,Environment +403645,Infrastructure,Infrastructure +403631,Infrastructure,Infrastructure +403933,Infrastructure,Infrastructure +403930,Infrastructure,Infrastructure +403926,Infrastructure,Infrastructure +403923,Infrastructure,Infrastructure +403921,Infrastructure,Infrastructure +403918,Infrastructure,Infrastructure +403915,Infrastructure,Infrastructure +403695,Infrastructure,Infrastructure +403694,Infrastructure,Infrastructure +403669,Infrastructure,Infrastructure +402140,Fisheries,Fisheries +402135,Education,Education +418192,Education,Education +402156,Education,Education +418192,Economic Development,Economic Development +418185,Economic Development,Economic Development +402156,Economic Development,Economic Development +402140,Economic Development,Economic Development +402135,Economic Development,Economic Development +418271,Economic Development,Economic Development +418264,Economic Development,Economic Development +418253,Economic Development,Economic Development +418244,Economic Development,Economic Development +444609,Climate,Climate +444600,Climate,Climate +409685,Agriculture,Agriculture +400878,Agriculture,Agriculture +416427,Agriculture,Agriculture +413026,Agriculture,Agriculture +409728,Agriculture,Agriculture +409718,Agriculture,Agriculture +409717,Agriculture,Agriculture +409716,Agriculture,Agriculture +409713,Agriculture,Agriculture +468530,Health,Health +468522,Health,Health +441195,Health,Health +441165,Health,Health +441147,Health,Health +401390,Health,Health +401389,Health,Health +400996,Health,Health +400980,Health,Health +538626,Health,Health +468542,Health,Health +401390,Budget,Budget +401389,Budget,Budget +468522,Budget,Budget +441195,Budget,Budget +441165,Budget,Budget +468531,Climate,Climate +468522,Climate,Climate +401390,Climate,Climate +401389,Climate,Climate +540962,Climate,Climate +538626,Climate,Climate +528518,Climate,Climate +528515,Climate,Climate +528509,Climate,Climate +468541,Climate,Climate +468536,Climate,Climate +468534,Climate,Climate +401390,Taxation and Finance,Taxation and Finance +401389,Taxation and Finance,Taxation and Finance +468531,Taxation and Finance,Taxation and Finance +468522,Taxation and Finance,Taxation and Finance +453170,Agriculture,Agriculture +401063,Tourism,Tourism +401072,Tourism,Tourism +401077,Tourism,Tourism +404419,International Trade,International Trade +404256,International Trade,International Trade +409214,International Trade,International Trade +409212,International Trade,International Trade +401156,Transportation,Transportation +404270,Agriculture,Agriculture +404270,Health,Health +520224,Health,Health +520222,Health,Health +404407,Health,Health +404406,Health,Health +404405,Health,Health +513215,Health,Health +513214,Health,Health +510845,Health,Health +507715,Health,Health +507714,Health,Health +507712,Health,Health +507711,Health,Health +502263,Health,Health +495922,Health,Health +495918,Health,Health +487895,Health,Health +487893,Health,Health +482004,Health,Health +482001,Health,Health +481658,Health,Health +481656,Health,Health +480325,Health,Health +480324,Health,Health +480323,Health,Health +480322,Health,Health +477663,Health,Health +477662,Health,Health +477661,Health,Health +476059,Health,Health +468217,Health,Health +468216,Health,Health +462997,Health,Health +461172,Health,Health +446767,Health,Health +446415,Health,Health +441479,Health,Health +419885,Health,Health +538375,Health,Health +532026,Health,Health +529415,Health,Health +529414,Health,Health +529413,Health,Health +529412,Health,Health +529410,Health,Health +477661,Industry,Industry +468217,Industry,Industry +446767,Industry,Industry +441479,Industry,Industry +419885,Industry,Industry +404408,Industry,Industry +404406,Industry,Industry +538373,Industry,Industry +535231,Industry,Industry +532026,Industry,Industry +529415,Industry,Industry +529414,Industry,Industry +529413,Industry,Industry +529410,Industry,Industry +526271,Industry,Industry +522763,Industry,Industry +522754,Industry,Industry +513215,Industry,Industry +510845,Industry,Industry +507715,Industry,Industry +507712,Industry,Industry +507711,Industry,Industry +502263,Industry,Industry +495922,Industry,Industry +495918,Industry,Industry +446415,Research and Development,Research and Development +535231,Research and Development,Research and Development +441479,Research and Development,Research and Development +419885,Research and Development,Research and Development +487895,Research and Development,Research and Development +484683,Research and Development,Research and Development +484682,Research and Development,Research and Development +484674,Research and Development,Research and Development +484673,Research and Development,Research and Development +482004,Research and Development,Research and Development +404490,International Development,International Development +415216,Economic Development,Economic Development +415215,Economic Development,Economic Development +405347,Security,Security +522541,Security,Security +423116,Security,Security +415219,Security,Security +415215,Security,Security +405349,Security,Security +407778,Transportation,Transportation +423116,Transportation,Transportation +415216,Transportation,Transportation +419331,Energy,Energy +402767,Energy,Energy +419331,Labour,Labour +402767,Labour,Labour +442733,Industry,Industry +401184,International Relations,International Relations +446326,Education,Education +414707,Education,Education +405951,Education,Education +401507,Education,Education +401507,Employment and Training,Employment and Training +401507,Health,Health +401506,Health,Health +420796,Health,Health +401507,Regional Development,Regional Development +401507,Research and Development,Research and Development +403545,Taxation and Finance,Taxation and Finance +403534,Taxation and Finance,Taxation and Finance +405915,Taxation and Finance,Taxation and Finance +403638,Economic Development,Economic Development +403620,Economic Development,Economic Development +403927,Economic Development,Economic Development +403925,Economic Development,Economic Development +403922,Economic Development,Economic Development +403920,Economic Development,Economic Development +403916,Economic Development,Economic Development +403912,Economic Development,Economic Development +403697,Economic Development,Economic Development +403691,Economic Development,Economic Development +403675,Economic Development,Economic Development +403664,Economic Development,Economic Development +403638,Government Procurement,Government Procurement +403620,Government Procurement,Government Procurement +403927,Government Procurement,Government Procurement +403925,Government Procurement,Government Procurement +403922,Government Procurement,Government Procurement +403920,Government Procurement,Government Procurement +403916,Government Procurement,Government Procurement +403912,Government Procurement,Government Procurement +403697,Government Procurement,Government Procurement +403691,Government Procurement,Government Procurement +403675,Government Procurement,Government Procurement +403664,Government Procurement,Government Procurement +403922,Housing,Housing +403675,Industry,Industry +403664,Industry,Industry +403659,Industry,Industry +403638,Industry,Industry +403620,Industry,Industry +403927,Industry,Industry +403925,Industry,Industry +403922,Industry,Industry +403920,Industry,Industry +403916,Industry,Industry +403912,Industry,Industry +403697,Industry,Industry +403638,Regional Development,Regional Development +403620,Regional Development,Regional Development +403927,Regional Development,Regional Development +403925,Regional Development,Regional Development +403922,Regional Development,Regional Development +403920,Regional Development,Regional Development +403916,Regional Development,Regional Development +403912,Regional Development,Regional Development +403697,Regional Development,Regional Development +403691,Regional Development,Regional Development +403675,Regional Development,Regional Development +403664,Regional Development,Regional Development +403638,Research and Development,Research and Development +403620,Research and Development,Research and Development +403927,Research and Development,Research and Development +403925,Research and Development,Research and Development +403922,Research and Development,Research and Development +403916,Research and Development,Research and Development +403912,Research and Development,Research and Development +403697,Research and Development,Research and Development +403691,Research and Development,Research and Development +403675,Research and Development,Research and Development +403664,Research and Development,Research and Development +403920,Taxation and Finance,Taxation and Finance +403922,Transportation,Transportation +403645,Economic Development,Economic Development +403631,Economic Development,Economic Development +403933,Economic Development,Economic Development +403930,Economic Development,Economic Development +403926,Economic Development,Economic Development +403923,Economic Development,Economic Development +403921,Economic Development,Economic Development +403918,Economic Development,Economic Development +403915,Economic Development,Economic Development +403695,Economic Development,Economic Development +403694,Economic Development,Economic Development +403669,Economic Development,Economic Development +403645,Government Procurement,Government Procurement +403631,Government Procurement,Government Procurement +403933,Government Procurement,Government Procurement +403930,Government Procurement,Government Procurement +403926,Government Procurement,Government Procurement +403923,Government Procurement,Government Procurement +403921,Government Procurement,Government Procurement +403918,Government Procurement,Government Procurement +403915,Government Procurement,Government Procurement +403695,Government Procurement,Government Procurement +403694,Government Procurement,Government Procurement +403669,Government Procurement,Government Procurement +403923,Housing,Housing +403645,Industry,Industry +403631,Industry,Industry +403933,Industry,Industry +403930,Industry,Industry +403926,Industry,Industry +403923,Industry,Industry +403921,Industry,Industry +403918,Industry,Industry +403915,Industry,Industry +403695,Industry,Industry +403694,Industry,Industry +403669,Industry,Industry +403930,Regional Development,Regional Development +403926,Regional Development,Regional Development +403923,Regional Development,Regional Development +403921,Regional Development,Regional Development +403918,Regional Development,Regional Development +403915,Regional Development,Regional Development +403695,Regional Development,Regional Development +403694,Regional Development,Regional Development +403669,Regional Development,Regional Development +403662,Regional Development,Regional Development +403645,Regional Development,Regional Development +403631,Regional Development,Regional Development +403645,Research and Development,Research and Development +403631,Research and Development,Research and Development +403933,Research and Development,Research and Development +403930,Research and Development,Research and Development +403926,Research and Development,Research and Development +403923,Research and Development,Research and Development +403921,Research and Development,Research and Development +403918,Research and Development,Research and Development +403915,Research and Development,Research and Development +403695,Research and Development,Research and Development +403694,Research and Development,Research and Development +403669,Research and Development,Research and Development +403921,Taxation and Finance,Taxation and Finance +403923,Transportation,Transportation +401417,Economic Development,Economic Development +401417,Industry,Industry +401417,Research and Development,Research and Development +406431,Health,Health +457746,Justice and Law Enforcement,Justice and Law Enforcement +419043,Justice and Law Enforcement,Justice and Law Enforcement +403479,Employment and Training,Employment and Training +401827,Economic Development,Economic Development +401826,Economic Development,Economic Development +439508,Industry,Industry +439505,Industry,Industry +453512,Industry,Industry +453511,Industry,Industry +453510,Industry,Industry +453509,Industry,Industry +453510,International Trade,International Trade +453509,International Trade,International Trade +444782,International Trade,International Trade +427238,International Trade,International Trade +427237,International Trade,International Trade +427236,International Trade,International Trade +427235,International Trade,International Trade +427232,International Trade,International Trade +453512,International Trade,International Trade +427235,Transportation,Transportation +427232,Transportation,Transportation +453512,Transportation,Transportation +453511,Transportation,Transportation +453510,Transportation,Transportation +453509,Transportation,Transportation +444782,Transportation,Transportation +439527,Transportation,Transportation +427238,Transportation,Transportation +427237,Transportation,Transportation +407091,Health,Health +407091,Consumer Issues,Consumer Issues +407091,Industry,Industry +403479,Climate,Climate +439314,Climate,Climate +415552,Climate,Climate +415525,Climate,Climate +415514,Climate,Climate +415491,Climate,Climate +403497,Labour,Labour +415360,Regional Development,Regional Development +411816,Regional Development,Regional Development +406610,Regional Development,Regional Development +403479,Regional Development,Regional Development +478270,Regional Development,Regional Development +444165,Regional Development,Regional Development +415552,Regional Development,Regional Development +415514,Regional Development,Regional Development +452752,Immigration,Immigration +452733,Immigration,Immigration +415862,Immigration,Immigration +415858,Immigration,Immigration +415856,Immigration,Immigration +415851,Immigration,Immigration +415847,Immigration,Immigration +415844,Immigration,Immigration +415826,Immigration,Immigration +405940,Immigration,Immigration +403633,Immigration,Immigration +403628,Immigration,Immigration +456147,Immigration,Immigration +456146,Immigration,Immigration +456142,Immigration,Immigration +456139,Immigration,Immigration +452765,Immigration,Immigration +452758,Immigration,Immigration +452752,Justice and Law Enforcement,Justice and Law Enforcement +452733,Justice and Law Enforcement,Justice and Law Enforcement +415844,Justice and Law Enforcement,Justice and Law Enforcement +405940,Justice and Law Enforcement,Justice and Law Enforcement +403633,Justice and Law Enforcement,Justice and Law Enforcement +403628,Justice and Law Enforcement,Justice and Law Enforcement +456142,Justice and Law Enforcement,Justice and Law Enforcement +456139,Justice and Law Enforcement,Justice and Law Enforcement +452765,Justice and Law Enforcement,Justice and Law Enforcement +452758,Justice and Law Enforcement,Justice and Law Enforcement +466736,Economic Development,Economic Development +461692,Economic Development,Economic Development +461371,Economic Development,Economic Development +448610,Economic Development,Economic Development +444543,Economic Development,Economic Development +440788,Economic Development,Economic Development +428306,Economic Development,Economic Development +417402,Industry,Industry +414135,Industry,Industry +463176,Industry,Industry +463175,Industry,Industry +463173,Industry,Industry +461692,Industry,Industry +459425,Industry,Industry +458600,Industry,Industry +456863,Industry,Industry +456862,Industry,Industry +448610,Industry,Industry +447267,Industry,Industry +444543,Industry,Industry +434228,Industry,Industry +432897,Industry,Industry +440788,International Trade,International Trade +434228,International Trade,International Trade +458600,International Trade,International Trade +456862,International Trade,International Trade +448610,International Trade,International Trade +434228,Small Business,Small Business +459425,Small Business,Small Business +447267,Small Business,Small Business +448610,Tourism,Tourism +447267,Tourism,Tourism +471009,Mining,Mining +401249,Taxation and Finance,Taxation and Finance +452692,International Development,International Development +403546,Taxation and Finance,Taxation and Finance +403736,Taxation and Finance,Taxation and Finance +403517,Taxation and Finance,Taxation and Finance +403709,Taxation and Finance,Taxation and Finance +402768,Industry,Industry +402768,Transportation,Transportation +400357,Housing,Housing +400357,Industry,Industry +399512,Environment,Environment +399512,Regional Development,Regional Development +399512,Tourism,Tourism +399754,Industry,Industry +399753,International Trade,International Trade +457945,Forestry,Forestry +401909,Health,Health +401909,Industry,Industry +399566,Employment and Training,Employment and Training +404029,Health,Health +419878,Industry,Industry +419879,Research and Development,Research and Development +454167,Economic Development,Economic Development +401398,Taxation and Finance,Taxation and Finance +404155,Agriculture,Agriculture +404155,International Relations,International Relations +400149,International Development,International Development +455599,Budget,Budget +416742,Industry,Industry +455599,International Relations,International Relations +455565,International Trade,International Trade +400421,Industry,Industry +400421,International Trade,International Trade +401481,International Trade,International Trade +402299,Employment and Training,Employment and Training +402298,Energy,Energy +402298,Environment,Environment +402299,Economic Development,Economic Development +426951,Employment and Training,Employment and Training +401408,Regional Development,Regional Development +401406,Infrastructure,Infrastructure +426951,Economic Development,Economic Development +401406,Municipalities,Municipalities +409659,Infrastructure,Infrastructure +409662,International Trade,International Trade +409659,Taxation and Finance,Taxation and Finance +404473,Financial Institutions,Financial Institutions +404473,Consumer Issues,Consumer Issues +436496,Justice and Law Enforcement,Justice and Law Enforcement +400450,Fisheries,Fisheries +401739,Environment,Environment +400202,Mining,Mining +399724,Environment,Environment +399724,Climate,Climate +399727,Climate,Climate +399727,Environment,Environment +399729,Climate,Climate +399729,Environment,Environment +401511,Taxation and Finance,Taxation and Finance +436264,International Trade,International Trade +469719,International Trade,International Trade +427141,Employment and Training,Employment and Training +401438,Energy,Energy +401437,International Trade,International Trade +401438,Transportation,Transportation +527889,Transportation,Transportation +402695,Housing,Housing +459892,Taxation and Finance,Taxation and Finance +412384,Small Business,Small Business +465922,Climate,Climate +430485,Environment,Environment +422655,Industry,Industrie +422655,Small Business,Petites entreprises +422655,Intellectual Property,Propriété intellectuelle +399921,Climate,Climate +399921,Environment,Environment +399921,Infrastructure,Infrastructure +399921,Transportation,Transportation +399926,Climate,Climate +399926,Environment,Environment +399926,Infrastructure,Infrastructure +399926,Transportation,Transportation +401223,International Trade,International Trade +446961,International Relations,International Relations +402672,Transportation,Transportation +401416,Defence,Defence +401416,Government Procurement,Government Procurement +520234,Financial Institutions,Financial Institutions +401575,Economic Development,Economic Development +401575,Employment and Training,Employment and Training +422781,Industry,Industry +399998,Economic Development,Economic Development +400005,Infrastructure,Infrastructure +417034,Research and Development,Research and Development +417034,Industry,Industry +417034,Infrastructure,Infrastructure +406952,Infrastructure,Infrastructure +473702,Government Procurement,Government Procurement +400046,Security,Security +404920,Education,Education +408540,Budget,Budget +408540,Taxation and Finance,Taxation and Finance +403370,Environment,Environment +403370,Fisheries,Fisheries +403370,Infrastructure,Infrastructure +402095,Health,Santé +402095,Security,Sécurité +404113,International Development,International Development +400145,International Development,International Development +428508,Climate,Climate +513014,Economic Development,Economic Development +513773,Education,Education +513773,Employment and Training,Employment and Training +430377,Energy,Energy +417892,Environment,Environment +405327,International Development,International Development +428508,International Relations,International Relations +409633,Research and Development,Research and Development +461326,Research and Development,Research and Development +448310,Small Business,Small Business +400224,Small Business,Small Business +400224,Tourism,Tourism +416106,International Development,International Development +400281,Research and Development,Research and Development +400283,Infrastructure,Infrastructure +406864,Environment,Environment +419743,Environment,Environment +436707,Health,Health +405646,Budget,Budget +405632,Environment,Environment +436183,International Development,International Development +405637,International Relations,International Relations +405628,International Trade,International Trade +461449,Budget,Budget +400441,Infrastructure,Infrastructure +400473,Labour,Labour +405818,Infrastructure,Infrastructure +400536,Security,Security +403686,International Relations,International Relations +403686,Transportation,Transportation +403686,Infrastructure,Infrastructure +403686,International Trade,International Trade +400550,Infrastructure,Infrastructure +400556,Regional Development,Regional Development +400596,Security,Security +400604,Security,Security +400602,Regional Development,Regional Development +400603,Regional Development,Regional Development +403925,Budget,Budget +403925,Climate,Climate +403925,Energy,Energy +403659,Environment,Environment +403659,Infrastructure,Infrastructure +403926,Budget,Budget +403926,Climate,Climate +403645,Energy,Energy +403662,Environment,Environment +403662,Infrastructure,Infrastructure +410263,Environment,Environment +410263,Energy,Energy +400740,Housing,Housing +402156,Fisheries,Fisheries +402140,Education,Education +418204,Economic Development,Economic Development +501245,Climate,Climate +409694,Agriculture,Agriculture +400924,International Relations,International Relations +468540,Health,Health +441147,Budget,Budget +468532,Climate,Climate +462904,Taxation and Finance,Taxation and Finance +401051,Agriculture,Agriculture +401063,Taxation and Finance,Taxation and Finance +401063,Consumer Issues,Consumer Issues +401063,Industry,Industry +401063,Regional Development,Regional Development +401063,Economic Development,Economic Development +403946,Tourism,Tourism +401072,Economic Development,Economic Development +401072,Taxation and Finance,Taxation and Finance +403949,Tourism,Tourism +401076,Consumer Issues,Consumer Issues +401076,Economic Development,Economic Development +401076,Industry,Industry +401076,Taxation and Finance,Taxation and Finance +401076,Tourism,Tourism +401077,Economic Development,Economic Development +401077,Employment and Training,Employment and Training +401077,Taxation and Finance,Taxation and Finance +403975,Tourism,Tourism +408425,International Trade,International Trade +401142,Education,Education +401157,Transportation,Transportation +407535,Agriculture,Agriculture +407535,Health,Health +526271,Health,Health +477663,Industry,Industry +507711,International Trade,International Trade +482001,Research and Development,Research and Development +405177,International Development,International Development +423116,Economic Development,Economic Development +423116,Labour,Labour +405348,Security,Security +415215,Transportation,Transportation +459668,Energy,Energy +459668,Labour,Labour +442733,Energy,Energy +401184,Industry,Industry +442733,International Relations,International Relations +401184,Justice and Law Enforcement,Justice and Law Enforcement +401218,Education,Education +401509,Education,Education +401508,Employment and Training,Employment and Training +401509,Health,Health +401508,Regional Development,Regional Development +401508,Research and Development,Research and Development +405914,Taxation and Finance,Taxation and Finance +424504,Economic Development,Economic Development +424504,Employment and Training,Employment and Training +403659,Economic Development,Economic Development +403659,Government Procurement,Government Procurement +403925,Housing,Housing +403691,Industry,Industry +403925,International Trade,International Trade +403659,Regional Development,Regional Development +403659,Research and Development,Research and Development +403925,Small Business,Small Business +403925,Taxation and Finance,Taxation and Finance +403925,Transportation,Transportation +403662,Economic Development,Economic Development +403662,Government Procurement,Government Procurement +403926,Housing,Housing +403662,Industry,Industry +403926,International Trade,International Trade +403933,Regional Development,Regional Development +403662,Research and Development,Research and Development +403926,Small Business,Small Business +403926,Taxation and Finance,Taxation and Finance +403926,Transportation,Transportation +401537,Economic Development,Economic Development +401537,Industry,Industry +401537,Research and Development,Research and Development +419043,Health,Health +406431,Justice and Law Enforcement,Justice and Law Enforcement +404306,Energy,Energy +404898,Environment,Environment +401379,Infrastructure,Infrastructure +401813,Economic Development,Economic Development +401813,Infrastructure,Infrastructure +401813,Municipalities,Municipalities +401813,Regional Development,Regional Development +401813,Transportation,Transportation +401381,Employment and Training,Employment and Training +401382,Employment and Training,Employment and Training +403497,Employment and Training,Employment and Training +402188,Economic Development,Economic Development +439527,Industry,Industry +453511,International Trade,International Trade +427236,Transportation,Transportation +407092,Health,Health +407092,Consumer Issues,Consumer Issues +407092,Industry,Industry +403507,Climate,Climate +403507,Labour,Labour +415510,Regional Development,Regional Development +452755,Immigration,Immigration +452755,Justice and Law Enforcement,Justice and Law Enforcement +466737,Economic Development,Economic Development +418634,Industry,Industry +444543,International Trade,International Trade +444543,Small Business,Small Business +459425,Tourism,Tourism +529660,Climate,Climate +529660,Economic Development,Economic Development +529660,Employment and Training,Employment and Training +529660,Energy,Energy +529660,Environment,Environment +473698,Mining,Mining +434888,Regional Development,Regional Development +427775,Financial Institutions,Financial Institutions +404978,Housing,Housing +464671,Mining,Mining +529660,Mining,Mining +502763,Mining,Mining +499544,Mining,Mining +480139,Mining,Mining +458924,Regional Development,Regional Development +427763,Financial Institutions,Financial Institutions +506577,Financial Institutions,Financial Institutions +454760,Financial Institutions,Financial Institutions +454758,Financial Institutions,Financial Institutions +454756,Financial Institutions,Financial Institutions +454268,Financial Institutions,Financial Institutions +454262,Financial Institutions,Financial Institutions +454260,Financial Institutions,Financial Institutions +454259,Financial Institutions,Financial Institutions +454258,Financial Institutions,Financial Institutions +427786,Financial Institutions,Financial Institutions +427780,Financial Institutions,Financial Institutions +427778,Financial Institutions,Financial Institutions +427577,Government Procurement,Government Procurement +424852,Government Procurement,Government Procurement +430037,Government Procurement,Government Procurement +427579,Government Procurement,Government Procurement +454068,Economic Development,Développement économique +450527,Economic Development,Développement économique +431093,Economic Development,Développement économique +428106,Economic Development,Développement économique +423247,Economic Development,Développement économique +418916,Economic Development,Développement économique +522415,Economic Development,Développement économique +514303,Economic Development,Développement économique +494571,Economic Development,Développement économique +465825,Economic Development,Développement économique +454068,Education,Éducation +450527,Education,Éducation +431093,Education,Éducation +428106,Education,Éducation +425330,Education,Éducation +412512,Education,Éducation +412511,Education,Éducation +494575,Education,Éducation +494571,Education,Éducation +465825,Education,Éducation +522415,Research and Development,Recherche et développement +514303,Research and Development,Recherche et développement +494575,Research and Development,Recherche et développement +494571,Research and Development,Recherche et développement +465825,Research and Development,Recherche et développement +465824,Research and Development,Recherche et développement +465822,Research and Development,Recherche et développement +454068,Research and Development,Recherche et développement +452109,Research and Development,Recherche et développement +431093,Research and Development,Recherche et développement +428106,Research and Development,Recherche et développement +425330,Research and Development,Recherche et développement +412512,Research and Development,Recherche et développement +412511,Research and Development,Recherche et développement +527437,Research and Development,Recherche et développement +522421,Research and Development,Recherche et développement +468770,Industry,Industry +433149,Industry,Industry +401477,Industry,Industry +470770,Industry,Industry +469389,Industry,Industry +431588,Industry,Industry +424709,Industry,Industry +401478,Industry,Industry +533207,Industry,Industry +516553,Industry,Industry +511988,Industry,Industry +511721,Industry,Industry +488412,Industry,Industry +469675,Industry,Industry +404419,Agriculture,Agriculture +404256,Agriculture,Agriculture +409214,Agriculture,Agriculture +409212,Agriculture,Agriculture +490913,Economic Development,Economic Development +490912,Economic Development,Economic Development +490916,Economic Development,Economic Development +490915,Economic Development,Economic Development +490913,Mining,Mining +490912,Mining,Mining +490916,Mining,Mining +490915,Mining,Mining +401781,International Relations,International Relations +401776,International Relations,International Relations +414630,International Relations,International Relations +401781,International Trade,International Trade +401776,International Trade,International Trade +414630,International Trade,International Trade +427866,Economic Development,Développement économique +427865,Economic Development,Développement économique +436831,Economic Development,Développement économique +436830,Economic Development,Développement économique +429834,Economic Development,Développement économique +427871,Economic Development,Développement économique +427870,Economic Development,Développement économique +427866,Environment,Environnement +427865,Environment,Environnement +436831,Environment,Environnement +429834,Environment,Environnement +427871,Environment,Environnement +427870,Environment,Environnement +427866,Energy,Énergie +427865,Energy,Énergie +436831,Energy,Énergie +436830,Energy,Énergie +429834,Energy,Énergie +427871,Energy,Énergie +427870,Energy,Énergie +459793,Industry,Industry +459792,Industry,Industry +422395,Intellectual Property,Intellectual Property +422382,Intellectual Property,Intellectual Property +452820,Intellectual Property,Intellectual Property +452815,Intellectual Property,Intellectual Property +452811,Intellectual Property,Intellectual Property +439662,Taxation and Finance,Taxation and Finance +424054,Taxation and Finance,Taxation and Finance +505550,Taxation and Finance,Taxation and Finance +496233,Taxation and Finance,Taxation and Finance +459793,Taxation and Finance,Taxation and Finance +408376,International Trade,International Trade +408376,Small Business,Small Business +407452,Industry,Industry +402679,Industry,Industry +408379,Industry,Industry +408378,Industry,Industry +408379,Economic Development,Economic Development +408378,Economic Development,Economic Development +407452,Agriculture,Agriculture +402678,Agriculture,Agriculture +408379,Agriculture,Agriculture +408377,Agriculture,Agriculture +401852,Agriculture,Agriculture +401848,Agriculture,Agriculture +401848,Consumer Issues,Consumer Issues +401842,Consumer Issues,Consumer Issues +401848,Financial Institutions,Financial Institutions +401842,Financial Institutions,Financial Institutions +404644,Financial Institutions,Financial Institutions +404643,Financial Institutions,Financial Institutions +404642,Financial Institutions,Financial Institutions +401853,Financial Institutions,Financial Institutions +401848,Health,Health +401842,Health,Health +407359,Health,Health +404644,Health,Health +404641,Health,Health +401853,Health,Health +401848,Justice and Law Enforcement,Justice and Law Enforcement +401842,Justice and Law Enforcement,Justice and Law Enforcement +407359,Justice and Law Enforcement,Justice and Law Enforcement +404644,Justice and Law Enforcement,Justice and Law Enforcement +404643,Justice and Law Enforcement,Justice and Law Enforcement +404641,Justice and Law Enforcement,Justice and Law Enforcement +401853,Justice and Law Enforcement,Justice and Law Enforcement +401848,Security,Security +401842,Security,Security +404644,Security,Security +404643,Security,Security +404641,Security,Security +401853,Security,Security +404643,Taxation and Finance,Taxation and Finance +404642,Taxation and Finance,Taxation and Finance +401853,Taxation and Finance,Taxation and Finance +401852,Taxation and Finance,Taxation and Finance +401848,Taxation and Finance,Taxation and Finance +401842,Taxation and Finance,Taxation and Finance +410241,International Relations,International Relations +410240,International Relations,International Relations +537095,Budget,Budget +524399,Budget,Budget +417116,Budget,Budget +417115,Budget,Budget +417112,Budget,Budget +414243,Budget,Budget +542568,Budget,Budget +542312,Budget,Budget +524388,Education,Éducation +520286,Education,Éducation +404245,Education,Éducation +518471,Education,Éducation +518470,Education,Éducation +516331,Education,Éducation +516330,Education,Éducation +488300,Education,Éducation +474420,Education,Éducation +474205,Education,Éducation +474204,Education,Éducation +474203,Education,Éducation +474202,Education,Éducation +474201,Education,Éducation +457482,Education,Éducation +450220,Education,Éducation +450216,Education,Éducation +450213,Education,Éducation +448670,Education,Éducation +448669,Education,Éducation +448668,Education,Éducation +423424,Education,Éducation +417116,Education,Éducation +417115,Education,Éducation +417114,Education,Éducation +417112,Education,Éducation +414246,Education,Éducation +414245,Education,Éducation +414244,Education,Éducation +414243,Education,Éducation +414242,Education,Éducation +414241,Education,Éducation +544485,Education,Éducation +542568,Education,Éducation +542312,Education,Éducation +539937,Education,Éducation +537095,Education,Éducation +527169,Education,Éducation +527168,Education,Éducation +524405,Education,Éducation +524404,Education,Éducation +524402,Education,Éducation +524401,Education,Éducation +524400,Education,Éducation +524399,Education,Éducation +404246,Justice and Law Enforcement,Justice et application des lois +516331,Official Languages,Langues officielles +516330,Official Languages,Langues officielles +493718,Official Languages,Langues officielles +493717,Official Languages,Langues officielles +457482,Official Languages,Langues officielles +450220,Official Languages,Langues officielles +450216,Official Languages,Langues officielles +450213,Official Languages,Langues officielles +448670,Official Languages,Langues officielles +448669,Official Languages,Langues officielles +448668,Official Languages,Langues officielles +423424,Official Languages,Langues officielles +417116,Official Languages,Langues officielles +417115,Official Languages,Langues officielles +417114,Official Languages,Langues officielles +417112,Official Languages,Langues officielles +414246,Official Languages,Langues officielles +414245,Official Languages,Langues officielles +414244,Official Languages,Langues officielles +414243,Official Languages,Langues officielles +414242,Official Languages,Langues officielles +414241,Official Languages,Langues officielles +404246,Official Languages,Langues officielles +404245,Official Languages,Langues officielles +544485,Official Languages,Langues officielles +542568,Official Languages,Langues officielles +542312,Official Languages,Langues officielles +539937,Official Languages,Langues officielles +537095,Official Languages,Langues officielles +527169,Official Languages,Langues officielles +527168,Official Languages,Langues officielles +524407,Official Languages,Langues officielles +524406,Official Languages,Langues officielles +524405,Official Languages,Langues officielles +524404,Official Languages,Langues officielles +524402,Official Languages,Langues officielles +524401,Official Languages,Langues officielles +524400,Official Languages,Langues officielles +524399,Official Languages,Langues officielles +524398,Official Languages,Langues officielles +524397,Official Languages,Langues officielles +524388,Official Languages,Langues officielles +524386,Official Languages,Langues officielles +520286,Official Languages,Langues officielles +518471,Official Languages,Langues officielles +448668,Research and Development,Recherche et développement +542568,Research and Development,Recherche et développement +448670,Research and Development,Recherche et développement +493717,Health,Santé +457482,Health,Santé +448670,Health,Santé +448669,Health,Santé +448668,Health,Santé +417116,Health,Santé +417115,Health,Santé +417112,Health,Santé +414245,Health,Santé +545039,International Trade,International Trade +545037,International Trade,International Trade +460315,International Trade,International Trade +429642,International Trade,International Trade +429641,International Trade,International Trade +429640,International Trade,International Trade +429639,International Trade,International Trade +429638,International Trade,International Trade +429637,International Trade,International Trade +429636,International Trade,International Trade +429635,International Trade,International Trade +429633,International Trade,International Trade +404352,International Trade,International Trade +404351,International Trade,International Trade +404350,International Trade,International Trade +404349,International Trade,International Trade +404348,International Trade,International Trade +404347,International Trade,International Trade +404346,International Trade,International Trade +404345,International Trade,International Trade +404344,International Trade,International Trade +404343,International Trade,International Trade +401660,International Trade,International Trade +472134,Government Procurement,Government Procurement +472133,Government Procurement,Government Procurement +516333,Agriculture,Agriculture +516332,Agriculture,Agriculture +465306,Agriculture,Agriculture +463241,Agriculture,Agriculture +462923,Agriculture,Agriculture +461374,Agriculture,Agriculture +460961,Agriculture,Agriculture +457933,Agriculture,Agriculture +453694,Agriculture,Agriculture +451855,Agriculture,Agriculture +438285,Agriculture,Agriculture +435615,Agriculture,Agriculture +427972,Agriculture,Agriculture +427226,Agriculture,Agriculture +425622,Agriculture,Agriculture +424527,Agriculture,Agriculture +422742,Agriculture,Agriculture +422667,Agriculture,Agriculture +420431,Agriculture,Agriculture +420053,Agriculture,Agriculture +420039,Agriculture,Agriculture +420037,Agriculture,Agriculture +420034,Agriculture,Agriculture +420030,Agriculture,Agriculture +420026,Agriculture,Agriculture +420001,Agriculture,Agriculture +418662,Agriculture,Agriculture +418550,Agriculture,Agriculture +418548,Agriculture,Agriculture +417420,Agriculture,Agriculture +416273,Agriculture,Agriculture +416271,Agriculture,Agriculture +416269,Agriculture,Agriculture +416265,Agriculture,Agriculture +416257,Agriculture,Agriculture +416252,Agriculture,Agriculture +416246,Agriculture,Agriculture +416242,Agriculture,Agriculture +416238,Agriculture,Agriculture +416236,Agriculture,Agriculture +416231,Agriculture,Agriculture +416228,Agriculture,Agriculture +416226,Agriculture,Agriculture +416223,Agriculture,Agriculture +416053,Agriculture,Agriculture +414307,Agriculture,Agriculture +543254,Agriculture,Agriculture +543246,Agriculture,Agriculture +541163,Agriculture,Agriculture +537086,Agriculture,Agriculture +534271,Agriculture,Agriculture +531019,Agriculture,Agriculture +525626,Agriculture,Agriculture +525622,Agriculture,Agriculture +525620,Agriculture,Agriculture +525619,Agriculture,Agriculture +525622,Climate,Climate +525619,Climate,Climate +525620,Environment,Environment +416226,Health,Health +416053,Health,Health +438285,Health,Health +418550,Intellectual Property,Intellectual Property +418548,Intellectual Property,Intellectual Property +420431,Intellectual Property,Intellectual Property +461374,International Trade,International Trade +460961,International Trade,International Trade +457933,International Trade,International Trade +453694,International Trade,International Trade +451855,International Trade,International Trade +438285,International Trade,International Trade +435615,International Trade,International Trade +427972,International Trade,International Trade +427226,International Trade,International Trade +425622,International Trade,International Trade +424527,International Trade,International Trade +422742,International Trade,International Trade +422667,International Trade,International Trade +420431,International Trade,International Trade +420053,International Trade,International Trade +420039,International Trade,International Trade +420037,International Trade,International Trade +420034,International Trade,International Trade +420030,International Trade,International Trade +420026,International Trade,International Trade +420001,International Trade,International Trade +418662,International Trade,International Trade +418550,International Trade,International Trade +418548,International Trade,International Trade +417420,International Trade,International Trade +416273,International Trade,International Trade +416271,International Trade,International Trade +416269,International Trade,International Trade +416265,International Trade,International Trade +416257,International Trade,International Trade +416252,International Trade,International Trade +416246,International Trade,International Trade +416242,International Trade,International Trade +416238,International Trade,International Trade +416236,International Trade,International Trade +416231,International Trade,International Trade +416228,International Trade,International Trade +416226,International Trade,International Trade +416223,International Trade,International Trade +416053,International Trade,International Trade +414307,International Trade,International Trade +543254,International Trade,International Trade +543246,International Trade,International Trade +541163,International Trade,International Trade +537086,International Trade,International Trade +534271,International Trade,International Trade +525626,International Trade,International Trade +525622,International Trade,International Trade +525620,International Trade,International Trade +525619,International Trade,International Trade +465306,International Trade,International Trade +463241,International Trade,International Trade +418550,Research and Development,Research and Development +418548,Research and Development,Research and Development +420431,Research and Development,Research and Development +420053,Research and Development,Research and Development +534271,Transportation,Transportation +516334,Transportation,Transportation +516333,Transportation,Transportation +516332,Transportation,Transportation +424527,Transportation,Transportation +422742,Transportation,Transportation +422667,Transportation,Transportation +420039,Transportation,Transportation +420037,Transportation,Transportation +420034,Transportation,Transportation +520774,Consumer Issues,Consumer Issues +513563,Consumer Issues,Consumer Issues +512266,Consumer Issues,Consumer Issues +512265,Consumer Issues,Consumer Issues +512264,Consumer Issues,Consumer Issues +512265,Industry,Industry +512264,Industry,Industry +407187,Industry,Industry +523913,Industry,Industry +520774,Industry,Industry +404166,Infrastructure,Infrastructure +404165,Infrastructure,Infrastructure +411955,Infrastructure,Infrastructure +407187,Infrastructure,Infrastructure +540602,Intellectual Property,Intellectual Property +450911,Industry,Industry +440419,Industry,Industry +422796,Industry,Industry +420670,Industry,Industry +420675,Research and Development,Research and Development +401678,Research and Development,Research and Development +438478,Justice and Law Enforcement,Justice and Law Enforcement +438959,Budget,Budget +438959,Economic Development,Economic Development +438959,Employment and Training,Employment and Training +438959,Government Procurement,Government Procurement +438959,Infrastructure,Infrastructure +438959,Labour,Labour +454758,Consumer Issues,Consumer Issues +454756,Consumer Issues,Consumer Issues +454268,Consumer Issues,Consumer Issues +454262,Consumer Issues,Consumer Issues +454260,Consumer Issues,Consumer Issues +454259,Consumer Issues,Consumer Issues +454258,Consumer Issues,Consumer Issues +427786,Consumer Issues,Consumer Issues +427780,Consumer Issues,Consumer Issues +427778,Consumer Issues,Consumer Issues +427763,Consumer Issues,Consumer Issues +414430,Consumer Issues,Consumer Issues +401738,Consumer Issues,Consumer Issues +506577,Consumer Issues,Consumer Issues +506252,Consumer Issues,Consumer Issues +506251,Consumer Issues,Consumer Issues +506249,Consumer Issues,Consumer Issues +506248,Consumer Issues,Consumer Issues +544485,Immigration,Immigration +527168,Immigration,Immigration +422535,Health,Health +422534,Health,Health +441005,Health,Health +401898,Agriculture,Agriculture +401897,Agriculture,Agriculture +404688,Agriculture,Agriculture +401899,Consumer Issues,Consumer Issues +401898,Consumer Issues,Consumer Issues +401898,Financial Institutions,Financial Institutions +401897,Financial Institutions,Financial Institutions +401900,Financial Institutions,Financial Institutions +401898,Health,Health +401897,Health,Health +404688,Health,Health +404683,Health,Health +401900,Health,Health +401898,Justice and Law Enforcement,Justice and Law Enforcement +401897,Justice and Law Enforcement,Justice and Law Enforcement +404688,Justice and Law Enforcement,Justice and Law Enforcement +404683,Justice and Law Enforcement,Justice and Law Enforcement +401900,Justice and Law Enforcement,Justice and Law Enforcement +401898,Security,Security +401897,Security,Security +404688,Security,Security +404683,Security,Security +401900,Security,Security +401898,Taxation and Finance,Taxation and Finance +401897,Taxation and Finance,Taxation and Finance +404688,Taxation and Finance,Taxation and Finance +401900,Taxation and Finance,Taxation and Finance +404461,Health,Health +401768,Health,Health +466263,Health,Health +466258,Health,Health +464431,Health,Health +411229,Health,Health +411227,Health,Health +408233,Health,Health +404164,Industry,Industry +404163,Industry,Industry +402147,Financial Institutions,Financial Institutions +402146,Financial Institutions,Financial Institutions +428145,Financial Institutions,Financial Institutions +428144,Financial Institutions,Financial Institutions +428143,Financial Institutions,Financial Institutions +428141,Financial Institutions,Financial Institutions +402151,Financial Institutions,Financial Institutions +402150,Financial Institutions,Financial Institutions +402149,Financial Institutions,Financial Institutions +427458,Agriculture,Agriculture +533038,Climate,Climate +507545,Climate,Climate +448428,Energy,Energy +448427,Energy,Energy +440041,Energy,Energy +436522,Energy,Energy +423826,Energy,Energy +411181,Energy,Energy +411178,Energy,Energy +411177,Energy,Energy +411176,Energy,Energy +411172,Energy,Energy +406367,Energy,Energy +401916,Energy,Energy +401913,Energy,Energy +539865,Energy,Energy +516038,Energy,Energy +514777,Energy,Energy +512249,Energy,Energy +511863,Energy,Energy +466444,Energy,Energy +465649,Energy,Energy +448430,Energy,Energy +497987,Employment and Training,Employment and Training +497987,Immigration,Immigration +456499,Economic Development,Economic Development +450749,Economic Development,Economic Development +450748,Economic Development,Economic Development +450747,Economic Development,Economic Development +450746,Economic Development,Economic Development +446443,Economic Development,Economic Development +446438,Economic Development,Economic Development +444413,Economic Development,Economic Development +441114,Economic Development,Economic Development +441053,Economic Development,Economic Development +441048,Economic Development,Economic Development +437602,Economic Development,Economic Development +437595,Economic Development,Economic Development +437589,Economic Development,Economic Development +437588,Economic Development,Economic Development +432360,Economic Development,Economic Development +430890,Economic Development,Economic Development +429392,Economic Development,Economic Development +426526,Economic Development,Economic Development +426487,Economic Development,Economic Development +426483,Economic Development,Economic Development +424021,Economic Development,Economic Development +411884,Small Business,Small Business +411883,Small Business,Small Business +411749,Small Business,Small Business +404247,Small Business,Small Business +463802,Small Business,Small Business +463796,Small Business,Small Business +458005,Small Business,Small Business +456499,Small Business,Small Business +450749,Small Business,Small Business +450748,Small Business,Small Business +450747,Small Business,Small Business +450746,Small Business,Small Business +446443,Small Business,Small Business +446438,Small Business,Small Business +444413,Small Business,Small Business +441114,Small Business,Small Business +441053,Small Business,Small Business +441048,Small Business,Small Business +437602,Small Business,Small Business +437595,Small Business,Small Business +437589,Small Business,Small Business +437588,Small Business,Small Business +432360,Small Business,Small Business +430890,Small Business,Small Business +429392,Small Business,Small Business +426526,Small Business,Small Business +426487,Small Business,Small Business +426483,Small Business,Small Business +424021,Small Business,Small Business +424017,Small Business,Small Business +422005,Small Business,Small Business +421827,Small Business,Small Business +421791,Small Business,Small Business +421756,Small Business,Small Business +421754,Small Business,Small Business +411893,Small Business,Small Business +411891,Small Business,Small Business +411890,Small Business,Small Business +464222,Budget,Budget +464220,Budget,Budget +464215,Budget,Budget +464214,Budget,Budget +427860,International Trade,Commerce international +427859,International Trade,Commerce international +407783,International Trade,Commerce international +407241,International Trade,Commerce international +540960,International Trade,Commerce international +539649,International Trade,Commerce international +533409,International Trade,Commerce international +464222,International Trade,Commerce international +464220,International Trade,Commerce international +464215,International Trade,Commerce international +464214,International Trade,Commerce international +464209,International Trade,Commerce international +439954,International Trade,Commerce international +439953,International Trade,Commerce international +439952,International Trade,Commerce international +439949,International Trade,Commerce international +439947,International Trade,Commerce international +439946,International Trade,Commerce international +439899,International Trade,Commerce international +439897,International Trade,Commerce international +439896,International Trade,Commerce international +439893,International Trade,Commerce international +431787,International Trade,Commerce international +431786,International Trade,Commerce international +431785,International Trade,Commerce international +431784,International Trade,Commerce international +431782,International Trade,Commerce international +431781,International Trade,Commerce international +431778,International Trade,Commerce international +430025,International Trade,Commerce international +429788,International Trade,Commerce international +427869,International Trade,Commerce international +427867,International Trade,Commerce international +427863,International Trade,Commerce international +427862,International Trade,Commerce international +431782,Infrastructure,Infrastructure +431778,Infrastructure,Infrastructure +431787,Infrastructure,Infrastructure +414578,International Trade,International Trade +414577,International Trade,International Trade +401859,International Trade,International Trade +529014,International Trade,International Trade +503882,International Trade,International Trade +453680,International Trade,International Trade +432358,International Trade,International Trade +425011,International Trade,International Trade +451777,Intellectual Property,Intellectual Property +424451,Industry,Industry +478002,Industry,Industry +445366,Taxation and Finance,Taxation and Finance +445364,Taxation and Finance,Taxation and Finance +466953,Taxation and Finance,Taxation and Finance +463428,Taxation and Finance,Taxation and Finance +463427,Taxation and Finance,Taxation and Finance +459251,Taxation and Finance,Taxation and Finance +459249,Taxation and Finance,Taxation and Finance +458928,Taxation and Finance,Taxation and Finance +458676,Taxation and Finance,Taxation and Finance +458669,Taxation and Finance,Taxation and Finance +452138,Taxation and Finance,Taxation and Finance +452136,Taxation and Finance,Taxation and Finance +451780,Taxation and Finance,Taxation and Finance +451777,Taxation and Finance,Taxation and Finance +409552,Environment,Environment +409547,Environment,Environment +409574,Environment,Environment +404220,Fisheries,Fisheries +404219,Fisheries,Fisheries +404220,Mining,Mining +404219,Mining,Mining +404220,Environment,Environment +404219,Environment,Environment +465921,Consumer Issues,Consumer Issues +465921,Regional Development,Regional Development +465921,Industry,Industry +465921,Infrastructure,Infrastructure +402180,Employment and Training,Employment and Training +402179,Employment and Training,Employment and Training +402186,Employment and Training,Employment and Training +402185,Employment and Training,Employment and Training +402184,Employment and Training,Employment and Training +402183,Employment and Training,Employment and Training +402180,Health,Health +402179,Health,Health +402186,Health,Health +402185,Health,Health +402184,Health,Health +402183,Health,Health +405315,Research and Development,Research and Development +405314,Research and Development,Research and Development +405106,Health,Health +405102,Health,Health +406622,Health,Health +406621,Health,Health +405315,Health,Health +405106,Justice and Law Enforcement,Justice and Law Enforcement +405102,Justice and Law Enforcement,Justice and Law Enforcement +401928,Energy,Energy +407424,Energy,Energy +406106,Energy,Energy +406105,Energy,Energy +406104,Energy,Energy +406102,Energy,Energy +406101,Energy,Energy +406100,Energy,Energy +406099,Taxation and Finance,Taxation and Finance +401928,Taxation and Finance,Taxation and Finance +407424,Taxation and Finance,Taxation and Finance +406106,Taxation and Finance,Taxation and Finance +406105,Taxation and Finance,Taxation and Finance +406104,Taxation and Finance,Taxation and Finance +406102,Taxation and Finance,Taxation and Finance +406101,Taxation and Finance,Taxation and Finance +472077,Agriculture,Agriculture +471921,Agriculture,Agriculture +506601,Agriculture,Agriculture +500226,Agriculture,Agriculture +500225,Agriculture,Agriculture +500219,Agriculture,Agriculture +499997,Agriculture,Agriculture +496969,Agriculture,Agriculture +496968,Agriculture,Agriculture +447204,Economic Development,Economic Development +513440,Economic Development,Economic Development +478741,Justice and Law Enforcement,Justice and Law Enforcement +472077,Justice and Law Enforcement,Justice and Law Enforcement +513440,Justice and Law Enforcement,Justice and Law Enforcement +506974,Justice and Law Enforcement,Justice and Law Enforcement +506601,Justice and Law Enforcement,Justice and Law Enforcement +503082,Justice and Law Enforcement,Justice and Law Enforcement +500226,Justice and Law Enforcement,Justice and Law Enforcement +500225,Justice and Law Enforcement,Justice and Law Enforcement +500219,Justice and Law Enforcement,Justice and Law Enforcement +499997,Justice and Law Enforcement,Justice and Law Enforcement +498027,Justice and Law Enforcement,Justice and Law Enforcement +496969,Justice and Law Enforcement,Justice and Law Enforcement +496968,Justice and Law Enforcement,Justice and Law Enforcement +496969,Sports,Sports +496968,Sports,Sports +478741,Sports,Sports +471921,Sports,Sports +457447,Sports,Sports +454474,Sports,Sports +450578,Sports,Sports +448576,Sports,Sports +448575,Sports,Sports +444254,Sports,Sports +444128,Sports,Sports +443769,Sports,Sports +506974,Sports,Sports +506601,Sports,Sports +503082,Sports,Sports +500226,Sports,Sports +500225,Sports,Sports +500219,Sports,Sports +499997,Sports,Sports +434536,Small Business,Small Business +433631,Small Business,Small Business +430553,Small Business,Small Business +430551,Small Business,Small Business +418255,Small Business,Small Business +416000,Small Business,Small Business +415996,Small Business,Small Business +415993,Small Business,Small Business +415992,Small Business,Small Business +415157,Small Business,Small Business +415155,Small Business,Small Business +415153,Small Business,Small Business +415150,Small Business,Small Business +411982,Small Business,Small Business +411981,Small Business,Small Business +411977,Small Business,Small Business +411972,Small Business,Small Business +410180,Small Business,Small Business +410177,Small Business,Small Business +410174,Small Business,Small Business +408928,Small Business,Small Business +408927,Small Business,Small Business +408926,Small Business,Small Business +407969,Small Business,Small Business +407968,Small Business,Small Business +542165,Small Business,Small Business +534176,Small Business,Small Business +530979,Small Business,Small Business +527690,Small Business,Small Business +527688,Small Business,Small Business +527686,Small Business,Small Business +526746,Small Business,Small Business +524076,Small Business,Small Business +523526,Small Business,Small Business +514914,Small Business,Small Business +506256,Small Business,Small Business +499864,Small Business,Small Business +499863,Small Business,Small Business +495364,Small Business,Small Business +487261,Small Business,Small Business +485514,Small Business,Small Business +485513,Small Business,Small Business +465267,Small Business,Small Business +465266,Small Business,Small Business +453703,Small Business,Small Business +451921,Small Business,Small Business +451920,Small Business,Small Business +449575,Small Business,Small Business +449573,Small Business,Small Business +445111,Small Business,Small Business +445108,Small Business,Small Business +444245,Small Business,Small Business +438012,Small Business,Small Business +438010,Small Business,Small Business +438005,Small Business,Small Business +437999,Small Business,Small Business +434686,Budget,Budget +434085,Budget,Budget +429817,Budget,Budget +429816,Budget,Budget +425451,Budget,Budget +417519,Budget,Budget +414957,Budget,Budget +414956,Budget,Budget +414955,Budget,Budget +414954,Budget,Budget +411460,Budget,Budget +411458,Budget,Budget +411455,Budget,Budget +411453,Budget,Budget +408764,Budget,Budget +408763,Budget,Budget +408762,Budget,Budget +408761,Budget,Budget +407970,Budget,Budget +402520,Budget,Budget +402492,Budget,Budget +533218,Budget,Budget +524307,Budget,Budget +523572,Budget,Budget +498972,Budget,Budget +496931,Budget,Budget +496666,Budget,Budget +494507,Budget,Budget +494424,Budget,Budget +491915,Budget,Budget +491906,Budget,Budget +488783,Budget,Budget +472345,Budget,Budget +460632,Budget,Budget +459807,Budget,Budget +450832,Budget,Budget +446127,Budget,Budget +443456,Budget,Budget +429817,Health,Health +429816,Health,Health +414957,Health,Health +414956,Health,Health +414955,Health,Health +414954,Health,Health +411460,Health,Health +402520,Health,Health +402492,Health,Health +402491,Health,Health +534261,Health,Health +533218,Health,Health +527674,Health,Health +524307,Health,Health +523572,Health,Health +506269,Health,Health +498972,Health,Health +491915,Health,Health +491906,Health,Health +488783,Health,Health +488782,Health,Health +472345,Health,Health +434689,Health,Health +488783,Pensions,Pensions +427578,Government Procurement,Government Procurement +465824,Economic Development,Développement économique +465824,Education,Éducation +522418,Research and Development,Recherche et développement +402069,Environment,Environment +404624,Industry,Industry +468872,Industry,Industry +468923,Industry,Industry +404466,Budget,Budget +408425,Agriculture,Agriculture +410484,Employment and Training,Employment and Training +490914,Economic Development,Economic Development +490915,Employment and Training,Employment and Training +490916,Fisheries,Fisheries +490916,Infrastructure,Infrastructure +490914,Mining,Mining +490915,Regional Development,Regional Development +401785,International Relations,International Relations +401785,International Trade,International Trade +427868,Economic Development,Développement économique +427868,Environment,Environnement +427868,Energy,Énergie +424073,Industry,Industry +422397,Intellectual Property,Intellectual Property +459792,Taxation and Finance,Taxation and Finance +408379,International Trade,International Trade +408380,Small Business,Small Business +408376,Industry,Industry +408380,Economic Development,Economic Development +408376,Agriculture,Agriculture +401853,Agriculture,Agriculture +401852,Consumer Issues,Consumer Issues +401852,Financial Institutions,Financial Institutions +401852,Health,Health +404643,Intellectual Property,Intellectual Property +401852,Justice and Law Enforcement,Justice and Law Enforcement +401852,Security,Security +407359,Taxation and Finance,Taxation and Finance +404644,Transportation,Transportation +401559,Climate,Climate +401560,Climate,Climate +412479,Infrastructure,Infrastructure +412479,International Relations,International Relations +539937,Budget,Budget +524398,Education,Éducation +414246,Employment and Training,Emploi et formation +496321,Justice and Law Enforcement,Justice et application des lois +518470,Official Languages,Langues officielles +448669,Research and Development,Recherche et développement +404245,Health,Santé +545040,International Trade,International Trade +401661,International Trade,International Trade +401662,International Trade,International Trade +401663,International Trade,International Trade +473261,Government Procurement,Government Procurement +448097,Industry,Industry +516334,Agriculture,Agriculture +525626,Climate,Climate +422742,Environment,Environment +427226,Health,Health +418662,Intellectual Property,Intellectual Property +462923,International Trade,International Trade +418662,Research and Development,Research and Development +420001,Transportation,Transportation +411955,Consumer Issues,Consumer Issues +512266,Industry,Industry +406500,Infrastructure,Infrastructure +542438,Intellectual Property,Intellectual Property +420670,Intellectual Property,Intellectual Property +471520,Industry,Industry +422796,Taxation and Finance,Taxation and Finance +401678,Environment,Environment +420676,Research and Development,Research and Development +401678,Employment and Training,Employment and Training +401688,Justice and Law Enforcement,Justice and Law Enforcement +438961,Budget,Budget +438959,Climate,Climate +438961,Economic Development,Economic Development +438961,Education,Education +438961,Employment and Training,Employment and Training +438961,Government Procurement,Government Procurement +438961,Infrastructure,Infrastructure +438961,Labour,Labour +438959,Transportation,Transportation +454760,Consumer Issues,Consumer Issues +401738,Climate,Climate +413862,Labour,Labour +413862,Environment,Environment +413862,Government Procurement,Government Procurement +401745,Fisheries,Fisheries +417114,Immigration,Immigration +429478,Health,Health +401899,Agriculture,Agriculture +401900,Consumer Issues,Consumer Issues +401899,Financial Institutions,Financial Institutions +401899,Health,Health +401899,Justice and Law Enforcement,Justice and Law Enforcement +401899,Security,Security +401899,Taxation and Finance,Taxation and Finance +442854,Industry,Industry +405979,Health,Health +404183,Industry,Industry +402148,Financial Institutions,Financial Institutions +457899,Agriculture,Agriculture +401913,Climate,Climate +448429,Energy,Energy +401813,Tourism,Tourism +403088,Transportation,Transportation +403088,Consumer Issues,Consumer Issues +506437,Employment and Training,Employment and Training +506437,Immigration,Immigration +458005,Economic Development,Economic Development +411889,Small Business,Small Business +464209,Budget,Budget +427861,International Trade,Commerce international +431784,Infrastructure,Infrastructure +422261,International Trade,International Trade +451780,Intellectual Property,Intellectual Property +451777,Industry,Industry +445370,Taxation and Finance,Taxation and Finance +409547,International Trade,International Trade +409555,Environment,Environment +404221,Fisheries,Fisheries +404221,Mining,Mining +404221,Environment,Environment +466148,Consumer Issues,Consumer Issues +466148,Regional Development,Regional Development +466148,Industry,Industry +466148,Infrastructure,Infrastructure +408315,International Development,International Development +402182,Employment and Training,Employment and Training +402182,Health,Health +406621,Research and Development,Research and Development +405314,Health,Health +405314,Justice and Law Enforcement,Justice and Law Enforcement +406099,Energy,Energy +406100,Taxation and Finance,Taxation and Finance +478742,Agriculture,Agriculture +499997,Budget,Budget +448577,Economic Development,Economic Development +478742,Justice and Law Enforcement,Justice and Law Enforcement +498027,Sports,Sports +402650,Research and Development,Recherche et développement +437995,Small Business,Small Business +434689,Budget,Budget +434085,Health,Health +491906,Pensions,Pensions +434686,Small Business,Small Business +402491,Taxation and Finance,Taxation and Finance +487936,Consumer Issues,Consumer Issues +502341,Health,Health +505422,Internal Trade,Internal Trade +406011,Transportation,Transportation +496850,Taxation and Finance,Taxation and Finance +405595,Climate,Climate +405598,Economic Development,Economic Development +405600,Energy,Energy +405601,Environment,Environment +467821,Government Procurement,Government Procurement +407393,Consumer Issues,Consumer Issues +420262,Industry,Industry +443512,Internal Trade,Internal Trade +433965,International Trade,International Trade +420273,Taxation and Finance,Taxation and Finance +404253,Transportation,Transportation +404253,Industry,Industry +404253,Energy,Energy +404253,Taxation and Finance,Taxation and Finance +404253,Infrastructure,Infrastructure +404253,Environment,Environment +502388,Defence,Defence +458212,Immigration,Immigration +402154,Mining,Mining +407031,Health,Health +402216,Justice and Law Enforcement,Justice and Law Enforcement +404162,Infrastructure,Infrastructure +480529,Health,Health +457924,Industry,Industry +431750,Research and Development,Research and Development +463897,Infrastructure,Infrastructure +402326,Justice and Law Enforcement,Justice and Law Enforcement +408543,Employment and Training,Emploi et formation +402644,Tourism,Tourism +403538,Government Procurement,Government Procurement +405358,Justice and Law Enforcement,Justice and Law Enforcement +541387,Consumer Issues,Consumer Issues +433418,Environment,Environment +541394,Industry,Industry +433418,Internal Trade,Internal Trade +541394,International Trade,International Trade +438457,Transportation,Transportation +406519,Environment,Environment +406519,Transportation,Transportation +470210,Consumer Issues,Consumer Issues +402771,Employment and Training,Employment and Training +404632,Energy,Energy +402764,Employment and Training,Employment and Training +404516,Economic Development,Développement économique +404516,Industry,Industrie +404864,Government Procurement,Government Procurement +417493,Justice and Law Enforcement,Justice and Law Enforcement +402931,Labour,Labour +437857,Justice and Law Enforcement,Justice and Law Enforcement +442093,Taxation and Finance,Taxation and Finance +411956,Industry,Industry +411509,Health,Health +404224,Consumer Issues,Consumer Issues +406499,Health,Health +404442,Financial Institutions,Financial Institutions +457651,Intellectual Property,Intellectual Property +485338,Economic Development,Economic Development +417032,Small Business,Small Business +488782,Pensions,Pensions +425451,Pensions,Pensions +414957,Pensions,Pensions +414956,Pensions,Pensions +414955,Pensions,Pensions +414954,Pensions,Pensions +411460,Pensions,Pensions +402520,Pensions,Pensions +534261,Pensions,Pensions +527674,Pensions,Pensions +524307,Pensions,Pensions +523572,Pensions,Pensions +506269,Pensions,Pensions +498972,Pensions,Pensions +494424,Pensions,Pensions +434085,Small Business,Small Business +429816,Small Business,Small Business +426866,Small Business,Small Business +417519,Small Business,Small Business +414957,Small Business,Small Business +414956,Small Business,Small Business +414955,Small Business,Small Business +414954,Small Business,Small Business +411458,Small Business,Small Business +411455,Small Business,Small Business +411453,Small Business,Small Business +408764,Small Business,Small Business +408763,Small Business,Small Business +408762,Small Business,Small Business +408761,Small Business,Small Business +407970,Small Business,Small Business +534261,Small Business,Small Business +533218,Small Business,Small Business +527674,Small Business,Small Business +524307,Small Business,Small Business +523572,Small Business,Small Business +514897,Small Business,Small Business +506269,Small Business,Small Business +498972,Small Business,Small Business +496931,Small Business,Small Business +496666,Small Business,Small Business +494424,Small Business,Small Business +491906,Small Business,Small Business +488783,Small Business,Small Business +488782,Small Business,Small Business +472345,Small Business,Small Business +459807,Small Business,Small Business +450832,Small Business,Small Business +450830,Small Business,Small Business +443456,Small Business,Small Business +434689,Small Business,Small Business +534261,Taxation and Finance,Taxation and Finance +533218,Taxation and Finance,Taxation and Finance +527674,Taxation and Finance,Taxation and Finance +524307,Taxation and Finance,Taxation and Finance +523572,Taxation and Finance,Taxation and Finance +514897,Taxation and Finance,Taxation and Finance +498972,Taxation and Finance,Taxation and Finance +496931,Taxation and Finance,Taxation and Finance +496666,Taxation and Finance,Taxation and Finance +494507,Taxation and Finance,Taxation and Finance +494424,Taxation and Finance,Taxation and Finance +491915,Taxation and Finance,Taxation and Finance +491906,Taxation and Finance,Taxation and Finance +488783,Taxation and Finance,Taxation and Finance +488782,Taxation and Finance,Taxation and Finance +460632,Taxation and Finance,Taxation and Finance +459807,Taxation and Finance,Taxation and Finance +450830,Taxation and Finance,Taxation and Finance +450828,Taxation and Finance,Taxation and Finance +446127,Taxation and Finance,Taxation and Finance +446126,Taxation and Finance,Taxation and Finance +443456,Taxation and Finance,Taxation and Finance +442744,Taxation and Finance,Taxation and Finance +434689,Taxation and Finance,Taxation and Finance +434686,Taxation and Finance,Taxation and Finance +434085,Taxation and Finance,Taxation and Finance +429817,Taxation and Finance,Taxation and Finance +429816,Taxation and Finance,Taxation and Finance +426866,Taxation and Finance,Taxation and Finance +425451,Taxation and Finance,Taxation and Finance +425446,Taxation and Finance,Taxation and Finance +419530,Taxation and Finance,Taxation and Finance +419528,Taxation and Finance,Taxation and Finance +417520,Taxation and Finance,Taxation and Finance +417519,Taxation and Finance,Taxation and Finance +414957,Taxation and Finance,Taxation and Finance +414956,Taxation and Finance,Taxation and Finance +414955,Taxation and Finance,Taxation and Finance +414954,Taxation and Finance,Taxation and Finance +411460,Taxation and Finance,Taxation and Finance +411458,Taxation and Finance,Taxation and Finance +411457,Taxation and Finance,Taxation and Finance +411455,Taxation and Finance,Taxation and Finance +411453,Taxation and Finance,Taxation and Finance +408764,Taxation and Finance,Taxation and Finance +408763,Taxation and Finance,Taxation and Finance +408762,Taxation and Finance,Taxation and Finance +408761,Taxation and Finance,Taxation and Finance +407970,Taxation and Finance,Taxation and Finance +402492,Taxation and Finance,Taxation and Finance +429683,Health,Health +429682,Health,Health +532899,Health,Health +532894,Health,Health +530674,Health,Health +405840,Transportation,Transportation +417194,Transportation,Transportation +410244,Transportation,Transportation +487439,Taxation and Finance,Taxation and Finance +467821,Climate,Climate +425929,Climate,Climate +405598,Climate,Climate +405595,Economic Development,Economic Development +467821,Economic Development,Economic Development +405601,Economic Development,Economic Development +405598,Energy,Energy +405595,Energy,Energy +467821,Energy,Energy +425929,Energy,Energy +405603,Energy,Energy +405601,Energy,Energy +405598,Environment,Environment +405595,Environment,Environment +467821,Environment,Environment +438860,Industry,Industry +438859,Industry,Industry +433964,International Trade,International Trade +420262,Taxation and Finance,Taxation and Finance +407393,Taxation and Finance,Taxation and Finance +449651,Taxation and Finance,Taxation and Finance +433965,Taxation and Finance,Taxation and Finance +433964,Taxation and Finance,Taxation and Finance +420274,Taxation and Finance,Taxation and Finance +502278,Defence,Defence +499133,Defence,Defence +482271,Defence,Defence +461682,Defence,Defence +402117,Defence,Defence +543979,Defence,Defence +540044,Defence,Defence +513205,Defence,Defence +511032,Defence,Defence +511030,Defence,Defence +511019,Defence,Defence +510937,Defence,Defence +508248,Defence,Defence +508144,Defence,Defence +505182,Defence,Defence +505172,Defence,Defence +502401,Defence,Defence +502399,Defence,Defence +502392,Defence,Defence +424280,Immigration,Immigration +420270,Immigration,Immigration +459654,Immigration,Immigration +402207,Health,Health +463204,Health,Health +410745,Health,Health +410194,Health,Health +404161,Infrastructure,Infrastructure +404160,Infrastructure,Infrastructure +411271,Infrastructure,Infrastructure +410826,Infrastructure,Infrastructure +409665,Infrastructure,Infrastructure +407418,Infrastructure,Infrastructure +407329,Infrastructure,Infrastructure +407271,Infrastructure,Infrastructure +407216,Infrastructure,Infrastructure +407215,Infrastructure,Infrastructure +407214,Infrastructure,Infrastructure +406402,Infrastructure,Infrastructure +406401,Infrastructure,Infrastructure +406065,Infrastructure,Infrastructure +405475,Infrastructure,Infrastructure +405462,Infrastructure,Infrastructure +404308,Infrastructure,Infrastructure +404280,Infrastructure,Infrastructure +404275,Infrastructure,Infrastructure +462125,Health,Health +431750,Health,Health +506424,Health,Health +506423,Health,Health +506422,Health,Health +457923,Industry,Industry +431750,Industry,Industry +506424,Industry,Industry +506423,Industry,Industry +506422,Industry,Industry +494136,Industry,Industry +494135,Industry,Industry +462125,Industry,Industry +463895,Infrastructure,Infrastructure +463893,Infrastructure,Infrastructure +440928,Infrastructure,Infrastructure +437068,Infrastructure,Infrastructure +437067,Infrastructure,Infrastructure +437063,Infrastructure,Infrastructure +428002,Infrastructure,Infrastructure +415454,Infrastructure,Infrastructure +412401,Infrastructure,Infrastructure +412400,Infrastructure,Infrastructure +412399,Infrastructure,Infrastructure +409057,Infrastructure,Infrastructure +409051,Infrastructure,Infrastructure +403237,Infrastructure,Infrastructure +403234,Infrastructure,Infrastructure +404331,Employment and Training,Emploi et formation +405124,Justice and Law Enforcement,Justice and Law Enforcement +404131,Justice and Law Enforcement,Justice and Law Enforcement +405359,Justice and Law Enforcement,Justice and Law Enforcement +541377,Consumer Issues,Consumer Issues +486711,Consumer Issues,Consumer Issues +454956,Consumer Issues,Consumer Issues +449574,Consumer Issues,Consumer Issues +449572,Consumer Issues,Consumer Issues +449569,Consumer Issues,Consumer Issues +449568,Consumer Issues,Consumer Issues +449567,Consumer Issues,Consumer Issues +449566,Consumer Issues,Consumer Issues +449563,Consumer Issues,Consumer Issues +449558,Consumer Issues,Consumer Issues +447335,Consumer Issues,Consumer Issues +438462,Consumer Issues,Consumer Issues +438457,Consumer Issues,Consumer Issues +433418,Consumer Issues,Consumer Issues +421948,Consumer Issues,Consumer Issues +541411,Consumer Issues,Consumer Issues +541394,Consumer Issues,Consumer Issues +508488,Environment,Environment +541387,Industry,Industry +541377,Industry,Industry +438462,Industry,Industry +541411,Industry,Industry +541387,International Trade,International Trade +541377,International Trade,International Trade +409875,International Trade,International Trade +409868,International Trade,International Trade +409864,International Trade,International Trade +541411,International Trade,International Trade +435230,Transportation,Transportation +433418,Transportation,Transportation +421948,Transportation,Transportation +409863,Transportation,Transportation +409859,Transportation,Transportation +405047,Transportation,Transportation +405046,Transportation,Transportation +405045,Transportation,Transportation +541411,Transportation,Transportation +541394,Transportation,Transportation +541387,Transportation,Transportation +541377,Transportation,Transportation +511054,Transportation,Transportation +511037,Transportation,Transportation +486711,Transportation,Transportation +454956,Transportation,Transportation +449558,Transportation,Transportation +447335,Transportation,Transportation +438462,Transportation,Transportation +402705,Environment,Environment +402705,Transportation,Transportation +470188,Consumer Issues,Consumer Issues +470184,Consumer Issues,Consumer Issues +467326,Consumer Issues,Consumer Issues +467322,Consumer Issues,Consumer Issues +467321,Consumer Issues,Consumer Issues +467320,Consumer Issues,Consumer Issues +405040,Consumer Issues,Consumer Issues +402703,Consumer Issues,Consumer Issues +404628,Energy,Energy +404627,Energy,Energy +404633,Energy,Energy +404862,Government Procurement,Government Procurement +520483,Justice and Law Enforcement,Justice and Law Enforcement +502978,Justice and Law Enforcement,Justice and Law Enforcement +402944,Justice and Law Enforcement,Justice and Law Enforcement +402943,Justice and Law Enforcement,Justice and Law Enforcement +402942,Justice and Law Enforcement,Justice and Law Enforcement +402941,Justice and Law Enforcement,Justice and Law Enforcement +402940,Justice and Law Enforcement,Justice and Law Enforcement +402938,Justice and Law Enforcement,Justice and Law Enforcement +402937,Justice and Law Enforcement,Justice and Law Enforcement +402936,Justice and Law Enforcement,Justice and Law Enforcement +402935,Justice and Law Enforcement,Justice and Law Enforcement +402933,Justice and Law Enforcement,Justice and Law Enforcement +402932,Justice and Law Enforcement,Justice and Law Enforcement +402931,Justice and Law Enforcement,Justice and Law Enforcement +402929,Justice and Law Enforcement,Justice and Law Enforcement +402928,Justice and Law Enforcement,Justice and Law Enforcement +402926,Justice and Law Enforcement,Justice and Law Enforcement +402923,Justice and Law Enforcement,Justice and Law Enforcement +402922,Justice and Law Enforcement,Justice and Law Enforcement +402921,Justice and Law Enforcement,Justice and Law Enforcement +402919,Justice and Law Enforcement,Justice and Law Enforcement +402916,Justice and Law Enforcement,Justice and Law Enforcement +417496,Justice and Law Enforcement,Justice and Law Enforcement +417495,Justice and Law Enforcement,Justice and Law Enforcement +402929,Labour,Labour +402928,Labour,Labour +402926,Labour,Labour +402923,Labour,Labour +402922,Labour,Labour +402921,Labour,Labour +402919,Labour,Labour +402916,Labour,Labour +417496,Labour,Labour +417495,Labour,Labour +417493,Labour,Labour +406683,Labour,Labour +402943,Labour,Labour +402942,Labour,Labour +402941,Labour,Labour +402940,Labour,Labour +402938,Labour,Labour +402937,Labour,Labour +402936,Labour,Labour +402935,Labour,Labour +402933,Labour,Labour +402932,Labour,Labour +407125,Health,Health +405896,Health,Health +432888,Health,Health +424526,Health,Health +423370,Health,Health +422875,Health,Health +422872,Health,Health +422854,Health,Health +415715,Health,Health +406499,Consumer Issues,Consumer Issues +404224,Health,Health +403272,Financial Institutions,Financial Institutions +411561,Intellectual Property,Intellectual Property +403199,Intellectual Property,Intellectual Property +485144,Intellectual Property,Intellectual Property +475912,Intellectual Property,Intellectual Property +468347,Intellectual Property,Intellectual Property +468346,Intellectual Property,Intellectual Property +464913,Intellectual Property,Intellectual Property +458765,Intellectual Property,Intellectual Property +476004,Economic Development,Economic Development +475997,Economic Development,Economic Development +449670,Economic Development,Economic Development +445802,Economic Development,Economic Development +445801,Economic Development,Economic Development +431006,Economic Development,Economic Development +418117,Economic Development,Economic Development +417032,Economic Development,Economic Development +417031,Economic Development,Economic Development +417030,Economic Development,Economic Development +491564,Economic Development,Economic Development +491533,Economic Development,Economic Development +491529,Economic Development,Economic Development +417031,Small Business,Small Business +417030,Small Business,Small Business +482392,Small Business,Small Business +476004,Small Business,Small Business +475997,Small Business,Small Business +475990,Small Business,Small Business +475989,Small Business,Small Business +473704,Small Business,Small Business +473702,Small Business,Small Business +473701,Small Business,Small Business +473699,Small Business,Small Business +449670,Small Business,Small Business +445802,Small Business,Small Business +445801,Small Business,Small Business +445800,Small Business,Small Business +431006,Small Business,Small Business +418117,Small Business,Small Business +428002,Government Procurement,Government Procurement +415454,Government Procurement,Government Procurement +412401,Government Procurement,Government Procurement +412400,Government Procurement,Government Procurement +412399,Government Procurement,Government Procurement +409057,Government Procurement,Government Procurement +409051,Government Procurement,Government Procurement +403237,Government Procurement,Government Procurement +403234,Government Procurement,Government Procurement +463893,Government Procurement,Government Procurement +440928,Government Procurement,Government Procurement +437068,Government Procurement,Government Procurement +437067,Government Procurement,Government Procurement +437063,Government Procurement,Government Procurement +431747,Government Procurement,Government Procurement +431746,Government Procurement,Government Procurement +431745,Government Procurement,Government Procurement +490276,Industry,Industry +490274,Industry,Industry +403233,Industry,Industry +403230,Industry,Industry +487960,Industry,Industry +487957,Industry,Industry +487953,Industry,Industry +487951,Industry,Industry +484817,Industry,Industry +484815,Industry,Industry +484812,Industry,Industry +481515,Industry,Industry +481514,Industry,Industry +481513,Industry,Industry +481512,Industry,Industry +481511,Industry,Industry +479821,Industry,Industry +479820,Industry,Industry +479813,Industry,Industry +479242,Industry,Industry +476958,Industry,Industry +476956,Industry,Industry +476955,Industry,Industry +476953,Industry,Industry +474989,Industry,Industry +474987,Industry,Industry +474986,Industry,Industry +472356,Industry,Industry +472355,Industry,Industry +472354,Industry,Industry +472353,Industry,Industry +472352,Industry,Industry +470299,Industry,Industry +470099,Industry,Industry +470096,Industry,Industry +470095,Industry,Industry +470092,Industry,Industry +470087,Industry,Industry +470085,Industry,Industry +467033,Industry,Industry +467032,Industry,Industry +467029,Industry,Industry +461567,Industry,Industry +459521,Industry,Industry +455456,Industry,Industry +455453,Industry,Industry +455452,Industry,Industry +455450,Industry,Industry +455443,Industry,Industry +452017,Industry,Industry +452016,Industry,Industry +452015,Industry,Industry +452013,Industry,Industry +434982,Industry,Industry +419559,Industry,Industry +538994,Industry,Industry +535942,Industry,Industry +531330,Industry,Industry +524653,Industry,Industry +524652,Industry,Industry +524651,Industry,Industry +524650,Industry,Industry +524649,Industry,Industry +521389,Industry,Industry +521387,Industry,Industry +517822,Industry,Industry +517820,Industry,Industry +517817,Industry,Industry +517814,Industry,Industry +498757,Industry,Industry +495171,Industry,Industry +493016,Industry,Industry +493015,Industry,Industry +493013,Industry,Industry +493012,Industry,Industry +493010,Industry,Industry +493009,Industry,Industry +493007,Industry,Industry +492999,Industry,Industry +412985,Government Procurement,Government Procurement +491537,Government Procurement,Government Procurement +424339,Government Procurement,Government Procurement +424338,Government Procurement,Government Procurement +424336,Government Procurement,Government Procurement +503935,Climate,Climate +501992,Climate,Climate +466974,Climate,Climate +466970,Climate,Climate +459365,Climate,Climate +448190,Climate,Climate +443903,Climate,Climate +442378,Climate,Climate +442376,Climate,Climate +442366,Climate,Climate +439471,Climate,Climate +439443,Climate,Climate +439434,Climate,Climate +439427,Climate,Climate +439409,Climate,Climate +439370,Climate,Climate +435310,Climate,Climate +435203,Climate,Climate +435193,Climate,Climate +432883,Climate,Climate +432882,Climate,Climate +430382,Climate,Climate +429164,Climate,Climate +429121,Climate,Climate +429077,Climate,Climate +429072,Climate,Climate +426789,Climate,Climate +426784,Climate,Climate +426679,Climate,Climate +423218,Climate,Climate +423206,Climate,Climate +418027,Climate,Climate +416584,Climate,Climate +416250,Climate,Climate +541468,Climate,Climate +477424,Transportation,Transportation +477403,Transportation,Transportation +403306,Transportation,Transportation +406813,Taxation and Finance,Taxation and Finance +405727,Government Procurement,Government Procurement +403346,Government Procurement,Government Procurement +419747,Infrastructure,Infrastructure +403507,Environment,Environment +403479,Environment,Environment +444165,Environment,Environment +439314,Environment,Environment +415552,Environment,Environment +415525,Environment,Environment +491524,Government Procurement,Government Procurement +403393,Budget,Budget +407639,Defence,Defence +407715,Defence,Defence +473736,Labour,Labour +471233,Labour,Labour +419884,Labour,Labour +403435,Labour,Labour +403433,Labour,Labour +514819,Labour,Labour +502754,Labour,Labour +479633,Labour,Labour +479606,Labour,Labour +477614,Labour,Labour +475981,Labour,Labour +403529,Security,Security +403511,Security,Security +403567,Security,Security +403538,Security,Security +403518,Housing,Housing +522517,Housing,Housing +428428,Housing,Housing +515394,Justice and Law Enforcement,Justice and Law Enforcement +510342,Justice and Law Enforcement,Justice and Law Enforcement +428435,Justice and Law Enforcement,Justice and Law Enforcement +403520,Justice and Law Enforcement,Justice and Law Enforcement +543391,Justice and Law Enforcement,Justice and Law Enforcement +408480,Education,Éducation +403661,Education,Éducation +414162,Education,Éducation +408480,Official Languages,Langues officielles +403661,Official Languages,Langues officielles +415787,Mining,Mining +415783,Mining,Mining +428787,Mining,Mining +403698,Research and Development,Research and Development +415787,Transportation,Transportation +428787,Transportation,Transportation +405635,Education,Education +405634,Education,Education +405643,Education,Education +405641,Education,Education +405640,Education,Education +527055,International Trade,International Trade +521998,International Trade,International Trade +441682,International Trade,International Trade +441678,International Trade,International Trade +410733,Economic Development,Economic Development +407317,Economic Development,Economic Development +406054,Immigration,Immigration +410733,Immigration,Immigration +407317,Research and Development,Research and Development +406054,Research and Development,Research and Development +428127,Financial Institutions,Financial Institutions +428125,Financial Institutions,Financial Institutions +415839,Financial Institutions,Financial Institutions +415836,Financial Institutions,Financial Institutions +413424,Financial Institutions,Financial Institutions +413421,Financial Institutions,Financial Institutions +410023,Financial Institutions,Financial Institutions +403983,Financial Institutions,Financial Institutions +403981,Financial Institutions,Financial Institutions +403977,Financial Institutions,Financial Institutions +403974,Financial Institutions,Financial Institutions +403972,Financial Institutions,Financial Institutions +403968,Financial Institutions,Financial Institutions +403964,Financial Institutions,Financial Institutions +454763,Financial Institutions,Financial Institutions +454762,Financial Institutions,Financial Institutions +454761,Financial Institutions,Financial Institutions +454107,Financial Institutions,Financial Institutions +454106,Financial Institutions,Financial Institutions +454105,Financial Institutions,Financial Institutions +454104,Financial Institutions,Financial Institutions +454103,Financial Institutions,Financial Institutions +454101,Financial Institutions,Financial Institutions +442922,Financial Institutions,Financial Institutions +442831,Financial Institutions,Financial Institutions +428134,Financial Institutions,Financial Institutions +428132,Financial Institutions,Financial Institutions +428131,Financial Institutions,Financial Institutions +405953,Health,Health +404412,Health,Health +406333,Health,Health +406332,Health,Health +406331,Health,Health +405953,Research and Development,Research and Development +404412,Research and Development,Research and Development +406333,Research and Development,Research and Development +406332,Research and Development,Research and Development +406331,Research and Development,Research and Development +405282,Health,Health +405279,Health,Health +426570,Health,Health +426567,Health,Health +426562,Health,Health +426559,Health,Health +405288,Health,Health +405287,Health,Health +405286,Health,Health +405285,Health,Health +405284,Health,Health +410873,Small Business,Small Business +410872,Small Business,Small Business +405288,Small Business,Small Business +405287,Small Business,Small Business +405286,Small Business,Small Business +405285,Small Business,Small Business +405284,Small Business,Small Business +405283,Small Business,Small Business +405282,Small Business,Small Business +405279,Small Business,Small Business +426567,Small Business,Small Business +426562,Small Business,Small Business +405282,Taxation and Finance,Taxation and Finance +405279,Taxation and Finance,Taxation and Finance +426570,Taxation and Finance,Taxation and Finance +426567,Taxation and Finance,Taxation and Finance +426562,Taxation and Finance,Taxation and Finance +426559,Taxation and Finance,Taxation and Finance +426555,Taxation and Finance,Taxation and Finance +410873,Taxation and Finance,Taxation and Finance +410872,Taxation and Finance,Taxation and Finance +405288,Taxation and Finance,Taxation and Finance +405287,Taxation and Finance,Taxation and Finance +405286,Taxation and Finance,Taxation and Finance +405285,Taxation and Finance,Taxation and Finance +405284,Taxation and Finance,Taxation and Finance +404637,Government Procurement,Government Procurement +404636,Government Procurement,Government Procurement +404637,Industry,Industry +404636,Industry,Industry +491925,Climate,Climate +491923,Climate,Climate +410400,Climate,Climate +410249,Climate,Climate +408523,Climate,Climate +404138,Climate,Climate +404135,Climate,Climate +404130,Climate,Climate +404129,Climate,Climate +469661,Climate,Climate +469659,Climate,Climate +469658,Climate,Climate +467974,Climate,Climate +452506,Climate,Climate +440378,Climate,Climate +439820,Climate,Climate +510605,Climate,Climate +510604,Climate,Climate +502955,Climate,Climate +496697,Climate,Climate +406230,Health,Health +406230,Research and Development,Research and Development +429537,Agriculture,Agriculture +424589,Agriculture,Agriculture +429540,Agriculture,Agriculture +429539,Agriculture,Agriculture +424589,Budget,Budget +406413,Budget,Budget +429540,Budget,Budget +429539,Budget,Budget +429538,Budget,Budget +429537,Budget,Budget +424590,Climate,Climate +424589,Climate,Climate +429540,Climate,Climate +429539,Climate,Climate +429538,Climate,Climate +429537,Climate,Climate +429536,Consumer Issues,Consumer Issues +424590,Consumer Issues,Consumer Issues +429540,Consumer Issues,Consumer Issues +429539,Consumer Issues,Consumer Issues +429538,Consumer Issues,Consumer Issues +424590,Economic Development,Economic Development +424589,Economic Development,Economic Development +406411,Economic Development,Economic Development +429540,Economic Development,Economic Development +429539,Economic Development,Economic Development +429538,Economic Development,Economic Development +406409,Energy,Energy +406407,Energy,Energy +429540,Energy,Energy +429539,Energy,Energy +429538,Energy,Energy +429537,Energy,Energy +429536,Energy,Energy +424590,Energy,Energy +406413,Energy,Energy +424590,Environment,Environment +424589,Environment,Environment +406413,Environment,Environment +406411,Environment,Environment +406409,Environment,Environment +429540,Environment,Environment +429539,Environment,Environment +429538,Environment,Environment +429537,Environment,Environment +406409,Industry,Industry +406407,Industry,Industry +429540,Industry,Industry +429539,Industry,Industry +429538,Industry,Industry +429537,Industry,Industry +429536,Industry,Industry +424590,Industry,Industry +424589,Industry,Industry +406413,Industry,Industry +406409,Research and Development,Research and Development +406407,Research and Development,Research and Development +429540,Research and Development,Research and Development +429539,Research and Development,Research and Development +429538,Research and Development,Research and Development +429537,Research and Development,Research and Development +429536,Research and Development,Research and Development +424590,Research and Development,Research and Development +406413,Research and Development,Research and Development +405252,Health,Health +405074,Health,Health +410862,Health,Health +405268,Health,Health +405263,Health,Health +405262,Health,Health +405260,Health,Health +405259,Health,Health +405258,Health,Health +405252,Small Business,Small Business +405074,Small Business,Small Business +410860,Small Business,Small Business +410857,Small Business,Small Business +405268,Small Business,Small Business +405263,Small Business,Small Business +405262,Small Business,Small Business +405260,Small Business,Small Business +405259,Small Business,Small Business +405258,Small Business,Small Business +405252,Taxation and Finance,Taxation and Finance +405074,Taxation and Finance,Taxation and Finance +410860,Taxation and Finance,Taxation and Finance +410857,Taxation and Finance,Taxation and Finance +405268,Taxation and Finance,Taxation and Finance +405263,Taxation and Finance,Taxation and Finance +405262,Taxation and Finance,Taxation and Finance +405260,Taxation and Finance,Taxation and Finance +405259,Taxation and Finance,Taxation and Finance +405258,Taxation and Finance,Taxation and Finance +405291,Health,Health +405290,Health,Health +454250,Health,Health +454249,Health,Health +454247,Health,Health +454246,Health,Health +454245,Health,Health +427035,Health,Health +427033,Health,Health +427031,Health,Health +427030,Health,Health +427029,Health,Health +427028,Health,Health +427027,Health,Health +427026,Health,Health +427025,Health,Health +410865,Health,Health +410863,Health,Health +405301,Health,Health +405299,Health,Health +405295,Health,Health +405294,Health,Health +405290,Small Business,Small Business +454249,Small Business,Small Business +410866,Small Business,Small Business +410863,Small Business,Small Business +405301,Small Business,Small Business +405299,Small Business,Small Business +405295,Small Business,Small Business +405294,Small Business,Small Business +405293,Small Business,Small Business +405291,Taxation and Finance,Taxation and Finance +405290,Taxation and Finance,Taxation and Finance +454249,Taxation and Finance,Taxation and Finance +427035,Taxation and Finance,Taxation and Finance +427033,Taxation and Finance,Taxation and Finance +427032,Taxation and Finance,Taxation and Finance +427030,Taxation and Finance,Taxation and Finance +427029,Taxation and Finance,Taxation and Finance +427028,Taxation and Finance,Taxation and Finance +427027,Taxation and Finance,Taxation and Finance +427026,Taxation and Finance,Taxation and Finance +410866,Taxation and Finance,Taxation and Finance +410863,Taxation and Finance,Taxation and Finance +405301,Taxation and Finance,Taxation and Finance +405299,Taxation and Finance,Taxation and Finance +405295,Taxation and Finance,Taxation and Finance +405294,Taxation and Finance,Taxation and Finance +404640,Government Procurement,Government Procurement +533405,Economic Development,Economic Development +527565,Economic Development,Economic Development +429499,Economic Development,Economic Development +425742,Economic Development,Economic Development +425720,Economic Development,Economic Development +425717,Economic Development,Economic Development +422285,Economic Development,Economic Development +422078,Economic Development,Economic Development +422006,Economic Development,Economic Development +422000,Economic Development,Economic Development +421998,Economic Development,Economic Development +421995,Economic Development,Economic Development +421991,Economic Development,Economic Development +421988,Economic Development,Economic Development +421986,Economic Development,Economic Development +421274,Economic Development,Economic Development +421265,Economic Development,Economic Development +415179,Economic Development,Economic Development +414110,Economic Development,Economic Development +413084,Economic Development,Economic Development +404192,Economic Development,Economic Development +460398,Economic Development,Economic Development +452302,Economic Development,Economic Development +451665,Economic Development,Economic Development +447524,Economic Development,Economic Development +447519,Economic Development,Economic Development +443278,Economic Development,Economic Development +442342,Economic Development,Economic Development +437915,Economic Development,Economic Development +436335,Economic Development,Economic Development +435820,Economic Development,Economic Development +435803,Economic Development,Economic Development +435766,Economic Development,Economic Development +433798,Economic Development,Economic Development +431084,Economic Development,Economic Development +431082,Economic Development,Economic Development +544628,Economic Development,Economic Development +541406,Economic Development,Economic Development +541404,Economic Development,Economic Development +457879,Infrastructure,Infrastructure +428050,Industry,Industry +404382,Industry,Industry +457880,Industry,Industry +457879,Industry,Industry +410304,Privacy and Access to Information,Privacy and Access to Information +421945,Privacy and Access to Information,Privacy and Access to Information +416665,Privacy and Access to Information,Privacy and Access to Information +416464,Privacy and Access to Information,Privacy and Access to Information +410307,Privacy and Access to Information,Privacy and Access to Information +410306,Privacy and Access to Information,Privacy and Access to Information +405278,Health,Health +405277,Health,Health +405276,Health,Health +405275,Health,Health +405274,Health,Health +405273,Health,Health +405270,Health,Health +434307,Health,Health +426606,Health,Health +426600,Health,Health +426596,Health,Health +426591,Health,Health +426590,Health,Health +426586,Health,Health +426583,Health,Health +426579,Health,Health +410870,Health,Health +405281,Health,Health +405273,Small Business,Small Business +405270,Small Business,Small Business +426603,Small Business,Small Business +426596,Small Business,Small Business +410869,Small Business,Small Business +410868,Small Business,Small Business +405281,Small Business,Small Business +405280,Small Business,Small Business +405278,Small Business,Small Business +405277,Small Business,Small Business +405276,Small Business,Small Business +405275,Small Business,Small Business +405273,Taxation and Finance,Taxation and Finance +405270,Taxation and Finance,Taxation and Finance +426606,Taxation and Finance,Taxation and Finance +426603,Taxation and Finance,Taxation and Finance +426596,Taxation and Finance,Taxation and Finance +426590,Taxation and Finance,Taxation and Finance +431744,Government Procurement,Government Procurement +492997,Industry,Industry +412987,Government Procurement,Government Procurement +507560,Climate,Climate +403292,Taxation and Finance,Taxation and Finance +477430,Transportation,Transportation +404277,Health,Santé +406815,Taxation and Finance,Taxation and Finance +403337,International Relations,International Relations +403339,Government Procurement,Government Procurement +403341,International Relations,International Relations +507098,Government Procurement,Government Procurement +403359,Government Procurement,Government Procurement +404985,Agriculture,Agriculture +404987,Infrastructure,Infrastructure +440557,Environment,Environment +403608,Employment and Training,Emploi et formation +415491,Environment,Environment +491551,Government Procurement,Government Procurement +424242,Budget,Budget +407641,Defence,Defence +407717,Defence,Defence +473738,Labour,Labour +405362,Justice and Law Enforcement,Justice and Law Enforcement +403500,Internal Trade,Internal Trade +403533,Security,Security +403519,Housing,Housing +538517,Justice and Law Enforcement,Justice and Law Enforcement +403608,Labour,Labour +403654,Education,Éducation +403654,Official Languages,Langues officielles +411339,Education,Éducation +418349,Official Languages,Langues officielles +428786,Mining,Mining +428786,Research and Development,Research and Development +415817,Transportation,Transportation +405638,Education,Education +403749,Health,Health +425874,International Trade,International Trade +403769,Defence,Defence +406054,Economic Development,Economic Development +407317,Immigration,Immigration +410733,Research and Development,Research and Development +428130,Financial Institutions,Financial Institutions +403986,International Relations,International Relations +403987,International Relations,International Relations +403988,International Relations,International Relations +403989,International Relations,International Relations +404008,Fisheries,Fisheries +406330,Health,Health +406330,Research and Development,Research and Development +405283,Health,Health +426559,Small Business,Small Business +405283,Taxation and Finance,Taxation and Finance +404638,Government Procurement,Government Procurement +404638,Industry,Industry +407113,Health,Santé +496696,Climate,Climate +406230,International Relations,International Relations +418445,Health,Health +407669,Research and Development,Research and Development +406230,Economic Development,Economic Development +429538,Agriculture,Agriculture +424590,Budget,Budget +429536,Climate,Climate +429537,Consumer Issues,Consumer Issues +429537,Economic Development,Economic Development +406411,Energy,Energy +429536,Environment,Environment +406411,Industry,Industry +406411,Research and Development,Research and Development +404631,Energy,Energy +405255,Health,Health +405255,Small Business,Small Business +405255,Taxation and Finance,Taxation and Finance +405293,Health,Health +405291,Small Business,Small Business +405293,Taxation and Finance,Taxation and Finance +404640,Industry,Industry +408661,Government Procurement,Government Procurement +539479,Economic Development,Economic Development +457880,Infrastructure,Infrastructure +428097,Industry,Industry +404207,Infrastructure,Infrastructure +410305,Privacy and Access to Information,Privacy and Access to Information +405280,Health,Health +405274,Small Business,Small Business +405274,Taxation and Finance,Taxation and Finance +404232,International Relations,International Relations +455324,Government Procurement,Government Procurement +406615,Industry,Industry +409557,Privacy and Access to Information,Privacy and Access to Information +423883,Security,Security +405581,Justice and Law Enforcement,Justice and Law Enforcement +405581,Security,Security +410768,Transportation,Transportation +404938,International Trade,International Trade +404989,International Trade,International Trade +522630,Budget,Budget +538131,Employment and Training,Employment and Training +519975,Health,Health +404946,International Trade,International Trade +404949,International Trade,International Trade +404950,International Trade,International Trade +404948,International Trade,International Trade +404939,International Trade,International Trade +410136,Transportation,Transports +423560,Government Procurement,Government Procurement +456006,Security,Security +437601,Infrastructure,Infrastructure +467534,International Relations,International Relations +467528,Intellectual Property,Intellectual Property +527307,Employment and Training,Employment and Training +437598,Intellectual Property,Intellectual Property +437598,Industry,Industry +467523,Intellectual Property,Intellectual Property +440672,Intellectual Property,Intellectual Property +440672,Taxation and Finance,Taxation and Finance +440662,Industry,Industry +404307,Infrastructure,Infrastructure +404317,Transportation,Transportation +404317,Internal Trade,Internal Trade +404335,Climate,Climate +404335,Environment,Environment +407107,Budget,Budget +431004,Government Procurement,Government Procurement +406674,Economic Development,Economic Development +406677,Mining,Mining +406677,Regional Development,Regional Development +407454,Health,Health +407454,Taxation and Finance,Taxation and Finance +407497,Infrastructure,Infrastructure +407497,International Trade,International Trade +407497,Transportation,Transportation +459060,Industry,Industry +411745,Economic Development,Economic Development +411745,Employment and Training,Employment and Training +411745,Industry,Industry +411745,Transportation,Transportation +404892,Housing,Housing +411751,Employment and Training,Employment and Training +449947,Economic Development,Economic Development +418724,Environment,Environment +418724,Regional Development,Regional Development +405959,Sports,Sports +439929,Tourism,Tourism +414108,Government Procurement,Government Procurement +414108,Labour,Labour +404893,Housing,Housing +424545,Health,Health +424545,Education,Education +424545,Employment and Training,Employment and Training +424545,Immigration,Immigration +404468,Health,Health +406042,Economic Development,Développement économique +406042,Employment and Training,Emploi et formation +411365,International Development,International Development +407439,Employment and Training,Emploi et formation +409236,Health,Santé +409068,Government Procurement,Government Procurement +407434,Employment and Training,Emploi et formation +406432,Health,Santé +407947,Financial Institutions,Financial Institutions +510201,Consumer Issues,Consumer Issues +512290,Industry,Industry +522057,Infrastructure,Infrastructure +408524,Intellectual Property,Intellectual Property +516287,Government Procurement,Government Procurement +533013,Energy,Energy +527341,Economic Development,Economic Development +527333,Environment,Environment +530386,Climate,Climate +406348,Health,Health +406978,Infrastructure,Infrastructure +406978,Municipalities,Municipalities +406978,Regional Development,Regional Development +406978,Tourism,Tourism +408826,Agriculture,Agriculture +422697,Economic Development,Economic Development +408826,Tourism,Tourism +411400,International Trade,International Trade +404665,Environment,Environment +404666,Environment,Environment +463684,International Trade,International Trade +404668,Environment,Environment +404669,Environment,Environment +404670,Environment,Environment +404672,Environment,Environment +404673,Environment,Environment +404674,Environment,Environment +404676,Environment,Environment +404677,Environment,Environment +404678,Environment,Environment +404679,Environment,Environment +404680,Environment,Environment +404681,Environment,Environment +404682,Environment,Environment +404684,Environment,Environment +404685,Environment,Environment +404686,Environment,Environment +404687,Environment,Environment +404690,Environment,Environment +404691,Environment,Environment +404692,Environment,Environment +404693,Environment,Environment +404694,Environment,Environment +412892,Industry,Industry +412892,Taxation and Finance,Taxation and Finance +404765,Environment,Environment +404766,Environment,Environment +404767,Environment,Environment +404768,Environment,Environment +404769,Environment,Environment +407189,International Trade,International Trade +408418,International Trade,International Trade +427360,International Trade,International Trade +406374,Economic Development,Economic Development +406679,Economic Development,Economic Development +406680,Research and Development,Research and Development +407892,Employment and Training,Employment and Training +406680,Industry,Industry +410774,Agriculture,Agriculture +500885,Agriculture,Agriculture +536986,Economic Development,Economic Development +536986,International Trade,International Trade +437372,Small Business,Small Business +413128,Environment,Environment +413128,International Trade,International Trade +413128,Transportation,Transportation +480897,Environment,Environment +479011,Environment,Environment +459924,Health,Health +511054,Climate,Climate +541394,Economic Development,Economic Development +405047,Research and Development,Research and Development +459423,Employment and Training,Employment and Training +414465,Official Languages,Official Languages +405087,Housing,Housing +438638,Immigration,Immigration +510964,Official Languages,Langues officielles +455316,Government Procurement,Government Procurement +457199,Industry,Industry +417818,Small Business,Small Business +405177,Government Procurement,Government Procurement +405179,Economic Development,Economic Development +405179,Industry,Industry +406633,International Relations,International Relations +407278,Industry,Industry +426586,Taxation and Finance,Taxation and Finance +426583,Taxation and Finance,Taxation and Finance +410869,Taxation and Finance,Taxation and Finance +410868,Taxation and Finance,Taxation and Finance +405281,Taxation and Finance,Taxation and Finance +405280,Taxation and Finance,Taxation and Finance +405278,Taxation and Finance,Taxation and Finance +405277,Taxation and Finance,Taxation and Finance +405276,Taxation and Finance,Taxation and Finance +405275,Taxation and Finance,Taxation and Finance +407814,Government Procurement,Government Procurement +406615,Government Procurement,Government Procurement +464512,Industry,Industry +455324,Industry,Industry +423883,Industry,Industry +407814,Industry,Industry +464512,Privacy and Access to Information,Privacy and Access to Information +455324,Privacy and Access to Information,Privacy and Access to Information +409557,Security,Security +464512,Security,Security +455324,Security,Security +404934,Transportation,Transportation +519975,Budget,Budget +517510,Budget,Budget +517510,Health,Health +517506,Health,Health +543731,Health,Health +538131,Health,Health +410137,Transportation,Transports +417485,Government Procurement,Government Procurement +530366,Government Procurement,Government Procurement +468333,Government Procurement,Government Procurement +456006,Government Procurement,Government Procurement +417485,Security,Security +477348,Infrastructure,Infrastructure +467534,Infrastructure,Infrastructure +455621,Infrastructure,Infrastructure +455621,International Relations,International Relations +437601,International Relations,International Relations +437566,Intellectual Property,Intellectual Property +437563,Intellectual Property,Intellectual Property +467779,Intellectual Property,Intellectual Property +467773,Intellectual Property,Intellectual Property +511902,Employment and Training,Employment and Training +467528,Employment and Training,Employment and Training +437593,Intellectual Property,Intellectual Property +440664,Intellectual Property,Intellectual Property +440662,Intellectual Property,Intellectual Property +467560,Intellectual Property,Intellectual Property +437591,Industry,Industry +467560,Industry,Industry +451505,Industry,Industry +440672,Industry,Industry +440664,Industry,Industry +404334,Climate,Climate +404333,Climate,Climate +404334,Environment,Environment +404333,Environment,Environment +407106,Budget,Budget +404339,Budget,Budget +414641,Budget,Budget +414640,Budget,Budget +413876,Budget,Budget +413875,Budget,Budget +412567,Budget,Budget +411670,Budget,Budget +408733,Budget,Budget +408429,Budget,Budget +407203,Budget,Budget +407178,Budget,Budget +407109,Budget,Budget +431002,Government Procurement,Government Procurement +412981,Government Procurement,Government Procurement +433947,Government Procurement,Government Procurement +431005,Government Procurement,Government Procurement +405700,Economic Development,Economic Development +419887,Economic Development,Economic Development +406677,Economic Development,Economic Development +406676,Economic Development,Economic Development +406676,Mining,Mining +406674,Mining,Mining +406676,Regional Development,Regional Development +406674,Regional Development,Regional Development +407105,Health,Health +407104,Health,Health +414123,Health,Health +414122,Health,Health +407105,Taxation and Finance,Taxation and Finance +407104,Taxation and Finance,Taxation and Finance +414123,Taxation and Finance,Taxation and Finance +414122,Taxation and Finance,Taxation and Finance +407490,Infrastructure,Infrastructure +405729,Infrastructure,Infrastructure +407490,International Trade,International Trade +405729,International Trade,International Trade +451705,International Trade,International Trade +450286,International Trade,International Trade +407490,Transportation,Transportation +405729,Transportation,Transportation +451705,Transportation,Transportation +450286,Transportation,Transportation +404374,Industry,Industry +470998,Industry,Industry +404414,Employment and Training,Employment and Training +418723,Economic Development,Economic Development +418722,Economic Development,Economic Development +418723,Environment,Environment +418722,Environment,Environment +449947,Environment,Environment +449942,Environment,Environment +406117,Regional Development,Regional Development +429174,Tourism,Tourism +418725,Tourism,Tourism +407163,Tourism,Tourism +407438,Employment and Training,Emploi et formation +406439,Employment and Training,Emploi et formation +423671,Employment and Training,Emploi et formation +419486,Employment and Training,Emploi et formation +417755,Employment and Training,Emploi et formation +417754,Employment and Training,Emploi et formation +415549,Employment and Training,Emploi et formation +412313,Employment and Training,Emploi et formation +409236,Employment and Training,Emploi et formation +409235,Employment and Training,Emploi et formation +407441,Employment and Training,Emploi et formation +407440,Employment and Training,Emploi et formation +409235,Health,Santé +406439,Health,Santé +423671,Health,Santé +419486,Health,Santé +417755,Health,Santé +417754,Health,Santé +415549,Health,Santé +412313,Health,Santé +409066,Government Procurement,Government Procurement +409064,Government Procurement,Government Procurement +407432,Employment and Training,Emploi et formation +406432,Employment and Training,Emploi et formation +407436,Employment and Training,Emploi et formation +407072,Financial Institutions,Financial Institutions +406728,Financial Institutions,Financial Institutions +410066,Financial Institutions,Financial Institutions +506597,Consumer Issues,Consumer Issues +497104,Consumer Issues,Consumer Issues +406347,Consumer Issues,Consumer Issues +526828,Consumer Issues,Consumer Issues +522057,Consumer Issues,Consumer Issues +518886,Consumer Issues,Consumer Issues +514518,Consumer Issues,Consumer Issues +512290,Consumer Issues,Consumer Issues +510201,Industry,Industry +497104,Industry,Industry +408524,Industry,Industry +407084,Industry,Industry +522057,Industry,Industry +518886,Industry,Industry +514518,Industry,Industry +510201,Infrastructure,Infrastructure +467918,Government Procurement,Government Procurement +516287,Energy,Energy +459601,Energy,Energy +414645,Energy,Energy +536569,Energy,Energy +527333,Economic Development,Economic Development +516287,Economic Development,Economic Development +536569,Economic Development,Economic Development +533013,Economic Development,Economic Development +530386,Economic Development,Economic Development +516287,Environment,Environment +467918,Environment,Environment +536569,Environment,Environment +530386,Environment,Environment +527341,Environment,Environment +527341,Climate,Climate +516287,Climate,Climate +408825,Agriculture,Agriculture +408823,Agriculture,Agriculture +422698,Agriculture,Agriculture +422697,Agriculture,Agriculture +422696,Agriculture,Agriculture +422695,Agriculture,Agriculture +408955,Agriculture,Agriculture +408953,Agriculture,Agriculture +422696,Economic Development,Economic Development +422695,Economic Development,Economic Development +408955,Economic Development,Economic Development +408953,Economic Development,Economic Development +408826,Economic Development,Economic Development +408825,Economic Development,Economic Development +408823,Economic Development,Economic Development +422698,Economic Development,Economic Development +408825,Tourism,Tourism +408823,Tourism,Tourism +422698,Tourism,Tourism +422697,Tourism,Tourism +422696,Tourism,Tourism +422695,Tourism,Tourism +408955,Tourism,Tourism +408953,Tourism,Tourism +408430,International Trade,International Trade +405961,International Trade,International Trade +434201,International Trade,International Trade +434059,International Trade,International Trade +433981,International Trade,International Trade +431643,International Trade,International Trade +426173,International Trade,International Trade +425263,International Trade,International Trade +418703,International Trade,International Trade +417825,International Trade,International Trade +414149,International Trade,International Trade +456606,International Trade,International Trade +454094,International Trade,International Trade +436911,International Trade,International Trade +434202,International Trade,International Trade +431644,International Trade,International Trade +425265,International Trade,International Trade +418704,International Trade,International Trade +417823,International Trade,International Trade +417110,International Trade,International Trade +417109,International Trade,International Trade +417107,International Trade,International Trade +414311,International Trade,International Trade +411399,International Trade,International Trade +411398,International Trade,International Trade +408431,International Trade,International Trade +465927,International Trade,International Trade +465370,International Trade,International Trade +404823,International Trade,International Trade +405861,International Trade,International Trade +404824,International Trade,International Trade +408419,International Trade,International Trade +406003,International Trade,International Trade +404825,International Trade,International Trade +406678,Economic Development,Economic Development +405705,Economic Development,Economic Development +449852,Economic Development,Economic Development +447589,Economic Development,Economic Development +428957,Economic Development,Economic Development +419886,Economic Development,Economic Development +419849,Economic Development,Economic Development +406680,Economic Development,Economic Development +406679,Research and Development,Research and Development +406678,Research and Development,Research and Development +407891,Employment and Training,Employment and Training +407889,Employment and Training,Employment and Training +406679,Industry,Industry +406678,Industry,Industry +404891,Agriculture,Agriculture +497394,Agriculture,Agriculture +497392,Agriculture,Agriculture +411046,Agriculture,Agriculture +409475,Agriculture,Agriculture +407235,Agriculture,Agriculture +494336,Agriculture,Agriculture +494334,Agriculture,Agriculture +490930,Agriculture,Agriculture +490929,Agriculture,Agriculture +490927,Agriculture,Agriculture +490926,Agriculture,Agriculture +490923,Agriculture,Agriculture +490921,Agriculture,Agriculture +486721,Agriculture,Agriculture +486717,Agriculture,Agriculture +486709,Agriculture,Agriculture +486707,Agriculture,Agriculture +483412,Agriculture,Agriculture +483411,Agriculture,Agriculture +483410,Agriculture,Agriculture +483409,Agriculture,Agriculture +483398,Agriculture,Agriculture +483397,Agriculture,Agriculture +483396,Agriculture,Agriculture +481240,Agriculture,Agriculture +481238,Agriculture,Agriculture +481236,Agriculture,Agriculture +477323,Agriculture,Agriculture +477317,Agriculture,Agriculture +477304,Agriculture,Agriculture +474526,Agriculture,Agriculture +474524,Agriculture,Agriculture +474523,Agriculture,Agriculture +474521,Agriculture,Agriculture +474520,Agriculture,Agriculture +474518,Agriculture,Agriculture +474517,Agriculture,Agriculture +474513,Agriculture,Agriculture +474510,Agriculture,Agriculture +472276,Agriculture,Agriculture +472275,Agriculture,Agriculture +469192,Agriculture,Agriculture +469191,Agriculture,Agriculture +469190,Agriculture,Agriculture +469189,Agriculture,Agriculture +469188,Agriculture,Agriculture +467347,Agriculture,Agriculture +467345,Agriculture,Agriculture +467337,Agriculture,Agriculture +463466,Agriculture,Agriculture +459925,Agriculture,Agriculture +459924,Agriculture,Agriculture +459286,Agriculture,Agriculture +459284,Agriculture,Agriculture +458221,Agriculture,Agriculture +458220,Agriculture,Agriculture +458219,Agriculture,Agriculture +455190,Agriculture,Agriculture +455188,Agriculture,Agriculture +455186,Agriculture,Agriculture +449353,Agriculture,Agriculture +449350,Agriculture,Agriculture +449348,Agriculture,Agriculture +446502,Agriculture,Agriculture +446496,Agriculture,Agriculture +446494,Agriculture,Agriculture +446493,Agriculture,Agriculture +446492,Agriculture,Agriculture +437370,Agriculture,Agriculture +434793,Agriculture,Agriculture +434790,Agriculture,Agriculture +434779,Agriculture,Agriculture +434776,Agriculture,Agriculture +434124,Agriculture,Agriculture +431882,Agriculture,Agriculture +427481,Agriculture,Agriculture +424677,Agriculture,Agriculture +420852,Agriculture,Agriculture +420807,Agriculture,Agriculture +418827,Agriculture,Agriculture +418826,Agriculture,Agriculture +542623,Agriculture,Agriculture +542622,Agriculture,Agriculture +540957,Agriculture,Agriculture +539630,Agriculture,Agriculture +539629,Agriculture,Agriculture +536989,Agriculture,Agriculture +530460,Agriculture,Agriculture +530459,Agriculture,Agriculture +528137,Agriculture,Agriculture +524108,Agriculture,Agriculture +524107,Agriculture,Agriculture +521118,Agriculture,Agriculture +521117,Agriculture,Agriculture +521116,Agriculture,Agriculture +518757,Agriculture,Agriculture +518755,Agriculture,Agriculture +518754,Agriculture,Agriculture +516396,Agriculture,Agriculture +516395,Agriculture,Agriculture +516394,Agriculture,Agriculture +512037,Agriculture,Agriculture +512036,Agriculture,Agriculture +506525,Agriculture,Agriculture +506524,Agriculture,Agriculture +506523,Agriculture,Agriculture +506522,Agriculture,Agriculture +503616,Agriculture,Agriculture +503613,Agriculture,Agriculture +500889,Agriculture,Agriculture +500888,Agriculture,Agriculture +521118,Economic Development,Economic Development +521116,Economic Development,Economic Development +477306,Economic Development,Economic Development +477288,Economic Development,Economic Development +463467,Economic Development,Economic Development +446501,Economic Development,Economic Development +446500,Economic Development,Economic Development +446496,Economic Development,Economic Development +446493,Economic Development,Economic Development +446492,Economic Development,Economic Development +437388,Economic Development,Economic Development +434787,Economic Development,Economic Development +434786,Economic Development,Economic Development +434784,Economic Development,Economic Development +434783,Economic Development,Economic Development +434780,Economic Development,Economic Development +434779,Economic Development,Economic Development +434123,Economic Development,Economic Development +433599,Economic Development,Economic Development +431884,Economic Development,Economic Development +431883,Economic Development,Economic Development +431881,Economic Development,Economic Development +431879,Economic Development,Economic Development +431756,Economic Development,Economic Development +427480,Economic Development,Economic Development +427478,Economic Development,Economic Development +426052,Economic Development,Economic Development +423171,Economic Development,Economic Development +423170,Economic Development,Economic Development +423168,Economic Development,Economic Development +420801,Economic Development,Economic Development +417373,Economic Development,Economic Development +406251,Economic Development,Economic Development +406250,Economic Development,Economic Development +536987,Economic Development,Economic Development +530458,International Trade,International Trade +530457,International Trade,International Trade +420852,International Trade,International Trade +420806,International Trade,International Trade +420800,International Trade,International Trade +411044,International Trade,International Trade +408303,International Trade,International Trade +407714,International Trade,International Trade +503615,International Trade,International Trade +500886,International Trade,International Trade +483398,International Trade,International Trade +483396,International Trade,International Trade +477310,International Trade,International Trade +477306,International Trade,International Trade +477288,International Trade,International Trade +460974,International Trade,International Trade +455191,International Trade,International Trade +446503,International Trade,International Trade +446495,International Trade,International Trade +441225,International Trade,International Trade +437375,International Trade,International Trade +437364,International Trade,International Trade +434789,International Trade,International Trade +434779,International Trade,International Trade +431756,International Trade,International Trade +427538,International Trade,International Trade +427239,International Trade,International Trade +536987,International Trade,International Trade +536987,Small Business,Small Business +536986,Small Business,Small Business +407235,Small Business,Small Business +446502,Small Business,Small Business +446501,Small Business,Small Business +441080,Small Business,Small Business +478597,Environment,Environment +523923,Environment,Environment +439902,Environment,Environment +439901,Environment,Environment +439894,Environment,Environment +404921,Environment,Environment +508864,Environment,Environment +508857,Environment,Environment +503051,Environment,Environment +503050,Environment,Environment +503049,Environment,Environment +497084,Environment,Environment +484143,Environment,Environment +484142,Environment,Environment +483167,Environment,Environment +480899,Environment,Environment +480898,Environment,Environment +479010,Environment,Environment +478598,Environment,Environment +451166,Environment,Environment +439895,Environment,Environment +432877,Environment,Environment +427571,Environment,Environment +508866,Environment,Environment +497086,Environment,Environment +497085,Environment,Environment +497082,Environment,Environment +489225,Environment,Environment +488592,Environment,Environment +488591,Environment,Environment +483166,Environment,Environment +459286,Health,Health +459284,Health,Health +458221,Health,Health +458220,Health,Health +458219,Health,Health +455190,Health,Health +455188,Health,Health +455186,Health,Health +449353,Health,Health +449350,Health,Health +449348,Health,Health +443850,Health,Health +437365,Health,Health +437364,Health,Health +434777,Health,Health +431885,Health,Health +427479,Health,Health +425393,Health,Health +420805,Health,Health +420804,Health,Health +420803,Health,Health +420802,Health,Health +418400,Health,Health +407712,Health,Health +407710,Health,Health +407709,Health,Health +542623,Health,Health +542622,Health,Health +539630,Health,Health +539629,Health,Health +539628,Health,Health +538752,Health,Health +536989,Health,Health +536987,Health,Health +536986,Health,Health +533942,Health,Health +530460,Health,Health +530459,Health,Health +530458,Health,Health +530457,Health,Health +528138,Health,Health +524108,Health,Health +516396,Health,Health +512037,Health,Health +512036,Health,Health +506524,Health,Health +506522,Health,Health +503616,Health,Health +503613,Health,Health +497397,Health,Health +497391,Health,Health +494336,Health,Health +492289,Health,Health +481240,Health,Health +481239,Health,Health +477324,Health,Health +477321,Health,Health +477318,Health,Health +477296,Health,Health +477295,Health,Health +474526,Health,Health +474524,Health,Health +474523,Health,Health +474521,Health,Health +474520,Health,Health +474518,Health,Health +474517,Health,Health +474513,Health,Health +474510,Health,Health +472276,Health,Health +472275,Health,Health +469192,Health,Health +469191,Health,Health +469190,Health,Health +469189,Health,Health +469188,Health,Health +467347,Health,Health +467345,Health,Health +467337,Health,Health +463466,Health,Health +459925,Health,Health +511037,Climate,Climate +486711,Climate,Climate +454956,Climate,Climate +449574,Climate,Climate +449572,Climate,Climate +449569,Climate,Climate +449568,Climate,Climate +449567,Climate,Climate +449566,Climate,Climate +449563,Climate,Climate +449558,Climate,Climate +447335,Climate,Climate +438462,Climate,Climate +438457,Climate,Climate +435230,Climate,Climate +433418,Climate,Climate +409863,Climate,Climate +409859,Climate,Climate +406518,Climate,Climate +406507,Climate,Climate +405047,Climate,Climate +405046,Climate,Climate +405045,Climate,Climate +541411,Climate,Climate +541394,Climate,Climate +541387,Climate,Climate +541377,Climate,Climate +541387,Economic Development,Economic Development +541377,Economic Development,Economic Development +409864,Economic Development,Economic Development +406518,Economic Development,Economic Development +406507,Economic Development,Economic Development +405047,Economic Development,Economic Development +405046,Economic Development,Economic Development +405045,Economic Development,Economic Development +541411,Economic Development,Economic Development +405046,Research and Development,Research and Development +405045,Research and Development,Research and Development +406518,Research and Development,Research and Development +406507,Research and Development,Research and Development +451896,Employment and Training,Employment and Training +449336,Employment and Training,Employment and Training +406486,Employment and Training,Employment and Training +524483,Employment and Training,Employment and Training +519188,Employment and Training,Employment and Training +516759,Employment and Training,Employment and Training +516731,Employment and Training,Employment and Training +510045,Employment and Training,Employment and Training +501182,Employment and Training,Employment and Training +497717,Employment and Training,Employment and Training +492571,Employment and Training,Employment and Training +489679,Employment and Training,Employment and Training +476813,Employment and Training,Employment and Training +466512,Employment and Training,Employment and Training +466509,Employment and Training,Employment and Training +460503,Employment and Training,Employment and Training +459937,Employment and Training,Employment and Training +459424,Employment and Training,Employment and Training +405078,Official Languages,Official Languages +510962,Official Languages,Langues officielles +510959,Official Languages,Langues officielles +431692,Official Languages,Langues officielles +429850,Official Languages,Langues officielles +429849,Official Languages,Langues officielles +429848,Official Languages,Langues officielles +429847,Official Languages,Langues officielles +428602,Official Languages,Langues officielles +428596,Official Languages,Langues officielles +428589,Official Languages,Langues officielles +425619,Official Languages,Langues officielles +424166,Official Languages,Langues officielles +424164,Official Languages,Langues officielles +424161,Official Languages,Langues officielles +424158,Official Languages,Langues officielles +424155,Official Languages,Langues officielles +424151,Official Languages,Langues officielles +424149,Official Languages,Langues officielles +424147,Official Languages,Langues officielles +422227,Official Languages,Langues officielles +422226,Official Languages,Langues officielles +422224,Official Languages,Langues officielles +419491,Official Languages,Langues officielles +418198,Official Languages,Langues officielles +418196,Official Languages,Langues officielles +418195,Official Languages,Langues officielles +418194,Official Languages,Langues officielles +418193,Official Languages,Langues officielles +416078,Official Languages,Langues officielles +416076,Official Languages,Langues officielles +416073,Official Languages,Langues officielles +416072,Official Languages,Langues officielles +416070,Official Languages,Langues officielles +416067,Official Languages,Langues officielles +412510,Official Languages,Langues officielles +412509,Official Languages,Langues officielles +412508,Official Languages,Langues officielles +409925,Official Languages,Langues officielles +409924,Official Languages,Langues officielles +409923,Official Languages,Langues officielles +409922,Official Languages,Langues officielles +409921,Official Languages,Langues officielles +409920,Official Languages,Langues officielles +409919,Official Languages,Langues officielles +409918,Official Languages,Langues officielles +409917,Official Languages,Langues officielles +409916,Official Languages,Langues officielles +409914,Official Languages,Langues officielles +407499,Official Languages,Langues officielles +407498,Official Languages,Langues officielles +407496,Official Languages,Langues officielles +407495,Official Languages,Langues officielles +407494,Official Languages,Langues officielles +407493,Official Languages,Langues officielles +407492,Official Languages,Langues officielles +406717,Official Languages,Langues officielles +406715,Official Languages,Langues officielles +405323,Official Languages,Langues officielles +405322,Official Languages,Langues officielles +405321,Official Languages,Langues officielles +405320,Official Languages,Langues officielles +405319,Official Languages,Langues officielles +405318,Official Languages,Langues officielles +405317,Official Languages,Langues officielles +405316,Official Languages,Langues officielles +510957,Official Languages,Langues officielles +507791,Official Languages,Langues officielles +507790,Official Languages,Langues officielles +507789,Official Languages,Langues officielles +507787,Official Languages,Langues officielles +507786,Official Languages,Langues officielles +507784,Official Languages,Langues officielles +507783,Official Languages,Langues officielles +507782,Official Languages,Langues officielles +507780,Official Languages,Langues officielles +507778,Official Languages,Langues officielles +507776,Official Languages,Langues officielles +507775,Official Languages,Langues officielles +507774,Official Languages,Langues officielles +507771,Official Languages,Langues officielles +507770,Official Languages,Langues officielles +507769,Official Languages,Langues officielles +507768,Official Languages,Langues officielles +504984,Official Languages,Langues officielles +504982,Official Languages,Langues officielles +502177,Official Languages,Langues officielles +502173,Official Languages,Langues officielles +499316,Official Languages,Langues officielles +499312,Official Languages,Langues officielles +499309,Official Languages,Langues officielles +499307,Official Languages,Langues officielles +499303,Official Languages,Langues officielles +496018,Official Languages,Langues officielles +496015,Official Languages,Langues officielles +496012,Official Languages,Langues officielles +492808,Official Languages,Langues officielles +492807,Official Languages,Langues officielles +492806,Official Languages,Langues officielles +492805,Official Languages,Langues officielles +492804,Official Languages,Langues officielles +492803,Official Languages,Langues officielles +492802,Official Languages,Langues officielles +492800,Official Languages,Langues officielles +490989,Official Languages,Langues officielles +490986,Official Languages,Langues officielles +490984,Official Languages,Langues officielles +487488,Official Languages,Langues officielles +487486,Official Languages,Langues officielles +487481,Official Languages,Langues officielles +487479,Official Languages,Langues officielles +487476,Official Languages,Langues officielles +487471,Official Languages,Langues officielles +487468,Official Languages,Langues officielles +484840,Official Languages,Langues officielles +484838,Official Languages,Langues officielles +484837,Official Languages,Langues officielles +484835,Official Languages,Langues officielles +481651,Official Languages,Langues officielles +481650,Official Languages,Langues officielles +481649,Official Languages,Langues officielles +481648,Official Languages,Langues officielles +479392,Official Languages,Langues officielles +479391,Official Languages,Langues officielles +479388,Official Languages,Langues officielles +477308,Official Languages,Langues officielles +477305,Official Languages,Langues officielles +472944,Official Languages,Langues officielles +472940,Official Languages,Langues officielles +470201,Official Languages,Langues officielles +470197,Official Languages,Langues officielles +467036,Official Languages,Langues officielles +466906,Official Languages,Langues officielles +466870,Official Languages,Langues officielles +466869,Official Languages,Langues officielles +466868,Official Languages,Langues officielles +466867,Official Languages,Langues officielles +466813,Official Languages,Langues officielles +466812,Official Languages,Langues officielles +466810,Official Languages,Langues officielles +466748,Official Languages,Langues officielles +466747,Official Languages,Langues officielles +466746,Official Languages,Langues officielles +466727,Official Languages,Langues officielles +466723,Official Languages,Langues officielles +466720,Official Languages,Langues officielles +462331,Official Languages,Langues officielles +462330,Official Languages,Langues officielles +462329,Official Languages,Langues officielles +462328,Official Languages,Langues officielles +462327,Official Languages,Langues officielles +462326,Official Languages,Langues officielles +462325,Official Languages,Langues officielles +462323,Official Languages,Langues officielles +462322,Official Languages,Langues officielles +461658,Official Languages,Langues officielles +461655,Official Languages,Langues officielles +461653,Official Languages,Langues officielles +461650,Official Languages,Langues officielles +460146,Official Languages,Langues officielles +459336,Official Languages,Langues officielles +459317,Official Languages,Langues officielles +459288,Official Languages,Langues officielles +457463,Official Languages,Langues officielles +457462,Official Languages,Langues officielles +457459,Official Languages,Langues officielles +457455,Official Languages,Langues officielles +457453,Official Languages,Langues officielles +457449,Official Languages,Langues officielles +454624,Official Languages,Langues officielles +454623,Official Languages,Langues officielles +454620,Official Languages,Langues officielles +454619,Official Languages,Langues officielles +454616,Official Languages,Langues officielles +454613,Official Languages,Langues officielles +454611,Official Languages,Langues officielles +454610,Official Languages,Langues officielles +454608,Official Languages,Langues officielles +454604,Official Languages,Langues officielles +451912,Official Languages,Langues officielles +451911,Official Languages,Langues officielles +451910,Official Languages,Langues officielles +451907,Official Languages,Langues officielles +451906,Official Languages,Langues officielles +451905,Official Languages,Langues officielles +451904,Official Languages,Langues officielles +451903,Official Languages,Langues officielles +451902,Official Languages,Langues officielles +451900,Official Languages,Langues officielles +446957,Official Languages,Langues officielles +446956,Official Languages,Langues officielles +446954,Official Languages,Langues officielles +446953,Official Languages,Langues officielles +446952,Official Languages,Langues officielles +446951,Official Languages,Langues officielles +442034,Official Languages,Langues officielles +442031,Official Languages,Langues officielles +442011,Official Languages,Langues officielles +442005,Official Languages,Langues officielles +442002,Official Languages,Langues officielles +438687,Official Languages,Langues officielles +438678,Official Languages,Langues officielles +438669,Official Languages,Langues officielles +438666,Official Languages,Langues officielles +438663,Official Languages,Langues officielles +438660,Official Languages,Langues officielles +438658,Official Languages,Langues officielles +438649,Official Languages,Langues officielles +438646,Official Languages,Langues officielles +438642,Official Languages,Langues officielles +435137,Official Languages,Langues officielles +435133,Official Languages,Langues officielles +435132,Official Languages,Langues officielles +435131,Official Languages,Langues officielles +435127,Official Languages,Langues officielles +433109,Official Languages,Langues officielles +510966,Official Languages,Langues officielles +449254,Government Procurement,Government Procurement +447427,Government Procurement,Government Procurement +442336,Government Procurement,Government Procurement +437402,Government Procurement,Government Procurement +428583,Government Procurement,Government Procurement +423894,Government Procurement,Government Procurement +421821,Government Procurement,Government Procurement +417824,Government Procurement,Government Procurement +417818,Government Procurement,Government Procurement +407815,Government Procurement,Government Procurement +406617,Government Procurement,Government Procurement +457202,Government Procurement,Government Procurement +457199,Government Procurement,Government Procurement +455316,Industry,Industry +449254,Industry,Industry +442336,Industry,Industry +428583,Industry,Industry +423894,Industry,Industry +421821,Industry,Industry +417824,Industry,Industry +407815,Industry,Industry +406617,Industry,Industry +457202,Industry,Industry +407815,Small Business,Small Business +406617,Small Business,Small Business +457202,Small Business,Small Business +457199,Small Business,Small Business +455316,Small Business,Small Business +449254,Small Business,Small Business +447427,Small Business,Small Business +442336,Small Business,Small Business +437402,Small Business,Small Business +428583,Small Business,Small Business +423894,Small Business,Small Business +421821,Small Business,Small Business +417824,Small Business,Small Business +406632,International Relations,International Relations +406631,International Relations,International Relations +407795,International Relations,International Relations +407793,International Relations,International Relations +407792,International Relations,International Relations +407791,International Relations,International Relations +407790,International Relations,International Relations +406648,International Relations,International Relations +406647,International Relations,International Relations +406646,International Relations,International Relations +406644,International Relations,International Relations +406643,International Relations,International Relations +406642,International Relations,International Relations +406640,International Relations,International Relations +406639,International Relations,International Relations +406638,International Relations,International Relations +406636,International Relations,International Relations +406635,International Relations,International Relations +405584,International Trade,Commerce international +405574,International Trade,Commerce international +408863,Health,Health +408860,Health,Health +441819,Health,Health +441816,Health,Health +441815,Health,Health +436070,Health,Health +430147,Health,Health +430145,Health,Health +424682,Health,Health +422926,Health,Health +422884,Health,Health +410428,Health,Health +436070,Research and Development,Research and Development +424682,Research and Development,Research and Development +441816,Research and Development,Research and Development +407713,Economic Development,Economic Development +406592,Economic Development,Economic Development +436487,Economic Development,Economic Development +436486,Economic Development,Economic Development +420849,Economic Development,Economic Development +417366,Economic Development,Economic Development +413927,Economic Development,Economic Development +482794,Education,Education +466876,Education,Education +436492,Education,Education +436491,Education,Education +436490,Education,Education +436488,Education,Education +436487,Education,Education +436486,Education,Education +504591,International Relations,International Relations +498570,International Relations,International Relations +413750,International Relations,International Relations +405486,International Relations,International Relations +405484,International Relations,International Relations +492699,International Relations,International Relations +490666,International Relations,International Relations +487538,International Relations,International Relations +487535,International Relations,International Relations +484477,International Relations,International Relations +477429,International Relations,International Relations +465002,International Relations,International Relations +439573,International Relations,International Relations +405509,International Trade,International Trade +405503,International Trade,International Trade +428428,International Trade,International Trade +429529,Government Procurement,Government Procurement +424327,Government Procurement,Government Procurement +413841,Government Procurement,Government Procurement +413840,Government Procurement,Government Procurement +413839,Government Procurement,Government Procurement +413838,Government Procurement,Government Procurement +413836,Government Procurement,Government Procurement +413833,Government Procurement,Government Procurement +410158,Government Procurement,Government Procurement +405807,Government Procurement,Government Procurement +523444,Government Procurement,Government Procurement +523441,Government Procurement,Government Procurement +508493,Government Procurement,Government Procurement +508489,Government Procurement,Government Procurement +508469,Government Procurement,Government Procurement +432615,Government Procurement,Government Procurement +432605,Government Procurement,Government Procurement +432603,Government Procurement,Government Procurement +408126,Taxation and Finance,Taxation and Finance +408104,Taxation and Finance,Taxation and Finance +456451,Taxation and Finance,Taxation and Finance +433751,Taxation and Finance,Taxation and Finance +430450,Taxation and Finance,Taxation and Finance +425635,Taxation and Finance,Taxation and Finance +416758,Taxation and Finance,Taxation and Finance +416750,Taxation and Finance,Taxation and Finance +416735,Taxation and Finance,Taxation and Finance +416712,Taxation and Finance,Taxation and Finance +408139,Taxation and Finance,Taxation and Finance +408135,Taxation and Finance,Taxation and Finance +408133,Taxation and Finance,Taxation and Finance +408126,International Trade,International Trade +408104,International Trade,International Trade +425634,International Trade,International Trade +416758,International Trade,International Trade +416750,International Trade,International Trade +416735,International Trade,International Trade +416712,International Trade,International Trade +408139,International Trade,International Trade +408135,International Trade,International Trade +408133,International Trade,International Trade +416712,Small Business,Small Business +408139,Small Business,Small Business +408135,Small Business,Small Business +408133,Small Business,Small Business +408131,Small Business,Small Business +408126,Small Business,Small Business +408104,Small Business,Small Business +457607,Small Business,Small Business +456451,Small Business,Small Business +433766,Small Business,Small Business +430450,Small Business,Small Business +425633,Small Business,Small Business +416758,Small Business,Small Business +416750,Small Business,Small Business +408126,Consumer Issues,Consumer Issues +408104,Consumer Issues,Consumer Issues +457607,Consumer Issues,Consumer Issues +433766,Consumer Issues,Consumer Issues +433752,Consumer Issues,Consumer Issues +433751,Consumer Issues,Consumer Issues +425635,Consumer Issues,Consumer Issues +425634,Consumer Issues,Consumer Issues +425633,Consumer Issues,Consumer Issues +416758,Consumer Issues,Consumer Issues +416750,Consumer Issues,Consumer Issues +416735,Consumer Issues,Consumer Issues +416712,Consumer Issues,Consumer Issues +408139,Consumer Issues,Consumer Issues +408135,Consumer Issues,Consumer Issues +408133,Consumer Issues,Consumer Issues +420713,Infrastructure,Infrastructure +420712,Infrastructure,Infrastructure +407529,Infrastructure,Infrastructure +457852,Transportation,Transportation +453557,Transportation,Transportation +453554,Transportation,Transportation +453552,Transportation,Transportation +453551,Transportation,Transportation +453549,Transportation,Transportation +453541,Transportation,Transportation +453537,Transportation,Transportation +453484,Transportation,Transportation +453430,Transportation,Transportation +453347,Transportation,Transportation +453256,Transportation,Transportation +529567,Transportation,Transportation +529566,Transportation,Transportation +529565,Transportation,Transportation +529564,Transportation,Transportation +529563,Transportation,Transportation +529562,Transportation,Transportation +529561,Transportation,Transportation +529560,Transportation,Transportation +529557,Transportation,Transportation +529556,Transportation,Transportation +525487,Transportation,Transportation +525482,Transportation,Transportation +523230,Transportation,Transportation +461996,Transportation,Transportation +461995,Transportation,Transportation +461991,Transportation,Transportation +492044,Budget,Budget +492043,Budget,Budget +492042,Budget,Budget +492041,Budget,Budget +492040,Budget,Budget +492039,Budget,Budget +492038,Budget,Budget +491998,Budget,Budget +491997,Budget,Budget +491995,Budget,Budget +491994,Budget,Budget +491993,Budget,Budget +491992,Budget,Budget +491990,Budget,Budget +491989,Budget,Budget +491988,Budget,Budget +491987,Budget,Budget +491986,Budget,Budget +491985,Budget,Budget +491983,Budget,Budget +491982,Budget,Budget +491981,Budget,Budget +491979,Budget,Budget +491978,Budget,Budget +491976,Budget,Budget +491975,Budget,Budget +491974,Budget,Budget +491973,Budget,Budget +491972,Budget,Budget +491971,Budget,Budget +491970,Budget,Budget +491969,Budget,Budget +491968,Budget,Budget +454854,Budget,Budget +428201,Budget,Budget +428200,Budget,Budget +420861,Budget,Budget +420854,Budget,Budget +420125,Budget,Budget +416459,Budget,Budget +416389,Budget,Budget +416387,Budget,Budget +534166,Budget,Budget +534162,Budget,Budget +519885,Budget,Budget +518571,Budget,Budget +518570,Budget,Budget +518568,Budget,Budget +518567,Budget,Budget +518412,Budget,Budget +518411,Budget,Budget +518409,Budget,Budget +518408,Budget,Budget +518406,Budget,Budget +518405,Budget,Budget +518404,Budget,Budget +518401,Budget,Budget +499885,Budget,Budget +497938,Budget,Budget +496619,Budget,Budget +496447,Budget,Budget +496444,Budget,Budget +492047,Budget,Budget +492041,Economic Development,Economic Development +430127,Economic Development,Economic Development +527240,Economic Development,Economic Development +527106,Economic Development,Economic Development +523644,Economic Development,Economic Development +521067,Economic Development,Economic Development +520959,Economic Development,Economic Development +520561,Economic Development,Economic Development +520560,Economic Development,Economic Development +520457,Economic Development,Economic Development +520455,Economic Development,Economic Development +520390,Economic Development,Economic Development +520388,Economic Development,Economic Development +519147,Economic Development,Economic Development +519146,Economic Development,Economic Development +518571,Economic Development,Economic Development +517239,Economic Development,Economic Development +509344,Economic Development,Economic Development +507932,Economic Development,Economic Development +506808,Economic Development,Economic Development +506715,Economic Development,Economic Development +506714,Economic Development,Economic Development +506713,Economic Development,Economic Development +506712,Economic Development,Economic Development +506711,Economic Development,Economic Development +506710,Economic Development,Economic Development +506709,Economic Development,Economic Development +506708,Economic Development,Economic Development +506707,Economic Development,Economic Development +506703,Economic Development,Economic Development +506702,Economic Development,Economic Development +506701,Economic Development,Economic Development +506700,Economic Development,Economic Development +506699,Economic Development,Economic Development +506698,Economic Development,Economic Development +506697,Economic Development,Economic Development +506696,Economic Development,Economic Development +506695,Economic Development,Economic Development +506694,Economic Development,Economic Development +506693,Economic Development,Economic Development +506692,Economic Development,Economic Development +506691,Economic Development,Economic Development +506689,Economic Development,Economic Development +506688,Economic Development,Economic Development +506687,Economic Development,Economic Development +506685,Economic Development,Economic Development +506684,Economic Development,Economic Development +506679,Economic Development,Economic Development +506678,Economic Development,Economic Development +506675,Economic Development,Economic Development +506674,Economic Development,Economic Development +506673,Economic Development,Economic Development +506672,Economic Development,Economic Development +506671,Economic Development,Economic Development +506669,Economic Development,Economic Development +506668,Economic Development,Economic Development +506666,Economic Development,Economic Development +506663,Economic Development,Economic Development +506661,Economic Development,Economic Development +506660,Economic Development,Economic Development +419056,Agriculture,Agriculture +419052,Agriculture,Agriculture +435301,Agriculture,Agriculture +428489,Agriculture,Agriculture +428476,Agriculture,Agriculture +426005,Agriculture,Agriculture +426002,Agriculture,Agriculture +428489,Climate,Climate +428476,Climate,Climate +426005,Climate,Climate +426002,Climate,Climate +426000,Climate,Climate +421540,Climate,Climate +419056,Climate,Climate +419052,Climate,Climate +416557,Climate,Climate +415680,Climate,Climate +415677,Climate,Climate +412409,Climate,Climate +412408,Climate,Climate +412406,Climate,Climate +409628,Climate,Climate +435301,Climate,Climate +409628,Economic Development,Economic Development +407683,Economic Development,Economic Development +447090,Economic Development,Economic Development +447084,Economic Development,Economic Development +445252,Economic Development,Economic Development +443390,Economic Development,Economic Development +443384,Economic Development,Economic Development +435301,Economic Development,Economic Development +430812,Economic Development,Economic Development +428489,Economic Development,Economic Development +428476,Economic Development,Economic Development +426005,Economic Development,Economic Development +426002,Economic Development,Economic Development +426000,Economic Development,Economic Development +421540,Economic Development,Economic Development +419056,Economic Development,Economic Development +419052,Economic Development,Economic Development +416557,Economic Development,Economic Development +415680,Economic Development,Economic Development +415677,Economic Development,Economic Development +412409,Economic Development,Economic Development +412408,Economic Development,Economic Development +412406,Economic Development,Economic Development +407682,Energy,Energy +407681,Energy,Energy +447090,Energy,Energy +447084,Energy,Energy +445252,Energy,Energy +443390,Energy,Energy +443384,Energy,Energy +435301,Energy,Energy +430812,Energy,Energy +428489,Energy,Energy +428476,Energy,Energy +426005,Energy,Energy +426002,Energy,Energy +426000,Energy,Energy +421540,Energy,Energy +419056,Energy,Energy +419052,Energy,Energy +416557,Energy,Energy +415680,Energy,Energy +415677,Energy,Energy +412409,Energy,Energy +412408,Energy,Energy +412406,Energy,Energy +409630,Energy,Energy +409628,Energy,Energy +447084,Environment,Environment +445252,Environment,Environment +443390,Environment,Environment +443384,Environment,Environment +435301,Environment,Environment +430812,Environment,Environment +428489,Environment,Environment +428476,Environment,Environment +426005,Environment,Environment +426002,Environment,Environment +426000,Environment,Environment +421540,Environment,Environment +419056,Environment,Environment +419052,Environment,Environment +416557,Environment,Environment +415677,Environment,Environment +412409,Environment,Environment +412408,Environment,Environment +412406,Environment,Environment +409630,Environment,Environment +409628,Environment,Environment +407683,Environment,Environment +407682,Environment,Environment +407681,Environment,Environment +419052,Government Procurement,Government Procurement +407682,Government Procurement,Government Procurement +445252,Government Procurement,Government Procurement +443390,Government Procurement,Government Procurement +443384,Government Procurement,Government Procurement +435301,Government Procurement,Government Procurement +430812,Government Procurement,Government Procurement +428489,Government Procurement,Government Procurement +428476,Government Procurement,Government Procurement +426005,Government Procurement,Government Procurement +426002,Government Procurement,Government Procurement +426000,Government Procurement,Government Procurement +428489,Industry,Industry +428476,Industry,Industry +426005,Industry,Industry +426002,Industry,Industry +426000,Industry,Industry +421540,Industry,Industry +419056,Industry,Industry +419052,Industry,Industry +447090,Industry,Industry +447084,Industry,Industry +445252,Industry,Industry +443390,Industry,Industry +443384,Industry,Industry +435301,Industry,Industry +407683,Infrastructure,Infrastructure +407682,Infrastructure,Infrastructure +447090,Infrastructure,Infrastructure +447084,Infrastructure,Infrastructure +445252,Infrastructure,Infrastructure +443390,Infrastructure,Infrastructure +443384,Infrastructure,Infrastructure +435301,Infrastructure,Infrastructure +430812,Infrastructure,Infrastructure +428489,Infrastructure,Infrastructure +428476,Infrastructure,Infrastructure +426005,Infrastructure,Infrastructure +426002,Infrastructure,Infrastructure +426000,Infrastructure,Infrastructure +421540,Infrastructure,Infrastructure +419056,Infrastructure,Infrastructure +419052,Infrastructure,Infrastructure +416557,Infrastructure,Infrastructure +415677,Infrastructure,Infrastructure +412409,Infrastructure,Infrastructure +412408,Infrastructure,Infrastructure +412406,Infrastructure,Infrastructure +409630,Infrastructure,Infrastructure +419056,International Trade,International Trade +419052,International Trade,International Trade +447090,International Trade,International Trade +447084,International Trade,International Trade +435301,International Trade,International Trade +430812,International Trade,International Trade +428489,International Trade,International Trade +428476,International Trade,International Trade +426005,International Trade,International Trade +426002,International Trade,International Trade +419056,Transportation,Transportation +419052,Transportation,Transportation +435301,Transportation,Transportation +428489,Transportation,Transportation +428476,Transportation,Transportation +426005,Transportation,Transportation +426002,Transportation,Transportation +418794,International Trade,International Trade +409205,International Trade,International Trade +408874,International Trade,International Trade +408873,International Trade,International Trade +407179,International Trade,International Trade +407067,International Trade,International Trade +407066,International Trade,International Trade +442802,Government Procurement,Government Procurement +405960,Government Procurement,Government Procurement +448834,Government Procurement,Government Procurement +423035,International Trade,International Trade +420429,International Trade,International Trade +429911,International Trade,International Trade +423038,International Trade,International Trade +420428,International Trade,International Trade +429912,International Trade,International Trade +408686,Agriculture,Agriculture +407058,Agriculture,Agriculture +414332,Agriculture,Agriculture +412789,Agriculture,Agriculture +411207,Agriculture,Agriculture +412789,Consumer Issues,Consumer Issues +411207,Consumer Issues,Consumer Issues +410846,Consumer Issues,Consumer Issues +408686,Consumer Issues,Consumer Issues +407058,Health,Health +407010,Health,Health +414332,Health,Health +412789,Health,Health +411207,Health,Health +410846,Health,Health +412789,Industry,Industry +411207,Industry,Industry +410846,Industry,Industry +406658,Economic Development,Economic Development +422585,International Trade,International Trade +408819,Consumer Issues,Consumer Issues +408817,Consumer Issues,Consumer Issues +408817,Small Business,Small Business +407775,Transportation,Transportation +433693,Transportation,Transportation +413655,Transportation,Transportation +413652,Transportation,Transportation +408041,Transportation,Transportation +407777,Transportation,Transportation +408014,Transportation,Transportation +433698,Transportation,Transportation +413671,Transportation,Transportation +413662,Transportation,Transportation +409269,Transportation,Transportation +408047,Transportation,Transportation +408020,Transportation,Transportation +406004,Energy,Energy +494703,Energy,Energy +485851,Energy,Energy +431969,Defence,Defence +431968,Defence,Defence +427704,Defence,Defence +427492,Defence,Defence +427487,Defence,Defence +427484,Defence,Defence +427482,Defence,Defence +422803,Defence,Defence +422802,Defence,Defence +420989,Defence,Defence +420988,Defence,Defence +414032,Defence,Defence +414031,Defence,Defence +414030,Defence,Defence +414028,Defence,Defence +411367,Defence,Defence +411366,Defence,Defence +411363,Defence,Defence +408258,Defence,Defence +407457,Defence,Defence +406086,Defence,Defence +406085,Defence,Defence +406084,Defence,Defence +406083,Defence,Defence +406082,Defence,Defence +406081,Defence,Defence +406078,Defence,Defence +406076,Defence,Defence +406073,Defence,Defence +538817,Defence,Defence +536605,Defence,Defence +536603,Defence,Defence +530427,Defence,Defence +527318,Defence,Defence +524753,Defence,Defence +521276,Defence,Defence +521274,Defence,Defence +521273,Defence,Defence +511734,Defence,Defence +500681,Defence,Defence +463698,Defence,Defence +463696,Defence,Defence +454138,Defence,Defence +454137,Defence,Defence +454136,Defence,Defence +454135,Defence,Defence +436897,Defence,Defence +436895,Defence,Defence +436893,Defence,Defence +436890,Defence,Defence +436886,Defence,Defence +431972,Defence,Defence +463698,Government Procurement,Government Procurement +463696,Government Procurement,Government Procurement +406076,Government Procurement,Government Procurement +406073,Government Procurement,Government Procurement +454138,Government Procurement,Government Procurement +454137,Government Procurement,Government Procurement +454136,Government Procurement,Government Procurement +454135,Government Procurement,Government Procurement +436897,Government Procurement,Government Procurement +436895,Government Procurement,Government Procurement +436893,Government Procurement,Government Procurement +436890,Government Procurement,Government Procurement +436886,Government Procurement,Government Procurement +431972,Government Procurement,Government Procurement +431970,Government Procurement,Government Procurement +431969,Government Procurement,Government Procurement +431968,Government Procurement,Government Procurement +427704,Government Procurement,Government Procurement +427492,Government Procurement,Government Procurement +427487,Government Procurement,Government Procurement +427484,Government Procurement,Government Procurement +427482,Government Procurement,Government Procurement +422803,Government Procurement,Government Procurement +422802,Government Procurement,Government Procurement +420989,Government Procurement,Government Procurement +420988,Government Procurement,Government Procurement +414032,Government Procurement,Government Procurement +414031,Government Procurement,Government Procurement +414030,Government Procurement,Government Procurement +414028,Government Procurement,Government Procurement +411367,Government Procurement,Government Procurement +411366,Government Procurement,Government Procurement +411363,Government Procurement,Government Procurement +408258,Government Procurement,Government Procurement +407457,Government Procurement,Government Procurement +406086,Government Procurement,Government Procurement +406085,Government Procurement,Government Procurement +406084,Government Procurement,Government Procurement +406083,Government Procurement,Government Procurement +406082,Government Procurement,Government Procurement +406081,Government Procurement,Government Procurement +406078,Government Procurement,Government Procurement +538817,Government Procurement,Government Procurement +536605,Government Procurement,Government Procurement +536603,Government Procurement,Government Procurement +530427,Government Procurement,Government Procurement +527318,Government Procurement,Government Procurement +524753,Government Procurement,Government Procurement +521276,Government Procurement,Government Procurement +521274,Government Procurement,Government Procurement +521273,Government Procurement,Government Procurement +511734,Government Procurement,Government Procurement +509332,Government Procurement,Government Procurement +408345,Education,Education +407138,Education,Education +408345,Employment and Training,Employment and Training +407138,Employment and Training,Employment and Training +487882,Climate,Climate +487878,Climate,Climate +417770,Climate,Climate +412843,Climate,Climate +412832,Climate,Climate +412830,Climate,Climate +412827,Climate,Climate +412815,Climate,Climate +412811,Climate,Climate +412808,Climate,Climate +412802,Climate,Climate +412767,Climate,Climate +487869,Climate,Climate +483610,Climate,Climate +483605,Climate,Climate +483603,Climate,Climate +482413,Climate,Climate +482412,Climate,Climate +482409,Climate,Climate +479710,Climate,Climate +479706,Climate,Climate +479703,Climate,Climate +477525,Climate,Climate +477512,Climate,Climate +475057,Climate,Climate +475053,Climate,Climate +475049,Climate,Climate +472996,Climate,Climate +472992,Climate,Climate +472987,Climate,Climate +472980,Climate,Climate +470993,Climate,Climate +470990,Climate,Climate +470985,Climate,Climate +470974,Climate,Climate +467556,Climate,Climate +467550,Climate,Climate +467540,Climate,Climate +465038,Climate,Climate +465037,Climate,Climate +462849,Climate,Climate +462848,Climate,Climate +462847,Climate,Climate +462846,Climate,Climate +461750,Climate,Climate +459402,Climate,Climate +459401,Climate,Climate +458200,Climate,Climate +458199,Climate,Climate +455732,Climate,Climate +452326,Climate,Climate +452321,Climate,Climate +452319,Climate,Climate +452317,Climate,Climate +452315,Climate,Climate +452313,Climate,Climate +452310,Climate,Climate +452303,Climate,Climate +449656,Climate,Climate +449645,Climate,Climate +448046,Climate,Climate +448028,Climate,Climate +448024,Climate,Climate +446637,Climate,Climate +444995,Climate,Climate +443687,Climate,Climate +438799,Climate,Climate +438798,Climate,Climate +438796,Climate,Climate +438795,Climate,Climate +438793,Climate,Climate +438782,Climate,Climate +438778,Climate,Climate +438774,Climate,Climate +438769,Climate,Climate +438761,Climate,Climate +435293,Climate,Climate +435276,Climate,Climate +435261,Climate,Climate +435255,Climate,Climate +433546,Climate,Climate +430199,Climate,Climate +430198,Climate,Climate +430193,Climate,Climate +430191,Climate,Climate +428877,Climate,Climate +428875,Climate,Climate +428860,Climate,Climate +428844,Climate,Climate +428805,Climate,Climate +425499,Climate,Climate +425498,Climate,Climate +422014,Climate,Climate +422010,Climate,Climate +421999,Climate,Climate +544013,Climate,Climate +539769,Climate,Climate +537556,Climate,Climate +537555,Climate,Climate +537554,Climate,Climate +535490,Climate,Climate +532400,Climate,Climate +530154,Climate,Climate +529399,Climate,Climate +525857,Climate,Climate +525855,Climate,Climate +525854,Climate,Climate +522568,Climate,Climate +519758,Climate,Climate +517724,Climate,Climate +508425,Climate,Climate +504638,Climate,Climate +498503,Climate,Climate +496168,Climate,Climate +496166,Climate,Climate +496162,Climate,Climate +493567,Climate,Climate +412767,Economic Development,Economic Development +409326,Economic Development,Economic Development +539768,Economic Development,Economic Development +537554,Economic Development,Economic Development +535490,Economic Development,Economic Development +535482,Economic Development,Economic Development +515617,Economic Development,Economic Development +504626,Economic Development,Economic Development +487869,Economic Development,Economic Development +479690,Economic Development,Economic Development +477525,Economic Development,Economic Development +477512,Economic Development,Economic Development +475058,Economic Development,Economic Development +475057,Economic Development,Economic Development +467556,Economic Development,Economic Development +467550,Economic Development,Economic Development +467540,Economic Development,Economic Development +465046,Economic Development,Economic Development +465038,Economic Development,Economic Development +465037,Economic Development,Economic Development +455732,Economic Development,Economic Development +452326,Economic Development,Economic Development +452321,Economic Development,Economic Development +452319,Economic Development,Economic Development +452317,Economic Development,Economic Development +452315,Economic Development,Economic Development +452313,Economic Development,Economic Development +452310,Economic Development,Economic Development +452303,Economic Development,Economic Development +449656,Economic Development,Economic Development +449645,Economic Development,Economic Development +444995,Economic Development,Economic Development +438799,Economic Development,Economic Development +438798,Economic Development,Economic Development +438796,Economic Development,Economic Development +438795,Economic Development,Economic Development +438793,Economic Development,Economic Development +438782,Economic Development,Economic Development +438778,Economic Development,Economic Development +438774,Economic Development,Economic Development +438769,Economic Development,Economic Development +438761,Economic Development,Economic Development +435293,Economic Development,Economic Development +435276,Economic Development,Economic Development +435261,Economic Development,Economic Development +435255,Economic Development,Economic Development +433546,Economic Development,Economic Development +432245,Economic Development,Economic Development +430199,Economic Development,Economic Development +430198,Economic Development,Economic Development +430193,Economic Development,Economic Development +430191,Economic Development,Economic Development +428877,Economic Development,Economic Development +428875,Economic Development,Economic Development +428871,Economic Development,Economic Development +428860,Economic Development,Economic Development +428844,Economic Development,Economic Development +428805,Economic Development,Economic Development +428785,Economic Development,Economic Development +425500,Economic Development,Economic Development +425499,Economic Development,Economic Development +425498,Economic Development,Economic Development +423890,Economic Development,Economic Development +423888,Economic Development,Economic Development +422014,Economic Development,Economic Development +422010,Economic Development,Economic Development +421999,Economic Development,Economic Development +417770,Economic Development,Economic Development +412843,Economic Development,Economic Development +412832,Economic Development,Economic Development +412830,Economic Development,Economic Development +412827,Economic Development,Economic Development +412815,Economic Development,Economic Development +412811,Economic Development,Economic Development +412808,Economic Development,Economic Development +502490,Environment,Environment +502479,Environment,Environment +412843,Environment,Environment +412832,Environment,Environment +412830,Environment,Environment +412827,Environment,Environment +412815,Environment,Environment +412811,Environment,Environment +412808,Environment,Environment +412802,Environment,Environment +412767,Environment,Environment +409326,Environment,Environment +491663,Environment,Environment +487882,Environment,Environment +487878,Environment,Environment +483610,Environment,Environment +483605,Environment,Environment +483603,Environment,Environment +482413,Environment,Environment +482409,Environment,Environment +479710,Environment,Environment +479706,Environment,Environment +479703,Environment,Environment +479690,Environment,Environment +479685,Environment,Environment +475053,Environment,Environment +475049,Environment,Environment +472996,Environment,Environment +472992,Environment,Environment +472987,Environment,Environment +472980,Environment,Environment +470993,Environment,Environment +470990,Environment,Environment +470985,Environment,Environment +470974,Environment,Environment +467556,Environment,Environment +467550,Environment,Environment +467540,Environment,Environment +465038,Environment,Environment +465037,Environment,Environment +465036,Environment,Environment +462849,Environment,Environment +462848,Environment,Environment +462847,Environment,Environment +462846,Environment,Environment +460600,Environment,Environment +459402,Environment,Environment +459401,Environment,Environment +458200,Environment,Environment +458199,Environment,Environment +456670,Environment,Environment +455732,Environment,Environment +452326,Environment,Environment +452321,Environment,Environment +452319,Environment,Environment +452317,Environment,Environment +452315,Environment,Environment +452313,Environment,Environment +452310,Environment,Environment +452303,Environment,Environment +449656,Environment,Environment +449645,Environment,Environment +448046,Environment,Environment +448028,Environment,Environment +448024,Environment,Environment +446637,Environment,Environment +444995,Environment,Environment +443687,Environment,Environment +443683,Environment,Environment +441404,Environment,Environment +441399,Environment,Environment +438799,Environment,Environment +438798,Environment,Environment +438796,Environment,Environment +438795,Environment,Environment +438793,Environment,Environment +438782,Environment,Environment +438778,Environment,Environment +438774,Environment,Environment +438769,Environment,Environment +438761,Environment,Environment +435293,Environment,Environment +435276,Environment,Environment +435261,Environment,Environment +435255,Environment,Environment +435244,Environment,Environment +435234,Environment,Environment +433546,Environment,Environment +432245,Environment,Environment +430199,Environment,Environment +430198,Environment,Environment +430193,Environment,Environment +430191,Environment,Environment +428877,Environment,Environment +428875,Environment,Environment +428871,Environment,Environment +428860,Environment,Environment +428844,Environment,Environment +428805,Environment,Environment +428785,Environment,Environment +425500,Environment,Environment +425499,Environment,Environment +425498,Environment,Environment +423890,Environment,Environment +423888,Environment,Environment +422014,Environment,Environment +422010,Environment,Environment +421999,Environment,Environment +417770,Environment,Environment +415401,Environment,Environment +539769,Environment,Environment +537555,Environment,Environment +537554,Environment,Environment +535504,Environment,Environment +535496,Environment,Environment +535490,Environment,Environment +532400,Environment,Environment +530154,Environment,Environment +529399,Environment,Environment +525857,Environment,Environment +525855,Environment,Environment +517724,Environment,Environment +515617,Environment,Environment +511301,Environment,Environment +511287,Environment,Environment +508425,Environment,Environment +508424,Environment,Environment +508423,Environment,Environment +504638,Environment,Environment +517724,Industry,Industry +515617,Industry,Industry +430199,Industry,Industry +430198,Industry,Industry +430193,Industry,Industry +430191,Industry,Industry +428877,Industry,Industry +428875,Industry,Industry +428871,Industry,Industry +428860,Industry,Industry +428844,Industry,Industry +428805,Industry,Industry +428785,Industry,Industry +425500,Industry,Industry +425499,Industry,Industry +425498,Industry,Industry +423890,Industry,Industry +423888,Industry,Industry +422014,Industry,Industry +422010,Industry,Industry +421999,Industry,Industry +419469,Industry,Industry +417770,Industry,Industry +415401,Industry,Industry +409326,Industry,Industry +508425,Industry,Industry +504638,Industry,Industry +498503,Industry,Industry +496168,Industry,Industry +496166,Industry,Industry +496162,Industry,Industry +487882,Industry,Industry +487878,Industry,Industry +483610,Industry,Industry +483605,Industry,Industry +483603,Industry,Industry +482413,Industry,Industry +482412,Industry,Industry +482409,Industry,Industry +479710,Industry,Industry +479706,Industry,Industry +479703,Industry,Industry +475053,Industry,Industry +475049,Industry,Industry +472996,Industry,Industry +472992,Industry,Industry +472987,Industry,Industry +470985,Industry,Industry +470974,Industry,Industry +467556,Industry,Industry +467550,Industry,Industry +467540,Industry,Industry +465037,Industry,Industry +465036,Industry,Industry +462849,Industry,Industry +462848,Industry,Industry +462847,Industry,Industry +462846,Industry,Industry +461750,Industry,Industry +460600,Industry,Industry +459402,Industry,Industry +459401,Industry,Industry +458200,Industry,Industry +458199,Industry,Industry +455732,Industry,Industry +452326,Industry,Industry +452321,Industry,Industry +452319,Industry,Industry +452317,Industry,Industry +452315,Industry,Industry +452313,Industry,Industry +452310,Industry,Industry +452303,Industry,Industry +449656,Industry,Industry +449645,Industry,Industry +448046,Industry,Industry +448028,Industry,Industry +448024,Industry,Industry +446637,Industry,Industry +444995,Industry,Industry +443687,Industry,Industry +443683,Industry,Industry +441404,Industry,Industry +441399,Industry,Industry +438799,Industry,Industry +438798,Industry,Industry +438796,Industry,Industry +438795,Industry,Industry +438793,Industry,Industry +438782,Industry,Industry +438778,Industry,Industry +438774,Industry,Industry +438769,Industry,Industry +438761,Industry,Industry +435293,Industry,Industry +435276,Industry,Industry +435261,Industry,Industry +435255,Industry,Industry +435244,Industry,Industry +435234,Industry,Industry +433546,Industry,Industry +432245,Industry,Industry +539769,Industry,Industry +535482,Industry,Industry +532400,Industry,Industry +530154,Industry,Industry +529399,Industry,Industry +525857,Industry,Industry +525855,Industry,Industry +430193,Infrastructure,Infrastructure +430191,Infrastructure,Infrastructure +428877,Infrastructure,Infrastructure +428875,Infrastructure,Infrastructure +428871,Infrastructure,Infrastructure +428860,Infrastructure,Infrastructure +428844,Infrastructure,Infrastructure +428805,Infrastructure,Infrastructure +428785,Infrastructure,Infrastructure +425500,Infrastructure,Infrastructure +425499,Infrastructure,Infrastructure +425498,Infrastructure,Infrastructure +423890,Infrastructure,Infrastructure +423888,Infrastructure,Infrastructure +422014,Infrastructure,Infrastructure +422010,Infrastructure,Infrastructure +421999,Infrastructure,Infrastructure +419469,Infrastructure,Infrastructure +417770,Infrastructure,Infrastructure +415401,Infrastructure,Infrastructure +409397,Infrastructure,Infrastructure +409395,Infrastructure,Infrastructure +409383,Infrastructure,Infrastructure +535504,Infrastructure,Infrastructure +535496,Infrastructure,Infrastructure +511301,Infrastructure,Infrastructure +487882,Infrastructure,Infrastructure +487878,Infrastructure,Infrastructure +487869,Infrastructure,Infrastructure +483610,Infrastructure,Infrastructure +483605,Infrastructure,Infrastructure +483603,Infrastructure,Infrastructure +482413,Infrastructure,Infrastructure +482412,Infrastructure,Infrastructure +482409,Infrastructure,Infrastructure +479710,Infrastructure,Infrastructure +479706,Infrastructure,Infrastructure +479703,Infrastructure,Infrastructure +477525,Infrastructure,Infrastructure +477512,Infrastructure,Infrastructure +475053,Infrastructure,Infrastructure +475049,Infrastructure,Infrastructure +472996,Infrastructure,Infrastructure +472992,Infrastructure,Infrastructure +472987,Infrastructure,Infrastructure +470985,Infrastructure,Infrastructure +470974,Infrastructure,Infrastructure +467556,Infrastructure,Infrastructure +467550,Infrastructure,Infrastructure +467540,Infrastructure,Infrastructure +465037,Infrastructure,Infrastructure +462849,Infrastructure,Infrastructure +462848,Infrastructure,Infrastructure +462847,Infrastructure,Infrastructure +462846,Infrastructure,Infrastructure +461750,Infrastructure,Infrastructure +460600,Infrastructure,Infrastructure +459402,Infrastructure,Infrastructure +459401,Infrastructure,Infrastructure +455732,Infrastructure,Infrastructure +452326,Infrastructure,Infrastructure +452321,Infrastructure,Infrastructure +452319,Infrastructure,Infrastructure +452317,Infrastructure,Infrastructure +452315,Infrastructure,Infrastructure +452313,Infrastructure,Infrastructure +452310,Infrastructure,Infrastructure +452303,Infrastructure,Infrastructure +449656,Infrastructure,Infrastructure +449645,Infrastructure,Infrastructure +448046,Infrastructure,Infrastructure +448028,Infrastructure,Infrastructure +448024,Infrastructure,Infrastructure +446637,Infrastructure,Infrastructure +444995,Infrastructure,Infrastructure +443687,Infrastructure,Infrastructure +443683,Infrastructure,Infrastructure +441404,Infrastructure,Infrastructure +441399,Infrastructure,Infrastructure +438799,Infrastructure,Infrastructure +438798,Infrastructure,Infrastructure +438796,Infrastructure,Infrastructure +438795,Infrastructure,Infrastructure +438793,Infrastructure,Infrastructure +438782,Infrastructure,Infrastructure +438778,Infrastructure,Infrastructure +438774,Infrastructure,Infrastructure +438769,Infrastructure,Infrastructure +438761,Infrastructure,Infrastructure +435293,Infrastructure,Infrastructure +435276,Infrastructure,Infrastructure +435261,Infrastructure,Infrastructure +435255,Infrastructure,Infrastructure +435244,Infrastructure,Infrastructure +435234,Infrastructure,Infrastructure +433546,Infrastructure,Infrastructure +432245,Infrastructure,Infrastructure +430199,Infrastructure,Infrastructure +452310,Internal Trade,Internal Trade +452303,Internal Trade,Internal Trade +455732,Internal Trade,Internal Trade +452326,Internal Trade,Internal Trade +452321,Internal Trade,Internal Trade +452319,Internal Trade,Internal Trade +452317,Internal Trade,Internal Trade +452315,Internal Trade,Internal Trade +452303,International Trade,International Trade +535482,International Trade,International Trade +417776,International Trade,International Trade +465036,International Trade,International Trade +462849,International Trade,International Trade +462848,International Trade,International Trade +462847,International Trade,International Trade +462846,International Trade,International Trade +452326,International Trade,International Trade +452321,International Trade,International Trade +452319,International Trade,International Trade +452317,International Trade,International Trade +452315,International Trade,International Trade +452313,International Trade,International Trade +483603,Regional Development,Regional Development +482413,Regional Development,Regional Development +482409,Regional Development,Regional Development +479710,Regional Development,Regional Development +479706,Regional Development,Regional Development +479703,Regional Development,Regional Development +475053,Regional Development,Regional Development +475049,Regional Development,Regional Development +472996,Regional Development,Regional Development +472992,Regional Development,Regional Development +472987,Regional Development,Regional Development +470985,Regional Development,Regional Development +470974,Regional Development,Regional Development +467556,Regional Development,Regional Development +467550,Regional Development,Regional Development +467540,Regional Development,Regional Development +465036,Regional Development,Regional Development +462849,Regional Development,Regional Development +462848,Regional Development,Regional Development +462847,Regional Development,Regional Development +462846,Regional Development,Regional Development +461750,Regional Development,Regional Development +460600,Regional Development,Regional Development +459402,Regional Development,Regional Development +459401,Regional Development,Regional Development +455732,Regional Development,Regional Development +452326,Regional Development,Regional Development +452321,Regional Development,Regional Development +452319,Regional Development,Regional Development +452317,Regional Development,Regional Development +452315,Regional Development,Regional Development +452313,Regional Development,Regional Development +452310,Regional Development,Regional Development +452303,Regional Development,Regional Development +449656,Regional Development,Regional Development +449645,Regional Development,Regional Development +448046,Regional Development,Regional Development +448028,Regional Development,Regional Development +448024,Regional Development,Regional Development +446637,Regional Development,Regional Development +444995,Regional Development,Regional Development +443687,Regional Development,Regional Development +438799,Regional Development,Regional Development +438798,Regional Development,Regional Development +438796,Regional Development,Regional Development +438795,Regional Development,Regional Development +438793,Regional Development,Regional Development +438782,Regional Development,Regional Development +438778,Regional Development,Regional Development +438774,Regional Development,Regional Development +438769,Regional Development,Regional Development +435293,Regional Development,Regional Development +435276,Regional Development,Regional Development +435261,Regional Development,Regional Development +433546,Regional Development,Regional Development +432245,Regional Development,Regional Development +430199,Regional Development,Regional Development +430198,Regional Development,Regional Development +430193,Regional Development,Regional Development +430191,Regional Development,Regional Development +428877,Regional Development,Regional Development +428875,Regional Development,Regional Development +428871,Regional Development,Regional Development +428860,Regional Development,Regional Development +428844,Regional Development,Regional Development +428805,Regional Development,Regional Development +428785,Regional Development,Regional Development +425500,Regional Development,Regional Development +425499,Regional Development,Regional Development +425498,Regional Development,Regional Development +423890,Regional Development,Regional Development +423888,Regional Development,Regional Development +422014,Regional Development,Regional Development +422010,Regional Development,Regional Development +421999,Regional Development,Regional Development +417770,Regional Development,Regional Development +487882,Regional Development,Regional Development +487878,Regional Development,Regional Development +483610,Regional Development,Regional Development +428805,Research and Development,Research and Development +428785,Research and Development,Research and Development +425500,Research and Development,Research and Development +417778,Research and Development,Research and Development +412843,Research and Development,Research and Development +412832,Research and Development,Research and Development +412830,Research and Development,Research and Development +412827,Research and Development,Research and Development +412815,Research and Development,Research and Development +412811,Research and Development,Research and Development +412808,Research and Development,Research and Development +412802,Research and Development,Research and Development +412767,Research and Development,Research and Development +412741,Research and Development,Research and Development +412728,Research and Development,Research and Development +412713,Research and Development,Research and Development +409386,Research and Development,Research and Development +409384,Research and Development,Research and Development +407945,Research and Development,Research and Development +407942,Research and Development,Research and Development +407939,Research and Development,Research and Development +407938,Research and Development,Research and Development +407936,Research and Development,Research and Development +407929,Research and Development,Research and Development +407928,Research and Development,Research and Development +406225,Research and Development,Research and Development +544028,Research and Development,Research and Development +539769,Research and Development,Research and Development +532400,Research and Development,Research and Development +530154,Research and Development,Research and Development +529399,Research and Development,Research and Development +525857,Research and Development,Research and Development +525855,Research and Development,Research and Development +517724,Research and Development,Research and Development +515617,Research and Development,Research and Development +508425,Research and Development,Research and Development +504638,Research and Development,Research and Development +498503,Research and Development,Research and Development +496168,Research and Development,Research and Development +496166,Research and Development,Research and Development +496162,Research and Development,Research and Development +487882,Research and Development,Research and Development +487878,Research and Development,Research and Development +483610,Research and Development,Research and Development +483605,Research and Development,Research and Development +483603,Research and Development,Research and Development +482413,Research and Development,Research and Development +482412,Research and Development,Research and Development +482409,Research and Development,Research and Development +479710,Research and Development,Research and Development +479706,Research and Development,Research and Development +479703,Research and Development,Research and Development +475053,Research and Development,Research and Development +475049,Research and Development,Research and Development +472996,Research and Development,Research and Development +472992,Research and Development,Research and Development +472987,Research and Development,Research and Development +470985,Research and Development,Research and Development +470974,Research and Development,Research and Development +467556,Research and Development,Research and Development +467550,Research and Development,Research and Development +467540,Research and Development,Research and Development +465046,Research and Development,Research and Development +465038,Research and Development,Research and Development +465037,Research and Development,Research and Development +465036,Research and Development,Research and Development +461750,Research and Development,Research and Development +460600,Research and Development,Research and Development +459402,Research and Development,Research and Development +459401,Research and Development,Research and Development +455732,Research and Development,Research and Development +452326,Research and Development,Research and Development +452321,Research and Development,Research and Development +452319,Research and Development,Research and Development +452317,Research and Development,Research and Development +452315,Research and Development,Research and Development +452313,Research and Development,Research and Development +452310,Research and Development,Research and Development +452303,Research and Development,Research and Development +449656,Research and Development,Research and Development +449645,Research and Development,Research and Development +448046,Research and Development,Research and Development +448028,Research and Development,Research and Development +448024,Research and Development,Research and Development +446637,Research and Development,Research and Development +444995,Research and Development,Research and Development +443687,Research and Development,Research and Development +443683,Research and Development,Research and Development +441404,Research and Development,Research and Development +441399,Research and Development,Research and Development +438799,Research and Development,Research and Development +438798,Research and Development,Research and Development +438796,Research and Development,Research and Development +438795,Research and Development,Research and Development +438793,Research and Development,Research and Development +438782,Research and Development,Research and Development +438778,Research and Development,Research and Development +438774,Research and Development,Research and Development +438769,Research and Development,Research and Development +438761,Research and Development,Research and Development +435293,Research and Development,Research and Development +435276,Research and Development,Research and Development +435261,Research and Development,Research and Development +435255,Research and Development,Research and Development +430199,Research and Development,Research and Development +430198,Research and Development,Research and Development +428877,Research and Development,Research and Development +428860,Research and Development,Research and Development +410126,Climate,Climate +410125,Climate,Climate +410126,Energy,Energy +410125,Energy,Energy +410126,Environment,Environment +410125,Environment,Environment +521274,Economic Development,Economic Development +521273,Economic Development,Economic Development +420989,Economic Development,Economic Development +420988,Economic Development,Economic Development +414032,Economic Development,Economic Development +414031,Economic Development,Economic Development +414030,Economic Development,Economic Development +414028,Economic Development,Economic Development +411367,Economic Development,Economic Development +411366,Economic Development,Economic Development +411363,Economic Development,Economic Development +408258,Economic Development,Economic Development +406086,Economic Development,Economic Development +406083,Economic Development,Economic Development +406081,Economic Development,Economic Development +406076,Economic Development,Economic Development +406073,Economic Development,Economic Development +511734,Economic Development,Economic Development +463698,Economic Development,Economic Development +454138,Economic Development,Economic Development +454137,Economic Development,Economic Development +454136,Economic Development,Economic Development +454135,Economic Development,Economic Development +436897,Economic Development,Economic Development +436890,Economic Development,Economic Development +436886,Economic Development,Economic Development +431969,Economic Development,Economic Development +431968,Economic Development,Economic Development +427487,Economic Development,Economic Development +422803,Economic Development,Economic Development +422802,Economic Development,Economic Development +538817,Economic Development,Economic Development +536605,Economic Development,Economic Development +536603,Economic Development,Economic Development +530427,Economic Development,Economic Development +527318,Economic Development,Economic Development +524753,Economic Development,Economic Development +408258,Employment and Training,Employment and Training +406083,Employment and Training,Employment and Training +538817,Employment and Training,Employment and Training +536605,Employment and Training,Employment and Training +536603,Employment and Training,Employment and Training +530427,Employment and Training,Employment and Training +527318,Employment and Training,Employment and Training +524753,Employment and Training,Employment and Training +521276,Employment and Training,Employment and Training +521274,Employment and Training,Employment and Training +521273,Employment and Training,Employment and Training +511734,Employment and Training,Employment and Training +500681,Employment and Training,Employment and Training +463698,Employment and Training,Employment and Training +454138,Employment and Training,Employment and Training +454136,Employment and Training,Employment and Training +436897,Employment and Training,Employment and Training +436890,Employment and Training,Employment and Training +436886,Employment and Training,Employment and Training +431969,Employment and Training,Employment and Training +431968,Employment and Training,Employment and Training +427487,Employment and Training,Employment and Training +422803,Employment and Training,Employment and Training +414032,Employment and Training,Employment and Training +411367,Regional Development,Regional Development +408258,Regional Development,Regional Development +406083,Regional Development,Regional Development +406081,Regional Development,Regional Development +538817,Regional Development,Regional Development +530427,Regional Development,Regional Development +527318,Regional Development,Regional Development +524753,Regional Development,Regional Development +521276,Regional Development,Regional Development +521274,Regional Development,Regional Development +521273,Regional Development,Regional Development +463698,Regional Development,Regional Development +463696,Regional Development,Regional Development +454138,Regional Development,Regional Development +436897,Regional Development,Regional Development +436895,Regional Development,Regional Development +436890,Regional Development,Regional Development +436886,Regional Development,Regional Development +431968,Regional Development,Regional Development +427487,Regional Development,Regional Development +422803,Regional Development,Regional Development +414032,Regional Development,Regional Development +414031,Regional Development,Regional Development +414030,Regional Development,Regional Development +406083,Small Business,Small Business +538817,Small Business,Small Business +454138,Small Business,Small Business +436897,Small Business,Small Business +436895,Small Business,Small Business +436890,Small Business,Small Business +436886,Small Business,Small Business +431968,Small Business,Small Business +427487,Small Business,Small Business +414032,Small Business,Small Business +414031,Small Business,Small Business +410473,Environment,Environment +406472,Housing,Housing +406428,Housing,Housing +417542,Housing,Housing +417537,Housing,Housing +417536,Housing,Housing +417135,Housing,Housing +411499,Housing,Housing +410992,Housing,Housing +408426,Housing,Housing +491008,Economic Development,Economic Development +417540,Economic Development,Economic Development +491545,Government Procurement,Government Procurement +407082,Health,Health +538150,Fisheries,Fisheries +536883,Fisheries,Fisheries +417284,Fisheries,Fisheries +417282,Fisheries,Fisheries +417280,Fisheries,Fisheries +417276,Fisheries,Fisheries +417273,Fisheries,Fisheries +417271,Fisheries,Fisheries +416979,Fisheries,Fisheries +413198,Fisheries,Fisheries +413164,Fisheries,Fisheries +413149,Fisheries,Fisheries +410329,Fisheries,Fisheries +408244,Fisheries,Fisheries +406948,Fisheries,Fisheries +519656,Fisheries,Fisheries +512566,Fisheries,Fisheries +491327,Fisheries,Fisheries +491273,Fisheries,Fisheries +491266,Fisheries,Fisheries +487388,Fisheries,Fisheries +487332,Fisheries,Fisheries +487319,Fisheries,Fisheries +487318,Fisheries,Fisheries +485487,Fisheries,Fisheries +485486,Fisheries,Fisheries +483914,Fisheries,Fisheries +460340,Fisheries,Fisheries +460339,Fisheries,Fisheries +406147,Intellectual Property,Intellectual Property +406143,Intellectual Property,Intellectual Property +407247,Budget,Budget +407247,Research and Development,Research and Development +407247,Small Business,Small Business +407247,Taxation and Finance,Taxation and Finance +505538,Small Business,Small Business +496226,Small Business,Small Business +455601,Small Business,Small Business +431337,Taxation and Finance,Taxation and Finance +431326,Taxation and Finance,Taxation and Finance +509050,Taxation and Finance,Taxation and Finance +455601,Taxation and Finance,Taxation and Finance +406158,Security,Security +436582,Security,Security +530911,Agriculture,Agriculture +502945,Agriculture,Agriculture +416298,Health,Health +416297,Health,Health +416301,Health,Health +416300,Health,Health +416298,Research and Development,Research and Development +416297,Research and Development,Research and Development +416301,Research and Development,Research and Development +416300,Research and Development,Research and Development +407035,Health,Health +516545,Agriculture,Agriculture +491946,Agriculture,Agriculture +486043,Agriculture,Agriculture +484658,Agriculture,Agriculture +465349,Agriculture,Agriculture +465348,Agriculture,Agriculture +460797,Agriculture,Agriculture +453925,Agriculture,Agriculture +453922,Agriculture,Agriculture +450391,Agriculture,Agriculture +443034,Agriculture,Agriculture +436607,Agriculture,Agriculture +432796,Agriculture,Agriculture +420487,Agriculture,Agriculture +418655,Agriculture,Agriculture +418553,Agriculture,Agriculture +418552,Agriculture,Agriculture +406296,Employment and Training,Employment and Training +406173,Employment and Training,Employment and Training +420355,Employment and Training,Employment and Training +420354,Employment and Training,Employment and Training +420353,Employment and Training,Employment and Training +420352,Employment and Training,Employment and Training +417290,Employment and Training,Employment and Training +411182,Employment and Training,Employment and Training +411061,Employment and Training,Employment and Training +411060,Employment and Training,Employment and Training +410689,Employment and Training,Employment and Training +410254,Employment and Training,Employment and Training +408673,Employment and Training,Employment and Training +408506,Employment and Training,Employment and Training +408505,Employment and Training,Employment and Training +408504,Employment and Training,Employment and Training +408503,Employment and Training,Employment and Training +407787,Security,Security +407785,Security,Security +438051,Security,Security +424234,Security,Security +421741,Security,Security +421740,Security,Security +421739,Security,Security +419540,Security,Security +415273,Security,Security +415271,Security,Security +412393,Security,Security +412392,Security,Security +412391,Security,Security +409230,Security,Security +409227,Security,Security +406193,Economic Development,Economic Development +406192,Economic Development,Economic Development +406193,International Development,International Development +406192,International Development,International Development +406195,International Trade,International Trade +410382,Health,Health +410382,Taxation and Finance,Taxation and Finance +408981,Taxation and Finance,Taxation and Finance +408979,Taxation and Finance,Taxation and Finance +408981,Small Business,Small Business +408979,Small Business,Small Business +451060,Taxation and Finance,Taxation and Finance +444853,Taxation and Finance,Taxation and Finance +434062,Taxation and Finance,Taxation and Finance +434061,Taxation and Finance,Taxation and Finance +422136,Taxation and Finance,Taxation and Finance +409340,Taxation and Finance,Taxation and Finance +454127,Taxation and Finance,Taxation and Finance +454126,Taxation and Finance,Taxation and Finance +499367,Climate,Climate +499358,Climate,Climate +537964,Climate,Climate +537963,Climate,Climate +537961,Climate,Climate +537959,Climate,Climate +535463,Climate,Climate +535446,Climate,Climate +535442,Climate,Climate +535439,Climate,Climate +535431,Climate,Climate +535427,Climate,Climate +535419,Climate,Climate +535398,Climate,Climate +499367,Economic Development,Economic Development +499358,Economic Development,Economic Development +535419,Energy,Energy +535398,Energy,Energy +499393,Energy,Energy +499367,Energy,Energy +499358,Energy,Energy +457187,Energy,Energy +457186,Energy,Energy +457182,Energy,Energy +457180,Energy,Energy +457176,Energy,Energy +537964,Energy,Energy +537962,Energy,Energy +537961,Energy,Energy +537960,Energy,Energy +537959,Energy,Energy +535463,Energy,Energy +535446,Energy,Energy +535442,Energy,Energy +535439,Energy,Energy +535431,Energy,Energy +535442,Environment,Environment +535439,Environment,Environment +499393,Environment,Environment +499367,Environment,Environment +499358,Environment,Environment +537961,Environment,Environment +499367,Industry,Industry +499358,Industry,Industry +537964,Industry,Industry +537963,Industry,Industry +537962,Industry,Industry +537961,Industry,Industry +537960,Industry,Industry +535463,Industry,Industry +535446,Industry,Industry +535431,Industry,Industry +535427,Industry,Industry +535419,Industry,Industry +535398,Industry,Industry +499367,Internal Trade,Internal Trade +535439,International Relations,International Relations +499367,International Relations,International Relations +537964,International Relations,International Relations +537962,International Relations,International Relations +537961,International Relations,International Relations +537960,International Relations,International Relations +537959,International Relations,International Relations +535463,International Relations,International Relations +535446,International Relations,International Relations +499393,Regional Development,Regional Development +499367,Regional Development,Regional Development +409077,Transportation,Transportation +407047,Economic Development,Economic Development +407047,Transportation,Transportation +535031,Consumer Issues,Consumer Issues +531972,Consumer Issues,Consumer Issues +500093,Consumer Issues,Consumer Issues +474943,Consumer Issues,Consumer Issues +453237,Consumer Issues,Consumer Issues +435477,Consumer Issues,Consumer Issues +406989,Industry,Industry +535031,Industry,Industry +522139,Industry,Industry +522134,Industry,Industry +500093,Industry,Industry +453237,Industry,Industry +435477,Industry,Industry +426006,Industry,Industry +420311,Industry,Industry +417227,Industry,Industry +417226,Industry,Industry +413869,Industry,Industry +413868,Industry,Industry +408302,Industry,Industry +477658,Small Business,Small Business +424370,Taxation and Finance,Taxation and Finance +420311,Taxation and Finance,Taxation and Finance +408302,Taxation and Finance,Taxation and Finance +406990,Taxation and Finance,Taxation and Finance +484634,Taxation and Finance,Taxation and Finance +408635,Industry,Industry +408635,International Trade,International Trade +408635,Transportation,Transportation +486183,Health,Health +486178,Health,Health +486177,Health,Health +486175,Health,Health +486174,Health,Health +483203,Health,Health +483202,Health,Health +482936,Health,Health +481158,Health,Health +481143,Health,Health +481142,Health,Health +481141,Health,Health +481139,Health,Health +481115,Health,Health +480731,Health,Health +480498,Health,Health +480497,Health,Health +480495,Health,Health +480494,Health,Health +480491,Health,Health +480487,Health,Health +480485,Health,Health +480484,Health,Health +480483,Health,Health +480482,Health,Health +480477,Health,Health +478035,Health,Health +478025,Health,Health +476080,Health,Health +476063,Health,Health +476060,Health,Health +476058,Health,Health +476055,Health,Health +476053,Health,Health +476050,Health,Health +475971,Health,Health +475967,Health,Health +475963,Health,Health +475960,Health,Health +475958,Health,Health +475956,Health,Health +475946,Health,Health +473774,Health,Health +473773,Health,Health +473772,Health,Health +473771,Health,Health +473770,Health,Health +471457,Health,Health +471456,Health,Health +471455,Health,Health +471454,Health,Health +469198,Health,Health +466378,Health,Health +465642,Health,Health +465638,Health,Health +462804,Health,Health +462017,Health,Health +460513,Health,Health +460512,Health,Health +460511,Health,Health +460510,Health,Health +460509,Health,Health +458943,Health,Health +456796,Health,Health +456795,Health,Health +456794,Health,Health +456793,Health,Health +456791,Health,Health +448845,Health,Health +447560,Health,Health +447503,Health,Health +446426,Health,Health +434161,Health,Health +434160,Health,Health +434159,Health,Health +421769,Health,Health +541161,Health,Health +541159,Health,Health +535646,Health,Health +535645,Health,Health +535636,Health,Health +535634,Health,Health +526684,Health,Health +522892,Health,Health +514096,Health,Health +512505,Health,Health +512504,Health,Health +512499,Health,Health +510363,Health,Health +510362,Health,Health +510360,Health,Health +510358,Health,Health +510357,Health,Health +510356,Health,Health +508157,Health,Health +508154,Health,Health +505878,Health,Health +505877,Health,Health +505876,Health,Health +501267,Health,Health +501266,Health,Health +498186,Health,Health +498185,Health,Health +498184,Health,Health +498182,Health,Health +498180,Health,Health +494877,Health,Health +494876,Health,Health +494875,Health,Health +494874,Health,Health +494873,Health,Health +494872,Health,Health +494871,Health,Health +494870,Health,Health +494869,Health,Health +406710,Labour,Labour +468299,Climate,Climate +468294,Climate,Climate +468287,Climate,Climate +430834,Climate,Climate +430832,Climate,Climate +430830,Climate,Climate +430828,Climate,Climate +430827,Climate,Climate +430825,Climate,Climate +426518,Climate,Climate +426508,Climate,Climate +426494,Climate,Climate +420329,Climate,Climate +420328,Climate,Climate +420327,Climate,Climate +413209,Climate,Climate +413171,Climate,Climate +413153,Climate,Climate +543954,Climate,Climate +543951,Climate,Climate +532167,Climate,Climate +532164,Climate,Climate +532163,Climate,Climate +532161,Climate,Climate +529163,Climate,Climate +529160,Climate,Climate +529151,Climate,Climate +529150,Climate,Climate +525436,Climate,Climate +522231,Climate,Climate +518901,Climate,Climate +513350,Climate,Climate +510548,Climate,Climate +508528,Climate,Climate +506025,Climate,Climate +506024,Climate,Climate +488317,Climate,Climate +488315,Climate,Climate +480455,Climate,Climate +478151,Climate,Climate +478015,Climate,Climate +477995,Climate,Climate +406318,International Trade,Commerce international +405871,Transportation,Transportation +405460,International Relations,International Relations +408864,Health,Health +441815,Research and Development,Research and Development +413926,Economic Development,Economic Development +407716,Education,Education +512432,International Relations,International Relations +406590,International Trade,International Trade +429530,Government Procurement,Government Procurement +407189,International Relations,International Relations +408131,Taxation and Finance,Taxation and Finance +408131,International Trade,International Trade +416735,Small Business,Small Business +408131,Consumer Issues,Consumer Issues +407528,Infrastructure,Infrastructure +405838,Transportation,Transportation +405840,Industry,Industry +434100,Security,Security +406067,Financial Institutions,Financial Institutions +461989,Transportation,Transportation +492046,Budget,Budget +506279,Economic Development,Economic Development +408974,Health,Health +408974,Research and Development,Research and Development +426000,Agriculture,Agriculture +430812,Climate,Climate +409630,Economic Development,Economic Development +407683,Energy,Energy +447090,Environment,Environment +419056,Government Procurement,Government Procurement +430812,Industry,Industry +409628,Infrastructure,Infrastructure +426000,International Trade,International Trade +426000,Transportation,Transportation +418796,International Trade,International Trade +406317,International Trade,International Trade +448833,Government Procurement,Government Procurement +429911,Agriculture,Agriculture +423036,International Trade,International Trade +429912,Agriculture,Agriculture +423041,International Trade,International Trade +410846,Agriculture,Agriculture +414332,Consumer Issues,Consumer Issues +414332,Environment,Environment +408686,Health,Health +414332,Industry,Industry +409224,Economic Development,Economic Development +420271,International Trade,International Trade +408820,Consumer Issues,Consumer Issues +408820,Economic Development,Economic Development +408819,Small Business,Small Business +407776,Transportation,Transportation +408019,Transportation,Transportation +406005,Energy,Energy +431970,Defence,Defence +500681,Government Procurement,Government Procurement +408730,Education,Education +408730,Employment and Training,Employment and Training +407055,Economic Development,Développement économique +493564,Climate,Climate +412802,Economic Development,Economic Development +504633,Environment,Environment +519758,Industry,Industry +430198,Infrastructure,Infrastructure +452313,Internal Trade,Internal Trade +452310,International Trade,International Trade +483605,Regional Development,Regional Development +428844,Research and Development,Research and Development +410129,Climate,Climate +410129,Energy,Energy +410129,Environment,Environment +521276,Economic Development,Economic Development +414031,Employment and Training,Employment and Training +414028,Regional Development,Regional Development +411367,Small Business,Small Business +406785,Employment and Training,Emploi et formation +406785,Economic Development,Développement économique +406785,Small Business,Petites entreprises +410473,Economic Development,Economic Development +410883,Environment,Environment +407085,Housing,Housing +417540,Health,Health +406345,Economic Development,Economic Development +491552,Government Procurement,Government Procurement +462221,Government Procurement,Government Procurement +408295,Health,Health +408294,Justice and Law Enforcement,Justice and Law Enforcement +406136,Fisheries,Fisheries +538171,Fisheries,Fisheries +406142,Climate,Climate +408581,Intellectual Property,Intellectual Property +407248,Budget,Budget +407248,Economic Development,Economic Development +407248,Government Procurement,Government Procurement +407247,Industry,Industry +407248,Research and Development,Research and Development +407248,Small Business,Small Business +407248,Taxation and Finance,Taxation and Finance +445496,Consumer Issues,Consumer Issues +445512,Small Business,Small Business +445504,Taxation and Finance,Taxation and Finance +407455,Security,Security +530912,Agriculture,Agriculture +416299,Health,Health +416299,Research and Development,Research and Development +407035,Agriculture,Agriculture +427725,Health,Health +407035,Internal Trade,Internal Trade +427725,Justice and Law Enforcement,Justice and Law Enforcement +406349,Health,Health +516546,Agriculture,Agriculture +420487,Internal Trade,Internal Trade +418553,International Relations,International Relations +408100,Employment and Training,Employment and Training +407788,Security,Security +406194,Economic Development,Economic Development +406194,International Development,International Development +406196,International Trade,International Trade +410393,Health,Health +410393,Taxation and Finance,Taxation and Finance +408979,Intellectual Property,Intellectual Property +423095,Research and Development,Research and Development +423095,Taxation and Finance,Taxation and Finance +423095,Small Business,Small Business +451061,Taxation and Finance,Taxation and Finance +499393,Climate,Climate +499393,Economic Development,Economic Development +499393,Employment and Training,Employment and Training +535427,Energy,Energy +537959,Environment,Environment +499393,Industry,Industry +499393,Internal Trade,Internal Trade +535442,International Relations,International Relations +537960,Regional Development,Regional Development +499393,Taxation and Finance,Taxation and Finance +406228,International Trade,International Trade +409076,Infrastructure,Infrastructure +409079,Transportation,Transportation +407048,Economic Development,Economic Development +407048,Transportation,Transportation +407056,Transportation,Transportation +407056,Infrastructure,Infrastructure +421156,Climate,Climate +421156,Energy,Energy +421156,Environment,Environment +531975,Research and Development,Research and Development +406989,Consumer Issues,Consumer Issues +406990,Industry,Industry +477660,Small Business,Small Business +469314,Taxation and Finance,Taxation and Finance +408635,Consumer Issues,Consumer Issues +408635,Energy,Energy +408635,Environment,Environment +408637,Industry,Industry +408637,International Trade,International Trade +408635,Taxation and Finance,Taxation and Finance +408637,Transportation,Transportation +414646,Government Procurement,Government Procurement +494868,Health,Health +413512,Labour,Labour +468302,Climate,Climate +468299,Consumer Issues,Consumer Issues +488315,Energy,Energy +468299,Environment,Environment +426494,Industry,Industry +442868,Economic Development,Economic Development +415816,Health,Health +415816,Industry,Industry +442868,Research and Development,Research and Development +519089,Climate,Climate +410417,Education,Education +407642,Employment and Training,Employment and Training +464788,International Trade,International Trade +406423,Small Business,Small Business +406424,Employment and Training,Employment and Training +430831,Climate,Climate +451693,Economic Development,Economic Development +508033,Energy,Energy +412978,Environment,Environment +501690,Infrastructure,Infrastructure +438494,Regional Development,Regional Development +407080,Education,Education +438295,Employment and Training,Employment and Training +406495,Small Business,Petites entreprises +424550,Economic Development,Développement économique +424550,Small Business,Petites entreprises +424550,Research and Development,Recherche et développement +406495,Agriculture,Agriculture +406495,Consumer Issues,Consumer Issues +406519,Constitutional Issues,Constitutional Issues +406519,Health,Health +421819,Defence,Defence +443564,Government Procurement,Government Procurement +411006,Industry,Industry +409553,Privacy and Access to Information,Privacy and Access to Information +445236,Security,Security +413386,International Trade,International Trade +431047,International Relations,International Relations +411751,Economic Development,Economic Development +411815,Research and Development,Research and Development +415360,Economic Development,Economic Development +415360,Research and Development,Research and Development +446538,Agriculture,Agriculture +521281,Economic Development,Economic Development +496787,International Trade,International Trade +406684,Labour,Labour +407001,Transportation,Transportation +420351,Taxation and Finance,Taxation and Finance +407444,Defence,Defence +511980,Privacy and Access to Information,Privacy and Access to Information +456020,Industry,Industry +499445,Government Procurement,Government Procurement +499445,Security,Security +413867,Budget,Budget +413865,Climate,Climate +407554,Economic Development,Economic Development +407554,Environment,Environment +407554,International Trade,International Trade +407554,Transportation,Transportation +412826,Economic Development,Economic Development +406856,Research and Development,Research and Development +418496,Environment,Environment +475408,Climate,Climate +475400,Climate,Climate +475392,Climate,Climate +475376,Climate,Climate +475363,Climate,Climate +473661,Climate,Climate +473654,Climate,Climate +472517,Climate,Climate +472513,Climate,Climate +472511,Climate,Climate +472476,Climate,Climate +472475,Climate,Climate +472470,Climate,Climate +472469,Climate,Climate +472464,Climate,Climate +470900,Climate,Climate +470890,Climate,Climate +468306,Climate,Climate +468294,Consumer Issues,Consumer Issues +468287,Consumer Issues,Consumer Issues +426518,Consumer Issues,Consumer Issues +426508,Consumer Issues,Consumer Issues +426494,Consumer Issues,Consumer Issues +420329,Consumer Issues,Consumer Issues +420328,Consumer Issues,Consumer Issues +420327,Consumer Issues,Consumer Issues +532164,Consumer Issues,Consumer Issues +532161,Consumer Issues,Consumer Issues +532159,Consumer Issues,Consumer Issues +529150,Consumer Issues,Consumer Issues +513346,Consumer Issues,Consumer Issues +472517,Consumer Issues,Consumer Issues +468306,Consumer Issues,Consumer Issues +468302,Consumer Issues,Consumer Issues +480455,Energy,Energy +478151,Energy,Energy +478015,Energy,Energy +475408,Energy,Energy +473661,Energy,Energy +473654,Energy,Energy +472517,Energy,Energy +472511,Energy,Energy +472475,Energy,Energy +470900,Energy,Energy +470890,Energy,Energy +468302,Energy,Energy +468299,Energy,Energy +430834,Energy,Energy +430832,Energy,Energy +430830,Energy,Energy +430828,Energy,Energy +430827,Energy,Energy +430825,Energy,Energy +420329,Energy,Energy +420328,Energy,Energy +420327,Energy,Energy +413209,Energy,Energy +413171,Energy,Energy +413153,Energy,Energy +532167,Energy,Energy +532163,Energy,Energy +518901,Energy,Energy +468287,Environment,Environment +464051,Environment,Environment +430830,Environment,Environment +430828,Environment,Environment +430827,Environment,Environment +420329,Environment,Environment +420328,Environment,Environment +420327,Environment,Environment +413209,Environment,Environment +413171,Environment,Environment +413153,Environment,Environment +543954,Environment,Environment +543951,Environment,Environment +532167,Environment,Environment +532164,Environment,Environment +532163,Environment,Environment +532161,Environment,Environment +532159,Environment,Environment +529163,Environment,Environment +529160,Environment,Environment +529151,Environment,Environment +529150,Environment,Environment +525436,Environment,Environment +522231,Environment,Environment +518901,Environment,Environment +513350,Environment,Environment +513346,Environment,Environment +510548,Environment,Environment +508528,Environment,Environment +506025,Environment,Environment +506024,Environment,Environment +502197,Environment,Environment +488315,Environment,Environment +478151,Environment,Environment +478015,Environment,Environment +475408,Environment,Environment +475400,Environment,Environment +475392,Environment,Environment +475376,Environment,Environment +475363,Environment,Environment +473661,Environment,Environment +473654,Environment,Environment +472517,Environment,Environment +472513,Environment,Environment +472476,Environment,Environment +472470,Environment,Environment +472464,Environment,Environment +470900,Environment,Environment +470890,Environment,Environment +468306,Environment,Environment +420329,Industry,Industry +420327,Industry,Industry +430834,Industry,Industry +430832,Industry,Industry +430830,Industry,Industry +430828,Industry,Industry +430827,Industry,Industry +430825,Industry,Industry +426518,Industry,Industry +426508,Industry,Industry +426838,Economic Development,Economic Development +415875,Economic Development,Economic Development +442868,Health,Health +442867,Health,Health +426838,Health,Health +426837,Health,Health +415875,Industry,Industry +426838,Research and Development,Research and Development +426837,Research and Development,Research and Development +509608,Climate,Climate +495270,Climate,Climate +460099,Climate,Climate +451962,Climate,Climate +451961,Climate,Climate +447869,Climate,Climate +447867,Climate,Climate +445297,Climate,Climate +442256,Climate,Climate +442243,Climate,Climate +438320,Climate,Climate +433457,Climate,Climate +433455,Climate,Climate +428518,Climate,Climate +426139,Climate,Climate +426001,Climate,Climate +423581,Climate,Climate +423580,Climate,Climate +423579,Climate,Climate +423578,Climate,Climate +423577,Climate,Climate +423576,Climate,Climate +423575,Climate,Climate +420885,Climate,Climate +420884,Climate,Climate +420883,Climate,Climate +419282,Climate,Climate +416050,Climate,Climate +409611,Climate,Climate +406298,Climate,Climate +532988,Climate,Climate +532987,Climate,Climate +532986,Climate,Climate +532985,Climate,Climate +407642,Education,Education +446323,International Trade,International Trade +444861,International Trade,International Trade +419410,International Trade,International Trade +406416,International Trade,International Trade +465274,International Trade,International Trade +428517,Climate,Climate +539831,Climate,Climate +487336,Climate,Climate +430836,Climate,Climate +449880,Economic Development,Economic Development +421921,Economic Development,Economic Development +477033,Economic Development,Economic Development +477027,Economic Development,Economic Development +451694,Economic Development,Economic Development +508028,Energy,Energy +501690,Energy,Energy +487336,Energy,Energy +477033,Energy,Energy +477027,Energy,Energy +459385,Energy,Energy +458422,Energy,Energy +451694,Energy,Energy +451693,Energy,Energy +451691,Energy,Energy +449880,Energy,Energy +446987,Energy,Energy +438496,Energy,Energy +438494,Energy,Energy +438491,Energy,Energy +438489,Energy,Energy +438488,Energy,Energy +438485,Energy,Energy +430836,Energy,Energy +430831,Energy,Energy +428517,Energy,Energy +421921,Energy,Energy +421918,Energy,Energy +421916,Energy,Energy +415305,Energy,Energy +412984,Energy,Energy +412983,Energy,Energy +412980,Energy,Energy +412978,Energy,Energy +412977,Energy,Energy +407686,Energy,Energy +539831,Energy,Energy +531324,Energy,Energy +524928,Energy,Energy +539831,Environment,Environment +531324,Environment,Environment +524928,Environment,Environment +508033,Environment,Environment +508028,Environment,Environment +501690,Environment,Environment +487336,Environment,Environment +477033,Environment,Environment +477027,Environment,Environment +459385,Environment,Environment +458422,Environment,Environment +451694,Environment,Environment +451693,Environment,Environment +451691,Environment,Environment +446987,Environment,Environment +438496,Environment,Environment +438494,Environment,Environment +438491,Environment,Environment +438489,Environment,Environment +438488,Environment,Environment +438485,Environment,Environment +430836,Environment,Environment +430831,Environment,Environment +428517,Environment,Environment +421921,Environment,Environment +421918,Environment,Environment +415305,Environment,Environment +412984,Environment,Environment +412983,Environment,Environment +412980,Environment,Environment +477033,Infrastructure,Infrastructure +477027,Infrastructure,Infrastructure +421921,Infrastructure,Infrastructure +412980,Infrastructure,Infrastructure +539831,Infrastructure,Infrastructure +438491,Regional Development,Regional Development +438489,Regional Development,Regional Development +449880,Regional Development,Regional Development +438294,Employment and Training,Employment and Training +407080,Employment and Training,Employment and Training +438297,Employment and Training,Employment and Training +438296,Employment and Training,Employment and Training +443561,Government Procurement,Government Procurement +407822,Government Procurement,Government Procurement +455326,Government Procurement,Government Procurement +407822,Industry,Industry +407819,Industry,Industry +467824,Industry,Industry +462514,Industry,Industry +461542,Industry,Industry +455326,Industry,Industry +443564,Industry,Industry +443561,Industry,Industry +409549,Privacy and Access to Information,Privacy and Access to Information +407819,Privacy and Access to Information,Privacy and Access to Information +467824,Privacy and Access to Information,Privacy and Access to Information +462514,Privacy and Access to Information,Privacy and Access to Information +461542,Privacy and Access to Information,Privacy and Access to Information +455326,Privacy and Access to Information,Privacy and Access to Information +445236,Privacy and Access to Information,Privacy and Access to Information +443564,Privacy and Access to Information,Privacy and Access to Information +443561,Privacy and Access to Information,Privacy and Access to Information +421819,Privacy and Access to Information,Privacy and Access to Information +417811,Privacy and Access to Information,Privacy and Access to Information +443561,Security,Security +421819,Security,Security +417811,Security,Security +411006,Security,Security +409553,Security,Security +409549,Security,Security +467824,Security,Security +462514,Security,Security +461542,Security,Security +455326,Security,Security +413379,International Trade,International Trade +406552,International Trade,International Trade +413393,International Trade,International Trade +413389,International Trade,International Trade +406552,International Relations,International Relations +408847,Economic Development,Economic Development +406609,Economic Development,Economic Development +411815,Economic Development,Economic Development +411751,Research and Development,Research and Development +406609,Research and Development,Research and Development +411816,Economic Development,Economic Development +406610,Economic Development,Economic Development +444165,Economic Development,Economic Development +439314,Economic Development,Economic Development +415552,Economic Development,Economic Development +415525,Economic Development,Economic Development +415514,Economic Development,Economic Development +415510,Economic Development,Economic Development +406610,Research and Development,Research and Development +439314,Research and Development,Research and Development +415525,Research and Development,Research and Development +415514,Research and Development,Research and Development +415510,Research and Development,Research and Development +415491,Research and Development,Research and Development +446537,Agriculture,Agriculture +420510,Agriculture,Agriculture +521281,Agriculture,Agriculture +521280,Agriculture,Agriculture +496787,Agriculture,Agriculture +496527,Agriculture,Agriculture +496526,Agriculture,Agriculture +463589,Agriculture,Agriculture +463588,Agriculture,Agriculture +463587,Agriculture,Agriculture +463586,Agriculture,Agriculture +446539,Agriculture,Agriculture +521280,Economic Development,Economic Development +496527,International Trade,International Trade +496526,International Trade,International Trade +463589,International Trade,International Trade +463588,International Trade,International Trade +463587,International Trade,International Trade +463586,International Trade,International Trade +446539,International Trade,International Trade +446538,International Trade,International Trade +446537,International Trade,International Trade +420510,International Trade,International Trade +521281,International Trade,International Trade +521280,International Trade,International Trade +406998,Transportation,Transportation +406996,Transportation,Transportation +538970,Industry,Industry +511980,Industry,Industry +456020,Government Procurement,Government Procurement +456009,Government Procurement,Government Procurement +511980,Government Procurement,Government Procurement +456020,Security,Security +456009,Security,Security +538970,Security,Security +413865,Budget,Budget +407551,Economic Development,Economic Development +407551,Environment,Environment +407551,International Trade,International Trade +407551,Transportation,Transportation +406856,Economic Development,Economic Development +386460,Science and Technology,Science and Technology +386459,Science and Technology,Science and Technology +386504,Science and Technology,Science and Technology +394632,Science and Technology,Science and Technology +394629,Science and Technology,Science and Technology +395157,Science and Technology,Science and Technology +395156,Science and Technology,Science and Technology +394636,Science and Technology,Science and Technology +389045,Science and Technology,Science and Technology +386048,Science and Technology,Science and Technology +389048,Science and Technology,Science and Technology +389047,Science and Technology,Science and Technology +440336,Science and Technology,Science and Technology +440335,Science and Technology,Science and Technology +431585,Science and Technology,Science and Technology +428300,Science and Technology,Science and Technology +428299,Science and Technology,Science and Technology +428298,Science and Technology,Science and Technology +415066,Science and Technology,Science and Technology +411297,Science and Technology,Science and Technology +411296,Science and Technology,Science and Technology +411289,Science and Technology,Science and Technology +404378,Science and Technology,Science and Technology +400257,Science and Technology,Science and Technology +397614,Science and Technology,Science and Technology +397269,Science and Technology,Science and Technology +397267,Science and Technology,Science and Technology +395265,Science and Technology,Science and Technology +390390,Science and Technology,Science and Technology +389052,Science and Technology,Science and Technology +389051,Science and Technology,Science and Technology +389050,Science and Technology,Science and Technology +387945,Science and Technology,Science and Technology +399450,Aboriginal Affairs,Aboriginal Affairs +399445,Aboriginal Affairs,Aboriginal Affairs +389724,Aboriginal Affairs,Aboriginal Affairs +389723,Aboriginal Affairs,Aboriginal Affairs +388849,Aboriginal Affairs,Aboriginal Affairs +388848,Aboriginal Affairs,Aboriginal Affairs +388847,Aboriginal Affairs,Aboriginal Affairs +388846,Aboriginal Affairs,Aboriginal Affairs +388845,Aboriginal Affairs,Aboriginal Affairs +388844,Aboriginal Affairs,Aboriginal Affairs +388843,Aboriginal Affairs,Aboriginal Affairs +388842,Aboriginal Affairs,Aboriginal Affairs +388841,Aboriginal Affairs,Aboriginal Affairs +388839,Aboriginal Affairs,Aboriginal Affairs +388837,Aboriginal Affairs,Aboriginal Affairs +388835,Aboriginal Affairs,Aboriginal Affairs +388834,Aboriginal Affairs,Aboriginal Affairs +410743,Aboriginal Affairs,Aboriginal Affairs +410742,Aboriginal Affairs,Aboriginal Affairs +402217,Aboriginal Affairs,Aboriginal Affairs +399452,Aboriginal Affairs,Aboriginal Affairs +421430,Arts and Culture,Arts and Culture +421429,Arts and Culture,Arts and Culture +404662,Arts and Culture,Arts and Culture +404661,Arts and Culture,Arts and Culture +404660,Arts and Culture,Arts and Culture +404659,Arts and Culture,Arts and Culture +400139,Arts and Culture,Arts and Culture +400138,Arts and Culture,Arts and Culture +400137,Arts and Culture,Arts and Culture +397947,Arts and Culture,Arts and Culture +395993,Arts and Culture,Arts and Culture +395988,Arts and Culture,Arts and Culture +395987,Arts and Culture,Arts and Culture +395985,Arts and Culture,Arts and Culture +392597,Arts and Culture,Arts and Culture +389700,Arts and Culture,Arts and Culture +389699,Arts and Culture,Arts and Culture +389697,Arts and Culture,Arts and Culture +389695,Arts and Culture,Arts and Culture +387464,Arts and Culture,Arts et culture +442368,Aboriginal Affairs,Aboriginal Affairs +427872,Aboriginal Affairs,Aboriginal Affairs +387528,Aboriginal Affairs,Aboriginal Affairs +385063,Aboriginal Affairs,Aboriginal Affairs +442645,Aboriginal Affairs,Aboriginal Affairs +442390,Aboriginal Affairs,Aboriginal Affairs +442388,Aboriginal Affairs,Aboriginal Affairs +404568,Telecommunications,Telecommunications +386304,Science and Technology,Science and Technology +393038,Arts and Culture,Arts and Culture +393035,Arts and Culture,Arts and Culture +410853,Arts and Culture,Arts and Culture +407456,Arts and Culture,Arts and Culture +385613,Science and Technology,Science and Technology +385609,Science and Technology,Science and Technology +463464,Science and Technology,Science and Technology +458115,Science and Technology,Science and Technology +430517,Science and Technology,Science and Technology +429162,Science and Technology,Science and Technology +422270,Science and Technology,Science and Technology +422265,Science and Technology,Science and Technology +419334,Science and Technology,Science and Technology +417244,Science and Technology,Science and Technology +395503,Science and Technology,Science and Technology +395501,Science and Technology,Science and Technology +395500,Science and Technology,Science and Technology +395499,Science and Technology,Science and Technology +394923,Science and Technology,Science and Technology +394921,Science and Technology,Science and Technology +394512,Science and Technology,Science and Technology +394507,Science and Technology,Science and Technology +392886,Science and Technology,Science and Technology +392885,Science and Technology,Science and Technology +388607,Science and Technology,Science and Technology +510907,Science and Technology,Science and Technology +510906,Science and Technology,Science and Technology +400487,Science and Technology,Science and Technology +399063,Science and Technology,Science and Technology +399045,Science and Technology,Science and Technology +396320,Science and Technology,Science and Technology +396312,Science and Technology,Science and Technology +392779,Science and Technology,Science and Technology +392771,Science and Technology,Science and Technology +391600,Science and Technology,Science and Technology +388164,Science and Technology,Science and Technology +388155,Science and Technology,Science and Technology +388151,Science and Technology,Science and Technology +388141,Science and Technology,Science and Technology +388140,Science and Technology,Science and Technology +388087,Science and Technology,Science and Technology +385756,Science and Technology,Science and Technology +490901,Science and Technology,Science and Technology +487748,Science and Technology,Science and Technology +477683,Science and Technology,Science and Technology +468016,Science and Technology,Science and Technology +464299,Science and Technology,Science and Technology +464297,Science and Technology,Science and Technology +464295,Science and Technology,Science and Technology +462617,Science and Technology,Science and Technology +462606,Science and Technology,Science and Technology +462598,Science and Technology,Science and Technology +458715,Science and Technology,Science and Technology +457493,Science and Technology,Science and Technology +457488,Science and Technology,Science and Technology +456018,Science and Technology,Science and Technology +455922,Science and Technology,Science and Technology +455908,Science and Technology,Science and Technology +455893,Science and Technology,Science and Technology +452441,Science and Technology,Science and Technology +449858,Science and Technology,Science and Technology +443752,Science and Technology,Science and Technology +443751,Science and Technology,Science and Technology +438903,Science and Technology,Science and Technology +438900,Science and Technology,Science and Technology +438893,Science and Technology,Science and Technology +438891,Science and Technology,Science and Technology +438858,Science and Technology,Science and Technology +438854,Science and Technology,Science and Technology +438851,Science and Technology,Science and Technology +438849,Science and Technology,Science and Technology +435553,Science and Technology,Science and Technology +431037,Science and Technology,Science and Technology +431036,Science and Technology,Science and Technology +431026,Science and Technology,Science and Technology +428930,Science and Technology,Science and Technology +428926,Science and Technology,Science and Technology +426863,Science and Technology,Science and Technology +426860,Science and Technology,Science and Technology +422111,Science and Technology,Science and Technology +422109,Science and Technology,Science and Technology +422101,Science and Technology,Science and Technology +422099,Science and Technology,Science and Technology +419920,Science and Technology,Science and Technology +418437,Science and Technology,Science and Technology +417977,Science and Technology,Science and Technology +417975,Science and Technology,Science and Technology +416314,Science and Technology,Science and Technology +416313,Science and Technology,Science and Technology +416158,Science and Technology,Science and Technology +416145,Science and Technology,Science and Technology +416138,Science and Technology,Science and Technology +416131,Science and Technology,Science and Technology +416104,Science and Technology,Science and Technology +416103,Science and Technology,Science and Technology +406637,Science and Technology,Science and Technology +405748,Science and Technology,Science and Technology +405742,Science and Technology,Science and Technology +405741,Science and Technology,Science and Technology +403790,Science and Technology,Science and Technology +403788,Science and Technology,Science and Technology +403783,Science and Technology,Science and Technology +400503,Science and Technology,Science and Technology +400490,Science and Technology,Science and Technology +400488,Science and Technology,Science and Technology +537578,Science and Technology,Science and Technology +537577,Science and Technology,Science and Technology +537576,Science and Technology,Science and Technology +537575,Science and Technology,Science and Technology +535852,Science and Technology,Science and Technology +532077,Science and Technology,Science and Technology +532073,Science and Technology,Science and Technology +532072,Science and Technology,Science and Technology +514174,Science and Technology,Science and Technology +504332,Aboriginal Affairs,Aboriginal Affairs +504326,Aboriginal Affairs,Aboriginal Affairs +430034,Aboriginal Affairs,Aboriginal Affairs +425005,Aboriginal Affairs,Aboriginal Affairs +425002,Aboriginal Affairs,Aboriginal Affairs +424999,Aboriginal Affairs,Aboriginal Affairs +424998,Aboriginal Affairs,Aboriginal Affairs +421263,Aboriginal Affairs,Aboriginal Affairs +421262,Aboriginal Affairs,Aboriginal Affairs +421261,Aboriginal Affairs,Aboriginal Affairs +415635,Aboriginal Affairs,Aboriginal Affairs +414656,Aboriginal Affairs,Aboriginal Affairs +414651,Aboriginal Affairs,Aboriginal Affairs +414643,Aboriginal Affairs,Aboriginal Affairs +411352,Aboriginal Affairs,Aboriginal Affairs +411351,Aboriginal Affairs,Aboriginal Affairs +411350,Aboriginal Affairs,Aboriginal Affairs +386887,Aboriginal Affairs,Aboriginal Affairs +386886,Aboriginal Affairs,Aboriginal Affairs +385871,Aboriginal Affairs,Aboriginal Affairs +385870,Aboriginal Affairs,Aboriginal Affairs +497982,Aboriginal Affairs,Aboriginal Affairs +492965,Aboriginal Affairs,Aboriginal Affairs +489637,Aboriginal Affairs,Aboriginal Affairs +486700,Aboriginal Affairs,Aboriginal Affairs +486697,Aboriginal Affairs,Aboriginal Affairs +484420,Aboriginal Affairs,Aboriginal Affairs +484416,Aboriginal Affairs,Aboriginal Affairs +479143,Aboriginal Affairs,Aboriginal Affairs +477090,Aboriginal Affairs,Aboriginal Affairs +469889,Aboriginal Affairs,Aboriginal Affairs +468680,Aboriginal Affairs,Aboriginal Affairs +468654,Aboriginal Affairs,Aboriginal Affairs +466282,Aboriginal Affairs,Aboriginal Affairs +466281,Aboriginal Affairs,Aboriginal Affairs +461897,Aboriginal Affairs,Aboriginal Affairs +458545,Aboriginal Affairs,Aboriginal Affairs +458543,Aboriginal Affairs,Aboriginal Affairs +445676,Aboriginal Affairs,Aboriginal Affairs +445674,Aboriginal Affairs,Aboriginal Affairs +445379,Aboriginal Affairs,Aboriginal Affairs +445378,Aboriginal Affairs,Aboriginal Affairs +445376,Aboriginal Affairs,Aboriginal Affairs +445375,Aboriginal Affairs,Aboriginal Affairs +445374,Aboriginal Affairs,Aboriginal Affairs +445373,Aboriginal Affairs,Aboriginal Affairs +442469,Aboriginal Affairs,Aboriginal Affairs +541251,Aboriginal Affairs,Aboriginal Affairs +537346,Aboriginal Affairs,Aboriginal Affairs +537344,Aboriginal Affairs,Aboriginal Affairs +537340,Aboriginal Affairs,Aboriginal Affairs +537335,Aboriginal Affairs,Aboriginal Affairs +537328,Aboriginal Affairs,Aboriginal Affairs +537325,Aboriginal Affairs,Aboriginal Affairs +531314,Aboriginal Affairs,Aboriginal Affairs +528034,Aboriginal Affairs,Aboriginal Affairs +524510,Aboriginal Affairs,Aboriginal Affairs +521752,Aboriginal Affairs,Aboriginal Affairs +521750,Aboriginal Affairs,Aboriginal Affairs +519467,Aboriginal Affairs,Aboriginal Affairs +519465,Aboriginal Affairs,Aboriginal Affairs +517054,Aboriginal Affairs,Aboriginal Affairs +515374,Aboriginal Affairs,Aboriginal Affairs +515372,Aboriginal Affairs,Aboriginal Affairs +513737,Aboriginal Affairs,Aboriginal Affairs +511974,Aboriginal Affairs,Aboriginal Affairs +511973,Aboriginal Affairs,Aboriginal Affairs +508536,Aboriginal Affairs,Aboriginal Affairs +507945,Aboriginal Affairs,Aboriginal Affairs +507943,Aboriginal Affairs,Aboriginal Affairs +507941,Aboriginal Affairs,Aboriginal Affairs +386252,Science and Technology,Science and Technology +386250,Science and Technology,Science and Technology +396163,Science and Technology,Science and Technology +395393,Science and Technology,Science and Technology +394375,Science and Technology,Science and Technology +394373,Science and Technology,Science and Technology +394369,Science and Technology,Science and Technology +389585,Science and Technology,Science and Technology +389584,Science and Technology,Science and Technology +389012,Science and Technology,Science and Technology +389011,Science and Technology,Science and Technology +388733,Science and Technology,Science and Technology +386254,Science and Technology,Science and Technology +386732,Science and Technology,Science and Technology +387075,Aboriginal Affairs,Aboriginal Affairs +385946,Aboriginal Affairs,Aboriginal Affairs +404121,Aboriginal Affairs,Aboriginal Affairs +388861,Aboriginal Affairs,Aboriginal Affairs +388860,Aboriginal Affairs,Aboriginal Affairs +411744,Aboriginal Affairs,Aboriginal Affairs +410547,Aboriginal Affairs,Aboriginal Affairs +410461,Aboriginal Affairs,Aboriginal Affairs +402775,Aboriginal Affairs,Aboriginal Affairs +395455,Aboriginal Affairs,Aboriginal Affairs +395453,Aboriginal Affairs,Aboriginal Affairs +395451,Aboriginal Affairs,Aboriginal Affairs +395450,Aboriginal Affairs,Aboriginal Affairs +388864,Aboriginal Affairs,Aboriginal Affairs +388861,Science and Technology,Science and Technology +388860,Science and Technology,Science and Technology +388859,Science and Technology,Science and Technology +411744,Science and Technology,Science and Technology +410547,Science and Technology,Science and Technology +410461,Science and Technology,Science and Technology +402775,Science and Technology,Science and Technology +401399,Science and Technology,Science and Technology +395465,Science and Technology,Science and Technology +395455,Science and Technology,Science and Technology +395453,Science and Technology,Science and Technology +395451,Science and Technology,Science and Technology +395450,Science and Technology,Science and Technology +388864,Science and Technology,Science and Technology +387183,Science and Technology,Science and Technology +387182,Science and Technology,Science and Technology +408851,Arts and Culture,Arts and Culture +407537,Arts and Culture,Arts and Culture +405246,Arts and Culture,Arts and Culture +405243,Arts and Culture,Arts and Culture +397937,Arts and Culture,Arts and Culture +397936,Arts and Culture,Arts and Culture +395995,Arts and Culture,Arts and Culture +395724,Arts and Culture,Arts and Culture +395721,Arts and Culture,Arts and Culture +393351,Arts and Culture,Arts and Culture +392653,Arts and Culture,Arts and Culture +389786,Arts and Culture,Arts and Culture +389784,Arts and Culture,Arts and Culture +389782,Arts and Culture,Arts and Culture +389780,Arts and Culture,Arts and Culture +389779,Arts and Culture,Arts and Culture +485144,Arts and Culture,Arts and Culture +475912,Arts and Culture,Arts and Culture +468347,Arts and Culture,Arts and Culture +468346,Arts and Culture,Arts and Culture +462797,Arts and Culture,Arts and Culture +458765,Arts and Culture,Arts and Culture +457651,Arts and Culture,Arts and Culture +449706,Arts and Culture,Arts and Culture +423211,Arts and Culture,Arts and Culture +390801,Science and Technology,Science and Technology +415508,Aboriginal Affairs,Aboriginal Affairs +415483,Aboriginal Affairs,Aboriginal Affairs +416500,Aboriginal Affairs,Aboriginal Affairs +415518,Aboriginal Affairs,Aboriginal Affairs +392165,Aboriginal Affairs,Aboriginal Affairs +392164,Aboriginal Affairs,Aboriginal Affairs +397633,Aboriginal Affairs,Aboriginal Affairs +397632,Aboriginal Affairs,Aboriginal Affairs +397631,Aboriginal Affairs,Aboriginal Affairs +397630,Aboriginal Affairs,Aboriginal Affairs +395397,Aboriginal Affairs,Aboriginal Affairs +395396,Aboriginal Affairs,Aboriginal Affairs +388065,Aboriginal Affairs,Aboriginal Affairs +388063,Aboriginal Affairs,Aboriginal Affairs +392693,Aboriginal Affairs,Aboriginal Affairs +390495,Aboriginal Affairs,Aboriginal Affairs +390494,Aboriginal Affairs,Aboriginal Affairs +390493,Aboriginal Affairs,Aboriginal Affairs +390492,Aboriginal Affairs,Aboriginal Affairs +388120,Aboriginal Affairs,Aboriginal Affairs +388117,Aboriginal Affairs,Aboriginal Affairs +388102,Aboriginal Affairs,Aboriginal Affairs +388099,Aboriginal Affairs,Aboriginal Affairs +388098,Aboriginal Affairs,Aboriginal Affairs +388095,Aboriginal Affairs,Aboriginal Affairs +388092,Aboriginal Affairs,Aboriginal Affairs +388089,Aboriginal Affairs,Aboriginal Affairs +388088,Aboriginal Affairs,Aboriginal Affairs +388084,Aboriginal Affairs,Aboriginal Affairs +388079,Aboriginal Affairs,Aboriginal Affairs +388076,Aboriginal Affairs,Aboriginal Affairs +388074,Aboriginal Affairs,Aboriginal Affairs +388071,Aboriginal Affairs,Aboriginal Affairs +429215,Aboriginal Affairs,Aboriginal Affairs +392080,Aboriginal Affairs,Aboriginal Affairs +388863,Aboriginal Affairs,Aboriginal Affairs +401510,Aboriginal Affairs,Aboriginal Affairs +392521,Aboriginal Affairs,Aboriginal Affairs +392083,Aboriginal Affairs,Aboriginal Affairs +392082,Aboriginal Affairs,Aboriginal Affairs +389173,Broadcasting,Broadcasting +387620,Broadcasting,Broadcasting +416674,Broadcasting,Broadcasting +416664,Broadcasting,Broadcasting +415277,Broadcasting,Broadcasting +415272,Broadcasting,Broadcasting +414991,Broadcasting,Broadcasting +387620,Science and Technology,Science and Technology +390037,Arts and Culture,Arts and Culture +388275,Arts and Culture,Arts and Culture +421460,Arts and Culture,Arts and Culture +420377,Arts and Culture,Arts and Culture +407825,Science and Technology,Science and Technology +407677,Science and Technology,Science and Technology +393041,Science and Technology,Science and Technology +393040,Science and Technology,Science and Technology +393036,Science and Technology,Science and Technology +393040,Aboriginal Affairs,Aboriginal Affairs +393036,Aboriginal Affairs,Aboriginal Affairs +424774,Aboriginal Affairs,Aboriginal Affairs +424772,Aboriginal Affairs,Aboriginal Affairs +424771,Aboriginal Affairs,Aboriginal Affairs +424770,Aboriginal Affairs,Aboriginal Affairs +424705,Aboriginal Affairs,Aboriginal Affairs +424704,Aboriginal Affairs,Aboriginal Affairs +418748,Aboriginal Affairs,Aboriginal Affairs +418719,Aboriginal Affairs,Aboriginal Affairs +418718,Aboriginal Affairs,Aboriginal Affairs +418717,Aboriginal Affairs,Aboriginal Affairs +418716,Aboriginal Affairs,Aboriginal Affairs +413061,Aboriginal Affairs,Aboriginal Affairs +407825,Aboriginal Affairs,Aboriginal Affairs +407680,Aboriginal Affairs,Aboriginal Affairs +407679,Aboriginal Affairs,Aboriginal Affairs +407677,Aboriginal Affairs,Aboriginal Affairs +398000,Aboriginal Affairs,Aboriginal Affairs +397998,Aboriginal Affairs,Aboriginal Affairs +397996,Aboriginal Affairs,Aboriginal Affairs +397995,Aboriginal Affairs,Aboriginal Affairs +397994,Aboriginal Affairs,Aboriginal Affairs +397870,Aboriginal Affairs,Aboriginal Affairs +397869,Aboriginal Affairs,Aboriginal Affairs +393043,Aboriginal Affairs,Aboriginal Affairs +386880,Arts and Culture,Arts and Culture +542781,Aboriginal Affairs,Aboriginal Affairs +539396,Aboriginal Affairs,Aboriginal Affairs +393854,Aboriginal Affairs,Aboriginal Affairs +393651,Aboriginal Affairs,Aboriginal Affairs +387348,Aboriginal Affairs,Aboriginal Affairs +387344,Aboriginal Affairs,Aboriginal Affairs +387343,Aboriginal Affairs,Aboriginal Affairs +387342,Aboriginal Affairs,Aboriginal Affairs +387339,Aboriginal Affairs,Aboriginal Affairs +387337,Aboriginal Affairs,Aboriginal Affairs +387333,Aboriginal Affairs,Aboriginal Affairs +386981,Aboriginal Affairs,Aboriginal Affairs +386980,Aboriginal Affairs,Aboriginal Affairs +386978,Aboriginal Affairs,Aboriginal Affairs +386976,Aboriginal Affairs,Aboriginal Affairs +386975,Aboriginal Affairs,Aboriginal Affairs +386974,Aboriginal Affairs,Aboriginal Affairs +386973,Aboriginal Affairs,Aboriginal Affairs +386972,Aboriginal Affairs,Aboriginal Affairs +386971,Aboriginal Affairs,Aboriginal Affairs +386969,Aboriginal Affairs,Aboriginal Affairs +532090,Aboriginal Affairs,Aboriginal Affairs +531571,Aboriginal Affairs,Aboriginal Affairs +531569,Aboriginal Affairs,Aboriginal Affairs +531568,Aboriginal Affairs,Aboriginal Affairs +531565,Aboriginal Affairs,Aboriginal Affairs +531562,Aboriginal Affairs,Aboriginal Affairs +510155,Aboriginal Affairs,Aboriginal Affairs +497137,Aboriginal Affairs,Aboriginal Affairs +401211,Science and Technology,Science and Technology +401206,Science and Technology,Science and Technology +396831,Science and Technology,Science and Technology +387022,Science and Technology,Science and Technology +390565,Aboriginal Affairs,Aboriginal Affairs +390562,Aboriginal Affairs,Aboriginal Affairs +431375,Aboriginal Affairs,Aboriginal Affairs +426161,Aboriginal Affairs,Aboriginal Affairs +416976,Aboriginal Affairs,Aboriginal Affairs +416975,Aboriginal Affairs,Aboriginal Affairs +411960,Aboriginal Affairs,Aboriginal Affairs +406556,Aboriginal Affairs,Aboriginal Affairs +405146,Aboriginal Affairs,Aboriginal Affairs +405145,Aboriginal Affairs,Aboriginal Affairs +405144,Aboriginal Affairs,Aboriginal Affairs +405143,Aboriginal Affairs,Aboriginal Affairs +405142,Aboriginal Affairs,Aboriginal Affairs +405141,Aboriginal Affairs,Aboriginal Affairs +405140,Aboriginal Affairs,Aboriginal Affairs +405139,Aboriginal Affairs,Aboriginal Affairs +400497,Aboriginal Affairs,Aboriginal Affairs +400496,Aboriginal Affairs,Aboriginal Affairs +400495,Aboriginal Affairs,Aboriginal Affairs +400493,Aboriginal Affairs,Aboriginal Affairs +400492,Aboriginal Affairs,Aboriginal Affairs +400491,Aboriginal Affairs,Aboriginal Affairs +390628,Aboriginal Affairs,Aboriginal Affairs +390609,Aboriginal Affairs,Aboriginal Affairs +390605,Aboriginal Affairs,Aboriginal Affairs +390591,Aboriginal Affairs,Aboriginal Affairs +390418,Telecommunications,Telecommunications +392057,Science and Technology,Science and Technology +387252,Science and Technology,Science and Technology +455102,Broadcasting,Broadcasting +455097,Broadcasting,Broadcasting +391115,Broadcasting,Broadcasting +391110,Broadcasting,Broadcasting +391105,Broadcasting,Broadcasting +387635,Broadcasting,Broadcasting +387397,Broadcasting,Broadcasting +538619,Broadcasting,Broadcasting +535198,Broadcasting,Broadcasting +535196,Broadcasting,Broadcasting +535193,Broadcasting,Broadcasting +523196,Broadcasting,Broadcasting +523194,Broadcasting,Broadcasting +523193,Broadcasting,Broadcasting +518252,Broadcasting,Broadcasting +518251,Broadcasting,Broadcasting +515991,Broadcasting,Broadcasting +499418,Broadcasting,Broadcasting +495945,Broadcasting,Broadcasting +495944,Broadcasting,Broadcasting +493681,Broadcasting,Broadcasting +491676,Broadcasting,Broadcasting +491675,Broadcasting,Broadcasting +468104,Broadcasting,Broadcasting +468103,Broadcasting,Broadcasting +468102,Broadcasting,Broadcasting +468101,Broadcasting,Broadcasting +468100,Broadcasting,Broadcasting +468099,Broadcasting,Broadcasting +468098,Broadcasting,Broadcasting +455102,Telecommunications,Telecommunications +455097,Telecommunications,Telecommunications +387635,Telecommunications,Telecommunications +387397,Telecommunications,Telecommunications +491676,Telecommunications,Telecommunications +491675,Telecommunications,Telecommunications +468104,Telecommunications,Telecommunications +468103,Telecommunications,Telecommunications +468102,Telecommunications,Telecommunications +468101,Telecommunications,Telecommunications +468100,Telecommunications,Telecommunications +468099,Telecommunications,Telecommunications +468098,Telecommunications,Telecommunications +387457,Aboriginal Affairs,Aboriginal Affairs +513493,Aboriginal Affairs,Aboriginal Affairs +395469,Aboriginal Affairs,Aboriginal Affairs +392991,Aboriginal Affairs,Aboriginal Affairs +392990,Aboriginal Affairs,Aboriginal Affairs +392989,Aboriginal Affairs,Aboriginal Affairs +392988,Aboriginal Affairs,Aboriginal Affairs +392986,Aboriginal Affairs,Aboriginal Affairs +388984,Science and Technology,Science and Technology +388983,Science and Technology,Science and Technology +405952,Science and Technology,Science and Technology +396230,Science and Technology,Science and Technology +396228,Science and Technology,Science and Technology +387754,Science and Technology,Science and Technology +392572,Science and Technology,Science and Technology +387758,Science and Technology,Science and Technology +399898,Science and Technology,Science and Technology +393668,Aboriginal Affairs,Aboriginal Affairs +393667,Aboriginal Affairs,Aboriginal Affairs +393673,Aboriginal Affairs,Aboriginal Affairs +393672,Aboriginal Affairs,Aboriginal Affairs +393671,Aboriginal Affairs,Aboriginal Affairs +459310,Aboriginal Affairs,Aboriginal Affairs +459309,Aboriginal Affairs,Aboriginal Affairs +396038,Aboriginal Affairs,Aboriginal Affairs +396037,Aboriginal Affairs,Aboriginal Affairs +392692,Aboriginal Affairs,Aboriginal Affairs +391838,Aboriginal Affairs,Aboriginal Affairs +391837,Aboriginal Affairs,Aboriginal Affairs +391836,Aboriginal Affairs,Aboriginal Affairs +391835,Aboriginal Affairs,Aboriginal Affairs +389030,Aboriginal Affairs,Aboriginal Affairs +389029,Aboriginal Affairs,Aboriginal Affairs +389028,Aboriginal Affairs,Aboriginal Affairs +389026,Aboriginal Affairs,Aboriginal Affairs +389025,Aboriginal Affairs,Aboriginal Affairs +389024,Aboriginal Affairs,Aboriginal Affairs +389023,Aboriginal Affairs,Aboriginal Affairs +389022,Aboriginal Affairs,Aboriginal Affairs +389021,Aboriginal Affairs,Aboriginal Affairs +389020,Aboriginal Affairs,Aboriginal Affairs +389019,Aboriginal Affairs,Aboriginal Affairs +389018,Aboriginal Affairs,Aboriginal Affairs +389017,Aboriginal Affairs,Aboriginal Affairs +389016,Aboriginal Affairs,Aboriginal Affairs +389015,Aboriginal Affairs,Aboriginal Affairs +389014,Aboriginal Affairs,Aboriginal Affairs +389013,Aboriginal Affairs,Aboriginal Affairs +451893,Aboriginal Affairs,Aboriginal Affairs +451891,Aboriginal Affairs,Aboriginal Affairs +451888,Aboriginal Affairs,Aboriginal Affairs +451886,Aboriginal Affairs,Aboriginal Affairs +451884,Aboriginal Affairs,Aboriginal Affairs +451882,Aboriginal Affairs,Aboriginal Affairs +451880,Aboriginal Affairs,Aboriginal Affairs +451879,Aboriginal Affairs,Aboriginal Affairs +451876,Aboriginal Affairs,Aboriginal Affairs +451874,Aboriginal Affairs,Aboriginal Affairs +447617,Aboriginal Affairs,Aboriginal Affairs +447616,Aboriginal Affairs,Aboriginal Affairs +447615,Aboriginal Affairs,Aboriginal Affairs +445661,Aboriginal Affairs,Aboriginal Affairs +442059,Aboriginal Affairs,Aboriginal Affairs +442057,Aboriginal Affairs,Aboriginal Affairs +442056,Aboriginal Affairs,Aboriginal Affairs +442054,Aboriginal Affairs,Aboriginal Affairs +442052,Aboriginal Affairs,Aboriginal Affairs +442049,Aboriginal Affairs,Aboriginal Affairs +438916,Aboriginal Affairs,Aboriginal Affairs +435389,Aboriginal Affairs,Aboriginal Affairs +435388,Aboriginal Affairs,Aboriginal Affairs +435387,Aboriginal Affairs,Aboriginal Affairs +435386,Aboriginal Affairs,Aboriginal Affairs +433255,Aboriginal Affairs,Aboriginal Affairs +433254,Aboriginal Affairs,Aboriginal Affairs +432314,Aboriginal Affairs,Aboriginal Affairs +431092,Aboriginal Affairs,Aboriginal Affairs +431090,Aboriginal Affairs,Aboriginal Affairs +431087,Aboriginal Affairs,Aboriginal Affairs +431085,Aboriginal Affairs,Aboriginal Affairs +425807,Aboriginal Affairs,Aboriginal Affairs +425806,Aboriginal Affairs,Aboriginal Affairs +423241,Aboriginal Affairs,Aboriginal Affairs +423240,Aboriginal Affairs,Aboriginal Affairs +423239,Aboriginal Affairs,Aboriginal Affairs +423238,Aboriginal Affairs,Aboriginal Affairs +423237,Aboriginal Affairs,Aboriginal Affairs +423236,Aboriginal Affairs,Aboriginal Affairs +423235,Aboriginal Affairs,Aboriginal Affairs +423234,Aboriginal Affairs,Aboriginal Affairs +421725,Aboriginal Affairs,Aboriginal Affairs +419299,Aboriginal Affairs,Aboriginal Affairs +419298,Aboriginal Affairs,Aboriginal Affairs +419297,Aboriginal Affairs,Aboriginal Affairs +419296,Aboriginal Affairs,Aboriginal Affairs +417583,Aboriginal Affairs,Aboriginal Affairs +414977,Aboriginal Affairs,Aboriginal Affairs +414976,Aboriginal Affairs,Aboriginal Affairs +414975,Aboriginal Affairs,Aboriginal Affairs +414974,Aboriginal Affairs,Aboriginal Affairs +414973,Aboriginal Affairs,Aboriginal Affairs +411954,Aboriginal Affairs,Aboriginal Affairs +411953,Aboriginal Affairs,Aboriginal Affairs +411952,Aboriginal Affairs,Aboriginal Affairs +411951,Aboriginal Affairs,Aboriginal Affairs +411950,Aboriginal Affairs,Aboriginal Affairs +411949,Aboriginal Affairs,Aboriginal Affairs +411948,Aboriginal Affairs,Aboriginal Affairs +411947,Aboriginal Affairs,Aboriginal Affairs +411946,Aboriginal Affairs,Aboriginal Affairs +408899,Aboriginal Affairs,Aboriginal Affairs +407670,Aboriginal Affairs,Aboriginal Affairs +406576,Aboriginal Affairs,Aboriginal Affairs +405346,Aboriginal Affairs,Aboriginal Affairs +402661,Aboriginal Affairs,Aboriginal Affairs +402660,Aboriginal Affairs,Aboriginal Affairs +402659,Aboriginal Affairs,Aboriginal Affairs +398230,Aboriginal Affairs,Aboriginal Affairs +398228,Aboriginal Affairs,Aboriginal Affairs +398227,Aboriginal Affairs,Aboriginal Affairs +398226,Aboriginal Affairs,Aboriginal Affairs +398225,Aboriginal Affairs,Aboriginal Affairs +398183,Aboriginal Affairs,Aboriginal Affairs +398181,Aboriginal Affairs,Aboriginal Affairs +398180,Aboriginal Affairs,Aboriginal Affairs +398178,Aboriginal Affairs,Aboriginal Affairs +460713,Aboriginal Affairs,Aboriginal Affairs +460229,Aboriginal Affairs,Aboriginal Affairs +392331,Aboriginal Affairs,Aboriginal Affairs +390959,Science and Technology,Science and Technology +432640,Science and Technology,Science and Technology +390966,Science and Technology,Science and Technology +392478,Arts and Culture,Arts and Culture +392476,Arts and Culture,Arts and Culture +390028,Broadcasting,Broadcasting +390027,Broadcasting,Broadcasting +392851,Broadcasting,Broadcasting +392478,Broadcasting,Broadcasting +392476,Broadcasting,Broadcasting +391814,Broadcasting,Broadcasting +390032,Broadcasting,Broadcasting +390031,Broadcasting,Broadcasting +390030,Broadcasting,Broadcasting +391969,Aboriginal Affairs,Aboriginal Affairs +391967,Aboriginal Affairs,Aboriginal Affairs +536575,Science and Technology,Science and Technology +518398,Broadcasting,Broadcasting +516327,Broadcasting,Broadcasting +392251,Broadcasting,Broadcasting +500651,Broadcasting,Broadcasting +500649,Broadcasting,Broadcasting +500293,Broadcasting,Broadcasting +499993,Broadcasting,Broadcasting +499991,Broadcasting,Broadcasting +499984,Broadcasting,Broadcasting +494071,Broadcasting,Broadcasting +494070,Broadcasting,Broadcasting +493924,Broadcasting,Broadcasting +492105,Broadcasting,Broadcasting +492103,Broadcasting,Broadcasting +489586,Broadcasting,Broadcasting +488362,Broadcasting,Broadcasting +485388,Broadcasting,Broadcasting +473999,Broadcasting,Broadcasting +469582,Broadcasting,Broadcasting +469572,Broadcasting,Broadcasting +469569,Broadcasting,Broadcasting +414935,Broadcasting,Broadcasting +536672,Broadcasting,Broadcasting +532596,Broadcasting,Broadcasting +523634,Broadcasting,Broadcasting +520555,Broadcasting,Broadcasting +532478,Telecommunications,Telecommunications +405870,Telecommunications,Telecommunications +391784,Telecommunications,Telecommunications +391783,Telecommunications,Telecommunications +539206,Telecommunications,Telecommunications +432791,Arts and Culture,Arts and Culture +417023,Telecommunications,Telecommunications +417022,Telecommunications,Telecommunications +393146,Science and Technology,Sciences et technologies +389209,Science and Technology,Science and Technology +392805,Aboriginal Affairs,Aboriginal Affairs +417451,Aboriginal Affairs,Aboriginal Affairs +403965,Science and Technology,Science and Technology +390671,Aboriginal Affairs,Aboriginal Affairs +390667,Aboriginal Affairs,Aboriginal Affairs +410550,Science and Technology,Science and Technology +410549,Science and Technology,Science and Technology +397522,Science and Technology,Science and Technology +394575,Science and Technology,Science and Technology +393014,Science and Technology,Science and Technology +393013,Science and Technology,Science and Technology +393012,Science and Technology,Science and Technology +393011,Science and Technology,Science and Technology +392818,Aboriginal Affairs,Aboriginal Affairs +443074,Arts and Culture,Arts and Culture +443073,Arts and Culture,Arts and Culture +440811,Arts and Culture,Arts and Culture +440810,Arts and Culture,Arts and Culture +434807,Arts and Culture,Arts and Culture +434802,Arts and Culture,Arts and Culture +434801,Arts and Culture,Arts and Culture +434798,Arts and Culture,Arts and Culture +434792,Arts and Culture,Arts and Culture +432994,Arts and Culture,Arts and Culture +432992,Arts and Culture,Arts and Culture +431906,Arts and Culture,Arts and Culture +420658,Arts and Culture,Arts and Culture +418820,Arts and Culture,Arts and Culture +408620,Arts and Culture,Arts and Culture +408619,Arts and Culture,Arts and Culture +408618,Arts and Culture,Arts and Culture +408616,Arts and Culture,Arts and Culture +408615,Arts and Culture,Arts and Culture +407660,Arts and Culture,Arts and Culture +406303,Arts and Culture,Arts and Culture +406301,Arts and Culture,Arts and Culture +406300,Arts and Culture,Arts and Culture +406299,Arts and Culture,Arts and Culture +497050,Arts and Culture,Arts and Culture +497049,Arts and Culture,Arts and Culture +497048,Arts and Culture,Arts and Culture +497046,Arts and Culture,Arts and Culture +497045,Arts and Culture,Arts and Culture +490237,Arts and Culture,Arts and Culture +490234,Arts and Culture,Arts and Culture +481885,Arts and Culture,Arts and Culture +476972,Arts and Culture,Arts and Culture +472576,Arts and Culture,Arts and Culture +472575,Arts and Culture,Arts and Culture +472574,Arts and Culture,Arts and Culture +472573,Arts and Culture,Arts and Culture +465942,Arts and Culture,Arts and Culture +465941,Arts and Culture,Arts and Culture +465940,Arts and Culture,Arts and Culture +465939,Arts and Culture,Arts and Culture +465938,Arts and Culture,Arts and Culture +465937,Arts and Culture,Arts and Culture +465936,Arts and Culture,Arts and Culture +463624,Arts and Culture,Arts and Culture +463623,Arts and Culture,Arts and Culture +463622,Arts and Culture,Arts and Culture +463621,Arts and Culture,Arts and Culture +458354,Arts and Culture,Arts and Culture +451237,Arts and Culture,Arts and Culture +451236,Arts and Culture,Arts and Culture +451234,Arts and Culture,Arts and Culture +451233,Arts and Culture,Arts and Culture +443077,Arts and Culture,Arts and Culture +443076,Arts and Culture,Arts and Culture +390893,Aboriginal Affairs,Aboriginal Affairs +390890,Aboriginal Affairs,Aboriginal Affairs +426245,Aboriginal Affairs,Aboriginal Affairs +424288,Aboriginal Affairs,Aboriginal Affairs +424287,Aboriginal Affairs,Aboriginal Affairs +416286,Aboriginal Affairs,Aboriginal Affairs +416285,Aboriginal Affairs,Aboriginal Affairs +416283,Aboriginal Affairs,Aboriginal Affairs +416280,Aboriginal Affairs,Aboriginal Affairs +416277,Aboriginal Affairs,Aboriginal Affairs +416276,Aboriginal Affairs,Aboriginal Affairs +390905,Aboriginal Affairs,Aboriginal Affairs +390904,Aboriginal Affairs,Aboriginal Affairs +390902,Aboriginal Affairs,Aboriginal Affairs +390898,Aboriginal Affairs,Aboriginal Affairs +389578,Arts and Culture,Arts and Culture +389577,Arts and Culture,Arts and Culture +389582,Arts and Culture,Arts and Culture +389581,Arts and Culture,Arts and Culture +389580,Arts and Culture,Arts and Culture +443538,Aboriginal Affairs,Aboriginal Affairs +443531,Aboriginal Affairs,Aboriginal Affairs +432077,Aboriginal Affairs,Aboriginal Affairs +429222,Aboriginal Affairs,Aboriginal Affairs +423979,Aboriginal Affairs,Aboriginal Affairs +405272,Aboriginal Affairs,Aboriginal Affairs +398823,Aboriginal Affairs,Aboriginal Affairs +398821,Aboriginal Affairs,Aboriginal Affairs +394072,Aboriginal Affairs,Aboriginal Affairs +526364,Aboriginal Affairs,Aboriginal Affairs +493411,Aboriginal Affairs,Aboriginal Affairs +473504,Aboriginal Affairs,Aboriginal Affairs +452630,Aboriginal Affairs,Aboriginal Affairs +452627,Aboriginal Affairs,Aboriginal Affairs +411275,Science and Technology,Science and Technology +396907,Science and Technology,Science and Technology +411277,Science and Technology,Science and Technology +394928,Arts and Culture,Arts and Culture +391587,Arts and Culture,Arts and Culture +408795,Arts and Culture,Arts and Culture +408792,Arts and Culture,Arts and Culture +408790,Arts and Culture,Arts and Culture +401062,Arts and Culture,Arts and Culture +406914,Telecommunications,Telecommunications +392832,Telecommunications,Telecommunications +416886,Telecommunications,Telecommunications +416882,Broadcasting,Broadcasting +406914,Broadcasting,Broadcasting +391937,Arts and Culture,Arts and Culture +391933,Arts and Culture,Arts and Culture +419510,Arts and Culture,Arts and Culture +418257,Arts and Culture,Arts and Culture +404472,Arts and Culture,Arts and Culture +404471,Arts and Culture,Arts and Culture +404470,Arts and Culture,Arts and Culture +399578,Arts and Culture,Arts and Culture +399576,Arts and Culture,Arts and Culture +391932,Broadcasting,Broadcasting +391928,Broadcasting,Broadcasting +419510,Broadcasting,Broadcasting +418257,Broadcasting,Broadcasting +407088,Broadcasting,Broadcasting +404472,Broadcasting,Broadcasting +404471,Broadcasting,Broadcasting +404470,Broadcasting,Broadcasting +399578,Broadcasting,Broadcasting +399576,Broadcasting,Broadcasting +399575,Broadcasting,Broadcasting +391937,Broadcasting,Broadcasting +391936,Broadcasting,Broadcasting +391934,Broadcasting,Broadcasting +392913,Aboriginal Affairs,Aboriginal Affairs +391950,Aboriginal Affairs,Aboriginal Affairs +426961,Aboriginal Affairs,Aboriginal Affairs +426959,Aboriginal Affairs,Aboriginal Affairs +420356,Aboriginal Affairs,Aboriginal Affairs +418666,Aboriginal Affairs,Aboriginal Affairs +418665,Aboriginal Affairs,Aboriginal Affairs +391953,Aboriginal Affairs,Aboriginal Affairs +391952,Science and Technology,Science and Technology +391950,Science and Technology,Science and Technology +426961,Science and Technology,Science and Technology +426959,Science and Technology,Science and Technology +397772,Arts and Culture,Arts and Culture +392052,Science and Technology,Science and Technology +392003,Science and Technology,Science and Technology +413829,Science and Technology,Science and Technology +413827,Science and Technology,Science and Technology +402107,Science and Technology,Science and Technology +402105,Science and Technology,Science and Technology +402103,Science and Technology,Science and Technology +402102,Science and Technology,Science and Technology +402099,Science and Technology,Science and Technology +402098,Science and Technology,Science and Technology +392055,Science and Technology,Science and Technology +392054,Science and Technology,Science and Technology +399868,Arts and Culture,Arts and Culture +393128,Aboriginal Affairs,Aboriginal Affairs +393126,Aboriginal Affairs,Aboriginal Affairs +393138,Aboriginal Affairs,Aboriginal Affairs +393136,Aboriginal Affairs,Aboriginal Affairs +393134,Aboriginal Affairs,Aboriginal Affairs +393133,Aboriginal Affairs,Aboriginal Affairs +393132,Aboriginal Affairs,Aboriginal Affairs +393131,Aboriginal Affairs,Aboriginal Affairs +393130,Aboriginal Affairs,Aboriginal Affairs +392076,Science and Technology,Science and Technology +424924,Science and Technology,Science and Technology +426401,Arts and Culture,Arts and Culture +424693,Arts and Culture,Arts and Culture +424554,Arts and Culture,Arts and Culture +420333,Arts and Culture,Arts and Culture +418635,Arts and Culture,Arts and Culture +417410,Arts and Culture,Arts and Culture +411547,Arts and Culture,Arts and Culture +407786,Arts and Culture,Arts and Culture +407011,Arts and Culture,Arts and Culture +405594,Arts and Culture,Arts and Culture +540750,Arts and Culture,Arts and Culture +530620,Arts and Culture,Arts and Culture +530618,Arts and Culture,Arts and Culture +523961,Arts and Culture,Arts and Culture +521343,Arts and Culture,Arts and Culture +521336,Arts and Culture,Arts and Culture +517749,Arts and Culture,Arts and Culture +514500,Arts and Culture,Arts and Culture +514499,Arts and Culture,Arts and Culture +513726,Arts and Culture,Arts and Culture +513695,Arts and Culture,Arts and Culture +509300,Arts and Culture,Arts and Culture +506895,Arts and Culture,Arts and Culture +506459,Arts and Culture,Arts and Culture +498088,Arts and Culture,Arts and Culture +498086,Arts and Culture,Arts and Culture +492869,Arts and Culture,Arts and Culture +489173,Arts and Culture,Arts and Culture +486285,Arts and Culture,Arts and Culture +485010,Arts and Culture,Arts and Culture +478107,Arts and Culture,Arts and Culture +478104,Arts and Culture,Arts and Culture +470947,Arts and Culture,Arts and Culture +466733,Arts and Culture,Arts and Culture +466731,Arts and Culture,Arts and Culture +463179,Arts and Culture,Arts and Culture +463178,Arts and Culture,Arts and Culture +463177,Arts and Culture,Arts and Culture +462694,Arts and Culture,Arts and Culture +461693,Arts and Culture,Arts and Culture +447273,Arts and Culture,Arts and Culture +444544,Arts and Culture,Arts and Culture +440790,Arts and Culture,Arts and Culture +439936,Arts and Culture,Arts and Culture +437992,Arts and Culture,Arts and Culture +434230,Arts and Culture,Arts and Culture +432742,Arts and Culture,Arts and Culture +432499,Arts and Culture,Arts and Culture +430336,Arts and Culture,Arts and Culture +428310,Arts and Culture,Arts and Culture +540750,Broadcasting,Broadcasting +513695,Broadcasting,Broadcasting +394851,Arts and Culture,Arts and Culture +392357,Science and Technology,Science and Technology +392354,Science and Technology,Science and Technology +423366,Science and Technology,Science and Technology +420618,Science and Technology,Science and Technology +410495,Science and Technology,Science and Technology +408098,Science and Technology,Science and Technology +403774,Science and Technology,Science and Technology +402262,Science and Technology,Science and Technology +402259,Science and Technology,Science and Technology +393488,Science and Technology,Science and Technology +494739,Aboriginal Affairs,Aboriginal Affairs +464851,Aboriginal Affairs,Aboriginal Affairs +447542,Aboriginal Affairs,Aboriginal Affairs +442731,Aboriginal Affairs,Aboriginal Affairs +438983,Aboriginal Affairs,Aboriginal Affairs +418084,Aboriginal Affairs,Aboriginal Affairs +415181,Aboriginal Affairs,Aboriginal Affairs +392786,Aboriginal Affairs,Aboriginal Affairs +542805,Aboriginal Affairs,Aboriginal Affairs +525453,Aboriginal Affairs,Aboriginal Affairs +512526,Aboriginal Affairs,Aboriginal Affairs +512525,Aboriginal Affairs,Aboriginal Affairs +512220,Aboriginal Affairs,Aboriginal Affairs +394879,Aboriginal Affairs,Aboriginal Affairs +394616,Aboriginal Affairs,Aboriginal Affairs +399357,Aboriginal Affairs,Aboriginal Affairs +397231,Aboriginal Affairs,Aboriginal Affairs +414064,Arts and Culture,Arts and Culture +395387,Aboriginal Affairs,Aboriginal Affairs +395046,Arts and Culture,Arts and Culture +393353,Arts and Culture,Arts and Culture +395063,Arts and Culture,Arts and Culture +395062,Arts and Culture,Arts and Culture +395061,Arts and Culture,Arts and Culture +395060,Arts and Culture,Arts and Culture +395058,Arts and Culture,Arts and Culture +395054,Arts and Culture,Arts and Culture +395053,Arts and Culture,Arts and Culture +395051,Arts and Culture,Arts and Culture +396742,Arts and Culture,Arts and Culture +394670,Arts and Culture,Arts and Culture +400722,Arts and Culture,Arts and Culture +400720,Arts and Culture,Arts and Culture +400716,Arts and Culture,Arts and Culture +400684,Arts and Culture,Arts and Culture +400680,Arts and Culture,Arts and Culture +400675,Arts and Culture,Arts and Culture +400667,Arts and Culture,Arts and Culture +400660,Arts and Culture,Arts and Culture +396824,Arts and Culture,Arts and Culture +396812,Arts and Culture,Arts and Culture +396802,Arts and Culture,Arts and Culture +396799,Arts and Culture,Arts and Culture +396798,Arts and Culture,Arts and Culture +396793,Arts and Culture,Arts and Culture +396792,Arts and Culture,Arts and Culture +396778,Arts and Culture,Arts and Culture +396771,Arts and Culture,Arts and Culture +396768,Arts and Culture,Arts and Culture +396765,Arts and Culture,Arts and Culture +396763,Arts and Culture,Arts and Culture +396758,Arts and Culture,Arts and Culture +401202,Science and Technology,Science and Technology +394948,Science and Technology,Science and Technology +394651,Science and Technology,Science and Technology +422600,Aboriginal Affairs,Aboriginal Affairs +422591,Aboriginal Affairs,Aboriginal Affairs +427845,Aboriginal Affairs,Aboriginal Affairs +427148,Aboriginal Affairs,Aboriginal Affairs +427146,Aboriginal Affairs,Aboriginal Affairs +397676,Telecommunications,Telecommunications +396280,Telecommunications,Telecommunications +404908,Telecommunications,Telecommunications +401802,Telecommunications,Telecommunications +401801,Telecommunications,Telecommunications +399581,Telecommunications,Telecommunications +402752,Science and Technology,Science and Technology +402750,Science and Technology,Science and Technology +397205,Science and Technology,Science and Technology +394722,Science and Technology,Science and Technology +394721,Science and Technology,Science and Technology +393209,Science and Technology,Science and Technology +513719,Science and Technology,Science and Technology +512074,Science and Technology,Science and Technology +460936,Science and Technology,Science and Technology +448870,Science and Technology,Science and Technology +445973,Science and Technology,Science and Technology +440592,Science and Technology,Science and Technology +440589,Science and Technology,Science and Technology +418904,Science and Technology,Science and Technology +410636,Science and Technology,Science and Technology +410635,Science and Technology,Science and Technology +410634,Science and Technology,Science and Technology +410633,Science and Technology,Science and Technology +410632,Science and Technology,Science and Technology +410630,Science and Technology,Science and Technology +405366,Science and Technology,Science and Technology +395188,Arts and Culture,Arts and Culture +393317,Arts and Culture,Arts and Culture +393316,Arts and Culture,Arts and Culture +460889,Aboriginal Affairs,Aboriginal Affairs +460744,Aboriginal Affairs,Aboriginal Affairs +393235,Aboriginal Affairs,Aboriginal Affairs +427015,Aboriginal Affairs,Aboriginal Affairs +427014,Aboriginal Affairs,Aboriginal Affairs +427013,Aboriginal Affairs,Aboriginal Affairs +425234,Aboriginal Affairs,Aboriginal Affairs +425233,Aboriginal Affairs,Aboriginal Affairs +424608,Aboriginal Affairs,Aboriginal Affairs +423187,Aboriginal Affairs,Aboriginal Affairs +422495,Aboriginal Affairs,Aboriginal Affairs +419493,Aboriginal Affairs,Aboriginal Affairs +417215,Aboriginal Affairs,Aboriginal Affairs +411818,Aboriginal Affairs,Aboriginal Affairs +411675,Aboriginal Affairs,Aboriginal Affairs +411674,Aboriginal Affairs,Aboriginal Affairs +411673,Aboriginal Affairs,Aboriginal Affairs +411672,Aboriginal Affairs,Aboriginal Affairs +411671,Aboriginal Affairs,Aboriginal Affairs +408572,Aboriginal Affairs,Aboriginal Affairs +408210,Aboriginal Affairs,Aboriginal Affairs +404889,Aboriginal Affairs,Aboriginal Affairs +401668,Aboriginal Affairs,Aboriginal Affairs +399637,Aboriginal Affairs,Aboriginal Affairs +398124,Aboriginal Affairs,Aboriginal Affairs +398115,Aboriginal Affairs,Aboriginal Affairs +395335,Aboriginal Affairs,Aboriginal Affairs +481211,Aboriginal Affairs,Aboriginal Affairs +465350,Aboriginal Affairs,Aboriginal Affairs +463601,Aboriginal Affairs,Aboriginal Affairs +463208,Aboriginal Affairs,Aboriginal Affairs +462829,Aboriginal Affairs,Aboriginal Affairs +462107,Aboriginal Affairs,Aboriginal Affairs +461100,Aboriginal Affairs,Aboriginal Affairs +397151,Aboriginal Affairs,Aboriginal Affairs +394251,Aboriginal Affairs,Aboriginal Affairs +405577,Aboriginal Affairs,Aboriginal Affairs +398172,Aboriginal Affairs,Aboriginal Affairs +393366,Science and Technology,Science and Technology +427449,Science and Technology,Science and Technology +422518,Science and Technology,Science and Technology +418423,Science and Technology,Science and Technology +408335,Science and Technology,Science and Technology +407102,Science and Technology,Science and Technology +393368,Science and Technology,Science and Technology +393138,Telecommunications,Telecommunications +393136,Telecommunications,Telecommunications +393134,Telecommunications,Telecommunications +393133,Telecommunications,Telecommunications +393132,Telecommunications,Telecommunications +393130,Telecommunications,Telecommunications +393129,Telecommunications,Telecommunications +393128,Telecommunications,Telecommunications +436642,Broadcasting,Broadcasting +501333,Broadcasting,Broadcasting +398101,Broadcasting,Broadcasting +411305,Broadcasting,Broadcasting +411304,Broadcasting,Broadcasting +411308,Broadcasting,Broadcasting +411307,Broadcasting,Broadcasting +411305,Telecommunications,Telecommunications +404413,Telecommunications,Telecommunications +411308,Telecommunications,Telecommunications +411307,Telecommunications,Telecommunications +404413,Arts and Culture,Arts and Culture +399396,Arts and Culture,Arts and Culture +411308,Arts and Culture,Arts and Culture +411307,Arts and Culture,Arts and Culture +411306,Arts and Culture,Arts and Culture +411305,Arts and Culture,Arts and Culture +462945,Arts and Culture,Arts and Culture +460289,Arts and Culture,Arts and Culture +401449,Aboriginal Affairs,Aboriginal Affairs +397664,Aboriginal Affairs,Aboriginal Affairs +401451,Aboriginal Affairs,Aboriginal Affairs +411696,Aboriginal Affairs,Aboriginal Affairs +408968,Aboriginal Affairs,Aboriginal Affairs +408965,Aboriginal Affairs,Aboriginal Affairs +407361,Aboriginal Affairs,Aboriginal Affairs +406365,Aboriginal Affairs,Aboriginal Affairs +406364,Aboriginal Affairs,Aboriginal Affairs +404663,Aboriginal Affairs,Aboriginal Affairs +403084,Aboriginal Affairs,Aboriginal Affairs +403083,Aboriginal Affairs,Aboriginal Affairs +487057,Aboriginal Affairs,Aboriginal Affairs +487056,Aboriginal Affairs,Aboriginal Affairs +487055,Aboriginal Affairs,Aboriginal Affairs +484267,Aboriginal Affairs,Aboriginal Affairs +484265,Aboriginal Affairs,Aboriginal Affairs +484264,Aboriginal Affairs,Aboriginal Affairs +481620,Aboriginal Affairs,Aboriginal Affairs +481619,Aboriginal Affairs,Aboriginal Affairs +481618,Aboriginal Affairs,Aboriginal Affairs +479204,Aboriginal Affairs,Aboriginal Affairs +479203,Aboriginal Affairs,Aboriginal Affairs +479202,Aboriginal Affairs,Aboriginal Affairs +479201,Aboriginal Affairs,Aboriginal Affairs +476915,Aboriginal Affairs,Aboriginal Affairs +476914,Aboriginal Affairs,Aboriginal Affairs +476913,Aboriginal Affairs,Aboriginal Affairs +460714,Aboriginal Affairs,Aboriginal Affairs +460226,Aboriginal Affairs,Aboriginal Affairs +459307,Aboriginal Affairs,Aboriginal Affairs +451867,Aboriginal Affairs,Aboriginal Affairs +451864,Aboriginal Affairs,Aboriginal Affairs +451859,Aboriginal Affairs,Aboriginal Affairs +451857,Aboriginal Affairs,Aboriginal Affairs +451854,Aboriginal Affairs,Aboriginal Affairs +451853,Aboriginal Affairs,Aboriginal Affairs +451851,Aboriginal Affairs,Aboriginal Affairs +451850,Aboriginal Affairs,Aboriginal Affairs +451849,Aboriginal Affairs,Aboriginal Affairs +451847,Aboriginal Affairs,Aboriginal Affairs +447624,Aboriginal Affairs,Aboriginal Affairs +447623,Aboriginal Affairs,Aboriginal Affairs +447622,Aboriginal Affairs,Aboriginal Affairs +447620,Aboriginal Affairs,Aboriginal Affairs +447618,Aboriginal Affairs,Aboriginal Affairs +445653,Aboriginal Affairs,Aboriginal Affairs +442305,Aboriginal Affairs,Aboriginal Affairs +442304,Aboriginal Affairs,Aboriginal Affairs +442303,Aboriginal Affairs,Aboriginal Affairs +442285,Aboriginal Affairs,Aboriginal Affairs +442281,Aboriginal Affairs,Aboriginal Affairs +442191,Aboriginal Affairs,Aboriginal Affairs +441954,Aboriginal Affairs,Aboriginal Affairs +441944,Aboriginal Affairs,Aboriginal Affairs +438640,Aboriginal Affairs,Aboriginal Affairs +438629,Aboriginal Affairs,Aboriginal Affairs +438613,Aboriginal Affairs,Aboriginal Affairs +438606,Aboriginal Affairs,Aboriginal Affairs +435440,Aboriginal Affairs,Aboriginal Affairs +435435,Aboriginal Affairs,Aboriginal Affairs +435433,Aboriginal Affairs,Aboriginal Affairs +435432,Aboriginal Affairs,Aboriginal Affairs +435421,Aboriginal Affairs,Aboriginal Affairs +435420,Aboriginal Affairs,Aboriginal Affairs +433362,Aboriginal Affairs,Aboriginal Affairs +433361,Aboriginal Affairs,Aboriginal Affairs +433360,Aboriginal Affairs,Aboriginal Affairs +433359,Aboriginal Affairs,Aboriginal Affairs +433356,Aboriginal Affairs,Aboriginal Affairs +433355,Aboriginal Affairs,Aboriginal Affairs +432185,Aboriginal Affairs,Aboriginal Affairs +432184,Aboriginal Affairs,Aboriginal Affairs +432182,Aboriginal Affairs,Aboriginal Affairs +430420,Aboriginal Affairs,Aboriginal Affairs +430419,Aboriginal Affairs,Aboriginal Affairs +427701,Aboriginal Affairs,Aboriginal Affairs +427699,Aboriginal Affairs,Aboriginal Affairs +423225,Aboriginal Affairs,Aboriginal Affairs +423224,Aboriginal Affairs,Aboriginal Affairs +423223,Aboriginal Affairs,Aboriginal Affairs +423222,Aboriginal Affairs,Aboriginal Affairs +423221,Aboriginal Affairs,Aboriginal Affairs +423220,Aboriginal Affairs,Aboriginal Affairs +423219,Aboriginal Affairs,Aboriginal Affairs +423217,Aboriginal Affairs,Aboriginal Affairs +423216,Aboriginal Affairs,Aboriginal Affairs +421423,Aboriginal Affairs,Aboriginal Affairs +421422,Aboriginal Affairs,Aboriginal Affairs +418945,Aboriginal Affairs,Aboriginal Affairs +418865,Aboriginal Affairs,Aboriginal Affairs +418860,Aboriginal Affairs,Aboriginal Affairs +418858,Aboriginal Affairs,Aboriginal Affairs +418856,Aboriginal Affairs,Aboriginal Affairs +417392,Aboriginal Affairs,Aboriginal Affairs +417391,Aboriginal Affairs,Aboriginal Affairs +415008,Aboriginal Affairs,Aboriginal Affairs +415005,Aboriginal Affairs,Aboriginal Affairs +415003,Aboriginal Affairs,Aboriginal Affairs +415002,Aboriginal Affairs,Aboriginal Affairs +415001,Aboriginal Affairs,Aboriginal Affairs +414999,Aboriginal Affairs,Aboriginal Affairs +414998,Aboriginal Affairs,Aboriginal Affairs +411708,Aboriginal Affairs,Aboriginal Affairs +411707,Aboriginal Affairs,Aboriginal Affairs +411706,Aboriginal Affairs,Aboriginal Affairs +411705,Aboriginal Affairs,Aboriginal Affairs +411704,Aboriginal Affairs,Aboriginal Affairs +411703,Aboriginal Affairs,Aboriginal Affairs +411702,Aboriginal Affairs,Aboriginal Affairs +411699,Aboriginal Affairs,Aboriginal Affairs +411698,Aboriginal Affairs,Aboriginal Affairs +411697,Aboriginal Affairs,Aboriginal Affairs +537588,Aboriginal Affairs,Aboriginal Affairs +495926,Aboriginal Affairs,Aboriginal Affairs +495925,Aboriginal Affairs,Aboriginal Affairs +490796,Aboriginal Affairs,Aboriginal Affairs +490793,Aboriginal Affairs,Aboriginal Affairs +398697,Aboriginal Affairs,Aboriginal Affairs +398454,Aboriginal Affairs,Aboriginal Affairs +398701,Aboriginal Affairs,Aboriginal Affairs +398700,Aboriginal Affairs,Aboriginal Affairs +444873,Telecommunications,Telecommunications +444872,Telecommunications,Telecommunications +514487,Aboriginal Affairs,Aboriginal Affairs +455691,Aboriginal Affairs,Aboriginal Affairs +399151,Aboriginal Affairs,Aboriginal Affairs +399150,Aboriginal Affairs,Aboriginal Affairs +399149,Aboriginal Affairs,Aboriginal Affairs +397442,Aboriginal Affairs,Aboriginal Affairs +397440,Aboriginal Affairs,Aboriginal Affairs +397439,Aboriginal Affairs,Aboriginal Affairs +397437,Aboriginal Affairs,Aboriginal Affairs +397433,Aboriginal Affairs,Aboriginal Affairs +397440,Science and Technology,Science and Technology +514487,Science and Technology,Science and Technology +535045,Aboriginal Affairs,Aboriginal Affairs +449244,Aboriginal Affairs,Aboriginal Affairs +429586,Aboriginal Affairs,Aboriginal Affairs +429584,Aboriginal Affairs,Aboriginal Affairs +411101,Broadcasting,Broadcasting +411100,Broadcasting,Broadcasting +411101,Arts and Culture,Arts and Culture +411100,Arts and Culture,Arts and Culture +515766,Aboriginal Affairs,Aboriginal Affairs +501256,Aboriginal Affairs,Aboriginal Affairs +402914,Aboriginal Affairs,Aboriginal Affairs +402911,Aboriginal Affairs,Aboriginal Affairs +402908,Aboriginal Affairs,Aboriginal Affairs +396282,Aboriginal Affairs,Aboriginal Affairs +394123,Aboriginal Affairs,Aboriginal Affairs +461877,Aboriginal Affairs,Aboriginal Affairs +461872,Aboriginal Affairs,Aboriginal Affairs +458421,Aboriginal Affairs,Aboriginal Affairs +457508,Aboriginal Affairs,Aboriginal Affairs +457105,Aboriginal Affairs,Aboriginal Affairs +449007,Aboriginal Affairs,Aboriginal Affairs +449004,Aboriginal Affairs,Aboriginal Affairs +446960,Aboriginal Affairs,Aboriginal Affairs +444989,Aboriginal Affairs,Aboriginal Affairs +444988,Aboriginal Affairs,Aboriginal Affairs +444987,Aboriginal Affairs,Aboriginal Affairs +444986,Aboriginal Affairs,Aboriginal Affairs +444984,Aboriginal Affairs,Aboriginal Affairs +444979,Aboriginal Affairs,Aboriginal Affairs +443253,Aboriginal Affairs,Aboriginal Affairs +443252,Aboriginal Affairs,Aboriginal Affairs +443251,Aboriginal Affairs,Aboriginal Affairs +443249,Aboriginal Affairs,Aboriginal Affairs +438312,Aboriginal Affairs,Aboriginal Affairs +434754,Aboriginal Affairs,Aboriginal Affairs +425830,Aboriginal Affairs,Aboriginal Affairs +423992,Aboriginal Affairs,Aboriginal Affairs +419316,Aboriginal Affairs,Aboriginal Affairs +419315,Aboriginal Affairs,Aboriginal Affairs +417833,Aboriginal Affairs,Aboriginal Affairs +417831,Aboriginal Affairs,Aboriginal Affairs +409596,Aboriginal Affairs,Aboriginal Affairs +406586,Aboriginal Affairs,Aboriginal Affairs +531343,Aboriginal Affairs,Aboriginal Affairs +463046,Science and Technology,Science and Technology +444221,Science and Technology,Science and Technology +423422,Science and Technology,Science and Technology +413866,Science and Technology,Science and Technology +413863,Science and Technology,Science and Technology +410798,Science and Technology,Science and Technology +404259,Science and Technology,Science and Technology +397015,Science and Technology,Science and Technology +394261,Science and Technology,Science and Technology +394260,Science and Technology,Science and Technology +394259,Science and Technology,Science and Technology +394255,Science and Technology,Science and Technology +503548,Science and Technology,Science and Technology +503543,Science and Technology,Science and Technology +494266,Science and Technology,Science and Technology +476495,Science and Technology,Science and Technology +440062,Arts and Culture,Arts and Culture +440056,Arts and Culture,Arts and Culture +394418,Arts and Culture,Arts and Culture +520317,Arts and Culture,Arts and Culture +520314,Arts and Culture,Arts and Culture +473084,Arts and Culture,Arts and Culture +440142,Arts and Culture,Arts and Culture +440140,Arts and Culture,Arts and Culture +440137,Arts and Culture,Arts and Culture +440072,Arts and Culture,Arts and Culture +440037,Arts and Culture,Arts and Culture +394423,Arts and Culture,Arts and Culture +505994,Arts and Culture,Arts and Culture +443119,Arts and Culture,Arts and Culture +440156,Arts and Culture,Arts and Culture +440154,Arts and Culture,Arts and Culture +440146,Arts and Culture,Arts and Culture +440135,Arts and Culture,Arts and Culture +440091,Arts and Culture,Arts and Culture +440088,Arts and Culture,Arts and Culture +440085,Arts and Culture,Arts and Culture +520312,Arts and Culture,Arts and Culture +485307,Arts and Culture,Arts and Culture +473093,Arts and Culture,Arts and Culture +440141,Arts and Culture,Arts and Culture +440086,Arts and Culture,Arts and Culture +440060,Arts and Culture,Arts and Culture +396897,Arts and Culture,Arts and Culture +396894,Arts and Culture,Arts and Culture +394425,Arts and Culture,Arts and Culture +520322,Arts and Culture,Arts and Culture +394427,Arts and Culture,Arts and Culture +520319,Arts and Culture,Arts and Culture +473193,Arts and Culture,Arts and Culture +440116,Arts and Culture,Arts and Culture +440115,Arts and Culture,Arts and Culture +440113,Arts and Culture,Arts and Culture +440111,Arts and Culture,Arts and Culture +440098,Arts and Culture,Arts and Culture +396908,Arts and Culture,Arts and Culture +473257,Arts and Culture,Arts and Culture +473086,Arts and Culture,Arts and Culture +396918,Arts and Culture,Arts and Culture +394429,Arts and Culture,Arts and Culture +440106,Arts and Culture,Arts and Culture +440068,Arts and Culture,Arts and Culture +424403,Arts and Culture,Arts and Culture +520315,Arts and Culture,Arts and Culture +520327,Arts and Culture,Arts and Culture +520320,Arts and Culture,Arts and Culture +396914,Arts and Culture,Arts and Culture +396888,Arts and Culture,Arts and Culture +394431,Arts and Culture,Arts and Culture +440144,Arts and Culture,Arts and Culture +440112,Arts and Culture,Arts and Culture +440095,Arts and Culture,Arts and Culture +440092,Arts and Culture,Arts and Culture +440079,Arts and Culture,Arts and Culture +440078,Arts and Culture,Arts and Culture +440067,Arts and Culture,Arts and Culture +440064,Arts and Culture,Arts and Culture +440082,Arts and Culture,Arts and Culture +440077,Arts and Culture,Arts and Culture +440070,Arts and Culture,Arts and Culture +440069,Arts and Culture,Arts and Culture +440066,Arts and Culture,Arts and Culture +440059,Arts and Culture,Arts and Culture +440058,Arts and Culture,Arts and Culture +440055,Arts and Culture,Arts and Culture +440054,Arts and Culture,Arts and Culture +396923,Arts and Culture,Arts and Culture +396910,Arts and Culture,Arts and Culture +394433,Arts and Culture,Arts and Culture +520328,Arts and Culture,Arts and Culture +520326,Arts and Culture,Arts and Culture +520325,Arts and Culture,Arts and Culture +520321,Arts and Culture,Arts and Culture +505996,Arts and Culture,Arts and Culture +440138,Arts and Culture,Arts and Culture +440108,Arts and Culture,Arts and Culture +440099,Arts and Culture,Arts and Culture +440096,Arts and Culture,Arts and Culture +440093,Arts and Culture,Arts and Culture +440090,Arts and Culture,Arts and Culture +440089,Arts and Culture,Arts and Culture +440087,Arts and Culture,Arts and Culture +394476,Arts and Culture,Arts and Culture +520323,Arts and Culture,Arts and Culture +440148,Arts and Culture,Arts and Culture +440100,Arts and Culture,Arts and Culture +440097,Arts and Culture,Arts and Culture +440081,Arts and Culture,Arts and Culture +440076,Arts and Culture,Arts and Culture +440065,Arts and Culture,Arts and Culture +440063,Arts and Culture,Arts and Culture +396902,Arts and Culture,Arts and Culture +394477,Arts and Culture,Arts and Culture +505995,Arts and Culture,Arts and Culture +440136,Arts and Culture,Arts and Culture +440075,Arts and Culture,Arts and Culture +440071,Arts and Culture,Arts and Culture +440057,Arts and Culture,Arts and Culture +440052,Arts and Culture,Arts and Culture +440048,Arts and Culture,Arts and Culture +396931,Arts and Culture,Arts and Culture +440049,Arts and Culture,Arts and Culture +440031,Arts and Culture,Arts and Culture +396919,Arts and Culture,Arts and Culture +396893,Arts and Culture,Arts and Culture +396884,Arts and Culture,Arts and Culture +394478,Arts and Culture,Arts and Culture +520324,Arts and Culture,Arts and Culture +440094,Arts and Culture,Arts and Culture +440074,Arts and Culture,Arts and Culture +440061,Arts and Culture,Arts and Culture +407645,Science and Technology,Science and Technology +407173,Science and Technology,Science and Technology +397289,Science and Technology,Science and Technology +394647,Science and Technology,Science and Technology +398121,Aboriginal Affairs,Aboriginal Affairs +398118,Aboriginal Affairs,Aboriginal Affairs +422497,Aboriginal Affairs,Aboriginal Affairs +410946,Aboriginal Affairs,Aboriginal Affairs +410519,Aboriginal Affairs,Aboriginal Affairs +410517,Aboriginal Affairs,Aboriginal Affairs +410515,Aboriginal Affairs,Aboriginal Affairs +410513,Aboriginal Affairs,Aboriginal Affairs +410511,Aboriginal Affairs,Aboriginal Affairs +410509,Aboriginal Affairs,Aboriginal Affairs +410507,Aboriginal Affairs,Aboriginal Affairs +408221,Aboriginal Affairs,Aboriginal Affairs +408215,Aboriginal Affairs,Aboriginal Affairs +407272,Aboriginal Affairs,Aboriginal Affairs +401284,Aboriginal Affairs,Aboriginal Affairs +401282,Aboriginal Affairs,Aboriginal Affairs +401279,Aboriginal Affairs,Aboriginal Affairs +401277,Aboriginal Affairs,Aboriginal Affairs +401275,Aboriginal Affairs,Aboriginal Affairs +401273,Aboriginal Affairs,Aboriginal Affairs +401272,Aboriginal Affairs,Aboriginal Affairs +416964,Aboriginal Affairs,Aboriginal Affairs +410945,Aboriginal Affairs,Aboriginal Affairs +410518,Aboriginal Affairs,Aboriginal Affairs +410516,Aboriginal Affairs,Aboriginal Affairs +410514,Aboriginal Affairs,Aboriginal Affairs +410512,Aboriginal Affairs,Aboriginal Affairs +410510,Aboriginal Affairs,Aboriginal Affairs +410508,Aboriginal Affairs,Aboriginal Affairs +410506,Aboriginal Affairs,Aboriginal Affairs +408220,Aboriginal Affairs,Aboriginal Affairs +408214,Aboriginal Affairs,Aboriginal Affairs +407273,Aboriginal Affairs,Aboriginal Affairs +401283,Aboriginal Affairs,Aboriginal Affairs +401281,Aboriginal Affairs,Aboriginal Affairs +401280,Aboriginal Affairs,Aboriginal Affairs +401278,Aboriginal Affairs,Aboriginal Affairs +401276,Aboriginal Affairs,Aboriginal Affairs +401274,Aboriginal Affairs,Aboriginal Affairs +398117,Aboriginal Affairs,Aboriginal Affairs +395250,Aboriginal Affairs,Aboriginal Affairs +432736,Aboriginal Affairs,Aboriginal Affairs +395979,Aboriginal Affairs,Aboriginal Affairs +395977,Aboriginal Affairs,Aboriginal Affairs +431047,Aboriginal Affairs,Aboriginal Affairs +431046,Aboriginal Affairs,Aboriginal Affairs +413393,Aboriginal Affairs,Aboriginal Affairs +413389,Aboriginal Affairs,Aboriginal Affairs +413386,Aboriginal Affairs,Aboriginal Affairs +465879,Science and Technology,Science and Technology +452682,Science and Technology,Science and Technology +479262,Science and Technology,Science and Technology +479261,Science and Technology,Science and Technology +467880,Science and Technology,Science and Technology +457944,Science and Technology,Science and Technology +457943,Science and Technology,Science and Technology +457942,Science and Technology,Science and Technology +534360,Science and Technology,Science and Technology +534359,Science and Technology,Science and Technology +534358,Science and Technology,Science and Technology +532342,Science and Technology,Science and Technology +515746,Science and Technology,Science and Technology +510674,Science and Technology,Science and Technology +507683,Science and Technology,Science and Technology +507682,Science and Technology,Science and Technology +507681,Science and Technology,Science and Technology +507680,Science and Technology,Science and Technology +504989,Science and Technology,Science and Technology +498626,Science and Technology,Science and Technology +491110,Science and Technology,Science and Technology +491109,Science and Technology,Science and Technology +488394,Science and Technology,Science and Technology +487756,Science and Technology,Science and Technology +487755,Science and Technology,Science and Technology +487754,Science and Technology,Science and Technology +481380,Science and Technology,Science and Technology +398686,Aboriginal Affairs,Aboriginal Affairs +403317,Aboriginal Affairs,Aboriginal Affairs +403301,Aboriginal Affairs,Aboriginal Affairs +432974,Aboriginal Affairs,Aboriginal Affairs +452922,Science and Technology,Science and Technology +449842,Science and Technology,Science and Technology +449807,Science and Technology,Science and Technology +447305,Science and Technology,Science and Technology +447304,Science and Technology,Science and Technology +447303,Science and Technology,Science and Technology +445064,Science and Technology,Science and Technology +442292,Science and Technology,Science and Technology +442288,Science and Technology,Science and Technology +442284,Science and Technology,Science and Technology +442283,Science and Technology,Science and Technology +442278,Science and Technology,Science and Technology +442277,Science and Technology,Science and Technology +442273,Science and Technology,Science and Technology +442269,Science and Technology,Science and Technology +438277,Science and Technology,Science and Technology +434898,Science and Technology,Science and Technology +434897,Science and Technology,Science and Technology +434896,Science and Technology,Science and Technology +432196,Science and Technology,Science and Technology +432194,Science and Technology,Science and Technology +430286,Science and Technology,Science and Technology +420598,Science and Technology,Science and Technology +415644,Science and Technology,Science and Technology +412586,Science and Technology,Science and Technology +412562,Science and Technology,Science and Technology +409278,Science and Technology,Science and Technology +409276,Science and Technology,Science and Technology +409274,Science and Technology,Science and Technology +406261,Science and Technology,Science and Technology +406260,Science and Technology,Science and Technology +406259,Science and Technology,Science and Technology +404463,Science and Technology,Science and Technology +403345,Science and Technology,Science and Technology +403343,Science and Technology,Science and Technology +399886,Science and Technology,Science and Technology +399884,Science and Technology,Science and Technology +398086,Science and Technology,Science and Technology +395242,Science and Technology,Science and Technology +395241,Science and Technology,Science and Technology +495692,Science and Technology,Science and Technology +480035,Science and Technology,Science and Technology +480033,Science and Technology,Science and Technology +480030,Science and Technology,Science and Technology +466270,Science and Technology,Science and Technology +466269,Science and Technology,Science and Technology +466268,Science and Technology,Science and Technology +466256,Science and Technology,Science and Technology +466255,Science and Technology,Science and Technology +466251,Science and Technology,Science and Technology +466250,Science and Technology,Science and Technology +466249,Science and Technology,Science and Technology +466248,Science and Technology,Science and Technology +466246,Science and Technology,Science and Technology +466244,Science and Technology,Science and Technology +463116,Science and Technology,Science and Technology +463115,Science and Technology,Science and Technology +463114,Science and Technology,Science and Technology +463113,Science and Technology,Science and Technology +463112,Science and Technology,Science and Technology +463110,Science and Technology,Science and Technology +463109,Science and Technology,Science and Technology +463049,Science and Technology,Science and Technology +463048,Science and Technology,Science and Technology +463047,Science and Technology,Science and Technology +461313,Science and Technology,Science and Technology +459595,Science and Technology,Science and Technology +458288,Science and Technology,Science and Technology +458287,Science and Technology,Science and Technology +458283,Science and Technology,Science and Technology +457051,Science and Technology,Science and Technology +457047,Science and Technology,Science and Technology +456127,Science and Technology,Science and Technology +456125,Science and Technology,Science and Technology +452925,Science and Technology,Science and Technology +395429,Science and Technology,Science and Technology +395066,Science and Technology,Science and Technology +401798,Arts and Culture,Arts and Culture +401796,Arts and Culture,Arts and Culture +401800,Arts and Culture,Arts and Culture +398254,Aboriginal Affairs,Aboriginal Affairs +398374,Aboriginal Affairs,Aboriginal Affairs +398373,Aboriginal Affairs,Aboriginal Affairs +398372,Aboriginal Affairs,Aboriginal Affairs +398370,Aboriginal Affairs,Aboriginal Affairs +398368,Aboriginal Affairs,Aboriginal Affairs +398366,Aboriginal Affairs,Aboriginal Affairs +398361,Aboriginal Affairs,Aboriginal Affairs +443739,Aboriginal Affairs,Aboriginal Affairs +425345,Aboriginal Affairs,Aboriginal Affairs +398456,Aboriginal Affairs,Affaires autochtones +399816,Science and Technology,Science and Technology +399815,Science and Technology,Science and Technology +403123,Science and Technology,Science and Technology +403118,Science and Technology,Science and Technology +399820,Science and Technology,Science and Technology +396005,Science and Technology,Science and Technology +396003,Science and Technology,Science and Technology +399116,Science and Technology,Science and Technology +396854,Science and Technology,Science and Technology +396853,Science and Technology,Science and Technology +396079,Science and Technology,Science and Technology +396242,Aboriginal Affairs,Aboriginal Affairs +396229,Aboriginal Affairs,Aboriginal Affairs +425934,Aboriginal Affairs,Aboriginal Affairs +407810,Aboriginal Affairs,Aboriginal Affairs +399466,Aboriginal Affairs,Aboriginal Affairs +397353,Aboriginal Affairs,Aboriginal Affairs +399474,Aboriginal Affairs,Aboriginal Affairs +399473,Aboriginal Affairs,Aboriginal Affairs +399472,Aboriginal Affairs,Aboriginal Affairs +399471,Aboriginal Affairs,Aboriginal Affairs +399470,Aboriginal Affairs,Aboriginal Affairs +399469,Aboriginal Affairs,Aboriginal Affairs +399468,Aboriginal Affairs,Aboriginal Affairs +400077,Science and Technology,Sciences et technologies +398523,Science and Technology,Sciences et technologies +406111,Arts and Culture,Arts and Culture +401980,Arts and Culture,Arts and Culture +504174,Arts and Culture,Arts and Culture +433963,Arts and Culture,Arts and Culture +424284,Arts and Culture,Arts and Culture +399737,Aboriginal Affairs,Aboriginal Affairs +401695,Science and Technology,Science and Technology +399737,Science and Technology,Science and Technology +435742,Science and Technology,Science and Technology +435738,Science and Technology,Science and Technology +426501,Science and Technology,Science and Technology +423720,Science and Technology,Science and Technology +419636,Science and Technology,Science and Technology +419633,Science and Technology,Science and Technology +419631,Science and Technology,Science and Technology +419630,Science and Technology,Science and Technology +418102,Science and Technology,Science and Technology +418101,Science and Technology,Science and Technology +418099,Science and Technology,Science and Technology +418097,Science and Technology,Science and Technology +418096,Science and Technology,Science and Technology +418095,Science and Technology,Science and Technology +418094,Science and Technology,Science and Technology +418093,Science and Technology,Science and Technology +415369,Science and Technology,Science and Technology +415363,Science and Technology,Science and Technology +412684,Science and Technology,Science and Technology +412681,Science and Technology,Science and Technology +412680,Science and Technology,Science and Technology +412678,Science and Technology,Science and Technology +412677,Science and Technology,Science and Technology +412676,Science and Technology,Science and Technology +412673,Science and Technology,Science and Technology +412667,Science and Technology,Science and Technology +412664,Science and Technology,Science and Technology +412654,Science and Technology,Science and Technology +412650,Science and Technology,Science and Technology +412608,Science and Technology,Science and Technology +412606,Science and Technology,Science and Technology +412598,Science and Technology,Science and Technology +412596,Science and Technology,Science and Technology +410457,Science and Technology,Science and Technology +409727,Science and Technology,Science and Technology +409725,Science and Technology,Science and Technology +406842,Science and Technology,Science and Technology +406841,Science and Technology,Science and Technology +406839,Science and Technology,Science and Technology +404875,Science and Technology,Science and Technology +404023,Science and Technology,Science and Technology +403051,Science and Technology,Science and Technology +403050,Science and Technology,Science and Technology +403049,Science and Technology,Science and Technology +403048,Science and Technology,Science and Technology +403047,Science and Technology,Science and Technology +403045,Science and Technology,Science and Technology +402699,Science and Technology,Science and Technology +400112,Science and Technology,Science and Technology +541670,Science and Technology,Science and Technology +537938,Science and Technology,Science and Technology +537936,Science and Technology,Science and Technology +537935,Science and Technology,Science and Technology +537934,Science and Technology,Science and Technology +537933,Science and Technology,Science and Technology +534860,Science and Technology,Science and Technology +517081,Science and Technology,Science and Technology +515525,Science and Technology,Science and Technology +513993,Science and Technology,Science and Technology +512335,Science and Technology,Science and Technology +510327,Science and Technology,Science and Technology +510325,Science and Technology,Science and Technology +507102,Science and Technology,Science and Technology +507100,Science and Technology,Science and Technology +504091,Science and Technology,Science and Technology +504090,Science and Technology,Science and Technology +504089,Science and Technology,Science and Technology +504088,Science and Technology,Science and Technology +504086,Science and Technology,Science and Technology +501558,Science and Technology,Science and Technology +501557,Science and Technology,Science and Technology +495431,Science and Technology,Science and Technology +490771,Science and Technology,Science and Technology +490747,Science and Technology,Science and Technology +486403,Science and Technology,Science and Technology +486402,Science and Technology,Science and Technology +486401,Science and Technology,Science and Technology +486400,Science and Technology,Science and Technology +484417,Science and Technology,Science and Technology +481747,Science and Technology,Science and Technology +480258,Science and Technology,Science and Technology +480256,Science and Technology,Science and Technology +480255,Science and Technology,Science and Technology +480254,Science and Technology,Science and Technology +480245,Science and Technology,Science and Technology +477224,Science and Technology,Science and Technology +477223,Science and Technology,Science and Technology +476016,Science and Technology,Science and Technology +476013,Science and Technology,Science and Technology +476010,Science and Technology,Science and Technology +473448,Science and Technology,Science and Technology +473443,Science and Technology,Science and Technology +473436,Science and Technology,Science and Technology +469887,Science and Technology,Science and Technology +469885,Science and Technology,Science and Technology +461344,Science and Technology,Science and Technology +455798,Science and Technology,Science and Technology +452883,Science and Technology,Science and Technology +452830,Science and Technology,Science and Technology +452816,Science and Technology,Science and Technology +452814,Science and Technology,Science and Technology +452813,Science and Technology,Science and Technology +452810,Science and Technology,Science and Technology +452808,Science and Technology,Science and Technology +452807,Science and Technology,Science and Technology +452801,Science and Technology,Science and Technology +452775,Science and Technology,Science and Technology +452774,Science and Technology,Science and Technology +452763,Science and Technology,Science and Technology +452757,Science and Technology,Science and Technology +447878,Science and Technology,Science and Technology +443681,Science and Technology,Science and Technology +441127,Science and Technology,Science and Technology +441125,Science and Technology,Science and Technology +441124,Science and Technology,Science and Technology +441123,Science and Technology,Science and Technology +441122,Science and Technology,Science and Technology +441121,Science and Technology,Science and Technology +438729,Science and Technology,Science and Technology +438727,Science and Technology,Science and Technology +438726,Science and Technology,Science and Technology +438724,Science and Technology,Science and Technology +399219,Aboriginal Affairs,Aboriginal Affairs +420924,Science and Technology,Science and Technology +447978,Science and Technology,Science and Technology +438876,Science and Technology,Science and Technology +438875,Science and Technology,Science and Technology +438873,Science and Technology,Science and Technology +435252,Science and Technology,Science and Technology +435249,Science and Technology,Science and Technology +435240,Science and Technology,Science and Technology +432810,Science and Technology,Science and Technology +430102,Science and Technology,Science and Technology +430101,Science and Technology,Science and Technology +427835,Science and Technology,Science and Technology +427833,Science and Technology,Science and Technology +427831,Science and Technology,Science and Technology +427830,Science and Technology,Science and Technology +427829,Science and Technology,Science and Technology +427828,Science and Technology,Science and Technology +427827,Science and Technology,Science and Technology +427826,Science and Technology,Science and Technology +427824,Science and Technology,Science and Technology +427822,Science and Technology,Science and Technology +427819,Science and Technology,Science and Technology +427818,Science and Technology,Science and Technology +427814,Science and Technology,Science and Technology +427813,Science and Technology,Science and Technology +427811,Science and Technology,Science and Technology +427810,Science and Technology,Science and Technology +427809,Science and Technology,Science and Technology +427625,Science and Technology,Science and Technology +427624,Science and Technology,Science and Technology +427622,Science and Technology,Science and Technology +427621,Science and Technology,Science and Technology +427620,Science and Technology,Science and Technology +427616,Science and Technology,Science and Technology +424649,Science and Technology,Science and Technology +420929,Science and Technology,Science and Technology +418477,Aboriginal Affairs,Aboriginal Affairs +415709,Aboriginal Affairs,Aboriginal Affairs +415707,Aboriginal Affairs,Aboriginal Affairs +415703,Aboriginal Affairs,Aboriginal Affairs +406858,Aboriginal Affairs,Aboriginal Affairs +406857,Aboriginal Affairs,Aboriginal Affairs +403259,Aboriginal Affairs,Aboriginal Affairs +403256,Aboriginal Affairs,Aboriginal Affairs +397608,Aboriginal Affairs,Aboriginal Affairs +397607,Aboriginal Affairs,Aboriginal Affairs +397606,Aboriginal Affairs,Aboriginal Affairs +397605,Aboriginal Affairs,Aboriginal Affairs +402031,Science and Technology,Science and Technology +436570,Science and Technology,Science and Technology +436569,Science and Technology,Science and Technology +436938,Science and Technology,Science and Technology +469895,Science and Technology,Science and Technology +469893,Science and Technology,Science and Technology +461536,Science and Technology,Science and Technology +452052,Science and Technology,Science and Technology +447430,Science and Technology,Science and Technology +442338,Science and Technology,Science and Technology +437399,Science and Technology,Science and Technology +437397,Science and Technology,Science and Technology +494126,Science and Technology,Science and Technology +490305,Science and Technology,Science and Technology +490303,Science and Technology,Science and Technology +490300,Science and Technology,Science and Technology +469900,Science and Technology,Science and Technology +399225,Science and Technology,Science and Technology +420668,Science and Technology,Science and Technology +446811,Arts and Culture,Arts and Culture +436966,Arts and Culture,Arts and Culture +398177,Arts and Culture,Arts and Culture +398182,Arts and Culture,Arts and Culture +489734,Science and Technology,Science and Technology +483046,Science and Technology,Science and Technology +414592,Science and Technology,Science and Technology +414339,Science and Technology,Science and Technology +399863,Science and Technology,Science and Technology +399862,Science and Technology,Science and Technology +399860,Science and Technology,Science and Technology +399859,Science and Technology,Science and Technology +399858,Science and Technology,Science and Technology +509351,Science and Technology,Science and Technology +500177,Science and Technology,Science and Technology +465829,Science and Technology,Science and Technology +450601,Science and Technology,Science and Technology +450600,Science and Technology,Science and Technology +436529,Science and Technology,Science and Technology +436484,Science and Technology,Science and Technology +404520,Science and Technology,Science and Technology +402654,Science and Technology,Science and Technology +402133,Aboriginal Affairs,Aboriginal Affairs +402130,Aboriginal Affairs,Aboriginal Affairs +406834,Aboriginal Affairs,Aboriginal Affairs +416720,Arts and Culture,Arts and Culture +400732,Arts and Culture,Arts and Culture +455599,Arts and Culture,Arts and Culture +455565,Arts and Culture,Arts and Culture +444927,Arts and Culture,Arts and Culture +416742,Arts and Culture,Arts and Culture +399272,Science and Technology,Science and Technology +399270,Science and Technology,Science and Technology +399278,Science and Technology,Science and Technology +420675,Science and Technology,Science and Technology +532533,Aboriginal Affairs,Aboriginal Affairs +523562,Aboriginal Affairs,Aboriginal Affairs +430112,Aboriginal Affairs,Aboriginal Affairs +424556,Aboriginal Affairs,Aboriginal Affairs +399395,Science and Technology,Science and Technology +399394,Science and Technology,Science and Technology +402770,Science and Technology,Science and Technology +402145,Science and Technology,Science and Technology +402143,Science and Technology,Science and Technology +416362,Aboriginal Affairs,Aboriginal Affairs +404943,Aboriginal Affairs,Aboriginal Affairs +404941,Aboriginal Affairs,Aboriginal Affairs +437881,Aboriginal Affairs,Aboriginal Affairs +435361,Aboriginal Affairs,Aboriginal Affairs +435356,Aboriginal Affairs,Aboriginal Affairs +431748,Aboriginal Affairs,Aboriginal Affairs +406512,Aboriginal Affairs,Aboriginal Affairs +402703,Aboriginal Affairs,Aboriginal Affairs +438442,Aboriginal Affairs,Aboriginal Affairs +417872,Aboriginal Affairs,Aboriginal Affairs +417871,Aboriginal Affairs,Aboriginal Affairs +415645,Aboriginal Affairs,Aboriginal Affairs +415642,Aboriginal Affairs,Aboriginal Affairs +415638,Aboriginal Affairs,Aboriginal Affairs +412194,Aboriginal Affairs,Aboriginal Affairs +412192,Aboriginal Affairs,Aboriginal Affairs +412191,Aboriginal Affairs,Aboriginal Affairs +412190,Aboriginal Affairs,Aboriginal Affairs +412180,Aboriginal Affairs,Aboriginal Affairs +409882,Aboriginal Affairs,Aboriginal Affairs +409878,Aboriginal Affairs,Aboriginal Affairs +409873,Aboriginal Affairs,Aboriginal Affairs +409871,Aboriginal Affairs,Aboriginal Affairs +403080,Aboriginal Affairs,Aboriginal Affairs +403079,Aboriginal Affairs,Aboriginal Affairs +403082,Aboriginal Affairs,Aboriginal Affairs +403442,Telecommunications,Telecommunications +403441,Telecommunications,Telecommunications +406436,Telecommunications,Telecommunications +403445,Telecommunications,Telecommunications +403444,Telecommunications,Telecommunications +446923,Science and Technology,Science and Technology +446922,Science and Technology,Science and Technology +435008,Science and Technology,Science and Technology +412538,Science and Technology,Science and Technology +409505,Science and Technology,Science and Technology +409503,Science and Technology,Science and Technology +409498,Science and Technology,Science and Technology +542115,Science and Technology,Science and Technology +540690,Science and Technology,Science and Technology +540393,Science and Technology,Science and Technology +516065,Science and Technology,Science and Technology +507154,Science and Technology,Science and Technology +482689,Science and Technology,Science and Technology +472746,Science and Technology,Science and Technology +465599,Science and Technology,Science and Technology +455565,Broadcasting,Broadcasting +444927,Broadcasting,Broadcasting +459667,Broadcasting,Broadcasting +401408,Aboriginal Affairs,Aboriginal Affairs +401406,Aboriginal Affairs,Aboriginal Affairs +450691,Aboriginal Affairs,Aboriginal Affairs +450690,Aboriginal Affairs,Aboriginal Affairs +450689,Aboriginal Affairs,Aboriginal Affairs +429897,Aboriginal Affairs,Aboriginal Affairs +429431,Aboriginal Affairs,Aboriginal Affairs +426960,Aboriginal Affairs,Aboriginal Affairs +426953,Aboriginal Affairs,Aboriginal Affairs +426952,Aboriginal Affairs,Aboriginal Affairs +498502,Aboriginal Affairs,Aboriginal Affairs +488815,Aboriginal Affairs,Aboriginal Affairs +429607,Aboriginal Affairs,Aboriginal Affairs +427224,Aboriginal Affairs,Aboriginal Affairs +405003,Aboriginal Affairs,Aboriginal Affairs +401575,Aboriginal Affairs,Aboriginal Affairs +417033,Telecommunications,Telecommunications +417033,Science and Technology,Science and Technology +457714,Science and Technology,Science and Technology +472017,Science and Technology,Science and Technology +412165,Aboriginal Affairs,Aboriginal Affairs +400185,Aboriginal Affairs,Aboriginal Affairs +428919,Aboriginal Affairs,Aboriginal Affairs +420190,Aboriginal Affairs,Aboriginal Affairs +420188,Aboriginal Affairs,Aboriginal Affairs +421467,Aboriginal Affairs,Aboriginal Affairs +418271,Aboriginal Affairs,Aboriginal Affairs +418264,Aboriginal Affairs,Aboriginal Affairs +418253,Aboriginal Affairs,Aboriginal Affairs +418244,Aboriginal Affairs,Aboriginal Affairs +418204,Aboriginal Affairs,Aboriginal Affairs +402156,Aboriginal Affairs,Aboriginal Affairs +402140,Aboriginal Affairs,Aboriginal Affairs +401507,Aboriginal Affairs,Aboriginal Affairs +401506,Aboriginal Affairs,Aboriginal Affairs +420796,Aboriginal Affairs,Aboriginal Affairs +401509,Aboriginal Affairs,Aboriginal Affairs +403912,Aboriginal Affairs,Aboriginal Affairs +403697,Aboriginal Affairs,Aboriginal Affairs +403691,Aboriginal Affairs,Aboriginal Affairs +403675,Aboriginal Affairs,Aboriginal Affairs +403664,Aboriginal Affairs,Aboriginal Affairs +403659,Aboriginal Affairs,Aboriginal Affairs +403638,Aboriginal Affairs,Aboriginal Affairs +403620,Aboriginal Affairs,Aboriginal Affairs +403927,Aboriginal Affairs,Aboriginal Affairs +403925,Aboriginal Affairs,Aboriginal Affairs +403645,Aboriginal Affairs,Aboriginal Affairs +403631,Aboriginal Affairs,Aboriginal Affairs +403933,Aboriginal Affairs,Aboriginal Affairs +403930,Aboriginal Affairs,Aboriginal Affairs +403926,Aboriginal Affairs,Aboriginal Affairs +403918,Aboriginal Affairs,Aboriginal Affairs +403915,Aboriginal Affairs,Aboriginal Affairs +403695,Aboriginal Affairs,Aboriginal Affairs +403694,Aboriginal Affairs,Aboriginal Affairs +403669,Aboriginal Affairs,Aboriginal Affairs +401417,Science and Technology,Science and Technology +514742,Science and Technology,Sciences et technologies +514303,Science and Technology,Sciences et technologies +465825,Science and Technology,Sciences et technologies +465824,Science and Technology,Sciences et technologies +465822,Science and Technology,Sciences et technologies +454068,Science and Technology,Sciences et technologies +452109,Science and Technology,Sciences et technologies +450527,Science and Technology,Sciences et technologies +431093,Science and Technology,Sciences et technologies +428106,Science and Technology,Sciences et technologies +425330,Science and Technology,Sciences et technologies +418916,Science and Technology,Sciences et technologies +418914,Science and Technology,Sciences et technologies +412512,Science and Technology,Sciences et technologies +412511,Science and Technology,Sciences et technologies +527437,Science and Technology,Sciences et technologies +522421,Science and Technology,Sciences et technologies +522418,Science and Technology,Sciences et technologies +414135,Arts and Culture,Arts and Culture +407784,Arts and Culture,Arts and Culture +466737,Arts and Culture,Arts and Culture +466736,Arts and Culture,Arts and Culture +463176,Arts and Culture,Arts and Culture +463175,Arts and Culture,Arts and Culture +463173,Arts and Culture,Arts and Culture +461692,Arts and Culture,Arts and Culture +461371,Arts and Culture,Arts and Culture +459425,Arts and Culture,Arts and Culture +456863,Arts and Culture,Arts and Culture +456862,Arts and Culture,Arts and Culture +448610,Arts and Culture,Arts and Culture +447267,Arts and Culture,Arts and Culture +444543,Arts and Culture,Arts and Culture +440788,Arts and Culture,Arts and Culture +434228,Arts and Culture,Arts and Culture +432897,Arts and Culture,Arts and Culture +428306,Arts and Culture,Arts and Culture +418634,Arts and Culture,Arts and Culture +434228,Broadcasting,Broadcasting +432897,Broadcasting,Broadcasting +418634,Broadcasting,Broadcasting +417402,Broadcasting,Broadcasting +402248,Telecommunications,Telecommunications +401424,Telecommunications,Telecommunications +425599,Telecommunications,Telecommunications +418792,Telecommunications,Telecommunications +418691,Telecommunications,Telecommunications +412316,Telecommunications,Telecommunications +405989,Science and Technology,Science and Technology +401434,Science and Technology,Science and Technology +511026,Science and Technology,Science and Technology +502814,Science and Technology,Science and Technology +471261,Science and Technology,Science and Technology +471259,Science and Technology,Science and Technology +426974,Science and Technology,Science and Technology +410803,Science and Technology,Science and Technology +405994,Science and Technology,Science and Technology +422395,Arts and Culture,Arts and Culture +422382,Arts and Culture,Arts and Culture +455511,Arts and Culture,Arts and Culture +455491,Arts and Culture,Arts and Culture +443257,Arts and Culture,Arts and Culture +439652,Arts and Culture,Arts and Culture +509054,Broadcasting,Broadcasting +480269,Broadcasting,Broadcasting +455491,Telecommunications,Telecommunications +408376,Science and Technology,Science and Technology +402679,Science and Technology,Science and Technology +408379,Science and Technology,Science and Technology +408378,Science and Technology,Science and Technology +410240,Arts and Culture,Arts and Culture +511098,Arts and Culture,Arts and Culture +485267,Arts and Culture,Arts and Culture +476104,Arts and Culture,Arts and Culture +457802,Arts and Culture,Arts and Culture +457800,Arts and Culture,Arts and Culture +439696,Arts and Culture,Arts and Culture +439686,Arts and Culture,Arts and Culture +429620,Arts and Culture,Arts and Culture +425155,Arts and Culture,Arts and Culture +412479,Arts and Culture,Arts and Culture +475720,Telecommunications,Telecommunications +500500,Telecommunications,Telecommunications +486229,Telecommunications,Telecommunications +476496,Telecommunications,Telecommunications +418325,Telecommunications,Telecommunications +411955,Telecommunications,Telecommunications +542438,Telecommunications,Telecommunications +540602,Telecommunications,Telecommunications +523913,Telecommunications,Telecommunications +520774,Telecommunications,Telecommunications +518635,Telecommunications,Telecommunications +516399,Telecommunications,Telecommunications +514947,Telecommunications,Telecommunications +513563,Telecommunications,Telecommunications +512266,Telecommunications,Telecommunications +512265,Telecommunications,Telecommunications +512264,Telecommunications,Telecommunications +404051,Science and Technology,Science and Technology +404050,Science and Technology,Science and Technology +538622,Science and Technology,Sciences et technologies +538621,Science and Technology,Sciences et technologies +464222,Science and Technology,Sciences et technologies +464220,Science and Technology,Sciences et technologies +464215,Science and Technology,Sciences et technologies +464214,Science and Technology,Sciences et technologies +464209,Science and Technology,Sciences et technologies +427869,Science and Technology,Sciences et technologies +427867,Science and Technology,Sciences et technologies +427863,Science and Technology,Sciences et technologies +427862,Science and Technology,Sciences et technologies +427861,Science and Technology,Sciences et technologies +427860,Science and Technology,Sciences et technologies +427859,Science and Technology,Sciences et technologies +418727,Science and Technology,Sciences et technologies +415895,Science and Technology,Sciences et technologies +415893,Science and Technology,Sciences et technologies +415892,Science and Technology,Sciences et technologies +452138,Telecommunications,Telecommunications +452136,Telecommunications,Telecommunications +409552,Science and Technology,Science and Technology +409547,Science and Technology,Science and Technology +419606,Science and Technology,Science and Technology +409574,Science and Technology,Science and Technology +404220,Aboriginal Affairs,Aboriginal Affairs +404219,Aboriginal Affairs,Aboriginal Affairs +465921,Telecommunications,Telecommunications +406065,Aboriginal Affairs,Aboriginal Affairs +405475,Aboriginal Affairs,Aboriginal Affairs +411271,Aboriginal Affairs,Aboriginal Affairs +410826,Aboriginal Affairs,Aboriginal Affairs +409665,Aboriginal Affairs,Aboriginal Affairs +407418,Aboriginal Affairs,Aboriginal Affairs +407329,Aboriginal Affairs,Aboriginal Affairs +407271,Aboriginal Affairs,Aboriginal Affairs +407216,Aboriginal Affairs,Aboriginal Affairs +407215,Aboriginal Affairs,Aboriginal Affairs +407214,Aboriginal Affairs,Aboriginal Affairs +406402,Aboriginal Affairs,Aboriginal Affairs +418551,Science and Technology,Science and Technology +402246,Science and Technology,Science and Technology +405124,Aboriginal Affairs,Aboriginal Affairs +404131,Aboriginal Affairs,Aboriginal Affairs +405359,Aboriginal Affairs,Aboriginal Affairs +405358,Aboriginal Affairs,Aboriginal Affairs +405463,Telecommunications,Telecommunications +405461,Telecommunications,Telecommunications +407225,Telecommunications,Telecommunications +406962,Telecommunications,Telecommunications +406961,Telecommunications,Telecommunications +406960,Telecommunications,Telecommunications +406959,Telecommunications,Telecommunications +406958,Telecommunications,Telecommunications +406956,Telecommunications,Telecommunications +405467,Telecommunications,Telecommunications +493688,Aboriginal Affairs,Aboriginal Affairs +532150,Aboriginal Affairs,Aboriginal Affairs +403117,Aboriginal Affairs,Aboriginal Affairs +432548,Science and Technology,Science and Technology +431006,Science and Technology,Science and Technology +418121,Science and Technology,Science and Technology +418117,Science and Technology,Science and Technology +417032,Science and Technology,Science and Technology +412982,Science and Technology,Science and Technology +408223,Science and Technology,Science and Technology +408222,Science and Technology,Science and Technology +406881,Science and Technology,Science and Technology +485338,Science and Technology,Science and Technology +476004,Science and Technology,Science and Technology +475997,Science and Technology,Science and Technology +475990,Science and Technology,Science and Technology +475989,Science and Technology,Science and Technology +473704,Science and Technology,Science and Technology +473702,Science and Technology,Science and Technology +473701,Science and Technology,Science and Technology +473699,Science and Technology,Science and Technology +445802,Science and Technology,Science and Technology +443168,Science and Technology,Science and Technology +440233,Science and Technology,Science and Technology +424773,Science and Technology,Science and Technology +403306,Science and Technology,Science and Technology +477430,Science and Technology,Science and Technology +477424,Science and Technology,Science and Technology +477403,Science and Technology,Science and Technology +470612,Science and Technology,Science and Technology +450558,Science and Technology,Science and Technology +405953,Science and Technology,Science and Technology +404412,Science and Technology,Science and Technology +406333,Science and Technology,Science and Technology +406332,Science and Technology,Science and Technology +406331,Science and Technology,Science and Technology +404636,Telecommunications,Telecommunications +408657,Telecommunications,Telecommunications +404638,Telecommunications,Telecommunications +407669,Science and Technology,Science and Technology +406230,Science and Technology,Science and Technology +406409,Science and Technology,Science and Technology +406407,Science and Technology,Science and Technology +429540,Science and Technology,Science and Technology +429539,Science and Technology,Science and Technology +429538,Science and Technology,Science and Technology +429537,Science and Technology,Science and Technology +429536,Science and Technology,Science and Technology +424590,Science and Technology,Science and Technology +406413,Science and Technology,Science and Technology +404640,Telecommunications,Telecommunications +426591,Aboriginal Affairs,Aboriginal Affairs +426583,Aboriginal Affairs,Aboriginal Affairs +434307,Aboriginal Affairs,Aboriginal Affairs +455324,Science and Technology,Science and Technology +423883,Science and Technology,Science and Technology +530366,Science and Technology,Science and Technology +470852,Arts and Culture,Arts and Culture +467534,Arts and Culture,Arts and Culture +455621,Arts and Culture,Arts and Culture +437601,Arts and Culture,Arts and Culture +435023,Arts and Culture,Arts and Culture +435020,Arts and Culture,Arts and Culture +428018,Arts and Culture,Arts and Culture +412568,Arts and Culture,Arts and Culture +408813,Arts and Culture,Arts and Culture +523026,Arts and Culture,Arts and Culture +491405,Arts and Culture,Arts and Culture +491398,Arts and Culture,Arts and Culture +487655,Arts and Culture,Arts and Culture +484632,Arts and Culture,Arts and Culture +484628,Arts and Culture,Arts and Culture +477348,Arts and Culture,Arts and Culture +467773,Arts and Culture,Arts and Culture +467528,Arts and Culture,Arts and Culture +437568,Arts and Culture,Arts and Culture +437566,Arts and Culture,Arts and Culture +437564,Arts and Culture,Arts and Culture +437563,Arts and Culture,Arts and Culture +417717,Arts and Culture,Arts and Culture +527307,Arts and Culture,Arts and Culture +523101,Arts and Culture,Arts and Culture +511902,Arts and Culture,Arts and Culture +491440,Arts and Culture,Arts and Culture +467529,Arts and Culture,Arts and Culture +437599,Arts and Culture,Arts and Culture +437593,Arts and Culture,Arts and Culture +428020,Arts and Culture,Arts and Culture +416037,Arts and Culture,Arts and Culture +475667,Arts and Culture,Arts and Culture +467560,Arts and Culture,Arts and Culture +451505,Arts and Culture,Arts and Culture +440672,Arts and Culture,Arts and Culture +440664,Arts and Culture,Arts and Culture +440662,Arts and Culture,Arts and Culture +437600,Arts and Culture,Arts and Culture +437600,Telecommunications,Telecommunications +437591,Telecommunications,Telecommunications +440672,Telecommunications,Telecommunications +440664,Telecommunications,Telecommunications +437591,Broadcasting,Broadcasting +416037,Broadcasting,Broadcasting +475667,Broadcasting,Broadcasting +467560,Broadcasting,Broadcasting +451505,Broadcasting,Broadcasting +440672,Broadcasting,Broadcasting +440664,Broadcasting,Broadcasting +440662,Broadcasting,Broadcasting +404858,Aboriginal Affairs,Aboriginal Affairs +426550,Aboriginal Affairs,Aboriginal Affairs +426545,Aboriginal Affairs,Aboriginal Affairs +426570,Aboriginal Affairs,Aboriginal Affairs +427025,Science and Technology,Science and Technology +429859,Science and Technology,Science and Technology +462783,Science and Technology,Science and Technology +458820,Science and Technology,Science and Technology +414650,Science and Technology,Science and Technology +404559,Science and Technology,Science and Technology +513565,Science and Technology,Science and Technology +526828,Broadcasting,Broadcasting +506597,Telecommunications,Telecommunications +497104,Telecommunications,Telecommunications +408524,Telecommunications,Telecommunications +407084,Telecommunications,Telecommunications +406347,Telecommunications,Telecommunications +526828,Telecommunications,Telecommunications +522057,Telecommunications,Telecommunications +518886,Telecommunications,Telecommunications +514518,Telecommunications,Telecommunications +422696,Arts and Culture,Arts and Culture +422695,Arts and Culture,Arts and Culture +408955,Arts and Culture,Arts and Culture +408953,Arts and Culture,Arts and Culture +408826,Arts and Culture,Arts and Culture +422698,Arts and Culture,Arts and Culture +432405,Science and Technology,Science and Technology +419424,Science and Technology,Science and Technology +407661,Science and Technology,Science and Technology +406441,Science and Technology,Science and Technology +406440,Science and Technology,Science and Technology +406198,Science and Technology,Science and Technology +404651,Science and Technology,Science and Technology +404650,Science and Technology,Science and Technology +404649,Science and Technology,Science and Technology +404648,Science and Technology,Science and Technology +404647,Science and Technology,Science and Technology +404646,Science and Technology,Science and Technology +404645,Science and Technology,Science and Technology +541658,Science and Technology,Science and Technology +523229,Science and Technology,Science and Technology +518267,Science and Technology,Science and Technology +518265,Science and Technology,Science and Technology +518257,Science and Technology,Science and Technology +515879,Science and Technology,Science and Technology +515875,Science and Technology,Science and Technology +510760,Science and Technology,Science and Technology +509076,Science and Technology,Science and Technology +509075,Science and Technology,Science and Technology +505118,Science and Technology,Science and Technology +505112,Science and Technology,Science and Technology +505109,Science and Technology,Science and Technology +502218,Science and Technology,Science and Technology +499386,Science and Technology,Science and Technology +499379,Science and Technology,Science and Technology +496079,Science and Technology,Science and Technology +496069,Science and Technology,Science and Technology +493642,Science and Technology,Science and Technology +493639,Science and Technology,Science and Technology +487641,Science and Technology,Science and Technology +487637,Science and Technology,Science and Technology +487634,Science and Technology,Science and Technology +487630,Science and Technology,Science and Technology +485182,Science and Technology,Science and Technology +485143,Science and Technology,Science and Technology +485132,Science and Technology,Science and Technology +485126,Science and Technology,Science and Technology +485120,Science and Technology,Science and Technology +485117,Science and Technology,Science and Technology +485107,Science and Technology,Science and Technology +485097,Science and Technology,Science and Technology +485094,Science and Technology,Science and Technology +485093,Science and Technology,Science and Technology +485088,Science and Technology,Science and Technology +482381,Science and Technology,Science and Technology +477767,Science and Technology,Science and Technology +475401,Science and Technology,Science and Technology +475395,Science and Technology,Science and Technology +473054,Science and Technology,Science and Technology +473051,Science and Technology,Science and Technology +470777,Science and Technology,Science and Technology +467708,Science and Technology,Science and Technology +467643,Science and Technology,Science and Technology +467626,Science and Technology,Science and Technology +467567,Science and Technology,Science and Technology +464053,Science and Technology,Science and Technology +464050,Science and Technology,Science and Technology +464049,Science and Technology,Science and Technology +462970,Science and Technology,Science and Technology +462762,Science and Technology,Science and Technology +462761,Science and Technology,Science and Technology +462759,Science and Technology,Science and Technology +461427,Science and Technology,Science and Technology +460796,Science and Technology,Science and Technology +460795,Science and Technology,Science and Technology +458755,Science and Technology,Science and Technology +458754,Science and Technology,Science and Technology +458753,Science and Technology,Science and Technology +457517,Science and Technology,Science and Technology +457514,Science and Technology,Science and Technology +457509,Science and Technology,Science and Technology +455733,Science and Technology,Science and Technology +455729,Science and Technology,Science and Technology +455722,Science and Technology,Science and Technology +455721,Science and Technology,Science and Technology +455720,Science and Technology,Science and Technology +455717,Science and Technology,Science and Technology +453033,Science and Technology,Science and Technology +453032,Science and Technology,Science and Technology +453031,Science and Technology,Science and Technology +386461,Science and Technology,Science and Technology +384644,Science and Technology,Science and Technology +394634,Science and Technology,Science and Technology +393681,Science and Technology,Science and Technology +389049,Science and Technology,Science and Technology +387946,Science and Technology,Science and Technology +387384,Arts and Culture,Arts and Culture +399451,Aboriginal Affairs,Aboriginal Affairs +389692,Arts and Culture,Arts and Culture +385889,Science and Technology,Science and Technology +386168,Arts and Culture,Arts and Culture +387465,Arts and Culture,Arts et culture +442373,Aboriginal Affairs,Aboriginal Affairs +385907,Science and Technology,Science and Technology +406446,Telecommunications,Telecommunications +406471,Science and Technology,Science and Technology +400344,Arts and Culture,Arts and Culture +385240,Science and Technology,Science and Technology +385616,Science and Technology,Science and Technology +513069,Science and Technology,Science and Technology +507938,Aboriginal Affairs,Aboriginal Affairs +386253,Science and Technology,Science and Technology +390115,Science and Technology,Science and Technology +387076,Aboriginal Affairs,Aboriginal Affairs +388862,Aboriginal Affairs,Aboriginal Affairs +388862,Science and Technology,Science and Technology +387184,Science and Technology,Science and Technology +386632,Aboriginal Affairs,Aboriginal Affairs +416183,Arts and Culture,Arts and Culture +392465,Science and Technology,Science and Technology +386305,Aboriginal Affairs,Aboriginal Affairs +415512,Aboriginal Affairs,Aboriginal Affairs +392166,Aboriginal Affairs,Aboriginal Affairs +388067,Aboriginal Affairs,Aboriginal Affairs +429254,Aboriginal Affairs,Aboriginal Affairs +392081,Aboriginal Affairs,Aboriginal Affairs +392258,Broadcasting,Broadcasting +389173,Science and Technology,Science and Technology +420375,Arts and Culture,Arts and Culture +403094,Aboriginal Affairs,Aboriginal Affairs +418719,Science and Technology,Science and Technology +393041,Aboriginal Affairs,Aboriginal Affairs +386879,Science and Technology,Science and Technology +387358,Arts and Culture,Arts and Culture +544362,Aboriginal Affairs,Aboriginal Affairs +388812,Arts and Culture,Arts and Culture +401213,Science and Technology,Science and Technology +390580,Aboriginal Affairs,Aboriginal Affairs +387144,Aboriginal Affairs,Aboriginal Affairs +390430,Telecommunications,Telecommunications +436429,Science and Technology,Science and Technology +422932,Aboriginal Affairs,Aboriginal Affairs +387292,Science and Technology,Science and Technology +468097,Broadcasting,Broadcasting +468097,Telecommunications,Telecommunications +392985,Aboriginal Affairs,Aboriginal Affairs +387585,Aboriginal Affairs,Aboriginal Affairs +388985,Science and Technology,Science and Technology +387727,Science and Technology,Science and Technology +396235,Science and Technology,Science and Technology +398257,Science and Technology,Science and Technology +388135,Telecommunications,Telecommunications +389586,Aboriginal Affairs,Aboriginal Affairs +393670,Aboriginal Affairs,Aboriginal Affairs +459311,Aboriginal Affairs,Aboriginal Affairs +410725,Arts and Culture,Arts et culture +393919,Aboriginal Affairs,Aboriginal Affairs +388816,Science and Technology,Science and Technology +390963,Science and Technology,Science and Technology +392851,Arts and Culture,Arts and Culture +390029,Broadcasting,Broadcasting +391970,Aboriginal Affairs,Aboriginal Affairs +391968,Aboriginal Affairs,Aboriginal Affairs +406444,Aboriginal Affairs,Aboriginal Affairs +542475,Science and Technology,Science and Technology +519246,Broadcasting,Broadcasting +437735,Aboriginal Affairs,Aboriginal Affairs +532479,Telecommunications,Telecommunications +391295,Telecommunications,Telecommunications +434947,Arts and Culture,Arts and Culture +402631,Arts and Culture,Arts and Culture +402631,Broadcasting,Broadcasting +402631,Telecommunications,Telecommunications +391127,Telecommunications,Telecommunications +393147,Science and Technology,Sciences et technologies +406856,Science and Technology,Science and Technology +410474,Aboriginal Affairs,Aboriginal Affairs +391856,Science and Technology,Science and Technology +389480,Science and Technology,Science and Technology +390673,Aboriginal Affairs,Aboriginal Affairs +410551,Science and Technology,Science and Technology +392822,Aboriginal Affairs,Aboriginal Affairs +443075,Arts and Culture,Arts and Culture +390896,Aboriginal Affairs,Aboriginal Affairs +389579,Arts and Culture,Arts and Culture +389763,Aboriginal Affairs,Aboriginal Affairs +391999,Aboriginal Affairs,Aboriginal Affairs +450221,Aboriginal Affairs,Aboriginal Affairs +411276,Science and Technology,Science and Technology +414644,Science and Technology,Science and Technology +401061,Arts and Culture,Arts and Culture +391743,Aboriginal Affairs,Aboriginal Affairs +391669,Science and Technology,Science and Technology +416882,Telecommunications,Telecommunications +416886,Broadcasting,Broadcasting +443524,Telecommunications,Telecommunications +399575,Arts and Culture,Arts and Culture +391933,Broadcasting,Broadcasting +397030,Broadcasting,Broadcasting +397241,Aboriginal Affairs,Aboriginal Affairs +391952,Aboriginal Affairs,Aboriginal Affairs +391953,Science and Technology,Science and Technology +397774,Arts and Culture,Arts and Culture +392053,Science and Technology,Science and Technology +391997,Aboriginal Affairs,Aboriginal Affairs +399869,Arts and Culture,Arts and Culture +393129,Aboriginal Affairs,Aboriginal Affairs +402308,Science and Technology,Science and Technology +428301,Arts and Culture,Arts and Culture +434230,Broadcasting,Broadcasting +394852,Arts and Culture,Arts and Culture +392366,Science and Technology,Science and Technology +392753,Aboriginal Affairs,Aboriginal Affairs +503600,Aboriginal Affairs,Aboriginal Affairs +391229,Science and Technology,Science and Technology +397230,Aboriginal Affairs,Aboriginal Affairs +431346,Arts and Culture,Arts and Culture +414064,Broadcasting,Broadcasting +408240,Aboriginal Affairs,Aboriginal Affairs +395048,Arts and Culture,Arts and Culture +396752,Arts and Culture,Arts and Culture +422304,Science and Technology,Science and Technology +401203,Science and Technology,Science and Technology +404056,Science and Technology,Science and Technology +422609,Aboriginal Affairs,Aboriginal Affairs +399580,Telecommunications,Telecommunications +410629,Science and Technology,Science and Technology +405367,Science and Technology,Science and Technology +397621,Aboriginal Affairs,Aboriginal Affairs +393054,Arts and Culture,Arts and Culture +404566,Arts and Culture,Arts and Culture +397755,Arts and Culture,Arts and Culture +460890,Aboriginal Affairs,Aboriginal Affairs +420326,Arts and Culture,Arts and Culture +397182,Aboriginal Affairs,Aboriginal Affairs +397338,Arts and Culture,Arts and Culture +393367,Science and Technology,Science and Technology +393126,Telecommunications,Telecommunications +485759,Broadcasting,Broadcasting +411306,Broadcasting,Broadcasting +411306,Telecommunications,Telecommunications +411304,Arts and Culture,Arts and Culture +393201,Arts and Culture,Arts and Culture +393202,Arts and Culture,Arts and Culture +393203,Arts and Culture,Arts and Culture +393204,Arts and Culture,Arts and Culture +396715,Arts and Culture,Arts and Culture +483538,Arts and Culture,Arts and Culture +444872,Science and Technology,Science and Technology +401450,Aboriginal Affairs,Aboriginal Affairs +398260,Aboriginal Affairs,Aboriginal Affairs +490792,Aboriginal Affairs,Aboriginal Affairs +398699,Aboriginal Affairs,Aboriginal Affairs +484343,Telecommunications,Telecommunications +397430,Aboriginal Affairs,Aboriginal Affairs +397442,Science and Technology,Science and Technology +393938,Science and Technology,Science and Technology +393950,Aboriginal Affairs,Aboriginal Affairs +411302,Broadcasting,Broadcasting +411302,Arts and Culture,Arts and Culture +515767,Aboriginal Affairs,Aboriginal Affairs +465519,Science and Technology,Science and Technology +408162,Science and Technology,Science and Technology +440110,Arts and Culture,Arts and Culture +440080,Arts and Culture,Arts and Culture +520316,Arts and Culture,Arts and Culture +396904,Arts and Culture,Arts and Culture +520313,Arts and Culture,Arts and Culture +440053,Arts and Culture,Arts and Culture +440084,Arts and Culture,Arts and Culture +440050,Arts and Culture,Arts and Culture +396916,Arts and Culture,Arts and Culture +440051,Arts and Culture,Arts and Culture +398035,Aboriginal Affairs,Aboriginal Affairs +425225,Science and Technology,Science and Technology +394674,Arts and Culture,Arts and Culture +401268,Aboriginal Affairs,Aboriginal Affairs +422496,Aboriginal Affairs,Aboriginal Affairs +399791,Science and Technology,Science and Technology +413379,Aboriginal Affairs,Aboriginal Affairs +478663,Science and Technology,Science and Technology +481379,Science and Technology,Science and Technology +400238,Aboriginal Affairs,Aboriginal Affairs +403323,Aboriginal Affairs,Aboriginal Affairs +401165,Arts and Culture,Arts and Culture +432975,Aboriginal Affairs,Aboriginal Affairs +452924,Science and Technology,Science and Technology +400892,Science and Technology,Sciences et technologies +398159,Telecommunications,Telecommunications +398235,Science and Technology,Science and Technology +437061,Science and Technology,Science and Technology +395117,Aboriginal Affairs,Aboriginal Affairs +401799,Arts and Culture,Arts and Culture +401142,Aboriginal Affairs,Affaires autochtones +398255,Aboriginal Affairs,Aboriginal Affairs +399821,Telecommunications,Telecommunications +456010,Aboriginal Affairs,Aboriginal Affairs +401810,Aboriginal Affairs,Affaires autochtones +402621,Science and Technology,Science and Technology +399633,Science and Technology,Science and Technology +399819,Science and Technology,Science and Technology +396736,Science and Technology,Science and Technology +397055,Science and Technology,Science and Technology +396258,Aboriginal Affairs,Aboriginal Affairs +396623,Arts and Culture,Arts and Culture +399467,Aboriginal Affairs,Aboriginal Affairs +431581,Science and Technology,Sciences et technologies +422309,Arts and Culture,Arts and Culture +401980,Broadcasting,Broadcasting +401732,Aboriginal Affairs,Aboriginal Affairs +401732,Science and Technology,Science and Technology +404332,Science and Technology,Science and Technology +438723,Science and Technology,Science and Technology +399220,Aboriginal Affairs,Aboriginal Affairs +404299,Science and Technology,Science and Technology +436685,Arts and Culture,Arts and Culture +399627,Science and Technology,Science and Technology +420926,Science and Technology,Science and Technology +397604,Aboriginal Affairs,Aboriginal Affairs +402050,Science and Technology,Science and Technology +427619,Aboriginal Affairs,Aboriginal Affairs +436571,Science and Technology,Science and Technology +469897,Science and Technology,Science and Technology +400175,Science and Technology,Science and Technology +410799,Telecommunications,Telecommunications +420669,Science and Technology,Science and Technology +446812,Arts and Culture,Arts and Culture +429667,Arts and Culture,Arts and Culture +404571,Science and Technology,Science and Technology +408476,Science and Technology,Science and Technology +432657,Science and Technology,Science and Technology +427346,Science and Technology,Science and Technology +405903,Science and Technology,Science and Technology +398409,Science and Technology,Science and Technology +431675,Aboriginal Affairs,Aboriginal Affairs +414419,Science and Technology,Science and Technology +402134,Aboriginal Affairs,Aboriginal Affairs +416727,Arts and Culture,Arts and Culture +399075,Arts and Culture,Arts and Culture +399298,Telecommunications,Telecommunications +399301,Telecommunications,Telecommunications +399274,Science and Technology,Science and Technology +420676,Science and Technology,Science and Technology +420423,Aboriginal Affairs,Aboriginal Affairs +399298,Aboriginal Affairs,Aboriginal Affairs +399301,Aboriginal Affairs,Aboriginal Affairs +401376,Science and Technology,Science and Technology +402250,Science and Technology,Science and Technology +419507,Aboriginal Affairs,Aboriginal Affairs +409854,Aboriginal Affairs,Aboriginal Affairs +403081,Aboriginal Affairs,Aboriginal Affairs +403443,Telecommunications,Telecommunications +461746,Science and Technology,Science and Technology +455599,Broadcasting,Broadcasting +402299,Aboriginal Affairs,Aboriginal Affairs +426951,Aboriginal Affairs,Aboriginal Affairs +509456,Aboriginal Affairs,Aboriginal Affairs +506298,Aboriginal Affairs,Aboriginal Affairs +422781,Aboriginal Affairs,Aboriginal Affairs +417034,Telecommunications,Telecommunications +417034,Science and Technology,Science and Technology +403364,Aboriginal Affairs,Aboriginal Affairs +405328,Science and Technology,Science and Technology +412173,Aboriginal Affairs,Aboriginal Affairs +405645,Aboriginal Affairs,Aboriginal Affairs +402135,Aboriginal Affairs,Aboriginal Affairs +401063,Aboriginal Affairs,Aboriginal Affairs +401072,Aboriginal Affairs,Aboriginal Affairs +401076,Aboriginal Affairs,Aboriginal Affairs +401077,Aboriginal Affairs,Aboriginal Affairs +401508,Aboriginal Affairs,Aboriginal Affairs +403916,Aboriginal Affairs,Aboriginal Affairs +403662,Aboriginal Affairs,Aboriginal Affairs +401537,Science and Technology,Science and Technology +522415,Science and Technology,Sciences et technologies +417402,Arts and Culture,Arts and Culture +414135,Broadcasting,Broadcasting +412309,Telecommunications,Telecommunications +405990,Science and Technology,Science and Technology +410484,Aboriginal Affairs,Aboriginal Affairs +422397,Arts and Culture,Arts and Culture +509055,Broadcasting,Broadcasting +455511,Telecommunications,Telecommunications +408377,Science and Technology,Science and Technology +410241,Arts and Culture,Arts and Culture +407817,Broadcasting,Broadcasting +445720,Telecommunications,Telecommunications +542438,Broadcasting,Broadcasting +406500,Telecommunications,Telecommunications +413220,Science and Technology,Science and Technology +401746,Science and Technology,Science and Technology +407241,Science and Technology,Sciences et technologies +424452,Telecommunications,Telecommunications +409555,Science and Technology,Science and Technology +404221,Aboriginal Affairs,Aboriginal Affairs +466148,Telecommunications,Telecommunications +405315,Science and Technology,Science and Technology +441005,Science and Technology,Science and Technology +406401,Aboriginal Affairs,Aboriginal Affairs +402244,Science and Technology,Science and Technology +402245,Science and Technology,Science and Technology +419508,Science and Technology,Science and Technology +405356,Aboriginal Affairs,Aboriginal Affairs +405465,Telecommunications,Telecommunications +499296,Aboriginal Affairs,Aboriginal Affairs +445801,Science and Technology,Science and Technology +450557,Science and Technology,Science and Technology +405362,Aboriginal Affairs,Aboriginal Affairs +406330,Science and Technology,Science and Technology +404637,Telecommunications,Telecommunications +418445,Science and Technology,Science and Technology +406411,Science and Technology,Science and Technology +408661,Telecommunications,Telecommunications +404382,Telecommunications,Telecommunications +426600,Aboriginal Affairs,Aboriginal Affairs +464512,Science and Technology,Science and Technology +404247,Science and Technology,Science and Technology +534015,Science and Technology,Science and Technology +475648,Arts and Culture,Arts and Culture +467779,Arts and Culture,Arts and Culture +437598,Arts and Culture,Arts and Culture +475644,Arts and Culture,Arts and Culture +467523,Arts and Culture,Arts and Culture +437591,Arts and Culture,Arts and Culture +440662,Telecommunications,Telecommunications +437600,Broadcasting,Broadcasting +404859,Aboriginal Affairs,Aboriginal Affairs +404362,Aboriginal Affairs,Aboriginal Affairs +411745,Science and Technology,Science and Technology +426559,Aboriginal Affairs,Aboriginal Affairs +405905,Science and Technology,Science and Technology +427031,Science and Technology,Science and Technology +429860,Science and Technology,Science and Technology +508833,Science and Technology,Science and Technology +408524,Broadcasting,Broadcasting +512290,Telecommunications,Telecommunications +527341,Aboriginal Affairs,Aboriginal Affairs +406348,Aboriginal Affairs,Aboriginal Affairs +422697,Arts and Culture,Arts and Culture +432751,Science and Technology,Science and Technology +411400,Broadcasting,Broadcasting +434779,Science and Technology,Science and Technology +431331,Science and Technology,Science and Technology +405102,Aboriginal Affairs,Aboriginal Affairs +406621,Aboriginal Affairs,Aboriginal Affairs +405186,Arts and Culture,Arts and Culture +405188,Arts and Culture,Arts and Culture +406622,Aboriginal Affairs,Aboriginal Affairs +405461,Aboriginal Affairs,Aboriginal Affairs +436070,Science and Technology,Science and Technology +510744,Aboriginal Affairs,Aboriginal Affairs +409630,Aboriginal Affairs,Aboriginal Affairs +419056,Science and Technology,Science and Technology +406838,Telecommunications,Telecommunications +408730,Aboriginal Affairs,Aboriginal Affairs +525855,Science and Technology,Science and Technology +411499,Aboriginal Affairs,Aboriginal Affairs +417540,Science and Technology,Science and Technology +407248,Science and Technology,Science and Technology +416299,Science and Technology,Science and Technology +406164,Aboriginal Affairs,Aboriginal Affairs +465348,Science and Technology,Science and Technology +423095,Science and Technology,Science and Technology +499393,Science and Technology,Science and Technology +408637,Science and Technology,Science and Technology +434341,Science and Technology,Science and Technology +415875,Science and Technology,Science and Technology +408930,Science and Technology,Science and Technology +420454,Aboriginal Affairs,Aboriginal Affairs +438296,Aboriginal Affairs,Aboriginal Affairs +445236,Science and Technology,Science and Technology +538970,Science and Technology,Science and Technology +413867,Aboriginal Affairs,Aboriginal Affairs +406852,Arts and Culture,Arts and Culture +441111,Science and Technology,Science and Technology +448609,Aboriginal Affairs,Aboriginal Affairs +434226,Arts and Culture,Arts and Culture +432898,Broadcasting,Broadcasting +410433,Science and Technology,Science and Technology +450284,Science and Technology,Science and Technology +408430,Broadcasting,Broadcasting +405961,Broadcasting,Broadcasting +434201,Broadcasting,Broadcasting +434059,Broadcasting,Broadcasting +433981,Broadcasting,Broadcasting +426173,Broadcasting,Broadcasting +425263,Broadcasting,Broadcasting +418703,Broadcasting,Broadcasting +417825,Broadcasting,Broadcasting +414149,Broadcasting,Broadcasting +434123,Science and Technology,Science and Technology +502416,Science and Technology,Science and Technology +405106,Aboriginal Affairs,Aboriginal Affairs +405315,Aboriginal Affairs,Aboriginal Affairs +405314,Aboriginal Affairs,Aboriginal Affairs +408861,Science and Technology,Science and Technology +504726,Aboriginal Affairs,Aboriginal Affairs +490988,Aboriginal Affairs,Aboriginal Affairs +521788,Aboriginal Affairs,Aboriginal Affairs +515478,Aboriginal Affairs,Aboriginal Affairs +409628,Aboriginal Affairs,Aboriginal Affairs +407683,Aboriginal Affairs,Aboriginal Affairs +435301,Aboriginal Affairs,Aboriginal Affairs +428489,Aboriginal Affairs,Aboriginal Affairs +428476,Aboriginal Affairs,Aboriginal Affairs +421540,Aboriginal Affairs,Aboriginal Affairs +419056,Aboriginal Affairs,Aboriginal Affairs +416557,Aboriginal Affairs,Aboriginal Affairs +415680,Aboriginal Affairs,Aboriginal Affairs +415677,Aboriginal Affairs,Aboriginal Affairs +412409,Aboriginal Affairs,Aboriginal Affairs +412406,Aboriginal Affairs,Aboriginal Affairs +419052,Science and Technology,Science and Technology +416557,Science and Technology,Science and Technology +447090,Science and Technology,Science and Technology +447084,Science and Technology,Science and Technology +435301,Science and Technology,Science and Technology +430812,Science and Technology,Science and Technology +428489,Science and Technology,Science and Technology +428476,Science and Technology,Science and Technology +426005,Science and Technology,Science and Technology +426002,Science and Technology,Science and Technology +426000,Science and Technology,Science and Technology +421540,Science and Technology,Science and Technology +408345,Aboriginal Affairs,Aboriginal Affairs +407138,Aboriginal Affairs,Aboriginal Affairs +517724,Science and Technology,Science and Technology +515617,Science and Technology,Science and Technology +407945,Science and Technology,Science and Technology +407942,Science and Technology,Science and Technology +407939,Science and Technology,Science and Technology +407938,Science and Technology,Science and Technology +407936,Science and Technology,Science and Technology +407929,Science and Technology,Science and Technology +407928,Science and Technology,Science and Technology +406225,Science and Technology,Science and Technology +508425,Science and Technology,Science and Technology +504638,Science and Technology,Science and Technology +498503,Science and Technology,Science and Technology +496168,Science and Technology,Science and Technology +496166,Science and Technology,Science and Technology +496162,Science and Technology,Science and Technology +487882,Science and Technology,Science and Technology +487878,Science and Technology,Science and Technology +483610,Science and Technology,Science and Technology +483605,Science and Technology,Science and Technology +483603,Science and Technology,Science and Technology +482413,Science and Technology,Science and Technology +482412,Science and Technology,Science and Technology +482409,Science and Technology,Science and Technology +479710,Science and Technology,Science and Technology +479706,Science and Technology,Science and Technology +479703,Science and Technology,Science and Technology +475053,Science and Technology,Science and Technology +475049,Science and Technology,Science and Technology +472996,Science and Technology,Science and Technology +472992,Science and Technology,Science and Technology +472987,Science and Technology,Science and Technology +470985,Science and Technology,Science and Technology +470974,Science and Technology,Science and Technology +467556,Science and Technology,Science and Technology +467550,Science and Technology,Science and Technology +467540,Science and Technology,Science and Technology +465038,Science and Technology,Science and Technology +465037,Science and Technology,Science and Technology +465036,Science and Technology,Science and Technology +461750,Science and Technology,Science and Technology +460600,Science and Technology,Science and Technology +459402,Science and Technology,Science and Technology +459401,Science and Technology,Science and Technology +455732,Science and Technology,Science and Technology +452326,Science and Technology,Science and Technology +452321,Science and Technology,Science and Technology +452319,Science and Technology,Science and Technology +452317,Science and Technology,Science and Technology +452315,Science and Technology,Science and Technology +452313,Science and Technology,Science and Technology +452310,Science and Technology,Science and Technology +452303,Science and Technology,Science and Technology +449656,Science and Technology,Science and Technology +449645,Science and Technology,Science and Technology +448046,Science and Technology,Science and Technology +448028,Science and Technology,Science and Technology +448024,Science and Technology,Science and Technology +446637,Science and Technology,Science and Technology +444995,Science and Technology,Science and Technology +443687,Science and Technology,Science and Technology +443683,Science and Technology,Science and Technology +441404,Science and Technology,Science and Technology +441399,Science and Technology,Science and Technology +438799,Science and Technology,Science and Technology +438798,Science and Technology,Science and Technology +438796,Science and Technology,Science and Technology +438795,Science and Technology,Science and Technology +438793,Science and Technology,Science and Technology +438782,Science and Technology,Science and Technology +438778,Science and Technology,Science and Technology +438774,Science and Technology,Science and Technology +438769,Science and Technology,Science and Technology +438761,Science and Technology,Science and Technology +435293,Science and Technology,Science and Technology +435276,Science and Technology,Science and Technology +435261,Science and Technology,Science and Technology +435255,Science and Technology,Science and Technology +433546,Science and Technology,Science and Technology +430199,Science and Technology,Science and Technology +430198,Science and Technology,Science and Technology +428877,Science and Technology,Science and Technology +428860,Science and Technology,Science and Technology +428844,Science and Technology,Science and Technology +428805,Science and Technology,Science and Technology +428785,Science and Technology,Science and Technology +419469,Science and Technology,Science and Technology +417778,Science and Technology,Science and Technology +412843,Science and Technology,Science and Technology +412832,Science and Technology,Science and Technology +412830,Science and Technology,Science and Technology +412827,Science and Technology,Science and Technology +412815,Science and Technology,Science and Technology +412811,Science and Technology,Science and Technology +412808,Science and Technology,Science and Technology +412802,Science and Technology,Science and Technology +412767,Science and Technology,Science and Technology +412741,Science and Technology,Science and Technology +412728,Science and Technology,Science and Technology +412713,Science and Technology,Science and Technology +409386,Science and Technology,Science and Technology +409384,Science and Technology,Science and Technology +409326,Science and Technology,Science and Technology +544028,Science and Technology,Science and Technology +539769,Science and Technology,Science and Technology +532400,Science and Technology,Science and Technology +530154,Science and Technology,Science and Technology +529399,Science and Technology,Science and Technology +525857,Science and Technology,Science and Technology +410992,Aboriginal Affairs,Aboriginal Affairs +406345,Science and Technology,Science and Technology +491008,Science and Technology,Science and Technology +439490,Science and Technology,Science and Technology +416298,Science and Technology,Science and Technology +416297,Science and Technology,Science and Technology +416301,Science and Technology,Science and Technology +416300,Science and Technology,Science and Technology +460797,Science and Technology,Science and Technology +443034,Science and Technology,Science and Technology +436607,Science and Technology,Science and Technology +432796,Science and Technology,Science and Technology +420487,Science and Technology,Science and Technology +418655,Science and Technology,Science and Technology +516546,Science and Technology,Science and Technology +516545,Science and Technology,Science and Technology +491946,Science and Technology,Science and Technology +486043,Science and Technology,Science and Technology +484658,Science and Technology,Science and Technology +465349,Science and Technology,Science and Technology +408981,Science and Technology,Science and Technology +408979,Science and Technology,Science and Technology +499358,Science and Technology,Science and Technology +415816,Science and Technology,Science and Technology +418731,Aboriginal Affairs,Aboriginal Affairs +410417,Aboriginal Affairs,Aboriginal Affairs +438295,Aboriginal Affairs,Aboriginal Affairs +438294,Aboriginal Affairs,Aboriginal Affairs +407080,Aboriginal Affairs,Aboriginal Affairs +481189,Aboriginal Affairs,Aboriginal Affairs +438297,Aboriginal Affairs,Aboriginal Affairs +467824,Science and Technology,Science and Technology +462514,Science and Technology,Science and Technology +461542,Science and Technology,Science and Technology +455326,Science and Technology,Science and Technology +534025,Science and Technology,Science and Technology +413865,Aboriginal Affairs,Aboriginal Affairs +441098,Science and Technology,Science and Technology +441097,Science and Technology,Science and Technology +438720,Science and Technology,Science and Technology +438718,Science and Technology,Science and Technology +438716,Science and Technology,Science and Technology +438714,Science and Technology,Science and Technology +438708,Science and Technology,Science and Technology +438703,Science and Technology,Science and Technology +438699,Science and Technology,Science and Technology +435795,Science and Technology,Science and Technology +435793,Science and Technology,Science and Technology +435791,Science and Technology,Science and Technology +435790,Science and Technology,Science and Technology +435789,Science and Technology,Science and Technology +435788,Science and Technology,Science and Technology +435787,Science and Technology,Science and Technology +435786,Science and Technology,Science and Technology +435784,Science and Technology,Science and Technology +435783,Science and Technology,Science and Technology +435781,Science and Technology,Science and Technology +435780,Science and Technology,Science and Technology +435779,Science and Technology,Science and Technology +435777,Science and Technology,Science and Technology +435775,Science and Technology,Science and Technology +435764,Science and Technology,Science and Technology +435761,Science and Technology,Science and Technology +435760,Science and Technology,Science and Technology +435758,Science and Technology,Science and Technology +423739,Science and Technology,Science and Technology +423738,Science and Technology,Science and Technology +423737,Science and Technology,Science and Technology +423736,Science and Technology,Science and Technology +423735,Science and Technology,Science and Technology +423734,Science and Technology,Science and Technology +423733,Science and Technology,Science and Technology +423732,Science and Technology,Science and Technology +423731,Science and Technology,Science and Technology +423730,Science and Technology,Science and Technology +423727,Science and Technology,Science and Technology +423725,Science and Technology,Science and Technology +423723,Science and Technology,Science and Technology +421569,Science and Technology,Science and Technology +421567,Science and Technology,Science and Technology +421565,Science and Technology,Science and Technology +421562,Science and Technology,Science and Technology +421561,Science and Technology,Science and Technology +421560,Science and Technology,Science and Technology +419627,Science and Technology,Science and Technology +419626,Science and Technology,Science and Technology +419624,Science and Technology,Science and Technology +419617,Science and Technology,Science and Technology +419615,Science and Technology,Science and Technology +419614,Science and Technology,Science and Technology +419613,Science and Technology,Science and Technology +419611,Science and Technology,Science and Technology +418123,Science and Technology,Science and Technology +418122,Science and Technology,Science and Technology +418120,Science and Technology,Science and Technology +418119,Science and Technology,Science and Technology +418116,Science and Technology,Science and Technology +418112,Science and Technology,Science and Technology +418108,Science and Technology,Science and Technology +415408,Science and Technology,Science and Technology +415406,Science and Technology,Science and Technology +415405,Science and Technology,Science and Technology +415403,Science and Technology,Science and Technology +415398,Science and Technology,Science and Technology +415396,Science and Technology,Science and Technology +415395,Science and Technology,Science and Technology +415392,Science and Technology,Science and Technology +415390,Science and Technology,Science and Technology +415389,Science and Technology,Science and Technology +415384,Science and Technology,Science and Technology +415380,Science and Technology,Science and Technology +415376,Science and Technology,Science and Technology +415375,Science and Technology,Science and Technology +412800,Science and Technology,Science and Technology +412798,Science and Technology,Science and Technology +412794,Science and Technology,Science and Technology +412791,Science and Technology,Science and Technology +412787,Science and Technology,Science and Technology +412785,Science and Technology,Science and Technology +412784,Science and Technology,Science and Technology +412783,Science and Technology,Science and Technology +412780,Science and Technology,Science and Technology +412779,Science and Technology,Science and Technology +412777,Science and Technology,Science and Technology +412775,Science and Technology,Science and Technology +412772,Science and Technology,Science and Technology +412764,Science and Technology,Science and Technology +412761,Science and Technology,Science and Technology +412760,Science and Technology,Science and Technology +412757,Science and Technology,Science and Technology +412755,Science and Technology,Science and Technology +412753,Science and Technology,Science and Technology +412752,Science and Technology,Science and Technology +412748,Science and Technology,Science and Technology +412740,Science and Technology,Science and Technology +412738,Science and Technology,Science and Technology +412734,Science and Technology,Science and Technology +412729,Science and Technology,Science and Technology +412723,Science and Technology,Science and Technology +412722,Science and Technology,Science and Technology +412719,Science and Technology,Science and Technology +412716,Science and Technology,Science and Technology +412698,Science and Technology,Science and Technology +410456,Science and Technology,Science and Technology +409789,Science and Technology,Science and Technology +409777,Science and Technology,Science and Technology +541671,Science and Technology,Science and Technology +540064,Science and Technology,Science and Technology +537932,Science and Technology,Science and Technology +537930,Science and Technology,Science and Technology +537928,Science and Technology,Science and Technology +537927,Science and Technology,Science and Technology +537925,Science and Technology,Science and Technology +537924,Science and Technology,Science and Technology +534888,Science and Technology,Science and Technology +534886,Science and Technology,Science and Technology +534880,Science and Technology,Science and Technology +534871,Science and Technology,Science and Technology +534866,Science and Technology,Science and Technology +519133,Science and Technology,Science and Technology +517095,Science and Technology,Science and Technology +517094,Science and Technology,Science and Technology +515529,Science and Technology,Science and Technology +513997,Science and Technology,Science and Technology +513996,Science and Technology,Science and Technology +512334,Science and Technology,Science and Technology +512333,Science and Technology,Science and Technology +512332,Science and Technology,Science and Technology +512331,Science and Technology,Science and Technology +510334,Science and Technology,Science and Technology +510332,Science and Technology,Science and Technology +510330,Science and Technology,Science and Technology +507103,Science and Technology,Science and Technology +504094,Science and Technology,Science and Technology +504093,Science and Technology,Science and Technology +504092,Science and Technology,Science and Technology +501560,Science and Technology,Science and Technology +501559,Science and Technology,Science and Technology +498314,Science and Technology,Science and Technology +495434,Science and Technology,Science and Technology +490784,Science and Technology,Science and Technology +490776,Science and Technology,Science and Technology +486399,Science and Technology,Science and Technology +486398,Science and Technology,Science and Technology +486397,Science and Technology,Science and Technology +486395,Science and Technology,Science and Technology +481753,Science and Technology,Science and Technology +480239,Science and Technology,Science and Technology +480236,Science and Technology,Science and Technology +480235,Science and Technology,Science and Technology +480234,Science and Technology,Science and Technology +480224,Science and Technology,Science and Technology +477222,Science and Technology,Science and Technology +476019,Science and Technology,Science and Technology +469884,Science and Technology,Science and Technology +460689,Science and Technology,Science and Technology +459472,Science and Technology,Science and Technology +459471,Science and Technology,Science and Technology +455816,Science and Technology,Science and Technology +452881,Science and Technology,Science and Technology +452880,Science and Technology,Science and Technology +452878,Science and Technology,Science and Technology +452876,Science and Technology,Science and Technology +452874,Science and Technology,Science and Technology +452873,Science and Technology,Science and Technology +452871,Science and Technology,Science and Technology +452869,Science and Technology,Science and Technology +452868,Science and Technology,Science and Technology +452867,Science and Technology,Science and Technology +452866,Science and Technology,Science and Technology +452862,Science and Technology,Science and Technology +452860,Science and Technology,Science and Technology +452857,Science and Technology,Science and Technology +452853,Science and Technology,Science and Technology +450081,Science and Technology,Science and Technology +447881,Science and Technology,Science and Technology +445281,Science and Technology,Science and Technology +443685,Science and Technology,Science and Technology +443682,Science and Technology,Science and Technology +441119,Science and Technology,Science and Technology +441118,Science and Technology,Science and Technology +441117,Science and Technology,Science and Technology +417412,Aboriginal Affairs,Aboriginal Affairs +432898,Arts and Culture,Arts and Culture +417412,Arts and Culture,Arts and Culture +478112,Arts and Culture,Arts and Culture +463182,Arts and Culture,Arts and Culture +461695,Arts and Culture,Arts and Culture +448609,Arts and Culture,Arts and Culture +446098,Arts and Culture,Arts and Culture +445863,Arts and Culture,Arts and Culture +410432,Science and Technology,Science and Technology +416473,Constitutional Issues,Constitutional Issues +416470,Constitutional Issues,Constitutional Issues +416477,Constitutional Issues,Constitutional Issues +408472,Justice and Law Enforcement,Justice and Law Enforcement +408471,Justice and Law Enforcement,Justice and Law Enforcement +408470,Justice and Law Enforcement,Justice and Law Enforcement +429813,Justice and Law Enforcement,Justice and Law Enforcement +416477,Justice and Law Enforcement,Justice and Law Enforcement +416474,Justice and Law Enforcement,Justice and Law Enforcement +416473,Justice and Law Enforcement,Justice and Law Enforcement +416470,Justice and Law Enforcement,Justice and Law Enforcement +411054,Justice and Law Enforcement,Justice and Law Enforcement +480546,Labour,Labour +479441,Labour,Labour +406987,Labour,Labour +520871,Labour,Labour +514921,Labour,Labour +509436,Labour,Labour +496772,Labour,Labour +496660,Labour,Labour +496659,Labour,Labour +496658,Labour,Labour +496429,Labour,Labour +496428,Labour,Labour +496423,Labour,Labour +494605,Labour,Labour +494602,Labour,Labour +494596,Labour,Labour +494593,Labour,Labour +484211,Labour,Labour +484209,Labour,Labour +483931,Labour,Labour +481827,Labour,Labour +481116,Labour,Labour +481114,Labour,Labour +407161,Transportation,Transportation +407161,International Trade,International Trade +445371,Research and Development,Research and Development +415860,Research and Development,Research and Development +415860,Taxation and Finance,Taxation and Finance +505132,Taxation and Finance,Taxation and Finance +453657,Taxation and Finance,Taxation and Finance +415860,Small Business,Small Business +453657,Small Business,Small Business +453657,Industry,Industry +445371,Industry,Industry +414067,Security,Security +408468,Government Procurement,Government Procurement +450081,Economic Development,Economic Development +447881,Economic Development,Economic Development +445281,Economic Development,Economic Development +443685,Economic Development,Economic Development +443682,Economic Development,Economic Development +441119,Economic Development,Economic Development +441118,Economic Development,Economic Development +441117,Economic Development,Economic Development +441111,Economic Development,Economic Development +441098,Economic Development,Economic Development +441097,Economic Development,Economic Development +438720,Economic Development,Economic Development +438718,Economic Development,Economic Development +438716,Economic Development,Economic Development +438714,Economic Development,Economic Development +438708,Economic Development,Economic Development +438703,Economic Development,Economic Development +438699,Economic Development,Economic Development +435795,Economic Development,Economic Development +435793,Economic Development,Economic Development +435791,Economic Development,Economic Development +435790,Economic Development,Economic Development +435789,Economic Development,Economic Development +435788,Economic Development,Economic Development +435787,Economic Development,Economic Development +435786,Economic Development,Economic Development +435784,Economic Development,Economic Development +435783,Economic Development,Economic Development +435781,Economic Development,Economic Development +435780,Economic Development,Economic Development +435779,Economic Development,Economic Development +435777,Economic Development,Economic Development +435775,Economic Development,Economic Development +435764,Economic Development,Economic Development +435761,Economic Development,Economic Development +435760,Economic Development,Economic Development +435758,Economic Development,Economic Development +423739,Economic Development,Economic Development +423738,Economic Development,Economic Development +423737,Economic Development,Economic Development +423736,Economic Development,Economic Development +423735,Economic Development,Economic Development +423734,Economic Development,Economic Development +423733,Economic Development,Economic Development +423732,Economic Development,Economic Development +423731,Economic Development,Economic Development +423730,Economic Development,Economic Development +423727,Economic Development,Economic Development +423725,Economic Development,Economic Development +423723,Economic Development,Economic Development +421569,Economic Development,Economic Development +421567,Economic Development,Economic Development +421565,Economic Development,Economic Development +421562,Economic Development,Economic Development +421561,Economic Development,Economic Development +421560,Economic Development,Economic Development +419627,Economic Development,Economic Development +419626,Economic Development,Economic Development +419624,Economic Development,Economic Development +419617,Economic Development,Economic Development +419615,Economic Development,Economic Development +419614,Economic Development,Economic Development +419613,Economic Development,Economic Development +419611,Economic Development,Economic Development +418123,Economic Development,Economic Development +418122,Economic Development,Economic Development +418120,Economic Development,Economic Development +418119,Economic Development,Economic Development +418116,Economic Development,Economic Development +418112,Economic Development,Economic Development +418108,Economic Development,Economic Development +415408,Economic Development,Economic Development +415406,Economic Development,Economic Development +415405,Economic Development,Economic Development +415403,Economic Development,Economic Development +415398,Economic Development,Economic Development +415396,Economic Development,Economic Development +415395,Economic Development,Economic Development +415392,Economic Development,Economic Development +415390,Economic Development,Economic Development +415389,Economic Development,Economic Development +415384,Economic Development,Economic Development +415380,Economic Development,Economic Development +415376,Economic Development,Economic Development +415375,Economic Development,Economic Development +412800,Economic Development,Economic Development +412798,Economic Development,Economic Development +412794,Economic Development,Economic Development +412791,Economic Development,Economic Development +412787,Economic Development,Economic Development +412785,Economic Development,Economic Development +412784,Economic Development,Economic Development +412783,Economic Development,Economic Development +412780,Economic Development,Economic Development +412779,Economic Development,Economic Development +412777,Economic Development,Economic Development +412775,Economic Development,Economic Development +412772,Economic Development,Economic Development +412764,Economic Development,Economic Development +412761,Economic Development,Economic Development +412760,Economic Development,Economic Development +412757,Economic Development,Economic Development +412755,Economic Development,Economic Development +412753,Economic Development,Economic Development +412752,Economic Development,Economic Development +412748,Economic Development,Economic Development +412740,Economic Development,Economic Development +412738,Economic Development,Economic Development +412734,Economic Development,Economic Development +412729,Economic Development,Economic Development +412723,Economic Development,Economic Development +412722,Economic Development,Economic Development +412719,Economic Development,Economic Development +412716,Economic Development,Economic Development +412698,Economic Development,Economic Development +410456,Economic Development,Economic Development +409789,Economic Development,Economic Development +409777,Economic Development,Economic Development +541671,Economic Development,Economic Development +540064,Economic Development,Economic Development +537932,Economic Development,Economic Development +537930,Economic Development,Economic Development +537928,Economic Development,Economic Development +537927,Economic Development,Economic Development +537925,Economic Development,Economic Development +537924,Economic Development,Economic Development +534888,Economic Development,Economic Development +534886,Economic Development,Economic Development +534880,Economic Development,Economic Development +534871,Economic Development,Economic Development +534866,Economic Development,Economic Development +519133,Economic Development,Economic Development +517095,Economic Development,Economic Development +517094,Economic Development,Economic Development +515529,Economic Development,Economic Development +513997,Economic Development,Economic Development +513996,Economic Development,Economic Development +512334,Economic Development,Economic Development +512333,Economic Development,Economic Development +512332,Economic Development,Economic Development +512331,Economic Development,Economic Development +510334,Economic Development,Economic Development +510332,Economic Development,Economic Development +510330,Economic Development,Economic Development +507103,Economic Development,Economic Development +504094,Economic Development,Economic Development +504093,Economic Development,Economic Development +504092,Economic Development,Economic Development +501560,Economic Development,Economic Development +501559,Economic Development,Economic Development +498314,Economic Development,Economic Development +495434,Economic Development,Economic Development +490784,Economic Development,Economic Development +490776,Economic Development,Economic Development +486399,Economic Development,Economic Development +486398,Economic Development,Economic Development +486397,Economic Development,Economic Development +486395,Economic Development,Economic Development +481753,Economic Development,Economic Development +480239,Economic Development,Economic Development +480236,Economic Development,Economic Development +480235,Economic Development,Economic Development +480234,Economic Development,Economic Development +480224,Economic Development,Economic Development +477222,Economic Development,Economic Development +476019,Economic Development,Economic Development +469884,Economic Development,Economic Development +460689,Economic Development,Economic Development +459472,Economic Development,Economic Development +459471,Economic Development,Economic Development +455816,Economic Development,Economic Development +452881,Economic Development,Economic Development +452880,Economic Development,Economic Development +452878,Economic Development,Economic Development +452876,Economic Development,Economic Development +452874,Economic Development,Economic Development +452873,Economic Development,Economic Development +452871,Economic Development,Economic Development +452869,Economic Development,Economic Development +452868,Economic Development,Economic Development +452867,Economic Development,Economic Development +452866,Economic Development,Economic Development +452862,Economic Development,Economic Development +452860,Economic Development,Economic Development +452857,Economic Development,Economic Development +534871,Health,Health +534866,Health,Health +412748,Health,Health +412740,Health,Health +412738,Health,Health +412734,Health,Health +412729,Health,Health +412723,Health,Health +412722,Health,Health +412719,Health,Health +412716,Health,Health +412698,Health,Health +410456,Health,Health +409789,Health,Health +409777,Health,Health +450081,Health,Health +447881,Health,Health +445281,Health,Health +443685,Health,Health +443682,Health,Health +441119,Health,Health +441118,Health,Health +441117,Health,Health +441111,Health,Health +441098,Health,Health +441097,Health,Health +438720,Health,Health +438718,Health,Health +438716,Health,Health +438714,Health,Health +438708,Health,Health +438703,Health,Health +438699,Health,Health +435795,Health,Health +435793,Health,Health +435791,Health,Health +435790,Health,Health +435789,Health,Health +435788,Health,Health +435787,Health,Health +435786,Health,Health +435784,Health,Health +435783,Health,Health +435781,Health,Health +435780,Health,Health +435779,Health,Health +435777,Health,Health +435775,Health,Health +435764,Health,Health +435761,Health,Health +435760,Health,Health +435758,Health,Health +423739,Health,Health +423738,Health,Health +423737,Health,Health +423736,Health,Health +423735,Health,Health +423734,Health,Health +423733,Health,Health +423732,Health,Health +423731,Health,Health +423730,Health,Health +423727,Health,Health +423725,Health,Health +423723,Health,Health +421569,Health,Health +421567,Health,Health +421565,Health,Health +421562,Health,Health +421561,Health,Health +421560,Health,Health +419627,Health,Health +419626,Health,Health +419624,Health,Health +419617,Health,Health +419615,Health,Health +419614,Health,Health +419613,Health,Health +419611,Health,Health +418123,Health,Health +418122,Health,Health +418120,Health,Health +418119,Health,Health +418116,Health,Health +418112,Health,Health +418108,Health,Health +415408,Health,Health +415406,Health,Health +415405,Health,Health +415403,Health,Health +415398,Health,Health +415396,Health,Health +415395,Health,Health +415392,Health,Health +415390,Health,Health +415389,Health,Health +415384,Health,Health +415380,Health,Health +415376,Health,Health +415375,Health,Health +412800,Health,Health +412798,Health,Health +412794,Health,Health +412791,Health,Health +412787,Health,Health +412785,Health,Health +412784,Health,Health +412783,Health,Health +412780,Health,Health +412779,Health,Health +412777,Health,Health +412775,Health,Health +412772,Health,Health +412764,Health,Health +412761,Health,Health +412760,Health,Health +412757,Health,Health +412755,Health,Health +412753,Health,Health +412752,Health,Health +519133,Health,Health +517095,Health,Health +517094,Health,Health +515529,Health,Health +513997,Health,Health +513996,Health,Health +512334,Health,Health +512333,Health,Health +512332,Health,Health +512331,Health,Health +510334,Health,Health +510332,Health,Health +510330,Health,Health +507103,Health,Health +504094,Health,Health +504093,Health,Health +504092,Health,Health +501560,Health,Health +501559,Health,Health +498314,Health,Health +495434,Health,Health +490784,Health,Health +490776,Health,Health +486399,Health,Health +486398,Health,Health +486397,Health,Health +486395,Health,Health +481753,Health,Health +480239,Health,Health +480236,Health,Health +480235,Health,Health +480234,Health,Health +480224,Health,Health +477222,Health,Health +476019,Health,Health +469884,Health,Health +460689,Health,Health +459472,Health,Health +459471,Health,Health +455816,Health,Health +452881,Health,Health +452880,Health,Health +452878,Health,Health +452876,Health,Health +452874,Health,Health +452873,Health,Health +452871,Health,Health +452869,Health,Health +452868,Health,Health +452867,Health,Health +452866,Health,Health +452862,Health,Health +452860,Health,Health +452857,Health,Health +452853,Health,Health +541671,Health,Health +540064,Health,Health +537932,Health,Health +537930,Health,Health +537928,Health,Health +537927,Health,Health +537925,Health,Health +537924,Health,Health +534888,Health,Health +534886,Health,Health +534866,Research and Development,Research and Development +519133,Research and Development,Research and Development +415405,Research and Development,Research and Development +415403,Research and Development,Research and Development +415398,Research and Development,Research and Development +415396,Research and Development,Research and Development +415395,Research and Development,Research and Development +415392,Research and Development,Research and Development +415390,Research and Development,Research and Development +415389,Research and Development,Research and Development +415384,Research and Development,Research and Development +415380,Research and Development,Research and Development +415376,Research and Development,Research and Development +415375,Research and Development,Research and Development +412800,Research and Development,Research and Development +412798,Research and Development,Research and Development +412794,Research and Development,Research and Development +412791,Research and Development,Research and Development +412787,Research and Development,Research and Development +412785,Research and Development,Research and Development +412784,Research and Development,Research and Development +412783,Research and Development,Research and Development +412780,Research and Development,Research and Development +412779,Research and Development,Research and Development +412777,Research and Development,Research and Development +412775,Research and Development,Research and Development +412772,Research and Development,Research and Development +412764,Research and Development,Research and Development +412761,Research and Development,Research and Development +412760,Research and Development,Research and Development +412757,Research and Development,Research and Development +412755,Research and Development,Research and Development +412753,Research and Development,Research and Development +412752,Research and Development,Research and Development +412748,Research and Development,Research and Development +412740,Research and Development,Research and Development +412738,Research and Development,Research and Development +412734,Research and Development,Research and Development +412729,Research and Development,Research and Development +412723,Research and Development,Research and Development +412722,Research and Development,Research and Development +412719,Research and Development,Research and Development +412716,Research and Development,Research and Development +412698,Research and Development,Research and Development +410456,Research and Development,Research and Development +409789,Research and Development,Research and Development +409777,Research and Development,Research and Development +517095,Research and Development,Research and Development +517094,Research and Development,Research and Development +515529,Research and Development,Research and Development +513997,Research and Development,Research and Development +513996,Research and Development,Research and Development +512334,Research and Development,Research and Development +512333,Research and Development,Research and Development +512332,Research and Development,Research and Development +512331,Research and Development,Research and Development +510334,Research and Development,Research and Development +510332,Research and Development,Research and Development +510330,Research and Development,Research and Development +507103,Research and Development,Research and Development +504094,Research and Development,Research and Development +504093,Research and Development,Research and Development +504092,Research and Development,Research and Development +501560,Research and Development,Research and Development +501559,Research and Development,Research and Development +498314,Research and Development,Research and Development +495434,Research and Development,Research and Development +490784,Research and Development,Research and Development +490776,Research and Development,Research and Development +486399,Research and Development,Research and Development +486398,Research and Development,Research and Development +486397,Research and Development,Research and Development +486395,Research and Development,Research and Development +481753,Research and Development,Research and Development +480239,Research and Development,Research and Development +480236,Research and Development,Research and Development +480235,Research and Development,Research and Development +480234,Research and Development,Research and Development +480224,Research and Development,Research and Development +477222,Research and Development,Research and Development +476019,Research and Development,Research and Development +469884,Research and Development,Research and Development +460689,Research and Development,Research and Development +459472,Research and Development,Research and Development +459471,Research and Development,Research and Development +455816,Research and Development,Research and Development +452881,Research and Development,Research and Development +452880,Research and Development,Research and Development +452878,Research and Development,Research and Development +452876,Research and Development,Research and Development +452874,Research and Development,Research and Development +452873,Research and Development,Research and Development +452871,Research and Development,Research and Development +452869,Research and Development,Research and Development +452868,Research and Development,Research and Development +452867,Research and Development,Research and Development +452866,Research and Development,Research and Development +452862,Research and Development,Research and Development +452860,Research and Development,Research and Development +452857,Research and Development,Research and Development +452853,Research and Development,Research and Development +450081,Research and Development,Research and Development +447881,Research and Development,Research and Development +445281,Research and Development,Research and Development +443685,Research and Development,Research and Development +443682,Research and Development,Research and Development +441119,Research and Development,Research and Development +441118,Research and Development,Research and Development +441117,Research and Development,Research and Development +441111,Research and Development,Research and Development +441098,Research and Development,Research and Development +441097,Research and Development,Research and Development +438720,Research and Development,Research and Development +438718,Research and Development,Research and Development +438716,Research and Development,Research and Development +438714,Research and Development,Research and Development +438708,Research and Development,Research and Development +438703,Research and Development,Research and Development +438699,Research and Development,Research and Development +435795,Research and Development,Research and Development +435793,Research and Development,Research and Development +435791,Research and Development,Research and Development +435790,Research and Development,Research and Development +435789,Research and Development,Research and Development +435788,Research and Development,Research and Development +435787,Research and Development,Research and Development +435786,Research and Development,Research and Development +435784,Research and Development,Research and Development +435783,Research and Development,Research and Development +435781,Research and Development,Research and Development +435780,Research and Development,Research and Development +435779,Research and Development,Research and Development +435777,Research and Development,Research and Development +435775,Research and Development,Research and Development +435764,Research and Development,Research and Development +435761,Research and Development,Research and Development +435760,Research and Development,Research and Development +435758,Research and Development,Research and Development +423739,Research and Development,Research and Development +423738,Research and Development,Research and Development +423737,Research and Development,Research and Development +423736,Research and Development,Research and Development +423735,Research and Development,Research and Development +423734,Research and Development,Research and Development +423733,Research and Development,Research and Development +423732,Research and Development,Research and Development +423731,Research and Development,Research and Development +423730,Research and Development,Research and Development +423727,Research and Development,Research and Development +423725,Research and Development,Research and Development +423723,Research and Development,Research and Development +421569,Research and Development,Research and Development +421567,Research and Development,Research and Development +421565,Research and Development,Research and Development +421562,Research and Development,Research and Development +421561,Research and Development,Research and Development +421560,Research and Development,Research and Development +419627,Research and Development,Research and Development +419626,Research and Development,Research and Development +419624,Research and Development,Research and Development +419617,Research and Development,Research and Development +419615,Research and Development,Research and Development +419614,Research and Development,Research and Development +419613,Research and Development,Research and Development +419611,Research and Development,Research and Development +418123,Research and Development,Research and Development +418122,Research and Development,Research and Development +418120,Research and Development,Research and Development +418119,Research and Development,Research and Development +418116,Research and Development,Research and Development +418112,Research and Development,Research and Development +418108,Research and Development,Research and Development +415408,Research and Development,Research and Development +415406,Research and Development,Research and Development +541671,Research and Development,Research and Development +540064,Research and Development,Research and Development +537932,Research and Development,Research and Development +537930,Research and Development,Research and Development +537928,Research and Development,Research and Development +537927,Research and Development,Research and Development +537925,Research and Development,Research and Development +537924,Research and Development,Research and Development +534888,Research and Development,Research and Development +534886,Research and Development,Research and Development +534880,Research and Development,Research and Development +413588,Environment,Environment +413523,Environment,Environment +413596,Environment,Environment +417412,Budget,Budget +458602,Budget,Budget +434226,Budget,Budget +417412,Economic Development,Economic Development +478112,Economic Development,Economic Development +461695,Economic Development,Economic Development +458602,Economic Development,Economic Development +448609,Economic Development,Economic Development +446098,Economic Development,Economic Development +445863,Economic Development,Economic Development +448609,Industry,Industry +432898,Industry,Industry +463182,Industry,Industry +432898,Infrastructure,Infrastructure +432898,Tourism,Tourism +463182,Tourism,Tourism +461695,Tourism,Tourism +458602,Tourism,Tourism +448609,Tourism,Tourism +446098,Tourism,Tourism +489858,Regional Development,Regional Development +489857,Regional Development,Regional Development +433258,Regional Development,Regional Development +431789,Regional Development,Regional Development +430245,Regional Development,Regional Development +417530,Regional Development,Regional Development +509506,Regional Development,Regional Development +506560,Regional Development,Regional Development +408264,Infrastructure,Infrastructure +407079,Infrastructure,Infrastructure +430974,Housing,Housing +427609,Housing,Housing +409048,Research and Development,Recherche et développement +409047,Research and Development,Recherche et développement +417911,Research and Development,Recherche et développement +412088,Research and Development,Recherche et développement +412083,Research and Development,Recherche et développement +408653,Health,Health +410433,Regional Development,Regional Development +410432,Regional Development,Regional Development +410433,Small Business,Small Business +410432,Small Business,Small Business +410433,Industry,Industry +410432,Industry,Industry +416685,Consumer Issues,Consumer Issues +416681,Consumer Issues,Consumer Issues +410320,Financial Institutions,Financial Institutions +541417,Financial Institutions,Financial Institutions +460589,Financial Institutions,Financial Institutions +459578,Financial Institutions,Financial Institutions +421965,Financial Institutions,Financial Institutions +416690,Financial Institutions,Financial Institutions +416685,Financial Institutions,Financial Institutions +416681,Financial Institutions,Financial Institutions +412924,Financial Institutions,Financial Institutions +412921,Financial Institutions,Financial Institutions +410322,Financial Institutions,Financial Institutions +410321,Industry,Industry +410320,Industry,Industry +416690,Industry,Industry +416685,Industry,Industry +416681,Industry,Industry +416685,Privacy and Access to Information,Privacy and Access to Information +416681,Privacy and Access to Information,Privacy and Access to Information +410321,Taxation and Finance,Taxation and Finance +410320,Taxation and Finance,Taxation and Finance +416690,Taxation and Finance,Taxation and Finance +416685,Taxation and Finance,Taxation and Finance +416681,Taxation and Finance,Taxation and Finance +412924,Taxation and Finance,Taxation and Finance +412921,Taxation and Finance,Taxation and Finance +407821,Economic Development,Economic Development +407821,Infrastructure,Infrastructure +431636,Government Procurement,Government Procurement +417680,Employment and Training,Employment and Training +407122,Employment and Training,Employment and Training +442214,Employment and Training,Employment and Training +407150,Agriculture,Agriculture +408345,Economic Development,Economic Development +407138,Economic Development,Economic Development +408345,Health,Health +407138,Health,Health +408319,Transportation,Transportation +408318,Transportation,Transportation +466957,Transportation,Transportation +466952,Transportation,Transportation +466948,Transportation,Transportation +466947,Transportation,Transportation +466945,Transportation,Transportation +466941,Transportation,Transportation +462735,Transportation,Transportation +462698,Transportation,Transportation +462695,Transportation,Transportation +462692,Transportation,Transportation +462690,Transportation,Transportation +462689,Transportation,Transportation +458666,Transportation,Transportation +458664,Transportation,Transportation +452185,Transportation,Transportation +452178,Transportation,Transportation +452176,Transportation,Transportation +452149,Transportation,Transportation +452145,Transportation,Transportation +452098,Transportation,Transportation +448648,Transportation,Transportation +448647,Transportation,Transportation +446488,Transportation,Transportation +446487,Transportation,Transportation +446485,Transportation,Transportation +444563,Transportation,Transportation +444558,Transportation,Transportation +443433,Transportation,Transportation +443326,Transportation,Transportation +443325,Transportation,Transportation +440929,Transportation,Transportation +440927,Transportation,Transportation +440926,Transportation,Transportation +440925,Transportation,Transportation +440924,Transportation,Transportation +440922,Transportation,Transportation +439789,Transportation,Transportation +439787,Transportation,Transportation +439786,Transportation,Transportation +439785,Transportation,Transportation +439784,Transportation,Transportation +439783,Transportation,Transportation +431340,Transportation,Transportation +431338,Transportation,Transportation +429048,Transportation,Transportation +429034,Transportation,Transportation +429032,Transportation,Transportation +429022,Transportation,Transportation +427080,Transportation,Transportation +427078,Transportation,Transportation +420350,Transportation,Transportation +413748,Transportation,Transportation +429032,Environment,Environment +429022,Environment,Environment +427080,Environment,Environment +427078,Environment,Environment +420350,Environment,Environment +413748,Environment,Environment +408319,Environment,Environment +466952,Environment,Environment +466948,Environment,Environment +466947,Environment,Environment +466945,Environment,Environment +462735,Environment,Environment +462698,Environment,Environment +462695,Environment,Environment +462692,Environment,Environment +462690,Environment,Environment +462689,Environment,Environment +452178,Environment,Environment +452176,Environment,Environment +452098,Environment,Environment +448647,Environment,Environment +446488,Environment,Environment +446487,Environment,Environment +446485,Environment,Environment +440929,Environment,Environment +440927,Environment,Environment +440926,Environment,Environment +440924,Environment,Environment +439789,Environment,Environment +431338,Environment,Environment +444563,Economic Development,Economic Development +444558,Economic Development,Economic Development +443433,Economic Development,Economic Development +443326,Economic Development,Economic Development +443325,Economic Development,Economic Development +440929,Economic Development,Economic Development +440927,Economic Development,Economic Development +440926,Economic Development,Economic Development +440925,Economic Development,Economic Development +440924,Economic Development,Economic Development +440922,Economic Development,Economic Development +439789,Economic Development,Economic Development +439787,Economic Development,Economic Development +439786,Economic Development,Economic Development +439785,Economic Development,Economic Development +439784,Economic Development,Economic Development +439783,Economic Development,Economic Development +431340,Economic Development,Economic Development +431338,Economic Development,Economic Development +429048,Economic Development,Economic Development +429034,Economic Development,Economic Development +429032,Economic Development,Economic Development +429022,Economic Development,Economic Development +427080,Economic Development,Economic Development +427078,Economic Development,Economic Development +420350,Economic Development,Economic Development +413748,Economic Development,Economic Development +408320,Economic Development,Economic Development +408319,Economic Development,Economic Development +408318,Economic Development,Economic Development +466957,Economic Development,Economic Development +466952,Economic Development,Economic Development +466948,Economic Development,Economic Development +466947,Economic Development,Economic Development +466945,Economic Development,Economic Development +466941,Economic Development,Economic Development +462735,Economic Development,Economic Development +462698,Economic Development,Economic Development +462695,Economic Development,Economic Development +462692,Economic Development,Economic Development +462690,Economic Development,Economic Development +462689,Economic Development,Economic Development +458664,Economic Development,Economic Development +452185,Economic Development,Economic Development +452178,Economic Development,Economic Development +452176,Economic Development,Economic Development +452149,Economic Development,Economic Development +452145,Economic Development,Economic Development +452098,Economic Development,Economic Development +448648,Economic Development,Economic Development +448647,Economic Development,Economic Development +446488,Economic Development,Economic Development +446487,Economic Development,Economic Development +448648,Infrastructure,Infrastructure +448647,Infrastructure,Infrastructure +446488,Infrastructure,Infrastructure +446487,Infrastructure,Infrastructure +446485,Infrastructure,Infrastructure +444563,Infrastructure,Infrastructure +444558,Infrastructure,Infrastructure +443433,Infrastructure,Infrastructure +443326,Infrastructure,Infrastructure +443325,Infrastructure,Infrastructure +440929,Infrastructure,Infrastructure +440927,Infrastructure,Infrastructure +440926,Infrastructure,Infrastructure +440925,Infrastructure,Infrastructure +440924,Infrastructure,Infrastructure +440922,Infrastructure,Infrastructure +439789,Infrastructure,Infrastructure +439787,Infrastructure,Infrastructure +439786,Infrastructure,Infrastructure +439785,Infrastructure,Infrastructure +439784,Infrastructure,Infrastructure +439783,Infrastructure,Infrastructure +431340,Infrastructure,Infrastructure +431338,Infrastructure,Infrastructure +429048,Infrastructure,Infrastructure +429034,Infrastructure,Infrastructure +429032,Infrastructure,Infrastructure +429022,Infrastructure,Infrastructure +427080,Infrastructure,Infrastructure +427078,Infrastructure,Infrastructure +420350,Infrastructure,Infrastructure +413748,Infrastructure,Infrastructure +408320,Infrastructure,Infrastructure +408319,Infrastructure,Infrastructure +408318,Infrastructure,Infrastructure +466957,Infrastructure,Infrastructure +466952,Infrastructure,Infrastructure +466948,Infrastructure,Infrastructure +466947,Infrastructure,Infrastructure +466945,Infrastructure,Infrastructure +466941,Infrastructure,Infrastructure +462735,Infrastructure,Infrastructure +462698,Infrastructure,Infrastructure +462695,Infrastructure,Infrastructure +462692,Infrastructure,Infrastructure +462690,Infrastructure,Infrastructure +462689,Infrastructure,Infrastructure +458666,Infrastructure,Infrastructure +458664,Infrastructure,Infrastructure +452185,Infrastructure,Infrastructure +452178,Infrastructure,Infrastructure +452176,Infrastructure,Infrastructure +452149,Infrastructure,Infrastructure +452145,Infrastructure,Infrastructure +413748,Defence,Defence +408319,Defence,Defence +466952,Defence,Defence +466947,Defence,Defence +466945,Defence,Defence +466941,Defence,Defence +462690,Defence,Defence +452185,Defence,Defence +452178,Defence,Defence +452176,Defence,Defence +452149,Defence,Defence +452145,Defence,Defence +452098,Defence,Defence +446488,Defence,Defence +446487,Defence,Defence +440925,Defence,Defence +439784,Defence,Defence +431340,Defence,Defence +452098,Employment and Training,Employment and Training +446485,Employment and Training,Employment and Training +444558,Employment and Training,Employment and Training +443326,Employment and Training,Employment and Training +443325,Employment and Training,Employment and Training +440929,Employment and Training,Employment and Training +440924,Employment and Training,Employment and Training +429048,Employment and Training,Employment and Training +429022,Employment and Training,Employment and Training +420350,Employment and Training,Employment and Training +413748,Employment and Training,Employment and Training +408319,Employment and Training,Employment and Training +408318,Employment and Training,Employment and Training +466945,Employment and Training,Employment and Training +462735,Employment and Training,Employment and Training +462698,Employment and Training,Employment and Training +462695,Employment and Training,Employment and Training +462689,Employment and Training,Employment and Training +452178,Employment and Training,Employment and Training +446485,Mining,Mining +444563,Mining,Mining +444558,Mining,Mining +443433,Mining,Mining +443326,Mining,Mining +443325,Mining,Mining +440929,Mining,Mining +440927,Mining,Mining +440926,Mining,Mining +440925,Mining,Mining +440924,Mining,Mining +440922,Mining,Mining +439789,Mining,Mining +439787,Mining,Mining +439786,Mining,Mining +439785,Mining,Mining +439784,Mining,Mining +439783,Mining,Mining +431340,Mining,Mining +431338,Mining,Mining +429048,Mining,Mining +429034,Mining,Mining +429032,Mining,Mining +429022,Mining,Mining +427080,Mining,Mining +427078,Mining,Mining +420350,Mining,Mining +413748,Mining,Mining +408320,Mining,Mining +408319,Mining,Mining +408318,Mining,Mining +466957,Mining,Mining +466952,Mining,Mining +466948,Mining,Mining +466947,Mining,Mining +466945,Mining,Mining +466941,Mining,Mining +462735,Mining,Mining +462698,Mining,Mining +462695,Mining,Mining +462692,Mining,Mining +462689,Mining,Mining +452185,Mining,Mining +452178,Mining,Mining +452176,Mining,Mining +452149,Mining,Mining +452145,Mining,Mining +452098,Mining,Mining +448648,Mining,Mining +448647,Mining,Mining +446488,Mining,Mining +458666,Regional Development,Regional Development +458664,Regional Development,Regional Development +408318,Regional Development,Regional Development +452185,Regional Development,Regional Development +452178,Regional Development,Regional Development +452176,Regional Development,Regional Development +452149,Regional Development,Regional Development +452145,Regional Development,Regional Development +452098,Regional Development,Regional Development +448648,Regional Development,Regional Development +448647,Regional Development,Regional Development +446488,Regional Development,Regional Development +446487,Regional Development,Regional Development +446485,Regional Development,Regional Development +444563,Regional Development,Regional Development +444558,Regional Development,Regional Development +443433,Regional Development,Regional Development +443326,Regional Development,Regional Development +443325,Regional Development,Regional Development +440929,Regional Development,Regional Development +440927,Regional Development,Regional Development +440926,Regional Development,Regional Development +440925,Regional Development,Regional Development +440924,Regional Development,Regional Development +440922,Regional Development,Regional Development +439789,Regional Development,Regional Development +439787,Regional Development,Regional Development +439786,Regional Development,Regional Development +439785,Regional Development,Regional Development +439784,Regional Development,Regional Development +439783,Regional Development,Regional Development +431340,Regional Development,Regional Development +431338,Regional Development,Regional Development +429048,Regional Development,Regional Development +429034,Regional Development,Regional Development +429032,Regional Development,Regional Development +429022,Regional Development,Regional Development +427080,Regional Development,Regional Development +427078,Regional Development,Regional Development +420350,Regional Development,Regional Development +413748,Regional Development,Regional Development +408320,Regional Development,Regional Development +408319,Regional Development,Regional Development +466952,Regional Development,Regional Development +466948,Regional Development,Regional Development +466947,Regional Development,Regional Development +466945,Regional Development,Regional Development +466941,Regional Development,Regional Development +462735,Regional Development,Regional Development +462698,Regional Development,Regional Development +462695,Regional Development,Regional Development +462692,Regional Development,Regional Development +462690,Regional Development,Regional Development +407147,International Trade,International Trade +416390,Infrastructure,Infrastructure +408334,Infrastructure,Infrastructure +408333,Infrastructure,Infrastructure +408334,Municipalities,Municipalities +408333,Municipalities,Municipalities +408333,Regional Development,Regional Development +411071,Economic Development,Economic Development +407455,Economic Development,Economic Development +463405,Economic Development,Economic Development +463404,Economic Development,Economic Development +436582,Economic Development,Economic Development +468834,Health,Health +437450,Health,Health +424936,Health,Health +422705,Health,Health +422618,Health,Health +407645,Health,Health +407173,Health,Health +471580,Health,Health +408606,Defence,Defence +408606,Economic Development,Economic Development +408601,Economic Development,Economic Development +408606,Employment and Training,Employment and Training +408601,Employment and Training,Employment and Training +408606,Government Procurement,Government Procurement +408601,Government Procurement,Government Procurement +408606,Industry,Industry +408606,Regional Development,Regional Development +408601,Regional Development,Regional Development +408299,Consumer Issues,Consumer Issues +408299,Infrastructure,Infrastructure +432857,Economic Development,Economic Development +431433,Economic Development,Economic Development +415981,Energy,Energy +415978,Energy,Energy +420748,Energy,Energy +418899,Energy,Energy +418898,Energy,Energy +415983,Industry,Industry +415963,Economic Development,Economic Development +415965,Energy,Energy +415963,Energy,Energy +415975,Energy,Energy +431932,Agriculture,Agriculture +515722,Agriculture,Agriculture +422575,Agriculture,Agriculture +417617,Agriculture,Agriculture +408830,Agriculture,Agriculture +499353,Agriculture,Agriculture +493525,Agriculture,Agriculture +456954,Agriculture,Agriculture +456951,Agriculture,Agriculture +456950,Agriculture,Agriculture +454828,Agriculture,Agriculture +454825,Agriculture,Agriculture +454816,Agriculture,Agriculture +454798,Agriculture,Agriculture +446628,Agriculture,Agriculture +440979,Agriculture,Agriculture +437549,Agriculture,Agriculture +435165,Agriculture,Agriculture +490397,Climate,Climate +490396,Climate,Climate +408837,Climate,Climate +408830,Climate,Climate +490391,Climate,Climate +486963,Climate,Climate +486961,Climate,Climate +486958,Climate,Climate +486949,Climate,Climate +486944,Climate,Climate +484502,Climate,Climate +484336,Climate,Climate +484332,Climate,Climate +484328,Climate,Climate +484283,Climate,Climate +484113,Climate,Climate +484112,Climate,Climate +484094,Climate,Climate +484092,Climate,Climate +484088,Climate,Climate +479172,Climate,Climate +457175,Climate,Climate +456953,Climate,Climate +454834,Climate,Climate +454833,Climate,Climate +454831,Climate,Climate +454829,Climate,Climate +454827,Climate,Climate +454774,Climate,Climate +451385,Climate,Climate +448950,Climate,Climate +446631,Climate,Climate +446630,Climate,Climate +446629,Climate,Climate +446627,Climate,Climate +446626,Climate,Climate +446625,Climate,Climate +446624,Climate,Climate +446621,Climate,Climate +446620,Climate,Climate +444553,Climate,Climate +444546,Climate,Climate +444542,Climate,Climate +437546,Climate,Climate +437394,Climate,Climate +437393,Climate,Climate +437392,Climate,Climate +437016,Climate,Climate +435250,Climate,Climate +435166,Climate,Climate +435146,Climate,Climate +435143,Climate,Climate +435139,Climate,Climate +435136,Climate,Climate +433217,Climate,Climate +433213,Climate,Climate +433209,Climate,Climate +433208,Climate,Climate +432861,Climate,Climate +432860,Climate,Climate +431944,Climate,Climate +431943,Climate,Climate +431933,Climate,Climate +431932,Climate,Climate +431931,Climate,Climate +431930,Climate,Climate +430378,Climate,Climate +430283,Climate,Climate +427959,Climate,Climate +427958,Climate,Climate +427957,Climate,Climate +427954,Climate,Climate +427085,Climate,Climate +427084,Climate,Climate +427083,Climate,Climate +423189,Climate,Climate +423186,Climate,Climate +423184,Climate,Climate +421124,Climate,Climate +421123,Climate,Climate +421120,Climate,Climate +418911,Climate,Climate +418907,Climate,Climate +418902,Climate,Climate +418891,Climate,Climate +417610,Climate,Climate +535152,Climate,Climate +530538,Climate,Climate +530536,Climate,Climate +530535,Climate,Climate +526365,Climate,Climate +526353,Climate,Climate +526333,Climate,Climate +514911,Climate,Climate +514712,Climate,Climate +514707,Climate,Climate +512860,Climate,Climate +510337,Climate,Climate +510336,Climate,Climate +510335,Climate,Climate +510333,Climate,Climate +510323,Climate,Climate +510311,Climate,Climate +510310,Climate,Climate +507981,Climate,Climate +502498,Climate,Climate +499311,Climate,Climate +490401,Climate,Climate +539760,Economic Development,Economic Development +535152,Economic Development,Economic Development +446620,Economic Development,Economic Development +440841,Economic Development,Economic Development +422576,Economic Development,Economic Development +444553,Energy,Energy +444546,Energy,Energy +440979,Energy,Energy +437550,Energy,Energy +437549,Energy,Energy +437546,Energy,Energy +437394,Energy,Energy +437393,Energy,Energy +437392,Energy,Energy +437016,Energy,Energy +435250,Energy,Energy +435166,Energy,Energy +435165,Energy,Energy +435146,Energy,Energy +435143,Energy,Energy +435139,Energy,Energy +435136,Energy,Energy +433217,Energy,Energy +433213,Energy,Energy +433209,Energy,Energy +433208,Energy,Energy +430378,Energy,Energy +430283,Energy,Energy +427959,Energy,Energy +427958,Energy,Energy +427957,Energy,Energy +427954,Energy,Energy +427085,Energy,Energy +427083,Energy,Energy +427082,Energy,Energy +421120,Energy,Energy +418905,Energy,Energy +418902,Energy,Energy +418891,Energy,Energy +414749,Energy,Energy +408837,Energy,Energy +408830,Energy,Energy +539761,Energy,Energy +539760,Energy,Energy +539759,Energy,Energy +539757,Energy,Energy +539756,Energy,Energy +539755,Energy,Energy +539752,Energy,Energy +539751,Energy,Energy +539749,Energy,Energy +539748,Energy,Energy +539746,Energy,Energy +537744,Energy,Energy +537738,Energy,Energy +537731,Energy,Energy +535214,Energy,Energy +535211,Energy,Energy +535192,Energy,Energy +530536,Energy,Energy +530535,Energy,Energy +529100,Energy,Energy +529089,Energy,Energy +529049,Energy,Energy +529041,Energy,Energy +529039,Energy,Energy +529037,Energy,Energy +529031,Energy,Energy +526365,Energy,Energy +526353,Energy,Energy +526333,Energy,Energy +514911,Energy,Energy +514712,Energy,Energy +514707,Energy,Energy +512860,Energy,Energy +510337,Energy,Energy +510336,Energy,Energy +510335,Energy,Energy +510333,Energy,Energy +510323,Energy,Energy +510311,Energy,Energy +510310,Energy,Energy +507981,Energy,Energy +502498,Energy,Energy +499311,Energy,Energy +490401,Energy,Energy +490399,Energy,Energy +490397,Energy,Energy +490396,Energy,Energy +490391,Energy,Energy +486963,Energy,Energy +486961,Energy,Energy +486958,Energy,Energy +486949,Energy,Energy +486944,Energy,Energy +484502,Energy,Energy +484336,Energy,Energy +484332,Energy,Energy +484328,Energy,Energy +484283,Energy,Energy +484113,Energy,Energy +484112,Energy,Energy +484094,Energy,Energy +484092,Energy,Energy +484088,Energy,Energy +479172,Energy,Energy +474810,Energy,Energy +457175,Energy,Energy +456953,Energy,Energy +456951,Energy,Energy +454834,Energy,Energy +454833,Energy,Energy +454831,Energy,Energy +454829,Energy,Energy +454828,Energy,Energy +454827,Energy,Energy +454825,Energy,Energy +454816,Energy,Energy +454774,Energy,Energy +446629,Energy,Energy +446628,Energy,Energy +446627,Energy,Energy +446625,Energy,Energy +446624,Energy,Energy +446621,Energy,Energy +484092,Environment,Environment +484088,Environment,Environment +435146,Environment,Environment +431944,Environment,Environment +431943,Environment,Environment +431933,Environment,Environment +431932,Environment,Environment +427959,Environment,Environment +427958,Environment,Environment +427957,Environment,Environment +427954,Environment,Environment +423189,Environment,Environment +423186,Environment,Environment +423184,Environment,Environment +421124,Environment,Environment +421123,Environment,Environment +418910,Environment,Environment +418905,Environment,Environment +539761,Environment,Environment +539760,Environment,Environment +539759,Environment,Environment +539757,Environment,Environment +539756,Environment,Environment +539755,Environment,Environment +539752,Environment,Environment +539751,Environment,Environment +539749,Environment,Environment +539748,Environment,Environment +537744,Environment,Environment +537738,Environment,Environment +537731,Environment,Environment +535214,Environment,Environment +535211,Environment,Environment +535192,Environment,Environment +530538,Environment,Environment +530536,Environment,Environment +530535,Environment,Environment +526365,Environment,Environment +526353,Environment,Environment +526333,Environment,Environment +517556,Environment,Environment +517554,Environment,Environment +517540,Environment,Environment +515722,Environment,Environment +514911,Environment,Environment +514712,Environment,Environment +514707,Environment,Environment +512860,Environment,Environment +510337,Environment,Environment +510336,Environment,Environment +510335,Environment,Environment +510333,Environment,Environment +510323,Environment,Environment +510311,Environment,Environment +510310,Environment,Environment +507981,Environment,Environment +504501,Environment,Environment +502498,Environment,Environment +499311,Environment,Environment +490401,Environment,Environment +490399,Environment,Environment +490397,Environment,Environment +490396,Environment,Environment +490391,Environment,Environment +486963,Environment,Environment +486961,Environment,Environment +486958,Environment,Environment +486949,Environment,Environment +486944,Environment,Environment +484502,Environment,Environment +484336,Environment,Environment +484332,Environment,Environment +484328,Environment,Environment +484283,Environment,Environment +484113,Environment,Environment +484112,Environment,Environment +454798,Health,Health +444545,Health,Health +422576,Health,Health +422575,Health,Health +418901,Infrastructure,Infrastructure +418905,Small Business,Small Business +414749,Small Business,Small Business +456952,Small Business,Small Business +446629,Small Business,Small Business +446628,Small Business,Small Business +444545,Small Business,Small Business +440985,Small Business,Small Business +440982,Small Business,Small Business +440979,Small Business,Small Business +440832,Small Business,Small Business +440828,Small Business,Small Business +437391,Small Business,Small Business +435250,Small Business,Small Business +435166,Small Business,Small Business +435165,Small Business,Small Business +435155,Small Business,Small Business +435143,Small Business,Small Business +435139,Small Business,Small Business +435130,Small Business,Small Business +433217,Small Business,Small Business +446630,Taxation and Finance,Taxation and Finance +446626,Taxation and Finance,Taxation and Finance +448950,Taxation and Finance,Taxation and Finance +423201,Transportation,Transportation +423200,Transportation,Transportation +427087,Transportation,Transportation +427086,Transportation,Transportation +418777,Economic Development,Economic Development +418556,Economic Development,Economic Development +447207,Economic Development,Economic Development +444575,Economic Development,Economic Development +443054,Economic Development,Economic Development +443053,Economic Development,Economic Development +443052,Economic Development,Economic Development +442895,Economic Development,Economic Development +442892,Economic Development,Economic Development +442389,Economic Development,Economic Development +440356,Economic Development,Economic Development +440355,Economic Development,Economic Development +440354,Economic Development,Economic Development +440353,Economic Development,Economic Development +440352,Economic Development,Economic Development +440351,Economic Development,Economic Development +440348,Economic Development,Economic Development +439242,Economic Development,Economic Development +439233,Economic Development,Economic Development +439121,Economic Development,Economic Development +437765,Economic Development,Economic Development +437761,Economic Development,Economic Development +436408,Economic Development,Economic Development +436406,Economic Development,Economic Development +434224,Economic Development,Economic Development +434223,Economic Development,Economic Development +434221,Economic Development,Economic Development +434217,Economic Development,Economic Development +433268,Economic Development,Economic Development +432852,Economic Development,Economic Development +432850,Economic Development,Economic Development +432848,Economic Development,Economic Development +432847,Economic Development,Economic Development +432780,Economic Development,Economic Development +432778,Economic Development,Economic Development +431731,Economic Development,Economic Development +431729,Economic Development,Economic Development +424377,Infrastructure,Infrastructure +420360,Infrastructure,Infrastructure +433265,Infrastructure,Infrastructure +430408,Infrastructure,Infrastructure +434219,International Trade,International Trade +415986,Energy,Energy +414397,Energy,Energy +423925,Infrastructure,Infrastructure +423923,Infrastructure,Infrastructure +430181,Infrastructure,Infrastructure +428706,Infrastructure,Infrastructure +427252,Infrastructure,Infrastructure +513011,Environment,Environment +511459,Environment,Environment +508806,Environment,Environment +505231,Environment,Environment +502765,Environment,Environment +491250,Environment,Environment +482135,Environment,Environment +480142,Environment,Environment +477578,Environment,Environment +475887,Environment,Environment +467946,Environment,Environment +467945,Environment,Environment +462646,Environment,Environment +460731,Environment,Environment +458882,Environment,Environment +458880,Environment,Environment +448233,Environment,Environment +448232,Environment,Environment +448231,Environment,Environment +445597,Environment,Environment +445505,Environment,Environment +443953,Environment,Environment +432629,Environment,Environment +432623,Environment,Environment +426513,Environment,Environment +422574,Environment,Environment +422573,Environment,Environment +544062,Environment,Environment +523214,Environment,Environment +469859,Health,Health +464283,Health,Health +457192,Health,Health +455524,Health,Health +455145,Health,Health +455144,Health,Health +455134,Health,Health +452152,Health,Health +452150,Health,Health +452146,Health,Health +452141,Health,Health +447374,Health,Health +444454,Health,Health +441345,Health,Health +441343,Health,Health +441339,Health,Health +433551,Health,Health +433550,Health,Health +432054,Health,Health +430406,Health,Health +430405,Health,Health +428501,Health,Health +428487,Health,Health +428475,Health,Health +428471,Health,Health +428468,Health,Health +425998,Health,Health +425997,Health,Health +425995,Health,Health +425944,Health,Health +425943,Health,Health +423646,Health,Health +423645,Health,Health +423639,Health,Health +421132,Health,Health +421130,Health,Health +421129,Health,Health +421128,Health,Health +418862,Health,Health +417454,Health,Health +543172,Health,Health +521745,Health,Health +515051,Health,Health +512297,Health,Health +500640,Health,Health +497885,Health,Health +493185,Health,Health +484421,Health,Health +479721,Health,Health +479719,Health,Health +477319,Health,Health +477287,Health,Health +419673,Justice and Law Enforcement,Justice and Law Enforcement +458688,Justice and Law Enforcement,Justice and Law Enforcement +455138,Justice and Law Enforcement,Justice and Law Enforcement +455132,Justice and Law Enforcement,Justice and Law Enforcement +447377,Justice and Law Enforcement,Justice and Law Enforcement +447373,Justice and Law Enforcement,Justice and Law Enforcement +444454,Justice and Law Enforcement,Justice and Law Enforcement +441346,Justice and Law Enforcement,Justice and Law Enforcement +441345,Justice and Law Enforcement,Justice and Law Enforcement +441343,Justice and Law Enforcement,Justice and Law Enforcement +441339,Justice and Law Enforcement,Justice and Law Enforcement +430406,Justice and Law Enforcement,Justice and Law Enforcement +430405,Justice and Law Enforcement,Justice and Law Enforcement +428501,Justice and Law Enforcement,Justice and Law Enforcement +428487,Justice and Law Enforcement,Justice and Law Enforcement +428475,Justice and Law Enforcement,Justice and Law Enforcement +428471,Justice and Law Enforcement,Justice and Law Enforcement +428468,Justice and Law Enforcement,Justice and Law Enforcement +425998,Justice and Law Enforcement,Justice and Law Enforcement +425997,Justice and Law Enforcement,Justice and Law Enforcement +425995,Justice and Law Enforcement,Justice and Law Enforcement +425944,Justice and Law Enforcement,Justice and Law Enforcement +425943,Justice and Law Enforcement,Justice and Law Enforcement +423646,Justice and Law Enforcement,Justice and Law Enforcement +423645,Justice and Law Enforcement,Justice and Law Enforcement +423639,Justice and Law Enforcement,Justice and Law Enforcement +421132,Justice and Law Enforcement,Justice and Law Enforcement +421130,Justice and Law Enforcement,Justice and Law Enforcement +421129,Justice and Law Enforcement,Justice and Law Enforcement +421128,Justice and Law Enforcement,Justice and Law Enforcement +524157,Taxation and Finance,Taxation and Finance +521747,Taxation and Finance,Taxation and Finance +459957,Taxation and Finance,Taxation and Finance +458692,Taxation and Finance,Taxation and Finance +458690,Taxation and Finance,Taxation and Finance +455144,Taxation and Finance,Taxation and Finance +455132,Taxation and Finance,Taxation and Finance +452152,Taxation and Finance,Taxation and Finance +452150,Taxation and Finance,Taxation and Finance +452146,Taxation and Finance,Taxation and Finance +452141,Taxation and Finance,Taxation and Finance +449877,Taxation and Finance,Taxation and Finance +447377,Taxation and Finance,Taxation and Finance +444454,Taxation and Finance,Taxation and Finance +441345,Taxation and Finance,Taxation and Finance +441343,Taxation and Finance,Taxation and Finance +441339,Taxation and Finance,Taxation and Finance +434954,Taxation and Finance,Taxation and Finance +434953,Taxation and Finance,Taxation and Finance +434946,Taxation and Finance,Taxation and Finance +430406,Taxation and Finance,Taxation and Finance +430405,Taxation and Finance,Taxation and Finance +428501,Taxation and Finance,Taxation and Finance +428496,Taxation and Finance,Taxation and Finance +428487,Taxation and Finance,Taxation and Finance +428475,Taxation and Finance,Taxation and Finance +428471,Taxation and Finance,Taxation and Finance +428468,Taxation and Finance,Taxation and Finance +425998,Taxation and Finance,Taxation and Finance +425995,Taxation and Finance,Taxation and Finance +425944,Taxation and Finance,Taxation and Finance +425943,Taxation and Finance,Taxation and Finance +407218,Taxation and Finance,Taxation and Finance +540817,Taxation and Finance,Taxation and Finance +540816,Taxation and Finance,Taxation and Finance +533596,Taxation and Finance,Taxation and Finance +531055,Taxation and Finance,Taxation and Finance +528016,Taxation and Finance,Taxation and Finance +524171,Taxation and Finance,Taxation and Finance +407731,Taxation and Finance,Taxation and Finance +407730,Taxation and Finance,Taxation and Finance +461902,Taxation and Finance,Taxation and Finance +417204,Taxation and Finance,Taxation and Finance +417145,Taxation and Finance,Taxation and Finance +417144,Taxation and Finance,Taxation and Finance +417143,Taxation and Finance,Taxation and Finance +417142,Taxation and Finance,Taxation and Finance +417141,Taxation and Finance,Taxation and Finance +417140,Taxation and Finance,Taxation and Finance +417139,Taxation and Finance,Taxation and Finance +417137,Taxation and Finance,Taxation and Finance +417136,Taxation and Finance,Taxation and Finance +417134,Taxation and Finance,Taxation and Finance +417133,Taxation and Finance,Taxation and Finance +417132,Taxation and Finance,Taxation and Finance +417131,Taxation and Finance,Taxation and Finance +417130,Taxation and Finance,Taxation and Finance +417129,Taxation and Finance,Taxation and Finance +417128,Taxation and Finance,Taxation and Finance +417127,Taxation and Finance,Taxation and Finance +417125,Taxation and Finance,Taxation and Finance +417124,Taxation and Finance,Taxation and Finance +417123,Taxation and Finance,Taxation and Finance +417121,Taxation and Finance,Taxation and Finance +417101,Taxation and Finance,Taxation and Finance +417100,Taxation and Finance,Taxation and Finance +417099,Taxation and Finance,Taxation and Finance +417098,Taxation and Finance,Taxation and Finance +417097,Taxation and Finance,Taxation and Finance +410842,Taxation and Finance,Taxation and Finance +410841,Taxation and Finance,Taxation and Finance +410840,Taxation and Finance,Taxation and Finance +410839,Taxation and Finance,Taxation and Finance +407766,Taxation and Finance,Taxation and Finance +407431,Taxation and Finance,Taxation and Finance +447685,Health,Health +447683,Health,Health +442037,Health,Health +433487,Health,Health +428560,Health,Health +421227,Health,Health +407431,Health,Health +462703,Health,Health +457555,Health,Health +457554,Health,Health +455444,Health,Health +455442,Health,Health +455439,Health,Health +452672,Health,Health +483339,Taxation and Finance,Taxation and Finance +483338,Taxation and Finance,Taxation and Finance +500180,Defence,Defence +495038,Defence,Defence +457082,Defence,Defence +442672,Defence,Defence +442662,Defence,Defence +442658,Defence,Defence +422205,Defence,Defence +421051,Government Procurement,Government Procurement +495038,Government Procurement,Government Procurement +457082,Government Procurement,Government Procurement +442672,Government Procurement,Government Procurement +442662,Government Procurement,Government Procurement +442658,Government Procurement,Government Procurement +422408,Mining,Mining +422407,Mining,Mining +448284,Mining,Mining +431320,Mining,Mining +422419,Mining,Mining +422416,Mining,Mining +422408,Infrastructure,Infrastructure +422407,Infrastructure,Infrastructure +455598,Infrastructure,Infrastructure +448286,Infrastructure,Infrastructure +448285,Infrastructure,Infrastructure +448284,Infrastructure,Infrastructure +422419,Infrastructure,Infrastructure +422416,Infrastructure,Infrastructure +422408,Environment,Environment +422408,Regional Development,Regional Development +422407,Regional Development,Regional Development +422419,Regional Development,Regional Development +422416,Regional Development,Regional Development +422408,Economic Development,Economic Development +422407,Economic Development,Economic Development +455600,Economic Development,Economic Development +455597,Economic Development,Economic Development +448286,Economic Development,Economic Development +448285,Economic Development,Economic Development +448284,Economic Development,Economic Development +422419,Economic Development,Economic Development +422416,Economic Development,Economic Development +422408,Transportation,Transportation +422407,Transportation,Transportation +448286,Transportation,Transportation +448285,Transportation,Transportation +422419,Transportation,Transportation +422416,Transportation,Transportation +418571,Fisheries,Fisheries +418570,Fisheries,Fisheries +416482,Fisheries,Fisheries +416341,Fisheries,Fisheries +412968,Fisheries,Fisheries +412967,Fisheries,Fisheries +410411,Fisheries,Fisheries +408822,Fisheries,Fisheries +436485,Fisheries,Fisheries +408896,Government Procurement,Government Procurement +408895,Government Procurement,Government Procurement +417584,Government Procurement,Government Procurement +417450,Government Procurement,Government Procurement +417449,Government Procurement,Government Procurement +417448,Government Procurement,Government Procurement +417447,Government Procurement,Government Procurement +417446,Government Procurement,Government Procurement +417445,Government Procurement,Government Procurement +416820,Government Procurement,Government Procurement +416817,Government Procurement,Government Procurement +412436,Government Procurement,Government Procurement +412435,Government Procurement,Government Procurement +456750,Health,Health +456749,Health,Health +538692,Health,Health +526747,Health,Health +523500,Health,Health +520366,Health,Health +516027,Health,Health +514519,Health,Health +513502,Health,Health +513501,Health,Health +408898,Government Procurement,Government Procurement +408897,Government Procurement,Government Procurement +417585,Government Procurement,Government Procurement +417444,Government Procurement,Government Procurement +417443,Government Procurement,Government Procurement +417442,Government Procurement,Government Procurement +417441,Government Procurement,Government Procurement +417440,Government Procurement,Government Procurement +417439,Government Procurement,Government Procurement +416823,Government Procurement,Government Procurement +416822,Government Procurement,Government Procurement +412439,Government Procurement,Government Procurement +412438,Government Procurement,Government Procurement +408885,Government Procurement,Government Procurement +408884,Government Procurement,Government Procurement +423744,Government Procurement,Government Procurement +421183,Government Procurement,Government Procurement +417586,Government Procurement,Government Procurement +417429,Government Procurement,Government Procurement +417428,Government Procurement,Government Procurement +417427,Government Procurement,Government Procurement +417426,Government Procurement,Government Procurement +417425,Government Procurement,Government Procurement +417424,Government Procurement,Government Procurement +416832,Government Procurement,Government Procurement +412423,Government Procurement,Government Procurement +412421,Government Procurement,Government Procurement +408887,Government Procurement,Government Procurement +408886,Government Procurement,Government Procurement +423745,Government Procurement,Government Procurement +421184,Government Procurement,Government Procurement +417587,Government Procurement,Government Procurement +417435,Government Procurement,Government Procurement +417434,Government Procurement,Government Procurement +417433,Government Procurement,Government Procurement +417432,Government Procurement,Government Procurement +417431,Government Procurement,Government Procurement +417430,Government Procurement,Government Procurement +416835,Government Procurement,Government Procurement +412433,Government Procurement,Government Procurement +412432,Government Procurement,Government Procurement +418933,Economic Development,Economic Development +423342,Industry,Industry +418933,Industry,Industry +423342,Research and Development,Research and Development +418933,Research and Development,Research and Development +451919,Research and Development,Research and Development +423342,Small Business,Small Business +411678,Government Procurement,Government Procurement +411665,Government Procurement,Government Procurement +411684,Government Procurement,Government Procurement +411683,Government Procurement,Government Procurement +411682,Government Procurement,Government Procurement +411681,Government Procurement,Government Procurement +411680,Government Procurement,Government Procurement +411135,Employment and Training,Employment and Training +411135,Industry,Industry +445654,Defence,Defence +444890,Defence,Defence +444889,Defence,Defence +444888,Defence,Defence +444572,Defence,Defence +444571,Defence,Defence +444570,Defence,Defence +444130,Defence,Defence +444129,Defence,Defence +443467,Defence,Defence +443466,Defence,Defence +443465,Defence,Defence +443464,Defence,Defence +443099,Defence,Defence +443098,Defence,Defence +440613,Defence,Defence +440612,Defence,Defence +440611,Defence,Defence +440610,Defence,Defence +440609,Defence,Defence +438363,Defence,Defence +438343,Defence,Defence +438339,Defence,Defence +438335,Defence,Defence +438334,Defence,Defence +438331,Defence,Defence +438328,Defence,Defence +436250,Defence,Defence +436248,Defence,Defence +435476,Defence,Defence +435475,Defence,Defence +435474,Defence,Defence +435473,Defence,Defence +435472,Defence,Defence +435469,Defence,Defence +434830,Defence,Defence +434828,Defence,Defence +434815,Defence,Defence +434810,Defence,Defence +434808,Defence,Defence +434039,Defence,Defence +432172,Defence,Defence +431711,Defence,Defence +431710,Defence,Defence +425494,Defence,Defence +425489,Defence,Defence +425486,Defence,Defence +424876,Defence,Defence +424860,Defence,Defence +424858,Defence,Defence +423364,Defence,Defence +423363,Defence,Defence +423362,Defence,Defence +423361,Defence,Defence +423357,Defence,Defence +423355,Defence,Defence +421414,Defence,Defence +420757,Defence,Defence +420756,Defence,Defence +420755,Defence,Defence +420754,Defence,Defence +418780,Defence,Defence +418775,Defence,Defence +417582,Defence,Defence +417581,Defence,Defence +417580,Defence,Defence +417579,Defence,Defence +417578,Defence,Defence +417577,Defence,Defence +417576,Defence,Defence +415471,Defence,Defence +415038,Defence,Defence +415030,Defence,Defence +415028,Defence,Defence +415026,Defence,Defence +415019,Defence,Defence +414199,Defence,Defence +414197,Defence,Defence +414196,Defence,Defence +414192,Defence,Defence +411939,Defence,Defence +411345,Defence,Defence +411344,Defence,Defence +411343,Defence,Defence +410448,Defence,Defence +410265,Defence,Defence +410262,Defence,Defence +410261,Defence,Defence +410260,Defence,Defence +408980,Defence,Defence +408978,Defence,Defence +408977,Defence,Defence +461890,Defence,Defence +461889,Defence,Defence +461888,Defence,Defence +461887,Defence,Defence +461886,Defence,Defence +461885,Defence,Defence +461204,Defence,Defence +461037,Defence,Defence +460855,Defence,Defence +460455,Defence,Defence +460454,Defence,Defence +460245,Defence,Defence +459069,Defence,Defence +459068,Defence,Defence +458366,Defence,Defence +458364,Defence,Defence +454242,Defence,Defence +454241,Defence,Defence +454239,Defence,Defence +454222,Defence,Defence +454220,Defence,Defence +454172,Defence,Defence +454171,Defence,Defence +451629,Defence,Defence +449009,Defence,Defence +449008,Defence,Defence +449006,Defence,Defence +449005,Defence,Defence +447130,Defence,Defence +446841,Defence,Defence +446839,Defence,Defence +445664,Defence,Defence +417577,Economic Development,Economic Development +417576,Economic Development,Economic Development +415471,Economic Development,Economic Development +415038,Economic Development,Economic Development +415030,Economic Development,Economic Development +415028,Economic Development,Economic Development +415026,Economic Development,Economic Development +415019,Economic Development,Economic Development +414199,Economic Development,Economic Development +414197,Economic Development,Economic Development +414196,Economic Development,Economic Development +414192,Economic Development,Economic Development +411939,Economic Development,Economic Development +411345,Economic Development,Economic Development +411344,Economic Development,Economic Development +411343,Economic Development,Economic Development +410448,Economic Development,Economic Development +410265,Economic Development,Economic Development +410262,Economic Development,Economic Development +410261,Economic Development,Economic Development +410260,Economic Development,Economic Development +408980,Economic Development,Economic Development +408978,Economic Development,Economic Development +408977,Economic Development,Economic Development +461890,Economic Development,Economic Development +461889,Economic Development,Economic Development +461888,Economic Development,Economic Development +461887,Economic Development,Economic Development +461886,Economic Development,Economic Development +461885,Economic Development,Economic Development +461204,Economic Development,Economic Development +461037,Economic Development,Economic Development +460855,Economic Development,Economic Development +460455,Economic Development,Economic Development +460454,Economic Development,Economic Development +460245,Economic Development,Economic Development +459069,Economic Development,Economic Development +459068,Economic Development,Economic Development +458366,Economic Development,Economic Development +458364,Economic Development,Economic Development +454242,Economic Development,Economic Development +454222,Economic Development,Economic Development +454220,Economic Development,Economic Development +454172,Economic Development,Economic Development +454171,Economic Development,Economic Development +451629,Economic Development,Economic Development +449009,Economic Development,Economic Development +449008,Economic Development,Economic Development +449006,Economic Development,Economic Development +449005,Economic Development,Economic Development +447130,Economic Development,Economic Development +446841,Economic Development,Economic Development +446839,Economic Development,Economic Development +445664,Economic Development,Economic Development +445659,Economic Development,Economic Development +445654,Economic Development,Economic Development +444890,Economic Development,Economic Development +444889,Economic Development,Economic Development +444888,Economic Development,Economic Development +444572,Economic Development,Economic Development +444571,Economic Development,Economic Development +444570,Economic Development,Economic Development +444130,Economic Development,Economic Development +444129,Economic Development,Economic Development +443467,Economic Development,Economic Development +443466,Economic Development,Economic Development +443465,Economic Development,Economic Development +443464,Economic Development,Economic Development +443099,Economic Development,Economic Development +443098,Economic Development,Economic Development +440613,Economic Development,Economic Development +440612,Economic Development,Economic Development +440611,Economic Development,Economic Development +440610,Economic Development,Economic Development +440609,Economic Development,Economic Development +438363,Economic Development,Economic Development +438343,Economic Development,Economic Development +438339,Economic Development,Economic Development +438335,Economic Development,Economic Development +438334,Economic Development,Economic Development +438331,Economic Development,Economic Development +438328,Economic Development,Economic Development +436250,Economic Development,Economic Development +436248,Economic Development,Economic Development +435476,Economic Development,Economic Development +435475,Economic Development,Economic Development +435474,Economic Development,Economic Development +435473,Economic Development,Economic Development +435472,Economic Development,Economic Development +435469,Economic Development,Economic Development +434830,Economic Development,Economic Development +434828,Economic Development,Economic Development +434815,Economic Development,Economic Development +434810,Economic Development,Economic Development +434808,Economic Development,Economic Development +434039,Economic Development,Economic Development +432172,Economic Development,Economic Development +431711,Economic Development,Economic Development +431710,Economic Development,Economic Development +425494,Economic Development,Economic Development +425489,Economic Development,Economic Development +425486,Economic Development,Economic Development +424876,Economic Development,Economic Development +424860,Economic Development,Economic Development +424858,Economic Development,Economic Development +423364,Economic Development,Economic Development +423363,Economic Development,Economic Development +423362,Economic Development,Economic Development +423361,Economic Development,Economic Development +423357,Economic Development,Economic Development +423355,Economic Development,Economic Development +421414,Economic Development,Economic Development +420757,Economic Development,Economic Development +420756,Economic Development,Economic Development +420755,Economic Development,Economic Development +420754,Economic Development,Economic Development +418780,Economic Development,Economic Development +418775,Economic Development,Economic Development +417582,Economic Development,Economic Development +417581,Economic Development,Economic Development +417580,Economic Development,Economic Development +417579,Economic Development,Economic Development +423355,Fisheries,Fisheries +421414,Fisheries,Fisheries +420757,Fisheries,Fisheries +420756,Fisheries,Fisheries +420755,Fisheries,Fisheries +420754,Fisheries,Fisheries +418780,Fisheries,Fisheries +418775,Fisheries,Fisheries +417582,Fisheries,Fisheries +417581,Fisheries,Fisheries +417580,Fisheries,Fisheries +417579,Fisheries,Fisheries +417578,Fisheries,Fisheries +417577,Fisheries,Fisheries +417576,Fisheries,Fisheries +415471,Fisheries,Fisheries +415038,Fisheries,Fisheries +415030,Fisheries,Fisheries +415028,Fisheries,Fisheries +415026,Fisheries,Fisheries +415019,Fisheries,Fisheries +414199,Fisheries,Fisheries +414197,Fisheries,Fisheries +414196,Fisheries,Fisheries +414192,Fisheries,Fisheries +411939,Fisheries,Fisheries +411345,Fisheries,Fisheries +411344,Fisheries,Fisheries +411343,Fisheries,Fisheries +410448,Fisheries,Fisheries +410265,Fisheries,Fisheries +410262,Fisheries,Fisheries +410261,Fisheries,Fisheries +410260,Fisheries,Fisheries +408980,Fisheries,Fisheries +408978,Fisheries,Fisheries +408977,Fisheries,Fisheries +461890,Fisheries,Fisheries +461889,Fisheries,Fisheries +461888,Fisheries,Fisheries +461887,Fisheries,Fisheries +461886,Fisheries,Fisheries +461885,Fisheries,Fisheries +461204,Fisheries,Fisheries +461037,Fisheries,Fisheries +460855,Fisheries,Fisheries +460455,Fisheries,Fisheries +460454,Fisheries,Fisheries +460245,Fisheries,Fisheries +459069,Fisheries,Fisheries +458366,Fisheries,Fisheries +458364,Fisheries,Fisheries +454242,Fisheries,Fisheries +454222,Fisheries,Fisheries +454220,Fisheries,Fisheries +454172,Fisheries,Fisheries +454171,Fisheries,Fisheries +451629,Fisheries,Fisheries +449009,Fisheries,Fisheries +449008,Fisheries,Fisheries +449006,Fisheries,Fisheries +449005,Fisheries,Fisheries +447130,Fisheries,Fisheries +446841,Fisheries,Fisheries +446839,Fisheries,Fisheries +445664,Fisheries,Fisheries +445659,Fisheries,Fisheries +445654,Fisheries,Fisheries +444890,Fisheries,Fisheries +444889,Fisheries,Fisheries +444888,Fisheries,Fisheries +444572,Fisheries,Fisheries +444571,Fisheries,Fisheries +444570,Fisheries,Fisheries +444130,Fisheries,Fisheries +444129,Fisheries,Fisheries +443467,Fisheries,Fisheries +443466,Fisheries,Fisheries +443465,Fisheries,Fisheries +443464,Fisheries,Fisheries +443099,Fisheries,Fisheries +443098,Fisheries,Fisheries +440613,Fisheries,Fisheries +440612,Fisheries,Fisheries +440611,Fisheries,Fisheries +440610,Fisheries,Fisheries +440609,Fisheries,Fisheries +438363,Fisheries,Fisheries +438343,Fisheries,Fisheries +438339,Fisheries,Fisheries +438335,Fisheries,Fisheries +438334,Fisheries,Fisheries +438331,Fisheries,Fisheries +438328,Fisheries,Fisheries +436250,Fisheries,Fisheries +436248,Fisheries,Fisheries +435476,Fisheries,Fisheries +435475,Fisheries,Fisheries +435474,Fisheries,Fisheries +435473,Fisheries,Fisheries +435472,Fisheries,Fisheries +435469,Fisheries,Fisheries +434830,Fisheries,Fisheries +434828,Fisheries,Fisheries +434815,Fisheries,Fisheries +434810,Fisheries,Fisheries +434808,Fisheries,Fisheries +434039,Fisheries,Fisheries +432172,Fisheries,Fisheries +431711,Fisheries,Fisheries +431710,Fisheries,Fisheries +425494,Fisheries,Fisheries +425489,Fisheries,Fisheries +425486,Fisheries,Fisheries +424876,Fisheries,Fisheries +424860,Fisheries,Fisheries +424858,Fisheries,Fisheries +423364,Fisheries,Fisheries +423363,Fisheries,Fisheries +423362,Fisheries,Fisheries +423361,Fisheries,Fisheries +423363,Government Procurement,Government Procurement +423362,Government Procurement,Government Procurement +423361,Government Procurement,Government Procurement +423357,Government Procurement,Government Procurement +423355,Government Procurement,Government Procurement +421414,Government Procurement,Government Procurement +420757,Government Procurement,Government Procurement +420756,Government Procurement,Government Procurement +420755,Government Procurement,Government Procurement +420754,Government Procurement,Government Procurement +418780,Government Procurement,Government Procurement +418775,Government Procurement,Government Procurement +417582,Government Procurement,Government Procurement +417581,Government Procurement,Government Procurement +417580,Government Procurement,Government Procurement +417579,Government Procurement,Government Procurement +417578,Government Procurement,Government Procurement +417577,Government Procurement,Government Procurement +417576,Government Procurement,Government Procurement +415471,Government Procurement,Government Procurement +415038,Government Procurement,Government Procurement +415030,Government Procurement,Government Procurement +415028,Government Procurement,Government Procurement +415026,Government Procurement,Government Procurement +415019,Government Procurement,Government Procurement +414199,Government Procurement,Government Procurement +414197,Government Procurement,Government Procurement +414196,Government Procurement,Government Procurement +414192,Government Procurement,Government Procurement +411939,Government Procurement,Government Procurement +411345,Government Procurement,Government Procurement +411344,Government Procurement,Government Procurement +411343,Government Procurement,Government Procurement +410448,Government Procurement,Government Procurement +410265,Government Procurement,Government Procurement +410262,Government Procurement,Government Procurement +410261,Government Procurement,Government Procurement +410260,Government Procurement,Government Procurement +408980,Government Procurement,Government Procurement +408978,Government Procurement,Government Procurement +408977,Government Procurement,Government Procurement +461890,Government Procurement,Government Procurement +461889,Government Procurement,Government Procurement +461888,Government Procurement,Government Procurement +461887,Government Procurement,Government Procurement +461886,Government Procurement,Government Procurement +461885,Government Procurement,Government Procurement +461204,Government Procurement,Government Procurement +461037,Government Procurement,Government Procurement +460855,Government Procurement,Government Procurement +460455,Government Procurement,Government Procurement +460454,Government Procurement,Government Procurement +460245,Government Procurement,Government Procurement +459069,Government Procurement,Government Procurement +459068,Government Procurement,Government Procurement +458366,Government Procurement,Government Procurement +458364,Government Procurement,Government Procurement +454242,Government Procurement,Government Procurement +454241,Government Procurement,Government Procurement +454239,Government Procurement,Government Procurement +454222,Government Procurement,Government Procurement +454220,Government Procurement,Government Procurement +454172,Government Procurement,Government Procurement +454171,Government Procurement,Government Procurement +451629,Government Procurement,Government Procurement +449009,Government Procurement,Government Procurement +449008,Government Procurement,Government Procurement +449006,Government Procurement,Government Procurement +449005,Government Procurement,Government Procurement +447130,Government Procurement,Government Procurement +446841,Government Procurement,Government Procurement +446839,Government Procurement,Government Procurement +445664,Government Procurement,Government Procurement +445659,Government Procurement,Government Procurement +445654,Government Procurement,Government Procurement +444890,Government Procurement,Government Procurement +444889,Government Procurement,Government Procurement +444888,Government Procurement,Government Procurement +444572,Government Procurement,Government Procurement +444571,Government Procurement,Government Procurement +444570,Government Procurement,Government Procurement +444130,Government Procurement,Government Procurement +444129,Government Procurement,Government Procurement +443467,Government Procurement,Government Procurement +443466,Government Procurement,Government Procurement +443465,Government Procurement,Government Procurement +443464,Government Procurement,Government Procurement +443099,Government Procurement,Government Procurement +443098,Government Procurement,Government Procurement +440613,Government Procurement,Government Procurement +440612,Government Procurement,Government Procurement +440611,Government Procurement,Government Procurement +440610,Government Procurement,Government Procurement +440609,Government Procurement,Government Procurement +438363,Government Procurement,Government Procurement +438343,Government Procurement,Government Procurement +438339,Government Procurement,Government Procurement +438335,Government Procurement,Government Procurement +438334,Government Procurement,Government Procurement +438331,Government Procurement,Government Procurement +438328,Government Procurement,Government Procurement +436250,Government Procurement,Government Procurement +436248,Government Procurement,Government Procurement +435476,Government Procurement,Government Procurement +435475,Government Procurement,Government Procurement +435474,Government Procurement,Government Procurement +435473,Government Procurement,Government Procurement +435472,Government Procurement,Government Procurement +435469,Government Procurement,Government Procurement +434830,Government Procurement,Government Procurement +434828,Government Procurement,Government Procurement +434815,Government Procurement,Government Procurement +434810,Government Procurement,Government Procurement +434808,Government Procurement,Government Procurement +434039,Government Procurement,Government Procurement +432172,Government Procurement,Government Procurement +431711,Government Procurement,Government Procurement +431710,Government Procurement,Government Procurement +425494,Government Procurement,Government Procurement +425489,Government Procurement,Government Procurement +425486,Government Procurement,Government Procurement +424876,Government Procurement,Government Procurement +424860,Government Procurement,Government Procurement +424858,Government Procurement,Government Procurement +408978,International Trade,International Trade +408977,International Trade,International Trade +461890,International Trade,International Trade +461889,International Trade,International Trade +461888,International Trade,International Trade +461887,International Trade,International Trade +461886,International Trade,International Trade +461885,International Trade,International Trade +461204,International Trade,International Trade +461037,International Trade,International Trade +460855,International Trade,International Trade +423561,Security,Security +406913,Environment,Environment +406957,Employment and Training,Employment and Training +416474,Constitutional Issues,Constitutional Issues +408473,Justice and Law Enforcement,Justice and Law Enforcement +480548,Labour,Labour +407168,Transportation,Transportation +407168,International Trade,International Trade +453657,Research and Development,Research and Development +445371,Taxation and Finance,Taxation and Finance +445371,Consumer Issues,Consumer Issues +445371,Small Business,Small Business +415860,Industry,Industry +422710,Security,Security +414067,Government Procurement,Government Procurement +452853,Economic Development,Economic Development +534880,Health,Health +534871,Research and Development,Research and Development +413595,Environment,Environment +432898,Budget,Budget +432898,Economic Development,Economic Development +458602,Industry,Industry +445863,Infrastructure,Infrastructure +434226,Tourism,Tourism +492383,Regional Development,Regional Development +407046,Industry,Industry +408719,Infrastructure,Infrastructure +407056,Climate,Climate +407056,Regional Development,Regional Development +407056,Tourism,Tourism +410490,Health,Health +416963,International Trade,International Trade +416963,Taxation and Finance,Taxation and Finance +430978,Housing,Housing +409050,Research and Development,Recherche et développement +408653,Intellectual Property,Intellectual Property +411737,Industry,Industry +411737,Health,Health +410451,Health,Health +541083,Health,Health +407117,International Trade,International Trade +410434,Regional Development,Regional Development +410434,Small Business,Small Business +410434,Industry,Industry +416690,Consumer Issues,Consumer Issues +410321,Financial Institutions,Financial Institutions +410322,Industry,Industry +416690,Privacy and Access to Information,Privacy and Access to Information +410322,Taxation and Finance,Taxation and Finance +452263,Financial Institutions,Financial Institutions +452263,Taxation and Finance,Taxation and Finance +429725,Justice and Law Enforcement,Justice and Law Enforcement +424582,Consumer Issues,Consumer Issues +424582,Environment,Environment +424582,Intellectual Property,Intellectual Property +424582,Taxation and Finance,Taxation and Finance +424582,Agriculture,Agriculture +424582,Small Business,Small Business +424582,Health,Health +424582,Employment and Training,Employment and Training +424582,International Trade,International Trade +424582,Internal Trade,Internal Trade +407110,Climate,Climate +438756,International Trade,International Trade +438756,Tourism,Tourism +431263,Defence,Defence +431263,Economic Development,Economic Development +431263,Infrastructure,Infrastructure +407821,Mining,Mining +431263,Transportation,Transportation +440620,Government Procurement,Government Procurement +442204,Employment and Training,Employment and Training +407291,Environment,Environment +414019,Agriculture,Agriculture +408730,Economic Development,Economic Development +408730,Health,Health +408320,Transportation,Transportation +429034,Environment,Environment +446485,Economic Development,Economic Development +452098,Infrastructure,Infrastructure +429048,Defence,Defence +452176,Employment and Training,Employment and Training +446487,Mining,Mining +462689,Regional Development,Regional Development +418976,International Trade,International Trade +408099,Religion,Religion +422788,Infrastructure,Infrastructure +408333,Economic Development,Economic Development +410223,Infrastructure,Infrastructure +410223,Municipalities,Municipalities +408334,Regional Development,Regional Development +436528,Economic Development,Economic Development +407275,Justice and Law Enforcement,Justice and Law Enforcement +468933,Health,Health +407174,Budget,Budget +423375,Health,Health +423375,Consumer Issues,Consumer Issues +407180,Taxation and Finance,Taxation and Finance +408609,Defence,Defence +408609,Economic Development,Economic Development +408609,Employment and Training,Employment and Training +408609,Government Procurement,Government Procurement +408609,Industry,Industry +408609,Regional Development,Regional Development +407190,Research and Development,Research and Development +408300,Consumer Issues,Consumer Issues +408299,Environment,Environment +408300,Industry,Industry +408300,Infrastructure,Infrastructure +408299,Transportation,Transportation +469078,Defence,Defence +407206,Justice and Law Enforcement,Justice and Law Enforcement +434040,Economic Development,Economic Development +415983,Energy,Energy +418461,Industry,Industry +434036,Economic Development,Economic Development +415971,Energy,Energy +415971,Industry,Industry +431933,Agriculture,Agriculture +490399,Climate,Climate +499353,Consumer Issues,Consumer Issues +422575,Economic Development,Economic Development +446620,Energy,Energy +484094,Environment,Environment +418911,Health,Health +418910,Infrastructure,Infrastructure +535152,Research and Development,Research and Development +418907,Small Business,Small Business +446631,Taxation and Finance,Taxation and Finance +427083,Transportation,Transportation +408970,Economic Development,Economic Development +408972,Defence,Defence +431434,Economic Development,Economic Development +418556,Industry,Industry +429819,Infrastructure,Infrastructure +441422,International Trade,International Trade +418567,Energy,Energy +414405,Energy,Energy +425252,Infrastructure,Infrastructure +422573,Climate,Climate +513013,Environment,Environment +477266,Health,Health +419675,Justice and Law Enforcement,Justice and Law Enforcement +524166,Taxation and Finance,Taxation and Finance +407765,Taxation and Finance,Taxation and Finance +462703,Environment,Environment +421079,Taxation and Finance,Taxation and Finance +452670,Health,Health +483362,Taxation and Finance,Taxation and Finance +496585,Defence,Defence +481560,Fisheries,Fisheries +481560,Transportation,Transportation +481560,Government Procurement,Government Procurement +496585,Regional Development,Regional Development +421051,Defence,Defence +422205,Government Procurement,Government Procurement +407275,Health,Health +422413,Mining,Mining +422413,Infrastructure,Infrastructure +431320,Environment,Environment +455598,Defence,Defence +422413,Regional Development,Regional Development +422413,Economic Development,Economic Development +422413,Transportation,Transportation +418971,Fisheries,Fisheries +408964,Justice and Law Enforcement,Justice et application des lois +412434,Government Procurement,Government Procurement +497844,Health,Health +412437,Government Procurement,Government Procurement +412420,Government Procurement,Government Procurement +412431,Government Procurement,Government Procurement +411552,Economic Development,Economic Development +411552,Industry,Industry +430235,Economic Development,Economic Development +430235,Industry,Industry +423342,International Trade,International Trade +430235,Research and Development,Research and Development +423342,Security,Security +451919,Small Business,Small Business +411679,Government Procurement,Government Procurement +414322,Employment and Training,Employment and Training +414322,Industry,Industry +445659,Defence,Defence +417578,Economic Development,Economic Development +423357,Fisheries,Fisheries +423364,Government Procurement,Government Procurement +408980,International Trade,International Trade +420756,Regional Development,Regional Development +407479,Health,Health +407497,Government Procurement,Government Procurement +414756,Industry,Industry +415837,Transportation,Transportation +542318,Health,Health +454939,Environment,Environment +454941,Fisheries,Fisheries +475905,Environment,Environment +455786,Fisheries,Fisheries +465936,Budget,Budget +432994,Economic Development,Economic Development +408618,Small Business,Small Business +449591,Consumer Issues,Consumer Issues +417998,Government Procurement,Government Procurement +452681,Health,Health +442297,Justice and Law Enforcement,Justice and Law Enforcement +418261,Environment,Environment +410278,Mining,Mining +500592,Consumer Issues,Consumer Issues +463417,Economic Development,Economic Development +459343,Health,Health +483456,Justice and Law Enforcement,Justice and Law Enforcement +466750,Research and Development,Research and Development +407755,Taxation and Finance,Taxation and Finance +407751,International Trade,International Trade +410319,Taxation and Finance,Taxation and Finance +421334,International Trade,International Trade +440207,Economic Development,Economic Development +523631,Health,Health +433221,Intellectual Property,Intellectual Property +433222,Research and Development,Research and Development +415895,Economic Development,Economic Development +429634,Defence,Defence +422173,Climate,Climate +422173,Economic Development,Economic Development +422173,Energy,Energy +422173,Environment,Environment +422173,Industry,Industry +422173,Infrastructure,Infrastructure +408398,International Trade,International Trade +425170,Economic Development,Economic Development +410193,Employment and Training,Employment and Training +425780,Industry,Industry +431426,Mining,Mining +410392,Education,Education +407897,International Trade,International Trade +423425,Health,Santé +460455,International Trade,International Trade +460454,International Trade,International Trade +460245,International Trade,International Trade +458366,International Trade,International Trade +458364,International Trade,International Trade +454242,International Trade,International Trade +454222,International Trade,International Trade +454220,International Trade,International Trade +454172,International Trade,International Trade +454171,International Trade,International Trade +451629,International Trade,International Trade +449009,International Trade,International Trade +449008,International Trade,International Trade +449006,International Trade,International Trade +449005,International Trade,International Trade +447130,International Trade,International Trade +446841,International Trade,International Trade +446839,International Trade,International Trade +445664,International Trade,International Trade +445659,International Trade,International Trade +445654,International Trade,International Trade +444890,International Trade,International Trade +444889,International Trade,International Trade +444888,International Trade,International Trade +444572,International Trade,International Trade +444571,International Trade,International Trade +444570,International Trade,International Trade +444130,International Trade,International Trade +444129,International Trade,International Trade +443467,International Trade,International Trade +443466,International Trade,International Trade +443465,International Trade,International Trade +443464,International Trade,International Trade +443099,International Trade,International Trade +443098,International Trade,International Trade +440613,International Trade,International Trade +440612,International Trade,International Trade +440611,International Trade,International Trade +440610,International Trade,International Trade +440609,International Trade,International Trade +438363,International Trade,International Trade +438343,International Trade,International Trade +438339,International Trade,International Trade +438335,International Trade,International Trade +438334,International Trade,International Trade +438331,International Trade,International Trade +438328,International Trade,International Trade +436250,International Trade,International Trade +436248,International Trade,International Trade +435476,International Trade,International Trade +435475,International Trade,International Trade +435474,International Trade,International Trade +435473,International Trade,International Trade +435472,International Trade,International Trade +435469,International Trade,International Trade +434830,International Trade,International Trade +434828,International Trade,International Trade +434815,International Trade,International Trade +434810,International Trade,International Trade +434808,International Trade,International Trade +434039,International Trade,International Trade +432172,International Trade,International Trade +431711,International Trade,International Trade +431710,International Trade,International Trade +425494,International Trade,International Trade +425489,International Trade,International Trade +425486,International Trade,International Trade +424876,International Trade,International Trade +424860,International Trade,International Trade +424858,International Trade,International Trade +423364,International Trade,International Trade +423363,International Trade,International Trade +423362,International Trade,International Trade +423361,International Trade,International Trade +423357,International Trade,International Trade +423355,International Trade,International Trade +421414,International Trade,International Trade +420757,International Trade,International Trade +420756,International Trade,International Trade +420755,International Trade,International Trade +420754,International Trade,International Trade +418780,International Trade,International Trade +418775,International Trade,International Trade +417582,International Trade,International Trade +417581,International Trade,International Trade +417580,International Trade,International Trade +417579,International Trade,International Trade +417578,International Trade,International Trade +417577,International Trade,International Trade +417576,International Trade,International Trade +415471,International Trade,International Trade +415038,International Trade,International Trade +415030,International Trade,International Trade +415028,International Trade,International Trade +415026,International Trade,International Trade +415019,International Trade,International Trade +414199,International Trade,International Trade +414197,International Trade,International Trade +414196,International Trade,International Trade +414192,International Trade,International Trade +411939,International Trade,International Trade +411345,International Trade,International Trade +411344,International Trade,International Trade +411343,International Trade,International Trade +410448,International Trade,International Trade +410265,International Trade,International Trade +410262,International Trade,International Trade +410261,International Trade,International Trade +410260,International Trade,International Trade +420755,Regional Development,Regional Development +420754,Regional Development,Regional Development +418780,Regional Development,Regional Development +418775,Regional Development,Regional Development +417582,Regional Development,Regional Development +417581,Regional Development,Regional Development +417580,Regional Development,Regional Development +417579,Regional Development,Regional Development +417578,Regional Development,Regional Development +417577,Regional Development,Regional Development +417576,Regional Development,Regional Development +415471,Regional Development,Regional Development +415038,Regional Development,Regional Development +415030,Regional Development,Regional Development +415028,Regional Development,Regional Development +415026,Regional Development,Regional Development +415019,Regional Development,Regional Development +414199,Regional Development,Regional Development +414197,Regional Development,Regional Development +414196,Regional Development,Regional Development +414192,Regional Development,Regional Development +411939,Regional Development,Regional Development +411345,Regional Development,Regional Development +411344,Regional Development,Regional Development +411343,Regional Development,Regional Development +410448,Regional Development,Regional Development +410265,Regional Development,Regional Development +410262,Regional Development,Regional Development +410261,Regional Development,Regional Development +410260,Regional Development,Regional Development +408980,Regional Development,Regional Development +408978,Regional Development,Regional Development +408977,Regional Development,Regional Development +461890,Regional Development,Regional Development +461889,Regional Development,Regional Development +461888,Regional Development,Regional Development +461887,Regional Development,Regional Development +461886,Regional Development,Regional Development +461885,Regional Development,Regional Development +461204,Regional Development,Regional Development +461037,Regional Development,Regional Development +460855,Regional Development,Regional Development +460455,Regional Development,Regional Development +460454,Regional Development,Regional Development +460245,Regional Development,Regional Development +459069,Regional Development,Regional Development +459068,Regional Development,Regional Development +458366,Regional Development,Regional Development +458364,Regional Development,Regional Development +454242,Regional Development,Regional Development +454241,Regional Development,Regional Development +454222,Regional Development,Regional Development +454220,Regional Development,Regional Development +454172,Regional Development,Regional Development +454171,Regional Development,Regional Development +451629,Regional Development,Regional Development +449009,Regional Development,Regional Development +449008,Regional Development,Regional Development +449006,Regional Development,Regional Development +449005,Regional Development,Regional Development +447130,Regional Development,Regional Development +446841,Regional Development,Regional Development +446839,Regional Development,Regional Development +445664,Regional Development,Regional Development +445659,Regional Development,Regional Development +445654,Regional Development,Regional Development +444890,Regional Development,Regional Development +444889,Regional Development,Regional Development +444888,Regional Development,Regional Development +444572,Regional Development,Regional Development +444571,Regional Development,Regional Development +444570,Regional Development,Regional Development +444130,Regional Development,Regional Development +444129,Regional Development,Regional Development +443467,Regional Development,Regional Development +443466,Regional Development,Regional Development +443465,Regional Development,Regional Development +443464,Regional Development,Regional Development +443099,Regional Development,Regional Development +443098,Regional Development,Regional Development +440613,Regional Development,Regional Development +440612,Regional Development,Regional Development +440611,Regional Development,Regional Development +440610,Regional Development,Regional Development +440609,Regional Development,Regional Development +438363,Regional Development,Regional Development +438343,Regional Development,Regional Development +438339,Regional Development,Regional Development +438335,Regional Development,Regional Development +438334,Regional Development,Regional Development +438331,Regional Development,Regional Development +438328,Regional Development,Regional Development +436250,Regional Development,Regional Development +436248,Regional Development,Regional Development +435476,Regional Development,Regional Development +435475,Regional Development,Regional Development +435474,Regional Development,Regional Development +435473,Regional Development,Regional Development +435472,Regional Development,Regional Development +435469,Regional Development,Regional Development +434830,Regional Development,Regional Development +434828,Regional Development,Regional Development +434815,Regional Development,Regional Development +434810,Regional Development,Regional Development +434808,Regional Development,Regional Development +434039,Regional Development,Regional Development +432172,Regional Development,Regional Development +431711,Regional Development,Regional Development +431710,Regional Development,Regional Development +425494,Regional Development,Regional Development +425489,Regional Development,Regional Development +425486,Regional Development,Regional Development +424876,Regional Development,Regional Development +424860,Regional Development,Regional Development +424858,Regional Development,Regional Development +423364,Regional Development,Regional Development +423363,Regional Development,Regional Development +423362,Regional Development,Regional Development +423361,Regional Development,Regional Development +423357,Regional Development,Regional Development +423355,Regional Development,Regional Development +421414,Regional Development,Regional Development +420757,Regional Development,Regional Development +407490,Government Procurement,Government Procurement +415831,Transportation,Transportation +413918,Transportation,Transportation +538971,Health,Health +536286,Health,Health +501893,Health,Health +501889,Health,Health +501887,Health,Health +501886,Health,Health +485341,Health,Health +485340,Health,Health +479125,Health,Health +474994,Health,Health +474993,Health,Health +472641,Health,Health +431230,Environment,Environment +431229,Environment,Environment +505174,Environment,Environment +505171,Environment,Environment +502718,Environment,Environment +499503,Environment,Environment +468586,Environment,Environment +462656,Environment,Environment +462655,Environment,Environment +462654,Environment,Environment +462652,Environment,Environment +462651,Environment,Environment +454941,Environment,Environment +454940,Environment,Environment +454940,Fisheries,Fisheries +454939,Fisheries,Fisheries +431230,Fisheries,Fisheries +431229,Fisheries,Fisheries +505174,Fisheries,Fisheries +505171,Fisheries,Fisheries +502718,Fisheries,Fisheries +499503,Fisheries,Fisheries +468586,Fisheries,Fisheries +462656,Fisheries,Fisheries +462655,Fisheries,Fisheries +462654,Fisheries,Fisheries +462652,Fisheries,Fisheries +462651,Fisheries,Fisheries +473729,Environment,Environment +473727,Environment,Environment +464956,Environment,Environment +462660,Environment,Environment +462659,Environment,Environment +462658,Environment,Environment +462657,Environment,Environment +458906,Environment,Environment +455786,Environment,Environment +455783,Environment,Environment +433822,Environment,Environment +540822,Environment,Environment +520148,Environment,Environment +505179,Environment,Environment +505177,Environment,Environment +502909,Environment,Environment +499505,Environment,Environment +495585,Environment,Environment +493516,Environment,Environment +480137,Environment,Environment +475907,Environment,Environment +455783,Fisheries,Fisheries +433822,Fisheries,Fisheries +540822,Fisheries,Fisheries +537684,Fisheries,Fisheries +520148,Fisheries,Fisheries +508963,Fisheries,Fisheries +508947,Fisheries,Fisheries +505179,Fisheries,Fisheries +505177,Fisheries,Fisheries +502909,Fisheries,Fisheries +499505,Fisheries,Fisheries +495585,Fisheries,Fisheries +493516,Fisheries,Fisheries +488250,Fisheries,Fisheries +480137,Fisheries,Fisheries +475907,Fisheries,Fisheries +475905,Fisheries,Fisheries +473729,Fisheries,Fisheries +473727,Fisheries,Fisheries +464956,Fisheries,Fisheries +462660,Fisheries,Fisheries +462659,Fisheries,Fisheries +462658,Fisheries,Fisheries +462657,Fisheries,Fisheries +458906,Fisheries,Fisheries +463624,Budget,Budget +463622,Budget,Budget +451237,Budget,Budget +451236,Budget,Budget +451233,Budget,Budget +443077,Budget,Budget +443076,Budget,Budget +443075,Budget,Budget +443074,Budget,Budget +443073,Budget,Budget +440811,Budget,Budget +440810,Budget,Budget +434807,Budget,Budget +434802,Budget,Budget +434801,Budget,Budget +434798,Budget,Budget +434792,Budget,Budget +432994,Budget,Budget +420658,Budget,Budget +408620,Budget,Budget +408619,Budget,Budget +408618,Budget,Budget +408616,Budget,Budget +408615,Budget,Budget +490237,Budget,Budget +486420,Budget,Budget +465937,Budget,Budget +432992,Economic Development,Economic Development +431906,Economic Development,Economic Development +420658,Economic Development,Economic Development +418820,Economic Development,Economic Development +408620,Economic Development,Economic Development +408619,Economic Development,Economic Development +408618,Economic Development,Economic Development +408616,Economic Development,Economic Development +408615,Economic Development,Economic Development +500537,Economic Development,Economic Development +500536,Economic Development,Economic Development +497051,Economic Development,Economic Development +497049,Economic Development,Economic Development +490237,Economic Development,Economic Development +490234,Economic Development,Economic Development +486420,Economic Development,Economic Development +476972,Economic Development,Economic Development +472575,Economic Development,Economic Development +472574,Economic Development,Economic Development +472573,Economic Development,Economic Development +465942,Economic Development,Economic Development +465941,Economic Development,Economic Development +465940,Economic Development,Economic Development +465938,Economic Development,Economic Development +465936,Economic Development,Economic Development +463624,Economic Development,Economic Development +463623,Economic Development,Economic Development +463622,Economic Development,Economic Development +451237,Economic Development,Economic Development +451234,Economic Development,Economic Development +443077,Economic Development,Economic Development +443076,Economic Development,Economic Development +443075,Economic Development,Economic Development +443074,Economic Development,Economic Development +443073,Economic Development,Economic Development +440811,Economic Development,Economic Development +440810,Economic Development,Economic Development +434807,Economic Development,Economic Development +434802,Economic Development,Economic Development +434801,Economic Development,Economic Development +434798,Economic Development,Economic Development +434792,Economic Development,Economic Development +408616,Small Business,Small Business +408615,Small Business,Small Business +434807,Small Business,Small Business +408620,Small Business,Small Business +408619,Small Business,Small Business +442297,Consumer Issues,Consumer Issues +416491,Consumer Issues,Consumer Issues +452681,Consumer Issues,Consumer Issues +449593,Consumer Issues,Consumer Issues +412220,Government Procurement,Government Procurement +409883,Government Procurement,Government Procurement +452681,Government Procurement,Government Procurement +418036,Government Procurement,Government Procurement +418034,Government Procurement,Government Procurement +449593,Health,Health +449591,Health,Health +442297,Health,Health +435245,Health,Health +423825,Health,Health +416491,Health,Health +435245,Justice and Law Enforcement,Justice and Law Enforcement +412220,Justice and Law Enforcement,Justice and Law Enforcement +452681,Justice and Law Enforcement,Justice and Law Enforcement +413605,Environment,Environment +413603,Environment,Environment +418268,Environment,Environment +418267,Environment,Environment +418263,Environment,Environment +410277,Mining,Mining +410266,Mining,Mining +483456,Consumer Issues,Consumer Issues +469225,Consumer Issues,Consumer Issues +462907,Economic Development,Economic Development +459343,Economic Development,Economic Development +500592,Economic Development,Economic Development +483456,Economic Development,Economic Development +483038,Economic Development,Economic Development +481730,Economic Development,Economic Development +478432,Economic Development,Economic Development +471812,Economic Development,Economic Development +469547,Economic Development,Economic Development +469210,Economic Development,Economic Development +469056,Economic Development,Economic Development +468795,Economic Development,Economic Development +468794,Economic Development,Economic Development +468718,Economic Development,Economic Development +468713,Economic Development,Economic Development +468712,Economic Development,Economic Development +468701,Economic Development,Economic Development +468687,Economic Development,Economic Development +468635,Economic Development,Economic Development +468598,Economic Development,Economic Development +466759,Economic Development,Economic Development +466750,Economic Development,Economic Development +459342,Health,Health +500592,Health,Health +483456,Health,Health +469250,Health,Health +468718,Health,Health +468713,Health,Health +468712,Health,Health +468635,Health,Health +468598,Health,Health +466767,Health,Health +466759,Health,Health +466750,Health,Health +465611,Health,Health +463417,Health,Health +476164,Justice and Law Enforcement,Justice and Law Enforcement +466757,Justice and Law Enforcement,Justice and Law Enforcement +407749,Taxation and Finance,Taxation and Finance +407746,Taxation and Finance,Taxation and Finance +461878,Taxation and Finance,Taxation and Finance +410308,Taxation and Finance,Taxation and Finance +407757,Taxation and Finance,Taxation and Finance +421333,International Trade,International Trade +440206,Economic Development,Economic Development +440205,Economic Development,Economic Development +433231,Economic Development,Economic Development +433230,Economic Development,Economic Development +433229,Economic Development,Economic Development +433228,Economic Development,Economic Development +433227,Economic Development,Economic Development +433226,Economic Development,Economic Development +433225,Economic Development,Economic Development +433224,Economic Development,Economic Development +433223,Economic Development,Economic Development +433222,Economic Development,Economic Development +433221,Economic Development,Economic Development +433220,Economic Development,Economic Development +447035,Economic Development,Economic Development +447034,Economic Development,Economic Development +447033,Economic Development,Economic Development +447032,Economic Development,Economic Development +447030,Economic Development,Economic Development +444411,Economic Development,Economic Development +444410,Economic Development,Economic Development +444409,Economic Development,Economic Development +442796,Economic Development,Economic Development +442795,Economic Development,Economic Development +442793,Economic Development,Economic Development +440208,Economic Development,Economic Development +523595,Health,Health +516121,Health,Health +420970,Health,Health +420969,Health,Health +420968,Health,Health +420967,Health,Health +420966,Health,Health +420965,Health,Health +516015,Health,Health +500466,Health,Health +500123,Health,Health +494594,Health,Health +493912,Health,Health +485816,Health,Health +485815,Health,Health +485814,Health,Health +481820,Health,Health +478477,Health,Health +447035,Health,Health +447034,Health,Health +447033,Health,Health +447032,Health,Health +447030,Health,Health +444411,Health,Health +444410,Health,Health +444409,Health,Health +442796,Health,Health +442795,Health,Health +442793,Health,Health +442783,Health,Health +440208,Health,Health +440207,Health,Health +440206,Health,Health +440205,Health,Health +436555,Health,Health +433231,Health,Health +433230,Health,Health +433229,Health,Health +433228,Health,Health +433227,Health,Health +433226,Health,Health +433225,Health,Health +433224,Health,Health +433223,Health,Health +433222,Health,Health +433221,Health,Health +433220,Health,Health +524796,Health,Health +524604,Health,Health +524599,Health,Health +524594,Health,Health +433220,Intellectual Property,Intellectual Property +440207,Intellectual Property,Intellectual Property +436555,Intellectual Property,Intellectual Property +433231,Intellectual Property,Intellectual Property +433230,Intellectual Property,Intellectual Property +433229,Intellectual Property,Intellectual Property +433228,Intellectual Property,Intellectual Property +433227,Intellectual Property,Intellectual Property +433226,Intellectual Property,Intellectual Property +433225,Intellectual Property,Intellectual Property +433224,Intellectual Property,Intellectual Property +433223,Intellectual Property,Intellectual Property +433222,Intellectual Property,Intellectual Property +433221,Research and Development,Research and Development +433220,Research and Development,Research and Development +420967,Research and Development,Research and Development +420966,Research and Development,Research and Development +493912,Research and Development,Research and Development +485815,Research and Development,Research and Development +485814,Research and Development,Research and Development +485585,Research and Development,Research and Development +478477,Research and Development,Research and Development +447035,Research and Development,Research and Development +444411,Research and Development,Research and Development +444410,Research and Development,Research and Development +444409,Research and Development,Research and Development +442796,Research and Development,Research and Development +442793,Research and Development,Research and Development +440208,Research and Development,Research and Development +440207,Research and Development,Research and Development +440206,Research and Development,Research and Development +440205,Research and Development,Research and Development +433231,Research and Development,Research and Development +433230,Research and Development,Research and Development +433229,Research and Development,Research and Development +433228,Research and Development,Research and Development +433227,Research and Development,Research and Development +433226,Research and Development,Research and Development +433225,Research and Development,Research and Development +433224,Research and Development,Research and Development +415893,Economic Development,Economic Development +415892,Economic Development,Economic Development +407783,Economic Development,Economic Development +533410,Economic Development,Economic Development +533408,Economic Development,Economic Development +464222,Economic Development,Economic Development +464220,Economic Development,Economic Development +464215,Economic Development,Economic Development +464214,Economic Development,Economic Development +464209,Economic Development,Economic Development +439954,Economic Development,Economic Development +439953,Economic Development,Economic Development +439952,Economic Development,Economic Development +439949,Economic Development,Economic Development +439947,Economic Development,Economic Development +439946,Economic Development,Economic Development +439899,Economic Development,Economic Development +439897,Economic Development,Economic Development +439896,Economic Development,Economic Development +439893,Economic Development,Economic Development +431787,Economic Development,Economic Development +431786,Economic Development,Economic Development +431785,Economic Development,Economic Development +431784,Economic Development,Economic Development +431782,Economic Development,Economic Development +431781,Economic Development,Economic Development +431778,Economic Development,Economic Development +427869,Economic Development,Economic Development +427867,Economic Development,Economic Development +427863,Economic Development,Economic Development +427862,Economic Development,Economic Development +427861,Economic Development,Economic Development +427860,Economic Development,Economic Development +427859,Economic Development,Economic Development +418727,Economic Development,Economic Development +408525,Defence,Defence +492242,Defence,Defence +439516,Defence,Defence +419109,Climate,Climate +419109,Economic Development,Economic Development +419109,Energy,Energy +419109,Environment,Environment +419109,Industry,Industry +419109,Infrastructure,Infrastructure +408103,International Trade,International Trade +422528,International Trade,International Trade +413481,International Trade,International Trade +413473,International Trade,International Trade +413455,International Trade,International Trade +425156,Economic Development,Economic Development +410193,Economic Development,Economic Development +431426,Economic Development,Economic Development +431425,Economic Development,Economic Development +431424,Economic Development,Economic Development +425790,Economic Development,Economic Development +425784,Economic Development,Economic Development +425780,Economic Development,Economic Development +425174,Economic Development,Economic Development +425172,Economic Development,Economic Development +425156,Industry,Industry +410193,Industry,Industry +431426,Industry,Industry +431425,Industry,Industry +431424,Industry,Industry +431425,Mining,Mining +431424,Mining,Mining +425795,Mining,Mining +425790,Mining,Mining +425784,Mining,Mining +425780,Mining,Mining +425174,Mining,Mining +425172,Mining,Mining +425170,Mining,Mining +425156,Mining,Mining +410741,Mining,Mining +410193,Mining,Mining +427528,Infrastructure,Infrastructure +427525,Infrastructure,Infrastructure +412139,Infrastructure,Infrastructure +412113,Infrastructure,Infrastructure +411917,Infrastructure,Infrastructure +411886,Infrastructure,Infrastructure +408732,Infrastructure,Infrastructure +428820,Budget,Budget +412956,Budget,Budget +472086,Budget,Budget +472084,Budget,Budget +472083,Budget,Budget +472082,Budget,Budget +472081,Budget,Budget +472079,Budget,Budget +441410,Budget,Budget +441409,Budget,Budget +441408,Budget,Budget +441406,Budget,Budget +441405,Budget,Budget +441403,Budget,Budget +441402,Budget,Budget +441400,Budget,Budget +441359,Budget,Budget +441358,Budget,Budget +441356,Budget,Budget +435099,Budget,Budget +430414,Budget,Budget +428825,Infrastructure,Infrastructure +428820,Infrastructure,Infrastructure +443662,Infrastructure,Infrastructure +441410,Infrastructure,Infrastructure +441409,Infrastructure,Infrastructure +441408,Infrastructure,Infrastructure +441406,Infrastructure,Infrastructure +441405,Infrastructure,Infrastructure +441403,Infrastructure,Infrastructure +441402,Infrastructure,Infrastructure +441400,Infrastructure,Infrastructure +441359,Infrastructure,Infrastructure +441358,Infrastructure,Infrastructure +441356,Infrastructure,Infrastructure +435102,Infrastructure,Infrastructure +435099,Infrastructure,Infrastructure +428820,Research and Development,Research and Development +412956,Research and Development,Research and Development +443662,Research and Development,Research and Development +430414,Research and Development,Research and Development +418758,Economic Development,Economic Development +521873,Climate,Climate +409075,Economic Development,Economic Development +521873,Economic Development,Economic Development +417721,Energy,Energy +409075,Energy,Energy +409075,Research and Development,Research and Development +408081,Environment,Environment +408079,Environment,Environment +408084,Environment,Environment +408081,Labour,Labour +408079,Labour,Labour +408084,Labour,Labour +409101,International Trade,International Trade +518700,Immigration,Immigration +410509,Small Business,Small Business +410507,Small Business,Small Business +425230,Small Business,Small Business +422770,Small Business,Small Business +422497,Small Business,Small Business +418481,Small Business,Small Business +410946,Small Business,Small Business +410519,Small Business,Small Business +410517,Small Business,Small Business +410515,Small Business,Small Business +410513,Small Business,Small Business +410509,Taxation and Finance,Taxation and Finance +410507,Taxation and Finance,Taxation and Finance +427397,Taxation and Finance,Taxation and Finance +425230,Taxation and Finance,Taxation and Finance +422770,Taxation and Finance,Taxation and Finance +422497,Taxation and Finance,Taxation and Finance +418481,Taxation and Finance,Taxation and Finance +410946,Taxation and Finance,Taxation and Finance +410519,Taxation and Finance,Taxation and Finance +410517,Taxation and Finance,Taxation and Finance +410515,Taxation and Finance,Taxation and Finance +410513,Taxation and Finance,Taxation and Finance +408473,Immigration,Immigration +449026,Economic Development,Economic Development +409009,Taxation and Finance,Taxation and Finance +409008,Taxation and Finance,Taxation and Finance +449026,Taxation and Finance,Taxation and Finance +424783,Taxation and Finance,Taxation and Finance +424782,Taxation and Finance,Taxation and Finance +423181,Taxation and Finance,Taxation and Finance +423180,Taxation and Finance,Taxation and Finance +423178,Taxation and Finance,Taxation and Finance +423177,Taxation and Finance,Taxation and Finance +419912,Taxation and Finance,Taxation and Finance +419911,Taxation and Finance,Taxation and Finance +419531,Taxation and Finance,Taxation and Finance +415046,Taxation and Finance,Taxation and Finance +409017,Taxation and Finance,Taxation and Finance +409016,Taxation and Finance,Taxation and Finance +442956,Economic Development,Economic Development +442955,Economic Development,Economic Development +442955,Education,Education +442955,Employment and Training,Employment and Training +442954,Employment and Training,Employment and Training +432890,Consumer Issues,Consumer Issues +432891,Economic Development,Economic Development +432890,Economic Development,Economic Development +408605,Infrastructure,Infrastructure +408358,Infrastructure,Infrastructure +408605,Municipalities,Municipalities +408358,Municipalities,Municipalities +415336,Municipalities,Municipalities +415335,Municipalities,Municipalities +415333,Municipalities,Municipalities +415331,Municipalities,Municipalities +415328,Municipalities,Municipalities +415327,Municipalities,Municipalities +415324,Municipalities,Municipalities +415323,Municipalities,Municipalities +415321,Municipalities,Municipalities +415318,Municipalities,Municipalities +411608,Municipalities,Municipalities +411606,Municipalities,Municipalities +441055,Energy,Energy +536665,Climate,Climate +534621,Climate,Climate +511883,Climate,Climate +511883,Energy,Energy +483920,Energy,Energy +536665,Energy,Energy +511883,Infrastructure,Infrastructure +483920,Infrastructure,Infrastructure +536665,Infrastructure,Infrastructure +410763,Intellectual Property,Intellectual Property +410759,Intellectual Property,Intellectual Property +418788,Intellectual Property,Intellectual Property +418778,Intellectual Property,Intellectual Property +418555,Intellectual Property,Intellectual Property +418554,Intellectual Property,Intellectual Property +458764,Energy,Energy +543590,Energy,Energy +507948,Energy,Energy +477805,Energy,Energy +463974,Energy,Energy +463972,Energy,Energy +463971,Energy,Energy +463969,Energy,Energy +463965,Energy,Energy +462542,Energy,Energy +452996,Taxation and Finance,Taxation and Finance +452993,Taxation and Finance,Taxation and Finance +413915,Taxation and Finance,Taxation and Finance +540470,Taxation and Finance,Taxation and Finance +526085,Taxation and Finance,Taxation and Finance +502816,Taxation and Finance,Taxation and Finance +493805,Taxation and Finance,Taxation and Finance +491022,Economic Development,Economic Development +473741,Economic Development,Economic Development +452996,Economic Development,Economic Development +452993,Economic Development,Economic Development +431193,Economic Development,Economic Development +431193,Industry,Industry +431193,Infrastructure,Infrastructure +431193,Regional Development,Regional Development +412442,Agriculture,Agriculture +412441,Agriculture,Agriculture +412440,Agriculture,Agriculture +408889,Agriculture,Agriculture +408888,Agriculture,Agriculture +423748,Agriculture,Agriculture +423747,Agriculture,Agriculture +423746,Agriculture,Agriculture +419291,Agriculture,Agriculture +419290,Agriculture,Agriculture +419289,Agriculture,Agriculture +417437,Agriculture,Agriculture +416865,Agriculture,Agriculture +416863,Agriculture,Agriculture +416861,Agriculture,Agriculture +412445,Agriculture,Agriculture +412444,Agriculture,Agriculture +423747,Consumer Issues,Consumer Issues +423746,Consumer Issues,Consumer Issues +419291,Consumer Issues,Consumer Issues +419290,Consumer Issues,Consumer Issues +419289,Consumer Issues,Consumer Issues +417437,Consumer Issues,Consumer Issues +416865,Consumer Issues,Consumer Issues +416863,Consumer Issues,Consumer Issues +416861,Consumer Issues,Consumer Issues +412445,Consumer Issues,Consumer Issues +412444,Consumer Issues,Consumer Issues +412443,Consumer Issues,Consumer Issues +412442,Consumer Issues,Consumer Issues +412441,Consumer Issues,Consumer Issues +412440,Consumer Issues,Consumer Issues +408889,Consumer Issues,Consumer Issues +408888,Consumer Issues,Consumer Issues +410200,Consumer Issues,Consumer Issues +410199,Consumer Issues,Consumer Issues +410202,Consumer Issues,Consumer Issues +410201,Pensions,Pensions +410201,Taxation and Finance,Taxation and Finance +460798,Agriculture,Agriculture +420626,Small Business,Small Business +432093,Consumer Issues,Consumer Issues +431020,Consumer Issues,Consumer Issues +438430,Consumer Issues,Consumer Issues +435243,Consumer Issues,Consumer Issues +435238,Consumer Issues,Consumer Issues +435231,Consumer Issues,Consumer Issues +433468,Consumer Issues,Consumer Issues +433460,Consumer Issues,Consumer Issues +495463,Employment and Training,Employment and Training +472950,Employment and Training,Employment and Training +438430,Employment and Training,Employment and Training +438422,Employment and Training,Employment and Training +438418,Employment and Training,Employment and Training +438413,Employment and Training,Employment and Training +435243,Employment and Training,Employment and Training +435238,Employment and Training,Employment and Training +435231,Employment and Training,Employment and Training +433468,Employment and Training,Employment and Training +433460,Employment and Training,Employment and Training +433446,Employment and Training,Employment and Training +432093,Employment and Training,Employment and Training +431020,Employment and Training,Employment and Training +423823,Employment and Training,Employment and Training +419090,Employment and Training,Employment and Training +511069,Employment and Training,Employment and Training +498923,Employment and Training,Employment and Training +438430,Industry,Industry +438422,Industry,Industry +438418,Industry,Industry +438413,Industry,Industry +435243,Industry,Industry +435238,Industry,Industry +435231,Industry,Industry +433460,Industry,Industry +433446,Industry,Industry +432093,Industry,Industry +431020,Industry,Industry +423823,Industry,Industry +511069,Industry,Industry +498923,Industry,Industry +495463,Industry,Industry +419090,Labour,Labour +418039,Labour,Labour +544120,Labour,Labour +532162,Labour,Labour +514058,Labour,Labour +504777,Labour,Labour +504770,Labour,Labour +502103,Labour,Labour +502090,Labour,Labour +498923,Labour,Labour +464569,Labour,Labour +438430,Labour,Labour +438422,Labour,Labour +438418,Labour,Labour +438413,Labour,Labour +435243,Labour,Labour +435238,Labour,Labour +435231,Labour,Labour +433468,Labour,Labour +433460,Labour,Labour +433446,Labour,Labour +432093,Labour,Labour +431020,Labour,Labour +423823,Tourism,Tourism +502103,Transportation,Transportation +502090,Transportation,Transportation +495463,Transportation,Transportation +438430,Transportation,Transportation +438422,Transportation,Transportation +438418,Transportation,Transportation +438413,Transportation,Transportation +435243,Transportation,Transportation +435238,Transportation,Transportation +435231,Transportation,Transportation +433468,Transportation,Transportation +433460,Transportation,Transportation +433446,Transportation,Transportation +432093,Transportation,Transportation +431020,Transportation,Transportation +423823,Transportation,Transportation +419090,Transportation,Transportation +504777,Transportation,Transportation +408891,Agriculture,Agriculture +408890,Agriculture,Agriculture +423752,Agriculture,Agriculture +423751,Agriculture,Agriculture +423750,Agriculture,Agriculture +419294,Agriculture,Agriculture +419293,Agriculture,Agriculture +419292,Agriculture,Agriculture +417438,Agriculture,Agriculture +416870,Agriculture,Agriculture +416868,Agriculture,Agriculture +416867,Agriculture,Agriculture +412454,Agriculture,Agriculture +412453,Agriculture,Agriculture +412452,Agriculture,Agriculture +412451,Agriculture,Agriculture +412450,Agriculture,Agriculture +408891,Consumer Issues,Consumer Issues +408890,Consumer Issues,Consumer Issues +423752,Consumer Issues,Consumer Issues +423751,Consumer Issues,Consumer Issues +423750,Consumer Issues,Consumer Issues +419294,Consumer Issues,Consumer Issues +419293,Consumer Issues,Consumer Issues +419292,Consumer Issues,Consumer Issues +417438,Consumer Issues,Consumer Issues +416870,Consumer Issues,Consumer Issues +416868,Consumer Issues,Consumer Issues +416867,Consumer Issues,Consumer Issues +412454,Consumer Issues,Consumer Issues +412453,Consumer Issues,Consumer Issues +412452,Consumer Issues,Consumer Issues +412451,Consumer Issues,Consumer Issues +412450,Consumer Issues,Consumer Issues +410875,Financial Institutions,Financial Institutions +466155,Climate,Climate +466153,Climate,Climate +526816,Climate,Climate +526815,Climate,Climate +524143,Climate,Climate +524142,Climate,Climate +524007,Climate,Climate +524006,Climate,Climate +524005,Climate,Climate +524004,Climate,Climate +523899,Climate,Climate +523416,Climate,Climate +523415,Climate,Climate +523414,Climate,Climate +520674,Climate,Climate +518899,Climate,Climate +518895,Climate,Climate +518889,Climate,Climate +518888,Climate,Climate +518887,Climate,Climate +518885,Climate,Climate +518884,Climate,Climate +518883,Climate,Climate +518881,Climate,Climate +518880,Climate,Climate +518879,Climate,Climate +515078,Climate,Climate +514865,Climate,Climate +513710,Climate,Climate +513379,Climate,Climate +497641,Climate,Climate +496910,Climate,Climate +496908,Climate,Climate +496907,Climate,Climate +482600,Climate,Climate +468315,Climate,Climate +466155,Economic Development,Economic Development +466153,Economic Development,Economic Development +540698,Economic Development,Economic Development +540697,Economic Development,Economic Development +540696,Economic Development,Economic Development +540694,Economic Development,Economic Development +540693,Economic Development,Economic Development +526816,Economic Development,Economic Development +526815,Economic Development,Economic Development +524143,Economic Development,Economic Development +524142,Economic Development,Economic Development +524007,Economic Development,Economic Development +524006,Economic Development,Economic Development +524005,Economic Development,Economic Development +524004,Economic Development,Economic Development +523899,Economic Development,Economic Development +523416,Economic Development,Economic Development +523415,Economic Development,Economic Development +523414,Economic Development,Economic Development +520674,Economic Development,Economic Development +518900,Economic Development,Economic Development +518899,Economic Development,Economic Development +518896,Economic Development,Economic Development +518895,Economic Development,Economic Development +518893,Economic Development,Economic Development +518889,Economic Development,Economic Development +518888,Economic Development,Economic Development +518887,Economic Development,Economic Development +518885,Economic Development,Economic Development +518884,Economic Development,Economic Development +518883,Economic Development,Economic Development +518881,Economic Development,Economic Development +518880,Economic Development,Economic Development +518879,Economic Development,Economic Development +518878,Economic Development,Economic Development +515078,Economic Development,Economic Development +514865,Economic Development,Economic Development +513710,Economic Development,Economic Development +513383,Economic Development,Economic Development +513382,Economic Development,Economic Development +513379,Economic Development,Economic Development +513374,Economic Development,Economic Development +509182,Economic Development,Economic Development +509178,Economic Development,Economic Development +509176,Economic Development,Economic Development +497641,Economic Development,Economic Development +496911,Economic Development,Economic Development +496909,Economic Development,Economic Development +496908,Economic Development,Economic Development +496907,Economic Development,Economic Development +482623,Economic Development,Economic Development +482620,Economic Development,Economic Development +482619,Economic Development,Economic Development +482617,Economic Development,Economic Development +482615,Economic Development,Economic Development +482613,Economic Development,Economic Development +482612,Economic Development,Economic Development +482600,Economic Development,Economic Development +468316,Economic Development,Economic Development +468315,Economic Development,Economic Development +482612,Energy,Energy +482600,Energy,Energy +468316,Energy,Energy +468315,Energy,Energy +466158,Energy,Energy +466155,Energy,Energy +466153,Energy,Energy +526816,Energy,Energy +526815,Energy,Energy +524143,Energy,Energy +524142,Energy,Energy +524007,Energy,Energy +524006,Energy,Energy +524005,Energy,Energy +524004,Energy,Energy +523899,Energy,Energy +523416,Energy,Energy +523415,Energy,Energy +523414,Energy,Energy +520674,Energy,Energy +518900,Energy,Energy +518899,Energy,Energy +518895,Energy,Energy +518893,Energy,Energy +518889,Energy,Energy +518888,Energy,Energy +518887,Energy,Energy +518885,Energy,Energy +518884,Energy,Energy +518883,Energy,Energy +518881,Energy,Energy +518880,Energy,Energy +518879,Energy,Energy +518878,Energy,Energy +514865,Energy,Energy +513710,Energy,Energy +513383,Energy,Energy +513382,Energy,Energy +513379,Energy,Energy +513374,Energy,Energy +497641,Energy,Energy +496910,Energy,Energy +496908,Energy,Energy +496907,Energy,Energy +482623,Energy,Energy +482620,Energy,Energy +482619,Energy,Energy +482617,Energy,Energy +482615,Energy,Energy +482600,Environment,Environment +466158,Environment,Environment +518899,Environment,Environment +518895,Environment,Environment +518889,Environment,Environment +518888,Environment,Environment +518887,Environment,Environment +518885,Environment,Environment +518884,Environment,Environment +518883,Environment,Environment +518881,Environment,Environment +518880,Environment,Environment +518879,Environment,Environment +518878,Environment,Environment +513710,Environment,Environment +513379,Environment,Environment +518895,Industry,Industry +518893,Industry,Industry +518889,Industry,Industry +518888,Industry,Industry +518887,Industry,Industry +518885,Industry,Industry +518884,Industry,Industry +518883,Industry,Industry +518881,Industry,Industry +518880,Industry,Industry +518879,Industry,Industry +518878,Industry,Industry +515078,Industry,Industry +514865,Industry,Industry +513710,Industry,Industry +513383,Industry,Industry +513382,Industry,Industry +513379,Industry,Industry +513374,Industry,Industry +497641,Industry,Industry +496911,Industry,Industry +496910,Industry,Industry +496908,Industry,Industry +496907,Industry,Industry +482623,Industry,Industry +482620,Industry,Industry +482619,Industry,Industry +482617,Industry,Industry +482615,Industry,Industry +482613,Industry,Industry +482612,Industry,Industry +482600,Industry,Industry +468316,Industry,Industry +468315,Industry,Industry +466158,Industry,Industry +466155,Industry,Industry +466153,Industry,Industry +540698,Industry,Industry +526816,Industry,Industry +526815,Industry,Industry +524143,Industry,Industry +524142,Industry,Industry +524007,Industry,Industry +524006,Industry,Industry +524005,Industry,Industry +524004,Industry,Industry +523899,Industry,Industry +523416,Industry,Industry +523415,Industry,Industry +523414,Industry,Industry +520674,Industry,Industry +518900,Industry,Industry +423819,Employment and Training,Employment and Training +423816,Employment and Training,Employment and Training +423819,Immigration,Immigration +423816,Immigration,Immigration +423819,Labour,Labour +423816,Labour,Labour +408309,Economic Development,Economic Development +408308,Economic Development,Economic Development +534612,International Trade,International Trade +534593,International Trade,International Trade +413269,Intellectual Property,Intellectual Property +439648,Taxation and Finance,Taxation and Finance +439635,Taxation and Finance,Taxation and Finance +439634,Taxation and Finance,Taxation and Finance +439633,Taxation and Finance,Taxation and Finance +439632,Taxation and Finance,Taxation and Finance +439627,Taxation and Finance,Taxation and Finance +439625,Taxation and Finance,Taxation and Finance +439624,Taxation and Finance,Taxation and Finance +439619,Taxation and Finance,Taxation and Finance +436001,Taxation and Finance,Taxation and Finance +433811,Taxation and Finance,Taxation and Finance +427872,Taxation and Finance,Taxation and Finance +426770,Taxation and Finance,Taxation and Finance +426745,Taxation and Finance,Taxation and Finance +423012,Taxation and Finance,Taxation and Finance +423011,Taxation and Finance,Taxation and Finance +423010,Taxation and Finance,Taxation and Finance +416343,Taxation and Finance,Taxation and Finance +416342,Taxation and Finance,Taxation and Finance +416325,Taxation and Finance,Taxation and Finance +416324,Taxation and Finance,Taxation and Finance +416323,Taxation and Finance,Taxation and Finance +416322,Taxation and Finance,Taxation and Finance +416320,Taxation and Finance,Taxation and Finance +412595,Taxation and Finance,Taxation and Finance +412591,Taxation and Finance,Taxation and Finance +412574,Taxation and Finance,Taxation and Finance +412572,Taxation and Finance,Taxation and Finance +412554,Taxation and Finance,Taxation and Finance +412551,Taxation and Finance,Taxation and Finance +412546,Taxation and Finance,Taxation and Finance +412542,Taxation and Finance,Taxation and Finance +408357,Taxation and Finance,Taxation and Finance +492222,Taxation and Finance,Taxation and Finance +492219,Taxation and Finance,Taxation and Finance +492217,Taxation and Finance,Taxation and Finance +492193,Taxation and Finance,Taxation and Finance +492192,Taxation and Finance,Taxation and Finance +492191,Taxation and Finance,Taxation and Finance +492190,Taxation and Finance,Taxation and Finance +492189,Taxation and Finance,Taxation and Finance +492188,Taxation and Finance,Taxation and Finance +492187,Taxation and Finance,Taxation and Finance +492186,Taxation and Finance,Taxation and Finance +492184,Taxation and Finance,Taxation and Finance +492183,Taxation and Finance,Taxation and Finance +492182,Taxation and Finance,Taxation and Finance +492181,Taxation and Finance,Taxation and Finance +492178,Taxation and Finance,Taxation and Finance +492177,Taxation and Finance,Taxation and Finance +492176,Taxation and Finance,Taxation and Finance +492175,Taxation and Finance,Taxation and Finance +492174,Taxation and Finance,Taxation and Finance +492173,Taxation and Finance,Taxation and Finance +492172,Taxation and Finance,Taxation and Finance +492171,Taxation and Finance,Taxation and Finance +492165,Taxation and Finance,Taxation and Finance +492158,Taxation and Finance,Taxation and Finance +492157,Taxation and Finance,Taxation and Finance +492156,Taxation and Finance,Taxation and Finance +492155,Taxation and Finance,Taxation and Finance +492154,Taxation and Finance,Taxation and Finance +492153,Taxation and Finance,Taxation and Finance +492150,Taxation and Finance,Taxation and Finance +492149,Taxation and Finance,Taxation and Finance +492147,Taxation and Finance,Taxation and Finance +488399,Taxation and Finance,Taxation and Finance +481178,Taxation and Finance,Taxation and Finance +469063,Taxation and Finance,Taxation and Finance +464688,Taxation and Finance,Taxation and Finance +464685,Taxation and Finance,Taxation and Finance +464683,Taxation and Finance,Taxation and Finance +464682,Taxation and Finance,Taxation and Finance +464678,Taxation and Finance,Taxation and Finance +462002,Taxation and Finance,Taxation and Finance +456537,Taxation and Finance,Taxation and Finance +453084,Taxation and Finance,Taxation and Finance +442408,Taxation and Finance,Taxation and Finance +442390,Taxation and Finance,Taxation and Finance +439683,Taxation and Finance,Taxation and Finance +439682,Taxation and Finance,Taxation and Finance +439680,Taxation and Finance,Taxation and Finance +439679,Taxation and Finance,Taxation and Finance +439678,Taxation and Finance,Taxation and Finance +439676,Taxation and Finance,Taxation and Finance +439665,Taxation and Finance,Taxation and Finance +439663,Taxation and Finance,Taxation and Finance +439661,Taxation and Finance,Taxation and Finance +439660,Taxation and Finance,Taxation and Finance +439657,Taxation and Finance,Taxation and Finance +439654,Taxation and Finance,Taxation and Finance +439653,Taxation and Finance,Taxation and Finance +439650,Taxation and Finance,Taxation and Finance +499056,Climate,Climate +490329,Climate,Climate +432092,Climate,Climate +426062,Climate,Climate +419105,Climate,Climate +541371,Climate,Climate +541371,Consumer Issues,Consumer Issues +541370,Consumer Issues,Consumer Issues +432092,Consumer Issues,Consumer Issues +426062,Consumer Issues,Consumer Issues +541370,Economic Development,Economic Development +499056,Economic Development,Economic Development +432092,Economic Development,Economic Development +419105,Economic Development,Economic Development +426062,Environment,Environment +419105,Environment,Environment +419105,Government Procurement,Government Procurement +541371,Industry,Industry +541370,Industry,Industry +432092,Industry,Industry +432092,Infrastructure,Infrastructure +495721,International Trade,International Trade +490335,International Trade,International Trade +419105,International Trade,International Trade +432092,International Trade,International Trade +541371,International Trade,International Trade +419105,Research and Development,Research and Development +490329,Transportation,Transportation +484478,Transportation,Transportation +432092,Transportation,Transportation +426062,Transportation,Transportation +419105,Transportation,Transportation +412223,Transportation,Transportation +541371,Transportation,Transportation +541370,Transportation,Transportation +412283,Infrastructure,Infrastructure +412253,Infrastructure,Infrastructure +420198,Infrastructure,Infrastructure +420196,Infrastructure,Infrastructure +420193,Infrastructure,Infrastructure +413455,Industry,Industry +408398,Industry,Industry +417203,Industry,Industry +413481,Industry,Industry +408398,Economic Development,Economic Development +422528,Economic Development,Economic Development +417203,Economic Development,Economic Development +413481,Economic Development,Economic Development +413473,Economic Development,Economic Development +408401,Taxation and Finance,Taxation and Finance +408400,Taxation and Finance,Taxation and Finance +408404,Taxation and Finance,Taxation and Finance +408403,Taxation and Finance,Taxation and Finance +434943,Budget,Budget +432791,Budget,Budget +411120,Immigration,Immigration +410361,Immigration,Immigration +411437,Agriculture,Agriculture +450375,Agriculture,Agriculture +439420,Agriculture,Agriculture +429603,Agriculture,Agriculture +411509,Taxation and Finance,Taxation and Finance +414163,Health,Health +454103,Small Business,Small Business +454101,Small Business,Small Business +442922,Small Business,Small Business +442832,Small Business,Small Business +442831,Small Business,Small Business +428134,Small Business,Small Business +428132,Small Business,Small Business +428131,Small Business,Small Business +428130,Small Business,Small Business +428127,Small Business,Small Business +428125,Small Business,Small Business +415839,Small Business,Small Business +415836,Small Business,Small Business +413424,Small Business,Small Business +413421,Small Business,Small Business +410023,Small Business,Small Business +410022,Small Business,Small Business +410020,Small Business,Small Business +410019,Small Business,Small Business +410018,Small Business,Small Business +454763,Small Business,Small Business +454762,Small Business,Small Business +454761,Small Business,Small Business +454107,Small Business,Small Business +454106,Small Business,Small Business +454105,Small Business,Small Business +427463,Economic Development,Economic Development +419210,Health,Health +418692,Health,Health +417460,Health,Health +410548,Health,Health +496586,Health,Health +453362,Health,Health +453361,Health,Health +445204,Health,Health +444150,Health,Health +441054,Health,Health +434938,Health,Health +428636,Health,Health +427463,Health,Health +420346,International Relations,International Relations +415600,International Relations,International Relations +415596,International Relations,International Relations +415593,International Relations,International Relations +415589,International Relations,International Relations +415586,International Relations,International Relations +415582,International Relations,International Relations +415576,International Relations,International Relations +412868,International Relations,International Relations +412866,International Relations,International Relations +412864,International Relations,International Relations +412863,International Relations,International Relations +412860,International Relations,International Relations +412846,International Relations,International Relations +412845,International Relations,International Relations +412790,International Relations,International Relations +431792,International Relations,International Relations +430024,International Relations,International Relations +430023,International Relations,International Relations +430013,International Relations,International Relations +429176,International Relations,International Relations +429158,International Relations,International Relations +429153,International Relations,International Relations +429123,International Relations,International Relations +427496,International Relations,International Relations +425510,International Relations,International Relations +420459,International Relations,International Relations +420349,International Relations,International Relations +412790,International Trade,International Trade +431792,International Trade,International Trade +430024,International Trade,International Trade +430023,International Trade,International Trade +430013,International Trade,International Trade +429176,International Trade,International Trade +429158,International Trade,International Trade +429153,International Trade,International Trade +429123,International Trade,International Trade +417827,International Trade,International Trade +415600,International Trade,International Trade +415596,International Trade,International Trade +415593,International Trade,International Trade +415589,International Trade,International Trade +415586,International Trade,International Trade +415582,International Trade,International Trade +415576,International Trade,International Trade +412868,International Trade,International Trade +412866,International Trade,International Trade +412864,International Trade,International Trade +412863,International Trade,International Trade +412860,International Trade,International Trade +528005,Taxation and Finance,Taxation and Finance +528003,Taxation and Finance,Taxation and Finance +412845,Taxation and Finance,Taxation and Finance +518986,Taxation and Finance,Taxation and Finance +516703,Taxation and Finance,Taxation and Finance +516702,Taxation and Finance,Taxation and Finance +516701,Taxation and Finance,Taxation and Finance +514998,Taxation and Finance,Taxation and Finance +514997,Taxation and Finance,Taxation and Finance +514996,Taxation and Finance,Taxation and Finance +510013,Taxation and Finance,Taxation and Finance +510011,Taxation and Finance,Taxation and Finance +510009,Taxation and Finance,Taxation and Finance +510008,Taxation and Finance,Taxation and Finance +507797,Taxation and Finance,Taxation and Finance +507792,Taxation and Finance,Taxation and Finance +506137,Taxation and Finance,Taxation and Finance +506136,Taxation and Finance,Taxation and Finance +506135,Taxation and Finance,Taxation and Finance +504317,Taxation and Finance,Taxation and Finance +504307,Taxation and Finance,Taxation and Finance +500878,Taxation and Finance,Taxation and Finance +500876,Taxation and Finance,Taxation and Finance +500875,Taxation and Finance,Taxation and Finance +497527,Taxation and Finance,Taxation and Finance +497526,Taxation and Finance,Taxation and Finance +497525,Taxation and Finance,Taxation and Finance +497523,Taxation and Finance,Taxation and Finance +497521,Taxation and Finance,Taxation and Finance +494615,Taxation and Finance,Taxation and Finance +494614,Taxation and Finance,Taxation and Finance +492301,Taxation and Finance,Taxation and Finance +492300,Taxation and Finance,Taxation and Finance +489969,Taxation and Finance,Taxation and Finance +489954,Taxation and Finance,Taxation and Finance +489949,Taxation and Finance,Taxation and Finance +489944,Taxation and Finance,Taxation and Finance +489936,Taxation and Finance,Taxation and Finance +489931,Taxation and Finance,Taxation and Finance +489930,Taxation and Finance,Taxation and Finance +489929,Taxation and Finance,Taxation and Finance +489268,Taxation and Finance,Taxation and Finance +486278,Taxation and Finance,Taxation and Finance +486274,Taxation and Finance,Taxation and Finance +486272,Taxation and Finance,Taxation and Finance +486263,Taxation and Finance,Taxation and Finance +486261,Taxation and Finance,Taxation and Finance +486256,Taxation and Finance,Taxation and Finance +486254,Taxation and Finance,Taxation and Finance +486253,Taxation and Finance,Taxation and Finance +486250,Taxation and Finance,Taxation and Finance +483441,Taxation and Finance,Taxation and Finance +483439,Taxation and Finance,Taxation and Finance +483436,Taxation and Finance,Taxation and Finance +455832,Taxation and Finance,Taxation and Finance +538357,Taxation and Finance,Taxation and Finance +538356,Taxation and Finance,Taxation and Finance +532057,Taxation and Finance,Taxation and Finance +532056,Taxation and Finance,Taxation and Finance +532053,Taxation and Finance,Taxation and Finance +532052,Taxation and Finance,Taxation and Finance +420272,Industry,Industry +420261,Industry,Industry +438965,Industry,Industry +420272,Taxation and Finance,Taxation and Finance +420261,Taxation and Finance,Taxation and Finance +411127,Infrastructure,Infrastructure +411126,Infrastructure,Infrastructure +420732,Infrastructure,Infrastructure +420731,Infrastructure,Infrastructure +420730,Infrastructure,Infrastructure +420729,Infrastructure,Infrastructure +411127,Health,Health +411126,Health,Health +420732,Health,Health +420731,Health,Health +420730,Health,Health +420729,Health,Health +408542,Labour,Labour +408542,Taxation and Finance,Taxation and Finance +417709,Labour,Labour +417708,Labour,Labour +417709,Transportation,Transportation +417708,Transportation,Transportation +411279,Government Procurement,Government Procurement +409849,Government Procurement,Government Procurement +475467,Intellectual Property,Intellectual Property +471681,Intellectual Property,Intellectual Property +442045,Intellectual Property,Intellectual Property +439628,Intellectual Property,Intellectual Property +439626,Intellectual Property,Intellectual Property +520533,Intellectual Property,Intellectual Property +491895,Intellectual Property,Intellectual Property +491892,Intellectual Property,Intellectual Property +491890,Intellectual Property,Intellectual Property +491889,Intellectual Property,Intellectual Property +491888,Intellectual Property,Intellectual Property +488820,Intellectual Property,Intellectual Property +488819,Intellectual Property,Intellectual Property +480581,Intellectual Property,Intellectual Property +527224,International Development,International Development +520533,International Development,International Development +515153,International Development,International Development +507854,International Development,International Development +501385,International Development,International Development +499877,International Development,International Development +496258,International Development,International Development +496257,International Development,International Development +496256,International Development,International Development +493963,International Development,International Development +491895,International Development,International Development +491892,International Development,International Development +491890,International Development,International Development +491889,International Development,International Development +491888,International Development,International Development +488821,International Development,International Development +488820,International Development,International Development +488819,International Development,International Development +486510,International Development,International Development +480581,International Development,International Development +475476,International Development,International Development +475467,International Development,International Development +471682,International Development,International Development +471681,International Development,International Development +471679,International Development,International Development +458946,International Development,International Development +451193,International Development,International Development +451190,International Development,International Development +442205,International Development,International Development +442045,International Development,International Development +430403,International Development,International Development +430402,International Development,International Development +430399,International Development,International Development +427713,International Development,International Development +426841,International Development,International Development +423291,International Development,International Development +419692,International Development,International Development +419691,International Development,International Development +410281,International Development,International Development +410280,International Development,International Development +410279,International Development,International Development +544837,International Development,International Development +542349,International Development,International Development +542348,International Development,International Development +540699,International Development,International Development +533491,International Development,International Development +532372,International Development,International Development +532371,International Development,International Development +410281,Research and Development,Research and Development +515153,Research and Development,Research and Development +491895,Research and Development,Research and Development +491892,Research and Development,Research and Development +491890,Research and Development,Research and Development +491889,Research and Development,Research and Development +491888,Research and Development,Research and Development +488820,Research and Development,Research and Development +488819,Research and Development,Research and Development +486510,Research and Development,Research and Development +480581,Research and Development,Research and Development +475476,Research and Development,Research and Development +475467,Research and Development,Research and Development +471682,Research and Development,Research and Development +471681,Research and Development,Research and Development +471679,Research and Development,Research and Development +442045,Research and Development,Research and Development +439628,Research and Development,Research and Development +439626,Research and Development,Research and Development +430403,Research and Development,Research and Development +417168,Education,Éducation +417162,Education,Éducation +411342,Education,Éducation +408729,Education,Éducation +408624,Education,Éducation +408575,Education,Éducation +429701,Education,Éducation +425236,Education,Éducation +420829,Education,Éducation +420242,Education,Éducation +418715,Education,Éducation +418347,Education,Éducation +418279,Education,Éducation +418278,Education,Éducation +463606,Official Languages,Langues officielles +463604,Official Languages,Langues officielles +429701,Official Languages,Langues officielles +427882,Official Languages,Langues officielles +427881,Official Languages,Langues officielles +427880,Official Languages,Langues officielles +427460,Official Languages,Langues officielles +427353,Official Languages,Langues officielles +427350,Official Languages,Langues officielles +427065,Official Languages,Langues officielles +425236,Official Languages,Langues officielles +425235,Official Languages,Langues officielles +422740,Official Languages,Langues officielles +420829,Official Languages,Langues officielles +420242,Official Languages,Langues officielles +418963,Official Languages,Langues officielles +418715,Official Languages,Langues officielles +418347,Official Languages,Langues officielles +418279,Official Languages,Langues officielles +418278,Official Languages,Langues officielles +418277,Official Languages,Langues officielles +417168,Official Languages,Langues officielles +417162,Official Languages,Langues officielles +411725,Official Languages,Langues officielles +408729,Official Languages,Langues officielles +408624,Official Languages,Langues officielles +408576,Official Languages,Langues officielles +408575,Official Languages,Langues officielles +468824,Official Languages,Langues officielles +468822,Official Languages,Langues officielles +468820,Official Languages,Langues officielles +468818,Official Languages,Langues officielles +466396,Official Languages,Langues officielles +466393,Official Languages,Langues officielles +466128,Official Languages,Langues officielles +465420,Official Languages,Langues officielles +465418,Official Languages,Langues officielles +418346,Education,Éducation +411341,Education,Éducation +422883,Education,Éducation +420245,Education,Éducation +419509,Education,Éducation +418276,Education,Éducation +417169,Education,Éducation +417163,Education,Éducation +414705,Education,Éducation +408578,Education,Éducation +483255,Education,Éducation +453726,Education,Éducation +451463,Education,Éducation +451462,Education,Éducation +451252,Education,Éducation +433634,Education,Éducation +417169,Official Languages,Langues officielles +417163,Official Languages,Langues officielles +414705,Official Languages,Langues officielles +483255,Official Languages,Langues officielles +453726,Official Languages,Langues officielles +451463,Official Languages,Langues officielles +451462,Official Languages,Langues officielles +451252,Official Languages,Langues officielles +433634,Official Languages,Langues officielles +422942,Official Languages,Langues officielles +422883,Official Languages,Langues officielles +420830,Official Languages,Langues officielles +420245,Official Languages,Langues officielles +419509,Official Languages,Langues officielles +411124,Financial Institutions,Financial Institutions +411124,Housing,Housing +411124,Taxation and Finance,Taxation and Finance +411924,Housing,Housing +411922,Housing,Housing +415673,Housing,Housing +415671,Housing,Housing +415647,Housing,Housing +412141,Housing,Housing +411924,Municipalities,Municipalities +411922,Municipalities,Municipalities +415673,Municipalities,Municipalities +415671,Municipalities,Municipalities +415647,Municipalities,Municipalities +412141,Municipalities,Municipalities +411924,Taxation and Finance,Taxation and Finance +411922,Taxation and Finance,Taxation and Finance +415673,Taxation and Finance,Taxation and Finance +415671,Taxation and Finance,Taxation and Finance +415647,Taxation and Finance,Taxation and Finance +412141,Taxation and Finance,Taxation and Finance +428634,Health,Health +414282,Health,Health +414282,Economic Development,Economic Development +410773,Environment,Environment +422713,Environment,Environment +437797,Consumer Issues,Consumer Issues +423023,Consumer Issues,Consumer Issues +423022,Consumer Issues,Consumer Issues +423021,Consumer Issues,Consumer Issues +421571,Consumer Issues,Consumer Issues +414524,Health,Health +410746,Health,Health +437797,Health,Health +437796,Health,Health +423023,Health,Health +423022,Health,Health +423021,Health,Health +421571,Health,Health +421570,Health,Health +414539,Health,Health +414538,Health,Health +414537,Health,Health +414526,Health,Health +414525,Justice and Law Enforcement,Justice and Law Enforcement +414524,Justice and Law Enforcement,Justice and Law Enforcement +437796,Justice and Law Enforcement,Justice and Law Enforcement +423023,Justice and Law Enforcement,Justice and Law Enforcement +423021,Justice and Law Enforcement,Justice and Law Enforcement +421571,Justice and Law Enforcement,Justice and Law Enforcement +421570,Justice and Law Enforcement,Justice and Law Enforcement +414539,Justice and Law Enforcement,Justice and Law Enforcement +414538,Justice and Law Enforcement,Justice and Law Enforcement +414537,Justice and Law Enforcement,Justice and Law Enforcement +412448,International Trade,International Trade +412448,Climate,Climate +412446,Climate,Climate +417788,Agriculture,Agriculture +412448,Agriculture,Agriculture +412448,Economic Development,Economic Development +412446,Economic Development,Economic Development +412448,Environment,Environment +412446,Transportation,Transportation +412448,Energy,Energy +412446,Energy,Energy +411668,Agriculture,Agriculture +411667,Agriculture,Agriculture +423621,Agriculture,Agriculture +411668,International Trade,International Trade +411667,International Trade,International Trade +423621,International Trade,International Trade +411668,Taxation and Finance,Taxation and Finance +411667,Taxation and Finance,Taxation and Finance +423621,Taxation and Finance,Taxation and Finance +411667,Tourism,Tourism +423621,Tourism,Tourism +411669,Tourism,Tourism +408819,International Trade,International Trade +417990,Infrastructure,Infrastructure +411477,Infrastructure,Infrastructure +480912,International Trade,International Trade +479190,International Trade,International Trade +483557,International Trade,International Trade +482665,International Trade,International Trade +482664,International Trade,International Trade +481709,International Trade,International Trade +480912,Taxation and Finance,Taxation and Finance +479190,Taxation and Finance,Taxation and Finance +483557,Taxation and Finance,Taxation and Finance +482665,Taxation and Finance,Taxation and Finance +482664,Taxation and Finance,Taxation and Finance +423456,Health,Health +482788,Government Procurement,Government Procurement +503743,Health,Health +413079,Government Procurement,Government Procurement +427531,Infrastructure,Infrastructure +428825,Budget,Budget +430414,Infrastructure,Infrastructure +428825,Research and Development,Research and Development +418759,Economic Development,Economic Development +417721,Climate,Climate +417721,Economic Development,Economic Development +521873,Energy,Energy +409075,Health,Health +521873,Industry,Industry +417721,Research and Development,Research and Development +408082,Environment,Environment +408082,Labour,Labour +408103,Industry,Industry +409105,International Trade,International Trade +408159,Tourism,Tourism +408186,Immigration,Immigration +408493,Environment,Environment +410511,Small Business,Small Business +410511,Taxation and Finance,Taxation and Finance +411054,Immigration,Immigration +454148,Economic Development,Economic Development +409015,Taxation and Finance,Taxation and Finance +442954,Economic Development,Economic Development +442956,Education,Education +442956,Employment and Training,Employment and Training +442956,Labour,Labour +442955,Small Business,Small Business +462071,Consumer Issues,Consumer Issues +462071,Economic Development,Economic Development +432891,Government Procurement,Government Procurement +432891,Security,Security +440584,Climate,Climate +425487,Infrastructure,Infrastructure +411605,Municipalities,Municipalities +441057,Energy,Energy +483920,Climate,Climate +534621,Energy,Energy +534621,Infrastructure,Infrastructure +408244,Mining,Mining +418463,Intellectual Property,Intellectual Property +458766,Energy,Energy +458766,Taxation and Finance,Taxation and Finance +502816,Financial Institutions,Financial Institutions +491022,Small Business,Small Business +491022,Taxation and Finance,Taxation and Finance +493805,Economic Development,Economic Development +450108,Economic Development,Economic Development +450108,Industry,Industry +450108,Infrastructure,Infrastructure +431193,Labour,Labour +450108,Regional Development,Regional Development +412443,Agriculture,Agriculture +423748,Consumer Issues,Consumer Issues +410201,Consumer Issues,Consumer Issues +410202,Pensions,Pensions +410202,Taxation and Finance,Taxation and Finance +503052,Agriculture,Agriculture +503052,Climate,Climate +460798,Employment and Training,Employment and Training +460798,Research and Development,Research and Development +420696,Small Business,Small Business +433446,Consumer Issues,Consumer Issues +498915,Employment and Training,Employment and Training +464569,Industry,Industry +423823,Labour,Labour +432093,Tourism,Tourism +504770,Transportation,Transportation +412449,Agriculture,Agriculture +412449,Consumer Issues,Consumer Issues +427446,Financial Institutions,Financial Institutions +466158,Climate,Climate +466158,Economic Development,Economic Development +482613,Energy,Energy +496911,Environment,Environment +518899,Industry,Industry +417056,Taxation and Finance,Taxation and Finance +423816,Economic Development,Economic Development +423816,Education,Education +423822,Employment and Training,Employment and Training +423822,Immigration,Immigration +423822,Labour,Labour +408310,Economic Development,Economic Development +424375,Economic Development,Economic Development +410298,International Trade,International Trade +413270,Intellectual Property,Intellectual Property +439649,Taxation and Finance,Taxation and Finance +541370,Climate,Climate +419105,Consumer Issues,Consumer Issues +541371,Economic Development,Economic Development +432092,Environment,Environment +432092,Government Procurement,Government Procurement +419105,Industry,Industry +419105,Infrastructure,Infrastructure +432092,Internal Trade,Internal Trade +541370,International Trade,International Trade +432092,Research and Development,Research and Development +419105,Taxation and Finance,Taxation and Finance +495722,Transportation,Transportation +408382,International Relations,International Relations +416025,Infrastructure,Infrastructure +413473,Industry,Industry +413455,Economic Development,Economic Development +408402,Taxation and Finance,Taxation and Finance +434944,Budget,Budget +411121,Immigration,Immigration +439794,Transportation,Transportation +411552,Climate,Climate +411552,Environment,Environment +411552,Government Procurement,Government Procurement +411552,Infrastructure,Infrastructure +429602,Agriculture,Agriculture +422874,Taxation and Finance,Taxation and Finance +422971,Industry,Industry +419945,Health,Health +454104,Small Business,Small Business +428636,Economic Development,Economic Development +424750,Health,Health +427463,Justice and Law Enforcement,Justice and Law Enforcement +427463,Taxation and Finance,Taxation and Finance +420348,International Relations,International Relations +412846,International Trade,International Trade +530017,Taxation and Finance,Taxation and Finance +409288,Energy,Energy +409288,Transportation,Transportation +443772,Internal Trade,Internal Trade +420277,Industry,Industry +420277,Taxation and Finance,Taxation and Finance +420728,Infrastructure,Infrastructure +420728,Health,Health +414721,Education,Éducation +408543,Labour,Labour +408543,Taxation and Finance,Taxation and Finance +410364,Economic Development,Economic Development +410404,Transportation,Transportation +417710,Labour,Labour +417710,Transportation,Transportation +411280,Government Procurement,Government Procurement +475476,Intellectual Property,Intellectual Property +527228,International Development,International Development +427713,Research and Development,Research and Development +418277,Education,Éducation +463608,Official Languages,Langues officielles +408577,Education,Éducation +418346,Official Languages,Langues officielles +422942,Education,Éducation +418276,Official Languages,Langues officielles +411125,Financial Institutions,Financial Institutions +411125,Housing,Housing +411125,Taxation and Finance,Taxation and Finance +408892,Agriculture,Agriculture +408892,Consumer Issues,Consumer Issues +408894,Agriculture,Agriculture +408894,Consumer Issues,Consumer Issues +411925,Housing,Housing +411925,Municipalities,Municipalities +411925,Taxation and Finance,Taxation and Finance +416379,Economic Development,Economic Development +416379,Housing,Housing +416379,Municipalities,Municipalities +410198,Justice and Law Enforcement,Justice and Law Enforcement +410198,Health,Health +428634,Economic Development,Economic Development +464705,Environment,Environment +413856,International Trade,International Trade +409852,Health,Health +418407,Environment,Environment +410773,Transportation,Transportation +411369,Taxation and Finance,Taxation and Finance +411552,Municipalities,Municipalities +421570,Consumer Issues,Consumer Issues +414525,Health,Health +414526,Justice and Law Enforcement,Justice and Law Enforcement +420303,Budget,Budget +411841,Government Procurement,Government Procurement +417788,International Trade,International Trade +417788,Climate,Climate +412446,Agriculture,Agriculture +417788,Economic Development,Economic Development +417788,Environment,Environment +417788,Transportation,Transportation +417788,Energy,Energy +411669,Agriculture,Agriculture +423621,International Relations,International Relations +411669,International Trade,International Trade +411669,Taxation and Finance,Taxation and Finance +411668,Tourism,Tourism +408820,International Trade,International Trade +424278,Infrastructure,Infrastructure +479190,International Relations,International Relations +480916,International Trade,International Trade +481709,Taxation and Finance,Taxation and Finance +411492,International Trade,International Trade +423456,Government Procurement,Government Procurement +484999,Health,Health +423456,Justice and Law Enforcement,Justice and Law Enforcement +410437,Agriculture,Agriculture +410437,International Trade,International Trade +410437,Transportation,Transportation +484894,Government Procurement,Government Procurement +504647,Health,Health +413087,Government Procurement,Government Procurement +413079,Health,Health +418010,Justice and Law Enforcement,Justice and Law Enforcement +432653,Budget,Budget +429765,Economic Development,Economic Development +429765,Environment,Environment +429763,Housing,Housing +429765,Industry,Industry +429763,Infrastructure,Infrastructure +488477,Labour,Labour +433652,Municipalities,Municipalities +432653,Regional Development,Regional Development +430444,Research and Development,Research and Development +432654,Small Business,Small Business +411175,Taxation and Finance,Taxation and Finance +411175,Tourism,Tourism +432654,Transportation,Transportation +408940,Taxation and Finance,Taxation and Finance +414292,Education,Education +414292,Intellectual Property,Intellectual Property +414292,International Trade,International Trade +416292,Budget,Budget +416292,Economic Development,Economic Development +416292,Health,Health +416292,Industry,Industry +416290,International Trade,International Trade +416290,Research and Development,Research and Development +416289,Taxation and Finance,Taxation and Finance +424585,Budget,Budget +416295,Health,Health +416295,Research and Development,Research and Development +415790,Taxation and Finance,Taxation and Finance +413077,Government Procurement,Government Procurement +434165,Government Procurement,Government Procurement +418012,Government Procurement,Government Procurement +418010,Government Procurement,Government Procurement +418008,Government Procurement,Government Procurement +413106,Government Procurement,Government Procurement +413099,Government Procurement,Government Procurement +413077,Health,Health +434165,Health,Health +418012,Health,Health +418010,Health,Health +418008,Health,Health +418008,Justice and Law Enforcement,Justice and Law Enforcement +413077,Justice and Law Enforcement,Justice and Law Enforcement +418012,Justice and Law Enforcement,Justice and Law Enforcement +411175,Budget,Budget +488477,Budget,Budget +436434,Budget,Budget +432656,Budget,Budget +432654,Budget,Budget +429763,Economic Development,Economic Development +488477,Economic Development,Economic Development +411175,Economic Development,Economic Development +436434,Economic Development,Economic Development +433652,Economic Development,Economic Development +432656,Economic Development,Economic Development +432655,Economic Development,Economic Development +432654,Economic Development,Economic Development +432653,Economic Development,Economic Development +432651,Economic Development,Economic Development +430446,Economic Development,Economic Development +430444,Economic Development,Economic Development +429763,Environment,Environment +411175,Environment,Environment +488477,Environment,Environment +432655,Environment,Environment +432654,Environment,Environment +432653,Environment,Environment +432651,Environment,Environment +430444,Environment,Environment +411175,Housing,Housing +488477,Housing,Housing +436434,Housing,Housing +433652,Housing,Housing +432656,Housing,Housing +432655,Housing,Housing +432654,Housing,Housing +432653,Housing,Housing +432651,Housing,Housing +430444,Housing,Housing +429765,Housing,Housing +429763,Industry,Industry +436434,Industry,Industry +432655,Industry,Industry +411175,Infrastructure,Infrastructure +488477,Infrastructure,Infrastructure +436434,Infrastructure,Infrastructure +433652,Infrastructure,Infrastructure +432656,Infrastructure,Infrastructure +432655,Infrastructure,Infrastructure +432654,Infrastructure,Infrastructure +432653,Infrastructure,Infrastructure +432651,Infrastructure,Infrastructure +430446,Infrastructure,Infrastructure +430444,Infrastructure,Infrastructure +429765,Infrastructure,Infrastructure +432653,Municipalities,Municipalities +411175,Municipalities,Municipalities +488477,Municipalities,Municipalities +430446,Regional Development,Regional Development +429765,Regional Development,Regional Development +436434,Regional Development,Regional Development +433652,Regional Development,Regional Development +432656,Regional Development,Regional Development +432654,Regional Development,Regional Development +429765,Research and Development,Research and Development +411175,Research and Development,Research and Development +488477,Research and Development,Research and Development +436434,Research and Development,Research and Development +433652,Research and Development,Research and Development +432656,Research and Development,Research and Development +432655,Research and Development,Research and Development +432654,Research and Development,Research and Development +432653,Research and Development,Research and Development +432651,Research and Development,Research and Development +430446,Research and Development,Research and Development +429763,Small Business,Small Business +411175,Small Business,Small Business +488477,Small Business,Small Business +432656,Small Business,Small Business +432655,Small Business,Small Business +488477,Taxation and Finance,Taxation and Finance +488477,Tourism,Tourism +432655,Tourism,Tourism +432654,Tourism,Tourism +432653,Tourism,Tourism +432651,Tourism,Tourism +429763,Tourism,Tourism +432651,Transportation,Transportation +429763,Transportation,Transportation +432656,Transportation,Transportation +432655,Transportation,Transportation +416290,Budget,Budget +416289,Budget,Budget +416290,Economic Development,Economic Development +416290,Health,Health +416288,Health,Health +416290,Industry,Industry +416289,Industry,Industry +416289,Research and Development,Research and Development +416288,Research and Development,Research and Development +416292,Research and Development,Research and Development +424584,Budget,Budget +424583,Budget,Budget +424588,Budget,Budget +424587,Budget,Budget +424586,Budget,Budget +416294,Health,Health +416293,Health,Health +424588,Health,Health +424587,Health,Health +424586,Health,Health +424585,Health,Health +424584,Health,Health +424583,Health,Health +416296,Health,Health +416294,Research and Development,Research and Development +416293,Research and Development,Research and Development +424588,Research and Development,Research and Development +424587,Research and Development,Research and Development +424586,Research and Development,Research and Development +424585,Research and Development,Research and Development +424584,Research and Development,Research and Development +424583,Research and Development,Research and Development +416296,Research and Development,Research and Development +413742,Taxation and Finance,Taxation and Finance +413740,Taxation and Finance,Taxation and Finance +460923,Taxation and Finance,Taxation and Finance +426607,Taxation and Finance,Taxation and Finance +418002,Taxation and Finance,Taxation and Finance +415886,Taxation and Finance,Taxation and Finance +415884,Taxation and Finance,Taxation and Finance +415883,Taxation and Finance,Taxation and Finance +415881,Taxation and Finance,Taxation and Finance +415879,Taxation and Finance,Taxation and Finance +415876,Taxation and Finance,Taxation and Finance +415870,Taxation and Finance,Taxation and Finance +415869,Taxation and Finance,Taxation and Finance +415868,Taxation and Finance,Taxation and Finance +415867,Taxation and Finance,Taxation and Finance +415864,Taxation and Finance,Taxation and Finance +415859,Taxation and Finance,Taxation and Finance +415855,Taxation and Finance,Taxation and Finance +415852,Taxation and Finance,Taxation and Finance +415848,Taxation and Finance,Taxation and Finance +415845,Taxation and Finance,Taxation and Finance +415841,Taxation and Finance,Taxation and Finance +415805,Taxation and Finance,Taxation and Finance +415803,Taxation and Finance,Taxation and Finance +415799,Taxation and Finance,Taxation and Finance +415797,Taxation and Finance,Taxation and Finance +415794,Taxation and Finance,Taxation and Finance +415792,Taxation and Finance,Taxation and Finance +409540,Health,Santé +422431,Government Procurement,Government Procurement +422420,Government Procurement,Government Procurement +506176,Economic Development,Economic Development +506175,Economic Development,Economic Development +479124,Economic Development,Economic Development +474122,Economic Development,Economic Development +522414,Economic Development,Economic Development +526121,Health,Health +512113,Health,Health +479124,Health,Health +454485,Health,Health +454484,Health,Health +454483,Health,Health +454482,Health,Health +434879,Health,Health +434877,Health,Health +419566,Health,Health +415634,Health,Health +454483,Research and Development,Research and Development +454482,Research and Development,Research and Development +434880,Research and Development,Research and Development +434879,Research and Development,Research and Development +434877,Research and Development,Research and Development +434875,Research and Development,Research and Development +419567,Research and Development,Research and Development +419566,Research and Development,Research and Development +415634,Research and Development,Research and Development +415632,Research and Development,Research and Development +409539,Research and Development,Research and Development +528952,Research and Development,Research and Development +528947,Research and Development,Research and Development +528944,Research and Development,Research and Development +526131,Research and Development,Research and Development +526121,Research and Development,Research and Development +522414,Research and Development,Research and Development +512113,Research and Development,Research and Development +506177,Research and Development,Research and Development +506176,Research and Development,Research and Development +506175,Research and Development,Research and Development +494768,Research and Development,Research and Development +479124,Research and Development,Research and Development +454485,Research and Development,Research and Development +414102,Education,Education +414101,Education,Education +414224,Education,Education +414223,Education,Education +414102,Employment and Training,Employment and Training +414101,Employment and Training,Employment and Training +414224,Employment and Training,Employment and Training +414223,Employment and Training,Employment and Training +414101,Industry,Industry +414224,Industry,Industry +414223,Industry,Industry +414103,Industry,Industry +414102,Labour,Labour +414101,Labour,Labour +414224,Labour,Labour +414223,Labour,Labour +464679,Industry,Industry +464675,Industry,Industry +464669,Industry,Industry +464658,Industry,Industry +464650,Industry,Industry +464639,Industry,Industry +464633,Industry,Industry +464628,Industry,Industry +464622,Industry,Industry +464617,Industry,Industry +464603,Industry,Industry +455971,Industry,Industry +455960,Industry,Industry +455932,Industry,Industry +455913,Industry,Industry +448793,Industry,Industry +433424,Industry,Industry +433422,Industry,Industry +433207,Industry,Industry +433206,Industry,Industry +427626,Industry,Industry +470238,Industry,Industry +460030,Employment and Training,Employment and Training +459486,Employment and Training,Employment and Training +455135,Employment and Training,Employment and Training +425954,Employment and Training,Employment and Training +424091,Employment and Training,Employment and Training +421912,Employment and Training,Employment and Training +421902,Employment and Training,Employment and Training +420180,Employment and Training,Employment and Training +525424,Employment and Training,Employment and Training +498881,Employment and Training,Employment and Training +481791,Employment and Training,Employment and Training +479724,Employment and Training,Employment and Training +503141,International Trade,International Trade +490917,International Trade,International Trade +503141,Mining,Mining +490917,Mining,Mining +422145,Tourism,Tourism +429017,Health,Health +429015,Health,Health +423952,Health,Health +423950,Health,Health +423948,Health,Health +416995,Health,Health +416993,Health,Health +437201,Infrastructure,Infrastructure +427530,Infrastructure,Infrastructure +411914,Infrastructure,Infrastructure +411912,Infrastructure,Infrastructure +475050,Industry,Industry +464525,Industry,Industry +434958,Industry,Industry +411003,Industry,Industry +409563,Industry,Industry +490324,Industry,Industry +490321,Industry,Industry +490316,Industry,Industry +488365,Industry,Industry +484268,Industry,Industry +481427,Industry,Industry +479864,Industry,Industry +477546,Industry,Industry +442124,Financial Institutions,Financial Institutions +442123,Financial Institutions,Financial Institutions +412564,Financial Institutions,Financial Institutions +412559,Financial Institutions,Financial Institutions +466339,Economic Development,Economic Development +421542,Industry,Industry +421539,Industry,Industry +421548,Industry,Industry +421546,Industry,Industry +421544,Industry,Industry +411782,Budget,Budget +411781,Budget,Budget +427864,Budget,Budget +420172,Budget,Budget +416775,Budget,Budget +415456,Budget,Budget +415453,Budget,Budget +411787,Budget,Budget +411786,Budget,Budget +411784,Budget,Budget +415456,Climate,Climate +415453,Climate,Climate +411787,Climate,Climate +411786,Climate,Climate +411784,Climate,Climate +411783,Climate,Climate +411782,Climate,Climate +411781,Climate,Climate +458811,Climate,Climate +458809,Climate,Climate +458801,Climate,Climate +427864,Climate,Climate +420185,Climate,Climate +420184,Climate,Climate +420182,Climate,Climate +420172,Climate,Climate +420171,Climate,Climate +420167,Climate,Climate +411786,Research and Development,Research and Development +411783,Research and Development,Research and Development +475330,Research and Development,Research and Development +458811,Research and Development,Research and Development +458809,Research and Development,Research and Development +458801,Research and Development,Research and Development +427864,Research and Development,Research and Development +415456,Research and Development,Research and Development +415453,Research and Development,Research and Development +412207,Agriculture,Agriculture +412206,Agriculture,Agriculture +433725,Agriculture,Agriculture +430793,Agriculture,Agriculture +428528,Agriculture,Agriculture +426142,Agriculture,Agriculture +423807,Agriculture,Agriculture +421504,Agriculture,Agriculture +421500,Agriculture,Agriculture +421474,Agriculture,Agriculture +411202,Health,Health +411202,Taxation and Finance,Taxation and Finance +535848,Security,Security +535836,Security,Security +438910,Security,Security +438904,Security,Security +438894,Security,Security +431037,Security,Security +416314,Security,Security +410044,Security,Security +438910,Defence,Defence +416096,Defence,Defence +537577,Defence,Defence +522648,Defence,Defence +464303,Defence,Defence +442119,Financial Institutions,Financial Institutions +412649,Financial Institutions,Financial Institutions +412645,Financial Institutions,Financial Institutions +412642,Financial Institutions,Financial Institutions +412641,Financial Institutions,Financial Institutions +418551,International Trade,International Trade +410235,International Trade,International Trade +430139,Taxation and Finance,Taxation and Finance +430138,Taxation and Finance,Taxation and Finance +430134,Taxation and Finance,Taxation and Finance +427408,Taxation and Finance,Taxation and Finance +427407,Taxation and Finance,Taxation and Finance +427406,Taxation and Finance,Taxation and Finance +427399,Taxation and Finance,Taxation and Finance +427324,Taxation and Finance,Taxation and Finance +427323,Taxation and Finance,Taxation and Finance +425921,Taxation and Finance,Taxation and Finance +424074,Taxation and Finance,Taxation and Finance +424067,Taxation and Finance,Taxation and Finance +424049,Taxation and Finance,Taxation and Finance +421977,Taxation and Finance,Taxation and Finance +411185,Taxation and Finance,Taxation and Finance +411185,Industry,Industry +411184,Industry,Industry +429714,Industry,Industry +429713,Industry,Industry +429712,Industry,Industry +429710,Industry,Industry +422815,Industry,Industry +422814,Industry,Industry +422813,Industry,Industry +421977,Industry,Industry +421974,Industry,Industry +421974,Consumer Issues,Consumer Issues +418740,Consumer Issues,Consumer Issues +429714,Consumer Issues,Consumer Issues +429713,Consumer Issues,Consumer Issues +429712,Consumer Issues,Consumer Issues +429710,Consumer Issues,Consumer Issues +422815,Consumer Issues,Consumer Issues +422814,Consumer Issues,Consumer Issues +422813,Consumer Issues,Consumer Issues +421977,Justice and Law Enforcement,Justice and Law Enforcement +421974,Justice and Law Enforcement,Justice and Law Enforcement +422815,Justice and Law Enforcement,Justice and Law Enforcement +422814,Justice and Law Enforcement,Justice and Law Enforcement +452188,Financial Institutions,Financial Institutions +452186,Financial Institutions,Financial Institutions +422815,Financial Institutions,Financial Institutions +422814,Financial Institutions,Financial Institutions +422813,Financial Institutions,Financial Institutions +421977,Financial Institutions,Financial Institutions +421974,Financial Institutions,Financial Institutions +418740,Financial Institutions,Financial Institutions +411185,Financial Institutions,Financial Institutions +421974,Privacy and Access to Information,Privacy and Access to Information +417271,Agriculture,Agriculture +410329,Agriculture,Agriculture +417282,Agriculture,Agriculture +417280,Agriculture,Agriculture +417276,Agriculture,Agriculture +444328,Environment,Environment +420199,Housing,Housing +420143,Housing,Housing +512126,Housing,Housing +444393,Housing,Housing +444323,Housing,Housing +424168,Housing,Housing +460943,Industry,Industry +444393,Industry,Industry +444331,Industry,Industry +444330,Industry,Industry +444329,Industry,Industry +444328,Industry,Industry +444327,Industry,Industry +440331,Industry,Industry +442873,Internal Trade,Internal Trade +440197,Internal Trade,Internal Trade +482767,Internal Trade,Internal Trade +444331,Internal Trade,Internal Trade +444330,Internal Trade,Internal Trade +444329,Internal Trade,Internal Trade +496761,Regional Development,Regional Development +488879,Regional Development,Regional Development +486557,Regional Development,Regional Development +486555,Regional Development,Regional Development +476335,Regional Development,Regional Development +462920,Regional Development,Regional Development +460943,Regional Development,Regional Development +446055,Regional Development,Regional Development +444393,Regional Development,Regional Development +444392,Regional Development,Regional Development +444391,Regional Development,Regional Development +444332,Regional Development,Regional Development +444331,Regional Development,Regional Development +444330,Regional Development,Regional Development +444329,Regional Development,Regional Development +444327,Regional Development,Regional Development +444326,Regional Development,Regional Development +444325,Regional Development,Regional Development +444323,Regional Development,Regional Development +442872,Regional Development,Regional Development +440331,Regional Development,Regional Development +530317,Regional Development,Regional Development +512121,Regional Development,Regional Development +509611,Regional Development,Regional Development +505527,Regional Development,Regional Development +504971,Regional Development,Regional Development +503819,Regional Development,Regional Development +444324,Research and Development,Research and Development +440331,Research and Development,Research and Development +444330,Research and Development,Research and Development +444329,Research and Development,Research and Development +444328,Research and Development,Research and Development +482767,Small Business,Small Business +460944,Small Business,Small Business +444330,Small Business,Small Business +444329,Small Business,Small Business +444327,Small Business,Small Business +515587,Small Business,Small Business +511659,Small Business,Small Business +509494,Small Business,Small Business +509493,Small Business,Small Business +507198,Small Business,Small Business +507197,Small Business,Small Business +506764,Small Business,Small Business +506762,Small Business,Small Business +505527,Small Business,Small Business +504975,Small Business,Small Business +504971,Small Business,Small Business +503451,Small Business,Small Business +503424,Small Business,Small Business +503340,Small Business,Small Business +503338,Small Business,Small Business +500551,Small Business,Small Business +500409,Small Business,Small Business +500269,Small Business,Small Business +500268,Small Business,Small Business +500267,Small Business,Small Business +496761,Small Business,Small Business +494468,Small Business,Small Business +494467,Small Business,Small Business +494430,Small Business,Small Business +493853,Small Business,Small Business +490255,Small Business,Small Business +489066,Small Business,Small Business +489065,Small Business,Small Business +486552,Small Business,Small Business +486077,Taxation and Finance,Taxation and Finance +427167,Environment,Environment +421116,Environment,Environment +502386,Budget,Budget +502365,Budget,Budget +498689,Budget,Budget +498688,Budget,Budget +498685,Budget,Budget +496225,Budget,Budget +496224,Budget,Budget +496223,Budget,Budget +496222,Budget,Budget +492690,Budget,Budget +484532,Budget,Budget +477963,Budget,Budget +477951,Budget,Budget +477948,Budget,Budget +477920,Budget,Budget +475637,Budget,Budget +473911,Budget,Budget +473403,Budget,Budget +470936,Budget,Budget +468364,Budget,Budget +468358,Budget,Budget +468356,Budget,Budget +452886,Budget,Budget +439763,Budget,Budget +439750,Budget,Budget +431344,Budget,Budget +426849,Budget,Budget +426847,Budget,Budget +424319,Budget,Budget +422245,Budget,Budget +416545,Budget,Budget +416531,Budget,Budget +416529,Budget,Budget +416523,Budget,Budget +416268,Budget,Budget +502742,Justice and Law Enforcement,Justice and Law Enforcement +541118,Justice and Law Enforcement,Justice and Law Enforcement +417523,Health,Health +417522,Health,Health +471284,Consumer Issues,Consumer Issues +450616,Consumer Issues,Consumer Issues +419177,Consumer Issues,Consumer Issues +505456,Consumer Issues,Consumer Issues +500509,Consumer Issues,Consumer Issues +499765,Consumer Issues,Consumer Issues +499764,Consumer Issues,Consumer Issues +499763,Consumer Issues,Consumer Issues +495272,Consumer Issues,Consumer Issues +419177,Financial Institutions,Financial Institutions +436964,Government Procurement,Government Procurement +421172,Industry,Industry +421171,Industry,Industry +414752,Industry,Industry +505456,Industry,Industry +476301,Industry,Industry +476293,Industry,Industry +430133,Industry,Industry +423312,Industry,Industry +421175,Industry,Industry +421174,Industry,Industry +417371,Privacy and Access to Information,Privacy and Access to Information +414752,Privacy and Access to Information,Privacy and Access to Information +505456,Privacy and Access to Information,Privacy and Access to Information +499765,Privacy and Access to Information,Privacy and Access to Information +499764,Privacy and Access to Information,Privacy and Access to Information +499763,Privacy and Access to Information,Privacy and Access to Information +495272,Privacy and Access to Information,Privacy and Access to Information +492274,Privacy and Access to Information,Privacy and Access to Information +492272,Privacy and Access to Information,Privacy and Access to Information +450616,Privacy and Access to Information,Privacy and Access to Information +443516,Privacy and Access to Information,Privacy and Access to Information +430133,Privacy and Access to Information,Privacy and Access to Information +423312,Privacy and Access to Information,Privacy and Access to Information +421175,Privacy and Access to Information,Privacy and Access to Information +421174,Privacy and Access to Information,Privacy and Access to Information +421173,Privacy and Access to Information,Privacy and Access to Information +421172,Privacy and Access to Information,Privacy and Access to Information +421171,Privacy and Access to Information,Privacy and Access to Information +443516,Security,Security +430133,Security,Security +505456,Security,Security +492274,Security,Security +492272,Security,Security +483159,Security,Security +410491,Government Procurement,Government Procurement +411338,Defence,Defence +411337,Defence,Defence +437596,Defence,Defence +437590,Defence,Defence +425391,Defence,Defence +425390,Defence,Defence +425389,Defence,Defence +425388,Defence,Defence +425384,Economic Development,Economic Development +411338,Economic Development,Economic Development +437596,Economic Development,Economic Development +437590,Economic Development,Economic Development +425391,Economic Development,Economic Development +425390,Economic Development,Economic Development +425389,Economic Development,Economic Development +425388,Government Procurement,Government Procurement +425384,Government Procurement,Government Procurement +437596,Government Procurement,Government Procurement +437590,Government Procurement,Government Procurement +425391,Government Procurement,Government Procurement +425390,Government Procurement,Government Procurement +425384,Industry,Industry +411337,Industry,Industry +437596,Industry,Industry +437590,Industry,Industry +425391,Industry,Industry +425390,Industry,Industry +425389,Industry,Industry +437590,Regional Development,Regional Development +425391,Regional Development,Regional Development +425390,Regional Development,Regional Development +425389,Regional Development,Regional Development +425388,Regional Development,Regional Development +425384,Regional Development,Regional Development +411337,Regional Development,Regional Development +425388,Research and Development,Research and Development +425384,Research and Development,Research and Development +425391,Research and Development,Research and Development +425390,Research and Development,Research and Development +425384,Security,Security +536305,Economic Development,Economic Development +536304,Economic Development,Economic Development +419582,Economic Development,Economic Development +419580,Economic Development,Economic Development +419578,Economic Development,Economic Development +419574,Economic Development,Economic Development +419571,Economic Development,Economic Development +536304,Infrastructure,Infrastructure +536303,Infrastructure,Infrastructure +512114,Infrastructure,Infrastructure +425409,Infrastructure,Infrastructure +419582,Infrastructure,Infrastructure +419580,Infrastructure,Infrastructure +419571,Infrastructure,Infrastructure +543227,Infrastructure,Infrastructure +536307,Infrastructure,Infrastructure +536306,Infrastructure,Infrastructure +536305,Transportation,Transportation +526116,Transportation,Transportation +419580,Transportation,Transportation +419574,Transportation,Transportation +412404,Health,Health +412633,Climate,Climate +412625,Climate,Climate +412633,Environment,Environment +412625,Environment,Environment +412633,Industry,Industry +412625,Industry,Industry +412633,Energy,Energy +412625,Energy,Energy +411623,Economic Development,Economic Development +412034,Economic Development,Economic Development +411677,Economic Development,Economic Development +411676,Environment,Environment +411623,Environment,Environment +412034,Environment,Environment +411676,Housing,Housing +411623,Housing,Housing +412034,Housing,Housing +411676,Infrastructure,Infrastructure +411623,Infrastructure,Infrastructure +412034,Infrastructure,Infrastructure +411676,Municipalities,Municipalities +411623,Municipalities,Municipalities +412034,Municipalities,Municipalities +427600,Climate,Climate +427598,Climate,Climate +468590,Climate,Climate +468585,Climate,Climate +453035,Climate,Climate +410549,Transportation,Transportation +410550,Transportation,Transportation +418408,Transportation,Transportation +410551,Transportation,Transportation +414214,Small Business,Small Business +414212,Small Business,Small Business +417364,Small Business,Small Business +417363,Small Business,Small Business +417361,Small Business,Small Business +417360,Small Business,Small Business +417359,Small Business,Small Business +415706,Small Business,Small Business +414222,Small Business,Small Business +414221,Small Business,Small Business +414220,Small Business,Small Business +414219,Small Business,Small Business +414218,Small Business,Small Business +414217,Small Business,Small Business +414216,Small Business,Small Business +530736,International Trade,International Trade +530735,International Trade,International Trade +419856,International Trade,International Trade +419841,International Trade,International Trade +419816,International Trade,International Trade +419674,International Trade,International Trade +411115,International Trade,International Trade +419674,International Relations,International Relations +411115,International Relations,International Relations +517053,International Relations,International Relations +419674,Taxation and Finance,Taxation and Finance +411115,Taxation and Finance,Taxation and Finance +530736,Taxation and Finance,Taxation and Finance +530735,Taxation and Finance,Taxation and Finance +517053,Taxation and Finance,Taxation and Finance +470716,Taxation and Finance,Taxation and Finance +419856,Taxation and Finance,Taxation and Finance +419816,Tourism,Tourism +419674,Tourism,Tourism +411115,Tourism,Tourism +530735,Tourism,Tourism +530735,Agriculture,Agriculture +517053,Agriculture,Agriculture +419856,Agriculture,Agriculture +419841,Agriculture,Agriculture +419816,Agriculture,Agriculture +411115,Agriculture,Agriculture +464895,Government Procurement,Government Procurement +447591,Government Procurement,Government Procurement +448288,Sports,Sports +444247,Sports,Sports +434102,Sports,Sports +434101,Sports,Sports +424984,Sports,Sports +424839,Sports,Sports +424837,Sports,Sports +424834,Sports,Sports +420794,Sports,Sports +412906,Sports,Sports +412903,Sports,Sports +412901,Sports,Sports +412768,Sports,Sports +412749,Sports,Sports +412745,Sports,Sports +412742,Sports,Sports +412737,Sports,Sports +412704,Sports,Sports +412701,Sports,Sports +412699,Sports,Sports +412690,Sports,Sports +523682,Sports,Sports +521051,Sports,Sports +521050,Sports,Sports +520566,Sports,Sports +511989,Sports,Sports +511656,Sports,Sports +509933,Sports,Sports +466898,Sports,Sports +464451,Sports,Sports +463657,Sports,Sports +463656,Sports,Sports +463655,Sports,Sports +463652,Sports,Sports +463651,Sports,Sports +516811,Economic Development,Economic Development +516810,Economic Development,Economic Development +412906,Economic Development,Economic Development +412903,Economic Development,Economic Development +412901,Economic Development,Economic Development +412768,Economic Development,Economic Development +412749,Economic Development,Economic Development +412745,Economic Development,Economic Development +412742,Economic Development,Economic Development +412737,Economic Development,Economic Development +412704,Economic Development,Economic Development +412701,Economic Development,Economic Development +412699,Economic Development,Economic Development +412690,Economic Development,Economic Development +412669,Economic Development,Economic Development +412526,Economic Development,Economic Development +412522,Economic Development,Economic Development +497139,Economic Development,Economic Development +497138,Economic Development,Economic Development +488661,Economic Development,Economic Development +485786,Economic Development,Economic Development +483017,Economic Development,Economic Development +478749,Economic Development,Economic Development +476601,Economic Development,Economic Development +466898,Economic Development,Economic Development +466890,Economic Development,Economic Development +464451,Economic Development,Economic Development +463657,Economic Development,Economic Development +463656,Economic Development,Economic Development +463655,Economic Development,Economic Development +463652,Economic Development,Economic Development +463651,Economic Development,Economic Development +463650,Economic Development,Economic Development +460896,Economic Development,Economic Development +460895,Economic Development,Economic Development +448988,Economic Development,Economic Development +448987,Economic Development,Economic Development +440472,Economic Development,Economic Development +440470,Economic Development,Economic Development +440469,Economic Development,Economic Development +440467,Economic Development,Economic Development +440466,Economic Development,Economic Development +440459,Economic Development,Economic Development +434292,Economic Development,Economic Development +434102,Economic Development,Economic Development +434101,Economic Development,Economic Development +424984,Economic Development,Economic Development +424839,Economic Development,Economic Development +424837,Economic Development,Economic Development +424834,Economic Development,Economic Development +420794,Economic Development,Economic Development +416501,Economic Development,Economic Development +526823,Economic Development,Economic Development +521642,Economic Development,Economic Development +521051,Economic Development,Economic Development +521050,Economic Development,Economic Development +520566,Economic Development,Economic Development +497138,International Trade,International Trade +440466,International Trade,International Trade +526823,International Trade,International Trade +521642,International Trade,International Trade +519148,International Trade,International Trade +516812,International Trade,International Trade +516811,International Trade,International Trade +516810,International Trade,International Trade +516808,International Trade,International Trade +511990,International Trade,International Trade +500055,Economic Development,Economic Development +494029,Economic Development,Economic Development +494029,Health,Health +420061,Health,Health +542939,Health,Health +540813,Health,Health +540804,Health,Health +533180,Health,Health +533179,Health,Health +533178,Health,Health +533177,Health,Health +530084,Health,Health +519163,Health,Health +519162,Health,Health +510589,Health,Health +510099,Health,Health +506413,Health,Health +500391,Health,Health +500055,Health,Health +497087,Health,Health +510589,Industry,Industry +500391,Industry,Industry +420061,Industry,Industry +540804,Industry,Industry +533177,Industry,Industry +519163,Industry,Industry +500055,Research and Development,Research and Development +494029,Research and Development,Research and Development +420061,Research and Development,Research and Development +542939,Research and Development,Research and Development +540813,Research and Development,Research and Development +540804,Research and Development,Research and Development +427216,Climate,Climate +418589,Climate,Climate +427217,Energy,Energy +427216,Energy,Energy +427216,Environment,Environment +418067,Industry,Industry +413190,Industry,Industry +429220,Industry,Industry +426293,Industry,Industry +494844,Climate,Climat +494831,Climate,Climat +412337,International Trade,Commerce international +494831,International Trade,Commerce international +421245,International Trade,Commerce international +411875,Economic Development,Développement économique +411874,Economic Development,Développement économique +412337,International Development,Développement international +497848,Environment,Environnement +494831,Environment,Environnement +541263,Health,Santé +537740,Health,Santé +441062,Health,Santé +417301,Health,Santé +528968,Health,Santé +501235,Health,Santé +497852,Health,Santé +497850,Health,Santé +494831,Health,Santé +483849,Health,Santé +469017,Health,Santé +469016,Health,Santé +469015,Health,Santé +469014,Health,Santé +469013,Health,Santé +469012,Health,Santé +411870,Taxation and Finance,Impôts et finances +411870,Health,Santé +409078,Fisheries,Fisheries +422435,Government Procurement,Government Procurement +506177,Economic Development,Economic Development +409539,Health,Health +454484,Research and Development,Research and Development +414103,Education,Education +414103,Employment and Training,Employment and Training +414102,Industry,Industry +414103,Labour,Labour +428009,International Trade,International Trade +409205,Taxation and Finance,Taxation and Finance +412992,Climate,Climate +412992,Energy,Energy +412992,Environment,Environment +412992,Industry,Industry +409053,International Trade,International Trade +470220,Industry,Industry +460032,Employment and Training,Employment and Training +520833,International Trade,International Trade +520833,Mining,Mining +422152,Infrastructure,Infrastructure +422152,Tourism,Tourism +422152,Transportation,Transportation +409401,Government Procurement,Government Procurement +433967,Defence,Defence +429018,Health,Health +411882,Infrastructure,Infrastructure +477540,Industry,Industry +411685,Financial Institutions,Financial Institutions +421548,Budget,Budget +542692,Economic Development,Economic Development +421543,Industry,Industry +409774,International Trade,International Trade +411783,Budget,Budget +416775,Climate,Climate +411787,Research and Development,Research and Development +412209,Agriculture,Agriculture +409859,Energy,Energy +409863,Energy,Energy +409906,International Trade,International Trade +411203,Health,Health +411203,Small Business,Small Business +411203,Taxation and Finance,Taxation and Finance +537577,Security,Security +462596,Defence,Defence +442120,Financial Institutions,Financial Institutions +410232,Agriculture,Agriculture +419508,International Trade,International Trade +410233,International Trade,International Trade +410425,Environment,Environment +410425,Mining,Mining +410297,International Trade,International Trade +411184,Taxation and Finance,Taxation and Finance +418740,Industry,Industry +421977,Consumer Issues,Consumer Issues +422813,Justice and Law Enforcement,Justice and Law Enforcement +411184,Financial Institutions,Financial Institutions +421977,Privacy and Access to Information,Privacy and Access to Information +417275,Agriculture,Agriculture +446055,Environment,Environment +420229,Housing,Housing +486078,Industry,Industry +444328,Internal Trade,Internal Trade +497593,Regional Development,Regional Development +444327,Research and Development,Research and Development +486078,Small Business,Small Business +533920,Taxation and Finance,Taxation and Finance +427169,Environment,Environment +416256,Budget,Budget +410392,Immigration,Immigration +508934,Justice and Law Enforcement,Justice and Law Enforcement +434345,Government Procurement,Government Procurement +417524,Health,Health +483159,Consumer Issues,Consumer Issues +471284,Financial Institutions,Financial Institutions +505456,Government Procurement,Government Procurement +421173,Industry,Industry +419177,Privacy and Access to Information,Privacy and Access to Information +450616,Security,Security +417514,Government Procurement,Government Procurement +471338,Industry,Industry +462775,Energy,Energy +410431,Climate,Climate +410431,Transportation,Transportation +425384,Defence,Defence +425388,Economic Development,Economic Development +425389,Government Procurement,Government Procurement +425388,Industry,Industry +437596,Regional Development,Regional Development +425389,Research and Development,Research and Development +437590,Security,Security +536306,Economic Development,Economic Development +536305,Infrastructure,Infrastructure +536306,Transportation,Transportation +415213,Energy,Energy +415214,Health,Health +412635,Climate,Climate +412635,Environment,Environment +412635,Industry,Industry +412635,Energy,Energy +410459,Regional Development,Regional Development +411676,Economic Development,Economic Development +411677,Environment,Environment +411677,Housing,Housing +411677,Infrastructure,Infrastructure +411677,Municipalities,Municipalities +452030,Industry,Industry +453034,Climate,Climate +428139,Transportation,Transportation +428140,Transportation,Transportation +418409,Transportation,Transportation +414215,Small Business,Small Business +470716,International Trade,International Trade +419856,International Relations,International Relations +419816,Taxation and Finance,Taxation and Finance +517053,Tourism,Tourism +530736,Agriculture,Agriculture +499447,Government Procurement,Government Procurement +463650,Sports,Sports +412750,Economic Development,Economic Development +412707,Economic Development,Economic Development +519148,Economic Development,Economic Development +507897,International Trade,International Trade +533177,Economic Development,Economic Development +495297,Health,Health +519162,Industry,Industry +533177,Research and Development,Research and Development +410679,International Trade,International Trade +410728,Economic Development,Economic Development +410728,Energy,Energy +427217,Climate,Climate +418589,Energy,Energy +427217,Environment,Environment +410726,Climate,Climate +410726,Energy,Energy +410726,Environment,Environment +423455,Industry,Industry +426293,International Trade,International Trade +497848,Climate,Climat +417301,International Trade,Commerce international +412337,Economic Development,Développement économique +418831,International Development,Développement international +517735,Environment,Environnement +469011,Health,Santé +430136,Energy,Energy +422978,Environment,Environment +451311,Infrastructure,Infrastructure +438114,Regional Development,Regional Development +414059,Financial Institutions,Financial Institutions +424702,Economic Development,Economic Development +424702,Energy,Energy +531932,Taxation and Finance,Taxation and Finance +452350,Defence,Defence +443742,Economic Development,Economic Development +443742,International Development,International Development +443742,International Relations,International Relations +485648,Climate,Climate +413250,Energy,Energy +538656,Environment,Environment +413244,International Trade,International Trade +494114,Taxation and Finance,Taxation and Finance +427240,Transportation,Transportation +413161,Agriculture,Agriculture +410824,Taxation and Finance,Taxation and Finance +412853,Health,Health +414070,Agriculture,Agriculture +414043,Consumer Issues,Consumer Issues +414043,Economic Development,Economic Development +414043,Environment,Environment +414043,Fisheries,Fisheries +414043,Industry,Industry +414043,International Trade,International Trade +414043,Regional Development,Regional Development +414043,Small Business,Small Business +411065,Climate,Climate +411065,Energy,Energy +411065,Environment,Environment +410850,Economic Development,Economic Development +410851,Economic Development,Economic Development +410854,Economic Development,Economic Development +410855,Economic Development,Economic Development +410856,Economic Development,Economic Development +410858,Economic Development,Economic Development +410859,Economic Development,Economic Development +410861,Economic Development,Economic Development +410864,Economic Development,Economic Development +411180,Health,Health +411179,International Trade,International Trade +410867,Economic Development,Economic Development +410871,Economic Development,Economic Development +415763,Agriculture,Agriculture +415757,Agriculture,Agriculture +415758,Agriculture,Agriculture +533724,Defence,Defence +527394,Government Procurement,Government Procurement +414055,Health,Health +414573,Justice and Law Enforcement,Justice and Law Enforcement +433592,Taxation and Finance,Taxation and Finance +415455,Health,Health +417359,Taxation and Finance,Taxation and Finance +417363,Taxation and Finance,Taxation and Finance +417364,Taxation and Finance,Taxation and Finance +411058,Taxation and Finance,Taxation and Finance +417360,Taxation and Finance,Taxation and Finance +414395,Agriculture,Agriculture +414395,Health,Health +414395,International Trade,International Trade +443524,Taxation and Finance,Taxation and Finance +411074,Immigration,Immigration +413835,Agriculture,Agriculture +413835,Industry,Industry +412583,Financial Institutions,Financial Institutions +497919,Taxation and Finance,Taxation and Finance +412502,Agriculture,Agriculture +431236,Research and Development,Research and Development +431236,Regional Development,Regional Development +488244,Environment,Environment +431236,Government Procurement,Government Procurement +500340,Industry,Industry +431236,Economic Development,Economic Development +466562,Climate,Climate +524456,Infrastructure,Infrastructure +471598,Taxation and Finance,Taxation and Finance +435830,Economic Development,Economic Development +413085,Agriculture,Agriculture +415221,Health,Health +418503,Research and Development,Research and Development +417258,Budget,Budget +422425,Infrastructure,Infrastructure +511477,Defence,Defence +459195,Economic Development,Economic Development +544264,Government Procurement,Government Procurement +459498,Industry,Industry +477453,International Relations,International Relations +459195,International Trade,International Trade +459498,Research and Development,Research and Development +477443,Security,Security +418516,Employment and Training,Employment and Training +418514,Industry,Industry +438044,Health,Health +415617,Transportation,Transportation +422978,Energy,Energy +420779,Energy,Energy +451399,Energy,Energy +451311,Energy,Energy +443872,Energy,Energy +438114,Energy,Energy +451399,Environment,Environment +451311,Environment,Environment +438114,Environment,Environment +438114,Infrastructure,Infrastructure +422978,Infrastructure,Infrastructure +451399,Infrastructure,Infrastructure +451399,Regional Development,Regional Development +451311,Regional Development,Regional Development +413990,Financial Institutions,Financial Institutions +413939,Financial Institutions,Financial Institutions +437208,Financial Institutions,Financial Institutions +435645,Financial Institutions,Financial Institutions +432664,Financial Institutions,Financial Institutions +432663,Financial Institutions,Financial Institutions +429901,Financial Institutions,Financial Institutions +425907,Financial Institutions,Financial Institutions +423279,Financial Institutions,Financial Institutions +418545,Financial Institutions,Financial Institutions +417052,Financial Institutions,Financial Institutions +417051,Financial Institutions,Financial Institutions +417050,Financial Institutions,Financial Institutions +417049,Financial Institutions,Financial Institutions +414571,Financial Institutions,Financial Institutions +413930,Economic Development,Economic Development +413929,Economic Development,Economic Development +413930,Energy,Energy +413929,Energy,Energy +531931,Taxation and Finance,Taxation and Finance +531928,Taxation and Finance,Taxation and Finance +508787,Taxation and Finance,Taxation and Finance +508786,Taxation and Finance,Taxation and Finance +506919,Taxation and Finance,Taxation and Finance +506918,Taxation and Finance,Taxation and Finance +506916,Taxation and Finance,Taxation and Finance +506562,Taxation and Finance,Taxation and Finance +506381,Taxation and Finance,Taxation and Finance +506235,Taxation and Finance,Taxation and Finance +506234,Taxation and Finance,Taxation and Finance +503150,Taxation and Finance,Taxation and Finance +501311,Taxation and Finance,Taxation and Finance +501310,Taxation and Finance,Taxation and Finance +501308,Taxation and Finance,Taxation and Finance +472107,Taxation and Finance,Taxation and Finance +472105,Taxation and Finance,Taxation and Finance +536149,Taxation and Finance,Taxation and Finance +536012,Taxation and Finance,Taxation and Finance +535896,Taxation and Finance,Taxation and Finance +534996,Taxation and Finance,Taxation and Finance +534564,Taxation and Finance,Taxation and Finance +534561,Taxation and Finance,Taxation and Finance +533702,Taxation and Finance,Taxation and Finance +532971,Taxation and Finance,Taxation and Finance +532970,Taxation and Finance,Taxation and Finance +532969,Taxation and Finance,Taxation and Finance +532920,Taxation and Finance,Taxation and Finance +532919,Taxation and Finance,Taxation and Finance +532628,Taxation and Finance,Taxation and Finance +532627,Taxation and Finance,Taxation and Finance +532557,Taxation and Finance,Taxation and Finance +532528,Taxation and Finance,Taxation and Finance +532502,Taxation and Finance,Taxation and Finance +532433,Taxation and Finance,Taxation and Finance +532315,Taxation and Finance,Taxation and Finance +430581,International Relations,International Relations +452350,International Relations,International Relations +485536,Climate,Climate +474173,Climate,Climate +456054,Climate,Climate +456052,Climate,Climate +436871,Climate,Climate +436870,Climate,Climate +436869,Climate,Climate +436868,Climate,Climate +436867,Climate,Climate +436866,Climate,Climate +436865,Climate,Climate +436864,Climate,Climate +436863,Climate,Climate +436817,Climate,Climate +420572,Climate,Climate +420570,Climate,Climate +413268,Climate,Climate +413267,Climate,Climate +413259,Climate,Climate +413250,Climate,Climate +413244,Climate,Climate +413243,Climate,Climate +413240,Climate,Climate +540677,Climate,Climate +532509,Climate,Climate +532508,Climate,Climate +532507,Climate,Climate +532490,Climate,Climate +511777,Climate,Climate +511776,Climate,Climate +502918,Climate,Climate +494115,Climate,Climate +494114,Climate,Climate +413244,Energy,Energy +413243,Energy,Energy +494115,Energy,Energy +494114,Energy,Energy +485648,Energy,Energy +436871,Energy,Energy +436870,Energy,Energy +436867,Energy,Energy +436866,Energy,Energy +436865,Energy,Energy +436864,Energy,Energy +436863,Energy,Energy +436817,Energy,Energy +420572,Energy,Energy +420570,Energy,Energy +413268,Energy,Energy +413267,Energy,Energy +413259,Energy,Energy +538655,Environment,Environment +533144,Environment,Environment +511777,Environment,Environment +511776,Environment,Environment +502918,Environment,Environment +500453,Environment,Environment +497108,Environment,Environment +497107,Environment,Environment +497106,Environment,Environment +494115,Environment,Environment +494114,Environment,Environment +485648,Environment,Environment +485536,Environment,Environment +474172,Environment,Environment +456054,Environment,Environment +436871,Environment,Environment +436870,Environment,Environment +436867,Environment,Environment +436866,Environment,Environment +436865,Environment,Environment +436864,Environment,Environment +436863,Environment,Environment +436817,Environment,Environment +420572,Environment,Environment +420570,Environment,Environment +413268,Environment,Environment +413267,Environment,Environment +413259,Environment,Environment +413250,Environment,Environment +413244,Environment,Environment +413243,Environment,Environment +413240,Environment,Environment +540677,Environment,Environment +538658,Environment,Environment +538657,Environment,Environment +413243,International Trade,International Trade +413240,International Trade,International Trade +500453,International Trade,International Trade +497107,International Trade,International Trade +494115,International Trade,International Trade +494114,International Trade,International Trade +485648,International Trade,International Trade +436871,International Trade,International Trade +436870,International Trade,International Trade +436867,International Trade,International Trade +436866,International Trade,International Trade +420570,International Trade,International Trade +413268,International Trade,International Trade +413267,International Trade,International Trade +413259,International Trade,International Trade +413250,International Trade,International Trade +485648,Taxation and Finance,Taxation and Finance +485536,Taxation and Finance,Taxation and Finance +456054,Taxation and Finance,Taxation and Finance +436871,Taxation and Finance,Taxation and Finance +436870,Taxation and Finance,Taxation and Finance +436866,Taxation and Finance,Taxation and Finance +436863,Taxation and Finance,Taxation and Finance +436817,Taxation and Finance,Taxation and Finance +420572,Taxation and Finance,Taxation and Finance +420570,Taxation and Finance,Taxation and Finance +413268,Taxation and Finance,Taxation and Finance +413267,Taxation and Finance,Taxation and Finance +413259,Taxation and Finance,Taxation and Finance +413250,Taxation and Finance,Taxation and Finance +413244,Taxation and Finance,Taxation and Finance +413243,Taxation and Finance,Taxation and Finance +413240,Taxation and Finance,Taxation and Finance +540677,Taxation and Finance,Taxation and Finance +511777,Taxation and Finance,Taxation and Finance +511776,Taxation and Finance,Taxation and Finance +502918,Taxation and Finance,Taxation and Finance +500453,Taxation and Finance,Taxation and Finance +497107,Taxation and Finance,Taxation and Finance +494115,Taxation and Finance,Taxation and Finance +414668,Transportation,Transportation +414667,Transportation,Transportation +411128,Transportation,Transportation +461752,Taxation and Finance,Taxation and Finance +459735,Taxation and Finance,Taxation and Finance +412850,Health,Health +423249,Health,Health +414042,Consumer Issues,Consumer Issues +414041,Consumer Issues,Consumer Issues +414128,Consumer Issues,Consumer Issues +414127,Consumer Issues,Consumer Issues +414114,Consumer Issues,Consumer Issues +414078,Consumer Issues,Consumer Issues +414070,Consumer Issues,Consumer Issues +414069,Consumer Issues,Consumer Issues +414044,Consumer Issues,Consumer Issues +414042,Economic Development,Economic Development +414041,Economic Development,Economic Development +414128,Economic Development,Economic Development +414127,Economic Development,Economic Development +414114,Economic Development,Economic Development +414078,Economic Development,Economic Development +414070,Economic Development,Economic Development +414069,Economic Development,Economic Development +414044,Economic Development,Economic Development +414042,Environment,Environment +414041,Environment,Environment +414128,Environment,Environment +414127,Environment,Environment +414114,Environment,Environment +414078,Environment,Environment +414070,Environment,Environment +414069,Environment,Environment +414044,Environment,Environment +414042,Fisheries,Fisheries +414041,Fisheries,Fisheries +414128,Fisheries,Fisheries +414127,Fisheries,Fisheries +414114,Fisheries,Fisheries +414078,Fisheries,Fisheries +414070,Fisheries,Fisheries +414069,Fisheries,Fisheries +414044,Fisheries,Fisheries +414042,Industry,Industry +414041,Industry,Industry +414128,Industry,Industry +414127,Industry,Industry +414114,Industry,Industry +414078,Industry,Industry +414070,Industry,Industry +414069,Industry,Industry +414044,Industry,Industry +414042,International Trade,International Trade +414041,International Trade,International Trade +414128,International Trade,International Trade +414127,International Trade,International Trade +414114,International Trade,International Trade +414078,International Trade,International Trade +414070,International Trade,International Trade +414069,International Trade,International Trade +414044,International Trade,International Trade +414042,Regional Development,Regional Development +414041,Regional Development,Regional Development +414128,Regional Development,Regional Development +414127,Regional Development,Regional Development +414114,Regional Development,Regional Development +414078,Regional Development,Regional Development +414070,Regional Development,Regional Development +414069,Regional Development,Regional Development +414044,Regional Development,Regional Development +414042,Small Business,Small Business +414041,Small Business,Small Business +414128,Small Business,Small Business +414127,Small Business,Small Business +414114,Small Business,Small Business +414078,Small Business,Small Business +414070,Small Business,Small Business +414069,Small Business,Small Business +414044,Small Business,Small Business +411174,Health,Health +466444,International Trade,International Trade +465649,International Trade,International Trade +464399,International Trade,International Trade +464187,International Trade,International Trade +463723,International Trade,International Trade +448430,International Trade,International Trade +448429,International Trade,International Trade +448428,International Trade,International Trade +448427,International Trade,International Trade +415744,Agriculture,Agriculture +410917,Agriculture,Agriculture +434706,Agriculture,Agriculture +433046,Agriculture,Agriculture +433043,Agriculture,Agriculture +432753,Agriculture,Agriculture +431016,Agriculture,Agriculture +424518,Agriculture,Agriculture +424517,Agriculture,Agriculture +421673,Agriculture,Agriculture +421669,Agriculture,Agriculture +419741,Agriculture,Agriculture +415767,Agriculture,Agriculture +415765,Agriculture,Agriculture +415749,Agriculture,Agriculture +415742,Agriculture,Agriculture +410918,Agriculture,Agriculture +432765,Agriculture,Agriculture +432756,Agriculture,Agriculture +431017,Agriculture,Agriculture +424519,Agriculture,Agriculture +421663,Agriculture,Agriculture +421656,Agriculture,Agriculture +421652,Agriculture,Agriculture +419732,Agriculture,Agriculture +415769,Agriculture,Agriculture +415760,Agriculture,Agriculture +415759,Agriculture,Agriculture +415741,Agriculture,Agriculture +410919,Agriculture,Agriculture +434716,Agriculture,Agriculture +434709,Agriculture,Agriculture +433048,Agriculture,Agriculture +433044,Agriculture,Agriculture +432763,Agriculture,Agriculture +432757,Agriculture,Agriculture +432755,Agriculture,Agriculture +432754,Agriculture,Agriculture +424520,Agriculture,Agriculture +424516,Agriculture,Agriculture +421676,Agriculture,Agriculture +415766,Agriculture,Agriculture +527396,Defence,Defence +527394,Defence,Defence +414097,Defence,Defence +526564,Government Procurement,Government Procurement +519131,Government Procurement,Government Procurement +436972,Government Procurement,Government Procurement +414097,Government Procurement,Government Procurement +533724,Government Procurement,Government Procurement +527396,Government Procurement,Government Procurement +414052,Health,Health +414051,Health,Health +418973,Health,Health +414574,Health,Health +414573,Health,Health +414572,Health,Health +414055,Justice and Law Enforcement,Justice and Law Enforcement +414052,Justice and Law Enforcement,Justice and Law Enforcement +411055,Taxation and Finance,Taxation and Finance +411056,Taxation and Finance,Taxation and Finance +411057,Taxation and Finance,Taxation and Finance +417361,Taxation and Finance,Taxation and Finance +411059,Taxation and Finance,Taxation and Finance +414391,Agriculture,Agriculture +414391,Health,Health +414393,International Trade,International Trade +411066,Taxation and Finance,Taxation and Finance +411072,Immigration,Immigration +413834,Agriculture,Agriculture +412976,Agriculture,Agriculture +413837,Agriculture,Agriculture +413834,Industry,Industry +412976,Industry,Industry +413837,Industry,Industry +412581,Financial Institutions,Financial Institutions +412578,Financial Institutions,Financial Institutions +412576,Financial Institutions,Financial Institutions +412575,Financial Institutions,Financial Institutions +412573,Financial Institutions,Financial Institutions +412566,Financial Institutions,Financial Institutions +412563,Financial Institutions,Financial Institutions +412560,Financial Institutions,Financial Institutions +412556,Financial Institutions,Financial Institutions +412549,Financial Institutions,Financial Institutions +521622,Financial Institutions,Financial Institutions +497923,Financial Institutions,Financial Institutions +497922,Financial Institutions,Financial Institutions +497921,Financial Institutions,Financial Institutions +497920,Financial Institutions,Financial Institutions +497919,Financial Institutions,Financial Institutions +497918,Financial Institutions,Financial Institutions +497917,Financial Institutions,Financial Institutions +472556,Financial Institutions,Financial Institutions +468678,Financial Institutions,Financial Institutions +468677,Financial Institutions,Financial Institutions +468675,Financial Institutions,Financial Institutions +468673,Financial Institutions,Financial Institutions +468672,Financial Institutions,Financial Institutions +468670,Financial Institutions,Financial Institutions +468669,Financial Institutions,Financial Institutions +468668,Financial Institutions,Financial Institutions +468665,Financial Institutions,Financial Institutions +468664,Financial Institutions,Financial Institutions +466267,Financial Institutions,Financial Institutions +466266,Financial Institutions,Financial Institutions +466265,Financial Institutions,Financial Institutions +466264,Financial Institutions,Financial Institutions +466262,Financial Institutions,Financial Institutions +466261,Financial Institutions,Financial Institutions +466260,Financial Institutions,Financial Institutions +463009,Financial Institutions,Financial Institutions +463008,Financial Institutions,Financial Institutions +463007,Financial Institutions,Financial Institutions +463006,Financial Institutions,Financial Institutions +463005,Financial Institutions,Financial Institutions +462138,Financial Institutions,Financial Institutions +461212,Financial Institutions,Financial Institutions +442589,Financial Institutions,Financial Institutions +442587,Financial Institutions,Financial Institutions +438950,Financial Institutions,Financial Institutions +438949,Financial Institutions,Financial Institutions +438948,Financial Institutions,Financial Institutions +438946,Financial Institutions,Financial Institutions +435409,Financial Institutions,Financial Institutions +435408,Financial Institutions,Financial Institutions +435407,Financial Institutions,Financial Institutions +435406,Financial Institutions,Financial Institutions +435405,Financial Institutions,Financial Institutions +435404,Financial Institutions,Financial Institutions +435403,Financial Institutions,Financial Institutions +435402,Financial Institutions,Financial Institutions +435401,Financial Institutions,Financial Institutions +435400,Financial Institutions,Financial Institutions +435399,Financial Institutions,Financial Institutions +433246,Financial Institutions,Financial Institutions +433245,Financial Institutions,Financial Institutions +433244,Financial Institutions,Financial Institutions +433243,Financial Institutions,Financial Institutions +433242,Financial Institutions,Financial Institutions +433241,Financial Institutions,Financial Institutions +433240,Financial Institutions,Financial Institutions +433239,Financial Institutions,Financial Institutions +433238,Financial Institutions,Financial Institutions +433237,Financial Institutions,Financial Institutions +433236,Financial Institutions,Financial Institutions +433235,Financial Institutions,Financial Institutions +497918,Taxation and Finance,Taxation and Finance +497917,Taxation and Finance,Taxation and Finance +468678,Taxation and Finance,Taxation and Finance +468677,Taxation and Finance,Taxation and Finance +468675,Taxation and Finance,Taxation and Finance +468673,Taxation and Finance,Taxation and Finance +468672,Taxation and Finance,Taxation and Finance +468670,Taxation and Finance,Taxation and Finance +468669,Taxation and Finance,Taxation and Finance +468668,Taxation and Finance,Taxation and Finance +468665,Taxation and Finance,Taxation and Finance +468664,Taxation and Finance,Taxation and Finance +466267,Taxation and Finance,Taxation and Finance +466266,Taxation and Finance,Taxation and Finance +466265,Taxation and Finance,Taxation and Finance +466264,Taxation and Finance,Taxation and Finance +466262,Taxation and Finance,Taxation and Finance +466261,Taxation and Finance,Taxation and Finance +466260,Taxation and Finance,Taxation and Finance +463009,Taxation and Finance,Taxation and Finance +463008,Taxation and Finance,Taxation and Finance +463007,Taxation and Finance,Taxation and Finance +463006,Taxation and Finance,Taxation and Finance +463005,Taxation and Finance,Taxation and Finance +462138,Taxation and Finance,Taxation and Finance +461212,Taxation and Finance,Taxation and Finance +442589,Taxation and Finance,Taxation and Finance +442587,Taxation and Finance,Taxation and Finance +438950,Taxation and Finance,Taxation and Finance +438949,Taxation and Finance,Taxation and Finance +438948,Taxation and Finance,Taxation and Finance +438946,Taxation and Finance,Taxation and Finance +435409,Taxation and Finance,Taxation and Finance +435408,Taxation and Finance,Taxation and Finance +435407,Taxation and Finance,Taxation and Finance +435406,Taxation and Finance,Taxation and Finance +435405,Taxation and Finance,Taxation and Finance +435404,Taxation and Finance,Taxation and Finance +435403,Taxation and Finance,Taxation and Finance +435402,Taxation and Finance,Taxation and Finance +435401,Taxation and Finance,Taxation and Finance +435400,Taxation and Finance,Taxation and Finance +435399,Taxation and Finance,Taxation and Finance +433246,Taxation and Finance,Taxation and Finance +433245,Taxation and Finance,Taxation and Finance +433244,Taxation and Finance,Taxation and Finance +433243,Taxation and Finance,Taxation and Finance +433242,Taxation and Finance,Taxation and Finance +433241,Taxation and Finance,Taxation and Finance +433240,Taxation and Finance,Taxation and Finance +433239,Taxation and Finance,Taxation and Finance +433238,Taxation and Finance,Taxation and Finance +433237,Taxation and Finance,Taxation and Finance +433236,Taxation and Finance,Taxation and Finance +433235,Taxation and Finance,Taxation and Finance +412583,Taxation and Finance,Taxation and Finance +412581,Taxation and Finance,Taxation and Finance +412578,Taxation and Finance,Taxation and Finance +412576,Taxation and Finance,Taxation and Finance +412575,Taxation and Finance,Taxation and Finance +412573,Taxation and Finance,Taxation and Finance +412566,Taxation and Finance,Taxation and Finance +412563,Taxation and Finance,Taxation and Finance +412560,Taxation and Finance,Taxation and Finance +412556,Taxation and Finance,Taxation and Finance +412549,Taxation and Finance,Taxation and Finance +497923,Taxation and Finance,Taxation and Finance +497922,Taxation and Finance,Taxation and Finance +497921,Taxation and Finance,Taxation and Finance +497920,Taxation and Finance,Taxation and Finance +488243,Environment,Environment +485325,Environment,Environment +500340,Environment,Environment +488245,Environment,Environment +466533,Climate,Climate +466527,Climate,Climate +466522,Climate,Climate +466519,Climate,Climate +466517,Climate,Climate +466516,Climate,Climate +464473,Climate,Climate +464468,Climate,Climate +438158,Climate,Climate +438156,Climate,Climate +438154,Climate,Climate +438150,Climate,Climate +438143,Climate,Climate +437107,Climate,Climate +437105,Climate,Climate +437104,Climate,Climate +437103,Climate,Climate +431407,Climate,Climate +412518,Climate,Climate +412516,Climate,Climate +543551,Climate,Climate +543504,Climate,Climate +540532,Climate,Climate +538763,Climate,Climate +536487,Climate,Climate +536486,Climate,Climate +536476,Climate,Climate +530781,Climate,Climate +524459,Climate,Climate +523665,Climate,Climate +519167,Climate,Climate +503306,Climate,Climate +496754,Climate,Climate +489349,Climate,Climate +488641,Climate,Climate +488640,Climate,Climate +488635,Climate,Climate +477005,Climate,Climate +473538,Climate,Climate +473536,Climate,Climate +472717,Climate,Climate +466783,Climate,Climate +524453,Infrastructure,Infrastructure +523666,Infrastructure,Infrastructure +540537,Infrastructure,Infrastructure +536485,Infrastructure,Infrastructure +536484,Infrastructure,Infrastructure +536483,Infrastructure,Infrastructure +532967,Infrastructure,Infrastructure +524458,Infrastructure,Infrastructure +471426,Taxation and Finance,Taxation and Finance +462579,Taxation and Finance,Taxation and Finance +424501,Taxation and Finance,Taxation and Finance +415832,Taxation and Finance,Taxation and Finance +411780,Taxation and Finance,Taxation and Finance +411777,Taxation and Finance,Taxation and Finance +411775,Taxation and Finance,Taxation and Finance +411772,Taxation and Finance,Taxation and Finance +411771,Taxation and Finance,Taxation and Finance +411769,Taxation and Finance,Taxation and Finance +411767,Taxation and Finance,Taxation and Finance +411765,Taxation and Finance,Taxation and Finance +411764,Taxation and Finance,Taxation and Finance +411762,Taxation and Finance,Taxation and Finance +411760,Taxation and Finance,Taxation and Finance +411757,Taxation and Finance,Taxation and Finance +505547,Taxation and Finance,Taxation and Finance +505540,Taxation and Finance,Taxation and Finance +503003,Taxation and Finance,Taxation and Finance +479206,Taxation and Finance,Taxation and Finance +471600,Taxation and Finance,Taxation and Finance +471599,Taxation and Finance,Taxation and Finance +523170,Economic Development,Economic Development +520160,Economic Development,Economic Development +435831,Economic Development,Economic Development +413078,Agriculture,Agriculture +413059,Agriculture,Agriculture +413090,Agriculture,Agriculture +416047,Research and Development,Research and Development +411252,Research and Development,Research and Development +420250,Research and Development,Research and Development +420249,Research and Development,Research and Development +418751,Research and Development,Research and Development +418274,Infrastructure,Infrastructure +417259,Infrastructure,Infrastructure +422450,Infrastructure,Infrastructure +511475,Defence,Defence +511474,Defence,Defence +505690,Defence,Defence +505686,Defence,Defence +502025,Defence,Defence +502024,Defence,Defence +502022,Defence,Defence +499605,Defence,Defence +499602,Defence,Defence +499496,Defence,Defence +499493,Defence,Defence +499473,Defence,Defence +487834,Defence,Defence +487803,Defence,Defence +484363,Defence,Defence +484360,Defence,Defence +477443,Defence,Defence +473387,Defence,Defence +470506,Defence,Defence +462050,Defence,Defence +459498,Defence,Defence +456655,Defence,Defence +444870,Defence,Defence +437323,Defence,Defence +544271,Defence,Defence +544270,Defence,Defence +544269,Defence,Defence +544268,Defence,Defence +544264,Defence,Defence +544262,Defence,Defence +544261,Defence,Defence +542080,Defence,Defence +540305,Defence,Defence +540282,Defence,Defence +538425,Defence,Defence +535734,Defence,Defence +520170,Defence,Defence +518233,Defence,Defence +514748,Defence,Defence +514746,Defence,Defence +514041,Defence,Defence +456655,Economic Development,Economic Development +444870,Economic Development,Economic Development +544271,Economic Development,Economic Development +544270,Economic Development,Economic Development +544269,Economic Development,Economic Development +544268,Economic Development,Economic Development +544264,Economic Development,Economic Development +544262,Economic Development,Economic Development +544261,Economic Development,Economic Development +542080,Economic Development,Economic Development +540305,Economic Development,Economic Development +540282,Economic Development,Economic Development +538425,Economic Development,Economic Development +535734,Economic Development,Economic Development +531953,Economic Development,Economic Development +526628,Economic Development,Economic Development +523273,Economic Development,Economic Development +520168,Economic Development,Economic Development +518233,Economic Development,Economic Development +515899,Economic Development,Economic Development +515898,Economic Development,Economic Development +515897,Economic Development,Economic Development +514748,Economic Development,Economic Development +514041,Economic Development,Economic Development +511475,Economic Development,Economic Development +511473,Economic Development,Economic Development +511472,Economic Development,Economic Development +507669,Economic Development,Economic Development +507664,Economic Development,Economic Development +507655,Economic Development,Economic Development +507635,Economic Development,Economic Development +502024,Economic Development,Economic Development +499602,Economic Development,Economic Development +499496,Economic Development,Economic Development +499473,Economic Development,Economic Development +493280,Economic Development,Economic Development +491566,Economic Development,Economic Development +491558,Economic Development,Economic Development +487834,Economic Development,Economic Development +487803,Economic Development,Economic Development +484363,Economic Development,Economic Development +484360,Economic Development,Economic Development +484334,Economic Development,Economic Development +484330,Economic Development,Economic Development +484327,Economic Development,Economic Development +477453,Economic Development,Economic Development +477443,Economic Development,Economic Development +473387,Economic Development,Economic Development +470585,Economic Development,Economic Development +470506,Economic Development,Economic Development +462050,Economic Development,Economic Development +459838,Economic Development,Economic Development +459498,Economic Development,Economic Development +544262,Government Procurement,Government Procurement +544261,Government Procurement,Government Procurement +542080,Government Procurement,Government Procurement +540305,Government Procurement,Government Procurement +540282,Government Procurement,Government Procurement +538425,Government Procurement,Government Procurement +535734,Government Procurement,Government Procurement +520170,Government Procurement,Government Procurement +518233,Government Procurement,Government Procurement +514746,Government Procurement,Government Procurement +514041,Government Procurement,Government Procurement +511477,Government Procurement,Government Procurement +499605,Government Procurement,Government Procurement +499473,Government Procurement,Government Procurement +487803,Government Procurement,Government Procurement +470585,Government Procurement,Government Procurement +470506,Government Procurement,Government Procurement +462050,Government Procurement,Government Procurement +459838,Government Procurement,Government Procurement +456655,Government Procurement,Government Procurement +437323,Government Procurement,Government Procurement +544271,Government Procurement,Government Procurement +544270,Government Procurement,Government Procurement +544269,Government Procurement,Government Procurement +544268,Government Procurement,Government Procurement +459195,Industry,Industry +456655,Industry,Industry +444870,Industry,Industry +437323,Industry,Industry +544271,Industry,Industry +544270,Industry,Industry +544269,Industry,Industry +544268,Industry,Industry +544264,Industry,Industry +544262,Industry,Industry +544261,Industry,Industry +542080,Industry,Industry +540282,Industry,Industry +538425,Industry,Industry +535734,Industry,Industry +531953,Industry,Industry +526628,Industry,Industry +520170,Industry,Industry +520168,Industry,Industry +518233,Industry,Industry +515899,Industry,Industry +515898,Industry,Industry +515897,Industry,Industry +514748,Industry,Industry +514746,Industry,Industry +514041,Industry,Industry +511473,Industry,Industry +507669,Industry,Industry +502024,Industry,Industry +499605,Industry,Industry +499602,Industry,Industry +499496,Industry,Industry +491558,Industry,Industry +487834,Industry,Industry +484363,Industry,Industry +484360,Industry,Industry +484334,Industry,Industry +484330,Industry,Industry +484327,Industry,Industry +477453,Industry,Industry +477443,Industry,Industry +470585,Industry,Industry +470506,Industry,Industry +462050,Industry,Industry +459838,Industry,Industry +477443,International Relations,International Relations +470506,International Relations,International Relations +462050,International Relations,International Relations +459838,International Relations,International Relations +459498,International Relations,International Relations +456655,International Relations,International Relations +444870,International Relations,International Relations +437323,International Relations,International Relations +544271,International Relations,International Relations +544270,International Relations,International Relations +544269,International Relations,International Relations +544268,International Relations,International Relations +544264,International Relations,International Relations +544262,International Relations,International Relations +544261,International Relations,International Relations +542080,International Relations,International Relations +540305,International Relations,International Relations +540282,International Relations,International Relations +538425,International Relations,International Relations +535734,International Relations,International Relations +526628,International Relations,International Relations +523273,International Relations,International Relations +520168,International Relations,International Relations +515899,International Relations,International Relations +515898,International Relations,International Relations +515897,International Relations,International Relations +514748,International Relations,International Relations +514746,International Relations,International Relations +511473,International Relations,International Relations +511472,International Relations,International Relations +507669,International Relations,International Relations +507664,International Relations,International Relations +507655,International Relations,International Relations +507635,International Relations,International Relations +502025,International Relations,International Relations +502022,International Relations,International Relations +499602,International Relations,International Relations +499496,International Relations,International Relations +499493,International Relations,International Relations +499473,International Relations,International Relations +493280,International Relations,International Relations +491566,International Relations,International Relations +491558,International Relations,International Relations +487834,International Relations,International Relations +487803,International Relations,International Relations +484363,International Relations,International Relations +484360,International Relations,International Relations +484334,International Relations,International Relations +484330,International Relations,International Relations +484327,International Relations,International Relations +456655,International Trade,International Trade +444870,International Trade,International Trade +531953,International Trade,International Trade +526628,International Trade,International Trade +523273,International Trade,International Trade +520170,International Trade,International Trade +520168,International Trade,International Trade +518233,International Trade,International Trade +515899,International Trade,International Trade +515898,International Trade,International Trade +515897,International Trade,International Trade +514748,International Trade,International Trade +511477,International Trade,International Trade +511475,International Trade,International Trade +511472,International Trade,International Trade +505690,International Trade,International Trade +505686,International Trade,International Trade +502025,International Trade,International Trade +502022,International Trade,International Trade +499602,International Trade,International Trade +499496,International Trade,International Trade +499493,International Trade,International Trade +499473,International Trade,International Trade +493280,International Trade,International Trade +491566,International Trade,International Trade +491558,International Trade,International Trade +484363,International Trade,International Trade +484360,International Trade,International Trade +484334,International Trade,International Trade +484330,International Trade,International Trade +484327,International Trade,International Trade +477453,International Trade,International Trade +477443,International Trade,International Trade +473387,International Trade,International Trade +470506,International Trade,International Trade +459838,International Trade,International Trade +459498,International Trade,International Trade +456655,Research and Development,Research and Development +518233,Research and Development,Research and Development +456655,Security,Security +538425,Security,Security +493280,Security,Security +477453,Security,Security +418515,Employment and Training,Employment and Training +418514,Employment and Training,Employment and Training +418521,Employment and Training,Employment and Training +418520,Employment and Training,Employment and Training +418519,Employment and Training,Employment and Training +418518,Employment and Training,Employment and Training +418517,Employment and Training,Employment and Training +434466,Health,Health +414661,Health,Health +415611,Transportation,Transportation +415606,Transportation,Transportation +418446,Transportation,Transportation +415624,Transportation,Transportation +415622,Transportation,Transportation +414120,Industry,Industry +414119,Industry,Industry +414550,Industry,Industry +414417,Industry,Industry +414120,Research and Development,Research and Development +414119,Research and Development,Research and Development +414550,Research and Development,Research and Development +414417,Research and Development,Research and Development +414120,Health,Health +414119,Health,Health +414550,Health,Health +414417,Health,Health +413345,Health,Health +414344,Consumer Issues,Consumer Issues +414345,Government Procurement,Government Procurement +414344,Government Procurement,Government Procurement +414345,Health,Health +414344,Health,Health +414344,Industry,Industry +414344,Justice and Law Enforcement,Justice and Law Enforcement +414344,Municipalities,Municipalities +414344,Small Business,Small Business +414344,Taxation and Finance,Taxation and Finance +417383,Financial Institutions,Financial Institutions +436161,Industry,Industry +436076,Industry,Industry +414437,Industry,Industry +414117,Industry,Industry +414027,Industry,Industry +411510,Industry,Industry +537031,Industry,Industry +492614,Industry,Industry +487736,Industry,Industry +484345,Industry,Industry +481344,Industry,Industry +476937,Industry,Industry +476931,Industry,Industry +476930,Industry,Industry +475291,Industry,Industry +474064,Industry,Industry +474018,Industry,Industry +414575,Government Procurement,Government Procurement +511549,Government Procurement,Government Procurement +441106,Government Procurement,Government Procurement +422694,Government Procurement,Government Procurement +420923,Government Procurement,Government Procurement +414575,Defence,Defence +441106,Defence,Defence +422694,Defence,Defence +420923,Defence,Defence +411604,Health,Health +411629,Health,Health +529827,Industry,Industry +506106,Industry,Industry +414607,Industry,Industry +416334,Health,Health +416333,Health,Health +418439,Health,Health +416337,Health,Health +416336,Health,Health +416767,Environment,Environment +416767,Transportation,Transportation +411686,Energy,Energy +413885,Agriculture,Agriculture +431033,Agriculture,Agriculture +413894,Agriculture,Agriculture +413893,Agriculture,Agriculture +413890,Agriculture,Agriculture +413889,Agriculture,Agriculture +413887,Agriculture,Agriculture +413885,International Trade,International Trade +413884,International Trade,International Trade +431033,International Trade,International Trade +413894,International Trade,International Trade +413893,International Trade,International Trade +413890,International Trade,International Trade +413889,International Trade,International Trade +413887,International Trade,International Trade +411736,Taxation and Finance,Taxation and Finance +469455,Consumer Issues,Consumer Issues +469454,Consumer Issues,Consumer Issues +441478,Consumer Issues,Consumer Issues +430461,Consumer Issues,Consumer Issues +538355,Consumer Issues,Consumer Issues +436934,Health,Health +538355,Health,Health +507710,Health,Health +502258,Health,Health +490803,Health,Health +490801,Health,Health +487892,Health,Health +487890,Health,Health +484675,Health,Health +469455,Health,Health +462487,Health,Health +459214,Health,Health +458333,Health,Health +458332,Health,Health +452448,Health,Health +444779,Health,Health +441478,Health,Health +436937,Health,Health +458332,International Trade,International Trade +430461,Justice and Law Enforcement,Justice and Law Enforcement +490801,Justice and Law Enforcement,Justice and Law Enforcement +487890,Justice and Law Enforcement,Justice and Law Enforcement +484675,Justice and Law Enforcement,Justice and Law Enforcement +472541,Justice and Law Enforcement,Justice and Law Enforcement +456213,Justice and Law Enforcement,Justice and Law Enforcement +452448,Justice and Law Enforcement,Justice and Law Enforcement +446416,Justice and Law Enforcement,Justice and Law Enforcement +441478,Justice and Law Enforcement,Justice and Law Enforcement +436935,Justice and Law Enforcement,Justice and Law Enforcement +526696,Climate,Climate +479254,Climate,Climate +418533,Climate,Climate +526698,International Trade,International Trade +413719,Taxation and Finance,Taxation and Finance +413027,Health,Health +413027,Small Business,Small Business +413027,Taxation and Finance,Taxation and Finance +422013,Health,Health +421966,Health,Health +422016,Health,Health +421966,Justice and Law Enforcement,Justice and Law Enforcement +420959,Health,Health +420958,Health,Health +420958,Justice and Law Enforcement,Justice and Law Enforcement +512641,Agriculture,Agriculture +490767,Agriculture,Agriculture +539738,Agriculture,Agriculture +538144,Agriculture,Agriculture +534170,Agriculture,Agriculture +526384,Agriculture,Agriculture +526382,Agriculture,Agriculture +522410,Agriculture,Agriculture +522409,Agriculture,Agriculture +517117,Agriculture,Agriculture +515237,Agriculture,Agriculture +515236,Agriculture,Agriculture +490767,Environment,Environment +487688,Environment,Environment +438057,Environment,Environment +425819,Environment,Environment +425818,Environment,Environment +425817,Environment,Environment +425816,Environment,Environment +425809,Environment,Environment +484491,Environment,Environment +484488,Environment,Environment +484486,Environment,Environment +483789,Environment,Environment +481613,Environment,Environment +481611,Environment,Environment +480148,Environment,Environment +480147,Environment,Environment +480146,Environment,Environment +480145,Environment,Environment +480144,Environment,Environment +480143,Environment,Environment +477950,Environment,Environment +477943,Environment,Environment +477934,Environment,Environment +474650,Environment,Environment +474367,Environment,Environment +473571,Environment,Environment +467776,Environment,Environment +467765,Environment,Environment +467754,Environment,Environment +467747,Environment,Environment +467733,Environment,Environment +467727,Environment,Environment +467722,Environment,Environment +458789,Environment,Environment +458787,Environment,Environment +458785,Environment,Environment +455595,Environment,Environment +455587,Environment,Environment +455583,Environment,Environment +544099,Environment,Environment +541515,Environment,Environment +541514,Environment,Environment +541513,Environment,Environment +538141,Environment,Environment +534648,Environment,Environment +534647,Environment,Environment +534171,Environment,Environment +531434,Environment,Environment +531433,Environment,Environment +531432,Environment,Environment +531431,Environment,Environment +531430,Environment,Environment +528756,Environment,Environment +528755,Environment,Environment +528754,Environment,Environment +528753,Environment,Environment +528752,Environment,Environment +528751,Environment,Environment +528750,Environment,Environment +528749,Environment,Environment +528748,Environment,Environment +526387,Environment,Environment +526378,Environment,Environment +522637,Environment,Environment +522423,Environment,Environment +522413,Environment,Environment +522412,Environment,Environment +522408,Environment,Environment +522406,Environment,Environment +519264,Environment,Environment +519259,Environment,Environment +519258,Environment,Environment +519257,Environment,Environment +519256,Environment,Environment +515238,Environment,Environment +515237,Environment,Environment +515236,Environment,Environment +515235,Environment,Environment +513776,Environment,Environment +512648,Environment,Environment +509936,Environment,Environment +509935,Environment,Environment +508618,Environment,Environment +508617,Environment,Environment +504223,Environment,Environment +501927,Environment,Environment +501918,Environment,Environment +501899,Environment,Environment +498499,Environment,Environment +496165,Environment,Environment +496130,Environment,Environment +490780,Environment,Environment +490778,Environment,Environment +490775,Environment,Environment +441335,Fisheries,Fisheries +441334,Fisheries,Fisheries +441331,Fisheries,Fisheries +441329,Fisheries,Fisheries +438056,Fisheries,Fisheries +438055,Fisheries,Fisheries +430940,Fisheries,Fisheries +430938,Fisheries,Fisheries +430935,Fisheries,Fisheries +430932,Fisheries,Fisheries +428282,Fisheries,Fisheries +425809,Fisheries,Fisheries +423447,Fisheries,Fisheries +423446,Fisheries,Fisheries +422223,Fisheries,Fisheries +422221,Fisheries,Fisheries +422216,Fisheries,Fisheries +419373,Fisheries,Fisheries +419366,Fisheries,Fisheries +541514,Fisheries,Fisheries +539730,Fisheries,Fisheries +531433,Fisheries,Fisheries +531432,Fisheries,Fisheries +531431,Fisheries,Fisheries +531430,Fisheries,Fisheries +517118,Fisheries,Fisheries +515234,Fisheries,Fisheries +512648,Fisheries,Fisheries +508618,Fisheries,Fisheries +504230,Fisheries,Fisheries +504223,Fisheries,Fisheries +501911,Fisheries,Fisheries +496134,Fisheries,Fisheries +490767,Fisheries,Fisheries +450258,Fisheries,Fisheries +477934,Infrastructure,Infrastructure +474650,Infrastructure,Infrastructure +490767,Infrastructure,Infrastructure +484527,Infrastructure,Infrastructure +435820,Budget,Budget +432435,Budget,Budget +428816,Budget,Budget +425742,Budget,Budget +425717,Budget,Budget +423993,Budget,Budget +422002,Budget,Budget +418685,Budget,Budget +418684,Budget,Budget +418683,Budget,Budget +414211,Budget,Budget +414208,Budget,Budget +414029,Budget,Budget +413563,Budget,Budget +413296,Budget,Budget +412824,Budget,Budget +412804,Budget,Budget +412792,Budget,Budget +412778,Budget,Budget +412747,Budget,Budget +412703,Budget,Budget +412696,Budget,Budget +412686,Budget,Budget +411920,Budget,Budget +411924,Small Business,Small Business +415647,Consumer Issues,Consumer Issues +411924,Consumer Issues,Consumer Issues +505986,Fisheries,Fisheries +414048,International Relations,International Relations +414516,International Trade,International Trade +412020,International Trade,International Trade +436557,International Trade,International Trade +436556,International Trade,International Trade +418651,International Trade,International Trade +455102,Taxation and Finance,Taxation and Finance +455097,Taxation and Finance,Taxation and Finance +419359,Taxation and Finance,Taxation and Finance +417265,Taxation and Finance,Taxation and Finance +417264,Taxation and Finance,Taxation and Finance +412046,Taxation and Finance,Taxation and Finance +418893,Government Procurement,Government Procurement +418458,Government Procurement,Government Procurement +431895,Government Procurement,Government Procurement +427247,Government Procurement,Government Procurement +420745,Government Procurement,Government Procurement +418896,Government Procurement,Government Procurement +419950,Government Procurement,Government Procurement +419950,Regional Development,Regional Development +412850,Small Business,Small Business +412850,Taxation and Finance,Taxation and Finance +425330,Budget,Budget +415647,Small Business,Small Business +412141,Small Business,Small Business +412141,Consumer Issues,Consumer Issues +468070,International Trade,International Trade +468069,International Trade,International Trade +455089,International Trade,International Trade +455087,International Trade,International Trade +417266,International Trade,International Trade +412473,International Trade,International Trade +412471,International Trade,International Trade +515820,International Trade,International Trade +468074,International Trade,International Trade +468073,International Trade,International Trade +468072,International Trade,International Trade +455089,Taxation and Finance,Taxation and Finance +455087,Taxation and Finance,Taxation and Finance +417266,Taxation and Finance,Taxation and Finance +417262,Taxation and Finance,Taxation and Finance +416039,Taxation and Finance,Taxation and Finance +412475,Taxation and Finance,Taxation and Finance +412473,Taxation and Finance,Taxation and Finance +468074,Taxation and Finance,Taxation and Finance +468073,Taxation and Finance,Taxation and Finance +468072,Taxation and Finance,Taxation and Finance +468071,Taxation and Finance,Taxation and Finance +468070,Taxation and Finance,Taxation and Finance +412511,Budget,Budget +412512,Budget,Budget +412854,Environment,Environment +498430,Environment,Environment +433033,Environment,Environment +433030,Environment,Environment +430289,Environment,Environment +419108,Environment,Environment +457314,Budget,Budget +452371,Budget,Budget +452347,Budget,Budget +449776,Budget,Budget +449774,Budget,Budget +449770,Budget,Budget +444336,Budget,Budget +444333,Budget,Budget +443704,Budget,Budget +440785,Budget,Budget +437553,Budget,Budget +433032,Budget,Budget +428368,Budget,Budget +428362,Budget,Budget +428328,Budget,Budget +423396,Budget,Budget +421416,Budget,Budget +419126,Budget,Budget +419117,Budget,Budget +419108,Budget,Budget +419103,Budget,Budget +419098,Budget,Budget +419097,Budget,Budget +417835,Budget,Budget +417832,Budget,Budget +415201,Budget,Budget +419113,Budget,Budget +419102,Budget,Budget +417836,Budget,Budget +417830,Budget,Budget +415197,Budget,Budget +415195,Budget,Budget +412622,Budget,Budget +470304,Budget,Budget +467138,Budget,Budget +460043,Budget,Budget +460042,Budget,Budget +460038,Budget,Budget +452378,Budget,Budget +452342,Budget,Budget +452340,Budget,Budget +444334,Budget,Budget +440772,Budget,Budget +437587,Budget,Budget +437586,Budget,Budget +437554,Budget,Budget +433033,Budget,Budget +433030,Budget,Budget +431967,Budget,Budget +430290,Budget,Budget +425473,Budget,Budget +421420,Budget,Budget +421418,Budget,Budget +421417,Budget,Budget +419131,Budget,Budget +419129,Budget,Budget +412688,Sports,Sports +462011,Sports,Sports +422302,Sports,Sports +422233,Sports,Sports +417248,Sports,Sports +416646,Sports,Sports +416644,Sports,Sports +416638,Sports,Sports +416635,Sports,Sports +412857,Sports,Sports +412838,Sports,Sports +412837,Sports,Sports +412835,Sports,Sports +412816,Sports,Sports +412809,Sports,Sports +412806,Sports,Sports +412803,Sports,Sports +412797,Sports,Sports +412774,Sports,Sports +412733,Sports,Sports +412726,Sports,Sports +412721,Sports,Sports +412717,Sports,Sports +419783,Economic Development,Economic Development +419781,Economic Development,Economic Development +419780,Economic Development,Economic Development +419779,Economic Development,Economic Development +416224,Economic Development,Economic Development +542038,Economic Development,Economic Development +540057,Economic Development,Economic Development +499296,Economic Development,Economic Development +495987,Economic Development,Economic Development +493685,Economic Development,Economic Development +488125,Economic Development,Economic Development +467724,Economic Development,Economic Development +448313,Economic Development,Economic Development +447699,Economic Development,Economic Development +447696,Economic Development,Economic Development +442475,Economic Development,Economic Development +442472,Economic Development,Economic Development +438957,Economic Development,Economic Development +438952,Economic Development,Economic Development +419806,Economic Development,Economic Development +419802,Economic Development,Economic Development +419800,Economic Development,Economic Development +419799,Economic Development,Economic Development +419798,Economic Development,Economic Development +419795,Economic Development,Economic Development +419780,Regional Development,Regional Development +419779,Regional Development,Regional Development +493685,Regional Development,Regional Development +442475,Regional Development,Regional Development +436083,Regional Development,Regional Development +433162,Regional Development,Regional Development +419806,Regional Development,Regional Development +419802,Regional Development,Regional Development +419800,Regional Development,Regional Development +419799,Regional Development,Regional Development +419798,Regional Development,Regional Development +419795,Regional Development,Regional Development +419785,Regional Development,Regional Development +419783,Regional Development,Regional Development +412717,Agriculture,Agriculture +412710,Agriculture,Agriculture +438684,Agriculture,Agriculture +433424,Agriculture,Agriculture +433422,Agriculture,Agriculture +433207,Agriculture,Agriculture +433206,Agriculture,Agriculture +427630,Agriculture,Agriculture +422232,Agriculture,Agriculture +422231,Agriculture,Agriculture +419971,Agriculture,Agriculture +419966,Agriculture,Agriculture +418004,Agriculture,Agriculture +418000,Agriculture,Agriculture +416646,Agriculture,Agriculture +416638,Agriculture,Agriculture +413024,Agriculture,Agriculture +412857,Agriculture,Agriculture +412838,Agriculture,Agriculture +412837,Agriculture,Agriculture +412835,Agriculture,Agriculture +412816,Agriculture,Agriculture +412809,Agriculture,Agriculture +412806,Agriculture,Agriculture +412803,Agriculture,Agriculture +412797,Agriculture,Agriculture +412774,Agriculture,Agriculture +412733,Agriculture,Agriculture +412726,Agriculture,Agriculture +412710,Tourism,Tourism +412688,Tourism,Tourism +462011,Tourism,Tourism +422302,Tourism,Tourism +417248,Tourism,Tourism +416646,Tourism,Tourism +416644,Tourism,Tourism +416638,Tourism,Tourism +416635,Tourism,Tourism +412857,Tourism,Tourism +412838,Tourism,Tourism +412837,Tourism,Tourism +412835,Tourism,Tourism +412816,Tourism,Tourism +412809,Tourism,Tourism +412806,Tourism,Tourism +412803,Tourism,Tourism +412797,Tourism,Tourism +412774,Tourism,Tourism +412733,Tourism,Tourism +412726,Tourism,Tourism +412721,Tourism,Tourism +434102,Tourism,Tourism +434101,Tourism,Tourism +424984,Tourism,Tourism +424839,Tourism,Tourism +424837,Tourism,Tourism +424834,Tourism,Tourism +420794,Tourism,Tourism +412906,Tourism,Tourism +412903,Tourism,Tourism +412901,Tourism,Tourism +412768,Tourism,Tourism +412749,Tourism,Tourism +412745,Tourism,Tourism +412742,Tourism,Tourism +412737,Tourism,Tourism +412704,Tourism,Tourism +412701,Tourism,Tourism +412699,Tourism,Tourism +412690,Tourism,Tourism +521051,Tourism,Tourism +521050,Tourism,Tourism +511656,Tourism,Tourism +466898,Tourism,Tourism +464451,Tourism,Tourism +463657,Tourism,Tourism +463656,Tourism,Tourism +463655,Tourism,Tourism +463652,Tourism,Tourism +463651,Tourism,Tourism +463650,Tourism,Tourism +415199,Budget,Budget +412844,Budget,Budget +465617,Budget,Budget +461074,Budget,Budget +452362,Budget,Budget +452344,Budget,Budget +443633,Budget,Budget +437556,Budget,Budget +425475,Budget,Budget +425472,Budget,Budget +419115,Budget,Budget +419067,Budget,Budget +417837,Budget,Budget +452358,Budget,Budget +444337,Budget,Budget +440959,Budget,Budget +440958,Budget,Budget +437632,Budget,Budget +437585,Budget,Budget +434914,Budget,Budget +433034,Budget,Budget +433031,Budget,Budget +419110,Budget,Budget +419099,Budget,Budget +415196,Budget,Budget +412848,Budget,Budget +470313,Budget,Budget +470312,Budget,Budget +460041,Budget,Budget +459467,Budget,Budget +459466,Budget,Budget +481764,Environment,Environment +480101,Environment,Environment +472817,Environment,Environment +434913,Environment,Environment +430288,Environment,Environment +430287,Environment,Environment +421417,Environment,Environment +419113,Environment,Environment +412848,Environment,Environment +535675,Environment,Environment +427788,Transportation,Transportation +425108,Transportation,Transportation +536953,Transportation,Transportation +536930,Transportation,Transportation +524622,Transportation,Transportation +516721,Transportation,Transportation +516720,Transportation,Transportation +512023,Transportation,Transportation +512022,Transportation,Transportation +509876,Transportation,Transportation +492560,Transportation,Transportation +491058,Transportation,Transportation +490701,Transportation,Transportation +490654,Transportation,Transportation +490653,Transportation,Transportation +486863,Transportation,Transportation +481975,Transportation,Transportation +474349,Transportation,Transportation +444555,Transportation,Transportation +444554,Transportation,Transportation +444552,Transportation,Transportation +444551,Transportation,Transportation +444550,Transportation,Transportation +412949,Financial Institutions,Financial Institutions +412943,Financial Institutions,Financial Institutions +437646,Financial Institutions,Financial Institutions +437645,Financial Institutions,Financial Institutions +437644,Financial Institutions,Financial Institutions +413943,Financial Institutions,Financial Institutions +412946,Health,Health +412942,Health,Health +488560,Health,Health +488559,Health,Health +488557,Health,Health +430468,Health,Health +412946,Small Business,Small Business +412942,Small Business,Small Business +412946,Taxation and Finance,Taxation and Finance +412942,Taxation and Finance,Taxation and Finance +513959,Immigration,Immigration +504674,Immigration,Immigration +455414,Immigration,Immigration +449679,Immigration,Immigration +447773,Immigration,Immigration +419899,Immigration,Immigration +418033,Immigration,Immigration +541691,Immigration,Immigration +539725,Immigration,Immigration +539724,Immigration,Immigration +539723,Immigration,Immigration +539686,Immigration,Immigration +537642,Immigration,Immigration +534428,Immigration,Immigration +534414,Immigration,Immigration +529186,Immigration,Immigration +529182,Immigration,Immigration +526308,Immigration,Immigration +526302,Immigration,Immigration +526300,Immigration,Immigration +522945,Immigration,Immigration +522943,Immigration,Immigration +522936,Immigration,Immigration +467417,Budget,Budget +464500,Budget,Budget +421915,Budget,Budget +421899,Budget,Budget +421897,Budget,Budget +421892,Budget,Budget +415444,Budget,Budget +510676,Budget,Budget +498784,Budget,Budget +493546,Budget,Budget +491017,Budget,Budget +490999,Budget,Budget +481791,Budget,Budget +529941,Climate,Climate +526240,Climate,Climate +425978,Climate,Climate +535155,Climate,Climate +418716,Government Procurement,Government Procurement +417106,Government Procurement,Government Procurement +424774,Government Procurement,Government Procurement +424772,Government Procurement,Government Procurement +424705,Government Procurement,Government Procurement +424704,Government Procurement,Government Procurement +418748,Government Procurement,Government Procurement +418719,Government Procurement,Government Procurement +418718,Government Procurement,Government Procurement +418717,Regional Development,Regional Development +418716,Regional Development,Regional Development +424774,Regional Development,Regional Development +424772,Regional Development,Regional Development +424771,Regional Development,Regional Development +424705,Regional Development,Regional Development +418748,Regional Development,Regional Development +418719,Regional Development,Regional Development +416978,Industry,Industry +413239,Industry,Industry +413425,Official Languages,Official Languages +440704,Agriculture,Agriculture +480280,Infrastructure,Infrastructure +429343,Infrastructure,Infrastructure +416853,Infrastructure,Infrastructure +416845,International Relations,International Relations +429343,International Relations,International Relations +416853,International Trade,International Trade +416845,International Trade,International Trade +480280,Transportation,Transportation +523444,Industry,Industry +523441,Industry,Industry +432615,Industry,Industry +432605,Industry,Industry +432603,Industry,Industry +413840,Industry,Industry +413855,Economic Development,Economic Development +441673,Immigration,Immigration +436702,Immigration,Immigration +429780,Immigration,Immigration +423330,Immigration,Immigration +413860,Immigration,Immigration +448757,Transportation,Transportation +448756,Transportation,Transportation +446506,Transportation,Transportation +446504,Transportation,Transportation +444221,Transportation,Transportation +440160,Transportation,Transportation +440159,Transportation,Transportation +440158,Transportation,Transportation +440153,Transportation,Transportation +440151,Transportation,Transportation +440147,Transportation,Transportation +434156,Transportation,Transportation +434155,Transportation,Transportation +428315,Transportation,Transportation +428314,Transportation,Transportation +428312,Transportation,Transportation +425565,Transportation,Transportation +423422,Transportation,Transportation +418502,Transportation,Transportation +418501,Transportation,Transportation +418500,Transportation,Transportation +418497,Transportation,Transportation +413866,Transportation,Transportation +503572,Transportation,Transportation +503550,Transportation,Transportation +503549,Transportation,Transportation +494271,Transportation,Transportation +494270,Transportation,Transportation +494266,Transportation,Transportation +494263,Transportation,Transportation +494257,Transportation,Transportation +492116,Transportation,Transportation +486618,Transportation,Transportation +485854,Transportation,Transportation +485853,Transportation,Transportation +483336,Transportation,Transportation +483335,Transportation,Transportation +483334,Transportation,Transportation +482513,Transportation,Transportation +478196,Transportation,Transportation +471677,Transportation,Transportation +469222,Transportation,Transportation +469160,Transportation,Transportation +466369,Transportation,Transportation +465520,Transportation,Transportation +465519,Transportation,Transportation +465518,Transportation,Transportation +463046,Transportation,Transportation +463045,Transportation,Transportation +463044,Transportation,Transportation +462145,Transportation,Transportation +461821,Transportation,Transportation +458168,Transportation,Transportation +458167,Transportation,Transportation +456608,Transportation,Transportation +456359,Transportation,Transportation +494331,Consumer Issues,Consumer Issues +445946,Consumer Issues,Consumer Issues +420603,Consumer Issues,Consumer Issues +420602,Consumer Issues,Consumer Issues +420582,Consumer Issues,Consumer Issues +440713,Financial Institutions,Financial Institutions +445033,Government Procurement,Government Procurement +444074,Government Procurement,Government Procurement +506158,Government Procurement,Government Procurement +420582,Industry,Industry +419990,Industry,Industry +494584,Industry,Industry +463225,Industry,Industry +456520,Industry,Industry +445946,Industry,Industry +445033,Industry,Industry +444074,Industry,Industry +431414,Industry,Industry +428676,Industry,Industry +420603,Industry,Industry +445033,Privacy and Access to Information,Privacy and Access to Information +444074,Privacy and Access to Information,Privacy and Access to Information +428676,Privacy and Access to Information,Privacy and Access to Information +420603,Privacy and Access to Information,Privacy and Access to Information +463225,Privacy and Access to Information,Privacy and Access to Information +462685,Privacy and Access to Information,Privacy and Access to Information +413907,Small Business,Small Business +413903,Small Business,Small Business +522718,Small Business,Small Business +522700,Small Business,Small Business +522699,Small Business,Small Business +515985,Small Business,Small Business +511426,Small Business,Small Business +485433,Small Business,Small Business +485432,Small Business,Small Business +476062,Small Business,Small Business +476057,Small Business,Small Business +476054,Small Business,Small Business +452981,Small Business,Small Business +452980,Small Business,Small Business +452979,Small Business,Small Business +442777,Small Business,Small Business +442776,Small Business,Small Business +433960,Small Business,Small Business +433959,Small Business,Small Business +427024,Small Business,Small Business +427023,Small Business,Small Business +427022,Small Business,Small Business +427021,Small Business,Small Business +427020,Small Business,Small Business +427019,Small Business,Small Business +427018,Small Business,Small Business +427017,Small Business,Small Business +430092,Economic Development,Economic Development +430091,Economic Development,Economic Development +539403,Economic Development,Economic Development +525898,Economic Development,Economic Development +516887,Economic Development,Economic Development +507213,Economic Development,Economic Development +501043,Economic Development,Economic Development +495461,Economic Development,Economic Development +495456,Economic Development,Economic Development +490042,Economic Development,Economic Development +489906,Economic Development,Economic Development +489903,Economic Development,Economic Development +489902,Economic Development,Economic Development +487011,Economic Development,Economic Development +487008,Economic Development,Economic Development +487003,Economic Development,Economic Development +487000,Economic Development,Economic Development +486586,Economic Development,Economic Development +483818,Economic Development,Economic Development +483817,Economic Development,Economic Development +483813,Economic Development,Economic Development +481130,Economic Development,Economic Development +481129,Economic Development,Economic Development +481127,Economic Development,Economic Development +479722,Economic Development,Economic Development +479718,Economic Development,Economic Development +479717,Economic Development,Economic Development +479716,Economic Development,Economic Development +479713,Economic Development,Economic Development +479709,Economic Development,Economic Development +479707,Economic Development,Economic Development +479704,Economic Development,Economic Development +476910,Economic Development,Economic Development +476909,Economic Development,Economic Development +476556,Economic Development,Economic Development +476554,Economic Development,Economic Development +476553,Economic Development,Economic Development +474352,Economic Development,Economic Development +474351,Economic Development,Economic Development +473069,Economic Development,Economic Development +473068,Economic Development,Economic Development +473067,Economic Development,Economic Development +470470,Economic Development,Economic Development +470466,Economic Development,Economic Development +468215,Economic Development,Economic Development +467959,Economic Development,Economic Development +467147,Economic Development,Economic Development +467126,Economic Development,Economic Development +467041,Economic Development,Economic Development +464982,Economic Development,Economic Development +464944,Economic Development,Economic Development +464383,Economic Development,Economic Development +464381,Economic Development,Economic Development +464379,Economic Development,Economic Development +464378,Economic Development,Economic Development +464376,Economic Development,Economic Development +464374,Economic Development,Economic Development +464371,Economic Development,Economic Development +462465,Economic Development,Economic Development +461527,Economic Development,Economic Development +461526,Economic Development,Economic Development +460470,Economic Development,Economic Development +459377,Economic Development,Economic Development +415178,Energy,Energy +415177,Energy,Energy +429988,Energy,Energy +420466,Energy,Energy +420465,Energy,Energy +415177,Climate,Climate +429988,Climate,Climate +420466,Climate,Climate +420465,Climate,Climate +415417,Climate,Climate +415178,Transportation,Transportation +415177,Transportation,Transportation +414952,Infrastructure,Infrastructure +414951,Infrastructure,Infrastructure +414952,International Trade,International Trade +414952,Transportation,Transportation +414951,Transportation,Transportation +418441,International Development,International Development +418440,International Development,International Development +497217,Economic Development,Economic Development +474373,Economic Development,Economic Development +472545,Economic Development,Economic Development +472325,Economic Development,Economic Development +472324,Economic Development,Economic Development +472323,Economic Development,Economic Development +458130,Economic Development,Economic Development +448365,Economic Development,Economic Development +446672,Economic Development,Economic Development +446671,Economic Development,Economic Development +446669,Economic Development,Economic Development +443234,Economic Development,Economic Development +437353,Economic Development,Economic Development +437352,Economic Development,Economic Development +536726,Economic Development,Economic Development +536725,Economic Development,Economic Development +536724,Economic Development,Economic Development +521541,Economic Development,Economic Development +521539,Economic Development,Economic Development +521487,Economic Development,Economic Development +518832,Economic Development,Economic Development +516856,Economic Development,Economic Development +516855,Economic Development,Economic Development +516854,Economic Development,Economic Development +516853,Economic Development,Economic Development +507556,Economic Development,Economic Development +503630,Economic Development,Economic Development +417870,Consumer Issues,Consumer Issues +417870,Transportation,Transportation +414121,Industry,Industry +414121,Research and Development,Research and Development +414121,Health,Health +413348,Health,Health +414345,Consumer Issues,Consumer Issues +419833,Government Procurement,Government Procurement +419833,Health,Health +414345,Industry,Industry +414345,Justice and Law Enforcement,Justice and Law Enforcement +414345,Municipalities,Municipalities +414344,Security,Security +414345,Small Business,Small Business +414345,Taxation and Finance,Taxation and Finance +417384,Financial Institutions,Financial Institutions +417383,Immigration,Immigration +417383,International Relations,International Relations +471903,Industry,Industry +412918,Health,Health +412918,Small Business,Small Business +412918,Taxation and Finance,Taxation and Finance +413381,Health,Health +413381,Taxation and Finance,Taxation and Finance +420922,Government Procurement,Government Procurement +420922,Defence,Defence +420331,Health,Health +418647,Health,Health +411636,Health,Health +411643,Health,Health +414606,Industry,Industry +414607,Budget,Budget +506106,Defence,Defence +416335,Health,Health +416769,Environment,Environment +416769,Transportation,Transportation +412874,International Trade,International Trade +412874,Environment,Environment +411687,Energy,Energy +411687,Environment,Environment +411687,Economic Development,Economic Development +413886,Agriculture,Agriculture +413886,International Trade,International Trade +411738,Taxation and Finance,Taxation and Finance +411785,Privacy and Access to Information,Privacy and Access to Information +411791,International Trade,International Trade +411792,International Trade,International Trade +411793,International Trade,International Trade +411794,International Trade,International Trade +411799,International Trade,International Trade +411802,Taxation and Finance,Taxation and Finance +411803,International Trade,International Trade +411804,International Trade,International Trade +490801,Consumer Issues,Consumer Issues +436935,Health,Health +458333,International Trade,International Trade +436934,Justice and Law Enforcement,Justice and Law Enforcement +545004,Climate,Climate +536094,International Trade,International Trade +418533,Research and Development,Research and Development +411874,Regional Development,Regional Development +438765,Taxation and Finance,Taxation and Finance +413028,Health,Health +413028,Small Business,Small Business +413028,Taxation and Finance,Taxation and Finance +422015,Health,Health +431239,Justice and Law Enforcement,Justice and Law Enforcement +431237,Research and Development,Research and Development +428838,Agriculture,Agriculture +428838,Health,Health +420959,Justice and Law Enforcement,Justice and Law Enforcement +515235,Agriculture,Agriculture +490772,Environment,Environment +443799,Fisheries,Fisheries +484519,Infrastructure,Infrastructure +536642,Budget,Budget +411922,Small Business,Small Business +411922,Consumer Issues,Consumer Issues +411921,Taxation and Finance,Taxation and Finance +415673,Small Business,Small Business +415673,Consumer Issues,Consumer Issues +411925,Small Business,Small Business +411925,Consumer Issues,Consumer Issues +411931,Agriculture,Agriculture +412136,Defence,Defence +412136,Government Procurement,Government Procurement +412136,Security,Security +412911,Fisheries,Fisheries +414049,International Relations,International Relations +418650,International Trade,International Trade +412040,Taxation and Finance,Taxation and Finance +418895,Government Procurement,Government Procurement +419953,Government Procurement,Government Procurement +419953,Regional Development,Regional Development +412853,Small Business,Small Business +412853,Taxation and Finance,Taxation and Finance +412099,Economic Development,Economic Development +412105,Economic Development,Economic Development +465825,Budget,Budget +415671,Small Business,Small Business +415671,Consumer Issues,Consumer Issues +412198,Taxation and Finance,Taxation and Finance +412198,Housing,Housing +412198,Small Business,Small Business +412198,Municipalities,Municipalities +412198,Consumer Issues,Consumer Issues +414983,Budget,Budget +414983,Education,Education +414983,Employment and Training,Employment and Training +414983,Environment,Environment +412314,Regional Development,Regional Development +412317,Health,Health +412320,Health,Health +412352,Small Business,Small Business +412465,Justice and Law Enforcement,Justice and Law Enforcement +468071,International Trade,International Trade +468069,Taxation and Finance,Taxation and Finance +450527,Budget,Budget +465824,Budget,Budget +412530,Immigration,Immigration +415200,Environment,Environment +412613,Budget,Budget +419119,Budget,Budget +412710,Sports,Sports +412644,Economic Development,Economic Development +412658,Economic Development,Economic Development +412658,Regional Development,Regional Development +412663,Economic Development,Economic Development +412663,Regional Development,Regional Development +412671,Economic Development,Economic Development +419785,Economic Development,Economic Development +419781,Regional Development,Regional Development +412721,Agriculture,Agriculture +412717,Tourism,Tourism +448288,Tourism,Tourism +412707,Sports,Sports +412707,Tourism,Tourism +460896,Sports,Sports +460896,Tourism,Tourism +412750,Sports,Sports +412750,Tourism,Tourism +415200,Budget,Budget +457316,Budget,Budget +516739,Environment,Environment +412861,Taxation and Finance,Taxation and Finance +427789,Transportation,Transportation +413942,Financial Institutions,Financial Institutions +412948,Health,Health +412948,Small Business,Small Business +412948,Taxation and Finance,Taxation and Finance +412988,International Trade,International Trade +412988,Taxation and Finance,Taxation and Finance +412989,International Trade,International Trade +412989,Taxation and Finance,Taxation and Finance +412990,International Trade,International Trade +412990,Taxation and Finance,Taxation and Finance +514663,Immigration,Immigration +467434,Budget,Budget +535132,Climate,Climate +418717,Government Procurement,Government Procurement +418718,Regional Development,Regional Development +418344,Industry,Industry +413387,Budget,Budget +424493,Budget,Budget +412933,Budget,Budget +505024,Official Languages,Official Languages +413437,Official Languages,Official Languages +413455,Employment and Training,Employment and Training +413473,Employment and Training,Employment and Training +461012,Agriculture,Agriculture +413481,Employment and Training,Employment and Training +413561,Taxation and Finance,Taxation and Finance +413626,Economic Development,Economic Development +413830,International Relations,International Relations +413830,International Trade,International Trade +413830,Transportation,Transportation +416845,Infrastructure,Infrastructure +416853,International Relations,International Relations +429343,International Trade,International Trade +429343,Transportation,Transportation +413833,Industry,Industry +413857,Economic Development,Economic Development +448627,Immigration,Immigration +456357,Transportation,Transportation +494584,Consumer Issues,Consumer Issues +494331,Financial Institutions,Financial Institutions +445946,Government Procurement,Government Procurement +420602,Industry,Industry +456520,Privacy and Access to Information,Privacy and Access to Information +440713,Security,Security +418185,Energy,Energy +418185,Environment,Environment +413910,Small Business,Small Business +413894,Health,Health +459376,Economic Development,Economic Development +415417,Energy,Energy +415178,Climate,Climate +415417,Transportation,Transportation +414953,Infrastructure,Infrastructure +414953,International Trade,International Trade +414953,Transportation,Transportation +418442,International Development,International Development +413951,Internal Trade,Internal Trade +497219,Economic Development,Economic Development +443234,Health,Health +472325,Industry,Industry +437353,Intellectual Property,Intellectual Property +516853,International Trade,International Trade +501183,Regional Development,Regional Development +536726,Research and Development,Research and Development +489989,Employment and Training,Emploi et formation +415654,Economic Development,Développement économique +415654,Employment and Training,Emploi et formation +427076,Government Procurement,Government Procurement +502328,Consumer Issues,Consumer Issues +448763,Security,Security +436240,Financial Institutions,Financial Institutions +463429,Industry,Industry +502328,Privacy and Access to Information,Privacy and Access to Information +414040,Government Procurement,Government Procurement +432637,Justice and Law Enforcement,Justice and Law Enforcement +413984,Research and Development,Research and Development +476826,Agriculture,Agriculture +414403,Economic Development,Economic Development +414090,Research and Development,Research and Development +414090,Climate,Climate +414090,International Trade,International Trade +414090,Employment and Training,Employment and Training +414090,Economic Development,Economic Development +414089,Government Procurement,Government Procurement +414090,Environment,Environment +414090,Internal Trade,Internal Trade +414090,Regional Development,Regional Development +414090,Energy,Energy +414090,Infrastructure,Infrastructure +423812,Budget,Budget +415307,Economic Development,Economic Development +415309,Infrastructure,Infrastructure +415307,Sports,Sports +415308,Tourism,Tourism +469229,Budget,Budget +429162,Economic Development,Economic Development +415574,Health,Health +436972,Economic Development,Economic Development +508618,Budget,Budget +415969,Transportation,Transportation +414106,Climate,Climate +456862,Budget,Budget +417622,Health,Health +417622,Industry,Industry +437856,Economic Development,Economic Development +427290,Intellectual Property,Intellectual Property +427290,International Trade,International Trade +427289,Taxation and Finance,Taxation and Finance +421169,Security,Security +427412,International Trade,International Trade +416006,Infrastructure,Infrastructure +416006,Transportation,Transportation +455574,Taxation and Finance,Impôts et finances +414257,Taxation and Finance,Taxation and Finance +431008,Economic Development,Economic Development +426988,Government Procurement,Government Procurement +431008,Industry,Industry +431008,Regional Development,Regional Development +426988,Small Business,Small Business +420189,Climate,Climate +420189,Energy,Energy +420189,Environment,Environment +441730,Economic Development,Economic Development +434220,Government Procurement,Government Procurement +461012,International Trade,International Trade +461012,Taxation and Finance,Taxation and Finance +461012,Transportation,Transportation +461012,Environment,Environment +437451,International Trade,International Trade +414796,Consumer Issues,Consumer Issues +414798,Government Procurement,Government Procurement +414637,Health,Health +414796,Justice and Law Enforcement,Justice and Law Enforcement +414796,Municipalities,Municipalities +414796,Taxation and Finance,Taxation and Finance +428115,Financial Institutions,Financial Institutions +508117,Small Business,Small Business +414416,International Development,International Development +461064,Employment and Training,Employment and Training +421826,Transportation,Transportation +414834,Health,Health +414834,Justice and Law Enforcement,Justice and Law Enforcement +414474,International Development,International Development +415574,Small Business,Small Business +415574,Economic Development,Economic Development +427103,Economic Development,Développement économique +434416,Transportation,Transportation +434417,Tourism,Tourism +434418,International Trade,International Trade +436321,Taxation and Finance,Taxation and Finance +501183,Economic Development,Economic Development +501078,Economic Development,Economic Development +501077,Economic Development,Economic Development +437353,Health,Health +437352,Health,Health +417369,Health,Health +415341,Health,Health +415270,Health,Health +536726,Health,Health +536725,Health,Health +536724,Health,Health +521541,Health,Health +521539,Health,Health +521487,Health,Health +518832,Health,Health +516856,Health,Health +516855,Health,Health +516854,Health,Health +516853,Health,Health +507556,Health,Health +503630,Health,Health +501183,Health,Health +501078,Health,Health +501077,Health,Health +497219,Health,Health +497217,Health,Health +474373,Health,Health +472545,Health,Health +472325,Health,Health +472324,Health,Health +458130,Health,Health +448365,Health,Health +446672,Health,Health +446671,Health,Health +446669,Health,Health +472324,Industry,Industry +472323,Industry,Industry +458130,Industry,Industry +448365,Industry,Industry +446672,Industry,Industry +446671,Industry,Industry +446669,Industry,Industry +443234,Industry,Industry +437353,Industry,Industry +437352,Industry,Industry +417369,Industry,Industry +415341,Industry,Industry +415270,Industry,Industry +536726,Industry,Industry +536725,Industry,Industry +536724,Industry,Industry +521541,Industry,Industry +521539,Industry,Industry +521487,Industry,Industry +518832,Industry,Industry +516856,Industry,Industry +516855,Industry,Industry +516854,Industry,Industry +516853,Industry,Industry +507556,Industry,Industry +503630,Industry,Industry +501183,Industry,Industry +501078,Industry,Industry +501077,Industry,Industry +497219,Industry,Industry +497217,Industry,Industry +474373,Industry,Industry +472545,Industry,Industry +437352,Intellectual Property,Intellectual Property +417369,Intellectual Property,Intellectual Property +536726,Intellectual Property,Intellectual Property +536725,Intellectual Property,Intellectual Property +536724,Intellectual Property,Intellectual Property +521541,Intellectual Property,Intellectual Property +521539,Intellectual Property,Intellectual Property +521487,Intellectual Property,Intellectual Property +518832,Intellectual Property,Intellectual Property +516856,Intellectual Property,Intellectual Property +516855,Intellectual Property,Intellectual Property +516854,Intellectual Property,Intellectual Property +516853,Intellectual Property,Intellectual Property +507556,Intellectual Property,Intellectual Property +503630,Intellectual Property,Intellectual Property +497219,Intellectual Property,Intellectual Property +497217,Intellectual Property,Intellectual Property +472545,Intellectual Property,Intellectual Property +472325,Intellectual Property,Intellectual Property +472324,Intellectual Property,Intellectual Property +472323,Intellectual Property,Intellectual Property +446672,Intellectual Property,Intellectual Property +446671,Intellectual Property,Intellectual Property +446669,Intellectual Property,Intellectual Property +443234,Intellectual Property,Intellectual Property +497219,International Trade,International Trade +497217,International Trade,International Trade +472545,International Trade,International Trade +472325,International Trade,International Trade +472324,International Trade,International Trade +472323,International Trade,International Trade +446672,International Trade,International Trade +446671,International Trade,International Trade +443234,International Trade,International Trade +437352,International Trade,International Trade +536726,International Trade,International Trade +536725,International Trade,International Trade +536724,International Trade,International Trade +521541,International Trade,International Trade +521539,International Trade,International Trade +521487,International Trade,International Trade +518832,International Trade,International Trade +516856,International Trade,International Trade +516855,International Trade,International Trade +516854,International Trade,International Trade +501078,Regional Development,Regional Development +501077,Regional Development,Regional Development +497219,Regional Development,Regional Development +497217,Regional Development,Regional Development +472545,Regional Development,Regional Development +472325,Regional Development,Regional Development +472324,Regional Development,Regional Development +448365,Regional Development,Regional Development +446672,Regional Development,Regional Development +446671,Regional Development,Regional Development +443234,Regional Development,Regional Development +417369,Regional Development,Regional Development +536726,Regional Development,Regional Development +536725,Regional Development,Regional Development +536724,Regional Development,Regional Development +521541,Regional Development,Regional Development +521539,Regional Development,Regional Development +521487,Regional Development,Regional Development +518832,Regional Development,Regional Development +516856,Regional Development,Regional Development +516855,Regional Development,Regional Development +516854,Regional Development,Regional Development +516853,Regional Development,Regional Development +507556,Regional Development,Regional Development +503630,Regional Development,Regional Development +536725,Research and Development,Research and Development +536724,Research and Development,Research and Development +521541,Research and Development,Research and Development +521539,Research and Development,Research and Development +521487,Research and Development,Research and Development +518832,Research and Development,Research and Development +516856,Research and Development,Research and Development +516855,Research and Development,Research and Development +516854,Research and Development,Research and Development +516853,Research and Development,Research and Development +507556,Research and Development,Research and Development +503630,Research and Development,Research and Development +501183,Research and Development,Research and Development +501078,Research and Development,Research and Development +501077,Research and Development,Research and Development +497219,Research and Development,Research and Development +497217,Research and Development,Research and Development +474373,Research and Development,Research and Development +472545,Research and Development,Research and Development +472325,Research and Development,Research and Development +472324,Research and Development,Research and Development +472323,Research and Development,Research and Development +448365,Research and Development,Research and Development +446672,Research and Development,Research and Development +446671,Research and Development,Research and Development +446669,Research and Development,Research and Development +443234,Research and Development,Research and Development +437353,Research and Development,Research and Development +417369,Research and Development,Research and Development +489987,Employment and Training,Emploi et formation +489982,Employment and Training,Emploi et formation +494172,Employment and Training,Emploi et formation +492099,Employment and Training,Emploi et formation +492098,Employment and Training,Emploi et formation +415653,Economic Development,Développement économique +415651,Economic Development,Développement économique +420398,Economic Development,Développement économique +420397,Economic Development,Développement économique +420396,Economic Development,Développement économique +420395,Economic Development,Développement économique +420394,Economic Development,Développement économique +420393,Economic Development,Développement économique +420392,Economic Development,Développement économique +420391,Economic Development,Développement économique +416101,Economic Development,Développement économique +416097,Economic Development,Développement économique +416093,Economic Development,Développement économique +416082,Economic Development,Développement économique +415811,Economic Development,Développement économique +415807,Economic Development,Développement économique +415655,Economic Development,Développement économique +415653,Employment and Training,Emploi et formation +415651,Employment and Training,Emploi et formation +420398,Employment and Training,Emploi et formation +420397,Employment and Training,Emploi et formation +420396,Employment and Training,Emploi et formation +420395,Employment and Training,Emploi et formation +420394,Employment and Training,Emploi et formation +420393,Employment and Training,Emploi et formation +420392,Employment and Training,Emploi et formation +420391,Employment and Training,Emploi et formation +416101,Employment and Training,Emploi et formation +416097,Employment and Training,Emploi et formation +416093,Employment and Training,Emploi et formation +416082,Employment and Training,Emploi et formation +415811,Employment and Training,Emploi et formation +415807,Employment and Training,Emploi et formation +415655,Employment and Training,Emploi et formation +427073,Government Procurement,Government Procurement +422549,Government Procurement,Government Procurement +507592,Government Procurement,Government Procurement +507255,Government Procurement,Government Procurement +505455,Government Procurement,Government Procurement +505453,Government Procurement,Government Procurement +502328,Government Procurement,Government Procurement +498640,Government Procurement,Government Procurement +493845,Government Procurement,Government Procurement +477965,Government Procurement,Government Procurement +473539,Government Procurement,Government Procurement +473537,Government Procurement,Government Procurement +472880,Government Procurement,Government Procurement +463429,Government Procurement,Government Procurement +463425,Government Procurement,Government Procurement +462679,Government Procurement,Government Procurement +460247,Government Procurement,Government Procurement +460246,Government Procurement,Government Procurement +459253,Government Procurement,Government Procurement +452104,Government Procurement,Government Procurement +449361,Government Procurement,Government Procurement +449332,Government Procurement,Government Procurement +449322,Government Procurement,Government Procurement +448763,Government Procurement,Government Procurement +448448,Government Procurement,Government Procurement +436240,Government Procurement,Government Procurement +498640,Consumer Issues,Consumer Issues +493845,Consumer Issues,Consumer Issues +463429,Consumer Issues,Consumer Issues +463425,Consumer Issues,Consumer Issues +462679,Consumer Issues,Consumer Issues +459253,Consumer Issues,Consumer Issues +449322,Consumer Issues,Consumer Issues +448763,Consumer Issues,Consumer Issues +448448,Consumer Issues,Consumer Issues +424448,Consumer Issues,Consumer Issues +422549,Consumer Issues,Consumer Issues +507255,Consumer Issues,Consumer Issues +505455,Consumer Issues,Consumer Issues +505453,Consumer Issues,Consumer Issues +448448,Security,Security +448444,Security,Security +436240,Security,Security +429044,Security,Security +427076,Security,Security +427073,Security,Security +424448,Security,Security +422549,Security,Security +505455,Security,Security +505453,Security,Security +502328,Security,Security +493845,Security,Security +477965,Security,Security +473539,Security,Security +473537,Security,Security +472880,Security,Security +463429,Security,Security +463425,Security,Security +462679,Security,Security +460247,Security,Security +460246,Security,Security +459253,Security,Security +452104,Security,Security +449361,Security,Security +449332,Security,Security +449322,Security,Security +427076,Financial Institutions,Financial Institutions +427073,Financial Institutions,Financial Institutions +424448,Financial Institutions,Financial Institutions +422549,Financial Institutions,Financial Institutions +493845,Financial Institutions,Financial Institutions +477965,Financial Institutions,Financial Institutions +463429,Financial Institutions,Financial Institutions +463425,Financial Institutions,Financial Institutions +462679,Financial Institutions,Financial Institutions +460247,Financial Institutions,Financial Institutions +460246,Financial Institutions,Financial Institutions +449332,Financial Institutions,Financial Institutions +449322,Financial Institutions,Financial Institutions +448763,Financial Institutions,Financial Institutions +463425,Industry,Industry +459253,Industry,Industry +449361,Industry,Industry +449322,Industry,Industry +448763,Industry,Industry +448448,Industry,Industry +424448,Industry,Industry +422549,Industry,Industry +505453,Industry,Industry +493845,Industry,Industry +477965,Industry,Industry +493845,Privacy and Access to Information,Privacy and Access to Information +477965,Privacy and Access to Information,Privacy and Access to Information +463429,Privacy and Access to Information,Privacy and Access to Information +463425,Privacy and Access to Information,Privacy and Access to Information +462679,Privacy and Access to Information,Privacy and Access to Information +460247,Privacy and Access to Information,Privacy and Access to Information +460246,Privacy and Access to Information,Privacy and Access to Information +452104,Privacy and Access to Information,Privacy and Access to Information +449361,Privacy and Access to Information,Privacy and Access to Information +449332,Privacy and Access to Information,Privacy and Access to Information +449322,Privacy and Access to Information,Privacy and Access to Information +448763,Privacy and Access to Information,Privacy and Access to Information +448448,Privacy and Access to Information,Privacy and Access to Information +448444,Privacy and Access to Information,Privacy and Access to Information +429044,Privacy and Access to Information,Privacy and Access to Information +427076,Privacy and Access to Information,Privacy and Access to Information +427073,Privacy and Access to Information,Privacy and Access to Information +424448,Privacy and Access to Information,Privacy and Access to Information +422549,Privacy and Access to Information,Privacy and Access to Information +507255,Privacy and Access to Information,Privacy and Access to Information +505455,Privacy and Access to Information,Privacy and Access to Information +505453,Privacy and Access to Information,Privacy and Access to Information +494213,Government Procurement,Government Procurement +492846,Government Procurement,Government Procurement +422660,Justice and Law Enforcement,Justice and Law Enforcement +414089,Research and Development,Research and Development +414079,Research and Development,Research and Development +414092,Research and Development,Research and Development +414091,Research and Development,Research and Development +414089,Climate,Climate +414079,Climate,Climate +414092,Climate,Climate +414091,Climate,Climate +414089,International Trade,International Trade +414079,International Trade,International Trade +414091,International Trade,International Trade +414089,Employment and Training,Employment and Training +414079,Employment and Training,Employment and Training +414091,Employment and Training,Employment and Training +414089,Economic Development,Economic Development +414079,Economic Development,Economic Development +414092,Economic Development,Economic Development +414091,Economic Development,Economic Development +414079,Government Procurement,Government Procurement +414091,Government Procurement,Government Procurement +414090,Government Procurement,Government Procurement +414089,Environment,Environment +414079,Environment,Environment +414092,Environment,Environment +414091,Environment,Environment +414089,Internal Trade,Internal Trade +414079,Internal Trade,Internal Trade +414091,Internal Trade,Internal Trade +414089,Regional Development,Regional Development +414079,Regional Development,Regional Development +414092,Regional Development,Regional Development +414091,Regional Development,Regional Development +414089,Energy,Energy +414079,Energy,Energy +414092,Energy,Energy +414091,Energy,Energy +414089,Infrastructure,Infrastructure +414079,Infrastructure,Infrastructure +414091,Infrastructure,Infrastructure +415309,Budget,Budget +415307,Budget,Budget +436500,Budget,Budget +415306,Economic Development,Economic Development +436500,Economic Development,Economic Development +423812,Economic Development,Economic Development +415309,Economic Development,Economic Development +415308,Infrastructure,Infrastructure +415307,Infrastructure,Infrastructure +436500,Infrastructure,Infrastructure +423812,Infrastructure,Infrastructure +415306,Sports,Sports +423812,Sports,Sports +415309,Sports,Sports +415308,Sports,Sports +415307,Tourism,Tourism +415306,Tourism,Tourism +436500,Tourism,Tourism +423812,Tourism,Tourism +415309,Tourism,Tourism +469228,Budget,Budget +465861,Budget,Budget +443287,Budget,Budget +417257,Budget,Budget +417196,Budget,Budget +415490,Budget,Budget +415276,Budget,Budget +415266,Budget,Budget +414746,Budget,Budget +414745,Budget,Budget +414581,Budget,Budget +414328,Budget,Budget +414327,Budget,Budget +469237,Budget,Budget +469231,Budget,Budget +422265,Economic Development,Economic Development +463464,Economic Development,Economic Development +430517,Economic Development,Economic Development +415559,Health,Health +533724,Economic Development,Economic Development +519131,Economic Development,Economic Development +414097,Economic Development,Economic Development +504223,Budget,Budget +474650,Budget,Budget +544102,Budget,Budget +522637,Budget,Budget +440788,Budget,Budget +434228,Budget,Budget +428306,Budget,Budget +414135,Budget,Budget +459425,Budget,Budget +458600,Budget,Budget +456863,Budget,Budget +417621,Health,Health +421251,Economic Development,Economic Development +427289,Intellectual Property,Intellectual Property +427288,Intellectual Property,Intellectual Property +427291,Intellectual Property,Intellectual Property +427289,International Trade,International Trade +427288,International Trade,International Trade +432684,International Trade,International Trade +432683,International Trade,International Trade +432674,International Trade,International Trade +432673,International Trade,International Trade +427291,International Trade,International Trade +427288,Taxation and Finance,Taxation and Finance +414712,Taxation and Finance,Taxation and Finance +432684,Taxation and Finance,Taxation and Finance +432683,Taxation and Finance,Taxation and Finance +432674,Taxation and Finance,Taxation and Finance +432673,Taxation and Finance,Taxation and Finance +427291,Taxation and Finance,Taxation and Finance +427290,Taxation and Finance,Taxation and Finance +425267,International Trade,International Trade +419059,International Trade,International Trade +432021,International Trade,International Trade +430244,International Trade,International Trade +455538,Taxation and Finance,Impôts et finances +455526,Taxation and Finance,Impôts et finances +414256,Taxation and Finance,Taxation and Finance +414255,Taxation and Finance,Taxation and Finance +463722,Taxation and Finance,Taxation and Finance +463721,Taxation and Finance,Taxation and Finance +463719,Taxation and Finance,Taxation and Finance +463718,Taxation and Finance,Taxation and Finance +461499,Taxation and Finance,Taxation and Finance +453912,Taxation and Finance,Taxation and Finance +451201,Taxation and Finance,Taxation and Finance +446513,Taxation and Finance,Taxation and Finance +446512,Taxation and Finance,Taxation and Finance +446511,Taxation and Finance,Taxation and Finance +446510,Taxation and Finance,Taxation and Finance +440673,Taxation and Finance,Taxation and Finance +425350,Taxation and Finance,Taxation and Finance +425349,Taxation and Finance,Taxation and Finance +425343,Taxation and Finance,Taxation and Finance +423115,Taxation and Finance,Taxation and Finance +423112,Taxation and Finance,Taxation and Finance +423111,Taxation and Finance,Taxation and Finance +421049,Taxation and Finance,Taxation and Finance +421048,Taxation and Finance,Taxation and Finance +421047,Taxation and Finance,Taxation and Finance +421046,Taxation and Finance,Taxation and Finance +421045,Taxation and Finance,Taxation and Finance +418583,Taxation and Finance,Taxation and Finance +414266,Taxation and Finance,Taxation and Finance +414265,Taxation and Finance,Taxation and Finance +414264,Taxation and Finance,Taxation and Finance +414263,Taxation and Finance,Taxation and Finance +414262,Taxation and Finance,Taxation and Finance +414259,Taxation and Finance,Taxation and Finance +414258,Taxation and Finance,Taxation and Finance +420191,Economic Development,Economic Development +417035,Economic Development,Economic Development +420191,Government Procurement,Government Procurement +417035,Regional Development,Regional Development +420191,Small Business,Small Business +417035,Small Business,Small Business +431008,Small Business,Small Business +426990,Small Business,Small Business +441728,Economic Development,Economic Development +421008,Economic Development,Economic Development +476155,Economic Development,Economic Development +476154,Economic Development,Economic Development +432069,Government Procurement,Government Procurement +430093,Government Procurement,Government Procurement +425604,Government Procurement,Government Procurement +420411,Government Procurement,Government Procurement +418435,Government Procurement,Government Procurement +414512,Government Procurement,Government Procurement +414293,Government Procurement,Government Procurement +448660,Government Procurement,Government Procurement +448659,Government Procurement,Government Procurement +444746,Government Procurement,Government Procurement +444744,Government Procurement,Government Procurement +437449,International Trade,International Trade +437447,International Trade,International Trade +414795,Consumer Issues,Consumer Issues +414637,Consumer Issues,Consumer Issues +414798,Consumer Issues,Consumer Issues +414796,Government Procurement,Government Procurement +414795,Government Procurement,Government Procurement +414798,Health,Health +414796,Health,Health +414795,Health,Health +414795,Justice and Law Enforcement,Justice and Law Enforcement +414637,Justice and Law Enforcement,Justice and Law Enforcement +414798,Justice and Law Enforcement,Justice and Law Enforcement +414795,Municipalities,Municipalities +414637,Municipalities,Municipalities +414798,Municipalities,Municipalities +414795,Taxation and Finance,Taxation and Finance +414637,Taxation and Finance,Taxation and Finance +414798,Taxation and Finance,Taxation and Finance +428114,Financial Institutions,Financial Institutions +428108,Financial Institutions,Financial Institutions +533846,Financial Institutions,Financial Institutions +508117,Financial Institutions,Financial Institutions +508052,Financial Institutions,Financial Institutions +508048,Financial Institutions,Financial Institutions +454766,Financial Institutions,Financial Institutions +454765,Financial Institutions,Financial Institutions +454764,Financial Institutions,Financial Institutions +454118,Financial Institutions,Financial Institutions +454117,Financial Institutions,Financial Institutions +454116,Financial Institutions,Financial Institutions +454115,Financial Institutions,Financial Institutions +428120,Financial Institutions,Financial Institutions +428119,Financial Institutions,Financial Institutions +428117,Financial Institutions,Financial Institutions +508052,Small Business,Small Business +508048,Small Business,Small Business +454766,Small Business,Small Business +454765,Small Business,Small Business +454764,Small Business,Small Business +454118,Small Business,Small Business +454117,Small Business,Small Business +454116,Small Business,Small Business +454115,Small Business,Small Business +428120,Small Business,Small Business +428119,Small Business,Small Business +428117,Small Business,Small Business +428115,Small Business,Small Business +428114,Small Business,Small Business +428108,Small Business,Small Business +533846,Small Business,Small Business +461063,Employment and Training,Employment and Training +414419,Employment and Training,Employment and Training +414833,Health,Health +414833,Justice and Law Enforcement,Justice and Law Enforcement +414473,International Development,International Development +414472,International Development,International Development +415559,Small Business,Small Business +415559,Economic Development,Economic Development +421197,Economic Development,Développement économique +439906,Economic Development,Développement économique +427495,Economic Development,Développement économique +424732,Transportation,Transportation +434418,Transportation,Transportation +434417,Transportation,Transportation +434416,Tourism,Tourism +424732,Tourism,Tourism +434418,Tourism,Tourism +424732,International Trade,International Trade +420315,Education,Education +420317,Employment and Training,Employment and Training +420315,Employment and Training,Employment and Training +420317,Government Procurement,Government Procurement +420316,Government Procurement,Government Procurement +420316,Labour,Labour +420315,Labour,Labour +420318,Labour,Labour +420620,Health,Health +420619,Health,Health +422877,Health,Health +420622,Health,Health +420620,Taxation and Finance,Taxation and Finance +420619,Taxation and Finance,Taxation and Finance +422877,Taxation and Finance,Taxation and Finance +420622,Taxation and Finance,Taxation and Finance +437597,Intellectual Property,Intellectual Property +414584,Employment and Training,Employment and Training +526185,Economic Development,Economic Development +523115,Economic Development,Economic Development +437594,Economic Development,Economic Development +435033,Economic Development,Economic Development +435030,Economic Development,Economic Development +416495,Infrastructure,Infrastructure +416479,Infrastructure,Infrastructure +431175,Infrastructure,Infrastructure +416957,Infrastructure,Infrastructure +416521,Infrastructure,Infrastructure +416518,Infrastructure,Infrastructure +509180,Taxation and Finance,Taxation and Finance +499988,Taxation and Finance,Taxation and Finance +506106,Research and Development,Research and Development +499988,Research and Development,Research and Development +414606,Research and Development,Research and Development +529827,Research and Development,Research and Development +446387,Economic Development,Economic Development +414618,Economic Development,Economic Development +522797,Transportation,Transportation +522788,Transportation,Transportation +417675,Health,Health +493635,Climate,Climate +493633,Climate,Climate +442591,Climate,Climate +439463,Climate,Climate +439458,Climate,Climate +432832,Climate,Climate +431121,Climate,Climate +426209,Climate,Climate +426208,Climate,Climate +423499,Climate,Climate +423498,Climate,Climate +423497,Climate,Climate +423496,Climate,Climate +423495,Climate,Climate +423493,Climate,Climate +490185,Climate,Climate +490181,Climate,Climate +487802,Climate,Climate +487778,Climate,Climate +484705,Climate,Climate +484701,Climate,Climate +481931,Climate,Climate +481926,Climate,Climate +481913,Climate,Climate +480123,Climate,Climate +480119,Climate,Climate +477627,Climate,Climate +477626,Climate,Climate +477625,Climate,Climate +475584,Climate,Climate +462758,Climate,Climate +449825,Climate,Climate +449824,Climate,Climate +449823,Climate,Climate +449822,Climate,Climate +447635,Climate,Climate +445227,Climate,Climate +443778,Climate,Climate +539811,Climate,Climate +537974,Climate,Climate +526446,Climate,Climate +522111,Climate,Climate +513048,Climate,Climate +504398,Climate,Climate +498714,Climate,Climate +498713,Climate,Climate +490185,Energy,Energy +490181,Energy,Energy +487802,Energy,Energy +487778,Energy,Energy +484705,Energy,Energy +484701,Energy,Energy +481931,Energy,Energy +481926,Energy,Energy +481913,Energy,Energy +480123,Energy,Energy +480119,Energy,Energy +475584,Energy,Energy +462758,Energy,Energy +449825,Energy,Energy +449824,Energy,Energy +449823,Energy,Energy +449822,Energy,Energy +447635,Energy,Energy +445227,Energy,Energy +443778,Energy,Energy +442591,Energy,Energy +439463,Energy,Energy +439458,Energy,Energy +432832,Energy,Energy +431121,Energy,Energy +426209,Energy,Energy +426208,Energy,Energy +423499,Energy,Energy +423498,Energy,Energy +423497,Energy,Energy +423496,Energy,Energy +423495,Energy,Energy +423493,Energy,Energy +539811,Energy,Energy +537974,Energy,Energy +526446,Energy,Energy +522111,Energy,Energy +513048,Energy,Energy +504398,Energy,Energy +498714,Energy,Energy +498713,Energy,Energy +495787,Energy,Energy +493635,Energy,Energy +419122,Health,Health +419121,Health,Health +423916,Health,Health +419127,Health,Health +430366,Justice and Law Enforcement,Justice and Law Enforcement +424277,Justice and Law Enforcement,Justice and Law Enforcement +430366,Consumer Issues,Consumer Issues +424277,Consumer Issues,Consumer Issues +421319,Health,Health +421318,Health,Health +421319,Industry,Industry +421318,Industry,Industry +418215,Transportation,Transportation +416612,Research and Development,Research and Development +416611,Research and Development,Research and Development +416804,Research and Development,Research and Development +416802,Research and Development,Research and Development +416800,Research and Development,Research and Development +416799,Research and Development,Research and Development +416796,Research and Development,Research and Development +416792,Research and Development,Research and Development +416787,Research and Development,Research and Development +416624,Research and Development,Research and Development +416619,Research and Development,Research and Development +416612,Health,Health +416611,Health,Health +416804,Health,Health +416802,Health,Health +416800,Health,Health +416799,Health,Health +416796,Health,Health +416792,Health,Health +416787,Health,Health +416624,Health,Health +416619,Health,Health +416612,Justice and Law Enforcement,Justice and Law Enforcement +416611,Justice and Law Enforcement,Justice and Law Enforcement +416804,Justice and Law Enforcement,Justice and Law Enforcement +416802,Justice and Law Enforcement,Justice and Law Enforcement +416800,Justice and Law Enforcement,Justice and Law Enforcement +416799,Justice and Law Enforcement,Justice and Law Enforcement +416796,Justice and Law Enforcement,Justice and Law Enforcement +416792,Justice and Law Enforcement,Justice and Law Enforcement +416787,Justice and Law Enforcement,Justice and Law Enforcement +416624,Justice and Law Enforcement,Justice and Law Enforcement +416619,Justice and Law Enforcement,Justice and Law Enforcement +416612,Consumer Issues,Consumer Issues +416611,Consumer Issues,Consumer Issues +416804,Consumer Issues,Consumer Issues +416802,Consumer Issues,Consumer Issues +416800,Consumer Issues,Consumer Issues +416799,Consumer Issues,Consumer Issues +416796,Consumer Issues,Consumer Issues +416792,Consumer Issues,Consumer Issues +416787,Consumer Issues,Consumer Issues +416624,Consumer Issues,Consumer Issues +416619,Consumer Issues,Consumer Issues +414750,Agriculture,Agriculture +414747,Agriculture,Agriculture +434728,Agriculture,Agriculture +434727,Agriculture,Agriculture +434726,Agriculture,Agriculture +434723,Agriculture,Agriculture +434721,Agriculture,Agriculture +433076,Agriculture,Agriculture +433056,Agriculture,Agriculture +433055,Agriculture,Agriculture +432764,Agriculture,Agriculture +432762,Agriculture,Agriculture +432761,Agriculture,Agriculture +432760,Agriculture,Agriculture +432759,Agriculture,Agriculture +432758,Agriculture,Agriculture +431018,Agriculture,Agriculture +424525,Agriculture,Agriculture +424524,Agriculture,Agriculture +424523,Agriculture,Agriculture +421688,Agriculture,Agriculture +421686,Agriculture,Agriculture +421682,Agriculture,Agriculture +421681,Agriculture,Agriculture +421679,Agriculture,Agriculture +419877,Agriculture,Agriculture +419875,Agriculture,Agriculture +415782,Agriculture,Agriculture +415778,Agriculture,Agriculture +415777,Agriculture,Agriculture +415775,Agriculture,Agriculture +414895,Environment,Environment +414894,Environment,Environment +415116,Environment,Environment +414945,Environment,Environment +414900,Environment,Environment +414898,Environment,Environment +414897,Environment,Environment +427212,Regional Development,Développement régional +415663,Small Business,Small Business +419976,Health,Health +417512,Health,Health +425323,Health,Health +419993,Health,Health +419991,Health,Health +419983,Health,Health +417821,Government Procurement,Government Procurement +436389,Government Procurement,Government Procurement +435616,Government Procurement,Government Procurement +444515,Government Procurement,Government Procurement +417960,Energy,Energy +417957,Energy,Energy +417956,Environment,Environment +417850,Environment,Environment +419285,Environment,Environment +418358,Environment,Environment +417963,Environment,Environment +417962,Environment,Environment +417961,Environment,Environment +417960,Environment,Environment +417959,Environment,Environment +417958,Environment,Environment +418436,Research and Development,Research and Development +417689,Research and Development,Research and Development +417689,Small Business,Small Business +415205,Employment and Training,Employment and Training +415204,Employment and Training,Employment and Training +444696,Employment and Training,Employment and Training +444695,Employment and Training,Employment and Training +444694,Employment and Training,Employment and Training +444693,Employment and Training,Employment and Training +433002,Employment and Training,Employment and Training +433001,Employment and Training,Employment and Training +433000,Employment and Training,Employment and Training +432999,Employment and Training,Employment and Training +432998,Employment and Training,Employment and Training +432997,Employment and Training,Employment and Training +427668,Employment and Training,Employment and Training +427667,Employment and Training,Employment and Training +427666,Employment and Training,Employment and Training +427665,Employment and Training,Employment and Training +427664,Employment and Training,Employment and Training +427663,Employment and Training,Employment and Training +415212,Employment and Training,Employment and Training +415211,Employment and Training,Employment and Training +415210,Employment and Training,Employment and Training +415209,Employment and Training,Employment and Training +415208,Employment and Training,Employment and Training +415207,Employment and Training,Employment and Training +438468,Justice and Law Enforcement,Justice and Law Enforcement +438466,Justice and Law Enforcement,Justice and Law Enforcement +524775,Justice and Law Enforcement,Justice and Law Enforcement +524773,Justice and Law Enforcement,Justice and Law Enforcement +524769,Justice and Law Enforcement,Justice and Law Enforcement +520639,Justice and Law Enforcement,Justice and Law Enforcement +512003,Justice and Law Enforcement,Justice and Law Enforcement +512002,Justice and Law Enforcement,Justice and Law Enforcement +512001,Justice and Law Enforcement,Justice and Law Enforcement +511999,Justice and Law Enforcement,Justice and Law Enforcement +511996,Justice and Law Enforcement,Justice and Law Enforcement +511992,Justice and Law Enforcement,Justice and Law Enforcement +483349,Justice and Law Enforcement,Justice and Law Enforcement +483347,Justice and Law Enforcement,Justice and Law Enforcement +483344,Justice and Law Enforcement,Justice and Law Enforcement +440204,Justice and Law Enforcement,Justice and Law Enforcement +438484,Justice and Law Enforcement,Justice and Law Enforcement +438476,Justice and Law Enforcement,Justice and Law Enforcement +438473,Justice and Law Enforcement,Justice and Law Enforcement +438468,Privacy and Access to Information,Privacy and Access to Information +438466,Privacy and Access to Information,Privacy and Access to Information +520282,Privacy and Access to Information,Privacy and Access to Information +483349,Privacy and Access to Information,Privacy and Access to Information +483347,Privacy and Access to Information,Privacy and Access to Information +483344,Privacy and Access to Information,Privacy and Access to Information +440204,Privacy and Access to Information,Privacy and Access to Information +440203,Privacy and Access to Information,Privacy and Access to Information +438484,Privacy and Access to Information,Privacy and Access to Information +438476,Privacy and Access to Information,Privacy and Access to Information +438473,Privacy and Access to Information,Privacy and Access to Information +483349,Security,Security +483347,Security,Security +440204,Security,Security +440203,Security,Security +438484,Security,Security +438476,Security,Security +438473,Security,Security +438470,Security,Security +438468,Security,Security +438466,Security,Security +544654,Security,Security +540347,Security,Security +524773,Security,Security +524769,Security,Security +520282,Security,Security +512003,Security,Security +512002,Security,Security +512001,Security,Security +511999,Security,Security +511996,Security,Security +511994,Security,Security +511993,Security,Security +511992,Security,Security +500371,Security,Security +414097,Small Business,Small Business +414097,Regional Development,Regional Development +419111,Housing,Housing +419096,Housing,Housing +446616,Defence,Defence +446616,Economic Development,Economic Development +446616,Government Procurement,Government Procurement +446616,International Trade,International Trade +418808,Economic Development,Economic Development +418808,Infrastructure,Infrastructure +418808,Transportation,Transportation +418872,Infrastructure,Infrastructure +418871,Infrastructure,Infrastructure +427000,Infrastructure,Infrastructure +426999,Infrastructure,Infrastructure +426998,Infrastructure,Infrastructure +418872,Transportation,Transportation +418871,Transportation,Transportation +427000,Transportation,Transportation +426999,Transportation,Transportation +426998,Transportation,Transportation +426997,Transportation,Transportation +419215,Transportation,Transportation +419214,Transportation,Transportation +418872,Economic Development,Economic Development +418871,Economic Development,Economic Development +427000,Economic Development,Economic Development +426999,Economic Development,Economic Development +426998,Economic Development,Economic Development +426997,Economic Development,Economic Development +419215,Economic Development,Economic Development +419214,Economic Development,Economic Development +419214,Defence,Defence +419212,Defence,Defence +430177,Employment and Training,Employment and Training +430175,Employment and Training,Employment and Training +425573,Employment and Training,Employment and Training +469878,Employment and Training,Employment and Training +469877,Employment and Training,Employment and Training +425573,Health,Health +418823,Health,Health +454437,Health,Health +430177,Health,Health +418823,Immigration,Immigration +499499,Defence,Defence +499479,Defence,Defence +470508,Defence,Defence +437330,Defence,Defence +437329,Defence,Defence +432954,Defence,Defence +432949,Defence,Defence +432947,Defence,Defence +431818,Defence,Defence +430161,Defence,Defence +426989,Defence,Defence +426360,Defence,Defence +424993,Defence,Defence +499479,Economic Development,Economic Development +470508,Economic Development,Economic Development +437329,Economic Development,Economic Development +432954,Economic Development,Economic Development +432949,Economic Development,Economic Development +432947,Economic Development,Economic Development +431818,Economic Development,Economic Development +430161,Economic Development,Economic Development +424989,Economic Development,Economic Development +499499,Government Procurement,Government Procurement +499479,Government Procurement,Government Procurement +470508,Government Procurement,Government Procurement +437330,Government Procurement,Government Procurement +437329,Government Procurement,Government Procurement +432954,Government Procurement,Government Procurement +432949,Government Procurement,Government Procurement +432947,Government Procurement,Government Procurement +431818,Government Procurement,Government Procurement +430161,Government Procurement,Government Procurement +426989,Government Procurement,Government Procurement +426360,Government Procurement,Government Procurement +424993,Government Procurement,Government Procurement +499499,Industry,Industry +499479,Industry,Industry +470508,Industry,Industry +437329,Industry,Industry +432954,Industry,Industry +432949,Industry,Industry +432947,Industry,Industry +431818,Industry,Industry +426989,Industry,Industry +426360,Industry,Industry +424993,Industry,Industry +499479,International Trade,International Trade +470508,International Trade,International Trade +432954,International Trade,International Trade +432949,International Trade,International Trade +432947,International Trade,International Trade +430161,International Trade,International Trade +426360,International Trade,International Trade +417126,Economic Development,Economic Development +417120,Economic Development,Economic Development +499537,Economic Development,Economic Development +497032,Economic Development,Economic Development +422927,Economic Development,Economic Development +497035,Industry,Industry +417126,Infrastructure,Infrastructure +417120,Infrastructure,Infrastructure +503158,Infrastructure,Infrastructure +499548,Infrastructure,Infrastructure +499537,Infrastructure,Infrastructure +497035,Infrastructure,Infrastructure +497032,Infrastructure,Infrastructure +455522,Infrastructure,Infrastructure +453894,Infrastructure,Infrastructure +422927,Infrastructure,Infrastructure +420930,Infrastructure,Infrastructure +455522,Municipalities,Municipalities +453894,Municipalities,Municipalities +503158,Municipalities,Municipalities +499548,Municipalities,Municipalities +499537,Municipalities,Municipalities +497032,Regional Development,Regional Development +420930,Regional Development,Regional Development +513452,Regional Development,Regional Development +503158,Regional Development,Regional Development +499548,Regional Development,Regional Development +499537,Regional Development,Regional Development +497035,Research and Development,Research and Development +453894,Taxation and Finance,Taxation and Finance +415617,Labour,Labour +469372,Research and Development,Research and Development +469371,Research and Development,Research and Development +417220,Budget,Budget +417219,Budget,Budget +510192,Consumer Issues,Consumer Issues +510190,Consumer Issues,Consumer Issues +416489,Consumer Issues,Consumer Issues +493830,Consumer Issues,Consumer Issues +478693,Consumer Issues,Consumer Issues +478394,Consumer Issues,Consumer Issues +468706,Consumer Issues,Consumer Issues +465740,Consumer Issues,Consumer Issues +463497,Consumer Issues,Consumer Issues +449120,Consumer Issues,Consumer Issues +445055,Consumer Issues,Consumer Issues +436700,Consumer Issues,Consumer Issues +436699,Consumer Issues,Consumer Issues +436698,Consumer Issues,Consumer Issues +434907,Consumer Issues,Consumer Issues +542878,Consumer Issues,Consumer Issues +538889,Consumer Issues,Consumer Issues +538888,Consumer Issues,Consumer Issues +523515,Consumer Issues,Consumer Issues +520822,Consumer Issues,Consumer Issues +511706,Consumer Issues,Consumer Issues +417687,Infrastructure,Infrastructure +415806,Infrastructure,Infrastructure +506589,Infrastructure,Infrastructure +503437,Infrastructure,Infrastructure +420190,Infrastructure,Infrastructure +538995,International Trade,International Trade +521393,International Trade,International Trade +498760,International Trade,International Trade +493007,International Trade,International Trade +487951,International Trade,International Trade +434982,International Trade,International Trade +415890,Taxation and Finance,Taxation and Finance +520269,Transportation,Transportation +535829,Transportation,Transportation +429512,Transportation,Transportation +429510,Transportation,Transportation +429501,Transportation,Transportation +540960,Industry,Industry +533408,Industry,Industry +439954,Industry,Industry +431785,Industry,Industry +427862,Industry,Industry +427860,Industry,Industry +418727,Industry,Industry +415892,Industry,Industry +431778,Industry,Industry +538621,Industry,Industry +430025,Industry,Industry +427867,Industry,Industry +427863,Industry,Industry +427861,Industry,Industry +427859,Industry,Industry +415893,Industry,Industry +464222,Industry,Industry +464215,Industry,Industry +439952,Industry,Industry +439946,Industry,Industry +439897,Industry,Industry +439896,Industry,Industry +431787,Industry,Industry +431784,Industry,Industry +427869,Industry,Industry +415895,Industry,Industry +539650,Industry,Industry +538622,Industry,Industry +533410,Industry,Industry +464220,Industry,Industry +464214,Industry,Industry +464209,Industry,Industry +439953,Industry,Industry +439949,Industry,Industry +439947,Industry,Industry +439899,Industry,Industry +439893,Industry,Industry +431786,Industry,Industry +431781,Industry,Industry +417815,Education,Education +415898,Environment,Environment +536229,Environment,Environment +449970,Environment,Environment +449967,Environment,Environment +449963,Environment,Environment +418795,Health,Health +417408,Health,Health +420204,Infrastructure,Infrastructure +427576,Agriculture,Agriculture +416280,Health,Health +429542,Budget,Budget +429541,Budget,Budget +429550,Budget,Budget +429549,Budget,Budget +429548,Budget,Budget +429547,Budget,Budget +429546,Budget,Budget +429545,Budget,Budget +429544,Budget,Budget +429542,Environment,Environment +429541,Environment,Environment +429550,Environment,Environment +429549,Environment,Environment +429548,Environment,Environment +429547,Environment,Environment +429546,Environment,Environment +429545,Environment,Environment +429544,Environment,Environment +429542,Fisheries,Fisheries +429541,Fisheries,Fisheries +429550,Fisheries,Fisheries +429549,Fisheries,Fisheries +429548,Fisheries,Fisheries +429547,Fisheries,Fisheries +429546,Fisheries,Fisheries +429545,Fisheries,Fisheries +429544,Fisheries,Fisheries +490962,Immigration,Immigration +481809,Immigration,Immigration +416441,Immigration,Immigration +420249,Internal Trade,Internal Trade +418751,Internal Trade,Internal Trade +420249,International Development,International Development +418751,International Development,International Development +422929,International Development,International Development +420249,International Relations,International Relations +418751,International Relations,International Relations +426126,International Relations,International Relations +422929,International Relations,International Relations +503944,Budget,Budget +501986,Budget,Budget +493131,Budget,Budget +429111,Budget,Budget +416507,Budget,Budget +416709,Agriculture,Agriculture +451983,Agriculture,Agriculture +422112,Agriculture,Agriculture +416732,Agriculture,Agriculture +416731,Agriculture,Agriculture +418169,Health,Health +418164,Health,Health +426800,Health,Health +420268,Health,Health +420267,Health,Health +420266,Health,Health +418967,Transportation,Transportation +418967,Energy,Energy +418967,Environment,Environment +487905,Industry,Industry +476085,Industry,Industry +449652,Industry,Industry +447509,Industry,Industry +447506,Industry,Industry +447498,Industry,Industry +442157,Industry,Industry +438254,Industry,Industry +432672,Industry,Industry +427299,Industry,Industry +425414,Industry,Industry +416753,Industry,Industry +529637,Industry,Industry +487929,Industry,Industry +451560,Industry,Industry +447513,Industry,Industry +442164,Industry,Industry +438252,Industry,Industry +438240,Industry,Industry +438215,Industry,Industry +431669,Industry,Industry +427307,Industry,Industry +427294,Industry,Industry +427293,Industry,Industry +425471,Industry,Industry +425412,Industry,Industry +417694,Industry,Industry +417692,Industry,Industry +416757,Industry,Industry +529639,Industry,Industry +506091,Industry,Industry +487930,Industry,Industry +487925,Industry,Industry +487922,Industry,Industry +487916,Industry,Industry +487909,Industry,Industry +487907,Industry,Industry +487904,Industry,Industry +487900,Industry,Industry +487899,Industry,Industry +476084,Industry,Industry +473757,Industry,Industry +465054,Industry,Industry +462449,Industry,Industry +485357,Industry,Industry +473754,Industry,Industry +442162,Industry,Industry +442161,Industry,Industry +438253,Industry,Industry +438250,Industry,Industry +438245,Industry,Industry +438242,Industry,Industry +438239,Industry,Industry +438232,Industry,Industry +438228,Industry,Industry +431670,Industry,Industry +427308,Industry,Industry +427298,Industry,Industry +425468,Industry,Industry +425467,Industry,Industry +416763,Industry,Industry +531443,Industry,Industry +529633,Industry,Industry +487920,Industry,Industry +487906,Industry,Industry +487902,Industry,Industry +487898,Industry,Industry +473754,Labour,Labour +468179,Industry,Industry +462447,Industry,Industry +451557,Industry,Industry +438255,Industry,Industry +438251,Industry,Industry +438249,Industry,Industry +438248,Industry,Industry +438247,Industry,Industry +438246,Industry,Industry +438241,Industry,Industry +437725,Industry,Industry +427301,Industry,Industry +427297,Industry,Industry +427292,Industry,Industry +425470,Industry,Industry +425469,Industry,Industry +421849,Industry,Industry +417695,Industry,Industry +416761,Industry,Industry +531447,Industry,Industry +531446,Industry,Industry +487908,Industry,Industry +487901,Industry,Industry +487897,Industry,Industry +480271,Industry,Industry +418407,Economic Development,Economic Development +416777,Economic Development,Economic Development +423138,Economic Development,Economic Development +416829,Environment,Environment +416825,Environment,Environment +424148,Environment,Environment +421703,Environment,Environment +419569,Environment,Environment +417786,Environment,Environment +417785,Environment,Environment +417782,Environment,Environment +416842,Environment,Environment +416836,Transportation,Transportation +416829,Transportation,Transportation +416825,Transportation,Transportation +424148,Transportation,Transportation +421703,Transportation,Transportation +419569,Transportation,Transportation +417786,Transportation,Transportation +417785,Transportation,Transportation +417782,Transportation,Transportation +416975,Transportation,Transportation +489087,Security,Security +480846,Security,Security +498230,Security,Security +497504,Security,Security +497500,Security,Security +494980,Security,Security +492650,Security,Security +456140,Economic Development,Economic Development +452718,Economic Development,Economic Development +426836,Economic Development,Economic Development +424579,Economic Development,Economic Development +424578,Economic Development,Economic Development +420264,Economic Development,Economic Development +494435,Economic Development,Economic Development +457860,Economic Development,Economic Development +457859,Economic Development,Economic Development +494330,Health,Health +480361,Health,Health +426840,Health,Health +426839,Health,Health +426836,Health,Health +426835,Health,Health +424580,Health,Health +424579,Health,Health +424578,Health,Health +420264,Health,Health +420260,Health,Health +418354,Health,Health +457860,Health,Health +457859,Health,Health +456143,Health,Health +456141,Health,Health +456140,Health,Health +420264,Intellectual Property,Intellectual Property +420260,Intellectual Property,Intellectual Property +420264,Research and Development,Research and Development +420260,Research and Development,Research and Development +494330,Research and Development,Research and Development +480361,Research and Development,Research and Development +455527,Infrastructure,Infrastructure +453895,Infrastructure,Infrastructure +417335,Infrastructure,Infrastructure +417335,Municipalities,Municipalities +417330,Municipalities,Municipalities +455527,Municipalities,Municipalities +417330,Regional Development,Regional Development +453895,Taxation and Finance,Taxation and Finance +418816,Economic Development,Economic Development +448464,Economic Development,Economic Development +429721,Economic Development,Economic Development +423892,Security,Security +423886,Security,Security +423892,Industry,Industry +423886,Industry,Industry +458552,Industry,Industry +478093,Government Procurement,Government Procurement +478078,Government Procurement,Government Procurement +470883,Government Procurement,Government Procurement +457687,Government Procurement,Government Procurement +428576,Government Procurement,Government Procurement +428371,Government Procurement,Government Procurement +421708,Government Procurement,Government Procurement +513569,Government Procurement,Government Procurement +511576,Government Procurement,Government Procurement +485016,Government Procurement,Government Procurement +478093,Security,Security +478078,Security,Security +470883,Security,Security +457687,Security,Security +428576,Security,Security +428371,Security,Security +425346,Security,Security +423558,Security,Security +520800,Security,Security +513597,Security,Security +457687,Employment and Training,Employment and Training +523867,Research and Development,Research and Development +513597,Industry,Industry +457687,Industry,Industry +417181,Health,Health +417180,Health,Health +482500,Health,Health +424330,Health,Health +424329,Health,Health +422500,Health,Health +418319,Health,Health +418318,Health,Health +417185,Health,Health +435884,Budget,Budget +417186,Budget,Budget +502456,Budget,Budget +436124,Budget,Budget +435913,Budget,Budget +435910,Budget,Budget +435908,Budget,Budget +435897,Budget,Budget +435893,Budget,Budget +500298,Budget,Budget +488500,Budget,Budget +428778,Budget,Budget +418402,Consumer Issues,Consumer Issues +520396,Consumer Issues,Consumer Issues +428778,Consumer Issues,Consumer Issues +428775,Consumer Issues,Consumer Issues +422211,Consumer Issues,Consumer Issues +422209,Employment and Training,Employment and Training +418402,Employment and Training,Employment and Training +458569,Employment and Training,Employment and Training +454272,Employment and Training,Employment and Training +448213,Employment and Training,Employment and Training +428778,Employment and Training,Employment and Training +428775,Employment and Training,Employment and Training +428778,Health,Health +428775,Health,Health +422211,Health,Health +418402,Health,Health +428775,Internal Trade,Internal Trade +418402,Internal Trade,Internal Trade +488500,Internal Trade,Internal Trade +428775,International Trade,International Trade +428775,Labour,Labour +418402,Labour,Labour +488500,Labour,Labour +458569,Labour,Labour +457049,Labour,Labour +454272,Labour,Labour +448213,Labour,Labour +418612,Regional Development,Regional Development +418402,Regional Development,Regional Development +520396,Regional Development,Regional Development +516308,Regional Development,Regional Development +500298,Regional Development,Regional Development +454272,Regional Development,Regional Development +428778,Regional Development,Regional Development +428775,Regional Development,Regional Development +422211,Regional Development,Regional Development +428778,Small Business,Small Business +428775,Small Business,Small Business +422211,Small Business,Small Business +422209,Tourism,Tourism +520396,Tourism,Tourism +428778,Tourism,Tourism +428775,Tourism,Tourism +422211,Transportation,Transportation +422209,Transportation,Transportation +418612,Transportation,Transportation +418402,Transportation,Transportation +520396,Transportation,Transportation +516308,Transportation,Transportation +500298,Transportation,Transportation +488500,Transportation,Transportation +458569,Transportation,Transportation +457049,Transportation,Transportation +454272,Transportation,Transportation +448213,Transportation,Transportation +433940,Transportation,Transportation +433939,Transportation,Transportation +428778,Transportation,Transportation +417203,Employment and Training,Employment and Training +428917,Education,Education +419095,Education,Education +431052,Education,Education +428917,Infrastructure,Infrastructure +419095,Infrastructure,Infrastructure +431052,Infrastructure,Infrastructure +490149,Consumer Issues,Consumer Issues +423029,Environment,Environment +451278,Environment,Environment +420104,Health,Health +483658,Health,Health +448850,Health,Health +423028,Health,Health +472174,Industry,Industry +470873,Industry,Industry +446148,Economic Development,Economic Development +446147,Economic Development,Economic Development +446146,Economic Development,Economic Development +446145,Economic Development,Economic Development +446029,Economic Development,Economic Development +444769,Economic Development,Economic Development +444768,Economic Development,Economic Development +444767,Economic Development,Economic Development +444766,Economic Development,Economic Development +442756,Economic Development,Economic Development +442755,Economic Development,Economic Development +442754,Economic Development,Economic Development +442753,Economic Development,Economic Development +442752,Economic Development,Economic Development +442751,Economic Development,Economic Development +442750,Economic Development,Economic Development +442749,Economic Development,Economic Development +442748,Economic Development,Economic Development +442747,Economic Development,Economic Development +442086,Economic Development,Economic Development +442083,Economic Development,Economic Development +442081,Economic Development,Economic Development +442080,Economic Development,Economic Development +436714,Economic Development,Economic Development +436713,Economic Development,Economic Development +436712,Economic Development,Economic Development +436711,Economic Development,Economic Development +436710,Economic Development,Economic Development +436709,Economic Development,Economic Development +435376,Economic Development,Economic Development +435375,Economic Development,Economic Development +435374,Economic Development,Economic Development +433139,Economic Development,Economic Development +431143,Economic Development,Economic Development +429409,Economic Development,Economic Development +422984,Economic Development,Economic Development +422980,Economic Development,Economic Development +418598,Economic Development,Economic Development +417308,Economic Development,Economic Development +417307,Economic Development,Economic Development +472302,Economic Development,Economic Development +472300,Economic Development,Economic Development +472299,Economic Development,Economic Development +472297,Economic Development,Economic Development +469102,Economic Development,Economic Development +467215,Economic Development,Economic Development +464594,Economic Development,Economic Development +464589,Economic Development,Economic Development +462346,Economic Development,Economic Development +457183,Economic Development,Economic Development +457178,Economic Development,Economic Development +457079,Economic Development,Economic Development +456548,Economic Development,Economic Development +456547,Economic Development,Economic Development +455857,Economic Development,Economic Development +455856,Economic Development,Economic Development +455851,Economic Development,Economic Development +454501,Economic Development,Economic Development +453606,Economic Development,Economic Development +452262,Economic Development,Economic Development +451431,Economic Development,Economic Development +451429,Economic Development,Economic Development +451428,Economic Development,Economic Development +450623,Economic Development,Economic Development +450036,Economic Development,Economic Development +446152,Economic Development,Economic Development +446151,Economic Development,Economic Development +446150,Economic Development,Economic Development +429409,Transportation,Transportation +457079,Transportation,Transportation +433139,Transportation,Transportation +418173,Housing,Housing +450625,Economic Development,Economic Development +450624,Economic Development,Economic Development +457181,Economic Development,Economic Development +457179,Economic Development,Economic Development +452260,Economic Development,Economic Development +469436,Agriculture,Agriculture +444860,Agriculture,Agriculture +523482,Agriculture,Agriculture +523480,Agriculture,Agriculture +496451,Agriculture,Agriculture +496450,Agriculture,Agriculture +496449,Agriculture,Agriculture +496448,Agriculture,Agriculture +469436,Consumer Issues,Consumer Issues +444860,Consumer Issues,Consumer Issues +523482,Consumer Issues,Consumer Issues +523480,Consumer Issues,Consumer Issues +496451,Consumer Issues,Consumer Issues +496450,Consumer Issues,Consumer Issues +496449,Consumer Issues,Consumer Issues +496448,Consumer Issues,Consumer Issues +496449,Environment,Environment +496448,Environment,Environment +469437,Environment,Environment +469436,Environment,Environment +523482,Environment,Environment +523480,Environment,Environment +496451,Environment,Environment +469436,Health,Health +444860,Health,Health +523482,Health,Health +523480,Health,Health +496451,Health,Health +496450,Health,Health +496449,Health,Health +496448,Health,Health +496449,International Trade,International Trade +496448,International Trade,International Trade +469437,International Trade,International Trade +469436,International Trade,International Trade +444860,International Trade,International Trade +523482,International Trade,International Trade +523480,International Trade,International Trade +496451,International Trade,International Trade +444864,Agriculture,Agriculture +433701,Agriculture,Agriculture +419277,Agriculture,Agriculture +523479,Agriculture,Agriculture +523478,Agriculture,Agriculture +496426,Agriculture,Agriculture +496425,Agriculture,Agriculture +496424,Agriculture,Agriculture +471498,Agriculture,Agriculture +469520,Environment,Environment +444864,Environment,Environment +523479,Environment,Environment +523478,Environment,Environment +496426,Environment,Environment +496425,Environment,Environment +496424,Environment,Environment +469520,Health,Health +419277,Health,Health +523479,Health,Health +523478,Health,Health +496426,Health,Health +496425,Health,Health +496424,Health,Health +433701,International Trade,International Trade +419277,International Trade,International Trade +523479,International Trade,International Trade +523478,International Trade,International Trade +496426,International Trade,International Trade +496425,International Trade,International Trade +496424,International Trade,International Trade +471498,International Trade,International Trade +469520,International Trade,International Trade +428516,Taxation and Finance,Taxation and Finance +428515,Taxation and Finance,Taxation and Finance +428514,Taxation and Finance,Taxation and Finance +421316,Taxation and Finance,Taxation and Finance +421314,Taxation and Finance,Taxation and Finance +421313,Taxation and Finance,Taxation and Finance +419590,Economic Development,Economic Development +419587,Economic Development,Economic Development +429929,Economic Development,Economic Development +429928,Economic Development,Economic Development +429927,Economic Development,Economic Development +429925,Economic Development,Economic Development +429924,Economic Development,Economic Development +427723,Economic Development,Economic Development +419605,Economic Development,Economic Development +419604,Economic Development,Economic Development +419590,Immigration,Immigration +419587,Immigration,Immigration +419590,International Trade,International Trade +419587,International Trade,International Trade +427723,International Trade,International Trade +419605,International Trade,International Trade +429927,Regional Development,Regional Development +429925,Regional Development,Regional Development +429929,Regional Development,Regional Development +418593,Health,Health +418592,Health,Health +417488,Transportation,Transportation +509613,Transportation,Transportation +457732,Transportation,Transportation +418736,Budget,Budget +452783,Budget,Budget +452783,Education,Éducation +446888,Education,Éducation +418743,Education,Éducation +418736,Education,Éducation +455336,Education,Éducation +527593,Research and Development,Recherche et développement +500919,Research and Development,Recherche et développement +455336,Research and Development,Recherche et développement +455335,Research and Development,Recherche et développement +455332,Research and Development,Recherche et développement +452783,Research and Development,Recherche et développement +418743,Research and Development,Recherche et développement +418434,Economic Development,Economic Development +418538,Health,Health +418434,Health,Health +425912,Consumer Issues,Consumer Issues +535329,Consumer Issues,Consumer Issues +486599,Consumer Issues,Consumer Issues +483534,Consumer Issues,Consumer Issues +474386,Consumer Issues,Consumer Issues +495052,Employment and Training,Employment and Training +486614,Employment and Training,Employment and Training +451704,Employment and Training,Employment and Training +451615,Employment and Training,Employment and Training +451613,Employment and Training,Employment and Training +451612,Employment and Training,Employment and Training +451611,Employment and Training,Employment and Training +451610,Employment and Training,Employment and Training +451608,Employment and Training,Employment and Training +451604,Employment and Training,Employment and Training +451603,Employment and Training,Employment and Training +451601,Employment and Training,Employment and Training +451599,Employment and Training,Employment and Training +451596,Employment and Training,Employment and Training +451592,Employment and Training,Employment and Training +451590,Employment and Training,Employment and Training +451588,Employment and Training,Employment and Training +450233,Employment and Training,Employment and Training +450231,Employment and Training,Employment and Training +445066,Employment and Training,Employment and Training +444803,Employment and Training,Employment and Training +442267,Employment and Training,Employment and Training +425935,Employment and Training,Employment and Training +537396,Employment and Training,Employment and Training +537394,Employment and Training,Employment and Training +513286,Employment and Training,Employment and Training +513282,Employment and Training,Employment and Training +451592,Immigration,Immigration +421388,Immigration,Immigration +421387,Immigration,Immigration +421367,Immigration,Immigration +476504,Immigration,Immigration +476306,Immigration,Immigration +451615,Immigration,Immigration +435198,Industry,Industry +434017,Industry,Industry +433587,Industry,Industry +432237,Industry,Industry +432150,Industry,Industry +428262,Industry,Industry +426474,Industry,Industry +425935,Industry,Industry +425928,Industry,Industry +425927,Industry,Industry +425912,Industry,Industry +423556,Industry,Industry +423555,Industry,Industry +423553,Industry,Industry +423551,Industry,Industry +423550,Industry,Industry +423548,Industry,Industry +423546,Industry,Industry +423543,Industry,Industry +423478,Industry,Industry +421388,Industry,Industry +421387,Industry,Industry +421381,Industry,Industry +421379,Industry,Industry +421374,Industry,Industry +421369,Industry,Industry +421368,Industry,Industry +421367,Industry,Industry +418811,Industry,Industry +418414,Industry,Industry +418413,Industry,Industry +518927,Industry,Industry +495046,Industry,Industry +495041,Industry,Industry +476505,Industry,Industry +476306,Industry,Industry +476274,Industry,Industry +476159,Industry,Industry +474389,Industry,Industry +474388,Industry,Industry +474386,Industry,Industry +471735,Industry,Industry +471734,Industry,Industry +471733,Industry,Industry +471732,Industry,Industry +471731,Industry,Industry +471730,Industry,Industry +471729,Industry,Industry +471728,Industry,Industry +469891,Industry,Industry +466150,Industry,Industry +466149,Industry,Industry +463471,Industry,Industry +462948,Industry,Industry +462247,Industry,Industry +462246,Industry,Industry +462245,Industry,Industry +462244,Industry,Industry +460550,Industry,Industry +460400,Industry,Industry +460370,Industry,Industry +459163,Industry,Industry +459162,Industry,Industry +456562,Industry,Industry +456559,Industry,Industry +456558,Industry,Industry +456557,Industry,Industry +456556,Industry,Industry +456555,Industry,Industry +455507,Industry,Industry +455506,Industry,Industry +455402,Industry,Industry +455401,Industry,Industry +455400,Industry,Industry +455385,Industry,Industry +455384,Industry,Industry +455383,Industry,Industry +455382,Industry,Industry +455381,Industry,Industry +455380,Industry,Industry +451613,Industry,Industry +451603,Industry,Industry +451592,Industry,Industry +449280,Industry,Industry +449279,Industry,Industry +449278,Industry,Industry +449277,Industry,Industry +448274,Industry,Industry +445066,Industry,Industry +444803,Industry,Industry +443514,Industry,Industry +443513,Industry,Industry +443063,Industry,Industry +442264,Industry,Industry +442261,Industry,Industry +442259,Industry,Industry +442255,Industry,Industry +442249,Industry,Industry +442247,Industry,Industry +442245,Industry,Industry +442239,Industry,Industry +442234,Industry,Industry +438282,Industry,Industry +438281,Industry,Industry +438280,Industry,Industry +420316,Education,Education +420318,Employment and Training,Employment and Training +420318,Government Procurement,Government Procurement +420317,Labour,Labour +414875,Budget,Budget +414876,Budget,Budget +414877,Budget,Budget +414878,Budget,Budget +414879,Budget,Budget +414880,Budget,Budget +414567,Budget,Budget +414568,Budget,Budget +414569,Budget,Budget +414570,Budget,Budget +420621,Health,Health +420621,Taxation and Finance,Taxation and Finance +467532,Intellectual Property,Intellectual Property +443524,Employment and Training,Employment and Training +435026,Economic Development,Economic Development +437594,Education,Education +416509,Infrastructure,Infrastructure +414606,Taxation and Finance,Taxation and Finance +527161,Research and Development,Research and Development +414607,Research and Development,Research and Development +414607,Economic Development,Economic Development +414615,Economic Development,Economic Development +446391,Economic Development,Economic Development +421297,Taxation and Finance,Taxation and Finance +522802,Transportation,Transportation +417676,Health,Health +495787,Climate,Climate +493633,Energy,Energy +419125,Health,Health +430368,Justice and Law Enforcement,Justice and Law Enforcement +430368,Consumer Issues,Consumer Issues +421321,Health,Health +421321,Industry,Industry +424270,Transportation,Transportation +416617,Research and Development,Research and Development +416617,Health,Health +416617,Justice and Law Enforcement,Justice and Law Enforcement +416617,Consumer Issues,Consumer Issues +414713,Employment and Training,Employment and Training +414751,Agriculture,Agriculture +414896,Environment,Environment +414790,Energy,Energy +427214,Regional Development,Développement régional +415664,Small Business,Small Business +417705,Health,Health +415011,Taxation and Finance,Taxation and Finance +436568,Health,Health +436568,Agriculture,Agriculture +516313,Taxation and Finance,Taxation and Finance +417561,Taxation and Finance,Taxation and Finance +419980,Health,Health +415969,Environment,Environment +421822,Government Procurement,Government Procurement +417821,Environment,Environment +417821,Economic Development,Economic Development +440640,Government Procurement,Government Procurement +414950,International Trade,International Trade +414950,Mining,Mining +419285,Climate,Climate +417962,Energy,Energy +417957,Environment,Environment +414978,Agriculture,Agriculture +419952,Research and Development,Research and Development +419952,Small Business,Small Business +415206,Employment and Training,Employment and Training +417706,Health,Health +434211,Government Procurement,Government Procurement +422530,Infrastructure,Infrastructure +425044,Industry,Industry +438470,Justice and Law Enforcement,Justice and Law Enforcement +438470,Privacy and Access to Information,Privacy and Access to Information +500369,Security,Security +417365,International Development,International Development +414097,Employment and Training,Employment and Training +436972,Small Business,Small Business +436972,Regional Development,Regional Development +416520,Intellectual Property,Intellectual Property +417013,Agriculture,Agriculture +417013,Environment,Environment +417013,Health,Health +417013,International Trade,International Trade +417013,Taxation and Finance,Taxation and Finance +417013,Transportation,Transportation +419112,Housing,Housing +419954,Research and Development,Research and Development +446619,Defence,Defence +446619,Economic Development,Economic Development +446619,Government Procurement,Government Procurement +446619,International Trade,International Trade +418829,Economic Development,Economic Development +418829,Infrastructure,Infrastructure +418829,Transportation,Transportation +426997,Infrastructure,Infrastructure +419212,Transportation,Transportation +419212,Economic Development,Economic Development +419215,Defence,Defence +467015,Employment and Training,Employment and Training +469878,Government Procurement,Government Procurement +430175,Health,Health +467015,Immigration,Immigration +424989,Defence,Defence +499499,Economic Development,Economic Development +424989,Government Procurement,Government Procurement +424989,Industry,Industry +499499,International Trade,International Trade +503158,Consumer Issues,Consumer Issues +420930,Economic Development,Economic Development +503158,Government Procurement,Government Procurement +503158,Industry,Industry +417313,Infrastructure,Infrastructure +497035,Municipalities,Municipalities +497035,Regional Development,Regional Development +499548,Research and Development,Research and Development +455522,Taxation and Finance,Taxation and Finance +415611,Fisheries,Fisheries +418446,Labour,Labour +415624,Labour,Labour +430583,Health,Health +417541,Consumer Issues,Consumer Issues +417541,Health,Health +417541,Taxation and Finance,Taxation and Finance +469373,Research and Development,Research and Development +418453,Budget,Budget +420381,Budget,Budget +420381,Taxation and Finance,Taxation and Finance +511705,Consumer Issues,Consumer Issues +417688,Infrastructure,Infrastructure +415801,International Trade,International Trade +422948,Taxation and Finance,Taxation and Finance +520274,Transportation,Transportation +415875,International Trade,International Trade +542218,Industry,Industry +431782,Industry,Industry +429788,Industry,Industry +417829,Education,Education +420080,Environment,Environment +420473,Health,Health +420207,Infrastructure,Infrastructure +461105,Taxation and Finance,Taxation and Finance +416006,Housing,Housing +416006,Economic Development,Economic Development +416010,Infrastructure,Infrastructure +423633,International Development,International Development +423633,International Relations,International Relations +423633,International Trade,International Trade +416077,International Development,International Development +416077,International Relations,International Relations +500170,Agriculture,Agriculture +416106,Mining,Mining +416201,Economic Development,Economic Development +416201,Immigration,Immigration +416283,Health,Health +429543,Budget,Budget +429543,Environment,Environment +429543,Fisheries,Fisheries +490998,Immigration,Immigration +420250,Internal Trade,Internal Trade +420250,International Development,International Development +420250,International Relations,International Relations +541472,Budget,Budget +416649,Health,Health +416651,Health,Health +416717,Agriculture,Agriculture +420098,Health,Health +418968,Transportation,Transportation +418968,Energy,Energy +418968,Environment,Environment +487914,Industry,Industry +416753,Labour,Labour +451562,Industry,Industry +416757,Labour,Labour +487896,Industry,Industry +416763,Labour,Labour +473756,Industry,Industry +416761,Labour,Labour +415311,Government Procurement,Government Procurement +422713,Economic Development,Economic Development +416836,Environment,Environment +416842,Transportation,Transportation +431375,Transportation,Transportation +489901,Security,Security +456143,Economic Development,Economic Development +452718,Health,Health +494330,Intellectual Property,Intellectual Property +456140,Research and Development,Research and Development +417330,Economic Development,Economic Development +417330,Infrastructure,Infrastructure +453895,Municipalities,Municipalities +417335,Regional Development,Regional Development +455527,Taxation and Finance,Taxation and Finance +429720,Economic Development,Economic Development +458552,Security,Security +428586,Industry,Industry +428586,Government Procurement,Government Procurement +478094,Government Procurement,Government Procurement +478094,Security,Security +523867,Employment and Training,Employment and Training +457687,Research and Development,Research and Development +428371,Industry,Industry +417182,Health,Health +435890,Budget,Budget +422938,Mining,Mining +422938,Transportation,Transportation +516308,Budget,Budget +418612,Consumer Issues,Consumer Issues +422211,Employment and Training,Employment and Training +520396,Health,Health +428778,Internal Trade,Internal Trade +428778,International Trade,International Trade +428778,Labour,Labour +422209,Regional Development,Regional Development +418612,Small Business,Small Business +422211,Tourism,Tourism +428775,Transportation,Transportation +422528,Employment and Training,Employment and Training +417203,International Relations,International Relations +428918,Education,Education +428918,Infrastructure,Infrastructure +459175,Agriculture,Agriculture +420106,Consumer Issues,Consumer Issues +423030,Environment,Environment +420106,Health,Health +448850,Industry,Industry +470862,Transportation,Transportation +417436,Industry,Industry +446149,Economic Development,Economic Development +469101,Energy,Energy +431143,Transportation,Transportation +447619,Housing,Housing +417368,Employment and Training,Employment and Training +451427,Economic Development,Economic Development +432671,Research and Development,Research and Development +469437,Agriculture,Agriculture +469437,Consumer Issues,Consumer Issues +496450,Environment,Environment +469437,Health,Health +496450,International Trade,International Trade +469520,Agriculture,Agriculture +471498,Environment,Environment +471498,Health,Health +444864,International Trade,International Trade +440606,Taxation and Finance,Taxation and Finance +419600,Budget,Budget +419600,Economic Development,Economic Development +419604,Immigration,Immigration +419587,Industry,Industry +419600,International Trade,International Trade +429928,Regional Development,Regional Development +419587,Research and Development,Research and Development +419600,Taxation and Finance,Taxation and Finance +422353,Taxation and Finance,Taxation and Finance +418594,Health,Health +417489,Energy,Energy +417489,Transportation,Transportation +417489,Consumer Issues,Consumer Issues +457733,Transportation,Transportation +418743,Budget,Budget +455335,Education,Éducation +418736,Research and Development,Recherche et développement +418787,Health,Health +418787,Industry,Industry +422703,Health,Health +455874,Government Procurement,Government Procurement +418538,Economic Development,Economic Development +422714,Health,Health +446905,Taxation and Finance,Taxation and Finance +485067,Health,Health +442267,Consumer Issues,Consumer Issues +510223,Employment and Training,Employment and Training +451603,Immigration,Immigration +435382,Industry,Industry +421369,Intellectual Property,Intellectual Property +508437,International Trade,International Trade +442234,Small Business,Small Business +486611,Taxation and Finance,Taxation and Finance +486613,Transportation,Transportation +429783,Environment,Environnement +429783,Health,Santé +422630,Financial Institutions,Financial Institutions +509923,Budget,Budget +509923,Economic Development,Economic Development +493921,Employment and Training,Employment and Training +533705,Infrastructure,Infrastructure +533796,Regional Development,Regional Development +422946,Economic Development,Economic Development +419221,Research and Development,Research and Development +419221,Small Business,Small Business +417614,Economic Development,Economic Development +454700,Taxation and Finance,Taxation and Finance +430072,Transportation,Transportation +418920,Infrastructure,Infrastructure +430074,Transportation,Transportation +430079,Transportation,Transportation +430078,Transportation,Transportation +431705,Transportation,Transportation +431400,Transportation,Transportation +418986,Economic Development,Economic Development +430077,Transportation,Transportation +430075,Transportation,Transportation +418017,Environment,Environment +418017,Industry,Industry +417782,Budget,Budget +417802,Education,Education +417803,Education,Education +418416,Health,Health +418416,Research and Development,Research and Development +417808,International Trade,International Trade +417808,Internal Trade,Internal Trade +456325,Taxation and Finance,Taxation and Finance +417915,Climate,Climate +417968,Environment,Environment +417969,Industry,Industry +422183,Government Procurement,Government Procurement +431368,Agriculture,Agriculture +431368,Consumer Issues,Consumer Issues +431368,Health,Health +431368,Industry,Industry +419342,Environment,Environment +419342,Energy,Energy +419344,Environment,Environment +419344,Energy,Energy +425698,Employment and Training,Employment and Training +454334,Environment,Environment +425708,Justice and Law Enforcement,Justice and Law Enforcement +445788,Transportation,Transportation +452391,Government Procurement,Government Procurement +457699,Economic Development,Economic Development +420798,Education,Education +418341,Agriculture,Agriculture +420263,Energy,Energy +420263,Environment,Environment +439891,Climate,Climate +440848,Economic Development,Economic Development +521309,Energy,Energy +528797,Health,Health +463547,International Trade,International Trade +420655,Economic Development,Economic Development +420655,Employment and Training,Employment and Training +420655,Immigration,Immigration +420655,Industry,Industry +420655,Labour,Labour +420655,Regional Development,Regional Development +418428,Economic Development,Economic Development +418426,Infrastructure,Infrastructure +445133,Agriculture,Agriculture +419865,Energy,Energy +419865,Health,Health +443086,Agriculture,Agriculture +443090,Economic Development,Economic Development +443085,Health,Health +443081,International Trade,International Trade +418814,Financial Institutions,Financial Institutions +464062,Health,Health +419120,Health,Health +427228,Small Business,Small Business +419120,Transportation,Transportation +419120,Regional Development,Regional Development +419120,Employment and Training,Employment and Training +457121,Research and Development,Research and Development +459833,Economic Development,Economic Development +459833,Industry,Industry +459833,International Trade,International Trade +459833,Regional Development,Regional Development +421674,Economic Development,Economic Development +435416,Immigration,Immigration +420637,Employment and Training,Employment and Training +424926,Environment,Environment +420644,Infrastructure,Infrastructure +420644,Municipalities,Municipalities +420644,Transportation,Transportation +419257,Environment,Environment +419257,Economic Development,Economic Development +419257,Regional Development,Regional Development +429877,Government Procurement,Government Procurement +429876,Government Procurement,Government Procurement +429879,Government Procurement,Government Procurement +418420,International Trade,International Trade +418427,Energy,Energy +418427,Environment,Environment +441507,Forestry,Forestry +441507,Industry,Industry +441507,Mining,Mining +441507,Research and Development,Research and Development +421325,Health,Health +496560,Agriculture,Agriculture +419158,Internal Trade,Commerce intérieur +419158,International Trade,Commerce international +418652,International Relations,International Relations +418652,Security,Security +418990,Economic Development,Développement économique +418990,Employment and Training,Emploi et formation +418524,Environment,Environment +418524,Energy,Energy +422787,Environment,Environment +422787,Energy,Energy +532550,Pensions,Pensions +418474,Climate,Climate +431042,Taxation and Finance,Taxation and Finance +418477,Health,Health +419505,Research and Development,Research and Development +419505,Small Business,Small Business +422367,Economic Development,Développement économique +419771,Research and Development,Research and Development +473976,Environment,Environment +426948,Health,Health +450437,Transportation,Transportation +496519,Defence,Defence +444756,Economic Development,Economic Development +444756,Employment and Training,Employment and Training +444756,Industry,Industry +496519,International Trade,International Trade +441516,Regional Development,Regional Development +418696,Economic Development,Economic Development +427111,Environment,Environment +418696,Fisheries,Fisheries +468793,Mining,Mining +422183,Health,Health +418541,Economic Development,Economic Development +427191,Transportation,Transportation +427192,Environment,Environment +427191,Sports,Sports +427191,Health,Health +418564,Internal Trade,Internal Trade +420597,Fisheries,Fisheries +420597,Small Business,Small Business +420597,Tourism,Tourism +420597,Transportation,Transportation +418923,International Trade,International Trade +418923,Small Business,Small Business +430574,Government Procurement,Government Procurement +418581,Constitutional Issues,Constitutional Issues +418581,Education,Education +418581,Infrastructure,Infrastructure +418582,Constitutional Issues,Constitutional Issues +418582,Education,Education +418582,Official Languages,Official Languages +418578,Constitutional Issues,Constitutional Issues +418578,Education,Education +418578,Official Languages,Official Languages +418579,Constitutional Issues,Constitutional Issues +418579,Education,Education +418579,Official Languages,Official Languages +419824,Research and Development,Research and Development +438279,Industry,Industry +421368,Intellectual Property,Intellectual Property +531463,Intellectual Property,Intellectual Property +421374,Intellectual Property,Intellectual Property +501555,International Trade,International Trade +459162,International Trade,International Trade +448274,International Trade,International Trade +442261,International Trade,International Trade +442259,International Trade,International Trade +442255,International Trade,International Trade +442249,International Trade,International Trade +442247,International Trade,International Trade +442245,International Trade,International Trade +442239,International Trade,International Trade +442234,International Trade,International Trade +438281,International Trade,International Trade +438280,International Trade,International Trade +434017,International Trade,International Trade +425931,International Trade,International Trade +425930,International Trade,International Trade +425919,International Trade,International Trade +418811,International Trade,International Trade +543384,International Trade,International Trade +541210,International Trade,International Trade +541209,International Trade,International Trade +438279,Small Business,Small Business +498238,Small Business,Small Business +483539,Small Business,Small Business +462244,Small Business,Small Business +460400,Small Business,Small Business +455506,Small Business,Small Business +451704,Small Business,Small Business +451697,Small Business,Small Business +451613,Small Business,Small Business +451612,Small Business,Small Business +451611,Small Business,Small Business +451610,Small Business,Small Business +451608,Small Business,Small Business +451604,Small Business,Small Business +451601,Small Business,Small Business +451599,Small Business,Small Business +451596,Small Business,Small Business +451592,Small Business,Small Business +451588,Small Business,Small Business +447129,Small Business,Small Business +442261,Small Business,Small Business +442259,Small Business,Small Business +442255,Small Business,Small Business +442249,Small Business,Small Business +442247,Small Business,Small Business +442245,Small Business,Small Business +442239,Small Business,Small Business +483531,Taxation and Finance,Taxation and Finance +476505,Taxation and Finance,Taxation and Finance +466225,Taxation and Finance,Taxation and Finance +462247,Taxation and Finance,Taxation and Finance +462246,Taxation and Finance,Taxation and Finance +460370,Taxation and Finance,Taxation and Finance +459163,Taxation and Finance,Taxation and Finance +459162,Taxation and Finance,Taxation and Finance +423546,Taxation and Finance,Taxation and Finance +423543,Taxation and Finance,Taxation and Finance +543390,Taxation and Finance,Taxation and Finance +539638,Taxation and Finance,Taxation and Finance +535770,Taxation and Finance,Taxation and Finance +531475,Taxation and Finance,Taxation and Finance +528453,Taxation and Finance,Taxation and Finance +521764,Taxation and Finance,Taxation and Finance +518953,Taxation and Finance,Taxation and Finance +518926,Taxation and Finance,Taxation and Finance +515265,Taxation and Finance,Taxation and Finance +504481,Taxation and Finance,Taxation and Finance +501549,Taxation and Finance,Taxation and Finance +501546,Taxation and Finance,Taxation and Finance +495066,Taxation and Finance,Taxation and Finance +495060,Taxation and Finance,Taxation and Finance +495059,Taxation and Finance,Taxation and Finance +486612,Transportation,Transportation +489835,Transportation,Transportation +489833,Transportation,Transportation +489831,Transportation,Transportation +489830,Transportation,Transportation +429782,Environment,Environnement +417569,Environment,Environnement +429782,Health,Santé +417569,Health,Santé +493921,Economic Development,Economic Development +533796,Employment and Training,Employment and Training +509923,Employment and Training,Employment and Training +509923,Infrastructure,Infrastructure +493921,Infrastructure,Infrastructure +533796,Infrastructure,Infrastructure +533705,Regional Development,Regional Development +417898,Economic Development,Economic Development +417896,Economic Development,Economic Development +417896,Research and Development,Research and Development +429882,Transportation,Transportation +422727,Transportation,Transportation +431696,Transportation,Transportation +431391,Transportation,Transportation +429883,Transportation,Transportation +422729,Transportation,Transportation +431699,Transportation,Transportation +431393,Transportation,Transportation +429889,Transportation,Transportation +422734,Transportation,Transportation +431704,Transportation,Transportation +431398,Transportation,Transportation +429888,Transportation,Transportation +422733,Transportation,Transportation +431703,Transportation,Transportation +431397,Transportation,Transportation +431399,Transportation,Transportation +430080,Transportation,Transportation +429890,Transportation,Transportation +422735,Transportation,Transportation +430081,Transportation,Transportation +429892,Transportation,Transportation +422736,Transportation,Transportation +431706,Transportation,Transportation +418985,Economic Development,Economic Development +418984,Economic Development,Economic Development +421098,Economic Development,Economic Development +420742,Economic Development,Economic Development +420741,Economic Development,Economic Development +420740,Economic Development,Economic Development +420739,Economic Development,Economic Development +420738,Economic Development,Economic Development +420737,Economic Development,Economic Development +420736,Economic Development,Economic Development +418987,Economic Development,Economic Development +429886,Transportation,Transportation +422732,Transportation,Transportation +431702,Transportation,Transportation +431396,Transportation,Transportation +429884,Transportation,Transportation +422730,Transportation,Transportation +431700,Transportation,Transportation +431394,Transportation,Transportation +456324,Taxation and Finance,Taxation and Finance +445538,Taxation and Finance,Taxation and Finance +456326,Taxation and Finance,Taxation and Finance +417967,Environment,Environment +422054,Government Procurement,Government Procurement +422053,Government Procurement,Government Procurement +422189,Government Procurement,Government Procurement +422186,Government Procurement,Government Procurement +419946,Agriculture,Agriculture +419942,Agriculture,Agriculture +431369,Agriculture,Agriculture +419946,Consumer Issues,Consumer Issues +419942,Consumer Issues,Consumer Issues +431369,Consumer Issues,Consumer Issues +419946,Health,Health +419942,Health,Health +431369,Health,Health +419946,Industry,Industry +419942,Industry,Industry +432704,Industry,Industry +431369,Industry,Industry +453944,Environment,Environment +453943,Environment,Environment +454335,Environment,Environment +436053,Transportation,Transportation +424283,Transportation,Transportation +464962,Transportation,Transportation +464958,Transportation,Transportation +457704,Transportation,Transportation +457699,Transportation,Transportation +455840,Transportation,Transportation +452391,Transportation,Transportation +452389,Transportation,Transportation +449644,Transportation,Transportation +445789,Transportation,Transportation +452389,Government Procurement,Government Procurement +436053,Government Procurement,Government Procurement +457704,Government Procurement,Government Procurement +457699,Government Procurement,Government Procurement +455840,Government Procurement,Government Procurement +452391,Economic Development,Economic Development +452389,Economic Development,Economic Development +449644,Economic Development,Economic Development +445789,Economic Development,Economic Development +445788,Economic Development,Economic Development +436053,Economic Development,Economic Development +424283,Economic Development,Economic Development +457704,Economic Development,Economic Development +418429,Education,Education +418426,Education,Education +418340,Agriculture,Agriculture +418339,Agriculture,Agriculture +418342,Agriculture,Agriculture +436651,Climate,Climate +424918,Economic Development,Economic Development +424910,Economic Development,Economic Development +545229,Economic Development,Economic Development +544973,Economic Development,Economic Development +544971,Economic Development,Economic Development +544970,Economic Development,Economic Development +544684,Economic Development,Economic Development +544341,Economic Development,Economic Development +540100,Economic Development,Economic Development +536272,Economic Development,Economic Development +536270,Economic Development,Economic Development +533115,Economic Development,Economic Development +533112,Economic Development,Economic Development +528390,Economic Development,Economic Development +528068,Economic Development,Economic Development +526981,Economic Development,Economic Development +521767,Economic Development,Economic Development +520712,Economic Development,Economic Development +520606,Economic Development,Economic Development +520563,Economic Development,Economic Development +520356,Economic Development,Economic Development +520355,Economic Development,Economic Development +520354,Economic Development,Economic Development +517003,Economic Development,Economic Development +516662,Economic Development,Economic Development +516169,Economic Development,Economic Development +514874,Economic Development,Economic Development +514873,Economic Development,Economic Development +514426,Economic Development,Economic Development +514421,Economic Development,Economic Development +514416,Economic Development,Economic Development +472213,Energy,Energy +521769,Health,Health +484365,Health,Health +463546,International Trade,International Trade +420654,Economic Development,Economic Development +420654,Employment and Training,Employment and Training +420654,Regional Development,Regional Development +418427,Economic Development,Economic Development +418426,Economic Development,Economic Development +420798,Economic Development,Economic Development +418431,Economic Development,Economic Development +418430,Economic Development,Economic Development +418429,Economic Development,Economic Development +419583,Agriculture,Agriculture +419581,Agriculture,Agriculture +465150,Agriculture,Agriculture +465149,Agriculture,Agriculture +445135,Agriculture,Agriculture +445134,Agriculture,Agriculture +418585,Energy,Energy +418443,Energy,Energy +418585,Health,Health +418443,Health,Health +443084,Agriculture,Agriculture +443088,Economic Development,Economic Development +424690,Health,Health +418399,Health,Health +446683,Health,Health +446682,Health,Health +418813,Financial Institutions,Financial Institutions +418812,Financial Institutions,Financial Institutions +468743,Financial Institutions,Financial Institutions +468742,Financial Institutions,Financial Institutions +468741,Financial Institutions,Financial Institutions +468739,Financial Institutions,Financial Institutions +468738,Financial Institutions,Financial Institutions +468737,Financial Institutions,Financial Institutions +468736,Financial Institutions,Financial Institutions +468735,Financial Institutions,Financial Institutions +468734,Financial Institutions,Financial Institutions +468733,Financial Institutions,Financial Institutions +468732,Financial Institutions,Financial Institutions +468730,Financial Institutions,Financial Institutions +468729,Financial Institutions,Financial Institutions +464853,Financial Institutions,Financial Institutions +464850,Financial Institutions,Financial Institutions +464846,Financial Institutions,Financial Institutions +464845,Financial Institutions,Financial Institutions +464842,Financial Institutions,Financial Institutions +464824,Financial Institutions,Financial Institutions +459847,Financial Institutions,Financial Institutions +456340,Financial Institutions,Financial Institutions +456339,Financial Institutions,Financial Institutions +456338,Financial Institutions,Financial Institutions +456337,Financial Institutions,Financial Institutions +456335,Financial Institutions,Financial Institutions +456334,Financial Institutions,Financial Institutions +456333,Financial Institutions,Financial Institutions +448167,Financial Institutions,Financial Institutions +448165,Financial Institutions,Financial Institutions +448164,Financial Institutions,Financial Institutions +448162,Financial Institutions,Financial Institutions +448161,Financial Institutions,Financial Institutions +448160,Financial Institutions,Financial Institutions +448159,Financial Institutions,Financial Institutions +448158,Financial Institutions,Financial Institutions +448154,Financial Institutions,Financial Institutions +448152,Financial Institutions,Financial Institutions +448150,Financial Institutions,Financial Institutions +448148,Financial Institutions,Financial Institutions +448147,Financial Institutions,Financial Institutions +448145,Financial Institutions,Financial Institutions +448142,Financial Institutions,Financial Institutions +448141,Financial Institutions,Financial Institutions +448138,Financial Institutions,Financial Institutions +445780,Financial Institutions,Financial Institutions +445779,Financial Institutions,Financial Institutions +445778,Financial Institutions,Financial Institutions +428505,Financial Institutions,Financial Institutions +428503,Financial Institutions,Financial Institutions +428502,Financial Institutions,Financial Institutions +428500,Financial Institutions,Financial Institutions +428499,Financial Institutions,Financial Institutions +428497,Financial Institutions,Financial Institutions +428494,Financial Institutions,Financial Institutions +428490,Financial Institutions,Financial Institutions +428485,Financial Institutions,Financial Institutions +428483,Financial Institutions,Financial Institutions +428480,Financial Institutions,Financial Institutions +428477,Financial Institutions,Financial Institutions +428469,Financial Institutions,Financial Institutions +428466,Financial Institutions,Financial Institutions +428465,Financial Institutions,Financial Institutions +428464,Financial Institutions,Financial Institutions +428461,Financial Institutions,Financial Institutions +425860,Financial Institutions,Financial Institutions +425859,Financial Institutions,Financial Institutions +425858,Financial Institutions,Financial Institutions +425857,Financial Institutions,Financial Institutions +425856,Financial Institutions,Financial Institutions +425855,Financial Institutions,Financial Institutions +425854,Financial Institutions,Financial Institutions +425853,Financial Institutions,Financial Institutions +425852,Financial Institutions,Financial Institutions +425851,Financial Institutions,Financial Institutions +425850,Financial Institutions,Financial Institutions +425849,Financial Institutions,Financial Institutions +425848,Financial Institutions,Financial Institutions +425847,Financial Institutions,Financial Institutions +425846,Financial Institutions,Financial Institutions +425845,Financial Institutions,Financial Institutions +425844,Financial Institutions,Financial Institutions +425843,Financial Institutions,Financial Institutions +423067,Financial Institutions,Financial Institutions +423066,Financial Institutions,Financial Institutions +420448,Financial Institutions,Financial Institutions +420447,Financial Institutions,Financial Institutions +464059,Health,Health +464055,Health,Health +419061,Health,Health +419058,Health,Health +422629,Small Business,Small Business +418591,Small Business,Small Business +419118,Transportation,Transportation +418591,Transportation,Transportation +427228,Transportation,Transportation +423328,Transportation,Transportation +422629,Transportation,Transportation +420608,Transportation,Transportation +420607,Transportation,Transportation +419118,Regional Development,Regional Development +418591,Regional Development,Regional Development +422629,Regional Development,Regional Development +457120,Research and Development,Research and Development +452067,Research and Development,Research and Development +460676,Research and Development,Research and Development +460675,Research and Development,Research and Development +460664,Research and Development,Research and Development +457122,Research and Development,Research and Development +459159,Economic Development,Economic Development +459159,Industry,Industry +459159,International Trade,International Trade +445785,International Trade,International Trade +421671,Economic Development,Economic Development +421660,Economic Development,Economic Development +421675,Economic Development,Economic Development +420638,Infrastructure,Infrastructure +420637,Infrastructure,Infrastructure +437101,Infrastructure,Infrastructure +437099,Infrastructure,Infrastructure +437097,Infrastructure,Infrastructure +437096,Infrastructure,Infrastructure +437095,Infrastructure,Infrastructure +437094,Infrastructure,Infrastructure +437093,Infrastructure,Infrastructure +424926,Infrastructure,Infrastructure +420638,Municipalities,Municipalities +420637,Municipalities,Municipalities +437101,Municipalities,Municipalities +437099,Municipalities,Municipalities +437097,Municipalities,Municipalities +437096,Municipalities,Municipalities +437095,Municipalities,Municipalities +437094,Municipalities,Municipalities +437093,Municipalities,Municipalities +424926,Municipalities,Municipalities +422068,Government Procurement,Government Procurement +429875,Government Procurement,Government Procurement +429874,Government Procurement,Government Procurement +429878,Government Procurement,Government Procurement +421317,Health,Health +419158,Agriculture,Agriculture +511660,Agriculture,Agriculture +418989,Economic Development,Développement économique +418988,Economic Development,Développement économique +418991,Economic Development,Développement économique +418989,Employment and Training,Emploi et formation +418988,Employment and Training,Emploi et formation +418991,Employment and Training,Emploi et formation +418523,Environment,Environment +418523,Energy,Energy +422786,Environment,Environment +422786,Energy,Energy +530153,Pensions,Pensions +530152,Pensions,Pensions +528039,Pensions,Pensions +528038,Pensions,Pensions +528035,Pensions,Pensions +527029,Pensions,Pensions +524271,Pensions,Pensions +520435,Pensions,Pensions +497386,Pensions,Pensions +494328,Pensions,Pensions +485540,Pensions,Pensions +483573,Pensions,Pensions +483333,Pensions,Pensions +479246,Pensions,Pensions +466632,Pensions,Pensions +466630,Pensions,Pensions +466627,Pensions,Pensions +453702,Pensions,Pensions +453701,Pensions,Pensions +450905,Pensions,Pensions +450846,Pensions,Pensions +450845,Pensions,Pensions +450844,Pensions,Pensions +438797,Pensions,Pensions +435177,Pensions,Pensions +433829,Pensions,Pensions +431780,Pensions,Pensions +431779,Pensions,Pensions +430157,Pensions,Pensions +428039,Pensions,Pensions +423583,Pensions,Pensions +419848,Pensions,Pensions +535131,Pensions,Pensions +533062,Pensions,Pensions +532653,Pensions,Pensions +422366,Economic Development,Développement économique +422362,Economic Development,Développement économique +422375,Economic Development,Développement économique +422373,Economic Development,Développement économique +422371,Economic Development,Développement économique +422370,Economic Development,Développement économique +422369,Economic Development,Développement économique +422368,Economic Development,Développement économique +419769,Research and Development,Research and Development +432036,Environment,Environment +432035,Environment,Environment +500108,Environment,Environment +485608,Environment,Environment +426947,Health,Health +426946,Health,Health +426950,Health,Health +450436,Transportation,Transportation +450435,Transportation,Transportation +426950,Transportation,Transportation +426948,Transportation,Transportation +426947,Transportation,Transportation +426946,Transportation,Transportation +420500,Transportation,Transportation +444756,Defence,Defence +441516,Defence,Defence +441516,Economic Development,Economic Development +496519,Economic Development,Economic Development +441516,Industry,Industry +496519,Industry,Industry +418695,Economic Development,Economic Development +418693,Economic Development,Economic Development +473313,Economic Development,Economic Development +472043,Economic Development,Economic Development +468793,Economic Development,Economic Development +445306,Economic Development,Economic Development +427111,Economic Development,Economic Development +424832,Economic Development,Economic Development +424831,Economic Development,Economic Development +420369,Economic Development,Economic Development +424832,Environment,Environment +424831,Environment,Environment +420369,Environment,Environment +418696,Environment,Environment +418695,Environment,Environment +418693,Environment,Environment +445306,Environment,Environment +418695,Fisheries,Fisheries +418693,Fisheries,Fisheries +445306,Fisheries,Fisheries +427111,Fisheries,Fisheries +424832,Fisheries,Fisheries +424831,Fisheries,Fisheries +420369,Fisheries,Fisheries +453579,Mining,Mining +453578,Mining,Mining +445306,Mining,Mining +427111,Mining,Mining +424832,Mining,Mining +424831,Mining,Mining +420369,Mining,Mining +418696,Mining,Mining +418695,Mining,Mining +418693,Mining,Mining +422054,Health,Health +422053,Health,Health +422189,Health,Health +422186,Health,Health +427190,Transportation,Transportation +427189,Transportation,Transportation +427192,Transportation,Transportation +427191,Environment,Environment +427190,Environment,Environment +427190,Sports,Sports +427189,Sports,Sports +427192,Sports,Sports +427190,Health,Health +427189,Health,Health +427192,Health,Health +446498,Internal Trade,Internal Trade +444583,Internal Trade,Internal Trade +420585,Fisheries,Fisheries +420584,Fisheries,Fisheries +420631,Fisheries,Fisheries +420630,Fisheries,Fisheries +420629,Fisheries,Fisheries +420585,Small Business,Small Business +420584,Small Business,Small Business +420631,Small Business,Small Business +420630,Small Business,Small Business +420629,Small Business,Small Business +420585,Tourism,Tourism +420584,Tourism,Tourism +420631,Tourism,Tourism +420630,Tourism,Tourism +420629,Tourism,Tourism +420585,Transportation,Transportation +420584,Transportation,Transportation +420631,Transportation,Transportation +420630,Transportation,Transportation +420629,Transportation,Transportation +418922,International Trade,International Trade +418921,International Trade,International Trade +423009,International Trade,International Trade +421415,International Trade,International Trade +421235,International Trade,International Trade +420563,International Trade,International Trade +420469,International Trade,International Trade +420446,International Trade,International Trade +418925,International Trade,International Trade +418922,Small Business,Small Business +418921,Small Business,Small Business +423009,Small Business,Small Business +421415,Small Business,Small Business +421235,Small Business,Small Business +420563,Small Business,Small Business +420469,Small Business,Small Business +420446,Small Business,Small Business +418925,Small Business,Small Business +425344,Government Procurement,Government Procurement +423559,Government Procurement,Government Procurement +508825,Government Procurement,Government Procurement +461729,Government Procurement,Government Procurement +418580,Constitutional Issues,Constitutional Issues +418577,Constitutional Issues,Constitutional Issues +418580,Education,Education +418577,Education,Education +418580,Official Languages,Official Languages +418577,Official Languages,Official Languages +419819,Research and Development,Research and Development +518385,Economic Development,Economic Development +444579,Economic Development,Economic Development +440853,Economic Development,Economic Development +437361,Economic Development,Economic Development +437360,Economic Development,Economic Development +434303,Economic Development,Economic Development +434302,Economic Development,Economic Development +433099,Economic Development,Economic Development +433098,Economic Development,Economic Development +427424,Government Procurement,Government Procurement +419746,Government Procurement,Government Procurement +451204,Government Procurement,Government Procurement +451203,Government Procurement,Government Procurement +450843,Government Procurement,Government Procurement +438938,Government Procurement,Government Procurement +438937,Government Procurement,Government Procurement +438935,Government Procurement,Government Procurement +435378,Government Procurement,Government Procurement +435377,Government Procurement,Government Procurement +430189,Government Procurement,Government Procurement +517900,Health,Health +515654,Health,Health +420636,Health,Health +505811,Health,Health +502947,Health,Health +496122,Health,Health +496120,Health,Health +490960,Health,Health +487694,Health,Health +484755,Health,Health +481993,Health,Health +481992,Health,Health +479692,Health,Health +479688,Health,Health +477641,Health,Health +477640,Health,Health +476111,Health,Health +470750,Health,Health +470714,Health,Health +470701,Health,Health +535804,Health,Health +535803,Health,Health +535802,Health,Health +535800,Health,Health +535797,Health,Health +529605,Health,Health +529604,Health,Health +526425,Health,Health +526418,Health,Health +523310,Health,Health +523309,Health,Health +523308,Health,Health +523307,Health,Health +517921,Health,Health +517906,Health,Health +470707,Justice and Law Enforcement,Justice and Law Enforcement +490958,Regional Development,Regional Development +479682,Regional Development,Regional Development +526408,Taxation and Finance,Taxation and Finance +517917,Taxation and Finance,Taxation and Finance +420635,Taxation and Finance,Taxation and Finance +477642,Taxation and Finance,Taxation and Finance +473255,Taxation and Finance,Taxation and Finance +473252,Taxation and Finance,Taxation and Finance +424289,Internal Trade,Internal Trade +419895,Internal Trade,Internal Trade +419894,Internal Trade,Internal Trade +419893,Internal Trade,Internal Trade +419892,Internal Trade,Internal Trade +424819,Security,Security +418630,Security,Security +430239,Security,Security +430237,Security,Security +418772,Research and Development,Research and Development +418771,Research and Development,Research and Development +427415,Health,Health +418712,Industry,Industry +418711,Industry,Industry +423775,Sports,Sports +423773,Sports,Sports +434447,Sports,Sports +434445,Sports,Sports +434443,Sports,Sports +434442,Sports,Sports +434440,Sports,Sports +434439,Sports,Sports +434437,Sports,Sports +434436,Sports,Sports +431684,Sports,Sports +429858,Sports,Sports +423791,Sports,Sports +423789,Sports,Sports +423779,Sports,Sports +423775,Economic Development,Economic Development +423773,Economic Development,Economic Development +434447,Economic Development,Economic Development +434445,Economic Development,Economic Development +434443,Economic Development,Economic Development +434442,Economic Development,Economic Development +434440,Economic Development,Economic Development +434439,Economic Development,Economic Development +434437,Economic Development,Economic Development +434436,Economic Development,Economic Development +431684,Economic Development,Economic Development +429858,Economic Development,Economic Development +423791,Economic Development,Economic Development +423789,Economic Development,Economic Development +423779,Economic Development,Economic Development +423775,Tourism,Tourism +423773,Tourism,Tourism +434447,Tourism,Tourism +434445,Tourism,Tourism +434443,Tourism,Tourism +434442,Tourism,Tourism +434440,Tourism,Tourism +434439,Tourism,Tourism +434437,Tourism,Tourism +434436,Tourism,Tourism +431684,Tourism,Tourism +429858,Tourism,Tourism +423791,Tourism,Tourism +423789,Tourism,Tourism +423779,Tourism,Tourism +423776,Infrastructure,Infrastructure +423775,Infrastructure,Infrastructure +434447,Infrastructure,Infrastructure +434445,Infrastructure,Infrastructure +434443,Infrastructure,Infrastructure +434442,Infrastructure,Infrastructure +434440,Infrastructure,Infrastructure +434439,Infrastructure,Infrastructure +434437,Infrastructure,Infrastructure +434436,Infrastructure,Infrastructure +423791,Infrastructure,Infrastructure +423775,Budget,Budget +423773,Budget,Budget +434447,Budget,Budget +434445,Budget,Budget +434443,Budget,Budget +434442,Budget,Budget +434440,Budget,Budget +434439,Budget,Budget +434437,Budget,Budget +434436,Budget,Budget +429858,Budget,Budget +423791,Budget,Budget +423789,Budget,Budget +423779,Budget,Budget +427163,Intellectual Property,Intellectual Property +427161,Intellectual Property,Intellectual Property +423800,Intellectual Property,Intellectual Property +423798,Intellectual Property,Intellectual Property +423794,Intellectual Property,Intellectual Property +444467,Intellectual Property,Intellectual Property +444466,Intellectual Property,Intellectual Property +444176,Intellectual Property,Intellectual Property +444174,Intellectual Property,Intellectual Property +443095,Intellectual Property,Intellectual Property +441429,Intellectual Property,Intellectual Property +436298,Intellectual Property,Intellectual Property +436297,Intellectual Property,Intellectual Property +436296,Intellectual Property,Intellectual Property +434082,Intellectual Property,Intellectual Property +434081,Intellectual Property,Intellectual Property +433072,Intellectual Property,Intellectual Property +433015,Intellectual Property,Intellectual Property +422824,Economic Development,Economic Development +422819,Economic Development,Economic Development +422848,Economic Development,Economic Development +422847,Economic Development,Economic Development +422845,Economic Development,Economic Development +422824,Employment and Training,Employment and Training +422819,Employment and Training,Employment and Training +422848,Employment and Training,Employment and Training +422847,Employment and Training,Employment and Training +422845,Employment and Training,Employment and Training +422824,Small Business,Small Business +422819,Small Business,Small Business +422848,Small Business,Small Business +422847,Small Business,Small Business +422845,Small Business,Small Business +418707,Health,Health +418706,Health,Health +466012,Health,Health +448788,Health,Health +497544,Agriculture,Agriculture +497543,Agriculture,Agriculture +465155,Agriculture,Agriculture +465153,Agriculture,Agriculture +465142,Agriculture,Agriculture +465141,Agriculture,Agriculture +445142,Agriculture,Agriculture +445140,Agriculture,Agriculture +432063,Agriculture,Agriculture +523706,Agriculture,Agriculture +523705,Agriculture,Agriculture +523704,Agriculture,Agriculture +523703,Agriculture,Agriculture +497546,Agriculture,Agriculture +530015,Health,Health +530001,Health,Health +432887,Health,Health +518997,Health,Health +518587,Health,Health +512320,Health,Health +509649,Health,Health +509173,Health,Health +471894,Health,Health +471851,Health,Health +453178,Health,Health +419916,Health,Health +419916,Taxation and Finance,Taxation and Finance +418734,Consumer Issues,Consumer Issues +418733,Consumer Issues,Consumer Issues +424572,Consumer Issues,Consumer Issues +424571,Consumer Issues,Consumer Issues +424570,Consumer Issues,Consumer Issues +424569,Consumer Issues,Consumer Issues +418742,Consumer Issues,Consumer Issues +418739,Consumer Issues,Consumer Issues +418738,Consumer Issues,Consumer Issues +487363,Education,Education +484441,Education,Education +436846,Education,Education +436845,Education,Education +436844,Education,Education +436843,Education,Education +436842,Education,Education +436841,Education,Education +429733,Education,Education +429732,Education,Education +429727,Education,Education +529054,Education,Education +436847,International Development,International Development +421982,International Development,International Development +436842,Research and Development,Research and Development +436841,Research and Development,Research and Development +421984,Research and Development,Research and Development +529054,Research and Development,Research and Development +522619,Research and Development,Research and Development +495607,Research and Development,Research and Development +487363,Research and Development,Research and Development +484441,Research and Development,Research and Development +436846,Research and Development,Research and Development +436845,Research and Development,Research and Development +436844,Research and Development,Research and Development +421958,Taxation and Finance,Taxation and Finance +421206,Taxation and Finance,Taxation and Finance +436812,Taxation and Finance,Taxation and Finance +426125,Taxation and Finance,Taxation and Finance +426118,Taxation and Finance,Taxation and Finance +426114,Taxation and Finance,Taxation and Finance +426109,Taxation and Finance,Taxation and Finance +426097,Taxation and Finance,Taxation and Finance +421946,Consumer Issues,Consumer Issues +427316,Government Procurement,Government Procurement +426127,Government Procurement,Government Procurement +427316,Health,Health +421956,Health,Health +421946,Justice and Law Enforcement,Justice and Law Enforcement +421956,Justice and Law Enforcement,Justice and Law Enforcement +421950,Justice and Law Enforcement,Justice and Law Enforcement +421949,Justice and Law Enforcement,Justice and Law Enforcement +421947,Security,Security +421946,Security,Security +421956,Security,Security +421950,Security,Security +421947,Taxation and Finance,Taxation and Finance +421946,Taxation and Finance,Taxation and Finance +426127,Taxation and Finance,Taxation and Finance +421956,Taxation and Finance,Taxation and Finance +421950,Taxation and Finance,Taxation and Finance +422790,Health,Health +427416,Health,Health +429720,Energy,Energy +418816,Research and Development,Research and Development +448464,Research and Development,Research and Development +429721,Research and Development,Research and Development +481863,Education,Education +476829,Education,Education +467862,Education,Education +467846,Education,Education +467671,Education,Education +467664,Education,Education +467652,Education,Education +454167,Education,Education +454166,Education,Education +454165,Education,Education +428699,Education,Education +418887,Education,Education +501757,Education,Education +501747,Education,Education +482078,Education,Education +481883,Education,Education +454166,Environment,Environment +454165,Environment,Environment +418887,Environment,Environment +467642,Environment,Environment +482078,International Relations,International Relations +481883,International Relations,International Relations +418887,International Relations,International Relations +419440,Industry,Industry +419439,Industry,Industry +419440,International Trade,International Trade +419439,International Trade,International Trade +427318,Budget,Budget +427317,Budget,Budget +427320,Budget,Budget +441427,Industry,Industry +420725,Industry,Industry +444468,Research and Development,Research and Development +441427,Research and Development,Research and Development +441427,Health,Health +420725,Health,Health +524308,Justice and Law Enforcement,Justice and Law Enforcement +502976,Justice and Law Enforcement,Justice and Law Enforcement +448704,Justice and Law Enforcement,Justice and Law Enforcement +443511,Justice and Law Enforcement,Justice and Law Enforcement +540956,Justice and Law Enforcement,Justice and Law Enforcement +537375,Justice and Law Enforcement,Justice and Law Enforcement +432880,Health,Health +429709,Health,Health +418978,International Trade,International Trade +418977,International Trade,International Trade +429755,Energy,Energy +429751,Energy,Energy +429750,Energy,Energy +424736,Energy,Energy +421738,Energy,Energy +418613,Economic Development,Economic Development +439740,Economic Development,Economic Development +439740,Small Business,Small Business +427426,Government Procurement,Government Procurement +517905,Health,Health +484749,Justice and Law Enforcement,Justice and Law Enforcement +496120,Regional Development,Regional Development +470694,Taxation and Finance,Taxation and Finance +419891,Internal Trade,Internal Trade +427336,Security,Security +418636,Health,Health +418641,Health,Health +420319,Economic Development,Economic Development +421535,Defence,Defence +418772,Energy,Energy +418771,Fisheries,Fisheries +421535,Research and Development,Research and Development +448530,Health,Health +418713,Industry,Industry +419160,Economic Development,Développement économique +419160,Industry,Industrie +420720,Industry,Industry +420720,Intellectual Property,Intellectual Property +421410,International Trade,International Trade +421410,Economic Development,Economic Development +423776,Sports,Sports +423776,Economic Development,Economic Development +423776,Tourism,Tourism +423789,Infrastructure,Infrastructure +423776,Budget,Budget +434132,Economic Development,Economic Development +434132,Internal Trade,Internal Trade +434132,Industry,Industry +431535,Intellectual Property,Intellectual Property +422825,Economic Development,Economic Development +422825,Employment and Training,Employment and Training +422825,Small Business,Small Business +445206,Health,Health +497545,Agriculture,Agriculture +442307,Regional Development,Regional Development +530238,Health,Health +419917,Health,Health +419917,Taxation and Finance,Taxation and Finance +420576,Employment and Training,Employment and Training +420576,Health,Health +418737,Consumer Issues,Consumer Issues +495607,Education,Education +436848,International Development,International Development +436843,Research and Development,Research and Development +421958,Consumer Issues,Consumer Issues +421958,Financial Institutions,Financial Institutions +426072,Taxation and Finance,Taxation and Finance +421956,Consumer Issues,Consumer Issues +427321,Government Procurement,Government Procurement +427321,Health,Health +421947,Justice and Law Enforcement,Justice and Law Enforcement +421949,Security,Security +421949,Taxation and Finance,Taxation and Finance +427177,Health,Health +448527,Health,Health +430137,Education,Education +430137,Research and Development,Research and Development +419882,Industry,Industry +429720,Climate,Climate +448464,Energy,Energy +429720,Research and Development,Research and Development +426294,Justice and Law Enforcement,Justice and Law Enforcement +481879,Education,Education +454167,Environment,Environment +418887,Official Languages,Official Languages +487434,International Relations,International Relations +418914,Environment,Environment +418914,Immigration,Immigration +418914,Taxation and Finance,Taxation and Finance +418914,Security,Security +419443,Industry,Industry +419443,International Trade,International Trade +427319,Budget,Budget +421953,Budget,Budget +440387,Taxation and Finance,Taxation and Finance +421963,Transportation,Transportation +444468,Industry,Industry +420725,Research and Development,Research and Development +441427,International Trade,International Trade +444468,Health,Health +524309,Justice and Law Enforcement,Justice and Law Enforcement +435042,Health,Health +418979,International Trade,International Trade +421737,Energy,Energy +422985,Taxation and Finance,Taxation and Finance +524266,Environment,Environment +440717,International Relations,International Relations +461521,Small Business,Small Business +432996,Budget,Budget +432995,Economic Development,Economic Development +420657,Employment and Training,Employment and Training +420657,Industry,Industry +432996,Infrastructure,Infrastructure +420657,Municipalities,Municipalities +432996,Regional Development,Regional Development +514402,Environment,Environment +419125,Economic Development,Economic Development +419125,Regional Development,Regional Development +419125,Agriculture,Agriculture +419158,Economic Development,Economic Development +419158,Regional Development,Regional Development +428824,Health,Health +541606,Environment,Environment +474963,Infrastructure,Infrastructure +490039,Regional Development,Regional Development +515247,Energy,Energy +446252,Transportation,Transportation +420882,Government Procurement,Government Procurement +420882,Industry,Industry +420882,Regional Development,Regional Development +429827,Government Procurement,Government Procurement +429827,Security,Security +419326,Health,Health +420405,Economic Development,Développement économique +420405,Regional Development,Développement régional +420405,Government Procurement,Marchés publics +444787,Health,Health +445717,Agriculture,Agriculture +428789,Energy,Energy +448555,Transportation,Transportation +443181,Health,Health +431564,Small Business,Small Business +420575,Government Procurement,Government Procurement +419556,Internal Trade,Internal Trade +419556,Economic Development,Economic Development +419606,Regional Development,Regional Development +457475,Infrastructure,Infrastructure +466007,Agriculture,Agriculture +466007,Health,Health +466007,International Trade,International Trade +419841,Constitutional Issues,Constitutional Issues +419816,Economic Development,Economic Development +419856,Industry,Industry +419816,Employment and Training,Employment and Training +419816,Internal Trade,Internal Trade +419816,Research and Development,Research and Development +466289,Health,Health +423742,Environment,Environment +420428,Health,Health +422776,Defence,Defence +422776,Government Procurement,Government Procurement +420425,Health,Health +420771,Health,Health +420032,Industry,Industry +419744,International Relations,International Relations +419753,International Trade,International Trade +419764,Security,Security +482202,Budget,Budget +419954,Small Business,Small Business +427707,Economic Development,Economic Development +419974,Agriculture,Agriculture +419978,Agriculture,Agriculture +419993,Budget,Budget +420478,Housing,Housing +434167,Municipalities,Municipalities +431983,Economic Development,Economic Development +431983,Industry,Industry +420061,International Trade,International Trade +435053,Budget,Budget +435053,Economic Development,Economic Development +437060,Employment and Training,Employment and Training +431743,Labour,Labour +420079,Defence,Defence +420079,Municipalities,Municipalities +444800,Pensions,Pensions +421738,Taxation and Finance,Taxation and Finance +421737,Taxation and Finance,Taxation and Finance +430614,Taxation and Finance,Taxation and Finance +430613,Taxation and Finance,Taxation and Finance +429755,Taxation and Finance,Taxation and Finance +429754,Taxation and Finance,Taxation and Finance +429753,Taxation and Finance,Taxation and Finance +429751,Taxation and Finance,Taxation and Finance +429750,Taxation and Finance,Taxation and Finance +427158,Taxation and Finance,Taxation and Finance +424739,Taxation and Finance,Taxation and Finance +424738,Taxation and Finance,Taxation and Finance +424737,Taxation and Finance,Taxation and Finance +424736,Taxation and Finance,Taxation and Finance +424734,Taxation and Finance,Taxation and Finance +524262,Environment,Environment +521937,Environment,Environment +461512,Small Business,Small Business +448838,Small Business,Small Business +446570,Small Business,Small Business +446568,Small Business,Small Business +444737,Small Business,Small Business +524267,Small Business,Small Business +519401,Small Business,Small Business +514984,Small Business,Small Business +514119,Small Business,Small Business +512029,Small Business,Small Business +486318,Small Business,Small Business +470478,Small Business,Small Business +420657,Economic Development,Economic Development +420656,Economic Development,Economic Development +432996,Economic Development,Economic Development +420656,Employment and Training,Employment and Training +420656,Industry,Industry +420657,Infrastructure,Infrastructure +420656,Infrastructure,Infrastructure +420657,Regional Development,Regional Development +420656,Regional Development,Regional Development +513852,Environment,Environment +513850,Environment,Environment +431738,Environment,Environment +431737,Environment,Environment +431736,Environment,Environment +511818,Environment,Environment +510208,Environment,Environment +509580,Environment,Environment +506800,Environment,Environment +506799,Environment,Environment +506457,Environment,Environment +506400,Environment,Environment +506375,Environment,Environment +506063,Environment,Environment +506062,Environment,Environment +503707,Environment,Environment +503410,Environment,Environment +503207,Environment,Environment +503206,Environment,Environment +501202,Environment,Environment +501198,Environment,Environment +499876,Environment,Environment +497407,Environment,Environment +496882,Environment,Environment +496836,Environment,Environment +493977,Environment,Environment +492370,Environment,Environment +492073,Environment,Environment +491223,Environment,Environment +489441,Environment,Environment +489440,Environment,Environment +489037,Environment,Environment +489036,Environment,Environment +488462,Environment,Environment +488420,Environment,Environment +488413,Environment,Environment +486035,Environment,Environment +485812,Environment,Environment +483308,Environment,Environment +482919,Environment,Environment +482723,Environment,Environment +481476,Environment,Environment +481371,Environment,Environment +481259,Environment,Environment +481254,Environment,Environment +481250,Environment,Environment +480658,Environment,Environment +478737,Environment,Environment +478644,Environment,Environment +478643,Environment,Environment +476578,Environment,Environment +476577,Environment,Environment +476153,Environment,Environment +473532,Environment,Environment +465392,Environment,Environment +432819,Environment,Environment +432818,Environment,Environment +431739,Environment,Environment +543177,Environment,Environment +542352,Environment,Environment +542350,Environment,Environment +540441,Environment,Environment +538816,Environment,Environment +538662,Environment,Environment +536576,Environment,Environment +533303,Environment,Environment +532863,Environment,Environment +532598,Environment,Environment +524999,Environment,Environment +524988,Environment,Environment +523760,Environment,Environment +523697,Environment,Environment +523696,Environment,Environment +519136,Environment,Environment +516648,Environment,Environment +516066,Environment,Environment +514904,Environment,Environment +419122,Economic Development,Economic Development +419121,Economic Development,Economic Development +423916,Economic Development,Economic Development +419127,Economic Development,Economic Development +419122,Regional Development,Regional Development +419121,Regional Development,Regional Development +419127,Regional Development,Regional Development +424364,Health,Health +541604,Environment,Environment +541603,Environment,Environment +437872,Environment,Environment +437865,Environment,Environment +435887,Environment,Environment +435878,Environment,Environment +435872,Environment,Environment +435868,Environment,Environment +435865,Environment,Environment +435861,Environment,Environment +435850,Environment,Environment +433425,Environment,Environment +432406,Environment,Environment +429553,Environment,Environment +429552,Environment,Environment +423299,Environment,Environment +541602,Environment,Environment +541601,Environment,Environment +541600,Environment,Environment +541599,Environment,Environment +541598,Environment,Environment +541596,Environment,Environment +541595,Environment,Environment +541593,Environment,Environment +541591,Environment,Environment +541590,Environment,Environment +541588,Environment,Environment +541585,Environment,Environment +536751,Environment,Environment +530738,Environment,Environment +515248,Environment,Environment +515247,Environment,Environment +515246,Environment,Environment +500689,Environment,Environment +490039,Environment,Environment +486787,Environment,Environment +484319,Environment,Environment +481705,Environment,Environment +481704,Environment,Environment +479109,Environment,Environment +476999,Environment,Environment +474963,Environment,Environment +473335,Environment,Environment +473331,Environment,Environment +470899,Environment,Environment +470897,Environment,Environment +468013,Environment,Environment +468012,Environment,Environment +468011,Environment,Environment +468010,Environment,Environment +468009,Environment,Environment +464773,Environment,Environment +464768,Environment,Environment +464767,Environment,Environment +464766,Environment,Environment +464765,Environment,Environment +459647,Environment,Environment +459645,Environment,Environment +459644,Environment,Environment +459641,Environment,Environment +458654,Environment,Environment +458652,Environment,Environment +458651,Environment,Environment +456962,Environment,Environment +456961,Environment,Environment +456960,Environment,Environment +454649,Environment,Environment +454648,Environment,Environment +454644,Environment,Environment +451493,Environment,Environment +451491,Environment,Environment +451490,Environment,Environment +451489,Environment,Environment +451487,Environment,Environment +445350,Environment,Environment +445348,Environment,Environment +445344,Environment,Environment +445343,Environment,Environment +443507,Environment,Environment +443505,Environment,Environment +443504,Environment,Environment +443503,Environment,Environment +443502,Environment,Environment +443500,Environment,Environment +443499,Environment,Environment +441481,Environment,Environment +441480,Environment,Environment +437884,Environment,Environment +437883,Environment,Environment +544368,Environment,Environment +544364,Environment,Environment +541636,Environment,Environment +541634,Environment,Environment +541632,Environment,Environment +541628,Environment,Environment +541626,Environment,Environment +541620,Environment,Environment +541618,Environment,Environment +541617,Environment,Environment +541616,Environment,Environment +541614,Environment,Environment +541613,Environment,Environment +541611,Environment,Environment +541610,Environment,Environment +473335,Infrastructure,Infrastructure +473331,Infrastructure,Infrastructure +470897,Infrastructure,Infrastructure +468013,Infrastructure,Infrastructure +468012,Infrastructure,Infrastructure +468011,Infrastructure,Infrastructure +468010,Infrastructure,Infrastructure +468009,Infrastructure,Infrastructure +464773,Infrastructure,Infrastructure +464768,Infrastructure,Infrastructure +464767,Infrastructure,Infrastructure +464766,Infrastructure,Infrastructure +464765,Infrastructure,Infrastructure +462668,Infrastructure,Infrastructure +459647,Infrastructure,Infrastructure +459645,Infrastructure,Infrastructure +459644,Infrastructure,Infrastructure +459641,Infrastructure,Infrastructure +458654,Infrastructure,Infrastructure +458653,Infrastructure,Infrastructure +458652,Infrastructure,Infrastructure +458651,Infrastructure,Infrastructure +458650,Infrastructure,Infrastructure +456962,Infrastructure,Infrastructure +456961,Infrastructure,Infrastructure +456960,Infrastructure,Infrastructure +454649,Infrastructure,Infrastructure +454648,Infrastructure,Infrastructure +454644,Infrastructure,Infrastructure +454642,Infrastructure,Infrastructure +451493,Infrastructure,Infrastructure +451491,Infrastructure,Infrastructure +451490,Infrastructure,Infrastructure +451489,Infrastructure,Infrastructure +451487,Infrastructure,Infrastructure +445350,Infrastructure,Infrastructure +445348,Infrastructure,Infrastructure +445344,Infrastructure,Infrastructure +445343,Infrastructure,Infrastructure +443507,Infrastructure,Infrastructure +443505,Infrastructure,Infrastructure +443504,Infrastructure,Infrastructure +443503,Infrastructure,Infrastructure +443502,Infrastructure,Infrastructure +443501,Infrastructure,Infrastructure +443500,Infrastructure,Infrastructure +443499,Infrastructure,Infrastructure +441481,Infrastructure,Infrastructure +441480,Infrastructure,Infrastructure +437884,Infrastructure,Infrastructure +437883,Infrastructure,Infrastructure +437872,Infrastructure,Infrastructure +437865,Infrastructure,Infrastructure +437864,Infrastructure,Infrastructure +435887,Infrastructure,Infrastructure +435878,Infrastructure,Infrastructure +435872,Infrastructure,Infrastructure +435868,Infrastructure,Infrastructure +435865,Infrastructure,Infrastructure +435861,Infrastructure,Infrastructure +435850,Infrastructure,Infrastructure +433425,Infrastructure,Infrastructure +432406,Infrastructure,Infrastructure +429553,Infrastructure,Infrastructure +423299,Infrastructure,Infrastructure +421299,Infrastructure,Infrastructure +421298,Infrastructure,Infrastructure +544368,Infrastructure,Infrastructure +544364,Infrastructure,Infrastructure +541636,Infrastructure,Infrastructure +541634,Infrastructure,Infrastructure +541632,Infrastructure,Infrastructure +541628,Infrastructure,Infrastructure +541626,Infrastructure,Infrastructure +541620,Infrastructure,Infrastructure +541618,Infrastructure,Infrastructure +541617,Infrastructure,Infrastructure +541616,Infrastructure,Infrastructure +541614,Infrastructure,Infrastructure +541613,Infrastructure,Infrastructure +541611,Infrastructure,Infrastructure +541610,Infrastructure,Infrastructure +541606,Infrastructure,Infrastructure +541604,Infrastructure,Infrastructure +541603,Infrastructure,Infrastructure +541602,Infrastructure,Infrastructure +541601,Infrastructure,Infrastructure +541600,Infrastructure,Infrastructure +541599,Infrastructure,Infrastructure +541598,Infrastructure,Infrastructure +541596,Infrastructure,Infrastructure +541595,Infrastructure,Infrastructure +541593,Infrastructure,Infrastructure +541591,Infrastructure,Infrastructure +541590,Infrastructure,Infrastructure +541589,Infrastructure,Infrastructure +541581,Infrastructure,Infrastructure +541577,Infrastructure,Infrastructure +536751,Infrastructure,Infrastructure +530738,Infrastructure,Infrastructure +525242,Infrastructure,Infrastructure +515248,Infrastructure,Infrastructure +515247,Infrastructure,Infrastructure +515246,Infrastructure,Infrastructure +510194,Infrastructure,Infrastructure +500689,Infrastructure,Infrastructure +490040,Infrastructure,Infrastructure +490039,Infrastructure,Infrastructure +486787,Infrastructure,Infrastructure +484319,Infrastructure,Infrastructure +481705,Infrastructure,Infrastructure +481704,Infrastructure,Infrastructure +479109,Infrastructure,Infrastructure +476999,Infrastructure,Infrastructure +468013,Regional Development,Regional Development +468011,Regional Development,Regional Development +468009,Regional Development,Regional Development +464773,Regional Development,Regional Development +464767,Regional Development,Regional Development +464766,Regional Development,Regional Development +459647,Regional Development,Regional Development +459645,Regional Development,Regional Development +459644,Regional Development,Regional Development +459641,Regional Development,Regional Development +458651,Regional Development,Regional Development +456962,Regional Development,Regional Development +454642,Regional Development,Regional Development +451493,Regional Development,Regional Development +451491,Regional Development,Regional Development +451490,Regional Development,Regional Development +451489,Regional Development,Regional Development +451487,Regional Development,Regional Development +445350,Regional Development,Regional Development +445344,Regional Development,Regional Development +443503,Regional Development,Regional Development +437864,Regional Development,Regional Development +435878,Regional Development,Regional Development +435872,Regional Development,Regional Development +515246,Energy,Energy +510194,Energy,Energy +437884,Energy,Energy +437883,Energy,Energy +437872,Energy,Energy +437865,Energy,Energy +437864,Energy,Energy +435887,Energy,Energy +435878,Energy,Energy +435872,Energy,Energy +435868,Energy,Energy +435865,Energy,Energy +435861,Energy,Energy +435850,Energy,Energy +433425,Energy,Energy +432406,Energy,Energy +429553,Energy,Energy +429552,Energy,Energy +423299,Energy,Energy +421300,Energy,Energy +421299,Energy,Energy +421298,Energy,Energy +419422,Energy,Energy +500689,Energy,Energy +490040,Energy,Energy +490039,Energy,Energy +486787,Energy,Energy +484319,Energy,Energy +481705,Energy,Energy +481704,Energy,Energy +479109,Energy,Energy +476999,Energy,Energy +474963,Energy,Energy +473335,Energy,Energy +473331,Energy,Energy +470899,Energy,Energy +470897,Energy,Energy +468013,Energy,Energy +468012,Energy,Energy +468011,Energy,Energy +468010,Energy,Energy +468009,Energy,Energy +464773,Energy,Energy +464768,Energy,Energy +464767,Energy,Energy +464766,Energy,Energy +464765,Energy,Energy +462668,Energy,Energy +459647,Energy,Energy +459645,Energy,Energy +459644,Energy,Energy +459641,Energy,Energy +458654,Energy,Energy +458653,Energy,Energy +458652,Energy,Energy +458651,Energy,Energy +458650,Energy,Energy +456962,Energy,Energy +456961,Energy,Energy +456960,Energy,Energy +454649,Energy,Energy +454648,Energy,Energy +454644,Energy,Energy +454642,Energy,Energy +451493,Energy,Energy +451491,Energy,Energy +451490,Energy,Energy +451489,Energy,Energy +451487,Energy,Energy +445350,Energy,Energy +445348,Energy,Energy +445344,Energy,Energy +445343,Energy,Energy +443507,Energy,Energy +443505,Energy,Energy +443504,Energy,Energy +443503,Energy,Energy +443502,Energy,Energy +443501,Energy,Energy +443500,Energy,Energy +443499,Energy,Energy +441481,Energy,Energy +441480,Energy,Energy +544368,Energy,Energy +544364,Energy,Energy +541636,Energy,Energy +541634,Energy,Energy +541632,Energy,Energy +541628,Energy,Energy +541626,Energy,Energy +541620,Energy,Energy +541618,Energy,Energy +541617,Energy,Energy +541616,Energy,Energy +541614,Energy,Energy +541613,Energy,Energy +541611,Energy,Energy +541610,Energy,Energy +541606,Energy,Energy +541604,Energy,Energy +541603,Energy,Energy +541602,Energy,Energy +541601,Energy,Energy +541600,Energy,Energy +541599,Energy,Energy +541598,Energy,Energy +541596,Energy,Energy +541595,Energy,Energy +541593,Energy,Energy +541591,Energy,Energy +541590,Energy,Energy +541589,Energy,Energy +541588,Energy,Energy +541585,Energy,Energy +541583,Energy,Energy +541581,Energy,Energy +541578,Energy,Energy +536751,Energy,Energy +530738,Energy,Energy +525242,Energy,Energy +515248,Energy,Energy +437603,Transportation,Transportation +434979,Transportation,Transportation +462887,Transportation,Transportation +457801,Transportation,Transportation +446255,Transportation,Transportation +446254,Transportation,Transportation +446253,Transportation,Transportation +445715,Agriculture,Agriculture +445711,Agriculture,Agriculture +428053,Energy,Energy +424923,Energy,Energy +428806,Energy,Energy +428802,Energy,Energy +428800,Energy,Energy +428797,Energy,Energy +428791,Energy,Energy +448513,Transportation,Transportation +448510,Transportation,Transportation +448656,Transportation,Transportation +431564,Health,Health +431557,Health,Health +431557,Small Business,Small Business +443181,Small Business,Small Business +445191,Health,Health +444687,Health,Health +419681,Health,Health +419680,Health,Health +419679,Health,Health +419678,Health,Health +419677,Health,Health +419676,Health,Health +459010,International Trade,International Trade +445191,International Trade,International Trade +419681,International Trade,International Trade +419680,International Trade,International Trade +419679,International Trade,International Trade +419678,International Trade,International Trade +419677,International Trade,International Trade +419676,International Trade,International Trade +419816,Constitutional Issues,Constitutional Issues +419674,Constitutional Issues,Constitutional Issues +419674,Economic Development,Economic Development +517053,Economic Development,Economic Development +419841,Economic Development,Economic Development +419816,Industry,Industry +419674,Industry,Industry +530736,Industry,Industry +530735,Industry,Industry +470716,Industry,Industry +419674,Employment and Training,Employment and Training +419674,Internal Trade,Internal Trade +419674,Research and Development,Research and Development +419683,Health,Health +419682,Health,Health +422494,Environment,Environment +479271,Environment,Environment +459716,Environment,Environment +459715,Environment,Environment +449866,Environment,Environment +422563,Defence,Defence +422563,Government Procurement,Government Procurement +420028,Industry,Industry +420025,Industry,Industry +457628,International Relations,International Relations +457625,International Relations,International Relations +439378,International Relations,International Relations +424240,International Relations,International Relations +419777,International Relations,International Relations +419761,International Relations,International Relations +419759,International Relations,International Relations +419758,International Relations,International Relations +419757,International Relations,International Relations +419754,International Relations,International Relations +419750,International Relations,International Relations +482201,Budget,Budget +482200,Budget,Budget +466239,Budget,Budget +466238,Budget,Budget +466237,Budget,Budget +466235,Budget,Budget +466234,Budget,Budget +466233,Budget,Budget +466231,Budget,Budget +466230,Budget,Budget +466228,Budget,Budget +466227,Budget,Budget +466223,Budget,Budget +466222,Budget,Budget +466220,Budget,Budget +464872,Budget,Budget +464868,Budget,Budget +464858,Budget,Budget +461147,Budget,Budget +451074,Budget,Budget +444382,Budget,Budget +444235,Budget,Budget +443166,Budget,Budget +436743,Budget,Budget +434568,Budget,Budget +434567,Budget,Budget +434084,Budget,Budget +432923,Budget,Budget +430186,Budget,Budget +421869,Budget,Budget +421866,Budget,Budget +419775,Budget,Budget +502360,Budget,Budget +502358,Budget,Budget +502357,Budget,Budget +502353,Budget,Budget +502349,Budget,Budget +502347,Budget,Budget +502344,Budget,Budget +502339,Budget,Budget +502303,Budget,Budget +502298,Budget,Budget +502291,Budget,Budget +498921,Budget,Budget +498920,Budget,Budget +498903,Budget,Budget +498889,Budget,Budget +498884,Budget,Budget +491183,Budget,Budget +491163,Budget,Budget +491075,Budget,Budget +491072,Budget,Budget +491034,Budget,Budget +487130,Budget,Budget +482204,Budget,Budget +427706,Economic Development,Economic Development +427703,Economic Development,Economic Development +427708,Economic Development,Economic Development +419991,Budget,Budget +419983,Budget,Budget +425323,Budget,Budget +459334,Housing,Housing +453758,Housing,Housing +434167,Housing,Housing +429777,Housing,Housing +425202,Housing,Housing +421578,Housing,Housing +429777,Municipalities,Municipalities +540804,International Trade,International Trade +431743,Budget,Budget +422531,Budget,Budget +437060,Budget,Budget +422532,Economic Development,Economic Development +422531,Economic Development,Economic Development +437060,Economic Development,Economic Development +435053,Employment and Training,Employment and Training +431743,Employment and Training,Employment and Training +422532,Employment and Training,Employment and Training +422531,Employment and Training,Employment and Training +422532,Labour,Labour +422531,Labour,Labour +437060,Labour,Labour +435053,Labour,Labour +449963,Budget,Budget +420080,Budget,Budget +464565,Budget,Budget +464542,Budget,Budget +464539,Budget,Budget +464533,Budget,Budget +464530,Budget,Budget +464528,Budget,Budget +464524,Budget,Budget +464505,Budget,Budget +464485,Budget,Budget +464038,Budget,Budget +449963,Climate,Climate +420080,Climate,Climate +449970,Climate,Climate +420140,International Trade,International Trade +422362,Consumer Issues,Consumer Issues +420140,Consumer Issues,Consumer Issues +422375,Consumer Issues,Consumer Issues +422362,International Trade,International Trade +420154,International Trade,International Trade +422375,International Trade,International Trade +422369,International Trade,International Trade +422368,International Trade,International Trade +422367,International Trade,International Trade +422368,Consumer Issues,Consumer Issues +422367,Consumer Issues,Consumer Issues +422366,Consumer Issues,Consumer Issues +420154,Consumer Issues,Consumer Issues +422370,International Trade,International Trade +420155,International Trade,International Trade +422370,Consumer Issues,Consumer Issues +420155,Consumer Issues,Consumer Issues +420322,Consumer Issues,Consumer Issues +420321,Consumer Issues,Consumer Issues +434472,Consumer Issues,Consumer Issues +420321,Economic Development,Economic Development +420323,Economic Development,Economic Development +431791,Defence,Defence +459574,Health,Santé +453949,Health,Santé +530049,Health,Santé +524949,Health,Santé +515295,Health,Santé +494964,Health,Santé +434204,Research and Development,Recherche et développement +440367,Health,Health +440366,Health,Health +423035,Health,Health +420429,Health,Health +420440,Health,Health +439721,Health,Health +439719,Health,Health +429573,Health,Health +429571,Health,Health +431316,Defence,Defence +423847,Defence,Defence +431341,Defence,Defence +431339,Defence,Defence +431325,Defence,Defence +431323,Defence,Defence +448735,Justice and Law Enforcement,Justice and Law Enforcement +448733,Justice and Law Enforcement,Justice and Law Enforcement +431341,Justice and Law Enforcement,Justice and Law Enforcement +431339,Justice and Law Enforcement,Justice and Law Enforcement +431327,Justice and Law Enforcement,Justice and Law Enforcement +431325,Justice and Law Enforcement,Justice and Law Enforcement +431324,Justice and Law Enforcement,Justice and Law Enforcement +431323,Justice and Law Enforcement,Justice and Law Enforcement +431321,Justice and Law Enforcement,Justice and Law Enforcement +431316,Justice and Law Enforcement,Justice and Law Enforcement +426351,Justice and Law Enforcement,Justice and Law Enforcement +423847,Justice and Law Enforcement,Justice and Law Enforcement +452444,Justice and Law Enforcement,Justice and Law Enforcement +431316,Security,Security +423847,Security,Security +452444,Security,Security +452442,Security,Security +431341,Security,Security +431339,Security,Security +431332,Security,Security +431327,Security,Security +431325,Security,Security +431323,Security,Security +439781,International Trade,International Trade +439780,International Trade,International Trade +452182,International Trade,International Trade +452130,International Trade,International Trade +449328,International Trade,International Trade +448760,International Trade,International Trade +448446,International Trade,International Trade +439797,International Trade,International Trade +439795,International Trade,International Trade +439793,International Trade,International Trade +439792,International Trade,International Trade +439791,International Trade,International Trade +439790,International Trade,International Trade +439781,Industry,Industry +439780,Industry,Industry +477972,Industry,Industry +476156,Industry,Industry +452181,Industry,Industry +452130,Industry,Industry +448760,Industry,Industry +448446,Industry,Industry +439797,Industry,Industry +439795,Industry,Industry +439793,Industry,Industry +439792,Industry,Industry +439791,Industry,Industry +439790,Industry,Industry +439781,Environment,Environment +439780,Environment,Environment +439795,Environment,Environment +439793,Environment,Environment +439792,Environment,Environment +439791,Environment,Environment +452181,Regional Development,Regional Development +476156,Regional Development,Regional Development +449328,Regional Development,Regional Development +448446,Regional Development,Regional Development +439795,Regional Development,Regional Development +439793,Regional Development,Regional Development +439791,Regional Development,Regional Development +439790,Regional Development,Regional Development +439781,Research and Development,Research and Development +439780,Research and Development,Research and Development +452181,Research and Development,Research and Development +449328,Research and Development,Research and Development +439795,Research and Development,Research and Development +439793,Research and Development,Research and Development +439790,Research and Development,Research and Development +439782,Climate,Climate +439780,Climate,Climate +439793,Climate,Climate +439792,Climate,Climate +439791,Climate,Climate +439780,Economic Development,Economic Development +476156,Economic Development,Economic Development +452181,Economic Development,Economic Development +449328,Economic Development,Economic Development +439793,Economic Development,Economic Development +439792,Economic Development,Economic Development +439790,Economic Development,Economic Development +439793,Energy,Energy +439781,Energy,Energy +449061,Small Business,Small Business +432038,Small Business,Small Business +421162,Economic Development,Economic Development +421161,Economic Development,Economic Development +431506,Economic Development,Economic Development +431505,Economic Development,Economic Development +431504,Economic Development,Economic Development +431503,Economic Development,Economic Development +424878,Economic Development,Economic Development +424877,Economic Development,Economic Development +424872,Economic Development,Economic Development +424871,Economic Development,Economic Development +424870,Economic Development,Economic Development +424868,Economic Development,Economic Development +421177,Economic Development,Economic Development +421164,Economic Development,Economic Development +421162,Energy,Energy +421161,Energy,Energy +431506,Energy,Energy +431505,Energy,Energy +431504,Energy,Energy +431503,Energy,Energy +424878,Energy,Energy +424877,Energy,Energy +424872,Energy,Energy +424871,Energy,Energy +424870,Energy,Energy +424868,Energy,Energy +421177,Energy,Energy +421164,Energy,Energy +424870,Infrastructure,Infrastructure +424868,Infrastructure,Infrastructure +421177,Infrastructure,Infrastructure +421164,Infrastructure,Infrastructure +421163,Infrastructure,Infrastructure +421162,Infrastructure,Infrastructure +421161,Infrastructure,Infrastructure +431506,Infrastructure,Infrastructure +431505,Infrastructure,Infrastructure +431504,Infrastructure,Infrastructure +431503,Infrastructure,Infrastructure +424878,Infrastructure,Infrastructure +424877,Infrastructure,Infrastructure +424872,Infrastructure,Infrastructure +461296,Climate,Climate +447160,Climate,Climate +494290,Climate,Climate +488803,Climate,Climate +488802,Climate,Climate +488795,Climate,Climate +479265,Climate,Climate +448848,Regional Development,Regional Development +475655,Regional Development,Regional Development +462334,Regional Development,Regional Development +448849,Transportation,Transportation +448848,Transportation,Transportation +446176,Infrastructure,Infrastructure +446175,Infrastructure,Infrastructure +440622,Infrastructure,Infrastructure +485760,Infrastructure,Infrastructure +476803,Infrastructure,Infrastructure +459174,Infrastructure,Infrastructure +448849,Infrastructure,Infrastructure +521279,Environment,Environment +521278,Environment,Environment +420520,Environment,Environment +429885,Transportation,Transportation +422731,Transportation,Transportation +431701,Transportation,Transportation +431395,Transportation,Transportation +495863,Defence,Defence +495860,Defence,Defence +495860,Industry,Industry +433966,Industry,Industry +422376,International Trade,International Trade +422374,International Trade,International Trade +424294,International Trade,International Trade +424293,International Trade,International Trade +424292,International Trade,International Trade +424291,International Trade,International Trade +424290,International Trade,International Trade +422381,International Trade,International Trade +422380,International Trade,International Trade +422379,International Trade,International Trade +420703,Budget,Budget +420628,Budget,Budget +497498,Budget,Budget +495163,Budget,Budget +467120,Budget,Budget +467116,Budget,Budget +467107,Budget,Budget +467104,Budget,Budget +467101,Budget,Budget +467099,Budget,Budget +467097,Budget,Budget +467095,Budget,Budget +467093,Budget,Budget +467082,Budget,Budget +467078,Budget,Budget +467075,Budget,Budget +467073,Budget,Budget +467065,Budget,Budget +467061,Budget,Budget +467058,Budget,Budget +467056,Budget,Budget +467054,Budget,Budget +464185,Budget,Budget +464184,Budget,Budget +454149,Budget,Budget +454146,Budget,Budget +454145,Budget,Budget +475831,Transportation,Transportation +449967,Budget,Budget +449967,Climate,Climate +420080,Immigration,Immigration +422373,International Trade,International Trade +422369,Consumer Issues,Consumer Issues +422366,International Trade,International Trade +422371,Consumer Issues,Consumer Issues +422371,International Trade,International Trade +422373,Consumer Issues,Consumer Issues +420323,Consumer Issues,Consumer Issues +420322,Economic Development,Economic Development +455876,Defence,Defence +459575,Health,Santé +453964,Security,Sécurité +434205,Research and Development,Recherche et développement +420338,Health,Health +420341,Health,Health +420414,Health,Health +420340,Health,Health +420339,Health,Health +427496,Agriculture,Agriculture +420346,Agriculture,Agriculture +420348,Agriculture,Agriculture +420349,Agriculture,Agriculture +441699,Health,Health +453949,Justice and Law Enforcement,Justice et application des lois +420426,Health,Health +423036,Health,Health +542076,Economic Development,Economic Development +542076,International Trade,International Trade +542076,Regional Development,Regional Development +542076,Industry,Industry +542076,Climate,Climate +542076,Energy,Energy +542076,Environment,Environment +420574,Health,Health +431321,Defence,Defence +452442,Justice and Law Enforcement,Justice and Law Enforcement +431321,Security,Security +452095,Economic Development,Economic Development +439782,International Trade,International Trade +439782,Industry,Industry +439790,Environment,Environment +439781,Regional Development,Regional Development +439782,Research and Development,Research and Development +439790,Climate,Climate +439781,Economic Development,Economic Development +439797,Energy,Energy +420452,Intellectual Property,Intellectual Property +420453,Intellectual Property,Intellectual Property +420453,Internal Trade,Internal Trade +420459,Agriculture,Agriculture +420460,Research and Development,Research and Development +450708,Small Business,Small Business +432038,Consumer Issues,Consumer Issues +449061,Industry,Industry +420566,Industry,Industry +421163,Economic Development,Economic Development +421163,Energy,Energy +424871,Infrastructure,Infrastructure +423601,Agriculture,Agriculture +423601,Small Business,Small Business +423601,Taxation and Finance,Taxation and Finance +466452,Climate,Climate +421444,Government Procurement,Government Procurement +420470,International Trade,International Trade +420471,International Trade,International Trade +448849,Regional Development,Regional Development +475655,Transportation,Transportation +448848,Infrastructure,Infrastructure +420519,Environment,Environment +540903,Environment,Environment +421683,Environment,Environment +430076,Transportation,Transportation +421224,Government Procurement,Government Procurement +421421,Infrastructure,Infrastructure +421421,Energy,Energy +421421,Economic Development,Economic Development +433966,Defence,Defence +495863,Industry,Industry +420843,Industry,Industrie +422377,International Trade,International Trade +422506,Infrastructure,Infrastructure +422506,Industry,Industry +422506,Taxation and Finance,Taxation and Finance +422506,Transportation,Transportation +422506,Economic Development,Economic Development +422506,International Trade,International Trade +420704,Budget,Budget +426004,Industry,Industry +480152,Economic Development,Economic Development +435478,Government Procurement,Government Procurement +427303,Economic Development,Economic Development +424744,Education,Education +422801,Health,Health +445752,Agriculture,Agriculture +450327,Budget,Budget +447746,Environment,Environment +435828,Health,Health +450324,Internal Trade,Internal Trade +425052,Economic Development,Economic Development +425052,Research and Development,Research and Development +512968,Industry,Industry +468653,Internal Trade,Internal Trade +512998,Regional Development,Regional Development +431374,Health,Health +442523,Justice and Law Enforcement,Justice and Law Enforcement +442523,Consumer Issues,Consumer Issues +442523,Research and Development,Research and Development +442523,Health,Health +462900,Transportation,Transportation +435560,Immigration,Immigration +442915,Industry,Industrie +428010,Economic Development,Economic Development +428010,Industry,Industry +428010,International Trade,International Trade +428010,Employment and Training,Employment and Training +428010,International Relations,International Relations +420774,Climate,Climate +420774,Energy,Energy +420774,Environment,Environment +420774,Government Procurement,Government Procurement +420774,Industry,Industry +420774,Infrastructure,Infrastructure +445786,Industry,Industry +433961,International Trade,International Trade +445786,Economic Development,Economic Development +422773,Taxation and Finance,Taxation and Finance +421572,Energy,Energy +432867,Regional Development,Regional Development +420834,Infrastructure,Infrastructure +420839,International Relations,International Relations +420839,International Trade,International Trade +457247,Economic Development,Economic Development +421236,Environment,Environment +421432,Energy,Energy +421236,Industry,Industry +421086,Industry,Industry +421086,Employment and Training,Employment and Training +421086,Taxation and Finance,Taxation and Finance +421086,Internal Trade,Internal Trade +421086,Regional Development,Regional Development +421086,Budget,Budget +421086,Small Business,Small Business +421086,Transportation,Transportation +421086,Consumer Issues,Consumer Issues +421086,Environment,Environment +421086,Fisheries,Fisheries +421086,International Trade,International Trade +424780,Security,Security +437854,Internal Trade,Commerce intérieur +463094,International Trade,Commerce international +463094,Economic Development,Développement économique +463094,Transportation,Transports +461944,Industry,Industry +462496,Taxation and Finance,Taxation and Finance +422656,International Trade,Commerce international +431830,Economic Development,Développement économique +456533,Employment and Training,Emploi et formation +456533,Industry,Industrie +456533,Transportation,Transports +420927,International Trade,International Trade +420928,Health,Health +423130,Research and Development,Recherche et développement +422779,Transportation,Transportation +422779,Health,Health +421356,Transportation,Transportation +489139,Employment and Training,Employment and Training +420975,Taxation and Finance,Taxation and Finance +421017,International Relations,International Relations +421051,Economic Development,Economic Development +455030,Health,Health +425984,Economic Development,Développement économique +454652,Education,Éducation +437129,Employment and Training,Emploi et formation +479237,Research and Development,Recherche et développement +421115,Budget,Budget +421141,Research and Development,Research and Development +444556,Education,Education +444556,Health,Health +422862,Health,Health +466524,Agriculture,Agriculture +434799,Agriculture,Agriculture +483157,Economic Development,Economic Development +494339,Health,Health +440812,Small Business,Small Business +422707,Climate,Climate +427268,Environment,Environment +427268,Transportation,Transportation +422949,Industry,Industry +421213,Small Business,Small Business +421263,Environment,Environment +421261,Environment,Environment +421262,Environment,Environment +422642,Energy,Energy +422642,Environment,Environment +422642,Industry,Industry +444180,Environment,Environment +430040,Energy,Energy +423053,Economic Development,Economic Development +423053,Energy,Energy +423053,Environment,Environment +421356,Government Procurement,Government Procurement +431015,Health,Health +431015,Labour,Labour +455590,Government Procurement,Government Procurement +427230,Transportation,Transportation +423000,Infrastructure,Infrastructure +428694,Infrastructure,Infrastructure +421460,Research and Development,Research and Development +480402,International Trade,International Trade +480401,Agriculture,Agriculture +466028,Research and Development,Research and Development +442250,International Development,International Development +466026,Research and Development,Research and Development +422038,Industry,Industry +422037,Mining,Mining +422035,Regional Development,Regional Development +423624,Mining,Mines +425269,Transportation,Transports +421788,Taxation and Finance,Impôts et finances +433141,Privacy and Access to Information,Privacy and Access to Information +425169,Climate,Climate +425169,Economic Development,Economic Development +425169,Environment,Environment +425169,Municipalities,Municipalities +425167,Transportation,Transportation +454144,Budget,Budget +454143,Budget,Budget +452022,Budget,Budget +452021,Budget,Budget +448051,Budget,Budget +448044,Budget,Budget +448040,Budget,Budget +448037,Budget,Budget +448032,Budget,Budget +448029,Budget,Budget +448023,Budget,Budget +448021,Budget,Budget +448018,Budget,Budget +448016,Budget,Budget +448015,Budget,Budget +445629,Budget,Budget +445628,Budget,Budget +445625,Budget,Budget +445623,Budget,Budget +443588,Budget,Budget +441797,Budget,Budget +441792,Budget,Budget +440440,Budget,Budget +440437,Budget,Budget +440435,Budget,Budget +440430,Budget,Budget +438693,Budget,Budget +438298,Budget,Budget +427909,Budget,Budget +427907,Budget,Budget +427905,Budget,Budget +427904,Budget,Budget +427903,Budget,Budget +427902,Budget,Budget +427901,Budget,Budget +425193,Budget,Budget +425191,Budget,Budget +425190,Budget,Budget +423199,Budget,Budget +423157,Budget,Budget +423156,Budget,Budget +423155,Budget,Budget +423154,Budget,Budget +420708,Budget,Budget +420707,Budget,Budget +420706,Budget,Budget +420705,Budget,Budget +426003,Industry,Industry +480151,Economic Development,Economic Development +480150,Economic Development,Economic Development +424369,Government Procurement,Government Procurement +424368,Government Procurement,Government Procurement +424744,Economic Development,Economic Development +514930,Economic Development,Economic Development +437390,Economic Development,Economic Development +427306,Economic Development,Economic Development +427304,Economic Development,Economic Development +516175,Education,Education +505992,Education,Education +455699,Education,Education +427306,Education,Education +427303,Education,Education +427302,Education,Education +422799,Health,Health +422798,Health,Health +491756,Agriculture,Agriculture +491752,Agriculture,Agriculture +485355,Agriculture,Agriculture +485346,Agriculture,Agriculture +485345,Agriculture,Agriculture +485344,Agriculture,Agriculture +485342,Agriculture,Agriculture +480338,Agriculture,Agriculture +480337,Agriculture,Agriculture +478221,Agriculture,Agriculture +478220,Agriculture,Agriculture +478212,Agriculture,Agriculture +478211,Agriculture,Agriculture +475293,Agriculture,Agriculture +475292,Agriculture,Agriculture +475290,Agriculture,Agriculture +475289,Agriculture,Agriculture +475287,Agriculture,Agriculture +475286,Agriculture,Agriculture +465053,Agriculture,Agriculture +450331,Agriculture,Agriculture +450322,Agriculture,Agriculture +447748,Agriculture,Agriculture +500244,Industry,Industry +495691,Industry,Industry +468653,Industry,Industry +468652,Industry,Industry +467388,Industry,Industry +467340,Industry,Industry +467331,Industry,Industry +440939,Industry,Industry +437425,Industry,Industry +435413,Industry,Industry +430155,Industry,Industry +429868,Industry,Industry +429611,Industry,Industry +513676,Industry,Industry +513513,Industry,Industry +513006,Industry,Industry +513002,Industry,Industry +512998,Industry,Industry +468652,Internal Trade,Internal Trade +437425,Internal Trade,Internal Trade +513006,Internal Trade,Internal Trade +512998,Internal Trade,Internal Trade +512968,Internal Trade,Internal Trade +500244,Internal Trade,Internal Trade +512968,Regional Development,Regional Development +437425,Regional Development,Regional Development +513513,Regional Development,Regional Development +513006,Regional Development,Regional Development +446457,Transportation,Transportation +435560,Transportation,Transportation +442909,Industry,Industrie +421053,Industry,Industrie +451380,Industry,Industrie +449415,Industry,Industrie +449414,Industry,Industrie +445207,Industry,Industrie +444458,Industry,Industrie +438855,Industry,Industry +472180,Industry,Industry +422604,Taxation and Finance,Taxation and Finance +422590,Taxation and Finance,Taxation and Finance +512124,Taxation and Finance,Taxation and Finance +480456,Taxation and Finance,Taxation and Finance +471574,Taxation and Finance,Taxation and Finance +469362,Taxation and Finance,Taxation and Finance +463192,Taxation and Finance,Taxation and Finance +463191,Taxation and Finance,Taxation and Finance +463188,Taxation and Finance,Taxation and Finance +461754,Taxation and Finance,Taxation and Finance +461753,Taxation and Finance,Taxation and Finance +461044,Taxation and Finance,Taxation and Finance +460306,Taxation and Finance,Taxation and Finance +453808,Taxation and Finance,Taxation and Finance +450568,Taxation and Finance,Taxation and Finance +446054,Taxation and Finance,Taxation and Finance +446053,Taxation and Finance,Taxation and Finance +446052,Taxation and Finance,Taxation and Finance +442960,Taxation and Finance,Taxation and Finance +442958,Taxation and Finance,Taxation and Finance +442957,Taxation and Finance,Taxation and Finance +435304,Taxation and Finance,Taxation and Finance +435303,Taxation and Finance,Taxation and Finance +434892,Taxation and Finance,Taxation and Finance +433904,Taxation and Finance,Taxation and Finance +427547,Taxation and Finance,Taxation and Finance +424830,Taxation and Finance,Taxation and Finance +422966,Taxation and Finance,Taxation and Finance +422965,Taxation and Finance,Taxation and Finance +422964,Taxation and Finance,Taxation and Finance +535950,Regional Development,Regional Development +456033,Economic Development,Economic Development +424777,Security,Security +457850,International Trade,Commerce international +457848,International Trade,Commerce international +437879,International Trade,Commerce international +437855,International Trade,Commerce international +437854,International Trade,Commerce international +527171,International Trade,Commerce international +527170,International Trade,Commerce international +523753,International Trade,Commerce international +518622,International Trade,Commerce international +457850,Economic Development,Développement économique +457848,Economic Development,Développement économique +427102,Economic Development,Développement économique +527171,Economic Development,Développement économique +518622,Economic Development,Développement économique +515228,Economic Development,Développement économique +514512,Economic Development,Développement économique +457850,Transportation,Transports +457848,Transportation,Transports +437879,Transportation,Transports +437855,Transportation,Transports +437854,Transportation,Transports +527171,Transportation,Transports +527170,Transportation,Transports +524011,Transportation,Transports +523753,Transportation,Transports +518622,Transportation,Transports +515228,Transportation,Transports +514512,Transportation,Transports +503803,Transportation,Transports +471946,Transportation,Transports +461141,Industry,Industry +460769,Industry,Industry +462496,Industry,Industry +462049,Industry,Industry +462049,Taxation and Finance,Taxation and Finance +461944,Taxation and Finance,Taxation and Finance +461141,Taxation and Finance,Taxation and Finance +460769,Taxation and Finance,Taxation and Finance +460360,Taxation and Finance,Taxation and Finance +457972,Taxation and Finance,Taxation and Finance +457896,Taxation and Finance,Taxation and Finance +456602,Taxation and Finance,Taxation and Finance +456317,Taxation and Finance,Taxation and Finance +456316,Taxation and Finance,Taxation and Finance +454235,Taxation and Finance,Taxation and Finance +453946,Taxation and Finance,Taxation and Finance +448852,Taxation and Finance,Taxation and Finance +446914,Taxation and Finance,Taxation and Finance +446913,Taxation and Finance,Taxation and Finance +444246,Taxation and Finance,Taxation and Finance +444155,Taxation and Finance,Taxation and Finance +443563,Taxation and Finance,Taxation and Finance +443560,Taxation and Finance,Taxation and Finance +439816,Taxation and Finance,Taxation and Finance +437743,Taxation and Finance,Taxation and Finance +437728,Taxation and Finance,Taxation and Finance +435496,Taxation and Finance,Taxation and Finance +428632,Taxation and Finance,Taxation and Finance +428072,Taxation and Finance,Taxation and Finance +427469,Taxation and Finance,Taxation and Finance +427234,Taxation and Finance,Taxation and Finance +427231,Taxation and Finance,Taxation and Finance +427160,Taxation and Finance,Taxation and Finance +424748,Taxation and Finance,Taxation and Finance +538998,Taxation and Finance,Taxation and Finance +518658,Taxation and Finance,Taxation and Finance +514406,Taxation and Finance,Taxation and Finance +512385,Taxation and Finance,Taxation and Finance +501617,Taxation and Finance,Taxation and Finance +500169,Taxation and Finance,Taxation and Finance +497497,Taxation and Finance,Taxation and Finance +493954,Taxation and Finance,Taxation and Finance +492986,Taxation and Finance,Taxation and Finance +491862,Taxation and Finance,Taxation and Finance +488570,Taxation and Finance,Taxation and Finance +485879,Taxation and Finance,Taxation and Finance +485747,Taxation and Finance,Taxation and Finance +483542,Taxation and Finance,Taxation and Finance +483091,Taxation and Finance,Taxation and Finance +481220,Taxation and Finance,Taxation and Finance +481150,Taxation and Finance,Taxation and Finance +478748,Taxation and Finance,Taxation and Finance +478622,Taxation and Finance,Taxation and Finance +478476,Taxation and Finance,Taxation and Finance +478475,Taxation and Finance,Taxation and Finance +476671,Taxation and Finance,Taxation and Finance +476670,Taxation and Finance,Taxation and Finance +474503,Taxation and Finance,Taxation and Finance +472753,Taxation and Finance,Taxation and Finance +471605,Taxation and Finance,Taxation and Finance +471572,Taxation and Finance,Taxation and Finance +471415,Taxation and Finance,Taxation and Finance +471414,Taxation and Finance,Taxation and Finance +465840,Taxation and Finance,Taxation and Finance +463734,Taxation and Finance,Taxation and Finance +462998,Taxation and Finance,Taxation and Finance +456533,Economic Development,Développement économique +431830,Industry,Industrie +422656,Industry,Industrie +489138,Employment and Training,Employment and Training +489135,Employment and Training,Employment and Training +488456,Employment and Training,Employment and Training +488454,Employment and Training,Employment and Training +488453,Employment and Training,Employment and Training +488451,Employment and Training,Employment and Training +488450,Employment and Training,Employment and Training +488449,Employment and Training,Employment and Training +488448,Employment and Training,Employment and Training +486595,Employment and Training,Employment and Training +486433,Employment and Training,Employment and Training +486431,Employment and Training,Employment and Training +486427,Employment and Training,Employment and Training +486426,Employment and Training,Employment and Training +486423,Employment and Training,Employment and Training +485850,Employment and Training,Employment and Training +485847,Employment and Training,Employment and Training +485845,Employment and Training,Employment and Training +483448,Employment and Training,Employment and Training +483447,Employment and Training,Employment and Training +476381,Employment and Training,Employment and Training +476379,Employment and Training,Employment and Training +476378,Employment and Training,Employment and Training +474192,Employment and Training,Employment and Training +474191,Employment and Training,Employment and Training +474190,Employment and Training,Employment and Training +474188,Employment and Training,Employment and Training +471900,Employment and Training,Employment and Training +471899,Employment and Training,Employment and Training +471898,Employment and Training,Employment and Training +471897,Employment and Training,Employment and Training +471896,Employment and Training,Employment and Training +471895,Employment and Training,Employment and Training +471893,Employment and Training,Employment and Training +471890,Employment and Training,Employment and Training +471881,Employment and Training,Employment and Training +471879,Employment and Training,Employment and Training +466066,Employment and Training,Employment and Training +466065,Employment and Training,Employment and Training +466064,Employment and Training,Employment and Training +466063,Employment and Training,Employment and Training +464015,Employment and Training,Employment and Training +464014,Employment and Training,Employment and Training +463093,Employment and Training,Employment and Training +463092,Employment and Training,Employment and Training +463091,Employment and Training,Employment and Training +463089,Employment and Training,Employment and Training +463088,Employment and Training,Employment and Training +463087,Employment and Training,Employment and Training +463086,Employment and Training,Employment and Training +463085,Employment and Training,Employment and Training +462039,Employment and Training,Employment and Training +462038,Employment and Training,Employment and Training +462037,Employment and Training,Employment and Training +462035,Employment and Training,Employment and Training +460526,Employment and Training,Employment and Training +460524,Employment and Training,Employment and Training +460521,Employment and Training,Employment and Training +460519,Employment and Training,Employment and Training +459943,Employment and Training,Employment and Training +459942,Employment and Training,Employment and Training +459940,Employment and Training,Employment and Training +459072,Employment and Training,Employment and Training +447144,Employment and Training,Employment and Training +447140,Employment and Training,Employment and Training +447139,Employment and Training,Employment and Training +447134,Employment and Training,Employment and Training +437015,Employment and Training,Employment and Training +437013,Employment and Training,Employment and Training +437011,Employment and Training,Employment and Training +437009,Employment and Training,Employment and Training +437007,Employment and Training,Employment and Training +437005,Employment and Training,Employment and Training +431761,Employment and Training,Employment and Training +431759,Employment and Training,Employment and Training +431757,Employment and Training,Employment and Training +429247,Employment and Training,Employment and Training +429241,Employment and Training,Employment and Training +429238,Employment and Training,Employment and Training +423922,Employment and Training,Employment and Training +423920,Employment and Training,Employment and Training +538794,Employment and Training,Employment and Training +538793,Employment and Training,Employment and Training +538792,Employment and Training,Employment and Training +538791,Employment and Training,Employment and Training +523587,Employment and Training,Employment and Training +523368,Employment and Training,Employment and Training +523367,Employment and Training,Employment and Training +521110,Employment and Training,Employment and Training +521104,Employment and Training,Employment and Training +521102,Employment and Training,Employment and Training +515365,Employment and Training,Employment and Training +512043,Employment and Training,Employment and Training +503393,Employment and Training,Employment and Training +503327,Employment and Training,Employment and Training +500259,Employment and Training,Employment and Training +500255,Employment and Training,Employment and Training +497159,Employment and Training,Employment and Training +496593,Employment and Training,Employment and Training +493871,Employment and Training,Employment and Training +491934,Employment and Training,Employment and Training +491933,Employment and Training,Employment and Training +489142,Employment and Training,Employment and Training +489141,Employment and Training,Employment and Training +489140,Employment and Training,Employment and Training +420974,Taxation and Finance,Taxation and Finance +420973,Taxation and Finance,Taxation and Finance +442772,Taxation and Finance,Taxation and Finance +442770,Taxation and Finance,Taxation and Finance +442768,Taxation and Finance,Taxation and Finance +439798,Taxation and Finance,Taxation and Finance +439796,Taxation and Finance,Taxation and Finance +428504,Taxation and Finance,Taxation and Finance +423068,Taxation and Finance,Taxation and Finance +423066,Taxation and Finance,Taxation and Finance +423065,Taxation and Finance,Taxation and Finance +423064,Taxation and Finance,Taxation and Finance +423063,Taxation and Finance,Taxation and Finance +423062,Taxation and Finance,Taxation and Finance +423061,Taxation and Finance,Taxation and Finance +423060,Taxation and Finance,Taxation and Finance +423059,Taxation and Finance,Taxation and Finance +423058,Taxation and Finance,Taxation and Finance +423057,Taxation and Finance,Taxation and Finance +423056,Taxation and Finance,Taxation and Finance +423055,Taxation and Finance,Taxation and Finance +423054,Taxation and Finance,Taxation and Finance +420987,Taxation and Finance,Taxation and Finance +420986,Taxation and Finance,Taxation and Finance +420985,Taxation and Finance,Taxation and Finance +420984,Taxation and Finance,Taxation and Finance +420983,Taxation and Finance,Taxation and Finance +420982,Taxation and Finance,Taxation and Finance +420981,Taxation and Finance,Taxation and Finance +420980,Taxation and Finance,Taxation and Finance +420979,Taxation and Finance,Taxation and Finance +420978,Taxation and Finance,Taxation and Finance +420977,Taxation and Finance,Taxation and Finance +420976,Taxation and Finance,Taxation and Finance +490698,International Relations,International Relations +500180,Economic Development,Economic Development +500134,Economic Development,Economic Development +495038,Economic Development,Economic Development +442672,Economic Development,Economic Development +442662,Economic Development,Economic Development +442658,Economic Development,Economic Development +429301,Health,Health +422855,Health,Health +466306,Health,Health +437129,Education,Éducation +476649,Education,Éducation +454652,Research and Development,Recherche et développement +489832,Research and Development,Recherche et développement +489826,Research and Development,Recherche et développement +479238,Research and Development,Recherche et développement +427170,Education,Education +427170,Health,Health +422861,Health,Health +462903,Agriculture,Agriculture +462553,Agriculture,Agriculture +460722,Agriculture,Agriculture +458875,Agriculture,Agriculture +458873,Agriculture,Agriculture +458869,Agriculture,Agriculture +450299,Agriculture,Agriculture +450294,Agriculture,Agriculture +450270,Agriculture,Agriculture +450268,Agriculture,Agriculture +450266,Agriculture,Agriculture +447075,Agriculture,Agriculture +447069,Agriculture,Agriculture +447063,Agriculture,Agriculture +447062,Agriculture,Agriculture +441183,Agriculture,Agriculture +441181,Agriculture,Agriculture +441164,Agriculture,Agriculture +540961,Agriculture,Agriculture +538627,Agriculture,Agriculture +538625,Agriculture,Agriculture +528529,Agriculture,Agriculture +528526,Agriculture,Agriculture +528525,Agriculture,Agriculture +468520,Agriculture,Agriculture +466585,Agriculture,Agriculture +466584,Agriculture,Agriculture +466583,Agriculture,Agriculture +466582,Agriculture,Agriculture +466581,Agriculture,Agriculture +466579,Agriculture,Agriculture +466578,Agriculture,Agriculture +466577,Agriculture,Agriculture +466574,Agriculture,Agriculture +466569,Agriculture,Agriculture +466567,Agriculture,Agriculture +466560,Agriculture,Agriculture +466550,Agriculture,Agriculture +466542,Agriculture,Agriculture +466539,Agriculture,Agriculture +425397,Agriculture,Agriculture +528139,Agriculture,Agriculture +521392,Agriculture,Agriculture +521390,Agriculture,Agriculture +506517,Agriculture,Agriculture +494339,Agriculture,Agriculture +490933,Agriculture,Agriculture +485897,Agriculture,Agriculture +476520,Agriculture,Agriculture +476519,Agriculture,Agriculture +458102,Agriculture,Agriculture +458102,Economic Development,Economic Development +434797,Economic Development,Economic Development +521392,Economic Development,Economic Development +521390,Economic Development,Economic Development +483158,Economic Development,Economic Development +451211,Health,Health +443851,Health,Health +434797,Health,Health +425398,Health,Health +422707,Environment,Environment +421770,Environment,Environment +422707,Transportation,Transportation +421770,Transportation,Transportation +421207,Industry,Industry +422640,Energy,Energy +422640,Environment,Environment +422640,Industry,Industry +425224,Environment,Environment +430039,Energy,Energy +425502,Energy,Energy +430042,Energy,Energy +430041,Energy,Energy +423052,Economic Development,Economic Development +423051,Economic Development,Economic Development +427110,Economic Development,Economic Development +423544,Economic Development,Economic Development +423522,Economic Development,Economic Development +423518,Economic Development,Economic Development +423507,Economic Development,Economic Development +423501,Economic Development,Economic Development +423052,Energy,Energy +423051,Energy,Energy +427110,Energy,Energy +423544,Energy,Energy +423522,Energy,Energy +423518,Energy,Energy +423507,Energy,Energy +423501,Energy,Energy +423052,Environment,Environment +423051,Environment,Environment +423544,Environment,Environment +423522,Environment,Environment +423518,Environment,Environment +423507,Environment,Environment +423501,Environment,Environment +439671,Government Procurement,Government Procurement +439669,Government Procurement,Government Procurement +424073,Government Procurement,Government Procurement +422650,Transportation,Transportation +422649,Transportation,Transportation +422652,Infrastructure,Infrastructure +422645,Infrastructure,Infrastructure +428692,Infrastructure,Infrastructure +425924,Infrastructure,Infrastructure +424802,Infrastructure,Infrastructure +423103,Infrastructure,Infrastructure +423102,Infrastructure,Infrastructure +423101,Infrastructure,Infrastructure +423018,Infrastructure,Infrastructure +425922,Infrastructure,Infrastructure +480401,International Trade,International Trade +438278,International Trade,International Trade +511625,International Trade,International Trade +509089,International Trade,International Trade +480403,International Trade,International Trade +438278,Agriculture,Agriculture +511625,Agriculture,Agriculture +480403,Agriculture,Agriculture +480402,Agriculture,Agriculture +466027,Research and Development,Research and Development +466024,Research and Development,Research and Development +477464,Research and Development,Research and Development +435314,International Development,International Development +433745,International Development,International Development +492963,International Development,International Development +470148,International Development,International Development +449202,International Development,International Development +442334,International Development,International Development +442265,International Development,International Development +442263,International Development,International Development +466023,Research and Development,Research and Development +466022,Research and Development,Research and Development +466030,Research and Development,Research and Development +466029,Research and Development,Research and Development +422020,Industry,Industry +422033,Mining,Mining +422020,Regional Development,Regional Development +425167,Climate,Climate +425166,Climate,Climate +425167,Economic Development,Economic Development +425166,Economic Development,Economic Development +425167,Environment,Environment +425166,Environment,Environment +425167,Municipalities,Municipalities +425166,Municipalities,Municipalities +425166,Transportation,Transportation +425164,Transportation,Transportation +425169,Transportation,Transportation +424736,Economic Development,Economic Development +421737,Economic Development,Economic Development +424738,Economic Development,Economic Development +424734,Economic Development,Economic Development +421738,Economic Development,Economic Development +430614,Economic Development,Economic Development +430613,Economic Development,Economic Development +427158,Economic Development,Economic Development +458005,Government Procurement,Government Procurement +421754,Government Procurement,Government Procurement +456499,Government Procurement,Government Procurement +426526,Government Procurement,Government Procurement +421777,Consumer Issues,Consumer Issues +426487,International Trade,International Trade +421791,International Trade,International Trade +450746,International Trade,International Trade +446443,International Trade,International Trade +421827,International Trade,International Trade +463802,International Trade,International Trade +458005,International Trade,International Trade +456499,International Trade,International Trade +516495,Government Procurement,Government Procurement +516490,Government Procurement,Government Procurement +521805,Government Procurement,Government Procurement +521804,Government Procurement,Government Procurement +466770,Privacy and Access to Information,Privacy and Access to Information +461271,Privacy and Access to Information,Privacy and Access to Information +540681,Privacy and Access to Information,Privacy and Access to Information +511944,Privacy and Access to Information,Privacy and Access to Information +485792,Privacy and Access to Information,Privacy and Access to Information +468279,Privacy and Access to Information,Privacy and Access to Information +533266,Security,Security +518891,Security,Security +471763,Security,Security +468291,Security,Security +462982,Security,Security +462167,Security,Security +461271,Security,Security +461257,Security,Security +453572,Security,Security +449887,Security,Security +443346,Security,Security +440574,Security,Security +440571,Security,Security +440570,Security,Security +423325,Security,Security +438934,Government Procurement,Government Procurement +432412,Government Procurement,Government Procurement +428966,Government Procurement,Government Procurement +428965,Government Procurement,Government Procurement +428964,Government Procurement,Government Procurement +428963,Government Procurement,Government Procurement +426640,Government Procurement,Government Procurement +426633,Government Procurement,Government Procurement +423465,Government Procurement,Government Procurement +423464,Government Procurement,Government Procurement +423463,Government Procurement,Government Procurement +423461,Government Procurement,Government Procurement +423453,Government Procurement,Government Procurement +422336,Government Procurement,Government Procurement +422333,Government Procurement,Government Procurement +422332,Government Procurement,Government Procurement +422330,Government Procurement,Government Procurement +484555,Government Procurement,Government Procurement +543159,Health,Health +543149,Health,Health +446486,Health,Health +443167,Health,Health +440691,Health,Health +440690,Health,Health +436322,Health,Health +432945,Health,Health +432944,Health,Health +432784,Health,Health +432783,Health,Health +432782,Health,Health +427764,Health,Health +544648,Health,Health +543168,Health,Health +543149,Research and Development,Research and Development +446486,Research and Development,Research and Development +443167,Research and Development,Research and Development +440691,Research and Development,Research and Development +440690,Research and Development,Research and Development +436322,Research and Development,Research and Development +432945,Research and Development,Research and Development +432944,Research and Development,Research and Development +432784,Research and Development,Research and Development +432783,Research and Development,Research and Development +432782,Research and Development,Research and Development +427764,Research and Development,Research and Development +544648,Research and Development,Research and Development +543168,Research and Development,Research and Development +543163,Research and Development,Research and Development +441114,International Trade,International Trade +441053,International Trade,International Trade +441048,International Trade,International Trade +437589,International Trade,International Trade +430890,International Trade,International Trade +426526,International Trade,International Trade +424017,International Trade,International Trade +422005,International Trade,International Trade +450748,International Trade,International Trade +446438,International Trade,International Trade +511543,Justice and Law Enforcement,Justice and Law Enforcement +503826,Justice and Law Enforcement,Justice and Law Enforcement +422151,Justice and Law Enforcement,Justice and Law Enforcement +536790,Justice and Law Enforcement,Justice and Law Enforcement +530529,Justice and Law Enforcement,Justice and Law Enforcement +530178,Justice and Law Enforcement,Justice and Law Enforcement +530175,Justice and Law Enforcement,Justice and Law Enforcement +513672,Justice and Law Enforcement,Justice and Law Enforcement +512228,Justice and Law Enforcement,Justice and Law Enforcement +512226,Justice and Law Enforcement,Justice and Law Enforcement +511545,Justice and Law Enforcement,Justice and Law Enforcement +422246,Defence,Defence +434133,Health,Health +434047,Health,Health +473312,Health,Health +464558,Health,Health +454896,Health,Health +452639,Health,Health +498508,Environment,Environment +485821,Environment,Environment +443881,Environment,Environment +443880,Environment,Environment +525240,Environment,Environment +505002,Environment,Environment +498520,Environment,Environment +438936,Economic Development,Economic Development +438934,Economic Development,Economic Development +432412,Economic Development,Economic Development +428966,Economic Development,Economic Development +428965,Economic Development,Economic Development +428964,Economic Development,Economic Development +428963,Economic Development,Economic Development +426640,Economic Development,Economic Development +426633,Economic Development,Economic Development +423465,Economic Development,Economic Development +423464,Economic Development,Economic Development +423463,Economic Development,Economic Development +423461,Economic Development,Economic Development +423453,Economic Development,Economic Development +422336,Economic Development,Economic Development +422333,Economic Development,Economic Development +422332,Economic Development,Economic Development +422330,Economic Development,Economic Development +423602,Health,Health +422444,Health,Health +520196,Health,Health +423113,Intellectual Property,Intellectual Property +423110,Intellectual Property,Intellectual Property +490540,Intellectual Property,Intellectual Property +469328,Intellectual Property,Intellectual Property +459808,Intellectual Property,Intellectual Property +458951,Intellectual Property,Intellectual Property +455492,Intellectual Property,Intellectual Property +443001,Intellectual Property,Intellectual Property +491225,Privacy and Access to Information,Privacy and Access to Information +462420,Economic Development,Economic Development +462419,Economic Development,Economic Development +462417,Economic Development,Economic Development +462414,Economic Development,Economic Development +462412,Economic Development,Economic Development +461383,Economic Development,Economic Development +460567,Economic Development,Economic Development +460499,Economic Development,Economic Development +460497,Economic Development,Economic Development +460248,Economic Development,Economic Development +459714,Economic Development,Economic Development +458388,Economic Development,Economic Development +457570,Economic Development,Economic Development +455411,Economic Development,Economic Development +455410,Economic Development,Economic Development +455409,Economic Development,Economic Development +455408,Economic Development,Economic Development +455407,Economic Development,Economic Development +455406,Economic Development,Economic Development +451651,Economic Development,Economic Development +449871,Economic Development,Economic Development +449870,Economic Development,Economic Development +449869,Economic Development,Economic Development +449868,Economic Development,Economic Development +449867,Economic Development,Economic Development +449865,Economic Development,Economic Development +447814,Economic Development,Economic Development +447808,Economic Development,Economic Development +447401,Economic Development,Economic Development +445848,Economic Development,Economic Development +445847,Economic Development,Economic Development +445846,Economic Development,Economic Development +445845,Economic Development,Economic Development +445844,Economic Development,Economic Development +445843,Economic Development,Economic Development +445842,Economic Development,Economic Development +445841,Economic Development,Economic Development +445840,Economic Development,Economic Development +445839,Economic Development,Economic Development +445837,Economic Development,Economic Development +445836,Economic Development,Economic Development +445835,Economic Development,Economic Development +443684,Economic Development,Economic Development +443679,Economic Development,Economic Development +436170,Economic Development,Economic Development +436169,Economic Development,Economic Development +436168,Economic Development,Economic Development +436167,Economic Development,Economic Development +436166,Economic Development,Economic Development +436165,Economic Development,Economic Development +436164,Economic Development,Economic Development +436163,Economic Development,Economic Development +436162,Economic Development,Economic Development +422527,Economic Development,Economic Development +508596,Economic Development,Economic Development +508586,Economic Development,Economic Development +508578,Economic Development,Economic Development +504719,Economic Development,Economic Development +501607,Economic Development,Economic Development +501606,Economic Development,Economic Development +501605,Economic Development,Economic Development +501604,Economic Development,Economic Development +499179,Economic Development,Economic Development +499177,Economic Development,Economic Development +495923,Economic Development,Economic Development +495921,Economic Development,Economic Development +495920,Economic Development,Economic Development +493478,Economic Development,Economic Development +493474,Economic Development,Economic Development +493473,Economic Development,Economic Development +493472,Economic Development,Economic Development +493470,Economic Development,Economic Development +493467,Economic Development,Economic Development +493464,Economic Development,Economic Development +493457,Economic Development,Economic Development +492170,Economic Development,Economic Development +492169,Economic Development,Economic Development +492168,Economic Development,Economic Development +492167,Economic Development,Economic Development +492166,Economic Development,Economic Development +492164,Economic Development,Economic Development +492163,Economic Development,Economic Development +491550,Economic Development,Economic Development +491548,Economic Development,Economic Development +491544,Economic Development,Economic Development +491538,Economic Development,Economic Development +491531,Economic Development,Economic Development +491527,Economic Development,Economic Development +491523,Economic Development,Economic Development +491520,Economic Development,Economic Development +491510,Economic Development,Economic Development +491478,Economic Development,Economic Development +491466,Economic Development,Economic Development +491458,Economic Development,Economic Development +491453,Economic Development,Economic Development +484197,Economic Development,Economic Development +484195,Economic Development,Economic Development +484193,Economic Development,Economic Development +484190,Economic Development,Economic Development +484189,Economic Development,Economic Development +484188,Economic Development,Economic Development +484187,Economic Development,Economic Development +484186,Economic Development,Economic Development +484185,Economic Development,Economic Development +484184,Economic Development,Economic Development +484183,Economic Development,Economic Development +484182,Economic Development,Economic Development +481652,Economic Development,Economic Development +481645,Economic Development,Economic Development +481635,Economic Development,Economic Development +481634,Economic Development,Economic Development +479876,Economic Development,Economic Development +479874,Economic Development,Economic Development +479873,Economic Development,Economic Development +479871,Economic Development,Economic Development +479870,Economic Development,Economic Development +479869,Economic Development,Economic Development +479867,Economic Development,Economic Development +478122,Economic Development,Economic Development +478121,Economic Development,Economic Development +478120,Economic Development,Economic Development +478119,Economic Development,Economic Development +478118,Economic Development,Economic Development +478117,Economic Development,Economic Development +478115,Economic Development,Economic Development +478113,Economic Development,Economic Development +478110,Economic Development,Economic Development +478106,Economic Development,Economic Development +476194,Economic Development,Economic Development +476193,Economic Development,Economic Development +476192,Economic Development,Economic Development +476191,Economic Development,Economic Development +470524,Economic Development,Economic Development +470522,Economic Development,Economic Development +470520,Economic Development,Economic Development +470518,Economic Development,Economic Development +470516,Economic Development,Economic Development +470515,Economic Development,Economic Development +468354,Economic Development,Economic Development +468351,Economic Development,Economic Development +464146,Economic Development,Economic Development +464145,Economic Development,Economic Development +464143,Economic Development,Economic Development +464142,Economic Development,Economic Development +464141,Economic Development,Economic Development +464140,Economic Development,Economic Development +464138,Economic Development,Economic Development +462425,Economic Development,Economic Development +463156,Small Business,Small Business +456546,Small Business,Small Business +446326,Small Business,Small Business +446190,Small Business,Small Business +436264,Small Business,Small Business +422882,Small Business,Small Business +422653,Small Business,Small Business +422529,Small Business,Small Business +426408,Consumer Issues,Consumer Issues +422573,Consumer Issues,Consumer Issues +432629,Consumer Issues,Consumer Issues +426513,Consumer Issues,Consumer Issues +469148,Agriculture,Agriculture +422539,Agriculture,Agriculture +506786,Agriculture,Agriculture +504930,Agriculture,Agriculture +493461,Agriculture,Agriculture +479295,Agriculture,Agriculture +479008,Agriculture,Agriculture +478371,Agriculture,Agriculture +476233,Agriculture,Agriculture +475930,Agriculture,Agriculture +475926,Agriculture,Agriculture +475920,Agriculture,Agriculture +472829,Agriculture,Agriculture +472828,Agriculture,Agriculture +472826,Agriculture,Agriculture +472824,Agriculture,Agriculture +470760,Agriculture,Agriculture +470757,Agriculture,Agriculture +470733,Agriculture,Agriculture +470727,Agriculture,Agriculture +506786,Budget,Budget +504930,Budget,Budget +479295,Budget,Budget +478371,Budget,Budget +475930,Budget,Budget +475926,Budget,Budget +472829,Budget,Budget +472828,Budget,Budget +472826,Budget,Budget +472824,Budget,Budget +470760,Budget,Budget +470757,Budget,Budget +469148,Employment and Training,Employment and Training +422539,Employment and Training,Employment and Training +506786,Employment and Training,Employment and Training +504930,Employment and Training,Employment and Training +493461,Employment and Training,Employment and Training +479295,Employment and Training,Employment and Training +479008,Employment and Training,Employment and Training +478371,Employment and Training,Employment and Training +476233,Employment and Training,Employment and Training +475930,Employment and Training,Employment and Training +475926,Employment and Training,Employment and Training +475920,Employment and Training,Employment and Training +472829,Employment and Training,Employment and Training +472828,Employment and Training,Employment and Training +472826,Employment and Training,Employment and Training +472824,Employment and Training,Employment and Training +470760,Employment and Training,Employment and Training +470757,Employment and Training,Employment and Training +470733,Employment and Training,Employment and Training +470727,Employment and Training,Employment and Training +476233,Immigration,Immigration +469148,Immigration,Immigration +424236,International Trade,International Trade +424235,International Trade,International Trade +441181,International Trade,International Trade +441164,International Trade,International Trade +538627,International Trade,International Trade +538625,International Trade,International Trade +528526,International Trade,International Trade +528525,International Trade,International Trade +468520,International Trade,International Trade +466584,International Trade,International Trade +466582,International Trade,International Trade +466524,International Trade,International Trade +462903,International Trade,International Trade +462553,International Trade,International Trade +460722,International Trade,International Trade +458875,International Trade,International Trade +450294,International Trade,International Trade +450270,International Trade,International Trade +422696,Consumer Issues,Consumer Issues +422695,Consumer Issues,Consumer Issues +422698,Consumer Issues,Consumer Issues +422696,Health,Health +422695,Health,Health +422698,Health,Health +422696,Small Business,Small Business +422695,Small Business,Small Business +422698,Small Business,Small Business +424547,Energy,Energy +424546,Energy,Energy +424546,Industry,Industry +424548,Industry,Industry +424547,Labour,Labour +424546,Labour,Labour +424547,International Trade,International Trade +424546,International Trade,International Trade +424547,Environment,Environment +424546,Environment,Environment +424547,Employment and Training,Employment and Training +424546,Employment and Training,Employment and Training +422669,Transportation,Transportation +424542,Tourism,Tourism +424541,Tourism,Tourism +434652,Economic Development,Economic Development +433339,Economic Development,Economic Development +448132,Economic Development,Economic Development +448131,Economic Development,Economic Development +441024,Economic Development,Economic Development +434952,Economic Development,Economic Development +434950,Economic Development,Economic Development +434948,Housing,Housing +434652,Housing,Housing +448132,Housing,Housing +444788,Housing,Housing +434952,Housing,Housing +434948,Consumer Issues,Consumer Issues +434652,Municipalities,Municipalities +433339,Municipalities,Municipalities +448132,Municipalities,Municipalities +444788,Municipalities,Municipalities +434952,Municipalities,Municipalities +434950,Municipalities,Municipalities +434652,Consumer Issues,Consumer Issues +433339,Consumer Issues,Consumer Issues +434652,Tourism,Tourism +433339,Tourism,Tourism +448132,Tourism,Tourism +448131,Tourism,Tourism +444788,Tourism,Tourism +441024,Tourism,Tourism +434952,Tourism,Tourism +434950,Tourism,Tourism +448131,Taxation and Finance,Taxation and Finance +434952,Taxation and Finance,Taxation and Finance +434950,Taxation and Finance,Taxation and Finance +434948,Taxation and Finance,Taxation and Finance +434652,Taxation and Finance,Taxation and Finance +433339,Taxation and Finance,Taxation and Finance +435171,Health,Health +423830,Health,Health +463211,Health,Health +463213,International Development,International Development +463212,International Development,International Development +462013,International Development,International Development +456311,International Development,International Development +456309,International Development,International Development +456308,International Development,International Development +456307,International Development,International Development +456305,International Development,International Development +435367,International Development,International Development +435364,International Development,International Development +435170,International Development,International Development +423831,International Development,International Development +425141,Energy,Energy +425139,Energy,Energy +457349,Energy,Energy +457348,Energy,Energy +457346,Energy,Energy +457346,Environment,Environment +452968,Environment,Environment +443033,Environment,Environment +443032,Environment,Environment +434364,Environment,Environment +425141,Environment,Environment +425139,Environment,Environment +457349,Environment,Environment +425139,Industry,Industry +433934,Energy,Energy +424346,Health,Santé +424344,Health,Santé +448620,Health,Santé +436894,Health,Santé +436891,Health,Santé +436368,Health,Santé +436351,Health,Santé +436350,Health,Santé +434149,Health,Santé +434106,Health,Santé +434105,Health,Santé +433348,Health,Santé +433347,Health,Santé +433346,Health,Santé +431777,Health,Santé +431420,Health,Santé +431413,Health,Santé +431412,Health,Santé +430456,Health,Santé +430454,Health,Santé +430453,Health,Santé +424602,Health,Santé +425706,Consumer Issues,Consumer Issues +425702,Consumer Issues,Consumer Issues +427473,Consumer Issues,Consumer Issues +522620,Industry,Industry +522617,Industry,Industry +543381,Industry,Industry +539574,Industry,Industry +539572,Industry,Industry +537480,Industry,Industry +534400,Industry,Industry +534389,Industry,Industry +525500,Industry,Industry +525497,Industry,Industry +525494,Industry,Industry +525493,Industry,Industry +525472,Industry,Industry +525470,Industry,Industry +525462,Industry,Industry +522617,Privacy and Access to Information,Privacy and Access to Information +515510,Privacy and Access to Information,Privacy and Access to Information +543381,Privacy and Access to Information,Privacy and Access to Information +539574,Privacy and Access to Information,Privacy and Access to Information +539572,Privacy and Access to Information,Privacy and Access to Information +537480,Privacy and Access to Information,Privacy and Access to Information +534400,Privacy and Access to Information,Privacy and Access to Information +534389,Privacy and Access to Information,Privacy and Access to Information +525500,Privacy and Access to Information,Privacy and Access to Information +525497,Privacy and Access to Information,Privacy and Access to Information +525462,Privacy and Access to Information,Privacy and Access to Information +522627,Privacy and Access to Information,Privacy and Access to Information +429932,Economic Development,Economic Development +429931,Economic Development,Economic Development +432816,Economic Development,Economic Development +429933,Health,Health +429931,Health,Health +432816,Health,Health +432815,Health,Health +449156,Environment,Environment +449155,Environment,Environment +425210,Environment,Environment +462822,Economic Development,Economic Development +462821,Economic Development,Economic Development +422812,Economic Development,Economic Development +528389,Economic Development,Economic Development +519458,Economic Development,Economic Development +519457,Economic Development,Economic Development +462823,Health,Health +462821,Health,Health +519458,Health,Health +519457,Health,Health +462822,Housing,Housing +422812,Housing,Housing +519458,Housing,Housing +482856,Housing,Housing +519458,Infrastructure,Infrastructure +519457,Infrastructure,Infrastructure +462823,Infrastructure,Infrastructure +462822,Infrastructure,Infrastructure +462821,Infrastructure,Infrastructure +422808,Infrastructure,Infrastructure +422804,Justice and Law Enforcement,Justice and Law Enforcement +462822,Regional Development,Regional Development +462821,Regional Development,Regional Development +422812,Regional Development,Regional Development +437509,Labour,Labour +540260,Labour,Labour +472853,Labour,Labour +472852,Labour,Labour +472850,Labour,Labour +472849,Labour,Labour +472847,Labour,Labour +472846,Labour,Labour +472792,Labour,Labour +472786,Labour,Labour +469576,Labour,Labour +469574,Labour,Labour +469573,Labour,Labour +469571,Labour,Labour +469570,Labour,Labour +469566,Labour,Labour +469565,Labour,Labour +453043,Agriculture,Agriculture +453042,Agriculture,Agriculture +453041,Agriculture,Agriculture +453040,Agriculture,Agriculture +453039,Agriculture,Agriculture +446724,Agriculture,Agriculture +446723,Agriculture,Agriculture +446722,Agriculture,Agriculture +446721,Agriculture,Agriculture +446720,Agriculture,Agriculture +437509,Agriculture,Agriculture +540261,Agriculture,Agriculture +540260,Agriculture,Agriculture +530253,Agriculture,Agriculture +530252,Agriculture,Agriculture +530251,Agriculture,Agriculture +530250,Agriculture,Agriculture +530249,Agriculture,Agriculture +530248,Agriculture,Agriculture +529666,Agriculture,Agriculture +529664,Agriculture,Agriculture +526683,Agriculture,Agriculture +526681,Agriculture,Agriculture +520053,Agriculture,Agriculture +520049,Agriculture,Agriculture +520046,Agriculture,Agriculture +520040,Agriculture,Agriculture +520027,Agriculture,Agriculture +515826,Agriculture,Agriculture +495746,Agriculture,Agriculture +489207,Agriculture,Agriculture +489204,Agriculture,Agriculture +489203,Agriculture,Agriculture +489201,Agriculture,Agriculture +489200,Agriculture,Agriculture +489198,Agriculture,Agriculture +489196,Agriculture,Agriculture +489195,Agriculture,Agriculture +488935,Agriculture,Agriculture +488934,Agriculture,Agriculture +488933,Agriculture,Agriculture +488932,Agriculture,Agriculture +488930,Agriculture,Agriculture +488929,Agriculture,Agriculture +488928,Agriculture,Agriculture +488927,Agriculture,Agriculture +486084,Agriculture,Agriculture +485910,Agriculture,Agriculture +485909,Agriculture,Agriculture +485664,Agriculture,Agriculture +485663,Agriculture,Agriculture +479002,Agriculture,Agriculture +479001,Agriculture,Agriculture +474897,Agriculture,Agriculture +474407,Agriculture,Agriculture +472855,Agriculture,Agriculture +472853,Agriculture,Agriculture +472852,Agriculture,Agriculture +472850,Agriculture,Agriculture +472849,Agriculture,Agriculture +472847,Agriculture,Agriculture +472846,Agriculture,Agriculture +472792,Agriculture,Agriculture +472786,Agriculture,Agriculture +469576,Agriculture,Agriculture +469574,Agriculture,Agriculture +469573,Agriculture,Agriculture +469571,Agriculture,Agriculture +469570,Agriculture,Agriculture +469568,Agriculture,Agriculture +469566,Agriculture,Agriculture +469565,Agriculture,Agriculture +469564,Agriculture,Agriculture +469205,Agriculture,Agriculture +469204,Agriculture,Agriculture +469203,Agriculture,Agriculture +461714,Agriculture,Agriculture +461691,Agriculture,Agriculture +458777,Agriculture,Agriculture +457563,Agriculture,Agriculture +457562,Agriculture,Agriculture +469205,International Trade,International Trade +446724,International Trade,International Trade +474407,Environment,Environment +426131,Economic Development,Economic Development +426129,Economic Development,Economic Development +426141,Economic Development,Economic Development +426131,Government Procurement,Government Procurement +426129,Government Procurement,Government Procurement +426141,Government Procurement,Government Procurement +426131,Research and Development,Research and Development +426129,Research and Development,Research and Development +426141,Research and Development,Research and Development +422847,Labour,Labour +422845,Labour,Labour +422825,Labour,Labour +422824,Labour,Labour +433934,Climate,Climate +425629,Consumer Issues,Consumer Issues +425628,Consumer Issues,Consumer Issues +425629,Health,Health +425628,Health,Health +459633,Economic Development,Economic Development +458641,Economic Development,Economic Development +444471,Economic Development,Economic Development +441708,Economic Development,Economic Development +439048,Economic Development,Economic Development +439041,Economic Development,Economic Development +439036,Economic Development,Economic Development +436065,Economic Development,Economic Development +428290,Economic Development,Economic Development +428288,Economic Development,Economic Development +425811,Economic Development,Economic Development +425810,Economic Development,Economic Development +425716,Economic Development,Economic Development +423085,Economic Development,Economic Development +423084,Economic Development,Economic Development +423083,Economic Development,Economic Development +508550,Economic Development,Economic Development +477730,Economic Development,Economic Development +470614,Economic Development,Economic Development +470611,Economic Development,Economic Development +470591,Economic Development,Economic Development +470589,Economic Development,Economic Development +465486,Economic Development,Economic Development +465485,Economic Development,Economic Development +465484,Economic Development,Economic Development +465481,Economic Development,Economic Development +465479,Economic Development,Economic Development +537467,Environment,Environment +508550,Environment,Environment +425715,Environment,Environment +425714,Environment,Environment +423085,Environment,Environment +423084,Environment,Environment +423083,Environment,Environment +473970,Environment,Environment +470591,Environment,Environment +470589,Environment,Environment +465486,Environment,Environment +465485,Environment,Environment +465484,Environment,Environment +465482,Environment,Environment +465481,Environment,Environment +465480,Environment,Environment +465479,Environment,Environment +460093,Environment,Environment +459633,Environment,Environment +458641,Environment,Environment +457824,Environment,Environment +454823,Environment,Environment +453887,Environment,Environment +453882,Environment,Environment +445082,Environment,Environment +445081,Environment,Environment +445080,Environment,Environment +445079,Environment,Environment +444472,Environment,Environment +444471,Environment,Environment +443793,Environment,Environment +443792,Environment,Environment +441708,Environment,Environment +441706,Environment,Environment +439048,Environment,Environment +439041,Environment,Environment +439036,Environment,Environment +439033,Environment,Environment +436065,Environment,Environment +428290,Environment,Environment +428288,Environment,Environment +428286,Environment,Environment +425811,Environment,Environment +425810,Environment,Environment +465484,Fisheries,Fisheries +465482,Fisheries,Fisheries +465481,Fisheries,Fisheries +465480,Fisheries,Fisheries +465479,Fisheries,Fisheries +460093,Fisheries,Fisheries +459633,Fisheries,Fisheries +457824,Fisheries,Fisheries +454823,Fisheries,Fisheries +453887,Fisheries,Fisheries +445082,Fisheries,Fisheries +445081,Fisheries,Fisheries +445080,Fisheries,Fisheries +445079,Fisheries,Fisheries +444471,Fisheries,Fisheries +443793,Fisheries,Fisheries +441708,Fisheries,Fisheries +441706,Fisheries,Fisheries +439048,Fisheries,Fisheries +439041,Fisheries,Fisheries +436065,Fisheries,Fisheries +428290,Fisheries,Fisheries +428288,Fisheries,Fisheries +428286,Fisheries,Fisheries +425811,Fisheries,Fisheries +425810,Fisheries,Fisheries +425716,Fisheries,Fisheries +425715,Fisheries,Fisheries +425714,Fisheries,Fisheries +423085,Fisheries,Fisheries +423084,Fisheries,Fisheries +423083,Fisheries,Fisheries +508550,Fisheries,Fisheries +480175,Fisheries,Fisheries +473971,Fisheries,Fisheries +473970,Fisheries,Fisheries +470591,Fisheries,Fisheries +470589,Fisheries,Fisheries +465486,Fisheries,Fisheries +516400,Mining,Mining +508550,Mining,Mining +477730,Mining,Mining +473971,Mining,Mining +473970,Mining,Mining +470614,Mining,Mining +470611,Mining,Mining +470591,Mining,Mining +470589,Mining,Mining +465486,Mining,Mining +465485,Mining,Mining +465484,Mining,Mining +465482,Mining,Mining +465481,Mining,Mining +465480,Mining,Mining +465479,Mining,Mining +460093,Mining,Mining +459633,Mining,Mining +458641,Mining,Mining +457824,Mining,Mining +454823,Mining,Mining +453887,Mining,Mining +453882,Mining,Mining +445082,Mining,Mining +445081,Mining,Mining +445080,Mining,Mining +445079,Mining,Mining +444472,Mining,Mining +444471,Mining,Mining +443793,Mining,Mining +443792,Mining,Mining +441708,Mining,Mining +441706,Mining,Mining +439048,Mining,Mining +439041,Mining,Mining +439036,Mining,Mining +439033,Mining,Mining +436065,Mining,Mining +428290,Mining,Mining +428288,Mining,Mining +428286,Mining,Mining +425811,Mining,Mining +425810,Mining,Mining +425716,Mining,Mining +425715,Mining,Mining +425714,Mining,Mining +423085,Mining,Mining +423084,Mining,Mining +423083,Mining,Mining +516400,Regional Development,Regional Development +508550,Regional Development,Regional Development +480175,Regional Development,Regional Development +477730,Regional Development,Regional Development +473971,Regional Development,Regional Development +473970,Regional Development,Regional Development +470614,Regional Development,Regional Development +470611,Regional Development,Regional Development +470591,Regional Development,Regional Development +470589,Regional Development,Regional Development +465486,Regional Development,Regional Development +465484,Regional Development,Regional Development +460093,Regional Development,Regional Development +459633,Regional Development,Regional Development +458641,Regional Development,Regional Development +441708,Regional Development,Regional Development +439048,Regional Development,Regional Development +439041,Regional Development,Regional Development +439036,Regional Development,Regional Development +428288,Regional Development,Regional Development +425811,Regional Development,Regional Development +425810,Regional Development,Regional Development +425714,Regional Development,Regional Development +477730,Transportation,Transportation +465485,Transportation,Transportation +465481,Transportation,Transportation +460093,Transportation,Transportation +459633,Transportation,Transportation +457824,Transportation,Transportation +453887,Transportation,Transportation +453882,Transportation,Transportation +441708,Transportation,Transportation +441706,Transportation,Transportation +436065,Transportation,Transportation +428288,Transportation,Transportation +425715,Transportation,Transportation +423085,Transportation,Transportation +423083,Transportation,Transportation +516400,Transportation,Transportation +425505,Education,Education +440280,International Development,International Development +432881,International Development,International Development +447428,International Development,International Development +447421,International Development,International Development +422940,International Trade,International Trade +439314,International Trade,International Trade +430480,International Trade,International Trade +422940,Financial Institutions,Financial Institutions +425553,Health,Health +425552,Health,Health +462117,Health,Health +462014,Health,Health +448380,Health,Health +444126,Health,Health +424915,Transportation,Transportation +533292,Government Procurement,Government Procurement +438011,Agriculture,Agriculture +438003,Agriculture,Agriculture +465160,Agriculture,Agriculture +461718,Agriculture,Agriculture +458791,Agriculture,Agriculture +450458,Agriculture,Agriculture +450457,Agriculture,Agriculture +450456,Agriculture,Agriculture +438384,Small Business,Small Business +445045,Research and Development,Research and Development +443816,Research and Development,Research and Development +440742,Research and Development,Research and Development +431225,Research and Development,Research and Development +426348,Research and Development,Research and Development +424371,Research and Development,Research and Development +473717,Research and Development,Research and Development +458913,Research and Development,Research and Development +458912,Research and Development,Research and Development +456786,Research and Development,Research and Development +454943,Research and Development,Research and Development +454942,Research and Development,Research and Development +454183,Research and Development,Research and Development +423033,Health,Health +423038,Health,Health +425657,Agriculture,Agriculture +423110,Education,Education +455492,Education,Education +423117,Education,Education +463763,Housing,Housing +423143,Housing,Housing +541202,Housing,Housing +531218,Housing,Housing +531213,Housing,Housing +528622,Housing,Housing +525126,Housing,Housing +470059,Housing,Housing +470058,Housing,Housing +470057,Housing,Housing +470055,Housing,Housing +470054,Housing,Housing +466568,Housing,Housing +466545,Housing,Housing +466544,Housing,Housing +466537,Housing,Housing +463765,Housing,Housing +434369,Economic Development,Economic Development +424376,Health,Health +424374,Health,Health +442548,Health,Health +434370,Health,Health +428874,Health,Health +434370,Housing,Housing +428872,Infrastructure,Infrastructure +428870,Infrastructure,Infrastructure +424376,Infrastructure,Infrastructure +424374,Infrastructure,Infrastructure +442548,Infrastructure,Infrastructure +434370,Infrastructure,Infrastructure +434369,Regional Development,Regional Development +425033,Economic Development,Economic Development +425030,Economic Development,Economic Development +449070,Economic Development,Economic Development +449069,Economic Development,Economic Development +449068,Economic Development,Economic Development +441116,Economic Development,Economic Development +441112,Economic Development,Economic Development +425098,Employment and Training,Employment and Training +425030,Employment and Training,Employment and Training +449070,Employment and Training,Employment and Training +449069,Employment and Training,Employment and Training +441116,Employment and Training,Employment and Training +425030,Budget,Budget +425033,Municipalities,Municipalities +425030,Municipalities,Municipalities +425033,Regional Development,Regional Development +425030,Regional Development,Regional Development +449070,Regional Development,Regional Development +441116,Regional Development,Regional Development +441112,Regional Development,Regional Development +425098,Environment,Environment +425098,Small Business,Small Business +425033,Small Business,Small Business +449068,Small Business,Small Business +449069,Infrastructure,Infrastructure +441116,Infrastructure,Infrastructure +425098,Infrastructure,Infrastructure +425033,Infrastructure,Infrastructure +425030,Infrastructure,Infrastructure +446061,Economic Development,Economic Development +437128,Economic Development,Economic Development +541678,Economic Development,Economic Development +501068,Economic Development,Economic Development +472288,Economic Development,Economic Development +494911,Taxation and Finance,Taxation and Finance +468841,Taxation and Finance,Taxation and Finance +446062,Taxation and Finance,Taxation and Finance +435442,Taxation and Finance,Taxation and Finance +425957,Taxation and Finance,Taxation and Finance +426705,Economic Development,Economic Development +426350,Economic Development,Economic Development +428854,Economic Development,Economic Development +426705,International Development,International Development +426350,International Development,International Development +428854,International Development,International Development +426711,International Development,International Development +423282,Transportation,Transportation +423485,Sports,Sports +423482,Sports,Sports +431904,Sports,Sports +427742,Health,Health +424706,Health,Health +444809,Health,Health +427746,Health,Health +427745,Health,Health +427744,Health,Health +427742,Industry,Industry +424706,Industry,Industry +427746,Industry,Industry +427745,Industry,Industry +427744,Industry,Industry +427742,Research and Development,Research and Development +424706,Research and Development,Research and Development +427746,Research and Development,Research and Development +427745,Research and Development,Research and Development +427744,Research and Development,Research and Development +427994,Economic Development,Economic Development +427993,Economic Development,Economic Development +427996,Economic Development,Economic Development +427994,Industry,Industry +427993,Industry,Industry +427996,Industry,Industry +427994,Infrastructure,Infrastructure +427993,Infrastructure,Infrastructure +427996,Infrastructure,Infrastructure +435040,Economic Development,Economic Development +432878,Economic Development,Economic Development +432878,Employment and Training,Employment and Training +431526,Employment and Training,Employment and Training +446594,Employment and Training,Employment and Training +444757,Employment and Training,Employment and Training +436482,Employment and Training,Employment and Training +435040,Employment and Training,Employment and Training +432878,Industry,Industry +429894,Industry,Industry +426763,Government Procurement,Government Procurement +426763,Employment and Training,Employment and Training +426763,Industry,Industry +426763,Small Business,Small Business +426763,Infrastructure,Infrastructure +437422,Budget,Budget +437419,Budget,Budget +434340,Budget,Budget +434339,Budget,Budget +433331,Budget,Budget +432127,Budget,Budget +423408,Budget,Budget +542669,Budget,Budget +542668,Budget,Budget +540982,Budget,Budget +539543,Budget,Budget +539537,Budget,Budget +539536,Budget,Budget +538789,Budget,Budget +538099,Budget,Budget +538054,Budget,Budget +538043,Budget,Budget +537171,Budget,Budget +463520,Budget,Budget +448737,Budget,Budget +444405,Budget,Budget +444404,Budget,Budget +443067,Budget,Budget +437431,Budget,Budget +437430,Budget,Budget +437428,Budget,Budget +542617,Economic Development,Economic Development +542612,Economic Development,Economic Development +539547,Economic Development,Economic Development +539543,Economic Development,Economic Development +539539,Economic Development,Economic Development +539538,Economic Development,Economic Development +539537,Economic Development,Economic Development +539536,Economic Development,Economic Development +538099,Economic Development,Economic Development +538061,Economic Development,Economic Development +538054,Economic Development,Economic Development +538043,Economic Development,Economic Development +537171,Economic Development,Economic Development +537168,Economic Development,Economic Development +533220,Economic Development,Economic Development +530680,Economic Development,Economic Development +530679,Economic Development,Economic Development +530678,Economic Development,Economic Development +524026,Economic Development,Economic Development +520793,Economic Development,Economic Development +520790,Economic Development,Economic Development +513620,Economic Development,Economic Development +503556,Economic Development,Economic Development +483210,Economic Development,Economic Development +463519,Economic Development,Economic Development +446520,Economic Development,Economic Development +446519,Economic Development,Economic Development +446515,Economic Development,Economic Development +440789,Economic Development,Economic Development +437432,Economic Development,Economic Development +437431,Economic Development,Economic Development +437428,Economic Development,Economic Development +437419,Economic Development,Economic Development +433332,Economic Development,Economic Development +433331,Economic Development,Economic Development +423408,Economic Development,Economic Development +545179,Economic Development,Economic Development +542671,Economic Development,Economic Development +538061,Budget,Budget +538040,Budget,Budget +463519,Budget,Budget +451495,Budget,Budget +446520,Budget,Budget +446519,Budget,Budget +446518,Budget,Budget +446517,Budget,Budget +446515,Budget,Budget +443066,Budget,Budget +440792,Budget,Budget +440789,Budget,Budget +437432,Budget,Budget +437427,Budget,Budget +434338,Budget,Budget +433332,Budget,Budget +430423,Budget,Budget +423413,Budget,Budget +545180,Budget,Budget +542671,Budget,Budget +542617,Budget,Budget +540981,Budget,Budget +540980,Budget,Budget +539547,Budget,Budget +539541,Budget,Budget +539539,Budget,Budget +518686,Economic Development,Economic Development +516476,Economic Development,Economic Development +515068,Economic Development,Economic Development +512339,Economic Development,Economic Development +506587,Economic Development,Economic Development +506586,Economic Development,Economic Development +506585,Economic Development,Economic Development +483211,Economic Development,Economic Development +480952,Economic Development,Economic Development +480951,Economic Development,Economic Development +480950,Economic Development,Economic Development +463520,Economic Development,Economic Development +451495,Economic Development,Economic Development +448737,Economic Development,Economic Development +446518,Economic Development,Economic Development +446517,Economic Development,Economic Development +444405,Economic Development,Economic Development +444404,Economic Development,Economic Development +443067,Economic Development,Economic Development +443066,Economic Development,Economic Development +440792,Economic Development,Economic Development +437430,Economic Development,Economic Development +437427,Economic Development,Economic Development +437426,Economic Development,Economic Development +437422,Economic Development,Economic Development +434340,Economic Development,Economic Development +434339,Economic Development,Economic Development +434338,Economic Development,Economic Development +432127,Economic Development,Economic Development +423413,Economic Development,Economic Development +545180,Economic Development,Economic Development +545177,Economic Development,Economic Development +542669,Economic Development,Economic Development +542666,Economic Development,Economic Development +542613,Economic Development,Economic Development +540982,Economic Development,Economic Development +540981,Economic Development,Economic Development +540980,Economic Development,Economic Development +539541,Economic Development,Economic Development +538789,Economic Development,Economic Development +538040,Economic Development,Economic Development +533222,Economic Development,Economic Development +533221,Economic Development,Economic Development +530681,Economic Development,Economic Development +527433,Economic Development,Economic Development +527431,Economic Development,Economic Development +524028,Economic Development,Economic Development +524027,Economic Development,Economic Development +521008,Economic Development,Economic Development +520954,Economic Development,Economic Development +482350,Employment and Training,Employment and Training +478630,Employment and Training,Employment and Training +440892,Employment and Training,Employment and Training +474876,Government Procurement,Government Procurement +472328,Government Procurement,Government Procurement +440892,Government Procurement,Government Procurement +431655,Government Procurement,Government Procurement +478629,Government Procurement,Government Procurement +429831,Budget,Budget +429829,International Development,International Development +429828,International Development,International Development +448278,International Development,International Development +443058,International Development,International Development +429833,International Development,International Development +429832,International Development,International Development +429831,International Development,International Development +429833,International Relations,International Relations +429831,International Relations,International Relations +425761,Research and Development,Recherche et développement +455100,Research and Development,Recherche et développement +451967,Research and Development,Recherche et développement +449501,Research and Development,Recherche et développement +442745,Research and Development,Recherche et développement +435213,Research and Development,Recherche et développement +435211,Research and Development,Recherche et développement +430628,Research and Development,Recherche et développement +430627,Research and Development,Recherche et développement +423495,Research and Development,Research and Development +423493,Research and Development,Research and Development +449825,Research and Development,Research and Development +449824,Research and Development,Research and Development +449823,Research and Development,Research and Development +449822,Research and Development,Research and Development +447635,Research and Development,Research and Development +442591,Research and Development,Research and Development +439463,Research and Development,Research and Development +439458,Research and Development,Research and Development +432832,Research and Development,Research and Development +431121,Research and Development,Research and Development +426209,Research and Development,Research and Development +426208,Research and Development,Research and Development +423499,Research and Development,Research and Development +423498,Research and Development,Research and Development +423497,Research and Development,Research and Development +456360,Health,Health +506897,Transportation,Transportation +424737,Economic Development,Economic Development +424739,Economic Development,Economic Development +463796,Government Procurement,Government Procurement +421756,Government Procurement,Government Procurement +421786,Consumer Issues,Consumer Issues +437588,International Trade,International Trade +421822,Small Business,Small Business +450747,International Trade,International Trade +518891,Government Procurement,Government Procurement +466781,Privacy and Access to Information,Privacy and Access to Information +542529,Security,Security +438936,Government Procurement,Government Procurement +543163,Health,Health +543159,Research and Development,Research and Development +444413,International Trade,International Trade +422068,Agriculture,Agriculture +422092,Research and Development,Research and Development +511544,Justice and Law Enforcement,Justice and Law Enforcement +433323,Economic Development,Economic Development +433323,Energy,Energy +433323,Environment,Environment +433323,Industry,Industry +433323,Research and Development,Research and Development +422190,Consumer Issues,Consumer Issues +422201,Climate,Climate +422220,Security,Security +422250,Defence,Defence +421836,Defence,Defence +446715,Health,Health +422265,Immigration,Immigration +422304,Research and Development,Research and Development +498518,Environment,Environment +484555,Economic Development,Economic Development +422780,Economic Development,Développement économique +423603,Health,Health +423117,Intellectual Property,Intellectual Property +491231,Privacy and Access to Information,Privacy and Access to Information +462424,Economic Development,Economic Development +480527,Small Business,Small Business +426509,Consumer Issues,Consumer Issues +469152,Agriculture,Agriculture +470733,Budget,Budget +422539,Economic Development,Economic Development +469152,Employment and Training,Employment and Training +479008,Immigration,Immigration +422539,International Relations,International Relations +424237,International Trade,International Trade +441183,International Trade,International Trade +424954,Environment,Environment +424954,Regional Development,Regional Development +422639,Defence,Defence +427248,Energy,Energy +424507,Environment,Environment +427250,Research and Development,Research and Development +422654,Small Business,Small Business +422697,Consumer Issues,Consumer Issues +422697,Health,Health +422697,Small Business,Small Business +424548,Energy,Energy +424547,Industry,Industry +424548,Labour,Labour +424548,International Trade,International Trade +424548,Environment,Environment +424548,Employment and Training,Employment and Training +427533,Transportation,Transportation +422670,Transportation,Transportation +424544,Tourism,Tourism +434948,Economic Development,Economic Development +434950,Housing,Housing +448132,Consumer Issues,Consumer Issues +434652,Small Business,Small Business +434948,Municipalities,Municipalities +434950,Consumer Issues,Consumer Issues +434952,Consumer Issues,Consumer Issues +434950,Small Business,Small Business +434948,Small Business,Small Business +434952,Small Business,Small Business +434948,Tourism,Tourism +448132,Taxation and Finance,Taxation and Finance +445508,Government Procurement,Government Procurement +429786,International Trade,Commerce international +429786,International Development,Développement international +424961,Health,Health +423297,Research and Development,Recherche et développement +435365,Health,Health +423828,International Development,International Development +434364,Energy,Energy +457348,Environment,Environment +425141,Industry,Industry +433937,Energy,Energy +424601,Health,Santé +422767,Tourism,Tourism +422777,Justice and Law Enforcement,Justice and Law Enforcement +423605,Health,Health +427472,Consumer Issues,Consumer Issues +425503,Energy,Energy +425503,Environment,Environment +522627,Industry,Industry +522620,Privacy and Access to Information,Privacy and Access to Information +432815,Economic Development,Economic Development +431766,Health,Health +424956,Environment,Environment +422780,Intellectual Property,Intellectual Property +422812,Budget,Budget +462823,Economic Development,Economic Development +422812,Education,Education +482856,Health,Health +462823,Housing,Housing +528389,Infrastructure,Infrastructure +422809,Justice and Law Enforcement,Justice and Law Enforcement +462823,Regional Development,Regional Development +428736,Health,Health +422790,Government Procurement,Government Procurement +469564,Labour,Labour +457560,Agriculture,Agriculture +530248,Transportation,Transportation +529666,Climate,Climate +479002,International Trade,International Trade +437509,Internal Trade,Internal Trade +446721,Environment,Environment +426137,Economic Development,Economic Development +426137,Government Procurement,Government Procurement +426137,Research and Development,Research and Development +422801,Small Business,Small Business +422848,Labour,Labour +422847,Industry,Industry +422848,Industry,Industry +433937,Climate,Climate +459518,Internal Trade,Internal Trade +426149,Consumer Issues,Consumer Issues +426149,Health,Health +426149,Industry,Industry +460093,Economic Development,Economic Development +425716,Environment,Environment +465485,Fisheries,Fisheries +537467,Mining,Mining +537467,Regional Development,Regional Development +480175,Transportation,Transportation +432881,Education,Education +447412,International Development,International Development +432881,Research and Development,Research and Development +423292,International Trade,International Trade +423292,Financial Institutions,Financial Institutions +424686,Health,Health +424685,Health,Health +432078,Health,Health +424916,Transportation,Transportation +533247,Government Procurement,Government Procurement +533292,Transportation,Transportation +422991,International Trade,International Trade +423003,Economic Development,Economic Development +423004,Economic Development,Economic Development +423004,Industry,Industry +423004,Labour,Labour +423005,Economic Development,Economic Development +423005,Labour,Labour +423006,Economic Development,Economic Development +423006,Labour,Labour +423007,Economic Development,Economic Development +423007,Labour,Labour +423007,Industry,Industry +423008,Economic Development,Economic Development +423008,Labour,Labour +450455,Agriculture,Agriculture +438003,Labour,Labour +438011,International Trade,International Trade +438003,Immigration,Immigration +462004,Industry,Industry +451951,Small Business,Small Business +438317,Consumer Issues,Consumer Issues +445052,Research and Development,Research and Development +423034,Health,Health +423041,Health,Health +432957,Agriculture,Agriculture +423113,Education,Education +463764,Housing,Housing +442548,Economic Development,Economic Development +428869,Health,Health +442548,Housing,Housing +434369,Industry,Industry +434369,Infrastructure,Infrastructure +434370,Regional Development,Regional Development +442548,Taxation and Finance,Taxation and Finance +425098,Economic Development,Economic Development +441112,Employment and Training,Employment and Training +449069,Budget,Budget +425098,Mining,Mining +425098,Municipalities,Municipalities +425098,Regional Development,Regional Development +425098,Energy,Energy +425098,Climate,Climate +441112,Labour,Labour +449070,Environment,Environment +441112,Small Business,Small Business +449070,Infrastructure,Infrastructure +468841,Economic Development,Economic Development +501068,Taxation and Finance,Taxation and Finance +426707,Economic Development,Economic Development +426707,International Development,International Development +423268,International Trade,International Trade +425274,Transportation,Transportation +431903,Sports,Sports +427743,Health,Health +427743,Industry,Industry +427743,Research and Development,Research and Development +427995,Economic Development,Economic Development +427995,Industry,Industry +427995,Infrastructure,Infrastructure +427993,Security,Security +444757,Economic Development,Economic Development +432879,Employment and Training,Employment and Training +435040,Industry,Industry +424483,Infrastructure,Infrastructure +426764,Government Procurement,Government Procurement +426764,Employment and Training,Employment and Training +426764,Industry,Industry +426764,Small Business,Small Business +426764,Infrastructure,Infrastructure +437426,Budget,Budget +542668,Economic Development,Economic Development +539538,Budget,Budget +520792,Economic Development,Economic Development +451192,Intellectual Property,Intellectual Property +431655,Employment and Training,Employment and Training +476793,Government Procurement,Government Procurement +440892,Labour,Labour +448278,Budget,Budget +429830,International Development,International Development +443058,International Relations,International Relations +428921,Research and Development,Recherche et développement +423496,Research and Development,Research and Development +456361,Health,Health +456361,Budget,Budget +426054,Immigration,Immigration +429729,Industry,Industry +429729,International Trade,International Trade +429729,Labour,Labour +504489,Privacy and Access to Information,Privacy and Access to Information +423556,Privacy and Access to Information,Privacy and Access to Information +465825,Infrastructure,Infrastructure +431093,Regional Development,Regional Development +424644,Government Procurement,Government Procurement +439735,Health,Health +427521,International Trade,International Trade +427521,Labour,Labour +426054,Labour,Labour +504488,Privacy and Access to Information,Privacy and Access to Information +489827,Privacy and Access to Information,Privacy and Access to Information +455402,Privacy and Access to Information,Privacy and Access to Information +455383,Privacy and Access to Information,Privacy and Access to Information +423555,Privacy and Access to Information,Privacy and Access to Information +423553,Privacy and Access to Information,Privacy and Access to Information +423551,Privacy and Access to Information,Privacy and Access to Information +423543,Privacy and Access to Information,Privacy and Access to Information +516823,Privacy and Access to Information,Privacy and Access to Information +504492,Privacy and Access to Information,Privacy and Access to Information +504490,Privacy and Access to Information,Privacy and Access to Information +423550,Privacy and Access to Information,Privacy and Access to Information +423548,Privacy and Access to Information,Privacy and Access to Information +525348,Privacy and Access to Information,Privacy and Access to Information +521824,Privacy and Access to Information,Privacy and Access to Information +516824,Privacy and Access to Information,Privacy and Access to Information +515264,Privacy and Access to Information,Privacy and Access to Information +510122,Privacy and Access to Information,Privacy and Access to Information +510121,Privacy and Access to Information,Privacy and Access to Information +508440,Privacy and Access to Information,Privacy and Access to Information +504493,Privacy and Access to Information,Privacy and Access to Information +504487,Privacy and Access to Information,Privacy and Access to Information +501554,Privacy and Access to Information,Privacy and Access to Information +456559,Privacy and Access to Information,Privacy and Access to Information +455401,Privacy and Access to Information,Privacy and Access to Information +455382,Privacy and Access to Information,Privacy and Access to Information +455380,Privacy and Access to Information,Privacy and Access to Information +465824,Infrastructure,Infrastructure +423247,Infrastructure,Infrastructure +494575,Infrastructure,Infrastructure +428106,Regional Development,Regional Development +423247,Regional Development,Regional Development +425188,Infrastructure,Infrastructure +425187,Infrastructure,Infrastructure +425198,Infrastructure,Infrastructure +425188,Regional Development,Regional Development +425187,Regional Development,Regional Development +429812,Regional Development,Regional Development +425196,Regional Development,Regional Development +425187,Municipalities,Municipalities +425188,Employment and Training,Employment and Training +425187,Employment and Training,Employment and Training +425198,Employment and Training,Employment and Training +425197,Employment and Training,Employment and Training +425196,Employment and Training,Employment and Training +425192,Employment and Training,Employment and Training +425197,Labour,Labour +425196,Labour,Labour +425188,Budget,Budget +425187,Budget,Budget +425198,Budget,Budget +425192,Budget,Budget +425188,Economic Development,Economic Development +425187,Economic Development,Economic Development +429812,Economic Development,Economic Development +425198,Economic Development,Economic Development +425197,Economic Development,Economic Development +425196,Economic Development,Economic Development +462086,Transportation,Transportation +462085,Transportation,Transportation +462084,Transportation,Transportation +462082,Transportation,Transportation +461000,Transportation,Transportation +460999,Transportation,Transportation +460998,Transportation,Transportation +460997,Transportation,Transportation +459822,Transportation,Transportation +448081,Transportation,Transportation +448075,Transportation,Transportation +427850,Transportation,Transportation +427849,Transportation,Transportation +426195,Transportation,Transportation +426193,Transportation,Transportation +426191,Transportation,Transportation +424725,Transportation,Transportation +424723,Transportation,Transportation +424720,Transportation,Transportation +424717,Transportation,Transportation +424715,Transportation,Transportation +424713,Transportation,Transportation +527586,Transportation,Transportation +527584,Transportation,Transportation +527583,Transportation,Transportation +527582,Transportation,Transportation +527581,Transportation,Transportation +527580,Transportation,Transportation +518767,Transportation,Transportation +513646,Transportation,Transportation +507069,Transportation,Transportation +480830,Transportation,Transportation +476450,Transportation,Transportation +469480,Transportation,Transportation +469479,Transportation,Transportation +469478,Transportation,Transportation +469476,Transportation,Transportation +469473,Transportation,Transportation +446018,Agriculture,Agriculture +446017,Agriculture,Agriculture +446020,Agriculture,Agriculture +446020,Consumer Issues,Consumer Issues +446019,Consumer Issues,Consumer Issues +446018,Consumer Issues,Consumer Issues +446018,International Trade,International Trade +446017,International Trade,International Trade +446020,International Trade,International Trade +429392,Employment and Training,Employment and Training +426526,Employment and Training,Employment and Training +441048,Employment and Training,Employment and Training +496243,Economic Development,Economic Development +452793,Employment and Training,Employment and Training +452791,Employment and Training,Employment and Training +505549,Employment and Training,Employment and Training +442841,Financial Institutions,Financial Institutions +442840,Financial Institutions,Financial Institutions +455577,Financial Institutions,Financial Institutions +442853,Financial Institutions,Financial Institutions +442851,Financial Institutions,Financial Institutions +442850,Financial Institutions,Financial Institutions +442846,Financial Institutions,Financial Institutions +480270,Immigration,Immigration +478353,Immigration,Immigration +509052,Privacy and Access to Information,Privacy and Access to Information +502427,Privacy and Access to Information,Privacy and Access to Information +424071,Privacy and Access to Information,Privacy and Access to Information +424069,Privacy and Access to Information,Privacy and Access to Information +424068,Privacy and Access to Information,Privacy and Access to Information +424065,Privacy and Access to Information,Privacy and Access to Information +424062,Privacy and Access to Information,Privacy and Access to Information +424056,Privacy and Access to Information,Privacy and Access to Information +518312,Privacy and Access to Information,Privacy and Access to Information +452796,Small Business,Small Business +452793,Small Business,Small Business +452791,Small Business,Small Business +448279,Small Business,Small Business +439666,Small Business,Small Business +431336,Small Business,Small Business +431336,Security,Security +424073,Security,Security +445492,Security,Security +439673,Security,Security +425182,Economic Development,Economic Development +425181,Economic Development,Economic Development +425180,Economic Development,Economic Development +425181,Industry,Industry +425180,Industry,Industry +425183,Industry,Industry +425181,International Relations,International Relations +425180,International Relations,International Relations +425183,International Relations,International Relations +425181,International Trade,International Trade +425180,International Trade,International Trade +425183,International Trade,International Trade +441060,Pensions,Pensions +431873,Pensions,Pensions +431872,Pensions,Pensions +431871,Pensions,Pensions +431870,Pensions,Pensions +430877,Pensions,Pensions +430876,Pensions,Pensions +430874,Pensions,Pensions +430866,Pensions,Pensions +463207,Pensions,Pensions +455093,Economic Development,Economic Development +455081,Economic Development,Economic Development +452663,Economic Development,Economic Development +452662,Economic Development,Economic Development +449986,Economic Development,Economic Development +431227,Economic Development,Economic Development +481791,Economic Development,Economic Development +479840,Economic Development,Economic Development +479724,Economic Development,Economic Development +473445,Economic Development,Economic Development +473393,Economic Development,Economic Development +464493,Economic Development,Economic Development +462522,Economic Development,Economic Development +460564,Economic Development,Economic Development +459487,Economic Development,Economic Development +459486,Economic Development,Economic Development +484588,Economic Development,Economic Development +480104,Economic Development,Economic Development +455377,Economic Development,Economic Development +438417,Economic Development,Economic Development +435542,Economic Development,Economic Development +542916,Economic Development,Economic Development +541042,Economic Development,Economic Development +539489,Economic Development,Economic Development +538027,Economic Development,Economic Development +528521,Economic Development,Economic Development +516893,Economic Development,Economic Development +516891,Economic Development,Economic Development +516884,Economic Development,Economic Development +512893,Economic Development,Economic Development +507837,Economic Development,Economic Development +504366,Economic Development,Economic Development +484595,Economic Development,Economic Development +424625,Employment and Training,Employment and Training +424624,Employment and Training,Employment and Training +516895,Employment and Training,Employment and Training +516883,Employment and Training,Employment and Training +515710,Employment and Training,Employment and Training +510570,Employment and Training,Employment and Training +510568,Employment and Training,Employment and Training +507836,Employment and Training,Employment and Training +507835,Employment and Training,Employment and Training +507828,Employment and Training,Employment and Training +507818,Employment and Training,Employment and Training +507815,Employment and Training,Employment and Training +507812,Employment and Training,Employment and Training +491708,Employment and Training,Employment and Training +484587,Employment and Training,Employment and Training +466710,Employment and Training,Employment and Training +455376,Employment and Training,Employment and Training +451741,Employment and Training,Employment and Training +451730,Employment and Training,Employment and Training +451726,Employment and Training,Employment and Training +451724,Employment and Training,Employment and Training +451722,Employment and Training,Employment and Training +451721,Employment and Training,Employment and Training +451717,Employment and Training,Employment and Training +451715,Employment and Training,Employment and Training +451714,Employment and Training,Employment and Training +451712,Employment and Training,Employment and Training +451710,Employment and Training,Employment and Training +451707,Employment and Training,Employment and Training +438417,Employment and Training,Employment and Training +483580,Government Procurement,Government Procurement +466715,Government Procurement,Government Procurement +455379,Government Procurement,Government Procurement +448348,Government Procurement,Government Procurement +438417,Government Procurement,Government Procurement +438410,Government Procurement,Government Procurement +435546,Government Procurement,Government Procurement +435544,Government Procurement,Government Procurement +435542,Government Procurement,Government Procurement +435540,Government Procurement,Government Procurement +435538,Government Procurement,Government Procurement +435537,Government Procurement,Government Procurement +429534,Government Procurement,Government Procurement +429533,Government Procurement,Government Procurement +425976,Government Procurement,Government Procurement +424635,Government Procurement,Government Procurement +424628,Government Procurement,Government Procurement +424625,Government Procurement,Government Procurement +424624,Government Procurement,Government Procurement +542915,Government Procurement,Government Procurement +542911,Government Procurement,Government Procurement +538028,Government Procurement,Government Procurement +531414,Government Procurement,Government Procurement +516895,Government Procurement,Government Procurement +514689,Government Procurement,Government Procurement +510572,Government Procurement,Government Procurement +466703,Industry,Industry +466699,Industry,Industry +455376,Industry,Industry +451726,Industry,Industry +444388,Industry,Industry +438417,Industry,Industry +438408,Industry,Industry +435530,Industry,Industry +425983,Industry,Industry +531409,Industry,Industry +516894,Industry,Industry +507840,Industry,Industry +507839,Industry,Industry +501161,Industry,Industry +493132,Industry,Industry +493130,Industry,Industry +487217,Industry,Industry +487214,Industry,Industry +487212,Industry,Industry +487209,Industry,Industry +484586,Industry,Industry +484585,Industry,Industry +480105,Industry,Industry +480103,Industry,Industry +473849,Industry,Industry +471074,Industry,Industry +471068,Industry,Industry +466715,Industry,Industry +466712,Industry,Industry +466709,Industry,Industry +466708,Industry,Industry +466712,Privacy and Access to Information,Privacy and Access to Information +466709,Privacy and Access to Information,Privacy and Access to Information +455373,Privacy and Access to Information,Privacy and Access to Information +455372,Privacy and Access to Information,Privacy and Access to Information +451710,Privacy and Access to Information,Privacy and Access to Information +444387,Privacy and Access to Information,Privacy and Access to Information +435546,Privacy and Access to Information,Privacy and Access to Information +435542,Privacy and Access to Information,Privacy and Access to Information +435540,Privacy and Access to Information,Privacy and Access to Information +435538,Privacy and Access to Information,Privacy and Access to Information +435537,Privacy and Access to Information,Privacy and Access to Information +435530,Privacy and Access to Information,Privacy and Access to Information +429534,Privacy and Access to Information,Privacy and Access to Information +425976,Privacy and Access to Information,Privacy and Access to Information +424635,Privacy and Access to Information,Privacy and Access to Information +424628,Privacy and Access to Information,Privacy and Access to Information +424626,Privacy and Access to Information,Privacy and Access to Information +424625,Privacy and Access to Information,Privacy and Access to Information +424624,Privacy and Access to Information,Privacy and Access to Information +542913,Privacy and Access to Information,Privacy and Access to Information +534407,Privacy and Access to Information,Privacy and Access to Information +531412,Privacy and Access to Information,Privacy and Access to Information +531411,Privacy and Access to Information,Privacy and Access to Information +531410,Privacy and Access to Information,Privacy and Access to Information +528513,Privacy and Access to Information,Privacy and Access to Information +524614,Privacy and Access to Information,Privacy and Access to Information +524613,Privacy and Access to Information,Privacy and Access to Information +521365,Privacy and Access to Information,Privacy and Access to Information +519361,Privacy and Access to Information,Privacy and Access to Information +516890,Privacy and Access to Information,Privacy and Access to Information +516888,Privacy and Access to Information,Privacy and Access to Information +515708,Privacy and Access to Information,Privacy and Access to Information +510567,Privacy and Access to Information,Privacy and Access to Information +510565,Privacy and Access to Information,Privacy and Access to Information +510563,Privacy and Access to Information,Privacy and Access to Information +510562,Privacy and Access to Information,Privacy and Access to Information +510561,Privacy and Access to Information,Privacy and Access to Information +507806,Privacy and Access to Information,Privacy and Access to Information +504365,Privacy and Access to Information,Privacy and Access to Information +504364,Privacy and Access to Information,Privacy and Access to Information +504363,Privacy and Access to Information,Privacy and Access to Information +504362,Privacy and Access to Information,Privacy and Access to Information +504360,Privacy and Access to Information,Privacy and Access to Information +504357,Privacy and Access to Information,Privacy and Access to Information +534417,Research and Development,Research and Development +534393,Research and Development,Research and Development +448347,Research and Development,Research and Development +444388,Research and Development,Research and Development +444386,Research and Development,Research and Development +438417,Research and Development,Research and Development +438408,Research and Development,Research and Development +438400,Research and Development,Research and Development +425983,Research and Development,Research and Development +424621,Security,Security +424620,Security,Security +542914,Security,Security +541040,Security,Security +534402,Security,Security +534397,Security,Security +528512,Security,Security +528510,Security,Security +528507,Security,Security +528503,Security,Security +528500,Security,Security +524612,Security,Security +512894,Security,Security +487220,Security,Security +455379,Security,Security +455375,Security,Security +451746,Security,Security +451745,Security,Security +451712,Security,Security +444387,Security,Security +438415,Security,Security +435546,Security,Security +435542,Security,Security +435540,Security,Security +435538,Security,Security +435537,Security,Security +435530,Security,Security +429534,Security,Security +429531,Security,Security +425980,Security,Security +425976,Security,Security +425973,Security,Security +424628,Security,Security +424626,Security,Security +424625,Security,Security +429531,Small Business,Small Business +495236,Small Business,Small Business +451741,Small Business,Small Business +451735,Small Business,Small Business +451726,Small Business,Small Business +451724,Small Business,Small Business +451722,Small Business,Small Business +451721,Small Business,Small Business +451717,Small Business,Small Business +451715,Small Business,Small Business +451714,Small Business,Small Business +451712,Small Business,Small Business +451710,Small Business,Small Business +451707,Small Business,Small Business +435542,Small Business,Small Business +436704,Agriculture,Agriculture +429658,Health,Health +429657,Health,Health +429660,Health,Health +436706,International Trade,International Trade +436704,International Trade,International Trade +429660,International Trade,International Trade +429659,International Trade,International Trade +429658,International Trade,International Trade +424368,Security,Security +424365,Security,Security +435478,Security,Security +425009,Economic Development,Economic Development +425009,Research and Development,Research and Development +462366,Intellectual Property,Intellectual Property +446978,Intellectual Property,Intellectual Property +424452,Government Procurement,Government Procurement +424451,Government Procurement,Government Procurement +424450,Government Procurement,Government Procurement +424451,Privacy and Access to Information,Privacy and Access to Information +424450,Privacy and Access to Information,Privacy and Access to Information +424453,Privacy and Access to Information,Privacy and Access to Information +424453,Security,Security +424452,Security,Security +424451,Security,Security +479707,Climate,Climate +476910,Climate,Climate +476909,Climate,Climate +474352,Climate,Climate +474351,Climate,Climate +473069,Climate,Climate +473067,Climate,Climate +470466,Climate,Climate +468215,Climate,Climate +467959,Climate,Climate +467147,Climate,Climate +467126,Climate,Climate +467045,Climate,Climate +467041,Climate,Climate +464982,Climate,Climate +464383,Climate,Climate +464381,Climate,Climate +464379,Climate,Climate +464378,Climate,Climate +464376,Climate,Climate +464374,Climate,Climate +464372,Climate,Climate +464370,Climate,Climate +462467,Climate,Climate +539403,Climate,Climate +525898,Climate,Climate +519998,Climate,Climate +516887,Climate,Climate +507213,Climate,Climate +501043,Climate,Climate +495461,Climate,Climate +495456,Climate,Climate +490042,Climate,Climate +487328,Climate,Climate +487008,Climate,Climate +486586,Climate,Climate +483819,Climate,Climate +483818,Climate,Climate +483817,Climate,Climate +483813,Climate,Climate +481130,Climate,Climate +481129,Climate,Climate +481127,Climate,Climate +479722,Climate,Climate +479713,Climate,Climate +460143,International Trade,International Trade +460142,International Trade,International Trade +425939,Energy,Energy +425936,Energy,Energy +425941,Energy,Energy +425939,International Trade,International Trade +425936,International Trade,International Trade +425941,International Trade,International Trade +425939,Justice and Law Enforcement,Justice and Law Enforcement +425936,Justice and Law Enforcement,Justice and Law Enforcement +425941,Justice and Law Enforcement,Justice and Law Enforcement +425028,Municipalities,Municipalities +425028,Infrastructure,Infrastructure +425027,Infrastructure,Infrastructure +425035,Infrastructure,Infrastructure +425028,Budget,Budget +425027,Budget,Budget +425034,Budget,Budget +425032,Budget,Budget +425028,Economic Development,Economic Development +425027,Economic Development,Economic Development +425043,Economic Development,Economic Development +425035,Economic Development,Economic Development +425032,Economic Development,Economic Development +425035,Labour,Labour +425027,Labour,Labour +425028,Employment and Training,Employment and Training +425027,Employment and Training,Employment and Training +425043,Employment and Training,Employment and Training +425035,Employment and Training,Employment and Training +425034,Employment and Training,Employment and Training +425032,Employment and Training,Employment and Training +425029,Regional Development,Regional Development +425028,Regional Development,Regional Development +425035,Regional Development,Regional Development +424756,Defence,Defence +424754,Defence,Defence +428093,Defence,Defence +424756,Government Procurement,Government Procurement +424754,Government Procurement,Government Procurement +428093,Government Procurement,Government Procurement +428077,Industry,Industry +424754,Industry,Industry +424756,Infrastructure,Infrastructure +424754,Infrastructure,Infrastructure +424756,Security,Security +424754,Security,Security +425939,Economic Development,Economic Development +425936,Economic Development,Economic Development +425941,Economic Development,Economic Development +446617,Defence,Defence +446614,Defence,Defence +446617,Economic Development,Economic Development +446614,Economic Development,Economic Development +446617,Government Procurement,Government Procurement +446614,Government Procurement,Government Procurement +446617,International Trade,International Trade +446614,International Trade,International Trade +446617,Research and Development,Research and Development +446614,Research and Development,Research and Development +437403,Government Procurement,Government Procurement +434961,Government Procurement,Government Procurement +442362,Government Procurement,Government Procurement +442360,Government Procurement,Government Procurement +442358,Government Procurement,Government Procurement +437405,Government Procurement,Government Procurement +442358,Pensions,Pensions +437405,Pensions,Pensions +437404,Pensions,Pensions +437403,Pensions,Pensions +434972,Pensions,Pensions +434971,Pensions,Pensions +434970,Pensions,Pensions +434963,Pensions,Pensions +434961,Pensions,Pensions +432248,Pensions,Pensions +430691,Pensions,Pensions +428581,Pensions,Pensions +452058,Pensions,Pensions +442362,Pensions,Pensions +434961,Employment and Training,Employment and Training +430691,Employment and Training,Employment and Training +452058,Employment and Training,Employment and Training +442362,Employment and Training,Employment and Training +442360,Employment and Training,Employment and Training +442358,Employment and Training,Employment and Training +437405,Employment and Training,Employment and Training +437404,Employment and Training,Employment and Training +437403,Employment and Training,Employment and Training +434972,Employment and Training,Employment and Training +434971,Employment and Training,Employment and Training +434970,Employment and Training,Employment and Training +541664,Economic Development,Economic Development +539611,Economic Development,Economic Development +462490,Economic Development,Economic Development +449840,Economic Development,Economic Development +443321,Economic Development,Economic Development +443227,Economic Development,Economic Development +424536,Economic Development,Economic Development +526578,Economic Development,Economic Development +526577,Economic Development,Economic Development +526575,Economic Development,Economic Development +522927,Economic Development,Economic Development +522596,Economic Development,Economic Development +517728,Economic Development,Economic Development +495725,Economic Development,Economic Development +495723,Economic Development,Economic Development +493201,Economic Development,Economic Development +490805,Economic Development,Economic Development +487579,Economic Development,Economic Development +485080,Economic Development,Economic Development +481939,Economic Development,Economic Development +481541,Economic Development,Economic Development +481535,Economic Development,Economic Development +480095,Economic Development,Economic Development +480093,Economic Development,Economic Development +480087,Economic Development,Economic Development +480083,Economic Development,Economic Development +477955,Economic Development,Economic Development +477529,Economic Development,Economic Development +477522,Economic Development,Economic Development +477520,Economic Development,Economic Development +477515,Economic Development,Economic Development +477514,Economic Development,Economic Development +477509,Economic Development,Economic Development +475148,Economic Development,Economic Development +473745,Economic Development,Economic Development +449840,Labour,Labour +505909,Employment and Training,Employment and Training +437326,Defence,Defence +437325,Defence,Defence +432955,Defence,Defence +432950,Defence,Defence +432948,Defence,Defence +431819,Defence,Defence +430162,Defence,Defence +425380,Defence,Defence +425378,Defence,Defence +424991,Defence,Defence +499557,Defence,Defence +499480,Defence,Defence +470509,Defence,Defence +453205,Defence,Defence +425378,Economic Development,Economic Development +424991,Economic Development,Economic Development +499557,Economic Development,Economic Development +499480,Economic Development,Economic Development +470509,Economic Development,Economic Development +453205,Economic Development,Economic Development +437328,Economic Development,Economic Development +437326,Economic Development,Economic Development +432955,Economic Development,Economic Development +432950,Economic Development,Economic Development +432948,Economic Development,Economic Development +431819,Economic Development,Economic Development +430162,Economic Development,Economic Development +470509,Government Procurement,Government Procurement +453205,Government Procurement,Government Procurement +437328,Government Procurement,Government Procurement +437326,Government Procurement,Government Procurement +437325,Government Procurement,Government Procurement +432955,Government Procurement,Government Procurement +432950,Government Procurement,Government Procurement +432948,Government Procurement,Government Procurement +431819,Government Procurement,Government Procurement +430162,Government Procurement,Government Procurement +425380,Government Procurement,Government Procurement +425378,Government Procurement,Government Procurement +424991,Government Procurement,Government Procurement +499557,Government Procurement,Government Procurement +425378,Industry,Industry +424991,Industry,Industry +499557,Industry,Industry +499480,Industry,Industry +470509,Industry,Industry +453205,Industry,Industry +437328,Industry,Industry +437326,Industry,Industry +432955,Industry,Industry +432950,Industry,Industry +432948,Industry,Industry +431819,Industry,Industry +425378,Intellectual Property,Intellectual Property +424991,Intellectual Property,Intellectual Property +437328,Intellectual Property,Intellectual Property +432948,Intellectual Property,Intellectual Property +431819,Intellectual Property,Intellectual Property +430162,International Trade,International Trade +470509,International Trade,International Trade +437328,International Trade,International Trade +432955,International Trade,International Trade +432950,International Trade,International Trade +425378,Research and Development,Research and Development +424991,Research and Development,Research and Development +437328,Research and Development,Research and Development +432948,Research and Development,Research and Development +431819,Research and Development,Research and Development +431049,Climate,Climate +541237,Climate,Climate +539508,Climate,Climate +537405,Climate,Climate +537404,Climate,Climate +537402,Climate,Climate +537401,Climate,Climate +537399,Climate,Climate +537397,Climate,Climate +537388,Climate,Climate +537381,Climate,Climate +534242,Climate,Climate +531258,Climate,Climate +528574,Climate,Climate +528573,Climate,Climate +528571,Climate,Climate +528570,Climate,Climate +525471,Climate,Climate +525469,Climate,Climate +525447,Climate,Climate +521653,Climate,Climate +497664,Climate,Climate +494616,Climate,Climate +492669,Climate,Climate +489485,Climate,Climate +489456,Climate,Climate +489451,Climate,Climate +489450,Climate,Climate +486522,Climate,Climate +486521,Climate,Climate +486518,Climate,Climate +484235,Climate,Climate +484231,Climate,Climate +484061,Climate,Climate +484059,Climate,Climate +479240,Climate,Climate +427990,Defence,Defence +427990,Government Procurement,Government Procurement +427990,Infrastructure,Infrastructure +427990,Security,Security +463622,Security,Security +463621,Security,Security +451237,Security,Security +443077,Security,Security +443076,Security,Security +443075,Security,Security +443074,Security,Security +443073,Security,Security +440811,Security,Security +440810,Security,Security +434807,Security,Security +434802,Security,Security +434801,Security,Security +434798,Security,Security +434792,Security,Security +432994,Security,Security +432992,Security,Security +431906,Security,Security +430179,Security,Security +481885,Security,Security +465942,Security,Security +465941,Security,Security +465939,Security,Security +465938,Security,Security +476676,Economic Development,Economic Development +489453,Environment,Environment +489451,Environment,Environment +486522,Environment,Environment +484235,Environment,Environment +484232,Environment,Environment +479240,Environment,Environment +479239,Environment,Environment +466700,Environment,Environment +460991,Environment,Environment +460990,Environment,Environment +460989,Environment,Environment +460988,Environment,Environment +451160,Environment,Environment +437836,Environment,Environment +437835,Environment,Environment +433465,Environment,Environment +432058,Environment,Environment +431051,Environment,Environment +431049,Environment,Environment +428530,Environment,Environment +541237,Environment,Environment +539508,Environment,Environment +534237,Environment,Environment +531258,Environment,Environment +531256,Environment,Environment +525473,Environment,Environment +525466,Environment,Environment +525459,Environment,Environment +525451,Environment,Environment +519368,Environment,Environment +519366,Environment,Environment +517858,Environment,Environment +517701,Environment,Environment +517690,Environment,Environment +492669,Environment,Environment +489477,Environment,Environment +534237,Fisheries,Fisheries +476676,Fisheries,Fisheries +541235,Fisheries,Fisheries +425374,Industry,Industry +425374,International Trade,International Trade +425374,International Relations,International Relations +425374,Economic Development,Economic Development +428856,Industry,Industry +438124,International Relations,International Relations +428861,International Relations,International Relations +449178,International Relations,International Relations +428859,International Trade,International Trade +428856,International Trade,International Trade +449178,International Trade,International Trade +438125,International Trade,International Trade +438124,International Trade,International Trade +438121,International Trade,International Trade +434368,International Trade,International Trade +433805,International Trade,International Trade +433802,International Trade,International Trade +433793,International Trade,International Trade +433790,International Trade,International Trade +428866,International Trade,International Trade +428863,International Trade,International Trade +438121,Taxation and Finance,Taxation and Finance +434368,Taxation and Finance,Taxation and Finance +443759,Pensions,Pensions +443758,Pensions,Pensions +432492,Pensions,Pensions +432490,Pensions,Pensions +432487,Pensions,Pensions +432484,Pensions,Pensions +430969,Pensions,Pensions +430966,Pensions,Pensions +430961,Pensions,Pensions +458149,Pensions,Pensions +430603,Environment,Environment +427432,Economic Development,Développement économique +427431,Employment and Training,Emploi et formation +434356,Labour,Labour +434356,Tourism,Tourism +433972,Climate,Climat +432464,Climate,Climat +458939,Climate,Climat +428812,Environment,Environnement +428808,Environment,Environnement +458939,Environment,Environnement +456298,Environment,Environnement +456296,Environment,Environnement +450368,Environment,Environnement +450277,Environment,Environnement +450275,Environment,Environnement +450274,Environment,Environnement +448196,Environment,Environnement +448153,Environment,Environnement +443843,Environment,Environnement +443838,Environment,Environnement +443835,Environment,Environnement +442510,Environment,Environnement +442417,Environment,Environnement +442414,Environment,Environnement +438712,Environment,Environnement +438709,Environment,Environnement +438704,Environment,Environnement +438695,Environment,Environnement +438689,Environment,Environnement +436057,Environment,Environnement +436056,Environment,Environnement +432464,Environment,Environnement +432463,Environment,Environnement +432460,Environment,Environnement +428849,Environment,Environnement +450274,Justice and Law Enforcement,Justice et application des lois +443843,Justice and Law Enforcement,Justice et application des lois +442510,Justice and Law Enforcement,Justice et application des lois +442417,Justice and Law Enforcement,Justice et application des lois +442414,Justice and Law Enforcement,Justice et application des lois +438712,Justice and Law Enforcement,Justice et application des lois +438709,Justice and Law Enforcement,Justice et application des lois +438704,Justice and Law Enforcement,Justice et application des lois +438695,Justice and Law Enforcement,Justice et application des lois +438689,Justice and Law Enforcement,Justice et application des lois +432464,Justice and Law Enforcement,Justice et application des lois +432463,Justice and Law Enforcement,Justice et application des lois +432460,Justice and Law Enforcement,Justice et application des lois +457537,Justice and Law Enforcement,Justice et application des lois +457534,Justice and Law Enforcement,Justice et application des lois +457527,Justice and Law Enforcement,Justice et application des lois +450368,Justice and Law Enforcement,Justice et application des lois +450277,Justice and Law Enforcement,Justice et application des lois +429165,Energy,Energy +429160,Energy,Energy +471500,Energy,Energy +438367,Energy,Energy +483015,Environment,Environment +452213,Environment,Environment +438367,Environment,Environment +438323,Environment,Environment +429165,Environment,Environment +481758,Industry,Industry +473961,Industry,Industry +442613,International Relations,International Relations +442611,International Relations,International Relations +438874,International Relations,International Relations +438871,International Relations,International Relations +435252,International Relations,International Relations +435249,International Relations,International Relations +435240,International Relations,International Relations +435229,International Relations,International Relations +435227,International Relations,International Relations +424650,International Relations,International Relations +456428,International Relations,International Relations +455807,International Relations,International Relations +452711,International Relations,International Relations +452707,International Relations,International Relations +450707,International Relations,International Relations +450703,International Relations,International Relations +447934,International Relations,International Relations +447928,International Relations,International Relations +445273,International Relations,International Relations +445272,International Relations,International Relations +443714,International Relations,International Relations +442618,International Relations,International Relations +442616,International Relations,International Relations +434286,Energy,Énergie +539919,Energy,Énergie +428445,Energy,Énergie +428444,Energy,Énergie +428266,Energy,Énergie +425979,Energy,Énergie +534950,Energy,Énergie +525910,Energy,Énergie +525872,Energy,Énergie +493852,Energy,Énergie +493850,Energy,Énergie +490787,Energy,Énergie +485503,Energy,Énergie +485200,Energy,Énergie +484601,Energy,Énergie +482630,Energy,Énergie +481816,Energy,Énergie +481321,Energy,Énergie +481217,Energy,Énergie +430159,Government Procurement,Government Procurement +430159,Employment and Training,Employment and Training +425196,Infrastructure,Infrastructure +425189,Regional Development,Regional Development +425188,Municipalities,Municipalities +425189,Employment and Training,Employment and Training +425192,Small Business,Small Business +425198,Labour,Labour +425189,Budget,Budget +425189,Economic Development,Economic Development +462087,Transportation,Transportation +423743,International Trade,International Trade +423164,Employment and Training,Employment and Training +446019,Agriculture,Agriculture +446017,Consumer Issues,Consumer Issues +446019,International Trade,International Trade +432360,Employment and Training,Employment and Training +518313,Economic Development,Economic Development +452796,Employment and Training,Employment and Training +442843,Financial Institutions,Financial Institutions +496241,Immigration,Immigration +518311,Privacy and Access to Information,Privacy and Access to Information +496227,Small Business,Small Business +439667,Security,Security +425183,Economic Development,Economic Development +425182,Industry,Industry +425182,International Relations,International Relations +425182,International Trade,International Trade +458205,Pensions,Pensions +458445,Economic Development,Economic Development +484593,Economic Development,Economic Development +424635,Employment and Training,Employment and Training +510560,Government Procurement,Government Procurement +466705,Industry,Industry +504356,Privacy and Access to Information,Privacy and Access to Information +424635,Research and Development,Research and Development +424624,Security,Security +435533,Small Business,Small Business +436706,Agriculture,Agriculture +429659,Health,Health +429657,International Trade,International Trade +432368,Pensions,Pensions +424359,Intellectual Property,Intellectual Property +424359,Mining,Mining +424369,Security,Security +427104,Economic Development,Economic Development +427104,Research and Development,Research and Development +424401,Intellectual Property,Intellectual Property +425658,International Relations,International Relations +434291,Education,Education +424453,Government Procurement,Government Procurement +424452,Privacy and Access to Information,Privacy and Access to Information +424450,Security,Security +426230,Health,Health +479709,Climate,Climate +525898,International Trade,International Trade +426761,Fisheries,Fisheries +425940,Energy,Energy +425940,International Trade,International Trade +425940,Justice and Law Enforcement,Justice and Law Enforcement +425029,Municipalities,Municipalities +425034,Small Business,Small Business +425029,Infrastructure,Infrastructure +425029,Budget,Budget +425029,Economic Development,Economic Development +425043,Labour,Labour +425029,Employment and Training,Employment and Training +425032,Regional Development,Regional Development +428077,Defence,Defence +428077,Government Procurement,Government Procurement +428093,Industry,Industry +428093,Infrastructure,Infrastructure +424754,Research and Development,Research and Development +428077,Security,Security +424754,Transportation,Transportation +425869,Government Procurement,Government Procurement +425868,Government Procurement,Government Procurement +425940,Economic Development,Economic Development +454658,Defence,Defence +454658,Economic Development,Economic Development +454658,Government Procurement,Government Procurement +454658,Industry,Industry +454658,Intellectual Property,Intellectual Property +454658,International Trade,International Trade +454658,Regional Development,Regional Development +454658,Research and Development,Research and Development +437404,Government Procurement,Government Procurement +442360,Pensions,Pensions +434963,Employment and Training,Employment and Training +424530,Employment and Training,Employment and Training +541665,Economic Development,Economic Development +424536,Industry,Industry +424536,Labour,Labour +424549,Employment and Training,Employment and Training +424549,Labour,Labour +437328,Defence,Defence +425380,Economic Development,Economic Development +499480,Government Procurement,Government Procurement +425380,Industry,Industry +425380,Intellectual Property,Intellectual Property +432948,International Trade,International Trade +432948,Regional Development,Regional Development +425380,Research and Development,Research and Development +479239,Climate,Climate +427991,Defence,Defence +427991,Government Procurement,Government Procurement +427991,Infrastructure,Infrastructure +427991,Security,Security +424754,Municipalities,Municipalities +463624,Security,Security +528575,Economic Development,Economic Development +489456,Environment,Environment +537382,Fisheries,Fisheries +427242,Industry,Industry +427242,International Trade,International Trade +427242,International Relations,International Relations +427242,Economic Development,Economic Development +424606,International Trade,International Trade +425572,Transportation,Transportation +425575,Transportation,Transportation +434368,Economic Development,Economic Development +428866,Industry,Industry +438125,International Relations,International Relations +428861,International Trade,International Trade +438124,Taxation and Finance,Taxation and Finance +458148,Pensions,Pensions +430604,Environment,Environment +432247,Economic Development,Développement économique +432247,Employment and Training,Emploi et formation +434357,Immigration,Immigration +434357,Taxation and Finance,Taxation and Finance +434357,Labour,Labour +434357,Employment and Training,Employment and Training +434357,Tourism,Tourism +450269,Climate,Climat +428822,Environment,Environnement +450275,Justice and Law Enforcement,Justice et application des lois +444162,Climate,Climate +438321,Energy,Energy +488776,Environment,Environment +485958,Industry,Industry +438367,Taxation and Finance,Taxation and Finance +425621,Employment and Training,Employment and Training +425621,Industry,Industry +425621,Labour,Labour +442615,International Relations,International Relations +434287,Energy,Énergie +429903,Agriculture,Agriculture +429903,Internal Trade,Commerce intérieur +429903,International Trade,Commerce international +429457,Environment,Environment +433901,Tourism,Tourism +434022,Economic Development,Economic Development +427011,Industry,Industry +434022,Taxation and Finance,Taxation and Finance +433807,International Trade,International Trade +427012,International Relations,International Relations +434022,Justice and Law Enforcement,Justice and Law Enforcement +442749,Infrastructure,Infrastructure +442086,Infrastructure,Infrastructure +457179,Infrastructure,Infrastructure +427618,Economic Development,Economic Development +427618,Government Procurement,Government Procurement +424764,Health,Health +425010,Economic Development,Economic Development +427348,International Trade,International Trade +427001,Tourism,Tourism +431284,Climate,Climate +431284,Economic Development,Economic Development +431284,Employment and Training,Employment and Training +426357,Industry,Industry +431286,International Development,International Development +431284,International Relations,International Relations +440236,Industry,Industry +440941,Internal Trade,Internal Trade +440941,Regional Development,Regional Development +440719,Government Procurement,Government Procurement +429930,Infrastructure,Infrastructure +426443,Government Procurement,Government Procurement +523132,Defence,Defence +520197,Economic Development,Economic Development +523132,Industry,Industry +424786,Economic Development,Economic Development +529000,Climate,Climate +476272,International Development,International Development +425566,Health,Santé +430567,Government Procurement,Government Procurement +473850,Agriculture,Agriculture +461354,Health,Health +461351,Industry,Industry +442636,Intellectual Property,Propriété intellectuelle +436953,Employment and Training,Employment and Training +449082,Employment and Training,Employment and Training +472796,Health,Health +472796,Housing,Housing +424867,Justice and Law Enforcement,Justice and Law Enforcement +425113,Agriculture,Agriculture +427588,International Trade,International Trade +427202,Environment,Environment +430409,Immigration,Immigration +431727,Labour,Labour +428537,Industry,Industry +424954,Economic Development,Economic Development +451112,Agriculture,Agriculture +425549,International Relations,International Relations +429731,Environment,Environment +426806,Health,Health +432960,Employment and Training,Employment and Training +474680,Budget,Budget +432960,Labour,Labour +436793,Transportation,Transportation +427328,Health,Health +427328,Government Procurement,Government Procurement +424985,Transportation,Transportation +425003,Transportation,Transportation +433590,Agriculture,Agriculture +433590,Environment,Environment +487378,Regional Development,Regional Development +490814,Energy,Energy +425002,Environment,Environment +425007,Economic Development,Economic Development +425008,Tourism,Tourism +425019,Intellectual Property,Intellectual Property +427987,Health,Health +427987,Sports,Sports +427987,Transportation,Transportation +427987,Environment,Environment +428768,Health,Health +428768,Taxation and Finance,Taxation and Finance +480216,Energy,Énergie +480214,Energy,Énergie +478367,Energy,Énergie +478363,Energy,Énergie +475172,Energy,Énergie +475171,Energy,Énergie +475170,Energy,Énergie +475169,Energy,Énergie +465191,Energy,Énergie +458510,Energy,Énergie +446421,Energy,Énergie +446420,Energy,Énergie +444125,Energy,Énergie +440583,Energy,Énergie +440582,Energy,Énergie +440581,Energy,Énergie +440580,Energy,Énergie +440579,Energy,Énergie +425195,Agriculture,Agriculture +425194,Agriculture,Agriculture +425195,Internal Trade,Commerce intérieur +425194,Internal Trade,Commerce intérieur +425195,International Trade,Commerce international +425194,International Trade,Commerce international +429455,Environment,Environment +425618,Environment,Environment +436189,Environment,Environment +436069,Environment,Environment +436068,Environment,Environment +436067,Environment,Environment +436066,Environment,Environment +433903,Environment,Environment +433901,Environment,Environment +430435,Environment,Environment +429462,Environment,Environment +429458,Environment,Environment +427012,Economic Development,Economic Development +427011,Economic Development,Economic Development +434023,Economic Development,Economic Development +434023,Industry,Industry +434022,Industry,Industry +427012,Industry,Industry +427012,Taxation and Finance,Taxation and Finance +427011,Taxation and Finance,Taxation and Finance +434023,Taxation and Finance,Taxation and Finance +427012,International Trade,International Trade +427011,International Trade,International Trade +439297,International Trade,International Trade +434023,International Trade,International Trade +434022,International Trade,International Trade +434021,International Trade,International Trade +427011,International Relations,International Relations +427012,Justice and Law Enforcement,Justice and Law Enforcement +427011,Justice and Law Enforcement,Justice and Law Enforcement +434023,Justice and Law Enforcement,Justice and Law Enforcement +442748,Infrastructure,Infrastructure +442081,Infrastructure,Infrastructure +471368,Infrastructure,Infrastructure +464594,Infrastructure,Infrastructure +457178,Infrastructure,Infrastructure +452262,Infrastructure,Infrastructure +451428,Infrastructure,Infrastructure +450036,Infrastructure,Infrastructure +442756,Infrastructure,Infrastructure +442755,Infrastructure,Infrastructure +442754,Infrastructure,Infrastructure +442753,Infrastructure,Infrastructure +442752,Infrastructure,Infrastructure +442750,Infrastructure,Infrastructure +442083,Infrastructure,Infrastructure +442080,Infrastructure,Infrastructure +471369,Infrastructure,Infrastructure +469102,Infrastructure,Infrastructure +469101,Infrastructure,Infrastructure +457183,Infrastructure,Infrastructure +451431,Infrastructure,Infrastructure +451429,Infrastructure,Infrastructure +450623,Infrastructure,Infrastructure +442751,Infrastructure,Infrastructure +442747,Infrastructure,Infrastructure +452260,Infrastructure,Infrastructure +451427,Infrastructure,Infrastructure +450625,Infrastructure,Infrastructure +450624,Infrastructure,Infrastructure +457181,Infrastructure,Infrastructure +427591,Economic Development,Economic Development +424763,Health,Health +424762,Health,Health +424765,Health,Health +424882,Economic Development,Economic Development +424864,Economic Development,Economic Development +427349,Economic Development,Economic Development +427348,Economic Development,Economic Development +427347,Economic Development,Economic Development +427001,Economic Development,Economic Development +427001,International Trade,International Trade +424882,International Trade,International Trade +427349,International Trade,International Trade +425010,Tourism,Tourism +424882,Tourism,Tourism +427349,Tourism,Tourism +427348,Tourism,Tourism +427347,Tourism,Tourism +431282,Climate,Climate +431280,Climate,Climate +431288,Climate,Climate +431286,Climate,Climate +431282,Economic Development,Economic Development +431280,Economic Development,Economic Development +431288,Economic Development,Economic Development +431286,Economic Development,Economic Development +431282,Employment and Training,Employment and Training +431280,Employment and Training,Employment and Training +431288,Employment and Training,Employment and Training +431286,Employment and Training,Employment and Training +426355,Industry,Industry +426354,Industry,Industry +431288,Industry,Industry +431286,Industry,Industry +431284,Industry,Industry +431282,Industry,Industry +431280,Industry,Industry +431284,International Development,International Development +431282,International Development,International Development +431288,International Development,International Development +431282,International Relations,International Relations +431280,International Relations,International Relations +431288,International Relations,International Relations +431286,International Relations,International Relations +435880,Industry,Industry +424784,Industry,Industry +440941,Industry,Industry +440940,Industry,Industry +435880,Regional Development,Regional Development +424784,Regional Development,Regional Development +429930,Government Procurement,Government Procurement +426442,Government Procurement,Government Procurement +523128,Defence,Defence +520197,Defence,Defence +426443,Defence,Defence +426442,Defence,Defence +523134,Defence,Defence +426443,Economic Development,Economic Development +426442,Economic Development,Economic Development +523134,Economic Development,Economic Development +523132,Economic Development,Economic Development +523128,Industry,Industry +520197,Industry,Industry +426443,Industry,Industry +426442,Industry,Industry +523134,Industry,Industry +519882,Climate,Climate +467940,Climate,Climate +467944,International Development,International Development +457833,International Development,International Development +439161,International Development,International Development +504098,International Development,International Development +500714,International Development,International Development +425541,Health,Santé +425223,Health,Santé +453848,Health,Santé +450921,Health,Santé +429923,Health,Santé +429922,Health,Santé +427168,Health,Santé +427166,Health,Santé +430566,Government Procurement,Government Procurement +430565,Government Procurement,Government Procurement +451769,Government Procurement,Government Procurement +451767,Government Procurement,Government Procurement +451766,Government Procurement,Government Procurement +438530,Government Procurement,Government Procurement +438077,Government Procurement,Government Procurement +430569,Government Procurement,Government Procurement +430568,Government Procurement,Government Procurement +461354,Agriculture,Agriculture +461349,Agriculture,Agriculture +425042,Agriculture,Agriculture +481154,Agriculture,Agriculture +474063,Agriculture,Agriculture +461349,Health,Health +425042,Health,Health +461349,Industry,Industry +425042,Industry,Industry +461354,Industry,Industry +461352,Industry,Industry +435963,Intellectual Property,Propriété intellectuelle +435591,Intellectual Property,Propriété intellectuelle +428513,Intellectual Property,Propriété intellectuelle +442642,Intellectual Property,Propriété intellectuelle +442641,Intellectual Property,Propriété intellectuelle +442640,Intellectual Property,Propriété intellectuelle +434688,Employment and Training,Employment and Training +424856,Employment and Training,Employment and Training +424857,Employment and Training,Employment and Training +465676,Health,Health +465500,Health,Health +424867,Health,Health +424866,Health,Health +465676,Housing,Housing +465500,Housing,Housing +424867,Housing,Housing +480215,Housing,Housing +478723,Housing,Housing +478452,Housing,Housing +476985,Housing,Housing +474314,Housing,Housing +474309,Housing,Housing +424866,Justice and Law Enforcement,Justice and Law Enforcement +424917,Environment,Environment +424910,Environment,Environment +545231,Environment,Environment +545230,Environment,Environment +544973,Environment,Environment +544972,Environment,Environment +544971,Environment,Environment +544683,Environment,Environment +542648,Environment,Environment +542647,Environment,Environment +542293,Environment,Environment +542287,Environment,Environment +540883,Environment,Environment +540101,Environment,Environment +540100,Environment,Environment +538862,Environment,Environment +536273,Environment,Environment +536272,Environment,Environment +536271,Environment,Environment +533421,Environment,Environment +533115,Environment,Environment +533112,Environment,Environment +533105,Environment,Environment +528797,Environment,Environment +528390,Environment,Environment +528067,Environment,Environment +526981,Environment,Environment +524374,Environment,Environment +524373,Environment,Environment +524001,Environment,Environment +524000,Environment,Environment +523765,Environment,Environment +520712,Environment,Environment +520606,Environment,Environment +520563,Environment,Environment +520355,Environment,Environment +520354,Environment,Environment +516662,Environment,Environment +516169,Environment,Environment +515114,Environment,Environment +515112,Environment,Environment +514874,Environment,Environment +514873,Environment,Environment +514872,Environment,Environment +514626,Environment,Environment +514444,Environment,Environment +514426,Environment,Environment +514421,Environment,Environment +514416,Environment,Environment +514412,Environment,Environment +506280,Environment,Environment +503169,Environment,Environment +500097,Environment,Environment +497894,Environment,Environment +497858,Environment,Environment +495006,Environment,Environment +494751,Environment,Environment +494634,Environment,Environment +494385,Environment,Environment +494384,Environment,Environment +489016,Environment,Environment +484084,Environment,Environment +484082,Environment,Environment +484078,Environment,Environment +480321,Environment,Environment +480320,Environment,Environment +480319,Environment,Environment +480318,Environment,Environment +480317,Environment,Environment +477440,Environment,Environment +477436,Environment,Environment +466152,Environment,Environment +466151,Environment,Environment +465812,Environment,Environment +463546,Environment,Environment +453704,Environment,Environment +449158,Environment,Environment +449154,Environment,Environment +445498,Environment,Environment +440847,Environment,Environment +440846,Environment,Environment +439890,Environment,Environment +436797,Environment,Environment +432795,Environment,Environment +432794,Environment,Environment +430174,Immigration,Immigration +431726,Labour,Labour +427246,Labour,Labour +428535,Industry,Industry +451111,Agriculture,Agriculture +446674,Agriculture,Agriculture +462436,Environment,Environment +426804,Health,Health +432959,Employment and Training,Employment and Training +432958,Employment and Training,Employment and Training +458026,Employment and Training,Employment and Training +458025,Employment and Training,Employment and Training +458024,Employment and Training,Employment and Training +432969,Employment and Training,Employment and Training +432967,Employment and Training,Employment and Training +432966,Employment and Training,Employment and Training +432965,Employment and Training,Employment and Training +432964,Employment and Training,Employment and Training +432963,Employment and Training,Employment and Training +432962,Employment and Training,Employment and Training +432961,Employment and Training,Employment and Training +474679,Budget,Budget +474676,Budget,Budget +474682,Budget,Budget +474681,Budget,Budget +432959,Labour,Labour +432958,Labour,Labour +440637,Labour,Labour +440636,Labour,Labour +436794,Labour,Labour +436793,Labour,Labour +432969,Labour,Labour +432967,Labour,Labour +432966,Labour,Labour +432965,Labour,Labour +432964,Labour,Labour +432963,Labour,Labour +432962,Labour,Labour +432961,Labour,Labour +427359,Transportation,Transportation +427358,Transportation,Transportation +442601,Transportation,Transportation +442600,Transportation,Transportation +440637,Transportation,Transportation +440636,Transportation,Transportation +436909,Transportation,Transportation +436794,Transportation,Transportation +425001,Transportation,Transportation +493140,Agriculture,Agriculture +493137,Agriculture,Agriculture +517561,Environment,Environment +467513,Energy,Energy +427985,Health,Health +427982,Health,Health +427985,Sports,Sports +427982,Sports,Sports +427985,Transportation,Transportation +427982,Transportation,Transportation +427985,Environment,Environment +427982,Environment,Environment +428766,Health,Health +428759,Health,Health +442656,Health,Health +428773,Health,Health +428771,Health,Health +428766,Taxation and Finance,Taxation and Finance +428759,Taxation and Finance,Taxation and Finance +428773,Taxation and Finance,Taxation and Finance +428771,Taxation and Finance,Taxation and Finance +425033,Industry,Industry +425033,Government Procurement,Government Procurement +445641,International Trade,International Trade +433887,International Trade,International Trade +432116,International Trade,International Trade +456115,Taxation and Finance,Taxation and Finance +433887,Taxation and Finance,Taxation and Finance +456117,Taxation and Finance,Taxation and Finance +428961,Health,Health +428960,Health,Health +438686,Health,Health +435774,Health,Health +432612,Health,Health +426844,Taxation and Finance,Taxation and Finance +426842,Taxation and Finance,Taxation and Finance +428962,Taxation and Finance,Taxation and Finance +428961,Taxation and Finance,Taxation and Finance +428960,Taxation and Finance,Taxation and Finance +428958,Taxation and Finance,Taxation and Finance +425784,International Development,International Development +425780,International Development,International Development +431426,Regional Development,Regional Development +431425,Regional Development,Regional Development +425795,Regional Development,Regional Development +425790,Regional Development,Regional Development +425174,International Trade,International Trade +425172,International Trade,International Trade +431426,International Trade,International Trade +431425,International Trade,International Trade +431424,International Trade,International Trade +430970,Pensions,Pensions +428412,Agriculture,Agriculture +428411,Agriculture,Agriculture +447295,Agriculture,Agriculture +447292,Agriculture,Agriculture +439976,Agriculture,Agriculture +428425,Agriculture,Agriculture +428420,Agriculture,Agriculture +428419,Agriculture,Agriculture +428418,Agriculture,Agriculture +428416,Agriculture,Agriculture +428415,Agriculture,Agriculture +428414,Agriculture,Agriculture +428418,Consumer Issues,Consumer Issues +428416,Consumer Issues,Consumer Issues +428415,Consumer Issues,Consumer Issues +428414,Consumer Issues,Consumer Issues +428413,Consumer Issues,Consumer Issues +428412,Consumer Issues,Consumer Issues +428411,Consumer Issues,Consumer Issues +447295,Consumer Issues,Consumer Issues +447292,Consumer Issues,Consumer Issues +440986,Consumer Issues,Consumer Issues +439976,Consumer Issues,Consumer Issues +434136,Consumer Issues,Consumer Issues +428425,Consumer Issues,Consumer Issues +428420,Consumer Issues,Consumer Issues +428412,Economic Development,Economic Development +428411,Economic Development,Economic Development +447295,Economic Development,Economic Development +447292,Economic Development,Economic Development +428425,Economic Development,Economic Development +428420,Economic Development,Economic Development +428419,Economic Development,Economic Development +428418,Economic Development,Economic Development +428416,Economic Development,Economic Development +428415,Economic Development,Economic Development +428414,Economic Development,Economic Development +428412,Health,Health +428411,Health,Health +447295,Health,Health +447292,Health,Health +440986,Health,Health +439977,Health,Health +439976,Health,Health +434136,Health,Health +428425,Health,Health +428420,Health,Health +428419,Health,Health +428418,Health,Health +428416,Health,Health +428415,Health,Health +428414,Health,Health +439598,Energy,Energy +428090,Energy,Energy +439607,Energy,Energy +439605,Energy,Energy +439604,Energy,Energy +439602,Energy,Energy +439598,Environment,Environment +428090,Environment,Environment +439607,Environment,Environment +439605,Environment,Environment +439604,Environment,Environment +439602,Environment,Environment +428096,Climate,Climate +428094,Climate,Climate +428096,Environment,Environment +428094,Environment,Environment +428105,Environment,Environment +428096,Energy,Energy +428094,Energy,Energy +428105,Energy,Energy +449473,Fisheries,Fisheries +449472,Fisheries,Fisheries +444288,Fisheries,Fisheries +443530,Fisheries,Fisheries +443528,Fisheries,Fisheries +506035,Fisheries,Fisheries +463977,Fisheries,Fisheries +452919,Fisheries,Fisheries +452918,Fisheries,Fisheries +452917,Fisheries,Fisheries +452915,Fisheries,Fisheries +452914,Fisheries,Fisheries +452913,Fisheries,Fisheries +452912,Fisheries,Fisheries +452911,Fisheries,Fisheries +452910,Fisheries,Fisheries +452909,Fisheries,Fisheries +449487,Fisheries,Fisheries +449485,Fisheries,Fisheries +449484,Fisheries,Fisheries +449481,Fisheries,Fisheries +449480,Fisheries,Fisheries +449478,Fisheries,Fisheries +449476,Fisheries,Fisheries +449475,Fisheries,Fisheries +449578,Health,Health +438565,Health,Health +438565,Industry,Industry +433169,Industry,Industry +438565,Intellectual Property,Intellectual Property +431199,Consumer Issues,Consumer Issues +431198,Consumer Issues,Consumer Issues +431203,Consumer Issues,Consumer Issues +431199,Small Business,Small Business +431198,Small Business,Small Business +431203,Small Business,Small Business +431199,Tourism,Tourism +431198,Tourism,Tourism +431203,Tourism,Tourism +431538,Consumer Issues,Consumer Issues +431536,Consumer Issues,Consumer Issues +431578,Consumer Issues,Consumer Issues +431577,Consumer Issues,Consumer Issues +431539,Economic Development,Economic Development +431538,Economic Development,Economic Development +431578,Economic Development,Economic Development +431538,Health,Health +431536,Health,Health +431578,Health,Health +431577,Health,Health +431538,International Trade,International Trade +431536,International Trade,International Trade +431578,International Trade,International Trade +431577,International Trade,International Trade +431577,Research and Development,Research and Development +425434,Climate,Climate +425431,Climate,Climate +465956,Climate,Climate +465951,Climate,Climate +465947,Climate,Climate +465733,Climate,Climate +465732,Climate,Climate +465730,Climate,Climate +465727,Climate,Climate +465726,Climate,Climate +465723,Climate,Climate +465722,Climate,Climate +465721,Climate,Climate +465720,Climate,Climate +465719,Climate,Climate +465716,Climate,Climate +465715,Climate,Climate +465714,Climate,Climate +465713,Climate,Climate +452785,Climate,Climate +452780,Climate,Climate +448038,Climate,Climate +448034,Climate,Climate +442403,Climate,Climate +439289,Climate,Climate +439284,Climate,Climate +448052,Research and Development,Research and Development +448042,Research and Development,Research and Development +425462,Research and Development,Research and Development +425457,Research and Development,Research and Development +425434,Research and Development,Research and Development +425431,Research and Development,Research and Development +465708,Research and Development,Research and Development +450198,Research and Development,Research and Development +433083,Employment and Training,Employment and Training +433082,Employment and Training,Employment and Training +436347,Employment and Training,Employment and Training +436346,Employment and Training,Employment and Training +436345,Employment and Training,Employment and Training +433085,Employment and Training,Employment and Training +436346,Education,Education +436345,Education,Education +436346,Health,Health +436552,Economic Development,Economic Development +425505,Economic Development,Economic Development +447428,Economic Development,Economic Development +447421,Economic Development,Economic Development +447412,Economic Development,Economic Development +447406,Economic Development,Economic Development +432881,Regional Development,Regional Development +425505,Regional Development,Regional Development +450960,Regional Development,Regional Development +444172,Regional Development,Regional Development +436553,Regional Development,Regional Development +451619,Health,Health +433250,Health,Health +466669,Health,Health +451622,Health,Health +429592,Government Procurement,Government Procurement +429592,Labour,Labour +425790,Infrastructure,Infrastructure +425780,Infrastructure,Infrastructure +429406,Privacy and Access to Information,Privacy and Access to Information +459698,Consumer Issues,Consumer Issues +428000,Consumer Issues,Consumer Issues +461816,Consumer Issues,Consumer Issues +428001,Justice and Law Enforcement,Justice and Law Enforcement +428000,Justice and Law Enforcement,Justice and Law Enforcement +459698,Justice and Law Enforcement,Justice and Law Enforcement +443515,Justice and Law Enforcement,Justice and Law Enforcement +428001,Privacy and Access to Information,Privacy and Access to Information +461815,Privacy and Access to Information,Privacy and Access to Information +461813,Privacy and Access to Information,Privacy and Access to Information +459698,Privacy and Access to Information,Privacy and Access to Information +471730,Health,Health +471729,Health,Health +425930,Health,Health +508443,Health,Health +425931,Health,Health +514833,Climate,Climate +514488,Climate,Climate +446421,Climate,Climate +446420,Climate,Climate +440583,Climate,Climate +440582,Climate,Climate +440581,Climate,Climate +440580,Climate,Climate +440579,Climate,Climate +434287,Climate,Climate +434286,Climate,Climate +428445,Climate,Climate +428444,Climate,Climate +428266,Climate,Climate +425979,Climate,Climate +512257,Climate,Climate +510198,Climate,Climate +510196,Climate,Climate +503149,Climate,Climate +503148,Climate,Climate +493852,Climate,Climate +493850,Climate,Climate +490787,Climate,Climate +487887,Climate,Climate +485503,Climate,Climate +485200,Climate,Climate +482630,Climate,Climate +481816,Climate,Climate +481217,Climate,Climate +480216,Climate,Climate +480214,Climate,Climate +478367,Climate,Climate +475172,Climate,Climate +475171,Climate,Climate +475169,Climate,Climate +475167,Climate,Climate +473412,Climate,Climate +473404,Climate,Climate +469803,Climate,Climate +469801,Climate,Climate +465191,Climate,Climate +437071,Climate,Climate +437070,Climate,Climate +437071,Defence,Defence +437070,Energy,Energy +437070,Government Procurement,Government Procurement +457858,Industry,Industry +458850,Defence,Defence +442657,Defence,Defence +533255,Defence,Defence +530734,Defence,Defence +489067,Defence,Defence +478446,Defence,Defence +475915,Defence,Defence +470830,Defence,Defence +470823,Defence,Defence +469145,Defence,Defence +459260,Defence,Defence +442657,Government Procurement,Government Procurement +530734,Government Procurement,Government Procurement +489067,Government Procurement,Government Procurement +478446,Government Procurement,Government Procurement +475915,Government Procurement,Government Procurement +459260,Government Procurement,Government Procurement +458892,Government Procurement,Government Procurement +458850,Government Procurement,Government Procurement +450278,Industry,Industry +442657,Industry,Industry +530734,Industry,Industry +489067,Industry,Industry +459260,Industry,Industry +458892,Industry,Industry +484734,Industry,Industry +481847,Industry,Industry +477551,Industry,Industry +475403,Industry,Industry +475394,Industry,Industry +475385,Industry,Industry +473284,Industry,Industry +473273,Industry,Industry +473271,Industry,Industry +470653,Industry,Industry +467653,Industry,Industry +467646,Industry,Industry +426151,Industry,Industry +532209,Industry,Industry +519954,Industry,Industry +515704,Industry,Industry +436108,Climate,Climate +544121,Climate,Climate +426197,Climate,Climate +489238,Climate,Climate +534867,International Relations,International Relations +517721,International Relations,International Relations +464989,International Relations,International Relations +439959,International Relations,International Relations +438920,International Relations,International Relations +537562,International Relations,International Relations +534916,International Relations,International Relations +534910,International Relations,International Relations +534906,International Relations,International Relations +534878,International Relations,International Relations +534873,International Relations,International Relations +431890,Health,Health +431888,Health,Health +427762,Health,Health +427761,Health,Health +427760,Health,Health +427759,Health,Health +427758,Health,Health +436502,Health,Health +433008,Health,Health +431892,Health,Health +428949,International Relations,International Relations +426351,International Relations,International Relations +452444,International Relations,International Relations +452443,International Relations,International Relations +452442,International Relations,International Relations +435782,International Relations,International Relations +435778,International Relations,International Relations +431341,International Relations,International Relations +431339,International Relations,International Relations +431332,International Relations,International Relations +431325,International Relations,International Relations +431323,International Relations,International Relations +431321,International Relations,International Relations +427759,Budget,Budget +427758,Budget,Budget +436502,Budget,Budget +427762,Budget,Budget +427761,Budget,Budget +427760,Research and Development,Research and Development +427759,Research and Development,Research and Development +436502,Research and Development,Research and Development +431892,Research and Development,Research and Development +427762,Research and Development,Research and Development +426500,Tourism,Tourism +434662,Government Procurement,Government Procurement +433387,Government Procurement,Government Procurement +433386,Government Procurement,Government Procurement +431098,Government Procurement,Government Procurement +426777,Government Procurement,Government Procurement +426743,Government Procurement,Government Procurement +426726,Government Procurement,Government Procurement +426723,Government Procurement,Government Procurement +450041,Government Procurement,Government Procurement +449036,Government Procurement,Government Procurement +434665,Government Procurement,Government Procurement +434664,Government Procurement,Government Procurement +426752,Government Procurement,Government Procurement +426751,Government Procurement,Government Procurement +426750,Government Procurement,Government Procurement +426748,Government Procurement,Government Procurement +426747,Government Procurement,Government Procurement +426746,Government Procurement,Government Procurement +426741,Government Procurement,Government Procurement +426736,Government Procurement,Government Procurement +426734,Government Procurement,Government Procurement +426730,Government Procurement,Government Procurement +453348,Government Procurement,Government Procurement +429213,Energy,Energy +429201,Energy,Energy +442766,Energy,Energy +442762,Energy,Energy +429210,Environment,Environment +429201,Environment,Environment +443797,Environment,Environment +443796,Environment,Environment +442766,Environment,Environment +442764,Environment,Environment +442762,Environment,Environment +439047,Environment,Environment +439039,Environment,Environment +436149,Environment,Environment +436148,Environment,Environment +433623,Environment,Environment +429218,Environment,Environment +539880,Climate,Climate +531763,Climate,Climate +439362,Climate,Climate +439200,Climate,Climate +426812,Climate,Climate +545224,Climate,Climate +542807,Climate,Climate +542804,Climate,Climate +435813,Economic Development,Economic Development +432558,Economic Development,Economic Development +426335,Economic Development,Economic Development +531668,Economic Development,Economic Development +503569,Economic Development,Economic Development +495513,Economic Development,Economic Development +467623,Economic Development,Economic Development +449668,Economic Development,Economic Development +439274,Economic Development,Economic Development +435816,Economic Development,Economic Development +458726,Industry,Industry +427144,Intellectual Property,Intellectual Property +427143,Intellectual Property,Intellectual Property +444548,Intellectual Property,Intellectual Property +444547,Intellectual Property,Intellectual Property +427761,Employment and Training,Employment and Training +427759,Employment and Training,Employment and Training +427758,Employment and Training,Employment and Training +496751,Taxation and Finance,Taxation and Finance +496311,Taxation and Finance,Taxation and Finance +427045,Health,Health +427044,Health,Health +427042,Health,Health +427041,Health,Health +427040,Health,Health +427039,Health,Health +427038,Health,Health +427037,Health,Health +460821,Health,Health +453382,Health,Health +453381,Health,Health +453380,Health,Health +453379,Health,Health +453378,Health,Health +453377,Health,Health +427048,Health,Health +427047,Health,Health +427037,Research and Development,Research and Development +427045,Small Business,Small Business +427042,Small Business,Small Business +453381,Small Business,Small Business +453379,Small Business,Small Business +453378,Small Business,Small Business +427038,Taxation and Finance,Taxation and Finance +453378,Taxation and Finance,Taxation and Finance +427047,Taxation and Finance,Taxation and Finance +427046,Taxation and Finance,Taxation and Finance +427045,Taxation and Finance,Taxation and Finance +427042,Taxation and Finance,Taxation and Finance +427040,Taxation and Finance,Taxation and Finance +501291,Industry,Industry +501290,Industry,Industry +467810,Industry,Industry +467804,Industry,Industry +460734,Industry,Industry +460733,Industry,Industry +459454,Industry,Industry +428829,Labour,Labour +428827,Labour,Labour +431268,Employment and Training,Employment and Training +431267,Employment and Training,Employment and Training +431276,Employment and Training,Employment and Training +431275,Employment and Training,Employment and Training +431274,Employment and Training,Employment and Training +427091,Industry,Industry +427090,Industry,Industry +427091,Research and Development,Research and Development +427090,Research and Development,Research and Development +427103,International Development,International Development +430705,Security,Security +427141,Labour,Labour +492204,Labour,Labour +457884,Labour,Labour +457883,Labour,Labour +457882,Labour,Labour +456453,Labour,Labour +456452,Labour,Labour +452750,Labour,Labour +513616,Climate,Climate +445268,Climate,Climate +543422,Climate,Climate +535916,Climate,Climate +535915,Climate,Climate +535912,Climate,Climate +535911,Climate,Climate +535910,Climate,Climate +535909,Climate,Climate +535908,Climate,Climate +535906,Climate,Climate +531609,Climate,Climate +527149,Climate,Climate +523140,Climate,Climate +523136,Climate,Climate +523131,Climate,Climate +523124,Climate,Climate +518181,Climate,Climate +514321,Climate,Climate +513635,Climate,Climate +513634,Climate,Climate +513633,Climate,Climate +513632,Climate,Climate +513631,Climate,Climate +513630,Climate,Climate +513629,Climate,Climate +513628,Climate,Climate +513627,Climate,Climate +513626,Climate,Climate +513624,Climate,Climate +513623,Climate,Climate +513622,Climate,Climate +513621,Climate,Climate +513619,Climate,Climate +427253,Infrastructure,Infrastructure +427251,Infrastructure,Infrastructure +430180,Infrastructure,Infrastructure +449068,Industry,Industry +449069,Government Procurement,Government Procurement +425376,Financial Institutions,Financial Institutions +425073,Intellectual Property,Intellectual Property +425100,Education,Education +425100,Health,Health +445646,International Trade,International Trade +456116,Taxation and Finance,Taxation and Finance +425123,Intellectual Property,Intellectual Property +428962,Health,Health +426845,Taxation and Finance,Taxation and Finance +425795,International Development,International Development +425784,Regional Development,Regional Development +425795,International Trade,International Trade +432599,Energy,Energy +432599,Research and Development,Research and Development +432599,Economic Development,Economic Development +425250,Education,Education +425250,Intellectual Property,Intellectual Property +429192,Government Procurement,Government Procurement +429188,Health,Health +431294,International Development,International Development +431946,Pensions,Pensions +425253,Government Procurement,Government Procurement +425253,Regional Development,Regional Development +425253,Economic Development,Economic Development +425253,Research and Development,Research and Development +425253,Energy,Energy +425253,Infrastructure,Infrastructure +428413,Agriculture,Agriculture +428419,Consumer Issues,Consumer Issues +428413,Economic Development,Economic Development +428413,Health,Health +439600,Energy,Energy +439600,Environment,Environment +428090,Economic Development,Economic Development +428105,Climate,Climate +428104,Environment,Environment +428104,Energy,Energy +449474,Fisheries,Fisheries +449581,Health,Health +449578,Industry,Industry +449578,Intellectual Property,Intellectual Property +431201,Consumer Issues,Consumer Issues +431201,Small Business,Small Business +431201,Tourism,Tourism +425418,Infrastructure,Infrastructure +431539,Consumer Issues,Consumer Issues +431577,Economic Development,Economic Development +431536,Government Procurement,Government Procurement +431539,Health,Health +431539,International Trade,International Trade +431578,Research and Development,Research and Development +439264,Climate,Climate +448068,Research and Development,Research and Development +433084,Employment and Training,Employment and Training +436347,Education,Education +436347,Health,Health +436553,Economic Development,Economic Development +436552,Regional Development,Regional Development +425550,Infrastructure,Infrastructure +425575,Small Business,Small Business +425575,Tourism,Tourism +425609,Energy,Energy +425609,Environment,Environment +451620,Health,Health +431044,Government Procurement,Government Procurement +431044,Labour,Labour +427201,Environment,Environment +425795,Infrastructure,Infrastructure +433138,Privacy and Access to Information,Privacy and Access to Information +461813,Consumer Issues,Consumer Issues +440526,Justice and Law Enforcement,Justice and Law Enforcement +443515,Privacy and Access to Information,Privacy and Access to Information +425905,Defence,Defence +425929,International Trade,International Trade +471731,Health,Health +471728,Health,Health +425966,Immigration,Immigration +425964,Infrastructure,Infrastructure +458510,Climate,Climate +457858,Climate,Climate +457858,Defence,Defence +437071,Energy,Energy +457858,Government Procurement,Government Procurement +437071,Industry,Industry +458892,Defence,Defence +450278,Government Procurement,Government Procurement +458850,Industry,Industry +493167,Industry,Industry +431258,Transportation,Transportation +443005,Climate,Climate +426236,International Relations,International Relations +426231,International Relations,International Relations +426232,International Relations,International Relations +534868,International Relations,International Relations +431891,Health,Health +431316,International Relations,International Relations +426376,Forestry,Forestry +426376,Official Languages,Official Languages +426376,Municipalities,Municipalities +426390,Official Languages,Official Languages +426390,Municipalities,Municipalities +426390,Forestry,Forestry +427760,Budget,Budget +427761,Research and Development,Research and Development +431197,Infrastructure,Infrastructure +432075,Tourism,Tourism +426506,Research and Development,Research and Development +430573,International Trade,International Trade +430573,Economic Development,Economic Development +426629,Research and Development,Research and Development +426633,Defence,Defence +426633,Fisheries,Fisheries +426633,Internal Trade,Internal Trade +426633,Regional Development,Regional Development +426640,Fisheries,Fisheries +426640,International Trade,International Trade +426640,Defence,Defence +426640,Regional Development,Regional Development +426650,International Relations,International Relations +434663,Government Procurement,Government Procurement +452210,Government Procurement,Government Procurement +429218,Energy,Energy +429213,Environment,Environment +542803,Climate,Climate +435815,Economic Development,Economic Development +426867,Education,Education +462442,Industry,Industry +431277,Infrastructure,Infrastructure +437766,Climate,Climate +437766,Environment,Environment +426923,Environment,Environment +426923,Infrastructure,Infrastructure +426928,Environment,Environment +426928,Infrastructure,Infrastructure +426932,Infrastructure,Infrastructure +426932,Environment,Environment +426942,Environment,Environment +426942,Infrastructure,Infrastructure +427145,Intellectual Property,Intellectual Property +427762,Employment and Training,Employment and Training +426980,Economic Development,Economic Development +427008,Small Business,Small Business +518578,Taxation and Finance,Taxation and Finance +427357,International Trade,International Trade +427188,Environment,Environment +453378,Budget,Budget +427046,Health,Health +427048,Research and Development,Research and Development +427047,Small Business,Small Business +427039,Taxation and Finance,Taxation and Finance +427052,International Trade,International Trade +539189,Industry,Industry +428834,Labour,Labour +431270,Employment and Training,Employment and Training +427092,Industry,Industry +427092,Research and Development,Research and Development +434321,Housing,Housing +465750,Industry,Industry +465750,Health,Health +427495,International Development,International Development +427108,Defence,Defence +432631,Infrastructure,Infrastructure +432631,Security,Security +432631,Transportation,Transportation +427142,Labour,Labour +513617,Climate,Climate +428733,Infrastructure,Infrastructure +434232,Employment and Training,Employment and Training +430821,Infrastructure,Infrastructure +430821,Security,Security +448574,Economic Development,Economic Development +443686,Employment and Training,Employment and Training +443686,Labour,Labour +475150,Industry,Industry +445462,Economic Development,Economic Development +434212,Employment and Training,Employment and Training +443667,Labour,Labour +439527,Economic Development,Economic Development +439527,Energy,Energy +453512,Environment,Environment +427236,Infrastructure,Infrastructure +453512,Regional Development,Regional Development +444782,Small Business,Small Business +453512,Tourism,Tourism +427211,Environment,Environment +429356,Economic Development,Economic Development +429356,Employment and Training,Employment and Training +429356,Industry,Industry +429356,Small Business,Small Business +437033,Climate,Climate +453074,Economic Development,Economic Development +437033,Energy,Energy +429404,Environment,Environment +429404,Infrastructure,Infrastructure +450267,International Relations,International Relations +434468,Regional Development,Regional Development +446429,Economic Development,Economic Development +446431,Regional Development,Regional Development +446431,Energy,Energy +446431,Industry,Industry +446431,International Development,International Development +446431,Environment,Environment +446429,Climate,Climate +446431,Research and Development,Research and Development +446466,Intellectual Property,Intellectual Property +440333,Agriculture,Agriculture +433974,Climate,Climate +433976,Consumer Issues,Consumer Issues +427374,Economic Development,Economic Development +440333,Energy,Energy +433974,Environment,Environment +440333,Health,Health +433976,Industry,Industry +433976,Small Business,Small Business +427376,Transportation,Transportation +438205,Health,Health +436839,Taxation and Finance,Taxation and Finance +439741,Employment and Training,Employment and Training +437740,Employment and Training,Employment and Training +450072,Employment and Training,Employment and Training +447203,Employment and Training,Employment and Training +446396,Employment and Training,Employment and Training +444517,Employment and Training,Employment and Training +443768,Employment and Training,Employment and Training +437740,Labour,Labour +466877,Industry,Industry +464841,Industry,Industry +541557,Industry,Industry +541551,Industry,Industry +539544,Industry,Industry +534085,Industry,Industry +533831,Industry,Industry +533830,Industry,Industry +533827,Industry,Industry +531672,Industry,Industry +524640,Industry,Industry +524639,Industry,Industry +524638,Industry,Industry +522109,Industry,Industry +516595,Industry,Industry +515311,Industry,Industry +513783,Industry,Industry +513781,Industry,Industry +504686,Industry,Industry +504684,Industry,Industry +504683,Industry,Industry +501845,Industry,Industry +501780,Industry,Industry +498227,Industry,Industry +498226,Industry,Industry +498225,Industry,Industry +495035,Industry,Industry +492886,Industry,Industry +492884,Industry,Industry +490529,Industry,Industry +484048,Industry,Industry +484034,Industry,Industry +481677,Industry,Industry +479266,Industry,Industry +434209,Employment and Training,Employment and Training +434208,Employment and Training,Employment and Training +448783,Employment and Training,Employment and Training +446366,Employment and Training,Employment and Training +445462,Employment and Training,Employment and Training +445460,Employment and Training,Employment and Training +443667,Employment and Training,Employment and Training +442887,Employment and Training,Employment and Training +442886,Employment and Training,Employment and Training +442392,Employment and Training,Employment and Training +439276,Employment and Training,Employment and Training +439265,Employment and Training,Employment and Training +437734,Employment and Training,Employment and Training +436602,Employment and Training,Employment and Training +436388,Employment and Training,Employment and Training +436387,Employment and Training,Employment and Training +442887,Labour,Labour +442886,Labour,Labour +439276,Labour,Labour +439265,Labour,Labour +437734,Labour,Labour +434209,Labour,Labour +446366,Labour,Labour +439508,Economic Development,Economic Development +439505,Economic Development,Economic Development +453512,Economic Development,Economic Development +453511,Economic Development,Economic Development +453510,Economic Development,Economic Development +453509,Economic Development,Economic Development +444782,Economic Development,Economic Development +439508,Energy,Energy +439505,Energy,Energy +453512,Energy,Energy +453509,Energy,Energy +453509,Environment,Environment +439527,Environment,Environment +439508,Environment,Environment +439505,Environment,Environment +427238,Environment,Environment +427237,Environment,Environment +427236,Environment,Environment +427235,Environment,Environment +427232,Environment,Environment +427235,Infrastructure,Infrastructure +427232,Infrastructure,Infrastructure +453512,Infrastructure,Infrastructure +453511,Infrastructure,Infrastructure +453510,Infrastructure,Infrastructure +453509,Infrastructure,Infrastructure +444782,Infrastructure,Infrastructure +439527,Infrastructure,Infrastructure +439508,Infrastructure,Infrastructure +439505,Infrastructure,Infrastructure +427238,Infrastructure,Infrastructure +427237,Infrastructure,Infrastructure +444782,Regional Development,Regional Development +439508,Regional Development,Regional Development +453511,Tourism,Tourism +453510,Tourism,Tourism +429355,Economic Development,Economic Development +429354,Economic Development,Economic Development +429359,Economic Development,Economic Development +429358,Economic Development,Economic Development +429357,Economic Development,Economic Development +429355,Employment and Training,Employment and Training +429354,Employment and Training,Employment and Training +429359,Employment and Training,Employment and Training +429358,Employment and Training,Employment and Training +429357,Employment and Training,Employment and Training +429355,Industry,Industry +429354,Industry,Industry +429359,Industry,Industry +429358,Industry,Industry +429357,Industry,Industry +429355,Small Business,Small Business +429354,Small Business,Small Business +429359,Small Business,Small Business +429358,Small Business,Small Business +429357,Small Business,Small Business +453073,Economic Development,Economic Development +450267,Economic Development,Economic Development +445712,Economic Development,Economic Development +445709,Economic Development,Economic Development +445708,Economic Development,Economic Development +445707,Economic Development,Economic Development +442513,Economic Development,Economic Development +437033,Economic Development,Economic Development +434468,Economic Development,Economic Development +429410,Economic Development,Economic Development +429405,Economic Development,Economic Development +429404,Economic Development,Economic Development +429398,Economic Development,Economic Development +453077,Economic Development,Economic Development +453076,Economic Development,Economic Development +453075,Economic Development,Economic Development +429412,Energy,Energy +429411,Energy,Energy +453077,Energy,Energy +429402,Environment,Environment +429398,Environment,Environment +453073,Environment,Environment +445712,Environment,Environment +445709,Environment,Environment +445708,Environment,Environment +445707,Environment,Environment +442513,Environment,Environment +437033,Environment,Environment +429412,Environment,Environment +429405,Environment,Environment +429402,Infrastructure,Infrastructure +429398,Infrastructure,Infrastructure +453076,Infrastructure,Infrastructure +453075,Infrastructure,Infrastructure +453074,Infrastructure,Infrastructure +445712,Infrastructure,Infrastructure +445709,Infrastructure,Infrastructure +445708,Infrastructure,Infrastructure +445707,Infrastructure,Infrastructure +429412,Infrastructure,Infrastructure +429411,Infrastructure,Infrastructure +429410,Infrastructure,Infrastructure +429405,Infrastructure,Infrastructure +429412,Regional Development,Regional Development +429402,Regional Development,Regional Development +437033,Regional Development,Regional Development +446466,Economic Development,Economic Development +446431,Economic Development,Economic Development +446430,Economic Development,Economic Development +446430,Regional Development,Regional Development +446429,Regional Development,Regional Development +446466,Regional Development,Regional Development +446430,Energy,Energy +446429,Energy,Energy +446466,Energy,Energy +446430,Industry,Industry +446429,Industry,Industry +446466,Industry,Industry +446430,International Development,International Development +446429,International Development,International Development +446466,International Development,International Development +446430,Environment,Environment +446429,Environment,Environment +446466,Environment,Environment +446466,Climate,Climate +446431,Climate,Climate +446430,Climate,Climate +446430,Research and Development,Research and Development +446429,Research and Development,Research and Development +446466,Research and Development,Research and Development +446431,Intellectual Property,Intellectual Property +446430,Intellectual Property,Intellectual Property +446429,Intellectual Property,Intellectual Property +427371,Agriculture,Agriculture +433973,Climate,Climate +427372,Climate,Climate +440333,Climate,Climate +433974,Consumer Issues,Consumer Issues +440333,Economic Development,Economic Development +433974,Energy,Energy +433973,Energy,Energy +433973,Environment,Environment +427372,Environment,Environment +433974,Industry,Industry +433973,Industry,Industry +438204,Health,Health +438203,Health,Health +441871,Health,Health +438210,Health,Health +438209,Health,Health +438208,Health,Health +438207,Health,Health +438206,Health,Health +427329,Taxation and Finance,Taxation and Finance +470156,Taxation and Finance,Taxation and Finance +455700,Taxation and Finance,Taxation and Finance +436840,Taxation and Finance,Taxation and Finance +429706,Immigration,Immigration +429705,Immigration,Immigration +429706,International Relations,International Relations +429705,International Relations,International Relations +495028,Privacy and Access to Information,Privacy and Access to Information +504686,Privacy and Access to Information,Privacy and Access to Information +437919,Security,Security +428233,Consumer Issues,Consumer Issues +428232,Consumer Issues,Consumer Issues +442104,Consumer Issues,Consumer Issues +437707,Consumer Issues,Consumer Issues +437706,Consumer Issues,Consumer Issues +437705,Consumer Issues,Consumer Issues +431111,Consumer Issues,Consumer Issues +489309,Health,Health +489305,Health,Health +483541,Health,Health +483537,Health,Health +481093,Health,Health +481092,Health,Health +481091,Health,Health +479081,Health,Health +479080,Health,Health +479079,Health,Health +479078,Health,Health +469546,Health,Health +466368,Health,Health +466367,Health,Health +466366,Health,Health +466365,Health,Health +461850,Health,Health +461202,Health,Health +460807,Health,Health +456476,Health,Health +456475,Health,Health +446772,Health,Health +446771,Health,Health +446770,Health,Health +444741,Health,Health +437577,Health,Health +437573,Health,Health +543776,Health,Health +543774,Health,Health +543772,Health,Health +543767,Health,Health +540938,Health,Health +540937,Health,Health +540930,Health,Health +539199,Health,Health +539196,Health,Health +539195,Health,Health +536927,Health,Health +533560,Health,Health +533558,Health,Health +533556,Health,Health +530857,Health,Health +530855,Health,Health +530853,Health,Health +530851,Health,Health +528170,Health,Health +527881,Health,Health +527879,Health,Health +527877,Health,Health +527876,Health,Health +527875,Health,Health +527873,Health,Health +527872,Health,Health +521308,Health,Health +521306,Health,Health +521304,Health,Health +518379,Health,Health +518378,Health,Health +518376,Health,Health +518375,Health,Health +518374,Health,Health +516772,Health,Health +516768,Health,Health +516767,Health,Health +516766,Health,Health +516765,Health,Health +516764,Health,Health +513735,Health,Health +509830,Health,Health +507422,Health,Health +507421,Health,Health +507420,Health,Health +507419,Health,Health +507418,Health,Health +500826,Health,Health +500821,Health,Health +500820,Health,Health +497631,Health,Health +497568,Health,Health +497566,Health,Health +494532,Health,Health +494531,Health,Health +430732,Environment,Environment +430730,Environment,Environment +430730,Tourism,Tourism +543504,Labour,Labour +434486,Health,Health +434484,Health,Health +444656,Health,Health +444655,Health,Health +444654,Health,Health +444652,Health,Health +444651,Health,Health +444650,Health,Health +444649,Health,Health +437605,Health,Health +472823,Environment,Environment +447238,Environment,Environment +443782,Environment,Environment +490179,Environment,Environment +447238,Transportation,Transportation +443782,Transportation,Transportation +490179,Transportation,Transportation +487797,Transportation,Transportation +476132,Government Procurement,Government Procurement +476132,Industry,Industry +441510,Industry,Industry +427565,Industry,Industry +441582,Industry,Industry +441574,Industry,Industry +441572,Industry,Industry +432111,International Trade,International Trade +461428,International Trade,International Trade +460763,International Trade,International Trade +460760,International Trade,International Trade +460757,International Trade,International Trade +460754,International Trade,International Trade +460751,International Trade,International Trade +460218,International Trade,International Trade +456107,International Trade,International Trade +433879,International Trade,International Trade +433878,International Trade,International Trade +433870,International Trade,International Trade +433867,International Trade,International Trade +433864,International Trade,International Trade +432114,International Trade,International Trade +432113,International Trade,International Trade +431172,International Trade,International Trade +431150,International Trade,International Trade +431176,International Trade,International Trade +445610,International Trade,International Trade +445607,International Trade,International Trade +433874,International Trade,International Trade +432110,International Trade,International Trade +432109,International Trade,International Trade +432108,International Trade,International Trade +432107,International Trade,International Trade +460762,International Trade,International Trade +460759,International Trade,International Trade +460756,International Trade,International Trade +460753,International Trade,International Trade +460750,International Trade,International Trade +460217,International Trade,International Trade +456111,International Trade,International Trade +456110,International Trade,International Trade +456109,International Trade,International Trade +452741,International Trade,International Trade +450298,International Trade,International Trade +450297,International Trade,International Trade +450295,International Trade,International Trade +448163,International Trade,International Trade +448156,International Trade,International Trade +445615,International Trade,International Trade +509181,Consumer Issues,Consumer Issues +435857,Consumer Issues,Consumer Issues +509181,Energy,Energy +508517,Energy,Energy +509807,Energy,Energy +449152,Industry,Industry +435857,Industry,Industry +509807,Industry,Industry +509503,Industry,Industry +509181,Industry,Industry +508517,International Trade,International Trade +449152,International Trade,International Trade +435857,International Trade,International Trade +428455,International Trade,International Trade +428454,International Trade,International Trade +428452,International Trade,International Trade +428450,International Trade,International Trade +428448,International Trade,International Trade +427715,International Trade,International Trade +509807,International Trade,International Trade +443137,Employment and Training,Employment and Training +441262,Employment and Training,Employment and Training +448962,Employment and Training,Employment and Training +454747,Taxation and Finance,Taxation and Finance +454747,Financial Institutions,Financial Institutions +538409,Agriculture,Agriculture +538405,Agriculture,Agriculture +487060,Agriculture,Agriculture +470024,Agriculture,Agriculture +470021,Agriculture,Agriculture +470017,Agriculture,Agriculture +470016,Agriculture,Agriculture +470013,Agriculture,Agriculture +430651,International Trade,International Trade +431089,Health,Health +431083,Health,Health +433122,Health,Health +433121,Health,Health +431097,Health,Health +431095,Health,Health +428959,Consumer Issues,Consumer Issues +428959,Economic Development,Economic Development +428959,Industry,Industry +427879,Industry,Industry +427878,Industry,Industry +431691,Climate,Climate +431123,Climate,Climate +537975,Climate,Climate +526448,Climate,Climate +519603,Climate,Climate +507924,Climate,Climate +487792,Climate,Climate +484703,Climate,Climate +484702,Climate,Climate +484700,Climate,Climate +481929,Climate,Climate +481927,Climate,Climate +480122,Climate,Climate +480120,Climate,Climate +475580,Climate,Climate +470171,Climate,Climate +470169,Climate,Climate +470166,Climate,Climate +470165,Climate,Climate +464409,Climate,Climate +439453,Climate,Climate +439450,Climate,Climate +439447,Climate,Climate +480120,Energy,Energy +477630,Energy,Energy +477629,Energy,Energy +477628,Energy,Energy +475580,Energy,Energy +472821,Energy,Energy +472820,Energy,Energy +470171,Energy,Energy +470169,Energy,Energy +470166,Energy,Energy +470165,Energy,Energy +464409,Energy,Energy +439453,Energy,Energy +439450,Energy,Energy +439447,Energy,Energy +435350,Energy,Energy +431691,Energy,Energy +431123,Energy,Energy +537975,Energy,Energy +526448,Energy,Energy +519603,Energy,Energy +507924,Energy,Energy +487792,Energy,Energy +484703,Energy,Energy +484702,Energy,Energy +484700,Energy,Energy +481929,Energy,Energy +481927,Energy,Energy +431123,Environment,Environment +537975,Environment,Environment +475580,Environment,Environment +464409,Environment,Environment +439453,Environment,Environment +439450,Environment,Environment +439447,Environment,Environment +435350,Environment,Environment +434864,Agriculture,Agriculture +436591,Health,Health +434867,Health,Health +436931,Health,Health +434865,Industry,Industry +434864,Industry,Industry +436930,Industry,Industry +436591,Industry,Industry +434549,Education,Education +431814,Education,Education +436828,Education,Education +436816,Education,Education +434550,International Relations,International Relations +431814,International Relations,International Relations +436828,International Relations,International Relations +430999,Research and Development,Research and Development +427929,Research and Development,Research and Development +435507,Research and Development,Research and Development +450244,Education,Education +450243,Education,Education +457716,Education,Education +457715,Education,Education +457711,Education,Education +503074,Employment and Training,Employment and Training +492211,Employment and Training,Employment and Training +474554,Employment and Training,Employment and Training +474553,Employment and Training,Employment and Training +474550,Employment and Training,Employment and Training +474548,Employment and Training,Employment and Training +474374,Employment and Training,Employment and Training +474369,Employment and Training,Employment and Training +457716,Employment and Training,Employment and Training +457715,Employment and Training,Employment and Training +457711,Employment and Training,Employment and Training +450246,Employment and Training,Employment and Training +450244,Employment and Training,Employment and Training +450243,Employment and Training,Employment and Training +432633,Employment and Training,Employment and Training +544896,Employment and Training,Employment and Training +542248,Employment and Training,Employment and Training +542081,Employment and Training,Employment and Training +530683,Employment and Training,Employment and Training +528320,Employment and Training,Employment and Training +516817,Employment and Training,Employment and Training +509188,Employment and Training,Employment and Training +474553,Government Procurement,Government Procurement +474550,Government Procurement,Government Procurement +530682,International Trade,International Trade +432633,Research and Development,Research and Development +450244,Taxation and Finance,Taxation and Finance +450243,Taxation and Finance,Taxation and Finance +515995,Taxation and Finance,Taxation and Finance +457713,Taxation and Finance,Taxation and Finance +450246,Taxation and Finance,Taxation and Finance +453991,Justice and Law Enforcement,Justice and Law Enforcement +432173,Education,Education +432161,Education,Education +443882,Education,Education +442341,Education,Education +435682,Education,Education +432180,Education,Education +432178,Education,Education +432177,Education,Education +432176,Education,Education +432173,Infrastructure,Infrastructure +432161,Infrastructure,Infrastructure +443882,Infrastructure,Infrastructure +432177,Infrastructure,Infrastructure +432176,Infrastructure,Infrastructure +430702,Health,Health +472821,Economic Development,Economic Development +472820,Economic Development,Economic Development +470171,Economic Development,Economic Development +470169,Economic Development,Economic Development +470166,Economic Development,Economic Development +470165,Economic Development,Economic Development +464409,Economic Development,Economic Development +439453,Economic Development,Economic Development +439450,Economic Development,Economic Development +439447,Economic Development,Economic Development +435350,Economic Development,Economic Development +431691,Economic Development,Economic Development +431123,Economic Development,Economic Development +526448,Economic Development,Economic Development +519603,Economic Development,Economic Development +507924,Economic Development,Economic Development +487792,Economic Development,Economic Development +484703,Economic Development,Economic Development +484702,Economic Development,Economic Development +484700,Economic Development,Economic Development +481929,Economic Development,Economic Development +481927,Economic Development,Economic Development +480122,Economic Development,Economic Development +480120,Economic Development,Economic Development +477630,Economic Development,Economic Development +477629,Economic Development,Economic Development +477628,Economic Development,Economic Development +454109,Financial Institutions,Financial Institutions +454108,Financial Institutions,Financial Institutions +507788,Financial Institutions,Financial Institutions +507785,Financial Institutions,Financial Institutions +507777,Financial Institutions,Financial Institutions +507772,Financial Institutions,Financial Institutions +454772,Financial Institutions,Financial Institutions +454771,Financial Institutions,Financial Institutions +454770,Financial Institutions,Financial Institutions +454109,Small Business,Small Business +454108,Small Business,Small Business +454772,Small Business,Small Business +454771,Small Business,Small Business +454770,Small Business,Small Business +439322,Climate,Climate +439322,Economic Development,Economic Development +439322,Energy,Energy +439322,Regional Development,Regional Development +439322,Transportation,Transportation +432104,International Trade,International Trade +457720,International Trade,International Trade +457719,International Trade,International Trade +432106,International Trade,International Trade +428255,Health,Health +428252,Health,Health +442276,Health,Health +428261,Health,Health +428260,Health,Health +428258,Health,Health +428444,Transportation,Transportation +428266,Transportation,Transportation +514833,Transportation,Transportation +510197,Transportation,Transportation +503148,Transportation,Transportation +498423,Transportation,Transportation +493852,Transportation,Transportation +493850,Transportation,Transportation +490787,Transportation,Transportation +485503,Transportation,Transportation +485200,Transportation,Transportation +485198,Transportation,Transportation +484601,Transportation,Transportation +482630,Transportation,Transportation +481816,Transportation,Transportation +481321,Transportation,Transportation +481217,Transportation,Transportation +480216,Transportation,Transportation +478367,Transportation,Transportation +478363,Transportation,Transportation +475172,Transportation,Transportation +475171,Transportation,Transportation +475170,Transportation,Transportation +475169,Transportation,Transportation +475167,Transportation,Transportation +473412,Transportation,Transportation +473404,Transportation,Transportation +469803,Transportation,Transportation +469801,Transportation,Transportation +465191,Transportation,Transportation +458510,Transportation,Transportation +446421,Transportation,Transportation +446420,Transportation,Transportation +444125,Transportation,Transportation +440583,Transportation,Transportation +440582,Transportation,Transportation +440581,Transportation,Transportation +440580,Transportation,Transportation +440579,Transportation,Transportation +434287,Transportation,Transportation +429616,Financial Institutions,Financial Institutions +430060,Health,Health +430055,Health,Health +434573,Health,Health +433172,Health,Health +430059,Research and Development,Research and Development +430055,Research and Development,Research and Development +428398,Transportation,Transportation +455775,Climate,Climate +428591,Climate,Climate +455705,Environment,Environment +428591,Environment,Environment +474836,Environment,Environment +455785,Environment,Environment +455775,Environment,Environment +440775,Fisheries,Fisheries +428591,Fisheries,Fisheries +455853,Fisheries,Fisheries +455765,Fisheries,Fisheries +455737,Fisheries,Fisheries +455705,Fisheries,Fisheries +440786,Fisheries,Fisheries +440781,Fisheries,Fisheries +440776,Forestry,Forestry +428591,Forestry,Forestry +474836,Forestry,Forestry +473931,Forestry,Forestry +473913,Forestry,Forestry +455853,Forestry,Forestry +455785,Forestry,Forestry +455775,Forestry,Forestry +455765,Forestry,Forestry +455705,Forestry,Forestry +455688,Forestry,Forestry +440786,Forestry,Forestry +440781,Forestry,Forestry +429944,Infrastructure,Infrastructure +432100,International Trade,International Trade +432099,International Trade,International Trade +460764,International Trade,International Trade +460761,International Trade,International Trade +460758,International Trade,International Trade +460755,International Trade,International Trade +460752,International Trade,International Trade +460216,International Trade,International Trade +460214,International Trade,International Trade +457623,International Trade,International Trade +457622,International Trade,International Trade +433866,International Trade,International Trade +433865,International Trade,International Trade +428310,Small Business,Small Business +521336,Small Business,Small Business +506895,Small Business,Small Business +506459,Small Business,Small Business +486285,Small Business,Small Business +485010,Small Business,Small Business +478107,Small Business,Small Business +478104,Small Business,Small Business +475445,Small Business,Small Business +470947,Small Business,Small Business +447273,Small Business,Small Business +444544,Small Business,Small Business +440790,Small Business,Small Business +439936,Small Business,Small Business +434230,Small Business,Small Business +462547,Climate,Climate +462545,Climate,Climate +435221,Economic Development,Economic Development +430818,Economic Development,Economic Development +443555,Economic Development,Economic Development +443554,Economic Development,Economic Development +435221,Energy,Energy +430818,Energy,Energy +443555,Energy,Energy +443554,Energy,Energy +525542,Environment,Environment +525541,Environment,Environment +443555,Environment,Environment +443554,Environment,Environment +435223,Environment,Environment +462545,Health,Health +462545,Infrastructure,Infrastructure +430818,Infrastructure,Infrastructure +462547,Mining,Mining +462545,Mining,Mining +443555,Mining,Mining +443554,Mining,Mining +435223,Mining,Mining +435221,Mining,Mining +429183,International Trade,International Trade +429181,International Trade,International Trade +482816,Regional Development,Regional Development +429183,Regional Development,Regional Development +500144,Regional Development,Regional Development +449162,Industry,Industry +430023,Agriculture,Agriculture +429176,Agriculture,Agriculture +504316,Agriculture,Agriculture +486242,Agriculture,Agriculture +449282,Agriculture,Agriculture +431792,Agriculture,Agriculture +433475,Economic Development,Economic Development +433472,Economic Development,Economic Development +529233,Economic Development,Economic Development +529014,Economic Development,Economic Development +516979,Economic Development,Economic Development +503882,Economic Development,Economic Development +500811,Economic Development,Economic Development +490412,Economic Development,Economic Development +484286,Economic Development,Economic Development +481357,Economic Development,Economic Development +475497,Economic Development,Economic Development +475494,Economic Development,Economic Development +475488,Economic Development,Economic Development +472664,Economic Development,Economic Development +500707,International Relations,International Relations +481357,International Relations,International Relations +529014,International Relations,International Relations +432343,Economic Development,Economic Development +431184,Industry,Industry +429335,Industry,Industry +534356,Industry,Industry +467796,Industry,Industry +467792,Industry,Industry +467781,Industry,Industry +446317,Consumer Issues,Consumer Issues +446317,Health,Health +525169,Justice and Law Enforcement,Justice and Law Enforcement +429482,Justice and Law Enforcement,Justice and Law Enforcement +436409,Justice and Law Enforcement,Justice and Law Enforcement +436122,Consumer Issues,Consumer Issues +436121,Consumer Issues,Consumer Issues +436122,Industry,Industry +436121,Industry,Industry +435542,Financial Institutions,Financial Institutions +432648,Financial Institutions,Financial Institutions +429532,Financial Institutions,Financial Institutions +538026,Financial Institutions,Financial Institutions +534413,Financial Institutions,Financial Institutions +451745,Financial Institutions,Financial Institutions +443858,Financial Institutions,Financial Institutions +443857,Financial Institutions,Financial Institutions +443856,Financial Institutions,Financial Institutions +443854,Financial Institutions,Financial Institutions +443852,Financial Institutions,Financial Institutions +443849,Financial Institutions,Financial Institutions +429591,Consumer Issues,Consumer Issues +429590,Consumer Issues,Consumer Issues +433385,Consumer Issues,Consumer Issues +433384,Consumer Issues,Consumer Issues +433383,Consumer Issues,Consumer Issues +431107,Consumer Issues,Consumer Issues +432252,Education,Education +432316,Education,Education +432262,Education,Education +432260,Education,Education +432259,Education,Education +432258,Infrastructure,Infrastructure +432255,Infrastructure,Infrastructure +432316,Infrastructure,Infrastructure +432262,Infrastructure,Infrastructure +429716,Research and Development,Research and Development +429716,International Development,International Development +436051,Industry,Industry +462767,Climate,Climate +449594,Climate,Climate +430822,Economic Development,Economic Development +430822,Energy,Energy +525717,Environment,Environment +472978,Environment,Environment +449594,Environment,Environment +443722,Environment,Environment +486732,Health,Health +470479,Health,Health +443728,Industry,Industry +430822,Infrastructure,Infrastructure +508552,Infrastructure,Infrastructure +449594,Infrastructure,Infrastructure +443722,Mining,Mining +443725,Transportation,Transportation +429699,Consumer Issues,Consumer Issues +429699,International Trade,International Trade +429699,Taxation and Finance,Taxation and Finance +502978,Employment and Training,Employment and Training +465743,Pensions,Pensions +465742,Pensions,Pensions +459455,Pensions,Pensions +458624,Pensions,Pensions +458623,Pensions,Pensions +457375,Pensions,Pensions +457374,Pensions,Pensions +450210,Pensions,Pensions +450209,Pensions,Pensions +450203,Pensions,Pensions +450197,Pensions,Pensions +443248,Pensions,Pensions +443245,Pensions,Pensions +442275,Pensions,Pensions +442271,Pensions,Pensions +435756,Pensions,Pensions +433873,Pensions,Pensions +433872,Pensions,Pensions +432308,Pensions,Pensions +432305,Pensions,Pensions +432304,Pensions,Pensions +432303,Pensions,Pensions +432302,Pensions,Pensions +432301,Pensions,Pensions +432300,Pensions,Pensions +430693,Pensions,Pensions +430692,Pensions,Pensions +430688,Pensions,Pensions +430660,Pensions,Pensions +430657,Pensions,Pensions +430656,Pensions,Pensions +487161,Pensions,Pensions +431523,International Trade,International Trade +431520,International Trade,International Trade +432884,International Trade,International Trade +429801,International Relations,International Relations +431172,Internal Trade,Internal Trade +429709,Internal Trade,Internal Trade +431526,Agriculture,Agriculture +429711,Agriculture,Agriculture +446594,Agriculture,Agriculture +444757,Agriculture,Agriculture +435040,Agriculture,Agriculture +432879,Agriculture,Agriculture +430342,Defence,Defence +452552,Transportation,Transportation +521300,Climate,Climate +521298,Climate,Climate +519225,Climate,Climate +509840,Climate,Climate +506533,Climate,Climate +500457,Climate,Climate +499757,Climate,Climate +497197,Climate,Climate +494405,Climate,Climate +486333,Climate,Climate +485944,Climate,Climate +483351,Climate,Climate +480987,Climate,Climate +480985,Climate,Climate +480984,Climate,Climate +429707,Immigration,Immigration +429707,International Relations,International Relations +495031,Privacy and Access to Information,Privacy and Access to Information +441858,Security,Security +431110,Consumer Issues,Consumer Issues +492577,Health,Health +430734,Environment,Environment +430734,Tourism,Tourism +427539,Labour,Labour +435513,Defence,Defence +427495,Regional Development,Regional Development +429992,Employment and Training,Employment and Training +429771,Budget,Budget +437604,Health,Health +487797,Environment,Environment +472823,Transportation,Transportation +429715,Industry,Industry +476135,Government Procurement,Government Procurement +476135,Industry,Industry +441570,Industry,Industry +427566,Agriculture,Agriculture +432112,International Trade,International Trade +431173,International Trade,International Trade +445613,International Trade,International Trade +427649,Transportation,Transportation +509807,Consumer Issues,Consumer Issues +509503,Energy,Energy +508517,Environment,Environment +435857,Health,Health +508517,Industry,Industry +509503,International Trade,International Trade +429575,Environment,Environment +429575,Energy,Energy +429575,Economic Development,Economic Development +429575,Climate,Climate +427717,Sports,Sports +448959,Employment and Training,Employment and Training +427698,Employment and Training,Employment and Training +427718,Employment and Training,Employment and Training +427763,Privacy and Access to Information,Privacy and Access to Information +454749,Taxation and Finance,Taxation and Finance +454749,Financial Institutions,Financial Institutions +470011,Agriculture,Agriculture +538409,Taxation and Finance,Taxation and Finance +432870,Infrastructure,Infrastructure +432239,International Trade,International Trade +431091,Health,Health +427876,Economic Development,Economic Development +427876,Industry,Industry +429139,Consumer Issues,Consumer Issues +429139,Economic Development,Economic Development +429139,Industry,Industry +429968,Industry,Industry +435350,Climate,Climate +480122,Energy,Energy +431691,Environment,Environment +434865,Agriculture,Agriculture +436591,Budget,Budget +436930,Health,Health +434867,Industry,Industry +427898,Consumer Issues,Consumer Issues +446128,Economic Development,Economic Development +434550,Education,Education +436816,International Relations,International Relations +431814,Justice and Law Enforcement,Justice and Law Enforcement +435502,Research and Development,Research and Development +450246,Education,Education +504537,Employment and Training,Employment and Training +474554,Government Procurement,Government Procurement +450244,Intellectual Property,Intellectual Property +478080,International Trade,International Trade +457713,Research and Development,Research and Development +450245,Taxation and Finance,Taxation and Finance +471172,Small Business,Small Business +453994,Justice and Law Enforcement,Justice and Law Enforcement +430452,Consumer Issues,Consumer Issues +430452,Industry,Industry +432174,Education,Education +432174,Infrastructure,Infrastructure +451705,Industry,Industry +430652,International Trade,International Trade +430703,Health,Health +475580,Economic Development,Economic Development +454110,Financial Institutions,Financial Institutions +454110,Small Business,Small Business +439328,Climate,Climate +439328,Economic Development,Economic Development +439328,Energy,Energy +439322,Environment,Environment +439328,Industry,Industry +439328,Regional Development,Regional Development +439328,Transportation,Transportation +432105,International Trade,International Trade +428256,Health,Health +462782,Government Procurement,Government Procurement +432367,Security,Security +434286,Transportation,Transportation +448672,Financial Institutions,Financial Institutions +433171,Health,Health +430060,Research and Development,Research and Development +432066,Transportation,Transportation +434071,Industry,Industry +428445,Transportation,Transportation +455785,Climate,Climate +455737,Environment,Environment +440776,Fisheries,Fisheries +440779,Forestry,Forestry +463521,Agriculture,Agriculture +463521,Environment,Environment +463521,Infrastructure,Infrastructure +432101,International Trade,International Trade +439259,Climate,Climate +439259,Economic Development,Economic Development +439259,Industry,Industry +439259,Research and Development,Research and Development +428963,Fisheries,Fisheries +428963,International Trade,International Trade +428963,Regional Development,Regional Development +428964,Defence,Defence +428964,International Trade,International Trade +428964,Fisheries,Fisheries +428964,Regional Development,Regional Development +428965,Defence,Defence +428965,Fisheries,Fisheries +428965,International Trade,International Trade +428965,Regional Development,Regional Development +428966,Fisheries,Fisheries +428966,Defence,Defence +428966,International Trade,International Trade +428966,Regional Development,Regional Development +432742,Small Business,Small Business +429101,Employment and Training,Employment and Training +462552,Climate,Climate +435223,Economic Development,Economic Development +435223,Energy,Energy +435221,Environment,Environment +462547,Health,Health +508547,Infrastructure,Infrastructure +462552,Mining,Mining +429117,Transportation,Transportation +432174,Environment,Environment +438333,Taxation and Finance,Taxation and Finance +449162,International Trade,International Trade +485859,Regional Development,Regional Development +471776,Industry,Industry +430024,Agriculture,Agriculture +429245,Justice and Law Enforcement,Justice and Law Enforcement +433478,Economic Development,Economic Development +503882,International Relations,International Relations +429307,Economic Development,Economic Development +508500,Economic Development,Economic Development +436463,Industry,Industry +446319,Agriculture,Agriculture +446319,Consumer Issues,Consumer Issues +446319,Health,Health +429429,Labour,Labour +429479,Justice and Law Enforcement,Justice and Law Enforcement +436407,Justice and Law Enforcement,Justice and Law Enforcement +439700,Consumer Issues,Consumer Issues +439700,Industry,Industry +443847,Financial Institutions,Financial Institutions +429551,Labour,Labour +431106,Consumer Issues,Consumer Issues +429602,Internal Trade,Internal Trade +429603,International Trade,International Trade +431019,Transportation,Transportation +432258,Education,Education +432259,Infrastructure,Infrastructure +429717,Research and Development,Research and Development +429717,International Development,International Development +436051,Economic Development,Economic Development +438863,Industry,Industry +433962,Internal Trade,Internal Trade +438863,International Relations,International Relations +436051,Research and Development,Research and Development +462769,Climate,Climate +449594,Economic Development,Economic Development +449594,Energy,Energy +525727,Environment,Environment +443728,Health,Health +449594,Industry,Industry +443725,Infrastructure,Infrastructure +449594,Mining,Mining +443728,Transportation,Transportation +429700,Consumer Issues,Consumer Issues +429700,Industry,Industry +429700,International Trade,International Trade +429700,Taxation and Finance,Taxation and Finance +429700,Transportation,Transportation +520477,Employment and Training,Employment and Training +484278,Pensions,Pensions +431524,International Trade,International Trade +431992,International Relations,International Relations +429802,International Relations,International Relations +431176,Internal Trade,Internal Trade +432880,Internal Trade,Internal Trade +432878,Agriculture,Agriculture +433092,Government Procurement,Government Procurement +430344,Defence,Defence +479916,Transportation,Transportation +521302,Climate,Climate +439851,Economic Development,Economic Development +439851,Employment and Training,Employment and Training +439850,Forestry,Forestry +433869,International Trade,International Trade +439850,Regional Development,Regional Development +432143,Sports,Sports +459906,Fisheries,Fisheries +431059,Environment,Environment +446440,Infrastructure,Infrastructure +431099,International Trade,International Trade +431099,Taxation and Finance,Taxation and Finance +431103,International Trade,International Trade +431103,Taxation and Finance,Taxation and Finance +429838,Industry,Industry +429839,International Trade,International Trade +429840,Taxation and Finance,Taxation and Finance +430202,Tourism,Tourism +429807,Taxation and Finance,Taxation and Finance +514939,Intellectual Property,Intellectual Property +499927,Privacy and Access to Information,Privacy and Access to Information +448819,Security,Security +463170,Taxation and Finance,Taxation and Finance +433274,Taxation and Finance,Taxation and Finance +429820,Immigration,Immigration +429821,Environment,Environment +432012,International Trade,International Trade +434494,Immigration,Immigration +434494,Industry,Industry +434494,International Trade,International Trade +446192,Tourism,Tourism +451113,Economic Development,Economic Development +431025,Consumer Issues,Consumer Issues +432094,Intellectual Property,Intellectual Property +431025,International Relations,International Relations +432094,International Trade,International Trade +431025,Justice and Law Enforcement,Justice and Law Enforcement +431025,Taxation and Finance,Taxation and Finance +431025,Tourism,Tourism +469592,Housing,Housing +429949,Economic Development,Economic Development +429949,Education,Education +429951,Immigration,Immigration +480983,Climate,Climate +471752,Climate,Climate +471751,Climate,Climate +471750,Climate,Climate +471749,Climate,Climate +442929,Climate,Climate +442928,Climate,Climate +442925,Climate,Climate +440816,Climate,Climate +433006,Climate,Climate +545104,Climate,Climate +545102,Climate,Climate +544464,Climate,Climate +536739,Climate,Climate +536738,Climate,Climate +536737,Climate,Climate +533360,Climate,Climate +533358,Climate,Climate +530524,Climate,Climate +530523,Climate,Climate +530522,Climate,Climate +527572,Climate,Climate +527570,Climate,Climate +524114,Climate,Climate +524113,Climate,Climate +524110,Climate,Climate +433868,Forestry,Forestry +432607,International Trade,International Trade +433869,Regional Development,Regional Development +433868,Regional Development,Regional Development +439851,Regional Development,Regional Development +432142,Sports,Sports +432140,Sports,Sports +433859,Sports,Sports +459905,Fisheries,Fisheries +458723,Fisheries,Fisheries +457162,Fisheries,Fisheries +446442,Fisheries,Fisheries +431059,Fisheries,Fisheries +461492,Fisheries,Fisheries +461488,Fisheries,Fisheries +461485,Fisheries,Fisheries +460583,Fisheries,Fisheries +431058,Environment,Environment +431055,Environment,Environment +462439,Environment,Environment +446441,Environment,Environment +446440,Environment,Environment +433591,Environment,Environment +492135,Industry,Industry +487144,Industry,Industry +439956,Industry,Industry +439955,Industry,Industry +430008,Industry,Industry +429980,Industry,Industry +429840,Industry,Industry +429839,Industry,Industry +429838,International Trade,International Trade +487144,International Trade,International Trade +439956,International Trade,International Trade +439955,International Trade,International Trade +430008,International Trade,International Trade +429980,International Trade,International Trade +429840,International Trade,International Trade +429839,Taxation and Finance,Taxation and Finance +429838,Taxation and Finance,Taxation and Finance +430008,Taxation and Finance,Taxation and Finance +429980,Taxation and Finance,Taxation and Finance +496779,Privacy and Access to Information,Privacy and Access to Information +496778,Privacy and Access to Information,Privacy and Access to Information +463443,Privacy and Access to Information,Privacy and Access to Information +436046,Security,Security +432171,Security,Security +449052,Security,Security +460333,Taxation and Finance,Taxation and Finance +432011,International Trade,International Trade +434494,Tourism,Tourism +429841,Economic Development,Economic Development +515773,Economic Development,Economic Development +466593,Economic Development,Economic Development +431025,Intellectual Property,Intellectual Property +431025,International Trade,International Trade +429947,Economic Development,Economic Development +429945,Economic Development,Economic Development +429951,Economic Development,Economic Development +429950,Economic Development,Economic Development +429947,Education,Education +429945,Education,Education +429951,Education,Education +429950,Education,Education +429950,Immigration,Immigration +430007,Government Procurement,Government Procurement +432124,International Trade,International Trade +432098,International Trade,International Trade +452744,International Trade,International Trade +450291,International Trade,International Trade +433883,International Trade,International Trade +433882,International Trade,International Trade +433881,International Trade,International Trade +436655,Health,Health +435826,Health,Health +436655,Taxation and Finance,Taxation and Finance +435826,Taxation and Finance,Taxation and Finance +436655,Transportation,Transportation +435826,Transportation,Transportation +463521,Economic Development,Economic Development +429944,Research and Development,Research and Development +431514,Climate,Climate +431513,Climate,Climate +450498,Climate,Climate +450496,Climate,Climate +438706,Climate,Climate +438702,Climate,Climate +437629,Climate,Climate +437626,Climate,Climate +437621,Climate,Climate +437617,Climate,Climate +432659,Climate,Climate +432658,Climate,Climate +432206,Climate,Climate +432204,Climate,Climate +431522,Climate,Climate +431521,Climate,Climate +431519,Climate,Climate +431518,Climate,Climate +431517,Climate,Climate +431516,Climate,Climate +431514,Economic Development,Economic Development +431513,Economic Development,Economic Development +450498,Economic Development,Economic Development +450496,Economic Development,Economic Development +438706,Economic Development,Economic Development +438702,Economic Development,Economic Development +437629,Economic Development,Economic Development +437626,Economic Development,Economic Development +437621,Economic Development,Economic Development +437617,Economic Development,Economic Development +432659,Economic Development,Economic Development +432658,Economic Development,Economic Development +432206,Economic Development,Economic Development +432204,Economic Development,Economic Development +431522,Economic Development,Economic Development +431521,Economic Development,Economic Development +431519,Economic Development,Economic Development +431518,Economic Development,Economic Development +431517,Economic Development,Economic Development +431516,Economic Development,Economic Development +431514,Employment and Training,Employment and Training +431513,Employment and Training,Employment and Training +450498,Employment and Training,Employment and Training +450496,Employment and Training,Employment and Training +438706,Employment and Training,Employment and Training +438702,Employment and Training,Employment and Training +437629,Employment and Training,Employment and Training +437626,Employment and Training,Employment and Training +437621,Employment and Training,Employment and Training +437617,Employment and Training,Employment and Training +432658,Employment and Training,Employment and Training +432206,Employment and Training,Employment and Training +432204,Employment and Training,Employment and Training +431522,Employment and Training,Employment and Training +431521,Employment and Training,Employment and Training +431519,Employment and Training,Employment and Training +431518,Employment and Training,Employment and Training +431517,Employment and Training,Employment and Training +431516,Employment and Training,Employment and Training +431514,Energy,Energy +431513,Energy,Energy +450498,Energy,Energy +450496,Energy,Energy +438706,Energy,Energy +438702,Energy,Energy +437629,Energy,Energy +437626,Energy,Energy +437621,Energy,Energy +437617,Energy,Energy +432659,Energy,Energy +432658,Energy,Energy +432206,Energy,Energy +432204,Energy,Energy +431522,Energy,Energy +431521,Energy,Energy +431519,Energy,Energy +431518,Energy,Energy +431517,Energy,Energy +431516,Energy,Energy +431518,Research and Development,Research and Development +431517,Research and Development,Research and Development +431516,Research and Development,Research and Development +431515,Research and Development,Research and Development +431514,Research and Development,Research and Development +431513,Research and Development,Research and Development +450498,Research and Development,Research and Development +450496,Research and Development,Research and Development +438706,Research and Development,Research and Development +438702,Research and Development,Research and Development +437629,Research and Development,Research and Development +437626,Research and Development,Research and Development +437621,Research and Development,Research and Development +437617,Research and Development,Research and Development +432658,Research and Development,Research and Development +432206,Research and Development,Research and Development +432204,Research and Development,Research and Development +431522,Research and Development,Research and Development +431521,Research and Development,Research and Development +470325,Security,Security +470323,Security,Security +470321,Security,Security +465536,Security,Security +465535,Security,Security +465534,Security,Security +465533,Security,Security +465532,Security,Security +464568,Security,Security +464432,Security,Security +463186,Security,Security +463185,Security,Security +463184,Security,Security +463174,Security,Security +459811,Security,Security +459810,Security,Security +459809,Security,Security +459045,Security,Security +459043,Security,Security +457450,Security,Security +453068,Security,Security +450762,Security,Security +450760,Security,Security +450759,Security,Security +441128,Security,Security +441093,Security,Security +441090,Security,Security +441088,Security,Security +439853,Security,Security +439852,Security,Security +434884,Security,Security +434423,Security,Security +434422,Security,Security +434183,Security,Security +434173,Security,Security +434172,Security,Security +434171,Security,Security +433604,Security,Security +433598,Security,Security +432719,Security,Security +432717,Security,Security +432716,Security,Security +430048,Security,Security +430046,Security,Security +537132,Security,Security +527484,Security,Security +524329,Security,Security +521645,Security,Security +519381,Security,Security +516758,Security,Security +516757,Security,Security +516756,Security,Security +515389,Security,Security +510022,Security,Security +510021,Security,Security +510019,Security,Security +507858,Security,Security +507838,Security,Security +507765,Security,Security +507761,Security,Security +500803,Security,Security +500802,Security,Security +500801,Security,Security +500800,Security,Security +500686,Security,Security +500683,Security,Security +497133,Security,Security +497078,Security,Security +497077,Security,Security +497074,Security,Security +497072,Security,Security +492004,Security,Security +488629,Security,Security +485470,Security,Security +485454,Security,Security +485452,Security,Security +476408,Security,Security +474537,Security,Security +472241,Security,Security +472035,Security,Security +472034,Security,Security +470329,Security,Security +470328,Security,Security +442545,Economic Development,Economic Development +442544,Economic Development,Economic Development +431259,Industry,Industry +431242,Industry,Industry +442546,Industry,Industry +442545,Industry,Industry +442544,Industry,Industry +438118,Industry,Industry +431261,Industry,Industry +442544,International Relations,International Relations +438109,International Relations,International Relations +442546,International Relations,International Relations +433786,International Trade,International Trade +432526,International Trade,International Trade +432524,International Trade,International Trade +432520,International Trade,International Trade +432518,International Trade,International Trade +432516,International Trade,International Trade +431261,International Trade,International Trade +431260,International Trade,International Trade +431259,International Trade,International Trade +431242,International Trade,International Trade +442546,International Trade,International Trade +442545,International Trade,International Trade +442544,International Trade,International Trade +438119,International Trade,International Trade +438118,International Trade,International Trade +438117,International Trade,International Trade +438116,International Trade,International Trade +438115,International Trade,International Trade +438113,International Trade,International Trade +438109,International Trade,International Trade +442545,Justice and Law Enforcement,Justice and Law Enforcement +442544,Justice and Law Enforcement,Justice and Law Enforcement +438115,Taxation and Finance,Taxation and Finance +438113,Taxation and Finance,Taxation and Finance +442546,Taxation and Finance,Taxation and Finance +442545,Taxation and Finance,Taxation and Finance +442544,Taxation and Finance,Taxation and Finance +438119,Taxation and Finance,Taxation and Finance +438118,Taxation and Finance,Taxation and Finance +438117,Taxation and Finance,Taxation and Finance +543928,Employment and Training,Employment and Training +431753,Economic Development,Economic Development +431753,Industry,Industry +438583,International Trade,International Trade +447642,Environment,Environment +447640,Environment,Environment +445302,Environment,Environment +445300,Environment,Environment +445299,Environment,Environment +445296,Environment,Environment +443364,Environment,Environment +443363,Environment,Environment +443360,Environment,Environment +440972,Environment,Environment +440971,Environment,Environment +440970,Environment,Environment +440969,Environment,Environment +440968,Environment,Environment +440967,Environment,Environment +440966,Environment,Environment +440965,Environment,Environment +440964,Environment,Environment +440963,Environment,Environment +440962,Environment,Environment +440961,Environment,Environment +440960,Environment,Environment +437625,Environment,Environment +437624,Environment,Environment +437623,Environment,Environment +437622,Environment,Environment +437619,Environment,Environment +437618,Environment,Environment +437615,Environment,Environment +435068,Environment,Environment +435067,Environment,Environment +435066,Environment,Environment +435065,Environment,Environment +435063,Environment,Environment +433137,Environment,Environment +433136,Environment,Environment +433135,Environment,Environment +433134,Environment,Environment +433133,Environment,Environment +433132,Environment,Environment +433131,Environment,Environment +433130,Environment,Environment +433129,Environment,Environment +433127,Environment,Environment +433126,Environment,Environment +433125,Environment,Environment +433124,Environment,Environment +433123,Environment,Environment +431102,Environment,Environment +455390,Environment,Environment +455389,Environment,Environment +455388,Environment,Environment +455387,Environment,Environment +455386,Environment,Environment +451940,Environment,Environment +451939,Environment,Environment +451938,Environment,Environment +451937,Environment,Environment +451936,Environment,Environment +451935,Environment,Environment +451934,Environment,Environment +449386,Environment,Environment +449385,Environment,Environment +449384,Environment,Environment +449383,Environment,Environment +449382,Environment,Environment +449381,Environment,Environment +449380,Environment,Environment +449379,Environment,Environment +449378,Environment,Environment +449377,Environment,Environment +449376,Environment,Environment +449375,Environment,Environment +449374,Environment,Environment +449373,Environment,Environment +449372,Environment,Environment +449370,Environment,Environment +449369,Environment,Environment +449368,Environment,Environment +449367,Environment,Environment +449366,Environment,Environment +447651,Environment,Environment +447650,Environment,Environment +447648,Environment,Environment +447646,Environment,Environment +434239,Budget,Budget +434238,Budget,Budget +451664,Budget,Budget +451089,Budget,Budget +451086,Budget,Budget +451082,Budget,Budget +451080,Budget,Budget +451079,Budget,Budget +450806,Budget,Budget +448831,Budget,Budget +448830,Budget,Budget +445941,Budget,Budget +445940,Budget,Budget +441401,Budget,Budget +440221,Budget,Budget +436997,Budget,Budget +436996,Budget,Budget +436995,Budget,Budget +436578,Budget,Budget +436578,Consumer Issues,Consumer Issues +434240,Consumer Issues,Consumer Issues +436997,Consumer Issues,Consumer Issues +436996,Consumer Issues,Consumer Issues +434239,Labour,Labour +434238,Labour,Labour +445941,Small Business,Small Business +445940,Small Business,Small Business +440221,Small Business,Small Business +436997,Small Business,Small Business +436996,Small Business,Small Business +436995,Small Business,Small Business +436578,Small Business,Small Business +434240,Small Business,Small Business +434239,Small Business,Small Business +434238,Small Business,Small Business +451664,Small Business,Small Business +451555,Small Business,Small Business +451089,Small Business,Small Business +451084,Small Business,Small Business +451083,Small Business,Small Business +451082,Small Business,Small Business +451080,Small Business,Small Business +451079,Small Business,Small Business +450806,Small Business,Small Business +450805,Small Business,Small Business +448831,Small Business,Small Business +434239,Taxation and Finance,Taxation and Finance +434238,Taxation and Finance,Taxation and Finance +451664,Taxation and Finance,Taxation and Finance +451555,Taxation and Finance,Taxation and Finance +451089,Taxation and Finance,Taxation and Finance +451086,Taxation and Finance,Taxation and Finance +451084,Taxation and Finance,Taxation and Finance +451083,Taxation and Finance,Taxation and Finance +451082,Taxation and Finance,Taxation and Finance +451080,Taxation and Finance,Taxation and Finance +451079,Taxation and Finance,Taxation and Finance +450806,Taxation and Finance,Taxation and Finance +450805,Taxation and Finance,Taxation and Finance +448831,Taxation and Finance,Taxation and Finance +448830,Taxation and Finance,Taxation and Finance +445941,Taxation and Finance,Taxation and Finance +445940,Taxation and Finance,Taxation and Finance +441401,Taxation and Finance,Taxation and Finance +440221,Taxation and Finance,Taxation and Finance +436997,Taxation and Finance,Taxation and Finance +436996,Taxation and Finance,Taxation and Finance +436995,Taxation and Finance,Taxation and Finance +436578,Taxation and Finance,Taxation and Finance +430879,Employment and Training,Employment and Training +430875,Employment and Training,Employment and Training +443247,Employment and Training,Employment and Training +436575,Employment and Training,Employment and Training +433126,Government Procurement,Government Procurement +433125,Government Procurement,Government Procurement +433124,Government Procurement,Government Procurement +433123,Government Procurement,Government Procurement +431102,Government Procurement,Government Procurement +455390,Government Procurement,Government Procurement +455389,Government Procurement,Government Procurement +455388,Government Procurement,Government Procurement +455387,Government Procurement,Government Procurement +455386,Government Procurement,Government Procurement +451940,Government Procurement,Government Procurement +451939,Government Procurement,Government Procurement +451938,Government Procurement,Government Procurement +451937,Government Procurement,Government Procurement +451936,Government Procurement,Government Procurement +451935,Government Procurement,Government Procurement +451934,Government Procurement,Government Procurement +449386,Government Procurement,Government Procurement +449385,Government Procurement,Government Procurement +449384,Government Procurement,Government Procurement +449383,Government Procurement,Government Procurement +449382,Government Procurement,Government Procurement +449381,Government Procurement,Government Procurement +449380,Government Procurement,Government Procurement +449379,Government Procurement,Government Procurement +449378,Government Procurement,Government Procurement +449377,Government Procurement,Government Procurement +449376,Government Procurement,Government Procurement +449375,Government Procurement,Government Procurement +449374,Government Procurement,Government Procurement +449373,Government Procurement,Government Procurement +449372,Government Procurement,Government Procurement +449370,Government Procurement,Government Procurement +449369,Government Procurement,Government Procurement +449368,Government Procurement,Government Procurement +449367,Government Procurement,Government Procurement +449366,Government Procurement,Government Procurement +447651,Government Procurement,Government Procurement +447650,Government Procurement,Government Procurement +447648,Government Procurement,Government Procurement +447646,Government Procurement,Government Procurement +447644,Government Procurement,Government Procurement +447642,Government Procurement,Government Procurement +447640,Government Procurement,Government Procurement +445302,Government Procurement,Government Procurement +445300,Government Procurement,Government Procurement +445299,Government Procurement,Government Procurement +445296,Government Procurement,Government Procurement +443364,Government Procurement,Government Procurement +443363,Government Procurement,Government Procurement +443360,Government Procurement,Government Procurement +440972,Government Procurement,Government Procurement +440971,Government Procurement,Government Procurement +440970,Government Procurement,Government Procurement +440969,Government Procurement,Government Procurement +440968,Government Procurement,Government Procurement +440967,Government Procurement,Government Procurement +440966,Government Procurement,Government Procurement +440965,Government Procurement,Government Procurement +440964,Government Procurement,Government Procurement +440963,Government Procurement,Government Procurement +440962,Government Procurement,Government Procurement +440961,Government Procurement,Government Procurement +440960,Government Procurement,Government Procurement +437625,Government Procurement,Government Procurement +437624,Government Procurement,Government Procurement +437623,Government Procurement,Government Procurement +437622,Government Procurement,Government Procurement +437619,Government Procurement,Government Procurement +437618,Government Procurement,Government Procurement +437615,Government Procurement,Government Procurement +435068,Government Procurement,Government Procurement +435067,Government Procurement,Government Procurement +435066,Government Procurement,Government Procurement +435065,Government Procurement,Government Procurement +435063,Government Procurement,Government Procurement +433137,Government Procurement,Government Procurement +433136,Government Procurement,Government Procurement +433135,Government Procurement,Government Procurement +433134,Government Procurement,Government Procurement +433133,Government Procurement,Government Procurement +433132,Government Procurement,Government Procurement +433131,Government Procurement,Government Procurement +433130,Government Procurement,Government Procurement +433129,Government Procurement,Government Procurement +438531,Economic Development,Economic Development +434814,Economic Development,Economic Development +434814,Industry,Industry +431977,Industry,Industry +431977,International Trade,International Trade +438531,International Trade,International Trade +506719,Industry,Industry +492093,Industry,Industry +433074,Industry,Industry +432767,Industry,Industry +432253,Industry,Industry +431942,Industry,Industry +431941,Industry,Industry +431940,Industry,Industry +431939,Industry,Industry +431938,Industry,Industry +431937,Industry,Industry +431936,Industry,Industry +430146,Industry,Industry +430144,Industry,Industry +430143,Industry,Industry +430143,International Trade,International Trade +492091,International Trade,International Trade +433074,International Trade,International Trade +432767,International Trade,International Trade +432253,International Trade,International Trade +431942,International Trade,International Trade +431941,International Trade,International Trade +431940,International Trade,International Trade +431939,International Trade,International Trade +431938,International Trade,International Trade +431937,International Trade,International Trade +431936,International Trade,International Trade +430146,International Trade,International Trade +527360,Consumer Issues,Consumer Issues +540840,Consumer Issues,Consumer Issues +453748,Research and Development,Research and Development +453747,Research and Development,Research and Development +462950,Research and Development,Research and Development +431725,Taxation and Finance,Taxation and Finance +430410,Taxation and Finance,Taxation and Finance +451014,Taxation and Finance,Taxation and Finance +450573,Taxation and Finance,Taxation and Finance +450053,Taxation and Finance,Taxation and Finance +448780,Taxation and Finance,Taxation and Finance +448594,Taxation and Finance,Taxation and Finance +447944,Taxation and Finance,Taxation and Finance +447938,Taxation and Finance,Taxation and Finance +443049,Taxation and Finance,Taxation and Finance +442891,Taxation and Finance,Taxation and Finance +538652,Employment and Training,Employment and Training +538651,Employment and Training,Employment and Training +435378,Employment and Training,Employment and Training +430189,Employment and Training,Employment and Training +430202,Regional Development,Regional Development +446567,Labour,Labour +442764,Energy,Energy +433621,Energy,Energy +433623,Climate,Climate +433621,Climate,Climate +443797,Climate,Climate +443796,Climate,Climate +430217,Tourism,Tourism +430217,Economic Development,Economic Development +432157,Agriculture,Agriculture +433763,Agriculture,Agriculture +433749,Agriculture,Agriculture +433748,Agriculture,Agriculture +433748,Consumer Issues,Consumer Issues +432158,Consumer Issues,Consumer Issues +432157,Economic Development,Economic Development +542218,Climate,Climate +539650,Climate,Climate +431222,Transportation,Transportation +430281,Infrastructure,Infrastructure +440225,Infrastructure,Infrastructure +431124,Health,Health +431119,Health,Health +431148,Health,Health +431145,Health,Health +431137,Health,Health +431133,Health,Health +431131,Economic Development,Economic Development +431119,Economic Development,Economic Development +431148,Economic Development,Economic Development +431145,Economic Development,Economic Development +431137,Economic Development,Economic Development +431124,Research and Development,Research and Development +431119,Research and Development,Research and Development +431148,Research and Development,Research and Development +431145,Research and Development,Research and Development +431137,Research and Development,Research and Development +431133,Research and Development,Research and Development +430361,Energy,Energy +430361,Infrastructure,Infrastructure +436745,Taxation and Finance,Taxation and Finance +436744,Taxation and Finance,Taxation and Finance +446596,Taxation and Finance,Taxation and Finance +436746,Transportation,Transportation +436745,Transportation,Transportation +436744,Transportation,Transportation +436745,Health,Health +436744,Health,Health +446596,Health,Health +460372,Research and Development,Research and Development +440325,Transportation,Transportation +433388,Transportation,Transportation +431429,Health,Health +494021,Health,Health +462199,Health,Health +461014,Health,Health +461014,Industry,Industry +454679,Industry,Industry +467084,Economic Development,Economic Development +430465,Economic Development,Economic Development +543850,Economic Development,Economic Development +435800,Health,Health +432614,Economic Development,Economic Development +432613,Economic Development,Economic Development +495223,Economic Development,Economic Development +495221,Economic Development,Economic Development +495218,Economic Development,Economic Development +488734,Economic Development,Economic Development +474811,Economic Development,Economic Development +443728,Employment and Training,Employment and Training +430822,Employment and Training,Employment and Training +522680,Financial Institutions,Financial Institutions +493721,Financial Institutions,Financial Institutions +470579,Financial Institutions,Financial Institutions +452307,Financial Institutions,Financial Institutions +452305,Financial Institutions,Financial Institutions +452299,Financial Institutions,Financial Institutions +452288,Financial Institutions,Financial Institutions +434005,Financial Institutions,Financial Institutions +430978,Financial Institutions,Financial Institutions +430974,Financial Institutions,Financial Institutions +543980,Financial Institutions,Financial Institutions +432550,Government Procurement,Government Procurement +431031,Industry,Industry +431024,Industry,Industry +433597,Industry,Industry +432465,Industry,Industry +432510,Energy,Energy +468587,Energy,Energy +468588,Environment,Environment +468588,Industry,Industry +468587,Industry,Industry +468591,Industry,Industry +472740,Economic Development,Economic Development +457015,Economic Development,Economic Development +441344,Economic Development,Economic Development +441342,Economic Development,Economic Development +441340,Economic Development,Economic Development +441336,Economic Development,Economic Development +441333,Economic Development,Economic Development +441327,Economic Development,Economic Development +432828,Economic Development,Economic Development +432828,Energy,Energy +432061,Energy,Energy +486730,Energy,Energy +484761,Energy,Energy +484757,Energy,Energy +484746,Energy,Energy +484522,Energy,Energy +481866,Energy,Energy +481862,Energy,Energy +479360,Energy,Energy +479358,Energy,Energy +479357,Energy,Energy +479356,Energy,Energy +479355,Energy,Energy +478031,Energy,Energy +477982,Energy,Energy +477978,Energy,Energy +477970,Energy,Energy +477918,Energy,Energy +477915,Energy,Energy +477909,Energy,Energy +477905,Energy,Energy +472740,Energy,Energy +441344,Energy,Energy +441342,Energy,Energy +441340,Energy,Energy +441336,Energy,Energy +441333,Energy,Energy +441327,Energy,Energy +443556,Industry,Industry +442337,Environment,Environment +434014,Environment,Environment +480266,Environment,Environment +469214,Environment,Environment +467478,Environment,Environment +467474,Environment,Environment +467471,Environment,Environment +467469,Environment,Environment +464663,Environment,Environment +464655,Environment,Environment +464640,Environment,Environment +464634,Environment,Environment +464629,Environment,Environment +464625,Environment,Environment +460418,Environment,Environment +459653,Environment,Environment +459652,Environment,Environment +458857,Environment,Environment +458856,Environment,Environment +455903,Environment,Environment +455894,Environment,Environment +452204,Environment,Environment +449766,Environment,Environment +449765,Environment,Environment +449764,Environment,Environment +449763,Environment,Environment +449762,Environment,Environment +449760,Environment,Environment +449740,Environment,Environment +449738,Environment,Environment +449716,Environment,Environment +449710,Environment,Environment +449443,Environment,Environment +449442,Environment,Environment +449441,Environment,Environment +449440,Environment,Environment +449439,Environment,Environment +449438,Environment,Environment +449437,Environment,Environment +449436,Environment,Environment +449434,Environment,Environment +449433,Environment,Environment +449430,Environment,Environment +447659,Environment,Environment +447656,Environment,Environment +447655,Environment,Environment +443928,Environment,Environment +443927,Environment,Environment +443925,Environment,Environment +443922,Environment,Environment +443736,Environment,Environment +443734,Environment,Environment +443729,Environment,Environment +442365,Environment,Environment +447653,Fisheries,Fisheries +447652,Fisheries,Fisheries +434014,Fisheries,Fisheries +431648,Fisheries,Fisheries +480522,Fisheries,Fisheries +480521,Fisheries,Fisheries +480520,Fisheries,Fisheries +480519,Fisheries,Fisheries +480518,Fisheries,Fisheries +480517,Fisheries,Fisheries +480516,Fisheries,Fisheries +480515,Fisheries,Fisheries +480514,Fisheries,Fisheries +480513,Fisheries,Fisheries +480512,Fisheries,Fisheries +480511,Fisheries,Fisheries +480510,Fisheries,Fisheries +480509,Fisheries,Fisheries +480508,Fisheries,Fisheries +480507,Fisheries,Fisheries +480505,Fisheries,Fisheries +480504,Fisheries,Fisheries +480503,Fisheries,Fisheries +480502,Fisheries,Fisheries +480501,Fisheries,Fisheries +480500,Fisheries,Fisheries +480499,Fisheries,Fisheries +480496,Fisheries,Fisheries +480493,Fisheries,Fisheries +480492,Fisheries,Fisheries +471254,Fisheries,Fisheries +471252,Fisheries,Fisheries +471251,Fisheries,Fisheries +471250,Fisheries,Fisheries +471249,Fisheries,Fisheries +471248,Fisheries,Fisheries +471247,Fisheries,Fisheries +471246,Fisheries,Fisheries +471245,Fisheries,Fisheries +471244,Fisheries,Fisheries +471243,Fisheries,Fisheries +471242,Fisheries,Fisheries +471241,Fisheries,Fisheries +471240,Fisheries,Fisheries +471239,Fisheries,Fisheries +471238,Fisheries,Fisheries +471237,Fisheries,Fisheries +471236,Fisheries,Fisheries +471235,Fisheries,Fisheries +471234,Fisheries,Fisheries +471184,Fisheries,Fisheries +471179,Fisheries,Fisheries +471176,Fisheries,Fisheries +471167,Fisheries,Fisheries +469221,Fisheries,Fisheries +469220,Fisheries,Fisheries +469219,Fisheries,Fisheries +469218,Fisheries,Fisheries +469217,Fisheries,Fisheries +469216,Fisheries,Fisheries +469215,Fisheries,Fisheries +464655,Fisheries,Fisheries +464625,Fisheries,Fisheries +459652,Fisheries,Fisheries +458857,Fisheries,Fisheries +458856,Fisheries,Fisheries +457207,Fisheries,Fisheries +457205,Fisheries,Fisheries +455897,Fisheries,Fisheries +455894,Fisheries,Fisheries +447666,Fisheries,Fisheries +447664,Fisheries,Fisheries +447663,Fisheries,Fisheries +431194,Education,Education +431180,Education,Education +448362,Education,Education +446144,Education,Education +431207,Education,Education +431205,Education,Education +431204,Education,Education +538535,Housing,Housing +445283,International Trade,International Trade +493164,Health,Health +431150,Internal Trade,Internal Trade +432790,Government Procurement,Government Procurement +449977,Intellectual Property,Propriété intellectuelle +429909,Fisheries,Fisheries +472742,Consumer Issues,Consumer Issues +433880,International Trade,International Trade +436691,Health,Health +436691,Taxation and Finance,Taxation and Finance +436691,Transportation,Transportation +429944,Economic Development,Economic Development +463521,Research and Development,Research and Development +431515,Climate,Climate +431515,Economic Development,Economic Development +431515,Employment and Training,Employment and Training +431515,Energy,Energy +431519,Research and Development,Research and Development +444258,Economic Development,Economic Development +444258,Mining,Mining +430163,International Trade,International Trade +470327,Security,Security +442546,Economic Development,Economic Development +431260,Industry,Industry +442545,International Relations,International Relations +433788,International Trade,International Trade +442546,Justice and Law Enforcement,Justice and Law Enforcement +438116,Taxation and Finance,Taxation and Finance +430051,Agriculture,Agriculture +430086,Employment and Training,Employment and Training +430055,Industry,Industry +430060,Industry,Industry +438583,Economic Development,Economic Development +438583,Industry,Industry +431753,International Trade,International Trade +447644,Environment,Environment +434240,Budget,Budget +436995,Consumer Issues,Consumer Issues +434240,Labour,Labour +448830,Small Business,Small Business +434240,Taxation and Finance,Taxation and Finance +430882,Employment and Training,Employment and Training +430879,Industry,Industry +430882,Infrastructure,Infrastructure +433127,Government Procurement,Government Procurement +431977,Economic Development,Economic Development +438531,Industry,Industry +434814,International Trade,International Trade +506720,Industry,Industry +430144,International Trade,International Trade +532932,Consumer Issues,Consumer Issues +453750,Research and Development,Research and Development +433273,Taxation and Finance,Taxation and Finance +538653,Employment and Training,Employment and Training +431905,Tourism,Tourism +431905,Regional Development,Regional Development +446569,Labour,Labour +443796,Energy,Energy +442764,Climate,Climate +431671,Agriculture,Agriculture +434936,Tourism,Tourism +434936,Economic Development,Economic Development +432158,Agriculture,Agriculture +435669,Consumer Issues,Consumer Issues +432158,Economic Development,Economic Development +433748,Industry,Industry +432115,International Trade,International Trade +431787,Climate,Climate +432238,Transportation,Transportation +434296,Infrastructure,Infrastructure +431131,Health,Health +431133,Economic Development,Economic Development +431131,Research and Development,Research and Development +430362,Energy,Energy +430362,Infrastructure,Infrastructure +436746,Taxation and Finance,Taxation and Finance +446596,Transportation,Transportation +436746,Health,Health +463789,Research and Development,Research and Development +453684,Transportation,Transportation +454679,Health,Health +462199,Industry,Industry +535045,Economic Development,Economic Development +430491,Regional Development,Regional Development +434138,Agriculture,Agriculture +434138,Environment,Environment +430605,Energy,Energy +432604,Health,Health +432616,Economic Development,Economic Development +430712,International Trade,International Trade +430712,Taxation and Finance,Taxation and Finance +430818,Employment and Training,Employment and Training +449594,Employment and Training,Employment and Training +434247,International Trade,International Trade +522740,Financial Institutions,Financial Institutions +432551,Government Procurement,Government Procurement +431034,Industry,Industry +432511,Agriculture,Agriculture +432513,Energy,Energy +432508,Environment,Environment +440558,Economic Development,Economic Development +440558,Employment and Training,Employment and Training +440558,Industry,Industry +468591,Agriculture,Agriculture +468591,Climate,Climate +468591,Energy,Energy +468591,Environment,Environment +468591,Forestry,Forestry +468591,Government Procurement,Government Procurement +468589,Industry,Industry +468591,Research and Development,Research and Development +432061,Economic Development,Economic Development +435225,Energy,Energy +472740,Industry,Industry +431156,Sports,Sports +431156,Employment and Training,Employment and Training +431173,Internal Trade,Internal Trade +447578,Economic Development,Economic Development +464655,Education,Education +442363,Environment,Environment +447654,Fisheries,Fisheries +431196,Education,Education +440785,Housing,Housing +479297,International Trade,International Trade +431271,Industry,Industry +431278,Industry,Industry +439524,Internal Trade,Internal Trade +445679,Mining,Mining +445679,Labour,Labour +471181,International Trade,International Trade +431319,Small Business,Small Business +455879,Environment,Environment +432096,Constitutional Issues,Constitutional Issues +432096,Economic Development,Economic Development +432096,Energy,Energy +432096,Industry,Industry +432096,Regional Development,Regional Development +431377,Pensions,Pensions +431378,Pensions,Pensions +432903,Health,Health +432231,International Trade,International Trade +447906,Environment,Environment +437720,Agriculture,Agriculture +438514,Economic Development,Economic Development +438514,Industry,Industry +438514,International Trade,International Trade +445254,Economic Development,Economic Development +445254,Industry,Industry +445254,Regional Development,Regional Development +431683,Economic Development,Economic Development +496776,Health,Health +496776,Taxation and Finance,Taxation and Finance +437319,Budget,Budget +431435,Pensions,Pensions +431436,Pensions,Pensions +431437,Pensions,Pensions +479037,Mining,Mining +431438,Pensions,Pensions +431439,Pensions,Pensions +431441,Pensions,Pensions +431442,Pensions,Pensions +432164,Consumer Issues,Consumer Issues +432164,Industry,Industry +431443,Pensions,Pensions +431444,Pensions,Pensions +431445,Pensions,Pensions +431446,Pensions,Pensions +431447,Pensions,Pensions +431448,Pensions,Pensions +431449,Pensions,Pensions +431450,Pensions,Pensions +431454,Transportation,Transportation +431458,Pensions,Pensions +431461,Pensions,Pensions +431462,Pensions,Pensions +431463,Pensions,Pensions +431464,Pensions,Pensions +431465,Pensions,Pensions +431466,Pensions,Pensions +431467,Pensions,Pensions +431468,Pensions,Pensions +431469,Pensions,Pensions +431470,Pensions,Pensions +431471,Pensions,Pensions +431472,Pensions,Pensions +431473,Pensions,Pensions +431474,Pensions,Pensions +431475,Pensions,Pensions +431476,Pensions,Pensions +431477,Pensions,Pensions +431478,Pensions,Pensions +431479,Pensions,Pensions +431480,Pensions,Pensions +431481,Pensions,Pensions +431482,Pensions,Pensions +431483,Pensions,Pensions +431484,Pensions,Pensions +431485,Pensions,Pensions +431486,Pensions,Pensions +431487,Pensions,Pensions +431488,Pensions,Pensions +431489,Pensions,Pensions +431490,Pensions,Pensions +431491,Pensions,Pensions +431492,Pensions,Pensions +453147,Environment,Environment +451165,Agriculture,Agriculture +448294,Agriculture,Agriculture +431624,Energy,Energy +431624,Environment,Environment +431629,Energy,Energy +431630,Environment,Environment +431513,Industry,Industry +431524,Internal Trade,Internal Trade +431526,Immigration,Immigration +456292,Industry,Industry +433059,Intellectual Property,Intellectual Property +432844,Infrastructure,Infrastructure +432844,Transportation,Transportation +432989,Economic Development,Economic Development +494504,Regional Development,Regional Development +497390,Industry,Industry +431549,Research and Development,Research and Development +431550,Pensions,Pensions +431551,Pensions,Pensions +431552,Pensions,Pensions +431553,Pensions,Pensions +431554,Pensions,Pensions +431555,Pensions,Pensions +431559,Pensions,Pensions +431560,Pensions,Pensions +431561,Pensions,Pensions +431562,Pensions,Pensions +431563,Pensions,Pensions +431565,Pensions,Pensions +431566,Pensions,Pensions +431567,Pensions,Pensions +431568,Pensions,Pensions +431569,Pensions,Pensions +431570,Pensions,Pensions +431571,Pensions,Pensions +431572,Pensions,Pensions +431573,Pensions,Pensions +431574,Pensions,Pensions +431575,Pensions,Pensions +431576,Budget,Budget +464311,Agriculture,Agriculture +464311,Defence,Defence +464311,Energy,Energy +485310,Environment,Environment +495804,Fisheries,Fisheries +458507,Forestry,Forestry +526662,Government Procurement,Government Procurement +454690,Industry,Industry +467742,International Development,International Development +458509,International Relations,International Relations +469343,International Trade,International Trade +467742,Research and Development,Research and Development +539948,Transportation,Transportation +431584,Taxation and Finance,Taxation and Finance +436059,Transportation,Transportation +439550,Health,Health +451327,Climate,Climate +526612,Energy,Energy +472001,Environment,Environment +432896,Fisheries,Fisheries +488962,Health,Health +472002,Regional Development,Regional Development +433150,Health,Health +431590,Transportation,Transportation +431591,Pensions,Pensions +431592,Pensions,Pensions +431593,Pensions,Pensions +431594,Pensions,Pensions +431595,Pensions,Pensions +431596,Pensions,Pensions +431597,Pensions,Pensions +431598,Pensions,Pensions +431599,Pensions,Pensions +431600,Pensions,Pensions +431601,Pensions,Pensions +431602,Pensions,Pensions +431603,Pensions,Pensions +431604,Pensions,Pensions +431605,Pensions,Pensions +431606,Pensions,Pensions +431607,Pensions,Pensions +441347,Health,Health +449576,Research and Development,Research and Development +440749,Research and Development,Research and Development +449056,International Trade,International Trade +434065,Economic Development,Economic Development +450958,Environment,Environment +434065,Industry,Industry +431647,Sports,Sports +539936,Economic Development,Economic Development +439610,Energy,Energy +439610,Environment,Environment +449733,Energy,Energy +439874,Health,Health +439524,Mining,Mining +439511,Mining,Mining +471181,Mining,Mining +445679,International Trade,International Trade +439511,International Trade,International Trade +432095,Constitutional Issues,Constitutional Issues +432095,Economic Development,Economic Development +432095,Energy,Energy +432095,Industry,Industry +432095,Regional Development,Regional Development +447910,International Trade,International Trade +437719,Agriculture,Agriculture +432231,Agriculture,Agriculture +447910,Agriculture,Agriculture +447909,Agriculture,Agriculture +447908,Agriculture,Agriculture +447906,Agriculture,Agriculture +447905,Agriculture,Agriculture +432149,Economic Development,Economic Development +432149,Industry,Industry +432149,International Trade,International Trade +443557,Economic Development,Economic Development +442344,Economic Development,Economic Development +443557,Industry,Industry +442344,Industry,Industry +443557,Regional Development,Regional Development +442344,Regional Development,Regional Development +437318,Budget,Budget +437317,Budget,Budget +431431,Budget,Budget +470143,Budget,Budget +465821,Budget,Budget +462189,Budget,Budget +460854,Budget,Budget +451820,Budget,Budget +440444,Budget,Budget +440443,Budget,Budget +479036,Mining,Mining +479035,Mining,Mining +451384,Mining,Mining +449076,Mining,Mining +449075,Mining,Mining +449074,Mining,Mining +449073,Mining,Mining +449071,Mining,Mining +441538,Mining,Mining +441536,Mining,Mining +441535,Mining,Mining +441534,Mining,Mining +441530,Mining,Mining +432989,Mining,Mining +432987,Mining,Mining +431842,Mining,Mining +431548,Mining,Mining +431547,Mining,Mining +431546,Mining,Mining +431545,Mining,Mining +431544,Mining,Mining +431543,Mining,Mining +431542,Mining,Mining +431541,Mining,Mining +511720,Mining,Mining +509396,Mining,Mining +507188,Mining,Mining +506013,Mining,Mining +506011,Mining,Mining +506009,Mining,Mining +500175,Mining,Mining +500174,Mining,Mining +500173,Mining,Mining +500171,Mining,Mining +497395,Mining,Mining +497390,Mining,Mining +497388,Mining,Mining +497320,Mining,Mining +496584,Mining,Mining +495727,Mining,Mining +495169,Mining,Mining +494505,Mining,Mining +494504,Mining,Mining +492353,Mining,Mining +485472,Mining,Mining +483148,Mining,Mining +482471,Mining,Mining +482470,Mining,Mining +479038,Mining,Mining +431456,Consumer Issues,Consumer Issues +431456,Industry,Industry +451165,Environment,Environment +451073,Agriculture,Agriculture +444514,Agriculture,Agriculture +453147,Agriculture,Agriculture +448149,Agriculture,Agriculture +431623,Energy,Energy +431622,Energy,Energy +444834,Energy,Energy +431626,Energy,Energy +431625,Energy,Energy +431623,Environment,Environment +431622,Environment,Environment +444834,Environment,Environment +431626,Environment,Environment +431625,Environment,Environment +431628,Energy,Energy +431632,Energy,Energy +431631,Energy,Energy +431630,Energy,Energy +431629,Environment,Environment +431628,Environment,Environment +431632,Environment,Environment +431631,Environment,Environment +431523,Internal Trade,Internal Trade +431520,Internal Trade,Internal Trade +444311,Industry,Industry +432746,Intellectual Property,Intellectual Property +431654,Intellectual Property,Intellectual Property +432842,Infrastructure,Infrastructure +432841,Infrastructure,Infrastructure +432845,Infrastructure,Infrastructure +432843,Transportation,Transportation +432841,Transportation,Transportation +432845,Transportation,Transportation +432987,Economic Development,Economic Development +431541,Economic Development,Economic Development +511720,Economic Development,Economic Development +509396,Economic Development,Economic Development +507188,Economic Development,Economic Development +506013,Economic Development,Economic Development +506011,Economic Development,Economic Development +506009,Economic Development,Economic Development +500175,Economic Development,Economic Development +500174,Economic Development,Economic Development +500173,Economic Development,Economic Development +500171,Economic Development,Economic Development +497395,Economic Development,Economic Development +497390,Economic Development,Economic Development +497388,Economic Development,Economic Development +497320,Economic Development,Economic Development +496584,Economic Development,Economic Development +495727,Economic Development,Economic Development +495169,Economic Development,Economic Development +494505,Economic Development,Economic Development +494504,Economic Development,Economic Development +494095,Economic Development,Economic Development +494014,Economic Development,Economic Development +485472,Economic Development,Economic Development +483148,Economic Development,Economic Development +482470,Economic Development,Economic Development +479038,Economic Development,Economic Development +479037,Economic Development,Economic Development +479036,Economic Development,Economic Development +479035,Economic Development,Economic Development +451384,Economic Development,Economic Development +449076,Economic Development,Economic Development +449075,Economic Development,Economic Development +449074,Economic Development,Economic Development +449073,Economic Development,Economic Development +449071,Economic Development,Economic Development +441538,Economic Development,Economic Development +441536,Economic Development,Economic Development +441535,Economic Development,Economic Development +441534,Economic Development,Economic Development +441530,Economic Development,Economic Development +494095,Regional Development,Regional Development +483148,Regional Development,Regional Development +482470,Regional Development,Regional Development +441538,Regional Development,Regional Development +441534,Regional Development,Regional Development +432989,Regional Development,Regional Development +432987,Regional Development,Regional Development +431541,Regional Development,Regional Development +507188,Regional Development,Regional Development +506013,Regional Development,Regional Development +506011,Regional Development,Regional Development +506009,Regional Development,Regional Development +500173,Regional Development,Regional Development +500171,Regional Development,Regional Development +497395,Regional Development,Regional Development +497388,Regional Development,Regional Development +497320,Regional Development,Regional Development +496584,Regional Development,Regional Development +495727,Regional Development,Regional Development +495169,Regional Development,Regional Development +494505,Regional Development,Regional Development +497388,Industry,Industry +497320,Industry,Industry +496584,Industry,Industry +495727,Industry,Industry +495169,Industry,Industry +494505,Industry,Industry +494504,Industry,Industry +494095,Industry,Industry +494014,Industry,Industry +492353,Industry,Industry +485472,Industry,Industry +483148,Industry,Industry +482471,Industry,Industry +482470,Industry,Industry +479038,Industry,Industry +479037,Industry,Industry +479036,Industry,Industry +479035,Industry,Industry +451384,Industry,Industry +449076,Industry,Industry +449075,Industry,Industry +449074,Industry,Industry +449073,Industry,Industry +449071,Industry,Industry +441538,Industry,Industry +441536,Industry,Industry +441535,Industry,Industry +441534,Industry,Industry +441530,Industry,Industry +432989,Industry,Industry +432987,Industry,Industry +431842,Industry,Industry +431548,Industry,Industry +431547,Industry,Industry +431546,Industry,Industry +431545,Industry,Industry +431544,Industry,Industry +431543,Industry,Industry +431542,Industry,Industry +511720,Industry,Industry +509396,Industry,Industry +507188,Industry,Industry +506013,Industry,Industry +506011,Industry,Industry +506009,Industry,Industry +500175,Industry,Industry +500174,Industry,Industry +500173,Industry,Industry +500171,Industry,Industry +497395,Industry,Industry +523524,Research and Development,Research and Development +523522,Research and Development,Research and Development +454691,Agriculture,Agriculture +454690,Agriculture,Agriculture +498806,Agriculture,Agriculture +495804,Agriculture,Agriculture +467742,Agriculture,Agriculture +464325,Agriculture,Agriculture +464316,Agriculture,Agriculture +458509,Defence,Defence +448107,Defence,Defence +542087,Defence,Defence +542086,Defence,Defence +539962,Defence,Defence +539948,Defence,Defence +539947,Defence,Defence +539945,Defence,Defence +539938,Defence,Defence +532291,Defence,Defence +532288,Defence,Defence +498848,Defence,Defence +498832,Defence,Defence +495833,Defence,Defence +495810,Defence,Defence +493615,Defence,Defence +485322,Defence,Defence +485320,Defence,Defence +467742,Defence,Defence +464333,Defence,Defence +464325,Defence,Defence +464316,Defence,Defence +454691,Energy,Energy +454690,Energy,Energy +495804,Energy,Energy +467742,Energy,Energy +464325,Energy,Energy +464316,Energy,Energy +477775,Environment,Environment +469343,Environment,Environment +467742,Environment,Environment +464325,Environment,Environment +464316,Environment,Environment +464311,Environment,Environment +458507,Environment,Environment +454691,Environment,Environment +454690,Environment,Environment +451974,Environment,Environment +542087,Environment,Environment +539962,Environment,Environment +539950,Environment,Environment +532288,Environment,Environment +526662,Environment,Environment +526661,Environment,Environment +522199,Environment,Environment +510542,Environment,Environment +510538,Environment,Environment +508128,Environment,Environment +504760,Environment,Environment +504751,Environment,Environment +504743,Environment,Environment +502188,Environment,Environment +502179,Environment,Environment +502163,Environment,Environment +502157,Environment,Environment +502141,Environment,Environment +502138,Environment,Environment +502131,Environment,Environment +502119,Environment,Environment +498886,Environment,Environment +498848,Environment,Environment +498842,Environment,Environment +498839,Environment,Environment +498806,Environment,Environment +498794,Environment,Environment +495833,Environment,Environment +495810,Environment,Environment +495804,Environment,Environment +493615,Environment,Environment +490517,Environment,Environment +485322,Environment,Environment +485320,Environment,Environment +485319,Environment,Environment +485317,Environment,Environment +485316,Environment,Environment +485315,Environment,Environment +454691,Forestry,Forestry +454690,Forestry,Forestry +498806,Forestry,Forestry +495804,Forestry,Forestry +467742,Forestry,Forestry +464325,Forestry,Forestry +464316,Forestry,Forestry +464311,Forestry,Forestry +526661,Government Procurement,Government Procurement +522199,Government Procurement,Government Procurement +495810,Government Procurement,Government Procurement +495804,Government Procurement,Government Procurement +493615,Government Procurement,Government Procurement +464325,Government Procurement,Government Procurement +464316,Government Procurement,Government Procurement +464311,Government Procurement,Government Procurement +542086,Government Procurement,Government Procurement +539962,Government Procurement,Government Procurement +539950,Government Procurement,Government Procurement +539948,Government Procurement,Government Procurement +539947,Government Procurement,Government Procurement +539938,Government Procurement,Government Procurement +532291,Government Procurement,Government Procurement +532288,Government Procurement,Government Procurement +451980,Industry,Industry +441559,Industry,Industry +542087,Industry,Industry +539962,Industry,Industry +539950,Industry,Industry +539948,Industry,Industry +539947,Industry,Industry +539938,Industry,Industry +532291,Industry,Industry +532288,Industry,Industry +526662,Industry,Industry +526661,Industry,Industry +522199,Industry,Industry +510542,Industry,Industry +510538,Industry,Industry +508128,Industry,Industry +508126,Industry,Industry +504760,Industry,Industry +504751,Industry,Industry +504743,Industry,Industry +502188,Industry,Industry +502179,Industry,Industry +502163,Industry,Industry +502157,Industry,Industry +502141,Industry,Industry +502138,Industry,Industry +502131,Industry,Industry +502119,Industry,Industry +498886,Industry,Industry +498842,Industry,Industry +498839,Industry,Industry +498806,Industry,Industry +498794,Industry,Industry +495810,Industry,Industry +495804,Industry,Industry +493615,Industry,Industry +490517,Industry,Industry +485319,Industry,Industry +485317,Industry,Industry +477775,Industry,Industry +477773,Industry,Industry +477771,Industry,Industry +477769,Industry,Industry +477765,Industry,Industry +475465,Industry,Industry +475457,Industry,Industry +475451,Industry,Industry +472170,Industry,Industry +472167,Industry,Industry +472164,Industry,Industry +469343,Industry,Industry +467742,Industry,Industry +464325,Industry,Industry +464316,Industry,Industry +464311,Industry,Industry +458513,Industry,Industry +458507,Industry,Industry +454691,Industry,Industry +454691,International Relations,International Relations +454690,International Relations,International Relations +542087,International Relations,International Relations +542086,International Relations,International Relations +539962,International Relations,International Relations +539950,International Relations,International Relations +539948,International Relations,International Relations +532291,International Relations,International Relations +532288,International Relations,International Relations +526662,International Relations,International Relations +526661,International Relations,International Relations +522199,International Relations,International Relations +510542,International Relations,International Relations +504743,International Relations,International Relations +502188,International Relations,International Relations +502179,International Relations,International Relations +502163,International Relations,International Relations +502131,International Relations,International Relations +502119,International Relations,International Relations +498886,International Relations,International Relations +498848,International Relations,International Relations +498842,International Relations,International Relations +498839,International Relations,International Relations +498806,International Relations,International Relations +498794,International Relations,International Relations +495833,International Relations,International Relations +495810,International Relations,International Relations +495804,International Relations,International Relations +493615,International Relations,International Relations +490517,International Relations,International Relations +485322,International Relations,International Relations +485320,International Relations,International Relations +485319,International Relations,International Relations +485317,International Relations,International Relations +485316,International Relations,International Relations +485315,International Relations,International Relations +485310,International Relations,International Relations +467742,International Relations,International Relations +464325,International Relations,International Relations +464316,International Relations,International Relations +464311,International Relations,International Relations +467742,International Trade,International Trade +464316,International Trade,International Trade +458507,International Trade,International Trade +456988,International Trade,International Trade +454691,International Trade,International Trade +454690,International Trade,International Trade +542087,International Trade,International Trade +539962,International Trade,International Trade +539947,International Trade,International Trade +539945,International Trade,International Trade +539938,International Trade,International Trade +532291,International Trade,International Trade +532288,International Trade,International Trade +526662,International Trade,International Trade +526661,International Trade,International Trade +522199,International Trade,International Trade +502188,International Trade,International Trade +498848,International Trade,International Trade +495810,International Trade,International Trade +495804,International Trade,International Trade +485316,International Trade,International Trade +464325,Research and Development,Research and Development +464316,Research and Development,Research and Development +539948,Research and Development,Research and Development +539945,Research and Development,Research and Development +539938,Research and Development,Research and Development +526662,Research and Development,Research and Development +526661,Research and Development,Research and Development +522199,Research and Development,Research and Development +495810,Research and Development,Research and Development +493615,Research and Development,Research and Development +485319,Research and Development,Research and Development +485317,Research and Development,Research and Development +475465,Research and Development,Research and Development +475457,Research and Development,Research and Development +475451,Research and Development,Research and Development +539945,Transportation,Transportation +539938,Transportation,Transportation +454690,Transportation,Transportation +432152,Transportation,Transportation +432151,Transportation,Transportation +450711,Climate,Climate +444560,Climate,Climate +440618,Climate,Climate +439945,Climate,Climate +439918,Climate,Climate +433052,Climate,Climate +433050,Climate,Climate +433047,Climate,Climate +432926,Climate,Climate +432900,Climate,Climate +432830,Climate,Climate +432707,Climate,Climate +432703,Climate,Climate +432670,Climate,Climate +543833,Climate,Climate +543556,Climate,Climate +543555,Climate,Climate +543554,Climate,Climate +543553,Climate,Climate +543552,Climate,Climate +543550,Climate,Climate +543549,Climate,Climate +543548,Climate,Climate +543547,Climate,Climate +543546,Climate,Climate +543545,Climate,Climate +543544,Climate,Climate +543543,Climate,Climate +543541,Climate,Climate +543540,Climate,Climate +543539,Climate,Climate +543538,Climate,Climate +543536,Climate,Climate +543535,Climate,Climate +543533,Climate,Climate +543532,Climate,Climate +543530,Climate,Climate +543529,Climate,Climate +542135,Climate,Climate +540294,Climate,Climate +540292,Climate,Climate +540192,Climate,Climate +540191,Climate,Climate +540190,Climate,Climate +540189,Climate,Climate +540188,Climate,Climate +538901,Climate,Climate +537864,Climate,Climate +537861,Climate,Climate +532439,Climate,Climate +532437,Climate,Climate +532436,Climate,Climate +532435,Climate,Climate +532434,Climate,Climate +532432,Climate,Climate +528683,Climate,Climate +528680,Climate,Climate +528679,Climate,Climate +528676,Climate,Climate +528672,Climate,Climate +528669,Climate,Climate +528665,Climate,Climate +528663,Climate,Climate +526623,Climate,Climate +526619,Climate,Climate +526614,Climate,Climate +526613,Climate,Climate +526612,Climate,Climate +526608,Climate,Climate +526606,Climate,Climate +526605,Climate,Climate +521506,Climate,Climate +521504,Climate,Climate +521502,Climate,Climate +521383,Climate,Climate +517435,Climate,Climate +517434,Climate,Climate +517427,Climate,Climate +517423,Climate,Climate +517422,Climate,Climate +517411,Climate,Climate +517404,Climate,Climate +517399,Climate,Climate +517397,Climate,Climate +517352,Climate,Climate +517349,Climate,Climate +513641,Climate,Climate +513640,Climate,Climate +513639,Climate,Climate +513535,Climate,Climate +513534,Climate,Climate +512054,Climate,Climate +512053,Climate,Climate +511731,Climate,Climate +511730,Climate,Climate +509890,Climate,Climate +509799,Climate,Climate +509798,Climate,Climate +509796,Climate,Climate +509795,Climate,Climate +509793,Climate,Climate +509792,Climate,Climate +509791,Climate,Climate +509790,Climate,Climate +509789,Climate,Climate +509788,Climate,Climate +509787,Climate,Climate +509786,Climate,Climate +509785,Climate,Climate +509783,Climate,Climate +509782,Climate,Climate +507099,Climate,Climate +507097,Climate,Climate +506677,Climate,Climate +506655,Climate,Climate +506653,Climate,Climate +500275,Climate,Climate +500274,Climate,Climate +500272,Climate,Climate +500271,Climate,Climate +499884,Climate,Climate +499881,Climate,Climate +498054,Climate,Climate +498052,Climate,Climate +496783,Climate,Climate +494381,Climate,Climate +494111,Climate,Climate +494092,Climate,Climate +494091,Climate,Climate +494090,Climate,Climate +494089,Climate,Climate +493950,Climate,Climate +493949,Climate,Climate +493948,Climate,Climate +492915,Climate,Climate +492914,Climate,Climate +489774,Climate,Climate +488970,Climate,Climate +488967,Climate,Climate +488966,Climate,Climate +488964,Climate,Climate +488959,Climate,Climate +486126,Climate,Climate +484452,Climate,Climate +484440,Climate,Climate +481207,Climate,Climate +478938,Climate,Climate +478920,Climate,Climate +478083,Climate,Climate +478072,Climate,Climate +476346,Climate,Climate +475019,Climate,Climate +471131,Climate,Climate +471113,Climate,Climate +471098,Climate,Climate +468997,Climate,Climate +466863,Climate,Climate +466851,Climate,Climate +464309,Climate,Climate +461121,Climate,Climate +461120,Climate,Climate +461119,Climate,Climate +455069,Climate,Climate +451335,Climate,Climate +451334,Climate,Climate +451330,Climate,Climate +451328,Climate,Climate +526607,Energy,Energy +517427,Energy,Energy +433052,Energy,Energy +432831,Energy,Energy +543706,Energy,Energy +543696,Energy,Energy +543694,Energy,Energy +543687,Energy,Energy +543684,Energy,Energy +543683,Energy,Energy +543682,Energy,Energy +543681,Energy,Energy +542135,Energy,Energy +540191,Energy,Energy +540190,Energy,Energy +537862,Energy,Energy +471999,Environment,Environment +471998,Environment,Environment +471098,Environment,Environment +466846,Environment,Environment +464309,Environment,Environment +464300,Environment,Environment +461121,Environment,Environment +461120,Environment,Environment +461119,Environment,Environment +455069,Environment,Environment +450711,Environment,Environment +446248,Environment,Environment +444560,Environment,Environment +440618,Environment,Environment +439945,Environment,Environment +433052,Environment,Environment +433050,Environment,Environment +433047,Environment,Environment +432896,Environment,Environment +432831,Environment,Environment +432707,Environment,Environment +432705,Environment,Environment +432703,Environment,Environment +432670,Environment,Environment +540295,Environment,Environment +526606,Environment,Environment +517435,Environment,Environment +517427,Environment,Environment +517397,Environment,Environment +517349,Environment,Environment +514543,Environment,Environment +514541,Environment,Environment +514539,Environment,Environment +506649,Environment,Environment +503325,Environment,Environment +503101,Environment,Environment +494383,Environment,Environment +484444,Environment,Environment +484432,Environment,Environment +482852,Environment,Environment +482851,Environment,Environment +482848,Environment,Environment +481207,Environment,Environment +481200,Environment,Environment +481195,Environment,Environment +481193,Environment,Environment +478911,Environment,Environment +461121,Regional Development,Regional Development +431588,Health,Health +488412,Health,Health +435224,Health,Health +539924,Health,Health +538309,Health,Health +538305,Health,Health +538300,Health,Health +517698,Health,Health +514722,Health,Health +498819,Health,Health +489979,Health,Health +477980,Health,Health +464262,Health,Health +459586,Health,Health +457018,Health,Health +451835,Health,Health +451826,Health,Health +449587,Health,Health +449576,Health,Health +447336,Health,Health +441351,Health,Health +447336,Research and Development,Research and Development +441351,Research and Development,Research and Development +464262,Research and Development,Research and Development +457018,Research and Development,Research and Development +451835,Research and Development,Research and Development +451826,Research and Development,Research and Development +449587,Research and Development,Research and Development +434381,Research and Development,Research and Development +431735,International Trade,International Trade +431627,International Trade,International Trade +434064,Economic Development,Economic Development +434063,Economic Development,Economic Development +456617,Economic Development,Economic Development +456323,Economic Development,Economic Development +454431,Economic Development,Economic Development +450958,Economic Development,Economic Development +449064,Economic Development,Economic Development +448978,Economic Development,Economic Development +445199,Economic Development,Economic Development +443347,Economic Development,Economic Development +443101,Economic Development,Economic Development +443100,Economic Development,Economic Development +436733,Economic Development,Economic Development +436732,Economic Development,Economic Development +436731,Economic Development,Economic Development +436730,Economic Development,Economic Development +436154,Economic Development,Economic Development +436153,Economic Development,Economic Development +436152,Economic Development,Economic Development +434143,Economic Development,Economic Development +434142,Economic Development,Economic Development +434141,Economic Development,Economic Development +434140,Economic Development,Economic Development +448978,Environment,Environment +436732,Environment,Environment +454431,Environment,Environment +434064,Industry,Industry +434063,Industry,Industry +449064,Industry,Industry +448978,Industry,Industry +443347,Industry,Industry +443101,Industry,Industry +443100,Industry,Industry +436731,Industry,Industry +436154,Industry,Industry +436153,Industry,Industry +436152,Industry,Industry +434143,Industry,Industry +434142,Industry,Industry +434141,Industry,Industry +434140,Industry,Industry +529070,Economic Development,Economic Development +431656,Economic Development,Economic Development +543852,Economic Development,Economic Development +541745,Economic Development,Economic Development +539946,Economic Development,Economic Development +439608,Energy,Energy +439608,Environment,Environment +449729,Energy,Energy +436646,Health,Health +408811,Arts and Culture,Arts and Culture +408810,Arts and Culture,Arts and Culture +439690,Arts and Culture,Arts and Culture +439689,Arts and Culture,Arts and Culture +439687,Arts and Culture,Arts and Culture +416038,Arts and Culture,Arts and Culture +412483,Arts and Culture,Arts and Culture +452178,Aboriginal Affairs,Aboriginal Affairs +452176,Aboriginal Affairs,Aboriginal Affairs +452149,Aboriginal Affairs,Aboriginal Affairs +452145,Aboriginal Affairs,Aboriginal Affairs +452098,Aboriginal Affairs,Aboriginal Affairs +448648,Aboriginal Affairs,Aboriginal Affairs +448647,Aboriginal Affairs,Aboriginal Affairs +446488,Aboriginal Affairs,Aboriginal Affairs +446487,Aboriginal Affairs,Aboriginal Affairs +446485,Aboriginal Affairs,Aboriginal Affairs +444563,Aboriginal Affairs,Aboriginal Affairs +444558,Aboriginal Affairs,Aboriginal Affairs +443433,Aboriginal Affairs,Aboriginal Affairs +443326,Aboriginal Affairs,Aboriginal Affairs +443325,Aboriginal Affairs,Aboriginal Affairs +440929,Aboriginal Affairs,Aboriginal Affairs +440927,Aboriginal Affairs,Aboriginal Affairs +440926,Aboriginal Affairs,Aboriginal Affairs +440925,Aboriginal Affairs,Aboriginal Affairs +440924,Aboriginal Affairs,Aboriginal Affairs +440922,Aboriginal Affairs,Aboriginal Affairs +439789,Aboriginal Affairs,Aboriginal Affairs +439787,Aboriginal Affairs,Aboriginal Affairs +439786,Aboriginal Affairs,Aboriginal Affairs +439785,Aboriginal Affairs,Aboriginal Affairs +439784,Aboriginal Affairs,Aboriginal Affairs +439783,Aboriginal Affairs,Aboriginal Affairs +431340,Aboriginal Affairs,Aboriginal Affairs +431338,Aboriginal Affairs,Aboriginal Affairs +429048,Aboriginal Affairs,Aboriginal Affairs +429034,Aboriginal Affairs,Aboriginal Affairs +429032,Aboriginal Affairs,Aboriginal Affairs +429022,Aboriginal Affairs,Aboriginal Affairs +427080,Aboriginal Affairs,Aboriginal Affairs +420350,Aboriginal Affairs,Aboriginal Affairs +413748,Aboriginal Affairs,Aboriginal Affairs +408319,Aboriginal Affairs,Aboriginal Affairs +466957,Aboriginal Affairs,Aboriginal Affairs +466952,Aboriginal Affairs,Aboriginal Affairs +466948,Aboriginal Affairs,Aboriginal Affairs +466947,Aboriginal Affairs,Aboriginal Affairs +466945,Aboriginal Affairs,Aboriginal Affairs +466941,Aboriginal Affairs,Aboriginal Affairs +462735,Aboriginal Affairs,Aboriginal Affairs +462698,Aboriginal Affairs,Aboriginal Affairs +462695,Aboriginal Affairs,Aboriginal Affairs +462692,Aboriginal Affairs,Aboriginal Affairs +462690,Aboriginal Affairs,Aboriginal Affairs +462689,Aboriginal Affairs,Aboriginal Affairs +416418,Aboriginal Affairs,Aboriginal Affairs +416412,Aboriginal Affairs,Aboriginal Affairs +429787,Aboriginal Affairs,Aboriginal Affairs +429785,Aboriginal Affairs,Aboriginal Affairs +429784,Aboriginal Affairs,Aboriginal Affairs +422788,Aboriginal Affairs,Aboriginal Affairs +408606,Aboriginal Affairs,Aboriginal Affairs +408601,Aboriginal Affairs,Aboriginal Affairs +408970,Aboriginal Affairs,Aboriginal Affairs +433019,Science and Technology,Science and Technology +433016,Science and Technology,Science and Technology +417139,Science and Technology,Science and Technology +527304,Science and Technology,Science and Technology +527303,Science and Technology,Science and Technology +527302,Science and Technology,Science and Technology +527299,Science and Technology,Science and Technology +527298,Science and Technology,Science and Technology +527297,Science and Technology,Science and Technology +527296,Science and Technology,Science and Technology +527295,Science and Technology,Science and Technology +527294,Science and Technology,Science and Technology +527293,Science and Technology,Science and Technology +527292,Science and Technology,Science and Technology +527291,Science and Technology,Science and Technology +527289,Science and Technology,Science and Technology +527288,Science and Technology,Science and Technology +519176,Science and Technology,Science and Technology +516179,Science and Technology,Science and Technology +501064,Science and Technology,Science and Technology +490909,Science and Technology,Science and Technology +490908,Science and Technology,Science and Technology +490907,Science and Technology,Science and Technology +490906,Science and Technology,Science and Technology +490905,Science and Technology,Science and Technology +490904,Science and Technology,Science and Technology +463419,Science and Technology,Science and Technology +460970,Science and Technology,Science and Technology +422408,Aboriginal Affairs,Aboriginal Affairs +422407,Aboriginal Affairs,Aboriginal Affairs +455600,Aboriginal Affairs,Aboriginal Affairs +455598,Aboriginal Affairs,Aboriginal Affairs +455597,Aboriginal Affairs,Aboriginal Affairs +431320,Aboriginal Affairs,Aboriginal Affairs +422419,Aboriginal Affairs,Aboriginal Affairs +422416,Aboriginal Affairs,Aboriginal Affairs +412530,Arts and Culture,Arts and Culture +408815,Arts and Culture,Arts and Culture +467533,Arts and Culture,Arts and Culture +446573,Arts and Culture,Arts and Culture +446572,Arts and Culture,Arts and Culture +446558,Arts and Culture,Arts and Culture +437561,Arts and Culture,Arts and Culture +437527,Arts and Culture,Arts and Culture +437524,Arts and Culture,Arts and Culture +437522,Arts and Culture,Arts and Culture +428022,Arts and Culture,Arts and Culture +418394,Arts and Culture,Arts and Culture +418393,Arts and Culture,Arts and Culture +414330,Arts and Culture,Arts and Culture +416491,Aboriginal Affairs,Aboriginal Affairs +442796,Science and Technology,Science and Technology +440206,Science and Technology,Science and Technology +436555,Science and Technology,Science and Technology +433230,Science and Technology,Science and Technology +433229,Science and Technology,Science and Technology +433226,Science and Technology,Science and Technology +485816,Science and Technology,Science and Technology +481823,Science and Technology,Science and Technology +481820,Science and Technology,Science and Technology +447035,Science and Technology,Science and Technology +419109,Aboriginal Affairs,Aboriginal Affairs +417721,Science and Technology,Science and Technology +409075,Science and Technology,Science and Technology +509545,Aboriginal Affairs,Aboriginal Affairs +449026,Aboriginal Affairs,Aboriginal Affairs +432890,Telecommunications,Telecommunications +452996,Aboriginal Affairs,Aboriginal Affairs +452993,Aboriginal Affairs,Aboriginal Affairs +540470,Aboriginal Affairs,Aboriginal Affairs +526085,Aboriginal Affairs,Aboriginal Affairs +493805,Aboriginal Affairs,Aboriginal Affairs +431193,Aboriginal Affairs,Aboriginal Affairs +408309,Arts and Culture,Arts and Culture +408308,Arts and Culture,Arts and Culture +413269,Arts and Culture,Arts and Culture +420196,Aboriginal Affairs,Aboriginal Affairs +420193,Aboriginal Affairs,Aboriginal Affairs +412253,Arts and Culture,Arts and Culture +439628,Science and Technology,Science and Technology +439626,Science and Technology,Science and Technology +410281,Science and Technology,Science and Technology +515153,Science and Technology,Science and Technology +491895,Science and Technology,Science and Technology +491892,Science and Technology,Science and Technology +491890,Science and Technology,Science and Technology +491889,Science and Technology,Science and Technology +491888,Science and Technology,Science and Technology +488820,Science and Technology,Science and Technology +488819,Science and Technology,Science and Technology +486510,Science and Technology,Science and Technology +480581,Science and Technology,Science and Technology +475476,Science and Technology,Science and Technology +475467,Science and Technology,Science and Technology +471682,Science and Technology,Science and Technology +471681,Science and Technology,Science and Technology +441070,Science and Technology,Science and Technology +433828,Science and Technology,Science and Technology +443118,Science and Technology,Science and Technology +443117,Science and Technology,Science and Technology +418418,Arts and Culture,Arts et culture +417988,Aboriginal Affairs,Aboriginal Affairs +411477,Aboriginal Affairs,Aboriginal Affairs +430482,Aboriginal Affairs,Aboriginal Affairs +430479,Aboriginal Affairs,Aboriginal Affairs +430475,Aboriginal Affairs,Aboriginal Affairs +424278,Aboriginal Affairs,Aboriginal Affairs +417992,Aboriginal Affairs,Aboriginal Affairs +429765,Science and Technology,Science and Technology +429763,Science and Technology,Science and Technology +411175,Science and Technology,Science and Technology +488477,Science and Technology,Science and Technology +436434,Science and Technology,Science and Technology +432656,Science and Technology,Science and Technology +432655,Science and Technology,Science and Technology +432654,Science and Technology,Science and Technology +432653,Science and Technology,Science and Technology +432651,Science and Technology,Science and Technology +430446,Science and Technology,Science and Technology +416289,Aboriginal Affairs,Aboriginal Affairs +416288,Aboriginal Affairs,Aboriginal Affairs +416292,Aboriginal Affairs,Aboriginal Affairs +416289,Science and Technology,Science and Technology +416288,Science and Technology,Science and Technology +416292,Science and Technology,Science and Technology +424583,Aboriginal Affairs,Aboriginal Affairs +416293,Aboriginal Affairs,Aboriginal Affairs +424587,Aboriginal Affairs,Aboriginal Affairs +424584,Science and Technology,Science and Technology +424583,Science and Technology,Science and Technology +424588,Science and Technology,Science and Technology +424587,Science and Technology,Science and Technology +424586,Science and Technology,Science and Technology +526131,Science and Technology,Science and Technology +526121,Science and Technology,Science and Technology +494768,Science and Technology,Science and Technology +492913,Science and Technology,Science and Technology +454485,Science and Technology,Science and Technology +454484,Science and Technology,Science and Technology +454483,Science and Technology,Science and Technology +434880,Science and Technology,Science and Technology +434879,Science and Technology,Science and Technology +434877,Science and Technology,Science and Technology +434875,Science and Technology,Science and Technology +415634,Science and Technology,Science and Technology +415632,Science and Technology,Science and Technology +528952,Science and Technology,Science and Technology +528947,Science and Technology,Science and Technology +440653,Aboriginal Affairs,Aboriginal Affairs +440652,Aboriginal Affairs,Aboriginal Affairs +409441,Aboriginal Affairs,Aboriginal Affairs +468590,Aboriginal Affairs,Aboriginal Affairs +468585,Aboriginal Affairs,Aboriginal Affairs +490316,Science and Technology,Science and Technology +488365,Science and Technology,Science and Technology +484268,Science and Technology,Science and Technology +481427,Science and Technology,Science and Technology +479864,Science and Technology,Science and Technology +477546,Science and Technology,Science and Technology +477540,Science and Technology,Science and Technology +475050,Science and Technology,Science and Technology +464525,Science and Technology,Science and Technology +434958,Science and Technology,Science and Technology +409563,Science and Technology,Science and Technology +490324,Science and Technology,Science and Technology +542692,Science and Technology,Science and Technology +501311,Aboriginal Affairs,Aboriginal Affairs +501310,Aboriginal Affairs,Aboriginal Affairs +448500,Aboriginal Affairs,Aboriginal Affairs +436187,Aboriginal Affairs,Aboriginal Affairs +436180,Aboriginal Affairs,Aboriginal Affairs +436175,Aboriginal Affairs,Aboriginal Affairs +427222,Aboriginal Affairs,Aboriginal Affairs +427221,Aboriginal Affairs,Aboriginal Affairs +414990,Aboriginal Affairs,Aboriginal Affairs +414987,Aboriginal Affairs,Aboriginal Affairs +536149,Aboriginal Affairs,Aboriginal Affairs +536012,Aboriginal Affairs,Aboriginal Affairs +535896,Aboriginal Affairs,Aboriginal Affairs +534996,Aboriginal Affairs,Aboriginal Affairs +534564,Aboriginal Affairs,Aboriginal Affairs +534561,Aboriginal Affairs,Aboriginal Affairs +533702,Aboriginal Affairs,Aboriginal Affairs +532971,Aboriginal Affairs,Aboriginal Affairs +532970,Aboriginal Affairs,Aboriginal Affairs +532969,Aboriginal Affairs,Aboriginal Affairs +532920,Aboriginal Affairs,Aboriginal Affairs +532919,Aboriginal Affairs,Aboriginal Affairs +532757,Aboriginal Affairs,Aboriginal Affairs +532628,Aboriginal Affairs,Aboriginal Affairs +532627,Aboriginal Affairs,Aboriginal Affairs +532557,Aboriginal Affairs,Aboriginal Affairs +532528,Aboriginal Affairs,Aboriginal Affairs +532502,Aboriginal Affairs,Aboriginal Affairs +532433,Aboriginal Affairs,Aboriginal Affairs +532315,Aboriginal Affairs,Aboriginal Affairs +531932,Aboriginal Affairs,Aboriginal Affairs +531931,Aboriginal Affairs,Aboriginal Affairs +531928,Aboriginal Affairs,Aboriginal Affairs +528031,Aboriginal Affairs,Aboriginal Affairs +524744,Aboriginal Affairs,Aboriginal Affairs +508787,Aboriginal Affairs,Aboriginal Affairs +508786,Aboriginal Affairs,Aboriginal Affairs +506919,Aboriginal Affairs,Aboriginal Affairs +506918,Aboriginal Affairs,Aboriginal Affairs +506916,Aboriginal Affairs,Aboriginal Affairs +506562,Aboriginal Affairs,Aboriginal Affairs +506381,Aboriginal Affairs,Aboriginal Affairs +506290,Aboriginal Affairs,Aboriginal Affairs +506241,Aboriginal Affairs,Aboriginal Affairs +506235,Aboriginal Affairs,Aboriginal Affairs +506234,Aboriginal Affairs,Aboriginal Affairs +475330,Science and Technology,Science and Technology +469443,Science and Technology,Science and Technology +458811,Science and Technology,Science and Technology +458809,Science and Technology,Science and Technology +458801,Science and Technology,Science and Technology +420185,Science and Technology,Science and Technology +420184,Science and Technology,Science and Technology +420177,Science and Technology,Science and Technology +420172,Science and Technology,Science and Technology +420171,Science and Technology,Science and Technology +420167,Science and Technology,Science and Technology +416775,Science and Technology,Science and Technology +415456,Science and Technology,Science and Technology +411787,Science and Technology,Science and Technology +411786,Science and Technology,Science and Technology +411783,Science and Technology,Science and Technology +412105,Science and Technology,Science and Technology +412099,Science and Technology,Science and Technology +413658,Science and Technology,Science and Technology +413656,Science and Technology,Science and Technology +413665,Science and Technology,Science and Technology +471284,Science and Technology,Science and Technology +450616,Science and Technology,Science and Technology +436964,Science and Technology,Science and Technology +430133,Science and Technology,Science and Technology +423312,Science and Technology,Science and Technology +421175,Science and Technology,Science and Technology +421174,Science and Technology,Science and Technology +421173,Science and Technology,Science and Technology +421172,Science and Technology,Science and Technology +421171,Science and Technology,Science and Technology +419177,Science and Technology,Science and Technology +417371,Science and Technology,Science and Technology +414752,Science and Technology,Science and Technology +506834,Science and Technology,Science and Technology +500509,Science and Technology,Science and Technology +499765,Science and Technology,Science and Technology +499764,Science and Technology,Science and Technology +499763,Science and Technology,Science and Technology +495272,Science and Technology,Science and Technology +492274,Science and Technology,Science and Technology +492272,Science and Technology,Science and Technology +476301,Science and Technology,Science and Technology +419578,Aboriginal Affairs,Aboriginal Affairs +536306,Aboriginal Affairs,Aboriginal Affairs +419582,Aboriginal Affairs,Aboriginal Affairs +544177,Science and Technology,Science and Technology +538472,Science and Technology,Science and Technology +467724,Science and Technology,Science and Technology +448313,Science and Technology,Science and Technology +436080,Science and Technology,Science and Technology +421615,Science and Technology,Science and Technology +412663,Science and Technology,Science and Technology +410871,Science and Technology,Science and Technology +410867,Science and Technology,Science and Technology +410864,Science and Technology,Science and Technology +410861,Science and Technology,Science and Technology +410859,Science and Technology,Science and Technology +410858,Science and Technology,Science and Technology +410856,Science and Technology,Science and Technology +410855,Science and Technology,Science and Technology +410854,Science and Technology,Science and Technology +410851,Science and Technology,Science and Technology +410850,Science and Technology,Science and Technology +520566,Arts and Culture,Arts and Culture +509933,Arts and Culture,Arts and Culture +466898,Arts and Culture,Arts and Culture +464451,Arts and Culture,Arts and Culture +463657,Arts and Culture,Arts and Culture +463656,Arts and Culture,Arts and Culture +463655,Arts and Culture,Arts and Culture +463652,Arts and Culture,Arts and Culture +463651,Arts and Culture,Arts and Culture +463650,Arts and Culture,Arts and Culture +448288,Arts and Culture,Arts and Culture +434102,Arts and Culture,Arts and Culture +434101,Arts and Culture,Arts and Culture +519163,Science and Technology,Science and Technology +510099,Science and Technology,Science and Technology +500391,Science and Technology,Science and Technology +494029,Science and Technology,Science and Technology +540813,Science and Technology,Science and Technology +540804,Science and Technology,Science and Technology +427216,Aboriginal Affairs,Aboriginal Affairs +438114,Aboriginal Affairs,Aboriginal Affairs +420779,Aboriginal Affairs,Aboriginal Affairs +451399,Aboriginal Affairs,Aboriginal Affairs +451311,Telecommunications,Telecommunications +438114,Telecommunications,Telecommunications +497850,Science and Technology,Sciences et technologies +494831,Science and Technology,Sciences et technologies +543277,Science and Technology,Sciences et technologies +543272,Science and Technology,Sciences et technologies +541263,Science and Technology,Sciences et technologies +537740,Science and Technology,Sciences et technologies +533818,Science and Technology,Sciences et technologies +531017,Science and Technology,Sciences et technologies +531011,Science and Technology,Sciences et technologies +528968,Science and Technology,Sciences et technologies +519607,Science and Technology,Sciences et technologies +517735,Science and Technology,Sciences et technologies +515491,Science and Technology,Sciences et technologies +515490,Science and Technology,Sciences et technologies +515487,Science and Technology,Sciences et technologies +514646,Science and Technology,Sciences et technologies +514593,Science and Technology,Sciences et technologies +501235,Science and Technology,Sciences et technologies +412850,Aboriginal Affairs,Aboriginal Affairs +523170,Arts and Culture,Arts and Culture +520160,Arts and Culture,Arts and Culture +435831,Arts and Culture,Arts and Culture +420888,Science and Technology,Science and Technology +416047,Science and Technology,Science and Technology +411252,Science and Technology,Science and Technology +420250,Science and Technology,Science and Technology +420249,Science and Technology,Science and Technology +418751,Science and Technology,Science and Technology +415151,Aboriginal Affairs,Aboriginal Affairs +417260,Arts and Culture,Arts and Culture +414841,Arts and Culture,Arts and Culture +442420,Arts and Culture,Arts and Culture +442405,Arts and Culture,Arts and Culture +442377,Arts and Culture,Arts and Culture +424086,Arts and Culture,Arts and Culture +418177,Arts and Culture,Arts and Culture +418176,Arts and Culture,Arts and Culture +459498,Science and Technology,Science and Technology +414120,Science and Technology,Science and Technology +414119,Science and Technology,Science and Technology +414550,Science and Technology,Science and Technology +414417,Science and Technology,Science and Technology +414344,Science and Technology,Science and Technology +506106,Science and Technology,Science and Technology +499988,Science and Technology,Science and Technology +414607,Science and Technology,Science and Technology +414606,Science and Technology,Science and Technology +529827,Science and Technology,Science and Technology +527161,Science and Technology,Science and Technology +413027,Aboriginal Affairs,Aboriginal Affairs +422013,Science and Technology,Science and Technology +421966,Science and Technology,Science and Technology +422016,Science and Technology,Science and Technology +420958,Science and Technology,Science and Technology +419950,Aboriginal Affairs,Aboriginal Affairs +499056,Science and Technology,Science and Technology +484478,Science and Technology,Science and Technology +432092,Science and Technology,Science and Technology +426062,Science and Technology,Science and Technology +419105,Science and Technology,Science and Technology +412717,Aboriginal Affairs,Aboriginal Affairs +412710,Aboriginal Affairs,Aboriginal Affairs +412857,Aboriginal Affairs,Aboriginal Affairs +412838,Aboriginal Affairs,Aboriginal Affairs +412837,Aboriginal Affairs,Aboriginal Affairs +412835,Aboriginal Affairs,Aboriginal Affairs +412816,Aboriginal Affairs,Aboriginal Affairs +412809,Aboriginal Affairs,Aboriginal Affairs +412806,Aboriginal Affairs,Aboriginal Affairs +412803,Aboriginal Affairs,Aboriginal Affairs +412797,Aboriginal Affairs,Aboriginal Affairs +412774,Aboriginal Affairs,Aboriginal Affairs +412733,Aboriginal Affairs,Aboriginal Affairs +412726,Aboriginal Affairs,Aboriginal Affairs +412946,Aboriginal Affairs,Aboriginal Affairs +412942,Aboriginal Affairs,Aboriginal Affairs +420582,Science and Technology,Science and Technology +419990,Science and Technology,Science and Technology +494584,Science and Technology,Science and Technology +462685,Science and Technology,Science and Technology +456520,Science and Technology,Science and Technology +445946,Science and Technology,Science and Technology +445033,Science and Technology,Science and Technology +431414,Science and Technology,Science and Technology +420603,Science and Technology,Science and Technology +446669,Science and Technology,Science and Technology +443234,Science and Technology,Science and Technology +417369,Science and Technology,Science and Technology +536726,Science and Technology,Science and Technology +536725,Science and Technology,Science and Technology +536724,Science and Technology,Science and Technology +521541,Science and Technology,Science and Technology +521539,Science and Technology,Science and Technology +521487,Science and Technology,Science and Technology +518832,Science and Technology,Science and Technology +516856,Science and Technology,Science and Technology +516855,Science and Technology,Science and Technology +516854,Science and Technology,Science and Technology +516853,Science and Technology,Science and Technology +503630,Science and Technology,Science and Technology +501183,Science and Technology,Science and Technology +501078,Science and Technology,Science and Technology +501077,Science and Technology,Science and Technology +497219,Science and Technology,Science and Technology +497217,Science and Technology,Science and Technology +474373,Science and Technology,Science and Technology +472545,Science and Technology,Science and Technology +472325,Science and Technology,Science and Technology +472324,Science and Technology,Science and Technology +472323,Science and Technology,Science and Technology +448365,Science and Technology,Science and Technology +446672,Science and Technology,Science and Technology +489989,Arts and Culture,Arts et culture +481976,Arts and Culture,Arts et culture +465821,Arts and Culture,Arts et culture +462189,Arts and Culture,Arts et culture +460854,Arts and Culture,Arts et culture +451820,Arts and Culture,Arts et culture +440444,Arts and Culture,Arts et culture +440443,Arts and Culture,Arts et culture +437319,Arts and Culture,Arts et culture +437318,Arts and Culture,Arts et culture +437317,Arts and Culture,Arts et culture +431431,Arts and Culture,Arts et culture +526056,Arts and Culture,Arts et culture +415653,Arts and Culture,Arts et culture +415651,Arts and Culture,Arts et culture +420398,Arts and Culture,Arts et culture +420397,Arts and Culture,Arts et culture +420396,Arts and Culture,Arts et culture +420395,Arts and Culture,Arts et culture +420394,Arts and Culture,Arts et culture +420393,Arts and Culture,Arts et culture +420392,Arts and Culture,Arts et culture +420391,Arts and Culture,Arts et culture +416101,Arts and Culture,Arts et culture +416097,Arts and Culture,Arts et culture +416093,Arts and Culture,Arts et culture +416082,Arts and Culture,Arts et culture +415811,Arts and Culture,Arts et culture +415807,Arts and Culture,Arts et culture +415655,Arts and Culture,Arts et culture +427073,Telecommunications,Telecommunications +422549,Telecommunications,Telecommunications +463429,Telecommunications,Telecommunications +463425,Telecommunications,Telecommunications +429044,Telecommunications,Telecommunications +448444,Science and Technology,Science and Technology +429044,Science and Technology,Science and Technology +427076,Science and Technology,Science and Technology +427073,Science and Technology,Science and Technology +424448,Science and Technology,Science and Technology +422549,Science and Technology,Science and Technology +498640,Science and Technology,Science and Technology +477965,Science and Technology,Science and Technology +473539,Science and Technology,Science and Technology +473537,Science and Technology,Science and Technology +472880,Science and Technology,Science and Technology +463429,Science and Technology,Science and Technology +462679,Science and Technology,Science and Technology +460247,Science and Technology,Science and Technology +460246,Science and Technology,Science and Technology +459253,Science and Technology,Science and Technology +449361,Science and Technology,Science and Technology +449332,Science and Technology,Science and Technology +449322,Science and Technology,Science and Technology +448763,Science and Technology,Science and Technology +448758,Arts and Culture,Arts and Culture +448758,Broadcasting,Broadcasting +414089,Aboriginal Affairs,Aboriginal Affairs +414079,Aboriginal Affairs,Aboriginal Affairs +414092,Aboriginal Affairs,Aboriginal Affairs +414091,Aboriginal Affairs,Aboriginal Affairs +414089,Science and Technology,Science and Technology +414079,Science and Technology,Science and Technology +414092,Science and Technology,Science and Technology +414091,Science and Technology,Science and Technology +420191,Science and Technology,Science and Technology +437597,Arts and Culture,Arts and Culture +435029,Arts and Culture,Arts and Culture +435026,Arts and Culture,Arts and Culture +526185,Arts and Culture,Arts and Culture +523115,Arts and Culture,Arts and Culture +523022,Arts and Culture,Arts and Culture +458949,Arts and Culture,Arts and Culture +451494,Arts and Culture,Arts and Culture +437594,Arts and Culture,Arts and Culture +435036,Arts and Culture,Arts and Culture +435033,Arts and Culture,Arts and Culture +417675,Science and Technology,Science and Technology +423495,Science and Technology,Science and Technology +423493,Science and Technology,Science and Technology +449825,Science and Technology,Science and Technology +449824,Science and Technology,Science and Technology +449823,Science and Technology,Science and Technology +449822,Science and Technology,Science and Technology +447635,Science and Technology,Science and Technology +442591,Science and Technology,Science and Technology +439463,Science and Technology,Science and Technology +439458,Science and Technology,Science and Technology +432832,Science and Technology,Science and Technology +431121,Science and Technology,Science and Technology +426209,Science and Technology,Science and Technology +426208,Science and Technology,Science and Technology +423499,Science and Technology,Science and Technology +423498,Science and Technology,Science and Technology +423497,Science and Technology,Science and Technology +416612,Science and Technology,Science and Technology +416611,Science and Technology,Science and Technology +416804,Science and Technology,Science and Technology +416802,Science and Technology,Science and Technology +416800,Science and Technology,Science and Technology +416799,Science and Technology,Science and Technology +416796,Science and Technology,Science and Technology +416792,Science and Technology,Science and Technology +416787,Science and Technology,Science and Technology +416624,Science and Technology,Science and Technology +416619,Science and Technology,Science and Technology +458006,Telecommunications,Telecommunications +449062,Telecommunications,Telecommunications +422526,Telecommunications,Telecommunications +414839,Telecommunications,Telecommunications +540432,Telecommunications,Telecommunications +537324,Telecommunications,Telecommunications +533309,Telecommunications,Telecommunications +523819,Telecommunications,Telecommunications +523818,Telecommunications,Telecommunications +523817,Telecommunications,Telecommunications +523792,Telecommunications,Telecommunications +509510,Telecommunications,Telecommunications +509508,Telecommunications,Telecommunications +509507,Telecommunications,Telecommunications +507133,Telecommunications,Telecommunications +507130,Telecommunications,Telecommunications +503064,Telecommunications,Telecommunications +503062,Telecommunications,Telecommunications +496295,Telecommunications,Telecommunications +490987,Telecommunications,Telecommunications +488033,Telecommunications,Telecommunications +463396,Telecommunications,Telecommunications +463395,Telecommunications,Telecommunications +463394,Telecommunications,Telecommunications +463392,Telecommunications,Telecommunications +463390,Telecommunications,Telecommunications +461903,Telecommunications,Telecommunications +419993,Aboriginal Affairs,Aboriginal Affairs +419983,Aboriginal Affairs,Aboriginal Affairs +417956,Aboriginal Affairs,Aboriginal Affairs +417850,Aboriginal Affairs,Aboriginal Affairs +419285,Aboriginal Affairs,Aboriginal Affairs +418358,Aboriginal Affairs,Aboriginal Affairs +417963,Aboriginal Affairs,Aboriginal Affairs +417962,Aboriginal Affairs,Aboriginal Affairs +417961,Aboriginal Affairs,Aboriginal Affairs +417960,Aboriginal Affairs,Aboriginal Affairs +417959,Aboriginal Affairs,Aboriginal Affairs +417958,Aboriginal Affairs,Aboriginal Affairs +427665,Aboriginal Affairs,Aboriginal Affairs +427663,Aboriginal Affairs,Aboriginal Affairs +415211,Aboriginal Affairs,Aboriginal Affairs +415210,Aboriginal Affairs,Aboriginal Affairs +415208,Aboriginal Affairs,Aboriginal Affairs +415207,Aboriginal Affairs,Aboriginal Affairs +415206,Aboriginal Affairs,Aboriginal Affairs +444696,Aboriginal Affairs,Aboriginal Affairs +444695,Aboriginal Affairs,Aboriginal Affairs +444694,Aboriginal Affairs,Aboriginal Affairs +444693,Aboriginal Affairs,Aboriginal Affairs +433001,Aboriginal Affairs,Aboriginal Affairs +433000,Aboriginal Affairs,Aboriginal Affairs +432999,Aboriginal Affairs,Aboriginal Affairs +432998,Aboriginal Affairs,Aboriginal Affairs +432997,Aboriginal Affairs,Aboriginal Affairs +427668,Aboriginal Affairs,Aboriginal Affairs +427667,Aboriginal Affairs,Aboriginal Affairs +418872,Science and Technology,Science and Technology +418871,Science and Technology,Science and Technology +427000,Science and Technology,Science and Technology +426999,Science and Technology,Science and Technology +426998,Science and Technology,Science and Technology +426997,Science and Technology,Science and Technology +419215,Science and Technology,Science and Technology +419214,Science and Technology,Science and Technology +455522,Science and Technology,Science and Technology +453894,Science and Technology,Science and Technology +499548,Science and Technology,Science and Technology +497035,Science and Technology,Science and Technology +417126,Telecommunications,Telecommunications +417120,Telecommunications,Telecommunications +527369,Telecommunications,Telecommunications +513452,Telecommunications,Telecommunications +503158,Telecommunications,Telecommunications +499548,Telecommunications,Telecommunications +499537,Telecommunications,Telecommunications +497035,Telecommunications,Telecommunications +497032,Telecommunications,Telecommunications +455522,Telecommunications,Telecommunications +453894,Telecommunications,Telecommunications +422927,Telecommunications,Telecommunications +420930,Telecommunications,Telecommunications +418453,Science and Technology,Science and Technology +417219,Science and Technology,Science and Technology +469373,Science and Technology,Science and Technology +469372,Science and Technology,Science and Technology +469371,Science and Technology,Science and Technology +418457,Science and Technology,Science and Technology +418456,Science and Technology,Science and Technology +420204,Aboriginal Affairs,Aboriginal Affairs +418428,Aboriginal Affairs,Aboriginal Affairs +418426,Aboriginal Affairs,Aboriginal Affairs +420798,Aboriginal Affairs,Aboriginal Affairs +418431,Aboriginal Affairs,Aboriginal Affairs +416829,Science and Technology,Science and Technology +416825,Science and Technology,Science and Technology +424148,Science and Technology,Science and Technology +421703,Science and Technology,Science and Technology +419569,Science and Technology,Science and Technology +417786,Science and Technology,Science and Technology +417785,Science and Technology,Science and Technology +417782,Science and Technology,Science and Technology +416842,Science and Technology,Science and Technology +453895,Science and Technology,Science and Technology +417335,Telecommunications,Telecommunications +417330,Telecommunications,Telecommunications +455527,Telecommunications,Telecommunications +428917,Arts and Culture,Arts and Culture +419095,Arts and Culture,Arts and Culture +431052,Arts and Culture,Arts and Culture +419095,Science and Technology,Science and Technology +431052,Science and Technology,Science and Technology +452783,Science and Technology,Sciences et technologies +418736,Science and Technology,Sciences et technologies +455336,Science and Technology,Sciences et technologies +428262,Aboriginal Affairs,Aboriginal Affairs +443514,Arts and Culture,Arts and Culture +438282,Arts and Culture,Arts and Culture +423543,Arts and Culture,Arts and Culture +421374,Arts and Culture,Arts and Culture +528479,Arts and Culture,Arts and Culture +528476,Arts and Culture,Arts and Culture +528473,Arts and Culture,Arts and Culture +528468,Arts and Culture,Arts and Culture +528463,Arts and Culture,Arts and Culture +521760,Arts and Culture,Arts and Culture +510123,Arts and Culture,Arts and Culture +510120,Arts and Culture,Arts and Culture +508450,Arts and Culture,Arts and Culture +504486,Arts and Culture,Arts and Culture +504485,Arts and Culture,Arts and Culture +504483,Arts and Culture,Arts and Culture +466150,Arts and Culture,Arts and Culture +466149,Arts and Culture,Arts and Culture +463471,Arts and Culture,Arts and Culture +462948,Arts and Culture,Arts and Culture +455404,Arts and Culture,Arts and Culture +455403,Arts and Culture,Arts and Culture +449279,Arts and Culture,Arts and Culture +449278,Arts and Culture,Arts and Culture +543385,Broadcasting,Broadcasting +538697,Broadcasting,Broadcasting +528483,Broadcasting,Broadcasting +525347,Broadcasting,Broadcasting +521762,Broadcasting,Broadcasting +521760,Broadcasting,Broadcasting +516820,Broadcasting,Broadcasting +489825,Broadcasting,Broadcasting +486609,Broadcasting,Broadcasting +479380,Broadcasting,Broadcasting +476274,Broadcasting,Broadcasting +466150,Broadcasting,Broadcasting +466149,Broadcasting,Broadcasting +463471,Broadcasting,Broadcasting +462948,Broadcasting,Broadcasting +455380,Science and Technology,Science and Technology +442267,Science and Technology,Science and Technology +455507,Science and Technology,Science and Technology +455402,Science and Technology,Science and Technology +455401,Science and Technology,Science and Technology +455383,Science and Technology,Science and Technology +455403,Telecommunications,Telecommunications +515261,Telecommunications,Telecommunications +463471,Telecommunications,Telecommunications +462948,Telecommunications,Telecommunications +417896,Science and Technology,Science and Technology +431369,Broadcasting,Broadcasting +431368,Broadcasting,Broadcasting +419946,Broadcasting,Broadcasting +419946,Telecommunications,Telecommunications +419942,Telecommunications,Telecommunications +422202,Aboriginal Affairs,Aboriginal Affairs +421942,Aboriginal Affairs,Aboriginal Affairs +454335,Aboriginal Affairs,Aboriginal Affairs +454334,Aboriginal Affairs,Aboriginal Affairs +453944,Aboriginal Affairs,Aboriginal Affairs +453943,Aboriginal Affairs,Aboriginal Affairs +440259,Aboriginal Affairs,Aboriginal Affairs +440257,Aboriginal Affairs,Aboriginal Affairs +427634,Aboriginal Affairs,Aboriginal Affairs +427631,Aboriginal Affairs,Aboriginal Affairs +427623,Aboriginal Affairs,Aboriginal Affairs +425708,Aboriginal Affairs,Aboriginal Affairs +425705,Aboriginal Affairs,Aboriginal Affairs +425703,Aboriginal Affairs,Aboriginal Affairs +425700,Aboriginal Affairs,Aboriginal Affairs +425698,Aboriginal Affairs,Aboriginal Affairs +423629,Aboriginal Affairs,Aboriginal Affairs +423626,Aboriginal Affairs,Aboriginal Affairs +418340,Science and Technology,Science and Technology +418339,Science and Technology,Science and Technology +418342,Science and Technology,Science and Technology +440385,Telecommunications,Telecommunications +440384,Telecommunications,Telecommunications +427343,Telecommunications,Telecommunications +424935,Telecommunications,Telecommunications +424934,Telecommunications,Telecommunications +424733,Telecommunications,Telecommunications +422517,Telecommunications,Telecommunications +418425,Telecommunications,Telecommunications +542322,Telecommunications,Telecommunications +524075,Telecommunications,Telecommunications +523746,Telecommunications,Telecommunications +520718,Telecommunications,Telecommunications +519126,Telecommunications,Telecommunications +518805,Telecommunications,Telecommunications +516379,Telecommunications,Telecommunications +516351,Telecommunications,Telecommunications +516118,Telecommunications,Telecommunications +514842,Telecommunications,Telecommunications +512321,Telecommunications,Telecommunications +511690,Telecommunications,Telecommunications +499925,Telecommunications,Telecommunications +478973,Telecommunications,Telecommunications +478716,Telecommunications,Telecommunications +478538,Telecommunications,Telecommunications +476991,Telecommunications,Telecommunications +476225,Telecommunications,Telecommunications +463374,Telecommunications,Telecommunications +462885,Telecommunications,Telecommunications +460277,Telecommunications,Telecommunications +460276,Telecommunications,Telecommunications +451570,Telecommunications,Telecommunications +450751,Telecommunications,Telecommunications +450152,Telecommunications,Telecommunications +420654,Arts and Culture,Arts and Culture +421155,Arts and Culture,Arts and Culture +421152,Arts and Culture,Arts and Culture +421675,Arts and Culture,Arts and Culture +421674,Arts and Culture,Arts and Culture +421671,Arts and Culture,Arts and Culture +421660,Arts and Culture,Arts and Culture +421188,Arts and Culture,Arts and Culture +421425,Arts and Culture,Arts and Culture +421424,Arts and Culture,Arts and Culture +421428,Arts and Culture,Arts and Culture +421427,Arts and Culture,Arts and Culture +418989,Arts and Culture,Arts et culture +418988,Arts and Culture,Arts et culture +418991,Arts and Culture,Arts et culture +418695,Aboriginal Affairs,Aboriginal Affairs +418693,Aboriginal Affairs,Aboriginal Affairs +445306,Aboriginal Affairs,Aboriginal Affairs +427111,Aboriginal Affairs,Aboriginal Affairs +424832,Aboriginal Affairs,Aboriginal Affairs +424831,Aboriginal Affairs,Aboriginal Affairs +420369,Aboriginal Affairs,Aboriginal Affairs +419120,Aboriginal Affairs,Aboriginal Affairs +418591,Aboriginal Affairs,Aboriginal Affairs +422209,Aboriginal Affairs,Aboriginal Affairs +418612,Aboriginal Affairs,Aboriginal Affairs +448213,Aboriginal Affairs,Aboriginal Affairs +428778,Aboriginal Affairs,Aboriginal Affairs +428775,Aboriginal Affairs,Aboriginal Affairs +427415,Aboriginal Affairs,Aboriginal Affairs +423798,Arts and Culture,Arts and Culture +423794,Arts and Culture,Arts and Culture +444467,Arts and Culture,Arts and Culture +444466,Arts and Culture,Arts and Culture +444176,Arts and Culture,Arts and Culture +444174,Arts and Culture,Arts and Culture +443095,Arts and Culture,Arts and Culture +441429,Arts and Culture,Arts and Culture +436298,Arts and Culture,Arts and Culture +436297,Arts and Culture,Arts and Culture +436296,Arts and Culture,Arts and Culture +434082,Arts and Culture,Arts and Culture +434081,Arts and Culture,Arts and Culture +433072,Arts and Culture,Arts and Culture +433015,Arts and Culture,Arts and Culture +431535,Arts and Culture,Arts and Culture +427163,Arts and Culture,Arts and Culture +427161,Arts and Culture,Arts and Culture +418948,Arts and Culture,Arts and Culture +418947,Arts and Culture,Arts and Culture +535897,Arts and Culture,Arts and Culture +516350,Arts and Culture,Arts and Culture +516005,Arts and Culture,Arts and Culture +506323,Arts and Culture,Arts and Culture +499933,Arts and Culture,Arts and Culture +496278,Arts and Culture,Arts and Culture +494753,Arts and Culture,Arts and Culture +494667,Arts and Culture,Arts and Culture +494276,Arts and Culture,Arts and Culture +494051,Arts and Culture,Arts and Culture +493877,Arts and Culture,Arts and Culture +493876,Arts and Culture,Arts and Culture +491941,Arts and Culture,Arts and Culture +489730,Arts and Culture,Arts and Culture +489371,Arts and Culture,Arts and Culture +489019,Arts and Culture,Arts and Culture +483273,Arts and Culture,Arts and Culture +481387,Arts and Culture,Arts and Culture +472217,Arts and Culture,Arts and Culture +471582,Arts and Culture,Arts and Culture +465607,Arts and Culture,Arts and Culture +465261,Arts and Culture,Arts and Culture +463857,Arts and Culture,Arts and Culture +458974,Arts and Culture,Arts and Culture +458185,Arts and Culture,Arts and Culture +451540,Arts and Culture,Arts and Culture +451025,Arts and Culture,Arts and Culture +450755,Arts and Culture,Arts and Culture +440253,Arts and Culture,Arts and Culture +436684,Arts and Culture,Arts and Culture +436213,Arts and Culture,Arts and Culture +434169,Arts and Culture,Arts and Culture +434076,Arts and Culture,Arts and Culture +434075,Arts and Culture,Arts and Culture +448527,Aboriginal Affairs,Aboriginal Affairs +432995,Aboriginal Affairs,Aboriginal Affairs +420656,Telecommunications,Telecommunications +432996,Telecommunications,Telecommunications +435878,Aboriginal Affairs,Aboriginal Affairs +435872,Aboriginal Affairs,Aboriginal Affairs +435865,Aboriginal Affairs,Aboriginal Affairs +435861,Aboriginal Affairs,Aboriginal Affairs +435850,Aboriginal Affairs,Aboriginal Affairs +421300,Aboriginal Affairs,Aboriginal Affairs +421299,Aboriginal Affairs,Aboriginal Affairs +421298,Aboriginal Affairs,Aboriginal Affairs +544368,Aboriginal Affairs,Aboriginal Affairs +541636,Aboriginal Affairs,Aboriginal Affairs +541634,Aboriginal Affairs,Aboriginal Affairs +541632,Aboriginal Affairs,Aboriginal Affairs +541628,Aboriginal Affairs,Aboriginal Affairs +541626,Aboriginal Affairs,Aboriginal Affairs +541620,Aboriginal Affairs,Aboriginal Affairs +541618,Aboriginal Affairs,Aboriginal Affairs +541617,Aboriginal Affairs,Aboriginal Affairs +541616,Aboriginal Affairs,Aboriginal Affairs +541614,Aboriginal Affairs,Aboriginal Affairs +541613,Aboriginal Affairs,Aboriginal Affairs +541611,Aboriginal Affairs,Aboriginal Affairs +541610,Aboriginal Affairs,Aboriginal Affairs +541606,Aboriginal Affairs,Aboriginal Affairs +541604,Aboriginal Affairs,Aboriginal Affairs +541603,Aboriginal Affairs,Aboriginal Affairs +541602,Aboriginal Affairs,Aboriginal Affairs +541601,Aboriginal Affairs,Aboriginal Affairs +541600,Aboriginal Affairs,Aboriginal Affairs +541599,Aboriginal Affairs,Aboriginal Affairs +541598,Aboriginal Affairs,Aboriginal Affairs +541596,Aboriginal Affairs,Aboriginal Affairs +541595,Aboriginal Affairs,Aboriginal Affairs +541593,Aboriginal Affairs,Aboriginal Affairs +541591,Aboriginal Affairs,Aboriginal Affairs +541590,Aboriginal Affairs,Aboriginal Affairs +541589,Aboriginal Affairs,Aboriginal Affairs +541588,Aboriginal Affairs,Aboriginal Affairs +541585,Aboriginal Affairs,Aboriginal Affairs +541583,Aboriginal Affairs,Aboriginal Affairs +541581,Aboriginal Affairs,Aboriginal Affairs +541578,Aboriginal Affairs,Aboriginal Affairs +541577,Aboriginal Affairs,Aboriginal Affairs +536751,Aboriginal Affairs,Aboriginal Affairs +525242,Aboriginal Affairs,Aboriginal Affairs +490039,Aboriginal Affairs,Aboriginal Affairs +481705,Aboriginal Affairs,Aboriginal Affairs +481704,Aboriginal Affairs,Aboriginal Affairs +479109,Aboriginal Affairs,Aboriginal Affairs +474963,Aboriginal Affairs,Aboriginal Affairs +473331,Aboriginal Affairs,Aboriginal Affairs +470899,Aboriginal Affairs,Aboriginal Affairs +468013,Aboriginal Affairs,Aboriginal Affairs +468011,Aboriginal Affairs,Aboriginal Affairs +468009,Aboriginal Affairs,Aboriginal Affairs +464773,Aboriginal Affairs,Aboriginal Affairs +464766,Aboriginal Affairs,Aboriginal Affairs +459647,Aboriginal Affairs,Aboriginal Affairs +459645,Aboriginal Affairs,Aboriginal Affairs +459644,Aboriginal Affairs,Aboriginal Affairs +459641,Aboriginal Affairs,Aboriginal Affairs +458654,Aboriginal Affairs,Aboriginal Affairs +458652,Aboriginal Affairs,Aboriginal Affairs +458651,Aboriginal Affairs,Aboriginal Affairs +456962,Aboriginal Affairs,Aboriginal Affairs +456961,Aboriginal Affairs,Aboriginal Affairs +456960,Aboriginal Affairs,Aboriginal Affairs +454648,Aboriginal Affairs,Aboriginal Affairs +451493,Aboriginal Affairs,Aboriginal Affairs +451491,Aboriginal Affairs,Aboriginal Affairs +451490,Aboriginal Affairs,Aboriginal Affairs +451489,Aboriginal Affairs,Aboriginal Affairs +451487,Aboriginal Affairs,Aboriginal Affairs +445350,Aboriginal Affairs,Aboriginal Affairs +443503,Aboriginal Affairs,Aboriginal Affairs +441480,Aboriginal Affairs,Aboriginal Affairs +515247,Telecommunications,Telecommunications +515246,Telecommunications,Telecommunications +500689,Telecommunications,Telecommunications +490039,Telecommunications,Telecommunications +476999,Telecommunications,Telecommunications +473331,Telecommunications,Telecommunications +470899,Telecommunications,Telecommunications +468013,Telecommunications,Telecommunications +468011,Telecommunications,Telecommunications +468009,Telecommunications,Telecommunications +464773,Telecommunications,Telecommunications +464767,Telecommunications,Telecommunications +464766,Telecommunications,Telecommunications +464765,Telecommunications,Telecommunications +462668,Telecommunications,Telecommunications +459647,Telecommunications,Telecommunications +459645,Telecommunications,Telecommunications +459644,Telecommunications,Telecommunications +459641,Telecommunications,Telecommunications +458654,Telecommunications,Telecommunications +458653,Telecommunications,Telecommunications +458652,Telecommunications,Telecommunications +458651,Telecommunications,Telecommunications +458650,Telecommunications,Telecommunications +456962,Telecommunications,Telecommunications +456961,Telecommunications,Telecommunications +456960,Telecommunications,Telecommunications +454649,Telecommunications,Telecommunications +454648,Telecommunications,Telecommunications +454644,Telecommunications,Telecommunications +454642,Telecommunications,Telecommunications +451493,Telecommunications,Telecommunications +451491,Telecommunications,Telecommunications +451490,Telecommunications,Telecommunications +451489,Telecommunications,Telecommunications +451487,Telecommunications,Telecommunications +445350,Telecommunications,Telecommunications +445348,Telecommunications,Telecommunications +445344,Telecommunications,Telecommunications +445343,Telecommunications,Telecommunications +443507,Telecommunications,Telecommunications +443505,Telecommunications,Telecommunications +443504,Telecommunications,Telecommunications +443503,Telecommunications,Telecommunications +443502,Telecommunications,Telecommunications +443500,Telecommunications,Telecommunications +443499,Telecommunications,Telecommunications +441480,Telecommunications,Telecommunications +437884,Telecommunications,Telecommunications +437883,Telecommunications,Telecommunications +437872,Telecommunications,Telecommunications +437865,Telecommunications,Telecommunications +437864,Telecommunications,Telecommunications +435887,Telecommunications,Telecommunications +435878,Telecommunications,Telecommunications +435872,Telecommunications,Telecommunications +541610,Telecommunications,Telecommunications +536751,Telecommunications,Telecommunications +525242,Telecommunications,Telecommunications +419816,Science and Technology,Science and Technology +419674,Science and Technology,Science and Technology +427706,Telecommunications,Telecommunications +427703,Telecommunications,Telecommunications +427708,Telecommunications,Telecommunications +427706,Aboriginal Affairs,Aboriginal Affairs +427703,Aboriginal Affairs,Aboriginal Affairs +427708,Aboriginal Affairs,Aboriginal Affairs +480464,Aboriginal Affairs,Aboriginal Affairs +439781,Science and Technology,Science and Technology +439780,Science and Technology,Science and Technology +452181,Science and Technology,Science and Technology +449328,Science and Technology,Science and Technology +439795,Science and Technology,Science and Technology +439793,Science and Technology,Science and Technology +439792,Science and Technology,Science and Technology +439791,Science and Technology,Science and Technology +439790,Science and Technology,Science and Technology +509534,Science and Technology,Science and Technology +509423,Science and Technology,Science and Technology +420450,Science and Technology,Science and Technology +524273,Science and Technology,Science and Technology +514385,Science and Technology,Science and Technology +509943,Science and Technology,Science and Technology +421164,Science and Technology,Science and Technology +421163,Science and Technology,Science and Technology +448789,Aboriginal Affairs,Aboriginal Affairs +488906,Aboriginal Affairs,Aboriginal Affairs +421750,Science and Technology,Science and Technology +421748,Science and Technology,Science and Technology +478633,Science and Technology,Science and Technology +427306,Science and Technology,Science and Technology +427303,Science and Technology,Science and Technology +427302,Science and Technology,Science and Technology +424744,Science and Technology,Science and Technology +425052,Arts and Culture,Arts and Culture +512998,Telecommunications,Telecommunications +512968,Telecommunications,Telecommunications +500244,Telecommunications,Telecommunications +486218,Telecommunications,Telecommunications +468653,Telecommunications,Telecommunications +468652,Telecommunications,Telecommunications +467388,Telecommunications,Telecommunications +467340,Telecommunications,Telecommunications +467331,Telecommunications,Telecommunications +440939,Telecommunications,Telecommunications +437425,Telecommunications,Telecommunications +435413,Telecommunications,Telecommunications +432886,Telecommunications,Telecommunications +430155,Telecommunications,Telecommunications +429868,Telecommunications,Telecommunications +429611,Telecommunications,Telecommunications +513676,Telecommunications,Telecommunications +513513,Telecommunications,Telecommunications +513006,Telecommunications,Telecommunications +500710,Broadcasting,Broadcasting +500508,Broadcasting,Broadcasting +435304,Broadcasting,Broadcasting +435303,Broadcasting,Broadcasting +433904,Broadcasting,Broadcasting +422966,Broadcasting,Broadcasting +422965,Broadcasting,Broadcasting +422964,Broadcasting,Broadcasting +422773,Broadcasting,Broadcasting +422604,Broadcasting,Broadcasting +496687,Broadcasting,Broadcasting +496685,Broadcasting,Broadcasting +496683,Broadcasting,Broadcasting +496681,Broadcasting,Broadcasting +494496,Broadcasting,Broadcasting +494494,Broadcasting,Broadcasting +494493,Broadcasting,Broadcasting +489174,Broadcasting,Broadcasting +488649,Broadcasting,Broadcasting +488575,Broadcasting,Broadcasting +488498,Broadcasting,Broadcasting +488422,Broadcasting,Broadcasting +487470,Broadcasting,Broadcasting +486560,Broadcasting,Broadcasting +486531,Broadcasting,Broadcasting +486172,Broadcasting,Broadcasting +482915,Broadcasting,Broadcasting +482855,Broadcasting,Broadcasting +482854,Broadcasting,Broadcasting +480667,Broadcasting,Broadcasting +480586,Broadcasting,Broadcasting +480456,Broadcasting,Broadcasting +478383,Broadcasting,Broadcasting +476789,Broadcasting,Broadcasting +471574,Broadcasting,Broadcasting +471573,Broadcasting,Broadcasting +469362,Broadcasting,Broadcasting +468805,Broadcasting,Broadcasting +468804,Broadcasting,Broadcasting +463192,Broadcasting,Broadcasting +463191,Broadcasting,Broadcasting +463188,Broadcasting,Broadcasting +461754,Broadcasting,Broadcasting +461753,Broadcasting,Broadcasting +461044,Broadcasting,Broadcasting +460306,Broadcasting,Broadcasting +453808,Broadcasting,Broadcasting +450568,Broadcasting,Broadcasting +446054,Broadcasting,Broadcasting +446053,Broadcasting,Broadcasting +446052,Broadcasting,Broadcasting +512124,Broadcasting,Broadcasting +506430,Broadcasting,Broadcasting +506362,Broadcasting,Broadcasting +504406,Broadcasting,Broadcasting +502538,Broadcasting,Broadcasting +421573,Telecommunications,Telecommunications +421572,Telecommunications,Telecommunications +457247,Aboriginal Affairs,Aboriginal Affairs +427693,Aboriginal Affairs,Aboriginal Affairs +434531,Aboriginal Affairs,Aboriginal Affairs +434530,Aboriginal Affairs,Aboriginal Affairs +430923,Aboriginal Affairs,Aboriginal Affairs +430915,Aboriginal Affairs,Aboriginal Affairs +430910,Aboriginal Affairs,Aboriginal Affairs +428729,Aboriginal Affairs,Aboriginal Affairs +428717,Aboriginal Affairs,Aboriginal Affairs +428713,Aboriginal Affairs,Aboriginal Affairs +428711,Aboriginal Affairs,Aboriginal Affairs +428696,Aboriginal Affairs,Aboriginal Affairs +428674,Aboriginal Affairs,Aboriginal Affairs +428673,Aboriginal Affairs,Aboriginal Affairs +428667,Aboriginal Affairs,Aboriginal Affairs +428666,Aboriginal Affairs,Aboriginal Affairs +428665,Aboriginal Affairs,Aboriginal Affairs +428663,Aboriginal Affairs,Aboriginal Affairs +424951,Aboriginal Affairs,Aboriginal Affairs +424950,Aboriginal Affairs,Aboriginal Affairs +424949,Aboriginal Affairs,Aboriginal Affairs +424948,Aboriginal Affairs,Aboriginal Affairs +424947,Aboriginal Affairs,Aboriginal Affairs +424946,Aboriginal Affairs,Aboriginal Affairs +424945,Aboriginal Affairs,Aboriginal Affairs +424944,Aboriginal Affairs,Aboriginal Affairs +424942,Aboriginal Affairs,Aboriginal Affairs +424941,Aboriginal Affairs,Aboriginal Affairs +424940,Aboriginal Affairs,Aboriginal Affairs +424938,Aboriginal Affairs,Aboriginal Affairs +421249,Aboriginal Affairs,Aboriginal Affairs +475352,Aboriginal Affairs,Aboriginal Affairs +471676,Aboriginal Affairs,Aboriginal Affairs +471675,Aboriginal Affairs,Aboriginal Affairs +465895,Aboriginal Affairs,Aboriginal Affairs +458512,Aboriginal Affairs,Aboriginal Affairs +454856,Aboriginal Affairs,Aboriginal Affairs +453086,Aboriginal Affairs,Aboriginal Affairs +453064,Aboriginal Affairs,Aboriginal Affairs +452725,Aboriginal Affairs,Aboriginal Affairs +452721,Aboriginal Affairs,Aboriginal Affairs +452720,Aboriginal Affairs,Aboriginal Affairs +452716,Aboriginal Affairs,Aboriginal Affairs +452713,Aboriginal Affairs,Aboriginal Affairs +452706,Aboriginal Affairs,Aboriginal Affairs +452702,Aboriginal Affairs,Aboriginal Affairs +452701,Aboriginal Affairs,Aboriginal Affairs +452700,Aboriginal Affairs,Aboriginal Affairs +452698,Aboriginal Affairs,Aboriginal Affairs +452697,Aboriginal Affairs,Aboriginal Affairs +448438,Aboriginal Affairs,Aboriginal Affairs +440930,Aboriginal Affairs,Aboriginal Affairs +437076,Aboriginal Affairs,Aboriginal Affairs +434545,Aboriginal Affairs,Aboriginal Affairs +434544,Aboriginal Affairs,Aboriginal Affairs +434543,Aboriginal Affairs,Aboriginal Affairs +434542,Aboriginal Affairs,Aboriginal Affairs +434541,Aboriginal Affairs,Aboriginal Affairs +434540,Aboriginal Affairs,Aboriginal Affairs +434539,Aboriginal Affairs,Aboriginal Affairs +434538,Aboriginal Affairs,Aboriginal Affairs +434537,Aboriginal Affairs,Aboriginal Affairs +434535,Aboriginal Affairs,Aboriginal Affairs +434534,Aboriginal Affairs,Aboriginal Affairs +434533,Aboriginal Affairs,Aboriginal Affairs +427109,Science and Technology,Science and Technology +423052,Science and Technology,Science and Technology +423051,Science and Technology,Science and Technology +427110,Science and Technology,Science and Technology +423544,Science and Technology,Science and Technology +423522,Science and Technology,Science and Technology +423518,Science and Technology,Science and Technology +423507,Science and Technology,Science and Technology +423501,Science and Technology,Science and Technology +421573,Science and Technology,Science and Technology +421572,Science and Technology,Science and Technology +425167,Science and Technology,Science and Technology +425166,Science and Technology,Science and Technology +537145,Arts and Culture,Arts and Culture +531358,Arts and Culture,Arts and Culture +424744,Arts and Culture,Arts and Culture +421748,Arts and Culture,Arts and Culture +431993,Arts and Culture,Arts and Culture +421750,Arts and Culture,Arts and Culture +518372,Arts and Culture,Arts and Culture +427304,Arts and Culture,Arts and Culture +523306,Arts and Culture,Arts and Culture +520482,Arts and Culture,Arts and Culture +427303,Arts and Culture,Arts and Culture +427302,Arts and Culture,Arts and Culture +424746,Arts and Culture,Arts and Culture +462822,Aboriginal Affairs,Aboriginal Affairs +462821,Aboriginal Affairs,Aboriginal Affairs +422809,Aboriginal Affairs,Aboriginal Affairs +422807,Aboriginal Affairs,Aboriginal Affairs +422805,Aboriginal Affairs,Aboriginal Affairs +482856,Aboriginal Affairs,Aboriginal Affairs +422653,Science and Technology,Science and Technology +422529,Science and Technology,Science and Technology +463156,Science and Technology,Science and Technology +461107,Science and Technology,Science and Technology +424507,Science and Technology,Science and Technology +424542,Arts and Culture,Arts and Culture +424541,Arts and Culture,Arts and Culture +424544,Arts and Culture,Arts and Culture +427897,Aboriginal Affairs,Aboriginal Affairs +434948,Science and Technology,Science and Technology +426131,Science and Technology,Science and Technology +426129,Science and Technology,Science and Technology +426141,Science and Technology,Science and Technology +423084,Aboriginal Affairs,Aboriginal Affairs +423083,Aboriginal Affairs,Aboriginal Affairs +508550,Aboriginal Affairs,Aboriginal Affairs +480175,Aboriginal Affairs,Aboriginal Affairs +477730,Aboriginal Affairs,Aboriginal Affairs +473970,Aboriginal Affairs,Aboriginal Affairs +465486,Aboriginal Affairs,Aboriginal Affairs +465485,Aboriginal Affairs,Aboriginal Affairs +465484,Aboriginal Affairs,Aboriginal Affairs +465482,Aboriginal Affairs,Aboriginal Affairs +465481,Aboriginal Affairs,Aboriginal Affairs +465480,Aboriginal Affairs,Aboriginal Affairs +465479,Aboriginal Affairs,Aboriginal Affairs +460093,Aboriginal Affairs,Aboriginal Affairs +459633,Aboriginal Affairs,Aboriginal Affairs +458641,Aboriginal Affairs,Aboriginal Affairs +453887,Aboriginal Affairs,Aboriginal Affairs +453882,Aboriginal Affairs,Aboriginal Affairs +441708,Aboriginal Affairs,Aboriginal Affairs +441706,Aboriginal Affairs,Aboriginal Affairs +439048,Aboriginal Affairs,Aboriginal Affairs +439041,Aboriginal Affairs,Aboriginal Affairs +439036,Aboriginal Affairs,Aboriginal Affairs +439033,Aboriginal Affairs,Aboriginal Affairs +436065,Aboriginal Affairs,Aboriginal Affairs +428290,Aboriginal Affairs,Aboriginal Affairs +428288,Aboriginal Affairs,Aboriginal Affairs +428286,Aboriginal Affairs,Aboriginal Affairs +425811,Aboriginal Affairs,Aboriginal Affairs +425810,Aboriginal Affairs,Aboriginal Affairs +425716,Aboriginal Affairs,Aboriginal Affairs +447412,Arts and Culture,Arts and Culture +447406,Arts and Culture,Arts and Culture +425505,Arts and Culture,Arts and Culture +447428,Arts and Culture,Arts and Culture +422939,Science and Technology,Science and Technology +422948,Aboriginal Affairs,Aboriginal Affairs +456802,Science and Technology,Science and Technology +456801,Science and Technology,Science and Technology +456805,Science and Technology,Science and Technology +456804,Science and Technology,Science and Technology +424376,Aboriginal Affairs,Aboriginal Affairs +424374,Aboriginal Affairs,Aboriginal Affairs +442548,Aboriginal Affairs,Aboriginal Affairs +425098,Aboriginal Affairs,Aboriginal Affairs +425030,Aboriginal Affairs,Aboriginal Affairs +449070,Aboriginal Affairs,Aboriginal Affairs +449069,Aboriginal Affairs,Aboriginal Affairs +449068,Aboriginal Affairs,Aboriginal Affairs +441116,Aboriginal Affairs,Aboriginal Affairs +425198,Aboriginal Affairs,Aboriginal Affairs +425197,Aboriginal Affairs,Aboriginal Affairs +425196,Aboriginal Affairs,Aboriginal Affairs +425192,Aboriginal Affairs,Aboriginal Affairs +425189,Aboriginal Affairs,Aboriginal Affairs +425188,Aboriginal Affairs,Aboriginal Affairs +425187,Aboriginal Affairs,Aboriginal Affairs +427120,Aboriginal Affairs,Aboriginal Affairs +427134,Aboriginal Affairs,Aboriginal Affairs +427133,Aboriginal Affairs,Aboriginal Affairs +427132,Aboriginal Affairs,Aboriginal Affairs +427131,Aboriginal Affairs,Aboriginal Affairs +427130,Aboriginal Affairs,Aboriginal Affairs +427129,Aboriginal Affairs,Aboriginal Affairs +427128,Aboriginal Affairs,Aboriginal Affairs +427127,Aboriginal Affairs,Aboriginal Affairs +427126,Aboriginal Affairs,Aboriginal Affairs +427125,Aboriginal Affairs,Aboriginal Affairs +427124,Aboriginal Affairs,Aboriginal Affairs +427123,Aboriginal Affairs,Aboriginal Affairs +427122,Aboriginal Affairs,Aboriginal Affairs +439666,Science and Technology,Science and Technology +439664,Science and Technology,Science and Technology +509053,Science and Technology,Science and Technology +502427,Science and Technology,Science and Technology +502421,Science and Technology,Science and Technology +502418,Science and Technology,Science and Technology +496229,Science and Technology,Science and Technology +455590,Science and Technology,Science and Technology +455589,Science and Technology,Science and Technology +455585,Science and Technology,Science and Technology +455577,Science and Technology,Science and Technology +455570,Science and Technology,Science and Technology +455568,Science and Technology,Science and Technology +455533,Science and Technology,Science and Technology +452823,Science and Technology,Science and Technology +452820,Science and Technology,Science and Technology +452815,Science and Technology,Science and Technology +452811,Science and Technology,Science and Technology +452804,Science and Technology,Science and Technology +452802,Science and Technology,Science and Technology +452800,Science and Technology,Science and Technology +445488,Science and Technology,Science and Technology +442853,Science and Technology,Science and Technology +442851,Science and Technology,Science and Technology +442850,Science and Technology,Science and Technology +442846,Science and Technology,Science and Technology +442843,Science and Technology,Science and Technology +442841,Science and Technology,Science and Technology +442840,Science and Technology,Science and Technology +439674,Science and Technology,Science and Technology +439673,Science and Technology,Science and Technology +439671,Science and Technology,Science and Technology +439669,Science and Technology,Science and Technology +529985,Science and Technology,Science and Technology +528516,Science and Technology,Science and Technology +516895,Science and Technology,Science and Technology +516883,Science and Technology,Science and Technology +515710,Science and Technology,Science and Technology +514690,Science and Technology,Science and Technology +512894,Science and Technology,Science and Technology +512892,Science and Technology,Science and Technology +508039,Science and Technology,Science and Technology +501158,Science and Technology,Science and Technology +501155,Science and Technology,Science and Technology +501152,Science and Technology,Science and Technology +501147,Science and Technology,Science and Technology +495243,Science and Technology,Science and Technology +495239,Science and Technology,Science and Technology +480103,Science and Technology,Science and Technology +466708,Science and Technology,Science and Technology +455379,Science and Technology,Science and Technology +455378,Science and Technology,Science and Technology +455377,Science and Technology,Science and Technology +455376,Science and Technology,Science and Technology +455375,Science and Technology,Science and Technology +455370,Science and Technology,Science and Technology +448347,Science and Technology,Science and Technology +444388,Science and Technology,Science and Technology +444387,Science and Technology,Science and Technology +444386,Science and Technology,Science and Technology +438417,Science and Technology,Science and Technology +438408,Science and Technology,Science and Technology +438400,Science and Technology,Science and Technology +435546,Science and Technology,Science and Technology +435544,Science and Technology,Science and Technology +435542,Science and Technology,Science and Technology +435540,Science and Technology,Science and Technology +435538,Science and Technology,Science and Technology +435537,Science and Technology,Science and Technology +435533,Science and Technology,Science and Technology +429535,Science and Technology,Science and Technology +429534,Science and Technology,Science and Technology +424635,Science and Technology,Science and Technology +424628,Science and Technology,Science and Technology +424626,Science and Technology,Science and Technology +424625,Science and Technology,Science and Technology +424624,Science and Technology,Science and Technology +424621,Science and Technology,Science and Technology +424620,Science and Technology,Science and Technology +538025,Science and Technology,Science and Technology +534423,Science and Technology,Science and Technology +534420,Science and Technology,Science and Technology +534410,Science and Technology,Science and Technology +424451,Science and Technology,Science and Technology +424450,Science and Technology,Science and Technology +452138,Science and Technology,Science and Technology +449362,Science and Technology,Science and Technology +424453,Science and Technology,Science and Technology +425028,Aboriginal Affairs,Aboriginal Affairs +425027,Aboriginal Affairs,Aboriginal Affairs +425043,Aboriginal Affairs,Aboriginal Affairs +425035,Aboriginal Affairs,Aboriginal Affairs +425034,Aboriginal Affairs,Aboriginal Affairs +425032,Aboriginal Affairs,Aboriginal Affairs +425939,Aboriginal Affairs,Aboriginal Affairs +425936,Aboriginal Affairs,Aboriginal Affairs +425941,Aboriginal Affairs,Aboriginal Affairs +425380,Science and Technology,Science and Technology +425378,Science and Technology,Science and Technology +432955,Science and Technology,Science and Technology +432950,Science and Technology,Science and Technology +432948,Science and Technology,Science and Technology +430604,Aboriginal Affairs,Aboriginal Affairs +430603,Aboriginal Affairs,Aboriginal Affairs +537382,Aboriginal Affairs,Aboriginal Affairs +537381,Aboriginal Affairs,Aboriginal Affairs +428530,Aboriginal Affairs,Aboriginal Affairs +541236,Aboriginal Affairs,Aboriginal Affairs +539508,Aboriginal Affairs,Aboriginal Affairs +537405,Aboriginal Affairs,Aboriginal Affairs +537404,Aboriginal Affairs,Aboriginal Affairs +537402,Aboriginal Affairs,Aboriginal Affairs +537401,Aboriginal Affairs,Aboriginal Affairs +537397,Aboriginal Affairs,Aboriginal Affairs +424882,Science and Technology,Science and Technology +424864,Science and Technology,Science and Technology +427349,Science and Technology,Science and Technology +427348,Science and Technology,Science and Technology +427347,Science and Technology,Science and Technology +427001,Science and Technology,Science and Technology +431282,Science and Technology,Science and Technology +431280,Science and Technology,Science and Technology +431288,Science and Technology,Science and Technology +431286,Science and Technology,Science and Technology +435880,Aboriginal Affairs,Aboriginal Affairs +440236,Science and Technology,Science and Technology +440941,Telecommunications,Telecommunications +440940,Telecommunications,Telecommunications +440236,Telecommunications,Telecommunications +435880,Telecommunications,Telecommunications +465676,Aboriginal Affairs,Aboriginal Affairs +465500,Aboriginal Affairs,Aboriginal Affairs +424867,Aboriginal Affairs,Aboriginal Affairs +424866,Aboriginal Affairs,Aboriginal Affairs +480215,Aboriginal Affairs,Aboriginal Affairs +478723,Aboriginal Affairs,Aboriginal Affairs +478452,Aboriginal Affairs,Aboriginal Affairs +476985,Aboriginal Affairs,Aboriginal Affairs +474314,Aboriginal Affairs,Aboriginal Affairs +474309,Aboriginal Affairs,Aboriginal Affairs +541775,Arts and Culture,Arts and Culture +541766,Arts and Culture,Arts and Culture +482365,Arts and Culture,Arts and Culture +467986,Arts and Culture,Arts and Culture +463717,Arts and Culture,Arts and Culture +446934,Arts and Culture,Arts and Culture +438212,Arts and Culture,Arts and Culture +544079,Arts and Culture,Arts and Culture +462541,Aboriginal Affairs,Aboriginal Affairs +440636,Aboriginal Affairs,Aboriginal Affairs +436794,Aboriginal Affairs,Aboriginal Affairs +427888,Telecommunications,Telecommunications +425129,Telecommunications,Telecommunications +446680,Telecommunications,Telecommunications +428096,Aboriginal Affairs,Aboriginal Affairs +438565,Science and Technology,Science and Technology +431577,Science and Technology,Science and Technology +431539,Science and Technology,Science and Technology +465720,Science and Technology,Science and Technology +465708,Science and Technology,Science and Technology +461628,Science and Technology,Science and Technology +461624,Science and Technology,Science and Technology +448068,Science and Technology,Science and Technology +448058,Science and Technology,Science and Technology +448030,Science and Technology,Science and Technology +439289,Science and Technology,Science and Technology +439283,Science and Technology,Science and Technology +439273,Science and Technology,Science and Technology +439272,Science and Technology,Science and Technology +439264,Science and Technology,Science and Technology +439248,Science and Technology,Science and Technology +437046,Science and Technology,Science and Technology +437040,Science and Technology,Science and Technology +425462,Science and Technology,Science and Technology +425457,Science and Technology,Science and Technology +425434,Science and Technology,Science and Technology +425431,Science and Technology,Science and Technology +433083,Aboriginal Affairs,Aboriginal Affairs +433082,Aboriginal Affairs,Aboriginal Affairs +436347,Aboriginal Affairs,Aboriginal Affairs +436346,Aboriginal Affairs,Aboriginal Affairs +436345,Aboriginal Affairs,Aboriginal Affairs +433085,Aboriginal Affairs,Aboriginal Affairs +433083,Arts and Culture,Arts and Culture +433082,Arts and Culture,Arts and Culture +436347,Arts and Culture,Arts and Culture +436346,Arts and Culture,Arts and Culture +436345,Arts and Culture,Arts and Culture +433085,Arts and Culture,Arts and Culture +457858,Aboriginal Affairs,Aboriginal Affairs +437071,Science and Technology,Science and Technology +437070,Science and Technology,Science and Technology +458892,Science and Technology,Science and Technology +442657,Science and Technology,Science and Technology +530734,Science and Technology,Science and Technology +427761,Aboriginal Affairs,Aboriginal Affairs +427760,Aboriginal Affairs,Aboriginal Affairs +433008,Aboriginal Affairs,Aboriginal Affairs +432422,Science and Technology,Science and Technology +431062,Science and Technology,Science and Technology +426383,Science and Technology,Science and Technology +458675,Science and Technology,Science and Technology +458673,Science and Technology,Science and Technology +431062,Telecommunications,Telecommunications +426383,Telecommunications,Telecommunications +442803,Telecommunications,Telecommunications +431817,Science and Technology,Science and Technology +427041,Aboriginal Affairs,Aboriginal Affairs +433415,Science and Technology,Science and Technology +427929,Science and Technology,Science and Technology +458686,Science and Technology,Science and Technology +458684,Science and Technology,Science and Technology +434034,Aboriginal Affairs,Aboriginal Affairs +437740,Aboriginal Affairs,Aboriginal Affairs +440278,Aboriginal Affairs,Aboriginal Affairs +472563,Science and Technology,Science and Technology +461893,Science and Technology,Science and Technology +458235,Science and Technology,Science and Technology +443586,Science and Technology,Science and Technology +434209,Aboriginal Affairs,Aboriginal Affairs +434208,Aboriginal Affairs,Aboriginal Affairs +445462,Aboriginal Affairs,Aboriginal Affairs +445460,Aboriginal Affairs,Aboriginal Affairs +442392,Aboriginal Affairs,Aboriginal Affairs +439276,Aboriginal Affairs,Aboriginal Affairs +437734,Aboriginal Affairs,Aboriginal Affairs +436602,Aboriginal Affairs,Aboriginal Affairs +436388,Aboriginal Affairs,Aboriginal Affairs +436387,Aboriginal Affairs,Aboriginal Affairs +427223,Aboriginal Affairs,Aboriginal Affairs +446430,Science and Technology,Science and Technology +446429,Science and Technology,Science and Technology +446466,Science and Technology,Science and Technology +446430,Aboriginal Affairs,Aboriginal Affairs +446429,Aboriginal Affairs,Aboriginal Affairs +446466,Aboriginal Affairs,Aboriginal Affairs +451767,Science and Technology,Science and Technology +451766,Science and Technology,Science and Technology +438530,Science and Technology,Science and Technology +438077,Science and Technology,Science and Technology +430569,Science and Technology,Science and Technology +430568,Science and Technology,Science and Technology +430567,Science and Technology,Science and Technology +430566,Science and Technology,Science and Technology +430565,Science and Technology,Science and Technology +430654,Telecommunications,Telecommunications +430653,Telecommunications,Telecommunications +430607,Telecommunications,Telecommunications +430211,Telecommunications,Telecommunications +430210,Telecommunications,Telecommunications +430166,Telecommunications,Telecommunications +430165,Telecommunications,Telecommunications +506580,Aboriginal Affairs,Aboriginal Affairs +506579,Aboriginal Affairs,Aboriginal Affairs +436178,Aboriginal Affairs,Aboriginal Affairs +427471,Aboriginal Affairs,Aboriginal Affairs +427470,Aboriginal Affairs,Aboriginal Affairs +476132,Science and Technology,Science and Technology +448959,Science and Technology,Science and Technology +432870,Aboriginal Affairs,Aboriginal Affairs +457711,Science and Technology,Science and Technology +432633,Science and Technology,Science and Technology +478065,Science and Technology,Science and Technology +457716,Science and Technology,Science and Technology +457715,Science and Technology,Science and Technology +432173,Aboriginal Affairs,Aboriginal Affairs +432161,Aboriginal Affairs,Aboriginal Affairs +443882,Aboriginal Affairs,Aboriginal Affairs +435682,Aboriginal Affairs,Aboriginal Affairs +432178,Aboriginal Affairs,Aboriginal Affairs +432177,Aboriginal Affairs,Aboriginal Affairs +432176,Aboriginal Affairs,Aboriginal Affairs +430702,Aboriginal Affairs,Aboriginal Affairs +430059,Science and Technology,Science and Technology +430055,Science and Technology,Science and Technology +435221,Aboriginal Affairs,Aboriginal Affairs +430818,Aboriginal Affairs,Aboriginal Affairs +525542,Aboriginal Affairs,Aboriginal Affairs +525541,Aboriginal Affairs,Aboriginal Affairs +517667,Aboriginal Affairs,Aboriginal Affairs +508547,Aboriginal Affairs,Aboriginal Affairs +462552,Aboriginal Affairs,Aboriginal Affairs +462547,Aboriginal Affairs,Aboriginal Affairs +462545,Aboriginal Affairs,Aboriginal Affairs +443555,Aboriginal Affairs,Aboriginal Affairs +443554,Aboriginal Affairs,Aboriginal Affairs +432174,Science and Technology,Science and Technology +432161,Science and Technology,Science and Technology +432180,Science and Technology,Science and Technology +432178,Science and Technology,Science and Technology +432258,Aboriginal Affairs,Aboriginal Affairs +432252,Aboriginal Affairs,Aboriginal Affairs +432316,Aboriginal Affairs,Aboriginal Affairs +432262,Aboriginal Affairs,Aboriginal Affairs +432260,Science and Technology,Science and Technology +432258,Science and Technology,Science and Technology +462769,Aboriginal Affairs,Aboriginal Affairs +462767,Aboriginal Affairs,Aboriginal Affairs +449594,Aboriginal Affairs,Aboriginal Affairs +443725,Aboriginal Affairs,Aboriginal Affairs +443722,Aboriginal Affairs,Aboriginal Affairs +430822,Aboriginal Affairs,Aboriginal Affairs +525727,Aboriginal Affairs,Aboriginal Affairs +525717,Aboriginal Affairs,Aboriginal Affairs +517653,Aboriginal Affairs,Aboriginal Affairs +508552,Aboriginal Affairs,Aboriginal Affairs +463170,Science and Technology,Science and Technology +485970,Science and Technology,Science and Technology +466619,Science and Technology,Science and Technology +465108,Science and Technology,Science and Technology +469023,Aboriginal Affairs,Aboriginal Affairs +429949,Science and Technology,Science and Technology +429947,Science and Technology,Science and Technology +429951,Science and Technology,Science and Technology +463521,Science and Technology,Science and Technology +433749,Science and Technology,Science and Technology +432157,Science and Technology,Science and Technology +435669,Science and Technology,Science and Technology +432550,Science and Technology,Science and Technology +468587,Science and Technology,Science and Technology +443557,Aboriginal Affairs,Aboriginal Affairs +442344,Aboriginal Affairs,Aboriginal Affairs +431623,Aboriginal Affairs,Aboriginal Affairs +431622,Aboriginal Affairs,Aboriginal Affairs +444834,Aboriginal Affairs,Aboriginal Affairs +431626,Aboriginal Affairs,Aboriginal Affairs +431625,Aboriginal Affairs,Aboriginal Affairs +431631,Aboriginal Affairs,Aboriginal Affairs +431630,Aboriginal Affairs,Aboriginal Affairs +431629,Aboriginal Affairs,Aboriginal Affairs +431628,Aboriginal Affairs,Aboriginal Affairs +439821,Broadcasting,Broadcasting +434070,Broadcasting,Broadcasting +456292,Broadcasting,Broadcasting +432420,Science and Technology,Science and Technology +444841,Science and Technology,Science and Technology +443774,Science and Technology,Science and Technology +542087,Science and Technology,Science and Technology +542086,Science and Technology,Science and Technology +539962,Science and Technology,Science and Technology +539950,Science and Technology,Science and Technology +539948,Science and Technology,Science and Technology +539947,Science and Technology,Science and Technology +539945,Science and Technology,Science and Technology +539938,Science and Technology,Science and Technology +532291,Science and Technology,Science and Technology +532288,Science and Technology,Science and Technology +526662,Science and Technology,Science and Technology +526661,Science and Technology,Science and Technology +522199,Science and Technology,Science and Technology +510542,Science and Technology,Science and Technology +510538,Science and Technology,Science and Technology +508128,Science and Technology,Science and Technology +508126,Science and Technology,Science and Technology +504760,Science and Technology,Science and Technology +504751,Science and Technology,Science and Technology +504743,Science and Technology,Science and Technology +502188,Science and Technology,Science and Technology +502179,Science and Technology,Science and Technology +502163,Science and Technology,Science and Technology +502157,Science and Technology,Science and Technology +502141,Science and Technology,Science and Technology +502138,Science and Technology,Science and Technology +502131,Science and Technology,Science and Technology +502119,Science and Technology,Science and Technology +498886,Science and Technology,Science and Technology +498848,Science and Technology,Science and Technology +498842,Science and Technology,Science and Technology +498839,Science and Technology,Science and Technology +498832,Science and Technology,Science and Technology +498806,Science and Technology,Science and Technology +498794,Science and Technology,Science and Technology +495833,Science and Technology,Science and Technology +495810,Science and Technology,Science and Technology +495804,Science and Technology,Science and Technology +493615,Science and Technology,Science and Technology +490517,Science and Technology,Science and Technology +485322,Science and Technology,Science and Technology +485319,Science and Technology,Science and Technology +485317,Science and Technology,Science and Technology +485316,Science and Technology,Science and Technology +485315,Science and Technology,Science and Technology +485310,Science and Technology,Science and Technology +477775,Science and Technology,Science and Technology +477773,Science and Technology,Science and Technology +477771,Science and Technology,Science and Technology +477769,Science and Technology,Science and Technology +477765,Science and Technology,Science and Technology +475465,Science and Technology,Science and Technology +475457,Science and Technology,Science and Technology +475451,Science and Technology,Science and Technology +472170,Science and Technology,Science and Technology +472167,Science and Technology,Science and Technology +472164,Science and Technology,Science and Technology +469343,Science and Technology,Science and Technology +467742,Science and Technology,Science and Technology +464333,Science and Technology,Science and Technology +464325,Science and Technology,Science and Technology +464316,Science and Technology,Science and Technology +464311,Science and Technology,Science and Technology +458513,Science and Technology,Science and Technology +458509,Science and Technology,Science and Technology +458507,Science and Technology,Science and Technology +456988,Science and Technology,Science and Technology +454691,Science and Technology,Science and Technology +454690,Science and Technology,Science and Technology +451980,Science and Technology,Science and Technology +448115,Science and Technology,Science and Technology +448113,Science and Technology,Science and Technology +448111,Science and Technology,Science and Technology +448107,Science and Technology,Science and Technology +440749,Science and Technology,Science and Technology +434381,Science and Technology,Science and Technology +438224,Telecommunications,Telecommunications +438221,Telecommunications,Telecommunications +433021,Aboriginal Affairs,Aboriginal Affairs +433018,Aboriginal Affairs,Aboriginal Affairs +460970,Aboriginal Affairs,Aboriginal Affairs +446311,Aboriginal Affairs,Aboriginal Affairs +526079,Aboriginal Affairs,Aboriginal Affairs +522719,Aboriginal Affairs,Aboriginal Affairs +509191,Aboriginal Affairs,Aboriginal Affairs +506038,Aboriginal Affairs,Aboriginal Affairs +499663,Aboriginal Affairs,Aboriginal Affairs +493806,Aboriginal Affairs,Aboriginal Affairs +493804,Aboriginal Affairs,Aboriginal Affairs +487990,Aboriginal Affairs,Aboriginal Affairs +487977,Aboriginal Affairs,Aboriginal Affairs +485435,Aboriginal Affairs,Aboriginal Affairs +452985,Aboriginal Affairs,Aboriginal Affairs +444006,Aboriginal Affairs,Aboriginal Affairs +442775,Aboriginal Affairs,Aboriginal Affairs +442773,Aboriginal Affairs,Aboriginal Affairs +442771,Aboriginal Affairs,Aboriginal Affairs +433957,Aboriginal Affairs,Aboriginal Affairs +433955,Aboriginal Affairs,Aboriginal Affairs +433952,Aboriginal Affairs,Aboriginal Affairs +538386,Aboriginal Affairs,Aboriginal Affairs +535410,Aboriginal Affairs,Aboriginal Affairs +535404,Aboriginal Affairs,Aboriginal Affairs +535399,Aboriginal Affairs,Aboriginal Affairs +535387,Aboriginal Affairs,Aboriginal Affairs +535375,Aboriginal Affairs,Aboriginal Affairs +535331,Aboriginal Affairs,Aboriginal Affairs +532392,Aboriginal Affairs,Aboriginal Affairs +532391,Aboriginal Affairs,Aboriginal Affairs +532390,Aboriginal Affairs,Aboriginal Affairs +529154,Aboriginal Affairs,Aboriginal Affairs +526100,Aboriginal Affairs,Aboriginal Affairs +506036,Science and Technology,Science and Technology +496209,Science and Technology,Science and Technology +452985,Science and Technology,Science and Technology +442775,Science and Technology,Science and Technology +442774,Science and Technology,Science and Technology +442773,Science and Technology,Science and Technology +442771,Science and Technology,Science and Technology +433957,Science and Technology,Science and Technology +433955,Science and Technology,Science and Technology +433952,Science and Technology,Science and Technology +535410,Science and Technology,Science and Technology +535404,Science and Technology,Science and Technology +535375,Science and Technology,Science and Technology +535331,Science and Technology,Science and Technology +532391,Science and Technology,Science and Technology +433956,Aboriginal Affairs,Aboriginal Affairs +433953,Aboriginal Affairs,Aboriginal Affairs +453009,Aboriginal Affairs,Aboriginal Affairs +444005,Aboriginal Affairs,Aboriginal Affairs +442769,Aboriginal Affairs,Aboriginal Affairs +453009,Science and Technology,Science and Technology +442769,Science and Technology,Science and Technology +433958,Science and Technology,Science and Technology +433956,Science and Technology,Science and Technology +457444,Science and Technology,Science and Technology +457439,Science and Technology,Science and Technology +432380,Science and Technology,Science and Technology +502841,Science and Technology,Science and Technology +451967,Science and Technology,Science and Technology +432286,Science and Technology,Science and Technology +512862,Science and Technology,Science and Technology +511066,Science and Technology,Science and Technology +442858,Science and Technology,Science and Technology +442857,Science and Technology,Science and Technology +442856,Science and Technology,Science and Technology +442855,Science and Technology,Science and Technology +442852,Science and Technology,Science and Technology +442847,Science and Technology,Science and Technology +442844,Science and Technology,Science and Technology +442839,Science and Technology,Science and Technology +442838,Science and Technology,Science and Technology +442836,Science and Technology,Science and Technology +439620,Science and Technology,Science and Technology +439611,Science and Technology,Science and Technology +439609,Science and Technology,Science and Technology +439603,Science and Technology,Science and Technology +439596,Science and Technology,Science and Technology +439594,Science and Technology,Science and Technology +439591,Science and Technology,Science and Technology +439587,Science and Technology,Science and Technology +435715,Science and Technology,Science and Technology +435712,Science and Technology,Science and Technology +435703,Science and Technology,Science and Technology +435702,Science and Technology,Science and Technology +435696,Science and Technology,Science and Technology +435692,Science and Technology,Science and Technology +435688,Science and Technology,Science and Technology +435684,Science and Technology,Science and Technology +435683,Science and Technology,Science and Technology +435680,Science and Technology,Science and Technology +435677,Science and Technology,Science and Technology +435668,Science and Technology,Science and Technology +435663,Science and Technology,Science and Technology +435658,Science and Technology,Science and Technology +435653,Science and Technology,Science and Technology +435647,Science and Technology,Science and Technology +435637,Science and Technology,Science and Technology +435634,Science and Technology,Science and Technology +433722,Science and Technology,Science and Technology +433721,Science and Technology,Science and Technology +433719,Science and Technology,Science and Technology +511065,Science and Technology,Science and Technology +511062,Science and Technology,Science and Technology +511058,Science and Technology,Science and Technology +507957,Science and Technology,Science and Technology +507955,Science and Technology,Science and Technology +507953,Science and Technology,Science and Technology +502672,Science and Technology,Science and Technology +502661,Science and Technology,Science and Technology +499422,Science and Technology,Science and Technology +499420,Science and Technology,Science and Technology +499419,Science and Technology,Science and Technology +499416,Science and Technology,Science and Technology +499411,Science and Technology,Science and Technology +499409,Science and Technology,Science and Technology +499394,Science and Technology,Science and Technology +491216,Science and Technology,Science and Technology +491205,Science and Technology,Science and Technology +487389,Science and Technology,Science and Technology +487384,Science and Technology,Science and Technology +487383,Science and Technology,Science and Technology +487381,Science and Technology,Science and Technology +484855,Science and Technology,Science and Technology +482133,Science and Technology,Science and Technology +477903,Science and Technology,Science and Technology +477902,Science and Technology,Science and Technology +477882,Science and Technology,Science and Technology +475450,Science and Technology,Science and Technology +475444,Science and Technology,Science and Technology +473333,Science and Technology,Science and Technology +473329,Science and Technology,Science and Technology +473327,Science and Technology,Science and Technology +473322,Science and Technology,Science and Technology +470691,Science and Technology,Science and Technology +470687,Science and Technology,Science and Technology +470679,Science and Technology,Science and Technology +470673,Science and Technology,Science and Technology +470662,Science and Technology,Science and Technology +470655,Science and Technology,Science and Technology +466997,Science and Technology,Science and Technology +464596,Science and Technology,Science and Technology +464592,Science and Technology,Science and Technology +464587,Science and Technology,Science and Technology +464584,Science and Technology,Science and Technology +464580,Science and Technology,Science and Technology +462534,Science and Technology,Science and Technology +462531,Science and Technology,Science and Technology +460647,Science and Technology,Science and Technology +460646,Science and Technology,Science and Technology +460645,Science and Technology,Science and Technology +460642,Science and Technology,Science and Technology +460128,Science and Technology,Science and Technology +459649,Science and Technology,Science and Technology +459648,Science and Technology,Science and Technology +459640,Science and Technology,Science and Technology +459639,Science and Technology,Science and Technology +458746,Science and Technology,Science and Technology +458741,Science and Technology,Science and Technology +458739,Science and Technology,Science and Technology +458736,Science and Technology,Science and Technology +457575,Science and Technology,Science and Technology +424582,Science and Technology,Science and Technology +431263,Aboriginal Affairs,Aboriginal Affairs +412482,Arts and Culture,Arts and Culture +452185,Aboriginal Affairs,Aboriginal Affairs +416423,Aboriginal Affairs,Aboriginal Affairs +408609,Aboriginal Affairs,Aboriginal Affairs +423924,Science and Technology,Science and Technology +408973,Aboriginal Affairs,Aboriginal Affairs +433024,Science and Technology,Science and Technology +452672,Aboriginal Affairs,Aboriginal Affairs +422413,Aboriginal Affairs,Aboriginal Affairs +412557,Arts and Culture,Arts and Culture +414756,Broadcasting,Broadcasting +414756,Telecommunications,Telecommunications +452681,Aboriginal Affairs,Aboriginal Affairs +466759,Science and Technology,Science and Technology +444411,Science and Technology,Science and Technology +422173,Aboriginal Affairs,Aboriginal Affairs +425172,Aboriginal Affairs,Aboriginal Affairs +521873,Science and Technology,Science and Technology +428920,Aboriginal Affairs,Aboriginal Affairs +454148,Aboriginal Affairs,Aboriginal Affairs +462071,Telecommunications,Telecommunications +440584,Aboriginal Affairs,Aboriginal Affairs +473741,Aboriginal Affairs,Aboriginal Affairs +450108,Aboriginal Affairs,Aboriginal Affairs +408271,Science and Technology,Science and Technology +408310,Arts and Culture,Arts and Culture +413270,Arts and Culture,Arts and Culture +420198,Aboriginal Affairs,Aboriginal Affairs +420193,Arts and Culture,Arts and Culture +438965,Broadcasting,Broadcasting +414721,Aboriginal Affairs,Affaires autochtones +442045,Science and Technology,Science and Technology +416379,Science and Technology,Science and Technology +443116,Science and Technology,Science and Technology +424983,Arts and Culture,Arts et culture +414526,Science and Technology,Science and Technology +417989,Aboriginal Affairs,Aboriginal Affairs +430444,Science and Technology,Science and Technology +416290,Aboriginal Affairs,Aboriginal Affairs +416290,Science and Technology,Science and Technology +424586,Aboriginal Affairs,Aboriginal Affairs +424585,Science and Technology,Science and Technology +528944,Science and Technology,Science and Technology +453034,Aboriginal Affairs,Aboriginal Affairs +490321,Science and Technology,Science and Technology +432148,Science and Technology,Science and Technology +503150,Aboriginal Affairs,Aboriginal Affairs +486046,Science and Technology,Science and Technology +414294,Science and Technology,Science and Technology +413661,Science and Technology,Science and Technology +476293,Science and Technology,Science and Technology +410762,Telecommunications,Telecommunications +437590,Science and Technology,Science and Technology +419580,Aboriginal Affairs,Aboriginal Affairs +419582,Telecommunications,Telecommunications +452030,Science and Technology,Science and Technology +544178,Science and Technology,Science and Technology +464895,Science and Technology,Science and Technology +420794,Arts and Culture,Arts and Culture +533177,Science and Technology,Science and Technology +427217,Aboriginal Affairs,Aboriginal Affairs +451311,Aboriginal Affairs,Aboriginal Affairs +451399,Telecommunications,Telecommunications +497852,Science and Technology,Sciences et technologies +414035,Broadcasting,Broadcasting +412853,Aboriginal Affairs,Aboriginal Affairs +431236,Science and Technology,Science and Technology +435830,Arts and Culture,Arts and Culture +411187,Aboriginal Affairs,Aboriginal Affairs +414035,Arts and Culture,Arts and Culture +414035,Telecommunications,Telecommunications +415218,Aboriginal Affairs,Aboriginal Affairs +422638,Science and Technology,Science and Technology +418503,Science and Technology,Science and Technology +442369,Aboriginal Affairs,Aboriginal Affairs +418170,Arts and Culture,Arts and Culture +456655,Science and Technology,Science and Technology +448366,Arts and Culture,Arts and Culture +414121,Science and Technology,Science and Technology +414345,Science and Technology,Science and Technology +412918,Aboriginal Affairs,Aboriginal Affairs +413381,Aboriginal Affairs,Aboriginal Affairs +509180,Science and Technology,Science and Technology +412874,Science and Technology,Science and Technology +411686,Aboriginal Affairs,Aboriginal Affairs +411788,Telecommunications,Telecommunications +411794,Telecommunications,Telecommunications +414838,Telecommunications,Telecommunications +411806,Telecommunications,Telecommunications +413028,Aboriginal Affairs,Aboriginal Affairs +422015,Science and Technology,Science and Technology +420959,Science and Technology,Science and Technology +476090,Aboriginal Affairs,Aboriginal Affairs +419953,Aboriginal Affairs,Aboriginal Affairs +412223,Science and Technology,Science and Technology +412244,Aboriginal Affairs,Aboriginal Affairs +412407,Aboriginal Affairs,Aboriginal Affairs +412721,Aboriginal Affairs,Aboriginal Affairs +412781,Arts and Culture,Arts and Culture +412948,Aboriginal Affairs,Aboriginal Affairs +413571,Telecommunications,Telecommunications +420602,Science and Technology,Science and Technology +446671,Science and Technology,Science and Technology +514909,Arts and Culture,Arts et culture +415654,Arts and Culture,Arts et culture +427076,Telecommunications,Telecommunications +448448,Science and Technology,Science and Technology +448759,Arts and Culture,Arts and Culture +448759,Broadcasting,Broadcasting +413989,Telecommunications,Telecommunications +413991,Telecommunications,Telecommunications +414090,Aboriginal Affairs,Aboriginal Affairs +414090,Science and Technology,Science and Technology +467549,Arts and Culture,Arts and Culture +414139,Aboriginal Affairs,Aboriginal Affairs +426988,Science and Technology,Science and Technology +421018,Arts and Culture,Arts and Culture +467532,Arts and Culture,Arts and Culture +435030,Arts and Culture,Arts and Culture +417676,Science and Technology,Science and Technology +423496,Science and Technology,Science and Technology +414647,Science and Technology,Science and Technology +421826,Science and Technology,Science and Technology +416617,Science and Technology,Science and Technology +458446,Telecommunications,Telecommunications +425323,Aboriginal Affairs,Aboriginal Affairs +421822,Aboriginal Affairs,Aboriginal Affairs +417810,Aboriginal Affairs,Aboriginal Affairs +417957,Aboriginal Affairs,Aboriginal Affairs +427666,Aboriginal Affairs,Aboriginal Affairs +422715,Broadcasting,Broadcasting +422530,Science and Technology,Science and Technology +418829,Science and Technology,Science and Technology +419212,Science and Technology,Science and Technology +527369,Broadcasting,Broadcasting +497032,Science and Technology,Science and Technology +417313,Telecommunications,Telecommunications +418455,Science and Technology,Science and Technology +420207,Aboriginal Affairs,Aboriginal Affairs +416010,Aboriginal Affairs,Aboriginal Affairs +416301,Aboriginal Affairs,Aboriginal Affairs +416333,Aboriginal Affairs,Aboriginal Affairs +418430,Aboriginal Affairs,Aboriginal Affairs +416836,Science and Technology,Science and Technology +455527,Science and Technology,Science and Technology +453895,Telecommunications,Telecommunications +428918,Arts and Culture,Arts and Culture +428918,Science and Technology,Science and Technology +455335,Science and Technology,Sciences et technologies +432237,Aboriginal Affairs,Aboriginal Affairs +449277,Arts and Culture,Arts and Culture +543388,Broadcasting,Broadcasting +455382,Science and Technology,Science and Technology +455404,Telecommunications,Telecommunications +419221,Science and Technology,Science and Technology +418920,Arts and Culture,Arts and Culture +418416,Science and Technology,Science and Technology +419942,Broadcasting,Broadcasting +431368,Telecommunications,Telecommunications +418138,Aboriginal Affairs,Aboriginal Affairs +423619,Aboriginal Affairs,Aboriginal Affairs +423039,Telecommunications,Telecommunications +418341,Science and Technology,Science and Technology +441763,Telecommunications,Telecommunications +420655,Arts and Culture,Arts and Culture +420370,Science and Technology,Sciences et technologies +421157,Arts and Culture,Arts and Culture +421426,Arts and Culture,Arts and Culture +441507,Science and Technology,Science and Technology +418990,Arts and Culture,Arts et culture +419505,Science and Technology,Science and Technology +418696,Aboriginal Affairs,Aboriginal Affairs +418537,Science and Technology,Science and Technology +427228,Aboriginal Affairs,Aboriginal Affairs +422211,Aboriginal Affairs,Aboriginal Affairs +439740,Telecommunications,Telecommunications +448530,Aboriginal Affairs,Aboriginal Affairs +421410,Arts and Culture,Arts and Culture +434132,Telecommunications,Telecommunications +434132,Arts and Culture,Arts and Culture +434132,Broadcasting,Broadcasting +423800,Arts and Culture,Arts and Culture +420660,Arts and Culture,Arts and Culture +418946,Arts and Culture,Arts and Culture +427416,Aboriginal Affairs,Aboriginal Affairs +419882,Science and Technology,Science and Technology +418886,Science and Technology,Science and Technology +418887,Aboriginal Affairs,Aboriginal Affairs +418887,Arts and Culture,Arts and Culture +418914,Aboriginal Affairs,Aboriginal Affairs +421964,Arts and Culture,Arts and Culture +432996,Aboriginal Affairs,Aboriginal Affairs +432996,Science and Technology,Science and Technology +420657,Telecommunications,Telecommunications +419122,Aboriginal Affairs,Aboriginal Affairs +435887,Aboriginal Affairs,Aboriginal Affairs +515248,Telecommunications,Telecommunications +429827,Telecommunications,Telecommunications +419841,Science and Technology,Science and Technology +427708,Science and Technology,Science and Technology +427707,Telecommunications,Telecommunications +427707,Aboriginal Affairs,Aboriginal Affairs +454099,Science and Technology,Science and Technology +421610,Telecommunications,Télécommunications +420325,Aboriginal Affairs,Aboriginal Affairs +439782,Science and Technology,Science and Technology +509939,Science and Technology,Science and Technology +420460,Science and Technology,Science and Technology +420566,Science and Technology,Science and Technology +421177,Science and Technology,Science and Technology +420474,Science and Technology,Science and Technology +421421,Science and Technology,Science and Technology +420575,Aboriginal Affairs,Aboriginal Affairs +448791,Aboriginal Affairs,Aboriginal Affairs +421751,Science and Technology,Science and Technology +434470,Arts and Culture,Arts and Culture +425052,Science and Technology,Science and Technology +512968,Aboriginal Affairs,Aboriginal Affairs +513002,Telecommunications,Telecommunications +442523,Science and Technology,Science and Technology +420774,Aboriginal Affairs,Aboriginal Affairs +502501,Broadcasting,Broadcasting +421574,Telecommunications,Telecommunications +421236,Aboriginal Affairs,Aboriginal Affairs +421086,Science and Technology,Science and Technology +466051,Science and Technology,Science and Technology +420925,Arts and Culture,Arts and Culture +421356,Science and Technology,Science and Technology +437129,Aboriginal Affairs,Affaires autochtones +506518,Science and Technology,Science and Technology +427718,Aboriginal Affairs,Aboriginal Affairs +420940,Aboriginal Affairs,Aboriginal Affairs +421241,Aboriginal Affairs,Aboriginal Affairs +434532,Aboriginal Affairs,Aboriginal Affairs +444207,Science and Technology,Science and Technology +423053,Science and Technology,Science and Technology +431015,Science and Technology,Science and Technology +421460,Broadcasting,Broadcasting +421574,Science and Technology,Science and Technology +425169,Science and Technology,Science and Technology +467763,Arts and Culture,Arts and Culture +427306,Arts and Culture,Arts and Culture +424753,Arts and Culture,Arts and Culture +421751,Arts and Culture,Arts and Culture +462823,Aboriginal Affairs,Aboriginal Affairs +422780,Arts and Culture,Arts et culture +433323,Science and Technology,Science and Technology +424639,Science and Technology,Science and Technology +427250,Science and Technology,Science and Technology +424543,Arts and Culture,Arts and Culture +432168,Aboriginal Affairs,Aboriginal Affairs +434950,Science and Technology,Science and Technology +500815,Telecommunications,Télécommunications +422767,Arts and Culture,Arts and Culture +426137,Science and Technology,Science and Technology +423085,Aboriginal Affairs,Aboriginal Affairs +447421,Arts and Culture,Arts and Culture +425505,Science and Technology,Science and Technology +425264,Science and Technology,Science and Technology +424789,Aboriginal Affairs,Aboriginal Affairs +456803,Science and Technology,Science and Technology +434370,Aboriginal Affairs,Aboriginal Affairs +441112,Aboriginal Affairs,Aboriginal Affairs +425909,Science and Technology,Science and Technology +423675,Science and Technology,Sciences et technologies +429812,Aboriginal Affairs,Aboriginal Affairs +427121,Aboriginal Affairs,Aboriginal Affairs +439667,Science and Technology,Science and Technology +531408,Science and Technology,Science and Technology +427104,Science and Technology,Science and Technology +434291,Aboriginal Affairs,Aboriginal Affairs +424452,Science and Technology,Science and Technology +439717,Science and Technology,Science and Technology +425029,Aboriginal Affairs,Aboriginal Affairs +425940,Aboriginal Affairs,Aboriginal Affairs +431819,Science and Technology,Science and Technology +430605,Aboriginal Affairs,Aboriginal Affairs +537388,Aboriginal Affairs,Aboriginal Affairs +425010,Science and Technology,Science and Technology +431284,Science and Technology,Science and Technology +440941,Aboriginal Affairs,Aboriginal Affairs +440941,Science and Technology,Science and Technology +424784,Telecommunications,Telecommunications +424790,Science and Technology,Science and Technology +532943,Arts and Culture,Arts and Culture +472796,Aboriginal Affairs,Aboriginal Affairs +541776,Arts and Culture,Arts and Culture +424954,Science and Technology,Science and Technology +426804,Aboriginal Affairs,Aboriginal Affairs +440637,Aboriginal Affairs,Aboriginal Affairs +427889,Telecommunications,Telecommunications +432599,Science and Technology,Science and Technology +425253,Science and Technology,Science and Technology +428105,Aboriginal Affairs,Aboriginal Affairs +449578,Science and Technology,Science and Technology +431578,Science and Technology,Science and Technology +465944,Science and Technology,Science and Technology +433084,Aboriginal Affairs,Aboriginal Affairs +433084,Arts and Culture,Arts and Culture +437070,Aboriginal Affairs,Aboriginal Affairs +457858,Science and Technology,Science and Technology +489067,Science and Technology,Science and Technology +427762,Aboriginal Affairs,Aboriginal Affairs +426376,Aboriginal Affairs,Aboriginal Affairs +445434,Science and Technology,Science and Technology +432422,Telecommunications,Telecommunications +426390,Aboriginal Affairs,Aboriginal Affairs +435641,Science and Technology,Science and Technology +427044,Aboriginal Affairs,Aboriginal Affairs +441755,Science and Technology,Science and Technology +434232,Aboriginal Affairs,Aboriginal Affairs +439741,Aboriginal Affairs,Aboriginal Affairs +441860,Science and Technology,Science and Technology +434212,Aboriginal Affairs,Aboriginal Affairs +436171,Aboriginal Affairs,Aboriginal Affairs +446431,Science and Technology,Science and Technology +446431,Aboriginal Affairs,Aboriginal Affairs +451769,Science and Technology,Science and Technology +430655,Telecommunications,Telecommunications +430608,Telecommunications,Telecommunications +430212,Telecommunications,Telecommunications +432805,Telecommunications,Telecommunications +506581,Aboriginal Affairs,Aboriginal Affairs +476135,Science and Technology,Science and Technology +427719,Science and Technology,Science and Technology +448962,Science and Technology,Science and Technology +441946,Aboriginal Affairs,Aboriginal Affairs +427876,Telecommunications,Telecommunications +457713,Science and Technology,Science and Technology +432174,Aboriginal Affairs,Aboriginal Affairs +430703,Aboriginal Affairs,Aboriginal Affairs +462782,Science and Technology,Science and Technology +430060,Science and Technology,Science and Technology +435223,Aboriginal Affairs,Aboriginal Affairs +432176,Science and Technology,Science and Technology +432260,Aboriginal Affairs,Aboriginal Affairs +432316,Science and Technology,Science and Technology +429666,Arts and Culture,Arts and Culture +478069,Aboriginal Affairs,Aboriginal Affairs +463443,Science and Technology,Science and Technology +469592,Aboriginal Affairs,Aboriginal Affairs +429950,Science and Technology,Science and Technology +429944,Science and Technology,Science and Technology +444258,Aboriginal Affairs,Aboriginal Affairs +455873,Science and Technology,Science and Technology +433763,Science and Technology,Science and Technology +432611,Aboriginal Affairs,Aboriginal Affairs +432551,Science and Technology,Science and Technology +468591,Science and Technology,Science and Technology +431271,Science and Technology,Science and Technology +431278,Science and Technology,Science and Technology +445254,Aboriginal Affairs,Aboriginal Affairs +519849,Science and Technology,Science and Technology +431428,Science and Technology,Science and Technology +453332,Science and Technology,Science and Technology +444514,Science and Technology,Science and Technology +431624,Aboriginal Affairs,Aboriginal Affairs +431632,Aboriginal Affairs,Aboriginal Affairs +453174,Broadcasting,Broadcasting +431654,Arts and Culture,Arts and Culture +450532,Science and Technology,Science and Technology +444842,Science and Technology,Science and Technology +447515,Science and Technology,Science and Technology +443812,Science and Technology,Science and Technology +449726,Science and Technology,Science and Technology +451404,Telecommunications,Telecommunications +432582,Science and Technology,Science and Technology +433503,Arts and Culture,Arts and Culture +433024,Aboriginal Affairs,Aboriginal Affairs +446320,Aboriginal Affairs,Aboriginal Affairs +526091,Aboriginal Affairs,Aboriginal Affairs +506038,Science and Technology,Science and Technology +433958,Aboriginal Affairs,Aboriginal Affairs +433953,Science and Technology,Science and Technology +493674,Science and Technology,Science and Technology +455100,Science and Technology,Science and Technology +512867,Science and Technology,Science and Technology +447436,Science and Technology,Science and Technology +442568,Science and Technology,Science and Technology +435751,Science and Technology,Science and Technology +457574,Science and Technology,Science and Technology +457572,Science and Technology,Science and Technology +457569,Science and Technology,Science and Technology +457567,Science and Technology,Science and Technology +457566,Science and Technology,Science and Technology +455685,Science and Technology,Science and Technology +455675,Science and Technology,Science and Technology +455671,Science and Technology,Science and Technology +455665,Science and Technology,Science and Technology +455661,Science and Technology,Science and Technology +455658,Science and Technology,Science and Technology +455654,Science and Technology,Science and Technology +452649,Science and Technology,Science and Technology +452648,Science and Technology,Science and Technology +452645,Science and Technology,Science and Technology +450190,Science and Technology,Science and Technology +450184,Science and Technology,Science and Technology +447980,Science and Technology,Science and Technology +447977,Science and Technology,Science and Technology +447966,Science and Technology,Science and Technology +447961,Science and Technology,Science and Technology +447958,Science and Technology,Science and Technology +447946,Science and Technology,Science and Technology +445974,Science and Technology,Science and Technology +445397,Science and Technology,Science and Technology +445395,Science and Technology,Science and Technology +445393,Science and Technology,Science and Technology +445391,Science and Technology,Science and Technology +445389,Science and Technology,Science and Technology +445386,Science and Technology,Science and Technology +445384,Science and Technology,Science and Technology +445382,Science and Technology,Science and Technology +445381,Science and Technology,Science and Technology +443826,Science and Technology,Science and Technology +543482,Science and Technology,Science and Technology +543478,Science and Technology,Science and Technology +541861,Science and Technology,Science and Technology +541860,Science and Technology,Science and Technology +541854,Science and Technology,Science and Technology +541852,Science and Technology,Science and Technology +541851,Science and Technology,Science and Technology +541849,Science and Technology,Science and Technology +540043,Science and Technology,Science and Technology +540042,Science and Technology,Science and Technology +538095,Science and Technology,Science and Technology +538092,Science and Technology,Science and Technology +538088,Science and Technology,Science and Technology +538084,Science and Technology,Science and Technology +535145,Science and Technology,Science and Technology +535138,Science and Technology,Science and Technology +535133,Science and Technology,Science and Technology +535127,Science and Technology,Science and Technology +535122,Science and Technology,Science and Technology +535120,Science and Technology,Science and Technology +535114,Science and Technology,Science and Technology +531691,Science and Technology,Science and Technology +531687,Science and Technology,Science and Technology +531680,Science and Technology,Science and Technology +531675,Science and Technology,Science and Technology +528550,Science and Technology,Science and Technology +528547,Science and Technology,Science and Technology +528543,Science and Technology,Science and Technology +528540,Science and Technology,Science and Technology +528539,Science and Technology,Science and Technology +528534,Science and Technology,Science and Technology +526313,Science and Technology,Science and Technology +526238,Science and Technology,Science and Technology +526236,Science and Technology,Science and Technology +526234,Science and Technology,Science and Technology +526233,Science and Technology,Science and Technology +526232,Science and Technology,Science and Technology +526225,Science and Technology,Science and Technology +522809,Science and Technology,Science and Technology +522806,Science and Technology,Science and Technology +522805,Science and Technology,Science and Technology +522804,Science and Technology,Science and Technology +519749,Science and Technology,Science and Technology +519742,Science and Technology,Science and Technology +519738,Science and Technology,Science and Technology +519735,Science and Technology,Science and Technology +519731,Science and Technology,Science and Technology +517717,Science and Technology,Science and Technology +516014,Science and Technology,Science and Technology +516013,Science and Technology,Science and Technology +516012,Science and Technology,Science and Technology +515864,Science and Technology,Science and Technology +515863,Science and Technology,Science and Technology +515861,Science and Technology,Science and Technology +515858,Science and Technology,Science and Technology +515856,Science and Technology,Science and Technology +515854,Science and Technology,Science and Technology +515848,Science and Technology,Science and Technology +514118,Science and Technology,Science and Technology +512877,Science and Technology,Science and Technology +512871,Science and Technology,Science and Technology +447434,Science and Technology,Science and Technology +447431,Science and Technology,Science and Technology +490326,Science and Technology,Science and Technology +481428,Science and Technology,Science and Technology +461546,Science and Technology,Science and Technology +455320,Science and Technology,Science and Technology +449253,Science and Technology,Science and Technology +445542,Science and Technology,Science and Technology +445541,Science and Technology,Science and Technology +445540,Science and Technology,Science and Technology +447483,Health,Health +433391,International Trade,International Trade +436668,Consumer Issues,Consumer Issues +436667,Consumer Issues,Consumer Issues +450857,Consumer Issues,Consumer Issues +450856,Consumer Issues,Consumer Issues +450855,Consumer Issues,Consumer Issues +450854,Consumer Issues,Consumer Issues +450853,Consumer Issues,Consumer Issues +450850,Consumer Issues,Consumer Issues +440756,Consumer Issues,Consumer Issues +437886,Consumer Issues,Consumer Issues +437885,Consumer Issues,Consumer Issues +436673,Consumer Issues,Consumer Issues +436672,Consumer Issues,Consumer Issues +436671,Consumer Issues,Consumer Issues +436670,Consumer Issues,Consumer Issues +436669,Economic Development,Economic Development +436668,Economic Development,Economic Development +450857,Economic Development,Economic Development +450856,Economic Development,Economic Development +450855,Economic Development,Economic Development +450854,Economic Development,Economic Development +450853,Economic Development,Economic Development +450850,Economic Development,Economic Development +440756,Economic Development,Economic Development +437886,Economic Development,Economic Development +436673,Economic Development,Economic Development +436672,Economic Development,Economic Development +436671,Economic Development,Economic Development +436669,Justice and Law Enforcement,Justice and Law Enforcement +450856,Justice and Law Enforcement,Justice and Law Enforcement +450855,Justice and Law Enforcement,Justice and Law Enforcement +450854,Justice and Law Enforcement,Justice and Law Enforcement +450853,Justice and Law Enforcement,Justice and Law Enforcement +440756,Justice and Law Enforcement,Justice and Law Enforcement +437886,Justice and Law Enforcement,Justice and Law Enforcement +437885,Justice and Law Enforcement,Justice and Law Enforcement +436673,Justice and Law Enforcement,Justice and Law Enforcement +436672,Justice and Law Enforcement,Justice and Law Enforcement +436671,Justice and Law Enforcement,Justice and Law Enforcement +436668,Small Business,Small Business +436667,Small Business,Small Business +450857,Small Business,Small Business +450856,Small Business,Small Business +450855,Small Business,Small Business +450854,Small Business,Small Business +450853,Small Business,Small Business +450850,Small Business,Small Business +440756,Small Business,Small Business +437886,Small Business,Small Business +437885,Small Business,Small Business +436673,Small Business,Small Business +436672,Small Business,Small Business +436671,Small Business,Small Business +436670,Small Business,Small Business +483268,Economic Development,Economic Development +483268,Health,Health +478744,Health,Health +454473,Health,Health +450580,Health,Health +443770,Health,Health +432856,Health,Health +483268,Taxation and Finance,Taxation and Finance +434231,Health,Health +434229,Health,Health +432862,Health,Health +441510,Economic Development,Economic Development +431775,Economic Development,Economic Development +441582,Economic Development,Economic Development +441574,Economic Development,Economic Development +434255,Budget,Budget +434254,Budget,Budget +434255,Economic Development,Economic Development +434254,Economic Development,Economic Development +434255,Energy,Energy +434254,Energy,Energy +432812,Taxation and Finance,Taxation and Finance +432811,Taxation and Finance,Taxation and Finance +434256,Taxation and Finance,Taxation and Finance +434255,Taxation and Finance,Taxation and Finance +432814,Taxation and Finance,Taxation and Finance +525001,Climate,Climate +524981,Climate,Climate +431788,Climate,Climate +525013,Climate,Climate +512371,Environment,Environment +431788,Environment,Environment +431814,Budget,Budget +433019,Economic Development,Economic Development +433016,Economic Development,Economic Development +478340,Economic Development,Economic Development +506013,Climate,Climate +496584,Climate,Climate +485472,Climate,Climate +483148,Climate,Climate +431842,Climate,Climate +511720,Climate,Climate +509396,Climate,Climate +431849,Economic Development,Economic Development +431877,Economic Development,Economic Development +431847,Education,Education +431845,Education,Education +431880,Education,Education +431852,Education,Education +431851,Education,Education +431849,Education,Education +431847,Employment and Training,Employment and Training +431845,Employment and Training,Employment and Training +431877,Employment and Training,Employment and Training +431876,Employment and Training,Employment and Training +431851,Employment and Training,Employment and Training +431850,Employment and Training,Employment and Training +431849,Employment and Training,Employment and Training +431851,International Development,International Development +431848,International Development,International Development +432973,International Development,International Development +431854,International Relations,International Relations +431845,International Relations,International Relations +432973,International Relations,International Relations +431847,Research and Development,Research and Development +503292,Regional Development,Regional Development +446311,Regional Development,Regional Development +446311,Economic Development,Economic Development +446311,Climate,Climate +446311,Environment,Environment +446311,Energy,Energy +436969,Health,Health +436968,Health,Health +446967,Health,Health +446807,Health,Health +446804,Health,Health +446802,Health,Health +436968,Taxation and Finance,Taxation and Finance +433086,Taxation and Finance,Taxation and Finance +451917,Taxation and Finance,Taxation and Finance +451916,Taxation and Finance,Taxation and Finance +446967,Taxation and Finance,Taxation and Finance +446807,Taxation and Finance,Taxation and Finance +446804,Taxation and Finance,Taxation and Finance +446802,Taxation and Finance,Taxation and Finance +446800,Taxation and Finance,Taxation and Finance +446802,Transportation,Transportation +446800,Transportation,Transportation +436969,Transportation,Transportation +436968,Transportation,Transportation +433086,Transportation,Transportation +451916,Transportation,Transportation +446967,Transportation,Transportation +446807,Transportation,Transportation +431983,Research and Development,Research and Development +441765,Economic Development,Economic Development +434838,Economic Development,Economic Development +515335,Economic Development,Economic Development +441765,Transportation,Transportation +434838,Transportation,Transportation +515335,Transportation,Transportation +501979,Transportation,Transportation +523525,Research and Development,Research and Development +523523,Research and Development,Research and Development +491011,Economic Development,Economic Development +485435,Economic Development,Economic Development +452985,Economic Development,Economic Development +444006,Economic Development,Economic Development +442775,Economic Development,Economic Development +442774,Economic Development,Economic Development +442773,Economic Development,Economic Development +442771,Economic Development,Economic Development +433957,Economic Development,Economic Development +433955,Economic Development,Economic Development +540471,Economic Development,Economic Development +538386,Economic Development,Economic Development +535410,Economic Development,Economic Development +535404,Economic Development,Economic Development +535399,Economic Development,Economic Development +535387,Economic Development,Economic Development +535375,Economic Development,Economic Development +535331,Economic Development,Economic Development +532392,Economic Development,Economic Development +532391,Economic Development,Economic Development +532390,Economic Development,Economic Development +529154,Economic Development,Economic Development +526100,Economic Development,Economic Development +526091,Economic Development,Economic Development +526079,Economic Development,Economic Development +522719,Economic Development,Economic Development +522710,Economic Development,Economic Development +522702,Economic Development,Economic Development +506038,Economic Development,Economic Development +506036,Economic Development,Economic Development +499663,Economic Development,Economic Development +496209,Economic Development,Economic Development +493806,Economic Development,Economic Development +522710,Environment,Environment +522702,Environment,Environment +509191,Environment,Environment +506038,Environment,Environment +506036,Environment,Environment +499663,Environment,Environment +496209,Environment,Environment +493806,Environment,Environment +493804,Environment,Environment +491011,Environment,Environment +485435,Environment,Environment +452985,Environment,Environment +442775,Environment,Environment +442773,Environment,Environment +433957,Environment,Environment +540471,Environment,Environment +538386,Environment,Environment +535410,Environment,Environment +535404,Environment,Environment +535399,Environment,Environment +535387,Environment,Environment +535375,Environment,Environment +532392,Environment,Environment +532391,Environment,Environment +532390,Environment,Environment +526100,Environment,Environment +526091,Environment,Environment +526079,Environment,Environment +442771,Fisheries,Fisheries +433957,Fisheries,Fisheries +433955,Fisheries,Fisheries +433952,Fisheries,Fisheries +540471,Fisheries,Fisheries +538386,Fisheries,Fisheries +535410,Fisheries,Fisheries +535404,Fisheries,Fisheries +535399,Fisheries,Fisheries +535387,Fisheries,Fisheries +535375,Fisheries,Fisheries +535331,Fisheries,Fisheries +532392,Fisheries,Fisheries +532391,Fisheries,Fisheries +532390,Fisheries,Fisheries +529154,Fisheries,Fisheries +526100,Fisheries,Fisheries +526091,Fisheries,Fisheries +526079,Fisheries,Fisheries +522719,Fisheries,Fisheries +522710,Fisheries,Fisheries +522702,Fisheries,Fisheries +509191,Fisheries,Fisheries +506038,Fisheries,Fisheries +506036,Fisheries,Fisheries +499663,Fisheries,Fisheries +496209,Fisheries,Fisheries +493806,Fisheries,Fisheries +493804,Fisheries,Fisheries +491011,Fisheries,Fisheries +487990,Fisheries,Fisheries +487977,Fisheries,Fisheries +485435,Fisheries,Fisheries +462841,Fisheries,Fisheries +462838,Fisheries,Fisheries +452985,Fisheries,Fisheries +444006,Fisheries,Fisheries +442775,Fisheries,Fisheries +442774,Fisheries,Fisheries +487990,Industry,Industry +487977,Industry,Industry +462838,Industry,Industry +442774,Industry,Industry +442773,Industry,Industry +433957,Industry,Industry +433955,Industry,Industry +540471,Industry,Industry +538386,Industry,Industry +535410,Industry,Industry +535404,Industry,Industry +535399,Industry,Industry +535387,Industry,Industry +535331,Industry,Industry +532392,Industry,Industry +532391,Industry,Industry +532390,Industry,Industry +526100,Industry,Industry +526079,Industry,Industry +522719,Industry,Industry +522702,Industry,Industry +509191,Industry,Industry +506036,Industry,Industry +535404,International Trade,International Trade +532391,International Trade,International Trade +522710,International Trade,International Trade +522702,International Trade,International Trade +487977,Regional Development,Regional Development +485435,Regional Development,Regional Development +462841,Regional Development,Regional Development +442775,Regional Development,Regional Development +442774,Regional Development,Regional Development +442771,Regional Development,Regional Development +433952,Regional Development,Regional Development +538386,Regional Development,Regional Development +535410,Regional Development,Regional Development +535404,Regional Development,Regional Development +535399,Regional Development,Regional Development +535387,Regional Development,Regional Development +535331,Regional Development,Regional Development +532392,Regional Development,Regional Development +526100,Regional Development,Regional Development +526091,Regional Development,Regional Development +522719,Regional Development,Regional Development +506038,Regional Development,Regional Development +442773,Research and Development,Research and Development +442771,Research and Development,Research and Development +529154,Research and Development,Research and Development +493804,Research and Development,Research and Development +491011,Research and Development,Research and Development +444006,Research and Development,Research and Development +442775,Research and Development,Research and Development +433958,Economic Development,Economic Development +433956,Economic Development,Economic Development +453009,Economic Development,Economic Development +444005,Economic Development,Economic Development +453009,Environment,Environment +433956,Fisheries,Fisheries +433953,Fisheries,Fisheries +453009,Fisheries,Fisheries +444005,Fisheries,Fisheries +442769,Fisheries,Fisheries +433956,Industry,Industry +433953,Industry,Industry +442769,Research and Development,Research and Development +441336,Environment,Environment +432061,Environment,Environment +432828,Climate,Climate +441340,Environment,Environment +441333,Environment,Environment +441327,Environment,Environment +432828,Environment,Environment +432067,International Trade,International Trade +432102,International Trade,International Trade +432119,International Trade,International Trade +432118,International Trade,International Trade +452735,International Trade,International Trade +452731,International Trade,International Trade +452726,International Trade,International Trade +452705,International Trade,International Trade +433875,International Trade,International Trade +432123,International Trade,International Trade +432121,International Trade,International Trade +545181,Regional Development,Regional Development +538054,Regional Development,Regional Development +434338,Regional Development,Regional Development +433332,Regional Development,Regional Development +433331,Regional Development,Regional Development +440541,Energy,Energy +442651,International Trade,International Trade +442646,International Trade,International Trade +451718,International Trade,International Trade +448935,International Trade,International Trade +442654,International Trade,International Trade +442646,Economic Development,Economic Development +442643,Economic Development,Economic Development +451718,Economic Development,Economic Development +448935,Economic Development,Economic Development +442654,Economic Development,Economic Development +442653,Economic Development,Economic Development +442643,Energy,Energy +451718,Energy,Energy +442654,Energy,Energy +442653,Energy,Energy +442651,Energy,Energy +442646,International Development,International Development +442643,International Development,International Development +451718,International Development,International Development +442654,International Development,International Development +442653,International Development,International Development +442643,Industry,Industry +451718,Industry,Industry +448935,Industry,Industry +442654,Industry,Industry +442653,Industry,Industry +442651,Industry,Industry +442651,International Relations,International Relations +442646,International Relations,International Relations +451718,International Relations,International Relations +442654,International Relations,International Relations +469152,Health,Health +469148,Health,Health +506786,Health,Health +504930,Health,Health +493461,Health,Health +479295,Health,Health +478371,Health,Health +476233,Health,Health +475930,Health,Health +475926,Health,Health +475920,Health,Health +472829,Health,Health +472828,Health,Health +472826,Health,Health +470733,Health,Health +526321,Financial Institutions,Financial Institutions +514973,Financial Institutions,Financial Institutions +450574,Financial Institutions,Financial Institutions +446422,Financial Institutions,Financial Institutions +435681,Infrastructure,Infrastructure +435672,Infrastructure,Infrastructure +446156,Infrastructure,Infrastructure +446154,Infrastructure,Infrastructure +446153,Infrastructure,Infrastructure +436155,Infrastructure,Infrastructure +435689,Infrastructure,Infrastructure +435681,Tourism,Tourism +435672,Tourism,Tourism +446156,Tourism,Tourism +446154,Tourism,Tourism +446153,Tourism,Tourism +436155,Tourism,Tourism +435689,Tourism,Tourism +432280,International Relations,International Relations +435634,Defence,Defence +433264,Economic Development,Economic Development +433263,Economic Development,Economic Development +458997,Economic Development,Economic Development +451544,Economic Development,Economic Development +448913,Economic Development,Economic Development +444089,Economic Development,Economic Development +435621,Economic Development,Economic Development +434044,Economic Development,Economic Development +432854,Industry,Industry +432853,Industry,Industry +447201,Industry,Industry +447200,Industry,Industry +432853,International Relations,International Relations +432895,Economic Development,Economic Development +432894,Economic Development,Economic Development +447206,Economic Development,Economic Development +440358,Economic Development,Economic Development +461805,Research and Development,Research and Development +544291,Research and Development,Research and Development +432379,Research and Development,Research and Development +520150,Research and Development,Research and Development +502833,Research and Development,Research and Development +502841,Research and Development,Research and Development +493680,Research and Development,Research and Development +493674,Research and Development,Research and Development +487886,Research and Development,Research and Development +461803,Research and Development,Research and Development +451506,Research and Development,Research and Development +445197,Research and Development,Research and Development +433686,Research and Development,Research and Development +433555,Research and Development,Research and Development +432380,Research and Development,Research and Development +541988,Research and Development,Research and Development +432417,International Trade,International Trade +438934,International Trade,International Trade +432412,International Trade,International Trade +484555,International Trade,International Trade +438936,Regional Development,Regional Development +438934,Regional Development,Regional Development +432412,Regional Development,Regional Development +438934,Defence,Defence +432412,Defence,Defence +484555,Defence,Defence +455812,Energy,Énergie +433017,Health,Health +448792,Health,Health +443004,Health,Health +436179,Health,Health +465887,Health,Health +465885,Health,Health +434533,Health,Health +432467,Health,Health +471684,Health,Health +471680,Health,Health +471676,Health,Health +471673,Health,Health +467227,Health,Health +467213,Health,Health +467211,Health,Health +465894,Health,Health +465893,Health,Health +465892,Health,Health +465890,Health,Health +432705,International Relations,International Relations +526615,International Relations,International Relations +517423,International Relations,International Relations +517422,International Relations,International Relations +517352,International Relations,International Relations +517349,International Relations,International Relations +511722,International Relations,International Relations +503102,International Relations,International Relations +499882,International Relations,International Relations +497288,International Relations,International Relations +496780,International Relations,International Relations +488960,International Relations,International Relations +484449,International Relations,International Relations +482849,International Relations,International Relations +481206,International Relations,International Relations +481204,International Relations,International Relations +475013,International Relations,International Relations +475004,International Relations,International Relations +475002,International Relations,International Relations +472003,International Relations,International Relations +471996,International Relations,International Relations +471991,International Relations,International Relations +464309,International Relations,International Relations +464300,International Relations,International Relations +461120,International Relations,International Relations +455057,International Relations,International Relations +455050,International Relations,International Relations +450731,International Relations,International Relations +440618,International Relations,International Relations +439918,International Relations,International Relations +432926,International Relations,International Relations +432937,Economic Development,Economic Development +432936,Economic Development,Economic Development +459666,Economic Development,Economic Development +457737,Economic Development,Economic Development +456573,Economic Development,Economic Development +456572,Economic Development,Economic Development +453864,Economic Development,Economic Development +452447,Economic Development,Economic Development +452446,Economic Development,Economic Development +450908,Economic Development,Economic Development +450907,Economic Development,Economic Development +450303,Economic Development,Economic Development +448695,Economic Development,Economic Development +448694,Economic Development,Economic Development +447348,Economic Development,Economic Development +442595,Economic Development,Economic Development +433852,Fisheries,Fisheries +432590,Fisheries,Fisheries +499558,Fisheries,Fisheries +448450,Fisheries,Fisheries +444353,Housing,Housing +515483,Immigration,Immigration +510643,Immigration,Immigration +469545,Immigration,Immigration +469544,Immigration,Immigration +469543,Immigration,Immigration +469541,Immigration,Immigration +536687,Immigration,Immigration +532820,Immigration,Immigration +434137,Consumer Issues,Consumer Issues +434135,Consumer Issues,Consumer Issues +436662,Consumer Issues,Consumer Issues +436661,Consumer Issues,Consumer Issues +434137,Financial Institutions,Financial Institutions +434135,Financial Institutions,Financial Institutions +436662,Financial Institutions,Financial Institutions +436661,Financial Institutions,Financial Institutions +436661,Privacy and Access to Information,Privacy and Access to Information +436660,Privacy and Access to Information,Privacy and Access to Information +436661,Taxation and Finance,Taxation and Finance +436660,Taxation and Finance,Taxation and Finance +433595,Industry,Industry +466135,Labour,Labour +466133,Labour,Labour +463286,Labour,Labour +463285,Labour,Labour +463284,Labour,Labour +463283,Labour,Labour +463282,Labour,Labour +463281,Labour,Labour +454306,Labour,Labour +454304,Labour,Labour +454297,Labour,Labour +539060,Labour,Labour +524944,Labour,Labour +524941,Labour,Labour +520638,Labour,Labour +518036,Labour,Labour +514927,Labour,Labour +514926,Labour,Labour +514925,Labour,Labour +469095,Labour,Labour +469094,Labour,Labour +469093,Labour,Labour +466350,Labour,Labour +466146,Labour,Labour +466142,Labour,Labour +466140,Labour,Labour +466139,Labour,Labour +466138,Labour,Labour +442534,Energy,Energy +471214,Energy,Energy +452285,Energy,Energy +445700,Energy,Energy +447434,Government Procurement,Government Procurement +447431,Government Procurement,Government Procurement +445242,Government Procurement,Government Procurement +449253,Industry,Industry +445242,Industry,Industry +490326,Industry,Industry +481428,Industry,Industry +461546,Industry,Industry +447434,Privacy and Access to Information,Privacy and Access to Information +447431,Privacy and Access to Information,Privacy and Access to Information +481428,Privacy and Access to Information,Privacy and Access to Information +455320,Privacy and Access to Information,Privacy and Access to Information +449253,Privacy and Access to Information,Privacy and Access to Information +481428,Research and Development,Research and Development +461546,Research and Development,Research and Development +445541,Budget,Budget +442568,Budget,Budget +445541,Health,Health +442568,Health,Health +445541,International Trade,International Trade +442568,International Trade,International Trade +445540,Research and Development,Research and Development +442568,Research and Development,Research and Development +445542,Research and Development,Research and Development +438048,Economic Development,Economic Development +438047,Economic Development,Economic Development +438053,Economic Development,Economic Development +438050,Economic Development,Economic Development +438048,Energy,Energy +438047,Energy,Energy +438053,Energy,Energy +438050,Energy,Energy +438048,Environment,Environment +438047,Environment,Environment +438053,Environment,Environment +438048,Industry,Industry +438047,Industry,Industry +438053,Industry,Industry +438050,Industry,Industry +436721,Consumer Issues,Consumer Issues +436719,Consumer Issues,Consumer Issues +462355,Consumer Issues,Consumer Issues +436723,Consumer Issues,Consumer Issues +436721,Financial Institutions,Financial Institutions +436719,Financial Institutions,Financial Institutions +462355,Financial Institutions,Financial Institutions +448979,Financial Institutions,Financial Institutions +436723,Financial Institutions,Financial Institutions +436721,Privacy and Access to Information,Privacy and Access to Information +436719,Privacy and Access to Information,Privacy and Access to Information +462355,Privacy and Access to Information,Privacy and Access to Information +448979,Privacy and Access to Information,Privacy and Access to Information +436723,Privacy and Access to Information,Privacy and Access to Information +436721,Taxation and Finance,Taxation and Finance +436719,Taxation and Finance,Taxation and Finance +462355,Taxation and Finance,Taxation and Finance +459032,Taxation and Finance,Taxation and Finance +436723,Taxation and Finance,Taxation and Finance +523856,Privacy and Access to Information,Privacy and Access to Information +499436,Government Procurement,Government Procurement +485014,Government Procurement,Government Procurement +459608,Government Procurement,Government Procurement +447590,Government Procurement,Government Procurement +536580,Government Procurement,Government Procurement +536566,Government Procurement,Government Procurement +509298,Government Procurement,Government Procurement +509296,Government Procurement,Government Procurement +461843,Agriculture,Agriculture +457892,Agriculture,Agriculture +446091,Agriculture,Agriculture +434444,Agriculture,Agriculture +434441,Agriculture,Agriculture +434438,Agriculture,Agriculture +496005,Agriculture,Agriculture +496004,Agriculture,Agriculture +496000,Agriculture,Agriculture +495998,Agriculture,Agriculture +495996,Agriculture,Agriculture +495995,Agriculture,Agriculture +476332,Agriculture,Agriculture +476331,Agriculture,Agriculture +476330,Agriculture,Agriculture +476329,Agriculture,Agriculture +476328,Agriculture,Agriculture +476327,Agriculture,Agriculture +476326,Agriculture,Agriculture +476325,Agriculture,Agriculture +476324,Agriculture,Agriculture +476321,Agriculture,Agriculture +476320,Agriculture,Agriculture +476319,Agriculture,Agriculture +476317,Agriculture,Agriculture +476316,Agriculture,Agriculture +476315,Agriculture,Agriculture +476284,Agriculture,Agriculture +476283,Agriculture,Agriculture +476282,Agriculture,Agriculture +476281,Agriculture,Agriculture +476280,Agriculture,Agriculture +462643,Agriculture,Agriculture +462642,Agriculture,Agriculture +462641,Agriculture,Agriculture +461846,Agriculture,Agriculture +461844,Industry,Industry +461843,Industry,Industry +476331,Industry,Industry +476330,Industry,Industry +476326,Industry,Industry +476325,Industry,Industry +476324,Industry,Industry +476321,Industry,Industry +476320,Industry,Industry +476319,Industry,Industry +476317,Industry,Industry +476316,Industry,Industry +476315,Industry,Industry +476283,Industry,Industry +476282,Industry,Industry +476281,Industry,Industry +476280,Industry,Industry +476332,International Trade,International Trade +476331,International Trade,International Trade +462643,International Trade,International Trade +462641,International Trade,International Trade +461846,International Trade,International Trade +461844,International Trade,International Trade +457892,International Trade,International Trade +446091,International Trade,International Trade +434444,International Trade,International Trade +434441,International Trade,International Trade +434438,International Trade,International Trade +496005,International Trade,International Trade +496004,International Trade,International Trade +496000,International Trade,International Trade +495998,International Trade,International Trade +495996,International Trade,International Trade +457892,Labour,Labour +434441,Labour,Labour +462643,Labour,Labour +462642,Labour,Labour +462642,Small Business,Small Business +462641,Small Business,Small Business +476320,Taxation and Finance,Taxation and Finance +476319,Taxation and Finance,Taxation and Finance +476327,Taxation and Finance,Taxation and Finance +476324,Taxation and Finance,Taxation and Finance +451375,Agriculture,Agriculture +448745,Agriculture,Agriculture +434446,Agriculture,Agriculture +476338,Agriculture,Agriculture +462636,Agriculture,Agriculture +462634,Agriculture,Agriculture +462630,Agriculture,Agriculture +462627,Agriculture,Agriculture +462624,Agriculture,Agriculture +461842,Agriculture,Agriculture +461841,Agriculture,Agriculture +461839,Agriculture,Agriculture +457891,Agriculture,Agriculture +456375,Agriculture,Agriculture +456374,Agriculture,Agriculture +456373,Agriculture,Agriculture +456372,Agriculture,Agriculture +461839,Industry,Industry +448745,Industry,Industry +461842,Industry,Industry +462634,International Trade,International Trade +462624,International Trade,International Trade +461842,International Trade,International Trade +461841,International Trade,International Trade +457891,International Trade,International Trade +456375,International Trade,International Trade +456374,International Trade,International Trade +456373,International Trade,International Trade +456372,International Trade,International Trade +456303,International Trade,International Trade +451377,International Trade,International Trade +451375,International Trade,International Trade +448745,International Trade,International Trade +434446,International Trade,International Trade +451377,Labour,Labour +451375,Labour,Labour +462636,Labour,Labour +462634,Labour,Labour +462627,Small Business,Small Business +462624,Small Business,Small Business +462636,Small Business,Small Business +462634,Small Business,Small Business +435164,Budget,Budget +435162,Budget,Budget +467319,Budget,Budget +467318,Budget,Budget +445114,Budget,Budget +443558,Budget,Budget +435164,Climate,Climate +435162,Climate,Climate +474915,Climate,Climate +474914,Climate,Climate +467319,Climate,Climate +467318,Climate,Climate +445114,Climate,Climate +443558,Climate,Climate +435162,Economic Development,Economic Development +443558,Infrastructure,Infrastructure +435164,Municipalities,Municipalities +435162,Municipalities,Municipalities +474915,Municipalities,Municipalities +474914,Municipalities,Municipalities +467319,Municipalities,Municipalities +467318,Municipalities,Municipalities +445114,Municipalities,Municipalities +443558,Municipalities,Municipalities +439874,Consumer Issues,Consumer Issues +444138,Research and Development,Research and Development +444138,Transportation,Transportation +447485,Health,Health +433391,Environment,Environment +450681,International Trade,International Trade +436669,Consumer Issues,Consumer Issues +436670,Economic Development,Economic Development +450857,Internal Trade,Internal Trade +436670,Justice and Law Enforcement,Justice and Law Enforcement +436669,Small Business,Small Business +432581,International Trade,International Trade +432581,Mining,Mining +438221,Transportation,Transportation +514330,Economic Development,Economic Development +514330,Health,Health +514330,Taxation and Finance,Taxation and Finance +432862,Economic Development,Economic Development +444127,Health,Health +432858,Economic Development,Economic Development +433272,Health,Health +433819,Education,Education +437881,Energy,Energy +437881,Environment,Environment +441572,Economic Development,Economic Development +434256,Budget,Budget +434256,Economic Development,Economic Development +434256,Energy,Energy +432813,Taxation and Finance,Taxation and Finance +431767,International Trade,International Trade +525010,Climate,Climate +514923,Environment,Environment +436816,Budget,Budget +431815,Research and Development,Research and Development +460970,Economic Development,Economic Development +507188,Climate,Climate +432973,Budget,Budget +431876,Economic Development,Economic Development +431848,Education,Education +431848,Employment and Training,Employment and Training +432972,International Development,International Development +432972,International Relations,International Relations +431850,Research and Development,Research and Development +435499,Regional Development,Regional Development +431867,Financial Institutions,Financial Institutions +446311,Infrastructure,Infrastructure +446311,Internal Trade,Internal Trade +446320,Regional Development,Regional Development +446320,Economic Development,Economic Development +446320,Government Procurement,Government Procurement +446320,Climate,Climate +446320,Environment,Environment +446311,International Trade,International Trade +446320,Energy,Energy +444390,Employment and Training,Employment and Training +446800,Health,Health +436969,Taxation and Finance,Taxation and Finance +446804,Transportation,Transportation +454099,Research and Development,Research and Development +501979,Economic Development,Economic Development +501979,Municipalities,Municipalities +451406,Transportation,Transportation +431989,Fisheries,Fisheries +432028,Research and Development,Research and Development +453181,Small Business,Small Business +493804,Economic Development,Economic Development +522719,Environment,Environment +442773,Fisheries,Fisheries +499663,Industry,Industry +462841,International Relations,International Relations +535410,International Trade,International Trade +487990,Regional Development,Regional Development +442774,Research and Development,Research and Development +442769,Economic Development,Economic Development +433958,Environment,Environment +433958,Fisheries,Fisheries +433958,Industry,Industry +444005,Research and Development,Research and Development +436453,Education,Education +436457,Environment,Environment +432061,Climate,Climate +441344,Environment,Environment +435225,Climate,Climate +441342,Environment,Environment +453065,International Trade,International Trade +432091,International Trade,International Trade +432103,International Trade,International Trade +432120,International Trade,International Trade +432127,Regional Development,Regional Development +450892,Energy,Energy +442653,International Trade,International Trade +442651,Economic Development,Economic Development +442646,Energy,Energy +442651,International Development,International Development +442646,Industry,Industry +442653,International Relations,International Relations +470727,Health,Health +432793,Tourism,Tourism +432258,Budget,Budget +432258,Research and Development,Research and Development +432846,Financial Institutions,Financial Institutions +435686,Infrastructure,Infrastructure +435686,Tourism,Tourism +432262,Employment and Training,Employment and Training +437056,International Relations,International Relations +432285,International Relations,International Relations +435637,Defence,Defence +432316,Economic Development,Economic Development +434042,Economic Development,Economic Development +447198,Industry,Industry +432854,International Relations,International Relations +433270,Economic Development,Economic Development +432356,Transportation,Transportation +488473,Research and Development,Research and Development +529687,Research and Development,Research and Development +458173,International Trade,International Trade +438936,International Trade,International Trade +484555,Regional Development,Regional Development +438936,Defence,Defence +432428,Employment and Training,Employment and Training +455812,Economic Development,Développement économique +455817,Energy,Énergie +433023,Health,Health +465888,Health,Health +432830,International Relations,International Relations +442594,Economic Development,Economic Development +445761,Fisheries,Fisheries +444354,Housing,Housing +532820,Budget,Budget +510643,Consumer Issues,Consumer Issues +522059,Employment and Training,Employment and Training +522059,Immigration,Immigration +510643,Justice and Law Enforcement,Justice and Law Enforcement +436662,Budget,Budget +436660,Consumer Issues,Consumer Issues +436660,Financial Institutions,Financial Institutions +436662,Privacy and Access to Information,Privacy and Access to Information +436662,Taxation and Finance,Taxation and Finance +433596,Industry,Industry +466136,Labour,Labour +442535,Energy,Energy +447436,Government Procurement,Government Procurement +455320,Industry,Industry +447436,Privacy and Access to Information,Privacy and Access to Information +490326,Research and Development,Research and Development +445542,Budget,Budget +445542,Health,Health +445542,International Trade,International Trade +445541,Research and Development,Research and Development +435751,Research and Development,Research and Development +433271,Agriculture,Agriculture +433271,Health,Health +433277,Industry,Industry +438049,Economic Development,Economic Development +438049,Energy,Energy +438050,International Trade,International Trade +438050,Transportation,Transportation +432810,Health,Health +438049,Environment,Environment +438049,Industry,Industry +462355,Budget,Budget +436722,Consumer Issues,Consumer Issues +436722,Financial Institutions,Financial Institutions +436722,Privacy and Access to Information,Privacy and Access to Information +436722,Taxation and Finance,Taxation and Finance +467987,Industry,Industry +540645,Privacy and Access to Information,Privacy and Access to Information +505202,Government Procurement,Government Procurement +450864,Agriculture,Agriculture +450864,International Trade,International Trade +432851,International Trade,International Trade +461844,Agriculture,Agriculture +462645,Environment,Environment +461846,Industry,Industry +446091,International Relations,International Relations +495995,International Trade,International Trade +462641,Labour,Labour +462643,Small Business,Small Business +476321,Taxation and Finance,Taxation and Finance +451377,Agriculture,Agriculture +448745,Economic Development,Economic Development +461841,Industry,Industry +476338,International Trade,International Trade +457891,Labour,Labour +462630,Small Business,Small Business +438448,Budget,Budget +438448,Climate,Climate +435164,Economic Development,Economic Development +445114,Infrastructure,Infrastructure +438448,Municipalities,Municipalities +474914,Taxation and Finance,Taxation and Finance +433286,Employment and Training,Employment and Training +434873,International Development,International Development +459960,International Relations,International Relations +464555,Health,Health +432891,Defence,Defence +434216,Consumer Issues,Consumer Issues +526988,Transportation,Transportation +526988,Immigration,Immigration +526988,International Trade,International Trade +433266,Health,Health +436113,Health,Health +436114,Labour,Labour +436111,Taxation and Finance,Taxation and Finance +461847,Health,Health +485817,Small Business,Small Business +470428,Economic Development,Economic Development +467319,Taxation and Finance,Taxation and Finance +467318,Taxation and Finance,Taxation and Finance +474915,Taxation and Finance,Taxation and Finance +433284,Employment and Training,Employment and Training +433281,Employment and Training,Employment and Training +433287,Employment and Training,Employment and Training +434871,International Development,International Development +433813,International Development,International Development +479072,International Development,International Development +469806,International Development,International Development +466511,International Development,International Development +466510,International Development,International Development +459960,International Development,International Development +459959,International Development,International Development +458001,International Development,International Development +456859,International Development,International Development +452232,International Development,International Development +449104,International Development,International Development +446921,International Development,International Development +446920,International Development,International Development +441696,International Development,International Development +434878,International Development,International Development +434876,International Development,International Development +434874,International Development,International Development +459959,International Relations,International Relations +458001,International Relations,International Relations +441696,International Relations,International Relations +434878,International Relations,International Relations +434876,International Relations,International Relations +434874,International Relations,International Relations +434873,International Relations,International Relations +434871,International Relations,International Relations +433823,International Relations,International Relations +433820,International Relations,International Relations +466511,International Relations,International Relations +466510,International Relations,International Relations +463642,International Relations,International Relations +459624,Health,Health +457552,Health,Health +455437,Health,Health +450119,Health,Health +436381,Health,Health +436379,Health,Health +492402,Health,Health +475582,Health,Health +464556,Health,Health +434214,Consumer Issues,Consumer Issues +432893,Consumer Issues,Consumer Issues +469831,Consumer Issues,Consumer Issues +466459,Consumer Issues,Consumer Issues +462765,Consumer Issues,Consumer Issues +456726,Consumer Issues,Consumer Issues +454066,Consumer Issues,Consumer Issues +451019,Consumer Issues,Consumer Issues +434222,Consumer Issues,Consumer Issues +509690,International Trade,International Trade +436112,Health,Health +436111,Health,Health +436114,Health,Health +436112,Labour,Labour +448425,Taxation and Finance,Taxation and Finance +436114,Taxation and Finance,Taxation and Finance +436113,Taxation and Finance,Taxation and Finance +436112,Taxation and Finance,Taxation and Finance +456610,Health,Health +453534,Health,Health +446332,Health,Health +440528,Health,Health +436135,Health,Health +432933,Health,Health +470418,Economic Development,Economic Development +465223,Economic Development,Economic Development +544025,Economic Development,Economic Development +543826,Economic Development,Economic Development +543817,Economic Development,Economic Development +543531,Economic Development,Economic Development +540097,Economic Development,Economic Development +540092,Economic Development,Economic Development +540087,Economic Development,Economic Development +540086,Economic Development,Economic Development +540082,Economic Development,Economic Development +537213,Economic Development,Economic Development +535425,Economic Development,Economic Development +532459,Economic Development,Economic Development +532403,Economic Development,Economic Development +529340,Economic Development,Economic Development +525848,Economic Development,Economic Development +525038,Economic Development,Economic Development +525037,Economic Development,Economic Development +525032,Economic Development,Economic Development +525031,Economic Development,Economic Development +516898,Economic Development,Economic Development +516886,Economic Development,Economic Development +516709,Economic Development,Economic Development +515135,Economic Development,Economic Development +514770,Economic Development,Economic Development +514768,Economic Development,Economic Development +514767,Economic Development,Economic Development +514763,Economic Development,Economic Development +514762,Economic Development,Economic Development +514514,Economic Development,Economic Development +494443,Economic Development,Economic Development +494442,Economic Development,Economic Development +493848,Economic Development,Economic Development +492280,Economic Development,Economic Development +492110,Economic Development,Economic Development +492108,Economic Development,Economic Development +488594,Economic Development,Economic Development +486998,Economic Development,Economic Development +486997,Economic Development,Economic Development +484445,Economic Development,Economic Development +483952,Economic Development,Economic Development +483951,Economic Development,Economic Development +481138,Economic Development,Economic Development +481137,Economic Development,Economic Development +479099,Economic Development,Economic Development +479097,Economic Development,Economic Development +479096,Economic Development,Economic Development +475937,Economic Development,Economic Development +475527,Economic Development,Economic Development +472841,Economic Development,Economic Development +472839,Economic Development,Economic Development +470629,Economic Development,Economic Development +470627,Economic Development,Economic Development +470625,Economic Development,Economic Development +470621,Economic Development,Economic Development +470619,Economic Development,Economic Development +470618,Economic Development,Economic Development +470439,Economic Development,Economic Development +470438,Economic Development,Economic Development +470437,Economic Development,Economic Development +470436,Economic Development,Economic Development +470435,Economic Development,Economic Development +470434,Economic Development,Economic Development +470433,Economic Development,Economic Development +470431,Economic Development,Economic Development +470430,Economic Development,Economic Development +440733,Economic Development,Economic Development +440731,Economic Development,Economic Development +454996,Economic Development,Economic Development +440738,Economic Development,Economic Development +440731,Health,Health +454996,Health,Health +440738,Health,Health +440736,Health,Health +440733,Housing,Housing +440731,Housing,Housing +454996,Housing,Housing +440738,Housing,Housing +440733,Infrastructure,Infrastructure +440731,Infrastructure,Infrastructure +440738,Infrastructure,Infrastructure +438929,Government Procurement,Government Procurement +438924,Government Procurement,Government Procurement +504187,Government Procurement,Government Procurement +452173,Government Procurement,Government Procurement +442110,Government Procurement,Government Procurement +438931,Government Procurement,Government Procurement +434382,Fisheries,Fisheries +434377,Fisheries,Fisheries +433083,Budget,Budget +433082,Budget,Budget +436347,Budget,Budget +436346,Budget,Budget +436345,Budget,Budget +433085,Budget,Budget +505363,Health,Health +467696,Health,Health +445229,Health,Health +433087,Health,Health +512735,Health,Health +448491,Energy,Energy +448491,International Relations,International Relations +448491,International Trade,International Trade +435370,Economic Development,Economic Development +435369,Economic Development,Economic Development +441353,Health,Health +434257,Economic Development,Economic Development +433215,Economic Development,Economic Development +433210,Industry,Industry +434257,Industry,Industry +433215,Mining,Mining +433210,Mining,Mining +434258,Mining,Mining +527194,Budget,Budget +527193,Budget,Budget +436318,Budget,Budget +436262,Budget,Budget +436261,Budget,Budget +436259,Budget,Budget +436258,Budget,Budget +436257,Budget,Budget +434415,Budget,Budget +434413,Budget,Budget +433186,Budget,Budget +433185,Budget,Budget +433184,Budget,Budget +433183,Budget,Budget +527192,Budget,Budget +527190,Budget,Budget +527189,Budget,Budget +527188,Budget,Budget +527187,Budget,Budget +527186,Budget,Budget +527184,Budget,Budget +527183,Budget,Budget +527182,Budget,Budget +526735,Budget,Budget +526733,Budget,Budget +526730,Budget,Budget +526728,Budget,Budget +512243,Budget,Budget +503302,Budget,Budget +503300,Budget,Budget +498420,Budget,Budget +498419,Budget,Budget +498417,Budget,Budget +498416,Budget,Budget +498415,Budget,Budget +498413,Budget,Budget +498411,Budget,Budget +498409,Budget,Budget +498407,Budget,Budget +498404,Budget,Budget +498403,Budget,Budget +498401,Budget,Budget +498397,Budget,Budget +498395,Budget,Budget +498394,Budget,Budget +498393,Budget,Budget +498391,Budget,Budget +498390,Budget,Budget +498387,Budget,Budget +498386,Budget,Budget +498384,Budget,Budget +498381,Budget,Budget +498308,Budget,Budget +498307,Budget,Budget +498306,Budget,Budget +498305,Budget,Budget +498303,Budget,Budget +498301,Budget,Budget +498300,Budget,Budget +498299,Budget,Budget +498297,Budget,Budget +498296,Budget,Budget +498295,Budget,Budget +498294,Budget,Budget +498293,Budget,Budget +498292,Budget,Budget +498291,Budget,Budget +498290,Budget,Budget +498289,Budget,Budget +498288,Budget,Budget +498285,Budget,Budget +498282,Budget,Budget +498279,Budget,Budget +498277,Budget,Budget +497739,Budget,Budget +497738,Budget,Budget +497737,Budget,Budget +497736,Budget,Budget +497735,Budget,Budget +497734,Budget,Budget +497733,Budget,Budget +497732,Budget,Budget +497731,Budget,Budget +497730,Budget,Budget +497729,Budget,Budget +497728,Budget,Budget +497727,Budget,Budget +497726,Budget,Budget +497725,Budget,Budget +497724,Budget,Budget +493913,Budget,Budget +487398,Budget,Budget +485934,Budget,Budget +481430,Budget,Budget +478483,Budget,Budget +465597,Budget,Budget +465596,Budget,Budget +465595,Budget,Budget +465594,Budget,Budget +465592,Budget,Budget +465590,Budget,Budget +465589,Budget,Budget +465584,Budget,Budget +465583,Budget,Budget +465582,Budget,Budget +465581,Budget,Budget +465580,Budget,Budget +465579,Budget,Budget +465578,Budget,Budget +465577,Budget,Budget +465576,Budget,Budget +465575,Budget,Budget +465574,Budget,Budget +465573,Budget,Budget +465572,Budget,Budget +465570,Budget,Budget +465569,Budget,Budget +465568,Budget,Budget +465567,Budget,Budget +465565,Budget,Budget +465564,Budget,Budget +465563,Budget,Budget +465562,Budget,Budget +465561,Budget,Budget +465560,Budget,Budget +465559,Budget,Budget +465557,Budget,Budget +465556,Budget,Budget +465555,Budget,Budget +465554,Budget,Budget +465553,Budget,Budget +465552,Budget,Budget +465551,Budget,Budget +465550,Budget,Budget +465549,Budget,Budget +465548,Budget,Budget +465547,Budget,Budget +465546,Budget,Budget +465545,Budget,Budget +465544,Budget,Budget +465543,Budget,Budget +465542,Budget,Budget +465541,Budget,Budget +465540,Budget,Budget +465539,Budget,Budget +465337,Budget,Budget +465336,Budget,Budget +462497,Budget,Budget +454480,Budget,Budget +454370,Budget,Budget +454369,Budget,Budget +454368,Budget,Budget +454367,Budget,Budget +454365,Budget,Budget +454360,Budget,Budget +454359,Budget,Budget +454358,Budget,Budget +454357,Budget,Budget +454356,Budget,Budget +454355,Budget,Budget +454354,Budget,Budget +454350,Budget,Budget +454349,Budget,Budget +454348,Budget,Budget +454347,Budget,Budget +454346,Budget,Budget +454344,Budget,Budget +454340,Budget,Budget +454337,Budget,Budget +453794,Budget,Budget +453793,Budget,Budget +453792,Budget,Budget +453791,Budget,Budget +453790,Budget,Budget +453789,Budget,Budget +453788,Budget,Budget +453787,Budget,Budget +453786,Budget,Budget +453785,Budget,Budget +453784,Budget,Budget +453783,Budget,Budget +453782,Budget,Budget +453781,Budget,Budget +453780,Budget,Budget +453779,Budget,Budget +453778,Budget,Budget +453777,Budget,Budget +453776,Budget,Budget +453775,Budget,Budget +453773,Budget,Budget +446107,Budget,Budget +446106,Budget,Budget +446105,Budget,Budget +446104,Budget,Budget +446103,Budget,Budget +530807,Budget,Budget +529983,Budget,Budget +529982,Budget,Budget +529981,Budget,Budget +529980,Budget,Budget +527443,Budget,Budget +527440,Budget,Budget +527439,Budget,Budget +527238,Budget,Budget +527237,Budget,Budget +527236,Budget,Budget +527234,Budget,Budget +527233,Budget,Budget +527232,Budget,Budget +527231,Budget,Budget +527230,Budget,Budget +527229,Budget,Budget +527227,Budget,Budget +527226,Budget,Budget +527225,Budget,Budget +527223,Budget,Budget +527222,Budget,Budget +527221,Budget,Budget +527220,Budget,Budget +527219,Budget,Budget +527218,Budget,Budget +527217,Budget,Budget +527216,Budget,Budget +527215,Budget,Budget +527214,Budget,Budget +527213,Budget,Budget +527212,Budget,Budget +527210,Budget,Budget +527209,Budget,Budget +527208,Budget,Budget +527207,Budget,Budget +527206,Budget,Budget +527205,Budget,Budget +527204,Budget,Budget +527203,Budget,Budget +527202,Budget,Budget +527201,Budget,Budget +527200,Budget,Budget +527199,Budget,Budget +527198,Budget,Budget +527197,Budget,Budget +436750,Climate,Climate +436748,Climate,Climate +440308,Climate,Climate +440307,Climate,Climate +440306,Climate,Climate +440305,Climate,Climate +440304,Climate,Climate +440303,Climate,Climate +440302,Climate,Climate +436750,Defence,Defence +436748,Defence,Defence +440308,Defence,Defence +440307,Defence,Defence +440306,Defence,Defence +440305,Defence,Defence +440304,Defence,Defence +440303,Defence,Defence +440302,Defence,Defence +436750,Economic Development,Economic Development +436748,Economic Development,Economic Development +440308,Economic Development,Economic Development +440307,Economic Development,Economic Development +440306,Economic Development,Economic Development +440305,Economic Development,Economic Development +440304,Economic Development,Economic Development +440303,Economic Development,Economic Development +440302,Economic Development,Economic Development +436750,Energy,Energy +436748,Energy,Energy +440308,Energy,Energy +440307,Energy,Energy +440306,Energy,Energy +440305,Energy,Energy +440304,Energy,Energy +440303,Energy,Energy +440302,Energy,Energy +436750,Environment,Environment +436748,Environment,Environment +440308,Environment,Environment +440307,Environment,Environment +440306,Environment,Environment +440305,Environment,Environment +440304,Environment,Environment +440303,Environment,Environment +440302,Environment,Environment +436750,Government Procurement,Government Procurement +436748,Government Procurement,Government Procurement +440308,Government Procurement,Government Procurement +440307,Government Procurement,Government Procurement +440306,Government Procurement,Government Procurement +440305,Government Procurement,Government Procurement +440304,Government Procurement,Government Procurement +440303,Government Procurement,Government Procurement +440302,Government Procurement,Government Procurement +436750,Industry,Industry +436748,Industry,Industry +440308,Industry,Industry +440307,Industry,Industry +440306,Industry,Industry +440305,Industry,Industry +440304,Industry,Industry +440303,Industry,Industry +440302,Industry,Industry +436750,Infrastructure,Infrastructure +436748,Infrastructure,Infrastructure +440308,Infrastructure,Infrastructure +440307,Infrastructure,Infrastructure +440306,Infrastructure,Infrastructure +440305,Infrastructure,Infrastructure +440304,Infrastructure,Infrastructure +440303,Infrastructure,Infrastructure +440302,Infrastructure,Infrastructure +436750,International Trade,International Trade +436748,International Trade,International Trade +440308,International Trade,International Trade +440307,International Trade,International Trade +440306,International Trade,International Trade +440305,International Trade,International Trade +440304,International Trade,International Trade +440303,International Trade,International Trade +440302,International Trade,International Trade +436750,Municipalities,Municipalities +436748,Municipalities,Municipalities +440308,Municipalities,Municipalities +440307,Municipalities,Municipalities +440306,Municipalities,Municipalities +440305,Municipalities,Municipalities +440304,Municipalities,Municipalities +440303,Municipalities,Municipalities +436750,Regional Development,Regional Development +436748,Regional Development,Regional Development +440308,Regional Development,Regional Development +440307,Regional Development,Regional Development +440306,Regional Development,Regional Development +440305,Regional Development,Regional Development +440304,Regional Development,Regional Development +440303,Regional Development,Regional Development +436750,Taxation and Finance,Taxation and Finance +436748,Taxation and Finance,Taxation and Finance +440308,Taxation and Finance,Taxation and Finance +440307,Taxation and Finance,Taxation and Finance +440306,Taxation and Finance,Taxation and Finance +440305,Taxation and Finance,Taxation and Finance +440304,Taxation and Finance,Taxation and Finance +440303,Taxation and Finance,Taxation and Finance +480727,International Trade,International Trade +453045,International Trade,International Trade +446262,Taxation and Finance,Taxation and Finance +442859,Taxation and Finance,Taxation and Finance +541114,Taxation and Finance,Taxation and Finance +489038,Taxation and Finance,Taxation and Finance +524648,Small Business,Small Business +524647,Small Business,Small Business +524582,Small Business,Small Business +524462,Small Business,Small Business +524378,Small Business,Small Business +524289,Small Business,Small Business +524288,Small Business,Small Business +520443,Small Business,Small Business +516968,Small Business,Small Business +516734,Small Business,Small Business +516555,Small Business,Small Business +516209,Small Business,Small Business +516176,Small Business,Small Business +512461,Small Business,Small Business +511253,Small Business,Small Business +511238,Small Business,Small Business +509511,Small Business,Small Business +509374,Small Business,Small Business +506383,Small Business,Small Business +506382,Small Business,Small Business +503711,Small Business,Small Business +503469,Small Business,Small Business +503468,Small Business,Small Business +503156,Small Business,Small Business +503155,Small Business,Small Business +502467,Small Business,Small Business +501778,Small Business,Small Business +501174,Small Business,Small Business +501173,Small Business,Small Business +501171,Small Business,Small Business +501169,Small Business,Small Business +501168,Small Business,Small Business +501167,Small Business,Small Business +500181,Small Business,Small Business +496933,Small Business,Small Business +492319,Small Business,Small Business +489038,Small Business,Small Business +488674,Small Business,Small Business +485720,Small Business,Small Business +485496,Small Business,Small Business +485462,Small Business,Small Business +484144,Small Business,Small Business +483957,Small Business,Small Business +483175,Small Business,Small Business +483075,Small Business,Small Business +483026,Small Business,Small Business +482927,Small Business,Small Business +482181,Small Business,Small Business +482175,Small Business,Small Business +481144,Small Business,Small Business +481014,Small Business,Small Business +480905,Small Business,Small Business +480727,Small Business,Small Business +480726,Small Business,Small Business +480480,Small Business,Small Business +480479,Small Business,Small Business +478997,Small Business,Small Business +478511,Small Business,Small Business +474136,Small Business,Small Business +471938,Small Business,Small Business +471937,Small Business,Small Business +465250,Small Business,Small Business +453127,Small Business,Small Business +453045,Small Business,Small Business +451219,Small Business,Small Business +450882,Small Business,Small Business +446262,Small Business,Small Business +544939,Small Business,Small Business +544938,Small Business,Small Business +544937,Small Business,Small Business +540457,Small Business,Small Business +536238,Small Business,Small Business +536237,Small Business,Small Business +536236,Small Business,Small Business +533704,Small Business,Small Business +533697,Small Business,Small Business +533696,Small Business,Small Business +533695,Small Business,Small Business +528440,Small Business,Small Business +527162,Small Business,Small Business +527117,Small Business,Small Business +527092,Small Business,Small Business +526780,Small Business,Small Business +526691,Small Business,Small Business +526526,Small Business,Small Business +525873,Small Business,Small Business +525871,Small Business,Small Business +501168,Tourism,Tourism +500181,Tourism,Tourism +488674,Tourism,Tourism +482927,Tourism,Tourism +482181,Tourism,Tourism +480726,Tourism,Tourism +480479,Tourism,Tourism +465250,Tourism,Tourism +453127,Tourism,Tourism +453045,Tourism,Tourism +451219,Tourism,Tourism +450882,Tourism,Tourism +446262,Tourism,Tourism +444418,Tourism,Tourism +442859,Tourism,Tourism +544939,Tourism,Tourism +544938,Tourism,Tourism +544937,Tourism,Tourism +544641,Tourism,Tourism +544640,Tourism,Tourism +536238,Tourism,Tourism +536237,Tourism,Tourism +536236,Tourism,Tourism +533704,Tourism,Tourism +533698,Tourism,Tourism +533697,Tourism,Tourism +533696,Tourism,Tourism +533695,Tourism,Tourism +527162,Tourism,Tourism +527092,Tourism,Tourism +526780,Tourism,Tourism +526691,Tourism,Tourism +526526,Tourism,Tourism +525873,Tourism,Tourism +525871,Tourism,Tourism +524862,Tourism,Tourism +524648,Tourism,Tourism +524647,Tourism,Tourism +524582,Tourism,Tourism +524462,Tourism,Tourism +524378,Tourism,Tourism +524289,Tourism,Tourism +524288,Tourism,Tourism +520991,Tourism,Tourism +520443,Tourism,Tourism +516968,Tourism,Tourism +516734,Tourism,Tourism +516555,Tourism,Tourism +516209,Tourism,Tourism +512461,Tourism,Tourism +511238,Tourism,Tourism +509511,Tourism,Tourism +509374,Tourism,Tourism +506441,Tourism,Tourism +506383,Tourism,Tourism +503469,Tourism,Tourism +503468,Tourism,Tourism +503156,Tourism,Tourism +503155,Tourism,Tourism +502467,Tourism,Tourism +501778,Tourism,Tourism +501174,Tourism,Tourism +501173,Tourism,Tourism +501171,Tourism,Tourism +533637,Economic Development,Economic Development +530112,Economic Development,Economic Development +445988,Economic Development,Economic Development +445987,Economic Development,Economic Development +444730,Economic Development,Economic Development +444151,Economic Development,Economic Development +442036,Economic Development,Economic Development +440905,Economic Development,Economic Development +440849,Economic Development,Economic Development +439859,Economic Development,Economic Development +520305,Economic Development,Economic Development +507477,Economic Development,Economic Development +500495,Economic Development,Economic Development +497430,Economic Development,Economic Development +495120,Economic Development,Economic Development +494465,Economic Development,Economic Development +480583,Economic Development,Economic Development +474249,Economic Development,Economic Development +465624,Economic Development,Economic Development +465341,Economic Development,Economic Development +463380,Economic Development,Economic Development +460793,Economic Development,Economic Development +459172,Economic Development,Economic Development +459171,Economic Development,Economic Development +456398,Economic Development,Economic Development +453893,Economic Development,Economic Development +453595,Economic Development,Economic Development +453206,Economic Development,Economic Development +451626,Economic Development,Economic Development +451625,Economic Development,Economic Development +451623,Economic Development,Economic Development +448971,Economic Development,Economic Development +542596,Economic Development,Economic Development +542406,Economic Development,Economic Development +540668,Economic Development,Economic Development +465624,Small Business,Small Business +465341,Small Business,Small Business +499919,Small Business,Small Business +433400,Economic Development,Economic Development +449572,Energy,Energy +449569,Energy,Energy +449568,Energy,Energy +449567,Energy,Energy +449566,Energy,Energy +449563,Energy,Energy +449558,Energy,Energy +447335,Energy,Energy +438462,Energy,Energy +438457,Energy,Energy +433418,Energy,Energy +454956,Energy,Energy +433442,Taxation and Finance,Taxation and Finance +433441,Taxation and Finance,Taxation and Finance +541658,Taxation and Finance,Taxation and Finance +529313,Taxation and Finance,Taxation and Finance +523229,Taxation and Finance,Taxation and Finance +518257,Taxation and Finance,Taxation and Finance +515879,Taxation and Finance,Taxation and Finance +515876,Taxation and Finance,Taxation and Finance +510760,Taxation and Finance,Taxation and Finance +505118,Taxation and Finance,Taxation and Finance +505112,Taxation and Finance,Taxation and Finance +505109,Taxation and Finance,Taxation and Finance +502180,Taxation and Finance,Taxation and Finance +502167,Taxation and Finance,Taxation and Finance +471504,Economic Development,Economic Development +536194,Industry,Industry +530550,Industry,Industry +487441,Infrastructure,Infrastructure +503746,Infrastructure,Infrastructure +474167,Taxation and Finance,Taxation and Finance +449241,International Trade,International Trade +447182,International Development,International Development +447181,International Development,International Development +447180,International Development,International Development +447179,International Development,International Development +441777,International Development,International Development +441776,International Development,International Development +437523,International Development,International Development +437521,International Development,International Development +437519,International Development,International Development +437517,International Development,International Development +435385,International Development,International Development +435384,International Development,International Development +435383,International Development,International Development +541441,International Development,International Development +539792,International Development,International Development +534614,International Development,International Development +531630,International Development,International Development +531626,International Development,International Development +531625,International Development,International Development +531621,International Development,International Development +531451,International Development,International Development +531450,International Development,International Development +531445,International Development,International Development +531090,International Development,International Development +528051,International Development,International Development +528048,International Development,International Development +525341,International Development,International Development +525339,International Development,International Development +525338,International Development,International Development +525336,International Development,International Development +525334,International Development,International Development +523413,International Development,International Development +519026,International Development,International Development +517156,International Development,International Development +512397,International Development,International Development +510801,International Development,International Development +507781,International Development,International Development +507779,International Development,International Development +504920,International Development,International Development +504919,International Development,International Development +504917,International Development,International Development +504916,International Development,International Development +504910,International Development,International Development +504815,International Development,International Development +499975,International Development,International Development +499973,International Development,International Development +499972,International Development,International Development +499971,International Development,International Development +499970,International Development,International Development +499969,International Development,International Development +495419,International Development,International Development +495418,International Development,International Development +493423,International Development,International Development +489593,International Development,International Development +487541,International Development,International Development +484150,International Development,International Development +483915,International Development,International Development +483913,International Development,International Development +483903,International Development,International Development +482028,International Development,International Development +482026,International Development,International Development +479419,International Development,International Development +479418,International Development,International Development +477691,International Development,International Development +477690,International Development,International Development +477688,International Development,International Development +475208,International Development,International Development +475207,International Development,International Development +475205,International Development,International Development +475204,International Development,International Development +469836,International Development,International Development +469834,International Development,International Development +469832,International Development,International Development +467813,International Development,International Development +467127,International Development,International Development +467122,International Development,International Development +467118,International Development,International Development +467115,International Development,International Development +467113,International Development,International Development +464407,International Development,International Development +464404,International Development,International Development +464402,International Development,International Development +462387,International Development,International Development +462386,International Development,International Development +462385,International Development,International Development +461818,International Development,International Development +459196,International Development,International Development +458223,International Development,International Development +456597,International Development,International Development +451639,International Development,International Development +451638,International Development,International Development +445892,Health,Health +434885,Health,Health +451455,Health,Health +451451,Health,Health +448598,Health,Health +445892,Justice and Law Enforcement,Justice and Law Enforcement +434885,Justice and Law Enforcement,Justice and Law Enforcement +451455,Justice and Law Enforcement,Justice and Law Enforcement +451451,Justice and Law Enforcement,Justice and Law Enforcement +440035,Taxation and Finance,Taxation and Finance +440034,Taxation and Finance,Taxation and Finance +451449,Health,Health +438656,Health,Health +457525,Agriculture,Agriculture +457523,Agriculture,Agriculture +466351,Agriculture,Agriculture +457525,Economic Development,Economic Development +457523,Economic Development,Economic Development +466351,Economic Development,Economic Development +466338,Economic Development,Economic Development +457539,Agriculture,Agriculture +457521,Agriculture,Agriculture +457541,Economic Development,Economic Development +457521,Economic Development,Economic Development +435727,Energy,Energy +496425,Consumer Issues,Consumer Issues +496424,Consumer Issues,Consumer Issues +471498,Consumer Issues,Consumer Issues +469520,Consumer Issues,Consumer Issues +444864,Consumer Issues,Consumer Issues +433701,Consumer Issues,Consumer Issues +523479,Consumer Issues,Consumer Issues +523478,Consumer Issues,Consumer Issues +469520,Economic Development,Economic Development +433701,Economic Development,Economic Development +523478,Economic Development,Economic Development +496426,Economic Development,Economic Development +496425,Economic Development,Economic Development +496424,Economic Development,Economic Development +446414,Health,Health +446413,Health,Health +500390,Industry,Industry +484953,Industry,Industry +435169,International Trade,International Trade +499805,International Trade,International Trade +455805,International Trade,International Trade +451185,International Trade,International Trade +446411,International Trade,International Trade +440560,International Trade,International Trade +534861,Environment,Environment +432978,Constitutional Issues,Constitutional Issues +440736,Economic Development,Economic Development +440733,Health,Health +440736,Housing,Housing +440736,Infrastructure,Infrastructure +435495,Agriculture,Agriculture +433054,International Trade,International Trade +438930,Government Procurement,Government Procurement +434383,Fisheries,Fisheries +473963,Fisheries,Fisheries +473963,Regional Development,Regional Development +445881,Economic Development,Economic Development +445881,Research and Development,Research and Development +433084,Budget,Budget +510409,Health,Health +448829,Energy,Energy +448829,International Relations,International Relations +448829,International Trade,International Trade +433140,Employment and Training,Employment and Training +435373,Defence,Defence +435372,Economic Development,Economic Development +435368,Government Procurement,Government Procurement +435371,Industry,Industry +438464,Agriculture,Agriculture +451841,Consumer Issues,Consumer Issues +451841,Employment and Training,Employment and Training +438464,Environment,Environment +451841,Health,Health +451841,Industry,Industry +451841,Intellectual Property,Intellectual Property +434258,Economic Development,Economic Development +433211,Industry,Industry +434258,International Relations,International Relations +433215,International Trade,International Trade +434257,Mining,Mining +527195,Budget,Budget +440305,Agriculture,Agriculture +440300,Climate,Climate +440300,Defence,Defence +440300,Economic Development,Economic Development +440300,Energy,Energy +440300,Environment,Environment +440300,Government Procurement,Government Procurement +440300,Industry,Industry +440300,Infrastructure,Infrastructure +440300,International Trade,International Trade +440302,Municipalities,Municipalities +440302,Regional Development,Regional Development +440302,Taxation and Finance,Taxation and Finance +433281,Budget,Budget +433284,Budget,Budget +433286,Budget,Budget +433287,Budget,Budget +436599,Labour,Labour +436598,Tourism,Tourism +526691,International Trade,International Trade +450882,Taxation and Finance,Taxation and Finance +453457,Health,Health +524862,Small Business,Small Business +501169,Tourism,Tourism +445854,Justice and Law Enforcement,Justice and Law Enforcement +445988,Budget,Budget +533713,Economic Development,Economic Development +444151,Employment and Training,Employment and Training +465625,Small Business,Small Business +433400,Government Procurement,Government Procurement +467927,Economic Development,Economic Development +449574,Energy,Energy +433443,Taxation and Finance,Taxation and Finance +494939,Economic Development,Economic Development +538759,Industry,Industry +494939,Infrastructure,Infrastructure +500440,International Trade,International Trade +494939,Taxation and Finance,Taxation and Finance +433463,Industry,Industry +487910,Budget,Budget +449241,Industry,Industry +449241,Employment and Training,Employment and Training +449241,Labour,Labour +449241,Small Business,Small Business +454421,International Trade,International Trade +449241,Infrastructure,Infrastructure +449241,Economic Development,Economic Development +449647,International Development,International Development +436795,Justice and Law Enforcement,Justice and Law Enforcement +480840,Agriculture,Agriculture +448570,Health,Health +448598,Consumer Issues,Consumer Issues +448570,Justice and Law Enforcement,Justice and Law Enforcement +440036,Taxation and Finance,Taxation and Finance +451457,Health,Health +466338,Agriculture,Agriculture +457543,Economic Development,Economic Development +466344,Agriculture,Agriculture +466344,Economic Development,Economic Development +435727,Economic Development,Economic Development +437933,Energy,Energy +496426,Consumer Issues,Consumer Issues +471498,Economic Development,Economic Development +456063,Agriculture,Agriculture +456063,Economic Development,Economic Development +437929,Energy,Energy +456062,Agriculture,Agriculture +456062,Economic Development,Economic Development +446412,Economic Development,Economic Development +497218,Health,Health +446412,Industry,Industry +438361,International Trade,International Trade +446413,Research and Development,Research and Development +434552,Environment,Environment +445881,Climate,Climate +439631,Small Business,Small Business +439631,Financial Institutions,Financial Institutions +439631,Taxation and Finance,Taxation and Finance +439631,Budget,Budget +439631,Economic Development,Economic Development +434003,Environment,Environment +479263,Health,Health +456510,International Development,International Development +456510,Health,Health +456488,Intellectual Property,Intellectual Property +441428,Health,Health +455716,Environment,Environment +474755,Health,Health +543286,Health,Health +506425,Health,Health +486224,Health,Health +483876,Health,Health +481151,Health,Health +479264,Health,Health +448457,Intellectual Property,Intellectual Property +434050,Constitutional Issues,Constitutional Issues +457440,Constitutional Issues,Constitutional Issues +434096,Taxation and Finance,Taxation and Finance +434268,Climate,Climate +434267,Climate,Climate +458935,Climate,Climate +458934,Climate,Climate +458933,Climate,Climate +450870,Climate,Climate +450869,Climate,Climate +434268,Energy,Energy +434267,Energy,Energy +458935,Energy,Energy +458934,Energy,Energy +458933,Energy,Energy +450870,Energy,Energy +450869,Energy,Energy +434268,Environment,Environment +434267,Environment,Environment +458935,Environment,Environment +458934,Environment,Environment +458933,Environment,Environment +450870,Environment,Environment +450869,Environment,Environment +450869,Transportation,Transportation +450868,Transportation,Transportation +434268,Transportation,Transportation +434267,Transportation,Transportation +458935,Transportation,Transportation +458934,Transportation,Transportation +458933,Transportation,Transportation +449598,International Trade,International Trade +449597,International Trade,International Trade +448787,International Trade,International Trade +448644,International Trade,International Trade +456735,International Trade,International Trade +450701,International Trade,International Trade +450402,International Trade,International Trade +444444,Economic Development,Economic Development +434860,Energy,Energy +434295,Energy,Energy +532428,Energy,Energy +530779,Energy,Energy +526566,Energy,Energy +473668,Energy,Energy +459011,Energy,Energy +458363,Energy,Energy +458362,Energy,Energy +458210,Energy,Energy +456735,Energy,Energy +456723,Energy,Energy +456722,Energy,Energy +456721,Energy,Energy +456720,Energy,Energy +456719,Energy,Energy +456718,Energy,Energy +452739,Energy,Energy +451153,Energy,Energy +448360,Energy,Energy +446228,Energy,Energy +446227,Energy,Energy +444446,Energy,Energy +444444,Energy,Energy +440043,Energy,Energy +434863,Energy,Energy +434862,Energy,Energy +477222,Taxation and Finance,Taxation and Finance +476019,Taxation and Finance,Taxation and Finance +469884,Taxation and Finance,Taxation and Finance +460689,Taxation and Finance,Taxation and Finance +459472,Taxation and Finance,Taxation and Finance +459471,Taxation and Finance,Taxation and Finance +455816,Taxation and Finance,Taxation and Finance +452881,Taxation and Finance,Taxation and Finance +452880,Taxation and Finance,Taxation and Finance +452878,Taxation and Finance,Taxation and Finance +452876,Taxation and Finance,Taxation and Finance +452874,Taxation and Finance,Taxation and Finance +452873,Taxation and Finance,Taxation and Finance +452871,Taxation and Finance,Taxation and Finance +452869,Taxation and Finance,Taxation and Finance +452868,Taxation and Finance,Taxation and Finance +452867,Taxation and Finance,Taxation and Finance +452866,Taxation and Finance,Taxation and Finance +452862,Taxation and Finance,Taxation and Finance +452860,Taxation and Finance,Taxation and Finance +452857,Taxation and Finance,Taxation and Finance +452853,Taxation and Finance,Taxation and Finance +450081,Taxation and Finance,Taxation and Finance +447881,Taxation and Finance,Taxation and Finance +445281,Taxation and Finance,Taxation and Finance +443685,Taxation and Finance,Taxation and Finance +443682,Taxation and Finance,Taxation and Finance +441119,Taxation and Finance,Taxation and Finance +441118,Taxation and Finance,Taxation and Finance +441117,Taxation and Finance,Taxation and Finance +441111,Taxation and Finance,Taxation and Finance +441098,Taxation and Finance,Taxation and Finance +441097,Taxation and Finance,Taxation and Finance +438720,Taxation and Finance,Taxation and Finance +438718,Taxation and Finance,Taxation and Finance +438716,Taxation and Finance,Taxation and Finance +438714,Taxation and Finance,Taxation and Finance +438708,Taxation and Finance,Taxation and Finance +438703,Taxation and Finance,Taxation and Finance +438699,Taxation and Finance,Taxation and Finance +435795,Taxation and Finance,Taxation and Finance +435793,Taxation and Finance,Taxation and Finance +435791,Taxation and Finance,Taxation and Finance +435790,Taxation and Finance,Taxation and Finance +435789,Taxation and Finance,Taxation and Finance +435788,Taxation and Finance,Taxation and Finance +435787,Taxation and Finance,Taxation and Finance +435786,Taxation and Finance,Taxation and Finance +435784,Taxation and Finance,Taxation and Finance +435783,Taxation and Finance,Taxation and Finance +435781,Taxation and Finance,Taxation and Finance +435780,Taxation and Finance,Taxation and Finance +435779,Taxation and Finance,Taxation and Finance +435777,Taxation and Finance,Taxation and Finance +435775,Taxation and Finance,Taxation and Finance +435764,Taxation and Finance,Taxation and Finance +435761,Taxation and Finance,Taxation and Finance +435760,Taxation and Finance,Taxation and Finance +435758,Taxation and Finance,Taxation and Finance +541671,Taxation and Finance,Taxation and Finance +540064,Taxation and Finance,Taxation and Finance +537932,Taxation and Finance,Taxation and Finance +537930,Taxation and Finance,Taxation and Finance +537928,Taxation and Finance,Taxation and Finance +537927,Taxation and Finance,Taxation and Finance +537925,Taxation and Finance,Taxation and Finance +537924,Taxation and Finance,Taxation and Finance +534888,Taxation and Finance,Taxation and Finance +534886,Taxation and Finance,Taxation and Finance +534880,Taxation and Finance,Taxation and Finance +534871,Taxation and Finance,Taxation and Finance +534866,Taxation and Finance,Taxation and Finance +519133,Taxation and Finance,Taxation and Finance +517095,Taxation and Finance,Taxation and Finance +517094,Taxation and Finance,Taxation and Finance +515529,Taxation and Finance,Taxation and Finance +513997,Taxation and Finance,Taxation and Finance +513996,Taxation and Finance,Taxation and Finance +512334,Taxation and Finance,Taxation and Finance +512333,Taxation and Finance,Taxation and Finance +512332,Taxation and Finance,Taxation and Finance +512331,Taxation and Finance,Taxation and Finance +510334,Taxation and Finance,Taxation and Finance +510332,Taxation and Finance,Taxation and Finance +510330,Taxation and Finance,Taxation and Finance +507103,Taxation and Finance,Taxation and Finance +504094,Taxation and Finance,Taxation and Finance +504093,Taxation and Finance,Taxation and Finance +504092,Taxation and Finance,Taxation and Finance +501560,Taxation and Finance,Taxation and Finance +501559,Taxation and Finance,Taxation and Finance +498314,Taxation and Finance,Taxation and Finance +495434,Taxation and Finance,Taxation and Finance +490784,Taxation and Finance,Taxation and Finance +490776,Taxation and Finance,Taxation and Finance +486399,Taxation and Finance,Taxation and Finance +486398,Taxation and Finance,Taxation and Finance +486397,Taxation and Finance,Taxation and Finance +486395,Taxation and Finance,Taxation and Finance +481753,Taxation and Finance,Taxation and Finance +480239,Taxation and Finance,Taxation and Finance +480236,Taxation and Finance,Taxation and Finance +480235,Taxation and Finance,Taxation and Finance +480234,Taxation and Finance,Taxation and Finance +537933,Taxation and Finance,Taxation and Finance +534860,Taxation and Finance,Taxation and Finance +435742,Taxation and Finance,Taxation and Finance +435738,Taxation and Finance,Taxation and Finance +517081,Taxation and Finance,Taxation and Finance +515525,Taxation and Finance,Taxation and Finance +513993,Taxation and Finance,Taxation and Finance +512335,Taxation and Finance,Taxation and Finance +510327,Taxation and Finance,Taxation and Finance +510325,Taxation and Finance,Taxation and Finance +507102,Taxation and Finance,Taxation and Finance +507100,Taxation and Finance,Taxation and Finance +504091,Taxation and Finance,Taxation and Finance +504090,Taxation and Finance,Taxation and Finance +504089,Taxation and Finance,Taxation and Finance +504088,Taxation and Finance,Taxation and Finance +504086,Taxation and Finance,Taxation and Finance +501558,Taxation and Finance,Taxation and Finance +501557,Taxation and Finance,Taxation and Finance +495431,Taxation and Finance,Taxation and Finance +490771,Taxation and Finance,Taxation and Finance +490747,Taxation and Finance,Taxation and Finance +486403,Taxation and Finance,Taxation and Finance +486402,Taxation and Finance,Taxation and Finance +486401,Taxation and Finance,Taxation and Finance +486400,Taxation and Finance,Taxation and Finance +484417,Taxation and Finance,Taxation and Finance +481747,Taxation and Finance,Taxation and Finance +480258,Taxation and Finance,Taxation and Finance +480256,Taxation and Finance,Taxation and Finance +480255,Taxation and Finance,Taxation and Finance +480254,Taxation and Finance,Taxation and Finance +480245,Taxation and Finance,Taxation and Finance +477224,Taxation and Finance,Taxation and Finance +477223,Taxation and Finance,Taxation and Finance +476016,Taxation and Finance,Taxation and Finance +476013,Taxation and Finance,Taxation and Finance +476010,Taxation and Finance,Taxation and Finance +473448,Taxation and Finance,Taxation and Finance +473443,Taxation and Finance,Taxation and Finance +473436,Taxation and Finance,Taxation and Finance +469887,Taxation and Finance,Taxation and Finance +469885,Taxation and Finance,Taxation and Finance +461344,Taxation and Finance,Taxation and Finance +455798,Taxation and Finance,Taxation and Finance +452883,Taxation and Finance,Taxation and Finance +452830,Taxation and Finance,Taxation and Finance +452816,Taxation and Finance,Taxation and Finance +452814,Taxation and Finance,Taxation and Finance +452813,Taxation and Finance,Taxation and Finance +452810,Taxation and Finance,Taxation and Finance +452808,Taxation and Finance,Taxation and Finance +452807,Taxation and Finance,Taxation and Finance +452801,Taxation and Finance,Taxation and Finance +452775,Taxation and Finance,Taxation and Finance +452774,Taxation and Finance,Taxation and Finance +452763,Taxation and Finance,Taxation and Finance +452757,Taxation and Finance,Taxation and Finance +447878,Taxation and Finance,Taxation and Finance +443681,Taxation and Finance,Taxation and Finance +441127,Taxation and Finance,Taxation and Finance +441125,Taxation and Finance,Taxation and Finance +441124,Taxation and Finance,Taxation and Finance +441123,Taxation and Finance,Taxation and Finance +441122,Taxation and Finance,Taxation and Finance +441121,Taxation and Finance,Taxation and Finance +438729,Taxation and Finance,Taxation and Finance +438727,Taxation and Finance,Taxation and Finance +438726,Taxation and Finance,Taxation and Finance +438724,Taxation and Finance,Taxation and Finance +438723,Taxation and Finance,Taxation and Finance +541670,Taxation and Finance,Taxation and Finance +537938,Taxation and Finance,Taxation and Finance +537936,Taxation and Finance,Taxation and Finance +537935,Taxation and Finance,Taxation and Finance +435056,Transportation,Transportation +544696,Labour,Labour +467332,Budget,Budget +467327,Budget,Budget +543109,Climate,Climate +543108,Climate,Climate +467350,Climate,Climate +467349,Climate,Climate +441752,Climate,Climate +543119,Climate,Climate +543117,Climate,Climate +543115,Climate,Climate +543112,Climate,Climate +438032,Economic Development,Economic Development +438027,Economic Development,Economic Development +543117,Economic Development,Economic Development +543115,Economic Development,Economic Development +543112,Economic Development,Economic Development +543109,Economic Development,Economic Development +543108,Economic Development,Economic Development +533801,Economic Development,Economic Development +533793,Economic Development,Economic Development +533790,Economic Development,Economic Development +529020,Economic Development,Economic Development +529015,Economic Development,Economic Development +518283,Economic Development,Economic Development +514262,Economic Development,Economic Development +513373,Economic Development,Economic Development +513372,Economic Development,Economic Development +513371,Economic Development,Economic Development +513370,Economic Development,Economic Development +511236,Economic Development,Economic Development +511234,Economic Development,Economic Development +511232,Economic Development,Economic Development +511230,Economic Development,Economic Development +508927,Economic Development,Economic Development +501894,Economic Development,Economic Development +499365,Economic Development,Economic Development +499360,Economic Development,Economic Development +493589,Economic Development,Economic Development +493586,Economic Development,Economic Development +490965,Economic Development,Economic Development +488066,Economic Development,Economic Development +488062,Economic Development,Economic Development +471063,Economic Development,Economic Development +471058,Economic Development,Economic Development +470483,Economic Development,Economic Development +467344,Economic Development,Economic Development +467342,Economic Development,Economic Development +467335,Economic Development,Economic Development +467329,Economic Development,Economic Development +443891,Economic Development,Economic Development +438039,Economic Development,Economic Development +438037,Economic Development,Economic Development +438036,Economic Development,Economic Development +543112,Employment and Training,Employment and Training +543109,Employment and Training,Employment and Training +543108,Employment and Training,Employment and Training +467329,Energy,Energy +467327,Energy,Energy +447868,Energy,Energy +443891,Energy,Energy +441752,Energy,Energy +441751,Energy,Energy +441618,Energy,Energy +438039,Energy,Energy +438037,Energy,Energy +438036,Energy,Energy +438034,Energy,Energy +438032,Energy,Energy +438027,Energy,Energy +543119,Energy,Energy +543117,Energy,Energy +543115,Energy,Energy +543112,Energy,Energy +543111,Energy,Energy +543109,Energy,Energy +543108,Energy,Energy +542927,Energy,Energy +539473,Energy,Energy +537283,Energy,Energy +537282,Energy,Energy +537281,Energy,Energy +533809,Energy,Energy +533808,Energy,Energy +533801,Energy,Energy +533793,Energy,Energy +533790,Energy,Energy +533782,Energy,Energy +529020,Energy,Energy +529015,Energy,Energy +522837,Energy,Energy +518283,Energy,Energy +514262,Energy,Energy +513373,Energy,Energy +513372,Energy,Energy +513371,Energy,Energy +513370,Energy,Energy +511236,Energy,Energy +511234,Energy,Energy +511232,Energy,Energy +511230,Energy,Energy +508927,Energy,Energy +501894,Energy,Energy +499365,Energy,Energy +499360,Energy,Energy +495138,Energy,Energy +493589,Energy,Energy +493586,Energy,Energy +490965,Energy,Energy +488066,Energy,Energy +488062,Energy,Energy +472831,Energy,Energy +472830,Energy,Energy +470484,Energy,Energy +470483,Energy,Energy +467350,Energy,Energy +467349,Energy,Energy +467342,Energy,Energy +467335,Energy,Energy +529020,Environment,Environment +529015,Environment,Environment +438034,Environment,Environment +438032,Environment,Environment +438027,Environment,Environment +522837,Environment,Environment +518283,Environment,Environment +513373,Environment,Environment +513372,Environment,Environment +513371,Environment,Environment +513370,Environment,Environment +511236,Environment,Environment +508927,Environment,Environment +501894,Environment,Environment +447868,Environment,Environment +443891,Environment,Environment +441752,Environment,Environment +438036,Environment,Environment +543119,Environment,Environment +543115,Environment,Environment +543112,Environment,Environment +543111,Environment,Environment +543109,Environment,Environment +438032,Fisheries,Fisheries +438027,Fisheries,Fisheries +438036,Fisheries,Fisheries +438032,Industry,Industry +438027,Industry,Industry +447868,Industry,Industry +443891,Industry,Industry +441751,Industry,Industry +441618,Industry,Industry +438039,Industry,Industry +438037,Industry,Industry +438036,Industry,Industry +511230,Infrastructure,Infrastructure +501894,Infrastructure,Infrastructure +542927,Infrastructure,Infrastructure +539473,Infrastructure,Infrastructure +533809,Infrastructure,Infrastructure +533808,Infrastructure,Infrastructure +533801,Infrastructure,Infrastructure +533793,Infrastructure,Infrastructure +533790,Infrastructure,Infrastructure +533782,Infrastructure,Infrastructure +518283,Infrastructure,Infrastructure +514262,Infrastructure,Infrastructure +513373,Infrastructure,Infrastructure +513372,Infrastructure,Infrastructure +513371,Infrastructure,Infrastructure +513370,Infrastructure,Infrastructure +511236,Infrastructure,Infrastructure +511234,Infrastructure,Infrastructure +543112,International Trade,International Trade +543109,International Trade,International Trade +438037,International Trade,International Trade +472831,Taxation and Finance,Taxation and Finance +543109,Taxation and Finance,Taxation and Finance +456656,Defence,Defence +453911,Defence,Defence +437324,Defence,Defence +520169,Defence,Defence +520164,Defence,Defence +514751,Defence,Defence +514750,Defence,Defence +514050,Defence,Defence +513170,Defence,Defence +513165,Defence,Defence +511483,Defence,Defence +499572,Defence,Defence +499554,Defence,Defence +458193,Defence,Defence +487812,Economic Development,Economic Development +484408,Economic Development,Economic Development +458193,Economic Development,Economic Development +514751,Economic Development,Economic Development +514750,Economic Development,Economic Development +514050,Economic Development,Economic Development +499572,Economic Development,Economic Development +457380,Government Procurement,Government Procurement +456656,Government Procurement,Government Procurement +453911,Government Procurement,Government Procurement +437324,Government Procurement,Government Procurement +437321,Government Procurement,Government Procurement +520169,Government Procurement,Government Procurement +520164,Government Procurement,Government Procurement +514751,Government Procurement,Government Procurement +514750,Government Procurement,Government Procurement +514050,Government Procurement,Government Procurement +513170,Government Procurement,Government Procurement +513165,Government Procurement,Government Procurement +511483,Government Procurement,Government Procurement +499572,Government Procurement,Government Procurement +499554,Government Procurement,Government Procurement +513165,Industry,Industry +499554,Industry,Industry +487812,Industry,Industry +484408,Industry,Industry +458193,Industry,Industry +456656,Industry,Industry +453911,Industry,Industry +520169,Industry,Industry +520164,Industry,Industry +514751,Industry,Industry +514750,Industry,Industry +514050,Industry,Industry +448841,Health,Health +448840,Health,Health +448841,Industry,Industry +448840,Industry,Industry +448908,Industry,Industry +434129,Economic Development,Economic Development +434129,International Trade,International Trade +434332,Consumer Issues,Consumer Issues +437945,Economic Development,Economic Development +436405,Economic Development,Economic Development +437949,Economic Development,Economic Development +444539,Energy,Energy +437733,Energy,Energy +543700,Budget,Budget +464086,Consumer Issues,Consumer Issues +464082,Consumer Issues,Consumer Issues +453193,Consumer Issues,Consumer Issues +453191,Consumer Issues,Consumer Issues +446417,Consumer Issues,Consumer Issues +436932,Consumer Issues,Consumer Issues +458965,Economic Development,Economic Development +453193,Economic Development,Economic Development +446417,Economic Development,Economic Development +436932,Economic Development,Economic Development +543700,Economic Development,Economic Development +464092,Economic Development,Economic Development +464086,Economic Development,Economic Development +464082,Economic Development,Economic Development +436932,Financial Institutions,Financial Institutions +543700,Financial Institutions,Financial Institutions +464086,Financial Institutions,Financial Institutions +464082,Financial Institutions,Financial Institutions +460879,Financial Institutions,Financial Institutions +458965,Financial Institutions,Financial Institutions +453193,Financial Institutions,Financial Institutions +453191,Financial Institutions,Financial Institutions +464082,Industry,Industry +543700,Industry,Industry +458965,Industry,Industry +453193,Industry,Industry +453191,Industry,Industry +446417,Industry,Industry +436932,Industry,Industry +460879,International Trade,International Trade +453193,International Trade,International Trade +446417,Security,Security +446417,Small Business,Small Business +543700,Small Business,Small Business +436932,Small Business,Small Business +464092,Small Business,Small Business +464086,Small Business,Small Business +464082,Small Business,Small Business +453193,Small Business,Small Business +453193,Tourism,Tourism +453191,Tourism,Tourism +464092,Tourism,Tourism +464086,Tourism,Tourism +446374,Budget,Budget +436560,Education,Education +456667,Education,Education +456666,Education,Education +456665,Education,Education +456664,Education,Education +446375,Education,Education +446374,Education,Education +446373,Education,Education +446372,Education,Education +444160,Education,Education +436563,Education,Education +436561,International Development,International Development +436560,International Development,International Development +456667,International Development,International Development +456666,International Development,International Development +456665,International Development,International Development +456664,International Development,International Development +446375,International Development,International Development +446374,International Development,International Development +446373,International Development,International Development +446372,International Development,International Development +444160,International Development,International Development +448453,Economic Development,Economic Development +448454,Energy,Energy +448453,Energy,Energy +444134,Energy,Energy +444133,Energy,Energy +448454,Infrastructure,Infrastructure +467314,Consumer Issues,Consumer Issues +447340,Consumer Issues,Consumer Issues +441350,Consumer Issues,Consumer Issues +441348,Consumer Issues,Consumer Issues +438454,Consumer Issues,Consumer Issues +438451,Consumer Issues,Consumer Issues +441350,Employment and Training,Employment and Training +441348,Employment and Training,Employment and Training +467314,Employment and Training,Employment and Training +438454,Immigration,Immigration +438451,Immigration,Immigration +538322,Immigration,Immigration +519486,Immigration,Immigration +495423,Immigration,Immigration +495258,Immigration,Immigration +484754,Immigration,Immigration +467314,Immigration,Immigration +447340,Immigration,Immigration +441350,Immigration,Immigration +434890,Employment and Training,Employment and Training +434890,Health,Health +434850,Health,Health +435414,Health,Health +434890,Education,Education +434850,Education,Education +435414,Education,Education +444530,Housing,Housing +440806,Defence,Defence +440804,Defence,Defence +463629,Defence,Defence +463628,Defence,Defence +463627,Defence,Defence +463626,Defence,Defence +463625,Defence,Defence +454464,Defence,Defence +454463,Defence,Defence +454460,Defence,Defence +454459,Defence,Defence +451232,Defence,Defence +449271,Defence,Defence +444697,Defence,Defence +444692,Defence,Defence +444691,Defence,Defence +444690,Defence,Defence +444689,Defence,Defence +444688,Defence,Defence +440806,Economic Development,Economic Development +440804,Economic Development,Economic Development +463629,Economic Development,Economic Development +463628,Economic Development,Economic Development +463627,Economic Development,Economic Development +463626,Economic Development,Economic Development +463625,Economic Development,Economic Development +454464,Economic Development,Economic Development +454463,Economic Development,Economic Development +454460,Economic Development,Economic Development +454459,Economic Development,Economic Development +454458,Economic Development,Economic Development +451232,Economic Development,Economic Development +449271,Economic Development,Economic Development +444697,Economic Development,Economic Development +444692,Economic Development,Economic Development +444691,Economic Development,Economic Development +444690,Economic Development,Economic Development +444689,Economic Development,Economic Development +444688,Economic Development,Economic Development +440806,Employment and Training,Employment and Training +440804,Employment and Training,Employment and Training +454464,Employment and Training,Employment and Training +454463,Employment and Training,Employment and Training +454460,Employment and Training,Employment and Training +454459,Employment and Training,Employment and Training +454458,Employment and Training,Employment and Training +451232,Employment and Training,Employment and Training +449271,Employment and Training,Employment and Training +444697,Employment and Training,Employment and Training +444692,Employment and Training,Employment and Training +444691,Employment and Training,Employment and Training +444690,Employment and Training,Employment and Training +444689,Employment and Training,Employment and Training +463629,Government Procurement,Government Procurement +463628,Government Procurement,Government Procurement +463627,Government Procurement,Government Procurement +463625,Government Procurement,Government Procurement +454464,Government Procurement,Government Procurement +454463,Government Procurement,Government Procurement +454460,Government Procurement,Government Procurement +454459,Government Procurement,Government Procurement +454458,Government Procurement,Government Procurement +451232,Government Procurement,Government Procurement +449271,Government Procurement,Government Procurement +444697,Government Procurement,Government Procurement +444692,Government Procurement,Government Procurement +444691,Government Procurement,Government Procurement +444690,Government Procurement,Government Procurement +444689,Government Procurement,Government Procurement +444688,Government Procurement,Government Procurement +443078,Government Procurement,Government Procurement +440806,Government Procurement,Government Procurement +449271,Industry,Industry +444697,Industry,Industry +444692,Industry,Industry +444691,Industry,Industry +444690,Industry,Industry +444689,Industry,Industry +444688,Industry,Industry +443078,Industry,Industry +440806,Industry,Industry +440804,Industry,Industry +463629,Industry,Industry +463628,Industry,Industry +463627,Industry,Industry +463626,Industry,Industry +454464,Industry,Industry +454463,Industry,Industry +454460,Industry,Industry +454459,Industry,Industry +454458,Industry,Industry +440806,Regional Development,Regional Development +440804,Regional Development,Regional Development +463629,Regional Development,Regional Development +463628,Regional Development,Regional Development +463627,Regional Development,Regional Development +463626,Regional Development,Regional Development +463625,Regional Development,Regional Development +454464,Regional Development,Regional Development +454463,Regional Development,Regional Development +454460,Regional Development,Regional Development +454459,Regional Development,Regional Development +454458,Regional Development,Regional Development +451232,Regional Development,Regional Development +449271,Regional Development,Regional Development +444697,Regional Development,Regional Development +444692,Regional Development,Regional Development +444691,Regional Development,Regional Development +444690,Regional Development,Regional Development +444689,Regional Development,Regional Development +444688,Regional Development,Regional Development +444688,Transportation,Transportation +445680,International Development,International Development +439500,International Development,International Development +457080,International Development,International Development +445680,Education,Education +439500,Education,Education +457080,Education,Education +474715,Employment and Training,Employment and Training +435492,Employment and Training,Employment and Training +541181,Employment and Training,Employment and Training +531454,Employment and Training,Employment and Training +437055,Energy,Energy +437054,Energy,Energy +434299,Research and Development,Research and Development +434338,Education,Education +437419,Small Business,Small Business +434338,Small Business,Small Business +437419,Education,Education +434339,Education,Education +497254,Education,Education +446520,Education,Education +437430,Education,Education +434340,Education,Education +503556,Education,Education +463519,Education,Education +451495,Education,Education +443066,Education,Education +434340,Small Business,Small Business +448252,Economic Development,Economic Development +448251,Economic Development,Economic Development +448257,Economic Development,Economic Development +448256,Economic Development,Economic Development +448252,Industry,Industry +448251,Industry,Industry +448257,Industry,Industry +448256,Industry,Industry +448252,Infrastructure,Infrastructure +448251,Infrastructure,Infrastructure +448257,Infrastructure,Infrastructure +448256,Infrastructure,Infrastructure +448252,International Trade,International Trade +448251,International Trade,International Trade +448257,International Trade,International Trade +448256,International Trade,International Trade +448254,International Trade,International Trade +448252,Justice and Law Enforcement,Justice and Law Enforcement +448251,Justice and Law Enforcement,Justice and Law Enforcement +448257,Justice and Law Enforcement,Justice and Law Enforcement +448256,Justice and Law Enforcement,Justice and Law Enforcement +448252,Labour,Labour +448251,Labour,Labour +448257,Labour,Labour +448256,Labour,Labour +448252,Taxation and Finance,Taxation and Finance +448251,Taxation and Finance,Taxation and Finance +448257,Taxation and Finance,Taxation and Finance +448256,Taxation and Finance,Taxation and Finance +448252,Transportation,Transportation +448251,Transportation,Transportation +448257,Transportation,Transportation +448256,Transportation,Transportation +448255,Transportation,Transportation +471020,Labour,Labour +464668,Labour,Labour +515828,Labour,Labour +471045,Labour,Labour +471041,Labour,Labour +471041,Transportation,Transportation +444858,Economic Development,Economic Development +444807,Economic Development,Economic Development +540978,Economic Development,Economic Development +485596,Economic Development,Economic Development +434425,Constitutional Issues,Constitutional Issues +434499,Forestry,Forestry +434941,Industry,Industry +434903,Industry,Industry +446409,Industry,Industry +446408,Industry,Industry +445747,Industry,Industry +444903,Industry,Industry +444225,Industry,Industry +444179,Industry,Industry +434941,International Trade,International Trade +434903,International Trade,International Trade +451885,International Trade,International Trade +451881,International Trade,International Trade +448889,International Trade,International Trade +446409,International Trade,International Trade +446408,International Trade,International Trade +445747,International Trade,International Trade +444903,International Trade,International Trade +444225,International Trade,International Trade +444179,International Trade,International Trade +436128,Consumer Issues,Consumer Issues +436126,Consumer Issues,Consumer Issues +436608,Consumer Issues,Consumer Issues +436601,Consumer Issues,Consumer Issues +436128,Health,Health +436126,Health,Health +436608,Health,Health +436601,Health,Health +436600,Health,Health +434548,Taxation and Finance,Taxation and Finance +434552,Climate,Climate +516346,Economic Development,Economic Development +436610,Health,Health +436609,Health,Health +436802,Health,Health +436610,Taxation and Finance,Taxation and Finance +436609,Taxation and Finance,Taxation and Finance +436802,Taxation and Finance,Taxation and Finance +445938,Budget,Budget +445937,Budget,Budget +454270,Budget,Budget +451561,Budget,Budget +451559,Budget,Budget +451558,Budget,Budget +451556,Budget,Budget +445937,Economic Development,Economic Development +517591,Economic Development,Economic Development +513300,Economic Development,Economic Development +483560,Economic Development,Economic Development +466773,Economic Development,Economic Development +466771,Economic Development,Economic Development +466769,Economic Development,Economic Development +466766,Economic Development,Economic Development +466765,Economic Development,Economic Development +466764,Economic Development,Economic Development +451561,Economic Development,Economic Development +451559,Economic Development,Economic Development +451558,Economic Development,Economic Development +451556,Economic Development,Economic Development +451554,Economic Development,Economic Development +448369,Economic Development,Economic Development +517591,Education,Education +513300,Education,Education +483560,Education,Education +466773,Education,Education +466771,Education,Education +466769,Education,Education +466766,Education,Education +466765,Education,Education +466764,Education,Education +466761,Education,Education +463499,Education,Education +454270,Education,Education +451561,Education,Education +451559,Education,Education +451558,Education,Education +451556,Education,Education +451554,Education,Education +451556,Employment and Training,Employment and Training +451554,Employment and Training,Employment and Training +466773,Employment and Training,Employment and Training +466771,Employment and Training,Employment and Training +466769,Employment and Training,Employment and Training +466766,Employment and Training,Employment and Training +466765,Employment and Training,Employment and Training +466764,Employment and Training,Employment and Training +466761,Employment and Training,Employment and Training +454270,Employment and Training,Employment and Training +451561,Employment and Training,Employment and Training +451559,Employment and Training,Employment and Training +451556,Environment,Environment +451554,Environment,Environment +466766,Environment,Environment +451561,Environment,Environment +451559,Environment,Environment +445938,Immigration,Immigration +445937,Immigration,Immigration +466765,Immigration,Immigration +463499,Immigration,Immigration +451561,Immigration,Immigration +451559,Immigration,Immigration +451558,Immigration,Immigration +451556,Immigration,Immigration +451556,Intellectual Property,Intellectual Property +451554,Intellectual Property,Intellectual Property +466773,Intellectual Property,Intellectual Property +451561,Intellectual Property,Intellectual Property +451559,Intellectual Property,Intellectual Property +466761,Research and Development,Research and Development +466773,Research and Development,Research and Development +466771,Research and Development,Research and Development +466766,Research and Development,Research and Development +466765,Research and Development,Research and Development +445937,Small Business,Small Business +517591,Small Business,Small Business +483560,Small Business,Small Business +466773,Small Business,Small Business +454270,Small Business,Small Business +448369,Small Business,Small Business +462697,Health,Health +450309,Health,Health +475579,Health,Health +473314,Health,Health +470837,Health,Health +467394,Health,Health +467389,Health,Health +467387,Health,Health +467386,Health,Health +467382,Health,Health +467381,Health,Health +467380,Health,Health +467379,Health,Health +467377,Health,Health +473650,Financial Institutions,Financial Institutions +473650,Taxation and Finance,Taxation and Finance +449356,Small Business,Small Business +445728,Small Business,Small Business +443174,Small Business,Small Business +438803,Small Business,Small Business +434653,Small Business,Small Business +533283,Small Business,Small Business +533282,Small Business,Small Business +513648,Small Business,Small Business +509094,Small Business,Small Business +472039,Small Business,Small Business +472038,Small Business,Small Business +472033,Small Business,Small Business +469590,Small Business,Small Business +459085,Small Business,Small Business +510268,Industry,Industry +510267,Industry,Industry +437702,Industry,Industry +437701,Industry,Industry +437698,Industry,Industry +437697,Industry,Industry +437696,Industry,Industry +437695,Industry,Industry +437694,Industry,Industry +437693,Industry,Industry +437692,Industry,Industry +437691,Industry,Industry +437690,Industry,Industry +437689,Industry,Industry +437688,Industry,Industry +437687,Industry,Industry +437686,Industry,Industry +437684,Industry,Industry +437683,Industry,Industry +437682,Industry,Industry +507720,Industry,Industry +507719,Industry,Industry +507718,Industry,Industry +504255,Industry,Industry +504254,Industry,Industry +504253,Industry,Industry +504252,Industry,Industry +504250,Industry,Industry +504249,Industry,Industry +501313,Industry,Industry +501312,Industry,Industry +501309,Industry,Industry +498619,Industry,Industry +498618,Industry,Industry +498617,Industry,Industry +498616,Industry,Industry +498615,Industry,Industry +495626,Industry,Industry +495624,Industry,Industry +493156,Industry,Industry +490898,Industry,Industry +486683,Industry,Industry +486682,Industry,Industry +486681,Industry,Industry +483897,Industry,Industry +481377,Industry,Industry +481376,Industry,Industry +481374,Industry,Industry +481373,Industry,Industry +476996,Industry,Industry +467486,Industry,Industry +467483,Industry,Industry +467480,Industry,Industry +467477,Industry,Industry +467472,Industry,Industry +467467,Industry,Industry +467462,Industry,Industry +467461,Industry,Industry +460331,Industry,Industry +459281,Industry,Industry +459280,Industry,Industry +459279,Industry,Industry +459200,Industry,Industry +457395,Industry,Industry +456082,Industry,Industry +450002,Industry,Industry +449992,Industry,Industry +449982,Industry,Industry +537587,Industry,Industry +537586,Industry,Industry +537585,Industry,Industry +537584,Industry,Industry +537583,Industry,Industry +537582,Industry,Industry +537581,Industry,Industry +537580,Industry,Industry +535025,Industry,Industry +535022,Industry,Industry +535021,Industry,Industry +535020,Industry,Industry +535014,Industry,Industry +522726,Industry,Industry +522724,Industry,Industry +513966,Industry,Industry +513261,Industry,Industry +513260,Industry,Industry +513258,Industry,Industry +513257,Industry,Industry +513255,Industry,Industry +481374,Economic Development,Economic Development +467480,Economic Development,Economic Development +456082,Economic Development,Economic Development +450002,Economic Development,Economic Development +449992,Economic Development,Economic Development +448004,Economic Development,Economic Development +448001,Economic Development,Economic Development +448000,Economic Development,Economic Development +443462,Economic Development,Economic Development +443461,Economic Development,Economic Development +443460,Economic Development,Economic Development +442671,Economic Development,Economic Development +442666,Economic Development,Economic Development +481377,Economic Development,Economic Development +535014,Environment,Environment +522724,Environment,Environment +513966,Environment,Environment +513261,Environment,Environment +513258,Environment,Environment +513257,Environment,Environment +513255,Environment,Environment +513253,Environment,Environment +510268,Environment,Environment +510267,Environment,Environment +507720,Environment,Environment +507719,Environment,Environment +504255,Environment,Environment +504254,Environment,Environment +504253,Environment,Environment +504252,Environment,Environment +504250,Environment,Environment +501313,Environment,Environment +498618,Environment,Environment +498616,Environment,Environment +495625,Environment,Environment +495623,Environment,Environment +490898,Environment,Environment +486684,Environment,Environment +486682,Environment,Environment +486681,Environment,Environment +483897,Environment,Environment +481375,Environment,Environment +481373,Environment,Environment +479193,Environment,Environment +479192,Environment,Environment +479191,Environment,Environment +476998,Environment,Environment +470063,Environment,Environment +470062,Environment,Environment +470061,Environment,Environment +467472,Environment,Environment +467223,Environment,Environment +467222,Environment,Environment +464615,Environment,Environment +464613,Environment,Environment +462489,Environment,Environment +462488,Environment,Environment +461199,Environment,Environment +459086,Environment,Environment +457392,Environment,Environment +450000,Environment,Environment +449998,Environment,Environment +449995,Environment,Environment +449994,Environment,Environment +447647,Environment,Environment +442674,Environment,Environment +437701,Environment,Environment +539013,Environment,Environment +537587,Environment,Environment +537586,Environment,Environment +537585,Environment,Environment +537584,Environment,Environment +537583,Environment,Environment +537582,Environment,Environment +537581,Environment,Environment +537580,Environment,Environment +535028,Environment,Environment +535027,Environment,Environment +467486,International Trade,International Trade +467477,International Trade,International Trade +462489,International Trade,International Trade +462488,International Trade,International Trade +461198,International Trade,International Trade +459766,International Trade,International Trade +459278,International Trade,International Trade +459277,International Trade,International Trade +458340,International Trade,International Trade +458338,International Trade,International Trade +457394,International Trade,International Trade +456081,International Trade,International Trade +456080,International Trade,International Trade +456079,International Trade,International Trade +456078,International Trade,International Trade +456077,International Trade,International Trade +456076,International Trade,International Trade +456075,International Trade,International Trade +456074,International Trade,International Trade +456073,International Trade,International Trade +452696,International Trade,International Trade +452695,International Trade,International Trade +452694,International Trade,International Trade +452693,International Trade,International Trade +452691,International Trade,International Trade +452690,International Trade,International Trade +452689,International Trade,International Trade +452688,International Trade,International Trade +452687,International Trade,International Trade +452686,International Trade,International Trade +452685,International Trade,International Trade +452684,International Trade,International Trade +452683,International Trade,International Trade +450006,International Trade,International Trade +450001,International Trade,International Trade +449981,International Trade,International Trade +449978,International Trade,International Trade +449976,International Trade,International Trade +449973,International Trade,International Trade +449972,International Trade,International Trade +448012,International Trade,International Trade +448011,International Trade,International Trade +448009,International Trade,International Trade +448008,International Trade,International Trade +448004,International Trade,International Trade +448003,International Trade,International Trade +448001,International Trade,International Trade +448000,International Trade,International Trade +447998,International Trade,International Trade +447993,International Trade,International Trade +447991,International Trade,International Trade +447989,International Trade,International Trade +447987,International Trade,International Trade +447649,International Trade,International Trade +447645,International Trade,International Trade +447643,International Trade,International Trade +447641,International Trade,International Trade +447639,International Trade,International Trade +445688,International Trade,International Trade +445687,International Trade,International Trade +445686,International Trade,International Trade +445684,International Trade,International Trade +443462,International Trade,International Trade +443460,International Trade,International Trade +442678,International Trade,International Trade +442677,International Trade,International Trade +442675,International Trade,International Trade +442673,International Trade,International Trade +442670,International Trade,International Trade +442669,International Trade,International Trade +442665,International Trade,International Trade +442663,International Trade,International Trade +442661,International Trade,International Trade +442660,International Trade,International Trade +437704,International Trade,International Trade +437703,International Trade,International Trade +437701,International Trade,International Trade +437700,International Trade,International Trade +437699,International Trade,International Trade +437697,International Trade,International Trade +437696,International Trade,International Trade +437695,International Trade,International Trade +437694,International Trade,International Trade +437693,International Trade,International Trade +437692,International Trade,International Trade +437691,International Trade,International Trade +437690,International Trade,International Trade +437689,International Trade,International Trade +437688,International Trade,International Trade +437687,International Trade,International Trade +437686,International Trade,International Trade +437684,International Trade,International Trade +437683,International Trade,International Trade +437682,International Trade,International Trade +437680,International Trade,International Trade +437678,International Trade,International Trade +437676,International Trade,International Trade +437643,International Trade,International Trade +437642,International Trade,International Trade +437640,International Trade,International Trade +437639,International Trade,International Trade +437638,International Trade,International Trade +437637,International Trade,International Trade +437636,International Trade,International Trade +437635,International Trade,International Trade +437634,International Trade,International Trade +539013,International Trade,International Trade +535028,International Trade,International Trade +535027,International Trade,International Trade +535025,International Trade,International Trade +535022,International Trade,International Trade +522724,International Trade,International Trade +504248,International Trade,International Trade +501309,International Trade,International Trade +495625,International Trade,International Trade +436800,Energy,Energy +436800,Industry,Industry +465746,Agriculture,Agriculture +465745,Agriculture,Agriculture +441228,Agriculture,Agriculture +441224,Agriculture,Agriculture +438257,Agriculture,Agriculture +438256,Agriculture,Agriculture +498710,Agriculture,Agriculture +498709,Agriculture,Agriculture +498706,Agriculture,Agriculture +498704,Agriculture,Agriculture +498703,Agriculture,Agriculture +498702,Agriculture,Agriculture +498701,Agriculture,Agriculture +466271,Agriculture,Agriculture +465749,Agriculture,Agriculture +498702,Small Business,Small Business +498701,Small Business,Small Business +498710,Small Business,Small Business +498709,Small Business,Small Business +498706,Small Business,Small Business +498704,Small Business,Small Business +450491,Health,Health +448381,Health,Health +455412,Health,Health +437709,Intellectual Property,Intellectual Property +437708,Intellectual Property,Intellectual Property +440619,Industry,Industry +449782,Budget,Budget +449781,Budget,Budget +444346,Budget,Budget +444345,Budget,Budget +444341,Budget,Budget +444339,Budget,Budget +443822,Budget,Budget +443712,Budget,Budget +440784,Budget,Budget +440783,Budget,Budget +440782,Budget,Budget +440780,Budget,Budget +440778,Budget,Budget +440777,Budget,Budget +437551,Budget,Budget +470317,Budget,Budget +470315,Budget,Budget +467162,Budget,Budget +464150,Budget,Budget +461076,Budget,Budget +460045,Budget,Budget +460044,Budget,Budget +459469,Budget,Budget +457321,Budget,Budget +452661,Budget,Budget +452659,Budget,Budget +452658,Budget,Budget +452657,Budget,Budget +452653,Budget,Budget +452652,Budget,Budget +452650,Budget,Budget +452652,Economic Development,Economic Development +452650,Economic Development,Economic Development +449784,Economic Development,Economic Development +449783,Economic Development,Economic Development +449782,Economic Development,Economic Development +449781,Economic Development,Economic Development +444346,Economic Development,Economic Development +444345,Economic Development,Economic Development +444344,Economic Development,Economic Development +444341,Economic Development,Economic Development +444339,Economic Development,Economic Development +443822,Economic Development,Economic Development +443712,Economic Development,Economic Development +440784,Economic Development,Economic Development +440783,Economic Development,Economic Development +440782,Economic Development,Economic Development +440780,Economic Development,Economic Development +440778,Economic Development,Economic Development +440777,Economic Development,Economic Development +437551,Economic Development,Economic Development +515547,Economic Development,Economic Development +511295,Economic Development,Economic Development +511293,Economic Development,Economic Development +511291,Economic Development,Economic Development +505307,Economic Development,Economic Development +498485,Economic Development,Economic Development +498480,Economic Development,Economic Development +495522,Economic Development,Economic Development +495520,Economic Development,Economic Development +493488,Economic Development,Economic Development +470317,Economic Development,Economic Development +470315,Economic Development,Economic Development +464150,Economic Development,Economic Development +464149,Economic Development,Economic Development +461076,Economic Development,Economic Development +460045,Economic Development,Economic Development +460044,Economic Development,Economic Development +459469,Economic Development,Economic Development +457322,Economic Development,Economic Development +457321,Economic Development,Economic Development +457320,Economic Development,Economic Development +455005,Economic Development,Economic Development +452661,Economic Development,Economic Development +452659,Economic Development,Economic Development +452658,Economic Development,Economic Development +452657,Economic Development,Economic Development +440777,Employment and Training,Employment and Training +437551,Employment and Training,Employment and Training +470317,Employment and Training,Employment and Training +470315,Employment and Training,Employment and Training +464150,Employment and Training,Employment and Training +464149,Employment and Training,Employment and Training +461076,Employment and Training,Employment and Training +460045,Employment and Training,Employment and Training +460044,Employment and Training,Employment and Training +459469,Employment and Training,Employment and Training +457322,Employment and Training,Employment and Training +457321,Employment and Training,Employment and Training +457320,Employment and Training,Employment and Training +455005,Employment and Training,Employment and Training +452661,Employment and Training,Employment and Training +452659,Employment and Training,Employment and Training +452658,Employment and Training,Employment and Training +452657,Employment and Training,Employment and Training +452653,Employment and Training,Employment and Training +452652,Employment and Training,Employment and Training +452650,Employment and Training,Employment and Training +449783,Employment and Training,Employment and Training +449782,Employment and Training,Employment and Training +449781,Employment and Training,Employment and Training +444346,Employment and Training,Employment and Training +444345,Employment and Training,Employment and Training +444344,Employment and Training,Employment and Training +444341,Employment and Training,Employment and Training +444339,Employment and Training,Employment and Training +443822,Employment and Training,Employment and Training +443712,Employment and Training,Employment and Training +440784,Employment and Training,Employment and Training +440783,Employment and Training,Employment and Training +440782,Employment and Training,Employment and Training +440780,Employment and Training,Employment and Training +470317,Infrastructure,Infrastructure +470315,Infrastructure,Infrastructure +464150,Infrastructure,Infrastructure +464149,Infrastructure,Infrastructure +461076,Infrastructure,Infrastructure +460045,Infrastructure,Infrastructure +460044,Infrastructure,Infrastructure +459469,Infrastructure,Infrastructure +457322,Infrastructure,Infrastructure +457321,Infrastructure,Infrastructure +457320,Infrastructure,Infrastructure +455005,Infrastructure,Infrastructure +452661,Infrastructure,Infrastructure +452659,Infrastructure,Infrastructure +452658,Infrastructure,Infrastructure +452657,Infrastructure,Infrastructure +452653,Infrastructure,Infrastructure +452652,Infrastructure,Infrastructure +452650,Infrastructure,Infrastructure +449784,Infrastructure,Infrastructure +449783,Infrastructure,Infrastructure +449782,Infrastructure,Infrastructure +449781,Infrastructure,Infrastructure +444346,Infrastructure,Infrastructure +444345,Infrastructure,Infrastructure +444344,Infrastructure,Infrastructure +444341,Infrastructure,Infrastructure +444339,Infrastructure,Infrastructure +443822,Infrastructure,Infrastructure +443712,Infrastructure,Infrastructure +440784,Infrastructure,Infrastructure +440783,Infrastructure,Infrastructure +440782,Infrastructure,Infrastructure +440780,Infrastructure,Infrastructure +440778,Infrastructure,Infrastructure +440777,Infrastructure,Infrastructure +437551,Infrastructure,Infrastructure +515547,Infrastructure,Infrastructure +511295,Infrastructure,Infrastructure +511293,Infrastructure,Infrastructure +511291,Infrastructure,Infrastructure +505307,Infrastructure,Infrastructure +498485,Infrastructure,Infrastructure +498480,Infrastructure,Infrastructure +495522,Infrastructure,Infrastructure +495520,Infrastructure,Infrastructure +493488,Infrastructure,Infrastructure +490508,Infrastructure,Infrastructure +440777,Taxation and Finance,Taxation and Finance +437551,Taxation and Finance,Taxation and Finance +461076,Taxation and Finance,Taxation and Finance +459469,Taxation and Finance,Taxation and Finance +457321,Taxation and Finance,Taxation and Finance +452661,Taxation and Finance,Taxation and Finance +452659,Taxation and Finance,Taxation and Finance +452658,Taxation and Finance,Taxation and Finance +452657,Taxation and Finance,Taxation and Finance +452653,Taxation and Finance,Taxation and Finance +452652,Taxation and Finance,Taxation and Finance +452650,Taxation and Finance,Taxation and Finance +449783,Taxation and Finance,Taxation and Finance +449782,Taxation and Finance,Taxation and Finance +444346,Taxation and Finance,Taxation and Finance +444345,Taxation and Finance,Taxation and Finance +444341,Taxation and Finance,Taxation and Finance +444339,Taxation and Finance,Taxation and Finance +443822,Taxation and Finance,Taxation and Finance +443712,Taxation and Finance,Taxation and Finance +440784,Taxation and Finance,Taxation and Finance +440783,Taxation and Finance,Taxation and Finance +440782,Taxation and Finance,Taxation and Finance +440780,Taxation and Finance,Taxation and Finance +436800,Infrastructure,Infrastructure +465831,Economic Development,Economic Development +465830,Economic Development,Economic Development +496582,Economic Development,Economic Development +494481,Economic Development,Economic Development +494078,Economic Development,Economic Development +494077,Economic Development,Economic Development +494057,Economic Development,Economic Development +494055,Economic Development,Economic Development +494054,Economic Development,Economic Development +465834,Economic Development,Economic Development +465833,Economic Development,Economic Development +465831,Industry,Industry +465830,Industry,Industry +496582,Industry,Industry +494481,Industry,Industry +494078,Industry,Industry +494057,Industry,Industry +494055,Industry,Industry +494054,Industry,Industry +465834,Industry,Industry +465831,Regional Development,Regional Development +465830,Regional Development,Regional Development +496582,Regional Development,Regional Development +494481,Regional Development,Regional Development +494078,Regional Development,Regional Development +494077,Regional Development,Regional Development +465834,Regional Development,Regional Development +465833,Regional Development,Regional Development +477929,Economic Development,Economic Development +474880,Economic Development,Economic Development +474878,Economic Development,Economic Development +531992,Economic Development,Economic Development +526599,Economic Development,Economic Development +493614,Economic Development,Economic Development +493601,Economic Development,Economic Development +493596,Economic Development,Economic Development +491662,Economic Development,Economic Development +491660,Economic Development,Economic Development +491658,Economic Development,Economic Development +487745,Economic Development,Economic Development +487740,Economic Development,Economic Development +487738,Economic Development,Economic Development +487737,Economic Development,Economic Development +480327,Economic Development,Economic Development +439163,Economic Development,Economic Development +439160,Economic Development,Economic Development +442631,Economic Development,Economic Development +442630,Economic Development,Economic Development +442629,Economic Development,Economic Development +442628,Economic Development,Economic Development +442627,Economic Development,Economic Development +442626,Economic Development,Economic Development +442625,Economic Development,Economic Development +442624,Economic Development,Economic Development +439170,Economic Development,Economic Development +439169,Economic Development,Economic Development +439163,Employment and Training,Employment and Training +439160,Employment and Training,Employment and Training +442631,Employment and Training,Employment and Training +442630,Employment and Training,Employment and Training +442629,Employment and Training,Employment and Training +442628,Employment and Training,Employment and Training +442627,Employment and Training,Employment and Training +442626,Employment and Training,Employment and Training +442625,Employment and Training,Employment and Training +442624,Employment and Training,Employment and Training +439170,Employment and Training,Employment and Training +439169,Employment and Training,Employment and Training +442627,International Relations,International Relations +442626,International Relations,International Relations +439170,International Relations,International Relations +439169,International Relations,International Relations +439165,International Relations,International Relations +439160,International Relations,International Relations +442631,International Relations,International Relations +442630,International Relations,International Relations +442629,International Relations,International Relations +442624,Mining,Mining +439170,Mining,Mining +439169,Mining,Mining +439165,Mining,Mining +439163,Mining,Mining +439160,Mining,Mining +442631,Mining,Mining +442630,Mining,Mining +442629,Mining,Mining +442628,Mining,Mining +442627,Mining,Mining +442626,Mining,Mining +441433,Infrastructure,Infrastructure +441432,Infrastructure,Infrastructure +441440,Infrastructure,Infrastructure +441439,Infrastructure,Infrastructure +441437,Infrastructure,Infrastructure +441436,Infrastructure,Infrastructure +441439,Environment,Environment +441433,Economic Development,Economic Development +441432,Economic Development,Economic Development +441440,Economic Development,Economic Development +441439,Economic Development,Economic Development +441437,Economic Development,Economic Development +441436,Economic Development,Economic Development +441433,Tourism,Tourism +441432,Tourism,Tourism +441440,Tourism,Tourism +441439,Tourism,Tourism +441437,Tourism,Tourism +441436,Tourism,Tourism +436604,Infrastructure,Infrastructure +436604,Industry,Industry +436604,Transportation,Transportation +446229,Economic Development,Economic Development +444181,Economic Development,Economic Development +444181,Industry,Industry +436574,Industry,Industry +444181,Small Business,Small Business +436574,Small Business,Small Business +448986,Small Business,Small Business +498704,Economic Development,Economic Development +498702,Economic Development,Economic Development +498710,Economic Development,Economic Development +498709,Economic Development,Economic Development +498701,Environment,Environment +465749,Environment,Environment +466271,Health,Health +465749,Health,Health +498701,Internal Trade,Internal Trade +465746,International Trade,International Trade +465745,International Trade,International Trade +441228,International Trade,International Trade +441224,International Trade,International Trade +438257,International Trade,International Trade +438256,International Trade,International Trade +498709,International Trade,International Trade +498706,International Trade,International Trade +498704,International Trade,International Trade +498703,International Trade,International Trade +498702,International Trade,International Trade +466271,International Trade,International Trade +465749,International Trade,International Trade +446078,Immigration,Immigration +454504,International Trade,International Trade +454502,International Trade,International Trade +454406,International Trade,International Trade +454405,International Trade,International Trade +454404,International Trade,International Trade +454403,International Trade,International Trade +454402,International Trade,International Trade +454515,International Trade,International Trade +454509,International Trade,International Trade +527170,Agriculture,Agriculture +518622,Agriculture,Agriculture +457850,Agriculture,Agriculture +457848,Agriculture,Agriculture +437879,Agriculture,Agriculture +437855,Agriculture,Agriculture +514884,Research and Development,Research and Development +539359,Energy,Energy +436573,International Development,International Development +436572,International Development,International Development +453573,International Development,International Development +451887,International Development,International Development +450985,International Development,International Development +448891,International Relations,International Relations +535941,International Relations,International Relations +463168,International Relations,International Relations +462995,International Relations,International Relations +453573,International Relations,International Relations +450985,International Trade,International Trade +448891,International Trade,International Trade +535941,International Trade,International Trade +463168,International Trade,International Trade +462995,International Trade,International Trade +453573,International Trade,International Trade +501713,Climate,Climate +501710,Climate,Climate +463145,Climate,Climate +463144,Climate,Climate +454515,Climate,Climate +454509,Climate,Climate +454508,Climate,Climate +454504,Climate,Climate +454502,Climate,Climate +454405,Climate,Climate +454403,Climate,Climate +454402,Climate,Climate +537539,Climate,Climate +536870,Climate,Climate +536869,Climate,Climate +536868,Climate,Climate +536867,Climate,Climate +536866,Climate,Climate +536865,Climate,Climate +536851,Climate,Climate +536850,Climate,Climate +536849,Climate,Climate +536848,Climate,Climate +531307,Climate,Climate +531304,Climate,Climate +528743,Climate,Climate +525577,Climate,Climate +525555,Climate,Climate +519140,Climate,Climate +519139,Climate,Climate +519138,Climate,Climate +519137,Climate,Climate +515556,Climate,Climate +515555,Climate,Climate +513751,Climate,Climate +513750,Climate,Climate +512611,Climate,Climate +512609,Climate,Climate +512608,Climate,Climate +512607,Climate,Climate +512605,Climate,Climate +512603,Climate,Climate +512600,Climate,Climate +510778,Climate,Climate +510772,Climate,Climate +508580,Climate,Climate +508576,Climate,Climate +508575,Climate,Climate +517160,Employment and Training,Employment and Training +463146,Employment and Training,Employment and Training +463145,Employment and Training,Employment and Training +454515,Employment and Training,Employment and Training +454509,Employment and Training,Employment and Training +454508,Employment and Training,Employment and Training +454504,Employment and Training,Employment and Training +454502,Employment and Training,Employment and Training +454406,Employment and Training,Employment and Training +454405,Employment and Training,Employment and Training +454404,Employment and Training,Employment and Training +454403,Employment and Training,Employment and Training +508572,Energy,Energy +504884,Energy,Energy +501713,Energy,Energy +501710,Energy,Energy +471129,Energy,Energy +463146,Energy,Energy +463145,Energy,Energy +463144,Energy,Energy +463143,Energy,Energy +462233,Energy,Energy +459232,Energy,Energy +454515,Energy,Energy +454509,Energy,Energy +454508,Energy,Energy +454504,Energy,Energy +454502,Energy,Energy +454406,Energy,Energy +454405,Energy,Energy +454404,Energy,Energy +454403,Energy,Energy +454402,Energy,Energy +454396,Energy,Energy +447480,Energy,Energy +439779,Energy,Energy +439778,Energy,Energy +439777,Energy,Energy +439776,Energy,Energy +537539,Energy,Energy +536870,Energy,Energy +536869,Energy,Energy +536868,Energy,Energy +536867,Energy,Energy +536866,Energy,Energy +536865,Energy,Energy +536851,Energy,Energy +536850,Energy,Energy +536849,Energy,Energy +536848,Energy,Energy +531307,Energy,Energy +531304,Energy,Energy +528743,Energy,Energy +525577,Energy,Energy +525555,Energy,Energy +519140,Energy,Energy +519139,Energy,Energy +519138,Energy,Energy +519137,Energy,Energy +517159,Energy,Energy +515555,Energy,Energy +515553,Energy,Energy +513751,Energy,Energy +513750,Energy,Energy +512611,Energy,Energy +512609,Energy,Energy +512608,Energy,Energy +512607,Energy,Energy +512605,Energy,Energy +512603,Energy,Energy +512600,Energy,Energy +510778,Energy,Energy +510772,Energy,Energy +508580,Energy,Energy +508576,Energy,Energy +501713,Environment,Environment +501710,Environment,Environment +463145,Environment,Environment +463144,Environment,Environment +454515,Environment,Environment +454509,Environment,Environment +454508,Environment,Environment +454504,Environment,Environment +454406,Environment,Environment +454405,Environment,Environment +454404,Environment,Environment +454403,Environment,Environment +531307,Environment,Environment +531304,Environment,Environment +519137,Environment,Environment +517162,Environment,Environment +517161,Environment,Environment +517157,Environment,Environment +515556,Environment,Environment +515553,Environment,Environment +517159,Industry,Industry +471129,Industry,Industry +463146,Industry,Industry +463145,Industry,Industry +463144,Industry,Industry +463143,Industry,Industry +462233,Industry,Industry +454515,Industry,Industry +454509,Industry,Industry +454508,Industry,Industry +454504,Industry,Industry +454502,Industry,Industry +454406,Industry,Industry +454405,Industry,Industry +454404,Industry,Industry +454403,Industry,Industry +454402,Industry,Industry +545293,Industry,Industry +545290,Industry,Industry +542605,Industry,Industry +542602,Industry,Industry +542601,Industry,Industry +536870,Industry,Industry +536869,Industry,Industry +536868,Industry,Industry +536867,Industry,Industry +536866,Industry,Industry +536865,Industry,Industry +536851,Industry,Industry +536850,Industry,Industry +536849,Industry,Industry +536848,Industry,Industry +531307,Industry,Industry +531304,Industry,Industry +454403,Infrastructure,Infrastructure +454402,Infrastructure,Infrastructure +531307,Infrastructure,Infrastructure +531304,Infrastructure,Infrastructure +454515,Infrastructure,Infrastructure +454509,Infrastructure,Infrastructure +454508,Infrastructure,Infrastructure +454504,Infrastructure,Infrastructure +454502,Infrastructure,Infrastructure +454406,Infrastructure,Infrastructure +454405,Infrastructure,Infrastructure +451374,Agriculture,Agriculture +451373,Agriculture,Agriculture +461837,International Trade,International Trade +461835,International Trade,International Trade +451374,International Trade,International Trade +451374,Research and Development,Research and Development +451373,Research and Development,Research and Development +459988,Religion,Religion +459744,Religion,Religion +441345,Agriculture,Agriculture +434949,Agriculture,Agriculture +460536,Agriculture,Agriculture +458691,Agriculture,Agriculture +457198,Agriculture,Agriculture +441343,Agriculture,Agriculture +434951,Agriculture,Agriculture +443299,Constitutional Issues,Constitutional Issues +458979,Security,Security +485914,Budget,Budget +485914,Housing,Housing +485914,Taxation and Finance,Taxation and Finance +434097,Taxation and Finance,Taxation and Finance +450868,Climate,Climate +450868,Energy,Energy +450868,Environment,Environment +450870,Transportation,Transportation +440566,Financial Institutions,Financial Institutions +440566,Taxation and Finance,Taxation and Finance +449600,International Trade,International Trade +444446,Economic Development,Economic Development +434861,Energy,Energy +480224,Taxation and Finance,Taxation and Finance +537934,Taxation and Finance,Taxation and Finance +438043,Transportation,Transportation +434098,Labour,Labour +434168,Industry,Industry +442118,Research and Development,Research and Development +530663,Budget,Budget +543111,Climate,Climate +438034,Economic Development,Economic Development +471058,Employment and Training,Employment and Training +467332,Energy,Energy +533793,Environment,Environment +438034,Fisheries,Fisheries +438034,Industry,Industry +511232,Infrastructure,Infrastructure +543117,International Trade,International Trade +533787,Taxation and Finance,Taxation and Finance +438037,Transportation,Transportation +457380,Defence,Defence +499554,Economic Development,Economic Development +458193,Government Procurement,Government Procurement +513170,Industry,Industry +484408,International Trade,International Trade +484408,Regional Development,Regional Development +438009,Sports,Sports +438013,Sports,Sports +448908,Health,Health +448907,Industry,Industry +448907,International Trade,International Trade +434654,Economic Development,Economic Development +434654,International Trade,International Trade +434379,Consumer Issues,Consumer Issues +437948,Economic Development,Economic Development +444541,Energy,Energy +463377,International Trade,International Trade +437733,Economic Development,Economic Development +444540,Energy,Energy +464086,Budget,Budget +543700,Consumer Issues,Consumer Issues +460879,Economic Development,Economic Development +446417,Financial Institutions,Financial Institutions +464086,Industry,Industry +464086,International Trade,International Trade +453193,Security,Security +453191,Small Business,Small Business +464082,Tourism,Tourism +434144,Research and Development,Research and Development +434144,Economic Development,Economic Development +434144,Employment and Training,Employment and Training +434144,Small Business,Small Business +456666,Budget,Budget +436561,Education,Education +436563,International Development,International Development +448455,Economic Development,Economic Development +448455,Energy,Energy +444133,Environment,Environment +444134,Industry,Industry +448455,Infrastructure,Infrastructure +434204,Budget,Budget +434205,Budget,Budget +528641,Consumer Issues,Consumer Issues +447340,Employment and Training,Employment and Training +441348,Immigration,Immigration +435128,Industry,Industry +435128,Research and Development,Research and Development +435414,Employment and Training,Employment and Training +435128,Health,Health +435128,Education,Education +435414,Labour,Labour +443057,Employment and Training,Employment and Training +442896,Health,Health +444531,Housing,Housing +436173,Education,Education +436173,Health,Health +434247,International Relations,International Relations +443078,Defence,Defence +443078,Economic Development,Economic Development +444688,Employment and Training,Employment and Training +444689,Fisheries,Fisheries +440804,Government Procurement,Government Procurement +451232,Industry,Industry +443078,Regional Development,Regional Development +444689,Transportation,Transportation +448218,International Development,International Development +448218,Education,Education +439500,Budget,Budget +517007,Employment and Training,Employment and Training +437058,Small Business,Small Business +437058,Energy,Energy +437054,Research and Development,Research and Development +436652,Research and Development,Research and Development +463520,Education,Education +446520,Small Business,Small Business +437428,Education,Education +440792,Education,Education +443066,Small Business,Small Business +434341,Employment and Training,Employment and Training +434341,Regional Development,Regional Development +448253,Economic Development,Economic Development +448253,Industry,Industry +448253,Infrastructure,Infrastructure +448253,International Trade,International Trade +448253,Justice and Law Enforcement,Justice and Law Enforcement +448253,Labour,Labour +448253,Taxation and Finance,Taxation and Finance +448253,Transportation,Transportation +471037,Labour,Labour +513398,Transportation,Transportation +443418,Infrastructure,Infrastructure +434416,Security,Security +434417,Security,Security +434418,Security,Security +472465,Economic Development,Economic Development +457834,Constitutional Issues,Constitutional Issues +434425,Budget,Budget +434448,Labour,Labour +434448,Tourism,Tourism +434448,Employment and Training,Employment and Training +434472,Health,Health +462240,Forestry,Forestry +443673,Industry,Industry +443673,International Trade,International Trade +434500,Environment,Environment +436600,Consumer Issues,Consumer Issues +436442,Health,Health +457153,Taxation and Finance,Taxation and Finance +434550,Religion,Religion +458725,Climate,Climate +434576,Economic Development,Economic Development +434578,Economic Development,Economic Development +434583,Economic Development,Economic Development +436610,Economic Development,Economic Development +436799,Health,Health +436799,Taxation and Finance,Taxation and Finance +451554,Budget,Budget +466766,Climate,Climate +445938,Economic Development,Economic Development +448369,Education,Education +451558,Employment and Training,Employment and Training +451558,Environment,Environment +451554,Immigration,Immigration +451558,Intellectual Property,Intellectual Property +466769,Regional Development,Regional Development +466764,Research and Development,Research and Development +445938,Small Business,Small Business +464553,Health,Health +467377,Justice and Law Enforcement,Justice and Law Enforcement +505837,Financial Institutions,Financial Institutions +505837,Taxation and Finance,Taxation and Finance +449359,Small Business,Small Business +513253,Industry,Industry +461199,Climate,Climate +481376,Economic Development,Economic Development +535025,Environment,Environment +495623,International Trade,International Trade +436804,Energy,Energy +436804,Environment,Environment +436804,Industry,Industry +465747,Agriculture,Agriculture +498703,Small Business,Small Business +454319,Health,Health +437710,Intellectual Property,Intellectual Property +485637,Industry,Industry +449783,Budget,Budget +452653,Economic Development,Economic Development +440778,Employment and Training,Employment and Training +464150,Financial Institutions,Financial Institutions +490507,Infrastructure,Infrastructure +440778,Taxation and Finance,Taxation and Finance +436804,Infrastructure,Infrastructure +465832,Economic Development,Economic Development +465832,Industry,Industry +465832,Regional Development,Regional Development +480326,Economic Development,Economic Development +475985,Economic Development,Economic Development +439165,Economic Development,Economic Development +439165,Employment and Training,Employment and Training +442628,International Relations,International Relations +442625,Mining,Mining +441434,Infrastructure,Infrastructure +441440,Environment,Environment +441434,Economic Development,Economic Development +441434,Tourism,Tourism +436605,Infrastructure,Infrastructure +436605,Industry,Industry +436605,Transportation,Transportation +448986,Economic Development,Economic Development +446229,Industry,Industry +448986,Research and Development,Research and Development +446229,Small Business,Small Business +498706,Economic Development,Economic Development +498703,Environment,Environment +498710,Health,Health +498706,Internal Trade,Internal Trade +465747,International Trade,International Trade +465749,Research and Development,Research and Development +435744,International Trade,International Trade +442800,Economic Development,Economic Development +442800,Health,Health +442800,Industry,Industry +442800,Intellectual Property,Intellectual Property +442800,Taxation and Finance,Taxation and Finance +446079,Immigration,Immigration +454508,International Trade,International Trade +527171,Agriculture,Agriculture +437854,Research and Development,Research and Development +435838,Research and Development,Research and Development +516967,Taxation and Finance,Taxation and Finance +450985,Climate,Climate +436573,Economic Development,Economic Development +450985,Energy,Energy +448891,International Development,International Development +451887,International Relations,International Relations +451887,International Trade,International Trade +508572,Climate,Climate +454402,Employment and Training,Employment and Training +508575,Energy,Energy +504884,Environment,Environment +528743,Industry,Industry +454404,Infrastructure,Infrastructure +461837,Agriculture,Agriculture +451373,International Trade,International Trade +461835,Labour,Labour +461837,Research and Development,Research and Development +460417,Religion,Religion +434937,Environment,Environment +444454,Agriculture,Agriculture +447375,Agriculture,Agriculture +446869,Economic Development,Economic Development +442301,Employment and Training,Employment and Training +442301,Immigration,Immigration +438049,Fisheries,Fisheries +436348,Transportation,Transportation +435097,Security,Security +436567,Health,Health +436567,Consumer Issues,Consumer Issues +444621,Security,Security +446110,Housing,Housing +446110,Financial Institutions,Financial Institutions +435134,Defence,Defence +447336,Economic Development,Economic Development +435228,Mining,Mining +435228,Research and Development,Research and Development +473446,Environment,Environment +460410,Agriculture,Agriculture +457173,Agriculture,Agriculture +438048,Fisheries,Fisheries +438047,Fisheries,Fisheries +438053,Fisheries,Fisheries +436565,Health,Health +436564,Health,Health +436565,Consumer Issues,Consumer Issues +436564,Consumer Issues,Consumer Issues +446109,Housing,Housing +446108,Housing,Housing +440644,Housing,Housing +440643,Housing,Housing +440642,Housing,Housing +436929,Housing,Housing +465766,Housing,Housing +465765,Housing,Housing +465761,Housing,Housing +457995,Housing,Housing +453796,Housing,Housing +446113,Housing,Housing +446112,Housing,Housing +446111,Housing,Housing +446109,Financial Institutions,Financial Institutions +446108,Financial Institutions,Financial Institutions +465763,Financial Institutions,Financial Institutions +457994,Financial Institutions,Financial Institutions +446113,Financial Institutions,Financial Institutions +446112,Financial Institutions,Financial Institutions +446111,Financial Institutions,Financial Institutions +435224,Economic Development,Economic Development +477980,Economic Development,Economic Development +464262,Economic Development,Economic Development +457018,Economic Development,Economic Development +449587,Economic Development,Economic Development +449576,Economic Development,Economic Development +473420,Environment,Environment +468651,Environment,Environment +445676,Environment,Environment +445674,Environment,Environment +445379,Environment,Environment +445378,Environment,Environment +445376,Environment,Environment +445375,Environment,Environment +445374,Environment,Environment +445373,Environment,Environment +442469,Environment,Environment +437906,Environment,Environment +437905,Environment,Environment +437902,Environment,Environment +435233,Environment,Environment +466282,Environment,Environment +462376,Environment,Environment +462375,Environment,Environment +461897,Environment,Environment +458545,Environment,Environment +458543,Environment,Environment +451048,Environment,Environment +541251,Environment,Environment +537348,Environment,Environment +531316,Environment,Environment +531314,Environment,Environment +524510,Environment,Environment +521752,Environment,Environment +519467,Environment,Environment +519465,Environment,Environment +517054,Environment,Environment +515374,Environment,Environment +515372,Environment,Environment +515111,Environment,Environment +513737,Environment,Environment +511974,Environment,Environment +511973,Environment,Environment +508536,Environment,Environment +507943,Environment,Environment +507941,Environment,Environment +504326,Environment,Environment +497982,Environment,Environment +497981,Environment,Environment +492965,Environment,Environment +489637,Environment,Environment +486700,Environment,Environment +486697,Environment,Environment +484420,Environment,Environment +484416,Environment,Environment +479143,Environment,Environment +473465,Environment,Environment +519180,Labour,Labour +519178,Labour,Labour +499701,Labour,Labour +462882,Labour,Labour +462881,Labour,Labour +457536,Labour,Labour +457532,Labour,Labour +457530,Labour,Labour +456046,Labour,Labour +456045,Labour,Labour +456043,Labour,Labour +456042,Labour,Labour +456041,Labour,Labour +449748,Labour,Labour +449704,Labour,Labour +448177,Labour,Labour +448175,Labour,Labour +448172,Labour,Labour +448169,Labour,Labour +448166,Labour,Labour +438503,Labour,Labour +435339,Labour,Labour +435336,Labour,Labour +435335,Labour,Labour +435334,Labour,Labour +544156,Labour,Labour +544154,Labour,Labour +544146,Labour,Labour +541977,Labour,Labour +537952,Labour,Labour +537944,Labour,Labour +535894,Labour,Labour +523271,Labour,Labour +455480,Labour,Labour +470042,Labour,Labour +490433,Budget,Budget +461752,Budget,Budget +501759,Budget,Budget +498520,Budget,Budget +498518,Budget,Budget +449683,Consumer Issues,Consumer Issues +449682,Consumer Issues,Consumer Issues +466597,Employment and Training,Employment and Training +498517,Employment and Training,Employment and Training +466601,Employment and Training,Employment and Training +466600,Employment and Training,Employment and Training +466599,Employment and Training,Employment and Training +480179,Economic Development,Economic Development +436333,Security,Security +449444,Industry,Industry +436333,Industry,Industry +500094,Industry,Industry +469315,Industry,Industry +500094,Consumer Issues,Consumer Issues +449444,Consumer Issues,Consumer Issues +436100,Transportation,Transportation +436096,Transportation,Transportation +448851,Transportation,Transportation +446028,Transportation,Transportation +446027,Transportation,Transportation +440682,Transportation,Transportation +440680,Transportation,Transportation +440678,Transportation,Transportation +440641,Transportation,Transportation +461353,Environment,Environment +453141,Environment,Environment +516599,Environment,Environment +515975,Environment,Environment +515974,Environment,Environment +514346,Environment,Environment +513804,Environment,Environment +509744,Environment,Environment +503510,Environment,Environment +503508,Environment,Environment +503504,Environment,Environment +503213,Environment,Environment +503209,Environment,Environment +500930,Environment,Environment +500000,Environment,Environment +497292,Environment,Environment +496370,Environment,Environment +494469,Environment,Environment +494143,Environment,Environment +489416,Environment,Environment +488539,Environment,Environment +488528,Environment,Environment +486136,Environment,Environment +485497,Environment,Environment +481633,Environment,Environment +480988,Environment,Environment +480938,Environment,Environment +478402,Environment,Environment +477087,Environment,Environment +473859,Environment,Environment +471541,Environment,Environment +468840,Environment,Environment +468839,Environment,Environment +468728,Health,Health +468727,Health,Health +459396,Budget,Budget +438954,Budget,Budget +459399,Budget,Budget +459398,Budget,Budget +459397,Employment and Training,Employment and Training +459396,Employment and Training,Employment and Training +459399,Employment and Training,Employment and Training +444969,Municipalities,Municipalities +436284,Municipalities,Municipalities +436281,Municipalities,Municipalities +436278,Municipalities,Municipalities +436276,Municipalities,Municipalities +436276,Research and Development,Research and Development +436274,Research and Development,Research and Development +444974,Research and Development,Research and Development +444969,Research and Development,Research and Development +436284,Research and Development,Research and Development +436281,Research and Development,Research and Development +436280,Research and Development,Research and Development +436274,Transportation,Transportation +444974,Transportation,Transportation +436284,Transportation,Transportation +436281,Transportation,Transportation +436280,Transportation,Transportation +436278,Transportation,Transportation +468648,Economic Development,Economic Development +435714,Economic Development,Economic Development +544696,Economic Development,Economic Development +544695,Economic Development,Economic Development +538712,Economic Development,Economic Development +491587,Economic Development,Economic Development +491585,Economic Development,Economic Development +491575,Economic Development,Economic Development +491568,Economic Development,Economic Development +491562,Economic Development,Economic Development +491532,Economic Development,Economic Development +491517,Economic Development,Economic Development +491514,Economic Development,Economic Development +491509,Economic Development,Economic Development +491501,Economic Development,Economic Development +491499,Economic Development,Economic Development +491496,Economic Development,Economic Development +491494,Economic Development,Economic Development +491482,Economic Development,Economic Development +491454,Economic Development,Economic Development +491446,Economic Development,Economic Development +491438,Economic Development,Economic Development +491435,Economic Development,Economic Development +491433,Economic Development,Economic Development +491431,Economic Development,Economic Development +491407,Economic Development,Economic Development +491396,Economic Development,Economic Development +491392,Economic Development,Economic Development +491387,Economic Development,Economic Development +491381,Economic Development,Economic Development +491374,Economic Development,Economic Development +491371,Economic Development,Economic Development +485619,Economic Development,Economic Development +477047,Economic Development,Economic Development +473285,Economic Development,Economic Development +469022,Economic Development,Economic Development +468960,Economic Development,Economic Development +468957,Economic Development,Economic Development +468956,Economic Development,Economic Development +468941,Economic Development,Economic Development +468940,Economic Development,Economic Development +468939,Economic Development,Economic Development +468938,Economic Development,Economic Development +468937,Economic Development,Economic Development +491015,Taxation and Finance,Taxation and Finance +476892,Taxation and Finance,Taxation and Finance +445250,Industry,Industry +445247,Industry,Industry +435956,Energy,Energy +435952,Environment,Environment +435950,Environment,Environment +453737,Environment,Environment +449459,Environment,Environment +449454,Environment,Environment +449453,Environment,Environment +449452,Environment,Environment +435950,Fisheries,Fisheries +435947,Fisheries,Fisheries +449459,Justice and Law Enforcement,Justice and Law Enforcement +525171,Justice and Law Enforcement,Justice and Law Enforcement +449458,Justice and Law Enforcement,Justice and Law Enforcement +435958,Justice and Law Enforcement,Justice and Law Enforcement +435956,Justice and Law Enforcement,Justice and Law Enforcement +435952,Justice and Law Enforcement,Justice and Law Enforcement +435950,Justice and Law Enforcement,Justice and Law Enforcement +435947,Justice and Law Enforcement,Justice and Law Enforcement +437962,Industry,Industry +437957,Industry,Industry +485962,Energy,Energy +460475,Energy,Energy +444713,Energy,Energy +435974,Justice and Law Enforcement,Justice and Law Enforcement +525157,Agriculture,Agriculture +518618,Agriculture,Agriculture +476822,Agriculture,Agriculture +469464,Agriculture,Agriculture +469164,Agriculture,Agriculture +449918,Agriculture,Agriculture +449450,Agriculture,Agriculture +449449,Agriculture,Agriculture +449447,Agriculture,Agriculture +449426,Agriculture,Agriculture +436519,Agriculture,Agriculture +436518,Agriculture,Agriculture +436517,Agriculture,Agriculture +436516,Agriculture,Agriculture +436513,Agriculture,Agriculture +544059,Agriculture,Agriculture +531777,Agriculture,Agriculture +512123,Budget,Budget +436517,Budget,Budget +525157,Budget,Budget +518618,Energy,Energy +436518,Energy,Energy +544059,Energy,Energy +531777,Energy,Energy +449426,Environment,Environment +436516,Environment,Environment +544059,Environment,Environment +531777,Environment,Environment +527051,Environment,Environment +525157,Environment,Environment +518618,Environment,Environment +449922,Environment,Environment +476822,Infrastructure,Infrastructure +469464,Infrastructure,Infrastructure +449922,Infrastructure,Infrastructure +449919,Infrastructure,Infrastructure +449914,Infrastructure,Infrastructure +449447,Infrastructure,Infrastructure +436518,Infrastructure,Infrastructure +436517,Infrastructure,Infrastructure +436516,Infrastructure,Infrastructure +518618,Justice and Law Enforcement,Justice and Law Enforcement +494058,Justice and Law Enforcement,Justice and Law Enforcement +436518,Justice and Law Enforcement,Justice and Law Enforcement +525159,Justice and Law Enforcement,Justice and Law Enforcement +449449,Municipalities,Municipalities +448121,Municipalities,Municipalities +436516,Municipalities,Municipalities +436513,Municipalities,Municipalities +544059,Municipalities,Municipalities +531777,Municipalities,Municipalities +527051,Municipalities,Municipalities +525159,Municipalities,Municipalities +525157,Municipalities,Municipalities +518618,Municipalities,Municipalities +494058,Municipalities,Municipalities +476822,Municipalities,Municipalities +469464,Municipalities,Municipalities +449919,Municipalities,Municipalities +449918,Municipalities,Municipalities +518618,Transportation,Transportation +496769,Agriculture,Agriculture +496767,Agriculture,Agriculture +467816,Agriculture,Agriculture +467809,Agriculture,Agriculture +458757,Agriculture,Agriculture +441222,Agriculture,Agriculture +441220,Agriculture,Agriculture +497542,Agriculture,Agriculture +467809,Economic Development,Economic Development +458757,Economic Development,Economic Development +436933,Economic Development,Economic Development +497542,Economic Development,Economic Development +496771,Economic Development,Economic Development +496769,Economic Development,Economic Development +496767,Economic Development,Economic Development +467816,International Trade,International Trade +467809,International Trade,International Trade +441222,International Trade,International Trade +441220,International Trade,International Trade +449544,Economic Development,Economic Development +498663,Agriculture,Agriculture +498661,Agriculture,Agriculture +466563,Agriculture,Agriculture +466561,Agriculture,Agriculture +466555,Agriculture,Agriculture +466553,Agriculture,Agriculture +466551,Agriculture,Agriculture +466548,Agriculture,Agriculture +437718,Agriculture,Agriculture +498670,Agriculture,Agriculture +498668,Agriculture,Agriculture +498661,Economic Development,Economic Development +466561,Economic Development,Economic Development +498670,Economic Development,Economic Development +498668,Economic Development,Economic Development +498665,Economic Development,Economic Development +466548,Industry,Industry +437718,Industry,Industry +498670,Industry,Industry +498665,Industry,Industry +498663,Industry,Industry +466563,Industry,Industry +466561,Industry,Industry +466555,Industry,Industry +466553,Industry,Industry +466551,International Trade,International Trade +466548,International Trade,International Trade +437718,International Trade,International Trade +466563,International Trade,International Trade +466561,International Trade,International Trade +466555,International Trade,International Trade +449544,Budget,Budget +439481,Agriculture,Agriculture +439479,Agriculture,Agriculture +452971,Agriculture,Agriculture +442667,Agriculture,Agriculture +439484,Agriculture,Agriculture +439481,Economic Development,Economic Development +439479,Economic Development,Economic Development +452971,Economic Development,Economic Development +442667,Economic Development,Economic Development +439484,Economic Development,Economic Development +440405,Municipalities,Municipalities +440404,Municipalities,Municipalities +454593,Municipalities,Municipalities +454592,Municipalities,Municipalities +454589,Municipalities,Municipalities +448638,Municipalities,Municipalities +448637,Municipalities,Municipalities +444474,Municipalities,Municipalities +440418,Municipalities,Municipalities +440417,Municipalities,Municipalities +440416,Municipalities,Municipalities +440414,Municipalities,Municipalities +440407,Municipalities,Municipalities +448308,Research and Development,Research and Development +448307,Research and Development,Research and Development +448652,Research and Development,Research and Development +448311,Research and Development,Research and Development +454937,Infrastructure,Infrastructure +454934,Infrastructure,Infrastructure +458904,Infrastructure,Infrastructure +458903,Infrastructure,Infrastructure +458900,Infrastructure,Infrastructure +439957,Economic Development,Economic Development +439957,International Trade,International Trade +442894,International Trade,International Trade +440346,International Trade,International Trade +438471,International Trade,International Trade +438481,Health,Health +438471,Health,Health +452505,Health,Health +452490,Small Business,Small Business +438471,Small Business,Small Business +438481,Economic Development,Economic Development +438471,Economic Development,Economic Development +452505,Economic Development,Economic Development +452505,Industry,Industry +452490,Industry,Industry +438481,Industry,Industry +454123,Budget,Budget +451059,Budget,Budget +444487,Immigration,Immigration +444486,Immigration,Immigration +437911,Immigration,Immigration +437909,Immigration,Immigration +457707,Immigration,Immigration +454123,Immigration,Immigration +451059,Immigration,Immigration +452533,Immigration,Immigration +452533,Consumer Issues,Consumer Issues +444698,Budget,Budget +442519,Budget,Budget +442518,Budget,Budget +442516,Budget,Budget +442514,Budget,Budget +436697,Budget,Budget +436695,Budget,Budget +436683,Budget,Budget +436493,Budget,Budget +442516,Defence,Defence +436697,Defence,Defence +442514,Health,Health +436493,Health,Health +442519,Health,Health +501899,Energy,Energy +496165,Energy,Energy +528747,Energy,Energy +522423,Energy,Energy +519261,Energy,Energy +519259,Energy,Energy +519258,Pensions,Pensions +512644,Pensions,Pensions +528755,Pensions,Pensions +519261,Pensions,Pensions +504218,Taxation and Finance,Taxation and Finance +485337,Taxation and Finance,Taxation and Finance +528747,Taxation and Finance,Taxation and Finance +522423,Taxation and Finance,Taxation and Finance +519261,Taxation and Finance,Taxation and Finance +519259,Taxation and Finance,Taxation and Finance +440482,Budget,Budget +440520,Budget,Budget +440519,Budget,Budget +510839,Economic Development,Economic Development +510837,Economic Development,Economic Development +484403,Economic Development,Economic Development +477211,Economic Development,Economic Development +474457,Economic Development,Economic Development +474380,Economic Development,Economic Development +472621,Economic Development,Economic Development +472604,Economic Development,Economic Development +463729,Economic Development,Economic Development +462197,Economic Development,Economic Development +462196,Economic Development,Economic Development +462195,Economic Development,Economic Development +458090,Economic Development,Economic Development +458089,Economic Development,Economic Development +453599,Economic Development,Economic Development +453592,Economic Development,Economic Development +453590,Economic Development,Economic Development +446327,Economic Development,Economic Development +440500,Economic Development,Economic Development +440498,Economic Development,Economic Development +437674,Economic Development,Economic Development +437355,Economic Development,Economic Development +437349,Economic Development,Economic Development +544047,Economic Development,Economic Development +537973,Economic Development,Economic Development +537972,Economic Development,Economic Development +528309,Economic Development,Economic Development +527909,Economic Development,Economic Development +462197,Education,Education +462196,Education,Education +462195,Education,Education +461235,Education,Education +461234,Education,Education +461230,Education,Education +461229,Education,Education +461228,Education,Education +461227,Education,Education +460544,Education,Education +460543,Education,Education +459941,Education,Education +459939,Education,Education +458191,Education,Education +458089,Education,Education +458088,Education,Education +454695,Education,Education +454693,Education,Education +453600,Education,Education +453599,Education,Education +453597,Education,Education +452256,Education,Education +452254,Education,Education +449299,Education,Education +449298,Education,Education +449297,Education,Education +449294,Education,Education +440515,Education,Education +440509,Education,Education +440495,Education,Education +440494,Education,Education +440485,Education,Education +440481,Education,Education +440480,Education,Education +437356,Education,Education +544047,Education,Education +537970,Education,Education +531727,Education,Education +528309,Education,Education +527909,Education,Education +513038,Education,Education +510839,Education,Education +501601,Education,Education +484403,Education,Education +481826,Education,Education +477210,Education,Education +474455,Education,Education +474454,Education,Education +474397,Education,Education +474396,Education,Education +474395,Education,Education +472622,Education,Education +472621,Education,Education +472604,Education,Education +470319,Education,Education +463732,Education,Education +463731,Education,Education +463730,Education,Education +437648,Environment,Environment +437358,Environment,Environment +537965,Environment,Environment +497711,Environment,Environment +462196,Environment,Environment +440507,Environment,Environment +440506,Environment,Environment +440504,Environment,Environment +437673,Environment,Environment +437672,Environment,Environment +437668,Environment,Environment +437667,Environment,Environment +437660,Environment,Environment +437663,Health,Health +437652,Health,Health +437651,Health,Health +513037,Health,Health +477211,Health,Health +477210,Health,Health +474457,Health,Health +474456,Health,Health +474455,Health,Health +474454,Health,Health +474398,Health,Health +474397,Health,Health +474396,Health,Health +474395,Health,Health +474380,Health,Health +472622,Health,Health +472621,Health,Health +472604,Health,Health +470319,Health,Health +453585,Health,Health +453581,Health,Health +440523,Health,Health +440501,Health,Health +453588,Industry,Industry +453586,Industry,Industry +449297,Industry,Industry +446327,Industry,Industry +440525,Industry,Industry +440522,Industry,Industry +440520,Industry,Industry +440519,Industry,Industry +440518,Industry,Industry +440516,Industry,Industry +440514,Industry,Industry +440513,Industry,Industry +440512,Industry,Industry +440511,Industry,Industry +440510,Industry,Industry +440509,Industry,Industry +440507,Industry,Industry +440502,Industry,Industry +440499,Industry,Industry +440498,Industry,Industry +440496,Industry,Industry +440491,Industry,Industry +439942,Industry,Industry +437685,Industry,Industry +437681,Industry,Industry +437679,Industry,Industry +437674,Industry,Industry +437673,Industry,Industry +437670,Industry,Industry +437666,Industry,Industry +437665,Industry,Industry +437661,Industry,Industry +437656,Industry,Industry +437655,Industry,Industry +437355,Industry,Industry +437349,Industry,Industry +474457,Industry,Industry +474456,Industry,Industry +474398,Industry,Industry +461231,Industry,Industry +459746,Industry,Industry +458090,Industry,Industry +457225,Industry,Industry +454695,Industry,Industry +454693,Industry,Industry +453592,Industry,Industry +544047,Infrastructure,Infrastructure +544046,Infrastructure,Infrastructure +521766,Infrastructure,Infrastructure +516219,Infrastructure,Infrastructure +516218,Infrastructure,Infrastructure +490889,Infrastructure,Infrastructure +487345,Infrastructure,Infrastructure +484403,Infrastructure,Infrastructure +477211,Infrastructure,Infrastructure +474457,Infrastructure,Infrastructure +474398,Infrastructure,Infrastructure +474395,Infrastructure,Infrastructure +474380,Infrastructure,Infrastructure +472621,Infrastructure,Infrastructure +463732,Infrastructure,Infrastructure +463729,Infrastructure,Infrastructure +462197,Infrastructure,Infrastructure +462196,Infrastructure,Infrastructure +462195,Infrastructure,Infrastructure +461232,Infrastructure,Infrastructure +461231,Infrastructure,Infrastructure +461225,Infrastructure,Infrastructure +458089,Infrastructure,Infrastructure +458088,Infrastructure,Infrastructure +454692,Infrastructure,Infrastructure +453597,Infrastructure,Infrastructure +453596,Infrastructure,Infrastructure +453591,Infrastructure,Infrastructure +453584,Infrastructure,Infrastructure +453583,Infrastructure,Infrastructure +452256,Infrastructure,Infrastructure +452255,Infrastructure,Infrastructure +444223,Infrastructure,Infrastructure +444061,Infrastructure,Infrastructure +440510,Infrastructure,Infrastructure +440509,Infrastructure,Infrastructure +440497,Infrastructure,Infrastructure +440494,Infrastructure,Infrastructure +440481,Infrastructure,Infrastructure +437657,Infrastructure,Infrastructure +497711,Intellectual Property,Intellectual Property +437648,International Development,International Development +531727,International Development,International Development +458089,International Development,International Development +458088,International Development,International Development +453598,International Development,International Development +440506,International Development,International Development +440504,International Development,International Development +440503,International Development,International Development +437673,International Development,International Development +437668,International Development,International Development +437667,International Development,International Development +510838,Research and Development,Research and Development +510837,Research and Development,Research and Development +497711,Research and Development,Research and Development +481826,Research and Development,Research and Development +477211,Research and Development,Research and Development +477210,Research and Development,Research and Development +474457,Research and Development,Research and Development +474456,Research and Development,Research and Development +474455,Research and Development,Research and Development +474454,Research and Development,Research and Development +474398,Research and Development,Research and Development +474397,Research and Development,Research and Development +474396,Research and Development,Research and Development +474380,Research and Development,Research and Development +472621,Research and Development,Research and Development +472604,Research and Development,Research and Development +463732,Research and Development,Research and Development +463729,Research and Development,Research and Development +462195,Research and Development,Research and Development +460545,Research and Development,Research and Development +460542,Research and Development,Research and Development +460181,Research and Development,Research and Development +459941,Research and Development,Research and Development +458090,Research and Development,Research and Development +458089,Research and Development,Research and Development +458088,Research and Development,Research and Development +453597,Research and Development,Research and Development +453592,Research and Development,Research and Development +453591,Research and Development,Research and Development +453590,Research and Development,Research and Development +453587,Research and Development,Research and Development +453586,Research and Development,Research and Development +453585,Research and Development,Research and Development +453583,Research and Development,Research and Development +453581,Research and Development,Research and Development +453571,Research and Development,Research and Development +453570,Research and Development,Research and Development +452258,Research and Development,Research and Development +449295,Research and Development,Research and Development +446327,Research and Development,Research and Development +444060,Research and Development,Research and Development +440525,Research and Development,Research and Development +440524,Research and Development,Research and Development +440523,Research and Development,Research and Development +440522,Research and Development,Research and Development +440517,Research and Development,Research and Development +440516,Research and Development,Research and Development +440515,Research and Development,Research and Development +440505,Research and Development,Research and Development +440502,Research and Development,Research and Development +440501,Research and Development,Research and Development +440500,Research and Development,Research and Development +440499,Research and Development,Research and Development +440498,Research and Development,Research and Development +440493,Research and Development,Research and Development +440491,Research and Development,Research and Development +440489,Research and Development,Research and Development +440487,Research and Development,Research and Development +440486,Research and Development,Research and Development +440483,Research and Development,Research and Development +440481,Research and Development,Research and Development +440480,Research and Development,Research and Development +439942,Research and Development,Research and Development +437685,Research and Development,Research and Development +437681,Research and Development,Research and Development +437679,Research and Development,Research and Development +437673,Research and Development,Research and Development +437672,Research and Development,Research and Development +437670,Research and Development,Research and Development +437666,Research and Development,Research and Development +437665,Research and Development,Research and Development +437664,Research and Development,Research and Development +437663,Research and Development,Research and Development +437661,Research and Development,Research and Development +437660,Research and Development,Research and Development +437659,Research and Development,Research and Development +437658,Research and Development,Research and Development +437657,Research and Development,Research and Development +437656,Research and Development,Research and Development +437655,Research and Development,Research and Development +437652,Research and Development,Research and Development +437651,Research and Development,Research and Development +437650,Research and Development,Research and Development +437648,Research and Development,Research and Development +437647,Research and Development,Research and Development +539972,Research and Development,Research and Development +537973,Research and Development,Research and Development +537969,Research and Development,Research and Development +537968,Research and Development,Research and Development +537965,Research and Development,Research and Development +528309,Research and Development,Research and Development +527909,Research and Development,Research and Development +453596,Transportation,Transportation +453584,Transportation,Transportation +444061,Transportation,Transportation +440507,Transportation,Transportation +440500,Transportation,Transportation +437673,Transportation,Transportation +437672,Transportation,Transportation +437664,Transportation,Transportation +437658,Transportation,Transportation +521766,Transportation,Transportation +513037,Transportation,Transportation +501601,Transportation,Transportation +490889,Transportation,Transportation +477211,Transportation,Transportation +474457,Transportation,Transportation +474397,Transportation,Transportation +474395,Transportation,Transportation +472622,Transportation,Transportation +472604,Transportation,Transportation +461225,Transportation,Transportation +460181,Transportation,Transportation +458089,Transportation,Transportation +458088,Transportation,Transportation +436281,Environment,Environment +436280,Environment,Environment +444974,Environment,Environment +444969,Environment,Environment +439485,International Trade,International Trade +453764,Defence,Defence +453763,Defence,Defence +448443,Defence,Defence +445952,Defence,Defence +445951,Defence,Defence +445950,Defence,Defence +445949,Defence,Defence +445947,Defence,Defence +445944,Defence,Defence +445943,Defence,Defence +445942,Defence,Defence +440251,Defence,Defence +440249,Defence,Defence +440248,Defence,Defence +440247,Defence,Defence +440245,Defence,Defence +445943,Employment and Training,Employment and Training +445942,Employment and Training,Employment and Training +440251,Employment and Training,Employment and Training +440249,Employment and Training,Employment and Training +440248,Employment and Training,Employment and Training +440247,Employment and Training,Employment and Training +440245,Employment and Training,Employment and Training +445952,Employment and Training,Employment and Training +445951,Employment and Training,Employment and Training +445950,Employment and Training,Employment and Training +445949,Employment and Training,Employment and Training +445947,Employment and Training,Employment and Training +440247,Economic Development,Economic Development +440245,Economic Development,Economic Development +445952,Economic Development,Economic Development +445951,Economic Development,Economic Development +445950,Economic Development,Economic Development +445949,Economic Development,Economic Development +445947,Economic Development,Economic Development +445944,Economic Development,Economic Development +445943,Economic Development,Economic Development +445942,Economic Development,Economic Development +440251,Economic Development,Economic Development +440249,Economic Development,Economic Development +440247,Industry,Industry +440245,Industry,Industry +440251,Industry,Industry +440249,Industry,Industry +440247,Transportation,Transportation +440245,Transportation,Transportation +453765,Transportation,Transportation +453764,Transportation,Transportation +453763,Transportation,Transportation +448443,Transportation,Transportation +445952,Transportation,Transportation +445951,Transportation,Transportation +445950,Transportation,Transportation +445949,Transportation,Transportation +445947,Transportation,Transportation +445944,Transportation,Transportation +445943,Transportation,Transportation +445942,Transportation,Transportation +444557,Transportation,Transportation +440251,Transportation,Transportation +440249,Transportation,Transportation +453764,Government Procurement,Government Procurement +453763,Government Procurement,Government Procurement +448443,Government Procurement,Government Procurement +445952,Government Procurement,Government Procurement +445951,Government Procurement,Government Procurement +445950,Government Procurement,Government Procurement +445949,Government Procurement,Government Procurement +445947,Government Procurement,Government Procurement +445944,Government Procurement,Government Procurement +445943,Government Procurement,Government Procurement +445942,Government Procurement,Government Procurement +519181,Labour,Labour +435378,Immigration,Immigration +457301,Labour,Labour +435396,Labour,Labour +492066,Budget,Budget +505002,Climate,Climate +449684,Consumer Issues,Consumer Issues +466598,Employment and Training,Employment and Training +435437,Small Business,Small Business +435451,Economic Development,Economic Development +449444,Security,Security +453235,Industry,Industry +449444,Government Procurement,Government Procurement +508334,Consumer Issues,Consumer Issues +438958,Budget,Budget +438958,Education,Education +438958,Employment and Training,Employment and Training +440639,Transportation,Transportation +435513,Government Procurement,Government Procurement +463069,Environment,Environment +435583,Infrastructure,Infrastructure +468791,Health,Health +459397,Budget,Budget +459398,Employment and Training,Employment and Training +444974,Municipalities,Municipalities +436278,Research and Development,Research and Development +436276,Transportation,Transportation +468650,Economic Development,Economic Development +445051,Health,Health +491032,Taxation and Finance,Taxation and Finance +445247,Energy,Energy +445247,Environment,Environment +457227,Industry,Industry +457227,Research and Development,Research and Development +480138,Health,Health +435953,Budget,Budget +435961,Energy,Energy +435964,Environment,Environment +435952,Fisheries,Fisheries +453737,Justice and Law Enforcement,Justice and Law Enforcement +437965,Industry,Industry +435974,Energy,Energy +454351,Justice and Law Enforcement,Justice and Law Enforcement +527051,Agriculture,Agriculture +518618,Budget,Budget +527051,Energy,Energy +449919,Environment,Environment +436513,Infrastructure,Infrastructure +436520,Internal Trade,Internal Trade +525157,Justice and Law Enforcement,Justice and Law Enforcement +449450,Municipalities,Municipalities +531777,Transportation,Transportation +439630,Budget,Budget +439630,Economic Development,Economic Development +439630,Financial Institutions,Financial Institutions +439630,Small Business,Small Business +439630,Taxation and Finance,Taxation and Finance +496771,Agriculture,Agriculture +467816,Economic Development,Economic Development +436933,International Trade,International Trade +451845,Economic Development,Economic Development +498665,Agriculture,Agriculture +498663,Economic Development,Economic Development +466551,Industry,Industry +466553,International Trade,International Trade +451845,Budget,Budget +451845,Labour,Labour +449544,Taxation and Finance,Taxation and Finance +439483,Agriculture,Agriculture +439483,Economic Development,Economic Development +439701,Industry,Industry +439701,Small Business,Small Business +439701,Economic Development,Economic Development +439701,Research and Development,Research and Development +436147,Taxation and Finance,Taxation and Finance +440406,Municipalities,Municipalities +439442,Transportation,Transportation +448309,Research and Development,Research and Development +440213,Taxation and Finance,Taxation and Finance +436162,Defence,Defence +436162,Fisheries,Fisheries +436162,International Trade,International Trade +436162,Regional Development,Regional Development +436163,Defence,Defence +436163,Fisheries,Fisheries +436163,International Trade,International Trade +436163,Regional Development,Regional Development +436164,Defence,Defence +436164,Fisheries,Fisheries +436164,International Trade,International Trade +436164,Regional Development,Regional Development +436165,Defence,Defence +436165,Fisheries,Fisheries +436165,International Trade,International Trade +436165,Regional Development,Regional Development +436166,Defence,Defence +436166,Fisheries,Fisheries +436166,International Trade,International Trade +436166,Regional Development,Regional Development +436167,Defence,Defence +436167,Fisheries,Fisheries +436167,International Trade,International Trade +436167,Regional Development,Regional Development +436168,Defence,Defence +436168,Fisheries,Fisheries +436168,International Trade,International Trade +436168,Regional Development,Regional Development +436169,Defence,Defence +436169,Fisheries,Fisheries +436169,International Trade,International Trade +436169,Regional Development,Regional Development +436170,Defence,Defence +436170,Fisheries,Fisheries +436170,International Trade,International Trade +436170,Regional Development,Regional Development +454938,Infrastructure,Infrastructure +451449,Economic Development,Economic Development +444135,International Trade,International Trade +439703,Economic Development,Economic Development +439702,Taxation and Finance,Taxation and Finance +441357,Health,Health +443055,International Trade,International Trade +439215,Infrastructure,Infrastructure +438481,International Trade,International Trade +452490,Health,Health +452505,Small Business,Small Business +452490,Economic Development,Economic Development +438471,Industry,Industry +452573,International Development,International Development +452573,Taxation and Finance,Taxation and Finance +452573,Economic Development,Economic Development +452573,Budget,Budget +452573,International Relations,International Relations +449606,Health,Health +449606,Financial Institutions,Financial Institutions +449606,Economic Development,Economic Development +449606,Budget,Budget +449606,Agriculture,Agriculture +449606,Taxation and Finance,Taxation and Finance +449606,International Development,International Development +449606,Labour,Labour +449606,Climate,Climate +449606,Immigration,Immigration +449606,Defence,Defence +449606,Environment,Environment +449606,International Trade,International Trade +449606,International Relations,International Relations +441214,Consumer Issues,Consumer Issues +441214,Health,Health +441214,Industry,Industry +441214,International Trade,International Trade +441214,Taxation and Finance,Taxation and Finance +457707,Budget,Budget +448185,Immigration,Immigration +465814,Immigration,Immigration +465814,Consumer Issues,Consumer Issues +448836,Budget,Budget +444698,Defence,Defence +442518,Health,Health +519258,Energy,Energy +519259,Pensions,Pensions +519258,Taxation and Finance,Taxation and Finance +439616,Economic Development,Economic Development +439616,Research and Development,Research and Development +440518,Budget,Budget +510840,Economic Development,Economic Development +463729,Education,Education +437650,Environment,Environment +440493,Health,Health +453590,Industry,Industry +437358,Infrastructure,Infrastructure +440499,Intellectual Property,Intellectual Property +437650,International Development,International Development +510840,Research and Development,Research and Development +453597,Transportation,Transportation +436284,Environment,Environment +439507,International Trade,International Trade +453765,Defence,Defence +445944,Employment and Training,Employment and Training +440248,Economic Development,Economic Development +440248,Industry,Industry +440248,Transportation,Transportation +453765,Government Procurement,Government Procurement +464343,Government Procurement,Government Procurement +456542,Economic Development,Economic Development +456542,Financial Institutions,Financial Institutions +456542,International Trade,International Trade +436330,Budget,Budget +436330,Consumer Issues,Consumer Issues +436330,Financial Institutions,Financial Institutions +436330,Privacy and Access to Information,Privacy and Access to Information +436330,Taxation and Finance,Taxation and Finance +449595,International Trade,International Trade +449595,International Relations,International Relations +449595,Defence,Defence +449595,Taxation and Finance,Taxation and Finance +449595,Economic Development,Economic Development +449595,International Development,International Development +469297,Health,Health +445487,Economic Development,Economic Development +440562,International Trade,International Trade +440565,Industry,Industry +445484,Taxation and Finance,Taxation and Finance +445483,Taxation and Finance,Taxation and Finance +445485,Economic Development,Economic Development +445479,International Trade,International Trade +436348,Employment and Training,Employment and Training +436348,Economic Development,Economic Development +436348,Tourism,Tourism +446972,Defence,Defence +439863,Environment,Environment +497448,Health,Health +454883,Research and Development,Research and Development +437416,Climate,Climate +437416,Economic Development,Economic Development +437416,Environment,Environment +437416,Industry,Industry +437418,Climate,Climate +437418,Economic Development,Economic Development +437418,Environment,Environment +437418,Industry,Industry +438104,Agriculture,Agriculture +438104,Financial Institutions,Financial Institutions +438104,Small Business,Small Business +442105,Consumer Issues,Consumer Issues +436910,Economic Development,Economic Development +436512,Forestry,Forestry +436512,Industry,Industry +436512,Research and Development,Research and Development +444365,Small Business,Small Business +525165,Budget,Budget +465648,Climate,Climate +437934,Fisheries,Fisheries +436423,Health,Health +436432,Immigration,Immigration +436915,Infrastructure,Infrastructure +436915,Industry,Industry +436915,Tourism,Tourism +446369,Health,Health +451195,Education,Education +436688,Official Languages,Official Languages +448701,Economic Development,Economic Development +448701,International Trade,International Trade +466401,Education,Education +436689,Official Languages,Official Languages +450590,Government Procurement,Government Procurement +436601,Justice and Law Enforcement,Justice and Law Enforcement +439963,Economic Development,Economic Development +440040,Justice and Law Enforcement,Justice and Law Enforcement +439963,Agriculture,Agriculture +436453,Industry,Industry +443814,Agriculture,Agriculture +443814,Economic Development,Economic Development +443814,Employment and Training,Employment and Training +443814,Fisheries,Fisheries +443814,International Trade,International Trade +443814,Labour,Labour +443814,Regional Development,Regional Development +533590,Consumer Issues,Consumer Issues +512472,Regional Development,Regional Development +524149,Tourism,Tourism +480133,Transportation,Transportation +456148,Health,Health +478489,Economic Development,Economic Development +513033,Consumer Issues,Consumer Issues +513033,Small Business,Small Business +459835,Industry,Industry +459835,Economic Development,Economic Development +456541,Economic Development,Economic Development +456541,Financial Institutions,Financial Institutions +456541,International Trade,International Trade +436329,Consumer Issues,Consumer Issues +436329,Financial Institutions,Financial Institutions +436329,Privacy and Access to Information,Privacy and Access to Information +436329,Taxation and Finance,Taxation and Finance +440561,International Trade,International Trade +445479,Economic Development,Economic Development +443276,Defence,Defence +443272,Defence,Defence +439861,Environment,Environment +446972,Environment,Environment +443272,Environment,Environment +443270,Environment,Environment +440889,Environment,Environment +439866,Environment,Environment +439865,Environment,Environment +439864,Environment,Environment +454874,Health,Health +454873,Health,Health +526489,Health,Health +518527,Health,Health +518117,Health,Health +518060,Health,Health +517275,Health,Health +517269,Health,Health +517264,Health,Health +516970,Health,Health +516955,Health,Health +516953,Health,Health +516952,Health,Health +454881,Research and Development,Research and Development +454877,Research and Development,Research and Development +441474,Research and Development,Research and Development +536182,Research and Development,Research and Development +480648,Research and Development,Research and Development +464165,Research and Development,Research and Development +459220,Research and Development,Research and Development +458479,Research and Development,Research and Development +458478,Research and Development,Research and Development +437415,Climate,Climate +437415,Economic Development,Economic Development +437415,Environment,Environment +437415,Industry,Industry +437417,Climate,Climate +437417,Economic Development,Economic Development +437417,Environment,Environment +437417,Industry,Industry +438103,Agriculture,Agriculture +438102,Agriculture,Agriculture +440747,Agriculture,Agriculture +440745,Agriculture,Agriculture +440744,Agriculture,Agriculture +440743,Agriculture,Agriculture +438105,Agriculture,Agriculture +438103,Financial Institutions,Financial Institutions +438102,Financial Institutions,Financial Institutions +440747,Financial Institutions,Financial Institutions +440745,Financial Institutions,Financial Institutions +440744,Financial Institutions,Financial Institutions +440743,Financial Institutions,Financial Institutions +438105,Financial Institutions,Financial Institutions +438103,Small Business,Small Business +438102,Small Business,Small Business +438105,Small Business,Small Business +436692,Economic Development,Economic Development +436510,Forestry,Forestry +436509,Forestry,Forestry +436910,Forestry,Forestry +436692,Forestry,Forestry +436510,Industry,Industry +436509,Industry,Industry +436510,Research and Development,Research and Development +436509,Research and Development,Research and Development +436910,Research and Development,Research and Development +523366,Budget,Budget +518620,Budget,Budget +436419,Budget,Budget +436416,Budget,Budget +436415,Budget,Budget +527050,Budget,Budget +465647,Climate,Climate +465646,Climate,Climate +544066,Climate,Climate +531792,Climate,Climate +527050,Climate,Climate +525165,Climate,Climate +523366,Climate,Climate +518620,Climate,Climate +436414,Fisheries,Fisheries +436413,Fisheries,Fisheries +436411,Fisheries,Fisheries +436421,Health,Health +527050,Health,Health +436914,Infrastructure,Infrastructure +436913,Infrastructure,Infrastructure +436916,Infrastructure,Infrastructure +436914,Industry,Industry +436913,Industry,Industry +436916,Industry,Industry +436914,Tourism,Tourism +436913,Tourism,Tourism +436916,Tourism,Tourism +444985,Health,Health +444805,Health,Health +449212,Health,Health +446382,Health,Health +446381,Health,Health +450306,Education,Education +450305,Education,Education +450304,Education,Education +445978,Education,Education +440567,Education,Education +437608,Education,Education +437607,Education,Education +436688,Education,Education +436440,Education,Education +436435,Education,Education +468825,Education,Education +468823,Education,Education +468821,Education,Education +468819,Education,Education +466397,Education,Education +466394,Education,Education +466129,Education,Education +465913,Education,Education +465910,Education,Education +465419,Education,Education +463609,Education,Education +463607,Education,Education +463605,Education,Education +451464,Education,Education +436440,Official Languages,Official Languages +436435,Official Languages,Official Languages +468825,Official Languages,Official Languages +468823,Official Languages,Official Languages +468821,Official Languages,Official Languages +468819,Official Languages,Official Languages +466397,Official Languages,Official Languages +466394,Official Languages,Official Languages +466129,Official Languages,Official Languages +465913,Official Languages,Official Languages +465910,Official Languages,Official Languages +465419,Official Languages,Official Languages +463609,Official Languages,Official Languages +463607,Official Languages,Official Languages +463605,Official Languages,Official Languages +451464,Official Languages,Official Languages +451195,Official Languages,Official Languages +450306,Official Languages,Official Languages +450305,Official Languages,Official Languages +450304,Official Languages,Official Languages +445978,Official Languages,Official Languages +440567,Official Languages,Official Languages +437608,Official Languages,Official Languages +437607,Official Languages,Official Languages +466131,Education,Education +465914,Education,Education +465415,Education,Education +463615,Education,Education +463613,Education,Education +463611,Education,Education +451194,Education,Education +451141,Education,Education +450341,Education,Education +450340,Education,Education +450339,Education,Education +440568,Education,Education +437727,Education,Education +437726,Education,Education +436689,Education,Education +436439,Education,Education +436438,Education,Education +468833,Education,Education +468831,Education,Education +468829,Education,Education +468827,Education,Education +466403,Education,Education +436439,Official Languages,Official Languages +436438,Official Languages,Official Languages +468833,Official Languages,Official Languages +468831,Official Languages,Official Languages +468829,Official Languages,Official Languages +468827,Official Languages,Official Languages +466403,Official Languages,Official Languages +466401,Official Languages,Official Languages +466131,Official Languages,Official Languages +465914,Official Languages,Official Languages +465415,Official Languages,Official Languages +463615,Official Languages,Official Languages +463613,Official Languages,Official Languages +463611,Official Languages,Official Languages +451194,Official Languages,Official Languages +451141,Official Languages,Official Languages +450341,Official Languages,Official Languages +450340,Official Languages,Official Languages +450339,Official Languages,Official Languages +440568,Official Languages,Official Languages +437727,Official Languages,Official Languages +437726,Official Languages,Official Languages +450589,Government Procurement,Government Procurement +436442,Government Procurement,Government Procurement +436600,Justice and Law Enforcement,Justice and Law Enforcement +436442,Justice and Law Enforcement,Justice and Law Enforcement +436608,Justice and Law Enforcement,Justice and Law Enforcement +439962,Economic Development,Economic Development +436526,Economic Development,Economic Development +442782,Economic Development,Economic Development +440040,Economic Development,Economic Development +439965,Economic Development,Economic Development +439965,Justice and Law Enforcement,Justice and Law Enforcement +439963,Justice and Law Enforcement,Justice and Law Enforcement +442782,Justice and Law Enforcement,Justice and Law Enforcement +439962,Agriculture,Agriculture +436526,Agriculture,Agriculture +442782,Agriculture,Agriculture +440040,Agriculture,Agriculture +439965,Agriculture,Agriculture +442923,Agriculture,Agriculture +442923,Economic Development,Economic Development +442923,Employment and Training,Employment and Training +442923,Fisheries,Fisheries +442923,International Trade,International Trade +442923,Labour,Labour +442923,Regional Development,Regional Development +513590,Consumer Issues,Consumer Issues +509592,Consumer Issues,Consumer Issues +509579,Consumer Issues,Consumer Issues +509592,Regional Development,Regional Development +509579,Regional Development,Regional Development +537458,Regional Development,Regional Development +537455,Regional Development,Regional Development +533590,Regional Development,Regional Development +533587,Regional Development,Regional Development +533584,Regional Development,Regional Development +531119,Regional Development,Regional Development +527578,Regional Development,Regional Development +527576,Regional Development,Regional Development +524441,Regional Development,Regional Development +524150,Regional Development,Regional Development +524149,Regional Development,Regional Development +523612,Regional Development,Regional Development +522836,Regional Development,Regional Development +515088,Regional Development,Regional Development +514466,Regional Development,Regional Development +512473,Regional Development,Regional Development +523612,Tourism,Tourism +522836,Tourism,Tourism +518765,Tourism,Tourism +516530,Tourism,Tourism +514466,Tourism,Tourism +512472,Tourism,Tourism +509598,Tourism,Tourism +509592,Tourism,Tourism +509579,Tourism,Tourism +537458,Tourism,Tourism +537455,Tourism,Tourism +533587,Tourism,Tourism +533585,Tourism,Tourism +533584,Tourism,Tourism +531119,Tourism,Tourism +527578,Tourism,Tourism +527576,Tourism,Tourism +524441,Tourism,Tourism +524150,Tourism,Tourism +480131,Transportation,Transportation +480130,Transportation,Transportation +477873,Transportation,Transportation +477872,Transportation,Transportation +477868,Transportation,Transportation +476121,Transportation,Transportation +476119,Transportation,Transportation +476118,Transportation,Transportation +476117,Transportation,Transportation +473848,Transportation,Transportation +473847,Transportation,Transportation +473846,Transportation,Transportation +473845,Transportation,Transportation +473844,Transportation,Transportation +473843,Transportation,Transportation +473842,Transportation,Transportation +473841,Transportation,Transportation +473840,Transportation,Transportation +473838,Transportation,Transportation +473837,Transportation,Transportation +473836,Transportation,Transportation +473835,Transportation,Transportation +471086,Transportation,Transportation +471079,Transportation,Transportation +471077,Transportation,Transportation +468789,Transportation,Transportation +463736,Transportation,Transportation +539676,Transportation,Transportation +539674,Transportation,Transportation +539673,Transportation,Transportation +539670,Transportation,Transportation +537458,Transportation,Transportation +537455,Transportation,Transportation +533590,Transportation,Transportation +533587,Transportation,Transportation +533585,Transportation,Transportation +533584,Transportation,Transportation +531119,Transportation,Transportation +527578,Transportation,Transportation +527576,Transportation,Transportation +524441,Transportation,Transportation +524150,Transportation,Transportation +524149,Transportation,Transportation +523612,Transportation,Transportation +522836,Transportation,Transportation +518765,Transportation,Transportation +516530,Transportation,Transportation +515088,Transportation,Transportation +514466,Transportation,Transportation +512473,Transportation,Transportation +512472,Transportation,Transportation +509598,Transportation,Transportation +509592,Transportation,Transportation +509579,Transportation,Transportation +509348,Transportation,Transportation +503282,Transportation,Transportation +496372,Transportation,Transportation +492949,Transportation,Transportation +487860,Transportation,Transportation +487858,Transportation,Transportation +487857,Transportation,Transportation +484883,Transportation,Transportation +484880,Transportation,Transportation +484876,Transportation,Transportation +484873,Transportation,Transportation +484862,Transportation,Transportation +484861,Transportation,Transportation +482659,Transportation,Transportation +480134,Transportation,Transportation +478365,Economic Development,Economic Development +476152,Economic Development,Economic Development +471084,Economic Development,Economic Development +470543,Economic Development,Economic Development +469533,Economic Development,Economic Development +469532,Economic Development,Economic Development +469359,Economic Development,Economic Development +469358,Economic Development,Economic Development +469357,Economic Development,Economic Development +469356,Economic Development,Economic Development +469352,Economic Development,Economic Development +469351,Economic Development,Economic Development +469350,Economic Development,Economic Development +469349,Economic Development,Economic Development +469348,Economic Development,Economic Development +469347,Economic Development,Economic Development +465215,Economic Development,Economic Development +465156,Economic Development,Economic Development +463275,Economic Development,Economic Development +463274,Economic Development,Economic Development +463273,Economic Development,Economic Development +463272,Economic Development,Economic Development +458981,Economic Development,Economic Development +456473,Economic Development,Economic Development +454139,Economic Development,Economic Development +449635,Economic Development,Economic Development +449634,Economic Development,Economic Development +449633,Economic Development,Economic Development +449631,Economic Development,Economic Development +449627,Economic Development,Economic Development +449626,Economic Development,Economic Development +448671,Economic Development,Economic Development +448405,Economic Development,Economic Development +446185,Economic Development,Economic Development +446184,Economic Development,Economic Development +513489,Economic Development,Economic Development +506570,Economic Development,Economic Development +506569,Economic Development,Economic Development +506568,Economic Development,Economic Development +506567,Economic Development,Economic Development +506566,Economic Development,Economic Development +506565,Economic Development,Economic Development +506564,Economic Development,Economic Development +503661,Economic Development,Economic Development +503660,Economic Development,Economic Development +503659,Economic Development,Economic Development +503658,Economic Development,Economic Development +503657,Economic Development,Economic Development +503656,Economic Development,Economic Development +503655,Economic Development,Economic Development +503654,Economic Development,Economic Development +503651,Economic Development,Economic Development +503650,Economic Development,Economic Development +502827,Economic Development,Economic Development +502824,Economic Development,Economic Development +502821,Economic Development,Economic Development +502819,Economic Development,Economic Development +502818,Economic Development,Economic Development +502810,Economic Development,Economic Development +502808,Economic Development,Economic Development +502806,Economic Development,Economic Development +502805,Economic Development,Economic Development +502804,Economic Development,Economic Development +502802,Economic Development,Economic Development +502799,Economic Development,Economic Development +502796,Economic Development,Economic Development +500045,Economic Development,Economic Development +500044,Economic Development,Economic Development +500043,Economic Development,Economic Development +500042,Economic Development,Economic Development +496706,Economic Development,Economic Development +496705,Economic Development,Economic Development +496703,Economic Development,Economic Development +494147,Economic Development,Economic Development +493559,Economic Development,Economic Development +493556,Economic Development,Economic Development +492640,Economic Development,Economic Development +492624,Economic Development,Economic Development +492623,Economic Development,Economic Development +489350,Economic Development,Economic Development +488865,Economic Development,Economic Development +488028,Economic Development,Economic Development +486605,Economic Development,Economic Development +486604,Economic Development,Economic Development +485628,Economic Development,Economic Development +484204,Economic Development,Economic Development +484203,Economic Development,Economic Development +484201,Economic Development,Economic Development +483282,Economic Development,Economic Development +482870,Economic Development,Economic Development +482799,Economic Development,Economic Development +482798,Economic Development,Economic Development +481039,Economic Development,Economic Development +480577,Economic Development,Economic Development +478833,Economic Development,Economic Development +473638,Government Procurement,Government Procurement +473636,Government Procurement,Government Procurement +473636,Health,Health +455301,Taxation and Finance,Taxation and Finance +455265,Taxation and Finance,Taxation and Finance +524873,Taxation and Finance,Taxation and Finance +524870,Taxation and Finance,Taxation and Finance +524869,Taxation and Finance,Taxation and Finance +506647,Taxation and Finance,Taxation and Finance +491372,Taxation and Finance,Taxation and Finance +491368,Taxation and Finance,Taxation and Finance +491358,Taxation and Finance,Taxation and Finance +487716,Taxation and Finance,Taxation and Finance +487715,Taxation and Finance,Taxation and Finance +487714,Taxation and Finance,Taxation and Finance +485077,Taxation and Finance,Taxation and Finance +485064,Taxation and Finance,Taxation and Finance +485059,Taxation and Finance,Taxation and Finance +482052,Taxation and Finance,Taxation and Finance +482047,Taxation and Finance,Taxation and Finance +479574,Taxation and Finance,Taxation and Finance +437094,Budget,Budget +437093,Budget,Budget +437101,Budget,Budget +437099,Budget,Budget +437097,Budget,Budget +437096,Budget,Budget +439428,Health,Health +445997,Health,Health +465728,Climate,Climate +465710,Climate,Climate +449421,Environment,Environment +444713,Environment,Environment +465729,Environment,Environment +465728,Environment,Environment +465710,Environment,Environment +449423,Environment,Environment +465728,Taxation and Finance,Taxation and Finance +465710,Taxation and Finance,Taxation and Finance +471375,Taxation and Finance,Taxation and Finance +471374,Taxation and Finance,Taxation and Finance +440041,Industry,Industry +436522,Industry,Industry +448430,Industry,Industry +448429,Industry,Industry +448428,Industry,Industry +518638,Justice and Law Enforcement,Justice and Law Enforcement +439962,Health,Health +436526,Health,Health +442782,Health,Health +440040,Health,Health +439965,Health,Health +471750,Economic Development,Economic Development +471749,Economic Development,Economic Development +442928,Economic Development,Economic Development +436546,Economic Development,Economic Development +506533,Economic Development,Economic Development +499757,Economic Development,Economic Development +497197,Economic Development,Economic Development +471752,Economic Development,Economic Development +448833,Industry,Industry +442802,Industry,Industry +468366,Industry,Industry +500466,Industry,Industry +481820,Industry,Industry +447035,Industry,Industry +447034,Industry,Industry +447033,Industry,Industry +447032,Industry,Industry +447030,Industry,Industry +444411,Industry,Industry +444410,Industry,Industry +444409,Industry,Industry +442796,Industry,Industry +442783,Industry,Industry +440208,Industry,Industry +440207,Industry,Industry +440206,Industry,Industry +436555,Internal Trade,Internal Trade +442795,Regional Development,Regional Development +442793,Regional Development,Regional Development +436850,Labour,Labour +436591,Labour,Labour +498484,Infrastructure,Infrastructure +496144,Infrastructure,Infrastructure +495084,Infrastructure,Infrastructure +494794,Infrastructure,Infrastructure +494633,Infrastructure,Infrastructure +494281,Infrastructure,Infrastructure +494239,Infrastructure,Infrastructure +492526,Infrastructure,Infrastructure +488405,Infrastructure,Infrastructure +487313,Infrastructure,Infrastructure +483244,Infrastructure,Infrastructure +483243,Infrastructure,Infrastructure +483234,Infrastructure,Infrastructure +483218,Infrastructure,Infrastructure +483201,Infrastructure,Infrastructure +483191,Infrastructure,Infrastructure +483178,Infrastructure,Infrastructure +483176,Infrastructure,Infrastructure +483143,Infrastructure,Infrastructure +483139,Infrastructure,Infrastructure +483119,Infrastructure,Infrastructure +483112,Infrastructure,Infrastructure +483109,Infrastructure,Infrastructure +483096,Infrastructure,Infrastructure +483064,Infrastructure,Infrastructure +483055,Infrastructure,Infrastructure +483054,Infrastructure,Infrastructure +483053,Infrastructure,Infrastructure +483024,Infrastructure,Infrastructure +483023,Infrastructure,Infrastructure +483009,Infrastructure,Infrastructure +483000,Infrastructure,Infrastructure +482943,Infrastructure,Infrastructure +482935,Infrastructure,Infrastructure +482934,Infrastructure,Infrastructure +482933,Infrastructure,Infrastructure +482926,Infrastructure,Infrastructure +482924,Infrastructure,Infrastructure +480473,Infrastructure,Infrastructure +476342,Infrastructure,Infrastructure +474559,Infrastructure,Infrastructure +462451,Infrastructure,Infrastructure +462450,Infrastructure,Infrastructure +450079,Infrastructure,Infrastructure +449988,Infrastructure,Infrastructure +449985,Infrastructure,Infrastructure +449983,Infrastructure,Infrastructure +448474,Infrastructure,Infrastructure +448355,Infrastructure,Infrastructure +447481,Infrastructure,Infrastructure +445996,Infrastructure,Infrastructure +445995,Infrastructure,Infrastructure +445994,Infrastructure,Infrastructure +445993,Infrastructure,Infrastructure +445992,Infrastructure,Infrastructure +445991,Infrastructure,Infrastructure +445516,Infrastructure,Infrastructure +439438,Infrastructure,Infrastructure +439437,Infrastructure,Infrastructure +439436,Infrastructure,Infrastructure +439432,Infrastructure,Infrastructure +511018,Infrastructure,Infrastructure +506225,Infrastructure,Infrastructure +476342,Health,Health +474559,Health,Health +462451,Health,Health +462450,Health,Health +450079,Health,Health +449988,Health,Health +449985,Health,Health +449983,Health,Health +448474,Health,Health +448355,Health,Health +447481,Health,Health +446257,Health,Health +445996,Health,Health +445995,Health,Health +445994,Health,Health +445993,Health,Health +445992,Health,Health +445991,Health,Health +445516,Health,Health +439438,Health,Health +439437,Health,Health +439436,Health,Health +439432,Health,Health +511018,Health,Health +506225,Health,Health +503154,Health,Health +498484,Health,Health +496144,Health,Health +495084,Health,Health +494794,Health,Health +494633,Health,Health +494281,Health,Health +494239,Health,Health +492526,Health,Health +488405,Health,Health +487313,Health,Health +483244,Health,Health +483243,Health,Health +483234,Health,Health +483218,Health,Health +483201,Health,Health +483191,Health,Health +483178,Health,Health +483176,Health,Health +483143,Health,Health +483139,Health,Health +483119,Health,Health +483112,Health,Health +483109,Health,Health +483096,Health,Health +483064,Health,Health +483055,Health,Health +483054,Health,Health +483053,Health,Health +483024,Health,Health +483023,Health,Health +483009,Health,Health +483000,Health,Health +482943,Health,Health +482935,Health,Health +482934,Health,Health +482933,Health,Health +482926,Health,Health +482924,Health,Health +480981,Health,Health +448123,Municipalities,Municipalities +525169,Municipalities,Municipalities +476479,Municipalities,Municipalities +436629,Agriculture,Agriculture +518617,Agriculture,Agriculture +476475,Agriculture,Agriculture +436628,Budget,Budget +436627,Budget,Budget +436626,Environment,Environment +518617,Environment,Environment +436631,Environment,Environment +436631,Infrastructure,Infrastructure +436628,Infrastructure,Infrastructure +476475,Infrastructure,Infrastructure +525175,Justice and Law Enforcement,Justice and Law Enforcement +518617,Justice and Law Enforcement,Justice and Law Enforcement +448126,Municipalities,Municipalities +436631,Municipalities,Municipalities +436628,Municipalities,Municipalities +436626,Municipalities,Municipalities +525175,Municipalities,Municipalities +518617,Municipalities,Municipalities +476475,Municipalities,Municipalities +456840,Economic Development,Economic Development +456839,Economic Development,Economic Development +456842,Economic Development,Economic Development +456842,Education,Education +456841,Education,Education +456840,Education,Education +456840,Employment and Training,Employment and Training +456839,Employment and Training,Employment and Training +456842,Employment and Training,Employment and Training +456842,Industry,Industry +456841,Industry,Industry +456840,Industry,Industry +456840,Labour,Labour +456839,Labour,Labour +456842,Labour,Labour +456840,Regional Development,Regional Development +456839,Regional Development,Regional Development +456842,Regional Development,Regional Development +456840,Research and Development,Research and Development +456839,Research and Development,Research and Development +456842,Research and Development,Research and Development +456840,Small Business,Small Business +456839,Small Business,Small Business +456842,Small Business,Small Business +456840,Taxation and Finance,Taxation and Finance +456839,Taxation and Finance,Taxation and Finance +456842,Taxation and Finance,Taxation and Finance +479296,Tourism,Tourism +541959,Tourism,Tourism +511067,Tourism,Tourism +438260,Energy,Energy +438259,Energy,Energy +438259,Environment,Environment +438259,Transportation,Transportation +438266,Energy,Energy +438265,Energy,Energy +438266,Environment,Environment +438266,Transportation,Transportation +438263,Energy,Energy +438261,Energy,Energy +438263,Environment,Environment +438263,Transportation,Transportation +437079,Health,Health +497102,Health,Health +496605,Health,Health +469720,Health,Health +485166,Small Business,Small Business +485160,Small Business,Small Business +444981,Energy,Energy +487240,Tourism,Tourism +475115,Tourism,Tourism +492458,Tourism,Tourism +492457,Tourism,Tourism +492456,Tourism,Tourism +492455,Tourism,Tourism +457998,Health,Health +451476,Health,Health +439837,Economic Development,Economic Development +439835,Economic Development,Economic Development +443357,Government Procurement,Government Procurement +443355,Government Procurement,Government Procurement +443356,Health,Health +443349,Health,Health +446521,Economic Development,Economic Development +483784,Economic Development,Economic Development +483783,Economic Development,Economic Development +479248,Economic Development,Economic Development +479247,Economic Development,Economic Development +478488,Economic Development,Economic Development +476688,Economic Development,Economic Development +474372,Economic Development,Economic Development +474370,Economic Development,Economic Development +462232,Economic Development,Economic Development +461115,Economic Development,Economic Development +453920,Economic Development,Economic Development +453919,Economic Development,Economic Development +453918,Economic Development,Economic Development +450890,Economic Development,Economic Development +450889,Economic Development,Economic Development +543160,Economic Development,Economic Development +539122,Economic Development,Economic Development +533387,Economic Development,Economic Development +533385,Economic Development,Economic Development +527758,Economic Development,Economic Development +521499,Economic Development,Economic Development +521490,Economic Development,Economic Development +516849,Economic Development,Economic Development +516848,Economic Development,Economic Development +516847,Economic Development,Economic Development +516841,Economic Development,Economic Development +510113,Economic Development,Economic Development +507564,Economic Development,Economic Development +507561,Economic Development,Economic Development +505173,Economic Development,Economic Development +503635,Economic Development,Economic Development +503631,Economic Development,Economic Development +501075,Economic Development,Economic Development +501073,Economic Development,Economic Development +501072,Economic Development,Economic Development +497220,Economic Development,Economic Development +492694,Economic Development,Economic Development +492693,Economic Development,Economic Development +489380,Economic Development,Economic Development +489379,Economic Development,Economic Development +489378,Economic Development,Economic Development +489377,Economic Development,Economic Development +489376,Economic Development,Economic Development +489375,Economic Development,Economic Development +489374,Economic Development,Economic Development +489373,Economic Development,Economic Development +489370,Economic Development,Economic Development +489369,Economic Development,Economic Development +489368,Economic Development,Economic Development +486548,Economic Development,Economic Development +474370,Industry,Industry +462232,Industry,Industry +461115,Industry,Industry +453920,Industry,Industry +453919,Industry,Industry +450890,Industry,Industry +450889,Industry,Industry +543160,Industry,Industry +539122,Industry,Industry +533387,Industry,Industry +533385,Industry,Industry +527758,Industry,Industry +521499,Industry,Industry +521490,Industry,Industry +516849,Industry,Industry +516848,Industry,Industry +516847,Industry,Industry +516841,Industry,Industry +510113,Industry,Industry +507564,Industry,Industry +505173,Industry,Industry +503635,Industry,Industry +503631,Industry,Industry +501075,Industry,Industry +501073,Industry,Industry +501072,Industry,Industry +497220,Industry,Industry +492694,Industry,Industry +492693,Industry,Industry +489380,Industry,Industry +489379,Industry,Industry +489378,Industry,Industry +489377,Industry,Industry +489376,Industry,Industry +489375,Industry,Industry +489374,Industry,Industry +489373,Industry,Industry +489370,Industry,Industry +489369,Industry,Industry +489368,Industry,Industry +486548,Industry,Industry +485544,Industry,Industry +483784,Industry,Industry +483783,Industry,Industry +479248,Industry,Industry +479247,Industry,Industry +478488,Industry,Industry +476688,Industry,Industry +516847,International Trade,International Trade +516841,International Trade,International Trade +507564,International Trade,International Trade +507561,International Trade,International Trade +497220,International Trade,International Trade +492694,International Trade,International Trade +492693,International Trade,International Trade +489380,International Trade,International Trade +489379,International Trade,International Trade +489378,International Trade,International Trade +489377,International Trade,International Trade +489376,International Trade,International Trade +489375,International Trade,International Trade +489374,International Trade,International Trade +489373,International Trade,International Trade +489370,International Trade,International Trade +489369,International Trade,International Trade +489368,International Trade,International Trade +486548,International Trade,International Trade +485544,International Trade,International Trade +483784,International Trade,International Trade +483783,International Trade,International Trade +479248,International Trade,International Trade +479247,International Trade,International Trade +478488,International Trade,International Trade +453919,International Trade,International Trade +543160,International Trade,International Trade +539122,International Trade,International Trade +533387,International Trade,International Trade +533385,International Trade,International Trade +527758,International Trade,International Trade +521499,International Trade,International Trade +521490,International Trade,International Trade +516849,International Trade,International Trade +492694,Taxation and Finance,Taxation and Finance +492693,Taxation and Finance,Taxation and Finance +489380,Taxation and Finance,Taxation and Finance +489379,Taxation and Finance,Taxation and Finance +489378,Taxation and Finance,Taxation and Finance +489377,Taxation and Finance,Taxation and Finance +489376,Taxation and Finance,Taxation and Finance +489375,Taxation and Finance,Taxation and Finance +489374,Taxation and Finance,Taxation and Finance +489373,Taxation and Finance,Taxation and Finance +489370,Taxation and Finance,Taxation and Finance +489369,Taxation and Finance,Taxation and Finance +489368,Taxation and Finance,Taxation and Finance +486548,Taxation and Finance,Taxation and Finance +485544,Taxation and Finance,Taxation and Finance +483784,Taxation and Finance,Taxation and Finance +483783,Taxation and Finance,Taxation and Finance +479248,Taxation and Finance,Taxation and Finance +479247,Taxation and Finance,Taxation and Finance +476688,Taxation and Finance,Taxation and Finance +474372,Taxation and Finance,Taxation and Finance +474370,Taxation and Finance,Taxation and Finance +543160,Taxation and Finance,Taxation and Finance +539122,Taxation and Finance,Taxation and Finance +533387,Taxation and Finance,Taxation and Finance +533385,Taxation and Finance,Taxation and Finance +527758,Taxation and Finance,Taxation and Finance +521499,Taxation and Finance,Taxation and Finance +521490,Taxation and Finance,Taxation and Finance +516849,Taxation and Finance,Taxation and Finance +516848,Taxation and Finance,Taxation and Finance +516847,Taxation and Finance,Taxation and Finance +516841,Taxation and Finance,Taxation and Finance +507564,Intellectual Property,Intellectual Property +507561,Intellectual Property,Intellectual Property +505173,Intellectual Property,Intellectual Property +503635,Intellectual Property,Intellectual Property +503631,Intellectual Property,Intellectual Property +497220,Intellectual Property,Intellectual Property +492694,Intellectual Property,Intellectual Property +492693,Intellectual Property,Intellectual Property +489380,Intellectual Property,Intellectual Property +489379,Intellectual Property,Intellectual Property +489378,Intellectual Property,Intellectual Property +489377,Intellectual Property,Intellectual Property +489376,Intellectual Property,Intellectual Property +489375,Intellectual Property,Intellectual Property +489374,Intellectual Property,Intellectual Property +489373,Intellectual Property,Intellectual Property +489370,Intellectual Property,Intellectual Property +489369,Intellectual Property,Intellectual Property +489368,Intellectual Property,Intellectual Property +486548,Intellectual Property,Intellectual Property +485544,Intellectual Property,Intellectual Property +483784,Intellectual Property,Intellectual Property +483783,Intellectual Property,Intellectual Property +479248,Intellectual Property,Intellectual Property +479247,Intellectual Property,Intellectual Property +478488,Intellectual Property,Intellectual Property +474372,Intellectual Property,Intellectual Property +474370,Intellectual Property,Intellectual Property +450890,Intellectual Property,Intellectual Property +543160,Intellectual Property,Intellectual Property +539122,Intellectual Property,Intellectual Property +533387,Intellectual Property,Intellectual Property +533385,Intellectual Property,Intellectual Property +527758,Intellectual Property,Intellectual Property +521499,Intellectual Property,Intellectual Property +521490,Intellectual Property,Intellectual Property +516849,Intellectual Property,Intellectual Property +516848,Intellectual Property,Intellectual Property +516847,Intellectual Property,Intellectual Property +516841,Intellectual Property,Intellectual Property +450890,Health,Health +450889,Health,Health +543160,Health,Health +539122,Health,Health +533387,Health,Health +533385,Health,Health +527758,Health,Health +521499,Health,Health +521490,Health,Health +516849,Health,Health +516848,Health,Health +516847,Health,Health +516841,Health,Health +510113,Health,Health +507564,Health,Health +507561,Health,Health +505173,Health,Health +503635,Health,Health +503631,Health,Health +501075,Health,Health +501073,Health,Health +501072,Health,Health +497220,Health,Health +492694,Health,Health +492693,Health,Health +489380,Health,Health +489379,Health,Health +489378,Health,Health +489377,Health,Health +489376,Health,Health +489375,Health,Health +489374,Health,Health +489373,Health,Health +489370,Health,Health +489369,Health,Health +489368,Health,Health +486548,Health,Health +485544,Health,Health +483784,Health,Health +483783,Health,Health +479248,Health,Health +479247,Health,Health +478488,Health,Health +476688,Health,Health +474372,Health,Health +474370,Health,Health +462232,Health,Health +461115,Health,Health +453920,Health,Health +453919,Health,Health +438573,Defence,Defence +438542,Defence,Defence +441362,Defence,Defence +441360,Defence,Defence +438759,Defence,Defence +438603,Defence,Defence +438598,Defence,Defence +438596,Defence,Defence +438573,Employment and Training,Employment and Training +438542,Employment and Training,Employment and Training +441362,Employment and Training,Employment and Training +441360,Employment and Training,Employment and Training +438759,Employment and Training,Employment and Training +438603,Employment and Training,Employment and Training +438598,Employment and Training,Employment and Training +438596,Employment and Training,Employment and Training +438573,Government Procurement,Government Procurement +438542,Government Procurement,Government Procurement +441362,Government Procurement,Government Procurement +441360,Government Procurement,Government Procurement +438759,Government Procurement,Government Procurement +438603,Government Procurement,Government Procurement +438598,Government Procurement,Government Procurement +438596,Government Procurement,Government Procurement +441037,Education,Education +441036,Education,Education +448720,Education,Education +441040,Education,Education +441039,Education,Education +442884,Employment and Training,Employment and Training +442130,Financial Institutions,Financial Institutions +442126,Financial Institutions,Financial Institutions +442158,Financial Institutions,Financial Institutions +442156,Financial Institutions,Financial Institutions +480328,Consumer Issues,Consumer Issues +450938,Consumer Issues,Consumer Issues +527077,Consumer Issues,Consumer Issues +527077,Economic Development,Economic Development +520808,Economic Development,Economic Development +485519,Economic Development,Economic Development +485517,Economic Development,Economic Development +480328,Economic Development,Economic Development +450938,Economic Development,Economic Development +440918,Economic Development,Economic Development +440904,Economic Development,Economic Development +440903,Economic Development,Economic Development +440902,Economic Development,Economic Development +440902,Small Business,Small Business +485517,Small Business,Small Business +440918,Small Business,Small Business +440904,Small Business,Small Business +454187,Economic Development,Economic Development +451933,Economic Development,Economic Development +460560,Economic Development,Economic Development +460046,Economic Development,Economic Development +456682,Economic Development,Economic Development +460046,Industry,Industry +454187,Industry,Industry +500316,Official Languages,Official Languages +456297,Official Languages,Official Languages +526428,Official Languages,Official Languages +526427,Official Languages,Official Languages +526396,Official Languages,Official Languages +514462,Official Languages,Official Languages +500630,Official Languages,Official Languages +500334,Official Languages,Official Languages +500333,Official Languages,Official Languages +500331,Official Languages,Official Languages +500330,Official Languages,Official Languages +500328,Official Languages,Official Languages +500325,Official Languages,Official Languages +500321,Official Languages,Official Languages +511723,Transportation,Transportation +450942,Transportation,Transportation +440822,Health,Health +440821,Health,Health +440822,Justice and Law Enforcement,Justice and Law Enforcement +440821,Justice and Law Enforcement,Justice and Law Enforcement +440822,Government Procurement,Government Procurement +440821,Government Procurement,Government Procurement +443477,Economic Development,Economic Development +443476,Economic Development,Economic Development +443477,Small Business,Small Business +443476,Small Business,Small Business +479152,Health,Health +475124,Health,Health +437038,Fisheries,Fisheries +437034,Fisheries,Fisheries +448069,Fisheries,Fisheries +439286,Fisheries,Fisheries +439285,Fisheries,Fisheries +439280,Fisheries,Fisheries +437046,Fisheries,Fisheries +437041,Fisheries,Fisheries +455105,Taxation and Finance,Taxation and Finance +455098,Taxation and Finance,Taxation and Finance +444491,Taxation and Finance,Taxation and Finance +527087,Labour,Labour +525928,Labour,Labour +488269,Labour,Labour +475923,Labour,Labour +471674,Labour,Labour +465892,Labour,Labour +437076,Labour,Labour +540183,Labour,Labour +533172,Labour,Labour +533171,Labour,Labour +533170,Labour,Labour +533169,Labour,Labour +533164,Labour,Labour +531901,Labour,Labour +531897,Labour,Labour +442381,Employment and Training,Employment and Training +491878,Sports,Sports +489434,Sports,Sports +489433,Sports,Sports +488540,Sports,Sports +488536,Sports,Sports +486474,Sports,Sports +485940,Sports,Sports +485785,Sports,Sports +485740,Sports,Sports +478680,Sports,Sports +478501,Sports,Sports +478491,Sports,Sports +477946,Sports,Sports +476300,Sports,Sports +474125,Sports,Sports +472116,Sports,Sports +471648,Sports,Sports +471546,Sports,Sports +471496,Sports,Sports +470578,Sports,Sports +469468,Sports,Sports +469384,Sports,Sports +469370,Sports,Sports +469369,Sports,Sports +461962,Sports,Sports +500383,Sports,Sports +461962,Immigration,Immigration +460397,Immigration,Immigration +463323,Immigration,Immigration +469369,Agriculture,Agriculture +463323,Agriculture,Agriculture +500383,Agriculture,Agriculture +496967,Agriculture,Agriculture +491878,Agriculture,Agriculture +489434,Agriculture,Agriculture +489433,Agriculture,Agriculture +488540,Agriculture,Agriculture +488536,Agriculture,Agriculture +486474,Agriculture,Agriculture +485785,Agriculture,Agriculture +485740,Agriculture,Agriculture +478501,Agriculture,Agriculture +476300,Agriculture,Agriculture +474125,Agriculture,Agriculture +472116,Agriculture,Agriculture +471648,Agriculture,Agriculture +471546,Agriculture,Agriculture +471496,Agriculture,Agriculture +470578,Agriculture,Agriculture +469468,Agriculture,Agriculture +461962,Justice and Law Enforcement,Justice and Law Enforcement +500383,Justice and Law Enforcement,Justice and Law Enforcement +496967,Justice and Law Enforcement,Justice and Law Enforcement +491878,Justice and Law Enforcement,Justice and Law Enforcement +489434,Justice and Law Enforcement,Justice and Law Enforcement +489433,Justice and Law Enforcement,Justice and Law Enforcement +488540,Justice and Law Enforcement,Justice and Law Enforcement +488536,Justice and Law Enforcement,Justice and Law Enforcement +486474,Justice and Law Enforcement,Justice and Law Enforcement +485940,Justice and Law Enforcement,Justice and Law Enforcement +485785,Justice and Law Enforcement,Justice and Law Enforcement +485740,Justice and Law Enforcement,Justice and Law Enforcement +478680,Justice and Law Enforcement,Justice and Law Enforcement +478501,Justice and Law Enforcement,Justice and Law Enforcement +478491,Justice and Law Enforcement,Justice and Law Enforcement +477946,Justice and Law Enforcement,Justice and Law Enforcement +476300,Justice and Law Enforcement,Justice and Law Enforcement +474125,Justice and Law Enforcement,Justice and Law Enforcement +472116,Justice and Law Enforcement,Justice and Law Enforcement +471648,Justice and Law Enforcement,Justice and Law Enforcement +471546,Justice and Law Enforcement,Justice and Law Enforcement +471496,Justice and Law Enforcement,Justice and Law Enforcement +470578,Justice and Law Enforcement,Justice and Law Enforcement +469468,Justice and Law Enforcement,Justice and Law Enforcement +469384,Justice and Law Enforcement,Justice and Law Enforcement +469370,Justice and Law Enforcement,Justice and Law Enforcement +469384,Employment and Training,Employment and Training +469369,Employment and Training,Employment and Training +472116,Employment and Training,Employment and Training +471648,Employment and Training,Employment and Training +471496,Employment and Training,Employment and Training +470578,Employment and Training,Employment and Training +463730,International Trade,International Trade +513037,Employment and Training,Employment and Training +510840,Employment and Training,Employment and Training +437662,Employment and Training,Employment and Training +437659,Employment and Training,Employment and Training +437653,Employment and Training,Employment and Training +437652,Employment and Training,Employment and Training +437356,Employment and Training,Employment and Training +490887,Employment and Training,Employment and Training +487337,Employment and Training,Employment and Training +484403,Employment and Training,Employment and Training +477211,Employment and Training,Employment and Training +474457,Employment and Training,Employment and Training +474455,Employment and Training,Employment and Training +474396,Employment and Training,Employment and Training +474395,Employment and Training,Employment and Training +472627,Employment and Training,Employment and Training +472626,Employment and Training,Employment and Training +472625,Employment and Training,Employment and Training +472624,Employment and Training,Employment and Training +463732,Employment and Training,Employment and Training +462197,Employment and Training,Employment and Training +461235,Employment and Training,Employment and Training +460542,Employment and Training,Employment and Training +459941,Employment and Training,Employment and Training +458191,Employment and Training,Employment and Training +458090,Employment and Training,Employment and Training +458089,Employment and Training,Employment and Training +458088,Employment and Training,Employment and Training +454695,Employment and Training,Employment and Training +454693,Employment and Training,Employment and Training +453600,Employment and Training,Employment and Training +453597,Employment and Training,Employment and Training +453594,Employment and Training,Employment and Training +453588,Employment and Training,Employment and Training +453583,Employment and Training,Employment and Training +452256,Employment and Training,Employment and Training +452254,Employment and Training,Employment and Training +449299,Employment and Training,Employment and Training +449298,Employment and Training,Employment and Training +449294,Employment and Training,Employment and Training +444223,Employment and Training,Employment and Training +444061,Employment and Training,Employment and Training +444060,Employment and Training,Employment and Training +440525,Employment and Training,Employment and Training +440524,Employment and Training,Employment and Training +440523,Employment and Training,Employment and Training +440521,Employment and Training,Employment and Training +440510,Employment and Training,Employment and Training +440496,Employment and Training,Employment and Training +440493,Employment and Training,Employment and Training +440491,Employment and Training,Employment and Training +440489,Employment and Training,Employment and Training +440486,Employment and Training,Employment and Training +440485,Employment and Training,Employment and Training +440479,Employment and Training,Employment and Training +439942,Employment and Training,Employment and Training +437675,Employment and Training,Employment and Training +437671,Employment and Training,Employment and Training +437669,Employment and Training,Employment and Training +437663,Employment and Training,Employment and Training +532542,Employment and Training,Employment and Training +454477,Industry,Industry +451543,Industry,Industry +439254,Economic Development,Economic Development +439250,Economic Development,Economic Development +439250,Industry,Industry +509354,Mining,Mining +503198,Mining,Mining +441320,Mining,Mining +441319,Mining,Mining +441319,Economic Development,Economic Development +441318,Economic Development,Economic Development +509354,Economic Development,Economic Development +441319,Environment,Environment +441318,Environment,Environment +509354,Environment,Environment +503198,Environment,Environment +440988,Health,Health +440988,Taxation and Finance,Taxation and Finance +442933,Immigration,Immigration +442932,Immigration,Immigration +457904,Immigration,Immigration +456955,Immigration,Immigration +453185,Immigration,Immigration +442938,Immigration,Immigration +442937,Immigration,Immigration +442936,Immigration,Immigration +442935,Immigration,Immigration +438101,Government Procurement,Government Procurement +512488,Employment and Training,Employment and Training +467528,International Trade,International Trade +437563,International Trade,International Trade +467779,International Trade,International Trade +467528,Small Business,Small Business +437563,Small Business,Small Business +467779,Small Business,Small Business +456681,Transportation,Transportation +441597,Energy,Energy +441596,Energy,Energy +441597,Environment,Environment +441596,Environment,Environment +441597,International Trade,International Trade +441596,International Trade,International Trade +447488,Energy,Energy +447484,Energy,Energy +441594,Energy,Energy +452846,Energy,Energy +452837,Energy,Energy +452835,Energy,Energy +452834,Energy,Energy +452832,Energy,Energy +452828,Energy,Energy +449722,Energy,Energy +447491,Energy,Energy +447484,Environment,Environment +441594,Environment,Environment +452846,Environment,Environment +452837,Environment,Environment +452835,Environment,Environment +452834,Environment,Environment +452832,Environment,Environment +452828,Environment,Environment +449722,Environment,Environment +447491,Environment,Environment +447489,Environment,Environment +437757,Internal Trade,Internal Trade +437754,Internal Trade,Internal Trade +446432,Internal Trade,Internal Trade +442848,Infrastructure,Infrastructure +442845,Infrastructure,Infrastructure +445473,Infrastructure,Infrastructure +445471,Infrastructure,Infrastructure +445468,Infrastructure,Infrastructure +442848,Tourism,Tourism +442842,Tourism,Tourism +445468,Tourism,Tourism +442848,Environment,Environment +442845,Environment,Environment +443795,Regional Development,Regional Development +442848,Regional Development,Regional Development +459620,Energy,Energy +459615,Energy,Energy +452546,Energy,Energy +448688,Energy,Energy +448686,Energy,Energy +442046,Energy,Energy +442042,Energy,Energy +437849,Energy,Energy +457848,Infrastructure,Infrastructure +442289,Energy,Energy +456050,Economic Development,Economic Development +442287,Economic Development,Economic Development +487311,Economic Development,Economic Development +487307,Economic Development,Economic Development +487306,Economic Development,Economic Development +466333,Economic Development,Economic Development +466330,Economic Development,Economic Development +442287,Energy,Energy +437928,Energy,Energy +487311,Energy,Energy +487307,Energy,Energy +487306,Energy,Energy +466333,Energy,Energy +466330,Energy,Energy +456055,Energy,Energy +466330,Environment,Environment +442287,Environment,Environment +456050,Infrastructure,Infrastructure +442287,Infrastructure,Infrastructure +487311,Infrastructure,Infrastructure +487307,Infrastructure,Infrastructure +487306,Infrastructure,Infrastructure +466333,Infrastructure,Infrastructure +466330,Infrastructure,Infrastructure +456063,Environment,Environment +437930,Environment,Environment +457126,Consumer Issues,Consumer Issues +441789,Consumer Issues,Consumer Issues +483035,Consumer Issues,Consumer Issues +441795,Economic Development,Economic Development +441789,Economic Development,Economic Development +483035,Economic Development,Economic Development +457126,Economic Development,Economic Development +451138,Economic Development,Economic Development +451136,Economic Development,Economic Development +451132,Economic Development,Economic Development +451129,Economic Development,Economic Development +451132,Financial Institutions,Financial Institutions +447020,Financial Institutions,Financial Institutions +533750,Financial Institutions,Financial Institutions +524811,Financial Institutions,Financial Institutions +524808,Financial Institutions,Financial Institutions +524807,Financial Institutions,Financial Institutions +483035,Financial Institutions,Financial Institutions +441789,International Trade,International Trade +441795,Small Business,Small Business +441789,Small Business,Small Business +483035,Small Business,Small Business +457128,Small Business,Small Business +451138,Small Business,Small Business +451136,Small Business,Small Business +451132,Small Business,Small Business +451129,Small Business,Small Business +538667,Labour,Labour +472718,Labour,Labour +537880,Education,Education +537874,Education,Education +451812,Education,Education +451809,Education,Education +451808,Education,Education +451807,Education,Education +451800,Education,Education +447532,Education,Education +447529,Education,Education +447526,Education,Education +447516,Education,Education +440820,Education,Education +440819,Education,Education +440818,Education,Education +537880,Health,Health +537874,Health,Health +451812,Health,Health +451809,Health,Health +451808,Health,Health +451807,Health,Health +451805,Health,Health +451803,Health,Health +451801,Health,Health +451800,Health,Health +447532,Health,Health +447529,Health,Health +447526,Health,Health +447516,Health,Health +440820,Health,Health +440819,Health,Health +440818,Health,Health +440818,Regional Development,Regional Development +440817,Regional Development,Regional Development +537880,Regional Development,Regional Development +537874,Regional Development,Regional Development +451812,Regional Development,Regional Development +451809,Regional Development,Regional Development +451808,Regional Development,Regional Development +451807,Regional Development,Regional Development +451800,Regional Development,Regional Development +447532,Regional Development,Regional Development +447529,Regional Development,Regional Development +447526,Regional Development,Regional Development +447516,Regional Development,Regional Development +440820,Regional Development,Regional Development +537880,Employment and Training,Employment and Training +537874,Employment and Training,Employment and Training +451812,Employment and Training,Employment and Training +451809,Employment and Training,Employment and Training +451808,Employment and Training,Employment and Training +451807,Employment and Training,Employment and Training +451800,Employment and Training,Employment and Training +447532,Employment and Training,Employment and Training +447529,Employment and Training,Employment and Training +447526,Employment and Training,Employment and Training +447516,Employment and Training,Employment and Training +440820,Employment and Training,Employment and Training +440819,Employment and Training,Employment and Training +440818,Employment and Training,Employment and Training +537880,Economic Development,Economic Development +537874,Economic Development,Economic Development +451812,Economic Development,Economic Development +451809,Economic Development,Economic Development +451808,Economic Development,Economic Development +451807,Economic Development,Economic Development +451800,Economic Development,Economic Development +447532,Economic Development,Economic Development +447529,Economic Development,Economic Development +447526,Economic Development,Economic Development +447516,Economic Development,Economic Development +440820,Economic Development,Economic Development +440819,Economic Development,Economic Development +440818,Economic Development,Economic Development +537880,Research and Development,Research and Development +537874,Research and Development,Research and Development +451812,Research and Development,Research and Development +451809,Research and Development,Research and Development +451808,Research and Development,Research and Development +451807,Research and Development,Research and Development +451800,Research and Development,Research and Development +447532,Research and Development,Research and Development +447529,Research and Development,Research and Development +447526,Research and Development,Research and Development +447516,Research and Development,Research and Development +440820,Research and Development,Research and Development +440819,Research and Development,Research and Development +440818,Research and Development,Research and Development +442806,Economic Development,Economic Development +442804,Economic Development,Economic Development +450249,Economic Development,Economic Development +442806,Agriculture,Agriculture +442804,Agriculture,Agriculture +508101,Climate,Climate +502536,Climate,Climate +531952,Climate,Climate +531951,Climate,Climate +518216,Climate,Climate +512712,Climate,Climate +512711,Climate,Climate +510641,Climate,Climate +502546,Economic Development,Economic Development +502536,Economic Development,Economic Development +510516,Economic Development,Economic Development +508115,Economic Development,Economic Development +508107,Economic Development,Economic Development +508101,Economic Development,Economic Development +505204,Energy,Energy +502536,Energy,Energy +544022,Energy,Energy +544019,Energy,Energy +544015,Energy,Energy +541930,Energy,Energy +541925,Energy,Energy +541922,Energy,Energy +540247,Energy,Energy +540243,Energy,Energy +540242,Energy,Energy +540240,Energy,Energy +540239,Energy,Energy +540238,Energy,Energy +540237,Energy,Energy +538525,Energy,Energy +538524,Energy,Energy +538523,Energy,Energy +538521,Energy,Energy +538520,Energy,Energy +538519,Energy,Energy +538514,Energy,Energy +535766,Energy,Energy +535764,Energy,Energy +535761,Energy,Energy +535758,Energy,Energy +535752,Energy,Energy +535749,Energy,Energy +535748,Energy,Energy +531952,Energy,Energy +531951,Energy,Energy +529237,Energy,Energy +529231,Energy,Energy +529227,Energy,Energy +526450,Energy,Energy +526449,Energy,Energy +523192,Energy,Energy +523189,Energy,Energy +523186,Energy,Energy +519958,Energy,Energy +519955,Energy,Energy +519951,Energy,Energy +519949,Energy,Energy +518217,Energy,Energy +518216,Energy,Energy +518214,Energy,Energy +515678,Energy,Energy +515673,Energy,Energy +515663,Energy,Energy +515661,Energy,Energy +513961,Energy,Energy +512712,Energy,Energy +512711,Energy,Energy +508107,Energy,Energy +512711,Environment,Environment +508101,Environment,Environment +540247,Environment,Environment +540243,Environment,Environment +540242,Environment,Environment +540240,Environment,Environment +540239,Environment,Environment +540238,Environment,Environment +538525,Environment,Environment +538524,Environment,Environment +538523,Environment,Environment +538521,Environment,Environment +538520,Environment,Environment +538519,Environment,Environment +538514,Environment,Environment +535766,Environment,Environment +535764,Environment,Environment +535761,Environment,Environment +535758,Environment,Environment +535752,Environment,Environment +535749,Environment,Environment +535748,Environment,Environment +531952,Environment,Environment +531951,Environment,Environment +518216,Environment,Environment +515678,Environment,Environment +515673,Environment,Environment +515663,Environment,Environment +515661,Environment,Environment +513961,Environment,Environment +508119,Industry,Industry +508111,Industry,Industry +514002,Industry,Industry +512711,Industry,Industry +510641,Industry,Industry +510522,Taxation and Finance,Taxation and Finance +541930,Taxation and Finance,Taxation and Finance +540237,Taxation and Finance,Taxation and Finance +526449,Taxation and Finance,Taxation and Finance +515678,Taxation and Finance,Taxation and Finance +515673,Taxation and Finance,Taxation and Finance +515663,Taxation and Finance,Taxation and Finance +529227,Transportation,Transportation +510641,Transportation,Transportation +544022,Transportation,Transportation +544019,Transportation,Transportation +544015,Transportation,Transportation +541922,Transportation,Transportation +447863,Economic Development,Economic Development +447858,Economic Development,Economic Development +447858,Energy,Energy +442970,Energy,Energy +453144,Energy,Energy +453142,Energy,Energy +447865,Energy,Energy +447863,Industry,Industry +447858,Industry,Industry +453144,Industry,Industry +453142,Industry,Industry +453142,Transportation,Transportation +460492,Climate,Climate +460198,Climate,Climate +495573,Climate,Climate +480113,Climate,Climate +480111,Climate,Climate +474690,Climate,Climate +474689,Climate,Climate +474688,Climate,Climate +474687,Climate,Climate +474686,Climate,Climate +474685,Climate,Climate +474684,Climate,Climate +474683,Climate,Climate +472168,Climate,Climate +472166,Climate,Climate +470034,Climate,Climate +470033,Climate,Climate +470032,Climate,Climate +470031,Climate,Climate +470030,Climate,Climate +470029,Climate,Climate +470028,Climate,Climate +467268,Climate,Climate +467266,Climate,Climate +465333,Climate,Climate +462653,Climate,Climate +461825,Climate,Climate +461824,Climate,Climate +460492,Economic Development,Economic Development +456707,Economic Development,Economic Development +508795,Economic Development,Economic Development +495573,Economic Development,Economic Development +480113,Economic Development,Economic Development +480111,Economic Development,Economic Development +474690,Economic Development,Economic Development +474689,Economic Development,Economic Development +474688,Economic Development,Economic Development +474687,Economic Development,Economic Development +474686,Economic Development,Economic Development +474685,Economic Development,Economic Development +474684,Economic Development,Economic Development +474683,Economic Development,Economic Development +472168,Economic Development,Economic Development +472166,Economic Development,Economic Development +470034,Economic Development,Economic Development +470033,Economic Development,Economic Development +470032,Economic Development,Economic Development +470031,Economic Development,Economic Development +470030,Economic Development,Economic Development +470029,Economic Development,Economic Development +470028,Economic Development,Economic Development +467268,Economic Development,Economic Development +467266,Economic Development,Economic Development +465333,Economic Development,Economic Development +462653,Economic Development,Economic Development +461825,Economic Development,Economic Development +461824,Economic Development,Economic Development +480113,Energy,Energy +480111,Energy,Energy +474690,Energy,Energy +474689,Energy,Energy +474688,Energy,Energy +474687,Energy,Energy +474686,Energy,Energy +474685,Energy,Energy +474684,Energy,Energy +474683,Energy,Energy +472168,Energy,Energy +472166,Energy,Energy +470034,Energy,Energy +470033,Energy,Energy +470032,Energy,Energy +470031,Energy,Energy +470030,Energy,Energy +470029,Energy,Energy +470028,Energy,Energy +467268,Energy,Energy +467266,Energy,Energy +465333,Energy,Energy +465052,Energy,Energy +465051,Energy,Energy +465049,Energy,Energy +465048,Energy,Energy +462653,Energy,Energy +461825,Energy,Energy +461824,Energy,Energy +461823,Energy,Energy +460492,Energy,Energy +460198,Energy,Energy +456707,Energy,Energy +447504,Energy,Energy +447345,Energy,Energy +447343,Energy,Energy +447342,Energy,Energy +442520,Energy,Energy +442515,Energy,Energy +442512,Energy,Energy +442509,Energy,Energy +508795,Energy,Energy +505545,Energy,Energy +470031,Environment,Environment +470030,Environment,Environment +470029,Environment,Environment +470028,Environment,Environment +467268,Environment,Environment +467266,Environment,Environment +465333,Environment,Environment +465052,Environment,Environment +465051,Environment,Environment +465049,Environment,Environment +465048,Environment,Environment +462653,Environment,Environment +461825,Environment,Environment +461824,Environment,Environment +461823,Environment,Environment +460492,Environment,Environment +460198,Environment,Environment +456707,Environment,Environment +447504,Environment,Environment +447345,Environment,Environment +447343,Environment,Environment +447342,Environment,Environment +442520,Environment,Environment +442515,Environment,Environment +442512,Environment,Environment +442509,Environment,Environment +508795,Environment,Environment +495573,Environment,Environment +480113,Environment,Environment +480111,Environment,Environment +474690,Environment,Environment +474689,Environment,Environment +474688,Environment,Environment +474687,Environment,Environment +474686,Environment,Environment +474685,Environment,Environment +474684,Environment,Environment +474683,Environment,Environment +472168,Environment,Environment +472166,Environment,Environment +470034,Environment,Environment +470033,Environment,Environment +461824,Forestry,Forestry +461823,Forestry,Forestry +495573,Forestry,Forestry +480113,Forestry,Forestry +480111,Forestry,Forestry +474690,Forestry,Forestry +474689,Forestry,Forestry +474688,Forestry,Forestry +474687,Forestry,Forestry +474686,Forestry,Forestry +474685,Forestry,Forestry +474684,Forestry,Forestry +474683,Forestry,Forestry +472168,Forestry,Forestry +472166,Forestry,Forestry +470034,Forestry,Forestry +470033,Forestry,Forestry +470032,Forestry,Forestry +470031,Forestry,Forestry +470030,Forestry,Forestry +470029,Forestry,Forestry +470028,Forestry,Forestry +467268,Forestry,Forestry +467266,Forestry,Forestry +465333,Forestry,Forestry +461823,Industry,Industry +460492,Industry,Industry +495573,Industry,Industry +480113,Industry,Industry +480111,Industry,Industry +474690,Industry,Industry +474689,Industry,Industry +474688,Industry,Industry +474687,Industry,Industry +474686,Industry,Industry +474685,Industry,Industry +474684,Industry,Industry +474683,Industry,Industry +472168,Industry,Industry +472166,Industry,Industry +465333,Industry,Industry +461825,Industry,Industry +461825,Infrastructure,Infrastructure +461824,Infrastructure,Infrastructure +461823,Infrastructure,Infrastructure +460492,Infrastructure,Infrastructure +456707,Infrastructure,Infrastructure +508795,Infrastructure,Infrastructure +495573,Infrastructure,Infrastructure +480113,Infrastructure,Infrastructure +480111,Infrastructure,Infrastructure +474690,Infrastructure,Infrastructure +474689,Infrastructure,Infrastructure +474688,Infrastructure,Infrastructure +502872,Consumer Issues,Consumer Issues +475993,Government Procurement,Government Procurement +505836,Industry,Industry +505836,Economic Development,Economic Development +473638,Health,Health +462030,Taxation and Finance,Taxation and Finance +437095,Budget,Budget +524869,Research and Development,Research and Development +439430,Health,Health +465729,Climate,Climate +449422,Environment,Environment +437935,Fisheries,Fisheries +465729,Taxation and Finance,Taxation and Finance +448427,Industry,Industry +518638,Climate,Climate +518638,Energy,Energy +525173,Justice and Law Enforcement,Justice and Law Enforcement +518638,Taxation and Finance,Taxation and Finance +469463,Infrastructure,Infrastructure +469463,Municipalities,Municipalities +439963,Health,Health +471751,Economic Development,Economic Development +448834,Industry,Industry +436555,Industry,Industry +447034,Internal Trade,Internal Trade +442796,International Development,International Development +442795,International Relations,International Relations +442796,International Trade,International Trade +447030,Regional Development,Regional Development +436568,Security,Security +436573,Defence,Defence +436930,Labour,Labour +503154,Infrastructure,Infrastructure +480473,Health,Health +469459,Municipalities,Municipalities +439159,Economic Development,Economic Development +469465,Agriculture,Agriculture +518617,Budget,Budget +518617,Climate,Climate +518617,Energy,Energy +436630,Environment,Environment +469465,Infrastructure,Infrastructure +436631,Justice and Law Enforcement,Justice and Law Enforcement +469465,Municipalities,Municipalities +518617,Taxation and Finance,Taxation and Finance +518617,Transportation,Transportation +456841,Economic Development,Economic Development +456839,Education,Education +456841,Employment and Training,Employment and Training +456839,Industry,Industry +456841,Labour,Labour +456841,Regional Development,Regional Development +456841,Research and Development,Research and Development +456841,Small Business,Small Business +456841,Taxation and Finance,Taxation and Finance +436798,Transportation,Transportation +511064,Tourism,Tourism +438262,Energy,Energy +438260,Environment,Environment +438260,Transportation,Transportation +438267,Energy,Energy +438267,Environment,Environment +438267,Transportation,Transportation +438264,Energy,Energy +438264,Environment,Environment +438264,Transportation,Transportation +436734,International Trade,International Trade +436734,Taxation and Finance,Taxation and Finance +437411,Taxation and Finance,Taxation and Finance +437411,Health,Health +453201,Health,Health +516343,Economic Development,Economic Development +516343,Industry,Industry +463550,Health,Health +485199,Small Business,Small Business +458177,Government Procurement,Government Procurement +458177,Security,Security +444983,Energy,Energy +487242,Tourism,Tourism +464217,Infrastructure,Infrastructure +436801,Budget,Budget +436805,Budget,Budget +436807,Budget,Budget +436816,Religion,Religion +436828,Religion,Religion +458045,Economic Development,Economic Development +458045,Health,Health +439838,Economic Development,Economic Development +436847,Health,Health +436848,Health,Health +443358,Government Procurement,Government Procurement +443357,Health,Health +449034,Economic Development,Economic Development +485544,Economic Development,Economic Development +474372,Industry,Industry +516848,International Trade,International Trade +497220,Taxation and Finance,Taxation and Finance +510113,Intellectual Property,Intellectual Property +453918,Health,Health +438593,Defence,Defence +438593,Employment and Training,Employment and Training +438593,Government Procurement,Government Procurement +441038,Education,Education +442885,Employment and Training,Employment and Training +442133,Financial Institutions,Financial Institutions +442160,Financial Institutions,Financial Institutions +520808,Consumer Issues,Consumer Issues +531870,Economic Development,Economic Development +440903,Small Business,Small Business +456681,Economic Development,Economic Development +460560,Industry,Industry +500318,Official Languages,Official Languages +511724,International Trade,International Trade +511724,Transportation,Transportation +440823,Health,Health +440823,Justice and Law Enforcement,Justice and Law Enforcement +440823,Government Procurement,Government Procurement +440255,Health,Health +440244,Government Procurement,Government Procurement +440244,Security,Security +443478,Economic Development,Economic Development +443478,Small Business,Small Business +475119,Taxation and Finance,Taxation and Finance +487250,Health,Health +437039,Fisheries,Fisheries +437051,Privacy and Access to Information,Privacy and Access to Information +441600,International Relations,International Relations +456313,Taxation and Finance,Taxation and Finance +460862,Industry,Industry +531896,Labour,Labour +439979,Health,Health +439979,Research and Development,Research and Development +442888,Labour,Labour +442888,Employment and Training,Employment and Training +440857,Industry,Industry +440857,Health,Health +437198,International Trade,International Trade +437201,Pensions,Pensions +437227,International Trade,International Trade +496967,Sports,Sports +478491,Budget,Budget +463119,Immigration,Immigration +469384,Agriculture,Agriculture +469369,Justice and Law Enforcement,Justice and Law Enforcement +469468,Employment and Training,Employment and Training +463119,Economic Development,Economic Development +470578,Tourism,Tourism +441611,International Relations,International Relations +463731,International Trade,International Trade +531727,Employment and Training,Employment and Training +454479,Industry,Industry +439257,Economic Development,Economic Development +439257,Industry,Industry +440638,Industry,Industry +441318,Mining,Mining +503198,Economic Development,Economic Development +509354,Fisheries,Fisheries +441320,Environment,Environment +440989,Health,Health +440989,Taxation and Finance,Taxation and Finance +437449,Taxation and Finance,Taxation and Finance +437449,Labour,Labour +437451,Taxation and Finance,Taxation and Finance +437451,Labour,Labour +442934,Immigration,Immigration +446368,Health,Health +462647,Government Procurement,Government Procurement +437508,Employment and Training,Employment and Training +437750,Health,Health +467773,International Trade,International Trade +467773,Small Business,Small Business +451933,Budget,Budget +451933,Defence,Defence +451933,International Trade,International Trade +456682,Regional Development,Regional Development +460046,Transportation,Transportation +445039,Industry,Industry +439699,Intellectual Property,Intellectual Property +439699,Privacy and Access to Information,Privacy and Access to Information +441598,Energy,Energy +441598,Environment,Environment +441598,International Trade,International Trade +447489,Energy,Energy +447488,Environment,Environment +441594,International Trade,International Trade +442971,Security,Security +437762,Internal Trade,Internal Trade +445468,Energy,Energy +442849,Infrastructure,Infrastructure +443795,Tourism,Tourism +445468,Environment,Environment +445473,Municipalities,Municipalities +445471,Regional Development,Regional Development +468282,Energy,Energy +457850,Infrastructure,Infrastructure +442289,Economic Development,Economic Development +437931,Energy,Energy +442289,Environment,Environment +442289,Infrastructure,Infrastructure +466330,Climate,Climate +456055,Economic Development,Economic Development +456050,Energy,Energy +466333,Environment,Environment +456055,Infrastructure,Infrastructure +456067,Environment,Environment +437932,Environment,Environment +437944,Privacy and Access to Information,Privacy and Access to Information +437946,Health,Health +457128,Consumer Issues,Consumer Issues +447020,Economic Development,Economic Development +457128,Financial Institutions,Financial Institutions +451138,International Trade,International Trade +447020,Small Business,Small Business +451132,Taxation and Finance,Taxation and Finance +457126,Privacy and Access to Information,Privacy and Access to Information +437968,Labour,Labour +437969,Transportation,Transportation +440817,Education,Education +440817,Health,Health +440819,Regional Development,Regional Development +440817,Employment and Training,Employment and Training +440817,Economic Development,Economic Development +440817,Research and Development,Research and Development +450247,Economic Development,Economic Development +450247,Agriculture,Agriculture +508107,Climate,Climate +505212,Economic Development,Economic Development +508101,Energy,Energy +512712,Environment,Environment +510516,Industry,Industry +529227,Infrastructure,Infrastructure +514002,International Trade,International Trade +502536,Research and Development,Research and Development +510527,Taxation and Finance,Taxation and Finance +535763,Transportation,Transportation +447865,Economic Development,Economic Development +447863,Energy,Energy +447865,Industry,Industry +442970,International Relations,International Relations +442970,International Trade,International Trade +447863,Research and Development,Research and Development +453144,Transportation,Transportation +451268,Immigration,Immigration +437311,Economic Development,Economic Development +461823,Climate,Climate +461823,Economic Development,Economic Development +495573,Energy,Energy +470032,Environment,Environment +461825,Forestry,Forestry +461824,Industry,Industry +465333,Infrastructure,Infrastructure +442515,International Trade,International Trade +456707,Regional Development,Regional Development +440465,Agriculture,Agriculture +497893,Budget,Budget +440465,Health,Health +520632,Immigration,Immigration +474687,Infrastructure,Infrastructure +474686,Infrastructure,Infrastructure +474685,Infrastructure,Infrastructure +474684,Infrastructure,Infrastructure +474683,Infrastructure,Infrastructure +472168,Infrastructure,Infrastructure +472166,Infrastructure,Infrastructure +470034,Infrastructure,Infrastructure +470033,Infrastructure,Infrastructure +470032,Infrastructure,Infrastructure +470031,Infrastructure,Infrastructure +470030,Infrastructure,Infrastructure +470029,Infrastructure,Infrastructure +470028,Infrastructure,Infrastructure +467268,Infrastructure,Infrastructure +467266,Infrastructure,Infrastructure +442512,International Trade,International Trade +442509,International Trade,International Trade +495573,International Trade,International Trade +480113,International Trade,International Trade +480111,International Trade,International Trade +474690,International Trade,International Trade +474689,International Trade,International Trade +474688,International Trade,International Trade +474687,International Trade,International Trade +474686,International Trade,International Trade +474685,International Trade,International Trade +474684,International Trade,International Trade +474683,International Trade,International Trade +472168,International Trade,International Trade +472166,International Trade,International Trade +465333,International Trade,International Trade +461825,International Trade,International Trade +461824,International Trade,International Trade +461823,International Trade,International Trade +460492,International Trade,International Trade +442520,International Trade,International Trade +508795,Regional Development,Regional Development +495573,Regional Development,Regional Development +480113,Regional Development,Regional Development +480111,Regional Development,Regional Development +474690,Regional Development,Regional Development +474689,Regional Development,Regional Development +474688,Regional Development,Regional Development +474687,Regional Development,Regional Development +474686,Regional Development,Regional Development +474685,Regional Development,Regional Development +474684,Regional Development,Regional Development +474683,Regional Development,Regional Development +472168,Regional Development,Regional Development +472166,Regional Development,Regional Development +470034,Regional Development,Regional Development +470033,Regional Development,Regional Development +470032,Regional Development,Regional Development +470031,Regional Development,Regional Development +470030,Regional Development,Regional Development +470029,Regional Development,Regional Development +470028,Regional Development,Regional Development +467268,Regional Development,Regional Development +467266,Regional Development,Regional Development +465333,Regional Development,Regional Development +462653,Regional Development,Regional Development +461825,Regional Development,Regional Development +461824,Regional Development,Regional Development +461823,Regional Development,Regional Development +460492,Regional Development,Regional Development +476613,Agriculture,Agriculture +447121,Agriculture,Agriculture +440484,Agriculture,Agriculture +440484,Budget,Budget +440465,Budget,Budget +503751,Budget,Budget +500228,Budget,Budget +500220,Budget,Budget +510266,Health,Health +503755,Health,Health +503754,Health,Health +503753,Health,Health +503752,Health,Health +503751,Health,Health +503750,Health,Health +503749,Health,Health +500220,Health,Health +497893,Health,Health +493492,Health,Health +493491,Health,Health +493487,Health,Health +492021,Health,Health +488851,Health,Health +488832,Health,Health +488831,Health,Health +488830,Health,Health +488829,Health,Health +488814,Health,Health +488812,Health,Health +488810,Health,Health +488601,Health,Health +488600,Health,Health +488599,Health,Health +488564,Health,Health +488562,Health,Health +488561,Health,Health +468487,Health,Health +461321,Health,Health +456242,Health,Health +452102,Health,Health +452100,Health,Health +452097,Health,Health +452084,Health,Health +452081,Health,Health +448905,Health,Health +448903,Health,Health +448902,Health,Health +448901,Health,Health +448900,Health,Health +447174,Health,Health +447173,Health,Health +447169,Health,Health +447168,Health,Health +447167,Health,Health +447159,Health,Health +447157,Health,Health +447155,Health,Health +447121,Health,Health +443713,Health,Health +443495,Health,Health +443491,Health,Health +443488,Health,Health +443487,Health,Health +443485,Health,Health +443482,Health,Health +443481,Health,Health +443479,Health,Health +440488,Health,Health +440484,Health,Health +520631,Immigration,Immigration +520630,Immigration,Immigration +520629,Immigration,Immigration +520627,Immigration,Immigration +520626,Immigration,Immigration +520625,Immigration,Immigration +520531,Immigration,Immigration +520529,Immigration,Immigration +503756,Immigration,Immigration +503755,Immigration,Immigration +500223,Immigration,Immigration +500220,Immigration,Immigration +476612,Immigration,Immigration +443494,Immigration,Immigration +443486,Immigration,Immigration +542117,Immigration,Immigration +527799,Immigration,Immigration +527796,Immigration,Immigration +527795,Immigration,Immigration +527794,Immigration,Immigration +527793,Immigration,Immigration +527792,Immigration,Immigration +527791,Immigration,Immigration +527790,Immigration,Immigration +527788,Immigration,Immigration +526001,Immigration,Immigration +526000,Immigration,Immigration +525999,Immigration,Immigration +525998,Immigration,Immigration +525997,Immigration,Immigration +525995,Immigration,Immigration +522145,Immigration,Immigration +522144,Immigration,Immigration +522142,Immigration,Immigration +522140,Immigration,Immigration +522138,Immigration,Immigration +522136,Immigration,Immigration +522133,Immigration,Immigration +522132,Immigration,Immigration +522131,Immigration,Immigration +522130,Immigration,Immigration +522129,Immigration,Immigration +522128,Immigration,Immigration +522127,Immigration,Immigration +520637,Immigration,Immigration +520636,Immigration,Immigration +520635,Immigration,Immigration +520634,Immigration,Immigration +520633,Immigration,Immigration +440490,International Trade,International Trade +440484,International Trade,International Trade +500223,Labour,Labour +500220,Labour,Labour +447174,Labour,Labour +447173,Labour,Labour +447172,Labour,Labour +447170,Labour,Labour +447169,Labour,Labour +447168,Labour,Labour +447167,Labour,Labour +447157,Labour,Labour +447155,Labour,Labour +447121,Labour,Labour +443753,Labour,Labour +443716,Labour,Labour +443713,Labour,Labour +443547,Labour,Labour +443494,Labour,Labour +443493,Labour,Labour +443492,Labour,Labour +443491,Labour,Labour +443489,Labour,Labour +443487,Labour,Labour +443486,Labour,Labour +443485,Labour,Labour +443482,Labour,Labour +443481,Labour,Labour +443480,Labour,Labour +440484,Labour,Labour +440465,Labour,Labour +493492,Labour,Labour +493491,Labour,Labour +493487,Labour,Labour +492021,Labour,Labour +488851,Labour,Labour +488832,Labour,Labour +488831,Labour,Labour +488830,Labour,Labour +488829,Labour,Labour +488814,Labour,Labour +488812,Labour,Labour +488810,Labour,Labour +488601,Labour,Labour +488600,Labour,Labour +488599,Labour,Labour +488564,Labour,Labour +488562,Labour,Labour +488561,Labour,Labour +476612,Labour,Labour +474233,Labour,Labour +468803,Labour,Labour +468801,Labour,Labour +468800,Labour,Labour +468799,Labour,Labour +468504,Labour,Labour +468502,Labour,Labour +468500,Labour,Labour +468497,Labour,Labour +468495,Labour,Labour +468493,Labour,Labour +468490,Labour,Labour +468487,Labour,Labour +468485,Labour,Labour +468484,Labour,Labour +468483,Labour,Labour +468481,Labour,Labour +468479,Labour,Labour +468477,Labour,Labour +468464,Labour,Labour +468463,Labour,Labour +468462,Labour,Labour +463672,Labour,Labour +461321,Labour,Labour +456237,Labour,Labour +456233,Labour,Labour +456229,Labour,Labour +456228,Labour,Labour +456227,Labour,Labour +456226,Labour,Labour +450517,Labour,Labour +542117,Labour,Labour +527799,Labour,Labour +527796,Labour,Labour +527795,Labour,Labour +527794,Labour,Labour +527793,Labour,Labour +527792,Labour,Labour +527791,Labour,Labour +527790,Labour,Labour +527789,Labour,Labour +527788,Labour,Labour +526001,Labour,Labour +526000,Labour,Labour +525999,Labour,Labour +525998,Labour,Labour +525997,Labour,Labour +525995,Labour,Labour +522145,Labour,Labour +522144,Labour,Labour +522142,Labour,Labour +522140,Labour,Labour +522138,Labour,Labour +522136,Labour,Labour +522133,Labour,Labour +522132,Labour,Labour +522131,Labour,Labour +522130,Labour,Labour +522129,Labour,Labour +522128,Labour,Labour +522127,Labour,Labour +520637,Labour,Labour +520636,Labour,Labour +520635,Labour,Labour +520634,Labour,Labour +520633,Labour,Labour +520632,Labour,Labour +520631,Labour,Labour +520630,Labour,Labour +520629,Labour,Labour +520627,Labour,Labour +520626,Labour,Labour +520625,Labour,Labour +520531,Labour,Labour +520529,Labour,Labour +520528,Labour,Labour +503756,Labour,Labour +503755,Labour,Labour +503754,Labour,Labour +503753,Labour,Labour +503752,Labour,Labour +503751,Labour,Labour +503750,Labour,Labour +503749,Labour,Labour +500228,Labour,Labour +497893,Taxation and Finance,Taxation and Finance +476614,Taxation and Finance,Taxation and Finance +498706,Industry,Industry +438256,Industry,Industry +498703,Industry,Industry +498702,Industry,Industry +466271,Industry,Industry +438257,Industry,Industry +498710,Industry,Industry +452464,Infrastructure,Infrastructure +449798,Infrastructure,Infrastructure +452466,Infrastructure,Infrastructure +449798,Regional Development,Regional Development +452464,Environment,Environment +449798,Environment,Environment +452466,Environment,Environment +452464,Economic Development,Economic Development +449798,Energy,Energy +450162,Health,Health +443017,Budget,Budget +443016,Budget,Budget +438937,Budget,Budget +438935,Budget,Budget +451203,Budget,Budget +450843,Budget,Budget +438937,Economic Development,Economic Development +438935,Economic Development,Economic Development +451204,Economic Development,Economic Development +451203,Economic Development,Economic Development +512524,Housing,Housing +512523,Housing,Housing +439360,Housing,Housing +442349,Education,Education +442345,Education,Education +458823,Education,Education +442361,Education,Education +442359,Education,Education +442356,Education,Education +442349,Employment and Training,Employment and Training +442345,Employment and Training,Employment and Training +458823,Employment and Training,Employment and Training +442361,Employment and Training,Employment and Training +442359,Employment and Training,Employment and Training +442356,Employment and Training,Employment and Training +445682,Energy,Energy +445682,Environment,Environment +440529,Climate,Climate +515095,Climate,Climate +459666,Climate,Climate +458037,Climate,Climate +457737,Climate,Climate +456573,Climate,Climate +456572,Climate,Climate +453864,Climate,Climate +452447,Climate,Climate +452446,Climate,Climate +450908,Climate,Climate +450907,Climate,Climate +450742,Climate,Climate +450303,Climate,Climate +448695,Climate,Climate +448694,Climate,Climate +447348,Climate,Climate +445784,Climate,Climate +443923,Climate,Climate +440535,Climate,Climate +440534,Climate,Climate +440532,Climate,Climate +440531,Climate,Climate +457737,Energy,Energy +456573,Energy,Energy +456572,Energy,Energy +453865,Energy,Energy +453864,Energy,Energy +452447,Energy,Energy +452446,Energy,Energy +450908,Energy,Energy +450907,Energy,Energy +450742,Energy,Energy +450303,Energy,Energy +448695,Energy,Energy +448694,Energy,Energy +447348,Energy,Energy +447073,Energy,Energy +445784,Energy,Energy +443926,Energy,Energy +443924,Energy,Energy +443923,Energy,Energy +442596,Energy,Energy +440535,Energy,Energy +440534,Energy,Energy +440532,Energy,Energy +440531,Energy,Energy +440530,Energy,Energy +440529,Energy,Energy +515095,Energy,Energy +487592,Energy,Energy +487590,Energy,Energy +487588,Energy,Energy +483066,Energy,Energy +482335,Energy,Energy +480013,Energy,Energy +480006,Energy,Energy +478760,Energy,Energy +476485,Energy,Energy +476484,Energy,Energy +476483,Energy,Energy +476482,Energy,Energy +475878,Energy,Energy +475876,Energy,Energy +471693,Energy,Energy +470934,Energy,Energy +470932,Energy,Energy +470924,Energy,Energy +470922,Energy,Energy +465711,Energy,Energy +465709,Energy,Energy +465707,Energy,Energy +465702,Energy,Energy +460313,Energy,Energy +459666,Energy,Energy +447073,Taxation and Finance,Taxation and Finance +445784,Taxation and Finance,Taxation and Finance +475878,Taxation and Finance,Taxation and Finance +456571,Taxation and Finance,Taxation and Finance +491031,Climate,Climate +538324,Climate,Climate +464872,Climate,Climate +464868,Climate,Climate +464858,Climate,Climate +461147,Climate,Climate +535097,Climate,Climate +526161,Climate,Climate +526158,Climate,Climate +526119,Climate,Climate +522882,Climate,Climate +515642,Climate,Climate +515639,Climate,Climate +514094,Climate,Climate +514087,Climate,Climate +512790,Climate,Climate +512787,Climate,Climate +512785,Climate,Climate +512781,Climate,Climate +512778,Climate,Climate +512775,Climate,Climate +512772,Climate,Climate +512770,Climate,Climate +512767,Climate,Climate +512751,Climate,Climate +511057,Climate,Climate +511051,Climate,Climate +511015,Climate,Climate +511005,Climate,Climate +511002,Climate,Climate +511000,Climate,Climate +510998,Climate,Climate +510995,Climate,Climate +510992,Climate,Climate +510991,Climate,Climate +510989,Climate,Climate +510987,Climate,Climate +510984,Climate,Climate +510983,Climate,Climate +510979,Climate,Climate +510978,Climate,Climate +510977,Climate,Climate +510976,Climate,Climate +510975,Climate,Climate +510973,Climate,Climate +510958,Climate,Climate +510956,Climate,Climate +510953,Climate,Climate +510949,Climate,Climate +508761,Climate,Climate +508758,Climate,Climate +508757,Climate,Climate +508753,Climate,Climate +508745,Climate,Climate +508603,Climate,Climate +508600,Climate,Climate +508597,Climate,Climate +508595,Climate,Climate +508591,Climate,Climate +508589,Climate,Climate +508541,Climate,Climate +508539,Climate,Climate +508538,Climate,Climate +502349,Climate,Climate +498924,Climate,Climate +491159,Climate,Climate +491155,Climate,Climate +491151,Climate,Climate +491090,Climate,Climate +491089,Climate,Climate +491085,Climate,Climate +491083,Climate,Climate +491082,Climate,Climate +491081,Climate,Climate +491080,Climate,Climate +491076,Climate,Climate +491075,Climate,Climate +491074,Climate,Climate +491072,Climate,Climate +491071,Climate,Climate +491066,Climate,Climate +491053,Climate,Climate +491044,Climate,Climate +491041,Climate,Climate +491037,Climate,Climate +498899,Economic Development,Economic Development +498890,Economic Development,Economic Development +443166,Economic Development,Economic Development +498889,Economic Development,Economic Development +498884,Economic Development,Economic Development +498877,Economic Development,Economic Development +493622,Economic Development,Economic Development +493263,Economic Development,Economic Development +493262,Economic Development,Economic Development +491171,Economic Development,Economic Development +491159,Economic Development,Economic Development +491155,Economic Development,Economic Development +491151,Economic Development,Economic Development +491090,Economic Development,Economic Development +491089,Economic Development,Economic Development +491085,Economic Development,Economic Development +491083,Economic Development,Economic Development +491082,Economic Development,Economic Development +491081,Economic Development,Economic Development +491080,Economic Development,Economic Development +491076,Economic Development,Economic Development +491075,Economic Development,Economic Development +491074,Economic Development,Economic Development +491072,Economic Development,Economic Development +491071,Economic Development,Economic Development +491068,Economic Development,Economic Development +491066,Economic Development,Economic Development +491053,Economic Development,Economic Development +491044,Economic Development,Economic Development +491041,Economic Development,Economic Development +491037,Economic Development,Economic Development +491034,Economic Development,Economic Development +491031,Economic Development,Economic Development +491029,Economic Development,Economic Development +487139,Economic Development,Economic Development +487132,Economic Development,Economic Development +482208,Economic Development,Economic Development +482206,Economic Development,Economic Development +482204,Economic Development,Economic Development +482202,Economic Development,Economic Development +482201,Economic Development,Economic Development +482200,Economic Development,Economic Development +479815,Economic Development,Economic Development +477500,Economic Development,Economic Development +477497,Economic Development,Economic Development +477496,Economic Development,Economic Development +477494,Economic Development,Economic Development +473295,Economic Development,Economic Development +471138,Economic Development,Economic Development +466239,Economic Development,Economic Development +466238,Economic Development,Economic Development +466237,Economic Development,Economic Development +466236,Economic Development,Economic Development +466235,Economic Development,Economic Development +466234,Economic Development,Economic Development +466233,Economic Development,Economic Development +466231,Economic Development,Economic Development +466230,Economic Development,Economic Development +466229,Economic Development,Economic Development +466228,Economic Development,Economic Development +466227,Economic Development,Economic Development +466226,Economic Development,Economic Development +466223,Economic Development,Economic Development +466222,Economic Development,Economic Development +466220,Economic Development,Economic Development +466218,Economic Development,Economic Development +466217,Economic Development,Economic Development +464872,Economic Development,Economic Development +464868,Economic Development,Economic Development +464858,Economic Development,Economic Development +464849,Economic Development,Economic Development +462773,Economic Development,Economic Development +462770,Economic Development,Economic Development +461361,Economic Development,Economic Development +461147,Economic Development,Economic Development +538324,Economic Development,Economic Development +517994,Economic Development,Economic Development +517986,Economic Development,Economic Development +517974,Economic Development,Economic Development +512790,Economic Development,Economic Development +512787,Economic Development,Economic Development +512785,Economic Development,Economic Development +512781,Economic Development,Economic Development +512778,Economic Development,Economic Development +512775,Economic Development,Economic Development +512772,Economic Development,Economic Development +512770,Economic Development,Economic Development +512767,Economic Development,Economic Development +511039,Economic Development,Economic Development +502360,Economic Development,Economic Development +502358,Economic Development,Economic Development +502293,Economic Development,Economic Development +498921,Economic Development,Economic Development +498920,Economic Development,Economic Development +498914,Economic Development,Economic Development +464872,Research and Development,Research and Development +464868,Research and Development,Research and Development +461147,Research and Development,Research and Development +444215,Research and Development,Research and Development +443166,Research and Development,Research and Development +522862,Research and Development,Research and Development +504813,Research and Development,Research and Development +502296,Research and Development,Research and Development +471137,Research and Development,Research and Development +466236,Research and Development,Research and Development +439275,Housing,Housing +529136,Housing,Housing +447481,Immigration,Immigration +446257,Immigration,Immigration +445996,Immigration,Immigration +445995,Immigration,Immigration +445994,Immigration,Immigration +445993,Immigration,Immigration +445992,Immigration,Immigration +445991,Immigration,Immigration +445516,Immigration,Immigration +439438,Immigration,Immigration +439437,Immigration,Immigration +439436,Immigration,Immigration +439432,Immigration,Immigration +511018,Immigration,Immigration +506225,Immigration,Immigration +503154,Immigration,Immigration +498484,Immigration,Immigration +496144,Immigration,Immigration +495084,Immigration,Immigration +494794,Immigration,Immigration +494633,Immigration,Immigration +494281,Immigration,Immigration +494239,Immigration,Immigration +492526,Immigration,Immigration +487313,Immigration,Immigration +483244,Immigration,Immigration +483243,Immigration,Immigration +483234,Immigration,Immigration +483218,Immigration,Immigration +483201,Immigration,Immigration +483191,Immigration,Immigration +483178,Immigration,Immigration +483176,Immigration,Immigration +483143,Immigration,Immigration +483139,Immigration,Immigration +483119,Immigration,Immigration +483112,Immigration,Immigration +483109,Immigration,Immigration +483096,Immigration,Immigration +483064,Immigration,Immigration +483055,Immigration,Immigration +483054,Immigration,Immigration +483053,Immigration,Immigration +483024,Immigration,Immigration +483023,Immigration,Immigration +483009,Immigration,Immigration +483000,Immigration,Immigration +482943,Immigration,Immigration +482935,Immigration,Immigration +482934,Immigration,Immigration +482933,Immigration,Immigration +482926,Immigration,Immigration +482924,Immigration,Immigration +480473,Immigration,Immigration +474559,Immigration,Immigration +462451,Immigration,Immigration +462450,Immigration,Immigration +450079,Immigration,Immigration +449988,Immigration,Immigration +449985,Immigration,Immigration +449983,Immigration,Immigration +451102,Economic Development,Economic Development +454711,Research and Development,Research and Development +454709,Research and Development,Research and Development +544734,Research and Development,Research and Development +532749,Research and Development,Research and Development +532427,Research and Development,Research and Development +532426,Research and Development,Research and Development +532424,Research and Development,Research and Development +511752,Research and Development,Research and Development +511751,Research and Development,Research and Development +511750,Research and Development,Research and Development +499834,Research and Development,Research and Development +492308,Research and Development,Research and Development +488952,Research and Development,Research and Development +486503,Health,Health +448262,Housing,Housing +448261,Housing,Housing +457782,Housing,Housing +457780,Housing,Housing +457778,Housing,Housing +456163,Housing,Housing +449183,Housing,Housing +449177,Housing,Housing +448268,Housing,Housing +448267,Housing,Housing +448266,Housing,Housing +448265,Housing,Housing +448264,Housing,Housing +448261,Infrastructure,Infrastructure +448260,Infrastructure,Infrastructure +457782,Infrastructure,Infrastructure +457780,Infrastructure,Infrastructure +457778,Infrastructure,Infrastructure +457777,Infrastructure,Infrastructure +456163,Infrastructure,Infrastructure +450057,Infrastructure,Infrastructure +449183,Infrastructure,Infrastructure +449177,Infrastructure,Infrastructure +448268,Infrastructure,Infrastructure +448267,Infrastructure,Infrastructure +448266,Infrastructure,Infrastructure +448265,Infrastructure,Infrastructure +448264,Infrastructure,Infrastructure +448263,Infrastructure,Infrastructure +448268,Municipalities,Municipalities +448267,Municipalities,Municipalities +448266,Municipalities,Municipalities +448265,Municipalities,Municipalities +448264,Municipalities,Municipalities +448263,Municipalities,Municipalities +448262,Municipalities,Municipalities +448261,Municipalities,Municipalities +457782,Municipalities,Municipalities +457780,Municipalities,Municipalities +457778,Municipalities,Municipalities +456163,Municipalities,Municipalities +449183,Municipalities,Municipalities +448262,Regional Development,Regional Development +448261,Regional Development,Regional Development +457782,Regional Development,Regional Development +457780,Regional Development,Regional Development +457778,Regional Development,Regional Development +456163,Regional Development,Regional Development +449183,Regional Development,Regional Development +449177,Regional Development,Regional Development +448268,Regional Development,Regional Development +448267,Regional Development,Regional Development +448266,Regional Development,Regional Development +448265,Regional Development,Regional Development +448264,Regional Development,Regional Development +445605,Housing,Housing +480141,Infrastructure,Infrastructure +445605,Infrastructure,Infrastructure +504884,Taxation and Finance,Taxation and Finance +463146,Taxation and Finance,Taxation and Finance +447480,Taxation and Finance,Taxation and Finance +439776,Taxation and Finance,Taxation and Finance +519140,Taxation and Finance,Taxation and Finance +519139,Taxation and Finance,Taxation and Finance +515555,Taxation and Finance,Taxation and Finance +515553,Taxation and Finance,Taxation and Finance +513751,Taxation and Finance,Taxation and Finance +513750,Taxation and Finance,Taxation and Finance +512611,Taxation and Finance,Taxation and Finance +512609,Taxation and Finance,Taxation and Finance +512608,Taxation and Finance,Taxation and Finance +512607,Taxation and Finance,Taxation and Finance +512605,Taxation and Finance,Taxation and Finance +512603,Taxation and Finance,Taxation and Finance +512600,Taxation and Finance,Taxation and Finance +510778,Taxation and Finance,Taxation and Finance +510772,Taxation and Finance,Taxation and Finance +508580,Taxation and Finance,Taxation and Finance +508576,Taxation and Finance,Taxation and Finance +508575,Taxation and Finance,Taxation and Finance +455110,Fisheries,Fisheries +446435,Fisheries,Fisheries +457159,Fisheries,Fisheries +455117,Fisheries,Fisheries +455114,Fisheries,Fisheries +455112,Fisheries,Fisheries +444259,International Relations,International Relations +448390,International Relations,International Relations +446595,International Relations,International Relations +439863,Budget,Budget +439861,Budget,Budget +449265,Budget,Budget +449264,Budget,Budget +449263,Budget,Budget +446972,Budget,Budget +443276,Budget,Budget +443275,Budget,Budget +443273,Budget,Budget +443272,Budget,Budget +443270,Budget,Budget +440889,Budget,Budget +439866,Budget,Budget +439865,Budget,Budget +439881,Climate,Climate +439879,Climate,Climate +439881,Energy,Energy +439879,Energy,Energy +488334,Energy,Energy +439881,Environment,Environment +439879,Environment,Environment +439881,Government Procurement,Government Procurement +439879,Government Procurement,Government Procurement +488334,Government Procurement,Government Procurement +449215,Agriculture,Agriculture +445858,Agriculture,Agriculture +461538,Agriculture,Agriculture +461016,Agriculture,Agriculture +445858,Environment,Environment +445703,Climate,Climate +445041,Climate,Climate +456354,Climate,Climate +445703,Economic Development,Economic Development +445041,Economic Development,Economic Development +456354,Economic Development,Economic Development +445703,Energy,Energy +445041,Energy,Energy +456354,Energy,Energy +445703,Environment,Environment +445041,Environment,Environment +456354,Environment,Environment +443908,Economic Development,Economic Development +443448,Economic Development,Economic Development +446084,Economic Development,Economic Development +443908,Taxation and Finance,Taxation and Finance +443910,Small Business,Small Business +443908,Small Business,Small Business +443908,Tourism,Tourism +443448,Tourism,Tourism +528760,Elections,Elections +528759,Elections,Elections +508800,Elections,Elections +452380,Elections,Elections +450212,Elections,Elections +450061,Elections,Elections +450054,Elections,Elections +447567,Elections,Elections +442699,Elections,Elections +442698,Elections,Elections +442697,Elections,Elections +445047,Infrastructure,Infrastructure +442319,Energy,Energy +442315,Energy,Energy +458794,Energy,Energy +456790,Energy,Energy +456789,Energy,Energy +441626,Fisheries,Fisheries +441623,Fisheries,Fisheries +504814,Fisheries,Fisheries +504812,Fisheries,Fisheries +504800,Fisheries,Fisheries +464263,Fisheries,Fisheries +459505,Fisheries,Fisheries +458572,Fisheries,Fisheries +457088,Fisheries,Fisheries +451759,Fisheries,Fisheries +451757,Fisheries,Fisheries +449857,Fisheries,Fisheries +449856,Fisheries,Fisheries +449855,Fisheries,Fisheries +447329,Fisheries,Fisheries +445105,Fisheries,Fisheries +444323,Tourism,Tourism +511659,Tourism,Tourism +523597,Economic Development,Economic Development +523596,Economic Development,Economic Development +450852,Economic Development,Economic Development +450852,Employment and Training,Employment and Training +450851,Employment and Training,Employment and Training +523597,Employment and Training,Employment and Training +450852,Labour,Labour +450851,Labour,Labour +523597,Labour,Labour +448259,Industry,Industry +448259,Taxation and Finance,Taxation and Finance +441514,Financial Institutions,Financial Institutions +441513,Financial Institutions,Financial Institutions +441514,Industry,Industry +441513,Industry,Industry +443753,International Trade,International Trade +500227,Labour,Labour +500220,Taxation and Finance,Taxation and Finance +438211,Justice and Law Enforcement,Justice and Law Enforcement +498709,Industry,Industry +498704,Industry,Industry +452972,Economic Development,Economic Development +452972,Industry,Industry +452465,Infrastructure,Infrastructure +452464,Transportation,Transportation +452466,Regional Development,Regional Development +452465,Environment,Environment +452465,Municipalities,Municipalities +452466,Economic Development,Economic Development +452464,Energy,Energy +438417,Agriculture,Agriculture +438565,International Trade,International Trade +442021,Health,Health +443018,Budget,Budget +438868,Justice and Law Enforcement,Justice and Law Enforcement +438934,Fisheries,Fisheries +438938,Budget,Budget +438938,Economic Development,Economic Development +438936,Fisheries,Fisheries +518691,Housing,Housing +442350,Education,Education +442350,Employment and Training,Employment and Training +445683,Energy,Energy +445683,Environment,Environment +439075,International Development,International Development +439075,Infrastructure,Infrastructure +440530,Climate,Climate +458037,Energy,Energy +450742,Taxation and Finance,Taxation and Finance +491034,Climate,Climate +498903,Economic Development,Economic Development +466222,Research and Development,Research and Development +439215,Housing,Housing +439287,Housing,Housing +439385,Housing,Housing +448474,Immigration,Immigration +455900,Economic Development,Economic Development +440606,Industry,Industry +488951,Research and Development,Research and Development +453755,Health,Health +448263,Housing,Housing +448262,Infrastructure,Infrastructure +449177,Municipalities,Municipalities +448263,Regional Development,Regional Development +480141,Housing,Housing +485333,Infrastructure,Infrastructure +480141,Municipalities,Municipalities +480141,Regional Development,Regional Development +442566,Climate,Climate +442566,Energy,Energy +442566,Environment,Environment +442566,Industry,Industry +442566,International Trade,International Trade +442566,Taxation and Finance,Taxation and Finance +441171,Government Procurement,Government Procurement +439771,International Relations,International Relations +508572,Taxation and Finance,Taxation and Finance +455111,Fisheries,Fisheries +440758,International Trade,International Trade +444758,International Relations,International Relations +439979,Justice and Law Enforcement,Justice and Law Enforcement +439864,Budget,Budget +450867,Climate,Climate +450867,Energy,Energy +488334,Environment,Environment +450867,Government Procurement,Government Procurement +444490,Tourism,Tourism +460296,Agriculture,Agriculture +461016,Environment,Environment +461016,Infrastructure,Infrastructure +448853,Employment and Training,Employment and Training +447576,Climate,Climate +447576,Economic Development,Economic Development +447576,Energy,Energy +447576,Environment,Environment +443910,Economic Development,Economic Development +443910,Taxation and Finance,Taxation and Finance +446084,Small Business,Small Business +443910,Tourism,Tourism +439958,Elections,Elections +439959,Elections,Elections +439960,Elections,Elections +439961,Elections,Elections +442694,Elections,Elections +448775,Infrastructure,Infrastructure +440033,Intellectual Property,Intellectual Property +442322,Energy,Energy +443155,Industry,Industry +443155,Defence,Defence +443155,Privacy and Access to Information,Privacy and Access to Information +443155,Government Procurement,Government Procurement +443155,Small Business,Small Business +443391,Fisheries,Fisheries +440240,Justice and Law Enforcement,Justice and Law Enforcement +444393,Tourism,Tourism +450851,Economic Development,Economic Development +523596,Employment and Training,Employment and Training +450851,Infrastructure,Infrastructure +523596,Labour,Labour +449184,Consumer Issues,Consumer Issues +449184,Health,Health +449184,Industry,Industry +449184,International Trade,International Trade +449184,Taxation and Finance,Taxation and Finance +442679,Consumer Issues,Consumer Issues +441515,Financial Institutions,Financial Institutions +441515,Industry,Industry +441515,Pensions,Pensions +441514,Taxation and Finance,Taxation and Finance +440328,Pensions,Pensions +440328,Government Procurement,Government Procurement +440328,Employment and Training,Employment and Training +441015,Economic Development,Economic Development +441012,Economic Development,Economic Development +440263,Intellectual Property,Intellectual Property +455763,Security,Security +444171,International Trade,International Trade +443552,Health,Health +454343,Health,Health +440326,Elections,Elections +495582,Infrastructure,Infrastructure +450091,Economic Development,Economic Development +450091,Environment,Environment +443918,International Relations,International Relations +450091,International Trade,International Trade +450091,Regional Development,Regional Development +458894,International Trade,International Trade +443128,Agriculture,Agriculture +440895,Health,Health +440895,Education,Education +440895,Consumer Issues,Consumer Issues +455060,Elections,Elections +442865,Economic Development,Economic Development +442865,Energy,Energy +486291,Health,Health +500220,Economic Development,Economic Development +488564,Industry,Industry +466060,Consumer Issues,Consumer Issues +466060,Economic Development,Economic Development +466060,Health,Health +466060,Security,Security +452144,Environment,Environment +452144,Forestry,Forestry +440419,Financial Institutions,Financial Institutions +440419,Privacy and Access to Information,Privacy and Access to Information +440453,Tourism,Tourism +440456,Health,Health +440495,Official Languages,Official Languages +440503,Climate,Climate +446307,Economic Development,Economic Development +446310,International Relations,International Relations +440914,International Trade,International Trade +446307,Regional Development,Regional Development +440914,Taxation and Finance,Taxation and Finance +440549,Justice and Law Enforcement,Justice and Law Enforcement +440546,Justice and Law Enforcement,Justice and Law Enforcement +506390,Defence,Defence +442986,International Trade,International Trade +442986,Research and Development,Research and Development +443648,Energy,Energy +443648,Environment,Environment +443648,Government Procurement,Government Procurement +443648,Industry,Industry +443648,Infrastructure,Infrastructure +443648,Security,Security +462289,Infrastructure,Infrastructure +476639,Research and Development,Research and Development +440667,Health,Health +526538,Sports,Sports +443145,Economic Development,Economic Development +443145,Health,Health +532040,Defence,Defence +532038,Economic Development,Economic Development +447413,Employment and Training,Employment and Training +457742,Fisheries,Fisheries +491370,Government Procurement,Government Procurement +543997,Research and Development,Research and Development +543987,Transportation,Transportation +443389,Energy,Energy +443389,Environment,Environment +443389,Government Procurement,Government Procurement +443389,Industry,Industry +443389,Infrastructure,Infrastructure +443389,Security,Security +443389,Transportation,Transportation +440704,International Trade,International Trade +440704,Research and Development,Research and Development +440704,Taxation and Finance,Taxation and Finance +440704,Environment,Environment +446845,Official Languages,Official Languages +452986,Consumer Issues,Consumer Issues +452473,International Trade,International Trade +452475,International Trade,International Trade +440761,Health,Health +440779,Internal Trade,Internal Trade +440815,Elections,Elections +465667,Environment,Environment +444683,Education,Education +446734,Employment and Training,Employment and Training +453656,Education,Education +446727,Employment and Training,Employment and Training +490151,Industry,Industry +490151,Transportation,Transportation +442890,Government Procurement,Government Procurement +448584,Employment and Training,Employment and Training +448584,Environment,Environment +442890,Climate,Climate +443331,Education,Education +440980,Transportation,Transportation +440980,Industry,Industry +440956,Economic Development,Economic Development +441514,Pensions,Pensions +441513,Pensions,Pensions +441513,Taxation and Finance,Taxation and Finance +441515,Taxation and Finance,Taxation and Finance +441014,Economic Development,Economic Development +441010,Economic Development,Economic Development +446975,Security,Security +440269,Security,Security +444170,International Trade,International Trade +440280,International Trade,International Trade +447406,International Trade,International Trade +454339,Health,Health +440322,Health,Health +461054,Health,Health +491581,Infrastructure,Infrastructure +473707,Infrastructure,Infrastructure +473700,Infrastructure,Infrastructure +471007,Infrastructure,Infrastructure +471005,Infrastructure,Infrastructure +466658,Infrastructure,Infrastructure +462648,Infrastructure,Infrastructure +443918,Economic Development,Economic Development +443916,Economic Development,Economic Development +443918,Environment,Environment +443916,Environment,Environment +443916,International Trade,International Trade +443918,Regional Development,Regional Development +443916,Regional Development,Regional Development +440893,Health,Health +440893,Education,Education +440893,Consumer Issues,Consumer Issues +455056,Elections,Elections +452041,Elections,Elections +452040,Elections,Elections +452029,Elections,Elections +452027,Elections,Elections +449657,Elections,Elections +447071,Elections,Elections +447064,Elections,Elections +447056,Elections,Elections +445043,Elections,Elections +445042,Elections,Elections +445040,Elections,Elections +443586,Elections,Elections +443585,Elections,Elections +441854,Elections,Elections +441851,Elections,Elections +510046,Elections,Elections +490527,Elections,Elections +487301,Elections,Elections +477072,Elections,Elections +461893,Elections,Elections +458235,Elections,Elections +455070,Elections,Elections +455068,Elections,Elections +455065,Elections,Elections +455063,Elections,Elections +442864,Economic Development,Economic Development +442863,Economic Development,Economic Development +488787,Economic Development,Economic Development +486370,Economic Development,Economic Development +486291,Economic Development,Economic Development +465030,Economic Development,Economic Development +465029,Economic Development,Economic Development +465028,Economic Development,Economic Development +465027,Economic Development,Economic Development +465026,Economic Development,Economic Development +450347,Economic Development,Economic Development +450346,Economic Development,Economic Development +450344,Economic Development,Economic Development +442866,Economic Development,Economic Development +442864,Energy,Energy +442863,Energy,Energy +493710,Energy,Energy +488787,Energy,Energy +486370,Energy,Energy +486289,Energy,Energy +485659,Energy,Energy +465029,Energy,Energy +465026,Energy,Energy +442866,Energy,Energy +486289,Health,Health +485659,Health,Health +465029,Health,Health +465026,Health,Health +450344,Health,Health +442866,Health,Health +442865,Health,Health +442864,Health,Health +442863,Health,Health +493710,Health,Health +488787,Health,Health +486370,Health,Health +497893,Economic Development,Economic Development +522127,Economic Development,Economic Development +500228,Economic Development,Economic Development +500227,Economic Development,Economic Development +500223,Economic Development,Economic Development +488562,Industry,Industry +488561,Industry,Industry +476614,Industry,Industry +476613,Industry,Industry +476612,Industry,Industry +474233,Industry,Industry +468803,Industry,Industry +468801,Industry,Industry +468800,Industry,Industry +468799,Industry,Industry +461321,Industry,Industry +459439,Industry,Industry +456237,Industry,Industry +456233,Industry,Industry +456229,Industry,Industry +456228,Industry,Industry +456227,Industry,Industry +456226,Industry,Industry +452102,Industry,Industry +452100,Industry,Industry +452097,Industry,Industry +452084,Industry,Industry +452081,Industry,Industry +447174,Industry,Industry +447121,Industry,Industry +443713,Industry,Industry +443547,Industry,Industry +443495,Industry,Industry +443493,Industry,Industry +443492,Industry,Industry +443491,Industry,Industry +443490,Industry,Industry +443489,Industry,Industry +443487,Industry,Industry +443486,Industry,Industry +443485,Industry,Industry +443484,Industry,Industry +443482,Industry,Industry +443481,Industry,Industry +440484,Industry,Industry +440465,Industry,Industry +527790,Industry,Industry +527788,Industry,Industry +520531,Industry,Industry +520528,Industry,Industry +510266,Industry,Industry +510264,Industry,Industry +503756,Industry,Industry +503751,Industry,Industry +503750,Industry,Industry +503749,Industry,Industry +500228,Industry,Industry +500227,Industry,Industry +500220,Industry,Industry +497893,Industry,Industry +493492,Industry,Industry +493491,Industry,Industry +493487,Industry,Industry +492021,Industry,Industry +488851,Industry,Industry +488832,Industry,Industry +488831,Industry,Industry +488830,Industry,Industry +488829,Industry,Industry +488814,Industry,Industry +488812,Industry,Industry +488810,Industry,Industry +488601,Industry,Industry +488600,Industry,Industry +488599,Industry,Industry +452135,Environment,Environment +452124,Environment,Environment +454882,Environment,Environment +452147,Environment,Environment +452135,Forestry,Forestry +452124,Forestry,Forestry +454882,Forestry,Forestry +452147,Forestry,Forestry +440446,Tourism,Tourism +446305,Economic Development,Economic Development +446304,Economic Development,Economic Development +450538,Economic Development,Economic Development +450537,Economic Development,Economic Development +450536,Economic Development,Economic Development +450535,Economic Development,Economic Development +446310,Economic Development,Economic Development +446309,Economic Development,Economic Development +446309,International Relations,International Relations +446307,International Relations,International Relations +450538,International Relations,International Relations +450537,International Relations,International Relations +450536,International Relations,International Relations +450535,International Relations,International Relations +440913,International Trade,International Trade +440912,International Trade,International Trade +450538,International Trade,International Trade +450537,International Trade,International Trade +450536,International Trade,International Trade +450535,International Trade,International Trade +446310,International Trade,International Trade +446309,International Trade,International Trade +446307,International Trade,International Trade +446305,International Trade,International Trade +446304,International Trade,International Trade +440917,International Trade,International Trade +440916,International Trade,International Trade +440915,International Trade,International Trade +446305,Regional Development,Regional Development +446304,Regional Development,Regional Development +446310,Regional Development,Regional Development +446309,Regional Development,Regional Development +440913,Taxation and Finance,Taxation and Finance +440912,Taxation and Finance,Taxation and Finance +446310,Taxation and Finance,Taxation and Finance +446309,Taxation and Finance,Taxation and Finance +446307,Taxation and Finance,Taxation and Finance +446305,Taxation and Finance,Taxation and Finance +446304,Taxation and Finance,Taxation and Finance +440917,Taxation and Finance,Taxation and Finance +440916,Taxation and Finance,Taxation and Finance +440915,Taxation and Finance,Taxation and Finance +440539,Justice and Law Enforcement,Justice and Law Enforcement +496382,Defence,Defence +485651,Defence,Defence +462110,Defence,Defence +459813,Defence,Defence +459812,Defence,Defence +453089,Defence,Defence +450712,Defence,Defence +446498,Defence,Defence +446497,Defence,Defence +444583,Defence,Defence +444576,Defence,Defence +440556,Defence,Defence +514838,Defence,Defence +506392,Defence,Defence +506391,Defence,Defence +461043,Infrastructure,Infrastructure +527852,Infrastructure,Infrastructure +503860,Infrastructure,Infrastructure +492632,Infrastructure,Infrastructure +486660,Infrastructure,Infrastructure +481280,Infrastructure,Infrastructure +481279,Infrastructure,Infrastructure +481276,Infrastructure,Infrastructure +481275,Infrastructure,Infrastructure +478714,Infrastructure,Infrastructure +478713,Infrastructure,Infrastructure +478711,Infrastructure,Infrastructure +474320,Infrastructure,Infrastructure +465902,Infrastructure,Infrastructure +474322,Research and Development,Research and Development +445971,Research and Development,Research and Development +440665,Health,Health +440661,Health,Health +463720,Health,Health +443037,Health,Health +440670,Health,Health +440669,Health,Health +495979,Sports,Sports +485256,Sports,Sports +532038,Defence,Defence +532029,Defence,Defence +457742,Defence,Defence +465167,Economic Development,Economic Development +447413,Economic Development,Economic Development +543987,Economic Development,Economic Development +543978,Economic Development,Economic Development +543997,Fisheries,Fisheries +491334,Fisheries,Fisheries +491362,Government Procurement,Government Procurement +491336,Government Procurement,Government Procurement +465167,Government Procurement,Government Procurement +457742,Government Procurement,Government Procurement +447413,Government Procurement,Government Procurement +543978,Government Procurement,Government Procurement +491386,Government Procurement,Government Procurement +491376,Government Procurement,Government Procurement +447413,Research and Development,Research and Development +465167,Transportation,Transportation +443387,Energy,Energy +443385,Energy,Energy +454738,Energy,Energy +454736,Energy,Energy +454733,Energy,Energy +443387,Environment,Environment +443385,Environment,Environment +454738,Environment,Environment +454736,Environment,Environment +454733,Environment,Environment +443387,Government Procurement,Government Procurement +443385,Government Procurement,Government Procurement +454738,Government Procurement,Government Procurement +454736,Government Procurement,Government Procurement +454733,Government Procurement,Government Procurement +443387,Industry,Industry +443385,Industry,Industry +454738,Industry,Industry +454736,Industry,Industry +454733,Industry,Industry +443387,Infrastructure,Infrastructure +443385,Infrastructure,Infrastructure +454738,Infrastructure,Infrastructure +454736,Infrastructure,Infrastructure +454733,Infrastructure,Infrastructure +443387,Security,Security +443385,Security,Security +454738,Security,Security +454736,Security,Security +454733,Security,Security +443387,Transportation,Transportation +443385,Transportation,Transportation +454738,Transportation,Transportation +454736,Transportation,Transportation +454733,Transportation,Transportation +445919,Health,Health +445917,Health,Health +440763,Health,Health +440762,Health,Health +535726,Elections,Elections +517096,Elections,Elections +500583,Elections,Elections +481338,Elections,Elections +463491,Elections,Elections +465665,Environment,Environment +444590,Environment,Environment +542444,Environment,Environment +542173,Environment,Environment +541036,Environment,Environment +541034,Environment,Environment +541033,Environment,Environment +541032,Environment,Environment +541031,Environment,Environment +541030,Environment,Environment +541029,Environment,Environment +541028,Environment,Environment +541027,Environment,Environment +539090,Environment,Environment +537033,Environment,Environment +535730,Environment,Environment +535728,Environment,Environment +533140,Environment,Environment +533139,Environment,Environment +533138,Environment,Environment +533137,Environment,Environment +533136,Environment,Environment +531995,Environment,Environment +531994,Environment,Environment +530828,Environment,Environment +530824,Environment,Environment +530818,Environment,Environment +530817,Environment,Environment +530815,Environment,Environment +530814,Environment,Environment +530812,Environment,Environment +530396,Environment,Environment +524051,Environment,Environment +518710,Environment,Environment +517101,Environment,Environment +496672,Environment,Environment +487736,Environment,Environment +483565,Environment,Environment +473995,Environment,Environment +469053,Environment,Environment +466612,Environment,Environment +466610,Environment,Environment +465671,Environment,Environment +465668,Environment,Environment +452234,Education,Education +446733,Employment and Training,Employment and Training +444683,Employment and Training,Employment and Training +452234,Employment and Training,Employment and Training +453655,Education,Education +453656,Employment and Training,Employment and Training +453655,Employment and Training,Employment and Training +446732,Employment and Training,Employment and Training +446731,Employment and Training,Employment and Training +446730,Employment and Training,Employment and Training +446729,Employment and Training,Employment and Training +446728,Employment and Training,Employment and Training +487516,Transportation,Transportation +446004,Transportation,Transportation +490152,Transportation,Transportation +442889,Government Procurement,Government Procurement +446365,Employment and Training,Employment and Training +442889,Climate,Climate +440957,Transportation,Transportation +440956,Transportation,Transportation +442997,Transportation,Transportation +440981,Transportation,Transportation +440957,Industry,Industry +440956,Industry,Industry +440981,Industry,Industry +440981,Economic Development,Economic Development +440980,Economic Development,Economic Development +440957,Economic Development,Economic Development +484480,Tourism,Tourism +484480,Small Business,Small Business +488572,Taxation and Finance,Taxation and Finance +444157,Taxation and Finance,Taxation and Finance +443150,Environment,Environment +538590,Environment,Environment +443150,Forestry,Forestry +538762,Forestry,Forestry +461382,Forestry,Forestry +441599,Intellectual Property,Intellectual Property +441159,Intellectual Property,Intellectual Property +441605,Intellectual Property,Intellectual Property +441604,Intellectual Property,Intellectual Property +441602,Intellectual Property,Intellectual Property +446684,Housing,Housing +443079,Housing,Housing +490226,Housing,Housing +486411,Housing,Housing +483904,Housing,Housing +483901,Housing,Housing +481889,Housing,Housing +475082,Housing,Housing +472580,Housing,Housing +472579,Housing,Housing +472577,Housing,Housing +469872,Housing,Housing +469870,Housing,Housing +469869,Housing,Housing +469867,Housing,Housing +465934,Housing,Housing +465933,Housing,Housing +465932,Housing,Housing +465931,Housing,Housing +465930,Housing,Housing +465928,Housing,Housing +463631,Housing,Housing +463630,Housing,Housing +461830,Housing,Housing +456676,Housing,Housing +451230,Housing,Housing +451229,Housing,Housing +451228,Housing,Housing +451227,Housing,Housing +446694,Housing,Housing +446692,Housing,Housing +446691,Housing,Housing +446689,Housing,Housing +446687,Housing,Housing +446686,Housing,Housing +451228,Energy,Energy +451227,Energy,Energy +456676,Energy,Energy +446685,Taxation and Finance,Taxation and Finance +446684,Taxation and Finance,Taxation and Finance +469872,Taxation and Finance,Taxation and Finance +469870,Taxation and Finance,Taxation and Finance +469867,Taxation and Finance,Taxation and Finance +465934,Taxation and Finance,Taxation and Finance +465933,Taxation and Finance,Taxation and Finance +465932,Taxation and Finance,Taxation and Finance +465931,Taxation and Finance,Taxation and Finance +465930,Taxation and Finance,Taxation and Finance +465928,Taxation and Finance,Taxation and Finance +463631,Taxation and Finance,Taxation and Finance +463630,Taxation and Finance,Taxation and Finance +461830,Taxation and Finance,Taxation and Finance +456676,Taxation and Finance,Taxation and Finance +451230,Taxation and Finance,Taxation and Finance +451229,Taxation and Finance,Taxation and Finance +451228,Taxation and Finance,Taxation and Finance +451227,Taxation and Finance,Taxation and Finance +446694,Taxation and Finance,Taxation and Finance +446692,Taxation and Finance,Taxation and Finance +446691,Taxation and Finance,Taxation and Finance +446689,Taxation and Finance,Taxation and Finance +446687,Taxation and Finance,Taxation and Finance +447596,International Trade,International Trade +447584,International Trade,International Trade +457675,International Trade,International Trade +457665,International Trade,International Trade +456015,International Trade,International Trade +443695,Infrastructure,Infrastructure +443463,Infrastructure,Infrastructure +446605,Infrastructure,Infrastructure +445894,Infrastructure,Infrastructure +445893,Infrastructure,Infrastructure +444378,Infrastructure,Infrastructure +444377,Infrastructure,Infrastructure +444376,Infrastructure,Infrastructure +441177,Budget,Budget +441175,Budget,Budget +452197,Budget,Budget +444686,Budget,Budget +441173,Economic Development,Economic Development +441172,Economic Development,Economic Development +458008,Economic Development,Economic Development +452203,Economic Development,Economic Development +452199,Economic Development,Economic Development +452197,Economic Development,Economic Development +444686,Economic Development,Economic Development +444685,Economic Development,Economic Development +441180,Economic Development,Economic Development +441177,Economic Development,Economic Development +441176,Economic Development,Economic Development +441173,Regional Development,Regional Development +441172,Regional Development,Regional Development +458008,Regional Development,Regional Development +452203,Regional Development,Regional Development +452199,Regional Development,Regional Development +452197,Regional Development,Regional Development +444686,Regional Development,Regional Development +444685,Regional Development,Regional Development +441180,Regional Development,Regional Development +441177,Regional Development,Regional Development +441176,Regional Development,Regional Development +441175,Small Business,Small Business +441173,Small Business,Small Business +458008,Small Business,Small Business +452203,Small Business,Small Business +452197,Small Business,Small Business +444686,Small Business,Small Business +441180,Small Business,Small Business +441177,Small Business,Small Business +441173,Taxation and Finance,Taxation and Finance +441172,Taxation and Finance,Taxation and Finance +452203,Taxation and Finance,Taxation and Finance +452199,Taxation and Finance,Taxation and Finance +452197,Taxation and Finance,Taxation and Finance +444686,Taxation and Finance,Taxation and Finance +441180,Taxation and Finance,Taxation and Finance +441177,Taxation and Finance,Taxation and Finance +441176,Taxation and Finance,Taxation and Finance +444403,Consumer Issues,Consumer Issues +500532,Health,Health +497029,Health,Health +444403,Health,Health +443274,Health,Health +443271,Health,Health +441187,Health,Health +441186,Health,Health +492264,Health,Health +489229,Health,Health +489228,Health,Health +489227,Health,Health +485887,Health,Health +485886,Health,Health +476618,Health,Health +476617,Health,Health +471777,Health,Health +471766,Health,Health +471765,Health,Health +542887,Health,Health +542886,Health,Health +540272,Health,Health +540271,Health,Health +528022,Health,Health +528021,Health,Health +528019,Health,Health +528018,Health,Health +528017,Health,Health +528014,Health,Health +528013,Health,Health +528012,Health,Health +515106,Health,Health +513576,Health,Health +506102,Health,Health +506102,Industry,Industry +500532,Industry,Industry +528022,Industry,Industry +528021,Industry,Industry +528020,Industry,Industry +528019,Industry,Industry +528018,Industry,Industry +528017,Industry,Industry +528014,Industry,Industry +528013,Industry,Industry +528012,Industry,Industry +513576,Industry,Industry +512072,Industry,Industry +528019,Research and Development,Research and Development +528018,Research and Development,Research and Development +542887,Research and Development,Research and Development +528021,Research and Development,Research and Development +441353,Research and Development,Research and Development +460326,Education,Education +491399,Education,Education +460328,Education,Education +481085,Agriculture,Agriculture +442977,Agriculture,Agriculture +541038,Agriculture,Agriculture +529972,Agriculture,Agriculture +529971,Agriculture,Agriculture +526781,Agriculture,Agriculture +490890,Agriculture,Agriculture +490882,Agriculture,Agriculture +490879,Agriculture,Agriculture +490876,Agriculture,Agriculture +490872,Agriculture,Agriculture +490861,Agriculture,Agriculture +490849,Agriculture,Agriculture +490848,Agriculture,Agriculture +490846,Agriculture,Agriculture +490844,Agriculture,Agriculture +490842,Agriculture,Agriculture +490837,Agriculture,Agriculture +490834,Agriculture,Agriculture +487668,Agriculture,Agriculture +487667,Agriculture,Agriculture +487666,Agriculture,Agriculture +487665,Agriculture,Agriculture +487664,Agriculture,Agriculture +487663,Agriculture,Agriculture +487662,Agriculture,Agriculture +487661,Agriculture,Agriculture +487661,International Trade,International Trade +487660,International Trade,International Trade +442977,International Trade,International Trade +481085,International Trade,International Trade +529972,International Trade,International Trade +529971,International Trade,International Trade +526781,International Trade,International Trade +490890,International Trade,International Trade +490882,International Trade,International Trade +490879,International Trade,International Trade +490876,International Trade,International Trade +490872,International Trade,International Trade +490861,International Trade,International Trade +490849,International Trade,International Trade +490848,International Trade,International Trade +490846,International Trade,International Trade +490844,International Trade,International Trade +490842,International Trade,International Trade +490837,International Trade,International Trade +490834,International Trade,International Trade +487668,International Trade,International Trade +487667,International Trade,International Trade +487666,International Trade,International Trade +487665,International Trade,International Trade +487664,International Trade,International Trade +487663,International Trade,International Trade +443574,Economic Development,Economic Development +443570,Economic Development,Economic Development +443582,Economic Development,Economic Development +443574,Industry,Industry +443570,Industry,Industry +443582,Industry,Industry +443574,International Relations,International Relations +443570,International Relations,International Relations +443582,International Relations,International Relations +443574,International Trade,International Trade +443570,International Trade,International Trade +443582,International Trade,International Trade +441657,Justice and Law Enforcement,Justice and Law Enforcement +500322,Justice and Law Enforcement,Justice and Law Enforcement +475759,Justice and Law Enforcement,Justice and Law Enforcement +449052,Justice and Law Enforcement,Justice and Law Enforcement +441850,Government Procurement,Government Procurement +494209,Budget,Budget +463079,Budget,Budget +453105,Budget,Budget +453100,Budget,Budget +441993,Budget,Budget +441992,Budget,Budget +441989,Budget,Budget +441987,Budget,Budget +441983,Budget,Budget +531210,Budget,Budget +516105,Budget,Budget +503607,Budget,Budget +497300,Budget,Budget +496385,Budget,Budget +441987,Economic Development,Economic Development +441983,Economic Development,Economic Development +453105,Economic Development,Economic Development +441993,Economic Development,Economic Development +441992,Economic Development,Economic Development +441987,Regional Development,Regional Development +441983,Regional Development,Regional Development +441993,Regional Development,Regional Development +441992,Regional Development,Regional Development +441989,Small Business,Small Business +441987,Small Business,Small Business +441983,Small Business,Small Business +441993,Small Business,Small Business +444183,Health,Health +444182,Health,Health +483577,Infrastructure,Infrastructure +528684,Energy,Energy +483577,Climate,Climate +532371,International Relations,International Relations +527224,International Relations,International Relations +507854,International Relations,International Relations +501385,International Relations,International Relations +499877,International Relations,International Relations +496258,International Relations,International Relations +496257,International Relations,International Relations +496256,International Relations,International Relations +493963,International Relations,International Relations +491895,International Relations,International Relations +491892,International Relations,International Relations +491889,International Relations,International Relations +488821,International Relations,International Relations +458946,International Relations,International Relations +451193,International Relations,International Relations +451190,International Relations,International Relations +442205,International Relations,International Relations +542348,International Relations,International Relations +540699,International Relations,International Relations +533491,International Relations,International Relations +442946,Labour,Labour +465951,Health,Health +465947,Health,Health +448069,Health,Health +442394,Health,Health +442395,Health,Health +492681,Health,Health +455697,Climate,Climate +455663,Climate,Climate +445434,Climate,Climate +442419,Climate,Climate +539632,Climate,Climate +539631,Climate,Climate +531407,Climate,Climate +531406,Climate,Climate +451048,Climate,Climate +445676,Climate,Climate +445674,Climate,Climate +445379,Climate,Climate +445378,Climate,Climate +445376,Climate,Climate +445375,Climate,Climate +445374,Climate,Climate +445373,Climate,Climate +442469,Climate,Climate +537344,Climate,Climate +537332,Climate,Climate +528034,Climate,Climate +519467,Climate,Climate +517054,Climate,Climate +515372,Climate,Climate +513737,Climate,Climate +511973,Climate,Climate +508536,Climate,Climate +507943,Climate,Climate +507938,Climate,Climate +486697,Climate,Climate +484420,Climate,Climate +469889,Climate,Climate +466282,Climate,Climate +462376,Climate,Climate +461897,Climate,Climate +458545,Climate,Climate +507943,Energy,Energy +507938,Energy,Energy +492965,Energy,Energy +486700,Energy,Energy +486697,Energy,Energy +484420,Energy,Energy +477090,Energy,Energy +469889,Energy,Energy +466282,Energy,Energy +462376,Energy,Energy +461897,Energy,Energy +458545,Energy,Energy +458543,Energy,Energy +451048,Energy,Energy +445676,Energy,Energy +445674,Energy,Energy +445379,Energy,Energy +445378,Energy,Energy +445376,Energy,Energy +445375,Energy,Energy +445374,Energy,Energy +445373,Energy,Energy +442469,Energy,Energy +541251,Energy,Energy +537346,Energy,Energy +537344,Energy,Energy +537332,Energy,Energy +531314,Energy,Energy +528034,Energy,Energy +524510,Energy,Energy +521752,Energy,Energy +519467,Energy,Energy +519465,Energy,Energy +517054,Energy,Energy +515372,Energy,Energy +513737,Energy,Energy +442646,Climate,Climate +442643,Climate,Climate +451718,Climate,Climate +442654,Climate,Climate +442653,Climate,Climate +473739,Taxation and Finance,Taxation and Finance +452989,Taxation and Finance,Taxation and Finance +491026,Taxation and Finance,Taxation and Finance +473739,Small Business,Small Business +452989,Small Business,Small Business +491026,Small Business,Small Business +473739,Economic Development,Economic Development +452989,Economic Development,Economic Development +491026,Economic Development,Economic Development +473739,Regional Development,Regional Development +452989,Regional Development,Regional Development +491026,Regional Development,Regional Development +447034,Employment and Training,Employment and Training +447032,Employment and Training,Employment and Training +443524,Research and Development,Research and Development +486558,Economic Development,Economic Development +486556,Economic Development,Economic Development +524943,Economic Development,Economic Development +539374,Industry,Industry +539373,Industry,Industry +542062,Industry,Industry +542061,Industry,Industry +512127,Agriculture,Agriculture +506275,Agriculture,Agriculture +540530,Agriculture,Agriculture +523564,Agriculture,Agriculture +521906,Agriculture,Agriculture +521905,Agriculture,Agriculture +521903,Agriculture,Agriculture +540530,Environment,Environment +523564,Environment,Environment +521906,Environment,Environment +521905,Environment,Environment +521903,Environment,Environment +521902,Environment,Environment +465228,Defence,Defence +465227,Defence,Defence +542356,Defence,Defence +538664,Defence,Defence +534615,Defence,Defence +534613,Defence,Defence +534578,Defence,Defence +483226,Defence,Defence +476188,Defence,Defence +534615,Infrastructure,Infrastructure +534578,Infrastructure,Infrastructure +516524,Infrastructure,Infrastructure +516523,Infrastructure,Infrastructure +465228,Infrastructure,Infrastructure +459033,International Trade,International Trade +444574,Government Procurement,Government Procurement +444520,Government Procurement,Government Procurement +454089,Government Procurement,Government Procurement +454078,Government Procurement,Government Procurement +450582,Government Procurement,Government Procurement +450570,Government Procurement,Government Procurement +450569,Government Procurement,Government Procurement +444587,Government Procurement,Government Procurement +443192,International Trade,International Trade +443191,International Trade,International Trade +460471,International Trade,International Trade +458048,International Trade,International Trade +456727,International Trade,International Trade +451011,International Trade,International Trade +451010,International Trade,International Trade +451009,International Trade,International Trade +443677,International Trade,International Trade +443674,International Trade,International Trade +443194,International Trade,International Trade +443045,International Trade,International Trade +443044,International Trade,International Trade +462129,International Trade,International Trade +456724,International Trade,International Trade +451071,International Trade,International Trade +448914,International Trade,International Trade +443688,International Trade,International Trade +449905,Agriculture,Agriculture +447364,Agriculture,Agriculture +445186,Economic Development,Economic Development +445185,Economic Development,Economic Development +451475,Economic Development,Economic Development +451472,Economic Development,Economic Development +449944,Economic Development,Economic Development +449937,Economic Development,Economic Development +449906,Economic Development,Economic Development +449905,Economic Development,Economic Development +447367,Economic Development,Economic Development +447366,Economic Development,Economic Development +447364,Economic Development,Economic Development +445186,Employment and Training,Employment and Training +445185,Employment and Training,Employment and Training +447366,Employment and Training,Employment and Training +443591,Pensions,Pensions +469482,Defence,Defence +469475,Defence,Defence +518502,Defence,Defence +518501,Defence,Defence +516051,Defence,Defence +516050,Defence,Defence +516048,Defence,Defence +506010,Defence,Defence +484280,Defence,Defence +480350,Defence,Defence +477132,Defence,Defence +477105,Defence,Defence +477101,Defence,Defence +477096,Defence,Defence +477092,Defence,Defence +472316,Defence,Defence +472304,Defence,Defence +472298,Defence,Defence +469482,Economic Development,Economic Development +469475,Economic Development,Economic Development +443794,Economic Development,Economic Development +443794,Industry,Industry +443794,Transportation,Transportation +440987,Economic Development,Economic Development +440987,Financial Institutions,Financial Institutions +443061,Privacy and Access to Information,Privacy and Access to Information +484482,Tourism,Tourism +484482,Small Business,Small Business +442680,Consumer Issues,Consumer Issues +488704,Financial Institutions,Financial Institutions +488704,Taxation and Finance,Taxation and Finance +443151,Environment,Environment +443151,Forestry,Forestry +441601,Intellectual Property,Intellectual Property +446685,Housing,Housing +451230,Energy,Energy +446686,Taxation and Finance,Taxation and Finance +456015,Economic Development,Economic Development +457675,Industry,Industry +456015,International Relations,International Relations +447597,International Trade,International Trade +444375,Infrastructure,Infrastructure +444802,Defence,Defence +441180,Budget,Budget +441175,Economic Development,Economic Development +441175,Regional Development,Regional Development +441176,Small Business,Small Business +441175,Taxation and Finance,Taxation and Finance +443146,Health,Health +443146,Economic Development,Economic Development +500532,Consumer Issues,Consumer Issues +506100,Health,Health +509676,Industry,Industry +528020,Research and Development,Research and Development +451841,Research and Development,Research and Development +460327,Education,Education +487660,Agriculture,Agriculture +487662,International Trade,International Trade +443578,Economic Development,Economic Development +443578,Industry,Industry +443578,International Relations,International Relations +443578,International Trade,International Trade +448819,Justice and Law Enforcement,Justice and Law Enforcement +442347,Intellectual Property,Intellectual Property +451078,Government Procurement,Government Procurement +447888,Agriculture,Agriculture +447888,Consumer Issues,Consumer Issues +447888,Health,Health +447888,Industry,Industry +444364,Health,Health +494212,Budget,Budget +441989,Economic Development,Economic Development +441989,Regional Development,Regional Development +441992,Small Business,Small Business +492063,Employment and Training,Employment and Training +444184,Health,Health +466325,Budget,Budget +528684,Infrastructure,Infrastructure +483577,Energy,Energy +528684,Climate,Climate +442682,Consumer Issues,Consumer Issues +442145,Research and Development,Research and Development +442205,Transportation,Transportation +532372,International Relations,International Relations +442221,Climate,Climate +442946,Agriculture,Agriculture +442947,Labour,Labour +442301,Education,Education +480955,Health,Health +442403,Health,Health +526368,Climate,Climate +458543,Climate,Climate +511973,Energy,Energy +442469,Budget,Budget +442469,Industry,Industry +442608,Employment and Training,Employment and Training +442610,Security,Security +442651,Climate,Climate +473740,Taxation and Finance,Taxation and Finance +473740,Small Business,Small Business +473740,Economic Development,Economic Development +473740,Regional Development,Regional Development +447035,Employment and Training,Employment and Training +443525,Health,Health +446376,Research and Development,Research and Development +489854,Economic Development,Economic Development +539376,Industry,Industry +442827,Climate,Climate +521902,Agriculture,Agriculture +506275,Environment,Environment +472000,Defence,Defence +538665,Energy,Energy +534613,Government Procurement,Government Procurement +540568,Infrastructure,Infrastructure +540568,International Development,International Development +461191,International Trade,International Trade +444577,Government Procurement,Government Procurement +443193,International Trade,International Trade +450576,Government Procurement,Government Procurement +443056,International Trade,International Trade +449944,Agriculture,Agriculture +447367,Consumer Issues,Consumer Issues +445189,Economic Development,Economic Development +445189,Employment and Training,Employment and Training +443591,Health,Health +443591,Budget,Budget +451525,Pensions,Pensions +443591,Taxation and Finance,Taxation and Finance +472296,Defence,Defence +472296,Economic Development,Economic Development +499762,Government Procurement,Government Procurement +443029,Economic Development,Economic Development +443021,Housing,Housing +443021,Justice and Law Enforcement,Justice and Law Enforcement +443010,Climate,Climate +457556,Health,Health +453057,International Trade,International Trade +453057,Agriculture,Agriculture +443011,Budget,Budget +443011,Regional Development,Regional Development +446129,Health,Health +456260,International Trade,International Trade +443039,International Trade,International Trade +444168,Economic Development,Economic Development +509084,Regional Development,Regional Development +443041,Energy,Energy +447054,Agriculture,Agriculture +450766,Consumer Issues,Consumer Issues +447057,Economic Development,Economic Development +450766,Employment and Training,Employment and Training +447054,Health,Health +447054,Industry,Industry +447054,International Trade,International Trade +447054,Justice and Law Enforcement,Justice and Law Enforcement +470206,Defence,Defence +459138,Infrastructure,Infrastructure +443060,Privacy and Access to Information,Privacy and Access to Information +443963,Agriculture,Agriculture +443963,Economic Development,Economic Development +443963,Employment and Training,Employment and Training +445671,Fisheries,Fisheries +443963,Immigration,Immigration +443963,Industry,Industry +443963,Infrastructure,Infrastructure +443963,Intellectual Property,Intellectual Property +443963,Justice and Law Enforcement,Justice and Law Enforcement +443963,Labour,Labour +443961,Regional Development,Regional Development +443955,Research and Development,Research and Development +443562,Climate,Climate +444278,Economic Development,Economic Development +443553,Environment,Environment +443562,Tourism,Tourism +443089,Industry,Industry +446003,Security,Security +462985,Energy,Energy +463000,Industry,Industry +465672,Transportation,Transportation +444406,International Trade,International Trade +463054,Government Procurement,Government Procurement +443715,Climate,Climate +443715,Energy,Energy +443126,Government Procurement,Government Procurement +477499,Economic Development,Economic Development +477499,Health,Health +453731,International Trade,International Trade +448815,Taxation and Finance,Taxation and Finance +447495,Agriculture,Agriculture +447494,Health,Health +447202,Industry,Industry +445477,Health,Health +448239,Employment and Training,Employment and Training +448247,Employment and Training,Employment and Training +448245,Employment and Training,Employment and Training +461256,Education,Education +445436,International Trade,International Trade +444154,International Relations,International Relations +445744,Energy,Energy +445793,Small Business,Small Business +494523,International Trade,International Trade +445746,Financial Institutions,Financial Institutions +445746,Infrastructure,Infrastructure +445743,Industry,Industry +450984,Environment,Environment +501042,International Relations,International Relations +445796,Budget,Budget +445744,Economic Development,Economic Development +443227,Agriculture,Agriculture +443227,Budget,Budget +443227,Housing,Housing +443227,Energy,Energy +460071,Economic Development,Economic Development +460071,Government Procurement,Government Procurement +489437,Justice and Law Enforcement,Justice and Law Enforcement +471922,Sports,Sports +485405,Agriculture,Agriculture +443278,International Development,International Development +443321,Agriculture,Agriculture +443321,Budget,Budget +443321,Housing,Housing +443321,Energy,Energy +443324,Environment,Environment +443324,Climate,Climate +443324,Tourism,Tourism +443324,Economic Development,Economic Development +464113,Employment and Training,Employment and Training +464081,Employment and Training,Employment and Training +464094,Employment and Training,Employment and Training +444138,Environment,Environment +444138,Infrastructure,Infrastructure +456668,Industry,Industry +456668,Regional Development,Regional Development +456668,Research and Development,Research and Development +447105,Education,Education +468461,Budget,Budget +499126,Employment and Training,Employment and Training +465503,Tourism,Tourism +465503,Small Business,Small Business +453442,Economic Development,Economic Development +518501,Economic Development,Economic Development +516051,Economic Development,Economic Development +516050,Economic Development,Economic Development +516049,Economic Development,Economic Development +516048,Economic Development,Economic Development +506010,Economic Development,Economic Development +499762,Economic Development,Economic Development +499761,Economic Development,Economic Development +499758,Economic Development,Economic Development +484280,Economic Development,Economic Development +484276,Economic Development,Economic Development +480901,Economic Development,Economic Development +480350,Economic Development,Economic Development +477132,Economic Development,Economic Development +477105,Economic Development,Economic Development +477101,Economic Development,Economic Development +477096,Economic Development,Economic Development +477092,Economic Development,Economic Development +472316,Economic Development,Economic Development +472304,Economic Development,Economic Development +472298,Economic Development,Economic Development +499761,Government Procurement,Government Procurement +499758,Government Procurement,Government Procurement +484280,Government Procurement,Government Procurement +484276,Government Procurement,Government Procurement +480901,Government Procurement,Government Procurement +480350,Government Procurement,Government Procurement +480348,Government Procurement,Government Procurement +477132,Government Procurement,Government Procurement +477105,Government Procurement,Government Procurement +477101,Government Procurement,Government Procurement +477096,Government Procurement,Government Procurement +477092,Government Procurement,Government Procurement +472316,Government Procurement,Government Procurement +472304,Government Procurement,Government Procurement +472298,Government Procurement,Government Procurement +472296,Government Procurement,Government Procurement +469482,Government Procurement,Government Procurement +469475,Government Procurement,Government Procurement +518502,Government Procurement,Government Procurement +518501,Government Procurement,Government Procurement +516051,Government Procurement,Government Procurement +516050,Government Procurement,Government Procurement +516049,Government Procurement,Government Procurement +516048,Government Procurement,Government Procurement +443028,Economic Development,Economic Development +443027,Economic Development,Economic Development +443026,Economic Development,Economic Development +443025,Economic Development,Economic Development +443024,Economic Development,Economic Development +443023,Economic Development,Economic Development +443022,Economic Development,Economic Development +443021,Economic Development,Economic Development +443020,Economic Development,Economic Development +443019,Economic Development,Economic Development +443031,Economic Development,Economic Development +443030,Economic Development,Economic Development +443020,Housing,Housing +443019,Housing,Housing +443031,Housing,Housing +443030,Housing,Housing +443029,Housing,Housing +443028,Housing,Housing +443027,Housing,Housing +443026,Housing,Housing +443025,Housing,Housing +443024,Housing,Housing +443023,Housing,Housing +443022,Housing,Housing +443020,Justice and Law Enforcement,Justice and Law Enforcement +443019,Justice and Law Enforcement,Justice and Law Enforcement +443031,Justice and Law Enforcement,Justice and Law Enforcement +443030,Justice and Law Enforcement,Justice and Law Enforcement +443029,Justice and Law Enforcement,Justice and Law Enforcement +443028,Justice and Law Enforcement,Justice and Law Enforcement +443027,Justice and Law Enforcement,Justice and Law Enforcement +443026,Justice and Law Enforcement,Justice and Law Enforcement +443024,Justice and Law Enforcement,Justice and Law Enforcement +443023,Justice and Law Enforcement,Justice and Law Enforcement +443022,Justice and Law Enforcement,Justice and Law Enforcement +443010,Health,Health +444385,Health,Health +453658,Health,Health +448357,Health,Health +448356,Health,Health +446165,Health,Health +443038,International Trade,International Trade +443041,Economic Development,Economic Development +443040,Economic Development,Economic Development +515990,Economic Development,Economic Development +509093,Economic Development,Economic Development +507951,Economic Development,Economic Development +504005,Economic Development,Economic Development +504001,Economic Development,Economic Development +499073,Economic Development,Economic Development +450957,Economic Development,Economic Development +507951,Regional Development,Regional Development +504005,Regional Development,Regional Development +499073,Regional Development,Regional Development +444169,Regional Development,Regional Development +444168,Regional Development,Regional Development +443041,Regional Development,Regional Development +515990,Regional Development,Regional Development +509093,Regional Development,Regional Development +447053,Agriculture,Agriculture +447052,Agriculture,Agriculture +460945,Agriculture,Agriculture +450768,Agriculture,Agriculture +450767,Agriculture,Agriculture +450766,Agriculture,Agriculture +447059,Agriculture,Agriculture +447057,Consumer Issues,Consumer Issues +447052,Consumer Issues,Consumer Issues +460945,Consumer Issues,Consumer Issues +450768,Consumer Issues,Consumer Issues +450767,Consumer Issues,Consumer Issues +447054,Economic Development,Economic Development +447053,Economic Development,Economic Development +460945,Economic Development,Economic Development +450768,Economic Development,Economic Development +450767,Economic Development,Economic Development +450766,Economic Development,Economic Development +447059,Economic Development,Economic Development +447059,Employment and Training,Employment and Training +447053,Employment and Training,Employment and Training +460945,Employment and Training,Employment and Training +450768,Employment and Training,Employment and Training +450767,Employment and Training,Employment and Training +447053,Health,Health +447052,Health,Health +460945,Health,Health +450768,Health,Health +450767,Health,Health +450766,Health,Health +447059,Health,Health +447057,Health,Health +447053,Industry,Industry +447052,Industry,Industry +460945,Industry,Industry +450768,Industry,Industry +450767,Industry,Industry +450766,Industry,Industry +447059,Industry,Industry +470205,Defence,Defence +459137,Infrastructure,Infrastructure +459131,Infrastructure,Infrastructure +444521,Infrastructure,Infrastructure +443051,Infrastructure,Infrastructure +443050,Infrastructure,Infrastructure +461596,Infrastructure,Infrastructure +461595,Infrastructure,Infrastructure +460285,Infrastructure,Infrastructure +459987,Infrastructure,Infrastructure +459844,Infrastructure,Infrastructure +459148,Infrastructure,Infrastructure +459147,Infrastructure,Infrastructure +459145,Infrastructure,Infrastructure +459143,Infrastructure,Infrastructure +459142,Infrastructure,Infrastructure +459141,Infrastructure,Infrastructure +443961,Agriculture,Agriculture +443955,Agriculture,Agriculture +445671,Agriculture,Agriculture +445668,Agriculture,Agriculture +445665,Agriculture,Agriculture +443967,Agriculture,Agriculture +443965,Agriculture,Agriculture +443961,Economic Development,Economic Development +443955,Economic Development,Economic Development +445671,Economic Development,Economic Development +445668,Economic Development,Economic Development +445665,Economic Development,Economic Development +443967,Economic Development,Economic Development +443965,Economic Development,Economic Development +443961,Employment and Training,Employment and Training +443955,Employment and Training,Employment and Training +445671,Employment and Training,Employment and Training +445668,Employment and Training,Employment and Training +445665,Employment and Training,Employment and Training +443967,Employment and Training,Employment and Training +443965,Employment and Training,Employment and Training +445668,Fisheries,Fisheries +445665,Fisheries,Fisheries +443967,Fisheries,Fisheries +443965,Fisheries,Fisheries +443963,Fisheries,Fisheries +443961,Fisheries,Fisheries +443955,Fisheries,Fisheries +443961,Immigration,Immigration +443955,Immigration,Immigration +445671,Immigration,Immigration +445668,Immigration,Immigration +445665,Immigration,Immigration +443967,Immigration,Immigration +443965,Immigration,Immigration +443961,Industry,Industry +443955,Industry,Industry +445671,Industry,Industry +445668,Industry,Industry +445665,Industry,Industry +443967,Industry,Industry +443965,Industry,Industry +443961,Infrastructure,Infrastructure +443955,Infrastructure,Infrastructure +445671,Infrastructure,Infrastructure +445668,Infrastructure,Infrastructure +445665,Infrastructure,Infrastructure +443967,Infrastructure,Infrastructure +443965,Infrastructure,Infrastructure +443961,Intellectual Property,Intellectual Property +443955,Intellectual Property,Intellectual Property +445671,Intellectual Property,Intellectual Property +445668,Intellectual Property,Intellectual Property +445665,Intellectual Property,Intellectual Property +443967,Intellectual Property,Intellectual Property +443965,Intellectual Property,Intellectual Property +443961,Justice and Law Enforcement,Justice and Law Enforcement +443955,Justice and Law Enforcement,Justice and Law Enforcement +445671,Justice and Law Enforcement,Justice and Law Enforcement +445668,Justice and Law Enforcement,Justice and Law Enforcement +445665,Justice and Law Enforcement,Justice and Law Enforcement +443967,Justice and Law Enforcement,Justice and Law Enforcement +443965,Justice and Law Enforcement,Justice and Law Enforcement +443961,Labour,Labour +443955,Labour,Labour +445671,Labour,Labour +445668,Labour,Labour +445665,Labour,Labour +443967,Labour,Labour +443965,Labour,Labour +443955,Regional Development,Regional Development +445671,Regional Development,Regional Development +445668,Regional Development,Regional Development +445665,Regional Development,Regional Development +443967,Regional Development,Regional Development +443965,Regional Development,Regional Development +443963,Regional Development,Regional Development +445671,Research and Development,Research and Development +445668,Research and Development,Research and Development +445665,Research and Development,Research and Development +443967,Research and Development,Research and Development +443965,Research and Development,Research and Development +443963,Research and Development,Research and Development +443961,Research and Development,Research and Development +443553,Climate,Climate +443217,Climate,Climate +444278,Climate,Climate +443562,Economic Development,Economic Development +443217,Economic Development,Economic Development +448287,Economic Development,Economic Development +444279,Economic Development,Economic Development +457839,Energy,Energy +457837,Energy,Energy +465675,Energy,Energy +463001,Energy,Energy +463000,Energy,Energy +457839,Industry,Industry +457837,Industry,Industry +463001,Industry,Industry +448847,Transportation,Transportation +447494,Agriculture,Agriculture +447492,Agriculture,Agriculture +447492,Health,Health +447495,Health,Health +445474,Health,Health +445464,Health,Health +447213,Health,Health +447211,Health,Health +446398,Health,Health +446370,Health,Health +448238,Employment and Training,Employment and Training +499083,Employment and Training,Employment and Training +455084,Employment and Training,Employment and Training +455083,Employment and Training,Employment and Training +448242,Employment and Training,Employment and Training +448241,Employment and Training,Employment and Training +448240,Employment and Training,Employment and Training +448246,Employment and Training,Employment and Training +455085,Employment and Training,Employment and Training +448250,Employment and Training,Employment and Training +448249,Employment and Training,Employment and Training +448248,Employment and Training,Employment and Training +448244,Employment and Training,Employment and Training +448243,Employment and Training,Employment and Training +455086,Employment and Training,Employment and Training +446583,Education,Education +443165,Education,Education +475322,Education,Education +445743,Energy,Energy +443676,Energy,Energy +500408,Energy,Energy +500396,Energy,Energy +500356,Energy,Energy +500027,Energy,Energy +494523,Energy,Energy +462874,Energy,Energy +450984,Energy,Energy +448375,Energy,Energy +445087,Small Business,Small Business +444904,Small Business,Small Business +450984,Small Business,Small Business +494120,International Trade,International Trade +494119,International Trade,International Trade +483332,International Trade,International Trade +483331,International Trade,International Trade +483280,International Trade,International Trade +483279,International Trade,International Trade +483278,International Trade,International Trade +483022,International Trade,International Trade +483018,International Trade,International Trade +482953,International Trade,International Trade +482951,International Trade,International Trade +482882,International Trade,International Trade +482881,International Trade,International Trade +480979,International Trade,International Trade +480978,International Trade,International Trade +480454,International Trade,International Trade +463169,International Trade,International Trade +462996,International Trade,International Trade +462876,International Trade,International Trade +462875,International Trade,International Trade +462874,International Trade,International Trade +461208,International Trade,International Trade +460802,International Trade,International Trade +460656,International Trade,International Trade +456812,International Trade,International Trade +456809,International Trade,International Trade +456808,International Trade,International Trade +456807,International Trade,International Trade +456806,International Trade,International Trade +456478,International Trade,International Trade +455173,International Trade,International Trade +453795,International Trade,International Trade +453733,International Trade,International Trade +453622,International Trade,International Trade +453575,International Trade,International Trade +453120,International Trade,International Trade +451883,International Trade,International Trade +451878,International Trade,International Trade +450986,International Trade,International Trade +450984,International Trade,International Trade +450983,International Trade,International Trade +450931,International Trade,International Trade +450801,International Trade,International Trade +448887,International Trade,International Trade +448886,International Trade,International Trade +448377,International Trade,International Trade +448376,International Trade,International Trade +448375,International Trade,International Trade +448374,International Trade,International Trade +448373,International Trade,International Trade +448372,International Trade,International Trade +448371,International Trade,International Trade +446407,International Trade,International Trade +445798,International Trade,International Trade +445797,International Trade,International Trade +445796,International Trade,International Trade +445795,International Trade,International Trade +445794,International Trade,International Trade +445793,International Trade,International Trade +445792,International Trade,International Trade +445746,International Trade,International Trade +445744,International Trade,International Trade +445743,International Trade,International Trade +445087,International Trade,International Trade +444904,International Trade,International Trade +444224,International Trade,International Trade +444178,International Trade,International Trade +443676,International Trade,International Trade +520463,International Trade,International Trade +501042,International Trade,International Trade +500759,International Trade,International Trade +500564,International Trade,International Trade +500562,International Trade,International Trade +500408,International Trade,International Trade +500396,International Trade,International Trade +500356,International Trade,International Trade +500029,International Trade,International Trade +500027,International Trade,International Trade +500026,International Trade,International Trade +445744,Financial Institutions,Financial Institutions +480454,Financial Institutions,Financial Institutions +448887,Financial Institutions,Financial Institutions +448377,Financial Institutions,Financial Institutions +448376,Financial Institutions,Financial Institutions +448375,Financial Institutions,Financial Institutions +448374,Financial Institutions,Financial Institutions +448373,Financial Institutions,Financial Institutions +448372,Financial Institutions,Financial Institutions +448371,Financial Institutions,Financial Institutions +445798,Financial Institutions,Financial Institutions +445797,Financial Institutions,Financial Institutions +445796,Financial Institutions,Financial Institutions +445795,Financial Institutions,Financial Institutions +445794,Financial Institutions,Financial Institutions +445793,Financial Institutions,Financial Institutions +445792,Financial Institutions,Financial Institutions +445744,Infrastructure,Infrastructure +450986,Infrastructure,Infrastructure +445793,Infrastructure,Infrastructure +445087,Industry,Industry +444178,Industry,Industry +448375,Industry,Industry +448372,Industry,Industry +445746,Industry,Industry +445744,Industry,Industry +500759,International Relations,International Relations +500564,International Relations,International Relations +500562,International Relations,International Relations +500408,International Relations,International Relations +500396,International Relations,International Relations +500356,International Relations,International Relations +500029,International Relations,International Relations +500027,International Relations,International Relations +500026,International Relations,International Relations +494523,International Relations,International Relations +494120,International Relations,International Relations +483332,International Relations,International Relations +483331,International Relations,International Relations +483280,International Relations,International Relations +483279,International Relations,International Relations +483278,International Relations,International Relations +483022,International Relations,International Relations +483018,International Relations,International Relations +482953,International Relations,International Relations +482951,International Relations,International Relations +482882,International Relations,International Relations +480979,International Relations,International Relations +480454,International Relations,International Relations +463169,International Relations,International Relations +462996,International Relations,International Relations +462874,International Relations,International Relations +461208,International Relations,International Relations +460802,International Relations,International Relations +460656,International Relations,International Relations +456812,International Relations,International Relations +456809,International Relations,International Relations +456808,International Relations,International Relations +456807,International Relations,International Relations +456806,International Relations,International Relations +456478,International Relations,International Relations +455173,International Relations,International Relations +453795,International Relations,International Relations +453733,International Relations,International Relations +453622,International Relations,International Relations +453575,International Relations,International Relations +453120,International Relations,International Relations +451897,International Relations,International Relations +451895,International Relations,International Relations +451883,International Relations,International Relations +451878,International Relations,International Relations +450986,International Relations,International Relations +450984,International Relations,International Relations +450983,International Relations,International Relations +450931,International Relations,International Relations +450801,International Relations,International Relations +448887,International Relations,International Relations +448886,International Relations,International Relations +448377,International Relations,International Relations +448376,International Relations,International Relations +448375,International Relations,International Relations +448374,International Relations,International Relations +448373,International Relations,International Relations +448372,International Relations,International Relations +448371,International Relations,International Relations +446407,International Relations,International Relations +445798,International Relations,International Relations +445797,International Relations,International Relations +445796,International Relations,International Relations +445795,International Relations,International Relations +445794,International Relations,International Relations +445793,International Relations,International Relations +445792,International Relations,International Relations +445746,International Relations,International Relations +445744,International Relations,International Relations +444224,International Relations,International Relations +445743,Economic Development,Economic Development +444904,Economic Development,Economic Development +450986,Economic Development,Economic Development +450983,Economic Development,Economic Development +450931,Economic Development,Economic Development +448887,Economic Development,Economic Development +448377,Economic Development,Economic Development +448376,Economic Development,Economic Development +448375,Economic Development,Economic Development +448374,Economic Development,Economic Development +448373,Economic Development,Economic Development +448372,Economic Development,Economic Development +448371,Economic Development,Economic Development +446407,Economic Development,Economic Development +445798,Economic Development,Economic Development +445797,Economic Development,Economic Development +445796,Economic Development,Economic Development +445795,Economic Development,Economic Development +445794,Economic Development,Economic Development +445793,Economic Development,Economic Development +445792,Economic Development,Economic Development +445746,Economic Development,Economic Development +460064,Economic Development,Economic Development +448915,Economic Development,Economic Development +491547,Economic Development,Economic Development +460064,Government Procurement,Government Procurement +448915,Government Procurement,Government Procurement +491547,Government Procurement,Government Procurement +461873,Government Procurement,Government Procurement +486004,Justice and Law Enforcement,Justice and Law Enforcement +486002,Justice and Law Enforcement,Justice and Law Enforcement +485405,Justice and Law Enforcement,Justice and Law Enforcement +476687,Justice and Law Enforcement,Justice and Law Enforcement +526927,Justice and Law Enforcement,Justice and Law Enforcement +499996,Justice and Law Enforcement,Justice and Law Enforcement +497868,Justice and Law Enforcement,Justice and Law Enforcement +497818,Justice and Law Enforcement,Justice and Law Enforcement +496604,Justice and Law Enforcement,Justice and Law Enforcement +496597,Justice and Law Enforcement,Justice and Law Enforcement +496566,Justice and Law Enforcement,Justice and Law Enforcement +462808,Sports,Sports +462807,Sports,Sports +457446,Sports,Sports +454476,Sports,Sports +444255,Sports,Sports +526928,Sports,Sports +526927,Sports,Sports +499996,Sports,Sports +498957,Sports,Sports +497868,Sports,Sports +497818,Sports,Sports +489437,Sports,Sports +486004,Sports,Sports +486002,Sports,Sports +485405,Sports,Sports +476687,Sports,Sports +471922,Agriculture,Agriculture +498957,Agriculture,Agriculture +497868,Agriculture,Agriculture +497818,Agriculture,Agriculture +496604,Agriculture,Agriculture +496597,Agriculture,Agriculture +496566,Agriculture,Agriculture +489437,Agriculture,Agriculture +443323,Environment,Environment +443322,Environment,Environment +444559,Environment,Environment +443323,Climate,Climate +443322,Climate,Climate +444559,Climate,Climate +443323,Tourism,Tourism +443322,Tourism,Tourism +444559,Tourism,Tourism +443323,Economic Development,Economic Development +443322,Economic Development,Economic Development +444559,Economic Development,Economic Development +464112,Employment and Training,Employment and Training +451828,Employment and Training,Employment and Training +481687,Employment and Training,Employment and Training +474088,Employment and Training,Employment and Training +469197,Employment and Training,Employment and Training +464123,Employment and Training,Employment and Training +464122,Employment and Training,Employment and Training +464120,Employment and Training,Employment and Training +464119,Employment and Training,Employment and Training +464118,Employment and Training,Employment and Training +464117,Employment and Training,Employment and Training +464115,Employment and Training,Employment and Training +464114,Employment and Training,Employment and Training +464080,Employment and Training,Employment and Training +464078,Employment and Training,Employment and Training +464076,Employment and Training,Employment and Training +451839,Employment and Training,Employment and Training +481686,Employment and Training,Employment and Training +474089,Employment and Training,Employment and Training +464091,Employment and Training,Employment and Training +464090,Employment and Training,Employment and Training +464089,Employment and Training,Employment and Training +464088,Employment and Training,Employment and Training +464087,Employment and Training,Employment and Training +464085,Employment and Training,Employment and Training +464083,Employment and Training,Employment and Training +464093,Employment and Training,Employment and Training +451842,Employment and Training,Employment and Training +481689,Employment and Training,Employment and Training +474090,Employment and Training,Employment and Training +464110,Employment and Training,Employment and Training +464109,Employment and Training,Employment and Training +464107,Employment and Training,Employment and Training +464105,Employment and Training,Employment and Training +464104,Employment and Training,Employment and Training +464101,Employment and Training,Employment and Training +464097,Employment and Training,Employment and Training +464096,Employment and Training,Employment and Training +464095,Employment and Training,Employment and Training +456661,Regional Development,Regional Development +456661,Research and Development,Research and Development +445103,Education,Education +445100,Education,Education +543064,Education,Education +509697,Education,Education +507183,Education,Education +503541,Education,Education +503540,Education,Education +503539,Education,Education +500566,Education,Education +497278,Education,Education +497277,Education,Education +489692,Education,Education +488617,Education,Education +466655,Education,Education +466654,Education,Education +466652,Education,Education +463367,Education,Education +458213,Education,Education +457100,Education,Education +457099,Education,Education +457098,Education,Education +447109,Education,Education +447108,Education,Education +447107,Education,Education +468460,Budget,Budget +543412,Budget,Budget +478136,Budget,Budget +476106,Budget,Budget +468480,Budget,Budget +468473,Budget,Budget +468471,Budget,Budget +499116,Employment and Training,Employment and Training +499114,Employment and Training,Employment and Training +485041,Employment and Training,Employment and Training +470574,Employment and Training,Employment and Training +470572,Employment and Training,Employment and Training +455602,Employment and Training,Employment and Training +455558,Employment and Training,Employment and Training +455554,Employment and Training,Employment and Training +447859,Employment and Training,Employment and Training +447813,Employment and Training,Employment and Training +443952,Employment and Training,Employment and Training +443943,Employment and Training,Employment and Training +443939,Employment and Training,Employment and Training +543412,Employment and Training,Employment and Training +525430,Employment and Training,Employment and Training +525425,Employment and Training,Employment and Training +525423,Employment and Training,Employment and Training +525421,Employment and Training,Employment and Training +525419,Employment and Training,Employment and Training +525418,Employment and Training,Employment and Training +525417,Employment and Training,Employment and Training +525415,Employment and Training,Employment and Training +525413,Employment and Training,Employment and Training +525406,Employment and Training,Employment and Training +525404,Employment and Training,Employment and Training +525401,Employment and Training,Employment and Training +499178,Employment and Training,Employment and Training +499176,Employment and Training,Employment and Training +499174,Employment and Training,Employment and Training +499171,Employment and Training,Employment and Training +499169,Employment and Training,Employment and Training +499164,Employment and Training,Employment and Training +499161,Employment and Training,Employment and Training +443714,Budget,Budget +447926,Government Procurement,Government Procurement +445416,Government Procurement,Government Procurement +450706,Government Procurement,Government Procurement +450705,Government Procurement,Government Procurement +450704,Government Procurement,Government Procurement +449537,Small Business,Small Business +447323,Small Business,Small Business +445104,Small Business,Small Business +444375,Economic Development,Economic Development +443463,Economic Development,Economic Development +444377,Economic Development,Economic Development +459698,Elections,Elections +443515,Elections,Elections +461814,Elections,Elections +444812,Government Procurement,Government Procurement +444810,Government Procurement,Government Procurement +475839,Government Procurement,Government Procurement +445930,Consumer Issues,Consumer Issues +444408,Consumer Issues,Consumer Issues +462434,Consumer Issues,Consumer Issues +459877,Consumer Issues,Consumer Issues +459829,Consumer Issues,Consumer Issues +459828,Consumer Issues,Consumer Issues +455136,Consumer Issues,Consumer Issues +455130,Consumer Issues,Consumer Issues +451750,Consumer Issues,Consumer Issues +451743,Consumer Issues,Consumer Issues +449571,Consumer Issues,Consumer Issues +448559,Economic Development,Economic Development +444408,Economic Development,Economic Development +462434,Economic Development,Economic Development +459828,Economic Development,Economic Development +455136,Economic Development,Economic Development +455130,Economic Development,Economic Development +451750,Economic Development,Economic Development +445930,Financial Institutions,Financial Institutions +444408,Financial Institutions,Financial Institutions +462434,Financial Institutions,Financial Institutions +459877,Financial Institutions,Financial Institutions +459829,Financial Institutions,Financial Institutions +459828,Financial Institutions,Financial Institutions +455136,Financial Institutions,Financial Institutions +455130,Financial Institutions,Financial Institutions +451750,Financial Institutions,Financial Institutions +451743,Financial Institutions,Financial Institutions +449571,Financial Institutions,Financial Institutions +455136,Industry,Industry +455130,Industry,Industry +445930,Industry,Industry +444408,Industry,Industry +459877,Industry,Industry +459829,Industry,Industry +451743,Privacy and Access to Information,Privacy and Access to Information +449571,Privacy and Access to Information,Privacy and Access to Information +445930,Privacy and Access to Information,Privacy and Access to Information +462434,Privacy and Access to Information,Privacy and Access to Information +459877,Privacy and Access to Information,Privacy and Access to Information +459829,Privacy and Access to Information,Privacy and Access to Information +459828,Privacy and Access to Information,Privacy and Access to Information +455136,Privacy and Access to Information,Privacy and Access to Information +455130,Privacy and Access to Information,Privacy and Access to Information +445930,Security,Security +444408,Security,Security +462434,Security,Security +459877,Security,Security +459828,Security,Security +455136,Security,Security +455130,Security,Security +451750,Security,Security +451743,Security,Security +445930,Small Business,Small Business +444408,Small Business,Small Business +455136,Small Business,Small Business +455130,Small Business,Small Business +451750,Small Business,Small Business +456408,Transportation,Transportation +443617,Justice and Law Enforcement,Justice and Law Enforcement +467355,Economic Development,Economic Development +467355,Environment,Environment +467355,Regional Development,Regional Development +467355,Transportation,Transportation +467355,Infrastructure,Infrastructure +467355,International Trade,International Trade +455408,Defence,Defence +455407,Defence,Defence +451651,Defence,Defence +449870,Defence,Defence +449869,Defence,Defence +449867,Defence,Defence +449865,Defence,Defence +447814,Defence,Defence +447808,Defence,Defence +447401,Defence,Defence +445847,Defence,Defence +445844,Defence,Defence +445843,Defence,Defence +445842,Defence,Defence +443679,Defence,Defence +508596,Defence,Defence +501604,Defence,Defence +499177,Defence,Defence +495920,Defence,Defence +493474,Defence,Defence +493472,Defence,Defence +493467,Defence,Defence +493457,Defence,Defence +492166,Defence,Defence +492164,Defence,Defence +492163,Defence,Defence +491531,Defence,Defence +491510,Defence,Defence +491478,Defence,Defence +491466,Defence,Defence +484195,Defence,Defence +484193,Defence,Defence +484190,Defence,Defence +484188,Defence,Defence +484187,Defence,Defence +484185,Defence,Defence +484183,Defence,Defence +481652,Defence,Defence +479874,Defence,Defence +479871,Defence,Defence +478121,Defence,Defence +478119,Defence,Defence +478117,Defence,Defence +478110,Defence,Defence +478106,Defence,Defence +476194,Defence,Defence +476193,Defence,Defence +476192,Defence,Defence +468354,Defence,Defence +468351,Defence,Defence +464146,Defence,Defence +464145,Defence,Defence +464140,Defence,Defence +464138,Defence,Defence +462425,Defence,Defence +462420,Defence,Defence +462417,Defence,Defence +462414,Defence,Defence +460499,Defence,Defence +457570,Defence,Defence +455411,Defence,Defence +455410,Defence,Defence +445836,Fisheries,Fisheries +443679,Fisheries,Fisheries +508596,Fisheries,Fisheries +508578,Fisheries,Fisheries +504719,Fisheries,Fisheries +501606,Fisheries,Fisheries +501604,Fisheries,Fisheries +493478,Fisheries,Fisheries +493474,Fisheries,Fisheries +493473,Fisheries,Fisheries +493467,Fisheries,Fisheries +493464,Fisheries,Fisheries +492169,Fisheries,Fisheries +492168,Fisheries,Fisheries +492167,Fisheries,Fisheries +492164,Fisheries,Fisheries +491550,Fisheries,Fisheries +491548,Fisheries,Fisheries +491538,Fisheries,Fisheries +491527,Fisheries,Fisheries +491523,Fisheries,Fisheries +491510,Fisheries,Fisheries +491458,Fisheries,Fisheries +484197,Fisheries,Fisheries +484193,Fisheries,Fisheries +484187,Fisheries,Fisheries +484186,Fisheries,Fisheries +484185,Fisheries,Fisheries +484183,Fisheries,Fisheries +484182,Fisheries,Fisheries +481635,Fisheries,Fisheries +479874,Fisheries,Fisheries +478122,Fisheries,Fisheries +478121,Fisheries,Fisheries +478119,Fisheries,Fisheries +478117,Fisheries,Fisheries +478115,Fisheries,Fisheries +478106,Fisheries,Fisheries +476194,Fisheries,Fisheries +476192,Fisheries,Fisheries +476191,Fisheries,Fisheries +470518,Fisheries,Fisheries +464146,Fisheries,Fisheries +464145,Fisheries,Fisheries +462420,Fisheries,Fisheries +462414,Fisheries,Fisheries +457570,Fisheries,Fisheries +455409,Fisheries,Fisheries +455408,Fisheries,Fisheries +455407,Fisheries,Fisheries +455406,Fisheries,Fisheries +451651,Fisheries,Fisheries +449870,Fisheries,Fisheries +449869,Fisheries,Fisheries +449867,Fisheries,Fisheries +449865,Fisheries,Fisheries +447401,Fisheries,Fisheries +445848,Fisheries,Fisheries +445847,Fisheries,Fisheries +445846,Fisheries,Fisheries +445844,Fisheries,Fisheries +445841,Fisheries,Fisheries +470520,International Trade,International Trade +470518,International Trade,International Trade +470515,International Trade,International Trade +468354,International Trade,International Trade +468351,International Trade,International Trade +464146,International Trade,International Trade +464145,International Trade,International Trade +464143,International Trade,International Trade +464141,International Trade,International Trade +464140,International Trade,International Trade +462425,International Trade,International Trade +462424,International Trade,International Trade +462420,International Trade,International Trade +462419,International Trade,International Trade +461383,International Trade,International Trade +460497,International Trade,International Trade +460248,International Trade,International Trade +458388,International Trade,International Trade +457570,International Trade,International Trade +455409,International Trade,International Trade +455408,International Trade,International Trade +455407,International Trade,International Trade +451651,International Trade,International Trade +449867,International Trade,International Trade +447808,International Trade,International Trade +445845,International Trade,International Trade +445844,International Trade,International Trade +445843,International Trade,International Trade +445842,International Trade,International Trade +445841,International Trade,International Trade +445839,International Trade,International Trade +445837,International Trade,International Trade +445836,International Trade,International Trade +445835,International Trade,International Trade +443679,International Trade,International Trade +508578,International Trade,International Trade +504719,International Trade,International Trade +501607,International Trade,International Trade +501606,International Trade,International Trade +501605,International Trade,International Trade +499179,International Trade,International Trade +499177,International Trade,International Trade +495923,International Trade,International Trade +493474,International Trade,International Trade +493472,International Trade,International Trade +493467,International Trade,International Trade +492166,International Trade,International Trade +492163,International Trade,International Trade +491548,International Trade,International Trade +491523,International Trade,International Trade +491520,International Trade,International Trade +491478,International Trade,International Trade +491458,International Trade,International Trade +484197,International Trade,International Trade +484190,International Trade,International Trade +484188,International Trade,International Trade +484186,International Trade,International Trade +484185,International Trade,International Trade +484182,International Trade,International Trade +481652,International Trade,International Trade +481634,International Trade,International Trade +479876,International Trade,International Trade +479874,International Trade,International Trade +479871,International Trade,International Trade +479869,International Trade,International Trade +478118,International Trade,International Trade +478117,International Trade,International Trade +478113,International Trade,International Trade +478110,International Trade,International Trade +478106,International Trade,International Trade +476193,International Trade,International Trade +470520,Regional Development,Regional Development +470515,Regional Development,Regional Development +468354,Regional Development,Regional Development +468351,Regional Development,Regional Development +464143,Regional Development,Regional Development +462424,Regional Development,Regional Development +462420,Regional Development,Regional Development +462419,Regional Development,Regional Development +462417,Regional Development,Regional Development +462414,Regional Development,Regional Development +461383,Regional Development,Regional Development +460248,Regional Development,Regional Development +459714,Regional Development,Regional Development +455411,Regional Development,Regional Development +455410,Regional Development,Regional Development +455409,Regional Development,Regional Development +455408,Regional Development,Regional Development +451651,Regional Development,Regional Development +449870,Regional Development,Regional Development +449868,Regional Development,Regional Development +449867,Regional Development,Regional Development +447808,Regional Development,Regional Development +447401,Regional Development,Regional Development +445847,Regional Development,Regional Development +445846,Regional Development,Regional Development +445844,Regional Development,Regional Development +445841,Regional Development,Regional Development +445840,Regional Development,Regional Development +445836,Regional Development,Regional Development +443679,Regional Development,Regional Development +508596,Regional Development,Regional Development +508578,Regional Development,Regional Development +501607,Regional Development,Regional Development +499177,Regional Development,Regional Development +493478,Regional Development,Regional Development +493467,Regional Development,Regional Development +493457,Regional Development,Regional Development +492170,Regional Development,Regional Development +492168,Regional Development,Regional Development +492167,Regional Development,Regional Development +492166,Regional Development,Regional Development +492164,Regional Development,Regional Development +491548,Regional Development,Regional Development +491544,Regional Development,Regional Development +491527,Regional Development,Regional Development +491523,Regional Development,Regional Development +491520,Regional Development,Regional Development +491466,Regional Development,Regional Development +491453,Regional Development,Regional Development +484197,Regional Development,Regional Development +484195,Regional Development,Regional Development +484193,Regional Development,Regional Development +484190,Regional Development,Regional Development +481652,Regional Development,Regional Development +481645,Regional Development,Regional Development +481635,Regional Development,Regional Development +479874,Regional Development,Regional Development +478110,Regional Development,Regional Development +476192,Regional Development,Regional Development +476191,Regional Development,Regional Development +470516,Defence,Defence +470515,Defence,Defence +464143,Defence,Defence +464142,Defence,Defence +464141,Defence,Defence +462424,Defence,Defence +462419,Defence,Defence +462412,Defence,Defence +461383,Defence,Defence +460567,Defence,Defence +460497,Defence,Defence +460248,Defence,Defence +459714,Defence,Defence +458388,Defence,Defence +455406,Defence,Defence +449871,Defence,Defence +449868,Defence,Defence +445848,Defence,Defence +445846,Defence,Defence +445845,Defence,Defence +445841,Defence,Defence +445840,Defence,Defence +445839,Defence,Defence +445837,Defence,Defence +445836,Defence,Defence +445835,Defence,Defence +443684,Defence,Defence +508586,Defence,Defence +508578,Defence,Defence +504719,Defence,Defence +501607,Defence,Defence +501606,Defence,Defence +501605,Defence,Defence +499179,Defence,Defence +495923,Defence,Defence +495921,Defence,Defence +493478,Defence,Defence +493473,Defence,Defence +493470,Defence,Defence +493464,Defence,Defence +492170,Defence,Defence +492169,Defence,Defence +492168,Defence,Defence +492167,Defence,Defence +491550,Defence,Defence +491548,Defence,Defence +491544,Defence,Defence +491538,Defence,Defence +491527,Defence,Defence +491523,Defence,Defence +491520,Defence,Defence +491458,Defence,Defence +491453,Defence,Defence +484197,Defence,Defence +484189,Defence,Defence +484186,Defence,Defence +484184,Defence,Defence +484182,Defence,Defence +481645,Defence,Defence +481635,Defence,Defence +481634,Defence,Defence +479876,Defence,Defence +479873,Defence,Defence +479870,Defence,Defence +479869,Defence,Defence +479867,Defence,Defence +478122,Defence,Defence +478120,Defence,Defence +478118,Defence,Defence +478115,Defence,Defence +478113,Defence,Defence +476191,Defence,Defence +470524,Defence,Defence +470522,Defence,Defence +470520,Defence,Defence +501607,Fisheries,Fisheries +501605,Fisheries,Fisheries +499179,Fisheries,Fisheries +499177,Fisheries,Fisheries +495923,Fisheries,Fisheries +495921,Fisheries,Fisheries +495920,Fisheries,Fisheries +493472,Fisheries,Fisheries +493470,Fisheries,Fisheries +493457,Fisheries,Fisheries +492170,Fisheries,Fisheries +492166,Fisheries,Fisheries +492163,Fisheries,Fisheries +491544,Fisheries,Fisheries +491531,Fisheries,Fisheries +491520,Fisheries,Fisheries +491478,Fisheries,Fisheries +491466,Fisheries,Fisheries +491453,Fisheries,Fisheries +484195,Fisheries,Fisheries +484190,Fisheries,Fisheries +484189,Fisheries,Fisheries +484188,Fisheries,Fisheries +484184,Fisheries,Fisheries +481652,Fisheries,Fisheries +481645,Fisheries,Fisheries +481634,Fisheries,Fisheries +479876,Fisheries,Fisheries +479873,Fisheries,Fisheries +479871,Fisheries,Fisheries +479870,Fisheries,Fisheries +479869,Fisheries,Fisheries +479867,Fisheries,Fisheries +478120,Fisheries,Fisheries +478118,Fisheries,Fisheries +478113,Fisheries,Fisheries +478110,Fisheries,Fisheries +476193,Fisheries,Fisheries +470524,Fisheries,Fisheries +470522,Fisheries,Fisheries +470520,Fisheries,Fisheries +470516,Fisheries,Fisheries +470515,Fisheries,Fisheries +468354,Fisheries,Fisheries +468351,Fisheries,Fisheries +464143,Fisheries,Fisheries +464142,Fisheries,Fisheries +464141,Fisheries,Fisheries +464140,Fisheries,Fisheries +464138,Fisheries,Fisheries +462425,Fisheries,Fisheries +462424,Fisheries,Fisheries +462419,Fisheries,Fisheries +462417,Fisheries,Fisheries +462412,Fisheries,Fisheries +461383,Fisheries,Fisheries +460567,Fisheries,Fisheries +460499,Fisheries,Fisheries +460497,Fisheries,Fisheries +460248,Fisheries,Fisheries +459714,Fisheries,Fisheries +458388,Fisheries,Fisheries +455411,Fisheries,Fisheries +455410,Fisheries,Fisheries +449871,Fisheries,Fisheries +449868,Fisheries,Fisheries +447814,Fisheries,Fisheries +447808,Fisheries,Fisheries +445845,Fisheries,Fisheries +445843,Fisheries,Fisheries +445842,Fisheries,Fisheries +445839,Fisheries,Fisheries +445837,Fisheries,Fisheries +445835,Fisheries,Fisheries +443684,Fisheries,Fisheries +470522,International Trade,International Trade +470516,International Trade,International Trade +464142,International Trade,International Trade +464138,International Trade,International Trade +462417,International Trade,International Trade +462414,International Trade,International Trade +462412,International Trade,International Trade +460567,International Trade,International Trade +460499,International Trade,International Trade +459714,International Trade,International Trade +455411,International Trade,International Trade +455410,International Trade,International Trade +455406,International Trade,International Trade +449871,International Trade,International Trade +449870,International Trade,International Trade +449869,International Trade,International Trade +449868,International Trade,International Trade +449865,International Trade,International Trade +447814,International Trade,International Trade +447401,International Trade,International Trade +445848,International Trade,International Trade +445847,International Trade,International Trade +445846,International Trade,International Trade +445840,International Trade,International Trade +443684,International Trade,International Trade +508596,International Trade,International Trade +508586,International Trade,International Trade +501604,International Trade,International Trade +495921,International Trade,International Trade +495920,International Trade,International Trade +493478,International Trade,International Trade +493473,International Trade,International Trade +493470,International Trade,International Trade +493464,International Trade,International Trade +493457,International Trade,International Trade +492170,International Trade,International Trade +492169,International Trade,International Trade +492168,International Trade,International Trade +492167,International Trade,International Trade +492164,International Trade,International Trade +491550,International Trade,International Trade +491544,International Trade,International Trade +491538,International Trade,International Trade +491531,International Trade,International Trade +491527,International Trade,International Trade +491510,International Trade,International Trade +491466,International Trade,International Trade +491453,International Trade,International Trade +484195,International Trade,International Trade +484193,International Trade,International Trade +484189,International Trade,International Trade +484187,International Trade,International Trade +484184,International Trade,International Trade +484183,International Trade,International Trade +481645,International Trade,International Trade +481635,International Trade,International Trade +479873,International Trade,International Trade +479870,International Trade,International Trade +479867,International Trade,International Trade +478122,International Trade,International Trade +478121,International Trade,International Trade +478120,International Trade,International Trade +478119,International Trade,International Trade +478115,International Trade,International Trade +476194,International Trade,International Trade +476192,International Trade,International Trade +445835,Regional Development,Regional Development +443684,Regional Development,Regional Development +508586,Regional Development,Regional Development +504719,Regional Development,Regional Development +501606,Regional Development,Regional Development +501605,Regional Development,Regional Development +501604,Regional Development,Regional Development +499179,Regional Development,Regional Development +495923,Regional Development,Regional Development +495921,Regional Development,Regional Development +495920,Regional Development,Regional Development +493474,Regional Development,Regional Development +493473,Regional Development,Regional Development +493472,Regional Development,Regional Development +493470,Regional Development,Regional Development +493464,Regional Development,Regional Development +492169,Regional Development,Regional Development +492163,Regional Development,Regional Development +491550,Regional Development,Regional Development +491538,Regional Development,Regional Development +491531,Regional Development,Regional Development +491510,Regional Development,Regional Development +491478,Regional Development,Regional Development +491458,Regional Development,Regional Development +484189,Regional Development,Regional Development +484188,Regional Development,Regional Development +484187,Regional Development,Regional Development +484186,Regional Development,Regional Development +484185,Regional Development,Regional Development +484184,Regional Development,Regional Development +484183,Regional Development,Regional Development +484182,Regional Development,Regional Development +481634,Regional Development,Regional Development +479876,Regional Development,Regional Development +479873,Regional Development,Regional Development +479871,Regional Development,Regional Development +479870,Regional Development,Regional Development +479869,Regional Development,Regional Development +479867,Regional Development,Regional Development +478122,Regional Development,Regional Development +478121,Regional Development,Regional Development +478120,Regional Development,Regional Development +478119,Regional Development,Regional Development +478118,Regional Development,Regional Development +478117,Regional Development,Regional Development +478115,Regional Development,Regional Development +478113,Regional Development,Regional Development +478106,Regional Development,Regional Development +476194,Regional Development,Regional Development +476193,Regional Development,Regional Development +470524,Regional Development,Regional Development +470518,Regional Development,Regional Development +470516,Regional Development,Regional Development +464146,Regional Development,Regional Development +464145,Regional Development,Regional Development +464142,Regional Development,Regional Development +464141,Regional Development,Regional Development +464140,Regional Development,Regional Development +464138,Regional Development,Regional Development +462425,Regional Development,Regional Development +462412,Regional Development,Regional Development +460567,Regional Development,Regional Development +460499,Regional Development,Regional Development +460497,Regional Development,Regional Development +458388,Regional Development,Regional Development +457570,Regional Development,Regional Development +455407,Regional Development,Regional Development +455406,Regional Development,Regional Development +449871,Regional Development,Regional Development +449869,Regional Development,Regional Development +449865,Regional Development,Regional Development +447814,Regional Development,Regional Development +445848,Regional Development,Regional Development +445845,Regional Development,Regional Development +445843,Regional Development,Regional Development +445842,Regional Development,Regional Development +445839,Regional Development,Regional Development +444378,Economic Development,Economic Development +443697,Economic Development,Economic Development +484152,Health,Health +445522,Health,Health +496138,Health,Health +489422,Health,Health +489420,Health,Health +484499,Health,Health +484179,Health,Health +484178,Health,Health +484177,Health,Health +484176,Health,Health +484175,Health,Health +484174,Health,Health +484173,Health,Health +484172,Health,Health +484171,Health,Health +484170,Health,Health +484169,Health,Health +484168,Health,Health +484167,Health,Health +484166,Health,Health +484165,Health,Health +484164,Health,Health +484163,Health,Health +484162,Health,Health +484161,Health,Health +484160,Health,Health +484159,Health,Health +484158,Health,Health +484157,Health,Health +484156,Health,Health +484155,Health,Health +484154,Health,Health +484152,Immigration,Immigration +445522,Immigration,Immigration +496138,Immigration,Immigration +489422,Immigration,Immigration +489420,Immigration,Immigration +484499,Immigration,Immigration +484179,Immigration,Immigration +484178,Immigration,Immigration +484177,Immigration,Immigration +484176,Immigration,Immigration +484175,Immigration,Immigration +484174,Immigration,Immigration +484173,Immigration,Immigration +484172,Immigration,Immigration +484171,Immigration,Immigration +484170,Immigration,Immigration +484169,Immigration,Immigration +484168,Immigration,Immigration +484167,Immigration,Immigration +484166,Immigration,Immigration +484165,Immigration,Immigration +484164,Immigration,Immigration +484163,Immigration,Immigration +484162,Immigration,Immigration +484161,Immigration,Immigration +484160,Immigration,Immigration +484159,Immigration,Immigration +484158,Immigration,Immigration +484157,Immigration,Immigration +484156,Immigration,Immigration +484155,Immigration,Immigration +484154,Immigration,Immigration +484164,Infrastructure,Infrastructure +484163,Infrastructure,Infrastructure +484162,Infrastructure,Infrastructure +484161,Infrastructure,Infrastructure +484160,Infrastructure,Infrastructure +484159,Infrastructure,Infrastructure +484158,Infrastructure,Infrastructure +484157,Infrastructure,Infrastructure +484156,Infrastructure,Infrastructure +484155,Infrastructure,Infrastructure +484154,Infrastructure,Infrastructure +484153,Infrastructure,Infrastructure +484152,Infrastructure,Infrastructure +445522,Infrastructure,Infrastructure +496138,Infrastructure,Infrastructure +489422,Infrastructure,Infrastructure +489420,Infrastructure,Infrastructure +484499,Infrastructure,Infrastructure +484179,Infrastructure,Infrastructure +484178,Infrastructure,Infrastructure +484177,Infrastructure,Infrastructure +484176,Infrastructure,Infrastructure +484175,Infrastructure,Infrastructure +484174,Infrastructure,Infrastructure +484173,Infrastructure,Infrastructure +484172,Infrastructure,Infrastructure +484171,Infrastructure,Infrastructure +484170,Infrastructure,Infrastructure +484169,Infrastructure,Infrastructure +484168,Infrastructure,Infrastructure +484167,Infrastructure,Infrastructure +484166,Infrastructure,Infrastructure +457680,Energy,Energy +443738,Energy,Energy +452338,International Trade,International Trade +449700,International Trade,International Trade +443738,International Trade,International Trade +457684,International Trade,International Trade +457680,International Trade,International Trade +496811,Agriculture,Agriculture +446219,Agriculture,Agriculture +524357,Agriculture,Agriculture +524356,Agriculture,Agriculture +500196,Agriculture,Agriculture +496816,Agriculture,Agriculture +446220,Consumer Issues,Consumer Issues +446219,Consumer Issues,Consumer Issues +524357,Consumer Issues,Consumer Issues +524356,Consumer Issues,Consumer Issues +500196,Consumer Issues,Consumer Issues +496816,Consumer Issues,Consumer Issues +496814,Consumer Issues,Consumer Issues +524356,Environment,Environment +500196,Environment,Environment +496814,International Trade,International Trade +496811,International Trade,International Trade +446219,International Trade,International Trade +524357,International Trade,International Trade +524356,International Trade,International Trade +500196,International Trade,International Trade +454959,Climate,Climate +447337,Climate,Climate +493036,Climate,Climate +458541,Economic Development,Economic Development +457016,Economic Development,Economic Development +454959,Economic Development,Economic Development +447339,Economic Development,Economic Development +447338,Economic Development,Economic Development +447337,Economic Development,Economic Development +484751,Economic Development,Economic Development +447339,Employment and Training,Employment and Training +489976,Environment,Environment +458541,Forestry,Forestry +457016,Forestry,Forestry +454959,Forestry,Forestry +447339,Forestry,Forestry +447338,Forestry,Forestry +447337,Forestry,Forestry +493036,Forestry,Forestry +484751,Forestry,Forestry +493036,Industry,Industry +484751,Industry,Industry +462551,Industry,Industry +458541,Industry,Industry +457016,Industry,Industry +447339,Industry,Industry +462551,International Trade,International Trade +458541,Regional Development,Regional Development +457016,Regional Development,Regional Development +484751,Regional Development,Regional Development +454959,Transportation,Transportation +447337,Transportation,Transportation +493036,Transportation,Transportation +484751,Transportation,Transportation +444451,Infrastructure,Infrastructure +480078,Infrastructure,Infrastructure +444451,Environment,Environment +444453,Energy,Energy +444451,Energy,Energy +444573,Financial Institutions,Financial Institutions +444523,Financial Institutions,Financial Institutions +458047,Financial Institutions,Financial Institutions +457445,Financial Institutions,Financial Institutions +457443,Financial Institutions,Financial Institutions +456725,Financial Institutions,Financial Institutions +454088,Financial Institutions,Financial Institutions +454065,Financial Institutions,Financial Institutions +451156,Financial Institutions,Financial Institutions +451017,Financial Institutions,Financial Institutions +451013,Financial Institutions,Financial Institutions +450583,Financial Institutions,Financial Institutions +450571,Financial Institutions,Financial Institutions +448776,Financial Institutions,Financial Institutions +447208,Financial Institutions,Financial Institutions +446364,Financial Institutions,Financial Institutions +446363,Financial Institutions,Financial Institutions +446362,Financial Institutions,Financial Institutions +446361,Financial Institutions,Financial Institutions +446360,Financial Institutions,Financial Institutions +444586,Financial Institutions,Financial Institutions +444585,Financial Institutions,Financial Institutions +444582,Financial Institutions,Financial Institutions +444581,Financial Institutions,Financial Institutions +497609,Agriculture,Agriculture +497608,Agriculture,Agriculture +465154,Agriculture,Agriculture +465145,Agriculture,Agriculture +465144,Agriculture,Agriculture +465143,Agriculture,Agriculture +445137,Agriculture,Agriculture +445136,Agriculture,Agriculture +523717,Agriculture,Agriculture +523716,Agriculture,Agriculture +523715,Agriculture,Agriculture +523714,Agriculture,Agriculture +523713,Agriculture,Agriculture +523712,Agriculture,Agriculture +497614,Agriculture,Agriculture +497613,Agriculture,Agriculture +445125,Agriculture,Agriculture +445124,Agriculture,Agriculture +513617,Fisheries,Fisheries +513616,Fisheries,Fisheries +445270,Fisheries,Fisheries +543422,Fisheries,Fisheries +535916,Fisheries,Fisheries +535915,Fisheries,Fisheries +535912,Fisheries,Fisheries +535911,Fisheries,Fisheries +535910,Fisheries,Fisheries +535909,Fisheries,Fisheries +535908,Fisheries,Fisheries +535906,Fisheries,Fisheries +527149,Fisheries,Fisheries +523140,Fisheries,Fisheries +523136,Fisheries,Fisheries +523131,Fisheries,Fisheries +523124,Fisheries,Fisheries +518181,Fisheries,Fisheries +514321,Fisheries,Fisheries +513635,Fisheries,Fisheries +513634,Fisheries,Fisheries +513633,Fisheries,Fisheries +513632,Fisheries,Fisheries +513631,Fisheries,Fisheries +513630,Fisheries,Fisheries +513629,Fisheries,Fisheries +513628,Fisheries,Fisheries +513627,Fisheries,Fisheries +513626,Fisheries,Fisheries +513624,Fisheries,Fisheries +513623,Fisheries,Fisheries +513622,Fisheries,Fisheries +513621,Fisheries,Fisheries +444798,International Trade,International Trade +448722,Taxation and Finance,Taxation and Finance +447731,Economic Development,Economic Development +447726,Economic Development,Economic Development +452492,Economic Development,Economic Development +449495,Economic Development,Economic Development +524635,Financial Institutions,Financial Institutions +512267,Financial Institutions,Financial Institutions +488702,Financial Institutions,Financial Institutions +475325,Financial Institutions,Financial Institutions +469367,Financial Institutions,Financial Institutions +461140,Financial Institutions,Financial Institutions +542127,Financial Institutions,Financial Institutions +475325,Taxation and Finance,Taxation and Finance +474058,Taxation and Finance,Taxation and Finance +469367,Taxation and Finance,Taxation and Finance +461140,Taxation and Finance,Taxation and Finance +444156,Taxation and Finance,Taxation and Finance +542127,Taxation and Finance,Taxation and Finance +536010,Taxation and Finance,Taxation and Finance +524635,Taxation and Finance,Taxation and Finance +512267,Taxation and Finance,Taxation and Finance +488702,Taxation and Finance,Taxation and Finance +446600,Forestry,Forestry +446600,Infrastructure,Infrastructure +517738,Budget,Budget +517736,Budget,Budget +509568,Budget,Budget +509567,Budget,Budget +505659,Budget,Budget +496367,Budget,Budget +496366,Budget,Budget +496365,Budget,Budget +496363,Budget,Budget +496362,Budget,Budget +495961,Budget,Budget +495957,Budget,Budget +493122,Budget,Budget +493119,Budget,Budget +493116,Budget,Budget +489182,Budget,Budget +489181,Budget,Budget +489180,Budget,Budget +489179,Budget,Budget +489178,Budget,Budget +489177,Budget,Budget +489176,Budget,Budget +489175,Budget,Budget +481084,Budget,Budget +481083,Budget,Budget +478787,Budget,Budget +478786,Budget,Budget +476927,Budget,Budget +476926,Budget,Budget +476925,Budget,Budget +476924,Budget,Budget +476923,Budget,Budget +476922,Budget,Budget +476921,Budget,Budget +476919,Budget,Budget +476918,Budget,Budget +476916,Budget,Budget +472065,Budget,Budget +472064,Budget,Budget +472063,Budget,Budget +472062,Budget,Budget +463050,Budget,Budget +529578,Budget,Budget +529577,Budget,Budget +529574,Budget,Budget +529572,Budget,Budget +529571,Budget,Budget +529570,Budget,Budget +525976,Budget,Budget +525965,Budget,Budget +525964,Budget,Budget +525961,Budget,Budget +525959,Budget,Budget +525957,Budget,Budget +525955,Budget,Budget +525952,Budget,Budget +525945,Budget,Budget +522404,Budget,Budget +522403,Budget,Budget +522400,Budget,Budget +518949,Budget,Budget +518947,Budget,Budget +518946,Budget,Budget +518945,Budget,Budget +518944,Budget,Budget +518943,Budget,Budget +518942,Budget,Budget +518941,Budget,Budget +518940,Budget,Budget +518938,Budget,Budget +517743,Budget,Budget +517742,Budget,Budget +476927,Economic Development,Economic Development +476926,Economic Development,Economic Development +476925,Economic Development,Economic Development +476924,Economic Development,Economic Development +476923,Economic Development,Economic Development +476922,Economic Development,Economic Development +476921,Economic Development,Economic Development +476919,Economic Development,Economic Development +476918,Economic Development,Economic Development +476916,Economic Development,Economic Development +466166,Economic Development,Economic Development +466164,Economic Development,Economic Development +466163,Economic Development,Economic Development +466162,Economic Development,Economic Development +466161,Economic Development,Economic Development +466160,Economic Development,Economic Development +466159,Economic Development,Economic Development +466157,Economic Development,Economic Development +466156,Economic Development,Economic Development +466154,Economic Development,Economic Development +463433,Economic Development,Economic Development +463432,Economic Development,Economic Development +463431,Economic Development,Economic Development +463430,Economic Development,Economic Development +463050,Economic Development,Economic Development +461253,Economic Development,Economic Development +461246,Economic Development,Economic Development +529578,Economic Development,Economic Development +529577,Economic Development,Economic Development +529574,Economic Development,Economic Development +529572,Economic Development,Economic Development +529571,Economic Development,Economic Development +529570,Economic Development,Economic Development +525976,Economic Development,Economic Development +525965,Economic Development,Economic Development +525964,Economic Development,Economic Development +525961,Economic Development,Economic Development +525959,Economic Development,Economic Development +525957,Economic Development,Economic Development +525955,Economic Development,Economic Development +525952,Economic Development,Economic Development +525945,Economic Development,Economic Development +522404,Economic Development,Economic Development +522403,Economic Development,Economic Development +522400,Economic Development,Economic Development +518949,Economic Development,Economic Development +518947,Economic Development,Economic Development +518946,Economic Development,Economic Development +518945,Economic Development,Economic Development +518944,Economic Development,Economic Development +518943,Economic Development,Economic Development +518942,Economic Development,Economic Development +518941,Economic Development,Economic Development +518940,Economic Development,Economic Development +518938,Economic Development,Economic Development +517743,Economic Development,Economic Development +517742,Economic Development,Economic Development +517741,Economic Development,Economic Development +517738,Economic Development,Economic Development +517736,Economic Development,Economic Development +515014,Economic Development,Economic Development +515013,Economic Development,Economic Development +515012,Economic Development,Economic Development +515011,Economic Development,Economic Development +515010,Economic Development,Economic Development +515009,Economic Development,Economic Development +515008,Economic Development,Economic Development +515007,Economic Development,Economic Development +515006,Economic Development,Economic Development +515005,Economic Development,Economic Development +509567,Economic Development,Economic Development +489182,Economic Development,Economic Development +489181,Economic Development,Economic Development +489180,Economic Development,Economic Development +489179,Economic Development,Economic Development +489178,Economic Development,Economic Development +489177,Economic Development,Economic Development +489176,Economic Development,Economic Development +489175,Economic Development,Economic Development +481084,Economic Development,Economic Development +481083,Economic Development,Economic Development +478787,Economic Development,Economic Development +463430,Employment and Training,Employment and Training +463050,Employment and Training,Employment and Training +461253,Employment and Training,Employment and Training +461251,Employment and Training,Employment and Training +461249,Employment and Training,Employment and Training +461248,Employment and Training,Employment and Training +461246,Employment and Training,Employment and Training +461245,Employment and Training,Employment and Training +461244,Employment and Training,Employment and Training +456818,Employment and Training,Employment and Training +456817,Employment and Training,Employment and Training +456816,Employment and Training,Employment and Training +456815,Employment and Training,Employment and Training +456210,Employment and Training,Employment and Training +456209,Employment and Training,Employment and Training +456208,Employment and Training,Employment and Training +456206,Employment and Training,Employment and Training +456205,Employment and Training,Employment and Training +456204,Employment and Training,Employment and Training +456203,Employment and Training,Employment and Training +456202,Employment and Training,Employment and Training +456201,Employment and Training,Employment and Training +456200,Employment and Training,Employment and Training +456199,Employment and Training,Employment and Training +456198,Employment and Training,Employment and Training +453609,Employment and Training,Employment and Training +448800,Employment and Training,Employment and Training +448796,Employment and Training,Employment and Training +445482,Employment and Training,Employment and Training +445480,Employment and Training,Employment and Training +529578,Employment and Training,Employment and Training +529577,Employment and Training,Employment and Training +529574,Employment and Training,Employment and Training +529572,Employment and Training,Employment and Training +529571,Employment and Training,Employment and Training +529570,Employment and Training,Employment and Training +525976,Employment and Training,Employment and Training +525965,Employment and Training,Employment and Training +525964,Employment and Training,Employment and Training +525961,Employment and Training,Employment and Training +525959,Employment and Training,Employment and Training +525957,Employment and Training,Employment and Training +525955,Employment and Training,Employment and Training +525952,Employment and Training,Employment and Training +525945,Employment and Training,Employment and Training +522404,Employment and Training,Employment and Training +522403,Employment and Training,Employment and Training +522400,Employment and Training,Employment and Training +518949,Employment and Training,Employment and Training +518947,Employment and Training,Employment and Training +518946,Employment and Training,Employment and Training +518945,Employment and Training,Employment and Training +518944,Employment and Training,Employment and Training +518943,Employment and Training,Employment and Training +518942,Employment and Training,Employment and Training +518941,Employment and Training,Employment and Training +518940,Employment and Training,Employment and Training +518938,Employment and Training,Employment and Training +517743,Employment and Training,Employment and Training +517742,Employment and Training,Employment and Training +517741,Employment and Training,Employment and Training +517738,Employment and Training,Employment and Training +517736,Employment and Training,Employment and Training +515014,Employment and Training,Employment and Training +515013,Employment and Training,Employment and Training +515012,Employment and Training,Employment and Training +515011,Employment and Training,Employment and Training +515010,Employment and Training,Employment and Training +515009,Employment and Training,Employment and Training +515008,Employment and Training,Employment and Training +515007,Employment and Training,Employment and Training +515006,Employment and Training,Employment and Training +515005,Employment and Training,Employment and Training +509567,Employment and Training,Employment and Training +489182,Employment and Training,Employment and Training +489181,Employment and Training,Employment and Training +489180,Employment and Training,Employment and Training +489179,Employment and Training,Employment and Training +489178,Employment and Training,Employment and Training +489177,Employment and Training,Employment and Training +489176,Employment and Training,Employment and Training +489175,Employment and Training,Employment and Training +481084,Employment and Training,Employment and Training +481083,Employment and Training,Employment and Training +478787,Employment and Training,Employment and Training +478786,Employment and Training,Employment and Training +476927,Employment and Training,Employment and Training +476926,Employment and Training,Employment and Training +476925,Employment and Training,Employment and Training +476924,Employment and Training,Employment and Training +476923,Employment and Training,Employment and Training +447926,Budget,Budget +447940,Government Procurement,Government Procurement +449540,Small Business,Small Business +447325,Small Business,Small Business +444376,Economic Development,Economic Development +461813,Elections,Elections +464032,Economic Development,Economic Development +464032,Government Procurement,Government Procurement +455136,Budget,Budget +448559,Consumer Issues,Consumer Issues +451743,Economic Development,Economic Development +448559,Financial Institutions,Financial Institutions +459828,Industry,Industry +451750,Privacy and Access to Information,Privacy and Access to Information +449571,Security,Security +449571,Small Business,Small Business +449571,Taxation and Finance,Taxation and Finance +465271,Transportation,Transportation +443630,Justice and Law Enforcement,Justice and Law Enforcement +467356,Economic Development,Economic Development +467356,Environment,Environment +467356,Regional Development,Regional Development +467356,Transportation,Transportation +467356,Infrastructure,Infrastructure +467356,International Trade,International Trade +443662,Consumer Issues,Consumer Issues +457071,Immigration,Immigration +457071,International Relations,International Relations +457071,Labour,Labour +457071,Health,Health +457071,Economic Development,Economic Development +455409,Defence,Defence +445840,Fisheries,Fisheries +470524,International Trade,International Trade +470522,Regional Development,Regional Development +470518,Defence,Defence +508586,Fisheries,Fisheries +476191,International Trade,International Trade +445837,Regional Development,Regional Development +446605,Economic Development,Economic Development +484153,Health,Health +484153,Immigration,Immigration +484165,Infrastructure,Infrastructure +457684,Energy,Energy +456024,International Trade,International Trade +459017,International Relations,International Relations +459017,Financial Institutions,Financial Institutions +444158,Economic Development,Economic Development +444158,International Trade,International Trade +444158,Small Business,Small Business +444158,Taxation and Finance,Taxation and Finance +444158,Tourism,Tourism +454970,Consumer Issues,Consumer Issues +454970,Health,Health +447110,Agriculture,Agriculture +447110,Environment,Environment +496814,Agriculture,Agriculture +496811,Consumer Issues,Consumer Issues +524357,Environment,Environment +496816,International Trade,International Trade +457016,Climate,Climate +462551,Economic Development,Economic Development +517673,Employment and Training,Employment and Training +508523,Environment,Environment +462551,Forestry,Forestry +517673,Industry,Industry +484751,International Trade,International Trade +462551,Regional Development,Regional Development +447339,Research and Development,Research and Development +462551,Transportation,Transportation +443874,Budget,Budget +443874,Energy,Energy +460242,Defence,Defence +460242,Government Procurement,Government Procurement +443913,Economic Development,Economic Development +443913,Research and Development,Research and Development +443914,Transportation,Transportation +443914,Economic Development,Economic Development +443917,Energy,Energy +443917,Economic Development,Economic Development +443917,Transportation,Transportation +443917,Research and Development,Research and Development +444453,Infrastructure,Infrastructure +444453,Environment,Environment +480078,Energy,Energy +443941,Employment and Training,Employment and Training +444018,Fisheries,Fisheries +444578,Financial Institutions,Financial Institutions +497611,Agriculture,Agriculture +445126,Agriculture,Agriculture +513619,Fisheries,Fisheries +450513,International Trade,International Trade +451004,Taxation and Finance,Taxation and Finance +448722,Transportation,Transportation +448722,International Trade,International Trade +460186,Consumer Issues,Consumer Issues +445518,Budget,Budget +445518,Health,Health +445518,Labour,Labour +445518,Pensions,Pensions +488342,Health,Health +446114,Justice and Law Enforcement,Justice and Law Enforcement +444044,International Trade,International Trade +447732,Economic Development,Economic Development +536010,Financial Institutions,Financial Institutions +488571,Taxation and Finance,Taxation and Finance +444589,Industry,Industry +446601,Forestry,Forestry +446601,Infrastructure,Infrastructure +444266,Consumer Issues,Consumer Issues +444266,Small Business,Small Business +444266,Industry,Industry +444266,Taxation and Finance,Taxation and Finance +444266,International Trade,International Trade +444266,Tourism,Tourism +444266,Economic Development,Economic Development +444266,Labour,Labour +445007,Infrastructure,Infrastructure +445007,Tourism,Tourism +517741,Budget,Budget +478786,Economic Development,Economic Development +463050,Education,Education +463431,Employment and Training,Employment and Training +463050,Industry,Industry +515007,Labour,Labour +493103,Budget,Budget +489183,Economic Development,Economic Development +453608,Employment and Training,Employment and Training +493103,Labour,Labour +521159,Employment and Training,Employment and Training +456287,Employment and Training,Employment and Training +456286,Industry,Industry +449395,Infrastructure,Infrastructure +449395,Transportation,Transportation +444144,Environment,Environment +446159,Energy,Energy +446158,Infrastructure,Infrastructure +452970,Energy,Energy +472722,Mining,Mining +472532,Economic Development,Economic Development +541556,Privacy and Access to Information,Privacy and Access to Information +451778,Security,Security +449142,Government Procurement,Government Procurement +444429,Taxation and Finance,Taxation and Finance +444176,Budget,Budget +477917,Industry,Industry +486900,Mining,Mining +488022,Economic Development,Economic Development +477901,Employment and Training,Employment and Training +488022,Environment,Environment +448718,Taxation and Finance,Taxation and Finance +446218,Agriculture,Agriculture +446218,Consumer Issues,Consumer Issues +524328,Environment,Environment +496798,International Trade,International Trade +446712,Employment and Training,Employment and Training +467577,Employment and Training,Employment and Training +467545,Employment and Training,Employment and Training +472793,Agriculture,Agriculture +448973,International Trade,International Trade +450434,Environment,Environment +452969,Energy,Energy +445282,Energy,Energy +448632,Environment,Environment +448633,Fisheries,Fisheries +446992,Climate,Climate +446992,Economic Development,Economic Development +446992,Employment and Training,Employment and Training +446992,Energy,Energy +446992,Environment,Environment +446992,Fisheries,Fisheries +446992,Industry,Industry +446992,Infrastructure,Infrastructure +446992,Transportation,Transportation +464902,Government Procurement,Government Procurement +504782,Climate,Climate +504782,Economic Development,Economic Development +504782,Research and Development,Research and Development +444241,Environment,Environment +456512,International Relations,International Relations +450979,International Trade,International Trade +473718,Government Procurement,Government Procurement +471373,Security,Security +446265,Defence,Defence +458408,Economic Development,Economic Development +447111,Industry,Industry +458406,International Relations,International Relations +448663,Government Procurement,Government Procurement +447579,Government Procurement,Government Procurement +454748,Security,Security +454748,Government Procurement,Government Procurement +463328,Government Procurement,Government Procurement +449872,Economic Development,Economic Development +449872,Small Business,Small Business +454744,Government Procurement,Government Procurement +476922,Employment and Training,Employment and Training +476921,Employment and Training,Employment and Training +476919,Employment and Training,Employment and Training +476918,Employment and Training,Employment and Training +476916,Employment and Training,Employment and Training +472065,Employment and Training,Employment and Training +472064,Employment and Training,Employment and Training +472063,Employment and Training,Employment and Training +472062,Employment and Training,Employment and Training +469452,Employment and Training,Employment and Training +469451,Employment and Training,Employment and Training +466166,Employment and Training,Employment and Training +466164,Employment and Training,Employment and Training +466163,Employment and Training,Employment and Training +466162,Employment and Training,Employment and Training +466161,Employment and Training,Employment and Training +466160,Employment and Training,Employment and Training +466159,Employment and Training,Employment and Training +466157,Employment and Training,Employment and Training +466156,Employment and Training,Employment and Training +466154,Employment and Training,Employment and Training +463433,Employment and Training,Employment and Training +463432,Employment and Training,Employment and Training +515006,Labour,Labour +515005,Labour,Labour +478787,Labour,Labour +478786,Labour,Labour +466166,Labour,Labour +466164,Labour,Labour +466163,Labour,Labour +466162,Labour,Labour +466161,Labour,Labour +466160,Labour,Labour +466159,Labour,Labour +466157,Labour,Labour +466156,Labour,Labour +466154,Labour,Labour +463433,Labour,Labour +463432,Labour,Labour +463431,Labour,Labour +463430,Labour,Labour +463050,Labour,Labour +461253,Labour,Labour +461246,Labour,Labour +461244,Labour,Labour +529578,Labour,Labour +529577,Labour,Labour +529574,Labour,Labour +529572,Labour,Labour +529571,Labour,Labour +529570,Labour,Labour +522404,Labour,Labour +522403,Labour,Labour +522400,Labour,Labour +518949,Labour,Labour +518947,Labour,Labour +518946,Labour,Labour +518945,Labour,Labour +518944,Labour,Labour +518943,Labour,Labour +518942,Labour,Labour +518941,Labour,Labour +518940,Labour,Labour +518938,Labour,Labour +515014,Labour,Labour +515013,Labour,Labour +515012,Labour,Labour +515011,Labour,Labour +515010,Labour,Labour +515009,Labour,Labour +515008,Labour,Labour +489183,Budget,Budget +448798,Employment and Training,Employment and Training +448795,Employment and Training,Employment and Training +445475,Employment and Training,Employment and Training +445470,Employment and Training,Employment and Training +493103,Employment and Training,Employment and Training +489183,Employment and Training,Employment and Training +519118,Employment and Training,Employment and Training +464203,Employment and Training,Employment and Training +462267,Employment and Training,Employment and Training +462266,Employment and Training,Employment and Training +459356,Employment and Training,Employment and Training +444120,Employment and Training,Employment and Training +456286,Employment and Training,Employment and Training +456284,Employment and Training,Employment and Training +456284,Industry,Industry +444313,Industry,Industry +456287,Industry,Industry +449394,Infrastructure,Infrastructure +445295,Infrastructure,Infrastructure +459470,Infrastructure,Infrastructure +459468,Infrastructure,Infrastructure +459074,Infrastructure,Infrastructure +459073,Infrastructure,Infrastructure +455399,Infrastructure,Infrastructure +455398,Infrastructure,Infrastructure +455397,Infrastructure,Infrastructure +455396,Infrastructure,Infrastructure +455395,Infrastructure,Infrastructure +455394,Infrastructure,Infrastructure +455393,Infrastructure,Infrastructure +455392,Infrastructure,Infrastructure +455391,Infrastructure,Infrastructure +451950,Infrastructure,Infrastructure +451949,Infrastructure,Infrastructure +451948,Infrastructure,Infrastructure +451947,Infrastructure,Infrastructure +451946,Infrastructure,Infrastructure +451945,Infrastructure,Infrastructure +451944,Infrastructure,Infrastructure +451943,Infrastructure,Infrastructure +449398,Infrastructure,Infrastructure +449396,Infrastructure,Infrastructure +449394,Transportation,Transportation +445295,Transportation,Transportation +459470,Transportation,Transportation +459468,Transportation,Transportation +459074,Transportation,Transportation +459073,Transportation,Transportation +455399,Transportation,Transportation +455398,Transportation,Transportation +455397,Transportation,Transportation +455396,Transportation,Transportation +455395,Transportation,Transportation +455394,Transportation,Transportation +455393,Transportation,Transportation +455392,Transportation,Transportation +455391,Transportation,Transportation +451950,Transportation,Transportation +451949,Transportation,Transportation +451948,Transportation,Transportation +451947,Transportation,Transportation +451946,Transportation,Transportation +451945,Transportation,Transportation +451944,Transportation,Transportation +451943,Transportation,Transportation +449398,Transportation,Transportation +449396,Transportation,Transportation +446158,Energy,Energy +446157,Energy,Energy +446160,Energy,Energy +446157,Infrastructure,Infrastructure +446160,Infrastructure,Infrastructure +446159,Infrastructure,Infrastructure +450627,Mining,Mining +445822,Mining,Mining +542802,Mining,Mining +535534,Mining,Mining +532172,Mining,Mining +530062,Mining,Mining +527040,Mining,Mining +527039,Mining,Mining +523203,Mining,Mining +514881,Mining,Mining +512028,Mining,Mining +507170,Mining,Mining +505123,Mining,Mining +488958,Mining,Mining +488957,Mining,Mining +485644,Mining,Mining +485642,Mining,Mining +485641,Mining,Mining +485640,Mining,Mining +461312,Economic Development,Economic Development +543936,Economic Development,Economic Development +498511,Economic Development,Economic Development +476868,Economic Development,Economic Development +537228,Privacy and Access to Information,Privacy and Access to Information +470305,Privacy and Access to Information,Privacy and Access to Information +445145,Privacy and Access to Information,Privacy and Access to Information +445144,Privacy and Access to Information,Privacy and Access to Information +543936,Privacy and Access to Information,Privacy and Access to Information +451776,Security,Security +449761,Security,Security +447166,Security,Security +447165,Security,Security +498511,Security,Security +498509,Security,Security +494611,Security,Security +490651,Security,Security +457168,Security,Security +457167,Security,Security +455572,Security,Security +449141,Government Procurement,Government Procurement +449138,Government Procurement,Government Procurement +477901,Industry,Industry +477917,Mining,Mining +477901,Mining,Mining +486900,Economic Development,Economic Development +444422,Taxation and Finance,Taxation and Finance +446217,Agriculture,Agriculture +446216,Agriculture,Agriculture +524328,Agriculture,Agriculture +524327,Agriculture,Agriculture +524326,Agriculture,Agriculture +496799,Agriculture,Agriculture +496798,Agriculture,Agriculture +496797,Agriculture,Agriculture +496796,Agriculture,Agriculture +446217,Consumer Issues,Consumer Issues +446216,Consumer Issues,Consumer Issues +524328,Consumer Issues,Consumer Issues +524327,Consumer Issues,Consumer Issues +524326,Consumer Issues,Consumer Issues +496799,Consumer Issues,Consumer Issues +496798,Consumer Issues,Consumer Issues +496797,Consumer Issues,Consumer Issues +496796,Consumer Issues,Consumer Issues +524327,Environment,Environment +524326,Environment,Environment +496799,Environment,Environment +496797,Environment,Environment +496797,International Trade,International Trade +496796,International Trade,International Trade +446218,International Trade,International Trade +446217,International Trade,International Trade +446216,International Trade,International Trade +524328,International Trade,International Trade +524327,International Trade,International Trade +524326,International Trade,International Trade +496799,International Trade,International Trade +446710,Employment and Training,Employment and Training +446709,Employment and Training,Employment and Training +499153,Employment and Training,Employment and Training +496158,Employment and Training,Employment and Training +493352,Employment and Training,Employment and Training +493350,Employment and Training,Employment and Training +493330,Employment and Training,Employment and Training +475659,Employment and Training,Employment and Training +472728,Employment and Training,Employment and Training +467734,Employment and Training,Employment and Training +467729,Employment and Training,Employment and Training +467725,Employment and Training,Employment and Training +467585,Employment and Training,Employment and Training +467566,Employment and Training,Employment and Training +467546,Employment and Training,Employment and Training +458449,Employment and Training,Employment and Training +451529,Employment and Training,Employment and Training +451517,Employment and Training,Employment and Training +446714,Employment and Training,Employment and Training +446713,Employment and Training,Employment and Training +467543,Employment and Training,Employment and Training +458450,Employment and Training,Employment and Training +451523,Employment and Training,Employment and Training +451515,Employment and Training,Employment and Training +446708,Employment and Training,Employment and Training +446707,Employment and Training,Employment and Training +446706,Employment and Training,Employment and Training +446705,Employment and Training,Employment and Training +446704,Employment and Training,Employment and Training +446703,Employment and Training,Employment and Training +510732,Employment and Training,Employment and Training +499148,Employment and Training,Employment and Training +496156,Employment and Training,Employment and Training +484626,Employment and Training,Employment and Training +475651,Employment and Training,Employment and Training +472735,Employment and Training,Employment and Training +467740,Employment and Training,Employment and Training +467738,Employment and Training,Employment and Training +467675,Employment and Training,Employment and Training +451526,Employment and Training,Employment and Training +451516,Employment and Training,Employment and Training +446719,Employment and Training,Employment and Training +446718,Employment and Training,Employment and Training +446717,Employment and Training,Employment and Training +446716,Employment and Training,Employment and Training +499150,Employment and Training,Employment and Training +496157,Employment and Training,Employment and Training +475654,Employment and Training,Employment and Training +472736,Employment and Training,Employment and Training +467583,Employment and Training,Employment and Training +467565,Employment and Training,Employment and Training +470829,Agriculture,Agriculture +470826,Agriculture,Agriculture +536071,Agriculture,Agriculture +480822,Agriculture,Agriculture +480082,Agriculture,Agriculture +480081,Agriculture,Agriculture +478627,Agriculture,Agriculture +476792,Agriculture,Agriculture +474873,Agriculture,Agriculture +448972,International Trade,International Trade +445964,International Trade,International Trade +461280,International Trade,International Trade +445277,Energy,Energy +445274,Energy,Energy +448636,Energy,Energy +448635,Energy,Energy +448634,Energy,Energy +448630,Energy,Energy +445286,Energy,Energy +445284,Energy,Energy +448631,Environment,Environment +445290,Environment,Environment +446991,Climate,Climate +446990,Climate,Climate +462410,Climate,Climate +462409,Climate,Climate +462407,Climate,Climate +454727,Climate,Climate +446997,Climate,Climate +446996,Climate,Climate +446995,Climate,Climate +446993,Climate,Climate +446991,Economic Development,Economic Development +446990,Economic Development,Economic Development +462410,Economic Development,Economic Development +462409,Economic Development,Economic Development +462407,Economic Development,Economic Development +454727,Economic Development,Economic Development +446997,Economic Development,Economic Development +446996,Economic Development,Economic Development +446995,Economic Development,Economic Development +446993,Economic Development,Economic Development +446991,Employment and Training,Employment and Training +446990,Employment and Training,Employment and Training +462410,Employment and Training,Employment and Training +462409,Employment and Training,Employment and Training +462407,Employment and Training,Employment and Training +454727,Employment and Training,Employment and Training +446997,Employment and Training,Employment and Training +446996,Employment and Training,Employment and Training +446995,Employment and Training,Employment and Training +446993,Employment and Training,Employment and Training +446991,Energy,Energy +446990,Energy,Energy +462410,Energy,Energy +462409,Energy,Energy +462407,Energy,Energy +454727,Energy,Energy +446997,Energy,Energy +446996,Energy,Energy +446995,Energy,Energy +446993,Energy,Energy +446991,Environment,Environment +446990,Environment,Environment +462410,Environment,Environment +462409,Environment,Environment +462407,Environment,Environment +454727,Environment,Environment +446997,Environment,Environment +446996,Environment,Environment +446995,Environment,Environment +446993,Environment,Environment +446991,Fisheries,Fisheries +446990,Fisheries,Fisheries +462410,Fisheries,Fisheries +462409,Fisheries,Fisheries +462407,Fisheries,Fisheries +454727,Fisheries,Fisheries +446997,Fisheries,Fisheries +446996,Fisheries,Fisheries +446995,Fisheries,Fisheries +446993,Fisheries,Fisheries +446991,Industry,Industry +446990,Industry,Industry +462410,Industry,Industry +462409,Industry,Industry +462407,Industry,Industry +454727,Industry,Industry +446997,Industry,Industry +446996,Industry,Industry +446995,Industry,Industry +446993,Industry,Industry +446991,Infrastructure,Infrastructure +446990,Infrastructure,Infrastructure +462410,Infrastructure,Infrastructure +462409,Infrastructure,Infrastructure +462407,Infrastructure,Infrastructure +454727,Infrastructure,Infrastructure +446997,Infrastructure,Infrastructure +446996,Infrastructure,Infrastructure +446995,Infrastructure,Infrastructure +446993,Infrastructure,Infrastructure +446991,Transportation,Transportation +446990,Transportation,Transportation +462410,Transportation,Transportation +462409,Transportation,Transportation +462407,Transportation,Transportation +454727,Transportation,Transportation +446997,Transportation,Transportation +446996,Transportation,Transportation +446995,Transportation,Transportation +446993,Transportation,Transportation +460408,Government Procurement,Government Procurement +447594,Government Procurement,Government Procurement +530379,Government Procurement,Government Procurement +516280,Government Procurement,Government Procurement +499446,Government Procurement,Government Procurement +482343,Government Procurement,Government Procurement +473762,Government Procurement,Government Procurement +473761,Government Procurement,Government Procurement +470888,Government Procurement,Government Procurement +468317,Government Procurement,Government Procurement +468312,Government Procurement,Government Procurement +444240,Environment,Environment +449283,International Relations,International Relations +450978,International Trade,International Trade +449284,International Trade,International Trade +486251,International Trade,International Trade +486249,International Trade,International Trade +486246,International Trade,International Trade +481037,International Trade,International Trade +479129,International Trade,International Trade +475029,International Trade,International Trade +471872,International Trade,International Trade +471870,International Trade,International Trade +471868,International Trade,International Trade +471866,International Trade,International Trade +471865,International Trade,International Trade +471864,International Trade,International Trade +471863,International Trade,International Trade +471862,International Trade,International Trade +471861,International Trade,International Trade +471860,International Trade,International Trade +455837,International Trade,International Trade +455825,International Trade,International Trade +471373,Government Procurement,Government Procurement +450310,Government Procurement,Government Procurement +458406,Defence,Defence +456222,Defence,Defence +447039,Defence,Defence +458514,Economic Development,Economic Development +448603,Government Procurement,Government Procurement +444262,Government Procurement,Government Procurement +448664,Government Procurement,Government Procurement +444320,Security,Security +444320,Government Procurement,Government Procurement +449872,Government Procurement,Government Procurement +454742,Government Procurement,Government Procurement +461159,Government Procurement,Government Procurement +448217,Health,Health +448215,Health,Health +488305,Climate,Climate +452004,Economic Development,Economic Development +452004,Environment,Environment +488305,Environment,Environment +444267,Agriculture,Agriculture +538807,Agriculture,Agriculture +480451,Agriculture,Agriculture +480450,Agriculture,Agriculture +480449,Agriculture,Agriculture +477271,Agriculture,Agriculture +474868,Agriculture,Agriculture +474864,Agriculture,Agriculture +472691,Agriculture,Agriculture +445696,Environment,Environment +450146,Economic Development,Economic Development +450145,Economic Development,Economic Development +448505,Industry,Industry +474796,Economic Development,Economic Development +447767,Economic Development,Economic Development +522468,Economic Development,Economic Development +491450,Economic Development,Economic Development +491442,Economic Development,Economic Development +486488,Economic Development,Economic Development +485933,Economic Development,Economic Development +485933,Employment and Training,Employment and Training +485931,Employment and Training,Employment and Training +491450,Employment and Training,Employment and Training +485931,Environment,Environment +474796,Environment,Environment +447767,Environment,Environment +522468,Environment,Environment +494437,Environment,Environment +491442,Environment,Environment +486488,Environment,Environment +474796,Mining,Mining +447767,Mining,Mining +522468,Mining,Mining +494437,Mining,Mining +491450,Mining,Mining +491442,Mining,Mining +486488,Mining,Mining +485933,Mining,Mining +496529,Agriculture,Agriculture +496528,Agriculture,Agriculture +463568,Agriculture,Agriculture +463567,Agriculture,Agriculture +463566,Agriculture,Agriculture +446462,Agriculture,Agriculture +446460,Agriculture,Agriculture +446459,Agriculture,Agriculture +521283,Agriculture,Agriculture +521282,Agriculture,Agriculture +496531,Agriculture,Agriculture +446460,International Trade,International Trade +446459,International Trade,International Trade +521283,International Trade,International Trade +521282,International Trade,International Trade +496531,International Trade,International Trade +496530,International Trade,International Trade +496529,International Trade,International Trade +496528,International Trade,International Trade +463568,International Trade,International Trade +463567,International Trade,International Trade +458121,Agriculture,Agriculture +458120,Agriculture,Agriculture +446452,Agriculture,Agriculture +446450,Agriculture,Agriculture +446449,Agriculture,Agriculture +446448,Agriculture,Agriculture +521212,Agriculture,Agriculture +521211,Agriculture,Agriculture +521210,Agriculture,Agriculture +521209,Agriculture,Agriculture +496790,Agriculture,Agriculture +496789,Agriculture,Agriculture +496480,Agriculture,Agriculture +496479,Agriculture,Agriculture +496478,Agriculture,Agriculture +496477,Agriculture,Agriculture +496476,Agriculture,Agriculture +463562,Agriculture,Agriculture +444367,Energy,Energy +446449,International Trade,International Trade +446448,International Trade,International Trade +521212,International Trade,International Trade +521211,International Trade,International Trade +521209,International Trade,International Trade +496790,International Trade,International Trade +496789,International Trade,International Trade +496480,International Trade,International Trade +496478,International Trade,International Trade +496477,International Trade,International Trade +496476,International Trade,International Trade +463562,International Trade,International Trade +463561,International Trade,International Trade +458121,International Trade,International Trade +458120,International Trade,International Trade +446452,International Trade,International Trade +485678,Agriculture,Agriculture +485421,Agriculture,Agriculture +484772,Agriculture,Agriculture +478509,Agriculture,Agriculture +478499,Agriculture,Agriculture +476385,Agriculture,Agriculture +476174,Agriculture,Agriculture +474466,Agriculture,Agriculture +474409,Agriculture,Agriculture +474199,Agriculture,Agriculture +474146,Agriculture,Agriculture +474111,Agriculture,Agriculture +474110,Agriculture,Agriculture +474070,Agriculture,Agriculture +474059,Agriculture,Agriculture +473895,Agriculture,Agriculture +471512,Agriculture,Agriculture +469163,Agriculture,Agriculture +468934,Agriculture,Agriculture +468842,Agriculture,Agriculture +465260,Agriculture,Agriculture +463167,Agriculture,Agriculture +462968,Agriculture,Agriculture +462967,Agriculture,Agriculture +461056,Agriculture,Agriculture +460844,Agriculture,Agriculture +460816,Agriculture,Agriculture +460421,Agriculture,Agriculture +459204,Agriculture,Agriculture +459035,Agriculture,Agriculture +459019,Agriculture,Agriculture +456956,Agriculture,Agriculture +456821,Agriculture,Agriculture +456314,Agriculture,Agriculture +454843,Agriculture,Agriculture +454061,Agriculture,Agriculture +454051,Agriculture,Agriculture +453997,Agriculture,Agriculture +453996,Agriculture,Agriculture +453995,Agriculture,Agriculture +452209,Agriculture,Agriculture +452018,Agriculture,Agriculture +448730,Agriculture,Agriculture +448726,Agriculture,Agriculture +542380,Agriculture,Agriculture +541294,Agriculture,Agriculture +540447,Agriculture,Agriculture +540442,Agriculture,Agriculture +540366,Agriculture,Agriculture +540296,Agriculture,Agriculture +539606,Agriculture,Agriculture +539200,Agriculture,Agriculture +537707,Agriculture,Agriculture +536750,Agriculture,Agriculture +536749,Agriculture,Agriculture +533090,Agriculture,Agriculture +533084,Agriculture,Agriculture +533083,Agriculture,Agriculture +532811,Agriculture,Agriculture +532652,Agriculture,Agriculture +532585,Agriculture,Agriculture +532465,Agriculture,Agriculture +530637,Agriculture,Agriculture +530485,Agriculture,Agriculture +530484,Agriculture,Agriculture +530479,Agriculture,Agriculture +530478,Agriculture,Agriculture +530470,Agriculture,Agriculture +530289,Agriculture,Agriculture +530060,Agriculture,Agriculture +530059,Agriculture,Agriculture +528296,Agriculture,Agriculture +527714,Agriculture,Agriculture +527316,Agriculture,Agriculture +527185,Agriculture,Agriculture +527057,Agriculture,Agriculture +526955,Agriculture,Agriculture +526813,Agriculture,Agriculture +526799,Agriculture,Agriculture +526782,Agriculture,Agriculture +526148,Agriculture,Agriculture +523602,Agriculture,Agriculture +521147,Agriculture,Agriculture +520968,Agriculture,Agriculture +520884,Agriculture,Agriculture +520268,Agriculture,Agriculture +516002,Agriculture,Agriculture +515133,Agriculture,Agriculture +514848,Agriculture,Agriculture +506591,Agriculture,Agriculture +504410,Agriculture,Agriculture +503714,Agriculture,Agriculture +503713,Agriculture,Agriculture +503647,Agriculture,Agriculture +503611,Agriculture,Agriculture +503592,Agriculture,Agriculture +503585,Agriculture,Agriculture +503570,Agriculture,Agriculture +503558,Agriculture,Agriculture +503538,Agriculture,Agriculture +503471,Agriculture,Agriculture +500103,Agriculture,Agriculture +496613,Agriculture,Agriculture +496610,Agriculture,Agriculture +496354,Agriculture,Agriculture +494828,Agriculture,Agriculture +494113,Agriculture,Agriculture +492955,Agriculture,Agriculture +492050,Agriculture,Agriculture +489357,Agriculture,Agriculture +489151,Agriculture,Agriculture +489097,Agriculture,Agriculture +489011,Agriculture,Agriculture +488971,Agriculture,Agriculture +488850,Agriculture,Agriculture +487243,Agriculture,Agriculture +486869,Agriculture,Agriculture +486155,Agriculture,Agriculture +486050,Agriculture,Agriculture +485748,Agriculture,Agriculture +485744,Agriculture,Agriculture +485722,Agriculture,Agriculture +485721,Agriculture,Agriculture +485718,Agriculture,Agriculture +485715,Agriculture,Agriculture +485699,Agriculture,Agriculture +485696,Agriculture,Agriculture +485692,Agriculture,Agriculture +462966,Climate,Climate +448727,Climate,Climate +542380,Climate,Climate +539200,Climate,Climate +532811,Climate,Climate +528056,Climate,Climate +523621,Climate,Climate +520267,Climate,Climate +514853,Climate,Climate +506322,Climate,Climate +497780,Climate,Climate +496610,Climate,Climate +521147,Energy,Energy +506322,Energy,Energy +532230,Energy,Energy +474146,Environment,Environment +463373,Environment,Environment +463372,Environment,Environment +462967,Environment,Environment +462966,Environment,Environment +448730,Environment,Environment +448727,Environment,Environment +448726,Environment,Environment +448725,Environment,Environment +448723,Environment,Environment +541294,Environment,Environment +540447,Environment,Environment +540366,Environment,Environment +540296,Environment,Environment +537707,Environment,Environment +533090,Environment,Environment +533084,Environment,Environment +533083,Environment,Environment +532652,Environment,Environment +532585,Environment,Environment +532465,Environment,Environment +532447,Environment,Environment +532230,Environment,Environment +531458,Environment,Environment +530277,Environment,Environment +528296,Environment,Environment +521147,Environment,Environment +496792,Environment,Environment +496662,Environment,Environment +489357,Environment,Environment +489151,Environment,Environment +488971,Environment,Environment +487243,Environment,Environment +486869,Environment,Environment +486155,Environment,Environment +486050,Environment,Environment +485748,Environment,Environment +485722,Environment,Environment +485718,Environment,Environment +485717,Environment,Environment +485715,Environment,Environment +448725,International Trade,International Trade +448723,International Trade,International Trade +536748,International Trade,International Trade +530060,International Trade,International Trade +530059,International Trade,International Trade +529325,International Trade,International Trade +529165,International Trade,International Trade +528296,International Trade,International Trade +527316,International Trade,International Trade +527057,International Trade,International Trade +526955,International Trade,International Trade +526813,International Trade,International Trade +526782,International Trade,International Trade +526692,International Trade,International Trade +526421,International Trade,International Trade +526148,International Trade,International Trade +524530,International Trade,International Trade +509462,International Trade,International Trade +485696,International Trade,International Trade +476174,International Trade,International Trade +465737,International Trade,International Trade +462967,International Trade,International Trade +461958,International Trade,International Trade +460847,International Trade,International Trade +458134,International Trade,International Trade +456454,International Trade,International Trade +455146,International Trade,International Trade +448727,International Trade,International Trade +448725,Mining,Mining +448723,Mining,Mining +534674,Mining,Mining +529325,Mining,Mining +529165,Mining,Mining +526421,Mining,Mining +516272,Mining,Mining +485678,Mining,Mining +472135,Mining,Mining +469411,Mining,Mining +464544,Mining,Mining +454052,Mining,Mining +448730,Mining,Mining +448727,Mining,Mining +511783,Taxation and Finance,Taxation and Finance +511782,Taxation and Finance,Taxation and Finance +489357,Taxation and Finance,Taxation and Finance +485718,Taxation and Finance,Taxation and Finance +485421,Taxation and Finance,Taxation and Finance +475027,Taxation and Finance,Taxation and Finance +474134,Taxation and Finance,Taxation and Finance +462967,Taxation and Finance,Taxation and Finance +537710,Taxation and Finance,Taxation and Finance +533084,Taxation and Finance,Taxation and Finance +448505,Economic Development,Economic Development +506022,Budget,Budget +484781,Budget,Budget +531724,Budget,Budget +531723,Budget,Budget +531722,Budget,Budget +462509,Climate,Climate +461728,Climate,Climate +522873,Climate,Climate +513027,Climate,Climate +491138,Climate,Climate +444482,Constitutional Issues,Constitutional Issues +444402,Constitutional Issues,Constitutional Issues +453723,Constitutional Issues,Constitutional Issues +448542,Constitutional Issues,Constitutional Issues +444482,Education,Education +444402,Education,Education +453723,Education,Education +451352,Education,Education +448542,Education,Education +445921,Education,Education +445920,Education,Education +444482,Official Languages,Official Languages +444402,Official Languages,Official Languages +453723,Official Languages,Official Languages +451352,Official Languages,Official Languages +448542,Official Languages,Official Languages +445921,Official Languages,Official Languages +445920,Official Languages,Official Languages +448047,Mining,Mining +480390,Mining,Mining +448067,Mining,Mining +448063,Mining,Mining +448053,Economic Development,Economic Development +448047,Economic Development,Economic Development +448047,Environment,Environment +448067,Environment,Environment +448063,Environment,Environment +448605,Economic Development,Economic Development +448600,Economic Development,Economic Development +500514,Economic Development,Economic Development +489117,Economic Development,Economic Development +477554,Economic Development,Economic Development +473330,Economic Development,Economic Development +473281,Economic Development,Economic Development +473250,Economic Development,Economic Development +463366,Economic Development,Economic Development +460121,Economic Development,Economic Development +518531,Education,Education +448608,Employment and Training,Employment and Training +448607,Employment and Training,Employment and Training +448605,Employment and Training,Employment and Training +448600,Employment and Training,Employment and Training +484067,Employment and Training,Employment and Training +473330,Employment and Training,Employment and Training +473281,Employment and Training,Employment and Training +473250,Employment and Training,Employment and Training +463366,Employment and Training,Employment and Training +448605,Research and Development,Research and Development +448600,Research and Development,Research and Development +500514,Research and Development,Research and Development +484067,Research and Development,Research and Development +477554,Research and Development,Research and Development +473330,Research and Development,Research and Development +473319,Research and Development,Research and Development +473294,Research and Development,Research and Development +473281,Research and Development,Research and Development +473250,Research and Development,Research and Development +465501,Research and Development,Research and Development +464287,Research and Development,Research and Development +463366,Research and Development,Research and Development +463083,Research and Development,Research and Development +460121,Research and Development,Research and Development +448608,Research and Development,Research and Development +448607,Research and Development,Research and Development +451056,Government Procurement,Government Procurement +451055,Government Procurement,Government Procurement +444484,Constitutional Issues,Constitutional Issues +444483,Constitutional Issues,Constitutional Issues +444484,Education,Education +444483,Education,Education +453729,Education,Education +451386,Education,Education +444484,Official Languages,Official Languages +444483,Official Languages,Official Languages +453729,Official Languages,Official Languages +451386,Official Languages,Official Languages +448599,Economic Development,Economic Development +448597,Economic Development,Economic Development +458862,Economic Development,Economic Development +458858,Economic Development,Economic Development +458854,Economic Development,Economic Development +458853,Economic Development,Economic Development +458851,Economic Development,Economic Development +458849,Economic Development,Economic Development +458844,Economic Development,Economic Development +452437,Economic Development,Economic Development +452434,Economic Development,Economic Development +452432,Economic Development,Economic Development +452430,Economic Development,Economic Development +452429,Economic Development,Economic Development +452428,Economic Development,Economic Development +450795,Economic Development,Economic Development +444488,Education,Education +444488,Official Languages,Official Languages +447453,Financial Institutions,Financial Institutions +447527,Financial Institutions,Financial Institutions +447523,Financial Institutions,Financial Institutions +447521,Financial Institutions,Financial Institutions +447518,Financial Institutions,Financial Institutions +514500,Economic Development,Economic Development +514499,Economic Development,Economic Development +486285,Economic Development,Economic Development +470947,Economic Development,Economic Development +462694,Economic Development,Economic Development +461693,Economic Development,Economic Development +444544,Economic Development,Economic Development +530618,Economic Development,Economic Development +446982,Regional Development,Regional Development +446979,Regional Development,Regional Development +458702,Regional Development,Regional Development +457438,Regional Development,Regional Development +457435,Regional Development,Regional Development +446984,Regional Development,Regional Development +456663,Health,Health +451856,Environment,Environment +448705,Environment,Environment +451877,Environment,Environment +451870,Environment,Environment +451866,Health,Health +451856,Health,Health +448705,Health,Health +463327,Government Procurement,Government Procurement +463327,Infrastructure,Infrastructure +448364,Economic Development,Economic Development +448364,Industry,Industry +448364,Financial Institutions,Financial Institutions +457053,Health,Health +452004,Climate,Climate +486295,Economic Development,Economic Development +486295,Environment,Environment +488305,Fisheries,Fisheries +449971,Agriculture,Agriculture +444270,Environment,Environment +444270,Economic Development,Economic Development +445698,Environment,Environment +454269,International Trade,International Trade +445288,Forestry,Forestry +445288,Environment,Environment +450147,Economic Development,Economic Development +450150,Education,Education +448507,Industry,Industry +444537,Government Procurement,Government Procurement +485931,Economic Development,Economic Development +486488,Employment and Training,Employment and Training +485933,Environment,Environment +522468,Industry,Industry +522468,International Trade,International Trade +485931,Mining,Mining +496530,Agriculture,Agriculture +446462,International Trade,International Trade +463561,Agriculture,Agriculture +446505,Energy,Energy +446450,International Trade,International Trade +447205,Mining,Mining +485683,Agriculture,Agriculture +496354,Climate,Climate +530277,Energy,Energy +485683,Environment,Environment +448726,International Trade,International Trade +448726,Mining,Mining +528056,Taxation and Finance,Taxation and Finance +448507,Economic Development,Economic Development +444390,Immigration,Immigration +508774,Budget,Budget +487987,Climate,Climate +445199,Transportation,Transportation +444533,Constitutional Issues,Constitutional Issues +444533,Education,Education +444533,Official Languages,Official Languages +448063,Employment and Training,Employment and Training +448053,Mining,Mining +448067,Economic Development,Economic Development +448053,Environment,Environment +447380,Government Procurement,Government Procurement +444451,Housing,Housing +448607,Economic Development,Economic Development +463083,Education,Education +460121,Employment and Training,Employment and Training +448606,Research and Development,Research and Development +451057,Government Procurement,Government Procurement +453729,Constitutional Issues,Constitutional Issues +445922,Education,Education +445922,Official Languages,Official Languages +450793,Economic Development,Economic Development +444489,Education,Education +444489,Official Languages,Official Languages +447454,Financial Institutions,Financial Institutions +521336,Economic Development,Economic Development +448389,Pensions,Pensions +446983,Regional Development,Regional Development +456663,Education,Education +461924,Health,Health +451866,Environment,Environment +451870,Health,Health +446186,Environment,Environment +473587,Education,Education +473587,Employment and Training,Employment and Training +473587,Forestry,Forestry +509301,Industry,Industry +449256,Industry,Industry +457203,Privacy and Access to Information,Privacy and Access to Information +447012,Taxation and Finance,Taxation and Finance +453851,Defence,Defence +453846,Infrastructure,Infrastructure +490954,Government Procurement,Government Procurement +449671,Economic Development,Economic Development +489439,Economic Development,Economic Development +523779,Health,Health +523779,Industry,Industry +454225,Regional Development,Regional Development +454224,Economic Development,Economic Development +509458,Health,Health +493958,Industry,Industry +462777,Regional Development,Regional Development +444729,Research and Development,Research and Development +446188,Forestry,Forestry +446188,International Trade,International Trade +453356,Government Procurement,Government Procurement +444787,Budget,Budget +444787,Taxation and Finance,Taxation and Finance +447637,Government Procurement,Government Procurement +444832,Small Business,Small Business +456861,Health,Health +448773,Economic Development,Economic Development +448773,Industry,Industry +448773,Regional Development,Regional Development +488242,Defence,Defence +488242,Economic Development,Economic Development +488242,Employment and Training,Employment and Training +488242,Government Procurement,Government Procurement +488242,Industry,Industry +488242,Labour,Labour +488242,Regional Development,Regional Development +488242,Research and Development,Research and Development +488242,Security,Security +444943,Research and Development,Research and Development +537276,Infrastructure,Infrastructure +450688,Health,Health +450688,Industry,Industry +499201,Climate,Climate +499196,Economic Development,Economic Development +465315,Energy,Energy +480191,Environment,Environment +499201,Industry,Industry +499213,Research and Development,Research and Development +480191,Taxation and Finance,Taxation and Finance +494191,Health,Health +538764,Justice and Law Enforcement,Justice and Law Enforcement +485632,Security,Security +448682,Agriculture,Agriculture +448682,Consumer Issues,Consumer Issues +448682,Health,Health +448682,International Trade,International Trade +494752,Health,Health +530753,Climate,Climate +451226,Economic Development,Economic Development +451226,Immigration,Immigration +451226,Industry,Industry +451226,Regional Development,Regional Development +447047,Environment,Environment +530592,Fisheries,Fisheries +447326,Agriculture,Agriculture +447326,International Trade,International Trade +456224,Infrastructure,Infrastructure +501759,Labour,Labour +458166,Environment,Environment +447043,Fisheries,Fisheries +453563,Employment and Training,Employment and Training +453563,Industry,Industry +458761,Employment and Training,Employment and Training +458761,Economic Development,Economic Development +452356,Industry,Industry +452356,Regional Development,Regional Development +452356,Immigration,Immigration +445255,Health,Health +513621,Transportation,Transportation +513617,Internal Trade,Internal Trade +523136,International Trade,International Trade +466785,Internal Trade,Internal Trade +491927,Transportation,Transportation +448130,Economic Development,Economic Development +445723,Environment,Environment +445723,Infrastructure,Infrastructure +445723,Municipalities,Municipalities +453900,Climate,Climate +453900,Energy,Energy +453900,Environment,Environment +453903,Industry,Industry +453900,Research and Development,Research and Development +493377,Security,Security +445311,Security,Security +507852,Financial Institutions,Financial Institutions +454113,Small Business,Small Business +454112,Consumer Issues,Consumer Issues +451784,Regional Development,Regional Development +463428,Consumer Issues,Consumer Issues +451777,International Trade,International Trade +452136,Consumer Issues,Consumer Issues +463428,International Trade,International Trade +459249,Consumer Issues,Consumer Issues +452136,International Trade,International Trade +450332,Industry,Industry +450333,Health,Health +445425,Privacy and Access to Information,Privacy and Access to Information +445425,International Relations,International Relations +445427,International Relations,International Relations +445427,Privacy and Access to Information,Privacy and Access to Information +445428,International Relations,International Relations +445428,Privacy and Access to Information,Privacy and Access to Information +445429,Privacy and Access to Information,Privacy and Access to Information +445430,Privacy and Access to Information,Privacy and Access to Information +445434,Security,Security +522322,Infrastructure,Infrastructure +448461,Health,Health +448460,International Development,International Development +445497,Economic Development,Economic Development +445496,Education,Education +452622,Economic Development,Economic Development +452622,Energy,Energy +452622,Environment,Environment +468129,Defence,Defence +468126,Government Procurement,Government Procurement +447629,Government Procurement,Government Procurement +446179,Economic Development,Economic Development +446179,Infrastructure,Infrastructure +446179,Transportation,Transportation +456047,Economic Development,Economic Development +456047,Infrastructure,Infrastructure +456047,Transportation,Transportation +448953,Small Business,Small Business +448657,Municipalities,Municipalities +448953,Transportation,Transportation +447718,Health,Health +447718,Consumer Issues,Consumer Issues +452280,Environment,Environment +450802,International Relations,International Relations +452839,Employment and Training,Employment and Training +452840,Labour,Labour +460690,Government Procurement,Government Procurement +445803,Government Procurement,Government Procurement +446481,Justice and Law Enforcement,Justice and Law Enforcement +446481,Economic Development,Economic Development +446481,Regional Development,Regional Development +447621,Economic Development,Economic Development +452381,Employment and Training,Employment and Training +447625,Industry,Industry +457700,International Trade,International Trade +449962,Budget,Budget +449962,Economic Development,Economic Development +449962,Housing,Housing +449962,Taxation and Finance,Taxation and Finance +453182,Health,Health +448739,Justice and Law Enforcement,Justice and Law Enforcement +448316,Energy,Energy +448315,Environment,Environment +448315,Climate,Climate +448316,Research and Development,Research and Development +448316,Industry,Industry +447514,Energy,Energy +456763,Industry,Industry +448468,Infrastructure,Infrastructure +446068,Environment,Environment +446068,Internal Trade,Internal Trade +454411,Budget,Budget +454409,Consumer Issues,Consumer Issues +454409,Economic Development,Economic Development +466409,Industry,Industry +454410,Infrastructure,Infrastructure +480808,Regional Development,Regional Development +454409,Small Business,Small Business +457966,Economic Development,Economic Development +457966,Tourism,Tourism +537278,Industry,Industry +537278,Economic Development,Economic Development +535515,Research and Development,Research and Development +537278,Regional Development,Regional Development +463120,Health,Health +449555,Research and Development,Research and Development +449555,Agriculture,Agriculture +451877,Health,Health +453706,Education,Education +453707,Employment and Training,Employment and Training +453706,Employment and Training,Employment and Training +509301,Employment and Training,Employment and Training +453707,Forestry,Forestry +453706,Forestry,Forestry +509301,Forestry,Forestry +453707,Industry,Industry +449255,Industry,Industry +449256,Privacy and Access to Information,Privacy and Access to Information +449255,Privacy and Access to Information,Privacy and Access to Information +447011,Taxation and Finance,Taxation and Finance +447010,Taxation and Finance,Taxation and Finance +460478,Taxation and Finance,Taxation and Finance +460477,Taxation and Finance,Taxation and Finance +460017,Taxation and Finance,Taxation and Finance +460016,Taxation and Finance,Taxation and Finance +460015,Taxation and Finance,Taxation and Finance +460014,Taxation and Finance,Taxation and Finance +460013,Taxation and Finance,Taxation and Finance +459387,Taxation and Finance,Taxation and Finance +459386,Taxation and Finance,Taxation and Finance +459384,Taxation and Finance,Taxation and Finance +459383,Taxation and Finance,Taxation and Finance +458594,Taxation and Finance,Taxation and Finance +458592,Taxation and Finance,Taxation and Finance +456937,Taxation and Finance,Taxation and Finance +456936,Taxation and Finance,Taxation and Finance +456935,Taxation and Finance,Taxation and Finance +456934,Taxation and Finance,Taxation and Finance +456933,Taxation and Finance,Taxation and Finance +456932,Taxation and Finance,Taxation and Finance +455322,Taxation and Finance,Taxation and Finance +455321,Taxation and Finance,Taxation and Finance +455319,Taxation and Finance,Taxation and Finance +455317,Taxation and Finance,Taxation and Finance +451836,Taxation and Finance,Taxation and Finance +451833,Taxation and Finance,Taxation and Finance +451832,Taxation and Finance,Taxation and Finance +451827,Taxation and Finance,Taxation and Finance +449175,Taxation and Finance,Taxation and Finance +449174,Taxation and Finance,Taxation and Finance +447014,Taxation and Finance,Taxation and Finance +447013,Taxation and Finance,Taxation and Finance +453845,Infrastructure,Infrastructure +453844,Infrastructure,Infrastructure +453851,Infrastructure,Infrastructure +449671,Government Procurement,Government Procurement +454225,Economic Development,Economic Development +453135,Economic Development,Economic Development +521162,Health,Health +521162,Industry,Industry +446867,Industry,Industry +523779,Regional Development,Regional Development +521162,Regional Development,Regional Development +451547,Economic Development,Economic Development +451093,Economic Development,Economic Development +488552,Economic Development,Economic Development +479803,Economic Development,Economic Development +459843,Economic Development,Economic Development +457877,Economic Development,Economic Development +506436,Health,Health +493958,Health,Health +488552,Health,Health +451547,Health,Health +509458,Industry,Industry +506436,Industry,Industry +462283,Regional Development,Regional Development +459843,Regional Development,Regional Development +457877,Regional Development,Regional Development +454224,Regional Development,Regional Development +451093,Regional Development,Regional Development +446602,Regional Development,Regional Development +509458,Regional Development,Regional Development +506436,Regional Development,Regional Development +493958,Regional Development,Regional Development +463322,Regional Development,Regional Development +444830,Forestry,Forestry +444830,International Trade,International Trade +452208,Government Procurement,Government Procurement +449016,Government Procurement,Government Procurement +447636,Government Procurement,Government Procurement +447634,Government Procurement,Government Procurement +460715,Government Procurement,Government Procurement +459308,Government Procurement,Government Procurement +458663,Government Procurement,Government Procurement +458662,Government Procurement,Government Procurement +458661,Government Procurement,Government Procurement +458660,Government Procurement,Government Procurement +458659,Government Procurement,Government Procurement +458658,Government Procurement,Government Procurement +458657,Government Procurement,Government Procurement +457253,Government Procurement,Government Procurement +457250,Government Procurement,Government Procurement +456039,Government Procurement,Government Procurement +456038,Government Procurement,Government Procurement +456037,Government Procurement,Government Procurement +456036,Government Procurement,Government Procurement +456035,Government Procurement,Government Procurement +456034,Government Procurement,Government Procurement +451844,Government Procurement,Government Procurement +451843,Government Procurement,Government Procurement +451840,Government Procurement,Government Procurement +451838,Government Procurement,Government Procurement +451837,Government Procurement,Government Procurement +451834,Government Procurement,Government Procurement +451831,Government Procurement,Government Procurement +451830,Government Procurement,Government Procurement +450050,Government Procurement,Government Procurement +450047,Government Procurement,Government Procurement +447638,Government Procurement,Government Procurement +444828,Small Business,Small Business +456860,Health,Health +515948,Infrastructure,Infrastructure +515947,Infrastructure,Infrastructure +539441,Infrastructure,Infrastructure +445862,Industry,Industry +499196,Climate,Climate +490688,Climate,Climate +502881,Climate,Climate +502880,Climate,Climate +499213,Climate,Climate +480191,Economic Development,Economic Development +448114,Economic Development,Economic Development +502881,Economic Development,Economic Development +502880,Economic Development,Economic Development +499213,Economic Development,Economic Development +499201,Economic Development,Economic Development +448114,Energy,Energy +502880,Energy,Energy +465316,Energy,Energy +465316,Environment,Environment +465315,Environment,Environment +502881,Environment,Environment +499213,Environment,Environment +490688,Environment,Environment +485633,Health,Health +485632,Health,Health +477678,Health,Health +477677,Health,Health +472649,Health,Health +458080,Health,Health +457908,Health,Health +450386,Health,Health +447425,Health,Health +447424,Health,Health +538764,Health,Health +523826,Health,Health +511964,Health,Health +500402,Health,Health +500401,Health,Health +500400,Health,Health +500399,Health,Health +500397,Health,Health +494192,Health,Health +523826,Justice and Law Enforcement,Justice and Law Enforcement +511964,Justice and Law Enforcement,Justice and Law Enforcement +500402,Justice and Law Enforcement,Justice and Law Enforcement +500401,Justice and Law Enforcement,Justice and Law Enforcement +500400,Justice and Law Enforcement,Justice and Law Enforcement +500399,Justice and Law Enforcement,Justice and Law Enforcement +500397,Justice and Law Enforcement,Justice and Law Enforcement +494192,Justice and Law Enforcement,Justice and Law Enforcement +494191,Justice and Law Enforcement,Justice and Law Enforcement +485633,Justice and Law Enforcement,Justice and Law Enforcement +485632,Justice and Law Enforcement,Justice and Law Enforcement +477678,Justice and Law Enforcement,Justice and Law Enforcement +477677,Justice and Law Enforcement,Justice and Law Enforcement +472649,Justice and Law Enforcement,Justice and Law Enforcement +458080,Justice and Law Enforcement,Justice and Law Enforcement +457908,Justice and Law Enforcement,Justice and Law Enforcement +450386,Justice and Law Enforcement,Justice and Law Enforcement +447425,Justice and Law Enforcement,Justice and Law Enforcement +447424,Justice and Law Enforcement,Justice and Law Enforcement +477678,Security,Security +477677,Security,Security +472649,Security,Security +458080,Security,Security +457908,Security,Security +450386,Security,Security +447425,Security,Security +447424,Security,Security +538764,Security,Security +511964,Security,Security +500402,Security,Security +500401,Security,Security +500400,Security,Security +500399,Security,Security +500397,Security,Security +485633,Security,Security +448681,Agriculture,Agriculture +448679,Agriculture,Agriculture +448681,Consumer Issues,Consumer Issues +448679,Consumer Issues,Consumer Issues +448681,Health,Health +448679,Health,Health +448681,International Trade,International Trade +448679,International Trade,International Trade +530750,Climate,Climate +528485,Climate,Climate +528469,Climate,Climate +524384,Climate,Climate +524383,Climate,Climate +524381,Climate,Climate +524380,Climate,Climate +524377,Climate,Climate +524376,Climate,Climate +524375,Climate,Climate +521105,Climate,Climate +519036,Climate,Climate +519031,Climate,Climate +516984,Climate,Climate +516982,Climate,Climate +516981,Climate,Climate +516977,Climate,Climate +515224,Climate,Climate +515223,Climate,Climate +509912,Climate,Climate +503762,Climate,Climate +501387,Climate,Climate +498220,Climate,Climate +498213,Climate,Climate +498211,Climate,Climate +498208,Climate,Climate +498206,Climate,Climate +498203,Climate,Climate +498038,Climate,Climate +494492,Climate,Climate +494490,Climate,Climate +494489,Climate,Climate +494488,Climate,Climate +490253,Climate,Climate +490250,Climate,Climate +490247,Climate,Climate +490241,Climate,Climate +487127,Climate,Climate +487123,Climate,Climate +487115,Climate,Climate +483475,Climate,Climate +483471,Climate,Climate +483470,Climate,Climate +479323,Climate,Climate +476494,Climate,Climate +475433,Climate,Climate +475422,Climate,Climate +471990,Climate,Climate +471989,Climate,Climate +471988,Climate,Climate +469589,Climate,Climate +466062,Climate,Climate +466061,Climate,Climate +466057,Climate,Climate +466055,Climate,Climate +466054,Climate,Climate +465891,Climate,Climate +465889,Climate,Climate +465884,Climate,Climate +465883,Climate,Climate +465882,Climate,Climate +465881,Climate,Climate +465880,Climate,Climate +465867,Climate,Climate +463453,Climate,Climate +463452,Climate,Climate +463450,Climate,Climate +463449,Climate,Climate +463448,Climate,Climate +459921,Climate,Climate +459920,Climate,Climate +456983,Climate,Climate +446795,Climate,Climate +446793,Climate,Climate +446791,Climate,Climate +446789,Climate,Climate +445165,Climate,Climate +445098,Climate,Climate +445096,Climate,Climate +541165,Climate,Climate +541164,Climate,Climate +539517,Climate,Climate +539515,Climate,Climate +539513,Climate,Climate +536895,Climate,Climate +536894,Climate,Climate +536893,Climate,Climate +536891,Climate,Climate +536888,Climate,Climate +536887,Climate,Climate +536884,Climate,Climate +535564,Climate,Climate +533399,Climate,Climate +533397,Climate,Climate +533394,Climate,Climate +533393,Climate,Climate +533391,Climate,Climate +533388,Climate,Climate +530759,Climate,Climate +446765,Environment,Environment +524059,Fisheries,Fisheries +521285,Fisheries,Fisheries +462491,Fisheries,Fisheries +457407,Fisheries,Fisheries +457404,Fisheries,Fisheries +457401,Fisheries,Fisheries +457400,Fisheries,Fisheries +447047,Fisheries,Fisheries +446765,Fisheries,Fisheries +530593,Fisheries,Fisheries +451175,Infrastructure,Infrastructure +498520,Labour,Labour +498517,Labour,Labour +492067,Labour,Labour +492066,Labour,Labour +490433,Labour,Labour +490425,Labour,Labour +490421,Labour,Labour +490419,Labour,Labour +490418,Labour,Labour +460877,Labour,Labour +447333,Labour,Labour +447331,Labour,Labour +447330,Labour,Labour +447328,Labour,Labour +447327,Labour,Labour +528102,Labour,Labour +525241,Labour,Labour +521018,Labour,Labour +521016,Labour,Labour +521015,Labour,Labour +521014,Labour,Labour +521013,Labour,Labour +521012,Labour,Labour +521011,Labour,Labour +521010,Labour,Labour +521009,Labour,Labour +447043,Environment,Environment +446766,Environment,Environment +446766,Fisheries,Fisheries +469453,Fisheries,Fisheries +462492,Fisheries,Fisheries +458166,Fisheries,Fisheries +457406,Fisheries,Fisheries +457405,Fisheries,Fisheries +457402,Fisheries,Fisheries +457399,Fisheries,Fisheries +453932,Fisheries,Fisheries +453931,Fisheries,Fisheries +453562,Employment and Training,Employment and Training +453561,Employment and Training,Employment and Training +453564,Employment and Training,Employment and Training +453562,Industry,Industry +453561,Industry,Industry +453564,Industry,Industry +449708,Employment and Training,Employment and Training +452356,Economic Development,Economic Development +513617,Transportation,Transportation +513616,Transportation,Transportation +487551,Transportation,Transportation +480038,Transportation,Transportation +480031,Transportation,Transportation +466784,Transportation,Transportation +464802,Transportation,Transportation +456691,Transportation,Transportation +450432,Transportation,Transportation +445268,Transportation,Transportation +544366,Transportation,Transportation +543436,Transportation,Transportation +543421,Transportation,Transportation +543419,Transportation,Transportation +537782,Transportation,Transportation +535909,Transportation,Transportation +535907,Transportation,Transportation +531614,Transportation,Transportation +531609,Transportation,Transportation +527149,Transportation,Transportation +523140,Transportation,Transportation +523136,Transportation,Transportation +523124,Transportation,Transportation +518192,Transportation,Transportation +518181,Transportation,Transportation +513635,Transportation,Transportation +513632,Transportation,Transportation +513631,Transportation,Transportation +513629,Transportation,Transportation +513624,Transportation,Transportation +513623,Transportation,Transportation +513616,Internal Trade,Internal Trade +498345,Internal Trade,Internal Trade +466787,Internal Trade,Internal Trade +445268,Internal Trade,Internal Trade +535916,Internal Trade,Internal Trade +535912,Internal Trade,Internal Trade +535911,Internal Trade,Internal Trade +535910,Internal Trade,Internal Trade +535908,Internal Trade,Internal Trade +527149,Internal Trade,Internal Trade +523124,Internal Trade,Internal Trade +518181,Internal Trade,Internal Trade +513635,Internal Trade,Internal Trade +513634,Internal Trade,Internal Trade +513630,Internal Trade,Internal Trade +513627,Internal Trade,Internal Trade +513626,Internal Trade,Internal Trade +513624,Internal Trade,Internal Trade +513623,Internal Trade,Internal Trade +513621,Internal Trade,Internal Trade +513619,Internal Trade,Internal Trade +523131,International Trade,International Trade +523124,International Trade,International Trade +518192,International Trade,International Trade +518181,International Trade,International Trade +514321,International Trade,International Trade +513635,International Trade,International Trade +513634,International Trade,International Trade +513633,International Trade,International Trade +513632,International Trade,International Trade +513631,International Trade,International Trade +513630,International Trade,International Trade +513629,International Trade,International Trade +513628,International Trade,International Trade +513627,International Trade,International Trade +513626,International Trade,International Trade +513624,International Trade,International Trade +513623,International Trade,International Trade +513622,International Trade,International Trade +513621,International Trade,International Trade +513619,International Trade,International Trade +513617,International Trade,International Trade +513616,International Trade,International Trade +487551,International Trade,International Trade +482655,International Trade,International Trade +480041,International Trade,International Trade +480038,International Trade,International Trade +480031,International Trade,International Trade +480025,International Trade,International Trade +479398,International Trade,International Trade +466787,International Trade,International Trade +466785,International Trade,International Trade +466784,International Trade,International Trade +453514,International Trade,International Trade +450432,International Trade,International Trade +450431,International Trade,International Trade +445268,International Trade,International Trade +544366,International Trade,International Trade +543436,International Trade,International Trade +543424,International Trade,International Trade +543422,International Trade,International Trade +535916,International Trade,International Trade +535915,International Trade,International Trade +535912,International Trade,International Trade +535911,International Trade,International Trade +535910,International Trade,International Trade +535909,International Trade,International Trade +535908,International Trade,International Trade +535906,International Trade,International Trade +531609,International Trade,International Trade +527149,International Trade,International Trade +523140,International Trade,International Trade +466784,Internal Trade,Internal Trade +458169,Internal Trade,Internal Trade +445270,Internal Trade,Internal Trade +543422,Internal Trade,Internal Trade +543419,Internal Trade,Internal Trade +535915,Internal Trade,Internal Trade +535906,Internal Trade,Internal Trade +523140,Internal Trade,Internal Trade +523136,Internal Trade,Internal Trade +523131,Internal Trade,Internal Trade +518192,Internal Trade,Internal Trade +514321,Internal Trade,Internal Trade +513633,Internal Trade,Internal Trade +513632,Internal Trade,Internal Trade +513631,Internal Trade,Internal Trade +513629,Internal Trade,Internal Trade +513628,Internal Trade,Internal Trade +513622,Internal Trade,Internal Trade +491926,Transportation,Transportation +482655,Transportation,Transportation +480041,Transportation,Transportation +480025,Transportation,Transportation +479994,Transportation,Transportation +479993,Transportation,Transportation +479992,Transportation,Transportation +479986,Transportation,Transportation +479402,Transportation,Transportation +479400,Transportation,Transportation +479398,Transportation,Transportation +479396,Transportation,Transportation +466787,Transportation,Transportation +466785,Transportation,Transportation +458169,Transportation,Transportation +456690,Transportation,Transportation +456688,Transportation,Transportation +456395,Transportation,Transportation +456393,Transportation,Transportation +453514,Transportation,Transportation +450431,Transportation,Transportation +450430,Transportation,Transportation +445270,Transportation,Transportation +543424,Transportation,Transportation +543422,Transportation,Transportation +543418,Transportation,Transportation +543417,Transportation,Transportation +540360,Transportation,Transportation +537780,Transportation,Transportation +537779,Transportation,Transportation +535916,Transportation,Transportation +535915,Transportation,Transportation +535912,Transportation,Transportation +535911,Transportation,Transportation +535910,Transportation,Transportation +535908,Transportation,Transportation +535906,Transportation,Transportation +523131,Transportation,Transportation +521049,Transportation,Transportation +514321,Transportation,Transportation +513634,Transportation,Transportation +513633,Transportation,Transportation +513630,Transportation,Transportation +513628,Transportation,Transportation +513627,Transportation,Transportation +513626,Transportation,Transportation +513622,Transportation,Transportation +513619,Transportation,Transportation +498345,Transportation,Transportation +495095,Transportation,Transportation +493086,Transportation,Transportation +445719,Environment,Environment +445718,Environment,Environment +451030,Climate,Climate +453899,Energy,Energy +453897,Energy,Energy +451030,Energy,Energy +453903,Energy,Energy +453900,Industry,Industry +453899,Research and Development,Research and Development +451030,Research and Development,Research and Development +453903,Research and Development,Research and Development +453901,Research and Development,Research and Development +455477,Security,Security +455476,Security,Security +534530,Security,Security +505068,Security,Security +502154,Security,Security +507848,Financial Institutions,Financial Institutions +507842,Financial Institutions,Financial Institutions +454769,Financial Institutions,Financial Institutions +454768,Financial Institutions,Financial Institutions +454767,Financial Institutions,Financial Institutions +454114,Financial Institutions,Financial Institutions +454113,Financial Institutions,Financial Institutions +454112,Financial Institutions,Financial Institutions +454111,Financial Institutions,Financial Institutions +454112,Small Business,Small Business +454111,Small Business,Small Business +507852,Small Business,Small Business +507848,Small Business,Small Business +507842,Small Business,Small Business +454769,Small Business,Small Business +454768,Small Business,Small Business +454767,Small Business,Small Business +454114,Small Business,Small Business +454111,Consumer Issues,Consumer Issues +533481,Consumer Issues,Consumer Issues +507852,Consumer Issues,Consumer Issues +507848,Consumer Issues,Consumer Issues +507842,Consumer Issues,Consumer Issues +454769,Consumer Issues,Consumer Issues +454768,Consumer Issues,Consumer Issues +454767,Consumer Issues,Consumer Issues +454114,Consumer Issues,Consumer Issues +454113,Consumer Issues,Consumer Issues +448447,Regional Development,Regional Development +445361,Regional Development,Regional Development +477968,Regional Development,Regional Development +458668,Regional Development,Regional Development +452142,Regional Development,Regional Development +452091,Regional Development,Regional Development +445364,Consumer Issues,Consumer Issues +445364,International Trade,International Trade +459249,International Trade,International Trade +458928,International Trade,International Trade +458676,International Trade,International Trade +458669,International Trade,International Trade +451780,International Trade,International Trade +451777,Consumer Issues,Consumer Issues +445366,Consumer Issues,Consumer Issues +466953,Consumer Issues,Consumer Issues +459251,Consumer Issues,Consumer Issues +458928,Consumer Issues,Consumer Issues +458676,Consumer Issues,Consumer Issues +452138,Consumer Issues,Consumer Issues +452138,International Trade,International Trade +445366,International Trade,International Trade +478002,International Trade,International Trade +466953,International Trade,International Trade +451780,Consumer Issues,Consumer Issues +445370,Consumer Issues,Consumer Issues +463427,Consumer Issues,Consumer Issues +449362,International Trade,International Trade +445370,International Trade,International Trade +463427,International Trade,International Trade +450329,Industry,Industry +450330,Health,Health +450323,Health,Health +456152,Health,Health +522320,Infrastructure,Infrastructure +519743,Infrastructure,Infrastructure +493443,Infrastructure,Infrastructure +490936,Infrastructure,Infrastructure +455663,Infrastructure,Infrastructure +445434,Infrastructure,Infrastructure +541848,Infrastructure,Infrastructure +539632,Infrastructure,Infrastructure +537848,Infrastructure,Infrastructure +528769,Infrastructure,Infrastructure +452621,Economic Development,Economic Development +452621,Energy,Energy +452619,Energy,Energy +452629,Energy,Energy +452628,Energy,Energy +452626,Energy,Energy +452623,Energy,Energy +452621,Environment,Environment +452619,Environment,Environment +452629,Environment,Environment +452628,Environment,Environment +452626,Environment,Environment +452623,Environment,Environment +468127,Defence,Defence +468126,Defence,Defence +457378,Defence,Defence +453910,Defence,Defence +470510,Defence,Defence +457378,Government Procurement,Government Procurement +453910,Government Procurement,Government Procurement +470510,Government Procurement,Government Procurement +468129,Government Procurement,Government Procurement +468127,Government Procurement,Government Procurement +447628,Government Procurement,Government Procurement +447627,Government Procurement,Government Procurement +447630,Government Procurement,Government Procurement +445900,Economic Development,Economic Development +445900,Infrastructure,Infrastructure +445900,Transportation,Transportation +446178,Economic Development,Economic Development +445899,Economic Development,Economic Development +446178,Infrastructure,Infrastructure +445899,Infrastructure,Infrastructure +446178,Transportation,Transportation +445899,Transportation,Transportation +448657,Small Business,Small Business +448655,Small Business,Small Business +491670,Small Business,Small Business +448655,Municipalities,Municipalities +448657,Transportation,Transportation +448655,Transportation,Transportation +493864,Transportation,Transportation +471942,Transportation,Transportation +449712,Environment,Environment +448318,Environment,Environment +468617,Environment,Environment +468616,Environment,Environment +468615,Environment,Environment +468614,Environment,Environment +457467,Environment,Environment +452284,Environment,Environment +452282,Environment,Environment +452281,Environment,Environment +448889,International Relations,International Relations +445747,International Relations,International Relations +451885,International Relations,International Relations +451881,International Relations,International Relations +448916,Employment and Training,Employment and Training +445799,Employment and Training,Employment and Training +460692,Employment and Training,Employment and Training +460074,Employment and Training,Employment and Training +460073,Employment and Training,Employment and Training +460072,Employment and Training,Employment and Training +452843,Employment and Training,Employment and Training +452840,Employment and Training,Employment and Training +452839,Labour,Labour +445799,Labour,Labour +460074,Labour,Labour +460073,Labour,Labour +452843,Labour,Labour +460074,Government Procurement,Government Procurement +460073,Government Procurement,Government Procurement +460072,Government Procurement,Government Procurement +460066,Government Procurement,Government Procurement +452843,Government Procurement,Government Procurement +452840,Government Procurement,Government Procurement +452839,Government Procurement,Government Procurement +448916,Government Procurement,Government Procurement +445799,Government Procurement,Government Procurement +460692,Government Procurement,Government Procurement +460691,Government Procurement,Government Procurement +446480,Justice and Law Enforcement,Justice and Law Enforcement +446480,Economic Development,Economic Development +446480,Regional Development,Regional Development +508481,Economic Development,Economic Development +459523,Economic Development,Economic Development +449653,Economic Development,Economic Development +449650,Economic Development,Economic Development +449648,Economic Development,Economic Development +447626,Economic Development,Economic Development +447625,Economic Development,Economic Development +449653,Employment and Training,Employment and Training +459523,Employment and Training,Employment and Training +452386,Employment and Training,Employment and Training +447621,Industry,Industry +514162,Industry,Industry +508481,Industry,Industry +452386,Industry,Industry +452381,Industry,Industry +449653,Industry,Industry +449650,Industry,Industry +449648,Industry,Industry +447626,Industry,Industry +449648,International Trade,International Trade +448739,Health,Health +448315,Energy,Energy +448314,Energy,Energy +448315,Research and Development,Research and Development +448314,Research and Development,Research and Development +448315,Industry,Industry +448314,Industry,Industry +456760,Industry,Industry +455517,Industry,Industry +446066,Environment,Environment +446065,Environment,Environment +446074,Environment,Environment +446072,Environment,Environment +446071,Environment,Environment +446069,Environment,Environment +446066,Internal Trade,Internal Trade +446065,Internal Trade,Internal Trade +446074,Internal Trade,Internal Trade +446072,Internal Trade,Internal Trade +446071,Internal Trade,Internal Trade +446069,Internal Trade,Internal Trade +466411,Budget,Budget +451682,Consumer Issues,Consumer Issues +449239,Consumer Issues,Consumer Issues +483860,Consumer Issues,Consumer Issues +483859,Consumer Issues,Consumer Issues +480808,Consumer Issues,Consumer Issues +469516,Consumer Issues,Consumer Issues +466411,Consumer Issues,Consumer Issues +466409,Consumer Issues,Consumer Issues +466407,Consumer Issues,Consumer Issues +460148,Consumer Issues,Consumer Issues +454413,Consumer Issues,Consumer Issues +454412,Consumer Issues,Consumer Issues +454411,Consumer Issues,Consumer Issues +454410,Consumer Issues,Consumer Issues +451682,Economic Development,Economic Development +449239,Economic Development,Economic Development +483860,Economic Development,Economic Development +483859,Economic Development,Economic Development +480808,Economic Development,Economic Development +477167,Economic Development,Economic Development +469516,Economic Development,Economic Development +466411,Economic Development,Economic Development +466409,Economic Development,Economic Development +466407,Economic Development,Economic Development +460148,Economic Development,Economic Development +454413,Economic Development,Economic Development +454412,Economic Development,Economic Development +454411,Economic Development,Economic Development +454410,Economic Development,Economic Development +466407,Industry,Industry +460148,Industry,Industry +454413,Industry,Industry +454412,Industry,Industry +454411,Industry,Industry +454410,Industry,Industry +454409,Industry,Industry +451682,Industry,Industry +449239,Industry,Industry +483860,Industry,Industry +483859,Industry,Industry +466411,Industry,Industry +454409,Infrastructure,Infrastructure +451682,Infrastructure,Infrastructure +483860,Infrastructure,Infrastructure +483859,Infrastructure,Infrastructure +480808,Infrastructure,Infrastructure +477606,Infrastructure,Infrastructure +477167,Infrastructure,Infrastructure +466411,Infrastructure,Infrastructure +466409,Infrastructure,Infrastructure +466407,Infrastructure,Infrastructure +460148,Infrastructure,Infrastructure +454413,Infrastructure,Infrastructure +454412,Infrastructure,Infrastructure +454411,Infrastructure,Infrastructure +477606,Regional Development,Regional Development +477167,Regional Development,Regional Development +469516,Regional Development,Regional Development +466411,Regional Development,Regional Development +466409,Regional Development,Regional Development +466407,Regional Development,Regional Development +460148,Regional Development,Regional Development +454413,Regional Development,Regional Development +454412,Regional Development,Regional Development +454411,Regional Development,Regional Development +454410,Regional Development,Regional Development +454409,Regional Development,Regional Development +451682,Regional Development,Regional Development +449239,Regional Development,Regional Development +483860,Regional Development,Regional Development +483859,Regional Development,Regional Development +451682,Small Business,Small Business +449239,Small Business,Small Business +477606,Small Business,Small Business +469516,Small Business,Small Business +466409,Small Business,Small Business +466407,Small Business,Small Business +460148,Small Business,Small Business +454413,Small Business,Small Business +454412,Small Business,Small Business +454411,Small Business,Small Business +454410,Small Business,Small Business +457965,Economic Development,Economic Development +457965,Tourism,Tourism +537277,Industry,Industry +535515,Industry,Industry +537277,Economic Development,Economic Development +537277,Regional Development,Regional Development +456659,Health,Health +452367,Health,Health +452366,Health,Health +452365,Health,Health +452363,Health,Health +452360,Health,Health +452359,Health,Health +452346,Health,Health +450785,Health,Health +450784,Health,Health +450783,Health,Health +450782,Health,Health +450781,Health,Health +449565,Health,Health +449564,Health,Health +449562,Health,Health +449560,Health,Health +449559,Health,Health +449557,Health,Health +449555,Health,Health +449551,Health,Health +449549,Health,Health +464350,Health,Health +463121,Health,Health +449551,Research and Development,Research and Development +449549,Research and Development,Research and Development +450785,Research and Development,Research and Development +450784,Research and Development,Research and Development +450783,Research and Development,Research and Development +450782,Research and Development,Research and Development +450781,Research and Development,Research and Development +449565,Research and Development,Research and Development +449564,Research and Development,Research and Development +449562,Research and Development,Research and Development +449560,Research and Development,Research and Development +449559,Research and Development,Research and Development +449557,Research and Development,Research and Development +449551,Agriculture,Agriculture +449549,Agriculture,Agriculture +450785,Agriculture,Agriculture +450784,Agriculture,Agriculture +450783,Agriculture,Agriculture +450782,Agriculture,Agriculture +450781,Agriculture,Agriculture +449565,Agriculture,Agriculture +449564,Agriculture,Agriculture +449562,Agriculture,Agriculture +449560,Agriculture,Agriculture +449559,Agriculture,Agriculture +449557,Agriculture,Agriculture +445932,Official Languages,Official Languages +445931,Official Languages,Official Languages +451196,Official Languages,Official Languages +456241,Energy,Energy +448157,Energy,Energy +456244,Energy,Energy +456241,Environment,Environment +448157,Environment,Environment +456244,Environment,Environment +456241,Government Procurement,Government Procurement +448157,Government Procurement,Government Procurement +456244,Government Procurement,Government Procurement +448490,Small Business,Small Business +448332,Small Business,Small Business +450448,Small Business,Small Business +448883,Small Business,Small Business +448882,Small Business,Small Business +448880,Small Business,Small Business +448879,Small Business,Small Business +448879,Budget,Budget +448876,Budget,Budget +454098,Budget,Budget +453766,Budget,Budget +451901,Budget,Budget +451899,Budget,Budget +451894,Budget,Budget +448883,Budget,Budget +448882,Budget,Budget +448490,Infrastructure,Infrastructure +448332,Infrastructure,Infrastructure +454098,Infrastructure,Infrastructure +453766,Infrastructure,Infrastructure +451901,Infrastructure,Infrastructure +451899,Infrastructure,Infrastructure +451894,Infrastructure,Infrastructure +450448,Infrastructure,Infrastructure +448883,Infrastructure,Infrastructure +448882,Infrastructure,Infrastructure +448880,Infrastructure,Infrastructure +448879,Infrastructure,Infrastructure +448876,Economic Development,Economic Development +448332,Economic Development,Economic Development +450448,Economic Development,Economic Development +448883,Economic Development,Economic Development +448882,Economic Development,Economic Development +448880,Economic Development,Economic Development +448332,Labour,Labour +448490,Government Procurement,Government Procurement +448332,Government Procurement,Government Procurement +454098,Government Procurement,Government Procurement +453766,Government Procurement,Government Procurement +451901,Government Procurement,Government Procurement +451899,Government Procurement,Government Procurement +451894,Government Procurement,Government Procurement +450448,Government Procurement,Government Procurement +448883,Government Procurement,Government Procurement +448882,Government Procurement,Government Procurement +448880,Government Procurement,Government Procurement +448879,Government Procurement,Government Procurement +445981,Economic Development,Economic Development +454886,Employment and Training,Employment and Training +445981,Employment and Training,Employment and Training +454893,Employment and Training,Employment and Training +454892,Employment and Training,Employment and Training +445982,Employment and Training,Employment and Training +454886,Economic Development,Economic Development +445983,Economic Development,Economic Development +454892,Economic Development,Economic Development +543827,Economic Development,Economic Development +515146,Economic Development,Economic Development +445984,Employment and Training,Employment and Training +459969,Economic Development,Economic Development +446298,Economic Development,Economic Development +540500,Economic Development,Economic Development +532601,Economic Development,Economic Development +527474,Economic Development,Economic Development +465213,Economic Development,Economic Development +465127,Economic Development,Economic Development +465126,Economic Development,Economic Development +465123,Economic Development,Economic Development +459968,Small Business,Small Business +446298,Small Business,Small Business +532601,Small Business,Small Business +527474,Small Business,Small Business +527472,Small Business,Small Business +465127,Small Business,Small Business +459970,Small Business,Small Business +448481,Health,Health +446988,Health,Health +450940,Health,Health +448481,Housing,Housing +446988,Housing,Housing +446016,Climate,Climate +446013,Climate,Climate +446016,Environment,Environment +446013,Environment,Environment +446016,International Development,International Development +446013,International Development,International Development +449660,Industry,Industry +449658,Industry,Industry +478398,Industry,Industry +449660,International Trade,International Trade +449658,International Trade,International Trade +478685,Employment and Training,Employment and Training +449660,Economic Development,Economic Development +449658,Economic Development,Economic Development +453054,Environment,Environment +447322,Environment,Environment +453054,Internal Trade,Internal Trade +447322,Internal Trade,Internal Trade +446041,Education,Education +446039,Education,Education +450567,Education,Education +450566,Education,Education +450565,Education,Education +450564,Education,Education +450563,Education,Education +450562,Education,Education +450561,Education,Education +450560,Education,Education +446049,Education,Education +446044,Education,Education +458418,Government Procurement,Government Procurement +456306,Climate,Climate +456304,Climate,Climate +456306,Economic Development,Economic Development +456304,Economic Development,Economic Development +456306,Environment,Environment +456304,Environment,Environment +456306,Transportation,Transportation +456304,Transportation,Transportation +446075,Infrastructure,Infrastructure +448779,International Trade,International Trade +448592,International Trade,International Trade +454087,International Trade,International Trade +454083,International Trade,International Trade +454079,International Trade,International Trade +451157,International Trade,International Trade +451020,International Trade,International Trade +451018,International Trade,International Trade +451007,International Trade,International Trade +451006,International Trade,International Trade +451005,International Trade,International Trade +450588,International Trade,International Trade +450587,International Trade,International Trade +450586,International Trade,International Trade +450585,International Trade,International Trade +450584,International Trade,International Trade +450581,International Trade,International Trade +450575,International Trade,International Trade +483974,Education,Education +483967,Education,Education +447291,Education,Education +446735,Education,Education +446653,Education,Education +446647,Education,Education +446645,Education,Education +446643,Education,Education +446641,Education,Education +446640,Education,Education +477534,Education,Education +474406,Education,Education +474405,Education,Education +474404,Education,Education +474403,Education,Education +474402,Education,Education +474401,Education,Education +454200,Education,Education +454199,Education,Education +450407,Education,Education +450365,Education,Education +449969,Education,Education +449966,Education,Education +449959,Education,Education +449958,Education,Education +449956,Education,Education +449954,Education,Education +449951,Education,Education +449921,Education,Education +448065,Education,Education +490268,Education,Education +490206,Education,Education +490204,Education,Education +490203,Education,Education +487509,Education,Education +486920,Education,Education +486918,Education,Education +486644,Education,Education +486643,Education,Education +486642,Education,Education +453756,Environment,Environment +446230,Health,Health +446120,Health,Health +521279,Health,Health +446133,Internal Trade,Internal Trade +446132,Internal Trade,Internal Trade +446140,Internal Trade,Internal Trade +446138,Internal Trade,Internal Trade +446137,Internal Trade,Internal Trade +446136,Internal Trade,Internal Trade +446135,Internal Trade,Internal Trade +446133,Environment,Environment +446132,Environment,Environment +446140,Environment,Environment +446138,Environment,Environment +446137,Environment,Environment +446136,Environment,Environment +446135,Environment,Environment +446159,Environment,Environment +456765,Regional Development,Regional Development +456764,Regional Development,Regional Development +502731,Regional Development,Regional Development +499509,Regional Development,Regional Development +488254,Regional Development,Regional Development +488253,Regional Development,Regional Development +485328,Regional Development,Regional Development +464677,Regional Development,Regional Development +464674,Regional Development,Regional Development +464163,Regional Development,Regional Development +464162,Regional Development,Regional Development +464161,Regional Development,Regional Development +464160,Regional Development,Regional Development +464159,Regional Development,Regional Development +464156,Regional Development,Regional Development +456768,Regional Development,Regional Development +456765,Housing,Housing +456764,Housing,Housing +502731,Housing,Housing +499509,Housing,Housing +488254,Housing,Housing +488253,Housing,Housing +485328,Housing,Housing +464677,Housing,Housing +464674,Housing,Housing +464163,Housing,Housing +464162,Housing,Housing +464161,Housing,Housing +464160,Housing,Housing +464159,Housing,Housing +464156,Housing,Housing +456768,Housing,Housing +456765,Infrastructure,Infrastructure +456764,Infrastructure,Infrastructure +502731,Infrastructure,Infrastructure +499509,Infrastructure,Infrastructure +488254,Infrastructure,Infrastructure +488253,Infrastructure,Infrastructure +485328,Infrastructure,Infrastructure +464677,Infrastructure,Infrastructure +464674,Infrastructure,Infrastructure +464163,Infrastructure,Infrastructure +464162,Infrastructure,Infrastructure +464161,Infrastructure,Infrastructure +464160,Infrastructure,Infrastructure +464159,Infrastructure,Infrastructure +464156,Infrastructure,Infrastructure +456768,Infrastructure,Infrastructure +456765,Municipalities,Municipalities +456764,Municipalities,Municipalities +502731,Municipalities,Municipalities +499509,Municipalities,Municipalities +488254,Municipalities,Municipalities +488253,Municipalities,Municipalities +485328,Municipalities,Municipalities +464677,Municipalities,Municipalities +464674,Municipalities,Municipalities +464163,Municipalities,Municipalities +464162,Municipalities,Municipalities +464161,Municipalities,Municipalities +464160,Municipalities,Municipalities +464159,Municipalities,Municipalities +464156,Municipalities,Municipalities +456768,Municipalities,Municipalities +465300,Agriculture,Agriculture +446784,Agriculture,Agriculture +496823,Agriculture,Agriculture +496822,Agriculture,Agriculture +496821,Agriculture,Agriculture +465685,Agriculture,Agriculture +465300,Consumer Issues,Consumer Issues +446784,Consumer Issues,Consumer Issues +496823,Consumer Issues,Consumer Issues +496822,Consumer Issues,Consumer Issues +496821,Consumer Issues,Consumer Issues +465685,Consumer Issues,Consumer Issues +465300,International Trade,International Trade +446784,International Trade,International Trade +496823,International Trade,International Trade +496822,International Trade,International Trade +496821,International Trade,International Trade +465685,International Trade,International Trade +446547,Infrastructure,Infrastructure +446549,Taxation and Finance,Taxation and Finance +446547,Taxation and Finance,Taxation and Finance +449236,Agriculture,Agriculture +449235,Agriculture,Agriculture +508216,Agriculture,Agriculture +449238,Agriculture,Agriculture +449236,Economic Development,Economic Development +449235,Economic Development,Economic Development +525528,Economic Development,Economic Development +525377,Economic Development,Economic Development +525372,Economic Development,Economic Development +519174,Economic Development,Economic Development +513263,Economic Development,Economic Development +511312,Economic Development,Economic Development +511262,Economic Development,Economic Development +508255,Economic Development,Economic Development +508243,Economic Development,Economic Development +508216,Economic Development,Economic Development +473932,Economic Development,Economic Development +449238,Economic Development,Economic Development +449236,Energy,Energy +449235,Energy,Energy +449238,Energy,Energy +449236,Industry,Industry +449235,Industry,Industry +508255,Industry,Industry +508243,Industry,Industry +508216,Industry,Industry +449238,Industry,Industry +525372,Infrastructure,Infrastructure +519174,Infrastructure,Infrastructure +513263,Infrastructure,Infrastructure +511312,Infrastructure,Infrastructure +511262,Infrastructure,Infrastructure +508255,Infrastructure,Infrastructure +508243,Infrastructure,Infrastructure +508216,Infrastructure,Infrastructure +473932,Infrastructure,Infrastructure +449238,Infrastructure,Infrastructure +449237,Infrastructure,Infrastructure +449236,Infrastructure,Infrastructure +449235,Infrastructure,Infrastructure +525528,Infrastructure,Infrastructure +449236,International Trade,International Trade +449235,International Trade,International Trade +525372,International Trade,International Trade +519174,International Trade,International Trade +513263,International Trade,International Trade +511312,International Trade,International Trade +508255,International Trade,International Trade +508216,International Trade,International Trade +473932,International Trade,International Trade +449238,International Trade,International Trade +449236,Municipalities,Municipalities +449235,Municipalities,Municipalities +508255,Municipalities,Municipalities +508243,Municipalities,Municipalities +508216,Municipalities,Municipalities +473932,Municipalities,Municipalities +449238,Municipalities,Municipalities +508243,Regional Development,Regional Development +508216,Regional Development,Regional Development +473932,Regional Development,Regional Development +449238,Regional Development,Regional Development +449237,Regional Development,Regional Development +449236,Regional Development,Regional Development +449235,Regional Development,Regional Development +525528,Regional Development,Regional Development +525377,Regional Development,Regional Development +525372,Regional Development,Regional Development +519174,Regional Development,Regional Development +513263,Regional Development,Regional Development +508216,Transportation,Transportation +473932,Transportation,Transportation +449238,Transportation,Transportation +449237,Transportation,Transportation +449236,Transportation,Transportation +449235,Transportation,Transportation +525377,Transportation,Transportation +525372,Transportation,Transportation +519174,Transportation,Transportation +513263,Transportation,Transportation +511312,Transportation,Transportation +511262,Transportation,Transportation +508255,Transportation,Transportation +487397,Economic Development,Economic Development +487395,Economic Development,Economic Development +457229,Economic Development,Economic Development +452045,Economic Development,Economic Development +487397,Industry,Industry +452045,Industry,Industry +487395,Infrastructure,Infrastructure +481423,Education,Education +457229,Education,Education +452045,Education,Education +494102,Education,Education +487397,Education,Education +494102,Regional Development,Regional Development +487397,Regional Development,Regional Development +487395,Employment and Training,Employment and Training +457229,Employment and Training,Employment and Training +452045,Employment and Training,Employment and Training +494102,Employment and Training,Employment and Training +487397,Research and Development,Research and Development +487395,Research and Development,Research and Development +457229,Research and Development,Research and Development +448952,Environment,Environment +446469,Environment,Environment +460995,Environment,Environment +453052,Environment,Environment +450549,Environment,Environment +450548,Environment,Environment +449143,Economic Development,Economic Development +446514,Economic Development,Economic Development +449164,Economic Development,Economic Development +449163,Economic Development,Economic Development +449146,Economic Development,Economic Development +449143,Environment,Environment +448921,Employment and Training,Employment and Training +538382,Employment and Training,Employment and Training +508484,Employment and Training,Employment and Training +508480,Employment and Training,Employment and Training +508474,Employment and Training,Employment and Training +508468,Employment and Training,Employment and Training +508467,Employment and Training,Employment and Training +508466,Employment and Training,Employment and Training +508460,Employment and Training,Employment and Training +508457,Employment and Training,Employment and Training +507942,Employment and Training,Employment and Training +507928,Employment and Training,Employment and Training +468005,Employment and Training,Employment and Training +468004,Employment and Training,Employment and Training +468003,Employment and Training,Employment and Training +468002,Employment and Training,Employment and Training +529838,Security,Security +529837,Security,Security +529840,Security,Security +479613,Small Business,Small Business +479609,Small Business,Small Business +464793,Small Business,Small Business +448921,Small Business,Small Business +448719,Small Business,Small Business +484691,Industry,Industry +468005,Industry,Industry +468002,Industry,Industry +464793,Industry,Industry +464787,Industry,Industry +481991,Economic Development,Economic Development +479613,Economic Development,Economic Development +479609,Economic Development,Economic Development +477669,Economic Development,Economic Development +475249,Economic Development,Economic Development +472998,Economic Development,Economic Development +472962,Economic Development,Economic Development +472955,Economic Development,Economic Development +472953,Economic Development,Economic Development +468005,Economic Development,Economic Development +468003,Economic Development,Economic Development +468002,Economic Development,Economic Development +464793,Economic Development,Economic Development +464787,Economic Development,Economic Development +448921,Economic Development,Economic Development +538382,Economic Development,Economic Development +529848,Economic Development,Economic Development +529845,Economic Development,Economic Development +529844,Economic Development,Economic Development +529841,Economic Development,Economic Development +529840,Economic Development,Economic Development +529839,Economic Development,Economic Development +529838,Economic Development,Economic Development +529837,Economic Development,Economic Development +529836,Economic Development,Economic Development +529835,Economic Development,Economic Development +529834,Economic Development,Economic Development +529833,Economic Development,Economic Development +529832,Economic Development,Economic Development +529831,Economic Development,Economic Development +529829,Economic Development,Economic Development +511572,Economic Development,Economic Development +508484,Economic Development,Economic Development +508480,Economic Development,Economic Development +508474,Economic Development,Economic Development +508468,Economic Development,Economic Development +508467,Economic Development,Economic Development +508460,Economic Development,Economic Development +508457,Economic Development,Economic Development +507942,Economic Development,Economic Development +507928,Economic Development,Economic Development +491870,Economic Development,Economic Development +487105,Economic Development,Economic Development +487104,Economic Development,Economic Development +487103,Economic Development,Economic Development +487099,Economic Development,Economic Development +484695,Economic Development,Economic Development +529833,Labour,Labour +491871,Consumer Issues,Consumer Issues +484691,Consumer Issues,Consumer Issues +511573,Consumer Issues,Consumer Issues +507942,Consumer Issues,Consumer Issues +448921,Government Procurement,Government Procurement +448719,Government Procurement,Government Procurement +538382,Government Procurement,Government Procurement +529848,Government Procurement,Government Procurement +529845,Government Procurement,Government Procurement +529844,Government Procurement,Government Procurement +529841,Government Procurement,Government Procurement +511572,Government Procurement,Government Procurement +508484,Government Procurement,Government Procurement +508480,Government Procurement,Government Procurement +508474,Government Procurement,Government Procurement +508468,Government Procurement,Government Procurement +508467,Government Procurement,Government Procurement +508466,Government Procurement,Government Procurement +508460,Government Procurement,Government Procurement +508457,Government Procurement,Government Procurement +507942,Government Procurement,Government Procurement +507928,Government Procurement,Government Procurement +502453,Government Procurement,Government Procurement +499774,Government Procurement,Government Procurement +491870,Government Procurement,Government Procurement +487105,Government Procurement,Government Procurement +487104,Government Procurement,Government Procurement +487103,Government Procurement,Government Procurement +487099,Government Procurement,Government Procurement +484695,Government Procurement,Government Procurement +484694,Government Procurement,Government Procurement +481991,Government Procurement,Government Procurement +479613,Government Procurement,Government Procurement +479609,Government Procurement,Government Procurement +477669,Government Procurement,Government Procurement +475249,Government Procurement,Government Procurement +472998,Government Procurement,Government Procurement +472962,Government Procurement,Government Procurement +472955,Government Procurement,Government Procurement +472953,Government Procurement,Government Procurement +468005,Government Procurement,Government Procurement +468004,Government Procurement,Government Procurement +468003,Government Procurement,Government Procurement +468002,Government Procurement,Government Procurement +467997,Government Procurement,Government Procurement +464793,Government Procurement,Government Procurement +477669,Budget,Budget +464787,Budget,Budget +508484,Budget,Budget +508480,Budget,Budget +508474,Budget,Budget +508468,Budget,Budget +508467,Budget,Budget +508466,Budget,Budget +508460,Budget,Budget +508457,Budget,Budget +507942,Budget,Budget +507928,Budget,Budget +484695,Budget,Budget +484694,Budget,Budget +481991,Budget,Budget +479613,Budget,Budget +499778,Transportation,Transportation +502448,Industry,Industry +463016,Regional Development,Regional Development +454803,Regional Development,Regional Development +464790,Tourism,Tourism +454803,Tourism,Tourism +499778,Tourism,Tourism +481981,Tourism,Tourism +481981,Health,Health +481980,Health,Health +502448,Health,Health +463016,Environment,Environment +463016,Economic Development,Economic Development +454803,Economic Development,Economic Development +502448,Economic Development,Economic Development +468001,International Trade,International Trade +468000,International Trade,International Trade +451418,International Trade,International Trade +451417,International Trade,International Trade +451416,International Trade,International Trade +502470,International Trade,International Trade +468000,Energy,Energy +467999,Energy,Energy +451417,Consumer Issues,Consumer Issues +451416,Consumer Issues,Consumer Issues +468001,Consumer Issues,Consumer Issues +468001,Employment and Training,Employment and Training +468000,Employment and Training,Employment and Training +468000,Environment,Environment +467999,Environment,Environment +451417,Industry,Industry +451416,Industry,Industry +502470,Industry,Industry +502460,Industry,Industry +468000,Industry,Industry +472440,Economic Development,Economic Development +472439,Economic Development,Economic Development +460975,Economic Development,Economic Development +454965,Economic Development,Economic Development +454964,Economic Development,Economic Development +454963,Economic Development,Economic Development +454958,Economic Development,Economic Development +450970,Economic Development,Economic Development +450969,Economic Development,Economic Development +450968,Economic Development,Economic Development +472442,Economic Development,Economic Development +450969,Employment and Training,Employment and Training +450968,Employment and Training,Employment and Training +530747,Employment and Training,Employment and Training +514477,Employment and Training,Employment and Training +500458,Employment and Training,Employment and Training +497834,Employment and Training,Employment and Training +497833,Employment and Training,Employment and Training +489956,Employment and Training,Employment and Training +486908,Employment and Training,Employment and Training +486906,Employment and Training,Employment and Training +484255,Employment and Training,Employment and Training +484252,Employment and Training,Employment and Training +484251,Employment and Training,Employment and Training +484250,Employment and Training,Employment and Training +481420,Employment and Training,Employment and Training +479411,Employment and Training,Employment and Training +476891,Employment and Training,Employment and Training +476889,Employment and Training,Employment and Training +472442,Employment and Training,Employment and Training +472441,Employment and Training,Employment and Training +472440,Employment and Training,Employment and Training +472439,Employment and Training,Employment and Training +460975,Employment and Training,Employment and Training +454965,Employment and Training,Employment and Training +454964,Employment and Training,Employment and Training +454963,Employment and Training,Employment and Training +454960,Employment and Training,Employment and Training +454958,Employment and Training,Employment and Training +472440,Labour,Labour +472439,Labour,Labour +460975,Labour,Labour +454965,Labour,Labour +454964,Labour,Labour +454963,Labour,Labour +454958,Labour,Labour +450970,Labour,Labour +450969,Labour,Labour +450968,Labour,Labour +527680,Labour,Labour +500458,Labour,Labour +497834,Labour,Labour +497833,Labour,Labour +489956,Labour,Labour +486908,Labour,Labour +486906,Labour,Labour +484255,Labour,Labour +484252,Labour,Labour +484251,Labour,Labour +484250,Labour,Labour +481420,Labour,Labour +479411,Labour,Labour +476891,Labour,Labour +476889,Labour,Labour +472442,Labour,Labour +466543,Intellectual Property,Intellectual Property +451029,Intellectual Property,Intellectual Property +459058,Health,Health +455639,Health,Health +459058,Justice and Law Enforcement,Justice and Law Enforcement +455639,Justice and Law Enforcement,Justice and Law Enforcement +512504,Taxation and Finance,Taxation and Finance +512499,Taxation and Finance,Taxation and Finance +510363,Taxation and Finance,Taxation and Finance +510362,Taxation and Finance,Taxation and Finance +510360,Taxation and Finance,Taxation and Finance +510358,Taxation and Finance,Taxation and Finance +510357,Taxation and Finance,Taxation and Finance +510356,Taxation and Finance,Taxation and Finance +508157,Taxation and Finance,Taxation and Finance +508154,Taxation and Finance,Taxation and Finance +505878,Taxation and Finance,Taxation and Finance +505877,Taxation and Finance,Taxation and Finance +505876,Taxation and Finance,Taxation and Finance +501267,Taxation and Finance,Taxation and Finance +501266,Taxation and Finance,Taxation and Finance +498186,Taxation and Finance,Taxation and Finance +498183,Taxation and Finance,Taxation and Finance +494877,Taxation and Finance,Taxation and Finance +494876,Taxation and Finance,Taxation and Finance +494874,Taxation and Finance,Taxation and Finance +486183,Taxation and Finance,Taxation and Finance +486178,Taxation and Finance,Taxation and Finance +486177,Taxation and Finance,Taxation and Finance +486175,Taxation and Finance,Taxation and Finance +486174,Taxation and Finance,Taxation and Finance +483203,Taxation and Finance,Taxation and Finance +483202,Taxation and Finance,Taxation and Finance +482936,Taxation and Finance,Taxation and Finance +481143,Taxation and Finance,Taxation and Finance +481142,Taxation and Finance,Taxation and Finance +481141,Taxation and Finance,Taxation and Finance +481139,Taxation and Finance,Taxation and Finance +481115,Taxation and Finance,Taxation and Finance +480731,Taxation and Finance,Taxation and Finance +480498,Taxation and Finance,Taxation and Finance +480497,Taxation and Finance,Taxation and Finance +480495,Taxation and Finance,Taxation and Finance +480494,Taxation and Finance,Taxation and Finance +480491,Taxation and Finance,Taxation and Finance +480487,Taxation and Finance,Taxation and Finance +480485,Taxation and Finance,Taxation and Finance +480484,Taxation and Finance,Taxation and Finance +480483,Taxation and Finance,Taxation and Finance +480482,Taxation and Finance,Taxation and Finance +480477,Taxation and Finance,Taxation and Finance +478035,Taxation and Finance,Taxation and Finance +478025,Taxation and Finance,Taxation and Finance +476080,Taxation and Finance,Taxation and Finance +476063,Taxation and Finance,Taxation and Finance +476060,Taxation and Finance,Taxation and Finance +476058,Taxation and Finance,Taxation and Finance +476055,Taxation and Finance,Taxation and Finance +476053,Taxation and Finance,Taxation and Finance +476050,Taxation and Finance,Taxation and Finance +475971,Taxation and Finance,Taxation and Finance +475967,Taxation and Finance,Taxation and Finance +475963,Taxation and Finance,Taxation and Finance +475960,Taxation and Finance,Taxation and Finance +475958,Taxation and Finance,Taxation and Finance +475956,Taxation and Finance,Taxation and Finance +475946,Taxation and Finance,Taxation and Finance +473774,Taxation and Finance,Taxation and Finance +473773,Taxation and Finance,Taxation and Finance +473772,Taxation and Finance,Taxation and Finance +473771,Taxation and Finance,Taxation and Finance +473770,Taxation and Finance,Taxation and Finance +471457,Taxation and Finance,Taxation and Finance +471456,Taxation and Finance,Taxation and Finance +471455,Taxation and Finance,Taxation and Finance +471454,Taxation and Finance,Taxation and Finance +469198,Taxation and Finance,Taxation and Finance +466378,Taxation and Finance,Taxation and Finance +465642,Taxation and Finance,Taxation and Finance +465638,Taxation and Finance,Taxation and Finance +462804,Taxation and Finance,Taxation and Finance +462017,Taxation and Finance,Taxation and Finance +460513,Taxation and Finance,Taxation and Finance +460512,Taxation and Finance,Taxation and Finance +460511,Taxation and Finance,Taxation and Finance +460510,Taxation and Finance,Taxation and Finance +460509,Taxation and Finance,Taxation and Finance +458943,Taxation and Finance,Taxation and Finance +458942,Taxation and Finance,Taxation and Finance +456796,Taxation and Finance,Taxation and Finance +456795,Taxation and Finance,Taxation and Finance +456794,Taxation and Finance,Taxation and Finance +456793,Taxation and Finance,Taxation and Finance +456791,Taxation and Finance,Taxation and Finance +447560,Taxation and Finance,Taxation and Finance +447503,Taxation and Finance,Taxation and Finance +446426,Taxation and Finance,Taxation and Finance +541161,Taxation and Finance,Taxation and Finance +541159,Taxation and Finance,Taxation and Finance +535646,Taxation and Finance,Taxation and Finance +535645,Taxation and Finance,Taxation and Finance +535636,Taxation and Finance,Taxation and Finance +535634,Taxation and Finance,Taxation and Finance +526684,Taxation and Finance,Taxation and Finance +522896,Taxation and Finance,Taxation and Finance +522892,Taxation and Finance,Taxation and Finance +514096,Taxation and Finance,Taxation and Finance +448649,Research and Development,Research and Development +446427,Research and Development,Research and Development +465645,Research and Development,Research and Development +465644,Research and Development,Research and Development +465643,Research and Development,Research and Development +446445,Health,Health +446444,Health,Health +452792,Economic Development,Economic Development +452789,Economic Development,Economic Development +452798,Economic Development,Economic Development +452795,Economic Development,Economic Development +452792,Industry,Industry +452789,Industry,Industry +452798,Industry,Industry +452795,Industry,Industry +452794,International Relations,International Relations +452792,International Relations,International Relations +452792,International Trade,International Trade +452789,International Trade,International Trade +454325,International Trade,International Trade +452798,International Trade,International Trade +452795,International Trade,International Trade +452794,Justice and Law Enforcement,Justice and Law Enforcement +452792,Justice and Law Enforcement,Justice and Law Enforcement +452794,Taxation and Finance,Taxation and Finance +452792,Taxation and Finance,Taxation and Finance +452798,Taxation and Finance,Taxation and Finance +528937,Budget,Budget +525980,Budget,Budget +479997,Budget,Budget +446980,Budget,Budget +446976,Budget,Budget +463562,Health,Health +463561,Health,Health +446452,Health,Health +446450,Health,Health +446449,Health,Health +446448,Health,Health +521283,Health,Health +521282,Health,Health +463568,Health,Health +463567,Health,Health +463566,Health,Health +446462,Health,Health +446460,Health,Health +446473,Research and Development,Research and Development +446473,Industry,Industry +532373,Consumer Issues,Consumer Issues +518343,Industry,Industry +518342,Industry,Industry +480288,Transportation,Transportation +478338,Transportation,Transportation +538551,Transportation,Transportation +532373,Transportation,Transportation +518343,Transportation,Transportation +473006,Infrastructure,Infrastructure +521281,Health,Health +521280,Health,Health +463589,Health,Health +463588,Health,Health +463587,Health,Health +463586,Health,Health +446539,Health,Health +446538,Health,Health +458815,Security,Security +446759,Health,Health +498995,Fisheries,Fisheries +474053,Fisheries,Fisheries +454230,Fisheries,Fisheries +454229,Fisheries,Fisheries +454216,Fisheries,Fisheries +454214,Fisheries,Fisheries +454213,Fisheries,Fisheries +453331,Fisheries,Fisheries +453330,Fisheries,Fisheries +453329,Fisheries,Fisheries +453327,Fisheries,Fisheries +453326,Fisheries,Fisheries +453325,Fisheries,Fisheries +453324,Fisheries,Fisheries +453323,Fisheries,Fisheries +453322,Fisheries,Fisheries +453321,Fisheries,Fisheries +453320,Fisheries,Fisheries +453319,Fisheries,Fisheries +453318,Fisheries,Fisheries +453317,Fisheries,Fisheries +453316,Fisheries,Fisheries +453311,Fisheries,Fisheries +451371,Fisheries,Fisheries +451361,Fisheries,Fisheries +451247,Fisheries,Fisheries +451245,Fisheries,Fisheries +451244,Fisheries,Fisheries +451243,Fisheries,Fisheries +451242,Fisheries,Fisheries +451241,Fisheries,Fisheries +451240,Fisheries,Fisheries +451239,Fisheries,Fisheries +446589,Fisheries,Fisheries +452824,Government Procurement,Government Procurement +452818,Government Procurement,Government Procurement +455596,International Relations,International Relations +450754,International Relations,International Relations +496680,International Relations,International Relations +483822,International Relations,International Relations +446616,Research and Development,Research and Development +449270,Environment,Environment +449270,Energy,Energy +464798,Security,Security +460153,Security,Security +508495,Security,Security +491868,Security,Security +477676,Security,Security +477672,Security,Security +477668,Security,Security +460153,Government Procurement,Government Procurement +454813,Government Procurement,Government Procurement +508495,Government Procurement,Government Procurement +479617,Government Procurement,Government Procurement +477676,Government Procurement,Government Procurement +477672,Government Procurement,Government Procurement +477668,Government Procurement,Government Procurement +477665,Government Procurement,Government Procurement +450878,Privacy and Access to Information,Privacy and Access to Information +450876,Privacy and Access to Information,Privacy and Access to Information +506348,Privacy and Access to Information,Privacy and Access to Information +482602,Privacy and Access to Information,Privacy and Access to Information +448578,Energy,Energy +448578,Infrastructure,Infrastructure +469437,Economic Development,Economic Development +469436,Economic Development,Economic Development +496451,Economic Development,Economic Development +496450,Economic Development,Economic Development +496449,Economic Development,Economic Development +456496,Research and Development,Research and Development +448743,Environment,Environment +448743,Agriculture,Agriculture +465609,Health,Health +449042,Health,Health +484497,Health,Health +481654,Health,Health +499624,Budget,Budget +499621,Budget,Budget +456158,Budget,Budget +450285,Budget,Budget +540151,Budget,Budget +531913,Budget,Budget +531912,Budget,Budget +529021,Budget,Budget +529016,Budget,Budget +528999,Budget,Budget +513497,Budget,Budget +513496,Education,Education +513495,Education,Education +462897,Education,Education +462896,Education,Education +457736,Education,Education +456160,Education,Education +456159,Education,Education +456158,Education,Education +456157,Education,Education +456156,Education,Education +450307,Official Languages,Official Languages +448157,Climate,Climate +456243,Energy,Energy +456243,Environment,Environment +456243,Government Procurement,Government Procurement +448876,Small Business,Small Business +448332,Employment and Training,Employment and Training +448332,Regional Development,Regional Development +448880,Budget,Budget +448876,Infrastructure,Infrastructure +448879,Economic Development,Economic Development +450448,Labour,Labour +448876,Government Procurement,Government Procurement +447293,Housing,Housing +450875,Fisheries,Fisheries +445976,Economic Development,Economic Development +445976,Employment and Training,Employment and Training +445979,Economic Development,Economic Development +445979,Employment and Training,Employment and Training +445980,Economic Development,Economic Development +445980,Employment and Training,Employment and Training +454893,Economic Development,Economic Development +454891,Employment and Training,Employment and Training +445982,Economic Development,Economic Development +459738,Employment and Training,Employment and Training +454891,Economic Development,Economic Development +445983,Employment and Training,Employment and Training +445984,Economic Development,Economic Development +451963,Employment and Training,Employment and Training +445985,Employment and Training,Employment and Training +445985,Economic Development,Economic Development +465121,Economic Development,Economic Development +459969,Small Business,Small Business +449038,Environment,Environment +449930,Environment,Environment +450939,Health,Health +450939,Housing,Housing +449932,Environment,Environment +446023,Climate,Climate +446023,Environment,Environment +446023,International Development,International Development +458972,Industry,Industry +458972,International Trade,International Trade +479222,Employment and Training,Employment and Training +458972,Economic Development,Economic Development +446034,Health,Health +453055,Environment,Environment +453055,Internal Trade,Internal Trade +446042,Education,Education +493418,Government Procurement,Government Procurement +456310,Climate,Climate +456310,Economic Development,Economic Development +456310,Environment,Environment +456310,Industry,Industry +456310,Transportation,Transportation +446076,Infrastructure,Infrastructure +446080,Internal Trade,Internal Trade +450577,International Trade,International Trade +448781,International Trade,International Trade +486640,Education,Education +453757,Environment,Environment +446231,Health,Health +448303,Budget,Budget +448303,Health,Health +446134,Internal Trade,Internal Trade +446134,Environment,Environment +446160,Environment,Environment +446424,Infrastructure,Infrastructure +456767,Regional Development,Regional Development +456767,Housing,Housing +456767,Infrastructure,Infrastructure +456767,Municipalities,Municipalities +465301,Agriculture,Agriculture +465301,Consumer Issues,Consumer Issues +465301,International Trade,International Trade +446549,Infrastructure,Infrastructure +446550,Taxation and Finance,Taxation and Finance +449237,Agriculture,Agriculture +449237,Economic Development,Economic Development +449237,Energy,Energy +449237,Environment,Environment +449237,Industry,Industry +525377,Infrastructure,Infrastructure +449237,International Trade,International Trade +449237,Municipalities,Municipalities +508255,Regional Development,Regional Development +508243,Transportation,Transportation +494102,Economic Development,Economic Development +494102,Industry,Industry +481423,Immigration,Immigration +487397,Infrastructure,Infrastructure +452045,Labour,Labour +487395,Education,Education +452045,Energy,Energy +452045,Regional Development,Regional Development +487397,Employment and Training,Employment and Training +452045,Budget,Budget +452045,Environment,Environment +452045,Research and Development,Research and Development +449731,Environment,Environment +449144,Economic Development,Economic Development +449144,Environment,Environment +464793,Employment and Training,Employment and Training +511573,Intellectual Property,Intellectual Property +529839,Security,Security +538382,Small Business,Small Business +468004,Environment,Environment +448719,Industry,Industry +484694,Economic Development,Economic Development +529836,Labour,Labour +499775,Consumer Issues,Consumer Issues +464787,Government Procurement,Government Procurement +491871,Taxation and Finance,Taxation and Finance +479609,Budget,Budget +454803,Transportation,Transportation +463016,Industry,Industry +464790,Regional Development,Regional Development +481980,Tourism,Tourism +499778,Health,Health +464790,Environment,Environment +464790,Economic Development,Economic Development +502460,International Trade,International Trade +468001,Energy,Energy +468000,Consumer Issues,Consumer Issues +502460,Regional Development,Regional Development +502460,Employment and Training,Employment and Training +468001,Environment,Environment +467999,Industry,Industry +472441,Economic Development,Economic Development +450970,Employment and Training,Employment and Training +527680,Industry,Industry +472441,Labour,Labour +448410,Economic Development,Economic Development +448410,Industry,Industry +448410,Mining,Mining +466547,Intellectual Property,Intellectual Property +466547,Research and Development,Research and Development +446385,Economic Development,Economic Development +446404,Health,Health +461992,Health,Health +461992,Justice and Law Enforcement,Justice and Law Enforcement +446418,International Relations,International Relations +446419,International Relations,International Relations +512505,Taxation and Finance,Taxation and Finance +449365,Research and Development,Research and Development +446447,Health,Health +452794,Economic Development,Economic Development +452794,Industry,Industry +452798,International Relations,International Relations +452794,International Trade,International Trade +452798,Justice and Law Enforcement,Justice and Law Enforcement +452795,Taxation and Finance,Taxation and Finance +446446,Budget,Budget +528938,Budget,Budget +521209,Health,Health +446459,Health,Health +458002,Research and Development,Research and Development +458002,Industry,Industry +538551,Consumer Issues,Consumer Issues +538551,Industry,Industry +518342,Transportation,Transportation +473020,Infrastructure,Infrastructure +449035,Economic Development,Economic Development +449035,Environment,Environment +446537,Health,Health +446577,Small Business,Small Business +458815,Health,Health +459598,Security,Security +446573,Employment and Training,Employment and Training +446760,Health,Health +446759,Taxation and Finance,Taxation and Finance +517016,Fisheries,Fisheries +448942,Environment,Environment +452826,Government Procurement,Government Procurement +461956,International Relations,International Relations +446600,Energy,Energy +446601,Energy,Energy +446619,Research and Development,Research and Development +465214,Economic Development,Economic Development +459972,Small Business,Small Business +449276,Economic Development,Economic Development +449270,Industry,Industry +449276,Environment,Environment +449276,Energy,Energy +454813,Research and Development,Research and Development +464798,Defence,Defence +454813,Industry,Industry +477665,Security,Security +508495,Budget,Budget +470512,Government Procurement,Government Procurement +450879,Privacy and Access to Information,Privacy and Access to Information +455639,Agriculture,Agriculture +456460,Energy,Energy +456460,Infrastructure,Infrastructure +496448,Economic Development,Economic Development +449533,Internal Trade,Internal Trade +449533,Employment and Training,Employment and Training +449533,Labour,Labour +449533,Industry,Industry +449533,Immigration,Immigration +449533,Consumer Issues,Consumer Issues +449533,Government Procurement,Government Procurement +453507,Research and Development,Research and Development +454675,Environment,Environment +448743,Economic Development,Economic Development +454675,Agriculture,Agriculture +478397,Health,Health +449043,Internal Trade,Internal Trade +500040,Budget,Budget +517999,Education,Education +525232,Health,Health +520225,Justice and Law Enforcement,Justice and Law Enforcement +449145,Economic Development,Economic Development +449145,Housing,Housing +449145,Budget,Budget +449145,Taxation and Finance,Taxation and Finance +493846,Consumer Issues,Consumer Issues +447764,International Trade,International Trade +446982,Small Business,Small Business +453183,Infrastructure,Infrastructure +515164,Housing,Housing +454672,Transportation,Transportation +451931,Economic Development,Economic Development +451188,Budget,Budget +451188,Taxation and Finance,Taxation and Finance +451188,Small Business,Small Business +456155,Education,Education +456154,Education,Education +456149,Education,Education +452175,Education,Education +452170,Education,Education +452167,Education,Education +452166,Education,Education +452160,Education,Education +450285,Education,Education +544235,Education,Education +544233,Education,Education +541771,Education,Education +541769,Education,Education +540158,Education,Education +538408,Education,Education +535964,Education,Education +531913,Education,Education +531912,Education,Education +531376,Education,Education +529021,Education,Education +529016,Education,Education +528999,Education,Education +528996,Education,Education +528980,Education,Education +525236,Education,Education +525234,Education,Education +525233,Education,Education +525232,Education,Education +523403,Education,Education +520228,Education,Education +518001,Education,Education +523399,Health,Health +523396,Health,Health +523394,Health,Health +520228,Health,Health +520227,Health,Health +520226,Health,Health +520223,Health,Health +520221,Health,Health +520218,Health,Health +518001,Health,Health +517999,Health,Health +517997,Health,Health +517989,Health,Health +517956,Health,Health +517955,Health,Health +515857,Health,Health +515851,Health,Health +515850,Health,Health +515847,Health,Health +515845,Health,Health +515844,Health,Health +515843,Health,Health +514278,Health,Health +513496,Health,Health +511439,Health,Health +511437,Health,Health +511434,Health,Health +511432,Health,Health +508914,Health,Health +506058,Health,Health +506057,Health,Health +506056,Health,Health +506055,Health,Health +499638,Health,Health +499633,Health,Health +499629,Health,Health +499622,Health,Health +496333,Health,Health +491802,Health,Health +491800,Health,Health +487923,Health,Health +487919,Health,Health +487917,Health,Health +485413,Health,Health +485411,Health,Health +485409,Health,Health +485406,Health,Health +485403,Health,Health +483367,Health,Health +483366,Health,Health +483364,Health,Health +483363,Health,Health +483361,Health,Health +483360,Health,Health +483359,Health,Health +483358,Health,Health +483357,Health,Health +483356,Health,Health +483355,Health,Health +483354,Health,Health +483352,Health,Health +483348,Health,Health +483343,Health,Health +482554,Health,Health +482553,Health,Health +482552,Health,Health +482551,Health,Health +482550,Health,Health +482549,Health,Health +482548,Health,Health +462897,Health,Health +462896,Health,Health +457736,Health,Health +456160,Health,Health +456159,Health,Health +456158,Health,Health +456157,Health,Health +456156,Health,Health +456155,Health,Health +456154,Health,Health +456149,Health,Health +452175,Health,Health +452170,Health,Health +452167,Health,Health +452166,Health,Health +452160,Health,Health +450285,Health,Health +544236,Health,Health +544233,Health,Health +541771,Health,Health +541769,Health,Health +540158,Health,Health +540151,Health,Health +540141,Health,Health +538408,Health,Health +535964,Health,Health +535963,Health,Health +531914,Health,Health +531913,Health,Health +531912,Health,Health +531376,Health,Health +529021,Health,Health +529016,Health,Health +528999,Health,Health +528996,Health,Health +528980,Health,Health +525236,Health,Health +525234,Health,Health +525233,Health,Health +462897,Justice and Law Enforcement,Justice and Law Enforcement +456154,Justice and Law Enforcement,Justice and Law Enforcement +531926,Justice and Law Enforcement,Justice and Law Enforcement +531912,Justice and Law Enforcement,Justice and Law Enforcement +449137,Economic Development,Economic Development +449137,Budget,Budget +492509,Consumer Issues,Consumer Issues +489127,Consumer Issues,Consumer Issues +463865,Consumer Issues,Consumer Issues +446899,Consumer Issues,Consumer Issues +518572,Consumer Issues,Consumer Issues +507116,Consumer Issues,Consumer Issues +507115,Consumer Issues,Consumer Issues +506187,Consumer Issues,Consumer Issues +501025,Consumer Issues,Consumer Issues +501022,Consumer Issues,Consumer Issues +496500,Consumer Issues,Consumer Issues +495282,Consumer Issues,Consumer Issues +494527,Consumer Issues,Consumer Issues +447754,International Trade,International Trade +447750,International Trade,International Trade +449923,International Trade,International Trade +449920,International Trade,International Trade +449917,International Trade,International Trade +449908,International Trade,International Trade +449907,International Trade,International Trade +449904,International Trade,International Trade +449902,International Trade,International Trade +449899,International Trade,International Trade +449897,International Trade,International Trade +447768,International Trade,International Trade +446988,Infrastructure,Infrastructure +515163,Housing,Housing +515161,Housing,Housing +515165,Housing,Housing +452514,Transportation,Transportation +451186,Budget,Budget +451186,Taxation and Finance,Taxation and Finance +451186,Small Business,Small Business +450401,Regional Development,Regional Development +448839,Sports,Sports +448839,Infrastructure,Infrastructure +456273,Health,Health +456273,International Trade,International Trade +465079,Budget,Budget +465077,Budget,Budget +447255,Budget,Budget +489158,Budget,Budget +489157,Budget,Budget +465375,Budget,Budget +465085,Budget,Budget +465084,Budget,Budget +465083,Budget,Budget +465082,Budget,Budget +465081,Budget,Budget +465080,Budget,Budget +465076,Budget,Budget +459453,Budget,Budget +459283,Budget,Budget +447258,Budget,Budget +521523,Budget,Budget +521521,Budget,Budget +449873,Government Procurement,Government Procurement +453145,Economic Development,Economic Development +453145,Industry,Industry +453145,Research and Development,Research and Development +453145,Small Business,Small Business +509124,Economic Development,Economic Development +456576,Economic Development,Economic Development +543834,Economic Development,Economic Development +541081,Economic Development,Economic Development +541080,Economic Development,Economic Development +540083,Economic Development,Economic Development +540081,Economic Development,Economic Development +540080,Economic Development,Economic Development +540078,Economic Development,Economic Development +540077,Economic Development,Economic Development +537268,Economic Development,Economic Development +537267,Economic Development,Economic Development +537266,Economic Development,Economic Development +537265,Economic Development,Economic Development +537263,Economic Development,Economic Development +533836,Economic Development,Economic Development +531322,Economic Development,Economic Development +527883,Economic Development,Economic Development +527882,Economic Development,Economic Development +527880,Economic Development,Economic Development +527878,Economic Development,Economic Development +527874,Economic Development,Economic Development +524556,Economic Development,Economic Development +524555,Economic Development,Economic Development +524554,Economic Development,Economic Development +524525,Economic Development,Economic Development +524523,Economic Development,Economic Development +524519,Economic Development,Economic Development +524517,Economic Development,Economic Development +524516,Economic Development,Economic Development +524512,Economic Development,Economic Development +522002,Economic Development,Economic Development +521733,Economic Development,Economic Development +521732,Economic Development,Economic Development +521729,Economic Development,Economic Development +521728,Economic Development,Economic Development +521727,Economic Development,Economic Development +519632,Economic Development,Economic Development +519630,Economic Development,Economic Development +519629,Economic Development,Economic Development +519628,Economic Development,Economic Development +517525,Economic Development,Economic Development +516944,Economic Development,Economic Development +516942,Economic Development,Economic Development +516940,Economic Development,Economic Development +516939,Economic Development,Economic Development +516938,Economic Development,Economic Development +516936,Economic Development,Economic Development +516933,Economic Development,Economic Development +516932,Economic Development,Economic Development +516931,Economic Development,Economic Development +516930,Economic Development,Economic Development +514517,Economic Development,Economic Development +513902,Economic Development,Economic Development +511350,Economic Development,Economic Development +509376,Economic Development,Economic Development +509203,Economic Development,Economic Development +509202,Economic Development,Economic Development +509201,Economic Development,Economic Development +509198,Economic Development,Economic Development +509197,Economic Development,Economic Development +509137,Economic Development,Economic Development +509132,Economic Development,Economic Development +509131,Economic Development,Economic Development +509128,Economic Development,Economic Development +509127,Economic Development,Economic Development +509126,Economic Development,Economic Development +509124,Education,Education +456576,Education,Education +543834,Education,Education +541081,Education,Education +541080,Education,Education +540083,Education,Education +540081,Education,Education +540080,Education,Education +540078,Education,Education +540077,Education,Education +537268,Education,Education +537267,Education,Education +537266,Education,Education +537265,Education,Education +537263,Education,Education +533836,Education,Education +531322,Education,Education +527883,Education,Education +527882,Education,Education +527880,Education,Education +527878,Education,Education +527874,Education,Education +524556,Education,Education +524555,Education,Education +524554,Education,Education +524525,Education,Education +524523,Education,Education +524519,Education,Education +524516,Education,Education +524512,Education,Education +522002,Education,Education +521733,Education,Education +521732,Education,Education +521728,Education,Education +521727,Education,Education +519632,Education,Education +519630,Education,Education +519629,Education,Education +519628,Education,Education +517525,Education,Education +516944,Education,Education +516942,Education,Education +516940,Education,Education +516939,Education,Education +516938,Education,Education +516936,Education,Education +516933,Education,Education +516932,Education,Education +516931,Education,Education +516930,Education,Education +514517,Education,Education +513902,Education,Education +509376,Education,Education +509203,Education,Education +509202,Education,Education +509201,Education,Education +509198,Education,Education +509197,Education,Education +509137,Education,Education +509132,Education,Education +509131,Education,Education +509127,Education,Education +509126,Education,Education +524516,Employment and Training,Employment and Training +524512,Employment and Training,Employment and Training +522002,Employment and Training,Employment and Training +521733,Employment and Training,Employment and Training +521732,Employment and Training,Employment and Training +521728,Employment and Training,Employment and Training +521727,Employment and Training,Employment and Training +519632,Employment and Training,Employment and Training +519630,Employment and Training,Employment and Training +519629,Employment and Training,Employment and Training +519628,Employment and Training,Employment and Training +517525,Employment and Training,Employment and Training +516944,Employment and Training,Employment and Training +516942,Employment and Training,Employment and Training +516940,Employment and Training,Employment and Training +516939,Employment and Training,Employment and Training +516938,Employment and Training,Employment and Training +516936,Employment and Training,Employment and Training +516933,Employment and Training,Employment and Training +516932,Employment and Training,Employment and Training +516931,Employment and Training,Employment and Training +516930,Employment and Training,Employment and Training +514517,Employment and Training,Employment and Training +509376,Employment and Training,Employment and Training +509203,Employment and Training,Employment and Training +509202,Employment and Training,Employment and Training +509201,Employment and Training,Employment and Training +509198,Employment and Training,Employment and Training +509197,Employment and Training,Employment and Training +509137,Employment and Training,Employment and Training +509132,Employment and Training,Employment and Training +509131,Employment and Training,Employment and Training +509128,Employment and Training,Employment and Training +509127,Employment and Training,Employment and Training +509126,Employment and Training,Employment and Training +509125,Employment and Training,Employment and Training +509124,Employment and Training,Employment and Training +456576,Employment and Training,Employment and Training +543834,Employment and Training,Employment and Training +541081,Employment and Training,Employment and Training +541080,Employment and Training,Employment and Training +540083,Employment and Training,Employment and Training +540081,Employment and Training,Employment and Training +540080,Employment and Training,Employment and Training +540078,Employment and Training,Employment and Training +540077,Employment and Training,Employment and Training +537268,Employment and Training,Employment and Training +537267,Employment and Training,Employment and Training +537266,Employment and Training,Employment and Training +537265,Employment and Training,Employment and Training +537263,Employment and Training,Employment and Training +533836,Employment and Training,Employment and Training +531322,Employment and Training,Employment and Training +527883,Employment and Training,Employment and Training +527882,Employment and Training,Employment and Training +527880,Employment and Training,Employment and Training +527878,Employment and Training,Employment and Training +527874,Employment and Training,Employment and Training +524556,Employment and Training,Employment and Training +524555,Employment and Training,Employment and Training +524554,Employment and Training,Employment and Training +524525,Employment and Training,Employment and Training +524523,Employment and Training,Employment and Training +524519,Employment and Training,Employment and Training +513902,Health,Health +511350,Health,Health +509203,Health,Health +509202,Health,Health +509201,Health,Health +509131,Health,Health +509126,Health,Health +543834,Health,Health +541081,Health,Health +541080,Health,Health +540083,Health,Health +540081,Health,Health +540080,Health,Health +540078,Health,Health +540077,Health,Health +537268,Health,Health +537267,Health,Health +537266,Health,Health +537265,Health,Health +537263,Health,Health +533836,Health,Health +531322,Health,Health +527883,Health,Health +527882,Health,Health +527880,Health,Health +527878,Health,Health +527874,Health,Health +524556,Health,Health +524555,Health,Health +524554,Health,Health +524525,Health,Health +524523,Health,Health +524519,Health,Health +524517,Health,Health +524516,Health,Health +524512,Health,Health +522002,Health,Health +521733,Health,Health +521732,Health,Health +521729,Health,Health +521728,Health,Health +521727,Health,Health +519632,Health,Health +519630,Health,Health +519629,Health,Health +519628,Health,Health +517525,Health,Health +516944,Health,Health +516942,Health,Health +516940,Health,Health +516939,Health,Health +516938,Health,Health +516936,Health,Health +516933,Health,Health +516932,Health,Health +516931,Health,Health +516930,Health,Health +513902,Research and Development,Research and Development +511350,Research and Development,Research and Development +509376,Research and Development,Research and Development +509203,Research and Development,Research and Development +509202,Research and Development,Research and Development +509201,Research and Development,Research and Development +509198,Research and Development,Research and Development +509197,Research and Development,Research and Development +509137,Research and Development,Research and Development +509132,Research and Development,Research and Development +509131,Research and Development,Research and Development +509128,Research and Development,Research and Development +509127,Research and Development,Research and Development +509126,Research and Development,Research and Development +509125,Research and Development,Research and Development +509124,Research and Development,Research and Development +456576,Research and Development,Research and Development +543834,Research and Development,Research and Development +541081,Research and Development,Research and Development +541080,Research and Development,Research and Development +540083,Research and Development,Research and Development +540081,Research and Development,Research and Development +540080,Research and Development,Research and Development +540078,Research and Development,Research and Development +540077,Research and Development,Research and Development +537268,Research and Development,Research and Development +537267,Research and Development,Research and Development +537266,Research and Development,Research and Development +537265,Research and Development,Research and Development +537263,Research and Development,Research and Development +533836,Research and Development,Research and Development +531322,Research and Development,Research and Development +527883,Research and Development,Research and Development +527882,Research and Development,Research and Development +527880,Research and Development,Research and Development +527878,Research and Development,Research and Development +527874,Research and Development,Research and Development +524556,Research and Development,Research and Development +524555,Research and Development,Research and Development +524554,Research and Development,Research and Development +524525,Research and Development,Research and Development +524523,Research and Development,Research and Development +524519,Research and Development,Research and Development +524517,Research and Development,Research and Development +524516,Research and Development,Research and Development +524512,Research and Development,Research and Development +522002,Research and Development,Research and Development +521733,Research and Development,Research and Development +521732,Research and Development,Research and Development +521729,Research and Development,Research and Development +521728,Research and Development,Research and Development +521727,Research and Development,Research and Development +519632,Research and Development,Research and Development +519630,Research and Development,Research and Development +519629,Research and Development,Research and Development +519628,Research and Development,Research and Development +517525,Research and Development,Research and Development +516944,Research and Development,Research and Development +516942,Research and Development,Research and Development +516940,Research and Development,Research and Development +516939,Research and Development,Research and Development +516938,Research and Development,Research and Development +516936,Research and Development,Research and Development +516933,Research and Development,Research and Development +516932,Research and Development,Research and Development +516931,Research and Development,Research and Development +516930,Research and Development,Research and Development +473011,Financial Institutions,Financial Institutions +471150,Financial Institutions,Financial Institutions +471150,Taxation and Finance,Taxation and Finance +453913,Agriculture,Agriculture +453913,Climate,Climate +453913,Environment,Environment +453913,Consumer Issues,Consumer Issues +533710,Infrastructure,Infrastructure +533709,Infrastructure,Infrastructure +449416,Infrastructure,Infrastructure +449409,Infrastructure,Infrastructure +463593,Employment and Training,Employment and Training +448868,Employment and Training,Employment and Training +447763,Employment and Training,Employment and Training +470715,Economic Development,Economic Development +470708,Economic Development,Economic Development +457498,Economic Development,Economic Development +455330,Economic Development,Economic Development +447789,Economic Development,Economic Development +483295,Economic Development,Economic Development +483294,Economic Development,Economic Development +483293,Economic Development,Economic Development +483292,Economic Development,Economic Development +483291,Economic Development,Economic Development +483290,Economic Development,Economic Development +483289,Economic Development,Economic Development +483287,Economic Development,Economic Development +483286,Economic Development,Economic Development +483285,Economic Development,Economic Development +480452,Economic Development,Economic Development +474865,Economic Development,Economic Development +474858,Economic Development,Economic Development +472691,Economic Development,Economic Development +470738,Economic Development,Economic Development +470735,Economic Development,Economic Development +470734,Economic Development,Economic Development +470724,Economic Development,Economic Development +470723,Economic Development,Economic Development +470722,Economic Development,Economic Development +470719,Economic Development,Economic Development +503238,Taxation and Finance,Taxation and Finance +503237,Taxation and Finance,Taxation and Finance +447995,Taxation and Finance,Taxation and Finance +447986,Taxation and Finance,Taxation and Finance +447967,Taxation and Finance,Taxation and Finance +447919,Taxation and Finance,Taxation and Finance +526795,Taxation and Finance,Taxation and Finance +526789,Taxation and Finance,Taxation and Finance +526788,Taxation and Finance,Taxation and Finance +526787,Taxation and Finance,Taxation and Finance +526786,Taxation and Finance,Taxation and Finance +526785,Taxation and Finance,Taxation and Finance +526784,Taxation and Finance,Taxation and Finance +503270,Taxation and Finance,Taxation and Finance +503269,Taxation and Finance,Taxation and Finance +503268,Taxation and Finance,Taxation and Finance +503267,Taxation and Finance,Taxation and Finance +503266,Taxation and Finance,Taxation and Finance +503265,Taxation and Finance,Taxation and Finance +503264,Taxation and Finance,Taxation and Finance +503262,Taxation and Finance,Taxation and Finance +503261,Taxation and Finance,Taxation and Finance +503260,Taxation and Finance,Taxation and Finance +503259,Taxation and Finance,Taxation and Finance +503258,Taxation and Finance,Taxation and Finance +503257,Taxation and Finance,Taxation and Finance +503256,Taxation and Finance,Taxation and Finance +503255,Taxation and Finance,Taxation and Finance +503254,Taxation and Finance,Taxation and Finance +503253,Taxation and Finance,Taxation and Finance +503251,Taxation and Finance,Taxation and Finance +503250,Taxation and Finance,Taxation and Finance +503249,Taxation and Finance,Taxation and Finance +503248,Taxation and Finance,Taxation and Finance +503246,Taxation and Finance,Taxation and Finance +503245,Taxation and Finance,Taxation and Finance +503244,Taxation and Finance,Taxation and Finance +503243,Taxation and Finance,Taxation and Finance +503242,Taxation and Finance,Taxation and Finance +503241,Taxation and Finance,Taxation and Finance +503240,Taxation and Finance,Taxation and Finance +458774,Environment,Environment +458764,Environment,Environment +463974,Environment,Environment +463969,Environment,Environment +492089,Industry,Industry +472061,Industry,Industry +459625,Elections,Elections +531969,Privacy and Access to Information,Privacy and Access to Information +484640,Economic Development,Economic Development +484636,Economic Development,Economic Development +480187,Health,Health +477739,Health,Health +475864,Health,Health +475398,Health,Health +475391,Health,Health +473138,Health,Health +473136,Health,Health +473130,Health,Health +467981,Health,Health +467980,Health,Health +467979,Health,Health +448422,Infrastructure,Infrastructure +448421,Infrastructure,Infrastructure +448310,Industry,Industry +448306,Industry,Industry +468642,Budget,Budget +468640,Budget,Budget +471210,Budget,Budget +473578,Climate,Climate +468642,Climate,Climate +468640,Energy,Energy +464887,Energy,Energy +475987,Energy,Energy +475986,Energy,Energy +473582,Energy,Energy +473579,Energy,Energy +473578,Energy,Energy +473576,Energy,Energy +471210,Energy,Energy +471208,Energy,Energy +468640,Environment,Environment +464884,Environment,Environment +475987,Environment,Environment +475986,Infrastructure,Infrastructure +473582,Infrastructure,Infrastructure +449718,Energy,Energy +458744,Infrastructure,Infrastructure +458743,Infrastructure,Infrastructure +449715,Infrastructure,Infrastructure +454955,Economic Development,Economic Development +454952,Economic Development,Economic Development +467308,Economic Development,Economic Development +454955,Health,Health +454952,Health,Health +467308,Health,Health +453046,Economic Development,Economic Development +451755,Industry,Industry +451760,Labour,Labour +451755,Labour,Labour +466617,Labour,Labour +466616,Labour,Labour +466614,Labour,Labour +466613,Labour,Labour +466611,Labour,Labour +453046,Labour,Labour +451779,Labour,Labour +451775,Labour,Labour +455670,Labour,Labour +455667,Labour,Labour +455667,Employment and Training,Employment and Training +449602,Employment and Training,Employment and Training +456843,Employment and Training,Employment and Training +455676,Employment and Training,Employment and Training +455679,Employment and Training,Employment and Training +449601,Employment and Training,Employment and Training +456845,Employment and Training,Employment and Training +455687,Employment and Training,Employment and Training +501982,Economic Development,Economic Development +539802,Economic Development,Economic Development +515336,Transportation,Transportation +501982,Transportation,Transportation +544089,Transportation,Transportation +539802,Transportation,Transportation +532142,Transportation,Transportation +449646,Economic Development,Economic Development +451454,Health,Health +451453,Health,Health +456509,Health,Health +493923,Immigration,Immigration +465610,Immigration,Immigration +449268,Immigration,Immigration +541017,Immigration,Immigration +540756,Immigration,Immigration +540755,Immigration,Immigration +448457,Budget,Budget +544102,Health,Health +450939,Infrastructure,Infrastructure +448481,Infrastructure,Infrastructure +448975,Health,Health +448974,Health,Health +465593,Health,Health +465588,Health,Health +465587,Health,Health +465585,Health,Health +451577,Health,Health +448977,Health,Health +451231,International Trade,International Trade +486499,Privacy and Access to Information,Privacy and Access to Information +486498,Privacy and Access to Information,Privacy and Access to Information +478323,Privacy and Access to Information,Privacy and Access to Information +464152,Privacy and Access to Information,Privacy and Access to Information +459831,Privacy and Access to Information,Privacy and Access to Information +456902,Privacy and Access to Information,Privacy and Access to Information +453447,Privacy and Access to Information,Privacy and Access to Information +453446,Privacy and Access to Information,Privacy and Access to Information +541439,Privacy and Access to Information,Privacy and Access to Information +541437,Privacy and Access to Information,Privacy and Access to Information +541353,Privacy and Access to Information,Privacy and Access to Information +534953,Privacy and Access to Information,Privacy and Access to Information +534926,Privacy and Access to Information,Privacy and Access to Information +531123,Privacy and Access to Information,Privacy and Access to Information +531120,Privacy and Access to Information,Privacy and Access to Information +522292,Privacy and Access to Information,Privacy and Access to Information +518995,Privacy and Access to Information,Privacy and Access to Information +518964,Privacy and Access to Information,Privacy and Access to Information +518958,Privacy and Access to Information,Privacy and Access to Information +518956,Privacy and Access to Information,Privacy and Access to Information +515552,Privacy and Access to Information,Privacy and Access to Information +515551,Privacy and Access to Information,Privacy and Access to Information +513331,Privacy and Access to Information,Privacy and Access to Information +499564,Privacy and Access to Information,Privacy and Access to Information +528194,Security,Security +515549,Security,Security +532668,Security,Security +513056,Government Procurement,Government Procurement +458625,Budget,Budget +451410,Budget,Budget +516135,Budget,Budget +501018,Budget,Budget +482763,Budget,Budget +463215,Budget,Budget +463214,Budget,Budget +463096,Budget,Budget +462730,Budget,Budget +449049,Economic Development,Economic Development +449040,Economic Development,Economic Development +480850,Economic Development,Economic Development +474031,Economic Development,Economic Development +473074,Economic Development,Economic Development +463215,Economic Development,Economic Development +458625,Economic Development,Economic Development +458621,Economic Development,Economic Development +458625,Forestry,Forestry +458621,Forestry,Forestry +451410,Forestry,Forestry +449089,Forestry,Forestry +449055,Forestry,Forestry +449053,Forestry,Forestry +449050,Forestry,Forestry +449048,Forestry,Forestry +463280,Forestry,Forestry +463280,Small Business,Small Business +458625,Small Business,Small Business +457970,Taxation and Finance,Taxation and Finance +451410,Taxation and Finance,Taxation and Finance +516135,Taxation and Finance,Taxation and Finance +500150,Taxation and Finance,Taxation and Finance +488535,Taxation and Finance,Taxation and Finance +486221,Taxation and Finance,Taxation and Finance +465235,Taxation and Finance,Taxation and Finance +463280,Taxation and Finance,Taxation and Finance +463215,Taxation and Finance,Taxation and Finance +463214,Taxation and Finance,Taxation and Finance +463096,Taxation and Finance,Taxation and Finance +462730,Taxation and Finance,Taxation and Finance +461868,Taxation and Finance,Taxation and Finance +461031,Taxation and Finance,Taxation and Finance +460290,Taxation and Finance,Taxation and Finance +458625,Taxation and Finance,Taxation and Finance +452675,Government Procurement,Government Procurement +452674,Government Procurement,Government Procurement +452675,Intellectual Property,Intellectual Property +452674,Intellectual Property,Intellectual Property +452675,Research and Development,Research and Development +452674,Research and Development,Research and Development +456627,Agriculture,Agriculture +468745,Health,Health +463442,Consumer Issues,Consumer Issues +456775,Consumer Issues,Consumer Issues +463542,Environment,Environment +450682,Environment,Environment +518446,Industry,Industry +498352,Industry,Industry +472315,Industry,Industry +463543,Industry,Industry +463542,Industry,Industry +463442,Industry,Industry +456775,Industry,Industry +456651,Industry,Industry +450733,Industry,Industry +450732,Industry,Industry +450683,International Trade,International Trade +450682,International Trade,International Trade +498352,International Trade,International Trade +463543,International Trade,International Trade +463442,International Trade,International Trade +456775,International Trade,International Trade +463442,Transportation,Transportation +456651,Transportation,Transportation +450732,Transportation,Transportation +450683,Transportation,Transportation +450682,Transportation,Transportation +518446,Transportation,Transportation +463543,Transportation,Transportation +467984,Health,Health +467983,Health,Health +480186,Health,Health +477750,Health,Health +475852,Health,Health +475368,Health,Health +475361,Health,Health +473150,Health,Health +473139,Health,Health +451777,Economic Development,Economic Development +449362,Economic Development,Economic Development +451780,Employment and Training,Employment and Training +451777,Small Business,Small Business +449362,Small Business,Small Business +466953,Small Business,Small Business +459251,Small Business,Small Business +459249,Small Business,Small Business +458928,Small Business,Small Business +452138,Small Business,Small Business +452136,Small Business,Small Business +463427,Transportation,Transportation +455092,Immigration,Immigration +455090,Immigration,Immigration +455092,Internal Trade,Internal Trade +455090,Internal Trade,Internal Trade +455092,International Relations,International Relations +455090,International Relations,International Relations +451316,Consumer Issues,Consumer Issues +451316,International Trade,International Trade +449124,Health,Health +449123,Health,Health +449600,Taxation and Finance,Taxation and Finance +448644,Taxation and Finance,Taxation and Finance +456723,Taxation and Finance,Taxation and Finance +509980,Health,Health +509979,Health,Health +463025,Health,Health +462180,Health,Health +457997,Health,Health +450256,Health,Health +505566,Health,Health +505565,Health,Health +505564,Health,Health +505562,Health,Health +505560,Health,Health +505522,Health,Health +505521,Health,Health +505520,Health,Health +505519,Health,Health +505496,Health,Health +505494,Health,Health +505492,Health,Health +505491,Health,Health +505489,Health,Health +505488,Health,Health +505487,Health,Health +505486,Health,Health +505485,Health,Health +505484,Health,Health +505483,Health,Health +505482,Health,Health +505481,Health,Health +505480,Health,Health +505479,Health,Health +505478,Health,Health +505477,Health,Health +505476,Health,Health +505475,Health,Health +505474,Health,Health +505473,Health,Health +505472,Health,Health +505409,Health,Health +505408,Health,Health +505407,Health,Health +505406,Health,Health +505405,Health,Health +505404,Health,Health +505403,Health,Health +505402,Health,Health +505396,Health,Health +450367,Elections,Elections +448839,Regional Development,Regional Development +450401,Sports,Sports +448839,Economic Development,Economic Development +448839,Tourism,Tourism +450401,Infrastructure,Infrastructure +466285,Agriculture,Agriculture +466285,Health,Health +466285,International Trade,International Trade +449285,Environment,Environment +449285,Infrastructure,Infrastructure +449285,Industry,Industry +449285,Taxation and Finance,Taxation and Finance +449285,Energy,Energy +449285,Climate,Climate +449285,Research and Development,Research and Development +449285,International Development,International Development +449285,Economic Development,Economic Development +499140,Budget,Budget +521520,Budget,Budget +447259,Budget,Budget +447264,Research and Development,Research and Development +453577,Government Procurement,Government Procurement +449873,Economic Development,Economic Development +447277,Small Business,Small Business +485047,Labour,Labour +477320,Transportation,Transportation +453146,Economic Development,Economic Development +453146,Industry,Industry +453146,Research and Development,Research and Development +453146,Small Business,Small Business +447293,Taxation and Finance,Taxation and Finance +509125,Economic Development,Economic Development +509125,Education,Education +524517,Employment and Training,Employment and Training +514517,Health,Health +514517,Research and Development,Research and Development +447326,Health,Health +476744,Financial Institutions,Financial Institutions +473015,Taxation and Finance,Taxation and Finance +447446,Health,Health +454396,Taxation and Finance,Taxation and Finance +468584,Agriculture,Agriculture +469329,Agriculture,Agriculture +453913,Employment and Training,Employment and Training +469329,Transportation,Transportation +469329,Industry,Industry +469329,International Trade,International Trade +469329,Climate,Climate +453913,Energy,Energy +469329,Environment,Environment +469329,Consumer Issues,Consumer Issues +533712,Infrastructure,Infrastructure +449697,Employment and Training,Employment and Training +449697,Regional Development,Regional Development +449697,Small Business,Small Business +447576,Employment and Training,Employment and Training +447576,Small Business,Small Business +447717,Economic Development,Economic Development +447717,Industry,Industry +447717,Regional Development,Regional Development +523289,Employment and Training,Employment and Training +447767,Fisheries,Fisheries +470717,Economic Development,Economic Development +447852,Elections,Elections +503239,Taxation and Finance,Taxation and Finance +447945,Justice and Law Enforcement,Justice and Law Enforcement +447952,Security,Security +462544,Environment,Environment +493922,Industry,Industry +460965,Environment,Environment +460962,Environment,Environment +463454,Infrastructure,Infrastructure +463454,Industry,Industry +448118,Infrastructure,Infrastructure +448174,Elections,Elections +448220,Elections,Elections +448223,Elections,Elections +525375,Privacy and Access to Information,Privacy and Access to Information +491062,Economic Development,Economic Development +480188,Health,Health +448423,Infrastructure,Infrastructure +514896,Taxation and Finance,Taxation and Finance +477346,Infrastructure,Infrastructure +461326,Industry,Industry +486996,Consumer Issues,Consumer Issues +471520,Government Procurement,Government Procurement +471520,Health,Health +450911,Small Business,Small Business +471208,Budget,Budget +473579,Climate,Climate +468642,Energy,Energy +473579,Environment,Environment +475987,Infrastructure,Infrastructure +476011,Energy,Energy +476011,Infrastructure,Infrastructure +449720,Regional Development,Regional Development +449160,Consumer Issues,Consumer Issues +467916,Energy,Energy +467916,Infrastructure,Infrastructure +457020,Economic Development,Economic Development +457020,Health,Health +466608,Economic Development,Economic Development +453046,Industry,Industry +451771,Labour,Labour +448363,Infrastructure,Infrastructure +448363,Budget,Budget +448363,Economic Development,Economic Development +455676,Labour,Labour +456843,Infrastructure,Infrastructure +455670,Employment and Training,Employment and Training +455681,Employment and Training,Employment and Training +448366,Budget,Budget +515336,Economic Development,Economic Development +532141,Transportation,Transportation +501982,Municipalities,Municipalities +448369,Official Languages,Official Languages +449649,Employment and Training,Employment and Training +449649,Economic Development,Economic Development +449646,Environment,Environment +449646,Labour,Labour +476304,Taxation and Finance,Taxation and Finance +453803,Health,Health +540754,Immigration,Immigration +448459,Budget,Budget +450261,Education,Education +450261,Health,Health +460772,Infrastructure,Infrastructure +451577,Education,Education +448976,Health,Health +451291,International Trade,International Trade +528194,Economic Development,Economic Development +534954,Intellectual Property,Intellectual Property +488087,Privacy and Access to Information,Privacy and Access to Information +531127,Security,Security +513057,Government Procurement,Government Procurement +462115,Budget,Budget +451410,Economic Development,Economic Development +460290,Forestry,Forestry +478790,Small Business,Small Business +458621,Taxation and Finance,Taxation and Finance +452676,Government Procurement,Government Procurement +452676,Intellectual Property,Intellectual Property +452676,Research and Development,Research and Development +448598,Privacy and Access to Information,Privacy and Access to Information +468745,Agriculture,Agriculture +456627,Health,Health +463543,Consumer Issues,Consumer Issues +518446,Environment,Environment +450683,Industry,Industry +456651,International Trade,International Trade +463542,Transportation,Transportation +467985,Health,Health +451780,Economic Development,Economic Development +452136,Employment and Training,Employment and Training +451780,Small Business,Small Business +478002,Transportation,Transportation +455095,Immigration,Immigration +455095,Internal Trade,Internal Trade +455095,International Relations,International Relations +451319,Consumer Issues,Consumer Issues +451319,International Trade,International Trade +448597,Small Business,Small Business +449125,Health,Health +448643,Economic Development,Economic Development +450701,Taxation and Finance,Taxation and Finance +510596,Health,Health +452176,Tourism,Tourism +448663,Agriculture,Agriculture +448664,Transportation,Transportation +453936,Sports,Sports +468282,Budget,Budget +494669,Defence,Defence +453940,Sports,Sports +453190,Climate,Climate +453194,Economic Development,Economic Development +453194,Energy,Energy +453194,Environment,Environment +453194,Financial Institutions,Financial Institutions +453194,Industry,Industry +453194,Transportation,Transportation +458601,Taxation and Finance,Taxation and Finance +544579,Research and Development,Research and Development +454002,Education,Education +459912,Health,Health +454002,Budget,Budget +454005,Economic Development,Economic Development +457448,Research and Development,Research and Development +451872,Government Procurement,Government Procurement +454951,Intellectual Property,Intellectual Property +473955,Transportation,Transportation +473955,Industry,Industry +508813,Labour,Labour +480757,Economic Development,Economic Development +516840,Research and Development,Research and Development +453771,Taxation and Finance,Taxation and Finance +451997,Consumer Issues,Consumer Issues +451997,Housing,Housing +451991,Small Business,Small Business +452000,Financial Institutions,Financial Institutions +452000,Taxation and Finance,Taxation and Finance +451012,Economic Development,Economic Development +450916,Education,Education +450916,Health,Health +450402,Taxation and Finance,Taxation and Finance +451302,International Trade,International Trade +514328,Infrastructure,Infrastructure +496273,Municipalities,Municipalities +483269,Transportation,Transportation +450071,Infrastructure,Infrastructure +454951,Industry,Industry +451869,Small Business,Small Business +505394,Health,Health +505392,Health,Health +505391,Health,Health +505389,Health,Health +505388,Health,Health +505387,Health,Health +505386,Health,Health +505384,Health,Health +505383,Health,Health +505382,Health,Health +505381,Health,Health +505380,Health,Health +505378,Health,Health +505377,Health,Health +505376,Health,Health +505375,Health,Health +505373,Health,Health +505372,Health,Health +505371,Health,Health +505370,Health,Health +505369,Health,Health +505368,Health,Health +505367,Health,Health +505366,Health,Health +505365,Health,Health +505364,Health,Health +505362,Health,Health +505354,Health,Health +505353,Health,Health +505352,Health,Health +505351,Health,Health +505350,Health,Health +505349,Health,Health +505348,Health,Health +505347,Health,Health +505346,Health,Health +505345,Health,Health +505344,Health,Health +505343,Health,Health +505342,Health,Health +505341,Health,Health +505339,Health,Health +505338,Health,Health +505337,Health,Health +505336,Health,Health +505335,Health,Health +505334,Health,Health +505333,Health,Health +505332,Health,Health +505331,Health,Health +505330,Health,Health +505329,Health,Health +505328,Health,Health +505327,Health,Health +505326,Health,Health +505325,Health,Health +505324,Health,Health +505323,Health,Health +505322,Health,Health +505321,Health,Health +505025,Health,Health +505022,Health,Health +504911,Health,Health +504902,Health,Health +502289,Health,Health +493135,Health,Health +472294,Health,Health +509977,Health,Health +508756,Health,Health +508754,Health,Health +508751,Health,Health +508748,Health,Health +508747,Health,Health +508743,Health,Health +508741,Health,Health +508737,Health,Health +508732,Health,Health +508727,Health,Health +508720,Health,Health +508718,Health,Health +508717,Health,Health +508715,Health,Health +508713,Health,Health +508712,Health,Health +508711,Health,Health +508709,Health,Health +508708,Health,Health +508707,Health,Health +508356,Health,Health +508355,Health,Health +508354,Health,Health +508353,Health,Health +508352,Health,Health +508351,Health,Health +508350,Health,Health +508349,Health,Health +508348,Health,Health +508347,Health,Health +508346,Health,Health +508345,Health,Health +508344,Health,Health +508343,Health,Health +508342,Health,Health +508341,Health,Health +508340,Health,Health +508339,Health,Health +508338,Health,Health +508337,Health,Health +508336,Health,Health +508335,Health,Health +508333,Health,Health +508332,Health,Health +508331,Health,Health +508330,Health,Health +508329,Health,Health +508328,Health,Health +508327,Health,Health +508326,Health,Health +508325,Health,Health +508324,Health,Health +508323,Health,Health +508321,Health,Health +508320,Health,Health +508318,Health,Health +508314,Health,Health +508311,Health,Health +508307,Health,Health +508306,Health,Health +508303,Health,Health +508301,Health,Health +508300,Health,Health +508299,Health,Health +508297,Health,Health +508295,Health,Health +508293,Health,Health +508292,Health,Health +507704,Health,Health +507703,Health,Health +507702,Health,Health +507700,Health,Health +507699,Health,Health +507698,Health,Health +507697,Health,Health +507696,Health,Health +507695,Health,Health +507694,Health,Health +507692,Health,Health +507690,Health,Health +507689,Health,Health +507688,Health,Health +507687,Health,Health +507686,Health,Health +507685,Health,Health +507684,Health,Health +507644,Health,Health +507643,Health,Health +507641,Health,Health +507639,Health,Health +507638,Health,Health +507637,Health,Health +507634,Health,Health +507633,Health,Health +507631,Health,Health +507630,Health,Health +507629,Health,Health +507628,Health,Health +507627,Health,Health +507626,Health,Health +507624,Health,Health +507623,Health,Health +507622,Health,Health +507621,Health,Health +507620,Health,Health +507618,Health,Health +507617,Health,Health +507616,Health,Health +507615,Health,Health +507614,Health,Health +507612,Health,Health +507611,Health,Health +507610,Health,Health +507609,Health,Health +507608,Health,Health +507607,Health,Health +507606,Health,Health +507605,Health,Health +507604,Health,Health +507603,Health,Health +507602,Health,Health +505808,Health,Health +505807,Health,Health +505806,Health,Health +505804,Health,Health +505802,Health,Health +505801,Health,Health +505799,Health,Health +505798,Health,Health +505796,Health,Health +505794,Health,Health +505792,Health,Health +505791,Health,Health +505790,Health,Health +505789,Health,Health +505788,Health,Health +505787,Health,Health +505786,Health,Health +505785,Health,Health +505784,Health,Health +505783,Health,Health +505782,Health,Health +505781,Health,Health +505780,Health,Health +505778,Health,Health +505777,Health,Health +505776,Health,Health +505774,Health,Health +505773,Health,Health +505772,Health,Health +505768,Health,Health +505767,Health,Health +505766,Health,Health +505764,Health,Health +505763,Health,Health +505761,Health,Health +505760,Health,Health +505758,Health,Health +505756,Health,Health +505755,Health,Health +505749,Health,Health +505748,Health,Health +505746,Health,Health +505743,Health,Health +505742,Health,Health +505741,Health,Health +505739,Health,Health +505738,Health,Health +505736,Health,Health +505734,Health,Health +505732,Health,Health +505731,Health,Health +505728,Health,Health +505727,Health,Health +505725,Health,Health +505724,Health,Health +505722,Health,Health +505720,Health,Health +505719,Health,Health +505717,Health,Health +505716,Health,Health +505715,Health,Health +505713,Health,Health +505712,Health,Health +505711,Health,Health +505710,Health,Health +505709,Health,Health +505708,Health,Health +505707,Health,Health +505706,Health,Health +505705,Health,Health +505704,Health,Health +505703,Health,Health +505702,Health,Health +505701,Health,Health +505700,Health,Health +505699,Health,Health +505698,Health,Health +505697,Health,Health +505696,Health,Health +505695,Health,Health +505694,Health,Health +505693,Health,Health +505692,Health,Health +505691,Health,Health +505689,Health,Health +505687,Health,Health +505685,Health,Health +505684,Health,Health +505682,Health,Health +505681,Health,Health +505679,Health,Health +505678,Health,Health +505677,Health,Health +505674,Health,Health +505673,Health,Health +505639,Health,Health +505638,Health,Health +505637,Health,Health +505636,Health,Health +505635,Health,Health +505634,Health,Health +505633,Health,Health +505632,Health,Health +505631,Health,Health +505630,Health,Health +505629,Health,Health +505628,Health,Health +505627,Health,Health +505626,Health,Health +505625,Health,Health +505624,Health,Health +505623,Health,Health +505622,Health,Health +505621,Health,Health +505620,Health,Health +505619,Health,Health +505618,Health,Health +505617,Health,Health +505616,Health,Health +505615,Health,Health +505607,Health,Health +505606,Health,Health +505605,Health,Health +505604,Health,Health +505603,Health,Health +505602,Health,Health +505601,Health,Health +505600,Health,Health +505599,Health,Health +505598,Health,Health +505597,Health,Health +505596,Health,Health +505595,Health,Health +505594,Health,Health +505593,Health,Health +505592,Health,Health +505591,Health,Health +505590,Health,Health +505589,Health,Health +505588,Health,Health +505587,Health,Health +505586,Health,Health +505585,Health,Health +505580,Health,Health +505578,Health,Health +505577,Health,Health +505576,Health,Health +505575,Health,Health +505573,Health,Health +505572,Health,Health +505571,Health,Health +505570,Health,Health +505569,Health,Health +505568,Health,Health +505567,Health,Health +544723,Health,Health +539648,Health,Health +538756,Health,Health +538755,Health,Health +537073,Health,Health +536468,Health,Health +533434,Health,Health +531971,Health,Health +531970,Health,Health +527500,Health,Health +527499,Health,Health +524215,Health,Health +524214,Health,Health +524213,Health,Health +524212,Health,Health +524211,Health,Health +524210,Health,Health +524209,Health,Health +524208,Health,Health +524207,Health,Health +524206,Health,Health +524205,Health,Health +522776,Health,Health +522768,Health,Health +522764,Health,Health +522760,Health,Health +522755,Health,Health +522751,Health,Health +522748,Health,Health +522746,Health,Health +522744,Health,Health +520271,Health,Health +520270,Health,Health +518917,Health,Health +518763,Health,Health +518762,Health,Health +518275,Health,Health +518272,Health,Health +518107,Health,Health +518102,Health,Health +518095,Health,Health +518091,Health,Health +518087,Health,Health +518086,Health,Health +518085,Health,Health +518084,Health,Health +518083,Health,Health +518079,Health,Health +518077,Health,Health +518075,Health,Health +518074,Health,Health +518073,Health,Health +515862,Health,Health +515860,Health,Health +515855,Health,Health +515853,Health,Health +513163,Health,Health +513162,Health,Health +513160,Health,Health +513158,Health,Health +513157,Health,Health +513156,Health,Health +513155,Health,Health +513154,Health,Health +513153,Health,Health +513141,Health,Health +513140,Health,Health +513139,Health,Health +513137,Health,Health +513135,Health,Health +513133,Health,Health +513130,Health,Health +513128,Health,Health +513126,Health,Health +513123,Health,Health +513120,Health,Health +513118,Health,Health +513115,Health,Health +513112,Health,Health +511460,Health,Health +511456,Health,Health +511455,Health,Health +511454,Health,Health +511453,Health,Health +511451,Health,Health +511448,Health,Health +511423,Health,Health +511421,Health,Health +511420,Health,Health +511417,Health,Health +511416,Health,Health +511415,Health,Health +511414,Health,Health +511413,Health,Health +511412,Health,Health +511411,Health,Health +511409,Health,Health +511407,Health,Health +511406,Health,Health +511403,Health,Health +511401,Health,Health +511400,Health,Health +511397,Health,Health +511396,Health,Health +511393,Health,Health +511392,Health,Health +511390,Health,Health +511389,Health,Health +511388,Health,Health +511384,Health,Health +511383,Health,Health +511382,Health,Health +511380,Health,Health +511378,Health,Health +511377,Health,Health +511376,Health,Health +511375,Health,Health +511373,Health,Health +511372,Health,Health +511370,Health,Health +511369,Health,Health +511368,Health,Health +452098,Tourism,Tourism +448648,Tourism,Tourism +466952,Tourism,Tourism +466945,Tourism,Tourism +466941,Tourism,Tourism +462735,Tourism,Tourism +462698,Tourism,Tourism +462695,Tourism,Tourism +462692,Tourism,Tourism +462689,Tourism,Tourism +458666,Tourism,Tourism +452178,Tourism,Tourism +453935,Sports,Sports +453934,Sports,Sports +453956,Sports,Sports +453955,Sports,Sports +453954,Sports,Sports +453953,Sports,Sports +453951,Sports,Sports +453948,Sports,Sports +453947,Sports,Sports +448688,Budget,Budget +448686,Budget,Budget +453939,Sports,Sports +453937,Sports,Sports +453942,Sports,Sports +453941,Sports,Sports +456553,Climate,Climate +456552,Climate,Climate +453196,Climate,Climate +453194,Climate,Climate +453192,Climate,Climate +453192,Economic Development,Economic Development +453190,Economic Development,Economic Development +456553,Economic Development,Economic Development +456552,Economic Development,Economic Development +453196,Economic Development,Economic Development +453192,Energy,Energy +453190,Energy,Energy +456553,Energy,Energy +456552,Energy,Energy +453196,Energy,Energy +453192,Environment,Environment +453190,Environment,Environment +456553,Environment,Environment +456552,Environment,Environment +453196,Environment,Environment +453192,Financial Institutions,Financial Institutions +453190,Financial Institutions,Financial Institutions +456553,Financial Institutions,Financial Institutions +456552,Financial Institutions,Financial Institutions +453196,Financial Institutions,Financial Institutions +453192,Industry,Industry +453190,Industry,Industry +456553,Industry,Industry +456552,Industry,Industry +453196,Industry,Industry +453192,Transportation,Transportation +453190,Transportation,Transportation +456553,Transportation,Transportation +456552,Transportation,Transportation +453196,Transportation,Transportation +544578,Research and Development,Research and Development +544577,Research and Development,Research and Development +544620,Research and Development,Research and Development +544585,Research and Development,Research and Development +544582,Research and Development,Research and Development +544581,Research and Development,Research and Development +544580,Research and Development,Research and Development +451644,Education,Education +501536,Education,Education +464011,Education,Education +464009,Education,Education +462502,Education,Education +460629,Education,Education +459500,Education,Education +457448,Education,Education +455498,Education,Education +454689,Education,Education +454013,Education,Education +454011,Education,Education +454005,Education,Education +451644,Budget,Budget +501542,Budget,Budget +464011,Budget,Budget +454689,Budget,Budget +454013,Budget,Budget +454011,Budget,Budget +454005,Budget,Budget +454002,Economic Development,Economic Development +451644,Economic Development,Economic Development +501536,Economic Development,Economic Development +474996,Economic Development,Economic Development +464011,Economic Development,Economic Development +459501,Economic Development,Economic Development +459500,Economic Development,Economic Development +455505,Economic Development,Economic Development +455498,Economic Development,Economic Development +454689,Economic Development,Economic Development +454013,Economic Development,Economic Development +454011,Economic Development,Economic Development +455505,Research and Development,Research and Development +455498,Research and Development,Research and Development +451644,Research and Development,Research and Development +522257,Research and Development,Research and Development +516554,Research and Development,Research and Development +511829,Research and Development,Research and Development +504627,Research and Development,Research and Development +501539,Research and Development,Research and Development +501528,Research and Development,Research and Development +490545,Research and Development,Research and Development +489837,Research and Development,Research and Development +488389,Research and Development,Research and Development +474922,Research and Development,Research and Development +472165,Research and Development,Research and Development +467218,Research and Development,Research and Development +467216,Research and Development,Research and Development +467212,Research and Development,Research and Development +467209,Research and Development,Research and Development +467207,Research and Development,Research and Development +467189,Research and Development,Research and Development +467131,Research and Development,Research and Development +467096,Research and Development,Research and Development +467091,Research and Development,Research and Development +464018,Research and Development,Research and Development +464009,Research and Development,Research and Development +462504,Research and Development,Research and Development +462502,Research and Development,Research and Development +462501,Research and Development,Research and Development +461498,Research and Development,Research and Development +461385,Research and Development,Research and Development +461384,Research and Development,Research and Development +460629,Research and Development,Research and Development +459502,Research and Development,Research and Development +459501,Research and Development,Research and Development +459500,Research and Development,Research and Development +451872,Intellectual Property,Intellectual Property +451869,Intellectual Property,Intellectual Property +454961,Intellectual Property,Intellectual Property +473954,Transportation,Transportation +448748,Labour,Labour +532958,Labour,Labour +523433,Labour,Labour +520401,Labour,Labour +519214,Labour,Labour +517570,Labour,Labour +517341,Labour,Labour +480755,Economic Development,Economic Development +479769,Economic Development,Economic Development +465237,Economic Development,Economic Development +462901,Economic Development,Economic Development +522143,Economic Development,Economic Development +521378,Economic Development,Economic Development +516840,Economic Development,Economic Development +489296,Economic Development,Economic Development +488824,Economic Development,Economic Development +486744,Economic Development,Economic Development +486158,Economic Development,Economic Development +486151,Economic Development,Economic Development +485643,Economic Development,Economic Development +482105,Economic Development,Economic Development +482027,Economic Development,Economic Development +482025,Economic Development,Economic Development +482023,Economic Development,Economic Development +482022,Economic Development,Economic Development +480765,Economic Development,Economic Development +480763,Economic Development,Economic Development +480761,Economic Development,Economic Development +480759,Economic Development,Economic Development +453770,Taxation and Finance,Taxation and Finance +451994,Consumer Issues,Consumer Issues +451991,Consumer Issues,Consumer Issues +452000,Consumer Issues,Consumer Issues +451994,Housing,Housing +451991,Housing,Housing +452000,Housing,Housing +451997,Taxation and Finance,Taxation and Finance +451994,Taxation and Finance,Taxation and Finance +448910,Economic Development,Economic Development +448778,Economic Development,Economic Development +459130,Economic Development,Economic Development +449598,Taxation and Finance,Taxation and Finance +448787,Taxation and Finance,Taxation and Finance +451300,International Trade,International Trade +503988,Infrastructure,Infrastructure +500797,Infrastructure,Infrastructure +500218,Infrastructure,Infrastructure +498912,Infrastructure,Infrastructure +498911,Infrastructure,Infrastructure +498895,Infrastructure,Infrastructure +498033,Infrastructure,Infrastructure +498032,Infrastructure,Infrastructure +496840,Infrastructure,Infrastructure +496839,Infrastructure,Infrastructure +496838,Infrastructure,Infrastructure +496837,Infrastructure,Infrastructure +496279,Infrastructure,Infrastructure +496275,Infrastructure,Infrastructure +496273,Infrastructure,Infrastructure +494528,Infrastructure,Infrastructure +486465,Infrastructure,Infrastructure +516601,Infrastructure,Infrastructure +516243,Infrastructure,Infrastructure +494528,Municipalities,Municipalities +483269,Municipalities,Municipalities +514328,Municipalities,Municipalities +503988,Municipalities,Municipalities +500797,Municipalities,Municipalities +498912,Municipalities,Municipalities +498911,Municipalities,Municipalities +498895,Municipalities,Municipalities +496839,Municipalities,Municipalities +496838,Municipalities,Municipalities +496837,Municipalities,Municipalities +496275,Municipalities,Municipalities +533350,Infrastructure,Infrastructure +488549,Infrastructure,Infrastructure +479213,Infrastructure,Infrastructure +476447,Infrastructure,Infrastructure +476441,Infrastructure,Infrastructure +466463,Infrastructure,Infrastructure +465615,Infrastructure,Infrastructure +463376,Infrastructure,Infrastructure +461594,Infrastructure,Infrastructure +460474,Infrastructure,Infrastructure +458043,Infrastructure,Infrastructure +458042,Infrastructure,Infrastructure +451872,Industry,Industry +451869,Industry,Industry +454961,Industry,Industry +454961,Small Business,Small Business +454951,Small Business,Small Business +451872,Small Business,Small Business +452675,Elections,Elections +452674,Elections,Elections +452675,Industry,Industry +452674,Industry,Industry +456829,Agriculture,Agriculture +456829,International Trade,International Trade +449126,Labour,Labour +456315,Immigration,Immigration +540463,Official Languages,Official Languages +454555,International Trade,International Trade +453458,International Trade,International Trade +526743,International Trade,International Trade +524720,International Trade,International Trade +512342,International Trade,International Trade +512341,International Trade,International Trade +509352,International Trade,International Trade +503365,International Trade,International Trade +501742,International Trade,International Trade +499883,International Trade,International Trade +456701,International Trade,International Trade +503365,Health,Health +501742,Health,Health +499883,Health,Health +498191,Health,Health +456700,Health,Health +542310,Health,Health +540460,Health,Health +538695,Health,Health +536722,Health,Health +536721,Health,Health +536144,Health,Health +536048,Health,Health +533102,Health,Health +530796,Health,Health +529875,Health,Health +528611,Health,Health +528286,Health,Health +526979,Health,Health +526743,Health,Health +524720,Health,Health +521396,Health,Health +520740,Health,Health +520739,Health,Health +520738,Health,Health +512342,Health,Health +512341,Health,Health +509352,Health,Health +506777,Health,Health +506166,Health,Health +502476,Employment and Training,Employment and Training +493314,Employment and Training,Employment and Training +464781,Employment and Training,Employment and Training +451414,Employment and Training,Employment and Training +451045,Employment and Training,Employment and Training +451044,Employment and Training,Employment and Training +464781,Budget,Budget +529849,Budget,Budget +502476,Budget,Budget +499777,Economic Development,Economic Development +493314,Economic Development,Economic Development +467993,Economic Development,Economic Development +467992,Economic Development,Economic Development +464781,Economic Development,Economic Development +451414,Economic Development,Economic Development +451045,Economic Development,Economic Development +451044,Economic Development,Economic Development +451041,Economic Development,Economic Development +448936,Budget,Budget +448934,Budget,Budget +533047,Budget,Budget +495505,Budget,Budget +449850,Economic Development,Economic Development +449850,Energy,Energy +463217,Budget,Budget +463023,Budget,Budget +485972,Budget,Budget +483716,Budget,Budget +482949,Budget,Budget +450967,Health,Health +450967,Pensions,Pensions +450967,Small Business,Small Business +468854,Taxation and Finance,Taxation and Finance +463023,Taxation and Finance,Taxation and Finance +522368,Agriculture,Agriculture +486923,Agriculture,Agriculture +453713,Agriculture,Agriculture +453712,Agriculture,Agriculture +453711,Agriculture,Agriculture +453709,Agriculture,Agriculture +449926,Agriculture,Agriculture +471972,Agriculture,Agriculture +451549,Agriculture,Agriculture +452771,Environment,Environment +451549,Environment,Environment +478542,Agriculture,Agriculture +477282,Agriculture,Agriculture +462921,Agriculture,Agriculture +450953,Agriculture,Agriculture +542754,Agriculture,Agriculture +530526,Agriculture,Agriculture +520418,Agriculture,Agriculture +515195,Agriculture,Agriculture +513468,Agriculture,Agriculture +511859,Agriculture,Agriculture +509383,Agriculture,Agriculture +506371,Agriculture,Agriculture +506068,Agriculture,Agriculture +503696,Agriculture,Agriculture +481131,Agriculture,Agriculture +478542,International Trade,International Trade +477365,International Trade,International Trade +462921,International Trade,International Trade +459823,International Trade,International Trade +450953,International Trade,International Trade +542754,International Trade,International Trade +513468,International Trade,International Trade +506068,International Trade,International Trade +503696,International Trade,International Trade +481131,International Trade,International Trade +453199,Health,Health +453198,Health,Health +453199,Research and Development,Research and Development +453198,Research and Development,Research and Development +449051,Energy,Energy +449047,Energy,Energy +456320,Energy,Energy +451062,Energy,Energy +449059,Energy,Energy +449057,Energy,Energy +481448,Education,Education +479111,Education,Education +460332,Elections,Elections +450439,Agriculture,Agriculture +450438,Agriculture,Agriculture +451053,Agriculture,Agriculture +451052,Agriculture,Agriculture +450602,Agriculture,Agriculture +450473,Agriculture,Agriculture +450439,Health,Health +450438,Health,Health +451053,Health,Health +451052,Health,Health +450602,Health,Health +450473,Health,Health +450280,Agriculture,Agriculture +450279,Agriculture,Agriculture +450283,Agriculture,Agriculture +450282,Agriculture,Agriculture +450280,Health,Health +450279,Health,Health +450283,Health,Health +450282,Health,Health +454668,Agriculture,Agriculture +454667,Agriculture,Agriculture +454671,Agriculture,Agriculture +454668,Health,Health +454667,Health,Health +454671,Health,Health +449067,Education,Education +465610,Education,Education +450917,Education,Education +455669,Intellectual Property,Intellectual Property +449460,International Trade,International Trade +449157,International Trade,International Trade +454352,International Trade,International Trade +453736,International Trade,International Trade +451094,International Trade,International Trade +449468,International Trade,International Trade +450486,Climate,Climate +450486,Regional Development,Regional Development +450486,Research and Development,Research and Development +449237,Small Business,Small Business +508243,Small Business,Small Business +449268,Education,Education +449449,International Trade,International Trade +512123,International Trade,International Trade +502769,Climate,Climate +499519,Climate,Climate +518461,Climate,Climate +505290,Climate,Climate +505287,Climate,Climate +505284,Climate,Climate +502776,Climate,Climate +502774,Climate,Climate +502773,Climate,Climate +505287,Economic Development,Economic Development +499519,Economic Development,Economic Development +502769,Energy,Energy +499519,Energy,Energy +518461,Energy,Energy +505290,Energy,Energy +505287,Energy,Energy +505284,Energy,Energy +502776,Energy,Energy +502774,Energy,Energy +502773,Energy,Energy +505287,Environment,Environment +505284,Environment,Environment +502776,Environment,Environment +502774,Environment,Environment +502773,Environment,Environment +464772,Consumer Issues,Consumer Issues +464772,Health,Health +522166,Energy,Energy +522166,Environment,Environment +451958,Environment,Environment +451958,Transportation,Transportation +452676,Elections,Elections +452676,Industry,Industry +459355,Agriculture,Agriculture +459355,International Trade,International Trade +530031,Labour,Labour +456315,Employment and Training,Employment and Training +540463,Immigration,Immigration +456315,Official Languages,Official Languages +449662,Agriculture,Agriculture +456700,International Trade,International Trade +503576,Health,Health +451041,Employment and Training,Employment and Training +499777,Government Procurement,Government Procurement +467993,Budget,Budget +502476,Economic Development,Economic Development +493314,Small Business,Small Business +456270,Industry,Industry +448931,Financial Institutions,Financial Institutions +448931,Consumer Issues,Consumer Issues +492659,Budget,Budget +451733,Health,Health +451733,Consumer Issues,Consumer Issues +449851,Economic Development,Economic Development +449851,Energy,Energy +482765,Budget,Budget +463023,Health,Health +463023,Pensions,Pensions +463023,Small Business,Small Business +488197,Taxation and Finance,Taxation and Finance +524747,Agriculture,Agriculture +449140,Environment,Environment +488390,Agriculture,Agriculture +453768,Environment,Environment +451549,International Trade,International Trade +457249,Government Procurement,Government Procurement +478956,Agriculture,Agriculture +478956,International Trade,International Trade +455833,Health,Health +453200,Health,Health +453200,Research and Development,Research and Development +449041,Energy,Energy +449054,Energy,Energy +481451,Education,Education +531462,Intellectual Property,Intellectual Property +523513,Elections,Elections +449052,Elections,Elections +450440,Agriculture,Agriculture +450440,Health,Health +450281,Agriculture,Agriculture +450281,Health,Health +454670,Agriculture,Agriculture +454670,Health,Health +450913,Education,Education +450429,Infrastructure,Infrastructure +455673,Intellectual Property,Intellectual Property +449462,International Trade,International Trade +455826,Economic Development,Economic Development +450559,Climate,Climate +450559,Regional Development,Regional Development +450559,Research and Development,Research and Development +450559,Transportation,Transportation +457984,Energy,Energy +450443,Health,Health +449220,Environment,Environment +449220,Climate,Climate +449222,Environment,Environment +449224,Employment and Training,Employment and Training +449226,Economic Development,Economic Development +449227,Climate,Climate +449228,Justice and Law Enforcement,Justice and Law Enforcement +449229,Climate,Climate +449229,Economic Development,Economic Development +449231,Climate,Climate +449231,Environment,Environment +449232,Climate,Climate +449232,Economic Development,Economic Development +449232,Employment and Training,Employment and Training +449232,Environment,Environment +449234,Climate,Climate +449234,Economic Development,Economic Development +449234,Environment,Environment +449234,Housing,Housing +449235,Small Business,Small Business +449236,Small Business,Small Business +508255,Small Business,Small Business +449238,Small Business,Small Business +450915,Education,Education +449450,International Trade,International Trade +482014,Health,Health +456761,Infrastructure,Infrastructure +499519,Budget,Budget +502772,Climate,Climate +505290,Economic Development,Economic Development +502772,Energy,Energy +505290,Environment,Environment +505290,Industry,Industry +499519,Regional Development,Regional Development +499519,Taxation and Finance,Taxation and Finance +449586,Security,Security +449558,Budget,Budget +449563,Budget,Budget +449566,Budget,Budget +449567,Budget,Budget +449568,Budget,Budget +449569,Budget,Budget +449572,Budget,Budget +449574,Budget,Budget +449590,Security,Security +449590,Justice and Law Enforcement,Justice and Law Enforcement +466513,Energy,Energy +452429,Small Business,Small Business +452432,Small Business,Small Business +449665,Industry,Industry +449676,Economic Development,Economic Development +462344,Taxation and Finance,Taxation and Finance +451929,Taxation and Finance,Taxation and Finance +449747,International Trade,International Trade +449753,International Trade,International Trade +538584,Transportation,Transportation +449875,International Trade,International Trade +455062,Privacy and Access to Information,Privacy and Access to Information +449941,Budget,Budget +449963,Intellectual Property,Intellectual Property +451189,Regional Development,Regional Development +449961,Municipalities,Municipalities +449974,Health,Health +451189,Municipalities,Municipalities +452678,Security,Security +450109,Security,Security +457588,Elections,Elections +450147,Research and Development,Research and Development +450150,Official Languages,Official Languages +453968,Health,Health +453967,Government Procurement,Government Procurement +467701,Security,Security +450393,Economic Development,Economic Development +450409,Employment and Training,Employment and Training +450395,Taxation and Finance,Taxation and Finance +470207,Agriculture,Agriculture +458850,International Trade,International Trade +460857,Economic Development,Economic Development +460857,Research and Development,Research and Development +454125,Housing,Housing +450369,Taxation and Finance,Taxation and Finance +460535,Energy,Energy +456921,Industry,Industry +526774,Financial Institutions,Financial Institutions +488912,Immigration,Immigration +453143,Environment,Environment +456811,Research and Development,Research and Development +453611,Education,Education +453612,Intellectual Property,Intellectual Property +450430,Infrastructure,Infrastructure +450431,Infrastructure,Infrastructure +450432,Infrastructure,Infrastructure +454125,Economic Development,Economic Development +454125,Regional Development,Regional Development +455343,Sports,Sports +451273,Housing,Housing +451273,Economic Development,Economic Development +451273,Budget,Budget +456660,Economic Development,Economic Development +456660,Regional Development,Regional Development +450550,Industry,Industry +457050,Economic Development,Economic Development +457050,Regional Development,Regional Development +456762,Regional Development,Regional Development +455815,Environment,Environment +455815,Economic Development,Economic Development +455815,Industry,Industry +455815,Research and Development,Research and Development +455815,Energy,Energy +458153,Health,Health +455792,Energy,Energy +455792,Industry,Industry +455792,Climate,Climate +455792,Economic Development,Economic Development +455792,Environment,Environment +461983,Infrastructure,Infrastructure +461983,Research and Development,Research and Development +485591,Industry,Industry +450527,Employment and Training,Employment and Training +450527,Environment,Environment +450527,Immigration,Immigration +450527,Intellectual Property,Intellectual Property +480741,Agriculture,Agriculture +471533,Energy,Energy +480741,Transportation,Transportation +478998,Environment,Environment +497740,Economic Development,Economic Development +502772,Environment,Environment +502769,Environment,Environment +505287,Industry,Industry +499519,Industry,Industry +449583,Security,Security +449511,Security,Security +451573,Security,Security +449589,Security,Security +449588,Security,Security +449596,Energy,Energy +452428,Small Business,Small Business +450795,Small Business,Small Business +452434,Small Business,Small Business +452430,Small Business,Small Business +450793,Small Business,Small Business +452437,Small Business,Small Business +459105,Taxation and Finance,Taxation and Finance +451927,Taxation and Finance,Taxation and Finance +503724,Taxation and Finance,Taxation and Finance +488303,Taxation and Finance,Taxation and Finance +503726,Taxation and Finance,Taxation and Finance +488304,Taxation and Finance,Taxation and Finance +462345,Taxation and Finance,Taxation and Finance +459107,Taxation and Finance,Taxation and Finance +500102,Transportation,Transportation +456391,Transportation,Transportation +538766,Transportation,Transportation +455059,Privacy and Access to Information,Privacy and Access to Information +449876,Privacy and Access to Information,Privacy and Access to Information +449912,Budget,Budget +449903,Budget,Budget +449961,Regional Development,Regional Development +450003,Security,Security +452495,Elections,Elections +450118,Elections,Elections +514143,Elections,Elections +514142,Elections,Elections +514140,Elections,Elections +514138,Elections,Elections +485038,Elections,Elections +460640,Elections,Elections +458846,Elections,Elections +458845,Elections,Elections +458843,Elections,Elections +458759,Elections,Elections +458758,Elections,Elections +457590,Elections,Elections +453967,Health,Health +452844,Security,Security +450215,Security,Security +467871,Security,Security +467707,Security,Security +450278,International Trade,International Trade +454124,Housing,Housing +451058,Housing,Housing +513348,Taxation and Finance,Taxation and Finance +510530,Taxation and Finance,Taxation and Finance +450372,Taxation and Finance,Taxation and Finance +456921,Energy,Energy +452283,Industry,Industry +452273,Industry,Industry +526773,Financial Institutions,Financial Institutions +526772,Financial Institutions,Financial Institutions +505909,Financial Institutions,Financial Institutions +450385,Financial Institutions,Financial Institutions +486228,Immigration,Immigration +480870,Immigration,Immigration +494194,Immigration,Immigration +494193,Immigration,Immigration +492087,Immigration,Immigration +456810,Research and Development,Research and Development +530047,Education,Education +530046,Education,Education +453612,Education,Education +453611,Intellectual Property,Intellectual Property +454124,Economic Development,Economic Development +451058,Economic Development,Economic Development +454124,Regional Development,Regional Development +451058,Regional Development,Regional Development +455342,Sports,Sports +451408,Sports,Sports +487259,Sports,Sports +451272,Housing,Housing +451272,Economic Development,Economic Development +451272,Budget,Budget +450550,Economic Development,Economic Development +452396,Environment,Environment +452396,Economic Development,Economic Development +452396,Research and Development,Research and Development +452396,Energy,Energy +457931,Health,Health +455789,Energy,Energy +452777,Energy,Energy +461983,Energy,Energy +455789,Industry,Industry +452777,Industry,Industry +461983,Industry,Industry +455789,Climate,Climate +452777,Climate,Climate +461983,Climate,Climate +455789,Economic Development,Economic Development +452777,Economic Development,Economic Development +461983,Economic Development,Economic Development +460708,Economic Development,Economic Development +455789,Environment,Environment +452777,Environment,Environment +461983,Environment,Environment +455792,Infrastructure,Infrastructure +452777,Infrastructure,Infrastructure +455792,Research and Development,Research and Development +452777,Research and Development,Research and Development +477907,Industry,Industry +474762,Industry,Industry +478998,Agriculture,Agriculture +471407,Agriculture,Agriculture +471499,Energy,Energy +471407,Energy,Energy +497740,Energy,Energy +480741,Energy,Energy +471499,Environment,Environment +497740,Environment,Environment +480741,Environment,Environment +480478,Environment,Environment +450555,Economic Development,Economic Development +450554,Economic Development,Economic Development +468584,Economic Development,Economic Development +465296,Agriculture,Agriculture +465295,Agriculture,Agriculture +526840,Agriculture,Agriculture +524645,Agriculture,Agriculture +524643,Agriculture,Agriculture +524364,Agriculture,Agriculture +524363,Agriculture,Agriculture +496820,Agriculture,Agriculture +496819,Agriculture,Agriculture +496818,Agriculture,Agriculture +465297,Consumer Issues,Consumer Issues +465296,Consumer Issues,Consumer Issues +526840,Consumer Issues,Consumer Issues +524364,Consumer Issues,Consumer Issues +524363,Consumer Issues,Consumer Issues +496820,Consumer Issues,Consumer Issues +496819,Consumer Issues,Consumer Issues +465296,Environment,Environment +465295,Environment,Environment +526840,Environment,Environment +524645,Environment,Environment +524364,Environment,Environment +465296,International Trade,International Trade +465295,International Trade,International Trade +526840,International Trade,International Trade +524364,International Trade,International Trade +524363,International Trade,International Trade +496820,International Trade,International Trade +496819,International Trade,International Trade +496818,International Trade,International Trade +524643,Labour,Labour +465244,Pensions,Pensions +456240,Pensions,Pensions +456238,Pensions,Pensions +454288,Agriculture,Agriculture +454285,Agriculture,Agriculture +456471,Agriculture,Agriculture +454531,Agriculture,Agriculture +454288,International Trade,International Trade +454285,International Trade,International Trade +456471,International Trade,International Trade +454531,International Trade,International Trade +455690,Education,Education +455690,Employment and Training,Employment and Training +465440,Industry,Industry +465438,Industry,Industry +468135,Industry,Industry +465440,Transportation,Transportation +465438,Transportation,Transportation +468135,Transportation,Transportation +465440,Consumer Issues,Consumer Issues +465438,Consumer Issues,Consumer Issues +468135,Consumer Issues,Consumer Issues +465440,Regional Development,Regional Development +465438,Regional Development,Regional Development +468135,Regional Development,Regional Development +465440,Employment and Training,Employment and Training +465438,Employment and Training,Employment and Training +468135,Employment and Training,Employment and Training +465440,Environment,Environment +465438,Environment,Environment +468135,Environment,Environment +465440,Taxation and Finance,Taxation and Finance +465438,Taxation and Finance,Taxation and Finance +468135,Taxation and Finance,Taxation and Finance +465440,International Trade,International Trade +465438,International Trade,International Trade +468135,International Trade,International Trade +457030,Economic Development,Economic Development +454723,Economic Development,Economic Development +507141,Economic Development,Economic Development +503923,Economic Development,Economic Development +501232,Economic Development,Economic Development +492464,Economic Development,Economic Development +492462,Economic Development,Economic Development +492461,Economic Development,Economic Development +489884,Economic Development,Economic Development +489881,Economic Development,Economic Development +489875,Economic Development,Economic Development +489859,Economic Development,Economic Development +489855,Economic Development,Economic Development +486563,Economic Development,Economic Development +486561,Economic Development,Economic Development +479681,Economic Development,Economic Development +479680,Economic Development,Economic Development +476898,Economic Development,Economic Development +476897,Economic Development,Economic Development +476896,Economic Development,Economic Development +467435,Economic Development,Economic Development +467424,Economic Development,Economic Development +467420,Economic Development,Economic Development +467416,Economic Development,Economic Development +467413,Economic Development,Economic Development +460494,Economic Development,Economic Development +458473,Economic Development,Economic Development +458470,Economic Development,Economic Development +457155,Economic Development,Economic Development +457039,Economic Development,Economic Development +457037,Economic Development,Economic Development +457035,Economic Development,Economic Development +457030,Environment,Environment +454723,Environment,Environment +507141,Environment,Environment +501232,Environment,Environment +492464,Environment,Environment +492462,Environment,Environment +492461,Environment,Environment +489884,Environment,Environment +489881,Environment,Environment +489875,Environment,Environment +489859,Environment,Environment +489855,Environment,Environment +486563,Environment,Environment +486561,Environment,Environment +479681,Environment,Environment +479680,Environment,Environment +476898,Environment,Environment +476897,Environment,Environment +476896,Environment,Environment +467435,Environment,Environment +467424,Environment,Environment +467420,Environment,Environment +467416,Environment,Environment +467413,Environment,Environment +460494,Environment,Environment +458473,Environment,Environment +458470,Environment,Environment +457155,Environment,Environment +457039,Environment,Environment +457037,Environment,Environment +457035,Environment,Environment +457030,Infrastructure,Infrastructure +454723,Infrastructure,Infrastructure +507141,Infrastructure,Infrastructure +503923,Infrastructure,Infrastructure +501232,Infrastructure,Infrastructure +492464,Infrastructure,Infrastructure +492462,Infrastructure,Infrastructure +492461,Infrastructure,Infrastructure +489884,Infrastructure,Infrastructure +489881,Infrastructure,Infrastructure +489875,Infrastructure,Infrastructure +489859,Infrastructure,Infrastructure +489855,Infrastructure,Infrastructure +486563,Infrastructure,Infrastructure +486561,Infrastructure,Infrastructure +479681,Infrastructure,Infrastructure +479680,Infrastructure,Infrastructure +476898,Infrastructure,Infrastructure +476897,Infrastructure,Infrastructure +476896,Infrastructure,Infrastructure +467435,Infrastructure,Infrastructure +467424,Infrastructure,Infrastructure +467420,Infrastructure,Infrastructure +467416,Infrastructure,Infrastructure +467413,Infrastructure,Infrastructure +460494,Infrastructure,Infrastructure +458473,Infrastructure,Infrastructure +458470,Infrastructure,Infrastructure +457155,Infrastructure,Infrastructure +457039,Infrastructure,Infrastructure +457037,Infrastructure,Infrastructure +457035,Infrastructure,Infrastructure +457030,Internal Trade,Internal Trade +454723,Internal Trade,Internal Trade +492464,Internal Trade,Internal Trade +492462,Internal Trade,Internal Trade +492461,Internal Trade,Internal Trade +489884,Internal Trade,Internal Trade +489881,Internal Trade,Internal Trade +489875,Internal Trade,Internal Trade +489859,Internal Trade,Internal Trade +489855,Internal Trade,Internal Trade +486563,Internal Trade,Internal Trade +486561,Internal Trade,Internal Trade +479681,Internal Trade,Internal Trade +479680,Internal Trade,Internal Trade +476898,Internal Trade,Internal Trade +476897,Internal Trade,Internal Trade +476896,Internal Trade,Internal Trade +467435,Internal Trade,Internal Trade +467424,Internal Trade,Internal Trade +467420,Internal Trade,Internal Trade +467416,Internal Trade,Internal Trade +467413,Internal Trade,Internal Trade +460494,Internal Trade,Internal Trade +458473,Internal Trade,Internal Trade +458470,Internal Trade,Internal Trade +457155,Internal Trade,Internal Trade +457039,Internal Trade,Internal Trade +457037,Internal Trade,Internal Trade +457035,Internal Trade,Internal Trade +457030,International Trade,International Trade +454723,International Trade,International Trade +507141,International Trade,International Trade +501232,International Trade,International Trade +492464,International Trade,International Trade +492462,International Trade,International Trade +492461,International Trade,International Trade +489884,International Trade,International Trade +489881,International Trade,International Trade +489875,International Trade,International Trade +489859,International Trade,International Trade +489855,International Trade,International Trade +486563,International Trade,International Trade +486561,International Trade,International Trade +479681,International Trade,International Trade +479680,International Trade,International Trade +476898,International Trade,International Trade +476897,International Trade,International Trade +476896,International Trade,International Trade +467435,International Trade,International Trade +467424,International Trade,International Trade +467420,International Trade,International Trade +467416,International Trade,International Trade +467413,International Trade,International Trade +460494,International Trade,International Trade +458473,International Trade,International Trade +458470,International Trade,International Trade +457155,International Trade,International Trade +457039,International Trade,International Trade +457037,International Trade,International Trade +457035,International Trade,International Trade +507141,Transportation,Transportation +503923,Transportation,Transportation +501232,Transportation,Transportation +492464,Transportation,Transportation +492462,Transportation,Transportation +492461,Transportation,Transportation +489884,Transportation,Transportation +489881,Transportation,Transportation +489875,Transportation,Transportation +489859,Transportation,Transportation +489855,Transportation,Transportation +486563,Transportation,Transportation +486561,Transportation,Transportation +479681,Transportation,Transportation +479680,Transportation,Transportation +476898,Transportation,Transportation +476897,Transportation,Transportation +476896,Transportation,Transportation +467435,Transportation,Transportation +467424,Transportation,Transportation +467420,Transportation,Transportation +467416,Transportation,Transportation +467413,Transportation,Transportation +460494,Transportation,Transportation +458473,Transportation,Transportation +458470,Transportation,Transportation +457155,Transportation,Transportation +457039,Transportation,Transportation +457037,Transportation,Transportation +457035,Transportation,Transportation +457032,Transportation,Transportation +457030,Transportation,Transportation +485521,Energy,Energy +460185,Energy,Energy +476528,Environment,Environment +474081,Environment,Environment +476797,Environment,Environment +474081,Regional Development,Regional Development +465509,Energy,Energy +460330,Energy,Energy +481041,Energy,Energy +479747,Energy,Energy +477803,Energy,Energy +476797,Energy,Energy +476794,Energy,Energy +476528,Energy,Energy +476150,Energy,Energy +474830,Energy,Energy +476528,Economic Development,Economic Development +474830,Economic Development,Economic Development +481041,Economic Development,Economic Development +479747,Economic Development,Economic Development +477803,Economic Development,Economic Development +476797,Economic Development,Economic Development +474830,Infrastructure,Infrastructure +474081,Infrastructure,Infrastructure +479747,Infrastructure,Infrastructure +462930,Health,Health +462928,Health,Health +473858,Health,Health +472378,Health,Health +469376,Health,Health +469375,Health,Health +459237,Budget,Budget +459236,Budget,Budget +516969,Budget,Budget +507033,Budget,Budget +507028,Budget,Budget +504347,Budget,Budget +504346,Budget,Budget +504339,Budget,Budget +504337,Budget,Budget +501204,Budget,Budget +501201,Budget,Budget +501199,Budget,Budget +478482,Budget,Budget +478481,Budget,Budget +476265,Budget,Budget +474123,Budget,Budget +471526,Budget,Budget +470284,Budget,Budget +469240,Budget,Budget +501201,Employment and Training,Employment and Training +501199,Employment and Training,Employment and Training +478482,Employment and Training,Employment and Training +478481,Employment and Training,Employment and Training +476265,Employment and Training,Employment and Training +474123,Employment and Training,Employment and Training +471526,Employment and Training,Employment and Training +470284,Employment and Training,Employment and Training +469240,Employment and Training,Employment and Training +459237,Employment and Training,Employment and Training +459236,Employment and Training,Employment and Training +459234,Employment and Training,Employment and Training +534208,Employment and Training,Employment and Training +528144,Employment and Training,Employment and Training +525337,Employment and Training,Employment and Training +525306,Employment and Training,Employment and Training +516969,Employment and Training,Employment and Training +513685,Employment and Training,Employment and Training +511701,Employment and Training,Employment and Training +510156,Employment and Training,Employment and Training +507253,Employment and Training,Employment and Training +507036,Employment and Training,Employment and Training +507033,Employment and Training,Employment and Training +504348,Employment and Training,Employment and Training +504346,Employment and Training,Employment and Training +504339,Employment and Training,Employment and Training +459236,Energy,Energy +459234,Energy,Energy +522398,Energy,Energy +504348,Energy,Energy +504347,Energy,Energy +504339,Energy,Energy +504337,Energy,Energy +476146,Energy,Energy +471700,Energy,Energy +471526,Energy,Energy +469258,Energy,Energy +469240,Energy,Energy +504337,Environment,Environment +478481,Environment,Environment +476265,Environment,Environment +476146,Environment,Environment +474123,Environment,Environment +471526,Environment,Environment +470284,Environment,Environment +469258,Environment,Environment +469240,Environment,Environment +463423,Environment,Environment +459237,Environment,Environment +459236,Environment,Environment +459234,Environment,Environment +528146,Environment,Environment +528145,Environment,Environment +525306,Environment,Environment +522398,Environment,Environment +507028,Environment,Environment +504348,Environment,Environment +504345,Environment,Environment +456775,Regional Development,Regional Development +456651,Regional Development,Regional Development +450732,Regional Development,Regional Development +518446,Regional Development,Regional Development +498352,Regional Development,Regional Development +472315,Regional Development,Regional Development +463543,Regional Development,Regional Development +463542,Regional Development,Regional Development +455650,Sports,Sports +455345,Sports,Sports +487256,Sports,Sports +528633,Housing,Housing +466570,Environment,Environment +466566,Environment,Environment +466536,Environment,Environment +466529,Environment,Environment +463695,Environment,Environment +452991,Environment,Environment +452987,Environment,Environment +466618,Environment,Environment +466615,Environment,Environment +466604,Environment,Environment +452992,International Trade,International Trade +452987,International Trade,International Trade +478670,International Trade,International Trade +466618,International Trade,International Trade +466615,International Trade,International Trade +466604,International Trade,International Trade +466602,International Trade,International Trade +466570,International Trade,International Trade +466566,International Trade,International Trade +466536,International Trade,International Trade +466529,International Trade,International Trade +454889,International Trade,International Trade +454887,International Trade,International Trade +454885,International Trade,International Trade +454884,International Trade,International Trade +454880,International Trade,International Trade +453014,International Trade,International Trade +453013,International Trade,International Trade +453012,International Trade,International Trade +453011,International Trade,International Trade +453010,International Trade,International Trade +453007,International Trade,International Trade +453005,International Trade,International Trade +453000,International Trade,International Trade +452997,International Trade,International Trade +453928,Privacy and Access to Information,Privacy and Access to Information +453927,Privacy and Access to Information,Privacy and Access to Information +453930,Privacy and Access to Information,Privacy and Access to Information +490150,Consumer Issues,Consumer Issues +485636,Consumer Issues,Consumer Issues +470877,Financial Institutions,Financial Institutions +459803,Industry,Industry +489424,Budget,Budget +486522,Budget,Budget +475825,Budget,Budget +466702,Budget,Budget +528575,Budget,Budget +521653,Budget,Budget +521650,Budget,Budget +519367,Budget,Budget +519364,Budget,Budget +517852,Budget,Budget +517701,Budget,Budget +517694,Budget,Budget +506910,Budget,Budget +503980,Budget,Budget +501344,Budget,Budget +501341,Budget,Budget +492669,Budget,Budget +489485,Budget,Budget +489480,Budget,Budget +489477,Budget,Budget +489454,Budget,Budget +489450,Budget,Budget +469706,Health,Health +469704,Health,Health +513954,Health,Health +513369,Health,Health +513356,Health,Health +503334,Health,Health +501793,Health,Health +501774,Health,Health +495941,Health,Health +494280,Health,Health +493528,Health,Health +493527,Health,Health +492368,Health,Health +490561,Health,Health +490547,Health,Health +490544,Health,Health +490538,Health,Health +488569,Health,Health +488383,Health,Health +488377,Health,Health +487649,Health,Health +487646,Health,Health +483497,Health,Health +483472,Health,Health +483467,Health,Health +483452,Health,Health +483434,Health,Health +483432,Health,Health +483429,Health,Health +483428,Health,Health +483427,Health,Health +483424,Health,Health +483423,Health,Health +483281,Health,Health +482939,Health,Health +482938,Health,Health +482937,Health,Health +482872,Health,Health +471954,Health,Health +470409,Health,Health +470408,Health,Health +470401,Health,Health +469714,Health,Health +469713,Health,Health +469712,Health,Health +454210,Environment,Environment +489634,Economic Development,Economic Development +461838,International Trade,International Trade +450938,International Trade,International Trade +527077,International Trade,International Trade +450938,International Relations,International Relations +527077,International Relations,International Relations +461848,International Relations,International Relations +456728,Housing,Housing +456731,Health,Health +456728,Health,Health +461579,Agriculture,Agriculture +460865,Agriculture,Agriculture +523638,Agriculture,Agriculture +523637,Agriculture,Agriculture +461576,Taxation and Finance,Taxation and Finance +460865,Taxation and Finance,Taxation and Finance +464268,Taxation and Finance,Taxation and Finance +461583,Taxation and Finance,Taxation and Finance +459724,Economic Development,Economic Development +451054,Economic Development,Economic Development +492263,Economic Development,Economic Development +485938,Economic Development,Economic Development +485937,Economic Development,Economic Development +485936,Economic Development,Economic Development +483407,Economic Development,Economic Development +483406,Economic Development,Economic Development +480941,Economic Development,Economic Development +480940,Economic Development,Economic Development +480939,Economic Development,Economic Development +479835,Economic Development,Economic Development +479833,Economic Development,Economic Development +476679,Economic Development,Economic Development +476678,Economic Development,Economic Development +474224,Economic Development,Economic Development +465753,Economic Development,Economic Development +465752,Economic Development,Economic Development +465751,Economic Development,Economic Development +464436,Economic Development,Economic Development +464430,Economic Development,Economic Development +453024,Energy,Energy +453023,Energy,Energy +458396,Energy,Energy +456907,Energy,Energy +453027,Energy,Energy +464728,International Trade,International Trade +456612,International Trade,International Trade +464728,Industry,Industry +456613,Mining,Mining +456612,Mining,Mining +464735,Mining,Mining +464728,Mining,Mining +536853,Climate,Climate +451204,Climate,Climate +538653,Climate,Climate +538652,Climate,Climate +456634,Economic Development,Economic Development +456634,Industry,Industry +474647,Industry,Industry +456635,Research and Development,Research and Development +456634,Research and Development,Research and Development +474647,Research and Development,Research and Development +465347,Research and Development,Research and Development +458428,Research and Development,Research and Development +458425,Research and Development,Research and Development +458907,Economic Development,Economic Development +463304,Economic Development,Economic Development +461423,Economic Development,Economic Development +461422,Economic Development,Economic Development +461421,Economic Development,Economic Development +461420,Economic Development,Economic Development +461418,Economic Development,Economic Development +461405,Economic Development,Economic Development +461404,Economic Development,Economic Development +461401,Economic Development,Economic Development +461400,Economic Development,Economic Development +461399,Economic Development,Economic Development +461398,Economic Development,Economic Development +461397,Economic Development,Economic Development +461396,Economic Development,Economic Development +461395,Economic Development,Economic Development +461394,Economic Development,Economic Development +461393,Economic Development,Economic Development +461392,Economic Development,Economic Development +461391,Economic Development,Economic Development +460387,Economic Development,Economic Development +460386,Economic Development,Economic Development +460385,Economic Development,Economic Development +460383,Economic Development,Economic Development +460380,Economic Development,Economic Development +460379,Economic Development,Economic Development +460378,Economic Development,Economic Development +460377,Economic Development,Economic Development +460376,Economic Development,Economic Development +460375,Economic Development,Economic Development +460374,Economic Development,Economic Development +460373,Economic Development,Economic Development +460371,Economic Development,Economic Development +458036,Economic Development,Economic Development +458035,Economic Development,Economic Development +458034,Economic Development,Economic Development +512065,Economic Development,Economic Development +504027,Economic Development,Economic Development +500666,Economic Development,Economic Development +497232,Economic Development,Economic Development +492369,Economic Development,Economic Development +489280,Economic Development,Economic Development +489278,Economic Development,Economic Development +489277,Economic Development,Economic Development +464942,Economic Development,Economic Development +464933,Economic Development,Economic Development +464932,Economic Development,Economic Development +464927,Economic Development,Economic Development +464925,Economic Development,Economic Development +464923,Economic Development,Economic Development +464918,Economic Development,Economic Development +463349,Economic Development,Economic Development +463342,Economic Development,Economic Development +463340,Economic Development,Economic Development +463336,Economic Development,Economic Development +463320,Economic Development,Economic Development +463319,Economic Development,Economic Development +463318,Economic Development,Economic Development +463317,Economic Development,Economic Development +463316,Economic Development,Economic Development +463315,Economic Development,Economic Development +463309,Economic Development,Economic Development +463308,Economic Development,Economic Development +454994,Health,Health +512065,Health,Health +504027,Health,Health +500666,Health,Health +497232,Health,Health +492369,Health,Health +489280,Health,Health +489278,Health,Health +489277,Health,Health +464942,Health,Health +464933,Health,Health +464932,Health,Health +464927,Health,Health +464925,Health,Health +464923,Health,Health +464918,Health,Health +463349,Health,Health +463342,Health,Health +463340,Health,Health +463336,Health,Health +463320,Health,Health +463319,Health,Health +463318,Health,Health +463317,Health,Health +463316,Health,Health +463315,Health,Health +463309,Health,Health +463308,Health,Health +463306,Health,Health +463304,Health,Health +461423,Health,Health +461422,Health,Health +461421,Health,Health +461420,Health,Health +461418,Health,Health +461405,Health,Health +461404,Health,Health +461401,Health,Health +461400,Health,Health +461399,Health,Health +461398,Health,Health +461397,Health,Health +461396,Health,Health +461395,Health,Health +461394,Health,Health +461393,Health,Health +461392,Health,Health +461391,Health,Health +460387,Health,Health +460386,Health,Health +460385,Health,Health +460383,Health,Health +460380,Health,Health +460379,Health,Health +460378,Health,Health +460377,Health,Health +460376,Health,Health +460375,Health,Health +460374,Health,Health +460373,Health,Health +460371,Health,Health +458036,Health,Health +458035,Health,Health +458034,Research and Development,Research and Development +454994,Research and Development,Research and Development +500666,Research and Development,Research and Development +492369,Research and Development,Research and Development +489280,Research and Development,Research and Development +489278,Research and Development,Research and Development +489277,Research and Development,Research and Development +464942,Research and Development,Research and Development +464933,Research and Development,Research and Development +464932,Research and Development,Research and Development +464927,Research and Development,Research and Development +464925,Research and Development,Research and Development +464923,Research and Development,Research and Development +464918,Research and Development,Research and Development +463349,Research and Development,Research and Development +463342,Research and Development,Research and Development +463340,Research and Development,Research and Development +463336,Research and Development,Research and Development +463320,Research and Development,Research and Development +463319,Research and Development,Research and Development +463318,Research and Development,Research and Development +463317,Research and Development,Research and Development +463316,Research and Development,Research and Development +463315,Research and Development,Research and Development +463309,Research and Development,Research and Development +463308,Research and Development,Research and Development +463306,Research and Development,Research and Development +463304,Research and Development,Research and Development +461423,Research and Development,Research and Development +461422,Research and Development,Research and Development +461421,Research and Development,Research and Development +461420,Research and Development,Research and Development +461418,Research and Development,Research and Development +461405,Research and Development,Research and Development +461404,Research and Development,Research and Development +461401,Research and Development,Research and Development +461400,Research and Development,Research and Development +461399,Research and Development,Research and Development +461398,Research and Development,Research and Development +461397,Research and Development,Research and Development +461396,Research and Development,Research and Development +461395,Research and Development,Research and Development +461394,Research and Development,Research and Development +461393,Research and Development,Research and Development +461392,Research and Development,Research and Development +461391,Research and Development,Research and Development +460387,Research and Development,Research and Development +460386,Research and Development,Research and Development +460385,Research and Development,Research and Development +460383,Research and Development,Research and Development +460380,Research and Development,Research and Development +460379,Research and Development,Research and Development +460378,Research and Development,Research and Development +460377,Research and Development,Research and Development +460376,Research and Development,Research and Development +460375,Research and Development,Research and Development +460374,Research and Development,Research and Development +460373,Research and Development,Research and Development +460371,Research and Development,Research and Development +458036,Research and Development,Research and Development +540646,Employment and Training,Employment and Training +540628,Employment and Training,Employment and Training +461730,Employment and Training,Employment and Training +475955,Government Procurement,Government Procurement +473768,Government Procurement,Government Procurement +464891,Government Procurement,Government Procurement +460386,Industry,Industry +460385,Industry,Industry +460383,Industry,Industry +460380,Industry,Industry +460379,Industry,Industry +460378,Industry,Industry +460377,Industry,Industry +460376,Industry,Industry +460375,Industry,Industry +460374,Industry,Industry +460373,Industry,Industry +460371,Industry,Industry +458036,Industry,Industry +458035,Industry,Industry +458034,Industry,Industry +512065,Industry,Industry +497232,Industry,Industry +489280,Industry,Industry +489278,Industry,Industry +489277,Industry,Industry +464942,Industry,Industry +464933,Industry,Industry +464932,Industry,Industry +464927,Industry,Industry +464925,Industry,Industry +464923,Industry,Industry +464918,Industry,Industry +463349,Industry,Industry +463342,Industry,Industry +463340,Industry,Industry +463336,Industry,Industry +463320,Industry,Industry +463319,Industry,Industry +451545,Taxation and Finance,Taxation and Finance +451545,International Trade,International Trade +451545,Agriculture,Agriculture +451545,Industry,Industry +468581,Economic Development,Economic Development +465297,Agriculture,Agriculture +496818,Consumer Issues,Consumer Issues +524643,Economic Development,Economic Development +524363,Environment,Environment +465297,International Trade,International Trade +524645,Labour,Labour +465245,Pensions,Pensions +456366,Economic Development,Economic Development +456366,Industry,Industry +456366,Taxation and Finance,Taxation and Finance +456366,International Relations,International Relations +454291,Agriculture,Agriculture +454291,International Trade,International Trade +454998,Economic Development,Economic Development +454998,Industry,Industry +454998,Labour,Labour +454872,Infrastructure,Infrastructure +455693,Education,Education +455690,Infrastructure,Infrastructure +455693,Employment and Training,Employment and Training +450906,Health,Health +450906,Education,Education +465443,Industry,Industry +465443,Transportation,Transportation +465443,Consumer Issues,Consumer Issues +465443,Regional Development,Regional Development +465443,Employment and Training,Employment and Training +465443,Environment,Environment +465443,Taxation and Finance,Taxation and Finance +465443,International Trade,International Trade +450804,Research and Development,Research and Development +457032,Economic Development,Economic Development +457032,Environment,Environment +457032,Infrastructure,Infrastructure +457032,Internal Trade,Internal Trade +457032,International Trade,International Trade +454723,Transportation,Transportation +476820,Health,Health +485521,Environment,Environment +503234,Industry,Industry +485521,Regional Development,Regional Development +503234,Energy,Energy +485521,Economic Development,Economic Development +476794,Environment,Environment +476794,Government Procurement,Government Procurement +476150,Regional Development,Regional Development +474081,Energy,Energy +465509,Climate,Climate +476794,Economic Development,Economic Development +477803,Infrastructure,Infrastructure +457853,Environment,Environment +450740,Infrastructure,Infrastructure +450708,Privacy and Access to Information,Privacy and Access to Information +469374,Health,Health +463423,Budget,Budget +504337,Employment and Training,Employment and Training +463423,Energy,Energy +504339,Environment,Environment +463442,Regional Development,Regional Development +482359,Sports,Sports +455795,Employment and Training,Employment and Training +455795,Fisheries,Fisheries +455795,Labour,Labour +455795,Regional Development,Regional Development +474875,Housing,Housing +450843,Environment,Environment +450849,Tourism,Tourism +466602,Environment,Environment +452995,International Trade,International Trade +453929,Privacy and Access to Information,Privacy and Access to Information +459803,Consumer Issues,Consumer Issues +459803,Economic Development,Economic Development +483381,Financial Institutions,Financial Institutions +490150,Industry,Industry +489425,Budget,Budget +469711,Health,Health +450915,Small Business,Small Business +450917,Small Business,Small Business +485441,Environment,Environment +460315,Economic Development,Economic Development +461848,International Trade,International Trade +461838,International Relations,International Relations +456731,Housing,Housing +456732,Health,Health +452156,Agriculture,Agriculture +454165,Budget,Budget +454165,Employment and Training,Employment and Training +454165,Intellectual Property,Intellectual Property +464268,Agriculture,Agriculture +461579,Taxation and Finance,Taxation and Finance +459912,Economic Development,Economic Development +453025,Energy,Energy +485589,Employment and Training,Employment and Training +453072,Energy,Energy +453072,Environment,Environment +464735,International Trade,International Trade +464735,Industry,Industry +456614,Mining,Mining +451184,Municipalities,Municipalities +451400,Infrastructure,Infrastructure +538651,Climate,Climate +451204,Environment,Environment +451225,Agriculture,Agriculture +535088,Health,Health +456635,Economic Development,Economic Development +456635,Industry,Industry +458423,Research and Development,Research and Development +451286,Budget,Budget +465018,Economic Development,Economic Development +465018,Environment,Environment +458907,Research and Development,Research and Development +463306,Economic Development,Economic Development +458034,Health,Health +512065,Regional Development,Regional Development +458035,Research and Development,Research and Development +542460,Employment and Training,Employment and Training +461730,Government Procurement,Government Procurement +451317,Housing,Housing +464881,Economic Development,Economic Development +464881,Immigration,Immigration +454547,Health,Health +460387,Industry,Industry +453963,Economic Development,Economic Development +453963,Energy,Energy +453965,Immigration,Immigration +453963,Industry,Industry +453962,International Trade,International Trade +453965,Regional Development,Regional Development +453966,Sports,Sports +453966,Tourism,Tourism +474885,Economic Development,Economic Development +461942,Industry,Industry +522762,Infrastructure,Infrastructure +476859,Labour,Labour +508438,Transportation,Transportation +455342,Justice and Law Enforcement,Justice and Law Enforcement +502472,Employment and Training,Employment and Training +467996,Government Procurement,Government Procurement +459827,Health,Health +454793,Justice and Law Enforcement,Justice and Law Enforcement +451426,Employment and Training,Employment and Training +451426,Intellectual Property,Intellectual Property +451430,Employment and Training,Employment and Training +451430,Intellectual Property,Intellectual Property +451432,Employment and Training,Employment and Training +451432,Intellectual Property,Intellectual Property +451436,Employment and Training,Employment and Training +451436,Intellectual Property,Intellectual Property +451437,Employment and Training,Employment and Training +451437,Intellectual Property,Intellectual Property +453166,Budget,Budget +456675,Economic Development,Economic Development +453166,Environment,Environment +453166,Transportation,Transportation +496898,Economic Development,Economic Development +526839,Environment,Environment +456855,Energy,Energy +463318,Industry,Industry +463317,Industry,Industry +463316,Industry,Industry +463315,Industry,Industry +463309,Industry,Industry +463308,Industry,Industry +463306,Industry,Industry +463304,Industry,Industry +453962,Economic Development,Economic Development +453961,Economic Development,Economic Development +453966,Economic Development,Economic Development +453965,Economic Development,Economic Development +453961,International Trade,International Trade +522757,Infrastructure,Infrastructure +508438,Infrastructure,Infrastructure +474886,Transportation,Transportation +463909,Transportation,Transportation +533943,Transportation,Transportation +522762,Transportation,Transportation +522757,Transportation,Transportation +451408,Justice and Law Enforcement,Justice and Law Enforcement +487259,Justice and Law Enforcement,Justice and Law Enforcement +487100,Employment and Training,Employment and Training +458241,Government Procurement,Government Procurement +458240,Government Procurement,Government Procurement +487100,Government Procurement,Government Procurement +479623,Government Procurement,Government Procurement +475248,Government Procurement,Government Procurement +472971,Government Procurement,Government Procurement +472949,Government Procurement,Government Procurement +472939,Government Procurement,Government Procurement +467998,Government Procurement,Government Procurement +454791,Justice and Law Enforcement,Justice and Law Enforcement +454789,Justice and Law Enforcement,Justice and Law Enforcement +518599,Justice and Law Enforcement,Justice and Law Enforcement +499773,Justice and Law Enforcement,Justice and Law Enforcement +484693,Justice and Law Enforcement,Justice and Law Enforcement +484692,Justice and Law Enforcement,Justice and Law Enforcement +475255,Justice and Law Enforcement,Justice and Law Enforcement +472985,Justice and Law Enforcement,Justice and Law Enforcement +454795,Justice and Law Enforcement,Justice and Law Enforcement +456124,Economic Development,Economic Development +453165,Environment,Environment +453160,Environment,Environment +456675,Environment,Environment +456124,Environment,Environment +454859,Environment,Environment +453165,Transportation,Transportation +453160,Transportation,Transportation +456692,Transportation,Transportation +456675,Transportation,Transportation +456124,Transportation,Transportation +454859,Transportation,Transportation +478425,Economic Development,Economic Development +451448,Economic Development,Economic Development +526838,Economic Development,Economic Development +504429,Economic Development,Economic Development +501735,Economic Development,Economic Development +501733,Economic Development,Economic Development +496905,Economic Development,Economic Development +496904,Economic Development,Economic Development +496903,Economic Development,Economic Development +526838,Environment,Environment +526837,Environment,Environment +501928,Environment,Environment +496901,Environment,Environment +496900,Environment,Environment +451448,Environment,Environment +528647,Environment,Environment +530744,Energy,Energy +529159,Energy,Energy +526873,Energy,Energy +503905,Energy,Energy +495017,Energy,Energy +489072,Energy,Energy +482917,Energy,Energy +479736,Energy,Energy +466641,Energy,Energy +466639,Energy,Energy +466637,Energy,Energy +463202,Energy,Energy +460740,Energy,Energy +460739,Energy,Energy +460738,Energy,Energy +460737,Energy,Energy +460736,Energy,Energy +460496,Energy,Energy +458475,Energy,Energy +461990,Budget,Budget +529550,Budget,Budget +453500,Budget,Budget +453494,Budget,Budget +453485,Budget,Budget +453472,Budget,Budget +453459,Budget,Budget +453410,Budget,Budget +453353,Budget,Budget +453346,Budget,Budget +453342,Budget,Budget +453341,Budget,Budget +453337,Budget,Budget +453289,Budget,Budget +453245,Budget,Budget +502588,Budget,Budget +491914,Budget,Budget +487036,Budget,Budget +487035,Budget,Budget +487033,Budget,Budget +487031,Budget,Budget +487029,Budget,Budget +487025,Budget,Budget +487024,Budget,Budget +483480,Budget,Budget +479177,Budget,Budget +479175,Budget,Budget +479171,Budget,Budget +479169,Budget,Budget +477620,Budget,Budget +468917,Budget,Budget +468896,Budget,Budget +468893,Budget,Budget +467189,Employment and Training,Employment and Training +467131,Employment and Training,Employment and Training +464011,Employment and Training,Employment and Training +459500,Employment and Training,Employment and Training +455498,Employment and Training,Employment and Training +454689,Employment and Training,Employment and Training +454013,Employment and Training,Employment and Training +454011,Employment and Training,Employment and Training +454005,Employment and Training,Employment and Training +454002,Employment and Training,Employment and Training +467218,Employment and Training,Employment and Training +467216,Employment and Training,Employment and Training +467212,Employment and Training,Employment and Training +467209,Employment and Training,Employment and Training +454005,Environment,Environment +454002,Environment,Environment +522257,Environment,Environment +462502,Environment,Environment +461385,Environment,Environment +459500,Environment,Environment +454689,Environment,Environment +454013,Environment,Environment +454002,Immigration,Immigration +509809,Immigration,Immigration +454689,Immigration,Immigration +454013,Immigration,Immigration +454011,Immigration,Immigration +461498,Intellectual Property,Intellectual Property +454689,Intellectual Property,Intellectual Property +454013,Intellectual Property,Intellectual Property +454011,Intellectual Property,Intellectual Property +454005,Intellectual Property,Intellectual Property +541041,Immigration,Immigration +539488,Immigration,Immigration +504359,Immigration,Immigration +498366,Immigration,Immigration +477469,Immigration,Immigration +477468,Immigration,Immigration +454323,Agriculture,Agriculture +451804,Agriculture,Agriculture +505361,Agriculture,Agriculture +505360,Agriculture,Agriculture +491795,Agriculture,Agriculture +491794,Agriculture,Agriculture +491793,Agriculture,Agriculture +466955,Agriculture,Agriculture +465377,Agriculture,Agriculture +465376,Agriculture,Agriculture +465377,International Trade,International Trade +465376,International Trade,International Trade +454324,International Trade,International Trade +454323,International Trade,International Trade +451804,International Trade,International Trade +505361,International Trade,International Trade +505360,International Trade,International Trade +491795,International Trade,International Trade +491794,International Trade,International Trade +491793,International Trade,International Trade +455267,Education,Education +455263,Education,Education +455284,Education,Education +455275,Education,Education +455267,International Relations,International Relations +453125,Economic Development,Economic Development +453124,Economic Development,Economic Development +453130,Economic Development,Economic Development +453129,Economic Development,Economic Development +453125,Transportation,Transportation +453124,Transportation,Transportation +455200,Transportation,Transportation +453130,Transportation,Transportation +453129,Transportation,Transportation +453128,Transportation,Transportation +456123,Transportation,Transportation +455808,Transportation,Transportation +455810,Environment,Environment +457124,International Trade,International Trade +452028,International Trade,International Trade +460683,International Trade,International Trade +460682,International Trade,International Trade +460680,International Trade,International Trade +460678,International Trade,International Trade +460673,International Trade,International Trade +460670,International Trade,International Trade +460669,International Trade,International Trade +460668,International Trade,International Trade +460667,International Trade,International Trade +460666,International Trade,International Trade +460665,International Trade,International Trade +460657,International Trade,International Trade +457129,International Trade,International Trade +460679,International Trade,International Trade +460677,International Trade,International Trade +460674,International Trade,International Trade +460672,International Trade,International Trade +460671,International Trade,International Trade +452035,International Trade,International Trade +452048,Internal Trade,Internal Trade +485529,Justice and Law Enforcement,Justice and Law Enforcement +458057,Infrastructure,Infrastructure +458050,Infrastructure,Infrastructure +454074,Infrastructure,Infrastructure +461590,Infrastructure,Infrastructure +460284,Infrastructure,Infrastructure +459144,Infrastructure,Infrastructure +459140,Infrastructure,Infrastructure +459135,Infrastructure,Infrastructure +459133,Infrastructure,Infrastructure +458996,Infrastructure,Infrastructure +458995,Infrastructure,Infrastructure +458069,Infrastructure,Infrastructure +458067,Infrastructure,Infrastructure +458066,Infrastructure,Infrastructure +458688,International Trade,International Trade +457194,International Trade,International Trade +457172,International Trade,International Trade +452154,International Trade,International Trade +506921,International Trade,International Trade +506920,International Trade,International Trade +506917,International Trade,International Trade +500650,International Trade,International Trade +500646,International Trade,International Trade +500641,International Trade,International Trade +493194,International Trade,International Trade +493185,International Trade,International Trade +484422,International Trade,International Trade +477307,International Trade,International Trade +477303,International Trade,International Trade +477298,International Trade,International Trade +477293,International Trade,International Trade +477283,International Trade,International Trade +477275,International Trade,International Trade +477272,International Trade,International Trade +467008,International Trade,International Trade +454416,Agriculture,Agriculture +454415,Agriculture,Agriculture +454418,Agriculture,Agriculture +454416,Climate,Climate +454415,Climate,Climate +454418,Climate,Climate +454416,Economic Development,Economic Development +454415,Economic Development,Economic Development +454418,Economic Development,Economic Development +454416,Environment,Environment +454415,Environment,Environment +454418,Environment,Environment +454416,Health,Health +454415,Health,Health +454418,Health,Health +454416,Industry,Industry +454415,Industry,Industry +454418,Industry,Industry +454416,Regional Development,Regional Development +454415,Regional Development,Regional Development +454418,Regional Development,Regional Development +454418,Small Business,Small Business +454417,Small Business,Small Business +454416,Small Business,Small Business +512321,Industry,Industry +511690,Industry,Industry +488705,Industry,Industry +483274,Industry,Industry +482908,Industry,Industry +481388,Industry,Industry +478973,Industry,Industry +478716,Industry,Industry +476991,Industry,Industry +476225,Industry,Industry +463374,Industry,Industry +462885,Industry,Industry +460277,Industry,Industry +460276,Industry,Industry +542322,Industry,Industry +530598,Industry,Industry +530553,Industry,Industry +524075,Industry,Industry +523746,Industry,Industry +520718,Industry,Industry +519126,Industry,Industry +518805,Industry,Industry +516871,Industry,Industry +516379,Industry,Industry +516351,Industry,Industry +516118,Industry,Industry +478973,Infrastructure,Infrastructure +478716,Infrastructure,Infrastructure +460277,Infrastructure,Infrastructure +460276,Infrastructure,Infrastructure +542322,Infrastructure,Infrastructure +523746,Infrastructure,Infrastructure +516118,Infrastructure,Infrastructure +472178,Budget,Budget +471640,Budget,Budget +471640,Economic Development,Economic Development +471639,Economic Development,Economic Development +476674,Economic Development,Economic Development +471640,Regional Development,Regional Development +471639,Regional Development,Regional Development +476674,Regional Development,Regional Development +471639,Taxation and Finance,Taxation and Finance +505024,Employment and Training,Employment and Training +454697,Economic Development,Economic Development +454696,Economic Development,Economic Development +454696,International Trade,International Trade +457433,International Trade,International Trade +454697,Transportation,Transportation +454696,Transportation,Transportation +453168,Health,Health +453167,Health,Health +534620,Health,Health +534545,Health,Health +534541,Health,Health +534537,Health,Health +534536,Health,Health +534531,Health,Health +453173,Health,Health +453172,Health,Health +453171,Health,Health +453168,Small Business,Small Business +453157,Budget,Budget +453157,Health,Health +453155,Health,Health +453164,Health,Health +453162,Health,Health +453161,Health,Health +453159,Health,Health +468173,Government Procurement,Government Procurement +465204,Government Procurement,Government Procurement +461870,Justice and Law Enforcement,Justice and Law Enforcement +460070,Justice and Law Enforcement,Justice and Law Enforcement +485339,Justice and Law Enforcement,Justice and Law Enforcement +468173,Justice and Law Enforcement,Justice and Law Enforcement +465205,Justice and Law Enforcement,Justice and Law Enforcement +461870,Small Business,Small Business +460070,Small Business,Small Business +485339,Small Business,Small Business +468173,Small Business,Small Business +465205,Small Business,Small Business +468173,Taxation and Finance,Taxation and Finance +465204,Taxation and Finance,Taxation and Finance +468746,Infrastructure,Infrastructure +452875,Infrastructure,Infrastructure +511292,Infrastructure,Infrastructure +511290,Infrastructure,Infrastructure +511289,Infrastructure,Infrastructure +511284,Infrastructure,Infrastructure +508384,Infrastructure,Infrastructure +508380,Infrastructure,Infrastructure +480218,Infrastructure,Infrastructure +470608,Infrastructure,Infrastructure +468749,Infrastructure,Infrastructure +468748,Infrastructure,Infrastructure +487510,Environment,Environment +452975,Environment,Environment +532516,Environment,Environment +518327,Environment,Environment +511021,Environment,Environment +508155,Environment,Environment +459887,Economic Development,Economic Development +454393,Economic Development,Economic Development +468593,Economic Development,Economic Development +486876,Climate,Climate +486867,Climate,Climate +534706,Climate,Climate +530441,Climate,Climate +530440,Climate,Climate +530439,Climate,Climate +530436,Climate,Climate +530435,Climate,Climate +456514,Economic Development,Economic Development +456318,Economic Development,Economic Development +456518,Economic Development,Economic Development +456517,Economic Development,Economic Development +456410,Economic Development,Economic Development +456409,Economic Development,Economic Development +456414,Economic Development,Economic Development +456413,Economic Development,Economic Development +456412,Economic Development,Economic Development +456411,Employment and Training,Employment and Training +456410,Employment and Training,Employment and Training +456414,Employment and Training,Employment and Training +456413,Employment and Training,Employment and Training +456410,Health,Health +456409,Health,Health +456414,Health,Health +456413,Health,Health +456412,Health,Health +456411,Industry,Industry +456410,Industry,Industry +456414,Industry,Industry +456413,Industry,Industry +456410,Research and Development,Research and Development +456409,Research and Development,Research and Development +456414,Research and Development,Research and Development +456413,Research and Development,Research and Development +456412,Research and Development,Research and Development +456410,Small Business,Small Business +456409,Small Business,Small Business +456414,Small Business,Small Business +456413,Small Business,Small Business +456412,Small Business,Small Business +453097,Small Business,Small Business +453096,Small Business,Small Business +453102,Small Business,Small Business +457257,Agriculture,Agriculture +457255,Agriculture,Agriculture +456264,Consumer Issues,Consumer Issues +456262,Industry,Industry +456261,Industry,Industry +456269,Industry,Industry +456268,Industry,Industry +456267,Industry,Industry +456266,Industry,Industry +456265,Industry,Industry +456264,Industry,Industry +456264,Agriculture,Agriculture +456263,Agriculture,Agriculture +456269,Agriculture,Agriculture +456268,Agriculture,Agriculture +456267,Agriculture,Agriculture +456266,Agriculture,Agriculture +456265,Employment and Training,Employment and Training +456263,Employment and Training,Employment and Training +456268,Employment and Training,Employment and Training +456267,Employment and Training,Employment and Training +456262,Small Business,Small Business +456261,Small Business,Small Business +456269,Small Business,Small Business +456268,Small Business,Small Business +456267,Small Business,Small Business +456266,Small Business,Small Business +456265,Small Business,Small Business +456264,Small Business,Small Business +456268,Health,Health +456267,Health,Health +456266,Health,Health +456265,Health,Health +456264,Health,Health +456263,Health,Health +456262,Health,Health +456261,Health,Health +456262,Economic Development,Economic Development +456261,Economic Development,Economic Development +456269,Economic Development,Economic Development +456268,Economic Development,Economic Development +456267,Economic Development,Economic Development +456266,Economic Development,Economic Development +456265,Economic Development,Economic Development +456264,Economic Development,Economic Development +456262,Research and Development,Research and Development +456261,Research and Development,Research and Development +456269,Research and Development,Research and Development +456268,Research and Development,Research and Development +456267,Research and Development,Research and Development +456266,Research and Development,Research and Development +456265,Research and Development,Research and Development +456264,Research and Development,Research and Development +454787,Government Procurement,Government Procurement +454785,Government Procurement,Government Procurement +493686,Economic Development,Economic Development +455484,Consumer Issues,Consumer Issues +455484,Economic Development,Economic Development +455484,Financial Institutions,Financial Institutions +455484,International Trade,International Trade +455484,Small Business,Small Business +459348,Government Procurement,Government Procurement +464593,Small Business,Small Business +460725,Small Business,Small Business +470704,Small Business,Small Business +457385,Economic Development,Economic Development +457382,Economic Development,Economic Development +457390,Economic Development,Economic Development +457385,Infrastructure,Infrastructure +457382,Infrastructure,Infrastructure +457390,Infrastructure,Infrastructure +457397,Agriculture,Agriculture +457396,Agriculture,Agriculture +528730,Agriculture,Agriculture +489048,Agriculture,Agriculture +489034,Agriculture,Agriculture +489033,Agriculture,Agriculture +489031,Agriculture,Agriculture +489030,Agriculture,Agriculture +464329,Agriculture,Agriculture +456959,Agriculture,Agriculture +456958,Agriculture,Agriculture +458226,Agriculture,Agriculture +456959,Economic Development,Economic Development +456958,Economic Development,Economic Development +458226,Economic Development,Economic Development +457983,Economic Development,Economic Development +456959,Regional Development,Regional Development +456958,Regional Development,Regional Development +458226,Regional Development,Regional Development +457983,Regional Development,Regional Development +457350,Health,Health +455878,Health,Health +457362,Health,Health +457361,Health,Health +457358,Health,Health +457354,Health,Health +457350,Regional Development,Regional Development +455878,Regional Development,Regional Development +457367,Regional Development,Regional Development +457363,Regional Development,Regional Development +457362,Regional Development,Regional Development +457360,Regional Development,Regional Development +457355,Regional Development,Regional Development +457353,Regional Development,Regional Development +456560,Health,Health +453950,Taxation and Finance,Taxation and Finance +497822,Sports,Sports +497816,Sports,Sports +491876,Sports,Sports +488541,Sports,Sports +488537,Sports,Sports +486471,Sports,Sports +485939,Sports,Sports +485784,Sports,Sports +485408,Sports,Sports +480771,Sports,Sports +478679,Sports,Sports +478490,Sports,Sports +477941,Sports,Sports +477913,Sports,Sports +476302,Sports,Sports +476163,Sports,Sports +474124,Sports,Sports +473987,Sports,Sports +472115,Sports,Sports +472113,Sports,Sports +471647,Sports,Sports +471547,Sports,Sports +471495,Sports,Sports +470577,Sports,Sports +469467,Sports,Sports +469383,Sports,Sports +469368,Sports,Sports +466514,Sports,Sports +461584,Sports,Sports +511875,Sports,Sports +506600,Sports,Sports +500382,Sports,Sports +499998,Sports,Sports +469383,Agriculture,Agriculture +469368,Agriculture,Agriculture +506600,Agriculture,Agriculture +500382,Agriculture,Agriculture +499998,Agriculture,Agriculture +498960,Agriculture,Agriculture +497822,Agriculture,Agriculture +497816,Agriculture,Agriculture +496603,Agriculture,Agriculture +496596,Agriculture,Agriculture +496565,Agriculture,Agriculture +491876,Agriculture,Agriculture +488541,Agriculture,Agriculture +488537,Agriculture,Agriculture +486471,Agriculture,Agriculture +485784,Agriculture,Agriculture +485408,Agriculture,Agriculture +476302,Agriculture,Agriculture +474124,Agriculture,Agriculture +472115,Agriculture,Agriculture +472113,Agriculture,Agriculture +471647,Agriculture,Agriculture +471547,Agriculture,Agriculture +471495,Agriculture,Agriculture +470577,Agriculture,Agriculture +499998,Budget,Budget +472113,Immigration,Immigration +463117,Immigration,Immigration +463108,Immigration,Immigration +463107,Immigration,Immigration +469383,Employment and Training,Employment and Training +469368,Employment and Training,Employment and Training +480771,Employment and Training,Employment and Training +472115,Employment and Training,Employment and Training +472113,Employment and Training,Employment and Training +471647,Employment and Training,Employment and Training +471495,Employment and Training,Employment and Training +470577,Employment and Training,Employment and Training +463107,Economic Development,Economic Development +461584,Economic Development,Economic Development +511875,Economic Development,Economic Development +497816,Economic Development,Economic Development +466514,Economic Development,Economic Development +463117,Economic Development,Economic Development +469383,Justice and Law Enforcement,Justice and Law Enforcement +469368,Justice and Law Enforcement,Justice and Law Enforcement +466514,Justice and Law Enforcement,Justice and Law Enforcement +463108,Justice and Law Enforcement,Justice and Law Enforcement +511875,Justice and Law Enforcement,Justice and Law Enforcement +506600,Justice and Law Enforcement,Justice and Law Enforcement +500382,Justice and Law Enforcement,Justice and Law Enforcement +499998,Justice and Law Enforcement,Justice and Law Enforcement +497822,Justice and Law Enforcement,Justice and Law Enforcement +497816,Justice and Law Enforcement,Justice and Law Enforcement +496603,Justice and Law Enforcement,Justice and Law Enforcement +496596,Justice and Law Enforcement,Justice and Law Enforcement +496565,Justice and Law Enforcement,Justice and Law Enforcement +491876,Justice and Law Enforcement,Justice and Law Enforcement +488541,Justice and Law Enforcement,Justice and Law Enforcement +488537,Justice and Law Enforcement,Justice and Law Enforcement +486471,Justice and Law Enforcement,Justice and Law Enforcement +485939,Justice and Law Enforcement,Justice and Law Enforcement +485784,Justice and Law Enforcement,Justice and Law Enforcement +485408,Justice and Law Enforcement,Justice and Law Enforcement +478679,Justice and Law Enforcement,Justice and Law Enforcement +478490,Justice and Law Enforcement,Justice and Law Enforcement +477941,Justice and Law Enforcement,Justice and Law Enforcement +477913,Justice and Law Enforcement,Justice and Law Enforcement +476302,Justice and Law Enforcement,Justice and Law Enforcement +476163,Justice and Law Enforcement,Justice and Law Enforcement +474124,Justice and Law Enforcement,Justice and Law Enforcement +473987,Justice and Law Enforcement,Justice and Law Enforcement +472115,Justice and Law Enforcement,Justice and Law Enforcement +472113,Justice and Law Enforcement,Justice and Law Enforcement +471647,Justice and Law Enforcement,Justice and Law Enforcement +471547,Justice and Law Enforcement,Justice and Law Enforcement +471495,Justice and Law Enforcement,Justice and Law Enforcement +470577,Justice and Law Enforcement,Justice and Law Enforcement +454293,Economic Development,Economic Development +454289,Environment,Environment +454286,Environment,Environment +479684,Economic Development,Economic Development +457156,Economic Development,Economic Development +481301,Economic Development,Economic Development +481301,Environment,Environment +481298,Environment,Environment +479684,Environment,Environment +479684,Research and Development,Research and Development +457156,Research and Development,Research and Development +481301,Research and Development,Research and Development +456257,Climate,Climate +456256,Climate,Climate +458489,Climate,Climate +456257,Environment,Environment +456256,Environment,Environment +454292,Economic Development,Economic Development +454290,Environment,Environment +454287,Environment,Environment +521503,Economic Development,Développement économique +516591,Economic Development,Développement économique +515393,Economic Development,Développement économique +515392,Economic Development,Développement économique +507871,Economic Development,Développement économique +507869,Economic Development,Développement économique +507857,Economic Development,Développement économique +507853,Economic Development,Développement économique +500808,Economic Development,Développement économique +500807,Economic Development,Développement économique +500806,Economic Development,Développement économique +500804,Economic Development,Développement économique +492026,Economic Development,Développement économique +490260,Economic Development,Développement économique +488648,Economic Development,Développement économique +485468,Economic Development,Développement économique +476576,Economic Development,Développement économique +474160,Economic Development,Développement économique +472314,Economic Development,Développement économique +464551,Economic Development,Développement économique +527497,Economic Development,Développement économique +472314,Regional Development,Développement régional +464551,Regional Development,Développement régional +527497,Regional Development,Développement régional +524347,Regional Development,Développement régional +521503,Regional Development,Développement régional +516591,Regional Development,Développement régional +515393,Regional Development,Développement régional +515392,Regional Development,Développement régional +507871,Regional Development,Développement régional +507869,Regional Development,Développement régional +507857,Regional Development,Développement régional +507853,Regional Development,Développement régional +500808,Regional Development,Développement régional +500807,Regional Development,Développement régional +500806,Regional Development,Développement régional +500804,Regional Development,Développement régional +492026,Regional Development,Développement régional +488648,Regional Development,Développement régional +485468,Regional Development,Développement régional +476576,Regional Development,Développement régional +472314,Tourism,Tourisme +464551,Tourism,Tourisme +527497,Tourism,Tourisme +524347,Tourism,Tourisme +521503,Tourism,Tourisme +516591,Tourism,Tourisme +515393,Tourism,Tourisme +515392,Tourism,Tourisme +507871,Tourism,Tourisme +507869,Tourism,Tourisme +507857,Tourism,Tourisme +507853,Tourism,Tourisme +500808,Tourism,Tourisme +500807,Tourism,Tourisme +500806,Tourism,Tourisme +500804,Tourism,Tourisme +492026,Tourism,Tourisme +490260,Tourism,Tourisme +488648,Tourism,Tourisme +485468,Tourism,Tourisme +476576,Tourism,Tourisme +474160,Security,Security +472314,Security,Security +464551,Security,Security +515393,Security,Security +515392,Security,Security +500808,Security,Security +500807,Security,Security +500806,Security,Security +500804,Security,Security +492026,Security,Security +488648,Security,Security +485468,Security,Security +454728,Agriculture,Agriculture +454726,Agriculture,Agriculture +458540,Agriculture,Agriculture +454737,Agriculture,Agriculture +454734,Agriculture,Agriculture +495095,Infrastructure,Infrastructure +493086,Infrastructure,Infrastructure +479994,Infrastructure,Infrastructure +479993,Infrastructure,Infrastructure +479402,Infrastructure,Infrastructure +479400,Infrastructure,Infrastructure +479396,Infrastructure,Infrastructure +464802,Infrastructure,Infrastructure +456691,Infrastructure,Infrastructure +456690,Infrastructure,Infrastructure +456688,Infrastructure,Infrastructure +453514,Infrastructure,Infrastructure +544366,Infrastructure,Infrastructure +543436,Infrastructure,Infrastructure +543424,Infrastructure,Infrastructure +543422,Infrastructure,Infrastructure +543419,Infrastructure,Infrastructure +535916,Infrastructure,Infrastructure +535915,Infrastructure,Infrastructure +535912,Infrastructure,Infrastructure +535911,Infrastructure,Infrastructure +535910,Infrastructure,Infrastructure +535909,Infrastructure,Infrastructure +535908,Infrastructure,Infrastructure +535907,Infrastructure,Infrastructure +535906,Infrastructure,Infrastructure +531618,Infrastructure,Infrastructure +531609,Infrastructure,Infrastructure +527149,Infrastructure,Infrastructure +523140,Infrastructure,Infrastructure +523136,Infrastructure,Infrastructure +523131,Infrastructure,Infrastructure +523124,Infrastructure,Infrastructure +521049,Infrastructure,Infrastructure +518192,Infrastructure,Infrastructure +518181,Infrastructure,Infrastructure +514321,Infrastructure,Infrastructure +513635,Infrastructure,Infrastructure +513634,Infrastructure,Infrastructure +513633,Infrastructure,Infrastructure +513632,Infrastructure,Infrastructure +513631,Infrastructure,Infrastructure +513630,Infrastructure,Infrastructure +513629,Infrastructure,Infrastructure +513628,Infrastructure,Infrastructure +513627,Infrastructure,Infrastructure +513626,Infrastructure,Infrastructure +513624,Infrastructure,Infrastructure +513623,Infrastructure,Infrastructure +513622,Infrastructure,Infrastructure +513621,Infrastructure,Infrastructure +513619,Infrastructure,Infrastructure +513617,Infrastructure,Infrastructure +513616,Infrastructure,Infrastructure +453604,Infrastructure,Infrastructure +453603,Infrastructure,Infrastructure +453604,Economic Development,Economic Development +453603,Economic Development,Economic Development +457906,Agriculture,Agriculture +457905,Agriculture,Agriculture +472643,Agriculture,Agriculture +458081,Agriculture,Agriculture +457906,Education,Education +457905,Education,Education +485635,Education,Education +485634,Education,Education +472643,Education,Education +458081,Education,Education +457906,Health,Health +457905,Health,Health +485635,Health,Health +485634,Health,Health +479200,Health,Health +472648,Health,Health +472647,Health,Health +472646,Health,Health +472645,Health,Health +472644,Health,Health +472643,Health,Health +458081,Health,Health +458041,Infrastructure,Infrastructure +456236,Infrastructure,Infrastructure +455472,Economic Development,Economic Development +455465,Economic Development,Economic Development +456969,Economic Development,Economic Development +455472,Infrastructure,Infrastructure +455465,Infrastructure,Infrastructure +456969,Infrastructure,Infrastructure +455472,Transportation,Transportation +455465,Transportation,Transportation +456969,Transportation,Transportation +491399,Transportation,Transportation +457384,Economic Development,Economic Development +457383,Economic Development,Economic Development +457391,Economic Development,Economic Development +457384,Infrastructure,Infrastructure +457383,Infrastructure,Infrastructure +457391,Infrastructure,Infrastructure +466314,Climate,Climate +456051,Economic Development,Economic Development +490044,Economic Development,Economic Development +487310,Economic Development,Economic Development +487309,Economic Development,Economic Development +487305,Economic Development,Economic Development +466323,Economic Development,Economic Development +466320,Economic Development,Economic Development +466316,Economic Development,Economic Development +466314,Economic Development,Economic Development +466310,Economic Development,Economic Development +456053,Energy,Energy +456051,Energy,Energy +490044,Energy,Energy +487310,Energy,Energy +487309,Energy,Energy +487305,Energy,Energy +466323,Energy,Energy +466320,Energy,Energy +466314,Energy,Energy +466314,Environment,Environment +466310,Environment,Environment +466323,Environment,Environment +466320,Environment,Environment +456053,Infrastructure,Infrastructure +456051,Infrastructure,Infrastructure +490044,Infrastructure,Infrastructure +487310,Infrastructure,Infrastructure +487309,Infrastructure,Infrastructure +487305,Infrastructure,Infrastructure +466323,Infrastructure,Infrastructure +466320,Infrastructure,Infrastructure +466316,Infrastructure,Infrastructure +466314,Infrastructure,Infrastructure +455829,Agriculture,Agriculture +511903,Elections,Elections +511900,Elections,Elections +468622,Government Procurement,Government Procurement +468621,Government Procurement,Government Procurement +476005,Energy,Energy +473644,Energy,Energy +473642,Energy,Energy +468622,Energy,Energy +468621,Energy,Energy +468620,Energy,Energy +468619,Energy,Energy +468618,Energy,Energy +511324,Energy,Energy +511323,Energy,Energy +499606,Energy,Energy +493683,Energy,Energy +487515,Energy,Energy +484652,Energy,Energy +468619,Climate,Climate +468618,Climate,Climate +511324,Climate,Climate +511323,Climate,Climate +499606,Climate,Climate +487515,Climate,Climate +484652,Climate,Climate +453804,Energy,Energy +451518,Employment and Training,Employment and Training +451519,Employment and Training,Employment and Training +456234,Government Procurement,Government Procurement +480523,Economic Development,Economic Development +461991,Budget,Budget +451644,Elections,Elections +467207,Employment and Training,Employment and Training +454011,Environment,Environment +454005,Immigration,Immigration +454002,Intellectual Property,Intellectual Property +453062,International Trade,International Trade +453062,Agriculture,Agriculture +451705,Economic Development,Economic Development +451730,Immigration,Immigration +451733,Justice and Law Enforcement,Justice and Law Enforcement +454324,Agriculture,Agriculture +466955,International Trade,International Trade +451826,Industry,Industry +451826,Intellectual Property,Intellectual Property +451826,Employment and Training,Employment and Training +451826,Consumer Issues,Consumer Issues +451835,Consumer Issues,Consumer Issues +451835,Employment and Training,Employment and Training +451835,Intellectual Property,Intellectual Property +451835,Industry,Industry +455263,International Trade,International Trade +455271,Education,Education +455284,International Relations,International Relations +455329,Official Languages,Official Languages +455307,Intellectual Property,Intellectual Property +451909,Security,Security +453126,Economic Development,Economic Development +453129,Labour,Labour +453126,Transportation,Transportation +471774,Transportation,Transportation +451930,Economic Development,Economic Development +451930,Energy,Energy +465994,Environment,Environment +451980,Economic Development,Economic Development +459886,Economic Development,Economic Development +457127,International Trade,International Trade +460685,International Trade,International Trade +460663,Internal Trade,Internal Trade +485530,Justice and Law Enforcement,Justice and Law Enforcement +458062,Infrastructure,Infrastructure +467005,International Trade,International Trade +452159,International Development,International Development +452161,Economic Development,Economic Development +454417,Agriculture,Agriculture +454417,Climate,Climate +454417,Economic Development,Economic Development +454417,Environment,Environment +454417,Health,Health +454417,Industry,Industry +454417,Regional Development,Regional Development +454415,Small Business,Small Business +452234,Sports,Sports +458905,International Relations,International Relations +458905,International Trade,International Trade +452258,International Relations,International Relations +523746,Government Procurement,Government Procurement +514842,Industry,Industry +512321,Infrastructure,Infrastructure +458011,Justice and Law Enforcement,Justice and Law Enforcement +476674,Budget,Budget +472178,Economic Development,Economic Development +472178,Regional Development,Regional Development +476674,Small Business,Small Business +476674,Taxation and Finance,Taxation and Finance +452537,International Trade,International Trade +452543,Employment and Training,Employment and Training +457433,Economic Development,Economic Development +454697,International Trade,International Trade +457433,Transportation,Transportation +453169,Health,Health +453169,Small Business,Small Business +453168,Taxation and Finance,Taxation and Finance +452646,Research and Development,Research and Development +453158,Budget,Budget +453158,Health,Health +453157,Small Business,Small Business +485339,Government Procurement,Government Procurement +465204,Justice and Law Enforcement,Justice and Law Enforcement +468173,Labour,Labour +465204,Small Business,Small Business +485339,Taxation and Finance,Taxation and Finance +468747,Infrastructure,Infrastructure +499127,Environment,Environment +452978,Research and Development,Research and Development +468592,Economic Development,Economic Development +530432,Climate,Climate +454549,Taxation and Finance,Taxation and Finance +456516,Economic Development,Economic Development +453049,Climate,Climate +456409,Agriculture,Agriculture +456411,Economic Development,Economic Development +456412,Employment and Training,Employment and Training +456411,Health,Health +456412,Industry,Industry +456411,Research and Development,Research and Development +456411,Small Business,Small Business +453096,Consumer Issues,Consumer Issues +453098,Small Business,Small Business +453097,Taxation and Finance,Taxation and Finance +453065,Industry,Industry +457258,Agriculture,Agriculture +453083,Education,Education +465877,Industry,Industry +465877,Health,Health +465877,International Relations,International Relations +453580,Economic Development,Economic Development +460436,Energy,Energy +456267,Consumer Issues,Consumer Issues +456263,Industry,Industry +456265,Agriculture,Agriculture +456266,Employment and Training,Employment and Training +456263,Small Business,Small Business +456269,Health,Health +456263,Economic Development,Economic Development +456263,Research and Development,Research and Development +467995,Government Procurement,Government Procurement +493687,Economic Development,Economic Development +458817,Health,Health +457849,Environment,Environment +455484,Official Languages,Official Languages +455485,Consumer Issues,Consumer Issues +457662,Economic Development,Economic Development +457662,Fisheries,Fisheries +455485,Economic Development,Economic Development +455485,Financial Institutions,Financial Institutions +455485,International Trade,International Trade +455484,Privacy and Access to Information,Privacy and Access to Information +455485,Small Business,Small Business +455485,Tourism,Tourism +470704,Taxation and Finance,Taxation and Finance +459349,Government Procurement,Government Procurement +470697,Small Business,Small Business +457388,Economic Development,Economic Development +457388,Infrastructure,Infrastructure +456068,Environment,Environment +460876,Agriculture,Agriculture +457983,Agriculture,Agriculture +457836,Economic Development,Economic Development +457836,Regional Development,Regional Development +455723,Justice and Law Enforcement,Justice and Law Enforcement +457353,Health,Health +457352,Regional Development,Regional Development +456560,Employment and Training,Employment and Training +460971,Health,Health +453952,Taxation and Finance,Taxation and Finance +498960,Sports,Sports +469467,Agriculture,Agriculture +478490,Budget,Budget +480771,Immigration,Immigration +469467,Employment and Training,Employment and Training +470577,Tourism,Tourism +463108,Economic Development,Economic Development +469467,Justice and Law Enforcement,Justice and Law Enforcement +459628,Economic Development,Economic Development +454293,Environment,Environment +459628,Regional Development,Regional Development +481298,Economic Development,Economic Development +457156,Environment,Environment +481298,Research and Development,Research and Development +456258,Climate,Climate +456258,Environment,Environment +453442,Regional Development,Regional Development +459627,Economic Development,Economic Development +454292,Environment,Environment +459627,Regional Development,Regional Development +524347,Economic Development,Développement économique +474160,Regional Development,Développement régional +474160,Tourism,Tourisme +476576,Security,Security +453507,Economic Development,Economic Development +453507,Employment and Training,Employment and Training +453507,Industry,Industry +453507,Transportation,Transportation +454731,Agriculture,Agriculture +498345,Infrastructure,Infrastructure +453594,Official Languages,Official Languages +453605,Infrastructure,Infrastructure +453605,Economic Development,Economic Development +457907,Agriculture,Agriculture +457907,Education,Education +457907,Health,Health +458046,Infrastructure,Infrastructure +456345,Infrastructure,Infrastructure +456245,Intellectual Property,Intellectual Property +455163,Economic Development,Economic Development +455163,Industry,Industry +455163,International Trade,International Trade +455163,Taxation and Finance,Taxation and Finance +455163,Transportation,Transportation +455855,Economic Development,Economic Development +455855,Infrastructure,Infrastructure +455855,Transportation,Transportation +454271,Government Procurement,Government Procurement +460326,Transportation,Transportation +454218,Research and Development,Research and Development +454218,Health,Health +457389,Economic Development,Economic Development +457389,Infrastructure,Infrastructure +490044,Climate,Climate +456053,Economic Development,Economic Development +466310,Energy,Energy +466316,Environment,Environment +466310,Infrastructure,Infrastructure +466310,Agriculture,Agriculture +466316,Transportation,Transportation +453732,International Trade,International Trade +455835,Agriculture,Agriculture +455829,Economic Development,Economic Development +455838,Health,Health +453762,Elections,Elections +484652,Government Procurement,Government Procurement +482344,Energy,Energy +468620,Climate,Climate +468620,Environment,Environment +482344,Climate,Climate +468622,Climate,Climate +468621,Climate,Climate +468619,Environment,Environment +468618,Environment,Environment +493683,Environment,Environment +487515,Environment,Environment +482344,Environment,Environment +476005,Environment,Environment +473644,Environment,Environment +473642,Environment,Environment +468622,Environment,Environment +468621,Environment,Environment +499436,Science and Technology,Science and Technology +459608,Science and Technology,Science and Technology +540645,Science and Technology,Science and Technology +536580,Science and Technology,Science and Technology +536566,Science and Technology,Science and Technology +534014,Science and Technology,Science and Technology +523856,Science and Technology,Science and Technology +433284,Aboriginal Affairs,Aboriginal Affairs +433281,Aboriginal Affairs,Aboriginal Affairs +433287,Aboriginal Affairs,Aboriginal Affairs +433284,Arts and Culture,Arts and Culture +433281,Arts and Culture,Arts and Culture +433287,Arts and Culture,Arts and Culture +438226,Aboriginal Affairs,Aboriginal Affairs +438927,Science and Technology,Science and Technology +438926,Science and Technology,Science and Technology +484223,Science and Technology,Science and Technology +481614,Science and Technology,Science and Technology +475490,Science and Technology,Science and Technology +472673,Science and Technology,Science and Technology +472671,Science and Technology,Science and Technology +470378,Science and Technology,Science and Technology +459201,Science and Technology,Science and Technology +447124,Science and Technology,Science and Technology +442708,Science and Technology,Science and Technology +438933,Science and Technology,Science and Technology +438932,Science and Technology,Science and Technology +438931,Science and Technology,Science and Technology +438930,Science and Technology,Science and Technology +438929,Science and Technology,Science and Technology +529769,Aboriginal Affairs,Aboriginal Affairs +520374,Aboriginal Affairs,Aboriginal Affairs +445988,Aboriginal Affairs,Aboriginal Affairs +445987,Aboriginal Affairs,Aboriginal Affairs +444730,Aboriginal Affairs,Aboriginal Affairs +506159,Aboriginal Affairs,Aboriginal Affairs +500252,Aboriginal Affairs,Aboriginal Affairs +489147,Aboriginal Affairs,Aboriginal Affairs +488431,Aboriginal Affairs,Aboriginal Affairs +471525,Aboriginal Affairs,Aboriginal Affairs +469118,Aboriginal Affairs,Aboriginal Affairs +465626,Aboriginal Affairs,Aboriginal Affairs +465624,Aboriginal Affairs,Aboriginal Affairs +463381,Aboriginal Affairs,Aboriginal Affairs +459176,Aboriginal Affairs,Aboriginal Affairs +456398,Aboriginal Affairs,Aboriginal Affairs +453595,Aboriginal Affairs,Aboriginal Affairs +453206,Aboriginal Affairs,Aboriginal Affairs +451625,Aboriginal Affairs,Aboriginal Affairs +544586,Aboriginal Affairs,Aboriginal Affairs +532253,Aboriginal Affairs,Aboriginal Affairs +530708,Aboriginal Affairs,Aboriginal Affairs +530707,Aboriginal Affairs,Aboriginal Affairs +457523,Aboriginal Affairs,Aboriginal Affairs +457520,Aboriginal Affairs,Aboriginal Affairs +466351,Aboriginal Affairs,Aboriginal Affairs +466349,Aboriginal Affairs,Aboriginal Affairs +466338,Aboriginal Affairs,Aboriginal Affairs +457521,Aboriginal Affairs,Aboriginal Affairs +457503,Aboriginal Affairs,Aboriginal Affairs +466346,Aboriginal Affairs,Aboriginal Affairs +466344,Aboriginal Affairs,Aboriginal Affairs +457541,Aboriginal Affairs,Aboriginal Affairs +437926,Aboriginal Affairs,Aboriginal Affairs +435727,Aboriginal Affairs,Aboriginal Affairs +437930,Aboriginal Affairs,Aboriginal Affairs +437927,Aboriginal Affairs,Aboriginal Affairs +457379,Aboriginal Affairs,Aboriginal Affairs +456067,Aboriginal Affairs,Aboriginal Affairs +456064,Aboriginal Affairs,Aboriginal Affairs +456062,Aboriginal Affairs,Aboriginal Affairs +439856,Aboriginal Affairs,Aboriginal Affairs +456066,Aboriginal Affairs,Aboriginal Affairs +435591,Arts and Culture,Arts and Culture +433871,Arts and Culture,Arts and Culture +453805,Arts and Culture,Arts and Culture +456488,Arts and Culture,Arts and Culture +453807,Arts and Culture,Arts and Culture +470486,Aboriginal Affairs,Aboriginal Affairs +467344,Aboriginal Affairs,Aboriginal Affairs +543119,Aboriginal Affairs,Aboriginal Affairs +543117,Aboriginal Affairs,Aboriginal Affairs +543115,Aboriginal Affairs,Aboriginal Affairs +543112,Aboriginal Affairs,Aboriginal Affairs +543111,Aboriginal Affairs,Aboriginal Affairs +543109,Aboriginal Affairs,Aboriginal Affairs +543108,Aboriginal Affairs,Aboriginal Affairs +542927,Aboriginal Affairs,Aboriginal Affairs +537283,Aboriginal Affairs,Aboriginal Affairs +537282,Aboriginal Affairs,Aboriginal Affairs +537281,Aboriginal Affairs,Aboriginal Affairs +533809,Aboriginal Affairs,Aboriginal Affairs +533808,Aboriginal Affairs,Aboriginal Affairs +533801,Aboriginal Affairs,Aboriginal Affairs +533793,Aboriginal Affairs,Aboriginal Affairs +533790,Aboriginal Affairs,Aboriginal Affairs +513373,Aboriginal Affairs,Aboriginal Affairs +511234,Aboriginal Affairs,Aboriginal Affairs +511232,Aboriginal Affairs,Aboriginal Affairs +511230,Aboriginal Affairs,Aboriginal Affairs +508927,Aboriginal Affairs,Aboriginal Affairs +499365,Aboriginal Affairs,Aboriginal Affairs +452639,Science and Technology,Science and Technology +437733,Aboriginal Affairs,Aboriginal Affairs +509241,Arts and Culture,Arts and Culture +509230,Arts and Culture,Arts and Culture +434204,Arts and Culture,Arts and Culture +509246,Arts and Culture,Arts and Culture +509231,Arts and Culture,Arts and Culture +509229,Arts and Culture,Arts and Culture +434205,Arts and Culture,Arts and Culture +509247,Arts and Culture,Arts and Culture +509243,Arts and Culture,Arts and Culture +509239,Arts and Culture,Arts and Culture +509238,Arts and Culture,Arts and Culture +509237,Arts and Culture,Arts and Culture +509235,Arts and Culture,Arts and Culture +509234,Arts and Culture,Arts and Culture +444689,Aboriginal Affairs,Aboriginal Affairs +444688,Aboriginal Affairs,Aboriginal Affairs +444697,Aboriginal Affairs,Aboriginal Affairs +444692,Aboriginal Affairs,Aboriginal Affairs +444691,Aboriginal Affairs,Aboriginal Affairs +434941,Science and Technology,Science and Technology +434903,Science and Technology,Science and Technology +450802,Science and Technology,Science and Technology +448889,Science and Technology,Science and Technology +446409,Science and Technology,Science and Technology +446408,Science and Technology,Science and Technology +444903,Science and Technology,Science and Technology +451556,Science and Technology,Science and Technology +451554,Science and Technology,Science and Technology +466773,Science and Technology,Science and Technology +466771,Science and Technology,Science and Technology +466766,Science and Technology,Science and Technology +466765,Science and Technology,Science and Technology +466764,Science and Technology,Science and Technology +466761,Science and Technology,Science and Technology +463499,Science and Technology,Science and Technology +451561,Science and Technology,Science and Technology +451559,Science and Technology,Science and Technology +437709,Telecommunications,Telecommunications +437708,Telecommunications,Telecommunications +457803,Arts and Culture,Arts and Culture +512156,Arts and Culture,Arts and Culture +485264,Arts and Culture,Arts and Culture +476107,Arts and Culture,Arts and Culture +457811,Arts and Culture,Arts and Culture +457810,Arts and Culture,Arts and Culture +494055,Science and Technology,Science and Technology +494054,Science and Technology,Science and Technology +465834,Science and Technology,Science and Technology +465832,Science and Technology,Science and Technology +465831,Science and Technology,Science and Technology +465747,Science and Technology,Science and Technology +465746,Science and Technology,Science and Technology +437855,Aboriginal Affairs,Aboriginal Affairs +437854,Aboriginal Affairs,Aboriginal Affairs +461834,Science and Technology,Science and Technology +436565,Science and Technology,Science and Technology +444974,Science and Technology,Science and Technology +444969,Science and Technology,Science and Technology +436284,Science and Technology,Science and Technology +436281,Science and Technology,Science and Technology +436280,Science and Technology,Science and Technology +436278,Science and Technology,Science and Technology +436276,Science and Technology,Science and Technology +470855,Arts and Culture,Arts and Culture +467531,Arts and Culture,Arts and Culture +491422,Arts and Culture,Arts and Culture +484630,Arts and Culture,Arts and Culture +477346,Arts and Culture,Arts and Culture +475645,Arts and Culture,Arts and Culture +445247,Science and Technology,Science and Technology +457227,Science and Technology,Science and Technology +476822,Telecommunications,Telecommunications +469464,Telecommunications,Telecommunications +448121,Telecommunications,Telecommunications +436518,Telecommunications,Telecommunications +436516,Telecommunications,Telecommunications +436513,Telecommunications,Telecommunications +525157,Telecommunications,Telecommunications +518618,Telecommunications,Telecommunications +494058,Telecommunications,Telecommunications +454937,Arts and Culture,Arts and Culture +454934,Arts and Culture,Arts and Culture +458904,Arts and Culture,Arts and Culture +458903,Arts and Culture,Arts and Culture +458900,Arts and Culture,Arts and Culture +537973,Science and Technology,Science and Technology +537965,Science and Technology,Science and Technology +449296,Science and Technology,Science and Technology +449294,Science and Technology,Science and Technology +448433,Science and Technology,Science and Technology +445396,Science and Technology,Science and Technology +445392,Science and Technology,Science and Technology +445390,Science and Technology,Science and Technology +445388,Science and Technology,Science and Technology +445387,Science and Technology,Science and Technology +444061,Science and Technology,Science and Technology +444060,Science and Technology,Science and Technology +440523,Science and Technology,Science and Technology +440522,Science and Technology,Science and Technology +440521,Science and Technology,Science and Technology +440520,Science and Technology,Science and Technology +440519,Science and Technology,Science and Technology +440518,Science and Technology,Science and Technology +440516,Science and Technology,Science and Technology +440515,Science and Technology,Science and Technology +440514,Science and Technology,Science and Technology +440513,Science and Technology,Science and Technology +440512,Science and Technology,Science and Technology +440511,Science and Technology,Science and Technology +440510,Science and Technology,Science and Technology +440509,Science and Technology,Science and Technology +440507,Science and Technology,Science and Technology +440505,Science and Technology,Science and Technology +440499,Science and Technology,Science and Technology +440497,Science and Technology,Science and Technology +440496,Science and Technology,Science and Technology +440494,Science and Technology,Science and Technology +440489,Science and Technology,Science and Technology +440487,Science and Technology,Science and Technology +437685,Science and Technology,Science and Technology +437681,Science and Technology,Science and Technology +437672,Science and Technology,Science and Technology +437670,Science and Technology,Science and Technology +437666,Science and Technology,Science and Technology +437665,Science and Technology,Science and Technology +437664,Science and Technology,Science and Technology +437661,Science and Technology,Science and Technology +437659,Science and Technology,Science and Technology +437658,Science and Technology,Science and Technology +437656,Science and Technology,Science and Technology +437655,Science and Technology,Science and Technology +437651,Science and Technology,Science and Technology +527909,Science and Technology,Science and Technology +516219,Science and Technology,Science and Technology +516218,Science and Technology,Science and Technology +513037,Science and Technology,Science and Technology +510840,Science and Technology,Science and Technology +510839,Science and Technology,Science and Technology +510838,Science and Technology,Science and Technology +510837,Science and Technology,Science and Technology +508605,Science and Technology,Science and Technology +505040,Science and Technology,Science and Technology +501601,Science and Technology,Science and Technology +490889,Science and Technology,Science and Technology +487345,Science and Technology,Science and Technology +484403,Science and Technology,Science and Technology +481829,Science and Technology,Science and Technology +481828,Science and Technology,Science and Technology +481826,Science and Technology,Science and Technology +479511,Science and Technology,Science and Technology +477211,Science and Technology,Science and Technology +474457,Science and Technology,Science and Technology +474456,Science and Technology,Science and Technology +474454,Science and Technology,Science and Technology +474398,Science and Technology,Science and Technology +474396,Science and Technology,Science and Technology +474395,Science and Technology,Science and Technology +474380,Science and Technology,Science and Technology +472627,Science and Technology,Science and Technology +472626,Science and Technology,Science and Technology +472625,Science and Technology,Science and Technology +472624,Science and Technology,Science and Technology +472622,Science and Technology,Science and Technology +470319,Science and Technology,Science and Technology +463729,Science and Technology,Science and Technology +462197,Science and Technology,Science and Technology +462196,Science and Technology,Science and Technology +462195,Science and Technology,Science and Technology +461233,Science and Technology,Science and Technology +461232,Science and Technology,Science and Technology +461231,Science and Technology,Science and Technology +460545,Science and Technology,Science and Technology +459941,Science and Technology,Science and Technology +459939,Science and Technology,Science and Technology +458090,Science and Technology,Science and Technology +458089,Science and Technology,Science and Technology +458088,Science and Technology,Science and Technology +457311,Science and Technology,Science and Technology +454695,Science and Technology,Science and Technology +454692,Science and Technology,Science and Technology +452258,Science and Technology,Science and Technology +452256,Science and Technology,Science and Technology +452254,Science and Technology,Science and Technology +449299,Science and Technology,Science and Technology +449298,Science and Technology,Science and Technology +449297,Science and Technology,Science and Technology +438651,Broadcasting,Broadcasting +438651,Arts and Culture,Arts and Culture +440562,Broadcasting,Broadcasting +440561,Broadcasting,Broadcasting +440565,Broadcasting,Broadcasting +440564,Broadcasting,Broadcasting +440562,Arts and Culture,Arts and Culture +440561,Arts and Culture,Arts and Culture +448499,Arts and Culture,Arts and Culture +445487,Arts and Culture,Arts and Culture +445484,Arts and Culture,Arts and Culture +440564,Arts and Culture,Arts and Culture +445483,Arts and Culture,Arts and Culture +445479,Arts and Culture,Arts and Culture +436914,Science and Technology,Science and Technology +436913,Science and Technology,Science and Technology +436916,Science and Technology,Science and Technology +436914,Arts and Culture,Arts and Culture +436913,Arts and Culture,Arts and Culture +436916,Arts and Culture,Arts and Culture +439965,Science and Technology,Science and Technology +439963,Science and Technology,Science and Technology +442782,Science and Technology,Science and Technology +439158,Telecommunications,Telecommunications +439147,Telecommunications,Telecommunications +524869,Science and Technology,Science and Technology +521661,Science and Technology,Science and Technology +543073,Science and Technology,Science and Technology +543072,Science and Technology,Science and Technology +543071,Science and Technology,Science and Technology +543070,Science and Technology,Science and Technology +529418,Science and Technology,Science and Technology +529417,Science and Technology,Science and Technology +524873,Science and Technology,Science and Technology +459474,Aboriginal Affairs,Aboriginal Affairs +469459,Telecommunications,Telecommunications +448123,Telecommunications,Telecommunications +476475,Telecommunications,Telecommunications +469465,Telecommunications,Telecommunications +448126,Telecommunications,Telecommunications +456840,Science and Technology,Science and Technology +456839,Science and Technology,Science and Technology +456842,Science and Technology,Science and Technology +437079,Science and Technology,Science and Technology +444698,Aboriginal Affairs,Aboriginal Affairs +442519,Aboriginal Affairs,Aboriginal Affairs +442518,Aboriginal Affairs,Aboriginal Affairs +442516,Aboriginal Affairs,Aboriginal Affairs +442514,Aboriginal Affairs,Aboriginal Affairs +436695,Aboriginal Affairs,Aboriginal Affairs +516343,Telecommunications,Telecommunications +457998,Science and Technology,Science and Technology +451476,Science and Technology,Science and Technology +516847,Science and Technology,Science and Technology +516841,Science and Technology,Science and Technology +510113,Science and Technology,Science and Technology +507564,Science and Technology,Science and Technology +507561,Science and Technology,Science and Technology +505173,Science and Technology,Science and Technology +503635,Science and Technology,Science and Technology +503631,Science and Technology,Science and Technology +501075,Science and Technology,Science and Technology +501073,Science and Technology,Science and Technology +501072,Science and Technology,Science and Technology +497220,Science and Technology,Science and Technology +492694,Science and Technology,Science and Technology +492693,Science and Technology,Science and Technology +489380,Science and Technology,Science and Technology +489379,Science and Technology,Science and Technology +489378,Science and Technology,Science and Technology +489377,Science and Technology,Science and Technology +489376,Science and Technology,Science and Technology +489375,Science and Technology,Science and Technology +489374,Science and Technology,Science and Technology +489373,Science and Technology,Science and Technology +489370,Science and Technology,Science and Technology +489369,Science and Technology,Science and Technology +489368,Science and Technology,Science and Technology +486548,Science and Technology,Science and Technology +485544,Science and Technology,Science and Technology +483784,Science and Technology,Science and Technology +483783,Science and Technology,Science and Technology +479248,Science and Technology,Science and Technology +479247,Science and Technology,Science and Technology +478488,Science and Technology,Science and Technology +476688,Science and Technology,Science and Technology +474372,Science and Technology,Science and Technology +474370,Science and Technology,Science and Technology +462232,Science and Technology,Science and Technology +461115,Science and Technology,Science and Technology +453920,Science and Technology,Science and Technology +453919,Science and Technology,Science and Technology +453918,Science and Technology,Science and Technology +450890,Science and Technology,Science and Technology +450889,Science and Technology,Science and Technology +543160,Science and Technology,Science and Technology +539122,Science and Technology,Science and Technology +533387,Science and Technology,Science and Technology +533385,Science and Technology,Science and Technology +527758,Science and Technology,Science and Technology +521499,Science and Technology,Science and Technology +521490,Science and Technology,Science and Technology +516849,Science and Technology,Science and Technology +441037,Aboriginal Affairs,Aboriginal Affairs +441036,Aboriginal Affairs,Aboriginal Affairs +448720,Aboriginal Affairs,Aboriginal Affairs +447214,Aboriginal Affairs,Aboriginal Affairs +442885,Aboriginal Affairs,Aboriginal Affairs +442884,Aboriginal Affairs,Aboriginal Affairs +441040,Aboriginal Affairs,Aboriginal Affairs +441039,Aboriginal Affairs,Aboriginal Affairs +440822,Science and Technology,Science and Technology +440821,Science and Technology,Science and Technology +442381,Aboriginal Affairs,Aboriginal Affairs +503198,Aboriginal Affairs,Aboriginal Affairs +441597,Aboriginal Affairs,Aboriginal Affairs +441596,Aboriginal Affairs,Aboriginal Affairs +437931,Aboriginal Affairs,Aboriginal Affairs +456050,Aboriginal Affairs,Aboriginal Affairs +442287,Aboriginal Affairs,Aboriginal Affairs +437928,Aboriginal Affairs,Aboriginal Affairs +487311,Aboriginal Affairs,Aboriginal Affairs +487307,Aboriginal Affairs,Aboriginal Affairs +487306,Aboriginal Affairs,Aboriginal Affairs +466333,Aboriginal Affairs,Aboriginal Affairs +466330,Aboriginal Affairs,Aboriginal Affairs +456055,Science and Technology,Science and Technology +456050,Science and Technology,Science and Technology +487311,Science and Technology,Science and Technology +487307,Science and Technology,Science and Technology +487306,Science and Technology,Science and Technology +466333,Science and Technology,Science and Technology +537880,Aboriginal Affairs,Aboriginal Affairs +537874,Aboriginal Affairs,Aboriginal Affairs +451812,Aboriginal Affairs,Aboriginal Affairs +451809,Aboriginal Affairs,Aboriginal Affairs +451808,Aboriginal Affairs,Aboriginal Affairs +451807,Aboriginal Affairs,Aboriginal Affairs +451800,Aboriginal Affairs,Aboriginal Affairs +447532,Aboriginal Affairs,Aboriginal Affairs +447529,Aboriginal Affairs,Aboriginal Affairs +447526,Aboriginal Affairs,Aboriginal Affairs +447516,Aboriginal Affairs,Aboriginal Affairs +440820,Aboriginal Affairs,Aboriginal Affairs +440819,Aboriginal Affairs,Aboriginal Affairs +440818,Aboriginal Affairs,Aboriginal Affairs +537880,Science and Technology,Science and Technology +537874,Science and Technology,Science and Technology +451812,Science and Technology,Science and Technology +451809,Science and Technology,Science and Technology +451808,Science and Technology,Science and Technology +451807,Science and Technology,Science and Technology +451800,Science and Technology,Science and Technology +447532,Science and Technology,Science and Technology +447529,Science and Technology,Science and Technology +447526,Science and Technology,Science and Technology +447516,Science and Technology,Science and Technology +440820,Science and Technology,Science and Technology +440819,Science and Technology,Science and Technology +440818,Science and Technology,Science and Technology +457444,Telecommunications,Telecommunications +457439,Telecommunications,Telecommunications +502841,Telecommunications,Telecommunications +442512,Aboriginal Affairs,Aboriginal Affairs +442509,Aboriginal Affairs,Aboriginal Affairs +508795,Aboriginal Affairs,Aboriginal Affairs +495573,Aboriginal Affairs,Aboriginal Affairs +480113,Aboriginal Affairs,Aboriginal Affairs +480111,Aboriginal Affairs,Aboriginal Affairs +474690,Aboriginal Affairs,Aboriginal Affairs +474689,Aboriginal Affairs,Aboriginal Affairs +474688,Aboriginal Affairs,Aboriginal Affairs +474687,Aboriginal Affairs,Aboriginal Affairs +474686,Aboriginal Affairs,Aboriginal Affairs +474685,Aboriginal Affairs,Aboriginal Affairs +474684,Aboriginal Affairs,Aboriginal Affairs +474683,Aboriginal Affairs,Aboriginal Affairs +472168,Aboriginal Affairs,Aboriginal Affairs +472166,Aboriginal Affairs,Aboriginal Affairs +470034,Aboriginal Affairs,Aboriginal Affairs +470033,Aboriginal Affairs,Aboriginal Affairs +470032,Aboriginal Affairs,Aboriginal Affairs +470031,Aboriginal Affairs,Aboriginal Affairs +470030,Aboriginal Affairs,Aboriginal Affairs +470029,Aboriginal Affairs,Aboriginal Affairs +470028,Aboriginal Affairs,Aboriginal Affairs +467268,Aboriginal Affairs,Aboriginal Affairs +465333,Aboriginal Affairs,Aboriginal Affairs +465048,Aboriginal Affairs,Aboriginal Affairs +461825,Aboriginal Affairs,Aboriginal Affairs +461824,Aboriginal Affairs,Aboriginal Affairs +461823,Aboriginal Affairs,Aboriginal Affairs +460492,Aboriginal Affairs,Aboriginal Affairs +460198,Aboriginal Affairs,Aboriginal Affairs +456707,Aboriginal Affairs,Aboriginal Affairs +522126,Science and Technology,Science and Technology +448262,Arts and Culture,Arts and Culture +448261,Arts and Culture,Arts and Culture +457782,Arts and Culture,Arts and Culture +457778,Arts and Culture,Arts and Culture +456163,Arts and Culture,Arts and Culture +449183,Arts and Culture,Arts and Culture +449177,Arts and Culture,Arts and Culture +448269,Arts and Culture,Arts and Culture +448268,Arts and Culture,Arts and Culture +448267,Arts and Culture,Arts and Culture +448266,Arts and Culture,Arts and Culture +448265,Arts and Culture,Arts and Culture +448264,Arts and Culture,Arts and Culture +443695,Aboriginal Affairs,Aboriginal Affairs +443463,Aboriginal Affairs,Aboriginal Affairs +446605,Aboriginal Affairs,Aboriginal Affairs +445894,Aboriginal Affairs,Aboriginal Affairs +445893,Aboriginal Affairs,Aboriginal Affairs +444378,Aboriginal Affairs,Aboriginal Affairs +444377,Aboriginal Affairs,Aboriginal Affairs +444376,Aboriginal Affairs,Aboriginal Affairs +444375,Aboriginal Affairs,Aboriginal Affairs +443699,Aboriginal Affairs,Aboriginal Affairs +444758,Broadcasting,Broadcasting +444259,Broadcasting,Broadcasting +448392,Broadcasting,Broadcasting +448390,Broadcasting,Broadcasting +459294,Aboriginal Affairs,Aboriginal Affairs +440197,Science and Technology,Science and Technology +507197,Science and Technology,Science and Technology +444330,Science and Technology,Science and Technology +444328,Science and Technology,Science and Technology +442793,Aboriginal Affairs,Aboriginal Affairs +440208,Aboriginal Affairs,Aboriginal Affairs +522961,Aboriginal Affairs,Aboriginal Affairs +520318,Aboriginal Affairs,Aboriginal Affairs +514335,Aboriginal Affairs,Aboriginal Affairs +511671,Aboriginal Affairs,Aboriginal Affairs +509287,Aboriginal Affairs,Aboriginal Affairs +506336,Aboriginal Affairs,Aboriginal Affairs +500038,Aboriginal Affairs,Aboriginal Affairs +497130,Aboriginal Affairs,Aboriginal Affairs +496510,Aboriginal Affairs,Aboriginal Affairs +486102,Aboriginal Affairs,Aboriginal Affairs +483212,Aboriginal Affairs,Aboriginal Affairs +477329,Aboriginal Affairs,Aboriginal Affairs +474659,Aboriginal Affairs,Aboriginal Affairs +474141,Aboriginal Affairs,Aboriginal Affairs +471741,Aboriginal Affairs,Aboriginal Affairs +471739,Aboriginal Affairs,Aboriginal Affairs +468964,Aboriginal Affairs,Aboriginal Affairs +468962,Aboriginal Affairs,Aboriginal Affairs +466307,Aboriginal Affairs,Aboriginal Affairs +465731,Aboriginal Affairs,Aboriginal Affairs +465158,Aboriginal Affairs,Aboriginal Affairs +465093,Aboriginal Affairs,Aboriginal Affairs +463206,Aboriginal Affairs,Aboriginal Affairs +463205,Aboriginal Affairs,Aboriginal Affairs +462256,Aboriginal Affairs,Aboriginal Affairs +462254,Aboriginal Affairs,Aboriginal Affairs +453926,Aboriginal Affairs,Aboriginal Affairs +446739,Aboriginal Affairs,Aboriginal Affairs +446738,Aboriginal Affairs,Aboriginal Affairs +444967,Aboriginal Affairs,Aboriginal Affairs +441950,Aboriginal Affairs,Aboriginal Affairs +441945,Aboriginal Affairs,Aboriginal Affairs +441943,Aboriginal Affairs,Aboriginal Affairs +441939,Aboriginal Affairs,Aboriginal Affairs +541117,Aboriginal Affairs,Aboriginal Affairs +541109,Aboriginal Affairs,Aboriginal Affairs +539155,Aboriginal Affairs,Aboriginal Affairs +537706,Aboriginal Affairs,Aboriginal Affairs +532664,Aboriginal Affairs,Aboriginal Affairs +530604,Aboriginal Affairs,Aboriginal Affairs +442864,Aboriginal Affairs,Aboriginal Affairs +442863,Aboriginal Affairs,Aboriginal Affairs +493710,Aboriginal Affairs,Aboriginal Affairs +488787,Aboriginal Affairs,Aboriginal Affairs +486370,Aboriginal Affairs,Aboriginal Affairs +486291,Aboriginal Affairs,Aboriginal Affairs +486289,Aboriginal Affairs,Aboriginal Affairs +485659,Aboriginal Affairs,Aboriginal Affairs +465030,Aboriginal Affairs,Aboriginal Affairs +465029,Aboriginal Affairs,Aboriginal Affairs +465027,Aboriginal Affairs,Aboriginal Affairs +465026,Aboriginal Affairs,Aboriginal Affairs +450347,Aboriginal Affairs,Aboriginal Affairs +450346,Aboriginal Affairs,Aboriginal Affairs +450344,Aboriginal Affairs,Aboriginal Affairs +442866,Aboriginal Affairs,Aboriginal Affairs +493710,Science and Technology,Science and Technology +465029,Science and Technology,Science and Technology +465027,Science and Technology,Science and Technology +465026,Science and Technology,Science and Technology +450344,Science and Technology,Science and Technology +442866,Science and Technology,Science and Technology +442949,Science and Technology,Science and Technology +440373,Science and Technology,Science and Technology +440374,Science and Technology,Science and Technology +448783,Science and Technology,Science and Technology +448603,Science and Technology,Science and Technology +444262,Science and Technology,Science and Technology +448664,Science and Technology,Science and Technology +443387,Aboriginal Affairs,Aboriginal Affairs +443385,Aboriginal Affairs,Aboriginal Affairs +454738,Aboriginal Affairs,Aboriginal Affairs +454736,Aboriginal Affairs,Aboriginal Affairs +454733,Aboriginal Affairs,Aboriginal Affairs +484450,Science and Technology,Science and Technology +481344,Aboriginal Affairs,Aboriginal Affairs +462889,Aboriginal Affairs,Aboriginal Affairs +485519,Aboriginal Affairs,Aboriginal Affairs +440918,Aboriginal Affairs,Aboriginal Affairs +440902,Aboriginal Affairs,Aboriginal Affairs +531870,Aboriginal Affairs,Aboriginal Affairs +440903,Aboriginal Affairs,Aboriginal Affairs +444802,Science and Technology,Science and Technology +443526,Science and Technology,Science and Technology +447163,Science and Technology,Science and Technology +447162,Science and Technology,Science and Technology +446198,Science and Technology,Science and Technology +446197,Science and Technology,Science and Technology +446196,Science and Technology,Science and Technology +446195,Science and Technology,Science and Technology +446194,Science and Technology,Science and Technology +446193,Science and Technology,Science and Technology +441572,Science and Technology,Science and Technology +441510,Science and Technology,Science and Technology +441582,Science and Technology,Science and Technology +444469,Science and Technology,Science and Technology +442492,Science and Technology,Science and Technology +460500,Science and Technology,Science and Technology +450133,Science and Technology,Science and Technology +444183,Aboriginal Affairs,Aboriginal Affairs +444182,Aboriginal Affairs,Aboriginal Affairs +534613,Aboriginal Affairs,Aboriginal Affairs +534578,Aboriginal Affairs,Aboriginal Affairs +442848,Arts and Culture,Arts and Culture +442842,Arts and Culture,Arts and Culture +445468,Arts and Culture,Arts and Culture +450252,Science and Technology,Science and Technology +472296,Aboriginal Affairs,Aboriginal Affairs +469482,Aboriginal Affairs,Aboriginal Affairs +480901,Aboriginal Affairs,Aboriginal Affairs +480350,Aboriginal Affairs,Aboriginal Affairs +480348,Aboriginal Affairs,Aboriginal Affairs +477105,Aboriginal Affairs,Aboriginal Affairs +477101,Aboriginal Affairs,Aboriginal Affairs +477096,Aboriginal Affairs,Aboriginal Affairs +472316,Aboriginal Affairs,Aboriginal Affairs +443961,Science and Technology,Science and Technology +443955,Science and Technology,Science and Technology +445671,Science and Technology,Science and Technology +445668,Science and Technology,Science and Technology +445665,Science and Technology,Science and Technology +443967,Science and Technology,Science and Technology +443965,Science and Technology,Science and Technology +444278,Arts and Culture,Arts and Culture +443217,Arts and Culture,Arts and Culture +443553,Science and Technology,Science and Technology +448239,Arts and Culture,Arts and Culture +448238,Arts and Culture,Arts and Culture +499083,Arts and Culture,Arts and Culture +499077,Arts and Culture,Arts and Culture +491683,Arts and Culture,Arts and Culture +482117,Arts and Culture,Arts and Culture +476105,Arts and Culture,Arts and Culture +455084,Arts and Culture,Arts and Culture +455083,Arts and Culture,Arts and Culture +448242,Arts and Culture,Arts and Culture +448241,Arts and Culture,Arts and Culture +448247,Arts and Culture,Arts and Culture +448246,Arts and Culture,Arts and Culture +491685,Arts and Culture,Arts and Culture +482108,Arts and Culture,Arts and Culture +455085,Arts and Culture,Arts and Culture +448250,Arts and Culture,Arts and Culture +448249,Arts and Culture,Arts and Culture +448244,Arts and Culture,Arts and Culture +448243,Arts and Culture,Arts and Culture +491684,Arts and Culture,Arts and Culture +455086,Arts and Culture,Arts and Culture +533332,Arts and Culture,Arts and Culture +443323,Arts and Culture,Arts and Culture +464112,Arts and Culture,Arts and Culture +451828,Arts and Culture,Arts and Culture +481687,Arts and Culture,Arts and Culture +474088,Arts and Culture,Arts and Culture +469197,Arts and Culture,Arts and Culture +464123,Arts and Culture,Arts and Culture +464122,Arts and Culture,Arts and Culture +464120,Arts and Culture,Arts and Culture +464119,Arts and Culture,Arts and Culture +464118,Arts and Culture,Arts and Culture +464117,Arts and Culture,Arts and Culture +464115,Arts and Culture,Arts and Culture +464114,Arts and Culture,Arts and Culture +464076,Arts and Culture,Arts and Culture +451839,Arts and Culture,Arts and Culture +481686,Arts and Culture,Arts and Culture +474089,Arts and Culture,Arts and Culture +464091,Arts and Culture,Arts and Culture +464090,Arts and Culture,Arts and Culture +464089,Arts and Culture,Arts and Culture +464088,Arts and Culture,Arts and Culture +464087,Arts and Culture,Arts and Culture +464085,Arts and Culture,Arts and Culture +464083,Arts and Culture,Arts and Culture +464081,Arts and Culture,Arts and Culture +464080,Arts and Culture,Arts and Culture +464094,Arts and Culture,Arts and Culture +464093,Arts and Culture,Arts and Culture +451842,Arts and Culture,Arts and Culture +481689,Arts and Culture,Arts and Culture +474090,Arts and Culture,Arts and Culture +464110,Arts and Culture,Arts and Culture +464109,Arts and Culture,Arts and Culture +464107,Arts and Culture,Arts and Culture +464105,Arts and Culture,Arts and Culture +464104,Arts and Culture,Arts and Culture +464101,Arts and Culture,Arts and Culture +464097,Arts and Culture,Arts and Culture +464096,Arts and Culture,Arts and Culture +456661,Science and Technology,Science and Technology +449537,Arts and Culture,Arts and Culture +449537,Broadcasting,Broadcasting +449537,Science and Technology,Science and Technology +449537,Telecommunications,Telecommunications +447323,Arts and Culture,Arts and Culture +445104,Arts and Culture,Arts and Culture +447323,Broadcasting,Broadcasting +445104,Broadcasting,Broadcasting +449854,Broadcasting,Broadcasting +449853,Broadcasting,Broadcasting +447323,Science and Technology,Science and Technology +445104,Science and Technology,Science and Technology +447323,Telecommunications,Telecommunications +445104,Telecommunications,Telecommunications +449854,Telecommunications,Telecommunications +449853,Telecommunications,Telecommunications +449571,Science and Technology,Science and Technology +444408,Science and Technology,Science and Technology +459828,Science and Technology,Science and Technology +455136,Science and Technology,Science and Technology +447726,Arts and Culture,Arts and Culture +445681,Arts and Culture,Arts and Culture +455310,Arts and Culture,Arts and Culture +452492,Arts and Culture,Arts and Culture +449495,Arts and Culture,Arts and Culture +447732,Arts and Culture,Arts and Culture +461246,Aboriginal Affairs,Aboriginal Affairs +475169,Science and Technology,Science and Technology +444125,Science and Technology,Science and Technology +529323,Science and Technology,Science and Technology +510199,Science and Technology,Science and Technology +493852,Science and Technology,Science and Technology +490787,Science and Technology,Science and Technology +485503,Science and Technology,Science and Technology +485200,Science and Technology,Science and Technology +485198,Science and Technology,Science and Technology +484601,Science and Technology,Science and Technology +481816,Science and Technology,Science and Technology +475172,Science and Technology,Science and Technology +475171,Science and Technology,Science and Technology +446158,Aboriginal Affairs,Aboriginal Affairs +446157,Aboriginal Affairs,Aboriginal Affairs +446160,Aboriginal Affairs,Aboriginal Affairs +446710,Arts and Culture,Arts and Culture +446709,Arts and Culture,Arts and Culture +499153,Arts and Culture,Arts and Culture +496158,Arts and Culture,Arts and Culture +493352,Arts and Culture,Arts and Culture +493350,Arts and Culture,Arts and Culture +493330,Arts and Culture,Arts and Culture +475659,Arts and Culture,Arts and Culture +472728,Arts and Culture,Arts and Culture +467734,Arts and Culture,Arts and Culture +467729,Arts and Culture,Arts and Culture +467725,Arts and Culture,Arts and Culture +467585,Arts and Culture,Arts and Culture +467566,Arts and Culture,Arts and Culture +467546,Arts and Culture,Arts and Culture +458449,Arts and Culture,Arts and Culture +451529,Arts and Culture,Arts and Culture +451517,Arts and Culture,Arts and Culture +446714,Arts and Culture,Arts and Culture +446713,Arts and Culture,Arts and Culture +446704,Arts and Culture,Arts and Culture +446703,Arts and Culture,Arts and Culture +510732,Arts and Culture,Arts and Culture +499148,Arts and Culture,Arts and Culture +496156,Arts and Culture,Arts and Culture +484626,Arts and Culture,Arts and Culture +475651,Arts and Culture,Arts and Culture +472735,Arts and Culture,Arts and Culture +467740,Arts and Culture,Arts and Culture +467738,Arts and Culture,Arts and Culture +467675,Arts and Culture,Arts and Culture +467577,Arts and Culture,Arts and Culture +467543,Arts and Culture,Arts and Culture +458450,Arts and Culture,Arts and Culture +451523,Arts and Culture,Arts and Culture +451515,Arts and Culture,Arts and Culture +446708,Arts and Culture,Arts and Culture +446707,Arts and Culture,Arts and Culture +446706,Arts and Culture,Arts and Culture +446717,Arts and Culture,Arts and Culture +446716,Arts and Culture,Arts and Culture +499150,Arts and Culture,Arts and Culture +496157,Arts and Culture,Arts and Culture +475654,Arts and Culture,Arts and Culture +472736,Arts and Culture,Arts and Culture +467583,Arts and Culture,Arts and Culture +467565,Arts and Culture,Arts and Culture +467545,Arts and Culture,Arts and Culture +451526,Arts and Culture,Arts and Culture +451516,Arts and Culture,Arts and Culture +446719,Arts and Culture,Arts and Culture +497851,Arts and Culture,Arts and Culture +450384,Arts and Culture,Arts and Culture +497875,Arts and Culture,Arts and Culture +497869,Arts and Culture,Arts and Culture +497863,Arts and Culture,Arts and Culture +497861,Arts and Culture,Arts and Culture +497860,Arts and Culture,Arts and Culture +497856,Arts and Culture,Arts and Culture +497855,Arts and Culture,Arts and Culture +471373,Science and Technology,Science and Technology +446265,Science and Technology,Science and Technology +446263,Science and Technology,Science and Technology +458516,Science and Technology,Science and Technology +458514,Science and Technology,Science and Technology +458408,Science and Technology,Science and Technology +458406,Science and Technology,Science and Technology +456222,Science and Technology,Science and Technology +447209,Science and Technology,Science and Technology +447113,Science and Technology,Science and Technology +447111,Science and Technology,Science and Technology +454744,Science and Technology,Science and Technology +454742,Science and Technology,Science and Technology +488305,Aboriginal Affairs,Aboriginal Affairs +486295,Aboriginal Affairs,Aboriginal Affairs +485931,Aboriginal Affairs,Aboriginal Affairs +474796,Aboriginal Affairs,Aboriginal Affairs +447767,Aboriginal Affairs,Aboriginal Affairs +522468,Aboriginal Affairs,Aboriginal Affairs +494437,Aboriginal Affairs,Aboriginal Affairs +491442,Aboriginal Affairs,Aboriginal Affairs +486488,Aboriginal Affairs,Aboriginal Affairs +448053,Aboriginal Affairs,Aboriginal Affairs +448047,Aboriginal Affairs,Aboriginal Affairs +448067,Aboriginal Affairs,Aboriginal Affairs +448605,Science and Technology,Science and Technology +448600,Science and Technology,Science and Technology +518531,Science and Technology,Science and Technology +510173,Science and Technology,Science and Technology +507396,Science and Technology,Science and Technology +500514,Science and Technology,Science and Technology +489117,Science and Technology,Science and Technology +473339,Science and Technology,Science and Technology +473299,Science and Technology,Science and Technology +473294,Science and Technology,Science and Technology +463083,Science and Technology,Science and Technology +448608,Science and Technology,Science and Technology +448607,Science and Technology,Science and Technology +451055,Science and Technology,Science and Technology +444852,Science and Technology,Science and Technology +451057,Science and Technology,Science and Technology +446983,Science and Technology,Science and Technology +446979,Science and Technology,Science and Technology +458702,Science and Technology,Science and Technology +457438,Science and Technology,Science and Technology +457435,Science and Technology,Science and Technology +449256,Science and Technology,Science and Technology +449255,Science and Technology,Science and Technology +453845,Telecommunications,Telecommunications +453844,Telecommunications,Telecommunications +453851,Telecommunications,Telecommunications +450050,Aboriginal Affairs,Aboriginal Affairs +450047,Aboriginal Affairs,Aboriginal Affairs +447638,Aboriginal Affairs,Aboriginal Affairs +447637,Aboriginal Affairs,Aboriginal Affairs +447636,Aboriginal Affairs,Aboriginal Affairs +447634,Aboriginal Affairs,Aboriginal Affairs +460715,Aboriginal Affairs,Aboriginal Affairs +459308,Aboriginal Affairs,Aboriginal Affairs +458663,Aboriginal Affairs,Aboriginal Affairs +458662,Aboriginal Affairs,Aboriginal Affairs +458661,Aboriginal Affairs,Aboriginal Affairs +458660,Aboriginal Affairs,Aboriginal Affairs +458659,Aboriginal Affairs,Aboriginal Affairs +458658,Aboriginal Affairs,Aboriginal Affairs +458657,Aboriginal Affairs,Aboriginal Affairs +457253,Aboriginal Affairs,Aboriginal Affairs +457250,Aboriginal Affairs,Aboriginal Affairs +456039,Aboriginal Affairs,Aboriginal Affairs +456038,Aboriginal Affairs,Aboriginal Affairs +456037,Aboriginal Affairs,Aboriginal Affairs +456036,Aboriginal Affairs,Aboriginal Affairs +456035,Aboriginal Affairs,Aboriginal Affairs +456034,Aboriginal Affairs,Aboriginal Affairs +505202,Science and Technology,Science and Technology +433286,Aboriginal Affairs,Aboriginal Affairs +433286,Arts and Culture,Arts and Culture +438229,Aboriginal Affairs,Aboriginal Affairs +452974,Arts and Culture,Arts and Culture +438928,Science and Technology,Science and Technology +438464,Science and Technology,Science and Technology +529770,Aboriginal Affairs,Aboriginal Affairs +439957,Science and Technology,Science and Technology +457543,Aboriginal Affairs,Aboriginal Affairs +457539,Aboriginal Affairs,Aboriginal Affairs +437932,Aboriginal Affairs,Aboriginal Affairs +437933,Aboriginal Affairs,Aboriginal Affairs +456063,Aboriginal Affairs,Aboriginal Affairs +437929,Aboriginal Affairs,Aboriginal Affairs +456065,Aboriginal Affairs,Aboriginal Affairs +435963,Arts and Culture,Arts and Culture +445881,Telecommunications,Telecommunications +453806,Arts and Culture,Arts and Culture +448943,Arts and Culture,Arts and Culture +499360,Aboriginal Affairs,Aboriginal Affairs +454896,Science and Technology,Science and Technology +444541,Aboriginal Affairs,Aboriginal Affairs +444539,Aboriginal Affairs,Aboriginal Affairs +448453,Science and Technology,Science and Technology +509242,Arts and Culture,Arts and Culture +509233,Arts and Culture,Arts and Culture +434850,Aboriginal Affairs,Aboriginal Affairs +436173,Aboriginal Affairs,Aboriginal Affairs +444690,Aboriginal Affairs,Aboriginal Affairs +437054,Science and Technology,Science and Technology +444225,Science and Technology,Science and Technology +451558,Science and Technology,Science and Technology +437710,Telecommunications,Telecommunications +457809,Arts and Culture,Arts and Culture +494057,Science and Technology,Science and Technology +465749,Science and Technology,Science and Technology +442800,Science and Technology,Science and Technology +445539,Aboriginal Affairs,Aboriginal Affairs +445539,Telecommunications,Telecommunications +437879,Aboriginal Affairs,Aboriginal Affairs +435838,Science and Technology,Science and Technology +461835,Science and Technology,Science and Technology +436567,Science and Technology,Science and Technology +490935,Science and Technology,Science and Technology +435378,Aboriginal Affairs,Aboriginal Affairs +436274,Science and Technology,Science and Technology +445051,Aboriginal Affairs,Aboriginal Affairs +475614,Arts and Culture,Arts and Culture +445250,Science and Technology,Science and Technology +493490,Telecommunications,Telecommunications +439483,Science and Technology,Science and Technology +454938,Arts and Culture,Arts and Culture +439215,Aboriginal Affairs,Aboriginal Affairs +449606,Aboriginal Affairs,Aboriginal Affairs +439616,Science and Technology,Science and Technology +539972,Science and Technology,Science and Technology +440634,Science and Technology,Science and Technology +464343,Science and Technology,Science and Technology +438651,Telecommunications,Telecommunications +444615,Broadcasting,Broadcasting +444615,Arts and Culture,Arts and Culture +440563,Broadcasting,Broadcasting +440563,Arts and Culture,Arts and Culture +445485,Arts and Culture,Arts and Culture +436692,Science and Technology,Science and Technology +444365,Arts and Culture,Arts and Culture +444365,Broadcasting,Broadcasting +436915,Science and Technology,Science and Technology +436915,Arts and Culture,Arts and Culture +440040,Science and Technology,Science and Technology +436453,Science and Technology,Science and Technology +439159,Telecommunications,Telecommunications +524870,Science and Technology,Science and Technology +469463,Telecommunications,Telecommunications +459477,Aboriginal Affairs,Aboriginal Affairs +476479,Telecommunications,Telecommunications +518617,Telecommunications,Telecommunications +456841,Science and Technology,Science and Technology +437411,Science and Technology,Science and Technology +436683,Aboriginal Affairs,Aboriginal Affairs +539134,Telecommunications,Telecommunications +436832,Aboriginal Affairs,Aboriginal Affairs +458045,Science and Technology,Science and Technology +444983,Aboriginal Affairs,Aboriginal Affairs +516848,Science and Technology,Science and Technology +441038,Aboriginal Affairs,Aboriginal Affairs +440823,Science and Technology,Science and Technology +440244,Science and Technology,Science and Technology +441600,Arts and Culture,Arts and Culture +439979,Science and Technology,Science and Technology +443059,Aboriginal Affairs,Aboriginal Affairs +437185,Aboriginal Affairs,Aboriginal Affairs +437192,Aboriginal Affairs,Aboriginal Affairs +437195,Aboriginal Affairs,Aboriginal Affairs +437218,Aboriginal Affairs,Aboriginal Affairs +437229,Aboriginal Affairs,Aboriginal Affairs +437242,Aboriginal Affairs,Aboriginal Affairs +437251,Aboriginal Affairs,Aboriginal Affairs +441611,Arts and Culture,Arts and Culture +437284,Aboriginal Affairs,Aboriginal Affairs +509354,Aboriginal Affairs,Aboriginal Affairs +441598,Aboriginal Affairs,Aboriginal Affairs +437647,Arts and Culture,Arts and Culture +437647,Aboriginal Affairs,Aboriginal Affairs +437651,Aboriginal Affairs,Aboriginal Affairs +437658,Aboriginal Affairs,Aboriginal Affairs +437664,Arts and Culture,Arts and Culture +442289,Aboriginal Affairs,Aboriginal Affairs +456055,Aboriginal Affairs,Aboriginal Affairs +466330,Science and Technology,Science and Technology +440817,Aboriginal Affairs,Aboriginal Affairs +440817,Science and Technology,Science and Technology +502833,Telecommunications,Telecommunications +438039,Science and Technology,Science and Technology +442515,Aboriginal Affairs,Aboriginal Affairs +459439,Science and Technology,Science and Technology +438260,Aboriginal Affairs,Aboriginal Affairs +438261,Aboriginal Affairs,Aboriginal Affairs +438262,Aboriginal Affairs,Aboriginal Affairs +438263,Aboriginal Affairs,Aboriginal Affairs +438264,Aboriginal Affairs,Aboriginal Affairs +438265,Aboriginal Affairs,Aboriginal Affairs +438266,Aboriginal Affairs,Aboriginal Affairs +438267,Aboriginal Affairs,Aboriginal Affairs +452466,Science and Technology,Science and Technology +438373,Science and Technology,Science and Technology +438380,Science and Technology,Science and Technology +448263,Arts and Culture,Arts and Culture +480141,Arts and Culture,Arts and Culture +443697,Aboriginal Affairs,Aboriginal Affairs +446595,Broadcasting,Broadcasting +440559,Aboriginal Affairs,Aboriginal Affairs +444327,Science and Technology,Science and Technology +442795,Aboriginal Affairs,Aboriginal Affairs +443552,Aboriginal Affairs,Aboriginal Affairs +526871,Aboriginal Affairs,Aboriginal Affairs +442865,Aboriginal Affairs,Aboriginal Affairs +442865,Science and Technology,Science and Technology +443059,Science and Technology,Science and Technology +442950,Science and Technology,Science and Technology +466060,Aboriginal Affairs,Aboriginal Affairs +440454,Science and Technology,Science and Technology +448663,Science and Technology,Science and Technology +440655,Broadcasting,Broadcasting +443145,Aboriginal Affairs,Aboriginal Affairs +443145,Arts and Culture,Arts and Culture +443389,Aboriginal Affairs,Aboriginal Affairs +440707,Science and Technology,Science and Technology +456684,Arts and Culture,Arts and Culture +458126,Broadcasting,Broadcasting +440774,Aboriginal Affairs,Aboriginal Affairs +483563,Aboriginal Affairs,Aboriginal Affairs +520808,Aboriginal Affairs,Aboriginal Affairs +485517,Aboriginal Affairs,Aboriginal Affairs +461849,Aboriginal Affairs,Aboriginal Affairs +440904,Aboriginal Affairs,Aboriginal Affairs +444804,Science and Technology,Science and Technology +443146,Arts and Culture,Arts and Culture +443146,Aboriginal Affairs,Aboriginal Affairs +441574,Science and Technology,Science and Technology +442347,Broadcasting,Broadcasting +444364,Aboriginal Affairs,Aboriginal Affairs +447306,Science and Technology,Science and Technology +444184,Aboriginal Affairs,Aboriginal Affairs +538665,Aboriginal Affairs,Aboriginal Affairs +443795,Arts and Culture,Arts and Culture +456137,Science and Technology,Science and Technology +472298,Aboriginal Affairs,Aboriginal Affairs +462863,Telecommunications,Telecommunications +443963,Science and Technology,Science and Technology +448287,Arts and Culture,Arts and Culture +448287,Science and Technology,Science and Technology +445896,Science and Technology,Science and Technology +445477,Aboriginal Affairs,Aboriginal Affairs +448240,Arts and Culture,Arts and Culture +448248,Arts and Culture,Arts and Culture +448245,Arts and Culture,Arts and Culture +540566,Arts and Culture,Arts and Culture +443227,Aboriginal Affairs,Aboriginal Affairs +443273,Aboriginal Affairs,Aboriginal Affairs +443321,Aboriginal Affairs,Aboriginal Affairs +443324,Arts and Culture,Arts and Culture +443323,Science and Technology,Science and Technology +474085,Arts and Culture,Arts and Culture +446556,Arts and Culture,Arts and Culture +474086,Arts and Culture,Arts and Culture +464113,Arts and Culture,Arts and Culture +464078,Arts and Culture,Arts and Culture +464095,Arts and Culture,Arts and Culture +474092,Arts and Culture,Arts and Culture +456668,Science and Technology,Science and Technology +449540,Arts and Culture,Arts and Culture +449540,Broadcasting,Broadcasting +449540,Science and Technology,Science and Technology +449540,Telecommunications,Telecommunications +447325,Arts and Culture,Arts and Culture +447325,Broadcasting,Broadcasting +447325,Science and Technology,Science and Technology +447325,Telecommunications,Telecommunications +455130,Science and Technology,Science and Technology +457071,Aboriginal Affairs,Aboriginal Affairs +454970,Aboriginal Affairs,Aboriginal Affairs +444453,Science and Technology,Science and Technology +447731,Arts and Culture,Arts and Culture +445007,Arts and Culture,Arts and Culture +461253,Aboriginal Affairs,Aboriginal Affairs +475170,Science and Technology,Science and Technology +446159,Aboriginal Affairs,Aboriginal Affairs +444186,Arts and Culture,Arts and Culture +446712,Arts and Culture,Arts and Culture +446705,Arts and Culture,Arts and Culture +446718,Arts and Culture,Arts and Culture +445459,Science and Technology,Science and Technology +497853,Arts and Culture,Arts and Culture +473718,Science and Technology,Science and Technology +447039,Science and Technology,Science and Technology +463328,Science and Technology,Science and Technology +461159,Science and Technology,Science and Technology +463327,Telecommunications,Telecommunications +463327,Science and Technology,Science and Technology +448364,Science and Technology,Science and Technology +457053,Science and Technology,Science and Technology +452004,Aboriginal Affairs,Aboriginal Affairs +485933,Aboriginal Affairs,Aboriginal Affairs +448063,Aboriginal Affairs,Aboriginal Affairs +447380,Science and Technology,Science and Technology +448606,Science and Technology,Science and Technology +451056,Science and Technology,Science and Technology +457015,Aboriginal Affairs,Aboriginal Affairs +446984,Science and Technology,Science and Technology +457203,Science and Technology,Science and Technology +453846,Telecommunications,Telecommunications +451830,Aboriginal Affairs,Aboriginal Affairs +456861,Science and Technology,Science and Technology +450314,Telecommunications,Telecommunications +488242,Science and Technology,Science and Technology +445113,Arts and Culture,Arts and Culture +455813,Telecommunications,Telecommunications +524995,Science and Technology,Science and Technology +453901,Science and Technology,Science and Technology +456152,Aboriginal Affairs,Aboriginal Affairs +448461,Aboriginal Affairs,Aboriginal Affairs +447629,Aboriginal Affairs,Aboriginal Affairs +446179,Aboriginal Affairs,Aboriginal Affairs +456047,Aboriginal Affairs,Aboriginal Affairs +445718,Science and Technology,Science and Technology +445719,Science and Technology,Science and Technology +445803,Science and Technology,Science and Technology +446481,Aboriginal Affairs,Aboriginal Affairs +492257,Aboriginal Affairs,Aboriginal Affairs +448316,Science and Technology,Science and Technology +448468,Arts and Culture,Arts and Culture +454410,Aboriginal Affairs,Aboriginal Affairs +466409,Science and Technology,Science and Technology +454409,Telecommunications,Telecommunications +537278,Science and Technology,Science and Technology +449555,Science and Technology,Science and Technology +446060,Aboriginal Affairs,Aboriginal Affairs +450029,Aboriginal Affairs,Aboriginal Affairs +449087,Aboriginal Affairs,Aboriginal Affairs +448303,Aboriginal Affairs,Aboriginal Affairs +448303,Science and Technology,Science and Technology +457249,Aboriginal Affairs,Aboriginal Affairs +456767,Arts and Culture,Arts and Culture +446550,Broadcasting,Radiodiffusion +446550,Telecommunications,Telecommunications +487395,Aboriginal Affairs,Aboriginal Affairs +487395,Science and Technology,Science and Technology +511573,Broadcasting,Broadcasting +499775,Telecommunications,Telecommunications +487102,Science and Technology,Science and Technology +446404,Aboriginal Affairs,Aboriginal Affairs +458002,Science and Technology,Science and Technology +448416,Science and Technology,Science and Technology +456496,Science and Technology,Science and Technology +457799,Arts and Culture,Arts and Culture +449222,Aboriginal Affairs,Aboriginal Affairs +460874,Arts and Culture,Arts and Culture +467982,Arts and Culture,Arts and Culture +530593,Aboriginal Affairs,Aboriginal Affairs +450367,Aboriginal Affairs,Aboriginal Affairs +447264,Science and Technology,Science and Technology +527883,Science and Technology,Science and Technology +456184,Broadcasting,Broadcasting +447717,Telecommunications,Telecommunications +459407,Science and Technology,Science and Technology +493922,Telecommunications,Telecommunications +463454,Telecommunications,Telecommunications +523280,Broadcasting,Broadcasting +467981,Telecommunications,Telecommunications +448423,Arts and Culture,Arts and Culture +449649,Aboriginal Affairs,Aboriginal Affairs +453123,Science and Technology,Science and Technology +518446,Science and Technology,Science and Technology +467985,Telecommunications,Telecommunications +455095,Arts and Culture,Arts and Culture +461694,Arts and Culture,Arts and Culture +454005,Science and Technology,Science and Technology +453139,Aboriginal Affairs,Aboriginal Affairs +451958,Science and Technology,Science and Technology +449317,Aboriginal Affairs,Aboriginal Affairs +451045,Aboriginal Affairs,Aboriginal Affairs +456270,Science and Technology,Science and Technology +449851,Aboriginal Affairs,Aboriginal Affairs +463661,Arts and Culture,Arts and Culture +455819,Science and Technology,Science and Technology +450559,Science and Technology,Science and Technology +455741,Arts and Culture,Arts and Culture +451519,Arts and Culture,Arts and Culture +505290,Science and Technology,Science and Technology +449977,Arts and Culture,Arts and Culture +450146,Science and Technology,Science and Technology +450147,Science and Technology,Science and Technology +450150,Arts and Culture,Arts and Culture +453968,Aboriginal Affairs,Aboriginal Affairs +453967,Science and Technology,Science and Technology +515097,Aboriginal Affairs,Aboriginal Affairs +450206,Aboriginal Affairs,Aboriginal Affairs +450393,Science and Technology,Science and Technology +453611,Arts and Culture,Arts and Culture +461960,Arts and Culture,Arts and Culture +452396,Science and Technology,Science and Technology +455815,Aboriginal Affairs,Aboriginal Affairs +461983,Science and Technology,Science and Technology +474762,Telecommunications,Telecommunications +485591,Broadcasting,Broadcasting +477907,Arts and Culture,Arts and Culture +450590,Aboriginal Affairs,Aboriginal Affairs +450590,Broadcasting,Broadcasting +454872,Telecommunications,Telecommunications +455690,Aboriginal Affairs,Aboriginal Affairs +465443,Science and Technology,Science and Technology +476528,Aboriginal Affairs,Aboriginal Affairs +453929,Science and Technology,Science and Technology +488226,Arts and Culture,Arts and Culture +496791,Broadcasting,Broadcasting +453025,Aboriginal Affairs,Aboriginal Affairs +485589,Arts and Culture,Arts and Culture +453072,Aboriginal Affairs,Aboriginal Affairs +451136,Aboriginal Affairs,Aboriginal Affairs +451400,Telecommunications,Telecommunications +458035,Science and Technology,Science and Technology +475955,Science and Technology,Science and Technology +464783,Science and Technology,Science and Technology +454793,Aboriginal Affairs,Aboriginal Affairs +456692,Science and Technology,Science and Technology +454418,Science and Technology,Science and Technology +454713,Arts and Culture,Arts and Culture +456103,Arts and Culture,Arts and Culture +453171,Aboriginal Affairs,Aboriginal Affairs +453159,Aboriginal Affairs,Aboriginal Affairs +465205,Science and Technology,Science and Technology +456411,Science and Technology,Science and Technology +453083,Broadcasting,Broadcasting +453098,Aboriginal Affairs,Aboriginal Affairs +456264,Science and Technology,Science and Technology +467995,Science and Technology,Science and Technology +457662,Aboriginal Affairs,Aboriginal Affairs +460725,Science and Technology,Science and Technology +500569,Science and Technology,Science and Technology +457388,Aboriginal Affairs,Aboriginal Affairs +456068,Aboriginal Affairs,Aboriginal Affairs +457836,Aboriginal Affairs,Aboriginal Affairs +460971,Arts and Culture,Arts and Culture +460971,Broadcasting,Broadcasting +454289,Aboriginal Affairs,Aboriginal Affairs +481298,Science and Technology,Science and Technology +456256,Aboriginal Affairs,Aboriginal Affairs +454292,Aboriginal Affairs,Aboriginal Affairs +527497,Arts and Culture,Arts et culture +453506,Aboriginal Affairs,Aboriginal Affairs +462091,Arts and Culture,Arts and Culture +453678,Broadcasting,Broadcasting +456345,Telecommunications,Telecommunications +456245,Arts and Culture,Arts and Culture +454218,Science and Technology,Science and Technology +457389,Aboriginal Affairs,Aboriginal Affairs +487310,Aboriginal Affairs,Aboriginal Affairs +466310,Science and Technology,Science and Technology +456069,Aboriginal Affairs,Aboriginal Affairs +457381,Aboriginal Affairs,Aboriginal Affairs +455801,Aboriginal Affairs,Aboriginal Affairs +455064,Arts and Culture,Arts and Culture +456482,Arts and Culture,Arts and Culture +453984,Science and Technology,Science and Technology +457818,Arts and Culture,Arts and Culture +484524,Science and Technology,Science and Technology +454068,Broadcasting,Broadcasting +454068,Telecommunications,Telecommunications +456059,Aboriginal Affairs,Aboriginal Affairs +456059,Science and Technology,Science and Technology +451844,Aboriginal Affairs,Aboriginal Affairs +451843,Aboriginal Affairs,Aboriginal Affairs +451840,Aboriginal Affairs,Aboriginal Affairs +451838,Aboriginal Affairs,Aboriginal Affairs +451837,Aboriginal Affairs,Aboriginal Affairs +451834,Aboriginal Affairs,Aboriginal Affairs +451831,Aboriginal Affairs,Aboriginal Affairs +456860,Science and Technology,Science and Technology +446474,Telecommunications,Telecommunications +451175,Telecommunications,Telecommunications +446060,Telecommunications,Telecommunications +456224,Telecommunications,Telecommunications +524994,Science and Technology,Science and Technology +524991,Science and Technology,Science and Technology +454975,Science and Technology,Science and Technology +451323,Science and Technology,Science and Technology +445253,Science and Technology,Science and Technology +539371,Science and Technology,Science and Technology +539370,Science and Technology,Science and Technology +537205,Science and Technology,Science and Technology +537203,Science and Technology,Science and Technology +537201,Science and Technology,Science and Technology +537196,Science and Technology,Science and Technology +537194,Science and Technology,Science and Technology +534120,Science and Technology,Science and Technology +534116,Science and Technology,Science and Technology +532034,Science and Technology,Science and Technology +532033,Science and Technology,Science and Technology +528918,Science and Technology,Science and Technology +528914,Science and Technology,Science and Technology +528911,Science and Technology,Science and Technology +528907,Science and Technology,Science and Technology +528904,Science and Technology,Science and Technology +524996,Science and Technology,Science and Technology +453900,Science and Technology,Science and Technology +453899,Science and Technology,Science and Technology +453903,Science and Technology,Science and Technology +450326,Aboriginal Affairs,Aboriginal Affairs +447628,Aboriginal Affairs,Aboriginal Affairs +447627,Aboriginal Affairs,Aboriginal Affairs +447630,Aboriginal Affairs,Aboriginal Affairs +445900,Aboriginal Affairs,Aboriginal Affairs +446178,Aboriginal Affairs,Aboriginal Affairs +445899,Aboriginal Affairs,Aboriginal Affairs +446480,Aboriginal Affairs,Aboriginal Affairs +488909,Aboriginal Affairs,Aboriginal Affairs +488908,Aboriginal Affairs,Aboriginal Affairs +485837,Aboriginal Affairs,Aboriginal Affairs +474099,Aboriginal Affairs,Aboriginal Affairs +457990,Aboriginal Affairs,Aboriginal Affairs +456646,Aboriginal Affairs,Aboriginal Affairs +494233,Aboriginal Affairs,Aboriginal Affairs +492258,Aboriginal Affairs,Aboriginal Affairs +448315,Science and Technology,Science and Technology +448314,Science and Technology,Science and Technology +454409,Aboriginal Affairs,Aboriginal Affairs +449239,Aboriginal Affairs,Aboriginal Affairs +483860,Aboriginal Affairs,Aboriginal Affairs +483859,Aboriginal Affairs,Aboriginal Affairs +466411,Aboriginal Affairs,Aboriginal Affairs +466407,Aboriginal Affairs,Aboriginal Affairs +454413,Aboriginal Affairs,Aboriginal Affairs +454412,Aboriginal Affairs,Aboriginal Affairs +449239,Science and Technology,Science and Technology +451682,Telecommunications,Telecommunications +449239,Telecommunications,Telecommunications +487921,Telecommunications,Telecommunications +487915,Telecommunications,Telecommunications +487912,Telecommunications,Telecommunications +483860,Telecommunications,Telecommunications +483859,Telecommunications,Telecommunications +480808,Telecommunications,Telecommunications +477606,Telecommunications,Telecommunications +477167,Telecommunications,Telecommunications +469516,Telecommunications,Telecommunications +466411,Telecommunications,Telecommunications +466409,Telecommunications,Telecommunications +466407,Telecommunications,Telecommunications +460148,Telecommunications,Telecommunications +454413,Telecommunications,Telecommunications +454412,Telecommunications,Telecommunications +454411,Telecommunications,Telecommunications +454410,Telecommunications,Telecommunications +537277,Science and Technology,Science and Technology +535515,Science and Technology,Science and Technology +449551,Science and Technology,Science and Technology +449549,Science and Technology,Science and Technology +450785,Science and Technology,Science and Technology +450784,Science and Technology,Science and Technology +450783,Science and Technology,Science and Technology +450782,Science and Technology,Science and Technology +450781,Science and Technology,Science and Technology +449565,Science and Technology,Science and Technology +449564,Science and Technology,Science and Technology +449562,Science and Technology,Science and Technology +449560,Science and Technology,Science and Technology +449559,Science and Technology,Science and Technology +449557,Science and Technology,Science and Technology +447577,Aboriginal Affairs,Aboriginal Affairs +447574,Aboriginal Affairs,Aboriginal Affairs +458113,Aboriginal Affairs,Aboriginal Affairs +458112,Aboriginal Affairs,Aboriginal Affairs +450737,Aboriginal Affairs,Aboriginal Affairs +450179,Aboriginal Affairs,Aboriginal Affairs +450170,Aboriginal Affairs,Aboriginal Affairs +446058,Aboriginal Affairs,Aboriginal Affairs +540511,Aboriginal Affairs,Aboriginal Affairs +453066,Aboriginal Affairs,Aboriginal Affairs +456765,Arts and Culture,Arts and Culture +456764,Arts and Culture,Arts and Culture +502731,Arts and Culture,Arts and Culture +499509,Arts and Culture,Arts and Culture +488254,Arts and Culture,Arts and Culture +488253,Arts and Culture,Arts and Culture +485328,Arts and Culture,Arts and Culture +464677,Arts and Culture,Arts and Culture +464674,Arts and Culture,Arts and Culture +464163,Arts and Culture,Arts and Culture +464162,Arts and Culture,Arts and Culture +464161,Arts and Culture,Arts and Culture +464160,Arts and Culture,Arts and Culture +464159,Arts and Culture,Arts and Culture +464156,Arts and Culture,Arts and Culture +456768,Arts and Culture,Arts and Culture +446549,Broadcasting,Radiodiffusion +446547,Broadcasting,Radiodiffusion +457229,Aboriginal Affairs,Aboriginal Affairs +452045,Aboriginal Affairs,Aboriginal Affairs +487397,Aboriginal Affairs,Aboriginal Affairs +457229,Science and Technology,Science and Technology +452045,Science and Technology,Science and Technology +494102,Science and Technology,Science and Technology +487397,Science and Technology,Science and Technology +499775,Broadcasting,Broadcasting +487099,Science and Technology,Science and Technology +484691,Science and Technology,Science and Technology +479613,Science and Technology,Science and Technology +479609,Science and Technology,Science and Technology +477669,Science and Technology,Science and Technology +468004,Science and Technology,Science and Technology +468003,Science and Technology,Science and Technology +468002,Science and Technology,Science and Technology +467997,Science and Technology,Science and Technology +464793,Science and Technology,Science and Technology +464787,Science and Technology,Science and Technology +538382,Science and Technology,Science and Technology +529848,Science and Technology,Science and Technology +529845,Science and Technology,Science and Technology +529844,Science and Technology,Science and Technology +529841,Science and Technology,Science and Technology +529840,Science and Technology,Science and Technology +529839,Science and Technology,Science and Technology +529838,Science and Technology,Science and Technology +529837,Science and Technology,Science and Technology +529836,Science and Technology,Science and Technology +529835,Science and Technology,Science and Technology +529834,Science and Technology,Science and Technology +529833,Science and Technology,Science and Technology +529832,Science and Technology,Science and Technology +529831,Science and Technology,Science and Technology +529829,Science and Technology,Science and Technology +529828,Science and Technology,Science and Technology +511573,Science and Technology,Science and Technology +511572,Science and Technology,Science and Technology +508484,Science and Technology,Science and Technology +508480,Science and Technology,Science and Technology +508474,Science and Technology,Science and Technology +508468,Science and Technology,Science and Technology +508467,Science and Technology,Science and Technology +508466,Science and Technology,Science and Technology +508460,Science and Technology,Science and Technology +508457,Science and Technology,Science and Technology +507942,Science and Technology,Science and Technology +507928,Science and Technology,Science and Technology +499775,Science and Technology,Science and Technology +499774,Science and Technology,Science and Technology +491871,Science and Technology,Science and Technology +491870,Science and Technology,Science and Technology +487105,Science and Technology,Science and Technology +487104,Science and Technology,Science and Technology +487103,Science and Technology,Science and Technology +446473,Science and Technology,Science and Technology +448414,Science and Technology,Science and Technology +456495,Science and Technology,Science and Technology +453507,Science and Technology,Science and Technology +457798,Arts and Culture,Arts and Culture +457797,Arts and Culture,Arts and Culture +511095,Arts and Culture,Arts and Culture +480230,Arts and Culture,Arts and Culture +449221,Aboriginal Affairs,Aboriginal Affairs +449220,Aboriginal Affairs,Aboriginal Affairs +449234,Aboriginal Affairs,Aboriginal Affairs +449232,Aboriginal Affairs,Aboriginal Affairs +449231,Aboriginal Affairs,Aboriginal Affairs +449229,Aboriginal Affairs,Aboriginal Affairs +449228,Aboriginal Affairs,Aboriginal Affairs +449227,Aboriginal Affairs,Aboriginal Affairs +449226,Aboriginal Affairs,Aboriginal Affairs +449225,Aboriginal Affairs,Aboriginal Affairs +449224,Aboriginal Affairs,Aboriginal Affairs +460447,Arts and Culture,Arts and Culture +446899,Arts and Culture,Arts and Culture +518572,Arts and Culture,Arts and Culture +516832,Arts and Culture,Arts and Culture +507116,Arts and Culture,Arts and Culture +507115,Arts and Culture,Arts and Culture +506187,Arts and Culture,Arts and Culture +501025,Arts and Culture,Arts and Culture +501022,Arts and Culture,Arts and Culture +496500,Arts and Culture,Arts and Culture +495282,Arts and Culture,Arts and Culture +494527,Arts and Culture,Arts and Culture +493846,Arts and Culture,Arts and Culture +492509,Arts and Culture,Arts and Culture +489127,Arts and Culture,Arts and Culture +488509,Arts and Culture,Arts and Culture +486647,Arts and Culture,Arts and Culture +469277,Arts and Culture,Arts and Culture +463865,Arts and Culture,Arts and Culture +463716,Arts and Culture,Arts and Culture +462120,Arts and Culture,Arts and Culture +462119,Arts and Culture,Arts and Culture +457407,Aboriginal Affairs,Aboriginal Affairs +527882,Science and Technology,Science and Technology +527880,Science and Technology,Science and Technology +456576,Science and Technology,Science and Technology +527878,Science and Technology,Science and Technology +527874,Science and Technology,Science and Technology +524556,Science and Technology,Science and Technology +524555,Science and Technology,Science and Technology +524554,Science and Technology,Science and Technology +524525,Science and Technology,Science and Technology +524523,Science and Technology,Science and Technology +524519,Science and Technology,Science and Technology +524517,Science and Technology,Science and Technology +524516,Science and Technology,Science and Technology +524512,Science and Technology,Science and Technology +522002,Science and Technology,Science and Technology +521733,Science and Technology,Science and Technology +521732,Science and Technology,Science and Technology +521729,Science and Technology,Science and Technology +521728,Science and Technology,Science and Technology +521727,Science and Technology,Science and Technology +519632,Science and Technology,Science and Technology +519630,Science and Technology,Science and Technology +519629,Science and Technology,Science and Technology +519628,Science and Technology,Science and Technology +517525,Science and Technology,Science and Technology +516944,Science and Technology,Science and Technology +516942,Science and Technology,Science and Technology +516940,Science and Technology,Science and Technology +516939,Science and Technology,Science and Technology +516938,Science and Technology,Science and Technology +516936,Science and Technology,Science and Technology +516933,Science and Technology,Science and Technology +516932,Science and Technology,Science and Technology +516931,Science and Technology,Science and Technology +516930,Science and Technology,Science and Technology +514517,Science and Technology,Science and Technology +513902,Science and Technology,Science and Technology +509376,Science and Technology,Science and Technology +509203,Science and Technology,Science and Technology +509202,Science and Technology,Science and Technology +509201,Science and Technology,Science and Technology +509198,Science and Technology,Science and Technology +509197,Science and Technology,Science and Technology +509137,Science and Technology,Science and Technology +509132,Science and Technology,Science and Technology +509131,Science and Technology,Science and Technology +509128,Science and Technology,Science and Technology +509127,Science and Technology,Science and Technology +509126,Science and Technology,Science and Technology +509125,Science and Technology,Science and Technology +509124,Science and Technology,Science and Technology +543834,Science and Technology,Science and Technology +541081,Science and Technology,Science and Technology +541080,Science and Technology,Science and Technology +540083,Science and Technology,Science and Technology +540081,Science and Technology,Science and Technology +540080,Science and Technology,Science and Technology +540078,Science and Technology,Science and Technology +540077,Science and Technology,Science and Technology +537268,Science and Technology,Science and Technology +537267,Science and Technology,Science and Technology +537266,Science and Technology,Science and Technology +537265,Science and Technology,Science and Technology +537263,Science and Technology,Science and Technology +533836,Science and Technology,Science and Technology +531322,Science and Technology,Science and Technology +456183,Broadcasting,Broadcasting +514377,Broadcasting,Broadcasting +456187,Broadcasting,Broadcasting +456186,Broadcasting,Broadcasting +456185,Broadcasting,Broadcasting +454256,Telecommunications,Telecommunications +449029,Telecommunications,Telecommunications +499906,Telecommunications,Telecommunications +498029,Telecommunications,Telecommunications +497350,Telecommunications,Telecommunications +496710,Telecommunications,Telecommunications +483105,Telecommunications,Telecommunications +482762,Telecommunications,Telecommunications +482692,Telecommunications,Telecommunications +479051,Telecommunications,Telecommunications +478628,Telecommunications,Telecommunications +475428,Telecommunications,Telecommunications +474959,Telecommunications,Telecommunications +474570,Telecommunications,Telecommunications +474569,Telecommunications,Telecommunications +474093,Telecommunications,Telecommunications +474061,Telecommunications,Telecommunications +470943,Telecommunications,Telecommunications +467980,Telecommunications,Telecommunications +467979,Telecommunications,Telecommunications +480188,Telecommunications,Telecommunications +480187,Telecommunications,Telecommunications +477739,Telecommunications,Telecommunications +475864,Telecommunications,Telecommunications +475398,Telecommunications,Telecommunications +475391,Telecommunications,Telecommunications +473138,Telecommunications,Telecommunications +473136,Telecommunications,Telecommunications +473130,Telecommunications,Telecommunications +448422,Arts and Culture,Arts and Culture +448421,Arts and Culture,Arts and Culture +449646,Aboriginal Affairs,Aboriginal Affairs +450683,Science and Technology,Science and Technology +450682,Science and Technology,Science and Technology +467984,Telecommunications,Telecommunications +467983,Telecommunications,Telecommunications +480186,Telecommunications,Telecommunications +477750,Telecommunications,Telecommunications +475852,Telecommunications,Telecommunications +475368,Telecommunications,Telecommunications +475361,Telecommunications,Telecommunications +473150,Telecommunications,Telecommunications +473139,Telecommunications,Telecommunications +455092,Arts and Culture,Arts and Culture +455090,Arts and Culture,Arts and Culture +454002,Science and Technology,Science and Technology +451644,Science and Technology,Science and Technology +501528,Science and Technology,Science and Technology +469724,Science and Technology,Science and Technology +467218,Science and Technology,Science and Technology +467216,Science and Technology,Science and Technology +467212,Science and Technology,Science and Technology +467209,Science and Technology,Science and Technology +467207,Science and Technology,Science and Technology +467189,Science and Technology,Science and Technology +467131,Science and Technology,Science and Technology +464009,Science and Technology,Science and Technology +461498,Science and Technology,Science and Technology +459500,Science and Technology,Science and Technology +455498,Science and Technology,Science and Technology +454689,Science and Technology,Science and Technology +454013,Science and Technology,Science and Technology +454011,Science and Technology,Science and Technology +451069,Aboriginal Affairs,Aboriginal Affairs +449135,Aboriginal Affairs,Aboriginal Affairs +449128,Aboriginal Affairs,Aboriginal Affairs +449520,Aboriginal Affairs,Aboriginal Affairs +449519,Aboriginal Affairs,Aboriginal Affairs +449507,Aboriginal Affairs,Aboriginal Affairs +449500,Aboriginal Affairs,Aboriginal Affairs +449499,Aboriginal Affairs,Aboriginal Affairs +449498,Aboriginal Affairs,Aboriginal Affairs +449494,Aboriginal Affairs,Aboriginal Affairs +449342,Aboriginal Affairs,Aboriginal Affairs +451044,Aboriginal Affairs,Aboriginal Affairs +451041,Aboriginal Affairs,Aboriginal Affairs +529849,Aboriginal Affairs,Aboriginal Affairs +502476,Aboriginal Affairs,Aboriginal Affairs +499777,Aboriginal Affairs,Aboriginal Affairs +493314,Aboriginal Affairs,Aboriginal Affairs +467993,Aboriginal Affairs,Aboriginal Affairs +467992,Aboriginal Affairs,Aboriginal Affairs +464781,Aboriginal Affairs,Aboriginal Affairs +451414,Aboriginal Affairs,Aboriginal Affairs +449850,Aboriginal Affairs,Aboriginal Affairs +455449,Arts and Culture,Arts and Culture +455447,Arts and Culture,Arts and Culture +531462,Arts and Culture,Arts and Culture +530058,Arts and Culture,Arts and Culture +479111,Arts and Culture,Arts and Culture +463664,Arts and Culture,Arts and Culture +463663,Arts and Culture,Arts and Culture +463662,Arts and Culture,Arts and Culture +450486,Science and Technology,Science and Technology +455740,Arts and Culture,Arts and Culture +455739,Arts and Culture,Arts and Culture +517486,Arts and Culture,Arts and Culture +511906,Arts and Culture,Arts and Culture +510736,Arts and Culture,Arts and Culture +499076,Arts and Culture,Arts and Culture +499071,Arts and Culture,Arts and Culture +491394,Arts and Culture,Arts and Culture +484199,Arts and Culture,Arts and Culture +481157,Arts and Culture,Arts and Culture +481156,Arts and Culture,Arts and Culture +467788,Arts and Culture,Arts and Culture +467787,Arts and Culture,Arts and Culture +467786,Arts and Culture,Arts and Culture +467784,Arts and Culture,Arts and Culture +467782,Arts and Culture,Arts and Culture +467551,Arts and Culture,Arts and Culture +461130,Arts and Culture,Arts and Culture +455757,Arts and Culture,Arts and Culture +455754,Arts and Culture,Arts and Culture +455752,Arts and Culture,Arts and Culture +455749,Arts and Culture,Arts and Culture +455746,Arts and Culture,Arts and Culture +455745,Arts and Culture,Arts and Culture +455744,Arts and Culture,Arts and Culture +451518,Arts and Culture,Arts and Culture +451504,Arts and Culture,Arts and Culture +499135,Arts and Culture,Arts and Culture +496155,Arts and Culture,Arts and Culture +484631,Arts and Culture,Arts and Culture +475640,Arts and Culture,Arts and Culture +472733,Arts and Culture,Arts and Culture +467678,Arts and Culture,Arts and Culture +467569,Arts and Culture,Arts and Culture +467525,Arts and Culture,Arts and Culture +505287,Science and Technology,Science and Technology +505284,Science and Technology,Science and Technology +502776,Science and Technology,Science and Technology +502774,Science and Technology,Science and Technology +502773,Science and Technology,Science and Technology +502772,Science and Technology,Science and Technology +502769,Science and Technology,Science and Technology +495079,Aboriginal Affairs,Aboriginal Affairs +530047,Arts and Culture,Arts and Culture +530046,Arts and Culture,Arts and Culture +453612,Arts and Culture,Arts and Culture +457866,Arts and Culture,Arts and Culture +453083,Arts and Culture,Arts and Culture +455792,Science and Technology,Science and Technology +452777,Science and Technology,Science and Technology +472052,Telecommunications,Telecommunications +477907,Broadcasting,Broadcasting +450589,Aboriginal Affairs,Aboriginal Affairs +465440,Science and Technology,Science and Technology +465438,Science and Technology,Science and Technology +468135,Science and Technology,Science and Technology +476150,Aboriginal Affairs,Aboriginal Affairs +465509,Aboriginal Affairs,Aboriginal Affairs +481041,Aboriginal Affairs,Aboriginal Affairs +479747,Aboriginal Affairs,Aboriginal Affairs +477803,Aboriginal Affairs,Aboriginal Affairs +476797,Aboriginal Affairs,Aboriginal Affairs +453928,Science and Technology,Science and Technology +453927,Science and Technology,Science and Technology +453930,Science and Technology,Science and Technology +453024,Aboriginal Affairs,Aboriginal Affairs +453023,Aboriginal Affairs,Aboriginal Affairs +458396,Aboriginal Affairs,Aboriginal Affairs +456907,Aboriginal Affairs,Aboriginal Affairs +453027,Aboriginal Affairs,Aboriginal Affairs +458034,Science and Technology,Science and Technology +454994,Science and Technology,Science and Technology +504027,Science and Technology,Science and Technology +500666,Science and Technology,Science and Technology +497232,Science and Technology,Science and Technology +492369,Science and Technology,Science and Technology +489280,Science and Technology,Science and Technology +489278,Science and Technology,Science and Technology +489277,Science and Technology,Science and Technology +464942,Science and Technology,Science and Technology +464933,Science and Technology,Science and Technology +464932,Science and Technology,Science and Technology +464927,Science and Technology,Science and Technology +464925,Science and Technology,Science and Technology +464923,Science and Technology,Science and Technology +464918,Science and Technology,Science and Technology +463349,Science and Technology,Science and Technology +463342,Science and Technology,Science and Technology +463340,Science and Technology,Science and Technology +463336,Science and Technology,Science and Technology +463320,Science and Technology,Science and Technology +463319,Science and Technology,Science and Technology +463318,Science and Technology,Science and Technology +463317,Science and Technology,Science and Technology +463316,Science and Technology,Science and Technology +463315,Science and Technology,Science and Technology +463309,Science and Technology,Science and Technology +463308,Science and Technology,Science and Technology +463306,Science and Technology,Science and Technology +463304,Science and Technology,Science and Technology +461423,Science and Technology,Science and Technology +461422,Science and Technology,Science and Technology +461421,Science and Technology,Science and Technology +461420,Science and Technology,Science and Technology +461418,Science and Technology,Science and Technology +461405,Science and Technology,Science and Technology +461404,Science and Technology,Science and Technology +461401,Science and Technology,Science and Technology +461400,Science and Technology,Science and Technology +461399,Science and Technology,Science and Technology +461398,Science and Technology,Science and Technology +461397,Science and Technology,Science and Technology +461396,Science and Technology,Science and Technology +461395,Science and Technology,Science and Technology +461394,Science and Technology,Science and Technology +461393,Science and Technology,Science and Technology +461392,Science and Technology,Science and Technology +461391,Science and Technology,Science and Technology +460387,Science and Technology,Science and Technology +460386,Science and Technology,Science and Technology +460385,Science and Technology,Science and Technology +460383,Science and Technology,Science and Technology +460380,Science and Technology,Science and Technology +460379,Science and Technology,Science and Technology +460378,Science and Technology,Science and Technology +460377,Science and Technology,Science and Technology +460376,Science and Technology,Science and Technology +460375,Science and Technology,Science and Technology +460374,Science and Technology,Science and Technology +460373,Science and Technology,Science and Technology +460371,Science and Technology,Science and Technology +458036,Science and Technology,Science and Technology +464891,Science and Technology,Science and Technology +461730,Science and Technology,Science and Technology +542482,Science and Technology,Science and Technology +542460,Science and Technology,Science and Technology +540651,Science and Technology,Science and Technology +540646,Science and Technology,Science and Technology +540628,Science and Technology,Science and Technology +458241,Science and Technology,Science and Technology +458240,Science and Technology,Science and Technology +502472,Science and Technology,Science and Technology +487100,Science and Technology,Science and Technology +479623,Science and Technology,Science and Technology +475248,Science and Technology,Science and Technology +475243,Science and Technology,Science and Technology +472971,Science and Technology,Science and Technology +472949,Science and Technology,Science and Technology +472939,Science and Technology,Science and Technology +467998,Science and Technology,Science and Technology +467996,Science and Technology,Science and Technology +454791,Aboriginal Affairs,Aboriginal Affairs +454789,Aboriginal Affairs,Aboriginal Affairs +518599,Aboriginal Affairs,Aboriginal Affairs +499773,Aboriginal Affairs,Aboriginal Affairs +484693,Aboriginal Affairs,Aboriginal Affairs +484692,Aboriginal Affairs,Aboriginal Affairs +475255,Aboriginal Affairs,Aboriginal Affairs +472985,Aboriginal Affairs,Aboriginal Affairs +470511,Aboriginal Affairs,Aboriginal Affairs +462711,Aboriginal Affairs,Aboriginal Affairs +462709,Aboriginal Affairs,Aboriginal Affairs +454795,Aboriginal Affairs,Aboriginal Affairs +454415,Science and Technology,Science and Technology +454712,Arts and Culture,Arts and Culture +454710,Arts and Culture,Arts and Culture +509486,Arts and Culture,Arts and Culture +506931,Arts and Culture,Arts and Culture +506930,Arts and Culture,Arts and Culture +506530,Arts and Culture,Arts and Culture +501305,Arts and Culture,Arts and Culture +465687,Arts and Culture,Arts and Culture +454715,Arts and Culture,Arts and Culture +454714,Arts and Culture,Arts and Culture +456102,Arts and Culture,Arts and Culture +454382,Arts and Culture,Arts and Culture +456105,Arts and Culture,Arts and Culture +456104,Arts and Culture,Arts and Culture +465204,Science and Technology,Science and Technology +460070,Science and Technology,Science and Technology +485339,Science and Technology,Science and Technology +468173,Science and Technology,Science and Technology +456410,Science and Technology,Science and Technology +456409,Science and Technology,Science and Technology +456414,Science and Technology,Science and Technology +456413,Science and Technology,Science and Technology +456412,Science and Technology,Science and Technology +456263,Science and Technology,Science and Technology +456262,Science and Technology,Science and Technology +456269,Science and Technology,Science and Technology +456268,Science and Technology,Science and Technology +456267,Science and Technology,Science and Technology +456266,Science and Technology,Science and Technology +456265,Science and Technology,Science and Technology +454787,Science and Technology,Science and Technology +454785,Science and Technology,Science and Technology +459349,Science and Technology,Science and Technology +459348,Science and Technology,Science and Technology +491504,Science and Technology,Science and Technology +470704,Science and Technology,Science and Technology +470697,Science and Technology,Science and Technology +464593,Science and Technology,Science and Technology +457385,Aboriginal Affairs,Aboriginal Affairs +457382,Aboriginal Affairs,Aboriginal Affairs +457390,Aboriginal Affairs,Aboriginal Affairs +456959,Aboriginal Affairs,Aboriginal Affairs +456958,Aboriginal Affairs,Aboriginal Affairs +458226,Aboriginal Affairs,Aboriginal Affairs +457983,Aboriginal Affairs,Aboriginal Affairs +456560,Broadcasting,Broadcasting +454286,Aboriginal Affairs,Aboriginal Affairs +481700,Aboriginal Affairs,Aboriginal Affairs +459631,Aboriginal Affairs,Aboriginal Affairs +459628,Aboriginal Affairs,Aboriginal Affairs +454293,Aboriginal Affairs,Aboriginal Affairs +479684,Science and Technology,Science and Technology +457156,Science and Technology,Science and Technology +481301,Science and Technology,Science and Technology +456255,Aboriginal Affairs,Aboriginal Affairs +456254,Aboriginal Affairs,Aboriginal Affairs +458489,Aboriginal Affairs,Aboriginal Affairs +456258,Aboriginal Affairs,Aboriginal Affairs +456257,Aboriginal Affairs,Aboriginal Affairs +454290,Aboriginal Affairs,Aboriginal Affairs +454287,Aboriginal Affairs,Aboriginal Affairs +459630,Aboriginal Affairs,Aboriginal Affairs +459627,Aboriginal Affairs,Aboriginal Affairs +524347,Arts and Culture,Arts et culture +521503,Arts and Culture,Arts et culture +516591,Arts and Culture,Arts et culture +515393,Arts and Culture,Arts et culture +515392,Arts and Culture,Arts et culture +507871,Arts and Culture,Arts et culture +507869,Arts and Culture,Arts et culture +507857,Arts and Culture,Arts et culture +507853,Arts and Culture,Arts et culture +500808,Arts and Culture,Arts et culture +500807,Arts and Culture,Arts et culture +500806,Arts and Culture,Arts et culture +500804,Arts and Culture,Arts et culture +492026,Arts and Culture,Arts et culture +490260,Arts and Culture,Arts et culture +488648,Arts and Culture,Arts et culture +485468,Arts and Culture,Arts et culture +476576,Arts and Culture,Arts et culture +474160,Arts and Culture,Arts et culture +472314,Arts and Culture,Arts et culture +464551,Arts and Culture,Arts et culture +453678,Arts and Culture,Arts and Culture +453675,Arts and Culture,Arts and Culture +453671,Arts and Culture,Arts and Culture +453675,Broadcasting,Broadcasting +453671,Broadcasting,Broadcasting +462091,Broadcasting,Broadcasting +456236,Telecommunications,Telecommunications +457384,Aboriginal Affairs,Aboriginal Affairs +457383,Aboriginal Affairs,Aboriginal Affairs +457391,Aboriginal Affairs,Aboriginal Affairs +487309,Aboriginal Affairs,Aboriginal Affairs +487305,Aboriginal Affairs,Aboriginal Affairs +466323,Aboriginal Affairs,Aboriginal Affairs +466320,Aboriginal Affairs,Aboriginal Affairs +466316,Aboriginal Affairs,Aboriginal Affairs +466314,Aboriginal Affairs,Aboriginal Affairs +466310,Aboriginal Affairs,Aboriginal Affairs +456053,Aboriginal Affairs,Aboriginal Affairs +456051,Aboriginal Affairs,Aboriginal Affairs +490044,Aboriginal Affairs,Aboriginal Affairs +456053,Science and Technology,Science and Technology +456051,Science and Technology,Science and Technology +490044,Science and Technology,Science and Technology +487310,Science and Technology,Science and Technology +487309,Science and Technology,Science and Technology +487305,Science and Technology,Science and Technology +466323,Science and Technology,Science and Technology +466320,Science and Technology,Science and Technology +466316,Science and Technology,Science and Technology +466314,Science and Technology,Science and Technology +457817,Arts and Culture,Arts and Culture +457815,Arts and Culture,Arts and Culture +457820,Arts and Culture,Arts and Culture +484523,Science and Technology,Science and Technology +484513,Science and Technology,Science and Technology +510189,Science and Technology,Science and Technology +510186,Science and Technology,Science and Technology +510184,Science and Technology,Science and Technology +510142,Science and Technology,Science and Technology +510140,Science and Technology,Science and Technology +503420,Science and Technology,Science and Technology +503396,Science and Technology,Science and Technology +503395,Science and Technology,Science and Technology +500902,Science and Technology,Science and Technology +500901,Science and Technology,Science and Technology +500900,Science and Technology,Science and Technology +486762,Science and Technology,Science and Technology +486759,Science and Technology,Science and Technology +486757,Science and Technology,Science and Technology +486736,Science and Technology,Science and Technology +484529,Science and Technology,Science and Technology +484526,Science and Technology,Science and Technology +456057,Aboriginal Affairs,Aboriginal Affairs +456057,Science and Technology,Science and Technology +465801,Constitutional Issues,Constitutional Issues +465717,Constitutional Issues,Constitutional Issues +465806,Constitutional Issues,Constitutional Issues +463314,Budget,Budget +463313,Budget,Budget +466767,Industry,Industry +462907,Industry,Industry +500592,Industry,Industry +478432,Industry,Industry +474441,Industry,Industry +474120,Industry,Industry +474028,Industry,Industry +471812,Industry,Industry +469250,Industry,Industry +469056,Industry,Industry +468795,Industry,Industry +468794,Industry,Industry +468718,Industry,Industry +468713,Industry,Industry +468712,Industry,Industry +468701,Industry,Industry +468687,Industry,Industry +468635,Industry,Industry +466750,International Trade,International Trade +463417,International Trade,International Trade +483456,International Trade,International Trade +462907,Regional Development,Regional Development +459343,Regional Development,Regional Development +481730,Regional Development,Regional Development +471812,Regional Development,Regional Development +471398,Regional Development,Regional Development +469547,Regional Development,Regional Development +469250,Regional Development,Regional Development +469056,Regional Development,Regional Development +468795,Regional Development,Regional Development +468794,Regional Development,Regional Development +468718,Regional Development,Regional Development +468712,Regional Development,Regional Development +468701,Regional Development,Regional Development +468687,Regional Development,Regional Development +463314,Taxation and Finance,Taxation and Finance +463313,Taxation and Finance,Taxation and Finance +500592,Taxation and Finance,Taxation and Finance +483456,Taxation and Finance,Taxation and Finance +474028,Taxation and Finance,Taxation and Finance +471597,Taxation and Finance,Taxation and Finance +469547,Taxation and Finance,Taxation and Finance +469210,Taxation and Finance,Taxation and Finance +468795,Taxation and Finance,Taxation and Finance +468718,Taxation and Finance,Taxation and Finance +468712,Taxation and Finance,Taxation and Finance +468687,Taxation and Finance,Taxation and Finance +468635,Taxation and Finance,Taxation and Finance +466767,Taxation and Finance,Taxation and Finance +466759,Taxation and Finance,Taxation and Finance +465614,Taxation and Finance,Taxation and Finance +456924,Economic Development,Economic Development +453869,Economic Development,Economic Development +459414,Economic Development,Economic Development +459413,Economic Development,Economic Development +459412,Economic Development,Economic Development +459411,Economic Development,Economic Development +459410,Economic Development,Economic Development +459409,Economic Development,Economic Development +454095,Regional Development,Regional Development +453828,Regional Development,Regional Development +454097,Regional Development,Regional Development +461568,Financial Institutions,Financial Institutions +461568,Industry,Industry +461568,Taxation and Finance,Taxation and Finance +462974,Agriculture,Agriculture +460992,Agriculture,Agriculture +462974,International Trade,International Trade +460992,International Trade,International Trade +465449,International Trade,International Trade +457925,Energy,Energy +462254,Education,Education +453926,Education,Education +468964,Education,Education +466307,Education,Education +465158,Education,Education +465093,Education,Education +463206,Education,Education +463205,Education,Education +462254,Justice and Law Enforcement,Justice and Law Enforcement +453926,Justice and Law Enforcement,Justice and Law Enforcement +465093,Justice and Law Enforcement,Justice and Law Enforcement +456837,Health,Health +456837,Industry,Industry +456837,Research and Development,Research and Development +456837,Security,Security +457819,Economic Development,Economic Development +457818,Economic Development,Economic Development +457818,Infrastructure,Infrastructure +457817,Official Languages,Official Languages +457815,Official Languages,Official Languages +457820,Official Languages,Official Languages +457819,Official Languages,Official Languages +457817,Regional Development,Regional Development +457815,Regional Development,Regional Development +457820,Regional Development,Regional Development +457819,Regional Development,Regional Development +459206,Agriculture,Agriculture +459206,Consumer Issues,Consumer Issues +459206,International Relations,International Relations +459208,Agriculture,Agriculture +459208,Consumer Issues,Consumer Issues +459208,International Relations,International Relations +459210,Agriculture,Agriculture +459210,Consumer Issues,Consumer Issues +459210,International Relations,International Relations +454978,Agriculture,Agriculture +505425,Agriculture,Agriculture +491112,Agriculture,Agriculture +454979,International Trade,International Trade +454978,International Trade,International Trade +459221,Agriculture,Agriculture +459221,Consumer Issues,Consumer Issues +459221,International Relations,International Relations +459223,Agriculture,Agriculture +459223,Consumer Issues,Consumer Issues +459223,International Relations,International Relations +459219,Agriculture,Agriculture +459218,Agriculture,Agriculture +459219,Consumer Issues,Consumer Issues +459218,Consumer Issues,Consumer Issues +459219,International Relations,International Relations +459218,International Relations,International Relations +500900,Industry,Industry +490481,Industry,Industry +515701,Industry,Industry +503420,Industry,Industry +503396,Industry,Industry +503395,Industry,Industry +500902,Industry,Industry +484523,Research and Development,Research and Development +484513,Research and Development,Research and Development +510189,Research and Development,Research and Development +510186,Research and Development,Research and Development +510184,Research and Development,Research and Development +510142,Research and Development,Research and Development +510140,Research and Development,Research and Development +503420,Research and Development,Research and Development +503396,Research and Development,Research and Development +503395,Research and Development,Research and Development +500902,Research and Development,Research and Development +500901,Research and Development,Research and Development +500900,Research and Development,Research and Development +486762,Research and Development,Research and Development +486759,Research and Development,Research and Development +486757,Research and Development,Research and Development +486736,Research and Development,Research and Development +484529,Research and Development,Research and Development +484526,Research and Development,Research and Development +465824,Employment and Training,Employment and Training +454068,Employment and Training,Employment and Training +465824,Industry,Industry +454068,Industry,Industry +457805,Agriculture,Agriculture +455255,Agriculture,Agriculture +455254,Agriculture,Agriculture +505395,Agriculture,Agriculture +505393,Agriculture,Agriculture +505385,Agriculture,Agriculture +505379,Agriculture,Agriculture +491738,Agriculture,Agriculture +491737,Agriculture,Agriculture +491736,Agriculture,Agriculture +466963,Agriculture,Agriculture +466960,Agriculture,Agriculture +455257,Agriculture,Agriculture +455255,International Trade,International Trade +455254,International Trade,International Trade +505395,International Trade,International Trade +505393,International Trade,International Trade +505385,International Trade,International Trade +505379,International Trade,International Trade +491738,International Trade,International Trade +491737,International Trade,International Trade +491736,International Trade,International Trade +466963,International Trade,International Trade +466960,International Trade,International Trade +455257,International Trade,International Trade +454103,Consumer Issues,Consumer Issues +454101,Consumer Issues,Consumer Issues +454763,Consumer Issues,Consumer Issues +454762,Consumer Issues,Consumer Issues +454761,Consumer Issues,Consumer Issues +454107,Consumer Issues,Consumer Issues +454106,Consumer Issues,Consumer Issues +454105,Consumer Issues,Consumer Issues +454109,Consumer Issues,Consumer Issues +454108,Consumer Issues,Consumer Issues +536502,Consumer Issues,Consumer Issues +536501,Consumer Issues,Consumer Issues +454772,Consumer Issues,Consumer Issues +454771,Consumer Issues,Consumer Issues +454770,Consumer Issues,Consumer Issues +454115,Consumer Issues,Consumer Issues +533846,Consumer Issues,Consumer Issues +508117,Consumer Issues,Consumer Issues +508052,Consumer Issues,Consumer Issues +508048,Consumer Issues,Consumer Issues +454766,Consumer Issues,Consumer Issues +454765,Consumer Issues,Consumer Issues +454764,Consumer Issues,Consumer Issues +454118,Consumer Issues,Consumer Issues +454117,Consumer Issues,Consumer Issues +454259,Small Business,Small Business +454258,Small Business,Small Business +454428,Budget,Budget +465804,Constitutional Issues,Constitutional Issues +463417,Budget,Budget +468598,Industry,Industry +466759,International Trade,International Trade +468598,Regional Development,Regional Development +463417,Taxation and Finance,Taxation and Finance +456069,Environment,Environment +455801,Infrastructure,Infrastructure +455801,Economic Development,Economic Development +455801,Transportation,Transportation +456925,Economic Development,Economic Development +454096,Regional Development,Regional Development +455064,Tourism,Tourism +461569,Financial Institutions,Financial Institutions +461569,Industry,Industry +461569,Taxation and Finance,Taxation and Finance +453854,Pensions,Pensions +453855,Pensions,Pensions +453856,Pensions,Pensions +453859,Pensions,Pensions +453862,Pensions,Pensions +453863,Pensions,Pensions +453866,Pensions,Pensions +465449,Agriculture,Agriculture +463486,Health,Health +463486,International Trade,International Trade +453867,Pensions,Pensions +453868,Pensions,Pensions +457927,Financial Institutions,Financial Institutions +453870,Pensions,Pensions +453871,Pensions,Pensions +453872,Pensions,Pensions +453874,Pensions,Pensions +453875,Pensions,Pensions +453877,Pensions,Pensions +453878,Pensions,Pensions +453879,Pensions,Pensions +453880,Pensions,Pensions +453883,Pensions,Pensions +453884,Pensions,Pensions +453885,Pensions,Pensions +453886,Pensions,Pensions +453889,Pensions,Pensions +457926,Energy,Energy +453898,Pensions,Pensions +453902,Pensions,Pensions +453904,Pensions,Pensions +453905,Pensions,Pensions +453906,Pensions,Pensions +453907,Pensions,Pensions +453908,Pensions,Pensions +453909,Pensions,Pensions +474021,Economic Development,Economic Development +462256,Education,Education +462256,Justice and Law Enforcement,Justice and Law Enforcement +453950,Industry,Industry +453950,Small Business,Small Business +453952,Industry,Industry +453952,Small Business,Small Business +453984,Privacy and Access to Information,Privacy and Access to Information +456838,Health,Health +456838,Industry,Industry +456838,Research and Development,Research and Development +456838,Security,Security +456246,Economic Development,Economic Development +456246,Energy,Energy +456246,Industry,Industry +457820,Economic Development,Economic Development +457820,Infrastructure,Infrastructure +457818,Official Languages,Official Languages +457818,Regional Development,Regional Development +454004,Pensions,Pensions +454006,Pensions,Pensions +454008,Pensions,Pensions +454009,Pensions,Pensions +454010,Pensions,Pensions +454012,Pensions,Pensions +454014,Pensions,Pensions +454017,Pensions,Pensions +454018,Pensions,Pensions +454020,Pensions,Pensions +454021,Pensions,Pensions +454023,Pensions,Pensions +454024,Pensions,Pensions +454025,Pensions,Pensions +454026,Pensions,Pensions +456446,Sports,Sports +454028,Pensions,Pensions +454029,Pensions,Pensions +454030,Pensions,Pensions +454031,Pensions,Pensions +454032,Pensions,Pensions +454033,Pensions,Pensions +454034,Pensions,Pensions +454035,Pensions,Pensions +454036,Pensions,Pensions +454037,Pensions,Pensions +454038,Pensions,Pensions +454039,Pensions,Pensions +454040,Pensions,Pensions +454041,Pensions,Pensions +454042,Pensions,Pensions +459207,Agriculture,Agriculture +459207,Consumer Issues,Consumer Issues +459207,International Relations,International Relations +459209,Agriculture,Agriculture +459209,Consumer Issues,Consumer Issues +459209,International Relations,International Relations +459211,Agriculture,Agriculture +459211,Consumer Issues,Consumer Issues +459211,International Relations,International Relations +454979,Agriculture,Agriculture +505425,International Relations,International Relations +491112,International Trade,International Trade +459222,Agriculture,Agriculture +459222,Consumer Issues,Consumer Issues +459222,International Relations,International Relations +459224,Agriculture,Agriculture +459224,Consumer Issues,Consumer Issues +459224,International Relations,International Relations +460028,Agriculture,Agriculture +460028,Consumer Issues,Consumer Issues +460028,International Relations,International Relations +500901,Industry,Industry +484524,Research and Development,Research and Development +490481,International Trade,International Trade +455902,Economic Development,Economic Development +494575,Employment and Training,Employment and Training +465825,Industry,Industry +457806,Agriculture,Agriculture +457808,International Relations,International Relations +458529,International Trade,International Trade +458530,International Trade,International Trade +458532,International Trade,International Trade +455256,Agriculture,Agriculture +466963,Consumer Issues,Consumer Issues +455256,International Trade,International Trade +454104,Consumer Issues,Consumer Issues +454110,Consumer Issues,Consumer Issues +454116,Consumer Issues,Consumer Issues +454260,Small Business,Small Business +456059,Forestry,Forestry +456059,Economic Development,Economic Development +456059,Infrastructure,Infrastructure +456057,Agriculture,Agriculture +456059,Energy,Energy +454166,Budget,Budget +454166,Employment and Training,Employment and Training +454166,Intellectual Property,Intellectual Property +454167,Budget,Budget +454167,Intellectual Property,Intellectual Property +532911,Environment,Environment +454168,Transportation,Transportation +454182,Elections,Elections +456649,Defence,Defence +474850,Government Procurement,Government Procurement +502032,Industry,Industry +456257,Infrastructure,Infrastructure +454425,Budget,Budget +454469,Budget,Budget +458150,Economic Development,Economic Development +458150,Sports,Sports +458150,Tourism,Tourism +489697,Economic Development,Economic Development +500783,Financial Institutions,Financial Institutions +500783,Budget,Budget +500783,Consumer Issues,Consumer Issues +533204,Agriculture,Agriculture +533154,Environment,Environment +454321,Environment,Environment +465377,Environment,Environment +454338,Environment,Environment +517162,Government Procurement,Government Procurement +457351,Economic Development,Economic Development +454526,Environment,Environment +456679,Economic Development,Economic Development +456679,Industry,Industry +456679,Transportation,Transportation +457356,Regional Development,Regional Development +470601,Climate,Climate +470600,Energy,Energy +456419,Environment,Environment +456419,International Relations,International Relations +460819,Infrastructure,Infrastructure +456328,Transportation,Transportation +454718,Health,Health +454718,Housing,Housing +457608,Tourism,Tourism +496503,Budget,Budget +458622,Economic Development,Economic Development +503456,Health,Health +458622,Research and Development,Research and Development +456945,Economic Development,Economic Development +456944,Environment,Environment +456944,Infrastructure,Infrastructure +470593,Health,Health +454912,Research and Development,Research and Development +493893,Transportation,Transportation +476130,Industry,Industry +493893,Infrastructure,Infrastructure +454956,Budget,Budget +454970,Budget,Budget +454970,Education,Education +455033,Tourism,Tourism +476079,Consumer Issues,Consumer Issues +471177,Taxation and Finance,Taxation and Finance +466797,Energy,Energy +466798,Environment,Environment +459213,Agriculture,Agriculture +459213,Consumer Issues,Consumer Issues +459213,International Relations,International Relations +459216,Agriculture,Agriculture +459216,Consumer Issues,Consumer Issues +459216,Internal Trade,Internal Trade +455256,Environment,Environment +456779,Health,Health +459261,Infrastructure,Infrastructure +470310,Municipalities,Municipalities +456427,Environment,Environment +475577,Employment and Training,Employment and Training +459370,Consumer Issues,Consumer Issues +459373,Consumer Issues,Consumer Issues +459371,Consumer Issues,Consumer Issues +455332,Economic Development,Economic Development +462668,Economic Development,Economic Development +455454,Labour,Labour +455492,Infrastructure,Infrastructure +456362,Infrastructure,Infrastructure +509470,Education,Education +455989,Employment and Training,Employment and Training +455976,Health,Health +455981,Immigration,Immigration +455952,Justice and Law Enforcement,Justice and Law Enforcement +455701,Internal Trade,Internal Trade +455701,International Relations,International Relations +467526,Immigration,Immigration +487256,Justice and Law Enforcement,Justice and Law Enforcement +455666,Elections,Elections +457516,Elections,Elections +455679,Labour,Labour +455681,Labour,Labour +455687,Labour,Labour +474836,International Trade,International Trade +455699,Health,Health +467834,Employment and Training,Employment and Training +467834,Labour,Labour +455704,Transportation,Transportation +455719,Industry,Industry +455765,Internal Trade,Internal Trade +504538,Education,Education +462471,Privacy and Access to Information,Privacy and Access to Information +457949,Tourism,Tourism +455853,International Trade,International Trade +457845,Energy,Energy +480744,Budget,Budget +480744,Regional Development,Regional Development +456050,Fisheries,Fisheries +456051,Fisheries,Fisheries +456062,Forestry,Forestry +456064,Housing,Housing +456064,Infrastructure,Infrastructure +456065,Housing,Housing +456065,Infrastructure,Infrastructure +456066,Environment,Environment +456066,Climate,Climate +456067,Climate,Climate +465114,Fisheries,Fisheries +495529,Government Procurement,Government Procurement +457861,Environment,Environment +524345,Agriculture,Agriculture +465330,Consumer Issues,Consumer Issues +524344,Environment,Environment +524345,International Trade,International Trade +456474,Industry,Industry +456293,Elections,Elections +456301,Municipalities,Municipalities +457608,Economic Development,Economic Development +458476,Economic Development,Economic Development +458476,Municipalities,Municipalities +458476,Regional Development,Regional Development +458476,Tourism,Tourism +475940,Taxation and Finance,Taxation and Finance +475940,Tourism,Tourism +456362,Economic Development,Economic Development +462369,Education,Education +461309,Health,Health +457894,Fisheries,Fisheries +456844,Employment and Training,Employment and Training +456844,Infrastructure,Infrastructure +498840,Economic Development,Economic Development +498840,Environment,Environment +456418,Elections,Elections +456423,Fisheries,Fisheries +460824,Environment,Environment +457895,Fisheries,Fisheries +460824,International Trade,International Trade +458571,Economic Development,Economic Development +458571,Industry,Industry +458571,Small Business,Small Business +456506,Taxation and Finance,Taxation and Finance +458571,Tourism,Tourism +457442,Privacy and Access to Information,Privacy and Access to Information +456441,Environment,Environment +456442,Environment,Environment +456443,Environment,Environment +456444,Environment,Environment +456440,Environment,Environment +456440,Climate,Climate +462370,Climate,Climate +456442,Climate,Climate +456443,Climate,Climate +462371,Climate,Climate +472051,Transportation,Transportation +471384,Municipalities,Municipalities +483019,Environment,Environment +489412,Infrastructure,Infrastructure +462381,Health,Health +458762,Infrastructure,Infrastructure +457093,Defence,Defence +503937,Privacy and Access to Information,Privacy and Access to Information +456495,International Trade,International Trade +456496,Internal Trade,Internal Trade +456513,Infrastructure,Infrastructure +506577,Small Business,Small Business +454760,Small Business,Small Business +454758,Small Business,Small Business +454756,Small Business,Small Business +454268,Small Business,Small Business +454262,Small Business,Small Business +456057,Economic Development,Economic Development +456057,Infrastructure,Infrastructure +456057,Energy,Energy +532903,Environment,Environment +532901,Environment,Environment +530660,Environment,Environment +527837,Environment,Environment +527626,Environment,Environment +527625,Environment,Environment +527624,Environment,Environment +521146,Environment,Environment +520401,Environment,Environment +512494,Environment,Environment +508784,Environment,Environment +502346,Environment,Environment +467489,Environment,Environment +467390,Environment,Environment +467346,Environment,Environment +467317,Environment,Environment +466979,Environment,Environment +466978,Environment,Environment +466439,Environment,Environment +466389,Environment,Environment +466380,Environment,Environment +465366,Environment,Environment +465365,Environment,Environment +463187,Environment,Environment +454196,Environment,Environment +454168,Environment,Environment +539957,Environment,Environment +536346,Environment,Environment +533335,Environment,Environment +532961,Environment,Environment +532959,Environment,Environment +532958,Environment,Environment +532952,Environment,Environment +532914,Environment,Environment +454170,Elections,Elections +456648,Defence,Defence +456647,Defence,Defence +515904,Defence,Defence +515903,Defence,Defence +515902,Defence,Defence +515901,Defence,Defence +513104,Defence,Defence +511500,Defence,Defence +511498,Defence,Defence +507662,Defence,Defence +507660,Defence,Defence +507652,Defence,Defence +507648,Defence,Defence +507646,Defence,Defence +507642,Defence,Defence +505759,Defence,Defence +505754,Defence,Defence +505752,Defence,Defence +505714,Defence,Defence +502033,Defence,Defence +502032,Defence,Defence +502030,Defence,Defence +499569,Defence,Defence +487818,Defence,Defence +484369,Defence,Defence +481908,Defence,Defence +479070,Defence,Defence +474851,Defence,Defence +474850,Defence,Defence +465359,Defence,Defence +465358,Defence,Defence +465357,Defence,Defence +463725,Defence,Defence +463287,Defence,Defence +463090,Defence,Defence +462469,Defence,Defence +462468,Defence,Defence +462466,Defence,Defence +461111,Defence,Defence +460935,Defence,Defence +460601,Defence,Defence +458000,Defence,Defence +456653,Defence,Defence +456652,Defence,Defence +456650,Defence,Defence +463287,Government Procurement,Government Procurement +463090,Government Procurement,Government Procurement +462469,Government Procurement,Government Procurement +462468,Government Procurement,Government Procurement +462466,Government Procurement,Government Procurement +461111,Government Procurement,Government Procurement +460935,Government Procurement,Government Procurement +460601,Government Procurement,Government Procurement +458000,Government Procurement,Government Procurement +456653,Government Procurement,Government Procurement +456652,Government Procurement,Government Procurement +456650,Government Procurement,Government Procurement +456649,Government Procurement,Government Procurement +456648,Government Procurement,Government Procurement +456647,Government Procurement,Government Procurement +515904,Government Procurement,Government Procurement +515903,Government Procurement,Government Procurement +515902,Government Procurement,Government Procurement +515901,Government Procurement,Government Procurement +513104,Government Procurement,Government Procurement +511500,Government Procurement,Government Procurement +511498,Government Procurement,Government Procurement +507662,Government Procurement,Government Procurement +507660,Government Procurement,Government Procurement +507652,Government Procurement,Government Procurement +507648,Government Procurement,Government Procurement +507646,Government Procurement,Government Procurement +507642,Government Procurement,Government Procurement +505759,Government Procurement,Government Procurement +505754,Government Procurement,Government Procurement +505752,Government Procurement,Government Procurement +505714,Government Procurement,Government Procurement +502033,Government Procurement,Government Procurement +502032,Government Procurement,Government Procurement +502030,Government Procurement,Government Procurement +499569,Government Procurement,Government Procurement +487818,Government Procurement,Government Procurement +484369,Government Procurement,Government Procurement +481908,Government Procurement,Government Procurement +479070,Government Procurement,Government Procurement +474851,Government Procurement,Government Procurement +502030,Industry,Industry +499569,Industry,Industry +487818,Industry,Industry +484369,Industry,Industry +479070,Industry,Industry +474851,Industry,Industry +474850,Industry,Industry +465359,Industry,Industry +465358,Industry,Industry +465357,Industry,Industry +463725,Industry,Industry +463287,Industry,Industry +463090,Industry,Industry +462469,Industry,Industry +462468,Industry,Industry +462466,Industry,Industry +461111,Industry,Industry +460935,Industry,Industry +460601,Industry,Industry +458000,Industry,Industry +456653,Industry,Industry +456652,Industry,Industry +456650,Industry,Industry +456649,Industry,Industry +456648,Industry,Industry +456647,Industry,Industry +515904,Industry,Industry +515903,Industry,Industry +515902,Industry,Industry +515901,Industry,Industry +513104,Industry,Industry +511500,Industry,Industry +511498,Industry,Industry +505714,Industry,Industry +502033,Industry,Industry +454424,Budget,Budget +454423,Budget,Budget +454427,Budget,Budget +454426,Budget,Budget +454466,Budget,Budget +454462,Budget,Budget +457930,Economic Development,Economic Development +457928,Economic Development,Economic Development +458151,Economic Development,Economic Development +457930,Sports,Sports +457928,Sports,Sports +457928,Tourism,Tourism +489697,Financial Institutions,Financial Institutions +489697,Consumer Issues,Consumer Issues +533203,Agriculture,Agriculture +533152,Agriculture,Agriculture +533153,Environment,Environment +533152,Environment,Environment +533295,Environment,Environment +533204,Environment,Environment +533203,Environment,Environment +454320,Environment,Environment +465376,Environment,Environment +454324,Environment,Environment +466955,Environment,Environment +517161,Government Procurement,Government Procurement +517160,Government Procurement,Government Procurement +463146,Government Procurement,Government Procurement +454515,Government Procurement,Government Procurement +454509,Government Procurement,Government Procurement +454508,Government Procurement,Government Procurement +454504,Government Procurement,Government Procurement +454502,Government Procurement,Government Procurement +454406,Government Procurement,Government Procurement +454405,Government Procurement,Government Procurement +454403,Government Procurement,Government Procurement +457350,Economic Development,Economic Development +455878,Economic Development,Economic Development +457367,Economic Development,Economic Development +457366,Economic Development,Economic Development +457365,Economic Development,Economic Development +457364,Economic Development,Economic Development +457363,Economic Development,Economic Development +457362,Economic Development,Economic Development +457361,Economic Development,Economic Development +457360,Economic Development,Economic Development +457359,Economic Development,Economic Development +457357,Economic Development,Economic Development +457356,Economic Development,Economic Development +457355,Economic Development,Economic Development +457354,Economic Development,Economic Development +457353,Economic Development,Economic Development +457352,Economic Development,Economic Development +457354,Regional Development,Regional Development +457351,Regional Development,Regional Development +457366,Regional Development,Regional Development +457365,Regional Development,Regional Development +457364,Regional Development,Regional Development +457361,Regional Development,Regional Development +457359,Regional Development,Regional Development +457357,Regional Development,Regional Development +470598,Climate,Climate +470598,Energy,Energy +456419,Energy,Energy +470601,Energy,Energy +470601,Environment,Environment +470598,Environment,Environment +460818,Infrastructure,Infrastructure +460817,Infrastructure,Infrastructure +454688,Transportation,Transportation +457604,Tourism,Tourism +457592,Tourism,Tourism +489426,Budget,Budget +489009,Budget,Budget +458622,Budget,Budget +458620,Budget,Budget +457985,Budget,Budget +507226,Budget,Budget +506793,Budget,Budget +506255,Budget,Budget +503456,Budget,Budget +503153,Budget,Budget +500939,Budget,Budget +500484,Budget,Budget +499820,Budget,Budget +458620,Economic Development,Economic Development +457985,Economic Development,Economic Development +507226,Economic Development,Economic Development +506793,Economic Development,Economic Development +506255,Economic Development,Economic Development +503456,Economic Development,Economic Development +503153,Economic Development,Economic Development +500939,Economic Development,Economic Development +500484,Economic Development,Economic Development +496503,Economic Development,Economic Development +494118,Economic Development,Economic Development +490505,Economic Development,Economic Development +489426,Economic Development,Economic Development +489009,Economic Development,Economic Development +484281,Economic Development,Economic Development +482069,Economic Development,Economic Development +503153,Health,Health +501479,Health,Health +500939,Health,Health +500484,Health,Health +499820,Health,Health +496503,Health,Health +494118,Health,Health +490505,Health,Health +489426,Health,Health +489009,Health,Health +486237,Health,Health +484281,Health,Health +482069,Health,Health +458622,Health,Health +458620,Health,Health +457985,Health,Health +507226,Health,Health +506793,Health,Health +506255,Health,Health +458620,Research and Development,Research and Development +457985,Research and Development,Research and Development +507226,Research and Development,Research and Development +506793,Research and Development,Research and Development +506255,Research and Development,Research and Development +503456,Research and Development,Research and Development +503153,Research and Development,Research and Development +500939,Research and Development,Research and Development +500484,Research and Development,Research and Development +496503,Research and Development,Research and Development +494118,Research and Development,Research and Development +490505,Research and Development,Research and Development +489426,Research and Development,Research and Development +489009,Research and Development,Research and Development +486237,Research and Development,Research and Development +484281,Research and Development,Research and Development +482069,Research and Development,Research and Development +456944,Economic Development,Economic Development +456943,Economic Development,Economic Development +458238,Economic Development,Economic Development +456943,Environment,Environment +456942,Environment,Environment +458239,Environment,Environment +458238,Environment,Environment +456945,Environment,Environment +456943,Infrastructure,Infrastructure +456942,Infrastructure,Infrastructure +458239,Infrastructure,Infrastructure +458238,Infrastructure,Infrastructure +456945,Infrastructure,Infrastructure +466446,Health,Health +476129,Industry,Industry +476130,Infrastructure,Infrastructure +476129,Infrastructure,Infrastructure +509227,Infrastructure,Infrastructure +468213,Consumer Issues,Consumer Issues +468214,Taxation and Finance,Taxation and Finance +468213,Taxation and Finance,Taxation and Finance +462980,Taxation and Finance,Taxation and Finance +457709,Taxation and Finance,Taxation and Finance +536169,Taxation and Finance,Taxation and Finance +532240,Taxation and Finance,Taxation and Finance +529486,Taxation and Finance,Taxation and Finance +529478,Taxation and Finance,Taxation and Finance +524742,Taxation and Finance,Taxation and Finance +524730,Taxation and Finance,Taxation and Finance +522974,Taxation and Finance,Taxation and Finance +520120,Taxation and Finance,Taxation and Finance +520119,Taxation and Finance,Taxation and Finance +518467,Taxation and Finance,Taxation and Finance +518466,Taxation and Finance,Taxation and Finance +515941,Taxation and Finance,Taxation and Finance +510753,Taxation and Finance,Taxation and Finance +510710,Taxation and Finance,Taxation and Finance +505434,Taxation and Finance,Taxation and Finance +505430,Taxation and Finance,Taxation and Finance +505424,Taxation and Finance,Taxation and Finance +503024,Taxation and Finance,Taxation and Finance +503023,Taxation and Finance,Taxation and Finance +503016,Taxation and Finance,Taxation and Finance +503015,Taxation and Finance,Taxation and Finance +499722,Taxation and Finance,Taxation and Finance +499716,Taxation and Finance,Taxation and Finance +499711,Taxation and Finance,Taxation and Finance +499700,Taxation and Finance,Taxation and Finance +496176,Taxation and Finance,Taxation and Finance +496174,Taxation and Finance,Taxation and Finance +491809,Taxation and Finance,Taxation and Finance +491807,Taxation and Finance,Taxation and Finance +491804,Taxation and Finance,Taxation and Finance +487674,Taxation and Finance,Taxation and Finance +485330,Taxation and Finance,Taxation and Finance +485327,Taxation and Finance,Taxation and Finance +476079,Taxation and Finance,Taxation and Finance +476077,Taxation and Finance,Taxation and Finance +466793,Energy,Energy +466797,Environment,Environment +466793,Environment,Environment +459212,Agriculture,Agriculture +459212,Consumer Issues,Consumer Issues +459212,International Relations,International Relations +459215,Agriculture,Agriculture +459215,Consumer Issues,Consumer Issues +459215,Internal Trade,Internal Trade +455255,Environment,Environment +455254,Environment,Environment +466960,Environment,Environment +456778,Health,Health +456616,Health,Health +465475,Health,Health +465474,Health,Health +465472,Health,Health +459709,Health,Health +459708,Health,Health +458111,Health,Health +458110,Health,Health +458109,Health,Health +458108,Health,Health +458107,Health,Health +458106,Health,Health +456783,Health,Health +456782,Health,Health +456781,Health,Health +456780,Health,Health +470309,Municipalities,Municipalities +470307,Municipalities,Municipalities +464174,Municipalities,Municipalities +464172,Municipalities,Municipalities +462590,Municipalities,Municipalities +462589,Municipalities,Municipalities +461157,Municipalities,Municipalities +461156,Municipalities,Municipalities +461146,Municipalities,Municipalities +461145,Municipalities,Municipalities +461144,Municipalities,Municipalities +461143,Municipalities,Municipalities +460791,Municipalities,Municipalities +459261,Municipalities,Municipalities +484385,Municipalities,Municipalities +484287,Municipalities,Municipalities +479420,Municipalities,Municipalities +477290,Municipalities,Municipalities +475011,Municipalities,Municipalities +475010,Municipalities,Municipalities +475008,Municipalities,Municipalities +475005,Municipalities,Municipalities +472557,Municipalities,Municipalities +472555,Municipalities,Municipalities +472554,Municipalities,Municipalities +472552,Municipalities,Municipalities +472551,Municipalities,Municipalities +472549,Municipalities,Municipalities +456426,Environment,Environment +459367,Consumer Issues,Consumer Issues +459366,Consumer Issues,Consumer Issues +459372,Consumer Issues,Consumer Issues +464314,Consumer Issues,Consumer Issues +459375,Consumer Issues,Consumer Issues +527463,Economic Development,Economic Development +527458,Economic Development,Economic Development +463735,Economic Development,Economic Development +462216,Economic Development,Economic Development +544364,Economic Development,Economic Development +541636,Economic Development,Economic Development +459647,Economic Development,Economic Development +459645,Economic Development,Economic Development +459644,Economic Development,Economic Development +459641,Economic Development,Economic Development +458654,Economic Development,Economic Development +458653,Economic Development,Economic Development +458652,Economic Development,Economic Development +458651,Economic Development,Economic Development +458650,Economic Development,Economic Development +456962,Economic Development,Economic Development +530738,Economic Development,Economic Development +525242,Economic Development,Economic Development +515248,Economic Development,Economic Development +515247,Economic Development,Economic Development +515246,Economic Development,Economic Development +510194,Economic Development,Economic Development +500689,Economic Development,Economic Development +490039,Economic Development,Economic Development +484319,Economic Development,Economic Development +481705,Economic Development,Economic Development +479109,Economic Development,Economic Development +476999,Economic Development,Economic Development +474963,Economic Development,Economic Development +473335,Economic Development,Economic Development +470899,Economic Development,Economic Development +470897,Economic Development,Economic Development +468013,Economic Development,Economic Development +468012,Economic Development,Economic Development +468011,Economic Development,Economic Development +468010,Economic Development,Economic Development +468009,Economic Development,Economic Development +464773,Economic Development,Economic Development +464768,Economic Development,Economic Development +464767,Economic Development,Economic Development +464766,Economic Development,Economic Development +464765,Economic Development,Economic Development +484512,Education,Education +480751,Education,Education +480750,Education,Education +480749,Education,Education +480748,Education,Education +480747,Education,Education +480746,Education,Education +480745,Education,Education +480744,Education,Education +480743,Education,Education +480742,Education,Education +456007,Education,Education +456005,Education,Education +456004,Education,Education +456002,Education,Education +455999,Education,Education +455996,Education,Education +455995,Education,Education +455994,Education,Education +455993,Education,Education +455992,Education,Education +455989,Education,Education +455985,Education,Education +455983,Education,Education +455981,Education,Education +455978,Education,Education +455976,Education,Education +455974,Education,Education +455972,Education,Education +455970,Education,Education +455969,Education,Education +455967,Education,Education +455963,Education,Education +455962,Education,Education +455961,Education,Education +455958,Education,Education +455957,Education,Education +455954,Education,Education +455953,Education,Education +455952,Education,Education +455950,Education,Education +455949,Education,Education +455948,Education,Education +455944,Education,Education +455943,Education,Education +455939,Education,Education +455936,Education,Education +455935,Education,Education +455934,Education,Education +455931,Education,Education +455930,Education,Education +455929,Education,Education +455928,Education,Education +455926,Education,Education +455924,Education,Education +455923,Education,Education +455919,Education,Education +455918,Education,Education +455917,Education,Education +455916,Education,Education +455914,Education,Education +455911,Education,Education +455907,Education,Education +455985,Employment and Training,Employment and Training +455983,Employment and Training,Employment and Training +455981,Employment and Training,Employment and Training +455978,Employment and Training,Employment and Training +455976,Employment and Training,Employment and Training +455974,Employment and Training,Employment and Training +455972,Employment and Training,Employment and Training +455970,Employment and Training,Employment and Training +455969,Employment and Training,Employment and Training +455967,Employment and Training,Employment and Training +455963,Employment and Training,Employment and Training +455962,Employment and Training,Employment and Training +455961,Employment and Training,Employment and Training +455958,Employment and Training,Employment and Training +455957,Employment and Training,Employment and Training +455954,Employment and Training,Employment and Training +455953,Employment and Training,Employment and Training +455952,Employment and Training,Employment and Training +455950,Employment and Training,Employment and Training +455949,Employment and Training,Employment and Training +455948,Employment and Training,Employment and Training +455944,Employment and Training,Employment and Training +455943,Employment and Training,Employment and Training +455939,Employment and Training,Employment and Training +455936,Employment and Training,Employment and Training +455935,Employment and Training,Employment and Training +455934,Employment and Training,Employment and Training +455931,Employment and Training,Employment and Training +455930,Employment and Training,Employment and Training +455929,Employment and Training,Employment and Training +455917,Employment and Training,Employment and Training +455914,Employment and Training,Employment and Training +455911,Employment and Training,Employment and Training +455907,Employment and Training,Employment and Training +509470,Employment and Training,Employment and Training +484512,Employment and Training,Employment and Training +480751,Employment and Training,Employment and Training +480750,Employment and Training,Employment and Training +480749,Employment and Training,Employment and Training +480748,Employment and Training,Employment and Training +480747,Employment and Training,Employment and Training +480746,Employment and Training,Employment and Training +480745,Employment and Training,Employment and Training +480744,Employment and Training,Employment and Training +480743,Employment and Training,Employment and Training +480742,Employment and Training,Employment and Training +456007,Employment and Training,Employment and Training +456005,Employment and Training,Employment and Training +456004,Employment and Training,Employment and Training +456002,Employment and Training,Employment and Training +455999,Employment and Training,Employment and Training +455996,Employment and Training,Employment and Training +455995,Employment and Training,Employment and Training +455994,Employment and Training,Employment and Training +455993,Employment and Training,Employment and Training +455992,Employment and Training,Employment and Training +455939,Health,Health +455928,Health,Health +509470,Health,Health +484512,Health,Health +480751,Health,Health +480750,Health,Health +480749,Health,Health +480748,Health,Health +480747,Health,Health +480746,Health,Health +480745,Health,Health +480744,Health,Health +480743,Health,Health +455978,Health,Health +455637,Internal Trade,Internal Trade +455636,Internal Trade,Internal Trade +467834,Internal Trade,Internal Trade +467828,Internal Trade,Internal Trade +467526,Internal Trade,Internal Trade +455637,International Relations,International Relations +455636,International Relations,International Relations +470849,International Relations,International Relations +467840,International Relations,International Relations +467838,International Relations,International Relations +467834,International Relations,International Relations +467526,International Relations,International Relations +455637,Immigration,Immigration +455636,Immigration,Immigration +467834,Immigration,Immigration +482359,Justice and Law Enforcement,Justice and Law Enforcement +455650,Justice and Law Enforcement,Justice and Law Enforcement +455677,Elections,Elections +473931,International Trade,International Trade +473913,International Trade,International Trade +455688,International Trade,International Trade +467526,Employment and Training,Employment and Training +455715,Employment and Training,Employment and Training +467526,Labour,Labour +455715,Labour,Labour +469251,Labour,Labour +467838,Labour,Labour +458937,Privacy and Access to Information,Privacy and Access to Information +455794,Privacy and Access to Information,Privacy and Access to Information +457550,Tourism,Tourism +457549,Tourism,Tourism +480743,Budget,Budget +480742,Budget,Budget +456007,Budget,Budget +456005,Budget,Budget +455995,Budget,Budget +455994,Budget,Budget +455985,Budget,Budget +455972,Budget,Budget +455970,Budget,Budget +455969,Budget,Budget +455967,Budget,Budget +455963,Budget,Budget +455962,Budget,Budget +455957,Budget,Budget +455949,Budget,Budget +455948,Budget,Budget +455930,Budget,Budget +455924,Budget,Budget +455923,Budget,Budget +455919,Budget,Budget +455916,Budget,Budget +528395,Budget,Budget +524048,Budget,Budget +524046,Budget,Budget +524045,Budget,Budget +524039,Budget,Budget +484512,Budget,Budget +480751,Budget,Budget +480750,Budget,Budget +480749,Budget,Budget +480748,Budget,Budget +480747,Budget,Budget +480746,Budget,Budget +480745,Budget,Budget +480743,Regional Development,Regional Development +480742,Regional Development,Regional Development +455999,Regional Development,Regional Development +455949,Regional Development,Regional Development +455943,Regional Development,Regional Development +480749,Regional Development,Regional Development +480748,Regional Development,Regional Development +480747,Regional Development,Regional Development +480746,Regional Development,Regional Development +480745,Regional Development,Regional Development +465103,Fisheries,Fisheries +456108,Fisheries,Fisheries +484756,Government Procurement,Government Procurement +484747,Government Procurement,Government Procurement +517455,Government Procurement,Government Procurement +517450,Government Procurement,Government Procurement +502697,Government Procurement,Government Procurement +499836,Government Procurement,Government Procurement +495538,Government Procurement,Government Procurement +495535,Government Procurement,Government Procurement +457107,Environment,Environment +456221,Environment,Environment +524344,Agriculture,Agriculture +524343,Agriculture,Agriculture +465330,Agriculture,Agriculture +465287,Agriculture,Agriculture +465286,Agriculture,Agriculture +465287,Consumer Issues,Consumer Issues +465286,Consumer Issues,Consumer Issues +524345,Consumer Issues,Consumer Issues +524344,Consumer Issues,Consumer Issues +524343,Consumer Issues,Consumer Issues +524343,Environment,Environment +465330,Environment,Environment +524345,Environment,Environment +524344,International Trade,International Trade +524343,International Trade,International Trade +465330,International Trade,International Trade +465287,International Trade,International Trade +465286,International Trade,International Trade +456285,Industry,Industry +456283,Industry,Industry +457605,Economic Development,Economic Development +457601,Economic Development,Economic Development +458474,Economic Development,Economic Development +458474,Municipalities,Municipalities +458474,Regional Development,Regional Development +458474,Tourism,Tourism +475934,Taxation and Finance,Taxation and Finance +475934,Tourism,Tourism +461309,Education,Education +458807,Education,Education +470798,Education,Education +467086,Education,Education +464048,Education,Education +458807,Health,Health +470798,Health,Health +467086,Health,Health +464048,Health,Health +462369,Health,Health +457893,Fisheries,Fisheries +493400,Economic Development,Economic Development +490202,Economic Development,Economic Development +467293,Economic Development,Economic Development +531923,Economic Development,Economic Development +531922,Economic Development,Economic Development +531921,Economic Development,Economic Development +531920,Economic Development,Economic Development +511764,Economic Development,Economic Development +498843,Economic Development,Economic Development +493400,Environment,Environment +493397,Environment,Environment +491014,Environment,Environment +491012,Environment,Environment +491009,Environment,Environment +491004,Environment,Environment +491002,Environment,Environment +491000,Environment,Environment +490202,Environment,Environment +487774,Environment,Environment +487771,Environment,Environment +487770,Environment,Environment +485220,Environment,Environment +480838,Environment,Environment +480837,Environment,Environment +480836,Environment,Environment +467293,Environment,Environment +467291,Environment,Environment +465321,Environment,Environment +465320,Environment,Environment +465319,Environment,Environment +465208,Environment,Environment +462116,Environment,Environment +538033,Environment,Environment +531933,Environment,Environment +531930,Environment,Environment +531929,Environment,Environment +531927,Environment,Environment +531924,Environment,Environment +531923,Environment,Environment +531922,Environment,Environment +531921,Environment,Environment +531920,Environment,Environment +531919,Environment,Environment +531917,Environment,Environment +522276,Environment,Environment +517867,Environment,Environment +517866,Environment,Environment +517855,Environment,Environment +517824,Environment,Environment +517815,Environment,Environment +517812,Environment,Environment +511764,Environment,Environment +511763,Environment,Environment +511762,Environment,Environment +511760,Environment,Environment +511716,Environment,Environment +498843,Environment,Environment +456420,Fisheries,Fisheries +460278,Environment,Environment +460824,Fisheries,Fisheries +460278,Fisheries,Fisheries +460278,International Trade,International Trade +456506,Economic Development,Economic Development +456502,Economic Development,Economic Development +459165,Economic Development,Economic Development +456506,Industry,Industry +456502,Industry,Industry +459165,Industry,Industry +456506,Small Business,Small Business +456502,Small Business,Small Business +459165,Small Business,Small Business +456502,Taxation and Finance,Taxation and Finance +456506,Tourism,Tourism +456502,Tourism,Tourism +459165,Tourism,Tourism +456441,Climate,Climate +456444,Climate,Climate +471384,Transportation,Transportation +462137,Transportation,Transportation +503702,Transportation,Transportation +489412,Transportation,Transportation +480980,Transportation,Transportation +476561,Transportation,Transportation +476560,Transportation,Transportation +476400,Transportation,Transportation +476162,Transportation,Transportation +462137,Municipalities,Municipalities +503702,Municipalities,Municipalities +496602,Municipalities,Municipalities +496595,Municipalities,Municipalities +494314,Municipalities,Municipalities +494142,Municipalities,Municipalities +493961,Municipalities,Municipalities +492121,Municipalities,Municipalities +491879,Municipalities,Municipalities +489412,Municipalities,Municipalities +489410,Municipalities,Municipalities +489409,Municipalities,Municipalities +488543,Municipalities,Municipalities +485484,Municipalities,Municipalities +483019,Municipalities,Municipalities +480980,Municipalities,Municipalities +476561,Municipalities,Municipalities +476560,Municipalities,Municipalities +476400,Municipalities,Municipalities +476162,Municipalities,Municipalities +472051,Municipalities,Municipalities +476162,Environment,Environment +472051,Environment,Environment +503702,Environment,Environment +496602,Environment,Environment +496595,Environment,Environment +494314,Environment,Environment +494142,Environment,Environment +493961,Environment,Environment +492121,Environment,Environment +491879,Environment,Environment +489412,Environment,Environment +489410,Environment,Environment +489409,Environment,Environment +488543,Environment,Environment +485484,Environment,Environment +488543,Infrastructure,Infrastructure +485484,Infrastructure,Infrastructure +483019,Infrastructure,Infrastructure +472051,Infrastructure,Infrastructure +503702,Infrastructure,Infrastructure +494314,Infrastructure,Infrastructure +494142,Infrastructure,Infrastructure +493961,Infrastructure,Infrastructure +492121,Infrastructure,Infrastructure +491879,Infrastructure,Infrastructure +459875,Health,Health +459873,Health,Health +462384,Health,Health +462383,Health,Health +462382,Health,Health +457089,Defence,Defence +457085,Defence,Defence +457094,Defence,Defence +494661,Privacy and Access to Information,Privacy and Access to Information +457585,Economic Development,Economic Development +496344,Economic Development,Economic Development +489672,Economic Development,Economic Development +488713,Economic Development,Economic Development +479009,Economic Development,Economic Development +478602,Economic Development,Economic Development +478600,Economic Development,Economic Development +476677,Economic Development,Economic Development +471502,Economic Development,Economic Development +466804,Economic Development,Economic Development +466791,Economic Development,Economic Development +459304,Economic Development,Economic Development +459301,Economic Development,Economic Development +459300,Economic Development,Economic Development +458635,Economic Development,Economic Development +458634,Economic Development,Economic Development +458633,Economic Development,Economic Development +459300,Research and Development,Research and Development +465795,Transportation,Transportation +457201,Transportation,Transportation +545311,Transportation,Transportation +542695,Transportation,Transportation +542694,Transportation,Transportation +537817,Transportation,Transportation +536734,Transportation,Transportation +536731,Transportation,Transportation +536730,Transportation,Transportation +533245,Transportation,Transportation +533244,Transportation,Transportation +533242,Transportation,Transportation +533240,Transportation,Transportation +533238,Transportation,Transportation +532824,Transportation,Transportation +528310,Transportation,Transportation +528307,Transportation,Transportation +528306,Transportation,Transportation +520387,Transportation,Transportation +516987,Transportation,Transportation +515303,Transportation,Transportation +486564,Transportation,Transportation +485426,Transportation,Transportation +465798,Transportation,Transportation +465795,Economic Development,Economic Development +465792,Economic Development,Economic Development +516987,Economic Development,Economic Development +480438,Economic Development,Economic Development +465798,Economic Development,Economic Development +465796,Environment,Environment +465795,Environment,Environment +545311,Environment,Environment +542694,Environment,Environment +536734,Environment,Environment +536731,Environment,Environment +533240,Environment,Environment +533238,Environment,Environment +532824,Environment,Environment +528310,Environment,Environment +528307,Environment,Environment +528306,Environment,Environment +520387,Environment,Environment +516987,Environment,Environment +515303,Environment,Environment +533238,International Trade,International Trade +516987,International Trade,International Trade +480441,International Trade,International Trade +465798,International Trade,International Trade +465797,International Trade,International Trade +458831,Government Procurement,Government Procurement +457612,Government Procurement,Government Procurement +459293,Government Procurement,Government Procurement +459291,Government Procurement,Government Procurement +459290,Government Procurement,Government Procurement +459289,Government Procurement,Government Procurement +459285,Government Procurement,Government Procurement +459276,Government Procurement,Government Procurement +458835,Government Procurement,Government Procurement +472413,Health,Health +472412,Health,Health +457938,Health,Health +461161,Consumer Issues,Consumer Issues +461158,Consumer Issues,Consumer Issues +461158,Financial Institutions,Financial Institutions +463073,Privacy and Access to Information,Privacy and Access to Information +461127,Privacy and Access to Information,Privacy and Access to Information +461127,Consumer Issues,Consumer Issues +461126,Consumer Issues,Consumer Issues +538814,Consumer Issues,Consumer Issues +506085,Consumer Issues,Consumer Issues +463073,Consumer Issues,Consumer Issues +463072,Consumer Issues,Consumer Issues +463071,Consumer Issues,Consumer Issues +459023,Small Business,Small Business +542687,Small Business,Small Business +463074,Small Business,Small Business +461126,Financial Institutions,Financial Institutions +459023,Financial Institutions,Financial Institutions +542687,Financial Institutions,Financial Institutions +538814,Financial Institutions,Financial Institutions +531269,Financial Institutions,Financial Institutions +524198,Financial Institutions,Financial Institutions +504011,Financial Institutions,Financial Institutions +463074,Financial Institutions,Financial Institutions +463073,Financial Institutions,Financial Institutions +463072,Financial Institutions,Financial Institutions +463071,Financial Institutions,Financial Institutions +461173,Financial Institutions,Financial Institutions +463071,Taxation and Finance,Taxation and Finance +459023,Taxation and Finance,Taxation and Finance +524198,Taxation and Finance,Taxation and Finance +506085,Taxation and Finance,Taxation and Finance +504011,Taxation and Finance,Taxation and Finance +503582,Taxation and Finance,Taxation and Finance +458571,Climate,Climate +458571,Environment,Environment +458571,Infrastructure,Infrastructure +465133,Consumer Issues,Consumer Issues +465131,Consumer Issues,Consumer Issues +465135,Consumer Issues,Consumer Issues +465131,Economic Development,Economic Development +459814,Economic Development,Economic Development +465135,Economic Development,Economic Development +465134,Economic Development,Economic Development +465133,Industry,Industry +459814,Taxation and Finance,Taxation and Finance +458052,Housing,Housing +458052,Infrastructure,Infrastructure +467975,Budget,Budget +459677,Employment and Training,Employment and Training +459677,Justice and Law Enforcement,Justice and Law Enforcement +457066,Justice and Law Enforcement,Justice and Law Enforcement +467976,Justice and Law Enforcement,Justice and Law Enforcement +467975,Justice and Law Enforcement,Justice and Law Enforcement +462364,Justice and Law Enforcement,Justice and Law Enforcement +467975,Security,Security +459678,Security,Security +459677,Security,Security +492917,Taxation and Finance,Taxation and Finance +492051,Taxation and Finance,Taxation and Finance +456878,Taxation and Finance,Taxation and Finance +456877,Taxation and Finance,Taxation and Finance +540098,Taxation and Finance,Taxation and Finance +540095,Taxation and Finance,Taxation and Finance +537677,Taxation and Finance,Taxation and Finance +537670,Taxation and Finance,Taxation and Finance +530677,Taxation and Finance,Taxation and Finance +514017,Taxation and Finance,Taxation and Finance +513092,Taxation and Finance,Taxation and Finance +498405,Taxation and Finance,Taxation and Finance +458991,Fisheries,Fisheries +458985,Fisheries,Fisheries +459000,Fisheries,Fisheries +458999,Fisheries,Fisheries +467282,Budget,Budget +467280,Budget,Budget +544048,Budget,Budget +544041,Budget,Budget +544039,Budget,Budget +541069,Budget,Budget +538176,Budget,Budget +538173,Budget,Budget +538168,Budget,Budget +538166,Budget,Budget +534351,Budget,Budget +534350,Budget,Budget +534349,Budget,Budget +534348,Budget,Budget +534346,Budget,Budget +532467,Budget,Budget +532466,Budget,Budget +528586,Budget,Budget +528582,Budget,Budget +517946,Budget,Budget +517937,Budget,Budget +517924,Budget,Budget +515641,Budget,Budget +514272,Budget,Budget +513194,Budget,Budget +513191,Budget,Budget +513189,Budget,Budget +509986,Budget,Budget +509984,Budget,Budget +507515,Budget,Budget +507514,Budget,Budget +507512,Budget,Budget +507511,Budget,Budget +504079,Budget,Budget +504074,Budget,Budget +501442,Budget,Budget +501440,Budget,Budget +501438,Budget,Budget +501437,Budget,Budget +501436,Budget,Budget +501434,Budget,Budget +501433,Budget,Budget +501429,Budget,Budget +501424,Budget,Budget +501414,Budget,Budget +501411,Budget,Budget +501403,Budget,Budget +501401,Budget,Budget +498529,Budget,Budget +498528,Budget,Budget +498526,Budget,Budget +498522,Budget,Budget +498519,Budget,Budget +498516,Budget,Budget +498514,Budget,Budget +495567,Budget,Budget +495566,Budget,Budget +495565,Budget,Budget +495564,Budget,Budget +495562,Budget,Budget +495560,Budget,Budget +495558,Budget,Budget +495557,Budget,Budget +495554,Budget,Budget +495553,Budget,Budget +495552,Budget,Budget +495551,Budget,Budget +495545,Budget,Budget +495539,Budget,Budget +493349,Budget,Budget +493346,Budget,Budget +493343,Budget,Budget +493341,Budget,Budget +493339,Budget,Budget +493334,Budget,Budget +493333,Budget,Budget +493332,Budget,Budget +493331,Budget,Budget +491461,Budget,Budget +491437,Budget,Budget +485439,Budget,Budget +485438,Budget,Budget +478810,Budget,Budget +467290,Employment and Training,Employment and Training +461955,Employment and Training,Employment and Training +534348,Employment and Training,Employment and Training +528586,Employment and Training,Employment and Training +528582,Employment and Training,Employment and Training +504076,Employment and Training,Employment and Training +523232,Housing,Housing +517946,Housing,Housing +509985,Housing,Housing +504082,Housing,Housing +504073,Housing,Housing +501448,Housing,Housing +501433,Housing,Housing +501426,Housing,Housing +501401,Housing,Housing +495542,Housing,Housing +493336,Housing,Housing +486956,Housing,Housing +486953,Housing,Housing +485437,Housing,Housing +482395,Housing,Housing +482385,Housing,Housing +478808,Housing,Housing +475711,Housing,Housing +475696,Housing,Housing +471160,Housing,Housing +471156,Housing,Housing +471153,Housing,Housing +471151,Housing,Housing +467287,Housing,Housing +467284,Housing,Housing +467282,Housing,Housing +465005,Housing,Housing +465004,Housing,Housing +462691,Housing,Housing +461955,Housing,Housing +461953,Housing,Housing +544042,Housing,Housing +544039,Housing,Housing +544029,Housing,Housing +541068,Housing,Housing +538166,Housing,Housing +534346,Housing,Housing +524683,Housing,Housing +528586,Labour,Labour +528582,Labour,Labour +485438,Taxation and Finance,Taxation and Finance +475703,Taxation and Finance,Taxation and Finance +492797,Consumer Issues,Consumer Issues +486501,Consumer Issues,Consumer Issues +472602,Consumer Issues,Consumer Issues +469888,Consumer Issues,Consumer Issues +458335,Consumer Issues,Consumer Issues +457046,Consumer Issues,Consumer Issues +522102,Consumer Issues,Consumer Issues +509981,Consumer Issues,Consumer Issues +504262,Consumer Issues,Consumer Issues +501066,Consumer Issues,Consumer Issues +498614,Consumer Issues,Consumer Issues +458335,Environment,Environment +457046,Environment,Environment +522102,Environment,Environment +509981,Environment,Environment +504262,Environment,Environment +501066,Environment,Environment +498614,Environment,Environment +494941,Environment,Environment +492797,Environment,Environment +490762,Environment,Environment +486501,Environment,Environment +481378,Environment,Environment +479243,Environment,Environment +472602,Environment,Environment +469888,Environment,Environment +521630,Agriculture,Agriculture +472457,Economic Development,Economic Development +469861,Economic Development,Economic Development +469845,Economic Development,Economic Development +467004,Economic Development,Economic Development +464288,Economic Development,Economic Development +464281,Economic Development,Economic Development +457196,Economic Development,Economic Development +457189,Economic Development,Economic Development +457169,Economic Development,Economic Development +543176,Economic Development,Economic Development +543175,Economic Development,Economic Development +543174,Economic Development,Economic Development +540815,Economic Development,Economic Development +540814,Economic Development,Economic Development +539892,Economic Development,Economic Development +539891,Economic Development,Economic Development +537081,Economic Development,Economic Development +537080,Economic Development,Economic Development +537079,Economic Development,Economic Development +537077,Economic Development,Economic Development +533611,Economic Development,Economic Development +533607,Economic Development,Economic Development +533604,Economic Development,Economic Development +533602,Economic Development,Economic Development +533599,Economic Development,Economic Development +533595,Economic Development,Economic Development +533593,Economic Development,Economic Development +533591,Economic Development,Economic Development +531062,Economic Development,Economic Development +531061,Economic Development,Economic Development +531060,Economic Development,Economic Development +531059,Economic Development,Economic Development +531057,Economic Development,Economic Development +531056,Economic Development,Economic Development +528015,Economic Development,Economic Development +527436,Economic Development,Economic Development +524168,Economic Development,Economic Development +524167,Economic Development,Economic Development +524161,Economic Development,Economic Development +524158,Economic Development,Economic Development +524156,Economic Development,Economic Development +524155,Economic Development,Economic Development +521746,Economic Development,Economic Development +521744,Economic Development,Economic Development +521741,Economic Development,Economic Development +521740,Economic Development,Economic Development +521739,Economic Development,Economic Development +521738,Economic Development,Economic Development +521736,Economic Development,Economic Development +521735,Economic Development,Economic Development +521734,Economic Development,Economic Development +519475,Economic Development,Economic Development +519473,Economic Development,Economic Development +519472,Economic Development,Economic Development +519471,Economic Development,Economic Development +519470,Economic Development,Economic Development +519468,Economic Development,Economic Development +517025,Economic Development,Economic Development +517024,Economic Development,Economic Development +517022,Economic Development,Economic Development +517019,Economic Development,Economic Development +517017,Economic Development,Economic Development +517015,Economic Development,Economic Development +517012,Economic Development,Economic Development +512296,Economic Development,Economic Development +510914,Economic Development,Economic Development +510912,Economic Development,Economic Development +510911,Economic Development,Economic Development +506922,Economic Development,Economic Development +493198,Economic Development,Economic Development +493196,Economic Development,Economic Development +493192,Economic Development,Economic Development +493190,Economic Development,Economic Development +493189,Economic Development,Economic Development +493187,Economic Development,Economic Development +457243,Infrastructure,Infrastructure +462058,Energy,Energy +459909,Energy,Energy +483734,Energy,Energy +479508,Energy,Energy +479507,Energy,Energy +482171,Environment,Environment +482169,Environment,Environment +482167,Environment,Environment +482164,Environment,Environment +482150,Environment,Environment +479522,Environment,Environment +479521,Environment,Environment +479520,Environment,Environment +479519,Environment,Environment +479518,Environment,Environment +479517,Environment,Environment +479516,Environment,Environment +479515,Environment,Environment +479514,Environment,Environment +479513,Environment,Environment +479508,Environment,Environment +479507,Environment,Environment +479506,Environment,Environment +478068,Environment,Environment +475228,Environment,Environment +475227,Environment,Environment +475226,Environment,Environment +475225,Environment,Environment +475224,Environment,Environment +475223,Environment,Environment +475222,Environment,Environment +472519,Environment,Environment +472518,Environment,Environment +472516,Environment,Environment +472515,Environment,Environment +472512,Environment,Environment +472497,Environment,Environment +472494,Environment,Environment +472492,Environment,Environment +472487,Environment,Environment +472480,Environment,Environment +472477,Environment,Environment +472474,Environment,Environment +472473,Environment,Environment +472472,Environment,Environment +472471,Environment,Environment +472463,Environment,Environment +472460,Environment,Environment +472459,Environment,Environment +472455,Environment,Environment +471440,Environment,Environment +471433,Environment,Environment +471340,Environment,Environment +471339,Environment,Environment +471336,Environment,Environment +468575,Environment,Environment +468567,Environment,Environment +468564,Environment,Environment +468562,Environment,Environment +466440,Environment,Environment +463686,Environment,Environment +462065,Environment,Environment +462064,Environment,Environment +462063,Environment,Environment +462062,Environment,Environment +462061,Environment,Environment +459909,Environment,Environment +523220,Environment,Environment +523219,Environment,Environment +523217,Environment,Environment +523216,Environment,Environment +523212,Environment,Environment +520264,Environment,Environment +520263,Environment,Environment +518119,Environment,Environment +518118,Environment,Environment +518115,Environment,Environment +518113,Environment,Environment +518112,Environment,Environment +518110,Environment,Environment +518109,Environment,Environment +518106,Environment,Environment +518092,Environment,Environment +518089,Environment,Environment +515981,Environment,Environment +515980,Environment,Environment +515979,Environment,Environment +515977,Environment,Environment +515976,Environment,Environment +515972,Environment,Environment +515969,Environment,Environment +514752,Environment,Environment +514749,Environment,Environment +514747,Environment,Environment +514745,Environment,Environment +514744,Environment,Environment +514743,Environment,Environment +514741,Environment,Environment +514204,Environment,Environment +511569,Environment,Environment +511563,Environment,Environment +508574,Environment,Environment +508568,Environment,Environment +508567,Environment,Environment +508566,Environment,Environment +508564,Environment,Environment +508554,Environment,Environment +505137,Environment,Environment +505104,Environment,Environment +502409,Environment,Environment +502405,Environment,Environment +502402,Environment,Environment +502372,Environment,Environment +502300,Environment,Environment +496107,Environment,Environment +496102,Environment,Environment +496096,Environment,Environment +496087,Environment,Environment +496085,Environment,Environment +496081,Environment,Environment +492608,Environment,Environment +492607,Environment,Environment +492379,Environment,Environment +492377,Environment,Environment +492351,Environment,Environment +492350,Environment,Environment +492349,Environment,Environment +492347,Environment,Environment +492338,Environment,Environment +492337,Environment,Environment +492336,Environment,Environment +492335,Environment,Environment +492334,Environment,Environment +492333,Environment,Environment +492332,Environment,Environment +492331,Environment,Environment +492330,Environment,Environment +492329,Environment,Environment +492328,Environment,Environment +492327,Environment,Environment +492324,Environment,Environment +492323,Environment,Environment +486588,Environment,Environment +486584,Environment,Environment +486583,Environment,Environment +486582,Environment,Environment +486580,Environment,Environment +486579,Environment,Environment +486578,Environment,Environment +486577,Environment,Environment +486576,Environment,Environment +486575,Environment,Environment +483792,Environment,Environment +483791,Environment,Environment +483757,Environment,Environment +483756,Environment,Environment +483753,Environment,Environment +483727,Environment,Environment +483722,Environment,Environment +483721,Environment,Environment +483720,Environment,Environment +483719,Environment,Environment +483718,Environment,Environment +483714,Environment,Environment +482400,Environment,Environment +458682,Infrastructure,Infrastructure +458610,Infrastructure,Infrastructure +457521,Infrastructure,Infrastructure +466346,Infrastructure,Infrastructure +466344,Infrastructure,Infrastructure +457543,Infrastructure,Infrastructure +457523,Infrastructure,Infrastructure +466351,Infrastructure,Infrastructure +466349,Infrastructure,Infrastructure +484202,Industry,Industry +514161,Economic Development,Economic Development +504175,Economic Development,Economic Development +504175,Industry,Industrie +465136,Health,Health +457738,Health,Health +475407,Health,Health +465136,Labour,Labour +457738,Labour,Labour +458553,Government Procurement,Government Procurement +458128,Financial Institutions,Financial Institutions +457948,Financial Institutions,Financial Institutions +458128,Taxation and Finance,Taxation and Finance +457948,Taxation and Finance,Taxation and Finance +458060,Infrastructure,Infrastructure +458058,Infrastructure,Infrastructure +460283,Infrastructure,Infrastructure +459146,Infrastructure,Infrastructure +459139,Infrastructure,Infrastructure +459136,Infrastructure,Infrastructure +459134,Infrastructure,Infrastructure +458994,Infrastructure,Infrastructure +458993,Infrastructure,Infrastructure +458068,Infrastructure,Infrastructure +458065,Infrastructure,Infrastructure +514273,Taxation and Finance,Taxation and Finance +500570,Taxation and Finance,Taxation and Finance +475342,Taxation and Finance,Taxation and Finance +457835,Taxation and Finance,Taxation and Finance +514277,Taxation and Finance,Taxation and Finance +514276,Taxation and Finance,Taxation and Finance +458247,Privacy and Access to Information,Privacy and Access to Information +458246,Privacy and Access to Information,Privacy and Access to Information +492988,Privacy and Access to Information,Privacy and Access to Information +461866,Privacy and Access to Information,Privacy and Access to Information +461366,Privacy and Access to Information,Privacy and Access to Information +461365,Privacy and Access to Information,Privacy and Access to Information +461363,Privacy and Access to Information,Privacy and Access to Information +460697,Privacy and Access to Information,Privacy and Access to Information +458264,Privacy and Access to Information,Privacy and Access to Information +458263,Privacy and Access to Information,Privacy and Access to Information +458262,Privacy and Access to Information,Privacy and Access to Information +458261,Privacy and Access to Information,Privacy and Access to Information +458260,Privacy and Access to Information,Privacy and Access to Information +458259,Privacy and Access to Information,Privacy and Access to Information +458258,Privacy and Access to Information,Privacy and Access to Information +458257,Privacy and Access to Information,Privacy and Access to Information +458256,Privacy and Access to Information,Privacy and Access to Information +458255,Privacy and Access to Information,Privacy and Access to Information +458254,Privacy and Access to Information,Privacy and Access to Information +458253,Privacy and Access to Information,Privacy and Access to Information +458252,Privacy and Access to Information,Privacy and Access to Information +458251,Privacy and Access to Information,Privacy and Access to Information +458250,Privacy and Access to Information,Privacy and Access to Information +458249,Privacy and Access to Information,Privacy and Access to Information +457875,Employment and Training,Employment and Training +457874,Employment and Training,Employment and Training +474416,Employment and Training,Employment and Training +461963,Employment and Training,Employment and Training +457873,Infrastructure,Infrastructure +457874,Mining,Mining +457873,Mining,Mining +474416,Mining,Mining +474195,Mining,Mining +461963,Mining,Mining +458284,Mining,Mining +457876,Mining,Mining +457874,Regional Development,Regional Development +457873,Regional Development,Regional Development +474195,Regional Development,Regional Development +461963,Regional Development,Regional Development +458284,Regional Development,Regional Development +457876,Regional Development,Regional Development +477066,Government Procurement,Government Procurement +477061,Government Procurement,Government Procurement +477066,Labour,Labour +477061,Labour,Labour +458975,Climate,Climate +458301,Climate,Climate +458300,Climate,Climate +536752,Climate,Climate +466425,Climate,Climate +466423,Climate,Climate +466420,Climate,Climate +466412,Climate,Climate +466410,Climate,Climate +459016,Climate,Climate +459015,Climate,Climate +458300,Energy,Energy +540717,Energy,Energy +530652,Energy,Energy +481855,Energy,Energy +478368,Energy,Energy +466425,Energy,Energy +466423,Energy,Energy +466420,Energy,Energy +466412,Energy,Energy +466410,Energy,Energy +459016,Energy,Energy +459015,Energy,Energy +459014,Energy,Energy +458975,Energy,Energy +494857,Privacy and Access to Information,Privacy and Access to Information +533123,Infrastructure,Infrastructure +533122,Infrastructure,Infrastructure +478720,Employment and Training,Employment and Training +477454,Employment and Training,Employment and Training +490003,Employment and Training,Employment and Training +490001,Employment and Training,Employment and Training +465062,Official Languages,Official Languages +459729,Official Languages,Official Languages +540506,Official Languages,Official Languages +526716,Official Languages,Official Languages +520885,Official Languages,Official Languages +518445,Official Languages,Official Languages +514903,Official Languages,Official Languages +514000,Official Languages,Official Languages +509488,Official Languages,Official Languages +503809,Official Languages,Official Languages +498857,Official Languages,Official Languages +498846,Official Languages,Official Languages +496690,Official Languages,Official Languages +494044,Official Languages,Official Languages +490004,Official Languages,Official Languages +478720,Official Languages,Official Languages +459791,Agriculture,Agriculture +459790,Agriculture,Agriculture +544872,Agriculture,Agriculture +544871,Agriculture,Agriculture +544870,Agriculture,Agriculture +542801,Agriculture,Agriculture +542800,Agriculture,Agriculture +535691,Agriculture,Agriculture +535689,Agriculture,Agriculture +535685,Agriculture,Agriculture +527081,Agriculture,Agriculture +524269,Agriculture,Agriculture +497143,Agriculture,Agriculture +493835,Agriculture,Agriculture +491729,Agriculture,Agriculture +489438,Agriculture,Agriculture +485429,Agriculture,Agriculture +485428,Agriculture,Agriculture +485427,Agriculture,Agriculture +481010,Agriculture,Agriculture +480926,Agriculture,Agriculture +478599,Agriculture,Agriculture +474056,Agriculture,Agriculture +474055,Agriculture,Agriculture +471563,Agriculture,Agriculture +471562,Agriculture,Agriculture +471561,Agriculture,Agriculture +471560,Agriculture,Agriculture +544870,Employment and Training,Employment and Training +542800,Employment and Training,Employment and Training +535691,Employment and Training,Employment and Training +535689,Employment and Training,Employment and Training +535685,Employment and Training,Employment and Training +493835,Employment and Training,Employment and Training +491729,Employment and Training,Employment and Training +485429,Employment and Training,Employment and Training +485428,Employment and Training,Employment and Training +481010,Employment and Training,Employment and Training +480926,Employment and Training,Employment and Training +459790,Employment and Training,Employment and Training +544872,Employment and Training,Employment and Training +535689,Immigration,Immigration +535685,Immigration,Immigration +527081,Immigration,Immigration +524269,Immigration,Immigration +497143,Immigration,Immigration +493835,Immigration,Immigration +491729,Immigration,Immigration +489438,Immigration,Immigration +485429,Immigration,Immigration +485428,Immigration,Immigration +485427,Immigration,Immigration +481010,Immigration,Immigration +480926,Immigration,Immigration +478599,Immigration,Immigration +474056,Immigration,Immigration +474055,Immigration,Immigration +471563,Immigration,Immigration +471561,Immigration,Immigration +471560,Immigration,Immigration +471559,Immigration,Immigration +459791,Immigration,Immigration +459790,Immigration,Immigration +544872,Immigration,Immigration +544871,Immigration,Immigration +544870,Immigration,Immigration +542801,Immigration,Immigration +542800,Immigration,Immigration +482776,Education,Education +482775,Education,Education +482779,Education,Education +530334,Environment,Environment +530333,Environment,Environment +460636,Environment,Environment +460079,Environment,Environment +527105,Environment,Environment +527104,Environment,Environment +527103,Environment,Environment +527102,Environment,Environment +527101,Environment,Environment +527100,Environment,Environment +527099,Environment,Environment +527098,Environment,Environment +527097,Environment,Environment +523539,Environment,Environment +520601,Environment,Environment +515939,Environment,Environment +515938,Environment,Environment +515937,Environment,Environment +511447,Environment,Environment +511446,Environment,Environment +511445,Environment,Environment +511444,Environment,Environment +511443,Environment,Environment +509140,Environment,Environment +509139,Environment,Environment +509138,Environment,Environment +505849,Environment,Environment +505847,Environment,Environment +505842,Environment,Environment +502869,Environment,Environment +502868,Environment,Environment +502867,Environment,Environment +502866,Environment,Environment +502865,Environment,Environment +502863,Environment,Environment +502861,Environment,Environment +496205,Environment,Environment +496204,Environment,Environment +493741,Environment,Environment +493739,Environment,Environment +493733,Environment,Environment +491672,Environment,Environment +488235,Environment,Environment +488234,Environment,Environment +485227,Environment,Environment +485225,Environment,Environment +482466,Environment,Environment +480259,Environment,Environment +480257,Environment,Environment +478310,Environment,Environment +478309,Environment,Environment +478308,Environment,Environment +478307,Environment,Environment +478306,Environment,Environment +478305,Environment,Environment +478303,Environment,Environment +478302,Environment,Environment +476033,Environment,Environment +476032,Environment,Environment +476031,Environment,Environment +476030,Environment,Environment +476027,Environment,Environment +473561,Environment,Environment +473558,Environment,Environment +473557,Environment,Environment +473556,Environment,Environment +473553,Environment,Environment +462850,Environment,Environment +460637,Environment,Environment +502863,Infrastructure,Infrastructure +502861,Infrastructure,Infrastructure +496205,Infrastructure,Infrastructure +496204,Infrastructure,Infrastructure +493741,Infrastructure,Infrastructure +493739,Infrastructure,Infrastructure +493733,Infrastructure,Infrastructure +491672,Infrastructure,Infrastructure +488235,Infrastructure,Infrastructure +488234,Infrastructure,Infrastructure +485227,Infrastructure,Infrastructure +485225,Infrastructure,Infrastructure +482466,Infrastructure,Infrastructure +480259,Infrastructure,Infrastructure +480257,Infrastructure,Infrastructure +478310,Infrastructure,Infrastructure +478309,Infrastructure,Infrastructure +478308,Infrastructure,Infrastructure +478307,Infrastructure,Infrastructure +478306,Infrastructure,Infrastructure +478305,Infrastructure,Infrastructure +478303,Infrastructure,Infrastructure +478302,Infrastructure,Infrastructure +476033,Infrastructure,Infrastructure +476032,Infrastructure,Infrastructure +476031,Infrastructure,Infrastructure +476030,Infrastructure,Infrastructure +476027,Infrastructure,Infrastructure +473561,Infrastructure,Infrastructure +473558,Infrastructure,Infrastructure +473557,Infrastructure,Infrastructure +473556,Infrastructure,Infrastructure +473553,Infrastructure,Infrastructure +462850,Infrastructure,Infrastructure +460637,Infrastructure,Infrastructure +460636,Infrastructure,Infrastructure +460079,Infrastructure,Infrastructure +459772,Infrastructure,Infrastructure +530335,Infrastructure,Infrastructure +530334,Infrastructure,Infrastructure +530333,Infrastructure,Infrastructure +527105,Infrastructure,Infrastructure +527104,Infrastructure,Infrastructure +527103,Infrastructure,Infrastructure +527102,Infrastructure,Infrastructure +527101,Infrastructure,Infrastructure +527100,Infrastructure,Infrastructure +527099,Infrastructure,Infrastructure +527098,Infrastructure,Infrastructure +527097,Infrastructure,Infrastructure +523539,Infrastructure,Infrastructure +520601,Infrastructure,Infrastructure +515939,Infrastructure,Infrastructure +515938,Infrastructure,Infrastructure +515937,Infrastructure,Infrastructure +511447,Infrastructure,Infrastructure +511446,Infrastructure,Infrastructure +511445,Infrastructure,Infrastructure +511444,Infrastructure,Infrastructure +511443,Infrastructure,Infrastructure +509140,Infrastructure,Infrastructure +509139,Infrastructure,Infrastructure +509138,Infrastructure,Infrastructure +505849,Infrastructure,Infrastructure +505847,Infrastructure,Infrastructure +505842,Infrastructure,Infrastructure +502869,Infrastructure,Infrastructure +502868,Infrastructure,Infrastructure +502867,Infrastructure,Infrastructure +502866,Infrastructure,Infrastructure +511443,Tourism,Tourism +509140,Tourism,Tourism +509139,Tourism,Tourism +509138,Tourism,Tourism +505849,Tourism,Tourism +505847,Tourism,Tourism +505842,Tourism,Tourism +502869,Tourism,Tourism +502868,Tourism,Tourism +502867,Tourism,Tourism +502866,Tourism,Tourism +502865,Tourism,Tourism +502863,Tourism,Tourism +502861,Tourism,Tourism +496205,Tourism,Tourism +496204,Tourism,Tourism +493741,Tourism,Tourism +493739,Tourism,Tourism +493733,Tourism,Tourism +491672,Tourism,Tourism +488235,Tourism,Tourism +488234,Tourism,Tourism +485227,Tourism,Tourism +485225,Tourism,Tourism +482466,Tourism,Tourism +480259,Tourism,Tourism +480257,Tourism,Tourism +478310,Tourism,Tourism +478309,Tourism,Tourism +478308,Tourism,Tourism +478307,Tourism,Tourism +478306,Tourism,Tourism +478305,Tourism,Tourism +478303,Tourism,Tourism +478302,Tourism,Tourism +476033,Tourism,Tourism +476032,Tourism,Tourism +476031,Tourism,Tourism +476030,Tourism,Tourism +476027,Tourism,Tourism +457609,Economic Development,Economic Development +459300,Infrastructure,Infrastructure +496344,Research and Development,Research and Development +458983,International Trade,International Trade +499455,Agriculture,Agriculture +499455,Internal Trade,Internal Trade +499455,International Trade,International Trade +456607,Infrastructure,Infrastructure +456607,Transportation,Transportation +456571,Infrastructure,Infrastructure +465796,Transportation,Transportation +465796,Economic Development,Economic Development +486565,Environment,Environment +465792,Internal Trade,Internal Trade +542695,International Trade,International Trade +537817,Taxation and Finance,Taxation and Finance +458833,Government Procurement,Government Procurement +489101,Health,Health +472413,Industry,Industry +472413,Economic Development,Economic Development +459395,Health,Health +463026,Consumer Issues,Consumer Issues +461161,Financial Institutions,Financial Institutions +463026,Small Business,Small Business +538814,Privacy and Access to Information,Privacy and Access to Information +461173,Consumer Issues,Consumer Issues +463072,Small Business,Small Business +461127,Financial Institutions,Financial Institutions +463072,Taxation and Finance,Taxation and Finance +462676,Financial Institutions,Financial Institutions +462676,Small Business,Small Business +462676,Privacy and Access to Information,Privacy and Access to Information +462676,Consumer Issues,Consumer Issues +462676,Taxation and Finance,Taxation and Finance +468758,Transportation,Transportation +459165,Climate,Climate +459165,Environment,Environment +459165,Infrastructure,Infrastructure +462269,Taxation and Finance,Taxation and Finance +462269,Small Business,Small Business +462269,Consumer Issues,Consumer Issues +462269,Financial Institutions,Financial Institutions +462269,Privacy and Access to Information,Privacy and Access to Information +456769,Infrastructure,Infrastructure +456769,Transportation,Transportation +456694,Labour,Labour +465134,Consumer Issues,Consumer Issues +465133,Economic Development,Economic Development +465135,Industry,Industry +465134,Taxation and Finance,Taxation and Finance +458055,Housing,Housing +458055,Infrastructure,Infrastructure +456743,Energy,Energy +492256,Health,Health +467976,Budget,Budget +459678,Employment and Training,Employment and Training +459678,Justice and Law Enforcement,Justice and Law Enforcement +467976,Security,Security +495334,Taxation and Finance,Taxation and Finance +456845,Infrastructure,Infrastructure +476160,Infrastructure,Infrastructure +456855,Mining,Mining +456884,Climate,Climate +456885,Climate,Climate +458998,Fisheries,Fisheries +457018,Privacy and Access to Information,Privacy and Access to Information +457015,Health,Health +457015,Infrastructure,Infrastructure +478806,Budget,Budget +501426,Employment and Training,Employment and Training +524682,Housing,Housing +515641,Immigration,Immigration +534348,Labour,Labour +517924,Taxation and Finance,Taxation and Finance +494941,Consumer Issues,Consumer Issues +465918,Environment,Environment +457083,Agriculture,Agriculture +457085,Economic Development,Economic Development +457089,Economic Development,Economic Development +457094,Economic Development,Economic Development +457151,International Trade,International Trade +475091,Economic Development,Economic Development +457252,Infrastructure,Infrastructure +521347,Economic Development,Economic Development +521347,Small Business,Small Business +479506,Energy,Energy +482172,Environment,Environment +458685,Infrastructure,Infrastructure +457305,Infrastructure,Infrastructure +457307,Infrastructure,Infrastructure +457408,Taxation and Finance,Taxation and Finance +457541,Infrastructure,Infrastructure +457521,Forestry,Forestry +457521,Environment,Environment +457523,Environment,Environment +466338,Infrastructure,Infrastructure +457606,Climate,Climate +487888,Government Procurement,Government Procurement +504170,Industry,Industry +484202,Defence,Defence +514891,Economic Development,Economic Development +514891,Industry,Industrie +470605,Health,Health +470605,Labour,Labour +461259,Security,Security +458566,Industry,Industry +458566,Government Procurement,Government Procurement +458566,Budget,Budget +459228,Financial Institutions,Financial Institutions +459228,Taxation and Finance,Taxation and Finance +458948,Industry,Industry +458948,Intellectual Property,Intellectual Property +458063,Infrastructure,Infrastructure +514274,Taxation and Finance,Taxation and Finance +457840,Infrastructure,Infrastructure +458248,Privacy and Access to Information,Privacy and Access to Information +474416,Economic Development,Economic Development +458284,Employment and Training,Employment and Training +474416,Industry,Industry +457876,Infrastructure,Infrastructure +457875,Mining,Mining +457875,Regional Development,Regional Development +458324,Housing,Housing +458909,Transportation,Transportation +458909,Environment,Environment +479362,Government Procurement,Government Procurement +479362,Infrastructure,Infrastructure +479362,Labour,Labour +459014,Climate,Climate +458301,Energy,Energy +533119,Privacy and Access to Information,Privacy and Access to Information +458733,Infrastructure,Infrastructure +458733,Transportation,Transportation +533124,Infrastructure,Infrastructure +457914,Infrastructure,Infrastructure +457912,Regional Development,Regional Development +473549,Economic Development,Economic Development +462044,Research and Development,Research and Development +491881,Environment,Environment +457928,Regional Development,Regional Development +478721,Employment and Training,Employment and Training +477456,Official Languages,Official Languages +466640,Housing,Housing +509490,Official Languages,Official Languages +471559,Agriculture,Agriculture +544871,Employment and Training,Employment and Training +535691,Immigration,Immigration +459839,International Trade,International Trade +457945,Environment,Environment +457951,Privacy and Access to Information,Privacy and Access to Information +457952,Privacy and Access to Information,Privacy and Access to Information +457953,Privacy and Access to Information,Privacy and Access to Information +457954,Privacy and Access to Information,Privacy and Access to Information +457955,Privacy and Access to Information,Privacy and Access to Information +458822,Infrastructure,Infrastructure +458822,Security,Security +482778,Education,Education +458781,Infrastructure,Infrastructure +458781,Research and Development,Research and Development +458781,Small Business,Small Business +530335,Environment,Environment +502865,Infrastructure,Infrastructure +511444,Tourism,Tourism +464871,Agriculture,Agriculture +464865,Economic Development,Economic Development +464756,Energy,Energy +461914,Environment,Environment +464871,Fisheries,Fisheries +464869,Forestry,Forestry +464861,Industry,Industry +460197,Infrastructure,Infrastructure +464953,International Relations,International Relations +460199,International Trade,International Trade +464865,Mining,Mining +464871,Regional Development,Regional Development +460200,Transportation,Transportation +460182,Energy,Energy +459821,Environment,Environment +458326,Economic Development,Economic Development +474758,Regional Development,Regional Development +473561,Tourism,Tourism +473558,Tourism,Tourism +473557,Tourism,Tourism +473556,Tourism,Tourism +473553,Tourism,Tourism +462850,Tourism,Tourism +460637,Tourism,Tourism +460636,Tourism,Tourism +460079,Tourism,Tourism +530335,Tourism,Tourism +530334,Tourism,Tourism +530333,Tourism,Tourism +527105,Tourism,Tourism +527104,Tourism,Tourism +527103,Tourism,Tourism +527102,Tourism,Tourism +527101,Tourism,Tourism +527100,Tourism,Tourism +527099,Tourism,Tourism +527098,Tourism,Tourism +527097,Tourism,Tourism +523539,Tourism,Tourism +520601,Tourism,Tourism +515939,Tourism,Tourism +515938,Tourism,Tourism +515937,Tourism,Tourism +511447,Tourism,Tourism +511446,Tourism,Tourism +511445,Tourism,Tourism +464865,Agriculture,Agriculture +464756,Economic Development,Economic Development +460199,Economic Development,Economic Development +464871,Economic Development,Economic Development +464869,Economic Development,Economic Development +461914,Energy,Energy +460202,Energy,Energy +464871,Energy,Energy +464869,Energy,Energy +464865,Energy,Energy +464861,Energy,Energy +460202,Environment,Environment +460201,Environment,Environment +464871,Environment,Environment +464869,Environment,Environment +464865,Environment,Environment +464861,Environment,Environment +464756,Environment,Environment +464861,Fisheries,Fisheries +464865,Forestry,Forestry +464861,Forestry,Forestry +464871,Forestry,Forestry +464759,Industry,Industry +464756,Industry,Industry +464937,Industry,Industry +464871,Industry,Industry +464869,Industry,Industry +464865,Industry,Industry +460196,Infrastructure,Infrastructure +460195,Infrastructure,Infrastructure +464871,Infrastructure,Infrastructure +464869,Infrastructure,Infrastructure +464865,Infrastructure,Infrastructure +464861,Infrastructure,Infrastructure +464756,Infrastructure,Infrastructure +464755,Infrastructure,Infrastructure +460202,Infrastructure,Infrastructure +460201,Infrastructure,Infrastructure +460200,Infrastructure,Infrastructure +460199,Infrastructure,Infrastructure +464871,International Relations,International Relations +460197,International Trade,International Trade +460196,International Trade,International Trade +464953,International Trade,International Trade +464871,International Trade,International Trade +464869,International Trade,International Trade +460202,International Trade,International Trade +464861,Mining,Mining +460202,Mining,Mining +464871,Mining,Mining +464869,Mining,Mining +464865,Regional Development,Regional Development +460196,Transportation,Transportation +460195,Transportation,Transportation +464937,Transportation,Transportation +464871,Transportation,Transportation +464865,Transportation,Transportation +464861,Transportation,Transportation +464762,Transportation,Transportation +464759,Transportation,Transportation +464756,Transportation,Transportation +464755,Transportation,Transportation +460201,Transportation,Transportation +460180,Energy,Energy +457996,Energy,Energy +474778,Energy,Energy +474777,Energy,Energy +474775,Energy,Energy +474771,Energy,Energy +464959,Energy,Energy +462756,Energy,Energy +457996,Environment,Environment +474896,Environment,Environment +474895,Environment,Environment +474778,Environment,Environment +474777,Environment,Environment +474775,Environment,Environment +474771,Environment,Environment +474770,Environment,Environment +474769,Environment,Environment +474766,Environment,Environment +474764,Environment,Environment +474763,Environment,Environment +471608,Environment,Environment +471267,Environment,Environment +471266,Environment,Environment +471265,Environment,Environment +464959,Environment,Environment +464893,Environment,Environment +464889,Environment,Environment +462756,Environment,Environment +460182,Environment,Environment +460180,Environment,Environment +458325,Economic Development,Economic Development +458323,Economic Development,Economic Development +474896,Economic Development,Economic Development +474895,Economic Development,Economic Development +474770,Economic Development,Economic Development +474769,Economic Development,Economic Development +474766,Economic Development,Economic Development +474764,Economic Development,Economic Development +474763,Economic Development,Economic Development +464893,Economic Development,Economic Development +464889,Economic Development,Economic Development +458327,Economic Development,Economic Development +464893,Regional Development,Regional Development +464889,Regional Development,Regional Development +458327,Regional Development,Regional Development +458326,Regional Development,Regional Development +458325,Regional Development,Regional Development +458323,Regional Development,Regional Development +474896,Regional Development,Regional Development +474895,Regional Development,Regional Development +474770,Regional Development,Regional Development +474769,Regional Development,Regional Development +474766,Regional Development,Regional Development +474764,Regional Development,Regional Development +474763,Regional Development,Regional Development +459733,Transportation,Transportation +460209,Infrastructure,Infrastructure +460209,International Trade,International Trade +484273,Economic Development,Economic Development +484270,Economic Development,Economic Development +543252,Economic Development,Economic Development +543251,Economic Development,Economic Development +543250,Economic Development,Economic Development +543247,Economic Development,Economic Development +543245,Economic Development,Economic Development +543241,Economic Development,Economic Development +540066,Economic Development,Economic Development +532254,Economic Development,Economic Development +522789,Economic Development,Economic Development +522786,Economic Development,Economic Development +504925,Economic Development,Economic Development +495237,Economic Development,Economic Development +495235,Economic Development,Economic Development +495233,Economic Development,Economic Development +543241,Energy,Energy +540066,Energy,Energy +528936,Energy,Energy +522789,Energy,Energy +522786,Energy,Energy +495237,Energy,Energy +495233,Energy,Energy +491731,Energy,Energy +488736,Energy,Energy +484273,Energy,Energy +543252,Energy,Energy +543251,Energy,Energy +543250,Energy,Energy +543247,Energy,Energy +532254,Environment,Environment +528936,Environment,Environment +522789,Environment,Environment +495237,Environment,Environment +495233,Environment,Environment +484273,Environment,Environment +543252,Environment,Environment +543251,Environment,Environment +543250,Environment,Environment +543247,Environment,Environment +543245,Environment,Environment +543241,Environment,Environment +540071,Environment,Environment +532254,Regional Development,Regional Development +503239,Internal Trade,Internal Trade +458157,Internal Trade,Internal Trade +526795,Internal Trade,Internal Trade +526789,Internal Trade,Internal Trade +526788,Internal Trade,Internal Trade +526787,Internal Trade,Internal Trade +526786,Internal Trade,Internal Trade +526785,Internal Trade,Internal Trade +526784,Internal Trade,Internal Trade +503270,Internal Trade,Internal Trade +503269,Internal Trade,Internal Trade +503268,Internal Trade,Internal Trade +503267,Internal Trade,Internal Trade +503266,Internal Trade,Internal Trade +503265,Internal Trade,Internal Trade +503264,Internal Trade,Internal Trade +503262,Internal Trade,Internal Trade +503261,Internal Trade,Internal Trade +503260,Internal Trade,Internal Trade +503259,Internal Trade,Internal Trade +503258,Internal Trade,Internal Trade +503257,Internal Trade,Internal Trade +503256,Internal Trade,Internal Trade +503255,Internal Trade,Internal Trade +503254,Internal Trade,Internal Trade +503253,Internal Trade,Internal Trade +503251,Internal Trade,Internal Trade +503250,Internal Trade,Internal Trade +503249,Internal Trade,Internal Trade +503248,Internal Trade,Internal Trade +503246,Internal Trade,Internal Trade +503245,Internal Trade,Internal Trade +503244,Internal Trade,Internal Trade +503243,Internal Trade,Internal Trade +503242,Internal Trade,Internal Trade +503241,Internal Trade,Internal Trade +496082,Mining,Mining +468235,Research and Development,Research and Development +465033,Research and Development,Research and Development +468243,Research and Development,Research and Development +468240,Research and Development,Research and Development +471189,Economic Development,Economic Development +470389,Economic Development,Economic Development +473274,Economic Development,Economic Development +471189,Energy,Energy +470389,Energy,Energy +483712,Energy,Energy +470389,Research and Development,Research and Development +477044,Small Business,Small Business +477031,Small Business,Small Business +471192,Small Business,Small Business +471189,Small Business,Small Business +470389,Small Business,Small Business +458581,Agriculture,Agriculture +458580,Agriculture,Agriculture +521206,Agriculture,Agriculture +521190,Agriculture,Agriculture +521189,Agriculture,Agriculture +496615,Agriculture,Agriculture +496525,Agriculture,Agriculture +496523,Agriculture,Agriculture +463585,Agriculture,Agriculture +463584,Health,Health +496525,International Trade,International Trade +496523,International Trade,International Trade +463585,International Trade,International Trade +463584,International Trade,International Trade +458581,International Trade,International Trade +458580,International Trade,International Trade +521206,International Trade,International Trade +521190,International Trade,International Trade +521189,International Trade,International Trade +458571,Elections,Elections +460827,Financial Institutions,Financial Institutions +459123,Financial Institutions,Financial Institutions +467674,Financial Institutions,Financial Institutions +460827,Industry,Industry +459123,Industry,Industry +467674,Industry,Industry +460827,Taxation and Finance,Taxation and Finance +459123,Taxation and Finance,Taxation and Finance +467674,Taxation and Finance,Taxation and Finance +474888,Budget,Budget +491460,Government Procurement,Government Procurement +473760,Government Procurement,Government Procurement +461881,Climate,Climate +460551,Climate,Climate +514451,Climate,Climate +511657,Climate,Climate +484134,Climate,Climate +484131,Climate,Climate +483300,Climate,Climate +483295,Climate,Climate +483294,Climate,Climate +483293,Climate,Climate +483292,Climate,Climate +483291,Climate,Climate +483290,Climate,Climate +483289,Climate,Climate +483287,Climate,Climate +483286,Climate,Climate +483285,Climate,Climate +481657,Climate,Climate +480452,Climate,Climate +477557,Climate,Climate +477273,Climate,Climate +477271,Climate,Climate +477270,Climate,Climate +477268,Climate,Climate +477267,Climate,Climate +474868,Climate,Climate +474864,Climate,Climate +472702,Climate,Climate +472694,Climate,Climate +472691,Climate,Climate +471268,Climate,Climate +470747,Climate,Climate +467270,Climate,Climate +467267,Climate,Climate +467263,Climate,Climate +467261,Climate,Climate +467260,Climate,Climate +467259,Climate,Climate +467258,Climate,Climate +467257,Climate,Climate +464428,Climate,Climate +464427,Climate,Climate +464411,Climate,Climate +462480,Climate,Climate +462478,Climate,Climate +462477,Climate,Climate +462476,Climate,Climate +480449,Health,Health +477276,Health,Health +474868,Health,Health +474865,Health,Health +474864,Health,Health +474861,Health,Health +472691,Health,Health +470741,Health,Health +470738,Health,Health +470735,Health,Health +470734,Health,Health +470724,Health,Health +470723,Health,Health +470722,Health,Health +470719,Health,Health +470717,Health,Health +470715,Health,Health +470708,Health,Health +462478,Health,Health +461892,Health,Health +460551,Health,Health +511657,Health,Health +511618,Health,Health +511616,Health,Health +483295,Health,Health +483294,Health,Health +483293,Health,Health +483292,Health,Health +483291,Health,Health +483290,Health,Health +483289,Health,Health +483287,Health,Health +483286,Health,Health +483285,Health,Health +480451,Health,Health +462476,Immigration,Immigration +461883,Immigration,Immigration +484134,Immigration,Immigration +477557,Immigration,Immigration +477273,Immigration,Immigration +477270,Immigration,Immigration +477268,Immigration,Immigration +477267,Immigration,Immigration +472714,Immigration,Immigration +467270,Immigration,Immigration +467267,Immigration,Immigration +467263,Immigration,Immigration +467261,Immigration,Immigration +467260,Immigration,Immigration +467259,Immigration,Immigration +467258,Immigration,Immigration +467257,Immigration,Immigration +481657,International Relations,International Relations +474858,International Relations,International Relations +472714,International Relations,International Relations +472706,International Relations,International Relations +472702,International Relations,International Relations +470747,International Relations,International Relations +467270,International Relations,International Relations +467267,International Relations,International Relations +467263,International Relations,International Relations +467261,International Relations,International Relations +467260,International Relations,International Relations +467259,International Relations,International Relations +467258,International Relations,International Relations +467257,International Relations,International Relations +487762,Taxation and Finance,Taxation and Finance +487761,Taxation and Finance,Taxation and Finance +471827,Taxation and Finance,Taxation and Finance +535315,Taxation and Finance,Taxation and Finance +535312,Taxation and Finance,Taxation and Finance +535309,Taxation and Finance,Taxation and Finance +531945,Taxation and Finance,Taxation and Finance +531944,Taxation and Finance,Taxation and Finance +529593,Taxation and Finance,Taxation and Finance +526560,Taxation and Finance,Taxation and Finance +526557,Taxation and Finance,Taxation and Finance +523108,Taxation and Finance,Taxation and Finance +520205,Taxation and Finance,Taxation and Finance +518260,Taxation and Finance,Taxation and Finance +518256,Taxation and Finance,Taxation and Finance +496128,Taxation and Finance,Taxation and Finance +496121,Taxation and Finance,Taxation and Finance +493697,Taxation and Finance,Taxation and Finance +491700,Taxation and Finance,Taxation and Finance +487764,Taxation and Finance,Taxation and Finance +465601,Budget,Budget +488530,Research and Development,Research and Development +485183,Research and Development,Research and Development +475891,Research and Development,Research and Development +511606,Transportation,Transportation +474017,Economic Development,Economic Development +472032,Economic Development,Economic Development +496093,Economic Development,Economic Development +488530,Economic Development,Economic Development +488529,Economic Development,Economic Development +485180,Economic Development,Economic Development +480354,Economic Development,Economic Development +478342,Environment,Environment +465601,Environment,Environment +496093,Environment,Environment +485186,Environment,Environment +485180,Environment,Environment +478348,Energy,Energy +478342,Energy,Energy +472032,Energy,Energy +465601,Energy,Energy +512985,Energy,Energy +511606,Energy,Energy +459198,Energy,Energy +478752,Energy,Energy +460602,Economic Development,Economic Development +460602,Consumer Issues,Consumer Issues +478752,Environment,Environment +463934,Health,Health +463934,International Development,International Development +459205,Sports,Sports +471641,Health,Health +459563,Justice and Law Enforcement,Justice and Law Enforcement +458964,Justice and Law Enforcement,Justice and Law Enforcement +476652,Justice and Law Enforcement,Justice and Law Enforcement +476652,Small Business,Small Business +463197,Health,Health +459694,Sports,Sports +459693,Sports,Sports +466680,Sports,Sports +459693,Economic Development,Economic Development +459693,Immigration,Immigration +459692,Immigration,Immigration +466680,Immigration,Immigration +467431,Health,Health +459679,Health,Health +536843,Health,Health +531934,Health,Health +529042,Health,Health +529035,Health,Health +529033,Health,Health +529030,Health,Health +529029,Health,Health +529028,Health,Health +522558,Health,Health +522345,Health,Health +522342,Health,Health +515712,Health,Health +501346,Health,Health +501345,Health,Health +501343,Health,Health +501332,Health,Health +498797,Health,Health +495285,Health,Health +495283,Health,Health +490639,Health,Health +490636,Health,Health +490633,Health,Health +490622,Health,Health +489164,Health,Health +475587,Health,Health +475585,Health,Health +473366,Health,Health +473364,Health,Health +473362,Health,Health +473360,Health,Health +473356,Health,Health +470842,Health,Health +470840,Health,Health +470839,Health,Health +470838,Health,Health +467458,Health,Health +467455,Health,Health +467454,Health,Health +467453,Health,Health +467444,Health,Health +467442,Health,Health +467436,Health,Health +520860,Economic Development,Economic Development +496590,Economic Development,Economic Development +496589,Economic Development,Economic Development +479805,Economic Development,Economic Development +464205,Economic Development,Economic Development +464200,Economic Development,Economic Development +462265,Economic Development,Economic Development +460098,Economic Development,Economic Development +460096,Economic Development,Economic Development +460095,Economic Development,Economic Development +459357,Economic Development,Economic Development +544316,Economic Development,Economic Development +544315,Economic Development,Economic Development +544313,Economic Development,Economic Development +541801,Economic Development,Economic Development +541797,Economic Development,Economic Development +541795,Economic Development,Economic Development +541793,Economic Development,Economic Development +539561,Economic Development,Economic Development +539560,Economic Development,Economic Development +539559,Economic Development,Economic Development +539556,Economic Development,Economic Development +539554,Economic Development,Economic Development +539552,Economic Development,Economic Development +539550,Economic Development,Economic Development +537438,Economic Development,Economic Development +537436,Economic Development,Economic Development +537435,Economic Development,Economic Development +537434,Economic Development,Economic Development +537430,Economic Development,Economic Development +535671,Economic Development,Economic Development +535665,Economic Development,Economic Development +535663,Economic Development,Economic Development +535659,Economic Development,Economic Development +535655,Economic Development,Economic Development +535652,Economic Development,Economic Development +535648,Economic Development,Economic Development +531117,Economic Development,Economic Development +531110,Economic Development,Economic Development +531109,Economic Development,Economic Development +531108,Economic Development,Economic Development +527831,Economic Development,Economic Development +527830,Economic Development,Economic Development +525802,Economic Development,Economic Development +525771,Economic Development,Economic Development +525737,Economic Development,Economic Development +525712,Economic Development,Economic Development +525706,Economic Development,Economic Development +525669,Economic Development,Economic Development +525664,Economic Development,Economic Development +525520,Economic Development,Economic Development +525517,Economic Development,Economic Development +525514,Economic Development,Economic Development +523585,Economic Development,Economic Development +521184,Economic Development,Economic Development +521183,Economic Development,Economic Development +521182,Economic Development,Economic Development +521175,Economic Development,Economic Development +521173,Economic Development,Economic Development +521171,Economic Development,Economic Development +521170,Economic Development,Economic Development +521168,Economic Development,Economic Development +521166,Economic Development,Economic Development +519116,Economic Development,Economic Development +519115,Economic Development,Economic Development +519114,Economic Development,Economic Development +519113,Economic Development,Economic Development +519107,Economic Development,Economic Development +516630,Economic Development,Economic Development +512108,Economic Development,Economic Development +512105,Economic Development,Economic Development +503997,Economic Development,Economic Development +501723,Economic Development,Economic Development +459991,Industry,Industry +459001,Industry,Industry +511875,Industry,Industry +506600,Industry,Industry +499998,Industry,Industry +497822,Industry,Industry +497816,Industry,Industry +496603,Industry,Industry +496596,Industry,Industry +496565,Industry,Industry +491876,Industry,Industry +488541,Industry,Industry +488537,Industry,Industry +486471,Industry,Industry +485939,Industry,Industry +485784,Industry,Industry +478679,Industry,Industry +478490,Industry,Industry +477941,Industry,Industry +477913,Industry,Industry +476163,Industry,Industry +474124,Industry,Industry +473987,Industry,Industry +472115,Industry,Industry +472113,Industry,Industry +471647,Industry,Industry +471495,Industry,Industry +470577,Industry,Industry +469467,Industry,Industry +469383,Industry,Industry +469368,Industry,Industry +463117,Industry,Industry +463108,Industry,Industry +463107,Industry,Industry +459991,Labour,Labour +459001,Labour,Labour +463117,Labour,Labour +463108,Labour,Labour +463107,Labour,Labour +496530,Consumer Issues,Consumer Issues +496529,Consumer Issues,Consumer Issues +496528,Consumer Issues,Consumer Issues +463568,Consumer Issues,Consumer Issues +463567,Consumer Issues,Consumer Issues +463566,Consumer Issues,Consumer Issues +521283,Consumer Issues,Consumer Issues +521282,Consumer Issues,Consumer Issues +521282,Economic Development,Economic Development +521283,Environment,Environment +521282,Environment,Environment +521282,Industry,Industry +521282,Small Business,Small Business +460299,Environment,Environment +460298,Environment,Environment +485507,Environment,Environment +468020,Industry,Industry +496536,Consumer Issues,Consumer Issues +496534,Consumer Issues,Consumer Issues +463564,Consumer Issues,Consumer Issues +463563,Consumer Issues,Consumer Issues +496538,Consumer Issues,Consumer Issues +463587,Consumer Issues,Consumer Issues +463586,Consumer Issues,Consumer Issues +521281,Consumer Issues,Consumer Issues +521280,Consumer Issues,Consumer Issues +496787,Consumer Issues,Consumer Issues +496527,Consumer Issues,Consumer Issues +496526,Consumer Issues,Consumer Issues +463589,Consumer Issues,Consumer Issues +521280,Environment,Environment +521280,Industry,Industry +521280,Research and Development,Research and Development +521280,Small Business,Small Business +459318,Economic Development,Economic Development +459313,Economic Development,Economic Development +463312,Economic Development,Economic Development +462188,Economic Development,Economic Development +462187,Economic Development,Economic Development +459333,Economic Development,Economic Development +459331,Economic Development,Economic Development +459329,Economic Development,Economic Development +459328,Economic Development,Economic Development +459327,Economic Development,Economic Development +459326,Economic Development,Economic Development +459325,Economic Development,Economic Development +459323,Economic Development,Economic Development +459321,Economic Development,Economic Development +459320,Economic Development,Economic Development +459318,Energy,Energy +459313,Energy,Energy +463312,Energy,Energy +462188,Energy,Energy +462187,Energy,Energy +459333,Energy,Energy +459331,Energy,Energy +459329,Energy,Energy +459328,Energy,Energy +459327,Energy,Energy +459326,Energy,Energy +459325,Energy,Energy +459323,Energy,Energy +459321,Energy,Energy +459320,Energy,Energy +459318,Environment,Environment +459313,Environment,Environment +463312,Environment,Environment +462188,Environment,Environment +462187,Environment,Environment +459333,Environment,Environment +459331,Environment,Environment +459329,Environment,Environment +459328,Environment,Environment +459327,Environment,Environment +459326,Environment,Environment +459325,Environment,Environment +459323,Environment,Environment +459321,Environment,Environment +459320,Environment,Environment +462188,Regional Development,Regional Development +462187,Regional Development,Regional Development +496504,Consumer Issues,Consumer Issues +540903,Consumer Issues,Consumer Issues +521279,Consumer Issues,Consumer Issues +521278,Consumer Issues,Consumer Issues +513860,Consumer Issues,Consumer Issues +497478,Consumer Issues,Consumer Issues +521278,Economic Development,Economic Development +513860,Economic Development,Economic Development +521278,Industry,Industry +513860,Industry,Industry +540903,Industry,Industry +521278,Small Business,Small Business +540903,Small Business,Small Business +463580,Consumer Issues,Consumer Issues +463579,Consumer Issues,Consumer Issues +497079,Consumer Issues,Consumer Issues +496786,Consumer Issues,Consumer Issues +496616,Consumer Issues,Consumer Issues +496464,Consumer Issues,Consumer Issues +496462,Consumer Issues,Consumer Issues +463583,Consumer Issues,Consumer Issues +463582,Consumer Issues,Consumer Issues +496485,Consumer Issues,Consumer Issues +496484,Consumer Issues,Consumer Issues +463560,Consumer Issues,Consumer Issues +463559,Consumer Issues,Consumer Issues +463558,Consumer Issues,Consumer Issues +463557,Consumer Issues,Consumer Issues +463556,Consumer Issues,Consumer Issues +521208,Consumer Issues,Consumer Issues +521207,Consumer Issues,Consumer Issues +496573,Consumer Issues,Consumer Issues +521207,Economic Development,Economic Development +521207,Industry,Industry +521207,Research and Development,Research and Development +521207,Small Business,Small Business +521210,Consumer Issues,Consumer Issues +521209,Consumer Issues,Consumer Issues +496790,Consumer Issues,Consumer Issues +496789,Consumer Issues,Consumer Issues +496480,Consumer Issues,Consumer Issues +496478,Consumer Issues,Consumer Issues +496477,Consumer Issues,Consumer Issues +496476,Consumer Issues,Consumer Issues +463562,Consumer Issues,Consumer Issues +463561,Consumer Issues,Consumer Issues +521212,Consumer Issues,Consumer Issues +521210,Economic Development,Economic Development +521209,Economic Development,Economic Development +521212,Economic Development,Economic Development +521209,Employment and Training,Employment and Training +521209,Environment,Environment +496479,Environment,Environment +521212,Environment,Environment +521211,Environment,Environment +521210,Industry,Industry +521209,Industry,Industry +521212,Industry,Industry +521211,Research and Development,Research and Development +521210,Research and Development,Research and Development +521211,Small Business,Small Business +521210,Small Business,Small Business +496525,Consumer Issues,Consumer Issues +496523,Consumer Issues,Consumer Issues +463585,Consumer Issues,Consumer Issues +463584,Consumer Issues,Consumer Issues +521206,Consumer Issues,Consumer Issues +521190,Consumer Issues,Consumer Issues +521189,Consumer Issues,Consumer Issues +521190,Economic Development,Economic Development +521189,Economic Development,Economic Development +521190,Employment and Training,Employment and Training +521190,Environment,Environment +521189,Environment,Environment +463585,Environment,Environment +521190,Industry,Industry +521189,Industry,Industry +521190,Research and Development,Research and Development +521189,Research and Development,Research and Development +496930,Industry,Industry +460048,Economic Development,Economic Development +485460,Security,Security +485458,Security,Security +475012,Security,Security +459046,Security,Security +492027,Security,Security +488450,Economic Development,Economic Development +488449,Economic Development,Economic Development +488448,Economic Development,Economic Development +486595,Economic Development,Economic Development +486433,Economic Development,Economic Development +486431,Economic Development,Economic Development +486427,Economic Development,Economic Development +486426,Economic Development,Economic Development +486423,Economic Development,Economic Development +485850,Economic Development,Economic Development +485847,Economic Development,Economic Development +485845,Economic Development,Economic Development +483448,Economic Development,Economic Development +483447,Economic Development,Economic Development +476379,Economic Development,Economic Development +474192,Economic Development,Economic Development +474191,Economic Development,Economic Development +474190,Economic Development,Economic Development +474189,Economic Development,Economic Development +474188,Economic Development,Economic Development +474187,Economic Development,Economic Development +471900,Economic Development,Economic Development +471899,Economic Development,Economic Development +471898,Economic Development,Economic Development +471897,Economic Development,Economic Development +471896,Economic Development,Economic Development +471895,Economic Development,Economic Development +471893,Economic Development,Economic Development +471881,Economic Development,Economic Development +471879,Economic Development,Economic Development +466066,Economic Development,Economic Development +466065,Economic Development,Economic Development +466064,Economic Development,Economic Development +466063,Economic Development,Economic Development +464015,Economic Development,Economic Development +464014,Economic Development,Economic Development +463093,Economic Development,Economic Development +463092,Economic Development,Economic Development +463091,Economic Development,Economic Development +463089,Economic Development,Economic Development +463088,Economic Development,Economic Development +463087,Economic Development,Economic Development +463086,Economic Development,Economic Development +463085,Economic Development,Economic Development +462039,Economic Development,Economic Development +462038,Economic Development,Economic Development +462037,Economic Development,Economic Development +462035,Economic Development,Economic Development +460526,Economic Development,Economic Development +460524,Economic Development,Economic Development +460521,Economic Development,Economic Development +460519,Economic Development,Economic Development +459943,Economic Development,Economic Development +459942,Economic Development,Economic Development +459940,Economic Development,Economic Development +538794,Economic Development,Economic Development +538793,Economic Development,Economic Development +538792,Economic Development,Economic Development +538791,Economic Development,Economic Development +523587,Economic Development,Economic Development +523368,Economic Development,Economic Development +523367,Economic Development,Economic Development +521110,Economic Development,Economic Development +521102,Economic Development,Economic Development +515365,Economic Development,Economic Development +512043,Economic Development,Economic Development +503393,Economic Development,Economic Development +503327,Economic Development,Economic Development +500259,Economic Development,Economic Development +500255,Economic Development,Economic Development +496593,Economic Development,Economic Development +493871,Economic Development,Economic Development +491933,Economic Development,Economic Development +489142,Economic Development,Economic Development +489141,Economic Development,Economic Development +489140,Economic Development,Economic Development +489135,Economic Development,Economic Development +488456,Economic Development,Economic Development +488454,Economic Development,Economic Development +459316,Financial Institutions,Financial Institutions +459315,Financial Institutions,Financial Institutions +492989,Financial Institutions,Financial Institutions +459316,Taxation and Finance,Taxation and Finance +459315,Taxation and Finance,Taxation and Finance +492989,Taxation and Finance,Taxation and Finance +461735,Economic Development,Economic Development +464900,Government Procurement,Government Procurement +464885,Government Procurement,Government Procurement +461736,Government Procurement,Government Procurement +461735,Government Procurement,Government Procurement +461733,Government Procurement,Government Procurement +540625,Government Procurement,Government Procurement +538985,Government Procurement,Government Procurement +514961,Government Procurement,Government Procurement +509428,Government Procurement,Government Procurement +508636,Government Procurement,Government Procurement +499441,Government Procurement,Government Procurement +493684,Government Procurement,Government Procurement +487324,Government Procurement,Government Procurement +478074,Government Procurement,Government Procurement +475943,Government Procurement,Government Procurement +473766,Government Procurement,Government Procurement +468335,Government Procurement,Government Procurement +513595,Industry,Industry +509428,Industry,Industry +461735,Infrastructure,Infrastructure +461733,Infrastructure,Infrastructure +508636,Infrastructure,Infrastructure +523868,Research and Development,Research and Development +513595,Security,Security +508636,Security,Security +499441,Security,Security +493684,Security,Security +487324,Security,Security +478074,Security,Security +475943,Security,Security +468323,Security,Security +464900,Security,Security +464885,Security,Security +461736,Security,Security +461735,Security,Security +460210,Transportation,Transportation +460210,Infrastructure,Infrastructure +460210,International Trade,International Trade +460209,Economic Development,Economic Development +491731,Economic Development,Economic Development +543245,Energy,Energy +540066,Environment,Environment +543252,Regional Development,Regional Development +503240,Internal Trade,Internal Trade +496083,Mining,Mining +496083,International Trade,International Trade +485170,International Trade,International Trade +485168,Justice and Law Enforcement,Justice and Law Enforcement +475883,Industry,Industry +475877,Health,Health +493672,Health,Health +458165,Intellectual Property,Intellectual Property +458182,International Trade,International Trade +458198,Health,Health +458198,Infrastructure,Infrastructure +458191,International Relations,International Relations +458197,Infrastructure,Infrastructure +458197,Health,Health +458196,Infrastructure,Infrastructure +458196,Health,Health +458195,Climate,Climate +468238,Research and Development,Research and Development +458324,Economic Development,Economic Development +459027,Sports,Sports +471192,Economic Development,Economic Development +471192,Energy,Energy +471192,Environment,Environment +470389,Industry,Industry +471192,Research and Development,Research and Development +480129,Small Business,Small Business +458399,Climate,Climate +463584,Agriculture,Agriculture +463585,Health,Health +496615,International Trade,International Trade +459165,Elections,Elections +459165,Taxation and Finance,Taxation and Finance +460828,Financial Institutions,Financial Institutions +460828,Industry,Industry +460828,Taxation and Finance,Taxation and Finance +526022,Budget,Budget +474888,Consumer Issues,Consumer Issues +474882,Financial Institutions,Financial Institutions +458790,Immigration,Immigration +491465,Government Procurement,Government Procurement +461892,Climate,Climate +480450,Health,Health +462477,Immigration,Immigration +461883,International Relations,International Relations +465623,Housing,Housing +465623,Financial Institutions,Financial Institutions +487763,Taxation and Finance,Taxation and Finance +470728,Budget,Budget +465601,Research and Development,Research and Development +518748,Transportation,Transportation +478342,Economic Development,Economic Development +482510,Environment,Environment +485180,Energy,Energy +459199,Energy,Energy +466665,Industry,Industry +466665,Energy,Energy +466665,Economic Development,Economic Development +466665,Consumer Issues,Consumer Issues +460602,International Trade,International Trade +466665,Transportation,Transportation +466665,Environment,Environment +466665,International Trade,International Trade +466665,International Relations,International Relations +463937,Health,Health +463937,Research and Development,Research and Development +463937,International Development,International Development +465602,Economic Development,Economic Development +465602,Immigration,Immigration +465602,Sports,Sports +459836,Industry,Industry +542147,Health,Health +459565,Justice and Law Enforcement,Justice and Law Enforcement +479209,Small Business,Small Business +478610,Health,Health +466678,Sports,Sports +466680,Economic Development,Economic Development +466678,Immigration,Immigration +467433,Health,Health +462165,Economic Development,Economic Development +497970,Economic Development,Economic Development +461584,Industry,Industry +461584,Labour,Labour +459001,Taxation and Finance,Taxation and Finance +496531,Consumer Issues,Consumer Issues +521283,Economic Development,Economic Development +463567,Environment,Environment +521283,Industry,Industry +521283,Research and Development,Research and Development +521283,Small Business,Small Business +485507,Consumer Issues,Consumer Issues +468020,Environment,Environment +485507,Industry,Industry +496537,Consumer Issues,Consumer Issues +463588,Consumer Issues,Consumer Issues +521281,Environment,Environment +521281,Industry,Industry +521281,Research and Development,Research and Development +521281,Small Business,Small Business +463312,Climate,Climate +459319,Economic Development,Economic Development +459319,Energy,Energy +459319,Environment,Environment +463312,Regional Development,Regional Development +496785,Consumer Issues,Consumer Issues +540903,Economic Development,Economic Development +521279,Employment and Training,Employment and Training +521279,Industry,Industry +521278,Research and Development,Research and Development +521279,Small Business,Small Business +463581,Consumer Issues,Consumer Issues +496489,Consumer Issues,Consumer Issues +521208,Economic Development,Economic Development +521207,Employment and Training,Employment and Training +521208,Industry,Industry +521208,Research and Development,Research and Development +521208,Small Business,Small Business +521211,Consumer Issues,Consumer Issues +521211,Economic Development,Economic Development +521212,Employment and Training,Employment and Training +521210,Environment,Environment +521211,Industry,Industry +521212,Research and Development,Research and Development +521212,Small Business,Small Business +496615,Consumer Issues,Consumer Issues +521206,Economic Development,Economic Development +521206,Employment and Training,Employment and Training +521206,Environment,Environment +521206,Industry,Industry +521206,Research and Development,Research and Development +521189,Small Business,Small Business +463157,Industry,Industry +460352,Economic Development,Economic Development +459231,Economic Development,Economic Development +459231,Tourism,Tourism +485817,Employment and Training,Employment and Training +485817,Infrastructure,Infrastructure +467819,Economic Development,Economic Development +467819,Government Procurement,Government Procurement +467819,Industry,Industry +467819,Regional Development,Regional Development +467819,Small Business,Small Business +459059,Security,Security +488646,Security,Security +488451,Economic Development,Economic Development +502722,Industry,Industry +459825,Financial Institutions,Financial Institutions +474504,Taxation and Finance,Taxation and Finance +459165,Justice and Law Enforcement,Justice and Law Enforcement +459170,Fisheries,Fisheries +516292,Economic Development,Economic Development +468323,Government Procurement,Government Procurement +527344,Industry,Industry +475943,Infrastructure,Infrastructure +475943,Research and Development,Research and Development +520799,Security,Security +506321,International Relations,International Relations +482102,Justice and Law Enforcement,Justice and Law Enforcement +489130,Budget,Budget +463024,Economic Development,Economic Development +480378,Employment and Training,Employment and Training +463024,Small Business,Small Business +480652,Taxation and Finance,Taxation and Finance +490576,Budget,Budget +528579,Employment and Training,Employment and Training +528579,Health,Health +490592,Justice and Law Enforcement,Justice and Law Enforcement +501610,Taxation and Finance,Taxation and Finance +461894,Government Procurement,Government Procurement +460141,Economic Development,Economic Development +461894,Security,Security +467666,Government Procurement,Government Procurement +508863,Infrastructure,Infrastructure +467666,Security,Security +459321,Justice and Law Enforcement,Justice and Law Enforcement +459327,Justice and Law Enforcement,Justice and Law Enforcement +485369,Security,Security +465926,Environment,Environment +465926,Industry,Industry +459419,Elections,Elections +459459,International Trade,International Trade +459444,Economic Development,Economic Development +466848,Research and Development,Research and Development +459445,Mining,Mining +459447,Fisheries,Fisheries +459449,Fisheries,Fisheries +459500,Transportation,Transportation +459502,Transportation,Transportation +460003,Elections,Elections +495279,Climate,Climate +459567,Budget,Budget +459586,International Trade,International Trade +460353,Economic Development,Economic Development +459620,Climate,Climate +459620,Environment,Environment +460207,Energy,Energy +460204,Transportation,Transportation +460207,Infrastructure,Infrastructure +460207,Environment,Environment +460207,Mining,Mining +460207,International Relations,International Relations +459666,Research and Development,Research and Development +459727,Immigration,Immigration +461805,Intellectual Property,Intellectual Property +462056,Economic Development,Economic Development +461669,Health,Health +533208,Environment,Environment +533208,Industry,Industry +475116,Economic Development,Economic Development +532976,Regional Development,Regional Development +472546,Financial Institutions,Financial Institutions +480003,Consumer Issues,Consumer Issues +472546,International Trade,International Trade +543718,Economic Development,Economic Development +461491,Fisheries,Fisheries +460252,Agriculture,Agriculture +460252,International Trade,International Trade +466317,Small Business,Small Business +487022,Industry,Industry +487022,Economic Development,Economic Development +497637,Small Business,Small Business +497637,Consumer Issues,Consumer Issues +494294,Financial Institutions,Financial Institutions +460261,Education,Education +509433,Official Languages,Official Languages +491566,Regional Development,Regional Development +525501,Fisheries,Fisheries +530559,Research and Development,Research and Development +469758,Financial Institutions,Financial Institutions +459852,International Trade,International Trade +475580,International Trade,International Trade +487106,Economic Development,Economic Development +487106,Industry,Industry +461349,Environment,Environment +498122,Taxation and Finance,Taxation and Finance +465686,Transportation,Transportation +466312,Economic Development,Economic Development +530463,Employment and Training,Employment and Training +492578,Infrastructure,Infrastructure +460422,Government Procurement,Government Procurement +460422,Industry,Industry +460422,Defence,Defence +471828,Economic Development,Economic Development +460469,Infrastructure,Infrastructure +460469,Regional Development,Regional Development +471830,Government Procurement,Government Procurement +460469,Transportation,Transportation +460469,Municipalities,Municipalities +466837,Government Procurement,Government Procurement +529774,International Trade,International Trade +461968,Budget,Budget +465639,Economic Development,Economic Development +461350,Regional Development,Regional Development +461350,Taxation and Finance,Taxation and Finance +461350,Employment and Training,Employment and Training +461350,Energy,Energy +496966,Infrastructure,Infrastructure +503139,Municipalities,Municipalities +504524,Health,Health +465641,Budget,Budget +465770,Environment,Environment +465770,Energy,Energy +465622,Environment,Environment +465622,Energy,Energy +476664,Health,Health +459971,International Trade,International Trade +459974,International Trade,International Trade +469369,Industry,Industry +463119,Labour,Labour +467921,Security,Security +493439,Housing,Housing +499062,International Development,International Development +525716,Internal Trade,Internal Trade +473720,Government Procurement,Government Procurement +475991,Security,Security +460168,Education,Education +460169,Official Languages,Official Languages +460240,Justice and Law Enforcement,Justice and Law Enforcement +464951,Consumer Issues,Consumer Issues +470419,Health,Health +468143,Industry,Industry +468143,Small Business,Small Business +462977,Economic Development,Economic Development +460559,Energy,Energy +462977,Environment,Environment +470427,Health,Health +476323,Consumer Issues,Consumer Issues +461876,Small Business,Small Business +463692,Economic Development,Economic Development +460281,International Trade,International Trade +461381,Financial Institutions,Financial Institutions +472435,Consumer Issues,Consumer Issues +506133,Financial Institutions,Financial Institutions +506133,Industry,Industry +465862,Privacy and Access to Information,Privacy and Access to Information +460416,Economic Development,Economic Development +478773,Budget,Budget +478676,Justice and Law Enforcement,Justice and Law Enforcement +478676,Privacy and Access to Information,Privacy and Access to Information +479466,Research and Development,Research and Development +462941,Health,Health +462978,Agriculture,Agriculture +481796,Economic Development,Economic Development +509478,Health,Health +509478,Industry,Industry +509478,Consumer Issues,Consumer Issues +460303,Justice and Law Enforcement,Justice and Law Enforcement +461822,Budget,Budget +460349,Research and Development,Research and Development +487864,Economic Development,Economic Development +487864,Mining,Mining +487864,Environment,Environment +479639,Climate,Climate +485732,Mining,Mining +518269,Industry,Industry +518269,Transportation,Transportation +536030,Environment,Environment +460349,Climate,Climate +461733,Security,Security +527337,Security,Security +523868,Security,Security +532543,International Relations,International Relations +482099,Justice and Law Enforcement,Justice and Law Enforcement +482095,Justice and Law Enforcement,Justice and Law Enforcement +473980,Justice and Law Enforcement,Justice and Law Enforcement +473979,Justice and Law Enforcement,Justice and Law Enforcement +473978,Justice and Law Enforcement,Justice and Law Enforcement +467249,Justice and Law Enforcement,Justice and Law Enforcement +467247,Justice and Law Enforcement,Justice and Law Enforcement +467246,Justice and Law Enforcement,Justice and Law Enforcement +467245,Justice and Law Enforcement,Justice and Law Enforcement +467244,Justice and Law Enforcement,Justice and Law Enforcement +465871,Justice and Law Enforcement,Justice and Law Enforcement +463364,Justice and Law Enforcement,Justice and Law Enforcement +463363,Justice and Law Enforcement,Justice and Law Enforcement +463362,Justice and Law Enforcement,Justice and Law Enforcement +463361,Justice and Law Enforcement,Justice and Law Enforcement +463358,Justice and Law Enforcement,Justice and Law Enforcement +463357,Justice and Law Enforcement,Justice and Law Enforcement +461323,Justice and Law Enforcement,Justice and Law Enforcement +461052,Justice and Law Enforcement,Justice and Law Enforcement +460996,Justice and Law Enforcement,Justice and Law Enforcement +544833,Justice and Law Enforcement,Justice and Law Enforcement +544831,Justice and Law Enforcement,Justice and Law Enforcement +544830,Justice and Law Enforcement,Justice and Law Enforcement +544829,Justice and Law Enforcement,Justice and Law Enforcement +542242,Justice and Law Enforcement,Justice and Law Enforcement +542241,Justice and Law Enforcement,Justice and Law Enforcement +532779,Justice and Law Enforcement,Justice and Law Enforcement +532543,Justice and Law Enforcement,Justice and Law Enforcement +527155,Justice and Law Enforcement,Justice and Law Enforcement +524606,Justice and Law Enforcement,Justice and Law Enforcement +521224,Justice and Law Enforcement,Justice and Law Enforcement +520358,Justice and Law Enforcement,Justice and Law Enforcement +509604,Justice and Law Enforcement,Justice and Law Enforcement +506301,Justice and Law Enforcement,Justice and Law Enforcement +503716,Justice and Law Enforcement,Justice and Law Enforcement +503288,Justice and Law Enforcement,Justice and Law Enforcement +503031,Justice and Law Enforcement,Justice and Law Enforcement +500581,Justice and Law Enforcement,Justice and Law Enforcement +500201,Justice and Law Enforcement,Justice and Law Enforcement +499921,Justice and Law Enforcement,Justice and Law Enforcement +499920,Justice and Law Enforcement,Justice and Law Enforcement +497487,Justice and Law Enforcement,Justice and Law Enforcement +497485,Justice and Law Enforcement,Justice and Law Enforcement +493978,Justice and Law Enforcement,Justice and Law Enforcement +492403,Justice and Law Enforcement,Justice and Law Enforcement +492194,Justice and Law Enforcement,Justice and Law Enforcement +492057,Justice and Law Enforcement,Justice and Law Enforcement +489461,Justice and Law Enforcement,Justice and Law Enforcement +486507,Justice and Law Enforcement,Justice and Law Enforcement +485686,Justice and Law Enforcement,Justice and Law Enforcement +485685,Justice and Law Enforcement,Justice and Law Enforcement +461238,Economic Development,Economic Development +461238,Small Business,Small Business +461238,Taxation and Finance,Taxation and Finance +490574,Budget,Budget +487238,Budget,Budget +501615,Budget,Budget +501614,Budget,Budget +501613,Budget,Budget +501612,Budget,Budget +501611,Budget,Budget +501610,Budget,Budget +501608,Budget,Budget +495291,Budget,Budget +490586,Budget,Budget +490581,Budget,Budget +528577,Employment and Training,Employment and Training +528576,Employment and Training,Employment and Training +537417,Employment and Training,Employment and Training +537415,Employment and Training,Employment and Training +537414,Employment and Training,Employment and Training +528577,Health,Health +528576,Health,Health +501615,Health,Health +501614,Health,Health +501613,Health,Health +501612,Health,Health +501611,Health,Health +501610,Health,Health +501608,Health,Health +495291,Health,Health +495119,Health,Health +495118,Health,Health +492763,Health,Health +492761,Health,Health +490596,Health,Health +490592,Health,Health +490586,Health,Health +490581,Health,Health +490576,Health,Health +490574,Health,Health +487253,Health,Health +487238,Health,Health +484476,Health,Health +484474,Health,Health +484467,Health,Health +537417,Health,Health +537415,Health,Health +537414,Health,Health +487253,Justice and Law Enforcement,Justice and Law Enforcement +501608,Taxation and Finance,Taxation and Finance +495291,Taxation and Finance,Taxation and Finance +501615,Taxation and Finance,Taxation and Finance +501614,Taxation and Finance,Taxation and Finance +501613,Taxation and Finance,Taxation and Finance +501612,Taxation and Finance,Taxation and Finance +501611,Taxation and Finance,Taxation and Finance +461649,Government Procurement,Government Procurement +460141,Government Procurement,Government Procurement +477667,Government Procurement,Government Procurement +461649,Security,Security +460141,Security,Security +491873,Security,Security +477667,Security,Security +462732,Government Procurement,Government Procurement +462723,Government Procurement,Government Procurement +508863,Government Procurement,Government Procurement +487335,Government Procurement,Government Procurement +478098,Government Procurement,Government Procurement +462732,Security,Security +462723,Security,Security +508863,Security,Security +487335,Security,Security +478098,Security,Security +459320,Justice and Law Enforcement,Justice and Law Enforcement +459313,Justice and Law Enforcement,Justice and Law Enforcement +459329,Justice and Law Enforcement,Justice and Law Enforcement +459325,Justice and Law Enforcement,Justice and Law Enforcement +459323,Justice and Law Enforcement,Justice and Law Enforcement +459326,Justice and Law Enforcement,Justice and Law Enforcement +459319,Justice and Law Enforcement,Justice and Law Enforcement +459318,Justice and Law Enforcement,Justice and Law Enforcement +459333,Justice and Law Enforcement,Justice and Law Enforcement +459331,Justice and Law Enforcement,Justice and Law Enforcement +459328,Justice and Law Enforcement,Justice and Law Enforcement +459443,Economic Development,Economic Development +459437,Economic Development,Economic Development +484654,Economic Development,Economic Development +482918,Economic Development,Economic Development +460027,Economic Development,Economic Development +459448,Economic Development,Economic Development +459448,Research and Development,Research and Development +459438,Research and Development,Research and Development +484654,Research and Development,Research and Development +469613,Research and Development,Research and Development +466850,Research and Development,Research and Development +459441,Mining,Mining +459530,Elections,Elections +512934,Elections,Elections +459536,Climate,Climate +460206,Energy,Energy +460206,Infrastructure,Infrastructure +460204,Infrastructure,Infrastructure +460206,Environment,Environment +460206,Mining,Mining +460206,International Relations,International Relations +461804,Intellectual Property,Intellectual Property +460029,Health,Health +459799,Health,Health +541195,Health,Health +539443,Health,Health +516744,Health,Health +516743,Health,Health +512584,Health,Health +512583,Health,Health +509839,Health,Health +509838,Health,Health +509837,Health,Health +506968,Health,Health +503919,Health,Health +500579,Health,Health +500578,Health,Health +500576,Health,Health +500574,Health,Health +498280,Health,Health +498275,Health,Health +498265,Health,Health +494610,Health,Health +494608,Health,Health +494607,Health,Health +493002,Health,Health +461674,Health,Health +532976,Environment,Environment +475116,Industry,Industry +533208,Economic Development,Economic Development +532976,Economic Development,Economic Development +472546,Consumer Issues,Consumer Issues +543717,Economic Development,Economic Development +541415,Economic Development,Economic Development +539467,Economic Development,Economic Development +539466,Economic Development,Economic Development +539464,Economic Development,Economic Development +539463,Economic Development,Economic Development +539462,Economic Development,Economic Development +539461,Economic Development,Economic Development +539460,Economic Development,Economic Development +539459,Economic Development,Economic Development +537640,Economic Development,Economic Development +534829,Economic Development,Economic Development +534827,Economic Development,Economic Development +534825,Economic Development,Economic Development +534823,Economic Development,Economic Development +531591,Economic Development,Economic Development +531590,Economic Development,Economic Development +531588,Economic Development,Economic Development +528839,Economic Development,Economic Development +528835,Economic Development,Economic Development +528832,Economic Development,Economic Development +525936,Economic Development,Economic Development +525933,Economic Development,Economic Development +525931,Economic Development,Economic Development +522728,Economic Development,Economic Development +520089,Economic Development,Economic Development +514682,Economic Development,Economic Development +514681,Economic Development,Economic Development +514678,Economic Development,Economic Development +514070,Economic Development,Economic Development +514067,Economic Development,Economic Development +514064,Economic Development,Economic Development +514062,Economic Development,Economic Development +510712,Economic Development,Economic Development +510668,Economic Development,Economic Development +462426,Economic Development,Economic Development +543729,Economic Development,Economic Development +543728,Economic Development,Economic Development +543724,Economic Development,Economic Development +543722,Economic Development,Economic Development +461490,Fisheries,Fisheries +534820,Fisheries,Fisheries +517574,Fisheries,Fisheries +514680,Fisheries,Fisheries +514074,Fisheries,Fisheries +514068,Fisheries,Fisheries +514065,Fisheries,Fisheries +514059,Fisheries,Fisheries +514055,Fisheries,Fisheries +513185,Fisheries,Fisheries +513184,Fisheries,Fisheries +513183,Fisheries,Fisheries +513180,Fisheries,Fisheries +513179,Fisheries,Fisheries +513178,Fisheries,Fisheries +513177,Fisheries,Fisheries +513176,Fisheries,Fisheries +510737,Fisheries,Fisheries +510733,Fisheries,Fisheries +508009,Fisheries,Fisheries +508005,Fisheries,Fisheries +507997,Fisheries,Fisheries +505445,Fisheries,Fisheries +505444,Fisheries,Fisheries +505443,Fisheries,Fisheries +505441,Fisheries,Fisheries +501359,Fisheries,Fisheries +501356,Fisheries,Fisheries +501355,Fisheries,Fisheries +501352,Fisheries,Fisheries +498639,Fisheries,Fisheries +498638,Fisheries,Fisheries +498637,Fisheries,Fisheries +498636,Fisheries,Fisheries +498635,Fisheries,Fisheries +495638,Fisheries,Fisheries +495637,Fisheries,Fisheries +493084,Fisheries,Fisheries +493082,Fisheries,Fisheries +493079,Fisheries,Fisheries +493076,Fisheries,Fisheries +490674,Fisheries,Fisheries +490670,Fisheries,Fisheries +490667,Fisheries,Fisheries +487390,Fisheries,Fisheries +487387,Fisheries,Fisheries +487385,Fisheries,Fisheries +487382,Fisheries,Fisheries +487380,Fisheries,Fisheries +484475,Fisheries,Fisheries +484472,Fisheries,Fisheries +484470,Fisheries,Fisheries +484465,Fisheries,Fisheries +484462,Fisheries,Fisheries +484460,Fisheries,Fisheries +481845,Fisheries,Fisheries +480088,Fisheries,Fisheries +480085,Fisheries,Fisheries +480084,Fisheries,Fisheries +477103,Fisheries,Fisheries +477102,Fisheries,Fisheries +477100,Fisheries,Fisheries +475109,Fisheries,Fisheries +475105,Fisheries,Fisheries +475102,Fisheries,Fisheries +475100,Fisheries,Fisheries +475096,Fisheries,Fisheries +475022,Fisheries,Fisheries +470392,Fisheries,Fisheries +470386,Fisheries,Fisheries +470373,Fisheries,Fisheries +470367,Fisheries,Fisheries +467445,Fisheries,Fisheries +467422,Fisheries,Fisheries +467391,Fisheries,Fisheries +467374,Fisheries,Fisheries +463951,Fisheries,Fisheries +463948,Fisheries,Fisheries +463846,Fisheries,Fisheries +462438,Fisheries,Fisheries +462433,Fisheries,Fisheries +462423,Fisheries,Fisheries +461495,Fisheries,Fisheries +460251,International Trade,International Trade +459967,International Trade,International Trade +509395,International Trade,International Trade +503561,International Trade,International Trade +503559,International Trade,International Trade +485764,International Trade,International Trade +485763,International Trade,International Trade +466324,International Trade,International Trade +466317,International Trade,International Trade +466315,International Trade,International Trade +466315,Small Business,Small Business +460252,Small Business,Small Business +509395,Small Business,Small Business +503561,Small Business,Small Business +503559,Small Business,Small Business +495111,Small Business,Small Business +466324,Small Business,Small Business +483809,Industry,Industry +483809,Economic Development,Economic Development +483809,Small Business,Small Business +494294,Consumer Issues,Consumer Issues +487022,Financial Institutions,Financial Institutions +483809,Financial Institutions,Financial Institutions +497637,Financial Institutions,Financial Institutions +460260,Education,Education +460259,Education,Education +460264,Education,Education +460263,Education,Education +460262,Education,Education +509432,Official Languages,Official Languages +509404,Official Languages,Official Languages +494124,Official Languages,Official Languages +485960,Official Languages,Official Languages +485959,Official Languages,Official Languages +544049,Official Languages,Official Languages +542546,Official Languages,Official Languages +542539,Official Languages,Official Languages +534319,Official Languages,Official Languages +533824,Official Languages,Official Languages +525320,Official Languages,Official Languages +525134,Official Languages,Official Languages +525130,Official Languages,Official Languages +521926,Official Languages,Official Languages +520584,Official Languages,Official Languages +518506,Official Languages,Official Languages +518505,Official Languages,Official Languages +518503,Official Languages,Official Languages +516315,Official Languages,Official Languages +516314,Official Languages,Official Languages +491558,Regional Development,Regional Development +459838,Regional Development,Regional Development +518233,Regional Development,Regional Development +514041,Regional Development,Regional Development +493280,Regional Development,Regional Development +469757,Financial Institutions,Financial Institutions +469756,Financial Institutions,Financial Institutions +533838,Financial Institutions,Financial Institutions +531380,Financial Institutions,Financial Institutions +525027,Financial Institutions,Financial Institutions +519494,Financial Institutions,Financial Institutions +517552,Financial Institutions,Financial Institutions +509968,Financial Institutions,Financial Institutions +509961,Financial Institutions,Financial Institutions +508082,Financial Institutions,Financial Institutions +508072,Financial Institutions,Financial Institutions +495441,Financial Institutions,Financial Institutions +495057,Financial Institutions,Financial Institutions +495051,Financial Institutions,Financial Institutions +495049,Financial Institutions,Financial Institutions +495047,Financial Institutions,Financial Institutions +495044,Financial Institutions,Financial Institutions +495042,Financial Institutions,Financial Institutions +492926,Financial Institutions,Financial Institutions +492924,Financial Institutions,Financial Institutions +492923,Financial Institutions,Financial Institutions +492922,Financial Institutions,Financial Institutions +492921,Financial Institutions,Financial Institutions +490176,Financial Institutions,Financial Institutions +490175,Financial Institutions,Financial Institutions +490174,Financial Institutions,Financial Institutions +490173,Financial Institutions,Financial Institutions +490171,Financial Institutions,Financial Institutions +490170,Financial Institutions,Financial Institutions +490169,Financial Institutions,Financial Institutions +490168,Financial Institutions,Financial Institutions +483824,Financial Institutions,Financial Institutions +483823,Financial Institutions,Financial Institutions +481232,Financial Institutions,Financial Institutions +481231,Financial Institutions,Financial Institutions +481228,Financial Institutions,Financial Institutions +481227,Financial Institutions,Financial Institutions +477476,Financial Institutions,Financial Institutions +476906,Financial Institutions,Financial Institutions +476905,Financial Institutions,Financial Institutions +476904,Financial Institutions,Financial Institutions +475199,Financial Institutions,Financial Institutions +474427,Financial Institutions,Financial Institutions +474425,Financial Institutions,Financial Institutions +472128,Financial Institutions,Financial Institutions +472127,Financial Institutions,Financial Institutions +472126,Financial Institutions,Financial Institutions +472125,Financial Institutions,Financial Institutions +472124,Financial Institutions,Financial Institutions +472108,Financial Institutions,Financial Institutions +471970,Financial Institutions,Financial Institutions +471969,Financial Institutions,Financial Institutions +471968,Financial Institutions,Financial Institutions +471965,Financial Institutions,Financial Institutions +471964,Financial Institutions,Financial Institutions +471963,Financial Institutions,Financial Institutions +471961,Financial Institutions,Financial Institutions +471959,Financial Institutions,Financial Institutions +471958,Financial Institutions,Financial Institutions +471957,Financial Institutions,Financial Institutions +471955,Financial Institutions,Financial Institutions +470746,Financial Institutions,Financial Institutions +470432,Financial Institutions,Financial Institutions +469790,Financial Institutions,Financial Institutions +469788,Financial Institutions,Financial Institutions +469787,Financial Institutions,Financial Institutions +469786,Financial Institutions,Financial Institutions +469785,Financial Institutions,Financial Institutions +469783,Financial Institutions,Financial Institutions +472821,International Trade,International Trade +472820,International Trade,International Trade +477630,International Trade,International Trade +477629,International Trade,International Trade +477628,International Trade,International Trade +484293,Economic Development,Economic Development +484217,Economic Development,Economic Development +490961,Economic Development,Economic Development +484293,Industry,Industry +484217,Industry,Industry +539382,Industry,Industry +524324,Industry,Industry +512394,Industry,Industry +508792,Industry,Industry +502654,Industry,Industry +502064,Industry,Industry +498268,Industry,Industry +495802,Industry,Industry +490961,Industry,Industry +461354,Environment,Environment +461352,Environment,Environment +461351,Environment,Environment +495424,Taxation and Finance,Taxation and Finance +492921,Taxation and Finance,Taxation and Finance +470432,Taxation and Finance,Taxation and Finance +469791,Taxation and Finance,Taxation and Finance +469790,Taxation and Finance,Taxation and Finance +469788,Taxation and Finance,Taxation and Finance +469787,Taxation and Finance,Taxation and Finance +469786,Taxation and Finance,Taxation and Finance +469785,Taxation and Finance,Taxation and Finance +469758,Taxation and Finance,Taxation and Finance +465395,Taxation and Finance,Taxation and Finance +517552,Taxation and Finance,Taxation and Finance +524634,Employment and Training,Employment and Training +523917,Employment and Training,Employment and Training +519120,Employment and Training,Employment and Training +517305,Employment and Training,Employment and Training +516652,Employment and Training,Employment and Training +539548,Employment and Training,Employment and Training +489342,Infrastructure,Infrastructure +489341,Infrastructure,Infrastructure +532691,Infrastructure,Infrastructure +516681,Infrastructure,Infrastructure +460469,Economic Development,Economic Development +460465,Economic Development,Economic Development +472366,Economic Development,Economic Development +472362,Economic Development,Economic Development +471831,Economic Development,Economic Development +471829,Economic Development,Economic Development +471829,Government Procurement,Government Procurement +460465,Government Procurement,Government Procurement +471831,Government Procurement,Government Procurement +461967,Budget,Budget +461966,Budget,Budget +462779,Budget,Budget +462763,Budget,Budget +461973,Budget,Budget +461972,Budget,Budget +461971,Budget,Budget +461970,Budget,Budget +461969,Budget,Budget +461350,Economic Development,Economic Development +461347,Economic Development,Economic Development +496966,Economic Development,Economic Development +465659,Economic Development,Economic Development +465658,Economic Development,Economic Development +465657,Economic Development,Economic Development +465641,Economic Development,Economic Development +465640,Economic Development,Economic Development +461347,Regional Development,Regional Development +461347,Taxation and Finance,Taxation and Finance +461347,Employment and Training,Employment and Training +461347,Energy,Energy +486473,Infrastructure,Infrastructure +485592,Infrastructure,Infrastructure +511873,Infrastructure,Infrastructure +510884,Infrastructure,Infrastructure +510870,Infrastructure,Infrastructure +504524,Infrastructure,Infrastructure +503498,Infrastructure,Infrastructure +503139,Infrastructure,Infrastructure +500114,Infrastructure,Infrastructure +500003,Infrastructure,Infrastructure +500114,Municipalities,Municipalities +496966,Municipalities,Municipalities +485592,Health,Health +476161,Health,Health +510870,Health,Health +465640,Budget,Budget +465639,Budget,Budget +511873,Budget,Budget +510884,Budget,Budget +510870,Budget,Budget +504524,Budget,Budget +503498,Budget,Budget +503139,Budget,Budget +500114,Budget,Budget +500003,Budget,Budget +496966,Budget,Budget +493583,Budget,Budget +486473,Budget,Budget +485592,Budget,Budget +485415,Budget,Budget +481426,Budget,Budget +476161,Budget,Budget +466465,Budget,Budget +465659,Budget,Budget +465658,Budget,Budget +465657,Budget,Budget +461598,Energy,Energy +461592,Energy,Energy +465621,Environment,Environment +465619,Environment,Environment +471545,Environment,Environment +465771,Environment,Environment +465621,Energy,Energy +465619,Energy,Energy +471545,Energy,Energy +465771,Energy,Energy +459973,International Trade,International Trade +463119,Industry,Industry +459990,Industry,Industry +496967,Industry,Industry +491878,Industry,Industry +488540,Industry,Industry +488536,Industry,Industry +486474,Industry,Industry +485940,Industry,Industry +485785,Industry,Industry +478680,Industry,Industry +478491,Industry,Industry +477946,Industry,Industry +474125,Industry,Industry +472116,Industry,Industry +471648,Industry,Industry +471496,Industry,Industry +470578,Industry,Industry +469468,Industry,Industry +469384,Industry,Industry +460397,Labour,Labour +459990,Labour,Labour +461318,Security,Security +460002,Security,Security +543618,Security,Security +543615,Security,Security +541086,Security,Security +537144,Security,Security +537141,Security,Security +533760,Security,Security +533759,Security,Security +531369,Security,Security +531361,Security,Security +531355,Security,Security +528499,Security,Security +528492,Security,Security +528486,Security,Security +528474,Security,Security +528465,Security,Security +521864,Security,Security +521863,Security,Security +521831,Security,Security +521828,Security,Security +521825,Security,Security +519306,Security,Security +519304,Security,Security +519300,Security,Security +517211,Security,Security +517209,Security,Security +517204,Security,Security +517199,Security,Security +517175,Security,Security +515479,Security,Security +514464,Security,Security +512659,Security,Security +510423,Security,Security +510297,Security,Security +510251,Security,Security +510244,Security,Security +507196,Security,Security +507195,Security,Security +507194,Security,Security +507192,Security,Security +504312,Security,Security +504287,Security,Security +501483,Security,Security +501481,Security,Security +501480,Security,Security +501477,Security,Security +501456,Security,Security +501444,Security,Security +501439,Security,Security +501430,Security,Security +498079,Security,Security +498075,Security,Security +494909,Security,Security +494907,Security,Security +494906,Security,Security +492740,Security,Security +492737,Security,Security +492732,Security,Security +492731,Security,Security +492730,Security,Security +492722,Security,Security +489542,Security,Security +489472,Security,Security +489462,Security,Security +489459,Security,Security +470364,Security,Security +493437,Housing,Housing +475803,Housing,Housing +499051,Housing,Housing +465203,Government Procurement,Government Procurement +461869,Government Procurement,Government Procurement +491555,Government Procurement,Government Procurement +475991,Government Procurement,Government Procurement +473720,Security,Security +465203,Security,Security +491555,Security,Security +460167,Education,Education +460166,Education,Education +462886,Consumer Issues,Consumer Issues +461865,Consumer Issues,Consumer Issues +477458,Consumer Issues,Consumer Issues +476275,Consumer Issues,Consumer Issues +468143,Consumer Issues,Consumer Issues +468143,Health,Health +464951,Health,Health +462886,Health,Health +461865,Health,Health +477458,Health,Health +476275,Health,Health +464951,Industry,Industry +462886,Industry,Industry +477458,Industry,Industry +476275,Industry,Industry +464951,Small Business,Small Business +461865,Small Business,Small Business +477458,Small Business,Small Business +476275,Small Business,Small Business +460559,Economic Development,Economic Development +460558,Economic Development,Economic Development +460558,Energy,Energy +460556,Energy,Energy +462977,Energy,Energy +462893,Health,Health +461876,Health,Health +476323,Health,Health +462893,Consumer Issues,Consumer Issues +461876,Consumer Issues,Consumer Issues +476323,Small Business,Small Business +460300,Financial Institutions,Financial Institutions +472435,Financial Institutions,Financial Institutions +505967,Industry,Industry +465853,Privacy and Access to Information,Privacy and Access to Information +465852,Privacy and Access to Information,Privacy and Access to Information +465850,Privacy and Access to Information,Privacy and Access to Information +506133,Privacy and Access to Information,Privacy and Access to Information +505967,Privacy and Access to Information,Privacy and Access to Information +478676,Budget,Budget +478456,Budget,Budget +462978,Economic Development,Economic Development +462815,Health,Health +460347,Budget,Budget +460346,Budget,Budget +538167,Budget,Budget +538162,Budget,Budget +538157,Budget,Budget +538155,Budget,Budget +526653,Budget,Budget +526649,Budget,Budget +526647,Budget,Budget +526643,Budget,Budget +519669,Budget,Budget +519662,Budget,Budget +519656,Budget,Budget +518390,Budget,Budget +518058,Budget,Budget +518044,Budget,Budget +518039,Budget,Budget +515702,Budget,Budget +512568,Budget,Budget +512566,Budget,Budget +510856,Budget,Budget +510855,Budget,Budget +510695,Budget,Budget +510675,Budget,Budget +510661,Budget,Budget +510472,Budget,Budget +510450,Budget,Budget +508624,Budget,Budget +504740,Budget,Budget +499216,Budget,Budget +495072,Budget,Budget +493120,Budget,Budget +493112,Budget,Budget +493107,Budget,Budget +493099,Budget,Budget +493098,Budget,Budget +491327,Budget,Budget +491313,Budget,Budget +491291,Budget,Budget +491283,Budget,Budget +491266,Budget,Budget +491255,Budget,Budget +487376,Budget,Budget +487360,Budget,Budget +487358,Budget,Budget +487351,Budget,Budget +487342,Budget,Budget +487338,Budget,Budget +487332,Budget,Budget +483914,Budget,Budget +476092,Budget,Budget +482802,Mining,Mining +479639,Mining,Mining +538716,Mining,Mining +536031,Mining,Mining +536030,Mining,Mining +536029,Mining,Mining +518749,Mining,Mining +518403,Mining,Mining +518269,Mining,Mining +516528,Mining,Mining +516384,Mining,Mining +488680,Mining,Mining +516528,Industry,Industry +479639,Industry,Industry +536031,Industry,Industry +518403,Industry,Industry +518269,Environment,Environment +482802,Environment,Environment +461756,Health,Health +531885,Health,Health +490724,Health,Health +490722,Health,Health +490720,Health,Health +490717,Health,Health +487687,Health,Health +487686,Health,Health +479071,Health,Health +467068,Health,Health +467066,Health,Health +467064,Health,Health +461759,Health,Health +461757,Health,Health +509360,Economic Development,Economic Development +507369,Economic Development,Economic Development +506494,Industry,Industry +507369,Infrastructure,Infrastructure +507369,Small Business,Small Business +484698,Economic Development,Economic Development +484697,Economic Development,Economic Development +540232,Economic Development,Economic Development +491703,Economic Development,Economic Development +487734,Economic Development,Economic Development +487733,Economic Development,Economic Development +499677,Industry,Industry +496206,Industry,Industry +491703,Industry,Industry +487734,Industry,Industry +487733,Industry,Industry +487732,Industry,Industry +484698,Industry,Industry +484697,Industry,Industry +524987,Industry,Industry +524985,Industry,Industry +512930,Industry,Industry +509039,Industry,Industry +502851,Industry,Industry +514237,International Trade,International Trade +477664,International Trade,International Trade +464704,Budget,Budget +462728,Budget,Budget +467181,Budget,Budget +464704,International Development,International Development +462728,International Development,International Development +467181,International Development,International Development +467170,International Relations,International Relations +496371,Environment,Environment +543007,Environment,Environment +543005,Environment,Environment +533505,Environment,Environment +524806,Environment,Environment +522183,Environment,Environment +503490,Environment,Environment +503487,Environment,Environment +503486,Environment,Environment +500643,Environment,Environment +460458,Environment,Environment +471196,Economic Development,Economic Development +471194,Economic Development,Economic Development +529159,Economic Development,Economic Development +464857,Taxation and Finance,Taxation and Finance +464855,Taxation and Finance,Taxation and Finance +537553,Taxation and Finance,Taxation and Finance +460543,International Relations,International Relations +513038,International Relations,International Relations +474397,International Relations,International Relations +463731,International Relations,International Relations +463730,International Relations,International Relations +461234,International Relations,International Relations +461230,International Relations,International Relations +461229,International Relations,International Relations +462442,International Trade,International Trade +460588,International Trade,International Trade +495609,International Trade,International Trade +461724,Economic Development,Economic Development +461672,Economic Development,Economic Development +461724,Taxation and Finance,Taxation and Finance +461672,Taxation and Finance,Taxation and Finance +512160,Consumer Issues,Consumer Issues +511856,Consumer Issues,Consumer Issues +480902,Consumer Issues,Consumer Issues +474158,Consumer Issues,Consumer Issues +540389,Consumer Issues,Consumer Issues +476157,Financial Institutions,Financial Institutions +540389,Financial Institutions,Financial Institutions +524632,Financial Institutions,Financial Institutions +512160,Financial Institutions,Financial Institutions +511856,Financial Institutions,Financial Institutions +480902,Financial Institutions,Financial Institutions +476157,Industry,Industry +474158,Industry,Industry +524632,Industry,Industry +480902,Industry,Industry +466167,Infrastructure,Infrastructure +464257,Infrastructure,Infrastructure +478607,Infrastructure,Infrastructure +464257,Environment,Environment +464254,Environment,Environment +464257,Energy,Energy +464254,Energy,Energy +475366,Energy,Energy +462350,Government Procurement,Government Procurement +470635,Agriculture,Agriculture +470635,Taxation and Finance,Taxation and Finance +461241,Climate,Climate +460851,Climate,Climate +461635,Climate,Climate +461241,Energy,Energy +460851,Energy,Energy +461635,Energy,Energy +465796,International Relations,International Relations +465795,International Relations,International Relations +533245,International Relations,International Relations +481533,Climate,Climate +481531,Climate,Climate +489185,Climate,Climate +466279,Fisheries,Fisheries +466278,Fisheries,Fisheries +480386,Fisheries,Fisheries +480385,Fisheries,Fisheries +525386,Transportation,Transportation +524530,Transportation,Transportation +485718,Transportation,Transportation +485716,Transportation,Transportation +485696,Transportation,Transportation +485678,Transportation,Transportation +466580,Transportation,Transportation +465737,Transportation,Transportation +464151,Transportation,Transportation +530060,Transportation,Transportation +460325,Climate,Climate +461502,Climate,Climate +461502,Economic Development,Economic Development +461502,Energy,Energy +461502,Environment,Environment +461502,Forestry,Forestry +461502,Industry,Industry +461502,Transportation,Transportation +460346,Climate,Climate +460347,Climate,Climate +465067,Climate,Climate +463068,Transportation,Transportation +463012,Agriculture,Agriculture +467060,Health,Health +461755,Health,Health +461760,Health,Health +461758,Health,Health +520645,Economic Development,Economic Development +509360,Industry,Industry +509360,Infrastructure,Infrastructure +520645,International Trade,International Trade +509360,Small Business,Small Business +504965,Agriculture,Agriculture +504965,Environment,Environment +540232,Climate,Climate +487732,Economic Development,Economic Development +502845,Industry,Industry +514238,International Trade,International Trade +540232,Research and Development,Research and Development +467170,Budget,Budget +467170,International Development,International Development +467181,International Relations,International Relations +497452,Environment,Environment +463647,Environment,Environment +473710,Economic Development,Economic Development +460496,Economic Development,Economic Development +507548,Taxation and Finance,Taxation and Finance +470481,International Development,International Development +460544,International Relations,International Relations +492972,International Trade,International Trade +461726,Economic Development,Economic Development +461726,Taxation and Finance,Taxation and Finance +524632,Consumer Issues,Consumer Issues +477797,Financial Institutions,Financial Institutions +477797,Industry,Industry +460708,Regional Development,Regional Development +460711,Sports,Sports +461926,Environment,Environment +466167,Regional Development,Regional Development +466167,Economic Development,Economic Development +475377,Infrastructure,Infrastructure +466167,Municipalities,Municipalities +466167,Environment,Environment +466167,Education,Education +466167,Tourism,Tourism +466167,Energy,Energy +461864,Consumer Issues,Consumer Issues +461864,Environment,Environment +462356,Government Procurement,Government Procurement +486344,Agriculture,Agriculture +486344,Environment,Environment +486344,Infrastructure,Infrastructure +474197,Taxation and Finance,Taxation and Finance +461242,Climate,Climate +461242,Energy,Energy +465797,International Relations,International Relations +485441,Climate,Climate +466280,Fisheries,Fisheries +526148,Transportation,Transportation +461125,Transportation,Transportation +471741,Infrastructure,Infrastructure +460856,Economic Development,Economic Development +475725,Taxation and Finance,Taxation and Finance +476776,Transportation,Transportation +460861,Immigration,Immigration +460861,Sports,Sports +461809,Climate,Climate +461810,Economic Development,Economic Development +480436,Energy,Energy +461810,Industry,Industry +461806,Infrastructure,Infrastructure +461809,International Relations,International Relations +461807,Regional Development,Regional Development +461808,Research and Development,Research and Development +463695,Transportation,Transportation +462101,Financial Institutions,Financial Institutions +499056,Energy,Energy +464330,Environment,Environment +521426,Employment and Training,Employment and Training +506681,Education,Education +492868,Transportation,Transportation +461898,Climate,Climate +461898,Economic Development,Economic Development +468753,Energy,Energy +461898,Environment,Environment +461898,Forestry,Forestry +461898,Industry,Industry +461898,Infrastructure,Infrastructure +461898,International Trade,International Trade +461898,Regional Development,Regional Development +462729,Climate,Climate +462729,Mining,Mining +462729,Environment,Environment +464732,Energy,Energy +464734,Environment,Environment +464747,Energy,Energy +464747,Environment,Environment +499808,Economic Development,Economic Development +542204,Climate,Climate +542204,Energy,Energy +542204,Environment,Environment +461019,Education,Education +465691,Defence,Defence +490261,Economic Development,Economic Development +490262,Infrastructure,Infrastructure +476421,Forestry,Forestry +472464,Budget,Budget +468294,Taxation and Finance,Taxation and Finance +488317,Transportation,Transportation +463794,Agriculture,Agriculture +463794,International Trade,International Trade +468646,Environment,Environment +468646,Agriculture,Agriculture +476006,Budget,Budget +474062,Government Procurement,Government Procurement +499779,Energy,Energy +463599,Environment,Environment +472375,Agriculture,Agriculture +463268,Internal Trade,Internal Trade +523720,Financial Institutions,Financial Institutions +483266,Industry,Industry +532048,Economic Development,Economic Development +513642,Research and Development,Research and Development +519231,Small Business,Small Business +496443,Agriculture,Agriculture +496443,Consumer Issues,Consumer Issues +496445,Economic Development,Economic Development +496446,Environment,Environment +496443,Health,Health +496443,International Trade,International Trade +506396,Financial Institutions,Financial Institutions +506396,Small Business,Small Business +506396,Consumer Issues,Consumer Issues +461915,Energy,Energy +461915,Environment,Environment +462088,Energy,Energy +462088,Environment,Environment +462088,Mining,Mining +484787,Education,Education +484787,Environment,Environment +497018,Taxation and Finance,Taxation and Finance +469683,Climate,Climate +469650,Economic Development,Economic Development +469678,Employment and Training,Employment and Training +470152,Energy,Energy +507428,Industry,Industry +461206,International Trade,International Trade +480724,Transportation,Transportation +480724,Municipalities,Municipalities +480773,Infrastructure,Infrastructure +487050,Climate,Climate +463234,Economic Development,Economic Development +487050,Energy,Energy +487052,Infrastructure,Infrastructure +474412,Research and Development,Research and Development +486808,Climate,Climate +486808,Economic Development,Economic Development +486808,Energy,Energy +461264,Climate,Climate +462024,Economic Development,Economic Development +462951,Environment,Environment +463370,Employment and Training,Employment and Training +463370,Consumer Issues,Consumer Issues +463370,Taxation and Finance,Taxation and Finance +465758,Financial Institutions,Financial Institutions +463370,Labour,Labour +465758,Climate,Climate +463370,Budget,Budget +463538,Small Business,Small Business +465390,Health,Health +462282,Regional Development,Regional Development +466337,Budget,Budget +479019,Municipalities,Municipalities +479019,Housing,Housing +461331,Education,Education +482192,Official Languages,Official Languages +483703,Taxation and Finance,Taxation and Finance +463004,Transportation,Transportation +462043,Defence,Defence +462043,International Development,International Development +462043,International Trade,International Trade +478669,Regional Development,Regional Development +531831,Housing,Housing +461559,Taxation and Finance,Taxation and Finance +461567,Labour,Labour +469542,Consumer Issues,Consumer Issues +471294,Economic Development,Economic Development +469542,Infrastructure,Infrastructure +467815,Transportation,Transportation +461672,International Trade,International Trade +487931,Industry,Industry +487931,Infrastructure,Infrastructure +461724,International Trade,International Trade +461726,International Trade,International Trade +516065,Mining,Mining +461840,Industry,Industry +461864,Climate,Climate +469069,Transportation,Transportation +469069,Economic Development,Economic Development +469069,Consumer Issues,Consumer Issues +468476,Consumer Issues,Consumer Issues +469637,Economic Development,Economic Development +476648,Infrastructure,Infrastructure +471406,Transportation,Transportation +461949,Elections,Elections +461950,Elections,Elections +465114,Immigration,Immigration +478770,Infrastructure,Infrastructure +502706,Official Languages,Official Languages +497441,Climate,Climate +497441,Economic Development,Economic Development +469027,Energy,Energy +471475,Industry,Industry +471475,Infrastructure,Infrastructure +469039,International Relations,International Relations +469039,Regional Development,Regional Development +469036,Research and Development,Research and Development +466337,Regional Development,Regional Development +461960,Elections,Elections +461960,Official Languages,Official Languages +469527,Economic Development,Economic Development +463483,Environment,Environment +517449,Industry,Industry +470972,International Trade,International Trade +485498,Mining,Mining +506839,Research and Development,Research and Development +536203,Taxation and Finance,Taxation and Finance +472183,Agriculture,Agriculture +469082,Economic Development,Economic Development +530059,Transportation,Transportation +527316,Transportation,Transportation +527057,Transportation,Transportation +526813,Transportation,Transportation +526782,Transportation,Transportation +526421,Transportation,Transportation +471739,Infrastructure,Infrastructure +466307,Infrastructure,Infrastructure +462256,Infrastructure,Infrastructure +473801,Taxation and Finance,Taxation and Finance +462096,Taxation and Finance,Taxation and Finance +460859,Taxation and Finance,Taxation and Finance +475738,Taxation and Finance,Taxation and Finance +461807,Climate,Climate +461806,Climate,Climate +523540,Climate,Climate +496506,Climate,Climate +493887,Climate,Climate +465634,Climate,Climate +465633,Climate,Climate +465632,Climate,Climate +465631,Climate,Climate +465630,Climate,Climate +461811,Climate,Climate +461810,Climate,Climate +461807,Economic Development,Economic Development +461806,Economic Development,Economic Development +478611,Economic Development,Economic Development +469083,Economic Development,Economic Development +468711,Economic Development,Economic Development +465634,Economic Development,Economic Development +465633,Economic Development,Economic Development +465632,Economic Development,Economic Development +463201,Economic Development,Economic Development +463198,Economic Development,Economic Development +469083,Energy,Energy +468711,Energy,Energy +465634,Energy,Energy +465633,Energy,Energy +465632,Energy,Energy +465631,Energy,Energy +465630,Energy,Energy +463201,Energy,Energy +463200,Energy,Energy +463199,Energy,Energy +463198,Energy,Energy +462667,Energy,Energy +461811,Energy,Energy +461810,Energy,Energy +461809,Energy,Energy +461808,Energy,Energy +461807,Energy,Energy +461806,Energy,Energy +461013,Energy,Energy +524716,Energy,Energy +523540,Energy,Energy +496506,Energy,Energy +486086,Energy,Energy +480437,Energy,Energy +461807,Industry,Industry +486086,Industry,Industry +480437,Industry,Industry +465634,Industry,Industry +461013,Infrastructure,Infrastructure +496506,Infrastructure,Infrastructure +461808,Infrastructure,Infrastructure +461807,Infrastructure,Infrastructure +461807,International Relations,International Relations +461806,International Relations,International Relations +465634,International Relations,International Relations +463200,International Relations,International Relations +461806,Regional Development,Regional Development +480437,Regional Development,Regional Development +468711,Regional Development,Regional Development +465634,Regional Development,Regional Development +465633,Regional Development,Regional Development +461807,Research and Development,Research and Development +461806,Research and Development,Research and Development +523540,Research and Development,Research and Development +496506,Research and Development,Research and Development +493886,Research and Development,Research and Development +486086,Research and Development,Research and Development +480436,Research and Development,Research and Development +469083,Research and Development,Research and Development +468711,Research and Development,Research and Development +465634,Research and Development,Research and Development +465633,Research and Development,Research and Development +465632,Research and Development,Research and Development +465631,Research and Development,Research and Development +465630,Research and Development,Research and Development +462667,Research and Development,Research and Development +461811,Research and Development,Research and Development +461810,Research and Development,Research and Development +461809,Research and Development,Research and Development +462100,Financial Institutions,Financial Institutions +462099,Financial Institutions,Financial Institutions +480787,Financial Institutions,Financial Institutions +462113,Financial Institutions,Financial Institutions +495722,Energy,Energy +460876,Environment,Environment +506681,Employment and Training,Employment and Training +486283,Transportation,Transportation +475482,Transportation,Transportation +506421,Transportation,Transportation +499203,Transportation,Transportation +468752,Energy,Energy +461898,Energy,Energy +468753,Environment,Environment +468752,Environment,Environment +462727,Climate,Climate +517134,Climate,Climate +462727,Mining,Mining +462727,Environment,Environment +517134,Environment,Environment +464726,Energy,Energy +499498,Energy,Energy +464736,Energy,Energy +464734,Energy,Energy +464732,Environment,Environment +464726,Environment,Environment +499498,Environment,Environment +464736,Environment,Environment +464745,Energy,Energy +464742,Energy,Energy +499524,Energy,Energy +464753,Energy,Energy +464751,Energy,Energy +464749,Energy,Energy +464745,Environment,Environment +464742,Environment,Environment +499524,Environment,Environment +464753,Environment,Environment +464751,Environment,Environment +464749,Environment,Environment +531068,Climate,Climate +523783,Climate,Climate +502556,Climate,Climate +491661,Climate,Climate +491659,Climate,Climate +491656,Climate,Climate +544606,Climate,Climate +491656,Environment,Environment +471701,Environment,Environment +544606,Environment,Environment +461018,Education,Education +461017,Education,Education +465691,Economic Development,Economic Development +525887,Economic Development,Economic Development +490365,Economic Development,Economic Development +490262,Economic Development,Economic Development +490261,Infrastructure,Infrastructure +465691,Infrastructure,Infrastructure +490365,Infrastructure,Infrastructure +476420,Forestry,Forestry +476418,Forestry,Forestry +476422,Forestry,Forestry +470900,Budget,Budget +470890,Budget,Budget +468306,Budget,Budget +468302,Budget,Budget +468299,Budget,Budget +468294,Budget,Budget +468287,Budget,Budget +532167,Budget,Budget +532164,Budget,Budget +532163,Budget,Budget +513346,Budget,Budget +508528,Budget,Budget +506025,Budget,Budget +506024,Budget,Budget +502191,Budget,Budget +488315,Budget,Budget +475408,Budget,Budget +475376,Budget,Budget +475363,Budget,Budget +473661,Budget,Budget +473654,Budget,Budget +472517,Budget,Budget +472513,Budget,Budget +472511,Budget,Budget +472476,Budget,Budget +472470,Budget,Budget +472469,Budget,Budget +468287,Taxation and Finance,Taxation and Finance +464051,Taxation and Finance,Taxation and Finance +513346,Taxation and Finance,Taxation and Finance +510548,Taxation and Finance,Taxation and Finance +496084,Taxation and Finance,Taxation and Finance +475376,Taxation and Finance,Taxation and Finance +475363,Taxation and Finance,Taxation and Finance +472475,Taxation and Finance,Taxation and Finance +472469,Taxation and Finance,Taxation and Finance +472464,Taxation and Finance,Taxation and Finance +470900,Taxation and Finance,Taxation and Finance +470890,Taxation and Finance,Taxation and Finance +468306,Taxation and Finance,Taxation and Finance +488315,Transportation,Transportation +488311,Transportation,Transportation +480455,Transportation,Transportation +478151,Transportation,Transportation +478015,Transportation,Transportation +477995,Transportation,Transportation +475408,Transportation,Transportation +475400,Transportation,Transportation +475392,Transportation,Transportation +475376,Transportation,Transportation +473661,Transportation,Transportation +473654,Transportation,Transportation +472517,Transportation,Transportation +472513,Transportation,Transportation +472511,Transportation,Transportation +472476,Transportation,Transportation +472475,Transportation,Transportation +472470,Transportation,Transportation +472469,Transportation,Transportation +472464,Transportation,Transportation +470900,Transportation,Transportation +470890,Transportation,Transportation +468306,Transportation,Transportation +468302,Transportation,Transportation +468299,Transportation,Transportation +468294,Transportation,Transportation +468287,Transportation,Transportation +464051,Transportation,Transportation +543954,Transportation,Transportation +543951,Transportation,Transportation +532167,Transportation,Transportation +532164,Transportation,Transportation +532163,Transportation,Transportation +532161,Transportation,Transportation +532159,Transportation,Transportation +529163,Transportation,Transportation +529160,Transportation,Transportation +529151,Transportation,Transportation +529150,Transportation,Transportation +525436,Transportation,Transportation +522231,Transportation,Transportation +518902,Transportation,Transportation +518901,Transportation,Transportation +513350,Transportation,Transportation +513346,Transportation,Transportation +510548,Transportation,Transportation +508528,Transportation,Transportation +506025,Transportation,Transportation +506024,Transportation,Transportation +496084,Transportation,Transportation +463793,Agriculture,Agriculture +463793,International Trade,International Trade +468644,Environment,Environment +508968,Environment,Environment +468647,Environment,Environment +468644,Agriculture,Agriculture +464888,Agriculture,Agriculture +535936,Agriculture,Agriculture +531903,Agriculture,Agriculture +531902,Agriculture,Agriculture +531900,Agriculture,Agriculture +531899,Agriculture,Agriculture +508968,Agriculture,Agriculture +491507,Agriculture,Agriculture +487531,Agriculture,Agriculture +487525,Agriculture,Agriculture +487520,Agriculture,Agriculture +477650,Agriculture,Agriculture +477649,Agriculture,Agriculture +477648,Agriculture,Agriculture +477647,Agriculture,Agriculture +476009,Agriculture,Agriculture +476007,Agriculture,Agriculture +476006,Agriculture,Agriculture +471219,Agriculture,Agriculture +471218,Agriculture,Agriculture +468647,Agriculture,Agriculture +471219,Budget,Budget +471218,Budget,Budget +487531,Budget,Budget +487525,Budget,Budget +487520,Budget,Budget +477650,Budget,Budget +477649,Budget,Budget +477648,Budget,Budget +477647,Budget,Budget +476009,Budget,Budget +476007,Budget,Budget +462991,Government Procurement,Government Procurement +474145,Energy,Energy +463598,Environment,Environment +463597,Environment,Environment +463603,Environment,Environment +523719,Financial Institutions,Financial Institutions +472375,Industry,Industry +532046,Economic Development,Economic Development +526102,Economic Development,Economic Development +532051,Economic Development,Economic Development +532050,Economic Development,Economic Development +512324,Research and Development,Research and Development +512323,Research and Development,Research and Development +535007,Research and Development,Research and Development +532051,Research and Development,Research and Development +532050,Research and Development,Research and Development +532049,Research and Development,Research and Development +532048,Research and Development,Research and Development +532047,Research and Development,Research and Development +532046,Research and Development,Research and Development +532045,Research and Development,Research and Development +532043,Research and Development,Research and Development +532042,Research and Development,Research and Development +532041,Research and Development,Research and Development +529539,Research and Development,Research and Development +526107,Research and Development,Research and Development +526105,Research and Development,Research and Development +526102,Research and Development,Research and Development +526098,Research and Development,Research and Development +519231,Research and Development,Research and Development +513643,Research and Development,Research and Development +512324,Small Business,Small Business +512323,Small Business,Small Business +532051,Small Business,Small Business +532050,Small Business,Small Business +532049,Small Business,Small Business +532048,Small Business,Small Business +532047,Small Business,Small Business +532046,Small Business,Small Business +532045,Small Business,Small Business +532043,Small Business,Small Business +532042,Small Business,Small Business +532041,Small Business,Small Business +529539,Small Business,Small Business +526107,Small Business,Small Business +526105,Small Business,Small Business +526102,Small Business,Small Business +496442,Agriculture,Agriculture +464852,Agriculture,Agriculture +523464,Agriculture,Agriculture +523463,Agriculture,Agriculture +523462,Agriculture,Agriculture +523461,Agriculture,Agriculture +496446,Agriculture,Agriculture +496445,Agriculture,Agriculture +496442,Consumer Issues,Consumer Issues +464852,Consumer Issues,Consumer Issues +523464,Consumer Issues,Consumer Issues +523463,Consumer Issues,Consumer Issues +523462,Consumer Issues,Consumer Issues +523461,Consumer Issues,Consumer Issues +496446,Consumer Issues,Consumer Issues +496445,Consumer Issues,Consumer Issues +496443,Economic Development,Economic Development +496442,Economic Development,Economic Development +464852,Economic Development,Economic Development +523462,Economic Development,Economic Development +496446,Economic Development,Economic Development +496445,Environment,Environment +496443,Environment,Environment +496442,Environment,Environment +464852,Environment,Environment +523464,Environment,Environment +523463,Environment,Environment +523462,Environment,Environment +523461,Environment,Environment +496442,Health,Health +464852,Health,Health +523464,Health,Health +523463,Health,Health +523462,Health,Health +523461,Health,Health +496446,Health,Health +496445,Health,Health +496442,International Trade,International Trade +464852,International Trade,International Trade +523464,International Trade,International Trade +523463,International Trade,International Trade +523462,International Trade,International Trade +523461,International Trade,International Trade +496446,International Trade,International Trade +496445,International Trade,International Trade +506394,Financial Institutions,Financial Institutions +506394,Small Business,Small Business +506394,Consumer Issues,Consumer Issues +461178,Environment,Environment +461177,Environment,Environment +483108,Education,Education +483107,Education,Education +494541,Education,Education +494332,Education,Education +487247,Education,Education +484789,Education,Education +483108,Environment,Environment +483107,Environment,Environment +487247,Environment,Environment +484789,Environment,Environment +496692,Taxation and Finance,Taxation and Finance +492540,Taxation and Finance,Taxation and Finance +461283,Taxation and Finance,Taxation and Finance +535019,Taxation and Finance,Taxation and Finance +535018,Taxation and Finance,Taxation and Finance +535017,Taxation and Finance,Taxation and Finance +535016,Taxation and Finance,Taxation and Finance +535015,Taxation and Finance,Taxation and Finance +535013,Taxation and Finance,Taxation and Finance +527002,Taxation and Finance,Taxation and Finance +524148,Taxation and Finance,Taxation and Finance +524147,Taxation and Finance,Taxation and Finance +518101,Taxation and Finance,Taxation and Finance +511602,Taxation and Finance,Taxation and Finance +502065,Taxation and Finance,Taxation and Finance +497889,Taxation and Finance,Taxation and Finance +469654,Climate,Climate +469652,Climate,Climate +501304,Climate,Climate +501303,Climate,Climate +488434,Climate,Climate +488429,Climate,Climate +488423,Climate,Climate +488414,Climate,Climate +471306,Climate,Climate +471305,Climate,Climate +471304,Climate,Climate +471303,Climate,Climate +462718,Economic Development,Economic Development +471306,Economic Development,Economic Development +471305,Economic Development,Economic Development +471304,Economic Development,Economic Development +471303,Economic Development,Economic Development +469683,Economic Development,Economic Development +469678,Economic Development,Economic Development +469654,Economic Development,Economic Development +469653,Economic Development,Economic Development +469652,Economic Development,Economic Development +469651,Economic Development,Economic Development +463713,Employment and Training,Employment and Training +462718,Employment and Training,Employment and Training +469683,Employment and Training,Employment and Training +469652,Energy,Energy +469651,Energy,Energy +501299,Energy,Energy +493966,Energy,Energy +488438,Energy,Energy +488437,Energy,Energy +488436,Energy,Energy +488435,Energy,Energy +488434,Energy,Energy +488433,Energy,Energy +488429,Energy,Energy +488423,Energy,Energy +488414,Energy,Energy +477524,Energy,Energy +477521,Energy,Energy +477519,Energy,Energy +477094,Energy,Energy +477088,Energy,Energy +477069,Energy,Energy +474634,Energy,Energy +474632,Energy,Energy +474630,Energy,Energy +474628,Energy,Energy +474627,Energy,Energy +474626,Energy,Energy +474118,Energy,Energy +474117,Energy,Energy +474116,Energy,Energy +474115,Energy,Energy +474114,Energy,Energy +474112,Energy,Energy +471306,Energy,Energy +471305,Energy,Energy +471304,Energy,Energy +471303,Energy,Energy +507415,Industry,Industry +507404,Industry,Industry +478502,Transportation,Transportation +461964,Transportation,Transportation +480773,Transportation,Transportation +478502,Municipalities,Municipalities +461964,Municipalities,Municipalities +480773,Municipalities,Municipalities +480724,Infrastructure,Infrastructure +478502,Infrastructure,Infrastructure +487048,Climate,Climate +463234,Climate,Climate +508610,Climate,Climate +487052,Climate,Climate +487048,Energy,Energy +485150,Energy,Energy +463234,Energy,Energy +487052,Energy,Energy +487050,Infrastructure,Infrastructure +487048,Infrastructure,Infrastructure +463234,Infrastructure,Infrastructure +468554,Research and Development,Research and Development +486798,Economic Development,Economic Development +462951,Taxation and Finance,Taxation and Finance +462024,Taxation and Finance,Taxation and Finance +465758,Taxation and Finance,Taxation and Finance +463538,Taxation and Finance,Taxation and Finance +463538,Financial Institutions,Financial Institutions +462024,Financial Institutions,Financial Institutions +462951,Budget,Budget +462024,Budget,Budget +463370,Small Business,Small Business +462024,Small Business,Small Business +465758,Small Business,Small Business +478399,Municipalities,Municipalities +478399,Housing,Housing +461330,Education,Education +461329,Education,Education +480799,Official Languages,Official Languages +474121,Official Languages,Official Languages +542545,Official Languages,Official Languages +542544,Official Languages,Official Languages +540713,Official Languages,Official Languages +540712,Official Languages,Official Languages +533826,Official Languages,Official Languages +525140,Official Languages,Official Languages +525138,Official Languages,Official Languages +520612,Official Languages,Official Languages +518510,Official Languages,Official Languages +516312,Official Languages,Official Languages +516311,Official Languages,Official Languages +494125,Official Languages,Official Languages +485957,Official Languages,Official Languages +485956,Official Languages,Official Languages +482195,Official Languages,Official Languages +483700,Taxation and Finance,Taxation and Finance +483699,Taxation and Finance,Taxation and Finance +463847,Taxation and Finance,Taxation and Finance +461662,Taxation and Finance,Taxation and Finance +469068,Consumer Issues,Consumer Issues +467815,Consumer Issues,Consumer Issues +465289,Consumer Issues,Consumer Issues +465243,Consumer Issues,Consumer Issues +488486,Consumer Issues,Consumer Issues +488426,Consumer Issues,Consumer Issues +485687,Consumer Issues,Consumer Issues +481895,Consumer Issues,Consumer Issues +476461,Consumer Issues,Consumer Issues +476360,Consumer Issues,Consumer Issues +476352,Consumer Issues,Consumer Issues +476351,Consumer Issues,Consumer Issues +476299,Consumer Issues,Consumer Issues +474433,Consumer Issues,Consumer Issues +474413,Consumer Issues,Consumer Issues +474394,Consumer Issues,Consumer Issues +474365,Consumer Issues,Consumer Issues +473990,Consumer Issues,Consumer Issues +472374,Consumer Issues,Consumer Issues +472373,Consumer Issues,Consumer Issues +471951,Consumer Issues,Consumer Issues +471949,Consumer Issues,Consumer Issues +471945,Consumer Issues,Consumer Issues +471692,Consumer Issues,Consumer Issues +471390,Consumer Issues,Consumer Issues +471294,Consumer Issues,Consumer Issues +469767,Consumer Issues,Consumer Issues +469639,Consumer Issues,Consumer Issues +469638,Consumer Issues,Consumer Issues +469615,Consumer Issues,Consumer Issues +469767,Economic Development,Economic Development +469639,Economic Development,Economic Development +469638,Economic Development,Economic Development +469615,Economic Development,Economic Development +469542,Economic Development,Economic Development +469068,Economic Development,Economic Development +467815,Economic Development,Economic Development +488486,Economic Development,Economic Development +488426,Economic Development,Economic Development +485687,Economic Development,Economic Development +481895,Economic Development,Economic Development +476461,Economic Development,Economic Development +476360,Economic Development,Economic Development +476352,Economic Development,Economic Development +476351,Economic Development,Economic Development +476299,Economic Development,Economic Development +474433,Economic Development,Economic Development +474413,Economic Development,Economic Development +474394,Economic Development,Economic Development +474365,Economic Development,Economic Development +473990,Economic Development,Economic Development +472374,Economic Development,Economic Development +472373,Economic Development,Economic Development +471951,Economic Development,Economic Development +471949,Economic Development,Economic Development +471945,Economic Development,Economic Development +471692,Economic Development,Economic Development +467815,Infrastructure,Infrastructure +465289,Transportation,Transportation +465243,Transportation,Transportation +488486,Transportation,Transportation +488426,Transportation,Transportation +485687,Transportation,Transportation +481895,Transportation,Transportation +476360,Transportation,Transportation +476352,Transportation,Transportation +476351,Transportation,Transportation +476299,Transportation,Transportation +474433,Transportation,Transportation +474413,Transportation,Transportation +474394,Transportation,Transportation +474365,Transportation,Transportation +473990,Transportation,Transportation +472374,Transportation,Transportation +472373,Transportation,Transportation +471951,Transportation,Transportation +471949,Transportation,Transportation +471945,Transportation,Transportation +471692,Transportation,Transportation +471390,Transportation,Transportation +471294,Transportation,Transportation +469767,Transportation,Transportation +469639,Transportation,Transportation +469638,Transportation,Transportation +469615,Transportation,Transportation +469542,Transportation,Transportation +469068,Transportation,Transportation +461746,Mining,Mining +542115,Mining,Mining +469062,Transportation,Transportation +462984,Transportation,Transportation +477849,Transportation,Transportation +476481,Transportation,Transportation +476350,Transportation,Transportation +476298,Transportation,Transportation +474358,Transportation,Transportation +474004,Transportation,Transportation +472216,Transportation,Transportation +471950,Transportation,Transportation +471315,Transportation,Transportation +469062,Economic Development,Economic Development +462984,Economic Development,Economic Development +477849,Economic Development,Economic Development +476481,Economic Development,Economic Development +476350,Economic Development,Economic Development +476298,Economic Development,Economic Development +474358,Economic Development,Economic Development +474004,Economic Development,Economic Development +472216,Economic Development,Economic Development +471950,Economic Development,Economic Development +471315,Economic Development,Economic Development +469062,Consumer Issues,Consumer Issues +462984,Consumer Issues,Consumer Issues +477849,Consumer Issues,Consumer Issues +476481,Consumer Issues,Consumer Issues +476350,Consumer Issues,Consumer Issues +476298,Consumer Issues,Consumer Issues +474358,Consumer Issues,Consumer Issues +474004,Consumer Issues,Consumer Issues +472216,Consumer Issues,Consumer Issues +471950,Consumer Issues,Consumer Issues +465291,Consumer Issues,Consumer Issues +465253,Consumer Issues,Consumer Issues +488428,Consumer Issues,Consumer Issues +483478,Consumer Issues,Consumer Issues +481894,Consumer Issues,Consumer Issues +478434,Consumer Issues,Consumer Issues +477605,Consumer Issues,Consumer Issues +477492,Consumer Issues,Consumer Issues +476648,Consumer Issues,Consumer Issues +476645,Consumer Issues,Consumer Issues +476565,Consumer Issues,Consumer Issues +476564,Consumer Issues,Consumer Issues +476359,Consumer Issues,Consumer Issues +476349,Consumer Issues,Consumer Issues +476348,Consumer Issues,Consumer Issues +476303,Consumer Issues,Consumer Issues +474435,Consumer Issues,Consumer Issues +474393,Consumer Issues,Consumer Issues +473993,Consumer Issues,Consumer Issues +472415,Consumer Issues,Consumer Issues +472221,Consumer Issues,Consumer Issues +472028,Consumer Issues,Consumer Issues +472027,Consumer Issues,Consumer Issues +472026,Consumer Issues,Consumer Issues +471406,Consumer Issues,Consumer Issues +471295,Consumer Issues,Consumer Issues +469782,Consumer Issues,Consumer Issues +469643,Consumer Issues,Consumer Issues +469640,Consumer Issues,Consumer Issues +469637,Consumer Issues,Consumer Issues +469073,Consumer Issues,Consumer Issues +468750,Consumer Issues,Consumer Issues +469073,Economic Development,Economic Development +468750,Economic Development,Economic Development +488428,Economic Development,Economic Development +483478,Economic Development,Economic Development +483213,Economic Development,Economic Development +481894,Economic Development,Economic Development +478434,Economic Development,Economic Development +477605,Economic Development,Economic Development +477492,Economic Development,Economic Development +476648,Economic Development,Economic Development +476645,Economic Development,Economic Development +476565,Economic Development,Economic Development +476564,Economic Development,Economic Development +476359,Economic Development,Economic Development +476349,Economic Development,Economic Development +476348,Economic Development,Economic Development +476303,Economic Development,Economic Development +474435,Economic Development,Economic Development +474393,Economic Development,Economic Development +473993,Economic Development,Economic Development +472415,Economic Development,Economic Development +472221,Economic Development,Economic Development +472028,Economic Development,Economic Development +472027,Economic Development,Economic Development +472026,Economic Development,Economic Development +471406,Economic Development,Economic Development +471295,Economic Development,Economic Development +469782,Economic Development,Economic Development +469643,Economic Development,Economic Development +469640,Economic Development,Economic Development +468750,Infrastructure,Infrastructure +471295,Transportation,Transportation +469782,Transportation,Transportation +469643,Transportation,Transportation +469640,Transportation,Transportation +469637,Transportation,Transportation +469073,Transportation,Transportation +468750,Transportation,Transportation +468476,Transportation,Transportation +465291,Transportation,Transportation +465253,Transportation,Transportation +488428,Transportation,Transportation +483478,Transportation,Transportation +481894,Transportation,Transportation +478434,Transportation,Transportation +477605,Transportation,Transportation +477492,Transportation,Transportation +476645,Transportation,Transportation +476565,Transportation,Transportation +476564,Transportation,Transportation +476359,Transportation,Transportation +476349,Transportation,Transportation +476348,Transportation,Transportation +476303,Transportation,Transportation +474435,Transportation,Transportation +474393,Transportation,Transportation +473993,Transportation,Transportation +472415,Transportation,Transportation +472221,Transportation,Transportation +472028,Transportation,Transportation +472027,Transportation,Transportation +472026,Transportation,Transportation +465114,Infrastructure,Infrastructure +465103,Infrastructure,Infrastructure +543794,Infrastructure,Infrastructure +495535,Infrastructure,Infrastructure +478771,Official Languages,Official Languages +465114,Official Languages,Official Languages +538083,Official Languages,Official Languages +497440,Climate,Climate +497429,Climate,Climate +471479,Climate,Climate +471478,Climate,Climate +471477,Climate,Climate +471475,Climate,Climate +471474,Climate,Climate +469040,Climate,Climate +469039,Climate,Climate +469038,Climate,Climate +469037,Climate,Climate +469036,Climate,Climate +469035,Climate,Climate +469031,Climate,Climate +497440,Economic Development,Economic Development +497429,Economic Development,Economic Development +481112,Economic Development,Economic Development +471478,Economic Development,Economic Development +471475,Economic Development,Economic Development +471474,Economic Development,Economic Development +469039,Economic Development,Economic Development +469038,Economic Development,Economic Development +469037,Economic Development,Economic Development +469031,Economic Development,Economic Development +469027,Economic Development,Economic Development +469026,Energy,Energy +469025,Energy,Energy +497441,Energy,Energy +497440,Energy,Energy +497429,Energy,Energy +471479,Energy,Energy +471478,Energy,Energy +471477,Energy,Energy +471476,Energy,Energy +471475,Energy,Energy +471474,Energy,Energy +469040,Energy,Energy +469039,Energy,Energy +469038,Energy,Energy +469037,Energy,Energy +469036,Energy,Energy +469035,Energy,Energy +469031,Energy,Energy +469039,Industry,Industry +469031,Industry,Industry +497441,Industry,Industry +471478,Industry,Industry +471474,Infrastructure,Infrastructure +469031,Infrastructure,Infrastructure +471476,Infrastructure,Infrastructure +469031,International Relations,International Relations +469026,International Relations,International Relations +471477,International Relations,International Relations +471475,International Relations,International Relations +471474,International Relations,International Relations +469040,International Relations,International Relations +469038,Regional Development,Regional Development +469031,Regional Development,Regional Development +471475,Regional Development,Regional Development +471474,Regional Development,Regional Development +469035,Research and Development,Research and Development +469031,Research and Development,Research and Development +497441,Research and Development,Research and Development +497440,Research and Development,Research and Development +497429,Research and Development,Research and Development +481112,Research and Development,Research and Development +471479,Research and Development,Research and Development +471478,Research and Development,Research and Development +471477,Research and Development,Research and Development +471476,Research and Development,Research and Development +471475,Research and Development,Research and Development +471474,Research and Development,Research and Development +469039,Research and Development,Research and Development +469037,Research and Development,Research and Development +463483,Economic Development,Economic Development +463482,Economic Development,Economic Development +536394,Economic Development,Economic Development +536331,Economic Development,Economic Development +523503,Economic Development,Economic Development +523502,Economic Development,Economic Development +521119,Economic Development,Economic Development +517449,Economic Development,Economic Development +485498,Economic Development,Economic Development +485495,Economic Development,Economic Development +482756,Economic Development,Economic Development +478525,Economic Development,Economic Development +476469,Economic Development,Economic Development +476310,Economic Development,Economic Development +470972,Economic Development,Economic Development +463482,Environment,Environment +463483,Industry,Industry +463482,Industry,Industry +463483,International Trade,International Trade +463482,International Trade,International Trade +478525,International Trade,International Trade +469527,Mining,Mining +463483,Mining,Mining +536203,Mining,Mining +521119,Mining,Mining +506839,Mining,Mining +488979,Mining,Mining +469527,Research and Development,Research and Development +515269,Taxation and Finance,Taxation and Finance +514476,Taxation and Finance,Taxation and Finance +536394,Taxation and Finance,Taxation and Finance +536331,Taxation and Finance,Taxation and Finance +472060,Agriculture,Agriculture +469635,Agriculture,Agriculture +476569,Agriculture,Agriculture +469020,Economic Development,Economic Development +469019,Economic Development,Economic Development +476569,Economic Development,Economic Development +476199,Economic Development,Economic Development +472183,Economic Development,Economic Development +472060,Economic Development,Economic Development +471387,Economic Development,Economic Development +470977,Economic Development,Economic Development +469635,Economic Development,Economic Development +494579,Agriculture,Agriculture +494578,Agriculture,Agriculture +489698,Agriculture,Agriculture +489353,Agriculture,Agriculture +485729,Agriculture,Agriculture +485728,Agriculture,Agriculture +483521,Agriculture,Agriculture +466038,Economic Development,Economic Development +462185,Economic Development,Economic Development +466038,Energy,Energy +462185,Energy,Energy +497602,Agriculture,Agriculture +497601,Agriculture,Agriculture +523711,Agriculture,Agriculture +523710,Agriculture,Agriculture +523709,Agriculture,Agriculture +523708,Agriculture,Agriculture +523707,Agriculture,Agriculture +497606,Agriculture,Agriculture +463827,Taxation and Finance,Taxation and Finance +529068,Labour,Labour +529063,Labour,Labour +525977,Labour,Labour +525972,Labour,Labour +525963,Labour,Labour +525960,Labour,Labour +525958,Labour,Labour +522677,Labour,Labour +522675,Labour,Labour +522674,Labour,Labour +522673,Labour,Labour +522672,Labour,Labour +515579,Labour,Labour +538135,Labour,Labour +462707,Economic Development,Economic Development +467298,Health,Health +467296,Health,Health +477636,Government Procurement,Government Procurement +477635,Government Procurement,Government Procurement +477636,Labour,Labour +477635,Labour,Labour +516529,Labour,Labour +462077,Environment,Environment +462076,Municipalities,Municipalities +462075,Municipalities,Municipalities +500186,Municipalities,Municipalities +544859,Education,Education +527263,Education,Education +498861,Education,Education +490012,Education,Education +490010,Education,Education +477455,Education,Education +465061,Education,Education +544864,Education,Education +544863,Education,Education +544862,Education,Education +544861,Education,Education +469474,International Trade,International Trade +527586,International Trade,International Trade +466824,Economic Development,Economic Development +466824,Energy,Energy +485791,Environment,Environment +463216,Environment,Environment +542504,Environment,Environment +496701,Environment,Environment +463216,Infrastructure,Infrastructure +471878,Industry,Industry +471299,Industry,Industry +522723,Industry,Industry +522722,Industry,Industry +522721,Industry,Industry +477532,Infrastructure,Infrastructure +471878,Infrastructure,Infrastructure +522723,Infrastructure,Infrastructure +522722,Infrastructure,Infrastructure +522721,Infrastructure,Infrastructure +522720,Infrastructure,Infrastructure +471878,Regional Development,Regional Development +469493,Regional Development,Regional Development +522723,Regional Development,Regional Development +522722,Regional Development,Regional Development +522721,Regional Development,Regional Development +522720,Regional Development,Regional Development +479010,Climate,Climate +478598,Climate,Climate +523923,Climate,Climate +523921,Climate,Climate +508866,Climate,Climate +508864,Climate,Climate +508857,Climate,Climate +503051,Climate,Climate +503050,Climate,Climate +503049,Climate,Climate +497086,Climate,Climate +497085,Climate,Climate +497084,Climate,Climate +497082,Climate,Climate +489225,Climate,Climate +488592,Climate,Climate +488591,Climate,Climate +484143,Climate,Climate +484142,Climate,Climate +483167,Climate,Climate +483166,Climate,Climate +480899,Climate,Climate +480898,Climate,Climate +480897,Climate,Climate +500128,Tourism,Tourism +500127,Tourism,Tourism +492641,Tourism,Tourism +483103,Tourism,Tourism +481961,Tourism,Tourism +480379,Tourism,Tourism +526861,Tourism,Tourism +516839,Tourism,Tourism +514356,Tourism,Tourism +514350,Tourism,Tourism +500946,Tourism,Tourism +502065,Small Business,Small Business +497519,Small Business,Small Business +535019,Small Business,Small Business +535018,Small Business,Small Business +535016,Small Business,Small Business +535015,Small Business,Small Business +527002,Small Business,Small Business +518299,Small Business,Small Business +525921,Economic Development,Economic Development +525920,Economic Development,Economic Development +503950,Economic Development,Economic Development +503949,Economic Development,Economic Development +503947,Economic Development,Economic Development +471365,Small Business,Small Business +469805,Small Business,Small Business +536234,Small Business,Small Business +529830,Small Business,Small Business +525923,Small Business,Small Business +525921,Small Business,Small Business +525920,Small Business,Small Business +522305,Small Business,Small Business +522303,Small Business,Small Business +522295,Small Business,Small Business +517755,Small Business,Small Business +517754,Small Business,Small Business +517753,Small Business,Small Business +513083,Small Business,Small Business +509940,Small Business,Small Business +507569,Small Business,Small Business +503950,Small Business,Small Business +503949,Small Business,Small Business +503947,Small Business,Small Business +503401,Small Business,Small Business +500766,Small Business,Small Business +500764,Small Business,Small Business +497118,Small Business,Small Business +497117,Small Business,Small Business +488765,Small Business,Small Business +487747,Small Business,Small Business +487746,Small Business,Small Business +481060,Small Business,Small Business +480305,Small Business,Small Business +480303,Small Business,Small Business +476590,Small Business,Small Business +476589,Small Business,Small Business +476588,Small Business,Small Business +476587,Small Business,Small Business +476586,Small Business,Small Business +476585,Small Business,Small Business +476584,Small Business,Small Business +474500,Small Business,Small Business +474499,Small Business,Small Business +474498,Small Business,Small Business +474497,Small Business,Small Business +474496,Small Business,Small Business +474495,Small Business,Small Business +474494,Small Business,Small Business +474493,Small Business,Small Business +474491,Small Business,Small Business +473936,Small Business,Small Business +472058,Small Business,Small Business +472057,Small Business,Small Business +475701,Health,Health +470953,Health,Health +481763,Health,Health +481761,Health,Health +481759,Health,Health +481757,Health,Health +481756,Health,Health +466089,Intellectual Property,Intellectual Property +463298,Intellectual Property,Intellectual Property +483802,Intellectual Property,Intellectual Property +483799,Intellectual Property,Intellectual Property +483794,Intellectual Property,Intellectual Property +481556,Intellectual Property,Intellectual Property +481553,Intellectual Property,Intellectual Property +466093,Intellectual Property,Intellectual Property +462212,Health,Health +477624,Education,Education +477622,Education,Education +466535,Education,Education +466534,Education,Education +466532,Education,Education +466531,Education,Education +466528,Education,Education +466526,Education,Education +543778,Education,Education +543766,Education,Education +529813,Education,Education +529812,Education,Education +523421,Education,Education +523420,Education,Education +518733,Education,Education +518732,Education,Education +508283,Education,Education +508282,Education,Education +508281,Education,Education +508280,Education,Education +504555,Education,Education +504554,Education,Education +504553,Education,Education +504552,Education,Education +501225,Education,Education +499600,Education,Education +499597,Education,Education +489612,Education,Education +489611,Education,Education +489610,Education,Education +487084,Education,Education +483131,Education,Education +483130,Education,Education +482886,Education,Education +482885,Education,Education +465775,Agriculture,Agriculture +465774,Agriculture,Agriculture +485398,Agriculture,Agriculture +465777,Agriculture,Agriculture +465775,Climate,Climate +465774,Climate,Climate +485398,Climate,Climate +465777,Climate,Climate +465775,Environment,Environment +465774,Environment,Environment +485398,Environment,Environment +465777,Environment,Environment +465777,Infrastructure,Infrastructure +465774,Infrastructure,Infrastructure +465775,International Trade,International Trade +465774,International Trade,International Trade +485398,International Trade,International Trade +465777,International Trade,International Trade +465776,Regional Development,Regional Development +465775,Regional Development,Regional Development +465775,Transportation,Transportation +466532,Research and Development,Research and Development +466528,Research and Development,Research and Development +529813,Research and Development,Research and Development +508280,Research and Development,Research and Development +487082,Research and Development,Research and Development +466535,Research and Development,Research and Development +498097,Transportation,Transportation +475471,Transportation,Transportation +473592,Transportation,Transportation +463183,Transportation,Transportation +465491,Budget,Budget +506898,Climate,Climate +465491,Climate,Climate +528176,Climate,Climate +519994,Climate,Climate +517451,Climate,Climate +515787,Climate,Climate +514028,Climate,Climate +465483,Economic Development,Economic Development +464269,Economic Development,Economic Development +532083,Economic Development,Economic Development +528176,Economic Development,Economic Development +525550,Economic Development,Economic Development +522462,Economic Development,Economic Development +519994,Economic Development,Economic Development +517451,Economic Development,Economic Development +515787,Economic Development,Economic Development +514028,Economic Development,Economic Development +513438,Economic Development,Economic Development +465491,Economic Development,Economic Development +465488,Economic Development,Economic Development +525550,Employment and Training,Employment and Training +522462,Employment and Training,Employment and Training +522460,Employment and Training,Employment and Training +517461,Employment and Training,Employment and Training +517451,Employment and Training,Employment and Training +515794,Employment and Training,Employment and Training +515787,Employment and Training,Employment and Training +514028,Employment and Training,Employment and Training +513438,Employment and Training,Employment and Training +510274,Employment and Training,Employment and Training +510271,Employment and Training,Employment and Training +507087,Employment and Training,Employment and Training +506900,Employment and Training,Employment and Training +506899,Employment and Training,Employment and Training +506898,Employment and Training,Employment and Training +504085,Employment and Training,Employment and Training +497290,Employment and Training,Employment and Training +493402,Employment and Training,Employment and Training +491464,Employment and Training,Employment and Training +480776,Employment and Training,Employment and Training +476419,Employment and Training,Employment and Training +471632,Employment and Training,Employment and Training +470334,Employment and Training,Employment and Training +465491,Employment and Training,Employment and Training +465488,Employment and Training,Employment and Training +465487,Employment and Training,Employment and Training +465483,Employment and Training,Employment and Training +464269,Employment and Training,Employment and Training +541571,Employment and Training,Employment and Training +538122,Employment and Training,Employment and Training +538120,Employment and Training,Employment and Training +538119,Employment and Training,Employment and Training +532083,Employment and Training,Employment and Training +465487,Energy,Energy +465483,Energy,Energy +541571,Energy,Energy +532083,Energy,Energy +528176,Energy,Energy +525550,Energy,Energy +522462,Energy,Energy +519994,Energy,Energy +517461,Energy,Energy +517451,Energy,Energy +515787,Energy,Energy +514028,Energy,Energy +513438,Energy,Energy +510274,Energy,Energy +506899,Energy,Energy +506898,Energy,Energy +515794,Environment,Environment +515787,Environment,Environment +514028,Environment,Environment +513438,Environment,Environment +510274,Environment,Environment +507087,Environment,Environment +506899,Environment,Environment +497290,Environment,Environment +493402,Environment,Environment +491464,Environment,Environment +465491,Environment,Environment +465488,Environment,Environment +465487,Environment,Environment +462440,Environment,Environment +541571,Environment,Environment +532083,Environment,Environment +525550,Environment,Environment +522811,Environment,Environment +522462,Environment,Environment +519994,Environment,Environment +517461,Environment,Environment +517456,Environment,Environment +465491,Industry,Industry +465483,Infrastructure,Infrastructure +464269,Infrastructure,Infrastructure +541571,Infrastructure,Infrastructure +532083,Infrastructure,Infrastructure +525550,Infrastructure,Infrastructure +522462,Infrastructure,Infrastructure +519994,Infrastructure,Infrastructure +517451,Infrastructure,Infrastructure +514028,Infrastructure,Infrastructure +506898,Infrastructure,Infrastructure +493402,Infrastructure,Infrastructure +491464,Infrastructure,Infrastructure +465491,Infrastructure,Infrastructure +470334,Mining,Mining +465491,Mining,Mining +465488,Mining,Mining +465487,Mining,Mining +465483,Mining,Mining +464269,Mining,Mining +462440,Mining,Mining +541571,Mining,Mining +538120,Mining,Mining +538119,Mining,Mining +535744,Mining,Mining +532083,Mining,Mining +528176,Mining,Mining +525550,Mining,Mining +522462,Mining,Mining +519994,Mining,Mining +517461,Mining,Mining +517456,Mining,Mining +517451,Mining,Mining +515794,Mining,Mining +515787,Mining,Mining +514029,Mining,Mining +514028,Mining,Mining +513438,Mining,Mining +510274,Mining,Mining +510269,Mining,Mining +507087,Mining,Mining +506900,Mining,Mining +506899,Mining,Mining +504085,Mining,Mining +493402,Mining,Mining +485930,Mining,Mining +483327,Mining,Mining +483326,Mining,Mining +480776,Mining,Mining +476419,Mining,Mining +474788,Mining,Mining +472547,Mining,Mining +471632,Mining,Mining +506898,Regional Development,Regional Development +465491,Regional Development,Regional Development +474127,Industry,Industry +492828,Privacy and Access to Information,Privacy and Access to Information +466574,Climate,Climate +466560,Climate,Climate +466524,Climate,Climate +462903,Climate,Climate +540961,Climate,Climate +538627,Climate,Climate +538625,Climate,Climate +528529,Climate,Climate +528526,Climate,Climate +528525,Climate,Climate +468520,Climate,Climate +466582,Climate,Climate +528526,Environment,Environment +528525,Environment,Environment +468520,Environment,Environment +466582,Environment,Environment +466579,Environment,Environment +466560,Environment,Environment +466539,Environment,Environment +466524,Environment,Environment +540961,Environment,Environment +538627,Environment,Environment +538625,Environment,Environment +538627,Health,Health +538625,Health,Health +468520,Health,Health +466583,Health,Health +466569,Health,Health +466582,Research and Development,Research and Development +466524,Taxation and Finance,Taxation and Finance +462903,Taxation and Finance,Taxation and Finance +528526,Transportation,Transportation +528525,Transportation,Transportation +468520,Transportation,Transportation +466582,Transportation,Transportation +466577,Transportation,Transportation +462553,Transportation,Transportation +540961,Transportation,Transportation +538627,Transportation,Transportation +538625,Transportation,Transportation +479370,Housing,Housing +475939,Housing,Housing +536572,Housing,Housing +536571,Housing,Housing +533011,Housing,Housing +532997,Housing,Housing +536572,Municipalities,Municipalities +536571,Municipalities,Municipalities +485027,Municipalities,Municipalities +479370,Municipalities,Municipalities +479370,Economic Development,Economic Development +475939,Economic Development,Economic Development +536572,Economic Development,Economic Development +536571,Economic Development,Economic Development +533011,Economic Development,Economic Development +532997,Economic Development,Economic Development +465031,Budget,Budget +465031,Infrastructure,Infrastructure +512998,International Trade,International Trade +512968,International Trade,International Trade +513006,International Trade,International Trade +512998,Taxation and Finance,Taxation and Finance +512968,Taxation and Finance,Taxation and Finance +500244,Taxation and Finance,Taxation and Finance +485482,Taxation and Finance,Taxation and Finance +469851,Taxation and Finance,Taxation and Finance +468653,Taxation and Finance,Taxation and Finance +468652,Taxation and Finance,Taxation and Finance +467388,Taxation and Finance,Taxation and Finance +467340,Taxation and Finance,Taxation and Finance +467331,Taxation and Finance,Taxation and Finance +513676,Taxation and Finance,Taxation and Finance +513513,Taxation and Finance,Taxation and Finance +513006,Taxation and Finance,Taxation and Finance +463195,Economic Development,Economic Development +463195,Transportation,Transportation +467196,Consumer Issues,Consumer Issues +467195,Consumer Issues,Consumer Issues +517695,Consumer Issues,Consumer Issues +486703,Consumer Issues,Consumer Issues +486701,Consumer Issues,Consumer Issues +470231,Consumer Issues,Consumer Issues +467203,Consumer Issues,Consumer Issues +467202,Consumer Issues,Consumer Issues +467196,Health,Health +467195,Health,Health +517695,Health,Health +504697,Health,Health +493345,Health,Health +486703,Health,Health +486701,Health,Health +470231,Health,Health +467203,Health,Health +467202,Health,Health +512134,Environment,Environment +512134,Mining,Mining +462461,Environment,Environment +467901,Climate,Climate +467888,Climate,Climate +465090,Climate,Climate +464084,Climate,Climate +464074,Climate,Climate +491952,Climate,Climate +491951,Climate,Climate +486795,Climate,Climate +486791,Climate,Climate +483681,Climate,Climate +479100,Climate,Climate +476901,Climate,Climate +474957,Climate,Climate +473355,Climate,Climate +473353,Climate,Climate +473342,Climate,Climate +469727,Climate,Climate +469726,Climate,Climate +469721,Climate,Climate +468227,Climate,Climate +464084,Economic Development,Economic Development +464074,Economic Development,Economic Development +491952,Economic Development,Economic Development +491951,Economic Development,Economic Development +486795,Economic Development,Economic Development +486791,Economic Development,Economic Development +483681,Economic Development,Economic Development +479100,Economic Development,Economic Development +476901,Economic Development,Economic Development +474957,Economic Development,Economic Development +473355,Economic Development,Economic Development +473353,Economic Development,Economic Development +473342,Economic Development,Economic Development +469727,Economic Development,Economic Development +469726,Economic Development,Economic Development +469721,Economic Development,Economic Development +468227,Economic Development,Economic Development +467911,Economic Development,Economic Development +467901,Economic Development,Economic Development +467888,Economic Development,Economic Development +469727,Energy,Energy +469726,Energy,Energy +469721,Energy,Energy +468227,Energy,Energy +467911,Energy,Energy +467901,Energy,Energy +467888,Energy,Energy +465090,Energy,Energy +464084,Energy,Energy +464074,Energy,Energy +491952,Energy,Energy +491951,Energy,Energy +486795,Energy,Energy +486791,Energy,Energy +483681,Energy,Energy +479100,Energy,Energy +476901,Energy,Energy +474957,Energy,Energy +473355,Energy,Energy +473353,Energy,Energy +464084,Environment,Environment +464074,Environment,Environment +491952,Environment,Environment +491951,Environment,Environment +486795,Environment,Environment +486791,Environment,Environment +483681,Environment,Environment +479100,Environment,Environment +476901,Environment,Environment +474957,Environment,Environment +473355,Environment,Environment +473353,Environment,Environment +473342,Environment,Environment +469727,Environment,Environment +469726,Environment,Environment +469721,Environment,Environment +468227,Environment,Environment +467911,Environment,Environment +467901,Environment,Environment +467888,Environment,Environment +464084,Industry,Industry +464074,Industry,Industry +491952,Industry,Industry +491951,Industry,Industry +486795,Industry,Industry +486791,Industry,Industry +483681,Industry,Industry +479100,Industry,Industry +476901,Industry,Industry +474957,Industry,Industry +473355,Industry,Industry +473353,Industry,Industry +473342,Industry,Industry +469727,Industry,Industry +469726,Industry,Industry +469721,Industry,Industry +468227,Industry,Industry +467911,Industry,Industry +467901,Industry,Industry +467888,Industry,Industry +464077,Infrastructure,Infrastructure +464074,Infrastructure,Infrastructure +491952,Infrastructure,Infrastructure +491951,Infrastructure,Infrastructure +486795,Infrastructure,Infrastructure +486791,Infrastructure,Infrastructure +483681,Infrastructure,Infrastructure +479100,Infrastructure,Infrastructure +476901,Infrastructure,Infrastructure +474957,Infrastructure,Infrastructure +473355,Infrastructure,Infrastructure +473353,Infrastructure,Infrastructure +473342,Infrastructure,Infrastructure +469727,Infrastructure,Infrastructure +469726,Infrastructure,Infrastructure +469721,Infrastructure,Infrastructure +468227,Infrastructure,Infrastructure +467911,Infrastructure,Infrastructure +467901,Infrastructure,Infrastructure +467888,Infrastructure,Infrastructure +465090,Infrastructure,Infrastructure +464084,Regional Development,Regional Development +464074,Regional Development,Regional Development +491952,Regional Development,Regional Development +491951,Regional Development,Regional Development +486795,Regional Development,Regional Development +486791,Regional Development,Regional Development +483681,Regional Development,Regional Development +479100,Regional Development,Regional Development +476901,Regional Development,Regional Development +474957,Regional Development,Regional Development +473355,Regional Development,Regional Development +473353,Regional Development,Regional Development +473342,Regional Development,Regional Development +469727,Regional Development,Regional Development +469726,Regional Development,Regional Development +469721,Regional Development,Regional Development +468227,Regional Development,Regional Development +467911,Regional Development,Regional Development +467901,Regional Development,Regional Development +467888,Regional Development,Regional Development +482263,Mining,Mining +480371,Mining,Mining +467647,Mining,Mining +462545,Education,Education +479972,Climate,Climate +479971,Climate,Climate +537535,Climate,Climate +537533,Climate,Climate +537530,Climate,Climate +535782,Climate,Climate +535757,Climate,Climate +535756,Climate,Climate +535751,Climate,Climate +531859,Climate,Climate +531858,Climate,Climate +531851,Climate,Climate +520069,Climate,Climate +520068,Climate,Climate +520063,Climate,Climate +520062,Climate,Climate +520061,Climate,Climate +520060,Climate,Climate +515796,Climate,Climate +515792,Climate,Climate +509925,Climate,Climate +508903,Climate,Climate +508895,Climate,Climate +505086,Climate,Climate +501422,Climate,Climate +493482,Climate,Climate +493480,Climate,Climate +487406,Climate,Climate +487405,Climate,Climate +487402,Climate,Climate +485136,Climate,Climate +485102,Climate,Climate +485087,Climate,Climate +485082,Climate,Climate +485050,Climate,Climate +482414,Climate,Climate +482411,Climate,Climate +482408,Climate,Climate +522993,Economic Development,Economic Development +522989,Economic Development,Economic Development +520069,Economic Development,Economic Development +520067,Economic Development,Economic Development +520065,Economic Development,Economic Development +520060,Economic Development,Economic Development +515800,Economic Development,Economic Development +515799,Economic Development,Economic Development +515796,Economic Development,Economic Development +515792,Economic Development,Economic Development +509924,Economic Development,Economic Development +508903,Economic Development,Economic Development +508894,Economic Development,Economic Development +505121,Economic Development,Economic Development +505086,Economic Development,Economic Development +501432,Economic Development,Economic Development +501431,Economic Development,Economic Development +501427,Economic Development,Economic Development +501422,Economic Development,Economic Development +501420,Economic Development,Economic Development +501419,Economic Development,Economic Development +501404,Economic Development,Economic Development +491666,Economic Development,Economic Development +491665,Economic Development,Economic Development +487408,Economic Development,Economic Development +487406,Economic Development,Economic Development +487405,Economic Development,Economic Development +487402,Economic Development,Economic Development +485136,Economic Development,Economic Development +485087,Economic Development,Economic Development +485082,Economic Development,Economic Development +485050,Economic Development,Economic Development +482411,Economic Development,Economic Development +482408,Economic Development,Economic Development +479972,Economic Development,Economic Development +466965,Economic Development,Economic Development +462744,Economic Development,Economic Development +462741,Economic Development,Economic Development +462740,Economic Development,Economic Development +462739,Economic Development,Economic Development +462734,Economic Development,Economic Development +462731,Economic Development,Economic Development +544612,Economic Development,Economic Development +543947,Economic Development,Economic Development +543945,Economic Development,Economic Development +543938,Economic Development,Economic Development +543937,Economic Development,Economic Development +543935,Economic Development,Economic Development +543866,Economic Development,Economic Development +543861,Economic Development,Economic Development +543855,Economic Development,Economic Development +543825,Economic Development,Economic Development +539391,Economic Development,Economic Development +539390,Economic Development,Economic Development +537534,Economic Development,Economic Development +537532,Economic Development,Economic Development +537531,Economic Development,Economic Development +537528,Economic Development,Economic Development +535786,Economic Development,Economic Development +535781,Economic Development,Economic Development +535775,Economic Development,Economic Development +535768,Economic Development,Economic Development +535767,Economic Development,Economic Development +535762,Economic Development,Economic Development +535760,Economic Development,Economic Development +535754,Economic Development,Economic Development +535747,Economic Development,Economic Development +535746,Economic Development,Economic Development +535745,Economic Development,Economic Development +535743,Economic Development,Economic Development +535740,Economic Development,Economic Development +535739,Economic Development,Economic Development +535737,Economic Development,Economic Development +535735,Economic Development,Economic Development +535731,Economic Development,Economic Development +535727,Economic Development,Economic Development +535725,Economic Development,Economic Development +535724,Economic Development,Economic Development +531861,Economic Development,Economic Development +531849,Economic Development,Economic Development +529384,Economic Development,Economic Development +529381,Economic Development,Economic Development +529380,Economic Development,Economic Development +529379,Economic Development,Economic Development +526383,Economic Development,Economic Development +526381,Economic Development,Economic Development +515792,Energy,Energy +509925,Energy,Energy +509924,Energy,Energy +508903,Energy,Energy +508895,Energy,Energy +505121,Energy,Energy +505086,Energy,Energy +501432,Energy,Energy +501431,Energy,Energy +501427,Energy,Energy +501422,Energy,Energy +501420,Energy,Energy +501419,Energy,Energy +501404,Energy,Energy +493482,Energy,Energy +493480,Energy,Energy +491665,Energy,Energy +487406,Energy,Energy +487405,Energy,Energy +487402,Energy,Energy +485136,Energy,Energy +485102,Energy,Energy +485095,Energy,Energy +485092,Energy,Energy +485087,Energy,Energy +485082,Energy,Energy +485050,Energy,Energy +482414,Energy,Energy +482411,Energy,Energy +482408,Energy,Energy +482407,Energy,Energy +473224,Energy,Energy +462744,Energy,Energy +462741,Energy,Energy +462740,Energy,Energy +462739,Energy,Energy +462734,Energy,Energy +462731,Energy,Energy +544612,Energy,Energy +543947,Energy,Energy +543945,Energy,Energy +543942,Energy,Energy +543935,Energy,Energy +543931,Energy,Energy +539391,Energy,Energy +537535,Energy,Energy +537533,Energy,Energy +537530,Energy,Energy +535790,Energy,Energy +535782,Energy,Energy +535757,Energy,Energy +535756,Energy,Energy +535751,Energy,Energy +535739,Energy,Energy +535737,Energy,Energy +531862,Energy,Energy +531859,Energy,Energy +531858,Energy,Energy +531851,Energy,Energy +529384,Energy,Energy +529382,Energy,Energy +529381,Energy,Energy +529380,Energy,Energy +529379,Energy,Energy +522993,Energy,Energy +522989,Energy,Energy +522987,Energy,Energy +520068,Energy,Energy +520063,Energy,Energy +520062,Energy,Energy +520061,Energy,Energy +462734,Environment,Environment +462731,Environment,Environment +544612,Environment,Environment +543947,Environment,Environment +543945,Environment,Environment +543942,Environment,Environment +543935,Environment,Environment +543931,Environment,Environment +539391,Environment,Environment +537535,Environment,Environment +537533,Environment,Environment +537530,Environment,Environment +535790,Environment,Environment +535782,Environment,Environment +535757,Environment,Environment +535756,Environment,Environment +535751,Environment,Environment +535740,Environment,Environment +535739,Environment,Environment +535737,Environment,Environment +531862,Environment,Environment +531859,Environment,Environment +531858,Environment,Environment +531851,Environment,Environment +529384,Environment,Environment +529381,Environment,Environment +529379,Environment,Environment +522993,Environment,Environment +522989,Environment,Environment +520068,Environment,Environment +520063,Environment,Environment +520062,Environment,Environment +520061,Environment,Environment +515796,Environment,Environment +515792,Environment,Environment +509925,Environment,Environment +509924,Environment,Environment +508895,Environment,Environment +501432,Environment,Environment +501431,Environment,Environment +501420,Environment,Environment +493482,Environment,Environment +493480,Environment,Environment +487405,Environment,Environment +485136,Environment,Environment +485102,Environment,Environment +485087,Environment,Environment +485082,Environment,Environment +485050,Environment,Environment +462744,Environment,Environment +462741,Environment,Environment +462740,Environment,Environment +520067,Industry,Industry +520060,Industry,Industry +509925,Industry,Industry +509924,Industry,Industry +508894,Industry,Industry +505121,Industry,Industry +501420,Industry,Industry +485136,Industry,Industry +485092,Industry,Industry +462734,Industry,Industry +462731,Industry,Industry +544612,Industry,Industry +537534,Industry,Industry +537532,Industry,Industry +535790,Industry,Industry +535768,Industry,Industry +535746,Industry,Industry +535743,Industry,Industry +535735,Industry,Industry +535731,Industry,Industry +535725,Industry,Industry +531862,Industry,Industry +531859,Industry,Industry +529380,Industry,Industry +526383,Industry,Industry +522989,Industry,Industry +501427,International Trade,International Trade +473220,Taxation and Finance,Taxation and Finance +473215,Taxation and Finance,Taxation and Finance +544612,Taxation and Finance,Taxation and Finance +537531,Taxation and Finance,Taxation and Finance +537528,Taxation and Finance,Taxation and Finance +535727,Taxation and Finance,Taxation and Finance +494581,Agriculture,Agriculture +465978,Taxation and Finance,Taxation and Finance +461992,Economic Development,Economic Development +466039,Economic Development,Economic Development +466039,Energy,Energy +497604,Agriculture,Agriculture +463832,Taxation and Finance,Taxation and Finance +529084,Labour,Labour +462708,Economic Development,Economic Development +467300,Health,Health +480126,Government Procurement,Government Procurement +480126,Infrastructure,Infrastructure +480126,Labour,Labour +500186,Environment,Environment +500186,Infrastructure,Infrastructure +500186,International Relations,International Relations +462077,Municipalities,Municipalities +544860,Education,Education +474285,International Trade,International Trade +462084,International Trade,International Trade +462091,Taxation and Finance,Taxation and Finance +462091,Industry,Industry +462091,Official Languages,Official Languages +462091,Intellectual Property,Intellectual Property +462091,Privacy and Access to Information,Privacy and Access to Information +466824,Climate,Climate +466826,Economic Development,Economic Development +466826,Energy,Energy +486219,Environment,Environment +542507,Infrastructure,Infrastructure +472176,Research and Development,Research and Development +498869,Industry,Industry +498869,Infrastructure,Infrastructure +498869,Regional Development,Regional Development +462118,Economic Development,Economic Development +479011,Climate,Climate +500129,Tourism,Tourism +465799,Industry,Industry +511602,Small Business,Small Business +503946,Economic Development,Economic Development +471592,Small Business,Small Business +475707,Health,Health +466092,Intellectual Property,Intellectual Property +465760,Health,Health +465760,Research and Development,Research and Development +482884,Education,Education +465776,Agriculture,Agriculture +465776,Climate,Climate +465776,Environment,Environment +485398,Infrastructure,Infrastructure +485398,Internal Trade,Internal Trade +465776,International Trade,International Trade +465777,Regional Development,Regional Development +465777,Transportation,Transportation +466534,Research and Development,Research and Development +463183,Infrastructure,Infrastructure +509566,Transportation,Transportation +535744,Budget,Budget +506899,Climate,Climate +465487,Economic Development,Economic Development +528176,Employment and Training,Employment and Training +465491,Energy,Energy +517451,Environment,Environment +474788,Industry,Industry +465487,Infrastructure,Infrastructure +471355,Mining,Mining +525550,Regional Development,Regional Development +492828,Security,Security +492828,Industry,Industry +462688,Privacy and Access to Information,Privacy and Access to Information +492828,Financial Institutions,Financial Institutions +469377,Housing,Housing +468520,Budget,Budget +466579,Climate,Climate +528529,Environment,Environment +466539,Health,Health +468520,Research and Development,Research and Development +468520,Taxation and Finance,Taxation and Finance +528529,Transportation,Transportation +474875,Employment and Training,Employment and Training +485027,Housing,Housing +475939,Municipalities,Municipalities +485027,Economic Development,Economic Development +465303,Economic Development,Economic Development +465303,Employment and Training,Employment and Training +465303,Labour,Labour +465032,Budget,Budget +465032,Infrastructure,Infrastructure +513002,International Trade,International Trade +513002,Taxation and Finance,Taxation and Finance +463196,Economic Development,Economic Development +463196,Transportation,Transportation +467200,Consumer Issues,Consumer Issues +467200,Health,Health +517695,Government Procurement,Government Procurement +462884,Economic Development,Economic Development +462884,Industry,Industry +530809,Environment,Environment +530809,Mining,Mining +512134,Regional Development,Regional Development +471593,Environment,Environment +462461,Government Procurement,Government Procurement +462461,Regional Development,Regional Development +463228,Immigration,Immigration +467911,Climate,Climate +465090,Economic Development,Economic Development +473342,Energy,Energy +465090,Environment,Environment +465090,Industry,Industry +464084,Infrastructure,Infrastructure +465090,Regional Development,Regional Development +467537,Economic Development,Economic Development +467537,Mining,Mining +462552,Education,Education +462431,Research and Development,Research and Development +482407,Climate,Climate +526379,Economic Development,Economic Development +520060,Energy,Energy +462739,Environment,Environment +520069,Industry,Industry +537532,International Trade,International Trade +473221,Taxation and Finance,Taxation and Finance +495609,Economic Development,Economic Development +519011,Government Procurement,Government Procurement +468142,Budget,Budget +468138,Economic Development,Economic Development +468140,Energy,Energy +465613,Infrastructure,Infrastructure +462490,International Relations,International Relations +517265,Taxation and Finance,Taxation and Finance +519307,International Trade,International Trade +466080,Economic Development,Economic Development +463296,Regional Development,Regional Development +466088,Budget,Budget +469426,Government Procurement,Government Procurement +533039,Consumer Issues,Consumer Issues +464399,Environment,Environment +466807,Industry,Industry +478339,Economic Development,Economic Development +466807,International Trade,International Trade +466807,Defence,Defence +464284,International Trade,International Trade +465467,Agriculture,Agriculture +465467,Consumer Issues,Consumer Issues +465467,Environment,Environment +462645,Health,Health +465327,Agriculture,Agriculture +465327,Consumer Issues,Consumer Issues +465327,Environment,Environment +465327,International Trade,International Trade +465634,Budget,Budget +475884,Tourism,Tourism +507519,Health,Health +507519,Housing,Housing +507519,Infrastructure,Infrastructure +463532,Immigration,Immigration +512276,Climate,Climate +512276,Environment,Environment +512276,Financial Institutions,Financial Institutions +516160,Climate,Climate +527659,Financial Institutions,Financial Institutions +472121,Climate,Climate +472121,Environment,Environment +515117,Infrastructure,Infrastructure +472800,Industry,Industry +478447,Intellectual Property,Intellectual Property +500115,Climate,Climate +500115,Environment,Environment +499907,Financial Institutions,Financial Institutions +489431,Privacy and Access to Information,Privacy and Access to Information +497289,Climate,Climate +497289,Environment,Environment +497837,Financial Institutions,Financial Institutions +462767,Education,Education +462775,Government Procurement,Government Procurement +466404,Sports,Sports +462799,Transportation,Transportation +544297,Taxation and Finance,Taxation and Finance +544312,Infrastructure,Infrastructure +544301,Employment and Training,Employment and Training +465426,Economic Development,Economic Development +535789,Environment,Environment +465430,Budget,Budget +544301,Energy,Energy +489202,Economic Development,Economic Development +489214,Environment,Environment +462841,Transportation,Transportation +463601,Health,Health +496794,Health,Health +469463,Agriculture,Agriculture +512852,Economic Development,Economic Development +465318,Economic Development,Economic Development +469364,Environment,Environment +469364,Municipalities,Municipalities +469364,Regional Development,Regional Development +511668,Transportation,Transportation +469449,Environment,Environment +465827,Industry,Industry +465827,Health,Health +465768,Health,Health +462926,Environment,Environment +462909,Economic Development,Economic Development +462909,Regional Development,Regional Development +462909,Small Business,Small Business +465444,Economic Development,Economic Development +469737,Financial Institutions,Financial Institutions +469737,Mining,Mining +535012,Employment and Training,Employment and Training +477986,Immigration,Immigration +535012,Industry,Industry +474920,Justice and Law Enforcement,Justice and Law Enforcement +539922,Labour,Labour +508540,Transportation,Transportation +482902,Intellectual Property,Intellectual Property +463058,Transportation,Transportation +463056,Privacy and Access to Information,Privacy and Access to Information +463058,Government Procurement,Government Procurement +513099,Infrastructure,Infrastructure +503231,Agriculture,Agriculture +496508,Agriculture,Agriculture +463555,Consumer Issues,Consumer Issues +521407,Economic Development,Economic Development +521407,Environment,Environment +521407,Health,Health +521407,Industry,Industry +463553,International Trade,International Trade +521407,Research and Development,Research and Development +521407,Small Business,Small Business +463131,Elections,Elections +518914,Health,Health +469759,Agriculture,Agriculture +502046,Labour,Labour +495426,Transportation,Transportation +489975,Employment and Training,Employment and Training +489975,Industry,Industry +472560,Tourism,Tourism +508131,Research and Development,Research and Development +489983,Health,Health +504749,Economic Development,Economic Development +508137,Consumer Issues,Consumer Issues +464264,Government Procurement,Government Procurement +525618,Economic Development,Economic Development +466093,International Trade,International Trade +464044,Climate,Climate +464044,Environment,Environment +463010,Privacy and Access to Information,Privacy and Access to Information +462986,Consumer Issues,Consumer Issues +462986,International Relations,International Relations +462986,International Trade,International Trade +522671,Education,Education +522671,Health,Health +464306,Government Procurement,Government Procurement +464040,Climate,Climate +464186,Environment,Environment +470294,Immigration,Immigration +518346,Taxation and Finance,Taxation and Finance +490520,Economic Development,Economic Development +490520,Health,Health +490520,Industry,Industry +469170,Sports,Sports +534764,Financial Institutions,Financial Institutions +534764,Consumer Issues,Consumer Issues +520473,Economic Development,Economic Development +464804,Industry,Industry +464804,Government Procurement,Government Procurement +488808,Agriculture,Agriculture +500107,Economic Development,Economic Development +542957,Employment and Training,Employment and Training +542957,Environment,Environment +542957,Industry,Industry +542957,Labour,Labour +500107,Small Business,Small Business +463709,Taxation and Finance,Taxation and Finance +463127,Energy,Energy +498838,Employment and Training,Employment and Training +498834,Industry,Industry +477516,Immigration,Immigration +489991,Health,Health +465984,Agriculture,Agriculture +465986,Health,Health +465986,International Trade,International Trade +466288,Agriculture,Agriculture +466288,Health,Health +466288,International Trade,International Trade +466284,Agriculture,Agriculture +466284,Health,Health +466284,International Trade,International Trade +465226,Budget,Budget +465226,Economic Development,Economic Development +465226,Energy,Energy +465225,Environment,Environment +465226,Financial Institutions,Financial Institutions +465226,Research and Development,Research and Development +465226,Small Business,Small Business +465226,Taxation and Finance,Taxation and Finance +501511,Agriculture,Agriculture +501511,Consumer Issues,Consumer Issues +475125,Health,Health +501511,Internal Trade,Internal Trade +501511,International Trade,International Trade +483992,Economic Development,Economic Development +483992,Transportation,Transportation +465386,Energy,Energy +468204,Economic Development,Economic Development +468204,Industry,Industry +465056,Mining,Mining +465056,Regional Development,Regional Development +465251,Economic Development,Economic Development +465251,Industry,Industry +465251,Infrastructure,Infrastructure +465251,Regional Development,Regional Development +465251,Transportation,Transportation +466967,Environment,Environment +468657,Economic Development,Economic Development +468656,Environment,Environment +536504,Health,Health +464062,Immigration,Immigration +464062,Infrastructure,Infrastructure +463504,Transportation,Transportation +463504,Infrastructure,Infrastructure +463504,Economic Development,Economic Development +463504,Regional Development,Regional Development +492638,Climate,Climate +518670,Energy,Energy +521704,Environment,Environment +466286,Employment and Training,Employment and Training +466286,Research and Development,Research and Development +466286,Small Business,Small Business +466287,Employment and Training,Employment and Training +466287,International Trade,International Trade +466287,Research and Development,Research and Development +514057,Government Procurement,Government Procurement +463268,Industry,Industry +463268,Economic Development,Economic Development +505539,Budget,Budget +471301,Infrastructure,Infrastructure +476334,Economic Development,Economic Development +476507,Intellectual Property,Intellectual Property +466938,Economic Development,Economic Development +466938,Energy,Energy +466938,Environment,Environment +463469,Economic Development,Economic Development +476407,Fisheries,Fisheries +466080,Government Procurement,Government Procurement +500006,Economic Development,Economic Development +465346,International Trade,International Trade +544378,Education,Education +467177,Infrastructure,Infrastructure +467316,Municipalities,Municipalities +467316,Transportation,Transportation +470130,Sports,Sports +468162,Economic Development,Economic Development +493425,Transportation,Transportation +463419,Industry,Industry +488989,Agriculture,Agriculture +488989,International Trade,International Trade +463488,Environment,Environment +492611,Health,Health +529122,Taxation and Finance,Taxation and Finance +465310,International Development,International Development +529379,Taxation and Finance,Taxation and Finance +526379,Taxation and Finance,Taxation and Finance +522987,Taxation and Finance,Taxation and Finance +520060,Taxation and Finance,Taxation and Finance +515800,Taxation and Finance,Taxation and Finance +515799,Taxation and Finance,Taxation and Finance +501432,Taxation and Finance,Taxation and Finance +501431,Taxation and Finance,Taxation and Finance +501422,Taxation and Finance,Taxation and Finance +501420,Taxation and Finance,Taxation and Finance +501419,Taxation and Finance,Taxation and Finance +501404,Taxation and Finance,Taxation and Finance +485095,Taxation and Finance,Taxation and Finance +485092,Taxation and Finance,Taxation and Finance +475916,Taxation and Finance,Taxation and Finance +475911,Taxation and Finance,Taxation and Finance +473239,Taxation and Finance,Taxation and Finance +473229,Taxation and Finance,Taxation and Finance +473224,Taxation and Finance,Taxation and Finance +511318,Government Procurement,Government Procurement +472136,Government Procurement,Government Procurement +539817,Government Procurement,Government Procurement +539816,Government Procurement,Government Procurement +533495,Government Procurement,Government Procurement +533044,Government Procurement,Government Procurement +468140,Budget,Budget +468137,Economic Development,Economic Development +466460,Economic Development,Economic Development +468141,Economic Development,Economic Development +468139,Economic Development,Economic Development +468139,Energy,Energy +468138,Energy,Energy +468142,Energy,Energy +468141,Energy,Energy +517252,Taxation and Finance,Taxation and Finance +517267,Taxation and Finance,Taxation and Finance +466076,Economic Development,Economic Development +463296,Economic Development,Economic Development +466086,Economic Development,Economic Development +466088,Government Procurement,Government Procurement +463295,Government Procurement,Government Procurement +522233,Government Procurement,Government Procurement +510205,Government Procurement,Government Procurement +507457,Government Procurement,Government Procurement +507455,Government Procurement,Government Procurement +504478,Government Procurement,Government Procurement +477155,Government Procurement,Government Procurement +533038,Consumer Issues,Consumer Issues +533037,Consumer Issues,Consumer Issues +464187,Environment,Environment +463723,Environment,Environment +521623,Environment,Environment +520832,Environment,Environment +520673,Environment,Environment +520503,Environment,Environment +510698,Environment,Environment +503918,Environment,Environment +466444,Environment,Environment +466807,Economic Development,Economic Development +542331,International Trade,International Trade +505061,International Trade,International Trade +465241,International Trade,International Trade +465466,Agriculture,Agriculture +465466,Environment,Environment +465326,Agriculture,Agriculture +465325,Agriculture,Agriculture +465326,Consumer Issues,Consumer Issues +465325,Consumer Issues,Consumer Issues +465326,International Trade,International Trade +465325,International Trade,International Trade +465632,Budget,Budget +463199,Budget,Budget +486086,Budget,Budget +480436,Budget,Budget +469083,Budget,Budget +468711,Budget,Budget +472228,Tourism,Tourism +463142,Tourism,Tourism +511641,Climate,Climate +498906,Climate,Climate +519015,Climate,Climate +514329,Climate,Climate +514326,Climate,Climate +513442,Climate,Climate +511641,Environment,Environment +498906,Environment,Environment +519015,Environment,Environment +514329,Environment,Environment +514326,Environment,Environment +498906,Financial Institutions,Financial Institutions +496276,Financial Institutions,Financial Institutions +519015,Financial Institutions,Financial Institutions +514329,Financial Institutions,Financial Institutions +514326,Financial Institutions,Financial Institutions +523911,Financial Institutions,Financial Institutions +515116,Infrastructure,Infrastructure +515115,Infrastructure,Infrastructure +465773,Infrastructure,Infrastructure +465616,Infrastructure,Infrastructure +526307,Infrastructure,Infrastructure +516168,Infrastructure,Infrastructure +464659,Industry,Industry +464632,Industry,Industry +479005,Industry,Industry +469116,Intellectual Property,Intellectual Property +469115,Intellectual Property,Intellectual Property +479007,Intellectual Property,Intellectual Property +479006,Intellectual Property,Intellectual Property +479005,Intellectual Property,Intellectual Property +499907,Climate,Climate +489613,Climate,Climate +465106,Climate,Climate +500117,Climate,Climate +500116,Climate,Climate +489613,Environment,Environment +465106,Environment,Environment +500117,Environment,Environment +500116,Environment,Environment +489613,Financial Institutions,Financial Institutions +489431,Financial Institutions,Financial Institutions +500116,Financial Institutions,Financial Institutions +500115,Financial Institutions,Financial Institutions +496483,Climate,Climate +491880,Climate,Climate +497837,Climate,Climate +496483,Environment,Environment +491880,Environment,Environment +497837,Environment,Environment +497289,Financial Institutions,Financial Institutions +463435,Sports,Sports +463021,Sports,Sports +509166,Sports,Sports +509163,Sports,Sports +500715,Sports,Sports +500284,Sports,Sports +498739,Sports,Sports +498111,Sports,Sports +496795,Sports,Sports +496794,Sports,Sports +496541,Sports,Sports +495591,Sports,Sports +495590,Sports,Sports +494423,Sports,Sports +494395,Sports,Sports +480675,Sports,Sports +467250,Sports,Sports +544306,Infrastructure,Infrastructure +535791,Infrastructure,Infrastructure +535789,Infrastructure,Infrastructure +535784,Infrastructure,Infrastructure +517453,Infrastructure,Infrastructure +514248,Infrastructure,Infrastructure +512649,Infrastructure,Infrastructure +512637,Infrastructure,Infrastructure +510317,Infrastructure,Infrastructure +510314,Infrastructure,Infrastructure +510313,Infrastructure,Infrastructure +510312,Infrastructure,Infrastructure +501731,Infrastructure,Infrastructure +544300,Employment and Training,Employment and Training +544297,Employment and Training,Employment and Training +469173,Employment and Training,Employment and Training +465425,Economic Development,Economic Development +465424,Economic Development,Economic Development +544305,Economic Development,Economic Development +544302,Economic Development,Economic Development +544301,Economic Development,Economic Development +544300,Economic Development,Economic Development +544297,Economic Development,Economic Development +535791,Economic Development,Economic Development +535789,Economic Development,Economic Development +535784,Economic Development,Economic Development +528377,Economic Development,Economic Development +517453,Economic Development,Economic Development +514248,Economic Development,Economic Development +512649,Economic Development,Economic Development +512637,Economic Development,Economic Development +510317,Economic Development,Economic Development +510314,Economic Development,Economic Development +510313,Economic Development,Economic Development +510312,Economic Development,Economic Development +507351,Economic Development,Economic Development +501731,Economic Development,Economic Development +498179,Economic Development,Economic Development +498177,Economic Development,Economic Development +492769,Economic Development,Economic Development +492766,Economic Development,Economic Development +491024,Economic Development,Economic Development +487856,Economic Development,Economic Development +487846,Economic Development,Economic Development +470622,Economic Development,Economic Development +469173,Economic Development,Economic Development +467520,Economic Development,Economic Development +467507,Economic Development,Economic Development +465429,Economic Development,Economic Development +528377,Environment,Environment +517453,Environment,Environment +512649,Environment,Environment +512637,Environment,Environment +510317,Environment,Environment +507351,Environment,Environment +501731,Environment,Environment +544312,Environment,Environment +544302,Environment,Environment +544301,Environment,Environment +544297,Environment,Environment +465428,Budget,Budget +544300,Energy,Energy +544297,Energy,Energy +535791,Energy,Energy +535789,Energy,Energy +535784,Energy,Energy +528377,Energy,Energy +517453,Energy,Energy +514248,Energy,Energy +512649,Energy,Energy +512637,Energy,Energy +510317,Energy,Energy +510314,Energy,Energy +510313,Energy,Energy +510312,Energy,Energy +507351,Energy,Energy +501731,Energy,Energy +498179,Energy,Energy +498177,Energy,Energy +495145,Energy,Energy +492769,Energy,Energy +492766,Energy,Energy +491024,Energy,Energy +487856,Energy,Energy +487846,Energy,Energy +469178,Energy,Energy +467507,Energy,Energy +465430,Energy,Energy +465429,Energy,Energy +465428,Energy,Energy +465426,Energy,Energy +465425,Energy,Energy +544312,Energy,Energy +544306,Energy,Energy +544305,Energy,Energy +544302,Energy,Energy +489199,Economic Development,Economic Development +489197,Economic Development,Economic Development +542441,Economic Development,Economic Development +542440,Economic Development,Economic Development +538965,Economic Development,Economic Development +538964,Economic Development,Economic Development +538963,Economic Development,Economic Development +500436,Economic Development,Economic Development +497996,Economic Development,Economic Development +492746,Economic Development,Economic Development +489214,Economic Development,Economic Development +489202,Environment,Environment +489199,Environment,Environment +542441,Environment,Environment +542440,Environment,Environment +538965,Environment,Environment +538964,Environment,Environment +538963,Environment,Environment +497996,Environment,Environment +492746,Environment,Environment +462838,Transportation,Transportation +463208,Health,Health +462842,Health,Health +542896,Health,Health +541005,Health,Health +523843,Health,Health +523431,Health,Health +523428,Health,Health +523427,Health,Health +520766,Health,Health +518645,Health,Health +516543,Health,Health +516082,Health,Health +515315,Health,Health +506755,Health,Health +493792,Health,Health +493791,Health,Health +492232,Health,Health +491844,Health,Health +489245,Health,Health +488710,Health,Health +488709,Health,Health +486220,Health,Health +485654,Health,Health +485653,Health,Health +483384,Health,Health +483245,Health,Health +482896,Health,Health +482717,Health,Health +482714,Health,Health +482711,Health,Health +481224,Health,Health +481208,Health,Health +480534,Health,Health +480396,Health,Health +479068,Health,Health +478708,Health,Health +478621,Health,Health +478620,Health,Health +478619,Health,Health +478596,Health,Health +478449,Health,Health +477511,Health,Health +476933,Health,Health +476932,Health,Health +474312,Health,Health +474310,Health,Health +474206,Health,Health +472130,Health,Health +465350,Health,Health +496541,Health,Health +495590,Health,Health +509166,Health,Health +509163,Health,Health +500715,Health,Health +500284,Health,Health +512849,Economic Development,Economic Development +512847,Economic Development,Economic Development +466088,Economic Development,Economic Development +463295,Economic Development,Economic Development +515397,Economic Development,Economic Development +513916,Economic Development,Economic Development +513914,Economic Development,Economic Development +513913,Economic Development,Economic Development +512880,Economic Development,Economic Development +512859,Economic Development,Economic Development +512857,Economic Development,Economic Development +512853,Economic Development,Economic Development +465318,Environment,Environment +465318,Municipalities,Municipalities +465318,Regional Development,Regional Development +509211,Transportation,Transportation +500444,Transportation,Transportation +486066,Transportation,Transportation +485755,Transportation,Transportation +480600,Transportation,Transportation +474545,Transportation,Transportation +469449,Transportation,Transportation +466242,Transportation,Transportation +465453,Transportation,Transportation +521185,Transportation,Transportation +520891,Transportation,Transportation +520613,Transportation,Transportation +466242,Environment,Environment +465453,Environment,Environment +520613,Environment,Environment +511668,Environment,Environment +509211,Environment,Environment +486066,Environment,Environment +485755,Environment,Environment +474545,Environment,Environment +465826,Industry,Industry +465826,Health,Health +462925,Health,Health +465444,Mining,Mining +474920,Immigration,Immigration +474918,Immigration,Immigration +474918,Justice and Law Enforcement,Justice and Law Enforcement +535012,Labour,Labour +481716,Intellectual Property,Intellectual Property +463056,Government Procurement,Government Procurement +496507,Agriculture,Agriculture +496505,Agriculture,Agriculture +463555,Agriculture,Agriculture +463554,Agriculture,Agriculture +463553,Agriculture,Agriculture +521407,Agriculture,Agriculture +521405,Agriculture,Agriculture +521404,Agriculture,Agriculture +496614,Agriculture,Agriculture +496562,Agriculture,Agriculture +496516,Agriculture,Agriculture +496514,Agriculture,Agriculture +463554,Consumer Issues,Consumer Issues +463553,Consumer Issues,Consumer Issues +521407,Consumer Issues,Consumer Issues +521405,Consumer Issues,Consumer Issues +521404,Consumer Issues,Consumer Issues +496614,Consumer Issues,Consumer Issues +496562,Consumer Issues,Consumer Issues +496516,Consumer Issues,Consumer Issues +496514,Consumer Issues,Consumer Issues +496508,Consumer Issues,Consumer Issues +496507,Consumer Issues,Consumer Issues +496505,Consumer Issues,Consumer Issues +521405,Economic Development,Economic Development +521404,Economic Development,Economic Development +521405,Environment,Environment +521404,Environment,Environment +521405,Health,Health +521404,Health,Health +463555,Health,Health +463554,Health,Health +463553,Health,Health +521405,Industry,Industry +521404,Industry,Industry +521407,International Trade,International Trade +521405,International Trade,International Trade +496614,International Trade,International Trade +496562,International Trade,International Trade +496516,International Trade,International Trade +496514,International Trade,International Trade +496508,International Trade,International Trade +496507,International Trade,International Trade +496505,International Trade,International Trade +463555,International Trade,International Trade +463554,International Trade,International Trade +521405,Research and Development,Research and Development +521404,Research and Development,Research and Development +521405,Small Business,Small Business +504072,Health,Health +469759,Health,Health +518914,Agriculture,Agriculture +504072,Agriculture,Agriculture +495451,Labour,Labour +489975,Transportation,Transportation +472560,Transportation,Transportation +502046,Transportation,Transportation +495450,Transportation,Transportation +486699,Employment and Training,Employment and Training +472560,Employment and Training,Employment and Training +502046,Employment and Training,Employment and Training +495450,Employment and Training,Employment and Training +495426,Employment and Training,Employment and Training +486699,Industry,Industry +472560,Industry,Industry +495450,Industry,Industry +495426,Industry,Industry +504749,Research and Development,Research and Development +504748,Research and Development,Research and Development +525598,Research and Development,Research and Development +512463,Research and Development,Research and Development +486733,Health,Health +486694,Health,Health +525598,Health,Health +512463,Health,Health +511042,Health,Health +508131,Health,Health +504749,Health,Health +504748,Health,Health +503136,Health,Health +498867,Health,Health +495427,Health,Health +493034,Health,Health +493033,Health,Health +508137,Government Procurement,Government Procurement +466092,International Trade,International Trade +466089,International Trade,International Trade +464042,Climate,Climate +464042,Environment,Environment +464027,Climate,Climate +538209,Climate,Climate +464040,Environment,Environment +464027,Environment,Environment +538209,Environment,Environment +513175,Environment,Environment +463932,Immigration,Immigration +464339,Economic Development,Economic Development +464339,Health,Health +464339,Industry,Industry +469168,Sports,Sports +469167,Sports,Sports +470616,Sports,Sports +488807,Agriculture,Agriculture +467269,Agriculture,Agriculture +542959,Agriculture,Agriculture +542957,Agriculture,Agriculture +488808,Economic Development,Economic Development +488807,Economic Development,Economic Development +500107,Employment and Training,Employment and Training +463126,Energy,Energy +498834,Employment and Training,Employment and Training +495280,Employment and Training,Employment and Training +528639,Employment and Training,Employment and Training +525749,Employment and Training,Employment and Training +525606,Employment and Training,Employment and Training +495280,Industry,Industry +484473,Industry,Industry +498838,Industry,Industry +477493,Immigration,Immigration +474881,Immigration,Immigration +508141,Immigration,Immigration +479500,Immigration,Immigration +479497,Immigration,Immigration +479479,Immigration,Immigration +477518,Immigration,Immigration +467194,Health,Health +467191,Health,Health +495716,Health,Health +495477,Health,Health +495476,Health,Health +465984,Health,Health +465984,International Trade,International Trade +465225,Budget,Budget +465175,Budget,Budget +473500,Budget,Budget +465270,Budget,Budget +465236,Budget,Budget +465225,Economic Development,Economic Development +465175,Economic Development,Economic Development +473500,Economic Development,Economic Development +468852,Economic Development,Economic Development +465270,Economic Development,Economic Development +465236,Economic Development,Economic Development +465225,Energy,Energy +465175,Energy,Energy +473500,Energy,Energy +468852,Energy,Energy +465270,Energy,Energy +465236,Energy,Energy +465175,Environment,Environment +473500,Environment,Environment +468852,Environment,Environment +465270,Environment,Environment +465236,Environment,Environment +465226,Environment,Environment +465225,Financial Institutions,Financial Institutions +465175,Financial Institutions,Financial Institutions +473500,Financial Institutions,Financial Institutions +468852,Financial Institutions,Financial Institutions +465270,Financial Institutions,Financial Institutions +465236,Financial Institutions,Financial Institutions +465225,Research and Development,Research and Development +465175,Research and Development,Research and Development +473500,Research and Development,Research and Development +468852,Research and Development,Research and Development +465270,Research and Development,Research and Development +465236,Research and Development,Research and Development +465225,Small Business,Small Business +465175,Small Business,Small Business +473500,Small Business,Small Business +468852,Small Business,Small Business +465270,Small Business,Small Business +465236,Small Business,Small Business +465225,Taxation and Finance,Taxation and Finance +465175,Taxation and Finance,Taxation and Finance +473500,Taxation and Finance,Taxation and Finance +468852,Taxation and Finance,Taxation and Finance +465270,Taxation and Finance,Taxation and Finance +465236,Taxation and Finance,Taxation and Finance +466013,Agriculture,Agriculture +466013,Health,Health +501511,Health,Health +475125,International Trade,International Trade +466013,International Trade,International Trade +538821,Transportation,Transportation +538820,Transportation,Transportation +495083,Transportation,Transportation +465385,Energy,Energy +465383,Energy,Energy +465389,Energy,Energy +465388,Energy,Energy +465387,Energy,Energy +465056,Economic Development,Economic Development +465056,Industry,Industry +468204,Mining,Mining +466966,Environment,Environment +463189,Environment,Environment +540022,Environment,Environment +502341,Environment,Environment +466976,Environment,Environment +466968,Environment,Environment +468655,Environment,Environment +536301,Health,Health +535930,Health,Health +532499,Health,Health +532498,Health,Health +530974,Health,Health +523565,Health,Health +511962,Health,Health +506415,Health,Health +506149,Health,Health +492948,Health,Health +492555,Health,Health +489149,Health,Health +489148,Health,Health +485450,Health,Health +485449,Health,Health +544823,Health,Health +544692,Health,Health +540894,Health,Health +539627,Health,Health +539625,Health,Health +536505,Health,Health +464059,Immigration,Immigration +464055,Immigration,Immigration +464059,Infrastructure,Infrastructure +464055,Infrastructure,Infrastructure +463502,Infrastructure,Infrastructure +463502,Economic Development,Economic Development +463502,Regional Development,Regional Development +485913,Climate,Climate +518669,Energy,Energy +518668,Energy,Energy +503737,Energy,Energy +492638,Energy,Energy +485913,Energy,Energy +521704,Energy,Energy +518671,Energy,Energy +527701,Small Business,Small Business +502637,Government Procurement,Government Procurement +505536,Budget,Budget +484111,Budget,Budget +463271,Budget,Budget +525210,Budget,Budget +510063,Budget,Budget +507311,Budget,Budget +465256,Infrastructure,Infrastructure +542166,Economic Development,Economic Development +506150,Economic Development,Economic Development +465872,Economic Development,Economic Development +465872,Energy,Energy +465872,Environment,Environment +476406,Fisheries,Fisheries +476405,Fisheries,Fisheries +478223,Fisheries,Fisheries +478222,Fisheries,Fisheries +466076,Government Procurement,Government Procurement +463296,Government Procurement,Government Procurement +481557,Government Procurement,Government Procurement +466086,Government Procurement,Government Procurement +463305,Economic Development,Economic Development +538570,Economic Development,Economic Development +538569,Economic Development,Economic Development +528660,Economic Development,Economic Development +500007,Economic Development,Economic Development +532698,Education,Education +532692,Education,Education +515313,Education,Education +512311,Education,Education +512195,Education,Education +512194,Education,Education +512193,Education,Education +504067,Education,Education +501449,Education,Education +500385,Education,Education +497882,Education,Education +497881,Education,Education +497880,Education,Education +497879,Education,Education +497877,Education,Education +497872,Education,Education +497870,Education,Education +497866,Education,Education +497864,Education,Education +497857,Education,Education +496399,Education,Education +496397,Education,Education +496396,Education,Education +482160,Education,Education +482158,Education,Education +482155,Education,Education +482151,Education,Education +482148,Education,Education +467401,Education,Education +544745,Education,Education +544745,Infrastructure,Infrastructure +544378,Infrastructure,Infrastructure +532698,Infrastructure,Infrastructure +532692,Infrastructure,Infrastructure +515313,Infrastructure,Infrastructure +512311,Infrastructure,Infrastructure +512195,Infrastructure,Infrastructure +512194,Infrastructure,Infrastructure +512193,Infrastructure,Infrastructure +504067,Infrastructure,Infrastructure +501449,Infrastructure,Infrastructure +500385,Infrastructure,Infrastructure +497882,Infrastructure,Infrastructure +497881,Infrastructure,Infrastructure +497880,Infrastructure,Infrastructure +497879,Infrastructure,Infrastructure +497877,Infrastructure,Infrastructure +497872,Infrastructure,Infrastructure +497870,Infrastructure,Infrastructure +497866,Infrastructure,Infrastructure +497864,Infrastructure,Infrastructure +497857,Infrastructure,Infrastructure +496399,Infrastructure,Infrastructure +496397,Infrastructure,Infrastructure +496396,Infrastructure,Infrastructure +482160,Infrastructure,Infrastructure +482158,Infrastructure,Infrastructure +482155,Infrastructure,Infrastructure +482151,Infrastructure,Infrastructure +482148,Infrastructure,Infrastructure +467401,Infrastructure,Infrastructure +467192,Infrastructure,Infrastructure +467190,Infrastructure,Infrastructure +467187,Infrastructure,Infrastructure +467185,Infrastructure,Infrastructure +467184,Infrastructure,Infrastructure +470127,Sports,Sports +489217,Transportation,Transportation +463369,Transportation,Transportation +488987,Agriculture,Agriculture +488978,Agriculture,Agriculture +532610,Agriculture,Agriculture +532609,Agriculture,Agriculture +532608,Agriculture,Agriculture +532607,Agriculture,Agriculture +532606,Agriculture,Agriculture +532605,Agriculture,Agriculture +532604,Agriculture,Agriculture +532603,Agriculture,Agriculture +532572,Agriculture,Agriculture +532571,Agriculture,Agriculture +532570,Agriculture,Agriculture +532569,Agriculture,Agriculture +532568,Agriculture,Agriculture +532567,Agriculture,Agriculture +532566,Agriculture,Agriculture +532565,Agriculture,Agriculture +488987,International Trade,International Trade +488978,International Trade,International Trade +532610,International Trade,International Trade +532609,International Trade,International Trade +532608,International Trade,International Trade +532607,International Trade,International Trade +532606,International Trade,International Trade +532605,International Trade,International Trade +532604,International Trade,International Trade +532603,International Trade,International Trade +532572,International Trade,International Trade +532571,International Trade,International Trade +532570,International Trade,International Trade +532569,International Trade,International Trade +532568,International Trade,International Trade +532567,International Trade,International Trade +532566,International Trade,International Trade +532565,International Trade,International Trade +463487,Environment,Environment +463434,Environment,Environment +463489,Environment,Environment +495608,Health,Health +529119,Taxation and Finance,Taxation and Finance +522506,Taxation and Finance,Taxation and Finance +534766,Taxation and Finance,Taxation and Finance +465309,International Development,International Development +465307,International Development,International Development +536068,International Development,International Development +536067,International Development,International Development +465311,International Development,International Development +465779,Taxation and Finance,Taxation and Finance +465781,Forestry,Forestry +465778,Forestry,Forestry +465788,Forestry,Forestry +465779,Budget,Budget +465778,Budget,Budget +465779,Small Business,Small Business +465508,Small Business,Small Business +465794,Small Business,Small Business +465793,Small Business,Small Business +465791,Small Business,Small Business +465789,Small Business,Small Business +465788,Small Business,Small Business +465787,Small Business,Small Business +465786,Small Business,Small Business +465785,Small Business,Small Business +465784,Small Business,Small Business +465782,Small Business,Small Business +465781,Small Business,Small Business +465778,Economic Development,Economic Development +465508,Economic Development,Economic Development +465794,Economic Development,Economic Development +465791,Economic Development,Economic Development +465789,Economic Development,Economic Development +465788,Economic Development,Economic Development +465787,Economic Development,Economic Development +465786,Economic Development,Economic Development +465785,Economic Development,Economic Development +465784,Economic Development,Economic Development +465782,Economic Development,Economic Development +465781,Economic Development,Economic Development +493899,Economic Development,Economic Development +465923,Economic Development,Economic Development +503053,Economic Development,Economic Development +493899,International Trade,International Trade +465923,International Trade,International Trade +503053,International Trade,International Trade +493899,Environment,Environment +507868,Health,Health +497233,Health,Health +496673,Health,Health +492007,Health,Health +488430,Health,Health +474535,Health,Health +469694,Health,Health +469290,Health,Health +469179,Health,Health +469072,Health,Health +469052,Health,Health +469051,Health,Health +468971,Health,Health +465673,Health,Health +465671,Health,Health +508158,Mining,Mining +506946,Mining,Mining +506814,Mining,Mining +506317,Mining,Mining +506316,Mining,Mining +503915,Mining,Mining +503845,Mining,Mining +503450,Mining,Mining +503027,Mining,Mining +494655,Mining,Mining +473995,Mining,Mining +471634,Mining,Mining +542270,Mining,Mining +537044,Mining,Mining +533498,Mining,Mining +533497,Mining,Mining +533143,Mining,Mining +533141,Mining,Mining +463523,Transportation,Transportation +463522,Transportation,Transportation +469361,Transportation,Transportation +481621,Education,Education +479205,Education,Education +504134,Education,Education +501278,Education,Education +501277,Education,Education +501276,Education,Education +501275,Education,Education +498583,Education,Education +495930,Education,Education +495929,Education,Education +495927,Education,Education +490799,Education,Education +490798,Education,Education +490797,Education,Education +487059,Education,Education +487058,Education,Education +484262,Education,Education +484261,Education,Education +484259,Education,Education +484258,Education,Education +481623,Education,Education +463597,Infrastructure,Infrastructure +463596,Infrastructure,Infrastructure +506955,Infrastructure,Infrastructure +506952,Infrastructure,Infrastructure +500151,Infrastructure,Infrastructure +500149,Infrastructure,Infrastructure +500147,Infrastructure,Infrastructure +483161,Infrastructure,Infrastructure +465066,Infrastructure,Infrastructure +463603,Infrastructure,Infrastructure +463599,Infrastructure,Infrastructure +463606,Education,Education +463604,Education,Education +468824,Education,Education +468822,Education,Education +468820,Education,Education +468818,Education,Education +466396,Education,Education +466393,Education,Education +466128,Education,Education +465420,Education,Education +465418,Education,Education +468784,Infrastructure,Infrastructure +468778,Infrastructure,Infrastructure +474838,Infrastructure,Infrastructure +474039,Infrastructure,Infrastructure +468817,Infrastructure,Infrastructure +468816,Infrastructure,Infrastructure +468815,Infrastructure,Infrastructure +468814,Infrastructure,Infrastructure +468813,Infrastructure,Infrastructure +468812,Infrastructure,Infrastructure +468811,Infrastructure,Infrastructure +474380,Agriculture,Agriculture +472622,Agriculture,Agriculture +463729,Agriculture,Agriculture +527909,Agriculture,Agriculture +513037,Agriculture,Agriculture +510839,Agriculture,Agriculture +481829,Agriculture,Agriculture +463729,Fisheries,Fisheries +470055,International Development,International Development +463763,International Development,International Development +534164,International Development,International Development +534081,International Development,International Development +534042,International Development,International Development +531219,International Development,International Development +531217,International Development,International Development +464301,Health,Health +463858,Consumer Issues,Consumer Issues +463856,Consumer Issues,Consumer Issues +493406,Consumer Issues,Consumer Issues +491282,Consumer Issues,Consumer Issues +476008,Economic Development,Economic Development +531593,Economic Development,Economic Development +531592,Economic Development,Economic Development +525942,Economic Development,Economic Development +525941,Economic Development,Economic Development +525939,Economic Development,Economic Development +522727,Economic Development,Economic Development +520091,Economic Development,Economic Development +520086,Economic Development,Economic Development +517555,Economic Development,Economic Development +515586,Economic Development,Economic Development +515585,Economic Development,Economic Development +495643,Economic Development,Economic Development +541414,Economic Development,Economic Development +541413,Economic Development,Economic Development +541407,Economic Development,Economic Development +534841,Economic Development,Economic Development +534833,Economic Development,Economic Development +534831,Economic Development,Economic Development +467369,Fisheries,Fisheries +467325,Fisheries,Fisheries +517577,Fisheries,Fisheries +505448,Fisheries,Fisheries +498656,Fisheries,Fisheries +498655,Fisheries,Fisheries +495645,Fisheries,Fisheries +495644,Fisheries,Fisheries +495643,Fisheries,Fisheries +493097,Fisheries,Fisheries +493094,Fisheries,Fisheries +493092,Fisheries,Fisheries +493091,Fisheries,Fisheries +481853,Fisheries,Fisheries +481850,Fisheries,Fisheries +480076,Fisheries,Fisheries +480069,Fisheries,Fisheries +480061,Fisheries,Fisheries +480056,Fisheries,Fisheries +477095,Fisheries,Fisheries +477093,Fisheries,Fisheries +477091,Fisheries,Fisheries +475113,Fisheries,Fisheries +472759,Fisheries,Fisheries +472758,Fisheries,Fisheries +488605,Government Procurement,Government Procurement +488604,Government Procurement,Government Procurement +476207,Security,Security +472894,Security,Security +491432,Economic Development,Economic Development +481335,Health,Health +481335,Taxation and Finance,Taxation and Finance +478278,Education,Education +475899,Education,Education +505293,Education,Education +493544,Education,Education +491593,Education,Education +491589,Education,Education +488252,Education,Education +485332,Education,Education +485331,Education,Education +482432,Education,Education +482431,Education,Education +480140,Education,Education +478284,Education,Education +478283,Education,Education +478277,Employment and Training,Employment and Training +475899,Employment and Training,Employment and Training +505293,Employment and Training,Employment and Training +493544,Employment and Training,Employment and Training +491593,Employment and Training,Employment and Training +491589,Employment and Training,Employment and Training +488252,Employment and Training,Employment and Training +485332,Employment and Training,Employment and Training +485331,Employment and Training,Employment and Training +482432,Employment and Training,Employment and Training +482431,Employment and Training,Employment and Training +478284,Employment and Training,Employment and Training +478283,Employment and Training,Employment and Training +478281,Employment and Training,Employment and Training +478277,Industry,Industry +475899,Industry,Industry +505293,Industry,Industry +493544,Industry,Industry +491593,Industry,Industry +491589,Industry,Industry +488252,Industry,Industry +485332,Industry,Industry +485331,Industry,Industry +482432,Industry,Industry +482431,Industry,Industry +478284,Industry,Industry +478283,Industry,Industry +478281,Industry,Industry +478277,International Relations,International Relations +475899,International Relations,International Relations +505293,International Relations,International Relations +491593,International Relations,International Relations +491589,International Relations,International Relations +485332,International Relations,International Relations +485331,International Relations,International Relations +482432,International Relations,International Relations +478284,International Relations,International Relations +478283,International Relations,International Relations +478281,International Relations,International Relations +464128,Employment and Training,Employment and Training +464126,Employment and Training,Employment and Training +481690,Employment and Training,Employment and Training +474091,Employment and Training,Employment and Training +464136,Employment and Training,Employment and Training +464135,Employment and Training,Employment and Training +464134,Employment and Training,Employment and Training +464133,Employment and Training,Employment and Training +464132,Employment and Training,Employment and Training +464131,Employment and Training,Employment and Training +464130,Employment and Training,Employment and Training +478478,Infrastructure,Infrastructure +474910,Infrastructure,Infrastructure +477127,Taxation and Finance,Taxation and Finance +540960,Taxation and Finance,Taxation and Finance +478472,Infrastructure,Infrastructure +478471,Infrastructure,Infrastructure +465697,Energy,Energy +465696,Energy,Energy +465695,Energy,Energy +465516,Energy,Energy +474030,Energy,Energy +466905,Energy,Energy +466461,Energy,Energy +465695,Climate,Climate +465516,Climate,Climate +474030,Climate,Climate +466905,Climate,Climate +466461,Climate,Climate +466458,Climate,Climate +465697,Climate,Climate +465697,Environment,Environment +465696,Environment,Environment +466461,Environment,Environment +466461,Infrastructure,Infrastructure +466458,Infrastructure,Infrastructure +474030,Infrastructure,Infrastructure +465696,Economic Development,Economic Development +465695,Economic Development,Economic Development +474030,Economic Development,Economic Development +466905,Economic Development,Economic Development +466461,Economic Development,Economic Development +472181,Regional Development,Regional Development +471357,Regional Development,Regional Development +465016,Climate,Climate +465015,Climate,Climate +526597,Climate,Climate +465016,Environment,Environment +465015,Environment,Environment +479327,Environment,Environment +478172,Environment,Environment +470195,Environment,Environment +470192,Environment,Environment +470183,Environment,Environment +464376,Infrastructure,Infrastructure +464374,Infrastructure,Infrastructure +539403,Infrastructure,Infrastructure +516887,Infrastructure,Infrastructure +495461,Infrastructure,Infrastructure +495456,Infrastructure,Infrastructure +487003,Infrastructure,Infrastructure +487000,Infrastructure,Infrastructure +481130,Infrastructure,Infrastructure +481129,Infrastructure,Infrastructure +481127,Infrastructure,Infrastructure +479722,Infrastructure,Infrastructure +479718,Infrastructure,Infrastructure +479717,Infrastructure,Infrastructure +479713,Infrastructure,Infrastructure +479709,Infrastructure,Infrastructure +479707,Infrastructure,Infrastructure +479704,Infrastructure,Infrastructure +476910,Infrastructure,Infrastructure +476909,Infrastructure,Infrastructure +476556,Infrastructure,Infrastructure +476554,Infrastructure,Infrastructure +476553,Infrastructure,Infrastructure +474352,Infrastructure,Infrastructure +474351,Infrastructure,Infrastructure +473069,Infrastructure,Infrastructure +473067,Infrastructure,Infrastructure +470470,Infrastructure,Infrastructure +470466,Infrastructure,Infrastructure +468215,Infrastructure,Infrastructure +467147,Infrastructure,Infrastructure +537659,Economic Development,Economic Development +536487,Economic Development,Economic Development +471596,Economic Development,Economic Development +465343,Taxation and Finance,Taxation and Finance +540692,Industry,Industry +538671,Industry,Industry +465345,Industry,Industry +465343,Industry,Industry +465343,International Trade,International Trade +465342,International Trade,International Trade +495106,International Trade,International Trade +490886,International Trade,International Trade +487067,International Trade,International Trade +487066,International Trade,International Trade +487065,International Trade,International Trade +487064,International Trade,International Trade +487063,International Trade,International Trade +487062,International Trade,International Trade +481352,International Trade,International Trade +481351,International Trade,International Trade +481350,International Trade,International Trade +481349,International Trade,International Trade +481348,International Trade,International Trade +481347,International Trade,International Trade +481346,International Trade,International Trade +481345,International Trade,International Trade +478919,International Trade,International Trade +478918,International Trade,International Trade +478917,International Trade,International Trade +478916,International Trade,International Trade +478914,International Trade,International Trade +477175,International Trade,International Trade +477174,International Trade,International Trade +477173,International Trade,International Trade +477170,International Trade,International Trade +474604,International Trade,International Trade +472162,International Trade,International Trade +472158,International Trade,International Trade +472149,International Trade,International Trade +472137,International Trade,International Trade +470333,International Trade,International Trade +464581,International Trade,International Trade +464504,International Trade,International Trade +526129,International Trade,International Trade +526117,International Trade,International Trade +522693,International Trade,International Trade +522692,International Trade,International Trade +522691,International Trade,International Trade +519313,International Trade,International Trade +517881,International Trade,International Trade +515775,International Trade,International Trade +514117,International Trade,International Trade +514115,International Trade,International Trade +509821,International Trade,International Trade +509820,International Trade,International Trade +506984,International Trade,International Trade +506981,International Trade,International Trade +506978,International Trade,International Trade +504586,International Trade,International Trade +504583,International Trade,International Trade +498752,International Trade,International Trade +498750,International Trade,International Trade +464581,Economic Development,Economic Development +464504,Economic Development,Economic Development +498742,Economic Development,Economic Development +484689,Economic Development,Economic Development +484688,Economic Development,Economic Development +484687,Economic Development,Economic Development +484686,Economic Development,Economic Development +484685,Economic Development,Economic Development +484684,Economic Development,Economic Development +484681,Economic Development,Economic Development +484680,Economic Development,Economic Development +484679,Economic Development,Economic Development +484677,Economic Development,Economic Development +484676,Economic Development,Economic Development +477175,Economic Development,Economic Development +477174,Economic Development,Economic Development +477173,Economic Development,Economic Development +477172,Economic Development,Economic Development +477170,Economic Development,Economic Development +474604,Economic Development,Economic Development +474602,Economic Development,Economic Development +474601,Economic Development,Economic Development +474600,Economic Development,Economic Development +472162,Economic Development,Economic Development +472158,Economic Development,Economic Development +472149,Economic Development,Economic Development +472141,Economic Development,Economic Development +472137,Economic Development,Economic Development +470333,Economic Development,Economic Development +464581,Budget,Budget +464504,Budget,Budget +477175,Budget,Budget +477174,Budget,Budget +477173,Budget,Budget +477170,Budget,Budget +472162,Budget,Budget +472158,Budget,Budget +472149,Budget,Budget +472137,Budget,Budget +464811,Environment,Environment +464799,Environment,Environment +468611,Forestry,Forestry +468609,Forestry,Forestry +468610,Economic Development,Economic Development +468609,Economic Development,Economic Development +491511,Economic Development,Economic Development +487533,Economic Development,Economic Development +468613,Economic Development,Economic Development +468612,Infrastructure,Infrastructure +468611,Infrastructure,Infrastructure +491511,Infrastructure,Infrastructure +487533,Infrastructure,Infrastructure +487533,Transportation,Transportation +468612,Transportation,Transportation +469477,Consumer Issues,Consumer Issues +469477,Economic Development,Economic Development +469477,Health,Health +469481,Industry,Industry +469477,Industry,Industry +469481,Justice and Law Enforcement,Justice and Law Enforcement +469481,Labour,Labour +469477,Research and Development,Research and Development +477612,Education,Education +477611,Education,Education +465044,Environment,Environment +525754,Environment,Environment +494592,Environment,Environment +488512,Environment,Environment +488483,Environment,Environment +484366,Environment,Environment +474008,Environment,Environment +514566,Labour,Labour +465309,Education,Education +465307,Education,Education +536068,Education,Education +536067,Education,Education +494036,Education,Education +465311,Education,Education +519979,Health,Health +468836,Environment,Environment +468835,Environment,Environment +509742,Environment,Environment +507182,Environment,Environment +503501,Environment,Environment +503499,Environment,Environment +503212,Environment,Environment +503210,Environment,Environment +503208,Environment,Environment +500929,Environment,Environment +500795,Environment,Environment +500438,Environment,Environment +499999,Environment,Environment +497291,Environment,Environment +496369,Environment,Environment +493960,Environment,Environment +492127,Environment,Environment +489414,Environment,Environment +488542,Environment,Environment +488538,Environment,Environment +486135,Environment,Environment +485485,Environment,Environment +481632,Environment,Environment +481425,Environment,Environment +481183,Environment,Environment +480936,Environment,Environment +478401,Environment,Environment +477089,Environment,Environment +472376,Environment,Environment +471773,Environment,Environment +468835,Energy,Energy +465220,Energy,Energy +509742,Energy,Energy +507182,Energy,Energy +503501,Energy,Energy +503499,Energy,Energy +503210,Energy,Energy +503208,Energy,Energy +500929,Energy,Energy +500795,Energy,Energy +500438,Energy,Energy +499999,Energy,Energy +497291,Energy,Energy +496369,Energy,Energy +493960,Energy,Energy +492127,Energy,Energy +489414,Energy,Energy +488542,Energy,Energy +488538,Energy,Energy +486135,Energy,Energy +485485,Energy,Energy +481632,Energy,Energy +481425,Energy,Energy +481183,Energy,Energy +480936,Energy,Energy +478401,Energy,Energy +477089,Energy,Energy +472376,Energy,Energy +471773,Energy,Energy +471540,Energy,Energy +481425,Taxation and Finance,Taxation and Finance +477089,Taxation and Finance,Taxation and Finance +509742,Taxation and Finance,Taxation and Finance +507182,Taxation and Finance,Taxation and Finance +503501,Taxation and Finance,Taxation and Finance +503499,Taxation and Finance,Taxation and Finance +503212,Taxation and Finance,Taxation and Finance +503210,Taxation and Finance,Taxation and Finance +503208,Taxation and Finance,Taxation and Finance +500929,Taxation and Finance,Taxation and Finance +499999,Taxation and Finance,Taxation and Finance +497291,Taxation and Finance,Taxation and Finance +496369,Taxation and Finance,Taxation and Finance +493960,Taxation and Finance,Taxation and Finance +492127,Taxation and Finance,Taxation and Finance +489414,Taxation and Finance,Taxation and Finance +521399,Energy,Energy +517315,Energy,Energy +516599,Energy,Energy +515975,Energy,Energy +515974,Energy,Energy +514346,Energy,Energy +513804,Energy,Energy +509744,Energy,Energy +503510,Energy,Energy +503508,Energy,Energy +503504,Energy,Energy +503213,Energy,Energy +503209,Energy,Energy +500930,Energy,Energy +500000,Energy,Energy +497292,Energy,Energy +496370,Energy,Energy +494469,Energy,Energy +494143,Energy,Energy +489416,Energy,Energy +488539,Energy,Energy +488528,Energy,Energy +486136,Energy,Energy +485497,Energy,Energy +481633,Energy,Energy +480988,Energy,Energy +480938,Energy,Energy +478402,Energy,Energy +477087,Energy,Energy +473859,Energy,Energy +471541,Energy,Energy +471325,Energy,Energy +468840,Energy,Energy +468839,Energy,Energy +485497,Taxation and Finance,Taxation and Finance +477087,Taxation and Finance,Taxation and Finance +517315,Taxation and Finance,Taxation and Finance +516599,Taxation and Finance,Taxation and Finance +515975,Taxation and Finance,Taxation and Finance +515974,Taxation and Finance,Taxation and Finance +509744,Taxation and Finance,Taxation and Finance +503504,Taxation and Finance,Taxation and Finance +503213,Taxation and Finance,Taxation and Finance +503209,Taxation and Finance,Taxation and Finance +500930,Taxation and Finance,Taxation and Finance +500000,Taxation and Finance,Taxation and Finance +497292,Taxation and Finance,Taxation and Finance +496370,Taxation and Finance,Taxation and Finance +469424,Health,Health +469423,Health,Health +472395,Health,Health +472234,Health,Health +472233,Health,Health +472231,Health,Health +472230,Health,Health +491495,Environment,Environment +491483,Environment,Environment +491483,Economic Development,Economic Development +491475,Economic Development,Economic Development +513407,Economic Development,Economic Development +513406,Economic Development,Economic Development +493653,Economic Development,Economic Development +475062,Health,Health +475060,Health,Health +540415,Health,Health +536470,Health,Health +527747,Health,Health +511663,Health,Health +509707,Health,Health +508590,Health,Health +508588,Health,Health +508585,Health,Health +508583,Health,Health +508581,Health,Health +508577,Health,Health +496873,Health,Health +496872,Health,Health +496871,Health,Health +496870,Health,Health +496869,Health,Health +496867,Health,Health +496866,Health,Health +496865,Health,Health +496864,Health,Health +496863,Health,Health +496862,Health,Health +496861,Health,Health +496860,Health,Health +496859,Health,Health +492059,Health,Health +492058,Health,Health +544981,Regional Development,Regional Development +544980,Regional Development,Regional Development +544983,Regional Development,Regional Development +544979,Environment,Environment +544981,Economic Development,Economic Development +544980,Economic Development,Economic Development +544980,Infrastructure,Infrastructure +544979,Infrastructure,Infrastructure +503664,Infrastructure,Infrastructure +496728,Infrastructure,Infrastructure +471300,Infrastructure,Infrastructure +544983,Infrastructure,Infrastructure +544982,Infrastructure,Infrastructure +478648,Economic Development,Economic Development +478647,Economic Development,Economic Development +489993,Research and Development,Research and Development +489916,Research and Development,Research and Development +481978,Research and Development,Research and Development +481977,Research and Development,Research and Development +478769,Research and Development,Research and Development +478768,Research and Development,Research and Development +478767,Research and Development,Research and Development +478764,Research and Development,Research and Development +478763,Research and Development,Research and Development +478762,Research and Development,Research and Development +478761,Research and Development,Research and Development +544838,Research and Development,Research and Development +544836,Research and Development,Research and Development +509769,Research and Development,Research and Development +465371,Climate,Climate +465605,Economic Development,Economic Development +465340,Economic Development,Economic Development +509025,Agriculture,Agriculture +509024,Agriculture,Agriculture +523721,Budget,Budget +520795,Budget,Budget +523721,Environment,Environment +503161,Environment,Environment +506563,Health,Health +503161,Health,Health +465448,Health,Health +465331,Health,Health +542382,Health,Health +527243,Health,Health +526930,Health,Health +524372,Health,Health +523721,Health,Health +523661,Health,Health +523639,Health,Health +522781,Health,Health +521319,Health,Health +520795,Health,Health +465331,Taxation and Finance,Taxation and Finance +496860,Budget,Budget +496859,Budget,Budget +492058,Budget,Budget +511663,Budget,Budget +508590,Budget,Budget +508585,Budget,Budget +508577,Budget,Budget +496873,Budget,Budget +496872,Budget,Budget +496871,Budget,Budget +496870,Budget,Budget +496869,Budget,Budget +496867,Budget,Budget +496866,Budget,Budget +496865,Budget,Budget +496864,Budget,Budget +496863,Budget,Budget +496862,Budget,Budget +496870,Research and Development,Research and Development +496869,Research and Development,Research and Development +496867,Research and Development,Research and Development +496866,Research and Development,Research and Development +496865,Research and Development,Research and Development +496864,Research and Development,Research and Development +496863,Research and Development,Research and Development +496862,Research and Development,Research and Development +496861,Research and Development,Research and Development +496860,Research and Development,Research and Development +496859,Research and Development,Research and Development +486173,Research and Development,Research and Development +475062,Research and Development,Research and Development +475060,Research and Development,Research and Development +496873,Research and Development,Research and Development +496872,Research and Development,Research and Development +525027,Climate,Climate +519494,Climate,Climate +508072,Climate,Climate +495051,Climate,Climate +495049,Climate,Climate +495047,Climate,Climate +495044,Climate,Climate +495042,Climate,Climate +492924,Climate,Climate +492923,Climate,Climate +492921,Climate,Climate +490176,Climate,Climate +486540,Climate,Climate +486539,Climate,Climate +483824,Climate,Climate +483823,Climate,Climate +481232,Climate,Climate +477473,Climate,Climate +477138,Climate,Climate +475135,Climate,Climate +474424,Climate,Climate +471967,Climate,Climate +471961,Climate,Climate +469790,Climate,Climate +469754,Climate,Climate +469753,Climate,Climate +469752,Climate,Climate +469746,Climate,Climate +465395,Climate,Climate +465712,Housing,Housing +465700,Housing,Housing +525027,Housing,Housing +509961,Housing,Housing +508082,Housing,Housing +505305,Housing,Housing +495441,Housing,Housing +468025,Regional Development,Regional Development +468023,Regional Development,Regional Development +474009,Regional Development,Regional Development +468025,Research and Development,Research and Development +468023,Research and Development,Research and Development +468025,Security,Security +468023,Security,Security +474009,Security,Security +467791,Immigration,Immigration +465688,Immigration,Immigration +523894,Budget,Budget +523884,Budget,Budget +476229,Budget,Budget +474568,Budget,Budget +465990,Budget,Budget +465441,Budget,Budget +527468,Budget,Budget +527452,Budget,Budget +478032,Budget,Budget +465637,Budget,Budget +500306,Budget,Budget +500304,Budget,Budget +499871,Budget,Budget +499870,Budget,Budget +499869,Budget,Budget +499868,Budget,Budget +499867,Budget,Budget +499866,Budget,Budget +498664,Budget,Budget +498660,Budget,Budget +498658,Budget,Budget +498657,Budget,Budget +494944,Budget,Budget +494942,Budget,Budget +494934,Budget,Budget +485925,Budget,Budget +494931,Climate,Climate +481056,Climate,Climate +500304,Climate,Climate +498664,Climate,Climate +498658,Climate,Climate +478032,Economic Development,Economic Development +478026,Economic Development,Economic Development +500304,Economic Development,Economic Development +499866,Economic Development,Economic Development +498660,Economic Development,Economic Development +494944,Economic Development,Economic Development +494934,Economic Development,Economic Development +485925,Economic Development,Economic Development +481215,Economic Development,Economic Development +481198,Economic Development,Economic Development +481197,Economic Development,Economic Development +481196,Economic Development,Economic Development +481056,Economic Development,Economic Development +478032,Environment,Environment +465637,Environment,Environment +500306,Environment,Environment +500304,Environment,Environment +499871,Environment,Environment +498664,Environment,Environment +498658,Environment,Environment +498657,Environment,Environment +494944,Environment,Environment +494942,Environment,Environment +494934,Environment,Environment +494931,Environment,Environment +485925,Environment,Environment +481215,Environment,Environment +481198,Environment,Environment +481197,Environment,Environment +481196,Environment,Environment +481177,Environment,Environment +481215,Infrastructure,Infrastructure +478038,Infrastructure,Infrastructure +478038,Municipalities,Municipalities +465637,Municipalities,Municipalities +485925,Municipalities,Municipalities +481198,Regional Development,Regional Development +465637,Research and Development,Research and Development +487830,Economic Development,Economic Development +475264,Economic Development,Economic Development +466493,Economic Development,Economic Development +466491,Economic Development,Economic Development +466489,Economic Development,Economic Development +496070,Economic Development,Economic Development +492847,Economic Development,Economic Development +492844,Economic Development,Economic Development +487835,Economic Development,Economic Development +487833,Economic Development,Economic Development +466491,Regional Development,Regional Development +466489,Regional Development,Regional Development +496077,Regional Development,Regional Development +492847,Regional Development,Regional Development +492844,Regional Development,Regional Development +490435,Regional Development,Regional Development +487836,Regional Development,Regional Development +487835,Regional Development,Regional Development +487820,Regional Development,Regional Development +475267,Regional Development,Regional Development +475265,Regional Development,Regional Development +475261,Regional Development,Regional Development +475260,Regional Development,Regional Development +473050,Regional Development,Regional Development +473048,Regional Development,Regional Development +473047,Regional Development,Regional Development +473040,Regional Development,Regional Development +473016,Regional Development,Regional Development +466491,Research and Development,Research and Development +466486,Research and Development,Research and Development +490462,Research and Development,Research and Development +481817,Research and Development,Research and Development +475267,Research and Development,Research and Development +487838,Small Business,Small Business +487836,Small Business,Small Business +487835,Small Business,Small Business +487833,Small Business,Small Business +487830,Small Business,Small Business +484870,Small Business,Small Business +481817,Small Business,Small Business +475267,Small Business,Small Business +475265,Small Business,Small Business +475264,Small Business,Small Business +475260,Small Business,Small Business +473050,Small Business,Small Business +473048,Small Business,Small Business +473047,Small Business,Small Business +473040,Small Business,Small Business +466493,Small Business,Small Business +466491,Small Business,Small Business +466489,Small Business,Small Business +496077,Small Business,Small Business +496076,Small Business,Small Business +496075,Small Business,Small Business +496070,Small Business,Small Business +492847,Small Business,Small Business +492844,Small Business,Small Business +490491,Small Business,Small Business +490488,Small Business,Small Business +490482,Small Business,Small Business +490478,Small Business,Small Business +490475,Small Business,Small Business +490473,Small Business,Small Business +490469,Small Business,Small Business +490465,Small Business,Small Business +490462,Small Business,Small Business +490459,Small Business,Small Business +490457,Small Business,Small Business +490456,Small Business,Small Business +490452,Small Business,Small Business +490449,Small Business,Small Business +490446,Small Business,Small Business +490444,Small Business,Small Business +468683,Transportation,Transportation +468683,Consumer Issues,Consumer Issues +480238,Economic Development,Economic Development +466488,Economic Development,Economic Development +522599,Economic Development,Economic Development +520001,Economic Development,Economic Development +517386,Economic Development,Economic Development +487828,Economic Development,Economic Development +480238,Health,Health +466488,Health,Health +487828,Health,Health +487826,Health,Health +469246,Defence,Defence +469245,Defence,Defence +540106,Defence,Defence +540103,Defence,Defence +535736,Defence,Defence +526634,Defence,Defence +518236,Defence,Defence +518234,Defence,Defence +518228,Defence,Defence +518226,Defence,Defence +518211,Defence,Defence +518189,Defence,Defence +518186,Defence,Defence +515026,Defence,Defence +514954,Defence,Defence +514953,Defence,Defence +514952,Defence,Defence +514951,Defence,Defence +514950,Defence,Defence +514754,Defence,Defence +514753,Defence,Defence +514049,Defence,Defence +514047,Defence,Defence +514043,Defence,Defence +513111,Defence,Defence +513106,Defence,Defence +513105,Defence,Defence +505771,Defence,Defence +499601,Defence,Defence +499595,Defence,Defence +499591,Defence,Defence +499587,Defence,Defence +499581,Defence,Defence +499571,Defence,Defence +514043,Economic Development,Economic Development +513111,Economic Development,Economic Development +518236,Economic Development,Economic Development +518228,Economic Development,Economic Development +518226,Economic Development,Economic Development +518211,Economic Development,Economic Development +518189,Economic Development,Economic Development +518186,Economic Development,Economic Development +514954,Economic Development,Economic Development +514953,Economic Development,Economic Development +514952,Economic Development,Economic Development +514951,Economic Development,Economic Development +514950,Economic Development,Economic Development +514754,Economic Development,Economic Development +514753,Economic Development,Economic Development +514049,Economic Development,Economic Development +499571,Government Procurement,Government Procurement +495984,Government Procurement,Government Procurement +469246,Government Procurement,Government Procurement +469245,Government Procurement,Government Procurement +540106,Government Procurement,Government Procurement +540103,Government Procurement,Government Procurement +535736,Government Procurement,Government Procurement +526634,Government Procurement,Government Procurement +518236,Government Procurement,Government Procurement +518228,Government Procurement,Government Procurement +518226,Government Procurement,Government Procurement +518189,Government Procurement,Government Procurement +518186,Government Procurement,Government Procurement +515026,Government Procurement,Government Procurement +514954,Government Procurement,Government Procurement +514953,Government Procurement,Government Procurement +514952,Government Procurement,Government Procurement +514951,Government Procurement,Government Procurement +514950,Government Procurement,Government Procurement +514754,Government Procurement,Government Procurement +514753,Government Procurement,Government Procurement +514049,Government Procurement,Government Procurement +514047,Government Procurement,Government Procurement +514043,Government Procurement,Government Procurement +513111,Government Procurement,Government Procurement +513106,Government Procurement,Government Procurement +513105,Government Procurement,Government Procurement +505771,Government Procurement,Government Procurement +499601,Government Procurement,Government Procurement +499595,Government Procurement,Government Procurement +499591,Government Procurement,Government Procurement +499587,Government Procurement,Government Procurement +540103,Industry,Industry +535736,Industry,Industry +526634,Industry,Industry +518236,Industry,Industry +518234,Industry,Industry +518228,Industry,Industry +518226,Industry,Industry +518211,Industry,Industry +518189,Industry,Industry +518186,Industry,Industry +515026,Industry,Industry +514954,Industry,Industry +514953,Industry,Industry +514952,Industry,Industry +514951,Industry,Industry +514950,Industry,Industry +514754,Industry,Industry +514753,Industry,Industry +514049,Industry,Industry +514047,Industry,Industry +514043,Industry,Industry +513111,Industry,Industry +513106,Industry,Industry +513105,Industry,Industry +499601,Industry,Industry +499595,Industry,Industry +499591,Industry,Industry +499587,Industry,Industry +499581,Industry,Industry +499571,Industry,Industry +495984,Industry,Industry +540103,Security,Security +520891,Infrastructure,Infrastructure +511668,Infrastructure,Infrastructure +500444,Infrastructure,Infrastructure +474545,Infrastructure,Infrastructure +470918,Pensions,Pensions +469183,Pensions,Pensions +477061,Health,Health +479362,Health,Health +472796,Infrastructure,Infrastructure +465793,Taxation and Finance,Taxation and Finance +465787,Forestry,Forestry +465793,Budget,Budget +465780,Small Business,Small Business +465780,Economic Development,Economic Development +500052,Economic Development,Economic Development +500052,International Trade,International Trade +465923,Environment,Environment +470475,Environment,Environment +463481,Privacy and Access to Information,Privacy and Access to Information +467334,International Trade,International Trade +465670,Health,Health +533135,Mining,Mining +480018,Transportation,Transportation +463524,Transportation,Transportation +463521,Regional Development,Regional Development +463521,Employment and Training,Employment and Training +463521,Small Business,Small Business +481622,Education,Education +463598,Infrastructure,Infrastructure +463608,Education,Education +463694,Environment,Environment +463692,Regional Development,Regional Development +463692,Industry,Industry +468810,Infrastructure,Infrastructure +474397,Agriculture,Agriculture +510839,Fisheries,Fisheries +463736,Economic Development,Economic Development +531215,International Development,International Development +464304,Health,Health +470151,Consumer Issues,Consumer Issues +476012,Economic Development,Economic Development +463858,Housing,Housing +463788,International Trade,International Trade +463788,Research and Development,Research and Development +531594,Economic Development,Economic Development +467418,Fisheries,Fisheries +488607,Government Procurement,Government Procurement +482891,Security,Security +465157,Budget,Budget +465157,Economic Development,Economic Development +465157,Forestry,Forestry +465157,Infrastructure,Infrastructure +465157,Transportation,Transportation +463932,Health,Health +463937,Climate,Climate +466666,Consumer Issues,Consumer Issues +466666,Environment,Environment +466666,Research and Development,Research and Development +491445,Economic Development,Economic Development +463958,Health,Health +483337,Health,Health +483337,Taxation and Finance,Taxation and Finance +511614,Agriculture,Agriculture +511614,Economic Development,Economic Development +464011,International Trade,International Trade +464011,International Relations,International Relations +464011,Regional Development,Regional Development +464011,International Development,International Development +464017,Research and Development,Research and Development +478281,Education,Education +478278,Employment and Training,Employment and Training +478278,Industry,Industry +478278,International Relations,International Relations +464129,Employment and Training,Employment and Training +464127,Employment and Training,Employment and Training +464186,Research and Development,Research and Development +481397,Infrastructure,Infrastructure +478478,Economic Development,Economic Development +464209,Taxation and Finance,Taxation and Finance +464214,Taxation and Finance,Taxation and Finance +464215,Taxation and Finance,Taxation and Finance +464220,Taxation and Finance,Taxation and Finance +464222,Taxation and Finance,Taxation and Finance +481777,Infrastructure,Infrastructure +465333,International Development,International Development +466458,Regional Development,Regional Development +466458,Energy,Energy +465696,Climate,Climate +466458,Environment,Environment +466905,Infrastructure,Infrastructure +466458,Economic Development,Economic Development +467633,Agriculture,Agriculture +474924,Regional Development,Regional Development +464331,Transportation,Transportation +465017,Climate,Climate +465017,Environment,Environment +464379,Infrastructure,Infrastructure +519998,Industry,Industry +464369,Budget,Budget +464369,Taxation and Finance,Taxation and Finance +464369,Economic Development,Economic Development +464369,International Trade,International Trade +464435,Budget,Budget +464435,International Trade,International Trade +464435,Taxation and Finance,Taxation and Finance +464435,Economic Development,Economic Development +464438,Economic Development,Economic Development +464460,Budget,Budget +464460,International Trade,International Trade +464460,Economic Development,Economic Development +464460,Taxation and Finance,Taxation and Finance +465345,Taxation and Finance,Taxation and Finance +465342,Industry,Industry +465345,International Trade,International Trade +465344,Industry,Industry +465344,Transportation,Transportation +464480,Budget,Budget +464480,International Trade,International Trade +464480,Economic Development,Economic Development +464480,Taxation and Finance,Taxation and Finance +464484,Budget,Budget +464484,International Trade,International Trade +464484,Taxation and Finance,Taxation and Finance +464484,Economic Development,Economic Development +464489,Budget,Budget +464489,International Trade,International Trade +464489,Economic Development,Economic Development +464489,Taxation and Finance,Taxation and Finance +464485,Intellectual Property,Intellectual Property +464505,Intellectual Property,Intellectual Property +498742,International Trade,International Trade +466909,Economic Development,Economic Development +470333,Budget,Budget +464509,Intellectual Property,Intellectual Property +464524,Intellectual Property,Intellectual Property +464528,Intellectual Property,Intellectual Property +464530,Intellectual Property,Intellectual Property +464533,Intellectual Property,Intellectual Property +464539,Intellectual Property,Intellectual Property +464542,Intellectual Property,Intellectual Property +464565,Intellectual Property,Intellectual Property +463254,International Trade,International Trade +463254,Economic Development,Economic Development +463254,Budget,Budget +463249,International Trade,International Trade +463249,Budget,Budget +482606,Religion,Religion +464699,Fisheries,Fisheries +464723,Economic Development,Economic Development +467582,Environment,Environment +464809,Agriculture,Agriculture +464809,Environment,Environment +491511,Forestry,Forestry +468611,Economic Development,Economic Development +468613,Infrastructure,Infrastructure +487533,Budget,Budget +491511,Transportation,Transportation +469481,Consumer Issues,Consumer Issues +469481,Economic Development,Economic Development +469481,Health,Health +469484,Industry,Industry +469481,International Trade,International Trade +469484,Justice and Law Enforcement,Justice and Law Enforcement +469484,Labour,Labour +469481,Regional Development,Regional Development +469481,Research and Development,Research and Development +469481,Small Business,Small Business +469481,Taxation and Finance,Taxation and Finance +477613,Education,Education +465045,Environment,Environment +468946,Labour,Labour +465310,Education,Education +522670,Education,Education +522670,Health,Health +471540,Environment,Environment +468836,Energy,Energy +485485,Taxation and Finance,Taxation and Finance +465664,Energy,Energy +489416,Taxation and Finance,Taxation and Finance +502496,Economic Development,Economic Development +502496,Environment,Environment +469425,Health,Health +493653,Environment,Environment +491495,Economic Development,Economic Development +465209,Economic Development,Economic Development +465210,Economic Development,Economic Development +465211,Economic Development,Economic Development +486737,Economic Development,Economic Development +465233,Employment and Training,Employment and Training +486173,Health,Health +544982,Regional Development,Regional Development +544980,Environment,Environment +544983,Economic Development,Economic Development +544981,Infrastructure,Infrastructure +497712,Economic Development,Economic Development +489920,International Development,International Development +496844,Research and Development,Research and Development +465372,Climate,Climate +465606,Economic Development,Economic Development +505834,Agriculture,Agriculture +465331,Budget,Budget +503161,Climate,Climate +527243,Environment,Environment +506785,Health,Health +522781,Taxation and Finance,Taxation and Finance +494757,Education,Education +496861,Budget,Budget +496871,Research and Development,Research and Development +465335,Research and Development,Research and Development +531380,Climate,Climate +490169,Housing,Housing +468026,Regional Development,Regional Development +468026,Research and Development,Research and Development +468026,Security,Security +467797,Immigration,Immigration +465689,Immigration,Immigration +526745,Budget,Budget +481052,Budget,Budget +494934,Climate,Climate +478038,Economic Development,Economic Development +481056,Environment,Environment +485925,Infrastructure,Infrastructure +481215,Municipalities,Municipalities +481215,Regional Development,Regional Development +498660,Research and Development,Research and Development +487832,Economic Development,Economic Development +466493,Regional Development,Regional Development +466493,Research and Development,Research and Development +490435,Small Business,Small Business +468686,Transportation,Transportation +468686,Consumer Issues,Consumer Issues +487824,Economic Development,Economic Development +487824,Health,Health +495984,Defence,Defence +514047,Economic Development,Economic Development +499581,Government Procurement,Government Procurement +540106,Industry,Industry +518234,International Relations,International Relations +518234,Security,Security +465453,Infrastructure,Infrastructure +465459,Regional Development,Regional Development +465466,International Trade,International Trade +465467,International Trade,International Trade +470926,Pensions,Pensions +465478,Environment,Environment +477066,Health,Health +476985,Infrastructure,Infrastructure +478569,Government Procurement,Government Procurement +467169,Agriculture,Agriculture +467169,Economic Development,Economic Development +465500,Infrastructure,Infrastructure +478723,Infrastructure,Infrastructure +468755,Health,Health +465610,Employment and Training,Employment and Training +541017,Employment and Training,Employment and Training +488409,Employment and Training,Employment and Training +467648,Research and Development,Research and Development +467808,Industry,Industry +467799,Industry,Industry +474481,Environment,Environment +474480,Environment,Environment +509482,Environment,Environment +509119,Environment,Environment +485706,Environment,Environment +475054,Environment,Environment +474919,Environment,Environment +474917,Environment,Environment +474821,Environment,Environment +474483,Environment,Environment +474481,Mining,Mining +474480,Mining,Mining +509482,Mining,Mining +509119,Mining,Mining +492840,Mining,Mining +485706,Mining,Mining +475054,Mining,Mining +474919,Mining,Mining +474917,Mining,Mining +474821,Mining,Mining +474483,Mining,Mining +467174,Economic Development,Economic Development +466620,Economic Development,Economic Development +467180,Government Procurement,Government Procurement +467174,Government Procurement,Government Procurement +466642,Government Procurement,Government Procurement +480357,Education,Education +480356,Education,Education +493675,Education,Education +482509,Education,Education +487926,Government Procurement,Government Procurement +465736,Taxation and Finance,Taxation and Finance +465735,Taxation and Finance,Taxation and Finance +531786,Taxation and Finance,Taxation and Finance +527049,Taxation and Finance,Taxation and Finance +523370,Taxation and Finance,Taxation and Finance +518615,Taxation and Finance,Taxation and Finance +494059,Taxation and Finance,Taxation and Finance +493476,Taxation and Finance,Taxation and Finance +467662,Government Procurement,Government Procurement +468643,Energy,Energy +514970,Constitutional Issues,Constitutional Issues +492365,Constitutional Issues,Constitutional Issues +542555,Constitutional Issues,Constitutional Issues +539053,Constitutional Issues,Constitutional Issues +539052,Constitutional Issues,Constitutional Issues +539051,Constitutional Issues,Constitutional Issues +536684,Constitutional Issues,Constitutional Issues +536680,Constitutional Issues,Constitutional Issues +520882,Constitutional Issues,Constitutional Issues +483183,Economic Development,Economic Development +471901,Economic Development,Economic Development +469071,Economic Development,Economic Development +469070,Economic Development,Economic Development +542572,Economic Development,Economic Development +542555,Economic Development,Economic Development +542554,Economic Development,Economic Development +542553,Economic Development,Economic Development +542551,Economic Development,Economic Development +542549,Economic Development,Economic Development +542548,Economic Development,Economic Development +540704,Economic Development,Economic Development +540702,Economic Development,Economic Development +540700,Economic Development,Economic Development +539054,Economic Development,Economic Development +539053,Economic Development,Economic Development +539052,Economic Development,Economic Development +539051,Economic Development,Economic Development +539050,Economic Development,Economic Development +536684,Economic Development,Economic Development +536683,Economic Development,Economic Development +536682,Economic Development,Economic Development +536681,Economic Development,Economic Development +536680,Economic Development,Economic Development +536676,Economic Development,Economic Development +533111,Economic Development,Economic Development +533110,Economic Development,Economic Development +533109,Economic Development,Economic Development +533108,Economic Development,Economic Development +530453,Economic Development,Economic Development +527411,Economic Development,Economic Development +527410,Economic Development,Economic Development +527312,Economic Development,Economic Development +524020,Economic Development,Economic Development +524018,Economic Development,Economic Development +524016,Economic Development,Economic Development +523897,Economic Development,Economic Development +520883,Economic Development,Economic Development +520882,Economic Development,Economic Development +520881,Economic Development,Economic Development +518694,Economic Development,Economic Development +518693,Economic Development,Economic Development +518692,Economic Development,Economic Development +518689,Economic Development,Economic Development +516375,Economic Development,Economic Development +516374,Economic Development,Economic Development +516373,Economic Development,Economic Development +516370,Economic Development,Economic Development +514970,Economic Development,Economic Development +514969,Economic Development,Economic Development +514968,Economic Development,Economic Development +513602,Economic Development,Economic Development +512040,Economic Development,Economic Development +512039,Economic Development,Economic Development +509678,Economic Development,Economic Development +509677,Economic Development,Economic Development +506498,Economic Development,Economic Development +506497,Economic Development,Economic Development +506496,Economic Development,Economic Development +506353,Economic Development,Economic Development +503467,Economic Development,Economic Development +503466,Economic Development,Economic Development +503465,Economic Development,Economic Development +503464,Economic Development,Economic Development +500603,Economic Development,Economic Development +500602,Economic Development,Economic Development +500601,Economic Development,Economic Development +496956,Economic Development,Economic Development +494224,Economic Development,Economic Development +494223,Economic Development,Economic Development +494222,Economic Development,Economic Development +494221,Economic Development,Economic Development +494220,Economic Development,Economic Development +494219,Economic Development,Economic Development +492365,Economic Development,Economic Development +492364,Economic Development,Economic Development +492365,Internal Trade,Internal Trade +488867,Internal Trade,Internal Trade +476536,Internal Trade,Internal Trade +469071,Internal Trade,Internal Trade +469070,Internal Trade,Internal Trade +542554,Internal Trade,Internal Trade +542553,Internal Trade,Internal Trade +542551,Internal Trade,Internal Trade +540704,Internal Trade,Internal Trade +539054,Internal Trade,Internal Trade +539053,Internal Trade,Internal Trade +539052,Internal Trade,Internal Trade +539051,Internal Trade,Internal Trade +539050,Internal Trade,Internal Trade +536684,Internal Trade,Internal Trade +536681,Internal Trade,Internal Trade +536680,Internal Trade,Internal Trade +533110,Internal Trade,Internal Trade +533109,Internal Trade,Internal Trade +533108,Internal Trade,Internal Trade +530453,Internal Trade,Internal Trade +527411,Internal Trade,Internal Trade +524020,Internal Trade,Internal Trade +524018,Internal Trade,Internal Trade +523897,Internal Trade,Internal Trade +520883,Internal Trade,Internal Trade +520882,Internal Trade,Internal Trade +520881,Internal Trade,Internal Trade +518694,Internal Trade,Internal Trade +518693,Internal Trade,Internal Trade +518692,Internal Trade,Internal Trade +518689,Internal Trade,Internal Trade +516375,Internal Trade,Internal Trade +516374,Internal Trade,Internal Trade +514970,Internal Trade,Internal Trade +512040,Internal Trade,Internal Trade +512039,Internal Trade,Internal Trade +509678,Internal Trade,Internal Trade +503465,Internal Trade,Internal Trade +500602,Internal Trade,Internal Trade +500601,Internal Trade,Internal Trade +494224,Internal Trade,Internal Trade +494222,Internal Trade,Internal Trade +500601,Taxation and Finance,Taxation and Finance +496956,Taxation and Finance,Taxation and Finance +496955,Taxation and Finance,Taxation and Finance +496954,Taxation and Finance,Taxation and Finance +494224,Taxation and Finance,Taxation and Finance +494223,Taxation and Finance,Taxation and Finance +494222,Taxation and Finance,Taxation and Finance +494221,Taxation and Finance,Taxation and Finance +494220,Taxation and Finance,Taxation and Finance +494219,Taxation and Finance,Taxation and Finance +492365,Taxation and Finance,Taxation and Finance +492364,Taxation and Finance,Taxation and Finance +488867,Taxation and Finance,Taxation and Finance +483183,Taxation and Finance,Taxation and Finance +474244,Taxation and Finance,Taxation and Finance +471901,Taxation and Finance,Taxation and Finance +469070,Taxation and Finance,Taxation and Finance +542572,Taxation and Finance,Taxation and Finance +542555,Taxation and Finance,Taxation and Finance +542554,Taxation and Finance,Taxation and Finance +542553,Taxation and Finance,Taxation and Finance +542551,Taxation and Finance,Taxation and Finance +542549,Taxation and Finance,Taxation and Finance +542548,Taxation and Finance,Taxation and Finance +540704,Taxation and Finance,Taxation and Finance +540703,Taxation and Finance,Taxation and Finance +540702,Taxation and Finance,Taxation and Finance +540700,Taxation and Finance,Taxation and Finance +539054,Taxation and Finance,Taxation and Finance +539053,Taxation and Finance,Taxation and Finance +539052,Taxation and Finance,Taxation and Finance +539051,Taxation and Finance,Taxation and Finance +539050,Taxation and Finance,Taxation and Finance +536684,Taxation and Finance,Taxation and Finance +536683,Taxation and Finance,Taxation and Finance +536682,Taxation and Finance,Taxation and Finance +536681,Taxation and Finance,Taxation and Finance +536680,Taxation and Finance,Taxation and Finance +536676,Taxation and Finance,Taxation and Finance +533111,Taxation and Finance,Taxation and Finance +533110,Taxation and Finance,Taxation and Finance +533109,Taxation and Finance,Taxation and Finance +533108,Taxation and Finance,Taxation and Finance +530453,Taxation and Finance,Taxation and Finance +527411,Taxation and Finance,Taxation and Finance +527410,Taxation and Finance,Taxation and Finance +527312,Taxation and Finance,Taxation and Finance +524020,Taxation and Finance,Taxation and Finance +524018,Taxation and Finance,Taxation and Finance +524016,Taxation and Finance,Taxation and Finance +523897,Taxation and Finance,Taxation and Finance +520883,Taxation and Finance,Taxation and Finance +520882,Taxation and Finance,Taxation and Finance +520881,Taxation and Finance,Taxation and Finance +518694,Taxation and Finance,Taxation and Finance +518693,Taxation and Finance,Taxation and Finance +518692,Taxation and Finance,Taxation and Finance +518689,Taxation and Finance,Taxation and Finance +516375,Taxation and Finance,Taxation and Finance +516374,Taxation and Finance,Taxation and Finance +516373,Taxation and Finance,Taxation and Finance +516370,Taxation and Finance,Taxation and Finance +514970,Taxation and Finance,Taxation and Finance +514969,Taxation and Finance,Taxation and Finance +514968,Taxation and Finance,Taxation and Finance +513602,Taxation and Finance,Taxation and Finance +512040,Taxation and Finance,Taxation and Finance +512039,Taxation and Finance,Taxation and Finance +509678,Taxation and Finance,Taxation and Finance +509677,Taxation and Finance,Taxation and Finance +506498,Taxation and Finance,Taxation and Finance +506497,Taxation and Finance,Taxation and Finance +506496,Taxation and Finance,Taxation and Finance +506353,Taxation and Finance,Taxation and Finance +503467,Taxation and Finance,Taxation and Finance +503466,Taxation and Finance,Taxation and Finance +503465,Taxation and Finance,Taxation and Finance +503464,Taxation and Finance,Taxation and Finance +500603,Taxation and Finance,Taxation and Finance +496539,Taxation and Finance,Taxation and Finance +496314,Taxation and Finance,Taxation and Finance +496539,Transportation,Transportation +496539,Economic Development,Economic Development +496314,Economic Development,Economic Development +496539,Energy,Energy +496314,Energy,Energy +496539,International Relations,International Relations +496539,Environment,Environment +496314,Environment,Environment +496539,Internal Trade,Internal Trade +496314,Internal Trade,Internal Trade +496539,Industry,Industry +496314,Industry,Industry +496539,International Trade,International Trade +496314,International Trade,International Trade +496539,Climate,Climate +496314,Climate,Climate +496539,Regional Development,Regional Development +496314,Regional Development,Regional Development +472201,Employment and Training,Employment and Training +472200,Employment and Training,Employment and Training +472205,Employment and Training,Employment and Training +472204,Employment and Training,Employment and Training +472203,Employment and Training,Employment and Training +521939,Research and Development,Research and Development +544091,Research and Development,Research and Development +541193,Research and Development,Research and Development +469802,Taxation and Finance,Taxation and Finance +465815,Climate,Climate +465813,Climate,Climate +545005,Climate,Climate +529843,Climate,Climate +527159,Climate,Climate +527130,Climate,Climate +522959,Climate,Climate +521311,Climate,Climate +518447,Climate,Climate +518441,Climate,Climate +516557,Climate,Climate +516535,Climate,Climate +516470,Climate,Climate +516467,Climate,Climate +516466,Climate,Climate +516301,Climate,Climate +516300,Climate,Climate +516264,Climate,Climate +516253,Climate,Climate +516245,Climate,Climate +516177,Climate,Climate +514486,Climate,Climate +506023,Climate,Climate +494401,Climate,Climate +492435,Climate,Climate +483388,Climate,Climate +466755,Climate,Climate +465820,Climate,Climate +465819,Climate,Climate +465818,Climate,Climate +465817,Climate,Climate +465815,Justice and Law Enforcement,Justice and Law Enforcement +465813,Justice and Law Enforcement,Justice and Law Enforcement +465820,Justice and Law Enforcement,Justice and Law Enforcement +465819,Justice and Law Enforcement,Justice and Law Enforcement +465818,Justice and Law Enforcement,Justice and Law Enforcement +465817,Justice and Law Enforcement,Justice and Law Enforcement +465852,Security,Security +465850,Security,Security +465862,Security,Security +487353,Health,Health +478791,Health,Health +545283,Health,Health +536025,Health,Health +534184,Health,Health +529968,Health,Health +520664,Health,Health +520248,Health,Health +512921,Health,Health +512920,Health,Health +506868,Health,Health +536042,Climate,Climate +536041,Climate,Climate +536042,Economic Development,Economic Development +536041,Economic Development,Economic Development +504158,Economic Development,Economic Development +488760,Economic Development,Economic Development +488760,Employment and Training,Employment and Training +488760,Energy,Energy +479763,Energy,Energy +536042,Energy,Energy +536041,Energy,Energy +488760,Environment,Environment +479763,Environment,Environment +536042,Environment,Environment +536041,Environment,Environment +536042,Infrastructure,Infrastructure +536041,Infrastructure,Infrastructure +504158,International Relations,International Relations +479763,International Relations,International Relations +536041,Regional Development,Regional Development +496212,Industry,Industry +496208,Industry,Industry +480800,Industry,Industry +478420,Industry,Industry +538390,Industry,Industry +502823,Industry,Industry +502809,Industry,Industry +502807,Industry,Industry +480800,Energy,Energy +478420,Energy,Energy +544171,Energy,Energy +538390,Energy,Energy +529127,Energy,Energy +502848,Energy,Energy +502823,Energy,Energy +502809,Energy,Energy +502807,Energy,Energy +496212,Energy,Energy +496208,Energy,Energy +493803,Energy,Energy +482542,Energy,Energy +538390,Environment,Environment +529127,Environment,Environment +502848,Environment,Environment +502823,Environment,Environment +502809,Environment,Environment +502807,Environment,Environment +499661,Environment,Environment +496212,Environment,Environment +496208,Environment,Environment +493803,Environment,Environment +482542,Environment,Environment +480801,Environment,Environment +480800,Environment,Environment +478420,Environment,Environment +480800,Economic Development,Economic Development +478420,Economic Development,Economic Development +544171,Economic Development,Economic Development +538390,Economic Development,Economic Development +529127,Economic Development,Economic Development +502848,Economic Development,Economic Development +502823,Economic Development,Economic Development +502809,Economic Development,Economic Development +502807,Economic Development,Economic Development +499661,Economic Development,Economic Development +496212,Economic Development,Economic Development +496208,Economic Development,Economic Development +493803,Economic Development,Economic Development +482542,Economic Development,Economic Development +480801,Infrastructure,Infrastructure +480800,Infrastructure,Infrastructure +502848,Infrastructure,Infrastructure +499661,Infrastructure,Infrastructure +502848,Climate,Climate +502809,Climate,Climate +478420,Climate,Climate +538390,Climate,Climate +473444,Tourism,Tourism +473435,Tourism,Tourism +531960,Environment,Environment +517376,Environment,Environment +510577,Environment,Environment +504876,Environment,Environment +504856,Environment,Environment +504848,Environment,Environment +498707,Environment,Environment +498705,Environment,Environment +496074,Environment,Environment +492851,Environment,Environment +492848,Environment,Environment +492845,Environment,Environment +492843,Environment,Environment +490500,Environment,Environment +490498,Environment,Environment +490497,Environment,Environment +490494,Environment,Environment +490485,Environment,Environment +487831,Environment,Environment +487827,Environment,Environment +487808,Environment,Environment +484874,Environment,Environment +484868,Environment,Environment +473052,Energy,Energy +473041,Energy,Energy +531960,Energy,Energy +529289,Energy,Energy +529269,Energy,Energy +522600,Energy,Energy +517376,Energy,Energy +510577,Energy,Energy +510575,Energy,Energy +504876,Energy,Energy +504856,Energy,Energy +504848,Energy,Energy +498707,Energy,Energy +498705,Energy,Energy +496074,Energy,Energy +492851,Energy,Energy +492850,Energy,Energy +492848,Energy,Energy +492845,Energy,Energy +492843,Energy,Energy +490500,Energy,Energy +490498,Energy,Energy +490497,Energy,Energy +490494,Energy,Energy +490485,Energy,Energy +487831,Energy,Energy +487827,Energy,Energy +487808,Energy,Energy +484874,Energy,Energy +484868,Energy,Energy +484874,Research and Development,Research and Development +484868,Research and Development,Research and Development +473052,Research and Development,Research and Development +473041,Research and Development,Research and Development +531960,Research and Development,Research and Development +529289,Research and Development,Research and Development +529269,Research and Development,Research and Development +522600,Research and Development,Research and Development +504876,Research and Development,Research and Development +504856,Research and Development,Research and Development +504848,Research and Development,Research and Development +498707,Research and Development,Research and Development +496074,Research and Development,Research and Development +492851,Research and Development,Research and Development +492850,Research and Development,Research and Development +492848,Research and Development,Research and Development +492843,Research and Development,Research and Development +490498,Research and Development,Research and Development +490494,Research and Development,Research and Development +473041,Climate,Climate +529289,Climate,Climate +510577,Climate,Climate +510575,Climate,Climate +504876,Climate,Climate +504856,Climate,Climate +504848,Climate,Climate +492851,Climate,Climate +492848,Climate,Climate +492845,Climate,Climate +490500,Climate,Climate +490498,Climate,Climate +490497,Climate,Climate +490494,Climate,Climate +490485,Climate,Climate +487831,Climate,Climate +487827,Climate,Climate +501511,Budget,Budget +472375,Health,Health +474025,Economic Development,Economic Development +474024,Economic Development,Economic Development +509210,Economic Development,Economic Development +507691,Economic Development,Economic Development +500138,Economic Development,Economic Development +488000,Economic Development,Economic Development +478515,Economic Development,Economic Development +478514,Economic Development,Economic Development +478513,Economic Development,Economic Development +478512,Economic Development,Economic Development +474027,Economic Development,Economic Development +474024,Environment,Environment +509343,Environment,Environment +496466,Environment,Environment +487996,Environment,Environment +487993,Environment,Environment +485436,Environment,Environment +478515,Environment,Environment +478514,Environment,Environment +478513,Environment,Environment +474027,Environment,Environment +474026,Environment,Environment +467274,Budget,Budget +467272,Budget,Budget +533490,Budget,Budget +526920,Budget,Budget +466695,Infrastructure,Infrastructure +466216,Infrastructure,Infrastructure +539421,Infrastructure,Infrastructure +537449,Infrastructure,Infrastructure +533297,Infrastructure,Infrastructure +533042,Infrastructure,Infrastructure +532948,Infrastructure,Infrastructure +499170,Infrastructure,Infrastructure +488517,Infrastructure,Infrastructure +485114,Infrastructure,Infrastructure +472836,Infrastructure,Infrastructure +472835,Infrastructure,Infrastructure +467289,Infrastructure,Infrastructure +467288,Infrastructure,Infrastructure +467286,Infrastructure,Infrastructure +467285,Infrastructure,Infrastructure +467283,Infrastructure,Infrastructure +467281,Infrastructure,Infrastructure +467278,Infrastructure,Infrastructure +467274,Infrastructure,Infrastructure +467272,Infrastructure,Infrastructure +467271,Infrastructure,Infrastructure +466716,Infrastructure,Infrastructure +469449,Infrastructure,Infrastructure +466242,Infrastructure,Infrastructure +521185,Infrastructure,Infrastructure +520613,Infrastructure,Infrastructure +509211,Infrastructure,Infrastructure +486066,Infrastructure,Infrastructure +485755,Infrastructure,Infrastructure +480600,Infrastructure,Infrastructure +511668,Climate,Climate +509211,Climate,Climate +486066,Climate,Climate +485755,Climate,Climate +474545,Climate,Climate +521185,Climate,Climate +520891,Climate,Climate +486066,Energy,Energy +485755,Energy,Energy +480600,Energy,Energy +476354,Energy,Energy +474545,Energy,Energy +469449,Energy,Energy +521185,Energy,Energy +520891,Energy,Energy +520613,Energy,Energy +511668,Energy,Energy +509211,Energy,Energy +474545,Industry,Industry +469449,Industry,Industry +521185,Industry,Industry +520891,Industry,Industry +520613,Industry,Industry +511668,Industry,Industry +509211,Industry,Industry +500444,Industry,Industry +486066,Industry,Industry +485755,Industry,Industry +480600,Industry,Industry +485755,Municipalities,Municipalities +476354,Municipalities,Municipalities +521185,Municipalities,Municipalities +511668,Municipalities,Municipalities +480600,Small Business,Small Business +476354,Small Business,Small Business +521185,Small Business,Small Business +520891,Small Business,Small Business +520613,Small Business,Small Business +511668,Small Business,Small Business +509211,Small Business,Small Business +500444,Small Business,Small Business +486066,Small Business,Small Business +466246,Government Procurement,Government Procurement +466244,Government Procurement,Government Procurement +466270,Government Procurement,Government Procurement +466269,Government Procurement,Government Procurement +466268,Government Procurement,Government Procurement +466256,Government Procurement,Government Procurement +466255,Government Procurement,Government Procurement +466251,Government Procurement,Government Procurement +466250,Government Procurement,Government Procurement +466249,Government Procurement,Government Procurement +466246,International Trade,International Trade +466244,International Trade,International Trade +498565,International Trade,International Trade +498558,International Trade,International Trade +495692,International Trade,International Trade +482216,International Trade,International Trade +482211,International Trade,International Trade +480035,International Trade,International Trade +480033,International Trade,International Trade +480030,International Trade,International Trade +480026,International Trade,International Trade +480024,International Trade,International Trade +466270,International Trade,International Trade +466269,International Trade,International Trade +466268,International Trade,International Trade +466256,International Trade,International Trade +466255,International Trade,International Trade +466251,International Trade,International Trade +466250,International Trade,International Trade +466249,International Trade,International Trade +466246,Taxation and Finance,Taxation and Finance +466244,Taxation and Finance,Taxation and Finance +498565,Taxation and Finance,Taxation and Finance +498558,Taxation and Finance,Taxation and Finance +495692,Taxation and Finance,Taxation and Finance +480035,Taxation and Finance,Taxation and Finance +480033,Taxation and Finance,Taxation and Finance +480030,Taxation and Finance,Taxation and Finance +466270,Taxation and Finance,Taxation and Finance +466269,Taxation and Finance,Taxation and Finance +466268,Taxation and Finance,Taxation and Finance +466256,Taxation and Finance,Taxation and Finance +466255,Taxation and Finance,Taxation and Finance +466251,Taxation and Finance,Taxation and Finance +466250,Taxation and Finance,Taxation and Finance +466249,Taxation and Finance,Taxation and Finance +467324,Agriculture,Agriculture +467324,Consumer Issues,Consumer Issues +467324,Environment,Environment +467324,Health,Health +467324,International Trade,International Trade +499674,Infrastructure,Infrastructure +492448,Infrastructure,Infrastructure +488531,Infrastructure,Infrastructure +485806,Infrastructure,Infrastructure +485187,Infrastructure,Infrastructure +485175,Infrastructure,Infrastructure +485172,Infrastructure,Infrastructure +482510,Infrastructure,Infrastructure +478348,Infrastructure,Infrastructure +475908,Infrastructure,Infrastructure +472224,Infrastructure,Infrastructure +472032,Infrastructure,Infrastructure +471389,Infrastructure,Infrastructure +512988,Infrastructure,Infrastructure +509284,Infrastructure,Infrastructure +509282,Infrastructure,Infrastructure +509281,Infrastructure,Infrastructure +509280,Infrastructure,Infrastructure +505983,Infrastructure,Infrastructure +505982,Infrastructure,Infrastructure +502721,Infrastructure,Infrastructure +466274,Infrastructure,Infrastructure +466273,Infrastructure,Infrastructure +504134,Infrastructure,Infrastructure +501278,Infrastructure,Infrastructure +501277,Infrastructure,Infrastructure +501276,Infrastructure,Infrastructure +501275,Infrastructure,Infrastructure +498583,Infrastructure,Infrastructure +495930,Infrastructure,Infrastructure +495929,Infrastructure,Infrastructure +495927,Infrastructure,Infrastructure +490799,Infrastructure,Infrastructure +490798,Infrastructure,Infrastructure +490797,Infrastructure,Infrastructure +487059,Infrastructure,Infrastructure +487058,Infrastructure,Infrastructure +484262,Infrastructure,Infrastructure +484261,Infrastructure,Infrastructure +484259,Infrastructure,Infrastructure +484258,Infrastructure,Infrastructure +481623,Infrastructure,Infrastructure +481622,Infrastructure,Infrastructure +481621,Infrastructure,Infrastructure +479205,Infrastructure,Infrastructure +470065,Infrastructure,Infrastructure +466277,Infrastructure,Infrastructure +466276,Infrastructure,Infrastructure +466290,Budget,Budget +503237,Budget,Budget +466438,Budget,Budget +526795,Budget,Budget +526789,Budget,Budget +526788,Budget,Budget +526787,Budget,Budget +526786,Budget,Budget +526785,Budget,Budget +526784,Budget,Budget +503270,Budget,Budget +503269,Budget,Budget +503268,Budget,Budget +503267,Budget,Budget +503266,Budget,Budget +503265,Budget,Budget +503264,Budget,Budget +503262,Budget,Budget +503261,Budget,Budget +503260,Budget,Budget +503259,Budget,Budget +503258,Budget,Budget +503257,Budget,Budget +503256,Budget,Budget +503255,Budget,Budget +503254,Budget,Budget +503253,Budget,Budget +503251,Budget,Budget +503250,Budget,Budget +503249,Budget,Budget +503248,Budget,Budget +503246,Budget,Budget +503245,Budget,Budget +503244,Budget,Budget +503243,Budget,Budget +503242,Budget,Budget +503241,Budget,Budget +503240,Budget,Budget +503239,Budget,Budget +501228,Budget,Budget +503304,Energy,Energy +500279,Energy,Energy +480466,Energy,Energy +476530,Energy,Energy +476529,Energy,Energy +516481,Energy,Energy +506583,Energy,Energy +506109,Energy,Energy +516355,Environment,Environment +503304,Environment,Environment +516481,Environment,Environment +476529,International Relations,International Relations +469066,International Relations,International Relations +480924,International Relations,International Relations +480466,International Relations,International Relations +478670,Industry,Industry +466529,Industry,Industry +513973,Budget,Budget +471152,Budget,Budget +466534,Budget,Budget +466535,Budget,Budget +469165,Taxation and Finance,Taxation and Finance +472851,Health,Health +471155,Health,Health +475437,Health,Health +472872,Health,Health +471185,Health,Health +471183,Health,Health +526910,Health,Health +520281,Health,Health +516488,Health,Health +506141,Health,Health +495014,Health,Health +473753,Health,Health +471185,Industry,Industry +471183,Industry,Industry +533048,Industry,Industry +526910,Industry,Industry +520281,Industry,Industry +516632,Industry,Industry +516488,Industry,Industry +511714,Industry,Industry +506141,Industry,Industry +495014,Industry,Industry +473753,Industry,Industry +471186,Government Procurement,Government Procurement +471185,Government Procurement,Government Procurement +526910,Government Procurement,Government Procurement +520281,Government Procurement,Government Procurement +473753,Government Procurement,Government Procurement +471185,International Trade,International Trade +471183,International Trade,International Trade +520281,International Trade,International Trade +499961,Consumer Issues,Consumer Issues +499960,Consumer Issues,Consumer Issues +526875,Consumer Issues,Consumer Issues +489290,International Trade,International Trade +469518,International Trade,International Trade +499963,International Trade,International Trade +499961,International Trade,International Trade +469517,Justice and Law Enforcement,Justice and Law Enforcement +503297,Justice and Law Enforcement,Justice and Law Enforcement +489290,Justice and Law Enforcement,Justice and Law Enforcement +485942,Justice and Law Enforcement,Justice and Law Enforcement +544590,Small Business,Small Business +543179,Small Business,Small Business +528311,Small Business,Small Business +526875,Small Business,Small Business +503297,Small Business,Small Business +499963,Small Business,Small Business +499961,Small Business,Small Business +499960,Small Business,Small Business +489290,Small Business,Small Business +469523,Small Business,Small Business +469518,Small Business,Small Business +470638,Employment and Training,Employment and Training +470636,Employment and Training,Employment and Training +507991,Industry,Industry +535497,Health,Health +535494,Health,Health +535488,Health,Health +535485,Health,Health +535483,Health,Health +535481,Health,Health +535478,Health,Health +535477,Health,Health +535471,Health,Health +535359,Health,Health +535353,Health,Health +520031,Health,Health +507991,Health,Health +489081,Agriculture,Agriculture +486678,Agriculture,Agriculture +509184,Agriculture,Agriculture +506357,Agriculture,Agriculture +506257,Agriculture,Agriculture +472888,Agriculture,Agriculture +476151,International Trade,International Trade +472888,International Trade,International Trade +482331,International Trade,International Trade +482315,International Trade,International Trade +477976,International Trade,International Trade +477962,International Trade,International Trade +476151,Small Business,Small Business +472888,Small Business,Small Business +482331,Small Business,Small Business +482315,Small Business,Small Business +477976,Small Business,Small Business +482709,Economic Development,Economic Development +468797,Economic Development,Economic Development +506108,Economic Development,Economic Development +503320,Economic Development,Economic Development +494627,Economic Development,Economic Development +492003,Economic Development,Economic Development +486083,Economic Development,Economic Development +486038,Economic Development,Economic Development +485515,Economic Development,Economic Development +485424,Health,Health +482709,Health,Health +468797,Health,Health +468684,Health,Health +468682,Health,Health +506108,Health,Health +503320,Health,Health +494627,Health,Health +492003,Health,Health +486083,Health,Health +486038,Health,Health +468684,Industry,Industry +468682,Industry,Industry +506108,Industry,Industry +503320,Industry,Industry +492003,Industry,Industry +486083,Industry,Industry +486038,Industry,Industry +485515,Industry,Industry +485424,Industry,Industry +482709,Industry,Industry +468684,International Trade,International Trade +468682,International Trade,International Trade +506108,International Trade,International Trade +494627,International Trade,International Trade +492003,International Trade,International Trade +486083,International Trade,International Trade +486038,International Trade,International Trade +485424,International Trade,International Trade +468684,Research and Development,Research and Development +468682,Research and Development,Research and Development +503320,Research and Development,Research and Development +486038,Research and Development,Research and Development +485424,Research and Development,Research and Development +531170,Climate,Climate +531168,Climate,Climate +544508,Climate,Climate +537847,Climate,Climate +468757,Health,Health +465609,Budget,Budget +465610,Economic Development,Economic Development +488406,Employment and Training,Employment and Training +465618,Energy,Energy +465618,Environment,Environment +465620,Small Business,Small Business +465620,Internal Trade,Internal Trade +465623,Environment,Environment +465623,Climate,Climate +467672,Research and Development,Research and Development +467672,Economic Development,Economic Development +467672,Budget,Budget +467812,Industry,Industry +474482,Environment,Environment +474482,Mining,Mining +467180,Economic Development,Economic Development +466642,Employment and Training,Employment and Training +466620,Government Procurement,Government Procurement +482507,Education,Education +493675,Immigration,Immigration +465691,Budget,Budget +465704,Economic Development,Economic Development +487928,Government Procurement,Government Procurement +487928,Infrastructure,Infrastructure +465929,Taxation and Finance,Taxation and Finance +470856,Government Procurement,Government Procurement +467669,Government Procurement,Government Procurement +467669,Small Business,Small Business +499609,Energy,Energy +499609,Infrastructure,Infrastructure +518694,Constitutional Issues,Constitutional Issues +488867,Economic Development,Economic Development +494219,Internal Trade,Internal Trade +500602,Taxation and Finance,Taxation and Finance +496667,Taxation and Finance,Taxation and Finance +496314,Employment and Training,Employment and Training +496667,Transportation,Transportation +496667,Economic Development,Economic Development +496667,Energy,Energy +496667,International Relations,International Relations +496667,Environment,Environment +496667,Internal Trade,Internal Trade +496667,Industry,Industry +496314,Budget,Budget +496667,International Trade,International Trade +496667,Climate,Climate +496667,Regional Development,Regional Development +491069,Immigration,Immigration +483598,Climate,Climate +472202,Employment and Training,Employment and Training +483598,Environment,Environment +530399,Research and Development,Research and Development +479008,Industry,Industry +469804,Taxation and Finance,Taxation and Finance +465816,Climate,Climate +465816,Justice and Law Enforcement,Justice and Law Enforcement +465824,Climate,Climate +465824,Immigration,Immigration +465853,Security,Security +493101,Health,Health +468246,Economic Development,Economic Development +468246,Health,Health +468246,Research and Development,Research and Development +488760,Climate,Climate +479763,Economic Development,Economic Development +536041,Employment and Training,Employment and Training +504158,Energy,Energy +504158,Environment,Environment +536042,Industry,Industry +488760,Infrastructure,Infrastructure +536042,International Relations,International Relations +488760,Regional Development,Regional Development +465877,International Trade,International Trade +465877,Employment and Training,Employment and Training +499661,Industry,Industry +480801,Energy,Energy +544171,Environment,Environment +480801,Economic Development,Economic Development +496212,International Trade,International Trade +496212,Regional Development,Regional Development +482542,Infrastructure,Infrastructure +529127,Climate,Climate +544171,Taxation and Finance,Taxation and Finance +480109,Tourism,Tourism +475263,Environment,Environment +475263,Energy,Energy +490485,Research and Development,Research and Development +473052,Climate,Climate +465919,Government Procurement,Government Procurement +465984,Budget,Budget +465987,Budget,Budget +465988,Budget,Budget +466004,Budget,Budget +466007,Budget,Budget +466012,Budget,Budget +466013,Budget,Budget +483266,Consumer Issues,Consumer Issues +483266,Health,Health +482932,Industry,Industry +474026,Economic Development,Economic Development +474025,Environment,Environment +485114,Budget,Budget +466713,Infrastructure,Infrastructure +468725,Environment,Environment +468725,Transportation,Transportation +476354,Infrastructure,Infrastructure +520613,Climate,Climate +500444,Energy,Energy +476354,Industry,Industry +486066,Municipalities,Municipalities +485755,Small Business,Small Business +466248,Government Procurement,Government Procurement +466248,International Trade,International Trade +466248,Taxation and Finance,Taxation and Finance +467328,Agriculture,Agriculture +467328,Consumer Issues,Consumer Issues +467328,Environment,Environment +467328,Health,Health +467328,International Trade,International Trade +466467,Energy,Energy +466467,Environment,Environment +466467,Industry,Industry +502719,Infrastructure,Infrastructure +466387,Consumer Issues,Consumer Issues +466387,International Relations,International Relations +466387,International Trade,International Trade +466275,Infrastructure,Infrastructure +466284,Budget,Budget +466285,Budget,Budget +466288,Budget,Budget +466289,Budget,Budget +526792,Budget,Budget +466347,Budget,Budget +503238,Budget,Budget +533041,Climate,Climate +466513,Taxation and Finance,Taxation and Finance +466520,Privacy and Access to Information,Privacy and Access to Information +466525,Energy,Energy +466526,Budget,Budget +516255,Climate,Climate +503824,Energy,Energy +516378,Environment,Environment +476530,International Relations,International Relations +466528,Budget,Budget +466529,Climate,Climate +479698,Industry,Industry +466531,Budget,Budget +466532,Budget,Budget +477624,Budget,Budget +474829,Budget,Budget +466536,Climate,Climate +466536,Industry,Industry +483126,Immigration,Immigration +466566,Climate,Climate +466566,Industry,Industry +473705,Economic Development,Economic Development +466570,Climate,Climate +466570,Industry,Industry +481223,Industry,Industry +466602,Climate,Climate +466602,Industry,Industry +466604,Climate,Climate +466604,Industry,Industry +466615,Climate,Climate +466615,Industry,Industry +466618,Climate,Climate +466618,Industry,Industry +471408,Economic Development,Economic Development +472089,Taxation and Finance,Taxation and Finance +472866,Health,Health +475437,Government Procurement,Government Procurement +471186,Health,Health +471186,Industry,Industry +473752,Government Procurement,Government Procurement +471186,International Trade,International Trade +495014,Justice and Law Enforcement,Justice and Law Enforcement +499963,Consumer Issues,Consumer Issues +499960,International Trade,International Trade +469518,Justice and Law Enforcement,Justice and Law Enforcement +469517,Small Business,Small Business +503297,Tourism,Tourism +466676,Internal Trade,Internal Trade +510890,Employment and Training,Employment and Training +466837,Defence,Defence +520031,Industry,Industry +535499,Health,Health +466878,Taxation and Finance,Taxation and Finance +466880,Education,Education +503162,Agriculture,Agriculture +482315,Agriculture,Agriculture +477960,International Trade,International Trade +477960,Small Business,Small Business +485424,Economic Development,Economic Development +485515,Health,Health +468797,Industry,Industry +468797,International Trade,International Trade +468797,Research and Development,Research and Development +466964,Justice and Law Enforcement,Justice and Law Enforcement +531172,Climate,Climate +530903,Energy,Energy +530901,Energy,Energy +530900,Energy,Energy +544508,Energy,Energy +537847,Energy,Energy +531172,Energy,Energy +531171,Energy,Energy +531170,Energy,Energy +531168,Energy,Energy +531166,Energy,Energy +531164,Energy,Energy +530901,Environment,Environment +530896,Environment,Environment +517544,Environment,Environment +544508,Environment,Environment +537847,Environment,Environment +531172,Environment,Environment +531171,Environment,Environment +531170,Environment,Environment +531168,Environment,Environment +531166,Environment,Environment +531164,Environment,Environment +487940,Economic Development,Economic Development +478318,Economic Development,Economic Development +511502,Economic Development,Economic Development +499730,Economic Development,Economic Development +499709,Economic Development,Economic Development +499704,Economic Development,Economic Development +493891,Industry,Industry +511502,Industry,Industry +487940,Small Business,Small Business +467084,Regional Development,Regional Development +486636,Climate,Climate +481870,Climate,Climate +470232,Climate,Climate +467119,Climate,Climate +541535,Climate,Climate +539102,Climate,Climate +537469,Climate,Climate +537317,Climate,Climate +537315,Climate,Climate +537313,Climate,Climate +534064,Climate,Climate +531656,Climate,Climate +528084,Climate,Climate +528083,Climate,Climate +528081,Climate,Climate +528073,Climate,Climate +528072,Climate,Climate +528070,Climate,Climate +525866,Climate,Climate +525340,Climate,Climate +525330,Climate,Climate +525316,Climate,Climate +525304,Climate,Climate +525287,Climate,Climate +522172,Climate,Climate +522164,Climate,Climate +522155,Climate,Climate +517445,Climate,Climate +517443,Climate,Climate +517437,Climate,Climate +517432,Climate,Climate +517429,Climate,Climate +517415,Climate,Climate +517410,Climate,Climate +517401,Climate,Climate +517394,Climate,Climate +517387,Climate,Climate +515444,Climate,Climate +515428,Climate,Climate +515414,Climate,Climate +512573,Climate,Climate +512554,Climate,Climate +512549,Climate,Climate +510466,Climate,Climate +510459,Climate,Climate +510437,Climate,Climate +507250,Climate,Climate +507246,Climate,Climate +507245,Climate,Climate +507236,Climate,Climate +507205,Climate,Climate +507204,Climate,Climate +504263,Climate,Climate +504190,Climate,Climate +504186,Climate,Climate +501824,Climate,Climate +501769,Climate,Climate +497747,Climate,Climate +497746,Climate,Climate +497745,Climate,Climate +497744,Climate,Climate +497691,Climate,Climate +497688,Climate,Climate +497686,Climate,Climate +497681,Climate,Climate +497680,Climate,Climate +489503,Climate,Climate +469448,Environment,Environment +509209,Environment,Environment +500897,Environment,Environment +497424,Environment,Environment +469448,Economic Development,Economic Development +509209,Economic Development,Economic Development +500897,Economic Development,Economic Development +497424,Economic Development,Economic Development +478608,Economic Development,Economic Development +472537,Economic Development,Economic Development +500897,Mining,Mining +497424,Mining,Mining +478608,Mining,Mining +472537,Mining,Mining +469528,Mining,Mining +469448,Mining,Mining +500897,Fisheries,Fisheries +497424,Fisheries,Fisheries +496762,International Relations,International Relations +467188,International Relations,International Relations +486773,Agriculture,Agriculture +486771,Agriculture,Agriculture +523561,Agriculture,Agriculture +521895,Agriculture,Agriculture +521893,Agriculture,Agriculture +521888,Agriculture,Agriculture +486781,Agriculture,Agriculture +486779,Agriculture,Agriculture +486778,Agriculture,Agriculture +486777,Agriculture,Agriculture +486775,Agriculture,Agriculture +486773,Environment,Environment +486771,Environment,Environment +523561,Environment,Environment +521895,Environment,Environment +521893,Environment,Environment +521888,Environment,Environment +486781,Environment,Environment +486779,Environment,Environment +486778,Environment,Environment +486777,Environment,Environment +486775,Environment,Environment +486773,International Trade,International Trade +486771,International Trade,International Trade +523561,International Trade,International Trade +521895,International Trade,International Trade +521893,International Trade,International Trade +521888,International Trade,International Trade +486781,International Trade,International Trade +486779,International Trade,International Trade +486778,International Trade,International Trade +486777,International Trade,International Trade +486775,International Trade,International Trade +467481,Environment,Environment +477755,Transportation,Transportation +501740,Budget,Budget +472292,Budget,Budget +467664,Budget,Budget +468436,Climate,Climate +468431,Climate,Climate +480110,Climate,Climate +480107,Climate,Climate +470009,Climate,Climate +470008,Climate,Climate +470007,Climate,Climate +470006,Climate,Climate +470005,Climate,Climate +470004,Climate,Climate +470002,Climate,Climate +469998,Climate,Climate +468452,Climate,Climate +468445,Climate,Climate +468436,Economic Development,Economic Development +468431,Economic Development,Economic Development +480110,Economic Development,Economic Development +480107,Economic Development,Economic Development +470009,Economic Development,Economic Development +470008,Economic Development,Economic Development +470007,Economic Development,Economic Development +470006,Economic Development,Economic Development +470005,Economic Development,Economic Development +470004,Economic Development,Economic Development +470002,Economic Development,Economic Development +469998,Economic Development,Economic Development +468452,Economic Development,Economic Development +468445,Economic Development,Economic Development +468436,Energy,Energy +468431,Energy,Energy +480110,Energy,Energy +480107,Energy,Energy +470009,Energy,Energy +470008,Energy,Energy +470007,Energy,Energy +470006,Energy,Energy +470005,Energy,Energy +470004,Energy,Energy +470002,Energy,Energy +469998,Energy,Energy +468452,Energy,Energy +468445,Energy,Energy +480107,Environment,Environment +470009,Environment,Environment +470008,Environment,Environment +470007,Environment,Environment +470006,Environment,Environment +470005,Environment,Environment +470004,Environment,Environment +470002,Environment,Environment +469998,Environment,Environment +468452,Environment,Environment +468445,Environment,Environment +468439,Environment,Environment +468436,Environment,Environment +468431,Environment,Environment +468436,Forestry,Forestry +468431,Forestry,Forestry +480110,Forestry,Forestry +480107,Forestry,Forestry +470009,Forestry,Forestry +470008,Forestry,Forestry +470007,Forestry,Forestry +470006,Forestry,Forestry +470005,Forestry,Forestry +470004,Forestry,Forestry +470002,Forestry,Forestry +469998,Forestry,Forestry +468452,Forestry,Forestry +468445,Forestry,Forestry +480107,Industry,Industry +480110,Infrastructure,Infrastructure +480107,Infrastructure,Infrastructure +470009,Infrastructure,Infrastructure +470008,Infrastructure,Infrastructure +470007,Infrastructure,Infrastructure +470006,Infrastructure,Infrastructure +470005,Infrastructure,Infrastructure +470004,Infrastructure,Infrastructure +470002,Infrastructure,Infrastructure +469998,Infrastructure,Infrastructure +468452,Infrastructure,Infrastructure +468445,Infrastructure,Infrastructure +468439,Infrastructure,Infrastructure +468436,Infrastructure,Infrastructure +470009,International Trade,International Trade +470006,International Trade,International Trade +480110,International Trade,International Trade +468436,Regional Development,Regional Development +468431,Regional Development,Regional Development +480110,Regional Development,Regional Development +480107,Regional Development,Regional Development +470009,Regional Development,Regional Development +470008,Regional Development,Regional Development +470007,Regional Development,Regional Development +470006,Regional Development,Regional Development +470005,Regional Development,Regional Development +470004,Regional Development,Regional Development +470002,Regional Development,Regional Development +469998,Regional Development,Regional Development +468452,Regional Development,Regional Development +468445,Regional Development,Regional Development +467692,Agriculture,Agriculture +499228,Climate,Climate +467871,Climate,Climate +540093,Climate,Climate +537807,Climate,Climate +501740,Employment and Training,Employment and Training +497093,Agriculture,Agriculture +467960,Agriculture,Agriculture +497098,Agriculture,Agriculture +468067,Immigration,Immigration +468066,Immigration,Immigration +477081,Labour,Labour +468259,Labour,Labour +543173,Labour,Labour +541390,Labour,Labour +534122,Labour,Labour +534102,Labour,Labour +530972,Labour,Labour +530969,Labour,Labour +528786,Labour,Labour +528782,Labour,Labour +522300,Labour,Labour +522299,Labour,Labour +522298,Labour,Labour +522294,Labour,Labour +522293,Labour,Labour +522289,Labour,Labour +522279,Labour,Labour +519211,Labour,Labour +515446,Labour,Labour +515441,Labour,Labour +506246,Labour,Labour +506244,Labour,Labour +506243,Labour,Labour +506242,Labour,Labour +500852,Labour,Labour +500851,Labour,Labour +500850,Labour,Labour +500847,Labour,Labour +498073,Labour,Labour +498072,Labour,Labour +496266,Labour,Labour +496265,Labour,Labour +490567,Labour,Labour +531437,Energy,Energy +531436,Energy,Energy +505552,Energy,Energy +480108,Energy,Energy +480106,Energy,Energy +470027,Energy,Energy +470026,Energy,Energy +470025,Energy,Energy +470023,Energy,Energy +470019,Energy,Energy +470015,Energy,Energy +470012,Energy,Energy +470010,Energy,Energy +468451,Energy,Energy +468446,Energy,Energy +468443,Energy,Energy +468438,Energy,Energy +468435,Energy,Energy +541300,Energy,Energy +541299,Energy,Energy +541297,Energy,Energy +537545,Energy,Energy +535631,Energy,Energy +535626,Energy,Energy +531836,Energy,Energy +531829,Energy,Energy +470015,Infrastructure,Infrastructure +470012,Infrastructure,Infrastructure +470010,Infrastructure,Infrastructure +468451,Infrastructure,Infrastructure +468446,Infrastructure,Infrastructure +468443,Infrastructure,Infrastructure +468438,Infrastructure,Infrastructure +468435,Infrastructure,Infrastructure +480108,Infrastructure,Infrastructure +480106,Infrastructure,Infrastructure +470027,Infrastructure,Infrastructure +470026,Infrastructure,Infrastructure +470025,Infrastructure,Infrastructure +470023,Infrastructure,Infrastructure +468438,Transportation,Transportation +468435,Transportation,Transportation +480108,Transportation,Transportation +480106,Transportation,Transportation +468451,Transportation,Transportation +468446,Transportation,Transportation +488187,International Trade,International Trade +469879,International Trade,International Trade +536105,International Trade,International Trade +536103,International Trade,International Trade +472947,Economic Development,Economic Development +471370,Economic Development,Economic Development +479600,Economic Development,Economic Development +477675,Economic Development,Economic Development +477674,Economic Development,Economic Development +477670,Economic Development,Economic Development +476382,Economic Development,Economic Development +475256,Economic Development,Economic Development +475254,Economic Development,Economic Development +475253,Economic Development,Economic Development +475252,Economic Development,Economic Development +475251,Economic Development,Economic Development +475250,Economic Development,Economic Development +475247,Economic Development,Economic Development +475246,Economic Development,Economic Development +475245,Economic Development,Economic Development +475242,Economic Development,Economic Development +472994,Economic Development,Economic Development +472947,Energy,Energy +471370,Energy,Energy +479600,Energy,Energy +477675,Energy,Energy +477674,Energy,Energy +477670,Energy,Energy +476382,Energy,Energy +475256,Energy,Energy +475254,Energy,Energy +475253,Energy,Energy +475252,Energy,Energy +475251,Energy,Energy +475250,Energy,Energy +475247,Energy,Energy +475246,Energy,Energy +475245,Energy,Energy +475242,Energy,Energy +472994,Energy,Energy +468477,Infrastructure,Infrastructure +468464,Infrastructure,Infrastructure +500220,Infrastructure,Infrastructure +474233,Infrastructure,Infrastructure +468803,Infrastructure,Infrastructure +468801,Infrastructure,Infrastructure +468800,Infrastructure,Infrastructure +468799,Infrastructure,Infrastructure +468882,Infrastructure,Infrastructure +468525,Infrastructure,Infrastructure +544333,Infrastructure,Infrastructure +544332,Infrastructure,Infrastructure +544331,Infrastructure,Infrastructure +541834,Infrastructure,Infrastructure +541830,Infrastructure,Infrastructure +541829,Infrastructure,Infrastructure +541827,Infrastructure,Infrastructure +541826,Infrastructure,Infrastructure +541824,Infrastructure,Infrastructure +541822,Infrastructure,Infrastructure +539100,Infrastructure,Infrastructure +539099,Infrastructure,Infrastructure +539098,Infrastructure,Infrastructure +539097,Infrastructure,Infrastructure +539096,Infrastructure,Infrastructure +539095,Infrastructure,Infrastructure +539094,Infrastructure,Infrastructure +536875,Infrastructure,Infrastructure +531189,Infrastructure,Infrastructure +527687,Infrastructure,Infrastructure +524415,Infrastructure,Infrastructure +524085,Infrastructure,Infrastructure +524084,Infrastructure,Infrastructure +516792,Infrastructure,Infrastructure +516791,Infrastructure,Infrastructure +516788,Infrastructure,Infrastructure +516787,Infrastructure,Infrastructure +516784,Infrastructure,Infrastructure +515327,Infrastructure,Infrastructure +515326,Infrastructure,Infrastructure +515325,Infrastructure,Infrastructure +515324,Infrastructure,Infrastructure +515323,Infrastructure,Infrastructure +515321,Infrastructure,Infrastructure +514037,Infrastructure,Infrastructure +512731,Infrastructure,Infrastructure +512723,Infrastructure,Infrastructure +509818,Infrastructure,Infrastructure +509817,Infrastructure,Infrastructure +509815,Infrastructure,Infrastructure +504389,Infrastructure,Infrastructure +504388,Infrastructure,Infrastructure +504386,Infrastructure,Infrastructure +504383,Infrastructure,Infrastructure +504382,Infrastructure,Infrastructure +504380,Infrastructure,Infrastructure +504379,Infrastructure,Infrastructure +504376,Infrastructure,Infrastructure +502545,Infrastructure,Infrastructure +502542,Infrastructure,Infrastructure +502528,Infrastructure,Infrastructure +502517,Infrastructure,Infrastructure +496405,Infrastructure,Infrastructure +496403,Infrastructure,Infrastructure +496400,Infrastructure,Infrastructure +490755,Infrastructure,Infrastructure +490752,Infrastructure,Infrastructure +480422,Infrastructure,Infrastructure +478382,Infrastructure,Infrastructure +468924,Infrastructure,Infrastructure +468905,Infrastructure,Infrastructure +471178,Climate,Climate +471170,Climate,Climate +536171,Climate,Climate +529475,Climate,Climate +529460,Climate,Climate +513544,Climate,Climate +513541,Climate,Climate +510719,Climate,Climate +503014,Climate,Climate +503013,Climate,Climate +499731,Climate,Climate +493784,Climate,Climate +493782,Climate,Climate +490732,Climate,Climate +487684,Climate,Climate +487683,Climate,Climate +487682,Climate,Climate +487681,Climate,Climate +487680,Climate,Climate +482639,Climate,Climate +482638,Climate,Climate +479866,Climate,Climate +476075,Climate,Climate +476074,Climate,Climate +476051,Climate,Climate +473490,Climate,Climate +473489,Climate,Climate +476074,Energy,Energy +476071,Energy,Energy +536171,Energy,Energy +529475,Energy,Energy +529460,Energy,Energy +518469,Energy,Energy +515940,Energy,Energy +503014,Energy,Energy +503013,Energy,Energy +499731,Energy,Energy +493784,Energy,Energy +493782,Energy,Energy +490732,Energy,Energy +487684,Energy,Energy +487683,Energy,Energy +479866,Energy,Energy +478042,Energy,Energy +476051,Government Procurement,Government Procurement +473490,Government Procurement,Government Procurement +515940,Government Procurement,Government Procurement +513544,Government Procurement,Government Procurement +513541,Government Procurement,Government Procurement +487682,Government Procurement,Government Procurement +487681,Government Procurement,Government Procurement +471178,Transportation,Transportation +471170,Transportation,Transportation +518469,Transportation,Transportation +510719,Transportation,Transportation +510700,Transportation,Transportation +482639,Transportation,Transportation +482638,Transportation,Transportation +478042,Transportation,Transportation +476075,Transportation,Transportation +476074,Transportation,Transportation +476071,Transportation,Transportation +476051,Transportation,Transportation +473490,Transportation,Transportation +473489,Transportation,Transportation +482310,Energy,Energy +477984,Energy,Energy +491153,Energy,Energy +487145,Energy,Energy +487111,Energy,Energy +482310,Climate,Climate +477984,Climate,Climate +491153,Climate,Climate +487145,Climate,Climate +487111,Climate,Climate +482310,Transportation,Transportation +477984,Transportation,Transportation +491153,Transportation,Transportation +487145,Transportation,Transportation +487111,Transportation,Transportation +482310,Government Procurement,Government Procurement +477984,Government Procurement,Government Procurement +491153,Government Procurement,Government Procurement +487145,Government Procurement,Government Procurement +487111,Government Procurement,Government Procurement +474540,Health,Health +474539,Health,Health +540988,Health,Health +533098,Health,Health +518729,Health,Health +516348,Health,Health +511846,Health,Health +509519,Health,Health +503409,Health,Health +496963,Health,Health +488847,Health,Health +485980,Health,Health +485979,Health,Health +485978,Health,Health +485977,Health,Health +483240,Health,Health +483239,Health,Health +483238,Health,Health +483235,Health,Health +481153,Health,Health +481152,Health,Health +476603,Health,Health +483235,Intellectual Property,Intellectual Property +481153,Intellectual Property,Intellectual Property +481152,Intellectual Property,Intellectual Property +474540,Intellectual Property,Intellectual Property +474539,Intellectual Property,Intellectual Property +518729,Intellectual Property,Intellectual Property +496963,Intellectual Property,Intellectual Property +485980,Intellectual Property,Intellectual Property +485978,Intellectual Property,Intellectual Property +485977,Intellectual Property,Intellectual Property +483240,Intellectual Property,Intellectual Property +483239,Intellectual Property,Intellectual Property +533098,Research and Development,Research and Development +518729,Research and Development,Research and Development +496963,Research and Development,Research and Development +471511,Health,Health +468722,Health,Health +499922,Health,Health +494662,Health,Health +494662,Industry,Industry +489808,Industry,Industry +471511,Industry,Industry +468722,Industry,Industry +469010,Economic Development,Economic Development +468959,Economic Development,Economic Development +482769,Economic Development,Economic Development +481887,Economic Development,Economic Development +481095,Economic Development,Economic Development +480439,Economic Development,Economic Development +478953,Economic Development,Economic Development +478665,Economic Development,Economic Development +476690,Economic Development,Economic Development +476686,Economic Development,Economic Development +471371,Economic Development,Economic Development +478665,Agriculture,Agriculture +471371,Agriculture,Agriculture +469591,Agriculture,Agriculture +469010,Agriculture,Agriculture +468959,Agriculture,Agriculture +476690,Health,Health +476686,Health,Health +482769,Health,Health +481095,International Trade,International Trade +480439,International Trade,International Trade +470421,Official Languages,Official Languages +470415,Official Languages,Official Languages +500854,Official Languages,Official Languages +491100,Official Languages,Official Languages +491091,Official Languages,Official Languages +484580,Official Languages,Official Languages +484573,Official Languages,Official Languages +484530,Official Languages,Official Languages +484494,Official Languages,Official Languages +484489,Official Languages,Official Languages +484455,Official Languages,Official Languages +484454,Official Languages,Official Languages +484448,Official Languages,Official Languages +475764,Official Languages,Official Languages +474194,Government Procurement,Government Procurement +472119,Government Procurement,Government Procurement +474194,Health,Health +472119,Health,Health +489809,Health,Health +468790,Health,Health +468731,Health,Health +468731,Internal Trade,Internal Trade +468731,International Trade,International Trade +468740,Health,Health +468740,Internal Trade,Internal Trade +468740,International Trade,International Trade +472558,Climate,Climate +470194,Climate,Climate +529693,Climate,Climate +529690,Climate,Climate +529689,Climate,Climate +526603,Climate,Climate +523113,Climate,Climate +523087,Climate,Climate +520213,Climate,Climate +520212,Climate,Climate +517835,Climate,Climate +517818,Climate,Climate +517806,Climate,Climate +515688,Climate,Climate +515675,Climate,Climate +515667,Climate,Climate +514268,Climate,Climate +512854,Climate,Climate +512839,Climate,Climate +512666,Climate,Climate +508762,Climate,Climate +493551,Climate,Climate +493549,Climate,Climate +493547,Climate,Climate +491278,Climate,Climate +491217,Climate,Climate +477756,Climate,Climate +529689,Education,Education +526603,Education,Education +523113,Education,Education +523087,Education,Education +520213,Education,Education +520212,Education,Education +517835,Education,Education +517818,Education,Education +517806,Education,Education +515688,Education,Education +515675,Education,Education +515667,Education,Education +514268,Education,Education +512854,Education,Education +512839,Education,Education +512666,Education,Education +508762,Education,Education +493551,Education,Education +493549,Education,Education +493547,Education,Education +491278,Education,Education +491217,Education,Education +477756,Education,Education +472564,Education,Education +472558,Education,Education +470194,Education,Education +470190,Education,Education +529693,Education,Education +491217,Environment,Environment +477756,Environment,Environment +472564,Environment,Environment +472558,Environment,Environment +470194,Environment,Environment +470190,Environment,Environment +529693,Environment,Environment +529690,Environment,Environment +529689,Environment,Environment +526603,Environment,Environment +523113,Environment,Environment +523087,Environment,Environment +520213,Environment,Environment +520212,Environment,Environment +517835,Environment,Environment +517818,Environment,Environment +517806,Environment,Environment +515688,Environment,Environment +515675,Environment,Environment +515667,Environment,Environment +514268,Environment,Environment +512854,Environment,Environment +512839,Environment,Environment +512666,Environment,Environment +508762,Environment,Environment +493551,Environment,Environment +493549,Environment,Environment +493547,Environment,Environment +468751,Transportation,Transportation +507182,Infrastructure,Infrastructure +503501,Infrastructure,Infrastructure +503499,Infrastructure,Infrastructure +503212,Infrastructure,Infrastructure +503210,Infrastructure,Infrastructure +503208,Infrastructure,Infrastructure +500929,Infrastructure,Infrastructure +500438,Infrastructure,Infrastructure +499999,Infrastructure,Infrastructure +497291,Infrastructure,Infrastructure +496369,Infrastructure,Infrastructure +492127,Infrastructure,Infrastructure +488542,Infrastructure,Infrastructure +488538,Infrastructure,Infrastructure +486135,Infrastructure,Infrastructure +481632,Infrastructure,Infrastructure +481425,Infrastructure,Infrastructure +481183,Infrastructure,Infrastructure +480936,Infrastructure,Infrastructure +478401,Infrastructure,Infrastructure +472376,Infrastructure,Infrastructure +471773,Infrastructure,Infrastructure +471540,Infrastructure,Infrastructure +497291,Transportation,Transportation +496369,Transportation,Transportation +509742,Transportation,Transportation +503212,Transportation,Transportation +503210,Transportation,Transportation +500929,Transportation,Transportation +478402,Infrastructure,Infrastructure +471541,Infrastructure,Infrastructure +516599,Infrastructure,Infrastructure +515975,Infrastructure,Infrastructure +515974,Infrastructure,Infrastructure +514346,Infrastructure,Infrastructure +513804,Infrastructure,Infrastructure +509744,Infrastructure,Infrastructure +503510,Infrastructure,Infrastructure +503508,Infrastructure,Infrastructure +503504,Infrastructure,Infrastructure +503213,Infrastructure,Infrastructure +503209,Infrastructure,Infrastructure +500930,Infrastructure,Infrastructure +500000,Infrastructure,Infrastructure +497292,Infrastructure,Infrastructure +496370,Infrastructure,Infrastructure +488539,Infrastructure,Infrastructure +488528,Infrastructure,Infrastructure +486136,Infrastructure,Infrastructure +481633,Infrastructure,Infrastructure +480988,Infrastructure,Infrastructure +497292,Transportation,Transportation +496370,Transportation,Transportation +515975,Transportation,Transportation +515974,Transportation,Transportation +509744,Transportation,Transportation +503213,Transportation,Transportation +500930,Transportation,Transportation +476867,Financial Institutions,Financial Institutions +476867,Justice and Law Enforcement,Justice and Law Enforcement +503568,Transportation,Transportation +503428,Transportation,Transportation +469886,Transportation,Transportation +469159,Transportation,Transportation +468931,Transportation,Transportation +468798,Transportation,Transportation +492928,Health,Health +486674,Health,Health +540550,Health,Health +540549,Health,Health +486674,Internal Trade,Internal Trade +468805,Justice and Law Enforcement,Justice and Law Enforcement +468804,Justice and Law Enforcement,Justice and Law Enforcement +512124,Justice and Law Enforcement,Justice and Law Enforcement +504406,Justice and Law Enforcement,Justice and Law Enforcement +496688,Justice and Law Enforcement,Justice and Law Enforcement +496687,Justice and Law Enforcement,Justice and Law Enforcement +496683,Justice and Law Enforcement,Justice and Law Enforcement +494496,Justice and Law Enforcement,Justice and Law Enforcement +482915,Justice and Law Enforcement,Justice and Law Enforcement +482854,Justice and Law Enforcement,Justice and Law Enforcement +480667,Justice and Law Enforcement,Justice and Law Enforcement +480586,Justice and Law Enforcement,Justice and Law Enforcement +480456,Justice and Law Enforcement,Justice and Law Enforcement +478383,Justice and Law Enforcement,Justice and Law Enforcement +476789,Justice and Law Enforcement,Justice and Law Enforcement +469184,Employment and Training,Employment and Training +468843,Employment and Training,Employment and Training +478432,Employment and Training,Employment and Training +471786,Health,Health +471784,Health,Health +469398,Health,Health +469397,Health,Health +469396,Health,Health +469395,Health,Health +469394,Health,Health +469393,Health,Health +469392,Health,Health +469391,Health,Health +469390,Health,Health +491615,Health,Health +488027,Health,Health +481009,Health,Health +481008,Health,Health +481007,Health,Health +481006,Health,Health +481005,Health,Health +481004,Health,Health +481003,Health,Health +481002,Health,Health +481001,Health,Health +481000,Health,Health +480999,Health,Health +480998,Health,Health +480997,Health,Health +480996,Health,Health +480995,Health,Health +480994,Health,Health +480993,Health,Health +480992,Health,Health +480991,Health,Health +480974,Health,Health +480973,Health,Health +480972,Health,Health +480971,Health,Health +480970,Health,Health +480969,Health,Health +480968,Health,Health +480967,Health,Health +480964,Health,Health +480963,Health,Health +471929,Health,Health +471928,Health,Health +471813,Health,Health +471811,Health,Health +471809,Health,Health +471806,Health,Health +471805,Health,Health +471804,Health,Health +471803,Health,Health +471802,Health,Health +471800,Health,Health +471797,Health,Health +471794,Health,Health +471791,Health,Health +469195,Taxation and Finance,Taxation and Finance +487729,Economic Development,Economic Development +487728,Economic Development,Economic Development +482220,Economic Development,Economic Development +477933,Economic Development,Economic Development +477921,Economic Development,Economic Development +473480,Economic Development,Economic Development +473439,Economic Development,Economic Development +470773,Economic Development,Economic Development +528531,Economic Development,Economic Development +523027,Economic Development,Economic Development +523021,Economic Development,Economic Development +522994,Economic Development,Economic Development +512868,Economic Development,Economic Development +509108,Economic Development,Economic Development +502668,Economic Development,Economic Development +502656,Economic Development,Economic Development +502642,Economic Development,Economic Development +470421,Small Business,Small Business +470415,Small Business,Small Business +479879,Small Business,Small Business +473457,Small Business,Small Business +503316,Taxation and Finance,Taxation and Finance +517163,Health,Health +494754,Health,Health +531300,Employment and Training,Employment and Training +531299,Employment and Training,Employment and Training +479148,Employment and Training,Employment and Training +468929,Employment and Training,Employment and Training +468928,Employment and Training,Employment and Training +468926,Employment and Training,Employment and Training +468925,Employment and Training,Employment and Training +534354,Employment and Training,Employment and Training +534353,Employment and Training,Employment and Training +498632,Labour,Labour +530903,Environment,Environment +478783,Justice and Law Enforcement,Justice and Law Enforcement +493891,Economic Development,Economic Development +487940,Employment and Training,Employment and Training +499704,Industry,Industry +511502,Small Business,Small Business +531570,Regional Development,Regional Development +489484,Climate,Climate +478608,Environment,Environment +469528,Economic Development,Economic Development +509209,Mining,Mining +509209,Fisheries,Fisheries +467149,Research and Development,Research and Development +467157,Research and Development,Research and Development +467169,Industry,Industry +497403,International Relations,International Relations +486774,Agriculture,Agriculture +486774,Environment,Environment +486774,International Trade,International Trade +542133,Environment,Environment +489898,Health,Health +475486,Research and Development,Research and Development +477759,Transportation,Transportation +501744,Budget,Budget +467652,Employment and Training,Employment and Training +467671,Employment and Training,Employment and Training +467671,Regional Development,Regional Development +468891,Economic Development,Economic Development +468891,Energy,Energy +468891,Regional Development,Regional Development +468439,Climate,Climate +468439,Economic Development,Economic Development +468439,Energy,Energy +480110,Environment,Environment +468439,Forestry,Forestry +480110,Industry,Industry +468431,Infrastructure,Infrastructure +480107,International Trade,International Trade +468439,Regional Development,Regional Development +538012,Agriculture,Agriculture +499233,Climate,Climate +467834,Intellectual Property,Intellectual Property +467846,Employment and Training,Employment and Training +467862,Employment and Training,Employment and Training +467862,Intellectual Property,Intellectual Property +467862,Small Business,Small Business +497096,Agriculture,Agriculture +468027,Employment and Training,Employment and Training +468068,Immigration,Immigration +483016,Industry,Industry +480896,Health,Health +490559,Labour,Labour +531438,Energy,Energy +470019,Infrastructure,Infrastructure +468443,Transportation,Transportation +470819,Economic Development,Economic Development +470819,Regional Development,Regional Development +470819,Tourism,Tourism +491241,International Trade,International Trade +470529,Economic Development,Economic Development +470529,Tourism,Tourism +472991,Economic Development,Economic Development +472991,Energy,Energy +468838,Immigration,Immigration +468838,Labour,Labour +468481,Infrastructure,Infrastructure +468837,Immigration,Immigration +468837,Labour,Labour +468884,Infrastructure,Infrastructure +471182,Climate,Climate +476075,Energy,Energy +487680,Government Procurement,Government Procurement +471182,Transportation,Transportation +487108,Energy,Energy +487108,Climate,Climate +487108,Transportation,Transportation +487108,Government Procurement,Government Procurement +469540,Health,Health +469540,Agriculture,Agriculture +469540,Employment and Training,Employment and Training +518729,Economic Development,Economic Development +476602,Health,Health +483238,Intellectual Property,Intellectual Property +540988,Research and Development,Research and Development +471511,Government Procurement,Government Procurement +489808,Health,Health +499922,Industry,Industry +469591,Economic Development,Economic Development +481887,Taxation and Finance,Taxation and Finance +481095,Agriculture,Agriculture +478953,Health,Health +482769,International Trade,International Trade +475750,Official Languages,Official Languages +474196,Government Procurement,Government Procurement +489809,Industry,Industry +474196,Health,Health +494415,Health,Health +468790,Internal Trade,Internal Trade +468790,International Trade,International Trade +468792,Health,Health +468792,Internal Trade,Internal Trade +468792,International Trade,International Trade +472564,Climate,Climate +529690,Education,Education +491278,Environment,Environment +500202,Transportation,Transportation +466923,Privacy and Access to Information,Privacy and Access to Information +468780,Regional Development,Regional Development +509742,Infrastructure,Infrastructure +499999,Transportation,Transportation +480938,Infrastructure,Infrastructure +500000,Transportation,Transportation +482539,Financial Institutions,Financial Institutions +482539,Justice and Law Enforcement,Justice and Law Enforcement +468796,Transportation,Transportation +536388,Health,Health +492928,Internal Trade,Internal Trade +471573,Justice and Law Enforcement,Justice and Law Enforcement +469185,Employment and Training,Employment and Training +471789,Health,Health +474235,Taxation and Finance,Taxation and Finance +487730,Economic Development,Economic Development +477921,Employment and Training,Employment and Training +470762,Small Business,Small Business +489172,Privacy and Access to Information,Privacy and Access to Information +542064,Taxation and Finance,Taxation and Finance +517164,Health,Health +531301,Employment and Training,Employment and Training +501067,Labour,Labour +537700,Transportation,Transportation +532533,Regional Development,Regional Development +499767,Health,Health +471651,Economic Development,Economic Development +469715,Industry,Industry +471651,Research and Development,Research and Development +471651,Small Business,Small Business +469692,Transportation,Transportation +468932,Taxation and Finance,Taxation and Finance +468932,Energy,Energy +469843,Health,Health +469843,Labour,Labour +470944,Employment and Training,Employment and Training +471437,Health,Health +471712,Labour,Labour +477278,Justice and Law Enforcement,Justice and Law Enforcement +480882,Defence,Defence +471506,Economic Development,Economic Development +471506,Employment and Training,Employment and Training +471506,Labour,Labour +471506,Small Business,Small Business +471507,Taxation and Finance,Taxation and Finance +520658,Economic Development,Economic Development +475411,Infrastructure,Infrastructure +473584,Regional Development,Regional Development +470802,Taxation and Finance,Taxation and Finance +470802,Health,Health +479798,Religion,Religion +479798,Taxation and Finance,Taxation and Finance +468968,Agriculture,Agriculture +468968,Employment and Training,Employment and Training +468968,Immigration,Immigration +468969,Agriculture,Agriculture +468969,Employment and Training,Employment and Training +468969,Immigration,Immigration +468985,Agriculture,Agriculture +468985,Employment and Training,Employment and Training +468985,Immigration,Immigration +468967,Health,Health +511669,Consumer Issues,Consumer Issues +506658,Agriculture,Agriculture +506590,Small Business,Small Business +506571,Economic Development,Economic Development +506590,Tourism,Tourism +491052,Infrastructure,Infrastructure +468999,Transportation,Transportation +469839,Industry,Industry +469842,International Trade,International Trade +469839,Economic Development,Economic Development +469025,Budget,Budget +511811,Industry,Industry +532448,Taxation and Finance,Taxation and Finance +469037,Budget,Budget +469039,Budget,Budget +477213,Taxation and Finance,Taxation and Finance +475009,Taxation and Finance,Taxation and Finance +472386,Health,Health +472386,Industry,Industry +479270,Budget,Budget +488665,Economic Development,Economic Development +488696,Employment and Training,Employment and Training +494380,Health,Health +488665,Labour,Labour +470492,Defence,Defence +470492,Economic Development,Economic Development +470492,Government Procurement,Government Procurement +495975,Industry,Industry +493283,Regional Development,Regional Development +493283,Security,Security +472741,Health,Health +486699,Health,Health +504770,Health,Health +470020,Government Procurement,Government Procurement +470020,Health,Health +470020,International Trade,International Trade +471915,Health,Health +470241,Tourism,Tourism +536410,Health,Health +518997,Taxation and Finance,Taxation and Finance +481825,Housing,Housing +474104,Financial Institutions,Financial Institutions +474529,Small Business,Small Business +492224,Economic Development,Economic Development +488911,Taxation and Finance,Taxation and Finance +541105,Security,Security +472819,Budget,Budget +472800,Employment and Training,Employment and Training +470753,Labour,Labour +472800,Taxation and Finance,Taxation and Finance +469152,Labour,Labour +485737,Employment and Training,Employment and Training +471549,Housing,Housing +470830,Employment and Training,Employment and Training +470084,Climate,Climate +480893,Economic Development,Economic Development +480893,Education,Education +503913,Employment and Training,Employment and Training +470082,Fisheries,Fisheries +503910,Immigration,Immigration +470082,Infrastructure,Infrastructure +470084,Intellectual Property,Intellectual Property +503910,International Relations,International Relations +480532,Defence,Defence +476824,Agriculture,Agriculture +470056,Infrastructure,Infrastructure +525178,Justice and Law Enforcement,Justice and Law Enforcement +525178,Municipalities,Municipalities +469529,Research and Development,Research and Development +470799,Taxation and Finance,Taxation and Finance +471548,Employment and Training,Employment and Training +474193,Housing,Housing +508730,Health,Health +508730,Pensions,Pensions +508728,Health,Health +471399,Economic Development,Economic Development +471048,Small Business,Small Business +471302,Sports,Sports +471943,Tourism,Tourism +474923,Climate,Climate +474921,Energy,Energy +472731,Environment,Environment +484767,Industry,Industry +474923,Taxation and Finance,Taxation and Finance +470976,Economic Development,Economic Development +470976,Employment and Training,Employment and Training +471206,Budget,Budget +471212,Energy,Energy +471212,International Trade,International Trade +472423,Government Procurement,Government Procurement +491340,Health,Health +480370,Research and Development,Research and Development +480372,Small Business,Small Business +532537,Justice and Law Enforcement,Justice and Law Enforcement +488347,Research and Development,Research and Development +508255,Government Procurement,Government Procurement +513263,Internal Trade,Internal Trade +479196,Economic Development,Economic Development +508901,Sports,Sports +508901,Regional Development,Regional Development +479196,Tourism,Tourism +479197,Health,Health +483305,Health,Health +483305,Transportation,Transportation +482179,Environment,Environment +473805,Economic Development,Economic Development +473798,Industry,Industry +480282,Infrastructure,Infrastructure +473803,Regional Development,Regional Development +483857,Budget,Budget +483852,Economic Development,Economic Development +483857,Education,Education +483852,Employment and Training,Employment and Training +483852,Industry,Industry +483852,Regional Development,Regional Development +483852,Small Business,Small Business +469828,Economic Development,Economic Development +469828,Financial Institutions,Financial Institutions +469828,Industry,Industry +469828,Small Business,Small Business +493522,Industry,Industry +473351,Employment and Training,Employment and Training +473260,Sports,Sports +469271,Transportation,Transportation +470592,Taxation and Finance,Taxation and Finance +474265,Employment and Training,Employment and Training +475949,Education,Education +477969,Tourism,Tourism +473422,Taxation and Finance,Taxation and Finance +471361,Health,Health +471688,Climate,Climate +471691,Energy,Energy +471691,Environment,Environment +469364,Tourism,Tourism +470084,Environment,Environment +494503,Labour,Labour +543319,Labour,Labour +543318,Labour,Labour +537700,Labour,Labour +534354,Labour,Labour +534353,Labour,Labour +531301,Labour,Labour +531300,Labour,Labour +527956,Labour,Labour +527954,Labour,Labour +507580,Labour,Labour +503823,Labour,Labour +534355,Transportation,Transportation +531301,Transportation,Transportation +527957,Transportation,Transportation +527956,Transportation,Transportation +527955,Transportation,Transportation +527954,Transportation,Transportation +527953,Transportation,Transportation +522101,Transportation,Transportation +522100,Transportation,Transportation +522099,Transportation,Transportation +522098,Transportation,Transportation +522097,Transportation,Transportation +519557,Transportation,Transportation +519556,Transportation,Transportation +517092,Transportation,Transportation +517090,Transportation,Transportation +517088,Transportation,Transportation +515768,Transportation,Transportation +515570,Transportation,Transportation +515569,Transportation,Transportation +515568,Transportation,Transportation +514480,Transportation,Transportation +513417,Transportation,Transportation +510276,Transportation,Transportation +507580,Transportation,Transportation +503823,Transportation,Transportation +501067,Transportation,Transportation +498632,Transportation,Transportation +494503,Transportation,Transportation +490897,Transportation,Transportation +490896,Transportation,Transportation +490895,Transportation,Transportation +490894,Transportation,Transportation +490893,Transportation,Transportation +486686,Transportation,Transportation +486685,Transportation,Transportation +479148,Transportation,Transportation +476647,Transportation,Transportation +474941,Transportation,Transportation +472286,Transportation,Transportation +472285,Transportation,Transportation +472284,Transportation,Transportation +472283,Transportation,Transportation +472281,Transportation,Transportation +469106,Transportation,Transportation +468927,Transportation,Transportation +468926,Transportation,Transportation +468925,Transportation,Transportation +537702,Transportation,Transportation +468915,Regional Development,Regional Development +469717,Health,Health +471583,Economic Development,Economic Development +469715,Economic Development,Economic Development +471651,Industry,Industry +471583,Industry,Industry +471583,Research and Development,Research and Development +469715,Research and Development,Research and Development +471583,Small Business,Small Business +469715,Small Business,Small Business +469687,Transportation,Transportation +469680,Transportation,Transportation +543258,Taxation and Finance,Taxation and Finance +543258,Energy,Energy +469823,Health,Health +469822,Health,Health +471711,Health,Health +471493,Health,Health +471435,Health,Health +471434,Health,Health +471332,Health,Health +469823,Labour,Labour +469822,Labour,Labour +471711,Labour,Labour +471493,Labour,Labour +471435,Labour,Labour +471434,Labour,Labour +471332,Labour,Labour +470944,Labour,Labour +471712,Health,Health +471438,Health,Health +471438,Labour,Labour +471437,Labour,Labour +469333,Economic Development,Economic Development +469332,Economic Development,Economic Development +480882,Economic Development,Economic Development +471510,Economic Development,Economic Development +471509,Economic Development,Economic Development +471508,Economic Development,Economic Development +471507,Economic Development,Economic Development +469333,Employment and Training,Employment and Training +469332,Employment and Training,Employment and Training +480882,Employment and Training,Employment and Training +476366,Employment and Training,Employment and Training +476365,Employment and Training,Employment and Training +476364,Employment and Training,Employment and Training +476363,Employment and Training,Employment and Training +476361,Employment and Training,Employment and Training +471510,Employment and Training,Employment and Training +471509,Employment and Training,Employment and Training +471508,Employment and Training,Employment and Training +471507,Employment and Training,Employment and Training +469333,Labour,Labour +469332,Labour,Labour +480882,Labour,Labour +476366,Labour,Labour +476365,Labour,Labour +476364,Labour,Labour +476363,Labour,Labour +476361,Labour,Labour +471510,Labour,Labour +471509,Labour,Labour +471508,Labour,Labour +471507,Labour,Labour +469333,Small Business,Small Business +469332,Small Business,Small Business +480882,Small Business,Small Business +471510,Small Business,Small Business +471509,Small Business,Small Business +471508,Small Business,Small Business +471507,Small Business,Small Business +471506,Taxation and Finance,Taxation and Finance +469333,Taxation and Finance,Taxation and Finance +480882,Taxation and Finance,Taxation and Finance +476366,Taxation and Finance,Taxation and Finance +476365,Taxation and Finance,Taxation and Finance +476364,Taxation and Finance,Taxation and Finance +476363,Taxation and Finance,Taxation and Finance +476361,Taxation and Finance,Taxation and Finance +471510,Taxation and Finance,Taxation and Finance +471509,Taxation and Finance,Taxation and Finance +471508,Taxation and Finance,Taxation and Finance +473584,Infrastructure,Infrastructure +470596,Infrastructure,Infrastructure +469700,Religion,Religion +469700,Taxation and Finance,Taxation and Finance +468966,Agriculture,Agriculture +468965,Agriculture,Agriculture +471974,Agriculture,Agriculture +471973,Agriculture,Agriculture +470064,Agriculture,Agriculture +468966,Employment and Training,Employment and Training +468965,Employment and Training,Employment and Training +471974,Employment and Training,Employment and Training +471973,Employment and Training,Employment and Training +470064,Employment and Training,Employment and Training +468966,Immigration,Immigration +468965,Immigration,Immigration +471974,Immigration,Immigration +471973,Immigration,Immigration +470064,Immigration,Immigration +468984,Agriculture,Agriculture +468983,Agriculture,Agriculture +468987,Agriculture,Agriculture +468986,Agriculture,Agriculture +468984,Employment and Training,Employment and Training +468983,Employment and Training,Employment and Training +468987,Employment and Training,Employment and Training +468986,Employment and Training,Employment and Training +468984,Immigration,Immigration +468983,Immigration,Immigration +468987,Immigration,Immigration +468986,Immigration,Immigration +506590,Agriculture,Agriculture +506571,Agriculture,Agriculture +473934,Agriculture,Agriculture +511669,Agriculture,Agriculture +506809,Agriculture,Agriculture +506659,Agriculture,Agriculture +506571,Small Business,Small Business +469166,Small Business,Small Business +511669,Small Business,Small Business +506809,Small Business,Small Business +506659,Small Business,Small Business +506658,Small Business,Small Business +473934,Economic Development,Economic Development +469166,Economic Development,Economic Development +511669,Economic Development,Economic Development +506809,Economic Development,Economic Development +506659,Economic Development,Economic Development +506658,Economic Development,Economic Development +506590,Economic Development,Economic Development +506571,Tourism,Tourism +473934,Tourism,Tourism +511669,Tourism,Tourism +468998,Transportation,Transportation +469838,Industry,Industry +469826,Industry,Industry +470930,Industry,Industry +469842,Industry,Industry +469838,Economic Development,Economic Development +469826,Economic Development,Economic Development +470930,Economic Development,Economic Development +469842,Economic Development,Economic Development +516962,Taxation and Finance,Taxation and Finance +469412,Taxation and Finance,Taxation and Finance +475001,Taxation and Finance,Taxation and Finance +472416,Taxation and Finance,Taxation and Finance +514516,Taxation and Finance,Taxation and Finance +508593,Taxation and Finance,Taxation and Finance +508453,Taxation and Finance,Taxation and Finance +508448,Taxation and Finance,Taxation and Finance +477219,Taxation and Finance,Taxation and Finance +472419,Taxation and Finance,Taxation and Finance +514515,Taxation and Finance,Taxation and Finance +508608,Taxation and Finance,Taxation and Finance +508442,Taxation and Finance,Taxation and Finance +508428,Taxation and Finance,Taxation and Finance +477218,Taxation and Finance,Taxation and Finance +477217,Taxation and Finance,Taxation and Finance +472306,Health,Health +472306,Industry,Industry +478591,Budget,Budget +478351,Budget,Budget +494380,Budget,Budget +491928,Budget,Budget +491036,Budget,Budget +488882,Budget,Budget +488875,Budget,Budget +488813,Budget,Budget +488757,Budget,Budget +488730,Budget,Budget +488711,Budget,Budget +488696,Budget,Budget +488665,Budget,Budget +488637,Budget,Budget +488608,Budget,Budget +488637,Economic Development,Economic Development +488608,Economic Development,Economic Development +494380,Economic Development,Economic Development +491928,Economic Development,Economic Development +491036,Economic Development,Economic Development +488882,Economic Development,Economic Development +488875,Economic Development,Economic Development +488813,Economic Development,Economic Development +488757,Economic Development,Economic Development +488730,Economic Development,Economic Development +488711,Economic Development,Economic Development +488696,Economic Development,Economic Development +488665,Employment and Training,Employment and Training +488637,Employment and Training,Employment and Training +488608,Employment and Training,Employment and Training +478351,Employment and Training,Employment and Training +494380,Employment and Training,Employment and Training +491928,Employment and Training,Employment and Training +491036,Employment and Training,Employment and Training +488882,Employment and Training,Employment and Training +488875,Employment and Training,Employment and Training +488813,Employment and Training,Employment and Training +488757,Employment and Training,Employment and Training +488730,Employment and Training,Employment and Training +488711,Employment and Training,Employment and Training +491928,Health,Health +491036,Health,Health +488882,Health,Health +488875,Health,Health +488813,Health,Health +488757,Health,Health +488730,Health,Health +488711,Health,Health +488696,Health,Health +488665,Health,Health +488637,Health,Health +488608,Health,Health +479270,Health,Health +478591,Health,Health +478351,Health,Health +476343,Health,Health +471799,Health,Health +471795,Health,Health +471792,Health,Health +471788,Health,Health +471781,Health,Health +471780,Health,Health +488637,Labour,Labour +488608,Labour,Labour +476343,Labour,Labour +494380,Labour,Labour +491928,Labour,Labour +491036,Labour,Labour +488882,Labour,Labour +488875,Labour,Labour +488813,Labour,Labour +488757,Labour,Labour +488730,Labour,Labour +488711,Labour,Labour +488696,Labour,Labour +470488,Defence,Defence +470485,Defence,Defence +499603,Defence,Defence +499573,Defence,Defence +495975,Defence,Defence +493283,Defence,Defence +492185,Defence,Defence +470507,Defence,Defence +470505,Defence,Defence +470504,Defence,Defence +470503,Defence,Defence +470488,Economic Development,Economic Development +470485,Economic Development,Economic Development +499603,Economic Development,Economic Development +499573,Economic Development,Economic Development +495975,Economic Development,Economic Development +493283,Economic Development,Economic Development +492185,Economic Development,Economic Development +470507,Economic Development,Economic Development +470505,Economic Development,Economic Development +470504,Economic Development,Economic Development +470503,Economic Development,Economic Development +470488,Government Procurement,Government Procurement +470485,Government Procurement,Government Procurement +470507,Government Procurement,Government Procurement +470505,Government Procurement,Government Procurement +470504,Government Procurement,Government Procurement +470503,Government Procurement,Government Procurement +493283,Industry,Industry +492185,Industry,Industry +470507,Industry,Industry +470505,Industry,Industry +470504,Industry,Industry +470503,Industry,Industry +470492,Industry,Industry +470488,Industry,Industry +470485,Industry,Industry +499603,Industry,Industry +492185,Security,Security +472560,Health,Health +502103,Health,Health +502090,Health,Health +504777,Health,Health +470018,Government Procurement,Government Procurement +470018,Health,Health +470014,Health,Health +470018,International Trade,International Trade +470014,International Trade,International Trade +471914,Health,Health +471913,Health,Health +515226,Health,Health +504162,Health,Health +471405,Small Business,Small Business +469224,Small Business,Small Business +495125,Small Business,Small Business +495092,Small Business,Small Business +480904,Small Business,Small Business +480848,Small Business,Small Business +474532,Small Business,Small Business +474531,Small Business,Small Business +474530,Small Business,Small Business +483095,Taxation and Finance,Taxation and Finance +469099,Taxation and Finance,Taxation and Finance +516910,Security,Security +470753,Budget,Budget +469111,Budget,Budget +494387,Budget,Budget +489074,Budget,Budget +489073,Budget,Budget +482883,Budget,Budget +482228,Budget,Budget +479294,Budget,Budget +479007,Budget,Budget +479006,Budget,Budget +476232,Budget,Budget +475906,Budget,Budget +475902,Budget,Budget +469112,Employment and Training,Employment and Training +469111,Employment and Training,Employment and Training +472819,Employment and Training,Employment and Training +469111,Labour,Labour +470753,Taxation and Finance,Taxation and Finance +469111,Taxation and Finance,Taxation and Finance +479006,Taxation and Finance,Taxation and Finance +469148,Labour,Labour +506786,Labour,Labour +493461,Labour,Labour +478371,Labour,Labour +470760,Labour,Labour +470757,Labour,Labour +470733,Labour,Labour +470727,Labour,Labour +474144,Employment and Training,Employment and Training +471549,Employment and Training,Employment and Training +494130,Employment and Training,Employment and Training +489445,Employment and Training,Employment and Training +489443,Employment and Training,Employment and Training +470906,Housing,Housing +469363,Housing,Housing +492125,Housing,Housing +489683,Housing,Housing +485737,Housing,Housing +482640,Housing,Housing +481184,Housing,Housing +474144,Housing,Housing +472122,Housing,Housing +472066,Housing,Housing +470823,Employment and Training,Employment and Training +469145,Employment and Training,Employment and Training +478446,Employment and Training,Employment and Training +475915,Employment and Training,Employment and Training +470080,Education,Education +470076,Education,Education +503913,Education,Education +503912,Education,Education +503912,Employment and Training,Employment and Training +480893,Employment and Training,Employment and Training +470082,Employment and Training,Employment and Training +470076,Employment and Training,Employment and Training +470080,Immigration,Immigration +470076,Infrastructure,Infrastructure +470056,Agriculture,Agriculture +476824,Infrastructure,Infrastructure +476824,Municipalities,Municipalities +470056,Municipalities,Municipalities +469502,Research and Development,Research and Development +469266,Research and Development,Research and Development +501008,Research and Development,Research and Development +501005,Research and Development,Research and Development +501004,Research and Development,Research and Development +501003,Research and Development,Research and Development +496388,Research and Development,Research and Development +474316,Research and Development,Research and Development +474315,Research and Development,Research and Development +474286,Research and Development,Research and Development +471606,Research and Development,Research and Development +470642,Research and Development,Research and Development +470640,Research and Development,Research and Development +470637,Research and Development,Research and Development +469531,Research and Development,Research and Development +469530,Research and Development,Research and Development +470794,Taxation and Finance,Taxation and Finance +469202,Taxation and Finance,Taxation and Finance +471324,Taxation and Finance,Taxation and Finance +471323,Taxation and Finance,Taxation and Finance +470832,Taxation and Finance,Taxation and Finance +470804,Taxation and Finance,Taxation and Finance +471548,Housing,Housing +487765,Health,Health +469276,Economic Development,Economic Development +471775,Economic Development,Economic Development +471040,Small Business,Small Business +469295,Small Business,Small Business +469295,Sports,Sports +485655,Sports,Sports +480128,Sports,Sports +479153,Sports,Sports +479140,Sports,Sports +479138,Sports,Sports +474139,Sports,Sports +474128,Sports,Sports +472145,Sports,Sports +472095,Sports,Sports +471977,Sports,Sports +471948,Sports,Sports +471400,Sports,Sports +474921,Climate,Climate +472731,Climate,Climate +484767,Climate,Climate +472731,Energy,Energy +484767,Energy,Energy +474923,Energy,Energy +474923,Industry,Industry +474921,Industry,Industry +474921,Taxation and Finance,Taxation and Finance +472731,Taxation and Finance,Taxation and Finance +472422,Government Procurement,Government Procurement +491316,Health,Health +480366,Research and Development,Research and Development +478294,Research and Development,Research and Development +491340,Research and Development,Research and Development +491316,Research and Development,Research and Development +487466,Research and Development,Research and Development +482406,Research and Development,Research and Development +480372,Research and Development,Research and Development +480370,Small Business,Small Business +480366,Small Business,Small Business +532536,Justice and Law Enforcement,Justice and Law Enforcement +529927,Justice and Law Enforcement,Justice and Law Enforcement +469320,Justice and Law Enforcement,Justice and Law Enforcement +482653,Research and Development,Research and Development +538737,Research and Development,Research and Development +493503,Research and Development,Research and Development +488956,Research and Development,Research and Development +508243,Government Procurement,Government Procurement +508216,Government Procurement,Government Procurement +508216,Internal Trade,Internal Trade +473932,Internal Trade,Internal Trade +525372,Internal Trade,Internal Trade +519174,Internal Trade,Internal Trade +479195,Economic Development,Economic Development +479194,Economic Development,Economic Development +508901,Economic Development,Economic Development +505608,Economic Development,Economic Development +499415,Economic Development,Economic Development +479197,Economic Development,Economic Development +505608,Sports,Sports +499415,Sports,Sports +479197,Sports,Sports +479196,Sports,Sports +479195,Sports,Sports +479194,Sports,Sports +505608,Regional Development,Regional Development +479195,Tourism,Tourism +479194,Tourism,Tourism +505608,Tourism,Tourism +479197,Tourism,Tourism +479196,Health,Health +482179,Health,Health +482177,Health,Health +489039,Health,Health +482179,Transportation,Transportation +482177,Transportation,Transportation +489039,Transportation,Transportation +473802,Economic Development,Economic Development +473800,Economic Development,Economic Development +544325,Economic Development,Economic Development +480282,Economic Development,Economic Development +473796,Industry,Industry +473795,Industry,Industry +487934,Industry,Industry +480282,Industry,Industry +473806,Industry,Industry +473805,Industry,Industry +473803,Industry,Industry +473802,Industry,Industry +473800,Industry,Industry +499713,Infrastructure,Infrastructure +487934,Infrastructure,Infrastructure +473802,Regional Development,Regional Development +473798,Regional Development,Regional Development +473806,Regional Development,Regional Development +473805,Regional Development,Regional Development +483854,Budget,Budget +477163,Economic Development,Economic Development +477160,Economic Development,Economic Development +483857,Economic Development,Economic Development +483854,Economic Development,Economic Development +477163,Education,Education +477160,Education,Education +477163,Employment and Training,Employment and Training +477160,Employment and Training,Employment and Training +483857,Employment and Training,Employment and Training +483854,Employment and Training,Employment and Training +477163,Industry,Industry +477160,Industry,Industry +483857,Industry,Industry +483854,Industry,Industry +477163,Regional Development,Regional Development +477160,Regional Development,Regional Development +483857,Regional Development,Regional Development +483854,Regional Development,Regional Development +477163,Small Business,Small Business +477160,Small Business,Small Business +483857,Small Business,Small Business +483854,Small Business,Small Business +469827,Economic Development,Economic Development +469827,Financial Institutions,Financial Institutions +469827,Industry,Industry +469827,Small Business,Small Business +470534,Taxation and Finance,Taxation and Finance +475944,Education,Education +475674,Education,Education +514975,Education,Education +513022,Education,Education +511469,Education,Education +509033,Education,Education +509030,Education,Education +509029,Education,Education +505921,Education,Education +505920,Education,Education +505919,Education,Education +505918,Education,Education +502784,Education,Education +502782,Education,Education +502781,Education,Education +502780,Education,Education +502778,Education,Education +499747,Education,Education +499720,Education,Education +499703,Education,Education +496244,Education,Education +496242,Education,Education +496239,Education,Education +496238,Education,Education +496236,Education,Education +496230,Education,Education +493761,Education,Education +490048,Education,Education +488266,Education,Education +488265,Education,Education +488264,Education,Education +488263,Education,Education +488262,Education,Education +488261,Education,Education +478572,Education,Education +475970,Education,Education +475952,Education,Education +473415,Tourism,Tourism +473408,Tourism,Tourism +483115,Tourism,Tourism +473415,Taxation and Finance,Taxation and Finance +473408,Taxation and Finance,Taxation and Finance +483115,Taxation and Finance,Taxation and Finance +480806,Taxation and Finance,Taxation and Finance +480804,Taxation and Finance,Taxation and Finance +480802,Taxation and Finance,Taxation and Finance +477969,Taxation and Finance,Taxation and Finance +471271,Health,Health +469538,Health,Health +474410,Health,Health +471410,Health,Health +471690,Energy,Energy +471689,Energy,Energy +471690,Environment,Environment +471689,Environment,Environment +471757,Health,Health +469385,Health,Health +476473,Health,Health +476389,Health,Health +471755,Health,Health +469387,Health,Health +497193,Health,Health +494410,Health,Health +492304,Health,Health +478759,Health,Health +476387,Health,Health +471761,Health,Health +477635,Health,Health +538694,Health,Health +514357,Health,Health +480126,Health,Health +471748,Health,Health +469388,Health,Health +497192,Health,Health +476465,Health,Health +476425,Health,Health +471760,Health,Health +471756,Health,Health +471754,Health,Health +472892,Government Procurement,Government Procurement +472892,Health,Health +471203,Employment and Training,Employment and Training +471202,Employment and Training,Employment and Training +471987,Employment and Training,Employment and Training +471986,Employment and Training,Employment and Training +471985,Employment and Training,Employment and Training +471984,Employment and Training,Employment and Training +471980,Labour,Labour +471203,Labour,Labour +471202,Labour,Labour +471200,Labour,Labour +471987,Labour,Labour +471986,Labour,Labour +471985,Labour,Labour +471984,Labour,Labour +495928,Health,Health +490804,Health,Health +502256,Health,Health +495928,Industry,Industry +490804,Industry,Industry +495928,Research and Development,Research and Development +477888,Government Procurement,Government Procurement +477896,Health,Health +477888,Health,Health +482681,Health,Health +484818,Energy,Energy +479878,Energy,Energy +523497,Energy,Energy +520950,Energy,Energy +484818,Transportation,Transportation +479878,Transportation,Transportation +523497,Transportation,Transportation +520950,Transportation,Transportation +510652,Transportation,Transportation +507199,Transportation,Transportation +499878,Transportation,Transportation +484818,Government Procurement,Government Procurement +478528,Health,Health +473982,Health,Health +478528,Industry,Industry +473982,Industry,Industry +478528,Research and Development,Research and Development +473982,Research and Development,Research and Development +469825,Economic Development,Economic Development +469824,Economic Development,Economic Development +473714,Economic Development,Economic Development +473686,Economic Development,Economic Development +473685,Economic Development,Economic Development +473683,Economic Development,Economic Development +473680,Economic Development,Economic Development +473679,Economic Development,Economic Development +473678,Economic Development,Economic Development +471486,Economic Development,Economic Development +471484,Economic Development,Economic Development +471482,Economic Development,Economic Development +471481,Economic Development,Economic Development +471480,Economic Development,Economic Development +471348,Economic Development,Economic Development +471335,Economic Development,Economic Development +471334,Economic Development,Economic Development +471333,Economic Development,Economic Development +471330,Economic Development,Economic Development +471309,Economic Development,Economic Development +470920,Economic Development,Economic Development +469848,Economic Development,Economic Development +469825,Industry,Industry +469824,Industry,Industry +473714,Industry,Industry +473686,Industry,Industry +473685,Industry,Industry +473683,Industry,Industry +473680,Industry,Industry +473679,Industry,Industry +473678,Industry,Industry +471486,Industry,Industry +471484,Industry,Industry +471482,Industry,Industry +471481,Industry,Industry +471480,Industry,Industry +471348,Industry,Industry +471335,Industry,Industry +471334,Industry,Industry +471333,Industry,Industry +471330,Industry,Industry +471309,Industry,Industry +470920,Industry,Industry +469848,Industry,Industry +473027,Health,Health +470767,Health,Health +502371,Health,Health +498982,Health,Health +484944,Health,Health +475641,Health,Health +475639,Health,Health +473386,Health,Health +473359,Health,Health +504001,Energy,Energy +499073,Energy,Energy +472024,Energy,Energy +469620,Energy,Energy +469619,Energy,Energy +469617,Energy,Energy +469611,Energy,Energy +469608,Energy,Energy +469606,Energy,Energy +469602,Energy,Energy +509093,Energy,Energy +509084,Energy,Energy +507951,Energy,Energy +507919,Energy,Energy +469536,Agriculture,Agriculture +469535,Agriculture,Agriculture +477184,Economic Development,Economic Development +471409,Economic Development,Economic Development +482248,Economic Development,Economic Development +479409,Economic Development,Economic Development +476571,Health,Health +475705,Health,Health +473989,Health,Health +473981,Health,Health +473317,Health,Health +471594,Health,Health +471539,Health,Health +471538,Health,Health +471360,Health,Health +470306,Health,Health +471657,Immigration,Immigration +470306,Immigration,Immigration +471703,Immigration,Immigration +471360,Industry,Industry +470306,Industry,Industry +475705,Industry,Industry +473989,Industry,Industry +473981,Industry,Industry +473317,Industry,Industry +471594,Industry,Industry +471539,Industry,Industry +509421,Employment and Training,Employment and Training +509419,Employment and Training,Employment and Training +524227,Employment and Training,Employment and Training +523880,Employment and Training,Employment and Training +509976,Industry,Industry +509421,Labour,Labour +509419,Labour,Labour +524227,Labour,Labour +523880,Labour,Labour +520978,Labour,Labour +472374,Taxation and Finance,Taxation and Finance +472373,Taxation and Finance,Taxation and Finance +476461,Taxation and Finance,Taxation and Finance +476360,Taxation and Finance,Taxation and Finance +476352,Taxation and Finance,Taxation and Finance +476351,Taxation and Finance,Taxation and Finance +476299,Taxation and Finance,Taxation and Finance +474433,Taxation and Finance,Taxation and Finance +474413,Taxation and Finance,Taxation and Finance +474394,Taxation and Finance,Taxation and Finance +474365,Taxation and Finance,Taxation and Finance +475177,Economic Development,Economic Development +475175,Economic Development,Economic Development +471859,Economic Development,Economic Development +471858,Economic Development,Economic Development +471857,Economic Development,Economic Development +471856,Economic Development,Economic Development +471855,Economic Development,Economic Development +471854,Economic Development,Economic Development +471853,Economic Development,Economic Development +471852,Economic Development,Economic Development +471850,Economic Development,Economic Development +471849,Economic Development,Economic Development +471847,Economic Development,Economic Development +471845,Economic Development,Economic Development +471844,Economic Development,Economic Development +471842,Economic Development,Economic Development +471837,Economic Development,Economic Development +469624,Economic Development,Economic Development +469622,Economic Development,Economic Development +469600,Economic Development,Economic Development +469598,Economic Development,Economic Development +469597,Economic Development,Economic Development +469596,Economic Development,Economic Development +469595,Economic Development,Economic Development +469594,Economic Development,Economic Development +469593,Economic Development,Economic Development +543867,Economic Development,Economic Development +536656,Economic Development,Economic Development +536638,Economic Development,Economic Development +533493,Economic Development,Economic Development +533492,Economic Development,Economic Development +529190,Economic Development,Economic Development +529187,Economic Development,Economic Development +529184,Economic Development,Economic Development +529181,Economic Development,Economic Development +524461,Economic Development,Economic Development +516033,Economic Development,Economic Development +511339,Economic Development,Economic Development +511336,Economic Development,Economic Development +511335,Economic Development,Economic Development +504607,Economic Development,Economic Development +504606,Economic Development,Economic Development +504604,Economic Development,Economic Development +500849,Economic Development,Economic Development +500844,Economic Development,Economic Development +500842,Economic Development,Economic Development +499862,Economic Development,Economic Development +499860,Economic Development,Economic Development +499859,Economic Development,Economic Development +499858,Economic Development,Economic Development +499857,Economic Development,Economic Development +491365,Economic Development,Economic Development +491361,Economic Development,Economic Development +491356,Economic Development,Economic Development +484776,Economic Development,Economic Development +484774,Economic Development,Economic Development +482460,Economic Development,Economic Development +482459,Economic Development,Economic Development +482458,Economic Development,Economic Development +482457,Economic Development,Economic Development +482456,Economic Development,Economic Development +482454,Economic Development,Economic Development +482452,Economic Development,Economic Development +479679,Economic Development,Economic Development +479677,Economic Development,Economic Development +479675,Economic Development,Economic Development +479673,Economic Development,Economic Development +479672,Economic Development,Economic Development +479670,Economic Development,Economic Development +479669,Economic Development,Economic Development +479667,Economic Development,Economic Development +479665,Economic Development,Economic Development +479664,Economic Development,Economic Development +479662,Economic Development,Economic Development +479658,Economic Development,Economic Development +479655,Economic Development,Economic Development +478293,Economic Development,Economic Development +478292,Economic Development,Economic Development +478291,Economic Development,Economic Development +478290,Economic Development,Economic Development +478289,Economic Development,Economic Development +478287,Economic Development,Economic Development +478285,Economic Development,Economic Development +475188,Economic Development,Economic Development +475187,Economic Development,Economic Development +475185,Economic Development,Economic Development +475184,Economic Development,Economic Development +475183,Economic Development,Economic Development +475182,Economic Development,Economic Development +475180,Economic Development,Economic Development +475179,Economic Development,Economic Development +493415,Government Procurement,Government Procurement +488532,Economic Development,Economic Development +481254,Agriculture,Agriculture +478737,Agriculture,Agriculture +543177,Agriculture,Agriculture +542352,Agriculture,Agriculture +540441,Agriculture,Agriculture +538816,Agriculture,Agriculture +538662,Agriculture,Agriculture +536576,Agriculture,Agriculture +532598,Agriculture,Agriculture +524999,Agriculture,Agriculture +524988,Agriculture,Agriculture +523760,Agriculture,Agriculture +523696,Agriculture,Agriculture +519136,Agriculture,Agriculture +516648,Agriculture,Agriculture +516066,Agriculture,Agriculture +513852,Agriculture,Agriculture +513850,Agriculture,Agriculture +511818,Agriculture,Agriculture +510208,Agriculture,Agriculture +509580,Agriculture,Agriculture +506800,Agriculture,Agriculture +506799,Agriculture,Agriculture +506457,Agriculture,Agriculture +506400,Agriculture,Agriculture +506375,Agriculture,Agriculture +506063,Agriculture,Agriculture +506062,Agriculture,Agriculture +503707,Agriculture,Agriculture +503410,Agriculture,Agriculture +503207,Agriculture,Agriculture +503206,Agriculture,Agriculture +501202,Agriculture,Agriculture +501198,Agriculture,Agriculture +499876,Agriculture,Agriculture +497407,Agriculture,Agriculture +496882,Agriculture,Agriculture +493977,Agriculture,Agriculture +492370,Agriculture,Agriculture +492073,Agriculture,Agriculture +491223,Agriculture,Agriculture +489441,Agriculture,Agriculture +489440,Agriculture,Agriculture +489037,Agriculture,Agriculture +489036,Agriculture,Agriculture +488462,Agriculture,Agriculture +488420,Agriculture,Agriculture +488413,Agriculture,Agriculture +486035,Agriculture,Agriculture +485812,Agriculture,Agriculture +483308,Agriculture,Agriculture +482919,Agriculture,Agriculture +481476,Agriculture,Agriculture +481371,Agriculture,Agriculture +492370,International Trade,International Trade +492073,International Trade,International Trade +489441,International Trade,International Trade +489440,International Trade,International Trade +489037,International Trade,International Trade +489036,International Trade,International Trade +488462,International Trade,International Trade +488420,International Trade,International Trade +488413,International Trade,International Trade +486035,International Trade,International Trade +485812,International Trade,International Trade +483394,International Trade,International Trade +483308,International Trade,International Trade +482919,International Trade,International Trade +482723,International Trade,International Trade +481476,International Trade,International Trade +481371,International Trade,International Trade +481259,International Trade,International Trade +481254,International Trade,International Trade +481250,International Trade,International Trade +480658,International Trade,International Trade +478737,International Trade,International Trade +478644,International Trade,International Trade +478643,International Trade,International Trade +476578,International Trade,International Trade +476577,International Trade,International Trade +476153,International Trade,International Trade +473532,International Trade,International Trade +523697,International Trade,International Trade +516066,International Trade,International Trade +514402,International Trade,International Trade +511818,International Trade,International Trade +510208,International Trade,International Trade +509580,International Trade,International Trade +506400,International Trade,International Trade +506375,International Trade,International Trade +503707,International Trade,International Trade +499876,International Trade,International Trade +497407,International Trade,International Trade +496882,International Trade,International Trade +496836,International Trade,International Trade +481259,Justice and Law Enforcement,Justice and Law Enforcement +503858,Economic Development,Economic Development +503855,Economic Development,Economic Development +500729,Economic Development,Economic Development +500728,Economic Development,Economic Development +500727,Economic Development,Economic Development +500726,Economic Development,Economic Development +500724,Economic Development,Economic Development +500723,Economic Development,Economic Development +500721,Economic Development,Economic Development +500720,Economic Development,Economic Development +500719,Economic Development,Economic Development +500718,Economic Development,Economic Development +500717,Economic Development,Economic Development +497416,Economic Development,Economic Development +497414,Economic Development,Economic Development +497412,Economic Development,Economic Development +497411,Economic Development,Economic Development +497410,Economic Development,Economic Development +497409,Economic Development,Economic Development +497408,Economic Development,Economic Development +494460,Economic Development,Economic Development +494459,Economic Development,Economic Development +494458,Economic Development,Economic Development +494457,Economic Development,Economic Development +494455,Economic Development,Economic Development +494454,Economic Development,Economic Development +494453,Economic Development,Economic Development +494452,Economic Development,Economic Development +494451,Economic Development,Economic Development +494450,Economic Development,Economic Development +494448,Economic Development,Economic Development +494447,Economic Development,Economic Development +494446,Economic Development,Economic Development +494445,Economic Development,Economic Development +492636,Economic Development,Economic Development +492635,Economic Development,Economic Development +492634,Economic Development,Economic Development +492633,Economic Development,Economic Development +492632,Economic Development,Economic Development +492631,Economic Development,Economic Development +489573,Economic Development,Economic Development +489561,Economic Development,Economic Development +489558,Economic Development,Economic Development +489557,Economic Development,Economic Development +489555,Economic Development,Economic Development +489552,Economic Development,Economic Development +486664,Economic Development,Economic Development +486660,Economic Development,Economic Development +486659,Economic Development,Economic Development +486657,Economic Development,Economic Development +486656,Economic Development,Economic Development +486654,Economic Development,Economic Development +486653,Economic Development,Economic Development +486649,Economic Development,Economic Development +483892,Economic Development,Economic Development +483890,Economic Development,Economic Development +483889,Economic Development,Economic Development +483888,Economic Development,Economic Development +483887,Economic Development,Economic Development +481282,Economic Development,Economic Development +481281,Economic Development,Economic Development +481277,Economic Development,Economic Development +481273,Economic Development,Economic Development +478710,Economic Development,Economic Development +478709,Economic Development,Economic Development +476644,Economic Development,Economic Development +476643,Economic Development,Economic Development +476642,Economic Development,Economic Development +476641,Economic Development,Economic Development +476640,Economic Development,Economic Development +476639,Economic Development,Economic Development +476638,Economic Development,Economic Development +476637,Economic Development,Economic Development +476635,Economic Development,Economic Development +476633,Economic Development,Economic Development +476630,Economic Development,Economic Development +476629,Economic Development,Economic Development +474332,Economic Development,Economic Development +474327,Economic Development,Economic Development +474326,Economic Development,Economic Development +474324,Economic Development,Economic Development +474323,Economic Development,Economic Development +474321,Economic Development,Economic Development +472157,Economic Development,Economic Development +472156,Economic Development,Economic Development +472155,Economic Development,Economic Development +472154,Economic Development,Economic Development +472153,Economic Development,Economic Development +472151,Economic Development,Economic Development +472148,Economic Development,Economic Development +472144,Economic Development,Economic Development +469605,Economic Development,Economic Development +540800,Economic Development,Economic Development +539093,Economic Development,Economic Development +533411,Economic Development,Economic Development +530434,Economic Development,Economic Development +527853,Economic Development,Economic Development +527851,Economic Development,Economic Development +520975,Economic Development,Economic Development +518867,Economic Development,Economic Development +518866,Economic Development,Economic Development +518865,Economic Development,Economic Development +516653,Economic Development,Economic Development +516649,Economic Development,Economic Development +515033,Economic Development,Economic Development +515032,Economic Development,Economic Development +515031,Economic Development,Economic Development +515030,Economic Development,Economic Development +513720,Economic Development,Economic Development +513719,Economic Development,Economic Development +513718,Economic Development,Economic Development +513717,Economic Development,Economic Development +512081,Economic Development,Economic Development +512080,Economic Development,Economic Development +512079,Economic Development,Economic Development +512078,Economic Development,Economic Development +512076,Economic Development,Economic Development +512075,Economic Development,Economic Development +509903,Economic Development,Economic Development +509902,Economic Development,Economic Development +509901,Economic Development,Economic Development +509900,Economic Development,Economic Development +509899,Economic Development,Economic Development +509898,Economic Development,Economic Development +509896,Economic Development,Economic Development +509895,Economic Development,Economic Development +509894,Economic Development,Economic Development +509872,Economic Development,Economic Development +506803,Economic Development,Economic Development +506802,Economic Development,Economic Development +506801,Economic Development,Economic Development +483836,Consumer Issues,Consumer Issues +483831,Consumer Issues,Consumer Issues +483828,Consumer Issues,Consumer Issues +483823,Consumer Issues,Consumer Issues +481231,Consumer Issues,Consumer Issues +481230,Consumer Issues,Consumer Issues +478735,Consumer Issues,Consumer Issues +478734,Consumer Issues,Consumer Issues +478733,Consumer Issues,Consumer Issues +478732,Consumer Issues,Consumer Issues +478731,Consumer Issues,Consumer Issues +477490,Consumer Issues,Consumer Issues +477215,Consumer Issues,Consumer Issues +477212,Consumer Issues,Consumer Issues +476907,Consumer Issues,Consumer Issues +476906,Consumer Issues,Consumer Issues +476905,Consumer Issues,Consumer Issues +476904,Consumer Issues,Consumer Issues +476903,Consumer Issues,Consumer Issues +475199,Consumer Issues,Consumer Issues +474658,Consumer Issues,Consumer Issues +474428,Consumer Issues,Consumer Issues +474427,Consumer Issues,Consumer Issues +474426,Consumer Issues,Consumer Issues +474425,Consumer Issues,Consumer Issues +472128,Consumer Issues,Consumer Issues +472126,Consumer Issues,Consumer Issues +472125,Consumer Issues,Consumer Issues +472108,Consumer Issues,Consumer Issues +471970,Consumer Issues,Consumer Issues +471969,Consumer Issues,Consumer Issues +471968,Consumer Issues,Consumer Issues +471967,Consumer Issues,Consumer Issues +471965,Consumer Issues,Consumer Issues +471964,Consumer Issues,Consumer Issues +471963,Consumer Issues,Consumer Issues +471962,Consumer Issues,Consumer Issues +471960,Consumer Issues,Consumer Issues +471959,Consumer Issues,Consumer Issues +471958,Consumer Issues,Consumer Issues +471957,Consumer Issues,Consumer Issues +471956,Consumer Issues,Consumer Issues +471955,Consumer Issues,Consumer Issues +469799,Consumer Issues,Consumer Issues +469798,Consumer Issues,Consumer Issues +541529,Consumer Issues,Consumer Issues +533838,Consumer Issues,Consumer Issues +517552,Consumer Issues,Consumer Issues +492926,Consumer Issues,Consumer Issues +492922,Consumer Issues,Consumer Issues +477476,Economic Development,Economic Development +477473,Economic Development,Economic Development +477215,Economic Development,Economic Development +477212,Economic Development,Economic Development +477138,Economic Development,Economic Development +476907,Economic Development,Economic Development +476906,Economic Development,Economic Development +476905,Economic Development,Economic Development +476904,Economic Development,Economic Development +476903,Economic Development,Economic Development +475199,Economic Development,Economic Development +475135,Economic Development,Economic Development +474658,Economic Development,Economic Development +474428,Economic Development,Economic Development +474426,Economic Development,Economic Development +474425,Economic Development,Economic Development +474424,Economic Development,Economic Development +474423,Economic Development,Economic Development +474422,Economic Development,Economic Development +474421,Economic Development,Economic Development +472128,Economic Development,Economic Development +472127,Economic Development,Economic Development +472126,Economic Development,Economic Development +472125,Economic Development,Economic Development +472124,Economic Development,Economic Development +472108,Economic Development,Economic Development +471970,Economic Development,Economic Development +471969,Economic Development,Economic Development +471968,Economic Development,Economic Development +471967,Economic Development,Economic Development +471965,Economic Development,Economic Development +471964,Economic Development,Economic Development +471963,Economic Development,Economic Development +471962,Economic Development,Economic Development +471961,Economic Development,Economic Development +471960,Economic Development,Economic Development +471959,Economic Development,Economic Development +471958,Economic Development,Economic Development +471957,Economic Development,Economic Development +471956,Economic Development,Economic Development +471955,Economic Development,Economic Development +470746,Economic Development,Economic Development +470432,Economic Development,Economic Development +469800,Economic Development,Economic Development +469799,Economic Development,Economic Development +469798,Economic Development,Economic Development +469797,Economic Development,Economic Development +469795,Economic Development,Economic Development +469788,Economic Development,Economic Development +509968,Economic Development,Economic Development +509966,Economic Development,Economic Development +509964,Economic Development,Economic Development +501896,Economic Development,Economic Development +501895,Economic Development,Economic Development +501892,Economic Development,Economic Development +495592,Economic Development,Economic Development +495057,Economic Development,Economic Development +492926,Economic Development,Economic Development +492922,Economic Development,Economic Development +490176,Economic Development,Economic Development +490175,Economic Development,Economic Development +490174,Economic Development,Economic Development +490173,Economic Development,Economic Development +490171,Economic Development,Economic Development +490170,Economic Development,Economic Development +490168,Economic Development,Economic Development +486540,Economic Development,Economic Development +486539,Economic Development,Economic Development +483837,Economic Development,Economic Development +483836,Economic Development,Economic Development +483831,Economic Development,Economic Development +483828,Economic Development,Economic Development +483824,Economic Development,Economic Development +483823,Economic Development,Economic Development +482224,Economic Development,Economic Development +481232,Economic Development,Economic Development +481231,Economic Development,Economic Development +481230,Economic Development,Economic Development +481228,Economic Development,Economic Development +481227,Economic Development,Economic Development +481226,Economic Development,Economic Development +481225,Economic Development,Economic Development +478735,Economic Development,Economic Development +478734,Economic Development,Economic Development +478733,Economic Development,Economic Development +478732,Economic Development,Economic Development +478731,Economic Development,Economic Development +476904,Small Business,Small Business +475199,Small Business,Small Business +474658,Small Business,Small Business +474428,Small Business,Small Business +474426,Small Business,Small Business +474425,Small Business,Small Business +474423,Small Business,Small Business +474422,Small Business,Small Business +474421,Small Business,Small Business +472128,Small Business,Small Business +472127,Small Business,Small Business +472126,Small Business,Small Business +472124,Small Business,Small Business +472108,Small Business,Small Business +471970,Small Business,Small Business +471969,Small Business,Small Business +471968,Small Business,Small Business +471967,Small Business,Small Business +471965,Small Business,Small Business +471964,Small Business,Small Business +471963,Small Business,Small Business +471961,Small Business,Small Business +471955,Small Business,Small Business +470746,Small Business,Small Business +469800,Small Business,Small Business +469799,Small Business,Small Business +469798,Small Business,Small Business +469797,Small Business,Small Business +469795,Small Business,Small Business +469790,Small Business,Small Business +469788,Small Business,Small Business +509966,Small Business,Small Business +509964,Small Business,Small Business +498122,Small Business,Small Business +495592,Small Business,Small Business +495424,Small Business,Small Business +495057,Small Business,Small Business +492926,Small Business,Small Business +492922,Small Business,Small Business +490175,Small Business,Small Business +490173,Small Business,Small Business +490171,Small Business,Small Business +490168,Small Business,Small Business +483837,Small Business,Small Business +483836,Small Business,Small Business +483831,Small Business,Small Business +483828,Small Business,Small Business +482224,Small Business,Small Business +481232,Small Business,Small Business +481231,Small Business,Small Business +481230,Small Business,Small Business +481226,Small Business,Small Business +481225,Small Business,Small Business +478735,Small Business,Small Business +478732,Small Business,Small Business +478731,Small Business,Small Business +477490,Small Business,Small Business +477473,Small Business,Small Business +477216,Small Business,Small Business +477215,Small Business,Small Business +477212,Small Business,Small Business +477138,Small Business,Small Business +476907,Small Business,Small Business +476906,Small Business,Small Business +469695,Industry,Industry +471534,Small Business,Small Business +469695,Small Business,Small Business +472027,Taxation and Finance,Taxation and Finance +472026,Taxation and Finance,Taxation and Finance +483478,Taxation and Finance,Taxation and Finance +483213,Taxation and Finance,Taxation and Finance +478434,Taxation and Finance,Taxation and Finance +477605,Taxation and Finance,Taxation and Finance +477492,Taxation and Finance,Taxation and Finance +476648,Taxation and Finance,Taxation and Finance +476645,Taxation and Finance,Taxation and Finance +476565,Taxation and Finance,Taxation and Finance +476564,Taxation and Finance,Taxation and Finance +476359,Taxation and Finance,Taxation and Finance +476349,Taxation and Finance,Taxation and Finance +476348,Taxation and Finance,Taxation and Finance +476303,Taxation and Finance,Taxation and Finance +474435,Taxation and Finance,Taxation and Finance +474393,Taxation and Finance,Taxation and Finance +473993,Taxation and Finance,Taxation and Finance +472415,Taxation and Finance,Taxation and Finance +472221,Taxation and Finance,Taxation and Finance +472216,Taxation and Finance,Taxation and Finance +471315,Taxation and Finance,Taxation and Finance +477849,Taxation and Finance,Taxation and Finance +476481,Taxation and Finance,Taxation and Finance +476350,Taxation and Finance,Taxation and Finance +476298,Taxation and Finance,Taxation and Finance +474358,Taxation and Finance,Taxation and Finance +488632,Economic Development,Economic Development +488633,Employment and Training,Employment and Training +488632,Employment and Training,Employment and Training +506040,Employment and Training,Employment and Training +519012,Government Procurement,Government Procurement +470957,Government Procurement,Government Procurement +469850,Economic Development,Economic Development +469849,Economic Development,Economic Development +474065,Economic Development,Economic Development +473696,Economic Development,Economic Development +473693,Economic Development,Economic Development +471441,Economic Development,Economic Development +471439,Economic Development,Economic Development +471310,Economic Development,Economic Development +469850,Industry,Industry +469849,Industry,Industry +474065,Industry,Industry +473696,Industry,Industry +473693,Industry,Industry +471441,Industry,Industry +471439,Industry,Industry +471310,Industry,Industry +475167,Government Procurement,Government Procurement +473412,Government Procurement,Government Procurement +529320,Government Procurement,Government Procurement +514488,Government Procurement,Government Procurement +514360,Government Procurement,Government Procurement +512257,Government Procurement,Government Procurement +503148,Government Procurement,Government Procurement +498423,Government Procurement,Government Procurement +493852,Government Procurement,Government Procurement +493850,Government Procurement,Government Procurement +487887,Government Procurement,Government Procurement +485200,Government Procurement,Government Procurement +485198,Government Procurement,Government Procurement +481816,Government Procurement,Government Procurement +481321,Government Procurement,Government Procurement +471561,Budget,Budget +471560,Budget,Budget +485429,Budget,Budget +485428,Budget,Budget +471563,Budget,Budget +470971,Industry,Industry +470965,Industry,Industry +471331,Industry,Industry +470981,Industry,Industry +470971,Tourism,Tourism +470965,Tourism,Tourism +471331,Tourism,Tourism +470981,Tourism,Tourism +469830,Economic Development,Economic Development +475074,Energy,Energy +475070,Energy,Energy +476979,Energy,Energy +475078,Energy,Energy +475074,Economic Development,Economic Development +475070,Economic Development,Economic Development +476979,Economic Development,Economic Development +475078,Economic Development,Economic Development +475351,Government Procurement,Government Procurement +470590,Transportation,Transportation +470588,Transportation,Transportation +500064,Transportation,Transportation +483543,Transportation,Transportation +478896,Transportation,Transportation +474623,Transportation,Transportation +471745,Transportation,Transportation +471646,Transportation,Transportation +480127,Energy,Energy +476110,Energy,Energy +483662,Energy,Energy +482515,Energy,Energy +481565,Government Procurement,Government Procurement +480127,Government Procurement,Government Procurement +483662,Government Procurement,Government Procurement +470012,Climate,Climate +470010,Climate,Climate +480108,Climate,Climate +480106,Climate,Climate +470027,Climate,Climate +470026,Climate,Climate +470025,Climate,Climate +470023,Climate,Climate +470019,Climate,Climate +480106,International Trade,International Trade +470010,International Trade,International Trade +470012,Economic Development,Economic Development +470010,Economic Development,Economic Development +480108,Economic Development,Economic Development +480106,Economic Development,Economic Development +470027,Economic Development,Economic Development +470026,Economic Development,Economic Development +470025,Economic Development,Economic Development +470023,Economic Development,Economic Development +470019,Economic Development,Economic Development +480108,Regional Development,Regional Development +480106,Regional Development,Regional Development +470027,Regional Development,Regional Development +470026,Regional Development,Regional Development +470025,Regional Development,Regional Development +470023,Regional Development,Regional Development +470019,Regional Development,Regional Development +470015,Regional Development,Regional Development +470012,Regional Development,Regional Development +535631,Environment,Environment +535626,Environment,Environment +531836,Environment,Environment +531829,Environment,Environment +531438,Environment,Environment +531437,Environment,Environment +531436,Environment,Environment +480108,Environment,Environment +480106,Environment,Environment +470027,Environment,Environment +470026,Environment,Environment +470025,Environment,Environment +470023,Environment,Environment +470019,Environment,Environment +470015,Environment,Environment +470012,Environment,Environment +470010,Environment,Environment +541300,Environment,Environment +541299,Environment,Environment +541297,Environment,Environment +470012,Forestry,Forestry +470010,Forestry,Forestry +480108,Forestry,Forestry +480106,Forestry,Forestry +470027,Forestry,Forestry +470026,Forestry,Forestry +470025,Forestry,Forestry +470023,Forestry,Forestry +470019,Forestry,Forestry +476757,Economic Development,Economic Development +476751,Economic Development,Economic Development +507895,Economic Development,Economic Development +494723,Economic Development,Economic Development +482074,Economic Development,Economic Development +482073,Economic Development,Economic Development +482072,Economic Development,Economic Development +482041,Economic Development,Economic Development +476757,Regional Development,Regional Development +476751,Regional Development,Regional Development +507895,Regional Development,Regional Development +494723,Regional Development,Regional Development +482074,Regional Development,Regional Development +482073,Regional Development,Regional Development +482072,Regional Development,Regional Development +482041,Regional Development,Regional Development +476757,Small Business,Small Business +476751,Small Business,Small Business +507895,Small Business,Small Business +482074,Small Business,Small Business +482073,Small Business,Small Business +482072,Small Business,Small Business +482041,Small Business,Small Business +503224,Taxation and Finance,Taxation and Finance +487023,Budget,Budget +481036,Budget,Budget +523651,Budget,Budget +523647,Budget,Budget +520872,Budget,Budget +519450,Budget,Budget +501512,Budget,Budget +490617,Budget,Budget +473028,Health,Health +473025,Health,Health +523651,Health,Health +523647,Health,Health +520872,Health,Health +519450,Health,Health +503693,Health,Health +501512,Health,Health +494560,Health,Health +492077,Health,Health +491894,Health,Health +491469,Health,Health +490617,Health,Health +488990,Health,Health +487037,Health,Health +487023,Health,Health +485630,Health,Health +483597,Health,Health +481036,Health,Health +523647,Industry,Industry +487023,Industry,Industry +473025,Small Business,Small Business +471342,Small Business,Small Business +542254,Small Business,Small Business +519450,Small Business,Small Business +501512,Small Business,Small Business +494560,Small Business,Small Business +491894,Small Business,Small Business +491469,Small Business,Small Business +488990,Small Business,Small Business +487037,Small Business,Small Business +487023,Small Business,Small Business +483597,Small Business,Small Business +481036,Small Business,Small Business +473029,Small Business,Small Business +473028,Taxation and Finance,Taxation and Finance +473025,Taxation and Finance,Taxation and Finance +542254,Taxation and Finance,Taxation and Finance +519450,Taxation and Finance,Taxation and Finance +503693,Taxation and Finance,Taxation and Finance +501512,Taxation and Finance,Taxation and Finance +492077,Taxation and Finance,Taxation and Finance +491894,Taxation and Finance,Taxation and Finance +491469,Taxation and Finance,Taxation and Finance +490617,Taxation and Finance,Taxation and Finance +487037,Taxation and Finance,Taxation and Finance +487023,Taxation and Finance,Taxation and Finance +485630,Taxation and Finance,Taxation and Finance +481036,Taxation and Finance,Taxation and Finance +470311,Economic Development,Economic Development +470311,Employment and Training,Employment and Training +470314,Small Business,Small Business +470311,Small Business,Small Business +470314,Taxation and Finance,Taxation and Finance +470311,Taxation and Finance,Taxation and Finance +470995,Health,Health +470320,Health,Health +470378,Taxation and Finance,Taxation and Finance +521809,Economic Development,Economic Development +521808,Economic Development,Economic Development +519660,Economic Development,Economic Development +519654,Economic Development,Economic Development +517093,Economic Development,Economic Development +517091,Economic Development,Economic Development +517083,Economic Development,Economic Development +515454,Economic Development,Economic Development +515453,Economic Development,Economic Development +514091,Economic Development,Economic Development +512814,Economic Development,Economic Development +512813,Economic Development,Economic Development +512743,Economic Development,Economic Development +512742,Economic Development,Economic Development +511654,Economic Development,Economic Development +510830,Economic Development,Economic Development +510829,Economic Development,Economic Development +510828,Economic Development,Economic Development +510827,Economic Development,Economic Development +510826,Economic Development,Economic Development +510825,Economic Development,Economic Development +510824,Economic Development,Economic Development +507391,Economic Development,Economic Development +507386,Economic Development,Economic Development +507385,Economic Development,Economic Development +507383,Economic Development,Economic Development +507381,Economic Development,Economic Development +507378,Economic Development,Economic Development +507375,Economic Development,Economic Development +505159,Economic Development,Economic Development +505155,Economic Development,Economic Development +505154,Economic Development,Economic Development +501534,Economic Development,Economic Development +501533,Economic Development,Economic Development +501532,Economic Development,Economic Development +501530,Economic Development,Economic Development +501529,Economic Development,Economic Development +501527,Economic Development,Economic Development +501525,Economic Development,Economic Development +501522,Economic Development,Economic Development +501520,Economic Development,Economic Development +501517,Economic Development,Economic Development +501516,Economic Development,Economic Development +501507,Economic Development,Economic Development +501506,Economic Development,Economic Development +501502,Economic Development,Economic Development +501499,Economic Development,Economic Development +501496,Economic Development,Economic Development +501492,Economic Development,Economic Development +501490,Economic Development,Economic Development +501488,Economic Development,Economic Development +498200,Economic Development,Economic Development +498199,Economic Development,Economic Development +498198,Economic Development,Economic Development +498197,Economic Development,Economic Development +498196,Economic Development,Economic Development +498194,Economic Development,Economic Development +498193,Economic Development,Economic Development +495416,Economic Development,Economic Development +495412,Economic Development,Economic Development +495408,Economic Development,Economic Development +495407,Economic Development,Economic Development +495405,Economic Development,Economic Development +495404,Economic Development,Economic Development +495403,Economic Development,Economic Development +495402,Economic Development,Economic Development +495398,Economic Development,Economic Development +495396,Economic Development,Economic Development +495394,Economic Development,Economic Development +495383,Economic Development,Economic Development +495379,Economic Development,Economic Development +495375,Economic Development,Economic Development +495373,Economic Development,Economic Development +495367,Economic Development,Economic Development +493252,Economic Development,Economic Development +493251,Economic Development,Economic Development +493250,Economic Development,Economic Development +493248,Economic Development,Economic Development +493247,Economic Development,Economic Development +493246,Economic Development,Economic Development +493245,Economic Development,Economic Development +493244,Economic Development,Economic Development +493243,Economic Development,Economic Development +493241,Economic Development,Economic Development +493240,Economic Development,Economic Development +493239,Economic Development,Economic Development +490330,Economic Development,Economic Development +490322,Economic Development,Economic Development +490312,Economic Development,Economic Development +488442,Economic Development,Economic Development +487128,Economic Development,Economic Development +487121,Economic Development,Economic Development +487117,Economic Development,Economic Development +487114,Economic Development,Economic Development +487113,Economic Development,Economic Development +487112,Economic Development,Economic Development +487110,Economic Development,Economic Development +483767,Economic Development,Economic Development +483766,Economic Development,Economic Development +483764,Economic Development,Economic Development +483744,Economic Development,Economic Development +483742,Economic Development,Economic Development +483740,Economic Development,Economic Development +482149,Economic Development,Economic Development +482142,Economic Development,Economic Development +482132,Economic Development,Economic Development +482129,Economic Development,Economic Development +479732,Economic Development,Economic Development +479696,Economic Development,Economic Development +479695,Economic Development,Economic Development +479694,Economic Development,Economic Development +479691,Economic Development,Economic Development +479689,Economic Development,Economic Development +479683,Economic Development,Economic Development +477754,Economic Development,Economic Development +477715,Economic Development,Economic Development +477713,Economic Development,Economic Development +477697,Economic Development,Economic Development +476838,Economic Development,Economic Development +476835,Economic Development,Economic Development +474720,Economic Development,Economic Development +474703,Economic Development,Economic Development +474701,Economic Development,Economic Development +474698,Economic Development,Economic Development +474697,Economic Development,Economic Development +474696,Economic Development,Economic Development +474695,Economic Development,Economic Development +474694,Economic Development,Economic Development +472601,Economic Development,Economic Development +472600,Economic Development,Economic Development +472599,Economic Development,Economic Development +472598,Economic Development,Economic Development +472597,Economic Development,Economic Development +472596,Economic Development,Economic Development +472594,Economic Development,Economic Development +472593,Economic Development,Economic Development +472589,Economic Development,Economic Development +472585,Economic Development,Economic Development +472584,Economic Development,Economic Development +472583,Economic Development,Economic Development +470467,Economic Development,Economic Development +470464,Economic Development,Economic Development +470463,Economic Development,Economic Development +470462,Economic Development,Economic Development +470461,Economic Development,Economic Development +470460,Economic Development,Economic Development +470458,Economic Development,Economic Development +470456,Economic Development,Economic Development +541201,Economic Development,Economic Development +537064,Economic Development,Economic Development +537060,Economic Development,Economic Development +534169,Economic Development,Economic Development +534034,Economic Development,Economic Development +528630,Economic Development,Economic Development +528629,Economic Development,Economic Development +528624,Economic Development,Economic Development +528621,Economic Development,Economic Development +528619,Economic Development,Economic Development +525132,Economic Development,Economic Development +525131,Economic Development,Economic Development +525126,Economic Development,Economic Development +525123,Economic Development,Economic Development +521819,Economic Development,Economic Development +521817,Economic Development,Economic Development +521816,Economic Development,Economic Development +521815,Economic Development,Economic Development +521812,Economic Development,Economic Development +526425,Economic Development,Economic Development +502947,Economic Development,Economic Development +477644,Economic Development,Economic Development +477643,Economic Development,Economic Development +476112,Economic Development,Economic Development +473290,Economic Development,Economic Development +473249,Economic Development,Economic Development +473246,Economic Development,Economic Development +473244,Economic Development,Economic Development +473243,Economic Development,Economic Development +473242,Economic Development,Economic Development +473240,Economic Development,Economic Development +470698,Economic Development,Economic Development +535810,Economic Development,Economic Development +535806,Economic Development,Economic Development +500155,Economic Development,Economic Development +500152,Economic Development,Economic Development +506961,Taxation and Finance,Taxation and Finance +505117,Climate,Climate +480218,Climate,Climate +511289,Climate,Climate +508384,Climate,Climate +480218,Economic Development,Economic Development +480217,Economic Development,Economic Development +511292,Economic Development,Economic Development +511289,Economic Development,Economic Development +511284,Economic Development,Economic Development +508384,Economic Development,Economic Development +525151,Environment,Environment +525149,Environment,Environment +519068,Environment,Environment +516816,Environment,Environment +511290,Environment,Environment +508384,Environment,Environment +508380,Environment,Environment +505117,Environment,Environment +480219,Environment,Environment +480218,Environment,Environment +470608,Environment,Environment +540014,Environment,Environment +537552,Environment,Environment +537548,Environment,Environment +534315,Environment,Environment +534314,Environment,Environment +534172,Environment,Environment +531435,Environment,Environment +508384,Regional Development,Regional Development +508380,Regional Development,Regional Development +480218,Regional Development,Regional Development +511292,Regional Development,Regional Development +511289,Regional Development,Regional Development +499943,Transportation,Transportation +471758,Health,Health +471759,Health,Health +477636,Health,Health +471753,Health,Health +477979,Government Procurement,Government Procurement +477979,Health,Health +471981,Employment and Training,Employment and Training +471981,Labour,Labour +499748,Health,Health +502256,Industry,Industry +499748,Research and Development,Research and Development +477896,Government Procurement,Government Procurement +478571,Health,Health +482681,Research and Development,Research and Development +493896,Climate,Climate +493896,Energy,Energy +493896,Transportation,Transportation +493896,Government Procurement,Government Procurement +476049,Security,Security +476049,Industry,Industry +480332,Health,Health +480332,Industry,Industry +480332,Research and Development,Research and Development +469841,Economic Development,Economic Development +469841,Industry,Industry +473357,Health,Health +504005,Energy,Energy +469539,Agriculture,Agriculture +469534,Small Business,Small Business +471459,Health,Health +478772,Economic Development,Economic Development +476575,Health,Health +471661,Immigration,Immigration +471538,Industry,Industry +520978,Employment and Training,Employment and Training +520978,Industry,Industry +509976,Labour,Labour +473990,Taxation and Finance,Taxation and Finance +475178,Economic Development,Economic Development +503423,Government Procurement,Government Procurement +488825,Economic Development,Economic Development +488825,Employment and Training,Employment and Training +481259,Agriculture,Agriculture +493977,International Trade,International Trade +481371,Justice and Law Enforcement,Justice and Law Enforcement +503863,Economic Development,Economic Development +528092,Agriculture,Agriculture +528092,Economic Development,Economic Development +483837,Consumer Issues,Consumer Issues +477490,Economic Development,Economic Development +476905,Small Business,Small Business +471534,Industry,Industry +471581,Small Business,Small Business +472028,Taxation and Finance,Taxation and Finance +474004,Taxation and Finance,Taxation and Finance +488633,Economic Development,Economic Development +503223,Employment and Training,Employment and Training +520512,Government Procurement,Government Procurement +506040,Labour,Labour +540129,Climate,Climate +470583,Economic Development,Economic Development +470583,Industry,Industry +472990,Government Procurement,Government Procurement +480216,Government Procurement,Government Procurement +471562,Budget,Budget +470979,Industry,Industry +470979,Tourism,Tourism +471338,Economic Development,Economic Development +475075,Energy,Energy +475075,Economic Development,Economic Development +477789,Economic Development,Economic Development +479224,Government Procurement,Government Procurement +477789,Health,Health +471416,Transportation,Transportation +481565,Energy,Energy +482515,Government Procurement,Government Procurement +476110,Infrastructure,Infrastructure +470001,Small Business,Small Business +470015,Climate,Climate +480108,International Trade,International Trade +470015,Economic Development,Economic Development +470010,Regional Development,Regional Development +537545,Environment,Environment +470015,Forestry,Forestry +476762,Economic Development,Economic Development +476762,Regional Development,Regional Development +476762,Small Business,Small Business +470155,Housing,Housing +516323,Taxation and Finance,Taxation and Finance +487037,Budget,Budget +481036,Consumer Issues,Consumer Issues +473029,Health,Health +523651,Industry,Industry +473028,Small Business,Small Business +520872,Sports,Sports +473029,Taxation and Finance,Taxation and Finance +478396,Government Procurement,Government Procurement +471570,Economic Development,Economic Development +471570,Employment and Training,Employment and Training +471570,Small Business,Small Business +471570,Taxation and Finance,Taxation and Finance +470996,Health,Health +470378,Health,Health +484223,Taxation and Finance,Taxation and Finance +521810,Economic Development,Economic Development +535802,Economic Development,Economic Development +470060,Economic Development,Economic Development +523279,Economic Development,Economic Development +506962,Taxation and Finance,Taxation and Finance +505809,International Trade,International Trade +473290,Small Business,Small Business +508380,Climate,Climate +508380,Economic Development,Economic Development +529434,Environment,Environment +511284,Regional Development,Regional Development +470608,Climate,Climate +470608,Economic Development,Economic Development +470608,Regional Development,Regional Development +500063,Transportation,Transportation +540129,Infrastructure,Infrastructure +486344,Economic Development,Economic Development +493854,Economic Development,Economic Development +471569,Employment and Training,Employment and Training +494859,Government Procurement,Government Procurement +494859,Health,Health +494859,Industry,Industry +479207,Intellectual Property,Intellectual Property +491111,Agriculture,Agriculture +470690,Health,Health +470690,Industry,Industry +513277,Health,Health +509432,Budget,Budget +473690,Economic Development,Economic Development +473690,Sports,Sports +472476,Government Procurement,Government Procurement +470912,Government Procurement,Government Procurement +470939,Economic Development,Economic Development +498688,Small Business,Small Business +470994,Agriculture,Agriculture +491689,Internal Trade,Internal Trade +492060,Infrastructure,Infrastructure +471095,Economic Development,Economic Development +471139,Health,Health +471158,Health,Health +471204,Agriculture,Agriculture +484645,Economic Development,Economic Development +484646,Employment and Training,Employment and Training +484646,Taxation and Finance,Taxation and Finance +506834,Taxation and Finance,Taxation and Finance +473883,Climate,Climate +527845,Budget,Budget +540129,Transportation,Transportation +482845,Employment and Training,Employment and Training +482768,Health,Health +482845,Labour,Labour +485912,Energy,Energy +521705,Environment,Environment +476035,Energy,Energy +476040,Climate,Climate +476041,Government Procurement,Government Procurement +476035,Transportation,Transportation +493041,Health,Health +474262,Constitutional Issues,Constitutional Issues +474263,Immigration,Immigration +474768,Economic Development,Economic Development +478504,Government Procurement,Government Procurement +481216,Research and Development,Research and Development +478504,Security,Security +476311,Economic Development,Economic Development +488699,Economic Development,Economic Development +474431,Economic Development,Economic Development +474080,Energy,Energy +474431,Environment,Environment +473785,Economic Development,Economic Development +473792,Economic Development,Economic Development +476790,Budget,Budget +475434,Health,Health +483099,Economic Development,Economic Development +523364,Consumer Issues,Consumer Issues +483032,Financial Institutions,Financial Institutions +483030,Health,Health +483032,Justice and Law Enforcement,Justice and Law Enforcement +523364,Pensions,Pensions +492116,Climate,Climate +483336,Economic Development,Economic Development +471678,Small Business,Small Business +477817,Environment,Environment +475334,Health,Health +475336,International Relations,International Relations +491013,International Trade,International Trade +471645,Climate,Climate +471683,Energy,Energy +472414,Environment,Environment +472414,Industry,Industry +472414,Research and Development,Research and Development +482067,Labour,Labour +482071,Labour,Labour +472031,Economic Development,Economic Development +471633,Energy,Energy +472031,Industry,Industry +473185,Infrastructure,Infrastructure +472705,Economic Development,Economic Development +488314,Infrastructure,Infrastructure +472705,Regional Development,Regional Development +473793,Economic Development,Economic Development +474012,Economic Development,Economic Development +485386,Economic Development,Economic Development +476452,Infrastructure,Infrastructure +473790,Economic Development,Economic Development +474072,Tourism,Tourism +518725,Economic Development,Economic Development +497031,Health,Health +501243,Industry,Industry +503868,Intellectual Property,Intellectual Property +518725,Research and Development,Research and Development +519581,Climate,Climate +472749,Employment and Training,Employment and Training +472744,Energy,Energy +472749,Environment,Environment +471664,Financial Institutions,Financial Institutions +471664,Small Business,Small Business +472427,Health,Health +477291,Government Procurement,Government Procurement +532941,Economic Development,Economic Development +473997,Transportation,Transportation +511225,Climate,Climate +536514,International Relations,International Relations +498937,Labour,Labour +474236,Health,Health +523662,International Relations,International Relations +485550,Health,Health +517843,Economic Development,Economic Development +497964,Small Business,Small Business +472333,Health,Health +476680,Industry,Industry +471687,Government Procurement,Government Procurement +473723,Economic Development,Economic Development +473724,Health,Health +473724,Labour,Labour +502758,Small Business,Small Business +473724,Sports,Sports +502758,Taxation and Finance,Taxation and Finance +496695,Tourism,Tourism +473721,Transportation,Transportation +502704,Labour,Labour +502704,Taxation and Finance,Taxation and Finance +471834,Economic Development,Economic Development +471834,Industry,Industry +475897,Housing,Housing +471625,Economic Development,Economic Development +471625,Tourism,Tourism +502029,Defence,Defence +474849,Economic Development,Economic Development +474855,Government Procurement,Government Procurement +474849,Industry,Industry +484350,International Relations,International Relations +484350,International Trade,International Trade +498081,Regional Development,Regional Development +536021,Taxation and Finance,Taxation and Finance +471591,Industry,Industry +472029,Economic Development,Economic Development +472226,Environment,Environment +472030,Infrastructure,Infrastructure +542446,Health,Health +504461,Constitutional Issues,Constitutional Issues +540374,Justice and Law Enforcement,Justice and Law Enforcement +476604,Economic Development,Economic Development +506782,Economic Development,Economic Development +506782,Infrastructure,Infrastructure +474439,Tourism,Tourism +513368,Environment,Environment +472269,Health,Health +472269,Justice and Law Enforcement,Justice and Law Enforcement +482362,Economic Development,Economic Development +482362,Employment and Training,Employment and Training +475857,Health,Health +471611,Justice and Law Enforcement,Justice and Law Enforcement +474197,Economic Development,Economic Development +470635,Economic Development,Economic Development +470644,Economic Development,Economic Development +471569,Government Procurement,Government Procurement +470644,Government Procurement,Government Procurement +471569,Health,Health +470644,Health,Health +471569,Industry,Industry +470644,Industry,Industry +475298,Intellectual Property,Intellectual Property +472176,Intellectual Property,Intellectual Property +483416,Intellectual Property,Intellectual Property +481489,Intellectual Property,Intellectual Property +491108,Agriculture,Agriculture +491107,Agriculture,Agriculture +523127,Agriculture,Agriculture +520165,Agriculture,Agriculture +520162,Agriculture,Agriculture +493702,Agriculture,Agriculture +508133,Health,Health +508066,Health,Health +475503,Health,Health +475493,Health,Health +475489,Health,Health +475481,Health,Health +475477,Health,Health +475418,Health,Health +473018,Health,Health +473007,Health,Health +472981,Health,Health +472977,Health,Health +528304,Health,Health +509404,Budget,Budget +500565,Budget,Budget +485959,Budget,Budget +480798,Budget,Budget +480797,Budget,Budget +474109,Budget,Budget +474107,Budget,Budget +474106,Budget,Budget +472016,Budget,Budget +472015,Budget,Budget +471623,Budget,Budget +470884,Budget,Budget +525320,Budget,Budget +523846,Budget,Budget +523845,Budget,Budget +518505,Budget,Budget +518503,Budget,Budget +516315,Budget,Budget +516314,Budget,Budget +472470,Government Procurement,Government Procurement +470890,Government Procurement,Government Procurement +472517,Government Procurement,Government Procurement +472513,Government Procurement,Government Procurement +472511,Government Procurement,Government Procurement +470892,Government Procurement,Government Procurement +480330,Government Procurement,Government Procurement +478259,Government Procurement,Government Procurement +478252,Government Procurement,Government Procurement +470937,Economic Development,Economic Development +470928,Economic Development,Economic Development +535019,Economic Development,Economic Development +535018,Economic Development,Economic Development +535016,Economic Development,Economic Development +535015,Economic Development,Economic Development +527002,Economic Development,Economic Development +524148,Economic Development,Economic Development +524147,Economic Development,Economic Development +518299,Economic Development,Economic Development +511602,Economic Development,Economic Development +497519,Economic Development,Economic Development +487789,Economic Development,Economic Development +481559,Economic Development,Economic Development +481558,Economic Development,Economic Development +470940,Economic Development,Economic Development +492692,Small Business,Small Business +492691,Small Business,Small Business +498689,Small Business,Small Business +484997,Internal Trade,Internal Trade +471017,Internal Trade,Internal Trade +493357,Internal Trade,Internal Trade +471033,Infrastructure,Infrastructure +512445,Health,Health +479046,Health,Health +475206,Health,Health +475203,Health,Health +475202,Health,Health +475201,Health,Health +473929,Health,Health +473927,Health,Health +473926,Health,Health +473925,Health,Health +471147,Health,Health +471146,Health,Health +471145,Health,Health +471144,Health,Health +471142,Health,Health +471141,Health,Health +471140,Health,Health +482367,Economic Development,Economic Development +472562,Economic Development,Economic Development +501984,Economic Development,Economic Development +493538,Economic Development,Economic Development +491270,Economic Development,Economic Development +491265,Economic Development,Economic Development +491256,Economic Development,Economic Development +484651,Economic Development,Economic Development +484648,Economic Development,Economic Development +484646,Economic Development,Economic Development +484645,Employment and Training,Employment and Training +482367,Employment and Training,Employment and Training +501984,Employment and Training,Employment and Training +493538,Employment and Training,Employment and Training +491270,Employment and Training,Employment and Training +491265,Employment and Training,Employment and Training +491256,Employment and Training,Employment and Training +484651,Employment and Training,Employment and Training +484648,Employment and Training,Employment and Training +484645,Taxation and Finance,Taxation and Finance +482367,Taxation and Finance,Taxation and Finance +501984,Taxation and Finance,Taxation and Finance +493538,Taxation and Finance,Taxation and Finance +491270,Taxation and Finance,Taxation and Finance +491265,Taxation and Finance,Taxation and Finance +491256,Taxation and Finance,Taxation and Finance +484651,Taxation and Finance,Taxation and Finance +484648,Taxation and Finance,Taxation and Finance +471284,Taxation and Finance,Taxation and Finance +473880,Climate,Climate +473875,Climate,Climate +471287,Climate,Climate +510242,Climate,Climate +510237,Climate,Climate +492742,Climate,Climate +481470,Climate,Climate +474789,Climate,Climate +501719,Budget,Budget +482768,Employment and Training,Employment and Training +474564,Employment and Training,Employment and Training +474564,Health,Health +471785,Health,Health +482845,Health,Health +482768,Labour,Labour +474564,Labour,Labour +474387,Energy,Energy +471814,Energy,Energy +521705,Energy,Energy +518674,Energy,Energy +518673,Energy,Energy +518672,Energy,Energy +492639,Energy,Energy +472009,Energy,Energy +471659,Energy,Energy +480268,Energy,Energy +476040,Energy,Energy +476037,Energy,Energy +476035,Climate,Climate +472009,Climate,Climate +480268,Climate,Climate +476041,Climate,Climate +472009,Government Procurement,Government Procurement +471659,Government Procurement,Government Procurement +498836,Government Procurement,Government Procurement +480268,Government Procurement,Government Procurement +472009,Transportation,Transportation +471659,Transportation,Transportation +498836,Transportation,Transportation +480268,Transportation,Transportation +476041,Transportation,Transportation +476040,Transportation,Transportation +476037,Transportation,Transportation +474261,Constitutional Issues,Constitutional Issues +474260,Constitutional Issues,Constitutional Issues +474263,Constitutional Issues,Constitutional Issues +474262,Immigration,Immigration +476749,Research and Development,Research and Development +476749,Security,Security +483135,Economic Development,Economic Development +483133,Economic Development,Economic Development +489078,Economic Development,Economic Development +471668,Economic Development,Economic Development +471637,Economic Development,Economic Development +471668,Energy,Energy +471637,Energy,Energy +474431,Energy,Energy +475417,Health,Health +475404,Health,Health +481218,Health,Health +476790,Health,Health +483028,Health,Health +483027,Health,Health +523364,Health,Health +517634,Health,Health +497067,Health,Health +483032,Health,Health +483031,Health,Health +483029,Justice and Law Enforcement,Justice and Law Enforcement +509708,Pensions,Pensions +509403,Pensions,Pensions +485854,Climate,Climate +485853,Climate,Climate +494271,Climate,Climate +494263,Climate,Climate +494257,Climate,Climate +483335,Economic Development,Economic Development +471677,Economic Development,Economic Development +475336,Environment,Environment +475334,Environment,Environment +502337,Environment,Environment +491023,Environment,Environment +491020,Environment,Environment +491018,Environment,Environment +491013,Environment,Environment +488059,Environment,Environment +488056,Environment,Environment +484802,Environment,Environment +484798,Environment,Environment +484796,Environment,Environment +482075,Environment,Environment +477819,Environment,Environment +473354,Health,Health +473350,Health,Health +502337,Health,Health +491023,Health,Health +491020,Health,Health +491018,Health,Health +488059,Health,Health +488056,Health,Health +488055,Health,Health +484802,Health,Health +484798,Health,Health +484796,Health,Health +482075,Health,Health +477819,Health,Health +477817,Health,Health +475336,Health,Health +475334,International Relations,International Relations +473363,International Relations,International Relations +484798,International Relations,International Relations +477817,International Relations,International Relations +488056,International Trade,International Trade +488055,International Trade,International Trade +491020,International Trade,International Trade +491018,International Trade,International Trade +471645,Energy,Energy +471644,Energy,Energy +471683,Environment,Environment +472031,Infrastructure,Infrastructure +472697,Economic Development,Economic Development +472705,Infrastructure,Infrastructure +472697,Infrastructure,Infrastructure +491735,Infrastructure,Infrastructure +472697,Regional Development,Regional Development +491735,Regional Development,Regional Development +474815,Regional Development,Regional Development +472010,Economic Development,Economic Development +471517,Economic Development,Economic Development +527111,Economic Development,Economic Development +524718,Economic Development,Economic Development +524224,Economic Development,Economic Development +524223,Economic Development,Economic Development +520871,Economic Development,Economic Development +517489,Economic Development,Economic Development +516640,Economic Development,Economic Development +516638,Economic Development,Economic Development +514921,Economic Development,Economic Development +514432,Economic Development,Economic Development +512006,Economic Development,Economic Development +509472,Economic Development,Economic Development +509437,Economic Development,Economic Development +509436,Economic Development,Economic Development +506626,Economic Development,Economic Development +506624,Economic Development,Economic Development +496772,Economic Development,Economic Development +496660,Economic Development,Economic Development +496659,Economic Development,Economic Development +496658,Economic Development,Economic Development +496429,Economic Development,Economic Development +496428,Economic Development,Economic Development +496423,Economic Development,Economic Development +494605,Economic Development,Economic Development +494602,Economic Development,Economic Development +494596,Economic Development,Economic Development +494593,Economic Development,Economic Development +491939,Economic Development,Economic Development +491937,Economic Development,Economic Development +484211,Economic Development,Economic Development +484209,Economic Development,Economic Development +483931,Economic Development,Economic Development +481827,Economic Development,Economic Development +481116,Economic Development,Economic Development +481114,Economic Development,Economic Development +480548,Economic Development,Economic Development +480547,Economic Development,Economic Development +480546,Economic Development,Economic Development +479441,Economic Development,Economic Development +476179,Economic Development,Economic Development +474015,Economic Development,Economic Development +474013,Economic Development,Economic Development +471519,Economic Development,Economic Development +471519,Infrastructure,Infrastructure +471523,Tourism,Tourism +471522,Tourism,Tourism +485475,Tourism,Tourism +485474,Tourism,Tourism +485473,Tourism,Tourism +483776,Tourism,Tourism +483774,Tourism,Tourism +483773,Tourism,Tourism +483772,Tourism,Tourism +482930,Tourism,Tourism +482929,Tourism,Tourism +482580,Tourism,Tourism +482578,Tourism,Tourism +480845,Tourism,Tourism +480844,Tourism,Tourism +480843,Tourism,Tourism +480842,Tourism,Tourism +480611,Tourism,Tourism +480608,Tourism,Tourism +480606,Tourism,Tourism +480603,Tourism,Tourism +480602,Tourism,Tourism +480598,Tourism,Tourism +480597,Tourism,Tourism +480596,Tourism,Tourism +480595,Tourism,Tourism +474074,Tourism,Tourism +515693,Economic Development,Economic Development +515692,Economic Development,Economic Development +503868,Economic Development,Economic Development +501243,Economic Development,Economic Development +497031,Economic Development,Economic Development +497030,Economic Development,Economic Development +472468,Economic Development,Economic Development +545351,Economic Development,Economic Development +544834,Economic Development,Economic Development +540598,Economic Development,Economic Development +534434,Economic Development,Economic Development +534431,Economic Development,Economic Development +523336,Economic Development,Economic Development +523335,Economic Development,Economic Development +518764,Economic Development,Economic Development +497030,Health,Health +472468,Health,Health +545351,Health,Health +544834,Health,Health +540598,Health,Health +534434,Health,Health +534431,Health,Health +523337,Health,Health +523336,Health,Health +523335,Health,Health +518764,Health,Health +518725,Health,Health +515693,Health,Health +515692,Health,Health +503868,Health,Health +501243,Health,Health +497031,Industry,Industry +497030,Industry,Industry +472468,Industry,Industry +545351,Industry,Industry +544834,Industry,Industry +540598,Industry,Industry +534434,Industry,Industry +534431,Industry,Industry +523337,Industry,Industry +523336,Industry,Industry +523335,Industry,Industry +518764,Industry,Industry +518725,Industry,Industry +515693,Industry,Industry +515692,Industry,Industry +503868,Industry,Industry +497031,Intellectual Property,Intellectual Property +497030,Intellectual Property,Intellectual Property +545351,Intellectual Property,Intellectual Property +515693,Research and Development,Research and Development +515692,Research and Development,Research and Development +503868,Research and Development,Research and Development +501243,Research and Development,Research and Development +497031,Research and Development,Research and Development +497030,Research and Development,Research and Development +472468,Research and Development,Research and Development +545351,Research and Development,Research and Development +544834,Research and Development,Research and Development +540598,Research and Development,Research and Development +534434,Research and Development,Research and Development +534431,Research and Development,Research and Development +523337,Research and Development,Research and Development +523336,Research and Development,Research and Development +523335,Research and Development,Research and Development +518764,Research and Development,Research and Development +501656,Climate,Climate +519583,Energy,Energy +501656,Energy,Energy +483613,Energy,Energy +483608,Energy,Energy +476763,Energy,Energy +476761,Energy,Energy +476759,Energy,Energy +474767,Energy,Energy +474757,Energy,Energy +472749,Energy,Energy +472747,Energy,Energy +472747,Environment,Environment +472744,Environment,Environment +476761,Environment,Environment +476759,Environment,Environment +471544,Financial Institutions,Financial Institutions +471528,Financial Institutions,Financial Institutions +474357,Financial Institutions,Financial Institutions +474016,Financial Institutions,Financial Institutions +473972,Financial Institutions,Financial Institutions +472050,Financial Institutions,Financial Institutions +471709,Financial Institutions,Financial Institutions +471544,Small Business,Small Business +471528,Small Business,Small Business +474357,Small Business,Small Business +474016,Small Business,Small Business +473972,Small Business,Small Business +472050,Small Business,Small Business +471709,Small Business,Small Business +476599,Government Procurement,Government Procurement +471527,Government Procurement,Government Procurement +489905,Economic Development,Economic Development +485492,Economic Development,Economic Development +473559,Transportation,Transportation +471706,Transportation,Transportation +518903,Transportation,Transportation +506156,Transportation,Transportation +504367,Transportation,Transportation +503719,Transportation,Transportation +500198,Transportation,Transportation +500020,Transportation,Transportation +497836,Transportation,Transportation +496878,Transportation,Transportation +496757,Transportation,Transportation +496755,Transportation,Transportation +488518,Transportation,Transportation +486180,Transportation,Transportation +480411,Transportation,Transportation +476772,Transportation,Transportation +474126,Transportation,Transportation +498936,Labour,Labour +523543,International Relations,International Relations +523397,International Relations,International Relations +520887,International Relations,International Relations +520743,International Relations,International Relations +520360,International Relations,International Relations +519045,International Relations,International Relations +518826,International Relations,International Relations +518388,International Relations,International Relations +516224,International Relations,International Relations +516180,International Relations,International Relations +516154,International Relations,International Relations +516127,International Relations,International Relations +515435,International Relations,International Relations +515399,International Relations,International Relations +514917,International Relations,International Relations +478359,International Relations,International Relations +476229,International Relations,International Relations +474568,International Relations,International Relations +472317,International Relations,International Relations +472059,International Relations,International Relations +472056,International Relations,International Relations +472055,International Relations,International Relations +471966,International Relations,International Relations +471820,International Relations,International Relations +471719,International Relations,International Relations +471654,International Relations,International Relations +471638,International Relations,International Relations +471551,International Relations,International Relations +471535,International Relations,International Relations +471468,International Relations,International Relations +471367,International Relations,International Relations +524694,International Relations,International Relations +524474,International Relations,International Relations +523894,International Relations,International Relations +485547,Health,Health +485546,Health,Health +517840,Economic Development,Economic Development +509558,Economic Development,Economic Development +541537,Economic Development,Economic Development +541536,Economic Development,Economic Development +540249,Economic Development,Economic Development +538553,Economic Development,Economic Development +538552,Economic Development,Economic Development +535089,Economic Development,Economic Development +532001,Economic Development,Economic Development +532000,Economic Development,Economic Development +531999,Economic Development,Economic Development +529052,Economic Development,Economic Development +529050,Economic Development,Economic Development +529048,Economic Development,Economic Development +529047,Economic Development,Economic Development +529044,Economic Development,Economic Development +529043,Economic Development,Economic Development +526377,Economic Development,Economic Development +526376,Economic Development,Economic Development +519117,Economic Development,Economic Development +509391,Small Business,Small Business +502758,Economic Development,Economic Development +496695,Economic Development,Economic Development +473724,Economic Development,Economic Development +473723,Health,Health +473721,Health,Health +502758,Health,Health +473723,Labour,Labour +473721,Labour,Labour +502758,Labour,Labour +496695,Labour,Labour +473724,Small Business,Small Business +473723,Small Business,Small Business +473723,Sports,Sports +502758,Sports,Sports +473724,Tourism,Tourism +473723,Tourism,Tourism +502758,Tourism,Tourism +471833,Economic Development,Economic Development +471833,Industry,Industry +499575,Defence,Defence +487842,Defence,Defence +484350,Defence,Defence +477447,Defence,Defence +474860,Defence,Defence +474859,Defence,Defence +474856,Defence,Defence +474855,Defence,Defence +523275,Defence,Defence +513168,Defence,Defence +474848,Economic Development,Economic Development +474847,Economic Development,Economic Development +513168,Economic Development,Economic Development +502029,Economic Development,Economic Development +499575,Economic Development,Economic Development +487842,Economic Development,Economic Development +477447,Economic Development,Economic Development +477439,Economic Development,Economic Development +474867,Economic Development,Economic Development +474866,Economic Development,Economic Development +474862,Economic Development,Economic Development +474857,Economic Development,Economic Development +474856,Economic Development,Economic Development +474855,Economic Development,Economic Development +474853,Government Procurement,Government Procurement +474852,Government Procurement,Government Procurement +523275,Government Procurement,Government Procurement +513168,Government Procurement,Government Procurement +502029,Government Procurement,Government Procurement +499575,Government Procurement,Government Procurement +487842,Government Procurement,Government Procurement +484350,Government Procurement,Government Procurement +477447,Government Procurement,Government Procurement +477439,Government Procurement,Government Procurement +474867,Government Procurement,Government Procurement +474860,Government Procurement,Government Procurement +474859,Government Procurement,Government Procurement +474848,Industry,Industry +474847,Industry,Industry +523275,Industry,Industry +513168,Industry,Industry +484350,Industry,Industry +477447,Industry,Industry +477439,Industry,Industry +474867,Industry,Industry +474866,Industry,Industry +474860,Industry,Industry +474859,Industry,Industry +474857,Industry,Industry +474856,Industry,Industry +474853,Industry,Industry +474852,Industry,Industry +477447,International Relations,International Relations +477447,International Trade,International Trade +474862,International Trade,International Trade +472030,Environment,Environment +472029,Infrastructure,Infrastructure +471810,Infrastructure,Infrastructure +540726,Health,Health +538838,Health,Health +521141,Health,Health +520251,Health,Health +520249,Health,Health +517350,Health,Health +513259,Health,Health +513256,Health,Health +504461,Health,Health +504430,Health,Health +501803,Health,Health +496293,Health,Health +493398,Health,Health +493396,Health,Health +491067,Health,Health +491065,Health,Health +491061,Health,Health +487361,Health,Health +487359,Health,Health +487357,Health,Health +487355,Health,Health +474643,Health,Health +544391,Health,Health +504430,Constitutional Issues,Constitutional Issues +496293,Constitutional Issues,Constitutional Issues +493398,Constitutional Issues,Constitutional Issues +493396,Constitutional Issues,Constitutional Issues +491067,Constitutional Issues,Constitutional Issues +491065,Constitutional Issues,Constitutional Issues +491061,Constitutional Issues,Constitutional Issues +487361,Constitutional Issues,Constitutional Issues +487359,Constitutional Issues,Constitutional Issues +487357,Constitutional Issues,Constitutional Issues +487355,Constitutional Issues,Constitutional Issues +480524,Constitutional Issues,Constitutional Issues +544391,Constitutional Issues,Constitutional Issues +542447,Constitutional Issues,Constitutional Issues +542446,Constitutional Issues,Constitutional Issues +540726,Constitutional Issues,Constitutional Issues +540461,Constitutional Issues,Constitutional Issues +540375,Constitutional Issues,Constitutional Issues +540374,Constitutional Issues,Constitutional Issues +540373,Constitutional Issues,Constitutional Issues +538838,Constitutional Issues,Constitutional Issues +533344,Constitutional Issues,Constitutional Issues +513259,Constitutional Issues,Constitutional Issues +513256,Constitutional Issues,Constitutional Issues +540373,Justice and Law Enforcement,Justice and Law Enforcement +538838,Justice and Law Enforcement,Justice and Law Enforcement +521141,Justice and Law Enforcement,Justice and Law Enforcement +520251,Justice and Law Enforcement,Justice and Law Enforcement +520249,Justice and Law Enforcement,Justice and Law Enforcement +513259,Justice and Law Enforcement,Justice and Law Enforcement +513256,Justice and Law Enforcement,Justice and Law Enforcement +504461,Justice and Law Enforcement,Justice and Law Enforcement +504430,Justice and Law Enforcement,Justice and Law Enforcement +501803,Justice and Law Enforcement,Justice and Law Enforcement +496293,Justice and Law Enforcement,Justice and Law Enforcement +493398,Justice and Law Enforcement,Justice and Law Enforcement +493396,Justice and Law Enforcement,Justice and Law Enforcement +491067,Justice and Law Enforcement,Justice and Law Enforcement +491065,Justice and Law Enforcement,Justice and Law Enforcement +491061,Justice and Law Enforcement,Justice and Law Enforcement +487361,Justice and Law Enforcement,Justice and Law Enforcement +487359,Justice and Law Enforcement,Justice and Law Enforcement +487357,Justice and Law Enforcement,Justice and Law Enforcement +487355,Justice and Law Enforcement,Justice and Law Enforcement +484015,Justice and Law Enforcement,Justice and Law Enforcement +484013,Justice and Law Enforcement,Justice and Law Enforcement +484009,Justice and Law Enforcement,Justice and Law Enforcement +484002,Justice and Law Enforcement,Justice and Law Enforcement +483996,Justice and Law Enforcement,Justice and Law Enforcement +474642,Justice and Law Enforcement,Justice and Law Enforcement +474641,Justice and Law Enforcement,Justice and Law Enforcement +474640,Justice and Law Enforcement,Justice and Law Enforcement +544391,Justice and Law Enforcement,Justice and Law Enforcement +542447,Justice and Law Enforcement,Justice and Law Enforcement +540726,Justice and Law Enforcement,Justice and Law Enforcement +540461,Justice and Law Enforcement,Justice and Law Enforcement +540375,Justice and Law Enforcement,Justice and Law Enforcement +506451,Economic Development,Economic Development +474439,Economic Development,Economic Development +506451,Infrastructure,Infrastructure +474439,Infrastructure,Infrastructure +505563,Environment,Environment +501980,Environment,Environment +477745,Economic Development,Economic Development +475857,Economic Development,Economic Development +477745,Employment and Training,Employment and Training +475857,Employment and Training,Employment and Training +475820,Health,Health +475815,Health,Health +482362,Health,Health +477745,Health,Health +478286,Sports,Sports +478274,Sports,Sports +518321,Sports,Sports +510879,Sports,Sports +510877,Sports,Sports +508573,Sports,Sports +508151,Sports,Sports +508149,Sports,Sports +508087,Sports,Sports +508080,Sports,Sports +507764,Sports,Sports +501672,Sports,Sports +487521,Sports,Sports +487459,Sports,Sports +485162,Sports,Sports +485152,Sports,Sports +482274,Sports,Sports +480374,Sports,Sports +480369,Sports,Sports +480365,Infrastructure,Infrastructure +482274,Economic Development,Economic Development +510879,Economic Development,Economic Development +508573,Economic Development,Economic Development +499120,Economic Development,Economic Development +481451,Employment and Training,Employment and Training +481448,Employment and Training,Employment and Training +474883,Employment and Training,Employment and Training +472765,Employment and Training,Employment and Training +472467,Health,Health +471911,Health,Health +474479,Health,Health +471911,Labour,Labour +473928,Municipalities,Municipalities +472467,Municipalities,Municipalities +472467,Taxation and Finance,Taxation and Finance +471626,Taxation and Finance,Taxation and Finance +471627,Taxation and Finance,Taxation and Finance +545136,Taxation and Finance,Taxation and Finance +483973,Taxation and Finance,Taxation and Finance +471649,Taxation and Finance,Taxation and Finance +478624,Government Procurement,Government Procurement +483555,Health,Health +471663,Health,Health +476650,Industry,Industry +485731,Research and Development,Research and Development +476650,Research and Development,Research and Development +488728,Research and Development,Research and Development +486763,International Trade,International Trade +486760,International Trade,International Trade +521932,International Trade,International Trade +521930,International Trade,International Trade +521927,International Trade,International Trade +486769,International Trade,International Trade +486768,International Trade,International Trade +486767,International Trade,International Trade +486766,International Trade,International Trade +486765,International Trade,International Trade +486763,Environment,Environment +486760,Environment,Environment +521932,Environment,Environment +521930,Environment,Environment +521927,Environment,Environment +486769,Environment,Environment +486768,Environment,Environment +486767,Environment,Environment +486766,Environment,Environment +486765,Environment,Environment +486763,Agriculture,Agriculture +486760,Agriculture,Agriculture +521932,Agriculture,Agriculture +521930,Agriculture,Agriculture +521927,Agriculture,Agriculture +486769,Agriculture,Agriculture +486768,Agriculture,Agriculture +486767,Agriculture,Agriculture +486766,Agriculture,Agriculture +486765,Agriculture,Agriculture +485154,Environment,Environment +473397,Defence,Defence +503507,Energy,Energy +475656,Energy,Energy +503700,Environment,Environment +503507,Environment,Environment +503507,Taxation and Finance,Taxation and Finance +475656,Taxation and Finance,Taxation and Finance +475650,Climate,Climate +475139,Climate,Climate +491884,Climate,Climate +482860,Climate,Climate +481334,Climate,Climate +479211,Climate,Climate +477099,Climate,Climate +481334,Economic Development,Economic Development +475650,Energy,Energy +475139,Energy,Energy +503698,Energy,Energy +503505,Energy,Energy +491884,Energy,Energy +479211,Energy,Energy +477099,Energy,Energy +503698,Environment,Environment +503505,Environment,Environment +491884,Environment,Environment +482860,Environment,Environment +481334,Environment,Environment +479211,Environment,Environment +477099,Environment,Environment +476384,Environment,Environment +475650,Environment,Environment +475650,Taxation and Finance,Taxation and Finance +475139,Taxation and Finance,Taxation and Finance +503698,Taxation and Finance,Taxation and Finance +503505,Taxation and Finance,Taxation and Finance +471743,Agriculture,Agriculture +471742,Agriculture,Agriculture +471743,Employment and Training,Employment and Training +471742,Employment and Training,Employment and Training +471743,Immigration,Immigration +471742,Immigration,Immigration +484793,Health,Health +479476,Health,Health +502913,Health,Health +496649,Health,Health +493459,Health,Health +487347,Health,Health +487343,Health,Health +484793,Industry,Industry +502913,Industry,Industry +487347,Industry,Industry +487343,Industry,Industry +484800,Research and Development,Research and Development +484793,Research and Development,Research and Development +502913,Research and Development,Research and Development +496649,Research and Development,Research and Development +493459,Research and Development,Research and Development +487347,Research and Development,Research and Development +487347,Economic Development,Economic Development +484800,Economic Development,Economic Development +493462,Regional Development,Regional Development +493450,Regional Development,Regional Development +482109,Regional Development,Regional Development +479486,Regional Development,Regional Development +479480,Regional Development,Regional Development +474908,Regional Development,Regional Development +543773,Regional Development,Regional Development +526246,Regional Development,Regional Development +502915,Regional Development,Regional Development +502914,Regional Development,Regional Development +499855,Regional Development,Regional Development +474908,Economic Development,Economic Development +474907,Economic Development,Economic Development +543773,Economic Development,Economic Development +526246,Economic Development,Economic Development +502915,Economic Development,Economic Development +502914,Economic Development,Economic Development +499855,Economic Development,Economic Development +499854,Economic Development,Economic Development +493462,Economic Development,Economic Development +493454,Economic Development,Economic Development +493450,Economic Development,Economic Development +482109,Economic Development,Economic Development +479486,Economic Development,Economic Development +474907,Industry,Industry +543773,Industry,Industry +526246,Industry,Industry +502915,Industry,Industry +502914,Industry,Industry +499855,Industry,Industry +499854,Industry,Industry +493462,Industry,Industry +493454,Industry,Industry +493450,Industry,Industry +482109,Industry,Industry +479486,Industry,Industry +479480,Industry,Industry +499855,Energy,Energy +499854,Energy,Energy +493462,Energy,Energy +493454,Energy,Energy +493450,Energy,Energy +482109,Energy,Energy +479486,Energy,Energy +479480,Energy,Energy +474908,Energy,Energy +474907,Energy,Energy +543773,Energy,Energy +526246,Energy,Energy +502915,Energy,Energy +543773,International Trade,International Trade +526246,International Trade,International Trade +482109,International Trade,International Trade +479486,International Trade,International Trade +474908,Infrastructure,Infrastructure +474907,Infrastructure,Infrastructure +543773,Infrastructure,Infrastructure +526246,Infrastructure,Infrastructure +502915,Infrastructure,Infrastructure +502914,Infrastructure,Infrastructure +499855,Infrastructure,Infrastructure +499854,Infrastructure,Infrastructure +493462,Infrastructure,Infrastructure +493450,Infrastructure,Infrastructure +479486,Infrastructure,Infrastructure +474908,Employment and Training,Employment and Training +474907,Employment and Training,Employment and Training +543773,Employment and Training,Employment and Training +502915,Employment and Training,Employment and Training +499855,Employment and Training,Employment and Training +493462,Employment and Training,Employment and Training +493454,Employment and Training,Employment and Training +493450,Employment and Training,Employment and Training +482109,Employment and Training,Employment and Training +479486,Internal Trade,Internal Trade +474908,Internal Trade,Internal Trade +526246,Internal Trade,Internal Trade +499855,Internal Trade,Internal Trade +479486,International Relations,International Relations +479480,International Relations,International Relations +526246,International Relations,International Relations +543773,Climate,Climate +526246,Climate,Climate +502915,Climate,Climate +502914,Climate,Climate +499855,Climate,Climate +499854,Climate,Climate +493462,Climate,Climate +493450,Climate,Climate +482109,Climate,Climate +479486,Climate,Climate +479480,Climate,Climate +474908,Climate,Climate +479486,Environment,Environment +474907,Environment,Environment +526246,Environment,Environment +502915,Environment,Environment +502914,Environment,Environment +499855,Environment,Environment +499854,Environment,Environment +493462,Environment,Environment +493450,Environment,Environment +479486,Taxation and Finance,Taxation and Finance +474908,Taxation and Finance,Taxation and Finance +502915,Taxation and Finance,Taxation and Finance +502914,Taxation and Finance,Taxation and Finance +499855,Taxation and Finance,Taxation and Finance +499854,Taxation and Finance,Taxation and Finance +493462,Taxation and Finance,Taxation and Finance +493450,Taxation and Finance,Taxation and Finance +472111,Health,Health +471920,Health,Health +480475,Health,Health +479801,Health,Health +478616,Health,Health +474652,Health,Health +474414,Health,Health +473962,Health,Health +473960,Health,Health +479801,Government Procurement,Government Procurement +478616,Government Procurement,Government Procurement +474652,Government Procurement,Government Procurement +474414,Government Procurement,Government Procurement +473962,Government Procurement,Government Procurement +473960,Government Procurement,Government Procurement +472976,Government Procurement,Government Procurement +473960,International Trade,International Trade +471920,International Trade,International Trade +474414,International Trade,International Trade +474387,Climate,Climate +518673,Taxation and Finance,Taxation and Finance +518672,Taxation and Finance,Taxation and Finance +473951,Agriculture,Agriculture +473924,Agriculture,Agriculture +473951,Small Business,Small Business +473924,Small Business,Small Business +473951,Sports,Sports +473951,Taxation and Finance,Taxation and Finance +473924,Taxation and Finance,Taxation and Finance +471976,Government Procurement,Government Procurement +471976,Health,Health +487769,Internal Trade,Internal Trade +485165,Internal Trade,Internal Trade +529595,Internal Trade,Internal Trade +472311,Taxation and Finance,Taxation and Finance +472309,Taxation and Finance,Taxation and Finance +487769,Taxation and Finance,Taxation and Finance +485165,Taxation and Finance,Taxation and Finance +474461,Taxation and Finance,Taxation and Finance +526550,Transportation,Transportation +473064,International Trade,International Trade +478675,Government Procurement,Government Procurement +513613,Government Procurement,Government Procurement +500249,Government Procurement,Government Procurement +500247,Government Procurement,Government Procurement +482815,Government Procurement,Government Procurement +482813,Government Procurement,Government Procurement +481174,Government Procurement,Government Procurement +480738,Government Procurement,Government Procurement +479067,Government Procurement,Government Procurement +479064,Government Procurement,Government Procurement +500249,Security,Security +500247,Security,Security +476398,Health,Health +476397,Health,Health +486546,Health,Health +476398,Industry,Industry +476397,Industry,Industry +477487,Infrastructure,Infrastructure +475509,Infrastructure,Infrastructure +533832,Infrastructure,Infrastructure +486550,Infrastructure,Infrastructure +486549,Infrastructure,Infrastructure +486547,Infrastructure,Infrastructure +485110,Infrastructure,Infrastructure +484612,Infrastructure,Infrastructure +484611,Infrastructure,Infrastructure +484610,Infrastructure,Infrastructure +484604,Infrastructure,Infrastructure +484602,Infrastructure,Infrastructure +484599,Infrastructure,Infrastructure +484598,Infrastructure,Infrastructure +481930,Infrastructure,Infrastructure +477487,Municipalities,Municipalities +475509,Municipalities,Municipalities +533832,Municipalities,Municipalities +486550,Municipalities,Municipalities +486549,Municipalities,Municipalities +486547,Municipalities,Municipalities +485110,Municipalities,Municipalities +484612,Municipalities,Municipalities +484611,Municipalities,Municipalities +484610,Municipalities,Municipalities +484604,Municipalities,Municipalities +484602,Municipalities,Municipalities +484599,Municipalities,Municipalities +477487,Regional Development,Regional Development +475509,Regional Development,Regional Development +533832,Regional Development,Regional Development +486550,Regional Development,Regional Development +486549,Regional Development,Regional Development +486547,Regional Development,Regional Development +485110,Regional Development,Regional Development +484612,Regional Development,Regional Development +484611,Regional Development,Regional Development +484610,Regional Development,Regional Development +484604,Regional Development,Regional Development +484602,Regional Development,Regional Development +484599,Regional Development,Regional Development +478688,Economic Development,Economic Development +478687,Economic Development,Economic Development +476395,Government Procurement,Government Procurement +474010,Financial Institutions,Financial Institutions +474010,Small Business,Small Business +474010,Taxation and Finance,Taxation and Finance +473984,Economic Development,Economic Development +473984,Health,Health +473984,Industry,Industry +474300,Government Procurement,Government Procurement +474299,Government Procurement,Government Procurement +474303,Government Procurement,Government Procurement +474302,Government Procurement,Government Procurement +474305,Government Procurement,Government Procurement +474304,Government Procurement,Government Procurement +474308,Government Procurement,Government Procurement +474307,Government Procurement,Government Procurement +474290,Government Procurement,Government Procurement +474289,Government Procurement,Government Procurement +483820,Government Procurement,Government Procurement +480922,Government Procurement,Government Procurement +474293,Government Procurement,Government Procurement +474292,Government Procurement,Government Procurement +474295,Government Procurement,Government Procurement +474294,Government Procurement,Government Procurement +483821,Government Procurement,Government Procurement +480923,Government Procurement,Government Procurement +474298,Government Procurement,Government Procurement +474297,Government Procurement,Government Procurement +476511,Sports,Sports +473900,Sports,Sports +493983,Sports,Sports +492621,Sports,Sports +492471,Sports,Sports +492434,Sports,Sports +492151,Sports,Sports +492102,Sports,Sports +490019,Sports,Sports +489700,Sports,Sports +488690,Sports,Sports +486156,Sports,Sports +483667,Sports,Sports +483666,Sports,Sports +483111,Sports,Sports +482821,Sports,Sports +482210,Sports,Sports +482134,Sports,Sports +481498,Sports,Sports +481436,Sports,Sports +481353,Sports,Sports +479093,Sports,Sports +479092,Sports,Sports +479091,Sports,Sports +479090,Sports,Sports +480660,Economic Development,Economic Development +480353,Health,Health +478746,Health,Health +480661,Health,Health +480353,Industry,Industry +478746,Industry,Industry +480661,Industry,Industry +486748,Environment,Environment +486747,Environment,Environment +521951,Environment,Environment +521950,Environment,Environment +521949,Environment,Environment +521948,Environment,Environment +496475,Environment,Environment +488507,Environment,Environment +486755,Environment,Environment +486754,Environment,Environment +486752,Environment,Environment +486751,Environment,Environment +521950,Agriculture,Agriculture +521949,Agriculture,Agriculture +521948,Agriculture,Agriculture +496475,Agriculture,Agriculture +488507,Agriculture,Agriculture +486755,Agriculture,Agriculture +486754,Agriculture,Agriculture +486752,Agriculture,Agriculture +486751,Agriculture,Agriculture +486749,Agriculture,Agriculture +486748,Agriculture,Agriculture +486747,Agriculture,Agriculture +473996,Agriculture,Agriculture +472109,Agriculture,Agriculture +521949,International Trade,International Trade +521948,International Trade,International Trade +496475,International Trade,International Trade +488507,International Trade,International Trade +486755,International Trade,International Trade +486754,International Trade,International Trade +486752,International Trade,International Trade +486751,International Trade,International Trade +486749,International Trade,International Trade +486748,International Trade,International Trade +486747,International Trade,International Trade +521951,International Trade,International Trade +475945,Employment and Training,Employment and Training +475935,Employment and Training,Employment and Training +475953,Employment and Training,Employment and Training +473450,Budget,Budget +473450,Justice and Law Enforcement,Justice and Law Enforcement +475922,Agriculture,Agriculture +475917,Agriculture,Agriculture +511595,Agriculture,Agriculture +511593,Agriculture,Agriculture +511592,Agriculture,Agriculture +511591,Agriculture,Agriculture +502609,Agriculture,Agriculture +502607,Agriculture,Agriculture +502605,Agriculture,Agriculture +499823,Agriculture,Agriculture +493862,Agriculture,Agriculture +491694,Agriculture,Agriculture +491693,Agriculture,Agriculture +488015,Agriculture,Agriculture +483004,Agriculture,Agriculture +483002,Agriculture,Agriculture +482568,Agriculture,Agriculture +482567,Agriculture,Agriculture +479990,Agriculture,Agriculture +479989,Agriculture,Agriculture +478540,Agriculture,Agriculture +477457,Agriculture,Agriculture +475932,Agriculture,Agriculture +475931,Agriculture,Agriculture +511594,Environment,Environment +493426,Industry,Industry +480934,Industry,Industry +473887,Industry,Industry +473887,Health,Health +472173,Health,Health +472172,Industry,Industry +472118,Industry,Industry +493955,Industry,Industry +493863,Industry,Industry +492126,Industry,Industry +482862,Industry,Industry +473889,Industry,Industry +472377,Economic Development,Economic Development +472172,Health,Health +472118,Health,Health +493955,Health,Health +493863,Health,Health +492126,Health,Health +482862,Health,Health +474418,Health,Health +474417,Health,Health +473889,Health,Health +475118,Justice and Law Enforcement,Justice and Law Enforcement +474945,Health,Health +474944,Health,Health +477655,Health,Health +477654,Health,Health +477653,Health,Health +477652,Health,Health +480156,Government Procurement,Government Procurement +480155,Government Procurement,Government Procurement +500248,Defence,Defence +479059,Government Procurement,Government Procurement +478674,Government Procurement,Government Procurement +513614,Government Procurement,Government Procurement +500250,Government Procurement,Government Procurement +500248,Government Procurement,Government Procurement +482814,Government Procurement,Government Procurement +482812,Government Procurement,Government Procurement +481175,Government Procurement,Government Procurement +480737,Government Procurement,Government Procurement +479066,Government Procurement,Government Procurement +482193,Budget,Budget +480799,Budget,Budget +478356,Budget,Budget +474121,Budget,Budget +472022,Budget,Budget +472021,Budget,Budget +472020,Budget,Budget +472019,Budget,Budget +516312,Budget,Budget +516311,Budget,Budget +485957,Budget,Budget +482197,Budget,Budget +472049,Government Procurement,Government Procurement +472046,Government Procurement,Government Procurement +503430,Government Procurement,Government Procurement +503317,Government Procurement,Government Procurement +500025,Government Procurement,Government Procurement +494736,Government Procurement,Government Procurement +492932,Government Procurement,Government Procurement +492929,Government Procurement,Government Procurement +488479,Government Procurement,Government Procurement +488403,Government Procurement,Government Procurement +485629,Government Procurement,Government Procurement +485600,Government Procurement,Government Procurement +483715,Government Procurement,Government Procurement +483379,Government Procurement,Government Procurement +483318,Government Procurement,Government Procurement +482913,Government Procurement,Government Procurement +482701,Government Procurement,Government Procurement +482034,Government Procurement,Government Procurement +481653,Government Procurement,Government Procurement +480908,Government Procurement,Government Procurement +480375,Government Procurement,Government Procurement +479524,Government Procurement,Government Procurement +479012,Government Procurement,Government Procurement +478503,Government Procurement,Government Procurement +477684,Government Procurement,Government Procurement +476758,Government Procurement,Government Procurement +476403,Government Procurement,Government Procurement +474938,Government Procurement,Government Procurement +474937,Government Procurement,Government Procurement +474691,Government Procurement,Government Procurement +474596,Government Procurement,Government Procurement +474313,Government Procurement,Government Procurement +474311,Government Procurement,Government Procurement +474151,Government Procurement,Government Procurement +492089,Small Business,Small Business +508957,Fisheries,Fisheries +508957,Industry,Industry +493518,Industry,Industry +482483,Industry,Industry +472094,Industry,Industry +486534,Industry,Industry +485657,Industry,Industry +485477,Industry,Industry +484303,Industry,Industry +484298,Industry,Industry +483885,Industry,Industry +483034,Industry,Industry +483011,Industry,Industry +482658,Industry,Industry +482492,Industry,Industry +482490,Industry,Industry +482489,Industry,Industry +482487,Industry,Industry +474076,Economic Development,Economic Development +473992,Economic Development,Economic Development +489288,Economic Development,Economic Development +487187,Economic Development,Economic Development +485599,Economic Development,Economic Development +483713,Economic Development,Economic Development +483012,Economic Development,Economic Development +482914,Economic Development,Economic Development +481901,Economic Development,Economic Development +481857,Economic Development,Economic Development +478959,Economic Development,Economic Development +478812,Economic Development,Economic Development +478657,Economic Development,Economic Development +478495,Economic Development,Economic Development +478424,Economic Development,Economic Development +477879,Economic Development,Economic Development +476402,Economic Development,Economic Development +476240,Economic Development,Economic Development +476239,Economic Development,Economic Development +474649,Economic Development,Economic Development +474648,Economic Development,Economic Development +474452,Economic Development,Economic Development +474346,Economic Development,Economic Development +478715,Health,Health +478715,Industry,Industry +478715,International Trade,International Trade +476518,Sports,Sports +475723,Sports,Sports +499753,Employment and Training,Employment and Training +499752,Employment and Training,Employment and Training +499756,Employment and Training,Employment and Training +499755,Employment and Training,Employment and Training +499752,Labour,Labour +499753,Fisheries,Fisheries +499752,Fisheries,Fisheries +499756,Fisheries,Fisheries +499755,Fisheries,Fisheries +499753,Industry,Industry +499752,Industry,Industry +499756,Industry,Industry +499755,Industry,Industry +499753,Economic Development,Economic Development +499752,Economic Development,Economic Development +499756,Economic Development,Economic Development +499755,Economic Development,Economic Development +499753,Regional Development,Regional Development +499752,Regional Development,Regional Development +499756,Regional Development,Regional Development +499755,Regional Development,Regional Development +499753,Environment,Environment +499752,Environment,Environment +499756,Environment,Environment +499755,Environment,Environment +499753,Agriculture,Agriculture +499752,Agriculture,Agriculture +499756,Agriculture,Agriculture +499755,Agriculture,Agriculture +499753,Research and Development,Research and Development +499752,Research and Development,Research and Development +499756,Research and Development,Research and Development +522703,International Trade,International Trade +522703,Fisheries,Fisheries +522703,Industry,Industry +522703,Economic Development,Economic Development +522705,Environment,Environment +522703,Regional Development,Regional Development +487340,Economic Development,Economic Development +529438,Economic Development,Economic Development +529433,Economic Development,Economic Development +529432,Economic Development,Economic Development +529431,Industry,Industry +487340,Industry,Industry +529438,Industry,Industry +529433,Industry,Industry +529431,Research and Development,Research and Development (R&D) +487340,Research and Development,Research and Development (R&D) +529438,Research and Development,Research and Development (R&D) +529433,Research and Development,Research and Development (R&D) +529431,Environment,Environment +487340,Environment,Environment +529438,Environment,Environment +529433,Environment,Environment +529431,Forestry,Forestry +487340,Forestry,Forestry +529438,Forestry,Forestry +529433,Forestry,Forestry +483869,Economic Development,Economic Development +475235,Economic Development,Economic Development +472192,Labour,Labour +472249,Taxation and Finance,Taxation and Finance +472247,Taxation and Finance,Taxation and Finance +472391,Taxation and Finance,Taxation and Finance +472389,Taxation and Finance,Taxation and Finance +472388,Taxation and Finance,Taxation and Finance +488268,Environment,Environment +488267,Environment,Environment +502788,Environment,Environment +499745,Environment,Environment +499744,Environment,Environment +495747,Environment,Environment +495745,Environment,Environment +490051,Environment,Environment +490050,Environment,Environment +502262,Health,Health +541343,Health,Health +529416,Health,Health +522766,Health,Health +475589,Education,Education +472319,Education,Education +477104,Forestry,Forestry +476178,Forestry,Forestry +482253,Forestry,Forestry +514004,Immigration,Immigration +511105,Immigration,Immigration +516809,Immigration,Immigration +515025,Immigration,Immigration +486328,Agriculture,Agriculture +483872,Agriculture,Agriculture +489061,Agriculture,Agriculture +489060,Agriculture,Agriculture +479315,Budget,Budget +474905,Budget,Budget +502849,Budget,Budget +473389,Government Procurement,Government Procurement +473375,Government Procurement,Government Procurement +477886,Government Procurement,Government Procurement +474906,Government Procurement,Government Procurement +474904,Government Procurement,Government Procurement +473486,Government Procurement,Government Procurement +473474,Government Procurement,Government Procurement +473469,Government Procurement,Government Procurement +473464,Government Procurement,Government Procurement +473461,Government Procurement,Government Procurement +473452,Government Procurement,Government Procurement +484955,Health,Health +484951,Health,Health +484948,Health,Health +484943,Health,Health +482070,Health,Health +482051,Health,Health +482045,Health,Health +479315,Health,Health +477886,Health,Health +474906,Health,Health +474905,Health,Health +474904,Health,Health +473474,Health,Health +473469,Health,Health +473466,Health,Health +473464,Health,Health +473461,Health,Health +473452,Health,Health +473409,Health,Health +473396,Health,Health +473389,Health,Health +473384,Health,Health +473375,Health,Health +543231,Health,Health +540459,Health,Health +540413,Health,Health +540412,Health,Health +538002,Health,Health +538001,Health,Health +535788,Health,Health +535787,Health,Health +518307,Health,Health +514807,Health,Health +513004,Health,Health +507123,Health,Health +507122,Health,Health +507121,Health,Health +505135,Health,Health +502850,Health,Health +502849,Health,Health +502847,Health,Health +502844,Health,Health +502836,Health,Health +497557,Health,Health +497556,Health,Health +493073,Health,Health +493068,Health,Health +489080,Health,Health +489070,Health,Health +489069,Health,Health +489064,Health,Health +489070,Industry,Industry +489068,Industry,Industry +484951,Industry,Industry +484948,Industry,Industry +484943,Industry,Industry +484934,Industry,Industry +477886,Industry,Industry +474905,Industry,Industry +474904,Industry,Industry +474903,Industry,Industry +473486,Industry,Industry +473469,Industry,Industry +473466,Industry,Industry +473464,Industry,Industry +473461,Industry,Industry +473452,Industry,Industry +473396,Industry,Industry +473389,Industry,Industry +473375,Industry,Industry +489080,Industry,Industry +473486,Taxation and Finance,Taxation and Finance +473469,Taxation and Finance,Taxation and Finance +473466,Taxation and Finance,Taxation and Finance +473464,Taxation and Finance,Taxation and Finance +473461,Taxation and Finance,Taxation and Finance +473452,Taxation and Finance,Taxation and Finance +473396,Taxation and Finance,Taxation and Finance +473384,Taxation and Finance,Taxation and Finance +490002,Economic Development,Economic Development +486988,Economic Development,Economic Development +483989,Economic Development,Economic Development +479280,Economic Development,Economic Development +476526,Economic Development,Economic Development +476525,Economic Development,Economic Development +476524,Economic Development,Economic Development +474259,Economic Development,Economic Development +474258,Economic Development,Economic Development +474257,Economic Development,Economic Development +474256,Economic Development,Economic Development +474255,Economic Development,Economic Development +474254,Economic Development,Economic Development +474253,Economic Development,Economic Development +474252,Economic Development,Economic Development +472632,Economic Development,Economic Development +472409,Economic Development,Economic Development +472408,Economic Development,Economic Development +472407,Economic Development,Economic Development +472406,Economic Development,Economic Development +539088,Economic Development,Economic Development +524195,Economic Development,Economic Development +524190,Economic Development,Economic Development +520915,Economic Development,Economic Development +519024,Economic Development,Economic Development +514556,Economic Development,Economic Development +503871,Economic Development,Economic Development +503869,Economic Development,Economic Development +501128,Economic Development,Economic Development +501127,Economic Development,Economic Development +501125,Economic Development,Economic Development +497752,Economic Development,Economic Development +490011,Economic Development,Economic Development +472407,Infrastructure,Infrastructure +472406,Infrastructure,Infrastructure +539088,Infrastructure,Infrastructure +524195,Infrastructure,Infrastructure +524190,Infrastructure,Infrastructure +520915,Infrastructure,Infrastructure +519024,Infrastructure,Infrastructure +514556,Infrastructure,Infrastructure +503871,Infrastructure,Infrastructure +503869,Infrastructure,Infrastructure +501128,Infrastructure,Infrastructure +501127,Infrastructure,Infrastructure +501125,Infrastructure,Infrastructure +497752,Infrastructure,Infrastructure +490011,Infrastructure,Infrastructure +490008,Infrastructure,Infrastructure +490002,Infrastructure,Infrastructure +486988,Infrastructure,Infrastructure +483989,Infrastructure,Infrastructure +481330,Infrastructure,Infrastructure +479280,Infrastructure,Infrastructure +476526,Infrastructure,Infrastructure +476525,Infrastructure,Infrastructure +476524,Infrastructure,Infrastructure +474259,Infrastructure,Infrastructure +474258,Infrastructure,Infrastructure +474257,Infrastructure,Infrastructure +474256,Infrastructure,Infrastructure +474255,Infrastructure,Infrastructure +474254,Infrastructure,Infrastructure +474253,Infrastructure,Infrastructure +474252,Infrastructure,Infrastructure +472632,Infrastructure,Infrastructure +472409,Infrastructure,Infrastructure +522515,Budget,Budget +521357,Budget,Budget +500368,Budget,Budget +500367,Budget,Budget +500366,Budget,Budget +500365,Budget,Budget +500364,Budget,Budget +500362,Budget,Budget +500361,Budget,Budget +500360,Budget,Budget +500359,Budget,Budget +500358,Budget,Budget +500355,Budget,Budget +500354,Budget,Budget +500353,Budget,Budget +500352,Budget,Budget +500351,Budget,Budget +500350,Budget,Budget +500349,Budget,Budget +500348,Budget,Budget +500347,Budget,Budget +500346,Budget,Budget +492398,Budget,Budget +492396,Budget,Budget +492394,Budget,Budget +492392,Budget,Budget +492389,Budget,Budget +489005,Budget,Budget +489004,Budget,Budget +489003,Budget,Budget +489002,Budget,Budget +489001,Budget,Budget +489000,Budget,Budget +488999,Budget,Budget +488998,Budget,Budget +488997,Budget,Budget +488996,Budget,Budget +488994,Budget,Budget +488993,Budget,Budget +488992,Budget,Budget +488991,Budget,Budget +488988,Budget,Budget +488986,Budget,Budget +488985,Budget,Budget +488984,Budget,Budget +488983,Budget,Budget +488982,Budget,Budget +488981,Budget,Budget +488980,Budget,Budget +488976,Budget,Budget +488975,Budget,Budget +488974,Budget,Budget +488973,Budget,Budget +488972,Budget,Budget +488969,Budget,Budget +488965,Budget,Budget +488963,Budget,Budget +488904,Budget,Budget +488902,Budget,Budget +488901,Budget,Budget +488900,Budget,Budget +488899,Budget,Budget +488898,Budget,Budget +488897,Budget,Budget +488896,Budget,Budget +488895,Budget,Budget +488894,Budget,Budget +488893,Budget,Budget +488892,Budget,Budget +488891,Budget,Budget +488890,Budget,Budget +488889,Budget,Budget +488888,Budget,Budget +488886,Budget,Budget +488885,Budget,Budget +488884,Budget,Budget +485907,Budget,Budget +485906,Budget,Budget +485905,Budget,Budget +485904,Budget,Budget +485903,Budget,Budget +485902,Budget,Budget +483316,Budget,Budget +483315,Budget,Budget +483314,Budget,Budget +483313,Budget,Budget +483312,Budget,Budget +483310,Budget,Budget +481107,Budget,Budget +481106,Budget,Budget +481105,Budget,Budget +481104,Budget,Budget +481102,Budget,Budget +481099,Budget,Budget +481098,Budget,Budget +477151,Budget,Budget +477150,Budget,Budget +477148,Budget,Budget +536981,Budget,Budget +536980,Budget,Budget +534301,Budget,Budget +534300,Budget,Budget +534298,Budget,Budget +534295,Budget,Budget +534292,Budget,Budget +534289,Budget,Budget +534287,Budget,Budget +534286,Budget,Budget +534284,Budget,Budget +534283,Budget,Budget +534281,Budget,Budget +534278,Budget,Budget +534277,Budget,Budget +534276,Budget,Budget +534275,Budget,Budget +534274,Budget,Budget +534149,Budget,Budget +534124,Budget,Budget +534108,Budget,Budget +534100,Budget,Budget +534098,Budget,Budget +534097,Budget,Budget +534092,Budget,Budget +534083,Budget,Budget +534078,Budget,Budget +534077,Budget,Budget +534069,Budget,Budget +534067,Budget,Budget +534063,Budget,Budget +534058,Budget,Budget +530544,Budget,Budget +530543,Budget,Budget +530542,Budget,Budget +527616,Budget,Budget +488988,Employment and Training,Employment and Training +488986,Employment and Training,Employment and Training +488985,Employment and Training,Employment and Training +488984,Employment and Training,Employment and Training +488983,Employment and Training,Employment and Training +488982,Employment and Training,Employment and Training +488981,Employment and Training,Employment and Training +488980,Employment and Training,Employment and Training +488976,Employment and Training,Employment and Training +488975,Employment and Training,Employment and Training +488974,Employment and Training,Employment and Training +488973,Employment and Training,Employment and Training +488972,Employment and Training,Employment and Training +488969,Employment and Training,Employment and Training +488968,Employment and Training,Employment and Training +488965,Employment and Training,Employment and Training +488963,Employment and Training,Employment and Training +488904,Employment and Training,Employment and Training +488902,Employment and Training,Employment and Training +488901,Employment and Training,Employment and Training +488900,Employment and Training,Employment and Training +488899,Employment and Training,Employment and Training +488898,Employment and Training,Employment and Training +488897,Employment and Training,Employment and Training +488896,Employment and Training,Employment and Training +488895,Employment and Training,Employment and Training +488894,Employment and Training,Employment and Training +488893,Employment and Training,Employment and Training +488892,Employment and Training,Employment and Training +488891,Employment and Training,Employment and Training +488890,Employment and Training,Employment and Training +488889,Employment and Training,Employment and Training +488888,Employment and Training,Employment and Training +488885,Employment and Training,Employment and Training +483316,Employment and Training,Employment and Training +483315,Employment and Training,Employment and Training +483313,Employment and Training,Employment and Training +483312,Employment and Training,Employment and Training +483310,Employment and Training,Employment and Training +481107,Employment and Training,Employment and Training +481106,Employment and Training,Employment and Training +481105,Employment and Training,Employment and Training +481104,Employment and Training,Employment and Training +477143,Employment and Training,Employment and Training +536981,Employment and Training,Employment and Training +536980,Employment and Training,Employment and Training +534301,Employment and Training,Employment and Training +534300,Employment and Training,Employment and Training +534298,Employment and Training,Employment and Training +534295,Employment and Training,Employment and Training +534292,Employment and Training,Employment and Training +534289,Employment and Training,Employment and Training +534287,Employment and Training,Employment and Training +534286,Employment and Training,Employment and Training +534284,Employment and Training,Employment and Training +534283,Employment and Training,Employment and Training +534281,Employment and Training,Employment and Training +534278,Employment and Training,Employment and Training +534277,Employment and Training,Employment and Training +534276,Employment and Training,Employment and Training +534275,Employment and Training,Employment and Training +534274,Employment and Training,Employment and Training +534149,Employment and Training,Employment and Training +534124,Employment and Training,Employment and Training +534108,Employment and Training,Employment and Training +534100,Employment and Training,Employment and Training +534098,Employment and Training,Employment and Training +534097,Employment and Training,Employment and Training +534092,Employment and Training,Employment and Training +534083,Employment and Training,Employment and Training +534078,Employment and Training,Employment and Training +534077,Employment and Training,Employment and Training +534069,Employment and Training,Employment and Training +534067,Employment and Training,Employment and Training +534063,Employment and Training,Employment and Training +534058,Employment and Training,Employment and Training +530544,Employment and Training,Employment and Training +527616,Employment and Training,Employment and Training +524761,Employment and Training,Employment and Training +522515,Employment and Training,Employment and Training +500368,Employment and Training,Employment and Training +500367,Employment and Training,Employment and Training +500366,Employment and Training,Employment and Training +500365,Employment and Training,Employment and Training +500364,Employment and Training,Employment and Training +500363,Employment and Training,Employment and Training +500362,Employment and Training,Employment and Training +500361,Employment and Training,Employment and Training +500360,Employment and Training,Employment and Training +500359,Employment and Training,Employment and Training +500358,Employment and Training,Employment and Training +500357,Employment and Training,Employment and Training +500355,Employment and Training,Employment and Training +500354,Employment and Training,Employment and Training +500353,Employment and Training,Employment and Training +500352,Employment and Training,Employment and Training +500351,Employment and Training,Employment and Training +500350,Employment and Training,Employment and Training +492398,Employment and Training,Employment and Training +492396,Employment and Training,Employment and Training +489005,Employment and Training,Employment and Training +489004,Employment and Training,Employment and Training +489003,Employment and Training,Employment and Training +489002,Employment and Training,Employment and Training +489001,Employment and Training,Employment and Training +489000,Employment and Training,Employment and Training +488999,Employment and Training,Employment and Training +488998,Employment and Training,Employment and Training +488997,Employment and Training,Employment and Training +488996,Employment and Training,Employment and Training +488994,Employment and Training,Employment and Training +488993,Employment and Training,Employment and Training +488992,Employment and Training,Employment and Training +527616,Justice and Law Enforcement,Justice and Law Enforcement +524761,Justice and Law Enforcement,Justice and Law Enforcement +522515,Justice and Law Enforcement,Justice and Law Enforcement +521357,Justice and Law Enforcement,Justice and Law Enforcement +510118,Justice and Law Enforcement,Justice and Law Enforcement +500368,Justice and Law Enforcement,Justice and Law Enforcement +500367,Justice and Law Enforcement,Justice and Law Enforcement +500366,Justice and Law Enforcement,Justice and Law Enforcement +500365,Justice and Law Enforcement,Justice and Law Enforcement +500364,Justice and Law Enforcement,Justice and Law Enforcement +500363,Justice and Law Enforcement,Justice and Law Enforcement +500362,Justice and Law Enforcement,Justice and Law Enforcement +500361,Justice and Law Enforcement,Justice and Law Enforcement +500360,Justice and Law Enforcement,Justice and Law Enforcement +500359,Justice and Law Enforcement,Justice and Law Enforcement +478343,Sports,Sports +478008,Economic Development,Economic Development +478008,Employment and Training,Employment and Training +478008,Industry,Industry +478008,Health,Health +510879,Health,Health +480365,Sports,Sports +518321,Infrastructure,Infrastructure +485162,Economic Development,Economic Development +471919,Industry,Industry +471919,Taxation and Finance,Taxation and Finance +471919,Tourism,Tourism +471939,Employment and Training,Employment and Training +473928,Health,Health +474479,International Development,International Development +473928,Labour,Labour +474479,Municipalities,Municipalities +473928,Taxation and Finance,Taxation and Finance +471941,Health,Health +483975,Taxation and Finance,Taxation and Finance +475668,Taxation and Finance,Taxation and Finance +471642,Economic Development,Economic Development +471698,Taxation and Finance,Taxation and Finance +484288,Government Procurement,Government Procurement +485984,Health,Health +488728,Government Procurement,Government Procurement +488728,Health,Health +488728,Industry,Industry +488496,Research and Development,Research and Development +486764,International Trade,International Trade +486764,Environment,Environment +486764,Agriculture,Agriculture +485568,Environment,Environment +474845,Defence,Defence +473397,Economic Development,Economic Development +474845,Government Procurement,Government Procurement +496305,Budget,Budget +475656,Climate,Climate +496305,Economic Development,Economic Development +503700,Energy,Energy +475656,Environment,Environment +503700,Taxation and Finance,Taxation and Finance +476384,Climate,Climate +482860,Economic Development,Economic Development +476384,Energy,Energy +475139,Environment,Environment +476384,Taxation and Finance,Taxation and Finance +471744,Agriculture,Agriculture +471744,Employment and Training,Employment and Training +471744,Immigration,Immigration +484800,Health,Health +493459,Regional Development,Regional Development +484800,Industry,Industry +487343,Research and Development,Research and Development +502913,Economic Development,Economic Development +499854,Regional Development,Regional Development +479480,Economic Development,Economic Development +474908,Industry,Industry +502914,Energy,Energy +479480,International Trade,International Trade +475649,Infrastructure,Infrastructure +479486,Employment and Training,Employment and Training +493462,Internal Trade,Internal Trade +493462,International Relations,International Relations +474907,Climate,Climate +482109,Environment,Environment +482109,Taxation and Finance,Taxation and Finance +493462,Transportation,Transportation +471762,Labour,Labour +472111,Immigration,Immigration +472976,Health,Health +480475,Government Procurement,Government Procurement +473962,International Trade,International Trade +471975,Health,Health +471808,Environment,Environment +537898,Climate,Climate +492639,Climate,Climate +518674,Taxation and Finance,Taxation and Finance +474036,Agriculture,Agriculture +474036,Small Business,Small Business +474036,Sports,Sports +474036,Taxation and Finance,Taxation and Finance +482003,Government Procurement,Government Procurement +482003,Health,Health +471822,Infrastructure,Infrastructure +526550,Internal Trade,Internal Trade +474460,Taxation and Finance,Taxation and Finance +529595,Transportation,Transportation +471871,Government Procurement,Government Procurement +472710,Agriculture,Agriculture +473065,International Trade,International Trade +479061,Government Procurement,Government Procurement +513613,Security,Security +486545,Health,Health +478907,Industry,Industry +480005,Infrastructure,Infrastructure +484598,Municipalities,Municipalities +484598,Regional Development,Regional Development +478415,Employment and Training,Employment and Training +478690,Economic Development,Economic Development +476396,Government Procurement,Government Procurement +493843,Taxation and Finance,Taxation and Finance +517480,Tourism,Tourism +493356,International Relations,International Relations +474011,Financial Institutions,Financial Institutions +474011,Small Business,Small Business +474011,Taxation and Finance,Taxation and Finance +473985,Economic Development,Economic Development +473985,Health,Health +473985,Industry,Industry +474301,Government Procurement,Government Procurement +474306,Government Procurement,Government Procurement +474291,Government Procurement,Government Procurement +474296,Government Procurement,Government Procurement +482134,Budget,Budget +492621,Regional Development,Regional Development +479088,Sports,Sports +480661,Economic Development,Economic Development +480660,Health,Health +480660,Industry,Industry +483060,Health,Health +486749,Environment,Environment +521951,Agriculture,Agriculture +521950,International Trade,International Trade +475947,Employment and Training,Employment and Training +475132,Budget,Budget +475132,Justice and Law Enforcement,Justice and Law Enforcement +475478,Agriculture,Agriculture +475927,Agriculture,Agriculture +513461,Environment,Environment +472173,Industry,Industry +480934,Health,Health +472377,Industry,Industry +474417,Economic Development,Economic Development +472377,Health,Health +476746,Justice and Law Enforcement,Justice and Law Enforcement +477651,Health,Health +480158,Government Procurement,Government Procurement +500250,Defence,Defence +479063,Government Procurement,Government Procurement +482195,Budget,Budget +473991,Government Procurement,Government Procurement +493922,Small Business,Small Business +472072,Government Procurement,Government Procurement +508957,Economic Development,Economic Development +520149,Fisheries,Fisheries +520149,Industry,Industry +493518,Labour,Labour +502761,Economic Development,Economic Development +502761,Employment and Training,Employment and Training +502761,Fisheries,Fisheries +502761,Industry,Industry +502761,Labour,Labour +502761,Taxation and Finance,Taxation and Finance +482484,Industry,Industry +472094,Taxation and Finance,Taxation and Finance +478652,Economic Development,Economic Development +474152,Economic Development,Economic Development +483353,Health,Health +483353,Industry,Industry +483353,International Trade,International Trade +478715,Research and Development,Research and Development +478295,Sports,Sports +472143,Economic Development,Economic Development +472139,Economic Development,Economic Development +472140,Economic Development,Economic Development +499754,Employment and Training,Employment and Training +499756,Labour,Labour +499754,Fisheries,Fisheries +499754,Industry,Industry +499754,Budget,Budget +499754,Economic Development,Economic Development +499754,Regional Development,Regional Development +499754,Environment,Environment +499754,Agriculture,Agriculture +499754,Research and Development,Research and Development +522705,International Trade,International Trade +522705,Fisheries,Fisheries +522705,Industry,Industry +522705,Economic Development,Economic Development +522703,Environment,Environment +522705,Regional Development,Regional Development +529431,Economic Development,Economic Development +529432,Industry,Industry +529432,Research and Development,Research and Development (R&D) +529432,Environment,Environment +529432,Forestry,Forestry +479076,Defence,Defence +479076,Economic Development,Economic Development +479076,Employment and Training,Employment and Training +479076,Industry,Industry +479076,Regional Development,Regional Development +479076,Transportation,Transportation +486302,Economic Development,Economic Development +501331,Government Procurement,Government Procurement +472193,Labour,Labour +475237,International Trade,International Trade +475901,Economic Development,Economic Development +472387,Taxation and Finance,Taxation and Finance +490049,Environment,Environment +472822,Government Procurement,Government Procurement +472292,Health,Health +520220,Health,Health +475599,Education,Education +472347,Industry,Industry +475234,Economic Development,Economic Development +479095,Forestry,Forestry +514726,Immigration,Immigration +489059,Agriculture,Agriculture +486327,Economic Development,Economic Development +482070,Budget,Budget +473409,Government Procurement,Government Procurement +484966,Health,Health +489071,Industry,Industry +514807,Taxation and Finance,Taxation and Finance +490008,Economic Development,Economic Development +472408,Infrastructure,Infrastructure +524761,Budget,Budget +488991,Employment and Training,Employment and Training +530542,Justice and Law Enforcement,Justice and Law Enforcement +477146,Labour,Labour +534292,Security,Security +474243,Climate,Climate +474241,Economic Development,Economic Development +474243,Environment,Environment +474243,Housing,Housing +474243,Research and Development,Research and Development +474243,Small Business,Small Business +474913,Consumer Issues,Consumer Issues +473110,Economic Development,Economic Development +473884,Justice and Law Enforcement,Justice and Law Enforcement +473884,Small Business,Small Business +474913,Financial Institutions,Financial Institutions +474913,Small Business,Small Business +474913,Taxation and Finance,Taxation and Finance +478527,Economic Development,Economic Development +478636,Health,Health +478636,Industry,Industry +478636,International Trade,International Trade +478636,Research and Development,Research and Development +501893,Budget,Budget +542318,Education,Education +538971,Employment and Training,Employment and Training +474994,Small Business,Small Business +474994,Taxation and Finance,Taxation and Finance +494169,Economic Development,Economic Development +494169,Industry,Industry +494169,Internal Trade,Internal Trade +494169,International Trade,International Trade +494169,Mining,Mining +472646,Budget,Budget +504792,Health,Health +504792,Regional Development,Regional Development +496159,Employment and Training,Employment and Training +496155,Employment and Training,Employment and Training +473965,Taxation and Finance,Taxation and Finance +473965,Economic Development,Economic Development +473965,Industry,Industry +473965,Health,Health +472845,Employment and Training,Employment and Training +472862,Small Business,Small Business +472865,Small Business,Small Business +475042,Small Business,Small Business +478548,Infrastructure,Infrastructure +475463,Taxation and Finance,Taxation and Finance +478462,Economic Development,Economic Development +478216,Health,Health +478216,Small Business,Small Business +490297,Research and Development,Research and Development +516998,Economic Development,Economic Development +518677,Government Procurement,Government Procurement +518677,Industry,Industry +527628,Agriculture,Agriculture +473479,Taxation and Finance,Taxation and Finance +480109,Taxation and Finance,Taxation and Finance +484946,Budget,Budget +485595,Health,Health +484946,Sports,Sports +484946,Tourism,Tourism +473500,Industry,Industry +535836,Justice and Law Enforcement,Justice and Law Enforcement +500358,Justice and Law Enforcement,Justice and Law Enforcement +500357,Justice and Law Enforcement,Justice and Law Enforcement +500355,Justice and Law Enforcement,Justice and Law Enforcement +500354,Justice and Law Enforcement,Justice and Law Enforcement +500353,Justice and Law Enforcement,Justice and Law Enforcement +500352,Justice and Law Enforcement,Justice and Law Enforcement +500351,Justice and Law Enforcement,Justice and Law Enforcement +500349,Justice and Law Enforcement,Justice and Law Enforcement +500348,Justice and Law Enforcement,Justice and Law Enforcement +500347,Justice and Law Enforcement,Justice and Law Enforcement +500346,Justice and Law Enforcement,Justice and Law Enforcement +492398,Justice and Law Enforcement,Justice and Law Enforcement +492396,Justice and Law Enforcement,Justice and Law Enforcement +492394,Justice and Law Enforcement,Justice and Law Enforcement +492392,Justice and Law Enforcement,Justice and Law Enforcement +492389,Justice and Law Enforcement,Justice and Law Enforcement +489005,Justice and Law Enforcement,Justice and Law Enforcement +489004,Justice and Law Enforcement,Justice and Law Enforcement +489003,Justice and Law Enforcement,Justice and Law Enforcement +489002,Justice and Law Enforcement,Justice and Law Enforcement +489001,Justice and Law Enforcement,Justice and Law Enforcement +489000,Justice and Law Enforcement,Justice and Law Enforcement +488999,Justice and Law Enforcement,Justice and Law Enforcement +488998,Justice and Law Enforcement,Justice and Law Enforcement +488997,Justice and Law Enforcement,Justice and Law Enforcement +488996,Justice and Law Enforcement,Justice and Law Enforcement +488994,Justice and Law Enforcement,Justice and Law Enforcement +488993,Justice and Law Enforcement,Justice and Law Enforcement +488992,Justice and Law Enforcement,Justice and Law Enforcement +488991,Justice and Law Enforcement,Justice and Law Enforcement +488988,Justice and Law Enforcement,Justice and Law Enforcement +488986,Justice and Law Enforcement,Justice and Law Enforcement +488985,Justice and Law Enforcement,Justice and Law Enforcement +488984,Justice and Law Enforcement,Justice and Law Enforcement +488983,Justice and Law Enforcement,Justice and Law Enforcement +488982,Justice and Law Enforcement,Justice and Law Enforcement +488981,Justice and Law Enforcement,Justice and Law Enforcement +488980,Justice and Law Enforcement,Justice and Law Enforcement +488976,Justice and Law Enforcement,Justice and Law Enforcement +488975,Justice and Law Enforcement,Justice and Law Enforcement +488974,Justice and Law Enforcement,Justice and Law Enforcement +488973,Justice and Law Enforcement,Justice and Law Enforcement +488972,Justice and Law Enforcement,Justice and Law Enforcement +488969,Justice and Law Enforcement,Justice and Law Enforcement +488965,Justice and Law Enforcement,Justice and Law Enforcement +488963,Justice and Law Enforcement,Justice and Law Enforcement +488904,Justice and Law Enforcement,Justice and Law Enforcement +488902,Justice and Law Enforcement,Justice and Law Enforcement +488901,Justice and Law Enforcement,Justice and Law Enforcement +488900,Justice and Law Enforcement,Justice and Law Enforcement +488899,Justice and Law Enforcement,Justice and Law Enforcement +488898,Justice and Law Enforcement,Justice and Law Enforcement +488897,Justice and Law Enforcement,Justice and Law Enforcement +488896,Justice and Law Enforcement,Justice and Law Enforcement +488895,Justice and Law Enforcement,Justice and Law Enforcement +488894,Justice and Law Enforcement,Justice and Law Enforcement +488893,Justice and Law Enforcement,Justice and Law Enforcement +488892,Justice and Law Enforcement,Justice and Law Enforcement +488891,Justice and Law Enforcement,Justice and Law Enforcement +488890,Justice and Law Enforcement,Justice and Law Enforcement +488889,Justice and Law Enforcement,Justice and Law Enforcement +488888,Justice and Law Enforcement,Justice and Law Enforcement +488886,Justice and Law Enforcement,Justice and Law Enforcement +488884,Justice and Law Enforcement,Justice and Law Enforcement +485907,Justice and Law Enforcement,Justice and Law Enforcement +485906,Justice and Law Enforcement,Justice and Law Enforcement +485905,Justice and Law Enforcement,Justice and Law Enforcement +485904,Justice and Law Enforcement,Justice and Law Enforcement +485903,Justice and Law Enforcement,Justice and Law Enforcement +485902,Justice and Law Enforcement,Justice and Law Enforcement +483316,Justice and Law Enforcement,Justice and Law Enforcement +483315,Justice and Law Enforcement,Justice and Law Enforcement +483314,Justice and Law Enforcement,Justice and Law Enforcement +483313,Justice and Law Enforcement,Justice and Law Enforcement +483312,Justice and Law Enforcement,Justice and Law Enforcement +483310,Justice and Law Enforcement,Justice and Law Enforcement +483309,Justice and Law Enforcement,Justice and Law Enforcement +481107,Justice and Law Enforcement,Justice and Law Enforcement +481106,Justice and Law Enforcement,Justice and Law Enforcement +481104,Justice and Law Enforcement,Justice and Law Enforcement +481102,Justice and Law Enforcement,Justice and Law Enforcement +481099,Justice and Law Enforcement,Justice and Law Enforcement +481098,Justice and Law Enforcement,Justice and Law Enforcement +479293,Justice and Law Enforcement,Justice and Law Enforcement +477151,Justice and Law Enforcement,Justice and Law Enforcement +477148,Justice and Law Enforcement,Justice and Law Enforcement +536982,Justice and Law Enforcement,Justice and Law Enforcement +536981,Justice and Law Enforcement,Justice and Law Enforcement +536980,Justice and Law Enforcement,Justice and Law Enforcement +534301,Justice and Law Enforcement,Justice and Law Enforcement +534300,Justice and Law Enforcement,Justice and Law Enforcement +534298,Justice and Law Enforcement,Justice and Law Enforcement +534295,Justice and Law Enforcement,Justice and Law Enforcement +534292,Justice and Law Enforcement,Justice and Law Enforcement +534289,Justice and Law Enforcement,Justice and Law Enforcement +534287,Justice and Law Enforcement,Justice and Law Enforcement +534286,Justice and Law Enforcement,Justice and Law Enforcement +534284,Justice and Law Enforcement,Justice and Law Enforcement +534283,Justice and Law Enforcement,Justice and Law Enforcement +534278,Justice and Law Enforcement,Justice and Law Enforcement +534277,Justice and Law Enforcement,Justice and Law Enforcement +534276,Justice and Law Enforcement,Justice and Law Enforcement +534275,Justice and Law Enforcement,Justice and Law Enforcement +534274,Justice and Law Enforcement,Justice and Law Enforcement +534149,Justice and Law Enforcement,Justice and Law Enforcement +534124,Justice and Law Enforcement,Justice and Law Enforcement +534108,Justice and Law Enforcement,Justice and Law Enforcement +534100,Justice and Law Enforcement,Justice and Law Enforcement +534097,Justice and Law Enforcement,Justice and Law Enforcement +534092,Justice and Law Enforcement,Justice and Law Enforcement +534083,Justice and Law Enforcement,Justice and Law Enforcement +534078,Justice and Law Enforcement,Justice and Law Enforcement +534067,Justice and Law Enforcement,Justice and Law Enforcement +534063,Justice and Law Enforcement,Justice and Law Enforcement +534058,Justice and Law Enforcement,Justice and Law Enforcement +534056,Justice and Law Enforcement,Justice and Law Enforcement +530544,Justice and Law Enforcement,Justice and Law Enforcement +530543,Justice and Law Enforcement,Justice and Law Enforcement +477143,Labour,Labour +534077,Labour,Labour +530544,Labour,Labour +500363,Labour,Labour +500357,Labour,Labour +492398,Labour,Labour +488885,Labour,Labour +483316,Labour,Labour +481102,Labour,Labour +477150,Labour,Labour +477148,Labour,Labour +534289,Security,Security +521357,Security,Security +500352,Security,Security +492398,Security,Security +492396,Security,Security +492394,Security,Security +492392,Security,Security +492389,Security,Security +489005,Security,Security +489004,Security,Security +489003,Security,Security +489002,Security,Security +489001,Security,Security +489000,Security,Security +488999,Security,Security +488998,Security,Security +488997,Security,Security +488996,Security,Security +488994,Security,Security +488993,Security,Security +488992,Security,Security +488991,Security,Security +488988,Security,Security +488986,Security,Security +488985,Security,Security +488984,Security,Security +488983,Security,Security +488982,Security,Security +488981,Security,Security +488980,Security,Security +488976,Security,Security +488975,Security,Security +488974,Security,Security +488973,Security,Security +488972,Security,Security +488969,Security,Security +488965,Security,Security +488963,Security,Security +488904,Security,Security +488902,Security,Security +488901,Security,Security +488900,Security,Security +488899,Security,Security +488898,Security,Security +488897,Security,Security +488896,Security,Security +488895,Security,Security +488894,Security,Security +488893,Security,Security +488892,Security,Security +488891,Security,Security +488890,Security,Security +488889,Security,Security +488888,Security,Security +488886,Security,Security +488884,Security,Security +485906,Security,Security +485905,Security,Security +485904,Security,Security +485903,Security,Security +485902,Security,Security +483315,Security,Security +483314,Security,Security +483309,Security,Security +481106,Security,Security +481105,Security,Security +481099,Security,Security +481098,Security,Security +479293,Security,Security +477151,Security,Security +477150,Security,Security +477149,Security,Security +477148,Security,Security +477146,Security,Security +477143,Security,Security +474870,Security,Security +536982,Security,Security +474242,Climate,Climate +474242,Environment,Environment +474241,Environment,Environment +474242,Housing,Housing +474241,Housing,Housing +474242,Research and Development,Research and Development +474241,Research and Development,Research and Development +474241,Small Business,Small Business +474884,Consumer Issues,Consumer Issues +474884,Financial Institutions,Financial Institutions +474884,Small Business,Small Business +474884,Taxation and Finance,Taxation and Finance +478635,Health,Health +478527,Health,Health +478635,Industry,Industry +478527,Industry,Industry +478635,International Trade,International Trade +478527,International Trade,International Trade +478635,Research and Development,Research and Development +501889,Budget,Budget +501887,Budget,Budget +536286,Employment and Training,Employment and Training +486904,Employment and Training,Employment and Training +542318,Employment and Training,Employment and Training +474993,Small Business,Small Business +472640,Small Business,Small Business +474993,Taxation and Finance,Taxation and Finance +472639,Taxation and Finance,Taxation and Finance +473145,Economic Development,Economic Development +473145,Industry,Industry +473145,Mining,Mining +472645,Budget,Budget +472644,Budget,Budget +485635,Budget,Budget +485634,Budget,Budget +479200,Budget,Budget +472648,Budget,Budget +472647,Budget,Budget +504788,Health,Health +504781,Health,Health +494922,Health,Health +489645,Health,Health +475313,Health,Health +475308,Health,Health +543753,Health,Health +541264,Health,Health +541262,Health,Health +541258,Health,Health +539622,Health,Health +539621,Health,Health +539620,Health,Health +539619,Health,Health +539617,Health,Health +536976,Health,Health +536975,Health,Health +536972,Health,Health +531102,Health,Health +524885,Health,Health +524881,Health,Health +524879,Health,Health +524877,Health,Health +521885,Health,Health +521883,Health,Health +521882,Health,Health +521881,Health,Health +521880,Health,Health +521798,Health,Health +521039,Health,Health +521038,Health,Health +519870,Health,Health +519358,Health,Health +515367,Health,Health +513782,Health,Health +513778,Health,Health +512842,Health,Health +512840,Health,Health +511231,Health,Health +511130,Health,Health +507862,Health,Health +507860,Health,Health +507856,Health,Health +504807,Health,Health +504802,Health,Health +504795,Health,Health +504788,Regional Development,Regional Development +504781,Regional Development,Regional Development +524885,Regional Development,Regional Development +524881,Regional Development,Regional Development +524879,Regional Development,Regional Development +524877,Regional Development,Regional Development +521885,Regional Development,Regional Development +521883,Regional Development,Regional Development +521882,Regional Development,Regional Development +521881,Regional Development,Regional Development +521880,Regional Development,Regional Development +521039,Regional Development,Regional Development +521038,Regional Development,Regional Development +512842,Regional Development,Regional Development +512840,Regional Development,Regional Development +511130,Regional Development,Regional Development +507862,Regional Development,Regional Development +507856,Regional Development,Regional Development +504807,Regional Development,Regional Development +504802,Regional Development,Regional Development +504795,Regional Development,Regional Development +475662,Employment and Training,Employment and Training +472730,Employment and Training,Employment and Training +519996,Employment and Training,Employment and Training +519993,Employment and Training,Employment and Training +519990,Employment and Training,Employment and Training +519984,Employment and Training,Employment and Training +519964,Employment and Training,Employment and Training +519963,Employment and Training,Employment and Training +499157,Employment and Training,Employment and Training +475640,Employment and Training,Employment and Training +472733,Employment and Training,Employment and Training +499135,Employment and Training,Employment and Training +475041,Small Business,Small Business +475038,Small Business,Small Business +475044,Small Business,Small Business +478544,Infrastructure,Infrastructure +476189,Infrastructure,Infrastructure +485807,Infrastructure,Infrastructure +482727,Infrastructure,Infrastructure +482726,Infrastructure,Infrastructure +482725,Infrastructure,Infrastructure +478568,Infrastructure,Infrastructure +478550,Infrastructure,Infrastructure +473065,Taxation and Finance,Taxation and Finance +473064,Taxation and Finance,Taxation and Finance +476134,Health,Health +476134,Small Business,Small Business +478216,Research and Development,Research and Development +476134,Research and Development,Research and Development +511684,Economic Development,Economic Development +511683,Economic Development,Economic Development +499845,Economic Development,Economic Development +499842,Economic Development,Economic Development +535948,Economic Development,Economic Development +518677,Economic Development,Economic Development +516998,Government Procurement,Government Procurement +516998,Industry,Industry +499842,Industry,Industry +535948,Industry,Industry +527627,Agriculture,Agriculture +527838,Agriculture,Agriculture +527629,Agriculture,Agriculture +473471,Taxation and Finance,Taxation and Finance +473444,Taxation and Finance,Taxation and Finance +473435,Taxation and Finance,Taxation and Finance +482909,Budget,Budget +482690,Budget,Budget +489085,Budget,Budget +488624,Budget,Budget +485595,Budget,Budget +484946,Health,Health +482909,Health,Health +482909,Sports,Sports +482690,Sports,Sports +489085,Sports,Sports +488624,Sports,Sports +485595,Sports,Sports +482909,Tourism,Tourism +482690,Tourism,Tourism +489085,Tourism,Tourism +488624,Tourism,Tourism +485595,Tourism,Tourism +493805,Industry,Industry +491022,Industry,Industry +473749,Transportation,Transportation +484788,Sports,Sports +477379,Sports,Sports +482393,Health,Health +475988,Health,Health +482393,Government Procurement,Government Procurement +475988,Government Procurement,Government Procurement +476990,Sports,Sports +473898,Health,Health +473896,Health,Health +473901,Health,Health +515070,Industry,Industry +514399,Industry,Industry +476812,Industry,Industry +538659,Industry,Industry +536892,Industry,Industry +536890,Industry,Industry +536474,Industry,Industry +536473,Industry,Industry +477949,Sports,Sports +477932,Sports,Sports +513196,Sports,Sports +486165,Sports,Sports +477954,Sports,Sports +477952,Tourism,Tourism +480766,Economic Development,Economic Development +480762,Economic Development,Economic Development +485807,Economic Development,Economic Development +480769,Economic Development,Economic Development +480768,Economic Development,Economic Development +474892,Agriculture,Agriculture +474891,Agriculture,Agriculture +474892,Sports,Sports +474891,Sports,Sports +474893,Small Business,Small Business +474892,Small Business,Small Business +478275,Health,Health +476067,Health,Health +482428,Health,Health +482426,Health,Health +482418,Health,Health +482416,Health,Health +482018,Government Procurement,Government Procurement +476022,Government Procurement,Government Procurement +476021,Government Procurement,Government Procurement +476020,Government Procurement,Government Procurement +481538,Health,Health +481536,Health,Health +484590,Health,Health +481551,Health,Health +481550,Health,Health +474574,Economic Development,Economic Development +474440,Economic Development,Economic Development +480669,Economic Development,Economic Development +479331,Economic Development,Economic Development +479126,Economic Development,Economic Development +478823,Economic Development,Economic Development +474574,Employment and Training,Employment and Training +474440,Employment and Training,Employment and Training +480669,Employment and Training,Employment and Training +479331,Employment and Training,Employment and Training +479126,Employment and Training,Employment and Training +478823,Employment and Training,Employment and Training +473998,Infrastructure,Infrastructure +478532,Health,Health +478523,Health,Health +508915,Health,Health +497214,Health,Health +497198,Health,Health +489494,Health,Health +478534,Pensions,Pensions +528412,Defence,Defence +528410,Defence,Defence +532951,Defence,Defence +478433,Agriculture,Agriculture +474148,Taxation and Finance,Taxation and Finance +522524,Economic Development,Economic Development +522522,Economic Development,Economic Development +511045,Economic Development,Economic Development +511041,Economic Development,Economic Development +511035,Economic Development,Economic Development +507930,Economic Development,Economic Development +507922,Economic Development,Economic Development +507920,Economic Development,Economic Development +505099,Economic Development,Economic Development +505095,Economic Development,Economic Development +505092,Economic Development,Economic Development +494313,Economic Development,Economic Development +493584,Economic Development,Economic Development +493581,Economic Development,Economic Development +493580,Economic Development,Economic Development +490911,Economic Development,Economic Development +486359,Economic Development,Economic Development +485899,Economic Development,Economic Development +485796,Economic Development,Economic Development +485607,Economic Development,Economic Development +485606,Economic Development,Economic Development +485554,Economic Development,Economic Development +484103,Economic Development,Economic Development +483987,Economic Development,Economic Development +483986,Economic Development,Economic Development +483985,Economic Development,Economic Development +483983,Economic Development,Economic Development +483981,Economic Development,Economic Development +482657,Economic Development,Economic Development +482656,Economic Development,Economic Development +480863,Economic Development,Economic Development +480781,Economic Development,Economic Development +480458,Economic Development,Economic Development +480363,Economic Development,Economic Development +480362,Economic Development,Economic Development +480360,Economic Development,Economic Development +480359,Economic Development,Economic Development +477748,Economic Development,Economic Development +507920,Infrastructure,Infrastructure +505099,Infrastructure,Infrastructure +538403,Infrastructure,Infrastructure +528387,Infrastructure,Infrastructure +507930,Infrastructure,Infrastructure +505099,Transportation,Transportation +538403,Transportation,Transportation +507930,Transportation,Transportation +507922,Transportation,Transportation +476122,Health,Health +477701,Infrastructure,Infrastructure +478510,Small Business,Small Business +478508,Small Business,Small Business +477567,Budget,Budget +477572,Housing,Housing +477561,Housing,Housing +488484,Housing,Housing +486515,Housing,Housing +483866,Housing,Housing +482141,Housing,Housing +482136,Housing,Housing +480877,Housing,Housing +480876,Housing,Housing +480875,Housing,Housing +476184,Defence,Defence +474844,Defence,Defence +479069,Defence,Defence +478700,Defence,Defence +478496,Defence,Defence +477220,Defence,Defence +476186,Defence,Defence +476184,Economic Development,Economic Development +474844,Economic Development,Economic Development +479069,Economic Development,Economic Development +478700,Economic Development,Economic Development +478496,Economic Development,Economic Development +476184,Government Procurement,Government Procurement +474844,Government Procurement,Government Procurement +482786,Government Procurement,Government Procurement +479069,Government Procurement,Government Procurement +478496,Government Procurement,Government Procurement +477221,Government Procurement,Government Procurement +477220,Government Procurement,Government Procurement +476252,Government Procurement,Government Procurement +476186,Government Procurement,Government Procurement +476184,Industry,Industry +474844,Industry,Industry +482786,Industry,Industry +479069,Industry,Industry +478700,Industry,Industry +477221,Industry,Industry +477220,Industry,Industry +476252,Industry,Industry +476186,Industry,Industry +476252,Regional Development,Regional Development +474844,Regional Development,Regional Development +482786,Regional Development,Regional Development +476252,Small Business,Small Business +474844,Small Business,Small Business +522388,Economic Development,Economic Development +514333,Economic Development,Economic Development +497003,Economic Development,Economic Development +496995,Economic Development,Economic Development +496990,Economic Development,Economic Development +493501,Economic Development,Economic Development +486269,Economic Development,Economic Development +483899,Economic Development,Economic Development +482889,Economic Development,Economic Development +482754,Economic Development,Economic Development +482738,Economic Development,Economic Development +482736,Economic Development,Economic Development +482735,Economic Development,Economic Development +476172,Economic Development,Economic Development +474156,Economic Development,Economic Development +474102,Economic Development,Economic Development +539883,Economic Development,Economic Development +535035,Economic Development,Economic Development +535034,Economic Development,Economic Development +529280,Economic Development,Economic Development +529254,Economic Development,Economic Development +529238,Economic Development,Economic Development +526916,Economic Development,Economic Development +526915,Economic Development,Economic Development +526909,Economic Development,Economic Development +529248,Economic Development,Economic Development +529226,Economic Development,Economic Development +526912,Economic Development,Economic Development +526907,Economic Development,Economic Development +525249,Economic Development,Economic Development +522391,Economic Development,Economic Development +514331,Economic Development,Economic Development +497001,Economic Development,Economic Development +496993,Economic Development,Economic Development +496987,Economic Development,Economic Development +493496,Economic Development,Economic Development +486266,Economic Development,Economic Development +483896,Economic Development,Economic Development +482887,Economic Development,Economic Development +482749,Economic Development,Economic Development +482731,Economic Development,Economic Development +482730,Economic Development,Economic Development +482729,Economic Development,Economic Development +476170,Economic Development,Economic Development +474154,Economic Development,Economic Development +474100,Economic Development,Economic Development +539877,Economic Development,Economic Development +535032,Economic Development,Economic Development +529271,Economic Development,Economic Development +526911,Economic Development,Economic Development +525252,Economic Development,Economic Development +522390,Economic Development,Economic Development +514334,Economic Development,Economic Development +497004,Economic Development,Economic Development +496996,Economic Development,Economic Development +496991,Economic Development,Economic Development +493502,Economic Development,Economic Development +486270,Economic Development,Economic Development +483900,Economic Development,Economic Development +482890,Economic Development,Economic Development +482755,Economic Development,Economic Development +482743,Economic Development,Economic Development +482741,Economic Development,Economic Development +482740,Economic Development,Economic Development +476173,Economic Development,Economic Development +474157,Economic Development,Economic Development +474103,Economic Development,Economic Development +539884,Economic Development,Economic Development +535036,Economic Development,Economic Development +529282,Economic Development,Economic Development +529267,Economic Development,Economic Development +529257,Economic Development,Economic Development +529242,Economic Development,Economic Development +535033,Economic Development,Economic Development +529275,Economic Development,Economic Development +529263,Economic Development,Economic Development +529251,Economic Development,Economic Development +529230,Economic Development,Economic Development +526913,Economic Development,Economic Development +526908,Economic Development,Economic Development +525250,Economic Development,Economic Development +522372,Economic Development,Economic Development +514332,Economic Development,Economic Development +497002,Economic Development,Economic Development +496994,Economic Development,Economic Development +496989,Economic Development,Economic Development +493500,Economic Development,Economic Development +486268,Economic Development,Economic Development +483898,Economic Development,Economic Development +482888,Economic Development,Economic Development +482753,Economic Development,Economic Development +482734,Economic Development,Economic Development +482733,Economic Development,Economic Development +482732,Economic Development,Economic Development +476171,Economic Development,Economic Development +474155,Economic Development,Economic Development +474153,Economic Development,Economic Development +474101,Economic Development,Economic Development +484128,Taxation and Finance,Taxation and Finance +484125,Taxation and Finance,Taxation and Finance +485524,Agriculture,Agriculture +478341,Agriculture,Agriculture +477956,Economic Development,Economic Development +477947,Economic Development,Economic Development +491488,Economic Development,Economic Development +487867,Economic Development,Economic Development +477947,Industry,Industry +477947,Mining,Mining +477956,Environment,Environment +477947,Environment,Environment +491488,Environment,Environment +475671,Government Procurement,Government Procurement +475669,Government Procurement,Government Procurement +480659,Government Procurement,Government Procurement +480657,Government Procurement,Government Procurement +480656,Government Procurement,Government Procurement +480655,Government Procurement,Government Procurement +480352,Government Procurement,Government Procurement +478745,Government Procurement,Government Procurement +475671,Health,Health +475669,Health,Health +474198,Health,Health +511877,Health,Health +496842,Health,Health +494529,Health,Health +488526,Health,Health +486469,Health,Health +485741,Health,Health +480659,Health,Health +480657,Health,Health +480656,Health,Health +480655,Health,Health +480352,Health,Health +478745,Health,Health +474198,Industry,Industry +511877,Industry,Industry +488526,Industry,Industry +486469,Industry,Industry +485741,Industry,Industry +480659,Industry,Industry +480657,Industry,Industry +480656,Industry,Industry +480655,Industry,Industry +480352,Industry,Industry +477086,Industry,Industry +475671,Industry,Industry +496842,Research and Development,Research and Development +477700,Economic Development,Economic Development +475752,Economic Development,Economic Development +487429,Economic Development,Economic Development +487416,Economic Development,Economic Development +477700,Financial Institutions,Financial Institutions +475752,Financial Institutions,Financial Institutions +487429,Financial Institutions,Financial Institutions +487416,Financial Institutions,Financial Institutions +477724,Financial Institutions,Financial Institutions +480174,Industry,Industry +477700,Industry,Industry +477700,International Trade,International Trade +475752,International Trade,International Trade +477700,Mining,Mining +475752,Mining,Mining +487429,Mining,Mining +487416,Mining,Mining +480174,Mining,Mining +477724,Mining,Mining +477706,Regional Development,Regional Development +477700,Regional Development,Regional Development +487429,Regional Development,Regional Development +477706,Taxation and Finance,Taxation and Finance +475752,Taxation and Finance,Taxation and Finance +487429,Taxation and Finance,Taxation and Finance +493957,Health,Health +489811,Health,Health +488620,Health,Health +488551,Health,Health +482861,Health,Health +481822,Health,Health +476248,Health,Health +476247,Health,Health +476205,Health,Health +475664,Health,Health +474419,Health,Health +498930,Health,Health +476205,Industry,Industry +475664,Industry,Industry +503219,Industry,Industry +498930,Industry,Industry +494144,Industry,Industry +493957,Industry,Industry +488551,Industry,Industry +482861,Industry,Industry +481822,Industry,Industry +476248,Industry,Industry +489811,Government Procurement,Government Procurement +488620,Government Procurement,Government Procurement +481822,Government Procurement,Government Procurement +476205,Government Procurement,Government Procurement +488551,Research and Development,Research and Development +474419,Research and Development,Research and Development +503219,Research and Development,Research and Development +498930,Research and Development,Research and Development +494144,Research and Development,Research and Development +489811,Research and Development,Research and Development +511700,Industry,Industry +489810,Health,Health +488621,Health,Health +511876,Health,Health +489810,Research and Development,Research and Development +488621,Research and Development,Research and Development +511876,Research and Development,Research and Development +489810,Government Procurement,Government Procurement +476206,Health,Health +476208,Industry,Industry +476206,Industry,Industry +476206,Government Procurement,Government Procurement +474677,Taxation and Finance,Taxation and Finance +475017,Health,Health +475016,Health,Health +475017,Religion,Religion +518683,Religion,Religion +500414,Religion,Religion +479862,Religion,Religion +484453,Sports,Sports +480740,Sports,Sports +500143,Sports,Sports +489996,Small Business,Small Business +485583,Small Business,Small Business +478391,Employment and Training,Employment and Training +476460,Employment and Training,Employment and Training +478391,Government Procurement,Government Procurement +476460,Government Procurement,Government Procurement +478391,Health,Health +476460,Health,Health +478391,Industry,Industry +476460,Industry,Industry +478391,Intellectual Property,Intellectual Property +476460,Intellectual Property,Intellectual Property +478391,Regional Development,Regional Development +476460,Regional Development,Regional Development +478391,Research and Development,Research and Development +478391,Small Business,Small Business +476460,Small Business,Small Business +474138,Immigration,Immigration +502231,Climate,Climate +502223,Climate,Climate +482442,Climate,Climate +477438,Climate,Climate +477433,Climate,Climate +477428,Climate,Climate +477426,Climate,Climate +477421,Climate,Climate +540005,Climate,Climate +532008,Climate,Climate +512722,Climate,Climate +478030,Economic Development,Economic Development +476355,Economic Development,Economic Development +499966,Economic Development,Economic Development +485605,Economic Development,Economic Development +478030,Employment and Training,Employment and Training +476355,Industry,Industry +485605,Industry,Industry +476355,Intellectual Property,Intellectual Property +478585,Regional Development,Regional Development +478030,Regional Development,Regional Development +478030,Research and Development,Research and Development +476355,Research and Development,Research and Development +499966,Research and Development,Research and Development +476355,Small Business,Small Business +499966,Small Business,Small Business +478585,Small Business,Small Business +482235,Transportation,Transportation +527656,Economic Development,Economic Development +514392,Economic Development,Economic Development +510859,Economic Development,Economic Development +509572,Economic Development,Economic Development +509069,Economic Development,Economic Development +509067,Economic Development,Economic Development +509066,Economic Development,Economic Development +500232,Economic Development,Economic Development +500231,Economic Development,Economic Development +499258,Economic Development,Economic Development +496304,Economic Development,Economic Development +492124,Economic Development,Economic Development +490207,Economic Development,Economic Development +490205,Economic Development,Economic Development +488550,Economic Development,Economic Development +488548,Economic Development,Economic Development +488546,Economic Development,Economic Development +488545,Economic Development,Economic Development +486463,Economic Development,Economic Development +486462,Economic Development,Economic Development +486456,Economic Development,Economic Development +485479,Economic Development,Economic Development +485478,Economic Development,Economic Development +480929,Economic Development,Economic Development +480928,Economic Development,Economic Development +480927,Economic Development,Economic Development +479212,Economic Development,Economic Development +478492,Economic Development,Economic Development +477112,Economic Development,Economic Development +477110,Economic Development,Economic Development +476691,Economic Development,Economic Development +476445,Economic Development,Economic Development +476442,Economic Development,Economic Development +528093,Economic Development,Economic Development +476692,Health,Health +474429,Health,Health +527663,Health,Health +527656,Health,Health +526356,Health,Health +526349,Health,Health +526345,Health,Health +526340,Health,Health +526323,Health,Health +516235,Health,Health +516234,Health,Health +516165,Health,Health +516162,Health,Health +515137,Health,Health +514971,Health,Health +514392,Health,Health +513509,Health,Health +512280,Health,Health +512279,Health,Health +510859,Health,Health +509572,Health,Health +509069,Health,Health +509067,Health,Health +509066,Health,Health +506971,Health,Health +505003,Health,Health +500232,Health,Health +500231,Health,Health +499258,Health,Health +496304,Health,Health +496303,Health,Health +492124,Health,Health +488550,Health,Health +488548,Health,Health +488546,Health,Health +488545,Health,Health +486463,Health,Health +486462,Health,Health +486456,Health,Health +485479,Health,Health +485478,Health,Health +480929,Health,Health +480928,Health,Health +480927,Health,Health +479212,Health,Health +474429,Industry,Industry +473661,Economic Development,Economic Development +502816,Industry,Industry +473750,Transportation,Transportation +473839,Government Procurement,Government Procurement +473852,Forestry,Forestry +477379,Tourism,Tourism +494693,Sports,Sports +476993,Sports,Sports +476605,Financial Institutions,Financial Institutions +476605,Industry,Industry +476605,Consumer Issues,Consumer Issues +488144,Health,Health +488144,Government Procurement,Government Procurement +476887,Health,Health +473871,Budget,Budget +479439,Sports,Sports +473899,Health,Health +473922,Industry,Industry +535975,Industry,Industry +476791,Industry,Industry +476802,Industry,Industry +479501,Health,Health +477952,Sports,Sports +513196,Tourism,Tourism +480767,Economic Development,Economic Development +476353,Industry,Industry +476353,International Trade,International Trade +476353,Security,Security +476353,Transportation,Transportation +474893,Agriculture,Agriculture +474893,Sports,Sports +474891,Small Business,Small Business +476014,Government Procurement,Government Procurement +538865,Economic Development,Economic Development +478275,Employment and Training,Employment and Training +482415,Health,Health +482029,Government Procurement,Government Procurement +485368,Government Procurement,Government Procurement +474811,Small Business,Small Business +484590,Economic Development,Economic Development +481548,Health,Health +484590,Research and Development,Research and Development +475793,Economic Development,Economic Development +475793,Employment and Training,Employment and Training +478738,Infrastructure,Infrastructure +478534,Health,Health +497198,Pensions,Pensions +528414,Defence,Defence +494444,Agriculture,Agriculture +481707,Taxation and Finance,Taxation and Finance +528387,Economic Development,Economic Development +507922,Infrastructure,Infrastructure +507920,Transportation,Transportation +474023,Health,Health +476197,Health,Health +477701,Economic Development,Economic Development +477701,Labour,Labour +477701,Employment and Training,Employment and Training +479493,Infrastructure,Infrastructure +477701,Housing,Housing +488943,Industry,Industry +488943,Small Business,Small Business +474843,Health,Health +504121,Budget,Budget +490318,Health,Health +480874,Housing,Housing +476185,Defence,Defence +477220,Economic Development,Economic Development +476185,Government Procurement,Government Procurement +476185,Industry,Industry +478496,Regional Development,Regional Development +478496,Small Business,Small Business +525251,Economic Development,Economic Development +529260,Economic Development,Economic Development +526917,Economic Development,Economic Development +539881,Economic Development,Economic Development +475140,Municipalities,Municipalities +475140,Infrastructure,Infrastructure +474077,Small Business,Small Business +474077,Taxation and Finance,Taxation and Finance +484130,Taxation and Finance,Taxation and Finance +476828,Transportation,Transportation +476828,Health,Health +476828,Government Procurement,Government Procurement +476828,Small Business,Small Business +488060,Agriculture,Agriculture +488060,Economic Development,Economic Development +506409,Economic Development,Economic Development +477646,Government Procurement,Government Procurement +474159,Industry,Industry +486536,Economic Development,Economic Development +486536,Industry,Industry +477956,Mining,Mining +487867,Environment,Environment +477086,Government Procurement,Government Procurement +477086,Health,Health +475669,Industry,Industry +511877,Research and Development,Research and Development +475752,Climate,Climate +480174,Economic Development,Economic Development +477706,Environment,Environment +477706,Financial Institutions,Financial Institutions +487416,Industry,Industry +487416,International Trade,International Trade +477706,Mining,Mining +480174,Regional Development,Regional Development +477724,Taxation and Finance,Taxation and Finance +494144,Health,Health +476247,Industry,Industry +475664,Government Procurement,Government Procurement +488620,Research and Development,Research and Development +511876,Industry,Industry +511700,Health,Health +511700,Research and Development,Research and Development +488621,Government Procurement,Government Procurement +476208,Health,Health +493427,Industry,Industry +476208,Government Procurement,Government Procurement +483153,Taxation and Finance,Taxation and Finance +474128,Employment and Training,Employment and Training +474130,Consumer Issues,Consumer Issues +474130,Small Business,Small Business +475021,Health,Health +507448,International Development,International Development +475021,International Relations,International Relations +475021,Religion,Religion +500266,Environment,Environment +485560,Industry,Industry +474137,Immigration,Immigration +491935,Sports,Sports +493892,Small Business,Small Business +483421,Regional Development,Regional Development +479244,Employment and Training,Employment and Training +479244,Government Procurement,Government Procurement +479244,Health,Health +479244,Industry,Industry +479244,Intellectual Property,Intellectual Property +479244,Regional Development,Regional Development +479244,Research and Development,Research and Development +479244,Small Business,Small Business +500730,Immigration,Immigration +474146,Economic Development,Economic Development +474146,Industry,Industry +505306,Climate,Climate +478585,Economic Development,Economic Development +476355,Employment and Training,Employment and Training +478030,Industry,Industry +478030,Intellectual Property,Intellectual Property +485605,Regional Development,Regional Development +478585,Research and Development,Research and Development +478030,Small Business,Small Business +482235,Economic Development,Economic Development +482235,Industry,Industry +482235,Infrastructure,Infrastructure +482235,International Trade,International Trade +482235,Regional Development,Regional Development +506462,Transportation,Transportation +527663,Economic Development,Economic Development +476693,Health,Health +476442,Industry,Industry +496303,Regional Development,Regional Development +528093,Tourism,Tourism +530128,Government Procurement,Government Procurement +530128,Industry,Industry +501370,Tourism,Tourism +483645,Sports,Sports +487034,Government Procurement,Government Procurement +480260,Government Procurement,Government Procurement +480260,Health,Health +474936,Economic Development,Economic Development +479498,Health,Health +479496,Government Procurement,Government Procurement +479557,Research and Development,Research and Development +478958,Agriculture,Agriculture +479302,Health,Health +479174,International Trade,International Trade +479481,Housing,Housing +474340,Economic Development,Economic Development +474340,Sports,Sports +474353,Economic Development,Economic Development +474353,Health,Health +474353,Industry,Industry +479027,Industry,Industry +479030,Health,Health +479029,International Relations,International Relations +476015,Consumer Issues,Consumer Issues +479027,International Trade,International Trade +478842,Agriculture,Agriculture +480592,Official Languages,Official Languages +500414,Budget,Budget +474385,Industry,Industry +474381,Intellectual Property,Intellectual Property +482007,Government Procurement,Government Procurement +477229,Health,Health +480856,Energy,Energy +480857,Environment,Environment +480855,Government Procurement,Government Procurement +480857,Infrastructure,Infrastructure +511495,Defence,Defence +507636,Economic Development,Economic Development +513127,Industry,Industry +487847,International Relations,International Relations +491582,International Trade,International Trade +484390,Regional Development,Regional Development +484390,Research and Development,Research and Development +513116,Transportation,Transportation +477645,Government Procurement,Government Procurement +523779,Small Business,Small Business +488552,Small Business,Small Business +476124,Sports,Sports +478272,Infrastructure,Infrastructure +478272,Energy,Energy +513551,Budget,Budget +496976,Economic Development,Economic Development +481472,Regional Development,Regional Development +481460,Small Business,Small Business +481471,Taxation and Finance,Taxation and Finance +474515,Taxation and Finance,Taxation and Finance +474528,Fisheries,Fisheries +474533,Research and Development,Research and Development +474656,Research and Development,Research and Development +480190,Health,Health +480190,Employment and Training,Employment and Training +480190,Economic Development,Economic Development +480930,Economic Development,Economic Development +493315,Transportation,Transportation +488625,Health,Health +493959,Budget,Budget +526356,Industry,Industry +526349,Industry,Industry +526345,Industry,Industry +526340,Industry,Industry +526323,Industry,Industry +516235,Industry,Industry +516234,Industry,Industry +516165,Industry,Industry +516162,Industry,Industry +515137,Industry,Industry +514971,Industry,Industry +514392,Industry,Industry +513509,Industry,Industry +512280,Industry,Industry +512279,Industry,Industry +509069,Industry,Industry +509067,Industry,Industry +509066,Industry,Industry +506971,Industry,Industry +505003,Industry,Industry +500232,Industry,Industry +500231,Industry,Industry +499258,Industry,Industry +478492,Industry,Industry +477112,Industry,Industry +477110,Industry,Industry +476693,Industry,Industry +476692,Industry,Industry +476691,Industry,Industry +476445,Industry,Industry +527663,Tourism,Tourism +516621,Tourism,Tourism +527082,Government Procurement,Government Procurement +527082,Industry,Industry +477865,Sports,Sports +474442,Sports,Sports +501370,Sports,Sports +482225,Government Procurement,Government Procurement +480958,Government Procurement,Government Procurement +474934,Economic Development,Economic Development +479496,Health,Health +477513,Health,Health +479503,Health,Health +477513,Government Procurement,Government Procurement +477491,Government Procurement,Government Procurement +481919,Government Procurement,Government Procurement +479503,Government Procurement,Government Procurement +479498,Government Procurement,Government Procurement +478975,Research and Development,Research and Development +506356,Research and Development,Research and Development +477140,Agriculture,Agriculture +479302,Agriculture,Agriculture +479174,Agriculture,Agriculture +478958,International Trade,International Trade +477140,International Trade,International Trade +479302,International Trade,International Trade +477302,Housing,Housing +477114,Industry,Industry +485419,Industry,Industry +479028,Health,Health +476015,Health,Health +485419,Health,Health +479300,Health,Health +478842,International Trade,International Trade +477114,International Trade,International Trade +485419,International Trade,International Trade +479300,International Trade,International Trade +479030,International Trade,International Trade +479029,International Trade,International Trade +479028,International Trade,International Trade +477114,Agriculture,Agriculture +476015,Agriculture,Agriculture +485419,Agriculture,Agriculture +479030,Agriculture,Agriculture +479029,Agriculture,Agriculture +479028,Agriculture,Agriculture +479027,Agriculture,Agriculture +474382,Industry,Industry +474381,Industry,Industry +481858,Industry,Industry +481852,Industry,Industry +528167,Intellectual Property,Intellectual Property +525319,Intellectual Property,Intellectual Property +498025,Intellectual Property,Intellectual Property +498022,Intellectual Property,Intellectual Property +492935,Intellectual Property,Intellectual Property +484799,Intellectual Property,Intellectual Property +484794,Intellectual Property,Intellectual Property +484792,Intellectual Property,Intellectual Property +484783,Intellectual Property,Intellectual Property +481858,Intellectual Property,Intellectual Property +481852,Intellectual Property,Intellectual Property +474385,Intellectual Property,Intellectual Property +474383,Intellectual Property,Intellectual Property +474382,Intellectual Property,Intellectual Property +485361,Government Procurement,Government Procurement +485359,Government Procurement,Government Procurement +482536,Government Procurement,Government Procurement +482535,Government Procurement,Government Procurement +482534,Government Procurement,Government Procurement +482533,Government Procurement,Government Procurement +482532,Government Procurement,Government Procurement +482531,Government Procurement,Government Procurement +482530,Government Procurement,Government Procurement +482011,Government Procurement,Government Procurement +482009,Government Procurement,Government Procurement +482008,Government Procurement,Government Procurement +477228,Health,Health +477227,Health,Health +477234,Health,Health +477233,Health,Health +477232,Health,Health +477231,Health,Health +477230,Health,Health +480855,Energy,Energy +540491,Energy,Energy +540490,Energy,Energy +501775,Energy,Energy +501772,Energy,Energy +501771,Energy,Energy +493810,Energy,Energy +493809,Energy,Energy +480862,Energy,Energy +480861,Energy,Energy +480860,Energy,Energy +480859,Energy,Energy +480858,Energy,Energy +480857,Energy,Energy +480856,Environment,Environment +480855,Environment,Environment +540491,Environment,Environment +501775,Environment,Environment +501772,Environment,Environment +501771,Environment,Environment +493810,Environment,Environment +480862,Environment,Environment +480861,Environment,Environment +480860,Environment,Environment +480859,Environment,Environment +480858,Environment,Environment +493810,Government Procurement,Government Procurement +493809,Government Procurement,Government Procurement +480862,Government Procurement,Government Procurement +480861,Government Procurement,Government Procurement +480860,Government Procurement,Government Procurement +480859,Government Procurement,Government Procurement +480858,Government Procurement,Government Procurement +480857,Government Procurement,Government Procurement +480856,Government Procurement,Government Procurement +480856,Infrastructure,Infrastructure +480855,Infrastructure,Infrastructure +540491,Infrastructure,Infrastructure +540490,Infrastructure,Infrastructure +501775,Infrastructure,Infrastructure +501772,Infrastructure,Infrastructure +501771,Infrastructure,Infrastructure +493810,Infrastructure,Infrastructure +493809,Infrastructure,Infrastructure +480862,Infrastructure,Infrastructure +480861,Infrastructure,Infrastructure +480860,Infrastructure,Infrastructure +480859,Infrastructure,Infrastructure +480858,Infrastructure,Infrastructure +503309,Economic Development,Economic Development +493282,Economic Development,Economic Development +491582,Economic Development,Economic Development +491579,Economic Development,Economic Development +491574,Economic Development,Economic Development +491563,Economic Development,Economic Development +487855,Economic Development,Economic Development +487853,Economic Development,Economic Development +487851,Economic Development,Economic Development +487849,Economic Development,Economic Development +487847,Economic Development,Economic Development +487844,Economic Development,Economic Development +487843,Economic Development,Economic Development +487841,Economic Development,Economic Development +487837,Economic Development,Economic Development +487829,Economic Development,Economic Development +487825,Economic Development,Economic Development +484400,Economic Development,Economic Development +484390,Economic Development,Economic Development +484339,Economic Development,Economic Development +484289,Economic Development,Economic Development +514052,Economic Development,Economic Development +514051,Economic Development,Economic Development +513146,Economic Development,Economic Development +513145,Economic Development,Economic Development +513144,Economic Development,Economic Development +513143,Economic Development,Economic Development +513142,Economic Development,Economic Development +513138,Economic Development,Economic Development +513136,Economic Development,Economic Development +513134,Economic Development,Economic Development +513132,Economic Development,Economic Development +513131,Economic Development,Economic Development +513129,Economic Development,Economic Development +513121,Economic Development,Economic Development +511493,Economic Development,Economic Development +511490,Economic Development,Economic Development +511486,Economic Development,Economic Development +507670,Economic Development,Economic Development +507665,Economic Development,Economic Development +507656,Economic Development,Economic Development +513125,Industry,Industry +513121,Industry,Industry +513119,Industry,Industry +513116,Industry,Industry +505750,Industry,Industry +505747,Industry,Industry +505745,Industry,Industry +503309,Industry,Industry +493282,Industry,Industry +493281,Industry,Industry +491582,Industry,Industry +491579,Industry,Industry +491574,Industry,Industry +491563,Industry,Industry +487855,Industry,Industry +487853,Industry,Industry +487851,Industry,Industry +487849,Industry,Industry +487847,Industry,Industry +487844,Industry,Industry +487843,Industry,Industry +487841,Industry,Industry +487837,Industry,Industry +487825,Industry,Industry +484400,Industry,Industry +484390,Industry,Industry +484339,Industry,Industry +484289,Industry,Industry +514052,Industry,Industry +514051,Industry,Industry +513146,Industry,Industry +513145,Industry,Industry +513144,Industry,Industry +513143,Industry,Industry +513142,Industry,Industry +513138,Industry,Industry +513136,Industry,Industry +513134,Industry,Industry +513132,Industry,Industry +513131,Industry,Industry +513129,Industry,Industry +487829,International Relations,International Relations +487825,International Relations,International Relations +514052,International Relations,International Relations +514051,International Relations,International Relations +513146,International Relations,International Relations +513145,International Relations,International Relations +513144,International Relations,International Relations +513143,International Relations,International Relations +513142,International Relations,International Relations +513138,International Relations,International Relations +513136,International Relations,International Relations +513134,International Relations,International Relations +513132,International Relations,International Relations +513131,International Relations,International Relations +513129,International Relations,International Relations +513127,International Relations,International Relations +513125,International Relations,International Relations +513121,International Relations,International Relations +513119,International Relations,International Relations +511495,International Relations,International Relations +511493,International Relations,International Relations +511490,International Relations,International Relations +511486,International Relations,International Relations +511485,International Relations,International Relations +507670,International Relations,International Relations +507665,International Relations,International Relations +507656,International Relations,International Relations +507636,International Relations,International Relations +505750,International Relations,International Relations +505745,International Relations,International Relations +503309,International Relations,International Relations +487855,International Relations,International Relations +487853,International Relations,International Relations +487851,International Relations,International Relations +487849,International Relations,International Relations +491579,International Trade,International Trade +491574,International Trade,International Trade +487855,International Trade,International Trade +487853,International Trade,International Trade +487851,International Trade,International Trade +487849,International Trade,International Trade +487847,International Trade,International Trade +487843,International Trade,International Trade +487841,International Trade,International Trade +487829,International Trade,International Trade +487825,International Trade,International Trade +514052,International Trade,International Trade +514051,International Trade,International Trade +513146,International Trade,International Trade +513145,International Trade,International Trade +513144,International Trade,International Trade +513143,International Trade,International Trade +513142,International Trade,International Trade +513138,International Trade,International Trade +513136,International Trade,International Trade +513134,International Trade,International Trade +513132,International Trade,International Trade +513131,International Trade,International Trade +513129,International Trade,International Trade +513127,International Trade,International Trade +513125,International Trade,International Trade +513121,International Trade,International Trade +513119,International Trade,International Trade +513116,International Trade,International Trade +511495,International Trade,International Trade +511493,International Trade,International Trade +511490,International Trade,International Trade +511486,International Trade,International Trade +511485,International Trade,International Trade +507670,International Trade,International Trade +507665,International Trade,International Trade +505747,International Trade,International Trade +503309,International Trade,International Trade +484339,Regional Development,Regional Development +484289,Regional Development,Regional Development +493282,Regional Development,Regional Development +493281,Regional Development,Regional Development +491582,Regional Development,Regional Development +491579,Regional Development,Regional Development +491574,Regional Development,Regional Development +491563,Regional Development,Regional Development +484400,Regional Development,Regional Development +484339,Research and Development,Research and Development +484289,Research and Development,Research and Development +493282,Research and Development,Research and Development +493281,Research and Development,Research and Development +491579,Research and Development,Research and Development +491574,Research and Development,Research and Development +491563,Research and Development,Research and Development +487853,Research and Development,Research and Development +487844,Research and Development,Research and Development +487843,Research and Development,Research and Development +487841,Research and Development,Research and Development +487837,Research and Development,Research and Development +484400,Research and Development,Research and Development +493282,Transportation,Transportation +493281,Transportation,Transportation +491563,Transportation,Transportation +484400,Transportation,Transportation +484339,Transportation,Transportation +484289,Transportation,Transportation +513146,Transportation,Transportation +513145,Transportation,Transportation +513144,Transportation,Transportation +513143,Transportation,Transportation +513142,Transportation,Transportation +513138,Transportation,Transportation +513136,Transportation,Transportation +513134,Transportation,Transportation +513132,Transportation,Transportation +513131,Transportation,Transportation +513129,Transportation,Transportation +513127,Transportation,Transportation +513125,Transportation,Transportation +513121,Transportation,Transportation +513119,Transportation,Transportation +521162,Small Business,Small Business +481472,Budget,Budget +481471,Budget,Budget +513553,Budget,Budget +513552,Budget,Budget +481472,Economic Development,Economic Development +481453,Economic Development,Economic Development +481460,Regional Development,Regional Development +481457,Regional Development,Regional Development +481457,Small Business,Small Business +481453,Small Business,Small Business +513553,Small Business,Small Business +513551,Small Business,Small Business +496976,Small Business,Small Business +481472,Small Business,Small Business +481471,Small Business,Small Business +516395,Taxation and Finance,Taxation and Finance +516394,Taxation and Finance,Taxation and Finance +506521,Taxation and Finance,Taxation and Finance +503617,Taxation and Finance,Taxation and Finance +503615,Taxation and Finance,Taxation and Finance +503614,Taxation and Finance,Taxation and Finance +500889,Taxation and Finance,Taxation and Finance +500886,Taxation and Finance,Taxation and Finance +497396,Taxation and Finance,Taxation and Finance +497394,Taxation and Finance,Taxation and Finance +497393,Taxation and Finance,Taxation and Finance +497392,Taxation and Finance,Taxation and Finance +494702,Taxation and Finance,Taxation and Finance +494338,Taxation and Finance,Taxation and Finance +494337,Taxation and Finance,Taxation and Finance +494335,Taxation and Finance,Taxation and Finance +494334,Taxation and Finance,Taxation and Finance +492296,Taxation and Finance,Taxation and Finance +492295,Taxation and Finance,Taxation and Finance +492292,Taxation and Finance,Taxation and Finance +492291,Taxation and Finance,Taxation and Finance +492287,Taxation and Finance,Taxation and Finance +490931,Taxation and Finance,Taxation and Finance +490930,Taxation and Finance,Taxation and Finance +490929,Taxation and Finance,Taxation and Finance +490928,Taxation and Finance,Taxation and Finance +490927,Taxation and Finance,Taxation and Finance +490926,Taxation and Finance,Taxation and Finance +490925,Taxation and Finance,Taxation and Finance +490923,Taxation and Finance,Taxation and Finance +490921,Taxation and Finance,Taxation and Finance +490920,Taxation and Finance,Taxation and Finance +490919,Taxation and Finance,Taxation and Finance +486721,Taxation and Finance,Taxation and Finance +486720,Taxation and Finance,Taxation and Finance +486718,Taxation and Finance,Taxation and Finance +486717,Taxation and Finance,Taxation and Finance +486714,Taxation and Finance,Taxation and Finance +486712,Taxation and Finance,Taxation and Finance +486709,Taxation and Finance,Taxation and Finance +486707,Taxation and Finance,Taxation and Finance +483412,Taxation and Finance,Taxation and Finance +483411,Taxation and Finance,Taxation and Finance +483410,Taxation and Finance,Taxation and Finance +483408,Taxation and Finance,Taxation and Finance +483399,Taxation and Finance,Taxation and Finance +481244,Taxation and Finance,Taxation and Finance +481242,Taxation and Finance,Taxation and Finance +481241,Taxation and Finance,Taxation and Finance +481238,Taxation and Finance,Taxation and Finance +481237,Taxation and Finance,Taxation and Finance +481236,Taxation and Finance,Taxation and Finance +481235,Taxation and Finance,Taxation and Finance +479414,Taxation and Finance,Taxation and Finance +479413,Taxation and Finance,Taxation and Finance +479412,Taxation and Finance,Taxation and Finance +477325,Taxation and Finance,Taxation and Finance +477316,Taxation and Finance,Taxation and Finance +477314,Taxation and Finance,Taxation and Finance +477313,Taxation and Finance,Taxation and Finance +477310,Taxation and Finance,Taxation and Finance +477304,Taxation and Finance,Taxation and Finance +477296,Taxation and Finance,Taxation and Finance +477295,Taxation and Finance,Taxation and Finance +505111,Research and Development,Research and Development +502777,Research and Development,Research and Development +480189,Health,Health +477734,Health,Health +480189,Employment and Training,Employment and Training +477734,Employment and Training,Employment and Training +480189,Economic Development,Economic Development +477734,Economic Development,Economic Development +493504,Budget,Budget +492475,Budget,Budget +511926,Budget,Budget +511874,Budget,Budget +511736,Budget,Budget +511637,Budget,Budget +503142,Budget,Budget +503140,Budget,Budget +501491,Budget,Budget +500571,Budget,Budget +499995,Budget,Budget +497859,Budget,Budget +497068,Budget,Budget +496694,Budget,Budget +494470,Budget,Budget +494320,Budget,Budget +494141,Budget,Budget +494128,Budget,Budget +494094,Budget,Budget +494010,Budget,Budget +483389,Housing,Housing +483020,Housing,Housing +512522,Housing,Housing +512018,Housing,Housing +511926,Housing,Housing +511874,Housing,Housing +511736,Housing,Housing +511679,Housing,Housing +511637,Housing,Housing +509741,Housing,Housing +506980,Housing,Housing +503142,Housing,Housing +503140,Housing,Housing +501491,Housing,Housing +500571,Housing,Housing +499995,Housing,Housing +497859,Housing,Housing +497068,Housing,Housing +496694,Housing,Housing +494470,Housing,Housing +494320,Housing,Housing +494141,Housing,Housing +494128,Housing,Housing +494094,Housing,Housing +494010,Housing,Housing +493959,Housing,Housing +492475,Housing,Housing +491882,Housing,Housing +489413,Housing,Housing +483389,Infrastructure,Infrastructure +483020,Infrastructure,Infrastructure +512522,Infrastructure,Infrastructure +512018,Infrastructure,Infrastructure +511926,Infrastructure,Infrastructure +511874,Infrastructure,Infrastructure +511736,Infrastructure,Infrastructure +511679,Infrastructure,Infrastructure +511637,Infrastructure,Infrastructure +509741,Infrastructure,Infrastructure +506980,Infrastructure,Infrastructure +503142,Infrastructure,Infrastructure +503140,Infrastructure,Infrastructure +501491,Infrastructure,Infrastructure +500571,Infrastructure,Infrastructure +499995,Infrastructure,Infrastructure +497859,Infrastructure,Infrastructure +497068,Infrastructure,Infrastructure +496694,Infrastructure,Infrastructure +494470,Infrastructure,Infrastructure +494320,Infrastructure,Infrastructure +494141,Infrastructure,Infrastructure +494128,Infrastructure,Infrastructure +494094,Infrastructure,Infrastructure +494010,Infrastructure,Infrastructure +493959,Infrastructure,Infrastructure +493504,Infrastructure,Infrastructure +492475,Infrastructure,Infrastructure +491882,Infrastructure,Infrastructure +489413,Infrastructure,Infrastructure +489413,Health,Health +483389,Health,Health +483020,Health,Health +512522,Health,Health +512018,Health,Health +511926,Health,Health +511874,Health,Health +511736,Health,Health +511679,Health,Health +511637,Health,Health +509741,Health,Health +506980,Health,Health +503142,Health,Health +503140,Health,Health +501491,Health,Health +500571,Health,Health +499995,Health,Health +497859,Health,Health +497068,Health,Health +496694,Health,Health +494470,Health,Health +494320,Health,Health +494141,Health,Health +494128,Health,Health +494094,Health,Health +494010,Health,Health +493959,Health,Health +493504,Health,Health +492475,Health,Health +479808,Environment,Environment +477327,Environment,Environment +479808,Mining,Mining +477327,Mining,Mining +508498,Health,Health +531151,Energy,Energy +526959,Energy,Energy +484942,Energy,Energy +484936,Energy,Energy +482425,Energy,Energy +540776,Energy,Energy +537202,Energy,Energy +537198,Energy,Energy +537193,Energy,Energy +537192,Energy,Energy +532114,Energy,Energy +531163,Energy,Energy +531161,Energy,Energy +531160,Energy,Energy +531158,Energy,Energy +531157,Energy,Energy +531156,Energy,Energy +531154,Energy,Energy +481545,Infrastructure,Infrastructure +531156,Infrastructure,Infrastructure +484936,Infrastructure,Infrastructure +484936,Mining,Mining +502916,Agriculture,Agriculture +478706,Agriculture,Agriculture +513389,Agriculture,Agriculture +491731,Climate,Climate +488736,Climate,Climate +495237,Climate,Climate +540066,Infrastructure,Infrastructure +528936,Infrastructure,Infrastructure +495237,Infrastructure,Infrastructure +543252,Infrastructure,Infrastructure +543251,Infrastructure,Infrastructure +543247,Infrastructure,Infrastructure +543245,Infrastructure,Infrastructure +543241,Infrastructure,Infrastructure +474927,Government Procurement,Government Procurement +475339,Industry,Industry +475338,Industry,Industry +503621,Small Business,Small Business +503516,Small Business,Small Business +503621,Economic Development,Economic Development +503516,Economic Development,Economic Development +503621,Tourism,Tourism +503516,Tourism,Tourism +474867,Health,Health +474866,Health,Health +486121,Education,Education +486118,Education,Education +505614,Education,Education +505613,Education,Education +496119,Education,Education +491919,Education,Education +491542,Education,Education +491518,Education,Education +491448,Education,Education +491441,Education,Education +486983,Education,Education +493597,Employment and Training,Employment and Training +493591,Employment and Training,Employment and Training +491919,Employment and Training,Employment and Training +491542,Employment and Training,Employment and Training +491518,Employment and Training,Employment and Training +491481,Employment and Training,Employment and Training +491467,Employment and Training,Employment and Training +491448,Employment and Training,Employment and Training +491441,Employment and Training,Employment and Training +486983,Employment and Training,Employment and Training +486122,Employment and Training,Employment and Training +486121,Employment and Training,Employment and Training +486118,Employment and Training,Employment and Training +486116,Employment and Training,Employment and Training +485161,Employment and Training,Employment and Training +481035,Employment and Training,Employment and Training +505614,Employment and Training,Employment and Training +505613,Employment and Training,Employment and Training +505188,Employment and Training,Employment and Training +502702,Employment and Training,Employment and Training +502698,Employment and Training,Employment and Training +502658,Employment and Training,Employment and Training +502640,Employment and Training,Employment and Training +498902,Employment and Training,Employment and Training +496119,Employment and Training,Employment and Training +486116,Government Procurement,Government Procurement +485161,Government Procurement,Government Procurement +505614,Government Procurement,Government Procurement +505613,Government Procurement,Government Procurement +505188,Government Procurement,Government Procurement +502702,Government Procurement,Government Procurement +502698,Government Procurement,Government Procurement +502658,Government Procurement,Government Procurement +502640,Government Procurement,Government Procurement +498902,Government Procurement,Government Procurement +496119,Government Procurement,Government Procurement +493604,Government Procurement,Government Procurement +493597,Government Procurement,Government Procurement +493591,Government Procurement,Government Procurement +491919,Government Procurement,Government Procurement +491542,Government Procurement,Government Procurement +491518,Government Procurement,Government Procurement +491481,Government Procurement,Government Procurement +491467,Government Procurement,Government Procurement +491448,Government Procurement,Government Procurement +491441,Government Procurement,Government Procurement +486983,Government Procurement,Government Procurement +486122,Government Procurement,Government Procurement +486121,Government Procurement,Government Procurement +502658,Health,Health +502640,Health,Health +498902,Health,Health +496119,Health,Health +493604,Health,Health +493597,Health,Health +493591,Health,Health +491919,Health,Health +491542,Health,Health +491518,Health,Health +491481,Health,Health +491467,Health,Health +491448,Health,Health +491441,Health,Health +486983,Health,Health +486122,Health,Health +486121,Health,Health +486118,Health,Health +486116,Health,Health +485161,Health,Health +481035,Health,Health +505188,Health,Health +502702,Health,Health +485161,Industry,Industry +481035,Industry,Industry +537632,Industry,Industry +524715,Industry,Industry +524714,Industry,Industry +520141,Industry,Industry +505614,Industry,Industry +505613,Industry,Industry +505188,Industry,Industry +502702,Industry,Industry +502698,Industry,Industry +502658,Industry,Industry +502640,Industry,Industry +498902,Industry,Industry +496119,Industry,Industry +494168,Industry,Industry +494167,Industry,Industry +493604,Industry,Industry +493597,Industry,Industry +493591,Industry,Industry +491919,Industry,Industry +491542,Industry,Industry +491518,Industry,Industry +491481,Industry,Industry +491467,Industry,Industry +491448,Industry,Industry +491441,Industry,Industry +491416,Industry,Industry +486983,Industry,Industry +486123,Industry,Industry +486122,Industry,Industry +486121,Industry,Industry +486120,Industry,Industry +486119,Industry,Industry +486118,Industry,Industry +498902,Infrastructure,Infrastructure +496119,Infrastructure,Infrastructure +494168,Infrastructure,Infrastructure +494167,Infrastructure,Infrastructure +493604,Infrastructure,Infrastructure +493597,Infrastructure,Infrastructure +493591,Infrastructure,Infrastructure +491919,Infrastructure,Infrastructure +491542,Infrastructure,Infrastructure +491518,Infrastructure,Infrastructure +491481,Infrastructure,Infrastructure +491467,Infrastructure,Infrastructure +491448,Infrastructure,Infrastructure +491441,Infrastructure,Infrastructure +491416,Infrastructure,Infrastructure +486983,Infrastructure,Infrastructure +486123,Infrastructure,Infrastructure +486122,Infrastructure,Infrastructure +486121,Infrastructure,Infrastructure +486120,Infrastructure,Infrastructure +486119,Infrastructure,Infrastructure +486118,Infrastructure,Infrastructure +486116,Infrastructure,Infrastructure +485161,Infrastructure,Infrastructure +481035,Infrastructure,Infrastructure +524715,Infrastructure,Infrastructure +524714,Infrastructure,Infrastructure +505614,Infrastructure,Infrastructure +505613,Infrastructure,Infrastructure +505188,Infrastructure,Infrastructure +502702,Infrastructure,Infrastructure +502698,Infrastructure,Infrastructure +502658,Infrastructure,Infrastructure +485161,Internal Trade,Internal Trade +481035,Internal Trade,Internal Trade +537633,Internal Trade,Internal Trade +537632,Internal Trade,Internal Trade +535640,Internal Trade,Internal Trade +531097,Internal Trade,Internal Trade +529692,Internal Trade,Internal Trade +529691,Internal Trade,Internal Trade +524715,Internal Trade,Internal Trade +524714,Internal Trade,Internal Trade +505613,Internal Trade,Internal Trade +505188,Internal Trade,Internal Trade +502702,Internal Trade,Internal Trade +502698,Internal Trade,Internal Trade +502658,Internal Trade,Internal Trade +502640,Internal Trade,Internal Trade +498902,Internal Trade,Internal Trade +496119,Internal Trade,Internal Trade +494168,Internal Trade,Internal Trade +494167,Internal Trade,Internal Trade +493604,Internal Trade,Internal Trade +493597,Internal Trade,Internal Trade +493591,Internal Trade,Internal Trade +491919,Internal Trade,Internal Trade +491542,Internal Trade,Internal Trade +491518,Internal Trade,Internal Trade +491481,Internal Trade,Internal Trade +491467,Internal Trade,Internal Trade +491448,Internal Trade,Internal Trade +491441,Internal Trade,Internal Trade +491416,Internal Trade,Internal Trade +486983,Internal Trade,Internal Trade +486123,Internal Trade,Internal Trade +486122,Internal Trade,Internal Trade +486121,Internal Trade,Internal Trade +486120,Internal Trade,Internal Trade +486119,Internal Trade,Internal Trade +486118,Internal Trade,Internal Trade +485161,International Trade,International Trade +481035,International Trade,International Trade +537633,International Trade,International Trade +537632,International Trade,International Trade +529691,International Trade,International Trade +505614,International Trade,International Trade +505613,International Trade,International Trade +505188,International Trade,International Trade +502702,International Trade,International Trade +502698,International Trade,International Trade +502658,International Trade,International Trade +502640,International Trade,International Trade +498902,International Trade,International Trade +496119,International Trade,International Trade +494168,International Trade,International Trade +494167,International Trade,International Trade +493604,International Trade,International Trade +493597,International Trade,International Trade +493591,International Trade,International Trade +491919,International Trade,International Trade +491542,International Trade,International Trade +491518,International Trade,International Trade +491481,International Trade,International Trade +491467,International Trade,International Trade +491448,International Trade,International Trade +491441,International Trade,International Trade +491416,International Trade,International Trade +486983,International Trade,International Trade +486123,International Trade,International Trade +486122,International Trade,International Trade +486121,International Trade,International Trade +486120,International Trade,International Trade +486119,International Trade,International Trade +486118,International Trade,International Trade +486121,Justice and Law Enforcement,Justice and Law Enforcement +486118,Justice and Law Enforcement,Justice and Law Enforcement +505614,Justice and Law Enforcement,Justice and Law Enforcement +491919,Justice and Law Enforcement,Justice and Law Enforcement +491448,Justice and Law Enforcement,Justice and Law Enforcement +491441,Justice and Law Enforcement,Justice and Law Enforcement +486122,Research and Development,Research and Development +486121,Research and Development,Research and Development +505614,Research and Development,Research and Development +505613,Research and Development,Research and Development +496119,Research and Development,Research and Development +491919,Research and Development,Research and Development +491542,Research and Development,Research and Development +491518,Research and Development,Research and Development +491448,Research and Development,Research and Development +491441,Research and Development,Research and Development +491448,Security,Security +491441,Security,Security +486983,Security,Security +486122,Security,Security +486121,Security,Security +486116,Security,Security +485161,Security,Security +505614,Security,Security +505188,Security,Security +502702,Security,Security +502698,Security,Security +502658,Security,Security +502640,Security,Security +498902,Security,Security +496119,Security,Security +493604,Security,Security +493597,Security,Security +493591,Security,Security +491919,Security,Security +491542,Security,Security +491518,Security,Security +491481,Security,Security +485161,Transportation,Transportation +481035,Transportation,Transportation +537633,Transportation,Transportation +537632,Transportation,Transportation +524715,Transportation,Transportation +524714,Transportation,Transportation +520141,Transportation,Transportation +505614,Transportation,Transportation +505613,Transportation,Transportation +505188,Transportation,Transportation +502702,Transportation,Transportation +502698,Transportation,Transportation +502658,Transportation,Transportation +502640,Transportation,Transportation +498902,Transportation,Transportation +496119,Transportation,Transportation +494168,Transportation,Transportation +494167,Transportation,Transportation +493604,Transportation,Transportation +493597,Transportation,Transportation +493591,Transportation,Transportation +491919,Transportation,Transportation +491542,Transportation,Transportation +491518,Transportation,Transportation +491481,Transportation,Transportation +491467,Transportation,Transportation +491448,Transportation,Transportation +491441,Transportation,Transportation +491416,Transportation,Transportation +486983,Transportation,Transportation +486123,Transportation,Transportation +486122,Transportation,Transportation +486121,Transportation,Transportation +486120,Transportation,Transportation +486119,Transportation,Transportation +476899,Taxation and Finance,Taxation and Finance +474871,Taxation and Finance,Taxation and Finance +521872,Taxation and Finance,Taxation and Finance +518977,Taxation and Finance,Taxation and Finance +484053,Taxation and Finance,Taxation and Finance +484052,Taxation and Finance,Taxation and Finance +479074,Employment and Training,Employment and Training +479073,Employment and Training,Employment and Training +479074,Taxation and Finance,Taxation and Finance +479073,Taxation and Finance,Taxation and Finance +481891,Taxation and Finance,Taxation and Finance +481886,Taxation and Finance,Taxation and Finance +478470,Economic Development,Economic Development +476392,Economic Development,Economic Development +482873,Economic Development,Economic Development +479277,Tourism,Tourism +476168,Health,Health +476167,Health,Health +508917,Health,Health +506506,Health,Health +497213,Health,Health +497211,Health,Health +497208,Health,Health +497207,Health,Health +497205,Health,Health +497204,Health,Health +497203,Health,Health +497202,Health,Health +497201,Health,Health +497200,Health,Health +489504,Health,Health +489498,Health,Health +479622,Health,Health +478773,Education,Education +478676,Education,Education +500161,Small Business,Small Business +500160,Small Business,Small Business +500159,Small Business,Small Business +496719,Small Business,Small Business +495728,Small Business,Small Business +495726,Small Business,Small Business +495724,Small Business,Small Business +493994,Small Business,Small Business +491492,Small Business,Small Business +491486,Small Business,Small Business +485603,Small Business,Small Business +485602,Small Business,Small Business +482079,Small Business,Small Business +479856,Small Business,Small Business +475466,Small Business,Small Business +475455,Small Business,Small Business +475449,Small Business,Small Business +475259,Small Business,Small Business +516986,Small Business,Small Business +513855,Small Business,Small Business +513091,Small Business,Small Business +513090,Small Business,Small Business +513089,Small Business,Small Business +513088,Small Business,Small Business +510929,Small Business,Small Business +510926,Small Business,Small Business +507679,Small Business,Small Business +507678,Small Business,Small Business +507677,Small Business,Small Business +507675,Small Business,Small Business +507673,Small Business,Small Business +507672,Small Business,Small Business +507671,Small Business,Small Business +505926,Small Business,Small Business +505925,Small Business,Small Business +505924,Small Business,Small Business +505923,Small Business,Small Business +505922,Small Business,Small Business +502994,Small Business,Small Business +502993,Small Business,Small Business +502992,Small Business,Small Business +502991,Small Business,Small Business +502990,Small Business,Small Business +502989,Small Business,Small Business +502988,Small Business,Small Business +502987,Small Business,Small Business +502986,Small Business,Small Business +502985,Small Business,Small Business +483568,Education,Education +477545,Education,Education +487286,Education,Education +487280,Education,Education +477545,Employment and Training,Employment and Training +477542,Employment and Training,Employment and Training +491358,Budget,Budget +475577,Budget,Budget +512846,Budget,Budget +491372,Budget,Budget +475471,Industry,Industry +475482,Industry,Industry +475518,Health,Health +475508,Health,Health +508129,Health,Health +475758,Employment and Training,Employment and Training +475748,Employment and Training,Employment and Training +478594,Employment and Training,Employment and Training +478125,Employment and Training,Employment and Training +475870,Employment and Training,Employment and Training +475855,Employment and Training,Employment and Training +475824,Employment and Training,Employment and Training +475813,Employment and Training,Employment and Training +475807,Employment and Training,Employment and Training +475797,Employment and Training,Employment and Training +475792,Employment and Training,Employment and Training +491696,Environment,Environment +491578,Environment,Environment +477626,Taxation and Finance,Taxation and Finance +477625,Taxation and Finance,Taxation and Finance +537974,Taxation and Finance,Taxation and Finance +513048,Taxation and Finance,Taxation and Finance +504398,Taxation and Finance,Taxation and Finance +498714,Taxation and Finance,Taxation and Finance +498713,Taxation and Finance,Taxation and Finance +495787,Taxation and Finance,Taxation and Finance +493635,Taxation and Finance,Taxation and Finance +493633,Taxation and Finance,Taxation and Finance +490185,Taxation and Finance,Taxation and Finance +490181,Taxation and Finance,Taxation and Finance +487802,Taxation and Finance,Taxation and Finance +487778,Taxation and Finance,Taxation and Finance +484705,Taxation and Finance,Taxation and Finance +484701,Taxation and Finance,Taxation and Finance +481931,Taxation and Finance,Taxation and Finance +481926,Taxation and Finance,Taxation and Finance +481913,Taxation and Finance,Taxation and Finance +480123,Taxation and Finance,Taxation and Finance +480119,Taxation and Finance,Taxation and Finance +475672,Immigration,Immigration +475666,Immigration,Immigration +512829,Immigration,Immigration +512828,Immigration,Immigration +512826,Immigration,Immigration +512824,Immigration,Immigration +512822,Immigration,Immigration +512818,Immigration,Immigration +512817,Immigration,Immigration +510328,Immigration,Immigration +510326,Immigration,Immigration +510320,Immigration,Immigration +508514,Immigration,Immigration +508511,Immigration,Immigration +508504,Immigration,Immigration +479899,Immigration,Immigration +477383,Immigration,Immigration +477375,Immigration,Immigration +477369,Immigration,Immigration +475686,Immigration,Immigration +475683,Immigration,Immigration +486519,Taxation and Finance,Taxation and Finance +478582,Taxation and Finance,Taxation and Finance +506296,Taxation and Finance,Taxation and Finance +498534,Taxation and Finance,Taxation and Finance +498531,Taxation and Finance,Taxation and Finance +495498,Taxation and Finance,Taxation and Finance +495493,Taxation and Finance,Taxation and Finance +520462,Transportation,Transportation +506373,Transportation,Transportation +497142,Transportation,Transportation +489018,Transportation,Transportation +475841,Infrastructure,Infrastructure +475715,Infrastructure,Infrastructure +532027,Infrastructure,Infrastructure +532025,Infrastructure,Infrastructure +514721,Infrastructure,Infrastructure +502566,Infrastructure,Infrastructure +499566,Infrastructure,Infrastructure +499559,Infrastructure,Infrastructure +499512,Infrastructure,Infrastructure +484699,Infrastructure,Infrastructure +482013,Infrastructure,Infrastructure +475868,Infrastructure,Infrastructure +478382,Economic Development,Economic Development +475737,Economic Development,Economic Development +481355,Economic Development,Economic Development +475898,Taxation and Finance,Taxation and Finance +523870,Economic Development,Economic Development +511985,Economic Development,Economic Development +499429,Economic Development,Economic Development +505208,Government Procurement,Government Procurement +499429,Government Procurement,Government Procurement +538165,Climate,Climate +538162,Climate,Climate +526653,Climate,Climate +526647,Climate,Climate +526643,Climate,Climate +519669,Climate,Climate +519662,Climate,Climate +519656,Climate,Climate +518390,Climate,Climate +518058,Climate,Climate +518044,Climate,Climate +518039,Climate,Climate +515702,Climate,Climate +512568,Climate,Climate +512566,Climate,Climate +510856,Climate,Climate +510855,Climate,Climate +510695,Climate,Climate +510675,Climate,Climate +510661,Climate,Climate +510472,Climate,Climate +510450,Climate,Climate +508624,Climate,Climate +504740,Climate,Climate +499216,Climate,Climate +493120,Climate,Climate +493112,Climate,Climate +493107,Climate,Climate +493099,Climate,Climate +493098,Climate,Climate +491327,Climate,Climate +491309,Climate,Climate +491291,Climate,Climate +491283,Climate,Climate +491266,Climate,Climate +491255,Climate,Climate +487388,Climate,Climate +487376,Climate,Climate +487360,Climate,Climate +487358,Climate,Climate +487351,Climate,Climate +487342,Climate,Climate +487338,Climate,Climate +487332,Climate,Climate +487321,Climate,Climate +476092,Climate,Climate +497436,Budget,Budget +478699,Taxation and Finance,Taxation and Finance +476131,Taxation and Finance,Taxation and Finance +503625,Taxation and Finance,Taxation and Finance +499782,Taxation and Finance,Taxation and Finance +491959,Taxation and Finance,Taxation and Finance +485819,Taxation and Finance,Taxation and Finance +485679,Taxation and Finance,Taxation and Finance +511710,Health,Health +503625,Health,Health +499936,Health,Health +485819,Health,Health +482662,Health,Health +499782,Consumer Issues,Consumer Issues +476131,Consumer Issues,Consumer Issues +503625,Consumer Issues,Consumer Issues +478213,Economic Development,Economic Development +478213,Environment,Environment +478213,Tourism,Tourism +479128,Economic Development,Economic Development +476882,Economic Development,Economic Development +543715,Economic Development,Economic Development +541260,Economic Development,Economic Development +539400,Economic Development,Economic Development +533031,Economic Development,Economic Development +532809,Economic Development,Economic Development +530472,Economic Development,Economic Development +516299,Economic Development,Economic Development +516298,Economic Development,Economic Development +515157,Economic Development,Economic Development +510030,Economic Development,Economic Development +507434,Economic Development,Economic Development +503975,Economic Development,Economic Development +502068,Economic Development,Economic Development +502067,Economic Development,Economic Development +497669,Economic Development,Economic Development +495370,Economic Development,Economic Development +495366,Economic Development,Economic Development +495363,Economic Development,Economic Development +495359,Economic Development,Economic Development +495352,Economic Development,Economic Development +495350,Economic Development,Economic Development +495348,Economic Development,Economic Development +495346,Economic Development,Economic Development +489220,Economic Development,Economic Development +489219,Economic Development,Economic Development +486286,Economic Development,Economic Development +486284,Economic Development,Economic Development +483705,Economic Development,Economic Development +483702,Economic Development,Economic Development +482859,Budget,Budget +482858,Budget,Budget +481300,Budget,Budget +481296,Budget,Budget +481294,Budget,Budget +481293,Budget,Budget +481291,Budget,Budget +481290,Budget,Budget +481289,Budget,Budget +479714,Budget,Budget +479712,Budget,Budget +479711,Budget,Budget +479708,Budget,Budget +478226,Employment and Training,Employment and Training +477563,Employment and Training,Employment and Training +540951,Employment and Training,Employment and Training +539157,Employment and Training,Employment and Training +534618,Employment and Training,Employment and Training +531106,Employment and Training,Employment and Training +525529,Employment and Training,Employment and Training +525527,Employment and Training,Employment and Training +521715,Employment and Training,Employment and Training +517702,Employment and Training,Employment and Training +517697,Employment and Training,Employment and Training +513931,Employment and Training,Employment and Training +512181,Employment and Training,Employment and Training +512180,Employment and Training,Employment and Training +512179,Employment and Training,Employment and Training +510082,Employment and Training,Employment and Training +503964,Employment and Training,Employment and Training +501254,Employment and Training,Employment and Training +492532,Employment and Training,Employment and Training +492531,Employment and Training,Employment and Training +492530,Employment and Training,Employment and Training +492529,Employment and Training,Employment and Training +486040,Employment and Training,Employment and Training +484396,Employment and Training,Employment and Training +484395,Employment and Training,Employment and Training +484382,Employment and Training,Employment and Training +484379,Employment and Training,Employment and Training +484358,Employment and Training,Employment and Training +484333,Employment and Training,Employment and Training +484325,Employment and Training,Employment and Training +484322,Employment and Training,Employment and Training +484318,Employment and Training,Employment and Training +484311,Employment and Training,Employment and Training +484308,Employment and Training,Employment and Training +484306,Employment and Training,Employment and Training +484299,Employment and Training,Employment and Training +484290,Employment and Training,Employment and Training +481079,Employment and Training,Employment and Training +481078,Employment and Training,Employment and Training +481077,Employment and Training,Employment and Training +481076,Employment and Training,Employment and Training +481067,Employment and Training,Employment and Training +481066,Employment and Training,Employment and Training +481065,Employment and Training,Employment and Training +481064,Employment and Training,Employment and Training +481063,Employment and Training,Employment and Training +481062,Employment and Training,Employment and Training +481061,Employment and Training,Employment and Training +478781,Employment and Training,Employment and Training +478780,Employment and Training,Employment and Training +478779,Employment and Training,Employment and Training +478778,Employment and Training,Employment and Training +478777,Employment and Training,Employment and Training +478724,Employment and Training,Employment and Training +478722,Employment and Training,Employment and Training +478719,Employment and Training,Employment and Training +478718,Employment and Training,Employment and Training +517702,Health,Health +517697,Health,Health +497694,Health,Health +478724,Health,Health +478722,Health,Health +478719,Health,Health +477563,Health,Health +540951,Health,Health +533839,Health,Health +478226,Housing,Housing +477563,Housing,Housing +525529,Housing,Housing +486042,Housing,Housing +486041,Housing,Housing +478724,Housing,Housing +478722,Housing,Housing +478719,Housing,Housing +492529,Immigration,Immigration +478719,Immigration,Immigration +539157,Immigration,Immigration +521715,Immigration,Immigration +512180,Immigration,Immigration +512179,Immigration,Immigration +510082,Immigration,Immigration +504314,Immigration,Immigration +504309,Immigration,Immigration +503964,Immigration,Immigration +497692,Immigration,Immigration +497689,Immigration,Immigration +492532,Immigration,Immigration +492531,Immigration,Immigration +492082,Climate,Climate +484625,Climate,Climate +499254,Climate,Climate +499245,Climate,Climate +496394,Climate,Climate +496393,Climate,Climate +496392,Climate,Climate +496350,Climate,Climate +496348,Climate,Climate +496347,Climate,Climate +496346,Climate,Climate +492084,Climate,Climate +492082,Economic Development,Economic Development +484625,Economic Development,Economic Development +499254,Economic Development,Economic Development +499236,Economic Development,Economic Development +496394,Economic Development,Economic Development +496393,Economic Development,Economic Development +496392,Economic Development,Economic Development +496350,Economic Development,Economic Development +496348,Economic Development,Economic Development +496346,Economic Development,Economic Development +492084,Economic Development,Economic Development +492082,Energy,Energy +484625,Energy,Energy +499254,Energy,Energy +499245,Energy,Energy +499236,Energy,Energy +496394,Energy,Energy +496393,Energy,Energy +496392,Energy,Energy +496350,Energy,Energy +496348,Energy,Energy +496347,Energy,Energy +496346,Energy,Energy +492084,Energy,Energy +492082,Environment,Environment +484625,Environment,Environment +499254,Environment,Environment +499245,Environment,Environment +499236,Environment,Environment +496394,Environment,Environment +496393,Environment,Environment +496392,Environment,Environment +496350,Environment,Environment +496348,Environment,Environment +496347,Environment,Environment +496346,Environment,Environment +492083,Forestry,Forestry +492082,Forestry,Forestry +496394,Forestry,Forestry +496393,Forestry,Forestry +496392,Forestry,Forestry +496350,Forestry,Forestry +496348,Forestry,Forestry +496347,Forestry,Forestry +496346,Forestry,Forestry +492084,Industry,Industry +484625,Industry,Industry +499254,Industry,Industry +499245,Industry,Industry +499236,Industry,Industry +496394,Industry,Industry +496393,Industry,Industry +496392,Industry,Industry +496350,Industry,Industry +496348,Industry,Industry +496347,Industry,Industry +492082,International Trade,International Trade +492083,Labour,Labour +492082,Labour,Labour +499254,Labour,Labour +496393,Labour,Labour +492084,Mining,Mining +492083,Mining,Mining +492082,Mining,Mining +484625,Mining,Mining +499245,Mining,Mining +496394,Mining,Mining +496393,Mining,Mining +496392,Mining,Mining +496350,Mining,Mining +496348,Mining,Mining +496347,Mining,Mining +492082,Regional Development,Regional Development +484625,Regional Development,Regional Development +499254,Regional Development,Regional Development +499236,Regional Development,Regional Development +496394,Regional Development,Regional Development +496393,Regional Development,Regional Development +496392,Regional Development,Regional Development +492082,Research and Development,Research and Development +484625,Research and Development,Research and Development +499245,Research and Development,Research and Development +496393,Research and Development,Research and Development +496347,Research and Development,Research and Development +492084,Research and Development,Research and Development +477876,Education,Education +477875,Education,Education +478111,Education,Education +476444,Economic Development,Economic Development +476443,Economic Development,Economic Development +476444,Industry,Industry +476443,Industry,Industry +478641,Health,Health +476500,Health,Health +478345,Economic Development,Economic Development +478344,Economic Development,Economic Development +512981,Economic Development,Economic Development +512979,Economic Development,Economic Development +502741,Economic Development,Economic Development +502738,Economic Development,Economic Development +502736,Economic Development,Economic Development +499662,Economic Development,Economic Development +499659,Economic Development,Economic Development +499658,Economic Development,Economic Development +499655,Economic Development,Economic Development +496099,Economic Development,Economic Development +496094,Economic Development,Economic Development +496092,Economic Development,Economic Development +496086,Economic Development,Economic Development +480387,Economic Development,Economic Development +480384,Economic Development,Economic Development +478350,Economic Development,Economic Development +512966,Industry,Industry +512964,Industry,Industry +506027,Industry,Industry +502741,Industry,Industry +502736,Industry,Industry +496099,Industry,Industry +496086,Industry,Industry +478345,Industry,Industry +512973,Industry,Industry +478346,Mining,Mining +478344,Mining,Mining +512977,Mining,Mining +512975,Mining,Mining +512973,Mining,Mining +512970,Mining,Mining +512966,Mining,Mining +512964,Mining,Mining +511607,Mining,Mining +506027,Mining,Mining +499657,Mining,Mining +496105,Mining,Mining +485177,Mining,Mining +480384,Mining,Mining +480381,Mining,Mining +480380,Mining,Mining +477723,Immigration,Immigration +488358,Justice and Law Enforcement,Justice and Law Enforcement +488356,Justice and Law Enforcement,Justice and Law Enforcement +488364,Justice and Law Enforcement,Justice and Law Enforcement +488363,Justice and Law Enforcement,Justice and Law Enforcement +487477,Infrastructure,Infrastructure +535275,Infrastructure,Infrastructure +508967,Infrastructure,Infrastructure +487489,Infrastructure,Infrastructure +487483,Industry,Industry +487477,Industry,Industry +535275,Industry,Industry +508967,Industry,Industry +487489,Energy,Energy +487483,Climate,Climate +484650,Climate,Climate +508967,Climate,Climate +502870,Climate,Climate +484650,Environment,Environment +502748,International Trade,International Trade +476180,Government Procurement,Government Procurement +478497,Economic Development,Economic Development +476748,Economic Development,Economic Development +497316,Economic Development,Economic Development +476383,Government Procurement,Government Procurement +476592,Small Business,Small Business +476383,Small Business,Small Business +538754,Small Business,Small Business +521517,Small Business,Small Business +515450,Small Business,Small Business +497385,Small Business,Small Business +497316,Small Business,Small Business +489082,Small Business,Small Business +480785,Small Business,Small Business +480784,Small Business,Small Business +478826,Small Business,Small Business +478583,Small Business,Small Business +478497,Small Business,Small Business +480962,Taxation and Finance,Taxation and Finance +478583,Taxation and Finance,Taxation and Finance +521517,Taxation and Finance,Taxation and Finance +476581,Industry,Industry +476583,Industry,Industry +476582,Taxation and Finance,Taxation and Finance +476581,Taxation and Finance,Taxation and Finance +495352,Employment and Training,Employment and Training +486287,Employment and Training,Employment and Training +541260,Employment and Training,Employment and Training +539400,Employment and Training,Employment and Training +516298,Employment and Training,Employment and Training +502068,Employment and Training,Employment and Training +495370,Employment and Training,Employment and Training +495366,Employment and Training,Employment and Training +495363,Employment and Training,Employment and Training +541260,Government Procurement,Government Procurement +539400,Government Procurement,Government Procurement +530472,Government Procurement,Government Procurement +510030,Government Procurement,Government Procurement +503975,Government Procurement,Government Procurement +502068,Government Procurement,Government Procurement +495370,Government Procurement,Government Procurement +495366,Government Procurement,Government Procurement +495363,Government Procurement,Government Procurement +495359,Government Procurement,Government Procurement +495352,Government Procurement,Government Procurement +495350,Government Procurement,Government Procurement +495346,Government Procurement,Government Procurement +489220,Government Procurement,Government Procurement +486286,Government Procurement,Government Procurement +483705,Government Procurement,Government Procurement +483704,Government Procurement,Government Procurement +483701,Government Procurement,Government Procurement +479127,Government Procurement,Government Procurement +489582,Health,Health +488472,Health,Health +513476,Health,Health +502963,Health,Health +502961,Health,Health +493856,Health,Health +488472,Industry,Industry +482511,Industry,Industry +502963,Industry,Industry +493856,Industry,Industry +489842,Industry,Industry +525179,Municipalities,Municipalities +477880,Economic Development,Economic Development +477887,Forestry,Forestry +477880,Forestry,Forestry +477887,Industry,Industry +477880,Industry,Industry +477898,Industry,Industry +477894,Industry,Industry +477890,Taxation and Finance,Taxation and Finance +477432,Economic Development,Economic Development +477420,Economic Development,Economic Development +511560,Economic Development,Economic Development +511559,Economic Development,Economic Development +511558,Economic Development,Economic Development +508548,Economic Development,Economic Development +508531,Economic Development,Economic Development +508529,Economic Development,Economic Development +506129,Economic Development,Economic Development +506120,Economic Development,Economic Development +502549,Economic Development,Economic Development +502544,Economic Development,Economic Development +502541,Economic Development,Economic Development +502539,Economic Development,Economic Development +502533,Economic Development,Economic Development +499817,Economic Development,Economic Development +495568,Economic Development,Economic Development +493860,Economic Development,Economic Development +493858,Economic Development,Economic Development +491628,Economic Development,Economic Development +491620,Economic Development,Economic Development +491614,Economic Development,Economic Development +491610,Economic Development,Economic Development +491602,Economic Development,Economic Development +487968,Economic Development,Economic Development +487964,Economic Development,Economic Development +483001,Economic Development,Economic Development +482999,Economic Development,Economic Development +482998,Economic Development,Economic Development +482566,Economic Development,Economic Development +482565,Economic Development,Economic Development +482564,Economic Development,Economic Development +478962,Economic Development,Economic Development +482561,Immigration,Immigration +491620,Small Business,Small Business +491614,Small Business,Small Business +495571,Small Business,Small Business +491634,Small Business,Small Business +491620,Tourism,Tourism +491610,Tourism,Tourism +491634,Tourism,Tourism +503952,Taxation and Finance,Taxation and Finance +503801,Small Business,Small Business +499104,Small Business,Small Business +532514,Small Business,Small Business +532513,Small Business,Small Business +532512,Small Business,Small Business +532511,Small Business,Small Business +524480,Small Business,Small Business +523510,Small Business,Small Business +503952,Small Business,Small Business +516825,Industry,Industry +499104,Industry,Industry +532514,Industry,Industry +532513,Industry,Industry +532512,Industry,Industry +532511,Industry,Industry +524480,Industry,Industry +480670,Industry,Industry +476273,Health,Health +478683,Economic Development,Economic Development +476258,Economic Development,Economic Development +480730,International Trade,International Trade +476266,International Trade,International Trade +482903,International Trade,International Trade +478268,Economic Development,Economic Development +478269,Government Procurement,Government Procurement +478268,Government Procurement,Government Procurement +493018,Government Procurement,Government Procurement +489298,Government Procurement,Government Procurement +480265,Government Procurement,Government Procurement +478269,Health,Health +478268,Health,Health +493018,Health,Health +480265,Health,Health +499822,Government Procurement,Government Procurement +499821,Government Procurement,Government Procurement +482556,Government Procurement,Government Procurement +476545,Economic Development,Economic Development +476289,Economic Development,Economic Development +492055,Economic Development,Economic Development +480965,Economic Development,Economic Development +479275,Economic Development,Economic Development +479275,Regional Development,Regional Development +478469,Regional Development,Regional Development +492055,Regional Development,Regional Development +488340,Taxation and Finance,Taxation and Finance +478469,Taxation and Finance,Taxation and Finance +492055,Taxation and Finance,Taxation and Finance +476545,Tourism,Tourism +476289,Tourism,Tourism +478469,Small Business,Small Business +476289,Small Business,Small Business +490254,Small Business,Small Business +488340,Small Business,Small Business +480965,Small Business,Small Business +509607,Housing,Housing +500456,Housing,Housing +478702,Housing,Housing +478701,Housing,Housing +494778,Infrastructure,Infrastructure +494777,Infrastructure,Infrastructure +494780,Infrastructure,Infrastructure +478479,Economic Development,Economic Development +476459,Economic Development,Economic Development +478696,Economic Development,Economic Development +478479,Taxation and Finance,Taxation and Finance +476459,Taxation and Finance,Taxation and Finance +478696,Taxation and Finance,Taxation and Finance +478695,Labour,Labour +478659,Health,Health +476501,Health,Health +476502,Health,Health +494449,Health,Health +476669,Health,Health +496747,Health,Health +504997,Labour,Labour +497562,Labour,Labour +513651,Labour,Labour +516842,Industry,Industry +509574,Industry,Industry +543161,Industry,Industry +527447,Industry,Industry +525460,Industry,Industry +521495,Industry,Industry +521493,Industry,Industry +509574,Health,Health +543161,Health,Health +527447,Health,Health +525460,Health,Health +521495,Health,Health +521493,Health,Health +516857,Health,Health +521495,Economic Development,Economic Development +521493,Economic Development,Economic Development +516857,Economic Development,Economic Development +516842,Economic Development,Economic Development +509574,Economic Development,Economic Development +543161,Economic Development,Economic Development +527447,Economic Development,Economic Development +516842,Intellectual Property,Intellectual Property +509574,Intellectual Property,Intellectual Property +543161,Intellectual Property,Intellectual Property +527447,Intellectual Property,Intellectual Property +525460,Intellectual Property,Intellectual Property +521495,Intellectual Property,Intellectual Property +521493,Intellectual Property,Intellectual Property +543161,International Trade,International Trade +527447,International Trade,International Trade +525460,International Trade,International Trade +521495,International Trade,International Trade +521493,International Trade,International Trade +516857,International Trade,International Trade +516842,International Trade,International Trade +516842,Taxation and Finance,Taxation and Finance +509574,Taxation and Finance,Taxation and Finance +543161,Taxation and Finance,Taxation and Finance +527447,Taxation and Finance,Taxation and Finance +525460,Taxation and Finance,Taxation and Finance +521495,Taxation and Finance,Taxation and Finance +521493,Taxation and Finance,Taxation and Finance +478047,Government Procurement,Government Procurement +478047,Health,Health +476506,Health,Health +476506,Industry,Industry +476393,Economic Development,Economic Development +476774,Labour,Labour +476774,Economic Development,Economic Development +478480,Economic Development,Economic Development +477892,Taxation and Finance,Taxation and Finance +476774,Taxation and Finance,Taxation and Finance +478480,Taxation and Finance,Taxation and Finance +483572,Economic Development,Economic Development +478634,Economic Development,Economic Development +483572,Labour,Labour +483572,Taxation and Finance,Taxation and Finance +478634,Taxation and Finance,Taxation and Finance +477610,Education,Education +511691,Education,Education +488404,Education,Education +488402,Employment and Training,Employment and Training +485164,Employment and Training,Employment and Training +511691,Employment and Training,Employment and Training +478793,Mining,Mining +478792,Mining,Mining +478818,Mining,Mining +478796,Mining,Mining +478795,Mining,Mining +478794,Regional Development,Regional Development +538540,Agriculture,Agriculture +538539,Agriculture,Agriculture +510699,Environment,Environment +479911,Environment,Environment +538541,Environment,Environment +538540,Environment,Environment +538539,Environment,Environment +538538,Environment,Environment +538537,Environment,Environment +536192,Environment,Environment +536190,Environment,Environment +536166,Agriculture,Agriculture +532256,Agriculture,Agriculture +532237,Agriculture,Agriculture +529453,Agriculture,Agriculture +522981,Agriculture,Agriculture +520118,Agriculture,Agriculture +518465,Agriculture,Agriculture +510756,Agriculture,Agriculture +510743,Agriculture,Agriculture +510721,Agriculture,Agriculture +505432,Agriculture,Agriculture +505423,Agriculture,Agriculture +503019,Agriculture,Agriculture +503018,Agriculture,Agriculture +503017,Agriculture,Agriculture +496185,Agriculture,Agriculture +491810,Agriculture,Agriculture +491806,Agriculture,Agriculture +491803,Agriculture,Agriculture +487679,Agriculture,Agriculture +487677,Agriculture,Agriculture +487676,Agriculture,Agriculture +487675,Agriculture,Agriculture +485335,Agriculture,Agriculture +485321,Agriculture,Agriculture +482632,Agriculture,Agriculture +479908,Agriculture,Agriculture +479906,Agriculture,Agriculture +479896,Agriculture,Agriculture +479906,Energy,Energy +479896,Energy,Energy +532256,Energy,Energy +520118,Energy,Energy +518465,Energy,Energy +513545,Energy,Energy +513540,Energy,Energy +513538,Energy,Energy +510756,Energy,Energy +510721,Energy,Energy +505432,Energy,Energy +505423,Energy,Energy +503019,Energy,Energy +503018,Energy,Energy +503017,Energy,Energy +496185,Energy,Energy +496183,Energy,Energy +491810,Energy,Energy +487678,Energy,Energy +485335,Energy,Energy +482632,Energy,Energy +482631,Energy,Energy +482629,Energy,Energy +482627,Energy,Energy +479906,Environment,Environment +479896,Environment,Environment +532237,Environment,Environment +522981,Environment,Environment +513545,Environment,Environment +513540,Environment,Environment +513538,Environment,Environment +510743,Environment,Environment +496185,Environment,Environment +496183,Environment,Environment +491806,Environment,Environment +491803,Environment,Environment +487679,Environment,Environment +487678,Environment,Environment +487677,Environment,Environment +487676,Environment,Environment +487675,Environment,Environment +485321,Environment,Environment +485410,Housing,Housing +485410,Infrastructure,Infrastructure +491882,Health,Health +474630,Environment,Environment +481875,Environment,Environment +481875,Mining,Mining +477327,Economic Development,Economic Development +505846,Health,Health +484936,Economic Development,Economic Development +531153,Energy,Energy +484942,Industry,Industry +482425,Infrastructure,Infrastructure +484942,Mining,Mining +478225,Infrastructure,Infrastructure +478626,Economic Development,Economic Development +476220,Industry,Industry +474773,Health,Health +474773,Pensions,Pensions +474799,International Trade,International Trade +474799,Small Business,Small Business +513388,Agriculture,Agriculture +502916,Energy,Energy +499814,Labour,Labour +495233,Climate,Climate +540071,Infrastructure,Infrastructure +474927,Infrastructure,Infrastructure +482303,Government Procurement,Government Procurement +474927,Industry,Industry +475340,Industry,Industry +503697,Environment,Environment +503697,Small Business,Small Business +503697,Economic Development,Economic Development +503697,Tourism,Tourism +477439,Health,Health +477527,Agriculture,Agriculture +486122,Education,Education +493604,Employment and Training,Employment and Training +486118,Government Procurement,Government Procurement +502698,Health,Health +486116,Industry,Industry +502640,Infrastructure,Infrastructure +486116,Internal Trade,Internal Trade +486116,International Trade,International Trade +486122,Justice and Law Enforcement,Justice and Law Enforcement +486983,Research and Development,Research and Development +491467,Security,Security +486116,Transportation,Transportation +481302,Taxation and Finance,Taxation and Finance +474909,Agriculture,Agriculture +478276,Economic Development,Economic Development +478276,Industry,Industry +479075,Employment and Training,Employment and Training +479075,Taxation and Finance,Taxation and Finance +474933,Infrastructure,Infrastructure +479277,Economic Development,Economic Development +482873,Tourism,Tourism +486163,Health,Health +474975,Health,Health +475016,Financial Institutions,Financial Institutions +479638,Economic Development,Economic Development +479638,Health,Health +479466,Education,Education +529296,Justice and Law Enforcement,Justice and Law Enforcement +476223,Economic Development,Economic Development +476223,Transportation,Transportation +500162,Small Business,Small Business +475382,Privacy and Access to Information,Privacy and Access to Information +483569,Education,Education +487286,Employment and Training,Employment and Training +491368,Budget,Budget +475420,Small Business,Small Business +475434,Small Business,Small Business +498097,Industry,Industry +486283,Industry,Industry +475520,Health,Health +475780,Employment and Training,Employment and Training +527324,Environment,Environment +475586,Industry,Industry +477627,Taxation and Finance,Taxation and Finance +475678,Immigration,Immigration +475647,Economic Development,Economic Development +488485,Employment and Training,Employment and Training +488485,Taxation and Finance,Taxation and Finance +522419,Transportation,Transportation +475862,Infrastructure,Infrastructure +475738,Small Business,Small Business +478388,Economic Development,Economic Development +475750,Education,Education +475880,Regional Development,Regional Development +478349,Taxation and Finance,Taxation and Finance +530363,Economic Development,Economic Development +511985,Government Procurement,Government Procurement +475934,Small Business,Small Business +475940,Small Business,Small Business +479312,Budget,Budget +479312,Health,Health +538167,Climate,Climate +499283,Budget,Budget +499283,Tourism,Tourism +482662,Taxation and Finance,Taxation and Finance +476131,Health,Health +499936,Consumer Issues,Consumer Issues +503972,Health,Health +476132,Privacy and Access to Information,Privacy and Access to Information +495336,Economic Development,Economic Development +493520,Environment,Environment +478213,Infrastructure,Infrastructure +478213,Regional Development,Regional Development +495336,Tourism,Tourism +483701,Economic Development,Economic Development +483008,Budget,Budget +483008,Financial Institutions,Financial Institutions +478717,Employment and Training,Employment and Training +525529,Health,Health +478718,Housing,Housing +492530,Immigration,Immigration +492083,Climate,Climate +492083,Economic Development,Economic Development +492083,Energy,Energy +492083,Environment,Environment +492084,Forestry,Forestry +496346,Industry,Industry +492083,International Trade,International Trade +492084,Labour,Labour +496346,Mining,Mining +492083,Regional Development,Regional Development +492083,Research and Development,Research and Development +477877,Education,Education +476446,Economic Development,Economic Development +476446,Industry,Industry +478641,Economic Development,Economic Development +480823,Health,Health +478641,Industry,Industry +478347,Economic Development,Economic Development +478346,Energy,Energy +485189,Environment,Environment +512970,Industry,Industry +480383,Infrastructure,Infrastructure +478350,Mining,Mining +477725,Immigration,Immigration +488361,Justice and Law Enforcement,Justice and Law Enforcement +487483,Infrastructure,Infrastructure +487489,Industry,Industry +508967,Energy,Energy +487489,Climate,Climate +484650,Economic Development,Economic Development +487489,Budget,Budget +502870,Environment,Environment +499670,International Trade,International Trade +502748,Transportation,Transportation +481213,Government Procurement,Government Procurement +476347,Transportation,Transportation +477530,Mining,Mining +477530,Labour,Labour +500170,Economic Development,Economic Development +489082,Economic Development,Economic Development +478416,Government Procurement,Government Procurement +489082,Research and Development,Research and Development +476748,Small Business,Small Business +487584,Taxation and Finance,Taxation and Finance +476582,Industry,Industry +476583,Taxation and Finance,Taxation and Finance +476221,Research and Development,Research and Development +495359,Employment and Training,Employment and Training +476882,Government Procurement,Government Procurement +489842,Health,Health +489582,Industry,Industry +476827,Agriculture,Agriculture +525179,Justice and Law Enforcement,Justice and Law Enforcement +476827,Infrastructure,Infrastructure +476827,Municipalities,Municipalities +477887,Economic Development,Economic Development +477898,Forestry,Forestry +477890,Industry,Industry +477898,Regional Development,Regional Development +477894,Taxation and Finance,Taxation and Finance +477434,Economic Development,Economic Development +482563,Immigration,Immigration +491628,Small Business,Small Business +491628,Tourism,Tourism +516825,Taxation and Finance,Taxation and Finance +503802,Small Business,Small Business +523510,Industry,Industry +476250,Tourism,Tourism +480671,Industry,Industry +478413,Health,Health +478684,Economic Development,Economic Development +481396,International Trade,International Trade +478269,Economic Development,Economic Development +478271,Government Procurement,Government Procurement +478271,Health,Health +480265,Labour,Labour +478541,Government Procurement,Government Procurement +511571,Industry,Industry +477427,Small Business,Small Business +478469,Economic Development,Economic Development +488340,Regional Development,Regional Development +490254,Taxation and Finance,Taxation and Finance +479275,Tourism,Tourism +479275,Small Business,Small Business +477156,Labour,Labour +476305,Housing,Housing +494779,Infrastructure,Infrastructure +478695,Economic Development,Economic Development +478695,Taxation and Finance,Taxation and Finance +478696,Labour,Labour +478659,Economic Development,Economic Development +480825,Health,Health +478659,Industry,Industry +478660,Industry,Industry +478660,Economic Development,Economic Development +478660,Health,Health +476669,Agriculture,Agriculture +513651,Elections,Elections +496746,Health,Health +510579,Labour,Labour +481086,Agriculture,Agriculture +481086,Economic Development,Economic Development +516857,Industry,Industry +516842,Health,Health +525460,Economic Development,Economic Development +516857,Intellectual Property,Intellectual Property +509574,International Trade,International Trade +516857,Taxation and Finance,Taxation and Finance +478954,Government Procurement,Government Procurement +478954,Health,Health +476378,Agriculture,Agriculture +476381,Agriculture,Agriculture +478756,Health,Health +478756,Industry,Industry +486280,Economic Development,Economic Development +476393,Regional Development,Regional Development +486280,Small Business,Small Business +476750,Environment,Environment +476750,Transportation,Transportation +478392,Labour,Labour +478392,Economic Development,Economic Development +478392,Taxation and Finance,Taxation and Finance +483648,Economic Development,Economic Development +483648,Labour,Labour +483648,Taxation and Finance,Taxation and Finance +476404,Economic Development,Economic Development +476404,Regional Development,Regional Development +488402,Education,Education +488404,Employment and Training,Employment and Training +477330,Taxation and Finance,Taxation and Finance +478794,Mining,Mining +478794,Economic Development,Economic Development +478793,International Trade,International Trade +478795,Regional Development,Regional Development +538541,Agriculture,Agriculture +536178,Environment,Environment +536168,Agriculture,Agriculture +479908,Energy,Energy +479908,Environment,Environment +485481,Infrastructure,Infrastructure +478069,Justice and Law Enforcement,Justice and Law Enforcement +481040,Budget,Budget +512241,Climate,Climate +481040,Energy,Energy +512241,Environment,Environment +512239,Government Procurement,Government Procurement +481040,Infrastructure,Infrastructure +501342,Climate,Climate +541062,Climate,Climate +541063,Economic Development,Economic Development +541062,Energy,Energy +541063,Environment,Environment +482218,Economic Development,Economic Development +476544,Economic Development,Economic Development +478736,Government Procurement,Government Procurement +492882,Economic Development,Economic Development +482275,Health,Health +482631,Environment,Environment +482629,Environment,Environment +482627,Environment,Environment +476448,Infrastructure,Infrastructure +476440,Infrastructure,Infrastructure +516166,Infrastructure,Infrastructure +514393,Infrastructure,Infrastructure +506118,Infrastructure,Infrastructure +506117,Infrastructure,Infrastructure +505006,Infrastructure,Infrastructure +500230,Infrastructure,Infrastructure +497993,Infrastructure,Infrastructure +496305,Infrastructure,Infrastructure +480820,Budget,Budget +480819,Budget,Budget +544073,Budget,Budget +544009,Budget,Budget +544002,Budget,Budget +543999,Budget,Budget +543996,Budget,Budget +543992,Budget,Budget +543988,Budget,Budget +543984,Budget,Budget +542207,Budget,Budget +540942,Budget,Budget +540941,Budget,Budget +539160,Budget,Budget +539159,Budget,Budget +537664,Budget,Budget +537663,Budget,Budget +533757,Budget,Budget +533754,Budget,Budget +525042,Budget,Budget +521665,Budget,Budget +521663,Budget,Budget +521473,Budget,Budget +519414,Budget,Budget +483708,Budget,Budget +483104,Budget,Budget +481418,Budget,Budget +481205,Budget,Budget +481201,Budget,Budget +512240,Climate,Climate +500690,Climate,Climate +483708,Climate,Climate +483104,Climate,Climate +481418,Climate,Climate +481205,Climate,Climate +481201,Climate,Climate +481040,Climate,Climate +480820,Climate,Climate +544073,Climate,Climate +544009,Climate,Climate +544002,Climate,Climate +543999,Climate,Climate +543996,Climate,Climate +543992,Climate,Climate +543988,Climate,Climate +543984,Climate,Climate +542207,Climate,Climate +540942,Climate,Climate +540941,Climate,Climate +539159,Climate,Climate +537664,Climate,Climate +537663,Climate,Climate +533757,Climate,Climate +533754,Climate,Climate +519414,Climate,Climate +519411,Climate,Climate +512245,Climate,Climate +512242,Climate,Climate +480820,Energy,Energy +480819,Energy,Energy +544073,Energy,Energy +544009,Energy,Energy +544002,Energy,Energy +543999,Energy,Energy +543996,Energy,Energy +543992,Energy,Energy +543988,Energy,Energy +543984,Energy,Energy +542207,Energy,Energy +540942,Energy,Energy +540941,Energy,Energy +539160,Energy,Energy +539159,Energy,Energy +537664,Energy,Energy +537663,Energy,Energy +533757,Energy,Energy +533754,Energy,Energy +525043,Energy,Energy +525042,Energy,Energy +521665,Energy,Energy +521663,Energy,Energy +521473,Energy,Energy +521472,Energy,Energy +521471,Energy,Energy +519414,Energy,Energy +519411,Energy,Energy +512246,Energy,Energy +512242,Energy,Energy +512241,Energy,Energy +500690,Energy,Energy +493435,Energy,Energy +483708,Energy,Energy +483104,Energy,Energy +481418,Energy,Energy +481205,Energy,Energy +481201,Energy,Energy +512240,Environment,Environment +500690,Environment,Environment +480820,Environment,Environment +480819,Environment,Environment +544073,Environment,Environment +544009,Environment,Environment +544002,Environment,Environment +543999,Environment,Environment +543996,Environment,Environment +543992,Environment,Environment +543988,Environment,Environment +543984,Environment,Environment +542207,Environment,Environment +540942,Environment,Environment +540941,Environment,Environment +539160,Environment,Environment +539159,Environment,Environment +537664,Environment,Environment +537663,Environment,Environment +533757,Environment,Environment +533754,Environment,Environment +525043,Environment,Environment +525042,Environment,Environment +521665,Environment,Environment +521663,Environment,Environment +521473,Environment,Environment +521472,Environment,Environment +521471,Environment,Environment +519414,Environment,Environment +512242,Environment,Environment +483708,Government Procurement,Government Procurement +480820,Government Procurement,Government Procurement +512247,Government Procurement,Government Procurement +512244,Government Procurement,Government Procurement +480820,Infrastructure,Infrastructure +525043,Infrastructure,Infrastructure +521665,Infrastructure,Infrastructure +521472,Infrastructure,Infrastructure +519414,Infrastructure,Infrastructure +519413,Infrastructure,Infrastructure +497976,Climate,Climate +486813,Climate,Climate +513999,Climate,Climate +510514,Climate,Climate +510501,Climate,Climate +504247,Climate,Climate +541061,Climate,Climate +531673,Climate,Climate +541067,Climate,Climate +541066,Climate,Climate +541064,Climate,Climate +541063,Climate,Climate +541062,Economic Development,Economic Development +541061,Economic Development,Economic Development +541067,Economic Development,Economic Development +541066,Economic Development,Economic Development +541064,Economic Development,Economic Development +541061,Energy,Energy +531673,Energy,Energy +484064,Energy,Energy +478021,Energy,Energy +541067,Energy,Energy +541066,Energy,Energy +541064,Energy,Energy +541063,Energy,Energy +541062,Environment,Environment +541061,Environment,Environment +541067,Environment,Environment +541066,Environment,Environment +541064,Environment,Environment +478606,Government Procurement,Government Procurement +476544,Government Procurement,Government Procurement +482275,Economic Development,Economic Development +457601,Aboriginal Affairs,Aboriginal Affairs +457592,Aboriginal Affairs,Aboriginal Affairs +457605,Aboriginal Affairs,Aboriginal Affairs +457925,Aboriginal Affairs,Aboriginal Affairs +496503,Science and Technology,Science and Technology +494118,Science and Technology,Science and Technology +490505,Science and Technology,Science and Technology +489426,Science and Technology,Science and Technology +489009,Science and Technology,Science and Technology +486237,Science and Technology,Science and Technology +484281,Science and Technology,Science and Technology +482069,Science and Technology,Science and Technology +458622,Science and Technology,Science and Technology +458620,Science and Technology,Science and Technology +457985,Science and Technology,Science and Technology +507226,Science and Technology,Science and Technology +506793,Science and Technology,Science and Technology +506255,Science and Technology,Science and Technology +503456,Science and Technology,Science and Technology +503153,Science and Technology,Science and Technology +500939,Science and Technology,Science and Technology +455909,Aboriginal Affairs,Aboriginal Affairs +455637,Arts and Culture,Arts and Culture +455636,Arts and Culture,Arts and Culture +470849,Arts and Culture,Arts and Culture +469251,Arts and Culture,Arts and Culture +467840,Arts and Culture,Arts and Culture +467838,Arts and Culture,Arts and Culture +467834,Arts and Culture,Arts and Culture +467828,Arts and Culture,Arts and Culture +467526,Arts and Culture,Arts and Culture +459125,Arts and Culture,Arts and Culture +455718,Arts and Culture,Arts and Culture +455715,Arts and Culture,Arts and Culture +459125,Broadcasting,Broadcasting +455701,Broadcasting,Broadcasting +470849,Broadcasting,Broadcasting +469251,Broadcasting,Broadcasting +467834,Broadcasting,Broadcasting +467828,Broadcasting,Broadcasting +467834,Telecommunications,Telecommunications +467828,Telecommunications,Telecommunications +467526,Telecommunications,Telecommunications +455701,Telecommunications,Telecommunications +457550,Aboriginal Affairs,Aboriginal Affairs +457549,Aboriginal Affairs,Aboriginal Affairs +465114,Telecommunications,Telecommunications +543794,Telecommunications,Telecommunications +462883,Telecommunications,Telecommunications +498843,Aboriginal Affairs,Aboriginal Affairs +498840,Aboriginal Affairs,Aboriginal Affairs +493400,Aboriginal Affairs,Aboriginal Affairs +491014,Aboriginal Affairs,Aboriginal Affairs +491009,Aboriginal Affairs,Aboriginal Affairs +491004,Aboriginal Affairs,Aboriginal Affairs +491002,Aboriginal Affairs,Aboriginal Affairs +490202,Aboriginal Affairs,Aboriginal Affairs +467293,Aboriginal Affairs,Aboriginal Affairs +462116,Aboriginal Affairs,Aboriginal Affairs +531933,Aboriginal Affairs,Aboriginal Affairs +531930,Aboriginal Affairs,Aboriginal Affairs +531927,Aboriginal Affairs,Aboriginal Affairs +531924,Aboriginal Affairs,Aboriginal Affairs +531923,Aboriginal Affairs,Aboriginal Affairs +531922,Aboriginal Affairs,Aboriginal Affairs +531921,Aboriginal Affairs,Aboriginal Affairs +531920,Aboriginal Affairs,Aboriginal Affairs +531919,Aboriginal Affairs,Aboriginal Affairs +531917,Aboriginal Affairs,Aboriginal Affairs +522276,Aboriginal Affairs,Aboriginal Affairs +517855,Aboriginal Affairs,Aboriginal Affairs +517824,Aboriginal Affairs,Aboriginal Affairs +517815,Aboriginal Affairs,Aboriginal Affairs +478600,Science and Technology,Science and Technology +459300,Science and Technology,Science and Technology +458052,Aboriginal Affairs,Aboriginal Affairs +474097,Aboriginal Affairs,Aboriginal Affairs +468562,Science and Technology,Science and Technology +463686,Science and Technology,Science and Technology +523223,Science and Technology,Science and Technology +492379,Science and Technology,Science and Technology +483732,Science and Technology,Science and Technology +478092,Science and Technology,Science and Technology +478089,Science and Technology,Science and Technology +478087,Science and Technology,Science and Technology +478085,Science and Technology,Science and Technology +478084,Science and Technology,Science and Technology +478081,Science and Technology,Science and Technology +478053,Science and Technology,Science and Technology +475228,Science and Technology,Science and Technology +475226,Science and Technology,Science and Technology +475225,Science and Technology,Science and Technology +475224,Science and Technology,Science and Technology +475223,Science and Technology,Science and Technology +475222,Science and Technology,Science and Technology +472519,Science and Technology,Science and Technology +472518,Science and Technology,Science and Technology +472516,Science and Technology,Science and Technology +472515,Science and Technology,Science and Technology +472497,Science and Technology,Science and Technology +472494,Science and Technology,Science and Technology +472492,Science and Technology,Science and Technology +472487,Science and Technology,Science and Technology +472480,Science and Technology,Science and Technology +472477,Science and Technology,Science and Technology +472474,Science and Technology,Science and Technology +472459,Science and Technology,Science and Technology +472455,Science and Technology,Science and Technology +471341,Science and Technology,Science and Technology +471340,Science and Technology,Science and Technology +471339,Science and Technology,Science and Technology +471336,Science and Technology,Science and Technology +468575,Science and Technology,Science and Technology +468567,Science and Technology,Science and Technology +476030,Arts and Culture,Arts and Culture +476027,Arts and Culture,Arts and Culture +460637,Arts and Culture,Arts and Culture +460636,Arts and Culture,Arts and Culture +530335,Arts and Culture,Arts and Culture +530334,Arts and Culture,Arts and Culture +530333,Arts and Culture,Arts and Culture +527105,Arts and Culture,Arts and Culture +527104,Arts and Culture,Arts and Culture +527103,Arts and Culture,Arts and Culture +527102,Arts and Culture,Arts and Culture +527101,Arts and Culture,Arts and Culture +527100,Arts and Culture,Arts and Culture +527099,Arts and Culture,Arts and Culture +527098,Arts and Culture,Arts and Culture +527097,Arts and Culture,Arts and Culture +523539,Arts and Culture,Arts and Culture +520601,Arts and Culture,Arts and Culture +515939,Arts and Culture,Arts and Culture +515938,Arts and Culture,Arts and Culture +515937,Arts and Culture,Arts and Culture +511447,Arts and Culture,Arts and Culture +511446,Arts and Culture,Arts and Culture +511445,Arts and Culture,Arts and Culture +511444,Arts and Culture,Arts and Culture +511443,Arts and Culture,Arts and Culture +509140,Arts and Culture,Arts and Culture +509139,Arts and Culture,Arts and Culture +509138,Arts and Culture,Arts and Culture +505849,Arts and Culture,Arts and Culture +505847,Arts and Culture,Arts and Culture +505842,Arts and Culture,Arts and Culture +502869,Arts and Culture,Arts and Culture +502868,Arts and Culture,Arts and Culture +502867,Arts and Culture,Arts and Culture +502866,Arts and Culture,Arts and Culture +502865,Arts and Culture,Arts and Culture +502863,Arts and Culture,Arts and Culture +502861,Arts and Culture,Arts and Culture +496205,Arts and Culture,Arts and Culture +496204,Arts and Culture,Arts and Culture +493741,Arts and Culture,Arts and Culture +493739,Arts and Culture,Arts and Culture +493733,Arts and Culture,Arts and Culture +491672,Arts and Culture,Arts and Culture +488235,Arts and Culture,Arts and Culture +488234,Arts and Culture,Arts and Culture +485227,Arts and Culture,Arts and Culture +485225,Arts and Culture,Arts and Culture +482466,Arts and Culture,Arts and Culture +480259,Arts and Culture,Arts and Culture +480257,Arts and Culture,Arts and Culture +478310,Arts and Culture,Arts and Culture +478309,Arts and Culture,Arts and Culture +478308,Arts and Culture,Arts and Culture +478307,Arts and Culture,Arts and Culture +478306,Arts and Culture,Arts and Culture +478305,Arts and Culture,Arts and Culture +478303,Arts and Culture,Arts and Culture +478302,Arts and Culture,Arts and Culture +476033,Arts and Culture,Arts and Culture +476032,Arts and Culture,Arts and Culture +464759,Aboriginal Affairs,Aboriginal Affairs +464756,Aboriginal Affairs,Aboriginal Affairs +464937,Aboriginal Affairs,Aboriginal Affairs +464871,Aboriginal Affairs,Aboriginal Affairs +464869,Aboriginal Affairs,Aboriginal Affairs +464865,Aboriginal Affairs,Aboriginal Affairs +464865,Telecommunications,Telecommunications +474896,Science and Technology,Science and Technology +474895,Science and Technology,Science and Technology +474770,Science and Technology,Science and Technology +474769,Science and Technology,Science and Technology +474766,Science and Technology,Science and Technology +474763,Science and Technology,Science and Technology +474758,Science and Technology,Science and Technology +458327,Science and Technology,Science and Technology +458326,Science and Technology,Science and Technology +458325,Science and Technology,Science and Technology +458323,Science and Technology,Science and Technology +495233,Science and Technology,Science and Technology +470389,Science and Technology,Science and Technology +480354,Science and Technology,Science and Technology +465601,Science and Technology,Science and Technology +458990,Aboriginal Affairs,Aboriginal Affairs +458989,Aboriginal Affairs,Aboriginal Affairs +478610,Aboriginal Affairs,Aboriginal Affairs +463197,Aboriginal Affairs,Aboriginal Affairs +459095,Aboriginal Affairs,Aboriginal Affairs +459094,Aboriginal Affairs,Aboriginal Affairs +459064,Aboriginal Affairs,Aboriginal Affairs +459063,Aboriginal Affairs,Aboriginal Affairs +462188,Aboriginal Affairs,Aboriginal Affairs +462187,Aboriginal Affairs,Aboriginal Affairs +521211,Science and Technology,Science and Technology +521210,Science and Technology,Science and Technology +521189,Science and Technology,Science and Technology +480805,Arts and Culture,Arts and Culture +480803,Arts and Culture,Arts and Culture +493676,Broadcasting,Broadcasting +493670,Broadcasting,Broadcasting +505979,Broadcasting,Broadcasting +502732,Broadcasting,Broadcasting +502729,Broadcasting,Broadcasting +502724,Broadcasting,Broadcasting +502722,Broadcasting,Broadcasting +496106,Broadcasting,Broadcasting +496098,Broadcasting,Broadcasting +496090,Broadcasting,Broadcasting +516292,Science and Technology,Science and Technology +514961,Science and Technology,Science and Technology +464900,Science and Technology,Science and Technology +464885,Science and Technology,Science and Technology +540630,Science and Technology,Science and Technology +540625,Science and Technology,Science and Technology +538985,Science and Technology,Science and Technology +538974,Science and Technology,Science and Technology +534001,Science and Technology,Science and Technology +527344,Science and Technology,Science and Technology +527337,Science and Technology,Science and Technology +523868,Science and Technology,Science and Technology +477667,Science and Technology,Science and Technology +462732,Science and Technology,Science and Technology +462723,Science and Technology,Science and Technology +461967,Aboriginal Affairs,Aboriginal Affairs +461966,Aboriginal Affairs,Aboriginal Affairs +465105,Aboriginal Affairs,Aboriginal Affairs +462779,Aboriginal Affairs,Aboriginal Affairs +462763,Aboriginal Affairs,Aboriginal Affairs +461973,Aboriginal Affairs,Aboriginal Affairs +461972,Aboriginal Affairs,Aboriginal Affairs +461971,Aboriginal Affairs,Aboriginal Affairs +461970,Aboriginal Affairs,Aboriginal Affairs +461969,Aboriginal Affairs,Aboriginal Affairs +510884,Aboriginal Affairs,Aboriginal Affairs +510870,Aboriginal Affairs,Aboriginal Affairs +504524,Aboriginal Affairs,Aboriginal Affairs +503498,Aboriginal Affairs,Aboriginal Affairs +503139,Aboriginal Affairs,Aboriginal Affairs +500114,Aboriginal Affairs,Aboriginal Affairs +500003,Aboriginal Affairs,Aboriginal Affairs +496966,Aboriginal Affairs,Aboriginal Affairs +493583,Aboriginal Affairs,Aboriginal Affairs +486473,Aboriginal Affairs,Aboriginal Affairs +485592,Aboriginal Affairs,Aboriginal Affairs +485415,Aboriginal Affairs,Aboriginal Affairs +481426,Aboriginal Affairs,Aboriginal Affairs +476161,Aboriginal Affairs,Aboriginal Affairs +466465,Aboriginal Affairs,Aboriginal Affairs +465659,Aboriginal Affairs,Aboriginal Affairs +465658,Aboriginal Affairs,Aboriginal Affairs +465657,Aboriginal Affairs,Aboriginal Affairs +465641,Aboriginal Affairs,Aboriginal Affairs +465640,Aboriginal Affairs,Aboriginal Affairs +465639,Aboriginal Affairs,Aboriginal Affairs +465218,Aboriginal Affairs,Aboriginal Affairs +461350,Aboriginal Affairs,Aboriginal Affairs +461347,Aboriginal Affairs,Aboriginal Affairs +460294,Aboriginal Affairs,Aboriginal Affairs +460825,Arts and Culture,Arts and Culture +460063,Arts and Culture,Arts and Culture +492052,Arts and Culture,Arts and Culture +463015,Arts and Culture,Arts and Culture +475991,Science and Technology,Science and Technology +473720,Science and Technology,Science and Technology +465203,Science and Technology,Science and Technology +460559,Aboriginal Affairs,Aboriginal Affairs +516384,Aboriginal Affairs,Aboriginal Affairs +460873,Arts and Culture,Arts and Culture +460445,Arts and Culture,Arts and Culture +518623,Arts and Culture,Arts and Culture +506254,Arts and Culture,Arts and Culture +502326,Arts and Culture,Arts and Culture +502324,Arts and Culture,Arts and Culture +502318,Arts and Culture,Arts and Culture +496470,Arts and Culture,Arts and Culture +495275,Arts and Culture,Arts and Culture +491955,Arts and Culture,Arts and Culture +489584,Arts and Culture,Arts and Culture +470074,Arts and Culture,Arts and Culture +463715,Arts and Culture,Arts and Culture +463714,Arts and Culture,Arts and Culture +462140,Arts and Culture,Arts and Culture +471194,Broadcasting,Broadcasting +471193,Broadcasting,Broadcasting +466167,Arts and Culture,Arts and Culture +462350,Science and Technology,Science and Technology +461806,Science and Technology,Science and Technology +523540,Science and Technology,Science and Technology +486086,Science and Technology,Science and Technology +480437,Science and Technology,Science and Technology +480436,Science and Technology,Science and Technology +468711,Science and Technology,Science and Technology +465634,Science and Technology,Science and Technology +465633,Science and Technology,Science and Technology +465632,Science and Technology,Science and Technology +465631,Science and Technology,Science and Technology +465630,Science and Technology,Science and Technology +462667,Science and Technology,Science and Technology +461811,Science and Technology,Science and Technology +462729,Aboriginal Affairs,Aboriginal Affairs +462727,Aboriginal Affairs,Aboriginal Affairs +517134,Aboriginal Affairs,Aboriginal Affairs +464732,Aboriginal Affairs,Aboriginal Affairs +464726,Aboriginal Affairs,Aboriginal Affairs +499498,Aboriginal Affairs,Aboriginal Affairs +464736,Aboriginal Affairs,Aboriginal Affairs +464742,Aboriginal Affairs,Aboriginal Affairs +499524,Aboriginal Affairs,Aboriginal Affairs +464753,Aboriginal Affairs,Aboriginal Affairs +464751,Aboriginal Affairs,Aboriginal Affairs +464749,Aboriginal Affairs,Aboriginal Affairs +464747,Aboriginal Affairs,Aboriginal Affairs +461018,Arts and Culture,Arts and Culture +461017,Arts and Culture,Arts and Culture +490261,Telecommunications,Telecommunications +465691,Telecommunications,Telecommunications +490365,Telecommunications,Telecommunications +468299,Science and Technology,Science and Technology +464051,Science and Technology,Science and Technology +532167,Science and Technology,Science and Technology +522231,Science and Technology,Science and Technology +518901,Science and Technology,Science and Technology +513350,Science and Technology,Science and Technology +508528,Science and Technology,Science and Technology +506025,Science and Technology,Science and Technology +506024,Science and Technology,Science and Technology +502212,Science and Technology,Science and Technology +488317,Science and Technology,Science and Technology +488315,Science and Technology,Science and Technology +488311,Science and Technology,Science and Technology +478151,Science and Technology,Science and Technology +478015,Science and Technology,Science and Technology +477995,Science and Technology,Science and Technology +475408,Science and Technology,Science and Technology +475400,Science and Technology,Science and Technology +475392,Science and Technology,Science and Technology +475376,Science and Technology,Science and Technology +475363,Science and Technology,Science and Technology +473661,Science and Technology,Science and Technology +472517,Science and Technology,Science and Technology +472513,Science and Technology,Science and Technology +472511,Science and Technology,Science and Technology +470900,Science and Technology,Science and Technology +470890,Science and Technology,Science and Technology +468306,Science and Technology,Science and Technology +513642,Science and Technology,Science and Technology +512323,Science and Technology,Science and Technology +532049,Science and Technology,Science and Technology +532045,Science and Technology,Science and Technology +529539,Science and Technology,Science and Technology +526107,Science and Technology,Science and Technology +526102,Science and Technology,Science and Technology +462088,Aboriginal Affairs,Aboriginal Affairs +483107,Science and Technology,Science and Technology +493966,Aboriginal Affairs,Aboriginal Affairs +488437,Aboriginal Affairs,Aboriginal Affairs +471306,Aboriginal Affairs,Aboriginal Affairs +471305,Aboriginal Affairs,Aboriginal Affairs +471304,Aboriginal Affairs,Aboriginal Affairs +471303,Aboriginal Affairs,Aboriginal Affairs +470152,Aboriginal Affairs,Aboriginal Affairs +469683,Aboriginal Affairs,Aboriginal Affairs +469678,Aboriginal Affairs,Aboriginal Affairs +469654,Aboriginal Affairs,Aboriginal Affairs +469652,Aboriginal Affairs,Aboriginal Affairs +469651,Aboriginal Affairs,Aboriginal Affairs +469650,Aboriginal Affairs,Aboriginal Affairs +469649,Aboriginal Affairs,Aboriginal Affairs +469648,Aboriginal Affairs,Aboriginal Affairs +469647,Aboriginal Affairs,Aboriginal Affairs +469646,Aboriginal Affairs,Aboriginal Affairs +481820,Arts and Culture,Arts and Culture +478477,Arts and Culture,Arts and Culture +510412,Arts and Culture,Arts and Culture +494594,Arts and Culture,Arts and Culture +485816,Arts and Culture,Arts and Culture +485815,Arts and Culture,Arts and Culture +485814,Arts and Culture,Arts and Culture +485585,Arts and Culture,Arts and Culture +461867,Aboriginal Affairs,Aboriginal Affairs +542920,Aboriginal Affairs,Aboriginal Affairs +537802,Aboriginal Affairs,Aboriginal Affairs +522302,Aboriginal Affairs,Aboriginal Affairs +514636,Aboriginal Affairs,Aboriginal Affairs +510034,Aboriginal Affairs,Aboriginal Affairs +507117,Aboriginal Affairs,Aboriginal Affairs +519772,Aboriginal Affairs,Aboriginal Affairs +494550,Aboriginal Affairs,Aboriginal Affairs +537798,Aboriginal Affairs,Aboriginal Affairs +531340,Aboriginal Affairs,Aboriginal Affairs +525516,Aboriginal Affairs,Aboriginal Affairs +469035,Science and Technology,Science and Technology +469031,Science and Technology,Science and Technology +481112,Science and Technology,Science and Technology +471479,Science and Technology,Science and Technology +471475,Science and Technology,Science and Technology +471474,Science and Technology,Science and Technology +469039,Science and Technology,Science and Technology +469038,Science and Technology,Science and Technology +469037,Science and Technology,Science and Technology +463827,Broadcasting,Broadcasting +467298,Aboriginal Affairs,Aboriginal Affairs +467296,Aboriginal Affairs,Aboriginal Affairs +542507,Arts and Culture,Arts and Culture +522721,Broadcasting,Broadcasting +522720,Broadcasting,Broadcasting +477532,Broadcasting,Broadcasting +471878,Broadcasting,Broadcasting +471299,Broadcasting,Broadcasting +469493,Broadcasting,Broadcasting +522723,Broadcasting,Broadcasting +469493,Science and Technology,Science and Technology +477532,Science and Technology,Science and Technology +471878,Science and Technology,Science and Technology +463067,Arts and Culture,Arts and Culture +543757,Arts and Culture,Arts and Culture +543754,Arts and Culture,Arts and Culture +493655,Arts and Culture,Arts and Culture +488075,Arts and Culture,Arts and Culture +483807,Arts and Culture,Arts and Culture +483800,Arts and Culture,Arts and Culture +481552,Arts and Culture,Arts and Culture +479252,Arts and Culture,Arts and Culture +479251,Arts and Culture,Arts and Culture +479250,Arts and Culture,Arts and Culture +479249,Arts and Culture,Arts and Culture +477166,Arts and Culture,Arts and Culture +477164,Arts and Culture,Arts and Culture +477161,Arts and Culture,Arts and Culture +477158,Arts and Culture,Arts and Culture +472405,Arts and Culture,Arts and Culture +472404,Arts and Culture,Arts and Culture +472402,Arts and Culture,Arts and Culture +472401,Arts and Culture,Arts and Culture +472400,Arts and Culture,Arts and Culture +472399,Arts and Culture,Arts and Culture +472394,Arts and Culture,Arts and Culture +472393,Arts and Culture,Arts and Culture +472245,Arts and Culture,Arts and Culture +472244,Arts and Culture,Arts and Culture +472243,Arts and Culture,Arts and Culture +469442,Arts and Culture,Arts and Culture +469441,Arts and Culture,Arts and Culture +469440,Arts and Culture,Arts and Culture +469439,Arts and Culture,Arts and Culture +469438,Arts and Culture,Arts and Culture +469434,Arts and Culture,Arts and Culture +469433,Arts and Culture,Arts and Culture +469430,Arts and Culture,Arts and Culture +469429,Arts and Culture,Arts and Culture +469428,Arts and Culture,Arts and Culture +469427,Arts and Culture,Arts and Culture +466093,Arts and Culture,Arts and Culture +466092,Arts and Culture,Arts and Culture +466089,Arts and Culture,Arts and Culture +463298,Arts and Culture,Arts and Culture +463298,Telecommunications,Telecommunications +466526,Aboriginal Affairs,Aboriginal Affairs +499600,Aboriginal Affairs,Aboriginal Affairs +466535,Aboriginal Affairs,Aboriginal Affairs +466534,Aboriginal Affairs,Aboriginal Affairs +466532,Aboriginal Affairs,Aboriginal Affairs +466531,Aboriginal Affairs,Aboriginal Affairs +464269,Aboriginal Affairs,Aboriginal Affairs +541571,Aboriginal Affairs,Aboriginal Affairs +538122,Aboriginal Affairs,Aboriginal Affairs +538120,Aboriginal Affairs,Aboriginal Affairs +538119,Aboriginal Affairs,Aboriginal Affairs +532083,Aboriginal Affairs,Aboriginal Affairs +528176,Aboriginal Affairs,Aboriginal Affairs +525550,Aboriginal Affairs,Aboriginal Affairs +522462,Aboriginal Affairs,Aboriginal Affairs +522460,Aboriginal Affairs,Aboriginal Affairs +519994,Aboriginal Affairs,Aboriginal Affairs +517461,Aboriginal Affairs,Aboriginal Affairs +517451,Aboriginal Affairs,Aboriginal Affairs +515794,Aboriginal Affairs,Aboriginal Affairs +515787,Aboriginal Affairs,Aboriginal Affairs +514028,Aboriginal Affairs,Aboriginal Affairs +513438,Aboriginal Affairs,Aboriginal Affairs +510274,Aboriginal Affairs,Aboriginal Affairs +507087,Aboriginal Affairs,Aboriginal Affairs +506900,Aboriginal Affairs,Aboriginal Affairs +506899,Aboriginal Affairs,Aboriginal Affairs +506898,Aboriginal Affairs,Aboriginal Affairs +504085,Aboriginal Affairs,Aboriginal Affairs +497290,Aboriginal Affairs,Aboriginal Affairs +493402,Aboriginal Affairs,Aboriginal Affairs +491464,Aboriginal Affairs,Aboriginal Affairs +476419,Aboriginal Affairs,Aboriginal Affairs +472547,Aboriginal Affairs,Aboriginal Affairs +471632,Aboriginal Affairs,Aboriginal Affairs +471355,Aboriginal Affairs,Aboriginal Affairs +470340,Aboriginal Affairs,Aboriginal Affairs +470334,Aboriginal Affairs,Aboriginal Affairs +465491,Aboriginal Affairs,Aboriginal Affairs +465488,Aboriginal Affairs,Aboriginal Affairs +465487,Aboriginal Affairs,Aboriginal Affairs +474127,Science and Technology,Science and Technology +462688,Science and Technology,Science and Technology +469187,Broadcasting,Broadcasting +469186,Broadcasting,Broadcasting +475344,Broadcasting,Broadcasting +467195,Aboriginal Affairs,Aboriginal Affairs +517695,Aboriginal Affairs,Aboriginal Affairs +486703,Aboriginal Affairs,Aboriginal Affairs +486701,Aboriginal Affairs,Aboriginal Affairs +470350,Aboriginal Affairs,Aboriginal Affairs +473342,Aboriginal Affairs,Aboriginal Affairs +469727,Aboriginal Affairs,Aboriginal Affairs +469726,Aboriginal Affairs,Aboriginal Affairs +469721,Aboriginal Affairs,Aboriginal Affairs +468227,Aboriginal Affairs,Aboriginal Affairs +467911,Aboriginal Affairs,Aboriginal Affairs +467901,Aboriginal Affairs,Aboriginal Affairs +467888,Aboriginal Affairs,Aboriginal Affairs +465090,Aboriginal Affairs,Aboriginal Affairs +464084,Aboriginal Affairs,Aboriginal Affairs +464074,Aboriginal Affairs,Aboriginal Affairs +491952,Aboriginal Affairs,Aboriginal Affairs +491951,Aboriginal Affairs,Aboriginal Affairs +486795,Aboriginal Affairs,Aboriginal Affairs +486791,Aboriginal Affairs,Aboriginal Affairs +483681,Aboriginal Affairs,Aboriginal Affairs +479100,Aboriginal Affairs,Aboriginal Affairs +476901,Aboriginal Affairs,Aboriginal Affairs +474957,Aboriginal Affairs,Aboriginal Affairs +473355,Aboriginal Affairs,Aboriginal Affairs +486791,Telecommunications,Telecommunications +483681,Telecommunications,Telecommunications +479100,Telecommunications,Telecommunications +476901,Telecommunications,Telecommunications +474957,Telecommunications,Telecommunications +473355,Telecommunications,Telecommunications +473353,Telecommunications,Telecommunications +473342,Telecommunications,Telecommunications +469727,Telecommunications,Telecommunications +469726,Telecommunications,Telecommunications +469721,Telecommunications,Telecommunications +468227,Telecommunications,Telecommunications +467911,Telecommunications,Telecommunications +467901,Telecommunications,Telecommunications +467888,Telecommunications,Telecommunications +465090,Telecommunications,Telecommunications +464084,Telecommunications,Telecommunications +464074,Telecommunications,Telecommunications +491952,Telecommunications,Telecommunications +491951,Telecommunications,Telecommunications +470198,Aboriginal Affairs,Aboriginal Affairs +467647,Aboriginal Affairs,Aboriginal Affairs +477804,Aboriginal Affairs,Aboriginal Affairs +473239,Aboriginal Affairs,Aboriginal Affairs +529382,Aboriginal Affairs,Aboriginal Affairs +491666,Aboriginal Affairs,Aboriginal Affairs +487408,Aboriginal Affairs,Aboriginal Affairs +479971,Aboriginal Affairs,Aboriginal Affairs +477810,Aboriginal Affairs,Aboriginal Affairs +463122,Arts and Culture,Arts and Culture +521706,Arts and Culture,Arts and Culture +503554,Arts and Culture,Arts and Culture +503551,Arts and Culture,Arts and Culture +500607,Arts and Culture,Arts and Culture +500606,Arts and Culture,Arts and Culture +497095,Arts and Culture,Arts and Culture +496939,Arts and Culture,Arts and Culture +494076,Arts and Culture,Arts and Culture +492279,Arts and Culture,Arts and Culture +489352,Arts and Culture,Arts and Culture +488827,Arts and Culture,Arts and Culture +488826,Arts and Culture,Arts and Culture +485971,Arts and Culture,Arts and Culture +466232,Arts and Culture,Arts and Culture +463705,Arts and Culture,Arts and Culture +463701,Arts and Culture,Arts and Culture +463128,Arts and Culture,Arts and Culture +463201,Aboriginal Affairs,Aboriginal Affairs +463198,Aboriginal Affairs,Aboriginal Affairs +478611,Aboriginal Affairs,Aboriginal Affairs +465634,Aboriginal Affairs,Aboriginal Affairs +465633,Aboriginal Affairs,Aboriginal Affairs +479294,Arts and Culture,Arts and Culture +479007,Arts and Culture,Arts and Culture +479006,Arts and Culture,Arts and Culture +479005,Arts and Culture,Arts and Culture +478447,Arts and Culture,Arts and Culture +476232,Arts and Culture,Arts and Culture +475906,Arts and Culture,Arts and Culture +475902,Arts and Culture,Arts and Culture +472819,Arts and Culture,Arts and Culture +472800,Arts and Culture,Arts and Culture +470753,Arts and Culture,Arts and Culture +469115,Arts and Culture,Arts and Culture +464659,Arts and Culture,Arts and Culture +464632,Arts and Culture,Arts and Culture +504929,Arts and Culture,Arts and Culture +494387,Arts and Culture,Arts and Culture +489074,Arts and Culture,Arts and Culture +489073,Arts and Culture,Arts and Culture +482883,Arts and Culture,Arts and Culture +479007,Broadcasting,Broadcasting +479006,Broadcasting,Broadcasting +479005,Broadcasting,Broadcasting +478447,Broadcasting,Broadcasting +476232,Broadcasting,Broadcasting +475906,Broadcasting,Broadcasting +475902,Broadcasting,Broadcasting +472819,Broadcasting,Broadcasting +472800,Broadcasting,Broadcasting +470753,Broadcasting,Broadcasting +469116,Broadcasting,Broadcasting +469115,Broadcasting,Broadcasting +469114,Broadcasting,Broadcasting +469112,Broadcasting,Broadcasting +469111,Broadcasting,Broadcasting +464659,Broadcasting,Broadcasting +464632,Broadcasting,Broadcasting +504929,Broadcasting,Broadcasting +494387,Broadcasting,Broadcasting +489074,Broadcasting,Broadcasting +489073,Broadcasting,Broadcasting +482883,Broadcasting,Broadcasting +482228,Broadcasting,Broadcasting +535789,Aboriginal Affairs,Aboriginal Affairs +535784,Aboriginal Affairs,Aboriginal Affairs +510314,Aboriginal Affairs,Aboriginal Affairs +510313,Aboriginal Affairs,Aboriginal Affairs +510312,Aboriginal Affairs,Aboriginal Affairs +507351,Aboriginal Affairs,Aboriginal Affairs +498179,Aboriginal Affairs,Aboriginal Affairs +498177,Aboriginal Affairs,Aboriginal Affairs +469177,Aboriginal Affairs,Aboriginal Affairs +465424,Aboriginal Affairs,Aboriginal Affairs +544312,Aboriginal Affairs,Aboriginal Affairs +544306,Aboriginal Affairs,Aboriginal Affairs +544305,Aboriginal Affairs,Aboriginal Affairs +544302,Aboriginal Affairs,Aboriginal Affairs +544301,Aboriginal Affairs,Aboriginal Affairs +544300,Aboriginal Affairs,Aboriginal Affairs +544297,Aboriginal Affairs,Aboriginal Affairs +466242,Science and Technology,Science and Technology +465453,Science and Technology,Science and Technology +509211,Science and Technology,Science and Technology +500444,Science and Technology,Science and Technology +480600,Science and Technology,Science and Technology +539922,Arts and Culture,Arts and Culture +535012,Arts and Culture,Arts and Culture +511040,Arts and Culture,Arts and Culture +508544,Arts and Culture,Arts and Culture +474920,Arts and Culture,Arts and Culture +511040,Broadcasting,Broadcasting +508544,Broadcasting,Broadcasting +539922,Broadcasting,Broadcasting +521405,Science and Technology,Science and Technology +521404,Science and Technology,Science and Technology +464061,Arts and Culture,Arts and Culture +464056,Arts and Culture,Arts and Culture +474083,Arts and Culture,Arts and Culture +464072,Arts and Culture,Arts and Culture +464071,Arts and Culture,Arts and Culture +464070,Arts and Culture,Arts and Culture +464069,Arts and Culture,Arts and Culture +464068,Arts and Culture,Arts and Culture +464067,Arts and Culture,Arts and Culture +464066,Arts and Culture,Arts and Culture +464065,Arts and Culture,Arts and Culture +470500,Broadcasting,Broadcasting +470489,Broadcasting,Broadcasting +470500,Telecommunications,Telecommunications +470489,Telecommunications,Telecommunications +469168,Arts and Culture,Arts and Culture +469167,Arts and Culture,Arts and Culture +470620,Arts and Culture,Arts and Culture +498834,Broadcasting,Broadcasting +495280,Broadcasting,Broadcasting +528639,Broadcasting,Broadcasting +525749,Broadcasting,Broadcasting +525606,Broadcasting,Broadcasting +525564,Broadcasting,Broadcasting +508476,Broadcasting,Broadcasting +508145,Broadcasting,Broadcasting +508145,Telecommunications,Telecommunications +508476,Arts and Culture,Arts and Culture +508145,Arts and Culture,Arts and Culture +528639,Arts and Culture,Arts and Culture +525749,Arts and Culture,Arts and Culture +525606,Arts and Culture,Arts and Culture +495476,Aboriginal Affairs,Aboriginal Affairs +489991,Aboriginal Affairs,Aboriginal Affairs +467194,Aboriginal Affairs,Aboriginal Affairs +495716,Aboriginal Affairs,Aboriginal Affairs +465225,Science and Technology,Science and Technology +465175,Science and Technology,Science and Technology +473500,Science and Technology,Science and Technology +468852,Science and Technology,Science and Technology +465270,Science and Technology,Science and Technology +465236,Science and Technology,Science and Technology +517158,Aboriginal Affairs,Aboriginal Affairs +464127,Arts and Culture,Arts and Culture +464126,Arts and Culture,Arts and Culture +481690,Arts and Culture,Arts and Culture +474091,Arts and Culture,Arts and Culture +464136,Arts and Culture,Arts and Culture +464135,Arts and Culture,Arts and Culture +464134,Arts and Culture,Arts and Culture +464133,Arts and Culture,Arts and Culture +464132,Arts and Culture,Arts and Culture +464131,Arts and Culture,Arts and Culture +464130,Arts and Culture,Arts and Culture +464129,Arts and Culture,Arts and Culture +466745,Broadcasting,Broadcasting +465408,Broadcasting,Broadcasting +540486,Broadcasting,Broadcasting +540485,Broadcasting,Broadcasting +536674,Broadcasting,Broadcasting +536673,Broadcasting,Broadcasting +532534,Broadcasting,Broadcasting +523633,Broadcasting,Broadcasting +523632,Broadcasting,Broadcasting +520559,Broadcasting,Broadcasting +520558,Broadcasting,Broadcasting +516326,Broadcasting,Broadcasting +506622,Broadcasting,Broadcasting +500122,Broadcasting,Broadcasting +494748,Broadcasting,Broadcasting +494747,Broadcasting,Broadcasting +494069,Broadcasting,Broadcasting +493925,Broadcasting,Broadcasting +492104,Broadcasting,Broadcasting +489585,Broadcasting,Broadcasting +488359,Broadcasting,Broadcasting +485548,Broadcasting,Broadcasting +485387,Broadcasting,Broadcasting +482789,Broadcasting,Broadcasting +482770,Broadcasting,Broadcasting +478730,Broadcasting,Broadcasting +474356,Broadcasting,Broadcasting +473487,Broadcasting,Broadcasting +473484,Broadcasting,Broadcasting +473476,Broadcasting,Broadcasting +473470,Broadcasting,Broadcasting +476008,Science and Technology,Science and Technology +491432,Telecommunications,Telecommunications +465695,Aboriginal Affairs,Aboriginal Affairs +465516,Aboriginal Affairs,Aboriginal Affairs +474030,Aboriginal Affairs,Aboriginal Affairs +466905,Aboriginal Affairs,Aboriginal Affairs +466461,Aboriginal Affairs,Aboriginal Affairs +466458,Aboriginal Affairs,Aboriginal Affairs +465697,Aboriginal Affairs,Aboriginal Affairs +474924,Science and Technology,Science and Technology +468610,Aboriginal Affairs,Aboriginal Affairs +468609,Aboriginal Affairs,Aboriginal Affairs +487533,Aboriginal Affairs,Aboriginal Affairs +468613,Aboriginal Affairs,Aboriginal Affairs +468612,Aboriginal Affairs,Aboriginal Affairs +467903,Broadcasting,Broadcasting +467898,Broadcasting,Broadcasting +474809,Aboriginal Affairs,Aboriginal Affairs +474808,Aboriginal Affairs,Aboriginal Affairs +489105,Aboriginal Affairs,Aboriginal Affairs +474817,Aboriginal Affairs,Aboriginal Affairs +474816,Aboriginal Affairs,Aboriginal Affairs +474814,Aboriginal Affairs,Aboriginal Affairs +474813,Aboriginal Affairs,Aboriginal Affairs +467903,Arts and Culture,Arts and Culture +467898,Arts and Culture,Arts and Culture +467903,Telecommunications,Telecommunications +467898,Telecommunications,Telecommunications +465505,Aboriginal Affairs,Aboriginal Affairs +465504,Aboriginal Affairs,Aboriginal Affairs +465507,Aboriginal Affairs,Aboriginal Affairs +468025,Science and Technology,Science and Technology +468023,Science and Technology,Science and Technology +474009,Science and Technology,Science and Technology +468025,Telecommunications,Telecommunications +468023,Telecommunications,Telecommunications +474009,Telecommunications,Telecommunications +467793,Arts and Culture,Arts and Culture +467791,Arts and Culture,Arts and Culture +465688,Arts and Culture,Arts and Culture +468395,Arts and Culture,Arts and Culture +468393,Arts and Culture,Arts and Culture +468395,Broadcasting,Broadcasting +468393,Broadcasting,Broadcasting +468395,Telecommunications,Telecommunications +468393,Telecommunications,Telecommunications +498660,Science and Technology,Science and Technology +494934,Science and Technology,Science and Technology +481196,Science and Technology,Science and Technology +478038,Science and Technology,Science and Technology +478032,Science and Technology,Science and Technology +478026,Science and Technology,Science and Technology +466489,Broadcasting,Broadcasting +466486,Broadcasting,Broadcasting +496077,Broadcasting,Broadcasting +496076,Broadcasting,Broadcasting +496075,Broadcasting,Broadcasting +496072,Broadcasting,Broadcasting +496070,Broadcasting,Broadcasting +492847,Broadcasting,Broadcasting +492844,Broadcasting,Broadcasting +490491,Broadcasting,Broadcasting +490488,Broadcasting,Broadcasting +490482,Broadcasting,Broadcasting +490478,Broadcasting,Broadcasting +490475,Broadcasting,Broadcasting +490473,Broadcasting,Broadcasting +490469,Broadcasting,Broadcasting +490465,Broadcasting,Broadcasting +490462,Broadcasting,Broadcasting +490459,Broadcasting,Broadcasting +490457,Broadcasting,Broadcasting +490456,Broadcasting,Broadcasting +490452,Broadcasting,Broadcasting +490449,Broadcasting,Broadcasting +490446,Broadcasting,Broadcasting +490444,Broadcasting,Broadcasting +490435,Broadcasting,Broadcasting +487838,Broadcasting,Broadcasting +487836,Broadcasting,Broadcasting +487835,Broadcasting,Broadcasting +487833,Broadcasting,Broadcasting +487832,Broadcasting,Broadcasting +487830,Broadcasting,Broadcasting +487820,Broadcasting,Broadcasting +484870,Broadcasting,Broadcasting +481817,Broadcasting,Broadcasting +477842,Broadcasting,Broadcasting +475267,Broadcasting,Broadcasting +475266,Broadcasting,Broadcasting +475265,Broadcasting,Broadcasting +475262,Broadcasting,Broadcasting +475261,Broadcasting,Broadcasting +473050,Broadcasting,Broadcasting +473048,Broadcasting,Broadcasting +473047,Broadcasting,Broadcasting +473040,Broadcasting,Broadcasting +473016,Broadcasting,Broadcasting +466493,Broadcasting,Broadcasting +466489,Telecommunications,Telecommunications +466486,Telecommunications,Telecommunications +496077,Telecommunications,Telecommunications +496076,Telecommunications,Telecommunications +496075,Telecommunications,Telecommunications +496072,Telecommunications,Telecommunications +496070,Telecommunications,Telecommunications +492847,Telecommunications,Telecommunications +492844,Telecommunications,Telecommunications +490491,Telecommunications,Telecommunications +490488,Telecommunications,Telecommunications +490482,Telecommunications,Telecommunications +490478,Telecommunications,Telecommunications +490475,Telecommunications,Telecommunications +490473,Telecommunications,Telecommunications +490469,Telecommunications,Telecommunications +490465,Telecommunications,Telecommunications +490459,Telecommunications,Telecommunications +490457,Telecommunications,Telecommunications +490456,Telecommunications,Telecommunications +490452,Telecommunications,Telecommunications +490449,Telecommunications,Telecommunications +490446,Telecommunications,Telecommunications +490444,Telecommunications,Telecommunications +490435,Telecommunications,Telecommunications +487838,Telecommunications,Telecommunications +487836,Telecommunications,Telecommunications +487835,Telecommunications,Telecommunications +487833,Telecommunications,Telecommunications +487832,Telecommunications,Telecommunications +487830,Telecommunications,Telecommunications +487820,Telecommunications,Telecommunications +484870,Telecommunications,Telecommunications +481817,Telecommunications,Telecommunications +475267,Telecommunications,Telecommunications +475266,Telecommunications,Telecommunications +475264,Telecommunications,Telecommunications +475262,Telecommunications,Telecommunications +475260,Telecommunications,Telecommunications +473047,Telecommunications,Telecommunications +473040,Telecommunications,Telecommunications +473016,Telecommunications,Telecommunications +466493,Telecommunications,Telecommunications +466745,Aboriginal Affairs,Aboriginal Affairs +465408,Aboriginal Affairs,Aboriginal Affairs +520001,Aboriginal Affairs,Aboriginal Affairs +487828,Aboriginal Affairs,Aboriginal Affairs +487826,Aboriginal Affairs,Aboriginal Affairs +487824,Aboriginal Affairs,Aboriginal Affairs +466488,Aboriginal Affairs,Aboriginal Affairs +492235,Telecommunications,Telecommunications +482966,Telecommunications,Telecommunications +480590,Telecommunications,Telecommunications +480589,Telecommunications,Telecommunications +468755,Aboriginal Affairs,Aboriginal Affairs +474481,Aboriginal Affairs,Aboriginal Affairs +474480,Aboriginal Affairs,Aboriginal Affairs +509482,Aboriginal Affairs,Aboriginal Affairs +509119,Aboriginal Affairs,Aboriginal Affairs +492840,Aboriginal Affairs,Aboriginal Affairs +485706,Aboriginal Affairs,Aboriginal Affairs +475054,Aboriginal Affairs,Aboriginal Affairs +474919,Aboriginal Affairs,Aboriginal Affairs +474917,Aboriginal Affairs,Aboriginal Affairs +474821,Aboriginal Affairs,Aboriginal Affairs +474483,Aboriginal Affairs,Aboriginal Affairs +526807,Aboriginal Affairs,Aboriginal Affairs +520580,Aboriginal Affairs,Aboriginal Affairs +466176,Aboriginal Affairs,Aboriginal Affairs +466175,Aboriginal Affairs,Aboriginal Affairs +465756,Aboriginal Affairs,Aboriginal Affairs +530398,Aboriginal Affairs,Aboriginal Affairs +465874,Broadcasting,Broadcasting +465870,Broadcasting,Broadcasting +479763,Aboriginal Affairs,Aboriginal Affairs +504158,Aboriginal Affairs,Aboriginal Affairs +480800,Aboriginal Affairs,Aboriginal Affairs +478420,Aboriginal Affairs,Aboriginal Affairs +544171,Aboriginal Affairs,Aboriginal Affairs +538390,Aboriginal Affairs,Aboriginal Affairs +529127,Aboriginal Affairs,Aboriginal Affairs +493803,Aboriginal Affairs,Aboriginal Affairs +478663,Aboriginal Affairs,Aboriginal Affairs +465879,Aboriginal Affairs,Aboriginal Affairs +484874,Science and Technology,Science and Technology +475263,Science and Technology,Science and Technology +517376,Science and Technology,Science and Technology +510577,Science and Technology,Science and Technology +510575,Science and Technology,Science and Technology +504876,Science and Technology,Science and Technology +498705,Science and Technology,Science and Technology +492851,Science and Technology,Science and Technology +492848,Science and Technology,Science and Technology +492845,Science and Technology,Science and Technology +492843,Science and Technology,Science and Technology +490500,Science and Technology,Science and Technology +490498,Science and Technology,Science and Technology +490497,Science and Technology,Science and Technology +487831,Science and Technology,Science and Technology +487827,Science and Technology,Science and Technology +492069,Broadcasting,Broadcasting +474082,Broadcasting,Broadcasting +492069,Arts and Culture,Arts and Culture +474082,Arts and Culture,Arts and Culture +467305,Arts and Culture,Arts and Culture +467301,Arts and Culture,Arts and Culture +467309,Arts and Culture,Arts and Culture +467307,Arts and Culture,Arts and Culture +467305,Broadcasting,Broadcasting +467301,Broadcasting,Broadcasting +467309,Broadcasting,Broadcasting +467307,Broadcasting,Broadcasting +467305,Telecommunications,Telecommunications +467301,Telecommunications,Telecommunications +467309,Telecommunications,Telecommunications +467307,Telecommunications,Telecommunications +500279,Science and Technology,Science and Technology +488636,Science and Technology,Science and Technology +531382,Science and Technology,Science and Technology +529782,Science and Technology,Science and Technology +516481,Science and Technology,Science and Technology +516378,Science and Technology,Science and Technology +516355,Science and Technology,Science and Technology +516255,Science and Technology,Science and Technology +512367,Science and Technology,Science and Technology +510012,Science and Technology,Science and Technology +506109,Science and Technology,Science and Technology +534521,Science and Technology,Science and Technology +516632,Science and Technology,Science and Technology +506141,Science and Technology,Science and Technology +468684,Science and Technology,Science and Technology +468682,Science and Technology,Science and Technology +503320,Science and Technology,Science and Technology +486083,Science and Technology,Science and Technology +485424,Science and Technology,Science and Technology +482709,Science and Technology,Science and Technology +499704,Science and Technology,Science and Technology +493891,Science and Technology,Science and Technology +511502,Science and Technology,Science and Technology +499730,Science and Technology,Science and Technology +469448,Aboriginal Affairs,Aboriginal Affairs +509209,Aboriginal Affairs,Aboriginal Affairs +500897,Aboriginal Affairs,Aboriginal Affairs +497424,Aboriginal Affairs,Aboriginal Affairs +478608,Aboriginal Affairs,Aboriginal Affairs +472537,Aboriginal Affairs,Aboriginal Affairs +475662,Arts and Culture,Arts and Culture +472730,Arts and Culture,Arts and Culture +523031,Arts and Culture,Arts and Culture +519996,Arts and Culture,Arts and Culture +519993,Arts and Culture,Arts and Culture +519990,Arts and Culture,Arts and Culture +519984,Arts and Culture,Arts and Culture +519964,Arts and Culture,Arts and Culture +519963,Arts and Culture,Arts and Culture +499157,Arts and Culture,Arts and Culture +480107,Aboriginal Affairs,Aboriginal Affairs +470009,Aboriginal Affairs,Aboriginal Affairs +470008,Aboriginal Affairs,Aboriginal Affairs +470007,Aboriginal Affairs,Aboriginal Affairs +470006,Aboriginal Affairs,Aboriginal Affairs +470005,Aboriginal Affairs,Aboriginal Affairs +470004,Aboriginal Affairs,Aboriginal Affairs +470002,Aboriginal Affairs,Aboriginal Affairs +469998,Aboriginal Affairs,Aboriginal Affairs +468452,Aboriginal Affairs,Aboriginal Affairs +468445,Aboriginal Affairs,Aboriginal Affairs +468439,Aboriginal Affairs,Aboriginal Affairs +468436,Aboriginal Affairs,Aboriginal Affairs +468431,Aboriginal Affairs,Aboriginal Affairs +468067,Arts and Culture,Arts and Culture +468066,Arts and Culture,Arts and Culture +470836,Arts and Culture,Arts and Culture +470819,Arts and Culture,Arts and Culture +472739,Arts and Culture,Arts and Culture +472738,Arts and Culture,Arts and Culture +472734,Arts and Culture,Arts and Culture +470781,Arts and Culture,Arts and Culture +538866,Arts and Culture,Arts and Culture +472732,Arts and Culture,Arts and Culture +472729,Arts and Culture,Arts and Culture +472725,Arts and Culture,Arts and Culture +472947,Aboriginal Affairs,Aboriginal Affairs +471370,Aboriginal Affairs,Aboriginal Affairs +479600,Aboriginal Affairs,Aboriginal Affairs +477675,Aboriginal Affairs,Aboriginal Affairs +477674,Aboriginal Affairs,Aboriginal Affairs +477670,Aboriginal Affairs,Aboriginal Affairs +476382,Aboriginal Affairs,Aboriginal Affairs +475256,Aboriginal Affairs,Aboriginal Affairs +475254,Aboriginal Affairs,Aboriginal Affairs +475253,Aboriginal Affairs,Aboriginal Affairs +475252,Aboriginal Affairs,Aboriginal Affairs +475251,Aboriginal Affairs,Aboriginal Affairs +475250,Aboriginal Affairs,Aboriginal Affairs +475247,Aboriginal Affairs,Aboriginal Affairs +475246,Aboriginal Affairs,Aboriginal Affairs +475245,Aboriginal Affairs,Aboriginal Affairs +475242,Aboriginal Affairs,Aboriginal Affairs +472994,Aboriginal Affairs,Aboriginal Affairs +476074,Science and Technology,Science and Technology +476071,Science and Technology,Science and Technology +510707,Science and Technology,Science and Technology +487108,Science and Technology,Science and Technology +477984,Science and Technology,Science and Technology +491153,Science and Technology,Science and Technology +487145,Science and Technology,Science and Technology +540988,Science and Technology,Science and Technology +533098,Science and Technology,Science and Technology +476789,Telecommunications,Telecommunications +471573,Telecommunications,Telecommunications +474728,Arts and Culture,Arts and Culture +474727,Arts and Culture,Arts and Culture +513683,Arts and Culture,Arts and Culture +504643,Arts and Culture,Arts and Culture +504642,Arts and Culture,Arts and Culture +504641,Arts and Culture,Arts and Culture +504640,Arts and Culture,Arts and Culture +504630,Arts and Culture,Arts and Culture +477539,Arts and Culture,Arts and Culture +474738,Arts and Culture,Arts and Culture +474737,Arts and Culture,Arts and Culture +474736,Arts and Culture,Arts and Culture +474735,Arts and Culture,Arts and Culture +474734,Arts and Culture,Arts and Culture +474733,Arts and Culture,Arts and Culture +474732,Arts and Culture,Arts and Culture +474731,Arts and Culture,Arts and Culture +474730,Arts and Culture,Arts and Culture +469194,Arts and Culture,Arts and Culture +469193,Arts and Culture,Arts and Culture +474235,Arts and Culture,Arts and Culture +474184,Arts and Culture,Arts and Culture +469811,Arts and Culture,Arts and Culture +469784,Arts and Culture,Arts and Culture +506590,Arts and Culture,Arts and Culture +506571,Arts and Culture,Arts and Culture +511669,Arts and Culture,Arts and Culture +506809,Arts and Culture,Arts and Culture +506659,Arts and Culture,Arts and Culture +518303,Science and Technology,Science and Technology +518301,Science and Technology,Science and Technology +518246,Science and Technology,Science and Technology +514485,Science and Technology,Science and Technology +514484,Science and Technology,Science and Technology +514483,Science and Technology,Science and Technology +513791,Science and Technology,Science and Technology +513790,Science and Technology,Science and Technology +513789,Science and Technology,Science and Technology +513788,Science and Technology,Science and Technology +506477,Science and Technology,Science and Technology +506476,Science and Technology,Science and Technology +506475,Science and Technology,Science and Technology +506473,Science and Technology,Science and Technology +506472,Science and Technology,Science and Technology +506471,Science and Technology,Science and Technology +506470,Science and Technology,Science and Technology +506469,Science and Technology,Science and Technology +506219,Science and Technology,Science and Technology +506217,Science and Technology,Science and Technology +506216,Science and Technology,Science and Technology +506215,Science and Technology,Science and Technology +506214,Science and Technology,Science and Technology +506213,Science and Technology,Science and Technology +506212,Science and Technology,Science and Technology +506211,Science and Technology,Science and Technology +506210,Science and Technology,Science and Technology +506209,Science and Technology,Science and Technology +506208,Science and Technology,Science and Technology +506207,Science and Technology,Science and Technology +506206,Science and Technology,Science and Technology +506205,Science and Technology,Science and Technology +506204,Science and Technology,Science and Technology +506203,Science and Technology,Science and Technology +506202,Science and Technology,Science and Technology +506201,Science and Technology,Science and Technology +506200,Science and Technology,Science and Technology +506199,Science and Technology,Science and Technology +506198,Science and Technology,Science and Technology +506197,Science and Technology,Science and Technology +506195,Science and Technology,Science and Technology +506193,Science and Technology,Science and Technology +506192,Science and Technology,Science and Technology +506191,Science and Technology,Science and Technology +506190,Science and Technology,Science and Technology +506189,Science and Technology,Science and Technology +543100,Science and Technology,Science and Technology +543099,Science and Technology,Science and Technology +543097,Science and Technology,Science and Technology +541283,Science and Technology,Science and Technology +541282,Science and Technology,Science and Technology +541281,Science and Technology,Science and Technology +533840,Science and Technology,Science and Technology +533837,Science and Technology,Science and Technology +533834,Science and Technology,Science and Technology +528376,Science and Technology,Science and Technology +525176,Science and Technology,Science and Technology +525174,Science and Technology,Science and Technology +522571,Science and Technology,Science and Technology +522569,Science and Technology,Science and Technology +519835,Science and Technology,Science and Technology +519834,Science and Technology,Science and Technology +519833,Science and Technology,Science and Technology +472306,Science and Technology,Science and Technology +471912,Aboriginal Affairs,Aboriginal Affairs +533332,Broadcasting,Broadcasting +489077,Broadcasting,Broadcasting +469092,Broadcasting,Broadcasting +471443,Science and Technology,Science and Technology +470056,Telecommunications,Telecommunications +485260,Arts and Culture,Arts and Culture +480229,Arts and Culture,Arts and Culture +485260,Broadcasting,Broadcasting +480229,Broadcasting,Broadcasting +523150,Broadcasting,Broadcasting +469502,Science and Technology,Science and Technology +469266,Science and Technology,Science and Technology +501008,Science and Technology,Science and Technology +501005,Science and Technology,Science and Technology +501004,Science and Technology,Science and Technology +501003,Science and Technology,Science and Technology +496388,Science and Technology,Science and Technology +474316,Science and Technology,Science and Technology +474315,Science and Technology,Science and Technology +474286,Science and Technology,Science and Technology +471606,Science and Technology,Science and Technology +470642,Science and Technology,Science and Technology +470640,Science and Technology,Science and Technology +470637,Science and Technology,Science and Technology +469531,Science and Technology,Science and Technology +469530,Science and Technology,Science and Technology +473795,Science and Technology,Science and Technology +544325,Science and Technology,Science and Technology +480282,Science and Technology,Science and Technology +473806,Science and Technology,Science and Technology +473805,Science and Technology,Science and Technology +473803,Science and Technology,Science and Technology +473802,Science and Technology,Science and Technology +473800,Science and Technology,Science and Technology +473798,Science and Technology,Science and Technology +478337,Telecommunications,Telecommunications +478334,Telecommunications,Telecommunications +544325,Telecommunications,Telecommunications +499713,Telecommunications,Telecommunications +487934,Telecommunications,Telecommunications +485302,Telecommunications,Telecommunications +485298,Telecommunications,Telecommunications +485296,Telecommunications,Telecommunications +493522,Broadcasting,Broadcasting +474506,Science and Technology,Science and Technology +477888,Science and Technology,Science and Technology +478528,Science and Technology,Science and Technology +473982,Science and Technology,Science and Technology +475074,Aboriginal Affairs,Aboriginal Affairs +475070,Aboriginal Affairs,Aboriginal Affairs +476979,Aboriginal Affairs,Aboriginal Affairs +475078,Aboriginal Affairs,Aboriginal Affairs +470012,Aboriginal Affairs,Aboriginal Affairs +470010,Aboriginal Affairs,Aboriginal Affairs +480108,Aboriginal Affairs,Aboriginal Affairs +480106,Aboriginal Affairs,Aboriginal Affairs +470027,Aboriginal Affairs,Aboriginal Affairs +470026,Aboriginal Affairs,Aboriginal Affairs +470025,Aboriginal Affairs,Aboriginal Affairs +470023,Aboriginal Affairs,Aboriginal Affairs +470019,Aboriginal Affairs,Aboriginal Affairs +511292,Aboriginal Affairs,Aboriginal Affairs +472009,Science and Technology,Science and Technology +471659,Science and Technology,Science and Technology +476040,Science and Technology,Science and Technology +476037,Science and Technology,Science and Technology +476749,Science and Technology,Science and Technology +473789,Arts and Culture,Arts and Culture +473781,Arts and Culture,Arts and Culture +471645,Science and Technology,Science and Technology +471644,Science and Technology,Science and Technology +472705,Telecommunications,Telecommunications +472697,Telecommunications,Telecommunications +491735,Telecommunications,Telecommunications +476452,Arts and Culture,Arts and Culture +471519,Arts and Culture,Arts and Culture +518764,Science and Technology,Science and Technology +518725,Science and Technology,Science and Technology +545351,Science and Technology,Science and Technology +544834,Science and Technology,Science and Technology +540598,Science and Technology,Science and Technology +534434,Science and Technology,Science and Technology +480735,Aboriginal Affairs,Aboriginal Affairs +476772,Aboriginal Affairs,Aboriginal Affairs +511905,Arts and Culture,Arts and Culture +477341,Arts and Culture,Arts and Culture +471616,Arts and Culture,Arts and Culture +471615,Arts and Culture,Arts and Culture +472160,Arts and Culture,Arts and Culture +471618,Arts and Culture,Arts and Culture +485731,Science and Technology,Science and Technology +484793,Arts and Culture,Arts and Culture +479476,Arts and Culture,Arts and Culture +493459,Arts and Culture,Arts and Culture +487347,Arts and Culture,Arts and Culture +487343,Arts and Culture,Arts and Culture +487343,Aboriginal Affairs,Aboriginal Affairs +487347,Science and Technology,Science and Technology +487343,Science and Technology,Science and Technology +484800,Science and Technology,Science and Technology +484793,Science and Technology,Science and Technology +502913,Science and Technology,Science and Technology +496649,Science and Technology,Science and Technology +474908,Aboriginal Affairs,Aboriginal Affairs +474907,Aboriginal Affairs,Aboriginal Affairs +543773,Aboriginal Affairs,Aboriginal Affairs +526246,Aboriginal Affairs,Aboriginal Affairs +499855,Aboriginal Affairs,Aboriginal Affairs +499854,Aboriginal Affairs,Aboriginal Affairs +493462,Aboriginal Affairs,Aboriginal Affairs +493454,Aboriginal Affairs,Aboriginal Affairs +482109,Aboriginal Affairs,Aboriginal Affairs +479486,Aboriginal Affairs,Aboriginal Affairs +485262,Arts and Culture,Arts and Culture +482120,Arts and Culture,Arts and Culture +491687,Arts and Culture,Arts and Culture +485268,Arts and Culture,Arts and Culture +475509,Aboriginal Affairs,Aboriginal Affairs +533832,Aboriginal Affairs,Aboriginal Affairs +486550,Aboriginal Affairs,Aboriginal Affairs +486549,Aboriginal Affairs,Aboriginal Affairs +486547,Aboriginal Affairs,Aboriginal Affairs +485110,Aboriginal Affairs,Aboriginal Affairs +499084,Arts and Culture,Arts and Culture +499080,Arts and Culture,Arts and Culture +493356,Arts and Culture,Arts and Culture +493354,Arts and Culture,Arts and Culture +491444,Arts and Culture,Arts and Culture +484629,Arts and Culture,Arts and Culture +484627,Arts and Culture,Arts and Culture +479996,Arts and Culture,Arts and Culture +541576,Arts and Culture,Arts and Culture +517480,Arts and Culture,Arts and Culture +511907,Arts and Culture,Arts and Culture +507980,Arts and Culture,Arts and Culture +475643,Arts and Culture,Arts and Culture +474084,Arts and Culture,Arts and Culture +479483,Broadcasting,Broadcasting +474879,Broadcasting,Broadcasting +486695,Broadcasting,Broadcasting +484471,Broadcasting,Broadcasting +484468,Broadcasting,Broadcasting +482058,Broadcasting,Broadcasting +478650,Science and Technology,Science and Technology +472651,Science and Technology,Science and Technology +472650,Science and Technology,Science and Technology +481610,Science and Technology,Science and Technology +481609,Science and Technology,Science and Technology +481608,Science and Technology,Science and Technology +481607,Science and Technology,Science and Technology +476636,Science and Technology,Science and Technology +476634,Science and Technology,Science and Technology +476632,Science and Technology,Science and Technology +476631,Science and Technology,Science and Technology +475233,Science and Technology,Science and Technology +475232,Science and Technology,Science and Technology +475231,Science and Technology,Science and Technology +475230,Science and Technology,Science and Technology +475229,Science and Technology,Science and Technology +472660,Science and Technology,Science and Technology +472659,Science and Technology,Science and Technology +472658,Science and Technology,Science and Technology +472657,Science and Technology,Science and Technology +472656,Science and Technology,Science and Technology +472654,Science and Technology,Science and Technology +499754,Science and Technology,Science and Technology +529431,Science and Technology,Science and Technology +487340,Science and Technology,Science and Technology +529438,Science and Technology,Science and Technology +529433,Science and Technology,Science and Technology +519311,Broadcasting,Broadcasting +519309,Broadcasting,Broadcasting +490753,Broadcasting,Broadcasting +483801,Broadcasting,Broadcasting +483795,Broadcasting,Broadcasting +483793,Broadcasting,Broadcasting +481555,Broadcasting,Broadcasting +481554,Broadcasting,Broadcasting +475129,Broadcasting,Broadcasting +475127,Broadcasting,Broadcasting +537279,Broadcasting,Broadcasting +533948,Broadcasting,Broadcasting +528258,Broadcasting,Broadcasting +528257,Broadcasting,Broadcasting +528256,Broadcasting,Broadcasting +528254,Broadcasting,Broadcasting +528252,Broadcasting,Broadcasting +528250,Broadcasting,Broadcasting +524853,Broadcasting,Broadcasting +524851,Broadcasting,Broadcasting +524848,Broadcasting,Broadcasting +522283,Broadcasting,Broadcasting +522242,Broadcasting,Broadcasting +522240,Broadcasting,Broadcasting +511478,Arts and Culture,Arts and Culture +511476,Arts and Culture,Arts and Culture +475966,Arts and Culture,Arts and Culture +475965,Arts and Culture,Arts and Culture +475653,Arts and Culture,Arts and Culture +539983,Arts and Culture,Arts and Culture +539980,Arts and Culture,Arts and Culture +539979,Arts and Culture,Arts and Culture +539978,Arts and Culture,Arts and Culture +539975,Arts and Culture,Arts and Culture +539973,Arts and Culture,Arts and Culture +539968,Arts and Culture,Arts and Culture +539965,Arts and Culture,Arts and Culture +539963,Arts and Culture,Arts and Culture +539958,Arts and Culture,Arts and Culture +523332,Arts and Culture,Arts and Culture +523331,Arts and Culture,Arts and Culture +513029,Arts and Culture,Arts and Culture +513026,Arts and Culture,Arts and Culture +474242,Science and Technology,Science and Technology +472385,Science and Technology,Science and Technology +478635,Science and Technology,Science and Technology +484870,Aboriginal Affairs,Aboriginal Affairs +477842,Aboriginal Affairs,Aboriginal Affairs +475267,Aboriginal Affairs,Aboriginal Affairs +475265,Aboriginal Affairs,Aboriginal Affairs +475264,Aboriginal Affairs,Aboriginal Affairs +475261,Aboriginal Affairs,Aboriginal Affairs +475260,Aboriginal Affairs,Aboriginal Affairs +473050,Aboriginal Affairs,Aboriginal Affairs +473048,Aboriginal Affairs,Aboriginal Affairs +473016,Aboriginal Affairs,Aboriginal Affairs +496077,Aboriginal Affairs,Aboriginal Affairs +496076,Aboriginal Affairs,Aboriginal Affairs +496075,Aboriginal Affairs,Aboriginal Affairs +496072,Aboriginal Affairs,Aboriginal Affairs +496070,Aboriginal Affairs,Aboriginal Affairs +492847,Aboriginal Affairs,Aboriginal Affairs +492844,Aboriginal Affairs,Aboriginal Affairs +490491,Aboriginal Affairs,Aboriginal Affairs +490488,Aboriginal Affairs,Aboriginal Affairs +490482,Aboriginal Affairs,Aboriginal Affairs +490478,Aboriginal Affairs,Aboriginal Affairs +490475,Aboriginal Affairs,Aboriginal Affairs +490473,Aboriginal Affairs,Aboriginal Affairs +490469,Aboriginal Affairs,Aboriginal Affairs +490465,Aboriginal Affairs,Aboriginal Affairs +490462,Aboriginal Affairs,Aboriginal Affairs +490459,Aboriginal Affairs,Aboriginal Affairs +490457,Aboriginal Affairs,Aboriginal Affairs +490456,Aboriginal Affairs,Aboriginal Affairs +490452,Aboriginal Affairs,Aboriginal Affairs +490449,Aboriginal Affairs,Aboriginal Affairs +490446,Aboriginal Affairs,Aboriginal Affairs +490444,Aboriginal Affairs,Aboriginal Affairs +490435,Aboriginal Affairs,Aboriginal Affairs +487838,Aboriginal Affairs,Aboriginal Affairs +487836,Aboriginal Affairs,Aboriginal Affairs +487835,Aboriginal Affairs,Aboriginal Affairs +487833,Aboriginal Affairs,Aboriginal Affairs +487832,Aboriginal Affairs,Aboriginal Affairs +487830,Aboriginal Affairs,Aboriginal Affairs +482909,Arts and Culture,Arts and Culture +477949,Arts and Culture,Arts and Culture +477932,Arts and Culture,Arts and Culture +474574,Aboriginal Affairs,Aboriginal Affairs +474440,Aboriginal Affairs,Aboriginal Affairs +480669,Aboriginal Affairs,Aboriginal Affairs +479331,Aboriginal Affairs,Aboriginal Affairs +479126,Aboriginal Affairs,Aboriginal Affairs +478823,Aboriginal Affairs,Aboriginal Affairs +478521,Broadcasting,Broadcasting +478520,Broadcasting,Broadcasting +478519,Broadcasting,Broadcasting +477874,Broadcasting,Broadcasting +477867,Broadcasting,Broadcasting +477495,Broadcasting,Broadcasting +477486,Broadcasting,Broadcasting +477418,Broadcasting,Broadcasting +477413,Broadcasting,Broadcasting +477409,Broadcasting,Broadcasting +476938,Broadcasting,Broadcasting +476478,Broadcasting,Broadcasting +476476,Broadcasting,Broadcasting +476261,Broadcasting,Broadcasting +476260,Broadcasting,Broadcasting +476259,Broadcasting,Broadcasting +474597,Broadcasting,Broadcasting +474451,Broadcasting,Broadcasting +474450,Broadcasting,Broadcasting +474449,Broadcasting,Broadcasting +474448,Broadcasting,Broadcasting +474447,Broadcasting,Broadcasting +497417,Broadcasting,Broadcasting +497129,Broadcasting,Broadcasting +497128,Broadcasting,Broadcasting +497127,Broadcasting,Broadcasting +496916,Broadcasting,Broadcasting +496915,Broadcasting,Broadcasting +496914,Broadcasting,Broadcasting +496912,Broadcasting,Broadcasting +495428,Broadcasting,Broadcasting +495100,Broadcasting,Broadcasting +495099,Broadcasting,Broadcasting +495098,Broadcasting,Broadcasting +495033,Broadcasting,Broadcasting +495032,Broadcasting,Broadcasting +495030,Broadcasting,Broadcasting +495029,Broadcasting,Broadcasting +495027,Broadcasting,Broadcasting +495025,Broadcasting,Broadcasting +495024,Broadcasting,Broadcasting +495022,Broadcasting,Broadcasting +494921,Broadcasting,Broadcasting +494919,Broadcasting,Broadcasting +478673,Broadcasting,Broadcasting +511041,Aboriginal Affairs,Aboriginal Affairs +511035,Aboriginal Affairs,Aboriginal Affairs +507930,Aboriginal Affairs,Aboriginal Affairs +507922,Aboriginal Affairs,Aboriginal Affairs +507920,Aboriginal Affairs,Aboriginal Affairs +505099,Aboriginal Affairs,Aboriginal Affairs +505095,Aboriginal Affairs,Aboriginal Affairs +505092,Aboriginal Affairs,Aboriginal Affairs +538403,Aboriginal Affairs,Aboriginal Affairs +480766,Science and Technology,Science and Technology +480762,Science and Technology,Science and Technology +480769,Science and Technology,Science and Technology +480768,Science and Technology,Science and Technology +484130,Arts and Culture,Arts and Culture +484128,Arts and Culture,Arts and Culture +479268,Broadcasting,Broadcasting +476166,Broadcasting,Broadcasting +506505,Broadcasting,Broadcasting +503321,Broadcasting,Broadcasting +500067,Broadcasting,Broadcasting +497195,Broadcasting,Broadcasting +497191,Broadcasting,Broadcasting +484132,Broadcasting,Broadcasting +484130,Broadcasting,Broadcasting +484128,Broadcasting,Broadcasting +488526,Science and Technology,Science and Technology +486469,Science and Technology,Science and Technology +511877,Science and Technology,Science and Technology +511700,Science and Technology,Science and Technology +489810,Science and Technology,Science and Technology +479862,Arts and Culture,Arts and Culture +478391,Science and Technology,Science and Technology +476460,Science and Technology,Science and Technology +476597,Telecommunications,Telecommunications +476596,Telecommunications,Telecommunications +479106,Telecommunications,Telecommunications +479105,Telecommunications,Telecommunications +479104,Telecommunications,Telecommunications +476594,Telecommunications,Telecommunications +476593,Telecommunications,Telecommunications +509640,Telecommunications,Telecommunications +506774,Telecommunications,Telecommunications +501063,Telecommunications,Telecommunications +501062,Telecommunications,Telecommunications +492505,Telecommunications,Telecommunications +492504,Telecommunications,Telecommunications +489407,Telecommunications,Telecommunications +483317,Telecommunications,Telecommunications +481381,Telecommunications,Telecommunications +479103,Telecommunications,Telecommunications +479102,Telecommunications,Telecommunications +478030,Science and Technology,Science and Technology +476355,Science and Technology,Science and Technology +479557,Science and Technology,Science and Technology +478975,Science and Technology,Science and Technology +522553,Arts and Culture,Arts and Culture +520615,Arts and Culture,Arts and Culture +486601,Arts and Culture,Arts and Culture +486600,Arts and Culture,Arts and Culture +484799,Arts and Culture,Arts and Culture +484794,Arts and Culture,Arts and Culture +484792,Arts and Culture,Arts and Culture +484790,Arts and Culture,Arts and Culture +484786,Arts and Culture,Arts and Culture +484783,Arts and Culture,Arts and Culture +481858,Arts and Culture,Arts and Culture +481852,Arts and Culture,Arts and Culture +474383,Arts and Culture,Arts and Culture +474382,Arts and Culture,Arts and Culture +498019,Broadcasting,Broadcasting +498017,Broadcasting,Broadcasting +494516,Broadcasting,Broadcasting +492936,Broadcasting,Broadcasting +492935,Broadcasting,Broadcasting +489304,Broadcasting,Broadcasting +489303,Broadcasting,Broadcasting +489302,Broadcasting,Broadcasting +489301,Broadcasting,Broadcasting +489300,Broadcasting,Broadcasting +486601,Broadcasting,Broadcasting +486600,Broadcasting,Broadcasting +484794,Broadcasting,Broadcasting +484792,Broadcasting,Broadcasting +484790,Broadcasting,Broadcasting +484786,Broadcasting,Broadcasting +484783,Broadcasting,Broadcasting +481858,Broadcasting,Broadcasting +481852,Broadcasting,Broadcasting +474385,Broadcasting,Broadcasting +474383,Broadcasting,Broadcasting +474382,Broadcasting,Broadcasting +474381,Broadcasting,Broadcasting +543416,Broadcasting,Broadcasting +543415,Broadcasting,Broadcasting +543413,Broadcasting,Broadcasting +533985,Broadcasting,Broadcasting +533983,Broadcasting,Broadcasting +530844,Broadcasting,Broadcasting +530843,Broadcasting,Broadcasting +528169,Broadcasting,Broadcasting +528168,Broadcasting,Broadcasting +528167,Broadcasting,Broadcasting +528166,Broadcasting,Broadcasting +528164,Broadcasting,Broadcasting +528162,Broadcasting,Broadcasting +525326,Broadcasting,Broadcasting +522553,Broadcasting,Broadcasting +520615,Broadcasting,Broadcasting +517340,Broadcasting,Broadcasting +517339,Broadcasting,Broadcasting +517338,Broadcasting,Broadcasting +517336,Broadcasting,Broadcasting +517331,Broadcasting,Broadcasting +507850,Broadcasting,Broadcasting +507849,Broadcasting,Broadcasting +507847,Broadcasting,Broadcasting +507845,Broadcasting,Broadcasting +507844,Broadcasting,Broadcasting +507843,Broadcasting,Broadcasting +507841,Broadcasting,Broadcasting +506089,Broadcasting,Broadcasting +506086,Broadcasting,Broadcasting +501103,Broadcasting,Broadcasting +501102,Broadcasting,Broadcasting +498023,Broadcasting,Broadcasting +498022,Broadcasting,Broadcasting +474455,Aboriginal Affairs,Aboriginal Affairs +484339,Science and Technology,Science and Technology +484289,Science and Technology,Science and Technology +493282,Science and Technology,Science and Technology +493281,Science and Technology,Science and Technology +491582,Science and Technology,Science and Technology +487844,Science and Technology,Science and Technology +487837,Science and Technology,Science and Technology +488615,Telecommunications,Telecommunications +488614,Telecommunications,Telecommunications +506502,Telecommunications,Telecommunications +503484,Telecommunications,Telecommunications +500709,Telecommunications,Telecommunications +500708,Telecommunications,Telecommunications +496743,Telecommunications,Telecommunications +496606,Telecommunications,Telecommunications +494217,Telecommunications,Telecommunications +493940,Telecommunications,Telecommunications +479808,Aboriginal Affairs,Aboriginal Affairs +477327,Aboriginal Affairs,Aboriginal Affairs +482425,Telecommunications,Telecommunications +484934,Science and Technology,Science and Technology +477886,Science and Technology,Science and Technology +457604,Aboriginal Affairs,Aboriginal Affairs +457926,Aboriginal Affairs,Aboriginal Affairs +454718,Aboriginal Affairs,Aboriginal Affairs +457605,Arts and Culture,Arts and Culture +500484,Science and Technology,Science and Technology +455033,Arts and Culture,Arts and Culture +456689,Telecommunications,Telecommunications +455924,Aboriginal Affairs,Aboriginal Affairs +455701,Arts and Culture,Arts and Culture +467526,Broadcasting,Broadcasting +470849,Telecommunications,Telecommunications +455804,Arts and Culture,Arts and Culture +457949,Aboriginal Affairs,Aboriginal Affairs +478770,Telecommunications,Telecommunications +463537,Telecommunications,Telecommunications +517812,Aboriginal Affairs,Aboriginal Affairs +478602,Science and Technology,Science and Technology +456571,Aboriginal Affairs,Aboriginal Affairs +459814,Science and Technology,Science and Technology +458055,Aboriginal Affairs,Aboriginal Affairs +503436,Aboriginal Affairs,Aboriginal Affairs +468565,Science and Technology,Science and Technology +458948,Arts and Culture,Arts and Culture +458207,Aboriginal Affairs,Aboriginal Affairs +473549,Broadcasting,Broadcasting +473549,Arts and Culture,Arts and Culture +457971,Arts and Culture,Arts and Culture +476031,Arts and Culture,Arts and Culture +464861,Aboriginal Affairs,Aboriginal Affairs +464871,Telecommunications,Telecommunications +457996,Science and Technology,Science and Technology +458453,Science and Technology,Science and Technology +495237,Science and Technology,Science and Technology +458198,Aboriginal Affairs,Aboriginal Affairs +458197,Aboriginal Affairs,Aboriginal Affairs +458196,Aboriginal Affairs,Aboriginal Affairs +480129,Science and Technology,Science and Technology +485183,Science and Technology,Science and Technology +465602,Arts and Culture,Arts and Culture +459062,Aboriginal Affairs,Aboriginal Affairs +459752,Arts and Culture,Arts and Culture +521281,Science and Technology,Science and Technology +463312,Aboriginal Affairs,Aboriginal Affairs +521279,Science and Technology,Science and Technology +521212,Science and Technology,Science and Technology +521190,Science and Technology,Science and Technology +459238,Telecommunications,Telecommunications +467819,Science and Technology,Science and Technology +460555,Arts and Culture,Arts and Culture +480807,Arts and Culture,Arts and Culture +493678,Broadcasting,Broadcasting +520799,Science and Technology,Science and Technology +495118,Aboriginal Affairs,Aboriginal Affairs +491873,Science and Technology,Science and Technology +467666,Science and Technology,Science and Technology +490949,Science and Technology,Science and Technology +459666,Science and Technology,Science and Technology +471436,Broadcasting,Broadcasting +466837,Science and Technology,Science and Technology +461968,Aboriginal Affairs,Aboriginal Affairs +511873,Aboriginal Affairs,Aboriginal Affairs +465621,Aboriginal Affairs,Aboriginal Affairs +541707,Arts and Culture,Arts and Culture +460826,Arts and Culture,Arts and Culture +491555,Science and Technology,Science and Technology +462977,Aboriginal Affairs,Aboriginal Affairs +462941,Science and Technology,Science and Technology +460349,Science and Technology,Science and Technology +518269,Aboriginal Affairs,Aboriginal Affairs +462139,Arts and Culture,Arts and Culture +471196,Broadcasting,Broadcasting +475379,Arts and Culture,Arts and Culture +462356,Science and Technology,Science and Technology +461807,Science and Technology,Science and Technology +461898,Aboriginal Affairs,Aboriginal Affairs +515890,Aboriginal Affairs,Aboriginal Affairs +464734,Aboriginal Affairs,Aboriginal Affairs +464745,Aboriginal Affairs,Aboriginal Affairs +461019,Arts and Culture,Arts and Culture +490262,Telecommunications,Telecommunications +468302,Science and Technology,Science and Technology +526098,Science and Technology,Science and Technology +478738,Aboriginal Affairs,Aboriginal Affairs +483108,Science and Technology,Science and Technology +501303,Aboriginal Affairs,Aboriginal Affairs +481823,Arts and Culture,Arts and Culture +501255,Aboriginal Affairs,Aboriginal Affairs +522304,Aboriginal Affairs,Aboriginal Affairs +469036,Science and Technology,Science and Technology +463832,Broadcasting,Broadcasting +462707,Arts and Culture,Arts and Culture +467300,Aboriginal Affairs,Aboriginal Affairs +465061,Aboriginal Affairs,Aboriginal Affairs +462091,Telecommunications,Telecommunications +542986,Aboriginal Affairs,Aboriginal Affairs +463216,Arts and Culture,Arts and Culture +522722,Broadcasting,Broadcasting +471299,Science and Technology,Science and Technology +462118,Arts and Culture,Arts and Culture +465799,Arts and Culture,Arts and Culture +462554,Arts and Culture,Arts and Culture +469435,Telecommunications,Telecommunications +466528,Aboriginal Affairs,Aboriginal Affairs +465483,Aboriginal Affairs,Aboriginal Affairs +492828,Science and Technology,Science and Technology +471944,Broadcasting,Broadcasting +467202,Aboriginal Affairs,Aboriginal Affairs +462884,Arts and Culture,Arts and Culture +512134,Aboriginal Affairs,Aboriginal Affairs +473353,Aboriginal Affairs,Aboriginal Affairs +486795,Telecommunications,Telecommunications +480371,Aboriginal Affairs,Aboriginal Affairs +477808,Aboriginal Affairs,Aboriginal Affairs +468137,Aboriginal Affairs,Aboriginal Affairs +463125,Arts and Culture,Arts and Culture +465632,Aboriginal Affairs,Aboriginal Affairs +482228,Arts and Culture,Arts and Culture +479294,Broadcasting,Broadcasting +462799,Aboriginal Affairs,Aboriginal Affairs +535791,Aboriginal Affairs,Aboriginal Affairs +476354,Science and Technology,Science and Technology +474918,Arts and Culture,Arts and Culture +535012,Broadcasting,Broadcasting +463056,Science and Technology,Science and Technology +521407,Science and Technology,Science and Technology +464063,Arts and Culture,Arts and Culture +476100,Arts and Culture,Arts and Culture +473660,Broadcasting,Broadcasting +473660,Telecommunications,Telecommunications +517511,Science and Technology,Science and Technology +469170,Arts and Culture,Arts and Culture +464804,Science and Technology,Science and Technology +498838,Broadcasting,Broadcasting +508476,Telecommunications,Telecommunications +525564,Arts and Culture,Arts and Culture +495477,Aboriginal Affairs,Aboriginal Affairs +465226,Science and Technology,Science and Technology +463144,Aboriginal Affairs,Aboriginal Affairs +491682,Arts and Culture,Arts and Culture +463502,Aboriginal Affairs,Aboriginal Affairs +491707,Science and Technology,Science and Technology +464128,Arts and Culture,Arts and Culture +463476,Telecommunications,Telecommunications +463327,Aboriginal Affairs,Aboriginal Affairs +463401,Arts and Culture,Arts and Culture +464823,Science and Technology,Science and Technology +469578,Broadcasting,Broadcasting +476012,Science and Technology,Science and Technology +463788,Science and Technology,Science and Technology +465157,Aboriginal Affairs,Aboriginal Affairs +491445,Telecommunications,Telecommunications +544102,Aboriginal Affairs,Aboriginal Affairs +465696,Aboriginal Affairs,Aboriginal Affairs +476307,Science and Technology,Science and Technology +482606,Arts and Culture,Arts and Culture +468611,Aboriginal Affairs,Aboriginal Affairs +465067,Aboriginal Affairs,Aboriginal Affairs +467910,Broadcasting,Broadcasting +478646,Arts and Culture,Arts and Culture +474812,Aboriginal Affairs,Aboriginal Affairs +467910,Arts and Culture,Arts and Culture +467910,Telecommunications,Telecommunications +465506,Aboriginal Affairs,Aboriginal Affairs +468026,Science and Technology,Science and Technology +468026,Telecommunications,Telecommunications +467797,Arts and Culture,Arts and Culture +465450,Aboriginal Affairs,Aboriginal Affairs +465689,Arts and Culture,Arts and Culture +468396,Arts and Culture,Arts and Culture +468396,Broadcasting,Broadcasting +468396,Telecommunications,Telecommunications +499867,Science and Technology,Science and Technology +466491,Broadcasting,Broadcasting +466491,Telecommunications,Telecommunications +478730,Aboriginal Affairs,Aboriginal Affairs +522599,Aboriginal Affairs,Aboriginal Affairs +480588,Telecommunications,Telecommunications +468757,Aboriginal Affairs,Aboriginal Affairs +467648,Science and Technology,Science and Technology +474482,Aboriginal Affairs,Aboriginal Affairs +475874,Science and Technology,Science and Technology +467669,Science and Technology,Science and Technology +496667,Aboriginal Affairs,Aboriginal Affairs +496667,Science and Technology,Science and Technology +527408,Aboriginal Affairs,Aboriginal Affairs +465866,Aboriginal Affairs,Aboriginal Affairs +468246,Science and Technology,Science and Technology +465876,Broadcasting,Broadcasting +488760,Aboriginal Affairs,Aboriginal Affairs +480801,Aboriginal Affairs,Aboriginal Affairs +486500,Aboriginal Affairs,Aboriginal Affairs +487808,Science and Technology,Science and Technology +492070,Broadcasting,Broadcasting +492070,Arts and Culture,Arts and Culture +474082,Telecommunications,Telecommunications +482932,Arts and Culture,Arts and Culture +466147,Arts and Culture,Arts and Culture +467306,Arts and Culture,Arts and Culture +467306,Broadcasting,Broadcasting +467306,Telecommunications,Telecommunications +468725,Science and Technology,Science and Technology +466304,Arts and Culture,Arts and Culture +466305,Arts and Culture,Arts and Culture +503304,Science and Technology,Science and Technology +466529,Science and Technology,Science and Technology +466536,Science and Technology,Science and Technology +466566,Science and Technology,Science and Technology +466570,Science and Technology,Science and Technology +466602,Science and Technology,Science and Technology +466604,Science and Technology,Science and Technology +466615,Science and Technology,Science and Technology +466618,Science and Technology,Science and Technology +536004,Science and Technology,Science and Technology +528311,Aboriginal Affairs,Aboriginal Affairs +468797,Science and Technology,Science and Technology +499709,Science and Technology,Science and Technology +469528,Aboriginal Affairs,Aboriginal Affairs +496159,Arts and Culture,Arts and Culture +475634,Arts and Culture,Arts and Culture +467682,Telecommunications,Telecommunications +467682,Broadcasting,Broadcasting +467682,Arts and Culture,Arts and Culture +480110,Aboriginal Affairs,Aboriginal Affairs +468068,Arts and Culture,Arts and Culture +470938,Arts and Culture,Arts and Culture +470789,Arts and Culture,Arts and Culture +472991,Aboriginal Affairs,Aboriginal Affairs +476075,Science and Technology,Science and Technology +487111,Science and Technology,Science and Technology +518729,Science and Technology,Science and Technology +468773,Aboriginal Affairs,Aboriginal Affairs +468775,Aboriginal Affairs,Aboriginal Affairs +468776,Aboriginal Affairs,Aboriginal Affairs +468777,Aboriginal Affairs,Aboriginal Affairs +502538,Telecommunications,Telecommunications +474729,Arts and Culture,Arts and Culture +469201,Arts and Culture,Arts and Culture +506658,Arts and Culture,Arts and Culture +469027,Aboriginal Affairs,Aboriginal Affairs +469037,Aboriginal Affairs,Aboriginal Affairs +469038,Aboriginal Affairs,Aboriginal Affairs +469039,Aboriginal Affairs,Aboriginal Affairs +519832,Science and Technology,Science and Technology +472386,Science and Technology,Science and Technology +471916,Aboriginal Affairs,Aboriginal Affairs +540566,Broadcasting,Broadcasting +471444,Science and Technology,Science and Technology +476824,Telecommunications,Telecommunications +502714,Arts and Culture,Arts and Culture +502714,Broadcasting,Broadcasting +469529,Science and Technology,Science and Technology +488347,Science and Technology,Science and Technology +473796,Science and Technology,Science and Technology +480282,Telecommunications,Telecommunications +495479,Broadcasting,Broadcasting +495479,Telecommunications,Telecommunications +474507,Science and Technology,Science and Technology +477896,Science and Technology,Science and Technology +493896,Science and Technology,Science and Technology +476049,Science and Technology,Science and Technology +480332,Science and Technology,Science and Technology +472179,Telecommunications,Telecommunications +471552,Science and Technology,Science and Technology +475075,Aboriginal Affairs,Aboriginal Affairs +470015,Aboriginal Affairs,Aboriginal Affairs +507895,Science and Technology,Science and Technology +470269,Aboriginal Affairs,Aboriginal Affairs +480218,Aboriginal Affairs,Aboriginal Affairs +470608,Aboriginal Affairs,Aboriginal Affairs +471132,Aboriginal Affairs,Aboriginal Affairs +479890,Telecommunications,Telecommunications +472182,Aboriginal Affairs,Aboriginal Affairs +471768,Telecommunications,Telecommunications +476035,Science and Technology,Science and Technology +478504,Science and Technology,Science and Technology +475941,Arts and Culture,Arts and Culture +473791,Arts and Culture,Arts and Culture +471683,Science and Technology,Science and Technology +483566,Arts and Culture,Arts and Culture +474815,Telecommunications,Telecommunications +475942,Arts and Culture,Arts and Culture +485386,Arts and Culture,Arts and Culture +534431,Science and Technology,Science and Technology +481549,Aboriginal Affairs,Aboriginal Affairs +478462,Aboriginal Affairs,Aboriginal Affairs +519960,Arts and Culture,Arts and Culture +472030,Science and Technology,Science and Technology +472269,Science and Technology,Science and Technology +471617,Arts and Culture,Arts and Culture +478008,Science and Technology,Science and Technology +471941,Science and Technology,Science and Technology +488096,Science and Technology,Science and Technology +484800,Arts and Culture,Arts and Culture +493459,Aboriginal Affairs,Aboriginal Affairs +493459,Science and Technology,Science and Technology +479480,Aboriginal Affairs,Aboriginal Affairs +481336,Arts and Culture,Arts and Culture +476102,Arts and Culture,Arts and Culture +491681,Arts and Culture,Arts and Culture +476096,Arts and Culture,Arts and Culture +477487,Aboriginal Affairs,Aboriginal Affairs +478415,Aboriginal Affairs,Aboriginal Affairs +502124,Arts and Culture,Arts and Culture +477343,Arts and Culture,Arts and Culture +474087,Arts and Culture,Arts and Culture +501024,Arts and Culture,Arts and Culture +475132,Aboriginal Affairs,Aboriginal Affairs +479491,Broadcasting,Broadcasting +478649,Arts and Culture,Arts and Culture +496843,Science and Technology,Science and Technology +478715,Science and Technology,Science and Technology +477989,Broadcasting,Broadcasting +472653,Science and Technology,Science and Technology +499756,Science and Technology,Science and Technology +529432,Science and Technology,Science and Technology +522237,Broadcasting,Broadcasting +511479,Arts and Culture,Arts and Culture +472094,Science and Technology,Science and Technology +483871,Science and Technology,Science and Technology +474243,Science and Technology,Science and Technology +478636,Science and Technology,Science and Technology +487820,Aboriginal Affairs,Aboriginal Affairs +485595,Arts and Culture,Arts and Culture +473690,Arts and Culture,Arts and Culture +477954,Arts and Culture,Arts and Culture +476014,Aboriginal Affairs,Aboriginal Affairs +538865,Arts and Culture,Arts and Culture +484590,Science and Technology,Science and Technology +475793,Aboriginal Affairs,Aboriginal Affairs +478618,Broadcasting,Broadcasting +474019,Science and Technology,Science and Technology +511045,Aboriginal Affairs,Aboriginal Affairs +480767,Science and Technology,Science and Technology +477646,Science and Technology,Science and Technology +475140,Arts and Culture,Arts and Culture +484132,Arts and Culture,Arts and Culture +484123,Broadcasting,Broadcasting +494529,Science and Technology,Science and Technology +489811,Science and Technology,Science and Technology +511876,Science and Technology,Science and Technology +493427,Science and Technology,Science and Technology +483153,Broadcasting,Broadcasting +518683,Arts and Culture,Arts and Culture +479244,Science and Technology,Science and Technology +476598,Telecommunications,Telecommunications +476595,Telecommunications,Telecommunications +499966,Science and Technology,Science and Technology +482235,Aboriginal Affairs,Aboriginal Affairs +477513,Science and Technology,Science and Technology +506356,Science and Technology,Science and Technology +474381,Arts and Culture,Arts and Culture +498021,Broadcasting,Broadcasting +477210,Aboriginal Affairs,Aboriginal Affairs +484400,Science and Technology,Science and Technology +492432,Telecommunications,Telecommunications +474541,Broadcasting,Broadcasting +481875,Aboriginal Affairs,Aboriginal Affairs +481545,Telecommunications,Telecommunications +489068,Science and Technology,Science and Technology +479075,Aboriginal Affairs,Aboriginal Affairs +478470,Arts and Culture,Arts and Culture +476345,Aboriginal Affairs,Aboriginal Affairs +477541,Arts and Culture,Arts and Culture +477541,Broadcasting,Broadcasting +480253,Arts and Culture,Arts and Culture +476131,Aboriginal Affairs,Aboriginal Affairs +479026,Science and Technology,Science and Technology +478213,Arts and Culture,Arts and Culture +496392,Science and Technology,Science and Technology +496094,Aboriginal Affairs,Aboriginal Affairs +477530,Aboriginal Affairs,Aboriginal Affairs +478416,Science and Technology,Science and Technology +476221,Science and Technology,Science and Technology +476827,Telecommunications,Telecommunications +508545,Arts and Culture,Arts and Culture +497423,Arts and Culture,Arts and Culture +476249,Aboriginal Affairs,Aboriginal Affairs +491307,Science and Technology,Science and Technology +478414,Science and Technology,Science and Technology +478271,Science and Technology,Science and Technology +492206,Arts and Culture,Arts and Culture +494779,Arts and Culture,Arts and Culture +516857,Science and Technology,Science and Technology +477610,Science and Technology,Science and Technology +477330,Arts and Culture,Arts and Culture +493039,Aboriginal Affairs,Aboriginal Affairs +541063,Science and Technology,Science and Technology +492751,Broadcasting,Broadcasting +478736,Aboriginal Affairs,Aboriginal Affairs +482275,Aboriginal Affairs,Aboriginal Affairs +491354,Science and Technology,Science and Technology +480211,Telecommunications,Telecommunications +478467,Science and Technology,Science and Technology +532731,Science and Technology,Science and Technology +482478,Science and Technology,Science and Technology +479074,Aboriginal Affairs,Aboriginal Affairs +479073,Aboriginal Affairs,Aboriginal Affairs +481891,Aboriginal Affairs,Aboriginal Affairs +481886,Aboriginal Affairs,Aboriginal Affairs +478411,Arts and Culture,Arts and Culture +476392,Arts and Culture,Arts and Culture +501141,Arts and Culture,Arts and Culture +497721,Arts and Culture,Arts and Culture +494668,Arts and Culture,Arts and Culture +493026,Arts and Culture,Arts and Culture +492035,Arts and Culture,Arts and Culture +491957,Arts and Culture,Arts and Culture +489208,Arts and Culture,Arts and Culture +482873,Arts and Culture,Arts and Culture +479277,Arts and Culture,Arts and Culture +529296,Aboriginal Affairs,Aboriginal Affairs +529287,Aboriginal Affairs,Aboriginal Affairs +480252,Arts and Culture,Arts and Culture +480251,Arts and Culture,Arts and Culture +480250,Arts and Culture,Arts and Culture +480249,Arts and Culture,Arts and Culture +480248,Arts and Culture,Arts and Culture +480247,Arts and Culture,Arts and Culture +480246,Arts and Culture,Arts and Culture +480244,Arts and Culture,Arts and Culture +480243,Arts and Culture,Arts and Culture +480242,Arts and Culture,Arts and Culture +480241,Arts and Culture,Arts and Culture +480240,Arts and Culture,Arts and Culture +480237,Arts and Culture,Arts and Culture +478328,Arts and Culture,Arts and Culture +478325,Arts and Culture,Arts and Culture +478322,Arts and Culture,Arts and Culture +478319,Arts and Culture,Arts and Culture +478316,Arts and Culture,Arts and Culture +478314,Arts and Culture,Arts and Culture +478312,Arts and Culture,Arts and Culture +478311,Arts and Culture,Arts and Culture +538641,Arts and Culture,Arts and Culture +538640,Arts and Culture,Arts and Culture +538639,Arts and Culture,Arts and Culture +536211,Arts and Culture,Arts and Culture +536210,Arts and Culture,Arts and Culture +536209,Arts and Culture,Arts and Culture +536208,Arts and Culture,Arts and Culture +532402,Arts and Culture,Arts and Culture +530340,Arts and Culture,Arts and Culture +530339,Arts and Culture,Arts and Culture +530338,Arts and Culture,Arts and Culture +530337,Arts and Culture,Arts and Culture +530336,Arts and Culture,Arts and Culture +527145,Arts and Culture,Arts and Culture +527143,Arts and Culture,Arts and Culture +527142,Arts and Culture,Arts and Culture +527141,Arts and Culture,Arts and Culture +527140,Arts and Culture,Arts and Culture +527139,Arts and Culture,Arts and Culture +527138,Arts and Culture,Arts and Culture +527137,Arts and Culture,Arts and Culture +527136,Arts and Culture,Arts and Culture +527135,Arts and Culture,Arts and Culture +527134,Arts and Culture,Arts and Culture +527133,Arts and Culture,Arts and Culture +523538,Arts and Culture,Arts and Culture +523537,Arts and Culture,Arts and Culture +523536,Arts and Culture,Arts and Culture +523535,Arts and Culture,Arts and Culture +523534,Arts and Culture,Arts and Culture +523533,Arts and Culture,Arts and Culture +520602,Arts and Culture,Arts and Culture +518322,Arts and Culture,Arts and Culture +518320,Arts and Culture,Arts and Culture +518318,Arts and Culture,Arts and Culture +516112,Arts and Culture,Arts and Culture +516111,Arts and Culture,Arts and Culture +516110,Arts and Culture,Arts and Culture +513483,Arts and Culture,Arts and Culture +513482,Arts and Culture,Arts and Culture +513481,Arts and Culture,Arts and Culture +511442,Arts and Culture,Arts and Culture +511441,Arts and Culture,Arts and Culture +511440,Arts and Culture,Arts and Culture +511438,Arts and Culture,Arts and Culture +511436,Arts and Culture,Arts and Culture +511435,Arts and Culture,Arts and Culture +511433,Arts and Culture,Arts and Culture +511431,Arts and Culture,Arts and Culture +511430,Arts and Culture,Arts and Culture +511429,Arts and Culture,Arts and Culture +511428,Arts and Culture,Arts and Culture +511427,Arts and Culture,Arts and Culture +509170,Arts and Culture,Arts and Culture +509169,Arts and Culture,Arts and Culture +509168,Arts and Culture,Arts and Culture +509167,Arts and Culture,Arts and Culture +509165,Arts and Culture,Arts and Culture +509164,Arts and Culture,Arts and Culture +509161,Arts and Culture,Arts and Culture +509160,Arts and Culture,Arts and Culture +509159,Arts and Culture,Arts and Culture +509158,Arts and Culture,Arts and Culture +509157,Arts and Culture,Arts and Culture +509156,Arts and Culture,Arts and Culture +509155,Arts and Culture,Arts and Culture +509154,Arts and Culture,Arts and Culture +509153,Arts and Culture,Arts and Culture +509143,Arts and Culture,Arts and Culture +509142,Arts and Culture,Arts and Culture +509141,Arts and Culture,Arts and Culture +505945,Arts and Culture,Arts and Culture +505943,Arts and Culture,Arts and Culture +505942,Arts and Culture,Arts and Culture +505941,Arts and Culture,Arts and Culture +505940,Arts and Culture,Arts and Culture +505939,Arts and Culture,Arts and Culture +505938,Arts and Culture,Arts and Culture +505936,Arts and Culture,Arts and Culture +505935,Arts and Culture,Arts and Culture +505934,Arts and Culture,Arts and Culture +505933,Arts and Culture,Arts and Culture +505932,Arts and Culture,Arts and Culture +505931,Arts and Culture,Arts and Culture +505930,Arts and Culture,Arts and Culture +505929,Arts and Culture,Arts and Culture +505928,Arts and Culture,Arts and Culture +505927,Arts and Culture,Arts and Culture +505853,Arts and Culture,Arts and Culture +505851,Arts and Culture,Arts and Culture +502860,Arts and Culture,Arts and Culture +502859,Arts and Culture,Arts and Culture +502858,Arts and Culture,Arts and Culture +502857,Arts and Culture,Arts and Culture +502855,Arts and Culture,Arts and Culture +502854,Arts and Culture,Arts and Culture +502853,Arts and Culture,Arts and Culture +502852,Arts and Culture,Arts and Culture +502846,Arts and Culture,Arts and Culture +502842,Arts and Culture,Arts and Culture +502839,Arts and Culture,Arts and Culture +502837,Arts and Culture,Arts and Culture +502835,Arts and Culture,Arts and Culture +502834,Arts and Culture,Arts and Culture +502832,Arts and Culture,Arts and Culture +502831,Arts and Culture,Arts and Culture +502828,Arts and Culture,Arts and Culture +499743,Arts and Culture,Arts and Culture +499742,Arts and Culture,Arts and Culture +499741,Arts and Culture,Arts and Culture +499740,Arts and Culture,Arts and Culture +499739,Arts and Culture,Arts and Culture +499738,Arts and Culture,Arts and Culture +499737,Arts and Culture,Arts and Culture +499736,Arts and Culture,Arts and Culture +499735,Arts and Culture,Arts and Culture +499732,Arts and Culture,Arts and Culture +499729,Arts and Culture,Arts and Culture +499725,Arts and Culture,Arts and Culture +499721,Arts and Culture,Arts and Culture +499712,Arts and Culture,Arts and Culture +499698,Arts and Culture,Arts and Culture +499694,Arts and Culture,Arts and Culture +499692,Arts and Culture,Arts and Culture +499689,Arts and Culture,Arts and Culture +499678,Arts and Culture,Arts and Culture +496202,Arts and Culture,Arts and Culture +496201,Arts and Culture,Arts and Culture +496200,Arts and Culture,Arts and Culture +496199,Arts and Culture,Arts and Culture +496198,Arts and Culture,Arts and Culture +496197,Arts and Culture,Arts and Culture +496196,Arts and Culture,Arts and Culture +496195,Arts and Culture,Arts and Culture +496194,Arts and Culture,Arts and Culture +496193,Arts and Culture,Arts and Culture +496192,Arts and Culture,Arts and Culture +496191,Arts and Culture,Arts and Culture +496190,Arts and Culture,Arts and Culture +496189,Arts and Culture,Arts and Culture +496188,Arts and Culture,Arts and Culture +496187,Arts and Culture,Arts and Culture +496186,Arts and Culture,Arts and Culture +496184,Arts and Culture,Arts and Culture +496182,Arts and Culture,Arts and Culture +496180,Arts and Culture,Arts and Culture +496179,Arts and Culture,Arts and Culture +496177,Arts and Culture,Arts and Culture +493781,Arts and Culture,Arts and Culture +493780,Arts and Culture,Arts and Culture +493779,Arts and Culture,Arts and Culture +493778,Arts and Culture,Arts and Culture +493777,Arts and Culture,Arts and Culture +493776,Arts and Culture,Arts and Culture +493775,Arts and Culture,Arts and Culture +493774,Arts and Culture,Arts and Culture +493773,Arts and Culture,Arts and Culture +493772,Arts and Culture,Arts and Culture +493771,Arts and Culture,Arts and Culture +493770,Arts and Culture,Arts and Culture +493769,Arts and Culture,Arts and Culture +493768,Arts and Culture,Arts and Culture +493750,Arts and Culture,Arts and Culture +493748,Arts and Culture,Arts and Culture +493746,Arts and Culture,Arts and Culture +491783,Arts and Culture,Arts and Culture +491782,Arts and Culture,Arts and Culture +491780,Arts and Culture,Arts and Culture +491776,Arts and Culture,Arts and Culture +491771,Arts and Culture,Arts and Culture +491769,Arts and Culture,Arts and Culture +491765,Arts and Culture,Arts and Culture +491763,Arts and Culture,Arts and Culture +491761,Arts and Culture,Arts and Culture +491757,Arts and Culture,Arts and Culture +491754,Arts and Culture,Arts and Culture +491751,Arts and Culture,Arts and Culture +491750,Arts and Culture,Arts and Culture +488295,Arts and Culture,Arts and Culture +488294,Arts and Culture,Arts and Culture +488293,Arts and Culture,Arts and Culture +488292,Arts and Culture,Arts and Culture +488291,Arts and Culture,Arts and Culture +488290,Arts and Culture,Arts and Culture +488289,Arts and Culture,Arts and Culture +488288,Arts and Culture,Arts and Culture +488287,Arts and Culture,Arts and Culture +488286,Arts and Culture,Arts and Culture +488285,Arts and Culture,Arts and Culture +488284,Arts and Culture,Arts and Culture +488283,Arts and Culture,Arts and Culture +488282,Arts and Culture,Arts and Culture +488281,Arts and Culture,Arts and Culture +485282,Arts and Culture,Arts and Culture +485279,Arts and Culture,Arts and Culture +485277,Arts and Culture,Arts and Culture +485276,Arts and Culture,Arts and Culture +485274,Arts and Culture,Arts and Culture +485271,Arts and Culture,Arts and Culture +485269,Arts and Culture,Arts and Culture +485265,Arts and Culture,Arts and Culture +485261,Arts and Culture,Arts and Culture +485259,Arts and Culture,Arts and Culture +485257,Arts and Culture,Arts and Culture +485255,Arts and Culture,Arts and Culture +485253,Arts and Culture,Arts and Culture +485251,Arts and Culture,Arts and Culture +485246,Arts and Culture,Arts and Culture +485245,Arts and Culture,Arts and Culture +485243,Arts and Culture,Arts and Culture +485242,Arts and Culture,Arts and Culture +485240,Arts and Culture,Arts and Culture +485236,Arts and Culture,Arts and Culture +485234,Arts and Culture,Arts and Culture +482529,Arts and Culture,Arts and Culture +482528,Arts and Culture,Arts and Culture +482527,Arts and Culture,Arts and Culture +482526,Arts and Culture,Arts and Culture +482525,Arts and Culture,Arts and Culture +482524,Arts and Culture,Arts and Culture +478216,Science and Technology,Science and Technology +476134,Science and Technology,Science and Technology +496350,Science and Technology,Science and Technology +496347,Science and Technology,Science and Technology +492084,Science and Technology,Science and Technology +492083,Science and Technology,Science and Technology +492082,Science and Technology,Science and Technology +484625,Science and Technology,Science and Technology +499254,Science and Technology,Science and Technology +499245,Science and Technology,Science and Technology +496394,Science and Technology,Science and Technology +496393,Science and Technology,Science and Technology +499817,Arts and Culture,Arts and Culture +492054,Arts and Culture,Arts and Culture +488655,Arts and Culture,Arts and Culture +508620,Arts and Culture,Arts and Culture +478413,Science and Technology,Science and Technology +476273,Science and Technology,Science and Technology +478573,Science and Technology,Science and Technology +478269,Science and Technology,Science and Technology +478268,Science and Technology,Science and Technology +493018,Science and Technology,Science and Technology +483345,Arts and Culture,Arts and Culture +494778,Arts and Culture,Arts and Culture +516842,Science and Technology,Science and Technology +509574,Science and Technology,Science and Technology +543161,Science and Technology,Science and Technology +527447,Science and Technology,Science and Technology +525460,Science and Technology,Science and Technology +521495,Science and Technology,Science and Technology +521493,Science and Technology,Science and Technology +517671,Aboriginal Affairs,Aboriginal Affairs +511107,Aboriginal Affairs,Aboriginal Affairs +502400,Aboriginal Affairs,Aboriginal Affairs +493041,Aboriginal Affairs,Aboriginal Affairs +541062,Science and Technology,Science and Technology +541061,Science and Technology,Science and Technology +541067,Science and Technology,Science and Technology +541066,Science and Technology,Science and Technology +541064,Science and Technology,Science and Technology +492748,Broadcasting,Broadcasting +478606,Aboriginal Affairs,Aboriginal Affairs +476544,Aboriginal Affairs,Aboriginal Affairs +488091,Science and Technology,Science and Technology +484147,Science and Technology,Science and Technology +498402,Science and Technology,Science and Technology +498388,Science and Technology,Science and Technology +496237,Science and Technology,Science and Technology +496234,Science and Technology,Science and Technology +496231,Science and Technology,Science and Technology +496221,Science and Technology,Science and Technology +493146,Science and Technology,Science and Technology +493144,Science and Technology,Science and Technology +493134,Science and Technology,Science and Technology +491385,Science and Technology,Science and Technology +491366,Science and Technology,Science and Technology +478466,Science and Technology,Science and Technology +478465,Science and Technology,Science and Technology +478464,Science and Technology,Science and Technology +478454,Science and Technology,Science and Technology +478631,Science and Technology,Science and Technology +478584,Science and Technology,Science and Technology +478526,Science and Technology,Science and Technology +478468,Science and Technology,Science and Technology +482475,Science and Technology,Science and Technology +482474,Science and Technology,Science and Technology +529164,Science and Technology,Science and Technology +522509,Science and Technology,Science and Technology +522493,Science and Technology,Science and Technology +522491,Science and Technology,Science and Technology +522484,Science and Technology,Science and Technology +522476,Science and Technology,Science and Technology +522411,Science and Technology,Science and Technology +522407,Science and Technology,Science and Technology +517746,Science and Technology,Science and Technology +517745,Science and Technology,Science and Technology +516376,Science and Technology,Science and Technology +516367,Science and Technology,Science and Technology +516366,Science and Technology,Science and Technology +516363,Science and Technology,Science and Technology +509455,Science and Technology,Science and Technology +505340,Science and Technology,Science and Technology +503294,Science and Technology,Science and Technology +502813,Science and Technology,Science and Technology +499439,Science and Technology,Science and Technology +499437,Science and Technology,Science and Technology +499434,Science and Technology,Science and Technology +499431,Science and Technology,Science and Technology +499430,Science and Technology,Science and Technology +499428,Science and Technology,Science and Technology +499427,Science and Technology,Science and Technology +495885,Science and Technology,Science and Technology +495868,Science and Technology,Science and Technology +495861,Science and Technology,Science and Technology +495858,Science and Technology,Science and Technology +495852,Science and Technology,Science and Technology +495848,Science and Technology,Science and Technology +495791,Science and Technology,Science and Technology +493764,Science and Technology,Science and Technology +493763,Science and Technology,Science and Technology +485121,Science and Technology,Science and Technology +482275,Transportation,Transportation +479423,Municipalities,Municipalities +479421,Municipalities,Municipalities +479440,Municipalities,Municipalities +479435,Municipalities,Municipalities +479433,Municipalities,Municipalities +479431,Municipalities,Municipalities +479428,Municipalities,Municipalities +479427,Municipalities,Municipalities +479426,Municipalities,Municipalities +479425,Municipalities,Municipalities +488091,Climate,Climate +484147,Climate,Climate +498402,Climate,Climate +498388,Climate,Climate +496237,Climate,Climate +496234,Climate,Climate +496232,Climate,Climate +496231,Climate,Climate +496228,Climate,Climate +496221,Climate,Climate +493146,Climate,Climate +493144,Climate,Climate +493134,Climate,Climate +491385,Climate,Climate +491366,Climate,Climate +488091,Economic Development,Economic Development +484147,Economic Development,Economic Development +498402,Economic Development,Economic Development +498398,Economic Development,Economic Development +496234,Economic Development,Economic Development +496232,Economic Development,Economic Development +496228,Economic Development,Economic Development +496221,Economic Development,Economic Development +493146,Economic Development,Economic Development +493144,Economic Development,Economic Development +493134,Economic Development,Economic Development +491385,Economic Development,Economic Development +491366,Economic Development,Economic Development +488091,Energy,Energy +484147,Energy,Energy +498402,Energy,Energy +498398,Energy,Energy +498388,Energy,Energy +496237,Energy,Energy +496234,Energy,Energy +496232,Energy,Energy +496231,Energy,Energy +496228,Energy,Energy +496221,Energy,Energy +493146,Energy,Energy +493144,Energy,Energy +493134,Energy,Energy +491385,Energy,Energy +491366,Energy,Energy +493134,Forestry,Forestry +491385,Forestry,Forestry +496234,Forestry,Forestry +496232,Forestry,Forestry +496231,Forestry,Forestry +496228,Forestry,Forestry +496221,Forestry,Forestry +493146,Forestry,Forestry +484147,Industry,Industry +479750,Industry,Industry +498402,Industry,Industry +498398,Industry,Industry +498388,Industry,Industry +496237,Industry,Industry +496234,Industry,Industry +496232,Industry,Industry +496231,Industry,Industry +496228,Industry,Industry +496221,Industry,Industry +493146,Industry,Industry +493144,Industry,Industry +493134,Industry,Industry +491366,Industry,Industry +491354,Industry,Industry +493146,Labour,Labour +493144,Labour,Labour +491385,Labour,Labour +491366,Labour,Labour +491354,Labour,Labour +488091,Labour,Labour +484147,Mining,Mining +498388,Mining,Mining +496234,Mining,Mining +496232,Mining,Mining +496231,Mining,Mining +496228,Mining,Mining +496221,Mining,Mining +493146,Mining,Mining +493144,Mining,Mining +493134,Mining,Mining +491385,Mining,Mining +491366,Mining,Mining +491354,Mining,Mining +488091,Regional Development,Regional Development +484147,Regional Development,Regional Development +498402,Regional Development,Regional Development +498398,Regional Development,Regional Development +493146,Regional Development,Regional Development +493144,Regional Development,Regional Development +493134,Regional Development,Regional Development +488091,Research and Development,Research and Development +484147,Research and Development,Research and Development +498388,Research and Development,Research and Development +496237,Research and Development,Research and Development +496231,Research and Development,Research and Development +496221,Research and Development,Research and Development +493146,Research and Development,Research and Development +493144,Research and Development,Research and Development +491385,Research and Development,Research and Development +491366,Research and Development,Research and Development +480210,Justice and Law Enforcement,Justice and Law Enforcement +480208,Justice and Law Enforcement,Justice and Law Enforcement +491688,Justice and Law Enforcement,Justice and Law Enforcement +487875,Justice and Law Enforcement,Justice and Law Enforcement +484671,Justice and Law Enforcement,Justice and Law Enforcement +482355,Justice and Law Enforcement,Justice and Law Enforcement +480210,Sports,Sports +480208,Sports,Sports +491688,Sports,Sports +487875,Sports,Sports +484671,Sports,Sports +482355,Sports,Sports +478464,Climate,Climate +478454,Climate,Climate +478631,Climate,Climate +478584,Climate,Climate +478526,Climate,Climate +478468,Climate,Climate +478467,Climate,Climate +478466,Climate,Climate +478464,Consumer Issues,Consumer Issues +478631,Consumer Issues,Consumer Issues +478584,Consumer Issues,Consumer Issues +478526,Consumer Issues,Consumer Issues +478468,Consumer Issues,Consumer Issues +478467,Consumer Issues,Consumer Issues +478466,Consumer Issues,Consumer Issues +478464,Economic Development,Economic Development +478454,Economic Development,Economic Development +478631,Economic Development,Economic Development +478584,Economic Development,Economic Development +478526,Economic Development,Economic Development +478468,Economic Development,Economic Development +478467,Economic Development,Economic Development +478466,Economic Development,Economic Development +478464,Education,Education +478454,Education,Education +478631,Education,Education +478584,Education,Education +478526,Education,Education +478468,Education,Education +478467,Education,Education +478466,Education,Education +478464,Employment and Training,Employment and Training +478454,Employment and Training,Employment and Training +478631,Employment and Training,Employment and Training +478584,Employment and Training,Employment and Training +478526,Employment and Training,Employment and Training +478468,Employment and Training,Employment and Training +478467,Employment and Training,Employment and Training +478466,Employment and Training,Employment and Training +478464,Energy,Energy +478454,Energy,Energy +478631,Energy,Energy +478584,Energy,Energy +478526,Energy,Energy +478468,Energy,Energy +478467,Energy,Energy +478466,Energy,Energy +478464,Environment,Environment +478454,Environment,Environment +478631,Environment,Environment +478584,Environment,Environment +478526,Environment,Environment +478468,Environment,Environment +478467,Environment,Environment +478466,Environment,Environment +478464,Health,Health +478454,Health,Health +478631,Health,Health +478584,Health,Health +478526,Health,Health +478468,Health,Health +478467,Health,Health +478466,Health,Health +478464,Housing,Housing +478454,Housing,Housing +478631,Housing,Housing +478584,Housing,Housing +478526,Housing,Housing +478468,Housing,Housing +478467,Housing,Housing +478466,Housing,Housing +478464,Industry,Industry +478454,Industry,Industry +478631,Industry,Industry +478584,Industry,Industry +478526,Industry,Industry +478468,Industry,Industry +478467,Industry,Industry +478466,Industry,Industry +478464,Infrastructure,Infrastructure +478454,Infrastructure,Infrastructure +478631,Infrastructure,Infrastructure +478584,Infrastructure,Infrastructure +478526,Infrastructure,Infrastructure +478468,Infrastructure,Infrastructure +478467,Infrastructure,Infrastructure +478466,Infrastructure,Infrastructure +478465,International Trade,International Trade +478464,International Trade,International Trade +478631,International Trade,International Trade +478584,International Trade,International Trade +478526,International Trade,International Trade +478468,International Trade,International Trade +478467,International Trade,International Trade +478465,Research and Development,Research and Development +478464,Research and Development,Research and Development +478631,Research and Development,Research and Development +478584,Research and Development,Research and Development +478526,Research and Development,Research and Development +478468,Research and Development,Research and Development +478467,Research and Development,Research and Development +478464,Small Business,Small Business +478454,Small Business,Small Business +478631,Small Business,Small Business +478584,Small Business,Small Business +478526,Small Business,Small Business +478468,Small Business,Small Business +478467,Small Business,Small Business +478466,Small Business,Small Business +491678,Sports,Sports +487752,Sports,Sports +482123,Sports,Sports +480228,Sports,Sports +480227,Sports,Sports +511099,Sports,Sports +511091,Sports,Sports +511088,Sports,Sports +495983,Sports,Sports +480228,Tourism,Tourism +480227,Tourism,Tourism +511099,Tourism,Tourism +511091,Tourism,Tourism +511088,Tourism,Tourism +495983,Tourism,Tourism +491678,Tourism,Tourism +487752,Tourism,Tourism +496735,Government Procurement,Government Procurement +519534,Health,Health +513903,Health,Health +496735,Health,Health +496732,Health,Health +496729,Health,Health +478474,Health,Health +478473,Health,Health +532734,Health,Health +532733,Health,Health +532732,Health,Health +519536,Health,Health +512246,Housing,Housing +512245,Housing,Housing +525042,Housing,Housing +521665,Housing,Housing +482474,Economic Development,Economic Development +482473,Economic Development,Economic Development +522480,Economic Development,Economic Development +517746,Economic Development,Economic Development +517745,Economic Development,Economic Development +516376,Economic Development,Economic Development +516367,Economic Development,Economic Development +516366,Economic Development,Economic Development +516363,Economic Development,Economic Development +509455,Economic Development,Economic Development +505340,Economic Development,Economic Development +503294,Economic Development,Economic Development +502813,Economic Development,Economic Development +499439,Economic Development,Economic Development +499437,Economic Development,Economic Development +499434,Economic Development,Economic Development +499431,Economic Development,Economic Development +499430,Economic Development,Economic Development +499428,Economic Development,Economic Development +499427,Economic Development,Economic Development +495885,Economic Development,Economic Development +495868,Economic Development,Economic Development +495861,Economic Development,Economic Development +495858,Economic Development,Economic Development +495852,Economic Development,Economic Development +495848,Economic Development,Economic Development +495791,Economic Development,Economic Development +493764,Economic Development,Economic Development +493763,Economic Development,Economic Development +490526,Economic Development,Economic Development +490521,Economic Development,Economic Development +490512,Economic Development,Economic Development +485121,Economic Development,Economic Development +482478,Economic Development,Economic Development +490521,Research and Development,Research and Development +490512,Research and Development,Research and Development +522511,Research and Development,Research and Development +517746,Research and Development,Research and Development +517745,Research and Development,Research and Development +516376,Research and Development,Research and Development +516367,Research and Development,Research and Development +516366,Research and Development,Research and Development +516363,Research and Development,Research and Development +509455,Research and Development,Research and Development +505340,Research and Development,Research and Development +503294,Research and Development,Research and Development +502813,Research and Development,Research and Development +499439,Research and Development,Research and Development +499437,Research and Development,Research and Development +499434,Research and Development,Research and Development +499431,Research and Development,Research and Development +499430,Research and Development,Research and Development +499428,Research and Development,Research and Development +499427,Research and Development,Research and Development +495885,Research and Development,Research and Development +495868,Research and Development,Research and Development +495861,Research and Development,Research and Development +495858,Research and Development,Research and Development +495852,Research and Development,Research and Development +493764,Research and Development,Research and Development +493763,Research and Development,Research and Development +479616,Forestry,Forestry +479584,Forestry,Forestry +538513,Forestry,Forestry +538512,Forestry,Forestry +538511,Forestry,Forestry +538510,Forestry,Forestry +538509,Forestry,Forestry +538508,Forestry,Forestry +538507,Forestry,Forestry +538506,Forestry,Forestry +538504,Forestry,Forestry +518239,Forestry,Forestry +498408,Forestry,Forestry +479642,Forestry,Forestry +479636,Forestry,Forestry +479631,Forestry,Forestry +518239,International Trade,International Trade +498408,International Trade,International Trade +479647,International Trade,International Trade +479642,International Trade,International Trade +479636,International Trade,International Trade +479631,International Trade,International Trade +479627,International Trade,International Trade +479619,International Trade,International Trade +479616,International Trade,International Trade +478486,Agriculture,Agriculture +476860,Agriculture,Agriculture +514494,Agriculture,Agriculture +480355,Agriculture,Agriculture +478464,Labour,Labour +478454,Labour,Labour +478631,Labour,Labour +478584,Labour,Labour +478526,Labour,Labour +478468,Labour,Labour +478467,Labour,Labour +478466,Labour,Labour +479112,Government Procurement,Government Procurement +479121,Research and Development,Research and Development +479119,Research and Development,Research and Development +479121,Health,Health +479119,Health,Health +479121,Industry,Industry +479119,Industry,Industry +482506,Economic Development,Economic Development +490311,Economic Development,Economic Development +477171,Economic Development,Economic Development +522925,Economic Development,Economic Development +477065,Agriculture,Agriculture +477059,Agriculture,Agriculture +504924,Agriculture,Agriculture +510763,Health,Health +508139,Health,Health +484503,Health,Health +478567,Health,Health +478566,Health,Health +478565,Health,Health +478564,Health,Health +478539,Health,Health +544031,Health,Health +541255,Health,Health +541254,Health,Health +539834,Health,Health +537477,Health,Health +537474,Health,Health +534141,Health,Health +534138,Health,Health +534101,Health,Health +528094,Health,Health +525109,Health,Health +521742,Health,Health +521737,Health,Health +510771,Health,Health +478639,Climate,Climate +478639,Economic Development,Economic Development +478639,Environment,Environment +478639,Regional Development,Regional Development +520556,Budget,Budget +477183,Budget,Budget +477183,Economic Development,Economic Development +520556,Environment,Environment +477183,Government Procurement,Government Procurement +477183,Housing,Housing +477183,Taxation and Finance,Taxation and Finance +523825,Taxation and Finance,Taxation and Finance +477183,Transportation,Transportation +477226,Internal Trade,Internal Trade +492011,Infrastructure,Infrastructure +480262,Government Procurement,Government Procurement +479408,Government Procurement,Government Procurement +480262,Health,Health +479408,Health,Health +479974,Economic Development,Economic Development +479973,Economic Development,Economic Development +487945,Economic Development,Economic Development +487944,Economic Development,Economic Development +483005,Economic Development,Economic Development +479983,Economic Development,Economic Development +477764,Labour,Labour +480231,Health,Health +480231,Immigration,Immigration +485316,Economic Development,Economic Development +485315,Economic Development,Economic Development +485310,Economic Development,Economic Development +542086,Economic Development,Economic Development +539962,Economic Development,Economic Development +539950,Economic Development,Economic Development +539948,Economic Development,Economic Development +539945,Economic Development,Economic Development +539938,Economic Development,Economic Development +532291,Economic Development,Economic Development +532288,Economic Development,Economic Development +522199,Economic Development,Economic Development +510542,Economic Development,Economic Development +510538,Economic Development,Economic Development +508128,Economic Development,Economic Development +508126,Economic Development,Economic Development +504760,Economic Development,Economic Development +504751,Economic Development,Economic Development +502188,Economic Development,Economic Development +502179,Economic Development,Economic Development +502163,Economic Development,Economic Development +502157,Economic Development,Economic Development +502141,Economic Development,Economic Development +502138,Economic Development,Economic Development +502119,Economic Development,Economic Development +498848,Economic Development,Economic Development +498842,Economic Development,Economic Development +498839,Economic Development,Economic Development +498806,Economic Development,Economic Development +498794,Economic Development,Economic Development +495833,Economic Development,Economic Development +495810,Economic Development,Economic Development +495804,Economic Development,Economic Development +493615,Economic Development,Economic Development +490517,Economic Development,Economic Development +485322,Economic Development,Economic Development +485320,Economic Development,Economic Development +485319,Economic Development,Economic Development +491354,Environment,Environment +484147,Environment,Environment +498402,Environment,Environment +498398,Environment,Environment +498388,Environment,Environment +496234,Environment,Environment +496232,Environment,Environment +496231,Environment,Environment +496228,Environment,Environment +496221,Environment,Environment +493146,Environment,Environment +493144,Environment,Environment +493134,Environment,Environment +491385,Environment,Environment +491366,Infrastructure,Infrastructure +484147,Infrastructure,Infrastructure +498398,Infrastructure,Infrastructure +498388,Infrastructure,Infrastructure +496234,Infrastructure,Infrastructure +496232,Infrastructure,Infrastructure +498402,Taxation and Finance,Taxation and Finance +498388,Taxation and Finance,Taxation and Finance +496231,Taxation and Finance,Taxation and Finance +496221,Taxation and Finance,Taxation and Finance +493146,Taxation and Finance,Taxation and Finance +493144,Taxation and Finance,Taxation and Finance +493134,Taxation and Finance,Taxation and Finance +491385,Taxation and Finance,Taxation and Finance +491366,Taxation and Finance,Taxation and Finance +491354,Taxation and Finance,Taxation and Finance +488091,Taxation and Finance,Taxation and Finance +526838,Climate,Climate +526837,Climate,Climate +480887,Climate,Climate +528647,Climate,Climate +510341,Economic Development,Economic Development +510339,Economic Development,Economic Development +484594,Immigration,Immigration +477910,Immigration,Immigration +544497,Immigration,Immigration +523032,Immigration,Immigration +512881,Immigration,Immigration +504918,Immigration,Immigration +500854,Immigration,Immigration +500846,Immigration,Immigration +497698,Immigration,Immigration +497696,Immigration,Immigration +496650,Immigration,Immigration +484448,Immigration,Immigration +477937,Immigration,Immigration +502663,Immigration,Immigration +502636,Immigration,Immigration +497697,Immigration,Immigration +481094,Immigration,Immigration +479333,Immigration,Immigration +481094,Health,Health +479333,Health,Health +478066,Immigration,Immigration +478064,Immigration,Immigration +478065,Economic Development,Economic Development +536813,Environment,Environment +536812,Environment,Environment +534515,Environment,Environment +530612,Environment,Environment +519653,Environment,Environment +518346,Environment,Environment +502878,Environment,Environment +541361,Environment,Environment +539576,Environment,Environment +536825,Environment,Environment +536822,Environment,Environment +536821,Environment,Environment +536820,Environment,Environment +536819,Environment,Environment +536818,Environment,Environment +536817,Environment,Environment +536816,Environment,Environment +536815,Environment,Environment +480718,Industry,Industry +490963,International Trade,International Trade +479052,International Trade,International Trade +496744,International Trade,International Trade +479052,Regional Development,Regional Development +478661,Regional Development,Regional Development +480779,Economic Development,Economic Development +480718,Economic Development,Economic Development +496744,Economic Development,Economic Development +491920,Economic Development,Economic Development +488400,Economic Development,Economic Development +479052,Transportation,Transportation +478910,Transportation,Transportation +508877,Transportation,Transportation +506835,Transportation,Transportation +501081,Transportation,Transportation +496567,Transportation,Transportation +494483,Transportation,Transportation +488638,Transportation,Transportation +488400,Transportation,Transportation +480947,Transportation,Transportation +478910,Infrastructure,Infrastructure +478661,Infrastructure,Infrastructure +511675,Infrastructure,Infrastructure +508877,Infrastructure,Infrastructure +506835,Infrastructure,Infrastructure +501081,Infrastructure,Infrastructure +496567,Infrastructure,Infrastructure +491920,Infrastructure,Infrastructure +490963,Infrastructure,Infrastructure +488638,Infrastructure,Infrastructure +488400,Infrastructure,Infrastructure +488638,Energy,Energy +480947,Energy,Energy +508877,Energy,Energy +501081,Energy,Energy +496744,Energy,Energy +496567,Energy,Energy +494483,Energy,Energy +491920,Energy,Energy +521821,Government Procurement,Government Procurement +480324,Government Procurement,Government Procurement +480323,Government Procurement,Government Procurement +538375,Government Procurement,Government Procurement +487893,Government Procurement,Government Procurement +484673,Government Procurement,Government Procurement +481658,Government Procurement,Government Procurement +478448,Economic Development,Economic Development +544824,Economic Development,Economic Development +501122,Economic Development,Economic Development +499472,Economic Development,Economic Development +491412,Economic Development,Economic Development +481561,Small Business,Small Business +480132,Small Business,Small Business +483787,Small Business,Small Business +486226,Agriculture,Agriculture +486225,Agriculture,Agriculture +478704,Agriculture,Agriculture +492086,Agriculture,Agriculture +492085,Health,Health +544874,Health,Health +531743,Budget,Budget +531743,Climate,Climate +481199,Government Procurement,Government Procurement +480954,Government Procurement,Government Procurement +480471,Government Procurement,Government Procurement +487580,Government Procurement,Government Procurement +483446,Government Procurement,Government Procurement +485063,Health,Health +481070,Industry,Industry +481069,Industry,Industry +530931,Industry,Industry +501569,Industry,Industry +501568,Industry,Industry +493011,Industry,Industry +493008,Industry,Industry +490340,Industry,Industry +490338,Industry,Industry +490336,Industry,Industry +484780,Industry,Industry +481075,Industry,Industry +481074,Industry,Industry +481073,Industry,Industry +481072,Industry,Industry +516199,International Trade,International Trade +490740,Climate,Climate +484678,Climate,Climate +544176,Climate,Climate +539810,Climate,Climate +537956,Climate,Climate +534705,Climate,Climate +534702,Climate,Climate +534697,Climate,Climate +534695,Climate,Climate +534688,Climate,Climate +534686,Climate,Climate +534682,Climate,Climate +534679,Climate,Climate +534676,Climate,Climate +534672,Climate,Climate +520066,Climate,Climate +517686,Climate,Climate +510804,Climate,Climate +510803,Climate,Climate +510802,Climate,Climate +505451,Climate,Climate +501962,Climate,Climate +501959,Climate,Climate +501956,Climate,Climate +498505,Climate,Climate +498501,Climate,Climate +498497,Climate,Climate +498495,Climate,Climate +495785,Climate,Climate +495783,Climate,Climate +490744,Climate,Climate +510803,Economic Development,Economic Development +505451,Economic Development,Economic Development +501962,Economic Development,Economic Development +501959,Economic Development,Economic Development +501956,Economic Development,Economic Development +498505,Economic Development,Economic Development +498501,Economic Development,Economic Development +498495,Economic Development,Economic Development +490744,Economic Development,Economic Development +490743,Economic Development,Economic Development +490740,Economic Development,Economic Development +534672,Economic Development,Economic Development +531895,Economic Development,Economic Development +520066,Energy,Energy +517686,Energy,Energy +510804,Energy,Energy +510803,Energy,Energy +510802,Energy,Energy +508266,Energy,Energy +505451,Energy,Energy +505450,Energy,Energy +501962,Energy,Energy +501959,Energy,Energy +501956,Energy,Energy +498505,Energy,Energy +498501,Energy,Energy +498497,Energy,Energy +498495,Energy,Energy +495785,Energy,Energy +495783,Energy,Energy +490744,Energy,Energy +490743,Energy,Energy +490740,Energy,Energy +484678,Energy,Energy +544176,Energy,Energy +544175,Energy,Energy +541669,Energy,Energy +541668,Energy,Energy +539810,Energy,Energy +537956,Energy,Energy +534705,Energy,Energy +534702,Energy,Energy +534697,Energy,Energy +534695,Energy,Energy +534688,Energy,Energy +534686,Energy,Energy +534682,Energy,Energy +534679,Energy,Energy +534676,Energy,Energy +534672,Energy,Energy +531895,Energy,Energy +531894,Energy,Energy +531893,Energy,Energy +531892,Energy,Energy +531891,Energy,Energy +531890,Energy,Energy +531889,Energy,Energy +529051,Energy,Energy +544176,Environment,Environment +544175,Environment,Environment +541668,Environment,Environment +539810,Environment,Environment +537956,Environment,Environment +534705,Environment,Environment +534702,Environment,Environment +534697,Environment,Environment +534695,Environment,Environment +534688,Environment,Environment +534686,Environment,Environment +534682,Environment,Environment +534679,Environment,Environment +534676,Environment,Environment +534672,Environment,Environment +531895,Environment,Environment +531894,Environment,Environment +531893,Environment,Environment +531892,Environment,Environment +531891,Environment,Environment +531890,Environment,Environment +531889,Environment,Environment +529051,Environment,Environment +524801,Environment,Environment +517686,Environment,Environment +510804,Environment,Environment +510803,Environment,Environment +510802,Environment,Environment +508266,Environment,Environment +505451,Environment,Environment +505450,Environment,Environment +501962,Environment,Environment +501959,Environment,Environment +501956,Environment,Environment +498501,Environment,Environment +498497,Environment,Environment +498495,Environment,Environment +495785,Environment,Environment +495783,Environment,Environment +490744,Environment,Environment +490743,Environment,Environment +490740,Environment,Environment +498505,Infrastructure,Infrastructure +498501,Infrastructure,Infrastructure +490744,Infrastructure,Infrastructure +490743,Infrastructure,Infrastructure +490740,Infrastructure,Infrastructure +544176,Infrastructure,Infrastructure +544175,Infrastructure,Infrastructure +539810,Infrastructure,Infrastructure +534705,Infrastructure,Infrastructure +534702,Infrastructure,Infrastructure +534697,Infrastructure,Infrastructure +534695,Infrastructure,Infrastructure +534688,Infrastructure,Infrastructure +534686,Infrastructure,Infrastructure +534682,Infrastructure,Infrastructure +534676,Infrastructure,Infrastructure +534672,Infrastructure,Infrastructure +517686,Infrastructure,Infrastructure +501962,Infrastructure,Infrastructure +490743,Transportation,Transportation +490740,Transportation,Transportation +541669,Transportation,Transportation +541668,Transportation,Transportation +539810,Transportation,Transportation +537956,Transportation,Transportation +534705,Transportation,Transportation +534702,Transportation,Transportation +534697,Transportation,Transportation +534695,Transportation,Transportation +534688,Transportation,Transportation +510802,Transportation,Transportation +501959,Transportation,Transportation +498495,Transportation,Transportation +495785,Transportation,Transportation +495783,Transportation,Transportation +480465,Employment and Training,Employment and Training +478518,Employment and Training,Employment and Training +478518,Government Procurement,Government Procurement +482463,Economic Development,Economic Development +478522,Economic Development,Economic Development +480159,Research and Development,Research and Development +480157,Research and Development,Research and Development +488357,Budget,Budget +486542,Budget,Budget +480829,Health,Health +480472,Health,Health +488357,Health,Health +480829,Taxation and Finance,Taxation and Finance +480472,Taxation and Finance,Taxation and Finance +488357,Taxation and Finance,Taxation and Finance +478571,Transportation,Transportation +478638,Agriculture,Agriculture +478638,Budget,Budget +478638,Climate,Climate +478638,Economic Development,Economic Development +478638,Employment and Training,Employment and Training +478638,Energy,Energy +478638,Environment,Environment +478638,Housing,Housing +478638,Industry,Industry +478638,Infrastructure,Infrastructure +478638,Municipalities,Municipalities +478638,Regional Development,Regional Development +478638,Research and Development,Research and Development +478638,Small Business,Small Business +478638,Taxation and Finance,Taxation and Finance +478638,Transportation,Transportation +485851,Economic Development,Economic Development +481299,Economic Development,Economic Development +482276,Health,Health +479543,Transportation,Transportation +505680,Defence,Defence +505676,Defence,Defence +505688,Defence,Defence +507654,Economic Development,Economic Development +507632,Economic Development,Economic Development +544267,Economic Development,Economic Development +526627,Economic Development,Economic Development +518213,Economic Development,Economic Development +518193,Economic Development,Economic Development +515895,Economic Development,Economic Development +514040,Economic Development,Economic Development +507668,Economic Development,Economic Development +507668,Industry,Industry +544267,Industry,Industry +526627,Industry,Industry +520172,Industry,Industry +520167,Industry,Industry +518213,Industry,Industry +518193,Industry,Industry +515895,Industry,Industry +520172,International Relations,International Relations +520167,International Relations,International Relations +514040,International Relations,International Relations +507668,International Relations,International Relations +507663,International Relations,International Relations +507654,International Relations,International Relations +507632,International Relations,International Relations +544267,International Relations,International Relations +505680,International Trade,International Trade +505676,International Trade,International Trade +544267,International Trade,International Trade +526627,International Trade,International Trade +520172,International Trade,International Trade +520167,International Trade,International Trade +518213,International Trade,International Trade +518193,International Trade,International Trade +515895,International Trade,International Trade +511471,International Trade,International Trade +511470,International Trade,International Trade +505688,International Trade,International Trade +478664,Economic Development,Economic Development +478670,Economic Development,Economic Development +487840,Health,Health +481819,Health,Health +487095,Agriculture,Agriculture +483730,Agriculture,Agriculture +481467,Climate,Climate +481466,Climate,Climate +481464,Climate,Climate +481461,Climate,Climate +481455,Climate,Climate +481454,Climate,Climate +481452,Climate,Climate +481449,Climate,Climate +481447,Climate,Climate +481446,Climate,Climate +481445,Climate,Climate +481444,Climate,Climate +481443,Climate,Climate +481442,Climate,Climate +480373,Climate,Climate +480315,Climate,Climate +480314,Climate,Climate +480313,Climate,Climate +480312,Climate,Climate +480311,Climate,Climate +480310,Climate,Climate +480309,Climate,Climate +480308,Climate,Climate +480307,Climate,Climate +480306,Climate,Climate +480304,Climate,Climate +480302,Climate,Climate +480301,Climate,Climate +480300,Climate,Climate +480299,Climate,Climate +480298,Climate,Climate +480297,Climate,Climate +480296,Climate,Climate +480295,Climate,Climate +480294,Climate,Climate +480293,Climate,Climate +480292,Climate,Climate +480291,Climate,Climate +480149,Climate,Climate +544448,Climate,Climate +544354,Climate,Climate +544353,Climate,Climate +544352,Climate,Climate +544351,Climate,Climate +544350,Climate,Climate +544349,Climate,Climate +544348,Climate,Climate +542181,Climate,Climate +540416,Climate,Climate +540386,Climate,Climate +539070,Climate,Climate +538795,Climate,Climate +536624,Climate,Climate +536379,Climate,Climate +536378,Climate,Climate +536377,Climate,Climate +536376,Climate,Climate +536268,Climate,Climate +531453,Climate,Climate +530646,Climate,Climate +530106,Climate,Climate +527368,Climate,Climate +527367,Climate,Climate +523759,Climate,Climate +523593,Climate,Climate +523439,Climate,Climate +523437,Climate,Climate +519992,Climate,Climate +518566,Climate,Climate +518011,Climate,Climate +516705,Climate,Climate +516076,Climate,Climate +514662,Climate,Climate +514661,Climate,Climate +514660,Climate,Climate +514653,Climate,Climate +514652,Climate,Climate +509739,Climate,Climate +503528,Climate,Climate +503527,Climate,Climate +503526,Climate,Climate +503525,Climate,Climate +503263,Climate,Climate +501978,Climate,Climate +501977,Climate,Climate +501976,Climate,Climate +501974,Climate,Climate +501972,Climate,Climate +501971,Climate,Climate +501950,Climate,Climate +501949,Climate,Climate +499904,Climate,Climate +499903,Climate,Climate +499902,Climate,Climate +499901,Climate,Climate +499898,Climate,Climate +499897,Climate,Climate +499896,Climate,Climate +499895,Climate,Climate +499894,Climate,Climate +499893,Climate,Climate +499892,Climate,Climate +499891,Climate,Climate +494976,Climate,Climate +494974,Climate,Climate +494971,Climate,Climate +494970,Climate,Climate +494967,Climate,Climate +494965,Climate,Climate +494961,Climate,Climate +494960,Climate,Climate +494958,Climate,Climate +494956,Climate,Climate +494954,Climate,Climate +494952,Climate,Climate +494950,Climate,Climate +494947,Climate,Climate +492796,Climate,Climate +492795,Climate,Climate +492794,Climate,Climate +492793,Climate,Climate +492783,Climate,Climate +492782,Climate,Climate +492781,Climate,Climate +492780,Climate,Climate +489770,Climate,Climate +489765,Climate,Climate +489762,Climate,Climate +489760,Climate,Climate +489758,Climate,Climate +489756,Climate,Climate +488752,Climate,Climate +488751,Climate,Climate +488750,Climate,Climate +488749,Climate,Climate +488747,Climate,Climate +488745,Climate,Climate +488744,Climate,Climate +488743,Climate,Climate +488737,Climate,Climate +488735,Climate,Climate +488733,Climate,Climate +488732,Climate,Climate +488731,Climate,Climate +488729,Climate,Climate +488727,Climate,Climate +488726,Climate,Climate +488725,Climate,Climate +487097,Climate,Climate +487096,Climate,Climate +487095,Climate,Climate +487094,Climate,Climate +487093,Climate,Climate +487092,Climate,Climate +487088,Climate,Climate +487086,Climate,Climate +483748,Climate,Climate +483741,Climate,Climate +483739,Climate,Climate +483738,Climate,Climate +483737,Climate,Climate +483736,Climate,Climate +483735,Climate,Climate +483733,Climate,Climate +483731,Climate,Climate +483730,Climate,Climate +483729,Climate,Climate +483728,Climate,Climate +483726,Climate,Climate +483725,Climate,Climate +483724,Climate,Climate +481469,Climate,Climate +480291,Energy,Energy +480149,Energy,Energy +538795,Energy,Energy +527368,Energy,Energy +527367,Energy,Energy +518566,Energy,Energy +518011,Energy,Energy +514652,Energy,Energy +503526,Energy,Energy +503263,Energy,Energy +501977,Energy,Energy +501976,Energy,Energy +501972,Energy,Energy +501971,Energy,Energy +501950,Energy,Energy +499898,Energy,Energy +499897,Energy,Energy +499894,Energy,Energy +499891,Energy,Energy +494958,Energy,Energy +494947,Energy,Energy +489770,Energy,Energy +489762,Energy,Energy +489760,Energy,Energy +489756,Energy,Energy +488751,Energy,Energy +488750,Energy,Energy +488749,Energy,Energy +488745,Energy,Energy +488737,Energy,Energy +488732,Energy,Energy +488729,Energy,Energy +488727,Energy,Energy +483731,Energy,Energy +483728,Energy,Energy +481469,Energy,Energy +481468,Energy,Energy +481467,Energy,Energy +481466,Energy,Energy +481464,Energy,Energy +481454,Energy,Energy +481449,Energy,Energy +481447,Energy,Energy +481446,Energy,Energy +481445,Energy,Energy +481444,Energy,Energy +481442,Energy,Energy +480314,Energy,Energy +480312,Energy,Energy +480309,Energy,Energy +480302,Energy,Energy +480301,Energy,Energy +480309,Environment,Environment +480304,Environment,Environment +480302,Environment,Environment +531453,Environment,Environment +523439,Environment,Environment +518566,Environment,Environment +509739,Environment,Environment +508279,Environment,Environment +503528,Environment,Environment +503527,Environment,Environment +503526,Environment,Environment +503525,Environment,Environment +501978,Environment,Environment +501976,Environment,Environment +501972,Environment,Environment +501950,Environment,Environment +501949,Environment,Environment +499904,Environment,Environment +499903,Environment,Environment +499902,Environment,Environment +499901,Environment,Environment +499897,Environment,Environment +499896,Environment,Environment +499895,Environment,Environment +499894,Environment,Environment +499893,Environment,Environment +499892,Environment,Environment +494976,Environment,Environment +494974,Environment,Environment +494971,Environment,Environment +494970,Environment,Environment +494967,Environment,Environment +494965,Environment,Environment +494961,Environment,Environment +494960,Environment,Environment +494958,Environment,Environment +494956,Environment,Environment +494954,Environment,Environment +494952,Environment,Environment +494950,Environment,Environment +494947,Environment,Environment +492796,Environment,Environment +492795,Environment,Environment +492794,Environment,Environment +492793,Environment,Environment +492783,Environment,Environment +492782,Environment,Environment +492781,Environment,Environment +492780,Environment,Environment +489765,Environment,Environment +489758,Environment,Environment +489756,Environment,Environment +488751,Environment,Environment +488750,Environment,Environment +488749,Environment,Environment +488747,Environment,Environment +488745,Environment,Environment +488744,Environment,Environment +488743,Environment,Environment +488735,Environment,Environment +488733,Environment,Environment +488732,Environment,Environment +488731,Environment,Environment +488729,Environment,Environment +488727,Environment,Environment +488726,Environment,Environment +488725,Environment,Environment +487097,Environment,Environment +487096,Environment,Environment +487095,Environment,Environment +487093,Environment,Environment +487088,Environment,Environment +487086,Environment,Environment +483748,Environment,Environment +483741,Environment,Environment +483739,Environment,Environment +483736,Environment,Environment +483735,Environment,Environment +483731,Environment,Environment +483730,Environment,Environment +483729,Environment,Environment +483728,Environment,Environment +483726,Environment,Environment +483725,Environment,Environment +483724,Environment,Environment +481469,Environment,Environment +481468,Environment,Environment +481466,Environment,Environment +481464,Environment,Environment +481461,Environment,Environment +481454,Environment,Environment +481452,Environment,Environment +481447,Environment,Environment +481446,Environment,Environment +480315,Environment,Environment +480312,Environment,Environment +488727,Industry,Industry +488726,Industry,Industry +487092,Industry,Industry +542181,Industry,Industry +540416,Industry,Industry +540386,Industry,Industry +536624,Industry,Industry +536377,Industry,Industry +536376,Industry,Industry +536268,Industry,Industry +519992,Industry,Industry +516705,Industry,Industry +516076,Industry,Industry +501977,Industry,Industry +501976,Industry,Industry +501971,Industry,Industry +501950,Industry,Industry +499898,Industry,Industry +499891,Industry,Industry +494970,Industry,Industry +494967,Industry,Industry +494958,Industry,Industry +494956,Industry,Industry +494954,Industry,Industry +489770,Industry,Industry +489762,Industry,Industry +489760,Industry,Industry +489756,Industry,Industry +488751,Industry,Industry +488750,Industry,Industry +488749,Industry,Industry +488735,Industry,Industry +488732,Industry,Industry +480293,Taxation and Finance,Taxation and Finance +480292,Taxation and Finance,Taxation and Finance +542181,Taxation and Finance,Taxation and Finance +540416,Taxation and Finance,Taxation and Finance +539070,Taxation and Finance,Taxation and Finance +536624,Taxation and Finance,Taxation and Finance +536379,Taxation and Finance,Taxation and Finance +536378,Taxation and Finance,Taxation and Finance +523759,Taxation and Finance,Taxation and Finance +523593,Taxation and Finance,Taxation and Finance +508279,Taxation and Finance,Taxation and Finance +503526,Taxation and Finance,Taxation and Finance +503263,Taxation and Finance,Taxation and Finance +501974,Taxation and Finance,Taxation and Finance +499904,Taxation and Finance,Taxation and Finance +499903,Taxation and Finance,Taxation and Finance +499901,Taxation and Finance,Taxation and Finance +499897,Taxation and Finance,Taxation and Finance +499896,Taxation and Finance,Taxation and Finance +499894,Taxation and Finance,Taxation and Finance +499892,Taxation and Finance,Taxation and Finance +494976,Taxation and Finance,Taxation and Finance +494967,Taxation and Finance,Taxation and Finance +494965,Taxation and Finance,Taxation and Finance +494960,Taxation and Finance,Taxation and Finance +492796,Taxation and Finance,Taxation and Finance +492794,Taxation and Finance,Taxation and Finance +492783,Taxation and Finance,Taxation and Finance +492782,Taxation and Finance,Taxation and Finance +492780,Taxation and Finance,Taxation and Finance +489770,Taxation and Finance,Taxation and Finance +489760,Taxation and Finance,Taxation and Finance +488752,Taxation and Finance,Taxation and Finance +488751,Taxation and Finance,Taxation and Finance +488747,Taxation and Finance,Taxation and Finance +488737,Taxation and Finance,Taxation and Finance +488731,Taxation and Finance,Taxation and Finance +488725,Taxation and Finance,Taxation and Finance +487097,Taxation and Finance,Taxation and Finance +487096,Taxation and Finance,Taxation and Finance +487094,Taxation and Finance,Taxation and Finance +487092,Taxation and Finance,Taxation and Finance +483748,Taxation and Finance,Taxation and Finance +483741,Taxation and Finance,Taxation and Finance +483738,Taxation and Finance,Taxation and Finance +483737,Taxation and Finance,Taxation and Finance +483736,Taxation and Finance,Taxation and Finance +483735,Taxation and Finance,Taxation and Finance +483733,Taxation and Finance,Taxation and Finance +483731,Taxation and Finance,Taxation and Finance +483730,Taxation and Finance,Taxation and Finance +483728,Taxation and Finance,Taxation and Finance +483726,Taxation and Finance,Taxation and Finance +483724,Taxation and Finance,Taxation and Finance +481467,Taxation and Finance,Taxation and Finance +481461,Taxation and Finance,Taxation and Finance +481455,Taxation and Finance,Taxation and Finance +481454,Taxation and Finance,Taxation and Finance +481449,Taxation and Finance,Taxation and Finance +481446,Taxation and Finance,Taxation and Finance +481445,Taxation and Finance,Taxation and Finance +481444,Taxation and Finance,Taxation and Finance +481443,Taxation and Finance,Taxation and Finance +481442,Taxation and Finance,Taxation and Finance +480373,Taxation and Finance,Taxation and Finance +480315,Taxation and Finance,Taxation and Finance +480314,Taxation and Finance,Taxation and Finance +480313,Taxation and Finance,Taxation and Finance +480311,Taxation and Finance,Taxation and Finance +480310,Taxation and Finance,Taxation and Finance +480308,Taxation and Finance,Taxation and Finance +480307,Taxation and Finance,Taxation and Finance +480306,Taxation and Finance,Taxation and Finance +480304,Taxation and Finance,Taxation and Finance +480300,Taxation and Finance,Taxation and Finance +480299,Taxation and Finance,Taxation and Finance +480298,Taxation and Finance,Taxation and Finance +480297,Taxation and Finance,Taxation and Finance +480296,Taxation and Finance,Taxation and Finance +480295,Taxation and Finance,Taxation and Finance +480888,Environment,Environment +478784,Infrastructure,Infrastructure +478784,Economic Development,Economic Development +497390,Energy,Energy +494095,Energy,Energy +497390,Environment,Environment +497320,Environment,Environment +496584,Environment,Environment +485472,Environment,Environment +483148,Environment,Environment +482470,Environment,Environment +511720,Environment,Environment +500173,Environment,Environment +479036,Infrastructure,Infrastructure +479035,Infrastructure,Infrastructure +500175,Infrastructure,Infrastructure +500174,Infrastructure,Infrastructure +500173,Infrastructure,Infrastructure +497388,Infrastructure,Infrastructure +497320,Infrastructure,Infrastructure +495727,Infrastructure,Infrastructure +495169,Infrastructure,Infrastructure +485472,Infrastructure,Infrastructure +483148,Infrastructure,Infrastructure +482471,Infrastructure,Infrastructure +482470,Infrastructure,Infrastructure +479038,Infrastructure,Infrastructure +482471,International Trade,International Trade +482470,International Trade,International Trade +500175,International Trade,International Trade +497395,International Trade,International Trade +497390,International Trade,International Trade +497388,International Trade,International Trade +497320,International Trade,International Trade +479036,Transportation,Transportation +479035,Transportation,Transportation +506011,Transportation,Transportation +506009,Transportation,Transportation +500175,Transportation,Transportation +500174,Transportation,Transportation +500173,Transportation,Transportation +500171,Transportation,Transportation +497390,Transportation,Transportation +497388,Transportation,Transportation +497320,Transportation,Transportation +496584,Transportation,Transportation +495727,Transportation,Transportation +495169,Transportation,Transportation +494014,Transportation,Transportation +485472,Transportation,Transportation +483148,Transportation,Transportation +482471,Transportation,Transportation +482470,Transportation,Transportation +479038,Transportation,Transportation +481436,Health,Health +479090,Health,Health +481353,Immigration,Immigration +479093,Immigration,Immigration +494707,Immigration,Immigration +493982,Immigration,Immigration +490019,Immigration,Immigration +489417,Immigration,Immigration +483111,Immigration,Immigration +481232,Employment and Training,Employment and Training +481230,Employment and Training,Employment and Training +481226,Employment and Training,Employment and Training +481225,Employment and Training,Employment and Training +531380,Employment and Training,Employment and Training +509966,Employment and Training,Employment and Training +509964,Employment and Training,Employment and Training +501896,Employment and Training,Employment and Training +501895,Employment and Training,Employment and Training +501892,Employment and Training,Employment and Training +483836,Employment and Training,Employment and Training +483831,Employment and Training,Employment and Training +483828,Employment and Training,Employment and Training +517552,Environment,Environment +508072,Environment,Environment +490176,Environment,Environment +490170,Environment,Environment +486540,Environment,Environment +486539,Environment,Environment +483837,Environment,Environment +483824,Environment,Environment +483823,Environment,Environment +481232,Environment,Environment +481230,Environment,Environment +481228,Environment,Environment +481227,Environment,Environment +481162,Employment and Training,Employment and Training +533116,Mining,Mining +523546,Mining,Mining +516344,Mining,Mining +494936,Mining,Mining +488051,International Trade,International Trade +481044,International Trade,International Trade +480135,Industry,Industry +480135,Mining,Mining +480135,Security,Security +478889,Agriculture,Agriculture +478877,Agriculture,Agriculture +496618,Agriculture,Agriculture +478942,Agriculture,Agriculture +478932,Agriculture,Agriculture +478903,Agriculture,Agriculture +478844,Budget,Budget +478843,Budget,Budget +479984,Budget,Budget +478947,Budget,Budget +478946,Budget,Budget +478945,Budget,Budget +478944,Budget,Budget +478943,Budget,Budget +478942,Budget,Budget +478940,Budget,Budget +478939,Budget,Budget +478937,Budget,Budget +478936,Budget,Budget +478933,Budget,Budget +478932,Budget,Budget +478929,Budget,Budget +478927,Budget,Budget +478926,Budget,Budget +478925,Budget,Budget +478924,Budget,Budget +478923,Budget,Budget +478922,Budget,Budget +478921,Budget,Budget +482275,International Trade,International Trade +482275,Regional Development,Regional Development +482275,Small Business,Small Business +482275,Tourism,Tourism +492882,Transportation,Transportation +479424,Municipalities,Municipalities +491354,Climate,Climate +491354,Economic Development,Economic Development +491354,Energy,Energy +493144,Forestry,Forestry +488091,Industry,Industry +491385,International Trade,International Trade +498402,Labour,Labour +488091,Mining,Mining +491385,Regional Development,Regional Development +491354,Research and Development,Research and Development +480211,Health,Health +482354,Justice and Law Enforcement,Justice and Law Enforcement +482354,Sports,Sports +476881,Agriculture,Agriculture +478465,Climate,Climate +478465,Consumer Issues,Consumer Issues +478465,Economic Development,Economic Development +478465,Education,Education +478465,Employment and Training,Employment and Training +478465,Energy,Energy +478465,Environment,Environment +478465,Health,Health +478465,Housing,Housing +478465,Industry,Industry +478465,Infrastructure,Infrastructure +478466,International Trade,International Trade +478466,Research and Development,Research and Development +478465,Small Business,Small Business +491679,Sports,Sports +482123,Tourism,Tourism +513903,Government Procurement,Government Procurement +519535,Health,Health +532734,Industry,Industry +478406,Intellectual Property,Intellectual Property +521471,Housing,Housing +480884,Security,Security +480884,Taxation and Finance,Taxation and Finance +480884,Budget,Budget +476750,Industry,Industry +481042,Climate,Climate +481042,Economic Development,Economic Development +478976,Official Languages,Official Languages +482475,Economic Development,Economic Development +490526,Research and Development,Research and Development +479619,Forestry,Forestry +479584,International Trade,International Trade +478960,Agriculture,Agriculture +478465,Labour,Labour +479113,Government Procurement,Government Procurement +479112,Health,Health +479122,Research and Development,Research and Development +479122,Health,Health +479122,Industry,Industry +488533,Economic Development,Economic Development +485173,Energy,Energy +482506,Industry,Industry +479189,Government Procurement,Government Procurement +477012,Budget,Budget +517337,Economic Development,Economic Development +490323,Agriculture,Agriculture +510768,Health,Health +478639,Agriculture,Agriculture +478639,Budget,Budget +480169,Climate,Climate +480169,Economic Development,Economic Development +478639,Employment and Training,Employment and Training +478639,Energy,Energy +480169,Environment,Environment +478639,Government Procurement,Government Procurement +478639,Housing,Housing +478639,Industry,Industry +478639,Infrastructure,Infrastructure +478639,Labour,Labour +478639,Municipalities,Municipalities +480169,Regional Development,Regional Development +478639,Research and Development,Research and Development +478639,Small Business,Small Business +478639,Taxation and Finance,Taxation and Finance +478639,Transportation,Transportation +477129,Economic Development,Economic Development +477127,Labour,Labour +479101,Mining,Mining +477131,Taxation and Finance,Taxation and Finance +477131,Labour,Labour +477183,Agriculture,Agriculture +523825,Budget,Budget +477183,Climate,Climate +520556,Economic Development,Economic Development +477183,Employment and Training,Employment and Training +477183,Energy,Energy +477183,Environment,Environment +482232,Government Procurement,Government Procurement +482232,Housing,Housing +477183,Industry,Industry +477183,Infrastructure,Infrastructure +477183,Municipalities,Municipalities +477183,Regional Development,Regional Development +477183,Research and Development,Research and Development +477183,Small Business,Small Business +482232,Taxation and Finance,Taxation and Finance +482232,Transportation,Transportation +485360,Internal Trade,Internal Trade +477235,International Trade,International Trade +494318,Infrastructure,Infrastructure +480263,Government Procurement,Government Procurement +480263,Health,Health +479979,Economic Development,Economic Development +477657,Labour,Labour +483477,Labour,Labour +480232,Health,Health +480232,Immigration,Immigration +485317,Economic Development,Economic Development +491366,Environment,Environment +491385,Infrastructure,Infrastructure +484147,Taxation and Finance,Taxation and Finance +498398,Transportation,Transportation +526839,Climate,Climate +512293,Economic Development,Economic Development +496647,Immigration,Immigration +477934,Small Business,Small Business +477934,Tourism,Tourism +487731,Immigration,Immigration +477098,Economic Development,Economic Development +477972,Employment and Training,Employment and Training +477972,Taxation and Finance,Taxation and Finance +477979,Industry,Industry +478030,Climate,Climate +481097,Immigration,Immigration +481097,Health,Health +498918,Transportation,Transportation +498918,Immigration,Immigration +515994,Economic Development,Economic Development +536814,Environment,Environment +482205,Economic Development,Economic Development +480779,Industry,Industry +491920,International Trade,International Trade +480947,Regional Development,Regional Development +480947,Economic Development,Economic Development +480779,Transportation,Transportation +479052,Infrastructure,Infrastructure +490963,Energy,Energy +536214,Government Procurement,Government Procurement +481656,Government Procurement,Government Procurement +497790,International Trade,International Trade +497790,Taxation and Finance,Taxation and Finance +478414,Defence,Defence +478421,Environment,Environment +488643,Transportation,Transportation +478435,Small Business,Small Business +501101,Economic Development,Economic Development +499908,Economic Development,Economic Development +511258,Regional Development,Regional Development +527674,Consumer Issues,Consumer Issues +484200,International Relations,International Relations +481562,Small Business,Small Business +532761,Financial Institutions,Financial Institutions +532761,Consumer Issues,Consumer Issues +492085,Agriculture,Agriculture +520768,Health,Health +478704,International Relations,International Relations +478533,Transportation,Transportation +531747,Budget,Budget +531747,Climate,Climate +483180,Government Procurement,Government Procurement +487582,Health,Health +481071,Industry,Industry +524423,International Trade,International Trade +490743,Climate,Climate +520066,Economic Development,Economic Development +524801,Energy,Energy +484678,Environment,Environment +501959,Infrastructure,Infrastructure +490744,Transportation,Transportation +483216,Employment and Training,Employment and Training +480465,Government Procurement,Government Procurement +482464,Economic Development,Economic Development +485363,Transportation,Transportation +481800,Research and Development,Research and Development +480157,Health,Health +480829,Budget,Budget +486542,Health,Health +486542,Taxation and Finance,Taxation and Finance +478545,Forestry,Forestry +478547,Forestry,Forestry +478549,Forestry,Forestry +478551,Forestry,Forestry +478552,Forestry,Forestry +478553,Forestry,Forestry +478554,Forestry,Forestry +478555,Forestry,Forestry +478556,Forestry,Forestry +478557,Forestry,Forestry +478558,Forestry,Forestry +478559,Forestry,Forestry +478560,Forestry,Forestry +478562,Forestry,Forestry +482681,Transportation,Transportation +478574,Forestry,Forestry +478575,Forestry,Forestry +478576,Forestry,Forestry +478577,Forestry,Forestry +482494,Forestry,Forestry +478579,Forestry,Forestry +478580,Forestry,Forestry +478581,Defence,Defence +486332,Budget,Budget +486332,Health,Health +486332,Taxation and Finance,Taxation and Finance +479285,Economic Development,Economic Development +479285,Infrastructure,Infrastructure +479285,Health,Health +479285,Industry,Industry +479285,Internal Trade,Internal Trade +480222,Health,Health +479969,Agriculture,Agriculture +479969,Budget,Budget +479969,Climate,Climate +479969,Economic Development,Economic Development +479969,Employment and Training,Employment and Training +479969,Energy,Energy +479969,Environment,Environment +479969,Government Procurement,Government Procurement +479969,Housing,Housing +479969,Industry,Industry +479969,Infrastructure,Infrastructure +479969,Municipalities,Municipalities +479969,Regional Development,Regional Development +479969,Research and Development,Research and Development +479969,Small Business,Small Business +479969,Taxation and Finance,Taxation and Finance +479969,Transportation,Transportation +478632,International Development,International Development +486415,Economic Development,Economic Development +491307,Government Procurement,Government Procurement +485134,Health,Health +480124,Transportation,Transportation +505683,Defence,Defence +507663,Economic Development,Economic Development +514040,Industry,Industry +526627,International Relations,International Relations +505683,International Trade,International Trade +478666,Economic Development,Economic Development +478668,Environment,Environment +479253,Government Procurement,Government Procurement +479698,Economic Development,Economic Development +478670,International Relations,International Relations +478672,Taxation and Finance,Taxation and Finance +490438,Health,Health +501978,Agriculture,Agriculture +481468,Climate,Climate +480295,Energy,Energy +480311,Environment,Environment +488729,Industry,Industry +480294,Taxation and Finance,Taxation and Finance +478697,Defence,Defence +486743,Environment,Environment +478957,Infrastructure,Infrastructure +478957,Economic Development,Economic Development +511720,Energy,Energy +497395,Environment,Environment +479037,Infrastructure,Infrastructure +485472,International Trade,International Trade +479037,Transportation,Transportation +480716,Environment,Environment +484221,Climate,Climate +484221,Economic Development,Economic Development +484221,Environment,Environment +483666,Health,Health +482821,Immigration,Immigration +481233,Employment and Training,Employment and Training +478735,Environment,Environment +481164,Employment and Training,Employment and Training +478752,Defence,Defence +478752,Security,Security +478754,Mining,Mining +491843,Industry,Industry +491841,International Trade,International Trade +480136,Industry,Industry +480136,Mining,Mining +480136,Security,Security +478898,Agriculture,Agriculture +478845,Budget,Budget +478845,Climate,Climate +478845,Economic Development,Economic Development +478845,Environment,Environment +478856,Infrastructure,Infrastructure +478845,Regional Development,Regional Development +478777,Infrastructure,Infrastructure +484308,Infrastructure,Infrastructure +484311,Infrastructure,Infrastructure +481079,Infrastructure,Infrastructure +481062,Infrastructure,Infrastructure +528851,Budget,Budget +514502,Health,Health +509561,Immigration,Immigration +486363,Privacy and Access to Information,Privacy and Access to Information +489776,Research and Development,Research and Development +486364,Security,Security +494067,Economic Development,Economic Development +494849,Small Business,Small Business +478904,Budget,Budget +478902,Budget,Budget +478901,Budget,Budget +478900,Budget,Budget +478899,Budget,Budget +478898,Budget,Budget +478897,Budget,Budget +478895,Budget,Budget +478894,Budget,Budget +478893,Budget,Budget +478892,Budget,Budget +478891,Budget,Budget +478890,Budget,Budget +478889,Budget,Budget +478888,Budget,Budget +478887,Budget,Budget +478886,Budget,Budget +478885,Budget,Budget +478884,Budget,Budget +478883,Budget,Budget +478882,Budget,Budget +478879,Budget,Budget +478878,Budget,Budget +478877,Budget,Budget +478876,Budget,Budget +478875,Budget,Budget +478874,Budget,Budget +478873,Budget,Budget +478872,Budget,Budget +478871,Budget,Budget +478870,Budget,Budget +478869,Budget,Budget +478867,Budget,Budget +478865,Budget,Budget +478864,Budget,Budget +478863,Budget,Budget +478862,Budget,Budget +478861,Budget,Budget +478860,Budget,Budget +478859,Budget,Budget +478858,Budget,Budget +478857,Budget,Budget +478856,Budget,Budget +478855,Budget,Budget +478854,Budget,Budget +478853,Budget,Budget +478852,Budget,Budget +478851,Budget,Budget +478849,Budget,Budget +478848,Budget,Budget +478847,Budget,Budget +478846,Budget,Budget +478844,Climate,Climate +478843,Climate,Climate +496618,Climate,Climate +482667,Climate,Climate +479984,Climate,Climate +478948,Climate,Climate +478947,Climate,Climate +478946,Climate,Climate +478945,Climate,Climate +478944,Climate,Climate +478943,Climate,Climate +478942,Climate,Climate +478940,Climate,Climate +478939,Climate,Climate +478937,Climate,Climate +478936,Climate,Climate +478933,Climate,Climate +478932,Climate,Climate +478929,Climate,Climate +478927,Climate,Climate +478926,Climate,Climate +478925,Climate,Climate +478924,Climate,Climate +478923,Climate,Climate +478922,Climate,Climate +478921,Climate,Climate +478904,Climate,Climate +478903,Climate,Climate +478902,Climate,Climate +478901,Climate,Climate +478900,Climate,Climate +478899,Climate,Climate +478898,Climate,Climate +478897,Climate,Climate +478895,Climate,Climate +478894,Climate,Climate +478893,Climate,Climate +478892,Climate,Climate +478891,Climate,Climate +478890,Climate,Climate +478889,Climate,Climate +478888,Climate,Climate +478887,Climate,Climate +478886,Climate,Climate +478885,Climate,Climate +478884,Climate,Climate +478883,Climate,Climate +478882,Climate,Climate +478879,Climate,Climate +478878,Climate,Climate +478877,Climate,Climate +478876,Climate,Climate +478875,Climate,Climate +478874,Climate,Climate +478873,Climate,Climate +478872,Climate,Climate +478871,Climate,Climate +478870,Climate,Climate +478869,Climate,Climate +478867,Climate,Climate +478865,Climate,Climate +478864,Climate,Climate +478863,Climate,Climate +478862,Climate,Climate +478861,Climate,Climate +478860,Climate,Climate +478859,Climate,Climate +478858,Climate,Climate +478857,Climate,Climate +478856,Climate,Climate +478855,Climate,Climate +478854,Climate,Climate +478853,Climate,Climate +478852,Climate,Climate +478851,Climate,Climate +478849,Climate,Climate +478848,Climate,Climate +478847,Climate,Climate +478846,Climate,Climate +478844,Economic Development,Economic Development +478843,Economic Development,Economic Development +482667,Economic Development,Economic Development +479984,Economic Development,Economic Development +478948,Economic Development,Economic Development +478947,Economic Development,Economic Development +478946,Economic Development,Economic Development +478945,Economic Development,Economic Development +478944,Economic Development,Economic Development +478943,Economic Development,Economic Development +478942,Economic Development,Economic Development +478940,Economic Development,Economic Development +478939,Economic Development,Economic Development +478937,Economic Development,Economic Development +478936,Economic Development,Economic Development +478933,Economic Development,Economic Development +478932,Economic Development,Economic Development +478929,Economic Development,Economic Development +478927,Economic Development,Economic Development +478926,Economic Development,Economic Development +478925,Economic Development,Economic Development +478924,Economic Development,Economic Development +478923,Economic Development,Economic Development +478922,Economic Development,Economic Development +478921,Economic Development,Economic Development +478904,Economic Development,Economic Development +478903,Economic Development,Economic Development +478902,Economic Development,Economic Development +478901,Economic Development,Economic Development +478900,Economic Development,Economic Development +478899,Economic Development,Economic Development +478898,Economic Development,Economic Development +478897,Economic Development,Economic Development +478895,Economic Development,Economic Development +478894,Economic Development,Economic Development +478893,Economic Development,Economic Development +478892,Economic Development,Economic Development +478891,Economic Development,Economic Development +478890,Economic Development,Economic Development +478889,Economic Development,Economic Development +478888,Economic Development,Economic Development +478887,Economic Development,Economic Development +478886,Economic Development,Economic Development +478885,Economic Development,Economic Development +478884,Economic Development,Economic Development +478883,Economic Development,Economic Development +478882,Economic Development,Economic Development +478879,Economic Development,Economic Development +478878,Economic Development,Economic Development +478877,Economic Development,Economic Development +478876,Economic Development,Economic Development +478875,Economic Development,Economic Development +478874,Economic Development,Economic Development +478873,Economic Development,Economic Development +478872,Economic Development,Economic Development +478871,Economic Development,Economic Development +478870,Economic Development,Economic Development +478869,Economic Development,Economic Development +478867,Economic Development,Economic Development +478865,Economic Development,Economic Development +478864,Economic Development,Economic Development +478863,Economic Development,Economic Development +478862,Economic Development,Economic Development +478861,Economic Development,Economic Development +478860,Economic Development,Economic Development +478859,Economic Development,Economic Development +478858,Economic Development,Economic Development +478857,Economic Development,Economic Development +478856,Economic Development,Economic Development +478855,Economic Development,Economic Development +478854,Economic Development,Economic Development +478853,Economic Development,Economic Development +478852,Economic Development,Economic Development +478851,Economic Development,Economic Development +478849,Economic Development,Economic Development +478848,Economic Development,Economic Development +478847,Economic Development,Economic Development +478846,Economic Development,Economic Development +478844,Environment,Environment +478843,Environment,Environment +496618,Environment,Environment +482667,Environment,Environment +479984,Environment,Environment +478948,Environment,Environment +478947,Environment,Environment +478946,Environment,Environment +478945,Environment,Environment +478944,Environment,Environment +478943,Environment,Environment +478942,Environment,Environment +478940,Environment,Environment +478939,Environment,Environment +478937,Environment,Environment +478936,Environment,Environment +478933,Environment,Environment +478932,Environment,Environment +478929,Environment,Environment +478927,Environment,Environment +478926,Environment,Environment +478925,Environment,Environment +478924,Environment,Environment +478923,Environment,Environment +478922,Environment,Environment +478921,Environment,Environment +478904,Environment,Environment +478903,Environment,Environment +478902,Environment,Environment +478901,Environment,Environment +478900,Environment,Environment +478899,Environment,Environment +478898,Environment,Environment +478897,Environment,Environment +478895,Environment,Environment +478894,Environment,Environment +478893,Environment,Environment +478892,Environment,Environment +478891,Environment,Environment +478890,Environment,Environment +478889,Environment,Environment +478888,Environment,Environment +478887,Environment,Environment +478886,Environment,Environment +478885,Environment,Environment +478884,Environment,Environment +478883,Environment,Environment +478882,Environment,Environment +478879,Environment,Environment +478878,Environment,Environment +478877,Environment,Environment +478876,Environment,Environment +478875,Environment,Environment +478874,Environment,Environment +478873,Environment,Environment +478872,Environment,Environment +478871,Environment,Environment +478870,Environment,Environment +478869,Environment,Environment +478867,Environment,Environment +478865,Environment,Environment +478864,Environment,Environment +478863,Environment,Environment +478862,Environment,Environment +478861,Environment,Environment +478860,Environment,Environment +478859,Environment,Environment +478858,Environment,Environment +478857,Environment,Environment +478856,Environment,Environment +478855,Environment,Environment +478854,Environment,Environment +478853,Environment,Environment +478852,Environment,Environment +478851,Environment,Environment +478849,Environment,Environment +478848,Environment,Environment +478847,Environment,Environment +478846,Environment,Environment +478855,Infrastructure,Infrastructure +478854,Infrastructure,Infrastructure +478853,Infrastructure,Infrastructure +478852,Infrastructure,Infrastructure +478851,Infrastructure,Infrastructure +478849,Infrastructure,Infrastructure +478848,Infrastructure,Infrastructure +478847,Infrastructure,Infrastructure +478846,Infrastructure,Infrastructure +478845,Infrastructure,Infrastructure +478844,Infrastructure,Infrastructure +478843,Infrastructure,Infrastructure +482667,Infrastructure,Infrastructure +479984,Infrastructure,Infrastructure +478948,Infrastructure,Infrastructure +478947,Infrastructure,Infrastructure +478946,Infrastructure,Infrastructure +478945,Infrastructure,Infrastructure +478944,Infrastructure,Infrastructure +478943,Infrastructure,Infrastructure +478942,Infrastructure,Infrastructure +478940,Infrastructure,Infrastructure +478939,Infrastructure,Infrastructure +478937,Infrastructure,Infrastructure +478936,Infrastructure,Infrastructure +478933,Infrastructure,Infrastructure +478932,Infrastructure,Infrastructure +478929,Infrastructure,Infrastructure +478927,Infrastructure,Infrastructure +478926,Infrastructure,Infrastructure +478925,Infrastructure,Infrastructure +478924,Infrastructure,Infrastructure +478923,Infrastructure,Infrastructure +478922,Infrastructure,Infrastructure +478921,Infrastructure,Infrastructure +478904,Infrastructure,Infrastructure +478902,Infrastructure,Infrastructure +478901,Infrastructure,Infrastructure +478900,Infrastructure,Infrastructure +478899,Infrastructure,Infrastructure +478898,Infrastructure,Infrastructure +478897,Infrastructure,Infrastructure +478895,Infrastructure,Infrastructure +478894,Infrastructure,Infrastructure +478893,Infrastructure,Infrastructure +478892,Infrastructure,Infrastructure +478891,Infrastructure,Infrastructure +478890,Infrastructure,Infrastructure +478889,Infrastructure,Infrastructure +478888,Infrastructure,Infrastructure +478887,Infrastructure,Infrastructure +478886,Infrastructure,Infrastructure +478885,Infrastructure,Infrastructure +478884,Infrastructure,Infrastructure +478883,Infrastructure,Infrastructure +478882,Infrastructure,Infrastructure +478879,Infrastructure,Infrastructure +478878,Infrastructure,Infrastructure +478877,Infrastructure,Infrastructure +478876,Infrastructure,Infrastructure +478875,Infrastructure,Infrastructure +478874,Infrastructure,Infrastructure +478873,Infrastructure,Infrastructure +478872,Infrastructure,Infrastructure +478871,Infrastructure,Infrastructure +478870,Infrastructure,Infrastructure +478869,Infrastructure,Infrastructure +478867,Infrastructure,Infrastructure +478865,Infrastructure,Infrastructure +478864,Infrastructure,Infrastructure +478863,Infrastructure,Infrastructure +478862,Infrastructure,Infrastructure +478861,Infrastructure,Infrastructure +478860,Infrastructure,Infrastructure +478859,Infrastructure,Infrastructure +478858,Infrastructure,Infrastructure +478857,Infrastructure,Infrastructure +478844,Regional Development,Regional Development +478843,Regional Development,Regional Development +482667,Regional Development,Regional Development +479984,Regional Development,Regional Development +478948,Regional Development,Regional Development +478947,Regional Development,Regional Development +478946,Regional Development,Regional Development +478945,Regional Development,Regional Development +478944,Regional Development,Regional Development +478943,Regional Development,Regional Development +478942,Regional Development,Regional Development +478940,Regional Development,Regional Development +478939,Regional Development,Regional Development +478937,Regional Development,Regional Development +478936,Regional Development,Regional Development +478933,Regional Development,Regional Development +478932,Regional Development,Regional Development +478929,Regional Development,Regional Development +478927,Regional Development,Regional Development +478926,Regional Development,Regional Development +478925,Regional Development,Regional Development +478924,Regional Development,Regional Development +478923,Regional Development,Regional Development +478922,Regional Development,Regional Development +478921,Regional Development,Regional Development +478904,Regional Development,Regional Development +478903,Regional Development,Regional Development +478902,Regional Development,Regional Development +478901,Regional Development,Regional Development +478900,Regional Development,Regional Development +478899,Regional Development,Regional Development +478898,Regional Development,Regional Development +478897,Regional Development,Regional Development +478895,Regional Development,Regional Development +478894,Regional Development,Regional Development +478893,Regional Development,Regional Development +478892,Regional Development,Regional Development +478891,Regional Development,Regional Development +478890,Regional Development,Regional Development +478889,Regional Development,Regional Development +478888,Regional Development,Regional Development +478887,Regional Development,Regional Development +478886,Regional Development,Regional Development +478885,Regional Development,Regional Development +478884,Regional Development,Regional Development +478883,Regional Development,Regional Development +478882,Regional Development,Regional Development +478879,Regional Development,Regional Development +478878,Regional Development,Regional Development +478877,Regional Development,Regional Development +478876,Regional Development,Regional Development +478875,Regional Development,Regional Development +478874,Regional Development,Regional Development +478873,Regional Development,Regional Development +478872,Regional Development,Regional Development +478871,Regional Development,Regional Development +478870,Regional Development,Regional Development +478869,Regional Development,Regional Development +478867,Regional Development,Regional Development +478865,Regional Development,Regional Development +478864,Regional Development,Regional Development +478863,Regional Development,Regional Development +478862,Regional Development,Regional Development +478861,Regional Development,Regional Development +478860,Regional Development,Regional Development +478859,Regional Development,Regional Development +478858,Regional Development,Regional Development +478857,Regional Development,Regional Development +478856,Regional Development,Regional Development +478855,Regional Development,Regional Development +478854,Regional Development,Regional Development +478853,Regional Development,Regional Development +478852,Regional Development,Regional Development +478851,Regional Development,Regional Development +478849,Regional Development,Regional Development +478848,Regional Development,Regional Development +478847,Regional Development,Regional Development +478846,Regional Development,Regional Development +481076,Infrastructure,Infrastructure +478778,Infrastructure,Infrastructure +484396,Infrastructure,Infrastructure +484382,Infrastructure,Infrastructure +484333,Infrastructure,Infrastructure +481064,Infrastructure,Infrastructure +478779,Infrastructure,Infrastructure +484358,Infrastructure,Infrastructure +484325,Infrastructure,Infrastructure +481063,Infrastructure,Infrastructure +478780,Infrastructure,Infrastructure +484395,Infrastructure,Infrastructure +484318,Infrastructure,Infrastructure +484306,Infrastructure,Infrastructure +484299,Infrastructure,Infrastructure +481061,Infrastructure,Infrastructure +478781,Infrastructure,Infrastructure +484379,Infrastructure,Infrastructure +484322,Infrastructure,Infrastructure +481066,Infrastructure,Infrastructure +528848,Budget,Budget +525365,Budget,Budget +510461,Budget,Budget +489776,Budget,Budget +513480,Health,Health +525370,Health,Health +517508,Health,Health +486360,Privacy and Access to Information,Privacy and Access to Information +478782,Privacy and Access to Information,Privacy and Access to Information +541673,Privacy and Access to Information,Privacy and Access to Information +534600,Privacy and Access to Information,Privacy and Access to Information +534594,Privacy and Access to Information,Privacy and Access to Information +514502,Privacy and Access to Information,Privacy and Access to Information +510461,Privacy and Access to Information,Privacy and Access to Information +501153,Privacy and Access to Information,Privacy and Access to Information +493737,Privacy and Access to Information,Privacy and Access to Information +489777,Privacy and Access to Information,Privacy and Access to Information +489772,Privacy and Access to Information,Privacy and Access to Information +489769,Privacy and Access to Information,Privacy and Access to Information +489764,Privacy and Access to Information,Privacy and Access to Information +489763,Privacy and Access to Information,Privacy and Access to Information +489761,Privacy and Access to Information,Privacy and Access to Information +486446,Privacy and Access to Information,Privacy and Access to Information +486366,Privacy and Access to Information,Privacy and Access to Information +486362,Security,Security +486352,Security,Security +539992,Security,Security +537643,Security,Security +537639,Security,Security +537636,Security,Security +537635,Security,Security +534603,Security,Security +534594,Security,Security +534588,Security,Security +534584,Security,Security +534565,Security,Security +534555,Security,Security +534542,Security,Security +528878,Security,Security +528871,Security,Security +528855,Security,Security +525369,Security,Security +523382,Security,Security +523381,Security,Security +523379,Security,Security +517527,Security,Security +515252,Security,Security +510475,Security,Security +510461,Security,Security +510458,Security,Security +507565,Security,Security +501157,Security,Security +501149,Security,Security +497901,Security,Security +495544,Security,Security +493747,Security,Security +493743,Security,Security +493742,Security,Security +493737,Security,Security +493734,Security,Security +489766,Security,Security +489753,Security,Security +489747,Security,Security +486447,Security,Security +486367,Security,Security +481082,Economic Development,Economic Development +481081,Economic Development,Economic Development +494849,Economic Development,Economic Development +494067,Small Business,Small Business +478844,Energy,Energy +478843,Energy,Energy +482667,Energy,Energy +479984,Energy,Energy +478948,Energy,Energy +478947,Energy,Energy +478946,Energy,Energy +478945,Energy,Energy +478944,Energy,Energy +478943,Energy,Energy +478942,Energy,Energy +478940,Energy,Energy +478939,Energy,Energy +478937,Energy,Energy +478936,Energy,Energy +478933,Energy,Energy +478932,Energy,Energy +478929,Energy,Energy +478927,Energy,Energy +478926,Energy,Energy +478925,Energy,Energy +478924,Energy,Energy +478923,Energy,Energy +478922,Energy,Energy +478921,Energy,Energy +478904,Energy,Energy +478902,Energy,Energy +478901,Energy,Energy +478900,Energy,Energy +478899,Energy,Energy +478898,Energy,Energy +478897,Energy,Energy +478895,Energy,Energy +478894,Energy,Energy +478893,Energy,Energy +478892,Energy,Energy +478891,Energy,Energy +478890,Energy,Energy +478889,Energy,Energy +478888,Energy,Energy +478887,Energy,Energy +478886,Energy,Energy +478885,Energy,Energy +478884,Energy,Energy +478883,Energy,Energy +478882,Energy,Energy +478879,Energy,Energy +478878,Energy,Energy +478877,Energy,Energy +478876,Energy,Energy +478875,Energy,Energy +478874,Energy,Energy +478873,Energy,Energy +478872,Energy,Energy +478871,Energy,Energy +478870,Energy,Energy +478869,Energy,Energy +478867,Energy,Energy +478865,Energy,Energy +478864,Energy,Energy +478863,Energy,Energy +478862,Energy,Energy +478861,Energy,Energy +478860,Energy,Energy +478859,Energy,Energy +478858,Energy,Energy +478857,Energy,Energy +478856,Energy,Energy +478855,Energy,Energy +478854,Energy,Energy +478853,Energy,Energy +478852,Energy,Energy +478851,Energy,Energy +478849,Energy,Energy +478848,Energy,Energy +478847,Energy,Energy +478846,Energy,Energy +500112,Education,Education +492734,Education,Education +509663,Education,Education +506311,Education,Education +503152,Education,Education +483711,Agriculture,Agriculture +506465,Agriculture,Agriculture +503229,Agriculture,Agriculture +540521,Health,Health +536373,Health,Health +484236,Environment,Environment +483711,Environment,Environment +506465,Environment,Environment +484236,Health,Health +484660,Economic Development,Economic Development +481989,Economic Development,Economic Development +532260,Economic Development,Economic Development +529651,Economic Development,Economic Development +513098,Economic Development,Economic Development +511461,Economic Development,Economic Development +510888,Economic Development,Economic Development +502645,Economic Development,Economic Development +499518,Economic Development,Economic Development +499514,Economic Development,Economic Development +496091,Economic Development,Economic Development +496078,Economic Development,Economic Development +493320,Economic Development,Economic Development +529670,Economic Development,Economic Development +523574,Economic Development,Economic Development +518349,Economic Development,Economic Development +518348,Economic Development,Economic Development +515949,Economic Development,Economic Development +514829,Economic Development,Economic Development +514828,Economic Development,Economic Development +514285,Economic Development,Economic Development +513218,Economic Development,Economic Development +511541,Economic Development,Economic Development +511540,Economic Development,Economic Development +511539,Economic Development,Economic Development +509087,Economic Development,Economic Development +505882,Economic Development,Economic Development +505880,Economic Development,Economic Development +505874,Economic Development,Economic Development +505873,Economic Development,Economic Development +505872,Economic Development,Economic Development +505871,Economic Development,Economic Development +505870,Economic Development,Economic Development +505868,Economic Development,Economic Development +505865,Economic Development,Economic Development +498737,Economic Development,Economic Development +498735,Economic Development,Economic Development +495798,Economic Development,Economic Development +495797,Economic Development,Economic Development +495796,Economic Development,Economic Development +495794,Economic Development,Economic Development +495793,Economic Development,Economic Development +495792,Economic Development,Economic Development +493767,Economic Development,Economic Development +493762,Economic Development,Economic Development +490820,Economic Development,Economic Development +490819,Economic Development,Economic Development +490818,Economic Development,Economic Development +490817,Economic Development,Economic Development +485195,Economic Development,Economic Development +485184,Economic Development,Economic Development +485181,Economic Development,Economic Development +485179,Economic Development,Economic Development +485176,Economic Development,Economic Development +481990,Economic Development,Economic Development +481988,Economic Development,Economic Development +481987,Economic Development,Economic Development +481986,Economic Development,Economic Development +478935,Economic Development,Economic Development +542584,Economic Development,Economic Development +538563,Economic Development,Economic Development +532560,Economic Development,Economic Development +529678,Economic Development,Economic Development +529677,Economic Development,Economic Development +529676,Economic Development,Economic Development +529674,Economic Development,Economic Development +510892,Economic Development,Economic Development +482002,Economic Development,Economic Development +508172,Transportation,Transportation +508166,Transportation,Transportation +484672,Transportation,Transportation +481996,Transportation,Transportation +513097,Transportation,Transportation +481873,Official Languages,Official Languages +480915,Consumer Issues,Consumer Issues +480913,Consumer Issues,Consumer Issues +483556,Consumer Issues,Consumer Issues +483548,Consumer Issues,Consumer Issues +483547,Consumer Issues,Consumer Issues +481395,Consumer Issues,Consumer Issues +481363,Consumer Issues,Consumer Issues +481362,Consumer Issues,Consumer Issues +481361,Consumer Issues,Consumer Issues +480915,Economic Development,Economic Development +480913,Economic Development,Economic Development +483556,Economic Development,Economic Development +483548,Economic Development,Economic Development +483547,Economic Development,Economic Development +481395,Economic Development,Economic Development +481363,Economic Development,Economic Development +481362,Economic Development,Economic Development +481361,Economic Development,Economic Development +480915,Small Business,Small Business +480913,Small Business,Small Business +483556,Small Business,Small Business +483548,Small Business,Small Business +483547,Small Business,Small Business +481395,Small Business,Small Business +481363,Small Business,Small Business +481362,Small Business,Small Business +481361,Small Business,Small Business +482757,Small Business,Small Business +482757,Sports,Sports +479720,Sports,Sports +488713,Health,Health +479009,Health,Health +496344,Health,Health +484591,Economic Development,Economic Development +481479,Economic Development,Economic Development +481795,Employment and Training,Employment and Training +488663,Employment and Training,Employment and Training +483090,Employment and Training,Employment and Training +483088,Employment and Training,Employment and Training +483087,Employment and Training,Employment and Training +483086,Employment and Training,Employment and Training +483085,Employment and Training,Employment and Training +483084,Employment and Training,Employment and Training +483083,Employment and Training,Employment and Training +483082,Employment and Training,Employment and Training +481793,Health,Health +480443,Health,Health +488664,Health,Health +488663,Health,Health +483081,Health,Health +483080,Health,Health +483079,Health,Health +481821,Health,Health +481815,Health,Health +481814,Health,Health +481811,Health,Health +481810,Health,Health +481808,Health,Health +479564,Education,Education +479563,Education,Education +480614,Education,Education +479601,Education,Education +485467,Employment and Training,Employment and Training +485466,Employment and Training,Employment and Training +485465,Employment and Training,Employment and Training +482838,Employment and Training,Employment and Training +482837,Employment and Training,Employment and Training +481055,Employment and Training,Employment and Training +479628,Employment and Training,Employment and Training +479626,Employment and Training,Employment and Training +479625,Employment and Training,Employment and Training +479621,Employment and Training,Employment and Training +479615,Employment and Training,Employment and Training +479611,Employment and Training,Employment and Training +479610,Employment and Training,Employment and Training +479608,Employment and Training,Employment and Training +479599,Employment and Training,Employment and Training +479595,Employment and Training,Employment and Training +479594,Employment and Training,Employment and Training +479593,Employment and Training,Employment and Training +479590,Employment and Training,Employment and Training +479587,Employment and Training,Employment and Training +479586,Employment and Training,Employment and Training +479585,Employment and Training,Employment and Training +479583,Employment and Training,Employment and Training +479582,Employment and Training,Employment and Training +479580,Employment and Training,Employment and Training +479576,Employment and Training,Employment and Training +479575,Employment and Training,Employment and Training +479572,Employment and Training,Employment and Training +479571,Employment and Training,Employment and Training +479569,Employment and Training,Employment and Training +479568,Employment and Training,Employment and Training +479567,Employment and Training,Employment and Training +479559,Employment and Training,Employment and Training +479558,Employment and Training,Employment and Training +479556,Employment and Training,Employment and Training +479555,Employment and Training,Employment and Training +479553,Employment and Training,Employment and Training +479551,Employment and Training,Employment and Training +479550,Employment and Training,Employment and Training +479549,Employment and Training,Employment and Training +479547,Employment and Training,Employment and Training +479546,Employment and Training,Employment and Training +479544,Employment and Training,Employment and Training +479542,Employment and Training,Employment and Training +479541,Employment and Training,Employment and Training +479536,Employment and Training,Employment and Training +479535,Employment and Training,Employment and Training +479534,Employment and Training,Employment and Training +479561,International Development,International Development +485547,International Trade,International Trade +485546,International Trade,International Trade +479225,Small Business,Small Business +479217,Small Business,Small Business +480736,Small Business,Small Business +480632,Small Business,Small Business +480629,Small Business,Small Business +480610,Small Business,Small Business +480607,Small Business,Small Business +480605,Small Business,Small Business +480601,Small Business,Small Business +479225,Economic Development,Economic Development +479217,Economic Development,Economic Development +480736,Economic Development,Economic Development +480632,Economic Development,Economic Development +480629,Economic Development,Economic Development +480610,Economic Development,Economic Development +480607,Economic Development,Economic Development +480605,Economic Development,Economic Development +480601,Economic Development,Economic Development +479226,Consumer Issues,Consumer Issues +479225,Consumer Issues,Consumer Issues +479217,Consumer Issues,Consumer Issues +480736,Consumer Issues,Consumer Issues +480632,Consumer Issues,Consumer Issues +480629,Consumer Issues,Consumer Issues +480610,Consumer Issues,Consumer Issues +480607,Consumer Issues,Consumer Issues +480605,Consumer Issues,Consumer Issues +511966,Energy,Energy +511966,Environment,Environment +482875,Health,Health +482708,Health,Health +487372,Health,Health +485624,Health,Health +483481,Health,Health +493338,Industry,Industry +492474,Industry,Industry +480886,Environment,Environment +480786,Environment,Environment +506605,Environment,Environment +485412,Environment,Environment +481429,Environment,Environment +481419,Environment,Environment +506605,Mining,Mining +500928,Mining,Mining +500165,Mining,Mining +493338,Mining,Mining +492474,Mining,Mining +485412,Mining,Mining +481429,Mining,Mining +481419,Mining,Mining +481182,Mining,Mining +480886,Mining,Mining +480786,Mining,Mining +481182,Regional Development,Regional Development +480886,Regional Development,Regional Development +506605,Regional Development,Regional Development +500165,Regional Development,Regional Development +493338,Regional Development,Regional Development +492474,Regional Development,Regional Development +480786,Economic Development,Economic Development +480725,Economic Development,Economic Development +485412,Economic Development,Economic Development +482766,Economic Development,Economic Development +523787,Energy,Energy +523417,Energy,Energy +482766,International Relations,International Relations +482687,International Trade,International Trade +482683,International Trade,International Trade +483137,International Trade,International Trade +484672,Government Procurement,Government Procurement +481996,Government Procurement,Government Procurement +513097,Government Procurement,Government Procurement +513096,Government Procurement,Government Procurement +513095,Government Procurement,Government Procurement +511465,Government Procurement,Government Procurement +510892,Government Procurement,Government Procurement +508172,Government Procurement,Government Procurement +508166,Government Procurement,Government Procurement +483663,Environment,Environment +482512,Economic Development,Economic Development +481564,Economic Development,Economic Development +483664,Economic Development,Economic Development +483663,Infrastructure,Infrastructure +479537,Health,Health +479528,Health,Health +481054,Health,Health +479552,Health,Health +511533,Defence,Defence +505280,Defence,Defence +538714,Defence,Defence +478908,Justice and Law Enforcement,Justice and Law Enforcement +478845,Energy,Energy +501706,Education,Education +484236,Agriculture,Agriculture +540522,Health,Health +478880,Health,Health +503229,Environment,Environment +503229,Health,Health +493319,Economic Development,Economic Development +513098,Research and Development,Research and Development +529672,Economic Development,Economic Development +513097,Economic Development,Economic Development +513095,Research and Development,Research and Development +513095,Transportation,Transportation +481877,Official Languages,Official Languages +481360,Consumer Issues,Consumer Issues +481360,Economic Development,Economic Development +481360,Small Business,Small Business +483163,Budget,Budget +483163,Small Business,Small Business +483163,Sports,Sports +479720,Tourism,Tourism +489672,Health,Health +484596,Economic Development,Economic Development +479026,Industry,Industry +481806,Employment and Training,Employment and Training +481807,Health,Health +524557,Defence,Defence +480221,Climate,Climate +480221,Energy,Energy +480221,Research and Development,Research and Development +479091,Health,Health +479091,Immigration,Immigration +479565,Education,Education +479531,Employment and Training,Employment and Training +480615,International Development,International Development +485550,International Trade,International Trade +479226,Small Business,Small Business +479226,Economic Development,Economic Development +480601,Consumer Issues,Consumer Issues +479701,Health,Health +479701,Immigration,Immigration +542323,Energy,Energy +542323,Environment,Environment +542323,Industry,Industry +511966,International Relations,International Relations +511966,International Trade,International Trade +479700,Health,Health +479700,Immigration,Immigration +479698,Internal Trade,Internal Trade +479330,Industry,Industry +479330,Government Procurement,Government Procurement +479330,Regional Development,Regional Development +479330,Health,Health +479330,Intellectual Property,Intellectual Property +479330,Employment and Training,Employment and Training +479330,Small Business,Small Business +480816,Tourism,Tourism +480816,Economic Development,Economic Development +480816,Infrastructure,Infrastructure +483319,Health,Health +500928,Industry,Industry +481182,Environment,Environment +480725,Mining,Mining +481419,Regional Development,Regional Development +481429,Economic Development,Economic Development +523417,Economic Development,Economic Development +544402,Energy,Energy +523787,Environment,Environment +483137,International Relations,International Relations +482766,International Trade,International Trade +481327,Economic Development,Economic Development +481327,Government Procurement,Government Procurement +481327,Small Business,Small Business +481327,Industry,Industry +491866,Health,Health +496025,Government Procurement,Government Procurement +481563,Industry,Industry +483664,Environment,Environment +483663,Economic Development,Economic Development +483664,Infrastructure,Infrastructure +479526,Climate,Climate +479539,Health,Health +479350,Justice and Law Enforcement,Justice and Law Enforcement +479353,Government Procurement,Government Procurement +479354,Government Procurement,Government Procurement +538713,Defence,Defence +482430,Economic Development,Economic Development +505281,Government Procurement,Government Procurement +511533,Industry,Industry +514958,Defence,Defence +527336,Security,Security +513586,Government Procurement,Government Procurement +479566,Justice and Law Enforcement,Justice and Law Enforcement +484200,Internal Trade,Internal Trade +484200,Justice and Law Enforcement,Justice and Law Enforcement +482357,Internal Trade,Internal Trade +482357,Justice and Law Enforcement,Justice and Law Enforcement +479443,Housing,Housing +479483,Health,Health +484468,Health,Health +500341,Government Procurement,Government Procurement +500341,Defence,Defence +505848,Budget,Budget +526644,Climate,Climate +499620,Energy,Energy +482353,Environment,Environment +505852,Infrastructure,Infrastructure +482348,Energy,Energy +543276,Economic Development,Economic Development +535507,Defence,Defence +535507,Industry,Industry +535507,Government Procurement,Government Procurement +481710,Economic Development,Economic Development +481710,Research and Development,Research and Development +481710,Transportation,Transportation +534481,Economic Development,Economic Development +534480,Health,Health +534481,Industry,Industry +479690,Budget,Budget +517085,Economic Development,Economic Development +517085,Health,Health +481289,International Trade,International Trade +506267,Energy,Energy +482342,Immigration,Immigration +487874,Justice and Law Enforcement,Justice and Law Enforcement +491366,Employment and Training,Employment and Training +490963,Environment,Environment +482235,Environment,Environment +479806,Justice and Law Enforcement,Justice and Law Enforcement +489733,Transportation,Transportation +489733,Industry,Industry +483228,Sports,Sports +482233,Tourism,Tourism +522358,Agriculture,Agriculture +482209,Education,Education +496653,Education,Education +479911,International Trade,International Trade +482437,Economic Development,Economic Development +482437,Industry,Industry +482437,Health,Health +482437,Government Procurement,Government Procurement +482437,Research and Development,Research and Development +479986,Health,Health +479992,Health,Health +479994,Health,Health +479993,Health,Health +484666,Energy,Energy +484666,Infrastructure,Infrastructure +484655,Regional Development,Regional Development +480986,Economic Development,Economic Development +480986,Regional Development,Regional Development +480986,Transportation,Transportation +484647,Budget,Budget +487504,Climate,Climate +484656,Energy,Energy +499604,Environment,Environment +487504,Infrastructure,Infrastructure +499613,Energy,Energy +499613,Infrastructure,Infrastructure +492228,Economic Development,Economic Development +488307,Employment and Training,Employment and Training +488307,Regional Development,Regional Development +492228,Transportation,Transportation +490375,Budget,Budget +490377,Employment and Training,Employment and Training +480091,Consumer Issues,Consumer Issues +482135,Agriculture,Agriculture +481985,Economic Development,Economic Development +481985,International Development,International Development +480215,Security,Security +480218,Forestry,Forestry +482833,Economic Development,Economic Development +482833,Energy,Energy +482833,International Relations,International Relations +482833,International Trade,International Trade +539795,Climate,Climate +539795,Economic Development,Economic Development +539795,Transportation,Transportation +497564,Economic Development,Economic Development +497559,Environment,Environment +513367,Industry,Industry +513367,Research and Development,Research and Development +508672,Transportation,Transportation +488779,Justice and Law Enforcement,Justice and Law Enforcement +512346,Education,Education +510210,Elections,Elections +485270,Health,Health +517539,International Development,International Development +503895,International Relations,International Relations +491530,Justice and Law Enforcement,Justice and Law Enforcement +480410,Immigration,Immigration +480866,Education,Education +534257,Environment,Environment +534252,Infrastructure,Infrastructure +534254,International Trade,International Trade +534254,Transportation,Transportation +488612,Justice and Law Enforcement,Justice and Law Enforcement +494049,Energy,Energy +497349,Environment,Environment +494049,Agriculture,Agriculture +480533,International Trade,International Trade +494781,Defence,Defence +483923,Government Procurement,Government Procurement +487654,Infrastructure,Infrastructure +485178,Budget,Budget +489099,Economic Development,Economic Development +485191,International Development,International Development +482933,Budget,Budget +494281,Economic Development,Economic Development +506225,Employment and Training,Employment and Training +492526,Labour,Labour +482845,Budget,Budget +529162,Agriculture,Agriculture +509630,Environment,Environment +515959,Economic Development,Economic Development +488697,Government Procurement,Government Procurement +480567,Agriculture,Agriculture +480567,Climate,Climate +480568,Climate,Climate +480569,Climate,Climate +480576,Budget,Budget +484038,Economic Development,Economic Development +482122,Economic Development,Economic Development +481295,Economic Development,Economic Development +480682,Education,Education +480682,Employment and Training,Employment and Training +488328,International Development,International Development +488332,Labour,Labour +481320,Research and Development,Research and Development +491859,Regional Development,Regional Development +487330,Economic Development,Economic Development +496646,Environment,Environment +487330,Industry,Industry +529427,Agriculture,Agriculture +511636,Health,Health +486066,Research and Development,Research and Development +521185,Budget,Budget +509211,Consumer Issues,Consumer Issues +520891,Government Procurement,Government Procurement +487107,Economic Development,Economic Development +487107,Education,Education +487107,Regional Development,Regional Development +487107,Small Business,Small Business +487107,Tourism,Tourism +482005,Economic Development,Economic Development +482005,Industry,Industry +482005,Intellectual Property,Intellectual Property +482005,Labour,Labour +484282,Health,Health +511850,Research and Development,Research and Development +511850,Industry,Industry +511850,Government Procurement,Government Procurement +541169,Government Procurement,Government Procurement +538911,Small Business,Small Business +482654,Economic Development,Economic Development +498057,Health,Health +482654,Research and Development,Research and Development +482430,Government Procurement,Government Procurement +538714,Government Procurement,Government Procurement +525983,Government Procurement,Government Procurement +508921,Government Procurement,Government Procurement +513596,Security,Security +493700,Security,Security +487323,Security,Security +493700,Government Procurement,Government Procurement +487323,Government Procurement,Government Procurement +514958,Government Procurement,Government Procurement +479422,Internal Trade,Internal Trade +479422,Justice and Law Enforcement,Justice and Law Enforcement +482341,Internal Trade,Internal Trade +479429,Internal Trade,Internal Trade +482376,Internal Trade,Internal Trade +482369,Internal Trade,Internal Trade +482364,Internal Trade,Internal Trade +482363,Internal Trade,Internal Trade +482358,Internal Trade,Internal Trade +482341,Justice and Law Enforcement,Justice and Law Enforcement +479429,Justice and Law Enforcement,Justice and Law Enforcement +482376,Justice and Law Enforcement,Justice and Law Enforcement +482369,Justice and Law Enforcement,Justice and Law Enforcement +482364,Justice and Law Enforcement,Justice and Law Enforcement +482363,Justice and Law Enforcement,Justice and Law Enforcement +482358,Justice and Law Enforcement,Justice and Law Enforcement +482058,Health,Health +479491,Health,Health +486695,Health,Health +484471,Health,Health +499617,Budget,Budget +482353,Budget,Budget +526644,Budget,Budget +526639,Budget,Budget +526629,Budget,Budget +526639,Climate,Climate +499617,Energy,Energy +482353,Energy,Energy +526644,Energy,Energy +526639,Energy,Energy +526629,Energy,Energy +508971,Energy,Energy +505852,Energy,Energy +505848,Energy,Energy +499620,Infrastructure,Infrastructure +499617,Infrastructure,Infrastructure +482353,Infrastructure,Infrastructure +526644,Infrastructure,Infrastructure +526639,Infrastructure,Infrastructure +526629,Infrastructure,Infrastructure +508971,Infrastructure,Infrastructure +535507,Economic Development,Economic Development +511530,Defence,Defence +502700,Defence,Defence +543276,Defence,Defence +537351,Defence,Defence +511530,Industry,Industry +543276,Industry,Industry +537351,Industry,Industry +511530,Government Procurement,Government Procurement +502700,Government Procurement,Government Procurement +543276,Government Procurement,Government Procurement +537351,Government Procurement,Government Procurement +534480,Economic Development,Economic Development +525477,Economic Development,Economic Development +532157,Health,Health +509085,Health,Health +534481,Health,Health +534480,Industry,Industry +480824,Economic Development,Economic Development +481907,Health,Health +480824,Health,Health +479714,International Trade,International Trade +483194,International Trade,International Trade +481294,International Trade,International Trade +481293,International Trade,International Trade +481291,International Trade,International Trade +481290,International Trade,International Trade +504599,Energy,Energy +485451,Energy,Energy +506378,Energy,Energy +482339,Immigration,Immigration +487874,Immigration,Immigration +484669,Immigration,Immigration +484667,Immigration,Immigration +484665,Immigration,Immigration +484664,Immigration,Immigration +484663,Immigration,Immigration +484662,Immigration,Immigration +484661,Immigration,Immigration +484659,Immigration,Immigration +484657,Immigration,Immigration +482347,Immigration,Immigration +482345,Immigration,Immigration +484669,Justice and Law Enforcement,Justice and Law Enforcement +484667,Justice and Law Enforcement,Justice and Law Enforcement +484665,Justice and Law Enforcement,Justice and Law Enforcement +484664,Justice and Law Enforcement,Justice and Law Enforcement +484663,Justice and Law Enforcement,Justice and Law Enforcement +484662,Justice and Law Enforcement,Justice and Law Enforcement +484661,Justice and Law Enforcement,Justice and Law Enforcement +484659,Justice and Law Enforcement,Justice and Law Enforcement +484657,Justice and Law Enforcement,Justice and Law Enforcement +482347,Justice and Law Enforcement,Justice and Law Enforcement +482345,Justice and Law Enforcement,Justice and Law Enforcement +482342,Justice and Law Enforcement,Justice and Law Enforcement +488091,Employment and Training,Employment and Training +484147,Employment and Training,Employment and Training +496237,Employment and Training,Employment and Training +496234,Employment and Training,Employment and Training +496232,Employment and Training,Employment and Training +496221,Employment and Training,Employment and Training +493146,Employment and Training,Employment and Training +493144,Employment and Training,Employment and Training +493134,Employment and Training,Employment and Training +491385,Employment and Training,Employment and Training +488638,Environment,Environment +488400,Environment,Environment +511794,Environment,Environment +511675,Environment,Environment +501081,Environment,Environment +483227,Sports,Sports +482233,Sports,Sports +522106,Agriculture,Agriculture +522105,Agriculture,Agriculture +524750,Agriculture,Agriculture +524749,Agriculture,Agriculture +524748,Agriculture,Agriculture +522370,Agriculture,Agriculture +479881,Education,Education +544497,Education,Education +496650,Education,Education +496647,Education,Education +482217,Education,Education +482203,Education,Education +479900,Education,Education +500853,Education,Education +500846,Education,Education +484655,Energy,Energy +484649,Energy,Energy +511328,Energy,Energy +484670,Energy,Energy +484655,Infrastructure,Infrastructure +484649,Infrastructure,Infrastructure +511328,Infrastructure,Infrastructure +484670,Infrastructure,Infrastructure +484656,Climate,Climate +484647,Climate,Climate +499604,Climate,Climate +484653,Energy,Energy +484647,Energy,Energy +491503,Energy,Energy +491503,Environment,Environment +487504,Environment,Environment +484656,Infrastructure,Infrastructure +484653,Infrastructure,Infrastructure +491503,Infrastructure,Infrastructure +491541,Energy,Energy +491536,Energy,Energy +511334,Energy,Energy +511333,Energy,Energy +508970,Energy,Energy +508969,Energy,Energy +505844,Energy,Energy +499614,Energy,Energy +491541,Infrastructure,Infrastructure +491536,Infrastructure,Infrastructure +511334,Infrastructure,Infrastructure +511333,Infrastructure,Infrastructure +508970,Infrastructure,Infrastructure +508969,Infrastructure,Infrastructure +505844,Infrastructure,Infrastructure +499614,Infrastructure,Infrastructure +488307,Economic Development,Economic Development +483150,Transportation,Transportation +480839,Transportation,Transportation +487274,Budget,Budget +484561,Budget,Budget +490377,Budget,Budget +490375,Employment and Training,Employment and Training +487274,Employment and Training,Employment and Training +484561,Employment and Training,Employment and Training +480142,Agriculture,Agriculture +481983,Economic Development,Economic Development +480961,Economic Development,Economic Development +480960,Economic Development,Economic Development +488318,Economic Development,Economic Development +488316,Economic Development,Economic Development +480961,Energy,Energy +480960,Energy,Energy +488318,Energy,Energy +488316,Energy,Energy +480961,International Relations,International Relations +480960,International Relations,International Relations +480961,International Trade,International Trade +480960,International Trade,International Trade +488318,International Trade,International Trade +488316,International Trade,International Trade +544288,Climate,Climate +527815,Economic Development,Economic Development +522669,Economic Development,Economic Development +544288,Economic Development,Economic Development +492100,Economic Development,Economic Development +481136,Economic Development,Economic Development +513367,Economic Development,Economic Development +508658,Economic Development,Economic Development +508641,Economic Development,Economic Development +497572,Economic Development,Economic Development +497567,Economic Development,Economic Development +497558,Environment,Environment +481136,Environment,Environment +513367,Environment,Environment +513366,Environment,Environment +508672,Environment,Environment +508658,Environment,Environment +508641,Environment,Environment +497572,Environment,Environment +497569,Environment,Environment +497567,Environment,Environment +497564,Environment,Environment +513366,Industry,Industry +481136,Industry,Industry +481136,Research and Development,Research and Development +508658,Transportation,Transportation +508641,Transportation,Transportation +497572,Transportation,Transportation +497569,Transportation,Transportation +497567,Transportation,Transportation +497564,Transportation,Transportation +497558,Transportation,Transportation +481136,Transportation,Transportation +513367,Transportation,Transportation +513366,Transportation,Transportation +488777,Justice and Law Enforcement,Justice and Law Enforcement +491583,Education,Education +482346,Education,Education +509439,Elections,Elections +509438,Elections,Elections +482327,Elections,Elections +511917,Elections,Elections +511094,Elections,Elections +485241,Health,Health +482346,Health,Health +512346,Health,Health +506632,Health,Health +505181,Health,Health +504424,Health,Health +503900,Health,Health +503899,Health,Health +503898,Health,Health +503897,Health,Health +503896,Health,Health +503895,Health,Health +503894,Health,Health +503889,Health,Health +503888,Health,Health +503887,Health,Health +503886,Health,Health +503885,Health,Health +503881,Health,Health +502107,Health,Health +492971,Health,Health +491572,Health,Health +491565,Health,Health +491534,Health,Health +491521,Health,Health +485284,Health,Health +485281,Health,Health +517536,International Development,International Development +517530,International Development,International Development +515533,International Development,International Development +514061,International Development,International Development +513067,International Development,International Development +513065,International Development,International Development +513064,International Development,International Development +513063,International Development,International Development +513062,International Development,International Development +512506,International Development,International Development +512346,International Development,International Development +512157,International Development,International Development +511917,International Development,International Development +511094,International Development,International Development +510754,International Development,International Development +510749,International Development,International Development +510210,International Development,International Development +509439,International Development,International Development +509438,International Development,International Development +509401,International Development,International Development +508020,International Development,International Development +508012,International Development,International Development +508004,International Development,International Development +507219,International Development,International Development +505195,International Development,International Development +505187,International Development,International Development +505184,International Development,International Development +505181,International Development,International Development +503900,International Development,International Development +503899,International Development,International Development +503898,International Development,International Development +503897,International Development,International Development +503896,International Development,International Development +503895,International Development,International Development +503894,International Development,International Development +503889,International Development,International Development +503888,International Development,International Development +503887,International Development,International Development +503886,International Development,International Development +503885,International Development,International Development +503881,International Development,International Development +502107,International Development,International Development +502106,International Development,International Development +502105,International Development,International Development +502102,International Development,International Development +492971,International Development,International Development +491583,International Development,International Development +491577,International Development,International Development +485263,International Development,International Development +485241,International Development,International Development +485239,International Development,International Development +485238,International Development,International Development +485237,International Development,International Development +482351,International Development,International Development +482349,International Development,International Development +543505,International Development,International Development +538073,International Development,International Development +538070,International Development,International Development +538068,International Development,International Development +538067,International Development,International Development +538066,International Development,International Development +538064,International Development,International Development +531629,International Development,International Development +531628,International Development,International Development +531627,International Development,International Development +531623,International Development,International Development +531622,International Development,International Development +528742,International Development,International Development +528741,International Development,International Development +528740,International Development,International Development +528739,International Development,International Development +528737,International Development,International Development +526688,International Development,International Development +524969,International Development,International Development +524965,International Development,International Development +524955,International Development,International Development +524953,International Development,International Development +524952,International Development,International Development +524950,International Development,International Development +522530,International Development,International Development +522528,International Development,International Development +522527,International Development,International Development +522521,International Development,International Development +522519,International Development,International Development +522516,International Development,International Development +522505,International Development,International Development +519794,International Development,International Development +517545,International Development,International Development +517542,International Development,International Development +503885,International Relations,International Relations +503881,International Relations,International Relations +491516,Justice and Law Enforcement,Justice and Law Enforcement +482323,Justice and Law Enforcement,Justice and Law Enforcement +500913,Justice and Law Enforcement,Justice and Law Enforcement +497652,Justice and Law Enforcement,Justice and Law Enforcement +497650,Justice and Law Enforcement,Justice and Law Enforcement +491569,Justice and Law Enforcement,Justice and Law Enforcement +480409,Immigration,Immigration +538997,Immigration,Immigration +534256,Environment,Environment +534254,Environment,Environment +534258,Environment,Environment +534258,Infrastructure,Infrastructure +534257,Infrastructure,Infrastructure +534256,Infrastructure,Infrastructure +534254,Infrastructure,Infrastructure +534253,Infrastructure,Infrastructure +534253,International Trade,International Trade +534252,International Trade,International Trade +534258,International Trade,International Trade +534257,International Trade,International Trade +534256,International Trade,International Trade +534253,Transportation,Transportation +534252,Transportation,Transportation +534258,Transportation,Transportation +534257,Transportation,Transportation +534256,Transportation,Transportation +494049,Environment,Environment +488338,Environment,Environment +507179,Environment,Environment +503271,Environment,Environment +488338,Agriculture,Agriculture +480533,Agriculture,Agriculture +507179,Agriculture,Agriculture +503271,Agriculture,Agriculture +497349,Agriculture,Agriculture +494049,International Trade,International Trade +488338,International Trade,International Trade +483923,Defence,Defence +483922,Defence,Defence +483922,Government Procurement,Government Procurement +483921,Government Procurement,Government Procurement +494782,Government Procurement,Government Procurement +494781,Government Procurement,Government Procurement +492909,Government Procurement,Government Procurement +488339,Government Procurement,Government Procurement +483924,Government Procurement,Government Procurement +487653,Infrastructure,Infrastructure +487652,Infrastructure,Infrastructure +482508,Budget,Budget +482503,Budget,Budget +502762,Budget,Budget +502760,Budget,Budget +502757,Budget,Budget +499672,Budget,Budget +499660,Budget,Budget +496101,Budget,Budget +489099,Budget,Budget +488534,Budget,Budget +485193,Budget,Budget +485188,Budget,Budget +485185,Budget,Budget +482926,Budget,Budget +482924,Budget,Budget +511018,Budget,Budget +506225,Budget,Budget +503154,Budget,Budget +498484,Budget,Budget +496144,Budget,Budget +495084,Budget,Budget +494794,Budget,Budget +494633,Budget,Budget +494281,Budget,Budget +494239,Budget,Budget +492526,Budget,Budget +487313,Budget,Budget +483244,Budget,Budget +483243,Budget,Budget +483234,Budget,Budget +483218,Budget,Budget +483201,Budget,Budget +483191,Budget,Budget +483178,Budget,Budget +483176,Budget,Budget +483143,Budget,Budget +483139,Budget,Budget +483119,Budget,Budget +483112,Budget,Budget +483109,Budget,Budget +483096,Budget,Budget +483064,Budget,Budget +483055,Budget,Budget +483054,Budget,Budget +483053,Budget,Budget +483024,Budget,Budget +483023,Budget,Budget +483009,Budget,Budget +483000,Budget,Budget +482943,Budget,Budget +482935,Budget,Budget +482934,Budget,Budget +494239,Economic Development,Economic Development +492526,Economic Development,Economic Development +487313,Economic Development,Economic Development +511018,Economic Development,Economic Development +503154,Economic Development,Economic Development +498484,Economic Development,Economic Development +496144,Economic Development,Economic Development +495084,Economic Development,Economic Development +494794,Economic Development,Economic Development +494633,Economic Development,Economic Development +503154,Employment and Training,Employment and Training +498484,Employment and Training,Employment and Training +496144,Employment and Training,Employment and Training +495084,Employment and Training,Employment and Training +494794,Employment and Training,Employment and Training +494633,Employment and Training,Employment and Training +494281,Employment and Training,Employment and Training +494239,Employment and Training,Employment and Training +492526,Employment and Training,Employment and Training +488405,Employment and Training,Employment and Training +487313,Employment and Training,Employment and Training +483244,Employment and Training,Employment and Training +483243,Employment and Training,Employment and Training +483234,Employment and Training,Employment and Training +483218,Employment and Training,Employment and Training +483201,Employment and Training,Employment and Training +483191,Employment and Training,Employment and Training +483178,Employment and Training,Employment and Training +483176,Employment and Training,Employment and Training +483143,Employment and Training,Employment and Training +483139,Employment and Training,Employment and Training +483119,Employment and Training,Employment and Training +483112,Employment and Training,Employment and Training +483109,Employment and Training,Employment and Training +483096,Employment and Training,Employment and Training +483064,Employment and Training,Employment and Training +483055,Employment and Training,Employment and Training +483054,Employment and Training,Employment and Training +483053,Employment and Training,Employment and Training +483024,Employment and Training,Employment and Training +483023,Employment and Training,Employment and Training +483009,Employment and Training,Employment and Training +483000,Employment and Training,Employment and Training +482943,Employment and Training,Employment and Training +482935,Employment and Training,Employment and Training +482934,Employment and Training,Employment and Training +482933,Employment and Training,Employment and Training +482926,Employment and Training,Employment and Training +482924,Employment and Training,Employment and Training +511018,Employment and Training,Employment and Training +488405,Labour,Labour +487313,Labour,Labour +511018,Labour,Labour +506225,Labour,Labour +503154,Labour,Labour +498484,Labour,Labour +496144,Labour,Labour +495084,Labour,Labour +494794,Labour,Labour +494633,Labour,Labour +494281,Labour,Labour +494239,Labour,Labour +482768,Budget,Budget +497280,Agriculture,Agriculture +483230,Agriculture,Agriculture +503109,Economic Development,Economic Development +496575,Economic Development,Economic Development +493962,Economic Development,Economic Development +485992,Economic Development,Economic Development +485504,Economic Development,Economic Development +482688,Economic Development,Economic Development +482402,Economic Development,Economic Development +480892,Economic Development,Economic Development +480545,Economic Development,Economic Development +480544,Economic Development,Economic Development +480542,Economic Development,Economic Development +480541,Economic Development,Economic Development +480540,Economic Development,Economic Development +506352,Budget,Budget +506351,Budget,Budget +506350,Budget,Budget +506349,Budget,Budget +496881,Budget,Budget +488595,Budget,Budget +484037,Economic Development,Economic Development +481370,Economic Development,Economic Development +498374,Economic Development,Economic Development +492002,Economic Development,Economic Development +486506,Economic Development,Economic Development +486505,Economic Development,Economic Development +486504,Economic Development,Economic Development +484042,Economic Development,Economic Development +484041,Economic Development,Economic Development +481292,Economic Development,Economic Development +480684,Economic Development,Economic Development +503037,Economic Development,Economic Development +503036,Economic Development,Economic Development +488332,Economic Development,Economic Development +488330,Economic Development,Economic Development +488329,Economic Development,Economic Development +488328,Economic Development,Economic Development +488326,Economic Development,Economic Development +488322,Economic Development,Economic Development +481324,Economic Development,Economic Development +481320,Economic Development,Economic Development +480681,Education,Education +480677,Education,Education +503038,Education,Education +503037,Education,Education +503036,Education,Education +488330,Education,Education +488329,Education,Education +488327,Education,Education +488324,Education,Education +488323,Education,Education +481310,Education,Education +481309,Education,Education +481307,Education,Education +480681,Employment and Training,Employment and Training +480677,Employment and Training,Employment and Training +503038,Employment and Training,Employment and Training +503037,Employment and Training,Employment and Training +488332,Employment and Training,Employment and Training +488330,Employment and Training,Employment and Training +488329,Employment and Training,Employment and Training +488327,Employment and Training,Employment and Training +488324,Employment and Training,Employment and Training +488323,Employment and Training,Employment and Training +481310,Employment and Training,Employment and Training +481309,Employment and Training,Employment and Training +481307,Employment and Training,Employment and Training +488326,International Development,International Development +488320,International Development,International Development +480684,Research and Development,Research and Development +480678,Research and Development,Research and Development +488331,Research and Development,Research and Development +488330,Research and Development,Research and Development +488329,Research and Development,Research and Development +488328,Research and Development,Research and Development +488326,Research and Development,Research and Development +488322,Research and Development,Research and Development +488320,Research and Development,Research and Development +481324,Research and Development,Research and Development +487350,Regional Development,Regional Development +484844,Regional Development,Regional Development +542077,Regional Development,Regional Development +535977,Regional Development,Regional Development +535976,Regional Development,Regional Development +529437,Regional Development,Regional Development +529436,Regional Development,Regional Development +529428,Regional Development,Regional Development +529427,Regional Development,Regional Development +526248,Regional Development,Regional Development +526247,Regional Development,Regional Development +522701,Regional Development,Regional Development +499751,Regional Development,Regional Development +496646,Regional Development,Regional Development +484844,Economic Development,Economic Development +484791,Economic Development,Economic Development +542077,Economic Development,Economic Development +535977,Economic Development,Economic Development +535976,Economic Development,Economic Development +532521,Economic Development,Economic Development +529437,Economic Development,Economic Development +529436,Economic Development,Economic Development +529428,Economic Development,Economic Development +529427,Economic Development,Economic Development +526248,Economic Development,Economic Development +526247,Economic Development,Economic Development +522701,Economic Development,Economic Development +499751,Economic Development,Economic Development +496646,Economic Development,Economic Development +491859,Economic Development,Economic Development +487350,Economic Development,Economic Development +491859,Environment,Environment +487350,Environment,Environment +487330,Environment,Environment +484844,Environment,Environment +484791,Environment,Environment +542077,Environment,Environment +535977,Environment,Environment +535976,Environment,Environment +532521,Environment,Environment +529437,Environment,Environment +529436,Environment,Environment +529428,Environment,Environment +529427,Environment,Environment +526248,Environment,Environment +526247,Environment,Environment +522701,Environment,Environment +499751,Environment,Environment +484844,Industry,Industry +484791,Industry,Industry +542077,Industry,Industry +535977,Industry,Industry +535976,Industry,Industry +532521,Industry,Industry +529437,Industry,Industry +529436,Industry,Industry +529428,Industry,Industry +529427,Industry,Industry +526248,Industry,Industry +526247,Industry,Industry +522701,Industry,Industry +499751,Industry,Industry +496646,Industry,Industry +491859,Industry,Industry +487350,Industry,Industry +526248,Agriculture,Agriculture +526247,Agriculture,Agriculture +522701,Agriculture,Agriculture +499751,Agriculture,Agriculture +496646,Agriculture,Agriculture +491859,Agriculture,Agriculture +487350,Agriculture,Agriculture +487330,Agriculture,Agriculture +484844,Agriculture,Agriculture +484791,Agriculture,Agriculture +542077,Agriculture,Agriculture +535977,Agriculture,Agriculture +535976,Agriculture,Agriculture +532521,Agriculture,Agriculture +529437,Agriculture,Agriculture +529436,Agriculture,Agriculture +529428,Agriculture,Agriculture +480600,Research and Development,Research and Development +511668,Budget,Budget +500444,Budget,Budget +500444,Consumer Issues,Consumer Issues +485755,Consumer Issues,Consumer Issues +521185,Consumer Issues,Consumer Issues +520891,Consumer Issues,Consumer Issues +520613,Consumer Issues,Consumer Issues +511668,Consumer Issues,Consumer Issues +511668,Government Procurement,Government Procurement +509211,Government Procurement,Government Procurement +484963,Economic Development,Economic Development +484963,Education,Education +484963,Regional Development,Regional Development +484963,Small Business,Small Business +484963,Tourism,Tourism +484279,Health,Health +482215,Health,Health +538911,Government Procurement,Government Procurement +509562,Government Procurement,Government Procurement +482654,Health,Health +487449,Climate,Climate +487443,Climate,Climate +541138,Climate,Climate +541136,Climate,Climate +541135,Climate,Climate +541133,Climate,Climate +541128,Climate,Climate +541126,Climate,Climate +539075,Climate,Climate +539074,Climate,Climate +539072,Climate,Climate +536795,Climate,Climate +534485,Climate,Climate +534484,Climate,Climate +531132,Climate,Climate +531131,Climate,Climate +528329,Climate,Climate +528328,Climate,Climate +528327,Climate,Climate +528326,Climate,Climate +528325,Climate,Climate +528324,Climate,Climate +525641,Climate,Climate +525629,Climate,Climate +525585,Climate,Climate +525583,Climate,Climate +525576,Climate,Climate +525574,Climate,Climate +525571,Climate,Climate +525570,Climate,Climate +525561,Climate,Climate +525559,Climate,Climate +525558,Climate,Climate +525554,Climate,Climate +521599,Climate,Climate +521598,Climate,Climate +521596,Climate,Climate +521593,Climate,Climate +521592,Climate,Climate +521591,Climate,Climate +519172,Climate,Climate +512438,Climate,Climate +512437,Climate,Climate +512436,Climate,Climate +510074,Climate,Climate +510072,Climate,Climate +510068,Climate,Climate +510067,Climate,Climate +507084,Climate,Climate +507083,Climate,Climate +507082,Climate,Climate +507080,Climate,Climate +504061,Climate,Climate +504059,Climate,Climate +504058,Climate,Climate +504057,Climate,Climate +497339,Climate,Climate +494378,Climate,Climate +494377,Climate,Climate +492779,Climate,Climate +492777,Climate,Climate +492776,Climate,Climate +492775,Climate,Climate +492772,Climate,Climate +490033,Climate,Climate +490031,Climate,Climate +490030,Climate,Climate +490026,Climate,Climate +487492,Climate,Climate +487482,Climate,Climate +487480,Climate,Climate +487473,Climate,Climate +487458,Climate,Climate +487456,Climate,Climate +521588,Energy,Energy +507082,Energy,Energy +536795,Energy,Energy +534484,Energy,Energy +528327,Energy,Energy +525561,Energy,Energy +521617,Energy,Energy +521604,Energy,Energy +539074,Environment,Environment +539072,Environment,Environment +536795,Environment,Environment +534485,Environment,Environment +534484,Environment,Environment +531132,Environment,Environment +531131,Environment,Environment +528329,Environment,Environment +528328,Environment,Environment +528327,Environment,Environment +528326,Environment,Environment +528325,Environment,Environment +528324,Environment,Environment +525641,Environment,Environment +525629,Environment,Environment +525585,Environment,Environment +525583,Environment,Environment +525576,Environment,Environment +525574,Environment,Environment +525571,Environment,Environment +525570,Environment,Environment +525561,Environment,Environment +525559,Environment,Environment +525558,Environment,Environment +525554,Environment,Environment +521617,Environment,Environment +521604,Environment,Environment +521599,Environment,Environment +521598,Environment,Environment +521596,Environment,Environment +521593,Environment,Environment +521592,Environment,Environment +521591,Environment,Environment +521589,Environment,Environment +521588,Environment,Environment +512438,Environment,Environment +512437,Environment,Environment +512436,Environment,Environment +510074,Environment,Environment +510072,Environment,Environment +510068,Environment,Environment +510067,Environment,Environment +507084,Environment,Environment +504061,Environment,Environment +504059,Environment,Environment +504058,Environment,Environment +504057,Environment,Environment +504055,Environment,Environment +504053,Environment,Environment +497339,Environment,Environment +494378,Environment,Environment +494377,Environment,Environment +492779,Environment,Environment +492777,Environment,Environment +492776,Environment,Environment +492775,Environment,Environment +492772,Environment,Environment +490033,Environment,Environment +490031,Environment,Environment +490030,Environment,Environment +490026,Environment,Environment +487492,Environment,Environment +487482,Environment,Environment +487480,Environment,Environment +487473,Environment,Environment +487458,Environment,Environment +487456,Environment,Environment +487452,Environment,Environment +487449,Environment,Environment +487443,Environment,Environment +484839,Environment,Environment +484836,Environment,Environment +484490,Environment,Environment +541138,Environment,Environment +541136,Environment,Environment +541135,Environment,Environment +541133,Environment,Environment +541128,Environment,Environment +541126,Environment,Environment +490026,International Development,International Development +487456,International Development,International Development +507083,International Development,International Development +507080,International Development,International Development +504061,International Development,International Development +504059,International Development,International Development +504058,International Development,International Development +504057,International Development,International Development +494378,International Development,International Development +481359,Immigration,Immigration +481358,Immigration,Immigration +520916,Immigration,Immigration +497755,Immigration,Immigration +495018,Immigration,Immigration +490017,Immigration,Immigration +483991,Immigration,Immigration +483990,Immigration,Immigration +483868,Health,Health +483867,Health,Health +484501,Agriculture,Agriculture +481297,Budget,Budget +481297,Climate,Climate +488444,Economic Development,Economic Development +483874,Health,Health +517085,Industry,Industry +480903,Education,Education +504420,Health,Health +480903,Health,Health +487164,Industry,Industry +487153,Industry,Industry +487140,Security,Security +487135,Security,Security +487129,Security,Security +484971,Security,Security +484969,Security,Security +502321,Security,Security +494814,Security,Security +494809,Security,Security +494803,Security,Security +491148,Security,Security +491145,Security,Security +491142,Security,Security +487164,Security,Security +487153,Intellectual Property,Intellectual Property +487140,Intellectual Property,Intellectual Property +491148,Intellectual Property,Intellectual Property +491145,Intellectual Property,Intellectual Property +491142,Intellectual Property,Intellectual Property +484971,Consumer Issues,Consumer Issues +484969,Consumer Issues,Consumer Issues +502321,Consumer Issues,Consumer Issues +494814,Consumer Issues,Consumer Issues +494809,Consumer Issues,Consumer Issues +494803,Consumer Issues,Consumer Issues +491148,Consumer Issues,Consumer Issues +491145,Consumer Issues,Consumer Issues +491142,Consumer Issues,Consumer Issues +487164,Consumer Issues,Consumer Issues +487153,Consumer Issues,Consumer Issues +487140,Consumer Issues,Consumer Issues +487135,Consumer Issues,Consumer Issues +493809,Climate,Climate +480855,Climate,Climate +540491,Climate,Climate +540490,Climate,Climate +501775,Climate,Climate +501772,Climate,Climate +501771,Climate,Climate +540491,Economic Development,Economic Development +540490,Economic Development,Economic Development +501775,Economic Development,Economic Development +501771,Economic Development,Economic Development +493810,Economic Development,Economic Development +493809,Economic Development,Economic Development +540491,Regional Development,Regional Development +501775,Regional Development,Regional Development +493555,Climate,Climate +493526,Municipalities,Municipalities +484085,Municipalities,Municipalities +486984,Agriculture,Agriculture +483943,Agriculture,Agriculture +498502,Agriculture,Agriculture +494522,Agriculture,Agriculture +492916,Taxation and Finance,Taxation and Finance +486984,Taxation and Finance,Taxation and Finance +506298,Taxation and Finance,Taxation and Finance +503685,Taxation and Finance,Taxation and Finance +516458,Taxation and Finance,Taxation and Finance +516455,Taxation and Finance,Taxation and Finance +506489,Tourism,Tourism +506486,Tourism,Tourism +545081,Tourism,Tourism +542829,Tourism,Tourism +539410,Tourism,Tourism +539409,Tourism,Tourism +539408,Tourism,Tourism +539407,Tourism,Tourism +533097,Tourism,Tourism +533096,Tourism,Tourism +533094,Tourism,Tourism +533093,Tourism,Tourism +530717,Tourism,Tourism +523930,Tourism,Tourism +523929,Tourism,Tourism +523928,Tourism,Tourism +523927,Tourism,Tourism +523925,Tourism,Tourism +523924,Tourism,Tourism +520848,Tourism,Tourism +520247,Tourism,Tourism +520245,Tourism,Tourism +516460,Tourism,Tourism +516458,Tourism,Tourism +516455,Tourism,Tourism +513612,Tourism,Tourism +512145,Tourism,Tourism +512144,Tourism,Tourism +512143,Tourism,Tourism +512142,Tourism,Tourism +512138,Tourism,Tourism +512137,Tourism,Tourism +509869,Tourism,Tourism +509868,Tourism,Tourism +509867,Tourism,Tourism +509866,Tourism,Tourism +483371,Economic Development,Economic Development +483371,Health,Health +483371,Industry,Industry +483371,Research and Development,Research and Development +482801,Economic Development,Economic Development +482800,Economic Development,Economic Development +482800,Health,Health +482801,Industry,Industry +482800,Research and Development,Research and Development +482826,Environment,Environment +482825,Environment,Environment +494923,Environment,Environment +494464,Environment,Environment +482827,Health,Health +482825,Health,Health +494923,Health,Health +494464,Health,Health +483517,Agriculture,Agriculture +483516,Agriculture,Agriculture +492024,Agriculture,Agriculture +488391,Agriculture,Agriculture +483515,Climate,Climate +483514,Climate,Climate +492024,Climate,Climate +488391,Climate,Climate +483522,Climate,Climate +483517,Climate,Climate +483514,Economic Development,Economic Development +483513,Economic Development,Economic Development +488391,Economic Development,Economic Development +483522,Economic Development,Economic Development +483517,Economic Development,Economic Development +480935,Economic Development,Economic Development +480933,Economic Development,Economic Development +481188,Economic Development,Economic Development +481188,Infrastructure,Infrastructure +481181,Infrastructure,Infrastructure +481188,Taxation and Finance,Taxation and Finance +481181,Taxation and Finance,Taxation and Finance +480989,Justice and Law Enforcement,Justice and Law Enforcement +482273,Health,Health +487924,Research and Development,Research and Development +487903,Research and Development,Research and Development +487918,Security,Security +487903,Security,Security +487932,Security,Security +492966,Employment and Training,Employment and Training +492354,Employment and Training,Employment and Training +542231,Employment and Training,Employment and Training +527988,Employment and Training,Employment and Training +527987,Employment and Training,Employment and Training +488863,Research and Development,Research and Development +483282,Research and Development,Research and Development +492624,Research and Development,Research and Development +492640,Small Business,Small Business +482870,Small Business,Small Business +482990,Infrastructure,Infrastructure +482583,Infrastructure,Infrastructure +482584,Budget,Budget +544887,Budget,Budget +542342,Climate,Climate +542224,Climate,Climate +534127,Climate,Climate +532531,Climate,Climate +523781,Climate,Climate +520879,Climate,Climate +520572,Climate,Climate +520541,Climate,Climate +519930,Climate,Climate +519904,Climate,Climate +519903,Climate,Climate +519899,Climate,Climate +511580,Climate,Climate +493866,Climate,Climate +491643,Climate,Climate +488224,Climate,Climate +482586,Climate,Climate +482584,Climate,Climate +482579,Climate,Climate +544887,Climate,Climate +542583,Climate,Climate +542346,Climate,Climate +542345,Climate,Climate +542343,Energy,Energy +542224,Energy,Energy +534127,Energy,Energy +534105,Energy,Energy +530582,Energy,Energy +530581,Energy,Energy +519930,Energy,Energy +519904,Energy,Energy +519903,Energy,Energy +519899,Energy,Energy +511561,Energy,Energy +508559,Energy,Energy +508553,Energy,Energy +493865,Energy,Energy +491647,Energy,Energy +483007,Energy,Energy +483006,Energy,Energy +482586,Energy,Energy +482581,Energy,Energy +544887,Energy,Energy +544605,Energy,Energy +542346,Energy,Energy +542345,Energy,Energy +491647,Government Procurement,Government Procurement +519899,Environment,Environment +511579,Environment,Environment +483607,Health,Health +483606,Health,Health +507257,Health,Health +502208,Health,Health +502153,Health,Health +497957,Health,Health +497956,Health,Health +497954,Health,Health +497953,Health,Health +496267,Health,Health +496261,Health,Health +490333,Health,Health +488397,Health,Health +488396,Health,Health +488395,Health,Health +483647,Health,Health +483646,Health,Health +483644,Health,Health +483643,Health,Health +483642,Health,Health +483641,Health,Health +483639,Health,Health +483638,Health,Health +483637,Health,Health +483636,Health,Health +483635,Health,Health +483634,Health,Health +483633,Health,Health +483632,Health,Health +483630,Health,Health +483629,Health,Health +483628,Health,Health +483627,Health,Health +483626,Health,Health +483625,Health,Health +483624,Health,Health +483623,Health,Health +483622,Health,Health +483621,Health,Health +483620,Health,Health +483619,Health,Health +483618,Health,Health +483617,Health,Health +483616,Health,Health +483615,Health,Health +483614,Health,Health +483611,Health,Health +507257,Economic Development,Economic Development +502208,Economic Development,Economic Development +502153,Economic Development,Economic Development +497957,Economic Development,Economic Development +497956,Economic Development,Economic Development +497954,Economic Development,Economic Development +497953,Economic Development,Economic Development +496267,Economic Development,Economic Development +496261,Economic Development,Economic Development +496267,Labour,Labour +496261,Labour,Labour +490333,Labour,Labour +507257,Labour,Labour +502208,Labour,Labour +502153,Labour,Labour +497957,Labour,Labour +497956,Labour,Labour +483607,Infrastructure,Infrastructure +483606,Infrastructure,Infrastructure +507257,Infrastructure,Infrastructure +502208,Infrastructure,Infrastructure +502153,Infrastructure,Infrastructure +497957,Infrastructure,Infrastructure +497956,Infrastructure,Infrastructure +497954,Infrastructure,Infrastructure +497953,Infrastructure,Infrastructure +496267,Infrastructure,Infrastructure +496261,Infrastructure,Infrastructure +490333,Infrastructure,Infrastructure +488397,Infrastructure,Infrastructure +488396,Infrastructure,Infrastructure +488395,Infrastructure,Infrastructure +483647,Infrastructure,Infrastructure +483646,Infrastructure,Infrastructure +483644,Infrastructure,Infrastructure +483643,Infrastructure,Infrastructure +483642,Infrastructure,Infrastructure +483641,Infrastructure,Infrastructure +483639,Infrastructure,Infrastructure +483638,Infrastructure,Infrastructure +483637,Infrastructure,Infrastructure +483636,Infrastructure,Infrastructure +483635,Infrastructure,Infrastructure +483634,Infrastructure,Infrastructure +483633,Infrastructure,Infrastructure +483632,Infrastructure,Infrastructure +483630,Infrastructure,Infrastructure +483629,Infrastructure,Infrastructure +483628,Infrastructure,Infrastructure +483627,Infrastructure,Infrastructure +483626,Infrastructure,Infrastructure +483625,Infrastructure,Infrastructure +483624,Infrastructure,Infrastructure +483623,Infrastructure,Infrastructure +483622,Infrastructure,Infrastructure +483621,Infrastructure,Infrastructure +483620,Infrastructure,Infrastructure +483619,Infrastructure,Infrastructure +483618,Infrastructure,Infrastructure +483617,Infrastructure,Infrastructure +483616,Infrastructure,Infrastructure +483615,Infrastructure,Infrastructure +483614,Infrastructure,Infrastructure +483611,Infrastructure,Infrastructure +483607,Employment and Training,Employment and Training +483606,Employment and Training,Employment and Training +507257,Employment and Training,Employment and Training +502208,Employment and Training,Employment and Training +502153,Employment and Training,Employment and Training +497957,Employment and Training,Employment and Training +497956,Employment and Training,Employment and Training +497954,Employment and Training,Employment and Training +497953,Employment and Training,Employment and Training +496267,Employment and Training,Employment and Training +496261,Employment and Training,Employment and Training +490333,Employment and Training,Employment and Training +488397,Employment and Training,Employment and Training +488396,Employment and Training,Employment and Training +488395,Employment and Training,Employment and Training +483647,Employment and Training,Employment and Training +483646,Employment and Training,Employment and Training +483644,Employment and Training,Employment and Training +483643,Employment and Training,Employment and Training +483642,Employment and Training,Employment and Training +483641,Employment and Training,Employment and Training +483639,Employment and Training,Employment and Training +483638,Employment and Training,Employment and Training +483637,Employment and Training,Employment and Training +483636,Employment and Training,Employment and Training +483635,Employment and Training,Employment and Training +483634,Employment and Training,Employment and Training +483633,Employment and Training,Employment and Training +483632,Employment and Training,Employment and Training +483630,Employment and Training,Employment and Training +483629,Employment and Training,Employment and Training +483628,Employment and Training,Employment and Training +483627,Employment and Training,Employment and Training +483626,Employment and Training,Employment and Training +483625,Employment and Training,Employment and Training +483624,Employment and Training,Employment and Training +483623,Employment and Training,Employment and Training +483622,Employment and Training,Employment and Training +483621,Employment and Training,Employment and Training +483620,Employment and Training,Employment and Training +483619,Employment and Training,Employment and Training +483618,Employment and Training,Employment and Training +483617,Employment and Training,Employment and Training +483616,Employment and Training,Employment and Training +483615,Employment and Training,Employment and Training +483614,Employment and Training,Employment and Training +483611,Employment and Training,Employment and Training +483607,Immigration,Immigration +483606,Immigration,Immigration +507257,Immigration,Immigration +502208,Immigration,Immigration +502153,Immigration,Immigration +497957,Immigration,Immigration +497956,Immigration,Immigration +497954,Immigration,Immigration +497953,Immigration,Immigration +496267,Immigration,Immigration +496261,Immigration,Immigration +490333,Immigration,Immigration +488397,Immigration,Immigration +488396,Immigration,Immigration +488395,Immigration,Immigration +483647,Immigration,Immigration +483646,Immigration,Immigration +483644,Immigration,Immigration +483643,Immigration,Immigration +483642,Immigration,Immigration +483641,Immigration,Immigration +483639,Immigration,Immigration +483638,Immigration,Immigration +483637,Immigration,Immigration +483636,Immigration,Immigration +483635,Immigration,Immigration +483634,Immigration,Immigration +483633,Immigration,Immigration +483632,Immigration,Immigration +483630,Immigration,Immigration +483629,Immigration,Immigration +483628,Immigration,Immigration +483627,Immigration,Immigration +483626,Immigration,Immigration +483625,Immigration,Immigration +483624,Immigration,Immigration +483623,Immigration,Immigration +483622,Immigration,Immigration +483621,Immigration,Immigration +483620,Immigration,Immigration +483619,Immigration,Immigration +483618,Immigration,Immigration +483617,Immigration,Immigration +483616,Immigration,Immigration +483615,Immigration,Immigration +483614,Immigration,Immigration +483611,Immigration,Immigration +483646,Budget,Budget +483644,Budget,Budget +483643,Budget,Budget +483642,Budget,Budget +483641,Budget,Budget +483639,Budget,Budget +483638,Budget,Budget +483637,Budget,Budget +483636,Budget,Budget +483635,Budget,Budget +483634,Budget,Budget +483633,Budget,Budget +483632,Budget,Budget +483630,Budget,Budget +483629,Budget,Budget +483628,Budget,Budget +483627,Budget,Budget +483626,Budget,Budget +483625,Budget,Budget +483624,Budget,Budget +483623,Budget,Budget +483622,Budget,Budget +483621,Budget,Budget +483620,Budget,Budget +483619,Budget,Budget +483618,Budget,Budget +483617,Budget,Budget +483616,Budget,Budget +483615,Budget,Budget +483614,Budget,Budget +483611,Budget,Budget +483609,Budget,Budget +483607,Budget,Budget +483606,Budget,Budget +507257,Budget,Budget +502208,Budget,Budget +502153,Budget,Budget +497957,Budget,Budget +497956,Budget,Budget +497954,Budget,Budget +497953,Budget,Budget +496267,Budget,Budget +496261,Budget,Budget +490333,Budget,Budget +488397,Budget,Budget +488396,Budget,Budget +488395,Budget,Budget +488790,Economic Development,Economic Development +485416,Economic Development,Economic Development +488793,Economic Development,Economic Development +488792,Economic Development,Economic Development +491775,Environment,Environment +485417,Environment,Environment +493571,Environment,Environment +491842,International Development,International Development +484356,International Development,International Development +520903,Climate,Climate +520902,Climate,Climate +528405,Climate,Climate +520903,Economic Development,Economic Development +520902,Economic Development,Economic Development +528405,Economic Development,Economic Development +481723,Energy,Energy +481697,Energy,Energy +528405,Energy,Energy +520917,Energy,Energy +520903,Energy,Energy +520902,Energy,Energy +520903,Environment,Environment +520902,Environment,Environment +528405,Environment,Environment +520903,Industry,Industry +520902,Industry,Industry +528405,Industry,Industry +520903,Infrastructure,Infrastructure +520902,Infrastructure,Infrastructure +520903,International Development,International Development +520902,International Development,International Development +528405,International Development,International Development +520903,Regional Development,Regional Development +520902,Regional Development,Regional Development +520903,Research and Development,Research and Development +520902,Research and Development,Research and Development +515062,Economic Development,Economic Development +503629,Economic Development,Economic Development +501172,Economic Development,Economic Development +501170,Economic Development,Economic Development +497216,Economic Development,Economic Development +497215,Economic Development,Economic Development +494300,Economic Development,Economic Development +492695,Economic Development,Economic Development +489366,Economic Development,Economic Development +486562,Economic Development,Economic Development +486553,Economic Development,Economic Development +486551,Economic Development,Economic Development +518873,Economic Development,Economic Development +518872,Economic Development,Economic Development +516852,Economic Development,Economic Development +516851,Economic Development,Economic Development +497216,Health,Health +497215,Health,Health +494300,Health,Health +492695,Health,Health +489366,Health,Health +486562,Health,Health +486553,Health,Health +486551,Health,Health +518873,Health,Health +518872,Health,Health +516852,Health,Health +516851,Health,Health +516850,Health,Health +515062,Health,Health +503629,Health,Health +501172,Health,Health +486553,Intellectual Property,Intellectual Property +486551,Intellectual Property,Intellectual Property +518873,Intellectual Property,Intellectual Property +518872,Intellectual Property,Intellectual Property +516852,Intellectual Property,Intellectual Property +516851,Intellectual Property,Intellectual Property +516850,Intellectual Property,Intellectual Property +515062,Intellectual Property,Intellectual Property +503629,Intellectual Property,Intellectual Property +501172,Intellectual Property,Intellectual Property +501170,Intellectual Property,Intellectual Property +497216,Intellectual Property,Intellectual Property +497215,Intellectual Property,Intellectual Property +494300,Intellectual Property,Intellectual Property +492695,Intellectual Property,Intellectual Property +489366,Intellectual Property,Intellectual Property +486553,Research and Development,Research and Development +486551,Research and Development,Research and Development +518873,Research and Development,Research and Development +518872,Research and Development,Research and Development +516852,Research and Development,Research and Development +516851,Research and Development,Research and Development +516850,Research and Development,Research and Development +515062,Research and Development,Research and Development +503629,Research and Development,Research and Development +501172,Research and Development,Research and Development +501170,Research and Development,Research and Development +497216,Research and Development,Research and Development +497215,Research and Development,Research and Development +494300,Research and Development,Research and Development +492695,Research and Development,Research and Development +489366,Research and Development,Research and Development +485323,Environment,Environment +485723,Education,Education +485323,Education,Education +505900,Health,Health +481080,Health,Health +541008,Health,Health +535402,Health,Health +532743,Health,Health +532742,Health,Health +532264,Health,Health +532263,Health,Health +529483,Health,Health +529481,Health,Health +529479,Health,Health +529477,Health,Health +529476,Health,Health +529473,Health,Health +523315,Health,Health +505903,Health,Health +487662,Climate,Climate +541038,Climate,Climate +490844,Climate,Climate +490842,Climate,Climate +490837,Climate,Climate +487660,Environment,Environment +481085,Environment,Environment +541038,Environment,Environment +529972,Environment,Environment +529971,Environment,Environment +526781,Environment,Environment +490890,Environment,Environment +490882,Environment,Environment +490879,Environment,Environment +490876,Environment,Environment +490872,Environment,Environment +490861,Environment,Environment +490849,Environment,Environment +490848,Environment,Environment +490846,Environment,Environment +490844,Environment,Environment +490842,Environment,Environment +490834,Environment,Environment +487668,Environment,Environment +487667,Environment,Environment +487666,Environment,Environment +487665,Environment,Environment +487664,Environment,Environment +487663,Environment,Environment +487662,Environment,Environment +482826,Climate,Climate +482825,Climate,Climate +482698,Health,Health +523821,Economic Development,Economic Development +483376,Economic Development,Economic Development +485002,Education,Education +482477,Education,Education +482477,Employment and Training,Employment and Training +493973,Education,Education +493025,Education,Education +486553,Consumer Issues,Consumer Issues +486551,Consumer Issues,Consumer Issues +518873,Consumer Issues,Consumer Issues +518872,Consumer Issues,Consumer Issues +516852,Consumer Issues,Consumer Issues +516851,Consumer Issues,Consumer Issues +516850,Consumer Issues,Consumer Issues +515062,Consumer Issues,Consumer Issues +503629,Consumer Issues,Consumer Issues +501172,Consumer Issues,Consumer Issues +501170,Consumer Issues,Consumer Issues +497216,Consumer Issues,Consumer Issues +497215,Consumer Issues,Consumer Issues +494300,Consumer Issues,Consumer Issues +492695,Consumer Issues,Consumer Issues +489366,Consumer Issues,Consumer Issues +486553,Employment and Training,Employment and Training +486551,Employment and Training,Employment and Training +518873,Employment and Training,Employment and Training +518872,Employment and Training,Employment and Training +516852,Employment and Training,Employment and Training +516851,Employment and Training,Employment and Training +516850,Employment and Training,Employment and Training +515062,Employment and Training,Employment and Training +501170,Employment and Training,Employment and Training +497216,Employment and Training,Employment and Training +497215,Employment and Training,Employment and Training +494300,Employment and Training,Employment and Training +492695,Employment and Training,Employment and Training +489366,Employment and Training,Employment and Training +482879,Education,Education +482693,Education,Education +507465,Education,Education +495097,Education,Education +489553,Education,Education +483933,Education,Education +483021,Education,Education +485650,Economic Development,Economic Development +483288,Government Procurement,Government Procurement +482720,Government Procurement,Government Procurement +485697,Government Procurement,Government Procurement +483288,Health,Health +482720,Health,Health +485697,Health,Health +482720,Security,Security +485697,Security,Security +485650,Security,Security +483288,Transportation,Transportation +482720,Transportation,Transportation +485697,Transportation,Transportation +517082,Economic Development,Economic Development +509123,Economic Development,Economic Development +494835,Health,Health +481910,Health,Health +517082,Health,Health +509390,Health,Health +481165,Health,Health +481163,Health,Health +481167,Health,Health +481165,Research and Development,Research and Development +481163,Research and Development,Research and Development +481167,Research and Development,Research and Development +502641,Environment,Environment +482641,Environment,Environment +502653,Environment,Environment +486238,Internal Trade,Internal Trade +483154,Internal Trade,Internal Trade +488306,Internal Trade,Internal Trade +486241,Internal Trade,Internal Trade +483154,Taxation and Finance,Taxation and Finance +485375,Taxation and Finance,Taxation and Finance +483149,Taxation and Finance,Taxation and Finance +492226,Taxation and Finance,Taxation and Finance +485378,Taxation and Finance,Taxation and Finance +485377,Taxation and Finance,Taxation and Finance +514883,Financial Institutions,Financial Institutions +543284,Financial Institutions,Financial Institutions +543279,Financial Institutions,Financial Institutions +516273,Industry,Industry +514883,Industry,Industry +487366,Industry,Industry +487364,Industry,Industry +487362,Industry,Industry +543284,Industry,Industry +543279,Industry,Industry +485072,Small Business,Small Business +485071,Small Business,Small Business +543284,Small Business,Small Business +543282,Small Business,Small Business +543281,Small Business,Small Business +543279,Small Business,Small Business +541457,Small Business,Small Business +539457,Small Business,Small Business +538886,Small Business,Small Business +538885,Small Business,Small Business +516273,Small Business,Small Business +514883,Small Business,Small Business +514401,Small Business,Small Business +509749,Small Business,Small Business +508631,Small Business,Small Business +508630,Small Business,Small Business +493442,Small Business,Small Business +491962,Small Business,Small Business +487373,Small Business,Small Business +487366,Small Business,Small Business +487364,Small Business,Small Business +514883,Taxation and Finance,Taxation and Finance +543279,Taxation and Finance,Taxation and Finance +487362,Tourism,Tourism +485072,Tourism,Tourism +487373,Tourism,Tourism +487366,Tourism,Tourism +485371,Infrastructure,Infrastructure +485370,Infrastructure,Infrastructure +488910,Infrastructure,Infrastructure +485373,Infrastructure,Infrastructure +483151,Housing,Housing +527052,Mining,Mining +522297,Mining,Mining +511916,Mining,Mining +503068,Mining,Mining +483476,Mining,Mining +534490,Mining,Mining +531006,Mining,Mining +530165,Mining,Mining +531006,Research and Development,Research and Development +530165,Research and Development,Research and Development +527053,Research and Development,Research and Development +527052,Research and Development,Research and Development +522297,Research and Development,Research and Development +515002,Research and Development,Research and Development +511916,Research and Development,Research and Development +506892,Research and Development,Research and Development +503068,Research and Development,Research and Development +483476,Research and Development,Research and Development +481333,Infrastructure,Infrastructure +481333,Transportation,Transportation +481982,Economic Development,Economic Development +481979,Economic Development,Economic Development +495548,Agriculture,Agriculture +492792,Agriculture,Agriculture +492791,Agriculture,Agriculture +492790,Agriculture,Agriculture +492789,Agriculture,Agriculture +492788,Agriculture,Agriculture +492787,Agriculture,Agriculture +491671,Agriculture,Agriculture +491669,Agriculture,Agriculture +491657,Agriculture,Agriculture +491651,Agriculture,Agriculture +491644,Agriculture,Agriculture +491606,Agriculture,Agriculture +491604,Agriculture,Agriculture +491600,Agriculture,Agriculture +482486,Agriculture,Agriculture +541519,Agriculture,Agriculture +541501,Agriculture,Agriculture +541500,Agriculture,Agriculture +541497,Agriculture,Agriculture +541495,Agriculture,Agriculture +539693,Agriculture,Agriculture +539691,Agriculture,Agriculture +539690,Agriculture,Agriculture +539689,Agriculture,Agriculture +539688,Agriculture,Agriculture +539687,Agriculture,Agriculture +534540,Agriculture,Agriculture +529308,Agriculture,Agriculture +529224,Agriculture,Agriculture +529223,Agriculture,Agriculture +525927,Agriculture,Agriculture +525926,Agriculture,Agriculture +525922,Agriculture,Agriculture +517467,Agriculture,Agriculture +515309,Agriculture,Agriculture +515307,Agriculture,Agriculture +515306,Agriculture,Agriculture +510815,Agriculture,Agriculture +505264,Agriculture,Agriculture +501234,Agriculture,Agriculture +499146,Agriculture,Agriculture +491600,Climate,Climate +482486,Climate,Climate +541519,Climate,Climate +541501,Climate,Climate +541500,Climate,Climate +541497,Climate,Climate +541495,Climate,Climate +539693,Climate,Climate +539691,Climate,Climate +539690,Climate,Climate +539689,Climate,Climate +539688,Climate,Climate +539687,Climate,Climate +534540,Climate,Climate +529308,Climate,Climate +529224,Climate,Climate +529223,Climate,Climate +525927,Climate,Climate +525926,Climate,Climate +525922,Climate,Climate +517467,Climate,Climate +515309,Climate,Climate +515307,Climate,Climate +515306,Climate,Climate +510815,Climate,Climate +505264,Climate,Climate +501234,Climate,Climate +499146,Climate,Climate +499141,Climate,Climate +495548,Climate,Climate +492792,Climate,Climate +492791,Climate,Climate +492790,Climate,Climate +492789,Climate,Climate +492788,Climate,Climate +492787,Climate,Climate +491671,Climate,Climate +491669,Climate,Climate +491657,Climate,Climate +491651,Climate,Climate +491644,Climate,Climate +491606,Climate,Climate +491600,Economic Development,Economic Development +482486,Economic Development,Economic Development +541519,Economic Development,Economic Development +541501,Economic Development,Economic Development +541500,Economic Development,Economic Development +541497,Economic Development,Economic Development +541495,Economic Development,Economic Development +539693,Economic Development,Economic Development +539691,Economic Development,Economic Development +539690,Economic Development,Economic Development +539689,Economic Development,Economic Development +539688,Economic Development,Economic Development +539687,Economic Development,Economic Development +534540,Economic Development,Economic Development +529308,Economic Development,Economic Development +529224,Economic Development,Economic Development +529223,Economic Development,Economic Development +525927,Economic Development,Economic Development +525926,Economic Development,Economic Development +525922,Economic Development,Economic Development +517467,Economic Development,Economic Development +515309,Economic Development,Economic Development +515307,Economic Development,Economic Development +515306,Economic Development,Economic Development +510815,Economic Development,Economic Development +505264,Economic Development,Economic Development +501234,Economic Development,Economic Development +499146,Economic Development,Economic Development +499141,Economic Development,Economic Development +495548,Economic Development,Economic Development +492792,Economic Development,Economic Development +492791,Economic Development,Economic Development +492790,Economic Development,Economic Development +492789,Economic Development,Economic Development +492788,Economic Development,Economic Development +492787,Economic Development,Economic Development +491671,Economic Development,Economic Development +491669,Economic Development,Economic Development +491657,Economic Development,Economic Development +491651,Economic Development,Economic Development +491644,Economic Development,Economic Development +491606,Economic Development,Economic Development +494485,Environment,Environment +494485,Health,Health +497548,Agriculture,Agriculture +497547,Agriculture,Agriculture +523724,Agriculture,Agriculture +523723,Agriculture,Agriculture +523722,Agriculture,Agriculture +497550,Agriculture,Agriculture +489219,Budget,Budget +539400,Budget,Budget +515157,Budget,Budget +507434,Budget,Budget +503975,Budget,Budget +502068,Budget,Budget +495370,Budget,Budget +495366,Budget,Budget +495363,Budget,Budget +495359,Budget,Budget +495352,Budget,Budget +495350,Budget,Budget +495348,Budget,Budget +495346,Budget,Budget +539400,Climate,Climate +539400,Infrastructure,Infrastructure +487452,Climate,Climate +521589,Energy,Energy +539075,Environment,Environment +494377,International Development,International Development +481365,Immigration,Immigration +482785,Health,Health +482785,Industry,Industry +482785,Transportation,Transportation +480770,Intellectual Property,Intellectual Property +480772,Intellectual Property,Intellectual Property +480775,Intellectual Property,Intellectual Property +483870,Health,Health +480787,Consumer Issues,Consumer Issues +480793,Environment,Environment +480810,Small Business,Small Business +484514,Agriculture,Agriculture +488706,Budget,Budget +488706,Climate,Climate +481297,Health,Health +488706,Infrastructure,Infrastructure +488444,Budget,Budget +509641,Economic Development,Economic Development +509641,Industry,Industry +488444,Climate,Climate +482541,Environment,Environment +488444,Energy,Energy +535947,Health,Health +480824,Industry,Industry +482540,Energy,Energy +482540,Infrastructure,Infrastructure +480828,Climate,Climate +480828,Energy,Energy +480828,Environment,Environment +480847,Employment and Training,Employment and Training +526946,Education,Education +526946,Health,Health +494809,Industry,Industry +487153,Security,Security +487164,Intellectual Property,Intellectual Property +487129,Consumer Issues,Consumer Issues +493810,Climate,Climate +480855,Economic Development,Economic Development +480855,Regional Development,Regional Development +480856,Regional Development,Regional Development +480857,Regional Development,Regional Development +526439,Justice and Law Enforcement,Justice and Law Enforcement +480861,Regional Development,Regional Development +481189,Education,Education +493557,Climate,Climate +543412,Municipalities,Municipalities +480883,Agriculture,Agriculture +480883,Defence,Defence +480883,Environment,Environment +480883,Health,Health +480883,Labour,Labour +480883,Mining,Mining +480883,Research and Development,Research and Development +480883,Security,Security +492916,Agriculture,Agriculture +494522,Taxation and Finance,Taxation and Finance +480890,Health,Health +481630,Regional Development,Regional Development +481630,Economic Development,Economic Development +481630,Agriculture,Agriculture +516460,Taxation and Finance,Taxation and Finance +509865,Tourism,Tourism +494658,Economic Development,Economic Development +494658,Health,Health +494658,Industry,Industry +494658,Research and Development,Research and Development +486353,Economic Development,Economic Development +482801,Health,Health +486353,Industry,Industry +482801,Research and Development,Research and Development +493870,Environment,Environment +485531,Health,Health +481031,Economic Development,Economic Development +483522,Agriculture,Agriculture +483516,Climate,Climate +483515,Economic Development,Economic Development +480930,Small Business,Small Business +480937,Economic Development,Economic Development +483267,Economic Development,Economic Development +481181,Housing,Housing +485742,Infrastructure,Infrastructure +485742,Taxation and Finance,Taxation and Finance +494582,Justice and Law Enforcement,Justice and Law Enforcement +496868,Health,Health +487932,Research and Development,Research and Development +487924,Security,Security +527986,Employment and Training,Employment and Training +488865,Research and Development,Research and Development +500042,Small Business,Small Business +519903,Infrastructure,Infrastructure +482992,Budget,Budget +519904,Housing,Housing +534127,International Trade,International Trade +542343,Climate,Climate +542344,Energy,Energy +511590,Government Procurement,Government Procurement +520541,Environment,Environment +483609,Health,Health +490333,Economic Development,Economic Development +497953,Labour,Labour +483609,Infrastructure,Infrastructure +483609,Employment and Training,Employment and Training +483609,Immigration,Immigration +483647,Budget,Budget +488791,Economic Development,Economic Development +491786,Energy,Energy +491792,Environment,Environment +496353,Research and Development,Research and Development +493291,International Development,International Development +481046,International Development,International Development +520917,Climate,Climate +520917,Economic Development,Economic Development +481724,Energy,Energy +520917,Environment,Environment +520917,Industry,Industry +520917,Infrastructure,Infrastructure +520917,International Development,International Development +520917,Regional Development,Regional Development +520917,Research and Development,Research and Development +516850,Economic Development,Economic Development +501170,Health,Health +486562,Intellectual Property,Intellectual Property +486562,Research and Development,Research and Development +485723,Environment,Environment +494341,Education,Education +485723,Industry,Industry +505901,Health,Health +490834,Climate,Climate +487661,Environment,Environment +481085,Economic Development,Economic Development +485531,Budget,Budget +482827,Climate,Climate +484373,Economic Development,Economic Development +484373,Health,Health +527382,Economic Development,Economic Development +483374,Regional Development,Regional Development +483374,Tourism,Tourism +483875,Government Procurement,Government Procurement +543230,Education,Education +485002,Employment and Training,Employment and Training +543230,Immigration,Immigration +481146,Infrastructure,Infrastructure +500281,Education,Education +486562,Consumer Issues,Consumer Issues +486562,Employment and Training,Employment and Training +482880,Education,Education +485738,Taxation and Finance,Taxation and Finance +485738,Infrastructure,Infrastructure +485697,Economic Development,Economic Development +485650,Government Procurement,Government Procurement +485650,Health,Health +483288,Security,Security +485650,Transportation,Transportation +494835,Economic Development,Economic Development +509123,Health,Health +517082,Industry,Industry +481166,Health,Health +481166,Research and Development,Research and Development +502647,Environment,Environment +486239,Internal Trade,Internal Trade +488306,Taxation and Finance,Taxation and Finance +485376,Taxation and Finance,Taxation and Finance +514883,Consumer Issues,Consumer Issues +516273,Financial Institutions,Financial Institutions +539457,Industry,Industry +487362,Small Business,Small Business +516273,Taxation and Finance,Taxation and Finance +487364,Tourism,Tourism +485372,Infrastructure,Infrastructure +492225,Economic Development,Economic Development +492225,Housing,Housing +483582,Education,Education +527053,Mining,Mining +534490,Research and Development,Research and Development +481824,Infrastructure,Infrastructure +481824,Transportation,Transportation +485197,Economic Development,Economic Development +499141,Agriculture,Agriculture +491604,Climate,Climate +491604,Economic Development,Economic Development +494485,Climate,Climate +494717,Environment,Environment +494717,Health,Health +497549,Agriculture,Agriculture +489220,Budget,Budget +541260,Climate,Climate +541260,Infrastructure,Infrastructure +541260,Labour,Labour +502067,Regional Development,Regional Development +495350,Small Business,Small Business +484745,Infrastructure,Infrastructure +487767,Housing,Housing +508721,Regional Development,Regional Development +508721,Economic Development,Economic Development +485379,Housing,Housing +522176,Agriculture,Agriculture +491624,Education,Education +509784,Budget,Budget +509784,Climate,Climate +509784,Economic Development,Economic Development +509784,Energy,Energy +509784,Environment,Environment +509784,Forestry,Forestry +509784,Industry,Industry +509784,Taxation and Finance,Taxation and Finance +509784,Transportation,Transportation +485062,Economic Development,Economic Development +481566,Taxation and Finance,Taxation and Finance +481631,Health,Health +481631,Internal Trade,Internal Trade +488482,International Trade,International Trade +488482,Economic Development,Economic Development +481655,Small Business,Small Business +481655,Government Procurement,Government Procurement +522455,Health,Health +503564,Budget,Budget +503564,Economic Development,Economic Development +503564,Government Procurement,Government Procurement +503564,Health,Health +491858,Sports,Sports +491858,Tourism,Tourism +481687,Immigration,Immigration +481686,Immigration,Immigration +481689,Immigration,Immigration +481690,Immigration,Immigration +481712,Justice and Law Enforcement,Justice and Law Enforcement +483485,Justice and Law Enforcement,Justice and Law Enforcement +482742,Economic Development,Economic Development +482742,Taxation and Finance,Taxation and Finance +540199,Agriculture,Agriculture +538582,Fisheries,Fisheries +485365,Immigration,Immigration +502459,Taxation and Finance,Taxation and Finance +485541,Taxation and Finance,Taxation and Finance +484074,Research and Development,Research and Development +494208,Research and Development,Research and Development +493317,International Trade,International Trade +484069,Research and Development,Research and Development +484672,Environment,Environment +482006,International Trade,International Trade +482024,Environment,Environment +500059,Budget,Budget +483118,Education,Education +500058,Employment and Training,Employment and Training +492363,Economic Development,Economic Development +485491,Employment and Training,Employment and Training +492362,Health,Health +485491,International Development,International Development +485491,International Relations,International Relations +485491,International Trade,International Trade +485491,Labour,Labour +485491,Regional Development,Regional Development +485491,Research and Development,Research and Development +506456,Small Business,Small Business +506456,Economic Development,Economic Development +503688,Economic Development,Economic Development +496725,Transportation,Transportation +503688,Infrastructure,Infrastructure +496725,Regional Development,Regional Development +484775,Economic Development,Economic Development +485002,Environment,Environment +483693,Religion,Religion +483113,Climate,Climate +500439,Defence,Defence +484777,Economic Development,Economic Development +484866,Employment and Training,Employment and Training +494861,Forestry,Forestry +487657,Security,Security +487657,Industry,Industry +482747,Taxation and Finance,Taxation and Finance +482747,Economic Development,Economic Development +482314,Employment and Training,Employment and Training +482318,Employment and Training,Employment and Training +482325,Employment and Training,Employment and Training +482322,Employment and Training,Employment and Training +482334,Employment and Training,Employment and Training +491468,Government Procurement,Government Procurement +505199,Research and Development,Research and Development +505199,Employment and Training,Employment and Training +485024,Defence,Defence +505199,Security,Security +491533,Health,Health +491533,Industry,Industry +491564,International Trade,International Trade +491564,Regional Development,Regional Development +502231,Economic Development,Economic Development +482475,Environment,Environment +482479,Agriculture,Agriculture +482479,International Trade,International Trade +482478,Environment,Environment +482495,Forestry,Forestry +482496,Forestry,Forestry +482497,Forestry,Forestry +482498,Forestry,Forestry +482499,Forestry,Forestry +482501,Forestry,Forestry +482502,Forestry,Forestry +499786,Health,Health +482505,Immigration,Immigration +485459,Health,Health +494164,Economic Development,Economic Development +485459,Research and Development,Research and Development +517826,Economic Development,Economic Development +482591,Forestry,Forestry +482592,Forestry,Forestry +482593,Forestry,Forestry +482594,Forestry,Forestry +482595,Forestry,Forestry +486532,Forestry,Forestry +496907,Regional Development,Regional Development +518885,Taxation and Finance,Taxation and Finance +518885,Transportation,Transportation +483122,Government Procurement,Government Procurement +482820,Defence,Defence +482660,Economic Development,Economic Development +483140,Health,Health +482660,Research and Development,Research and Development +486108,Budget,Budget +483858,Economic Development,Economic Development +539400,Labour,Labour +541260,Regional Development,Regional Development +539400,Regional Development,Regional Development +516298,Regional Development,Regional Development +502068,Regional Development,Regional Development +495348,Small Business,Small Business +486286,Small Business,Small Business +541260,Small Business,Small Business +484745,Housing,Housing +508721,Housing,Housing +493694,Housing,Housing +487767,Economic Development,Economic Development +484745,Economic Development,Economic Development +497284,Housing,Housing +489493,Housing,Housing +522173,Agriculture,Agriculture +522168,Agriculture,Agriculture +520117,Agriculture,Agriculture +520116,Agriculture,Agriculture +520115,Agriculture,Agriculture +520114,Agriculture,Agriculture +520113,Agriculture,Agriculture +520112,Agriculture,Agriculture +520111,Agriculture,Agriculture +520110,Agriculture,Agriculture +517365,Agriculture,Agriculture +516474,Agriculture,Agriculture +516472,Agriculture,Agriculture +515046,Agriculture,Agriculture +515045,Agriculture,Agriculture +512047,Agriculture,Agriculture +512046,Agriculture,Agriculture +510078,Agriculture,Agriculture +506511,Agriculture,Agriculture +506510,Agriculture,Agriculture +506509,Agriculture,Agriculture +506508,Agriculture,Agriculture +505991,Agriculture,Agriculture +505990,Agriculture,Agriculture +502602,Agriculture,Agriculture +502598,Agriculture,Agriculture +502578,Agriculture,Agriculture +494792,Agriculture,Agriculture +494791,Agriculture,Agriculture +494790,Agriculture,Agriculture +494789,Agriculture,Agriculture +493800,Agriculture,Agriculture +493799,Agriculture,Agriculture +493798,Agriculture,Agriculture +493797,Agriculture,Agriculture +493795,Agriculture,Agriculture +493794,Agriculture,Agriculture +493793,Agriculture,Agriculture +491653,Agriculture,Agriculture +491650,Agriculture,Agriculture +491648,Agriculture,Agriculture +491638,Agriculture,Agriculture +491635,Agriculture,Agriculture +491633,Agriculture,Agriculture +491629,Agriculture,Agriculture +491627,Agriculture,Agriculture +491621,Agriculture,Agriculture +486028,Agriculture,Agriculture +486027,Agriculture,Agriculture +486024,Agriculture,Agriculture +486022,Agriculture,Agriculture +486021,Agriculture,Agriculture +486020,Agriculture,Agriculture +486019,Agriculture,Agriculture +486018,Agriculture,Agriculture +485991,Agriculture,Agriculture +485988,Agriculture,Agriculture +485986,Agriculture,Agriculture +483164,Agriculture,Agriculture +483162,Agriculture,Agriculture +483057,Agriculture,Agriculture +482995,Agriculture,Agriculture +482994,Agriculture,Agriculture +482993,Agriculture,Agriculture +482991,Agriculture,Agriculture +482989,Agriculture,Agriculture +482987,Agriculture,Agriculture +482986,Agriculture,Agriculture +482984,Agriculture,Agriculture +482983,Agriculture,Agriculture +482982,Agriculture,Agriculture +482981,Agriculture,Agriculture +482980,Agriculture,Agriculture +482979,Agriculture,Agriculture +482978,Agriculture,Agriculture +482977,Agriculture,Agriculture +482976,Agriculture,Agriculture +482975,Agriculture,Agriculture +482974,Agriculture,Agriculture +482973,Agriculture,Agriculture +482969,Agriculture,Agriculture +482967,Agriculture,Agriculture +482965,Agriculture,Agriculture +482964,Agriculture,Agriculture +482963,Agriculture,Agriculture +482962,Agriculture,Agriculture +482960,Agriculture,Agriculture +482959,Agriculture,Agriculture +482958,Agriculture,Agriculture +542060,Agriculture,Agriculture +542059,Agriculture,Agriculture +542058,Agriculture,Agriculture +542057,Agriculture,Agriculture +542056,Agriculture,Agriculture +542055,Agriculture,Agriculture +542054,Agriculture,Agriculture +542053,Agriculture,Agriculture +542051,Agriculture,Agriculture +542050,Agriculture,Agriculture +542048,Agriculture,Agriculture +542047,Agriculture,Agriculture +542046,Agriculture,Agriculture +542045,Agriculture,Agriculture +542044,Agriculture,Agriculture +542043,Agriculture,Agriculture +542041,Agriculture,Agriculture +542040,Agriculture,Agriculture +542037,Agriculture,Agriculture +542036,Agriculture,Agriculture +542035,Agriculture,Agriculture +542032,Agriculture,Agriculture +542031,Agriculture,Agriculture +542030,Agriculture,Agriculture +542029,Agriculture,Agriculture +542027,Agriculture,Agriculture +538691,Agriculture,Agriculture +538690,Agriculture,Agriculture +538689,Agriculture,Agriculture +538688,Agriculture,Agriculture +538687,Agriculture,Agriculture +538686,Agriculture,Agriculture +538685,Agriculture,Agriculture +538684,Agriculture,Agriculture +538683,Agriculture,Agriculture +538682,Agriculture,Agriculture +538681,Agriculture,Agriculture +538680,Agriculture,Agriculture +538679,Agriculture,Agriculture +538678,Agriculture,Agriculture +538676,Agriculture,Agriculture +538675,Agriculture,Agriculture +538674,Agriculture,Agriculture +538673,Agriculture,Agriculture +538672,Agriculture,Agriculture +535830,Agriculture,Agriculture +535820,Agriculture,Agriculture +535819,Agriculture,Agriculture +535817,Agriculture,Agriculture +535816,Agriculture,Agriculture +535815,Agriculture,Agriculture +535814,Agriculture,Agriculture +535812,Agriculture,Agriculture +535811,Agriculture,Agriculture +535807,Agriculture,Agriculture +535805,Agriculture,Agriculture +535588,Agriculture,Agriculture +535577,Agriculture,Agriculture +535573,Agriculture,Agriculture +535570,Agriculture,Agriculture +535567,Agriculture,Agriculture +535563,Agriculture,Agriculture +535558,Agriculture,Agriculture +535553,Agriculture,Agriculture +535531,Agriculture,Agriculture +535420,Agriculture,Agriculture +535416,Agriculture,Agriculture +535406,Agriculture,Agriculture +535401,Agriculture,Agriculture +535389,Agriculture,Agriculture +535386,Agriculture,Agriculture +535381,Agriculture,Agriculture +535373,Agriculture,Agriculture +535370,Agriculture,Agriculture +535367,Agriculture,Agriculture +535349,Agriculture,Agriculture +535348,Agriculture,Agriculture +535346,Agriculture,Agriculture +535341,Agriculture,Agriculture +535327,Agriculture,Agriculture +535323,Agriculture,Agriculture +535311,Agriculture,Agriculture +532098,Agriculture,Agriculture +532096,Agriculture,Agriculture +532095,Agriculture,Agriculture +532094,Agriculture,Agriculture +532092,Agriculture,Agriculture +532078,Agriculture,Agriculture +532071,Agriculture,Agriculture +532069,Agriculture,Agriculture +532062,Agriculture,Agriculture +532059,Agriculture,Agriculture +530045,Agriculture,Agriculture +530044,Agriculture,Agriculture +530043,Agriculture,Agriculture +530042,Agriculture,Agriculture +530041,Agriculture,Agriculture +530040,Agriculture,Agriculture +530039,Agriculture,Agriculture +530038,Agriculture,Agriculture +530037,Agriculture,Agriculture +530036,Agriculture,Agriculture +530035,Agriculture,Agriculture +530034,Agriculture,Agriculture +530033,Agriculture,Agriculture +530032,Agriculture,Agriculture +530030,Agriculture,Agriculture +530029,Agriculture,Agriculture +530028,Agriculture,Agriculture +530027,Agriculture,Agriculture +530026,Agriculture,Agriculture +530024,Agriculture,Agriculture +530023,Agriculture,Agriculture +530022,Agriculture,Agriculture +530021,Agriculture,Agriculture +530020,Agriculture,Agriculture +530019,Agriculture,Agriculture +525840,Agriculture,Agriculture +525838,Agriculture,Agriculture +525832,Agriculture,Agriculture +525826,Agriculture,Agriculture +525823,Agriculture,Agriculture +525819,Agriculture,Agriculture +525818,Agriculture,Agriculture +522188,Agriculture,Agriculture +522187,Agriculture,Agriculture +522186,Agriculture,Agriculture +522185,Agriculture,Agriculture +522178,Agriculture,Agriculture +522177,Agriculture,Agriculture +491623,Education,Education +491622,Education,Education +542060,Education,Education +542059,Education,Education +542058,Education,Education +542057,Education,Education +542056,Education,Education +542055,Education,Education +542054,Education,Education +542053,Education,Education +542051,Education,Education +542050,Education,Education +542048,Education,Education +542047,Education,Education +542046,Education,Education +542045,Education,Education +542044,Education,Education +542043,Education,Education +542041,Education,Education +542040,Education,Education +542037,Education,Education +542036,Education,Education +542035,Education,Education +542032,Education,Education +542031,Education,Education +542030,Education,Education +542029,Education,Education +542027,Education,Education +538691,Education,Education +538690,Education,Education +538689,Education,Education +538688,Education,Education +538687,Education,Education +538686,Education,Education +538685,Education,Education +538684,Education,Education +538683,Education,Education +538682,Education,Education +538681,Education,Education +538680,Education,Education +538679,Education,Education +538678,Education,Education +538676,Education,Education +538675,Education,Education +538674,Education,Education +538673,Education,Education +538672,Education,Education +535830,Education,Education +535820,Education,Education +535819,Education,Education +535817,Education,Education +535816,Education,Education +535815,Education,Education +535814,Education,Education +535812,Education,Education +535811,Education,Education +535807,Education,Education +535805,Education,Education +535588,Education,Education +535577,Education,Education +535573,Education,Education +535570,Education,Education +535567,Education,Education +535563,Education,Education +535558,Education,Education +535553,Education,Education +535531,Education,Education +535420,Education,Education +535416,Education,Education +535406,Education,Education +535401,Education,Education +535396,Education,Education +535393,Education,Education +535389,Education,Education +535386,Education,Education +535381,Education,Education +535373,Education,Education +535370,Education,Education +535367,Education,Education +535349,Education,Education +535348,Education,Education +535346,Education,Education +535341,Education,Education +535327,Education,Education +535323,Education,Education +535311,Education,Education +532098,Education,Education +532096,Education,Education +532095,Education,Education +532094,Education,Education +532092,Education,Education +532078,Education,Education +532071,Education,Education +532069,Education,Education +532062,Education,Education +532059,Education,Education +530045,Education,Education +530044,Education,Education +530043,Education,Education +530042,Education,Education +530041,Education,Education +530040,Education,Education +530039,Education,Education +530038,Education,Education +530037,Education,Education +530036,Education,Education +530035,Education,Education +530034,Education,Education +530033,Education,Education +530032,Education,Education +530030,Education,Education +530029,Education,Education +530028,Education,Education +530027,Education,Education +530026,Education,Education +530025,Education,Education +530024,Education,Education +530023,Education,Education +530022,Education,Education +530021,Education,Education +530020,Education,Education +530019,Education,Education +526821,Education,Education +526817,Education,Education +525851,Education,Education +525850,Education,Education +525849,Education,Education +525847,Education,Education +525846,Education,Education +525845,Education,Education +525843,Education,Education +525842,Education,Education +525841,Education,Education +525840,Education,Education +525838,Education,Education +525834,Education,Education +525832,Education,Education +525826,Education,Education +525823,Education,Education +525819,Education,Education +525818,Education,Education +525817,Education,Education +525815,Education,Education +525803,Education,Education +525801,Education,Education +525799,Education,Education +525794,Education,Education +525791,Education,Education +522188,Education,Education +522187,Education,Education +522186,Education,Education +522185,Education,Education +522178,Education,Education +522177,Education,Education +522176,Education,Education +522173,Education,Education +522168,Education,Education +520117,Education,Education +520116,Education,Education +520115,Education,Education +520114,Education,Education +520113,Education,Education +520112,Education,Education +520111,Education,Education +520110,Education,Education +517365,Education,Education +516474,Education,Education +516472,Education,Education +515046,Education,Education +515045,Education,Education +512047,Education,Education +512046,Education,Education +506512,Education,Education +506508,Education,Education +505991,Education,Education +505990,Education,Education +494792,Education,Education +494790,Education,Education +491653,Education,Education +491650,Education,Education +491648,Education,Education +491638,Education,Education +491635,Education,Education +491633,Education,Education +491629,Education,Education +491626,Education,Education +483972,Budget,Budget +483972,Economic Development,Economic Development +483972,Energy,Energy +483972,Environment,Environment +485035,Economic Development,Economic Development +485012,Economic Development,Economic Development +511346,Economic Development,Economic Development +511344,Economic Development,Economic Development +511285,Economic Development,Economic Development +511280,Economic Development,Economic Development +500276,Economic Development,Economic Development +500264,Economic Development,Economic Development +500263,Economic Development,Economic Development +496263,Economic Development,Economic Development +496262,Economic Development,Economic Development +492145,Economic Development,Economic Development +492143,Economic Development,Economic Development +492142,Economic Development,Economic Development +492141,Economic Development,Economic Development +488785,Economic Development,Economic Development +488784,Economic Development,Economic Development +485075,Economic Development,Economic Development +485070,Economic Development,Economic Development +485066,Economic Development,Economic Development +485948,International Trade,International Trade +483911,International Trade,International Trade +488662,International Trade,International Trade +485948,Economic Development,Economic Development +483911,Economic Development,Economic Development +488662,Economic Development,Economic Development +522453,Health,Health +503563,Economic Development,Economic Development +503563,Government Procurement,Government Procurement +503563,Health,Health +481692,Sports,Sports +481691,Sports,Sports +511807,Sports,Sports +496356,Sports,Sports +492092,Sports,Sports +492071,Sports,Sports +481692,Tourism,Tourism +481691,Tourism,Tourism +496356,Tourism,Tourism +492092,Tourism,Tourism +492071,Tourism,Tourism +502450,Agriculture,Agriculture +538581,Fisheries,Fisheries +494617,Taxation and Finance,Taxation and Finance +488859,Taxation and Finance,Taxation and Finance +502462,Taxation and Finance,Taxation and Finance +484072,Research and Development,Research and Development +484071,Research and Development,Research and Development +503441,Research and Development,Research and Development +500146,Research and Development,Research and Development +494207,Research and Development,Research and Development +489335,Research and Development,Research and Development +484093,Research and Development,Research and Development +484076,Research and Development,Research and Development +484075,Research and Development,Research and Development +489333,Research and Development,Research and Development +489331,Research and Development,Research and Development +484660,International Trade,International Trade +481989,International Trade,International Trade +484068,Research and Development,Research and Development +484066,Research and Development,Research and Development +528148,Research and Development,Research and Development +526576,Research and Development,Research and Development +524721,Research and Development,Research and Development +516996,Research and Development,Research and Development +516994,Research and Development,Research and Development +516271,Research and Development,Research and Development +516261,Research and Development,Research and Development +514490,Research and Development,Research and Development +514340,Research and Development,Research and Development +514316,Research and Development,Research and Development +509347,Research and Development,Research and Development +494206,Research and Development,Research and Development +494204,Research and Development,Research and Development +494203,Research and Development,Research and Development +492230,Research and Development,Research and Development +492229,Research and Development,Research and Development +489337,Research and Development,Research and Development +489332,Research and Development,Research and Development +489328,Research and Development,Research and Development +489325,Research and Development,Research and Development +486147,Research and Development,Research and Development +486146,Research and Development,Research and Development +486144,Research and Development,Research and Development +486143,Research and Development,Research and Development +486141,Research and Development,Research and Development +484098,Research and Development,Research and Development +484097,Research and Development,Research and Development +484095,Research and Development,Research and Development +482002,Environment,Environment +481996,Environment,Environment +513097,Environment,Environment +513096,Environment,Environment +511465,Environment,Environment +511464,Environment,Environment +510892,Environment,Environment +508172,Environment,Environment +508166,Environment,Environment +496025,Environment,Environment +493316,Environment,Environment +488095,Environment,Environment +500058,Budget,Budget +500057,Budget,Budget +496564,Budget,Budget +494345,Budget,Budget +491419,Budget,Budget +491400,Budget,Budget +491375,Budget,Budget +491084,Budget,Budget +491070,Budget,Budget +485949,Budget,Budget +485667,Budget,Budget +483559,Budget,Budget +483118,Budget,Budget +482834,Budget,Budget +482739,Budget,Budget +509497,Budget,Budget +509495,Budget,Budget +540689,Education,Education +540688,Education,Education +523649,Education,Education +516390,Education,Education +516388,Education,Education +516385,Education,Education +500058,Education,Education +500057,Education,Education +491400,Education,Education +491084,Education,Education +491070,Education,Education +485949,Education,Education +485667,Education,Education +483559,Education,Education +494345,Employment and Training,Employment and Training +491419,Employment and Training,Employment and Training +491400,Employment and Training,Employment and Training +491375,Employment and Training,Employment and Training +491084,Employment and Training,Employment and Training +491070,Employment and Training,Employment and Training +485949,Employment and Training,Employment and Training +485667,Employment and Training,Employment and Training +483559,Employment and Training,Employment and Training +482834,Employment and Training,Employment and Training +540689,Employment and Training,Employment and Training +523649,Employment and Training,Employment and Training +516390,Employment and Training,Employment and Training +516388,Employment and Training,Employment and Training +516385,Employment and Training,Employment and Training +509497,Employment and Training,Employment and Training +500059,Employment and Training,Employment and Training +485491,Economic Development,Economic Development +485491,Health,Health +496725,Economic Development,Economic Development +496725,Infrastructure,Infrastructure +482477,Environment,Environment +500056,Defence,Defence +484777,Employment and Training,Employment and Training +483113,Employment and Training,Employment and Training +500812,Employment and Training,Employment and Training +500439,Employment and Training,Employment and Training +500056,Employment and Training,Employment and Training +499935,Employment and Training,Employment and Training +494861,Employment and Training,Employment and Training +491967,Employment and Training,Employment and Training +489364,Employment and Training,Employment and Training +485414,Employment and Training,Employment and Training +483113,Forestry,Forestry +482333,Employment and Training,Employment and Training +482329,Employment and Training,Employment and Training +540724,Employment and Training,Employment and Training +495372,Employment and Training,Employment and Training +482336,Employment and Training,Employment and Training +491468,Research and Development,Research and Development +485024,Research and Development,Research and Development +508812,Research and Development,Research and Development +491468,Employment and Training,Employment and Training +485024,Employment and Training,Employment and Training +508812,Employment and Training,Employment and Training +491468,Security,Security +485024,Security,Security +491529,Health,Health +485338,Health,Health +491529,Industry,Industry +485338,Industry,Industry +491564,Industry,Industry +491529,Regional Development,Regional Development +502223,Economic Development,Economic Development +502222,Economic Development,Economic Development +482443,Economic Development,Economic Development +540005,Economic Development,Economic Development +512722,Economic Development,Economic Development +505306,Economic Development,Economic Development +485309,Agriculture,Agriculture +485456,Health,Health +483562,Health,Health +519080,Health,Health +519079,Health,Health +515695,Health,Health +515694,Health,Health +501249,Health,Health +501246,Health,Health +501241,Health,Health +494164,Health,Health +488627,Health,Health +485456,Research and Development,Research and Development +483562,Research and Development,Research and Development +519080,Research and Development,Research and Development +519079,Research and Development,Research and Development +515695,Research and Development,Research and Development +515694,Research and Development,Research and Development +501249,Research and Development,Research and Development +501246,Research and Development,Research and Development +501241,Research and Development,Research and Development +494164,Research and Development,Research and Development +488627,Research and Development,Research and Development +516639,Economic Development,Economic Development +507433,Economic Development,Economic Development +483065,Forestry,Forestry +482596,Forestry,Forestry +482612,Regional Development,Regional Development +482600,Regional Development,Regional Development +526816,Regional Development,Regional Development +526815,Regional Development,Regional Development +524143,Regional Development,Regional Development +524142,Regional Development,Regional Development +524007,Regional Development,Regional Development +524006,Regional Development,Regional Development +524005,Regional Development,Regional Development +524004,Regional Development,Regional Development +523899,Regional Development,Regional Development +523416,Regional Development,Regional Development +523415,Regional Development,Regional Development +523414,Regional Development,Regional Development +520674,Regional Development,Regional Development +518900,Regional Development,Regional Development +518899,Regional Development,Regional Development +518896,Regional Development,Regional Development +518895,Regional Development,Regional Development +518893,Regional Development,Regional Development +518889,Regional Development,Regional Development +518888,Regional Development,Regional Development +518887,Regional Development,Regional Development +518885,Regional Development,Regional Development +518884,Regional Development,Regional Development +518883,Regional Development,Regional Development +518881,Regional Development,Regional Development +518880,Regional Development,Regional Development +518879,Regional Development,Regional Development +518878,Regional Development,Regional Development +515078,Regional Development,Regional Development +514865,Regional Development,Regional Development +513710,Regional Development,Regional Development +513383,Regional Development,Regional Development +513382,Regional Development,Regional Development +513379,Regional Development,Regional Development +513374,Regional Development,Regional Development +497641,Regional Development,Regional Development +496911,Regional Development,Regional Development +496908,Regional Development,Regional Development +518884,Taxation and Finance,Taxation and Finance +482600,Taxation and Finance,Taxation and Finance +524143,Taxation and Finance,Taxation and Finance +524142,Taxation and Finance,Taxation and Finance +524007,Taxation and Finance,Taxation and Finance +524005,Taxation and Finance,Taxation and Finance +524004,Taxation and Finance,Taxation and Finance +523899,Taxation and Finance,Taxation and Finance +523416,Taxation and Finance,Taxation and Finance +523415,Taxation and Finance,Taxation and Finance +523414,Taxation and Finance,Taxation and Finance +520674,Taxation and Finance,Taxation and Finance +518900,Taxation and Finance,Taxation and Finance +518884,Transportation,Transportation +518881,Transportation,Transportation +482600,Transportation,Transportation +520674,Transportation,Transportation +518889,Transportation,Transportation +482820,Government Procurement,Government Procurement +482955,Health,Health +482660,Health,Health +486103,Budget,Budget +485615,Budget,Budget +494019,Budget,Budget +494017,Budget,Budget +492419,Budget,Budget +492417,Budget,Budget +489008,Budget,Budget +489007,Budget,Budget +488558,Budget,Budget +488094,Budget,Budget +483853,Environment,Environment +483853,Government Procurement,Government Procurement +483853,Health,Health +483853,Municipalities,Municipalities +483925,Infrastructure,Infrastructure +496288,International Relations,International Relations +488544,International Relations,International Relations +486460,International Relations,International Relations +486459,International Relations,International Relations +486458,International Relations,International Relations +485476,International Relations,International Relations +483342,International Relations,International Relations +483341,International Relations,International Relations +512283,International Relations,International Relations +512282,International Relations,International Relations +510861,International Relations,International Relations +509070,International Relations,International Relations +500236,International Relations,International Relations +499831,International Relations,International Relations +499266,International Relations,International Relations +494706,Agriculture,Agriculture +493758,Agriculture,Agriculture +500302,Agriculture,Agriculture +485552,Health,Health +483665,Health,Health +483003,Health,Health +482988,Health,Health +483003,Immigration,Immigration +482988,Immigration,Immigration +485552,Immigration,Immigration +483003,Sports,Sports +482988,Sports,Sports +494508,Sports,Sports +488823,Sports,Sports +485552,Sports,Sports +483003,Transportation,Transportation +482988,Transportation,Transportation +485552,Transportation,Transportation +488255,Budget,Budget +485326,Budget,Budget +508892,Budget,Budget +505192,Budget,Budget +499553,Budget,Budget +499506,Budget,Budget +495580,Budget,Budget +493531,Budget,Budget +493529,Budget,Budget +488258,Budget,Budget +488257,Budget,Budget +485326,Economic Development,Economic Development +508892,Economic Development,Economic Development +505192,Economic Development,Economic Development +499553,Economic Development,Economic Development +499506,Economic Development,Economic Development +495580,Economic Development,Economic Development +493531,Economic Development,Economic Development +493529,Economic Development,Economic Development +491567,Economic Development,Economic Development +491546,Economic Development,Economic Development +488258,Economic Development,Economic Development +488257,Economic Development,Economic Development +488256,Economic Development,Economic Development +488255,Health,Health +485326,Health,Health +508892,Health,Health +505192,Health,Health +499553,Health,Health +499506,Health,Health +495580,Health,Health +493531,Health,Health +493529,Health,Health +488258,Health,Health +488257,Health,Health +488255,Industry,Industry +485326,Industry,Industry +508892,Industry,Industry +505192,Industry,Industry +499553,Industry,Industry +499506,Industry,Industry +495580,Industry,Industry +493531,Industry,Industry +493529,Industry,Industry +488258,Industry,Industry +488257,Industry,Industry +488255,Intellectual Property,Intellectual Property +485326,Intellectual Property,Intellectual Property +508892,Intellectual Property,Intellectual Property +505192,Intellectual Property,Intellectual Property +499553,Intellectual Property,Intellectual Property +499506,Intellectual Property,Intellectual Property +495580,Intellectual Property,Intellectual Property +493531,Intellectual Property,Intellectual Property +493529,Intellectual Property,Intellectual Property +488258,Intellectual Property,Intellectual Property +488257,Intellectual Property,Intellectual Property +508892,Research and Development,Research and Development +505192,Research and Development,Research and Development +499553,Research and Development,Research and Development +499506,Research and Development,Research and Development +495580,Research and Development,Research and Development +493531,Research and Development,Research and Development +493529,Research and Development,Research and Development +488258,Research and Development,Research and Development +488257,Research and Development,Research and Development +488256,Research and Development,Research and Development +488255,Research and Development,Research and Development +486773,Economic Development,Economic Development +486771,Economic Development,Economic Development +523561,Economic Development,Economic Development +521895,Economic Development,Economic Development +521893,Economic Development,Economic Development +521888,Economic Development,Economic Development +486781,Economic Development,Economic Development +486779,Economic Development,Economic Development +486778,Economic Development,Economic Development +486777,Economic Development,Economic Development +486775,Economic Development,Economic Development +483917,Regional Development,Regional Development +483918,Tourism,Tourism +483917,Tourism,Tourism +497796,Tourism,Tourism +487496,Economic Development,Economic Development +483917,Economic Development,Economic Development +482826,Economic Development,Economic Development +492595,Environment,Environment +490386,Environment,Environment +524746,Environment,Environment +522366,Environment,Environment +522107,Environment,Environment +507127,Environment,Environment +501371,Environment,Environment +493532,Economic Development,Economic Development +493532,Energy,Energy +493532,Industry,Industry +493532,Infrastructure,Infrastructure +493532,International Trade,International Trade +493532,Regional Development,Regional Development +486167,Climate,Climate +483232,Climate,Climate +486167,Economic Development,Economic Development +483232,Economic Development,Economic Development +486167,Environment,Environment +483232,Environment,Environment +493990,Economic Development,Economic Development +493985,Economic Development,Economic Development +542426,Economic Development,Economic Development +516534,Economic Development,Economic Development +506119,Economic Development,Economic Development +503427,Economic Development,Economic Development +503274,Economic Development,Economic Development +496883,Economic Development,Economic Development +493985,Employment and Training,Employment and Training +542426,Employment and Training,Employment and Training +496883,Employment and Training,Employment and Training +494158,Employment and Training,Employment and Training +493990,Environment,Environment +493985,Environment,Environment +542426,Environment,Environment +506119,Environment,Environment +503427,Environment,Environment +503274,Environment,Environment +496883,Environment,Environment +493990,Infrastructure,Infrastructure +493985,Infrastructure,Infrastructure +542426,Infrastructure,Infrastructure +496883,Infrastructure,Infrastructure +506119,Mining,Mining +503427,Mining,Mining +503274,Mining,Mining +496883,Mining,Mining +494158,Mining,Mining +493990,Mining,Mining +493985,Mining,Mining +493990,Regional Development,Regional Development +493985,Regional Development,Regional Development +542426,Regional Development,Regional Development +506119,Regional Development,Regional Development +503427,Regional Development,Regional Development +503274,Regional Development,Regional Development +496883,Regional Development,Regional Development +496569,Employment and Training,Employment and Training +494788,Employment and Training,Employment and Training +494352,Employment and Training,Employment and Training +491059,Employment and Training,Employment and Training +484451,Employment and Training,Employment and Training +482724,Employment and Training,Employment and Training +482721,Employment and Training,Employment and Training +483858,Environment,Environment +483858,Government Procurement,Government Procurement +483858,Health,Health +483858,Industry,Industry +483858,Municipalities,Municipalities +483853,Research and Development,Research and Development +483858,Small Business,Small Business +483858,Transportation,Transportation +485704,Health,Health +482632,International Trade,International Trade +504217,Budget,Budget +512115,Infrastructure,Infrastructure +496294,International Relations,International Relations +498944,Agriculture,Agriculture +494508,Health,Health +483665,Immigration,Immigration +483665,Sports,Sports +483665,Transportation,Transportation +488256,Budget,Budget +488255,Economic Development,Economic Development +488256,Health,Health +488256,Industry,Industry +488256,Intellectual Property,Intellectual Property +485326,Research and Development,Research and Development +486774,Economic Development,Economic Development +483918,Regional Development,Regional Development +487496,Tourism,Tourism +497796,Economic Development,Economic Development +489075,Environment,Environment +485531,Economic Development,Economic Development +498108,Environment,Environment +493533,Economic Development,Economic Development +493533,Energy,Energy +493533,Industry,Industry +493533,Infrastructure,Infrastructure +493533,International Trade,International Trade +493533,Regional Development,Regional Development +486170,Climate,Climate +486170,Economic Development,Economic Development +486170,Environment,Environment +494158,Economic Development,Economic Development +493990,Employment and Training,Employment and Training +494158,Environment,Environment +494158,Infrastructure,Infrastructure +542426,Mining,Mining +494158,Regional Development,Regional Development +497090,Employment and Training,Employment and Training +506646,Health,Health +510077,Regional Development,Regional Development +482764,Budget,Budget +496737,Economic Development,Economic Development +500560,Regional Development,Regional Development +540524,Health,Health +495446,International Trade,International Trade +495446,Small Business,Small Business +541744,Immigration,Immigration +483370,Energy,Energy +485670,Economic Development,Economic Development +485669,Municipalities,Municipalities +483370,Infrastructure,Infrastructure +500343,Government Procurement,Government Procurement +500343,Health,Health +500343,Industry,Industry +483850,Infrastructure,Infrastructure +483850,Regional Development,Regional Development +483850,Taxation and Finance,Taxation and Finance +483850,Consumer Issues,Consumer Issues +483850,Industry,Industry +483850,Budget,Budget +483850,Climate,Climate +483850,Fisheries,Fisheries +483850,Energy,Energy +483850,Economic Development,Economic Development +485381,Economic Development,Economic Development +485366,Energy,Energy +485381,Infrastructure,Infrastructure +485463,Government Procurement,Government Procurement +485463,Health,Health +494016,Agriculture,Agriculture +494020,Agriculture,Agriculture +498928,International Relations,International Relations +483578,Taxation and Finance,Taxation and Finance +489418,Mining,Mining +483280,Taxation and Finance,Taxation and Finance +508141,Health,Health +485334,Budget,Budget +485334,Economic Development,Economic Development +485334,Health,Health +485334,Industry,Industry +485334,Intellectual Property,Intellectual Property +485334,Research and Development,Research and Development +497475,Health,Health +497113,Justice and Law Enforcement,Justice and Law Enforcement +502856,Environment,Environment +502856,Industry,Industry +485597,Health,Health +485597,Research and Development,Research and Development +485675,Health,Health +489385,Intellectual Property,Intellectual Property +489385,International Trade,International Trade +489385,Health,Health +489385,Economic Development,Economic Development +489385,Taxation and Finance,Taxation and Finance +489385,Industry,Industry +483056,Health,Health +486033,Agriculture,Agriculture +486480,Consumer Issues,Consumer Issues +509340,Health,Health +486033,Industry,Industry +483368,Internal Trade,Internal Trade +483368,Small Business,Small Business +500163,Economic Development,Economic Development +495482,Health,Health +489486,Consumer Issues,Consumer Issues +489486,Agriculture,Agriculture +490869,Consumer Issues,Consumer Issues +485840,Industry,Industry +490870,Intellectual Property,Intellectual Property +485840,Privacy and Access to Information,Privacy and Access to Information +495779,Security,Security +491900,Economic Development,Economic Development +490231,Employment and Training,Employment and Training +486418,Labour,Labour +486414,Tourism,Tourism +505642,Economic Development,Economic Development +486406,Small Business,Small Business +482944,Employment and Training,Employment and Training +483992,Environment,Environment +486336,Economic Development,Economic Development +482954,Environment,Environment +483140,Transportation,Transportation +485990,Budget,Budget +491616,Budget,Budget +488653,Budget,Budget +530035,Budget,Budget +523103,Intellectual Property,Intellectual Property +485999,Economic Development,Economic Development +483579,Employment and Training,Employment and Training +485999,Taxation and Finance,Taxation and Finance +488521,Infrastructure,Infrastructure +485998,Budget,Budget +485593,Health,Health +497027,Municipalities,Municipalities +483579,Regional Development,Regional Development +483579,Transportation,Transportation +483579,Energy,Energy +483092,Infrastructure,Infrastructure +502959,Consumer Issues,Consumer Issues +511865,Housing,Housing +502959,Industry,Industry +511865,Municipalities,Municipalities +483063,Financial Institutions,Financial Institutions +483063,Transportation,Transportation +483101,Budget,Budget +483116,Health,Health +485666,Budget,Budget +485666,Education,Education +532996,Employment and Training,Employment and Training +483525,Economic Development,Economic Development +483129,Security,Security +488700,Regional Development,Regional Development +489324,Budget,Budget +500037,Housing,Housing +500156,Taxation and Finance,Taxation and Finance +486689,Justice and Law Enforcement,Justice and Law Enforcement +488630,Religion,Religion +515401,Climate,Climate +490560,Government Procurement,Government Procurement +483172,Climate,Climate +483173,Climate,Climate +483174,Climate,Climate +488432,Consumer Issues,Consumer Issues +488432,Economic Development,Economic Development +483479,Taxation and Finance,Taxation and Finance +488432,Transportation,Transportation +489283,Agriculture,Agriculture +489281,Economic Development,Economic Development +506683,Environment,Environment +489283,Industry,Industry +494755,Infrastructure,Infrastructure +494755,Small Business,Small Business +483217,Budget,Budget +483217,Employment and Training,Employment and Training +485516,Economic Development,Economic Development +485516,Health,Health +486036,Industry,Industry +486087,International Trade,International Trade +506412,Research and Development,Research and Development +486211,Economic Development,Economic Development +486211,Small Business,Small Business +494018,Agriculture,Agriculture +528660,Taxation and Finance,Taxation and Finance +483200,Taxation and Finance,Taxation and Finance +483261,Taxation and Finance,Taxation and Finance +483262,Taxation and Finance,Taxation and Finance +486013,Religion,Religion +486013,Constitutional Issues,Constitutional Issues +484154,Budget,Budget +486016,Immigration,Immigration +513195,International Relations,International Relations +502093,Health,Health +483303,Defence,Defence +483303,Health,Health +485015,Security,Security +483353,Government Procurement,Government Procurement +519152,Climate,Climate +521884,Defence,Defence +519537,Economic Development,Economic Development +486450,Employment and Training,Employment and Training +500843,Employment and Training,Employment and Training +500295,Employment and Training,Employment and Training +499889,Employment and Training,Employment and Training +499766,Employment and Training,Employment and Training +497100,Employment and Training,Employment and Training +497301,Health,Health +482722,Health,Health +496737,Regional Development,Regional Development +495445,International Trade,International Trade +489058,International Trade,International Trade +538163,International Trade,International Trade +533449,International Trade,International Trade +533448,International Trade,International Trade +495445,Small Business,Small Business +489058,Small Business,Small Business +538163,Small Business,Small Business +483365,Energy,Energy +482823,Energy,Energy +485672,Energy,Energy +485671,Energy,Energy +485670,Energy,Energy +485669,Energy,Energy +485668,Energy,Energy +483370,Economic Development,Economic Development +482823,Economic Development,Economic Development +485672,Economic Development,Economic Development +485671,Economic Development,Economic Development +483365,Infrastructure,Infrastructure +482823,Infrastructure,Infrastructure +485671,Infrastructure,Infrastructure +485669,Infrastructure,Infrastructure +485668,Infrastructure,Infrastructure +500342,Government Procurement,Government Procurement +499513,Government Procurement,Government Procurement +500342,Health,Health +500342,Industry,Industry +499513,Industry,Industry +485374,Economic Development,Economic Development +483155,Energy,Energy +483152,Energy,Energy +485374,Energy,Energy +483106,Government Procurement,Government Procurement +483106,Health,Health +489734,Agriculture,Agriculture +483046,Agriculture,Agriculture +489733,Agriculture,Agriculture +483047,Agriculture,Agriculture +489418,International Relations,International Relations +488841,International Relations,International Relations +485995,International Relations,International Relations +485994,International Relations,International Relations +485993,International Relations,International Relations +485660,International Relations,International Relations +483578,International Relations,International Relations +483578,Mining,Mining +483279,Taxation and Finance,Taxation and Finance +482882,Taxation and Finance,Taxation and Finance +504712,Health,Health +484473,Health,Health +497474,Health,Health +497472,Health,Health +503805,Health,Health +503804,Health,Health +497111,Justice and Law Enforcement,Justice and Law Enforcement +497110,Justice and Law Enforcement,Justice and Law Enforcement +543233,Justice and Law Enforcement,Justice and Law Enforcement +541285,Justice and Law Enforcement,Justice and Law Enforcement +515240,Justice and Law Enforcement,Justice and Law Enforcement +509942,Justice and Law Enforcement,Justice and Law Enforcement +497473,Justice and Law Enforcement,Justice and Law Enforcement +497471,Justice and Law Enforcement,Justice and Law Enforcement +483955,Health,Health +483098,Health,Health +483955,Research and Development,Research and Development +482900,Health,Health +489383,Intellectual Property,Intellectual Property +489382,Intellectual Property,Intellectual Property +516865,Intellectual Property,Intellectual Property +510112,Intellectual Property,Intellectual Property +506724,Intellectual Property,Intellectual Property +506723,Intellectual Property,Intellectual Property +503636,Intellectual Property,Intellectual Property +497209,Intellectual Property,Intellectual Property +497206,Intellectual Property,Intellectual Property +489383,International Trade,International Trade +489382,International Trade,International Trade +516865,International Trade,International Trade +497209,International Trade,International Trade +497206,International Trade,International Trade +489383,Health,Health +489382,Health,Health +516865,Health,Health +510112,Health,Health +506724,Health,Health +506723,Health,Health +503636,Health,Health +497209,Health,Health +497206,Health,Health +489383,Economic Development,Economic Development +489382,Economic Development,Economic Development +516865,Economic Development,Economic Development +510112,Economic Development,Economic Development +506724,Economic Development,Economic Development +506723,Economic Development,Economic Development +503636,Economic Development,Economic Development +497209,Economic Development,Economic Development +497206,Economic Development,Economic Development +489383,Taxation and Finance,Taxation and Finance +489382,Taxation and Finance,Taxation and Finance +516865,Taxation and Finance,Taxation and Finance +506724,Taxation and Finance,Taxation and Finance +506723,Taxation and Finance,Taxation and Finance +497209,Taxation and Finance,Taxation and Finance +497206,Taxation and Finance,Taxation and Finance +489383,Industry,Industry +489382,Industry,Industry +516865,Industry,Industry +510112,Industry,Industry +506724,Industry,Industry +506723,Industry,Industry +503636,Industry,Industry +497209,Industry,Industry +497206,Industry,Industry +483368,Agriculture,Agriculture +486033,Consumer Issues,Consumer Issues +483368,Consumer Issues,Consumer Issues +522056,Consumer Issues,Consumer Issues +509776,Consumer Issues,Consumer Issues +509340,Consumer Issues,Consumer Issues +509261,Consumer Issues,Consumer Issues +509260,Consumer Issues,Consumer Issues +500068,Consumer Issues,Consumer Issues +509261,Health,Health +509260,Health,Health +522056,Health,Health +483368,Industry,Industry +522056,Industry,Industry +509776,Industry,Industry +509340,Industry,Industry +509261,Industry,Industry +509260,Industry,Industry +500068,Industry,Industry +486480,Industry,Industry +497301,Economic Development,Economic Development +489483,Consumer Issues,Consumer Issues +488302,Consumer Issues,Consumer Issues +489604,Consumer Issues,Consumer Issues +489491,Consumer Issues,Consumer Issues +489489,Consumer Issues,Consumer Issues +489488,Consumer Issues,Consumer Issues +489487,Consumer Issues,Consumer Issues +489483,Agriculture,Agriculture +488302,Agriculture,Agriculture +489604,Agriculture,Agriculture +489491,Agriculture,Agriculture +489489,Agriculture,Agriculture +489488,Agriculture,Agriculture +489487,Agriculture,Agriculture +490868,Consumer Issues,Consumer Issues +490865,Consumer Issues,Consumer Issues +501541,Consumer Issues,Consumer Issues +495781,Consumer Issues,Consumer Issues +495780,Consumer Issues,Consumer Issues +495779,Consumer Issues,Consumer Issues +495778,Consumer Issues,Consumer Issues +495776,Consumer Issues,Consumer Issues +490870,Consumer Issues,Consumer Issues +485839,Industry,Industry +485836,Industry,Industry +495780,Industry,Industry +495776,Industry,Industry +490870,Industry,Industry +490869,Industry,Industry +490868,Industry,Industry +490865,Industry,Industry +486410,Industry,Industry +486409,Industry,Industry +486407,Industry,Industry +486406,Industry,Industry +486405,Industry,Industry +485849,Industry,Industry +485848,Industry,Industry +485846,Industry,Industry +485844,Industry,Industry +485843,Industry,Industry +485841,Industry,Industry +490869,Intellectual Property,Intellectual Property +490865,Intellectual Property,Intellectual Property +495780,Intellectual Property,Intellectual Property +495776,Intellectual Property,Intellectual Property +485839,Privacy and Access to Information,Privacy and Access to Information +485836,Privacy and Access to Information,Privacy and Access to Information +537367,Privacy and Access to Information,Privacy and Access to Information +521687,Privacy and Access to Information,Privacy and Access to Information +512628,Privacy and Access to Information,Privacy and Access to Information +512261,Privacy and Access to Information,Privacy and Access to Information +507348,Privacy and Access to Information,Privacy and Access to Information +501543,Privacy and Access to Information,Privacy and Access to Information +497931,Privacy and Access to Information,Privacy and Access to Information +497930,Privacy and Access to Information,Privacy and Access to Information +495781,Privacy and Access to Information,Privacy and Access to Information +495779,Privacy and Access to Information,Privacy and Access to Information +495778,Privacy and Access to Information,Privacy and Access to Information +495776,Privacy and Access to Information,Privacy and Access to Information +490870,Privacy and Access to Information,Privacy and Access to Information +490869,Privacy and Access to Information,Privacy and Access to Information +490865,Privacy and Access to Information,Privacy and Access to Information +486410,Privacy and Access to Information,Privacy and Access to Information +486407,Privacy and Access to Information,Privacy and Access to Information +486406,Privacy and Access to Information,Privacy and Access to Information +486405,Privacy and Access to Information,Privacy and Access to Information +485849,Privacy and Access to Information,Privacy and Access to Information +485848,Privacy and Access to Information,Privacy and Access to Information +485846,Privacy and Access to Information,Privacy and Access to Information +485844,Privacy and Access to Information,Privacy and Access to Information +485843,Privacy and Access to Information,Privacy and Access to Information +485841,Privacy and Access to Information,Privacy and Access to Information +495778,Security,Security +495776,Security,Security +490870,Security,Security +490869,Security,Security +490868,Security,Security +490865,Security,Security +486410,Security,Security +486409,Security,Security +486407,Security,Security +486406,Security,Security +485849,Security,Security +485848,Security,Security +485846,Security,Security +485843,Security,Security +485841,Security,Security +485840,Security,Security +485839,Security,Security +485836,Security,Security +501543,Security,Security +501541,Security,Security +495781,Security,Security +495780,Security,Security +491430,Economic Development,Economic Development +487249,Economic Development,Economic Development +542162,Economic Development,Economic Development +536500,Economic Development,Economic Development +531866,Economic Development,Economic Development +527424,Economic Development,Economic Development +517137,Economic Development,Economic Development +508169,Economic Development,Economic Development +502000,Economic Development,Economic Development +501998,Economic Development,Economic Development +498339,Economic Development,Economic Development +498331,Economic Development,Economic Development +495469,Economic Development,Economic Development +490229,Employment and Training,Employment and Training +486418,Employment and Training,Employment and Training +486413,Tourism,Tourism +486412,Tourism,Tourism +500535,Tourism,Tourism +500533,Tourism,Tourism +497061,Tourism,Tourism +497060,Tourism,Tourism +497059,Tourism,Tourism +497058,Tourism,Tourism +497057,Tourism,Tourism +490231,Tourism,Tourism +490229,Tourism,Tourism +486418,Tourism,Tourism +486417,Tourism,Tourism +486416,Tourism,Tourism +485840,Small Business,Small Business +537367,Small Business,Small Business +486409,Small Business,Small Business +538820,Environment,Environment +495083,Environment,Environment +486335,Economic Development,Economic Development +486334,Economic Development,Economic Development +513754,Economic Development,Economic Development +509893,Economic Development,Economic Development +505170,Economic Development,Economic Development +505167,Economic Development,Economic Development +486341,Economic Development,Economic Development +486338,Economic Development,Economic Development +482955,Transportation,Transportation +485987,Budget,Budget +482957,Budget,Budget +542059,Budget,Budget +542058,Budget,Budget +542056,Budget,Budget +542053,Budget,Budget +542051,Budget,Budget +542046,Budget,Budget +542045,Budget,Budget +542036,Budget,Budget +542035,Budget,Budget +542027,Budget,Budget +538691,Budget,Budget +538688,Budget,Budget +538685,Budget,Budget +535830,Budget,Budget +535819,Budget,Budget +535817,Budget,Budget +535811,Budget,Budget +535805,Budget,Budget +535588,Budget,Budget +535573,Budget,Budget +535553,Budget,Budget +535401,Budget,Budget +535346,Budget,Budget +532094,Budget,Budget +530043,Budget,Budget +530041,Budget,Budget +530032,Budget,Budget +530030,Budget,Budget +530023,Budget,Budget +525847,Budget,Budget +525845,Budget,Budget +525843,Budget,Budget +525842,Budget,Budget +525815,Budget,Budget +525801,Budget,Budget +525794,Budget,Budget +522186,Budget,Budget +522178,Budget,Budget +522177,Budget,Budget +520115,Budget,Budget +517365,Budget,Budget +512046,Budget,Budget +499282,Budget,Budget +494790,Budget,Budget +493800,Budget,Budget +486025,Budget,Budget +482996,Budget,Budget +542057,Budget,Budget +542055,Budget,Budget +542044,Budget,Budget +542030,Budget,Budget +538689,Budget,Budget +538687,Budget,Budget +538678,Budget,Budget +538673,Budget,Budget +535812,Budget,Budget +535570,Budget,Budget +535558,Budget,Budget +535406,Budget,Budget +535396,Budget,Budget +535381,Budget,Budget +535373,Budget,Budget +535370,Budget,Budget +535367,Budget,Budget +535349,Budget,Budget +535323,Budget,Budget +532096,Budget,Budget +530034,Budget,Budget +530027,Budget,Budget +530026,Budget,Budget +530024,Budget,Budget +530020,Budget,Budget +526821,Budget,Budget +526817,Budget,Budget +525851,Budget,Budget +525850,Budget,Budget +525841,Budget,Budget +525840,Budget,Budget +525834,Budget,Budget +525823,Budget,Budget +525791,Budget,Budget +522168,Budget,Budget +520114,Budget,Budget +520112,Budget,Budget +520110,Budget,Budget +516474,Budget,Budget +506510,Budget,Budget +506508,Budget,Budget +494793,Budget,Budget +494792,Budget,Budget +486017,Budget,Budget +482997,Budget,Budget +542050,Budget,Budget +542048,Budget,Budget +542040,Budget,Budget +542037,Budget,Budget +542029,Budget,Budget +538686,Budget,Budget +538680,Budget,Budget +538675,Budget,Budget +535816,Budget,Budget +535815,Budget,Budget +535807,Budget,Budget +535567,Budget,Budget +535563,Budget,Budget +535531,Budget,Budget +535389,Budget,Budget +535386,Budget,Budget +535311,Budget,Budget +532098,Budget,Budget +532092,Budget,Budget +532059,Budget,Budget +530045,Budget,Budget +530044,Budget,Budget +530040,Budget,Budget +530037,Budget,Budget +530036,Budget,Budget +530033,Budget,Budget +530029,Budget,Budget +530025,Budget,Budget +530021,Budget,Budget +530019,Budget,Budget +525846,Budget,Budget +525819,Budget,Budget +525817,Budget,Budget +525803,Budget,Budget +525799,Budget,Budget +522187,Budget,Budget +522176,Budget,Budget +522173,Budget,Budget +520117,Budget,Budget +520116,Budget,Budget +520113,Budget,Budget +520111,Budget,Budget +506511,Budget,Budget +502595,Budget,Budget +499293,Budget,Budget +493799,Budget,Budget +530028,Budget,Budget +530022,Budget,Budget +525849,Budget,Budget +525838,Budget,Budget +525832,Budget,Budget +525826,Budget,Budget +525818,Budget,Budget +522188,Budget,Budget +522185,Budget,Budget +516472,Budget,Budget +515046,Budget,Budget +515045,Budget,Budget +512047,Budget,Budget +506512,Budget,Budget +506509,Budget,Budget +494791,Budget,Budget +494789,Budget,Budget +493796,Budget,Budget +486026,Budget,Budget +482956,Budget,Budget +542060,Budget,Budget +542054,Budget,Budget +542047,Budget,Budget +542043,Budget,Budget +542041,Budget,Budget +542032,Budget,Budget +542031,Budget,Budget +538690,Budget,Budget +538684,Budget,Budget +538683,Budget,Budget +538682,Budget,Budget +538681,Budget,Budget +538679,Budget,Budget +538676,Budget,Budget +538674,Budget,Budget +538672,Budget,Budget +535820,Budget,Budget +535814,Budget,Budget +535577,Budget,Budget +535420,Budget,Budget +535416,Budget,Budget +535393,Budget,Budget +535348,Budget,Budget +535341,Budget,Budget +535327,Budget,Budget +532095,Budget,Budget +532078,Budget,Budget +532071,Budget,Budget +532069,Budget,Budget +532062,Budget,Budget +530042,Budget,Budget +530039,Budget,Budget +530038,Budget,Budget +523092,Intellectual Property,Intellectual Property +520789,Intellectual Property,Intellectual Property +518268,Intellectual Property,Intellectual Property +518266,Intellectual Property,Intellectual Property +515592,Intellectual Property,Intellectual Property +514822,Intellectual Property,Intellectual Property +514056,Intellectual Property,Intellectual Property +508739,Intellectual Property,Intellectual Property +508735,Intellectual Property,Intellectual Property +505653,Intellectual Property,Intellectual Property +505652,Intellectual Property,Intellectual Property +493701,Intellectual Property,Intellectual Property +491710,Intellectual Property,Intellectual Property +491704,Intellectual Property,Intellectual Property +491701,Intellectual Property,Intellectual Property +487768,Intellectual Property,Intellectual Property +543714,Intellectual Property,Intellectual Property +543708,Intellectual Property,Intellectual Property +543705,Intellectual Property,Intellectual Property +538196,Intellectual Property,Intellectual Property +538190,Intellectual Property,Intellectual Property +531943,Intellectual Property,Intellectual Property +531942,Intellectual Property,Intellectual Property +531941,Intellectual Property,Intellectual Property +531938,Intellectual Property,Intellectual Property +529602,Intellectual Property,Intellectual Property +529601,Intellectual Property,Intellectual Property +529600,Intellectual Property,Intellectual Property +529599,Intellectual Property,Intellectual Property +529598,Intellectual Property,Intellectual Property +529597,Intellectual Property,Intellectual Property +529596,Intellectual Property,Intellectual Property +523191,Intellectual Property,Intellectual Property +523188,Intellectual Property,Intellectual Property +523176,Intellectual Property,Intellectual Property +523138,Intellectual Property,Intellectual Property +485998,Economic Development,Economic Development +483579,Economic Development,Economic Development +497027,Economic Development,Economic Development +486001,Economic Development,Economic Development +485998,Taxation and Finance,Taxation and Finance +483579,Taxation and Finance,Taxation and Finance +496594,Taxation and Finance,Taxation and Finance +488521,Taxation and Finance,Taxation and Finance +487224,Taxation and Finance,Taxation and Finance +486001,Taxation and Finance,Taxation and Finance +485593,Infrastructure,Infrastructure +483579,Infrastructure,Infrastructure +503514,Infrastructure,Infrastructure +497027,Infrastructure,Infrastructure +485593,Budget,Budget +483579,Budget,Budget +503514,Budget,Budget +497027,Budget,Budget +496594,Budget,Budget +488521,Budget,Budget +487224,Budget,Budget +486001,Budget,Budget +485999,Budget,Budget +483579,Health,Health +483579,Municipalities,Municipalities +502959,Housing,Housing +511865,Industry,Industry +502959,Municipalities,Municipalities +483114,Health,Health +483672,Budget,Budget +483215,Budget,Budget +509474,Budget,Budget +506163,Budget,Budget +501574,Budget,Budget +500021,Budget,Budget +497936,Budget,Budget +497589,Budget,Budget +496765,Budget,Budget +496461,Budget,Budget +494013,Budget,Budget +493906,Budget,Budget +491010,Budget,Budget +490995,Budget,Budget +490328,Budget,Budget +485783,Budget,Budget +483672,Education,Education +483215,Education,Education +542144,Education,Education +540325,Education,Education +540320,Education,Education +532996,Education,Education +523883,Education,Education +523609,Education,Education +514985,Education,Education +511628,Education,Education +497936,Education,Education +494013,Education,Education +490995,Education,Education +490328,Education,Education +523883,Employment and Training,Employment and Training +523609,Employment and Training,Employment and Training +516063,Employment and Training,Employment and Training +513515,Employment and Training,Employment and Training +509474,Employment and Training,Employment and Training +501574,Employment and Training,Employment and Training +500021,Employment and Training,Employment and Training +497936,Employment and Training,Employment and Training +497589,Employment and Training,Employment and Training +494013,Employment and Training,Employment and Training +493906,Employment and Training,Employment and Training +491010,Employment and Training,Employment and Training +490995,Employment and Training,Employment and Training +490328,Employment and Training,Employment and Training +485783,Employment and Training,Employment and Training +485666,Employment and Training,Employment and Training +483672,Employment and Training,Employment and Training +483215,Employment and Training,Employment and Training +542144,Employment and Training,Employment and Training +540325,Employment and Training,Employment and Training +540320,Employment and Training,Employment and Training +483524,Economic Development,Economic Development +483523,Economic Development,Economic Development +483526,Economic Development,Economic Development +483135,Regional Development,Regional Development +483133,Regional Development,Regional Development +488800,Regional Development,Regional Development +500036,Housing,Housing +486231,Justice and Law Enforcement,Justice and Law Enforcement +485822,Justice and Law Enforcement,Justice and Law Enforcement +516188,Justice and Law Enforcement,Justice and Law Enforcement +510191,Justice and Law Enforcement,Justice and Law Enforcement +488630,Justice and Law Enforcement,Justice and Law Enforcement +487474,Justice and Law Enforcement,Justice and Law Enforcement +487474,Religion,Religion +486689,Religion,Religion +516188,Religion,Religion +510191,Religion,Religion +483479,Consumer Issues,Consumer Issues +483479,Economic Development,Economic Development +483214,Economic Development,Economic Development +483214,Taxation and Finance,Taxation and Finance +483479,Transportation,Transportation +489282,Agriculture,Agriculture +489281,Agriculture,Agriculture +506683,Agriculture,Agriculture +506682,Agriculture,Agriculture +506680,Agriculture,Agriculture +497247,Agriculture,Agriculture +497246,Agriculture,Agriculture +497245,Agriculture,Agriculture +497236,Agriculture,Agriculture +494755,Agriculture,Agriculture +489284,Agriculture,Agriculture +486671,Economic Development,Economic Development +486670,Economic Development,Economic Development +506683,Economic Development,Economic Development +506682,Economic Development,Economic Development +506680,Economic Development,Economic Development +500670,Economic Development,Economic Development +500668,Economic Development,Economic Development +497247,Economic Development,Economic Development +497246,Economic Development,Economic Development +497245,Economic Development,Economic Development +497236,Economic Development,Economic Development +494755,Economic Development,Economic Development +492523,Economic Development,Economic Development +492522,Economic Development,Economic Development +492520,Economic Development,Economic Development +489284,Economic Development,Economic Development +489283,Economic Development,Economic Development +489282,Economic Development,Economic Development +506682,Environment,Environment +506680,Environment,Environment +489282,Industry,Industry +489281,Industry,Industry +489284,Industry,Industry +485455,Economic Development,Economic Development +485418,Economic Development,Economic Development +506412,Economic Development,Economic Development +494629,Economic Development,Economic Development +492000,Economic Development,Economic Development +486087,Economic Development,Economic Development +486036,Economic Development,Economic Development +485455,Health,Health +485418,Health,Health +506412,Health,Health +494629,Health,Health +492000,Health,Health +486087,Health,Health +486036,Health,Health +485516,Industry,Industry +485455,Industry,Industry +506412,Industry,Industry +492000,Industry,Industry +486087,Industry,Industry +486036,International Trade,International Trade +485455,International Trade,International Trade +494629,International Trade,International Trade +492000,International Trade,International Trade +486036,Research and Development,Research and Development +485455,Research and Development,Research and Development +483258,Taxation and Finance,Taxation and Finance +483257,Taxation and Finance,Taxation and Finance +486011,Religion,Religion +486008,Religion,Religion +489243,Religion,Religion +489242,Religion,Religion +486281,Religion,Religion +486279,Religion,Religion +486149,Religion,Religion +486015,Religion,Religion +486014,Religion,Religion +486011,Constitutional Issues,Constitutional Issues +486008,Constitutional Issues,Constitutional Issues +489243,Constitutional Issues,Constitutional Issues +489242,Constitutional Issues,Constitutional Issues +486281,Constitutional Issues,Constitutional Issues +486279,Constitutional Issues,Constitutional Issues +486149,Constitutional Issues,Constitutional Issues +486015,Constitutional Issues,Constitutional Issues +486014,Constitutional Issues,Constitutional Issues +484153,Budget,Budget +484152,Budget,Budget +496138,Budget,Budget +484179,Budget,Budget +484178,Budget,Budget +484177,Budget,Budget +484176,Budget,Budget +484175,Budget,Budget +484174,Budget,Budget +484173,Budget,Budget +484172,Budget,Budget +484171,Budget,Budget +484170,Budget,Budget +484169,Budget,Budget +484168,Budget,Budget +484167,Budget,Budget +484166,Budget,Budget +484165,Budget,Budget +484164,Budget,Budget +484163,Budget,Budget +484162,Budget,Budget +484161,Budget,Budget +484160,Budget,Budget +484159,Budget,Budget +484158,Budget,Budget +484157,Budget,Budget +484156,Budget,Budget +484155,Budget,Budget +489243,Health,Health +489242,Health,Health +486281,Health,Health +486279,Health,Health +486149,Health,Health +486015,Health,Health +486014,Health,Health +486013,Health,Health +486011,Health,Health +486008,Health,Health +483303,Security,Security +483311,Climate,Climate +519537,Defence,Defence +500158,Defence,Defence +531457,Defence,Defence +519152,Economic Development,Economic Development +486449,Economic Development,Economic Development +531456,Economic Development,Economic Development +521884,Economic Development,Economic Development +486449,Employment and Training,Employment and Training +483311,Employment and Training,Employment and Training +531457,Employment and Training,Employment and Training +531456,Employment and Training,Employment and Training +521884,Employment and Training,Employment and Training +519611,Employment and Training,Employment and Training +519537,Employment and Training,Employment and Training +519152,Employment and Training,Employment and Training +516911,Employment and Training,Employment and Training +503786,Employment and Training,Employment and Training +500158,Employment and Training,Employment and Training +500157,Employment and Training,Employment and Training +497402,Employment and Training,Employment and Training +492282,Employment and Training,Employment and Training +492281,Employment and Training,Employment and Training +486453,Employment and Training,Employment and Training +486452,Employment and Training,Employment and Training +497402,Forestry,Forestry +519555,Economic Development,Economic Development +519551,Economic Development,Economic Development +516499,Economic Development,Economic Development +514864,Economic Development,Economic Development +514511,Economic Development,Economic Development +513766,Economic Development,Economic Development +513068,Economic Development,Economic Development +513066,Economic Development,Economic Development +507145,Economic Development,Economic Development +503875,Economic Development,Economic Development +500694,Economic Development,Economic Development +492261,Economic Development,Economic Development +492260,Economic Development,Economic Development +489687,Economic Development,Economic Development +489684,Economic Development,Economic Development +489676,Economic Development,Economic Development +489652,Economic Development,Economic Development +542892,Economic Development,Economic Development +542890,Economic Development,Economic Development +542889,Economic Development,Economic Development +542888,Economic Development,Economic Development +532143,Economic Development,Economic Development +526778,Economic Development,Economic Development +526777,Economic Development,Economic Development +526776,Economic Development,Economic Development +523674,Economic Development,Economic Development +500699,Regional Development,Regional Development +492261,Regional Development,Regional Development +542892,Regional Development,Regional Development +542890,Regional Development,Regional Development +542888,Regional Development,Regional Development +532143,Regional Development,Regional Development +519558,Regional Development,Regional Development +519555,Regional Development,Regional Development +519551,Regional Development,Regional Development +514864,Regional Development,Regional Development +514511,Regional Development,Regional Development +513068,Regional Development,Regional Development +513066,Regional Development,Regional Development +523674,Research and Development,Research and Development +519555,Research and Development,Research and Development +516499,Research and Development,Research and Development +514511,Research and Development,Research and Development +513766,Research and Development,Research and Development +513068,Research and Development,Research and Development +513066,Research and Development,Research and Development +503875,Research and Development,Research and Development +494333,Research and Development,Research and Development +492261,Research and Development,Research and Development +492260,Research and Development,Research and Development +542890,Research and Development,Research and Development +542889,Research and Development,Research and Development +542888,Research and Development,Research and Development +532153,Research and Development,Research and Development +532143,Research and Development,Research and Development +526778,Research and Development,Research and Development +526777,Research and Development,Research and Development +526776,Research and Development,Research and Development +523677,Research and Development,Research and Development +487871,Employment and Training,Employment and Training +487871,Economic Development,Economic Development +487871,Health,Health +497538,Economic Development,Economic Development +483330,Economic Development,Economic Development +497538,Privacy and Access to Information,Privacy and Access to Information +497000,Privacy and Access to Information,Privacy and Access to Information +484957,Economic Development,Economic Development +494061,Economic Development,Economic Development +492653,Economic Development,Economic Development +493900,Economic Development,Economic Development +493900,International Trade,International Trade +487165,Taxation and Finance,Taxation and Finance +487162,Taxation and Finance,Taxation and Finance +500890,Taxation and Finance,Taxation and Finance +494359,Taxation and Finance,Taxation and Finance +494359,Justice and Law Enforcement,Justice and Law Enforcement +492533,Environment,Environment +483768,Environment,Environment +542988,Environment,Environment +542733,Environment,Environment +542285,Environment,Environment +542284,Environment,Environment +534995,Environment,Environment +532597,Environment,Environment +532553,Environment,Environment +532552,Environment,Environment +532535,Environment,Environment +530514,Environment,Environment +527016,Environment,Environment +526812,Environment,Environment +524654,Environment,Environment +523809,Environment,Environment +523571,Environment,Environment +511839,Environment,Environment +511838,Environment,Environment +511837,Environment,Environment +509794,Environment,Environment +536125,Environment,Environment +486090,Environment,Environment +483431,Environment,Environment +540978,Environment,Environment +486080,Taxation and Finance,Taxation and Finance +491580,International Relations,International Relations +488247,International Relations,International Relations +483518,Economic Development,Economic Development +483519,Transportation,Transportation +518053,Transportation,Transportation +513968,Transportation,Transportation +489609,Transportation,Transportation +489608,Transportation,Transportation +489607,Transportation,Transportation +487091,Transportation,Transportation +487089,Transportation,Transportation +487087,Transportation,Transportation +487085,Transportation,Transportation +503672,Consumer Issues,Consumer Issues +503671,Consumer Issues,Consumer Issues +516398,Consumer Issues,Consumer Issues +507706,Consumer Issues,Consumer Issues +503683,Consumer Issues,Consumer Issues +503676,Consumer Issues,Consumer Issues +503675,Consumer Issues,Consumer Issues +503674,Consumer Issues,Consumer Issues +489221,Intellectual Property,Intellectual Property +489189,Intellectual Property,Intellectual Property +509362,Intellectual Property,Intellectual Property +509259,Intellectual Property,Intellectual Property +508560,Intellectual Property,Intellectual Property +508556,Intellectual Property,Intellectual Property +508551,Intellectual Property,Intellectual Property +504833,Intellectual Property,Intellectual Property +504827,Intellectual Property,Intellectual Property +498931,Intellectual Property,Intellectual Property +496114,Intellectual Property,Intellectual Property +496111,Intellectual Property,Intellectual Property +492269,Intellectual Property,Intellectual Property +489223,Intellectual Property,Intellectual Property +486610,Economic Development,Economic Development +483532,Economic Development,Economic Development +541207,Economic Development,Economic Development +537385,Economic Development,Economic Development +535783,Economic Development,Economic Development +535780,Economic Development,Economic Development +535774,Economic Development,Economic Development +535770,Economic Development,Economic Development +535344,Economic Development,Economic Development +535343,Economic Development,Economic Development +535337,Economic Development,Economic Development +535334,Economic Development,Economic Development +535313,Economic Development,Economic Development +535307,Economic Development,Economic Development +531482,Economic Development,Economic Development +531478,Economic Development,Economic Development +531472,Economic Development,Economic Development +531468,Economic Development,Economic Development +531467,Economic Development,Economic Development +525346,Economic Development,Economic Development +521759,Economic Development,Economic Development +521757,Economic Development,Economic Development +518928,Economic Development,Economic Development +516821,Economic Development,Economic Development +513853,Economic Development,Economic Development +513280,Economic Development,Economic Development +513279,Economic Development,Economic Development +510225,Economic Development,Economic Development +510119,Economic Development,Economic Development +508446,Economic Development,Economic Development +501553,Economic Development,Economic Development +501552,Economic Development,Economic Development +498238,Economic Development,Economic Development +498204,Economic Development,Economic Development +495062,Economic Development,Economic Development +495061,Economic Development,Economic Development +495058,Economic Development,Economic Development +495056,Economic Development,Economic Development +495054,Economic Development,Economic Development +495053,Economic Development,Economic Development +495048,Economic Development,Economic Development +495045,Economic Development,Economic Development +489839,Economic Development,Economic Development +489836,Economic Development,Economic Development +488298,Intellectual Property,Intellectual Property +486230,Intellectual Property,Intellectual Property +540601,Intellectual Property,Intellectual Property +540600,Intellectual Property,Intellectual Property +539363,Intellectual Property,Intellectual Property +536482,Intellectual Property,Intellectual Property +536481,Intellectual Property,Intellectual Property +536479,Intellectual Property,Intellectual Property +527520,Intellectual Property,Intellectual Property +527518,Intellectual Property,Intellectual Property +527503,Intellectual Property,Intellectual Property +523915,Intellectual Property,Intellectual Property +520772,Intellectual Property,Intellectual Property +520771,Intellectual Property,Intellectual Property +520769,Intellectual Property,Intellectual Property +516397,Intellectual Property,Intellectual Property +516345,Intellectual Property,Intellectual Property +514946,Intellectual Property,Intellectual Property +514945,Intellectual Property,Intellectual Property +492088,Intellectual Property,Intellectual Property +512885,Economic Development,Economic Development +487371,Economic Development,Economic Development +541459,Economic Development,Economic Development +541456,Economic Development,Economic Development +537685,Economic Development,Economic Development +533701,Economic Development,Economic Development +533700,Economic Development,Economic Development +526451,Economic Development,Economic Development +522488,Economic Development,Economic Development +521003,Economic Development,Economic Development +541459,Environment,Environment +541456,Environment,Environment +537685,Environment,Environment +533701,Environment,Environment +533700,Environment,Environment +533676,Environment,Environment +533674,Environment,Environment +531417,Environment,Environment +531416,Environment,Environment +528662,Environment,Environment +526835,Environment,Environment +526451,Environment,Environment +522488,Environment,Environment +521003,Environment,Environment +512886,Environment,Environment +512885,Environment,Environment +512885,Infrastructure,Infrastructure +509752,Infrastructure,Infrastructure +487371,Infrastructure,Infrastructure +541459,Infrastructure,Infrastructure +541456,Infrastructure,Infrastructure +537685,Infrastructure,Infrastructure +533701,Infrastructure,Infrastructure +533700,Infrastructure,Infrastructure +533676,Infrastructure,Infrastructure +533674,Infrastructure,Infrastructure +531416,Infrastructure,Infrastructure +528662,Infrastructure,Infrastructure +526853,Infrastructure,Infrastructure +526835,Infrastructure,Infrastructure +522488,Infrastructure,Infrastructure +521003,Infrastructure,Infrastructure +512886,Research and Development,Research and Development +509752,Research and Development,Research and Development +528662,Research and Development,Research and Development +526835,Research and Development,Research and Development +526451,Research and Development,Research and Development +487369,Transportation,Transportation +487368,Transportation,Transportation +541459,Transportation,Transportation +541456,Transportation,Transportation +537685,Transportation,Transportation +533701,Transportation,Transportation +533700,Transportation,Transportation +533676,Transportation,Transportation +533674,Transportation,Transportation +531417,Transportation,Transportation +531416,Transportation,Transportation +528662,Transportation,Transportation +526853,Transportation,Transportation +526835,Transportation,Transportation +526451,Transportation,Transportation +522488,Transportation,Transportation +521003,Transportation,Transportation +512886,Transportation,Transportation +512885,Transportation,Transportation +509752,Transportation,Transportation +488523,Taxation and Finance,Taxation and Finance +485996,Taxation and Finance,Taxation and Finance +527147,Health,Health +525050,Health,Health +488524,Health,Health +488523,Health,Health +485996,Health,Health +536100,Climate,Climate +536098,Climate,Climate +509732,Climate,Climate +509502,Climate,Climate +501871,Economic Development,Economic Development +543259,Economic Development,Economic Development +542536,Economic Development,Economic Development +519281,Environment,Environment +519280,Environment,Environment +509732,Environment,Environment +509502,Environment,Environment +501875,Environment,Environment +501871,Environment,Environment +486114,Environment,Environment +542098,Environment,Environment +542097,Environment,Environment +539020,Environment,Environment +536308,Environment,Environment +524144,Environment,Environment +486117,Fisheries,Fisheries +486114,Fisheries,Fisheries +544842,Fisheries,Fisheries +542707,Fisheries,Fisheries +542706,Fisheries,Fisheries +542097,Fisheries,Fisheries +541157,Fisheries,Fisheries +541156,Fisheries,Fisheries +539020,Fisheries,Fisheries +536102,Fisheries,Fisheries +536099,Fisheries,Fisheries +530728,Fisheries,Fisheries +519281,Fisheries,Fisheries +519279,Fisheries,Fisheries +509732,Fisheries,Fisheries +509731,Fisheries,Fisheries +509502,Fisheries,Fisheries +506630,Fisheries,Fisheries +506627,Fisheries,Fisheries +501875,Fisheries,Fisheries +542098,Forestry,Forestry +542097,Forestry,Forestry +541157,Forestry,Forestry +541156,Forestry,Forestry +539020,Forestry,Forestry +536308,Forestry,Forestry +536102,Forestry,Forestry +536101,Forestry,Forestry +536100,Forestry,Forestry +536099,Forestry,Forestry +536098,Forestry,Forestry +530728,Forestry,Forestry +527010,Forestry,Forestry +524144,Forestry,Forestry +523611,Forestry,Forestry +521557,Forestry,Forestry +520604,Forestry,Forestry +519280,Forestry,Forestry +519279,Forestry,Forestry +516026,Forestry,Forestry +509732,Forestry,Forestry +509731,Forestry,Forestry +509502,Forestry,Forestry +506630,Forestry,Forestry +506627,Forestry,Forestry +501875,Forestry,Forestry +501871,Forestry,Forestry +494282,Forestry,Forestry +486115,Forestry,Forestry +486114,Forestry,Forestry +544842,Forestry,Forestry +544839,Forestry,Forestry +543259,Forestry,Forestry +542707,Forestry,Forestry +542706,Forestry,Forestry +542542,Forestry,Forestry +509732,International Trade,International Trade +501871,International Trade,International Trade +543259,International Trade,International Trade +542542,International Trade,International Trade +542536,International Trade,International Trade +542098,International Trade,International Trade +542097,International Trade,International Trade +536308,International Trade,International Trade +536101,International Trade,International Trade +523611,International Trade,International Trade +520604,International Trade,International Trade +494593,Small Business,Small Business +483931,Small Business,Small Business +496772,Small Business,Small Business +496660,Small Business,Small Business +496659,Small Business,Small Business +496658,Small Business,Small Business +496429,Small Business,Small Business +496428,Small Business,Small Business +496423,Small Business,Small Business +494605,Small Business,Small Business +494602,Small Business,Small Business +486111,Budget,Budget +486110,Budget,Budget +489171,Budget,Budget +486282,Budget,Budget +486277,Budget,Budget +486275,Budget,Budget +486273,Budget,Budget +486111,Economic Development,Economic Development +486110,Economic Development,Economic Development +506461,Economic Development,Economic Development +506460,Economic Development,Economic Development +503314,Economic Development,Economic Development +500977,Economic Development,Economic Development +500974,Economic Development,Economic Development +500973,Economic Development,Economic Development +500971,Economic Development,Economic Development +498096,Economic Development,Economic Development +498095,Economic Development,Economic Development +498094,Economic Development,Economic Development +498091,Economic Development,Economic Development +495039,Economic Development,Economic Development +494815,Economic Development,Economic Development +492880,Economic Development,Economic Development +492877,Economic Development,Economic Development +492876,Economic Development,Economic Development +492875,Economic Development,Economic Development +492874,Economic Development,Economic Development +492871,Economic Development,Economic Development +492870,Economic Development,Economic Development +489171,Economic Development,Economic Development +486282,Economic Development,Economic Development +486277,Economic Development,Economic Development +486275,Economic Development,Economic Development +486273,Economic Development,Economic Development +486111,Industry,Industry +486110,Industry,Industry +506461,Industry,Industry +498096,Industry,Industry +498095,Industry,Industry +498094,Industry,Industry +495039,Industry,Industry +494815,Industry,Industry +492880,Industry,Industry +492877,Industry,Industry +492876,Industry,Industry +492875,Industry,Industry +492874,Industry,Industry +492871,Industry,Industry +492870,Industry,Industry +489171,Industry,Industry +486282,Industry,Industry +486277,Industry,Industry +486275,Industry,Industry +486273,Industry,Industry +486111,Regional Development,Regional Development +486110,Regional Development,Regional Development +506461,Regional Development,Regional Development +506460,Regional Development,Regional Development +503314,Regional Development,Regional Development +500977,Regional Development,Regional Development +500974,Regional Development,Regional Development +500973,Regional Development,Regional Development +500971,Regional Development,Regional Development +498096,Regional Development,Regional Development +498095,Regional Development,Regional Development +498094,Regional Development,Regional Development +498091,Regional Development,Regional Development +489171,Regional Development,Regional Development +486282,Regional Development,Regional Development +486277,Regional Development,Regional Development +486275,Regional Development,Regional Development +486273,Regional Development,Regional Development +494815,Tourism,Tourism +492880,Tourism,Tourism +492877,Tourism,Tourism +492876,Tourism,Tourism +492875,Tourism,Tourism +492874,Tourism,Tourism +492871,Tourism,Tourism +492870,Tourism,Tourism +489171,Tourism,Tourism +486282,Tourism,Tourism +486277,Tourism,Tourism +486275,Tourism,Tourism +486273,Tourism,Tourism +486271,Tourism,Tourism +486111,Tourism,Tourism +486110,Tourism,Tourism +506461,Tourism,Tourism +506460,Tourism,Tourism +503314,Tourism,Tourism +500977,Tourism,Tourism +500974,Tourism,Tourism +500973,Tourism,Tourism +500971,Tourism,Tourism +498096,Tourism,Tourism +498095,Tourism,Tourism +498094,Tourism,Tourism +498091,Tourism,Tourism +486111,Transportation,Transportation +486110,Transportation,Transportation +506461,Transportation,Transportation +506460,Transportation,Transportation +503314,Transportation,Transportation +500977,Transportation,Transportation +500974,Transportation,Transportation +500973,Transportation,Transportation +500971,Transportation,Transportation +498091,Transportation,Transportation +495039,Transportation,Transportation +495036,Transportation,Transportation +494815,Transportation,Transportation +492880,Transportation,Transportation +492877,Transportation,Transportation +492876,Transportation,Transportation +492875,Transportation,Transportation +492874,Transportation,Transportation +492871,Transportation,Transportation +492870,Transportation,Transportation +489171,Transportation,Transportation +486282,Transportation,Transportation +486277,Transportation,Transportation +486275,Transportation,Transportation +486273,Transportation,Transportation +483855,Budget,Budget +483855,Climate,Climate +483855,Small Business,Small Business +486052,Tourism,Tourism +485818,Tourism,Tourism +513816,Tourism,Tourism +508700,Tourism,Tourism +497576,Tourism,Tourism +497575,Tourism,Tourism +494691,Tourism,Tourism +494690,Tourism,Tourism +494689,Tourism,Tourism +494688,Tourism,Tourism +492346,Tourism,Tourism +492345,Tourism,Tourism +492344,Tourism,Tourism +492343,Tourism,Tourism +490167,Tourism,Tourism +490164,Tourism,Tourism +490163,Tourism,Tourism +490148,Tourism,Tourism +490146,Tourism,Tourism +490145,Tourism,Tourism +490143,Tourism,Tourism +490142,Tourism,Tourism +490141,Tourism,Tourism +490140,Tourism,Tourism +490139,Tourism,Tourism +490138,Tourism,Tourism +490137,Tourism,Tourism +490136,Tourism,Tourism +490135,Tourism,Tourism +490134,Tourism,Tourism +490133,Tourism,Tourism +490132,Tourism,Tourism +490131,Tourism,Tourism +490130,Tourism,Tourism +490129,Tourism,Tourism +490128,Tourism,Tourism +490127,Tourism,Tourism +490126,Tourism,Tourism +490125,Tourism,Tourism +490124,Tourism,Tourism +490123,Tourism,Tourism +489797,Tourism,Tourism +489796,Tourism,Tourism +489795,Tourism,Tourism +489794,Tourism,Tourism +489793,Tourism,Tourism +489792,Tourism,Tourism +489791,Tourism,Tourism +489790,Tourism,Tourism +489789,Tourism,Tourism +489788,Tourism,Tourism +489787,Tourism,Tourism +489785,Tourism,Tourism +489783,Tourism,Tourism +489782,Tourism,Tourism +489780,Tourism,Tourism +489778,Tourism,Tourism +486350,Tourism,Tourism +486349,Tourism,Tourism +486072,Tourism,Tourism +486071,Tourism,Tourism +486070,Tourism,Tourism +486069,Tourism,Tourism +486068,Tourism,Tourism +486067,Tourism,Tourism +486065,Tourism,Tourism +486064,Tourism,Tourism +486062,Tourism,Tourism +486061,Tourism,Tourism +486060,Tourism,Tourism +486059,Tourism,Tourism +486058,Tourism,Tourism +486057,Tourism,Tourism +486056,Tourism,Tourism +486055,Tourism,Tourism +485401,Economic Development,Economic Development +485397,Economic Development,Economic Development +485401,Tourism,Tourism +485397,Tourism,Tourism +483916,Education,Education +490389,Fisheries,Fisheries +490387,Fisheries,Fisheries +489724,Employment and Training,Employment and Training +484038,Employment and Training,Employment and Training +492465,Security,Security +484956,Security,Security +543341,Security,Security +543340,Security,Security +524933,Security,Security +499424,Climate,Climate +499421,Climate,Climate +499426,Climate,Climate +522953,Economic Development,Economic Development +509904,Economic Development,Economic Development +540161,Economic Development,Economic Development +540155,Economic Development,Economic Development +499421,Energy,Energy +485214,Energy,Energy +544010,Energy,Energy +538449,Energy,Energy +538445,Energy,Energy +522953,Energy,Energy +522949,Energy,Energy +509904,Energy,Energy +505532,Energy,Energy +505529,Energy,Energy +505526,Energy,Energy +505525,Energy,Energy +505524,Energy,Energy +505523,Energy,Energy +499426,Energy,Energy +499425,Energy,Energy +499421,Environment,Environment +522953,Environment,Environment +499426,Environment,Environment +499425,Environment,Environment +522949,Infrastructure,Infrastructure +519365,Climate,Climate +515270,Climate,Climate +484198,Climate,Climate +484194,Climate,Climate +536797,Climate,Climate +536796,Climate,Climate +533319,Climate,Climate +533318,Climate,Climate +497935,International Development,International Development +487038,International Development,International Development +541215,International Development,International Development +533345,International Development,International Development +525342,International Development,International Development +521860,International Development,International Development +521856,International Development,International Development +500679,International Development,International Development +500674,International Development,International Development +500672,International Development,International Development +500669,International Development,International Development +492465,Consumer Issues,Consumer Issues +484956,Consumer Issues,Consumer Issues +543341,Consumer Issues,Consumer Issues +543340,Consumer Issues,Consumer Issues +524933,Consumer Issues,Consumer Issues +492465,Industry,Industry +484956,Industry,Industry +543341,Industry,Industry +543340,Industry,Industry +531285,Industry,Industry +524933,Industry,Industry +490702,Justice and Law Enforcement,Justice and Law Enforcement +484387,Justice and Law Enforcement,Justice and Law Enforcement +513172,Justice and Law Enforcement,Justice and Law Enforcement +492447,Justice and Law Enforcement,Justice and Law Enforcement +492447,Security,Security +492447,Transportation,Transportation +486880,International Development,International Development +484407,International Development,International Development +513998,International Development,International Development +497972,International Development,International Development +497963,International Development,International Development +492315,International Development,International Development +490655,International Development,International Development +486700,Health,Health +484416,Health,Health +528034,Health,Health +521752,Health,Health +519467,Health,Health +519465,Health,Health +501358,Financial Institutions,Financial Institutions +494640,Financial Institutions,Financial Institutions +484412,Financial Institutions,Financial Institutions +487363,Infrastructure,Infrastructure +484441,Infrastructure,Infrastructure +522619,Infrastructure,Infrastructure +494399,Health,Health +490463,Health,Health +485916,Health,Health +501811,Health,Health +496472,Health,Health +485917,Justice and Law Enforcement,Justice and Law Enforcement +501811,Justice and Law Enforcement,Justice and Law Enforcement +490463,Justice and Law Enforcement,Justice and Law Enforcement +486186,Justice and Law Enforcement,Justice and Law Enforcement +501904,Economic Development,Economic Development +500763,Economic Development,Economic Development +494480,Economic Development,Economic Development +494479,Economic Development,Economic Development +488828,Economic Development,Economic Development +488714,Economic Development,Economic Development +485799,Economic Development,Economic Development +485520,Economic Development,Economic Development +523616,Economic Development,Economic Development +523573,Economic Development,Economic Development +521372,Economic Development,Economic Development +515960,Economic Development,Economic Development +515000,Economic Development,Economic Development +514912,Economic Development,Economic Development +514513,Economic Development,Economic Development +514479,Economic Development,Economic Development +485520,Health,Health +523616,Health,Health +523573,Health,Health +521372,Health,Health +515960,Health,Health +515000,Health,Health +514912,Health,Health +514513,Health,Health +514479,Health,Health +506346,Health,Health +501904,Health,Health +500763,Health,Health +494480,Health,Health +494479,Health,Health +488828,Health,Health +488714,Health,Health +485799,Research and Development,Research and Development +485520,Research and Development,Research and Development +523616,Research and Development,Research and Development +523573,Research and Development,Research and Development +521372,Research and Development,Research and Development +515960,Research and Development,Research and Development +515000,Research and Development,Research and Development +514912,Research and Development,Research and Development +514513,Research and Development,Research and Development +514479,Research and Development,Research and Development +501904,Research and Development,Research and Development +500763,Research and Development,Research and Development +494480,Research and Development,Research and Development +494479,Research and Development,Research and Development +488828,Research and Development,Research and Development +502928,Education,Education +487501,Education,Education +504361,Education,Education +484591,Health,Health +484591,Industry,Industry +484591,Research and Development,Research and Development +492082,Employment and Training,Employment and Training +484625,Employment and Training,Employment and Training +496394,Employment and Training,Employment and Training +496393,Employment and Training,Employment and Training +496392,Employment and Training,Employment and Training +492082,Infrastructure,Infrastructure +484625,Infrastructure,Infrastructure +499245,Infrastructure,Infrastructure +499236,Infrastructure,Infrastructure +496350,Infrastructure,Infrastructure +496348,Infrastructure,Infrastructure +492084,Infrastructure,Infrastructure +492082,Taxation and Finance,Taxation and Finance +484625,Taxation and Finance,Taxation and Finance +499254,Taxation and Finance,Taxation and Finance +499245,Taxation and Finance,Taxation and Finance +496394,Taxation and Finance,Taxation and Finance +496393,Taxation and Finance,Taxation and Finance +496392,Taxation and Finance,Taxation and Finance +496347,Taxation and Finance,Taxation and Finance +496346,Taxation and Finance,Taxation and Finance +492084,Taxation and Finance,Taxation and Finance +487267,Health,Health +487265,Health,Health +512664,Health,Health +512663,Health,Health +512662,Health,Health +512661,Health,Health +501983,Health,Health +499610,Health,Health +499454,Health,Health +491248,Health,Health +488836,Security,Security +488213,Security,Security +497466,Security,Security +498137,Environment,Environment +498137,Industry,Industry +489592,Employment and Training,Employment and Training +489591,Employment and Training,Employment and Training +505259,Employment and Training,Employment and Training +505250,Employment and Training,Employment and Training +489595,Employment and Training,Employment and Training +489592,Infrastructure,Infrastructure +489591,Infrastructure,Infrastructure +505250,Infrastructure,Infrastructure +498137,Infrastructure,Infrastructure +489595,Infrastructure,Infrastructure +498137,Budget,Budget +489596,Employment and Training,Employment and Training +505263,Employment and Training,Employment and Training +505255,Employment and Training,Employment and Training +498136,Employment and Training,Employment and Training +489599,Employment and Training,Employment and Training +489598,Employment and Training,Employment and Training +489597,Infrastructure,Infrastructure +489596,Infrastructure,Infrastructure +505255,Infrastructure,Infrastructure +489599,Infrastructure,Infrastructure +505263,Budget,Budget +505255,Industry,Industry +488207,Research and Development,Research and Development +488200,Research and Development,Research and Development +505435,Research and Development,Research and Development +500283,Research and Development,Research and Development +500088,Research and Development,Research and Development +496742,Research and Development,Research and Development +495800,Research and Development,Research and Development +488447,Research and Development,Research and Development +492101,Health,Health +487315,Health,Health +514401,Economic Development,Economic Development +509749,Economic Development,Economic Development +508631,Economic Development,Economic Development +493442,Economic Development,Economic Development +491962,Economic Development,Economic Development +485072,Economic Development,Economic Development +543284,Economic Development,Economic Development +543282,Economic Development,Economic Development +543281,Economic Development,Economic Development +543279,Economic Development,Economic Development +541457,Economic Development,Economic Development +539457,Economic Development,Economic Development +538886,Economic Development,Economic Development +538885,Economic Development,Economic Development +513666,Government Procurement,Government Procurement +486540,Regional Development,Regional Development +499695,Infrastructure,Infrastructure +487937,Infrastructure,Infrastructure +505845,Infrastructure,Infrastructure +499726,Infrastructure,Infrastructure +506631,Budget,Budget +485272,Budget,Budget +528737,Budget,Budget +496746,Economic Development,Economic Development +485314,Economic Development,Economic Development +486763,Economic Development,Economic Development +486760,Economic Development,Economic Development +521932,Economic Development,Economic Development +521930,Economic Development,Economic Development +521927,Economic Development,Economic Development +486769,Economic Development,Economic Development +486768,Economic Development,Economic Development +486767,Economic Development,Economic Development +486766,Economic Development,Economic Development +486765,Economic Development,Economic Development +485539,Government Procurement,Government Procurement +496777,Taxation and Finance,Taxation and Finance +520738,Economic Development,Economic Development +536722,Economic Development,Economic Development +536048,Economic Development,Economic Development +528286,Economic Development,Economic Development +520738,Industry,Industry +500454,Industry,Industry +542310,Industry,Industry +540460,Industry,Industry +536722,Industry,Industry +536721,Industry,Industry +536144,Industry,Industry +536048,Industry,Industry +528611,Industry,Industry +528286,Industry,Industry +520740,Industry,Industry +487524,Transportation,Transportation +487585,Government Procurement,Government Procurement +487586,Health,Health +487585,Health,Health +487586,Research and Development,Research and Development +487585,Research and Development,Research and Development +485502,Research and Development,Research and Development +499656,Budget,Budget +496103,Budget,Budget +496103,Financial Institutions,Financial Institutions +493677,Financial Institutions,Financial Institutions +512990,Financial Institutions,Financial Institutions +509279,Financial Institutions,Financial Institutions +502764,Financial Institutions,Financial Institutions +502752,Financial Institutions,Financial Institutions +502725,Financial Institutions,Financial Institutions +487797,Climate,Climate +487797,Energy,Energy +490180,Climate,Climate +487781,Climate,Climate +498715,Climate,Climate +495790,Climate,Climate +495789,Climate,Climate +495788,Climate,Climate +495786,Climate,Climate +495784,Climate,Climate +495782,Climate,Climate +493641,Climate,Climate +493638,Climate,Climate +490186,Climate,Climate +490184,Climate,Climate +490183,Climate,Climate +490180,Economic Development,Economic Development +487781,Economic Development,Economic Development +498715,Economic Development,Economic Development +495790,Economic Development,Economic Development +495789,Economic Development,Economic Development +495788,Economic Development,Economic Development +495786,Economic Development,Economic Development +495784,Economic Development,Economic Development +495782,Economic Development,Economic Development +493641,Economic Development,Economic Development +493638,Economic Development,Economic Development +490186,Economic Development,Economic Development +490184,Economic Development,Economic Development +490183,Economic Development,Economic Development +490180,Environment,Environment +487781,Environment,Environment +498715,Environment,Environment +495790,Environment,Environment +495789,Environment,Environment +495788,Environment,Environment +495786,Environment,Environment +495784,Environment,Environment +495782,Environment,Environment +493641,Environment,Environment +493638,Environment,Environment +490186,Environment,Environment +490184,Environment,Environment +490183,Environment,Environment +487319,Infrastructure,Infrastructure +485487,Infrastructure,Infrastructure +488097,Infrastructure,Infrastructure +485762,Economic Development,Economic Development +485762,Government Procurement,Government Procurement +490450,Energy,Energy +488050,Energy,Energy +541677,Energy,Energy +539808,Energy,Energy +536036,Energy,Energy +536035,Energy,Energy +532028,Energy,Energy +529679,Energy,Energy +525986,Energy,Energy +525985,Energy,Energy +522655,Energy,Energy +519944,Energy,Energy +517612,Energy,Energy +517607,Energy,Energy +517600,Energy,Energy +515628,Energy,Energy +515627,Energy,Energy +513901,Energy,Energy +513899,Energy,Energy +512459,Energy,Energy +512455,Energy,Energy +511059,Energy,Energy +511038,Energy,Energy +507173,Energy,Energy +507167,Energy,Energy +507164,Energy,Energy +507160,Energy,Energy +507155,Energy,Energy +507150,Energy,Energy +507149,Energy,Energy +504046,Energy,Energy +504044,Energy,Energy +504038,Energy,Energy +504036,Energy,Energy +504034,Energy,Energy +504031,Energy,Energy +504029,Energy,Energy +504012,Energy,Energy +504002,Energy,Energy +501116,Energy,Energy +497285,Energy,Energy +494252,Energy,Energy +494250,Energy,Energy +492574,Energy,Energy +488050,Environment,Environment +539808,Environment,Environment +536036,Environment,Environment +536035,Environment,Environment +532028,Environment,Environment +529679,Environment,Environment +525986,Environment,Environment +525985,Environment,Environment +522655,Environment,Environment +519944,Environment,Environment +517612,Environment,Environment +515628,Environment,Environment +515627,Environment,Environment +511059,Environment,Environment +507173,Environment,Environment +507167,Environment,Environment +507164,Environment,Environment +507160,Environment,Environment +507155,Environment,Environment +507150,Environment,Environment +507149,Environment,Environment +504038,Environment,Environment +504036,Environment,Environment +504034,Environment,Environment +504031,Environment,Environment +504002,Environment,Environment +497285,Environment,Environment +494252,Environment,Environment +494250,Environment,Environment +492574,Environment,Environment +490484,Environment,Environment +504044,Industry,Industry +504041,Industry,Industry +504040,Industry,Industry +504038,Industry,Industry +504037,Industry,Industry +504036,Industry,Industry +504034,Industry,Industry +504031,Industry,Industry +504029,Industry,Industry +504012,Industry,Industry +501116,Industry,Industry +497285,Industry,Industry +494252,Industry,Industry +494250,Industry,Industry +492574,Industry,Industry +490484,Industry,Industry +490450,Industry,Industry +488050,Industry,Industry +541677,Industry,Industry +539808,Industry,Industry +536036,Industry,Industry +536035,Industry,Industry +532028,Industry,Industry +529679,Industry,Industry +525986,Industry,Industry +525985,Industry,Industry +522655,Industry,Industry +519944,Industry,Industry +517612,Industry,Industry +517607,Industry,Industry +517600,Industry,Industry +515628,Industry,Industry +515627,Industry,Industry +513901,Industry,Industry +513899,Industry,Industry +512459,Industry,Industry +512455,Industry,Industry +511059,Industry,Industry +511038,Industry,Industry +507173,Industry,Industry +507167,Industry,Industry +507166,Industry,Industry +507164,Industry,Industry +507160,Industry,Industry +507155,Industry,Industry +507150,Industry,Industry +507149,Industry,Industry +490450,Infrastructure,Infrastructure +531456,Environment,Environment +483311,Forestry,Forestry +496246,Economic Development,Economic Development +487101,Government Procurement,Government Procurement +519558,Economic Development,Economic Development +503875,Regional Development,Regional Development +523675,Research and Development,Research and Development +487872,Employment and Training,Employment and Training +487872,Economic Development,Economic Development +487872,Health,Health +497539,Economic Development,Economic Development +497539,Privacy and Access to Information,Privacy and Access to Information +488401,Economic Development,Economic Development +483337,Small Business,Small Business +500053,Economic Development,Economic Development +493900,Environment,Environment +500053,International Trade,International Trade +487169,Taxation and Finance,Taxation and Finance +497299,Justice and Law Enforcement,Justice and Law Enforcement +485794,Health,Health +509730,Environment,Environment +540975,Environment,Environment +486081,Taxation and Finance,Taxation and Finance +493537,International Development,International Development +493537,International Relations,International Relations +493537,Justice and Law Enforcement,Justice and Law Enforcement +483520,Economic Development,Economic Development +483520,Tourism,Tourism +483520,Transportation,Transportation +494692,Infrastructure,Infrastructure +487091,Regional Development,Regional Development +518731,Transportation,Transportation +489496,Intellectual Property,Intellectual Property +492223,Budget,Budget +503673,Consumer Issues,Consumer Issues +489222,Intellectual Property,Intellectual Property +489823,Economic Development,Economic Development +488308,Intellectual Property,Intellectual Property +522488,Budget,Budget +512886,Economic Development,Economic Development +509752,Environment,Environment +512886,Infrastructure,Infrastructure +522488,Research and Development,Research and Development +487371,Transportation,Transportation +483567,Employment and Training,Employment and Training +488524,Taxation and Finance,Taxation and Finance +527148,Health,Health +542098,Climate,Climate +524144,Economic Development,Economic Development +520604,Environment,Environment +494282,Fisheries,Fisheries +542536,Forestry,Forestry +514633,International Trade,International Trade +494596,Small Business,Small Business +485637,Privacy and Access to Information,Privacy and Access to Information +485637,Transportation,Transportation +487866,Health,Health +486271,Budget,Budget +486271,Economic Development,Economic Development +486271,Industry,Industry +486271,Regional Development,Regional Development +495039,Tourism,Tourism +486271,Transportation,Transportation +483856,Budget,Budget +483856,Climate,Climate +483856,Internal Trade,Internal Trade +483856,Small Business,Small Business +486054,Tourism,Tourism +483881,Government Procurement,Government Procurement +483884,Government Procurement,Government Procurement +494652,Economic Development,Economic Development +494652,Tourism,Tourism +487717,Education,Education +490392,Fisheries,Fisheries +498374,Employment and Training,Employment and Training +485969,Justice and Law Enforcement,Justice and Law Enforcement +485969,Religion,Religion +524897,Security,Security +499425,Climate,Climate +540144,Economic Development,Economic Development +499424,Energy,Energy +499424,Environment,Environment +522953,Infrastructure,Infrastructure +524304,Industry,Industry +486603,Health,Health +524803,Climate,Climate +497937,International Development,International Development +483809,Privacy and Access to Information,Privacy and Access to Information +484253,Environment,Environment +488337,Immigration,Immigration +524897,Consumer Issues,Consumer Issues +524897,Industry,Industry +485015,Government Procurement,Government Procurement +490707,Justice and Law Enforcement,Justice and Law Enforcement +492494,Justice and Law Enforcement,Justice and Law Enforcement +492494,Security,Security +492494,Transportation,Transportation +490606,International Development,International Development +492965,Health,Health +520368,Financial Institutions,Financial Institutions +513102,Infrastructure,Infrastructure +494402,Health,Health +486184,Justice and Law Enforcement,Justice and Law Enforcement +506346,Economic Development,Economic Development +485799,Health,Health +488714,Research and Development,Research and Development +484476,Government Procurement,Government Procurement +504358,Education,Education +484584,Health,Health +484590,Industry,Industry +484596,Health,Health +484596,Industry,Industry +484596,Research and Development,Research and Development +496348,Employment and Training,Employment and Training +492083,Infrastructure,Infrastructure +492083,Taxation and Finance,Taxation and Finance +491630,Government Procurement,Government Procurement +491630,Health,Health +490910,Education,Education +491237,Health,Health +484676,Employment and Training,Employment and Training +488057,Labour,Labour +494519,Security,Security +488059,Agriculture,Agriculture +487865,Health,Health +505250,Environment,Environment +505259,Industry,Industry +489594,Employment and Training,Employment and Training +489594,Infrastructure,Infrastructure +505259,Budget,Budget +489597,Employment and Training,Employment and Training +489598,Infrastructure,Infrastructure +498136,Budget,Budget +505263,Industry,Industry +488209,Research and Development,Research and Development +487294,Government Procurement,Government Procurement +487308,Health,Health +487327,Government Procurement,Government Procurement +516273,Economic Development,Economic Development +491578,Energy,Energy +485538,Government Procurement,Government Procurement +509968,Regional Development,Regional Development +499696,Infrastructure,Infrastructure +526688,Budget,Budget +496747,Economic Development,Economic Development +486764,Economic Development,Economic Development +486758,Government Procurement,Government Procurement +513698,Government Procurement,Government Procurement +503537,Taxation and Finance,Taxation and Finance +520739,Economic Development,Economic Development +526979,Government Procurement,Government Procurement +520739,Industry,Industry +485565,Government Procurement,Government Procurement +487529,Transportation,Transportation +543267,Economic Development,Economic Development +487586,Government Procurement,Government Procurement +488977,Health,Health +488977,Research and Development,Research and Development +509279,Budget,Budget +499656,Financial Institutions,Financial Institutions +490179,Climate,Climate +490179,Energy,Energy +490182,Climate,Climate +490182,Economic Development,Economic Development +490182,Environment,Environment +485486,Forestry,Forestry +493120,Infrastructure,Infrastructure +485491,Government Procurement,Government Procurement +489321,Infrastructure,Infrastructure +489321,Municipalities,Municipalities +485908,Economic Development,Economic Development +485908,Government Procurement,Government Procurement +485908,Small Business,Small Business +490484,Energy,Energy +490450,Environment,Environment +504046,Industry,Industry +490484,Infrastructure,Infrastructure +492574,Taxation and Finance,Taxation and Finance +517600,Transportation,Transportation +510234,Economic Development,Economic Development +490182,Research and Development,Research and Development +485547,Economic Development,Economic Development +492033,Government Procurement,Government Procurement +491924,Health,Health +491924,Industry,Industry +492033,Research and Development,Research and Development +490487,Climate,Climate +497122,Government Procurement,Government Procurement +497122,Defence,Defence +491528,Economic Development,Economic Development +499611,Employment and Training,Employment and Training +487537,Infrastructure,Infrastructure +505840,Labour,Labour +492627,Infrastructure,Infrastructure +492627,Economic Development,Economic Development +519022,Employment and Training,Employment and Training +492627,Housing,Housing +492628,Labour,Labour +493951,Health,Health +485579,Employment and Training,Employment and Training +494216,Labour,Labour +494216,Infrastructure,Infrastructure +485588,Housing,Housing +500716,Economic Development,Economic Development +494297,Infrastructure,Infrastructure +494297,Taxation and Finance,Taxation and Finance +492061,International Trade,International Trade +495726,Economic Development,Economic Development +520000,Employment and Training,Employment and Training +485603,Employment and Training,Employment and Training +499099,Economic Development,Economic Development +510166,Consumer Issues,Consumer Issues +510167,Health,Health +512845,Economic Development,Economic Development +503798,Economic Development,Economic Development +503798,Mining,Mining +503798,Regional Development,Regional Development +512410,Transportation,Transportation +513547,Economic Development,Economic Development +513547,Housing,Housing +485809,Infrastructure,Infrastructure +485811,Economic Development,Economic Development +489588,Education,Education +489588,Privacy and Access to Information,Privacy and Access to Information +498124,Budget,Budget +498124,Infrastructure,Infrastructure +504172,Industry,Industry +498955,International Relations,International Relations +502935,International Trade,International Trade +502936,Small Business,Small Business +506500,Small Business,Small Business +516090,Taxation and Finance,Taxation and Finance +488658,Government Procurement,Government Procurement +490731,Climate,Climate +490726,Economic Development,Economic Development +490726,Environment,Environment +490726,Research and Development,Research and Development +488054,Industry,Industry +488054,Taxation and Finance,Taxation and Finance +539190,Budget,Budget +526028,Industry,Industry +489696,Taxation and Finance,Taxation and Finance +485733,Research and Development,Research and Development +488758,Employment and Training,Employment and Training +490951,Industry,Industry +492068,Taxation and Finance,Taxation and Finance +506039,Consumer Issues,Consumer Issues +485739,Immigration,Immigration +533451,Regional Development,Regional Development +540388,Environment,Environment +540388,International Trade,International Trade +533451,Economic Development,Economic Development +500418,Budget,Budget +527054,Consumer Issues,Consumer Issues +500419,Economic Development,Economic Development +500418,Financial Institutions,Financial Institutions +500418,Industry,Industry +500418,Privacy and Access to Information,Privacy and Access to Information +503924,Economic Development,Economic Development +503924,International Trade,International Trade +488050,Infrastructure,Infrastructure +541677,Infrastructure,Infrastructure +539808,Infrastructure,Infrastructure +536036,Infrastructure,Infrastructure +536035,Infrastructure,Infrastructure +532028,Infrastructure,Infrastructure +529679,Infrastructure,Infrastructure +525986,Infrastructure,Infrastructure +525985,Infrastructure,Infrastructure +522655,Infrastructure,Infrastructure +519944,Infrastructure,Infrastructure +517612,Infrastructure,Infrastructure +517607,Infrastructure,Infrastructure +517600,Infrastructure,Infrastructure +515628,Infrastructure,Infrastructure +515627,Infrastructure,Infrastructure +513899,Infrastructure,Infrastructure +512459,Infrastructure,Infrastructure +512455,Infrastructure,Infrastructure +511059,Infrastructure,Infrastructure +511038,Infrastructure,Infrastructure +507173,Infrastructure,Infrastructure +507167,Infrastructure,Infrastructure +507166,Infrastructure,Infrastructure +507164,Infrastructure,Infrastructure +507155,Infrastructure,Infrastructure +507150,Infrastructure,Infrastructure +507149,Infrastructure,Infrastructure +504046,Infrastructure,Infrastructure +504044,Infrastructure,Infrastructure +504038,Infrastructure,Infrastructure +504036,Infrastructure,Infrastructure +504034,Infrastructure,Infrastructure +504031,Infrastructure,Infrastructure +504029,Infrastructure,Infrastructure +504012,Infrastructure,Infrastructure +501116,Infrastructure,Infrastructure +497285,Infrastructure,Infrastructure +494252,Infrastructure,Infrastructure +494250,Infrastructure,Infrastructure +492574,Infrastructure,Infrastructure +490450,Taxation and Finance,Taxation and Finance +488050,Taxation and Finance,Taxation and Finance +544191,Taxation and Finance,Taxation and Finance +541677,Taxation and Finance,Taxation and Finance +539808,Taxation and Finance,Taxation and Finance +536036,Taxation and Finance,Taxation and Finance +536035,Taxation and Finance,Taxation and Finance +532028,Taxation and Finance,Taxation and Finance +529679,Taxation and Finance,Taxation and Finance +525986,Taxation and Finance,Taxation and Finance +525985,Taxation and Finance,Taxation and Finance +522655,Taxation and Finance,Taxation and Finance +519944,Taxation and Finance,Taxation and Finance +517612,Taxation and Finance,Taxation and Finance +517607,Taxation and Finance,Taxation and Finance +517600,Taxation and Finance,Taxation and Finance +515628,Taxation and Finance,Taxation and Finance +515627,Taxation and Finance,Taxation and Finance +513901,Taxation and Finance,Taxation and Finance +513899,Taxation and Finance,Taxation and Finance +512459,Taxation and Finance,Taxation and Finance +512455,Taxation and Finance,Taxation and Finance +511059,Taxation and Finance,Taxation and Finance +507173,Taxation and Finance,Taxation and Finance +507167,Taxation and Finance,Taxation and Finance +507166,Taxation and Finance,Taxation and Finance +507164,Taxation and Finance,Taxation and Finance +507160,Taxation and Finance,Taxation and Finance +507155,Taxation and Finance,Taxation and Finance +507150,Taxation and Finance,Taxation and Finance +504037,Taxation and Finance,Taxation and Finance +504031,Taxation and Finance,Taxation and Finance +494252,Taxation and Finance,Taxation and Finance +492574,Transportation,Transportation +490450,Transportation,Transportation +539808,Transportation,Transportation +536036,Transportation,Transportation +536035,Transportation,Transportation +532028,Transportation,Transportation +529679,Transportation,Transportation +525986,Transportation,Transportation +525985,Transportation,Transportation +522655,Transportation,Transportation +517612,Transportation,Transportation +517607,Transportation,Transportation +510233,Economic Development,Economic Development +490180,Research and Development,Research and Development +487781,Research and Development,Research and Development +498715,Research and Development,Research and Development +495790,Research and Development,Research and Development +495789,Research and Development,Research and Development +495788,Research and Development,Research and Development +495786,Research and Development,Research and Development +495784,Research and Development,Research and Development +495782,Research and Development,Research and Development +493641,Research and Development,Research and Development +493638,Research and Development,Research and Development +490186,Research and Development,Research and Development +490184,Research and Development,Research and Development +490183,Research and Development,Research and Development +492032,Government Procurement,Government Procurement +491924,Government Procurement,Government Procurement +491922,Health,Health +489631,Health,Health +492034,Health,Health +492033,Health,Health +492032,Health,Health +489631,Research and Development,Research and Development +487894,Climate,Climate +487891,Climate,Climate +501754,Climate,Climate +498621,Climate,Climate +498620,Climate,Climate +495636,Climate,Climate +493277,Climate,Climate +493273,Climate,Climate +490503,Climate,Climate +490501,Climate,Climate +490499,Climate,Climate +490496,Climate,Climate +497121,Government Procurement,Government Procurement +488299,Government Procurement,Government Procurement +523920,Government Procurement,Government Procurement +520761,Government Procurement,Government Procurement +514948,Government Procurement,Government Procurement +497121,Defence,Defence +488299,Defence,Defence +500503,Defence,Defence +500497,Defence,Defence +505840,Infrastructure,Infrastructure +502873,Infrastructure,Infrastructure +499611,Infrastructure,Infrastructure +491528,Infrastructure,Infrastructure +491528,Labour,Labour +487537,Labour,Labour +492626,Infrastructure,Infrastructure +490013,Infrastructure,Infrastructure +528040,Infrastructure,Infrastructure +528037,Infrastructure,Infrastructure +524196,Infrastructure,Infrastructure +519023,Infrastructure,Infrastructure +519022,Infrastructure,Infrastructure +513554,Infrastructure,Infrastructure +510169,Infrastructure,Infrastructure +503870,Infrastructure,Infrastructure +501159,Infrastructure,Infrastructure +501156,Infrastructure,Infrastructure +501136,Infrastructure,Infrastructure +501130,Infrastructure,Infrastructure +501123,Infrastructure,Infrastructure +501121,Infrastructure,Infrastructure +497757,Infrastructure,Infrastructure +497756,Infrastructure,Infrastructure +497754,Infrastructure,Infrastructure +497753,Infrastructure,Infrastructure +497751,Infrastructure,Infrastructure +495016,Infrastructure,Infrastructure +495015,Infrastructure,Infrastructure +495013,Infrastructure,Infrastructure +495012,Infrastructure,Infrastructure +495011,Infrastructure,Infrastructure +495005,Infrastructure,Infrastructure +495003,Infrastructure,Infrastructure +495000,Infrastructure,Infrastructure +494998,Infrastructure,Infrastructure +492629,Infrastructure,Infrastructure +492628,Infrastructure,Infrastructure +492626,Economic Development,Economic Development +490013,Economic Development,Economic Development +528040,Economic Development,Economic Development +528037,Economic Development,Economic Development +524196,Economic Development,Economic Development +519023,Economic Development,Economic Development +519022,Economic Development,Economic Development +513554,Economic Development,Economic Development +510169,Economic Development,Economic Development +503870,Economic Development,Economic Development +501159,Economic Development,Economic Development +501156,Economic Development,Economic Development +501136,Economic Development,Economic Development +501130,Economic Development,Economic Development +501123,Economic Development,Economic Development +501121,Economic Development,Economic Development +497757,Economic Development,Economic Development +497756,Economic Development,Economic Development +497754,Economic Development,Economic Development +497753,Economic Development,Economic Development +497751,Economic Development,Economic Development +495016,Economic Development,Economic Development +495015,Economic Development,Economic Development +495013,Economic Development,Economic Development +495012,Economic Development,Economic Development +495011,Economic Development,Economic Development +495005,Economic Development,Economic Development +495003,Economic Development,Economic Development +495000,Economic Development,Economic Development +492629,Economic Development,Economic Development +492628,Economic Development,Economic Development +513554,Employment and Training,Employment and Training +510169,Employment and Training,Employment and Training +503870,Employment and Training,Employment and Training +501159,Employment and Training,Employment and Training +501156,Employment and Training,Employment and Training +501136,Employment and Training,Employment and Training +501130,Employment and Training,Employment and Training +501123,Employment and Training,Employment and Training +501121,Employment and Training,Employment and Training +497757,Employment and Training,Employment and Training +497756,Employment and Training,Employment and Training +497754,Employment and Training,Employment and Training +497753,Employment and Training,Employment and Training +497751,Employment and Training,Employment and Training +495016,Employment and Training,Employment and Training +495015,Employment and Training,Employment and Training +495013,Employment and Training,Employment and Training +495012,Employment and Training,Employment and Training +495011,Employment and Training,Employment and Training +495005,Employment and Training,Employment and Training +495003,Employment and Training,Employment and Training +495000,Employment and Training,Employment and Training +494998,Employment and Training,Employment and Training +492629,Employment and Training,Employment and Training +492628,Employment and Training,Employment and Training +492627,Employment and Training,Employment and Training +492626,Employment and Training,Employment and Training +490013,Employment and Training,Employment and Training +528040,Employment and Training,Employment and Training +528037,Employment and Training,Employment and Training +524196,Employment and Training,Employment and Training +519023,Employment and Training,Employment and Training +492626,Housing,Housing +490013,Housing,Housing +528040,Housing,Housing +528037,Housing,Housing +524196,Housing,Housing +519023,Housing,Housing +519022,Housing,Housing +513554,Housing,Housing +510169,Housing,Housing +503870,Housing,Housing +501159,Housing,Housing +501156,Housing,Housing +501136,Housing,Housing +501130,Housing,Housing +501123,Housing,Housing +501121,Housing,Housing +497757,Housing,Housing +497756,Housing,Housing +497754,Housing,Housing +497753,Housing,Housing +497751,Housing,Housing +495016,Housing,Housing +495015,Housing,Housing +495013,Housing,Housing +495012,Housing,Housing +495011,Housing,Housing +495005,Housing,Housing +495003,Housing,Housing +495000,Housing,Housing +494998,Housing,Housing +492629,Housing,Housing +492628,Housing,Housing +492627,Labour,Labour +492626,Labour,Labour +490013,Labour,Labour +528040,Labour,Labour +528037,Labour,Labour +524196,Labour,Labour +519023,Labour,Labour +519022,Labour,Labour +513554,Labour,Labour +510169,Labour,Labour +503870,Labour,Labour +501159,Labour,Labour +501156,Labour,Labour +501136,Labour,Labour +501130,Labour,Labour +501123,Labour,Labour +501121,Labour,Labour +497757,Labour,Labour +497756,Labour,Labour +497754,Labour,Labour +497753,Labour,Labour +497751,Labour,Labour +495016,Labour,Labour +495015,Labour,Labour +495013,Labour,Labour +495012,Labour,Labour +495011,Labour,Labour +495005,Labour,Labour +495003,Labour,Labour +495000,Labour,Labour +494998,Labour,Labour +492629,Labour,Labour +490366,Health,Health +488416,Health,Health +519253,Health,Health +507109,Health,Health +500422,Health,Health +500420,Health,Health +497484,Health,Health +494086,Health,Health +493952,Health,Health +485579,Infrastructure,Infrastructure +497348,Economic Development,Economic Development +493991,Economic Development,Economic Development +491492,Economic Development,Economic Development +485602,Economic Development,Economic Development +528609,Economic Development,Economic Development +525875,Economic Development,Economic Development +513855,Economic Development,Economic Development +513091,Economic Development,Economic Development +513090,Economic Development,Economic Development +513089,Economic Development,Economic Development +513088,Economic Development,Economic Development +510929,Economic Development,Economic Development +505926,Economic Development,Economic Development +505924,Economic Development,Economic Development +505923,Economic Development,Economic Development +502986,Economic Development,Economic Development +500162,Economic Development,Economic Development +500161,Economic Development,Economic Development +496719,Economic Development,Economic Development +519999,Employment and Training,Employment and Training +516986,Employment and Training,Employment and Training +525875,Employment and Training,Employment and Training +525874,Employment and Training,Employment and Training +522046,Employment and Training,Employment and Training +522045,Employment and Training,Employment and Training +522043,Employment and Training,Employment and Training +520011,Employment and Training,Employment and Training +520009,Employment and Training,Employment and Training +520007,Employment and Training,Employment and Training +520006,Employment and Training,Employment and Training +520004,Employment and Training,Employment and Training +520003,Employment and Training,Employment and Training +510164,Consumer Issues,Consumer Issues +510168,Consumer Issues,Consumer Issues +510167,Consumer Issues,Consumer Issues +510166,Health,Health +510164,Health,Health +520846,Health,Health +510168,Health,Health +498107,Transportation,Transportation +498106,Transportation,Transportation +527825,Transportation,Transportation +527824,Transportation,Transportation +527823,Transportation,Transportation +522104,Transportation,Transportation +519123,Transportation,Transportation +519122,Transportation,Transportation +514420,Transportation,Transportation +512413,Transportation,Transportation +512412,Transportation,Transportation +494684,Infrastructure,Infrastructure +494681,Infrastructure,Infrastructure +489590,Infrastructure,Infrastructure +489589,Infrastructure,Infrastructure +485811,Infrastructure,Infrastructure +485810,Infrastructure,Infrastructure +485810,Economic Development,Economic Development +485809,Economic Development,Economic Development +494684,Economic Development,Economic Development +494681,Economic Development,Economic Development +489590,Economic Development,Economic Development +489589,Economic Development,Economic Development +489587,Education,Education +489587,Privacy and Access to Information,Privacy and Access to Information +513772,Privacy and Access to Information,Privacy and Access to Information +508204,Privacy and Access to Information,Privacy and Access to Information +508202,Privacy and Access to Information,Privacy and Access to Information +508201,Privacy and Access to Information,Privacy and Access to Information +508198,Privacy and Access to Information,Privacy and Access to Information +498124,Privacy and Access to Information,Privacy and Access to Information +489588,Budget,Budget +489587,Budget,Budget +489588,Infrastructure,Infrastructure +502936,Industry,Industry +502935,Industry,Industry +498955,Industry,Industry +490286,Industry,Industry +492612,International Trade,International Trade +490286,International Trade,International Trade +504172,International Trade,International Trade +502936,International Trade,International Trade +494432,Small Business,Small Business +514999,Taxation and Finance,Taxation and Finance +510378,Taxation and Finance,Taxation and Finance +506037,Taxation and Finance,Taxation and Finance +494431,Taxation and Finance,Taxation and Finance +518608,Taxation and Finance,Taxation and Finance +518607,Taxation and Finance,Taxation and Finance +490729,Climate,Climate +487839,Climate,Climate +493882,Climate,Climate +493881,Climate,Climate +493880,Climate,Climate +490735,Climate,Climate +490733,Climate,Climate +490714,Economic Development,Economic Development +487839,Economic Development,Economic Development +493882,Economic Development,Economic Development +493881,Economic Development,Economic Development +493880,Economic Development,Economic Development +490735,Economic Development,Economic Development +490731,Economic Development,Economic Development +490714,Environment,Environment +487839,Environment,Environment +493882,Environment,Environment +493881,Environment,Environment +493880,Environment,Environment +490733,Environment,Environment +490729,Environment,Environment +490714,Research and Development,Research and Development +487839,Research and Development,Research and Development +493882,Research and Development,Research and Development +493881,Research and Development,Research and Development +493880,Research and Development,Research and Development +490735,Research and Development,Research and Development +490733,Research and Development,Research and Development +490731,Research and Development,Research and Development +490729,Research and Development,Research and Development +497804,Industry,Industry +496812,Industry,Industry +489695,Taxation and Finance,Taxation and Finance +488425,Taxation and Finance,Taxation and Finance +533954,Taxation and Finance,Taxation and Finance +533949,Taxation and Finance,Taxation and Finance +522752,Taxation and Finance,Taxation and Finance +486162,Employment and Training,Employment and Training +486161,Employment and Training,Employment and Training +502242,Employment and Training,Employment and Training +493831,Employment and Training,Employment and Training +485952,Taxation and Finance,Taxation and Finance +485896,Taxation and Finance,Taxation and Finance +501189,Taxation and Finance,Taxation and Finance +488753,Regional Development,Regional Development +488753,Economic Development,Economic Development +500417,Budget,Budget +500416,Budget,Budget +524255,Budget,Budget +524254,Budget,Budget +500419,Budget,Budget +520642,Consumer Issues,Consumer Issues +500419,Consumer Issues,Consumer Issues +500418,Consumer Issues,Consumer Issues +500417,Consumer Issues,Consumer Issues +500416,Consumer Issues,Consumer Issues +500417,Financial Institutions,Financial Institutions +500416,Financial Institutions,Financial Institutions +488419,Financial Institutions,Financial Institutions +488418,Financial Institutions,Financial Institutions +527054,Financial Institutions,Financial Institutions +524255,Financial Institutions,Financial Institutions +524254,Financial Institutions,Financial Institutions +520642,Financial Institutions,Financial Institutions +500419,Financial Institutions,Financial Institutions +500417,Industry,Industry +500416,Industry,Industry +524255,Industry,Industry +520642,Industry,Industry +500419,Industry,Industry +500417,Privacy and Access to Information,Privacy and Access to Information +500416,Privacy and Access to Information,Privacy and Access to Information +527054,Privacy and Access to Information,Privacy and Access to Information +500419,Privacy and Access to Information,Privacy and Access to Information +489972,Economic Development,Economic Development +486559,Economic Development,Economic Development +489972,International Trade,International Trade +486559,International Trade,International Trade +489287,Economic Development,Economic Development +489286,Economic Development,Economic Development +536523,Economic Development,Economic Development +536522,Economic Development,Economic Development +536521,Economic Development,Economic Development +527355,Economic Development,Economic Development +527354,Economic Development,Economic Development +527353,Economic Development,Economic Development +527351,Economic Development,Economic Development +518877,Economic Development,Economic Development +518875,Economic Development,Economic Development +509635,Economic Development,Economic Development +506824,Economic Development,Economic Development +503669,Economic Development,Economic Development +503668,Economic Development,Economic Development +503667,Economic Development,Economic Development +503666,Economic Development,Economic Development +503665,Economic Development,Economic Development +501094,Economic Development,Economic Development +501090,Economic Development,Economic Development +501088,Economic Development,Economic Development +494500,Economic Development,Economic Development +494499,Economic Development,Economic Development +492538,Economic Development,Economic Development +500507,Environment,Environment +500506,Environment,Environment +536519,Environment,Environment +494500,International Trade,International Trade +492539,International Trade,International Trade +524276,International Trade,International Trade +506824,International Trade,International Trade +506822,International Trade,International Trade +506821,International Trade,International Trade +503669,International Trade,International Trade +503668,International Trade,International Trade +503667,International Trade,International Trade +503665,International Trade,International Trade +501094,International Trade,International Trade +501091,International Trade,International Trade +501090,International Trade,International Trade +501088,International Trade,International Trade +500505,International Trade,International Trade +497439,International Trade,International Trade +506822,Regional Development,Regional Development +497439,Regional Development,Regional Development +536519,Regional Development,Regional Development +509635,Regional Development,Regional Development +489286,Tourism,Tourism +489287,Transportation,Transportation +489286,Transportation,Transportation +536520,Transportation,Transportation +524276,Transportation,Transportation +501094,Transportation,Transportation +501091,Transportation,Transportation +501090,Transportation,Transportation +494501,Transportation,Transportation +494848,Economic Development,Economic Development +494066,Economic Development,Economic Development +511727,Economic Development,Economic Development +505319,Economic Development,Economic Development +488179,Small Business,Small Business +488178,Small Business,Small Business +513047,Small Business,Small Business +508397,Small Business,Small Business +508394,Small Business,Small Business +505320,Small Business,Small Business +505319,Small Business,Small Business +503163,Small Business,Small Business +502001,Small Business,Small Business +497028,Small Business,Small Business +495425,Small Business,Small Business +495410,Small Business,Small Business +494848,Small Business,Small Business +494068,Small Business,Small Business +494066,Small Business,Small Business +494068,Tourism,Tourism +494066,Tourism,Tourism +513047,Tourism,Tourism +511727,Tourism,Tourism +508397,Tourism,Tourism +508394,Tourism,Tourism +521102,Regional Development,Regional Development +503393,Regional Development,Regional Development +500255,Regional Development,Regional Development +486433,Regional Development,Regional Development +522752,Economic Development,Economic Development +526027,Environment,Environment +528139,Industry,Industry +521390,Taxation and Finance,Taxation and Finance +506518,Taxation and Finance,Taxation and Finance +494340,Taxation and Finance,Taxation and Finance +490933,Taxation and Finance,Taxation and Finance +490932,Taxation and Finance,Taxation and Finance +485897,Taxation and Finance,Taxation and Finance +489076,Employment and Training,Employment and Training +485924,Economic Development,Economic Development +485922,Economic Development,Economic Development +500489,Economic Development,Economic Development +499899,Economic Development,Economic Development +499874,Economic Development,Economic Development +499873,Economic Development,Economic Development +499872,Economic Development,Economic Development +499865,Economic Development,Economic Development +498669,Economic Development,Economic Development +498667,Economic Development,Economic Development +486874,Agriculture,Agriculture +513802,Agriculture,Agriculture +490511,Agriculture,Agriculture +490509,Agriculture,Agriculture +486881,Agriculture,Agriculture +486877,Economic Development,Economic Development +486874,Economic Development,Economic Development +513802,Economic Development,Economic Development +490509,Economic Development,Economic Development +486877,Industry,Industry +486874,Industry,Industry +513802,Industry,Industry +490511,Industry,Industry +490509,Industry,Industry +489290,Industry,Industry +485942,Industry,Industry +543179,Industry,Industry +539127,Industry,Industry +536226,Industry,Industry +528311,Industry,Industry +526875,Industry,Industry +526874,Industry,Industry +503297,Industry,Industry +499963,Industry,Industry +499961,Industry,Industry +496264,Research and Development,Research and Development +496264,Agriculture,Agriculture +494673,Agriculture,Agriculture +523296,Labour,Labour +523295,Labour,Labour +508723,Labour,Labour +506069,Labour,Labour +502659,Labour,Labour +502655,Labour,Labour +487943,Labour,Labour +535900,Labour,Labour +535899,Labour,Labour +535898,Labour,Labour +515029,Budget,Budget +485997,Budget,Budget +531973,Budget,Budget +528335,Consumer Issues,Consumer Issues +515029,Consumer Issues,Consumer Issues +485997,Environment,Environment +515029,Housing,Housing +485997,Housing,Housing +542234,Housing,Housing +531973,Housing,Housing +528335,Infrastructure,Infrastructure +515029,Taxation and Finance,Taxation and Finance +485997,Taxation and Finance,Taxation and Finance +531973,Taxation and Finance,Taxation and Finance +492355,Education,Education +489444,Education,Education +507800,Education,Education +507795,Education,Education +499803,Education,Education +489444,Employment and Training,Employment and Training +489435,Employment and Training,Employment and Training +507800,Employment and Training,Employment and Training +507798,Employment and Training,Employment and Training +507795,Employment and Training,Employment and Training +503978,Employment and Training,Employment and Training +503977,Employment and Training,Employment and Training +503976,Employment and Training,Employment and Training +499804,Employment and Training,Employment and Training +499803,Employment and Training,Employment and Training +494660,Employment and Training,Employment and Training +494388,Employment and Training,Employment and Training +494202,Employment and Training,Employment and Training +494201,Employment and Training,Employment and Training +493889,Employment and Training,Employment and Training +492356,Employment and Training,Employment and Training +492355,Employment and Training,Employment and Training +489447,Employment and Training,Employment and Training +489442,Labour,Labour +489435,Labour,Labour +507798,Labour,Labour +507795,Labour,Labour +503978,Labour,Labour +503977,Labour,Labour +499803,Labour,Labour +494660,Labour,Labour +494388,Labour,Labour +494201,Labour,Labour +493889,Labour,Labour +492356,Labour,Labour +492355,Labour,Labour +489447,Labour,Labour +489446,Labour,Labour +533947,Climate,Climate +533945,Climate,Climate +501297,Climate,Climate +541442,Climate,Climate +541440,Economic Development,Economic Development +539191,Environment,Environment +533947,Environment,Environment +533945,Environment,Environment +501297,Environment,Environment +541442,Industry,Industry +541440,Industry,Industry +539192,Industry,Industry +539191,Industry,Industry +533947,Industry,Industry +490294,Health,Health +490291,Health,Health +492388,Health,Health +492385,Health,Health +490331,Health,Health +490327,Health,Health +490310,Health,Health +490308,Health,Health +490307,Health,Health +490306,Health,Health +490304,Health,Health +490302,Health,Health +490301,Health,Health +490299,Health,Health +490298,Health,Health +490296,Health,Health +490294,Labour,Labour +490291,Labour,Labour +492388,Labour,Labour +492385,Labour,Labour +490331,Labour,Labour +490327,Labour,Labour +490310,Labour,Labour +490308,Labour,Labour +490307,Labour,Labour +490306,Labour,Labour +490304,Labour,Labour +490302,Labour,Labour +490301,Labour,Labour +490299,Labour,Labour +490298,Labour,Labour +490296,Labour,Labour +490294,Employment and Training,Employment and Training +490291,Employment and Training,Employment and Training +492388,Employment and Training,Employment and Training +492385,Employment and Training,Employment and Training +490331,Employment and Training,Employment and Training +490327,Employment and Training,Employment and Training +490310,Employment and Training,Employment and Training +490308,Employment and Training,Employment and Training +490307,Employment and Training,Employment and Training +490306,Employment and Training,Employment and Training +490304,Employment and Training,Employment and Training +490302,Employment and Training,Employment and Training +490301,Employment and Training,Employment and Training +490299,Employment and Training,Employment and Training +490298,Employment and Training,Employment and Training +490296,Employment and Training,Employment and Training +490294,Budget,Budget +490291,Budget,Budget +492388,Budget,Budget +492385,Budget,Budget +490331,Budget,Budget +490327,Budget,Budget +490310,Budget,Budget +490308,Budget,Budget +490307,Budget,Budget +490306,Budget,Budget +490304,Budget,Budget +490302,Budget,Budget +490301,Budget,Budget +490299,Budget,Budget +490298,Budget,Budget +490296,Budget,Budget +490294,Economic Development,Economic Development +490291,Economic Development,Economic Development +492388,Economic Development,Economic Development +492385,Economic Development,Economic Development +490331,Economic Development,Economic Development +490327,Economic Development,Economic Development +490310,Economic Development,Economic Development +490308,Economic Development,Economic Development +490307,Economic Development,Economic Development +490306,Economic Development,Economic Development +490304,Economic Development,Economic Development +490302,Economic Development,Economic Development +490301,Economic Development,Economic Development +490299,Economic Development,Economic Development +490298,Economic Development,Economic Development +490296,Economic Development,Economic Development +487403,Environment,Environment +487155,Health,Health +535228,Health,Health +490807,Health,Health +490807,Research and Development,Research and Development +540297,Economic Development,Economic Development +488309,Government Procurement,Government Procurement +491060,Employment and Training,Employment and Training +491060,Health,Health +511639,Budget,Budget +513444,Budget,Budget +513443,Budget,Budget +494589,Education,Education +492122,Education,Education +530385,Education,Education +520255,Education,Education +520254,Education,Education +517319,Education,Education +516163,Education,Education +513507,Education,Education +513506,Education,Education +513444,Education,Education +513443,Education,Education +512020,Education,Education +512019,Education,Education +511640,Education,Education +511639,Education,Education +510897,Education,Education +510896,Education,Education +510894,Education,Education +510889,Employment and Training,Employment and Training +489812,Employment and Training,Employment and Training +516163,Employment and Training,Employment and Training +513507,Employment and Training,Employment and Training +513506,Employment and Training,Employment and Training +513444,Employment and Training,Employment and Training +513443,Employment and Training,Employment and Training +512020,Employment and Training,Employment and Training +512019,Employment and Training,Employment and Training +511640,Employment and Training,Employment and Training +511639,Employment and Training,Employment and Training +510897,Employment and Training,Employment and Training +510896,Employment and Training,Employment and Training +510889,Infrastructure,Infrastructure +509429,Infrastructure,Infrastructure +513444,Infrastructure,Infrastructure +513443,Infrastructure,Infrastructure +511639,Infrastructure,Infrastructure +510897,Infrastructure,Infrastructure +510896,Infrastructure,Infrastructure +489601,Environment,Environment +489600,Environment,Environment +492542,Environment,Environment +492541,Environment,Environment +489603,Environment,Environment +489601,Transportation,Transportation +489600,Transportation,Transportation +492542,Transportation,Transportation +492541,Transportation,Transportation +489603,Transportation,Transportation +489601,Industry,Industry +489600,Industry,Industry +492542,Industry,Industry +492541,Industry,Industry +489603,Industry,Industry +494065,Agriculture,Agriculture +494063,Agriculture,Agriculture +538577,Agriculture,Agriculture +538576,Agriculture,Agriculture +530685,Agriculture,Agriculture +522039,Agriculture,Agriculture +520955,Agriculture,Agriculture +518580,Agriculture,Agriculture +517105,Agriculture,Agriculture +498533,Agriculture,Agriculture +497743,Agriculture,Agriculture +497743,Budget,Budget +497008,Budget,Budget +538577,Budget,Budget +538576,Budget,Budget +530685,Budget,Budget +494065,International Trade,International Trade +494063,International Trade,International Trade +538577,International Trade,International Trade +538576,International Trade,International Trade +522039,International Trade,International Trade +520955,International Trade,International Trade +518580,International Trade,International Trade +517105,International Trade,International Trade +509811,International Trade,International Trade +500528,International Trade,International Trade +500526,International Trade,International Trade +498533,International Trade,International Trade +497743,International Trade,International Trade +497008,International Trade,International Trade +497006,International Trade,International Trade +491963,Taxation and Finance,Taxation and Finance +489206,Taxation and Finance,Taxation and Finance +538577,Taxation and Finance,Taxation and Finance +538576,Taxation and Finance,Taxation and Finance +530685,Taxation and Finance,Taxation and Finance +522039,Taxation and Finance,Taxation and Finance +520955,Taxation and Finance,Taxation and Finance +518580,Taxation and Finance,Taxation and Finance +517105,Taxation and Finance,Taxation and Finance +509811,Taxation and Finance,Taxation and Finance +500528,Taxation and Finance,Taxation and Finance +500526,Taxation and Finance,Taxation and Finance +498533,Taxation and Finance,Taxation and Finance +497743,Taxation and Finance,Taxation and Finance +497008,Taxation and Finance,Taxation and Finance +497006,Taxation and Finance,Taxation and Finance +494850,Taxation and Finance,Taxation and Finance +494065,Taxation and Finance,Taxation and Finance +494064,Agriculture,Agriculture +518581,Agriculture,Agriculture +512030,Agriculture,Agriculture +497742,Budget,Budget +497009,Budget,Budget +497007,International Trade,International Trade +494064,International Trade,International Trade +518581,International Trade,International Trade +509813,International Trade,International Trade +505057,International Trade,International Trade +500527,International Trade,International Trade +497742,International Trade,International Trade +491964,Taxation and Finance,Taxation and Finance +489205,Taxation and Finance,Taxation and Finance +518581,Taxation and Finance,Taxation and Finance +509813,Taxation and Finance,Taxation and Finance +500527,Taxation and Finance,Taxation and Finance +497742,Taxation and Finance,Taxation and Finance +497009,Taxation and Finance,Taxation and Finance +497007,Taxation and Finance,Taxation and Finance +494720,International Trade,International Trade +493077,International Trade,International Trade +489056,International Trade,International Trade +489055,International Trade,International Trade +489054,International Trade,International Trade +489053,International Trade,International Trade +492255,Health,Health +488169,Financial Institutions,Financial Institutions +488169,Small Business,Small Business +488169,Taxation and Finance,Taxation and Finance +488169,Consumer Issues,Consumer Issues +488169,Transportation,Transportation +492537,Economic Development,Economic Development +518876,Environment,Environment +509634,Health,Health +497438,International Trade,International Trade +506824,Regional Development,Regional Development +489287,Tourism,Tourism +494499,Transportation,Transportation +495410,Economic Development,Economic Development +493236,Small Business,Small Business +505319,Tourism,Tourism +538791,Regional Development,Regional Development +486427,Small Business,Small Business +539190,Economic Development,Economic Development +533951,Environment,Environment +485895,Industry,Industry +485895,Taxation and Finance,Taxation and Finance +505141,Industry,Industry +505141,Economic Development,Economic Development +490610,Taxation and Finance,Taxation and Finance +534769,Taxation and Finance,Taxation and Finance +494117,Employment and Training,Employment and Training +485914,Climate,Climate +485914,Consumer Issues,Consumer Issues +485914,Infrastructure,Infrastructure +485914,Municipalities,Municipalities +494978,Economic Development,Economic Development +500488,International Trade,International Trade +499865,Mining,Mining +494518,Economic Development,Economic Development +486877,Agriculture,Agriculture +486881,Economic Development,Economic Development +490511,Health,Health +486881,Industry,Industry +499960,Industry,Industry +499914,Research and Development,Research and Development +499914,Agriculture,Agriculture +486045,Economic Development,Economic Development +523298,Labour,Labour +528335,Budget,Budget +531973,Consumer Issues,Consumer Issues +485997,Employment and Training,Employment and Training +515029,Environment,Environment +528335,Housing,Housing +531973,Infrastructure,Infrastructure +528335,Taxation and Finance,Taxation and Finance +494201,Education,Education +489446,Employment and Training,Employment and Training +489444,Labour,Labour +541440,Climate,Climate +541442,Economic Development,Economic Development +508433,Employment and Training,Employment and Training +539192,Environment,Environment +533945,Industry,Industry +490295,Health,Health +490295,Labour,Labour +490295,Employment and Training,Employment and Training +490295,Budget,Budget +490295,Economic Development,Economic Development +486035,Health,Health +501874,Environment,Environment +499918,Health,Health +493420,Health,Health +489115,Economic Development,Economic Development +489115,Employment and Training,Employment and Training +489115,Research and Development,Research and Development +540297,Health,Health +535228,Research and Development,Research and Development +490807,Economic Development,Economic Development +488913,Defence,Defence +488913,Government Procurement,Government Procurement +491063,Employment and Training,Employment and Training +491063,Health,Health +511640,Budget,Budget +510889,Education,Education +510894,Employment and Training,Employment and Training +510894,Infrastructure,Infrastructure +488716,Economic Development,Economic Development +488716,Transportation,Transportation +486303,Taxation and Finance,Taxation and Finance +489602,Environment,Environment +489602,Transportation,Transportation +489602,Industry,Industry +494850,Agriculture,Agriculture +520955,Budget,Budget +494850,International Trade,International Trade +494063,Taxation and Finance,Taxation and Finance +497742,Agriculture,Agriculture +505057,Budget,Budget +497009,International Trade,International Trade +494064,Taxation and Finance,Taxation and Finance +505151,International Trade,International Trade +490406,Transportation,Transportation +490406,Economic Development,Economic Development +506186,Consumer Issues,Consumer Issues +491078,Agriculture,Agriculture +495583,Health,Health +491540,Research and Development,Research and Development +493707,Health,Health +493707,Research and Development,Research and Development +486405,Elections,Elections +488246,Budget,Budget +488246,Housing,Housing +488246,Municipalities,Municipalities +492651,Health,Health +502749,Housing,Housing +535166,Housing,Housing +539612,Budget,Budget +489728,Taxation and Finance,Taxation and Finance +494624,Energy,Energy +494624,Environment,Environment +494624,Housing,Housing +489257,Municipalities,Municipalities +497662,Transportation,Transportation +497660,Climate,Climate +489252,Environment,Environment +489254,Housing,Housing +507075,Infrastructure,Infrastructure +498831,Consumer Issues,Consumer Issues +490393,Financial Institutions,Financial Institutions +489732,Government Procurement,Government Procurement +498831,Industry,Industry +498831,Privacy and Access to Information,Privacy and Access to Information +500952,Security,Security +494312,Infrastructure,Infrastructure +489814,Economic Development,Economic Development +487374,Economic Development,Economic Development +495151,Education,Education +508276,Employment and Training,Employment and Training +508273,Labour,Labour +486716,Economic Development,Economic Development +488555,Economic Development,Economic Development +521941,Economic Development,Economic Development +486727,Economic Development,Economic Development +486729,Economic Development,Economic Development +486731,Economic Development,Economic Development +486735,Economic Development,Economic Development +486738,Economic Development,Economic Development +486737,Regional Development,Regional Development +486747,Economic Development,Economic Development +486748,Economic Development,Economic Development +486749,Economic Development,Economic Development +486751,Economic Development,Economic Development +486752,Economic Development,Economic Development +521951,Economic Development,Economic Development +496475,Economic Development,Economic Development +487367,Economic Development,Economic Development +487367,Infrastructure,Infrastructure +487367,Transportation,Transportation +510800,Economic Development,Economic Development +510800,Infrastructure,Infrastructure +510800,Transportation,Transportation +486798,Environment,Environment +486854,Health,Health +508164,Consumer Issues,Consumer Issues +508175,Taxation and Finance,Taxation and Finance +494725,Consumer Issues,Consumer Issues +494725,Industry,Industry +494725,Intellectual Property,Intellectual Property +494725,Security,Security +493885,Health,Health +493885,Research and Development,Research and Development +493885,Small Business,Small Business +489805,Economic Development,Economic Development +489805,Employment and Training,Employment and Training +489805,Housing,Housing +489805,Infrastructure,Infrastructure +489805,Municipalities,Municipalities +489805,Tourism,Tourism +530461,Economic Development,Economic Development +528136,International Trade,International Trade +495608,Research and Development,Research and Development +510800,Regional Development,Regional Development +487367,Regional Development,Regional Development +521940,Economic Development,Economic Development +521950,Economic Development,Economic Development +505971,Consumer Issues,Consumer Issues +505971,Industry,Industry +487164,Privacy and Access to Information,Privacy and Access to Information +491153,Infrastructure,Infrastructure +492135,Defence,Defence +492135,Small Business,Small Business +495956,Tourism,Tourism +493662,Economic Development,Economic Development +488068,International Trade,International Trade +494686,Research and Development,Research and Development +526525,Government Procurement,Government Procurement +495972,Regional Development,Regional Development +495972,Tourism,Tourism +491625,Health,Health +495962,Regional Development,Regional Development +495963,Tourism,Tourism +498339,Infrastructure,Infrastructure +498331,Regional Development,Regional Development +487270,Taxation and Finance,Taxation and Finance +499607,Energy,Energy +499607,Infrastructure,Infrastructure +499607,Regional Development,Regional Development +495960,Regional Development,Regional Development +495960,Tourism,Tourism +495965,Regional Development,Regional Development +495965,Tourism,Tourism +495952,Regional Development,Regional Development +495952,Tourism,Tourism +489017,Research and Development,Research and Development +490178,Justice and Law Enforcement,Justice and Law Enforcement +487318,Forestry,Forestry +487326,Justice and Law Enforcement,Justice and Law Enforcement +494847,Infrastructure,Infrastructure +498123,Industry,Industry +487388,Regional Development,Regional Development +490005,Tourism,Tourism +526649,Forestry,Forestry +488741,Economic Development,Economic Development +488741,Health,Health +488740,Research and Development,Research and Development +523798,Infrastructure,Infrastructure +523786,Energy,Energy +499825,Economic Development,Economic Development +519920,Environment,Environment +487651,Infrastructure,Infrastructure +490924,Immigration,Immigration +487657,Small Business,Small Business +487657,Privacy and Access to Information,Privacy and Access to Information +487660,Economic Development,Economic Development +487661,Economic Development,Economic Development +487662,Economic Development,Economic Development +487663,Economic Development,Economic Development +487664,Economic Development,Economic Development +487665,Economic Development,Economic Development +487666,Economic Development,Economic Development +487667,Economic Development,Economic Development +487668,Economic Development,Economic Development +511113,Regional Development,Regional Development +511112,Tourism,Tourism +487865,International Trade,International Trade +499115,Regional Development,Regional Development +499113,Regional Development,Regional Development +531582,Defence,Defence +508516,Health,Health +494434,Sports,Sports +528178,Tourism,Tourism +511908,International Trade,International Trade +496917,Economic Development,Economic Development +540595,Tourism,Tourism +488051,Small Business,Small Business +497541,Economic Development,Economic Development +517281,Employment and Training,Employment and Training +499314,Government Procurement,Government Procurement +516478,Industry,Industry +517281,International Trade,International Trade +500105,Research and Development,Research and Development +492348,Health,Health +488098,Government Procurement,Government Procurement +507726,International Relations,International Relations +488112,Climate,Climate +539866,Economic Development,Economic Development +491719,Housing,Housing +539866,Regional Development,Regional Development +488259,Defence,Defence +513021,Government Procurement,Government Procurement +488272,Research and Development,Research and Development +495748,Small Business,Small Business +488315,Research and Development,Research and Development +504373,Labour,Labour +500282,Budget,Budget +500282,Health,Health +500282,Research and Development,Research and Development +500282,Economic Development,Economic Development +500132,International Trade,Commerce international +500132,Agriculture,Agriculture +500132,Internal Trade,Commerce intérieur +505875,Economic Development,Economic Development +505875,Regional Development,Regional Development +505875,Housing,Housing +503800,Employment and Training,Employment and Training +518225,Climate,Climate +518225,Energy,Energy +518225,Environment,Environment +518225,Industry,Industry +518222,Taxation and Finance,Taxation and Finance +535923,Budget,Budget +496270,Taxation and Finance,Taxation and Finance +494360,Immigration,Immigration +489050,International Trade,International Trade +489049,International Trade,International Trade +486343,International Trade,International Trade +508084,International Trade,International Trade +502323,Consumer Issues,Consumer Issues +501026,Consumer Issues,Consumer Issues +496469,Consumer Issues,Consumer Issues +495277,Consumer Issues,Consumer Issues +494526,Consumer Issues,Consumer Issues +493847,Consumer Issues,Consumer Issues +492507,Consumer Issues,Consumer Issues +489563,Consumer Issues,Consumer Issues +518586,Consumer Issues,Consumer Issues +507114,Consumer Issues,Consumer Issues +507113,Consumer Issues,Consumer Issues +491064,Agriculture,Agriculture +486351,Agriculture,Agriculture +491079,Agriculture,Agriculture +494022,Health,Health +493512,Health,Health +491526,Research and Development,Research and Development +491573,Health,Health +491573,Research and Development,Research and Development +486408,Health,Health +514255,Housing,Housing +505278,Housing,Housing +531188,Housing,Housing +537416,Budget,Budget +533811,Budget,Budget +528656,Budget,Budget +528655,Budget,Budget +522337,Budget,Budget +522327,Budget,Budget +515093,Budget,Budget +514443,Budget,Budget +513708,Budget,Budget +513707,Budget,Budget +513706,Budget,Budget +510214,Budget,Budget +507445,Budget,Budget +507436,Budget,Budget +507242,Budget,Budget +507240,Budget,Budget +504140,Budget,Budget +504137,Budget,Budget +504136,Budget,Budget +504135,Budget,Budget +501445,Budget,Budget +501443,Budget,Budget +498344,Budget,Budget +498341,Budget,Budget +498337,Budget,Budget +498335,Budget,Budget +498332,Budget,Budget +498330,Budget,Budget +498327,Budget,Budget +498326,Budget,Budget +498324,Budget,Budget +498320,Budget,Budget +498319,Budget,Budget +498318,Budget,Budget +498317,Budget,Budget +498316,Budget,Budget +498315,Budget,Budget +498313,Budget,Budget +498312,Budget,Budget +498311,Budget,Budget +498310,Budget,Budget +498309,Budget,Budget +498304,Budget,Budget +498302,Budget,Budget +498298,Budget,Budget +498287,Budget,Budget +498286,Budget,Budget +498284,Budget,Budget +498278,Budget,Budget +498276,Budget,Budget +498274,Budget,Budget +498272,Budget,Budget +498271,Budget,Budget +498269,Budget,Budget +498267,Budget,Budget +498266,Budget,Budget +498264,Budget,Budget +498262,Budget,Budget +498261,Budget,Budget +498260,Budget,Budget +498259,Budget,Budget +498258,Budget,Budget +498257,Budget,Budget +498255,Budget,Budget +498254,Budget,Budget +498252,Budget,Budget +498251,Budget,Budget +498249,Budget,Budget +498246,Budget,Budget +498245,Budget,Budget +497759,Budget,Budget +497758,Budget,Budget +497668,Budget,Budget +495497,Budget,Budget +492649,Budget,Budget +486440,Budget,Budget +543287,Budget,Budget +541675,Budget,Budget +486445,Taxation and Finance,Taxation and Finance +494623,Energy,Energy +494622,Energy,Energy +494623,Environment,Environment +494622,Environment,Environment +494623,Housing,Housing +494622,Housing,Housing +489256,Municipalities,Municipalities +489255,Municipalities,Municipalities +489254,Municipalities,Municipalities +489253,Municipalities,Municipalities +489252,Municipalities,Municipalities +489250,Municipalities,Municipalities +489249,Municipalities,Municipalities +489248,Municipalities,Municipalities +489247,Municipalities,Municipalities +489246,Municipalities,Municipalities +489244,Municipalities,Municipalities +489234,Municipalities,Municipalities +488336,Municipalities,Municipalities +488335,Municipalities,Municipalities +486616,Municipalities,Municipalities +508682,Municipalities,Municipalities +507081,Municipalities,Municipalities +507079,Municipalities,Municipalities +507078,Municipalities,Municipalities +507077,Municipalities,Municipalities +507076,Municipalities,Municipalities +507075,Municipalities,Municipalities +507074,Municipalities,Municipalities +507070,Municipalities,Municipalities +504270,Municipalities,Municipalities +504268,Municipalities,Municipalities +504267,Municipalities,Municipalities +504266,Municipalities,Municipalities +501842,Municipalities,Municipalities +497675,Municipalities,Municipalities +497674,Municipalities,Municipalities +497673,Municipalities,Municipalities +497672,Municipalities,Municipalities +497671,Municipalities,Municipalities +497662,Municipalities,Municipalities +497660,Municipalities,Municipalities +497658,Municipalities,Municipalities +497655,Municipalities,Municipalities +494808,Municipalities,Municipalities +492656,Municipalities,Municipalities +492655,Municipalities,Municipalities +489266,Municipalities,Municipalities +489265,Municipalities,Municipalities +489260,Municipalities,Municipalities +489259,Municipalities,Municipalities +497660,Transportation,Transportation +497655,Transportation,Transportation +504270,Transportation,Transportation +497672,Transportation,Transportation +497671,Transportation,Transportation +497655,Climate,Climate +489247,Climate,Climate +507075,Climate,Climate +507070,Climate,Climate +504267,Climate,Climate +497674,Climate,Climate +497673,Climate,Climate +497672,Climate,Climate +497671,Climate,Climate +497662,Climate,Climate +489249,Environment,Environment +489247,Environment,Environment +507075,Environment,Environment +507070,Environment,Environment +504268,Environment,Environment +504267,Environment,Environment +497674,Environment,Environment +497673,Environment,Environment +497672,Environment,Environment +497671,Environment,Environment +497662,Environment,Environment +497660,Environment,Environment +497655,Environment,Environment +489265,Environment,Environment +489260,Environment,Environment +489257,Environment,Environment +489252,Housing,Housing +489244,Housing,Housing +489266,Housing,Housing +489260,Housing,Housing +507070,Infrastructure,Infrastructure +504268,Infrastructure,Infrastructure +504267,Infrastructure,Infrastructure +497674,Infrastructure,Infrastructure +497673,Infrastructure,Infrastructure +497672,Infrastructure,Infrastructure +497671,Infrastructure,Infrastructure +497662,Infrastructure,Infrastructure +497660,Infrastructure,Infrastructure +497655,Infrastructure,Infrastructure +489265,Infrastructure,Infrastructure +489260,Infrastructure,Infrastructure +489256,Infrastructure,Infrastructure +489252,Infrastructure,Infrastructure +489248,Infrastructure,Infrastructure +490393,Consumer Issues,Consumer Issues +489732,Consumer Issues,Consumer Issues +500952,Consumer Issues,Consumer Issues +489732,Financial Institutions,Financial Institutions +490393,Industry,Industry +489732,Industry,Industry +500952,Industry,Industry +490393,Privacy and Access to Information,Privacy and Access to Information +489732,Privacy and Access to Information,Privacy and Access to Information +500952,Privacy and Access to Information,Privacy and Access to Information +498831,Security,Security +489732,Security,Security +493984,Infrastructure,Infrastructure +493874,Infrastructure,Infrastructure +527478,Infrastructure,Infrastructure +503183,Infrastructure,Infrastructure +496793,Infrastructure,Infrastructure +494666,Infrastructure,Infrastructure +489813,Economic Development,Economic Development +486676,Economic Development,Economic Development +528488,Economic Development,Economic Development +514650,Economic Development,Economic Development +511646,Economic Development,Economic Development +510017,Economic Development,Economic Development +509080,Economic Development,Economic Development +497942,Economic Development,Economic Development +497896,Economic Development,Economic Development +494892,Economic Development,Economic Development +494890,Economic Development,Economic Development +494886,Economic Development,Economic Development +494884,Economic Development,Economic Development +494882,Economic Development,Economic Development +494881,Economic Development,Economic Development +492572,Economic Development,Economic Development +489822,Economic Development,Economic Development +489821,Economic Development,Economic Development +489818,Economic Development,Economic Development +541178,Economic Development,Economic Development +537527,Economic Development,Economic Development +525322,Economic Development,Economic Development +525315,Economic Development,Economic Development +511648,Economic Development,Economic Development +511647,Economic Development,Economic Development +510318,Economic Development,Economic Development +501100,Economic Development,Economic Development +497944,Economic Development,Economic Development +497943,Economic Development,Economic Development +497941,Economic Development,Economic Development +497899,Economic Development,Economic Development +497898,Economic Development,Economic Development +497897,Economic Development,Economic Development +494894,Economic Development,Economic Development +494893,Economic Development,Economic Development +494891,Economic Development,Economic Development +494889,Economic Development,Economic Development +494888,Economic Development,Economic Development +494887,Economic Development,Economic Development +494883,Economic Development,Economic Development +492575,Economic Development,Economic Development +489820,Economic Development,Economic Development +489819,Economic Development,Economic Development +489817,Economic Development,Economic Development +489816,Economic Development,Economic Development +508273,Employment and Training,Employment and Training +508272,Employment and Training,Employment and Training +495153,Employment and Training,Employment and Training +495151,Employment and Training,Employment and Training +492342,Employment and Training,Employment and Training +492341,Employment and Training,Employment and Training +492340,Employment and Training,Employment and Training +492339,Employment and Training,Employment and Training +522632,Employment and Training,Employment and Training +520156,Employment and Training,Employment and Training +520154,Employment and Training,Employment and Training +520153,Employment and Training,Employment and Training +520151,Employment and Training,Employment and Training +514685,Employment and Training,Employment and Training +514080,Employment and Training,Employment and Training +508288,Employment and Training,Employment and Training +508285,Employment and Training,Employment and Training +508284,Employment and Training,Employment and Training +508277,Employment and Training,Employment and Training +486724,Economic Development,Economic Development +486725,Economic Development,Economic Development +486754,Economic Development,Economic Development +488507,Economic Development,Economic Development +486755,Economic Development,Economic Development +521949,Economic Development,Economic Development +487365,Economic Development,Economic Development +487365,Infrastructure,Infrastructure +487365,Transportation,Transportation +487370,Economic Development,Economic Development +487349,Economic Development,Economic Development +487370,Infrastructure,Infrastructure +487349,Infrastructure,Infrastructure +487370,Transportation,Transportation +487349,Transportation,Transportation +508164,Taxation and Finance,Taxation and Finance +494722,Consumer Issues,Consumer Issues +488936,Consumer Issues,Consumer Issues +494722,Industry,Industry +488936,Industry,Industry +494722,Intellectual Property,Intellectual Property +494722,Security,Security +488936,Security,Security +500953,Security,Security +492106,Health,Health +512035,Economic Development,Economic Development +492284,Economic Development,Economic Development +530462,Economic Development,Economic Development +528135,International Trade,International Trade +492284,International Trade,International Trade +542625,International Trade,International Trade +542624,International Trade,International Trade +539626,International Trade,International Trade +536985,International Trade,International Trade +492611,Research and Development,Research and Development +486965,Research and Development,Research and Development +502017,Research and Development,Research and Development +487370,Regional Development,Regional Development +487349,Regional Development,Regional Development +487365,Regional Development,Regional Development +521948,Economic Development,Economic Development +502466,Consumer Issues,Consumer Issues +499771,Consumer Issues,Consumer Issues +487153,Privacy and Access to Information,Privacy and Access to Information +487140,Privacy and Access to Information,Privacy and Access to Information +507244,Privacy and Access to Information,Privacy and Access to Information +498643,Privacy and Access to Information,Privacy and Access to Information +498641,Privacy and Access to Information,Privacy and Access to Information +494814,Privacy and Access to Information,Privacy and Access to Information +494809,Privacy and Access to Information,Privacy and Access to Information +494803,Privacy and Access to Information,Privacy and Access to Information +491148,Privacy and Access to Information,Privacy and Access to Information +491145,Privacy and Access to Information,Privacy and Access to Information +491142,Privacy and Access to Information,Privacy and Access to Information +487145,Infrastructure,Infrastructure +495955,Tourism,Tourism +493662,Tourism,Tourism +495956,Economic Development,Economic Development +495955,Economic Development,Economic Development +488065,International Trade,International Trade +487191,International Trade,International Trade +490757,International Trade,International Trade +490754,International Trade,International Trade +488074,International Trade,International Trade +488073,International Trade,International Trade +488071,International Trade,International Trade +488069,International Trade,International Trade +494205,Research and Development,Research and Development +489327,Research and Development,Research and Development +496592,Research and Development,Research and Development +496591,Research and Development,Research and Development +487241,Government Procurement,Government Procurement +495969,Regional Development,Regional Development +493668,Regional Development,Regional Development +495974,Regional Development,Regional Development +495969,Tourism,Tourism +493668,Tourism,Tourism +495974,Tourism,Tourism +493666,Regional Development,Regional Development +495963,Regional Development,Regional Development +495962,Tourism,Tourism +493666,Tourism,Tourism +498331,Infrastructure,Infrastructure +487249,Infrastructure,Infrastructure +502000,Infrastructure,Infrastructure +501998,Infrastructure,Infrastructure +495469,Regional Development,Regional Development +491900,Regional Development,Regional Development +491430,Regional Development,Regional Development +487249,Regional Development,Regional Development +542162,Regional Development,Regional Development +536500,Regional Development,Regional Development +531866,Regional Development,Regional Development +527424,Regional Development,Regional Development +517137,Regional Development,Regional Development +508169,Regional Development,Regional Development +502000,Regional Development,Regional Development +501998,Regional Development,Regional Development +498339,Regional Development,Regional Development +495958,Regional Development,Regional Development +493664,Regional Development,Regional Development +495958,Tourism,Tourism +493664,Tourism,Tourism +495964,Regional Development,Regional Development +493667,Regional Development,Regional Development +495967,Regional Development,Regional Development +495966,Regional Development,Regional Development +495964,Tourism,Tourism +493667,Tourism,Tourism +495967,Tourism,Tourism +495966,Tourism,Tourism +495950,Regional Development,Regional Development +493663,Regional Development,Regional Development +495954,Regional Development,Regional Development +495953,Regional Development,Regional Development +495950,Tourism,Tourism +493663,Tourism,Tourism +495954,Tourism,Tourism +495953,Tourism,Tourism +489014,Research and Development,Research and Development +489013,Research and Development,Research and Development +489020,Research and Development,Research and Development +494846,Infrastructure,Infrastructure +492543,Infrastructure,Infrastructure +510369,Infrastructure,Infrastructure +498123,Infrastructure,Infrastructure +494847,Industry,Industry +494846,Industry,Industry +510369,Industry,Industry +488817,Tourism,Tourism +488809,Tourism,Tourism +541782,Tourism,Tourism +541779,Tourism,Tourism +541777,Tourism,Tourism +541773,Tourism,Tourism +528150,Tourism,Tourism +525836,Tourism,Tourism +525809,Tourism,Tourism +522318,Tourism,Tourism +522316,Tourism,Tourism +522311,Tourism,Tourism +519974,Tourism,Tourism +519961,Tourism,Tourism +493610,Tourism,Tourism +493600,Tourism,Tourism +490035,Tourism,Tourism +490034,Tourism,Tourism +490032,Tourism,Tourism +490029,Tourism,Tourism +490028,Tourism,Tourism +490027,Tourism,Tourism +490022,Tourism,Tourism +490020,Tourism,Tourism +490018,Tourism,Tourism +490015,Tourism,Tourism +490009,Tourism,Tourism +488740,Economic Development,Economic Development +488739,Economic Development,Economic Development +488740,Health,Health +488739,Health,Health +488739,Research and Development,Research and Development +488741,Research and Development,Research and Development +523786,Infrastructure,Infrastructure +519920,Infrastructure,Infrastructure +519920,Energy,Energy +523798,Energy,Energy +490922,Immigration,Immigration +490918,Immigration,Immigration +511112,Regional Development,Regional Development +511108,Regional Development,Regional Development +508679,Regional Development,Regional Development +502709,Regional Development,Regional Development +493671,Regional Development,Regional Development +523161,Regional Development,Regional Development +523155,Regional Development,Regional Development +511114,Regional Development,Regional Development +511108,Tourism,Tourism +508679,Tourism,Tourism +502709,Tourism,Tourism +502708,Tourism,Tourism +523161,Tourism,Tourism +523155,Tourism,Tourism +518244,Tourism,Tourism +511114,Tourism,Tourism +511113,Tourism,Tourism +493416,Sports,Sports +493414,Sports,Sports +532089,Sports,Sports +532087,Sports,Sports +528181,Sports,Sports +528179,Sports,Sports +528178,Sports,Sports +525567,Sports,Sports +525566,Sports,Sports +522922,Sports,Sports +522471,Sports,Sports +513439,Sports,Sports +510499,Sports,Sports +508103,Sports,Sports +508098,Sports,Sports +505097,Sports,Sports +505093,Sports,Sports +500389,Sports,Sports +500388,Sports,Sports +499531,Sports,Sports +499523,Sports,Sports +499520,Sports,Sports +499516,Sports,Sports +525567,Tourism,Tourism +522471,Tourism,Tourism +513439,Tourism,Tourism +510499,Tourism,Tourism +508103,Tourism,Tourism +508098,Tourism,Tourism +500389,Tourism,Tourism +500388,Tourism,Tourism +499531,Tourism,Tourism +499523,Tourism,Tourism +499520,Tourism,Tourism +499516,Tourism,Tourism +493416,Tourism,Tourism +493414,Tourism,Tourism +532089,Tourism,Tourism +532087,Tourism,Tourism +528181,Tourism,Tourism +528179,Tourism,Tourism +496917,Tourism,Tourism +494990,Economic Development,Economic Development +494988,Economic Development,Economic Development +517281,Economic Development,Economic Development +516519,Economic Development,Economic Development +516478,Economic Development,Economic Development +500105,Economic Development,Economic Development +499314,Economic Development,Economic Development +497541,Government Procurement,Government Procurement +494990,Industry,Industry +494988,Industry,Industry +536354,Industry,Industry +517281,Industry,Industry +516519,Industry,Industry +499314,Research and Development,Research and Development +497541,Research and Development,Research and Development +536354,Research and Development,Research and Development +533054,Research and Development,Research and Development +533053,Research and Development,Research and Development +528744,Research and Development,Research and Development +517281,Research and Development,Research and Development +516519,Research and Development,Research and Development +516478,Research and Development,Research and Development +496857,Health,Health +494795,Health,Health +493399,Health,Health +492451,Health,Health +488102,International Relations,International Relations +491699,Housing,Housing +488366,Housing,Housing +539866,Housing,Housing +488366,Regional Development,Regional Development +488271,Research and Development,Research and Development +488270,Research and Development,Research and Development +493756,Research and Development,Research and Development +493754,Research and Development,Research and Development +490056,Research and Development,Research and Development +490055,Research and Development,Research and Development +490054,Research and Development,Research and Development +490053,Research and Development,Research and Development +490052,Research and Development,Research and Development +488280,Research and Development,Research and Development +488278,Research and Development,Research and Development +488277,Research and Development,Research and Development +488279,Small Business,Small Business +488276,Small Business,Small Business +495751,Small Business,Small Business +495750,Small Business,Small Business +495749,Small Business,Small Business +495406,Labour,Labour +488333,Labour,Labour +499829,Budget,Budget +494785,Budget,Budget +507207,Budget,Budget +506795,Budget,Budget +506272,Budget,Budget +506271,Budget,Budget +506227,Budget,Budget +499829,Health,Health +494785,Health,Health +507207,Health,Health +506795,Health,Health +506272,Health,Health +506271,Health,Health +506227,Health,Health +499829,Research and Development,Research and Development +494785,Research and Development,Research and Development +507207,Research and Development,Research and Development +506795,Research and Development,Research and Development +506272,Research and Development,Research and Development +506271,Research and Development,Research and Development +506227,Research and Development,Research and Development +499829,Economic Development,Economic Development +494785,Economic Development,Economic Development +507207,Economic Development,Economic Development +506795,Economic Development,Economic Development +506272,Economic Development,Economic Development +506271,Economic Development,Economic Development +506227,Economic Development,Economic Development +500131,International Trade,Commerce international +500131,Agriculture,Agriculture +500131,Internal Trade,Commerce intérieur +505867,Economic Development,Economic Development +505864,Economic Development,Economic Development +511501,Economic Development,Economic Development +511499,Economic Development,Economic Development +511494,Economic Development,Economic Development +511492,Economic Development,Economic Development +511487,Economic Development,Economic Development +505867,Regional Development,Regional Development +505864,Regional Development,Regional Development +511492,Regional Development,Regional Development +505867,Housing,Housing +505864,Housing,Housing +511501,Housing,Housing +511499,Housing,Housing +511494,Housing,Housing +511492,Housing,Housing +511487,Housing,Housing +518222,Climate,Climate +518222,Energy,Energy +518222,Environment,Environment +518222,Industry,Industry +497190,Budget,Budget +497189,Budget,Budget +496269,Taxation and Finance,Taxation and Finance +488368,Immigration,Immigration +498733,Health,Health +498731,Health,Health +502038,Health,Health +502037,Health,Health +520211,Environment,Environment +517796,Environment,Environment +510657,Environment,Environment +505558,Environment,Environment +505557,Environment,Environment +505556,Environment,Environment +535778,Environment,Environment +488715,Health,Health +494088,Budget,Budget +494088,Climate,Climate +491471,Climate,Climate +510286,Climate,Climate +510277,Climate,Climate +508094,Climate,Climate +508090,Climate,Climate +505107,Climate,Climate +499536,Climate,Climate +517442,Economic Development,Economic Development +517440,Economic Development,Economic Development +510281,Economic Development,Economic Development +510277,Economic Development,Economic Development +508108,Economic Development,Economic Development +499536,Economic Development,Economic Development +494547,Economic Development,Economic Development +494436,Economic Development,Economic Development +494088,Economic Development,Economic Development +491471,Economic Development,Economic Development +528183,Economic Development,Economic Development +525569,Economic Development,Economic Development +508108,Energy,Energy +508094,Energy,Energy +508090,Energy,Energy +505107,Energy,Energy +499536,Energy,Energy +494547,Energy,Energy +494436,Energy,Energy +494088,Energy,Energy +491471,Energy,Energy +528183,Energy,Energy +525569,Energy,Energy +517447,Energy,Energy +517442,Energy,Energy +517440,Energy,Energy +510286,Energy,Energy +494436,Environment,Environment +494088,Environment,Environment +494088,Infrastructure,Infrastructure +491471,Infrastructure,Infrastructure +528183,Infrastructure,Infrastructure +525569,Infrastructure,Infrastructure +522924,Infrastructure,Infrastructure +510286,Infrastructure,Infrastructure +510277,Infrastructure,Infrastructure +508094,Infrastructure,Infrastructure +508090,Infrastructure,Infrastructure +505107,Infrastructure,Infrastructure +499536,Infrastructure,Infrastructure +508090,Regional Development,Regional Development +494088,Regional Development,Regional Development +510277,Regional Development,Regional Development +508108,Regional Development,Regional Development +496606,Economic Development,Economic Development +496743,Regional Development,Regional Development +496606,Regional Development,Regional Development +506062,Health,Health +503707,Health,Health +503410,Health,Health +503207,Health,Health +503206,Health,Health +499876,Health,Health +497407,Health,Health +496882,Health,Health +493977,Health,Health +492370,Health,Health +492073,Health,Health +491223,Health,Health +489441,Health,Health +489440,Health,Health +489037,Health,Health +489036,Health,Health +488462,Health,Health +543177,Health,Health +542352,Health,Health +542350,Health,Health +540441,Health,Health +538816,Health,Health +536576,Health,Health +532598,Health,Health +524999,Health,Health +524988,Health,Health +523697,Health,Health +519136,Health,Health +516648,Health,Health +516066,Health,Health +514904,Health,Health +514402,Health,Health +513852,Health,Health +513850,Health,Health +511818,Health,Health +510208,Health,Health +509580,Health,Health +506800,Health,Health +506799,Health,Health +506457,Health,Health +506400,Health,Health +506375,Health,Health +496847,International Trade,Commerce international +496848,Agriculture,Agriculture +496847,Agriculture,Agriculture +496847,Internal Trade,Commerce intérieur +491991,Official Languages,Official Languages +488483,Official Languages,Official Languages +496149,Environment,Environment +494562,Consumer Issues,Consumer Issues +492516,Consumer Issues,Consumer Issues +537074,Consumer Issues,Consumer Issues +529117,Consumer Issues,Consumer Issues +529112,Consumer Issues,Consumer Issues +514014,Consumer Issues,Consumer Issues +512532,Consumer Issues,Consumer Issues +512530,Consumer Issues,Consumer Issues +512529,Consumer Issues,Consumer Issues +509845,Consumer Issues,Consumer Issues +509842,Consumer Issues,Consumer Issues +492516,Taxation and Finance,Taxation and Finance +489815,Taxation and Finance,Taxation and Finance +529117,Taxation and Finance,Taxation and Finance +529112,Taxation and Finance,Taxation and Finance +514014,Taxation and Finance,Taxation and Finance +512532,Taxation and Finance,Taxation and Finance +512530,Taxation and Finance,Taxation and Finance +512529,Taxation and Finance,Taxation and Finance +509845,Taxation and Finance,Taxation and Finance +509842,Taxation and Finance,Taxation and Finance +494564,Taxation and Finance,Taxation and Finance +494517,Economic Development,Economic Development +488835,Economic Development,Economic Development +496858,Economic Development,Economic Development +496855,Economic Development,Economic Development +494517,Industry,Industry +488835,Industry,Industry +496858,Industry,Industry +496855,Industry,Industry +488961,Employment and Training,Employment and Training +521938,Economic Development,Economic Development +488504,Economic Development,Economic Development +497022,Agriculture,Agriculture +497022,Justice and Law Enforcement,Justice and Law Enforcement +497021,Justice and Law Enforcement,Justice and Law Enforcement +500214,Justice and Law Enforcement,Justice and Law Enforcement +500213,Justice and Law Enforcement,Justice and Law Enforcement +500212,Justice and Law Enforcement,Justice and Law Enforcement +497022,Sports,Sports +497021,Sports,Sports +500214,Sports,Sports +500213,Sports,Sports +500212,Sports,Sports +500214,Taxation and Finance,Taxation and Finance +500213,Taxation and Finance,Taxation and Finance +500212,Taxation and Finance,Taxation and Finance +498925,Taxation and Finance,Taxation and Finance +497022,Taxation and Finance,Taxation and Finance +497022,Employment and Training,Employment and Training +497022,Industry,Industry +497021,Industry,Industry +492739,Budget,Budget +492738,Budget,Budget +514977,Budget,Budget +503081,Budget,Budget +494924,Budget,Budget +494269,Budget,Budget +494268,Budget,Budget +494267,Budget,Budget +494265,Budget,Budget +494264,Budget,Budget +494262,Budget,Budget +494008,Budget,Budget +494007,Budget,Budget +494006,Budget,Budget +494005,Budget,Budget +494004,Budget,Budget +494002,Budget,Budget +492738,Infrastructure,Infrastructure +488522,Infrastructure,Infrastructure +542258,Infrastructure,Infrastructure +542108,Infrastructure,Infrastructure +542107,Infrastructure,Infrastructure +514977,Infrastructure,Infrastructure +503081,Infrastructure,Infrastructure +494924,Infrastructure,Infrastructure +494269,Infrastructure,Infrastructure +494268,Infrastructure,Infrastructure +494267,Infrastructure,Infrastructure +494265,Infrastructure,Infrastructure +494264,Infrastructure,Infrastructure +494262,Infrastructure,Infrastructure +494008,Infrastructure,Infrastructure +494007,Infrastructure,Infrastructure +494006,Infrastructure,Infrastructure +494005,Infrastructure,Infrastructure +494004,Infrastructure,Infrastructure +494002,Infrastructure,Infrastructure +492741,Infrastructure,Infrastructure +492739,Health,Health +492738,Health,Health +514977,Health,Health +503081,Health,Health +494924,Health,Health +494269,Health,Health +494268,Health,Health +494267,Health,Health +494265,Health,Health +494264,Health,Health +494262,Health,Health +494008,Health,Health +494007,Health,Health +494006,Health,Health +494005,Health,Health +494004,Health,Health +494002,Health,Health +514977,Housing,Housing +503081,Housing,Housing +542258,Housing,Housing +542108,Housing,Housing +490258,Health,Health +490220,Health,Health +495215,Health,Health +495212,Health,Health +497699,Economic Development,Economic Development +493970,Economic Development,Economic Development +506090,Economic Development,Economic Development +497699,Forestry,Forestry +493970,Forestry,Forestry +506090,Forestry,Forestry +496435,Agriculture,Agriculture +496434,Agriculture,Agriculture +523449,Agriculture,Agriculture +523448,Agriculture,Agriculture +523446,Agriculture,Agriculture +496437,Agriculture,Agriculture +523448,Climate,Climate +523446,Climate,Climate +496435,Consumer Issues,Consumer Issues +496434,Consumer Issues,Consumer Issues +523449,Consumer Issues,Consumer Issues +523448,Consumer Issues,Consumer Issues +523446,Consumer Issues,Consumer Issues +496437,Consumer Issues,Consumer Issues +496434,Environment,Environment +523449,Environment,Environment +523448,Environment,Environment +523446,Environment,Environment +496437,Environment,Environment +496436,Environment,Environment +496435,Health,Health +496434,Health,Health +523449,Health,Health +523448,Health,Health +523446,Health,Health +496437,Health,Health +496435,International Trade,International Trade +496434,International Trade,International Trade +523449,International Trade,International Trade +523448,International Trade,International Trade +523446,International Trade,International Trade +496437,International Trade,International Trade +496439,Agriculture,Agriculture +496438,Agriculture,Agriculture +523476,Agriculture,Agriculture +523474,Agriculture,Agriculture +496441,Agriculture,Agriculture +496439,Consumer Issues,Consumer Issues +496438,Consumer Issues,Consumer Issues +523476,Consumer Issues,Consumer Issues +502037,Budget,Budget +502036,Health,Health +488405,Justice and Law Enforcement,Justice and Law Enforcement +488406,Health,Health +488433,Mining,Mining +501981,Environment,Environment +535771,Environment,Environment +496612,Health,Health +494436,Budget,Budget +494436,Climate,Climate +517447,Economic Development,Economic Development +510277,Energy,Energy +494547,Environment,Environment +494436,Infrastructure,Infrastructure +508094,Regional Development,Regional Development +493432,Environment,Environment +496743,Economic Development,Economic Development +496606,Industry,Industry +500709,Regional Development,Regional Development +506063,Health,Health +496848,International Trade,Commerce international +503442,Agriculture,Agriculture +496848,Internal Trade,Commerce intérieur +525750,Official Languages,Official Languages +496150,Environment,Environment +493430,Environment,Environment +494564,Consumer Issues,Consumer Issues +494562,Taxation and Finance,Taxation and Finance +496854,Economic Development,Economic Development +496854,Industry,Industry +492667,Employment and Training,Employment and Training +521942,Economic Development,Economic Development +498925,Agriculture,Agriculture +498925,Justice and Law Enforcement,Justice and Law Enforcement +498925,Sports,Sports +497021,Taxation and Finance,Taxation and Finance +498925,Employment and Training,Employment and Training +498925,Industry,Industry +492741,Budget,Budget +492739,Infrastructure,Infrastructure +492741,Health,Health +542107,Housing,Housing +493138,Health,Health +499957,Economic Development,Economic Development +499957,Forestry,Forestry +496436,Agriculture,Agriculture +523449,Climate,Climate +496436,Consumer Issues,Consumer Issues +496435,Environment,Environment +496436,Health,Health +496436,International Trade,International Trade +488587,Health,Health +496440,Agriculture,Agriculture +496440,Consumer Issues,Consumer Issues +496440,Economic Development,Economic Development +496440,Environment,Environment +496440,Health,Health +496440,International Trade,International Trade +523486,Agriculture,Agriculture +523486,Consumer Issues,Consumer Issues +523486,Economic Development,Economic Development +523486,Environment,Environment +523486,Health,Health +523486,International Trade,International Trade +496272,Economic Development,Economic Development +488647,Research and Development,Research and Development +499101,Regional Development,Regional Development +499110,Regional Development,Regional Development +499105,Regional Development,Regional Development +493720,Economic Development,Economic Development +493720,Agriculture,Agriculture +493720,Climate,Climate +495420,Health,Health +488665,Research and Development,Research and Development +490992,Economic Development,Economic Development +506237,Forestry,Forestry +490992,Labour,Labour +501385,Immigration,Immigration +494461,Economic Development,Economic Development +494461,Infrastructure,Infrastructure +493650,Climate,Climate +494461,Energy,Energy +494461,Environment,Environment +494461,Budget,Budget +510410,Regional Development,Regional Development +494558,Energy,Energy +494558,Environment,Environment +494558,Housing,Housing +494556,Climate,Climate +492527,Economic Development,Economic Development +538158,Agriculture,Agriculture +491863,Economic Development,Economic Development +492801,Industry,Industry +503222,Energy,Energy +492473,International Development,International Development +492473,International Relations,International Relations +501070,Health,Health +504868,Education,Education +504855,Health,Health +531701,Housing,Housing +494219,Small Business,Small Business +504855,Employment and Training,Employment and Training +490101,Economic Development,Economic Development +490101,Fisheries,Fisheries +490102,Economic Development,Economic Development +490102,Fisheries,Fisheries +489915,Small Business,Small Business +489923,Small Business,Small Business +524118,Economic Development,Economic Development +524118,International Trade,International Trade +489918,Small Business,Small Business +518585,Taxation and Finance,Taxation and Finance +528165,Research and Development,Research and Development +496300,Industry,Industry +496300,Regional Development,Regional Development +496300,Transportation,Transportation +491105,Climate,Climate +499945,Forestry,Forestry +490240,Economic Development,Economic Development +492501,Environment,Environment +490240,Regional Development,Regional Development +497033,Tourism,Tourism +503215,Transportation,Transportation +509306,Industry,Industry +503215,Regional Development,Regional Development +488724,Health,Health +513430,Economic Development,Economic Development +495226,Health,Health +495226,Housing,Housing +495226,Infrastructure,Infrastructure +511878,Security,Security +503191,Privacy and Access to Information,Privacy and Access to Information +499501,Climate,Climate +499501,Energy,Energy +499501,Environment,Environment +505169,Industry,Industry +499491,Climate,Climate +499491,Energy,Energy +499491,Environment,Environment +499491,Industry,Industry +502767,Budget,Budget +502767,Climate,Climate +502767,Energy,Energy +502767,Environment,Environment +488788,Employment and Training,Employment and Training +496280,Health,Health +494016,Environment,Environment +488805,Security,Security +489103,Defence,Defence +489100,Employment and Training,Employment and Training +489116,Fisheries,Fisheries +489109,Health,Health +494020,Environment,Environment +494018,Environment,Environment +507120,Government Procurement,Government Procurement +488840,Justice and Law Enforcement,Justice and Law Enforcement +494016,Climate,Climate +494020,Climate,Climate +490402,Agriculture,Agriculture +540784,Budget,Budget +533322,Climate,Climate +521721,Energy,Energy +497629,Environment,Environment +521717,Industry,Industry +521721,Infrastructure,Infrastructure +533322,International Trade,International Trade +500587,Mining,Mining +540784,Taxation and Finance,Taxation and Finance +533323,Transportation,Transportation +513872,Research and Development,Research and Development +515185,Budget,Budget +541996,Economic Development,Economic Development +494123,Employment and Training,Employment and Training +536028,Housing,Housing +492830,Health,Health +511044,Immigration,Immigration +511044,Employment and Training,Employment and Training +493163,Government Procurement,Government Procurement +493163,Health,Health +489133,Infrastructure,Infrastructure +489133,Transportation,Transportation +496460,International Development,International Development +491936,Health,Health +508835,Government Procurement,Government Procurement +489799,Agriculture,Agriculture +489799,International Trade,International Trade +489800,Agriculture,Agriculture +489800,International Trade,International Trade +504587,Agriculture,Agriculture +489804,International Trade,International Trade +504561,Agriculture,Agriculture +504561,International Trade,International Trade +504589,Agriculture,Agriculture +504589,International Trade,International Trade +532612,Agriculture,Agriculture +532613,International Trade,International Trade +493197,Mining,Mining +492081,Budget,Budget +523806,Industry,Industry +505267,Economic Development,Economic Development +512125,Energy,Energy +505267,Regional Development,Regional Development +505267,Infrastructure,Infrastructure +520454,Climate,Climate +520454,Environment,Environment +504372,Energy,Energy +522013,Taxation and Finance,Taxation and Finance +530312,Taxation and Finance,Taxation and Finance +539595,Health,Health +539595,Consumer Issues,Consumer Issues +523890,Justice and Law Enforcement,Justice and Law Enforcement +527469,Pensions,Pensions +499816,Employment and Training,Employment and Training +495575,Infrastructure,Infrastructure +499816,Labour,Labour +506127,Economic Development,Economic Development +489027,Budget,Budget +506515,International Trade,International Trade +489035,Health,Health +500470,Agriculture,Agriculture +496247,Infrastructure,Infrastructure +497042,Government Procurement,Government Procurement +489105,Education,Education +490339,Small Business,Small Business +529035,Budget,Budget +489164,Budget,Budget +506061,Economic Development,Economic Development +511548,Industry,Industry +523474,Consumer Issues,Consumer Issues +496441,Consumer Issues,Consumer Issues +496439,Economic Development,Economic Development +496438,Economic Development,Economic Development +523476,Economic Development,Economic Development +523474,Economic Development,Economic Development +496441,Economic Development,Economic Development +496439,Environment,Environment +496438,Environment,Environment +523476,Environment,Environment +523474,Environment,Environment +496441,Environment,Environment +496439,Health,Health +496438,Health,Health +523476,Health,Health +523474,Health,Health +496441,Health,Health +496439,International Trade,International Trade +496438,International Trade,International Trade +523476,International Trade,International Trade +523474,International Trade,International Trade +496441,International Trade,International Trade +523484,Agriculture,Agriculture +523483,Agriculture,Agriculture +523484,Consumer Issues,Consumer Issues +523483,Consumer Issues,Consumer Issues +523484,Environment,Environment +523483,Environment,Environment +523484,Health,Health +523483,Health,Health +523484,International Trade,International Trade +523483,International Trade,International Trade +489408,Economic Development,Economic Development +496272,Research and Development,Research and Development +488763,Economic Development,Economic Development +488763,Agriculture,Agriculture +488763,Climate,Climate +493151,Health,Health +490223,Health,Health +495421,Health,Health +488637,Research and Development,Research and Development +488608,Research and Development,Research and Development +494380,Research and Development,Research and Development +491928,Research and Development,Research and Development +491036,Research and Development,Research and Development +488882,Research and Development,Research and Development +488875,Research and Development,Research and Development +488813,Research and Development,Research and Development +488757,Research and Development,Research and Development +488730,Research and Development,Research and Development +488711,Research and Development,Research and Development +488696,Research and Development,Research and Development +488822,Economic Development,Economic Development +488722,Economic Development,Economic Development +506237,Economic Development,Economic Development +504178,Economic Development,Economic Development +504177,Economic Development,Economic Development +499900,Economic Development,Economic Development +497986,Economic Development,Economic Development +495174,Economic Development,Economic Development +492006,Economic Development,Economic Development +490994,Economic Development,Economic Development +504178,Forestry,Forestry +504177,Forestry,Forestry +499900,Forestry,Forestry +497986,Forestry,Forestry +495174,Forestry,Forestry +492006,Forestry,Forestry +490994,Forestry,Forestry +490992,Forestry,Forestry +488822,Forestry,Forestry +488722,Forestry,Forestry +488822,Labour,Labour +488722,Labour,Labour +506237,Labour,Labour +497986,Labour,Labour +490994,Labour,Labour +493650,Economic Development,Economic Development +510410,Economic Development,Economic Development +493650,Infrastructure,Infrastructure +510410,Infrastructure,Infrastructure +505142,Infrastructure,Infrastructure +510410,Climate,Climate +505142,Climate,Climate +494461,Climate,Climate +493650,Energy,Energy +510410,Energy,Energy +505142,Energy,Energy +494556,Energy,Energy +494554,Energy,Energy +494556,Housing,Housing +494554,Housing,Housing +538156,Agriculture,Agriculture +489329,Economic Development,Economic Development +503076,Economic Development,Economic Development +501107,Economic Development,Economic Development +500461,Economic Development,Economic Development +496364,Economic Development,Economic Development +491863,Industry,Industry +489329,Industry,Industry +501107,Industry,Industry +500461,Industry,Industry +496364,Industry,Industry +492472,International Relations,International Relations +501069,Health,Health +504855,Education,Education +496067,Education,Education +525442,Education,Education +519541,Education,Education +517029,Education,Education +517026,Education,Education +514046,Education,Education +508058,Education,Education +496067,Health,Health +495368,Health,Health +531701,Health,Health +525442,Health,Health +519541,Health,Health +517029,Health,Health +517026,Health,Health +514046,Health,Health +510640,Health,Health +508058,Health,Health +508055,Health,Health +504868,Health,Health +528977,Housing,Housing +525442,Housing,Housing +519541,Housing,Housing +517029,Housing,Housing +517026,Housing,Housing +514046,Housing,Housing +508055,Housing,Housing +504868,Housing,Housing +504855,Housing,Housing +496067,Housing,Housing +495474,Housing,Housing +495377,Housing,Housing +495368,Housing,Housing +492365,Small Business,Small Business +492364,Small Business,Small Business +542572,Small Business,Small Business +542555,Small Business,Small Business +542554,Small Business,Small Business +542553,Small Business,Small Business +542551,Small Business,Small Business +542549,Small Business,Small Business +542548,Small Business,Small Business +540704,Small Business,Small Business +540703,Small Business,Small Business +540702,Small Business,Small Business +540700,Small Business,Small Business +539054,Small Business,Small Business +539053,Small Business,Small Business +539052,Small Business,Small Business +539051,Small Business,Small Business +539050,Small Business,Small Business +536684,Small Business,Small Business +536683,Small Business,Small Business +536682,Small Business,Small Business +536681,Small Business,Small Business +536680,Small Business,Small Business +536676,Small Business,Small Business +533111,Small Business,Small Business +533110,Small Business,Small Business +533109,Small Business,Small Business +533108,Small Business,Small Business +530453,Small Business,Small Business +527411,Small Business,Small Business +527410,Small Business,Small Business +527312,Small Business,Small Business +524018,Small Business,Small Business +524016,Small Business,Small Business +523897,Small Business,Small Business +520883,Small Business,Small Business +520882,Small Business,Small Business +520881,Small Business,Small Business +518694,Small Business,Small Business +518693,Small Business,Small Business +518692,Small Business,Small Business +518689,Small Business,Small Business +516375,Small Business,Small Business +516374,Small Business,Small Business +516373,Small Business,Small Business +516370,Small Business,Small Business +514970,Small Business,Small Business +514969,Small Business,Small Business +514968,Small Business,Small Business +513602,Small Business,Small Business +512040,Small Business,Small Business +512039,Small Business,Small Business +509678,Small Business,Small Business +509677,Small Business,Small Business +506498,Small Business,Small Business +506497,Small Business,Small Business +506496,Small Business,Small Business +506353,Small Business,Small Business +503467,Small Business,Small Business +503465,Small Business,Small Business +503464,Small Business,Small Business +500603,Small Business,Small Business +500602,Small Business,Small Business +500601,Small Business,Small Business +496956,Small Business,Small Business +496955,Small Business,Small Business +496954,Small Business,Small Business +494224,Small Business,Small Business +494223,Small Business,Small Business +494222,Small Business,Small Business +494221,Small Business,Small Business +494220,Small Business,Small Business +496067,Employment and Training,Employment and Training +495368,Employment and Training,Employment and Training +528981,Employment and Training,Employment and Training +525442,Employment and Training,Employment and Training +519541,Employment and Training,Employment and Training +517029,Employment and Training,Employment and Training +517026,Employment and Training,Employment and Training +514046,Employment and Training,Employment and Training +510638,Employment and Training,Employment and Training +508055,Employment and Training,Employment and Training +504868,Employment and Training,Employment and Training +518585,International Trade,International Trade +489914,Small Business,Small Business +489912,Small Business,Small Business +524118,Small Business,Small Business +523768,Small Business,Small Business +523767,Small Business,Small Business +520297,Small Business,Small Business +518585,Small Business,Small Business +518582,Small Business,Small Business +518047,Small Business,Small Business +494678,Small Business,Small Business +489922,Small Business,Small Business +489919,Small Business,Small Business +518582,Taxation and Finance,Taxation and Finance +494361,Taxation and Finance,Taxation and Finance +526012,Research and Development,Research and Development +514700,Research and Development,Research and Development +496299,Industry,Industry +496298,Industry,Industry +526325,Industry,Industry +523908,Industry,Industry +523447,Industry,Industry +518707,Industry,Industry +518482,Industry,Industry +516161,Industry,Industry +516088,Industry,Industry +514976,Industry,Industry +514972,Industry,Industry +514418,Industry,Industry +510862,Industry,Industry +509065,Industry,Industry +509064,Industry,Industry +500237,Industry,Industry +499272,Industry,Industry +499269,Industry,Industry +499255,Industry,Industry +497995,Industry,Industry +497991,Industry,Industry +497990,Industry,Industry +497988,Industry,Industry +496302,Industry,Industry +496299,Regional Development,Regional Development +496298,Regional Development,Regional Development +499272,Regional Development,Regional Development +499269,Regional Development,Regional Development +499255,Regional Development,Regional Development +496302,Regional Development,Regional Development +496299,Transportation,Transportation +496298,Transportation,Transportation +531272,Transportation,Transportation +527661,Transportation,Transportation +526310,Transportation,Transportation +523907,Transportation,Transportation +523906,Transportation,Transportation +523447,Transportation,Transportation +522203,Transportation,Transportation +518707,Transportation,Transportation +518482,Transportation,Transportation +516161,Transportation,Transportation +516088,Transportation,Transportation +514976,Transportation,Transportation +514972,Transportation,Transportation +514418,Transportation,Transportation +514394,Transportation,Transportation +499272,Transportation,Transportation +499269,Transportation,Transportation +499255,Transportation,Transportation +497995,Transportation,Transportation +497991,Transportation,Transportation +497990,Transportation,Transportation +497988,Transportation,Transportation +496302,Transportation,Transportation +491101,Climate,Climate +491093,Climate,Climate +491105,Forestry,Forestry +491093,Forestry,Forestry +499946,Forestry,Forestry +492501,Economic Development,Economic Development +492500,Economic Development,Economic Development +492500,Environment,Environment +490240,Environment,Environment +500577,Environment,Environment +497037,Environment,Environment +497036,Environment,Environment +497033,Environment,Environment +494659,Environment,Environment +494659,Tourism,Tourism +490240,Tourism,Tourism +500577,Tourism,Tourism +497037,Tourism,Tourism +497036,Tourism,Tourism +500927,Transportation,Transportation +500164,Transportation,Transportation +509459,Transportation,Transportation +509306,Transportation,Transportation +506604,Transportation,Transportation +506507,Transportation,Transportation +506435,Transportation,Transportation +506284,Transportation,Transportation +503217,Transportation,Transportation +506507,Industry,Industry +506284,Industry,Industry +500927,Regional Development,Regional Development +500164,Regional Development,Regional Development +509459,Regional Development,Regional Development +509306,Regional Development,Regional Development +506604,Regional Development,Regional Development +506507,Regional Development,Regional Development +506435,Regional Development,Regional Development +506284,Regional Development,Regional Development +503217,Regional Development,Regional Development +488721,Health,Health +495226,Economic Development,Economic Development +494321,Security,Security +488756,Security,Security +499500,Climate,Climate +499495,Climate,Climate +505169,Climate,Climate +502710,Climate,Climate +499500,Energy,Energy +499495,Energy,Energy +505169,Energy,Energy +502710,Energy,Energy +499500,Environment,Environment +499495,Environment,Environment +505169,Environment,Environment +502710,Environment,Environment +502710,Industry,Industry +499515,Climate,Climate +499515,Energy,Energy +499515,Environment,Environment +489734,Environment,Environment +488804,Security,Security +489045,Employment and Training,Employment and Training +489024,Employment and Training,Employment and Training +523584,Employment and Training,Employment and Training +521603,Employment and Training,Employment and Training +521595,Employment and Training,Employment and Training +489113,Employment and Training,Employment and Training +489105,Employment and Training,Employment and Training +489102,Health,Health +489733,Environment,Environment +489734,Climate,Climate +490400,Agriculture,Agriculture +490398,Agriculture,Agriculture +521717,Agriculture,Agriculture +516229,Agriculture,Agriculture +515034,Agriculture,Agriculture +513670,Agriculture,Agriculture +497630,Agriculture,Agriculture +497629,Agriculture,Agriculture +533324,Budget,Budget +497628,Budget,Budget +532933,Climate,Climate +521721,Climate,Climate +516229,Climate,Climate +515034,Climate,Climate +497630,Climate,Climate +497629,Climate,Climate +496958,Climate,Climate +490402,Climate,Climate +490400,Climate,Climate +490398,Climate,Climate +537067,Climate,Climate +533334,Climate,Climate +533324,Climate,Climate +521717,Energy,Energy +513670,Energy,Energy +497630,Energy,Energy +497629,Energy,Energy +490402,Energy,Energy +490400,Energy,Energy +540784,Energy,Energy +537069,Energy,Energy +537068,Energy,Energy +537067,Energy,Energy +533328,Energy,Energy +533324,Energy,Energy +533320,Energy,Energy +532933,Energy,Energy +524449,Energy,Energy +496984,Environment,Environment +496958,Environment,Environment +537069,Environment,Environment +537067,Environment,Environment +533328,Environment,Environment +533324,Environment,Environment +533322,Environment,Environment +521721,Environment,Environment +521717,Environment,Environment +513670,Environment,Environment +509596,Environment,Environment +497630,Environment,Environment +516229,Industry,Industry +500587,Industry,Industry +540784,Industry,Industry +537069,Industry,Industry +537068,Industry,Industry +533334,Industry,Industry +533328,Industry,Industry +533323,Industry,Industry +533322,Industry,Industry +533320,Industry,Industry +521721,Industry,Industry +509596,Infrastructure,Infrastructure +503521,Infrastructure,Infrastructure +540784,Infrastructure,Infrastructure +537069,Infrastructure,Infrastructure +524449,Infrastructure,Infrastructure +532933,International Trade,International Trade +515034,International Trade,International Trade +540784,International Trade,International Trade +533334,International Trade,International Trade +533328,International Trade,International Trade +533323,International Trade,International Trade +496982,Mining,Mining +496958,Mining,Mining +537068,Mining,Mining +537067,Mining,Mining +533324,Mining,Mining +533323,Mining,Mining +533322,Mining,Mining +533320,Mining,Mining +524449,Mining,Mining +521721,Mining,Mining +513670,Mining,Mining +497628,Taxation and Finance,Taxation and Finance +503521,Transportation,Transportation +513231,Research and Development,Research and Development +502397,Research and Development,Research and Development +542368,Research and Development,Research and Development +542367,Research and Development,Research and Development +541174,Research and Development,Research and Development +541173,Research and Development,Research and Development +539007,Research and Development,Research and Development +539006,Research and Development,Research and Development +539005,Research and Development,Research and Development +539004,Research and Development,Research and Development +537299,Research and Development,Research and Development +537298,Research and Development,Research and Development +528161,Research and Development,Research and Development +526010,Research and Development,Research and Development +514699,Research and Development,Research and Development +513873,Research and Development,Research and Development +515183,Budget,Budget +506365,Budget,Budget +499983,Budget,Budget +499982,Budget,Budget +499981,Budget,Budget +497253,Budget,Budget +497115,Budget,Budget +497114,Budget,Budget +497016,Budget,Budget +497015,Budget,Budget +495295,Budget,Budget +494695,Budget,Budget +494418,Budget,Budget +494123,Budget,Budget +494087,Budget,Budget +494035,Budget,Budget +493996,Budget,Budget +492130,Budget,Budget +490201,Budget,Budget +490200,Budget,Budget +490198,Budget,Budget +490197,Budget,Budget +490196,Budget,Budget +490195,Budget,Budget +490194,Budget,Budget +490193,Budget,Budget +490192,Budget,Budget +490191,Budget,Budget +490189,Budget,Budget +490188,Budget,Budget +490187,Budget,Budget +489271,Budget,Budget +489270,Budget,Budget +541998,Budget,Budget +537537,Budget,Budget +536028,Budget,Budget +515188,Budget,Budget +539616,Economic Development,Economic Development +515185,Economic Development,Economic Development +499982,Economic Development,Economic Development +499981,Economic Development,Economic Development +497115,Economic Development,Economic Development +497114,Economic Development,Economic Development +497015,Economic Development,Economic Development +494695,Economic Development,Economic Development +494123,Economic Development,Economic Development +494087,Economic Development,Economic Development +544360,Economic Development,Economic Development +544359,Economic Development,Economic Development +494087,Employment and Training,Employment and Training +490190,Employment and Training,Employment and Training +541996,Employment and Training,Employment and Training +539616,Employment and Training,Employment and Training +539615,Employment and Training,Employment and Training +515188,Employment and Training,Employment and Training +515183,Employment and Training,Employment and Training +499982,Employment and Training,Employment and Training +499981,Employment and Training,Employment and Training +497115,Employment and Training,Employment and Training +497114,Employment and Training,Employment and Training +497015,Employment and Training,Employment and Training +495295,Employment and Training,Employment and Training +515188,Housing,Housing +515183,Housing,Housing +491954,Health,Health +511043,Immigration,Immigration +511043,Employment and Training,Employment and Training +493162,Government Procurement,Government Procurement +492822,Government Procurement,Government Procurement +493165,Government Procurement,Government Procurement +493162,Health,Health +492822,Health,Health +493165,Health,Health +491931,Health,Health +499444,Government Procurement,Government Procurement +493704,Government Procurement,Government Procurement +514369,Government Procurement,Government Procurement +513567,Government Procurement,Government Procurement +509326,Government Procurement,Government Procurement +509297,Government Procurement,Government Procurement +489804,Agriculture,Agriculture +504587,International Trade,International Trade +504560,Agriculture,Agriculture +489801,Agriculture,Agriculture +504562,Agriculture,Agriculture +504560,International Trade,International Trade +489801,International Trade,International Trade +504562,International Trade,International Trade +504588,Agriculture,Agriculture +489803,Agriculture,Agriculture +504588,International Trade,International Trade +489803,International Trade,International Trade +532611,Agriculture,Agriculture +489802,Agriculture,Agriculture +532616,Agriculture,Agriculture +532615,Agriculture,Agriculture +532614,Agriculture,Agriculture +532613,Agriculture,Agriculture +532612,International Trade,International Trade +532611,International Trade,International Trade +489802,International Trade,International Trade +532616,International Trade,International Trade +532615,International Trade,International Trade +532614,International Trade,International Trade +493195,Mining,Mining +493191,Mining,Mining +493200,Mining,Mining +493199,Mining,Mining +489581,Budget,Budget +488995,Budget,Budget +523808,Budget,Budget +523807,Budget,Budget +523806,Budget,Budget +523805,Budget,Budget +523805,Industry,Industry +488995,Industry,Industry +523808,Industry,Industry +523807,Industry,Industry +494680,Economic Development,Economic Development +494680,Regional Development,Regional Development +501028,Infrastructure,Infrastructure +494680,Infrastructure,Infrastructure +512125,Infrastructure,Infrastructure +516058,Climate,Climate +509675,Climate,Climate +544493,Climate,Climate +536961,Climate,Climate +531240,Climate,Climate +531173,Climate,Climate +527903,Climate,Climate +526964,Climate,Climate +522013,Climate,Climate +521514,Climate,Climate +520873,Climate,Climate +516058,Environment,Environment +509675,Environment,Environment +504372,Environment,Environment +501939,Environment,Environment +501932,Environment,Environment +531240,Environment,Environment +531173,Environment,Environment +527903,Environment,Environment +526964,Environment,Environment +522013,Environment,Environment +521514,Environment,Environment +520873,Environment,Environment +520456,Environment,Environment +501939,Energy,Energy +501932,Energy,Energy +544493,Energy,Energy +536961,Energy,Energy +531240,Energy,Energy +531173,Energy,Energy +527903,Energy,Energy +526964,Energy,Energy +522013,Energy,Energy +521514,Energy,Energy +520873,Energy,Energy +520456,Energy,Energy +520454,Energy,Energy +516058,Energy,Energy +509675,Energy,Energy +520456,Taxation and Finance,Taxation and Finance +501932,Taxation and Finance,Taxation and Finance +536961,Taxation and Finance,Taxation and Finance +526964,Taxation and Finance,Taxation and Finance +523890,Taxation and Finance,Taxation and Finance +524272,Pensions,Pensions +518740,Pensions,Pensions +532530,Pensions,Pensions +528177,Pensions,Pensions +527577,Pensions,Pensions +495574,Infrastructure,Infrastructure +495572,Infrastructure,Infrastructure +502603,Infrastructure,Infrastructure +502599,Infrastructure,Infrastructure +502596,Infrastructure,Infrastructure +502594,Infrastructure,Infrastructure +502592,Infrastructure,Infrastructure +502573,Infrastructure,Infrastructure +502568,Infrastructure,Infrastructure +499816,Infrastructure,Infrastructure +499815,Infrastructure,Infrastructure +499813,Infrastructure,Infrastructure +499812,Infrastructure,Infrastructure +499810,Infrastructure,Infrastructure +495581,Infrastructure,Infrastructure +495579,Infrastructure,Infrastructure +495578,Infrastructure,Infrastructure +495576,Infrastructure,Infrastructure +506126,Economic Development,Economic Development +502586,Economic Development,Economic Development +506128,Economic Development,Economic Development +489030,International Trade,International Trade +489040,Agriculture,Agriculture +495269,Infrastructure,Infrastructure +494463,Infrastructure,Infrastructure +503731,Infrastructure,Infrastructure +497041,Government Procurement,Government Procurement +497039,Government Procurement,Government Procurement +502463,Government Procurement,Government Procurement +497044,Government Procurement,Government Procurement +497043,Government Procurement,Government Procurement +489166,Small Business,Small Business +522345,Budget,Budget +501332,Budget,Budget +529042,Budget,Budget +506061,Environment,Environment +506059,Environment,Environment +540246,Environment,Environment +540241,Environment,Environment +526937,Environment,Environment +506061,Climate,Climate +506059,Climate,Climate +526937,Climate,Climate +516085,Climate,Climate +540246,Energy,Energy +540241,Energy,Energy +526937,Energy,Energy +499931,Economic Development,Economic Development +499931,Housing,Housing +494038,Housing,Housing +489725,Housing,Housing +495919,Housing,Housing +493859,Education,Education +493859,Employment and Training,Employment and Training +493857,Employment and Training,Employment and Training +506633,Employment and Training,Employment and Training +496490,Government Procurement,Government Procurement +492750,Industry,Industry +492616,Industry,Industry +524717,Industry,Industry +521673,Industry,Industry +521671,Industry,Industry +516574,Industry,Industry +515651,Industry,Industry +513548,Industry,Industry +509392,Industry,Industry +507215,Industry,Industry +506103,Industry,Industry +497847,Industry,Industry +497845,Industry,Industry +497238,Industry,Industry +497224,Industry,Industry +496481,Industry,Industry +494326,Industry,Industry +492750,Taxation and Finance,Taxation and Finance +492616,Taxation and Finance,Taxation and Finance +497224,Taxation and Finance,Taxation and Finance +496481,Taxation and Finance,Taxation and Finance +494326,Taxation and Finance,Taxation and Finance +489280,Budget,Budget +497246,Budget,Budget +489281,Budget,Budget +504028,Regional Development,Regional Development +489281,Regional Development,Regional Development +506683,Regional Development,Regional Development +506680,Regional Development,Regional Development +497236,Tourism,Tourism +489281,Tourism,Tourism +489282,Budget,Budget +497246,Tourism,Tourism +489282,Tourism,Tourism +504030,Tourism,Tourism +504030,Regional Development,Regional Development +489283,Regional Development,Regional Development +494755,Tourism,Tourism +489283,Tourism,Tourism +506683,Tourism,Tourism +506680,Tourism,Tourism +497236,Budget,Budget +489284,Budget,Budget +506683,Budget,Budget +506682,Budget,Budget +497247,Budget,Budget +489284,Regional Development,Regional Development +497245,Tourism,Tourism +489284,Tourism,Tourism +490045,Education,Education +523333,Education,Education +511468,Education,Education +509027,Education,Education +509026,Education,Education +505917,Education,Education +505916,Education,Education +499746,Education,Education +495744,Education,Education +495743,Education,Education +495742,Education,Education +495741,Education,Education +495740,Education,Education +495739,Education,Education +495737,Education,Education +495735,Education,Education +495734,Education,Education +493725,Education,Education +493724,Education,Education +490047,Education,Education +544621,Agriculture,Agriculture +544619,Agriculture,Agriculture +544618,Agriculture,Agriculture +544617,Agriculture,Agriculture +544616,Agriculture,Agriculture +492951,Agriculture,Agriculture +492951,Economic Development,Economic Development +492951,Fisheries,Fisheries +489392,Health,Health +489402,Climate,Climate +489402,Energy,Energy +493543,Infrastructure,Infrastructure +496406,Consumer Issues,Consumer Issues +499055,Employment and Training,Employment and Training +499055,Tourism,Tourism +495275,Consumer Issues,Consumer Issues +489584,Consumer Issues,Consumer Issues +518623,Consumer Issues,Consumer Issues +506254,Consumer Issues,Consumer Issues +502326,Consumer Issues,Consumer Issues +502324,Consumer Issues,Consumer Issues +502318,Consumer Issues,Consumer Issues +494165,Environment,Environment +544779,Environment,Environment +530151,Environment,Environment +544819,Health,Health +544779,Health,Health +499785,Health,Health +494165,Health,Health +494025,Health,Health +522859,Industry,Industry +492078,Industry,Industry +544779,Industry,Industry +489635,Immigration,Immigration +489642,International Relations,International Relations +489635,International Relations,International Relations +489635,International Trade,International Trade +491219,Budget,Budget +491209,Budget,Budget +491206,Budget,Budget +491202,Budget,Budget +491206,Consumer Issues,Consumer Issues +491202,Consumer Issues,Consumer Issues +491219,Consumer Issues,Consumer Issues +491206,Economic Development,Economic Development +491202,Economic Development,Economic Development +493974,Economic Development,Economic Development +491219,Economic Development,Economic Development +491206,Industry,Industry +491202,Industry,Industry +493974,Industry,Industry +491219,Industry,Industry +491206,Internal Trade,Internal Trade +491202,Internal Trade,Internal Trade +491219,Internal Trade,Internal Trade +491206,International Trade,International Trade +491202,International Trade,International Trade +491206,Taxation and Finance,Taxation and Finance +491202,Taxation and Finance,Taxation and Finance +493974,Taxation and Finance,Taxation and Finance +491219,Taxation and Finance,Taxation and Finance +489742,Economic Development,Economic Development +493740,Economic Development,Economic Development +489768,Economic Development,Economic Development +492905,Infrastructure,Infrastructure +537695,Infrastructure,Infrastructure +506174,Infrastructure,Infrastructure +503138,Infrastructure,Infrastructure +494783,Infrastructure,Infrastructure +494774,Infrastructure,Infrastructure +494774,Budget,Budget +494771,Budget,Budget +503138,Budget,Budget +494774,Sports,Sports +494771,Sports,Sports +506174,Sports,Sports +503138,Sports,Sports +503073,Budget,Budget +503072,Budget,Budget +499534,Budget,Budget +496218,Economic Development,Economic Development +496218,Small Business,Small Business +499534,Taxation and Finance,Taxation and Finance +496218,Taxation and Finance,Taxation and Finance +503073,Taxation and Finance,Taxation and Finance +495589,Economic Development,Economic Development +496217,Taxation and Finance,Taxation and Finance +495589,Taxation and Finance,Taxation and Finance +505428,Climate,Climate +503022,Climate,Climate +524731,Climate,Climate +505428,Energy,Energy +503022,Energy,Energy +532236,Energy,Energy +529469,Energy,Energy +529466,Energy,Energy +524731,Energy,Energy +524731,Economic Development,Economic Development +493785,Economic Development,Economic Development +529469,Economic Development,Economic Development +524734,Environment,Environment +493785,Environment,Environment +532236,Environment,Environment +489921,International Relations,International Relations +489917,International Relations,International Relations +509464,International Relations,International Relations +509463,International Relations,International Relations +506629,International Relations,International Relations +506628,International Relations,International Relations +506625,International Relations,International Relations +503796,International Relations,International Relations +503793,International Relations,International Relations +501485,International Relations,International Relations +501484,International Relations,International Relations +493908,International Relations,International Relations +493907,International Relations,International Relations +493032,International Relations,International Relations +491908,Official Languages,Langues officielles +491907,Official Languages,Langues officielles +522821,Official Languages,Langues officielles +522818,Official Languages,Langues officielles +514572,Official Languages,Langues officielles +510757,Official Languages,Langues officielles +510752,Official Languages,Langues officielles +510748,Official Languages,Langues officielles +507999,Official Languages,Langues officielles +507994,Official Languages,Langues officielles +504506,Official Languages,Langues officielles +504503,Official Languages,Langues officielles +501741,Official Languages,Langues officielles +501738,Official Languages,Langues officielles +501737,Official Languages,Langues officielles +499159,Official Languages,Langues officielles +498999,Official Languages,Langues officielles +498998,Official Languages,Langues officielles +498992,Official Languages,Langues officielles +498988,Official Languages,Langues officielles +516085,Environment,Environment +511548,Climate,Climate +516085,Energy,Energy +511548,Transportation,Transportation +506059,Research and Development,Research and Development +500463,Economic Development,Economic Development +500463,Housing,Housing +499931,Immigration,Immigration +499931,Infrastructure,Infrastructure +499931,Municipalities,Municipalities +499931,Regional Development,Regional Development +500463,Taxation and Finance,Taxation and Finance +497769,Justice and Law Enforcement,Justice and Law Enforcement +494760,Housing,Housing +493479,Economic Development,Economic Development +493857,Education,Education +499221,Employment and Training,Employment and Training +497845,Budget,Budget +497845,Government Procurement,Government Procurement +493926,Industry,Industry +493926,Taxation and Finance,Taxation and Finance +489267,Taxation and Finance,Taxation and Finance +512065,Budget,Budget +506680,Budget,Budget +504032,Regional Development,Regional Development +504028,Tourism,Tourism +494755,Budget,Budget +489282,Regional Development,Regional Development +497247,Tourism,Tourism +489283,Budget,Budget +506682,Regional Development,Regional Development +504032,Tourism,Tourism +497245,Budget,Budget +494755,Regional Development,Regional Development +506682,Tourism,Tourism +490046,Education,Education +506749,Health,Health +506749,Housing,Housing +497583,Agriculture,Agriculture +497583,Economic Development,Economic Development +494018,Climate,Climate +544622,Agriculture,Agriculture +492952,Agriculture,Agriculture +492952,Economic Development,Economic Development +492952,Fisheries,Fisheries +503127,Health,Health +498595,Climate,Climate +493730,Taxation and Finance,Taxation and Finance +493543,Climate,Climate +493543,Energy,Energy +493543,Environment,Environment +493543,Research and Development,Research and Development +489402,Infrastructure,Infrastructure +493142,Intellectual Property,Intellectual Property +491030,Economic Development,Economic Development +491030,Energy,Energy +491030,Small Business,Small Business +491030,Environment,Environment +491030,Forestry,Forestry +491030,Mining,Mining +491030,Climate,Climate +491030,Research and Development,Research and Development +491030,Infrastructure,Infrastructure +491030,Employment and Training,Employment and Training +491030,Labour,Labour +491030,Taxation and Finance,Taxation and Finance +491030,Industry,Industry +491030,Regional Development,Regional Development +521150,Economic Development,Economic Development +521150,Environment,Environment +496406,Taxation and Finance,Taxation and Finance +506277,Consumer Issues,Consumer Issues +499061,Employment and Training,Employment and Training +499061,Tourism,Tourism +493936,Research and Development,Research and Development +539189,Economic Development,Economic Development +496470,Consumer Issues,Consumer Issues +494025,Agriculture,Agriculture +522859,Environment,Environment +492078,Health,Health +530151,Industry,Industry +489862,Defence,Defence +489862,Immigration,Immigration +489862,International Relations,International Relations +489862,International Trade,International Trade +489862,Security,Security +502127,Small Business,Small Business +493329,Sports,Sports +493974,Budget,Budget +491209,Consumer Issues,Consumer Issues +491209,Economic Development,Economic Development +491209,Industry,Industry +491209,Internal Trade,Internal Trade +491209,International Trade,International Trade +491209,Taxation and Finance,Taxation and Finance +534603,Economic Development,Economic Development +504210,Economic Development,Economic Development +489773,Economic Development,Economic Development +492360,Consumer Issues,Consumer Issues +492360,Environment,Environment +506174,Regional Development,Regional Development +494771,Infrastructure,Infrastructure +494783,Budget,Budget +494783,Sports,Sports +496218,Budget,Budget +499534,Economic Development,Economic Development +499534,Industry,Industry +499534,Pensions,Pensions +499534,Regional Development,Regional Development +499534,Small Business,Small Business +503072,Taxation and Finance,Taxation and Finance +496217,Budget,Budget +496217,Economic Development,Economic Development +495589,Industry,Industry +496217,Small Business,Small Business +502707,Taxation and Finance,Taxation and Finance +522975,Climate,Climate +522975,Energy,Energy +524734,Economic Development,Economic Development +529466,Environment,Environment +493030,International Relations,International Relations +491909,Official Languages,Langues officielles +489924,International Trade,International Trade +490329,Privacy and Access to Information,Privacy and Access to Information +489971,Elections,Elections +521048,Taxation and Finance,Taxation and Finance +526713,Infrastructure,Infrastructure +507869,Budget,Budget +490295,Research and Development,Research and Development +500421,Education,Education +492765,Employment and Training,Employment and Training +512439,Energy,Energy +512439,Economic Development,Economic Development +512439,Climate,Climate +512439,Environment,Environment +490425,Immigration,Immigration +525237,Infrastructure,Infrastructure +501754,Budget,Budget +490496,Budget,Budget +493277,Budget,Budget +498621,Budget,Budget +490503,Budget,Budget +509327,Consumer Issues,Consumer Issues +506455,Economic Development,Economic Development +506455,Employment and Training,Employment and Training +506455,Industry,Industry +506455,Taxation and Finance,Taxation and Finance +537647,Municipalities,Municipalities +490613,International Trade,International Trade +490622,Budget,Budget +516236,Economic Development,Economic Development +520357,Industry,Industry +490633,Budget,Budget +490636,Budget,Budget +490639,Budget,Budget +521972,Health,Health +509935,Climate,Climate +490772,Employment and Training,Employment and Training +490767,Forestry,Forestry +529972,Economic Development,Economic Development +527909,Immigration,Immigration +491057,Infrastructure,Infrastructure +499941,Energy,Energy +491105,Environment,Environment +492119,Economic Development,Economic Development +491225,Budget,Budget +491231,Budget,Budget +491138,Research and Development,Research and Development +491346,Labour,Labour +498535,Budget,Budget +491487,Immigration,Immigration +517954,Budget,Budget +528304,Budget,Budget +499340,Budget,Budget +491584,Defence,Defence +518242,Economic Development,Economic Development +499577,Government Procurement,Government Procurement +491584,Security,Security +510851,Economic Development,Economic Development +502026,Defence,Defence +502026,Government Procurement,Government Procurement +507657,Industry,Industry +491786,Industry,Industry +513033,Employment and Training,Employment and Training +513033,Privacy and Access to Information,Privacy and Access to Information +513033,Transportation,Transportation +498965,Agriculture,Agriculture +491861,Immigration,Immigration +491861,Transportation,Transportation +491861,Environment,Environment +491861,Health,Health +491883,Agriculture,Agriculture +510151,Climate,Climate +507370,Infrastructure,Infrastructure +512184,Defence,Defence +510148,Fisheries,Fisheries +496248,Health,Health +494218,Government Procurement,Government Procurement +495077,Mining,Mining +495091,Forestry,Forestry +495077,Energy,Energy +495077,Environment,Environment +495077,Economic Development,Economic Development +495091,Research and Development,Research and Development +495069,Industry,Industry +527587,Mining,Mining +527587,Taxation and Finance,Taxation and Finance +527587,Health,Health +527587,Budget,Budget +527587,Infrastructure,Infrastructure +497119,Health,Health +492221,Environment,Environment +497805,Financial Institutions,Financial Institutions +533418,Health,Health +497797,Infrastructure,Infrastructure +497809,Privacy and Access to Information,Privacy and Access to Information +503214,Economic Development,Economic Development +506433,Industry,Industry +500796,Budget,Budget +498026,Economic Development,Economic Development +521165,Employment and Training,Employment and Training +493833,Industry,Industry +523775,Small Business,Small Business +492798,Employment and Training,Emploi et formation +492798,Immigration,Immigration +492093,Economic Development,Economic Development +492096,Environment,Environment +503111,Economic Development,Economic Development +501030,Budget,Budget +498698,Health,Health +539901,Energy,Energy +517700,Climate,Climate +492117,Housing,Housing +494796,Health,Health +492136,Employment and Training,Employment and Training +492136,Government Procurement,Government Procurement +492136,International Trade,International Trade +492136,Security,Security +497619,Agriculture,Agriculture +538761,International Development,International Development +525865,Research and Development,Research and Development +508635,Environment,Environment +508635,Government Procurement,Government Procurement +513252,Transportation,Transportation +492214,Agriculture,Agriculture +539901,Environment,Environment +517700,Research and Development,Research and Development +508461,Taxation and Finance,Taxation and Finance +492234,Financial Institutions,Financial Institutions +492234,Government Procurement,Government Procurement +492234,Housing,Housing +492459,Health,Health +492459,Research and Development,Research and Development +492242,International Trade,International Trade +525777,Health,Health +529245,Environment,Environment +526447,Official Languages,Official Languages +492259,Housing,Housing +493930,Small Business,Small Business +538947,Infrastructure,Infrastructure +492342,Budget,Budget +498730,Immigration,Immigration +503976,Budget,Budget +503976,Immigration,Immigration +492360,Climate,Climate +494170,Budget,Budget +494170,Climate,Climat +516997,Economic Development,Développement économique +516997,Regional Development,Développement régional +499839,Environment,Environnement +516997,Research and Development,Recherche et développement +503046,Consumer Issues,Consumer Issues +503046,Energy,Energy +503046,Environment,Environment +503046,Industry,Industry +498740,Infrastructure,Infrastructure +503046,International Relations,International Relations +496214,Transportation,Transportation +502817,Industry,Industry +502803,Economic Development,Economic Development +499673,Environment,Environment +496214,Energy,Energy +502803,Infrastructure,Infrastructure +502817,International Relations,International Relations +543770,Infrastructure,Infrastructure +499750,Transportation,Transportation +543770,Energy,Energy +543770,Industry,Industry +499750,Climate,Climate +499750,Consumer Issues,Consumer Issues +499750,Small Business,Small Business +499750,Environment,Environment +517606,International Relations,International Relations +499750,Economic Development,Economic Development +497310,Energy,Énergie +497309,Industry,Industrie +497309,International Relations,Relations internationales +497310,Transportation,Transports +502327,Energy,Energy +521412,Agriculture,Agriculture +496501,Consumer Issues,Consumer Issues +521412,Economic Development,Economic Development +521412,Environment,Environment +521412,Health,Health +521412,Industry,Industry +496501,International Trade,International Trade +521412,Research and Development,Research and Development +521412,Small Business,Small Business +498985,Official Languages,Langues officielles +498981,Official Languages,Langues officielles +493413,Official Languages,Langues officielles +493323,Official Languages,Langues officielles +493322,Official Languages,Langues officielles +493321,Official Languages,Langues officielles +523827,Infrastructure,Infrastructure +503810,Infrastructure,Infrastructure +532796,Infrastructure,Infrastructure +532795,Infrastructure,Infrastructure +507857,Budget,Budget +507853,Budget,Budget +500808,Budget,Budget +500807,Budget,Budget +500806,Budget,Budget +500804,Budget,Budget +492026,Budget,Budget +490260,Budget,Budget +527497,Budget,Budget +524347,Budget,Budget +521503,Budget,Budget +516591,Budget,Budget +515393,Budget,Budget +507871,Budget,Budget +490294,Research and Development,Research and Development +490291,Research and Development,Research and Development +492388,Research and Development,Research and Development +492385,Research and Development,Research and Development +490331,Research and Development,Research and Development +490327,Research and Development,Research and Development +490310,Research and Development,Research and Development +490308,Research and Development,Research and Development +490307,Research and Development,Research and Development +490306,Research and Development,Research and Development +490304,Research and Development,Research and Development +490302,Research and Development,Research and Development +490301,Research and Development,Research and Development +490299,Research and Development,Research and Development +490298,Research and Development,Research and Development +490296,Research and Development,Research and Development +497482,Education,Education +497481,Education,Education +500423,Education,Education +492762,Employment and Training,Employment and Training +521590,Employment and Training,Employment and Training +510138,Employment and Training,Employment and Training +500423,Employment and Training,Employment and Training +500421,Employment and Training,Employment and Training +497482,Employment and Training,Employment and Training +497481,Employment and Training,Employment and Training +490487,Budget,Budget +493273,Budget,Budget +490499,Budget,Budget +498620,Budget,Budget +495636,Budget,Budget +490501,Budget,Budget +500183,Consumer Issues,Consumer Issues +500182,Consumer Issues,Consumer Issues +533582,Consumer Issues,Consumer Issues +524131,Consumer Issues,Consumer Issues +516838,Consumer Issues,Consumer Issues +511255,Consumer Issues,Consumer Issues +495009,Industry,Industry +496679,Taxation and Finance,Taxation and Finance +537645,Municipalities,Municipalities +537644,Municipalities,Municipalities +490580,Municipalities,Municipalities +539701,Municipalities,Municipalities +514995,Economic Development,Economic Development +520260,Industry,Industry +516864,Industry,Industry +528572,Industry,Industry +528542,Industry,Industry +521686,Industry,Industry +521560,Industry,Industry +520859,Industry,Industry +520727,Industry,Industry +520643,Industry,Industry +520436,Industry,Industry +520415,Industry,Industry +517950,Health,Health +510125,Health,Health +496240,Health,Health +496235,Health,Health +493515,Health,Health +493446,Health,Health +493444,Health,Health +504230,Climate,Climate +501899,Climate,Climate +541515,Climate,Climate +531434,Climate,Climate +528756,Climate,Climate +528755,Climate,Climate +528747,Climate,Climate +526387,Climate,Climate +522637,Climate,Climate +522423,Climate,Climate +522406,Climate,Climate +519264,Climate,Climate +519261,Climate,Climate +519259,Climate,Climate +519258,Climate,Climate +519257,Climate,Climate +519256,Climate,Climate +513776,Climate,Climate +512644,Climate,Climate +544102,Employment and Training,Employment and Training +529971,Economic Development,Economic Development +526781,Economic Development,Economic Development +490890,Economic Development,Economic Development +490882,Economic Development,Economic Development +490879,Economic Development,Economic Development +490876,Economic Development,Economic Development +490872,Economic Development,Economic Development +490861,Economic Development,Economic Development +490849,Economic Development,Economic Development +490848,Economic Development,Economic Development +490846,Economic Development,Economic Development +490844,Economic Development,Economic Development +490842,Economic Development,Economic Development +490837,Economic Development,Economic Development +490834,Economic Development,Economic Development +521766,Immigration,Immigration +490887,Immigration,Immigration +537970,Immigration,Immigration +491101,Energy,Energy +491093,Energy,Energy +499949,Energy,Energy +499947,Energy,Energy +499946,Energy,Energy +499945,Energy,Energy +499944,Energy,Energy +491101,Environment,Environment +491093,Environment,Environment +524283,Environment,Environment +492118,Economic Development,Economic Development +542238,Economic Development,Economic Development +492259,Economic Development,Economic Development +492120,Economic Development,Economic Development +498521,Budget,Budget +491493,Budget,Budget +501931,Budget,Budget +491424,Budget,Budget +526893,Budget,Budget +491457,Budget,Budget +491508,Budget,Budget +491479,Budget,Budget +499373,Budget,Budget +518242,Defence,Defence +505769,Defence,Defence +499577,Defence,Defence +495986,Defence,Defence +499577,Economic Development,Economic Development +495986,Government Procurement,Government Procurement +491584,Government Procurement,Government Procurement +518242,Government Procurement,Government Procurement +505769,Government Procurement,Government Procurement +498018,Economic Development,Economic Development +530657,Economic Development,Economic Development +521813,Economic Development,Economic Development +517888,Economic Development,Economic Development +512187,Economic Development,Economic Development +512185,Economic Development,Economic Development +499486,Defence,Defence +499483,Defence,Defence +513494,Defence,Defence +511482,Defence,Defence +511481,Defence,Defence +511480,Defence,Defence +507667,Defence,Defence +507666,Defence,Defence +507657,Defence,Defence +506609,Defence,Defence +505735,Defence,Defence +505729,Defence,Defence +505726,Defence,Defence +505723,Defence,Defence +505718,Defence,Defence +502027,Defence,Defence +499486,Government Procurement,Government Procurement +499483,Government Procurement,Government Procurement +513494,Government Procurement,Government Procurement +511482,Government Procurement,Government Procurement +511481,Government Procurement,Government Procurement +511480,Government Procurement,Government Procurement +507667,Government Procurement,Government Procurement +507666,Government Procurement,Government Procurement +507657,Government Procurement,Government Procurement +506609,Government Procurement,Government Procurement +505735,Government Procurement,Government Procurement +505729,Government Procurement,Government Procurement +505726,Government Procurement,Government Procurement +505723,Government Procurement,Government Procurement +505718,Government Procurement,Government Procurement +502027,Government Procurement,Government Procurement +502027,Industry,Industry +502026,Industry,Industry +507667,Industry,Industry +500780,Privacy and Access to Information,Privacy and Access to Information +500780,Transportation,Transportation +498962,Agriculture,Agriculture +491877,Agriculture,Agriculture +537305,Agriculture,Agriculture +533815,Agriculture,Agriculture +533807,Agriculture,Agriculture +530975,Agriculture,Agriculture +519499,Agriculture,Agriculture +519051,Agriculture,Agriculture +510145,Agriculture,Agriculture +507373,Agriculture,Agriculture +507370,Agriculture,Agriculture +504675,Agriculture,Agriculture +504585,Agriculture,Agriculture +494786,Agriculture,Agriculture +491885,Agriculture,Agriculture +510149,Climate,Climate +510148,Climate,Climate +491877,Climate,Climate +543950,Climate,Climate +543941,Climate,Climate +543940,Climate,Climate +541426,Climate,Climate +541425,Climate,Climate +541204,Climate,Climate +539582,Climate,Climate +539553,Climate,Climate +539551,Climate,Climate +537604,Climate,Climate +537292,Climate,Climate +536715,Climate,Climate +536513,Climate,Climate +536341,Climate,Climate +536339,Climate,Climate +533804,Climate,Climate +533799,Climate,Climate +533780,Climate,Climate +530926,Climate,Climate +530918,Climate,Climate +530655,Climate,Climate +528607,Climate,Climate +528381,Climate,Climate +528380,Climate,Climate +528379,Climate,Climate +527636,Climate,Climate +527635,Climate,Climate +527631,Climate,Climate +524960,Climate,Climate +524956,Climate,Climate +524954,Climate,Climate +524558,Climate,Climate +522937,Climate,Climate +522935,Climate,Climate +522934,Climate,Climate +522921,Climate,Climate +522917,Climate,Climate +522898,Climate,Climate +522835,Climate,Climate +519857,Climate,Climate +518746,Climate,Climate +518059,Climate,Climate +518057,Climate,Climate +518056,Climate,Climate +518055,Climate,Climate +518054,Climate,Climate +515630,Climate,Climate +514737,Climate,Climate +512187,Climate,Climate +512186,Climate,Climate +491885,Infrastructure,Infrastructure +491883,Infrastructure,Infrastructure +529855,Infrastructure,Infrastructure +528567,Infrastructure,Infrastructure +510145,Infrastructure,Infrastructure +509150,Defence,Defence +491887,Defence,Defence +528607,Defence,Defence +510147,Fisheries,Fisheries +509148,Fisheries,Fisheries +504568,Fisheries,Fisheries +501708,Fisheries,Fisheries +501707,Fisheries,Fisheries +493506,Fisheries,Fisheries +491893,Fisheries,Fisheries +514738,Fisheries,Fisheries +512187,Fisheries,Fisheries +512186,Fisheries,Fisheries +512185,Fisheries,Fisheries +512184,Fisheries,Fisheries +545147,Health,Health +528402,Health,Health +513784,Health,Health +496249,Health,Health +494041,Government Procurement,Government Procurement +492137,Government Procurement,Government Procurement +495069,Mining,Mining +495077,Forestry,Forestry +495069,Energy,Energy +495063,Energy,Energy +495091,Energy,Energy +495069,Economic Development,Economic Development +495063,Economic Development,Economic Development +495091,Economic Development,Economic Development +495063,Industry,Industry +492227,Health,Health +539364,Health,Health +497120,Health,Health +497797,Financial Institutions,Financial Institutions +495010,Financial Institutions,Financial Institutions +516484,Financial Institutions,Financial Institutions +509855,Financial Institutions,Financial Institutions +501023,Financial Institutions,Financial Institutions +497809,Financial Institutions,Financial Institutions +497807,Financial Institutions,Financial Institutions +495010,Infrastructure,Infrastructure +509855,Infrastructure,Infrastructure +497807,Privacy and Access to Information,Privacy and Access to Information +497805,Privacy and Access to Information,Privacy and Access to Information +516484,Privacy and Access to Information,Privacy and Access to Information +512248,Privacy and Access to Information,Privacy and Access to Information +501027,Privacy and Access to Information,Privacy and Access to Information +503214,Industry,Industry +492128,Industry,Industry +498020,Economic Development,Economic Development +492493,Industry,Industry +492129,Industry,Industry +523775,Industry,Industry +521165,Industry,Industry +500796,Industry,Industry +500216,Industry,Industry +498030,Industry,Industry +496277,Industry,Industry +494530,Industry,Industry +493834,Industry,Industry +521165,Small Business,Small Business +506720,Economic Development,Economic Development +503110,Economic Development,Economic Development +502041,Economic Development,Economic Development +496936,Economic Development,Economic Development +496935,Economic Development,Economic Development +496934,Economic Development,Economic Development +494620,Economic Development,Economic Development +494026,Economic Development,Economic Development +494003,Economic Development,Economic Development +494001,Economic Development,Economic Development +494000,Economic Development,Economic Development +493931,Economic Development,Economic Development +493930,Economic Development,Economic Development +492307,Economic Development,Economic Development +492267,Economic Development,Economic Development +492266,Economic Development,Economic Development +492265,Economic Development,Economic Development +523693,Economic Development,Economic Development +522343,Economic Development,Economic Development +522339,Economic Development,Economic Development +522335,Economic Development,Economic Development +522332,Economic Development,Economic Development +522329,Economic Development,Economic Development +521072,Economic Development,Economic Development +521071,Economic Development,Economic Development +521070,Economic Development,Economic Development +521069,Economic Development,Economic Development +521068,Economic Development,Economic Development +519350,Economic Development,Economic Development +519349,Economic Development,Economic Development +519348,Economic Development,Economic Development +519347,Economic Development,Economic Development +518488,Economic Development,Economic Development +518486,Economic Development,Economic Development +516763,Economic Development,Economic Development +516762,Economic Development,Economic Development +516760,Economic Development,Economic Development +516448,Economic Development,Economic Development +514282,Economic Development,Economic Development +501029,Budget,Budget +498697,Health,Health +498696,Health,Health +501030,Health,Health +501029,Health,Health +517700,Energy,Energy +498809,Energy,Energy +498809,Climate,Climate +515619,Health,Health +515618,Health,Health +514639,Health,Health +510377,Health,Health +510376,Health,Health +507350,Health,Health +507349,Health,Health +507346,Health,Health +507345,Health,Health +507344,Health,Health +507343,Health,Health +507342,Health,Health +507341,Health,Health +505216,Health,Health +505215,Health,Health +505213,Health,Health +505211,Health,Health +505193,Health,Health +505009,Health,Health +505000,Health,Health +504993,Health,Health +501810,Health,Health +501807,Health,Health +501805,Health,Health +501802,Health,Health +501798,Health,Health +501794,Health,Health +501789,Health,Health +501786,Health,Health +501782,Health,Health +498121,Health,Health +498120,Health,Health +498119,Health,Health +498118,Health,Health +498117,Health,Health +498116,Health,Health +498115,Health,Health +498114,Health,Health +498113,Health,Health +494824,Health,Health +494823,Health,Health +494822,Health,Health +494821,Health,Health +494820,Health,Health +494817,Health,Health +494801,Health,Health +494800,Health,Health +497617,Agriculture,Agriculture +497616,Agriculture,Agriculture +523736,Agriculture,Agriculture +523735,Agriculture,Agriculture +523734,Agriculture,Agriculture +497622,Agriculture,Agriculture +497621,Agriculture,Agriculture +525860,Research and Development,Research and Development +520693,Research and Development,Research and Development +520692,Research and Development,Research and Development +520681,Research and Development,Research and Development +520680,Research and Development,Research and Development +520679,Research and Development,Research and Development +520678,Research and Development,Research and Development +519010,Research and Development,Research and Development +518714,Research and Development,Research and Development +518713,Research and Development,Research and Development +516827,Research and Development,Research and Development +516826,Research and Development,Research and Development +504114,Transportation,Transportation +522442,Health,Health +492245,Health,Health +529258,Health,Health +529245,Health,Health +529234,Health,Health +529222,Health,Health +529207,Health,Health +526456,Health,Health +526429,Health,Health +526414,Health,Health +525835,Health,Health +525804,Health,Health +525793,Health,Health +525789,Health,Health +492267,Small Business,Small Business +492265,Small Business,Small Business +494620,Small Business,Small Business +494026,Small Business,Small Business +494001,Small Business,Small Business +494229,Infrastructure,Infrastructure +492341,Budget,Budget +492340,Budget,Budget +492339,Budget,Budget +514080,Budget,Budget +508288,Budget,Budget +508285,Budget,Budget +508284,Budget,Budget +508277,Budget,Budget +508276,Budget,Budget +508273,Budget,Budget +508272,Budget,Budget +495153,Budget,Budget +495151,Budget,Budget +492340,Immigration,Immigration +494201,Budget,Budget +493889,Budget,Budget +507800,Budget,Budget +507798,Budget,Budget +503978,Budget,Budget +503977,Budget,Budget +494388,Immigration,Immigration +492356,Immigration,Immigration +509564,Economic Development,Développement économique +509078,Economic Development,Développement économique +501335,Economic Development,Développement économique +499839,Economic Development,Développement économique +492433,Economic Development,Développement économique +535949,Economic Development,Développement économique +532010,Economic Development,Développement économique +532009,Economic Development,Développement économique +532007,Economic Development,Développement économique +492433,Regional Development,Développement régional +494170,Environment,Environnement +492433,Environment,Environnement +535949,Environment,Environnement +532011,Environment,Environnement +532010,Environment,Environnement +532009,Environment,Environnement +532007,Environment,Environnement +532005,Environment,Environnement +525879,Environment,Environnement +525877,Environment,Environnement +516997,Environment,Environnement +511686,Environment,Environnement +509564,Environment,Environnement +506071,Environment,Environnement +506070,Environment,Environnement +503478,Environment,Environnement +501335,Environment,Environnement +500655,Environment,Environnement +498740,Consumer Issues,Consumer Issues +498740,Energy,Energy +498740,International Relations,International Relations +502803,Industry,Industry +499673,Industry,Industry +499673,Economic Development,Economic Development +496214,Economic Development,Economic Development +502817,Economic Development,Economic Development +496214,Environment,Environment +496213,Environment,Environment +502817,Environment,Environment +502803,Environment,Environment +496213,Energy,Energy +502817,Energy,Energy +502803,Energy,Energy +499673,Energy,Energy +496214,International Relations,International Relations +496213,International Relations,International Relations +517606,Infrastructure,Infrastructure +499750,Infrastructure,Infrastructure +517606,Energy,Energy +499750,Energy,Energy +517606,Industry,Industry +499750,Industry,Industry +517606,Environment,Environment +499750,International Relations,International Relations +543770,Economic Development,Economic Development +497309,Energy,Énergie +496970,Energy,Énergie +520180,Energy,Énergie +519106,Energy,Énergie +519103,Energy,Énergie +496970,Industry,Industrie +496970,International Relations,Relations internationales +497309,Transportation,Transports +496970,Transportation,Transports +494037,Energy,Energy +521411,Agriculture,Agriculture +516644,Agriculture,Agriculture +497477,Agriculture,Agriculture +496784,Agriculture,Agriculture +496501,Agriculture,Agriculture +496499,Agriculture,Agriculture +496497,Agriculture,Agriculture +496499,Consumer Issues,Consumer Issues +496497,Consumer Issues,Consumer Issues +521412,Consumer Issues,Consumer Issues +521411,Consumer Issues,Consumer Issues +516644,Consumer Issues,Consumer Issues +497477,Consumer Issues,Consumer Issues +496784,Consumer Issues,Consumer Issues +521411,Economic Development,Economic Development +516644,Economic Development,Economic Development +521411,Environment,Environment +516644,Environment,Environment +521411,Health,Health +521411,Industry,Industry +516644,Industry,Industry +496499,International Trade,International Trade +496497,International Trade,International Trade +521412,International Trade,International Trade +521411,International Trade,International Trade +496784,International Trade,International Trade +521411,Research and Development,Research and Development +521411,Small Business,Small Business +516644,Small Business,Small Business +494502,Agriculture,Agriculture +494502,Environment,Environment +534652,Financial Institutions,Financial Institutions +519747,Financial Institutions,Financial Institutions +500948,Financial Institutions,Financial Institutions +500944,Financial Institutions,Financial Institutions +500944,Consumer Issues,Consumer Issues +494728,Consumer Issues,Consumer Issues +534652,Consumer Issues,Consumer Issues +521897,Consumer Issues,Consumer Issues +516843,Consumer Issues,Consumer Issues +500944,Small Business,Small Business +494728,Small Business,Small Business +534652,Small Business,Small Business +521897,Small Business,Small Business +519747,Small Business,Small Business +516843,Small Business,Small Business +500948,Tourism,Tourism +494728,Tourism,Tourism +494133,Taxation and Finance,Taxation and Finance +494131,Taxation and Finance,Taxation and Finance +496752,Taxation and Finance,Taxation and Finance +495080,Taxation and Finance,Taxation and Finance +494586,Taxation and Finance,Taxation and Finance +494549,Taxation and Finance,Taxation and Finance +498814,Climate,Climate +508486,Environment,Environment +511036,Energy,Energy +498814,Energy,Energy +494846,Economic Development,Economic Development +492543,Economic Development,Economic Development +510369,Economic Development,Economic Development +498123,Economic Development,Economic Development +498722,Sports,Sports +495154,Sports,Sports +510848,Sports,Sports +510847,Sports,Sports +508319,Sports,Sports +508317,Sports,Sports +508312,Sports,Sports +508310,Sports,Sports +508305,Sports,Sports +508302,Sports,Sports +495154,Small Business,Small Business +494081,Research and Development,Research and Development +492666,Research and Development,Research and Development +525884,Research and Development,Research and Development +525882,Research and Development,Research and Development +509563,Research and Development,Research and Development +506072,Research and Development,Research and Development +506572,Agriculture,Agriculture +506572,Consumer Issues,Consumer Issues +494573,Economic Development,Economic Development +494570,Economic Development,Economic Development +534896,Economic Development,Economic Development +527861,Economic Development,Economic Development +521032,Economic Development,Economic Development +521031,Economic Development,Economic Development +521030,Economic Development,Economic Development +512064,Economic Development,Economic Development +506573,Economic Development,Economic Development +506572,Economic Development,Economic Development +506573,Energy,Energy +506572,Energy,Energy +494573,Energy,Energy +494570,Energy,Energy +534896,Energy,Energy +521030,Environment,Environment +512064,Environment,Environment +506573,Environment,Environment +506572,Environment,Environment +500667,Environment,Environment +494573,Environment,Environment +494570,Environment,Environment +534896,Environment,Environment +527861,Environment,Environment +521032,Environment,Environment +506572,Health,Health +494573,Industry,Industry +494570,Industry,Industry +527861,Industry,Industry +506573,Industry,Industry +494573,Regional Development,Regional Development +494570,Regional Development,Regional Development +527861,Regional Development,Regional Development +512064,Regional Development,Regional Development +506573,Regional Development,Regional Development +506572,Regional Development,Regional Development +496581,Health,Health +493965,Health,Health +497565,Agriculture,Agriculture +496959,Agriculture,Agriculture +507263,Agriculture,Agriculture +503097,Economic Development,Economic Development +496959,Economic Development,Economic Development +497764,Government Procurement,Government Procurement +539067,Government Procurement,Government Procurement +514553,Government Procurement,Government Procurement +533542,Government Procurement,Government Procurement +533541,Government Procurement,Government Procurement +519623,Government Procurement,Government Procurement +500541,Government Procurement,Government Procurement +539069,Government Procurement,Government Procurement +537138,Government Procurement,Government Procurement +533545,Government Procurement,Government Procurement +542502,Government Procurement,Government Procurement +537136,Government Procurement,Government Procurement +533557,Government Procurement,Government Procurement +533550,Government Procurement,Government Procurement +533549,Government Procurement,Government Procurement +533548,Government Procurement,Government Procurement +533547,Government Procurement,Government Procurement +533546,Government Procurement,Government Procurement +527371,Government Procurement,Government Procurement +524102,Government Procurement,Government Procurement +524101,Government Procurement,Government Procurement +517261,Government Procurement,Government Procurement +515139,Government Procurement,Government Procurement +515138,Government Procurement,Government Procurement +514537,Government Procurement,Government Procurement +513818,Government Procurement,Government Procurement +512458,Government Procurement,Government Procurement +512457,Government Procurement,Government Procurement +510858,Government Procurement,Government Procurement +509633,Government Procurement,Government Procurement +500545,Government Procurement,Government Procurement +497763,Government Procurement,Government Procurement +497762,Government Procurement,Government Procurement +533534,Government Procurement,Government Procurement +530610,Government Procurement,Government Procurement +533555,Government Procurement,Government Procurement +533552,Government Procurement,Government Procurement +533539,Government Procurement,Government Procurement +533538,Government Procurement,Government Procurement +533537,Government Procurement,Government Procurement +533536,Government Procurement,Government Procurement +501782,Government Procurement,Government Procurement +498121,Government Procurement,Government Procurement +498120,Government Procurement,Government Procurement +498119,Government Procurement,Government Procurement +498118,Government Procurement,Government Procurement +498117,Government Procurement,Government Procurement +498116,Government Procurement,Government Procurement +498115,Government Procurement,Government Procurement +498114,Government Procurement,Government Procurement +498113,Government Procurement,Government Procurement +494824,Government Procurement,Government Procurement +494823,Government Procurement,Government Procurement +494822,Government Procurement,Government Procurement +494821,Government Procurement,Government Procurement +494820,Government Procurement,Government Procurement +494817,Government Procurement,Government Procurement +494801,Government Procurement,Government Procurement +494800,Government Procurement,Government Procurement +494796,Government Procurement,Government Procurement +515619,Government Procurement,Government Procurement +515618,Government Procurement,Government Procurement +514639,Government Procurement,Government Procurement +510377,Government Procurement,Government Procurement +510376,Government Procurement,Government Procurement +507350,Government Procurement,Government Procurement +507349,Government Procurement,Government Procurement +507346,Government Procurement,Government Procurement +507345,Government Procurement,Government Procurement +507344,Government Procurement,Government Procurement +507343,Government Procurement,Government Procurement +507342,Government Procurement,Government Procurement +507341,Government Procurement,Government Procurement +505216,Government Procurement,Government Procurement +505215,Government Procurement,Government Procurement +505213,Government Procurement,Government Procurement +505211,Government Procurement,Government Procurement +505193,Government Procurement,Government Procurement +505009,Government Procurement,Government Procurement +505000,Government Procurement,Government Procurement +504993,Government Procurement,Government Procurement +501810,Government Procurement,Government Procurement +501807,Government Procurement,Government Procurement +501805,Government Procurement,Government Procurement +501802,Government Procurement,Government Procurement +501798,Government Procurement,Government Procurement +501794,Government Procurement,Government Procurement +501789,Government Procurement,Government Procurement +496492,Agriculture,Agriculture +496491,Agriculture,Agriculture +516645,Agriculture,Agriculture +496494,Agriculture,Agriculture +496492,Consumer Issues,Consumer Issues +496491,Consumer Issues,Consumer Issues +496494,Consumer Issues,Consumer Issues +496492,International Trade,International Trade +496491,International Trade,International Trade +496494,International Trade,International Trade +495717,Industry,Industry +495480,Industry,Industry +502295,Industry,Industry +495720,Industry,Industry +495719,Industry,Industry +495717,Employment and Training,Employment and Training +495480,Employment and Training,Employment and Training +502295,Employment and Training,Employment and Training +495720,Employment and Training,Employment and Training +495719,Employment and Training,Employment and Training +502108,Privacy and Access to Information,Privacy and Access to Information +496048,Privacy and Access to Information,Privacy and Access to Information +496047,Privacy and Access to Information,Privacy and Access to Information +508251,Privacy and Access to Information,Privacy and Access to Information +519175,Environment,Environment +496047,Small Business,Small Business +519175,Small Business,Small Business +513267,Small Business,Small Business +508251,Small Business,Small Business +502109,Small Business,Small Business +502108,Small Business,Small Business +496048,Industry,Industry +496047,Industry,Industry +520047,Industry,Industry +519175,Industry,Industry +513267,Industry,Industry +508251,Industry,Industry +502109,Industry,Industry +502108,Industry,Industry +498694,Industry,Industry +498693,Industry,Industry +498692,Industry,Industry +498691,Industry,Industry +496048,Transportation,Transportation +496047,Transportation,Transportation +520047,Transportation,Transportation +508251,Transportation,Transportation +502109,Transportation,Transportation +502108,Transportation,Transportation +498694,Transportation,Transportation +498693,Transportation,Transportation +498692,Transportation,Transportation +498691,Transportation,Transportation +513267,Employment and Training,Employment and Training +520047,Consumer Issues,Consumer Issues +519175,Consumer Issues,Consumer Issues +513267,Consumer Issues,Consumer Issues +508251,Consumer Issues,Consumer Issues +502109,Consumer Issues,Consumer Issues +502108,Consumer Issues,Consumer Issues +498694,Consumer Issues,Consumer Issues +498693,Consumer Issues,Consumer Issues +498692,Consumer Issues,Consumer Issues +498691,Consumer Issues,Consumer Issues +498690,Consumer Issues,Consumer Issues +496048,Consumer Issues,Consumer Issues +502151,Budget,Budget +505466,Justice and Law Enforcement,Justice and Law Enforcement +502151,Justice and Law Enforcement,Justice and Law Enforcement +502151,Health,Health +502151,Taxation and Finance,Taxation and Finance +502151,Industry,Industry +505466,Consumer Issues,Consumer Issues +502151,Consumer Issues,Consumer Issues +496167,Security,Security +528393,Immigration,Immigration +519626,Immigration,Immigration +514554,Immigration,Immigration +508520,Immigration,Immigration +506310,Immigration,Immigration +500398,Immigration,Immigration +494484,Immigration,Immigration +493869,Immigration,Immigration +493867,Immigration,Immigration +532709,Immigration,Immigration +528393,Labour,Labour +542551,Agriculture,Agriculture +542549,Agriculture,Agriculture +540703,Agriculture,Agriculture +539054,Agriculture,Agriculture +539053,Agriculture,Agriculture +539052,Agriculture,Agriculture +539051,Agriculture,Agriculture +536684,Agriculture,Agriculture +536683,Agriculture,Agriculture +536681,Agriculture,Agriculture +536680,Agriculture,Agriculture +533111,Agriculture,Agriculture +533110,Agriculture,Agriculture +533109,Agriculture,Agriculture +533108,Agriculture,Agriculture +524020,Agriculture,Agriculture +524018,Agriculture,Agriculture +523897,Agriculture,Agriculture +520882,Agriculture,Agriculture +520881,Agriculture,Agriculture +518694,Agriculture,Agriculture +518693,Agriculture,Agriculture +518692,Agriculture,Agriculture +518689,Agriculture,Agriculture +516375,Agriculture,Agriculture +516373,Agriculture,Agriculture +514970,Agriculture,Agriculture +513602,Agriculture,Agriculture +512040,Agriculture,Agriculture +509678,Agriculture,Agriculture +509677,Agriculture,Agriculture +506498,Agriculture,Agriculture +503467,Agriculture,Agriculture +494224,Agriculture,Agriculture +494220,Agriculture,Agriculture +494219,Agriculture,Agriculture +495534,Climate,Climate +493045,Climate,Climate +536762,Climate,Climate +536760,Climate,Climate +527911,Climate,Climate +525186,Climate,Climate +525184,Climate,Climate +525183,Climate,Climate +519987,Climate,Climate +519982,Climate,Climate +519981,Climate,Climate +494413,Infrastructure,Infrastructure +500032,Government Procurement,Government Procurement +500597,Agriculture,Agriculture +500597,Environment,Environment +494728,Financial Institutions,Financial Institutions +500948,Consumer Issues,Consumer Issues +500948,Small Business,Small Business +494728,Industry,Industry +516843,Tourism,Tourism +500944,Economic Development,Economic Development +494134,Taxation and Finance,Taxation and Finance +511036,Climate,Climate +539935,Environment,Environment +539935,Energy,Energy +494105,Industry,Industry +494847,Economic Development,Economic Development +508294,Sports,Sports +508294,Small Business,Small Business +494189,Research and Development,Research and Development +506573,Agriculture,Agriculture +506573,Consumer Issues,Consumer Issues +500667,Economic Development,Economic Development +512064,Energy,Energy +521031,Environment,Environment +506573,Health,Health +506572,Industry,Industry +500667,Regional Development,Regional Development +508483,Industry,Industry +508483,Financial Institutions,Financial Institutions +508483,Climate,Climate +492622,Economic Development,Economic Development +493965,Government Procurement,Government Procurement +506606,Health,Health +514820,Government Procurement,Government Procurement +514820,Health,Health +503097,Agriculture,Agriculture +507263,Economic Development,Economic Development +497565,Environment,Environment +507263,Health,Health +516184,International Development,International Development +539068,Labour,Labour +517266,Government Procurement,Government Procurement +504184,Government Procurement,Government Procurement +533544,Government Procurement,Government Procurement +497761,Government Procurement,Government Procurement +533535,Government Procurement,Government Procurement +501786,Government Procurement,Government Procurement +492828,Budget,Budget +496493,Agriculture,Agriculture +496493,Consumer Issues,Consumer Issues +516645,Environment,Environment +516645,Industry,Industry +496493,International Trade,International Trade +516645,Small Business,Small Business +495718,Industry,Industry +495718,Employment and Training,Employment and Training +502109,Privacy and Access to Information,Privacy and Access to Information +520047,Environment,Environment +496048,Small Business,Small Business +498690,Industry,Industry +498690,Transportation,Transportation +519175,Employment and Training,Employment and Training +496047,Consumer Issues,Consumer Issues +505466,Budget,Budget +511271,Justice and Law Enforcement,Justice and Law Enforcement +505466,Health,Health +505466,Taxation and Finance,Taxation and Finance +505466,Industry,Industry +511271,Consumer Issues,Consumer Issues +505466,Small Business,Small Business +497787,International Trade,International Trade +497787,Taxation and Finance,Taxation and Finance +523359,Security,Security +531703,Climate,Climate +515243,Consumer Issues,Consumer Issues +531703,Education,Education +531703,Employment and Training,Employment and Training +531703,Immigration,Immigration +531703,Labour,Labour +515243,Taxation and Finance,Taxation and Finance +542554,Agriculture,Agriculture +495537,Climate,Climate +493073,Transportation,Transportation +493069,Climate,Climate +493069,Environment,Environment +493099,Agriculture,Agriculture +493141,Economic Development,Economic Development +499573,International Relations,International Relations +493352,Infrastructure,Infrastructure +511107,Justice and Law Enforcement,Justice and Law Enforcement +538422,Mining,Mining +538422,Regional Development,Regional Development +496281,Infrastructure,Infrastructure +496281,Housing,Housing +496281,Health,Health +496281,Budget,Budget +496108,Environment,Environment +505190,Taxation and Finance,Taxation and Finance +494225,Industry,Industry +494225,International Trade,International Trade +512123,Taxation and Finance,Taxation and Finance +495583,Industry,Industry +493707,Industry,Industry +539667,Climate,Climate +493596,Infrastructure,Infrastructure +538392,Mining,Mining +538392,Regional Development,Regional Development +492882,Budget,Budget +499532,Constitutional Issues,Constitutional Issues +499532,Justice and Law Enforcement,Justice and Law Enforcement +493723,Health,Health +502919,Housing,Housing +494197,Security,Security +499664,Economic Development,Economic Development +499664,Environment,Environment +501772,Budget,Budget +501775,Taxation and Finance,Taxation and Finance +496921,Government Procurement,Government Procurement +496921,Regional Development,Regional Development +529470,Transportation,Transportation +496926,Economic Development,Economic Development +496927,Industry,Industry +494249,Economic Development,Economic Development +506833,Labour,Labour +520809,Economic Development,Economic Development +502494,Health,Health +502494,Research and Development,Research and Development +494274,Employment and Training,Employment and Training +494274,Immigration,Immigration +514240,Taxation and Finance,Taxation and Finance +520416,Environment,Environment +503143,Economic Development,Economic Development +520416,Transportation,Transportation +528632,Climate,Climate +528632,Industry,Industry +526897,Regional Development,Regional Development +520416,Energy,Energy +506811,Transportation,Transportation +533306,Environment,Environment +533311,Agriculture,Agriculture +498035,Budget,Budget +498035,Health,Health +503989,Infrastructure,Infrastructure +509431,Research and Development,Research and Development +498829,Climate,Climate +498829,Infrastructure,Infrastructure +499934,Consumer Issues,Consumer Issues +494864,Economic Development,Economic Development +496390,Education,Education +499934,Employment and Training,Employment and Training +496773,Taxation and Finance,Taxation and Finance +507991,Taxation and Finance,Taxation and Finance +542259,Labour,Labour +498878,Employment and Training,Employment and Training +498878,Industry,Industry +502115,Infrastructure,Infrastructure +502115,Transportation,Transportation +516187,International Development,International Development +509461,Health,Health +496720,Budget,Budget +496720,Infrastructure,Infrastructure +500381,Research and Development,Research and Development +506125,Economic Development,Economic Development +494197,Municipalities,Municipalities +503137,International Development,International Development +500053,International Relations,International Relations +500052,International Relations,International Relations +505046,Taxation and Finance,Taxation and Finance +505046,Budget,Budget +505048,Taxation and Finance,Taxation and Finance +503078,Economic Development,Economic Development +503078,Industry,Industry +500701,Economic Development,Economic Development +494544,International Trade,International Trade +494544,Industry,Industry +533922,Budget,Budget +521305,Health,Health +509949,Housing,Housing +495132,Infrastructure,Infrastructure +511073,Energy,Energy +525769,Climate,Climate +525769,Environment,Environment +525769,Industry,Industry +502070,Infrastructure,Infrastructure +502070,Transportation,Transportation +523823,Industry,Industry +542855,International Trade,International Trade +523406,Mining,Mining +516153,Energy,Energy +516153,Employment and Training,Employment and Training +516153,Environment,Environment +523406,Industry,Industry +494708,Agriculture,Agriculture +500543,Health,Health +494417,Environment,Environment +496409,Economic Development,Economic Development +496409,Financial Institutions,Financial Institutions +495259,Budget,Budget +532061,Fisheries,Fisheries +494238,Economic Development,Economic Development +495422,Energy,Energy +532637,Economic Development,Economic Development +506326,Education,Education +532634,Employment and Training,Employment and Training +506364,Health,Health +532635,Regional Development,Regional Development +499550,Constitutional Issues,Constitutional Issues +499550,Justice and Law Enforcement,Justice and Law Enforcement +536213,Health,Health +502045,Infrastructure,Infrastructure +502045,Climate,Climate +507982,Health,Health +510741,Education,Education +510741,Economic Development,Economic Development +510741,Employment and Training,Employment and Training +500135,International Relations,International Relations +530500,Budget,Budget +530497,Health,Health +519980,Climate,Climate +519977,Climate,Climate +519973,Climate,Climate +519972,Climate,Climate +519969,Climate,Climate +519959,Climate,Climate +514794,Climate,Climate +514791,Climate,Climate +511248,Climate,Climate +511242,Climate,Climate +499546,Climate,Climate +499542,Climate,Climate +499540,Climate,Climate +499539,Climate,Climate +499530,Climate,Climate +499528,Climate,Climate +499525,Climate,Climate +499522,Climate,Climate +499517,Climate,Climate +499510,Climate,Climate +499508,Climate,Climate +499502,Climate,Climate +499497,Climate,Climate +495555,Climate,Climate +495543,Climate,Climate +493071,Transportation,Transportation +493140,Economic Development,Economic Development +493137,Economic Development,Economic Development +539434,Economic Development,Economic Development +531560,Economic Development,Economic Development +528846,Economic Development,Economic Development +525943,Economic Development,Economic Development +515584,Economic Development,Economic Development +515583,Economic Development,Economic Development +514063,Economic Development,Economic Development +514060,Economic Development,Economic Development +512740,Economic Development,Economic Development +510709,Economic Development,Economic Development +507995,Economic Development,Economic Development +505447,Economic Development,Economic Development +495975,International Relations,International Relations +493283,International Relations,International Relations +499603,International Relations,International Relations +493350,Infrastructure,Infrastructure +493330,Infrastructure,Infrastructure +493041,Justice and Law Enforcement,Justice and Law Enforcement +538418,Mining,Mining +510659,Mining,Mining +538458,Mining,Mining +538418,Regional Development,Regional Development +510659,Regional Development,Regional Development +538458,Regional Development,Regional Development +496100,Environment,Environment +496097,Environment,Environment +502433,Environment,Environment +499112,Taxation and Finance,Taxation and Finance +499087,Taxation and Finance,Taxation and Finance +508135,Taxation and Finance,Taxation and Finance +494058,Taxation and Finance,Taxation and Finance +493490,Taxation and Finance,Taxation and Finance +531777,Taxation and Finance,Taxation and Finance +527051,Taxation and Finance,Taxation and Finance +518618,Taxation and Finance,Taxation and Finance +494022,Industry,Industry +493512,Industry,Industry +539665,Climate,Climate +510663,Mining,Mining +510663,Regional Development,Regional Development +499529,Constitutional Issues,Constitutional Issues +499529,Justice and Law Enforcement,Justice and Law Enforcement +494197,Housing,Housing +494196,Housing,Housing +539830,Housing,Housing +539731,Housing,Housing +521296,Housing,Housing +512509,Housing,Housing +512508,Housing,Housing +512507,Housing,Housing +509824,Housing,Housing +503821,Housing,Housing +496088,Economic Development,Economic Development +496088,Environment,Environment +522918,Transportation,Transportation +494248,Economic Development,Economic Development +494247,Economic Development,Economic Development +506832,Labour,Labour +506831,Labour,Labour +518824,Economic Development,Economic Development +527491,Economic Development,Economic Development +527119,Economic Development,Economic Development +527118,Economic Development,Economic Development +497989,Health,Health +497989,Research and Development,Research and Development +494273,Employment and Training,Employment and Training +494272,Employment and Training,Employment and Training +508887,Employment and Training,Employment and Training +499555,Employment and Training,Employment and Training +494273,Immigration,Immigration +494272,Immigration,Immigration +508887,Immigration,Immigration +499555,Immigration,Immigration +496207,Taxation and Finance,Taxation and Finance +503143,Environment,Environment +498922,Environment,Environment +526900,Environment,Environment +526897,Environment,Environment +522485,Environment,Environment +498922,Economic Development,Economic Development +520416,Climate,Climate +503143,Climate,Climate +498922,Climate,Climate +522485,Industry,Industry +503143,Regional Development,Regional Development +498922,Regional Development,Regional Development +526900,Regional Development,Regional Development +503143,Energy,Energy +498922,Energy,Energy +528632,Energy,Energy +526900,Energy,Energy +526897,Energy,Energy +533311,Transportation,Transportation +533305,Environment,Environment +506811,Environment,Environment +533313,Environment,Environment +533307,Environment,Environment +533305,Agriculture,Agriculture +506811,Agriculture,Agriculture +533313,Agriculture,Agriculture +498028,Budget,Budget +494525,Budget,Budget +509431,Budget,Budget +506598,Budget,Budget +506514,Budget,Budget +500222,Budget,Budget +498028,Health,Health +494525,Health,Health +509431,Health,Health +506598,Health,Health +506514,Health,Health +503991,Health,Health +503990,Health,Health +503989,Health,Health +500222,Health,Health +498035,Infrastructure,Infrastructure +494525,Infrastructure,Infrastructure +509431,Infrastructure,Infrastructure +506598,Infrastructure,Infrastructure +506514,Infrastructure,Infrastructure +503991,Infrastructure,Infrastructure +503990,Infrastructure,Infrastructure +498028,Research and Development,Research and Development +494525,Research and Development,Research and Development +498803,Climate,Climate +508543,Climate,Climate +504754,Climate,Climate +502044,Climate,Climate +498803,Infrastructure,Infrastructure +508543,Infrastructure,Infrastructure +504754,Infrastructure,Infrastructure +502044,Infrastructure,Infrastructure +496773,Consumer Issues,Consumer Issues +496390,Consumer Issues,Consumer Issues +494865,Education,Education +496773,Employment and Training,Employment and Training +496390,Employment and Training,Employment and Training +494865,Employment and Training,Employment and Training +494864,Employment and Training,Employment and Training +498873,Employment and Training,Employment and Training +498873,Industry,Industry +494827,Infrastructure,Infrastructure +494826,Infrastructure,Infrastructure +494827,Transportation,Transportation +494826,Transportation,Transportation +509430,Health,Health +507544,Health,Health +506599,Health,Health +506513,Health,Health +500381,Health,Health +496720,Health,Health +496661,Health,Health +494524,Health,Health +496661,Budget,Budget +494524,Budget,Budget +510863,Budget,Budget +509461,Budget,Budget +509430,Budget,Budget +507544,Budget,Budget +506599,Budget,Budget +506513,Budget,Budget +504077,Budget,Budget +500381,Budget,Budget +496661,Infrastructure,Infrastructure +494524,Infrastructure,Infrastructure +510863,Infrastructure,Infrastructure +509461,Infrastructure,Infrastructure +509430,Infrastructure,Infrastructure +507544,Infrastructure,Infrastructure +506599,Infrastructure,Infrastructure +506513,Infrastructure,Infrastructure +504077,Infrastructure,Infrastructure +500381,Infrastructure,Infrastructure +496720,Research and Development,Research and Development +494524,Research and Development,Research and Development +510863,Research and Development,Research and Development +509461,Research and Development,Research and Development +509430,Research and Development,Research and Development +507544,Research and Development,Research and Development +504077,Research and Development,Research and Development +494196,Municipalities,Municipalities +494195,Municipalities,Municipalities +542126,Municipalities,Municipalities +539830,Municipalities,Municipalities +539731,Municipalities,Municipalities +526065,Municipalities,Municipalities +521295,Municipalities,Municipalities +514320,Municipalities,Municipalities +514319,Municipalities,Municipalities +512509,Municipalities,Municipalities +512508,Municipalities,Municipalities +512507,Municipalities,Municipalities +509824,Municipalities,Municipalities +509823,Municipalities,Municipalities +506479,Municipalities,Municipalities +506478,Municipalities,Municipalities +503821,Municipalities,Municipalities +503820,Municipalities,Municipalities +502919,Municipalities,Municipalities +494198,Municipalities,Municipalities +499939,International Development,International Development +493888,International Development,International Development +542565,International Development,International Development +542236,International Development,International Development +530793,International Development,International Development +530784,International Development,International Development +530555,International Development,International Development +530011,International Development,International Development +530010,International Development,International Development +529784,International Development,International Development +506229,International Development,International Development +506110,International Development,International Development +504157,International Development,International Development +493900,International Relations,International Relations +493899,International Relations,International Relations +503053,International Relations,International Relations +500245,Economic Development,Economic Development +500087,Economic Development,Economic Development +500245,Industry,Industry +500087,Industry,Industry +500700,Economic Development,Economic Development +531868,Budget,Budget +531867,Budget,Budget +523582,Budget,Budget +521305,Budget,Budget +517111,Budget,Budget +515060,Budget,Budget +515055,Budget,Budget +509949,Budget,Budget +507403,Budget,Budget +507397,Budget,Budget +503987,Budget,Budget +501061,Budget,Budget +498350,Budget,Budget +498348,Budget,Budget +498347,Budget,Budget +498346,Budget,Budget +498343,Budget,Budget +498340,Budget,Budget +498336,Budget,Budget +498334,Budget,Budget +498328,Budget,Budget +495570,Budget,Budget +495561,Budget,Budget +495559,Budget,Budget +495144,Budget,Budget +495143,Budget,Budget +495142,Budget,Budget +495141,Budget,Budget +495140,Budget,Budget +495139,Budget,Budget +495137,Budget,Budget +495136,Budget,Budget +495135,Budget,Budget +495134,Budget,Budget +495133,Budget,Budget +495132,Budget,Budget +495131,Budget,Budget +495129,Budget,Budget +542952,Budget,Budget +517111,Health,Health +515060,Health,Health +515055,Health,Health +509949,Health,Health +507403,Health,Health +507397,Health,Health +503987,Health,Health +501061,Health,Health +498350,Health,Health +498348,Health,Health +498347,Health,Health +498346,Health,Health +498343,Health,Health +498340,Health,Health +498336,Health,Health +498334,Health,Health +498328,Health,Health +495570,Health,Health +495561,Health,Health +495559,Health,Health +495144,Health,Health +495143,Health,Health +495142,Health,Health +495141,Health,Health +495140,Health,Health +495139,Health,Health +495137,Health,Health +495136,Health,Health +495135,Health,Health +495134,Health,Health +495133,Health,Health +495132,Health,Health +495131,Health,Health +495129,Health,Health +542952,Health,Health +533922,Health,Health +531868,Health,Health +531867,Health,Health +523582,Health,Health +507403,Housing,Housing +507397,Housing,Housing +503987,Housing,Housing +501061,Housing,Housing +498350,Housing,Housing +498348,Housing,Housing +498347,Housing,Housing +498346,Housing,Housing +498343,Housing,Housing +498340,Housing,Housing +498336,Housing,Housing +498334,Housing,Housing +498328,Housing,Housing +495570,Housing,Housing +495561,Housing,Housing +495559,Housing,Housing +495144,Housing,Housing +495143,Housing,Housing +495142,Housing,Housing +495141,Housing,Housing +495140,Housing,Housing +495139,Housing,Housing +495137,Housing,Housing +495136,Housing,Housing +495135,Housing,Housing +495134,Housing,Housing +495133,Housing,Housing +495132,Housing,Housing +495131,Housing,Housing +495129,Housing,Housing +542952,Housing,Housing +533922,Housing,Housing +531868,Housing,Housing +531867,Housing,Housing +523582,Housing,Housing +521305,Housing,Housing +517111,Housing,Housing +515060,Housing,Housing +515055,Housing,Housing +495131,Infrastructure,Infrastructure +495129,Infrastructure,Infrastructure +542952,Infrastructure,Infrastructure +533922,Infrastructure,Infrastructure +531868,Infrastructure,Infrastructure +531867,Infrastructure,Infrastructure +523582,Infrastructure,Infrastructure +521305,Infrastructure,Infrastructure +517111,Infrastructure,Infrastructure +515060,Infrastructure,Infrastructure +515055,Infrastructure,Infrastructure +509949,Infrastructure,Infrastructure +507403,Infrastructure,Infrastructure +507397,Infrastructure,Infrastructure +503987,Infrastructure,Infrastructure +501061,Infrastructure,Infrastructure +498350,Infrastructure,Infrastructure +498348,Infrastructure,Infrastructure +498347,Infrastructure,Infrastructure +498346,Infrastructure,Infrastructure +498343,Infrastructure,Infrastructure +498340,Infrastructure,Infrastructure +498336,Infrastructure,Infrastructure +498334,Infrastructure,Infrastructure +498328,Infrastructure,Infrastructure +495570,Infrastructure,Infrastructure +495561,Infrastructure,Infrastructure +495559,Infrastructure,Infrastructure +495144,Infrastructure,Infrastructure +495143,Infrastructure,Infrastructure +495142,Infrastructure,Infrastructure +495141,Infrastructure,Infrastructure +495140,Infrastructure,Infrastructure +495139,Infrastructure,Infrastructure +495137,Infrastructure,Infrastructure +495136,Infrastructure,Infrastructure +495135,Infrastructure,Infrastructure +495134,Infrastructure,Infrastructure +495133,Infrastructure,Infrastructure +525769,Energy,Energy +494899,Infrastructure,Infrastructure +494414,Infrastructure,Infrastructure +494899,Transportation,Transportation +494414,Transportation,Transportation +542412,International Trade,International Trade +533446,International Trade,International Trade +516153,Mining,Mining +516152,Mining,Mining +542855,Mining,Mining +542412,Mining,Mining +533476,Mining,Mining +533447,Mining,Mining +533446,Mining,Mining +533444,Mining,Mining +523823,Mining,Mining +494285,Health,Health +494416,Environment,Environment +496409,Environment,Environment +495259,Environment,Environment +494417,Economic Development,Economic Development +494416,Economic Development,Economic Development +506416,Economic Development,Economic Development +495259,Financial Institutions,Financial Institutions +494417,Financial Institutions,Financial Institutions +494417,Budget,Budget +494416,Budget,Budget +506416,Budget,Budget +496409,Budget,Budget +530061,Fisheries,Fisheries +529975,Fisheries,Fisheries +520970,Fisheries,Fisheries +516092,Fisheries,Fisheries +516091,Fisheries,Fisheries +512141,Fisheries,Fisheries +503060,Fisheries,Fisheries +500079,Fisheries,Fisheries +496644,Fisheries,Fisheries +538593,Fisheries,Fisheries +494238,Energy,Energy +532636,Economic Development,Economic Development +503782,Economic Development,Economic Development +532644,Economic Development,Economic Development +532642,Economic Development,Economic Development +532641,Economic Development,Economic Development +532640,Economic Development,Economic Development +532639,Economic Development,Economic Development +532638,Economic Development,Economic Development +503782,Education,Education +532644,Education,Education +532642,Education,Education +532641,Education,Education +532640,Education,Education +532639,Education,Education +532638,Education,Education +532637,Education,Education +532636,Education,Education +532635,Education,Education +532634,Education,Education +532633,Education,Education +532632,Education,Education +506364,Education,Education +532633,Employment and Training,Employment and Training +532632,Employment and Training,Employment and Training +506364,Employment and Training,Employment and Training +506326,Employment and Training,Employment and Training +503782,Employment and Training,Employment and Training +532644,Employment and Training,Employment and Training +532642,Employment and Training,Employment and Training +532641,Employment and Training,Employment and Training +532640,Employment and Training,Employment and Training +532639,Employment and Training,Employment and Training +532638,Employment and Training,Employment and Training +532637,Employment and Training,Employment and Training +532636,Employment and Training,Employment and Training +532635,Employment and Training,Employment and Training +506326,Health,Health +503782,Health,Health +532644,Health,Health +532642,Health,Health +532641,Health,Health +532640,Health,Health +532639,Health,Health +532638,Health,Health +532637,Health,Health +532636,Health,Health +532635,Health,Health +532634,Health,Health +532633,Health,Health +532632,Health,Health +532634,Regional Development,Regional Development +532632,Regional Development,Regional Development +506326,Regional Development,Regional Development +503782,Regional Development,Regional Development +532642,Regional Development,Regional Development +532641,Regional Development,Regional Development +532640,Regional Development,Regional Development +532639,Regional Development,Regional Development +532638,Regional Development,Regional Development +532636,Regional Development,Regional Development +498887,Infrastructure,Infrastructure +498795,Infrastructure,Infrastructure +504762,Infrastructure,Infrastructure +502104,Infrastructure,Infrastructure +502100,Infrastructure,Infrastructure +498887,Climate,Climate +498795,Climate,Climate +504762,Climate,Climate +502104,Climate,Climate +502100,Climate,Climate +507979,Health,Health +507982,Education,Education +507979,Education,Education +507982,Employment and Training,Employment and Training +496736,International Relations,International Relations +496368,International Relations,International Relations +530498,Budget,Budget +530497,Budget,Budget +530504,Budget,Budget +530502,Budget,Budget +530501,Budget,Budget +520989,Health,Health +510985,Health,Health +537437,Health,Health +530653,Health,Health +530504,Health,Health +530502,Health,Health +530501,Health,Health +530500,Health,Health +530498,Health,Health +520989,Taxation and Finance,Taxation and Finance +513403,Taxation and Finance,Taxation and Finance +537437,Taxation and Finance,Taxation and Finance +533032,Taxation and Finance,Taxation and Finance +533026,Taxation and Finance,Taxation and Finance +530653,Taxation and Finance,Taxation and Finance +530504,Taxation and Finance,Taxation and Finance +530502,Taxation and Finance,Taxation and Finance +530501,Taxation and Finance,Taxation and Finance +530500,Taxation and Finance,Taxation and Finance +530498,Taxation and Finance,Taxation and Finance +506716,Budget,Budget +498234,Budget,Budget +498234,Health,Health +497579,Health,Health +509100,Health,Health +506716,Health,Health +494024,Economic Development,Economic Development +494023,Economic Development,Economic Development +497017,Economic Development,Economic Development +494024,Employment and Training,Employment and Training +494023,Employment and Training,Employment and Training +497017,Employment and Training,Employment and Training +494024,Environment,Environment +494023,Environment,Environment +497017,Environment,Environment +494024,Infrastructure,Infrastructure +494023,Infrastructure,Infrastructure +497017,Infrastructure,Infrastructure +494024,Mining,Mining +494023,Mining,Mining +497017,Mining,Mining +494024,Regional Development,Regional Development +494023,Regional Development,Regional Development +497017,Regional Development,Regional Development +500013,Industry,Industry +494474,Industry,Industry +500013,Health,Health +494474,Health,Health +496598,Budget,Budget +494590,Budget,Budget +500931,Budget,Budget +496601,Budget,Budget +496600,Budget,Budget +496598,Health,Health +494590,Health,Health +503502,Health,Health +500931,Health,Health +496601,Health,Health +496600,Health,Health +494590,Industry,Industry +503502,Industry,Industry +500931,Industry,Industry +496601,Industry,Industry +496600,Industry,Industry +496599,Industry,Industry +530493,Budget,Budget +530491,Budget,Budget +520992,Health,Health +520990,Health,Health +539377,Health,Health +530506,Health,Health +530496,Health,Health +530495,Health,Health +530494,Health,Health +530493,Health,Health +530491,Health,Health +530008,Health,Health +494878,Defence,Defence +494626,Defence,Defence +506338,Defence,Defence +494878,Government Procurement,Government Procurement +494626,Government Procurement,Government Procurement +506338,Government Procurement,Government Procurement +520353,Government Procurement,Government Procurement +501375,Government Procurement,Government Procurement +534053,Government Procurement,Government Procurement +534052,Government Procurement,Government Procurement +534036,Government Procurement,Government Procurement +537204,Government Procurement,Government Procurement +534047,Government Procurement,Government Procurement +515416,Government Procurement,Government Procurement +501374,Government Procurement,Government Procurement +544461,Government Procurement,Government Procurement +541763,Government Procurement,Government Procurement +511013,Taxation and Finance,Taxation and Finance +497019,Taxation and Finance,Taxation and Finance +526273,Taxation and Finance,Taxation and Finance +526048,Taxation and Finance,Taxation and Finance +499628,Tourism,Tourism +497019,Tourism,Tourism +536243,Tourism,Tourism +533034,Tourism,Tourism +533025,Tourism,Tourism +526273,Tourism,Tourism +526048,Tourism,Tourism +525498,Tourism,Tourism +525492,Tourism,Tourism +523664,Tourism,Tourism +523505,Tourism,Tourism +522839,Tourism,Tourism +520988,Tourism,Tourism +517865,Tourism,Tourism +517862,Tourism,Tourism +517861,Tourism,Tourism +517859,Tourism,Tourism +511013,Tourism,Tourism +510994,Tourism,Tourism +510993,Tourism,Tourism +507821,Tourism,Tourism +502753,Tourism,Tourism +502750,Tourism,Tourism +502745,Tourism,Tourism +502743,Tourism,Tourism +502740,Tourism,Tourism +499653,Tourism,Tourism +499652,Tourism,Tourism +499651,Tourism,Tourism +499649,Tourism,Tourism +499648,Tourism,Tourism +499646,Tourism,Tourism +499645,Tourism,Tourism +499642,Tourism,Tourism +499641,Tourism,Tourism +499640,Tourism,Tourism +499639,Tourism,Tourism +499637,Tourism,Tourism +499635,Tourism,Tourism +499020,Economic Development,Economic Development +500034,Regional Development,Regional Development +497940,Regional Development,Regional Development +500319,Regional Development,Regional Development +500572,Health,Health +500572,Industry,Industry +516598,Constitutional Issues,Constitutional Issues +516602,Fisheries,Fisheries +516598,Fisheries,Fisheries +516598,Industry,Industry +516598,Justice and Law Enforcement,Justice and Law Enforcement +518542,Industry,Industry +518541,Industry,Industry +538938,Industry,Industry +538937,Industry,Industry +538933,Industry,Industry +524535,Industry,Industry +524534,Industry,Industry +524531,Industry,Industry +524528,Industry,Industry +521484,Industry,Industry +521482,Industry,Industry +521481,Industry,Industry +521480,Industry,Industry +521479,Industry,Industry +518633,Industry,Industry +518555,Industry,Industry +518554,Industry,Industry +518553,Industry,Industry +518552,Industry,Industry +518549,Industry,Industry +518548,Industry,Industry +518547,Industry,Industry +518546,Industry,Industry +518545,Industry,Industry +518544,Industry,Industry +542587,Agriculture,Agriculture +542586,Agriculture,Agriculture +499636,Government Procurement,Government Procurement +500015,Economic Development,Développement économique +497468,Economic Development,Développement économique +497467,Economic Development,Développement économique +497468,Industry,Industrie +497467,Industry,Industrie +500487,Industry,Industrie +497468,Mining,Mines +497467,Mining,Mines +500487,Mining,Mines +494519,Education,Education +494188,Education,Education +521419,Climate,Climate +516465,Climate,Climate +516461,Climate,Climate +516443,Climate,Climate +516442,Climate,Climate +516441,Climate,Climate +515103,Climate,Climate +515028,Climate,Climate +515023,Climate,Climate +515021,Climate,Climate +513306,Climate,Climate +512306,Climate,Climate +510545,Climate,Climate +504499,Climate,Climate +501093,Climate,Climate +501086,Climate,Climate +501084,Climate,Climate +495093,Climate,Climate +538610,Climate,Climate +531906,Climate,Climate +527995,Climate,Climate +527990,Climate,Climate +521417,Economic Development,Economic Development +521416,Economic Development,Economic Development +519408,Economic Development,Economic Development +518833,Economic Development,Economic Development +516906,Economic Development,Economic Development +516468,Economic Development,Economic Development +516465,Economic Development,Economic Development +516463,Economic Development,Economic Development +516444,Economic Development,Economic Development +516443,Economic Development,Economic Development +516442,Economic Development,Economic Development +516441,Economic Development,Economic Development +515024,Economic Development,Economic Development +515023,Economic Development,Economic Development +515022,Economic Development,Economic Development +515021,Economic Development,Economic Development +515020,Economic Development,Economic Development +512300,Economic Development,Economic Development +510558,Economic Development,Economic Development +510556,Economic Development,Economic Development +510553,Economic Development,Economic Development +510551,Economic Development,Economic Development +510545,Economic Development,Economic Development +508989,Economic Development,Economic Development +506818,Economic Development,Economic Development +501096,Economic Development,Economic Development +501095,Economic Development,Economic Development +501093,Economic Development,Economic Development +501086,Economic Development,Economic Development +543150,Economic Development,Economic Development +541013,Economic Development,Economic Development +541012,Economic Development,Economic Development +541011,Economic Development,Economic Development +538606,Economic Development,Economic Development +535703,Economic Development,Economic Development +531908,Economic Development,Economic Development +531906,Economic Development,Economic Development +531905,Economic Development,Economic Development +531035,Economic Development,Economic Development +527995,Economic Development,Economic Development +527994,Economic Development,Economic Development +527993,Economic Development,Economic Development +527992,Economic Development,Economic Development +524312,Economic Development,Economic Development +521419,Economic Development,Economic Development +513301,Employment and Training,Employment and Training +501095,Employment and Training,Employment and Training +531035,Employment and Training,Employment and Training +527990,Employment and Training,Employment and Training +516461,Employment and Training,Employment and Training +515024,Employment and Training,Employment and Training +513306,Employment and Training,Employment and Training +504499,Energy,Energy +495093,Energy,Energy +531906,Energy,Energy +527990,Energy,Energy +521419,Energy,Energy +515024,Energy,Energy +513306,Energy,Energy +512300,Energy,Energy +501086,Environment,Environment +501084,Environment,Environment +538610,Environment,Environment +531035,Environment,Environment +527990,Environment,Environment +524311,Environment,Environment +521417,Environment,Environment +518833,Environment,Environment +516907,Environment,Environment +516468,Environment,Environment +516442,Environment,Environment +516441,Environment,Environment +515103,Environment,Environment +506818,Environment,Environment +501095,Environment,Environment +521433,Industry,Industry +521432,Industry,Industry +506818,Industry,Industry +506817,Industry,Industry +506816,Industry,Industry +501096,Industry,Industry +501095,Industry,Industry +501093,Industry,Industry +501086,Industry,Industry +501084,Industry,Industry +524316,Industry,Industry +524315,Industry,Industry +524314,Industry,Industry +524313,Industry,Industry +515024,Infrastructure,Infrastructure +543147,Internal Trade,Internal Trade +501083,International Relations,International Relations +498506,International Relations,International Relations +543147,International Relations,International Relations +535705,International Relations,International Relations +527991,International Relations,International Relations +526454,International Relations,International Relations +516465,International Relations,International Relations +515103,International Relations,International Relations +512306,International Relations,International Relations +504497,International Relations,International Relations +504495,International Trade,International Trade +501083,International Trade,International Trade +535705,International Trade,International Trade +527994,International Trade,International Trade +526454,International Trade,International Trade +515020,Labour,Labour +514688,Labour,Labour +513846,Labour,Labour +513302,Labour,Labour +513301,Labour,Labour +511463,Labour,Labour +510551,Labour,Labour +510541,Labour,Labour +510537,Labour,Labour +510534,Labour,Labour +508995,Labour,Labour +508989,Labour,Labour +508986,Labour,Labour +516468,Labour,Labour +521416,Mining,Mining +519409,Mining,Mining +519408,Mining,Mining +518833,Mining,Mining +516907,Mining,Mining +516906,Mining,Mining +516468,Mining,Mining +516465,Mining,Mining +516463,Mining,Mining +516461,Mining,Mining +516444,Mining,Mining +516443,Mining,Mining +516442,Mining,Mining +516441,Mining,Mining +515103,Mining,Mining +515028,Mining,Mining +515024,Mining,Mining +515023,Mining,Mining +515022,Mining,Mining +515021,Mining,Mining +515020,Mining,Mining +514688,Mining,Mining +513846,Mining,Mining +513306,Mining,Mining +513302,Mining,Mining +513301,Mining,Mining +512306,Mining,Mining +512300,Mining,Mining +511463,Mining,Mining +510558,Mining,Mining +510556,Mining,Mining +510553,Mining,Mining +510551,Mining,Mining +510545,Mining,Mining +510541,Mining,Mining +510537,Mining,Mining +510534,Mining,Mining +508995,Mining,Mining +508989,Mining,Mining +508986,Mining,Mining +506818,Mining,Mining +506817,Mining,Mining +506816,Mining,Mining +504499,Mining,Mining +504497,Mining,Mining +530497,Taxation and Finance,Taxation and Finance +494020,Health,Health +494016,Health,Health +494018,Health,Health +509100,Budget,Budget +502228,Health,Health +494674,Economic Development,Economic Development +494674,Employment and Training,Employment and Training +494674,Environment,Environment +494674,Infrastructure,Infrastructure +494674,Mining,Mining +494674,Regional Development,Regional Development +500014,Industry,Industry +500014,Health,Health +496599,Budget,Budget +496599,Health,Health +496598,Industry,Industry +530495,Budget,Budget +520135,Employment and Training,Employment and Training +522829,Health,Health +511747,International Development,International Development +540368,Climate,Climate +506182,Defence,Defence +506182,Government Procurement,Government Procurement +501377,Government Procurement,Government Procurement +501381,Employment and Training,Employment and Training +501381,Economic Development,Economic Development +501379,Government Procurement,Government Procurement +530980,Government Procurement,Government Procurement +501372,Government Procurement,Government Procurement +501366,Government Procurement,Government Procurement +501373,Government Procurement,Government Procurement +539437,Government Procurement,Government Procurement +497019,Industry,Industry +497019,Small Business,Small Business +525492,Taxation and Finance,Taxation and Finance +499632,Tourism,Tourism +502943,Economic Development,Economic Development +500142,Regional Development,Regional Development +500277,Small Business,Small Business +496378,Industry,Industry +496378,Regional Development,Regional Development +496378,Economic Development,Economic Development +494784,Immigration,Immigration +510886,Government Procurement,Government Procurement +510886,Health,Health +510886,Industry,Industry +516602,Constitutional Issues,Constitutional Issues +504338,Fisheries,Fisheries +516602,Industry,Industry +516602,Justice and Law Enforcement,Justice and Law Enforcement +494077,Energy,Energy +494106,Immigration,Immigration +499618,Research and Development,Research and Development +499618,Health,Health +502422,Health,Health +518543,Industry,Industry +542588,Agriculture,Agriculture +497580,Health,Health +499643,Government Procurement,Government Procurement +494187,Industry,Industry +500487,Economic Development,Développement économique +500015,Industry,Industrie +500015,Mining,Mines +497466,Education,Education +494188,Justice and Law Enforcement,Justice and Law Enforcement +524311,Climate,Climate +521418,Economic Development,Economic Development +513302,Employment and Training,Employment and Training +510551,Energy,Energy +501093,Environment,Environment +516907,Fisheries,Fisheries +521435,Industry,Industry +535701,Infrastructure,Infrastructure +516465,Internal Trade,Internal Trade +527991,International Development,International Development +504495,International Relations,International Relations +504497,International Trade,International Trade +515028,Labour,Labour +521417,Mining,Mining +527992,Regional Development,Regional Development +504499,Research and Development,Research and Development +524311,Taxation and Finance,Taxation and Finance +521416,Transportation,Transportation +503609,Government Procurement,Government Procurement +503609,Health,Health +494495,Government Procurement,Government Procurement +514279,Research and Development,Research and Development +500033,Economic Development,Economic Development +500033,Health,Health +500033,Industry,Industry +497573,Environment,Environment +499847,Industry,Industry +523272,Environment,Environment +523272,Research and Development,Research and Development +543678,Agriculture,Agriculture +532307,Climate,Climate +498732,Energy,Energy +532307,Environment,Environment +499551,Justice and Law Enforcement,Justice and Law Enforcement +499551,Constitutional Issues,Constitutional Issues +497827,Economic Development,Economic Development +497827,Small Business,Small Business +497827,Regional Development,Regional Development +500549,Economic Development,Economic Development +504582,Health,Health +494299,International Development,International Development +502125,Sports,Sports +498695,Tourism,Tourism +502125,Health,Health +502125,Budget,Budget +515255,Financial Institutions,Financial Institutions +506158,Taxation and Finance,Taxation and Finance +503121,Employment and Training,Employment and Training +541944,Energy,Energy +541945,Environment,Environment +541944,Infrastructure,Infrastructure +515653,Government Procurement,Government Procurement +538305,Government Procurement,Government Procurement +503811,Housing,Housing +494360,Economic Development,Economic Development +530503,Small Business,Small Business +506075,Taxation and Finance,Taxation and Finance +530503,Tourism,Tourism +530503,Transportation,Transportation +504462,Industry,Industry +501019,Economic Development,Economic Development +543148,Climate,Climate +538333,Education,Education +524900,Energy,Energy +501307,Environment,Environment +532215,Tourism,Tourism +513928,Climate,Climat +525891,Economic Development,Développement économique +534759,Employment and Training,Emploi et formation +534759,Energy,Énergie +534759,Environment,Environnement +534750,Industry,Industrie +534759,Infrastructure,Infrastructure +525896,Intellectual Property,Propriété intellectuelle +517020,Research and Development,Recherche et développement +513447,Energy,Energy +499818,Labour,Labour +504951,Climate,Climate +504957,Financial Institutions,Financial Institutions +529644,Economic Development,Economic Development +529644,Regional Development,Regional Development +509394,Climate,Climate +496738,Economic Development,Economic Development +496738,Environment,Environment +495114,Industry,Industry +501861,International Trade,International Trade +509163,Budget,Budget +516177,Environment,Environment +496691,Agriculture,Agriculture +494422,Transportation,Transportation +500474,Health,Health +517719,Economic Development,Economic Development +517719,Sports,Sports +517719,Tourism,Tourism +499516,Budget,Budget +499520,Economic Development,Economic Development +500389,Infrastructure,Infrastructure +528178,Employment and Training,Employment and Training +508098,Regional Development,Regional Development +528943,Budget,Budget +534678,Economic Development,Développement économique +543156,Energy,Énergie +543156,Environment,Environnement +543151,Industry,Industrie +543155,Infrastructure,Infrastructure +543156,Mining,Mines +543156,Research and Development,Recherche et développement +534690,Transportation,Transports +500294,Research and Development,Research and Development +497594,Education,Education +506181,Employment and Training,Employment and Training +502504,Employment and Training,Employment and Training +502505,Regional Development,Regional Development +502505,Industry,Industry +502505,International Trade,International Trade +502505,Energy,Energy +502505,Transportation,Transportation +502505,Consumer Issues,Consumer Issues +502505,Environment,Environment +500761,Economic Development,Economic Development +500762,Energy,Energy +500761,Environment,Environment +500762,International Trade,International Trade +500762,Regional Development,Regional Development +500761,Transportation,Transportation +513196,Economic Development,Economic Development +513196,Infrastructure,Infrastructure +513196,Regional Development,Regional Development +499450,Government Procurement,Government Procurement +509424,Sports,Sports +497480,International Development,International Development +497480,International Trade,International Trade +497480,Mining,Mining +497782,Transportation,Transportation +542361,International Trade,International Trade +542361,Small Business,Small Business +502520,Government Procurement,Government Procurement +502520,Health,Health +494552,Health,Health +520966,Agriculture,Agriculture +520966,Environment,Environment +523898,Environment,Environment +523898,Health,Health +495083,Climate,Climate +510435,Economic Development,Economic Development +507717,Health,Health +507717,Transportation,Transportation +510435,Tourism,Tourism +507717,Sports,Sports +498671,Budget,Budget +531077,Climate,Climate +539183,Regional Development,Regional Development +497234,Sports,Sports +497234,Tourism,Tourism +496360,Employment and Training,Employment and Training +536662,Agriculture,Agriculture +536662,Consumer Issues,Consumer Issues +536662,Health,Health +536662,International Trade,International Trade +498771,Industry,Industry +498771,Consumer Issues,Consumer Issues +498771,Taxation and Finance,Taxation and Finance +497803,Financial Institutions,Financial Institutions +499270,Economic Development,Développement économique +501286,Budget,Budget +502121,Government Procurement,Government Procurement +496957,Health,Health +501031,Employment and Training,Employment and Training +501031,Economic Development,Economic Development +501031,Budget,Budget +501031,Infrastructure,Infrastructure +498125,Budget,Budget +498125,Health,Health +498125,Research and Development,Research and Development +503460,Government Procurement,Government Procurement +528925,International Trade,International Trade +500022,Taxation and Finance,Impôts et finances +509947,Consumer Issues,Questions touchant les consommateurs +495806,Consumer Issues,Consumer Issues +499950,Health,Health +499950,Research and Development,Research and Development +494855,Economic Development,Economic Development +494855,Employment and Training,Employment and Training +494855,Health,Health +494855,Budget,Budget +504495,Mining,Mining +501096,Mining,Mining +501095,Mining,Mining +501093,Mining,Mining +501086,Mining,Mining +501084,Mining,Mining +501083,Mining,Mining +498506,Mining,Mining +495093,Mining,Mining +543150,Mining,Mining +543147,Mining,Mining +541013,Mining,Mining +541012,Mining,Mining +541011,Mining,Mining +538616,Mining,Mining +538614,Mining,Mining +538612,Mining,Mining +538611,Mining,Mining +538610,Mining,Mining +538608,Mining,Mining +538606,Mining,Mining +535705,Mining,Mining +535703,Mining,Mining +535701,Mining,Mining +531908,Mining,Mining +531906,Mining,Mining +531035,Mining,Mining +527994,Mining,Mining +527993,Mining,Mining +527992,Mining,Mining +527990,Mining,Mining +524316,Mining,Mining +524315,Mining,Mining +524314,Mining,Mining +524313,Mining,Mining +524312,Mining,Mining +521435,Mining,Mining +521433,Mining,Mining +521432,Mining,Mining +521419,Mining,Mining +521418,Mining,Mining +521417,Regional Development,Regional Development +516463,Regional Development,Regional Development +501095,Regional Development,Regional Development +541012,Regional Development,Regional Development +504495,Research and Development,Research and Development +501084,Research and Development,Research and Development +543150,Research and Development,Research and Development +543147,Research and Development,Research and Development +538608,Research and Development,Research and Development +531905,Research and Development,Research and Development +531035,Research and Development,Research and Development +527995,Research and Development,Research and Development +524312,Research and Development,Research and Development +518833,Research and Development,Research and Development +516906,Research and Development,Research and Development +516444,Research and Development,Research and Development +516442,Research and Development,Research and Development +515021,Research and Development,Research and Development +513306,Research and Development,Research and Development +512300,Research and Development,Research and Development +510551,Research and Development,Research and Development +515023,Transportation,Transportation +512300,Transportation,Transportation +503608,Government Procurement,Government Procurement +503608,Health,Health +494363,Government Procurement,Government Procurement +499948,Economic Development,Economic Development +496980,Economic Development,Economic Development +501510,Economic Development,Economic Development +499948,Health,Health +496980,Health,Health +501510,Health,Health +499948,Industry,Industry +496980,Industry,Industry +501510,Industry,Industry +497570,Environment,Environment +496563,Environment,Environment +542547,Environment,Environment +535946,Environment,Environment +526960,Environment,Environment +524100,Environment,Environment +523554,Environment,Environment +521006,Environment,Environment +521005,Environment,Environment +519370,Environment,Environment +518187,Environment,Environment +503029,Environment,Environment +494238,Industry,Industry +532307,Agriculture,Agriculture +526798,Agriculture,Agriculture +498732,Agriculture,Agriculture +526798,Climate,Climate +498732,Climate,Climate +526798,Environment,Environment +498732,Environment,Environment +497824,Economic Development,Economic Development +497819,Economic Development,Economic Development +497831,Economic Development,Economic Development +497829,Economic Development,Economic Development +497824,Small Business,Small Business +497819,Small Business,Small Business +497831,Small Business,Small Business +497829,Small Business,Small Business +497824,Regional Development,Regional Development +497819,Regional Development,Regional Development +497831,Regional Development,Regional Development +497829,Regional Development,Regional Development +498695,Sports,Sports +502125,Tourism,Tourism +498695,Health,Health +498695,Budget,Budget +509864,Financial Institutions,Financial Institutions +509863,Financial Institutions,Financial Institutions +509862,Financial Institutions,Financial Institutions +500016,Financial Institutions,Financial Institutions +544601,Financial Institutions,Financial Institutions +544600,Financial Institutions,Financial Institutions +542379,Financial Institutions,Financial Institutions +540473,Financial Institutions,Financial Institutions +539493,Financial Institutions,Financial Institutions +539471,Financial Institutions,Financial Institutions +531546,Financial Institutions,Financial Institutions +530527,Financial Institutions,Financial Institutions +527739,Financial Institutions,Financial Institutions +526967,Financial Institutions,Financial Institutions +521867,Financial Institutions,Financial Institutions +521312,Financial Institutions,Financial Institutions +520905,Financial Institutions,Financial Institutions +520904,Financial Institutions,Financial Institutions +520742,Financial Institutions,Financial Institutions +520741,Financial Institutions,Financial Institutions +520577,Financial Institutions,Financial Institutions +520576,Financial Institutions,Financial Institutions +494331,Taxation and Finance,Taxation and Finance +503120,Employment and Training,Employment and Training +503119,Employment and Training,Employment and Training +530476,Employment and Training,Employment and Training +530054,Employment and Training,Employment and Training +530053,Employment and Training,Employment and Training +527672,Employment and Training,Employment and Training +527668,Employment and Training,Employment and Training +527664,Employment and Training,Employment and Training +527660,Employment and Training,Employment and Training +527658,Employment and Training,Employment and Training +527654,Employment and Training,Employment and Training +527652,Employment and Training,Employment and Training +527651,Employment and Training,Employment and Training +527645,Employment and Training,Employment and Training +503126,Employment and Training,Employment and Training +503125,Employment and Training,Employment and Training +503124,Employment and Training,Employment and Training +503123,Employment and Training,Employment and Training +503122,Employment and Training,Employment and Training +541942,Energy,Energy +502871,Energy,Energy +541945,Energy,Energy +541944,Environment,Environment +541942,Environment,Environment +541942,Infrastructure,Infrastructure +502871,Infrastructure,Infrastructure +541945,Infrastructure,Infrastructure +511042,Government Procurement,Government Procurement +538300,Government Procurement,Government Procurement +514722,Government Procurement,Government Procurement +504467,Small Business,Small Business +506074,Taxation and Finance,Taxation and Finance +504467,Taxation and Finance,Taxation and Finance +533024,Taxation and Finance,Taxation and Finance +530503,Taxation and Finance,Taxation and Finance +504467,Tourism,Tourism +513405,Transportation,Transportation +504467,Transportation,Transportation +513453,Economic Development,Economic Development +544407,Climate,Climate +512005,Energy,Energy +501194,Environment,Environment +498049,Environment,Environment +544407,Environment,Environment +543148,Environment,Environment +541433,Environment,Environment +541430,Environment,Environment +540244,Environment,Environment +538328,Environment,Environment +538318,Environment,Environment +524900,Environment,Environment +512016,Environment,Environment +512015,Environment,Environment +512014,Environment,Environment +512013,Environment,Environment +512012,Environment,Environment +512011,Environment,Environment +512010,Environment,Environment +512009,Environment,Environment +512008,Environment,Environment +512007,Environment,Environment +504083,Environment,Environment +532199,Tourism,Tourism +508008,Tourism,Tourism +541436,Tourism,Tourism +538315,Tourism,Tourism +538312,Tourism,Tourism +538310,Tourism,Tourism +538304,Tourism,Tourism +535407,Tourism,Tourism +532216,Tourism,Tourism +525885,Economic Development,Développement économique +523556,Economic Development,Développement économique +543589,Economic Development,Développement économique +543588,Economic Development,Développement économique +543587,Economic Development,Développement économique +541182,Economic Development,Développement économique +534758,Economic Development,Développement économique +534754,Economic Development,Développement économique +534750,Economic Development,Développement économique +534747,Economic Development,Développement économique +531555,Economic Development,Développement économique +531552,Economic Development,Développement économique +531549,Economic Development,Développement économique +531548,Economic Development,Développement économique +531545,Economic Development,Développement économique +528932,Economic Development,Développement économique +528927,Economic Development,Développement économique +528924,Economic Development,Développement économique +525896,Economic Development,Développement économique +534747,Industry,Industrie +534744,Industry,Industrie +534758,Industry,Industrie +534754,Industry,Industrie +525891,Intellectual Property,Propriété intellectuelle +525885,Intellectual Property,Propriété intellectuelle +543589,Intellectual Property,Propriété intellectuelle +543588,Intellectual Property,Propriété intellectuelle +543587,Intellectual Property,Propriété intellectuelle +541182,Intellectual Property,Propriété intellectuelle +534758,Intellectual Property,Propriété intellectuelle +534754,Intellectual Property,Propriété intellectuelle +534750,Intellectual Property,Propriété intellectuelle +534747,Intellectual Property,Propriété intellectuelle +531555,Intellectual Property,Propriété intellectuelle +531552,Intellectual Property,Propriété intellectuelle +528932,Intellectual Property,Propriété intellectuelle +528927,Intellectual Property,Propriété intellectuelle +528924,Intellectual Property,Propriété intellectuelle +513928,Research and Development,Recherche et développement +512490,Research and Development,Recherche et développement +543589,Research and Development,Recherche et développement +543588,Research and Development,Recherche et développement +543587,Research and Development,Recherche et développement +541182,Research and Development,Recherche et développement +534759,Research and Development,Recherche et développement +534744,Research and Development,Recherche et développement +531555,Research and Development,Recherche et développement +531552,Research and Development,Recherche et développement +531549,Research and Development,Recherche et développement +531548,Research and Development,Recherche et développement +531545,Research and Development,Recherche et développement +531542,Research and Development,Recherche et développement +528932,Research and Development,Recherche et développement +528927,Research and Development,Recherche et développement +528924,Research and Development,Recherche et développement +525896,Research and Development,Recherche et développement +525891,Research and Development,Recherche et développement +525885,Research and Development,Recherche et développement +523556,Research and Development,Recherche et développement +513446,Energy,Energy +533195,Energy,Energy +504932,Climate,Climate +504951,Financial Institutions,Financial Institutions +504932,Financial Institutions,Financial Institutions +530737,Financial Institutions,Financial Institutions +506003,Climate,Climate +496815,International Trade,International Trade +500715,Budget,Budget +500284,Budget,Budget +498739,Budget,Budget +498111,Budget,Budget +496795,Budget,Budget +496794,Budget,Budget +496541,Budget,Budget +495591,Budget,Budget +495590,Budget,Budget +494423,Budget,Budget +494395,Budget,Budget +509166,Budget,Budget +506023,Environment,Environment +494401,Environment,Environment +527130,Environment,Environment +522959,Environment,Environment +521311,Environment,Environment +518447,Environment,Environment +518441,Environment,Environment +516557,Environment,Environment +516535,Environment,Environment +516470,Environment,Environment +516467,Environment,Environment +516466,Environment,Environment +516301,Environment,Environment +516300,Environment,Environment +516264,Environment,Environment +516253,Environment,Environment +516245,Environment,Environment +513264,Economic Development,Economic Development +513264,Sports,Sports +513264,Tourism,Tourism +494434,Budget,Budget +494433,Budget,Budget +532089,Budget,Budget +532087,Budget,Budget +528181,Budget,Budget +528179,Budget,Budget +528178,Budget,Budget +525567,Budget,Budget +522922,Budget,Budget +522471,Budget,Budget +508098,Budget,Budget +505097,Budget,Budget +505093,Budget,Budget +500389,Budget,Budget +500388,Budget,Budget +499531,Budget,Budget +499523,Budget,Budget +499520,Budget,Budget +499516,Economic Development,Economic Development +494433,Economic Development,Economic Development +532089,Economic Development,Economic Development +532087,Economic Development,Economic Development +528181,Economic Development,Economic Development +528179,Economic Development,Economic Development +528178,Economic Development,Economic Development +525567,Economic Development,Economic Development +525566,Economic Development,Economic Development +522471,Economic Development,Economic Development +513439,Economic Development,Economic Development +510499,Economic Development,Economic Development +508098,Economic Development,Economic Development +505097,Economic Development,Economic Development +500389,Economic Development,Economic Development +500388,Economic Development,Economic Development +499531,Economic Development,Economic Development +499523,Economic Development,Economic Development +499531,Infrastructure,Infrastructure +494433,Infrastructure,Infrastructure +532089,Infrastructure,Infrastructure +532087,Infrastructure,Infrastructure +528181,Infrastructure,Infrastructure +528179,Infrastructure,Infrastructure +528178,Infrastructure,Infrastructure +525567,Infrastructure,Infrastructure +525566,Infrastructure,Infrastructure +522922,Infrastructure,Infrastructure +522471,Infrastructure,Infrastructure +513439,Infrastructure,Infrastructure +510497,Infrastructure,Infrastructure +510273,Infrastructure,Infrastructure +508103,Infrastructure,Infrastructure +508098,Infrastructure,Infrastructure +505097,Infrastructure,Infrastructure +505093,Infrastructure,Infrastructure +525567,Employment and Training,Employment and Training +522471,Employment and Training,Employment and Training +505097,Regional Development,Regional Development +532089,Regional Development,Regional Development +532087,Regional Development,Regional Development +528181,Regional Development,Regional Development +513439,Regional Development,Regional Development +510499,Regional Development,Regional Development +508103,Regional Development,Regional Development +525374,Budget,Budget +523588,Economic Development,Développement économique +496831,Economic Development,Développement économique +543156,Economic Development,Développement économique +543155,Economic Development,Développement économique +543151,Economic Development,Développement économique +534701,Economic Development,Développement économique +534692,Economic Development,Développement économique +543155,Energy,Énergie +543151,Energy,Énergie +543155,Environment,Environnement +543151,Environment,Environnement +521924,Environment,Environnement +534678,Transportation,Transports +523588,Transportation,Transports +496831,Transportation,Transports +543156,Transportation,Transports +543155,Transportation,Transports +543151,Transportation,Transports +534701,Transportation,Transports +534692,Transportation,Transports +498110,Research and Development,Research and Development +497594,Research and Development,Research and Development +506181,Research and Development,Research and Development +506181,Education,Education +500294,Education,Education +498110,Education,Education +500294,Employment and Training,Employment and Training +498110,Employment and Training,Employment and Training +502504,Industry,Industry +502504,International Trade,International Trade +502504,Energy,Energy +502504,Transportation,Transportation +502504,Consumer Issues,Consumer Issues +502504,Environment,Environment +496664,Economic Development,Economic Development +496651,Economic Development,Economic Development +500762,Economic Development,Economic Development +500761,Energy,Energy +496651,Energy,Energy +496664,Environment,Environment +496651,Environment,Environment +500762,Environment,Environment +500761,International Trade,International Trade +496664,Regional Development,Regional Development +496651,Regional Development,Regional Development +496664,Transportation,Transportation +496651,Transportation,Transportation +500762,Transportation,Transportation +509420,Sports,Sports +509418,Sports,Sports +506232,Sports,Sports +506231,Sports,Sports +505162,Sports,Sports +505153,Sports,Sports +503426,Sports,Sports +501060,Sports,Sports +501059,Sports,Sports +501056,Sports,Sports +501054,Sports,Sports +500193,Sports,Sports +500192,Sports,Sports +497014,Sports,Sports +497013,Sports,Sports +496561,Sports,Sports +496559,Sports,Sports +496557,Sports,Sports +496095,Sports,Sports +496066,Sports,Sports +496063,Sports,Sports +496061,Sports,Sports +496058,Sports,Sports +496050,Sports,Sports +540344,Sports,Sports +509955,Sports,Sports +509954,Sports,Sports +509426,Sports,Sports +497781,Transportation,Transportation +497779,Transportation,Transportation +497784,Transportation,Transportation +497783,Transportation,Transportation +542360,International Trade,International Trade +501099,International Trade,International Trade +542381,International Trade,International Trade +542365,International Trade,International Trade +542364,International Trade,International Trade +542363,International Trade,International Trade +542362,International Trade,International Trade +542360,Small Business,Small Business +501099,Small Business,Small Business +542381,Small Business,Small Business +542365,Small Business,Small Business +542364,Small Business,Small Business +542363,Small Business,Small Business +542362,Small Business,Small Business +520936,Agriculture,Agriculture +520935,Agriculture,Agriculture +520936,Environment,Environment +538820,Climate,Climate +507717,Economic Development,Economic Development +496763,Health,Health +496289,Health,Health +496763,Transportation,Transportation +496763,Tourism,Tourism +496289,Tourism,Tourism +541346,Tourism,Tourism +496763,Sports,Sports +496289,Sports,Sports +541346,Sports,Sports +510435,Sports,Sports +498666,Budget,Budget +498662,Budget,Budget +517611,Budget,Budget +517610,Budget,Budget +505149,Budget,Budget +502014,Budget,Budget +502011,Budget,Budget +502010,Budget,Budget +502009,Budget,Budget +502008,Budget,Budget +502007,Budget,Budget +502006,Budget,Budget +502005,Budget,Budget +502004,Budget,Budget +502003,Budget,Budget +502002,Budget,Budget +498682,Budget,Budget +498681,Budget,Budget +498680,Budget,Budget +498679,Budget,Budget +498678,Budget,Budget +498677,Budget,Budget +498676,Budget,Budget +498675,Budget,Budget +498674,Budget,Budget +498673,Budget,Budget +498672,Budget,Budget +498511,Climate,Climate +494612,Climate,Climate +537229,Climate,Climate +497234,Regional Development,Regional Development +495113,Regional Development,Regional Development +540973,Regional Development,Regional Development +540972,Regional Development,Regional Development +540971,Regional Development,Regional Development +540970,Regional Development,Regional Development +539187,Regional Development,Regional Development +539186,Regional Development,Regional Development +539185,Regional Development,Regional Development +495113,Sports,Sports +495113,Tourism,Tourism +511941,Agriculture,Agriculture +511939,Agriculture,Agriculture +536663,Agriculture,Agriculture +511941,Consumer Issues,Consumer Issues +511939,Consumer Issues,Consumer Issues +536663,Consumer Issues,Consumer Issues +536663,Health,Health +511941,International Trade,International Trade +511939,International Trade,International Trade +536663,International Trade,International Trade +497799,Financial Institutions,Financial Institutions +501283,Budget,Budget +497801,Budget,Budget +510419,Budget,Budget +501363,Government Procurement,Government Procurement +498001,Government Procurement,Government Procurement +503459,Government Procurement,Government Procurement +501082,Government Procurement,Government Procurement +499770,Taxation and Finance,Impôts et finances +499768,Taxation and Finance,Impôts et finances +533953,Taxation and Finance,Impôts et finances +525411,Taxation and Finance,Impôts et finances +525400,Taxation and Finance,Impôts et finances +525395,Taxation and Finance,Impôts et finances +522549,Taxation and Finance,Impôts et finances +516428,Taxation and Finance,Impôts et finances +509947,Taxation and Finance,Impôts et finances +509945,Taxation and Finance,Impôts et finances +509941,Taxation and Finance,Impôts et finances +507535,Taxation and Finance,Impôts et finances +507532,Taxation and Finance,Impôts et finances +501097,Taxation and Finance,Impôts et finances +501092,Taxation and Finance,Impôts et finances +501089,Taxation and Finance,Impôts et finances +501087,Taxation and Finance,Impôts et finances +501085,Taxation and Finance,Impôts et finances +500023,Taxation and Finance,Impôts et finances +509945,Consumer Issues,Questions touchant les consommateurs +509941,Consumer Issues,Questions touchant les consommateurs +539694,Consumer Issues,Questions touchant les consommateurs +533959,Consumer Issues,Questions touchant les consommateurs +533958,Consumer Issues,Questions touchant les consommateurs +533956,Consumer Issues,Questions touchant les consommateurs +533952,Consumer Issues,Questions touchant les consommateurs +533950,Consumer Issues,Questions touchant les consommateurs +522557,Consumer Issues,Questions touchant les consommateurs +522555,Consumer Issues,Questions touchant les consommateurs +522552,Consumer Issues,Questions touchant les consommateurs +515072,Consumer Issues,Questions touchant les consommateurs +494853,Economic Development,Economic Development +494853,Employment and Training,Employment and Training +494853,Health,Health +494853,Budget,Budget +494853,Immigration,Immigration +494809,Justice and Law Enforcement,Justice and Law Enforcement +494803,Justice and Law Enforcement,Justice and Law Enforcement +507244,Justice and Law Enforcement,Justice and Law Enforcement +502321,Justice and Law Enforcement,Justice and Law Enforcement +498643,Justice and Law Enforcement,Justice and Law Enforcement +498641,Justice and Law Enforcement,Justice and Law Enforcement +495856,Energy,Energy +495843,Energy,Energy +533415,Energy,Energy +533363,Energy,Energy +532561,Energy,Energy +532510,Energy,Energy +532506,Energy,Energy +526989,Energy,Energy +526719,Energy,Energy +524552,Energy,Energy +523988,Energy,Energy +523844,Energy,Energy +520535,Energy,Energy +520489,Energy,Energy +520488,Energy,Energy +519041,Energy,Energy +516072,Energy,Energy +516017,Energy,Energy +515241,Energy,Energy +514928,Energy,Energy +511775,Energy,Energy +509058,Energy,Energy +507901,Energy,Energy +506776,Energy,Energy +506147,Energy,Energy +503157,Energy,Energy +500645,Energy,Energy +500395,Energy,Energy +500301,Energy,Energy +500300,Energy,Energy +499131,Energy,Energy +497460,Energy,Energy +497459,Energy,Energy +497458,Energy,Energy +496391,Energy,Energy +495876,Energy,Energy +495873,Energy,Energy +495869,Energy,Energy +532422,Environment,Environment +532418,Environment,Environment +532415,Health,Health +495024,Health,Health +495022,Health,Health +497417,Health,Health +497129,Health,Health +497128,Health,Health +497127,Health,Health +496916,Health,Health +496915,Health,Health +496914,Health,Health +496913,Health,Health +496912,Health,Health +495428,Health,Health +495100,Health,Health +495099,Health,Health +495098,Health,Health +495033,Health,Health +495032,Health,Health +495030,Health,Health +495029,Health,Health +495027,Health,Health +501353,Government Procurement,Government Procurement +494962,Government Procurement,Government Procurement +498399,Forestry,Forestry +500048,Economic Development,Economic Development +498399,Economic Development,Economic Development +531755,Economic Development,Economic Development +531753,Economic Development,Economic Development +531752,Economic Development,Economic Development +531751,Economic Development,Economic Development +531750,Economic Development,Economic Development +531750,Budget,Budget +531749,Budget,Budget +531755,Budget,Budget +531753,Budget,Budget +531752,Budget,Budget +531750,Climate,Climate +531749,Climate,Climate +500048,Climate,Climate +498399,Climate,Climate +531755,Climate,Climate +531753,Climate,Climate +531752,Climate,Climate +500048,Environment,Environment +498399,Environment,Environment +531755,Environment,Environment +531753,Environment,Environment +531752,Environment,Environment +531751,Environment,Environment +531750,Environment,Environment +497541,Budget,Budget +494990,Budget,Budget +496668,Economic Development,Economic Development +513934,Health,Health +513933,Health,Health +544998,Health,Health +539117,Health,Health +503151,Climate,Climate +500309,Climate,Climate +500307,Environment,Environment +499951,Environment,Environment +507394,Environment,Environment +507085,Environment,Environment +503151,Environment,Environment +503151,Infrastructure,Infrastructure +500307,Infrastructure,Infrastructure +540361,Infrastructure,Infrastructure +507394,Infrastructure,Infrastructure +507394,Transportation,Transportation +500307,Transportation,Transportation +503305,Regional Development,Développement régional +495094,Regional Development,Développement régional +506104,Regional Development,Développement régional +497164,Budget,Budget +497161,Budget,Budget +536729,Budget,Budget +536728,Budget,Budget +516862,Budget,Budget +516860,Budget,Budget +516859,Budget,Budget +516858,Budget,Budget +507566,Budget,Budget +544889,Economic Development,Economic Development +540599,Economic Development,Economic Development +536729,Economic Development,Economic Development +536728,Economic Development,Economic Development +535958,Economic Development,Economic Development +535957,Economic Development,Economic Development +535956,Economic Development,Economic Development +535955,Economic Development,Economic Development +535954,Economic Development,Economic Development +534435,Economic Development,Economic Development +533147,Economic Development,Economic Development +516862,Economic Development,Economic Development +516860,Economic Development,Economic Development +516859,Economic Development,Economic Development +516858,Economic Development,Economic Development +507566,Economic Development,Economic Development +504300,Economic Development,Economic Development +501181,Economic Development,Economic Development +501178,Economic Development,Economic Development +501176,Economic Development,Economic Development +497164,Economic Development,Economic Development +497161,Economic Development,Economic Development +497164,Health,Health +497161,Health,Health +545352,Health,Health +544889,Health,Health +540599,Health,Health +536729,Health,Health +536728,Health,Health +535958,Health,Health +535957,Health,Health +535956,Health,Health +535955,Health,Health +535954,Health,Health +534435,Health,Health +533147,Health,Health +516862,Health,Health +516860,Health,Health +516859,Health,Health +516858,Health,Health +507566,Health,Health +504300,Health,Health +501181,Health,Health +501178,Health,Health +497164,Industry,Industry +497161,Industry,Industry +545352,Industry,Industry +544889,Industry,Industry +540599,Industry,Industry +536729,Industry,Industry +536728,Industry,Industry +535958,Industry,Industry +535957,Industry,Industry +535956,Industry,Industry +535955,Industry,Industry +535954,Industry,Industry +534435,Industry,Industry +533147,Industry,Industry +516862,Industry,Industry +516860,Industry,Industry +516859,Industry,Industry +516858,Industry,Industry +507566,Industry,Industry +504300,Industry,Industry +501181,Industry,Industry +501178,Industry,Industry +507566,Intellectual Property,Intellectual Property +504300,Intellectual Property,Intellectual Property +501178,Intellectual Property,Intellectual Property +501176,Intellectual Property,Intellectual Property +497164,Intellectual Property,Intellectual Property +497161,Intellectual Property,Intellectual Property +545352,Intellectual Property,Intellectual Property +536729,Intellectual Property,Intellectual Property +536728,Intellectual Property,Intellectual Property +516862,Intellectual Property,Intellectual Property +516860,Intellectual Property,Intellectual Property +516859,Intellectual Property,Intellectual Property +497164,International Trade,International Trade +497161,International Trade,International Trade +536729,International Trade,International Trade +536728,International Trade,International Trade +516862,International Trade,International Trade +516860,International Trade,International Trade +516859,International Trade,International Trade +516858,International Trade,International Trade +501181,International Trade,International Trade +501178,International Trade,International Trade +497164,Research and Development,Research and Development +497161,Research and Development,Research and Development +545352,Research and Development,Research and Development +544889,Research and Development,Research and Development +540599,Research and Development,Research and Development +536729,Research and Development,Research and Development +536728,Research and Development,Research and Development +535958,Research and Development,Research and Development +535957,Research and Development,Research and Development +535956,Research and Development,Research and Development +535955,Research and Development,Research and Development +535954,Research and Development,Research and Development +534435,Research and Development,Research and Development +533147,Research and Development,Research and Development +516862,Research and Development,Research and Development +516860,Research and Development,Research and Development +516859,Research and Development,Research and Development +516858,Research and Development,Research and Development +507566,Research and Development,Research and Development +504300,Research and Development,Research and Development +501181,Research and Development,Research and Development +501178,Research and Development,Research and Development +516859,Taxation and Finance,Taxation and Finance +516858,Taxation and Finance,Taxation and Finance +536729,Taxation and Finance,Taxation and Finance +536728,Taxation and Finance,Taxation and Finance +516862,Taxation and Finance,Taxation and Finance +529028,Budget,Budget +495283,Budget,Budget +529033,Budget,Budget +498797,Budget,Budget +495285,Budget,Budget +536843,Budget,Budget +529029,Budget,Budget +522558,Budget,Budget +515712,Budget,Budget +496587,Transportation,Transportation +496482,Transportation,Transportation +534523,Transportation,Transportation +525755,Transportation,Transportation +520419,Transportation,Transportation +518772,Transportation,Transportation +503942,Transportation,Transportation +500895,Transportation,Transportation +500133,Transportation,Transportation +499853,Transportation,Transportation +497980,Transportation,Transportation +497888,Transportation,Transportation +497341,Transportation,Transportation +497304,Transportation,Transportation +497144,Transportation,Transportation +496924,Transportation,Transportation +496922,Transportation,Transportation +496845,Transportation,Transportation +498738,Health,Health +496950,Health,Health +526827,Health,Health +523751,Health,Health +522038,Health,Health +522037,Health,Health +520551,Health,Health +520394,Health,Health +519378,Health,Health +518978,Health,Health +516740,Health,Health +516427,Health,Health +516406,Health,Health +512879,Health,Health +512456,Health,Health +511831,Health,Health +510651,Health,Health +504173,Health,Health +503413,Health,Health +503283,Health,Health +503165,Health,Health +503039,Health,Health +500604,Health,Health +498738,Regional Development,Regional Development +496950,Regional Development,Regional Development +526827,Regional Development,Regional Development +523751,Regional Development,Regional Development +522038,Regional Development,Regional Development +522037,Regional Development,Regional Development +520551,Regional Development,Regional Development +520394,Regional Development,Regional Development +519378,Regional Development,Regional Development +518978,Regional Development,Regional Development +516740,Regional Development,Regional Development +516427,Regional Development,Regional Development +516406,Regional Development,Regional Development +512879,Regional Development,Regional Development +512456,Regional Development,Regional Development +511831,Regional Development,Regional Development +510651,Regional Development,Regional Development +509334,Regional Development,Regional Development +503413,Regional Development,Regional Development +503283,Regional Development,Regional Development +503165,Regional Development,Regional Development +503039,Regional Development,Regional Development +500604,Regional Development,Regional Development +500426,Regional Development,Regional Development +498738,Research and Development,Research and Development +496950,Research and Development,Research and Development +526827,Research and Development,Research and Development +523751,Research and Development,Research and Development +522038,Research and Development,Research and Development +520551,Research and Development,Research and Development +520394,Research and Development,Research and Development +519378,Research and Development,Research and Development +518978,Research and Development,Research and Development +516740,Research and Development,Research and Development +494855,Immigration,Immigration +494814,Justice and Law Enforcement,Justice and Law Enforcement +495867,Energy,Energy +494831,Agriculture,Agriculture +494831,Mining,Mining +532710,Environment,Environment +532416,Health,Health +494914,Health,Health +494921,Health,Health +494919,Health,Health +495025,Health,Health +512575,Government Procurement,Government Procurement +500048,Forestry,Forestry +531749,Economic Development,Economic Development +531751,Budget,Budget +531751,Climate,Climate +531749,Environment,Environment +500105,Budget,Budget +496669,Industry,Industry +496669,Economic Development,Economic Development +496682,Taxation and Finance,Taxation and Finance +513935,Health,Health +507085,Climate,Climate +511717,Energy,Energy +500309,Environment,Environment +507085,Infrastructure,Infrastructure +511717,Transportation,Transportation +539117,Research and Development,Research and Development +503578,Regional Development,Développement régional +495123,Health,Health +495124,Health,Health +495168,International Development,International Development +504300,Budget,Budget +545352,Economic Development,Economic Development +501176,Health,Health +501176,Industry,Industry +516858,Intellectual Property,Intellectual Property +497161,Internal Trade,Internal Trade +501176,International Trade,International Trade +501176,Research and Development,Research and Development +516860,Taxation and Finance,Taxation and Finance +529030,Budget,Budget +501343,Budget,Budget +495469,Budget,Budget +495515,Industry,Industry +496770,Transportation,Transportation +500426,Health,Health +500109,Regional Development,Regional Development +500426,Research and Development,Research and Development +502017,Budget,Budget +534842,Economic Development,Economic Development +521887,Justice and Law Enforcement,Justice and Law Enforcement +501541,Justice and Law Enforcement,Justice and Law Enforcement +521687,Justice and Law Enforcement,Justice and Law Enforcement +500283,Economic Development,Economic Development +502179,Budget,Budget +498848,Climate,Climate +539950,Infrastructure,Infrastructure +502141,Regional Development,Regional Development +502131,Security,Security +495847,Taxation and Finance,Taxation and Finance +535402,Economic Development,Développement économique +529483,Economic Development,Economic Development +502334,Infrastructure,Infrastructure +505899,Transportation,Transports +498668,Environment,Environment +498670,Labour,Labour +496138,Taxation and Finance,Taxation and Finance +512644,Financial Institutions,Financial Institutions +526387,International Trade,International Trade +496210,International Development,International Development +496771,Environment,Environment +497542,Health,Health +496771,Industry,Industry +497125,Transportation,Transportation +497956,Justice and Law Enforcement,Justice and Law Enforcement +499590,Housing,Housing +499590,Infrastructure,Infrastructure +514478,Tourism,Tourism +507406,Infrastructure,Infrastructure +526329,Official Languages,Official Languages +515815,Employment and Training,Employment and Training +498224,Intellectual Property,Intellectual Property +541933,Intellectual Property,Intellectual Property +541934,Intellectual Property,Intellectual Property +522831,Employment and Training,Employment and Training +522833,Employment and Training,Employment and Training +496576,Infrastructure,Infrastructure +512598,Sports,Sports +507407,Education,Education +507425,Employment and Training,Employment and Training +507425,Economic Development,Economic Development +499166,International Development,International Development +499142,International Relations,International Relations +515797,Employment and Training,Employment and Training +501129,Economic Development,Economic Development +501223,Regional Development,Regional Development +501227,Regional Development,Regional Development +501221,Regional Development,Regional Development +501144,Regional Development,Regional Development +501226,Regional Development,Regional Development +541931,Intellectual Property,Intellectual Property +496314,Infrastructure,Infrastructure +496314,Research and Development,Research and Development +496653,Budget,Budget +500846,Health,Health +500846,Security,Security +542042,Health,Health +500104,Health,Health +532716,Regional Development,Regional Development +500104,Research and Development,Research and Development +527430,Budget,Budget +532812,Employment and Training,Employment and Training +521439,Immigration,Immigration +516142,Justice and Law Enforcement,Justice and Law Enforcement +496361,Security,Security +497841,Economic Development,Economic Development +503079,Energy,Energy +497842,Environment,Environment +503079,Industry,Industry +497878,Research and Development,Research and Development +500643,Energy,Energy +496395,Transportation,Transportation +520818,International Development,International Development +503080,Environment,Environment +503080,Industry,Industry +503080,Energy,Energy +505133,Small Business,Small Business +505133,Consumer Issues,Consumer Issues +505133,International Trade,International Trade +518704,Energy,Energy +533349,Infrastructure,Infrastructure +518702,International Trade,International Trade +509448,Taxation and Finance,Taxation and Finance +519463,Financial Institutions,Financial Institutions +544395,Budget,Budget +503807,Environment,Environment +503807,Infrastructure,Infrastructure +536393,Research and Development,Research and Development +500687,Employment and Training,Employment and Training +500687,Budget,Budget +500687,Economic Development,Economic Development +500687,Labour,Labour +500687,Industry,Industry +500687,Small Business,Small Business +500687,Infrastructure,Infrastructure +499338,Taxation and Finance,Impôts et finances +512112,Infrastructure,Infrastructure +506178,Transportation,Transportation +496590,Budget,Budget +540911,Economic Development,Economic Development +511757,Environment,Environment +512025,International Trade,International Trade +512025,Transportation,Transportation +497818,Industry,Industry +527372,Environment,Environment +510857,Government Procurement,Government Procurement +497873,Financial Institutions,Financial Institutions +513164,Defence,Defence +513164,Government Procurement,Government Procurement +513164,Industry,Industry +513164,Security,Security +532592,Climate,Climate +532592,Economic Development,Economic Development +532592,Energy,Energy +500046,Environment,Environment +500046,Research and Development,Research and Development +497997,Economic Development,Economic Development +497997,Industry,Industry +514391,Taxation and Finance,Taxation and Finance +497233,Budget,Budget +514840,International Relations,International Relations +504923,Health,Health +528664,Labour,Labour +507921,Economic Development,Economic Development +507921,Small Business,Small Business +502446,Tourism,Tourism +507921,Transportation,Transportation +521034,Environment,Environment +502403,Regional Development,Regional Development +502403,Employment and Training,Employment and Training +502403,Economic Development,Economic Development +502403,Budget,Budget +508211,Industry,Industry +508211,Employment and Training,Employment and Training +511265,Labour,Labour +511274,Transportation,Transportation +511274,Regional Development,Regional Development +505465,Agriculture,Agriculture +500291,Taxation and Finance,Taxation and Finance +497105,Economic Development,Economic Development +503059,Fisheries,Fisheries +496741,Consumer Issues,Consumer Issues +509883,Environment,Environment +509883,Industry,Industry +509883,Health,Health +509883,Forestry,Forestry +517634,Economic Development,Economic Development +497542,Labour,Labour +503689,Health,Health +503689,International Relations,International Relations +503691,Consumer Issues,Consumer Issues +503691,Government Procurement,Government Procurement +500296,Government Procurement,Government Procurement +506810,Climate,Climate +506810,Transportation,Transportation +506810,Energy,Energy +505470,Budget,Budget +511311,Economic Development,Economic Development +508206,Education,Education +508206,Employment and Training,Employment and Training +513262,Environment,Environment +508206,Immigration,Immigration +508206,Industry,Industry +513262,Infrastructure,Infrastructure +511311,Regional Development,Regional Development +511311,Research and Development,Research and Development +500765,Infrastructure,Infrastructure +528176,Health,Health +496920,Government Procurement,Government Procurement +500265,Energy,Energy +503319,Environment,Environment +532722,Agriculture,Agriculture +509657,Climate,Climate +509603,Environment,Environment +532723,Health,Health +542271,Industry,Industry +509664,International Trade,International Trade +509603,Research and Development,Research and Development +535635,Economic Development,Economic Development +535635,Infrastructure,Infrastructure +508724,Justice and Law Enforcement,Justice and Law Enforcement +505654,Economic Development,Economic Development +516427,Research and Development,Research and Development +516406,Research and Development,Research and Development +512879,Research and Development,Research and Development +512456,Research and Development,Research and Development +511831,Research and Development,Research and Development +510651,Research and Development,Research and Development +504173,Research and Development,Research and Development +503413,Research and Development,Research and Development +503283,Research and Development,Research and Development +503165,Research and Development,Research and Development +503039,Research and Development,Research and Development +500604,Research and Development,Research and Development +495608,Budget,Budget +525944,Economic Development,Economic Development +520085,Economic Development,Economic Development +514677,Economic Development,Economic Development +514073,Economic Development,Economic Development +514069,Economic Development,Economic Development +514054,Economic Development,Economic Development +513186,Economic Development,Economic Development +510715,Economic Development,Economic Development +505446,Economic Development,Economic Development +501360,Economic Development,Economic Development +495639,Economic Development,Economic Development +541412,Economic Development,Economic Development +495778,Justice and Law Enforcement,Justice and Law Enforcement +497931,Justice and Law Enforcement,Justice and Law Enforcement +495779,Justice and Law Enforcement,Justice and Law Enforcement +507348,Justice and Law Enforcement,Justice and Law Enforcement +497930,Justice and Law Enforcement,Justice and Law Enforcement +495781,Justice and Law Enforcement,Justice and Law Enforcement +500088,Economic Development,Economic Development +495800,Economic Development,Economic Development +505435,Economic Development,Economic Development +502119,Budget,Budget +539948,Budget,Budget +498842,Climate,Climate +498806,Climate,Climate +532291,Climate,Climate +532288,Climate,Climate +510542,Climate,Climate +502179,Climate,Climate +502131,Climate,Climate +502119,Climate,Climate +539948,Infrastructure,Infrastructure +522199,Infrastructure,Infrastructure +539962,Infrastructure,Infrastructure +502138,Regional Development,Regional Development +502119,Regional Development,Regional Development +539962,Regional Development,Regional Development +539950,Regional Development,Regional Development +539948,Regional Development,Regional Development +539947,Regional Development,Regional Development +539945,Regional Development,Regional Development +539938,Regional Development,Regional Development +502179,Regional Development,Regional Development +502163,Regional Development,Regional Development +502157,Regional Development,Regional Development +502119,Security,Security +498848,Security,Security +542087,Security,Security +542086,Security,Security +539962,Security,Security +539950,Security,Security +532291,Security,Security +532288,Security,Security +526662,Security,Security +526661,Security,Security +502188,Security,Security +502179,Security,Security +502163,Security,Security +505893,Economic Development,Développement économique +529481,Economic Development,Economic Development +495943,Economic Development,Economic Development +532742,Economic Development,Economic Development +532262,Economic Development,Economic Development +495980,Infrastructure,Infrastructure +505898,Transportation,Transports +505896,Transportation,Transports +505895,Transportation,Transports +505894,Transportation,Transports +505891,Transportation,Transports +505890,Transportation,Transports +505887,Transportation,Transports +513149,Transportation,Transports +513148,Transportation,Transports +511122,Transportation,Transports +511121,Transportation,Transports +509672,Transportation,Transports +508873,Transportation,Transports +508861,Transportation,Transports +508856,Transportation,Transports +508852,Transportation,Transports +505902,Transportation,Transports +498661,Environment,Environment +498663,Labour,Labour +501899,Financial Institutions,Financial Institutions +496165,Financial Institutions,Financial Institutions +538141,Financial Institutions,Financial Institutions +531434,Financial Institutions,Financial Institutions +528756,Financial Institutions,Financial Institutions +528755,Financial Institutions,Financial Institutions +528747,Financial Institutions,Financial Institutions +522423,Financial Institutions,Financial Institutions +522406,Financial Institutions,Financial Institutions +519264,Financial Institutions,Financial Institutions +519261,Financial Institutions,Financial Institutions +519259,Financial Institutions,Financial Institutions +519258,Financial Institutions,Financial Institutions +519257,Financial Institutions,Financial Institutions +519256,Financial Institutions,Financial Institutions +522408,International Trade,International Trade +509935,International Trade,International Trade +501899,International Trade,International Trade +496165,International Trade,International Trade +544101,International Trade,International Trade +534171,International Trade,International Trade +528751,International Trade,International Trade +528750,International Trade,International Trade +528749,International Trade,International Trade +496769,Environment,Environment +496767,Environment,Environment +497542,Environment,Environment +496769,Industry,Industry +496767,Industry,Industry +497542,Industry,Industry +497124,Transportation,Transportation +497123,Transportation,Transportation +500502,Transportation,Transportation +500501,Transportation,Transportation +500498,Transportation,Transportation +500496,Transportation,Transportation +497126,Transportation,Transportation +497954,Justice and Law Enforcement,Justice and Law Enforcement +497953,Justice and Law Enforcement,Justice and Law Enforcement +507257,Justice and Law Enforcement,Justice and Law Enforcement +502208,Justice and Law Enforcement,Justice and Law Enforcement +502153,Justice and Law Enforcement,Justice and Law Enforcement +497957,Justice and Law Enforcement,Justice and Law Enforcement +499588,Housing,Housing +499585,Housing,Housing +523425,Housing,Housing +523424,Housing,Housing +523423,Housing,Housing +523422,Housing,Housing +516104,Housing,Housing +504551,Housing,Housing +504550,Housing,Housing +504548,Housing,Housing +504545,Housing,Housing +501217,Housing,Housing +501216,Housing,Housing +501215,Housing,Housing +501214,Housing,Housing +501213,Housing,Housing +501212,Housing,Housing +501211,Housing,Housing +501210,Housing,Housing +499593,Housing,Housing +499588,Infrastructure,Infrastructure +499585,Infrastructure,Infrastructure +518734,Infrastructure,Infrastructure +518051,Infrastructure,Infrastructure +508291,Infrastructure,Infrastructure +508290,Infrastructure,Infrastructure +508289,Infrastructure,Infrastructure +508286,Infrastructure,Infrastructure +501217,Infrastructure,Infrastructure +501216,Infrastructure,Infrastructure +501215,Infrastructure,Infrastructure +501214,Infrastructure,Infrastructure +501213,Infrastructure,Infrastructure +501212,Infrastructure,Infrastructure +501211,Infrastructure,Infrastructure +501210,Infrastructure,Infrastructure +499593,Infrastructure,Infrastructure +518368,Official Languages,Official Languages +518367,Official Languages,Official Languages +541928,Intellectual Property,Intellectual Property +510071,Intellectual Property,Intellectual Property +515795,Employment and Training,Employment and Training +515798,Employment and Training,Employment and Training +507407,Employment and Training,Employment and Training +499155,International Development,International Development +499142,International Development,International Development +499180,International Development,International Development +499173,International Development,International Development +499136,International Relations,International Relations +499108,International Relations,International Relations +535085,International Relations,International Relations +535078,International Relations,International Relations +531212,International Relations,International Relations +531211,International Relations,International Relations +522741,International Relations,International Relations +519824,International Relations,International Relations +518114,International Relations,International Relations +518111,International Relations,International Relations +518103,International Relations,International Relations +518099,International Relations,International Relations +508822,International Relations,International Relations +508808,International Relations,International Relations +506188,International Relations,International Relations +503535,International Relations,International Relations +503534,International Relations,International Relations +503533,International Relations,International Relations +503532,International Relations,International Relations +503531,International Relations,International Relations +503374,International Relations,International Relations +503372,International Relations,International Relations +503369,International Relations,International Relations +503367,International Relations,International Relations +503364,International Relations,International Relations +503362,International Relations,International Relations +503360,International Relations,International Relations +503358,International Relations,International Relations +503356,International Relations,International Relations +503354,International Relations,International Relations +503352,International Relations,International Relations +503351,International Relations,International Relations +503349,International Relations,International Relations +503346,International Relations,International Relations +500559,International Relations,International Relations +500547,International Relations,International Relations +500544,International Relations,International Relations +500542,International Relations,International Relations +500540,International Relations,International Relations +499396,International Relations,International Relations +499392,International Relations,International Relations +499391,International Relations,International Relations +499180,International Relations,International Relations +499173,International Relations,International Relations +499166,International Relations,International Relations +499155,International Relations,International Relations +501142,Regional Development,Regional Development +501132,Regional Development,Regional Development +501146,Regional Development,Regional Development +501134,Regional Development,Regional Development +501138,Regional Development,Regional Development +501133,Regional Development,Regional Development +501224,Regional Development,Regional Development +501145,Regional Development,Regional Development +501135,Regional Development,Regional Development +496650,Budget,Budget +496647,Budget,Budget +500846,Budget,Budget +497698,Budget,Budget +497697,Budget,Budget +497696,Budget,Budget +496650,Health,Health +496647,Health,Health +498240,Health,Health +496952,Health,Health +528059,Health,Health +523755,Health,Health +521934,Health,Health +521933,Health,Health +521702,Health,Health +520965,Health,Health +520747,Health,Health +520564,Health,Health +520409,Health,Health +520022,Health,Health +519666,Health,Health +519403,Health,Health +518999,Health,Health +516750,Health,Health +516431,Health,Health +516143,Health,Health +514571,Health,Health +512850,Health,Health +512462,Health,Health +511820,Health,Health +510653,Health,Health +509337,Health,Health +504224,Health,Health +503419,Health,Health +503185,Health,Health +503160,Health,Health +503044,Health,Health +503042,Health,Health +500644,Health,Health +528059,Regional Development,Regional Development +527465,Regional Development,Regional Development +523755,Regional Development,Regional Development +521934,Regional Development,Regional Development +521933,Regional Development,Regional Development +521702,Regional Development,Regional Development +520965,Regional Development,Regional Development +520747,Regional Development,Regional Development +520564,Regional Development,Regional Development +520409,Regional Development,Regional Development +520022,Regional Development,Regional Development +519666,Regional Development,Regional Development +519403,Regional Development,Regional Development +518999,Regional Development,Regional Development +516750,Regional Development,Regional Development +516431,Regional Development,Regional Development +516143,Regional Development,Regional Development +514571,Regional Development,Regional Development +512850,Regional Development,Regional Development +512462,Regional Development,Regional Development +511820,Regional Development,Regional Development +510653,Regional Development,Regional Development +509337,Regional Development,Regional Development +504224,Regional Development,Regional Development +503419,Regional Development,Regional Development +503185,Regional Development,Regional Development +503160,Regional Development,Regional Development +503044,Regional Development,Regional Development +503042,Regional Development,Regional Development +500644,Regional Development,Regional Development +500104,Regional Development,Regional Development +498240,Regional Development,Regional Development +496952,Regional Development,Regional Development +538884,Regional Development,Regional Development +498240,Research and Development,Research and Development +496952,Research and Development,Research and Development +532716,Research and Development,Research and Development +528059,Research and Development,Research and Development +527465,Research and Development,Research and Development +523755,Research and Development,Research and Development +521934,Research and Development,Research and Development +521933,Research and Development,Research and Development +521702,Research and Development,Research and Development +520965,Research and Development,Research and Development +520747,Research and Development,Research and Development +520564,Research and Development,Research and Development +520409,Research and Development,Research and Development +520022,Research and Development,Research and Development +519666,Research and Development,Research and Development +519403,Research and Development,Research and Development +518999,Research and Development,Research and Development +516750,Research and Development,Research and Development +516431,Research and Development,Research and Development +516143,Research and Development,Research and Development +514571,Research and Development,Research and Development +512850,Research and Development,Research and Development +512462,Research and Development,Research and Development +511820,Research and Development,Research and Development +510653,Research and Development,Research and Development +509337,Research and Development,Research and Development +504224,Research and Development,Research and Development +503419,Research and Development,Research and Development +503185,Research and Development,Research and Development +503160,Research and Development,Research and Development +503044,Research and Development,Research and Development +503042,Research and Development,Research and Development +500644,Research and Development,Research and Development +521439,Employment and Training,Employment and Training +516142,Immigration,Immigration +511556,Immigration,Immigration +542067,Immigration,Immigration +532812,Immigration,Immigration +530118,Immigration,Immigration +527430,Immigration,Immigration +496722,Economic Development,Economic Development +496721,Economic Development,Economic Development +506454,Economic Development,Economic Development +506453,Economic Development,Economic Development +506452,Economic Development,Economic Development +500794,Economic Development,Economic Development +500113,Economic Development,Economic Development +497878,Economic Development,Economic Development +497876,Economic Development,Economic Development +497849,Economic Development,Economic Development +497842,Economic Development,Economic Development +500113,Energy,Energy +496722,Energy,Energy +506454,Energy,Energy +506453,Energy,Energy +506452,Energy,Energy +497841,Environment,Environment +496721,Environment,Environment +506454,Environment,Environment +506453,Environment,Environment +506452,Environment,Environment +503079,Environment,Environment +500794,Environment,Environment +500113,Environment,Environment +497878,Environment,Environment +497876,Environment,Environment +497849,Environment,Environment +497878,Industry,Industry +497876,Research and Development,Research and Development +497849,Research and Development,Research and Development +497842,Research and Development,Research and Development +497841,Research and Development,Research and Development +497452,Energy,Energy +496371,Energy,Energy +520812,International Development,International Development +520791,International Development,International Development +531754,International Development,International Development +525880,International Development,International Development +522967,International Development,International Development +522966,International Development,International Development +522965,International Development,International Development +522962,International Development,International Development +522960,International Development,International Development +518703,Energy,Energy +518517,Energy,Energy +527666,Energy,Energy +523909,Energy,Energy +518706,Energy,Energy +518705,Energy,Energy +516167,Infrastructure,Infrastructure +500229,Infrastructure,Infrastructure +515119,International Trade,International Trade +509331,Taxation and Finance,Taxation and Finance +496495,Taxation and Finance,Taxation and Finance +522959,Taxation and Finance,Taxation and Finance +521311,Taxation and Finance,Taxation and Finance +520854,Taxation and Finance,Taxation and Finance +510656,Taxation and Finance,Taxation and Finance +509453,Taxation and Finance,Taxation and Finance +519461,Financial Institutions,Financial Institutions +514260,Financial Institutions,Financial Institutions +503236,Environment,Environment +503233,Environment,Environment +544395,Environment,Environment +541111,Environment,Environment +541107,Environment,Environment +541106,Environment,Environment +539771,Environment,Environment +536393,Environment,Environment +531653,Environment,Environment +530607,Environment,Environment +530606,Environment,Environment +528197,Environment,Environment +526766,Environment,Environment +521414,Environment,Environment +509291,Environment,Environment +509286,Environment,Environment +506335,Environment,Environment +503236,Infrastructure,Infrastructure +503233,Infrastructure,Infrastructure +544395,Infrastructure,Infrastructure +541111,Infrastructure,Infrastructure +541107,Infrastructure,Infrastructure +541106,Infrastructure,Infrastructure +539771,Infrastructure,Infrastructure +536393,Infrastructure,Infrastructure +530607,Infrastructure,Infrastructure +530606,Infrastructure,Infrastructure +528197,Infrastructure,Infrastructure +526766,Infrastructure,Infrastructure +521414,Infrastructure,Infrastructure +511670,Infrastructure,Infrastructure +509291,Infrastructure,Infrastructure +509286,Infrastructure,Infrastructure +506335,Infrastructure,Infrastructure +531653,Research and Development,Research and Development +528197,Research and Development,Research and Development +506901,Infrastructure,Infrastructure +506178,Infrastructure,Infrastructure +526120,Infrastructure,Infrastructure +526120,Transportation,Transportation +539258,Economic Development,Economic Development +511757,Economic Development,Economic Development +540964,Economic Development,Economic Development +511757,International Trade,International Trade +511757,Transportation,Transportation +497073,Transportation,Transportation +540964,Transportation,Transportation +540911,Transportation,Transportation +539258,Transportation,Transportation +538145,Transportation,Transportation +496604,Industry,Industry +496597,Industry,Industry +497868,Industry,Industry +527370,Environment,Environment +524103,Environment,Environment +533554,Environment,Environment +504185,Government Procurement,Government Procurement +497765,Government Procurement,Government Procurement +545214,Government Procurement,Government Procurement +537137,Government Procurement,Government Procurement +533554,Government Procurement,Government Procurement +530613,Government Procurement,Government Procurement +497871,Financial Institutions,Financial Institutions +497865,Financial Institutions,Financial Institutions +500046,Climate,Climate +500046,Economic Development,Economic Development +500046,Energy,Energy +532592,Environment,Environment +532592,Research and Development,Research and Development +497994,Economic Development,Economic Development +497994,Industry,Industry +505004,Taxation and Finance,Taxation and Finance +500238,Taxation and Finance,Taxation and Finance +497194,Budget,Budget +496759,Budget,Budget +517112,Budget,Budget +511923,Budget,Budget +506815,Budget,Budget +506315,Budget,Budget +503205,Budget,Budget +503203,Budget,Budget +503202,Budget,Budget +503201,Budget,Budget +497645,Budget,Budget +497517,Budget,Budget +514839,International Relations,International Relations +531996,International Relations,International Relations +520660,Labour,Labour +513520,Labour,Labour +504962,Labour,Labour +504959,Labour,Labour +502063,Labour,Labour +544656,Labour,Labour +542005,Labour,Labour +540381,Labour,Labour +532797,Labour,Labour +502446,Economic Development,Economic Development +502446,Small Business,Small Business +502446,Transportation,Transportation +516008,Environment,Environment +505465,Industry,Industry +508211,Labour,Labour +505465,Labour,Labour +511274,Labour,Labour +508211,Transportation,Transportation +497297,Fisheries,Fisheries +497160,Fisheries,Fisheries +536322,Fisheries,Fisheries +530694,Fisheries,Fisheries +529991,Fisheries,Fisheries +526947,Fisheries,Fisheries +526935,Fisheries,Fisheries +520986,Fisheries,Fisheries +520484,Fisheries,Fisheries +514929,Fisheries,Fisheries +513488,Fisheries,Fisheries +510026,Fisheries,Fisheries +509379,Fisheries,Fisheries +509377,Fisheries,Fisheries +503067,Fisheries,Fisheries +496769,Labour,Labour +496767,Labour,Labour +497639,Health,Health +497639,International Relations,International Relations +503690,Consumer Issues,Consumer Issues +503690,Government Procurement,Government Procurement +510230,Government Procurement,Government Procurement +500297,Climate,Climate +500296,Climate,Climate +526905,Climate,Climate +510230,Climate,Climate +500297,Transportation,Transportation +500296,Transportation,Transportation +526905,Transportation,Transportation +510230,Transportation,Transportation +500297,Energy,Energy +500296,Energy,Energy +508206,Economic Development,Economic Development +505470,Economic Development,Economic Development +513262,Economic Development,Economic Development +505470,Education,Education +505470,Employment and Training,Employment and Training +505470,Immigration,Immigration +511311,Infrastructure,Infrastructure +508206,Infrastructure,Infrastructure +505470,Infrastructure,Infrastructure +508206,Regional Development,Regional Development +505470,Regional Development,Regional Development +513262,Regional Development,Regional Development +528388,Infrastructure,Infrastructure +525479,Infrastructure,Infrastructure +519463,Infrastructure,Infrastructure +519461,Infrastructure,Infrastructure +512777,Infrastructure,Infrastructure +507916,Infrastructure,Infrastructure +505076,Infrastructure,Infrastructure +502286,Infrastructure,Infrastructure +500778,Infrastructure,Infrastructure +500767,Infrastructure,Infrastructure +522462,Health,Health +519994,Health,Health +503319,Energy,Energy +500265,Environment,Environment +532721,Agriculture,Agriculture +532720,Agriculture,Agriculture +516769,Agriculture,Agriculture +512665,Agriculture,Agriculture +509671,Agriculture,Agriculture +509664,Agriculture,Agriculture +509662,Agriculture,Agriculture +509660,Agriculture,Agriculture +509659,Agriculture,Agriculture +509658,Agriculture,Agriculture +509657,Agriculture,Agriculture +509638,Agriculture,Agriculture +509605,Agriculture,Agriculture +509603,Agriculture,Agriculture +509599,Agriculture,Agriculture +509573,Agriculture,Agriculture +542271,Agriculture,Agriculture +540041,Agriculture,Agriculture +536838,Agriculture,Agriculture +534921,Agriculture,Agriculture +534918,Agriculture,Agriculture +534915,Agriculture,Agriculture +532725,Agriculture,Agriculture +532724,Agriculture,Agriculture +532723,Agriculture,Agriculture +509605,Climate,Climate +509603,Climate,Climate +509671,Climate,Climate +509658,Climate,Climate +509599,Environment,Environment +509573,Environment,Environment +532724,Environment,Environment +516769,Environment,Environment +512665,Environment,Environment +509671,Environment,Environment +509664,Environment,Environment +509662,Environment,Environment +509660,Environment,Environment +509659,Environment,Environment +509658,Environment,Environment +509638,Environment,Environment +509605,Environment,Environment +540041,Industry,Industry +516769,Industry,Industry +509638,International Trade,International Trade +509599,Research and Development,Research and Development +509573,Research and Development,Research and Development +512665,Research and Development,Research and Development +509662,Research and Development,Research and Development +509660,Research and Development,Research and Development +509605,Research and Development,Research and Development +535627,Infrastructure,Infrastructure +505655,Justice and Law Enforcement,Justice and Law Enforcement +505651,Justice and Law Enforcement,Justice and Law Enforcement +502646,Employment and Training,Employment and Training +502590,Employment and Training,Employment and Training +505650,Employment and Training,Employment and Training +505649,Employment and Training,Employment and Training +505648,Employment and Training,Employment and Training +505649,Labour,Labour +505648,Labour,Labour +507625,Sports,Sports +507619,Sports,Sports +497839,Sports,Sports +507625,Tourism,Tourism +507625,Economic Development,Economic Development +526836,Infrastructure,Infrastructure +496899,Infrastructure,Infrastructure +528647,Infrastructure,Infrastructure +526839,Infrastructure,Infrastructure +498699,Environment,Environment +496906,Environment,Environment +524247,Environment,Environment +497484,Government Procurement,Government Procurement +497483,Government Procurement,Government Procurement +500422,Government Procurement,Government Procurement +515390,Infrastructure,Infrastructure +510793,Infrastructure,Infrastructure +510793,Industry,Industry +526976,Consumer Issues,Consumer Issues +522743,Consumer Issues,Consumer Issues +520258,Consumer Issues,Consumer Issues +518525,Consumer Issues,Consumer Issues +506450,Consumer Issues,Consumer Issues +531052,Consumer Issues,Consumer Issues +526976,Financial Institutions,Financial Institutions +520258,Financial Institutions,Financial Institutions +518525,Taxation and Finance,Taxation and Finance +506450,Taxation and Finance,Taxation and Finance +531052,Taxation and Finance,Taxation and Finance +528246,Taxation and Finance,Taxation and Finance +526976,Taxation and Finance,Taxation and Finance +522743,Taxation and Finance,Taxation and Finance +532594,Consumer Issues,Consumer Issues +507804,Privacy and Access to Information,Privacy and Access to Information +497199,Health,Health +496961,Economic Development,Economic Development +520702,Housing,Housing +499790,Housing,Housing +544662,Housing,Housing +544661,Housing,Housing +532924,Housing,Housing +532923,Housing,Housing +527175,Housing,Housing +527174,Housing,Housing +496981,Budget,Budget +535319,Consumer Issues,Consumer Issues +523081,Intellectual Property,Intellectual Property +526544,Industry,Industry +523182,Industry,Industry +497011,Financial Institutions,Financial Institutions +497010,Financial Institutions,Financial Institutions +507821,Transportation,Transportation +497019,Transportation,Transportation +533025,Transportation,Transportation +525498,Transportation,Transportation +503337,Agriculture,Agriculture +503130,Agriculture,Agriculture +514286,Agriculture,Agriculture +512491,Agriculture,Agriculture +512151,Agriculture,Agriculture +511802,Agriculture,Agriculture +509822,Agriculture,Agriculture +509330,Agriculture,Agriculture +506385,Agriculture,Agriculture +506376,Agriculture,Agriculture +506132,Agriculture,Agriculture +509330,Industry,Industry +503130,Industry,Industry +514286,Industry,Industry +503799,Infrastructure,Infrastructure +503337,Infrastructure,Infrastructure +514286,Infrastructure,Infrastructure +512491,Infrastructure,Infrastructure +512151,Infrastructure,Infrastructure +511802,Infrastructure,Infrastructure +509822,Infrastructure,Infrastructure +506385,Infrastructure,Infrastructure +506132,Regional Development,Regional Development +503130,Regional Development,Regional Development +514286,Regional Development,Regional Development +512491,Regional Development,Regional Development +512151,Regional Development,Regional Development +511802,Regional Development,Regional Development +509822,Regional Development,Regional Development +509330,Regional Development,Regional Development +506385,Regional Development,Regional Development +500504,Justice and Law Enforcement,Justice and Law Enforcement +500499,Justice and Law Enforcement,Justice and Law Enforcement +507707,Justice and Law Enforcement,Justice and Law Enforcement +503708,Justice and Law Enforcement,Justice and Law Enforcement +503705,Justice and Law Enforcement,Justice and Law Enforcement +503704,Justice and Law Enforcement,Justice and Law Enforcement +503682,Justice and Law Enforcement,Justice and Law Enforcement +503681,Justice and Law Enforcement,Justice and Law Enforcement +503680,Justice and Law Enforcement,Justice and Law Enforcement +503679,Justice and Law Enforcement,Justice and Law Enforcement +497256,Consumer Issues,Consumer Issues +497255,Consumer Issues,Consumer Issues +502461,Consumer Issues,Consumer Issues +497263,Consumer Issues,Consumer Issues +497262,Consumer Issues,Consumer Issues +497261,Consumer Issues,Consumer Issues +497260,Consumer Issues,Consumer Issues +497259,Consumer Issues,Consumer Issues +497258,Consumer Issues,Consumer Issues +497256,Education,Education +497255,Education,Education +497263,Education,Education +497262,Education,Education +497261,Education,Education +497260,Education,Education +497259,Education,Education +497258,Education,Education +497260,Elections,Elections +497096,Industry,Industry +497093,Industry,Industry +501417,Consumer Issues,Consumer Issues +501417,Health,Health +534824,Health,Health +534824,Justice and Law Enforcement,Justice and Law Enforcement +512469,Research and Development,Research and Development +540268,Consumer Issues,Consumer Issues +505206,Consumer Issues,Consumer Issues +502042,Consumer Issues,Consumer Issues +502040,Consumer Issues,Consumer Issues +507983,Infrastructure,Infrastructure +504431,Infrastructure,Infrastructure +510728,Infrastructure,Infrastructure +510725,Infrastructure,Infrastructure +507989,Infrastructure,Infrastructure +507988,Infrastructure,Infrastructure +500305,Economic Development,Economic Development +497427,Economic Development,Economic Development +503199,Economic Development,Economic Development +502972,Economic Development,Economic Development +500753,Economic Development,Economic Development +500176,Employment and Training,Employment and Training +497427,Employment and Training,Employment and Training +503199,Employment and Training,Employment and Training +502972,Employment and Training,Employment and Training +500753,Employment and Training,Employment and Training +500648,Employment and Training,Employment and Training +500176,Labour,Labour +500176,Regional Development,Regional Development +497427,Regional Development,Regional Development +503199,Regional Development,Regional Development +500753,Regional Development,Regional Development +500648,Regional Development,Regional Development +500176,Budget,Budget +497427,Budget,Budget +503199,Budget,Budget +502972,Budget,Budget +500753,Budget,Budget +500648,Budget,Budget +497405,Economic Development,Economic Development +501417,Justice and Law Enforcement,Justice and Law Enforcement +504739,Employment and Training,Employment and Training +525579,Health,Health +504739,Health,Health +504739,Justice and Law Enforcement,Justice and Law Enforcement +528638,Research and Development,Research and Development +525579,Research and Development,Research and Development +507708,Budget,Budget +497519,Agriculture,Agriculture +497540,Housing,Housing +500443,Employment and Training,Employment and Training +500437,Employment and Training,Employment and Training +500443,Immigration,Immigration +500437,Immigration,Immigration +501545,Immigration,Immigration +504471,Budget,Budget +497562,Budget,Budget +504997,Budget,Budget +501626,Agriculture,Agriculture +529305,Agriculture,Agriculture +504851,Economic Development,Economic Development +498708,Economic Development,Economic Development +531955,Economic Development,Economic Development +526226,Economic Development,Economic Development +519914,Economic Development,Economic Development +519908,Economic Development,Economic Development +504870,Economic Development,Economic Development +504866,Government Procurement,Government Procurement +501695,Government Procurement,Government Procurement +517378,Government Procurement,Government Procurement +517366,Government Procurement,Government Procurement +510573,Government Procurement,Government Procurement +508958,Government Procurement,Government Procurement +510578,Health,Health +510573,Health,Health +504870,Health,Health +504851,Health,Health +501695,Health,Health +501693,Health,Health +498708,Health,Health +531955,Health,Health +529291,Health,Health +529273,Health,Health +529259,Health,Health +526218,Health,Health +517378,Health,Health +498708,Industry,Industry +529259,Industry,Industry +526226,Industry,Industry +526218,Industry,Industry +519914,Industry,Industry +519908,Industry,Industry +510578,Industry,Industry +508958,Industry,Industry +508948,Industry,Industry +504870,Industry,Industry +504866,Industry,Industry +504851,Industry,Industry +501695,Industry,Industry +501693,International Development,International Development +501695,Research and Development,Research and Development +501693,Research and Development,Research and Development +529291,Research and Development,Research and Development +529273,Research and Development,Research and Development +529259,Research and Development,Research and Development +519914,Research and Development,Research and Development +519908,Research and Development,Research and Development +517378,Research and Development,Research and Development +510578,Research and Development,Research and Development +510573,Research and Development,Research and Development +508958,Research and Development,Research and Development +508948,Research and Development,Research and Development +504870,Research and Development,Research and Development +509248,Housing,Housing +506804,Housing,Housing +506283,Housing,Housing +506281,Housing,Housing +503084,Housing,Housing +497840,Housing,Housing +506281,Employment and Training,Employment and Training +503084,Employment and Training,Employment and Training +509250,Employment and Training,Employment and Training +509248,Employment and Training,Employment and Training +506804,Employment and Training,Employment and Training +508594,Climate,Climate +508592,Climate,Climate +519325,Climate,Climate +519321,Climate,Climate +519318,Climate,Climate +517497,Climate,Climate +517490,Climate,Climate +517488,Climate,Climate +517483,Climate,Climate +517478,Climate,Climate +517476,Climate,Climate +517471,Climate,Climate +516547,Climate,Climate +513747,Climate,Climate +513746,Climate,Climate +512620,Climate,Climate +512619,Climate,Climate +512617,Climate,Climate +512616,Climate,Climate +512614,Climate,Climate +512613,Climate,Climate +529594,Taxation and Finance,Taxation and Finance +505654,Transportation,Transportation +502651,Employment and Training,Employment and Training +505650,Labour,Labour +516960,Sports,Sports +516960,Tourism,Tourism +516960,Economic Development,Economic Development +526738,Climate,Climate +505640,Immigration,Immigration +496894,Infrastructure,Infrastructure +496894,Transportation,Transportation +526837,Infrastructure,Infrastructure +503431,Environment,Environment +500420,Government Procurement,Government Procurement +516061,Infrastructure,Infrastructure +516061,Industry,Industry +528246,Consumer Issues,Consumer Issues +528246,Financial Institutions,Financial Institutions +520258,Taxation and Finance,Taxation and Finance +532594,Security,Security +532594,Research and Development,Research and Development +535096,Consumer Issues,Consumer Issues +507804,Small Business,Small Business +535096,Privacy and Access to Information,Privacy and Access to Information +507804,Economic Development,Economic Development +532594,Industry,Industry +541867,International Trade,International Trade +497199,Consumer Issues,Consumer Issues +497384,Economic Development,Economic Development +497384,Health,Health +497384,Taxation and Finance,Taxation and Finance +507071,Economic Development,Economic Development +499790,Economic Development,Economic Development +499790,Employment and Training,Employment and Training +520703,Housing,Housing +544661,Labour,Labour +499790,Transportation,Transportation +496979,Environment,Environment +506763,Education,Education +506763,Health,Health +496988,Budget,Budget +535321,Consumer Issues,Consumer Issues +523182,Intellectual Property,Intellectual Property +523081,International Trade,International Trade +526554,Industry,Industry +518253,Health,Health +496986,Environment,Environment +497012,Financial Institutions,Financial Institutions +520993,Transportation,Transportation +503799,Agriculture,Agriculture +509822,Industry,Industry +506376,Infrastructure,Infrastructure +509822,Labour,Labour +506376,Regional Development,Regional Development +503799,Research and Development,Research and Development +513825,Education,Education +503678,Justice and Law Enforcement,Justice and Law Enforcement +497257,Consumer Issues,Consumer Issues +497257,Education,Education +502461,Elections,Elections +497263,Security,Security +499227,Justice and Law Enforcement,Justice and Law Enforcement +528566,Health,Health +497098,Industry,Industry +501482,Consumer Issues,Consumer Issues +501482,Health,Health +502530,Government Procurement,Government Procurement +506342,Taxation and Finance,Taxation and Finance +506342,Economic Development,Economic Development +506342,Justice and Law Enforcement,Justice and Law Enforcement +497384,Justice and Law Enforcement,Justice and Law Enforcement +534824,Employment and Training,Employment and Training +512469,Health,Health +512469,Justice and Law Enforcement,Justice and Law Enforcement +534824,Research and Development,Research and Development +528566,Research and Development,Research and Development +502039,Consumer Issues,Consumer Issues +504431,Economic Development,Economic Development +507985,Infrastructure,Infrastructure +500648,Economic Development,Economic Development +500305,Employment and Training,Employment and Training +500305,Labour,Labour +500305,Regional Development,Regional Development +500305,Budget,Budget +511570,Economic Development,Economic Development +513254,Research and Development,Research and Development +513254,International Trade,International Trade +501482,Justice and Law Enforcement,Justice and Law Enforcement +497436,Transportation,Transportation +499538,Industry,Industry +499538,Government Procurement,Government Procurement +499538,Economic Development,Economic Development +499538,Health,Health +499283,Industry,Industry +497477,Internal Trade,Internal Trade +500415,Economic Development,Economic Development +500415,Infrastructure,Infrastructure +500415,Mining,Mining +525579,Employment and Training,Employment and Training +528638,Health,Health +525579,Justice and Law Enforcement,Justice and Law Enforcement +504739,Research and Development,Research and Development +507709,Budget,Budget +516185,International Development,International Development +502065,Agriculture,Agriculture +503999,Housing,Housing +500608,Employment and Training,Employment and Training +500608,Immigration,Immigration +501455,Economic Development,Economic Development +513445,Environment,Environment +513445,Health,Health +504473,Budget,Budget +497579,Climate,Climate +497580,Climate,Climate +530861,Health,Health +523812,Industry,Industry +502562,Agriculture,Agriculture +504866,Economic Development,Economic Development +508948,Government Procurement,Government Procurement +517366,Health,Health +501693,Industry,Industry +504866,International Development,International Development +504851,Research and Development,Research and Development +497635,Environment,Environment +509250,Housing,Housing +506283,Employment and Training,Employment and Training +508604,Climate,Climate +519321,Employment and Training,Employment and Training +508594,Energy,Energy +517488,Industry,Industry +519323,Infrastructure,Infrastructure +519323,Internal Trade,Internal Trade +508594,Taxation and Finance,Taxation and Finance +504733,Justice and Law Enforcement,Justice and Law Enforcement +502423,Budget,Budget +502423,Education,Education +502423,Infrastructure,Infrastructure +502423,Regional Development,Regional Development +502423,Taxation and Finance,Taxation and Finance +506608,Consumer Issues,Consumer Issues +516611,Education,Education +516611,Immigration,Immigration +500076,Government Procurement,Government Procurement +503738,Energy,Energy +497845,Elections,Elections +501235,Government Procurement,Government Procurement +497852,Government Procurement,Government Procurement +497883,Defence,Defence +513396,Taxation and Finance,Taxation and Finance +508930,Education,Education +508930,Employment and Training,Employment and Training +508922,Government Procurement,Government Procurement +502132,Employment and Training,Employment and Training +505469,Government Procurement,Government Procurement +502132,Labour,Labour +508240,Small Business,Small Business +525337,Government Procurement,Government Procurement +507033,Housing,Housing +513685,Industry,Industry +525309,Taxation and Finance,Taxation and Finance +526852,International Development,International Development +499916,Financial Institutions,Financial Institutions +500086,Health,Health +500086,Research and Development,Research and Development +503104,Privacy and Access to Information,Privacy and Access to Information +534518,Immigration,Immigration +501233,International Development,International Development +510343,Employment and Training,Employment and Training +518065,Financial Institutions,Financial Institutions +518065,Infrastructure,Infrastructure +501765,Climate,Climate +501746,Infrastructure,Infrastructure +508037,Research and Development,Research and Development +502071,Justice and Law Enforcement,Justice and Law Enforcement +515308,Employment and Training,Employment and Training +501806,Health,Santé +498342,Health,Health +511596,Economic Development,Economic Development +506123,Environment,Environment +506124,Industry,Industry +511597,Mining,Mining +509411,Infrastructure,Infrastructure +509411,Employment and Training,Employment and Training +509411,Transportation,Transportation +509411,Economic Development,Economic Development +508237,Economic Development,Economic Development +508237,Industry,Industry +508237,Regional Development,Regional Development +508237,Small Business,Small Business +508237,Tourism,Tourism +498703,Climate,Climate +502787,Government Procurement,Government Procurement +498932,Health,Health +500211,Environment,Environment +498945,Economic Development,Economic Development +500211,Energy,Energy +509597,Health,Health +516569,Industry,Industry +511317,Government Procurement,Government Procurement +513449,Energy,Energy +508023,Government Procurement,Government Procurement +510783,Climate,Climate +510782,Climate,Climate +508606,Climate,Climate +517476,Employment and Training,Employment and Training +516547,Employment and Training,Employment and Training +519323,Employment and Training,Employment and Training +508592,Energy,Energy +504890,Energy,Energy +519325,Energy,Energy +519323,Energy,Energy +519321,Energy,Energy +519318,Energy,Energy +517490,Energy,Energy +517488,Energy,Energy +517483,Energy,Energy +517478,Energy,Energy +517476,Energy,Energy +517471,Energy,Energy +516547,Energy,Energy +513747,Energy,Energy +513746,Energy,Energy +512620,Energy,Energy +512619,Energy,Energy +512617,Energy,Energy +512616,Energy,Energy +512614,Energy,Energy +512613,Energy,Energy +510783,Energy,Energy +510782,Energy,Energy +508606,Energy,Energy +508604,Energy,Energy +517483,Industry,Industry +517478,Industry,Industry +519321,Industry,Industry +517497,Industry,Industry +517490,Industry,Industry +508592,Taxation and Finance,Taxation and Finance +504890,Taxation and Finance,Taxation and Finance +513747,Taxation and Finance,Taxation and Finance +513746,Taxation and Finance,Taxation and Finance +512620,Taxation and Finance,Taxation and Finance +512619,Taxation and Finance,Taxation and Finance +512617,Taxation and Finance,Taxation and Finance +512616,Taxation and Finance,Taxation and Finance +512614,Taxation and Finance,Taxation and Finance +512613,Taxation and Finance,Taxation and Finance +510783,Taxation and Finance,Taxation and Finance +510782,Taxation and Finance,Taxation and Finance +508606,Taxation and Finance,Taxation and Finance +508604,Taxation and Finance,Taxation and Finance +504706,Justice and Law Enforcement,Justice and Law Enforcement +502069,Justice and Law Enforcement,Justice and Law Enforcement +525744,Justice and Law Enforcement,Justice and Law Enforcement +508451,Justice and Law Enforcement,Justice and Law Enforcement +500510,Education,Education +511852,Immigration,Immigration +509451,Immigration,Immigration +500510,Immigration,Immigration +516613,Immigration,Immigration +497850,Government Procurement,Government Procurement +505274,Taxation and Finance,Taxation and Finance +508926,Education,Education +508922,Education,Education +508926,Employment and Training,Employment and Training +508922,Employment and Training,Employment and Training +508931,Employment and Training,Employment and Training +502746,Government Procurement,Government Procurement +502737,Government Procurement,Government Procurement +508930,Government Procurement,Government Procurement +508926,Government Procurement,Government Procurement +502117,Employment and Training,Employment and Training +502111,Employment and Training,Employment and Training +508240,Employment and Training,Employment and Training +505469,Employment and Training,Employment and Training +502155,Employment and Training,Employment and Training +502145,Employment and Training,Employment and Training +502155,Government Procurement,Government Procurement +502145,Government Procurement,Government Procurement +502132,Government Procurement,Government Procurement +502117,Government Procurement,Government Procurement +502111,Government Procurement,Government Procurement +508240,Government Procurement,Government Procurement +502117,Labour,Labour +502111,Labour,Labour +508240,Labour,Labour +505469,Labour,Labour +502155,Labour,Labour +502145,Labour,Labour +505469,Small Business,Small Business +502111,Small Business,Small Business +525306,Government Procurement,Government Procurement +534208,Government Procurement,Government Procurement +528146,Government Procurement,Government Procurement +501199,Housing,Housing +510156,Industry,Industry +510156,Taxation and Finance,Taxation and Finance +497978,International Development,International Development +537680,International Development,International Development +499912,Financial Institutions,Financial Institutions +499910,Financial Institutions,Financial Institutions +499227,Privacy and Access to Information,Privacy and Access to Information +498098,Privacy and Access to Information,Privacy and Access to Information +528009,Privacy and Access to Information,Privacy and Access to Information +503399,Privacy and Access to Information,Privacy and Access to Information +503107,Privacy and Access to Information,Privacy and Access to Information +503106,Privacy and Access to Information,Privacy and Access to Information +503105,Privacy and Access to Information,Privacy and Access to Information +524159,Immigration,Immigration +516071,Immigration,Immigration +542963,Immigration,Immigration +541698,Immigration,Immigration +540363,Immigration,Immigration +540362,Immigration,Immigration +498212,International Development,International Development +498210,International Development,International Development +528411,International Development,International Development +510245,International Development,International Development +507143,International Development,International Development +498338,Employment and Training,Employment and Training +501767,Financial Institutions,Financial Institutions +499749,Financial Institutions,Financial Institutions +516704,Infrastructure,Infrastructure +499749,Infrastructure,Infrastructure +530240,Infrastructure,Infrastructure +505180,Research and Development,Research and Development +498463,Research and Development,Research and Development +528938,Research and Development,Research and Development +528937,Research and Development,Research and Development +525980,Research and Development,Research and Development +522616,Research and Development,Research and Development +511004,Employment and Training,Employment and Training +498532,Employment and Training,Employment and Training +519474,Employment and Training,Employment and Training +519469,Employment and Training,Employment and Training +506122,Economic Development,Economic Development +506121,Economic Development,Economic Development +511597,Economic Development,Economic Development +506121,Industry,Industry +502614,Industry,Industry +511596,Industry,Industry +502616,Mining,Mining +504081,Infrastructure,Infrastructure +504081,Economic Development,Economic Development +505471,Economic Development,Economic Development +505471,Industry,Industry +505471,Regional Development,Regional Development +505471,Small Business,Small Business +505471,Tourism,Tourism +502785,Government Procurement,Government Procurement +499734,Government Procurement,Government Procurement +505958,Government Procurement,Government Procurement +505956,Government Procurement,Government Procurement +498945,Environment,Environment +500899,Health,Health +500898,Health,Health +543146,Health,Health +539124,Health,Health +533436,Health,Health +521695,Health,Health +516569,Health,Health +513448,Energy,Energy +508017,Government Procurement,Government Procurement +500071,Government Procurement,Government Procurement +514250,Government Procurement,Government Procurement +514249,Government Procurement,Government Procurement +478656,Telecommunications,Telecommunications +478655,Telecommunications,Telecommunications +497244,Telecommunications,Telecommunications +494318,Telecommunications,Telecommunications +492011,Telecommunications,Telecommunications +481842,Telecommunications,Telecommunications +481356,Telecommunications,Telecommunications +480574,Telecommunications,Telecommunications +479329,Telecommunications,Telecommunications +480231,Broadcasting,Broadcasting +532291,Telecommunications,Telecommunications +532288,Telecommunications,Telecommunications +539962,Telecommunications,Telecommunications +539947,Telecommunications,Telecommunications +539945,Telecommunications,Telecommunications +478910,Aboriginal Affairs,Aboriginal Affairs +478661,Aboriginal Affairs,Aboriginal Affairs +511794,Aboriginal Affairs,Aboriginal Affairs +506835,Aboriginal Affairs,Aboriginal Affairs +494483,Aboriginal Affairs,Aboriginal Affairs +480779,Aboriginal Affairs,Aboriginal Affairs +478421,Science and Technology,Science and Technology +480465,Science and Technology,Science and Technology +478518,Science and Technology,Science and Technology +480872,Telecommunications,Telecommunications +478638,Aboriginal Affairs,Aboriginal Affairs +494504,Aboriginal Affairs,Aboriginal Affairs +494095,Aboriginal Affairs,Aboriginal Affairs +500173,Aboriginal Affairs,Aboriginal Affairs +497390,Aboriginal Affairs,Aboriginal Affairs +478854,Arts and Culture,Arts and Culture +478853,Arts and Culture,Arts and Culture +478852,Arts and Culture,Arts and Culture +478851,Arts and Culture,Arts and Culture +478849,Arts and Culture,Arts and Culture +478848,Arts and Culture,Arts and Culture +478847,Arts and Culture,Arts and Culture +478846,Arts and Culture,Arts and Culture +478845,Arts and Culture,Arts and Culture +478844,Arts and Culture,Arts and Culture +478843,Arts and Culture,Arts and Culture +479984,Arts and Culture,Arts and Culture +478948,Arts and Culture,Arts and Culture +478947,Arts and Culture,Arts and Culture +478946,Arts and Culture,Arts and Culture +478945,Arts and Culture,Arts and Culture +478944,Arts and Culture,Arts and Culture +478943,Arts and Culture,Arts and Culture +478942,Arts and Culture,Arts and Culture +478940,Arts and Culture,Arts and Culture +478939,Arts and Culture,Arts and Culture +478937,Arts and Culture,Arts and Culture +478936,Arts and Culture,Arts and Culture +478933,Arts and Culture,Arts and Culture +478932,Arts and Culture,Arts and Culture +478929,Arts and Culture,Arts and Culture +478927,Arts and Culture,Arts and Culture +478926,Arts and Culture,Arts and Culture +478925,Arts and Culture,Arts and Culture +478924,Arts and Culture,Arts and Culture +478923,Arts and Culture,Arts and Culture +478922,Arts and Culture,Arts and Culture +478921,Arts and Culture,Arts and Culture +478904,Arts and Culture,Arts and Culture +478902,Arts and Culture,Arts and Culture +478901,Arts and Culture,Arts and Culture +478900,Arts and Culture,Arts and Culture +478899,Arts and Culture,Arts and Culture +478898,Arts and Culture,Arts and Culture +478897,Arts and Culture,Arts and Culture +478895,Arts and Culture,Arts and Culture +478894,Arts and Culture,Arts and Culture +478893,Arts and Culture,Arts and Culture +478892,Arts and Culture,Arts and Culture +478891,Arts and Culture,Arts and Culture +478890,Arts and Culture,Arts and Culture +478889,Arts and Culture,Arts and Culture +478888,Arts and Culture,Arts and Culture +478887,Arts and Culture,Arts and Culture +478886,Arts and Culture,Arts and Culture +478885,Arts and Culture,Arts and Culture +478884,Arts and Culture,Arts and Culture +478883,Arts and Culture,Arts and Culture +478882,Arts and Culture,Arts and Culture +478879,Arts and Culture,Arts and Culture +478878,Arts and Culture,Arts and Culture +478877,Arts and Culture,Arts and Culture +478876,Arts and Culture,Arts and Culture +478875,Arts and Culture,Arts and Culture +478874,Arts and Culture,Arts and Culture +478873,Arts and Culture,Arts and Culture +478872,Arts and Culture,Arts and Culture +478871,Arts and Culture,Arts and Culture +478870,Arts and Culture,Arts and Culture +478869,Arts and Culture,Arts and Culture +478867,Arts and Culture,Arts and Culture +478865,Arts and Culture,Arts and Culture +478864,Arts and Culture,Arts and Culture +478863,Arts and Culture,Arts and Culture +478862,Arts and Culture,Arts and Culture +478861,Arts and Culture,Arts and Culture +478860,Arts and Culture,Arts and Culture +478859,Arts and Culture,Arts and Culture +478858,Arts and Culture,Arts and Culture +478857,Arts and Culture,Arts and Culture +478856,Arts and Culture,Arts and Culture +478844,Aboriginal Affairs,Aboriginal Affairs +478843,Aboriginal Affairs,Aboriginal Affairs +482667,Aboriginal Affairs,Aboriginal Affairs +479984,Aboriginal Affairs,Aboriginal Affairs +478948,Aboriginal Affairs,Aboriginal Affairs +478947,Aboriginal Affairs,Aboriginal Affairs +478946,Aboriginal Affairs,Aboriginal Affairs +478945,Aboriginal Affairs,Aboriginal Affairs +478944,Aboriginal Affairs,Aboriginal Affairs +478943,Aboriginal Affairs,Aboriginal Affairs +478942,Aboriginal Affairs,Aboriginal Affairs +478940,Aboriginal Affairs,Aboriginal Affairs +478939,Aboriginal Affairs,Aboriginal Affairs +478937,Aboriginal Affairs,Aboriginal Affairs +478936,Aboriginal Affairs,Aboriginal Affairs +478933,Aboriginal Affairs,Aboriginal Affairs +478932,Aboriginal Affairs,Aboriginal Affairs +478929,Aboriginal Affairs,Aboriginal Affairs +478927,Aboriginal Affairs,Aboriginal Affairs +478926,Aboriginal Affairs,Aboriginal Affairs +478925,Aboriginal Affairs,Aboriginal Affairs +478924,Aboriginal Affairs,Aboriginal Affairs +478923,Aboriginal Affairs,Aboriginal Affairs +478922,Aboriginal Affairs,Aboriginal Affairs +478921,Aboriginal Affairs,Aboriginal Affairs +478904,Aboriginal Affairs,Aboriginal Affairs +478902,Aboriginal Affairs,Aboriginal Affairs +478901,Aboriginal Affairs,Aboriginal Affairs +478900,Aboriginal Affairs,Aboriginal Affairs +478899,Aboriginal Affairs,Aboriginal Affairs +478898,Aboriginal Affairs,Aboriginal Affairs +478897,Aboriginal Affairs,Aboriginal Affairs +478895,Aboriginal Affairs,Aboriginal Affairs +478894,Aboriginal Affairs,Aboriginal Affairs +478893,Aboriginal Affairs,Aboriginal Affairs +478892,Aboriginal Affairs,Aboriginal Affairs +478891,Aboriginal Affairs,Aboriginal Affairs +478890,Aboriginal Affairs,Aboriginal Affairs +478889,Aboriginal Affairs,Aboriginal Affairs +478888,Aboriginal Affairs,Aboriginal Affairs +478887,Aboriginal Affairs,Aboriginal Affairs +478886,Aboriginal Affairs,Aboriginal Affairs +478885,Aboriginal Affairs,Aboriginal Affairs +478884,Aboriginal Affairs,Aboriginal Affairs +478883,Aboriginal Affairs,Aboriginal Affairs +478882,Aboriginal Affairs,Aboriginal Affairs +478879,Aboriginal Affairs,Aboriginal Affairs +478878,Aboriginal Affairs,Aboriginal Affairs +478877,Aboriginal Affairs,Aboriginal Affairs +478876,Aboriginal Affairs,Aboriginal Affairs +478875,Aboriginal Affairs,Aboriginal Affairs +478874,Aboriginal Affairs,Aboriginal Affairs +478873,Aboriginal Affairs,Aboriginal Affairs +478872,Aboriginal Affairs,Aboriginal Affairs +478871,Aboriginal Affairs,Aboriginal Affairs +478870,Aboriginal Affairs,Aboriginal Affairs +478869,Aboriginal Affairs,Aboriginal Affairs +478867,Aboriginal Affairs,Aboriginal Affairs +478865,Aboriginal Affairs,Aboriginal Affairs +478864,Aboriginal Affairs,Aboriginal Affairs +478863,Aboriginal Affairs,Aboriginal Affairs +478862,Aboriginal Affairs,Aboriginal Affairs +478861,Aboriginal Affairs,Aboriginal Affairs +478860,Aboriginal Affairs,Aboriginal Affairs +478859,Aboriginal Affairs,Aboriginal Affairs +478858,Aboriginal Affairs,Aboriginal Affairs +478857,Aboriginal Affairs,Aboriginal Affairs +478856,Aboriginal Affairs,Aboriginal Affairs +478855,Aboriginal Affairs,Aboriginal Affairs +478854,Aboriginal Affairs,Aboriginal Affairs +478853,Aboriginal Affairs,Aboriginal Affairs +478852,Aboriginal Affairs,Aboriginal Affairs +478851,Aboriginal Affairs,Aboriginal Affairs +478849,Aboriginal Affairs,Aboriginal Affairs +478848,Aboriginal Affairs,Aboriginal Affairs +478847,Aboriginal Affairs,Aboriginal Affairs +478846,Aboriginal Affairs,Aboriginal Affairs +501706,Arts and Culture,Arts and Culture +500112,Arts and Culture,Arts and Culture +492734,Arts and Culture,Arts and Culture +509663,Arts and Culture,Arts and Culture +506311,Arts and Culture,Arts and Culture +484236,Science and Technology,Science and Technology +483711,Science and Technology,Science and Technology +499518,Science and Technology,Science and Technology +488101,Science and Technology,Science and Technology +529650,Science and Technology,Science and Technology +513098,Science and Technology,Science and Technology +511461,Science and Technology,Science and Technology +510888,Science and Technology,Science and Technology +508152,Science and Technology,Science and Technology +479554,Arts and Culture,Arts and Culture +479526,Arts and Culture,Arts and Culture +480262,Aboriginal Affairs,Aboriginal Affairs +479408,Aboriginal Affairs,Aboriginal Affairs +499617,Aboriginal Affairs,Aboriginal Affairs +482353,Aboriginal Affairs,Aboriginal Affairs +526644,Aboriginal Affairs,Aboriginal Affairs +526639,Aboriginal Affairs,Aboriginal Affairs +526629,Aboriginal Affairs,Aboriginal Affairs +508971,Aboriginal Affairs,Aboriginal Affairs +505848,Aboriginal Affairs,Aboriginal Affairs +491868,Science and Technology,Science and Technology +479617,Science and Technology,Science and Technology +514201,Science and Technology,Science and Technology +506267,Aboriginal Affairs,Aboriginal Affairs +504599,Aboriginal Affairs,Aboriginal Affairs +485451,Aboriginal Affairs,Aboriginal Affairs +483047,Science and Technology,Science and Technology +484649,Telecommunications,Telecommunications +487274,Aboriginal Affairs,Aboriginal Affairs +484561,Aboriginal Affairs,Aboriginal Affairs +490377,Aboriginal Affairs,Aboriginal Affairs +497567,Science and Technology,Science and Technology +481136,Science and Technology,Science and Technology +513367,Science and Technology,Science and Technology +513366,Science and Technology,Science and Technology +508672,Science and Technology,Science and Technology +508658,Science and Technology,Science and Technology +508641,Science and Technology,Science and Technology +487652,Arts and Culture,Arts and Culture +487654,Arts and Culture,Arts and Culture +480481,Telecommunications,Telecommunications +484963,Arts and Culture,Arts and Culture +498057,Science and Technology,Science and Technology +514293,Arts and Culture,Arts and Culture +514292,Arts and Culture,Arts and Culture +514301,Arts and Culture,Arts and Culture +514297,Arts and Culture,Arts and Culture +514296,Arts and Culture,Arts and Culture +514295,Arts and Culture,Arts and Culture +487129,Arts and Culture,Arts and Culture +484969,Arts and Culture,Arts and Culture +510916,Arts and Culture,Arts and Culture +507244,Arts and Culture,Arts and Culture +502321,Arts and Culture,Arts and Culture +498643,Arts and Culture,Arts and Culture +498641,Arts and Culture,Arts and Culture +494814,Arts and Culture,Arts and Culture +494803,Arts and Culture,Arts and Culture +491148,Arts and Culture,Arts and Culture +491145,Arts and Culture,Arts and Culture +491142,Arts and Culture,Arts and Culture +487164,Arts and Culture,Arts and Culture +487153,Arts and Culture,Arts and Culture +487135,Science and Technology,Science and Technology +487129,Science and Technology,Science and Technology +502321,Science and Technology,Science and Technology +494809,Science and Technology,Science and Technology +494803,Science and Technology,Science and Technology +491142,Science and Technology,Science and Technology +487164,Science and Technology,Science and Technology +487153,Science and Technology,Science and Technology +487129,Aboriginal Affairs,Aboriginal Affairs +484969,Aboriginal Affairs,Aboriginal Affairs +494814,Aboriginal Affairs,Aboriginal Affairs +494809,Aboriginal Affairs,Aboriginal Affairs +491148,Aboriginal Affairs,Aboriginal Affairs +491145,Aboriginal Affairs,Aboriginal Affairs +491142,Aboriginal Affairs,Aboriginal Affairs +487164,Aboriginal Affairs,Aboriginal Affairs +487153,Aboriginal Affairs,Aboriginal Affairs +526439,Aboriginal Affairs,Aboriginal Affairs +483514,Science and Technology,Science and Technology +483513,Science and Technology,Science and Technology +487918,Science and Technology,Science and Technology +520902,Science and Technology,Science and Technology +528405,Science and Technology,Science and Technology +520917,Science and Technology,Science and Technology +486553,Science and Technology,Science and Technology +486551,Science and Technology,Science and Technology +518873,Science and Technology,Science and Technology +518872,Science and Technology,Science and Technology +516852,Science and Technology,Science and Technology +516851,Science and Technology,Science and Technology +516850,Science and Technology,Science and Technology +515062,Science and Technology,Science and Technology +503629,Science and Technology,Science and Technology +501172,Science and Technology,Science and Technology +501170,Science and Technology,Science and Technology +497216,Science and Technology,Science and Technology +497215,Science and Technology,Science and Technology +494300,Science and Technology,Science and Technology +492695,Science and Technology,Science and Technology +489366,Science and Technology,Science and Technology +483376,Arts and Culture,Arts and Culture +483374,Arts and Culture,Arts and Culture +527382,Arts and Culture,Arts and Culture +481166,Science and Technology,Science and Technology +481165,Science and Technology,Science and Technology +483838,Science and Technology,Science and Technology +481226,Science and Technology,Science and Technology +509966,Science and Technology,Science and Technology +509965,Science and Technology,Science and Technology +491600,Science and Technology,Science and Technology +482486,Science and Technology,Science and Technology +541519,Science and Technology,Science and Technology +541501,Science and Technology,Science and Technology +541500,Science and Technology,Science and Technology +541497,Science and Technology,Science and Technology +541495,Science and Technology,Science and Technology +539693,Science and Technology,Science and Technology +539691,Science and Technology,Science and Technology +539690,Science and Technology,Science and Technology +539689,Science and Technology,Science and Technology +539688,Science and Technology,Science and Technology +539687,Science and Technology,Science and Technology +534540,Science and Technology,Science and Technology +529308,Science and Technology,Science and Technology +529224,Science and Technology,Science and Technology +529223,Science and Technology,Science and Technology +525927,Science and Technology,Science and Technology +525926,Science and Technology,Science and Technology +525925,Science and Technology,Science and Technology +525922,Science and Technology,Science and Technology +522643,Science and Technology,Science and Technology +522642,Science and Technology,Science and Technology +522641,Science and Technology,Science and Technology +522639,Science and Technology,Science and Technology +517467,Science and Technology,Science and Technology +515309,Science and Technology,Science and Technology +515307,Science and Technology,Science and Technology +515306,Science and Technology,Science and Technology +510815,Science and Technology,Science and Technology +505264,Science and Technology,Science and Technology +501234,Science and Technology,Science and Technology +499146,Science and Technology,Science and Technology +499141,Science and Technology,Science and Technology +495548,Science and Technology,Science and Technology +492792,Science and Technology,Science and Technology +492791,Science and Technology,Science and Technology +492790,Science and Technology,Science and Technology +492789,Science and Technology,Science and Technology +492788,Science and Technology,Science and Technology +492787,Science and Technology,Science and Technology +491671,Science and Technology,Science and Technology +491669,Science and Technology,Science and Technology +491657,Science and Technology,Science and Technology +491651,Science and Technology,Science and Technology +491644,Science and Technology,Science and Technology +491606,Science and Technology,Science and Technology +520114,Aboriginal Affairs,Aboriginal Affairs +512047,Aboriginal Affairs,Aboriginal Affairs +542060,Aboriginal Affairs,Aboriginal Affairs +542058,Aboriginal Affairs,Aboriginal Affairs +542057,Aboriginal Affairs,Aboriginal Affairs +542056,Aboriginal Affairs,Aboriginal Affairs +542055,Aboriginal Affairs,Aboriginal Affairs +542054,Aboriginal Affairs,Aboriginal Affairs +542053,Aboriginal Affairs,Aboriginal Affairs +542047,Aboriginal Affairs,Aboriginal Affairs +542046,Aboriginal Affairs,Aboriginal Affairs +542045,Aboriginal Affairs,Aboriginal Affairs +542044,Aboriginal Affairs,Aboriginal Affairs +542043,Aboriginal Affairs,Aboriginal Affairs +542041,Aboriginal Affairs,Aboriginal Affairs +542040,Aboriginal Affairs,Aboriginal Affairs +542037,Aboriginal Affairs,Aboriginal Affairs +542036,Aboriginal Affairs,Aboriginal Affairs +542035,Aboriginal Affairs,Aboriginal Affairs +542032,Aboriginal Affairs,Aboriginal Affairs +542031,Aboriginal Affairs,Aboriginal Affairs +542030,Aboriginal Affairs,Aboriginal Affairs +542029,Aboriginal Affairs,Aboriginal Affairs +542027,Aboriginal Affairs,Aboriginal Affairs +538691,Aboriginal Affairs,Aboriginal Affairs +538690,Aboriginal Affairs,Aboriginal Affairs +538689,Aboriginal Affairs,Aboriginal Affairs +538688,Aboriginal Affairs,Aboriginal Affairs +538687,Aboriginal Affairs,Aboriginal Affairs +538686,Aboriginal Affairs,Aboriginal Affairs +538685,Aboriginal Affairs,Aboriginal Affairs +538684,Aboriginal Affairs,Aboriginal Affairs +538683,Aboriginal Affairs,Aboriginal Affairs +538682,Aboriginal Affairs,Aboriginal Affairs +538681,Aboriginal Affairs,Aboriginal Affairs +538679,Aboriginal Affairs,Aboriginal Affairs +538678,Aboriginal Affairs,Aboriginal Affairs +538676,Aboriginal Affairs,Aboriginal Affairs +538675,Aboriginal Affairs,Aboriginal Affairs +538674,Aboriginal Affairs,Aboriginal Affairs +538673,Aboriginal Affairs,Aboriginal Affairs +538672,Aboriginal Affairs,Aboriginal Affairs +535830,Aboriginal Affairs,Aboriginal Affairs +535820,Aboriginal Affairs,Aboriginal Affairs +535819,Aboriginal Affairs,Aboriginal Affairs +535817,Aboriginal Affairs,Aboriginal Affairs +535816,Aboriginal Affairs,Aboriginal Affairs +535815,Aboriginal Affairs,Aboriginal Affairs +535814,Aboriginal Affairs,Aboriginal Affairs +535812,Aboriginal Affairs,Aboriginal Affairs +535811,Aboriginal Affairs,Aboriginal Affairs +535807,Aboriginal Affairs,Aboriginal Affairs +535805,Aboriginal Affairs,Aboriginal Affairs +535588,Aboriginal Affairs,Aboriginal Affairs +535577,Aboriginal Affairs,Aboriginal Affairs +535573,Aboriginal Affairs,Aboriginal Affairs +535570,Aboriginal Affairs,Aboriginal Affairs +535567,Aboriginal Affairs,Aboriginal Affairs +535563,Aboriginal Affairs,Aboriginal Affairs +535558,Aboriginal Affairs,Aboriginal Affairs +535553,Aboriginal Affairs,Aboriginal Affairs +535531,Aboriginal Affairs,Aboriginal Affairs +535420,Aboriginal Affairs,Aboriginal Affairs +535416,Aboriginal Affairs,Aboriginal Affairs +535386,Aboriginal Affairs,Aboriginal Affairs +535381,Aboriginal Affairs,Aboriginal Affairs +535327,Aboriginal Affairs,Aboriginal Affairs +535311,Aboriginal Affairs,Aboriginal Affairs +532092,Aboriginal Affairs,Aboriginal Affairs +525832,Aboriginal Affairs,Aboriginal Affairs +525826,Aboriginal Affairs,Aboriginal Affairs +525823,Aboriginal Affairs,Aboriginal Affairs +525819,Aboriginal Affairs,Aboriginal Affairs +522185,Aboriginal Affairs,Aboriginal Affairs +483160,Arts and Culture,Arts and Culture +483559,Science and Technology,Science and Technology +483118,Science and Technology,Science and Technology +540689,Science and Technology,Science and Technology +540688,Science and Technology,Science and Technology +516390,Science and Technology,Science and Technology +516388,Science and Technology,Science and Technology +509497,Science and Technology,Science and Technology +509496,Science and Technology,Science and Technology +509495,Science and Technology,Science and Technology +500059,Science and Technology,Science and Technology +500057,Science and Technology,Science and Technology +496564,Science and Technology,Science and Technology +494345,Science and Technology,Science and Technology +492049,Science and Technology,Science and Technology +491874,Science and Technology,Science and Technology +491419,Science and Technology,Science and Technology +491084,Science and Technology,Science and Technology +491070,Science and Technology,Science and Technology +485949,Science and Technology,Science and Technology +485134,Aboriginal Affairs,Aboriginal Affairs +482276,Aboriginal Affairs,Aboriginal Affairs +487530,Aboriginal Affairs,Aboriginal Affairs +522712,Arts and Culture,Arts and Culture +487657,Arts and Culture,Arts and Culture +485459,Science and Technology,Science and Technology +485456,Science and Technology,Science and Technology +519080,Science and Technology,Science and Technology +519079,Science and Technology,Science and Technology +515695,Science and Technology,Science and Technology +515694,Science and Technology,Science and Technology +501249,Science and Technology,Science and Technology +501246,Science and Technology,Science and Technology +501241,Science and Technology,Science and Technology +494164,Science and Technology,Science and Technology +482955,Science and Technology,Science and Technology +486103,Aboriginal Affairs,Aboriginal Affairs +485615,Aboriginal Affairs,Aboriginal Affairs +494019,Aboriginal Affairs,Aboriginal Affairs +494017,Aboriginal Affairs,Aboriginal Affairs +492419,Aboriginal Affairs,Aboriginal Affairs +492417,Aboriginal Affairs,Aboriginal Affairs +489008,Aboriginal Affairs,Aboriginal Affairs +489007,Aboriginal Affairs,Aboriginal Affairs +488558,Aboriginal Affairs,Aboriginal Affairs +488094,Aboriginal Affairs,Aboriginal Affairs +485615,Arts and Culture,Arts and Culture +494019,Arts and Culture,Arts and Culture +492419,Arts and Culture,Arts and Culture +492417,Arts and Culture,Arts and Culture +489008,Arts and Culture,Arts and Culture +489007,Arts and Culture,Arts and Culture +488558,Arts and Culture,Arts and Culture +488094,Arts and Culture,Arts and Culture +486108,Arts and Culture,Arts and Culture +488255,Science and Technology,Science and Technology +485326,Science and Technology,Science and Technology +508892,Science and Technology,Science and Technology +505192,Science and Technology,Science and Technology +499553,Science and Technology,Science and Technology +499506,Science and Technology,Science and Technology +495580,Science and Technology,Science and Technology +493531,Science and Technology,Science and Technology +493529,Science and Technology,Science and Technology +488258,Science and Technology,Science and Technology +488257,Science and Technology,Science and Technology +493985,Aboriginal Affairs,Aboriginal Affairs +542426,Aboriginal Affairs,Aboriginal Affairs +516534,Aboriginal Affairs,Aboriginal Affairs +506119,Aboriginal Affairs,Aboriginal Affairs +503427,Aboriginal Affairs,Aboriginal Affairs +503274,Aboriginal Affairs,Aboriginal Affairs +496883,Aboriginal Affairs,Aboriginal Affairs +494158,Aboriginal Affairs,Aboriginal Affairs +488609,Telecommunications,Telecommunications +483051,Telecommunications,Telecommunications +506492,Telecommunications,Telecommunications +503557,Telecommunications,Telecommunications +500560,Telecommunications,Telecommunications +498392,Telecommunications,Telecommunications +496737,Telecommunications,Telecommunications +493937,Telecommunications,Telecommunications +492422,Telecommunications,Telecommunications +491094,Telecommunications,Telecommunications +506723,Science and Technology,Science and Technology +503636,Science and Technology,Science and Technology +497209,Science and Technology,Science and Technology +497206,Science and Technology,Science and Technology +489385,Science and Technology,Science and Technology +489383,Science and Technology,Science and Technology +489382,Science and Technology,Science and Technology +516865,Science and Technology,Science and Technology +510112,Science and Technology,Science and Technology +495780,Aboriginal Affairs,Aboriginal Affairs +495776,Aboriginal Affairs,Aboriginal Affairs +490870,Aboriginal Affairs,Aboriginal Affairs +490869,Aboriginal Affairs,Aboriginal Affairs +490865,Aboriginal Affairs,Aboriginal Affairs +485849,Aboriginal Affairs,Aboriginal Affairs +485846,Aboriginal Affairs,Aboriginal Affairs +485844,Aboriginal Affairs,Aboriginal Affairs +485843,Aboriginal Affairs,Aboriginal Affairs +532251,Arts and Culture,Arts and Culture +528971,Arts and Culture,Arts and Culture +528970,Arts and Culture,Arts and Culture +528966,Arts and Culture,Arts and Culture +528963,Arts and Culture,Arts and Culture +525900,Arts and Culture,Arts and Culture +525899,Arts and Culture,Arts and Culture +521887,Arts and Culture,Arts and Culture +521687,Arts and Culture,Arts and Culture +521684,Arts and Culture,Arts and Culture +521683,Arts and Culture,Arts and Culture +521681,Arts and Culture,Arts and Culture +519453,Arts and Culture,Arts and Culture +519451,Arts and Culture,Arts and Culture +517228,Arts and Culture,Arts and Culture +517223,Arts and Culture,Arts and Culture +512628,Arts and Culture,Arts and Culture +512384,Arts and Culture,Arts and Culture +512262,Arts and Culture,Arts and Culture +512261,Arts and Culture,Arts and Culture +512260,Arts and Culture,Arts and Culture +511491,Arts and Culture,Arts and Culture +507348,Arts and Culture,Arts and Culture +504155,Arts and Culture,Arts and Culture +501543,Arts and Culture,Arts and Culture +501541,Arts and Culture,Arts and Culture +497931,Arts and Culture,Arts and Culture +497930,Arts and Culture,Arts and Culture +495781,Arts and Culture,Arts and Culture +495780,Arts and Culture,Arts and Culture +495779,Arts and Culture,Arts and Culture +495778,Arts and Culture,Arts and Culture +495776,Arts and Culture,Arts and Culture +492651,Arts and Culture,Arts and Culture +490870,Arts and Culture,Arts and Culture +490869,Arts and Culture,Arts and Culture +490868,Arts and Culture,Arts and Culture +490865,Arts and Culture,Arts and Culture +486410,Arts and Culture,Arts and Culture +486409,Arts and Culture,Arts and Culture +486407,Arts and Culture,Arts and Culture +486406,Arts and Culture,Arts and Culture +485849,Arts and Culture,Arts and Culture +485848,Arts and Culture,Arts and Culture +485846,Arts and Culture,Arts and Culture +485844,Arts and Culture,Arts and Culture +485843,Arts and Culture,Arts and Culture +485841,Arts and Culture,Arts and Culture +485840,Arts and Culture,Arts and Culture +485839,Arts and Culture,Arts and Culture +542611,Arts and Culture,Arts and Culture +542610,Arts and Culture,Arts and Culture +542609,Arts and Culture,Arts and Culture +542608,Arts and Culture,Arts and Culture +541814,Arts and Culture,Arts and Culture +541813,Arts and Culture,Arts and Culture +538003,Arts and Culture,Arts and Culture +537366,Arts and Culture,Arts and Culture +537363,Arts and Culture,Arts and Culture +490868,Science and Technology,Science and Technology +490865,Science and Technology,Science and Technology +517228,Science and Technology,Science and Technology +517223,Science and Technology,Science and Technology +501543,Science and Technology,Science and Technology +501541,Science and Technology,Science and Technology +495780,Science and Technology,Science and Technology +495779,Science and Technology,Science and Technology +495778,Science and Technology,Science and Technology +495776,Science and Technology,Science and Technology +490870,Science and Technology,Science and Technology +483873,Science and Technology,Science and Technology +483579,Aboriginal Affairs,Aboriginal Affairs +503514,Aboriginal Affairs,Aboriginal Affairs +497027,Aboriginal Affairs,Aboriginal Affairs +496594,Aboriginal Affairs,Aboriginal Affairs +488521,Aboriginal Affairs,Aboriginal Affairs +487224,Aboriginal Affairs,Aboriginal Affairs +486001,Aboriginal Affairs,Aboriginal Affairs +485999,Aboriginal Affairs,Aboriginal Affairs +485998,Aboriginal Affairs,Aboriginal Affairs +488872,Broadcasting,Broadcasting +488870,Broadcasting,Broadcasting +524197,Broadcasting,Broadcasting +520444,Broadcasting,Broadcasting +518495,Broadcasting,Broadcasting +517298,Broadcasting,Broadcasting +507068,Broadcasting,Broadcasting +506923,Broadcasting,Broadcasting +501486,Broadcasting,Broadcasting +501378,Broadcasting,Broadcasting +501376,Broadcasting,Broadcasting +500387,Broadcasting,Broadcasting +500386,Broadcasting,Broadcasting +494323,Broadcasting,Broadcasting +490995,Science and Technology,Science and Technology +490328,Science and Technology,Science and Technology +485666,Science and Technology,Science and Technology +483215,Science and Technology,Science and Technology +542144,Science and Technology,Science and Technology +540325,Science and Technology,Science and Technology +540320,Science and Technology,Science and Technology +532996,Science and Technology,Science and Technology +523883,Science and Technology,Science and Technology +517355,Science and Technology,Science and Technology +516062,Science and Technology,Science and Technology +514985,Science and Technology,Science and Technology +511628,Science and Technology,Science and Technology +510027,Science and Technology,Science and Technology +509474,Science and Technology,Science and Technology +506163,Science and Technology,Science and Technology +500021,Science and Technology,Science and Technology +497936,Science and Technology,Science and Technology +497589,Science and Technology,Science and Technology +496765,Science and Technology,Science and Technology +496461,Science and Technology,Science and Technology +494013,Science and Technology,Science and Technology +494012,Science and Technology,Science and Technology +493906,Science and Technology,Science and Technology +500036,Aboriginal Affairs,Aboriginal Affairs +489324,Aboriginal Affairs,Aboriginal Affairs +486101,Aboriginal Affairs,Aboriginal Affairs +489282,Aboriginal Affairs,Aboriginal Affairs +489281,Aboriginal Affairs,Aboriginal Affairs +506683,Aboriginal Affairs,Aboriginal Affairs +506682,Aboriginal Affairs,Aboriginal Affairs +506680,Aboriginal Affairs,Aboriginal Affairs +497247,Aboriginal Affairs,Aboriginal Affairs +497246,Aboriginal Affairs,Aboriginal Affairs +497245,Aboriginal Affairs,Aboriginal Affairs +497236,Aboriginal Affairs,Aboriginal Affairs +494755,Aboriginal Affairs,Aboriginal Affairs +489284,Aboriginal Affairs,Aboriginal Affairs +486087,Science and Technology,Science and Technology +485455,Science and Technology,Science and Technology +519152,Aboriginal Affairs,Aboriginal Affairs +494333,Science and Technology,Science and Technology +542892,Science and Technology,Science and Technology +542890,Science and Technology,Science and Technology +542889,Science and Technology,Science and Technology +542888,Science and Technology,Science and Technology +532153,Science and Technology,Science and Technology +532143,Science and Technology,Science and Technology +526778,Science and Technology,Science and Technology +526777,Science and Technology,Science and Technology +526776,Science and Technology,Science and Technology +523677,Science and Technology,Science and Technology +523675,Science and Technology,Science and Technology +516499,Science and Technology,Science and Technology +514864,Science and Technology,Science and Technology +513766,Science and Technology,Science and Technology +507145,Science and Technology,Science and Technology +488446,Telecommunications,Telecommunications +485965,Telecommunications,Telecommunications +496343,Telecommunications,Telecommunications +492036,Telecommunications,Telecommunications +487162,Broadcasting,Broadcasting +485965,Broadcasting,Broadcasting +506363,Broadcasting,Broadcasting +506339,Broadcasting,Broadcasting +500890,Broadcasting,Broadcasting +497299,Broadcasting,Broadcasting +496343,Broadcasting,Broadcasting +494359,Broadcasting,Broadcasting +492036,Broadcasting,Broadcasting +489209,Broadcasting,Broadcasting +488446,Broadcasting,Broadcasting +487169,Broadcasting,Broadcasting +486080,Aboriginal Affairs,Aboriginal Affairs +512885,Science and Technology,Science and Technology +487371,Science and Technology,Science and Technology +537685,Science and Technology,Science and Technology +533701,Science and Technology,Science and Technology +533700,Science and Technology,Science and Technology +533676,Science and Technology,Science and Technology +533674,Science and Technology,Science and Technology +531417,Science and Technology,Science and Technology +531416,Science and Technology,Science and Technology +526835,Science and Technology,Science and Technology +526451,Science and Technology,Science and Technology +522488,Science and Technology,Science and Technology +521003,Science and Technology,Science and Technology +485783,Aboriginal Affairs,Aboriginal Affairs +483672,Aboriginal Affairs,Aboriginal Affairs +542144,Aboriginal Affairs,Aboriginal Affairs +540325,Aboriginal Affairs,Aboriginal Affairs +540320,Aboriginal Affairs,Aboriginal Affairs +497936,Aboriginal Affairs,Aboriginal Affairs +497589,Aboriginal Affairs,Aboriginal Affairs +490995,Aboriginal Affairs,Aboriginal Affairs +485401,Arts and Culture,Arts and Culture +485397,Arts and Culture,Arts and Culture +538445,Aboriginal Affairs,Aboriginal Affairs +522953,Aboriginal Affairs,Aboriginal Affairs +540161,Aboriginal Affairs,Aboriginal Affairs +540155,Aboriginal Affairs,Aboriginal Affairs +540144,Aboriginal Affairs,Aboriginal Affairs +493290,Science and Technology,Science and Technology +492447,Science and Technology,Science and Technology +484591,Science and Technology,Science and Technology +487267,Telecommunications,Telecommunications +487265,Telecommunications,Telecommunications +512664,Telecommunications,Telecommunications +512663,Telecommunications,Telecommunications +512662,Telecommunications,Telecommunications +512661,Telecommunications,Telecommunications +501983,Telecommunications,Telecommunications +499610,Telecommunications,Telecommunications +499454,Telecommunications,Telecommunications +491248,Telecommunications,Telecommunications +488207,Science and Technology,Science and Technology +488200,Science and Technology,Science and Technology +505435,Science and Technology,Science and Technology +500283,Science and Technology,Science and Technology +500088,Science and Technology,Science and Technology +496742,Science and Technology,Science and Technology +495800,Science and Technology,Science and Technology +488447,Science and Technology,Science and Technology +499726,Aboriginal Affairs,Aboriginal Affairs +499695,Telecommunications,Telecommunications +487937,Telecommunications,Telecommunications +505845,Telecommunications,Telecommunications +499726,Telecommunications,Telecommunications +503435,Aboriginal Affairs,Aboriginal Affairs +527362,Arts and Culture,Arts and Culture +525422,Arts and Culture,Arts and Culture +504405,Arts and Culture,Arts and Culture +495213,Arts and Culture,Arts and Culture +493143,Arts and Culture,Arts and Culture +490257,Arts and Culture,Arts and Culture +516928,Broadcasting,Broadcasting +489401,Broadcasting,Broadcasting +537212,Broadcasting,Broadcasting +537211,Broadcasting,Broadcasting +527362,Broadcasting,Broadcasting +493991,Aboriginal Affairs,Aboriginal Affairs +492020,Aboriginal Affairs,Aboriginal Affairs +503717,Aboriginal Affairs,Aboriginal Affairs +500716,Aboriginal Affairs,Aboriginal Affairs +497348,Aboriginal Affairs,Aboriginal Affairs +494298,Aboriginal Affairs,Aboriginal Affairs +487651,Arts and Culture,Arts and Culture +494237,Aboriginal Affairs,Aboriginal Affairs +506308,Aboriginal Affairs,Aboriginal Affairs +508201,Arts and Culture,Arts and Culture +508198,Arts and Culture,Arts and Culture +505275,Arts and Culture,Arts and Culture +505271,Arts and Culture,Arts and Culture +513772,Arts and Culture,Arts and Culture +508204,Arts and Culture,Arts and Culture +485733,Science and Technology,Science and Technology +520508,Telecommunications,Telecommunications +506039,Telecommunications,Telecommunications +485900,Arts and Culture,Arts and Culture +521104,Science and Technology,Science and Technology +512043,Science and Technology,Science and Technology +500259,Science and Technology,Science and Technology +496593,Science and Technology,Science and Technology +491933,Science and Technology,Science and Technology +489139,Science and Technology,Science and Technology +523587,Science and Technology,Science and Technology +523367,Science and Technology,Science and Technology +485857,Arts and Culture,Arts and Culture +485855,Arts and Culture,Arts and Culture +540820,Arts and Culture,Arts and Culture +539107,Arts and Culture,Arts and Culture +539106,Arts and Culture,Arts and Culture +536623,Arts and Culture,Arts and Culture +530332,Arts and Culture,Arts and Culture +527310,Arts and Culture,Arts and Culture +527309,Arts and Culture,Arts and Culture +527308,Arts and Culture,Arts and Culture +523904,Arts and Culture,Arts and Culture +523903,Arts and Culture,Arts and Culture +523902,Arts and Culture,Arts and Culture +518724,Arts and Culture,Arts and Culture +509740,Arts and Culture,Arts and Culture +497116,Arts and Culture,Arts and Culture +494215,Arts and Culture,Arts and Culture +489084,Arts and Culture,Arts and Culture +494978,Science and Technology,Science and Technology +485924,Science and Technology,Science and Technology +500489,Science and Technology,Science and Technology +500488,Science and Technology,Science and Technology +499899,Science and Technology,Science and Technology +499874,Science and Technology,Science and Technology +499873,Science and Technology,Science and Technology +499872,Science and Technology,Science and Technology +499865,Science and Technology,Science and Technology +498669,Science and Technology,Science and Technology +489812,Aboriginal Affairs,Aboriginal Affairs +530385,Aboriginal Affairs,Aboriginal Affairs +520255,Aboriginal Affairs,Aboriginal Affairs +520254,Aboriginal Affairs,Aboriginal Affairs +517319,Aboriginal Affairs,Aboriginal Affairs +516163,Aboriginal Affairs,Aboriginal Affairs +513507,Aboriginal Affairs,Aboriginal Affairs +513506,Aboriginal Affairs,Aboriginal Affairs +513444,Aboriginal Affairs,Aboriginal Affairs +513443,Aboriginal Affairs,Aboriginal Affairs +512020,Aboriginal Affairs,Aboriginal Affairs +512019,Aboriginal Affairs,Aboriginal Affairs +511640,Aboriginal Affairs,Aboriginal Affairs +511639,Aboriginal Affairs,Aboriginal Affairs +509429,Aboriginal Affairs,Aboriginal Affairs +494589,Aboriginal Affairs,Aboriginal Affairs +488506,Arts and Culture,Arts and Culture +486646,Arts and Culture,Arts and Culture +518586,Arts and Culture,Arts and Culture +516830,Arts and Culture,Arts and Culture +507114,Arts and Culture,Arts and Culture +507113,Arts and Culture,Arts and Culture +506186,Arts and Culture,Arts and Culture +502323,Arts and Culture,Arts and Culture +501026,Arts and Culture,Arts and Culture +496469,Arts and Culture,Arts and Culture +495277,Arts and Culture,Arts and Culture +494526,Arts and Culture,Arts and Culture +493847,Arts and Culture,Arts and Culture +492507,Arts and Culture,Arts and Culture +488506,Broadcasting,Broadcasting +486646,Broadcasting,Broadcasting +518586,Broadcasting,Broadcasting +516830,Broadcasting,Broadcasting +507114,Broadcasting,Broadcasting +507113,Broadcasting,Broadcasting +506186,Broadcasting,Broadcasting +502323,Broadcasting,Broadcasting +501026,Broadcasting,Broadcasting +496469,Broadcasting,Broadcasting +495277,Broadcasting,Broadcasting +494526,Broadcasting,Broadcasting +493847,Broadcasting,Broadcasting +492507,Broadcasting,Broadcasting +517115,Broadcasting,Broadcasting +517113,Broadcasting,Broadcasting +491477,Broadcasting,Broadcasting +544539,Broadcasting,Broadcasting +542178,Broadcasting,Broadcasting +542177,Broadcasting,Broadcasting +494722,Aboriginal Affairs,Aboriginal Affairs +494722,Arts and Culture,Arts and Culture +488936,Arts and Culture,Arts and Culture +542591,Arts and Culture,Arts and Culture +542590,Arts and Culture,Arts and Culture +542589,Arts and Culture,Arts and Culture +541746,Arts and Culture,Arts and Culture +537361,Arts and Culture,Arts and Culture +530999,Arts and Culture,Arts and Culture +528933,Arts and Culture,Arts and Culture +528931,Arts and Culture,Arts and Culture +525490,Arts and Culture,Arts and Culture +521879,Arts and Culture,Arts and Culture +521878,Arts and Culture,Arts and Culture +521877,Arts and Culture,Arts and Culture +519744,Arts and Culture,Arts and Culture +519741,Arts and Culture,Arts and Culture +516844,Arts and Culture,Arts and Culture +512099,Arts and Culture,Arts and Culture +512098,Arts and Culture,Arts and Culture +512093,Arts and Culture,Arts and Culture +512091,Arts and Culture,Arts and Culture +507388,Arts and Culture,Arts and Culture +500953,Arts and Culture,Arts and Culture +494725,Science and Technology,Science and Technology +494722,Science and Technology,Science and Technology +488936,Science and Technology,Science and Technology +516844,Science and Technology,Science and Technology +511574,Aboriginal Affairs,Aboriginal Affairs +505971,Aboriginal Affairs,Aboriginal Affairs +502466,Aboriginal Affairs,Aboriginal Affairs +502466,Science and Technology,Science and Technology +499771,Science and Technology,Science and Technology +511574,Science and Technology,Science and Technology +495955,Arts and Culture,Arts and Culture +493662,Arts and Culture,Arts and Culture +495969,Arts and Culture,Arts and Culture +493668,Arts and Culture,Arts and Culture +495974,Arts and Culture,Arts and Culture +495962,Arts and Culture,Arts and Culture +493666,Arts and Culture,Arts and Culture +495958,Arts and Culture,Arts and Culture +493664,Arts and Culture,Arts and Culture +495964,Arts and Culture,Arts and Culture +493667,Arts and Culture,Arts and Culture +495967,Arts and Culture,Arts and Culture +495966,Arts and Culture,Arts and Culture +495950,Arts and Culture,Arts and Culture +493663,Arts and Culture,Arts and Culture +495954,Arts and Culture,Arts and Culture +495953,Arts and Culture,Arts and Culture +502708,Arts and Culture,Arts and Culture +493671,Arts and Culture,Arts and Culture +541994,Arts and Culture,Arts and Culture +523155,Arts and Culture,Arts and Culture +518244,Arts and Culture,Arts and Culture +511114,Arts and Culture,Arts and Culture +511113,Arts and Culture,Arts and Culture +511112,Arts and Culture,Arts and Culture +511108,Arts and Culture,Arts and Culture +508679,Arts and Culture,Arts and Culture +505733,Arts and Culture,Arts and Culture +493414,Arts and Culture,Arts and Culture +511908,Arts and Culture,Arts and Culture +489152,Arts and Culture,Arts and Culture +494986,Science and Technology,Science and Technology +494984,Science and Technology,Science and Technology +536354,Science and Technology,Science and Technology +533054,Science and Technology,Science and Technology +533053,Science and Technology,Science and Technology +528744,Science and Technology,Science and Technology +517281,Science and Technology,Science and Technology +516519,Science and Technology,Science and Technology +516478,Science and Technology,Science and Technology +500105,Science and Technology,Science and Technology +499314,Science and Technology,Science and Technology +497541,Science and Technology,Science and Technology +494990,Science and Technology,Science and Technology +492451,Science and Technology,Science and Technology +492348,Science and Technology,Science and Technology +496857,Science and Technology,Science and Technology +499829,Science and Technology,Science and Technology +494785,Science and Technology,Science and Technology +507207,Science and Technology,Science and Technology +506795,Science and Technology,Science and Technology +506272,Science and Technology,Science and Technology +506271,Science and Technology,Science and Technology +506227,Science and Technology,Science and Technology +506826,Broadcasting,Broadcasting +506825,Broadcasting,Broadcasting +504016,Broadcasting,Broadcasting +504014,Broadcasting,Broadcasting +500379,Broadcasting,Broadcasting +500378,Broadcasting,Broadcasting +500377,Broadcasting,Broadcasting +497828,Broadcasting,Broadcasting +497825,Broadcasting,Broadcasting +497823,Broadcasting,Broadcasting +497649,Broadcasting,Broadcasting +497190,Broadcasting,Broadcasting +497189,Broadcasting,Broadcasting +497188,Broadcasting,Broadcasting +495439,Broadcasting,Broadcasting +495437,Broadcasting,Broadcasting +495435,Broadcasting,Broadcasting +495433,Broadcasting,Broadcasting +492162,Broadcasting,Broadcasting +492161,Broadcasting,Broadcasting +492159,Broadcasting,Broadcasting +490659,Broadcasting,Broadcasting +490656,Broadcasting,Broadcasting +489702,Broadcasting,Broadcasting +489089,Broadcasting,Broadcasting +488794,Broadcasting,Broadcasting +543804,Broadcasting,Broadcasting +543798,Broadcasting,Broadcasting +543797,Broadcasting,Broadcasting +543795,Broadcasting,Broadcasting +543793,Broadcasting,Broadcasting +543792,Broadcasting,Broadcasting +543791,Broadcasting,Broadcasting +542093,Broadcasting,Broadcasting +542091,Broadcasting,Broadcasting +542090,Broadcasting,Broadcasting +539961,Broadcasting,Broadcasting +539959,Broadcasting,Broadcasting +538728,Broadcasting,Broadcasting +535928,Broadcasting,Broadcasting +535927,Broadcasting,Broadcasting +535923,Broadcasting,Broadcasting +532682,Broadcasting,Broadcasting +532681,Broadcasting,Broadcasting +532680,Broadcasting,Broadcasting +532679,Broadcasting,Broadcasting +527446,Broadcasting,Broadcasting +527445,Broadcasting,Broadcasting +527444,Broadcasting,Broadcasting +527442,Broadcasting,Broadcasting +527441,Broadcasting,Broadcasting +524823,Broadcasting,Broadcasting +524822,Broadcasting,Broadcasting +524821,Broadcasting,Broadcasting +524820,Broadcasting,Broadcasting +523889,Broadcasting,Broadcasting +523888,Broadcasting,Broadcasting +523887,Broadcasting,Broadcasting +523886,Broadcasting,Broadcasting +523885,Broadcasting,Broadcasting +521794,Broadcasting,Broadcasting +521793,Broadcasting,Broadcasting +521792,Broadcasting,Broadcasting +521791,Broadcasting,Broadcasting +521790,Broadcasting,Broadcasting +519483,Broadcasting,Broadcasting +518439,Broadcasting,Broadcasting +518438,Broadcasting,Broadcasting +518432,Broadcasting,Broadcasting +518430,Broadcasting,Broadcasting +518428,Broadcasting,Broadcasting +518426,Broadcasting,Broadcasting +518423,Broadcasting,Broadcasting +518421,Broadcasting,Broadcasting +516171,Broadcasting,Broadcasting +516041,Broadcasting,Broadcasting +516039,Broadcasting,Broadcasting +516037,Broadcasting,Broadcasting +516036,Broadcasting,Broadcasting +516035,Broadcasting,Broadcasting +516034,Broadcasting,Broadcasting +514413,Broadcasting,Broadcasting +513660,Broadcasting,Broadcasting +510947,Broadcasting,Broadcasting +510939,Broadcasting,Broadcasting +510925,Broadcasting,Broadcasting +510923,Broadcasting,Broadcasting +510921,Broadcasting,Broadcasting +510919,Broadcasting,Broadcasting +510917,Broadcasting,Broadcasting +507450,Broadcasting,Broadcasting +507101,Broadcasting,Broadcasting +506830,Broadcasting,Broadcasting +506829,Broadcasting,Broadcasting +506828,Broadcasting,Broadcasting +494088,Aboriginal Affairs,Aboriginal Affairs +491471,Aboriginal Affairs,Aboriginal Affairs +528183,Aboriginal Affairs,Aboriginal Affairs +525569,Aboriginal Affairs,Aboriginal Affairs +522924,Aboriginal Affairs,Aboriginal Affairs +517447,Aboriginal Affairs,Aboriginal Affairs +517442,Aboriginal Affairs,Aboriginal Affairs +517440,Aboriginal Affairs,Aboriginal Affairs +510286,Aboriginal Affairs,Aboriginal Affairs +510281,Aboriginal Affairs,Aboriginal Affairs +510277,Aboriginal Affairs,Aboriginal Affairs +508108,Aboriginal Affairs,Aboriginal Affairs +508094,Aboriginal Affairs,Aboriginal Affairs +508090,Aboriginal Affairs,Aboriginal Affairs +499536,Aboriginal Affairs,Aboriginal Affairs +494547,Aboriginal Affairs,Aboriginal Affairs +489408,Science and Technology,Science and Technology +488647,Science and Technology,Science and Technology +496272,Science and Technology,Science and Technology +492113,Science and Technology,Science and Technology +492112,Science and Technology,Science and Technology +492111,Science and Technology,Science and Technology +492109,Science and Technology,Science and Technology +492028,Science and Technology,Science and Technology +488723,Aboriginal Affairs,Aboriginal Affairs +488606,Aboriginal Affairs,Aboriginal Affairs +506090,Aboriginal Affairs,Aboriginal Affairs +499957,Aboriginal Affairs,Aboriginal Affairs +497699,Aboriginal Affairs,Aboriginal Affairs +494255,Aboriginal Affairs,Aboriginal Affairs +493970,Aboriginal Affairs,Aboriginal Affairs +489873,Aboriginal Affairs,Aboriginal Affairs +491857,Science and Technology,Science and Technology +491856,Science and Technology,Science and Technology +496572,Science and Technology,Science and Technology +493842,Science and Technology,Science and Technology +493841,Science and Technology,Science and Technology +494461,Aboriginal Affairs,Aboriginal Affairs +493650,Aboriginal Affairs,Aboriginal Affairs +491863,Telecommunications,Telecommunications +489329,Telecommunications,Telecommunications +506012,Telecommunications,Telecommunications +503076,Telecommunications,Telecommunications +501107,Telecommunications,Telecommunications +500461,Telecommunications,Telecommunications +496364,Telecommunications,Telecommunications +491101,Aboriginal Affairs,Aboriginal Affairs +491093,Aboriginal Affairs,Aboriginal Affairs +524282,Aboriginal Affairs,Aboriginal Affairs +499949,Aboriginal Affairs,Aboriginal Affairs +499947,Aboriginal Affairs,Aboriginal Affairs +499946,Aboriginal Affairs,Aboriginal Affairs +499945,Aboriginal Affairs,Aboriginal Affairs +499944,Aboriginal Affairs,Aboriginal Affairs +489977,Broadcasting,Broadcasting +514909,Broadcasting,Broadcasting +494173,Broadcasting,Broadcasting +492964,Broadcasting,Broadcasting +492099,Broadcasting,Broadcasting +489989,Broadcasting,Broadcasting +489985,Broadcasting,Broadcasting +489980,Broadcasting,Broadcasting +509546,Aboriginal Affairs,Aboriginal Affairs +494241,Aboriginal Affairs,Aboriginal Affairs +501028,Telecommunications,Telecommunications +489345,Broadcasting,Broadcasting +489343,Broadcasting,Broadcasting +495181,Broadcasting,Broadcasting +500670,Arts and Culture,Arts and Culture +497236,Arts and Culture,Arts and Culture +497246,Arts and Culture,Arts and Culture +489282,Arts and Culture,Arts and Culture +506682,Arts and Culture,Arts and Culture +506683,Arts and Culture,Arts and Culture +497245,Arts and Culture,Arts and Culture +494755,Arts and Culture,Arts and Culture +489284,Arts and Culture,Arts and Culture +506680,Arts and Culture,Arts and Culture +504032,Arts and Culture,Arts and Culture +504030,Arts and Culture,Arts and Culture +504028,Arts and Culture,Arts and Culture +510295,Broadcasting,Broadcasting +504404,Broadcasting,Broadcasting +525420,Broadcasting,Broadcasting +499055,Arts and Culture,Arts and Culture +499050,Broadcasting,Broadcasting +493329,Broadcasting,Broadcasting +523014,Broadcasting,Broadcasting +502127,Broadcasting,Broadcasting +498856,Arts and Culture,Arts and Culture +498854,Arts and Culture,Arts and Culture +502523,Arts and Culture,Arts and Culture +491025,Arts and Culture,Arts and Culture +544109,Arts and Culture,Arts and Culture +540999,Arts and Culture,Arts and Culture +540997,Arts and Culture,Arts and Culture +540995,Arts and Culture,Arts and Culture +537320,Arts and Culture,Arts and Culture +532113,Arts and Culture,Arts and Culture +531012,Arts and Culture,Arts and Culture +527847,Arts and Culture,Arts and Culture +527846,Arts and Culture,Arts and Culture +522069,Arts and Culture,Arts and Culture +522068,Arts and Culture,Arts and Culture +520335,Arts and Culture,Arts and Culture +520333,Arts and Culture,Arts and Culture +516983,Arts and Culture,Arts and Culture +516980,Arts and Culture,Arts and Culture +516978,Arts and Culture,Arts and Culture +514090,Arts and Culture,Arts and Culture +512672,Arts and Culture,Arts and Culture +512671,Arts and Culture,Arts and Culture +512670,Arts and Culture,Arts and Culture +511179,Arts and Culture,Arts and Culture +511177,Arts and Culture,Arts and Culture +508941,Arts and Culture,Arts and Culture +508940,Arts and Culture,Arts and Culture +508935,Arts and Culture,Arts and Culture +508933,Arts and Culture,Arts and Culture +505139,Arts and Culture,Arts and Culture +505138,Arts and Culture,Arts and Culture +505136,Arts and Culture,Arts and Culture +505131,Arts and Culture,Arts and Culture +505130,Arts and Culture,Arts and Culture +508940,Broadcasting,Broadcasting +508935,Broadcasting,Broadcasting +508933,Broadcasting,Broadcasting +505139,Broadcasting,Broadcasting +505138,Broadcasting,Broadcasting +505136,Broadcasting,Broadcasting +505131,Broadcasting,Broadcasting +505130,Broadcasting,Broadcasting +505127,Broadcasting,Broadcasting +502523,Broadcasting,Broadcasting +496023,Broadcasting,Broadcasting +496022,Broadcasting,Broadcasting +496021,Broadcasting,Broadcasting +491025,Broadcasting,Broadcasting +544109,Broadcasting,Broadcasting +540999,Broadcasting,Broadcasting +540997,Broadcasting,Broadcasting +540995,Broadcasting,Broadcasting +537320,Broadcasting,Broadcasting +532113,Broadcasting,Broadcasting +531012,Broadcasting,Broadcasting +527847,Broadcasting,Broadcasting +527846,Broadcasting,Broadcasting +522069,Broadcasting,Broadcasting +522068,Broadcasting,Broadcasting +520335,Broadcasting,Broadcasting +520333,Broadcasting,Broadcasting +516983,Broadcasting,Broadcasting +516980,Broadcasting,Broadcasting +516978,Broadcasting,Broadcasting +514090,Broadcasting,Broadcasting +512672,Broadcasting,Broadcasting +512671,Broadcasting,Broadcasting +512670,Broadcasting,Broadcasting +511179,Broadcasting,Broadcasting +511177,Broadcasting,Broadcasting +491908,Arts and Culture,Arts et culture +491907,Arts and Culture,Arts et culture +522821,Arts and Culture,Arts et culture +522820,Arts and Culture,Arts et culture +522818,Arts and Culture,Arts et culture +522817,Arts and Culture,Arts et culture +514572,Arts and Culture,Arts et culture +512602,Arts and Culture,Arts et culture +510757,Arts and Culture,Arts et culture +510752,Arts and Culture,Arts et culture +510748,Arts and Culture,Arts et culture +507999,Arts and Culture,Arts et culture +507994,Arts and Culture,Arts et culture +501741,Arts and Culture,Arts et culture +501738,Arts and Culture,Arts et culture +501737,Arts and Culture,Arts et culture +499159,Arts and Culture,Arts et culture +498999,Arts and Culture,Arts et culture +498998,Arts and Culture,Arts et culture +498992,Arts and Culture,Arts et culture +498988,Arts and Culture,Arts et culture +498985,Arts and Culture,Arts et culture +498981,Arts and Culture,Arts et culture +495342,Arts and Culture,Arts et culture +495341,Arts and Culture,Arts et culture +493413,Arts and Culture,Arts et culture +493323,Arts and Culture,Arts et culture +493322,Arts and Culture,Arts et culture +493321,Arts and Culture,Arts et culture +535913,Broadcasting,Broadcasting +533746,Broadcasting,Broadcasting +533424,Broadcasting,Broadcasting +533157,Broadcasting,Broadcasting +532892,Broadcasting,Broadcasting +532577,Broadcasting,Broadcasting +532458,Broadcasting,Broadcasting +531311,Broadcasting,Broadcasting +530930,Broadcasting,Broadcasting +529900,Broadcasting,Broadcasting +528572,Broadcasting,Broadcasting +528542,Broadcasting,Broadcasting +521686,Broadcasting,Broadcasting +521560,Broadcasting,Broadcasting +520859,Broadcasting,Broadcasting +520727,Broadcasting,Broadcasting +520643,Broadcasting,Broadcasting +520436,Broadcasting,Broadcasting +520415,Broadcasting,Broadcasting +520357,Broadcasting,Broadcasting +520260,Broadcasting,Broadcasting +516864,Broadcasting,Broadcasting +516236,Broadcasting,Broadcasting +514995,Broadcasting,Broadcasting +514861,Broadcasting,Broadcasting +511800,Broadcasting,Broadcasting +509375,Broadcasting,Broadcasting +509299,Broadcasting,Broadcasting +503929,Broadcasting,Broadcasting +503167,Broadcasting,Broadcasting +503166,Broadcasting,Broadcasting +503085,Broadcasting,Broadcasting +501688,Broadcasting,Broadcasting +545210,Broadcasting,Broadcasting +545119,Broadcasting,Broadcasting +541502,Broadcasting,Broadcasting +540705,Broadcasting,Broadcasting +491375,Aboriginal Affairs,Aboriginal Affairs +511366,Science and Technology,Science and Technology +491138,Science and Technology,Science and Technology +517927,Science and Technology,Science and Technology +491472,Arts and Culture,Arts and Culture +491470,Arts and Culture,Arts and Culture +513250,Arts and Culture,Arts and Culture +508570,Arts and Culture,Arts and Culture +501931,Arts and Culture,Arts and Culture +498535,Arts and Culture,Arts and Culture +498521,Arts and Culture,Arts and Culture +500057,Aboriginal Affairs,Aboriginal Affairs +491400,Aboriginal Affairs,Aboriginal Affairs +540688,Aboriginal Affairs,Aboriginal Affairs +491440,Broadcasting,Broadcasting +493679,Broadcasting,Broadcasting +491686,Broadcasting,Broadcasting +523165,Broadcasting,Broadcasting +523153,Broadcasting,Broadcasting +518249,Broadcasting,Broadcasting +518248,Broadcasting,Broadcasting +515820,Broadcasting,Broadcasting +499086,Broadcasting,Broadcasting +495978,Broadcasting,Broadcasting +491885,Science and Technology,Science and Technology +491883,Science and Technology,Science and Technology +543950,Science and Technology,Science and Technology +543941,Science and Technology,Science and Technology +543940,Science and Technology,Science and Technology +541426,Science and Technology,Science and Technology +541425,Science and Technology,Science and Technology +541204,Science and Technology,Science and Technology +539582,Science and Technology,Science and Technology +539566,Science and Technology,Science and Technology +539553,Science and Technology,Science and Technology +539551,Science and Technology,Science and Technology +539549,Science and Technology,Science and Technology +538770,Science and Technology,Science and Technology +537604,Science and Technology,Science and Technology +537358,Science and Technology,Science and Technology +537307,Science and Technology,Science and Technology +537294,Science and Technology,Science and Technology +537292,Science and Technology,Science and Technology +536715,Science and Technology,Science and Technology +536513,Science and Technology,Science and Technology +536341,Science and Technology,Science and Technology +536339,Science and Technology,Science and Technology +534084,Science and Technology,Science and Technology +533804,Science and Technology,Science and Technology +533799,Science and Technology,Science and Technology +533780,Science and Technology,Science and Technology +530926,Science and Technology,Science and Technology +530918,Science and Technology,Science and Technology +530821,Science and Technology,Science and Technology +530819,Science and Technology,Science and Technology +530657,Science and Technology,Science and Technology +530655,Science and Technology,Science and Technology +528777,Science and Technology,Science and Technology +528607,Science and Technology,Science and Technology +528603,Science and Technology,Science and Technology +528381,Science and Technology,Science and Technology +528380,Science and Technology,Science and Technology +528379,Science and Technology,Science and Technology +527636,Science and Technology,Science and Technology +527635,Science and Technology,Science and Technology +527632,Science and Technology,Science and Technology +527631,Science and Technology,Science and Technology +524960,Science and Technology,Science and Technology +524956,Science and Technology,Science and Technology +524954,Science and Technology,Science and Technology +524559,Science and Technology,Science and Technology +522898,Science and Technology,Science and Technology +521559,Science and Technology,Science and Technology +521555,Science and Technology,Science and Technology +521509,Science and Technology,Science and Technology +521507,Science and Technology,Science and Technology +521505,Science and Technology,Science and Technology +519857,Science and Technology,Science and Technology +519848,Science and Technology,Science and Technology +518059,Science and Technology,Science and Technology +518056,Science and Technology,Science and Technology +518055,Science and Technology,Science and Technology +518054,Science and Technology,Science and Technology +515630,Science and Technology,Science and Technology +514738,Science and Technology,Science and Technology +514737,Science and Technology,Science and Technology +507373,Science and Technology,Science and Technology +504568,Science and Technology,Science and Technology +493321,Broadcasting,Broadcasting +491909,Broadcasting,Broadcasting +522823,Broadcasting,Broadcasting +522821,Broadcasting,Broadcasting +504506,Broadcasting,Broadcasting +504503,Broadcasting,Broadcasting +501737,Broadcasting,Broadcasting +498999,Broadcasting,Broadcasting +498998,Broadcasting,Broadcasting +498988,Broadcasting,Broadcasting +498981,Broadcasting,Broadcasting +495342,Broadcasting,Broadcasting +495341,Broadcasting,Broadcasting +495174,Aboriginal Affairs,Aboriginal Affairs +492006,Aboriginal Affairs,Aboriginal Affairs +506237,Aboriginal Affairs,Aboriginal Affairs +504178,Aboriginal Affairs,Aboriginal Affairs +504177,Aboriginal Affairs,Aboriginal Affairs +499900,Aboriginal Affairs,Aboriginal Affairs +498697,Science and Technology,Science and Technology +498696,Science and Technology,Science and Technology +501030,Science and Technology,Science and Technology +501029,Science and Technology,Science and Technology +507344,Science and Technology,Science and Technology +507343,Science and Technology,Science and Technology +507342,Science and Technology,Science and Technology +507341,Science and Technology,Science and Technology +505216,Science and Technology,Science and Technology +505215,Science and Technology,Science and Technology +505213,Science and Technology,Science and Technology +505211,Science and Technology,Science and Technology +505193,Science and Technology,Science and Technology +505009,Science and Technology,Science and Technology +505000,Science and Technology,Science and Technology +504993,Science and Technology,Science and Technology +501810,Science and Technology,Science and Technology +501807,Science and Technology,Science and Technology +501805,Science and Technology,Science and Technology +501802,Science and Technology,Science and Technology +501798,Science and Technology,Science and Technology +501794,Science and Technology,Science and Technology +501789,Science and Technology,Science and Technology +501786,Science and Technology,Science and Technology +501782,Science and Technology,Science and Technology +498121,Science and Technology,Science and Technology +498120,Science and Technology,Science and Technology +498119,Science and Technology,Science and Technology +498118,Science and Technology,Science and Technology +498117,Science and Technology,Science and Technology +498116,Science and Technology,Science and Technology +498115,Science and Technology,Science and Technology +498114,Science and Technology,Science and Technology +498113,Science and Technology,Science and Technology +494824,Science and Technology,Science and Technology +494823,Science and Technology,Science and Technology +494822,Science and Technology,Science and Technology +494821,Science and Technology,Science and Technology +494820,Science and Technology,Science and Technology +494817,Science and Technology,Science and Technology +494801,Science and Technology,Science and Technology +494800,Science and Technology,Science and Technology +494796,Science and Technology,Science and Technology +515619,Science and Technology,Science and Technology +515618,Science and Technology,Science and Technology +514639,Science and Technology,Science and Technology +510377,Science and Technology,Science and Technology +510376,Science and Technology,Science and Technology +507350,Science and Technology,Science and Technology +507349,Science and Technology,Science and Technology +507346,Science and Technology,Science and Technology +494041,Science and Technology,Science and Technology +492137,Science and Technology,Science and Technology +513487,Science and Technology,Science and Technology +509549,Aboriginal Affairs,Aboriginal Affairs +528136,Arts and Culture,Arts and Culture +528135,Arts and Culture,Arts and Culture +506520,Arts and Culture,Arts and Culture +503620,Arts and Culture,Arts and Culture +503619,Arts and Culture,Arts and Culture +503618,Arts and Culture,Arts and Culture +542625,Arts and Culture,Arts and Culture +542624,Arts and Culture,Arts and Culture +539626,Arts and Culture,Arts and Culture +536985,Arts and Culture,Arts and Culture +530462,Arts and Culture,Arts and Culture +509564,Science and Technology,Sciences et technologies +494170,Science and Technology,Sciences et technologies +492625,Aboriginal Affairs,Aboriginal Affairs +492622,Aboriginal Affairs,Aboriginal Affairs +500032,Aboriginal Affairs,Aboriginal Affairs +494163,Aboriginal Affairs,Aboriginal Affairs +525882,Science and Technology,Science and Technology +509563,Science and Technology,Science and Technology +506072,Science and Technology,Science and Technology +500653,Science and Technology,Science and Technology +494189,Science and Technology,Science and Technology +494081,Science and Technology,Science and Technology +545213,Science and Technology,Science and Technology +530610,Science and Technology,Science and Technology +495717,Broadcasting,Broadcasting +495480,Broadcasting,Broadcasting +502295,Broadcasting,Broadcasting +495720,Broadcasting,Broadcasting +495719,Broadcasting,Broadcasting +494145,Broadcasting,Broadcasting +494139,Broadcasting,Broadcasting +542306,Broadcasting,Broadcasting +541321,Broadcasting,Broadcasting +533277,Broadcasting,Broadcasting +530743,Broadcasting,Broadcasting +529771,Broadcasting,Broadcasting +526921,Broadcasting,Broadcasting +526847,Broadcasting,Broadcasting +523834,Broadcasting,Broadcasting +523530,Broadcasting,Broadcasting +523529,Broadcasting,Broadcasting +521425,Broadcasting,Broadcasting +517127,Broadcasting,Broadcasting +516270,Broadcasting,Broadcasting +515066,Broadcasting,Broadcasting +514567,Broadcasting,Broadcasting +512891,Broadcasting,Broadcasting +506170,Broadcasting,Broadcasting +503200,Broadcasting,Broadcasting +500335,Broadcasting,Broadcasting +500121,Broadcasting,Broadcasting +497431,Broadcasting,Broadcasting +496758,Broadcasting,Broadcasting +496468,Broadcasting,Broadcasting +496410,Broadcasting,Broadcasting +495121,Broadcasting,Broadcasting +494466,Broadcasting,Broadcasting +494397,Broadcasting,Broadcasting +495082,Aboriginal Affairs,Aboriginal Affairs +528860,Aboriginal Affairs,Aboriginal Affairs +522492,Aboriginal Affairs,Aboriginal Affairs +522490,Aboriginal Affairs,Aboriginal Affairs +522477,Aboriginal Affairs,Aboriginal Affairs +519516,Aboriginal Affairs,Aboriginal Affairs +517312,Aboriginal Affairs,Aboriginal Affairs +517303,Aboriginal Affairs,Aboriginal Affairs +514607,Aboriginal Affairs,Aboriginal Affairs +514605,Aboriginal Affairs,Aboriginal Affairs +514602,Aboriginal Affairs,Aboriginal Affairs +512910,Aboriginal Affairs,Aboriginal Affairs +510554,Aboriginal Affairs,Aboriginal Affairs +499529,Aboriginal Affairs,Aboriginal Affairs +509041,Arts and Culture,Arts and Culture +506535,Arts and Culture,Arts and Culture +545259,Arts and Culture,Arts and Culture +542265,Arts and Culture,Arts and Culture +540418,Arts and Culture,Arts and Culture +538917,Arts and Culture,Arts and Culture +538828,Arts and Culture,Arts and Culture +536537,Arts and Culture,Arts and Culture +536051,Arts and Culture,Arts and Culture +532762,Arts and Culture,Arts and Culture +532140,Arts and Culture,Arts and Culture +527491,Arts and Culture,Arts and Culture +527119,Arts and Culture,Arts and Culture +527118,Arts and Culture,Arts and Culture +521420,Arts and Culture,Arts and Culture +521284,Arts and Culture,Arts and Culture +520809,Arts and Culture,Arts and Culture +518824,Arts and Culture,Arts and Culture +515562,Arts and Culture,Arts and Culture +515561,Arts and Culture,Arts and Culture +510370,Arts and Culture,Arts and Culture +509554,Arts and Culture,Arts and Culture +509553,Arts and Culture,Arts and Culture +509413,Arts and Culture,Arts and Culture +495354,Broadcasting,Broadcasting +495347,Broadcasting,Broadcasting +545259,Broadcasting,Broadcasting +542265,Broadcasting,Broadcasting +540418,Broadcasting,Broadcasting +538917,Broadcasting,Broadcasting +538828,Broadcasting,Broadcasting +536537,Broadcasting,Broadcasting +536051,Broadcasting,Broadcasting +532762,Broadcasting,Broadcasting +532140,Broadcasting,Broadcasting +527491,Broadcasting,Broadcasting +527119,Broadcasting,Broadcasting +527118,Broadcasting,Broadcasting +521420,Broadcasting,Broadcasting +521284,Broadcasting,Broadcasting +520809,Broadcasting,Broadcasting +518824,Broadcasting,Broadcasting +515562,Broadcasting,Broadcasting +515561,Broadcasting,Broadcasting +510370,Broadcasting,Broadcasting +509554,Broadcasting,Broadcasting +509553,Broadcasting,Broadcasting +509413,Broadcasting,Broadcasting +509412,Broadcasting,Broadcasting +509041,Broadcasting,Broadcasting +506536,Broadcasting,Broadcasting +506535,Broadcasting,Broadcasting +500695,Broadcasting,Broadcasting +500693,Broadcasting,Broadcasting +499828,Broadcasting,Broadcasting +499826,Broadcasting,Broadcasting +496893,Broadcasting,Broadcasting +496892,Broadcasting,Broadcasting +496891,Broadcasting,Broadcasting +542259,Broadcasting,Broadcasting +522458,Broadcasting,Broadcasting +511071,Broadcasting,Broadcasting +498878,Broadcasting,Broadcasting +522458,Arts and Culture,Arts and Culture +511071,Arts and Culture,Arts and Culture +500245,Science and Technology,Science and Technology +500087,Science and Technology,Science and Technology +520420,Broadcasting,Broadcasting +495001,Broadcasting,Broadcasting +538928,Broadcasting,Broadcasting +530291,Broadcasting,Broadcasting +530186,Broadcasting,Broadcasting +524191,Broadcasting,Broadcasting +523681,Broadcasting,Broadcasting +523555,Broadcasting,Broadcasting +521382,Broadcasting,Broadcasting +521122,Broadcasting,Broadcasting +520540,Broadcasting,Broadcasting +520424,Broadcasting,Broadcasting +520423,Broadcasting,Broadcasting +494024,Aboriginal Affairs,Aboriginal Affairs +494023,Aboriginal Affairs,Aboriginal Affairs +497017,Aboriginal Affairs,Aboriginal Affairs +530980,Science and Technology,Science and Technology +520353,Science and Technology,Science and Technology +534053,Science and Technology,Science and Technology +534052,Science and Technology,Science and Technology +534048,Science and Technology,Science and Technology +516598,Aboriginal Affairs,Aboriginal Affairs +504338,Aboriginal Affairs,Aboriginal Affairs +498719,Broadcasting,Broadcasting +498718,Broadcasting,Broadcasting +510849,Broadcasting,Broadcasting +502924,Broadcasting,Broadcasting +498729,Broadcasting,Broadcasting +498727,Broadcasting,Broadcasting +498725,Broadcasting,Broadcasting +501095,Aboriginal Affairs,Aboriginal Affairs +501086,Aboriginal Affairs,Aboriginal Affairs +538616,Aboriginal Affairs,Aboriginal Affairs +535701,Aboriginal Affairs,Aboriginal Affairs +527990,Aboriginal Affairs,Aboriginal Affairs +516443,Aboriginal Affairs,Aboriginal Affairs +515024,Aboriginal Affairs,Aboriginal Affairs +510551,Aboriginal Affairs,Aboriginal Affairs +510545,Aboriginal Affairs,Aboriginal Affairs +501084,Science and Technology,Science and Technology +495093,Science and Technology,Science and Technology +541011,Science and Technology,Science and Technology +512300,Science and Technology,Science and Technology +494363,Science and Technology,Science and Technology +514279,Science and Technology,Science and Technology +494332,Aboriginal Affairs,Aboriginal Affairs +498853,Arts and Culture,Arts and Culture +502756,Telecommunications,Telecommunications +504080,Aboriginal Affairs,Aboriginal Affairs +501192,Aboriginal Affairs,Aboriginal Affairs +538347,Aboriginal Affairs,Aboriginal Affairs +538333,Aboriginal Affairs,Aboriginal Affairs +535339,Aboriginal Affairs,Aboriginal Affairs +532208,Aboriginal Affairs,Aboriginal Affairs +522876,Aboriginal Affairs,Aboriginal Affairs +522867,Arts and Culture,Arts and Culture +517020,Science and Technology,Sciences et technologies +513928,Science and Technology,Sciences et technologies +543589,Science and Technology,Sciences et technologies +543588,Science and Technology,Sciences et technologies +543587,Science and Technology,Sciences et technologies +541182,Science and Technology,Sciences et technologies +478639,Aboriginal Affairs,Aboriginal Affairs +477183,Aboriginal Affairs,Aboriginal Affairs +479245,Telecommunications,Telecommunications +480232,Broadcasting,Broadcasting +539938,Telecommunications,Telecommunications +537113,Aboriginal Affairs,Aboriginal Affairs +480718,Aboriginal Affairs,Aboriginal Affairs +502843,Science and Technology,Science and Technology +517659,Aboriginal Affairs,Aboriginal Affairs +483216,Science and Technology,Science and Technology +480159,Science and Technology,Science and Technology +485494,Telecommunications,Telecommunications +480222,Arts and Culture,Arts and Culture +479969,Aboriginal Affairs,Aboriginal Affairs +497320,Aboriginal Affairs,Aboriginal Affairs +484221,Aboriginal Affairs,Aboriginal Affairs +478855,Arts and Culture,Arts and Culture +478845,Aboriginal Affairs,Aboriginal Affairs +503152,Arts and Culture,Arts and Culture +506465,Science and Technology,Science and Technology +502675,Science and Technology,Science and Technology +513096,Science and Technology,Science and Technology +479330,Science and Technology,Science and Technology +500928,Aboriginal Affairs,Aboriginal Affairs +491866,Science and Technology,Science and Technology +479560,Arts and Culture,Arts and Culture +480263,Aboriginal Affairs,Aboriginal Affairs +499620,Aboriginal Affairs,Aboriginal Affairs +508495,Science and Technology,Science and Technology +481710,Science and Technology,Science and Technology +506378,Aboriginal Affairs,Aboriginal Affairs +489733,Science and Technology,Science and Technology +484670,Telecommunications,Telecommunications +490375,Aboriginal Affairs,Aboriginal Affairs +497572,Science and Technology,Science and Technology +487653,Arts and Culture,Arts and Culture +483910,Telecommunications,Telecommunications +488697,Science and Technology,Science and Technology +488322,Science and Technology,Science and Technology +487107,Arts and Culture,Arts and Culture +482005,Arts and Culture,Arts and Culture +482005,Broadcasting,Broadcasting +509562,Aboriginal Affairs,Aboriginal Affairs +482654,Science and Technology,Science and Technology +514294,Arts and Culture,Arts and Culture +487140,Arts and Culture,Arts and Culture +487140,Science and Technology,Science and Technology +487140,Aboriginal Affairs,Aboriginal Affairs +527272,Aboriginal Affairs,Aboriginal Affairs +488833,Arts and Culture,Arts and Culture +480883,Science and Technology,Science and Technology +481031,Arts and Culture,Arts and Culture +481031,Broadcasting,Broadcasting +483515,Science and Technology,Science and Technology +487924,Science and Technology,Science and Technology +520903,Science and Technology,Science and Technology +486562,Science and Technology,Science and Technology +485723,Science and Technology,Science and Technology +481058,Arts and Culture,Arts and Culture +523821,Arts and Culture,Arts and Culture +481167,Science and Technology,Science and Technology +509964,Science and Technology,Science and Technology +491604,Science and Technology,Science and Technology +522178,Aboriginal Affairs,Aboriginal Affairs +509784,Aboriginal Affairs,Aboriginal Affairs +509784,Science and Technology,Science and Technology +481616,Aboriginal Affairs,Aboriginal Affairs +481617,Aboriginal Affairs,Aboriginal Affairs +481655,Science and Technology,Science and Technology +484782,Aboriginal Affairs,Aboriginal Affairs +486223,Arts and Culture,Arts and Culture +482068,Science and Technology,Science and Technology +485667,Science and Technology,Science and Technology +484771,Arts and Culture,Arts and Culture +483693,Arts and Culture,Arts and Culture +487472,Aboriginal Affairs,Aboriginal Affairs +529019,Arts and Culture,Arts and Culture +484257,Broadcasting,Broadcasting +484257,Telecommunications,Telecommunications +488627,Science and Technology,Science and Technology +483140,Science and Technology,Science and Technology +486108,Aboriginal Affairs,Aboriginal Affairs +486103,Arts and Culture,Arts and Culture +483853,Science and Technology,Science and Technology +485704,Science and Technology,Science and Technology +483003,Broadcasting,Broadcasting +488256,Science and Technology,Science and Technology +493990,Aboriginal Affairs,Aboriginal Affairs +488611,Telecommunications,Telecommunications +485334,Science and Technology,Science and Technology +506724,Science and Technology,Science and Technology +495781,Aboriginal Affairs,Aboriginal Affairs +534051,Arts and Culture,Arts and Culture +490869,Science and Technology,Science and Technology +489057,Science and Technology,Science and Technology +483031,Aboriginal Affairs,Aboriginal Affairs +485593,Aboriginal Affairs,Aboriginal Affairs +494322,Broadcasting,Broadcasting +484070,Science and Technology,Science and Technology +491010,Science and Technology,Science and Technology +500037,Aboriginal Affairs,Aboriginal Affairs +483302,Arts and Culture,Arts and Culture +489283,Aboriginal Affairs,Aboriginal Affairs +506412,Science and Technology,Science and Technology +512788,Aboriginal Affairs,Aboriginal Affairs +521884,Aboriginal Affairs,Aboriginal Affairs +496246,Aboriginal Affairs,Aboriginal Affairs +487101,Science and Technology,Science and Technology +503875,Science and Technology,Science and Technology +489209,Telecommunications,Telecommunications +487165,Broadcasting,Broadcasting +486081,Aboriginal Affairs,Aboriginal Affairs +512886,Science and Technology,Science and Technology +490328,Aboriginal Affairs,Aboriginal Affairs +494652,Arts and Culture,Arts and Culture +483918,Aboriginal Affairs,Aboriginal Affairs +538449,Aboriginal Affairs,Aboriginal Affairs +488337,Arts and Culture,Arts and Culture +484352,Science and Technology,Science and Technology +484372,Telecommunications,Telecommunications +492494,Science and Technology,Science and Technology +484404,Telecommunications,Telecommunications +484584,Science and Technology,Science and Technology +484596,Science and Technology,Science and Technology +491630,Aboriginal Affairs,Aboriginal Affairs +491237,Telecommunications,Telecommunications +488209,Science and Technology,Science and Technology +505845,Aboriginal Affairs,Aboriginal Affairs +499696,Telecommunications,Telecommunications +501489,Broadcasting,Broadcasting +485358,Broadcasting,Broadcasting +488905,Aboriginal Affairs,Aboriginal Affairs +500454,Science and Technology,Science and Technology +532483,Arts and Culture,Arts and Culture +525422,Broadcasting,Broadcasting +485491,Science and Technology,Science and Technology +494297,Aboriginal Affairs,Aboriginal Affairs +499099,Arts and Culture,Arts and Culture +500069,Aboriginal Affairs,Aboriginal Affairs +508202,Arts and Culture,Arts and Culture +488100,Science and Technology,Science and Technology +523560,Telecommunications,Telecommunications +490741,Telecommunications,Telecommunications +538945,Aboriginal Affairs,Aboriginal Affairs +492460,Arts and Culture,Arts and Culture +521110,Science and Technology,Science and Technology +489083,Arts and Culture,Arts and Culture +540387,Science and Technology,Science and Technology +490177,Aboriginal Affairs,Aboriginal Affairs +498667,Science and Technology,Science and Technology +500322,Telecommunications,Telecommunications +494660,Science and Technology,Science and Technology +489115,Science and Technology,Science and Technology +492122,Aboriginal Affairs,Aboriginal Affairs +489563,Arts and Culture,Arts and Culture +489563,Broadcasting,Broadcasting +493707,Science and Technology,Science and Technology +488246,Aboriginal Affairs,Aboriginal Affairs +489732,Science and Technology,Science and Technology +490393,Telecommunications,Telecommunications +532780,Broadcasting,Broadcasting +520154,Science and Technology,Science and Technology +494725,Aboriginal Affairs,Aboriginal Affairs +494725,Arts and Culture,Arts and Culture +500953,Science and Technology,Science and Technology +492106,Science and Technology,Science and Technology +499771,Aboriginal Affairs,Aboriginal Affairs +505971,Science and Technology,Science and Technology +514203,Science and Technology,Science and Technology +495956,Arts and Culture,Arts and Culture +495972,Arts and Culture,Arts and Culture +491625,Telecommunications,Telecommunications +495963,Arts and Culture,Arts and Culture +495960,Arts and Culture,Arts and Culture +495965,Arts and Culture,Arts and Culture +495952,Arts and Culture,Arts and Culture +487338,Science and Technology,Science and Technology +487373,Arts and Culture,Arts and Culture +538165,Science and Technology,Science and Technology +502709,Arts and Culture,Arts and Culture +493671,Broadcasting,Broadcasting +499115,Arts and Culture,Arts and Culture +499113,Arts and Culture,Arts and Culture +493416,Arts and Culture,Arts and Culture +539726,Arts and Culture,Arts and Culture +496917,Arts and Culture,Arts and Culture +494988,Science and Technology,Science and Technology +494795,Science and Technology,Science and Technology +500282,Science and Technology,Science and Technology +505875,Aboriginal Affairs,Aboriginal Affairs +492023,Telecommunications,Telecommunications +506827,Broadcasting,Broadcasting +489089,Telecommunications,Telecommunications +488445,Arts and Culture,Arts and Culture +494436,Aboriginal Affairs,Aboriginal Affairs +496606,Science and Technology,Science and Technology +492025,Science and Technology,Science and Technology +501556,Telecommunications,Telecommunications +499101,Arts and Culture,Arts and Culture +499110,Arts and Culture,Arts and Culture +499105,Arts and Culture,Arts and Culture +489021,Aboriginal Affairs,Aboriginal Affairs +492502,Science and Technology,Science and Technology +510410,Aboriginal Affairs,Aboriginal Affairs +492801,Telecommunications,Telecommunications +499941,Aboriginal Affairs,Aboriginal Affairs +497005,Telecommunications,Telecommunications +489978,Broadcasting,Broadcasting +507120,Science and Technology,Science and Technology +503191,Science and Technology,Science and Technology +496460,Aboriginal Affairs,Aboriginal Affairs +503686,Aboriginal Affairs,Aboriginal Affairs +489516,Arts and Culture,Arts and Culture +512051,Aboriginal Affairs,Aboriginal Affairs +505267,Telecommunications,Telecommunications +495176,Broadcasting,Broadcasting +493479,Arts and Culture,Arts and Culture +489281,Arts and Culture,Arts and Culture +497247,Arts and Culture,Arts and Culture +489283,Arts and Culture,Arts and Culture +500668,Arts and Culture,Arts and Culture +495217,Arts and Culture,Arts and Culture +516929,Broadcasting,Broadcasting +491030,Science and Technology,Science and Technology +499061,Arts and Culture,Arts and Culture +499053,Broadcasting,Broadcasting +489724,Aboriginal Affairs,Aboriginal Affairs +498859,Arts and Culture,Arts and Culture +505127,Arts and Culture,Arts and Culture +508941,Broadcasting,Broadcasting +491909,Arts and Culture,Arts et culture +538111,Broadcasting,Broadcasting +540689,Aboriginal Affairs,Aboriginal Affairs +517923,Science and Technology,Science and Technology +491493,Arts and Culture,Arts and Culture +500058,Aboriginal Affairs,Aboriginal Affairs +523101,Broadcasting,Broadcasting +518242,Science and Technology,Science and Technology +495976,Broadcasting,Broadcasting +491686,Telecommunications,Telecommunications +491886,Science and Technology,Science and Technology +493323,Broadcasting,Broadcasting +497986,Aboriginal Affairs,Aboriginal Affairs +492220,Telecommunications,Telecommunications +492220,Broadcasting,Broadcasting +498698,Science and Technology,Science and Technology +507345,Science and Technology,Science and Technology +494218,Science and Technology,Science and Technology +504114,Science and Technology,Science and Technology +492459,Science and Technology,Science and Technology +538947,Aboriginal Affairs,Aboriginal Affairs +530461,Arts and Culture,Arts and Culture +492355,Aboriginal Affairs,Aboriginal Affairs +516997,Science and Technology,Sciences et technologies +543770,Aboriginal Affairs,Aboriginal Affairs +494159,Aboriginal Affairs,Aboriginal Affairs +492511,Science and Technology,Science and Technology +492512,Science and Technology,Science and Technology +494105,Science and Technology,Science and Technology +525884,Science and Technology,Science and Technology +514552,Science and Technology,Science and Technology +500546,Science and Technology,Science and Technology +545212,Science and Technology,Science and Technology +495718,Broadcasting,Broadcasting +494396,Broadcasting,Broadcasting +510552,Aboriginal Affairs,Aboriginal Affairs +499532,Aboriginal Affairs,Aboriginal Affairs +509412,Arts and Culture,Arts and Culture +495360,Broadcasting,Broadcasting +498873,Broadcasting,Broadcasting +542259,Arts and Culture,Arts and Culture +503078,Science and Technology,Science and Technology +516153,Aboriginal Affairs,Aboriginal Affairs +520422,Broadcasting,Broadcasting +499550,Aboriginal Affairs,Aboriginal Affairs +536213,Science and Technology,Science and Technology +494674,Aboriginal Affairs,Aboriginal Affairs +534036,Science and Technology,Science and Technology +529951,Science and Technology,Science and Technology +496378,Telecommunications,Telecommunications +496378,Science and Technology,Science and Technology +516602,Aboriginal Affairs,Aboriginal Affairs +496741,Broadcasting,Broadcasting +498720,Broadcasting,Broadcasting +510534,Aboriginal Affairs,Aboriginal Affairs +506818,Science and Technology,Science and Technology +503608,Aboriginal Affairs,Aboriginal Affairs +494495,Science and Technology,Science and Technology +523272,Science and Technology,Science and Technology +499551,Aboriginal Affairs,Aboriginal Affairs +494541,Aboriginal Affairs,Aboriginal Affairs +494341,Aboriginal Affairs,Aboriginal Affairs +498880,Arts and Culture,Arts and Culture +504462,Telecommunications,Telecommunications +512004,Aboriginal Affairs,Aboriginal Affairs +538333,Arts and Culture,Arts and Culture +523556,Science and Technology,Sciences et technologies +519412,Science and Technology,Science and Technology +528994,Telecommunications,Telecommunications +494415,Science and Technology,Science and Technology +543156,Science and Technology,Sciences et technologies +500294,Science and Technology,Science and Technology +496664,Aboriginal Affairs,Aboriginal Affairs +500874,Arts and Culture,Arts and Culture +500874,Aboriginal Affairs,Aboriginal Affairs +502520,Science and Technology,Science and Technology +497234,Arts and Culture,Arts and Culture +498771,Science and Technology,Science and Technology +497801,Arts and Culture,Arts and Culture +510421,Arts and Culture,Arts and Culture +498125,Science and Technology,Science and Technology +495806,Arts and Culture,Arts and Culture +495806,Broadcasting,Broadcasting +499950,Science and Technology,Science and Technology +531749,Aboriginal Affairs,Aboriginal Affairs +503578,Telecommunications,Télécommunications +507640,Telecommunications,Telecommunications +516860,Science and Technology,Science and Technology +499847,Science and Technology,Science and Technology +511449,Telecommunications,Telecommunications +515907,Aboriginal Affairs,Aboriginal Affairs +498398,Aboriginal Affairs,Aboriginal Affairs +527274,Arts and Culture,Arts and Culture +507427,Arts and Culture,Arts and Culture +522551,Arts and Culture,Arts and Culture +518368,Broadcasting,Broadcasting +515815,Arts and Culture,Arts and Culture +541928,Arts and Culture,Arts and Culture +501219,Arts and Culture,Arts and Culture +541934,Arts and Culture,Arts and Culture +527275,Broadcasting,Broadcasting +522826,Broadcasting,Broadcasting +522826,Arts and Culture,Arts and Culture +526351,Telecommunications,Telecommunications +545144,Broadcasting,Broadcasting +522554,Broadcasting,Broadcasting +518369,Arts and Culture,Arts and Culture +522831,Arts and Culture,Arts and Culture +522833,Arts and Culture,Arts and Culture +512598,Arts and Culture,Arts and Culture +515797,Arts and Culture,Arts and Culture +501222,Arts and Culture,Arts and Culture +501223,Arts and Culture,Arts and Culture +501227,Arts and Culture,Arts and Culture +501221,Arts and Culture,Arts and Culture +501224,Arts and Culture,Arts and Culture +501226,Arts and Culture,Arts and Culture +541931,Arts and Culture,Arts and Culture +496310,Telecommunications,Telecommunications +499245,Aboriginal Affairs,Aboriginal Affairs +522513,Aboriginal Affairs,Aboriginal Affairs +503233,Aboriginal Affairs,Aboriginal Affairs +499926,Broadcasting,Broadcasting +499926,Arts and Culture,Arts and Culture +533461,Telecommunications,Telecommunications +532592,Aboriginal Affairs,Aboriginal Affairs +532592,Science and Technology,Science and Technology +502403,Aboriginal Affairs,Aboriginal Affairs +496741,Arts and Culture,Arts and Culture +509883,Science and Technology,Science and Technology +507977,Science and Technology,Science and Technology +503691,Arts and Culture,Arts and Culture +499375,Broadcasting,Broadcasting +510230,Science and Technology,Science and Technology +497404,Science and Technology,Sciences et technologies +496920,Science and Technology,Science and Technology +534915,Science and Technology,Science and Technology +515390,Telecommunications,Telecommunications +515390,Science and Technology,Science and Technology +535096,Science and Technology,Science and Technology +497384,Aboriginal Affairs,Aboriginal Affairs +506763,Aboriginal Affairs,Aboriginal Affairs +506132,Science and Technology,Science and Technology +497257,Science and Technology,Science and Technology +503399,Broadcasting,Broadcasting +501482,Aboriginal Affairs,Aboriginal Affairs +502530,Science and Technology,Science and Technology +540268,Broadcasting,Broadcasting +507985,Arts and Culture,Arts and Culture +508637,Science and Technology,Science and Technology +497405,Arts and Culture,Arts and Culture +509037,Arts and Culture,Arts et culture +510573,Science and Technology,Science and Technology +519321,Aboriginal Affairs,Aboriginal Affairs +497707,Telecommunications,Telecommunications +506608,Broadcasting,Broadcasting +511531,Science and Technology,Science and Technology +508930,Science and Technology,Science and Technology +500086,Science and Technology,Science and Technology +518065,Aboriginal Affairs,Aboriginal Affairs +525744,Broadcasting,Broadcasting +502071,Broadcasting,Broadcasting +508237,Arts and Culture,Arts and Culture +503136,Aboriginal Affairs,Aboriginal Affairs +500211,Science and Technology,Science and Technology +516569,Science and Technology,Science and Technology +499102,Aboriginal Affairs,Aboriginal Affairs +502449,Science and Technology,Sciences et technologies +523505,Aboriginal Affairs,Aboriginal Affairs +502912,Science and Technology,Science and Technology +506526,Science and Technology,Science and Technology +503555,Science and Technology,Science and Technology +522817,Industry,Industry +513242,Tourism,Tourism +500084,Employment and Training,Employment and Training +504068,Government Procurement,Government Procurement +500111,Labour,Labour +499917,Small Business,Small Business +499217,Health,Health +503145,Taxation and Finance,Taxation and Finance +513892,Economic Development,Economic Development +499216,International Development,International Development +499909,Transportation,Transports +499236,Transportation,Transportation +526918,Economic Development,Economic Development +499295,Health,Health +502449,Economic Development,Développement économique +502454,Research and Development,Recherche et développement +504888,Health,Santé +508089,Economic Development,Développement économique +508088,Energy,Énergie +499437,Employment and Training,Employment and Training +499439,Small Business,Small Business +499566,Economic Development,Economic Development +512027,Climate,Climate +510994,Immigration,Immigration +526048,Labour,Labour +504711,Transportation,Transportation +502911,Regional Development,Regional Development +504692,Research and Development,Research and Development +504692,Economic Development,Economic Development +504721,Industry,Industry +502912,Mining,Mining +504721,Environment,Environment +499654,Government Procurement,Government Procurement +499654,Health,Health +499704,Budget,Budget +541039,Agriculture,Agriculture +513687,Infrastructure,Infrastructure +499772,Economic Development,Economic Development +529126,Climate,Climate +522739,Environment,Environment +503555,Industry,Industry +501703,Economic Development,Economic Development +501703,Housing,Housing +501703,Infrastructure,Infrastructure +501703,Municipalities,Municipalities +508951,Regional Development,Regional Development +501703,Sports,Sports +504730,Housing,Housing +504730,Infrastructure,Infrastructure +535537,Health,Health +499832,Health,Health +500429,International Trade,International Trade +500613,Health,Health +502099,Agriculture,Agriculture +502101,Environment,Environment +502101,International Trade,International Trade +527690,Consumer Issues,Consumer Issues +500942,Climate,Climate +503970,Energy,Energy +506792,Environment,Environment +499905,Transportation,Transportation +507553,Budget,Budget +507553,Economic Development,Economic Development +507553,Health,Health +507553,Industry,Industry +507553,Intellectual Property,Intellectual Property +507553,Taxation and Finance,Taxation and Finance +502723,Budget,Budget +502723,Defence,Defence +502723,Environment,Environment +502723,Industry,Industry +502723,Infrastructure,Infrastructure +511532,Research and Development,Research and Development +501464,Infrastructure,Infrastructure +499980,Transportation,Transportation +505937,Economic Development,Economic Development +505937,Regional Development,Regional Development +505946,Small Business,Small Business +505946,Tourism,Tourism +518347,Taxation and Finance,Taxation and Finance +502889,Agriculture,Agriculture +536827,Environment,Environment +513774,Infrastructure,Infrastructure +518196,International Trade,International Trade +506018,Justice and Law Enforcement,Justice and Law Enforcement +507147,Small Business,Small Business +536172,Climate,Climate +529487,Energy,Energy +532258,Environment,Environment +532242,Housing,Housing +503058,Research and Development,Recherche et développement +509916,Government Procurement,Government Procurement +500893,Agriculture,Agriculture +540618,Environment,Environment +527328,Labour,Labour +503584,Budget,Budget +506167,Defence,Defence +539787,Economic Development,Economic Development +506105,Infrastructure,Infrastructure +539787,Regional Development,Regional Development +506105,Transportation,Transportation +499997,Industry,Industry +500004,Labour,Labour +511853,Immigration,Immigration +500511,Education,Education +511046,Housing,Housing +526906,Housing,Housing +528635,Energy,Energy +526906,Climate,Climate +526906,Environment,Environment +505312,Environment,Environment +505312,Infrastructure,Infrastructure +519029,International Trade,International Trade +502728,Budget,Budget +517884,Housing,Housing +520994,Infrastructure,Infrastructure +531415,Municipalities,Municipalities +526275,Small Business,Small Business +526275,Taxation and Finance,Taxation and Finance +533027,Tourism,Tourism +500035,Immigration,Immigration +500041,Employment and Training,Employment and Training +501687,Infrastructure,Infrastructure +500701,International Relations,International Relations +503883,Economic Development,Economic Development +503879,Infrastructure,Infrastructure +503879,Intellectual Property,Intellectual Property +503883,Regional Development,Regional Development +509982,Research and Development,Research and Development +503891,Economic Development,Economic Development +503880,Intellectual Property,Intellectual Property +503880,Regional Development,Regional Development +509983,Research and Development,Research and Development +513945,Industry,Industry +500976,Agriculture,Agriculture +500976,Environment,Environment +518626,International Trade,International Trade +513977,Industry,Industry +501628,Climate,Climate +502562,Economic Development,Economic Development +501628,Energy,Energy +501626,Environment,Environment +501628,Infrastructure,Infrastructure +501626,Regional Development,Regional Development +501625,Transportation,Transportation +500737,Environment,Environment +500376,International Relations,International Relations +500376,Justice and Law Enforcement,Justice and Law Enforcement +509082,Security,Security +500376,Transportation,Transportation +532540,Agriculture,Agriculture +532540,International Trade,International Trade +510986,Employment and Training,Employment and Training +503311,Government Procurement,Government Procurement +528536,Consumer Issues,Consumer Issues +528536,Financial Institutions,Financial Institutions +502375,Budget,Budget +501508,Health,Health +517224,International Relations,International Relations +504644,Health,Health +501808,Justice and Law Enforcement,Justice and Law Enforcement +506295,Agriculture,Agriculture +520762,Climate,Climate +506295,Environment,Environment +527419,Health,Health +500752,Environment,Environment +518906,Economic Development,Economic Development +501394,Health,Health +513478,Health,Health +503545,Employment and Training,Employment and Training +503545,Labour,Labour +503545,Health,Health +521409,Environment,Environment +521409,Housing,Housing +509101,Energy,Energy +500503,Economic Development,Economic Development +502398,Immigration,Immigration +524359,Environment,Environment +500202,Taxation and Finance,Taxation and Finance +519333,Government Procurement,Government Procurement +506377,Regional Development,Regional Development +506377,Transportation,Transportation +503310,Budget,Budget +500838,Health,Health +527319,Economic Development,Economic Development +538813,Employment and Training,Employment and Training +537255,Government Procurement,Government Procurement +511936,Economic Development,Economic Development +542340,Agriculture,Agriculture +542340,Labour,Labour +542340,Industry,Industry +542340,Transportation,Transportation +506142,Employment and Training,Employment and Training +539287,Economic Development,Economic Development +539345,Housing,Housing +539261,Infrastructure,Infrastructure +539246,Municipalities,Municipalities +521947,Economic Development,Economic Development +521945,Environment,Environment +528792,Economic Development,Economic Development +521945,Agriculture,Agriculture +521943,Economic Development,Economic Development +521945,International Trade,International Trade +521946,Economic Development,Economic Development +516221,Transportation,Transportation +506318,Health,Health +537017,Economic Development,Développement économique +537017,Agriculture,Agriculture +538522,Consumer Issues,Consumer Issues +507593,Health,Health +529405,Health,Health +544182,Health,Health +504128,Economic Development,Economic Development +504128,Industry,Industry +507674,Tourism,Tourism +507676,Transportation,Transportation +505198,Government Procurement,Government Procurement +505198,Health,Health +505198,Industry,Industry +505198,Security,Security +505198,Tourism,Tourism +505198,Transportation,Transportation +500339,Government Procurement,Government Procurement +502965,Agriculture,Agriculture +534758,Science and Technology,Sciences et technologies +534754,Science and Technology,Sciences et technologies +534750,Science and Technology,Sciences et technologies +534744,Science and Technology,Sciences et technologies +531555,Science and Technology,Sciences et technologies +531552,Science and Technology,Sciences et technologies +531549,Science and Technology,Sciences et technologies +531548,Science and Technology,Sciences et technologies +531545,Science and Technology,Sciences et technologies +528932,Science and Technology,Sciences et technologies +528927,Science and Technology,Sciences et technologies +528924,Science and Technology,Sciences et technologies +525896,Science and Technology,Sciences et technologies +525891,Science and Technology,Sciences et technologies +525885,Science and Technology,Sciences et technologies +510517,Telecommunications,Telecommunications +501934,Telecommunications,Telecommunications +498110,Science and Technology,Science and Technology +497594,Science and Technology,Science and Technology +506181,Science and Technology,Science and Technology +496651,Aboriginal Affairs,Aboriginal Affairs +500145,Arts and Culture,Arts and Culture +500139,Arts and Culture,Arts and Culture +507254,Arts and Culture,Arts and Culture +506380,Arts and Culture,Arts and Culture +503400,Arts and Culture,Arts and Culture +503323,Arts and Culture,Arts and Culture +501451,Arts and Culture,Arts and Culture +500145,Aboriginal Affairs,Aboriginal Affairs +500139,Aboriginal Affairs,Aboriginal Affairs +507254,Aboriginal Affairs,Aboriginal Affairs +506380,Aboriginal Affairs,Aboriginal Affairs +503400,Aboriginal Affairs,Aboriginal Affairs +503323,Aboriginal Affairs,Aboriginal Affairs +501451,Aboriginal Affairs,Aboriginal Affairs +495113,Arts and Culture,Arts and Culture +510419,Arts and Culture,Arts and Culture +501286,Arts and Culture,Arts and Culture +501283,Arts and Culture,Arts and Culture +501288,Arts and Culture,Arts and Culture +501287,Arts and Culture,Arts and Culture +500048,Aboriginal Affairs,Aboriginal Affairs +498399,Aboriginal Affairs,Aboriginal Affairs +531755,Aboriginal Affairs,Aboriginal Affairs +531753,Aboriginal Affairs,Aboriginal Affairs +531752,Aboriginal Affairs,Aboriginal Affairs +531751,Aboriginal Affairs,Aboriginal Affairs +531750,Aboriginal Affairs,Aboriginal Affairs +503305,Telecommunications,Télécommunications +495094,Telecommunications,Télécommunications +506104,Telecommunications,Télécommunications +501354,Telecommunications,Telecommunications +497820,Telecommunications,Telecommunications +530797,Telecommunications,Telecommunications +511247,Telecommunications,Telecommunications +510486,Telecommunications,Telecommunications +516859,Science and Technology,Science and Technology +516858,Science and Technology,Science and Technology +507566,Science and Technology,Science and Technology +504300,Science and Technology,Science and Technology +501181,Science and Technology,Science and Technology +501178,Science and Technology,Science and Technology +501176,Science and Technology,Science and Technology +545352,Science and Technology,Science and Technology +544889,Science and Technology,Science and Technology +540599,Science and Technology,Science and Technology +536729,Science and Technology,Science and Technology +536728,Science and Technology,Science and Technology +535958,Science and Technology,Science and Technology +535957,Science and Technology,Science and Technology +535956,Science and Technology,Science and Technology +535955,Science and Technology,Science and Technology +535954,Science and Technology,Science and Technology +533147,Science and Technology,Science and Technology +516862,Science and Technology,Science and Technology +495422,Science and Technology,Science and Technology +509172,Telecommunications,Telecommunications +513404,Telecommunications,Telecommunications +511452,Telecommunications,Telecommunications +511450,Telecommunications,Telecommunications +499129,Aboriginal Affairs,Aboriginal Affairs +496129,Aboriginal Affairs,Aboriginal Affairs +526473,Aboriginal Affairs,Aboriginal Affairs +498388,Aboriginal Affairs,Aboriginal Affairs +496228,Aboriginal Affairs,Aboriginal Affairs +498402,Aboriginal Affairs,Aboriginal Affairs +522832,Arts and Culture,Arts and Culture +507424,Arts and Culture,Arts and Culture +507406,Arts and Culture,Arts and Culture +510069,Arts and Culture,Arts and Culture +518368,Arts and Culture,Arts and Culture +518367,Arts and Culture,Arts and Culture +498223,Arts and Culture,Arts and Culture +526329,Arts and Culture,Arts and Culture +522828,Arts and Culture,Arts and Culture +518367,Broadcasting,Broadcasting +498223,Broadcasting,Broadcasting +522828,Broadcasting,Broadcasting +510071,Arts and Culture,Arts and Culture +498224,Arts and Culture,Arts and Culture +541933,Arts and Culture,Arts and Culture +534538,Arts and Culture,Arts and Culture +526351,Broadcasting,Broadcasting +518369,Broadcasting,Broadcasting +510073,Broadcasting,Broadcasting +515795,Arts and Culture,Arts and Culture +515798,Arts and Culture,Arts and Culture +496576,Arts and Culture,Arts and Culture +501137,Arts and Culture,Arts and Culture +501129,Arts and Culture,Arts and Culture +501142,Arts and Culture,Arts and Culture +501132,Arts and Culture,Arts and Culture +501146,Arts and Culture,Arts and Culture +501134,Arts and Culture,Arts and Culture +501138,Arts and Culture,Arts and Culture +501131,Arts and Culture,Arts and Culture +501144,Arts and Culture,Arts and Culture +501133,Arts and Culture,Arts and Culture +501145,Arts and Culture,Arts and Culture +501135,Arts and Culture,Arts and Culture +499236,Aboriginal Affairs,Aboriginal Affairs +496346,Aboriginal Affairs,Aboriginal Affairs +499254,Aboriginal Affairs,Aboriginal Affairs +519463,Aboriginal Affairs,Aboriginal Affairs +514260,Aboriginal Affairs,Aboriginal Affairs +512777,Aboriginal Affairs,Aboriginal Affairs +507916,Aboriginal Affairs,Aboriginal Affairs +505076,Aboriginal Affairs,Aboriginal Affairs +502286,Aboriginal Affairs,Aboriginal Affairs +500778,Aboriginal Affairs,Aboriginal Affairs +500767,Aboriginal Affairs,Aboriginal Affairs +500765,Aboriginal Affairs,Aboriginal Affairs +528388,Aboriginal Affairs,Aboriginal Affairs +525479,Aboriginal Affairs,Aboriginal Affairs +522518,Aboriginal Affairs,Aboriginal Affairs +544395,Aboriginal Affairs,Aboriginal Affairs +541111,Aboriginal Affairs,Aboriginal Affairs +541107,Aboriginal Affairs,Aboriginal Affairs +541106,Aboriginal Affairs,Aboriginal Affairs +539771,Aboriginal Affairs,Aboriginal Affairs +536393,Aboriginal Affairs,Aboriginal Affairs +531653,Aboriginal Affairs,Aboriginal Affairs +530607,Aboriginal Affairs,Aboriginal Affairs +530606,Aboriginal Affairs,Aboriginal Affairs +528197,Aboriginal Affairs,Aboriginal Affairs +526766,Aboriginal Affairs,Aboriginal Affairs +521414,Aboriginal Affairs,Aboriginal Affairs +511670,Aboriginal Affairs,Aboriginal Affairs +509291,Aboriginal Affairs,Aboriginal Affairs +509286,Aboriginal Affairs,Aboriginal Affairs +506335,Aboriginal Affairs,Aboriginal Affairs +503807,Aboriginal Affairs,Aboriginal Affairs +503522,Aboriginal Affairs,Aboriginal Affairs +503236,Aboriginal Affairs,Aboriginal Affairs +496678,Arts and Culture,Arts and Culture +516924,Telecommunications,Telecommunications +496727,Telecommunications,Telecommunications +534265,Telecommunications,Telecommunications +533462,Telecommunications,Telecommunications +500046,Science and Technology,Science and Technology +507956,Science and Technology,Science and Technology +507952,Science and Technology,Science and Technology +517634,Science and Technology,Science and Technology +507998,Science and Technology,Science and Technology +507992,Science and Technology,Science and Technology +507987,Science and Technology,Science and Technology +507984,Science and Technology,Science and Technology +507978,Science and Technology,Science and Technology +503690,Arts and Culture,Arts and Culture +506810,Science and Technology,Science and Technology +500296,Science and Technology,Science and Technology +526905,Science and Technology,Science and Technology +509660,Science and Technology,Science and Technology +509657,Science and Technology,Science and Technology +510793,Telecommunications,Telecommunications +510789,Telecommunications,Telecommunications +540409,Telecommunications,Telecommunications +536472,Telecommunications,Telecommunications +532713,Telecommunications,Telecommunications +532595,Telecommunications,Telecommunications +521631,Telecommunications,Telecommunications +516061,Telecommunications,Telecommunications +510793,Science and Technology,Science and Technology +510789,Science and Technology,Science and Technology +521631,Science and Technology,Science and Technology +507804,Science and Technology,Science and Technology +497199,Aboriginal Affairs,Aboriginal Affairs +503799,Science and Technology,Science and Technology +503130,Science and Technology,Science and Technology +514286,Science and Technology,Science and Technology +509822,Science and Technology,Science and Technology +497256,Science and Technology,Science and Technology +497255,Science and Technology,Science and Technology +502461,Science and Technology,Science and Technology +497263,Science and Technology,Science and Technology +497262,Science and Technology,Science and Technology +497261,Science and Technology,Science and Technology +497260,Science and Technology,Science and Technology +497259,Science and Technology,Science and Technology +497258,Science and Technology,Science and Technology +497243,Broadcasting,Broadcasting +497241,Broadcasting,Broadcasting +501417,Aboriginal Affairs,Aboriginal Affairs +532312,Broadcasting,Broadcasting +523385,Broadcasting,Broadcasting +523384,Broadcasting,Broadcasting +505206,Broadcasting,Broadcasting +502042,Broadcasting,Broadcasting +502040,Broadcasting,Broadcasting +502039,Broadcasting,Broadcasting +507983,Arts and Culture,Arts and Culture +504431,Arts and Culture,Arts and Culture +510728,Arts and Culture,Arts and Culture +510725,Arts and Culture,Arts and Culture +507989,Arts and Culture,Arts and Culture +507988,Arts and Culture,Arts and Culture +497445,Arts and Culture,Arts et culture +497444,Arts and Culture,Arts et culture +518245,Arts and Culture,Arts et culture +514259,Arts and Culture,Arts et culture +514258,Arts and Culture,Arts et culture +504870,Science and Technology,Science and Technology +501693,Science and Technology,Science and Technology +531955,Science and Technology,Science and Technology +529273,Science and Technology,Science and Technology +526226,Science and Technology,Science and Technology +526218,Science and Technology,Science and Technology +519914,Science and Technology,Science and Technology +519908,Science and Technology,Science and Technology +517366,Science and Technology,Science and Technology +517497,Aboriginal Affairs,Aboriginal Affairs +516547,Aboriginal Affairs,Aboriginal Affairs +508926,Science and Technology,Science and Technology +508922,Science and Technology,Science and Technology +501767,Aboriginal Affairs,Aboriginal Affairs +499749,Aboriginal Affairs,Aboriginal Affairs +508451,Broadcasting,Broadcasting +502069,Broadcasting,Broadcasting +505471,Arts and Culture,Arts and Culture +502435,Science and Technology,Sciences et technologies +502420,Science and Technology,Sciences et technologies +504888,Science and Technology,Sciences et technologies +504883,Science and Technology,Sciences et technologies +504881,Science and Technology,Sciences et technologies +504854,Science and Technology,Sciences et technologies +502484,Science and Technology,Sciences et technologies +502482,Science and Technology,Sciences et technologies +502480,Science and Technology,Sciences et technologies +502478,Science and Technology,Sciences et technologies +502474,Science and Technology,Sciences et technologies +502471,Science and Technology,Sciences et technologies +502458,Science and Technology,Sciences et technologies +502454,Science and Technology,Sciences et technologies +499786,Science and Technology,Science and Technology +500855,Science and Technology,Science and Technology +512602,Industry,Industry +498992,Industry,Industry +510767,Tourism,Tourism +503818,Tourism,Tourism +513244,Tourism,Tourism +500083,Employment and Training,Employment and Training +499917,Employment and Training,Employment and Training +506184,Employment and Training,Employment and Training +504068,Employment and Training,Employment and Training +503290,Employment and Training,Employment and Training +500303,Employment and Training,Employment and Training +500111,Employment and Training,Employment and Training +500084,Government Procurement,Government Procurement +500083,Government Procurement,Government Procurement +499917,Government Procurement,Government Procurement +500084,Labour,Labour +500083,Labour,Labour +506184,Labour,Labour +503290,Labour,Labour +500303,Labour,Labour +499207,Health,Health +499149,Health,Health +519740,Health,Health +512883,Health,Health +512873,Health,Health +510555,Health,Health +509711,Health,Health +507830,Health,Health +504573,Health,Health +504572,Health,Health +504566,Health,Health +501864,Health,Health +501848,Health,Health +499448,Health,Health +513891,Economic Development,Economic Development +513880,Economic Development,Economic Development +514949,Economic Development,Economic Development +499545,Economic Development,Economic Development +499288,Health,Health +499277,Health,Health +518535,Health,Health +508723,Health,Health +502655,Health,Health +502650,Health,Health +502438,Economic Development,Développement économique +502420,Economic Development,Développement économique +502484,Economic Development,Développement économique +502480,Economic Development,Développement économique +502478,Economic Development,Développement économique +502474,Economic Development,Développement économique +502471,Economic Development,Développement économique +502454,Economic Development,Développement économique +502441,Research and Development,Recherche et développement +502484,Health,Santé +502482,Health,Santé +502480,Health,Santé +502478,Health,Santé +502474,Health,Santé +502471,Health,Santé +502458,Health,Santé +502454,Health,Santé +505166,Economic Development,Développement économique +505163,Economic Development,Développement économique +512000,Climate,Climate +499552,Climate,Climate +543929,Climate,Climate +543828,Climate,Climate +541422,Climate,Climate +541419,Climate,Climate +537349,Climate,Climate +537122,Climate,Climate +537120,Climate,Climate +537116,Climate,Climate +534948,Climate,Climate +534947,Climate,Climate +534946,Climate,Climate +528208,Climate,Climate +528200,Climate,Climate +528194,Climate,Climate +522265,Climate,Climate +525492,Labour,Labour +523664,Labour,Labour +526273,Labour,Labour +502912,Research and Development,Research and Development +502912,Economic Development,Economic Development +502911,Economic Development,Economic Development +514077,Economic Development,Economic Development +504721,Economic Development,Economic Development +504711,Economic Development,Economic Development +502912,Industry,Industry +502911,Industry,Industry +502911,Mining,Mining +502910,Mining,Mining +514079,Mining,Mining +514077,Mining,Mining +504721,Mining,Mining +504692,Mining,Mining +506531,Infrastructure,Infrastructure +506529,Infrastructure,Infrastructure +526165,Climate,Climate +525951,Climate,Climate +529140,Climate,Climate +529138,Climate,Climate +529133,Climate,Climate +529132,Climate,Climate +529129,Climate,Climate +522729,Environment,Environment +501637,Environment,Environment +529140,Environment,Environment +529138,Environment,Environment +529133,Environment,Environment +529132,Environment,Environment +529129,Environment,Environment +529126,Environment,Environment +526165,Environment,Environment +525951,Environment,Environment +500855,Industry,Industry +501697,Economic Development,Economic Development +501696,Economic Development,Economic Development +508954,Economic Development,Economic Development +501696,Housing,Housing +501697,Infrastructure,Infrastructure +501696,Infrastructure,Infrastructure +501697,Municipalities,Municipalities +501696,Municipalities,Municipalities +519893,Municipalities,Municipalities +517389,Municipalities,Municipalities +508954,Municipalities,Municipalities +501697,Regional Development,Regional Development +501696,Regional Development,Regional Development +519893,Regional Development,Regional Development +501697,Sports,Sports +501696,Sports,Sports +522598,Sports,Sports +519893,Sports,Sports +517389,Sports,Sports +508951,Sports,Sports +510881,Health,Health +508565,Health,Health +541717,Health,Health +537769,Health,Health +502098,Agriculture,Agriculture +502097,Agriculture,Agriculture +502101,Agriculture,Agriculture +502097,Environment,Environment +527688,Consumer Issues,Consumer Issues +526746,Consumer Issues,Consumer Issues +500941,Climate,Climate +500938,Climate,Climate +500947,Climate,Climate +500945,Climate,Climate +500943,Climate,Climate +503969,Energy,Energy +506791,Environment,Environment +503971,Environment,Environment +509186,Environment,Environment +509185,Environment,Environment +507552,Budget,Budget +507552,Economic Development,Economic Development +507552,Health,Health +507552,Industry,Industry +507552,Intellectual Property,Intellectual Property +507552,Taxation and Finance,Taxation and Finance +505944,Small Business,Small Business +505937,Small Business,Small Business +505955,Small Business,Small Business +505954,Small Business,Small Business +505953,Small Business,Small Business +505952,Small Business,Small Business +505951,Small Business,Small Business +505950,Small Business,Small Business +505949,Small Business,Small Business +505948,Small Business,Small Business +505947,Small Business,Small Business +505944,Tourism,Tourism +505937,Tourism,Tourism +505955,Tourism,Tourism +505954,Tourism,Tourism +505953,Tourism,Tourism +505952,Tourism,Tourism +505951,Tourism,Tourism +505950,Tourism,Tourism +505949,Tourism,Tourism +505948,Tourism,Tourism +505947,Tourism,Tourism +502888,Agriculture,Agriculture +499954,Agriculture,Agriculture +543313,Agriculture,Agriculture +543312,Agriculture,Agriculture +543311,Agriculture,Agriculture +543310,Agriculture,Agriculture +543309,Agriculture,Agriculture +543307,Agriculture,Agriculture +536852,Agriculture,Agriculture +536831,Agriculture,Agriculture +536830,Agriculture,Agriculture +536829,Agriculture,Agriculture +536828,Agriculture,Agriculture +536827,Agriculture,Agriculture +536826,Agriculture,Agriculture +531143,Agriculture,Agriculture +531142,Agriculture,Agriculture +531141,Agriculture,Agriculture +518347,Agriculture,Agriculture +511194,Agriculture,Agriculture +511192,Agriculture,Agriculture +511190,Agriculture,Agriculture +511189,Agriculture,Agriculture +511187,Agriculture,Agriculture +511185,Agriculture,Agriculture +511184,Agriculture,Agriculture +511181,Agriculture,Agriculture +508920,Agriculture,Agriculture +502968,Agriculture,Agriculture +502891,Agriculture,Agriculture +536826,Environment,Environment +518347,Environment,Environment +536831,Environment,Environment +536830,Environment,Environment +536829,Environment,Environment +536828,Environment,Environment +506467,Infrastructure,Infrastructure +506466,Infrastructure,Infrastructure +506337,International Trade,International Trade +499878,International Trade,International Trade +500760,Justice and Law Enforcement,Justice and Law Enforcement +507147,Justice and Law Enforcement,Justice and Law Enforcement +506018,Small Business,Small Business +500760,Small Business,Small Business +510742,Climate,Climate +529472,Energy,Energy +505433,Energy,Energy +532242,Environment,Environment +532241,Environment,Environment +529472,Environment,Environment +513543,Environment,Environment +536177,Environment,Environment +532241,Housing,Housing +529487,Housing,Housing +513543,Housing,Housing +510742,Housing,Housing +505433,Housing,Housing +536177,Housing,Housing +536172,Housing,Housing +532258,Housing,Housing +502917,Research and Development,Recherche et développement +500148,Research and Development,Recherche et développement +540499,Research and Development,Recherche et développement +539182,Research and Development,Recherche et développement +538758,Research and Development,Recherche et développement +532558,Research and Development,Recherche et développement +532112,Research and Development,Recherche et développement +529343,Research and Development,Recherche et développement +528061,Research and Development,Recherche et développement +521469,Research and Development,Recherche et développement +521103,Research and Development,Recherche et développement +514491,Research and Development,Recherche et développement +514348,Research and Development,Recherche et développement +514315,Research and Development,Recherche et développement +514306,Research and Development,Recherche et développement +513558,Research and Development,Recherche et développement +509974,Research and Development,Recherche et développement +509346,Research and Development,Recherche et développement +509345,Research and Development,Recherche et développement +503440,Research and Development,Recherche et développement +506344,Government Procurement,Government Procurement +500892,Agriculture,Agriculture +500891,Agriculture,Agriculture +540627,Agriculture,Agriculture +540626,Agriculture,Agriculture +540624,Agriculture,Agriculture +540622,Agriculture,Agriculture +540618,Agriculture,Agriculture +540617,Agriculture,Agriculture +540616,Agriculture,Agriculture +540615,Agriculture,Agriculture +527328,Agriculture,Agriculture +527327,Agriculture,Agriculture +527326,Agriculture,Agriculture +540617,Environment,Environment +527327,Environment,Environment +540627,Environment,Environment +540626,Environment,Environment +540624,Environment,Environment +540622,Environment,Environment +503584,Defence,Defence +503583,Defence,Defence +509187,Defence,Defence +503584,Infrastructure,Infrastructure +503583,Infrastructure,Infrastructure +539787,Infrastructure,Infrastructure +509187,Infrastructure,Infrastructure +506105,Regional Development,Regional Development +503583,Regional Development,Regional Development +503584,Transportation,Transportation +503583,Transportation,Transportation +539787,Transportation,Transportation +509187,Transportation,Transportation +506167,Transportation,Transportation +506601,Industry,Industry +500511,Immigration,Immigration +510379,Housing,Housing +503247,Housing,Housing +533304,Housing,Housing +528635,Housing,Housing +503247,Energy,Energy +510379,Climate,Climate +503247,Climate,Climate +510379,Environment,Environment +503247,Environment,Environment +533304,Environment,Environment +528635,Environment,Environment +510198,International Trade,International Trade +510195,International Trade,International Trade +503147,International Trade,International Trade +502728,Infrastructure,Infrastructure +517884,Municipalities,Municipalities +517884,Small Business,Small Business +502728,Small Business,Small Business +531415,Small Business,Small Business +531415,Tourism,Tourism +503879,Economic Development,Economic Development +500696,Economic Development,Economic Development +513059,Economic Development,Economic Development +513058,Economic Development,Economic Development +509982,Economic Development,Economic Development +503879,Regional Development,Regional Development +500696,Regional Development,Regional Development +513059,Regional Development,Regional Development +513058,Regional Development,Regional Development +509982,Regional Development,Regional Development +503879,Research and Development,Research and Development +500696,Research and Development,Research and Development +513059,Research and Development,Research and Development +513058,Research and Development,Research and Development +503880,Economic Development,Economic Development +500698,Economic Development,Economic Development +513061,Economic Development,Economic Development +513060,Economic Development,Economic Development +509983,Economic Development,Economic Development +513061,Regional Development,Regional Development +513060,Regional Development,Regional Development +509983,Regional Development,Regional Development +503891,Regional Development,Regional Development +503880,Research and Development,Research and Development +500698,Research and Development,Research and Development +513061,Research and Development,Research and Development +513060,Research and Development,Research and Development +510582,Industry,Industry +500972,Agriculture,Agriculture +500970,Agriculture,Agriculture +540732,Agriculture,Agriculture +524065,Agriculture,Agriculture +524062,Agriculture,Agriculture +524060,Agriculture,Agriculture +518626,Agriculture,Agriculture +518625,Agriculture,Agriculture +500972,Environment,Environment +518625,International Trade,International Trade +510381,Industry,Industry +501626,Climate,Climate +501625,Climate,Climate +529305,Climate,Climate +502562,Climate,Climate +501628,Economic Development,Economic Development +501626,Energy,Energy +501625,Energy,Energy +529305,Energy,Energy +502562,Energy,Energy +529305,Environment,Environment +525870,Environment,Environment +502562,Environment,Environment +501628,Environment,Environment +501625,Infrastructure,Infrastructure +501625,Regional Development,Regional Development +500168,International Relations,International Relations +506239,International Relations,International Relations +503787,International Relations,International Relations +503278,International Relations,International Relations +500168,Justice and Law Enforcement,Justice and Law Enforcement +500167,Justice and Law Enforcement,Justice and Law Enforcement +509082,Justice and Law Enforcement,Justice and Law Enforcement +506750,Justice and Law Enforcement,Justice and Law Enforcement +506239,Justice and Law Enforcement,Justice and Law Enforcement +506171,Justice and Law Enforcement,Justice and Law Enforcement +503787,Justice and Law Enforcement,Justice and Law Enforcement +503492,Justice and Law Enforcement,Justice and Law Enforcement +503278,Justice and Law Enforcement,Justice and Law Enforcement +506750,Security,Security +506239,Security,Security +503492,Security,Security +503278,Security,Security +500376,Security,Security +500168,Transportation,Transportation +500167,Transportation,Transportation +503492,Transportation,Transportation +503278,Transportation,Transportation +504323,Employment and Training,Employment and Training +504313,Employment and Training,Employment and Training +511006,Employment and Training,Employment and Training +504952,Consumer Issues,Consumer Issues +504942,Consumer Issues,Consumer Issues +504952,Financial Institutions,Financial Institutions +504942,Financial Institutions,Financial Institutions +501508,Budget,Budget +500493,Budget,Budget +500493,Health,Health +532960,Health,Health +508775,Health,Health +508772,Health,Health +506909,Health,Health +506411,Health,Health +506169,Health,Health +502375,Health,Health +517222,International Relations,International Relations +500126,International Relations,International Relations +536921,International Relations,International Relations +536918,International Relations,International Relations +536916,International Relations,International Relations +536913,International Relations,International Relations +536911,International Relations,International Relations +536905,International Relations,International Relations +535355,International Relations,International Relations +525774,International Relations,International Relations +517227,International Relations,International Relations +517225,International Relations,International Relations +501808,Health,Health +503432,Agriculture,Agriculture +500137,Agriculture,Agriculture +541009,Agriculture,Agriculture +523576,Agriculture,Agriculture +520762,Agriculture,Agriculture +516695,Agriculture,Agriculture +506295,Climate,Climate +503432,Climate,Climate +500137,Climate,Climate +503432,Environment,Environment +500137,Environment,Environment +527456,Environment,Environment +527419,Environment,Environment +523576,Environment,Environment +520908,Environment,Environment +520762,Environment,Environment +516695,Environment,Environment +523576,Health,Health +506295,Health,Health +541009,Health,Health +515198,Economic Development,Economic Development +500154,Economic Development,Economic Development +502481,Employment and Training,Employment and Training +502481,Labour,Labour +502481,Health,Health +511854,Environment,Environment +509101,Environment,Environment +538914,Environment,Environment +536117,Environment,Environment +533158,Environment,Environment +532900,Environment,Environment +516889,Housing,Housing +511854,Housing,Housing +538914,Housing,Housing +533158,Housing,Housing +523920,Economic Development,Economic Development +520761,Economic Development,Economic Development +502396,Immigration,Immigration +502394,Immigration,Immigration +505419,Immigration,Immigration +505418,Immigration,Immigration +505415,Immigration,Immigration +524358,Environment,Environment +500197,Environment,Environment +524362,Environment,Environment +524361,Environment,Environment +524360,Environment,Environment +506260,Regional Development,Regional Development +504593,Transportation,Transportation +500834,Budget,Budget +500769,Budget,Budget +506582,Budget,Budget +526894,Economic Development,Economic Development +500494,Economic Development,Economic Development +538873,Economic Development,Economic Development +538813,Economic Development,Economic Development +537255,Economic Development,Economic Development +537255,Employment and Training,Employment and Training +527319,Employment and Training,Employment and Training +538873,Employment and Training,Employment and Training +526894,Government Procurement,Government Procurement +500494,Government Procurement,Government Procurement +538813,Government Procurement,Government Procurement +537264,Government Procurement,Government Procurement +510101,Agriculture,Agriculture +510101,Labour,Labour +506142,Labour,Labour +539286,Economic Development,Economic Development +539285,Economic Development,Economic Development +541910,Economic Development,Economic Development +539295,Economic Development,Economic Development +539294,Economic Development,Economic Development +539293,Economic Development,Economic Development +539292,Economic Development,Economic Development +539291,Economic Development,Economic Development +539290,Economic Development,Economic Development +539289,Economic Development,Economic Development +539288,Economic Development,Economic Development +539341,Housing,Housing +539340,Housing,Housing +539339,Housing,Housing +539338,Housing,Housing +539337,Housing,Housing +539335,Housing,Housing +539334,Housing,Housing +539333,Housing,Housing +539332,Housing,Housing +539331,Housing,Housing +539330,Housing,Housing +539329,Housing,Housing +539327,Housing,Housing +539326,Housing,Housing +539325,Housing,Housing +539324,Housing,Housing +539322,Housing,Housing +539320,Housing,Housing +539319,Housing,Housing +539318,Housing,Housing +539317,Housing,Housing +539316,Housing,Housing +539315,Housing,Housing +539314,Housing,Housing +539313,Housing,Housing +539309,Housing,Housing +539250,Housing,Housing +539247,Housing,Housing +541954,Housing,Housing +541953,Housing,Housing +539356,Housing,Housing +539355,Housing,Housing +539354,Housing,Housing +539353,Housing,Housing +539352,Housing,Housing +539351,Housing,Housing +539350,Housing,Housing +539349,Housing,Housing +539348,Housing,Housing +539347,Housing,Housing +539346,Housing,Housing +539251,Infrastructure,Infrastructure +539238,Infrastructure,Infrastructure +539236,Infrastructure,Infrastructure +539234,Infrastructure,Infrastructure +539233,Infrastructure,Infrastructure +539231,Infrastructure,Infrastructure +539229,Infrastructure,Infrastructure +539226,Infrastructure,Infrastructure +541915,Infrastructure,Infrastructure +541913,Infrastructure,Infrastructure +541906,Infrastructure,Infrastructure +539358,Infrastructure,Infrastructure +539357,Infrastructure,Infrastructure +539341,Infrastructure,Infrastructure +539323,Infrastructure,Infrastructure +539311,Infrastructure,Infrastructure +539310,Infrastructure,Infrastructure +539309,Infrastructure,Infrastructure +539308,Infrastructure,Infrastructure +539304,Infrastructure,Infrastructure +539303,Infrastructure,Infrastructure +539302,Infrastructure,Infrastructure +539301,Infrastructure,Infrastructure +539300,Infrastructure,Infrastructure +539299,Infrastructure,Infrastructure +539298,Infrastructure,Infrastructure +539269,Infrastructure,Infrastructure +539268,Infrastructure,Infrastructure +539267,Infrastructure,Infrastructure +539265,Infrastructure,Infrastructure +539264,Infrastructure,Infrastructure +539263,Infrastructure,Infrastructure +539245,Municipalities,Municipalities +539243,Municipalities,Municipalities +539344,Municipalities,Municipalities +539301,Municipalities,Municipalities +539297,Municipalities,Municipalities +539296,Municipalities,Municipalities +539254,Municipalities,Municipalities +539249,Municipalities,Municipalities +539248,Municipalities,Municipalities +521943,Environment,Environment +516221,Environment,Environment +528792,Environment,Environment +521947,Environment,Environment +521946,Environment,Environment +521943,Agriculture,Agriculture +516221,Agriculture,Agriculture +528792,Agriculture,Agriculture +521947,Agriculture,Agriculture +521946,Agriculture,Agriculture +516221,Economic Development,Economic Development +521943,International Trade,International Trade +516221,International Trade,International Trade +528792,International Trade,International Trade +521947,International Trade,International Trade +521946,International Trade,International Trade +521945,Economic Development,Economic Development +510639,Health,Health +507601,Health,Health +538518,Health,Health +534711,Health,Health +544184,Health,Health +503220,Industry,Industry +504128,Tourism,Tourism +503220,Tourism,Tourism +507674,Transportation,Transportation +503220,Transportation,Transportation +505197,Government Procurement,Government Procurement +505197,Health,Health +505197,Industry,Industry +505197,Security,Security +505197,Tourism,Tourism +505197,Transportation,Transportation +506807,Infrastructure,Infrastructure +506259,Infrastructure,Infrastructure +520518,Infrastructure,Infrastructure +520517,Infrastructure,Infrastructure +506807,Municipalities,Municipalities +506259,Municipalities,Municipalities +503439,Defence,Defence +503438,Defence,Defence +532666,Defence,Defence +514565,Defence,Defence +514564,Defence,Defence +509548,Defence,Defence +503439,Economic Development,Economic Development +503438,Economic Development,Economic Development +532666,Economic Development,Economic Development +514565,Economic Development,Economic Development +514564,Economic Development,Economic Development +509548,Economic Development,Economic Development +503439,Small Business,Small Business +503438,Small Business,Small Business +532666,Small Business,Small Business +514565,Small Business,Small Business +514564,Small Business,Small Business +502216,Tourism,Tourism +502216,Economic Development,Economic Development +502216,Small Business,Small Business +521185,International Trade,International Trade +511564,Consumer Issues,Consumer Issues +500465,Consumer Issues,Consumer Issues +533156,Consumer Issues,Consumer Issues +511061,Housing,Housing +504737,Housing,Housing +518695,Housing,Housing +511061,Justice and Law Enforcement,Justice and Law Enforcement +501701,Justice and Law Enforcement,Justice and Law Enforcement +542075,Justice and Law Enforcement,Justice and Law Enforcement +530014,Justice and Law Enforcement,Justice and Law Enforcement +530013,Justice and Law Enforcement,Justice and Law Enforcement +506374,Budget,Budget +503312,Economic Development,Economic Development +516263,Environment,Environment +506374,Environment,Environment +503692,Health,Health +503312,Health,Health +513530,Health,Health +521222,Industry,Industry +506374,Industry,Industry +527031,Industry,Industry +503312,Regional Development,Regional Development +506374,Taxation and Finance,Taxation and Finance +503312,Taxation and Finance,Taxation and Finance +527031,Taxation and Finance,Taxation and Finance +526488,Taxation and Finance,Taxation and Finance +521222,Taxation and Finance,Taxation and Finance +516263,Taxation and Finance,Taxation and Finance +506374,Transportation,Transportation +503692,Transportation,Transportation +526488,Transportation,Transportation +521222,Transportation,Transportation +516263,Transportation,Transportation +503666,Energy,Energy +503665,Energy,Energy +536519,Energy,Energy +506824,Energy,Energy +506822,Energy,Energy +503669,Energy,Energy +503668,Energy,Energy +537257,Agriculture,Agriculture +530878,Agriculture,Agriculture +542683,Agriculture,Agriculture +541337,Consumer Issues,Consumer Issues +541335,Consumer Issues,Consumer Issues +519083,Economic Development,Economic Development +518846,Economic Development,Economic Development +542676,Economic Development,Economic Development +541338,Economic Development,Economic Development +539047,Economic Development,Economic Development +539044,Economic Development,Economic Development +539041,Economic Development,Economic Development +539040,Economic Development,Economic Development +539038,Economic Development,Economic Development +539037,Economic Development,Economic Development +539036,Economic Development,Economic Development +537258,Employment and Training,Employment and Training +537257,Employment and Training,Employment and Training +539046,Employment and Training,Employment and Training +539047,Environment,Environment +539046,Environment,Environment +539045,Environment,Environment +539041,Environment,Environment +539040,Environment,Environment +539038,Environment,Environment +539037,Environment,Environment +528134,Environment,Environment +528133,Environment,Environment +528132,Environment,Environment +528129,Environment,Environment +524980,Environment,Environment +519085,Health,Health +519084,Health,Health +533646,Health,Health +524982,Health,Health +521668,Health,Health +519141,Health,Health +519088,Health,Health +519087,Health,Health +542685,Immigration,Immigration +542683,Immigration,Immigration +542681,Immigration,Immigration +542680,Immigration,Immigration +542678,Immigration,Immigration +542677,Immigration,Immigration +541338,Immigration,Immigration +541337,Immigration,Immigration +541336,Immigration,Immigration +541335,Immigration,Immigration +541334,Immigration,Immigration +541333,Immigration,Immigration +539046,Immigration,Immigration +539045,Immigration,Immigration +539044,Immigration,Immigration +539039,Immigration,Immigration +537257,Immigration,Immigration +533647,Immigration,Immigration +530878,Immigration,Immigration +528130,Immigration,Immigration +542681,Industry,Industry +539045,Industry,Industry +530878,Industry,Industry +528134,Industry,Industry +542686,Industry,Industry +519085,International Trade,International Trade +519084,International Trade,International Trade +541332,International Trade,International Trade +539042,International Trade,International Trade +528129,International Trade,International Trade +524986,International Trade,International Trade +524982,International Trade,International Trade +521668,International Trade,International Trade +519141,International Trade,International Trade +519088,International Trade,International Trade +519087,International Trade,International Trade +541331,Justice and Law Enforcement,Justice and Law Enforcement +539038,Justice and Law Enforcement,Justice and Law Enforcement +537257,Justice and Law Enforcement,Justice and Law Enforcement +542676,Justice and Law Enforcement,Justice and Law Enforcement +519083,Labour,Labour +518846,Labour,Labour +542686,Labour,Labour +542685,Labour,Labour +542683,Labour,Labour +542681,Labour,Labour +542680,Labour,Labour +542678,Labour,Labour +542677,Labour,Labour +542676,Labour,Labour +541337,Labour,Labour +541336,Labour,Labour +541335,Labour,Labour +541334,Labour,Labour +539039,Labour,Labour +533645,Labour,Labour +530878,Labour,Labour +528132,Labour,Labour +528130,Labour,Labour +528129,Labour,Labour +524986,Labour,Labour +524982,Labour,Labour +521668,Labour,Labour +519141,Labour,Labour +519088,Labour,Labour +519087,Labour,Labour +519086,Labour,Labour +541335,Regional Development,Regional Development +541327,Regional Development,Regional Development +539043,Taxation and Finance,Taxation and Finance +528129,Taxation and Finance,Taxation and Finance +519084,Transportation,Transportation +518844,Transportation,Transportation +542686,Transportation,Transportation +542685,Transportation,Transportation +541338,Transportation,Transportation +541337,Transportation,Transportation +541335,Transportation,Transportation +541334,Transportation,Transportation +541333,Transportation,Transportation +539047,Transportation,Transportation +539046,Transportation,Transportation +539044,Transportation,Transportation +539042,Transportation,Transportation +539040,Transportation,Transportation +537258,Transportation,Transportation +537257,Transportation,Transportation +533647,Transportation,Transportation +533645,Transportation,Transportation +530878,Transportation,Transportation +528132,Transportation,Transportation +528129,Transportation,Transportation +524982,Transportation,Transportation +521668,Transportation,Transportation +519141,Transportation,Transportation +519088,Transportation,Transportation +519087,Transportation,Transportation +519086,Transportation,Transportation +539729,Economic Development,Développement économique +539728,Economic Development,Développement économique +514184,Economic Development,Développement économique +540766,Economic Development,Développement économique +540765,Economic Development,Développement économique +508614,Agriculture,Agriculture +508613,Agriculture,Agriculture +514405,Agriculture,Agriculture +509726,Agriculture,Agriculture +508614,Economic Development,Economic Development +508613,Economic Development,Economic Development +514405,Economic Development,Economic Development +509726,Economic Development,Economic Development +500790,Housing,Logement +500789,Housing,Logement +503112,Housing,Logement +500793,Housing,Logement +500792,Housing,Logement +512102,Immigration,Immigration +501027,Consumer Issues,Consumer Issues +501023,Consumer Issues,Consumer Issues +503806,Health,Health +503524,Health,Health +535962,Health,Health +506334,Health,Health +506333,Health,Health +503806,Research and Development,Research and Development +503524,Research and Development,Research and Development +541113,Research and Development,Research and Development +541104,Research and Development,Research and Development +539154,Research and Development,Research and Development +539153,Research and Development,Research and Development +535962,Research and Development,Research and Development +531643,Research and Development,Research and Development +530989,Research and Development,Research and Development +530603,Research and Development,Research and Development +524251,Research and Development,Research and Development +506334,Research and Development,Research and Development +506333,Research and Development,Research and Development +522048,Energy,Energy +515658,Energy,Energy +544149,Energy,Energy +541373,Energy,Energy +539934,Energy,Energy +538313,Energy,Energy +532068,Energy,Energy +528580,Energy,Energy +528560,Energy,Energy +525654,Energy,Energy +525647,Energy,Energy +522048,Environment,Environment +508533,Environment,Environment +544149,Environment,Environment +541373,Environment,Environment +539934,Environment,Environment +532068,Environment,Environment +528580,Environment,Environment +528560,Environment,Environment +525654,Environment,Environment +525647,Environment,Environment +515658,International Trade,International Trade +507454,Employment and Training,Employment and Training +504476,Employment and Training,Employment and Training +512878,Employment and Training,Employment and Training +506893,Transportation,Transportation +506095,Transportation,Transportation +509325,Transportation,Transportation +500773,Taxation and Finance,Taxation and Finance +510418,Tourism,Tourism +510413,Tourism,Tourism +510426,Tourism,Tourism +510418,Economic Development,Economic Development +510413,Economic Development,Economic Development +510426,Economic Development,Economic Development +510418,Immigration,Immigration +510413,Immigration,Immigration +510426,Immigration,Immigration +510418,Sports,Sports +510413,Sports,Sports +510426,Sports,Sports +501712,Health,Health +507225,Health,Health +503546,Health,Health +506347,Transportation,Transportation +511267,Government Procurement,Government Procurement +505468,Government Procurement,Government Procurement +505468,Industry,Industry +511267,Privacy and Access to Information,Privacy and Access to Information +505468,Privacy and Access to Information,Privacy and Access to Information +505468,Security,Security +504133,Government Procurement,Government Procurement +504132,Government Procurement,Government Procurement +534218,Government Procurement,Government Procurement +534214,Government Procurement,Government Procurement +534205,Government Procurement,Government Procurement +524603,Government Procurement,Government Procurement +507653,Government Procurement,Government Procurement +507651,Government Procurement,Government Procurement +507650,Government Procurement,Government Procurement +507649,Government Procurement,Government Procurement +504133,Regional Development,Regional Development +504132,Regional Development,Regional Development +534218,Regional Development,Regional Development +534214,Regional Development,Regional Development +534205,Regional Development,Regional Development +524603,Regional Development,Regional Development +517125,Regional Development,Regional Development +510396,Regional Development,Regional Development +507653,Regional Development,Regional Development +507651,Regional Development,Regional Development +507650,Regional Development,Regional Development +507649,Regional Development,Regional Development +524302,Government Procurement,Government Procurement +543760,International Trade,International Trade +543760,Taxation and Finance,Taxation and Finance +543760,Economic Development,Economic Development +527268,Budget,Budget +522567,Budget,Budget +518756,Budget,Budget +516575,Budget,Budget +515484,Budget,Budget +511995,Budget,Budget +511754,Budget,Budget +511680,Budget,Budget +511175,Budget,Budget +509408,Budget,Budget +509081,Budget,Budget +507211,Budget,Budget +506888,Budget,Budget +506406,Budget,Budget +506226,Budget,Budget +506088,Budget,Budget +506165,Employment and Training,Employment and Training +506088,Employment and Training,Employment and Training +522567,Employment and Training,Employment and Training +518756,Employment and Training,Employment and Training +515484,Employment and Training,Employment and Training +514765,Employment and Training,Employment and Training +514194,Employment and Training,Employment and Training +513637,Employment and Training,Employment and Training +511995,Employment and Training,Employment and Training +511754,Employment and Training,Employment and Training +511680,Employment and Training,Employment and Training +511175,Employment and Training,Employment and Training +509408,Employment and Training,Employment and Training +507211,Employment and Training,Employment and Training +506888,Employment and Training,Employment and Training +506406,Employment and Training,Employment and Training +506274,Employment and Training,Employment and Training +527268,Health,Health +522567,Health,Health +518756,Health,Health +516575,Health,Health +515484,Health,Health +514765,Health,Health +514194,Health,Health +513637,Health,Health +511995,Health,Health +511754,Health,Health +511680,Health,Health +511175,Health,Health +509408,Health,Health +509081,Health,Health +507211,Health,Health +506888,Health,Health +506406,Health,Health +506274,Health,Health +506226,Health,Health +506165,Health,Health +506088,Health,Health +506165,Research and Development,Research and Development +506088,Research and Development,Research and Development +529168,Research and Development,Research and Development +527268,Research and Development,Research and Development +522567,Research and Development,Research and Development +518756,Research and Development,Research and Development +515484,Research and Development,Research and Development +514194,Research and Development,Research and Development +513637,Research and Development,Research and Development +511995,Research and Development,Research and Development +511754,Research and Development,Research and Development +511680,Research and Development,Research and Development +511175,Research and Development,Research and Development +509408,Research and Development,Research and Development +509081,Research and Development,Research and Development +507211,Research and Development,Research and Development +506888,Research and Development,Research and Development +506406,Research and Development,Research and Development +506274,Research and Development,Research and Development +509079,Health,Health +503296,Housing,Housing +504167,Sports,Sports +502442,Economic Development,Economic Development +502439,Economic Development,Economic Development +506849,Economic Development,Economic Development +506172,Economic Development,Economic Development +502442,Municipalities,Municipalities +502439,Municipalities,Municipalities +506849,Municipalities,Municipalities +506172,Municipalities,Municipalities +506164,Municipalities,Municipalities +502442,Regional Development,Regional Development +502439,Regional Development,Regional Development +506849,Regional Development,Regional Development +506172,Regional Development,Regional Development +506164,Regional Development,Regional Development +502442,Transportation,Transportation +502439,Transportation,Transportation +506849,Transportation,Transportation +506172,Transportation,Transportation +506164,Transportation,Transportation +507388,Privacy and Access to Information,Privacy and Access to Information +503669,Infrastructure,Infrastructure +503666,Infrastructure,Infrastructure +536522,Infrastructure,Infrastructure +536519,Infrastructure,Infrastructure +503745,Energy,Energy +503744,Energy,Energy +526319,Energy,Energy +519328,Energy,Energy +517666,Energy,Energy +514885,Energy,Energy +511055,Energy,Energy +503745,Environment,Environment +503744,Environment,Environment +526319,Environment,Environment +519328,Environment,Environment +517666,Environment,Environment +514885,Environment,Environment +511055,Environment,Environment +519328,Taxation and Finance,Taxation and Finance +517666,Taxation and Finance,Taxation and Finance +501137,Regional Development,Regional Development +508464,Financial Institutions,Financial Institutions +501148,Financial Institutions,Financial Institutions +538353,Financial Institutions,Financial Institutions +535055,Financial Institutions,Financial Institutions +520137,Financial Institutions,Financial Institutions +520136,Financial Institutions,Financial Institutions +520136,Infrastructure,Infrastructure +513159,Infrastructure,Infrastructure +535055,Infrastructure,Infrastructure +522860,Infrastructure,Infrastructure +523037,Agriculture,Agriculture +501229,Agriculture,Agriculture +530225,Agriculture,Agriculture +501288,Budget,Budget +506530,Budget,Budget +501305,Budget,Budget +509486,Budget,Budget +509028,Infrastructure,Infrastructure +513456,Infrastructure,Infrastructure +510488,Infrastructure,Infrastructure +501370,Infrastructure,Infrastructure +505553,Health,Health +505553,Immigration,Immigration +505553,Employment and Training,Employment and Training +508908,Budget,Budget +508900,Budget,Budget +508900,Health,Health +506504,Health,Health +513609,Government Procurement,Government Procurement +513609,Security,Security +523356,Defence,Defence +523341,Government Procurement,Government Procurement +511183,Government Procurement,Government Procurement +536506,Government Procurement,Government Procurement +520478,Research and Development,Research and Development +503026,Climate,Climate +503025,Climate,Climate +506276,Climate,Climate +503026,Economic Development,Economic Development +503025,Economic Development,Economic Development +506276,Economic Development,Economic Development +503026,Environment,Environment +503025,Environment,Environment +506276,Environment,Environment +506276,Intellectual Property,Intellectual Property +503295,Regional Development,Regional Development +503026,Research and Development,Research and Development +503025,Research and Development,Research and Development +506276,Research and Development,Research and Development +503172,Mining,Mining +503168,Mining,Mining +516712,Mining,Mining +504434,Mining,Mining +503178,Mining,Mining +503177,Mining,Mining +503176,Mining,Mining +503175,Mining,Mining +503174,Mining,Mining +508097,Consumer Issues,Consumer Issues +505115,Consumer Issues,Consumer Issues +516618,Consumer Issues,Consumer Issues +516617,Consumer Issues,Consumer Issues +516615,Consumer Issues,Consumer Issues +510399,Consumer Issues,Consumer Issues +510398,Consumer Issues,Consumer Issues +510397,Consumer Issues,Consumer Issues +508124,Consumer Issues,Consumer Issues +508120,Consumer Issues,Consumer Issues +508116,Consumer Issues,Consumer Issues +508110,Consumer Issues,Consumer Issues +508097,Economic Development,Economic Development +505115,Economic Development,Economic Development +516618,Economic Development,Economic Development +516617,Economic Development,Economic Development +516615,Economic Development,Economic Development +510399,Economic Development,Economic Development +510398,Economic Development,Economic Development +510397,Economic Development,Economic Development +508120,Economic Development,Economic Development +508116,Economic Development,Economic Development +508110,Economic Development,Economic Development +508097,Government Procurement,Government Procurement +505115,Government Procurement,Government Procurement +516618,Government Procurement,Government Procurement +516617,Government Procurement,Government Procurement +516615,Government Procurement,Government Procurement +510399,Government Procurement,Government Procurement +510398,Government Procurement,Government Procurement +510397,Government Procurement,Government Procurement +508124,Government Procurement,Government Procurement +508120,Government Procurement,Government Procurement +508116,Government Procurement,Government Procurement +508110,Government Procurement,Government Procurement +508097,Health,Health +505115,Health,Health +516618,Health,Health +516617,Health,Health +516615,Health,Health +510399,Health,Health +510398,Health,Health +510397,Health,Health +508124,Health,Health +508120,Health,Health +508116,Health,Health +508110,Health,Health +516617,Industry,Industry +516615,Industry,Industry +508097,International Trade,International Trade +505115,International Trade,International Trade +516618,International Trade,International Trade +516617,International Trade,International Trade +516615,International Trade,International Trade +510399,International Trade,International Trade +510398,International Trade,International Trade +510397,International Trade,International Trade +508124,International Trade,International Trade +508120,International Trade,International Trade +508116,International Trade,International Trade +508110,International Trade,International Trade +508097,Small Business,Small Business +505115,Small Business,Small Business +516618,Small Business,Small Business +516617,Small Business,Small Business +516615,Small Business,Small Business +510399,Small Business,Small Business +510398,Small Business,Small Business +510397,Small Business,Small Business +508124,Small Business,Small Business +508120,Small Business,Small Business +508116,Small Business,Small Business +508110,Small Business,Small Business +508435,Mining,Mining +501751,Industry,Industry +501749,Industry,Industry +503633,Industry,Industry +501756,Industry,Industry +501755,Industry,Industry +501753,Industry,Industry +504685,Climate,Climate +504685,Environment,Environment +509059,Forestry,Forestry +504685,Forestry,Forestry +512422,Health,Health +512421,Health,Health +512419,Health,Health +512417,Health,Health +510637,Health,Health +510634,Health,Health +510632,Health,Health +510629,Health,Health +510628,Health,Health +510623,Health,Health +510616,Health,Health +510610,Health,Health +508034,Health,Health +508024,Health,Health +508014,Health,Health +508002,Health,Health +507996,Health,Health +507993,Health,Health +507990,Health,Health +507986,Health,Health +504852,Health,Health +504849,Health,Health +504840,Health,Health +504839,Health,Health +504823,Health,Health +504820,Health,Health +504818,Health,Health +504798,Health,Health +502428,Health,Health +502419,Health,Health +502382,Health,Health +502376,Health,Health +544111,Health,Health +541961,Health,Health +540186,Health,Health +540178,Health,Health +540171,Health,Health +538412,Health,Health +538400,Health,Health +538384,Health,Health +535604,Health,Health +531657,Health,Health +531652,Health,Health +528614,Health,Health +526537,Health,Health +523110,Health,Health +522032,Health,Health +519810,Health,Health +519798,Health,Health +519796,Health,Health +519580,Health,Health +519543,Health,Health +517682,Health,Health +517658,Health,Health +516023,Health,Health +515201,Health,Health +515200,Health,Health +514112,Health,Health +514111,Health,Health +514106,Health,Health +514105,Health,Health +514095,Health,Health +514086,Health,Health +512682,Health,Health +512429,Health,Health +512428,Health,Health +512426,Health,Health +512425,Health,Health +501967,Budget,Budget +504598,Health,Health +502021,Health,Health +504596,Health,Health +502023,Health,Health +502031,Health,Health +517241,Health,Health +502034,Health,Health +527315,Health,Health +514197,Climate,Climate +513345,Climate,Climate +511321,Climate,Climate +511316,Climate,Climate +506850,Climate,Climate +506847,Climate,Climate +506846,Climate,Climate +503043,Climate,Climate +502974,Climate,Climate +502967,Climate,Climate +502964,Climate,Climate +502962,Climate,Climate +502666,Climate,Climate +542844,Climate,Climate +542842,Climate,Climate +542841,Climate,Climate +542840,Climate,Climate +541919,Climate,Climate +541918,Climate,Climate +541916,Climate,Climate +541911,Climate,Climate +540898,Climate,Climate +539204,Climate,Climate +539203,Climate,Climate +539202,Climate,Climate +539201,Climate,Climate +536747,Climate,Climate +536746,Climate,Climate +536745,Climate,Climate +536744,Climate,Climate +533414,Climate,Climate +533412,Climate,Climate +530639,Climate,Climate +527892,Climate,Climate +527891,Climate,Climate +527777,Climate,Climate +527776,Climate,Climate +523979,Climate,Climate +523978,Climate,Climate +520984,Climate,Climate +520983,Climate,Climate +520981,Climate,Climate +520980,Climate,Climate +520796,Climate,Climate +519050,Climate,Climate +519049,Climate,Climate +515827,Climate,Climate +515819,Climate,Climate +515808,Climate,Climate +515805,Climate,Climate +515803,Climate,Climate +511321,Energy,Energy +511316,Energy,Energy +506850,Energy,Energy +506847,Energy,Energy +506846,Energy,Energy +503043,Energy,Energy +502974,Energy,Energy +502967,Energy,Energy +502964,Energy,Energy +502962,Energy,Energy +502666,Energy,Energy +542844,Energy,Energy +542842,Energy,Energy +542841,Energy,Energy +542840,Energy,Energy +541919,Energy,Energy +541918,Energy,Energy +541916,Energy,Energy +541911,Energy,Energy +540898,Energy,Energy +539204,Energy,Energy +539203,Energy,Energy +539202,Energy,Energy +539201,Energy,Energy +536747,Energy,Energy +536746,Energy,Energy +536745,Energy,Energy +536744,Energy,Energy +533414,Energy,Energy +533412,Energy,Energy +530639,Energy,Energy +527892,Energy,Energy +527891,Energy,Energy +527777,Energy,Energy +527776,Energy,Energy +523979,Energy,Energy +523978,Energy,Energy +520984,Energy,Energy +520983,Energy,Energy +520981,Energy,Energy +520980,Energy,Energy +520796,Energy,Energy +519050,Energy,Energy +519049,Energy,Energy +515827,Energy,Energy +515819,Energy,Energy +515808,Energy,Energy +515805,Energy,Energy +515803,Energy,Energy +514198,Energy,Energy +514197,Energy,Energy +502962,Environment,Environment +502666,Environment,Environment +542844,Environment,Environment +542842,Environment,Environment +542841,Environment,Environment +542840,Environment,Environment +541919,Environment,Environment +541918,Environment,Environment +541916,Environment,Environment +541911,Environment,Environment +540898,Environment,Environment +539204,Environment,Environment +539203,Environment,Environment +539202,Environment,Environment +539201,Environment,Environment +536747,Environment,Environment +536746,Environment,Environment +536745,Environment,Environment +536744,Environment,Environment +533414,Environment,Environment +533412,Environment,Environment +530639,Environment,Environment +527892,Environment,Environment +527891,Environment,Environment +527777,Environment,Environment +527776,Environment,Environment +523979,Environment,Environment +523978,Environment,Environment +520984,Environment,Environment +520983,Environment,Environment +520981,Environment,Environment +520980,Environment,Environment +520796,Environment,Environment +519050,Environment,Environment +519049,Environment,Environment +515827,Environment,Environment +515819,Environment,Environment +515808,Environment,Environment +515805,Environment,Environment +515803,Environment,Environment +514198,Environment,Environment +514197,Environment,Environment +513345,Environment,Environment +511321,Environment,Environment +511316,Environment,Environment +506850,Environment,Environment +506847,Environment,Environment +506846,Environment,Environment +503043,Environment,Environment +502974,Environment,Environment +502967,Environment,Environment +522766,Economic Development,Economic Development +502262,Economic Development,Economic Development +541343,Economic Development,Economic Development +502284,Immigration,Immigration +506366,Government Procurement,Government Procurement +512061,Economic Development,Economic Development +512060,Economic Development,Economic Development +539386,Economic Development,Economic Development +539385,Economic Development,Economic Development +539384,Economic Development,Economic Development +539383,Economic Development,Economic Development +534890,Economic Development,Economic Development +534884,Economic Development,Economic Development +534882,Economic Development,Economic Development +534881,Economic Development,Economic Development +534877,Economic Development,Economic Development +534459,Economic Development,Economic Development +530749,Economic Development,Economic Development +527864,Economic Development,Economic Development +527863,Economic Development,Economic Development +518742,Economic Development,Economic Development +513659,Economic Development,Economic Development +513658,Economic Development,Economic Development +513657,Economic Development,Economic Development +512063,Economic Development,Economic Development +539385,Energy,Energy +539384,Energy,Energy +539383,Energy,Energy +534890,Energy,Energy +534884,Energy,Energy +534882,Energy,Energy +509454,Regional Development,Regional Development +509454,Infrastructure,Infrastructure +509454,Municipalities,Municipalities +511936,Industry,Industry +509547,Defence,Defence +509547,Economic Development,Economic Development +509547,Small Business,Small Business +502220,Tourism,Tourism +502220,Economic Development,Economic Development +502220,Small Business,Small Business +500444,International Trade,International Trade +532962,Consumer Issues,Consumer Issues +504731,Financial Institutions,Financial Institutions +511063,Housing,Housing +511063,Justice and Law Enforcement,Justice and Law Enforcement +503312,Budget,Budget +513530,Climate,Climate +506374,Economic Development,Economic Development +521222,Environment,Environment +506374,Health,Health +526488,Industry,Industry +506374,Regional Development,Regional Development +513530,Taxation and Finance,Taxation and Finance +513530,Transportation,Transportation +514288,Climate,Climat +506367,Infrastructure,Infrastructure +506367,Regional Development,Regional Development +506367,Municipalities,Municipalities +503667,Energy,Energy +539039,Agriculture,Agriculture +542681,Consumer Issues,Consumer Issues +528133,Economic Development,Economic Development +539039,Employment and Training,Employment and Training +541327,Environment,Environment +519086,Health,Health +542686,Immigration,Immigration +542685,Industry,Industry +541332,International Relations,International Relations +519086,International Trade,International Trade +541336,Justice and Law Enforcement,Justice and Law Enforcement +519085,Labour,Labour +541337,Regional Development,Regional Development +539045,Taxation and Finance,Taxation and Finance +519085,Transportation,Transportation +500509,Economic Development,Economic Development +540764,Economic Development,Développement économique +508616,Agriculture,Agriculture +508616,Economic Development,Economic Development +500550,Economic Development,Economic Development +515245,Economic Development,Economic Development +500791,Housing,Logement +515793,Employment and Training,Employment and Training +523905,Immigration,Immigration +512248,Consumer Issues,Consumer Issues +503159,Immigration,Immigration +503808,Health,Health +503808,Research and Development,Research and Development +525640,Energy,Energy +525640,Environment,Environment +538313,International Trade,International Trade +511599,Environment,Environment +512836,Employment and Training,Employment and Training +500771,Budget,Budget +506095,Intellectual Property,Intellectual Property +508936,Transportation,Transportation +500772,Energy,Energy +503040,Financial Institutions,Financial Institutions +503040,Consumer Issues,Consumer Issues +503040,Taxation and Finance,Taxation and Finance +500774,Regional Development,Regional Development +510420,Tourism,Tourism +510420,Economic Development,Economic Development +510420,Immigration,Immigration +510420,Sports,Sports +500805,Constitutional Issues,Constitutional Issues +503118,Health,Health +506347,International Relations,International Relations +507225,Transportation,Transportation +513265,Employment and Training,Employment and Training +513265,Government Procurement,Government Procurement +513265,Industry,Industry +513265,Intellectual Property,Intellectual Property +513265,Privacy and Access to Information,Privacy and Access to Information +511267,Security,Security +507647,Government Procurement,Government Procurement +507647,Regional Development,Regional Development +507658,Industry,Industry +507658,Infrastructure,Infrastructure +503736,Economic Development,Economic Development +503736,Government Procurement,Government Procurement +524302,Health,Health +543829,International Trade,International Trade +543829,Taxation and Finance,Taxation and Finance +543829,Economic Development,Economic Development +529168,Budget,Budget +506226,Employment and Training,Employment and Training +529168,Health,Health +506226,Research and Development,Research and Development +535827,Employment and Training,Employment and Training +535827,Health,Health +510701,Housing,Housing +507716,Economic Development,Economic Development +507716,Health,Health +507716,Sports,Sports +504167,Tourism,Tourism +507716,Transportation,Transportation +506164,Economic Development,Economic Development +504161,Municipalities,Municipalities +504161,Regional Development,Regional Development +504161,Transportation,Transportation +507794,Agriculture,Agriculture +507794,Economic Development,Economic Development +500938,Economic Development,Economic Development +500941,Economic Development,Economic Development +500942,Economic Development,Economic Development +500943,Economic Development,Economic Development +500945,Economic Development,Economic Development +500947,Economic Development,Economic Development +521878,Justice and Law Enforcement,Justice and Law Enforcement +512093,Privacy and Access to Information,Privacy and Access to Information +501024,Budget,Budget +514417,Government Procurement,Government Procurement +514417,Infrastructure,Infrastructure +509636,Infrastructure,Infrastructure +503586,Economic Development,Economic Development +503586,Transportation,Transportation +503744,Budget,Budget +507067,Energy,Energy +507067,Environment,Environment +526319,Taxation and Finance,Taxation and Finance +501131,Economic Development,Economic Development +501132,Economic Development,Economic Development +501133,Economic Development,Economic Development +501134,Economic Development,Economic Development +501135,Economic Development,Economic Development +501222,Regional Development,Regional Development +513159,Financial Institutions,Financial Institutions +520137,Infrastructure,Infrastructure +501218,Regional Development,Regional Development +523643,Agriculture,Agriculture +506236,Consumer Issues,Consumer Issues +506236,Health,Health +506236,Industry,Industry +502727,Environment,Environment +501287,Budget,Budget +510421,Budget,Budget +501290,Health,Health +501291,Health,Health +501304,Taxation and Finance,Taxation and Finance +506931,Budget,Budget +511093,Infrastructure,Infrastructure +501363,Infrastructure,Infrastructure +501370,Budget,Budget +501370,Economic Development,Economic Development +510492,Infrastructure,Infrastructure +511110,Health,Health +511110,Immigration,Immigration +511110,Employment and Training,Employment and Training +501375,Infrastructure,Infrastructure +501377,Infrastructure,Infrastructure +508911,Budget,Budget +508911,Health,Health +506504,Privacy and Access to Information,Privacy and Access to Information +500953,Privacy and Access to Information,Privacy and Access to Information +501511,Research and Development,Research and Development +501511,Taxation and Finance,Taxation and Finance +513610,Government Procurement,Government Procurement +513610,Security,Security +536506,Defence,Defence +523356,Government Procurement,Government Procurement +523356,Research and Development,Research and Development +523356,Security,Security +503295,Budget,Budget +503295,Climate,Climate +503295,Economic Development,Economic Development +503295,Environment,Environment +503295,Intellectual Property,Intellectual Property +506276,Regional Development,Regional Development +503295,Research and Development,Research and Development +503295,Small Business,Small Business +514834,Economic Development,Développement économique +503173,Mining,Mining +516618,Budget,Budget +508105,Consumer Issues,Consumer Issues +508105,Economic Development,Economic Development +508105,Government Procurement,Government Procurement +508105,Health,Health +516618,Industry,Industry +508105,International Trade,International Trade +508105,Small Business,Small Business +510416,Mining,Mining +508435,Regional Development,Regional Development +510416,Energy,Energy +508435,Economic Development,Economic Development +501752,Industry,Industry +509059,Climate,Climate +510893,Forestry,Forestry +501907,Agriculture,Agriculture +501921,Agriculture,Agriculture +512423,Health,Health +525182,Immigration,Immigration +523197,Labour,Labour +528789,Budget,Budget +502016,Health,Health +502019,Health,Health +506851,Health,Health +513937,Health,Health +504580,Health,Health +524767,Health,Health +502035,Health,Health +502093,Justice and Law Enforcement,Justice and Law Enforcement +514198,Climate,Climate +513345,Energy,Energy +502964,Environment,Environment +542840,Infrastructure,Infrastructure +540315,Economic Development,Economic Development +516001,Government Procurement,Government Procurement +518742,Budget,Budget +512062,Economic Development,Economic Development +539386,Energy,Energy +513659,Environment,Environment +534459,Industry,Industry +513657,Regional Development,Regional Development +513659,Research and Development,Research and Development +502416,Privacy and Access to Information,Privacy and Access to Information +504883,Regional Development,Regional Development +525394,Health,Health +509077,Government Procurement,Government Procurement +502496,Industry,Industry +502644,International Development,International Development +508723,Climate,Climate +514959,Defence,Defence +542486,Government Procurement,Government Procurement +513587,Industry,Industry +513570,Security,Security +502657,Tourism,Tourism +502660,Tourism,Tourism +502664,Tourism,Tourism +502667,Internal Trade,Internal Trade +502667,Tourism,Tourism +538979,Research and Development,Research and Development +502670,Tourism,Tourism +508150,Climate,Climate +505841,Economic Development,Economic Development +505839,Environment,Environment +520201,Government Procurement,Government Procurement +520191,Health,Health +505841,Industry,Industry +529629,Internal Trade,Internal Trade +515942,Consumer Issues,Consumer Issues +529627,Economic Development,Economic Development +523135,Infrastructure,Infrastructure +535992,Regional Development,Regional Development +502945,Economic Development,Economic Development +513514,Research and Development,Research and Development +502997,Transportation,Transportation +503099,Regional Development,Développement régional +503925,Industry,Industrie +503925,Justice and Law Enforcement,Justice et application des lois +503670,Intellectual Property,Propriété intellectuelle +515984,Consumer Issues,Consumer Issues +515984,Economic Development,Economic Development +515984,Privacy and Access to Information,Privacy and Access to Information +504645,Health,Health +504645,Justice and Law Enforcement,Justice and Law Enforcement +521408,Consumer Issues,Consumer Issues +521408,Economic Development,Economic Development +521408,Industry,Industry +521408,International Trade,International Trade +525972,Industry,Industry +540341,Agriculture,Agriculture +540341,International Trade,International Trade +515989,Climate,Climate +515989,Economic Development,Economic Development +515989,Energy,Energy +515987,Environment,Environment +515987,Industry,Industry +521291,Consumer Issues,Consumer Issues +506869,Economic Development,Economic Development +520644,Industry,Industry +520644,Privacy and Access to Information,Privacy and Access to Information +509797,Climate,Climate +509797,Energy,Energy +509797,Environment,Environment +509797,Infrastructure,Infrastructure +516095,Fisheries,Fisheries +508067,Government Procurement,Government Procurement +537992,Consumer Issues,Consumer Issues +538741,Infrastructure,Infrastructure +505047,Defence,Defence +513748,Security,Security +509577,Climate,Climate +508253,Small Business,Small Business +508253,Privacy and Access to Information,Privacy and Access to Information +508253,Industry,Industry +508253,Economic Development,Economic Development +508253,Consumer Issues,Consumer Issues +508256,Environment,Environment +508258,Taxation and Finance,Taxation and Finance +510612,Infrastructure,Infrastructure +508249,Industry,Industry +508258,Regional Development,Regional Development +508256,Energy,Energy +508256,Research and Development,Research and Development +508256,Climate,Climate +508256,Economic Development,Economic Development +514447,Intellectual Property,Intellectual Property +514447,Research and Development,Research and Development +522830,Employment and Training,Employment and Training +522489,Energy,Energy +539898,Environment,Environment +508455,Taxation and Finance,Taxation and Finance +533425,Economic Development,Economic Development +533425,Employment and Training,Employment and Training +529783,Intellectual Property,Intellectual Property +516607,Environment,Environment +516607,Energy,Energy +511538,Health,Health +508897,Small Business,Small Business +513395,Industry,Industry +508897,Taxation and Finance,Taxation and Finance +511538,Government Procurement,Government Procurement +513395,Economic Development,Economic Development +508909,Climate,Climate +508909,Energy,Energy +508909,Environment,Environment +508909,Industry,Industry +513400,Economic Development,Economic Development +508961,Energy,Energy +513400,Industry,Industry +532505,Economic Development,Economic Development +532505,Environment,Environment +528106,Regional Development,Regional Development +510432,Sports,Sports +510432,Transportation,Transportation +510432,Health,Health +510432,Tourism,Tourism +513460,Agriculture,Agriculture +513460,Economic Development,Economic Development +506263,Regional Development,Regional Development +506379,Transportation,Transportation +507549,Economic Development,Economic Development +510391,Mining,Mining +506765,Taxation and Finance,Taxation and Finance +506767,Taxation and Finance,Taxation and Finance +506324,Transportation,Transportation +514324,Economic Development,Développement économique +524083,Regional Development,Développement régional +524083,Tourism,Tourisme +524083,Transportation,Transports +506463,Industry,Industry +511103,Research and Development,Research and Development +507152,Industry,Industry +528563,Privacy and Access to Information,Privacy and Access to Information +510391,Environment,Environment +520864,Climate,Climate +520864,Energy,Energy +521626,Environment,Environment +526842,Government Procurement,Government Procurement +503187,Tourism,Tourism +540034,Health,Health +511819,Education,Education +507872,Industry,Industry +511106,Research and Development,Research and Development +538975,Industry,Industry +514374,Economic Development,Economic Development +536582,Government Procurement,Government Procurement +538975,Employment and Training,Employment and Training +522614,Economic Development,Economic Development +526841,Housing,Housing +522613,Infrastructure,Infrastructure +521624,Taxation and Finance,Taxation and Finance +535288,Industry,Industry +503496,Regional Development,Regional Development +503496,Taxation and Finance,Taxation and Finance +513475,Health,Health +506395,Climate,Climat +539065,Industry,Industry +511053,Health,Health +532702,Transportation,Transportation +528089,Regional Development,Regional Development +529778,Industry,Industry +514388,Agriculture,Agriculture +514388,Economic Development,Economic Development +515305,Taxation and Finance,Taxation and Finance +511830,Agriculture,Agriculture +506119,Government Procurement,Government Procurement +508362,Industry,Industry +511249,Tourism,Tourism +511269,Government Procurement,Government Procurement +504563,Health,Health +509262,Justice and Law Enforcement,Justice and Law Enforcement +527349,Government Procurement,Government Procurement +506395,Energy,Énergie +514342,Economic Development,Economic Development +514342,Agriculture,Agriculture +509359,Internal Trade,Internal Trade +514342,Research and Development,Research and Development +529858,Tourism,Tourism +506876,Transportation,Transportation +519497,Privacy and Access to Information,Privacy and Access to Information +528642,Privacy and Access to Information,Privacy and Access to Information +506017,Health,Health +506017,Industry,Industry +520536,Research and Development,Research and Development +513190,Economic Development,Développement économique +517692,Regional Development,Développement régional +506222,Transportation,Transports +534881,Energy,Energy +534877,Energy,Energy +534459,Energy,Energy +527864,Energy,Energy +527863,Energy,Energy +518742,Energy,Energy +513659,Energy,Energy +513658,Energy,Energy +512063,Energy,Energy +512062,Energy,Energy +512061,Energy,Energy +512060,Energy,Energy +513658,Environment,Environment +513657,Environment,Environment +539386,Environment,Environment +539385,Environment,Environment +539384,Environment,Environment +539383,Environment,Environment +534890,Environment,Environment +534884,Environment,Environment +534882,Environment,Environment +534881,Environment,Environment +534877,Environment,Environment +534459,Environment,Environment +527864,Environment,Environment +527863,Environment,Environment +518742,Environment,Environment +527863,Industry,Industry +513658,Research and Development,Research and Development +502441,Regional Development,Regional Development +520716,Health,Health +503936,Government Procurement,Government Procurement +525394,Government Procurement,Government Procurement +502653,Climate,Climate +502647,Climate,Climate +535898,Climate,Climate +513594,Defence,Defence +513570,Defence,Defence +540633,Government Procurement,Government Procurement +530378,Government Procurement,Government Procurement +514959,Government Procurement,Government Procurement +513587,Government Procurement,Government Procurement +513570,Government Procurement,Government Procurement +511983,Government Procurement,Government Procurement +509294,Government Procurement,Government Procurement +505200,Government Procurement,Government Procurement +511983,Industry,Industry +509294,Industry,Industry +540633,Industry,Industry +513594,Industry,Industry +509294,Security,Security +505200,Security,Security +527338,Security,Security +513594,Security,Security +502790,Climate,Climate +505839,Economic Development,Economic Development +505838,Economic Development,Economic Development +532382,Economic Development,Economic Development +523154,Economic Development,Economic Development +520201,Economic Development,Economic Development +520194,Economic Development,Economic Development +511484,Economic Development,Economic Development +505838,Environment,Environment +520194,Government Procurement,Government Procurement +520191,Government Procurement,Government Procurement +529629,Government Procurement,Government Procurement +523166,Government Procurement,Government Procurement +511484,Health,Health +505838,Health,Health +532382,Health,Health +529629,Health,Health +523166,Health,Health +520201,Health,Health +520194,Health,Health +505839,Industry,Industry +505838,Industry,Industry +532382,Industry,Industry +529629,Industry,Industry +523166,Industry,Industry +520201,Industry,Industry +511484,Industry,Industry +523166,Internal Trade,Internal Trade +505841,Internal Trade,Internal Trade +532382,Internal Trade,Internal Trade +511504,Consumer Issues,Consumer Issues +505843,Consumer Issues,Consumer Issues +535992,Consumer Issues,Consumer Issues +535991,Consumer Issues,Consumer Issues +523135,Economic Development,Economic Development +511504,Economic Development,Economic Development +505843,Economic Development,Economic Development +535992,Economic Development,Economic Development +535991,Economic Development,Economic Development +529628,Economic Development,Economic Development +511504,Infrastructure,Infrastructure +505843,Infrastructure,Infrastructure +535991,Regional Development,Regional Development +503098,Regional Development,Développement régional +503670,Industry,Industrie +503390,Industry,Industrie +524217,Industry,Industrie +506652,Industry,Industrie +504280,Industry,Industrie +503670,Justice and Law Enforcement,Justice et application des lois +503390,Justice and Law Enforcement,Justice et application des lois +506652,Justice and Law Enforcement,Justice et application des lois +504280,Justice and Law Enforcement,Justice et application des lois +503390,Intellectual Property,Propriété intellectuelle +506652,Intellectual Property,Propriété intellectuelle +504280,Intellectual Property,Propriété intellectuelle +503925,Intellectual Property,Propriété intellectuelle +525963,Industry,Industry +525960,Industry,Industry +538135,Industry,Industry +529084,Industry,Industry +529068,Industry,Industry +529063,Industry,Industry +525977,Industry,Industry +540340,Agriculture,Agriculture +504543,Agriculture,Agriculture +540340,International Trade,International Trade +504543,International Trade,International Trade +515987,Climate,Climate +511424,Climate,Climate +535345,Climate,Climate +535342,Climate,Climate +535340,Climate,Climate +535336,Climate,Climate +532389,Climate,Climate +526075,Climate,Climate +515987,Economic Development,Economic Development +515986,Economic Development,Economic Development +535345,Economic Development,Economic Development +535342,Economic Development,Economic Development +535340,Economic Development,Economic Development +535336,Economic Development,Economic Development +532389,Economic Development,Economic Development +522696,Economic Development,Economic Development +515986,Energy,Energy +511424,Energy,Energy +535345,Energy,Energy +535342,Energy,Energy +535340,Energy,Energy +535336,Energy,Energy +532389,Energy,Energy +529123,Energy,Energy +526075,Energy,Energy +522696,Energy,Energy +515986,Environment,Environment +511424,Environment,Environment +535345,Environment,Environment +535342,Environment,Environment +535340,Environment,Environment +535336,Environment,Environment +532389,Environment,Environment +529123,Environment,Environment +526075,Environment,Environment +522696,Environment,Environment +515989,Environment,Environment +515986,Industry,Industry +511424,Industry,Industry +535345,Industry,Industry +535342,Industry,Industry +535340,Industry,Industry +535336,Industry,Industry +532389,Industry,Industry +529123,Industry,Industry +526075,Industry,Industry +520644,Consumer Issues,Consumer Issues +519529,Consumer Issues,Consumer Issues +530786,Consumer Issues,Consumer Issues +530786,Economic Development,Economic Development +521291,Economic Development,Economic Development +520644,Economic Development,Economic Development +519529,Economic Development,Economic Development +519529,Privacy and Access to Information,Privacy and Access to Information +506869,Privacy and Access to Information,Privacy and Access to Information +521291,Privacy and Access to Information,Privacy and Access to Information +509342,Energy,Energy +509342,Environment,Environment +509342,Infrastructure,Infrastructure +516094,Fisheries,Fisheries +515019,Fisheries,Fisheries +536321,Fisheries,Fisheries +530531,Fisheries,Fisheries +530530,Fisheries,Fisheries +523304,Fisheries,Fisheries +522795,Fisheries,Fisheries +520485,Fisheries,Fisheries +518905,Fisheries,Fisheries +518904,Fisheries,Fisheries +504824,Government Procurement,Government Procurement +506304,Consumer Issues,Consumer Issues +506303,Consumer Issues,Consumer Issues +538741,Consumer Issues,Consumer Issues +537992,Infrastructure,Infrastructure +505045,Defence,Defence +505042,Defence,Defence +520911,Defence,Defence +518667,Defence,Defence +513749,Defence,Defence +513012,Defence,Defence +509737,Defence,Defence +509736,Defence,Defence +505082,Defence,Defence +505078,Defence,Defence +505064,Defence,Defence +505058,Defence,Defence +505054,Defence,Defence +505050,Defence,Defence +505049,Defence,Defence +509738,Security,Security +520912,Security,Security +504236,Climate,Climate +503100,Climate,Climate +508244,Small Business,Small Business +505972,Small Business,Small Business +515964,Small Business,Small Business +508244,Privacy and Access to Information,Privacy and Access to Information +505972,Privacy and Access to Information,Privacy and Access to Information +515964,Privacy and Access to Information,Privacy and Access to Information +508244,Industry,Industry +505972,Industry,Industry +515964,Industry,Industry +508244,Economic Development,Economic Development +505972,Economic Development,Economic Development +515964,Economic Development,Economic Development +508244,Consumer Issues,Consumer Issues +505972,Consumer Issues,Consumer Issues +515964,Consumer Issues,Consumer Issues +508249,Environment,Environment +508247,Environment,Environment +529430,Environment,Environment +529429,Environment,Environment +526245,Environment,Environment +526242,Environment,Environment +510625,Environment,Environment +510619,Environment,Environment +510614,Environment,Environment +510612,Environment,Environment +510609,Environment,Environment +508259,Environment,Environment +508258,Environment,Environment +508256,Taxation and Finance,Taxation and Finance +508247,Taxation and Finance,Taxation and Finance +529430,Taxation and Finance,Taxation and Finance +529429,Taxation and Finance,Taxation and Finance +526245,Taxation and Finance,Taxation and Finance +526242,Taxation and Finance,Taxation and Finance +510625,Taxation and Finance,Taxation and Finance +510619,Taxation and Finance,Taxation and Finance +510614,Taxation and Finance,Taxation and Finance +510612,Taxation and Finance,Taxation and Finance +510609,Taxation and Finance,Taxation and Finance +508259,Taxation and Finance,Taxation and Finance +508259,Infrastructure,Infrastructure +508256,Infrastructure,Infrastructure +510625,Infrastructure,Infrastructure +510619,Infrastructure,Infrastructure +510614,Infrastructure,Infrastructure +508247,Industry,Industry +529430,Industry,Industry +529429,Industry,Industry +526245,Industry,Industry +526242,Industry,Industry +510625,Industry,Industry +510619,Industry,Industry +510614,Industry,Industry +510612,Industry,Industry +508259,Industry,Industry +508258,Industry,Industry +508256,Industry,Industry +508256,Regional Development,Regional Development +508249,Regional Development,Regional Development +510625,Regional Development,Regional Development +510619,Regional Development,Regional Development +510614,Regional Development,Regional Development +510612,Regional Development,Regional Development +508259,Regional Development,Regional Development +508249,Energy,Energy +508247,Energy,Energy +529430,Energy,Energy +529429,Energy,Energy +526245,Energy,Energy +526242,Energy,Energy +510625,Energy,Energy +510619,Energy,Energy +510614,Energy,Energy +510612,Energy,Energy +510609,Energy,Energy +508259,Energy,Energy +508258,Energy,Energy +508249,Research and Development,Research and Development +508247,Research and Development,Research and Development +529430,Research and Development,Research and Development +526245,Research and Development,Research and Development +526242,Research and Development,Research and Development +510625,Research and Development,Research and Development +510619,Research and Development,Research and Development +510614,Research and Development,Research and Development +510612,Research and Development,Research and Development +510609,Research and Development,Research and Development +508259,Research and Development,Research and Development +508258,Research and Development,Research and Development +508249,Climate,Climate +508247,Climate,Climate +529430,Climate,Climate +529429,Climate,Climate +526245,Climate,Climate +526242,Climate,Climate +510625,Climate,Climate +510619,Climate,Climate +510614,Climate,Climate +510612,Climate,Climate +510609,Climate,Climate +508259,Climate,Climate +508258,Climate,Climate +508249,Economic Development,Economic Development +508247,Economic Development,Economic Development +529430,Economic Development,Economic Development +529429,Economic Development,Economic Development +526245,Economic Development,Economic Development +526242,Economic Development,Economic Development +510625,Economic Development,Economic Development +510619,Economic Development,Economic Development +510614,Economic Development,Economic Development +510612,Economic Development,Economic Development +510609,Economic Development,Economic Development +508259,Economic Development,Economic Development +508258,Economic Development,Economic Development +512465,Intellectual Property,Intellectual Property +506332,Intellectual Property,Intellectual Property +524061,Intellectual Property,Intellectual Property +515268,Intellectual Property,Intellectual Property +515067,Intellectual Property,Intellectual Property +512465,Research and Development,Research and Development +506332,Research and Development,Research and Development +527014,Research and Development,Research and Development +524061,Research and Development,Research and Development +522405,Research and Development,Research and Development +518627,Research and Development,Research and Development +515268,Research and Development,Research and Development +515067,Research and Development,Research and Development +544119,Energy,Energy +539898,Energy,Energy +532160,Energy,Energy +532160,Environment,Environment +522489,Environment,Environment +544119,Environment,Environment +516254,Economic Development,Economic Development +510963,Economic Development,Economic Development +516254,Employment and Training,Employment and Training +510963,Employment and Training,Employment and Training +516254,Intellectual Property,Intellectual Property +510963,Intellectual Property,Intellectual Property +533425,Intellectual Property,Intellectual Property +511538,Industry,Industry +508897,Industry,Industry +508897,Economic Development,Economic Development +508961,Economic Development,Economic Development +508961,Industry,Industry +504602,Transportation,Transportation +510390,Mining,Mining +510388,Mining,Mining +513939,Mining,Mining +513234,Mining,Mining +513233,Mining,Mining +513232,Mining,Mining +513230,Mining,Mining +513229,Mining,Mining +513228,Mining,Mining +513227,Mining,Mining +513226,Mining,Mining +513225,Mining,Mining +510395,Mining,Mining +510394,Mining,Mining +510393,Mining,Mining +510392,Mining,Mining +508518,Economic Development,Développement économique +503974,Economic Development,Développement économique +524083,Economic Development,Développement économique +514324,Transportation,Transports +508518,Transportation,Transports +519492,Privacy and Access to Information,Privacy and Access to Information +512464,Privacy and Access to Information,Privacy and Access to Information +510390,Environment,Environment +510388,Environment,Environment +513939,Environment,Environment +513234,Environment,Environment +513233,Environment,Environment +513232,Environment,Environment +513230,Environment,Environment +513229,Environment,Environment +513228,Environment,Environment +513227,Environment,Environment +513226,Environment,Environment +513225,Environment,Environment +510395,Environment,Environment +510394,Environment,Environment +510393,Environment,Environment +510392,Environment,Environment +520514,Climate,Climate +509369,Climate,Climate +526842,Climate,Climate +524905,Climate,Climate +521626,Climate,Climate +520514,Energy,Energy +509369,Energy,Energy +524905,Energy,Energy +520864,Environment,Environment +509369,Environment,Environment +526842,Environment,Environment +524905,Environment,Environment +534348,Health,Health +534346,Health,Health +544045,Health,Health +544043,Health,Health +503544,Education,Education +508634,Research and Development,Research and Development +508633,Research and Development,Research and Development +515388,Research and Development,Research and Development +513392,Research and Development,Research and Development +513391,Research and Development,Research and Development +514374,Government Procurement,Government Procurement +508838,Government Procurement,Government Procurement +542467,Government Procurement,Government Procurement +511600,Economic Development,Economic Development +522614,Housing,Housing +522613,Housing,Housing +511600,Housing,Housing +509560,Housing,Housing +506575,Housing,Housing +506101,Housing,Housing +503495,Housing,Housing +527398,Housing,Housing +527388,Housing,Housing +515230,Taxation and Finance,Taxation and Finance +509560,Taxation and Finance,Taxation and Finance +527398,Taxation and Finance,Taxation and Finance +527388,Taxation and Finance,Taxation and Finance +526841,Taxation and Finance,Taxation and Finance +526996,Industry,Industry +503496,Industry,Industry +540793,Industry,Industry +535294,Industry,Industry +535289,Industry,Industry +535294,Regional Development,Regional Development +535288,Regional Development,Regional Development +532701,Transportation,Transportation +532699,Transportation,Transportation +532696,Transportation,Transportation +530383,Transportation,Transportation +530199,Transportation,Transportation +529779,Transportation,Transportation +529778,Transportation,Transportation +528089,Transportation,Transportation +528088,Transportation,Transportation +528085,Transportation,Transportation +507518,Transportation,Transportation +506967,Transportation,Transportation +506439,Transportation,Transportation +506438,Transportation,Transportation +503512,Transportation,Transportation +528088,Regional Development,Regional Development +528085,Regional Development,Regional Development +507518,Regional Development,Regional Development +506967,Regional Development,Regional Development +506439,Regional Development,Regional Development +506438,Regional Development,Regional Development +503512,Regional Development,Regional Development +532702,Regional Development,Regional Development +532701,Regional Development,Regional Development +532699,Regional Development,Regional Development +532696,Regional Development,Regional Development +530383,Regional Development,Regional Development +530199,Regional Development,Regional Development +529779,Regional Development,Regional Development +503512,Industry,Industry +508685,Agriculture,Agriculture +508670,Agriculture,Agriculture +514389,Agriculture,Agriculture +508685,Economic Development,Economic Development +508670,Economic Development,Economic Development +514389,Economic Development,Economic Development +511828,Agriculture,Agriculture +503427,Government Procurement,Government Procurement +503274,Government Procurement,Government Procurement +542426,Government Procurement,Government Procurement +516534,Government Procurement,Government Procurement +508370,Tourism,Tourism +508362,Tourism,Tourism +511260,Tourism,Tourism +508368,Government Procurement,Government Procurement +508366,Government Procurement,Government Procurement +511275,Government Procurement,Government Procurement +503733,Health,Health +503326,Justice and Law Enforcement,Justice and Law Enforcement +517885,Government Procurement,Government Procurement +509359,Economic Development,Economic Development +509359,Agriculture,Agriculture +506875,Transportation,Transportation +506613,Transportation,Transportation +542791,Transportation,Transportation +538661,Transportation,Transportation +534392,Transportation,Transportation +529858,Transportation,Transportation +522644,Transportation,Transportation +522640,Transportation,Transportation +517296,Transportation,Transportation +515519,Transportation,Transportation +515655,Privacy and Access to Information,Privacy and Access to Information +512470,Privacy and Access to Information,Privacy and Access to Information +544116,Privacy and Access to Information,Privacy and Access to Information +538332,Privacy and Access to Information,Privacy and Access to Information +528631,Privacy and Access to Information,Privacy and Access to Information +522466,Privacy and Access to Information,Privacy and Access to Information +504159,Health,Health +503336,Health,Health +541286,Health,Health +540591,Health,Health +540545,Health,Health +539477,Health,Health +538941,Health,Health +538731,Health,Health +537245,Health,Health +536334,Health,Health +530283,Health,Health +530241,Health,Health +530180,Health,Health +530003,Health,Health +526997,Health,Health +526891,Health,Health +526809,Health,Health +526402,Health,Health +520669,Health,Health +520536,Health,Health +520440,Health,Health +511934,Health,Health +510094,Health,Health +509515,Health,Health +509469,Health,Health +504159,Industry,Industry +503336,Industry,Industry +541286,Industry,Industry +540591,Industry,Industry +539477,Industry,Industry +538941,Industry,Industry +538731,Industry,Industry +537245,Industry,Industry +536334,Industry,Industry +530241,Industry,Industry +530180,Industry,Industry +530003,Industry,Industry +526997,Industry,Industry +526891,Industry,Industry +526809,Industry,Industry +526402,Industry,Industry +520669,Industry,Industry +520536,Industry,Industry +511934,Industry,Industry +510094,Industry,Industry +509515,Industry,Industry +509469,Industry,Industry +511934,Research and Development,Research and Development +510094,Research and Development,Research and Development +503336,Research and Development,Research and Development +540591,Research and Development,Research and Development +539477,Research and Development,Research and Development +538941,Research and Development,Research and Development +536334,Research and Development,Research and Development +526997,Research and Development,Research and Development +526891,Research and Development,Research and Development +526809,Research and Development,Research and Development +520669,Research and Development,Research and Development +511060,Economic Development,Développement économique +506224,Economic Development,Développement économique +517692,Economic Development,Développement économique +515725,Economic Development,Développement économique +511060,Regional Development,Développement régional +506224,Regional Development,Développement régional +506220,Transportation,Transports +506218,Transportation,Transports +538948,Transportation,Transports +533744,Transportation,Transports +524841,Transportation,Transports +524839,Transportation,Transports +517692,Transportation,Transports +515725,Transportation,Transports +513193,Transportation,Transports +513192,Transportation,Transports +513188,Transportation,Transports +513187,Transportation,Transports +511060,Transportation,Transports +508091,Transportation,Transports +506224,Transportation,Transports +506223,Transportation,Transports +512107,Agriculture,Agriculture +511765,Agriculture,Agriculture +521566,Agriculture,Agriculture +512196,Climate,Climate +511765,Climate,Climate +512107,Economic Development,Economic Development +511765,Economic Development,Economic Development +521566,Economic Development,Economic Development +512107,Energy,Energy +511765,Energy,Energy +521566,Energy,Energy +512107,Environment,Environment +511765,Environment,Environment +512107,Industry,Industry +511765,Industry,Industry +521566,Industry,Industry +512107,Infrastructure,Infrastructure +511765,Infrastructure,Infrastructure +532050,Housing,Housing +532046,Housing,Housing +535007,Housing,Housing +512324,Regional Development,Regional Development +512447,Labour,Labour +521059,Economic Development,Développement économique +520492,Economic Development,Développement économique +521059,Regional Development,Développement régional +520492,Regional Development,Développement régional +520896,Environment,Environnement +518675,Environment,Environnement +503529,Environment,Environnement +506289,Environment,Environnement +506289,Fisheries,Pêches +525735,Fisheries,Pêches +521554,Fisheries,Pêches +521059,Fisheries,Pêches +520896,Fisheries,Pêches +520492,Fisheries,Pêches +518675,Fisheries,Pêches +521059,Tourism,Tourisme +520492,Tourism,Tourisme +525735,Tourism,Tourisme +530584,Energy,Energy +503405,Budget,Budget +503401,Budget,Budget +536234,Budget,Budget +536233,Budget,Budget +509940,Budget,Budget +509938,Budget,Budget +507579,Budget,Budget +507578,Budget,Budget +507577,Budget,Budget +507576,Budget,Budget +507575,Budget,Budget +507574,Budget,Budget +507573,Budget,Budget +507572,Budget,Budget +507571,Budget,Budget +507570,Budget,Budget +507569,Budget,Budget +507568,Budget,Budget +503950,Budget,Budget +503949,Budget,Budget +503948,Budget,Budget +503947,Budget,Budget +503946,Budget,Budget +503416,Budget,Budget +503415,Budget,Budget +503414,Budget,Budget +503412,Budget,Budget +503411,Budget,Budget +507661,Defence,Defence +507659,Defence,Defence +544260,Defence,Defence +520166,Economic Development,Economic Development +518194,Economic Development,Economic Development +507661,Economic Development,Economic Development +507659,Economic Development,Economic Development +507661,Government Procurement,Government Procurement +507659,Government Procurement,Government Procurement +544260,Government Procurement,Government Procurement +520166,Government Procurement,Government Procurement +506948,Transportation,Transportation +506947,Transportation,Transportation +505045,Government Procurement,Government Procurement +505042,Government Procurement,Government Procurement +520912,Government Procurement,Government Procurement +520911,Government Procurement,Government Procurement +518667,Government Procurement,Government Procurement +513012,Government Procurement,Government Procurement +509738,Government Procurement,Government Procurement +509737,Government Procurement,Government Procurement +509736,Government Procurement,Government Procurement +505082,Government Procurement,Government Procurement +505078,Government Procurement,Government Procurement +505064,Government Procurement,Government Procurement +505058,Government Procurement,Government Procurement +505054,Government Procurement,Government Procurement +505050,Government Procurement,Government Procurement +505049,Government Procurement,Government Procurement +503565,Budget,Budget +503565,Economic Development,Economic Development +503565,Government Procurement,Government Procurement +503565,Health,Health +515152,Financial Institutions,Financial Institutions +511546,Financial Institutions,Financial Institutions +544657,Financial Institutions,Financial Institutions +535638,Financial Institutions,Financial Institutions +532798,Financial Institutions,Financial Institutions +514185,Government Procurement,Government Procurement +514182,Government Procurement,Government Procurement +518908,Government Procurement,Government Procurement +513198,Consumer Issues,Consumer Issues +536551,Government Procurement,Government Procurement +506932,Economic Development,Economic Development +506233,Economic Development,Economic Development +508563,Economic Development,Economic Development +508562,Economic Development,Economic Development +508561,Economic Development,Economic Development +508558,Economic Development,Economic Development +508555,Economic Development,Economic Development +506932,Sports,Sports +506233,Sports,Sports +508563,Sports,Sports +508562,Sports,Sports +508561,Sports,Sports +508558,Sports,Sports +508555,Sports,Sports +506370,Climate,Climate +507773,Climate,Climate +510016,Environment,Environment +507773,Environment,Environment +506617,Government Procurement,Government Procurement +504491,Government Procurement,Government Procurement +511915,Government Procurement,Government Procurement +506617,Health,Health +504491,Health,Health +511915,Health,Health +506617,Industry,Industry +504491,Industry,Industry +511915,Industry,Industry +520770,Health,Health +503703,Health,Health +527519,Health,Health +527512,Health,Health +520770,Regional Development,Regional Development +520759,Regional Development,Regional Development +527519,Regional Development,Regional Development +520770,Research and Development,Research and Development +520759,Research and Development,Research and Development +503703,Research and Development,Research and Development +527519,Research and Development,Research and Development +527512,Research and Development,Research and Development +509642,Climate,Climate +506770,Climate,Climate +540744,Climate,Climate +539137,Climate,Climate +539136,Climate,Climate +536675,Climate,Climate +533341,Climate,Climate +533339,Climate,Climate +533338,Climate,Climate +524393,Climate,Climate +524392,Climate,Climate +524391,Climate,Climate +520918,Climate,Climate +518925,Climate,Climate +518924,Climate,Climate +512256,Climate,Climate +512256,Environment,Environment +509642,Transportation,Transportation +506770,Transportation,Transportation +540744,Transportation,Transportation +539137,Transportation,Transportation +539136,Transportation,Transportation +536675,Transportation,Transportation +533341,Transportation,Transportation +533339,Transportation,Transportation +533338,Transportation,Transportation +524393,Transportation,Transportation +524392,Transportation,Transportation +524391,Transportation,Transportation +520920,Transportation,Transportation +520918,Transportation,Transportation +518925,Transportation,Transportation +518924,Transportation,Transportation +512256,Transportation,Transportation +507146,International Development,International Development +503916,International Development,International Development +528420,International Development,International Development +531290,International Trade,International Trade +531288,International Trade,International Trade +531286,International Trade,International Trade +528420,International Trade,International Trade +528418,International Trade,International Trade +507595,International Trade,International Trade +507596,Industry,Industry +506329,Economic Development,Economic Development +506329,Regional Development,Regional Development +506329,Transportation,Transportation +511667,Agriculture,Agriculture +506004,Agriculture,Agriculture +542320,Agriculture,Agriculture +532271,Agriculture,Agriculture +527653,Agriculture,Agriculture +520976,Agriculture,Agriculture +520967,Agriculture,Agriculture +520587,Agriculture,Agriculture +520379,Agriculture,Agriculture +516655,Agriculture,Agriculture +516581,Agriculture,Agriculture +516580,Agriculture,Agriculture +511667,Health,Health +506662,Health,Health +520587,Health,Health +516580,Health,Health +520587,International Trade,International Trade +516577,Research and Development,Research and Development +511667,Research and Development,Research and Development +520587,Research and Development,Research and Development +516581,Research and Development,Research and Development +511127,Economic Development,Développement économique +511124,Economic Development,Développement économique +509670,Economic Development,Développement économique +509669,Economic Development,Développement économique +509668,Economic Development,Développement économique +509667,Economic Development,Développement économique +509666,Economic Development,Développement économique +509665,Economic Development,Développement économique +508849,Economic Development,Développement économique +508847,Economic Development,Développement économique +508837,Economic Development,Développement économique +513152,Economic Development,Développement économique +513151,Economic Development,Développement économique +513150,Economic Development,Développement économique +513147,Economic Development,Développement économique +508847,Research and Development,Recherche et développement +508837,Research and Development,Recherche et développement +513152,Research and Development,Recherche et développement +513151,Research and Development,Recherche et développement +513150,Research and Development,Recherche et développement +513147,Research and Development,Recherche et développement +511128,Research and Development,Recherche et développement +511127,Research and Development,Recherche et développement +511124,Research and Development,Recherche et développement +509670,Research and Development,Recherche et développement +509669,Research and Development,Recherche et développement +509668,Research and Development,Recherche et développement +509667,Research and Development,Recherche et développement +509666,Research and Development,Recherche et développement +509665,Research and Development,Recherche et développement +508847,Health,Santé +508837,Health,Santé +513152,Health,Santé +513151,Health,Santé +513150,Health,Santé +513147,Health,Santé +511128,Health,Santé +511127,Health,Santé +511124,Health,Santé +509670,Health,Santé +509669,Health,Santé +509668,Health,Santé +509667,Health,Santé +509666,Health,Santé +509665,Health,Santé +506173,Economic Development,Economic Development +506016,Economic Development,Economic Development +506173,Employment and Training,Employment and Training +504160,Employment and Training,Employment and Training +506016,Health,Health +504160,Health,Health +515963,Health,Health +511815,Health,Health +507162,Health,Health +506016,Industry,Industry +504160,Industry,Industry +515963,Industry,Industry +511815,Industry,Industry +507162,Industry,Industry +513625,Government Procurement,Government Procurement +533720,Employment and Training,Employment and Training +533720,Infrastructure,Infrastructure +512196,Agriculture,Agriculture +521566,Climate,Climate +512196,Economic Development,Economic Development +512196,Energy,Energy +521566,Environment,Environment +512196,Industry,Industry +512196,Infrastructure,Infrastructure +511765,Research and Development,Research and Development +521566,Transportation,Transportation +512324,Budget,Budget +532051,Housing,Housing +513642,Regional Development,Regional Development +512448,Labour,Labour +511604,Constitutional Issues,Constitutional Issues +511605,Taxation and Finance,Taxation and Finance +525735,Economic Development,Développement économique +525735,Regional Development,Développement régional +521059,Environment,Environnement +512286,Fisheries,Pêches +521554,Tourism,Tourisme +504614,Health,Health +530585,Energy,Energy +503407,Budget,Budget +518194,Defence,Defence +544260,Economic Development,Economic Development +518194,Government Procurement,Government Procurement +506949,Transportation,Transportation +505047,Government Procurement,Government Procurement +513649,Fisheries,Fisheries +503566,Budget,Budget +503566,Economic Development,Economic Development +503566,Government Procurement,Government Procurement +503566,Health,Health +503521,Labour,Labour +523004,Consumer Issues,Consumer Issues +523004,Financial Institutions,Financial Institutions +506099,Economic Development,Economic Development +506099,Industry,Industry +518026,Government Procurement,Government Procurement +514758,Consumer Issues,Consumer Issues +508840,Security,Security +514759,Security,Security +508828,Government Procurement,Government Procurement +544098,Government Procurement,Government Procurement +530862,Government Procurement,Government Procurement +506933,Economic Development,Economic Development +506933,Sports,Sports +520417,Climate,Climate +506607,Economic Development,Economic Development +508628,Consumer Issues,Consumer Issues +512303,Climate,Climate +510016,Economic Development,Economic Development +512303,Energy,Energy +512303,Environment,Environment +503645,Health,Health +509498,Government Procurement,Government Procurement +509498,Health,Health +509498,Industry,Industry +520773,Health,Health +527512,Regional Development,Regional Development +520773,Research and Development,Research and Development +509643,Climate,Climate +520920,Environment,Environment +509643,Transportation,Transportation +510247,International Development,International Development +507146,International Trade,International Trade +511748,International Development,International Development +507596,International Trade,International Trade +507595,Industry,Industry +509468,Agriculture,Agriculture +509468,Economic Development,Economic Development +509468,Infrastructure,Infrastructure +506329,Mining,Mining +506329,Municipalities,Municipalities +509468,Regional Development,Regional Development +509468,Transportation,Transportation +516577,Agriculture,Agriculture +516577,Health,Health +520976,International Trade,International Trade +516580,Research and Development,Research and Development +511128,Economic Development,Développement économique +508849,Research and Development,Recherche et développement +508849,Health,Santé +507162,Economic Development,Economic Development +507162,Employment and Training,Employment and Training +506173,Health,Health +506173,Industry,Industry +504160,Small Business,Small Business +521820,Government Procurement,Government Procurement +533721,Employment and Training,Employment and Training +533721,Infrastructure,Infrastructure +506584,Infrastructure,Infrastructure +520810,Health,Health +520810,Industry,Industry +508858,International Development,International Development +512434,Economic Development,Economic Development +517883,Energy,Energy +512434,Housing,Housing +506534,Economic Development,Economic Development +506534,Transportation,Transportation +510246,Economic Development,Economic Development +507144,Infrastructure,Infrastructure +507144,Municipalities,Municipalities +507144,Taxation and Finance,Taxation and Finance +526689,Economic Development,Développement économique +506112,Industry,Industry +516609,Transportation,Transportation +513664,Infrastructure,Infrastructure +512382,Climate,Climate +506293,Environment,Environment +506293,Transportation,Transportation +507126,Forestry,Forestry +506230,Economic Development,Economic Development +506230,Industry,Industry +508527,Economic Development,Economic Development +508919,Environment,Environment +508919,Industry,Industry +508919,Mining,Mining +503969,International Trade,International Trade +503970,International Trade,International Trade +504005,International Trade,International Trade +504111,International Trade,International Trade +505517,Economic Development,Economic Development +513477,Health,Health +509121,Infrastructure,Infrastructure +530784,Labour,Labour +518659,Financial Institutions,Financial Institutions +508021,Economic Development,Economic Development +506092,Government Procurement,Government Procurement +504268,Economic Development,Economic Development +543701,Constitutional Issues,Constitutional Issues +508759,Education,Education +508759,Official Languages,Official Languages +511632,Budget,Budget +504332,Education,Education +504332,Labour,Labour +533329,Industry,Industry +536212,Health,Health +536212,Research and Development,Research and Development +536212,Budget,Budget +504462,Research and Development,Research and Development +523657,Climate,Climate +511642,Economic Development,Economic Development +514327,Industry,Industry +511642,International Trade,International Trade +506270,Government Procurement,Government Procurement +504536,Small Business,Small Business +529855,Budget,Budget +506893,Industry,Industry +518487,Education,Education +518487,Official Languages,Official Languages +518090,Official Languages,Official Languages +518090,Education,Education +506603,Industry,Industry +506603,International Trade,International Trade +516159,Climate,Climate +512281,International Trade,International Trade +509072,Economic Development,Economic Development +524921,Climate,Climate +530397,Economic Development,Economic Development +511629,International Trade,International Trade +504871,Education,Education +508572,Economic Development,Economic Development +519323,Economic Development,Economic Development +535968,Education,Education +527665,Economic Development,Economic Development +517471,Environment,Environment +508810,Government Procurement,Government Procurement +514253,Health,Health +505144,Budget,Budget +511981,Financial Institutions,Financial Institutions +511981,Government Procurement,Government Procurement +505359,Agriculture,Agriculture +505359,Consumer Issues,Consumer Issues +532848,Health,Health +505358,Internal Trade,Internal Trade +532848,International Trade,International Trade +527340,Industry,Industry +516294,Government Procurement,Government Procurement +505207,Budget,Budget +537409,Employment and Training,Employment and Training +537408,Health,Health +511535,Health,Health +511534,Immigration,Immigration +511534,International Relations,International Relations +508943,Health,Health +511536,Immigration,Immigration +511537,International Relations,International Relations +511537,Sports,Sports +508966,Health,Health +508966,Immigration,Immigration +509040,Immigration,Immigration +505614,International Relations,International Relations +505714,International Relations,International Relations +505752,International Relations,International Relations +505850,Privacy and Access to Information,Privacy and Access to Information +514590,Infrastructure,Infrastructure +519000,Health,Health +512398,Health,Health +519000,Industry,Industry +512398,Industry,Industry +508848,International Development,International Development +508830,International Development,International Development +537860,International Development,International Development +537857,International Development,International Development +533769,International Development,International Development +533768,International Development,International Development +533767,International Development,International Development +533766,International Development,International Development +533763,International Development,International Development +529166,International Development,International Development +513474,International Development,International Development +513473,International Development,International Development +513472,International Development,International Development +511031,International Development,International Development +508869,International Development,International Development +512406,Economic Development,Economic Development +512404,Economic Development,Economic Development +519729,Economic Development,Economic Development +519725,Economic Development,Economic Development +512435,Economic Development,Economic Development +512406,Housing,Housing +512404,Housing,Housing +519729,Housing,Housing +519725,Housing,Housing +517883,Housing,Housing +512435,Housing,Housing +507144,Economic Development,Economic Development +510246,Infrastructure,Infrastructure +516604,Transportation,Transportation +516603,Transportation,Transportation +516610,Transportation,Transportation +512278,Infrastructure,Infrastructure +512379,Climate,Climate +506293,Climate,Climate +531034,Climate,Climate +531032,Climate,Climate +528313,Climate,Climate +528128,Climate,Climate +528127,Climate,Climate +524794,Climate,Climate +516990,Climate,Climate +512383,Climate,Climate +506292,Environment,Environment +506291,Environment,Environment +531034,Environment,Environment +531032,Environment,Environment +531031,Environment,Environment +531030,Environment,Environment +531029,Environment,Environment +528313,Environment,Environment +528128,Environment,Environment +528127,Environment,Environment +522052,Environment,Environment +519145,Environment,Environment +516990,Environment,Environment +516957,Environment,Environment +512383,Environment,Environment +512382,Environment,Environment +512379,Environment,Environment +512377,Environment,Environment +506292,Transportation,Transportation +506291,Transportation,Transportation +531034,Transportation,Transportation +531032,Transportation,Transportation +531031,Transportation,Transportation +531030,Transportation,Transportation +531029,Transportation,Transportation +528128,Transportation,Transportation +528127,Transportation,Transportation +519145,Transportation,Transportation +516990,Transportation,Transportation +516957,Transportation,Transportation +516956,Transportation,Transportation +507125,Forestry,Forestry +506228,Economic Development,Economic Development +506228,Industry,Industry +508524,Economic Development,Economic Development +506300,Economic Development,Economic Development +508530,Economic Development,Economic Development +504157,Labour,Labour +504468,Financial Institutions,Financial Institutions +504465,Financial Institutions,Financial Institutions +504171,Economic Development,Economic Development +517274,Constitutional Issues,Constitutional Issues +504275,Constitutional Issues,Constitutional Issues +509594,Budget,Budget +509361,Budget,Budget +514317,Budget,Budget +513490,Budget,Budget +511844,Budget,Budget +529402,Industry,Industry +529401,Industry,Industry +526887,Industry,Industry +520714,Industry,Industry +509852,Economic Development,Economic Development +509569,Economic Development,Economic Development +523657,Economic Development,Economic Development +519016,Economic Development,Economic Development +514327,Economic Development,Economic Development +512433,Economic Development,Economic Development +512277,Economic Development,Economic Development +513441,Industry,Industry +512277,Industry,Industry +519016,Industry,Industry +509852,International Trade,International Trade +509569,International Trade,International Trade +512433,International Trade,International Trade +529210,Budget,Budget +506095,Industry,Industry +506094,Industry,Industry +513365,Education,Education +513365,Official Languages,Official Languages +506464,Industry,Industry +506464,International Trade,International Trade +506434,International Trade,International Trade +506115,International Trade,International Trade +506114,International Trade,International Trade +513606,International Trade,International Trade +512285,International Trade,International Trade +512284,International Trade,International Trade +506115,Economic Development,Economic Development +523656,Climate,Climate +511929,Climate,Climate +530387,Climate,Climate +527070,Climate,Climate +530387,Economic Development,Economic Development +527070,Economic Development,Economic Development +524921,Economic Development,Economic Development +523656,Economic Development,Economic Development +511929,Economic Development,Economic Development +511879,Economic Development,Economic Development +511629,Economic Development,Economic Development +509398,Economic Development,Economic Development +506116,Economic Development,Economic Development +509398,International Trade,International Trade +506116,International Trade,International Trade +511929,International Trade,International Trade +511879,International Trade,International Trade +504884,Economic Development,Economic Development +545289,Economic Development,Economic Development +536870,Economic Development,Economic Development +536869,Economic Development,Economic Development +536868,Economic Development,Economic Development +536867,Economic Development,Economic Development +536866,Economic Development,Economic Development +536865,Economic Development,Economic Development +536851,Economic Development,Economic Development +536850,Economic Development,Economic Development +536849,Economic Development,Economic Development +536848,Economic Development,Economic Development +531307,Economic Development,Economic Development +531304,Economic Development,Economic Development +528743,Economic Development,Economic Development +525577,Economic Development,Economic Development +525555,Economic Development,Economic Development +519140,Economic Development,Economic Development +519139,Economic Development,Economic Development +519138,Economic Development,Economic Development +519137,Economic Development,Economic Development +517161,Economic Development,Economic Development +517160,Economic Development,Economic Development +517157,Economic Development,Economic Development +515556,Economic Development,Economic Development +515555,Economic Development,Economic Development +515553,Economic Development,Economic Development +513751,Economic Development,Economic Development +513750,Economic Development,Economic Development +512611,Economic Development,Economic Development +512609,Economic Development,Economic Development +512608,Economic Development,Economic Development +512607,Economic Development,Economic Development +512605,Economic Development,Economic Development +512603,Economic Development,Economic Development +512600,Economic Development,Economic Development +510778,Economic Development,Economic Development +508580,Economic Development,Economic Development +508576,Economic Development,Economic Development +508575,Economic Development,Economic Development +519321,Economic Development,Economic Development +519318,Economic Development,Economic Development +517497,Economic Development,Economic Development +517490,Economic Development,Economic Development +517488,Economic Development,Economic Development +517483,Economic Development,Economic Development +517478,Economic Development,Economic Development +517476,Economic Development,Economic Development +516547,Economic Development,Economic Development +513747,Economic Development,Economic Development +513746,Economic Development,Economic Development +512620,Economic Development,Economic Development +512619,Economic Development,Economic Development +512617,Economic Development,Economic Development +512616,Economic Development,Economic Development +512614,Economic Development,Economic Development +512613,Economic Development,Economic Development +510783,Economic Development,Economic Development +510782,Economic Development,Economic Development +508606,Economic Development,Economic Development +508604,Economic Development,Economic Development +508594,Economic Development,Economic Development +508592,Economic Development,Economic Development +504890,Economic Development,Economic Development +519325,Economic Development,Economic Development +516161,Economic Development,Economic Development +516088,Economic Development,Economic Development +514418,Economic Development,Economic Development +514394,Economic Development,Economic Development +510862,Economic Development,Economic Development +509065,Economic Development,Economic Development +509064,Economic Development,Economic Development +504995,Economic Development,Economic Development +504987,Economic Development,Economic Development +516547,Environment,Environment +504890,Environment,Environment +519325,Environment,Environment +519323,Environment,Environment +519321,Environment,Environment +519318,Environment,Environment +517497,Environment,Environment +517490,Environment,Environment +517488,Environment,Environment +517483,Environment,Environment +517478,Environment,Environment +517476,Environment,Environment +514252,Health,Health +514251,Health,Health +512696,Health,Health +512695,Health,Health +512694,Health,Health +511240,Health,Health +508912,Health,Health +508910,Health,Health +508906,Health,Health +508904,Health,Health +508899,Health,Health +505088,Health,Health +505084,Health,Health +543442,Health,Health +541882,Health,Health +541877,Health,Health +541875,Health,Health +539767,Health,Health +539765,Health,Health +539763,Health,Health +539758,Health,Health +539754,Health,Health +539753,Health,Health +539750,Health,Health +539732,Health,Health +536778,Health,Health +536777,Health,Health +536768,Health,Health +536759,Health,Health +534815,Health,Health +534813,Health,Health +534811,Health,Health +534807,Health,Health +531199,Health,Health +525186,Health,Health +519988,Health,Health +518208,Health,Health +518207,Health,Health +515870,Health,Health +514794,Health,Health +514793,Health,Health +514792,Health,Health +514791,Health,Health +508831,Government Procurement,Government Procurement +508697,Government Procurement,Government Procurement +538960,Government Procurement,Government Procurement +533015,Government Procurement,Government Procurement +505358,Agriculture,Agriculture +505357,Agriculture,Agriculture +532848,Agriculture,Agriculture +532847,Agriculture,Agriculture +532846,Agriculture,Agriculture +505358,Consumer Issues,Consumer Issues +505357,Consumer Issues,Consumer Issues +532847,Health,Health +532847,International Trade,International Trade +532846,International Trade,International Trade +505359,International Trade,International Trade +505357,International Trade,International Trade +527335,Industry,Industry +516294,Industry,Industry +537408,Employment and Training,Employment and Training +526011,Employment and Training,Employment and Training +537412,Employment and Training,Employment and Training +526011,Health,Health +505207,Health,Health +537412,Health,Health +537409,Health,Health +508890,Health,Health +508885,Health,Health +508890,Immigration,Immigration +508885,International Relations,International Relations +508939,Health,Health +508943,Immigration,Immigration +508939,Immigration,Immigration +511537,Immigration,Immigration +511536,International Relations,International Relations +508943,International Relations,International Relations +511536,Sports,Sports +508965,Health,Health +508965,Immigration,Immigration +539446,Immigration,Immigration +505967,Research and Development,Research and Development +512236,Climate,Climate +512233,Climate,Climate +518684,Climate,Climate +516125,Climate,Climate +516124,Climate,Climate +516123,Climate,Climate +516124,Energy,Energy +516123,Energy,Energy +521214,Energy,Energy +518684,Energy,Energy +518684,Environment,Environment +512233,Infrastructure,Infrastructure +511847,Infrastructure,Infrastructure +521214,Infrastructure,Infrastructure +518684,Infrastructure,Infrastructure +516125,Infrastructure,Infrastructure +516124,Infrastructure,Infrastructure +516123,Infrastructure,Infrastructure +513663,Infrastructure,Infrastructure +518684,Municipalities,Municipalities +507013,Health,Health +520447,Consumer Issues,Consumer Issues +506501,Consumer Issues,Consumer Issues +544697,Consumer Issues,Consumer Issues +536402,Consumer Issues,Consumer Issues +536096,Consumer Issues,Consumer Issues +533529,Consumer Issues,Consumer Issues +533527,Consumer Issues,Consumer Issues +524630,Consumer Issues,Consumer Issues +522465,Consumer Issues,Consumer Issues +521272,Consumer Issues,Consumer Issues +520655,Consumer Issues,Consumer Issues +520655,Financial Institutions,Financial Institutions +520621,Financial Institutions,Financial Institutions +516155,Financial Institutions,Financial Institutions +507876,Financial Institutions,Financial Institutions +536096,Financial Institutions,Financial Institutions +533522,Financial Institutions,Financial Institutions +516155,Privacy and Access to Information,Privacy and Access to Information +506501,Privacy and Access to Information,Privacy and Access to Information +507876,Taxation and Finance,Taxation and Finance +506501,Taxation and Finance,Taxation and Finance +544697,Taxation and Finance,Taxation and Finance +522465,Taxation and Finance,Taxation and Finance +521272,Taxation and Finance,Taxation and Finance +507172,Constitutional Issues,Constitutional Issues +507550,Financial Institutions,Financial Institutions +507172,Financial Institutions,Financial Institutions +544588,Financial Institutions,Financial Institutions +527172,Financial Institutions,Financial Institutions +521691,Financial Institutions,Financial Institutions +507172,Taxation and Finance,Taxation and Finance +544588,Taxation and Finance,Taxation and Finance +510098,Government Procurement,Government Procurement +510098,Health,Health +508546,Intellectual Property,Intellectual Property +516018,Employment and Training,Employment and Training +506004,Employment and Training,Employment and Training +542320,Employment and Training,Employment and Training +532271,Employment and Training,Employment and Training +527653,Employment and Training,Employment and Training +520967,Employment and Training,Employment and Training +520587,Employment and Training,Employment and Training +520379,Employment and Training,Employment and Training +516655,Employment and Training,Employment and Training +516581,Employment and Training,Employment and Training +514918,Government Procurement,Government Procurement +511462,Government Procurement,Government Procurement +521632,Government Procurement,Government Procurement +511462,Health,Health +507135,Health,Health +508528,Economic Development,Economic Development +506024,Economic Development,Economic Development +532167,Economic Development,Economic Development +532161,Economic Development,Economic Development +509371,Government Procurement,Government Procurement +509183,Government Procurement,Government Procurement +509329,Health,Health +509183,Health,Health +509371,Intellectual Property,Intellectual Property +509183,Intellectual Property,Intellectual Property +509406,Consumer Issues,Consumer Issues +506440,Consumer Issues,Consumer Issues +509407,Internal Trade,Internal Trade +506440,Internal Trade,Internal Trade +509406,Transportation,Transportation +506440,Transportation,Transportation +518663,Transportation,Transportation +516614,Transportation,Transportation +512830,Transportation,Transportation +508774,Taxation and Finance,Taxation and Finance +531724,Taxation and Finance,Taxation and Finance +517927,Taxation and Finance,Taxation and Finance +517923,Taxation and Finance,Taxation and Finance +513027,Taxation and Finance,Taxation and Finance +511363,Taxation and Finance,Taxation and Finance +511359,Taxation and Finance,Taxation and Finance +508789,Taxation and Finance,Taxation and Finance +508785,Taxation and Finance,Taxation and Finance +508782,Taxation and Finance,Taxation and Finance +506075,Budget,Budget +506074,Budget,Budget +530511,Taxation and Finance,Taxation and Finance +507816,Taxation and Finance,Taxation and Finance +517871,Tourism,Tourism +517868,Tourism,Tourism +536242,Tourism,Tourism +533117,Tourism,Tourism +533029,Tourism,Tourism +533022,Tourism,Tourism +530511,Tourism,Tourism +522852,Tourism,Tourism +522850,Tourism,Tourism +522844,Tourism,Tourism +517873,Tourism,Tourism +513402,Transportation,Transportation +507816,Transportation,Transportation +536242,Transportation,Transportation +533117,Transportation,Transportation +533022,Transportation,Transportation +530511,Transportation,Transportation +522852,Transportation,Transportation +522850,Transportation,Transportation +522844,Transportation,Transportation +517873,Transportation,Transportation +517872,Transportation,Transportation +517871,Transportation,Transportation +509679,Health,Health +506098,Economic Development,Economic Development +521513,Education,Éducation +521508,Education,Éducation +506140,Education,Éducation +506139,Education,Éducation +506138,Education,Éducation +506139,Agriculture,Agriculture +506138,Agriculture,Agriculture +506138,International Development,Développement international +506139,Regional Development,Développement régional +506138,Regional Development,Développement régional +509289,Regional Development,Développement régional +506138,Forestry,Foresterie +506140,Forestry,Foresterie +506140,Immigration,Immigration +506138,Immigration,Immigration +538949,Immigration,Immigration +521513,Immigration,Immigration +506140,Infrastructure,Infrastructure +506140,Housing,Logement +506138,Housing,Logement +506138,Mining,Mines +511315,Energy,Energy +510980,Energy,Energy +524318,Energy,Energy +524318,Environment,Environment +506771,Federal-Provincial Relations,Federal-Provincial Relations +506144,Federal-Provincial Relations,Federal-Provincial Relations +536191,Federal-Provincial Relations,Federal-Provincial Relations +535279,Federal-Provincial Relations,Federal-Provincial Relations +530316,Federal-Provincial Relations,Federal-Provincial Relations +530297,Federal-Provincial Relations,Federal-Provincial Relations +527689,Federal-Provincial Relations,Federal-Provincial Relations +527685,Federal-Provincial Relations,Federal-Provincial Relations +527681,Federal-Provincial Relations,Federal-Provincial Relations +527249,Federal-Provincial Relations,Federal-Provincial Relations +526944,Federal-Provincial Relations,Federal-Provincial Relations +526810,Federal-Provincial Relations,Federal-Provincial Relations +526793,Federal-Provincial Relations,Federal-Provincial Relations +526769,Federal-Provincial Relations,Federal-Provincial Relations +526385,Federal-Provincial Relations,Federal-Provincial Relations +526291,Federal-Provincial Relations,Federal-Provincial Relations +525868,Federal-Provincial Relations,Federal-Provincial Relations +525867,Federal-Provincial Relations,Federal-Provincial Relations +525016,Federal-Provincial Relations,Federal-Provincial Relations +524810,Federal-Provincial Relations,Federal-Provincial Relations +524809,Federal-Provincial Relations,Federal-Provincial Relations +524790,Federal-Provincial Relations,Federal-Provincial Relations +524789,Federal-Provincial Relations,Federal-Provincial Relations +524788,Federal-Provincial Relations,Federal-Provincial Relations +524787,Federal-Provincial Relations,Federal-Provincial Relations +524786,Federal-Provincial Relations,Federal-Provincial Relations +524785,Federal-Provincial Relations,Federal-Provincial Relations +524784,Federal-Provincial Relations,Federal-Provincial Relations +524783,Federal-Provincial Relations,Federal-Provincial Relations +524782,Federal-Provincial Relations,Federal-Provincial Relations +524780,Federal-Provincial Relations,Federal-Provincial Relations +524779,Federal-Provincial Relations,Federal-Provincial Relations +524778,Federal-Provincial Relations,Federal-Provincial Relations +524777,Federal-Provincial Relations,Federal-Provincial Relations +524776,Federal-Provincial Relations,Federal-Provincial Relations +524774,Federal-Provincial Relations,Federal-Provincial Relations +524772,Federal-Provincial Relations,Federal-Provincial Relations +524771,Federal-Provincial Relations,Federal-Provincial Relations +524770,Federal-Provincial Relations,Federal-Provincial Relations +524762,Federal-Provincial Relations,Federal-Provincial Relations +524738,Federal-Provincial Relations,Federal-Provincial Relations +524736,Federal-Provincial Relations,Federal-Provincial Relations +524735,Federal-Provincial Relations,Federal-Provincial Relations +524729,Federal-Provincial Relations,Federal-Provincial Relations +524726,Federal-Provincial Relations,Federal-Provincial Relations +524725,Federal-Provincial Relations,Federal-Provincial Relations +524724,Federal-Provincial Relations,Federal-Provincial Relations +524723,Federal-Provincial Relations,Federal-Provincial Relations +524722,Federal-Provincial Relations,Federal-Provincial Relations +524448,Federal-Provincial Relations,Federal-Provincial Relations +524447,Federal-Provincial Relations,Federal-Provincial Relations +524444,Federal-Provincial Relations,Federal-Provincial Relations +524154,Federal-Provincial Relations,Federal-Provincial Relations +524153,Federal-Provincial Relations,Federal-Provincial Relations +524152,Federal-Provincial Relations,Federal-Provincial Relations +523940,Federal-Provincial Relations,Federal-Provincial Relations +523936,Federal-Provincial Relations,Federal-Provincial Relations +523935,Federal-Provincial Relations,Federal-Provincial Relations +523934,Federal-Provincial Relations,Federal-Provincial Relations +523933,Federal-Provincial Relations,Federal-Provincial Relations +523842,Federal-Provincial Relations,Federal-Provincial Relations +523841,Federal-Provincial Relations,Federal-Provincial Relations +523840,Federal-Provincial Relations,Federal-Provincial Relations +523839,Federal-Provincial Relations,Federal-Provincial Relations +523838,Federal-Provincial Relations,Federal-Provincial Relations +523837,Federal-Provincial Relations,Federal-Provincial Relations +521246,Federal-Provincial Relations,Federal-Provincial Relations +521054,Federal-Provincial Relations,Federal-Provincial Relations +521053,Federal-Provincial Relations,Federal-Provincial Relations +520554,Federal-Provincial Relations,Federal-Provincial Relations +519121,Federal-Provincial Relations,Federal-Provincial Relations +518512,Federal-Provincial Relations,Federal-Provincial Relations +518440,Federal-Provincial Relations,Federal-Provincial Relations +516696,Federal-Provincial Relations,Federal-Provincial Relations +516483,Federal-Provincial Relations,Federal-Provincial Relations +516392,Federal-Provincial Relations,Federal-Provincial Relations +516349,Federal-Provincial Relations,Federal-Provincial Relations +516101,Federal-Provincial Relations,Federal-Provincial Relations +515993,Federal-Provincial Relations,Federal-Provincial Relations +515266,Federal-Provincial Relations,Federal-Provincial Relations +510427,Energy,Energy +507064,Energy,Energy +510427,Government Procurement,Government Procurement +507064,Government Procurement,Government Procurement +517652,Government Procurement,Government Procurement +514019,Government Procurement,Government Procurement +512550,Government Procurement,Government Procurement +512546,Government Procurement,Government Procurement +512545,Government Procurement,Government Procurement +512543,Government Procurement,Government Procurement +512542,Government Procurement,Government Procurement +507249,Environment,Environment +506331,Environment,Environment +520442,Environment,Environment +519129,Environment,Environment +518809,Environment,Environment +516382,Environment,Environment +516117,Environment,Environment +515003,Environment,Environment +511732,Environment,Environment +509710,Environment,Environment +509587,Environment,Environment +509290,Environment,Environment +508693,Environment,Environment +507249,Industry,Industry +506331,Industry,Industry +520668,Industry,Industry +520442,Industry,Industry +519129,Industry,Industry +518809,Industry,Industry +516382,Industry,Industry +516117,Industry,Industry +515962,Industry,Industry +515352,Industry,Industry +515037,Industry,Industry +515003,Industry,Industry +512399,Industry,Industry +511813,Industry,Industry +511732,Industry,Industry +509710,Industry,Industry +509587,Industry,Industry +509290,Industry,Industry +508693,Industry,Industry +507249,Research and Development,Research and Development +506331,Research and Development,Research and Development +519129,Research and Development,Research and Development +515003,Research and Development,Research and Development +511813,Research and Development,Research and Development +511732,Research and Development,Research and Development +509710,Research and Development,Research and Development +509587,Research and Development,Research and Development +509290,Research and Development,Research and Development +508693,Research and Development,Research and Development +507249,Transportation,Transportation +506331,Transportation,Transportation +520668,Transportation,Transportation +520442,Transportation,Transportation +519129,Transportation,Transportation +518809,Transportation,Transportation +516382,Transportation,Transportation +516117,Transportation,Transportation +515962,Transportation,Transportation +515352,Transportation,Transportation +515037,Transportation,Transportation +515003,Transportation,Transportation +512399,Transportation,Transportation +511732,Transportation,Transportation +509710,Transportation,Transportation +509587,Transportation,Transportation +509290,Transportation,Transportation +508693,Transportation,Transportation +509056,Fisheries,Fisheries +511833,Federal-Provincial Relations,Federal-Provincial Relations +511832,Federal-Provincial Relations,Federal-Provincial Relations +513455,Federal-Provincial Relations,Federal-Provincial Relations +507923,Child Services,Child Services +507817,Child Services,Child Services +513536,Natural Resources,Natural Resources +521903,Economic Development,Economic Development +521902,Economic Development,Economic Development +540530,Economic Development,Economic Development +523564,Economic Development,Economic Development +521906,Economic Development,Economic Development +521903,International Trade,International Trade +521902,International Trade,International Trade +540530,International Trade,International Trade +523564,International Trade,International Trade +521906,International Trade,International Trade +507814,Budget,Budget +507814,Economic Development,Economic Development +507814,Tourism,Tourism +518597,Energy,Energy +508492,Energy,Energy +518597,Housing,Housing +508492,Housing,Housing +543819,Housing,Housing +529851,Housing,Housing +518597,Taxation and Finance,Taxation and Finance +508492,Taxation and Finance,Taxation and Finance +543819,Taxation and Finance,Taxation and Finance +529851,Taxation and Finance,Taxation and Finance +508492,Infrastructure,Infrastructure +511687,Economic Development,Economic Development +511687,Industry,Industry +511687,Regional Development,Regional Development +506304,Economic Development,Economic Development +506303,Economic Development,Economic Development +509971,Energy,Energy +509971,Natural Resources,Natural Resources +509971,Environment,Environment +531178,Economic Development,Economic Development +514579,Economic Development,Economic Development +541438,Economic Development,Economic Development +515917,Agriculture,Agriculture +514905,Agriculture,Agriculture +520252,Agriculture,Agriculture +507793,Government Procurement,Government Procurement +511786,Climate,Climate +509487,Climate,Climate +511786,Economic Development,Economic Development +509487,Economic Development,Economic Development +511786,Environment,Environment +509487,Environment,Environment +511786,Mining,Mining +509487,Mining,Mining +511786,Natural Resources,Natural Resources +509487,Natural Resources,Natural Resources +511786,Regional Development,Regional Development +509487,Regional Development,Regional Development +506728,Economic Development,Développement économique +506727,Economic Development,Développement économique +512161,Economic Development,Développement économique +509525,Economic Development,Développement économique +509410,Economic Development,Développement économique +509366,Economic Development,Développement économique +509305,Economic Development,Développement économique +509304,Economic Development,Développement économique +509303,Economic Development,Développement économique +509302,Economic Development,Développement économique +509245,Economic Development,Développement économique +509244,Economic Development,Développement économique +508078,Economic Development,Développement économique +508076,Economic Development,Développement économique +507547,Economic Development,Développement économique +507449,Economic Development,Développement économique +507043,Economic Development,Développement économique +507041,Economic Development,Développement économique +507038,Economic Development,Développement économique +507034,Economic Development,Développement économique +506732,Economic Development,Développement économique +506731,Economic Development,Développement économique +509244,Regional Development,Développement régional +506730,Regional Development,Développement régional +509525,Regional Development,Développement régional +509305,Regional Development,Développement régional +509302,Health,Santé +528410,Economic Development,Economic Development +528407,Economic Development,Economic Development +528445,Economic Development,Economic Development +528414,Economic Development,Economic Development +528410,International Trade,International Trade +528407,International Trade,International Trade +513984,Climate,Climate +513349,Economic Development,Economic Development +510549,Economic Development,Economic Development +513349,Environment,Environment +510549,Environment,Environment +510549,Research and Development,Research and Development +511513,Financial Institutions,Financial Institutions +520826,Consumer Issues,Consumer Issues +527271,Consumer Issues,Consumer Issues +521916,Consumer Issues,Consumer Issues +521915,Economic Development,Economic Development +520826,Economic Development,Economic Development +527271,Economic Development,Economic Development +521916,Financial Institutions,Financial Institutions +521915,Financial Institutions,Financial Institutions +520826,Financial Institutions,Financial Institutions +521915,Small Business,Small Business +520826,Small Business,Small Business +527271,Small Business,Small Business +521916,Taxation and Finance,Taxation and Finance +521915,Taxation and Finance,Taxation and Finance +510422,Economic Development,Economic Development +523163,Climate,Climate +523163,Energy,Energy +523163,Environment,Environment +509531,Climate,Climate +506541,Climate,Climate +542931,Climate,Climate +538893,Climate,Climate +537613,Climate,Climate +533635,Climate,Climate +533632,Climate,Climate +527743,Climate,Climate +524727,Climate,Climate +513793,Climate,Climate +513100,Infrastructure,Infrastructure +506541,Energy,Energy +508916,Transportation,Transportation +510144,Child Services,Child Services +510144,Housing,Housing +509803,Housing,Housing +524915,Housing,Housing +522369,Housing,Housing +520972,Housing,Housing +510144,Infrastructure,Infrastructure +509803,Infrastructure,Infrastructure +524915,Infrastructure,Infrastructure +524908,Infrastructure,Infrastructure +520972,Infrastructure,Infrastructure +516637,Environment,Environment +520301,Government Procurement,Government Procurement +511666,Government Procurement,Government Procurement +516496,Health,Health +516496,Industry,Industry +511666,Industry,Industry +510935,Government Procurement,Government Procurement +510933,Government Procurement,Government Procurement +510935,Health,Health +510933,Health,Health +510970,Government Procurement,Government Procurement +510970,Health,Health +509258,Government Procurement,Government Procurement +536842,Health,Health +522259,Health,Health +511860,Health,Health +509467,Health,Health +511860,Research and Development,Research and Development +515917,Employment and Training,Employment and Training +524120,Budget,Budget +519861,Budget,Budget +524141,Budget,Budget +524140,Budget,Budget +524139,Budget,Budget +524138,Budget,Budget +524137,Budget,Budget +524135,Budget,Budget +524134,Budget,Budget +524133,Budget,Budget +524132,Economic Development,Economic Development +524120,Economic Development,Economic Development +524141,Economic Development,Economic Development +524140,Economic Development,Economic Development +524139,Economic Development,Economic Development +524138,Economic Development,Economic Development +524137,Economic Development,Economic Development +524135,Economic Development,Economic Development +524134,Economic Development,Economic Development +524132,Industry,Industry +524120,Industry,Industry +538803,Industry,Industry +524141,Industry,Industry +524140,Industry,Industry +524139,Industry,Industry +524138,Industry,Industry +524137,Industry,Industry +524135,Industry,Industry +524134,Industry,Industry +524133,Regional Development,Regional Development +519861,Regional Development,Regional Development +524120,Taxation and Finance,Taxation and Finance +519861,Taxation and Finance,Taxation and Finance +524141,Taxation and Finance,Taxation and Finance +524140,Taxation and Finance,Taxation and Finance +524139,Taxation and Finance,Taxation and Finance +524138,Taxation and Finance,Taxation and Finance +524137,Taxation and Finance,Taxation and Finance +524135,Taxation and Finance,Taxation and Finance +524134,Taxation and Finance,Taxation and Finance +524133,Taxation and Finance,Taxation and Finance +524133,Tourism,Tourism +519861,Tourism,Tourism +538803,Tourism,Tourism +524141,Tourism,Tourism +524140,Tourism,Tourism +524139,Tourism,Tourism +524138,Tourism,Tourism +524137,Tourism,Tourism +524135,Tourism,Tourism +520962,Transportation,Transportation +519861,Transportation,Transportation +538803,Transportation,Transportation +524141,Transportation,Transportation +524140,Transportation,Transportation +524139,Transportation,Transportation +524138,Transportation,Transportation +524137,Transportation,Transportation +524135,Transportation,Transportation +524134,Transportation,Transportation +524133,Transportation,Transportation +524132,Transportation,Transportation +506681,Economic Development,Economic Development +544608,Research and Development,Research and Development +544607,Research and Development,Research and Development +544615,Research and Development,Research and Development +544614,Research and Development,Research and Development +544613,Research and Development,Research and Development +544611,Research and Development,Research and Development +544610,Research and Development,Research and Development +509222,Transportation,Transportation +524482,Agriculture,Agriculture +520552,Agriculture,Agriculture +524610,Agriculture,Agriculture +524503,Agriculture,Agriculture +524502,Agriculture,Agriculture +524499,Agriculture,Agriculture +524498,Agriculture,Agriculture +524496,Agriculture,Agriculture +524495,Agriculture,Agriculture +524492,Agriculture,Agriculture +524489,Agriculture,Agriculture +524487,Agriculture,Agriculture +524482,International Trade,International Trade +520552,International Trade,International Trade +524610,International Trade,International Trade +524503,International Trade,International Trade +524502,International Trade,International Trade +524499,International Trade,International Trade +524498,International Trade,International Trade +524496,International Trade,International Trade +524495,International Trade,International Trade +524492,International Trade,International Trade +524489,International Trade,International Trade +524487,International Trade,International Trade +524009,Consumer Issues,Consumer Issues +509368,Consumer Issues,Consumer Issues +530647,Consumer Issues,Consumer Issues +521625,Health,Health +509368,Health,Health +530647,Health,Health +524901,Health,Health +512589,Infrastructure,Infrastructure +512589,Energy,Energy +512589,Climate,Climate +509928,Health,Health +509648,Health,Health +509928,Infrastructure,Infrastructure +509648,Infrastructure,Infrastructure +511703,Agriculture,Agriculture +511702,Agriculture,Agriculture +507456,Economic Development,Développement économique +507453,Economic Development,Développement économique +509828,Economic Development,Développement économique +509827,Economic Development,Développement économique +509826,Economic Development,Développement économique +509825,Economic Development,Développement économique +509673,Economic Development,Développement économique +509524,Economic Development,Développement économique +509523,Economic Development,Développement économique +509522,Economic Development,Développement économique +509480,Economic Development,Développement économique +509477,Economic Development,Développement économique +509476,Economic Development,Développement économique +506133,Research and Development,Research and Development +513663,Climate,Climate +516125,Energy,Energy +521214,Environment,Environment +512236,Infrastructure,Infrastructure +521214,Municipalities,Municipalities +530125,Government Procurement,Government Procurement +530125,Health,Health +530125,Small Business,Small Business +505978,Economic Development,Economic Development +505978,Financial Institutions,Financial Institutions +505978,Taxation and Finance,Taxation and Finance +505980,Financial Institutions,Financial Institutions +505980,Taxation and Finance,Taxation and Finance +509674,Health,Health +520621,Consumer Issues,Consumer Issues +524630,Financial Institutions,Financial Institutions +533529,Privacy and Access to Information,Privacy and Access to Information +520447,Taxation and Finance,Taxation and Finance +527172,Constitutional Issues,Constitutional Issues +507550,Economic Development,Economic Development +520985,Financial Institutions,Financial Institutions +520985,Small Business,Small Business +521691,Taxation and Finance,Taxation and Finance +512336,Government Procurement,Government Procurement +512336,Health,Health +508549,Intellectual Property,Intellectual Property +508546,Justice and Law Enforcement,Justice and Law Enforcement +508549,Security,Security +508549,Small Business,Small Business +516577,Employment and Training,Employment and Training +516003,Government Procurement,Government Procurement +521633,Health,Health +513350,Economic Development,Economic Development +509491,Government Procurement,Government Procurement +509491,Health,Health +509491,Intellectual Property,Intellectual Property +516614,Climate,Climate +512830,Consumer Issues,Consumer Issues +518663,Internal Trade,Internal Trade +509407,Regional Development,Regional Development +509407,Transportation,Transportation +513491,Research and Development,Research and Development +508778,Taxation and Finance,Taxation and Finance +507971,Employment and Training,Emploi et formation +507971,Justice and Law Enforcement,Justice et application des lois +530503,Budget,Budget +533029,Taxation and Finance,Taxation and Finance +517872,Tourism,Tourism +517868,Transportation,Transportation +511798,Health,Health +506340,Economic Development,Economic Development +538949,Education,Éducation +506140,Agriculture,Agriculture +506140,International Development,Développement international +506140,Regional Development,Développement régional +506139,Forestry,Foresterie +516073,Immigration,Immigration +509289,Infrastructure,Infrastructure +509289,Housing,Logement +506139,Mining,Mines +506138,International Relations,Relations internationales +509956,Energy,Energy +511259,Intellectual Property,Intellectual Property +508913,Taxation and Finance,Taxation and Finance +506130,Official Languages,Official Languages +506722,Research and Development,Recherche et développement +512258,Energy,Energy +512258,Environment,Environment +511315,Research and Development,Research and Development +514938,Federal-Provincial Relations,Federal-Provincial Relations +506488,Transportation,Transportation +506157,International Trade,International Trade +506306,Economic Development,Economic Development +510429,Energy,Energy +510429,Government Procurement,Government Procurement +507846,Environment,Environment +507846,Industry,Industry +507846,Research and Development,Research and Development +507846,Transportation,Transportation +509057,Fisheries,Fisheries +536241,Climate,Climate +511834,Federal-Provincial Relations,Federal-Provincial Relations +513455,Municipalities,Municipalities +507925,Child Services,Child Services +513536,Climate,Climate +513542,Environment,Environment +544445,Mining,Mining +513542,Natural Resources,Natural Resources +521905,Economic Development,Economic Development +521905,International Trade,International Trade +506275,Economic Development,Economic Development +507861,Budget,Budget +507861,Economic Development,Economic Development +507861,Tourism,Tourism +518602,Energy,Energy +518602,Housing,Housing +518602,Taxation and Finance,Taxation and Finance +518602,Infrastructure,Infrastructure +511927,Economic Development,Economic Development +511927,Industry,Industry +511927,Health,Health +511927,Regional Development,Regional Development +537992,Economic Development,Economic Development +511198,Energy,Energy +511198,Natural Resources,Natural Resources +509971,Climate,Climate +511198,Environment,Environment +533643,Economic Development,Economic Development +507963,Taxation and Finance,Impôts et finances +507963,Health,Santé +519217,Agriculture,Agriculture +507799,Government Procurement,Government Procurement +511787,Climate,Climate +511787,Economic Development,Economic Development +511787,Environment,Environment +511787,Mining,Mining +511787,Natural Resources,Natural Resources +511787,Regional Development,Regional Development +509292,Fisheries,Fisheries +543734,Mining,Mining +543734,Natural Resources,Natural Resources +542089,Industry,Industry +506729,Economic Development,Développement économique +509304,Regional Development,Développement régional +509525,Health,Santé +528412,Economic Development,Economic Development +528412,International Trade,International Trade +518897,Climate,Climate +513984,Economic Development,Economic Development +518897,Environment,Environment +513349,Research and Development,Research and Development +511517,Financial Institutions,Financial Institutions +506407,Regional Development,Regional Development +506408,Federal-Provincial Relations,Federal-Provincial Relations +521915,Consumer Issues,Consumer Issues +521916,Economic Development,Economic Development +527271,Financial Institutions,Financial Institutions +521916,Small Business,Small Business +527271,Taxation and Finance,Taxation and Finance +514021,Economic Development,Economic Development +510422,Regional Development,Regional Development +508542,Agriculture,Agriculture +523175,Climate,Climate +523175,Energy,Energy +523175,Environment,Environment +506494,Climate,Climate +513701,Climate,Climate +514841,Climate,Climate +522622,Regional Development,Regional Development +522622,Economic Development,Economic Development +522622,Infrastructure,Infrastructure +513101,Infrastructure,Infrastructure +513173,Economic Development,Economic Development +513793,Energy,Energy +506541,Housing,Housing +506541,Transportation,Transportation +536013,Taxation and Finance,Taxation and Finance +513399,Transportation,Transportation +520746,Child Services,Child Services +520746,Housing,Housing +524908,Immigration,Immigration +520746,Infrastructure,Infrastructure +532939,Environment,Environment +527267,Government Procurement,Government Procurement +527267,Health,Health +516637,Industry,Industry +506586,Industry,Industry +510175,Health,Health +506857,Small Business,Small Business +511725,Government Procurement,Government Procurement +511725,Health,Health +510971,Government Procurement,Government Procurement +510971,Health,Health +536842,Government Procurement,Government Procurement +509258,Health,Health +522259,Research and Development,Research and Development +506642,Climate,Climat +506642,Industry,Industrie +506644,Energy,Energy +507073,Regional Development,Développement régional +507073,Transportation,Transports +520252,Employment and Training,Employment and Training +519217,Health,Health +524132,Budget,Budget +524133,Economic Development,Economic Development +524133,Industry,Industry +524141,Regional Development,Regional Development +524132,Taxation and Finance,Taxation and Finance +524134,Tourism,Tourism +524120,Transportation,Transportation +521426,Economic Development,Economic Development +544609,Research and Development,Research and Development +509223,Transportation,Transportation +524486,Agriculture,Agriculture +524486,International Trade,International Trade +524901,Consumer Issues,Consumer Issues +524009,Health,Health +536710,Infrastructure,Infrastructure +536710,Energy,Energy +536710,Climate,Climate +512590,Energy,Energy +512590,Infrastructure,Infrastructure +512590,Climate,Climate +511655,Health,Health +511655,Infrastructure,Infrastructure +506784,Justice and Law Enforcement,Justice and Law Enforcement +511704,Agriculture,Agriculture +507458,Economic Development,Développement économique +509477,Regional Development,Développement régional +509524,Energy,Énergie +507473,Environment,Environnement +509600,Mining,Mines +512808,Immigration,Immigration +542931,Employment and Training,Employment and Training +506541,Federal-Provincial Relations,Federal-Provincial Relations +537613,Taxation and Finance,Taxation and Finance +523205,Employment and Training,Employment and Training +514795,Health,Health +513201,Agriculture,Agriculture +515021,Natural Resources,Natural Resources +524923,Budget,Budget +534373,Defence,Defence +513946,Government Procurement,Government Procurement +534374,Industry,Industry +515065,Labour,Labour +513020,Economic Development,Economic Development +513020,Employment and Training,Employment and Training +527374,Housing,Housing +513019,Infrastructure,Infrastructure +515409,Government Procurement,Government Procurement +515409,Transportation,Transportation +515409,Defence,Defence +513363,Health,Health +537174,Research and Development,Research and Development +520350,Employment and Training,Employment and Training +537191,Taxation and Finance,Taxation and Finance +515424,Immigration,Immigration +522771,Tourism,Tourism +515424,Labour,Labour +513103,Employment and Training,Employment and Training +506874,Regional Development,Regional Development +509475,Economic Development,Développement économique +509221,Economic Development,Développement économique +509220,Economic Development,Développement économique +509219,Economic Development,Développement économique +509217,Economic Development,Développement économique +509216,Economic Development,Développement économique +509215,Economic Development,Développement économique +507517,Economic Development,Développement économique +507516,Economic Development,Développement économique +507476,Economic Development,Développement économique +507475,Economic Development,Développement économique +507474,Economic Development,Développement économique +507473,Economic Development,Développement économique +507472,Economic Development,Développement économique +507471,Economic Development,Développement économique +507470,Economic Development,Développement économique +507469,Economic Development,Développement économique +507468,Economic Development,Développement économique +507467,Economic Development,Développement économique +507466,Economic Development,Développement économique +507464,Economic Development,Développement économique +507463,Economic Development,Développement économique +507462,Economic Development,Développement économique +507460,Economic Development,Développement économique +507459,Economic Development,Développement économique +509475,Regional Development,Développement régional +509215,Regional Development,Développement régional +509828,Regional Development,Développement régional +509827,Regional Development,Développement régional +509826,Regional Development,Développement régional +509825,Regional Development,Développement régional +509524,Regional Development,Développement régional +509523,Regional Development,Développement régional +509522,Regional Development,Développement régional +509480,Regional Development,Développement régional +509522,Energy,Énergie +509476,Energy,Énergie +509221,Energy,Énergie +509216,Energy,Énergie +507471,Energy,Énergie +507470,Energy,Énergie +509825,Energy,Énergie +509673,Energy,Énergie +507472,Environment,Environnement +507469,Environment,Environnement +509825,Environment,Environnement +509673,Environment,Environnement +509523,Environment,Environnement +509219,Environment,Environnement +509217,Environment,Environnement +507474,Environment,Environnement +509602,Immigration,Immigration +509601,Immigration,Immigration +514039,Immigration,Immigration +538893,Employment and Training,Employment and Training +506541,Employment and Training,Employment and Training +533632,Taxation and Finance,Taxation and Finance +506541,Taxation and Finance,Taxation and Finance +515911,Employment and Training,Employment and Training +514795,Employment and Training,Employment and Training +523208,Employment and Training,Employment and Training +510887,Agriculture,Agriculture +518323,Agriculture,Agriculture +515913,Agriculture,Agriculture +515911,Agriculture,Agriculture +514797,Agriculture,Agriculture +515020,Natural Resources,Natural Resources +513306,Natural Resources,Natural Resources +512306,Natural Resources,Natural Resources +512300,Natural Resources,Natural Resources +510545,Natural Resources,Natural Resources +506817,Natural Resources,Natural Resources +541013,Natural Resources,Natural Resources +541012,Natural Resources,Natural Resources +541011,Natural Resources,Natural Resources +538616,Natural Resources,Natural Resources +538614,Natural Resources,Natural Resources +538612,Natural Resources,Natural Resources +538611,Natural Resources,Natural Resources +538610,Natural Resources,Natural Resources +538608,Natural Resources,Natural Resources +538606,Natural Resources,Natural Resources +535705,Natural Resources,Natural Resources +535703,Natural Resources,Natural Resources +531908,Natural Resources,Natural Resources +531906,Natural Resources,Natural Resources +527995,Natural Resources,Natural Resources +527994,Natural Resources,Natural Resources +527993,Natural Resources,Natural Resources +527992,Natural Resources,Natural Resources +527990,Natural Resources,Natural Resources +524316,Natural Resources,Natural Resources +524315,Natural Resources,Natural Resources +524314,Natural Resources,Natural Resources +524313,Natural Resources,Natural Resources +521435,Natural Resources,Natural Resources +521433,Natural Resources,Natural Resources +521432,Natural Resources,Natural Resources +521419,Natural Resources,Natural Resources +521418,Natural Resources,Natural Resources +521417,Natural Resources,Natural Resources +521416,Natural Resources,Natural Resources +519409,Natural Resources,Natural Resources +519408,Natural Resources,Natural Resources +518833,Natural Resources,Natural Resources +516907,Natural Resources,Natural Resources +516906,Natural Resources,Natural Resources +516468,Natural Resources,Natural Resources +516465,Natural Resources,Natural Resources +516463,Natural Resources,Natural Resources +516444,Natural Resources,Natural Resources +516443,Natural Resources,Natural Resources +516442,Natural Resources,Natural Resources +515103,Natural Resources,Natural Resources +515028,Natural Resources,Natural Resources +515024,Natural Resources,Natural Resources +515023,Natural Resources,Natural Resources +515022,Natural Resources,Natural Resources +524917,Budget,Budget +522357,Budget,Budget +527024,Budget,Budget +527023,Budget,Budget +524925,Budget,Budget +507193,Defence,Defence +534373,Industry,Industry +510433,Industry,Industry +527374,Labour,Labour +527373,Labour,Labour +524331,Labour,Labour +523190,Labour,Labour +513019,Economic Development,Economic Development +510124,Economic Development,Economic Development +527374,Economic Development,Economic Development +527373,Economic Development,Economic Development +524331,Economic Development,Economic Development +523190,Economic Development,Economic Development +518637,Economic Development,Economic Development +518590,Economic Development,Economic Development +515065,Economic Development,Economic Development +510124,Infrastructure,Infrastructure +527374,Infrastructure,Infrastructure +527373,Infrastructure,Infrastructure +524331,Infrastructure,Infrastructure +523190,Infrastructure,Infrastructure +518637,Infrastructure,Infrastructure +518590,Infrastructure,Infrastructure +515065,Infrastructure,Infrastructure +513020,Infrastructure,Infrastructure +511118,Transportation,Transportation +511118,Defence,Defence +511156,Health,Health +511141,Health,Health +537174,Health,Health +534059,Health,Health +526104,Health,Health +517930,Health,Health +517899,Health,Health +534059,Research and Development,Research and Development +517930,Research and Development,Research and Development +517926,Employment and Training,Employment and Training +515424,Employment and Training,Employment and Training +539438,Employment and Training,Employment and Training +537191,Employment and Training,Employment and Training +537188,Employment and Training,Employment and Training +537184,Employment and Training,Employment and Training +537181,Employment and Training,Employment and Training +534066,Employment and Training,Employment and Training +526097,Employment and Training,Employment and Training +520351,Employment and Training,Employment and Training +530981,Taxation and Finance,Taxation and Finance +515422,Immigration,Immigration +515415,Immigration,Immigration +539438,Immigration,Immigration +537191,Immigration,Immigration +537184,Immigration,Immigration +537181,Immigration,Immigration +537179,Immigration,Immigration +526097,Immigration,Immigration +522771,Immigration,Immigration +520351,Immigration,Immigration +520350,Immigration,Immigration +517926,Immigration,Immigration +520351,Tourism,Tourism +517926,Tourism,Tourism +537191,Tourism,Tourism +537188,Tourism,Tourism +537184,Tourism,Tourism +537181,Tourism,Tourism +537179,Tourism,Tourism +534066,Tourism,Tourism +529950,Tourism,Tourism +526097,Tourism,Tourism +515422,Labour,Labour +515415,Labour,Labour +539438,Labour,Labour +537188,Labour,Labour +520351,Labour,Labour +520350,Labour,Labour +525363,Regional Development,Regional Development +525360,Regional Development,Regional Development +525357,Regional Development,Regional Development +525354,Regional Development,Regional Development +525161,Regional Development,Regional Development +523660,Regional Development,Regional Development +523642,Regional Development,Regional Development +523641,Regional Development,Regional Development +518818,Regional Development,Regional Development +511916,Industry,Industry +506892,Industry,Industry +531464,Economic Development,Economic Development +526858,Economic Development,Economic Development +520515,Economic Development,Economic Development +528602,Health,Health +526858,Health,Health +509367,International Trade,International Trade +528602,Research and Development,Research and Development +520515,Research and Development,Research and Development +510428,Climate,Climate +510424,Climate,Climate +534010,Climate,Climate +534007,Climate,Climate +534004,Climate,Climate +528098,Climate,Climate +528097,Climate,Climate +528096,Climate,Climate +528095,Climate,Climate +528090,Climate,Climate +525601,Climate,Climate +522190,Climate,Climate +522189,Climate,Climate +517363,Climate,Climate +517361,Climate,Climate +517357,Climate,Climate +517354,Climate,Climate +515411,Climate,Climate +515410,Climate,Climate +517354,Economic Development,Economic Development +510428,Environment,Environment +510424,Environment,Environment +534010,Environment,Environment +534007,Environment,Environment +534004,Environment,Environment +528098,Environment,Environment +522190,Environment,Environment +522189,Environment,Environment +517363,Environment,Environment +517361,Environment,Environment +517357,Environment,Environment +515411,Environment,Environment +515410,Environment,Environment +514137,Housing,Housing +514126,Housing,Housing +534010,Housing,Housing +534007,Housing,Housing +534004,Housing,Housing +534002,Housing,Housing +534000,Housing,Housing +525869,Housing,Housing +525601,Housing,Housing +525443,Housing,Housing +517363,Housing,Housing +517361,Housing,Housing +517358,Housing,Housing +515411,Housing,Housing +515410,Housing,Housing +510434,Infrastructure,Infrastructure +510424,Infrastructure,Infrastructure +534010,Infrastructure,Infrastructure +534007,Infrastructure,Infrastructure +534004,Infrastructure,Infrastructure +534002,Infrastructure,Infrastructure +534000,Infrastructure,Infrastructure +531646,Infrastructure,Infrastructure +528097,Infrastructure,Infrastructure +528096,Infrastructure,Infrastructure +528095,Infrastructure,Infrastructure +528090,Infrastructure,Infrastructure +525601,Infrastructure,Infrastructure +522190,Infrastructure,Infrastructure +522189,Infrastructure,Infrastructure +517363,Infrastructure,Infrastructure +517361,Infrastructure,Infrastructure +517358,Infrastructure,Infrastructure +517357,Infrastructure,Infrastructure +517354,Infrastructure,Infrastructure +515411,Infrastructure,Infrastructure +533996,Justice and Law Enforcement,Justice and Law Enforcement +533993,Justice and Law Enforcement,Justice and Law Enforcement +510428,Municipalities,Municipalities +510424,Municipalities,Municipalities +534010,Municipalities,Municipalities +534007,Municipalities,Municipalities +534004,Municipalities,Municipalities +534002,Municipalities,Municipalities +534000,Municipalities,Municipalities +533999,Municipalities,Municipalities +533996,Municipalities,Municipalities +533993,Municipalities,Municipalities +531647,Municipalities,Municipalities +531646,Municipalities,Municipalities +529969,Municipalities,Municipalities +528098,Municipalities,Municipalities +528097,Municipalities,Municipalities +528096,Municipalities,Municipalities +528095,Municipalities,Municipalities +528090,Municipalities,Municipalities +525869,Municipalities,Municipalities +525601,Municipalities,Municipalities +525507,Municipalities,Municipalities +525499,Municipalities,Municipalities +525443,Municipalities,Municipalities +522190,Municipalities,Municipalities +522189,Municipalities,Municipalities +517367,Municipalities,Municipalities +517363,Municipalities,Municipalities +517361,Municipalities,Municipalities +517358,Municipalities,Municipalities +517357,Municipalities,Municipalities +517354,Municipalities,Municipalities +515411,Municipalities,Municipalities +515410,Municipalities,Municipalities +514139,Municipalities,Municipalities +514137,Municipalities,Municipalities +514126,Municipalities,Municipalities +512547,Municipalities,Municipalities +517361,Transportation,Transportation +524173,Government Procurement,Government Procurement +521223,Government Procurement,Government Procurement +516266,Government Procurement,Government Procurement +537716,Government Procurement,Government Procurement +534822,Government Procurement,Government Procurement +531267,Government Procurement,Government Procurement +531261,Government Procurement,Government Procurement +528230,Government Procurement,Government Procurement +528227,Government Procurement,Government Procurement +528224,Government Procurement,Government Procurement +528220,Government Procurement,Government Procurement +524175,Government Procurement,Government Procurement +524173,Small Business,Small Business +521223,Small Business,Small Business +537716,Small Business,Small Business +534822,Small Business,Small Business +531267,Small Business,Small Business +531261,Small Business,Small Business +528230,Small Business,Small Business +528224,Small Business,Small Business +528220,Small Business,Small Business +524175,Small Business,Small Business +509871,Economic Development,Economic Development +509652,Economic Development,Economic Development +514703,Economic Development,Economic Development +513949,Economic Development,Economic Development +511696,Economic Development,Economic Development +512578,Employment and Training,Employment and Training +512045,Employment and Training,Employment and Training +509871,Government Procurement,Government Procurement +509652,Government Procurement,Government Procurement +509652,Industry,Industry +520494,Industry,Industry +517356,Industry,Industry +514703,Industry,Industry +513949,Industry,Industry +512581,Industry,Industry +512578,Industry,Industry +512045,Industry,Industry +511696,Industry,Industry +511695,Infrastructure,Infrastructure +519213,Infrastructure,Infrastructure +514703,Infrastructure,Infrastructure +512360,Infrastructure,Infrastructure +511695,International Trade,International Trade +509652,International Trade,International Trade +520494,International Trade,International Trade +512045,International Trade,International Trade +512045,Labour,Labour +509871,Labour,Labour +514703,Labour,Labour +512581,Labour,Labour +511695,Transportation,Transportation +509652,Transportation,Transportation +520494,Transportation,Transportation +519213,Transportation,Transportation +517356,Transportation,Transportation +512360,Transportation,Transportation +512045,Transportation,Transportation +530310,Energy,Energy +520670,Energy,Energy +520439,Energy,Energy +518806,Energy,Energy +516380,Energy,Energy +516115,Energy,Energy +515961,Energy,Energy +515225,Energy,Energy +515038,Energy,Energy +515038,Environment,Environment +509922,Environment,Environment +530310,Environment,Environment +520670,Environment,Environment +520439,Environment,Environment +518806,Environment,Environment +516380,Environment,Environment +516115,Environment,Environment +515961,Environment,Environment +510085,Mining,Mining +509922,Mining,Mining +530310,Mining,Mining +520670,Mining,Mining +520439,Mining,Mining +518806,Mining,Mining +516380,Mining,Mining +516115,Mining,Mining +515961,Mining,Mining +515225,Mining,Mining +515225,Research and Development,Research and Development +515038,Research and Development,Research and Development +515040,Environment,Environment +515027,Environment,Environment +520819,Environment,Environment +520363,Environment,Environment +512676,Economic Development,Economic Development +509516,Economic Development,Economic Development +542430,Economic Development,Economic Development +539737,Economic Development,Economic Development +538727,Economic Development,Economic Development +536874,Economic Development,Economic Development +536755,Economic Development,Economic Development +536390,Economic Development,Economic Development +536198,Economic Development,Economic Development +533046,Economic Development,Economic Development +532825,Economic Development,Economic Development +531772,Economic Development,Economic Development +530705,Economic Development,Economic Development +530012,Economic Development,Economic Development +524320,Economic Development,Economic Development +520516,Economic Development,Economic Development +520296,Economic Development,Economic Development +524320,International Trade,International Trade +520516,International Trade,International Trade +539737,International Trade,International Trade +536755,International Trade,International Trade +536390,International Trade,International Trade +536199,International Trade,International Trade +533046,International Trade,International Trade +512676,Tourism,Tourism +509516,Tourism,Tourism +539737,Tourism,Tourism +538727,Tourism,Tourism +536874,Tourism,Tourism +509516,Transportation,Transportation +542430,Transportation,Transportation +536199,Transportation,Transportation +536198,Transportation,Transportation +532825,Transportation,Transportation +531772,Transportation,Transportation +530705,Transportation,Transportation +522402,Agriculture,Agriculture +509780,Agriculture,Agriculture +509355,Agriculture,Agriculture +509276,Agriculture,Agriculture +509275,Agriculture,Agriculture +509063,Agriculture,Agriculture +509062,Agriculture,Agriculture +507583,Agriculture,Agriculture +507582,Agriculture,Agriculture +507865,Official Languages,Bilingualism/Official Languages +507855,Official Languages,Bilingualism/Official Languages +533553,Official Languages,Bilingualism/Official Languages +533551,Official Languages,Bilingualism/Official Languages +530595,Official Languages,Bilingualism/Official Languages +530594,Official Languages,Bilingualism/Official Languages +527261,Official Languages,Bilingualism/Official Languages +527260,Official Languages,Bilingualism/Official Languages +527259,Official Languages,Bilingualism/Official Languages +521659,Official Languages,Bilingualism/Official Languages +521489,Official Languages,Bilingualism/Official Languages +510734,Official Languages,Bilingualism/Official Languages +510726,Official Languages,Bilingualism/Official Languages +510705,Official Languages,Bilingualism/Official Languages +507865,Constitutional Issues,Constitutional Issues +507855,Constitutional Issues,Constitutional Issues +510734,Constitutional Issues,Constitutional Issues +510726,Constitutional Issues,Constitutional Issues +510705,Constitutional Issues,Constitutional Issues +539426,Privacy and Access to Information,Privacy and Access to Information +522479,Privacy and Access to Information,Privacy and Access to Information +543410,Privacy and Access to Information,Privacy and Access to Information +522479,Intellectual Property,Intellectual Property +543410,Intellectual Property,Intellectual Property +539427,Intellectual Property,Intellectual Property +539426,Intellectual Property,Intellectual Property +537637,Intellectual Property,Intellectual Property +537634,Intellectual Property,Intellectual Property +537630,Intellectual Property,Intellectual Property +531238,Intellectual Property,Intellectual Property +531237,Intellectual Property,Intellectual Property +531236,Intellectual Property,Intellectual Property +531234,Intellectual Property,Intellectual Property +523685,Infrastructure,Infrastructure +538326,Health,Health +509175,Health,Health +519488,Labour,Labour +508266,Fisheries,Fisheries +511692,Economic Development,Economic Development +510104,Economic Development,Economic Development +514716,Economic Development,Economic Development +511692,International Trade,International Trade +510104,International Trade,International Trade +512044,International Trade,International Trade +511692,Industry,Industry +510104,Industry,Industry +514716,Industry,Industry +512044,Industry,Industry +511693,Infrastructure,Infrastructure +511692,Infrastructure,Infrastructure +514716,Infrastructure,Infrastructure +511692,Transportation,Transportation +510104,Transportation,Transportation +512366,Transportation,Transportation +512044,Transportation,Transportation +512044,Labour,Labour +538348,Infrastructure,Infrastructure +541094,Transportation,Transportation +538348,Transportation,Transportation +509104,Taxation and Finance,Taxation and Finance +509102,Taxation and Finance,Taxation and Finance +529856,Taxation and Finance,Taxation and Finance +525853,Taxation and Finance,Taxation and Finance +525839,Taxation and Finance,Taxation and Finance +525829,Taxation and Finance,Taxation and Finance +525827,Taxation and Finance,Taxation and Finance +525806,Taxation and Finance,Taxation and Finance +519260,Taxation and Finance,Taxation and Finance +518596,Taxation and Finance,Taxation and Finance +515839,Taxation and Finance,Taxation and Finance +514407,Taxation and Finance,Taxation and Finance +513886,Taxation and Finance,Taxation and Finance +513094,Taxation and Finance,Taxation and Finance +513093,Taxation and Finance,Taxation and Finance +511027,Taxation and Finance,Taxation and Finance +511025,Taxation and Finance,Taxation and Finance +511020,Taxation and Finance,Taxation and Finance +511017,Taxation and Finance,Taxation and Finance +511016,Taxation and Finance,Taxation and Finance +511009,Taxation and Finance,Taxation and Finance +510997,Taxation and Finance,Taxation and Finance +513940,Economic Development,Economic Development +513222,Economic Development,Economic Development +537589,Economic Development,Economic Development +531455,Economic Development,Economic Development +528265,Economic Development,Economic Development +528263,Economic Development,Economic Development +514960,Government Procurement,Government Procurement +514367,Government Procurement,Government Procurement +514401,Regional Development,Regional Development +508631,Regional Development,Regional Development +543282,Regional Development,Regional Development +508653,Labour,Labour +525946,Economic Development,Economic Development +525929,Economic Development,Economic Development +533171,Economic Development,Economic Development +531904,Economic Development,Economic Development +527090,Economic Development,Economic Development +527089,Economic Development,Economic Development +527088,Economic Development,Economic Development +527087,Economic Development,Economic Development +525974,Economic Development,Economic Development +525973,Economic Development,Economic Development +525971,Economic Development,Economic Development +525967,Economic Development,Economic Development +525950,Economic Development,Economic Development +511645,Economic Development,Economic Development +511645,Tourism,Tourism +514375,Government Procurement,Government Procurement +513574,Government Procurement,Government Procurement +542466,Government Procurement,Government Procurement +533001,Government Procurement,Government Procurement +532316,Budget,Budget +529856,Budget,Budget +538349,Budget,Budget +535686,Budget,Budget +535684,Budget,Budget +535683,Budget,Budget +535682,Budget,Budget +532338,Budget,Budget +532337,Budget,Budget +532336,Budget,Budget +532335,Budget,Budget +532334,Budget,Budget +532333,Budget,Budget +532332,Budget,Budget +532331,Budget,Budget +532330,Budget,Budget +532329,Budget,Budget +532328,Budget,Budget +509104,Economic Development,Economic Development +509102,Economic Development,Economic Development +518596,Economic Development,Economic Development +517419,Economic Development,Economic Development +515839,Economic Development,Economic Development +513886,Economic Development,Economic Development +513094,Economic Development,Economic Development +514371,Government Procurement,Government Procurement +514371,Economic Development,Economic Development +508865,Media,Media +511237,Foreign Affairs,Foreign Affairs +508902,Foreign Affairs,Foreign Affairs +512694,Foreign Affairs,Foreign Affairs +512693,Foreign Affairs,Foreign Affairs +512692,Foreign Affairs,Foreign Affairs +511251,Foreign Affairs,Foreign Affairs +511093,Education,Education +509028,Education,Education +512101,Taxation and Finance,Taxation and Finance +511678,Taxation and Finance,Taxation and Finance +511677,Taxation and Finance,Taxation and Finance +532477,Immigration,Immigration +516137,Education,Education +516136,Education,Education +540542,Education,Education +537111,Education,Education +537110,Education,Education +537109,Education,Education +537108,Education,Education +537106,Education,Education +537105,Education,Education +534341,Education,Education +530899,Education,Education +530898,Education,Education +530894,Education,Education +516137,Employment and Training,Employment and Training +516136,Employment and Training,Employment and Training +537111,Employment and Training,Employment and Training +537110,Employment and Training,Employment and Training +537108,Employment and Training,Employment and Training +537106,Employment and Training,Employment and Training +537111,Immigration,Immigration +537110,Immigration,Immigration +537109,Immigration,Immigration +537108,Immigration,Immigration +537106,Immigration,Immigration +537105,Immigration,Immigration +530898,Immigration,Immigration +530894,Immigration,Immigration +516138,Immigration,Immigration +516137,Immigration,Immigration +516136,Immigration,Immigration +537108,International Relations,International Relations +537106,International Relations,International Relations +537111,International Relations,International Relations +537110,International Relations,International Relations +516137,International Trade,International Trade +516136,International Trade,International Trade +537109,International Trade,International Trade +537106,International Trade,International Trade +534341,International Trade,International Trade +526228,Infrastructure,Infrastructure +526210,Infrastructure,Infrastructure +517391,Infrastructure,Infrastructure +517362,Infrastructure,Infrastructure +513220,Infrastructure,Infrastructure +510574,Infrastructure,Infrastructure +537722,Infrastructure,Infrastructure +537720,Infrastructure,Infrastructure +531959,Infrastructure,Infrastructure +531958,Infrastructure,Infrastructure +531957,Infrastructure,Infrastructure +529286,Infrastructure,Infrastructure +537720,Municipalities,Municipalities +531959,Municipalities,Municipalities +531958,Municipalities,Municipalities +531957,Municipalities,Municipalities +531956,Municipalities,Municipalities +529286,Municipalities,Municipalities +529283,Municipalities,Municipalities +526228,Municipalities,Municipalities +526210,Municipalities,Municipalities +517391,Municipalities,Municipalities +517362,Municipalities,Municipalities +513220,Municipalities,Municipalities +517362,Regional Development,Regional Development +513220,Regional Development,Regional Development +537720,Regional Development,Regional Development +531959,Regional Development,Regional Development +531958,Regional Development,Regional Development +531957,Regional Development,Regional Development +531956,Regional Development,Regional Development +529286,Regional Development,Regional Development +529283,Regional Development,Regional Development +526210,Regional Development,Regional Development +517362,Tourism,Tourism +513220,Tourism,Tourism +513337,Government Procurement,Government Procurement +509353,Government Procurement,Government Procurement +513337,Health,Health +509353,Health,Health +524919,Economic Development,Economic Development +530393,Mining,Mining +516589,Official Languages,Bilingualism/Official Languages +512668,Official Languages,Bilingualism/Official Languages +544868,Official Languages,Bilingualism/Official Languages +544867,Official Languages,Bilingualism/Official Languages +544865,Official Languages,Bilingualism/Official Languages +540505,Official Languages,Bilingualism/Official Languages +526715,Official Languages,Bilingualism/Official Languages +520888,Official Languages,Bilingualism/Official Languages +519028,Official Languages,Bilingualism/Official Languages +518521,Official Languages,Bilingualism/Official Languages +518444,Official Languages,Bilingualism/Official Languages +518443,Official Languages,Bilingualism/Official Languages +518402,Official Languages,Bilingualism/Official Languages +518396,Official Languages,Bilingualism/Official Languages +513297,Environment,Environment +513297,Industry,Industry +509565,Economic Development,Développement économique +521174,Health,Health +521172,Health,Health +536899,Health,Health +530414,Health,Health +530413,Health,Health +527618,Health,Health +527597,Health,Health +524993,Health,Health +524992,Health,Health +524990,Health,Health +523580,Health,Health +521179,Health,Health +521178,Health,Health +521177,Health,Health +521176,Immigration,Immigration +509467,International Trade,International Trade +509258,International Trade,International Trade +511801,Health,Health +512057,Economic Development,Développement économique +512056,Economic Development,Développement économique +516045,Economic Development,Développement économique +516044,Economic Development,Développement économique +516043,Economic Development,Développement économique +516042,Economic Development,Développement économique +514880,Financial Institutions,Financial Institutions +512268,Financial Institutions,Financial Institutions +542128,Financial Institutions,Financial Institutions +536009,Financial Institutions,Financial Institutions +536008,Financial Institutions,Financial Institutions +514880,Taxation and Finance,Taxation and Finance +512268,Taxation and Finance,Taxation and Finance +542128,Taxation and Finance,Taxation and Finance +536009,Taxation and Finance,Taxation and Finance +536008,Taxation and Finance,Taxation and Finance +524636,Taxation and Finance,Taxation and Finance +515772,Economic Development,Economic Development +513342,Economic Development,Economic Development +509349,Economic Development,Economic Development +544840,Economic Development,Economic Development +539850,Economic Development,Economic Development +537863,Economic Development,Economic Development +537855,Economic Development,Economic Development +530954,Economic Development,Economic Development +524506,Economic Development,Economic Development +524500,Economic Development,Economic Development +524497,Economic Development,Economic Development +524490,Economic Development,Economic Development +511367,Infrastructure,Infrastructure +509349,Infrastructure,Infrastructure +539850,Infrastructure,Infrastructure +537863,Infrastructure,Infrastructure +537855,Infrastructure,Infrastructure +530954,Infrastructure,Infrastructure +524506,Infrastructure,Infrastructure +524500,Infrastructure,Infrastructure +524497,Infrastructure,Infrastructure +524490,Infrastructure,Infrastructure +524485,Infrastructure,Infrastructure +515772,Infrastructure,Infrastructure +513342,Infrastructure,Infrastructure +509350,Transportation,Transportation +509349,Transportation,Transportation +544843,Transportation,Transportation +544841,Transportation,Transportation +544840,Transportation,Transportation +539850,Transportation,Transportation +537863,Transportation,Transportation +537855,Transportation,Transportation +530954,Transportation,Transportation +524506,Transportation,Transportation +524500,Transportation,Transportation +524497,Transportation,Transportation +524485,Transportation,Transportation +515770,Transportation,Transportation +513342,Transportation,Transportation +513341,Transportation,Transportation +532366,Defence,Defence +544644,Immigration,Immigration +530654,Immigration,Immigration +522626,Budget,Budget +517509,Budget,Budget +529092,Budget,Budget +525956,Budget,Budget +509353,Immigration,Immigration +510666,Health,Health +520696,Constitutional Issues,Constitutional Issues +511803,Federal-Provincial Relations,Federal-Provincial Relations +510666,Federal-Provincial Relations,Federal-Provincial Relations +532921,Federal-Provincial Relations,Federal-Provincial Relations +526741,Federal-Provincial Relations,Federal-Provincial Relations +509723,Consumer Issues,Consumer Issues +509722,Consumer Issues,Consumer Issues +544219,Consumer Issues,Consumer Issues +544218,Consumer Issues,Consumer Issues +541979,Consumer Issues,Consumer Issues +541978,Consumer Issues,Consumer Issues +538107,Consumer Issues,Consumer Issues +529501,Consumer Issues,Consumer Issues +529500,Consumer Issues,Consumer Issues +529499,Consumer Issues,Consumer Issues +526168,Consumer Issues,Consumer Issues +525667,Consumer Issues,Consumer Issues +525662,Consumer Issues,Consumer Issues +525652,Consumer Issues,Consumer Issues +525649,Consumer Issues,Consumer Issues +523195,Consumer Issues,Consumer Issues +523185,Consumer Issues,Consumer Issues +523183,Consumer Issues,Consumer Issues +523181,Consumer Issues,Consumer Issues +523179,Consumer Issues,Consumer Issues +523173,Consumer Issues,Consumer Issues +523171,Consumer Issues,Consumer Issues +523169,Consumer Issues,Consumer Issues +518230,Consumer Issues,Consumer Issues +518215,Consumer Issues,Consumer Issues +515612,Consumer Issues,Consumer Issues +515611,Consumer Issues,Consumer Issues +515607,Consumer Issues,Consumer Issues +515606,Consumer Issues,Consumer Issues +515601,Consumer Issues,Consumer Issues +515597,Consumer Issues,Consumer Issues +514658,Consumer Issues,Consumer Issues +512359,Consumer Issues,Consumer Issues +512358,Consumer Issues,Consumer Issues +512357,Consumer Issues,Consumer Issues +512356,Consumer Issues,Consumer Issues +512355,Consumer Issues,Consumer Issues +512353,Consumer Issues,Consumer Issues +512352,Consumer Issues,Consumer Issues +535931,Economic Development,Economic Development +515597,Economic Development,Economic Development +541979,Economic Development,Economic Development +541978,Economic Development,Economic Development +509723,Health,Health +509722,Health,Health +544219,Health,Health +544218,Health,Health +541979,Health,Health +541978,Health,Health +538107,Health,Health +535931,Health,Health +529501,Health,Health +529500,Health,Health +529499,Health,Health +526168,Health,Health +525667,Health,Health +525662,Health,Health +525652,Health,Health +525649,Health,Health +523195,Health,Health +523185,Health,Health +523183,Health,Health +523181,Health,Health +523179,Health,Health +523173,Health,Health +523171,Health,Health +523169,Health,Health +518230,Health,Health +518215,Health,Health +515612,Health,Health +515611,Health,Health +514658,Health,Health +512359,Health,Health +512358,Health,Health +512357,Health,Health +512356,Health,Health +512355,Health,Health +512353,Health,Health +512352,Health,Health +518230,Industry,Industry +518215,Industry,Industry +544219,Industry,Industry +535931,Industry,Industry +544694,Energy,Energy +517343,Energy,Energy +544748,Budget,Budget +544694,Budget,Budget +544749,Transportation,Transportation +544705,Agriculture,Agriculture +544694,Agriculture,Agriculture +517343,Agriculture,Agriculture +544808,Agriculture,Agriculture +544763,Agriculture,Agriculture +544705,Climate,Climate +517343,Climate,Climate +544808,Climate,Climate +515002,Industry,Industry +506892,Natural Resources,Natural Resources +532766,Economic Development,Economic Development +531464,Health,Health +511922,International Relations,International Relations +511922,International Trade,International Trade +520515,Regional Development,Regional Development +531464,Research and Development,Research and Development +509194,Government Procurement,Government Procurement +509194,Intellectual Property,Intellectual Property +509194,Health,Health +526363,Agriculture,Agriculture +507070,Natural Resources,Natural Resources +507178,Immigration,Immigration +525601,Budget,Budget +510434,Climate,Climate +517357,Economic Development,Economic Development +510434,Environment,Environment +529969,Health,Health +514139,Housing,Housing +515410,Infrastructure,Infrastructure +533999,Justice and Law Enforcement,Justice and Law Enforcement +510434,Municipalities,Municipalities +517363,Transportation,Transportation +524174,Government Procurement,Government Procurement +524174,Small Business,Small Business +511695,Economic Development,Economic Development +512581,Employment and Training,Employment and Training +520494,Government Procurement,Government Procurement +511695,Industry,Industry +511696,Infrastructure,Infrastructure +511696,International Trade,International Trade +512578,Labour,Labour +511696,Transportation,Transportation +509922,Energy,Energy +515225,Environment,Environment +515038,Mining,Mining +530310,Research and Development,Research and Development +507404,International Trade,International Trade +507415,Taxation and Finance,Taxation and Finance +512732,Economic Development,Economic Development +512732,Regional Development,Regional Development +516571,Environment,Environment +512679,Economic Development,Economic Development +530012,International Trade,International Trade +532825,Tourism,Tourism +520296,Transportation,Transportation +507581,Agriculture,Agriculture +510608,Official Languages,Bilingualism/Official Languages +510608,Constitutional Issues,Constitutional Issues +511788,Industry,Industry +511788,Infrastructure,Infrastructure +511788,International Trade,International Trade +511788,Transportation,Transportation +539427,Privacy and Access to Information,Privacy and Access to Information +528822,Intellectual Property,Intellectual Property +528892,Industry,Industry +528892,Infrastructure,Infrastructure +508143,Animal Welfare,Animal Welfare +539910,Health,Health +538326,Labour,Labour +527265,Animal Welfare,Animal Welfare +510802,Fisheries,Fisheries +508363,Small Business,Small Business +508458,Taxation and Finance,Taxation and Finance +511693,Economic Development,Economic Development +512044,Employment and Training,Employment and Training +511693,International Trade,International Trade +511693,Industry,Industry +510104,Government Procurement,Government Procurement +512366,Infrastructure,Infrastructure +511693,Transportation,Transportation +514716,Labour,Labour +535052,Economic Development,Economic Development +541094,Infrastructure,Infrastructure +535052,Transportation,Transportation +509106,Taxation and Finance,Taxation and Finance +508572,Natural Resources,Natural Resources +508575,Natural Resources,Natural Resources +508576,Natural Resources,Natural Resources +508580,Natural Resources,Natural Resources +508592,Natural Resources,Natural Resources +508594,Natural Resources,Natural Resources +508604,Natural Resources,Natural Resources +508606,Natural Resources,Natural Resources +519544,Economic Development,Economic Development +538951,Government Procurement,Government Procurement +543281,Regional Development,Regional Development +515731,Labour,Labour +525948,Economic Development,Economic Development +508659,Economic Development,Economic Development +512059,Economic Development,Economic Development +512059,Tourism,Tourism +512059,Transportation,Transportation +530373,Government Procurement,Government Procurement +514375,Research and Development,Research and Development +532327,Budget,Budget +509106,Economic Development,Economic Development +514956,Government Procurement,Government Procurement +514956,Economic Development,Economic Development +508871,Media,Media +508880,Animal Welfare,Animal Welfare +511250,Foreign Affairs,Foreign Affairs +513456,Education,Education +523983,Tourism,Tourism +509049,Privacy and Access to Information,Privacy and Access to Information +514494,Environment,Environment +509074,Housing,Housing +522738,Taxation and Finance,Taxation and Finance +516122,Immigration,Immigration +514157,Economic Development,Economic Development +514157,Tourism,Tourism +514157,Transportation,Transportation +510730,Housing,Housing +511904,Economic Development,Economic Development +511904,Tourism,Tourism +516138,Education,Education +516138,Employment and Training,Employment and Training +540542,Immigration,Immigration +537109,International Relations,International Relations +516138,International Trade,International Trade +537722,Economic Development,Economic Development +529283,Infrastructure,Infrastructure +537722,Municipalities,Municipalities +517391,Regional Development,Regional Development +517391,Tourism,Tourism +509123,Regional Development,Regional Development +514695,Government Procurement,Government Procurement +514695,Health,Health +513605,Government Procurement,Government Procurement +514965,Economic Development,Economic Development +539089,Economic Development,Economic Development +539089,Mining,Mining +516590,Official Languages,Bilingualism/Official Languages +511350,Industry,Industry +513299,Environment,Environment +513299,Mining,Mining +513299,Industry,Industry +513297,Natural Resources,Natural Resources +511685,Economic Development,Développement économique +521176,Health,Health +524992,Immigration,Immigration +523580,Infrastructure,Infrastructure +514704,Government Procurement,Government Procurement +509227,Municipalities,Municipalities +522259,International Trade,International Trade +531045,Consumer Issues,Consumer Issues +509283,Health,Health +511826,Health,Health +512302,Economic Development,Développement économique +516807,Industry,Industrie +516807,Transportation,Transports +524636,Financial Institutions,Financial Institutions +516582,Taxation and Finance,Taxation and Finance +509489,Official Languages,Bilingualism/Official Languages +524485,Economic Development,Economic Development +513341,Infrastructure,Infrastructure +511367,Transportation,Transportation +514160,Natural Resources,Natural Resources +514160,Energy,Energy +509370,Small Business,Small Business +536480,Defence,Defence +536480,Government Procurement,Government Procurement +509390,Government Procurement,Government Procurement +516668,Immigration,Immigration +522628,Budget,Budget +514695,Immigration,Immigration +513337,Immigration,Immigration +511803,Health,Health +521749,Constitutional Issues,Constitutional Issues +521749,Federal-Provincial Relations,Federal-Provincial Relations +512350,Consumer Issues,Consumer Issues +538107,Economic Development,Economic Development +512350,Health,Health +526171,Industry,Industry +511277,Employment and Training,Employment and Training +511277,Immigration,Immigration +544748,Energy,Energy +544809,Budget,Budget +544763,Transportation,Transportation +544809,Infrastructure,Infrastructure +544748,Agriculture,Agriculture +544748,Climate,Climate +540663,Immigration,Immigration +540663,Employment and Training,Employment and Training +540663,Tourism,Tourism +540663,Labour,Labour +514716,Natural Resources,Natural Resources +521644,Government Procurement,Government Procurement +520494,Health,Health +517356,Natural Resources,Natural Resources +524513,Environment,Environment +520547,International Trade,International Trade +517854,Energy,Energy +514702,Government Procurement,Government Procurement +520125,Infrastructure,Infrastructure +513046,Municipalities,Municipalities +512861,Infrastructure,Infrastructure +512865,International Relations,International Relations +509531,Housing,Housing +531759,Health,Health +514818,Research and Development,Research and Development +513831,Environment,Environment +515599,Fisheries,Fisheries +515599,Regional Development,Regional Development +512363,Transportation,Transportation +529503,Consumer Issues,Consumer Issues +514655,Economic Development,Economic Development +515603,Industry,Industry +531988,International Trade,International Trade +515603,Regional Development,Regional Development +514655,Research and Development,Research and Development +514659,Small Business,Small Business +509551,Environment,Environment +511818,Animal Welfare,Animal Welfare +540629,Government Procurement,Government Procurement +512810,Health,Health +512442,Economic Development,Economic Development +512442,Defence,Defence +512442,Labour,Labour +512442,Employment and Training,Employment and Training +512974,Agriculture,Agriculture +510338,Environment,Environment +509648,Research and Development,Research and Development +527013,Defence,Defence +516130,Industry,Industry +516133,Infrastructure,Infrastructure +516129,Economic Development,Economic Development +522456,Infrastructure,Infrastructure +522456,Sports,Sports +510010,Agriculture,Agriculture +521163,Health,Health +521163,Regional Development,Regional Development +521163,Industry,Industry +521163,Small Business,Small Business +509975,Research and Development,Recherche et développement +512365,Economic Development,Economic Development +512365,Immigration,Immigration +509794,Agriculture,Agriculture +511837,Budget,Budget +524654,Climate,Climate +511837,Energy,Energy +511837,Forestry,Forestry +542733,Health,Health +523809,Industry,Industry +511837,Natural Resources,Natural Resources +511837,Transportation,Transportation +513466,Elections,Elections +511575,Economic Development,Economic Development +511577,Federal-Provincial Relations,Federal-Provincial Relations +511578,International Trade,International Trade +509930,Municipalities,Municipalities +511578,Regional Development,Regional Development +511577,Tourism,Tourism +520816,Consumer Issues,Consumer Issues +520816,Economic Development,Economic Development +520816,Financial Institutions,Financial Institutions +520816,Small Business,Small Business +520816,Taxation and Finance,Taxation and Finance +509757,Health,Health +509757,Tourism,Tourism +509779,Labour,Labour +540039,Economic Development,Economic Development +540039,Labour,Labour +539209,Mining,Mining +527235,Economic Development,Economic Development +531095,Employment and Training,Employment and Training +542359,Environment,Environment +542359,Mining,Mining +542359,Regional Development,Regional Development +536910,Natural Resources,Natural Resources +511862,Budget,Budget +511862,Economic Development,Economic Development +511862,Employment and Training,Employment and Training +511862,Housing,Housing +511862,Immigration,Immigration +511862,Industry,Industry +511862,Infrastructure,Infrastructure +511862,Regional Development,Regional Development +511862,Research and Development,Research and Development +511862,Small Business,Small Business +511862,Taxation and Finance,Taxation and Finance +526378,Consumer Issues,Consumer Issues +544101,Labour,Labour +510070,Taxation and Finance,Taxation and Finance +512379,Natural Resources,Natural Resources +510076,Taxation and Finance,Taxation and Finance +527934,Transportation,Transportation +522085,Transportation,Transportation +522082,Transportation,Transportation +531983,Government Procurement,Government Procurement +522084,Transportation,Transportation +527923,Transportation,Transportation +526393,Government Procurement,Government Procurement +531980,Government Procurement,Government Procurement +531981,Government Procurement,Government Procurement +513358,Budget,Budget +515059,Economic Development,Economic Development +512402,Government Procurement,Government Procurement +524866,International Trade,International Trade +537683,Small Business,Small Business +535933,Consumer Issues,Consumer Issues +515595,Employment and Training,Employment and Training +529505,Environment,Environment +515604,Financial Institutions,Financial Institutions +520092,Government Procurement,Government Procurement +535933,Industry,Industry +514656,Labour,Labour +510173,Climate,Climate +524318,Climate,Climate +510264,Small Business,Small Business +540047,Economic Development,Economic Development +538008,Energy,Energy +544311,Infrastructure,Infrastructure +544957,Energy,Energy +514532,Mining,Mining +513938,Environment,Environment +514532,International Trade,International Trade +530662,Economic Development,Economic Development +530662,Government Procurement,Government Procurement +530662,Energy,Energy +542483,Employment and Training,Employment and Training +542483,Government Procurement,Government Procurement +516291,Industry,Industry +516291,Research and Development,Research and Development +514154,Elections,Elections +510599,Elections,Elections +510706,Elections,Elections +510772,Natural Resources,Natural Resources +519138,Natural Resources,Natural Resources +511953,Natural Resources,Natural Resources +511953,Energy,Energy +510772,Economic Development,Economic Development +510782,Natural Resources,Natural Resources +512614,Natural Resources,Natural Resources +529948,Health,Health +510980,Climate,Climate +511101,Economic Development,Développement économique +511101,Regional Development,Développement régional +511101,Tourism,Tourisme +513391,Agriculture,Agriculture +537176,Economic Development,Economic Development +515412,Government Procurement,Government Procurement +511183,Health,Health +518834,International Relations,International Relations +512706,Animal Welfare,Animal Welfare +524728,Climate,Climate +525681,Defence,Defence +523349,Environment,Environment +523349,Government Procurement,Government Procurement +523985,Security,National Security/Security +511315,Climate,Climate +523302,Taxation and Finance,Taxation and Finance +535673,Climate,Climate +512786,Economic Development,Economic Development +535673,Natural Resources,Natural Resources +532247,Environment,Environment +513537,Federal-Provincial Relations,Federal-Provincial Relations +532247,Taxation and Finance,Taxation and Finance +512686,Defence,Defence +534598,Budget,Budget +513844,Consumer Issues,Consumer Issues +513844,Health,Health +511672,Mining,Mining +511625,Environment,Environment +512182,Fisheries,Fisheries +513401,Small Business,Small Business +513401,Taxation and Finance,Taxation and Finance +511661,Budget,Budget +516100,Research and Development,Research and Development +511655,Research and Development,Research and Development +520891,Employment and Training,Employment and Training +521164,Employment and Training,Employment and Training +521164,Industry,Industry +521164,Small Business,Small Business +531131,Budget,Budget +511851,Infrastructure,Infrastructure +522014,Agriculture,Agriculture +522014,Consumer Issues,Consumer Issues +522014,Environment,Environment +522014,Health,Health +522014,International Trade,International Trade +522000,Agriculture,Agriculture +522007,Consumer Issues,Consumer Issues +522004,Environment,Environment +524704,Health,Health +542374,International Trade,International Trade +511928,International Trade,International Trade +511928,Economic Development,Economic Development +511928,Climate,Climate +511699,Industry,Industry +511699,Regional Development,Regional Development +529158,Health,Health +544152,Health,Health +511921,Economic Development,Economic Development +511921,Industry,Industry +511921,Mining,Mining +511920,Transportation,Transportation +512191,Housing,Housing +512191,Infrastructure,Infrastructure +511719,International Trade,International Trade +513697,Taxation and Finance,Taxation and Finance +511928,Government Procurement,Government Procurement +511929,Government Procurement,Government Procurement +544886,Agriculture,Agriculture +543542,Climate,Climate +544886,Industry,Industry +532532,Natural Resources,Natural Resources +527080,Research and Development,Research and Development +518351,Agriculture,Agriculture +518351,International Trade,International Trade +512368,Agriculture,Agriculture +520142,Budget,Budget +540849,Energy,Energy +540849,Transportation,Transportation +540849,Climate,Climate +540849,Environment,Environment +544143,Economic Development,Economic Development +544143,Infrastructure,Infrastructure +544143,Research and Development,Research and Development +517679,Official Languages,Bilingualism/Official Languages +517679,Federal-Provincial Relations,Federal-Provincial Relations +517679,Infrastructure,Infrastructure +528640,Regional Development,Regional Development +528640,Research and Development,Research and Development +511855,Infrastructure,Infrastructure +511855,Transportation,Transportation +514179,International Development,International Development +514179,International Relations,International Relations +514964,Government Procurement,Government Procurement +511978,Industry,Industry +535060,Climate,Climate +535059,Economic Development,Economic Development +535060,Natural Resources,Natural Resources +512940,International Development,International Development +514256,International Development,International Development +529852,Budget,Budget +529850,Consumer Issues,Consumer Issues +529850,Financial Institutions,Financial Institutions +529850,Housing,Housing +513582,Government Procurement,Government Procurement +513593,Industry,Industry +524438,Government Procurement,Government Procurement +524438,Health,Health +512587,Employment and Training,Employment and Training +527342,Housing,Housing +527342,Consumer Issues,Consumer Issues +512204,Industry,Industry +520417,Environment,Environment +512366,Natural Resources,Natural Resources +514703,Natural Resources,Natural Resources +512360,Natural Resources,Natural Resources +520494,Natural Resources,Natural Resources +520547,Environment,Environment +536056,Environment,Environment +520124,Infrastructure,Infrastructure +513197,Infrastructure,Infrastructure +514818,Health,Health +513394,Research and Development,Research and Development +512363,Environment,Environment +513830,Fisheries,Fisheries +513831,Regional Development,Regional Development +512362,Transportation,Transportation +512361,Transportation,Transportation +515605,Transportation,Transportation +515593,Transportation,Transportation +513831,Transportation,Transportation +513830,Transportation,Transportation +513845,Economic Development,Economic Development +512364,Economic Development,Economic Development +538109,Economic Development,Economic Development +531991,Economic Development,Economic Development +531988,Economic Development,Economic Development +531987,Economic Development,Economic Development +531986,Economic Development,Economic Development +531984,Economic Development,Economic Development +529503,Economic Development,Economic Development +529502,Economic Development,Economic Development +523152,Economic Development,Economic Development +520095,Economic Development,Economic Development +515603,Economic Development,Economic Development +515598,Economic Development,Economic Development +514659,Economic Development,Economic Development +515598,Industry,Industry +514659,Industry,Industry +538109,Industry,Industry +531991,Industry,Industry +531988,Industry,Industry +531987,Industry,Industry +531986,Industry,Industry +531984,Industry,Industry +529503,Industry,Industry +529502,Industry,Industry +518210,Industry,Industry +515602,Regional Development,Regional Development +513845,Research and Development,Research and Development +512364,Research and Development,Research and Development +529502,Research and Development,Research and Development +523152,Research and Development,Research and Development +520095,Research and Development,Research and Development +515602,Research and Development,Research and Development +514655,Small Business,Small Business +510208,Animal Welfare,Animal Welfare +509580,Animal Welfare,Animal Welfare +543177,Animal Welfare,Animal Welfare +542352,Animal Welfare,Animal Welfare +542350,Animal Welfare,Animal Welfare +540441,Animal Welfare,Animal Welfare +538816,Animal Welfare,Animal Welfare +538662,Animal Welfare,Animal Welfare +536576,Animal Welfare,Animal Welfare +533303,Animal Welfare,Animal Welfare +532863,Animal Welfare,Animal Welfare +532598,Animal Welfare,Animal Welfare +524999,Animal Welfare,Animal Welfare +524988,Animal Welfare,Animal Welfare +523760,Animal Welfare,Animal Welfare +523697,Animal Welfare,Animal Welfare +523696,Animal Welfare,Animal Welfare +519136,Animal Welfare,Animal Welfare +516648,Animal Welfare,Animal Welfare +516066,Animal Welfare,Animal Welfare +514904,Animal Welfare,Animal Welfare +514402,Animal Welfare,Animal Welfare +513852,Animal Welfare,Animal Welfare +513850,Animal Welfare,Animal Welfare +514363,Government Procurement,Government Procurement +511982,Government Procurement,Government Procurement +540649,Government Procurement,Government Procurement +540648,Government Procurement,Government Procurement +540636,Government Procurement,Government Procurement +510162,Environment,Environment +510152,Environment,Environment +543677,Environment,Environment +541878,Environment,Environment +540121,Environment,Environment +539981,Environment,Environment +539974,Environment,Environment +539971,Environment,Environment +539967,Environment,Environment +539966,Environment,Environment +539964,Environment,Environment +539960,Environment,Environment +539956,Environment,Environment +539954,Environment,Environment +538080,Environment,Environment +538079,Environment,Environment +538077,Environment,Environment +538074,Environment,Environment +538059,Environment,Environment +538057,Environment,Environment +538055,Environment,Environment +538046,Environment,Environment +538042,Environment,Environment +535040,Environment,Environment +535039,Environment,Environment +531248,Environment,Environment +531247,Environment,Environment +531244,Environment,Environment +531242,Environment,Environment +531241,Environment,Environment +529095,Environment,Environment +529093,Environment,Environment +529090,Environment,Environment +529087,Environment,Environment +529085,Environment,Environment +529082,Environment,Environment +529081,Environment,Environment +529080,Environment,Environment +529079,Environment,Environment +526140,Environment,Environment +526137,Environment,Environment +526135,Environment,Environment +522758,Environment,Environment +522753,Environment,Environment +522745,Environment,Environment +519681,Environment,Environment +519679,Environment,Environment +518043,Environment,Environment +514215,Environment,Environment +514213,Environment,Environment +514210,Environment,Environment +514209,Environment,Environment +514206,Environment,Environment +512993,Environment,Environment +512991,Environment,Environment +512987,Environment,Environment +512983,Environment,Environment +512982,Environment,Environment +512978,Environment,Environment +512976,Environment,Environment +512969,Environment,Environment +512963,Environment,Environment +510364,Environment,Environment +510351,Environment,Environment +510350,Environment,Environment +510349,Environment,Environment +510345,Environment,Environment +510340,Environment,Environment +527012,Defence,Defence +526099,Defence,Defence +522449,Defence,Defence +516131,Infrastructure,Infrastructure +516130,Infrastructure,Infrastructure +528948,Infrastructure,Infrastructure +527013,Infrastructure,Infrastructure +527012,Infrastructure,Infrastructure +526128,Infrastructure,Infrastructure +526123,Infrastructure,Infrastructure +526095,Infrastructure,Infrastructure +526089,Infrastructure,Infrastructure +526084,Infrastructure,Infrastructure +522459,Infrastructure,Infrastructure +522454,Infrastructure,Infrastructure +522452,Infrastructure,Infrastructure +522451,Infrastructure,Infrastructure +522449,Infrastructure,Infrastructure +522417,Infrastructure,Infrastructure +516134,Infrastructure,Infrastructure +516129,Infrastructure,Infrastructure +511842,Economic Development,Economic Development +511841,Economic Development,Economic Development +523261,Economic Development,Economic Development +520522,Economic Development,Economic Development +520521,Economic Development,Economic Development +520520,Economic Development,Economic Development +511842,Immigration,Immigration +511841,Immigration,Immigration +523261,Immigration,Immigration +520522,Immigration,Immigration +520521,Immigration,Immigration +520520,Immigration,Immigration +526812,Agriculture,Agriculture +511837,Agriculture,Agriculture +509794,Budget,Budget +511837,Climate,Climate +509794,Climate,Climate +527016,Climate,Climate +509794,Energy,Energy +509794,Forestry,Forestry +527016,Health,Health +526812,Health,Health +523809,Health,Health +511837,Health,Health +509794,Health,Health +511837,Industry,Industry +509794,Industry,Industry +509794,Natural Resources,Natural Resources +509794,Transportation,Transportation +509735,Elections,Elections +509930,Economic Development,Economic Development +511578,Economic Development,Economic Development +511577,Economic Development,Economic Development +511577,International Trade,International Trade +511575,International Trade,International Trade +511575,Regional Development,Regional Development +509930,Regional Development,Regional Development +509930,Tourism,Tourism +519888,Consumer Issues,Consumer Issues +519888,Economic Development,Economic Development +519888,Financial Institutions,Financial Institutions +519888,Small Business,Small Business +519888,Taxation and Finance,Taxation and Finance +520622,Economic Development,Economic Development +520244,Economic Development,Economic Development +538164,Economic Development,Economic Development +527239,Economic Development,Economic Development +527235,Employment and Training,Employment and Training +542358,Environment,Environment +542357,Environment,Environment +542358,Mining,Mining +542357,Mining,Mining +538164,Mining,Mining +520622,Mining,Mining +511676,Mining,Mining +542358,Regional Development,Regional Development +542357,Regional Development,Regional Development +511770,Natural Resources,Natural Resources +511845,Budget,Budget +511845,Economic Development,Economic Development +511845,Employment and Training,Employment and Training +511845,Housing,Housing +511845,Immigration,Immigration +511845,Industry,Industry +511845,Infrastructure,Infrastructure +511845,Regional Development,Regional Development +511845,Research and Development,Research and Development +511845,Small Business,Small Business +511845,Taxation and Finance,Taxation and Finance +509935,Consumer Issues,Consumer Issues +534171,Labour,Labour +509935,Labour,Labour +512377,Natural Resources,Natural Resources +509948,Natural Resources,Natural Resources +528313,Natural Resources,Natural Resources +528128,Natural Resources,Natural Resources +528127,Natural Resources,Natural Resources +522052,Natural Resources,Natural Resources +516990,Natural Resources,Natural Resources +516957,Natural Resources,Natural Resources +512383,Natural Resources,Natural Resources +512382,Natural Resources,Natural Resources +527930,Transportation,Transportation +510049,Transportation,Transportation +527935,Transportation,Transportation +522081,Transportation,Transportation +510050,Transportation,Transportation +527925,Transportation,Transportation +527924,Transportation,Transportation +510051,Transportation,Transportation +527929,Transportation,Transportation +514789,Government Procurement,Government Procurement +514783,Government Procurement,Government Procurement +512989,Transportation,Transportation +510058,Transportation,Transportation +527927,Transportation,Transportation +517008,Transportation,Transportation +510061,Transportation,Transportation +541424,Transportation,Transportation +527932,Transportation,Transportation +527931,Transportation,Transportation +527928,Transportation,Transportation +527926,Transportation,Transportation +514786,Government Procurement,Government Procurement +514102,Government Procurement,Government Procurement +531982,Government Procurement,Government Procurement +514788,Government Procurement,Government Procurement +512396,Budget,Budget +512395,Budget,Budget +515058,Economic Development,Economic Development +513360,Economic Development,Economic Development +512400,Government Procurement,Government Procurement +534006,Government Procurement,Government Procurement +513362,Government Procurement,Government Procurement +517286,International Trade,International Trade +534003,Small Business,Small Business +519201,Small Business,Small Business +515594,Employment and Training,Employment and Training +514656,Employment and Training,Employment and Training +515604,Employment and Training,Employment and Training +515595,Financial Institutions,Financial Institutions +515594,Financial Institutions,Financial Institutions +529505,Financial Institutions,Financial Institutions +523158,Financial Institutions,Financial Institutions +518218,Government Procurement,Government Procurement +518212,Government Procurement,Government Procurement +535777,Energy,Energy +535772,Energy,Energy +544311,Energy,Energy +538010,Energy,Energy +535777,Infrastructure,Infrastructure +535772,Infrastructure,Infrastructure +513938,Mining,Mining +513223,Mining,Mining +544957,Mining,Mining +513223,Environment,Environment +527083,Economic Development,Economic Development +527083,Energy,Energy +516291,Employment and Training,Employment and Training +514955,Employment and Training,Employment and Training +516291,Government Procurement,Government Procurement +514373,Government Procurement,Government Procurement +514955,Industry,Industry +514373,Industry,Industry +542471,Industry,Industry +514955,Research and Development,Research and Development +510597,Elections,Elections +519137,Natural Resources,Natural Resources +517158,Natural Resources,Natural Resources +515556,Natural Resources,Natural Resources +515555,Natural Resources,Natural Resources +513751,Natural Resources,Natural Resources +512611,Natural Resources,Natural Resources +512609,Natural Resources,Natural Resources +512608,Natural Resources,Natural Resources +512607,Natural Resources,Natural Resources +512605,Natural Resources,Natural Resources +512603,Natural Resources,Natural Resources +510778,Natural Resources,Natural Resources +536870,Natural Resources,Natural Resources +536869,Natural Resources,Natural Resources +536868,Natural Resources,Natural Resources +536867,Natural Resources,Natural Resources +536866,Natural Resources,Natural Resources +536865,Natural Resources,Natural Resources +536851,Natural Resources,Natural Resources +536850,Natural Resources,Natural Resources +536849,Natural Resources,Natural Resources +536848,Natural Resources,Natural Resources +531307,Natural Resources,Natural Resources +531304,Natural Resources,Natural Resources +528743,Natural Resources,Natural Resources +525577,Natural Resources,Natural Resources +525555,Natural Resources,Natural Resources +519140,Natural Resources,Natural Resources +519139,Natural Resources,Natural Resources +511835,Natural Resources,Natural Resources +511555,Natural Resources,Natural Resources +511835,Energy,Energy +511555,Energy,Energy +512613,Natural Resources,Natural Resources +510783,Natural Resources,Natural Resources +519325,Natural Resources,Natural Resources +519323,Natural Resources,Natural Resources +519321,Natural Resources,Natural Resources +519318,Natural Resources,Natural Resources +517497,Natural Resources,Natural Resources +517490,Natural Resources,Natural Resources +517488,Natural Resources,Natural Resources +517483,Natural Resources,Natural Resources +517478,Natural Resources,Natural Resources +517476,Natural Resources,Natural Resources +516547,Natural Resources,Natural Resources +513747,Natural Resources,Natural Resources +512620,Natural Resources,Natural Resources +512619,Natural Resources,Natural Resources +512617,Natural Resources,Natural Resources +512616,Natural Resources,Natural Resources +520340,Health,Health +511096,Economic Development,Développement économique +511089,Economic Development,Développement économique +513486,Economic Development,Développement économique +513485,Economic Development,Développement économique +511096,Regional Development,Développement régional +511089,Regional Development,Développement régional +513486,Regional Development,Développement régional +513485,Regional Development,Développement régional +511096,Tourism,Tourisme +511089,Tourism,Tourisme +514706,Government Procurement,Government Procurement +511134,Government Procurement,Government Procurement +539440,Government Procurement,Government Procurement +530982,Government Procurement,Government Procurement +526094,Government Procurement,Government Procurement +520352,Government Procurement,Government Procurement +517913,Government Procurement,Government Procurement +515419,Government Procurement,Government Procurement +511270,International Relations,International Relations +511276,Animal Welfare,Animal Welfare +523349,Climate,Climate +523346,Climate,Climate +523985,Defence,Defence +523357,Defence,Defence +523348,Environment,Environment +523346,Environment,Environment +524728,Environment,Environment +523348,Government Procurement,Government Procurement +523346,Government Procurement,Government Procurement +527730,Government Procurement,Government Procurement +525681,Government Procurement,Government Procurement +524728,Government Procurement,Government Procurement +523985,Government Procurement,Government Procurement +523357,Government Procurement,Government Procurement +523357,Security,National Security/Security +520610,Security,National Security/Security +525681,Security,National Security/Security +512932,Taxation and Finance,Taxation and Finance +511355,Taxation and Finance,Taxation and Finance +535643,Taxation and Finance,Taxation and Finance +535641,Taxation and Finance,Taxation and Finance +535639,Taxation and Finance,Taxation and Finance +535633,Taxation and Finance,Taxation and Finance +532149,Taxation and Finance,Taxation and Finance +532148,Taxation and Finance,Taxation and Finance +535660,Climate,Climate +512784,Economic Development,Economic Development +512780,Economic Development,Economic Development +540229,Economic Development,Economic Development +535673,Economic Development,Economic Development +535660,Economic Development,Economic Development +528392,Economic Development,Economic Development +535660,Natural Resources,Natural Resources +513537,Environment,Environment +534567,Budget,Budget +534560,Budget,Budget +525156,Budget,Budget +513843,Consumer Issues,Consumer Issues +513843,Health,Health +511780,Fisheries,Fisheries +511779,Fisheries,Fisheries +513529,Fisheries,Fisheries +514318,Research and Development,Research and Development +520613,Employment and Training,Employment and Training +511668,Employment and Training,Employment and Training +521185,Employment and Training,Employment and Training +512314,Agriculture,Agriculture +512309,Agriculture,Agriculture +542374,Agriculture,Agriculture +529979,Agriculture,Agriculture +524704,Agriculture,Agriculture +522012,Agriculture,Agriculture +522010,Agriculture,Agriculture +522009,Agriculture,Agriculture +522008,Agriculture,Agriculture +522007,Agriculture,Agriculture +522006,Agriculture,Agriculture +522005,Agriculture,Agriculture +522004,Agriculture,Agriculture +522003,Agriculture,Agriculture +522006,Consumer Issues,Consumer Issues +522005,Consumer Issues,Consumer Issues +522012,Consumer Issues,Consumer Issues +522010,Consumer Issues,Consumer Issues +522008,Consumer Issues,Consumer Issues +522003,Environment,Environment +522000,Environment,Environment +524704,Environment,Environment +522012,Environment,Environment +522010,Environment,Environment +522008,Environment,Environment +522007,Environment,Environment +522006,Environment,Environment +522005,Environment,Environment +522012,Health,Health +522010,Health,Health +522009,Health,Health +522007,Health,Health +522005,Health,Health +522004,Health,Health +522003,Health,Health +522000,Health,Health +529979,Health,Health +529979,International Trade,International Trade +524704,International Trade,International Trade +522012,International Trade,International Trade +522010,International Trade,International Trade +522009,International Trade,International Trade +522008,International Trade,International Trade +522007,International Trade,International Trade +522006,International Trade,International Trade +522005,International Trade,International Trade +522004,International Trade,International Trade +522003,International Trade,International Trade +522000,International Trade,International Trade +511699,International Trade,International Trade +511699,Economic Development,Economic Development +511699,Climate,Climate +544143,Health,Health +511920,Economic Development,Economic Development +512190,Housing,Housing +512189,Housing,Housing +512190,Infrastructure,Infrastructure +512189,Infrastructure,Infrastructure +513692,Taxation and Finance,Taxation and Finance +512154,Taxation and Finance,Taxation and Finance +540437,Taxation and Finance,Taxation and Finance +540436,Taxation and Finance,Taxation and Finance +539021,Taxation and Finance,Taxation and Finance +536677,Taxation and Finance,Taxation and Finance +533847,Taxation and Finance,Taxation and Finance +530621,Taxation and Finance,Taxation and Finance +526880,Taxation and Finance,Taxation and Finance +523960,Taxation and Finance,Taxation and Finance +522238,Taxation and Finance,Taxation and Finance +519018,Taxation and Finance,Taxation and Finance +517750,Taxation and Finance,Taxation and Finance +514492,Taxation and Finance,Taxation and Finance +543542,Agriculture,Agriculture +532532,Climate,Climate +527080,Climate,Climate +544886,Climate,Climate +544416,Climate,Climate +544416,Industry,Industry +527080,Natural Resources,Natural Resources +544416,Research and Development,Research and Development +511909,Agriculture,Agriculture +511884,Agriculture,Agriculture +520142,Agriculture,Agriculture +517063,Agriculture,Agriculture +517058,Agriculture,Agriculture +519484,Regional Development,Regional Development +517693,Regional Development,Regional Development +519484,Research and Development,Research and Development +517693,Research and Development,Research and Development +514376,Government Procurement,Government Procurement +511978,Government Procurement,Government Procurement +535059,Climate,Climate +535057,Climate,Climate +535066,Climate,Climate +535064,Climate,Climate +535061,Climate,Climate +535057,Economic Development,Economic Development +513161,Economic Development,Economic Development +535066,Economic Development,Economic Development +535064,Economic Development,Economic Development +535061,Economic Development,Economic Development +535060,Economic Development,Economic Development +535059,Natural Resources,Natural Resources +535057,Natural Resources,Natural Resources +535066,Natural Resources,Natural Resources +535064,Natural Resources,Natural Resources +535061,Natural Resources,Natural Resources +512935,International Development,International Development +512929,International Development,International Development +512945,International Development,International Development +518601,Consumer Issues,Consumer Issues +518594,Consumer Issues,Consumer Issues +540153,Consumer Issues,Consumer Issues +529852,Consumer Issues,Consumer Issues +518601,Financial Institutions,Financial Institutions +518594,Financial Institutions,Financial Institutions +540153,Financial Institutions,Financial Institutions +529852,Financial Institutions,Financial Institutions +518601,Housing,Housing +518594,Housing,Housing +540153,Housing,Housing +529852,Housing,Housing +513566,Government Procurement,Government Procurement +511979,Government Procurement,Government Procurement +518648,Government Procurement,Government Procurement +516288,Government Procurement,Government Procurement +514957,Government Procurement,Government Procurement +514372,Government Procurement,Government Procurement +514362,Government Procurement,Government Procurement +513593,Government Procurement,Government Procurement +513566,Industry,Industry +511979,Industry,Industry +540619,Industry,Industry +538980,Industry,Industry +538977,Industry,Industry +533014,Industry,Industry +530391,Industry,Industry +518648,Industry,Industry +514362,Industry,Industry +513454,Government Procurement,Government Procurement +513454,Health,Health +520787,Housing,Housing +520786,Housing,Housing +538952,Housing,Housing +533000,Housing,Housing +520787,Consumer Issues,Consumer Issues +520786,Consumer Issues,Consumer Issues +538952,Consumer Issues,Consumer Issues +533000,Consumer Issues,Consumer Issues +511848,Environment,Environment +520347,Consumer Issues,Consumer Issues +517282,Consumer Issues,Consumer Issues +525538,Consumer Issues,Consumer Issues +525535,Consumer Issues,Consumer Issues +511884,Infrastructure,Infrastructure +518224,Agriculture,Agriculture +518221,Agriculture,Agriculture +518224,Climate,Climate +518221,Climate,Climate +518224,Consumer Issues,Consumer Issues +518221,Consumer Issues,Consumer Issues +518224,International Trade,International Trade +518221,International Trade,International Trade +514083,Infrastructure,Infrastructure +514082,Infrastructure,Infrastructure +531937,Defence,Defence +529592,Defence,Defence +514764,Agriculture,Agriculture +514761,Agriculture,Agriculture +514764,Climate,Climate +514761,Climate,Climate +514761,Economic Development,Economic Development +514764,Energy,Energy +514761,Energy,Energy +514761,Environment,Environment +514764,Industry,Industry +514761,Industry,Industry +514764,Infrastructure,Infrastructure +514761,Infrastructure,Infrastructure +517495,Government Procurement,Government Procurement +514675,Government Procurement,Government Procurement +522504,Government Procurement,Government Procurement +522503,Government Procurement,Government Procurement +520008,Government Procurement,Government Procurement +525000,Climate,Climate +524997,Climate,Climate +512597,Foreign Affairs,Foreign Affairs +512188,Foreign Affairs,Foreign Affairs +542288,Foreign Affairs,Foreign Affairs +541010,Foreign Affairs,Foreign Affairs +540610,Foreign Affairs,Foreign Affairs +540609,Foreign Affairs,Foreign Affairs +536740,Foreign Affairs,Foreign Affairs +532793,Foreign Affairs,Foreign Affairs +532791,Foreign Affairs,Foreign Affairs +535090,Environment,Environment +513618,Natural Resources,Natural Resources +512032,Natural Resources,Natural Resources +512315,Immigration,Immigration +523629,Immigration,Immigration +523628,Immigration,Immigration +523627,Immigration,Immigration +523626,Immigration,Immigration +523625,Immigration,Immigration +523624,Immigration,Immigration +518685,Immigration,Immigration +515231,Taxation and Finance,Taxation and Finance +512055,Taxation and Finance,Taxation and Finance +534309,Taxation and Finance,Taxation and Finance +534307,Taxation and Finance,Taxation and Finance +534304,Taxation and Finance,Taxation and Finance +531118,Taxation and Finance,Taxation and Finance +531116,Taxation and Finance,Taxation and Finance +531115,Taxation and Finance,Taxation and Finance +524464,Taxation and Finance,Taxation and Finance +516522,Taxation and Finance,Taxation and Finance +512067,Transportation,Transports +545055,Taxation and Finance,Taxation and Finance +545055,Infrastructure,Infrastructure +512117,Economic Development,Développement économique +512116,Economic Development,Développement économique +512119,Economic Development,Développement économique +512117,Employment and Training,Emploi et formation +512116,Employment and Training,Emploi et formation +512119,Employment and Training,Emploi et formation +512123,Elections,Elections +518223,Defence,Defence +518219,Defence,Defence +518219,Economic Development,Economic Development +518223,Government Procurement,Government Procurement +518219,Government Procurement,Government Procurement +526630,Government Procurement,Government Procurement +523277,Government Procurement,Government Procurement +518223,Industry,Industry +518219,Industry,Industry +526630,Industry,Industry +523277,Industry,Industry +518219,Security,National Security/Security +542274,Government Procurement,Government Procurement +540685,Government Procurement,Government Procurement +521707,Government Procurement,Government Procurement +520734,Government Procurement,Government Procurement +516678,Government Procurement,Government Procurement +514823,Intellectual Property,Intellectual Property +514072,Intellectual Property,Intellectual Property +544856,Intellectual Property,Intellectual Property +544825,Intellectual Property,Intellectual Property +544788,Intellectual Property,Intellectual Property +544603,Intellectual Property,Intellectual Property +544532,Intellectual Property,Intellectual Property +544531,Intellectual Property,Intellectual Property +544530,Intellectual Property,Intellectual Property +543654,Intellectual Property,Intellectual Property +543648,Intellectual Property,Intellectual Property +542274,Intellectual Property,Intellectual Property +542155,Intellectual Property,Intellectual Property +540685,Intellectual Property,Intellectual Property +540456,Intellectual Property,Intellectual Property +540454,Intellectual Property,Intellectual Property +540453,Intellectual Property,Intellectual Property +537411,Intellectual Property,Intellectual Property +536666,Intellectual Property,Intellectual Property +536183,Intellectual Property,Intellectual Property +536095,Intellectual Property,Intellectual Property +534553,Intellectual Property,Intellectual Property +533651,Intellectual Property,Intellectual Property +533636,Intellectual Property,Intellectual Property +533634,Intellectual Property,Intellectual Property +533633,Intellectual Property,Intellectual Property +533262,Intellectual Property,Intellectual Property +532822,Intellectual Property,Intellectual Property +532727,Intellectual Property,Intellectual Property +532384,Intellectual Property,Intellectual Property +531567,Intellectual Property,Intellectual Property +531169,Intellectual Property,Intellectual Property +530733,Intellectual Property,Intellectual Property +530732,Intellectual Property,Intellectual Property +530272,Intellectual Property,Intellectual Property +530219,Intellectual Property,Intellectual Property +529860,Intellectual Property,Intellectual Property +529859,Intellectual Property,Intellectual Property +528033,Intellectual Property,Intellectual Property +527196,Intellectual Property,Intellectual Property +526956,Intellectual Property,Intellectual Property +525822,Intellectual Property,Intellectual Property +524368,Intellectual Property,Intellectual Property +524111,Intellectual Property,Intellectual Property +523946,Intellectual Property,Intellectual Property +523752,Intellectual Property,Intellectual Property +523655,Intellectual Property,Intellectual Property +523440,Intellectual Property,Intellectual Property +523412,Intellectual Property,Intellectual Property +521777,Intellectual Property,Intellectual Property +521562,Intellectual Property,Intellectual Property +521094,Intellectual Property,Intellectual Property +520964,Intellectual Property,Intellectual Property +520942,Intellectual Property,Intellectual Property +520775,Intellectual Property,Intellectual Property +520734,Intellectual Property,Intellectual Property +520733,Intellectual Property,Intellectual Property +520590,Intellectual Property,Intellectual Property +520588,Intellectual Property,Intellectual Property +520427,Intellectual Property,Intellectual Property +520382,Intellectual Property,Intellectual Property +520361,Intellectual Property,Intellectual Property +519481,Intellectual Property,Intellectual Property +519423,Intellectual Property,Intellectual Property +519251,Intellectual Property,Intellectual Property +519218,Intellectual Property,Intellectual Property +519059,Intellectual Property,Intellectual Property +518094,Intellectual Property,Intellectual Property +518033,Intellectual Property,Intellectual Property +516903,Intellectual Property,Intellectual Property +520588,Media,Media +516678,Media,Media +544856,Media,Media +544825,Media,Media +544788,Media,Media +544603,Media,Media +544532,Media,Media +544531,Media,Media +544530,Media,Media +543654,Media,Media +543648,Media,Media +542274,Media,Media +542155,Media,Media +540885,Media,Media +540685,Media,Media +540456,Media,Media +540454,Media,Media +540453,Media,Media +537411,Media,Media +536666,Media,Media +536422,Media,Media +536183,Media,Media +536095,Media,Media +534553,Media,Media +533651,Media,Media +533636,Media,Media +533634,Media,Media +533633,Media,Media +533262,Media,Media +532822,Media,Media +532727,Media,Media +532384,Media,Media +531567,Media,Media +531169,Media,Media +530733,Media,Media +530732,Media,Media +530272,Media,Media +530219,Media,Media +529860,Media,Media +529859,Media,Media +528940,Media,Media +528033,Media,Media +527211,Media,Media +527196,Media,Media +527075,Media,Media +526957,Media,Media +526956,Media,Media +525822,Media,Media +525807,Media,Media +524368,Media,Media +524111,Media,Media +523946,Media,Media +523752,Media,Media +523655,Media,Media +523440,Media,Media +523412,Media,Media +521777,Media,Media +521707,Media,Media +521562,Media,Media +521094,Media,Media +520964,Media,Media +520942,Media,Media +520775,Media,Media +520734,Media,Media +520733,Media,Media +515227,Economic Development,Economic Development +514242,Economic Development,Economic Development +543498,Economic Development,Economic Development +543495,Economic Development,Economic Development +543494,Economic Development,Economic Development +543491,Economic Development,Economic Development +541802,Economic Development,Economic Development +534031,Economic Development,Economic Development +534030,Economic Development,Economic Development +534028,Economic Development,Economic Development +532196,Economic Development,Economic Development +529404,Economic Development,Economic Development +526293,Economic Development,Economic Development +526266,Economic Development,Economic Development +526261,Economic Development,Economic Development +526259,Economic Development,Economic Development +526251,Economic Development,Economic Development +526227,Economic Development,Economic Development +524579,Economic Development,Economic Development +521582,Economic Development,Economic Development +521581,Economic Development,Economic Development +521580,Economic Development,Economic Development +521579,Economic Development,Economic Development +521578,Economic Development,Economic Development +521577,Economic Development,Economic Development +521576,Economic Development,Economic Development +519926,Economic Development,Economic Development +519921,Economic Development,Economic Development +517575,Economic Development,Economic Development +517571,Economic Development,Economic Development +517566,Economic Development,Economic Development +517559,Economic Development,Economic Development +517439,Economic Development,Economic Development +517559,Industry,Industry +517439,Industry,Industry +529404,Industry,Industry +526254,Industry,Industry +517575,Industry,Industry +517571,Industry,Industry +541803,International Trade,International Trade +539506,International Trade,International Trade +539504,International Trade,International Trade +539503,International Trade,International Trade +539499,International Trade,International Trade +539496,International Trade,International Trade +536510,International Trade,International Trade +534074,International Trade,International Trade +534032,International Trade,International Trade +532200,International Trade,International Trade +532198,International Trade,International Trade +529404,International Trade,International Trade +521582,International Trade,International Trade +521581,International Trade,International Trade +521580,International Trade,International Trade +521579,International Trade,International Trade +521578,International Trade,International Trade +521577,International Trade,International Trade +521576,International Trade,International Trade +517575,International Trade,International Trade +517571,International Trade,International Trade +517566,International Trade,International Trade +517559,International Trade,International Trade +517439,International Trade,International Trade +515229,International Trade,International Trade +515227,International Trade,International Trade +514242,International Trade,International Trade +515227,Mining,Mining +514242,Mining,Mining +534031,Mining,Mining +534030,Mining,Mining +534028,Mining,Mining +529404,Mining,Mining +526294,Mining,Mining +526293,Mining,Mining +526266,Mining,Mining +526261,Mining,Mining +526259,Mining,Mining +526254,Mining,Mining +526251,Mining,Mining +526230,Mining,Mining +521585,Mining,Mining +521584,Mining,Mining +521583,Mining,Mining +521582,Mining,Mining +521581,Mining,Mining +521580,Mining,Mining +520348,Consumer Issues,Consumer Issues +517282,Government Procurement,Government Procurement +511899,Housing,Housing +535468,Infrastructure,Infrastructure +511887,Immigration,Immigration +518227,Agriculture,Agriculture +518227,Climate,Climate +518227,Consumer Issues,Consumer Issues +518227,International Trade,International Trade +514084,Infrastructure,Infrastructure +511905,Employment and Training,Employment and Training +511906,Employment and Training,Employment and Training +511907,Employment and Training,Employment and Training +511909,Infrastructure,Infrastructure +531940,Defence,Defence +514769,Agriculture,Agriculture +514769,Climate,Climate +514769,Economic Development,Economic Development +514769,Energy,Energy +514764,Environment,Environment +514769,Industry,Industry +514769,Infrastructure,Infrastructure +514761,Research and Development,Research and Development +520002,Government Procurement,Government Procurement +520039,Government Procurement,Government Procurement +511958,Justice and Law Enforcement,Justice and Law Enforcement +511963,Infrastructure,Infrastructure +511963,Energy,Energy +511963,Climate,Climate +519979,Budget,Budget +525003,Climate,Climate +516262,Foreign Affairs,Foreign Affairs +512000,Environment,Environment +535094,Environment,Environment +512027,Environment,Environment +521298,Natural Resources,Natural Resources +516803,Immigration,Immigration +515232,Taxation and Finance,Taxation and Finance +512256,Budget,Budget +512256,Consumer Issues,Consumer Issues +512256,Employment and Training,Employment and Training +512256,Government Procurement,Government Procurement +512256,Industry,Industry +512256,Infrastructure,Infrastructure +512256,Municipalities,Municipalities +512256,Small Business,Small Business +512068,Transportation,Transports +545060,Taxation and Finance,Taxation and Finance +545060,Infrastructure,Infrastructure +512118,Economic Development,Développement économique +512118,Employment and Training,Emploi et formation +512123,Economic Development,Economic Development +527051,Elections,Elections +520300,Taxation and Finance,Taxation and Finance +526630,Defence,Defence +518223,Economic Development,Economic Development +523274,Government Procurement,Government Procurement +523274,Industry,Industry +518223,Security,National Security/Security +544825,Government Procurement,Government Procurement +516676,Intellectual Property,Intellectual Property +520590,Media,Media +512191,Employment and Training,Employment and Training +512204,Consumer Issues,Consumer Issues +512256,Energy,Energy +515229,Economic Development,Economic Development +517566,Industry,Industry +543497,International Trade,International Trade +515229,Mining,Mining +517566,Natural Resources,Natural Resources +517439,Regional Development,Regional Development +517566,Research and Development,Research and Development +512258,Climate,Climate +530780,Infrastructure,Infrastructure +513643,Employment and Training,Employment and Training +519231,Industry,Industry +513691,Budget,Budget +524932,Climate,Climate +533859,Economic Development,Economic Development +531176,Employment and Training,Employment and Training +516561,Energy,Energy +533853,Environment,Environment +512349,Industry,Industry +533856,Infrastructure,Infrastructure +512349,Mining,Mining +531152,Natural Resources,Natural Resources +512349,Regional Development,Regional Development +533857,Transportation,Transportation +517058,Infrastructure,Infrastructure +516279,Government Procurement,Government Procurement +526951,Budget,Budget +517173,Climate,Climate +517173,Economic Development,Economic Development +518049,Employment and Training,Employment and Training +517173,Energy,Energy +517304,Environment,Environment +518049,Federal-Provincial Relations,Federal-Provincial Relations +517173,Industry,Industry +517173,Infrastructure,Infrastructure +517304,Internal Trade,Internal Trade +517173,International Trade,International Trade +517173,Natural Resources,Natural Resources +518052,Regional Development,Regional Development +523388,Research and Development,Research and Development +518049,Taxation and Finance,Taxation and Finance +517304,Transportation,Transportation +519873,International Relations,International Relations +516661,Financial Institutions,Financial Institutions +516660,Taxation and Finance,Taxation and Finance +519873,Energy,Energy +516661,Environment,Environment +513280,Regional Development,Regional Development +526591,Climate,Climate +526591,Economic Development,Economic Development +526591,Energy,Energy +529580,Environment,Environment +526581,Industry,Industry +523445,Infrastructure,Infrastructure +526581,International Trade,International Trade +526591,Natural Resources,Natural Resources +512600,Natural Resources,Natural Resources +515633,Employment and Training,Employment and Training +519848,Energy,Energy +517438,Climate,Climate +517470,Economic Development,Economic Development +519377,International Trade,International Trade +528174,Environment,Environment +517438,Energy,Energy +528175,Industry,Industry +519377,Natural Resources,Natural Resources +528184,Infrastructure,Infrastructure +540005,Natural Resources,Natural Resources +532133,Health,Health +513797,Elections,Elections +520502,Economic Development,Economic Development +535582,Fisheries,Fisheries +520468,International Trade,International Trade +514312,Economic Development,Economic Development +520471,Employment and Training,Employment and Training +516497,Infrastructure,Infrastructure +514312,Mining,Mining +514312,Regional Development,Regional Development +513510,Economic Development,Economic Development +513510,Employment and Training,Employment and Training +513510,Industry,Industry +523353,Government Procurement,Government Procurement +526379,Employment and Training,Employment and Training +526381,Labour,Labour +519546,Economic Development,Economic Development +531009,Security,Security +515616,Government Procurement,Government Procurement +513197,Economic Development,Economic Development +513197,Natural Resources,Natural Resources +514338,Infrastructure,Infrastructure +538986,Government Procurement,Government Procurement +513240,Climate,Climate +514338,Government Procurement,Government Procurement +513601,Government Procurement,Government Procurement +527857,Natural Resources,Natural Resources +545275,Health,Health +513314,Intellectual Property,Intellectual Property +519075,Intellectual Property,Intellectual Property +513984,Regional Development,Regional Development +513367,Government Procurement,Marchés publics +513367,Natural Resources,Ressources naturelles +513384,Economic Development,Economic Development +540174,Labour,Labour +516419,Official Languages,Bilinguisme/Langues officielles +514323,Agriculture,Agriculture +514323,Climate,Climate +513401,Transportation,Transportation +536204,Foreign Affairs,Foreign Affairs +517608,Government Procurement,Government Procurement +530147,Taxation and Finance,Taxation and Finance +520385,Justice and Law Enforcement,Justice and Law Enforcement +519540,Employment and Training,Employment and Training +526884,Environment,Environment +526884,Economic Development,Economic Development +519533,Defence,Defence +519143,Climate,Climate +532771,Economic Development,Economic Development +532771,Tourism,Tourism +532872,Media,Media +513667,Tourism,Tourism +535984,Taxation and Finance,Taxation and Finance +513667,Small Business,Small Business +513468,Elections,Elections +536741,Agriculture,Agriculture +532654,Economic Development,Développement économique +532654,Regional Development,Développement régional +532654,Environment,Environnement +518588,Economic Development,Economic Development +526348,Environment,Environment +518588,Infrastructure,Infrastructure +526348,Labour,Labour +527030,Infrastructure,Infrastructure +527030,Environment,Environment +525779,Economic Development,Economic Development +529694,Health,Health +530359,Employment and Training,Employment and Training +514196,Official Languages,Official Languages +513514,Fisheries,Fisheries +515521,Internal Trade,Internal Trade +515522,Natural Resources,Natural Resources +515523,Research and Development,Research and Development +515523,Environment,Environment +515523,Federal-Provincial Relations,Federal-Provincial Relations +515523,Regional Development,Regional Development +515523,Infrastructure,Infrastructure +515521,International Trade,International Trade +515521,Taxation and Finance,Taxation and Finance +515523,Climate,Climate +515523,Energy,Energy +515521,Employment and Training,Employment and Training +515523,Industry,Industry +515523,Transportation,Transportation +536279,Economic Development,Economic Development +519966,Health,Health +519966,Budget,Budget +522359,Industry,Industry +522359,Infrastructure,Infrastructure +524914,Sports,Sports +524910,Budget,Budget +524914,Education,Education +524909,Health,Health +519057,Employment and Training,Employment and Training +515735,Municipalities,Municipalities +515735,Taxation and Finance,Taxation and Finance +521444,Tourism,Tourisme +514440,Government Procurement,Government Procurement +516634,Health,Health +521448,Research and Development,Research and Development +529697,Health,Health +523011,Health,Health +520458,Taxation and Finance,Taxation and Finance +532102,Agriculture,Agriculture +532102,Health,Health +521579,Mining,Mining +521578,Mining,Mining +521577,Mining,Mining +521576,Mining,Mining +517575,Mining,Mining +517571,Mining,Mining +517566,Mining,Mining +517559,Mining,Mining +517439,Mining,Mining +517559,Natural Resources,Natural Resources +517439,Natural Resources,Natural Resources +529404,Natural Resources,Natural Resources +526266,Natural Resources,Natural Resources +526254,Natural Resources,Natural Resources +526230,Natural Resources,Natural Resources +526227,Natural Resources,Natural Resources +524579,Natural Resources,Natural Resources +521585,Natural Resources,Natural Resources +521584,Natural Resources,Natural Resources +521583,Natural Resources,Natural Resources +521582,Natural Resources,Natural Resources +521581,Natural Resources,Natural Resources +521580,Natural Resources,Natural Resources +521579,Natural Resources,Natural Resources +521578,Natural Resources,Natural Resources +521577,Natural Resources,Natural Resources +521576,Natural Resources,Natural Resources +517575,Natural Resources,Natural Resources +517571,Natural Resources,Natural Resources +515227,Regional Development,Regional Development +514242,Regional Development,Regional Development +526266,Regional Development,Regional Development +526254,Regional Development,Regional Development +521582,Regional Development,Regional Development +521581,Regional Development,Regional Development +521580,Regional Development,Regional Development +521579,Regional Development,Regional Development +521578,Regional Development,Regional Development +521577,Regional Development,Regional Development +521576,Regional Development,Regional Development +517575,Regional Development,Regional Development +517571,Regional Development,Regional Development +517566,Regional Development,Regional Development +517559,Regional Development,Regional Development +517559,Research and Development,Research and Development +517439,Research and Development,Research and Development +521582,Research and Development,Research and Development +521581,Research and Development,Research and Development +521580,Research and Development,Research and Development +521579,Research and Development,Research and Development +521578,Research and Development,Research and Development +521577,Research and Development,Research and Development +521576,Research and Development,Research and Development +517575,Research and Development,Research and Development +517571,Research and Development,Research and Development +530778,Infrastructure,Infrastructure +513559,Infrastructure,Infrastructure +541774,Infrastructure,Infrastructure +512324,Employment and Training,Employment and Training +513643,Industry,Industry +513642,Industry,Industry +532048,Industry,Industry +532047,Industry,Industry +532045,Industry,Industry +526105,Industry,Industry +526102,Industry,Industry +531174,Budget,Budget +521468,Climate,Climate +516561,Climate,Climate +536076,Climate,Climate +533856,Climate,Climate +533855,Climate,Climate +533852,Climate,Climate +533851,Climate,Climate +525397,Climate,Climate +525388,Climate,Climate +524937,Climate,Climate +533858,Economic Development,Economic Development +533854,Economic Development,Economic Development +533852,Economic Development,Economic Development +513691,Economic Development,Economic Development +512354,Economic Development,Economic Development +512351,Economic Development,Economic Development +512349,Economic Development,Economic Development +512348,Economic Development,Economic Development +512347,Economic Development,Economic Development +537525,Economic Development,Economic Development +537524,Economic Development,Economic Development +537523,Economic Development,Economic Development +537522,Economic Development,Economic Development +537521,Economic Development,Economic Development +537520,Economic Development,Economic Development +537519,Economic Development,Economic Development +536076,Economic Development,Economic Development +534625,Economic Development,Economic Development +533863,Economic Development,Economic Development +533862,Economic Development,Economic Development +533861,Economic Development,Economic Development +533860,Economic Development,Economic Development +533851,Environment,Environment +513691,Environment,Environment +534625,Environment,Environment +533859,Environment,Environment +533858,Environment,Environment +512348,Industry,Industry +512347,Industry,Industry +537525,Industry,Industry +537524,Industry,Industry +537523,Industry,Industry +537522,Industry,Industry +537521,Industry,Industry +537520,Industry,Industry +537519,Industry,Industry +536076,Industry,Industry +533863,Industry,Industry +533862,Industry,Industry +533861,Industry,Industry +533860,Industry,Industry +533857,Industry,Industry +533856,Industry,Industry +533855,Industry,Industry +533854,Industry,Industry +533853,Industry,Industry +533852,Industry,Industry +533851,Industry,Industry +531175,Industry,Industry +531152,Industry,Industry +516561,Industry,Industry +512348,Mining,Mining +512347,Mining,Mining +538034,Mining,Mining +538030,Mining,Mining +537525,Mining,Mining +537524,Mining,Mining +537523,Mining,Mining +537522,Mining,Mining +537521,Mining,Mining +537520,Mining,Mining +537519,Mining,Mining +533857,Mining,Mining +533855,Mining,Mining +533853,Mining,Mining +531176,Mining,Mining +531152,Mining,Mining +528180,Mining,Mining +525397,Mining,Mining +525388,Mining,Mining +524937,Mining,Mining +524932,Mining,Mining +521468,Mining,Mining +516561,Mining,Mining +514536,Mining,Mining +512354,Mining,Mining +512351,Mining,Mining +528180,Natural Resources,Natural Resources +512354,Natural Resources,Natural Resources +512348,Regional Development,Regional Development +512347,Regional Development,Regional Development +533863,Regional Development,Regional Development +533862,Regional Development,Regional Development +512354,Regional Development,Regional Development +512351,Regional Development,Regional Development +533856,Transportation,Transportation +528180,Transportation,Transportation +534625,Transportation,Transportation +533858,Transportation,Transportation +512368,Infrastructure,Infrastructure +514366,Government Procurement,Government Procurement +513585,Government Procurement,Government Procurement +516281,Government Procurement,Government Procurement +526895,Budget,Budget +523388,Budget,Budget +518052,Budget,Budget +527409,Budget,Budget +514862,Climate,Climate +514858,Climate,Climate +531051,Climate,Climate +527409,Climate,Climate +526958,Climate,Climate +526949,Climate,Climate +526895,Climate,Climate +523388,Climate,Climate +518052,Climate,Climate +517304,Climate,Climate +514862,Economic Development,Economic Development +514858,Economic Development,Economic Development +531051,Economic Development,Economic Development +527409,Economic Development,Economic Development +526958,Economic Development,Economic Development +526951,Economic Development,Economic Development +526949,Economic Development,Economic Development +526895,Economic Development,Economic Development +523388,Economic Development,Economic Development +518052,Economic Development,Economic Development +518049,Economic Development,Economic Development +517304,Economic Development,Economic Development +517304,Employment and Training,Employment and Training +514862,Employment and Training,Employment and Training +531051,Employment and Training,Employment and Training +527409,Employment and Training,Employment and Training +523388,Employment and Training,Employment and Training +518052,Employment and Training,Employment and Training +514862,Energy,Energy +514858,Energy,Energy +531051,Energy,Energy +527409,Energy,Energy +526958,Energy,Energy +526951,Energy,Energy +526949,Energy,Energy +526895,Energy,Energy +523388,Energy,Energy +518052,Energy,Energy +518049,Energy,Energy +517304,Energy,Energy +517173,Environment,Environment +514858,Environment,Environment +531051,Environment,Environment +527409,Environment,Environment +526958,Environment,Environment +526951,Environment,Environment +526949,Environment,Environment +526895,Environment,Environment +523388,Environment,Environment +518049,Environment,Environment +514862,Federal-Provincial Relations,Federal-Provincial Relations +514858,Federal-Provincial Relations,Federal-Provincial Relations +531051,Federal-Provincial Relations,Federal-Provincial Relations +526958,Federal-Provincial Relations,Federal-Provincial Relations +526951,Federal-Provincial Relations,Federal-Provincial Relations +526895,Federal-Provincial Relations,Federal-Provincial Relations +523388,Federal-Provincial Relations,Federal-Provincial Relations +518052,Federal-Provincial Relations,Federal-Provincial Relations +514862,Industry,Industry +514858,Industry,Industry +531051,Industry,Industry +527409,Industry,Industry +526958,Industry,Industry +526951,Industry,Industry +526949,Industry,Industry +526895,Industry,Industry +523388,Industry,Industry +518052,Industry,Industry +518049,Industry,Industry +517304,Industry,Industry +514862,Infrastructure,Infrastructure +514858,Infrastructure,Infrastructure +531051,Infrastructure,Infrastructure +527409,Infrastructure,Infrastructure +526958,Infrastructure,Infrastructure +526951,Infrastructure,Infrastructure +526895,Infrastructure,Infrastructure +523388,Infrastructure,Infrastructure +518049,Infrastructure,Infrastructure +517304,Infrastructure,Infrastructure +517173,Internal Trade,Internal Trade +514862,Internal Trade,Internal Trade +531051,Internal Trade,Internal Trade +527409,Internal Trade,Internal Trade +526958,Internal Trade,Internal Trade +526951,Internal Trade,Internal Trade +526895,Internal Trade,Internal Trade +523388,Internal Trade,Internal Trade +518052,Internal Trade,Internal Trade +518049,Internal Trade,Internal Trade +514862,International Trade,International Trade +514858,International Trade,International Trade +531051,International Trade,International Trade +527409,International Trade,International Trade +526958,International Trade,International Trade +526951,International Trade,International Trade +526895,International Trade,International Trade +523388,International Trade,International Trade +518052,International Trade,International Trade +518049,International Trade,International Trade +517304,International Trade,International Trade +514862,Natural Resources,Natural Resources +514858,Natural Resources,Natural Resources +531051,Natural Resources,Natural Resources +527409,Natural Resources,Natural Resources +526958,Natural Resources,Natural Resources +526951,Natural Resources,Natural Resources +526949,Natural Resources,Natural Resources +526895,Natural Resources,Natural Resources +523388,Natural Resources,Natural Resources +518052,Natural Resources,Natural Resources +518049,Natural Resources,Natural Resources +517304,Natural Resources,Natural Resources +517304,Regional Development,Regional Development +517173,Regional Development,Regional Development +514862,Regional Development,Regional Development +514858,Regional Development,Regional Development +527409,Regional Development,Regional Development +526958,Regional Development,Regional Development +526951,Regional Development,Regional Development +526949,Regional Development,Regional Development +526895,Regional Development,Regional Development +523388,Regional Development,Regional Development +514858,Research and Development,Research and Development +527409,Research and Development,Research and Development +526958,Research and Development,Research and Development +517173,Taxation and Finance,Taxation and Finance +514862,Taxation and Finance,Taxation and Finance +531051,Taxation and Finance,Taxation and Finance +527409,Taxation and Finance,Taxation and Finance +526958,Taxation and Finance,Taxation and Finance +523388,Taxation and Finance,Taxation and Finance +518052,Taxation and Finance,Taxation and Finance +514862,Transportation,Transportation +514858,Transportation,Transportation +531051,Transportation,Transportation +527409,Transportation,Transportation +526958,Transportation,Transportation +526951,Transportation,Transportation +526895,Transportation,Transportation +523388,Transportation,Transportation +518052,Transportation,Transportation +518049,Transportation,Transportation +516660,International Relations,International Relations +516660,Financial Institutions,Financial Institutions +516659,Financial Institutions,Financial Institutions +519873,Financial Institutions,Financial Institutions +519872,Financial Institutions,Financial Institutions +519871,Financial Institutions,Financial Institutions +519869,Financial Institutions,Financial Institutions +516993,Financial Institutions,Financial Institutions +516659,Taxation and Finance,Taxation and Finance +516658,Taxation and Finance,Taxation and Finance +519873,Taxation and Finance,Taxation and Finance +519872,Taxation and Finance,Taxation and Finance +519871,Taxation and Finance,Taxation and Finance +519869,Taxation and Finance,Taxation and Finance +516661,Taxation and Finance,Taxation and Finance +516993,Energy,Energy +516661,Energy,Energy +516659,Environment,Environment +516658,Environment,Environment +519873,Environment,Environment +516993,Environment,Environment +513279,Regional Development,Regional Development +526581,Climate,Climate +523445,Climate,Climate +532259,Climate,Climate +532257,Climate,Climate +526581,Economic Development,Economic Development +523445,Economic Development,Economic Development +532259,Economic Development,Economic Development +532257,Economic Development,Economic Development +529580,Economic Development,Economic Development +526581,Energy,Energy +523445,Energy,Energy +532259,Energy,Energy +532257,Energy,Energy +529580,Energy,Energy +526591,Environment,Environment +526581,Environment,Environment +532259,Industry,Industry +529580,Industry,Industry +526581,Natural Resources,Natural Resources +515632,Employment and Training,Employment and Training +515631,Employment and Training,Employment and Training +517431,Climate,Climate +517418,Climate,Climate +534384,Climate,Climate +528175,Climate,Climate +528174,Climate,Climate +525562,Climate,Climate +519377,Climate,Climate +519376,Climate,Climate +517470,Climate,Climate +517438,Economic Development,Economic Development +517431,Economic Development,Economic Development +535750,Economic Development,Economic Development +534384,Economic Development,Economic Development +528184,Economic Development,Economic Development +528175,Economic Development,Economic Development +528174,Economic Development,Economic Development +525562,Economic Development,Economic Development +525560,Economic Development,Economic Development +522198,Economic Development,Economic Development +519377,Economic Development,Economic Development +519376,Economic Development,Economic Development +519376,International Trade,International Trade +517470,International Trade,International Trade +535750,International Trade,International Trade +534384,International Trade,International Trade +528174,International Trade,International Trade +525562,International Trade,International Trade +525560,International Trade,International Trade +522198,International Trade,International Trade +525560,Environment,Environment +522198,Environment,Environment +517418,Environment,Environment +535750,Environment,Environment +517431,Energy,Energy +517418,Energy,Energy +535750,Energy,Energy +534384,Energy,Energy +528184,Energy,Energy +528174,Energy,Energy +525562,Energy,Energy +525560,Energy,Energy +522198,Energy,Energy +519377,Energy,Energy +519376,Energy,Energy +517470,Energy,Energy +528174,Industry,Industry +525562,Industry,Industry +535750,Industry,Industry +519376,Natural Resources,Natural Resources +517470,Natural Resources,Natural Resources +535750,Natural Resources,Natural Resources +534384,Natural Resources,Natural Resources +528174,Natural Resources,Natural Resources +525562,Natural Resources,Natural Resources +525560,Natural Resources,Natural Resources +522198,Natural Resources,Natural Resources +522926,Infrastructure,Infrastructure +512722,Natural Resources,Natural Resources +527454,Health,Health +513498,Health,Health +532501,Health,Health +512909,Elections,Elections +520501,Economic Development,Economic Development +520469,Economic Development,Economic Development +526480,Fisheries,Fisheries +526476,Fisheries,Fisheries +520502,Fisheries,Fisheries +520501,Fisheries,Fisheries +520469,Fisheries,Fisheries +520468,Fisheries,Fisheries +520020,Fisheries,Fisheries +520017,Fisheries,Fisheries +520014,Fisheries,Fisheries +518314,Fisheries,Fisheries +514188,Fisheries,Fisheries +535602,Fisheries,Fisheries +535587,Fisheries,Fisheries +514311,Economic Development,Economic Development +513471,Economic Development,Economic Development +520471,Economic Development,Economic Development +516497,Economic Development,Economic Development +515087,Economic Development,Economic Development +514731,Economic Development,Economic Development +514730,Economic Development,Economic Development +515087,Infrastructure,Infrastructure +520471,Infrastructure,Infrastructure +514311,Mining,Mining +513471,Mining,Mining +520471,Mining,Mining +516497,Mining,Mining +515087,Mining,Mining +514731,Mining,Mining +514730,Mining,Mining +514311,Regional Development,Regional Development +513471,Regional Development,Regional Development +520471,Regional Development,Regional Development +516497,Regional Development,Regional Development +515087,Regional Development,Regional Development +514731,Regional Development,Regional Development +514730,Regional Development,Regional Development +523352,Government Procurement,Government Procurement +523351,Government Procurement,Government Procurement +527715,Government Procurement,Government Procurement +524070,Government Procurement,Government Procurement +520067,Employment and Training,Employment and Training +520065,Employment and Training,Employment and Training +513031,Employment and Training,Employment and Training +544612,Employment and Training,Employment and Training +543945,Employment and Training,Employment and Training +543938,Employment and Training,Employment and Training +543937,Employment and Training,Employment and Training +543866,Employment and Training,Employment and Training +543825,Employment and Training,Employment and Training +539391,Employment and Training,Employment and Training +537534,Employment and Training,Employment and Training +535786,Employment and Training,Employment and Training +535775,Employment and Training,Employment and Training +535768,Employment and Training,Employment and Training +535754,Employment and Training,Employment and Training +535747,Employment and Training,Employment and Training +535745,Employment and Training,Employment and Training +535725,Employment and Training,Employment and Training +535724,Employment and Training,Employment and Training +531861,Employment and Training,Employment and Training +531849,Employment and Training,Employment and Training +529384,Employment and Training,Employment and Training +529382,Employment and Training,Employment and Training +529381,Employment and Training,Employment and Training +526388,Employment and Training,Employment and Training +526383,Employment and Training,Employment and Training +526381,Employment and Training,Employment and Training +520065,Labour,Labour +513031,Labour,Labour +544612,Labour,Labour +537535,Labour,Labour +537534,Labour,Labour +535725,Labour,Labour +526388,Labour,Labour +519545,Economic Development,Economic Development +517123,Economic Development,Economic Development +513941,Economic Development,Economic Development +531452,Economic Development,Economic Development +528274,Economic Development,Economic Development +528271,Economic Development,Economic Development +528269,Economic Development,Economic Development +528268,Economic Development,Economic Development +523866,Government Procurement,Government Procurement +513568,Government Procurement,Government Procurement +513281,Natural Resources,Natural Resources +513275,Natural Resources,Natural Resources +537496,Natural Resources,Natural Resources +537486,Natural Resources,Natural Resources +537482,Natural Resources,Natural Resources +535555,Natural Resources,Natural Resources +535549,Natural Resources,Natural Resources +535546,Natural Resources,Natural Resources +528304,Natural Resources,Natural Resources +527868,Natural Resources,Natural Resources +539083,Health,Health +539066,Health,Health +545279,Health,Health +545278,Health,Health +545277,Health,Health +513316,Intellectual Property,Intellectual Property +513349,Regional Development,Regional Development +513384,Labour,Labour +516418,Official Languages,Bilinguisme/Langues officielles +516417,Official Languages,Bilinguisme/Langues officielles +516416,Official Languages,Bilinguisme/Langues officielles +515645,Official Languages,Bilinguisme/Langues officielles +515509,Official Languages,Bilinguisme/Langues officielles +514563,Official Languages,Bilinguisme/Langues officielles +514535,Official Languages,Bilinguisme/Langues officielles +514134,Official Languages,Bilinguisme/Langues officielles +514132,Official Languages,Bilinguisme/Langues officielles +514131,Official Languages,Bilinguisme/Langues officielles +513387,Official Languages,Bilinguisme/Langues officielles +513386,Official Languages,Bilinguisme/Langues officielles +513385,Official Languages,Bilinguisme/Langues officielles +543801,Official Languages,Bilinguisme/Langues officielles +543800,Official Languages,Bilinguisme/Langues officielles +543799,Official Languages,Bilinguisme/Langues officielles +541055,Official Languages,Bilinguisme/Langues officielles +541054,Official Languages,Bilinguisme/Langues officielles +541053,Official Languages,Bilinguisme/Langues officielles +536222,Official Languages,Bilinguisme/Langues officielles +536221,Official Languages,Bilinguisme/Langues officielles +533081,Official Languages,Bilinguisme/Langues officielles +533080,Official Languages,Bilinguisme/Langues officielles +533079,Official Languages,Bilinguisme/Langues officielles +533078,Official Languages,Bilinguisme/Langues officielles +533077,Official Languages,Bilinguisme/Langues officielles +533076,Official Languages,Bilinguisme/Langues officielles +533075,Official Languages,Bilinguisme/Langues officielles +530777,Official Languages,Bilinguisme/Langues officielles +530776,Official Languages,Bilinguisme/Langues officielles +530774,Official Languages,Bilinguisme/Langues officielles +530773,Official Languages,Bilinguisme/Langues officielles +530772,Official Languages,Bilinguisme/Langues officielles +530771,Official Languages,Bilinguisme/Langues officielles +527550,Official Languages,Bilinguisme/Langues officielles +527549,Official Languages,Bilinguisme/Langues officielles +527548,Official Languages,Bilinguisme/Langues officielles +527547,Official Languages,Bilinguisme/Langues officielles +527546,Official Languages,Bilinguisme/Langues officielles +527545,Official Languages,Bilinguisme/Langues officielles +527544,Official Languages,Bilinguisme/Langues officielles +527543,Official Languages,Bilinguisme/Langues officielles +527542,Official Languages,Bilinguisme/Langues officielles +527540,Official Languages,Bilinguisme/Langues officielles +527539,Official Languages,Bilinguisme/Langues officielles +527538,Official Languages,Bilinguisme/Langues officielles +527537,Official Languages,Bilinguisme/Langues officielles +527536,Official Languages,Bilinguisme/Langues officielles +527535,Official Languages,Bilinguisme/Langues officielles +527534,Official Languages,Bilinguisme/Langues officielles +518804,Official Languages,Bilinguisme/Langues officielles +518803,Official Languages,Bilinguisme/Langues officielles +518802,Official Languages,Bilinguisme/Langues officielles +518801,Official Languages,Bilinguisme/Langues officielles +518800,Official Languages,Bilinguisme/Langues officielles +518799,Official Languages,Bilinguisme/Langues officielles +518798,Official Languages,Bilinguisme/Langues officielles +518797,Official Languages,Bilinguisme/Langues officielles +518796,Official Languages,Bilinguisme/Langues officielles +518795,Official Languages,Bilinguisme/Langues officielles +518794,Official Languages,Bilinguisme/Langues officielles +518793,Official Languages,Bilinguisme/Langues officielles +518792,Official Languages,Bilinguisme/Langues officielles +518791,Official Languages,Bilinguisme/Langues officielles +517208,Official Languages,Bilinguisme/Langues officielles +516426,Official Languages,Bilinguisme/Langues officielles +516425,Official Languages,Bilinguisme/Langues officielles +516424,Official Languages,Bilinguisme/Langues officielles +516423,Official Languages,Bilinguisme/Langues officielles +516422,Official Languages,Bilinguisme/Langues officielles +516421,Official Languages,Bilinguisme/Langues officielles +516420,Official Languages,Bilinguisme/Langues officielles +514183,Government Procurement,Government Procurement +530146,Taxation and Finance,Taxation and Finance +520385,Taxation and Finance,Taxation and Finance +518636,Taxation and Finance,Taxation and Finance +519533,Employment and Training,Employment and Training +519143,Employment and Training,Employment and Training +530121,Employment and Training,Employment and Training +526884,Employment and Training,Employment and Training +521765,Employment and Training,Employment and Training +521765,Environment,Environment +519540,Environment,Environment +519540,Economic Development,Economic Development +519533,Economic Development,Economic Development +519143,Economic Development,Economic Development +530121,Defence,Defence +521765,Defence,Defence +532870,Media,Media +530638,Media,Media +532654,Agriculture,Agriculture +526348,Infrastructure,Infrastructure +520624,Infrastructure,Infrastructure +519909,Infrastructure,Infrastructure +520624,Environment,Environment +519909,Environment,Environment +525776,Economic Development,Economic Development +521606,Economic Development,Economic Development +540794,Economic Development,Economic Development +540739,Economic Development,Economic Development +515521,Natural Resources,Natural Resources +515523,Natural Resources,Natural Resources +515522,Environment,Environment +515521,Federal-Provincial Relations,Federal-Provincial Relations +515522,Regional Development,Regional Development +515521,Regional Development,Regional Development +515521,Infrastructure,Infrastructure +515522,Climate,Climate +515521,Climate,Climate +515522,Energy,Energy +515521,Energy,Energy +536281,Energy,Energy +536280,Energy,Energy +536279,Energy,Energy +515521,Industry,Industry +515521,Transportation,Transportation +515523,Economic Development,Economic Development +515521,Economic Development,Economic Development +536281,Economic Development,Economic Development +536280,Economic Development,Economic Development +519962,Health,Health +517533,Health,Health +543742,Health,Health +541398,Health,Health +531225,Health,Health +519971,Health,Health +519962,Budget,Budget +517533,Budget,Budget +519971,Budget,Budget +524909,Sports,Sports +522352,Sports,Sports +524909,Budget,Budget +522352,Budget,Budget +524914,Budget,Budget +524911,Budget,Budget +524911,Education,Education +519062,Education,Education +522352,Health,Health +519062,Health,Health +524914,Health,Health +524911,Health,Health +524910,Health,Health +519056,Employment and Training,Employment and Training +519053,Employment and Training,Employment and Training +527025,Employment and Training,Employment and Training +519060,Employment and Training,Employment and Training +515734,Municipalities,Municipalities +514530,Municipalities,Municipalities +521294,Municipalities,Municipalities +517120,Municipalities,Municipalities +517119,Municipalities,Municipalities +515736,Municipalities,Municipalities +515734,Taxation and Finance,Taxation and Finance +514530,Taxation and Finance,Taxation and Finance +521294,Taxation and Finance,Taxation and Finance +517120,Taxation and Finance,Taxation and Finance +517119,Taxation and Finance,Taxation and Finance +515736,Taxation and Finance,Taxation and Finance +514438,Government Procurement,Government Procurement +514434,Government Procurement,Government Procurement +540901,Government Procurement,Government Procurement +539213,Government Procurement,Government Procurement +537057,Government Procurement,Government Procurement +537045,Government Procurement,Government Procurement +537041,Government Procurement,Government Procurement +537016,Government Procurement,Government Procurement +536000,Government Procurement,Government Procurement +535919,Government Procurement,Government Procurement +530801,Government Procurement,Government Procurement +530798,Government Procurement,Government Procurement +528957,Government Procurement,Government Procurement +528956,Government Procurement,Government Procurement +524409,Government Procurement,Government Procurement +524408,Government Procurement,Government Procurement +521451,Government Procurement,Government Procurement +521450,Government Procurement,Government Procurement +521449,Government Procurement,Government Procurement +521448,Government Procurement,Government Procurement +521447,Government Procurement,Government Procurement +518934,Government Procurement,Government Procurement +518933,Government Procurement,Government Procurement +518932,Government Procurement,Government Procurement +518931,Government Procurement,Government Procurement +516634,Government Procurement,Government Procurement +515076,Government Procurement,Government Procurement +515075,Government Procurement,Government Procurement +516631,Health,Health +514439,Health,Health +540896,Health,Health +540895,Health,Health +539215,Health,Health +539213,Health,Health +537057,Health,Health +537045,Health,Health +537041,Health,Health +537018,Health,Health +537016,Health,Health +536000,Health,Health +535919,Health,Health +530801,Health,Health +530798,Health,Health +528957,Health,Health +528956,Health,Health +524409,Health,Health +524408,Health,Health +521451,Health,Health +521450,Health,Health +521449,Health,Health +521448,Health,Health +521447,Health,Health +518934,Health,Health +518933,Health,Health +518932,Health,Health +518931,Health,Health +518929,Health,Health +516991,Health,Health +521447,Research and Development,Research and Development +516634,Research and Development,Research and Development +540895,Research and Development,Research and Development +539215,Research and Development,Research and Development +537041,Research and Development,Research and Development +537018,Research and Development,Research and Development +537016,Research and Development,Research and Development +536000,Research and Development,Research and Development +535919,Research and Development,Research and Development +530801,Research and Development,Research and Development +530799,Research and Development,Research and Development +530798,Research and Development,Research and Development +528957,Research and Development,Research and Development +528956,Research and Development,Research and Development +524409,Research and Development,Research and Development +524408,Research and Development,Research and Development +521449,Research and Development,Research and Development +529695,Health,Health +526586,Health,Health +529698,Health,Health +525543,Health,Health +516777,Agriculture,Agriculture +524857,Environment,Environment +516777,Environment,Environment +516777,Internal Trade,Internal Trade +516777,International Trade,International Trade +539387,International Trade,International Trade +524857,International Trade,International Trade +516777,Taxation and Finance,Taxation and Finance +523822,Environment,Environment +519337,Environment,Environment +514638,International Development,International Development +514307,International Development,International Development +530944,International Development,International Development +524574,International Development,International Development +521646,International Development,International Development +523358,Government Procurement,Government Procurement +516282,Government Procurement,Government Procurement +514364,Government Procurement,Government Procurement +516293,Government Procurement,Government Procurement +519107,Government Procurement,Government Procurement +513668,Government Procurement,Government Procurement +541797,Government Procurement,Government Procurement +519115,Government Procurement,Government Procurement +513729,International Relations,International Relations +513728,International Relations,International Relations +518874,International Relations,International Relations +518863,International Relations,International Relations +513729,International Trade,International Trade +513728,International Trade,International Trade +518874,International Trade,International Trade +518863,International Trade,International Trade +518862,International Trade,International Trade +514458,International Trade,International Trade +513731,Mining,Mining +518965,Taxation and Finance,Taxation and Finance +513760,Taxation and Finance,Taxation and Finance +537626,Taxation and Finance,Taxation and Finance +515430,Taxation and Finance,Taxation and Finance +513761,Taxation and Finance,Taxation and Finance +517519,Taxation and Finance,Taxation and Finance +514934,Research and Development,Research and Development +513769,Research and Development,Research and Development +540507,Research and Development,Research and Development +539133,Research and Development,Research and Development +538746,Research and Development,Research and Development +536907,Research and Development,Research and Development +536540,Research and Development,Research and Development +524279,Research and Development,Research and Development +514937,Research and Development,Research and Development +536045,Immigration,Immigration +515120,Immigration,Immigration +515391,Climate,Climate +514533,Climate,Climate +515391,Environment,Environment +514533,Environment,Environment +516079,Taxation and Finance,Taxation and Finance +514156,Elections,Elections +531541,Federal-Provincial Relations,Federal-Provincial Relations +531539,Federal-Provincial Relations,Federal-Provincial Relations +529419,Federal-Provincial Relations,Federal-Provincial Relations +528877,Federal-Provincial Relations,Federal-Provincial Relations +528872,Federal-Provincial Relations,Federal-Provincial Relations +528870,Federal-Provincial Relations,Federal-Provincial Relations +528868,Federal-Provincial Relations,Federal-Provincial Relations +528864,Federal-Provincial Relations,Federal-Provincial Relations +528860,Federal-Provincial Relations,Federal-Provincial Relations +528854,Federal-Provincial Relations,Federal-Provincial Relations +528825,Federal-Provincial Relations,Federal-Provincial Relations +528815,Federal-Provincial Relations,Federal-Provincial Relations +528811,Federal-Provincial Relations,Federal-Provincial Relations +528807,Federal-Provincial Relations,Federal-Provincial Relations +526077,Federal-Provincial Relations,Federal-Provincial Relations +514607,Federal-Provincial Relations,Federal-Provincial Relations +514605,Federal-Provincial Relations,Federal-Provincial Relations +514602,Federal-Provincial Relations,Federal-Provincial Relations +514202,Federal-Provincial Relations,Federal-Provincial Relations +543439,Federal-Provincial Relations,Federal-Provincial Relations +543432,Federal-Provincial Relations,Federal-Provincial Relations +543426,Federal-Provincial Relations,Federal-Provincial Relations +541714,Federal-Provincial Relations,Federal-Provincial Relations +541713,Federal-Provincial Relations,Federal-Provincial Relations +541708,Federal-Provincial Relations,Federal-Provincial Relations +541705,Federal-Provincial Relations,Federal-Provincial Relations +539664,Federal-Provincial Relations,Federal-Provincial Relations +537433,Federal-Provincial Relations,Federal-Provincial Relations +537432,Federal-Provincial Relations,Federal-Provincial Relations +537431,Federal-Provincial Relations,Federal-Provincial Relations +537429,Federal-Provincial Relations,Federal-Provincial Relations +537428,Federal-Provincial Relations,Federal-Provincial Relations +533747,Federal-Provincial Relations,Federal-Provincial Relations +518992,Economic Development,Economic Development +518990,Economic Development,Economic Development +543339,Economic Development,Economic Development +543336,Economic Development,Economic Development +543335,Economic Development,Economic Development +531281,Economic Development,Economic Development +531280,Economic Development,Economic Development +531279,Economic Development,Economic Development +528413,Economic Development,Economic Development +524936,Economic Development,Economic Development +524934,Economic Development,Economic Development +521875,Economic Development,Economic Development +521874,Economic Development,Economic Development +518996,Economic Development,Economic Development +518994,Economic Development,Economic Development +518992,Environment,Environment +518990,Environment,Environment +543336,Environment,Environment +543335,Environment,Environment +539274,Environment,Environment +534247,Environment,Environment +531280,Environment,Environment +531279,Environment,Environment +524936,Environment,Environment +524934,Environment,Environment +521875,Environment,Environment +521874,Environment,Environment +518996,Environment,Environment +518994,Environment,Environment +518992,Forestry,Forestry +518990,Forestry,Forestry +543339,Forestry,Forestry +543336,Forestry,Forestry +543335,Forestry,Forestry +539274,Forestry,Forestry +534247,Forestry,Forestry +531281,Forestry,Forestry +531280,Forestry,Forestry +531279,Forestry,Forestry +528413,Forestry,Forestry +524936,Forestry,Forestry +524934,Forestry,Forestry +521875,Forestry,Forestry +521874,Forestry,Forestry +518996,Forestry,Forestry +518994,Forestry,Forestry +518992,Regional Development,Regional Development +520704,Agriculture,Agriculture +539387,Environment,Environment +524857,Internal Trade,Internal Trade +520704,International Trade,International Trade +520704,Taxation and Finance,Taxation and Finance +519337,Taxation and Finance,Taxation and Finance +516951,International Trade,International Trade +538812,Environment,Environment +538812,Internal Trade,Internal Trade +513609,Health,Health +513609,Immigration,Immigration +513613,Health,Health +513614,Health,Health +513614,Security,Security +524574,Education,Education +516908,International Development,International Development +513690,Government Procurement,Government Procurement +542528,Economic Development,Développement économique +542528,Small Business,Petites entreprises +523987,Government Procurement,Government Procurement +523358,Security,National Security/Security +523358,Research and Development,Research and Development +516284,Government Procurement,Government Procurement +513682,Budget,Budget +513682,Health,Health +513682,Industry,Industry +513682,Research and Development,Research and Development +519114,Government Procurement,Government Procurement +513668,Privacy and Access to Information,Privacy and Access to Information +521763,Tourism,Tourism +521763,Industry,Industry +521763,Economic Development,Economic Development +540841,Climate,Climate +513713,Government Procurement,Government Procurement +513731,International Relations,International Relations +513731,International Trade,International Trade +514458,Mining,Mining +513746,Natural Resources,Natural Resources +513750,Natural Resources,Natural Resources +518972,Taxation and Finance,Taxation and Finance +517518,Taxation and Finance,Taxation and Finance +514935,Research and Development,Research and Development +513896,Health,Health +513933,Constitutional Issues,Constitutional Issues +513934,Constitutional Issues,Constitutional Issues +513935,Constitutional Issues,Constitutional Issues +517124,Small Business,Small Business +517124,Economic Development,Economic Development +517124,Taxation and Finance,Taxation and Finance +539091,Immigration,Immigration +539087,Environment,Environment +542110,Climate,Climate +542110,Environment,Environment +514001,Infrastructure,Infrastructure +522767,Industry,Industry +514632,Natural Resources,Natural Resources +517270,Taxation and Finance,Taxation and Finance +514261,Justice and Law Enforcement,Justice and Law Enforcement +514932,Justice and Law Enforcement,Justice and Law Enforcement +514158,Elections,Elections +531544,Federal-Provincial Relations,Federal-Provincial Relations +518993,Economic Development,Economic Development +518993,Environment,Environment +518993,Forestry,Forestry +518993,Regional Development,Regional Development +514226,Foreign Affairs,Foreign Affairs +542277,Health,Health +514271,Elections,Elections +514288,Energy,Energy +514288,Environment,Environment +514288,Research and Development,Research and Development +543229,Education,Education +543229,Immigration,Immigration +518993,Climate,Climate +518993,Industry,Industry +543339,Transportation,Transportation +518990,International Trade,International Trade +542900,Health,Health +542774,Budget,Budget +542774,Economic Development,Economic Development +514304,Health,Santé +520717,Industry,Industry +516564,Natural Resources,Natural Resources +517970,Health,Health +528017,Taxation and Finance,Taxation and Finance +519696,Natural Resources,Natural Resources +525556,Health,Health +514321,Energy,Energy +540717,Infrastructure,Infrastructure +514343,Employment and Training,Emploi et formation +515166,Financial Institutions,Financial Institutions +523770,Economic Development,Economic Development +523770,Transportation,Transportation +523770,Industry,Industry +526034,Employment and Training,Employment and Training +541527,Budget,Budget +517292,Justice and Law Enforcement,Justice and Law Enforcement +514879,Taxation and Finance,Taxation and Finance +515358,Health,Health +520748,Research and Development,Research and Development +520748,Health,Health +520748,Industry,Industry +520749,Industry,Industry +520749,Health,Health +520749,Research and Development,Research and Development +516276,Education,Education +516276,Consumer Issues,Consumer Issues +540519,Transportation,Transportation +524481,Justice and Law Enforcement,Justice and Law Enforcement +540763,International Relations,International Relations +532736,Security,Security +520969,Environment,Environment +520969,Energy,Energy +516965,Economic Development,Economic Development +520969,Regional Development,Regional Development +515156,Education,Education +515156,Industry,Industry +514410,Economic Development,Développement économique +527165,Infrastructure,Infrastructure +541524,Budget,Budget +541523,Health,Health +541524,Employment and Training,Employment and Training +517297,Justice and Law Enforcement,Justice and Law Enforcement +538311,Mining,Mining +538342,Climate,Climate +538316,Labour,Labour +538342,Environment,Environment +538321,Economic Development,Economic Development +514895,Climate,Climate +514895,Economic Development,Economic Development +514895,Employment and Training,Employment and Training +514895,Energy,Energy +514895,Industry,Industry +514895,Labour,Labour +514895,Mining,Mining +522331,Employment and Training,Employment and Training +522331,Energy,Energy +516120,Environment,Environment +522331,Industry,Industry +522331,International Trade,International Trade +522331,Mining,Mining +522331,Transportation,Transportation +514472,Labour,Travail +515600,Government Procurement,Government Procurement +521474,Sports,Sports +515041,Research and Development,Recherche et développement +514389,Federal-Provincial Relations,Federal-Provincial Relations +523395,Government Procurement,Government Procurement +517705,Climate,Climate +521429,International Relations,International Relations +521437,Research and Development,Research and Development +537947,Taxation and Finance,Taxation and Finance +539257,Transportation,Transportation +516780,Consumer Issues,Consumer Issues +516780,Financial Institutions,Financial Institutions +538806,Industry,Industry +528272,Privacy and Access to Information,Privacy and Access to Information +517425,Energy,Energy +517424,Climate,Climate +525897,Environment,Environment +525897,Energy,Energy +525897,Natural Resources,Natural Resources +525897,Economic Development,Economic Development +523772,Small Business,Small Business +523772,Regional Development,Regional Development +523772,Health,Health +523772,Industry,Industry +523771,Small Business,Small Business +521167,Industry,Industry +521167,Employment and Training,Employment and Training +514462,Consumer Issues,Consumer Issues +514467,Elections,Elections +519038,Government Procurement,Government Procurement +533018,Government Procurement,Government Procurement +523876,Climate,Climate +523876,Energy,Energy +523876,Environment,Environment +524713,Federal-Provincial Relations,Federal-Provincial Relations +524713,Fisheries,Fisheries +524713,Industry,Industry +523876,Natural Resources,Natural Resources +539874,Environment,Environment +541342,Industry,Industry +539874,Internal Trade,Internal Trade +539869,International Trade,International Trade +521455,Taxation and Finance,Taxation and Finance +514609,Economic Development,Développement économique +514501,Climate,Climate +514501,International Relations,International Relations +520497,Infrastructure,Infrastructure +514510,Employment and Training,Employment and Training +516626,Environment,Environment +524440,Industry,Industry +517908,Government Procurement,Government Procurement +523769,Climate,Climate +535172,Health,Health +526974,Economic Development,Economic Development +518034,Health,Health +518836,Housing,Housing +520475,Energy,Energy +520475,Environment,Environment +520475,Transportation,Transportation +514620,Elections,Elections +516077,Taxation and Finance,Taxation and Finance +514650,Environment,Environment +514650,Municipalities,Municipalities +525143,Economic Development,Développement économique +529198,Climate,Climate +535903,Economic Development,Economic Development +519410,Energy,Energy +517260,Environment,Environment +532676,Industry,Industry +522348,International Trade,International Trade +522348,Natural Resources,Natural Resources +534492,Regional Development,Regional Development +525217,Industry,Industry +514831,Natural Resources,Natural Resources +516289,Energy,Energy +516289,Transportation,Transportation +516289,International Trade,International Trade +516289,Environment,Environment +514841,Housing,Housing +518990,Regional Development,Regional Development +543339,Regional Development,Regional Development +543336,Regional Development,Regional Development +543335,Regional Development,Regional Development +531280,Regional Development,Regional Development +531279,Regional Development,Regional Development +518996,Regional Development,Regional Development +518994,Regional Development,Regional Development +516391,Health,Health +518992,Climate,Climate +518990,Climate,Climate +543336,Climate,Climate +543335,Climate,Climate +539274,Climate,Climate +531280,Climate,Climate +531279,Climate,Climate +524936,Climate,Climate +524934,Climate,Climate +521875,Climate,Climate +521874,Climate,Climate +518996,Climate,Climate +518992,Industry,Industry +518990,Industry,Industry +543339,Industry,Industry +543336,Industry,Industry +543335,Industry,Industry +539274,Industry,Industry +528413,Industry,Industry +524936,Industry,Industry +524934,Industry,Industry +521875,Industry,Industry +521874,Industry,Industry +518996,Industry,Industry +518994,Industry,Industry +543339,International Trade,International Trade +531281,International Trade,International Trade +528413,International Trade,International Trade +524936,International Trade,International Trade +524934,International Trade,International Trade +521875,International Trade,International Trade +521874,International Trade,International Trade +518996,International Trade,International Trade +518994,International Trade,International Trade +518993,International Trade,International Trade +518992,International Trade,International Trade +542667,Health,Health +541014,Health,Health +544217,Health,Health +544216,Health,Health +544167,Health,Health +544166,Health,Health +544165,Health,Health +543320,Health,Health +542918,Health,Health +542906,Health,Health +542905,Health,Health +542902,Health,Health +542901,Health,Health +542773,Budget,Budget +542773,Economic Development,Economic Development +542772,Economic Development,Economic Development +529195,Economic Development,Economic Development +529172,Economic Development,Economic Development +542780,Economic Development,Economic Development +515894,Health,Health +515893,Health,Health +538294,Health,Health +538292,Health,Health +538289,Health,Health +538286,Health,Health +538282,Health,Health +534602,Health,Health +529585,Health,Health +529584,Health,Health +529583,Health,Health +526687,Health,Health +526686,Health,Health +526685,Health,Health +519915,Health,Health +528010,Taxation and Finance,Taxation and Finance +524687,Taxation and Finance,Taxation and Finance +542887,Taxation and Finance,Taxation and Finance +542886,Taxation and Finance,Taxation and Finance +539023,Taxation and Finance,Taxation and Finance +528022,Taxation and Finance,Taxation and Finance +528018,Taxation and Finance,Taxation and Finance +517763,Natural Resources,Natural Resources +514697,Natural Resources,Natural Resources +539148,Natural Resources,Natural Resources +534765,Natural Resources,Natural Resources +534761,Natural Resources,Natural Resources +534760,Natural Resources,Natural Resources +534755,Natural Resources,Natural Resources +534748,Natural Resources,Natural Resources +534746,Natural Resources,Natural Resources +534671,Natural Resources,Natural Resources +534667,Natural Resources,Natural Resources +534664,Natural Resources,Natural Resources +534656,Natural Resources,Natural Resources +534528,Natural Resources,Natural Resources +534524,Natural Resources,Natural Resources +534501,Natural Resources,Natural Resources +531538,Natural Resources,Natural Resources +531537,Natural Resources,Natural Resources +529102,Natural Resources,Natural Resources +529094,Natural Resources,Natural Resources +529078,Natural Resources,Natural Resources +529071,Natural Resources,Natural Resources +529069,Natural Resources,Natural Resources +529066,Natural Resources,Natural Resources +525642,Natural Resources,Natural Resources +530652,Infrastructure,Infrastructure +516727,Infrastructure,Infrastructure +516089,Economic Development,Economic Development +523450,Transportation,Transportation +516089,Transportation,Transportation +529781,Transportation,Transportation +527317,Transportation,Transportation +523450,Industry,Industry +516089,Industry,Industry +515358,Employment and Training,Employment and Training +515357,Employment and Training,Employment and Training +543837,Employment and Training,Employment and Training +541528,Employment and Training,Employment and Training +541527,Employment and Training,Employment and Training +539669,Employment and Training,Employment and Training +537425,Employment and Training,Employment and Training +537424,Employment and Training,Employment and Training +537421,Employment and Training,Employment and Training +537419,Employment and Training,Employment and Training +533745,Employment and Training,Employment and Training +531524,Employment and Training,Employment and Training +531519,Employment and Training,Employment and Training +528794,Employment and Training,Employment and Training +528596,Employment and Training,Employment and Training +528594,Employment and Training,Employment and Training +528591,Employment and Training,Employment and Training +528588,Employment and Training,Employment and Training +528584,Employment and Training,Employment and Training +526039,Employment and Training,Employment and Training +526036,Employment and Training,Employment and Training +515358,Budget,Budget +515357,Budget,Budget +543837,Budget,Budget +517291,Justice and Law Enforcement,Justice and Law Enforcement +517288,Justice and Law Enforcement,Justice and Law Enforcement +514879,Justice and Law Enforcement,Justice and Law Enforcement +521983,Justice and Law Enforcement,Justice and Law Enforcement +521980,Justice and Law Enforcement,Justice and Law Enforcement +521975,Justice and Law Enforcement,Justice and Law Enforcement +521974,Justice and Law Enforcement,Justice and Law Enforcement +521968,Justice and Law Enforcement,Justice and Law Enforcement +521963,Justice and Law Enforcement,Justice and Law Enforcement +521962,Justice and Law Enforcement,Justice and Law Enforcement +521961,Justice and Law Enforcement,Justice and Law Enforcement +521960,Justice and Law Enforcement,Justice and Law Enforcement +521959,Justice and Law Enforcement,Justice and Law Enforcement +519652,Justice and Law Enforcement,Justice and Law Enforcement +519651,Justice and Law Enforcement,Justice and Law Enforcement +519648,Justice and Law Enforcement,Justice and Law Enforcement +515357,Health,Health +514879,Health,Health +543837,Health,Health +541528,Health,Health +541527,Health,Health +539669,Health,Health +537425,Health,Health +537424,Health,Health +537421,Health,Health +537419,Health,Health +533745,Health,Health +531524,Health,Health +531519,Health,Health +528794,Health,Health +528596,Health,Health +528594,Health,Health +528591,Health,Health +528588,Health,Health +528584,Health,Health +526039,Health,Health +526036,Health,Health +526034,Health,Health +521990,Health,Health +521988,Health,Health +521987,Health,Health +521983,Health,Health +521980,Health,Health +521977,Health,Health +521975,Health,Health +521974,Health,Health +521968,Health,Health +521966,Health,Health +521963,Health,Health +521962,Health,Health +521961,Health,Health +521960,Health,Health +521959,Health,Health +519652,Health,Health +519651,Health,Health +519648,Health,Health +517292,Health,Health +517291,Health,Health +517288,Health,Health +517247,Health,Health +516275,Education,Education +516274,Education,Education +527352,Education,Education +523850,Education,Education +520783,Education,Education +518654,Education,Education +518653,Education,Education +518652,Education,Education +518651,Education,Education +516277,Education,Education +516275,Consumer Issues,Consumer Issues +516274,Consumer Issues,Consumer Issues +516277,Consumer Issues,Consumer Issues +534732,Transportation,Transportation +527728,Transportation,Transportation +542239,Transportation,Transportation +540544,Transportation,Transportation +524023,Justice and Law Enforcement,Justice and Law Enforcement +516114,Justice and Law Enforcement,Justice and Law Enforcement +542239,Justice and Law Enforcement,Justice and Law Enforcement +540763,Justice and Law Enforcement,Justice and Law Enforcement +540519,Justice and Law Enforcement,Justice and Law Enforcement +536079,Justice and Law Enforcement,Justice and Law Enforcement +535335,Justice and Law Enforcement,Justice and Law Enforcement +527728,Justice and Law Enforcement,Justice and Law Enforcement +540544,International Relations,International Relations +539010,International Relations,International Relations +536079,International Relations,International Relations +535335,International Relations,International Relations +534732,International Relations,International Relations +532736,International Relations,International Relations +527728,International Relations,International Relations +524481,International Relations,International Relations +524136,International Relations,International Relations +524023,International Relations,International Relations +516114,International Relations,International Relations +524481,Security,Security +524023,Security,Security +516114,Security,Security +542239,Security,Security +540763,Security,Security +540544,Security,Security +540519,Security,Security +536079,Security,Security +535335,Security,Security +534732,Security,Security +516965,Energy,Energy +516965,Regional Development,Regional Development +514409,Economic Development,Développement économique +514408,Economic Development,Développement économique +537413,Health,Health +517297,Health,Health +543440,Health,Health +541524,Health,Health +541523,Employment and Training,Employment and Training +537413,Employment and Training,Employment and Training +543440,Employment and Training,Employment and Training +538308,Mining,Mining +515838,Mining,Mining +540200,Mining,Mining +538342,Mining,Mining +538327,Mining,Mining +538321,Mining,Mining +538316,Mining,Mining +516120,Employment and Training,Employment and Training +516120,Energy,Energy +516120,Mining,Mining +514471,Labour,Travail +514470,Labour,Travail +516056,Labour,Travail +516055,Labour,Travail +514910,Labour,Travail +514473,Labour,Travail +515596,Government Procurement,Government Procurement +514657,Government Procurement,Government Procurement +523167,Government Procurement,Government Procurement +518220,Government Procurement,Government Procurement +515610,Government Procurement,Government Procurement +515609,Government Procurement,Government Procurement +515608,Government Procurement,Government Procurement +519310,Sports,Sports +519263,Sports,Sports +543116,Sports,Sports +543114,Sports,Sports +543113,Sports,Sports +540792,Sports,Sports +540791,Sports,Sports +540790,Sports,Sports +540788,Sports,Sports +539425,Sports,Sports +539424,Sports,Sports +539423,Sports,Sports +537341,Sports,Sports +537337,Sports,Sports +533530,Sports,Sports +533524,Sports,Sports +533520,Sports,Sports +531044,Sports,Sports +531043,Sports,Sports +531042,Sports,Sports +531041,Sports,Sports +531040,Sports,Sports +524891,Sports,Sports +524890,Sports,Sports +524864,Sports,Sports +524567,Sports,Sports +521610,Sports,Sports +521607,Sports,Sports +521597,Sports,Sports +514850,Research and Development,Recherche et développement +514411,Research and Development,Recherche et développement +516995,Research and Development,Recherche et développement +516469,Research and Development,Recherche et développement +523393,Government Procurement,Government Procurement +523391,Government Procurement,Government Procurement +523401,Government Procurement,Government Procurement +517704,Climate,Climate +517696,Climate,Climate +542645,Climate,Climate +542641,Climate,Climate +542640,Climate,Climate +542635,Climate,Climate +540874,Climate,Climate +540873,Climate,Climate +540868,Climate,Climate +540866,Climate,Climate +540864,Climate,Climate +537947,Climate,Climate +537946,Climate,Climate +537943,Climate,Climate +537941,Climate,Climate +537887,Climate,Climate +535234,Climate,Climate +535225,Climate,Climate +535220,Climate,Climate +535218,Climate,Climate +531782,Climate,Climate +531641,Climate,Climate +531640,Climate,Climate +531639,Climate,Climate +531637,Climate,Climate +531636,Climate,Climate +531635,Climate,Climate +531634,Climate,Climate +531631,Climate,Climate +528371,Climate,Climate +528369,Climate,Climate +528367,Climate,Climate +528365,Climate,Climate +528363,Climate,Climate +528356,Climate,Climate +528353,Climate,Climate +528351,Climate,Climate +528350,Climate,Climate +528349,Climate,Climate +528344,Climate,Climate +525279,Climate,Climate +525278,Climate,Climate +525277,Climate,Climate +525276,Climate,Climate +525275,Climate,Climate +525274,Climate,Climate +525273,Climate,Climate +525272,Climate,Climate +525271,Climate,Climate +525269,Climate,Climate +525268,Climate,Climate +525267,Climate,Climate +525266,Climate,Climate +525265,Climate,Climate +525264,Climate,Climate +525263,Climate,Climate +525262,Climate,Climate +525261,Climate,Climate +525260,Climate,Climate +525259,Climate,Climate +525258,Climate,Climate +525257,Climate,Climate +521443,Climate,Climate +521442,Climate,Climate +521437,Climate,Climate +518922,Climate,Climate +517713,Climate,Climate +517710,Climate,Climate +517709,Climate,Climate +517708,Climate,Climate +517707,Climate,Climate +517705,International Relations,International Relations +515546,International Relations,International Relations +542644,International Relations,International Relations +542643,International Relations,International Relations +542642,International Relations,International Relations +542635,International Relations,International Relations +542634,International Relations,International Relations +540871,International Relations,International Relations +537955,International Relations,International Relations +537951,International Relations,International Relations +537948,International Relations,International Relations +537940,International Relations,International Relations +537890,International Relations,International Relations +537886,International Relations,International Relations +535248,International Relations,International Relations +535217,International Relations,International Relations +535063,International Relations,International Relations +534874,International Relations,International Relations +531782,International Relations,International Relations +528353,International Relations,International Relations +525270,International Relations,International Relations +521440,International Relations,International Relations +517708,Research and Development,Research and Development +517704,Research and Development,Research and Development +542646,Research and Development,Research and Development +542645,Research and Development,Research and Development +542644,Research and Development,Research and Development +542640,Research and Development,Research and Development +542639,Research and Development,Research and Development +542636,Research and Development,Research and Development +542635,Research and Development,Research and Development +540875,Research and Development,Research and Development +540868,Research and Development,Research and Development +537947,Research and Development,Research and Development +537946,Research and Development,Research and Development +537893,Research and Development,Research and Development +537887,Research and Development,Research and Development +535218,Research and Development,Research and Development +531796,Research and Development,Research and Development +531782,Research and Development,Research and Development +531641,Research and Development,Research and Development +531639,Research and Development,Research and Development +531634,Research and Development,Research and Development +531631,Research and Development,Research and Development +528371,Research and Development,Research and Development +528363,Research and Development,Research and Development +528356,Research and Development,Research and Development +528352,Research and Development,Research and Development +521442,Research and Development,Research and Development +537946,Taxation and Finance,Taxation and Finance +537943,Taxation and Finance,Taxation and Finance +535242,Taxation and Finance,Taxation and Finance +531782,Taxation and Finance,Taxation and Finance +525274,Taxation and Finance,Taxation and Finance +525258,Taxation and Finance,Taxation and Finance +542635,Taxation and Finance,Taxation and Finance +539256,Transportation,Transportation +537948,Transportation,Transportation +531640,Transportation,Transportation +531639,Transportation,Transportation +528361,Transportation,Transportation +528359,Transportation,Transportation +528353,Transportation,Transportation +521443,Transportation,Transportation +521442,Transportation,Transportation +517708,Transportation,Transportation +542644,Transportation,Transportation +542643,Transportation,Transportation +542641,Transportation,Transportation +542639,Transportation,Transportation +540865,Transportation,Transportation +540864,Transportation,Transportation +539262,Transportation,Transportation +539260,Transportation,Transportation +539259,Transportation,Transportation +516232,Consumer Issues,Consumer Issues +515018,Consumer Issues,Consumer Issues +538806,Consumer Issues,Consumer Issues +528272,Consumer Issues,Consumer Issues +527693,Consumer Issues,Consumer Issues +520603,Consumer Issues,Consumer Issues +516845,Consumer Issues,Consumer Issues +516232,Financial Institutions,Financial Institutions +515018,Financial Institutions,Financial Institutions +538806,Financial Institutions,Financial Institutions +532101,Financial Institutions,Financial Institutions +528272,Financial Institutions,Financial Institutions +527693,Financial Institutions,Financial Institutions +520603,Financial Institutions,Financial Institutions +516845,Financial Institutions,Financial Institutions +532101,Industry,Industry +528272,Industry,Industry +516232,Privacy and Access to Information,Privacy and Access to Information +515018,Privacy and Access to Information,Privacy and Access to Information +517424,Energy,Energy +515829,Energy,Energy +519706,Environment,Environment +519706,Energy,Energy +519706,Economic Development,Economic Development +521158,Small Business,Small Business +521158,Regional Development,Regional Development +521158,Health,Health +521158,Industry,Industry +521167,Small Business,Small Business +523771,Industry,Industry +523569,Climate,Climate +520720,Climate,Climate +524713,Climate,Climate +523569,Energy,Energy +520720,Energy,Energy +524713,Energy,Energy +523569,Environment,Environment +520720,Environment,Environment +524713,Environment,Environment +523876,Federal-Provincial Relations,Federal-Provincial Relations +520720,Federal-Provincial Relations,Federal-Provincial Relations +523876,Fisheries,Fisheries +523569,Fisheries,Fisheries +520720,Fisheries,Fisheries +523876,Industry,Industry +520720,Industry,Industry +523569,Natural Resources,Natural Resources +520720,Natural Resources,Natural Resources +524713,Natural Resources,Natural Resources +524802,Environment,Environment +521455,Environment,Environment +541342,Environment,Environment +541341,Environment,Environment +539889,Environment,Environment +539878,Environment,Environment +519055,International Trade,International Trade +514608,Economic Development,Développement économique +514993,Environment,Environment +514550,Environment,Environment +532803,Environment,Environment +524440,Environment,Environment +523404,Environment,Environment +520900,Environment,Environment +527330,Climate,Climate +527329,Climate,Climate +526355,Health,Health +514529,Health,Health +538427,Health,Health +535210,Health,Health +535205,Health,Health +535197,Health,Health +535194,Health,Health +535189,Health,Health +535187,Health,Health +517136,Health,Health +517135,Health,Health +518728,Health,Health +518727,Health,Health +518035,Health,Health +515679,Housing,Housing +518598,Energy,Energy +518595,Energy,Energy +518598,Environment,Environment +518595,Environment,Environment +518598,Transportation,Transportation +518595,Transportation,Transportation +524902,Economic Development,Développement économique +524872,Economic Development,Développement économique +525145,Economic Development,Développement économique +529193,Climate,Climate +525488,Climate,Climate +519410,Climate,Climate +519400,Climate,Climate +517260,Climate,Climate +534492,Climate,Climate +532676,Climate,Climate +534492,Economic Development,Economic Development +532676,Economic Development,Economic Development +529198,Economic Development,Economic Development +529193,Economic Development,Economic Development +525488,Economic Development,Economic Development +525484,Economic Development,Economic Development +522348,Economic Development,Economic Development +519410,Economic Development,Economic Development +519400,Economic Development,Economic Development +519400,Energy,Energy +517260,Energy,Energy +535903,Energy,Energy +534492,Energy,Energy +532676,Energy,Energy +529198,Energy,Energy +525488,Energy,Energy +525484,Energy,Energy +522348,Energy,Energy +535903,Environment,Environment +529198,Environment,Environment +525484,Environment,Environment +522348,Environment,Environment +529198,Industry,Industry +529193,Industry,Industry +535903,Industry,Industry +519410,International Trade,International Trade +519400,International Trade,International Trade +535903,International Trade,International Trade +534492,International Trade,International Trade +529198,International Trade,International Trade +525488,International Trade,International Trade +525484,International Trade,International Trade +519410,Natural Resources,Natural Resources +519400,Natural Resources,Natural Resources +535903,Natural Resources,Natural Resources +534492,Natural Resources,Natural Resources +529198,Natural Resources,Natural Resources +525488,Natural Resources,Natural Resources +525484,Natural Resources,Natural Resources +525216,Industry,Industry +523392,Industry,Industry +525219,Industry,Industry +525218,Industry,Industry +515017,Climate,Climate +515017,Energy,Energy +515016,Energy,Energy +515016,Environment,Environment +523989,Environment,Environment +516408,Natural Resources,Natural Resources +515016,Natural Resources,Natural Resources +544136,Health,Health +544135,Health,Health +544136,Research and Development,Research and Development +544135,Research and Development,Research and Development +526039,Federal-Provincial Relations,Federal-Provincial Relations +514879,Federal-Provincial Relations,Federal-Provincial Relations +543837,Federal-Provincial Relations,Federal-Provincial Relations +541528,Federal-Provincial Relations,Federal-Provincial Relations +541527,Federal-Provincial Relations,Federal-Provincial Relations +539669,Federal-Provincial Relations,Federal-Provincial Relations +537425,Federal-Provincial Relations,Federal-Provincial Relations +537424,Federal-Provincial Relations,Federal-Provincial Relations +537421,Federal-Provincial Relations,Federal-Provincial Relations +537419,Federal-Provincial Relations,Federal-Provincial Relations +533745,Federal-Provincial Relations,Federal-Provincial Relations +531524,Federal-Provincial Relations,Federal-Provincial Relations +531519,Federal-Provincial Relations,Federal-Provincial Relations +528794,Federal-Provincial Relations,Federal-Provincial Relations +528596,Federal-Provincial Relations,Federal-Provincial Relations +528594,Federal-Provincial Relations,Federal-Provincial Relations +528591,Federal-Provincial Relations,Federal-Provincial Relations +528588,Federal-Provincial Relations,Federal-Provincial Relations +532881,Agriculture,Agriculture +522636,Research and Development,Research and Development +539813,Economic Development,Economic Development +524942,Economic Development,Economic Development +516430,Taxation and Finance,Taxation and Finance +515386,Taxation and Finance,Taxation and Finance +541884,Taxation and Finance,Taxation and Finance +524939,Taxation and Finance,Taxation and Finance +524565,Taxation and Finance,Taxation and Finance +523872,Taxation and Finance,Taxation and Finance +523389,Taxation and Finance,Taxation and Finance +522634,Taxation and Finance,Taxation and Finance +520893,Taxation and Finance,Taxation and Finance +520614,Taxation and Finance,Taxation and Finance +520425,Taxation and Finance,Taxation and Finance +520380,Taxation and Finance,Taxation and Finance +517271,Taxation and Finance,Taxation and Finance +514892,Transportation,Transports +527085,Animal Welfare,Animal Welfare +520735,Animal Welfare,Animal Welfare +544624,Animal Welfare,Animal Welfare +544623,Animal Welfare,Animal Welfare +542574,Animal Welfare,Animal Welfare +542573,Animal Welfare,Animal Welfare +541191,Animal Welfare,Animal Welfare +541190,Animal Welfare,Animal Welfare +541187,Animal Welfare,Animal Welfare +536063,Animal Welfare,Animal Welfare +533299,Animal Welfare,Animal Welfare +531336,Animal Welfare,Animal Welfare +530684,Animal Welfare,Animal Welfare +529978,Animal Welfare,Animal Welfare +529301,Animal Welfare,Animal Welfare +527800,Animal Welfare,Animal Welfare +527798,Animal Welfare,Animal Welfare +527797,Animal Welfare,Animal Welfare +517308,Taxation and Finance,Taxation and Finance +523828,Official Languages,Bilingualism/Official Languages +524019,Infrastructure,Infrastructure +538474,Government Procurement,Government Procurement +518324,Industry,Industry +515927,Industry,Industry +538489,Industry,Industry +538484,Industry,Industry +538481,Industry,Industry +538474,Industry,Industry +535801,Industry,Industry +535796,Industry,Industry +535795,Industry,Industry +535794,Industry,Industry +535792,Industry,Industry +526574,Industry,Industry +526571,Industry,Industry +526570,Industry,Industry +516506,Employment and Training,Employment and Training +516505,Employment and Training,Employment and Training +539940,Employment and Training,Employment and Training +516505,Housing,Housing +539940,Housing,Housing +532689,Housing,Housing +524370,Housing,Housing +519198,Housing,Housing +516506,Taxation and Finance,Taxation and Finance +516505,Taxation and Finance,Taxation and Finance +516761,Tourism,Tourisme +514982,Tourism,Tourisme +526954,Tourism,Tourisme +522314,Tourism,Tourisme +522308,Tourism,Tourisme +515651,Media,Media +514983,Media,Media +524717,Media,Media +521673,Media,Media +521671,Media,Media +529788,Health,Health +529788,Privacy and Access to Information,Privacy and Access to Information +519454,Government Procurement,Government Procurement +520777,Child Services,Child Services +520776,Child Services,Child Services +520777,Health,Health +520776,Health,Health +529426,Health,Health +529425,Health,Health +520777,Housing,Housing +520776,Housing,Housing +529426,Housing,Housing +529425,Housing,Housing +520777,Infrastructure,Infrastructure +520776,Infrastructure,Infrastructure +529426,Infrastructure,Infrastructure +529425,Infrastructure,Infrastructure +529424,Infrastructure,Infrastructure +529423,Infrastructure,Infrastructure +518730,Transportation,Transportation +516438,Transportation,Transportation +520575,Transportation,Transportation +532999,Environment,Environment +527366,Environment,Environment +540590,Environment,Environment +535574,Intellectual Property,Intellectual Property +520683,International Trade,International Trade +520294,International Trade,International Trade +527269,International Trade,International Trade +520683,Taxation and Finance,Taxation and Finance +520294,Taxation and Finance,Taxation and Finance +515092,Health,Health +516113,Taxation and Finance,Impôts et finances +516010,Climate,Climate +516009,Climate,Climate +526729,Climate,Climate +524686,Climate,Climate +519205,Climate,Climate +516010,Economic Development,Economic Development +516009,Economic Development,Economic Development +526729,Economic Development,Economic Development +524686,Economic Development,Economic Development +519205,Economic Development,Economic Development +516010,Employment and Training,Employment and Training +516009,Employment and Training,Employment and Training +524686,Employment and Training,Employment and Training +519205,Employment and Training,Employment and Training +516009,Energy,Energy +516010,Environment,Environment +516009,Environment,Environment +526729,Environment,Environment +524686,Environment,Environment +516010,Industry,Industry +516009,Industry,Industry +526729,Industry,Industry +524686,Industry,Industry +519205,Industry,Industry +517046,Infrastructure,Infrastructure +516010,Infrastructure,Infrastructure +519205,Labour,Labour +516010,Labour,Labour +516010,Mining,Mining +516009,Mining,Mining +526729,Mining,Mining +524686,Mining,Mining +519205,Mining,Mining +526729,Natural Resources,Natural Resources +524686,Natural Resources,Natural Resources +519205,Natural Resources,Natural Resources +517046,Natural Resources,Natural Resources +516010,Natural Resources,Natural Resources +516010,Transportation,Transportation +516009,Transportation,Transportation +526729,Transportation,Transportation +524686,Transportation,Transportation +519205,Transportation,Transportation +521925,Constitutional Issues,Constitutional Issues +524439,Industry,Industry +530136,International Development,International Development +518936,International Development,International Development +544279,International Development,International Development +544278,International Development,International Development +544277,International Development,International Development +544275,International Development,International Development +544273,International Development,International Development +542011,International Development,International Development +540131,International Development,International Development +537949,International Development,International Development +537942,International Development,International Development +534967,International Development,International Development +534965,International Development,International Development +534963,International Development,International Development +534960,International Development,International Development +530138,International Development,International Development +517171,Economic Development,Economic Development +517171,Natural Resources,Natural Resources +517171,Environment,Environment +517171,Climate,Climate +517171,Industry,Industry +517171,Mining,Mining +515614,Budget,Budget +515192,Budget,Budget +530729,Budget,Budget +530449,Budget,Budget +530117,Budget,Budget +530116,Budget,Budget +518574,Budget,Budget +515614,Climate,Climate +515192,Climate,Climate +530729,Climate,Climate +530450,Climate,Climate +530449,Climate,Climate +518574,Climate,Climate +530116,Economic Development,Economic Development +518574,Economic Development,Economic Development +530450,Economic Development,Economic Development +516204,Environment,Environment +515614,Environment,Environment +530729,Environment,Environment +530450,Environment,Environment +530449,Environment,Environment +530117,Environment,Environment +515614,Federal-Provincial Relations,Federal-Provincial Relations +515192,Federal-Provincial Relations,Federal-Provincial Relations +530729,Federal-Provincial Relations,Federal-Provincial Relations +530450,Federal-Provincial Relations,Federal-Provincial Relations +530449,Federal-Provincial Relations,Federal-Provincial Relations +530117,Federal-Provincial Relations,Federal-Provincial Relations +518574,Federal-Provincial Relations,Federal-Provincial Relations +515614,Forestry,Forestry +515192,Forestry,Forestry +530729,Forestry,Forestry +530449,Forestry,Forestry +530117,Forestry,Forestry +530116,Forestry,Forestry +518574,Forestry,Forestry +530117,Natural Resources,Natural Resources +530116,Natural Resources,Natural Resources +518574,Natural Resources,Natural Resources +516204,Natural Resources,Natural Resources +515614,Natural Resources,Natural Resources +515192,Natural Resources,Natural Resources +515614,Regional Development,Regional Development +515192,Regional Development,Regional Development +530729,Regional Development,Regional Development +530450,Regional Development,Regional Development +530116,Regional Development,Regional Development +518574,Regional Development,Regional Development +518183,Consumer Issues,Consumer Issues +518183,Taxation and Finance,Taxation and Finance +517559,Environment,Environment +517439,Environment,Environment +515227,Environment,Environment +526254,Environment,Environment +526230,Environment,Environment +521582,Environment,Environment +521581,Environment,Environment +521580,Environment,Environment +521579,Environment,Environment +521578,Environment,Environment +521577,Environment,Environment +521576,Environment,Environment +517575,Environment,Environment +517571,Environment,Environment +534030,International Relations,International Relations +534028,International Relations,International Relations +526254,International Relations,International Relations +517575,International Relations,International Relations +517571,International Relations,International Relations +517566,International Relations,International Relations +517559,International Relations,International Relations +517439,International Relations,International Relations +515229,International Relations,International Relations +543497,International Relations,International Relations +541803,International Relations,International Relations +518356,Employment and Training,Employment and Training +518353,Employment and Training,Employment and Training +524257,Employment and Training,Employment and Training +518919,Industry,Industry +515546,Industry,Industry +542646,Industry,Industry +542645,Industry,Industry +542644,Industry,Industry +542643,Industry,Industry +542642,Industry,Industry +542641,Industry,Industry +542640,Industry,Industry +542637,Industry,Industry +542635,Industry,Industry +542634,Industry,Industry +540873,Industry,Industry +540872,Industry,Industry +523989,Climate,Climate +523989,Energy,Energy +515017,Environment,Environment +516408,Industry,Industry +523989,Natural Resources,Natural Resources +531527,Intellectual Property,Intellectual Property +521944,Justice and Law Enforcement,Justice and Law Enforcement +521944,Privacy and Access to Information,Privacy and Access to Information +525544,Employment and Training,Employment and Training +525544,Immigration,Immigration +544137,Health,Health +544137,Research and Development,Research and Development +515064,Economic Development,Développement économique +515064,Industry,Industrie +514877,Elections,Elections +528584,Federal-Provincial Relations,Federal-Provincial Relations +532882,Agriculture,Agriculture +532882,Environment,Environment +532881,International Trade,International Trade +532881,Labour,Labour +526982,Research and Development,Research and Development +539815,Economic Development,Economic Development +539813,Industry,Industry +516479,Taxation and Finance,Taxation and Finance +514893,Transportation,Transports +527086,Animal Welfare,Animal Welfare +517308,Energy,Energy +520524,Taxation and Finance,Taxation and Finance +526712,Official Languages,Bilingualism/Official Languages +516069,Government Procurement,Government Procurement +532547,Infrastructure,Infrastructure +524019,Housing,Housing +515926,Defence,Defence +538481,Government Procurement,Government Procurement +518328,Industry,Industry +540219,Budget,Budget +539940,Education,Education +519198,Employment and Training,Employment and Training +516506,Housing,Housing +519198,Taxation and Finance,Taxation and Finance +521614,Economic Development,Economic Development +520459,Municipalities,Municipalités +518591,Tourism,Tourisme +532661,Energy,Energy +514949,Labour,Labour +514949,Taxation and Finance,Taxation and Finance +516574,Media,Media +514987,Tourism,Tourisme +537714,Health,Health +537714,Privacy and Access to Information,Privacy and Access to Information +520261,Government Procurement,Government Procurement +537297,Health,Health +530468,Infrastructure,Infrastructure +520779,Child Services,Child Services +520779,Health,Health +520779,Housing,Housing +520778,Infrastructure,Infrastructure +515029,Federal-Provincial Relations,Federal-Provincial Relations +515029,Municipalities,Municipalities +516438,Energy,Energy +520573,Industry,Industry +516438,Infrastructure,Infrastructure +520573,Transportation,Transportation +516364,Federal-Provincial Relations,Federal-Provincial Relations +516364,Health,Health +516309,Research and Development,Research and Development +527366,Consumer Issues,Consumer Issues +535574,Environment,Environment +540590,Intellectual Property,Intellectual Property +521621,International Trade,International Trade +527269,Taxation and Finance,Taxation and Finance +522929,Financial Institutions,Financial Institutions +522929,Taxation and Finance,Taxation and Finance +523567,Health,Health +523567,Industry,Industry +516116,Taxation and Finance,Impôts et finances +517046,Climate,Climate +517046,Economic Development,Economic Development +517046,Employment and Training,Employment and Training +516010,Energy,Energy +519205,Environment,Environment +517046,Industry,Industry +524686,Infrastructure,Infrastructure +524686,Labour,Labour +517046,Mining,Mining +516009,Natural Resources,Natural Resources +517046,Transportation,Transportation +531239,Constitutional Issues,Constitutional Issues +539917,Consumer Issues,Consumer Issues +536896,Justice and Law Enforcement,Justice and Law Enforcement +526830,Industry,Industry +530137,International Development,International Development +517174,Economic Development,Economic Development +517174,Energy,Energy +517174,Natural Resources,Natural Resources +517174,Environment,Environment +517171,Transportation,Transportation +517174,Climate,Climate +517174,Employment and Training,Employment and Training +517174,Industry,Industry +517174,Mining,Mining +515177,Financial Institutions,Financial Institutions +515175,Financial Institutions,Financial Institutions +516204,Budget,Budget +516204,Climate,Climate +530449,Economic Development,Economic Development +518574,Environment,Environment +516204,Federal-Provincial Relations,Federal-Provincial Relations +516204,Forestry,Forestry +530729,Natural Resources,Natural Resources +516204,Regional Development,Regional Development +520661,Economic Development,Economic Development +515181,Health,Health +526390,Budget,Budget +526390,Consumer Issues,Consumer Issues +526390,Economic Development,Economic Development +526390,Industry,Industry +526390,Small Business,Small Business +526390,Taxation and Finance,Taxation and Finance +535372,Economic Development,Economic Development +535372,Industry,Industry +517821,Health,Health +517821,Research and Development,Research and Development +517566,Environment,Environment +534031,International Relations,International Relations +525220,Consumer Issues,Consumer Issues +525220,Economic Development,Economic Development +525220,Health,Health +525220,Taxation and Finance,Taxation and Finance +515242,International Relations,International Relations +535495,Industry,Industry +535495,Economic Development,Economic Development +516383,Climate,Climate +516383,Environment,Environment +516383,Natural Resources,Natural Resources +515421,Climate,Climate +515421,Economic Development,Economic Development +524697,Environment,Environment +518739,Employment and Training,Employment and Training +532127,Climate,Climate +532127,Industry,Industry +517809,Foreign Affairs,Foreign Affairs +517809,International Trade,International Trade +515539,Climate,Climate +515539,Industry,Industry +515539,International Relations,International Relations +515540,Climate,Climate +515540,Industry,Industry +515540,International Relations,International Relations +515540,Research and Development,Research and Development +515541,Climate,Climate +515541,Industry,Industry +515541,International Relations,International Relations +515541,Research and Development,Research and Development +515544,Climate,Climate +515544,Industry,Industry +515544,Internal Trade,Internal Trade +515544,International Relations,International Relations +515544,Research and Development,Research and Development +518920,Industry,Industry +515548,Climate,Climate +515550,Industry,Industry +515550,International Relations,International Relations +515549,Foreign Affairs,Foreign Affairs +515554,Foreign Affairs,Foreign Affairs +524584,Energy,Energy +524584,Environment,Environment +524584,Federal-Provincial Relations,Federal-Provincial Relations +516021,Health,Health +515590,Health,Health +515591,Health,Health +516876,Housing,Housing +529029,Employment and Training,Employment and Training +515712,Employment and Training,Employment and Training +515725,Environment,Environment +515750,Foreign Affairs,Foreign Affairs +515752,Foreign Affairs,Foreign Affairs +515753,Foreign Affairs,Foreign Affairs +515755,Foreign Affairs,Foreign Affairs +515756,Foreign Affairs,Foreign Affairs +518532,Foreign Affairs,Foreign Affairs +522098,Health,Health +529692,Climate,Climate +515830,Labour,Labour +519327,Labour,Travail +515905,Taxation and Finance,Taxation and Finance +524679,Budget,Budget +518300,Education,Education +518304,Environment,Environment +533748,Immigration,Immigration +518304,Research and Development,Research and Development +515973,Federal-Provincial Relations,Federal-Provincial Relations +529997,Economic Development,Economic Development +529997,Environment,Environment +533708,Housing,Housing +531418,Industry,Industry +533708,Infrastructure,Infrastructure +533708,Municipalities,Municipalities +533708,Regional Development,Regional Development +529997,Research and Development,Research and Development +533708,Transportation,Transportation +517827,Foreign Affairs,Foreign Affairs +517827,International Trade,International Trade +521160,Transportation,Transports +525416,Industry,Industry +532138,Consumer Issues,Consumer Issues +529688,Environment,Environment +529688,Municipalities,Municipalities +516278,Government Procurement,Government Procurement +523676,Budget,Budget +532828,Industry,Industry +536897,Intellectual Property,Intellectual Property +532828,Research and Development,Research and Development +526843,Economic Development,Economic Development +526843,Health,Health +526843,Regional Development,Regional Development +520362,Natural Resources,Natural Resources +538835,Employment and Training,Employment and Training +520362,Environment,Environment +520362,Infrastructure,Infrastructure +520362,Climate,Climate +520362,Regional Development,Regional Development +520650,Energy,Energy +517414,Industry,Industry +520650,Federal-Provincial Relations,Federal-Provincial Relations +520362,Internal Trade,Internal Trade +520650,Economic Development,Economic Development +520362,Transportation,Transportation +520362,International Trade,International Trade +524922,Economic Development,Economic Development +516606,Energy,Energy +518513,Environment,Environment +532590,Fisheries,Fisheries +516096,Taxation and Finance,Taxation and Finance +520493,Consumer Issues,Consumer Issues +520493,Health,Health +520493,Tourism,Tourism +520493,Transportation,Transportation +524117,Economic Development,Economic Development +524117,International Trade,International Trade +524117,Small Business,Small Business +520641,Industry,Industry +526316,Economic Development,Economic Development +516231,Industry,Industry +537058,Environment,Environment +516186,International Development,International Development +526783,Economic Development,Développement économique +524791,Environment,Environment +524792,Mining,Mining +524792,Natural Resources,Natural Resources +519363,Infrastructure,Infrastructure +524792,Transportation,Transportation +519363,Employment and Training,Employment and Training +524791,Industry,Industry +516139,Labour,Labour +519363,Energy,Energy +524791,Climate,Climate +519363,Economic Development,Economic Development +530255,Economic Development,Développement économique +530255,Research and Development,Recherche et développement +526872,Taxation and Finance,Taxation and Finance +518499,Housing,Housing +521046,Climate,Climate +521042,Economic Development,Economic Development +521046,Transportation,Transportation +521046,Natural Resources,Natural Resources +521046,Energy,Energy +521046,Environment,Environment +518437,Economic Development,Développement économique +544935,Economic Development,Economic Development +544935,Research and Development,Research and Development +516608,Tourism,Tourism +523965,Taxation and Finance,Taxation and Finance +516538,Research and Development,Research and Development +516074,Housing,Housing +516689,Government Procurement,Government Procurement +516689,Housing,Housing +518558,Education,Education +518562,Employment and Training,Employment and Training +516257,Budget,Budget +516258,Infrastructure,Infrastructure +516258,Transportation,Transportation +539809,Employment and Training,Employment and Training +535902,Immigration,Immigration +535902,Labour,Labour +518701,Housing,Housing +518393,Environment,Environment +518393,Employment and Training,Employment and Training +518393,Energy,Energy +518393,Economic Development,Economic Development +516592,Energy,Energy +516592,Environment,Environment +516592,Industry,Industry +516592,Infrastructure,Infrastructure +520745,Internal Trade,Internal Trade +526579,Research and Development,Recherche et développement +516170,Infrastructure,Infrastructure +519527,Taxation and Finance,Taxation and Finance +534832,Economic Development,Economic Development +524160,Environment,Environment +537711,Health,Health +531265,Infrastructure,Infrastructure +534832,Justice and Law Enforcement,Justice and Law Enforcement +524160,Natural Resources,Natural Resources +531265,Regional Development,Regional Development +544974,Taxation and Finance,Taxation and Finance +544975,Economic Development,Economic Development +532221,Agriculture,Agriculture +544974,Employment and Training,Employment and Training +544975,International Trade,International Trade +544974,Industry,Industry +525881,Internal Trade,Internal Trade +545069,Budget,Budget +519161,Health,Health +519155,Official Languages,Bilinguisme/Langues officielles +516605,Transportation,Transportation +523359,Foreign Affairs,Foreign Affairs +523359,Research and Development,Research and Development +523800,Health,Health +538106,Agriculture,Agriculture +535935,Budget,Budget +538106,Consumer Issues,Consumer Issues +541980,Economic Development,Economic Development +518232,Health,Health +529507,Industry,Industry +525639,Taxation and Finance,Taxation and Finance +523665,Privacy and Access to Information,Privacy and Access to Information +526995,Environment,Environment +526995,Infrastructure,Infrastructure +526995,Municipalities,Municipalities +516228,Infrastructure,Infrastructure +516230,Consumer Issues,Consumer Issues +531936,Economic Development,Développement économique +516863,Health,Health +516863,Industry,Industry +516863,Taxation and Finance,Taxation and Finance +516863,Regional Development,Regional Development +516863,Intellectual Property,Intellectual Property +516863,Economic Development,Economic Development +518847,Government Procurement,Government Procurement +516260,Research and Development,Research and Development +533035,Government Procurement,Government Procurement +533035,Infrastructure,Infrastructure +525887,Budget,Budget +540279,International Trade,Commerce international +540279,Defence,Défense +540279,Industry,Industrie +523267,Economic Development,Economic Development +523268,Tourism,Tourism +523268,Transportation,Transportation +523268,Consumer Issues,Consumer Issues +523268,Health,Health +522377,Economic Development,Développement économique +522384,Environment,Environnement +519733,Economic Development,Economic Development +516872,Environment,Environment +516872,Industry,Industry +521519,Research and Development,Research and Development +516278,Health,Health +516293,Health,Health +526595,Government Procurement,Government Procurement +516305,Infrastructure,Infrastructure +516305,Transportation,Transportation +520495,Government Procurement,Government Procurement +520495,International Trade,International Trade +520495,Transportation,Transportation +520495,Industry,Industry +520495,Health,Health +520495,Natural Resources,Natural Resources +524426,Environment,Environment +524069,Agriculture,Agriculture +526820,Health,Health +529701,Natural Resources,Natural Resources +529701,Research and Development,Research and Development +541881,Energy,Energy +541881,Climate,Climate +529701,Environment,Environment +529701,Economic Development,Economic Development +530932,Media,Media +530932,Taxation and Finance,Taxation and Finance +541883,Energy,Energy +541883,Climate,Climate +526073,International Trade,International Trade +523260,Foreign Affairs,Foreign Affairs +523260,Agriculture,Agriculture +525653,Consumer Issues,Consumer Issues +524804,Economic Development,Economic Development +523878,Research and Development,Research and Development +523875,Agriculture,Agriculture +523878,Health,Health +523878,Economic Development,Economic Development +525524,Regional Development,Regional Development +525524,Economic Development,Economic Development +526850,Infrastructure,Infrastructure +526850,Environment,Environment +526850,Tourism,Tourism +540871,Industry,Industry +540868,Industry,Industry +540866,Industry,Industry +540865,Industry,Industry +540864,Industry,Industry +539262,Industry,Industry +539260,Industry,Industry +539259,Industry,Industry +539257,Industry,Industry +539256,Industry,Industry +537953,Industry,Industry +537951,Industry,Industry +537948,Industry,Industry +537947,Industry,Industry +537946,Industry,Industry +537943,Industry,Industry +537941,Industry,Industry +537940,Industry,Industry +537939,Industry,Industry +537937,Industry,Industry +537931,Industry,Industry +537893,Industry,Industry +537890,Industry,Industry +537888,Industry,Industry +537887,Industry,Industry +537886,Industry,Industry +537810,Industry,Industry +535248,Industry,Industry +535247,Industry,Industry +535244,Industry,Industry +535242,Industry,Industry +535239,Industry,Industry +535234,Industry,Industry +535227,Industry,Industry +535225,Industry,Industry +535221,Industry,Industry +535220,Industry,Industry +535218,Industry,Industry +535217,Industry,Industry +535216,Industry,Industry +535063,Industry,Industry +531811,Industry,Industry +531804,Industry,Industry +531796,Industry,Industry +531789,Industry,Industry +531782,Industry,Industry +531641,Industry,Industry +531640,Industry,Industry +531639,Industry,Industry +531638,Industry,Industry +531637,Industry,Industry +531636,Industry,Industry +531635,Industry,Industry +531631,Industry,Industry +528371,Industry,Industry +528369,Industry,Industry +528367,Industry,Industry +528365,Industry,Industry +528363,Industry,Industry +528361,Industry,Industry +528359,Industry,Industry +528356,Industry,Industry +528353,Industry,Industry +528352,Industry,Industry +528351,Industry,Industry +528349,Industry,Industry +528347,Industry,Industry +528346,Industry,Industry +528344,Industry,Industry +525279,Industry,Industry +525278,Industry,Industry +525276,Industry,Industry +525275,Industry,Industry +525274,Industry,Industry +525273,Industry,Industry +525272,Industry,Industry +525271,Industry,Industry +525270,Industry,Industry +525269,Industry,Industry +525268,Industry,Industry +525267,Industry,Industry +525266,Industry,Industry +525265,Industry,Industry +525264,Industry,Industry +525263,Industry,Industry +525262,Industry,Industry +525261,Industry,Industry +525260,Industry,Industry +525259,Industry,Industry +525258,Industry,Industry +525257,Industry,Industry +521445,Industry,Industry +521443,Industry,Industry +521442,Industry,Industry +521441,Industry,Industry +521440,Industry,Industry +521436,Industry,Industry +518966,Industry,Industry +518923,Industry,Industry +518921,Industry,Industry +537120,Foreign Affairs,Foreign Affairs +537119,Foreign Affairs,Foreign Affairs +534954,Foreign Affairs,Foreign Affairs +534951,Foreign Affairs,Foreign Affairs +534949,Foreign Affairs,Foreign Affairs +534933,Foreign Affairs,Foreign Affairs +531136,Foreign Affairs,Foreign Affairs +531127,Foreign Affairs,Foreign Affairs +518991,Foreign Affairs,Foreign Affairs +522338,Energy,Energy +517122,Energy,Energy +531444,Energy,Energy +531441,Energy,Energy +531440,Energy,Energy +528278,Energy,Energy +524596,Energy,Energy +524593,Energy,Energy +524591,Energy,Energy +524590,Energy,Energy +524588,Energy,Energy +524586,Energy,Energy +522338,Environment,Environment +517122,Environment,Environment +531444,Environment,Environment +531441,Environment,Environment +531440,Environment,Environment +528278,Environment,Environment +524596,Environment,Environment +524593,Environment,Environment +524591,Environment,Environment +524590,Environment,Environment +524588,Environment,Environment +524586,Environment,Environment +522338,Federal-Provincial Relations,Federal-Provincial Relations +517122,Federal-Provincial Relations,Federal-Provincial Relations +531444,Federal-Provincial Relations,Federal-Provincial Relations +531441,Federal-Provincial Relations,Federal-Provincial Relations +531440,Federal-Provincial Relations,Federal-Provincial Relations +528278,Federal-Provincial Relations,Federal-Provincial Relations +524596,Federal-Provincial Relations,Federal-Provincial Relations +524593,Federal-Provincial Relations,Federal-Provincial Relations +524591,Federal-Provincial Relations,Federal-Provincial Relations +524590,Federal-Provincial Relations,Federal-Provincial Relations +524588,Federal-Provincial Relations,Federal-Provincial Relations +524586,Federal-Provincial Relations,Federal-Provincial Relations +515998,Health,Health +515589,Health,Health +537216,Health,Health +536360,Health,Health +532438,Health,Health +527059,Health,Health +526803,Health,Health +523541,Health,Health +522803,Health,Health +521111,Health,Health +520677,Health,Health +520491,Health,Health +517049,Health,Health +516285,Health,Health +516237,Health,Health +529028,Employment and Training,Employment and Training +522558,Employment and Training,Employment and Training +522345,Employment and Training,Employment and Training +522342,Employment and Training,Employment and Training +536843,Employment and Training,Employment and Training +531934,Employment and Training,Employment and Training +529042,Employment and Training,Employment and Training +529035,Employment and Training,Employment and Training +529033,Employment and Training,Employment and Training +516201,Foreign Affairs,Foreign Affairs +515757,Foreign Affairs,Foreign Affairs +543182,Foreign Affairs,Foreign Affairs +543142,Foreign Affairs,Foreign Affairs +543141,Foreign Affairs,Foreign Affairs +543140,Foreign Affairs,Foreign Affairs +543138,Foreign Affairs,Foreign Affairs +543137,Foreign Affairs,Foreign Affairs +543136,Foreign Affairs,Foreign Affairs +543135,Foreign Affairs,Foreign Affairs +543134,Foreign Affairs,Foreign Affairs +543132,Foreign Affairs,Foreign Affairs +543130,Foreign Affairs,Foreign Affairs +543051,Foreign Affairs,Foreign Affairs +543049,Foreign Affairs,Foreign Affairs +543046,Foreign Affairs,Foreign Affairs +543042,Foreign Affairs,Foreign Affairs +543041,Foreign Affairs,Foreign Affairs +543038,Foreign Affairs,Foreign Affairs +543037,Foreign Affairs,Foreign Affairs +543035,Foreign Affairs,Foreign Affairs +543034,Foreign Affairs,Foreign Affairs +543032,Foreign Affairs,Foreign Affairs +543030,Foreign Affairs,Foreign Affairs +543029,Foreign Affairs,Foreign Affairs +543027,Foreign Affairs,Foreign Affairs +543026,Foreign Affairs,Foreign Affairs +543025,Foreign Affairs,Foreign Affairs +543024,Foreign Affairs,Foreign Affairs +543023,Foreign Affairs,Foreign Affairs +543022,Foreign Affairs,Foreign Affairs +543021,Foreign Affairs,Foreign Affairs +543020,Foreign Affairs,Foreign Affairs +543019,Foreign Affairs,Foreign Affairs +543018,Foreign Affairs,Foreign Affairs +543017,Foreign Affairs,Foreign Affairs +543015,Foreign Affairs,Foreign Affairs +543014,Foreign Affairs,Foreign Affairs +543011,Foreign Affairs,Foreign Affairs +543010,Foreign Affairs,Foreign Affairs +543006,Foreign Affairs,Foreign Affairs +543003,Foreign Affairs,Foreign Affairs +543002,Foreign Affairs,Foreign Affairs +543001,Foreign Affairs,Foreign Affairs +542999,Foreign Affairs,Foreign Affairs +542998,Foreign Affairs,Foreign Affairs +542997,Foreign Affairs,Foreign Affairs +542996,Foreign Affairs,Foreign Affairs +542995,Foreign Affairs,Foreign Affairs +542994,Foreign Affairs,Foreign Affairs +542993,Foreign Affairs,Foreign Affairs +542992,Foreign Affairs,Foreign Affairs +542991,Foreign Affairs,Foreign Affairs +542990,Foreign Affairs,Foreign Affairs +542989,Foreign Affairs,Foreign Affairs +540745,Foreign Affairs,Foreign Affairs +540743,Foreign Affairs,Foreign Affairs +540644,Foreign Affairs,Foreign Affairs +540642,Foreign Affairs,Foreign Affairs +540640,Foreign Affairs,Foreign Affairs +538787,Foreign Affairs,Foreign Affairs +536697,Foreign Affairs,Foreign Affairs +536471,Foreign Affairs,Foreign Affairs +532629,Foreign Affairs,Foreign Affairs +532573,Foreign Affairs,Foreign Affairs +532445,Foreign Affairs,Foreign Affairs +532444,Foreign Affairs,Foreign Affairs +530133,Foreign Affairs,Foreign Affairs +530132,Foreign Affairs,Foreign Affairs +530131,Foreign Affairs,Foreign Affairs +530130,Foreign Affairs,Foreign Affairs +527710,Foreign Affairs,Foreign Affairs +527705,Foreign Affairs,Foreign Affairs +526589,Foreign Affairs,Foreign Affairs +526415,Foreign Affairs,Foreign Affairs +526412,Foreign Affairs,Foreign Affairs +523797,Foreign Affairs,Foreign Affairs +523606,Foreign Affairs,Foreign Affairs +523457,Foreign Affairs,Foreign Affairs +523129,Foreign Affairs,Foreign Affairs +520608,Foreign Affairs,Foreign Affairs +520410,Foreign Affairs,Foreign Affairs +520070,Foreign Affairs,Foreign Affairs +518700,Foreign Affairs,Foreign Affairs +522097,Health,Health +519557,Health,Health +519556,Health,Health +517088,Health,Health +537700,Health,Health +527953,Health,Health +522101,Health,Health +519324,Labour,Travail +533748,Education,Education +524679,Education,Education +518304,Education,Education +518300,Environment,Environment +518300,Research and Development,Research and Development +528661,Economic Development,Economic Development +523799,Economic Development,Economic Development +533708,Economic Development,Economic Development +531418,Economic Development,Economic Development +528661,Environment,Environment +531418,Housing,Housing +523799,Housing,Housing +529997,Industry,Industry +528661,Industry,Industry +533708,Industry,Industry +531418,Infrastructure,Infrastructure +523799,Infrastructure,Infrastructure +531418,Municipalities,Municipalities +531418,Regional Development,Regional Development +523799,Regional Development,Regional Development +528661,Research and Development,Research and Development +523799,Research and Development,Research and Development +531418,Transportation,Transportation +525414,Industry,Industry +532137,Consumer Issues,Consumer Issues +526595,Environment,Environment +526592,Environment,Environment +544077,Environment,Environment +541785,Environment,Environment +541783,Environment,Environment +535818,Environment,Environment +535798,Environment,Environment +535793,Environment,Environment +535785,Environment,Environment +532135,Environment,Environment +532131,Environment,Environment +526595,Municipalities,Municipalities +526592,Municipalities,Municipalities +544077,Municipalities,Municipalities +541785,Municipalities,Municipalities +541783,Municipalities,Municipalities +535818,Municipalities,Municipalities +535798,Municipalities,Municipalities +535793,Municipalities,Municipalities +535785,Municipalities,Municipalities +532135,Municipalities,Municipalities +532131,Municipalities,Municipalities +518457,Budget,Budget +520953,Industry,Industry +518457,Industry,Industry +540876,Industry,Industry +539360,Industry,Industry +537002,Industry,Industry +528618,Intellectual Property,Intellectual Property +526977,Intellectual Property,Intellectual Property +540877,Intellectual Property,Intellectual Property +537002,Intellectual Property,Intellectual Property +528618,Research and Development,Research and Development +526977,Research and Development,Research and Development +540877,Research and Development,Research and Development +540876,Research and Development,Research and Development +539360,Research and Development,Research and Development +539125,Research and Development,Research and Development +516699,Economic Development,Economic Development +517414,Natural Resources,Natural Resources +538834,Employment and Training,Employment and Training +538833,Employment and Training,Employment and Training +520362,Employment and Training,Employment and Training +517414,Employment and Training,Employment and Training +517414,Regional Development,Regional Development +520362,Energy,Energy +517414,Energy,Energy +520650,Industry,Industry +520362,Industry,Industry +520362,Federal-Provincial Relations,Federal-Provincial Relations +517414,Federal-Provincial Relations,Federal-Provincial Relations +520362,Economic Development,Economic Development +517414,Economic Development,Economic Development +524916,Economic Development,Economic Development +520751,Economic Development,Economic Development +540045,Economic Development,Economic Development +533099,Economic Development,Economic Development +530388,Economic Development,Economic Development +527069,Economic Development,Economic Development +527068,Economic Development,Economic Development +527067,Economic Development,Economic Development +516606,Environment,Environment +540045,Environment,Environment +533099,Environment,Environment +530392,Environment,Environment +530388,Environment,Environment +527069,Environment,Environment +527068,Environment,Environment +527067,Environment,Environment +524922,Environment,Environment +524916,Environment,Environment +520751,Environment,Environment +519839,Environment,Environment +519252,Health,Health +518354,Health,Health +519252,Tourism,Tourism +518354,Tourism,Tourism +519252,Transportation,Transportation +518354,Transportation,Transportation +518515,Environment,Environment +540808,Environment,Environment +526029,Economic Development,Développement économique +516222,Economic Development,Développement économique +519363,Environment,Environment +516139,Environment,Environment +524791,Mining,Mining +519363,Mining,Mining +516139,Mining,Mining +524791,Natural Resources,Natural Resources +516139,Natural Resources,Natural Resources +516139,Infrastructure,Infrastructure +524791,Transportation,Transportation +516139,Transportation,Transportation +516139,Employment and Training,Employment and Training +519363,Industry,Industry +516139,Energy,Energy +516139,Climate,Climate +516139,Economic Development,Economic Development +516060,Economic Development,Développement économique +523720,Taxation and Finance,Taxation and Finance +523719,Taxation and Finance,Taxation and Finance +521042,Climate,Climate +521042,Transportation,Transportation +521042,Natural Resources,Natural Resources +521042,Energy,Energy +521042,Environment,Environment +518435,Economic Development,Développement économique +525889,Economic Development,Economic Development +525883,Economic Development,Economic Development +525889,Research and Development,Research and Development +525883,Research and Development,Research and Development +523964,Taxation and Finance,Taxation and Finance +522244,Taxation and Finance,Taxation and Finance +540439,Taxation and Finance,Taxation and Finance +540438,Taxation and Finance,Taxation and Finance +539022,Taxation and Finance,Taxation and Finance +536679,Taxation and Finance,Taxation and Finance +533848,Taxation and Finance,Taxation and Finance +530622,Taxation and Finance,Taxation and Finance +526881,Taxation and Finance,Taxation and Finance +518557,Education,Education +518556,Education,Education +518564,Education,Education +518563,Education,Education +518562,Education,Education +518560,Education,Education +518559,Education,Education +518559,Employment and Training,Employment and Training +516257,Infrastructure,Infrastructure +516256,Infrastructure,Infrastructure +516269,Infrastructure,Infrastructure +516268,Infrastructure,Infrastructure +516257,Transportation,Transportation +516256,Transportation,Transportation +516269,Transportation,Transportation +516268,Transportation,Transportation +520123,Employment and Training,Employment and Training +520122,Employment and Training,Employment and Training +520123,Immigration,Immigration +520122,Immigration,Immigration +539809,Immigration,Immigration +520123,Labour,Labour +520122,Labour,Labour +539809,Labour,Labour +518391,Environment,Environment +518391,Energy,Energy +524813,Research and Development,Recherche et développement +517691,Research and Development,Recherche et développement +531265,Economic Development,Economic Development +520099,Economic Development,Economic Development +534832,Health,Health +520099,Health,Health +524181,Infrastructure,Infrastructure +520099,Infrastructure,Infrastructure +524177,Justice and Law Enforcement,Justice and Law Enforcement +520099,Justice and Law Enforcement,Justice and Law Enforcement +537711,Justice and Law Enforcement,Justice and Law Enforcement +524160,Regional Development,Regional Development +520099,Regional Development,Regional Development +532221,Taxation and Finance,Taxation and Finance +525881,Taxation and Finance,Taxation and Finance +544975,Taxation and Finance,Taxation and Finance +544974,Economic Development,Economic Development +532221,Economic Development,Economic Development +525881,Economic Development,Economic Development +525881,Agriculture,Agriculture +532221,International Trade,International Trade +525881,International Trade,International Trade +519161,Budget,Budget +523187,Consumer Issues,Consumer Issues +518232,Consumer Issues,Consumer Issues +541980,Consumer Issues,Consumer Issues +529506,Industry,Industry +525637,Taxation and Finance,Taxation and Finance +523187,Taxation and Finance,Taxation and Finance +541980,Taxation and Finance,Taxation and Finance +540026,Taxation and Finance,Taxation and Finance +538106,Taxation and Finance,Taxation and Finance +535935,Taxation and Finance,Taxation and Finance +529507,Taxation and Finance,Taxation and Finance +529506,Taxation and Finance,Taxation and Finance +525644,Taxation and Finance,Taxation and Finance +521277,Privacy and Access to Information,Privacy and Access to Information +516216,Privacy and Access to Information,Privacy and Access to Information +536476,Privacy and Access to Information,Privacy and Access to Information +532967,Privacy and Access to Information,Privacy and Access to Information +530781,Privacy and Access to Information,Privacy and Access to Information +524459,Privacy and Access to Information,Privacy and Access to Information +525805,Economic Development,Développement économique +525747,Economic Development,Développement économique +539126,Economic Development,Développement économique +535391,Economic Development,Développement économique +516549,Government Procurement,Government Procurement +516548,Government Procurement,Government Procurement +533474,Government Procurement,Government Procurement +525317,Government Procurement,Government Procurement +525303,Government Procurement,Government Procurement +525290,Government Procurement,Government Procurement +521467,Government Procurement,Government Procurement +521466,Government Procurement,Government Procurement +521464,Government Procurement,Government Procurement +521463,Government Procurement,Government Procurement +521462,Government Procurement,Government Procurement +521461,Government Procurement,Government Procurement +521460,Government Procurement,Government Procurement +521459,Government Procurement,Government Procurement +521458,Government Procurement,Government Procurement +521457,Government Procurement,Government Procurement +521456,Government Procurement,Government Procurement +518861,Government Procurement,Government Procurement +518860,Government Procurement,Government Procurement +518859,Government Procurement,Government Procurement +518858,Government Procurement,Government Procurement +518857,Government Procurement,Government Procurement +518856,Government Procurement,Government Procurement +518855,Government Procurement,Government Procurement +518854,Government Procurement,Government Procurement +518853,Government Procurement,Government Procurement +518852,Government Procurement,Government Procurement +518851,Government Procurement,Government Procurement +518850,Government Procurement,Government Procurement +518849,Government Procurement,Government Procurement +518848,Government Procurement,Government Procurement +520995,Government Procurement,Government Procurement +522842,Infrastructure,Infrastructure +520995,Infrastructure,Infrastructure +525887,Industry,Industrie +523267,Tourism,Tourism +523267,Transportation,Transportation +523267,Consumer Issues,Consumer Issues +523267,Health,Health +522376,Economic Development,Développement économique +516362,Economic Development,Développement économique +544460,Economic Development,Développement économique +542530,Economic Development,Développement économique +542428,Economic Development,Développement économique +542427,Economic Development,Développement économique +542425,Economic Development,Développement économique +542424,Economic Development,Développement économique +539909,Economic Development,Développement économique +535038,Economic Development,Développement économique +535037,Economic Development,Développement économique +529288,Economic Development,Développement économique +525253,Economic Development,Développement économique +522380,Economic Development,Développement économique +522379,Economic Development,Développement économique +518808,Economic Development,Economic Development +516381,Economic Development,Economic Development +527046,Economic Development,Economic Development +521519,Economic Development,Economic Development +520691,Economic Development,Economic Development +516381,Environment,Environment +516310,Environment,Environment +530239,Environment,Environment +530002,Environment,Environment +527046,Environment,Environment +521519,Environment,Environment +520691,Environment,Environment +519733,Environment,Environment +519127,Environment,Environment +518808,Environment,Environment +516381,Industry,Industry +516310,Industry,Industry +530002,Industry,Industry +527046,Industry,Industry +521519,Industry,Industry +520691,Industry,Industry +519733,Industry,Industry +519127,Industry,Industry +518808,Industry,Industry +520691,Research and Development,Research and Development +519733,Research and Development,Research and Development +527046,Research and Development,Research and Development +516282,Health,Health +526592,Government Procurement,Government Procurement +544077,Government Procurement,Government Procurement +541785,Government Procurement,Government Procurement +541783,Government Procurement,Government Procurement +535818,Government Procurement,Government Procurement +535798,Government Procurement,Government Procurement +535793,Government Procurement,Government Procurement +535785,Government Procurement,Government Procurement +532135,Government Procurement,Government Procurement +532131,Government Procurement,Government Procurement +529688,Government Procurement,Government Procurement +516304,Infrastructure,Infrastructure +516303,Infrastructure,Infrastructure +516304,Transportation,Transportation +516303,Transportation,Transportation +518514,Environment,Environment +541151,Environment,Environment +529776,Environment,Environment +524056,Agriculture,Agriculture +526820,Agriculture,Agriculture +524804,Agriculture,Agriculture +524515,Agriculture,Agriculture +525653,Health,Health +524515,Health,Health +521047,Research and Development,Research and Development +529701,Energy,Energy +523758,Economic Development,Economic Development +520431,Media,Media +516350,Media,Media +535897,Media,Media +533043,Media,Media +532839,Media,Media +520431,Taxation and Finance,Taxation and Finance +516350,Taxation and Finance,Taxation and Finance +532839,Taxation and Finance,Taxation and Finance +526069,International Trade,International Trade +523260,International Trade,International Trade +529708,International Trade,International Trade +529707,International Trade,International Trade +529706,International Trade,International Trade +524069,Consumer Issues,Consumer Issues +524056,Consumer Issues,Consumer Issues +526820,Consumer Issues,Consumer Issues +524069,Economic Development,Economic Development +523875,Research and Development,Research and Development +523874,Research and Development,Research and Development +523875,Health,Health +523875,Economic Development,Economic Development +523874,Economic Development,Economic Development +524176,Regional Development,Regional Development +516963,Regional Development,Regional Development +516963,Economic Development,Economic Development +523620,Infrastructure,Infrastructure +523620,Environment,Environment +523620,Tourism,Tourism +538880,Animal Welfare,Animal Welfare +538666,Animal Welfare,Animal Welfare +523813,Animal Welfare,Animal Welfare +519751,Animal Welfare,Animal Welfare +519326,Animal Welfare,Animal Welfare +519219,Animal Welfare,Animal Welfare +516486,Animal Welfare,Animal Welfare +544727,Animal Welfare,Animal Welfare +542432,Animal Welfare,Animal Welfare +541122,Animal Welfare,Animal Welfare +540715,Animal Welfare,Animal Welfare +521477,Health,Health +526318,Financial Institutions,Financial Institutions +521135,Natural Resources,Natural Resources +521134,Natural Resources,Natural Resources +521135,Economic Development,Economic Development +521134,Economic Development,Economic Development +521135,Energy,Energy +521134,Energy,Energy +521135,Government Procurement,Government Procurement +521134,Government Procurement,Government Procurement +521134,Climate,Climate +521135,Environment,Environment +521134,Environment,Environment +525697,Health,Health +525689,Health,Health +534478,Health,Health +528941,Health,Health +528882,Health,Health +528859,Health,Health +528809,Health,Health +518371,Climate,Climate +518612,Climate,Climate +518611,Climate,Climate +518610,Energy,Energy +518371,Environment,Environment +523982,Taxation and Finance,Taxation and Finance +523981,Taxation and Finance,Taxation and Finance +533127,Taxation and Finance,Taxation and Finance +523303,Research and Development,Research and Development +523299,Research and Development,Research and Development +536196,Research and Development,Research and Development +529713,Research and Development,Research and Development +526042,Research and Development,Research and Development +523303,Natural Resources,Natural Resources +523299,Natural Resources,Natural Resources +536196,Natural Resources,Natural Resources +529713,Natural Resources,Natural Resources +526042,Natural Resources,Natural Resources +523303,Energy,Energy +523299,Energy,Energy +541880,Energy,Energy +536196,Energy,Energy +529713,Energy,Energy +526042,Energy,Energy +523303,Economic Development,Economic Development +523299,Economic Development,Economic Development +529713,Economic Development,Economic Development +526042,Economic Development,Economic Development +526032,Environment,Environment +523303,Environment,Environment +529713,Environment,Environment +529710,Labour,Labour +523301,Labour,Labour +516580,Economic Development,Economic Development +516577,Economic Development,Economic Development +542320,Economic Development,Economic Development +520976,Economic Development,Economic Development +520587,Economic Development,Economic Development +516655,Economic Development,Economic Development +516580,Industry,Industry +516577,Industry,Industry +532271,Industry,Industry +520976,Industry,Industry +520967,Industry,Industry +520587,Industry,Industry +516655,Industry,Industry +520472,Climate,Climate +520369,Climate,Climate +518613,Climate,Climate +540452,Climate,Climate +538600,Climate,Climate +536015,Climate,Climate +531403,Climate,Climate +525188,Climate,Climate +525185,Climate,Climate +525139,Climate,Climate +525137,Climate,Climate +520369,Energy,Energy +518613,Energy,Energy +540452,Energy,Energy +538600,Energy,Energy +536015,Energy,Energy +525188,Energy,Energy +525185,Energy,Energy +525139,Energy,Energy +525137,Energy,Energy +518613,Environment,Environment +531403,Forestry,Forestry +525188,Forestry,Forestry +538600,Forestry,Forestry +525188,Industry,Industry +519604,Economic Development,Economic Development +529347,Employment and Training,Employment and Training +519605,Employment and Training,Employment and Training +520623,Employment and Training,Employment and Training +517829,Employment and Training,Employment and Training +520623,Immigration,Immigration +517829,Immigration,Immigration +540608,Budget,Budget +540433,Budget,Budget +540608,Economic Development,Développement économique +537134,Economic Development,Développement économique +530667,Economic Development,Développement économique +530650,Economic Development,Développement économique +530256,Economic Development,Développement économique +530200,Economic Development,Développement économique +527476,Economic Development,Développement économique +527178,Economic Development,Développement économique +527177,Economic Development,Développement économique +527062,Economic Development,Développement économique +523617,Economic Development,Développement économique +521730,Economic Development,Développement économique +521475,Economic Development,Développement économique +544462,Economic Development,Développement économique +542292,Economic Development,Développement économique +542291,Economic Development,Développement économique +542290,Economic Development,Développement économique +542159,Economic Development,Développement économique +542105,Economic Development,Développement économique +541695,Economic Development,Développement économique +541443,Economic Development,Développement économique +537439,Environment,Environnement +537172,Environment,Environnement +537159,Environment,Environnement +537157,Environment,Environnement +537134,Environment,Environnement +532750,Environment,Environnement +532730,Environment,Environnement +532669,Environment,Environnement +532562,Environment,Environnement +530667,Environment,Environnement +530650,Environment,Environnement +530473,Environment,Environnement +530200,Environment,Environnement +530135,Environment,Environnement +530006,Environment,Environnement +527476,Environment,Environnement +526739,Environment,Environnement +523617,Environment,Environnement +521731,Environment,Environnement +521730,Environment,Environnement +521475,Environment,Environnement +521470,Environment,Environnement +544462,Environment,Environnement +542292,Environment,Environnement +542291,Environment,Environnement +542290,Environment,Environnement +542159,Environment,Environnement +542105,Environment,Environnement +541695,Environment,Environnement +541443,Environment,Environnement +541423,Environment,Environnement +540608,Environment,Environnement +540433,Environment,Environnement +540403,Environment,Environnement +538907,Environment,Environnement +538855,Environment,Environnement +540433,Small Business,Petites entreprises +540433,Research and Development,Recherche et développement +516632,Environment,Environment +519902,Government Procurement,Government Procurement +519897,Government Procurement,Government Procurement +522597,Government Procurement,Government Procurement +519916,Government Procurement,Government Procurement +519912,Government Procurement,Government Procurement +519916,Health,Health +528394,Economic Development,Economic Development +526969,Economic Development,Economic Development +516665,Economic Development,Economic Development +545316,Economic Development,Economic Development +540099,Economic Development,Economic Development +538861,Economic Development,Economic Development +533091,Economic Development,Economic Development +533088,Economic Development,Economic Development +520414,Government Procurement,Government Procurement +517621,Government Procurement,Government Procurement +527091,Government Procurement,Government Procurement +524071,Government Procurement,Government Procurement +524068,Government Procurement,Government Procurement +524067,Government Procurement,Government Procurement +520414,Regional Development,Regional Development +517621,Regional Development,Regional Development +527091,Regional Development,Regional Development +524071,Regional Development,Regional Development +524068,Regional Development,Regional Development +524067,Regional Development,Regional Development +523610,Energy,Énergie +520963,Energy,Énergie +519613,Energy,Énergie +519612,Energy,Énergie +519608,Energy,Énergie +518180,Energy,Énergie +518180,Environment,Environnement +517287,Environment,Environnement +523610,Environment,Environnement +520963,Environment,Environnement +519613,Environment,Environnement +519612,Environment,Environnement +518180,Industry,Industrie +518180,Transportation,Transports +517287,Transportation,Transports +523610,Transportation,Transports +520963,Transportation,Transports +519613,Transportation,Transports +519612,Transportation,Transports +532807,Climate,Climate +520943,Climate,Climate +532807,Environment,Environment +520943,Environment,Environment +520943,Industry,Industry +521215,Agriculture,Agriculture +521213,Agriculture,Agriculture +521217,Agriculture,Agriculture +521215,Internal Trade,Commerce intérieur +521213,Internal Trade,Commerce intérieur +521217,Internal Trade,Commerce intérieur +521215,International Trade,Commerce international +521213,International Trade,Commerce international +521217,International Trade,Commerce international +516828,Climate,Climate +516717,Climate,Climate +516828,Industry,Industry +516717,Industry,Industry +519549,Natural Resources,Natural Resources +519548,Natural Resources,Natural Resources +532991,Climate,Climate +532991,Forestry,Forestry +528239,Climate,Climate +524179,Climate,Climate +530410,Climate,Climate +528245,Climate,Climate +528244,Climate,Climate +528242,Climate,Climate +521219,Natural Resources,Natural Resources +521218,Natural Resources,Natural Resources +530410,Natural Resources,Natural Resources +528245,Natural Resources,Natural Resources +528244,Natural Resources,Natural Resources +528241,Natural Resources,Natural Resources +528239,Natural Resources,Natural Resources +521221,Natural Resources,Natural Resources +528240,Environment,Environment +528239,Environment,Environment +524179,Environment,Environment +521221,Environment,Environment +521220,Environment,Environment +521219,Environment,Environment +530408,Environment,Environment +528245,Environment,Environment +528242,Environment,Environment +528242,Energy,Energy +528240,Energy,Energy +530408,Energy,Energy +543519,Agriculture,Agriculture +543517,Agriculture,Agriculture +543513,Agriculture,Agriculture +543512,Agriculture,Agriculture +543508,Agriculture,Agriculture +539126,Agriculture,Agriculture +535391,Agriculture,Agriculture +535379,Agriculture,Agriculture +531936,Agriculture,Agriculture +531732,Agriculture,Agriculture +528734,Agriculture,Agriculture +525805,Agriculture,Agriculture +525747,Agriculture,Agriculture +543528,Agriculture,Agriculture +543527,Agriculture,Agriculture +543523,Agriculture,Agriculture +539147,Animal Welfare,Animal Welfare +516487,Animal Welfare,Animal Welfare +544023,Climate,Climate +544023,Energy,Energy +544023,Environment,Environment +544023,Industry,Industry +544023,Internal Trade,Internal Trade +544023,International Trade,International Trade +538959,Health,Health +540669,Financial Institutions,Financial Institutions +527667,Financial Institutions,Financial Institutions +516505,Transportation,Transportation +524411,Natural Resources,Natural Resources +524411,Economic Development,Economic Development +524411,Energy,Energy +524411,Government Procurement,Government Procurement +521135,Climate,Climate +524411,Environment,Environment +521135,Transportation,Transportation +516506,Transportation,Transportation +525753,Health,Health +516507,Health,Health +516508,Health,Health +518610,Climate,Climate +518612,Energy,Energy +518612,Environment,Environment +530748,Taxation and Finance,Taxation and Finance +526032,Research and Development,Research and Development +526032,Natural Resources,Natural Resources +526032,Energy,Energy +541880,Climate,Climate +526032,Economic Development,Economic Development +526042,Environment,Environment +540708,Employment and Training,Employment and Training +532367,Labour,Labour +523301,Government Procurement,Government Procurement +533494,Government Procurement,Government Procurement +532365,Defence,Defence +528691,Industry,Industry +528691,Economic Development,Economic Development +516581,Economic Development,Economic Development +516581,Industry,Industry +519066,International Trade,International Trade +525136,Climate,Climate +525136,Energy,Energy +538600,Environment,Environment +536015,Forestry,Forestry +540452,Industry,Industry +519604,Small Business,Small Business +519605,Economic Development,Economic Development +529355,Employment and Training,Employment and Training +538905,Employment and Training,Employment and Training +538905,Immigration,Immigration +544462,Budget,Budget +541423,Economic Development,Développement économique +527476,Regional Development,Développement régional +538767,Environment,Environnement +540608,Small Business,Petites entreprises +542159,Research and Development,Recherche et développement +533048,Environment,Environment +519911,Government Procurement,Government Procurement +522597,Health,Health +533085,Economic Development,Economic Development +520780,Government Procurement,Government Procurement +520780,Regional Development,Regional Development +517287,Energy,Énergie +519608,Environment,Environnement +520963,Industry,Industrie +519608,Transportation,Transports +520721,Education,Education +533822,Climate,Climate +533822,Environment,Environment +533822,Industry,Industry +521216,Agriculture,Agriculture +521216,Internal Trade,Commerce intérieur +521216,International Trade,Commerce international +517941,Climate,Climate +517941,Consumer Issues,Consumer Issues +517941,Industry,Industry +518723,Environment,Environment +519550,Natural Resources,Natural Resources +536129,Climate,Climate +536129,Energy,Energy +536129,Forestry,Forestry +528240,Climate,Climate +521220,Natural Resources,Natural Resources +528241,Environment,Environment +528244,Energy,Energy +516778,Industry,Industry +543521,Agriculture,Agriculture +525805,Labour,Travail +534368,Health,Health +536023,Consumer Issues,Consumer Issues +535333,Consumer Issues,Consumer Issues +535333,Financial Institutions,Financial Institutions +535453,Industry,Industry +523648,Health,Health +539490,Infrastructure,Infrastructure +532169,Environment,Environment +516897,Infrastructure,Infrastructure +516902,Municipalities,Municipalities +532708,Industry,Industry +532650,International Relations,International Relations +532708,Budget,Budget +532708,Taxation and Finance,Taxation and Finance +532650,Regional Development,Regional Development +532650,Economic Development,Economic Development +532708,Environment,Environment +516941,Economic Development,Economic Development +516941,Environment,Environment +516941,Financial Institutions,Financial Institutions +516941,Taxation and Finance,Taxation and Finance +516945,Natural Resources,Natural Resources +531565,Taxation and Finance,Taxation and Finance +522631,Natural Resources,Natural Resources +522631,Transportation,Transportation +522633,Transportation,Transportation +522633,Natural Resources,Natural Resources +532369,Natural Resources,Natural Resources +519003,Economic Development,Economic Development +543361,Infrastructure,Infrastructure +543361,International Trade,International Trade +519003,Transportation,Transportation +531701,Budget,Budget +531701,Economic Development,Economic Development +521876,Climate,Climate +519007,Economic Development,Economic Development +519007,Forestry,Forestry +528424,Industry,Industry +519007,International Trade,International Trade +519007,Regional Development,Regional Development +517063,Infrastructure,Infrastructure +528629,Child Services,Child Services +517089,Child Services,Child Services +517091,Child Services,Child Services +517093,Child Services,Child Services +519550,Energy,Energy +528761,Environment,Environment +518723,Municipalities,Municipalities +543878,Infrastructure,Infrastructure +527301,Economic Development,Développement économique +529861,Transportation,Transports +529861,International Trade,Commerce international +536314,Agriculture,Agriculture +520302,Government Procurement,Government Procurement +518520,Mining,Mining +518516,Energy,Energy +517135,Economic Development,Economic Development +518035,Economic Development,Economic Development +535098,Municipalities,Municipalities +535098,Environment,Environment +520403,Labour,Labour +517578,Labour,Labour +523861,Economic Development,Economic Development +523858,Government Procurement,Government Procurement +527332,Research and Development,Research and Development +534384,Regional Development,Regional Development +544445,Economic Development,Economic Development +540236,Health,Health +517483,International Trade,International Trade +517486,Tourism,Tourism +517497,International Trade,International Trade +517488,International Trade,International Trade +517490,International Trade,International Trade +517573,Labour,Labour +517581,Labour,Labour +544758,Consumer Issues,Consumer Issues +533833,Economic Development,Economic Development +544758,Health,Health +523690,Budget,Budget +523690,Consumer Issues,Consumer Issues +523690,Financial Institutions,Financial Institutions +527305,Industry,Industry +518621,Privacy and Access to Information,Privacy and Access to Information +527305,Small Business,Small Business +517696,Industry,Industry +517705,Industry,Industry +517707,Industry,Industry +517708,Industry,Industry +517709,Industry,Industry +517710,Industry,Industry +517713,Industry,Industry +522118,Fisheries,Fisheries +517765,Defence,Defence +517773,Defence,Defence +530943,Education,Education +530943,Research and Development,Research and Development +517826,Federal-Provincial Relations,Federal-Provincial Relations +518665,Natural Resources,Natural Resources +517896,Budget,Budget +517915,Employment and Training,Employment and Training +517915,Infrastructure,Infrastructure +517915,Regional Development,Regional Development +532031,Health,Health +521634,Health,Health +519922,Health,Health +518006,Taxation and Finance,Taxation and Finance +536955,Climate,Climate +521910,Economic Development,Economic Development +536948,Employment and Training,Employment and Training +540221,Environment,Environment +521910,Mining,Mining +540220,Natural Resources,Natural Resources +544082,Government Procurement,Government Procurement +518072,Official Languages,Official Languages +532980,Environment,Environment +540379,Infrastructure,Infrastructure +518181,Energy,Energy +523136,Energy,Energy +518210,Government Procurement,Government Procurement +524148,Tourism,Tourism +518304,Agriculture,Agriculture +530446,Health,Health +518323,Research and Development,Research and Development +528876,Economic Development,Economic Development +528876,Immigration,Immigration +528876,Industry,Industry +528876,Small Business,Small Business +522110,Constitutional Issues,Constitutional Issues +523918,Employment and Training,Employment and Training +523918,Immigration,Immigration +529775,Environment,Environment +526929,Taxation and Finance,Taxation and Finance +523451,Energy,Energy +527733,Housing,Housing +523339,Climate,Climate +543201,Energy,Energy +542541,Environment,Environment +520579,Health,Health +521708,Economic Development,Développement économique +518453,Energy,Énergie +518453,Environment,Environnement +518453,Industry,Industrie +518453,Transportation,Transports +529453,Climate,Climate +539603,Climate,Climate +521669,Economic Development,Economic Development +521669,Energy,Energy +521669,Environment,Environment +538669,Government Procurement,Government Procurement +521669,Natural Resources,Natural Resources +539603,Transportation,Transportation +518807,Energy,Energy +518509,Economic Development,Economic Development +523731,Agriculture,Agriculture +518523,Taxation and Finance,Taxation and Finance +538385,Agriculture,Agriculture +535981,Environment,Environment +535981,Health,Health +535980,Industry,Industry +518519,Small Business,Small Business +530218,Health,Health +523607,Health,Health +516799,Health,Health +534372,Health,Health +536022,Consumer Issues,Consumer Issues +523984,Consumer Issues,Consumer Issues +540273,Consumer Issues,Consumer Issues +536024,Consumer Issues,Consumer Issues +531939,Consumer Issues,Consumer Issues +538188,Consumer Issues,Consumer Issues +535454,Consumer Issues,Consumer Issues +535453,Consumer Issues,Consumer Issues +535325,Financial Institutions,Financial Institutions +531939,Financial Institutions,Financial Institutions +538188,Financial Institutions,Financial Institutions +535454,Financial Institutions,Financial Institutions +535453,Financial Institutions,Financial Institutions +535333,Industry,Industry +531939,Industry,Industry +538188,Industry,Industry +535454,Industry,Industry +524615,Infrastructure,Infrastructure +532166,Environment,Environment +528636,Environment,Environment +532650,Industry,Industry +532650,Budget,Budget +532650,Taxation and Finance,Taxation and Finance +532650,Environment,Environment +531562,Taxation and Finance,Taxation and Finance +522681,Taxation and Finance,Taxation and Finance +542781,Taxation and Finance,Taxation and Finance +533574,Taxation and Finance,Taxation and Finance +531572,Taxation and Finance,Taxation and Finance +531569,Taxation and Finance,Taxation and Finance +531568,Taxation and Finance,Taxation and Finance +519001,Economic Development,Economic Development +518998,Economic Development,Economic Development +543363,Economic Development,Economic Development +543362,Economic Development,Economic Development +543361,Economic Development,Economic Development +543360,Economic Development,Economic Development +543358,Economic Development,Economic Development +537323,Economic Development,Economic Development +531298,Economic Development,Economic Development +531297,Economic Development,Economic Development +531296,Economic Development,Economic Development +519004,Economic Development,Economic Development +543360,Infrastructure,Infrastructure +543358,Infrastructure,Infrastructure +537323,Infrastructure,Infrastructure +531298,Infrastructure,Infrastructure +531297,Infrastructure,Infrastructure +531296,Infrastructure,Infrastructure +519004,Infrastructure,Infrastructure +519003,Infrastructure,Infrastructure +519001,Infrastructure,Infrastructure +518998,Infrastructure,Infrastructure +543363,Infrastructure,Infrastructure +543362,Infrastructure,Infrastructure +543360,International Trade,International Trade +543358,International Trade,International Trade +537323,International Trade,International Trade +531298,International Trade,International Trade +531297,International Trade,International Trade +531296,International Trade,International Trade +519004,International Trade,International Trade +519003,International Trade,International Trade +519001,International Trade,International Trade +518998,International Trade,International Trade +543363,International Trade,International Trade +543362,International Trade,International Trade +519001,Transportation,Transportation +518998,Transportation,Transportation +543363,Transportation,Transportation +543362,Transportation,Transportation +543361,Transportation,Transportation +543360,Transportation,Transportation +543358,Transportation,Transportation +537323,Transportation,Transportation +531298,Transportation,Transportation +531297,Transportation,Transportation +531296,Transportation,Transportation +519004,Transportation,Transportation +528497,Economic Development,Economic Development +519006,Climate,Climate +519005,Climate,Climate +531293,Climate,Climate +524945,Climate,Climate +519006,Economic Development,Economic Development +519005,Economic Development,Economic Development +539278,Economic Development,Economic Development +539277,Economic Development,Economic Development +531293,Economic Development,Economic Development +528424,Economic Development,Economic Development +524945,Economic Development,Economic Development +521876,Economic Development,Economic Development +519008,Economic Development,Economic Development +519006,Forestry,Forestry +519005,Forestry,Forestry +539278,Forestry,Forestry +539277,Forestry,Forestry +534387,Forestry,Forestry +531293,Forestry,Forestry +528424,Forestry,Forestry +524945,Forestry,Forestry +521876,Forestry,Forestry +519008,Forestry,Forestry +524945,Industry,Industry +521876,Industry,Industry +519008,Industry,Industry +519007,Industry,Industry +519006,Industry,Industry +519005,Industry,Industry +519006,International Trade,International Trade +519005,International Trade,International Trade +539278,International Trade,International Trade +539277,International Trade,International Trade +528424,International Trade,International Trade +524945,International Trade,International Trade +521876,International Trade,International Trade +519008,International Trade,International Trade +519006,Regional Development,Regional Development +519005,Regional Development,Regional Development +539278,Regional Development,Regional Development +539277,Regional Development,Regional Development +531293,Regional Development,Regional Development +519008,Regional Development,Regional Development +519660,Child Services,Child Services +517083,Child Services,Child Services +541201,Child Services,Child Services +539613,Child Services,Child Services +537064,Child Services,Child Services +537062,Child Services,Child Services +534169,Child Services,Child Services +534079,Child Services,Child Services +534034,Child Services,Child Services +531216,Child Services,Child Services +528630,Child Services,Child Services +519549,Energy,Energy +519548,Energy,Energy +540030,Energy,Energy +538377,Energy,Energy +538374,Energy,Energy +535523,Energy,Energy +531705,Energy,Energy +528761,Energy,Energy +519550,Environment,Environment +519549,Environment,Environment +540030,Environment,Environment +538377,Environment,Environment +538374,Environment,Environment +535523,Environment,Environment +531705,Environment,Environment +543873,Infrastructure,Infrastructure +543869,Infrastructure,Infrastructure +543879,Infrastructure,Infrastructure +527727,Transportation,Transports +518569,Transportation,Transports +544527,Transportation,Transports +536313,Transportation,Transports +530007,Transportation,Transports +530007,Agriculture,Agriculture +518518,Government Procurement,Government Procurement +518034,Economic Development,Economic Development +517136,Economic Development,Economic Development +518728,Economic Development,Economic Development +518727,Economic Development,Economic Development +519353,Municipalities,Municipalities +519353,Environment,Environment +519216,Labour,Labour +517329,Labour,Labour +517335,Labour,Labour +523859,Economic Development,Economic Development +520784,Economic Development,Economic Development +540632,Economic Development,Economic Development +533006,Economic Development,Economic Development +532994,Economic Development,Economic Development +530382,Economic Development,Economic Development +530376,Economic Development,Economic Development +530365,Economic Development,Economic Development +530362,Economic Development,Economic Development +527332,Economic Development,Economic Development +523857,Government Procurement,Government Procurement +520784,Government Procurement,Government Procurement +540654,Government Procurement,Government Procurement +536573,Government Procurement,Government Procurement +530390,Government Procurement,Government Procurement +530374,Government Procurement,Government Procurement +523864,Government Procurement,Government Procurement +523861,Government Procurement,Government Procurement +523859,Government Procurement,Government Procurement +523858,Research and Development,Research and Development +523857,Research and Development,Research and Development +540632,Research and Development,Research and Development +536574,Research and Development,Research and Development +530382,Research and Development,Research and Development +530368,Research and Development,Research and Development +530362,Research and Development,Research and Development +541315,Consumer Issues,Consumer Issues +539519,Consumer Issues,Consumer Issues +536533,Consumer Issues,Consumer Issues +533833,Consumer Issues,Consumer Issues +523568,Consumer Issues,Consumer Issues +521129,Consumer Issues,Consumer Issues +521128,Consumer Issues,Consumer Issues +521127,Consumer Issues,Consumer Issues +517689,Consumer Issues,Consumer Issues +521128,Economic Development,Economic Development +521127,Economic Development,Economic Development +544758,Economic Development,Economic Development +541315,Economic Development,Economic Development +539519,Economic Development,Economic Development +539049,Economic Development,Economic Development +539519,Health,Health +536533,Health,Health +523568,Health,Health +521129,Health,Health +521128,Health,Health +521127,Health,Health +517689,Health,Health +544760,Health,Health +518621,Consumer Issues,Consumer Issues +517646,Consumer Issues,Consumer Issues +527305,Consumer Issues,Consumer Issues +518621,Financial Institutions,Financial Institutions +517646,Financial Institutions,Financial Institutions +527305,Financial Institutions,Financial Institutions +517646,Privacy and Access to Information,Privacy and Access to Information +527305,Privacy and Access to Information,Privacy and Access to Information +517646,Small Business,Small Business +522117,Fisheries,Fisheries +544777,Fisheries,Fisheries +541674,Fisheries,Fisheries +535989,Fisheries,Fisheries +535004,Fisheries,Fisheries +535001,Fisheries,Fisheries +532284,Fisheries,Fisheries +532283,Fisheries,Fisheries +532282,Fisheries,Fisheries +528375,Fisheries,Fisheries +525733,Fisheries,Fisheries +525731,Fisheries,Fisheries +525201,Fisheries,Fisheries +525200,Fisheries,Fisheries +525198,Fisheries,Fisheries +525197,Fisheries,Fisheries +525196,Fisheries,Fisheries +525195,Fisheries,Fisheries +525192,Fisheries,Fisheries +522122,Fisheries,Fisheries +522121,Fisheries,Fisheries +522120,Fisheries,Fisheries +522119,Fisheries,Fisheries +518462,Health,Health +539009,Health,Health +537287,Health,Health +537285,Health,Health +534463,Health,Health +532245,Health,Health +532238,Health,Health +529173,Health,Health +529171,Health,Health +529169,Health,Health +529167,Health,Health +529143,Health,Health +521638,Health,Health +522814,Health,Health +522812,Health,Health +519933,Health,Health +536954,Climate,Climate +540220,Environment,Environment +536955,Environment,Environment +540221,Mining,Mining +540220,Mining,Mining +536960,Mining,Mining +536957,Mining,Mining +536956,Mining,Mining +536955,Mining,Mining +536954,Mining,Mining +536952,Mining,Mining +536951,Mining,Mining +536948,Mining,Mining +536960,Natural Resources,Natural Resources +536957,Natural Resources,Natural Resources +540221,Natural Resources,Natural Resources +530869,Government Procurement,Government Procurement +519369,Government Procurement,Government Procurement +544087,Government Procurement,Government Procurement +532979,Environment,Environment +532977,Environment,Environment +540379,Environment,Environment +532977,Infrastructure,Infrastructure +523131,Energy,Energy +523124,Energy,Energy +543422,Energy,Energy +535916,Energy,Energy +535915,Energy,Energy +535912,Energy,Energy +535911,Energy,Energy +535910,Energy,Energy +535909,Energy,Energy +535908,Energy,Energy +535906,Energy,Energy +531609,Energy,Energy +527149,Energy,Energy +523140,Energy,Energy +524147,Tourism,Tourism +518299,Tourism,Tourism +535018,Tourism,Tourism +535016,Tourism,Tourism +518634,Employment and Training,Employment and Training +526929,Environment,Environment +520525,Environment,Environment +541152,Environment,Environment +536903,Environment,Environment +536902,Environment,Environment +536637,Environment,Environment +533348,Environment,Environment +520578,Climate,Climate +518538,Climate,Climate +543201,Climate,Climate +543199,Climate,Climate +543198,Climate,Climate +538899,Climate,Climate +538798,Climate,Climate +538797,Climate,Climate +538796,Climate,Climate +530430,Climate,Climate +526833,Climate,Climate +524765,Climate,Climate +532504,Environment,Environment +530430,Environment,Environment +526833,Environment,Environment +524765,Environment,Environment +523551,Environment,Environment +523339,Environment,Environment +520611,Environment,Environment +520579,Environment,Environment +520578,Environment,Environment +518538,Environment,Environment +520578,Health,Health +518538,Health,Health +542541,Health,Health +538899,Health,Health +538798,Health,Health +538797,Health,Health +538796,Health,Health +532504,Health,Health +530430,Health,Health +526833,Health,Health +524765,Health,Health +523551,Health,Health +523339,Health,Health +520611,Health,Health +519479,Economic Development,Développement économique +518465,Climate,Climate +538670,Climate,Climate +538669,Climate,Climate +521670,Climate,Climate +521669,Climate,Climate +521667,Climate,Climate +520411,Climate,Climate +521667,Economic Development,Economic Development +520411,Economic Development,Economic Development +539603,Economic Development,Economic Development +538670,Economic Development,Economic Development +521667,Energy,Energy +520411,Energy,Energy +539603,Energy,Energy +538670,Energy,Energy +538669,Energy,Energy +521670,Energy,Energy +521667,Environment,Environment +520411,Environment,Environment +539603,Environment,Environment +538670,Environment,Environment +538669,Environment,Environment +521669,Government Procurement,Government Procurement +521667,Government Procurement,Government Procurement +539603,Government Procurement,Government Procurement +538670,Government Procurement,Government Procurement +521667,Natural Resources,Natural Resources +520411,Natural Resources,Natural Resources +539603,Natural Resources,Natural Resources +538670,Natural Resources,Natural Resources +538669,Natural Resources,Natural Resources +521670,Natural Resources,Natural Resources +538670,Transportation,Transportation +538669,Transportation,Transportation +521670,Transportation,Transportation +521669,Transportation,Transportation +520411,Transportation,Transportation +523730,Agriculture,Agriculture +523729,Agriculture,Agriculture +523733,Agriculture,Agriculture +523732,Agriculture,Agriculture +518522,Taxation and Finance,Taxation and Finance +535981,Agriculture,Agriculture +535980,Agriculture,Agriculture +538401,Agriculture,Agriculture +538395,Agriculture,Agriculture +535980,Environment,Environment +531948,Environment,Environment +538401,Environment,Environment +538395,Environment,Environment +538385,Environment,Environment +535980,Health,Health +529161,Health,Health +525239,Health,Health +525238,Health,Health +538401,Health,Health +538395,Health,Health +538385,Health,Health +523418,Industry,Industry +520571,Economic Development,Economic Development +520570,Economic Development,Economic Development +520571,Tourism,Tourism +520570,Tourism,Tourism +520840,Health,Health +520839,Health,Health +540514,Health,Health +536898,Health,Health +527617,Health,Health +527615,Health,Health +527596,Health,Health +527594,Health,Health +523998,Health,Health +523997,Health,Health +523996,Health,Health +520844,Health,Health +520843,Health,Health +520842,Health,Health +527594,Immigration,Immigration +523997,Immigration,Immigration +540514,Immigration,Immigration +520852,Taxation and Finance,Impôts et finances +520851,Taxation and Finance,Impôts et finances +519362,Forestry,Forestry +518609,Forestry,Forestry +540799,Forestry,Forestry +536550,Forestry,Forestry +536549,Forestry,Forestry +536547,Forestry,Forestry +536546,Forestry,Forestry +536545,Forestry,Forestry +536544,Forestry,Forestry +536543,Forestry,Forestry +536542,Forestry,Forestry +536544,Environment,Environment +536543,Environment,Environment +536549,Environment,Environment +527894,International Trade,International Trade +519362,Climate,Climate +518609,Climate,Climate +536549,Climate,Climate +536547,Climate,Climate +525181,Justice and Law Enforcement,Justice and Law Enforcement +518616,Municipalities,Municipalities +525157,Climate,Climate +518618,Climate,Climate +544059,Climate,Climate +531777,Climate,Climate +525784,Fisheries,Fisheries +525780,Fisheries,Fisheries +525775,Fisheries,Fisheries +525770,Fisheries,Fisheries +525766,Fisheries,Fisheries +525763,Fisheries,Fisheries +523804,Fisheries,Fisheries +523678,Fisheries,Fisheries +521688,Fisheries,Fisheries +520666,Fisheries,Fisheries +520583,Fisheries,Fisheries +519052,Fisheries,Fisheries +518766,Fisheries,Fisheries +518639,Fisheries,Fisheries +532396,Fisheries,Fisheries +531770,Fisheries,Fisheries +531769,Fisheries,Fisheries +531766,Fisheries,Fisheries +530279,Fisheries,Fisheries +528364,Fisheries,Fisheries +528362,Fisheries,Fisheries +528360,Fisheries,Fisheries +528358,Fisheries,Fisheries +528357,Fisheries,Fisheries +528355,Fisheries,Fisheries +526829,Fisheries,Fisheries +526826,Fisheries,Fisheries +526380,Fisheries,Fisheries +518766,Economic Development,Economic Development +518639,Economic Development,Economic Development +532396,Economic Development,Economic Development +531770,Economic Development,Economic Development +531769,Economic Development,Economic Development +531766,Economic Development,Economic Development +530279,Economic Development,Economic Development +528364,Economic Development,Economic Development +528362,Economic Development,Economic Development +528360,Economic Development,Economic Development +528358,Economic Development,Economic Development +528357,Economic Development,Economic Development +528355,Economic Development,Economic Development +526829,Economic Development,Economic Development +526380,Economic Development,Economic Development +525788,Economic Development,Economic Development +525784,Economic Development,Economic Development +525780,Economic Development,Economic Development +525775,Economic Development,Economic Development +525770,Economic Development,Economic Development +525766,Economic Development,Economic Development +525763,Economic Development,Economic Development +521688,Economic Development,Economic Development +520666,Economic Development,Economic Development +520583,Economic Development,Economic Development +523804,Environment,Environment +520583,Environment,Environment +532396,Environment,Environment +531769,Environment,Environment +531766,Environment,Environment +528364,Environment,Environment +528362,Environment,Environment +528360,Environment,Environment +528358,Environment,Environment +528357,Environment,Environment +528355,Environment,Environment +526826,Environment,Environment +525788,Environment,Environment +525784,Environment,Environment +525780,Environment,Environment +525775,Environment,Environment +525770,Environment,Environment +525766,Environment,Environment +518766,Federal-Provincial Relations,Federal-Provincial Relations +518639,Federal-Provincial Relations,Federal-Provincial Relations +531766,Federal-Provincial Relations,Federal-Provincial Relations +528364,Federal-Provincial Relations,Federal-Provincial Relations +528362,Federal-Provincial Relations,Federal-Provincial Relations +528360,Federal-Provincial Relations,Federal-Provincial Relations +528358,Federal-Provincial Relations,Federal-Provincial Relations +528357,Federal-Provincial Relations,Federal-Provincial Relations +525788,Federal-Provincial Relations,Federal-Provincial Relations +525784,Federal-Provincial Relations,Federal-Provincial Relations +525780,Federal-Provincial Relations,Federal-Provincial Relations +525775,Federal-Provincial Relations,Federal-Provincial Relations +525770,Federal-Provincial Relations,Federal-Provincial Relations +525766,Federal-Provincial Relations,Federal-Provincial Relations +525763,Federal-Provincial Relations,Federal-Provincial Relations +523804,Federal-Provincial Relations,Federal-Provincial Relations +523678,Federal-Provincial Relations,Federal-Provincial Relations +520666,Federal-Provincial Relations,Federal-Provincial Relations +525770,Foreign Affairs,Foreign Affairs +525763,Foreign Affairs,Foreign Affairs +531766,Foreign Affairs,Foreign Affairs +525788,Foreign Affairs,Foreign Affairs +525784,Foreign Affairs,Foreign Affairs +518766,Industry,Industry +518639,Industry,Industry +531766,Industry,Industry +530279,Industry,Industry +528364,Industry,Industry +528358,Industry,Industry +528357,Industry,Industry +528355,Industry,Industry +526826,Industry,Industry +526380,Industry,Industry +525788,Industry,Industry +525784,Industry,Industry +525780,Industry,Industry +525775,Industry,Industry +525770,Industry,Industry +525766,Industry,Industry +525763,Industry,Industry +520666,Industry,Industry +525775,Internal Trade,Internal Trade +523678,Internal Trade,Internal Trade +525763,International Relations,International Relations +519052,International Relations,International Relations +528364,International Relations,International Relations +528360,International Relations,International Relations +528358,International Relations,International Relations +528357,International Relations,International Relations +525788,International Relations,International Relations +525784,International Relations,International Relations +525780,International Relations,International Relations +525775,International Relations,International Relations +525770,International Relations,International Relations +518766,International Trade,International Trade +532396,International Trade,International Trade +531770,International Trade,International Trade +531769,International Trade,International Trade +531766,International Trade,International Trade +530279,International Trade,International Trade +528364,International Trade,International Trade +528362,International Trade,International Trade +528360,International Trade,International Trade +528358,International Trade,International Trade +528357,International Trade,International Trade +528355,International Trade,International Trade +526829,International Trade,International Trade +526826,International Trade,International Trade +526380,International Trade,International Trade +525788,International Trade,International Trade +525784,International Trade,International Trade +525780,International Trade,International Trade +525766,International Trade,International Trade +523804,International Trade,International Trade +523678,International Trade,International Trade +521688,International Trade,International Trade +520666,International Trade,International Trade +520583,International Trade,International Trade +525784,Labour,Labour +525784,Municipalities,Municipalities +525780,Municipalities,Municipalities +525763,Municipalities,Municipalities +520583,Municipalities,Municipalities +525221,Economic Development,Economic Development +521649,Budget,Budget +521648,Budget,Budget +525751,Budget,Budget +521658,Budget,Budget +521654,Budget,Budget +526426,Economic Development,Economic Development +525751,Economic Development,Economic Development +521658,Economic Development,Economic Development +521654,Economic Development,Economic Development +521652,Economic Development,Economic Development +522026,Industry,Industry +521652,Industry,Industry +526426,Industry,Industry +525751,Industry,Industry +521649,Regional Development,Regional Development +521648,Regional Development,Regional Development +526426,Regional Development,Regional Development +525751,Regional Development,Regional Development +523501,Regional Development,Regional Development +521658,Regional Development,Regional Development +521654,Research and Development,Research and Development +522026,Small Business,Small Business +523901,Economic Development,Economic Development +519073,Economic Development,Economic Development +523901,Health,Health +519073,Research and Development,Research and Development +544813,Justice and Law Enforcement,Justice and Law Enforcement +532308,Justice and Law Enforcement,Justice and Law Enforcement +526352,Justice and Law Enforcement,Justice and Law Enforcement +522394,Justice and Law Enforcement,Justice and Law Enforcement +527958,Climate,Climate +520405,Climate,Climate +527958,Energy,Energy +520405,Energy,Energy +520692,Budget,Budget +520679,Budget,Budget +545030,Budget,Budget +544699,Budget,Budget +544698,Budget,Budget +542606,Budget,Budget +536626,Budget,Budget +536625,Budget,Budget +533576,Budget,Budget +533575,Budget,Budget +527464,Budget,Budget +527462,Budget,Budget +527461,Budget,Budget +527460,Budget,Budget +525860,Budget,Budget +524270,Budget,Budget +520438,Economic Development,Economic Development +520437,Economic Development,Economic Development +528403,Economic Development,Economic Development +520438,Government Procurement,Government Procurement +520437,Government Procurement,Government Procurement +528403,Government Procurement,Government Procurement +542138,Health,Health +528403,Health,Health +520901,Health,Health +520438,Health,Health +520437,Health,Health +520901,Research and Development,Research and Development +520437,Research and Development,Research and Development +520901,Small Business,Small Business +520438,Small Business,Small Business +519130,Energy,Energy +518811,Energy,Energy +531054,Energy,Energy +524077,Energy,Energy +519130,Environment,Environment +518811,Environment,Environment +531054,Environment,Environment +524077,Environment,Environment +519130,Industry,Industry +518811,Industry,Industry +531054,Industry,Industry +519130,Transportation,Transportation +518811,Transportation,Transportation +524077,Transportation,Transportation +527501,Consumer Issues,Consumer Issues +520585,Consumer Issues,Consumer Issues +533442,Consumer Issues,Consumer Issues +533440,Consumer Issues,Consumer Issues +542220,Energy,Energy +538903,Energy,Energy +527466,Consumer Issues,Consumer Issues +519716,Consumer Issues,Consumer Issues +533149,Consumer Issues,Consumer Issues +533148,Consumer Issues,Consumer Issues +527470,Consumer Issues,Consumer Issues +520684,Consumer Issues,Consumer Issues +519149,Agriculture,Agriculture +519081,Agriculture,Agriculture +530933,Agriculture,Agriculture +530293,Agriculture,Agriculture +530214,Agriculture,Agriculture +528111,Agriculture,Agriculture +528110,Agriculture,Agriculture +528109,Agriculture,Agriculture +528108,Agriculture,Agriculture +527021,Agriculture,Agriculture +526943,Agriculture,Agriculture +526942,Agriculture,Agriculture +526941,Agriculture,Agriculture +526867,Agriculture,Agriculture +526866,Agriculture,Agriculture +526865,Agriculture,Agriculture +526864,Agriculture,Agriculture +526863,Agriculture,Agriculture +524082,Agriculture,Agriculture +524081,Agriculture,Agriculture +524080,Agriculture,Agriculture +524079,Agriculture,Agriculture +524078,Agriculture,Agriculture +521839,Agriculture,Agriculture +521838,Agriculture,Agriculture +521832,Agriculture,Agriculture +521438,Agriculture,Agriculture +521388,Agriculture,Agriculture +521386,Agriculture,Agriculture +521385,Agriculture,Agriculture +521126,Agriculture,Agriculture +521125,Agriculture,Agriculture +521028,Agriculture,Agriculture +520838,Agriculture,Agriculture +520836,Agriculture,Agriculture +520688,Agriculture,Agriculture +520687,Agriculture,Agriculture +520686,Agriculture,Agriculture +520685,Agriculture,Agriculture +520544,Agriculture,Agriculture +520453,Agriculture,Agriculture +520451,Agriculture,Agriculture +520359,Agriculture,Agriculture +519913,Agriculture,Agriculture +519421,Agriculture,Agriculture +519247,Agriculture,Agriculture +520837,International Trade,International Trade +520836,International Trade,International Trade +520688,International Trade,International Trade +520687,International Trade,International Trade +520686,International Trade,International Trade +520685,International Trade,International Trade +520544,International Trade,International Trade +520453,International Trade,International Trade +520451,International Trade,International Trade +520359,International Trade,International Trade +519913,International Trade,International Trade +519421,International Trade,International Trade +519247,International Trade,International Trade +519200,International Trade,International Trade +519149,International Trade,International Trade +519081,International Trade,International Trade +530933,International Trade,International Trade +530293,International Trade,International Trade +530214,International Trade,International Trade +528111,International Trade,International Trade +528110,International Trade,International Trade +528109,International Trade,International Trade +528108,International Trade,International Trade +527021,International Trade,International Trade +526943,International Trade,International Trade +526942,International Trade,International Trade +526941,International Trade,International Trade +526867,International Trade,International Trade +526866,International Trade,International Trade +526865,International Trade,International Trade +526864,International Trade,International Trade +526863,International Trade,International Trade +524082,International Trade,International Trade +524081,International Trade,International Trade +524080,International Trade,International Trade +524079,International Trade,International Trade +524078,International Trade,International Trade +521839,International Trade,International Trade +521838,International Trade,International Trade +521832,International Trade,International Trade +521438,International Trade,International Trade +521388,International Trade,International Trade +521386,International Trade,International Trade +521385,International Trade,International Trade +521126,International Trade,International Trade +521125,International Trade,International Trade +521028,International Trade,International Trade +519421,Federal-Provincial Relations,Federal-Provincial Relations +519247,Federal-Provincial Relations,Federal-Provincial Relations +521839,Small Business,Small Business +521838,Small Business,Small Business +530933,Small Business,Small Business +528108,Small Business,Small Business +524080,Small Business,Small Business +524079,Small Business,Small Business +525233,Child Services,Child Services +525231,Child Services,Child Services +544236,Child Services,Child Services +544235,Child Services,Child Services +544233,Child Services,Child Services +541771,Child Services,Child Services +541769,Child Services,Child Services +540158,Child Services,Child Services +540151,Child Services,Child Services +540141,Child Services,Child Services +538408,Child Services,Child Services +535964,Child Services,Child Services +535963,Child Services,Child Services +531376,Child Services,Child Services +525236,Child Services,Child Services +519124,Health,Health +524833,Climate,Climate +524829,Climate,Climate +528189,Employment and Training,Employment and Training +519002,Employment and Training,Employment and Training +541351,Employment and Training,Employment and Training +523443,Labour,Labour +523443,Transportation,Transportation +525573,Health,Health +529649,Infrastructure,Infrastructure +519354,Official Languages,Bilinguisme/Langues officielles +519351,Official Languages,Bilinguisme/Langues officielles +542157,Official Languages,Bilinguisme/Langues officielles +519354,Justice and Law Enforcement,Justice et application des lois +519351,Justice and Law Enforcement,Justice et application des lois +529613,Budget,Budget +529608,Budget,Budget +532953,Budget,Budget +529608,Housing,Housing +529606,Housing,Housing +535859,Housing,Housing +532953,Housing,Housing +529622,Housing,Housing +529618,Housing,Housing +529613,Infrastructure,Infrastructure +529608,Infrastructure,Infrastructure +519103,Foreign Affairs,Foreign Affairs +520257,Education,Education +520256,Education,Education +520407,Environment,Environment +533419,Consumer Issues,Consumer Issues +523679,Environment,Environment +523598,Environment,Environment +525705,Environment,Environment +523598,Economic Development,Economic Development +519456,Economic Development,Economic Development +525705,Economic Development,Economic Development +525692,Economic Development,Economic Development +525692,Industry,Industry +523679,Federal-Provincial Relations,Federal-Provincial Relations +519456,Federal-Provincial Relations,Federal-Provincial Relations +525705,Federal-Provincial Relations,Federal-Provincial Relations +523598,Fisheries,Fisheries +519456,Fisheries,Fisheries +525705,Fisheries,Fisheries +525692,Fisheries,Fisheries +519456,International Relations,International Relations +519456,International Trade,International Trade +523869,Security,National Security/Security +520798,Security,National Security/Security +538969,Security,National Security/Security +522446,Regional Development,Regional Development +522444,Regional Development,Regional Development +536122,Regional Development,Regional Development +530097,Regional Development,Regional Development +525715,Research and Development,Research and Development +522446,Research and Development,Research and Development +522444,Budget,Budget +522446,Economic Development,Economic Development +522444,Economic Development,Economic Development +536122,Economic Development,Economic Development +530097,Economic Development,Economic Development +525715,Industry,Industry +522444,Industry,Industry +520141,Natural Resources,Natural Resources +519866,Environment,Environment +526152,Health,Health +526149,Health,Health +531201,Health,Health +529817,Employment and Training,Employment and Training +520243,Employment and Training,Employment and Training +538750,Employment and Training,Employment and Training +520242,International Trade,International Trade +520239,International Trade,International Trade +519588,Natural Resources,Natural Resources +527449,Intellectual Property,Intellectual Property +522912,Economic Development,Economic Development +522912,Small Business,Small Business +522912,Tourism,Tourism +520841,Health,Health +520844,Infrastructure,Infrastructure +527617,Immigration,Immigration +540523,Taxation and Finance,Impôts et finances +527894,Forestry,Forestry +536547,Environment,Environment +536546,Taxation and Finance,Taxation and Finance +536550,International Trade,International Trade +536545,Climate,Climate +522653,Industry,Industry +518616,Agriculture,Agriculture +518616,Budget,Budget +518616,Climate,Climate +518616,Energy,Energy +518616,Environment,Environment +518616,Justice and Law Enforcement,Justice and Law Enforcement +525181,Municipalities,Municipalities +518616,Taxation and Finance,Taxation and Finance +518616,Transportation,Transportation +527051,Climate,Climate +525788,Fisheries,Fisheries +519052,Economic Development,Economic Development +525763,Environment,Environment +519052,Federal-Provincial Relations,Federal-Provincial Relations +525780,Foreign Affairs,Foreign Affairs +520583,Industry,Industry +525788,Internal Trade,Internal Trade +525766,International Relations,International Relations +519052,International Trade,International Trade +525788,Labour,Labour +525788,Municipalities,Municipalities +518662,Internal Trade,Internal Trade +526819,Economic Development,Economic Development +526819,Environment,Environment +526819,Research and Development,Research and Development +521652,Budget,Budget +521649,Economic Development,Economic Development +523501,Industry,Industry +523501,Infrastructure,Infrastructure +522026,International Trade,International Trade +521652,Regional Development,Regional Development +525751,Research and Development,Research and Development +525751,Small Business,Small Business +525751,Taxation and Finance,Taxation and Finance +524074,Economic Development,Economic Development +524074,Health,Health +524074,Research and Development,Research and Development +544815,Justice and Law Enforcement,Justice and Law Enforcement +524446,Health,Health +524446,Industry,Industry +541119,Industry,Industry +527959,Climate,Climate +527959,Energy,Energy +527959,Environment,Environment +520405,Federal-Provincial Relations,Federal-Provincial Relations +525930,Education,Education +525930,Industry,Industry +525930,Labour,Labour +525930,Employment and Training,Employment and Training +525930,Budget,Budget +525930,Climate,Climate +520693,Budget,Budget +520901,Economic Development,Economic Development +520901,Government Procurement,Government Procurement +542180,Health,Health +520901,Internal Trade,Internal Trade +528403,Research and Development,Research and Development +528403,Small Business,Small Business +518742,Natural Resources,Natural Resources +520441,Energy,Energy +520441,Environment,Environment +520441,Industry,Industry +520441,Transportation,Transportation +527502,Consumer Issues,Consumer Issues +542426,Health,Health +542426,Housing,Housing +542567,Energy,Energy +521225,Environment,Environment +527467,Consumer Issues,Consumer Issues +533441,Consumer Issues,Consumer Issues +519466,Transportation,Transports +540371,Industry,Industry +540371,Mining,Mining +518902,International Trade,International Trade +519200,Agriculture,Agriculture +520838,International Trade,International Trade +520836,Federal-Provincial Relations,Federal-Provincial Relations +520688,Foreign Affairs,Foreign Affairs +524078,Small Business,Small Business +520582,Consumer Issues,Consumer Issues +520582,Education,Education +525234,Child Services,Child Services +519124,Government Procurement,Government Procurement +521907,Health,Health +519124,Infrastructure,Infrastructure +524835,Climate,Climate +518955,Industry,Industry +518974,Employment and Training,Employment and Training +531133,Employment and Training,Employment and Training +538113,Labour,Labour +538108,Transportation,Transportation +538108,Infrastructure,Infrastructure +529369,Intellectual Property,Intellectual Property +525757,Health,Health +523256,Climate,Climate +523256,Environment,Environment +540012,Infrastructure,Infrastructure +539988,Transportation,Transportation +539609,Official Languages,Bilinguisme/Langues officielles +542157,Justice and Law Enforcement,Justice et application des lois +529622,Budget,Budget +529613,Housing,Housing +529622,Infrastructure,Infrastructure +520180,Foreign Affairs,Foreign Affairs +519106,Foreign Affairs,Foreign Affairs +530384,Education,Education +536671,Environment,Environment +533420,Consumer Issues,Consumer Issues +532662,Employment and Training,Emploi et formation +521169,Justice and Law Enforcement,Justice et application des lois +519198,Transportation,Transportation +525705,Municipalities,Municipalities +525692,Environment,Environment +523679,Economic Development,Economic Development +525705,Labour,Labour +525705,Foreign Affairs,Foreign Affairs +525705,Industry,Industry +525692,Federal-Provincial Relations,Federal-Provincial Relations +523679,Fisheries,Fisheries +525705,International Relations,International Relations +525705,International Trade,International Trade +527343,Security,National Security/Security +525715,Regional Development,Regional Development +536122,International Trade,International Trade +525715,Taxation and Finance,Taxation and Finance +530097,Research and Development,Research and Development +525715,Small Business,Small Business +525715,Budget,Budget +536122,Infrastructure,Infrastructure +522444,Employment and Training,Employment and Training +525715,Economic Development,Economic Development +536122,Industry,Industry +524469,Infrastructure,Infrastructure +524473,Research and Development,Research and Development +519217,Economic Development,Economic Development +519217,Infrastructure,Infrastructure +524715,Natural Resources,Natural Resources +523669,Health,Health +519351,Employment and Training,Employment and Training +519295,Natural Resources,Natural Resources +519866,Energy,Energy +520346,Environment,Environment +519343,Labour,Labour +519344,Labour,Labour +531200,Health,Health +519390,Security,Security +536350,Employment and Training,Employment and Training +533728,International Trade,International Trade +529816,Labour,Labour +539602,Intellectual Property,Intellectual Property +519575,Health,Health +541837,Natural Resources,Natural Resources +519655,Animal Welfare,Animal Welfare +519664,Animal Welfare,Animal Welfare +527564,Intellectual Property,Intellectual Property +538149,Intellectual Property,Intellectual Property +522969,Transportation,Transportation +519843,Agriculture,Agriculture +530989,Climate,Climate +528195,Environment,Environment +519882,Federal-Provincial Relations,Federal-Provincial Relations +519866,Natural Resources,Natural Resources +533486,Consumer Issues,Consumer Issues +533486,Small Business,Small Business +519959,Tourism,Tourism +519969,Tourism,Tourism +519972,Tourism,Tourism +519973,Tourism,Tourism +519977,Tourism,Tourism +519981,Tourism,Tourism +519987,Tourism,Tourism +534705,International Trade,International Trade +520087,Economic Development,Economic Development +520093,Health,Health +520094,Economic Development,Economic Development +526474,Energy,Energy +526474,Environment,Environment +526474,Industry,Industry +526477,Infrastructure,Infrastructure +526474,Natural Resources,Natural Resources +529732,Research and Development,Research and Development +536018,Transportation,Transportation +526474,Climate,Climate +529306,Education,Education +529306,Employment and Training,Employment and Training +529306,Health,Health +529306,Immigration,Immigration +520220,Economic Development,Economic Development +520233,Employment and Training,Employment and Training +526988,Climate,Climate +526988,Environment,Environment +520244,Health,Health +531095,Health,Health +520252,Economic Development,Economic Development +520252,Regional Development,Regional Development +538151,Government Procurement,Government Procurement +526504,Foreign Affairs,Foreign Affairs +527173,Infrastructure,Infrastructure +520283,Forestry,Forestry +520284,Forestry,Forestry +525720,Transportation,Transportation +525738,Research and Development,Research and Development +522115,Small Business,Small Business +522112,International Trade,International Trade +522113,Economic Development,Economic Development +525738,Taxation and Finance,Taxation and Finance +522114,Regional Development,Regional Development +525738,Infrastructure,Infrastructure +522114,Budget,Budget +525738,Industry,Industry +524526,Agriculture,Agriculture +524526,International Trade,International Trade +534799,Climate,Climate +534799,Employment and Training,Employment and Training +534796,Energy,Energy +534799,Environment,Environment +525376,Industry,Industry +527985,Infrastructure,Infrastructure +534796,Natural Resources,Natural Resources +534799,Small Business,Small Business +541329,Climate,Climate +541329,Employment and Training,Employment and Training +534794,Energy,Energy +541329,Environment,Environment +541329,Industry,Industry +541329,Natural Resources,Natural Resources +541329,Research and Development,Research and Development +534800,Small Business,Small Business +520346,Natural Resources,Natural Resources +520349,Consumer Issues,Consumer Issues +539271,Industry,Industry +520349,Taxation and Finance,Taxation and Finance +539271,Tourism,Tourism +540768,Economic Development,Economic Development +524898,Economic Development,Economic Development +527395,Industry,Industry +532769,Infrastructure,Infrastructure +524898,Research and Development,Research and Development +524963,Climate,Climate +524963,Energy,Energy +524963,Environment,Environment +524963,Fisheries,Fisheries +524963,Industry,Industry +524963,Infrastructure,Infrastructure +523599,Health,Health +531712,Research and Development,Research and Development +524233,Economic Development,Economic Development +524233,Energy,Energy +524233,Fisheries,Fisheries +531403,Economic Development,Economic Development +526932,Transportation,Transportation +526932,Environment,Environment +521310,Environment,Environment +538715,Budget,Budget +538715,Climate,Climate +538715,Energy,Energy +538715,Environment,Environment +535578,Industry,Industry +535578,Infrastructure,Infrastructure +538715,International Relations,International Relations +538715,International Trade,International Trade +535578,Labour,Labour +538715,Mining,Mining +535578,Regional Development,Regional Development +535578,Transportation,Transportation +527448,Intellectual Property,Intellectual Property +538902,Intellectual Property,Intellectual Property +533820,Intellectual Property,Intellectual Property +533819,Intellectual Property,Intellectual Property +533817,Intellectual Property,Intellectual Property +527191,Intellectual Property,Intellectual Property +523873,Intellectual Property,Intellectual Property +520499,Transportation,Transportation +519795,Transportation,Transportation +528196,Transportation,Transportation +530603,Climate,Climate +528195,Climate,Climate +541104,Climate,Climate +539154,Climate,Climate +539153,Climate,Climate +535961,Climate,Climate +524251,Environment,Environment +521415,Environment,Environment +535962,Environment,Environment +534688,International Trade,International Trade +520066,International Trade,International Trade +526470,Energy,Energy +523294,Energy,Energy +544281,Energy,Energy +536020,Energy,Energy +536019,Energy,Energy +536018,Energy,Energy +536017,Energy,Energy +536016,Energy,Energy +529732,Energy,Energy +529730,Energy,Energy +526477,Energy,Energy +526470,Environment,Environment +523294,Environment,Environment +544281,Environment,Environment +536020,Environment,Environment +536019,Environment,Environment +536018,Environment,Environment +536017,Environment,Environment +536016,Environment,Environment +529732,Environment,Environment +529730,Environment,Environment +526477,Environment,Environment +526470,Industry,Industry +523294,Industry,Industry +544281,Industry,Industry +541984,Industry,Industry +536020,Industry,Industry +536019,Industry,Industry +536018,Industry,Industry +536017,Industry,Industry +536016,Industry,Industry +526477,Industry,Industry +526474,Infrastructure,Infrastructure +526470,Infrastructure,Infrastructure +536020,Infrastructure,Infrastructure +536019,Infrastructure,Infrastructure +536018,Infrastructure,Infrastructure +536017,Infrastructure,Infrastructure +536016,Infrastructure,Infrastructure +526470,Natural Resources,Natural Resources +523294,Natural Resources,Natural Resources +526477,Natural Resources,Natural Resources +529730,Research and Development,Research and Development +536017,Transportation,Transportation +536016,Transportation,Transportation +536020,Transportation,Transportation +536019,Transportation,Transportation +526470,Climate,Climate +523294,Climate,Climate +544281,Climate,Climate +529732,Climate,Climate +529730,Climate,Climate +526477,Climate,Climate +525525,Education,Education +525522,Education,Education +525525,Employment and Training,Employment and Training +525522,Employment and Training,Employment and Training +525522,Health,Health +525525,Immigration,Immigration +531016,Government Procurement,Government Procurement +530510,Government Procurement,Government Procurement +522114,Small Business,Small Business +522112,Small Business,Small Business +525738,Small Business,Small Business +522112,Economic Development,Economic Development +522075,Economic Development,Economic Development +542739,Economic Development,Economic Development +525738,Economic Development,Economic Development +525193,Economic Development,Economic Development +522116,Economic Development,Economic Development +522115,Economic Development,Economic Development +522114,Economic Development,Economic Development +522113,Regional Development,Regional Development +522075,Regional Development,Regional Development +525738,Regional Development,Regional Development +522116,Regional Development,Regional Development +522115,Regional Development,Regional Development +522113,Budget,Budget +522075,Budget,Budget +525738,Budget,Budget +522116,Budget,Budget +522115,Budget,Budget +524522,Agriculture,Agriculture +524520,Agriculture,Agriculture +524538,Agriculture,Agriculture +524533,Agriculture,Agriculture +524532,Agriculture,Agriculture +524529,Agriculture,Agriculture +524527,Agriculture,Agriculture +524522,International Trade,International Trade +524520,International Trade,International Trade +524538,International Trade,International Trade +524533,International Trade,International Trade +524532,International Trade,International Trade +524529,International Trade,International Trade +524527,International Trade,International Trade +534796,Climate,Climate +525376,Climate,Climate +534796,Employment and Training,Employment and Training +527985,Employment and Training,Employment and Training +525376,Energy,Energy +534796,Environment,Environment +534796,Small Business,Small Business +527985,Small Business,Small Business +534800,Climate,Climate +525373,Climate,Climate +534800,Employment and Training,Employment and Training +534794,Employment and Training,Employment and Training +525373,Energy,Energy +534800,Environment,Environment +534794,Environment,Environment +525373,Industry,Industry +534794,Natural Resources,Natural Resources +534794,Small Business,Small Business +520349,Industry,Industry +520349,Tourism,Tourism +536327,Economic Development,Economic Development +532765,Economic Development,Economic Development +527390,Economic Development,Economic Development +527389,Economic Development,Economic Development +524904,Economic Development,Economic Development +524903,Economic Development,Economic Development +524010,Economic Development,Economic Development +520865,Economic Development,Economic Development +540767,Economic Development,Economic Development +532769,Economic Development,Economic Development +530648,Economic Development,Economic Development +527395,Economic Development,Economic Development +527392,Economic Development,Economic Development +527391,Economic Development,Economic Development +524899,Economic Development,Economic Development +527392,Industry,Industry +520865,Industry,Industry +530648,Infrastructure,Infrastructure +524010,Research and Development,Research and Development +520865,Research and Development,Research and Development +530648,Research and Development,Research and Development +527395,Research and Development,Research and Development +522426,Health,Health +536380,Health,Health +536146,Health,Health +536121,Health,Health +536120,Health,Health +536118,Health,Health +532802,Health,Health +532783,Health,Health +532781,Health,Health +531712,Health,Health +531710,Health,Health +531709,Health,Health +528774,Health,Health +528772,Health,Health +527968,Health,Health +527967,Health,Health +527966,Health,Health +527965,Health,Health +527964,Health,Health +527963,Health,Health +527962,Health,Health +527961,Health,Health +527960,Health,Health +525685,Health,Health +525680,Health,Health +525676,Health,Health +525674,Health,Health +525671,Health,Health +523601,Health,Health +523600,Health,Health +531710,Research and Development,Research and Development +531709,Research and Development,Research and Development +528774,Research and Development,Research and Development +528772,Research and Development,Research and Development +527968,Research and Development,Research and Development +527967,Research and Development,Research and Development +527966,Research and Development,Research and Development +527965,Research and Development,Research and Development +527964,Research and Development,Research and Development +527963,Research and Development,Research and Development +527962,Research and Development,Research and Development +527961,Research and Development,Research and Development +527960,Research and Development,Research and Development +525685,Research and Development,Research and Development +525680,Research and Development,Research and Development +525676,Research and Development,Research and Development +525674,Research and Development,Research and Development +525671,Research and Development,Research and Development +523601,Research and Development,Research and Development +523600,Research and Development,Research and Development +523599,Research and Development,Research and Development +522426,Research and Development,Research and Development +536380,Research and Development,Research and Development +536146,Research and Development,Research and Development +536121,Research and Development,Research and Development +536120,Research and Development,Research and Development +536118,Research and Development,Research and Development +532802,Research and Development,Research and Development +532783,Research and Development,Research and Development +532781,Research and Development,Research and Development +521033,Economic Development,Economic Development +521033,Energy,Energy +521033,Fisheries,Fisheries +520369,Economic Development,Economic Development +524425,Transportation,Transportation +524425,Environment,Environment +535601,Budget,Budget +535578,Budget,Budget +541787,Budget,Budget +535601,Climate,Climate +535578,Climate,Climate +541787,Climate,Climate +535601,Energy,Energy +535578,Energy,Energy +541787,Energy,Energy +535601,Environment,Environment +535578,Environment,Environment +541787,Environment,Environment +526582,Industry,Industry +526580,Industry,Industry +541787,Industry,Industry +538715,Industry,Industry +535601,Industry,Industry +526582,Infrastructure,Infrastructure +526580,Infrastructure,Infrastructure +541787,Infrastructure,Infrastructure +538715,Infrastructure,Infrastructure +535601,Infrastructure,Infrastructure +535601,International Relations,International Relations +535578,International Relations,International Relations +541787,International Relations,International Relations +535601,International Trade,International Trade +535578,International Trade,International Trade +541787,International Trade,International Trade +526582,Labour,Labour +526580,Labour,Labour +541787,Labour,Labour +538715,Labour,Labour +535601,Labour,Labour +535601,Mining,Mining +535578,Mining,Mining +526582,Mining,Mining +526580,Mining,Mining +541787,Mining,Mining +526582,Regional Development,Regional Development +526580,Regional Development,Regional Development +541787,Regional Development,Regional Development +538715,Regional Development,Regional Development +535601,Regional Development,Regional Development +526582,Transportation,Transportation +526580,Transportation,Transportation +541787,Transportation,Transportation +538715,Transportation,Transportation +535601,Transportation,Transportation +501697,Arts and Culture,Arts and Culture +501696,Arts and Culture,Arts and Culture +508954,Arts and Culture,Arts and Culture +500941,Aboriginal Affairs,Aboriginal Affairs +500938,Aboriginal Affairs,Aboriginal Affairs +506790,Aboriginal Affairs,Aboriginal Affairs +506789,Aboriginal Affairs,Aboriginal Affairs +500947,Aboriginal Affairs,Aboriginal Affairs +500945,Aboriginal Affairs,Aboriginal Affairs +500943,Aboriginal Affairs,Aboriginal Affairs +508535,Aboriginal Affairs,Aboriginal Affairs +513058,Telecommunications,Telecommunications +509982,Telecommunications,Telecommunications +500698,Science and Technology,Science and Technology +509983,Telecommunications,Telecommunications +503880,Telecommunications,Telecommunications +513061,Telecommunications,Telecommunications +524062,Science and Technology,Science and Technology +524060,Science and Technology,Science and Technology +500523,Broadcasting,Broadcasting +500522,Broadcasting,Broadcasting +506196,Broadcasting,Broadcasting +506260,Aboriginal Affairs,Aboriginal Affairs +504593,Aboriginal Affairs,Aboriginal Affairs +537264,Aboriginal Affairs,Aboriginal Affairs +537255,Aboriginal Affairs,Aboriginal Affairs +527319,Aboriginal Affairs,Aboriginal Affairs +500494,Aboriginal Affairs,Aboriginal Affairs +538873,Aboriginal Affairs,Aboriginal Affairs +506807,Aboriginal Affairs,Aboriginal Affairs +506259,Aboriginal Affairs,Aboriginal Affairs +503808,Aboriginal Affairs,Aboriginal Affairs +503806,Aboriginal Affairs,Aboriginal Affairs +541104,Aboriginal Affairs,Aboriginal Affairs +539153,Aboriginal Affairs,Aboriginal Affairs +535962,Aboriginal Affairs,Aboriginal Affairs +535961,Aboriginal Affairs,Aboriginal Affairs +531643,Aboriginal Affairs,Aboriginal Affairs +530989,Aboriginal Affairs,Aboriginal Affairs +530603,Aboriginal Affairs,Aboriginal Affairs +528195,Aboriginal Affairs,Aboriginal Affairs +524251,Aboriginal Affairs,Aboriginal Affairs +521415,Aboriginal Affairs,Aboriginal Affairs +519843,Aboriginal Affairs,Aboriginal Affairs +506334,Aboriginal Affairs,Aboriginal Affairs +504133,Aboriginal Affairs,Aboriginal Affairs +504132,Aboriginal Affairs,Aboriginal Affairs +534218,Aboriginal Affairs,Aboriginal Affairs +534214,Aboriginal Affairs,Aboriginal Affairs +534205,Aboriginal Affairs,Aboriginal Affairs +524603,Aboriginal Affairs,Aboriginal Affairs +517125,Aboriginal Affairs,Aboriginal Affairs +510396,Aboriginal Affairs,Aboriginal Affairs +507653,Aboriginal Affairs,Aboriginal Affairs +507651,Aboriginal Affairs,Aboriginal Affairs +507650,Aboriginal Affairs,Aboriginal Affairs +507649,Aboriginal Affairs,Aboriginal Affairs +506165,Science and Technology,Science and Technology +506088,Science and Technology,Science and Technology +527268,Science and Technology,Science and Technology +522567,Science and Technology,Science and Technology +518756,Science and Technology,Science and Technology +516575,Science and Technology,Science and Technology +514765,Science and Technology,Science and Technology +514194,Science and Technology,Science and Technology +513637,Science and Technology,Science and Technology +511995,Science and Technology,Science and Technology +511754,Science and Technology,Science and Technology +511680,Science and Technology,Science and Technology +511175,Science and Technology,Science and Technology +509408,Science and Technology,Science and Technology +509081,Science and Technology,Science and Technology +507211,Science and Technology,Science and Technology +506888,Science and Technology,Science and Technology +506406,Science and Technology,Science and Technology +520137,Aboriginal Affairs,Aboriginal Affairs +520136,Aboriginal Affairs,Aboriginal Affairs +513159,Aboriginal Affairs,Aboriginal Affairs +508464,Aboriginal Affairs,Aboriginal Affairs +504181,Aboriginal Affairs,Aboriginal Affairs +504180,Aboriginal Affairs,Aboriginal Affairs +504179,Aboriginal Affairs,Aboriginal Affairs +501148,Aboriginal Affairs,Aboriginal Affairs +538353,Aboriginal Affairs,Aboriginal Affairs +535055,Aboriginal Affairs,Aboriginal Affairs +507645,Aboriginal Affairs,Aboriginal Affairs +504131,Aboriginal Affairs,Aboriginal Affairs +524598,Aboriginal Affairs,Aboriginal Affairs +524583,Aboriginal Affairs,Aboriginal Affairs +522336,Aboriginal Affairs,Aboriginal Affairs +522334,Aboriginal Affairs,Aboriginal Affairs +514534,Aboriginal Affairs,Aboriginal Affairs +510387,Aboriginal Affairs,Aboriginal Affairs +510386,Aboriginal Affairs,Aboriginal Affairs +510385,Aboriginal Affairs,Aboriginal Affairs +510384,Aboriginal Affairs,Aboriginal Affairs +507645,Science and Technology,Science and Technology +504131,Science and Technology,Science and Technology +524598,Science and Technology,Science and Technology +524583,Science and Technology,Science and Technology +522336,Science and Technology,Science and Technology +522334,Science and Technology,Science and Technology +514534,Science and Technology,Science and Technology +510387,Science and Technology,Science and Technology +510386,Science and Technology,Science and Technology +510385,Science and Technology,Science and Technology +510384,Science and Technology,Science and Technology +522334,Telecommunications,Telecommunications +514534,Telecommunications,Telecommunications +524598,Telecommunications,Telecommunications +511093,Aboriginal Affairs,Aboriginal Affairs +509028,Aboriginal Affairs,Aboriginal Affairs +518712,Broadcasting,Broadcasting +501616,Broadcasting,Broadcasting +503026,Science and Technology,Science and Technology +503025,Science and Technology,Science and Technology +512061,Science and Technology,Science and Technology +512060,Science and Technology,Science and Technology +513659,Science and Technology,Science and Technology +513658,Science and Technology,Science and Technology +513657,Science and Technology,Science and Technology +512063,Science and Technology,Science and Technology +511983,Science and Technology,Science and Technology +505200,Science and Technology,Science and Technology +542486,Science and Technology,Science and Technology +542457,Science and Technology,Science and Technology +540633,Science and Technology,Science and Technology +536578,Science and Technology,Science and Technology +534016,Science and Technology,Science and Technology +530378,Science and Technology,Science and Technology +527338,Science and Technology,Science and Technology +523863,Science and Technology,Science and Technology +538979,Science and Technology,Science and Technology +515942,Telecommunications,Telecommunications +505843,Telecommunications,Telecommunications +535992,Telecommunications,Telecommunications +535991,Telecommunications,Telecommunications +529628,Telecommunications,Telecommunications +529627,Telecommunications,Telecommunications +526075,Science and Technology,Science and Technology +522696,Science and Technology,Science and Technology +511424,Science and Technology,Science and Technology +506869,Broadcasting,Broadcasting +503059,Aboriginal Affairs,Aboriginal Affairs +506304,Telecommunications,Telecommunications +506303,Telecommunications,Telecommunications +538741,Telecommunications,Telecommunications +508249,Science and Technology,Science and Technology +508247,Science and Technology,Science and Technology +529430,Science and Technology,Science and Technology +529429,Science and Technology,Science and Technology +526245,Science and Technology,Science and Technology +510625,Science and Technology,Science and Technology +510619,Science and Technology,Science and Technology +510614,Science and Technology,Science and Technology +510612,Science and Technology,Science and Technology +510609,Science and Technology,Science and Technology +508259,Science and Technology,Science and Technology +508258,Science and Technology,Science and Technology +512465,Science and Technology,Science and Technology +506332,Science and Technology,Science and Technology +527014,Science and Technology,Science and Technology +524061,Science and Technology,Science and Technology +522405,Science and Technology,Science and Technology +515268,Science and Technology,Science and Technology +515067,Science and Technology,Science and Technology +506263,Aboriginal Affairs,Aboriginal Affairs +504602,Aboriginal Affairs,Aboriginal Affairs +511103,Science and Technology,Science and Technology +506463,Science and Technology,Science and Technology +507872,Science and Technology,Science and Technology +530364,Science and Technology,Science and Technology +527348,Science and Technology,Science and Technology +542467,Science and Technology,Science and Technology +538975,Science and Technology,Science and Technology +536582,Science and Technology,Science and Technology +536579,Science and Technology,Science and Technology +523891,Science and Technology,Science and Technology +526891,Science and Technology,Science and Technology +511934,Science and Technology,Science and Technology +536334,Science and Technology,Science and Technology +512888,Aboriginal Affairs,Aboriginal Affairs +511726,Aboriginal Affairs,Aboriginal Affairs +545080,Aboriginal Affairs,Aboriginal Affairs +544536,Aboriginal Affairs,Aboriginal Affairs +542169,Aboriginal Affairs,Aboriginal Affairs +518537,Aboriginal Affairs,Aboriginal Affairs +509517,Arts and Culture,Arts and Culture +509358,Arts and Culture,Arts and Culture +513647,Arts and Culture,Arts and Culture +542405,Broadcasting,Broadcasting +533276,Broadcasting,Broadcasting +517619,Science and Technology,Science and Technology +514182,Science and Technology,Science and Technology +538601,Science and Technology,Science and Technology +530866,Science and Technology,Science and Technology +530863,Science and Technology,Science and Technology +526527,Science and Technology,Science and Technology +523282,Science and Technology,Science and Technology +518753,Science and Technology,Science and Technology +518752,Science and Technology,Science and Technology +518751,Science and Technology,Science and Technology +518750,Science and Technology,Science and Technology +518024,Science and Technology,Science and Technology +518022,Science and Technology,Science and Technology +518021,Science and Technology,Science and Technology +518019,Science and Technology,Science and Technology +518018,Science and Technology,Science and Technology +518014,Science and Technology,Science and Technology +518012,Science and Technology,Science and Technology +518010,Science and Technology,Science and Technology +518007,Science and Technology,Science and Technology +518005,Science and Technology,Science and Technology +517998,Science and Technology,Science and Technology +517996,Science and Technology,Science and Technology +517993,Science and Technology,Science and Technology +517991,Science and Technology,Science and Technology +517649,Science and Technology,Science and Technology +517647,Science and Technology,Science and Technology +541975,Science and Technology,Science and Technology +507859,Arts and Culture,Arts and Culture +508847,Science and Technology,Sciences et technologies +508837,Science and Technology,Sciences et technologies +513152,Science and Technology,Sciences et technologies +513151,Science and Technology,Sciences et technologies +513150,Science and Technology,Sciences et technologies +513147,Science and Technology,Sciences et technologies +511128,Science and Technology,Sciences et technologies +511127,Science and Technology,Sciences et technologies +511124,Science and Technology,Sciences et technologies +509670,Science and Technology,Sciences et technologies +509669,Science and Technology,Sciences et technologies +509668,Science and Technology,Sciences et technologies +509667,Science and Technology,Sciences et technologies +509666,Science and Technology,Sciences et technologies +509665,Science and Technology,Sciences et technologies +512406,Aboriginal Affairs,Aboriginal Affairs +512404,Aboriginal Affairs,Aboriginal Affairs +519729,Aboriginal Affairs,Aboriginal Affairs +519725,Aboriginal Affairs,Aboriginal Affairs +517883,Aboriginal Affairs,Aboriginal Affairs +512435,Aboriginal Affairs,Aboriginal Affairs +525900,Broadcasting,Broadcasting +525899,Broadcasting,Broadcasting +521684,Broadcasting,Broadcasting +521683,Broadcasting,Broadcasting +521681,Broadcasting,Broadcasting +519453,Broadcasting,Broadcasting +519451,Broadcasting,Broadcasting +517228,Broadcasting,Broadcasting +504155,Broadcasting,Broadcasting +542611,Broadcasting,Broadcasting +542610,Broadcasting,Broadcasting +542609,Broadcasting,Broadcasting +542608,Broadcasting,Broadcasting +541814,Broadcasting,Broadcasting +541813,Broadcasting,Broadcasting +538003,Broadcasting,Broadcasting +537366,Broadcasting,Broadcasting +537363,Broadcasting,Broadcasting +534051,Broadcasting,Broadcasting +532251,Broadcasting,Broadcasting +528971,Broadcasting,Broadcasting +528970,Broadcasting,Broadcasting +528966,Broadcasting,Broadcasting +533015,Science and Technology,Science and Technology +516294,Science and Technology,Science and Technology +536581,Science and Technology,Science and Technology +530367,Science and Technology,Science and Technology +527340,Science and Technology,Science and Technology +536581,Aboriginal Affairs,Aboriginal Affairs +530367,Aboriginal Affairs,Aboriginal Affairs +527340,Aboriginal Affairs,Aboriginal Affairs +509026,Aboriginal Affairs,Aboriginal Affairs +505915,Aboriginal Affairs,Aboriginal Affairs +544697,Science and Technology,Science and Technology +509329,Science and Technology,Science and Technology +509183,Science and Technology,Science and Technology +509491,Science and Technology,Science and Technology +506440,Aboriginal Affairs,Aboriginal Affairs +512830,Aboriginal Affairs,Aboriginal Affairs +509407,Aboriginal Affairs,Aboriginal Affairs +506138,Aboriginal Affairs,Affaires autochtones +511252,Arts and Culture,Arts and Culture +511315,Science and Technology,Science and Technology +510980,Science and Technology,Science and Technology +524318,Science and Technology,Science and Technology +507064,Telecommunications,Telecommunications +507063,Telecommunications,Telecommunications +514019,Telecommunications,Telecommunications +512550,Telecommunications,Telecommunications +512546,Telecommunications,Telecommunications +512545,Telecommunications,Telecommunications +512543,Telecommunications,Telecommunications +507814,Arts and Culture,Arts and Culture +510942,Arts and Culture,Arts and Culture +509189,Arts and Culture,Arts and Culture +526831,Arts and Culture,Arts and Culture +524845,Arts and Culture,Arts and Culture +523688,Arts and Culture,Arts and Culture +523686,Arts and Culture,Arts and Culture +523468,Arts and Culture,Arts and Culture +520377,Arts and Culture,Arts and Culture +512322,Arts and Culture,Arts and Culture +509292,Aboriginal Affairs,Aboriginal Affairs +506734,Science and Technology,Sciences et technologies +506733,Science and Technology,Sciences et technologies +512161,Science and Technology,Sciences et technologies +509525,Science and Technology,Sciences et technologies +509410,Science and Technology,Sciences et technologies +509366,Science and Technology,Sciences et technologies +509303,Science and Technology,Sciences et technologies +509302,Science and Technology,Sciences et technologies +509245,Science and Technology,Sciences et technologies +508078,Science and Technology,Sciences et technologies +507449,Science and Technology,Sciences et technologies +507043,Science and Technology,Sciences et technologies +521915,Science and Technology,Science and Technology +520826,Science and Technology,Science and Technology +527271,Science and Technology,Science and Technology +510422,Telecommunications,Telecommunications +535352,Science and Technology,Science and Technology +534643,Science and Technology,Science and Technology +512084,Arts and Culture,Arts and Culture +506704,Arts and Culture,Arts and Culture +509648,Science and Technology,Science and Technology +518845,Science and Technology,Science and Technology +511655,Science and Technology,Science and Technology +507476,Aboriginal Affairs,Affaires autochtones +507475,Aboriginal Affairs,Affaires autochtones +509477,Aboriginal Affairs,Affaires autochtones +509475,Aboriginal Affairs,Affaires autochtones +519065,Arts and Culture,Arts and Culture +527024,Arts and Culture,Arts and Culture +527023,Arts and Culture,Arts and Culture +524925,Arts and Culture,Arts and Culture +524923,Arts and Culture,Arts and Culture +524917,Arts and Culture,Arts and Culture +522364,Arts and Culture,Arts and Culture +522353,Arts and Culture,Arts and Culture +520845,Arts and Culture,Arts and Culture +524926,Arts and Culture,Arts and Culture +514139,Telecommunications,Telecommunications +514137,Telecommunications,Telecommunications +517358,Telecommunications,Telecommunications +517357,Telecommunications,Telecommunications +509871,Science and Technology,Science and Technology +509652,Science and Technology,Science and Technology +519213,Science and Technology,Science and Technology +515038,Science and Technology,Science and Technology +542430,Science and Technology,Science and Technology +539737,Science and Technology,Science and Technology +538727,Science and Technology,Science and Technology +536874,Science and Technology,Science and Technology +536755,Science and Technology,Science and Technology +536390,Science and Technology,Science and Technology +536199,Science and Technology,Science and Technology +536198,Science and Technology,Science and Technology +533046,Science and Technology,Science and Technology +532825,Science and Technology,Science and Technology +531772,Science and Technology,Science and Technology +530705,Science and Technology,Science and Technology +530012,Science and Technology,Science and Technology +524320,Science and Technology,Science and Technology +520516,Science and Technology,Science and Technology +520296,Science and Technology,Science and Technology +512679,Science and Technology,Science and Technology +512676,Science and Technology,Science and Technology +530501,Aboriginal Affairs,Aboriginal Affairs +530500,Aboriginal Affairs,Aboriginal Affairs +510985,Aboriginal Affairs,Aboriginal Affairs +537437,Aboriginal Affairs,Aboriginal Affairs +533032,Aboriginal Affairs,Aboriginal Affairs +533026,Aboriginal Affairs,Aboriginal Affairs +530504,Aboriginal Affairs,Aboriginal Affairs +523685,Telecommunications,Telecommunications +517137,Science and Technology,Science and Technology +508169,Science and Technology,Science and Technology +542162,Science and Technology,Science and Technology +536500,Science and Technology,Science and Technology +535052,Aboriginal Affairs,Aboriginal Affairs +528263,Aboriginal Affairs,Aboriginal Affairs +519544,Aboriginal Affairs,Aboriginal Affairs +513940,Aboriginal Affairs,Aboriginal Affairs +513222,Aboriginal Affairs,Aboriginal Affairs +537589,Aboriginal Affairs,Aboriginal Affairs +531455,Aboriginal Affairs,Aboriginal Affairs +514960,Science and Technology,Science and Technology +514367,Science and Technology,Science and Technology +540638,Science and Technology,Science and Technology +538951,Science and Technology,Science and Technology +508637,Telecommunications,Telecommunications +514375,Science and Technology,Science and Technology +513574,Science and Technology,Science and Technology +542466,Science and Technology,Science and Technology +533001,Science and Technology,Science and Technology +514956,Science and Technology,Science and Technology +542514,Science and Technology,Science and Technology +542513,Science and Technology,Science and Technology +512101,Science and Technology,Science and Technology +511678,Science and Technology,Science and Technology +511803,Aboriginal Affairs,Aboriginal Affairs +510666,Aboriginal Affairs,Aboriginal Affairs +532921,Aboriginal Affairs,Aboriginal Affairs +526741,Aboriginal Affairs,Aboriginal Affairs +521749,Aboriginal Affairs,Aboriginal Affairs +510936,Telecommunications,Telecommunications +510934,Telecommunications,Telecommunications +513604,Science and Technology,Science and Technology +511982,Science and Technology,Science and Technology +542458,Science and Technology,Science and Technology +540649,Science and Technology,Science and Technology +540648,Science and Technology,Science and Technology +540636,Science and Technology,Science and Technology +540629,Science and Technology,Science and Technology +540623,Science and Technology,Science and Technology +538982,Science and Technology,Science and Technology +538967,Science and Technology,Science and Technology +534019,Science and Technology,Science and Technology +523862,Science and Technology,Science and Technology +509609,Science and Technology,Science and Technology +522454,Aboriginal Affairs,Aboriginal Affairs +522417,Aboriginal Affairs,Aboriginal Affairs +528948,Aboriginal Affairs,Aboriginal Affairs +527013,Aboriginal Affairs,Aboriginal Affairs +526084,Aboriginal Affairs,Aboriginal Affairs +516130,Telecommunications,Telecommunications +528948,Telecommunications,Telecommunications +527013,Telecommunications,Telecommunications +527012,Telecommunications,Telecommunications +526128,Telecommunications,Telecommunications +526123,Telecommunications,Telecommunications +526099,Telecommunications,Telecommunications +526095,Telecommunications,Telecommunications +526089,Telecommunications,Telecommunications +526084,Telecommunications,Telecommunications +522459,Telecommunications,Telecommunications +522454,Telecommunications,Telecommunications +522452,Telecommunications,Telecommunications +522451,Telecommunications,Telecommunications +522449,Telecommunications,Telecommunications +522417,Telecommunications,Telecommunications +516133,Telecommunications,Telecommunications +511837,Science and Technology,Science and Technology +509794,Science and Technology,Science and Technology +534995,Science and Technology,Science and Technology +530514,Science and Technology,Science and Technology +519888,Science and Technology,Science and Technology +511837,Aboriginal Affairs,Aboriginal Affairs +509794,Aboriginal Affairs,Aboriginal Affairs +542988,Aboriginal Affairs,Aboriginal Affairs +542285,Aboriginal Affairs,Aboriginal Affairs +542284,Aboriginal Affairs,Aboriginal Affairs +534995,Aboriginal Affairs,Aboriginal Affairs +532597,Aboriginal Affairs,Aboriginal Affairs +532553,Aboriginal Affairs,Aboriginal Affairs +532552,Aboriginal Affairs,Aboriginal Affairs +532535,Aboriginal Affairs,Aboriginal Affairs +530514,Aboriginal Affairs,Aboriginal Affairs +527016,Aboriginal Affairs,Aboriginal Affairs +526812,Aboriginal Affairs,Aboriginal Affairs +524654,Aboriginal Affairs,Aboriginal Affairs +523809,Aboriginal Affairs,Aboriginal Affairs +523571,Aboriginal Affairs,Aboriginal Affairs +511839,Aboriginal Affairs,Aboriginal Affairs +520244,Aboriginal Affairs,Aboriginal Affairs +511676,Aboriginal Affairs,Aboriginal Affairs +512451,Aboriginal Affairs,Aboriginal Affairs +512402,Aboriginal Affairs,Aboriginal Affairs +537683,Aboriginal Affairs,Aboriginal Affairs +534006,Aboriginal Affairs,Aboriginal Affairs +534003,Aboriginal Affairs,Aboriginal Affairs +530816,Aboriginal Affairs,Aboriginal Affairs +530811,Aboriginal Affairs,Aboriginal Affairs +528805,Aboriginal Affairs,Aboriginal Affairs +524463,Aboriginal Affairs,Aboriginal Affairs +522260,Aboriginal Affairs,Aboriginal Affairs +519201,Aboriginal Affairs,Aboriginal Affairs +517564,Aboriginal Affairs,Aboriginal Affairs +515058,Aboriginal Affairs,Aboriginal Affairs +515056,Aboriginal Affairs,Aboriginal Affairs +515054,Aboriginal Affairs,Aboriginal Affairs +514597,Aboriginal Affairs,Aboriginal Affairs +514596,Aboriginal Affairs,Aboriginal Affairs +514044,Aboriginal Affairs,Aboriginal Affairs +514042,Aboriginal Affairs,Aboriginal Affairs +513360,Aboriginal Affairs,Aboriginal Affairs +513359,Aboriginal Affairs,Aboriginal Affairs +513357,Aboriginal Affairs,Aboriginal Affairs +535777,Aboriginal Affairs,Aboriginal Affairs +535772,Aboriginal Affairs,Aboriginal Affairs +544311,Aboriginal Affairs,Aboriginal Affairs +540047,Aboriginal Affairs,Aboriginal Affairs +538010,Aboriginal Affairs,Aboriginal Affairs +517913,Science and Technology,Science and Technology +514706,Science and Technology,Science and Technology +539440,Science and Technology,Science and Technology +537200,Science and Technology,Science and Technology +537176,Science and Technology,Science and Technology +534050,Science and Technology,Science and Technology +512784,Aboriginal Affairs,Aboriginal Affairs +512780,Aboriginal Affairs,Aboriginal Affairs +540229,Aboriginal Affairs,Aboriginal Affairs +535673,Aboriginal Affairs,Aboriginal Affairs +535660,Aboriginal Affairs,Aboriginal Affairs +515696,Aboriginal Affairs,Aboriginal Affairs +513463,Arts and Culture,Arts and Culture +513462,Arts and Culture,Arts and Culture +512872,Aboriginal Affairs,Aboriginal Affairs +512869,Aboriginal Affairs,Aboriginal Affairs +517250,Aboriginal Affairs,Aboriginal Affairs +517248,Aboriginal Affairs,Aboriginal Affairs +513911,Aboriginal Affairs,Aboriginal Affairs +513910,Aboriginal Affairs,Aboriginal Affairs +513909,Aboriginal Affairs,Aboriginal Affairs +513908,Aboriginal Affairs,Aboriginal Affairs +513907,Aboriginal Affairs,Aboriginal Affairs +511768,Aboriginal Affairs,Aboriginal Affairs +517282,Telecommunications,Telecommunications +515892,Telecommunications,Telecommunications +513307,Telecommunications,Telecommunications +513221,Telecommunications,Telecommunications +534089,Telecommunications,Telecommunications +525538,Telecommunications,Telecommunications +525535,Telecommunications,Telecommunications +520348,Telecommunications,Telecommunications +513692,Broadcasting,Broadcasting +512154,Broadcasting,Broadcasting +540437,Broadcasting,Broadcasting +540436,Broadcasting,Broadcasting +539021,Broadcasting,Broadcasting +536677,Broadcasting,Broadcasting +533847,Broadcasting,Broadcasting +530621,Broadcasting,Broadcasting +526880,Broadcasting,Broadcasting +523960,Broadcasting,Broadcasting +522238,Broadcasting,Broadcasting +519018,Broadcasting,Broadcasting +517750,Broadcasting,Broadcasting +516251,Broadcasting,Broadcasting +514492,Broadcasting,Broadcasting +511909,Aboriginal Affairs,Aboriginal Affairs +511884,Aboriginal Affairs,Aboriginal Affairs +535468,Aboriginal Affairs,Aboriginal Affairs +517693,Science and Technology,Science and Technology +528640,Science and Technology,Science and Technology +514964,Science and Technology,Science and Technology +514376,Science and Technology,Science and Technology +535053,Aboriginal Affairs,Aboriginal Affairs +513161,Aboriginal Affairs,Aboriginal Affairs +538352,Aboriginal Affairs,Aboriginal Affairs +535066,Aboriginal Affairs,Aboriginal Affairs +535064,Aboriginal Affairs,Aboriginal Affairs +535061,Aboriginal Affairs,Aboriginal Affairs +535060,Aboriginal Affairs,Aboriginal Affairs +535059,Aboriginal Affairs,Aboriginal Affairs +514372,Science and Technology,Science and Technology +514362,Science and Technology,Science and Technology +513582,Science and Technology,Science and Technology +542479,Science and Technology,Science and Technology +542478,Science and Technology,Science and Technology +540619,Science and Technology,Science and Technology +538980,Science and Technology,Science and Technology +538977,Science and Technology,Science and Technology +533014,Science and Technology,Science and Technology +530391,Science and Technology,Science and Technology +518648,Science and Technology,Science and Technology +516288,Science and Technology,Science and Technology +516126,Science and Technology,Science and Technology +514361,Science and Technology,Science and Technology +527095,Science and Technology,Science and Technology +512315,Arts and Culture,Arts et culture +518219,Science and Technology,Science and Technology +517559,Science and Technology,Science and Technology +517439,Science and Technology,Science and Technology +517575,Science and Technology,Science and Technology +517571,Science and Technology,Science and Technology +533859,Aboriginal Affairs,Aboriginal Affairs +528180,Aboriginal Affairs,Aboriginal Affairs +514862,Aboriginal Affairs,Aboriginal Affairs +514858,Aboriginal Affairs,Aboriginal Affairs +527409,Aboriginal Affairs,Aboriginal Affairs +526958,Aboriginal Affairs,Aboriginal Affairs +526951,Aboriginal Affairs,Aboriginal Affairs +526949,Aboriginal Affairs,Aboriginal Affairs +526895,Aboriginal Affairs,Aboriginal Affairs +523388,Aboriginal Affairs,Aboriginal Affairs +514862,Science and Technology,Science and Technology +514858,Science and Technology,Science and Technology +531051,Science and Technology,Science and Technology +526895,Science and Technology,Science and Technology +516659,Science and Technology,Science and Technology +516658,Science and Technology,Science and Technology +519873,Science and Technology,Science and Technology +519872,Science and Technology,Science and Technology +519871,Science and Technology,Science and Technology +519869,Science and Technology,Science and Technology +516661,Science and Technology,Science and Technology +516406,Aboriginal Affairs,Aboriginal Affairs +512879,Aboriginal Affairs,Aboriginal Affairs +526827,Aboriginal Affairs,Aboriginal Affairs +523751,Aboriginal Affairs,Aboriginal Affairs +522038,Aboriginal Affairs,Aboriginal Affairs +522037,Aboriginal Affairs,Aboriginal Affairs +520551,Aboriginal Affairs,Aboriginal Affairs +520394,Aboriginal Affairs,Aboriginal Affairs +519378,Aboriginal Affairs,Aboriginal Affairs +518978,Aboriginal Affairs,Aboriginal Affairs +520020,Aboriginal Affairs,Aboriginal Affairs +520014,Aboriginal Affairs,Aboriginal Affairs +514311,Aboriginal Affairs,Aboriginal Affairs +513471,Aboriginal Affairs,Aboriginal Affairs +520471,Aboriginal Affairs,Aboriginal Affairs +516497,Aboriginal Affairs,Aboriginal Affairs +515087,Aboriginal Affairs,Aboriginal Affairs +514731,Aboriginal Affairs,Aboriginal Affairs +514730,Aboriginal Affairs,Aboriginal Affairs +528274,Aboriginal Affairs,Aboriginal Affairs +528271,Aboriginal Affairs,Aboriginal Affairs +528269,Aboriginal Affairs,Aboriginal Affairs +528268,Aboriginal Affairs,Aboriginal Affairs +519546,Aboriginal Affairs,Aboriginal Affairs +519545,Aboriginal Affairs,Aboriginal Affairs +517123,Aboriginal Affairs,Aboriginal Affairs +513941,Aboriginal Affairs,Aboriginal Affairs +513197,Aboriginal Affairs,Aboriginal Affairs +520402,Telecommunications,Telecommunications +508951,Arts and Culture,Arts and Culture +500942,Aboriginal Affairs,Aboriginal Affairs +502723,Science and Technology,Science and Technology +511532,Science and Technology,Science and Technology +500005,Telecommunications,Telecommunications +511046,Aboriginal Affairs,Aboriginal Affairs +503879,Science and Technology,Science and Technology +513059,Telecommunications,Telecommunications +503880,Science and Technology,Science and Technology +513060,Telecommunications,Telecommunications +524065,Science and Technology,Science and Technology +500688,Broadcasting,Broadcasting +508775,Aboriginal Affairs,Aboriginal Affairs +506377,Aboriginal Affairs,Aboriginal Affairs +538813,Aboriginal Affairs,Aboriginal Affairs +539343,Arts and Culture,Arts and Culture +537017,Aboriginal Affairs,Aboriginal Affairs +509454,Aboriginal Affairs,Aboriginal Affairs +514288,Telecommunications,Télécommunications +506367,Aboriginal Affairs,Aboriginal Affairs +515793,Arts and Culture,Arts and Culture +501184,Broadcasting,Broadcasting +506333,Aboriginal Affairs,Aboriginal Affairs +507647,Aboriginal Affairs,Aboriginal Affairs +504558,Arts and Culture,Arts and Culture +503736,Science and Technology,Science and Technology +506274,Science and Technology,Science and Technology +522860,Aboriginal Affairs,Aboriginal Affairs +506236,Science and Technology,Science and Technology +510383,Aboriginal Affairs,Aboriginal Affairs +510383,Science and Technology,Science and Technology +522336,Telecommunications,Telecommunications +513456,Aboriginal Affairs,Aboriginal Affairs +501374,Science and Technology,Science and Technology +528565,Broadcasting,Broadcasting +506276,Science and Technology,Science and Technology +512062,Science and Technology,Science and Technology +540939,Science and Technology,Science and Technology +514959,Science and Technology,Science and Technology +542456,Science and Technology,Science and Technology +523135,Telecommunications,Telecommunications +502945,Science and Technology,Science and Technology +513514,Aboriginal Affairs,Aboriginal Affairs +521408,Broadcasting,Broadcasting +503047,Science and Technology,Science and Technology +529123,Science and Technology,Science and Technology +530786,Broadcasting,Broadcasting +520484,Aboriginal Affairs,Aboriginal Affairs +537992,Telecommunications,Telecommunications +508256,Science and Technology,Science and Technology +514447,Science and Technology,Science and Technology +522830,Arts and Culture,Arts and Culture +534856,Aboriginal Affairs,Aboriginal Affairs +506379,Aboriginal Affairs,Aboriginal Affairs +507549,Arts and Culture,Arts and Culture +530207,Science and Technology,Science and Technology +511106,Science and Technology,Science and Technology +533964,Science and Technology,Science and Technology +506299,Science and Technology,Science and Technology +523892,Science and Technology,Science and Technology +508685,Science and Technology,Science and Technology +504564,Science and Technology,Science and Technology +514342,Science and Technology,Science and Technology +526997,Science and Technology,Science and Technology +532051,Aboriginal Affairs,Aboriginal Affairs +503343,Aboriginal Affairs,Aboriginal Affairs +504617,Science and Technology,Science and Technology +513492,Aboriginal Affairs,Aboriginal Affairs +509518,Arts and Culture,Arts and Culture +544954,Broadcasting,Broadcasting +517644,Science and Technology,Science and Technology +541976,Science and Technology,Science and Technology +506607,Arts and Culture,Arts and Culture +508628,Telecommunications,Telecommunications +510016,Science and Technology,Science and Technology +508849,Science and Technology,Sciences et technologies +512434,Aboriginal Affairs,Aboriginal Affairs +504111,Arts and Culture,Arts and Culture +528963,Broadcasting,Broadcasting +504915,Aboriginal Affairs,Aboriginal Affairs +538960,Science and Technology,Science and Technology +527335,Science and Technology,Science and Technology +527335,Aboriginal Affairs,Aboriginal Affairs +509027,Aboriginal Affairs,Aboriginal Affairs +507876,Science and Technology,Science and Technology +507550,Science and Technology,Science and Technology +509371,Science and Technology,Science and Technology +509406,Aboriginal Affairs,Aboriginal Affairs +515322,Science and Technology,Science and Technology +507971,Arts and Culture,Arts et culture +507971,Broadcasting,Radiodiffusion +507971,Telecommunications,Télécommunications +506140,Aboriginal Affairs,Affaires autochtones +529261,Arts and Culture,Arts and Culture +512258,Science and Technology,Science and Technology +506306,Arts and Culture,Arts and Culture +510431,Telecommunications,Telecommunications +506516,Arts and Culture,Arts and Culture +507861,Arts and Culture,Arts and Culture +518600,Aboriginal Affairs,Aboriginal Affairs +516150,Science and Technology,Science and Technology +511619,Arts and Culture,Arts and Culture +511767,Aboriginal Affairs,Aboriginal Affairs +507041,Science and Technology,Sciences et technologies +510549,Science and Technology,Science and Technology +521916,Science and Technology,Science and Technology +514021,Telecommunications,Telecommunications +506442,Telecommunications,Télécommunications +513173,Telecommunications,Telecommunications +536013,Aboriginal Affairs,Aboriginal Affairs +510144,Aboriginal Affairs,Aboriginal Affairs +516496,Science and Technology,Science and Technology +511725,Science and Technology,Science and Technology +522601,Arts and Culture,Arts and Culture +509928,Science and Technology,Science and Technology +509220,Aboriginal Affairs,Affaires autochtones +522357,Arts and Culture,Arts and Culture +524907,Arts and Culture,Arts and Culture +519063,Arts and Culture,Arts and Culture +529950,Arts and Culture,Arts and Culture +509194,Science and Technology,Science and Technology +517354,Telecommunications,Telecommunications +513949,Science and Technology,Science and Technology +515225,Science and Technology,Science and Technology +514860,Science and Technology,Science and Technology +509516,Science and Technology,Science and Technology +530502,Aboriginal Affairs,Aboriginal Affairs +528892,Telecommunications,Telecommunications +528892,Broadcasting,Broadcasting +527424,Science and Technology,Science and Technology +510104,Science and Technology,Science and Technology +538348,Aboriginal Affairs,Aboriginal Affairs +528265,Aboriginal Affairs,Aboriginal Affairs +534024,Science and Technology,Science and Technology +511570,Telecommunications,Telecommunications +530373,Science and Technology,Science and Technology +534021,Science and Technology,Science and Technology +523983,Arts and Culture,Arts and Culture +511677,Science and Technology,Science and Technology +511904,Arts and Culture,Arts and Culture +513605,Science and Technology,Science and Technology +514965,Science and Technology,Science and Technology +530393,Aboriginal Affairs,Aboriginal Affairs +514704,Science and Technology,Science and Technology +523854,Science and Technology,Science and Technology +514160,Aboriginal Affairs,Aboriginal Affairs +509387,Science and Technology,Science and Technology +529092,Science and Technology,Science and Technology +520696,Aboriginal Affairs,Aboriginal Affairs +544809,Telecommunications,Telecommunications +514702,Science and Technology,Science and Technology +513200,Telecommunications,Telecommunications +513394,Science and Technology,Science and Technology +514363,Science and Technology,Science and Technology +509612,Science and Technology,Science and Technology +522459,Aboriginal Affairs,Aboriginal Affairs +516131,Telecommunications,Telecommunications +527016,Science and Technology,Science and Technology +520816,Science and Technology,Science and Technology +511838,Aboriginal Affairs,Aboriginal Affairs +520622,Aboriginal Affairs,Aboriginal Affairs +514783,Science and Technology,Science and Technology +513355,Aboriginal Affairs,Aboriginal Affairs +535933,Aboriginal Affairs,Aboriginal Affairs +538008,Aboriginal Affairs,Aboriginal Affairs +527083,Aboriginal Affairs,Aboriginal Affairs +520352,Science and Technology,Science and Technology +512786,Aboriginal Affairs,Aboriginal Affairs +511571,Arts and Culture,Arts and Culture +511672,Aboriginal Affairs,Aboriginal Affairs +511661,Science and Technology,Science and Technology +512875,Aboriginal Affairs,Aboriginal Affairs +514318,Science and Technology,Science and Technology +524008,Aboriginal Affairs,Aboriginal Affairs +529158,Aboriginal Affairs,Aboriginal Affairs +520347,Telecommunications,Telecommunications +513697,Broadcasting,Broadcasting +512368,Aboriginal Affairs,Aboriginal Affairs +523852,Science and Technology,Science and Technology +519484,Science and Technology,Science and Technology +542498,Science and Technology,Science and Technology +535057,Aboriginal Affairs,Aboriginal Affairs +514957,Science and Technology,Science and Technology +524438,Science and Technology,Science and Technology +527093,Science and Technology,Science and Technology +528651,Broadcasting,Broadcasting +511948,Arts and Culture,Arts and Culture +516803,Arts and Culture,Arts et culture +512064,Science and Technology,Science and Technology +518223,Science and Technology,Science and Technology +512204,Science and Technology,Science and Technology +517566,Science and Technology,Science and Technology +542501,Science and Technology,Science and Technology +533860,Aboriginal Affairs,Aboriginal Affairs +540751,Aboriginal Affairs,Aboriginal Affairs +517304,Aboriginal Affairs,Aboriginal Affairs +517173,Science and Technology,Science and Technology +516660,Science and Technology,Science and Technology +516740,Aboriginal Affairs,Aboriginal Affairs +520501,Aboriginal Affairs,Aboriginal Affairs +535587,Science and Technology,Science and Technology +514312,Aboriginal Affairs,Aboriginal Affairs +531452,Aboriginal Affairs,Aboriginal Affairs +538009,Aboriginal Affairs,Aboriginal Affairs +514323,Science and Technology,Science and Technology +520446,Telecommunications,Telecommunications +520402,Broadcasting,Broadcasting +521765,Aboriginal Affairs,Aboriginal Affairs +532771,Arts and Culture,Arts and Culture +531559,Aboriginal Affairs,Aboriginal Affairs +526348,Aboriginal Affairs,Aboriginal Affairs +522870,Arts and Culture,Arts and Culture +524442,Broadcasting,Broadcasting +524442,Arts and Culture,Arts and Culture +526978,Broadcasting,Broadcasting +526978,Arts and Culture,Arts and Culture +530359,Arts and Culture,Arts and Culture +530347,Arts and Culture,Arts and Culture +533296,Arts and Culture,Arts and Culture +514196,Arts and Culture,Arts and Culture +522872,Arts and Culture,Arts and Culture +522869,Arts and Culture,Arts and Culture +515523,Science and Technology,Science and Technology +515523,Aboriginal Affairs,Aboriginal Affairs +522359,Science and Technology,Science and Technology +519060,Arts and Culture,Arts and Culture +514436,Science and Technology,Science and Technology +513610,Science and Technology,Science and Technology +513609,Science and Technology,Science and Technology +513613,Science and Technology,Science and Technology +513614,Science and Technology,Science and Technology +520607,Science and Technology,Science and Technology +513682,Science and Technology,Science and Technology +513676,Science and Technology,Science and Technology +513736,Telecommunications,Telecommunications +514103,Arts and Culture,Arts and Culture +526025,Science and Technology,Science and Technology +514321,Science and Technology,Science and Technology +517291,Aboriginal Affairs,Aboriginal Affairs +520748,Science and Technology,Science and Technology +520749,Science and Technology,Science and Technology +516276,Science and Technology,Science and Technology +515156,Science and Technology,Science and Technology +527165,Science and Technology,Sciences et technologies +517297,Aboriginal Affairs,Aboriginal Affairs +538321,Aboriginal Affairs,Aboriginal Affairs +514895,Aboriginal Affairs,Aboriginal Affairs +522331,Aboriginal Affairs,Aboriginal Affairs +522331,Science and Technology,Science and Technology +514473,Arts and Culture,Arts et culture +518526,Arts and Culture,Arts and Culture +533018,Science and Technology,Science and Technology +520497,Arts and Culture,Arts and Culture +523404,Science and Technology,Science and Technology +519064,Arts and Culture,Arts and Culture +519410,Aboriginal Affairs,Aboriginal Affairs +523392,Arts and Culture,Arts and Culture +523392,Broadcasting,Broadcasting +529019,Broadcasting,Broadcasting +525490,Broadcasting,Broadcasting +537881,Broadcasting,Broadcasting +543918,Telecommunications,Telecommunications +537881,Arts and Culture,Arts and Culture +521157,Broadcasting,Broadcasting +521157,Telecommunications,Telecommunications +520383,Science and Technology,Science and Technology +540219,Arts and Culture,Arts and Culture +540214,Broadcasting,Broadcasting +516309,Science and Technology,Science and Technology +540590,Science and Technology,Science and Technology +540728,Aboriginal Affairs,Aboriginal Affairs +515081,Aboriginal Affairs,Aboriginal Affairs +530687,Science and Technology,Science and Technology +523208,Aboriginal Affairs,Aboriginal Affairs +529997,Science and Technology,Science and Technology +528661,Telecommunications,Telecommunications +532138,Telecommunications,Telecommunications +532137,Broadcasting,Broadcasting +520953,Science and Technology,Science and Technology +520362,Aboriginal Affairs,Aboriginal Affairs +520751,Aboriginal Affairs,Aboriginal Affairs +532590,Aboriginal Affairs,Aboriginal Affairs +520641,Arts and Culture,Arts and Culture +520641,Broadcasting,Broadcasting +516222,Science and Technology,Sciences et technologies +530255,Science and Technology,Sciences et technologies +516069,Science and Technology,Science and Technology +521046,Science and Technology,Science and Technology +544935,Science and Technology,Science and Technology +523964,Broadcasting,Broadcasting +516197,Science and Technology,Science and Technology +516689,Aboriginal Affairs,Aboriginal Affairs +518565,Arts and Culture,Arts and Culture +530208,Science and Technology,Science and Technology +516592,Science and Technology,Science and Technology +532449,Science and Technology,Science and Technology +537711,Aboriginal Affairs,Aboriginal Affairs +532660,Arts and Culture,Arts and Culture +516863,Science and Technology,Science and Technology +540279,Science and Technology,Sciences et technologies +520691,Science and Technology,Science and Technology +516278,Science and Technology,Science and Technology +538972,Science and Technology,Science and Technology +529701,Science and Technology,Science and Technology +519887,Aboriginal Affairs,Aboriginal Affairs +541883,Science and Technology,Science and Technology +516427,Aboriginal Affairs,Aboriginal Affairs +524411,Science and Technology,Science and Technology +518611,Science and Technology,Science and Technology +526032,Science and Technology,Science and Technology +519066,Broadcasting,Broadcasting +525188,Science and Technology,Science and Technology +530650,Science and Technology,Sciences et technologies +519916,Science and Technology,Science and Technology +520721,Science and Technology,Science and Technology +532807,Science and Technology,Science and Technology +528239,Science and Technology,Science and Technology +528241,Aboriginal Affairs,Aboriginal Affairs +516927,Broadcasting,Broadcasting +532650,Science and Technology,Science and Technology +517159,Science and Technology,Science and Technology +519377,Aboriginal Affairs,Aboriginal Affairs +517431,Aboriginal Affairs,Aboriginal Affairs +517438,Aboriginal Affairs,Aboriginal Affairs +517470,Aboriginal Affairs,Aboriginal Affairs +533833,Science and Technology,Science and Technology +523690,Science and Technology,Science and Technology +530943,Science and Technology,Science and Technology +530940,Arts and Culture,Arts and Culture +517908,Telecommunications,Telecommunications +517915,Science and Technology,Science and Technology +536952,Aboriginal Affairs,Aboriginal Affairs +541973,Science and Technology,Science and Technology +518181,Science and Technology,Science and Technology +523136,Science and Technology,Science and Technology +518229,Science and Technology,Science and Technology +518235,Science and Technology,Science and Technology +540482,Broadcasting,Broadcasting +521669,Science and Technology,Science and Technology +525238,Science and Technology,Science and Technology +521484,Science and Technology,Science and Technology +538934,Science and Technology,Science and Technology +521481,Science and Technology,Science and Technology +518547,Science and Technology,Science and Technology +529625,Arts and Culture,Arts and Culture +523156,Broadcasting,Broadcasting +529625,Telecommunications,Telecommunications +518616,Telecommunications,Telecommunications +518954,Telecommunications,Telecommunications +523678,Aboriginal Affairs,Aboriginal Affairs +526819,Science and Technology,Science and Technology +521652,Science and Technology,Science and Technology +520901,Science and Technology,Science and Technology +523694,Arts and Culture,Arts and Culture +524443,Broadcasting,Broadcasting +527466,Arts and Culture,Arts and Culture +527032,Broadcasting,Broadcasting +533441,Arts and Culture,Arts and Culture +533441,Broadcasting,Broadcasting +519013,Science and Technology,Science and Technology +538108,Science and Technology,Science and Technology +529369,Arts and Culture,Arts and Culture +541926,Arts and Culture,Arts and Culture +529613,Aboriginal Affairs,Aboriginal Affairs +530384,Aboriginal Affairs,Aboriginal Affairs +536671,Arts and Culture,Arts and Culture +519151,Science and Technology,Science and Technology +525705,Aboriginal Affairs,Aboriginal Affairs +523865,Science and Technology,Science and Technology +530097,Science and Technology,Science and Technology +522444,Aboriginal Affairs,Aboriginal Affairs +527350,Science and Technology,Science and Technology +520346,Aboriginal Affairs,Aboriginal Affairs +525757,Science and Technology,Science and Technology +538946,Aboriginal Affairs,Aboriginal Affairs +524251,Science and Technology,Science and Technology +519890,Arts and Culture,Arts and Culture +519901,Arts and Culture,Arts and Culture +520124,Aboriginal Affairs,Aboriginal Affairs +520125,Aboriginal Affairs,Aboriginal Affairs +527173,Arts and Culture,Arts et culture +522113,Science and Technology,Science and Technology +527390,Science and Technology,Science and Technology +527395,Science and Technology,Science and Technology +523600,Science and Technology,Science and Technology +541787,Aboriginal Affairs,Aboriginal Affairs +521952,Science and Technology,Science and Technology +522424,Science and Technology,Science and Technology +542735,Science and Technology,Science and Technology +529705,Science and Technology,Science and Technology +523410,Aboriginal Affairs,Aboriginal Affairs +534199,Aboriginal Affairs,Aboriginal Affairs +524239,Aboriginal Affairs,Aboriginal Affairs +542379,Science and Technology,Science and Technology +544655,Science and Technology,Science and Technology +524280,Science and Technology,Science and Technology +520592,Science and Technology,Science and Technology +541992,Broadcasting,Broadcasting +526361,Arts and Culture,Arts and Culture +525505,Aboriginal Affairs,Aboriginal Affairs +539783,Science and Technology,Science and Technology +520722,Science and Technology,Science and Technology +530361,Arts and Culture,Arts and Culture +530272,Arts and Culture,Arts and Culture +530412,Science and Technology,Science and Technology +520755,Broadcasting,Broadcasting +522432,Aboriginal Affairs,Aboriginal Affairs +520385,Telecommunications,Telecommunications +542657,Telecommunications,Telecommunications +542129,Telecommunications,Telecommunications +541206,Telecommunications,Telecommunications +540979,Telecommunications,Telecommunications +539495,Telecommunications,Telecommunications +532772,Telecommunications,Telecommunications +530406,Telecommunications,Telecommunications +530147,Telecommunications,Telecommunications +530146,Telecommunications,Telecommunications +523955,Telecommunications,Telecommunications +523390,Telecommunications,Telecommunications +522438,Telecommunications,Telecommunications +520385,Broadcasting,Broadcasting +518636,Broadcasting,Broadcasting +542657,Broadcasting,Broadcasting +542129,Broadcasting,Broadcasting +541206,Broadcasting,Broadcasting +540979,Broadcasting,Broadcasting +539495,Broadcasting,Broadcasting +532772,Broadcasting,Broadcasting +530406,Broadcasting,Broadcasting +530147,Broadcasting,Broadcasting +530146,Broadcasting,Broadcasting +523955,Broadcasting,Broadcasting +523491,Broadcasting,Broadcasting +523390,Broadcasting,Broadcasting +522438,Broadcasting,Broadcasting +520446,Broadcasting,Broadcasting +519143,Aboriginal Affairs,Aboriginal Affairs +531557,Aboriginal Affairs,Aboriginal Affairs +531556,Aboriginal Affairs,Aboriginal Affairs +525949,Aboriginal Affairs,Aboriginal Affairs +525947,Aboriginal Affairs,Aboriginal Affairs +522980,Aboriginal Affairs,Aboriginal Affairs +514053,Aboriginal Affairs,Aboriginal Affairs +539430,Aboriginal Affairs,Aboriginal Affairs +526768,Broadcasting,Broadcasting +514787,Arts and Culture,Arts and Culture +530346,Arts and Culture,Arts and Culture +530345,Arts and Culture,Arts and Culture +530350,Arts and Culture,Arts and Culture +530349,Arts and Culture,Arts and Culture +515521,Science and Technology,Science and Technology +515522,Aboriginal Affairs,Aboriginal Affairs +515521,Aboriginal Affairs,Aboriginal Affairs +519057,Arts and Culture,Arts and Culture +519056,Arts and Culture,Arts and Culture +519053,Arts and Culture,Arts and Culture +527025,Arts and Culture,Arts and Culture +519061,Arts and Culture,Arts and Culture +514435,Science and Technology,Science and Technology +514430,Science and Technology,Science and Technology +540895,Science and Technology,Science and Technology +539215,Science and Technology,Science and Technology +537041,Science and Technology,Science and Technology +537018,Science and Technology,Science and Technology +537016,Science and Technology,Science and Technology +536000,Science and Technology,Science and Technology +535919,Science and Technology,Science and Technology +530801,Science and Technology,Science and Technology +530799,Science and Technology,Science and Technology +530798,Science and Technology,Science and Technology +528957,Science and Technology,Science and Technology +524409,Science and Technology,Science and Technology +524408,Science and Technology,Science and Technology +521449,Science and Technology,Science and Technology +521448,Science and Technology,Science and Technology +521447,Science and Technology,Science and Technology +518934,Science and Technology,Science and Technology +518932,Science and Technology,Science and Technology +518931,Science and Technology,Science and Technology +518929,Science and Technology,Science and Technology +516634,Science and Technology,Science and Technology +516633,Science and Technology,Science and Technology +514441,Science and Technology,Science and Technology +514437,Science and Technology,Science and Technology +520480,Science and Technology,Science and Technology +520479,Science and Technology,Science and Technology +523987,Science and Technology,Science and Technology +523653,Science and Technology,Science and Technology +523358,Science and Technology,Science and Technology +523344,Science and Technology,Science and Technology +523343,Science and Technology,Science and Technology +523342,Science and Technology,Science and Technology +522767,Science and Technology,Science and Technology +517288,Aboriginal Affairs,Aboriginal Affairs +514879,Aboriginal Affairs,Aboriginal Affairs +528794,Aboriginal Affairs,Aboriginal Affairs +521983,Aboriginal Affairs,Aboriginal Affairs +521980,Aboriginal Affairs,Aboriginal Affairs +521968,Aboriginal Affairs,Aboriginal Affairs +519648,Aboriginal Affairs,Aboriginal Affairs +516275,Science and Technology,Science and Technology +516274,Science and Technology,Science and Technology +527352,Science and Technology,Science and Technology +523850,Science and Technology,Science and Technology +520783,Science and Technology,Science and Technology +518654,Science and Technology,Science and Technology +518653,Science and Technology,Science and Technology +518652,Science and Technology,Science and Technology +518651,Science and Technology,Science and Technology +516277,Science and Technology,Science and Technology +538308,Aboriginal Affairs,Aboriginal Affairs +515838,Aboriginal Affairs,Aboriginal Affairs +516120,Aboriginal Affairs,Aboriginal Affairs +514472,Arts and Culture,Arts et culture +514470,Arts and Culture,Arts et culture +516056,Arts and Culture,Arts et culture +515647,Arts and Culture,Arts and Culture +520900,Science and Technology,Science and Technology +514993,Science and Technology,Science and Technology +532803,Science and Technology,Science and Technology +524440,Science and Technology,Science and Technology +519400,Aboriginal Affairs,Aboriginal Affairs +517260,Aboriginal Affairs,Aboriginal Affairs +535903,Aboriginal Affairs,Aboriginal Affairs +534492,Aboriginal Affairs,Aboriginal Affairs +529198,Aboriginal Affairs,Aboriginal Affairs +529193,Aboriginal Affairs,Aboriginal Affairs +525488,Aboriginal Affairs,Aboriginal Affairs +525484,Aboriginal Affairs,Aboriginal Affairs +522348,Aboriginal Affairs,Aboriginal Affairs +518603,Arts and Culture,Arts and Culture +516657,Arts and Culture,Arts and Culture +525219,Arts and Culture,Arts and Culture +525218,Arts and Culture,Arts and Culture +525217,Arts and Culture,Arts and Culture +525216,Arts and Culture,Arts and Culture +518603,Broadcasting,Broadcasting +516657,Broadcasting,Broadcasting +525219,Broadcasting,Broadcasting +525218,Broadcasting,Broadcasting +525217,Broadcasting,Broadcasting +525216,Broadcasting,Broadcasting +522712,Broadcasting,Broadcasting +521879,Broadcasting,Broadcasting +521877,Broadcasting,Broadcasting +542591,Broadcasting,Broadcasting +542590,Broadcasting,Broadcasting +542589,Broadcasting,Broadcasting +541746,Broadcasting,Broadcasting +537361,Broadcasting,Broadcasting +530999,Broadcasting,Broadcasting +528933,Broadcasting,Broadcasting +528931,Broadcasting,Broadcasting +537872,Broadcasting,Broadcasting +531527,Broadcasting,Broadcasting +543918,Broadcasting,Broadcasting +542065,Broadcasting,Broadcasting +542065,Telecommunications,Telecommunications +531527,Telecommunications,Telecommunications +537872,Arts and Culture,Arts and Culture +521944,Arts and Culture,Arts and Culture +543918,Arts and Culture,Arts and Culture +542065,Arts and Culture,Arts and Culture +518387,Science and Technology,Science and Technology +516532,Science and Technology,Science and Technology +539815,Science and Technology,Science and Technology +539813,Science and Technology,Science and Technology +526982,Science and Technology,Science and Technology +522636,Science and Technology,Science and Technology +540214,Arts and Culture,Arts and Culture +540210,Arts and Culture,Arts and Culture +538285,Broadcasting,Broadcasting +535574,Science and Technology,Science and Technology +532999,Science and Technology,Science and Technology +527366,Science and Technology,Science and Technology +536599,Aboriginal Affairs,Aboriginal Affairs +530688,Aboriginal Affairs,Aboriginal Affairs +515094,Science and Technology,Science and Technology +523205,Aboriginal Affairs,Aboriginal Affairs +528661,Science and Technology,Science and Technology +523799,Science and Technology,Science and Technology +533708,Science and Technology,Science and Technology +531418,Science and Technology,Science and Technology +523799,Telecommunications,Telecommunications +533708,Telecommunications,Telecommunications +531418,Telecommunications,Telecommunications +529997,Telecommunications,Telecommunications +532137,Telecommunications,Telecommunications +525416,Broadcasting,Broadcasting +525414,Broadcasting,Broadcasting +532138,Broadcasting,Broadcasting +519524,Science and Technology,Science and Technology +518457,Science and Technology,Science and Technology +540877,Science and Technology,Science and Technology +540876,Science and Technology,Science and Technology +539360,Science and Technology,Science and Technology +539125,Science and Technology,Science and Technology +537002,Science and Technology,Science and Technology +536897,Science and Technology,Science and Technology +532828,Science and Technology,Science and Technology +532827,Science and Technology,Science and Technology +528618,Science and Technology,Science and Technology +526977,Science and Technology,Science and Technology +523676,Science and Technology,Science and Technology +522330,Science and Technology,Science and Technology +519839,Aboriginal Affairs,Aboriginal Affairs +526783,Science and Technology,Sciences et technologies +526029,Science and Technology,Sciences et technologies +521042,Science and Technology,Science and Technology +525889,Science and Technology,Science and Technology +525883,Science and Technology,Science and Technology +522244,Broadcasting,Broadcasting +516252,Broadcasting,Broadcasting +540439,Broadcasting,Broadcasting +540438,Broadcasting,Broadcasting +539022,Broadcasting,Broadcasting +536679,Broadcasting,Broadcasting +533848,Broadcasting,Broadcasting +530622,Broadcasting,Broadcasting +526881,Broadcasting,Broadcasting +523965,Broadcasting,Broadcasting +516173,Science and Technology,Science and Technology +518561,Aboriginal Affairs,Aboriginal Affairs +518560,Arts and Culture,Arts and Culture +526936,Science and Technology,Science and Technology +517890,Science and Technology,Science and Technology +516531,Science and Technology,Science and Technology +532574,Science and Technology,Science and Technology +520393,Science and Technology,Science and Technology +534832,Aboriginal Affairs,Aboriginal Affairs +520099,Aboriginal Affairs,Aboriginal Affairs +532659,Arts and Culture,Arts and Culture +536564,Science and Technology,Science and Technology +536562,Science and Technology,Science and Technology +516293,Science and Technology,Science and Technology +516284,Science and Technology,Science and Technology +516282,Science and Technology,Science and Technology +538981,Science and Technology,Science and Technology +523758,Science and Technology,Science and Technology +523757,Science and Technology,Science and Technology +541881,Science and Technology,Science and Technology +516946,Aboriginal Affairs,Aboriginal Affairs +521135,Science and Technology,Science and Technology +521134,Science and Technology,Science and Technology +518610,Science and Technology,Science and Technology +518371,Science and Technology,Science and Technology +518612,Science and Technology,Science and Technology +523303,Science and Technology,Science and Technology +523299,Science and Technology,Science and Technology +541880,Science and Technology,Science and Technology +529713,Science and Technology,Science and Technology +526042,Science and Technology,Science and Technology +520369,Science and Technology,Science and Technology +518613,Science and Technology,Science and Technology +527476,Science and Technology,Sciences et technologies +521475,Science and Technology,Sciences et technologies +544462,Science and Technology,Sciences et technologies +542159,Science and Technology,Sciences et technologies +542105,Science and Technology,Sciences et technologies +541443,Science and Technology,Sciences et technologies +540433,Science and Technology,Sciences et technologies +537159,Science and Technology,Sciences et technologies +530667,Science and Technology,Sciences et technologies +520943,Science and Technology,Science and Technology +519376,Aboriginal Affairs,Aboriginal Affairs +517418,Aboriginal Affairs,Aboriginal Affairs +535750,Aboriginal Affairs,Aboriginal Affairs +534384,Aboriginal Affairs,Aboriginal Affairs +528184,Aboriginal Affairs,Aboriginal Affairs +528175,Aboriginal Affairs,Aboriginal Affairs +528174,Aboriginal Affairs,Aboriginal Affairs +525562,Aboriginal Affairs,Aboriginal Affairs +525560,Aboriginal Affairs,Aboriginal Affairs +522926,Aboriginal Affairs,Aboriginal Affairs +522198,Aboriginal Affairs,Aboriginal Affairs +521128,Science and Technology,Science and Technology +521127,Science and Technology,Science and Technology +544758,Science and Technology,Science and Technology +539519,Science and Technology,Science and Technology +518621,Science and Technology,Science and Technology +517646,Science and Technology,Science and Technology +530941,Science and Technology,Science and Technology +530940,Science and Technology,Science and Technology +530939,Science and Technology,Science and Technology +530937,Science and Technology,Science and Technology +530939,Arts and Culture,Arts and Culture +530937,Arts and Culture,Arts and Culture +530942,Arts and Culture,Arts and Culture +530941,Arts and Culture,Arts and Culture +536948,Aboriginal Affairs,Aboriginal Affairs +521910,Aboriginal Affairs,Aboriginal Affairs +536960,Aboriginal Affairs,Aboriginal Affairs +536954,Aboriginal Affairs,Aboriginal Affairs +541972,Science and Technology,Science and Technology +523131,Science and Technology,Science and Technology +523124,Science and Technology,Science and Technology +543422,Science and Technology,Science and Technology +535916,Science and Technology,Science and Technology +535915,Science and Technology,Science and Technology +535912,Science and Technology,Science and Technology +535911,Science and Technology,Science and Technology +535910,Science and Technology,Science and Technology +535909,Science and Technology,Science and Technology +535908,Science and Technology,Science and Technology +535906,Science and Technology,Science and Technology +527149,Science and Technology,Science and Technology +523140,Science and Technology,Science and Technology +540481,Broadcasting,Broadcasting +518415,Broadcasting,Broadcasting +521667,Science and Technology,Science and Technology +520411,Science and Technology,Science and Technology +539603,Science and Technology,Science and Technology +538670,Science and Technology,Science and Technology +538669,Science and Technology,Science and Technology +521670,Science and Technology,Science and Technology +523419,Science and Technology,Science and Technology +523418,Science and Technology,Science and Technology +531948,Science and Technology,Science and Technology +529161,Science and Technology,Science and Technology +525239,Science and Technology,Science and Technology +518633,Science and Technology,Science and Technology +518542,Science and Technology,Science and Technology +538937,Science and Technology,Science and Technology +524535,Science and Technology,Science and Technology +518543,Science and Technology,Science and Technology +538938,Science and Technology,Science and Technology +521479,Science and Technology,Science and Technology +518544,Science and Technology,Science and Technology +538935,Science and Technology,Science and Technology +538933,Science and Technology,Science and Technology +524531,Science and Technology,Science and Technology +524528,Science and Technology,Science and Technology +518546,Science and Technology,Science and Technology +518545,Science and Technology,Science and Technology +538936,Science and Technology,Science and Technology +524534,Science and Technology,Science and Technology +521482,Science and Technology,Science and Technology +521480,Science and Technology,Science and Technology +518555,Science and Technology,Science and Technology +518554,Science and Technology,Science and Technology +518553,Science and Technology,Science and Technology +518552,Science and Technology,Science and Technology +518549,Science and Technology,Science and Technology +518548,Science and Technology,Science and Technology +529620,Arts and Culture,Arts and Culture +529619,Arts and Culture,Arts and Culture +529947,Arts and Culture,Arts and Culture +523076,Broadcasting,Broadcasting +522653,Broadcasting,Broadcasting +535847,Broadcasting,Broadcasting +531998,Broadcasting,Broadcasting +529947,Broadcasting,Broadcasting +529625,Broadcasting,Broadcasting +529620,Broadcasting,Broadcasting +529619,Broadcasting,Broadcasting +526655,Broadcasting,Broadcasting +529620,Telecommunications,Telecommunications +518952,Telecommunications,Telecommunications +518948,Telecommunications,Telecommunications +519860,Telecommunications,Telecommunications +519042,Telecommunications,Telecommunications +520583,Aboriginal Affairs,Aboriginal Affairs +518766,Aboriginal Affairs,Aboriginal Affairs +531770,Aboriginal Affairs,Aboriginal Affairs +531769,Aboriginal Affairs,Aboriginal Affairs +531766,Aboriginal Affairs,Aboriginal Affairs +530279,Aboriginal Affairs,Aboriginal Affairs +528364,Aboriginal Affairs,Aboriginal Affairs +528362,Aboriginal Affairs,Aboriginal Affairs +528360,Aboriginal Affairs,Aboriginal Affairs +528358,Aboriginal Affairs,Aboriginal Affairs +528357,Aboriginal Affairs,Aboriginal Affairs +528355,Aboriginal Affairs,Aboriginal Affairs +526829,Aboriginal Affairs,Aboriginal Affairs +526826,Aboriginal Affairs,Aboriginal Affairs +526380,Aboriginal Affairs,Aboriginal Affairs +525788,Aboriginal Affairs,Aboriginal Affairs +525784,Aboriginal Affairs,Aboriginal Affairs +525780,Aboriginal Affairs,Aboriginal Affairs +525775,Aboriginal Affairs,Aboriginal Affairs +525770,Aboriginal Affairs,Aboriginal Affairs +525766,Aboriginal Affairs,Aboriginal Affairs +525763,Aboriginal Affairs,Aboriginal Affairs +523804,Aboriginal Affairs,Aboriginal Affairs +521649,Science and Technology,Science and Technology +521648,Science and Technology,Science and Technology +526426,Science and Technology,Science and Technology +525751,Science and Technology,Science and Technology +523501,Science and Technology,Science and Technology +522026,Science and Technology,Science and Technology +521658,Science and Technology,Science and Technology +521654,Science and Technology,Science and Technology +520438,Science and Technology,Science and Technology +520437,Science and Technology,Science and Technology +528403,Science and Technology,Science and Technology +522793,Arts and Culture,Arts and Culture +520585,Arts and Culture,Arts and Culture +533442,Arts and Culture,Arts and Culture +533440,Arts and Culture,Arts and Culture +527502,Arts and Culture,Arts and Culture +527501,Arts and Culture,Arts and Culture +527064,Arts and Culture,Arts and Culture +523694,Broadcasting,Broadcasting +520585,Broadcasting,Broadcasting +533442,Broadcasting,Broadcasting +533440,Broadcasting,Broadcasting +527502,Broadcasting,Broadcasting +527501,Broadcasting,Broadcasting +527064,Broadcasting,Broadcasting +527032,Arts and Culture,Arts and Culture +523684,Arts and Culture,Arts and Culture +519716,Arts and Culture,Arts and Culture +533149,Arts and Culture,Arts and Culture +533148,Arts and Culture,Arts and Culture +527467,Arts and Culture,Arts and Culture +523684,Broadcasting,Broadcasting +519716,Broadcasting,Broadcasting +533149,Broadcasting,Broadcasting +533148,Broadcasting,Broadcasting +527467,Broadcasting,Broadcasting +527466,Broadcasting,Broadcasting +527470,Arts and Culture,Arts and Culture +520684,Arts and Culture,Arts and Culture +527470,Broadcasting,Broadcasting +520684,Broadcasting,Broadcasting +529608,Aboriginal Affairs,Aboriginal Affairs +529606,Aboriginal Affairs,Aboriginal Affairs +532953,Aboriginal Affairs,Aboriginal Affairs +529622,Aboriginal Affairs,Aboriginal Affairs +529618,Aboriginal Affairs,Aboriginal Affairs +520257,Aboriginal Affairs,Aboriginal Affairs +520256,Aboriginal Affairs,Aboriginal Affairs +536670,Arts and Culture,Arts and Culture +520407,Arts and Culture,Arts and Culture +525692,Aboriginal Affairs,Aboriginal Affairs +523679,Aboriginal Affairs,Aboriginal Affairs +523860,Science and Technology,Science and Technology +520798,Science and Technology,Science and Technology +538969,Science and Technology,Science and Technology +530377,Science and Technology,Science and Technology +527346,Science and Technology,Science and Technology +527343,Science and Technology,Science and Technology +527334,Science and Technology,Science and Technology +523869,Science and Technology,Science and Technology +525715,Science and Technology,Science and Technology +522446,Science and Technology,Science and Technology +536122,Science and Technology,Science and Technology +519866,Aboriginal Affairs,Aboriginal Affairs +525573,Science and Technology,Science and Technology +521415,Science and Technology,Science and Technology +519843,Science and Technology,Science and Technology +541104,Science and Technology,Science and Technology +539154,Science and Technology,Science and Technology +535962,Science and Technology,Science and Technology +535961,Science and Technology,Science and Technology +531643,Science and Technology,Science and Technology +530989,Science and Technology,Science and Technology +528195,Science and Technology,Science and Technology +522112,Science and Technology,Science and Technology +522075,Science and Technology,Science and Technology +525738,Science and Technology,Science and Technology +522116,Science and Technology,Science and Technology +522115,Science and Technology,Science and Technology +522114,Science and Technology,Science and Technology +524904,Science and Technology,Science and Technology +524903,Science and Technology,Science and Technology +540768,Science and Technology,Science and Technology +527392,Science and Technology,Science and Technology +527391,Science and Technology,Science and Technology +540767,Science and Technology,Science and Technology +523599,Science and Technology,Science and Technology +522426,Science and Technology,Science and Technology +536380,Science and Technology,Science and Technology +536146,Science and Technology,Science and Technology +536121,Science and Technology,Science and Technology +536120,Science and Technology,Science and Technology +536118,Science and Technology,Science and Technology +532802,Science and Technology,Science and Technology +532783,Science and Technology,Science and Technology +532781,Science and Technology,Science and Technology +531712,Science and Technology,Science and Technology +531710,Science and Technology,Science and Technology +531709,Science and Technology,Science and Technology +528774,Science and Technology,Science and Technology +528772,Science and Technology,Science and Technology +527968,Science and Technology,Science and Technology +527967,Science and Technology,Science and Technology +527966,Science and Technology,Science and Technology +527965,Science and Technology,Science and Technology +527964,Science and Technology,Science and Technology +527963,Science and Technology,Science and Technology +527962,Science and Technology,Science and Technology +527961,Science and Technology,Science and Technology +527960,Science and Technology,Science and Technology +525685,Science and Technology,Science and Technology +525680,Science and Technology,Science and Technology +525676,Science and Technology,Science and Technology +525674,Science and Technology,Science and Technology +525671,Science and Technology,Science and Technology +523601,Science and Technology,Science and Technology +538715,Aboriginal Affairs,Aboriginal Affairs +535601,Aboriginal Affairs,Aboriginal Affairs +535578,Aboriginal Affairs,Aboriginal Affairs +526582,Aboriginal Affairs,Aboriginal Affairs +526580,Aboriginal Affairs,Aboriginal Affairs +521857,Science and Technology,Science and Technology +520600,Science and Technology,Science and Technology +536124,Science and Technology,Science and Technology +532785,Science and Technology,Science and Technology +532784,Science and Technology,Science and Technology +531721,Science and Technology,Science and Technology +531720,Science and Technology,Science and Technology +531719,Science and Technology,Science and Technology +530157,Science and Technology,Science and Technology +527996,Science and Technology,Science and Technology +525756,Science and Technology,Science and Technology +523586,Science and Technology,Science and Technology +523407,Science and Technology,Science and Technology +522954,Science and Technology,Science and Technology +521137,Science and Technology,Science and Technology +521136,Science and Technology,Science and Technology +539366,Science and Technology,Science and Technology +539365,Science and Technology,Science and Technology +536382,Science and Technology,Science and Technology +536381,Science and Technology,Science and Technology +536123,Science and Technology,Science and Technology +532805,Science and Technology,Science and Technology +532787,Science and Technology,Science and Technology +532786,Science and Technology,Science and Technology +531717,Science and Technology,Science and Technology +531716,Science and Technology,Science and Technology +531714,Science and Technology,Science and Technology +527999,Science and Technology,Science and Technology +527998,Science and Technology,Science and Technology +527997,Science and Technology,Science and Technology +525725,Science and Technology,Science and Technology +525723,Science and Technology,Science and Technology +542734,Science and Technology,Science and Technology +532788,Science and Technology,Science and Technology +526052,Science and Technology,Science and Technology +526047,Science and Technology,Science and Technology +523409,Aboriginal Affairs,Aboriginal Affairs +523408,Aboriginal Affairs,Aboriginal Affairs +543765,Aboriginal Affairs,Aboriginal Affairs +524219,Aboriginal Affairs,Aboriginal Affairs +524218,Aboriginal Affairs,Aboriginal Affairs +523743,Aboriginal Affairs,Aboriginal Affairs +523553,Aboriginal Affairs,Aboriginal Affairs +528261,Aboriginal Affairs,Aboriginal Affairs +522341,Aboriginal Affairs,Aboriginal Affairs +537598,Aboriginal Affairs,Aboriginal Affairs +537597,Aboriginal Affairs,Aboriginal Affairs +537596,Aboriginal Affairs,Aboriginal Affairs +537595,Aboriginal Affairs,Aboriginal Affairs +537594,Aboriginal Affairs,Aboriginal Affairs +534202,Aboriginal Affairs,Aboriginal Affairs +524281,Science and Technology,Science and Technology +536077,Science and Technology,Science and Technology +540127,Broadcasting,Broadcasting +526334,Arts and Culture,Arts and Culture +522535,Aboriginal Affairs,Aboriginal Affairs +522472,Aboriginal Affairs,Aboriginal Affairs +525545,Aboriginal Affairs,Aboriginal Affairs +531843,Science and Technology,Science and Technology +531828,Science and Technology,Science and Technology +530360,Arts and Culture,Arts and Culture +529240,Arts and Culture,Arts and Culture +542443,Arts and Culture,Arts and Culture +542442,Arts and Culture,Arts and Culture +540450,Arts and Culture,Arts and Culture +537085,Arts and Culture,Arts and Culture +537084,Arts and Culture,Arts and Culture +537083,Arts and Culture,Arts and Culture +535163,Arts and Culture,Arts and Culture +535162,Arts and Culture,Arts and Culture +535161,Arts and Culture,Arts and Culture +535158,Arts and Culture,Arts and Culture +520734,Arts and Culture,Arts and Culture +535988,Transportation,Transportation +535987,Transportation,Transportation +523829,Official Languages,Bilingualism/Official Languages +520890,Official Languages,Bilingualism/Official Languages +526717,Official Languages,Bilingualism/Official Languages +526709,Official Languages,Bilingualism/Official Languages +523833,Official Languages,Bilingualism/Official Languages +523832,Official Languages,Bilingualism/Official Languages +523831,Official Languages,Bilingualism/Official Languages +521857,Research and Development,Research and Development +520600,Research and Development,Research and Development +536124,Research and Development,Research and Development +532785,Research and Development,Research and Development +532784,Research and Development,Research and Development +531721,Research and Development,Research and Development +531720,Research and Development,Research and Development +531719,Research and Development,Research and Development +530157,Research and Development,Research and Development +527996,Research and Development,Research and Development +525756,Research and Development,Research and Development +523586,Research and Development,Research and Development +523407,Research and Development,Research and Development +522954,Research and Development,Research and Development +521857,Health,Health +520600,Health,Health +538698,Health,Health +536124,Health,Health +532785,Health,Health +532784,Health,Health +531721,Health,Health +531720,Health,Health +531719,Health,Health +527996,Health,Health +525756,Health,Health +523586,Health,Health +523407,Health,Health +522954,Health,Health +521137,Research and Development,Research and Development +521136,Research and Development,Research and Development +539366,Research and Development,Research and Development +539365,Research and Development,Research and Development +536382,Research and Development,Research and Development +536381,Research and Development,Research and Development +536123,Research and Development,Research and Development +532805,Research and Development,Research and Development +532787,Research and Development,Research and Development +532786,Research and Development,Research and Development +531717,Research and Development,Research and Development +531716,Research and Development,Research and Development +531714,Research and Development,Research and Development +527999,Research and Development,Research and Development +527998,Research and Development,Research and Development +527997,Research and Development,Research and Development +525725,Research and Development,Research and Development +525723,Research and Development,Research and Development +521137,Health,Health +521136,Health,Health +539366,Health,Health +539365,Health,Health +536382,Health,Health +536381,Health,Health +536123,Health,Health +532805,Health,Health +532787,Health,Health +532786,Health,Health +531717,Health,Health +531716,Health,Health +531714,Health,Health +527999,Health,Health +527998,Health,Health +527997,Health,Health +525725,Health,Health +525723,Health,Health +542734,Research and Development,Research and Development +532788,Research and Development,Research and Development +542734,Health,Health +532788,Health,Health +529994,Immigration,Immigration +529990,Immigration,Immigration +538881,Immigration,Immigration +533231,Immigration,Immigration +533230,Immigration,Immigration +533228,Immigration,Immigration +529998,Immigration,Immigration +529996,Immigration,Immigration +520663,Health,Health +520663,Industry,Industry +536601,Economic Development,Economic Development +533823,Economic Development,Economic Development +520987,Economic Development,Economic Development +536601,Environment,Environment +533382,Environment,Environment +520705,Environment,Environment +540402,Environment,Environment +520987,Regional Development,Regional Development +521045,Research and Development,Research and Development +521043,Research and Development,Research and Development +536197,Research and Development,Research and Development +529705,Research and Development,Research and Development +528280,Research and Development,Research and Development +528279,Research and Development,Research and Development +528277,Research and Development,Research and Development +528276,Research and Development,Research and Development +526052,Research and Development,Research and Development +526047,Research and Development,Research and Development +526052,Energy,Energy +526047,Energy,Energy +536197,Energy,Energy +526052,Environment,Environment +526047,Environment,Environment +526052,Economic Development,Economic Development +526047,Economic Development,Economic Development +538075,Economic Development,Economic Development +526052,Natural Resources,Natural Resources +526047,Natural Resources,Natural Resources +536197,Natural Resources,Natural Resources +526902,Agriculture,Agriculture +522507,Agriculture,Agriculture +530305,Agriculture,Agriculture +530304,Agriculture,Agriculture +530304,Climate,Climate +526902,Climate,Climate +530305,Environment,Environment +530304,Environment,Environment +526994,Environment,Environment +522514,Environment,Environment +522507,Environment,Environment +522514,Natural Resources,Natural Resources +522507,Natural Resources,Natural Resources +526994,Natural Resources,Natural Resources +525137,Economic Development,Economic Development +525136,Economic Development,Economic Development +520472,Economic Development,Economic Development +538600,Economic Development,Economic Development +536015,Regional Development,Regional Development +520472,Regional Development,Regional Development +540452,Regional Development,Regional Development +528261,Economic Development,Economic Development +522341,Economic Development,Economic Development +537598,Economic Development,Economic Development +537597,Economic Development,Economic Development +537596,Economic Development,Economic Development +537595,Economic Development,Economic Development +537594,Economic Development,Economic Development +534202,Economic Development,Economic Development +528261,Infrastructure,Infrastructure +522341,Infrastructure,Infrastructure +537598,Infrastructure,Infrastructure +537597,Infrastructure,Infrastructure +537596,Infrastructure,Infrastructure +537595,Infrastructure,Infrastructure +528261,Small Business,Small Business +522341,Small Business,Small Business +534202,Small Business,Small Business +545339,International Trade,Commerce international +545337,International Trade,Commerce international +523545,Economic Development,Développement économique +523542,Economic Development,Développement économique +545343,Economic Development,Développement économique +545342,Economic Development,Développement économique +545341,Economic Development,Développement économique +545338,Economic Development,Développement économique +545336,Economic Development,Développement économique +545335,Economic Development,Développement économique +545331,Economic Development,Développement économique +545330,Economic Development,Développement économique +545328,Economic Development,Développement économique +542652,Economic Development,Développement économique +542650,Economic Development,Développement économique +542649,Economic Development,Développement économique +540989,Economic Development,Développement économique +536846,Economic Development,Développement économique +536845,Economic Development,Développement économique +533459,Economic Development,Développement économique +533458,Economic Development,Développement économique +533455,Economic Development,Développement économique +533452,Economic Development,Développement économique +531081,Economic Development,Développement économique +531074,Economic Development,Développement économique +531070,Economic Development,Développement économique +531080,Transportation,Transports +545334,Transportation,Transports +545333,Transportation,Transports +545332,Transportation,Transports +545329,Transportation,Transports +545326,Transportation,Transports +542653,Transportation,Transports +542199,Transportation,Transports +542198,Transportation,Transports +540990,Transportation,Transports +536844,Transportation,Transports +527425,Economic Development,Economic Development +530762,Environment,Environment +527438,Environment,Environment +531795,Government Procurement,Government Procurement +531790,Government Procurement,Government Procurement +520553,Government Procurement,Government Procurement +520539,Government Procurement,Government Procurement +520538,Government Procurement,Government Procurement +539584,Government Procurement,Government Procurement +537993,Government Procurement,Government Procurement +536962,Government Procurement,Government Procurement +536503,Government Procurement,Government Procurement +520539,Health,Health +520538,Health,Health +536962,Health,Health +536503,Health,Health +536385,Health,Health +531795,Health,Health +531790,Health,Health +525194,Government Procurement,Government Procurement +522428,Government Procurement,Government Procurement +539166,Government Procurement,Government Procurement +539165,Government Procurement,Government Procurement +537705,Government Procurement,Government Procurement +536386,Government Procurement,Government Procurement +533967,Government Procurement,Government Procurement +532292,Government Procurement,Government Procurement +522428,Health,Health +520831,Health,Health +539166,Health,Health +537705,Health,Health +536386,Health,Health +533967,Health,Health +532292,Health,Health +532290,Health,Health +524832,Climate,Climate +524828,Climate,Climate +533489,Housing,Housing +533488,Housing,Housing +526386,Consumer Issues,Consumer Issues +522941,Consumer Issues,Consumer Issues +526386,Economic Development,Economic Development +522941,Economic Development,Economic Development +526386,Employment and Training,Employment and Training +522941,Employment and Training,Employment and Training +526386,Environment,Environment +522941,Environment,Environment +526386,Industry,Industry +522941,Industry,Industry +526386,Labour,Labour +522941,Labour,Labour +526386,Privacy and Access to Information,Privacy and Access to Information +522941,Privacy and Access to Information,Privacy and Access to Information +526386,Small Business,Small Business +526386,Transportation,Transportation +522941,Transportation,Transportation +520570,Transportation,Transportation +520573,Labour,Labour +520577,Consumer Issues,Consumer Issues +520576,Consumer Issues,Consumer Issues +544601,Consumer Issues,Consumer Issues +544600,Consumer Issues,Consumer Issues +542379,Consumer Issues,Consumer Issues +540473,Consumer Issues,Consumer Issues +539493,Consumer Issues,Consumer Issues +539471,Consumer Issues,Consumer Issues +531546,Consumer Issues,Consumer Issues +530527,Consumer Issues,Consumer Issues +527739,Consumer Issues,Consumer Issues +526967,Consumer Issues,Consumer Issues +521867,Consumer Issues,Consumer Issues +521312,Consumer Issues,Consumer Issues +520905,Consumer Issues,Consumer Issues +520904,Consumer Issues,Consumer Issues +520742,Consumer Issues,Consumer Issues +520905,Industry,Industry +520904,Industry,Industry +542379,Industry,Industry +539493,Industry,Industry +539471,Industry,Industry +520742,Privacy and Access to Information,Privacy and Access to Information +520741,Privacy and Access to Information,Privacy and Access to Information +542379,Privacy and Access to Information,Privacy and Access to Information +540473,Privacy and Access to Information,Privacy and Access to Information +539493,Privacy and Access to Information,Privacy and Access to Information +520577,Small Business,Small Business +520576,Small Business,Small Business +544601,Small Business,Small Business +544600,Small Business,Small Business +542379,Small Business,Small Business +540473,Small Business,Small Business +539493,Small Business,Small Business +539471,Small Business,Small Business +531546,Small Business,Small Business +530527,Small Business,Small Business +527739,Small Business,Small Business +526967,Small Business,Small Business +521867,Small Business,Small Business +521312,Small Business,Small Business +520905,Small Business,Small Business +520904,Small Business,Small Business +520742,Small Business,Small Business +520940,Housing,Housing +520616,Housing,Housing +542294,Transportation,Transportation +520397,Housing,Housing +523830,Official Languages,Bilingualism/Official Languages +521952,Research and Development,Research and Development +521952,Health,Health +522424,Research and Development,Research and Development +522424,Health,Health +542735,Research and Development,Research and Development +542735,Health,Health +529995,Immigration,Immigration +520667,Health,Health +520667,Industry,Industry +533382,Agriculture,Agriculture +540402,Economic Development,Economic Development +538913,Environment,Environment +520705,Natural Resources,Natural Resources +538913,Regional Development,Regional Development +521121,Research and Development,Research and Development +529705,Energy,Energy +529705,Environment,Environment +529705,Economic Development,Economic Development +529705,Natural Resources,Natural Resources +526994,Agriculture,Agriculture +538847,Climate,Climate +538847,Environment,Environment +522514,Infrastructure,Infrastructure +526902,Natural Resources,Natural Resources +536083,Economic Development,Développement économique +536083,Tourism,Tourisme +530305,Industry,Industry +543765,Health,Health +523553,Justice and Law Enforcement,Justice and Law Enforcement +520465,Agriculture,Agriculture +525185,Economic Development,Economic Development +538600,Regional Development,Regional Development +522747,Education,Education +534199,Economic Development,Economic Development +537594,Infrastructure,Infrastructure +534199,Small Business,Small Business +545340,International Trade,Commerce international +531066,Economic Development,Développement économique +523544,Energy,Énergie +533454,Environment,Environnement +533456,Transportation,Transports +527438,Economic Development,Economic Development +533126,Environment,Environment +536385,Government Procurement,Government Procurement +520553,Health,Health +532290,Government Procurement,Government Procurement +525194,Health,Health +524836,Climate,Climate +520517,Economic Development,Economic Development +533508,Housing,Housing +520523,Climate,Climate +520523,Economic Development,Economic Development +520523,Energy,Energy +520523,Environment,Environment +520523,Infrastructure,Infrastructure +524751,Agriculture,Agriculture +526389,Consumer Issues,Consumer Issues +526389,Economic Development,Economic Development +526389,Education,Education +526389,Employment and Training,Employment and Training +526389,Environment,Environment +526389,Industry,Industry +526389,Labour,Labour +526389,Privacy and Access to Information,Privacy and Access to Information +526389,Small Business,Small Business +526389,Transportation,Transportation +539444,Industry,Industry +539444,Energy,Energy +539444,Environment,Environment +522912,Transportation,Transportation +524239,Health,Health +524239,Small Business,Small Business +524239,Justice and Law Enforcement,Justice and Law Enforcement +524239,Budget,Budget +520575,Labour,Labour +520741,Consumer Issues,Consumer Issues +526967,Industry,Industry +539471,Privacy and Access to Information,Privacy and Access to Information +520741,Small Business,Small Business +520941,Housing,Housing +540102,Climate,Climate +541946,Economic Development,Economic Development +526633,Environment,Environment +544655,Transportation,Transportation +524278,Transportation,Transportation +530586,Economic Development,Economic Development +536108,Climate,Climate +528053,Environment,Environment +523314,Infrastructure,Infrastructure +527008,Agriculture,Agriculture +527008,Climate,Climate +527008,Environment,Environment +539908,Fisheries,Fisheries +527008,Industry,Industry +530615,Media,Media +520614,Media,Media +520605,Government Procurement,Government Procurement +520605,Health,Health +531385,Health,Health +524460,Economic Development,Economic Development +524460,Infrastructure,Infrastructure +524460,Research and Development,Research and Development +526361,Industry,Industry +523552,Research and Development,Recherche et développement +522129,Employment and Training,Employment and Training +520626,Employment and Training,Employment and Training +520627,Employment and Training,Employment and Training +520629,Employment and Training,Employment and Training +520630,Employment and Training,Employment and Training +520631,Employment and Training,Employment and Training +520632,Employment and Training,Employment and Training +520633,Employment and Training,Employment and Training +520634,Employment and Training,Employment and Training +520635,Employment and Training,Employment and Training +520636,Employment and Training,Employment and Training +520637,Employment and Training,Employment and Training +523018,Transportation,Transportation +526642,Economic Development,Economic Development +526642,Environment,Environment +526642,Infrastructure,Infrastructure +526642,International Trade,International Trade +526642,Regional Development,Regional Development +525505,Agriculture,Agriculture +525505,Economic Development,Economic Development +525548,Employment and Training,Employment and Training +531843,Environment,Environment +525505,Fisheries,Fisheries +531828,Industry,Industry +525548,Labour,Labour +525505,Regional Development,Regional Development +525505,Small Business,Small Business +523810,Regional Development,Regional Development +523810,Government Procurement,Government Procurement +532581,Environment,Environment +523803,Regional Development,Regional Development +523803,Infrastructure,Infrastructure +524220,International Trade,International Trade +523803,Economic Development,Economic Development +523803,Transportation,Transportation +523810,Industry,Industry +520671,International Trade,International Trade +539478,Consumer Issues,Consumer Issues +539478,Economic Development,Economic Development +539478,Employment and Training,Employment and Training +530129,Government Procurement,Government Procurement +539478,Immigration,Immigration +539478,Small Business,Small Business +530129,Taxation and Finance,Taxation and Finance +520718,Labour,Labour +520721,Infrastructure,Infrastructure +529157,Industry,Industry +529115,Defence,Defence +535306,International Trade,International Trade +535361,Regional Development,Regional Development +529155,International Relations,International Relations +535350,Government Procurement,Government Procurement +535361,Economic Development,Economic Development +529115,Foreign Affairs,Foreign Affairs +529157,Research and Development,Research and Development +541148,Regional Development,Regional Development +524422,Climate,Climate +530196,Industry,Industry +524422,Research and Development,Research and Development +530412,Economic Development,Economic Development +540586,International Trade,International Trade +526654,Employment and Training,Employment and Training +538827,Energy,Energy +538826,Taxation and Finance,Taxation and Finance +522432,Federal-Provincial Relations,Federal-Provincial Relations +523919,Taxation and Finance,Taxation and Finance +527506,Internal Trade,Internal Trade +520789,Media,Media +525821,Economic Development,Economic Development +525816,Industry,Industry +525816,Regional Development,Regional Development +536636,Federal-Provincial Relations,Federal-Provincial Relations +536265,Federal-Provincial Relations,Federal-Provincial Relations +522742,Taxation and Finance,Taxation and Finance +532099,Health,Health +520833,Foreign Affairs,Foreign Affairs +520844,Federal-Provincial Relations,Federal-Provincial Relations +527076,Climate,Climate +520847,Climate,Climate +529439,Economic Development,Economic Development +529439,Environment,Environment +532522,Federal-Provincial Relations,Federal-Provincial Relations +529439,Infrastructure,Infrastructure +529439,Natural Resources,Natural Resources +529439,Regional Development,Regional Development +529439,Transportation,Transportation +523748,Internal Trade,Internal Trade +532472,Labour,Labour +527033,Natural Resources,Natural Resources +536324,Transportation,Transportation +540328,International Development,International Development +526714,Official Languages,Bilinguisme/Langues officielles +527421,Climate,Climate +527418,Environment,Environment +527418,Forestry,Forestry +530916,Official Languages,Bilinguisme/Langues officielles +530916,Economic Development,Développement économique +530916,Immigration,Immigration +524286,Child Services,Services à l’enfance +524286,Tourism,Tourisme +520966,Climate,Climate +520966,Economic Development,Economic Development +520966,Industry,Industry +520931,Natural Resources,Natural Resources +524123,Budget,Budget +524123,Economic Development,Economic Development +524123,Industry,Industry +524123,Taxation and Finance,Taxation and Finance +524123,Transportation,Transportation +524743,Environment,Environment +529480,Agriculture,Agriculture +532255,Climate,Climate +526671,Economic Development,Economic Development +526665,Labour,Labour +523226,Tourism,Tourism +523222,Transportation,Transportation +536266,Federal-Provincial Relations,Federal-Provincial Relations +536690,Federal-Provincial Relations,Federal-Provincial Relations +526553,Economic Development,Economic Development +526559,Employment and Training,Employment and Training +526559,Small Business,Small Business +520993,Health,Health +524472,Climate,Climate +524472,Energy,Energy +525399,Fisheries,Fisheries +526635,Climate,Climate +526633,Climate,Climate +541946,Climate,Climate +526633,Economic Development,Economic Development +541946,Environment,Environment +540102,Environment,Environment +526635,Environment,Environment +524277,Transportation,Transportation +528053,Economic Development,Economic Development +527132,Economic Development,Economic Development +540686,Economic Development,Economic Development +530586,Climate,Climate +528053,Climate,Climate +540686,Climate,Climate +523313,Infrastructure,Infrastructure +520594,Infrastructure,Infrastructure +540998,Infrastructure,Infrastructure +540266,Infrastructure,Infrastructure +540264,Infrastructure,Infrastructure +536250,Infrastructure,Infrastructure +536249,Infrastructure,Infrastructure +535429,Infrastructure,Infrastructure +535428,Infrastructure,Infrastructure +535426,Infrastructure,Infrastructure +535423,Infrastructure,Infrastructure +535397,Infrastructure,Infrastructure +532740,Infrastructure,Infrastructure +526498,Agriculture,Agriculture +525086,Agriculture,Agriculture +539908,Agriculture,Agriculture +538925,Agriculture,Agriculture +526498,Climate,Climate +525086,Climate,Climate +538925,Climate,Climate +526498,Environment,Environment +525086,Environment,Environment +539908,Environment,Environment +526561,Media,Media +523872,Media,Media +542327,Media,Media +542326,Media,Media +542325,Media,Media +541884,Media,Media +528155,Health,Health +528154,Health,Health +537426,Health,Health +534778,Health,Health +526334,Industry,Industry +520913,Research and Development,Recherche et développement +520695,Research and Development,Recherche et développement +524234,Research and Development,Recherche et développement +522128,Employment and Training,Employment and Training +520625,Employment and Training,Employment and Training +542117,Employment and Training,Employment and Training +527799,Employment and Training,Employment and Training +527796,Employment and Training,Employment and Training +527795,Employment and Training,Employment and Training +527794,Employment and Training,Employment and Training +527793,Employment and Training,Employment and Training +527792,Employment and Training,Employment and Training +527791,Employment and Training,Employment and Training +527790,Employment and Training,Employment and Training +527788,Employment and Training,Employment and Training +526001,Employment and Training,Employment and Training +526000,Employment and Training,Employment and Training +525999,Employment and Training,Employment and Training +525998,Employment and Training,Employment and Training +525997,Employment and Training,Employment and Training +525995,Employment and Training,Employment and Training +522145,Employment and Training,Employment and Training +522144,Employment and Training,Employment and Training +522142,Employment and Training,Employment and Training +522140,Employment and Training,Employment and Training +522132,Employment and Training,Employment and Training +522131,Employment and Training,Employment and Training +522130,Employment and Training,Employment and Training +526637,Economic Development,Economic Development +526637,Infrastructure,Infrastructure +526637,International Trade,International Trade +526637,Regional Development,Regional Development +522535,Agriculture,Agriculture +522472,Agriculture,Agriculture +539783,Agriculture,Agriculture +538191,Agriculture,Agriculture +535269,Agriculture,Agriculture +535255,Agriculture,Agriculture +535251,Agriculture,Agriculture +535246,Agriculture,Agriculture +535238,Agriculture,Agriculture +531843,Agriculture,Agriculture +531839,Agriculture,Agriculture +531826,Agriculture,Agriculture +531820,Agriculture,Agriculture +525548,Agriculture,Agriculture +525545,Agriculture,Agriculture +522535,Economic Development,Economic Development +522472,Economic Development,Economic Development +539783,Economic Development,Economic Development +538191,Economic Development,Economic Development +535269,Economic Development,Economic Development +535255,Economic Development,Economic Development +535251,Economic Development,Economic Development +535246,Economic Development,Economic Development +535238,Economic Development,Economic Development +531843,Economic Development,Economic Development +531839,Economic Development,Economic Development +531828,Economic Development,Economic Development +531826,Economic Development,Economic Development +531820,Economic Development,Economic Development +525548,Economic Development,Economic Development +525545,Economic Development,Economic Development +525545,Employment and Training,Employment and Training +525505,Employment and Training,Employment and Training +538191,Employment and Training,Employment and Training +535269,Employment and Training,Employment and Training +535255,Employment and Training,Employment and Training +535251,Employment and Training,Employment and Training +535246,Employment and Training,Employment and Training +535238,Employment and Training,Employment and Training +531839,Employment and Training,Employment and Training +531826,Employment and Training,Employment and Training +531820,Employment and Training,Employment and Training +522535,Environment,Environment +522472,Environment,Environment +539783,Environment,Environment +522535,Fisheries,Fisheries +522472,Fisheries,Fisheries +539783,Fisheries,Fisheries +538191,Fisheries,Fisheries +535269,Fisheries,Fisheries +535251,Fisheries,Fisheries +535246,Fisheries,Fisheries +535238,Fisheries,Fisheries +531843,Fisheries,Fisheries +531839,Fisheries,Fisheries +531828,Fisheries,Fisheries +531826,Fisheries,Fisheries +531820,Fisheries,Fisheries +525548,Fisheries,Fisheries +525545,Fisheries,Fisheries +531826,Industry,Industry +531820,Industry,Industry +525548,Industry,Industry +525545,Industry,Industry +522535,Industry,Industry +522472,Industry,Industry +539783,Industry,Industry +538191,Industry,Industry +535269,Industry,Industry +535255,Industry,Industry +535251,Industry,Industry +535246,Industry,Industry +535238,Industry,Industry +531843,Industry,Industry +531839,Industry,Industry +525545,Labour,Labour +525505,Labour,Labour +522535,Labour,Labour +522472,Labour,Labour +535269,Labour,Labour +535255,Labour,Labour +535246,Labour,Labour +535238,Labour,Labour +531843,Labour,Labour +531839,Labour,Labour +531828,Labour,Labour +531826,Labour,Labour +531820,Labour,Labour +522535,Regional Development,Regional Development +522472,Regional Development,Regional Development +539783,Regional Development,Regional Development +535269,Regional Development,Regional Development +535255,Regional Development,Regional Development +535251,Regional Development,Regional Development +535246,Regional Development,Regional Development +535238,Regional Development,Regional Development +531843,Regional Development,Regional Development +531839,Regional Development,Regional Development +531828,Regional Development,Regional Development +531826,Regional Development,Regional Development +531820,Regional Development,Regional Development +525548,Regional Development,Regional Development +525545,Regional Development,Regional Development +522535,Small Business,Small Business +522472,Small Business,Small Business +535269,Small Business,Small Business +535251,Small Business,Small Business +535246,Small Business,Small Business +535238,Small Business,Small Business +531843,Small Business,Small Business +531839,Small Business,Small Business +531826,Small Business,Small Business +531820,Small Business,Small Business +525548,Small Business,Small Business +525545,Small Business,Small Business +520671,Regional Development,Regional Development +520671,Government Procurement,Government Procurement +521931,Environment,Environment +521561,Environment,Environment +521931,Regional Development,Regional Development +521561,Regional Development,Regional Development +536148,Regional Development,Regional Development +532789,Regional Development,Regional Development +529936,Regional Development,Regional Development +529934,Regional Development,Regional Development +529932,Regional Development,Regional Development +529931,Regional Development,Regional Development +529928,Regional Development,Regional Development +527363,Regional Development,Regional Development +524637,Regional Development,Regional Development +524633,Regional Development,Regional Development +524220,Regional Development,Regional Development +521931,Infrastructure,Infrastructure +521561,Infrastructure,Infrastructure +536507,Infrastructure,Infrastructure +532789,Infrastructure,Infrastructure +529934,Infrastructure,Infrastructure +529932,Infrastructure,Infrastructure +529931,Infrastructure,Infrastructure +529929,Infrastructure,Infrastructure +529928,Infrastructure,Infrastructure +527363,Infrastructure,Infrastructure +524637,Infrastructure,Infrastructure +524633,Infrastructure,Infrastructure +524220,Infrastructure,Infrastructure +523803,International Trade,International Trade +521561,International Trade,International Trade +532789,International Trade,International Trade +532581,International Trade,International Trade +529936,International Trade,International Trade +529934,International Trade,International Trade +529932,International Trade,International Trade +529931,International Trade,International Trade +529929,International Trade,International Trade +529928,International Trade,International Trade +525728,International Trade,International Trade +524637,International Trade,International Trade +524633,International Trade,International Trade +521931,Economic Development,Economic Development +521561,Economic Development,Economic Development +536507,Economic Development,Economic Development +536148,Economic Development,Economic Development +536147,Economic Development,Economic Development +532789,Economic Development,Economic Development +532581,Economic Development,Economic Development +529936,Economic Development,Economic Development +529934,Economic Development,Economic Development +529932,Economic Development,Economic Development +529931,Economic Development,Economic Development +529929,Economic Development,Economic Development +529928,Economic Development,Economic Development +527363,Economic Development,Economic Development +525728,Economic Development,Economic Development +524637,Economic Development,Economic Development +524633,Economic Development,Economic Development +524220,Economic Development,Economic Development +521931,Transportation,Transportation +521561,Transportation,Transportation +536507,Transportation,Transportation +536148,Transportation,Transportation +536147,Transportation,Transportation +532789,Transportation,Transportation +532581,Transportation,Transportation +529936,Transportation,Transportation +529934,Transportation,Transportation +529932,Transportation,Transportation +529931,Transportation,Transportation +529929,Transportation,Transportation +529928,Transportation,Transportation +527363,Transportation,Transportation +525728,Transportation,Transportation +524637,Transportation,Transportation +524633,Transportation,Transportation +524220,Transportation,Transportation +520671,Industry,Industry +530129,Consumer Issues,Consumer Issues +530129,Economic Development,Economic Development +530129,Employment and Training,Employment and Training +530129,Immigration,Immigration +530129,Small Business,Small Business +542322,Labour,Labour +529115,Industry,Industry +526088,Industry,Industry +544174,Industry,Industry +544172,Industry,Industry +538399,Industry,Industry +535361,Industry,Industry +535350,Industry,Industry +535306,Industry,Industry +532394,Industry,Industry +526115,Defence,Defence +526088,Defence,Defence +544174,Defence,Defence +544172,Defence,Defence +540472,Defence,Defence +538399,Defence,Defence +535361,Defence,Defence +535350,Defence,Defence +535306,Defence,Defence +532394,Defence,Defence +529157,Defence,Defence +529156,Defence,Defence +529155,Defence,Defence +529135,Defence,Defence +529156,International Trade,International Trade +529135,International Trade,International Trade +538399,International Trade,International Trade +535350,International Trade,International Trade +529115,Regional Development,Regional Development +526115,International Relations,International Relations +526088,International Relations,International Relations +540472,International Relations,International Relations +535361,International Relations,International Relations +535306,International Relations,International Relations +532394,International Relations,International Relations +529157,International Relations,International Relations +532394,Government Procurement,Government Procurement +526115,Government Procurement,Government Procurement +544174,Government Procurement,Government Procurement +538399,Government Procurement,Government Procurement +535361,Government Procurement,Government Procurement +535350,Economic Development,Economic Development +535306,Economic Development,Economic Development +532394,Economic Development,Economic Development +529157,Economic Development,Economic Development +529156,Economic Development,Economic Development +529155,Economic Development,Economic Development +529135,Economic Development,Economic Development +529115,Economic Development,Economic Development +526115,Economic Development,Economic Development +526088,Economic Development,Economic Development +544174,Economic Development,Economic Development +544172,Economic Development,Economic Development +540472,Economic Development,Economic Development +538399,Economic Development,Economic Development +526115,Foreign Affairs,Foreign Affairs +526088,Foreign Affairs,Foreign Affairs +544174,Foreign Affairs,Foreign Affairs +544172,Foreign Affairs,Foreign Affairs +540472,Foreign Affairs,Foreign Affairs +538399,Foreign Affairs,Foreign Affairs +535361,Foreign Affairs,Foreign Affairs +535350,Foreign Affairs,Foreign Affairs +535306,Foreign Affairs,Foreign Affairs +532394,Foreign Affairs,Foreign Affairs +529157,Foreign Affairs,Foreign Affairs +529156,Foreign Affairs,Foreign Affairs +529155,Foreign Affairs,Foreign Affairs +529135,Foreign Affairs,Foreign Affairs +540586,Regional Development,Regional Development +539179,Regional Development,Regional Development +530195,Industry,Industry +524422,Industry,Industry +541148,Industry,Industry +540586,Industry,Industry +539179,Industry,Industry +530196,Economic Development,Economic Development +530195,Economic Development,Economic Development +539179,International Trade,International Trade +530412,International Trade,International Trade +538825,Taxation and Finance,Taxation and Finance +520863,Taxation and Finance,Taxation and Finance +527504,Internal Trade,Internal Trade +523919,Internal Trade,Internal Trade +525816,Economic Development,Economic Development +525798,Economic Development,Economic Development +525811,Industry,Industry +525798,Industry,Industry +525821,Industry,Industry +525811,Regional Development,Regional Development +525798,Regional Development,Regional Development +525821,Regional Development,Regional Development +535986,Federal-Provincial Relations,Federal-Provincial Relations +522123,Federal-Provincial Relations,Federal-Provincial Relations +532829,Federal-Provincial Relations,Federal-Provincial Relations +522058,Federal-Provincial Relations,Federal-Provincial Relations +529023,Health,Health +521428,Health,Health +539158,Health,Health +536928,Health,Health +529435,Economic Development,Economic Development +526239,Economic Development,Economic Development +538605,Economic Development,Economic Development +532522,Economic Development,Economic Development +529435,Environment,Environment +526239,Environment,Environment +538605,Environment,Environment +532522,Environment,Environment +529439,Federal-Provincial Relations,Federal-Provincial Relations +529435,Federal-Provincial Relations,Federal-Provincial Relations +538605,Federal-Provincial Relations,Federal-Provincial Relations +529435,Infrastructure,Infrastructure +526239,Infrastructure,Infrastructure +538605,Infrastructure,Infrastructure +532522,Infrastructure,Infrastructure +529435,Natural Resources,Natural Resources +526239,Natural Resources,Natural Resources +538605,Natural Resources,Natural Resources +532522,Natural Resources,Natural Resources +529435,Regional Development,Regional Development +526239,Regional Development,Regional Development +538605,Regional Development,Regional Development +532522,Regional Development,Regional Development +529435,Transportation,Transportation +526239,Transportation,Transportation +538605,Transportation,Transportation +532522,Transportation,Transportation +521699,Labour,Labour +539000,International Development,International Development +521548,Official Languages,Bilinguisme/Langues officielles +527420,Climate,Climate +524249,Climate,Climate +524249,Environment,Environment +520907,Environment,Environment +536038,Environment,Environment +527421,Environment,Environment +527420,Environment,Environment +524249,Forestry,Forestry +524286,Official Languages,Bilinguisme/Langues officielles +524285,Official Languages,Bilinguisme/Langues officielles +524286,Economic Development,Développement économique +524285,Economic Development,Développement économique +524286,Immigration,Immigration +520936,Economic Development,Economic Development +520935,Economic Development,Economic Development +520936,Industry,Industry +520935,Industry,Industry +524122,Budget,Budget +524119,Budget,Budget +524130,Budget,Budget +524129,Budget,Budget +524128,Budget,Budget +524127,Budget,Budget +524126,Budget,Budget +524124,Budget,Budget +524122,Economic Development,Economic Development +524119,Economic Development,Economic Development +524130,Economic Development,Economic Development +524129,Economic Development,Economic Development +524128,Economic Development,Economic Development +524127,Economic Development,Economic Development +524126,Economic Development,Economic Development +524124,Economic Development,Economic Development +524122,Industry,Industry +524119,Industry,Industry +524130,Industry,Industry +524129,Industry,Industry +524128,Industry,Industry +524127,Industry,Industry +524126,Industry,Industry +524124,Industry,Industry +524122,Taxation and Finance,Taxation and Finance +524119,Taxation and Finance,Taxation and Finance +524130,Taxation and Finance,Taxation and Finance +524129,Taxation and Finance,Taxation and Finance +524128,Taxation and Finance,Taxation and Finance +524127,Taxation and Finance,Taxation and Finance +524126,Taxation and Finance,Taxation and Finance +524124,Taxation and Finance,Taxation and Finance +524122,Transportation,Transportation +524119,Transportation,Transportation +524130,Transportation,Transportation +524129,Transportation,Transportation +524128,Transportation,Transportation +524127,Transportation,Transportation +524126,Transportation,Transportation +524124,Transportation,Transportation +524740,Environment,Environment +524743,Agriculture,Agriculture +524740,Agriculture,Agriculture +541909,Agriculture,Agriculture +532255,Agriculture,Agriculture +526665,Economic Development,Economic Development +523215,Economic Development,Economic Development +526675,Economic Development,Economic Development +523222,Tourism,Tourism +523215,Tourism,Tourism +545304,Tourism,Tourism +545303,Tourism,Tourism +545302,Tourism,Tourism +545301,Tourism,Tourism +545284,Tourism,Tourism +545282,Tourism,Tourism +545281,Tourism,Tourism +545280,Tourism,Tourism +532519,Tourism,Tourism +527407,Tourism,Tourism +527406,Tourism,Tourism +527405,Tourism,Tourism +527404,Tourism,Tourism +527402,Tourism,Tourism +527399,Tourism,Tourism +526682,Tourism,Tourism +526680,Tourism,Tourism +526679,Tourism,Tourism +526678,Tourism,Tourism +526676,Tourism,Tourism +526675,Tourism,Tourism +526674,Tourism,Tourism +526671,Tourism,Tourism +526665,Tourism,Tourism +532830,Federal-Provincial Relations,Federal-Provincial Relations +522053,Federal-Provincial Relations,Federal-Provincial Relations +540576,Federal-Provincial Relations,Federal-Provincial Relations +535985,Federal-Provincial Relations,Federal-Provincial Relations +522124,Federal-Provincial Relations,Federal-Provincial Relations +523636,Economic Development,Economic Development +523636,Employment and Training,Employment and Training +526553,Small Business,Small Business +526545,Small Business,Small Business +539660,Small Business,Small Business +539653,Small Business,Small Business +521929,Climate,Climate +521929,Energy,Energy +525398,Fisheries,Fisheries +525393,Fisheries,Fisheries +530263,Fisheries,Fisheries +525407,Fisheries,Fisheries +525403,Fisheries,Fisheries +523658,Health,Health +521889,Health,Health +540395,Health,Health +538617,Health,Health +538615,Health,Health +529780,Health,Health +526926,Health,Health +525048,Health,Health +524429,Health,Health +526822,Justice and Law Enforcement,Justice and Law Enforcement +521108,Justice and Law Enforcement,Justice and Law Enforcement +526533,Employment and Training,Employment and Training +526532,Employment and Training,Employment and Training +526530,Employment and Training,Employment and Training +526535,Employment and Training,Employment and Training +521849,Health,Health +527775,Agriculture,Agriculture +527778,Economic Development,Economic Development +527775,Economic Development,Economic Development +527775,Industry,Industry +522707,Economic Development,Développement économique +522704,Economic Development,Développement économique +529591,Economic Development,Economic Development +523133,Economic Development,Economic Development +528605,Health,Health +525764,Health,Health +525761,Health,Health +524700,Agriculture,Agriculture +524695,Agriculture,Agriculture +540749,Agriculture,Agriculture +530063,Agriculture,Agriculture +527266,Agriculture,Agriculture +527045,Agriculture,Agriculture +524706,Agriculture,Agriculture +524700,International Relations,International Relations +524695,International Relations,International Relations +530063,International Relations,International Relations +527266,International Relations,International Relations +527045,International Relations,International Relations +524706,International Relations,International Relations +524700,International Trade,International Trade +524695,International Trade,International Trade +540749,International Trade,International Trade +530063,International Trade,International Trade +527266,International Trade,International Trade +527045,International Trade,International Trade +524706,International Trade,International Trade +527006,Energy,Énergie +526985,Energy,Énergie +540546,Energy,Énergie +532817,Energy,Énergie +532816,Energy,Énergie +532814,Energy,Énergie +532813,Energy,Énergie +532814,Foreign Affairs,Foreign Affairs +530499,Foreign Affairs,Foreign Affairs +526985,Industry,Industrie +523614,Industry,Industrie +542958,Industry,Industrie +540546,Industry,Industrie +532816,Industry,Industrie +532815,Industry,Industrie +530499,Industry,Industrie +532815,Economic Development,Développement économique +532814,Economic Development,Développement économique +527007,Industry,Industrie +524221,Industry,Industrie +542960,Industry,Industrie +540653,Industry,Industrie +523689,Environment,Environment +523689,Industry,Industry +523908,Health,Health +523906,Health,Health +527665,Health,Health +527661,Health,Health +532701,Economic Development,Economic Development +532699,Economic Development,Economic Development +536696,Federal-Provincial Relations,Federal-Provincial Relations +532833,Federal-Provincial Relations,Federal-Provincial Relations +532831,Federal-Provincial Relations,Federal-Provincial Relations +522054,Federal-Provincial Relations,Federal-Provincial Relations +538647,Health,Health +533005,Health,Health +542223,Health,Health +540597,Health,Health +523548,Budget,Budget +523402,Budget,Budget +529925,Budget,Budget +540394,Health,Health +533814,Energy,Energy +533813,Energy,Energy +543107,Energy,Energy +539505,Energy,Energy +537288,Energy,Energy +537286,Energy,Energy +533814,Infrastructure,Infrastructure +533813,Infrastructure,Infrastructure +543107,Infrastructure,Infrastructure +538831,Taxation and Finance,Impôts et finances +530394,Economic Development,Economic Development +530394,Government Procurement,Government Procurement +526110,Government Procurement,Government Procurement +527123,Education,Education +526608,Financial Institutions,Financial Institutions +528683,Financial Institutions,Financial Institutions +529777,Employment and Training,Employment and Training +526931,Employment and Training,Employment and Training +532546,Employment and Training,Employment and Training +526931,Labour,Labour +522192,Labour,Labour +542102,Labour,Labour +536901,Labour,Labour +536900,Labour,Labour +536184,Labour,Labour +532546,Labour,Labour +530409,Labour,Labour +536900,Consumer Issues,Consumer Issues +530411,Consumer Issues,Consumer Issues +542102,Consumer Issues,Consumer Issues +521528,Agriculture,Agriculture +521527,Agriculture,Agriculture +521530,Agriculture,Agriculture +521528,Consumer Issues,Consumer Issues +521527,Consumer Issues,Consumer Issues +521530,Consumer Issues,Consumer Issues +521529,Health,Health +521528,Health,Health +521527,Health,Health +521528,Industry,Industry +521527,Industry,Industry +521530,Industry,Industry +521528,International Trade,International Trade +521527,International Trade,International Trade +521530,International Trade,International Trade +521528,Research and Development,Research and Development +521527,Research and Development,Research and Development +521530,Research and Development,Research and Development +521528,Small Business,Small Business +521527,Small Business,Small Business +521530,Small Business,Small Business +524256,Energy,Energy +529582,Health,Health +529581,Health,Health +534596,Health,Health +534591,Health,Health +534587,Health,Health +532492,Climate,Climate +528847,Climate,Climate +538991,Climate,Climate +532497,Climate,Climate +532496,Climate,Climate +532495,Climate,Climate +532494,Climate,Climate +532492,Health,Health +528847,Health,Health +538991,Health,Health +532497,Health,Health +532496,Health,Health +532495,Health,Health +532494,Health,Health +532492,Pensions,Pensions +528847,Pensions,Pensions +538991,Pensions,Pensions +532497,Pensions,Pensions +532496,Pensions,Pensions +532495,Pensions,Pensions +532494,Pensions,Pensions +531254,Agriculture,Agriculture +521653,Agriculture,Agriculture +537405,Agriculture,Agriculture +537404,Agriculture,Agriculture +523804,Regional Development,Regional Development +521688,Regional Development,Regional Development +532396,Regional Development,Regional Development +531770,Regional Development,Regional Development +531769,Regional Development,Regional Development +531766,Regional Development,Regional Development +528364,Regional Development,Regional Development +528362,Regional Development,Regional Development +528360,Regional Development,Regional Development +528358,Regional Development,Regional Development +528357,Regional Development,Regional Development +528355,Regional Development,Regional Development +526829,Regional Development,Regional Development +526826,Regional Development,Regional Development +525788,Regional Development,Regional Development +525784,Regional Development,Regional Development +525780,Regional Development,Regional Development +525775,Regional Development,Regional Development +525770,Regional Development,Regional Development +525766,Regional Development,Regional Development +521702,Energy,Energy +540320,Industry,Industry +532996,Industry,Industry +542144,Industry,Industry +528200,International Development,International Development +522265,International Development,International Development +541422,International Development,International Development +524243,Energy,Energy +524242,Energy,Energy +524245,Energy,Energy +529865,Environment,Environment +531604,Mining,Mining +529868,Mining,Mining +529867,Mining,Mining +542523,Mining,Mining +542522,Mining,Mining +542521,Mining,Mining +539198,Mining,Mining +539197,Mining,Mining +536164,Mining,Mining +536163,Mining,Mining +533347,Mining,Mining +533346,Mining,Mining +531610,Mining,Mining +524244,Transportation,Transportation +536165,Transportation,Transportation +529868,Transportation,Transportation +529867,Transportation,Transportation +529864,Transportation,Transportation +537868,Economic Development,Economic Development +528885,Economic Development,Economic Development +537868,Environment,Environment +537868,Infrastructure,Infrastructure +528885,Infrastructure,Infrastructure +537868,Transportation,Transportation +528885,Transportation,Transportation +530515,Health,Health +523836,Health,Health +528768,Taxation and Finance,Taxation and Finance +528767,Taxation and Finance,Taxation and Finance +527774,Taxation and Finance,Taxation and Finance +527773,Taxation and Finance,Taxation and Finance +527772,Taxation and Finance,Taxation and Finance +527771,Taxation and Finance,Taxation and Finance +527770,Taxation and Finance,Taxation and Finance +527769,Taxation and Finance,Taxation and Finance +527768,Taxation and Finance,Taxation and Finance +527767,Taxation and Finance,Taxation and Finance +527765,Taxation and Finance,Taxation and Finance +527764,Taxation and Finance,Taxation and Finance +527763,Taxation and Finance,Taxation and Finance +527762,Taxation and Finance,Taxation and Finance +538291,Transportation,Transportation +527589,Budget,Budget +527485,Budget,Budget +541950,Budget,Budget +541947,Budget,Budget +539842,Budget,Budget +539836,Budget,Budget +530596,Budget,Budget +524608,Climate,Climate +524607,Climate,Climate +544213,Climate,Climate +544211,Climate,Climate +544210,Climate,Climate +544209,Climate,Climate +544208,Climate,Climate +544207,Climate,Climate +544206,Climate,Climate +544205,Climate,Climate +544204,Climate,Climate +544203,Climate,Climate +544202,Climate,Climate +544201,Climate,Climate +544200,Climate,Climate +544199,Climate,Climate +541950,Climate,Climate +541948,Climate,Climate +541947,Climate,Climate +541943,Climate,Climate +541941,Climate,Climate +541938,Climate,Climate +541936,Climate,Climate +539863,Climate,Climate +539862,Climate,Climate +539846,Climate,Climate +539845,Climate,Climate +539844,Climate,Climate +539843,Climate,Climate +539842,Climate,Climate +539840,Climate,Climate +539838,Climate,Climate +539836,Climate,Climate +539835,Climate,Climate +538087,Climate,Climate +538086,Climate,Climate +538082,Climate,Climate +534339,Climate,Climate +534338,Climate,Climate +534336,Climate,Climate +534332,Climate,Climate +531915,Climate,Climate +530596,Climate,Climate +527592,Climate,Climate +527591,Climate,Climate +527590,Climate,Climate +527589,Climate,Climate +527489,Climate,Climate +527488,Climate,Climate +527487,Climate,Climate +527485,Climate,Climate +527422,Climate,Climate +524621,Climate,Climate +524608,Economic Development,Economic Development +524607,Economic Development,Economic Development +544214,Economic Development,Economic Development +544213,Economic Development,Economic Development +544210,Economic Development,Economic Development +544209,Economic Development,Economic Development +544208,Economic Development,Economic Development +544206,Economic Development,Economic Development +544204,Economic Development,Economic Development +544203,Economic Development,Economic Development +544201,Economic Development,Economic Development +544200,Economic Development,Economic Development +541948,Economic Development,Economic Development +541943,Economic Development,Economic Development +541938,Economic Development,Economic Development +539863,Economic Development,Economic Development +539843,Economic Development,Economic Development +539836,Economic Development,Economic Development +539835,Economic Development,Economic Development +534338,Economic Development,Economic Development +527589,Economic Development,Economic Development +527489,Economic Development,Economic Development +527422,Economic Development,Economic Development +524608,Energy,Energy +524607,Energy,Energy +544214,Energy,Energy +544213,Energy,Energy +544211,Energy,Energy +544210,Energy,Energy +544209,Energy,Energy +544208,Energy,Energy +544207,Energy,Energy +544206,Energy,Energy +544205,Energy,Energy +544204,Energy,Energy +544203,Energy,Energy +544202,Energy,Energy +544201,Energy,Energy +544200,Energy,Energy +544199,Energy,Energy +541950,Energy,Energy +541948,Energy,Energy +541947,Energy,Energy +541943,Energy,Energy +541941,Energy,Energy +541938,Energy,Energy +541936,Energy,Energy +539863,Energy,Energy +539862,Energy,Energy +539846,Energy,Energy +539845,Energy,Energy +539844,Energy,Energy +539843,Energy,Energy +539842,Energy,Energy +539840,Energy,Energy +538082,Energy,Energy +534339,Energy,Energy +534338,Energy,Energy +534336,Energy,Energy +534332,Energy,Energy +530596,Energy,Energy +527592,Energy,Energy +527591,Energy,Energy +527590,Energy,Energy +527489,Energy,Energy +527488,Energy,Energy +527487,Energy,Energy +527485,Energy,Energy +527422,Energy,Energy +524621,Energy,Energy +527422,Environment,Environment +524621,Environment,Environment +544214,Environment,Environment +544211,Environment,Environment +544210,Environment,Environment +544209,Environment,Environment +544208,Environment,Environment +524428,Health,Health +529780,Industry,Industry +529780,Research and Development,Research and Development +521397,Employment and Training,Employment and Training +526914,Justice and Law Enforcement,Justice and Law Enforcement +526534,Employment and Training,Employment and Training +530243,Immigration,Immigration +530243,Labour,Labour +524924,Health,Health +532580,Agriculture,Agriculture +532580,Economic Development,Economic Development +532580,Industry,Industry +532580,Regional Development,Regional Development +523580,Federal-Provincial Relations,Federal-Provincial Relations +532583,Tourism,Tourism +522708,Economic Development,Développement économique +531935,Economic Development,Economic Development +528606,Health,Health +524705,Agriculture,Agriculture +524705,International Relations,International Relations +524705,International Trade,International Trade +530499,Energy,Énergie +540546,Foreign Affairs,Foreign Affairs +527006,Industry,Industrie +532816,Economic Development,Développement économique +540546,Climate,Climat +527007,Intellectual Property,Propriété intellectuelle +527007,Justice and Law Enforcement,Justice et application des lois +538961,Industry,Industrie +526984,Energy,Energy +526984,Environment,Environment +526984,Industry,Industry +523618,Industry,Industry +523618,International Trade,International Trade +522435,Federal-Provincial Relations,Federal-Provincial Relations +526325,Health,Health +532702,Economic Development,Economic Development +522125,Federal-Provincial Relations,Federal-Provincial Relations +536264,Federal-Provincial Relations,Federal-Provincial Relations +540596,Health,Health +523549,Budget,Budget +524511,Health,Health +521600,Health,Health +521600,Intellectual Property,Intellectual Property +537284,Energy,Energy +539505,Infrastructure,Infrastructure +521393,Labour,Labour +540611,Taxation and Finance,Impôts et finances +542785,Environment,Environment +521428,Industry,Industry +521665,Taxation and Finance,Taxation and Finance +521663,Taxation and Finance,Taxation and Finance +542495,Economic Development,Economic Development +540661,Government Procurement,Government Procurement +542495,Employment and Training,Employment and Training +533019,Research and Development,Research and Development +530986,Government Procurement,Government Procurement +531053,Education,Education +521506,Financial Institutions,Financial Institutions +526614,Financial Institutions,Financial Institutions +521524,Agriculture,Agriculture +521524,Consumer Issues,Consumer Issues +521524,Economic Development,Economic Development +521524,Environment,Environment +521524,Health,Health +521524,Industry,Industry +521524,International Trade,International Trade +521524,Research and Development,Research and Development +521524,Small Business,Small Business +530411,Regional Development,Regional Development +530409,Employment and Training,Employment and Training +529777,Labour,Labour +536901,Consumer Issues,Consumer Issues +521529,Agriculture,Agriculture +521529,Consumer Issues,Consumer Issues +521528,Employment and Training,Employment and Training +521530,Health,Health +521529,Industry,Industry +521529,International Trade,International Trade +521529,Research and Development,Research and Development +521529,Small Business,Small Business +521554,Transportation,Transportation +521557,Transportation,Transportation +542944,Immigration,Immigration +527060,Energy,Energy +532030,Health,Health +532493,Climate,Climate +532493,Health,Health +532493,Pensions,Pensions +537399,Agriculture,Agriculture +522846,Environment,Environment +522846,Health,Health +525763,Regional Development,Regional Development +523745,Industry,Industry +526484,Energy,Energy +521702,Environment,Environment +540325,Industry,Industry +533118,Health,Health +521708,Government Procurement,Government Procurement +533193,Energy,Energy +536109,Employment and Training,Employment and Training +536109,Health,Health +536109,Labour,Labour +537116,International Development,International Development +524244,Energy,Energy +529868,Environment,Environment +531605,Mining,Mining +529863,Transportation,Transportation +521815,Immigration,Immigration +528885,Budget,Budget +537870,Economic Development,Economic Development +537870,Environment,Environment +537870,Infrastructure,Infrastructure +537870,Transportation,Transportation +521898,Health,Health +538554,Health,Health +524468,Environment,Environment +521926,Child Services,Child Services +521939,International Relations,International Relations +544784,Municipalities,Municipalities +544784,Infrastructure,Infrastructure +544784,Small Business,Small Business +527761,Taxation and Finance,Taxation and Finance +521983,International Development,International Development +521983,International Relations,International Relations +538296,Transportation,Transportation +538291,Climate,Climate +538296,International Trade,International Trade +538291,Infrastructure,Infrastructure +538291,Environment,Environment +522022,Research and Development,Research and Development +522022,Defence,Defence +522022,Industry,Industry +523436,Defence,Defence +523436,Industry,Industry +523436,Research and Development,Research and Development +527590,Budget,Budget +524611,Climate,Climate +524611,Economic Development,Economic Development +524611,Energy,Energy +527487,Environment,Environment +541936,Federal-Provincial Relations,Federal-Provincial Relations +534339,Industry,Industry +527489,Infrastructure,Infrastructure +534332,Natural Resources,Natural Resources +527422,Research and Development,Research and Development +527590,Taxation and Finance,Taxation and Finance +525981,Education,Education +525981,Environment,Environment +532282,Economic Development,Economic Development +532283,International Trade,International Trade +532283,Regional Development,Regional Development +522118,Economic Development,Economic Development +522118,International Trade,International Trade +522118,Regional Development,Regional Development +535001,Economic Development,Economic Development +522119,International Trade,International Trade +522119,Regional Development,Regional Development +541674,Economic Development,Economic Development +541674,International Trade,International Trade +541674,Regional Development,Regional Development +522121,Economic Development,Economic Development +532284,International Trade,International Trade +535001,Regional Development,Regional Development +522122,Economic Development,Economic Development +522122,International Trade,International Trade +522122,Regional Development,Regional Development +522133,Employment and Training,Employment and Training +522136,Employment and Training,Employment and Training +522138,Employment and Training,Employment and Training +524763,Government Procurement,Government Procurement +524763,Research and Development,Research and Development +524763,Health,Health +538864,Energy,Energy +522291,Energy,Energy +523956,Economic Development,Economic Development +535966,Industry,Industry +535966,Research and Development,Research and Development +528750,Mining,Mining +522408,Mining,Mining +540222,Environment,Environment +540222,Industry,Industry +530713,Infrastructure,Infrastructure +530713,Municipalities,Municipalities +530713,Transportation,Transportation +522492,International Development,International Development +522492,International Relations,International Relations +520728,International Development,International Development +520728,International Relations,International Relations +533522,Small Business,Small Business +522512,Privacy and Access to Information,Privacy and Access to Information +535482,Natural Resources,Natural Resources +534389,Environment,Environment +526818,Environment,Environment +526818,Consumer Issues,Consumer Issues +529569,Media,Media +522863,Infrastructure,Infrastructure +523589,Economic Development,Economic Development +523589,Research and Development,Research and Development +523589,Industry,Industry +530465,Transportation,Transportation +530465,Security,National Security/Security +527595,Infrastructure,Infrastructure +530465,Municipalities,Municipalities +522905,Economic Development,Economic Development +522905,Employment and Training,Employment and Training +528173,Transportation,Transportation +528159,Industry,Industry +535759,Infrastructure,Infrastructure +528159,Energy,Energy +528159,Taxation and Finance,Taxation and Finance +528159,Environment,Environment +539430,Budget,Budget +522991,Education,Education +522991,Employment and Training,Employment and Training +522991,Justice and Law Enforcement,Justice and Law Enforcement +522991,Health,Health +526547,Media,Media +523103,Media,Media +531935,Health,Health +531935,Industry,Industry +523133,Regional Development,Regional Development +523133,Research and Development,Research and Development +523154,Foreign Affairs,Foreign Affairs +523138,Media,Media +523176,Media,Media +523188,Media,Media +523191,Media,Media +527407,Regional Development,Regional Development +523218,Economic Development,Economic Development +523218,Employment and Training,Employment and Training +523272,Transportation,Transportation +523764,Financial Institutions,Financial Institutions +523764,Security,National Security/Security +533125,Agriculture,Agriculture +524002,Financial Institutions,Financial Institutions +524002,Justice and Law Enforcement,Justice and Law Enforcement +524002,Security,National Security/Security +524002,Privacy and Access to Information,Privacy and Access to Information +524002,Taxation and Finance,Taxation and Finance +540886,Employment and Training,Employment and Training +525391,Security,National Security/Security +532928,Climate,Climate +532928,Transportation,Transportation +530262,Climate,Climate +537250,Financial Institutions,Financial Institutions +536475,Economic Development,Economic Development +527163,Financial Institutions,Financial Institutions +527163,Security,National Security/Security +523492,Infrastructure,Infrastructure +525298,Health,Health +525298,Immigration,Immigration +525298,Sports,Sports +524427,Budget,Budget +537879,Energy,Energy +537879,Environment,Environment +543921,Industry,Industry +531534,Taxation and Finance,Taxation and Finance +543921,Transportation,Transportation +529700,Economic Development,Economic Development +529700,Industry,Industry +529700,Mining,Mining +529700,Regional Development,Regional Development +527734,Budget,Budget +530675,Health,Health +527131,Taxation and Finance,Taxation and Finance +538545,Taxation and Finance,Taxation and Finance +532234,Environment,Environment +532249,Energy,Energy +538545,Transportation,Transportation +537249,Financial Institutions,Financial Institutions +523943,Foreign Affairs,Foreign Affairs +533351,Agriculture,Agriculture +543626,Financial Institutions,Financial Institutions +536536,Financial Institutions,Financial Institutions +528783,Mining,Mining +529579,Environment,Environment +535718,Industry,Industry +535720,Infrastructure,Infrastructure +529579,Energy,Energy +535718,Taxation and Finance,Taxation and Finance +532524,Health,Health +538760,Infrastructure,Infrastructure +532523,Justice and Law Enforcement,Justice and Law Enforcement +538760,Regional Development,Regional Development +524250,Justice and Law Enforcement,Justice and Law Enforcement +532814,International Trade,International Trade +537756,Consumer Issues,Consumer Issues +523630,Economic Development,Economic Development +537756,Health,Health +523630,Natural Resources,Natural Resources +531800,Government Procurement,Government Procurement +526972,Housing,Housing +532893,Labour,Labour +532124,Privacy and Access to Information,Privacy and Access to Information +541363,Transportation,Transportation +528604,Employment and Training,Employment and Training +541363,Labour,Labour +541363,Industry,Industry +532118,Justice and Law Enforcement,Justice and Law Enforcement +541367,Health,Health +530602,Defence,Defence +530602,Government Procurement,Government Procurement +530477,International Trade,International Trade +525255,Climate,Climate +525255,Employment and Training,Employment and Training +525255,Infrastructure,Infrastructure +525255,Regional Development,Regional Development +525255,Research and Development,Research and Development +538172,Infrastructure,Infrastructure +530689,Transportation,Transportation +526878,Labour,Labour +544398,Pensions,Pensions +539270,Transportation,Transportation +526569,International Development,International Development +526569,Security,National Security/Security +526569,Foreign Affairs,Foreign Affairs +526569,International Trade,International Trade +526569,Government Procurement,Government Procurement +526569,International Relations,International Relations +526217,Environment,Environnement +526217,Forestry,Foresterie +541846,Environment,Environment +541846,Energy,Energy +533197,Economic Development,Economic Development +533197,Environment,Environment +533197,Industry,Industry +533197,Mining,Mining +533197,Regional Development,Regional Development +542413,Environment,Environment +539793,Budget,Budget +543780,Child Services,Child Services +543780,Economic Development,Economic Development +537717,Education,Education +537726,Employment and Training,Employment and Training +539793,Research and Development,Research and Development +523761,International Trade,International Trade +523769,Environment,Environment +524505,Federal-Provincial Relations,Federal-Provincial Relations +524284,International Trade,International Trade +524505,Agriculture,Agriculture +524505,Foreign Affairs,Foreign Affairs +523770,Tourism,Tourism +524863,Consumer Issues,Consumer Issues +524863,Health,Health +529663,Agriculture,Agriculture +543902,Environment,Environment +543275,Agriculture,Agriculture +543275,Climate,Climate +543275,Environment,Environment +535394,Agriculture,Agriculture +535394,Research and Development,Research and Development +529799,Transportation,Transportation +530005,Intellectual Property,Intellectual Property +523855,Taxation and Finance,Taxation and Finance +523855,Media,Media +540301,Government Procurement,Government Procurement +534729,Economic Development,Economic Development +534729,Climate,Climate +534729,Environment,Environment +534729,Infrastructure,Infrastructure +534729,Natural Resources,Natural Resources +534729,Research and Development,Research and Development +534729,Transportation,Transportation +529702,Industry,Industry +529702,Economic Development,Economic Development +529702,Regional Development,Regional Development +529702,Mining,Mining +542670,Climate,Climate +523910,International Trade,International Trade +527659,Taxation and Finance,Taxation and Finance +538628,Industry,Industry +538628,Health,Health +532296,Consumer Issues,Consumer Issues +532296,Financial Institutions,Financial Institutions +523977,Defence,Defence +524104,Environment,Environment +524015,Labour,Labour +529464,Budget,Budget +529464,Climate,Climate +538007,Defence,Defence +539822,Economic Development,Economic Development +529456,Environment,Environment +539826,Government Procurement,Government Procurement +529464,Industry,Industry +539827,Infrastructure,Infrastructure +529464,International Relations,International Relations +531963,International Trade,International Trade +529464,Security,National Security/Security +529464,Regional Development,Regional Development +531963,Research and Development,Research and Development +544231,Transportation,Transportation +524075,Transportation,Transportation +534194,Industry,Industry +534194,Transportation,Transportation +524107,Labour,Labour +528137,Labour,Labour +531510,Small Business,Small Business +526934,Taxation and Finance,Taxation and Finance +526934,Tourism,Tourism +528628,Economic Development,Economic Development +528628,International Development,International Development +528628,International Relations,International Relations +539010,Immigration,Immigration +524144,Transportation,Transportation +544207,Environment,Environment +544206,Environment,Environment +544205,Environment,Environment +544204,Environment,Environment +544203,Environment,Environment +544202,Environment,Environment +544201,Environment,Environment +544200,Environment,Environment +544199,Environment,Environment +541950,Environment,Environment +541948,Environment,Environment +541947,Environment,Environment +541943,Environment,Environment +541941,Environment,Environment +541936,Environment,Environment +539863,Environment,Environment +539862,Environment,Environment +539846,Environment,Environment +539845,Environment,Environment +539844,Environment,Environment +539840,Environment,Environment +539838,Environment,Environment +538087,Environment,Environment +538086,Environment,Environment +538082,Environment,Environment +534339,Environment,Environment +534338,Environment,Environment +534336,Environment,Environment +531915,Environment,Environment +527592,Environment,Environment +527591,Environment,Environment +527590,Environment,Environment +527488,Environment,Environment +539842,Federal-Provincial Relations,Federal-Provincial Relations +527591,Federal-Provincial Relations,Federal-Provincial Relations +544206,Federal-Provincial Relations,Federal-Provincial Relations +541950,Federal-Provincial Relations,Federal-Provincial Relations +541947,Federal-Provincial Relations,Federal-Provincial Relations +534338,Industry,Industry +527591,Natural Resources,Natural Resources +527489,Natural Resources,Natural Resources +527589,Taxation and Finance,Taxation and Finance +527485,Taxation and Finance,Taxation and Finance +539845,Taxation and Finance,Taxation and Finance +539842,Taxation and Finance,Taxation and Finance +539838,Taxation and Finance,Taxation and Finance +539836,Taxation and Finance,Taxation and Finance +534339,Taxation and Finance,Taxation and Finance +530596,Taxation and Finance,Taxation and Finance +528375,Economic Development,Economic Development +522117,Economic Development,Economic Development +532283,Economic Development,Economic Development +528375,International Trade,International Trade +522117,International Trade,International Trade +544777,International Trade,International Trade +522117,Regional Development,Regional Development +532284,Economic Development,Economic Development +522119,Economic Development,Economic Development +535004,Economic Development,Economic Development +535989,Economic Development,Economic Development +522120,Economic Development,Economic Development +535004,International Trade,International Trade +522120,International Trade,International Trade +532284,Regional Development,Regional Development +522120,Regional Development,Regional Development +522121,International Trade,International Trade +528375,Regional Development,Regional Development +522121,Regional Development,Regional Development +544777,Regional Development,Regional Development +535989,Regional Development,Regional Development +535004,Regional Development,Regional Development +537280,Energy,Energy +522287,Energy,Energy +535966,Economic Development,Economic Development +523956,Industry,Industry +528749,Mining,Mining +526387,Mining,Mining +544101,Mining,Mining +534171,Mining,Mining +528751,Mining,Mining +535990,Environment,Environment +535990,Industry,Industry +530712,Infrastructure,Infrastructure +524287,Infrastructure,Infrastructure +530712,Municipalities,Municipalities +524287,Municipalities,Municipalities +530712,Transportation,Transportation +524287,Transportation,Transportation +524630,Small Business,Small Business +522465,Small Business,Small Business +536402,Small Business,Small Business +536096,Small Business,Small Business +533527,Small Business,Small Business +532400,Natural Resources,Natural Resources +522568,Natural Resources,Natural Resources +539769,Natural Resources,Natural Resources +522627,Environment,Environment +526753,Media,Media +526752,Media,Media +544413,Media,Media +544409,Media,Media +522785,Infrastructure,Infrastructure +522782,Infrastructure,Infrastructure +543401,Infrastructure,Infrastructure +543400,Infrastructure,Infrastructure +541712,Infrastructure,Infrastructure +541709,Infrastructure,Infrastructure +539684,Infrastructure,Infrastructure +539683,Infrastructure,Infrastructure +539681,Infrastructure,Infrastructure +539679,Infrastructure,Infrastructure +539678,Infrastructure,Infrastructure +539677,Infrastructure,Infrastructure +537816,Infrastructure,Infrastructure +537813,Infrastructure,Infrastructure +537811,Infrastructure,Infrastructure +537808,Infrastructure,Infrastructure +537792,Infrastructure,Infrastructure +537786,Infrastructure,Infrastructure +535266,Infrastructure,Infrastructure +534627,Infrastructure,Infrastructure +534622,Infrastructure,Infrastructure +534604,Infrastructure,Infrastructure +534599,Infrastructure,Infrastructure +534589,Infrastructure,Infrastructure +534579,Infrastructure,Infrastructure +534532,Infrastructure,Infrastructure +530927,Infrastructure,Infrastructure +530921,Infrastructure,Infrastructure +530917,Infrastructure,Infrastructure +522913,Infrastructure,Infrastructure +522888,Infrastructure,Infrastructure +522883,Infrastructure,Infrastructure +522880,Infrastructure,Infrastructure +527595,Transportation,Transportation +527479,Transportation,Transportation +544964,Transportation,Transportation +540510,Transportation,Transportation +540358,Transportation,Transportation +540337,Transportation,Transportation +540336,Transportation,Transportation +532821,Transportation,Transportation +532801,Transportation,Transportation +532777,Transportation,Transportation +532776,Transportation,Transportation +532775,Transportation,Transportation +532774,Transportation,Transportation +532773,Transportation,Transportation +532410,Transportation,Transportation +530978,Transportation,Transportation +530597,Transportation,Transportation +527595,Security,National Security/Security +527479,Security,National Security/Security +544964,Security,National Security/Security +530597,Security,National Security/Security +527595,Municipalities,Municipalities +527479,Municipalities,Municipalities +530597,Municipalities,Municipalities +528160,Transportation,Transportation +528159,Transportation,Transportation +525580,Transportation,Transportation +525572,Transportation,Transportation +538124,Transportation,Transportation +535904,Transportation,Transportation +535779,Transportation,Transportation +535776,Transportation,Transportation +535773,Transportation,Transportation +535769,Transportation,Transportation +535759,Transportation,Transportation +535755,Transportation,Transportation +533267,Transportation,Transportation +525580,Industry,Industry +525572,Industry,Industry +535904,Industry,Industry +535779,Industry,Industry +535776,Industry,Industry +535773,Industry,Industry +535769,Industry,Industry +535765,Industry,Industry +535759,Industry,Industry +535755,Industry,Industry +533267,Industry,Industry +528173,Industry,Industry +528160,Industry,Industry +535755,Infrastructure,Infrastructure +525580,Infrastructure,Infrastructure +535904,Infrastructure,Infrastructure +535779,Infrastructure,Infrastructure +535776,Infrastructure,Infrastructure +535773,Infrastructure,Infrastructure +535769,Infrastructure,Infrastructure +525580,Energy,Energy +525572,Energy,Energy +538124,Energy,Energy +535904,Energy,Energy +535779,Energy,Energy +535776,Energy,Energy +535773,Energy,Energy +535769,Energy,Energy +535759,Energy,Energy +535755,Energy,Energy +533267,Energy,Energy +528173,Energy,Energy +528172,Energy,Energy +528160,Energy,Energy +525580,Taxation and Finance,Taxation and Finance +525572,Taxation and Finance,Taxation and Finance +543745,Taxation and Finance,Taxation and Finance +538124,Taxation and Finance,Taxation and Finance +535904,Taxation and Finance,Taxation and Finance +535779,Taxation and Finance,Taxation and Finance +535776,Taxation and Finance,Taxation and Finance +535773,Taxation and Finance,Taxation and Finance +535769,Taxation and Finance,Taxation and Finance +535759,Taxation and Finance,Taxation and Finance +535755,Taxation and Finance,Taxation and Finance +533267,Taxation and Finance,Taxation and Finance +528173,Taxation and Finance,Taxation and Finance +528172,Taxation and Finance,Taxation and Finance +528160,Taxation and Finance,Taxation and Finance +525580,Environment,Environment +525572,Environment,Environment +538124,Environment,Environment +535904,Environment,Environment +535779,Environment,Environment +535776,Environment,Environment +535773,Environment,Environment +535769,Environment,Environment +535759,Environment,Environment +535755,Environment,Environment +533267,Environment,Environment +528173,Environment,Environment +528172,Environment,Environment +528160,Environment,Environment +522980,Budget,Budget +526541,Media,Media +523092,Media,Media +543714,Media,Media +543708,Media,Media +543705,Media,Media +538196,Media,Media +538190,Media,Media +531943,Media,Media +531942,Media,Media +531941,Media,Media +531938,Media,Media +529602,Media,Media +529601,Media,Media +529600,Media,Media +529599,Media,Media +529598,Media,Media +529597,Media,Media +529596,Media,Media +526563,Media,Media +526562,Media,Media +526556,Media,Media +526551,Media,Media +526665,Regional Development,Regional Development +523680,Financial Institutions,Financial Institutions +523680,Justice and Law Enforcement,Justice and Law Enforcement +523680,Security,National Security/Security +523680,Privacy and Access to Information,Privacy and Access to Information +523680,Taxation and Finance,Taxation and Finance +525382,Security,National Security/Security +530666,Climate,Climate +524711,Climate,Climate +530666,Transportation,Transportation +524711,Transportation,Transportation +530260,Climate,Climate +530259,Climate,Climate +531645,Financial Institutions,Financial Institutions +528042,Economic Development,Economic Development +526802,Economic Development,Economic Development +540711,Economic Development,Economic Development +523763,Financial Institutions,Financial Institutions +523763,Security,National Security/Security +525297,Health,Health +525297,Immigration,Immigration +525297,Sports,Sports +537876,Energy,Energy +531534,Energy,Energy +543921,Energy,Energy +537876,Environment,Environment +531534,Environment,Environment +543921,Environment,Environment +537879,Transportation,Transportation +537876,Transportation,Transportation +531534,Transportation,Transportation +527732,Budget,Budget +527735,Health,Health +527734,Health,Health +527732,Health,Health +526968,Health,Health +535071,Health,Health +530676,Health,Health +523549,Taxation and Finance,Taxation and Finance +523548,Taxation and Finance,Taxation and Finance +529459,Environment,Environment +524739,Environment,Environment +532249,Environment,Environment +529459,Energy,Energy +524739,Energy,Energy +538545,Energy,Energy +531642,Financial Institutions,Financial Institutions +523942,Foreign Affairs,Foreign Affairs +523941,Foreign Affairs,Foreign Affairs +527828,Foreign Affairs,Foreign Affairs +527827,Foreign Affairs,Foreign Affairs +527005,Foreign Affairs,Foreign Affairs +527004,Foreign Affairs,Foreign Affairs +527003,Foreign Affairs,Foreign Affairs +524564,Foreign Affairs,Foreign Affairs +524563,Foreign Affairs,Foreign Affairs +524562,Foreign Affairs,Foreign Affairs +523954,Foreign Affairs,Foreign Affairs +523953,Foreign Affairs,Foreign Affairs +523952,Foreign Affairs,Foreign Affairs +523951,Foreign Affairs,Foreign Affairs +523950,Foreign Affairs,Foreign Affairs +523949,Foreign Affairs,Foreign Affairs +523948,Foreign Affairs,Foreign Affairs +523947,Foreign Affairs,Foreign Affairs +523945,Foreign Affairs,Foreign Affairs +523944,Foreign Affairs,Foreign Affairs +524317,Agriculture,Agriculture +536535,Financial Institutions,Financial Institutions +530804,Financial Institutions,Financial Institutions +526593,Environment,Environment +526583,Environment,Environment +535720,Environment,Environment +526593,Industry,Industry +526583,Industry,Industry +535720,Industry,Industry +535718,Infrastructure,Infrastructure +526583,Infrastructure,Infrastructure +526593,Energy,Energy +526583,Energy,Energy +535720,Energy,Energy +535718,Energy,Energy +529579,Taxation and Finance,Taxation and Finance +526583,Taxation and Finance,Taxation and Finance +535720,Taxation and Finance,Taxation and Finance +532527,Infrastructure,Infrastructure +532813,International Trade,International Trade +530499,International Trade,International Trade +523614,International Trade,International Trade +540546,International Trade,International Trade +532817,International Trade,International Trade +532816,International Trade,International Trade +532815,International Trade,International Trade +523630,Health,Health +526971,Housing,Housing +524222,Housing,Housing +527412,Housing,Housing +527412,Labour,Labour +524222,Labour,Labour +532111,Privacy and Access to Information,Privacy and Access to Information +528600,Privacy and Access to Information,Privacy and Access to Information +538281,Privacy and Access to Information,Privacy and Access to Information +534821,Privacy and Access to Information,Privacy and Access to Information +528598,Employment and Training,Employment and Training +532116,Justice and Law Enforcement,Justice and Law Enforcement +528653,Justice and Law Enforcement,Justice and Law Enforcement +538330,Justice and Law Enforcement,Justice and Law Enforcement +538288,Justice and Law Enforcement,Justice and Law Enforcement +538284,Justice and Law Enforcement,Justice and Law Enforcement +534819,Justice and Law Enforcement,Justice and Law Enforcement +532125,Justice and Law Enforcement,Justice and Law Enforcement +541362,Health,Health +530477,Defence,Defence +530600,Government Procurement,Government Procurement +530477,Government Procurement,Government Procurement +530665,Transportation,Transportation +532937,Transportation,Transportation +530467,Transportation,Transportation +539442,Transportation,Transportation +525984,Environment,Environment +525984,Energy,Energy +533196,Economic Development,Economic Development +533196,Environment,Environment +533196,Industry,Industry +533196,Mining,Mining +533196,Regional Development,Regional Development +534352,Budget,Budget +537726,Child Services,Child Services +537726,Economic Development,Economic Development +537717,Economic Development,Economic Development +531954,Research and Development,Research and Development +524284,Federal-Provincial Relations,Federal-Provincial Relations +524201,International Trade,International Trade +524284,Agriculture,Agriculture +524201,Agriculture,Agriculture +524201,Foreign Affairs,Foreign Affairs +529662,Agriculture,Agriculture +543902,Agriculture,Agriculture +535129,Agriculture,Agriculture +529663,Environment,Environment +529662,Environment,Environment +543273,Agriculture,Agriculture +543273,Climate,Climate +543273,Environment,Environment +529796,Agriculture,Agriculture +529795,Agriculture,Agriculture +529798,Transportation,Transportation +529797,Transportation,Transportation +534725,Economic Development,Economic Development +534723,Economic Development,Economic Development +536235,Economic Development,Economic Development +534736,Economic Development,Economic Development +534733,Economic Development,Economic Development +534725,Climate,Climate +534723,Climate,Climate +536235,Climate,Climate +534736,Climate,Climate +534733,Climate,Climate +534725,Environment,Environment +534723,Environment,Environment +537688,Environment,Environment +537686,Environment,Environment +536235,Environment,Environment +534736,Environment,Environment +534733,Environment,Environment +534725,Infrastructure,Infrastructure +534723,Infrastructure,Infrastructure +537688,Infrastructure,Infrastructure +537686,Infrastructure,Infrastructure +536235,Infrastructure,Infrastructure +534736,Infrastructure,Infrastructure +534733,Infrastructure,Infrastructure +534725,Natural Resources,Natural Resources +534723,Natural Resources,Natural Resources +537688,Natural Resources,Natural Resources +537686,Natural Resources,Natural Resources +536235,Natural Resources,Natural Resources +534736,Natural Resources,Natural Resources +534733,Natural Resources,Natural Resources +534725,Research and Development,Research and Development +534723,Research and Development,Research and Development +537686,Research and Development,Research and Development +536235,Research and Development,Research and Development +534736,Research and Development,Research and Development +534733,Research and Development,Research and Development +534725,Transportation,Transportation +534723,Transportation,Transportation +537688,Transportation,Transportation +537686,Transportation,Transportation +536235,Transportation,Transportation +534736,Transportation,Transportation +534733,Transportation,Transportation +528275,Mining,Mining +529463,Budget,Budget +529456,Budget,Budget +544234,Budget,Budget +544232,Budget,Budget +544231,Budget,Budget +544230,Budget,Budget +544229,Budget,Budget +544228,Budget,Budget +544227,Budget,Budget +541969,Budget,Budget +541968,Budget,Budget +539827,Budget,Budget +539826,Budget,Budget +539823,Budget,Budget +539822,Budget,Budget +539820,Budget,Budget +538007,Budget,Budget +535295,Budget,Budget +535284,Budget,Budget +532417,Budget,Budget +531965,Budget,Budget +531963,Budget,Budget +531962,Budget,Budget +531961,Budget,Budget +530264,Budget,Budget +529491,Budget,Budget +529488,Budget,Budget +529482,Budget,Budget +529468,Budget,Budget +529463,Climate,Climate +529456,Climate,Climate +544234,Climate,Climate +544232,Climate,Climate +544229,Climate,Climate +541969,Climate,Climate +539827,Climate,Climate +539826,Climate,Climate +539823,Climate,Climate +539822,Climate,Climate +539819,Climate,Climate +535295,Climate,Climate +535284,Climate,Climate +532417,Climate,Climate +531963,Climate,Climate +531962,Climate,Climate +531961,Climate,Climate +530264,Climate,Climate +529491,Climate,Climate +529488,Climate,Climate +529482,Climate,Climate +529468,Climate,Climate +535295,Defence,Defence +535284,Defence,Defence +532417,Defence,Defence +531965,Defence,Defence +531963,Defence,Defence +531962,Defence,Defence +531961,Defence,Defence +530264,Defence,Defence +529491,Defence,Defence +529488,Defence,Defence +529482,Defence,Defence +529468,Defence,Defence +529464,Defence,Defence +529463,Defence,Defence +529456,Defence,Defence +544234,Defence,Defence +544232,Defence,Defence +544231,Defence,Defence +544229,Defence,Defence +541969,Defence,Defence +541968,Defence,Defence +539827,Defence,Defence +539826,Defence,Defence +539823,Defence,Defence +539822,Defence,Defence +539821,Defence,Defence +539821,Economic Development,Economic Development +539820,Economic Development,Economic Development +539819,Economic Development,Economic Development +538007,Economic Development,Economic Development +535295,Economic Development,Economic Development +535284,Economic Development,Economic Development +532417,Economic Development,Economic Development +532412,Economic Development,Economic Development +531965,Economic Development,Economic Development +531964,Economic Development,Economic Development +531963,Economic Development,Economic Development +531962,Economic Development,Economic Development +531961,Economic Development,Economic Development +530264,Economic Development,Economic Development +529491,Economic Development,Economic Development +529488,Economic Development,Economic Development +529482,Economic Development,Economic Development +529468,Economic Development,Economic Development +529464,Economic Development,Economic Development +529463,Economic Development,Economic Development +529456,Economic Development,Economic Development +544234,Economic Development,Economic Development +544232,Economic Development,Economic Development +544231,Economic Development,Economic Development +544229,Economic Development,Economic Development +544228,Economic Development,Economic Development +544227,Economic Development,Economic Development +544226,Economic Development,Economic Development +541969,Economic Development,Economic Development +539828,Economic Development,Economic Development +539827,Economic Development,Economic Development +539826,Economic Development,Economic Development +539825,Economic Development,Economic Development +539823,Economic Development,Economic Development +544234,Environment,Environment +544229,Environment,Environment +541969,Environment,Environment +539827,Environment,Environment +539826,Environment,Environment +539823,Environment,Environment +539822,Environment,Environment +539819,Environment,Environment +538007,Environment,Environment +535295,Environment,Environment +532417,Environment,Environment +531963,Environment,Environment +531962,Environment,Environment +531961,Environment,Environment +530264,Environment,Environment +529491,Environment,Environment +529482,Environment,Environment +529468,Environment,Environment +529464,Environment,Environment +529463,Environment,Environment +539823,Government Procurement,Government Procurement +531965,Government Procurement,Government Procurement +544234,Government Procurement,Government Procurement +544232,Government Procurement,Government Procurement +544229,Government Procurement,Government Procurement +541968,Government Procurement,Government Procurement +539827,Government Procurement,Government Procurement +529463,Industry,Industry +529456,Industry,Industry +544232,Industry,Industry +544229,Industry,Industry +544226,Industry,Industry +541969,Industry,Industry +539827,Industry,Industry +539826,Industry,Industry +539825,Industry,Industry +539823,Industry,Industry +539820,Industry,Industry +535295,Industry,Industry +535284,Industry,Industry +531963,Industry,Industry +530264,Industry,Industry +529491,Industry,Industry +529488,Industry,Industry +529482,Industry,Industry +529468,Industry,Industry +529491,Infrastructure,Infrastructure +529488,Infrastructure,Infrastructure +541969,Infrastructure,Infrastructure +529463,International Relations,International Relations +529456,International Relations,International Relations +544234,International Relations,International Relations +544232,International Relations,International Relations +544229,International Relations,International Relations +541969,International Relations,International Relations +541968,International Relations,International Relations +539828,International Relations,International Relations +539827,International Relations,International Relations +539826,International Relations,International Relations +539822,International Relations,International Relations +539821,International Relations,International Relations +538007,International Relations,International Relations +535295,International Relations,International Relations +535284,International Relations,International Relations +532417,International Relations,International Relations +531965,International Relations,International Relations +531964,International Relations,International Relations +531963,International Relations,International Relations +531962,International Relations,International Relations +530264,International Relations,International Relations +529491,International Relations,International Relations +529488,International Relations,International Relations +529482,International Relations,International Relations +529468,International Relations,International Relations +531962,International Trade,International Trade +529468,International Trade,International Trade +544234,International Trade,International Trade +544232,International Trade,International Trade +544229,International Trade,International Trade +544228,International Trade,International Trade +544227,International Trade,International Trade +541969,International Trade,International Trade +541968,International Trade,International Trade +539827,International Trade,International Trade +539826,International Trade,International Trade +539823,International Trade,International Trade +539822,International Trade,International Trade +532417,International Trade,International Trade +531965,International Trade,International Trade +531964,International Trade,International Trade +529463,Security,National Security/Security +529456,Security,National Security/Security +544234,Security,National Security/Security +544232,Security,National Security/Security +544231,Security,National Security/Security +544229,Security,National Security/Security +541969,Security,National Security/Security +541968,Security,National Security/Security +539827,Security,National Security/Security +539826,Security,National Security/Security +539823,Security,National Security/Security +539822,Security,National Security/Security +539821,Security,National Security/Security +538007,Security,National Security/Security +535295,Security,National Security/Security +535284,Security,National Security/Security +532417,Security,National Security/Security +531965,Security,National Security/Security +531964,Security,National Security/Security +531963,Security,National Security/Security +531962,Security,National Security/Security +531961,Security,National Security/Security +530264,Security,National Security/Security +529491,Security,National Security/Security +529488,Security,National Security/Security +529482,Security,National Security/Security +529468,Security,National Security/Security +529463,Regional Development,Regional Development +529456,Regional Development,Regional Development +544234,Regional Development,Regional Development +544232,Regional Development,Regional Development +544231,Regional Development,Regional Development +544229,Regional Development,Regional Development +544228,Regional Development,Regional Development +541969,Regional Development,Regional Development +539827,Regional Development,Regional Development +539826,Regional Development,Regional Development +539825,Regional Development,Regional Development +539823,Regional Development,Regional Development +539822,Regional Development,Regional Development +539821,Regional Development,Regional Development +539820,Regional Development,Regional Development +539819,Regional Development,Regional Development +535295,Regional Development,Regional Development +532417,Regional Development,Regional Development +531963,Regional Development,Regional Development +531961,Regional Development,Regional Development +530264,Regional Development,Regional Development +529491,Regional Development,Regional Development +529488,Regional Development,Regional Development +529482,Regional Development,Regional Development +529468,Regional Development,Regional Development +531962,Research and Development,Research and Development +529491,Research and Development,Research and Development +544234,Research and Development,Research and Development +544232,Research and Development,Research and Development +544231,Research and Development,Research and Development +544229,Research and Development,Research and Development +544228,Research and Development,Research and Development +544227,Research and Development,Research and Development +541969,Research and Development,Research and Development +539827,Research and Development,Research and Development +539826,Research and Development,Research and Development +539825,Research and Development,Research and Development +539823,Research and Development,Research and Development +539822,Research and Development,Research and Development +539820,Research and Development,Research and Development +539819,Research and Development,Research and Development +538007,Research and Development,Research and Development +535295,Research and Development,Research and Development +535284,Research and Development,Research and Development +532417,Research and Development,Research and Development +532412,Research and Development,Research and Development +531965,Research and Development,Research and Development +544229,Transportation,Transportation +541969,Transportation,Transportation +539828,Transportation,Transportation +539827,Transportation,Transportation +539826,Transportation,Transportation +539823,Transportation,Transportation +539822,Transportation,Transportation +539821,Transportation,Transportation +538007,Transportation,Transportation +535295,Transportation,Transportation +532417,Transportation,Transportation +531965,Transportation,Transportation +531963,Transportation,Transportation +531962,Transportation,Transportation +529488,Transportation,Transportation +544234,Transportation,Transportation +544232,Transportation,Transportation +530598,Transportation,Transportation +530553,Transportation,Transportation +534190,Industry,Industry +531448,Industry,Industry +534297,Industry,Industry +534294,Industry,Industry +534291,Industry,Industry +534234,Industry,Industry +534228,Industry,Industry +534190,Transportation,Transportation +531448,Transportation,Transportation +534297,Transportation,Transportation +534294,Transportation,Transportation +534291,Transportation,Transportation +534234,Transportation,Transportation +534228,Transportation,Transportation +531508,Small Business,Small Business +531507,Small Business,Small Business +534762,Small Business,Small Business +531518,Small Business,Small Business +531515,Small Business,Small Business +531512,Small Business,Small Business +526933,Tourism,Tourism +524136,Immigration,Immigration +527786,Financial Institutions,Financial Institutions +527785,Financial Institutions,Financial Institutions +527784,Financial Institutions,Financial Institutions +527783,Financial Institutions,Financial Institutions +526888,Financial Institutions,Financial Institutions +529973,Financial Institutions,Financial Institutions +532835,Taxation and Finance,Taxation and Finance +530513,Taxation and Finance,Taxation and Finance +537978,Housing,Housing +536511,Housing,Housing +537983,Housing,Housing +537978,Regional Development,Regional Development +528046,Agriculture,Agriculture +536263,Research and Development,Research and Development +533918,Research and Development,Research and Development +532922,Research and Development,Research and Development +529024,Research and Development,Research and Development +533919,Regional Development,Regional Development +532922,Regional Development,Regional Development +538924,Regional Development,Regional Development +536876,Regional Development,Regional Development +529027,Economic Development,Economic Development +529024,Economic Development,Economic Development +538924,Economic Development,Economic Development +536876,Economic Development,Economic Development +536263,Economic Development,Economic Development +533919,Economic Development,Economic Development +533918,Economic Development,Economic Development +533918,Natural Resources,Natural Resources +533918,Agriculture,Agriculture +529027,Agriculture,Agriculture +529485,Environment,Environment +529457,Environment,Environment +538546,Environment,Environment +536176,Environment,Environment +532244,Environment,Environment +529485,Agriculture,Agriculture +529457,Agriculture,Agriculture +532244,Economic Development,Economic Development +532233,Economic Development,Economic Development +538546,Economic Development,Economic Development +538542,Economic Development,Economic Development +541328,Economic Development,Economic Development +539829,Education,Education +539829,Labour,Labour +531993,Fisheries,Fisheries +529568,Fisheries,Fisheries +530745,Economic Development,Economic Development +526445,Economic Development,Economic Development +542674,Economic Development,Economic Development +542673,Economic Development,Economic Development +542337,Economic Development,Economic Development +540965,Economic Development,Economic Development +538649,Economic Development,Economic Development +536034,Economic Development,Economic Development +534466,Economic Development,Economic Development +530745,Employment and Training,Employment and Training +526445,Employment and Training,Employment and Training +542674,Employment and Training,Employment and Training +542673,Employment and Training,Employment and Training +542337,Employment and Training,Employment and Training +540965,Employment and Training,Employment and Training +538649,Employment and Training,Employment and Training +536034,Employment and Training,Employment and Training +536033,Employment and Training,Employment and Training +534466,Employment and Training,Employment and Training +532998,Employment and Training,Employment and Training +530745,Industry,Industry +526445,Industry,Industry +542673,Industry,Industry +542337,Industry,Industry +538649,Industry,Industry +536034,Industry,Industry +534466,Industry,Industry +532998,Industry,Industry +527729,Economic Development,Economic Development +527729,Energy,Energy +524708,Agriculture,Agriculture +524707,Agriculture,Agriculture +542156,Agriculture,Agriculture +524710,Agriculture,Agriculture +542560,Economic Development,Développement économique +542557,Economic Development,Développement économique +533625,Climate,Climate +533624,Climate,Climate +533630,Climate,Climate +533626,Economic Development,Economic Development +533624,Economic Development,Economic Development +533630,Economic Development,Economic Development +533629,Economic Development,Economic Development +533625,Energy,Energy +533624,Energy,Energy +540612,Energy,Energy +533630,Energy,Energy +533629,Energy,Energy +533628,Energy,Energy +533627,Energy,Energy +533625,Industry,Industry +533624,Industry,Industry +540613,Industry,Industry +540612,Industry,Industry +533630,Industry,Industry +533629,Industry,Industry +533628,Industry,Industry +533627,Industry,Industry +533627,Natural Resources,Natural Resources +533624,Regional Development,Regional Development +531001,Climate,Climate +530990,Climate,Climate +531005,Climate,Climate +531004,Climate,Climate +533316,Industry,Industry +531003,Infrastructure,Infrastructure +531001,Infrastructure,Infrastructure +531005,Infrastructure,Infrastructure +531003,Natural Resources,Natural Resources +531001,Natural Resources,Natural Resources +536727,Natural Resources,Natural Resources +531005,Natural Resources,Natural Resources +536230,Transportation,Transportation +532940,Transportation,Transportation +544996,Economic Development,Economic Development +544994,Regional Development,Regional Development +544987,Regional Development,Regional Development +544994,Industry,Industry +544987,Industry,Industry +544997,Industry,Industry +544994,Fisheries,Fisheries +544987,Fisheries,Fisheries +544997,Fisheries,Fisheries +542375,Energy,Energy +533301,Economic Development,Economic Development +533301,Employment and Training,Employment and Training +533301,Health,Health +524185,Climate,Climate +539818,Natural Resources,Natural Resources +524247,Climate,Climate +529821,Financial Institutions,Financial Institutions +532836,Taxation and Finance,Taxation and Finance +524250,Taxation and Finance,Taxation and Finance +524260,Natural Resources,Natural Resources +524286,Budget,Budget +524293,Immigration,Immigration +524293,International Relations,International Relations +524294,Immigration,Immigration +524294,International Relations,International Relations +529484,Natural Resources,Ressources naturelles +537978,Economic Development,Economic Development +537980,Housing,Housing +537982,Regional Development,Regional Development +540993,Agriculture,Agriculture +536876,Research and Development,Research and Development +536263,Regional Development,Regional Development +532922,Economic Development,Economic Development +538924,Natural Resources,Natural Resources +533919,Agriculture,Agriculture +532233,Environment,Environment +532233,Agriculture,Agriculture +536176,Economic Development,Economic Development +541330,Budget,Budget +541330,Economic Development,Economic Development +541330,Education,Education +541328,Immigration,Immigration +541330,Labour,Labour +524435,Education,Education +531993,Economic Development,Economic Development +532115,Fisheries,Fisheries +532115,International Trade,International Trade +524531,International Trade,International Trade +524535,International Trade,International Trade +524549,Housing,Housing +530746,Economic Development,Economic Development +530746,Employment and Training,Employment and Training +530746,Government Procurement,Government Procurement +530746,Industry,Industry +526445,Labour,Labour +524575,Natural Resources,Natural Resources +530150,Economic Development,Economic Development +530150,Energy,Energy +527729,Natural Resources,Natural Resources +524643,Transportation,Transportation +524709,Agriculture,Agriculture +530860,Health,Health +542561,Economic Development,Développement économique +530405,Climate,Climate +530405,Economic Development,Economic Development +533627,Climate,Climate +533628,Economic Development,Economic Development +533626,Energy,Energy +533626,Industry,Industry +533628,Natural Resources,Natural Resources +533630,Regional Development,Regional Development +531003,Climate,Climate +533317,Industry,Industry +531004,Infrastructure,Infrastructure +531004,Natural Resources,Natural Resources +541529,Energy,Energy +536323,Transportation,Transportation +532473,Labour,Labour +533573,International Development,International Development +544997,Economic Development,Economic Development +544996,Regional Development,Regional Development +544996,Industry,Industry +544996,Fisheries,Fisheries +524829,Energy,Energy +524828,Energy,Energy +524878,Environment,Environment +524872,Climate,Climate +524872,Energy,Energy +524872,Environment,Environment +524872,Government Procurement,Government Procurement +524872,Natural Resources,Natural Resources +524872,Transportation,Transportation +524902,Energy,Energy +524902,Environment,Environment +524902,Government Procurement,Government Procurement +524902,Natural Resources,Natural Resources +533302,Economic Development,Economic Development +533302,Employment and Training,Employment and Training +533302,Health,Health +533302,Industry,Industry +533302,Regional Development,Regional Development +533302,Research and Development,Research and Development +527239,Immigration,Immigration +526297,International Development,International Development +542935,Climate,Climate +542935,Employment and Training,Employment and Training +533631,Taxation and Finance,Taxation and Finance +525040,Child Services,Child Services +525123,Immigration,Immigration +525134,Immigration,Immigration +528630,Immigration,Immigration +525140,Immigration,Immigration +525139,Economic Development,Economic Development +532275,Regional Development,Développement régional +529443,Energy,Énergie +529444,Environment,Environnement +529444,Infrastructure,Infrastructure +525143,Climate,Climate +525143,Energy,Energy +525143,Environment,Environment +525143,Natural Resources,Natural Resources +525143,Transportation,Transportation +525145,Climate,Climate +525145,Energy,Energy +525145,Environment,Environment +525145,Government Procurement,Government Procurement +525145,Natural Resources,Natural Resources +525145,Transportation,Transportation +525147,Climate,Climate +525147,Energy,Energy +525147,Environment,Environment +525147,Natural Resources,Natural Resources +525147,Transportation,Transportation +525177,Financial Institutions,Financial Institutions +525183,Tourism,Tourism +527913,Tourism,Tourism +525186,Tourism,Tourism +525188,Economic Development,Economic Development +525192,Economic Development,Economic Development +525195,Economic Development,Economic Development +525196,Economic Development,Economic Development +525197,Economic Development,Economic Development +525198,Economic Development,Economic Development +525199,Economic Development,Economic Development +525200,Economic Development,Economic Development +525201,Economic Development,Economic Development +541178,International Development,International Development +525316,Natural Resources,Natural Resources +525330,Natural Resources,Natural Resources +525337,Natural Resources,Natural Resources +539048,Natural Resources,Natural Resources +526718,Taxation and Finance,Taxation and Finance +525499,Natural Resources,Natural Resources +535931,Budget,Budget +525624,Forestry,Forestry +539556,Research and Development,Research and Development +525737,Research and Development,Research and Development +531732,International Trade,International Trade +525747,Immigration,Immigration +525917,Labour,Labour +529297,Housing,Housing +525789,Housing,Housing +525805,International Trade,International Trade +525805,Immigration,Immigration +525828,Housing,Housing +525835,Housing,Housing +525857,Natural Resources,Natural Resources +525855,Natural Resources,Natural Resources +525884,Economic Development,Economic Development +530221,Agriculture,Agriculture +525947,Budget,Budget +525949,Budget,Budget +525983,Intellectual Property,Intellectual Property +530057,Health,Health +532366,International Trade,International Trade +532365,International Trade,International Trade +526244,Agriculture,Agriculture +526244,International Trade,International Trade +526059,Climate,Climat +526059,Environment,Environnement +526171,Taxation and Finance,Taxation and Finance +539284,Economic Development,Economic Development +526357,Environment,Environment +526373,Transportation,Transportation +526391,Housing,Housing +526398,Housing,Housing +526414,Housing,Housing +527272,Constitutional Issues,Constitutional Issues +529385,Natural Resources,Natural Resources +529385,Mining,Mining +526456,Housing,Housing +532575,Education,Education +532441,Health,Health +536011,Taxation and Finance,Taxation and Finance +527273,International Trade,International Trade +527496,Economic Development,Economic Development +527490,Government Procurement,Government Procurement +527496,Defence,Defence +527465,Budget,Budget +526544,Economic Development,Economic Development +539653,Taxation and Finance,Taxation and Finance +526566,Environment,Environment +526607,Economic Development,Economic Development +526624,Education,Education +538555,Defence,Defence +540608,Natural Resources,Natural Resources +526742,Financial Institutions,Financial Institutions +526742,Economic Development,Economic Development +527072,Government Procurement,Government Procurement +532302,Environment,Environnement +527563,Consumer Issues,Consumer Issues +527048,Financial Institutions,Financial Institutions +527563,Justice and Law Enforcement,Justice and Law Enforcement +527306,Pensions,Pensions +527306,Taxation and Finance,Taxation and Finance +530541,Agriculture,Agriculture +530540,Environment,Environment +530541,Health,Health +530541,Research and Development,Research and Development +526792,Internal Trade,Internal Trade +526792,Research and Development,Research and Development +526792,Taxation and Finance,Taxation and Finance +529658,Small Business,Small Business +531184,Budget,Budget +531184,Tourism,Tourism +529658,Economic Development,Economic Development +531184,Regional Development,Regional Development +526836,Energy,Energy +528647,Energy,Énergie +526838,Agriculture,Agriculture +532484,Child Services,Services à l’enfance +530695,Economic Development,Développement économique +530701,Budget,Budget +530695,Official Languages,Bilinguisme/Langues officielles +532484,Tourism,Tourisme +532768,Immigration,Immigration +526888,Economic Development,Economic Development +527116,Government Procurement,Government Procurement +530139,Defence,Defence +530139,Employment and Training,Employment and Training +526958,Mining,Mining +526918,Taxation and Finance,Taxation and Finance +532744,Transportation,Transportation +530341,Climate,Climate +530341,Energy,Energy +530341,Economic Development,Economic Development +529653,Economic Development,Economic Development +529653,Tourism,Tourism +529653,Budget,Budget +529653,Small Business,Small Business +527862,Transportation,Transportation +526959,Climate,Climate +540419,Economic Development,Economic Development +545258,Education,Education +530475,Employment and Training,Employment and Training +545257,Industry,Industry +538345,Health,Health +528026,Economic Development,Economic Development +528026,Fisheries,Fisheries +526991,Education,Education +543925,Health,Health +543925,Industry,Industry +527006,International Trade,International Trade +527010,Transportation,Transportation +533113,Energy,Energy +527020,Health,Health +527026,Media,Media +530966,Government Procurement,Government Procurement +527036,Natural Resources,Natural Resources +530673,Consumer Issues,Consumer Issues +534460,Mining,Mining +534460,International Trade,International Trade +534460,Energy,Energy +527049,Health,Health +527049,Research and Development,Research and Development +527050,Research and Development,Research and Development +544812,Budget,Budget +542228,Health,Health +536478,Environment,Environment +534445,Immigration,Immigration +533099,Transportation,Transportation +537364,Budget,Budget +537364,Industry,Industry +538583,Taxation and Finance,Taxation and Finance +534624,Climate,Climate +534624,Energy,Energy +534624,Infrastructure,Infrastructure +542216,Economic Development,Développement économique +544986,Defence,Defence +540614,Immigration,Immigration +544986,Health,Health +544986,Government Procurement,Government Procurement +528100,International Development,International Development +534572,Climate,Climate +534572,Energy,Energy +534572,Infrastructure,Infrastructure +528023,Regional Development,Regional Development +528025,Fisheries,Fisheries +528057,Economic Development,Economic Development +530166,Economic Development,Economic Development +530167,Immigration,Immigration +529802,Constitutional Issues,Constitutional Issues +535892,Climate,Climate +529808,Health,Health +529810,Housing,Housing +529810,Infrastructure,Infrastructure +528608,Employment and Training,Employment and Training +528608,Health,Health +527116,Infrastructure,Infrastructure +531053,Economic Development,Economic Development +530220,Industry,Industry +534498,Foreign Affairs,Foreign Affairs +534498,International Development,International Development +530583,Energy,Energy +538555,International Trade,International Trade +536245,Agriculture,Agriculture +529451,Regional Development,Développement régional +536245,Energy,Énergie +529451,Infrastructure,Infrastructure +529452,Federal-Provincial Relations,Relations fédérales-provinciales +529448,Natural Resources,Ressources naturelles +530237,Health,Health +531502,Economic Development,Economic Development +531502,Mining,Mining +531255,Employment and Training,Employment and Training +531255,Environment,Environment +531113,Infrastructure,Infrastructure +530213,Labour,Labour +533051,Foreign Affairs,Foreign Affairs +533051,Industry,Industry +539211,International Trade,International Trade +533051,Tourism,Tourism +539211,Transportation,Transportation +532890,Agriculture,Agriculture +532891,Environment,Environment +532890,Health,Health +532891,International Trade,International Trade +542193,Economic Development,Economic Development +542193,International Trade,International Trade +542193,Small Business,Small Business +527195,Immigration,Immigration +527238,Immigration,Immigration +527214,Municipalities,Municipalities +527211,Taxation and Finance,Taxation and Finance +538772,Economic Development,Economic Development +532593,Small Business,Small Business +532944,Consumer Issues,Consumer Issues +537918,Budget,Budget +535696,Industry,Industry +537920,Taxation and Finance,Taxation and Finance +536595,Economic Development,Economic Development +531321,Education,Education +527329,Environment,Environment +527329,Fisheries,Fisheries +527330,Fisheries,Fisheries +534055,Government Procurement,Government Procurement +532858,Agriculture,Agriculture +532859,Environment,Environment +544682,Health,Health +532861,International Trade,International Trade +532957,Agriculture,Agriculture +532957,Environment,Environment +532956,Health,Health +542759,International Trade,International Trade +527655,Housing,Housing +527655,Immigration,Immigration +532554,Climate,Climate +533286,Economic Development,Economic Development +532554,Energy,Energy +532554,Environment,Environment +533286,Federal-Provincial Relations,Federal-Provincial Relations +533450,Natural Resources,Natural Resources +535856,Employment and Training,Employment and Training +532954,Labour,Labour +532630,Tourism,Tourism +532630,Transportation,Transportation +532842,Health,Health +532842,Labour,Labour +532840,Agriculture,Agriculture +532840,International Trade,International Trade +540326,Consumer Issues,Consumer Issues +532474,Research and Development,Research and Development +532474,Health,Health +539171,Tourism,Tourism +535003,Government Procurement,Government Procurement +535003,Immigration,Immigration +528374,International Development,International Development +535003,Transportation,Transportation +528374,Foreign Affairs,Foreign Affairs +528372,Transportation,Transportation +528372,Government Procurement,Government Procurement +528372,Foreign Affairs,Foreign Affairs +528372,Immigration,Immigration +528372,International Development,International Development +539814,Media,Media +538081,Privacy and Access to Information,Privacy and Access to Information +527575,Education,Education +533589,Industry,Industry +537704,Budget,Budget +537704,Economic Development,Economic Development +537704,Foreign Affairs,Foreign Affairs +531771,Research and Development,Research and Development +537704,Defence,Defence +537704,Transportation,Transportation +537704,Industry,Industry +532289,Government Procurement,Government Procurement +537703,Research and Development,Research and Development +537703,Budget,Budget +537703,Foreign Affairs,Foreign Affairs +540718,Industry,Industry +542296,Transportation,Transportation +537703,Economic Development,Economic Development +540719,International Relations,International Relations +537703,Defence,Defence +539176,International Trade,International Trade +539176,Energy,Energy +533191,Industry,Industry +527606,Child Services,Child Services +527627,Environment,Environment +527838,Environment,Environment +536027,Industry,Industry +528158,Consumer Issues,Consumer Issues +527641,Employment and Training,Employment and Training +527692,Immigration,Immigration +527701,International Trade,International Trade +538620,Economic Development,Economic Development +538620,Government Procurement,Government Procurement +538620,Infrastructure,Infrastructure +538620,Internal Trade,Internal Trade +538620,International Trade,International Trade +538620,Transportation,Transportation +527738,Intellectual Property,Intellectual Property +527742,Environment,Environment +527742,Transportation,Transportation +527775,Environment,Environment +532580,Environment,Environment +527783,Economic Development,Economic Development +527784,Economic Development,Economic Development +527785,Economic Development,Economic Development +527786,Economic Development,Economic Development +528304,International Relations,International Relations +530173,Economic Development,Développement économique +536539,Privacy and Access to Information,Vie privée et Accès à l'information +527861,Natural Resources,Natural Resources +543055,Climate,Climate +543055,Environment,Environment +543055,Infrastructure,Infrastructure +541726,Climate,Climate +541726,Economic Development,Economic Development +541726,Environment,Environment +541726,Industry,Industry +541726,Infrastructure,Infrastructure +541726,Natural Resources,Natural Resources +527911,Environment,Environment +527912,Budget,Budget +527913,Budget,Budget +531198,Budget,Budget +527914,Budget,Budget +527989,Financial Institutions,Financial Institutions +530789,Education,Education +530789,Employment and Training,Employment and Training +541512,Housing,Housing +542116,Energy,Energy +530160,Environment,Environment +530294,Federal-Provincial Relations,Federal-Provincial Relations +530294,Fisheries,Fisheries +530160,International Relations,International Relations +542116,Mining,Mining +530294,Natural Resources,Natural Resources +538578,Health,Health +538579,Housing,Housing +535799,Infrastructure,Infrastructure +530119,Energy,Energy +532058,Official Languages,Bilinguisme/Langues officielles +538926,Budget,Budget +532058,Economic Development,Développement économique +532058,Immigration,Immigration +538926,Small Business,Petites entreprises +538927,Research and Development,Recherche et développement +532120,Health,Health +528283,Environment,Environment +528283,Agriculture,Agriculture +528283,Budget,Budget +528335,Federal-Provincial Relations,Federal-Provincial Relations +528335,Municipalities,Municipalities +528335,Regional Development,Regional Development +535261,Economic Development,Economic Development +535261,Environment,Environment +535261,Industry,Industry +528442,Budget,Budget +530575,Justice and Law Enforcement,Justice and Law Enforcement +530575,Security,National Security/Security +536317,Economic Development,Economic Development +528610,Labour,Labour +535909,International Relations,International Relations +528620,Immigration,Immigration +530174,Housing,Housing +530174,Immigration,Immigration +532849,Health,Health +537415,Federal-Provincial Relations,Federal-Provincial Relations +538773,Economic Development,Développement économique +538773,Environment,Environnement +540762,Mining,Mines +533092,Natural Resources,Ressources naturelles +527633,Justice and Law Enforcement,Justice and Law Enforcement +528912,Foreign Affairs,Foreign Affairs +528926,Taxation and Finance,Taxation and Finance +528926,Transportation,Transportation +528960,Budget,Budget +529023,Industry,Industry +529035,Education,Education +529110,Taxation and Finance,Taxation and Finance +529113,Taxation and Finance,Taxation and Finance +529141,Climate,Climate +530547,Agriculture,Agriculture +530547,Environment,Environment +537327,Health,Health +530194,Regional Development,Regional Development +530142,Energy,Energy +530142,Infrastructure,Infrastructure +530142,Economic Development,Economic Development +535029,Economic Development,Economic Development +532423,Health,Health +531718,Health,Santé +529228,Housing,Housing +537698,Taxation and Finance,Taxation and Finance +529290,Health,Health +529364,Elections,Elections +529372,Internal Trade,Internal Trade +529374,Internal Trade,Internal Trade +529377,Internal Trade,Internal Trade +529378,Internal Trade,Internal Trade +541725,Climate,Climate +541725,Economic Development,Economic Development +541725,Employment and Training,Employment and Training +541725,Energy,Energy +533285,Research and Development,Research and Development +529399,Natural Resources,Natural Resources +529416,International Trade,International Trade +529445,Environment,Environment +529451,Environment,Environment +529455,Environment,Environment +533301,Industry,Industry +533301,Regional Development,Regional Development +533301,Research and Development,Research and Development +527235,Immigration,Immigration +525280,International Development,International Development +540909,Climate,Climate +539281,Climate,Climate +533631,Climate,Climate +527744,Climate,Climate +526433,Climate,Climate +540909,Employment and Training,Employment and Training +539281,Employment and Training,Employment and Training +525130,Immigration,Immigration +525133,Immigration,Immigration +525138,Immigration,Immigration +529443,Regional Development,Développement régional +529440,Regional Development,Développement régional +529442,Energy,Énergie +529440,Energy,Énergie +536248,Energy,Énergie +536244,Energy,Énergie +535434,Energy,Énergie +535415,Energy,Énergie +532741,Energy,Énergie +532275,Energy,Énergie +529444,Energy,Énergie +529443,Environment,Environnement +529440,Environment,Environnement +536244,Environment,Environnement +535434,Environment,Environnement +535415,Environment,Environnement +532741,Environment,Environnement +532275,Environment,Environnement +529443,Infrastructure,Infrastructure +529440,Infrastructure,Infrastructure +536244,Infrastructure,Infrastructure +535434,Infrastructure,Infrastructure +535415,Infrastructure,Infrastructure +532741,Infrastructure,Infrastructure +532275,Infrastructure,Infrastructure +527912,Tourism,Tourism +525184,Tourism,Tourism +543442,Tourism,Tourism +541882,Tourism,Tourism +541877,Tourism,Tourism +541875,Tourism,Tourism +539767,Tourism,Tourism +539765,Tourism,Tourism +539763,Tourism,Tourism +539758,Tourism,Tourism +539754,Tourism,Tourism +539753,Tourism,Tourism +539750,Tourism,Tourism +539732,Tourism,Tourism +536778,Tourism,Tourism +536777,Tourism,Tourism +536774,Tourism,Tourism +536770,Tourism,Tourism +536768,Tourism,Tourism +536759,Tourism,Tourism +536758,Tourism,Tourism +536757,Tourism,Tourism +534817,Tourism,Tourism +534815,Tourism,Tourism +534813,Tourism,Tourism +534811,Tourism,Tourism +534807,Tourism,Tourism +534805,Tourism,Tourism +534803,Tourism,Tourism +534801,Tourism,Tourism +534798,Tourism,Tourism +527914,Tourism,Tourism +525315,International Development,International Development +528145,Natural Resources,Natural Resources +526484,Taxation and Finance,Taxation and Finance +525669,Research and Development,Research and Development +528734,International Trade,International Trade +525747,International Trade,International Trade +543528,International Trade,International Trade +543527,International Trade,International Trade +543523,International Trade,International Trade +543521,International Trade,International Trade +543519,International Trade,International Trade +543517,International Trade,International Trade +543513,International Trade,International Trade +543512,International Trade,International Trade +543508,International Trade,International Trade +539126,International Trade,International Trade +535391,International Trade,International Trade +535379,International Trade,International Trade +531936,International Trade,International Trade +525787,Labour,Labour +525781,Labour,Labour +544968,Labour,Labour +525919,Labour,Labour +525918,Labour,Labour +525777,Housing,Housing +526030,International Trade,International Trade +526031,International Trade,International Trade +526243,Agriculture,Agriculture +526035,Agriculture,Agriculture +526243,International Trade,International Trade +526290,Economic Development,Economic Development +526285,Economic Development,Economic Development +526439,Constitutional Issues,Constitutional Issues +532441,Education,Education +526502,Education,Education +536011,Education,Education +526502,Health,Health +526499,Health,Health +544884,Health,Health +536011,Health,Health +532575,Health,Health +532575,Taxation and Finance,Taxation and Finance +532441,Taxation and Finance,Taxation and Finance +527490,Economic Development,Economic Development +527273,Economic Development,Economic Development +527273,Government Procurement,Government Procurement +527490,Defence,Defence +527273,Defence,Defence +526487,Budget,Budget +526485,Budget,Budget +526559,Taxation and Finance,Taxation and Finance +526553,Taxation and Finance,Taxation and Finance +539660,Taxation and Finance,Taxation and Finance +526606,Economic Development,Economic Development +530517,Defence,Defence +527146,Defence,Defence +538556,Defence,Defence +521730,Natural Resources,Natural Resources +527048,Consumer Issues,Consumer Issues +526892,Consumer Issues,Consumer Issues +529905,Consumer Issues,Consumer Issues +526892,Financial Institutions,Financial Institutions +532799,Financial Institutions,Financial Institutions +532717,Financial Institutions,Financial Institutions +529905,Financial Institutions,Financial Institutions +527563,Financial Institutions,Financial Institutions +527306,Financial Institutions,Financial Institutions +527306,Justice and Law Enforcement,Justice and Law Enforcement +527048,Justice and Law Enforcement,Justice and Law Enforcement +532799,Justice and Law Enforcement,Justice and Law Enforcement +532717,Justice and Law Enforcement,Justice and Law Enforcement +529905,Justice and Law Enforcement,Justice and Law Enforcement +527048,Pensions,Pensions +526892,Pensions,Pensions +532799,Pensions,Pensions +532717,Pensions,Pensions +529905,Pensions,Pensions +527563,Pensions,Pensions +527048,Taxation and Finance,Taxation and Finance +526892,Taxation and Finance,Taxation and Finance +532799,Taxation and Finance,Taxation and Finance +532717,Taxation and Finance,Taxation and Finance +529905,Taxation and Finance,Taxation and Finance +527563,Taxation and Finance,Taxation and Finance +530540,Agriculture,Agriculture +530539,Agriculture,Agriculture +532460,Agriculture,Agriculture +530539,Environment,Environment +529658,Budget,Budget +529658,Tourism,Tourism +526839,Energy,Énergie +530702,Child Services,Services à l’enfance +530701,Child Services,Services à l’enfance +539511,Child Services,Services à l’enfance +539510,Child Services,Services à l’enfance +538860,Child Services,Services à l’enfance +538859,Child Services,Services à l’enfance +538858,Child Services,Services à l’enfance +538857,Child Services,Services à l’enfance +538856,Child Services,Services à l’enfance +536686,Child Services,Services à l’enfance +536532,Child Services,Services à l’enfance +536531,Child Services,Services à l’enfance +536186,Child Services,Services à l’enfance +535974,Child Services,Services à l’enfance +533771,Child Services,Services à l’enfance +533770,Child Services,Services à l’enfance +532770,Child Services,Services à l’enfance +532768,Child Services,Services à l’enfance +532767,Child Services,Services à l’enfance +532486,Child Services,Services à l’enfance +530104,Economic Development,Développement économique +527641,Economic Development,Développement économique +539511,Economic Development,Développement économique +539510,Economic Development,Développement économique +539082,Economic Development,Développement économique +539081,Economic Development,Développement économique +539080,Economic Development,Développement économique +539079,Economic Development,Développement économique +538860,Economic Development,Développement économique +538859,Economic Development,Développement économique +538858,Economic Development,Développement économique +538857,Economic Development,Développement économique +538856,Economic Development,Développement économique +536686,Economic Development,Développement économique +536532,Economic Development,Développement économique +536531,Economic Development,Développement économique +536186,Economic Development,Développement économique +536185,Economic Development,Développement économique +535974,Economic Development,Développement économique +535973,Economic Development,Développement économique +533771,Economic Development,Développement économique +533770,Economic Development,Développement économique +532770,Economic Development,Développement économique +532768,Economic Development,Développement économique +532767,Economic Development,Développement économique +532486,Economic Development,Développement économique +532485,Economic Development,Développement économique +532484,Economic Development,Développement économique +530702,Economic Development,Développement économique +530701,Economic Development,Développement économique +530699,Economic Development,Développement économique +530698,Economic Development,Développement économique +530696,Economic Development,Développement économique +539511,Budget,Budget +539510,Budget,Budget +539082,Budget,Budget +539081,Budget,Budget +539080,Budget,Budget +539079,Budget,Budget +538860,Budget,Budget +538859,Budget,Budget +538858,Budget,Budget +538857,Budget,Budget +538856,Budget,Budget +536686,Budget,Budget +536532,Budget,Budget +536186,Budget,Budget +536185,Budget,Budget +535974,Budget,Budget +535973,Budget,Budget +533771,Budget,Budget +533770,Budget,Budget +532770,Budget,Budget +532768,Budget,Budget +532767,Budget,Budget +532486,Budget,Budget +532484,Budget,Budget +530702,Budget,Budget +530104,Official Languages,Bilinguisme/Langues officielles +527641,Official Languages,Bilinguisme/Langues officielles +539511,Official Languages,Bilinguisme/Langues officielles +539510,Official Languages,Bilinguisme/Langues officielles +539082,Official Languages,Bilinguisme/Langues officielles +539081,Official Languages,Bilinguisme/Langues officielles +539080,Official Languages,Bilinguisme/Langues officielles +539079,Official Languages,Bilinguisme/Langues officielles +538860,Official Languages,Bilinguisme/Langues officielles +538859,Official Languages,Bilinguisme/Langues officielles +538858,Official Languages,Bilinguisme/Langues officielles +538857,Official Languages,Bilinguisme/Langues officielles +538856,Official Languages,Bilinguisme/Langues officielles +536686,Official Languages,Bilinguisme/Langues officielles +536532,Official Languages,Bilinguisme/Langues officielles +536531,Official Languages,Bilinguisme/Langues officielles +536186,Official Languages,Bilinguisme/Langues officielles +536185,Official Languages,Bilinguisme/Langues officielles +535974,Official Languages,Bilinguisme/Langues officielles +535973,Official Languages,Bilinguisme/Langues officielles +533771,Official Languages,Bilinguisme/Langues officielles +533770,Official Languages,Bilinguisme/Langues officielles +532770,Official Languages,Bilinguisme/Langues officielles +532768,Official Languages,Bilinguisme/Langues officielles +532767,Official Languages,Bilinguisme/Langues officielles +532486,Official Languages,Bilinguisme/Langues officielles +532485,Official Languages,Bilinguisme/Langues officielles +532484,Official Languages,Bilinguisme/Langues officielles +530702,Official Languages,Bilinguisme/Langues officielles +530701,Official Languages,Bilinguisme/Langues officielles +530699,Official Languages,Bilinguisme/Langues officielles +530698,Official Languages,Bilinguisme/Langues officielles +530696,Official Languages,Bilinguisme/Langues officielles +530702,Tourism,Tourisme +530701,Tourism,Tourisme +539511,Tourism,Tourisme +539510,Tourism,Tourisme +538860,Tourism,Tourisme +538859,Tourism,Tourisme +538858,Tourism,Tourisme +538857,Tourism,Tourisme +538856,Tourism,Tourisme +536686,Tourism,Tourisme +536532,Tourism,Tourisme +536186,Tourism,Tourisme +535974,Tourism,Tourisme +533771,Tourism,Tourisme +533770,Tourism,Tourisme +532770,Tourism,Tourisme +532768,Tourism,Tourisme +532767,Tourism,Tourisme +532486,Tourism,Tourisme +532767,Immigration,Immigration +532486,Immigration,Immigration +532485,Immigration,Immigration +532484,Immigration,Immigration +530702,Immigration,Immigration +530701,Immigration,Immigration +530699,Immigration,Immigration +530698,Immigration,Immigration +530696,Immigration,Immigration +530695,Immigration,Immigration +530104,Immigration,Immigration +527641,Immigration,Immigration +539511,Immigration,Immigration +539510,Immigration,Immigration +539079,Immigration,Immigration +538860,Immigration,Immigration +538859,Immigration,Immigration +538858,Immigration,Immigration +538857,Immigration,Immigration +538856,Immigration,Immigration +536686,Immigration,Immigration +536532,Immigration,Immigration +536531,Immigration,Immigration +536186,Immigration,Immigration +536185,Immigration,Immigration +535974,Immigration,Immigration +535973,Immigration,Immigration +533771,Immigration,Immigration +533770,Immigration,Immigration +532770,Immigration,Immigration +526890,Defence,Defence +526890,Employment and Training,Employment and Training +526895,Mining,Mining +526939,Climate,Climate +526939,Energy,Energy +526939,Economic Development,Economic Development +529647,Economic Development,Economic Development +529643,Economic Development,Economic Development +531182,Economic Development,Economic Development +529656,Economic Development,Economic Development +529655,Economic Development,Economic Development +529647,Tourism,Tourism +529643,Tourism,Tourism +531182,Tourism,Tourism +529656,Tourism,Tourism +529655,Tourism,Tourism +529647,Budget,Budget +529643,Budget,Budget +531182,Budget,Budget +529656,Budget,Budget +529655,Budget,Budget +529647,Small Business,Small Business +529643,Small Business,Small Business +531182,Small Business,Small Business +529656,Small Business,Small Business +529655,Small Business,Small Business +545257,Education,Education +540419,Education,Education +530244,Employment and Training,Employment and Training +528442,Employment and Training,Employment and Training +545258,Employment and Training,Employment and Training +545257,Employment and Training,Employment and Training +545256,Employment and Training,Employment and Training +540419,Employment and Training,Employment and Training +540419,Industry,Industry +530475,Industry,Industry +545258,Industry,Industry +535839,Health,Health +535825,Health,Health +539804,Health,Health +539803,Health,Health +536554,Health,Health +531624,Health,Health +544812,Health,Health +536187,Environment,Environment +530319,Environment,Environment +534443,Immigration,Immigration +531289,Immigration,Immigration +540139,Immigration,Immigration +534448,Immigration,Immigration +534447,Immigration,Immigration +527068,Transportation,Transportation +527067,Transportation,Transportation +534659,Industry,Industry +534657,Industry,Industry +545239,Industry,Industry +538583,Industry,Industry +534661,Taxation and Finance,Taxation and Finance +534659,Taxation and Finance,Taxation and Finance +528678,Climate,Climate +528678,Energy,Energy +528678,Infrastructure,Infrastructure +527079,Economic Development,Développement économique +528105,Immigration,Immigration +540614,Health,Health +528673,Climate,Climate +528673,Energy,Energy +528673,Infrastructure,Infrastructure +528024,Fisheries,Fisheries +528023,Fisheries,Fisheries +528057,Fisheries,Fisheries +528025,Economic Development,Economic Development +528024,Economic Development,Economic Development +527984,Economic Development,Economic Development +527983,Economic Development,Economic Development +536055,Economic Development,Economic Development +530171,Economic Development,Economic Development +530170,Economic Development,Economic Development +530169,Economic Development,Economic Development +530168,Economic Development,Economic Development +530167,Economic Development,Economic Development +527984,Immigration,Immigration +527983,Immigration,Immigration +536055,Immigration,Immigration +527493,Constitutional Issues,Constitutional Issues +529809,Climate,Climate +529807,Climate,Climate +529806,Health,Health +529808,Housing,Housing +529806,Housing,Housing +529809,Infrastructure,Infrastructure +529807,Infrastructure,Infrastructure +535892,Infrastructure,Infrastructure +530220,Economic Development,Economic Development +530517,International Trade,International Trade +527146,International Trade,International Trade +538556,International Trade,International Trade +529452,Agriculture,Agriculture +529451,Agriculture,Agriculture +529448,Regional Development,Développement régional +529445,Regional Development,Développement régional +536247,Regional Development,Développement régional +536245,Regional Development,Développement régional +535328,Regional Development,Développement régional +532267,Regional Development,Développement régional +529462,Regional Development,Développement régional +529455,Regional Development,Développement régional +529452,Regional Development,Développement régional +535409,Energy,Énergie +535328,Energy,Énergie +532270,Energy,Énergie +532267,Energy,Énergie +532265,Energy,Énergie +529462,Energy,Énergie +529455,Energy,Énergie +529452,Energy,Énergie +529451,Energy,Énergie +529448,Energy,Énergie +529446,Energy,Énergie +529445,Energy,Énergie +541000,Energy,Énergie +540263,Energy,Énergie +540262,Energy,Énergie +529448,Infrastructure,Infrastructure +529445,Infrastructure,Infrastructure +540263,Infrastructure,Infrastructure +540262,Infrastructure,Infrastructure +536245,Infrastructure,Infrastructure +535328,Infrastructure,Infrastructure +532267,Infrastructure,Infrastructure +532265,Infrastructure,Infrastructure +529462,Infrastructure,Infrastructure +529455,Infrastructure,Infrastructure +529452,Infrastructure,Infrastructure +529451,Federal-Provincial Relations,Relations fédérales-provinciales +529445,Federal-Provincial Relations,Relations fédérales-provinciales +540263,Federal-Provincial Relations,Relations fédérales-provinciales +540262,Federal-Provincial Relations,Relations fédérales-provinciales +536245,Federal-Provincial Relations,Relations fédérales-provinciales +532267,Federal-Provincial Relations,Relations fédérales-provinciales +532265,Federal-Provincial Relations,Relations fédérales-provinciales +529446,Natural Resources,Ressources naturelles +529445,Natural Resources,Ressources naturelles +541000,Natural Resources,Ressources naturelles +540263,Natural Resources,Ressources naturelles +540262,Natural Resources,Ressources naturelles +536245,Natural Resources,Ressources naturelles +535409,Natural Resources,Ressources naturelles +535328,Natural Resources,Ressources naturelles +532270,Natural Resources,Ressources naturelles +532267,Natural Resources,Ressources naturelles +532265,Natural Resources,Ressources naturelles +529455,Natural Resources,Ressources naturelles +529452,Natural Resources,Ressources naturelles +529451,Natural Resources,Ressources naturelles +530000,Health,Health +529906,Health,Health +535002,Health,Health +530213,Employment and Training,Employment and Training +531113,Environment,Environment +530213,Environment,Environment +530213,Infrastructure,Infrastructure +530212,Infrastructure,Infrastructure +531255,Infrastructure,Infrastructure +533051,International Trade,International Trade +533051,Transportation,Transportation +532889,Agriculture,Agriculture +532888,Agriculture,Agriculture +532950,Agriculture,Agriculture +532891,Agriculture,Agriculture +532889,Environment,Environment +532888,Environment,Environment +532950,Environment,Environment +532889,Health,Health +532888,Health,Health +532891,Health,Health +532888,International Trade,International Trade +542191,Economic Development,Economic Development +542257,Economic Development,Economic Development +542191,Small Business,Small Business +533298,Small Business,Small Business +542257,Small Business,Small Business +527229,Immigration,Immigration +527214,Immigration,Immigration +527201,Municipalities,Municipalities +527198,Municipalities,Municipalities +527440,Municipalities,Municipalities +527439,Municipalities,Municipalities +527238,Municipalities,Municipalities +527229,Municipalities,Municipalities +533367,Economic Development,Economic Development +527475,Small Business,Small Business +527473,Small Business,Small Business +543758,Small Business,Small Business +540955,Small Business,Small Business +538989,Small Business,Small Business +538772,Small Business,Small Business +533367,Small Business,Small Business +529375,Consumer Issues,Consumer Issues +529371,Consumer Issues,Consumer Issues +544385,Consumer Issues,Consumer Issues +544383,Consumer Issues,Consumer Issues +541871,Consumer Issues,Consumer Issues +539011,Consumer Issues,Consumer Issues +536291,Consumer Issues,Consumer Issues +536290,Consumer Issues,Consumer Issues +532945,Consumer Issues,Consumer Issues +535693,Industry,Industry +535692,Industry,Industry +537920,Industry,Industry +537918,Industry,Industry +535695,Taxation and Finance,Taxation and Finance +535693,Taxation and Finance,Taxation and Finance +531321,Economic Development,Economic Development +527322,Economic Development,Economic Development +536602,Economic Development,Economic Development +527322,Education,Education +530984,Government Procurement,Government Procurement +529952,Government Procurement,Government Procurement +534072,Government Procurement,Government Procurement +532855,Agriculture,Agriculture +532854,Agriculture,Agriculture +544682,Agriculture,Agriculture +540583,Agriculture,Agriculture +540582,Agriculture,Agriculture +540448,Agriculture,Agriculture +532862,Agriculture,Agriculture +532861,Agriculture,Agriculture +532859,Agriculture,Agriculture +532858,Environment,Environment +532862,Health,Health +532855,Health,Health +532855,International Trade,International Trade +532854,International Trade,International Trade +542760,International Trade,International Trade +532862,International Trade,International Trade +532956,Agriculture,Agriculture +532955,Agriculture,Agriculture +542132,Agriculture,Agriculture +532956,Environment,Environment +532955,Environment,Environment +542132,Environment,Environment +532957,International Trade,International Trade +532956,International Trade,International Trade +530448,Climate,Climate +530447,Climate,Climate +533450,Climate,Climate +533417,Climate,Climate +533286,Climate,Climate +530448,Economic Development,Economic Development +530447,Economic Development,Economic Development +533417,Economic Development,Economic Development +530448,Energy,Energy +530447,Energy,Energy +533450,Energy,Energy +533417,Energy,Energy +533286,Energy,Energy +530448,Environment,Environment +530447,Environment,Environment +533450,Environment,Environment +533417,Environment,Environment +532554,Federal-Provincial Relations,Federal-Provincial Relations +533286,Natural Resources,Natural Resources +532554,Natural Resources,Natural Resources +532954,Employment and Training,Employment and Training +530299,Tourism,Tourism +530299,Transportation,Transportation +532838,Agriculture,Agriculture +532837,Agriculture,Agriculture +532843,Agriculture,Agriculture +532842,Agriculture,Agriculture +532838,International Trade,International Trade +532837,International Trade,International Trade +532842,International Trade,International Trade +539170,Tourism,Tourism +533128,Tourism,Tourism +540737,Tourism,Tourism +539172,Tourism,Tourism +528374,Government Procurement,Government Procurement +528373,Government Procurement,Government Procurement +528374,Immigration,Immigration +528373,Immigration,Immigration +528373,International Development,International Development +528374,Transportation,Transportation +528373,Transportation,Transportation +528373,Foreign Affairs,Foreign Affairs +528370,Transportation,Transportation +528368,Transportation,Transportation +532146,Transportation,Transportation +528419,Transportation,Transportation +528370,Government Procurement,Government Procurement +528368,Government Procurement,Government Procurement +532146,Government Procurement,Government Procurement +528419,Government Procurement,Government Procurement +528370,Foreign Affairs,Foreign Affairs +528368,Foreign Affairs,Foreign Affairs +532146,Foreign Affairs,Foreign Affairs +528419,Foreign Affairs,Foreign Affairs +528370,Immigration,Immigration +528368,Immigration,Immigration +528419,Immigration,Immigration +528370,International Development,International Development +528368,International Development,International Development +528419,International Development,International Development +532715,Media,Media +532715,Privacy and Access to Information,Privacy and Access to Information +531771,Economic Development,Economic Development +531771,Foreign Affairs,Foreign Affairs +537704,Research and Development,Research and Development +531771,Defence,Defence +531771,Transportation,Transportation +532289,Research and Development,Research and Development +532289,Budget,Budget +532289,Foreign Affairs,Foreign Affairs +537703,Industry,Industry +532289,Industry,Industry +542296,Industry,Industry +540719,Industry,Industry +537703,Transportation,Transportation +532289,Transportation,Transportation +532289,Economic Development,Economic Development +540718,International Relations,International Relations +532289,International Relations,International Relations +527643,Industry,Industry +527629,Environment,Environment +527628,Environment,Environment +533192,Industry,Industry +527679,Industry,Industry +534804,Government Procurement,Government Procurement +534804,Infrastructure,Infrastructure +542831,Intellectual Property,Intellectual Property +542123,Intellectual Property,Intellectual Property +542122,Intellectual Property,Intellectual Property +535994,Intellectual Property,Intellectual Property +527778,Environment,Environment +541295,Climate,Climate +539063,Climate,Climate +541295,Environment,Environment +539063,Environment,Environment +541295,Infrastructure,Infrastructure +539063,Infrastructure,Infrastructure +530159,Environment,Environment +530158,Environment,Environment +542116,Environment,Environment +530294,Environment,Environment +530215,Environment,Environment +530161,Environment,Environment +530159,Federal-Provincial Relations,Federal-Provincial Relations +530158,Federal-Provincial Relations,Federal-Provincial Relations +530159,International Relations,International Relations +530158,International Relations,International Relations +542116,International Relations,International Relations +530294,International Relations,International Relations +530215,International Relations,International Relations +530161,International Relations,International Relations +530161,Mining,Mining +530215,Natural Resources,Natural Resources +530161,Natural Resources,Natural Resources +542116,Natural Resources,Natural Resources +538578,Housing,Housing +535799,Housing,Housing +530300,Official Languages,Bilinguisme/Langues officielles +529696,Official Languages,Bilinguisme/Langues officielles +538927,Official Languages,Bilinguisme/Langues officielles +538926,Official Languages,Bilinguisme/Langues officielles +532060,Official Languages,Bilinguisme/Langues officielles +530300,Economic Development,Développement économique +529696,Economic Development,Développement économique +538927,Economic Development,Développement économique +538926,Economic Development,Développement économique +532060,Economic Development,Développement économique +530300,Small Business,Petites entreprises +545257,Budget,Budget +545256,Budget,Budget +528765,Immigration,Immigration +532845,Health,Health +532844,Health,Health +532850,Health,Health +537414,Federal-Provincial Relations,Federal-Provincial Relations +528579,Federal-Provincial Relations,Federal-Provincial Relations +528577,Federal-Provincial Relations,Federal-Provincial Relations +528576,Federal-Provincial Relations,Federal-Provincial Relations +537417,Federal-Provincial Relations,Federal-Provincial Relations +536664,Economic Development,Développement économique +536664,Environment,Environnement +533092,Environment,Environnement +540762,Environment,Environnement +530546,Agriculture,Agriculture +530545,Agriculture,Agriculture +530546,Environment,Environment +530545,Environment,Environment +530142,Regional Development,Regional Development +530141,Energy,Energy +530140,Energy,Energy +540854,Energy,Energy +540555,Energy,Energy +540554,Energy,Energy +540552,Energy,Energy +536560,Energy,Energy +536559,Energy,Energy +536558,Energy,Energy +536556,Energy,Energy +536555,Energy,Energy +530464,Energy,Energy +530222,Energy,Energy +530194,Energy,Energy +530140,Infrastructure,Infrastructure +540552,Infrastructure,Infrastructure +536558,Infrastructure,Infrastructure +536556,Infrastructure,Infrastructure +536555,Infrastructure,Infrastructure +530464,Infrastructure,Infrastructure +530261,Infrastructure,Infrastructure +530194,Infrastructure,Infrastructure +531978,Health,Health +531968,Health,Health +535029,Health,Health +532425,Health,Health +535150,Taxation and Finance,Taxation and Finance +533285,Climate,Climate +533285,Economic Development,Economic Development +533285,Employment and Training,Employment and Training +533285,Energy,Energy +541725,Research and Development,Research and Development +539905,Media,Media +539903,Media,Media +539900,Media,Media +539899,Media,Media +537574,Media,Media +537572,Media,Media +537571,Media,Media +537569,Media,Media +537568,Media,Media +537567,Media,Media +537566,Media,Media +537565,Media,Media +537564,Media,Media +537563,Media,Media +537562,Media,Media +537561,Media,Media +537560,Media,Media +537559,Media,Media +537558,Media,Media +537557,Media,Media +534924,Media,Media +534922,Media,Media +534920,Media,Media +534919,Media,Media +534916,Media,Media +534912,Media,Media +534908,Media,Media +534906,Media,Media +534899,Media,Media +534897,Media,Media +534895,Media,Media +534892,Media,Media +534889,Media,Media +534887,Media,Media +534885,Media,Media +534883,Media,Media +534879,Media,Media +534878,Media,Media +534876,Media,Media +534872,Media,Media +534870,Media,Media +534868,Media,Media +534867,Media,Media +531911,Media,Media +531910,Media,Media +531909,Media,Media +529498,Media,Media +529497,Media,Media +529496,Media,Media +529495,Media,Media +529494,Media,Media +529493,Media,Media +543357,Media,Media +543334,Media,Media +543333,Media,Media +543332,Media,Media +543331,Media,Media +543330,Media,Media +543329,Media,Media +541686,Media,Media +541685,Media,Media +541684,Media,Media +540185,Media,Media +540184,Media,Media +539907,Media,Media +538246,Justice and Law Enforcement,Justice and Law Enforcement +538242,Justice and Law Enforcement,Justice and Law Enforcement +545323,Justice and Law Enforcement,Justice and Law Enforcement +532556,Environment,Environment +532555,Environment,Environment +532555,Fisheries,Fisheries +532555,Natural Resources,Natural Resources +533880,Climate,Climate +533879,Climate,Climate +537290,Climate,Climate +533883,Climate,Climate +533879,Energy,Energy +533878,Energy,Energy +544357,Energy,Energy +544356,Energy,Energy +544355,Energy,Energy +541694,Energy,Energy +541693,Energy,Energy +539210,Energy,Energy +537290,Energy,Energy +533883,Energy,Energy +533882,Energy,Energy +541694,Environment,Environment +541693,Environment,Environment +539210,Environment,Environment +533883,Environment,Environment +533882,Environment,Environment +533880,Environment,Environment +533879,Environment,Environment +544356,Environment,Environment +543342,Security,Security +539027,Security,Security +543351,Security,Security +543348,Security,Security +543347,Immigration,Immigration +543343,Immigration,Immigration +539026,Economic Development,Economic Development +539025,Economic Development,Economic Development +543353,Economic Development,Economic Development +543347,Economic Development,Economic Development +543343,Economic Development,Economic Development +543338,Economic Development,Economic Development +539026,Employment and Training,Employment and Training +539025,Employment and Training,Employment and Training +543353,Employment and Training,Employment and Training +543351,Employment and Training,Employment and Training +543348,Employment and Training,Employment and Training +543343,Employment and Training,Employment and Training +543342,Employment and Training,Employment and Training +543338,Employment and Training,Employment and Training +539026,Education,Education +539025,Education,Education +543353,Education,Education +543351,Education,Education +543348,Education,Education +543347,Education,Education +543343,Education,Education +543342,Education,Education +543338,Education,Education +538915,International Relations,International Relations +538915,Justice and Law Enforcement,Justice and Law Enforcement +531023,Transportation,Transportation +529901,Transportation,Transportation +542309,Transportation,Transportation +540353,Transportation,Transportation +532584,Transportation,Transportation +530064,Environment,Environment +530064,Industry,Industry +530064,Tourism,Tourism +530064,Transportation,Transportation +530513,Economic Development,Economic Development +529973,Economic Development,Economic Development +532836,Economic Development,Economic Development +538757,Economic Development,Economic Development +532381,Economic Development,Economic Development +538757,Housing,Housing +532381,Housing,Housing +538757,Industry,Industry +532381,Industry,Industry +530155,Climate,Climate +530155,Economic Development,Economic Development +530155,Industry,Industry +532993,Consumer Issues,Consumer Issues +530381,Consumer Issues,Consumer Issues +538505,Infrastructure,Infrastructure +535983,Infrastructure,Infrastructure +541643,Infrastructure,Infrastructure +534849,Energy,Energy +529462,Environment,Environment +539906,Media,Media +529548,Climate,Climate +529552,Climate,Climate +529554,Climate,Climate +529558,Climate,Climate +545323,Federal-Provincial Relations,Federal-Provincial Relations +540225,Justice and Law Enforcement,Justice and Law Enforcement +536914,Constitutional Issues,Constitutional Issues +536914,Environment,Environment +536914,Federal-Provincial Relations,Federal-Provincial Relations +532556,Fisheries,Fisheries +532556,Natural Resources,Natural Resources +529725,Education,Education +532431,International Trade,International Trade +533699,Climate,Climate +533699,Research and Development,Research and Development +533882,Climate,Climate +533880,Energy,Energy +544355,Environment,Environment +533878,Infrastructure,Infrastructure +543347,Security,Security +543351,Immigration,Immigration +539027,Economic Development,Economic Development +539027,Employment and Training,Employment and Training +539027,Education,Education +532982,Education,Education +532982,Labour,Labour +532982,Budget,Budget +532982,Employment and Training,Employment and Training +530552,Budget,Budget +539476,Consumer Issues,Consumer Issues +539476,Industry,Industry +539476,Municipalities,Municipalities +529821,Economic Development,Economic Development +538916,International Relations,International Relations +538916,Justice and Law Enforcement,Justice and Law Enforcement +529857,Labour,Labour +529858,Economic Development,Economic Development +532464,Transportation,Transportation +531595,International Trade,International Trade +530086,Environment,Environment +530086,Industry,Industry +530086,Tourism,Tourism +530086,Transportation,Transportation +542206,Intellectual Property,Intellectual Property +529953,Labour,Labour +532835,Economic Development,Economic Development +544320,Economic Development,Economic Development +544320,Transportation,Transportation +540224,Economic Development,Economic Development +540224,Housing,Housing +540224,Industry,Industry +532381,Infrastructure,Infrastructure +529987,Natural Resources,Natural Resources +530156,Climate,Climate +530156,Economic Development,Economic Development +530155,Government Procurement,Government Procurement +530156,Industry,Industry +530156,Regional Development,Regional Development +530156,Research and Development,Research and Development +538956,Consumer Issues,Consumer Issues +538956,Government Procurement,Government Procurement +530320,Agriculture,Agriculture +541640,Infrastructure,Infrastructure +534854,Energy,Energy +534854,Environment,Environment +539890,Fisheries,Fisheries +539904,Infrastructure,Infrastructure +532388,Energy,Energy +530203,International Trade,Commerce international +530532,Economic Development,Développement économique +542571,Industry,Industrie +537106,Economic Development,Economic Development +530899,Regional Development,Regional Development +537106,Tourism,Tourism +532578,Industry,Industry +530452,Economic Development,Economic Development +530452,Employment and Training,Employment and Training +530314,Regional Development,Regional Development +539123,Small Business,Small Business +536628,Environment,Environment +543788,Budget,Budget +543788,Infrastructure,Infrastructure +536629,Research and Development,Research and Development +534989,Taxation and Finance,Taxation and Finance +535241,Health,Health +535240,Industry,Industry +535243,Research and Development,Research and Development +530141,Environment,Environment +539933,Energy,Energy +539933,Environment,Environment +539930,Infrastructure,Infrastructure +534986,Taxation and Finance,Taxation and Finance +534978,Taxation and Finance,Taxation and Finance +530751,Taxation and Finance,Taxation and Finance +530154,Natural Resources,Natural Resources +530244,International Relations,International Relations +530244,Security,National Security/Security +530244,Privacy and Access to Information,Privacy and Access to Information +530244,Tourism,Tourism +543356,Consumer Issues,Consumer Issues +543356,Health,Health +543356,Justice and Law Enforcement,Justice and Law Enforcement +539788,Agriculture,Agriculture +536555,Environment,Environment +532482,Employment and Training,Employment and Training +532482,Industry,Industry +531024,Economic Development,Economic Development +542201,Industry,Industry +542201,Media,Media +542201,Municipalities,Municipalities +535895,Budget,Budget +535895,Government Procurement,Government Procurement +536384,Research and Development,Research and Development +535895,Security,National Security/Security +536384,Regional Development,Regional Development +536384,Transportation,Transportation +536384,International Relations,International Relations +535895,International Trade,International Trade +535895,Infrastructure,Infrastructure +540370,Defence,Defence +535895,Economic Development,Economic Development +537441,Industry,Industry +537708,International Relations,International Relations +533049,Industry,Industry +533049,Government Procurement,Government Procurement +537708,Budget,Budget +531781,Transportation,Transportation +531781,International Trade,International Trade +531781,Defence,Defence +537708,Research and Development,Research and Development +537708,Infrastructure,Infrastructure +531781,Regional Development,Regional Development +537708,Economic Development,Economic Development +532648,Official Languages,Official Languages +532648,Employment and Training,Employment and Training +532648,Immigration,Immigration +530273,International Trade,Commerce international +530275,Transportation,Transportation +542410,Housing,Housing +530520,Defence,Defence +530518,International Relations,International Relations +530520,Security,National Security/Security +538748,Energy,Energy +538748,Mining,Mining +535156,Regional Development,Regional Development +538748,Research and Development,Research and Development +536046,Energy,Energy +536047,Energy,Energy +542409,Energy,Energy +540355,Infrastructure,Infrastructure +539092,Economic Development,Economic Development +539092,International Trade,International Trade +540396,Economic Development,Economic Development +540396,Employment and Training,Employment and Training +540809,International Relations,International Relations +540809,International Trade,International Trade +540396,Security,National Security/Security +540396,Regional Development,Regional Development +540580,Economic Development,Economic Development +540580,Employment and Training,Employment and Training +539180,Industry,Industry +540584,International Relations,International Relations +540580,Security,National Security/Security +540580,Regional Development,Regional Development +540580,International Trade,International Trade +530397,Environment,Environment +534263,Consumer Issues,Consumer Issues +534262,Privacy and Access to Information,Privacy and Access to Information +534263,Economic Development,Economic Development +534263,Financial Institutions,Financial Institutions +537713,Federal-Provincial Relations,Federal-Provincial Relations +544258,Justice and Law Enforcement,Justice and Law Enforcement +535347,Government Procurement,Government Procurement +532393,International Relations,International Relations +535347,Industry,Industry +535368,Regional Development,Regional Development +535382,International Trade,International Trade +535347,Economic Development,Economic Development +535347,Defence,Defence +535347,Foreign Affairs,Foreign Affairs +535347,Security,National Security/Security +540738,Official Languages,Bilinguisme/Langues officielles +540738,Infrastructure,Infrastructure +538129,Economic Development,Economic Development +538129,Energy,Energy +538129,Environment,Environment +538129,Natural Resources,Natural Resources +538129,Transportation,Transportation +532239,Economic Development,Economic Development +542408,Energy,Energy +538142,Energy,Energy +538142,Economic Development,Economic Development +536493,Small Business,Small Business +536492,Regional Development,Regional Development +536492,Industry,Industry +542237,Research and Development,Research and Development +542237,Environment,Environment +542237,Transportation,Transportation +538142,Natural Resources,Natural Resources +538696,Privacy and Access to Information,Privacy and Access to Information +538696,Media,Media +542407,Consumer Issues,Consumer Issues +543496,Economic Development,Economic Development +543076,Financial Institutions,Financial Institutions +542407,Industry,Industry +543079,Privacy and Access to Information,Privacy and Access to Information +543076,Small Business,Small Business +531979,Health,Health +540539,Regional Development,Regional Development +541196,Economic Development,Economic Development +541196,Housing,Housing +537878,Consumer Issues,Consumer Issues +531977,Industry,Industry +537878,Financial Institutions,Financial Institutions +536100,Transportation,Transportation +530552,Government Procurement,Government Procurement +535618,Economic Development,Economic Development +535618,Education,Education +535618,Employment and Training,Employment and Training +535618,Immigration,Immigration +535618,Industry,Industry +535618,Labour,Labour +535618,Small Business,Small Business +531186,Consumer Issues,Consumer Issues +531186,Health,Health +537365,Economic Development,Economic Development +537365,Employment and Training,Employment and Training +537365,Energy,Energy +537365,Environment,Environment +537362,Industry,Industry +542137,Internal Trade,Internal Trade +537365,Research and Development,Research and Development +537365,Transportation,Transportation +540383,Energy,Energy +533639,Environment,Environment +530664,Natural Resources,Natural Resources +536534,Economic Development,Economic Development +530703,International Relations,International Relations +539176,International Relations,International Relations +538644,Defence,Defence +538643,Employment and Training,Employment and Training +540267,Government Procurement,Government Procurement +542691,Economic Development,Economic Development +537400,Infrastructure,Infrastructure +536097,Economic Development,Economic Development +544652,Agriculture,Agriculture +542518,Energy,Energy +544451,Infrastructure,Infrastructure +532549,International Trade,International Trade +532549,Security,National Security/Security +532549,Transportation,Transportation +535024,Environment,Environment +535024,Natural Resources,Natural Resources +542673,Budget,Budget +532706,Regional Development,Regional Development +532707,Economic Development,Economic Development +532706,Transportation,Transportation +536639,Tourism,Tourism +539447,Transportation,Transportation +533785,Agriculture,Agriculture +530810,Taxation and Finance,Taxation and Finance +536170,Economic Development,Economic Development +538547,Environment,Environment +538547,Mining,Mining +541908,Taxation and Finance,Taxation and Finance +530854,Budget,Budget +537112,Constitutional Issues,Constitutional Issues +535918,Health,Health +537112,Justice and Law Enforcement,Justice and Law Enforcement +530874,Small Business,Small Business +530874,Taxation and Finance,Taxation and Finance +530874,Employment and Training,Employment and Training +530897,Environment,Environment +530911,Environment,Environment +530912,Environment,Environment +542436,Research and Development,Research and Development +530940,Infrastructure,Infrastructure +537958,Regional Development,Regional Development +537958,Industry,Industry +537958,Economic Development,Economic Development +537958,Mining,Mining +537958,Environment,Environment +530998,Climate,Climate +534859,Climate,Climate +544725,Economic Development,Economic Development +537985,Research and Development,Research and Development +537029,Budget,Budget +537029,Infrastructure,Infrastructure +531039,International Trade,Commerce international +532968,Economic Development,Economic Development +532968,Energy,Energy +532968,Environment,Environment +532968,Regional Development,Regional Development +533921,Economic Development,Economic Development +533921,Federal-Provincial Relations,Federal-Provincial Relations +533921,Taxation and Finance,Taxation and Finance +531105,Foreign Affairs,Foreign Affairs +536319,Health,Health +531105,Immigration,Immigration +531160,Environment,Environment +537896,Economic Development,Economic Development +537896,Education,Education +537896,Employment and Training,Employment and Training +537896,Health,Health +537896,Immigration,Immigration +537896,Industry,Industry +537896,Labour,Labour +537896,Small Business,Small Business +533644,Industry,Industry +531185,Housing,Housing +531223,Taxation and Finance,Taxation and Finance +531237,Budget,Budget +537637,Budget,Budget +540308,Economic Development,Economic Development +542843,Energy,Energy +544703,Environment,Environment +540308,Forestry,Forestry +544854,Industry,Industry +542843,Natural Resources,Natural Resources +542311,Regional Development,Regional Development +531238,Budget,Budget +531249,Natural Resources,Natural Resources +532144,Economic Development,Développement économique +532144,Official Languages,Bilinguisme/Langues officielles +539855,Climate,Climate +533740,Consumer Issues,Consumer Issues +533740,Economic Development,Economic Development +539855,Environment,Environment +533740,Health,Health +539855,Immigration,Immigration +533740,Infrastructure,Infrastructure +534839,Energy,Energy +539904,Energy,Energy +539896,Energy,Energy +538335,Energy,Energy +534849,Environment,Environment +534839,Environment,Environment +539904,Environment,Environment +539896,Environment,Environment +538335,Environment,Environment +532387,Energy,Energy +537833,Energy,Energy +530202,International Trade,Commerce international +530201,International Trade,Commerce international +542874,International Trade,Commerce international +542699,International Trade,Commerce international +542571,International Trade,Commerce international +542570,International Trade,Commerce international +542569,International Trade,Commerce international +534179,International Trade,Commerce international +532764,International Trade,Commerce international +530533,International Trade,Commerce international +530205,International Trade,Commerce international +530205,Economic Development,Développement économique +530204,Economic Development,Développement économique +542874,Economic Development,Développement économique +542699,Economic Development,Développement économique +542571,Economic Development,Développement économique +542570,Economic Development,Développement économique +542569,Economic Development,Développement économique +534179,Economic Development,Développement économique +532764,Economic Development,Développement économique +530533,Economic Development,Développement économique +534179,Industry,Industrie +532764,Industry,Industrie +542874,Industry,Industrie +530899,Economic Development,Economic Development +530898,Economic Development,Economic Development +537109,Economic Development,Economic Development +537106,Regional Development,Regional Development +530898,Tourism,Tourism +530314,Economic Development,Economic Development +530451,Employment and Training,Employment and Training +530314,Employment and Training,Employment and Training +533161,Employment and Training,Employment and Training +530451,Small Business,Small Business +533479,Environment,Environment +532949,Environment,Environment +543788,Environment,Environment +539734,Environment,Environment +539733,Environment,Environment +536629,Environment,Environment +539734,Infrastructure,Infrastructure +539733,Infrastructure,Infrastructure +536629,Infrastructure,Infrastructure +536628,Infrastructure,Infrastructure +533479,Infrastructure,Infrastructure +532949,Infrastructure,Infrastructure +536628,Research and Development,Research and Development +532949,Research and Development,Research and Development +543788,Research and Development,Research and Development +544405,Taxation and Finance,Taxation and Finance +543877,Taxation and Finance,Taxation and Finance +539571,Taxation and Finance,Taxation and Finance +537391,Taxation and Finance,Taxation and Finance +537389,Taxation and Finance,Taxation and Finance +537387,Taxation and Finance,Taxation and Finance +537384,Taxation and Finance,Taxation and Finance +534994,Taxation and Finance,Taxation and Finance +534993,Taxation and Finance,Taxation and Finance +534992,Taxation and Finance,Taxation and Finance +534991,Taxation and Finance,Taxation and Finance +534990,Taxation and Finance,Taxation and Finance +535240,Health,Health +532023,Health,Health +543510,Health,Health +541345,Health,Health +541344,Health,Health +540317,Health,Health +540316,Health,Health +538366,Health,Health +532024,Industry,Industry +532023,Industry,Industry +543510,Industry,Industry +541345,Industry,Industry +541344,Industry,Industry +540317,Industry,Industry +540316,Industry,Industry +538370,Industry,Industry +538366,Industry,Industry +538360,Industry,Industry +535243,Industry,Industry +535240,Research and Development,Research and Development +532024,Research and Development,Research and Development +541345,Research and Development,Research and Development +541344,Research and Development,Research and Development +540317,Research and Development,Research and Development +540316,Research and Development,Research and Development +539930,Energy,Energy +539930,Environment,Environment +534985,Taxation and Finance,Taxation and Finance +534983,Taxation and Finance,Taxation and Finance +543872,Taxation and Finance,Taxation and Finance +539575,Taxation and Finance,Taxation and Finance +537395,Taxation and Finance,Taxation and Finance +537393,Taxation and Finance,Taxation and Finance +535108,Taxation and Finance,Taxation and Finance +534977,Taxation and Finance,Taxation and Finance +534976,Taxation and Finance,Taxation and Finance +543864,Taxation and Finance,Taxation and Finance +539573,Taxation and Finance,Taxation and Finance +537398,Taxation and Finance,Taxation and Finance +537392,Taxation and Finance,Taxation and Finance +534982,Taxation and Finance,Taxation and Finance +534981,Taxation and Finance,Taxation and Finance +536054,Health,Health +536054,Justice and Law Enforcement,Justice and Law Enforcement +531251,Justice and Law Enforcement,Justice and Law Enforcement +530464,Environment,Environment +530222,Environment,Environment +536560,Environment,Environment +536559,Environment,Environment +536558,Environment,Environment +536556,Environment,Environment +531024,Employment and Training,Employment and Training +530469,Industry,Industry +530469,Media,Media +530469,Municipalities,Municipalities +532287,Budget,Budget +532285,Budget,Budget +532287,Government Procurement,Government Procurement +532285,Government Procurement,Government Procurement +540370,Government Procurement,Government Procurement +536384,Government Procurement,Government Procurement +532287,Research and Development,Research and Development +532285,Research and Development,Research and Development +532287,Regional Development,Regional Development +532285,Regional Development,Regional Development +535895,Transportation,Transportation +532287,International Trade,International Trade +532285,International Trade,International Trade +536384,International Trade,International Trade +539164,Defence,Defence +537441,Defence,Defence +536384,Defence,Defence +535895,Defence,Defence +532287,Defence,Defence +532285,Defence,Defence +532287,Economic Development,Economic Development +532285,Economic Development,Economic Development +540370,Economic Development,Economic Development +539164,Economic Development,Economic Development +537441,Economic Development,Economic Development +536384,Economic Development,Economic Development +536384,Industry,Industry +532285,Industry,Industry +540370,Industry,Industry +531778,Industry,Industry +531774,Industry,Industry +537708,Industry,Industry +531778,Government Procurement,Government Procurement +531774,Government Procurement,Government Procurement +540508,Government Procurement,Government Procurement +537708,Government Procurement,Government Procurement +531778,Transportation,Transportation +531774,Transportation,Transportation +537708,Transportation,Transportation +531778,International Trade,International Trade +531774,International Trade,International Trade +540508,International Trade,International Trade +531778,Defence,Defence +531774,Defence,Defence +540508,Defence,Defence +537708,Defence,Defence +533049,Defence,Defence +531781,Research and Development,Research and Development +531774,Research and Development,Research and Development +531778,Regional Development,Regional Development +531774,Regional Development,Regional Development +537708,Regional Development,Regional Development +531781,Economic Development,Economic Development +531774,Economic Development,Economic Development +532647,Official Languages,Official Languages +532645,Official Languages,Official Languages +539654,Official Languages,Official Languages +532649,Official Languages,Official Languages +532647,Employment and Training,Employment and Training +532645,Employment and Training,Employment and Training +539654,Employment and Training,Employment and Training +532649,Employment and Training,Employment and Training +532647,Immigration,Immigration +532645,Immigration,Immigration +539654,Immigration,Immigration +532649,Immigration,Immigration +540355,Housing,Housing +530519,Defence,Defence +530518,Defence,Defence +538560,Defence,Defence +530519,Security,National Security/Security +530518,Security,National Security/Security +535156,Energy,Energy +535156,Mining,Mining +540512,Energy,Energy +540397,International Relations,International Relations +540396,International Relations,International Relations +540397,International Trade,International Trade +540396,International Trade,International Trade +538950,Economic Development,Economic Development +538950,Industry,Industry +540580,International Relations,International Relations +538950,International Relations,International Relations +541149,International Relations,International Relations +539180,International Trade,International Trade +538950,International Trade,International Trade +541149,International Trade,International Trade +540584,International Trade,International Trade +530389,Environment,Environment +534262,Consumer Issues,Consumer Issues +534260,Consumer Issues,Consumer Issues +534262,Financial Institutions,Financial Institutions +534260,Financial Institutions,Financial Institutions +537713,Justice and Law Enforcement,Justice and Law Enforcement +535317,Government Procurement,Government Procurement +532393,Government Procurement,Government Procurement +540468,Government Procurement,Government Procurement +535382,Government Procurement,Government Procurement +535368,Government Procurement,Government Procurement +535317,Industry,Industry +532393,Industry,Industry +540468,Industry,Industry +535368,Industry,Industry +535317,International Trade,International Trade +535317,Economic Development,Economic Development +532393,Economic Development,Economic Development +535382,Economic Development,Economic Development +535368,Economic Development,Economic Development +535317,Defence,Defence +532393,Defence,Defence +540468,Defence,Defence +535382,Defence,Defence +535368,Defence,Defence +535317,Foreign Affairs,Foreign Affairs +532393,Foreign Affairs,Foreign Affairs +540468,Foreign Affairs,Foreign Affairs +535382,Foreign Affairs,Foreign Affairs +535368,Foreign Affairs,Foreign Affairs +535317,Security,National Security/Security +532393,Security,National Security/Security +540468,Security,National Security/Security +535382,Security,National Security/Security +540561,Energy,Energy +536490,Economic Development,Economic Development +536490,Industry,Industry +536493,Industry,Industry +536493,Research and Development,Research and Development +536492,Research and Development,Research and Development +538142,Environment,Environment +538142,Transportation,Transportation +536490,Transportation,Transportation +536756,Privacy and Access to Information,Privacy and Access to Information +536756,Media,Media +532579,Media,Media +539591,Economic Development,Economic Development +539589,Economic Development,Economic Development +543501,Economic Development,Economic Development +543075,Financial Institutions,Financial Institutions +542407,Financial Institutions,Financial Institutions +543501,Financial Institutions,Financial Institutions +543499,Financial Institutions,Financial Institutions +543496,Financial Institutions,Financial Institutions +543082,Financial Institutions,Financial Institutions +543079,Financial Institutions,Financial Institutions +543077,Financial Institutions,Financial Institutions +539591,Industry,Industry +543077,Privacy and Access to Information,Privacy and Access to Information +542407,Privacy and Access to Information,Privacy and Access to Information +543496,Privacy and Access to Information,Privacy and Access to Information +543082,Privacy and Access to Information,Privacy and Access to Information +543075,Small Business,Small Business +542407,Small Business,Small Business +539591,Small Business,Small Business +539589,Small Business,Small Business +543501,Small Business,Small Business +543082,Small Business,Small Business +543079,Small Business,Small Business +543077,Small Business,Small Business +541196,Regional Development,Regional Development +540539,Economic Development,Economic Development +540539,Housing,Housing +536082,Housing,Housing +537362,Economic Development,Economic Development +535087,Economic Development,Economic Development +542137,Economic Development,Economic Development +539219,Economic Development,Economic Development +539212,Economic Development,Economic Development +538710,Economic Development,Economic Development +537374,Economic Development,Economic Development +537373,Economic Development,Economic Development +537371,Economic Development,Economic Development +537369,Economic Development,Economic Development +537368,Economic Development,Economic Development +537362,Employment and Training,Employment and Training +535087,Employment and Training,Employment and Training +542137,Employment and Training,Employment and Training +539219,Employment and Training,Employment and Training +539212,Employment and Training,Employment and Training +538710,Employment and Training,Employment and Training +537374,Employment and Training,Employment and Training +537373,Employment and Training,Employment and Training +537371,Employment and Training,Employment and Training +537369,Employment and Training,Employment and Training +537368,Employment and Training,Employment and Training +537362,Energy,Energy +535087,Energy,Energy +542137,Energy,Energy +539219,Energy,Energy +539212,Energy,Energy +538710,Energy,Energy +537374,Energy,Energy +537373,Energy,Energy +537371,Energy,Energy +537369,Energy,Energy +537368,Energy,Energy +537362,Environment,Environment +535087,Environment,Environment +542137,Environment,Environment +539219,Environment,Environment +539212,Environment,Environment +538710,Environment,Environment +537374,Environment,Environment +537373,Environment,Environment +537371,Environment,Environment +537369,Environment,Environment +537368,Environment,Environment +535087,Industry,Industry +542137,Industry,Industry +539219,Industry,Industry +539212,Industry,Industry +538710,Industry,Industry +537374,Industry,Industry +537373,Industry,Industry +537371,Industry,Industry +537369,Industry,Industry +537368,Industry,Industry +537365,Industry,Industry +539219,Internal Trade,Internal Trade +539212,Internal Trade,Internal Trade +538710,Internal Trade,Internal Trade +537374,Internal Trade,Internal Trade +537373,Internal Trade,Internal Trade +537371,Internal Trade,Internal Trade +537369,Internal Trade,Internal Trade +537368,Internal Trade,Internal Trade +537365,Internal Trade,Internal Trade +537362,Internal Trade,Internal Trade +535087,Internal Trade,Internal Trade +537362,Research and Development,Research and Development +535087,Research and Development,Research and Development +542137,Research and Development,Research and Development +539219,Research and Development,Research and Development +539212,Research and Development,Research and Development +538710,Research and Development,Research and Development +537374,Research and Development,Research and Development +537373,Research and Development,Research and Development +537371,Research and Development,Research and Development +537369,Research and Development,Research and Development +537368,Research and Development,Research and Development +537362,Transportation,Transportation +535087,Transportation,Transportation +542137,Transportation,Transportation +539219,Transportation,Transportation +539212,Transportation,Transportation +538710,Transportation,Transportation +537374,Transportation,Transportation +537373,Transportation,Transportation +537371,Transportation,Transportation +537369,Transportation,Transportation +537368,Transportation,Transportation +533639,Energy,Energy +534855,Economic Development,Economic Development +534846,Economic Development,Economic Development +538643,Defence,Defence +538642,Employment and Training,Employment and Training +535687,Employment and Training,Employment and Training +541890,Employment and Training,Employment and Training +540267,Employment and Training,Employment and Training +538644,Employment and Training,Employment and Training +538643,Government Procurement,Government Procurement +538642,Government Procurement,Government Procurement +540691,Economic Development,Economic Development +536685,Infrastructure,Infrastructure +533206,Infrastructure,Infrastructure +539235,Infrastructure,Infrastructure +539161,Infrastructure,Infrastructure +539077,Infrastructure,Infrastructure +538906,Infrastructure,Infrastructure +538849,Infrastructure,Infrastructure +538801,Infrastructure,Infrastructure +538638,Infrastructure,Infrastructure +538618,Infrastructure,Infrastructure +538031,Infrastructure,Infrastructure +537693,Infrastructure,Infrastructure +532476,Economic Development,Economic Development +542355,Agriculture,Agriculture +542341,Agriculture,Agriculture +542329,Agriculture,Agriculture +542130,Agriculture,Agriculture +541778,Agriculture,Agriculture +540811,Agriculture,Agriculture +540769,Agriculture,Agriculture +540327,Agriculture,Agriculture +540324,Agriculture,Agriculture +540323,Agriculture,Agriculture +540322,Agriculture,Agriculture +535999,Agriculture,Agriculture +533381,Agriculture,Agriculture +536224,Energy,Energy +532686,Energy,Energy +544451,Energy,Energy +543380,Energy,Energy +543380,Infrastructure,Infrastructure +542518,Infrastructure,Infrastructure +532548,International Trade,International Trade +532548,Security,National Security/Security +532548,Transportation,Transportation +539163,Natural Resources,Natural Resources +540965,Budget,Budget +530745,Budget,Budget +532705,Regional Development,Regional Development +532703,Regional Development,Regional Development +536639,Regional Development,Regional Development +532707,Regional Development,Regional Development +532706,Economic Development,Economic Development +532705,Economic Development,Economic Development +532705,Transportation,Transportation +532703,Transportation,Transportation +536639,Transportation,Transportation +532707,Transportation,Transportation +532703,Tourism,Tourism +536231,Transportation,Transportation +533783,Agriculture,Agriculture +533781,Agriculture,Agriculture +533797,Agriculture,Agriculture +533795,Agriculture,Agriculture +533794,Agriculture,Agriculture +533792,Agriculture,Agriculture +533791,Agriculture,Agriculture +533789,Agriculture,Agriculture +533786,Agriculture,Agriculture +536170,Environment,Environment +537696,Taxation and Finance,Taxation and Finance +535668,Taxation and Finance,Taxation and Finance +541912,Taxation and Finance,Taxation and Finance +535918,Constitutional Issues,Constitutional Issues +535914,Constitutional Issues,Constitutional Issues +535914,Health,Health +541607,Health,Health +541605,Health,Health +539786,Health,Health +539785,Health,Health +537112,Health,Health +535918,Justice and Law Enforcement,Justice and Law Enforcement +535914,Justice and Law Enforcement,Justice and Law Enforcement +541607,Justice and Law Enforcement,Justice and Law Enforcement +541605,Justice and Law Enforcement,Justice and Law Enforcement +539786,Justice and Law Enforcement,Justice and Law Enforcement +539785,Justice and Law Enforcement,Justice and Law Enforcement +530873,Small Business,Small Business +530871,Small Business,Small Business +530891,Small Business,Small Business +530890,Small Business,Small Business +530889,Small Business,Small Business +530888,Small Business,Small Business +530887,Small Business,Small Business +530885,Small Business,Small Business +530884,Small Business,Small Business +530883,Small Business,Small Business +530882,Small Business,Small Business +530881,Small Business,Small Business +530880,Small Business,Small Business +530879,Small Business,Small Business +530877,Small Business,Small Business +530875,Small Business,Small Business +530873,Taxation and Finance,Taxation and Finance +530871,Taxation and Finance,Taxation and Finance +530891,Taxation and Finance,Taxation and Finance +530890,Taxation and Finance,Taxation and Finance +530889,Taxation and Finance,Taxation and Finance +530887,Taxation and Finance,Taxation and Finance +530885,Taxation and Finance,Taxation and Finance +530884,Taxation and Finance,Taxation and Finance +530883,Taxation and Finance,Taxation and Finance +530882,Taxation and Finance,Taxation and Finance +530881,Taxation and Finance,Taxation and Finance +530880,Taxation and Finance,Taxation and Finance +530879,Taxation and Finance,Taxation and Finance +530877,Taxation and Finance,Taxation and Finance +530873,Employment and Training,Employment and Training +530871,Employment and Training,Employment and Training +530891,Employment and Training,Employment and Training +530890,Employment and Training,Employment and Training +530889,Employment and Training,Employment and Training +530888,Employment and Training,Employment and Training +530887,Employment and Training,Employment and Training +530885,Employment and Training,Employment and Training +530884,Employment and Training,Employment and Training +530883,Employment and Training,Employment and Training +530882,Employment and Training,Employment and Training +530881,Employment and Training,Employment and Training +530880,Employment and Training,Employment and Training +530879,Employment and Training,Employment and Training +530877,Employment and Training,Employment and Training +542435,Research and Development,Research and Development +542434,Research and Development,Research and Development +542437,Research and Development,Research and Development +530939,Infrastructure,Infrastructure +530937,Infrastructure,Infrastructure +530942,Infrastructure,Infrastructure +530941,Infrastructure,Infrastructure +537957,Regional Development,Regional Development +537957,Industry,Industry +537957,Economic Development,Economic Development +537957,Mining,Mining +537957,Environment,Environment +534851,Climate,Climate +534816,Climate,Climate +544131,Climate,Climate +541572,Climate,Climate +539593,Climate,Climate +535526,Climate,Climate +534904,Climate,Climate +534865,Climate,Climate +534864,Climate,Climate +534862,Climate,Climate +537979,Economic Development,Economic Development +537979,Research and Development,Research and Development +532966,Economic Development,Economic Development +532966,Energy,Energy +532966,Regional Development,Regional Development +531158,Environment,Environment +531157,Environment,Environment +540776,Environment,Environment +537202,Environment,Environment +537193,Environment,Environment +537192,Environment,Environment +537186,Environment,Environment +532114,Environment,Environment +531163,Environment,Environment +531161,Environment,Environment +537634,Budget,Budget +537630,Budget,Budget +543410,Budget,Budget +537252,Economic Development,Economic Development +536145,Economic Development,Economic Development +540308,Energy,Energy +536145,Energy,Energy +543750,Energy,Energy +543750,Environment,Environment +544772,Industry,Industry +544750,Industry,Industry +544704,Industry,Industry +544703,Industry,Industry +540308,Industry,Industry +537251,Industry,Industry +536188,Industry,Industry +536145,Industry,Industry +540308,Natural Resources,Natural Resources +536145,Natural Resources,Natural Resources +536188,Regional Development,Regional Development +531253,Economic Development,Développement économique +531253,Official Languages,Bilinguisme/Langues officielles +539851,Climate,Climate +533730,Consumer Issues,Consumer Issues +533727,Consumer Issues,Consumer Issues +539855,Consumer Issues,Consumer Issues +539851,Consumer Issues,Consumer Issues +533730,Economic Development,Economic Development +533727,Economic Development,Economic Development +539855,Economic Development,Economic Development +539851,Economic Development,Economic Development +539851,Environment,Environment +533730,Health,Health +533727,Health,Health +539855,Health,Health +539851,Health,Health +539851,Immigration,Immigration +533730,Infrastructure,Infrastructure +533727,Infrastructure,Infrastructure +539855,Infrastructure,Infrastructure +539851,Infrastructure,Infrastructure +539851,Internal Trade,Internal Trade +533730,International Relations,International Relations +533727,International Relations,International Relations +539855,International Relations,International Relations +539851,International Relations,International Relations +533730,Labour,Labour +533727,Labour,Labour +539855,Labour,Labour +539851,Labour,Labour +533740,Security,National Security/Security +533730,Security,National Security/Security +539855,Security,National Security/Security +539851,Taxation and Finance,Taxation and Finance +533730,Tourism,Tourism +533727,Tourism,Tourism +539855,Tourism,Tourism +539851,Transportation,Transportation +533727,Transportation,Transportation +538118,Infrastructure,Infrastructure +538117,Infrastructure,Infrastructure +538118,Budget,Budget +538117,Budget,Budget +534087,International Trade,International Trade +534086,International Trade,International Trade +540017,International Trade,International Trade +538453,International Trade,International Trade +536059,Climate,Climate +536058,Climate,Climate +538829,Climate,Climate +536062,Climate,Climate +536061,Climate,Climate +536060,Energy,Energy +536059,Energy,Energy +538829,Energy,Energy +536062,Energy,Energy +536058,Environment,Environment +538829,Environment,Environment +536062,Environment,Environment +536061,Environment,Environment +536060,Environment,Environment +536059,Forestry,Forestry +536058,Forestry,Forestry +538829,Forestry,Forestry +536062,Forestry,Forestry +536061,Forestry,Forestry +536059,Industry,Industry +536058,Industry,Industry +536062,Industry,Industry +536061,Industry,Industry +532792,Energy,Energy +541420,Climate,Climate +541420,Environment,Environment +531597,Foreign Affairs,Foreign Affairs +531589,Foreign Affairs,Foreign Affairs +534740,Foreign Affairs,Foreign Affairs +531678,Climate,Climate +536782,Economic Development,Economic Development +536782,Environment,Environment +536781,Environment,Environment +536781,Infrastructure,Infrastructure +531678,Infrastructure,Infrastructure +536783,Infrastructure,Infrastructure +536781,Natural Resources,Natural Resources +531678,Natural Resources,Natural Resources +536783,Natural Resources,Natural Resources +533751,Budget,Budget +533749,Budget,Budget +537356,Budget,Budget +534364,Budget,Budget +533755,Budget,Budget +533753,Budget,Budget +533749,Economic Development,Economic Development +537356,Economic Development,Economic Development +534364,Economic Development,Economic Development +533755,Economic Development,Economic Development +533753,Economic Development,Economic Development +533752,Economic Development,Economic Development +533751,Government Procurement,Government Procurement +533749,Government Procurement,Government Procurement +537356,Government Procurement,Government Procurement +534364,Government Procurement,Government Procurement +533755,Government Procurement,Government Procurement +533753,Government Procurement,Government Procurement +534364,Industry,Industry +533755,Industry,Industry +533753,Industry,Industry +533752,Industry,Industry +533751,Industry,Industry +533749,Industry,Industry +533751,Intellectual Property,Intellectual Property +533749,Intellectual Property,Intellectual Property +537356,Intellectual Property,Intellectual Property +534364,Intellectual Property,Intellectual Property +533755,Intellectual Property,Intellectual Property +533753,Intellectual Property,Intellectual Property +533751,Internal Trade,Internal Trade +533749,Internal Trade,Internal Trade +537356,Internal Trade,Internal Trade +534364,Internal Trade,Internal Trade +533755,Internal Trade,Internal Trade +533753,Internal Trade,Internal Trade +533751,International Trade,International Trade +533749,International Trade,International Trade +537356,International Trade,International Trade +534364,International Trade,International Trade +533755,International Trade,International Trade +533753,International Trade,International Trade +533751,Justice and Law Enforcement,Justice and Law Enforcement +533749,Justice and Law Enforcement,Justice and Law Enforcement +534364,Justice and Law Enforcement,Justice and Law Enforcement +533755,Justice and Law Enforcement,Justice and Law Enforcement +533753,Justice and Law Enforcement,Justice and Law Enforcement +533751,Privacy and Access to Information,Privacy and Access to Information +533749,Privacy and Access to Information,Privacy and Access to Information +534364,Privacy and Access to Information,Privacy and Access to Information +533755,Privacy and Access to Information,Privacy and Access to Information +533753,Privacy and Access to Information,Privacy and Access to Information +533751,Small Business,Small Business +533749,Small Business,Small Business +534364,Small Business,Small Business +533755,Small Business,Small Business +533753,Small Business,Small Business +533751,Taxation and Finance,Taxation and Finance +533749,Taxation and Finance,Taxation and Finance +534364,Taxation and Finance,Taxation and Finance +533755,Taxation and Finance,Taxation and Finance +533753,Taxation and Finance,Taxation and Finance +533751,Tourism,Tourism +533749,Tourism,Tourism +534364,Tourism,Tourism +533755,Tourism,Tourism +533753,Tourism,Tourism +534264,Justice and Law Enforcement,Justice and Law Enforcement +534264,Health,Health +540086,Energy,Energy +537213,Energy,Energy +544025,Energy,Energy +544020,Energy,Energy +543817,Energy,Energy +543531,Energy,Energy +540082,Health,Health +537213,Health,Health +540087,International Trade,International Trade +540087,Transportation,Transportation +537213,Transportation,Transportation +540073,Economic Development,Economic Development +534437,Environment,Environment +534437,Mining,Mining +534436,Mining,Mining +540075,Mining,Mining +534437,Natural Resources,Natural Resources +534436,Natural Resources,Natural Resources +534858,International Trade,International Trade +534826,International Trade,International Trade +535742,Health,Health +532545,Economic Development,Economic Development +532544,Economic Development,Economic Development +532544,Research and Development,Research and Development +532544,Climate,Climate +532544,Government Procurement,Government Procurement +533286,Taxation and Finance,Taxation and Finance +533284,Taxation and Finance,Taxation and Finance +533484,Economic Development,Economic Development +533483,Industry,Industry +533246,Industry,Industry +545073,Industry,Industry +540812,Energy,Energy +537304,Energy,Energy +544762,Energy,Energy +544702,Energy,Energy +544701,Energy,Energy +542771,Energy,Energy +540812,Infrastructure,Infrastructure +532671,Agriculture,Agriculture +532670,Agriculture,Agriculture +532675,Agriculture,Agriculture +532674,Agriculture,Agriculture +532673,Agriculture,Agriculture +532671,International Trade,International Trade +532670,International Trade,International Trade +532675,International Trade,International Trade +532674,International Trade,International Trade +532673,International Trade,International Trade +538102,Foreign Affairs,Foreign Affairs +538100,Intellectual Property,Intellectual Property +535714,Intellectual Property,Intellectual Property +538103,Intellectual Property,Intellectual Property +538100,International Trade,International Trade +535714,International Trade,International Trade +538103,International Trade,International Trade +538923,Health,Health +538044,Energy,Energy +538041,Energy,Energy +538063,Energy,Energy +538058,Energy,Energy +538053,Energy,Energy +533439,Immigration,Immigration +534987,Taxation and Finance,Taxation and Finance +540284,Energy,Energy +540283,Energy,Energy +543737,Energy,Energy +540284,Infrastructure,Infrastructure +540283,Infrastructure,Infrastructure +543737,Infrastructure,Infrastructure +540284,Environment,Environment +540283,Environment,Environment +543737,Environment,Environment +540284,Economic Development,Economic Development +540283,Economic Development,Economic Development +543737,Economic Development,Economic Development +533881,Employment and Training,Employment and Training +532738,International Trade,Commerce international +532738,Education,Éducation +544541,Constitutional Issues,Constitutional Issues +544540,Justice and Law Enforcement,Justice and Law Enforcement +542179,Justice and Law Enforcement,Justice and Law Enforcement +544542,Justice and Law Enforcement,Justice and Law Enforcement +534394,Environment,Environment +534391,Environment,Environment +534399,Environment,Environment +534396,Environment,Environment +534394,Infrastructure,Infrastructure +534391,Infrastructure,Infrastructure +534399,Infrastructure,Infrastructure +534396,Infrastructure,Infrastructure +534394,International Trade,International Trade +534391,International Trade,International Trade +534399,International Trade,International Trade +534396,International Trade,International Trade +534394,Transportation,Transportation +534391,Transportation,Transportation +534399,Transportation,Transportation +534396,Transportation,Transportation +536984,Regional Development,Regional Development +536984,Sports,Sports +536984,Tourism,Tourism +540974,Infrastructure,Infrastructure +539916,Energy,Energy +537262,Energy,Energy +540976,Energy,Energy +540974,Energy,Energy +540796,Energy,Energy +540778,Energy,Energy +540777,Energy,Energy +540761,Energy,Energy +540701,Energy,Energy +540639,Energy,Energy +540637,Energy,Energy +540634,Energy,Energy +540559,Energy,Energy +540557,Energy,Energy +540556,Energy,Energy +540543,Energy,Energy +540529,Energy,Energy +540527,Energy,Energy +540526,Energy,Energy +540525,Energy,Energy +540498,Energy,Energy +540496,Energy,Energy +540495,Energy,Energy +540494,Energy,Energy +540478,Energy,Energy +540477,Energy,Energy +540476,Energy,Energy +540466,Energy,Energy +540465,Energy,Energy +540422,Energy,Energy +540421,Energy,Energy +540399,Energy,Energy +540380,Energy,Energy +540364,Energy,Energy +540357,Energy,Energy +540356,Energy,Energy +540335,Energy,Energy +540334,Energy,Energy +540333,Energy,Energy +540332,Energy,Energy +540329,Energy,Energy +540286,Energy,Energy +540285,Energy,Energy +540105,Energy,Energy +540380,Environment,Environment +540364,Environment,Environment +540796,Environment,Environment +540778,Environment,Environment +540777,Environment,Environment +540701,Environment,Environment +540639,Environment,Environment +540637,Environment,Environment +540634,Environment,Environment +540559,Environment,Environment +540557,Environment,Environment +540556,Environment,Environment +540543,Environment,Environment +540529,Environment,Environment +540527,Environment,Environment +540526,Environment,Environment +540525,Environment,Environment +540498,Environment,Environment +540496,Environment,Environment +540495,Environment,Environment +540494,Environment,Environment +540422,Environment,Environment +540421,Environment,Environment +540333,Budget,Budget +540332,Budget,Budget +542316,Budget,Budget +542315,Budget,Budget +542194,Budget,Budget +540796,Budget,Budget +540761,Budget,Budget +539855,Internal Trade,Internal Trade +533740,International Relations,International Relations +533740,Labour,Labour +539851,Security,National Security/Security +539855,Taxation and Finance,Taxation and Finance +539851,Tourism,Tourism +539855,Transportation,Transportation +533872,Consumer Issues,Consumer Issues +533872,Health,Health +533872,Industry,Industry +533872,Tourism,Tourism +539428,Budget,Budget +539428,Child Services,Child Services +539428,Education,Education +539469,Infrastructure,Infrastructure +539469,Budget,Budget +534088,International Trade,International Trade +534973,Economic Development,Economic Development +531947,Economic Development,Economic Development +531947,Employment and Training,Employment and Training +531947,Regional Development,Regional Development +536060,Climate,Climate +536061,Energy,Energy +536059,Environment,Environment +536060,Forestry,Forestry +536060,Industry,Industry +536061,International Relations,International Relations +536058,Regional Development,Regional Development +536059,Research and Development,Research and Development +531403,Municipalities,Municipalities +533024,Labour,Labour +536110,Energy,Energy +542700,Climate,Climate +542700,Environment,Environment +531584,Foreign Affairs,Foreign Affairs +534738,Foreign Affairs,Foreign Affairs +531609,Tourism,Tourism +531618,Taxation and Finance,Taxation and Finance +543409,Climate,Climate +536783,Economic Development,Economic Development +543409,Environment,Environment +543409,Government Procurement,Government Procurement +536782,Infrastructure,Infrastructure +543409,Municipalities,Municipalities +536782,Natural Resources,Natural Resources +533752,Budget,Budget +533751,Economic Development,Economic Development +533752,Government Procurement,Government Procurement +537356,Industry,Industry +533752,Intellectual Property,Intellectual Property +533752,Internal Trade,Internal Trade +533752,International Trade,International Trade +533752,Justice and Law Enforcement,Justice and Law Enforcement +533752,Privacy and Access to Information,Privacy and Access to Information +533752,Small Business,Small Business +533752,Taxation and Finance,Taxation and Finance +533752,Tourism,Tourism +531732,Foreign Affairs,Foreign Affairs +531732,Taxation and Finance,Taxation and Finance +531732,Transportation,Transportation +531763,Natural Resources,Natural Resources +531863,Climate,Climate +531884,Agriculture,Agriculture +531973,Federal-Provincial Relations,Federal-Provincial Relations +531973,Municipalities,Municipalities +531973,Regional Development,Regional Development +532013,Economic Development,Economic Development +532127,Transportation,Transportation +533372,Transportation,Transportation +532167,Research and Development,Research and Development +532195,Privacy and Access to Information,Privacy and Access to Information +534453,Official Languages,Bilingualism/Official Languages +534453,Immigration,Immigration +534453,Municipalities,Municipalities +537692,Health,Health +534266,Justice and Law Enforcement,Justice and Law Enforcement +534266,Health,Health +532262,International Trade,International Trade +532262,Small Business,Small Business +532267,Environment,Environment +532270,Environment,Environment +532272,Climate,Climate +532274,Climate,Climate +532277,Climate,Climate +532279,Climate,Climate +532281,Climate,Climate +534623,Official Languages,Bilingualism/Official Languages +534623,Municipalities,Municipalities +534623,Immigration,Immigration +532321,Budget,Budget +537213,Agriculture,Agriculture +540092,Energy,Energy +540092,Health,Health +540082,Immigration,Immigration +537213,Infrastructure,Infrastructure +543537,International Trade,International Trade +543537,Transportation,Transportation +534436,Economic Development,Economic Development +534440,Environment,Environment +540073,Mining,Mining +534440,Natural Resources,Natural Resources +534437,Research and Development,Research and Development +536085,Economic Development,Economic Development +532459,Infrastructure,Infrastructure +542066,Economic Development,Economic Development +542066,Energy,Energy +542066,Transportation,Transportation +532477,Employment and Training,Employment and Training +532482,Environment,Environment +533033,Taxation and Finance,Taxation and Finance +539982,International Trade,International Trade +539976,International Trade,International Trade +535753,Health,Health +539915,Agriculture,Agriculture +539915,Employment and Training,Employment and Training +539915,Immigration,Immigration +539915,Internal Trade,Internal Trade +539915,International Trade,International Trade +539915,Labour,Labour +539915,Transportation,Transportation +533248,Energy,Energy +532983,Education,Education +532983,Employment and Training,Employment and Training +532983,Budget,Budget +532983,Labour,Labour +532540,Environment,Environment +533146,Research and Development,Research and Development +540548,Economic Development,Economic Development +532545,Research and Development,Research and Development +540548,Industry,Industry +532545,Climate,Climate +532545,Government Procurement,Government Procurement +540548,Regional Development,Regional Development +532543,International Trade,International Trade +532554,Taxation and Finance,Taxation and Finance +533450,Taxation and Finance,Taxation and Finance +545073,Climate,Climate +540538,Economic Development,Economic Development +540538,Industry,Industry +540538,Research and Development,Research and Development +533174,Taxation and Finance,Taxation and Finance +536779,Government Procurement,Government Procurement +541071,Energy,Energy +542771,Infrastructure,Infrastructure +532672,Agriculture,Agriculture +532672,International Trade,International Trade +538103,Foreign Affairs,Foreign Affairs +538102,Intellectual Property,Intellectual Property +538102,International Trade,International Trade +534062,Government Procurement,Government Procurement +539132,Health,Health +532689,Budget,Budget +538085,Economic Development,Economic Development +538085,Employment and Training,Employment and Training +538085,Labour,Labour +538045,Energy,Energy +537123,Immigration,Immigration +534988,Taxation and Finance,Taxation and Finance +543737,Employment and Training,Employment and Training +541574,Energy,Energy +541574,Infrastructure,Infrastructure +541574,Environment,Environment +541574,Economic Development,Economic Development +536391,Employment and Training,Employment and Training +540710,Mining,Mining +532739,International Trade,Commerce international +532739,Education,Éducation +544542,Constitutional Issues,Constitutional Issues +544541,Justice and Law Enforcement,Justice and Law Enforcement +534395,Environment,Environment +534395,Infrastructure,Infrastructure +534395,International Trade,International Trade +534395,Transportation,Transportation +537007,Regional Development,Regional Development +537007,Sports,Sports +537007,Tourism,Tourism +540976,Infrastructure,Infrastructure +539916,Economic Development,Economic Development +540104,Energy,Energy +540399,Environment,Environment +540761,Industry,Industry +540334,Budget,Budget +540476,Climate,Climate +532824,Energy,Energy +532826,Climate,Climate +532873,Labour,Labour +532874,Labour,Labour +533042,Economic Development,Economic Development +533042,Natural Resources,Natural Resources +533042,Taxation and Finance,Taxation and Finance +533297,Transportation,Transportation +541004,Budget,Budget +537899,Research and Development,Research and Development +541009,Animal Welfare,Animal Welfare +540912,Climate,Climate +540912,Energy,Energy +540912,Taxation and Finance,Taxation and Finance +542131,Budget,Budget +542131,Health,Health +532955,Labour,Labour +539055,Industry,Industry +532957,Labour,Labour +537295,Immigration,Immigration +537296,Immigration,Immigration +542314,Consumer Issues,Consumer Issues +542314,Health,Health +532991,Economic Development,Economic Development +532991,Municipalities,Municipalities +542500,Employment and Training,Employment and Training +542500,Economic Development,Economic Development +540621,Education,Education +542500,Regional Development,Regional Development +544510,Climate,Climate +544510,Economic Development,Economic Development +544425,Energy,Energy +544425,Environment,Environment +540859,Employment and Training,Employment and Training +540859,Labour,Labour +533024,Employment and Training,Employment and Training +545000,Energy,Energy +542226,Taxation and Finance,Taxation and Finance +539057,Health,Health +533116,Infrastructure,Infrastructure +543294,Employment and Training,Employment and Training +539940,Budget,Budget +540385,Transportation,Transportation +537355,Justice and Law Enforcement,Justice and Law Enforcement +533134,Housing,Housing +533134,Budget,Budget +542499,Regional Development,Regional Development +542494,Education,Education +542499,Employment and Training,Employment and Training +536583,Economic Development,Economic Development +537818,Housing,Housing +537814,Infrastructure,Infrastructure +537818,Municipalities,Municipalities +543093,Employment and Training,Employment and Training +543088,Energy,Energy +543087,Natural Resources,Natural Resources +543088,Taxation and Finance,Taxation and Finance +533190,Internal Trade,Internal Trade +533190,International Trade,International Trade +533190,Labour,Labour +533190,Employment and Training,Employment and Training +533190,Transportation,Transportation +533478,Research and Development,Research and Development +533160,Natural Resources,Natural Resources +542667,Employment and Training,Employment and Training +541014,Industry,Industry +542902,Transportation,Transportation +536731,Energy,Energy +542694,Infrastructure,Infrastructure +540587,Budget,Budget +540585,Health,Health +542113,Budget,Budget +542113,Climate,Climate +542113,Economic Development,Economic Development +542113,Energy,Energy +542113,Environment,Environment +542113,Industry,Industry +542112,Infrastructure,Infrastructure +542113,International Trade,International Trade +539076,Government Procurement,Government Procurement +535996,Environment,Environment +533363,Health,Health +533363,Justice and Law Enforcement,Justice and Law Enforcement +533411,Child Services,Child Services +542741,Child Services,Child Services +537697,Economic Development,Economic Development +536005,Transportation,Transports +537709,Defence,Défense +542197,Environment,Environment +542197,Industry,Industry +540429,Environment,Environment +540429,Energy,Energy +535823,Economic Development,Economic Development +540429,Climate,Climate +534489,Economic Development,Economic Development +534489,Research and Development,Research and Development +540940,Energy,Energy +536107,Environment,Environment +540940,Infrastructure,Infrastructure +533476,Immigration,Immigration +533680,Economic Development,Economic Development +533680,Municipalities,Municipalities +533680,Housing,Housing +538708,Industry,Industry +538708,Media,Media +540429,Housing,Housing +533481,Climate,Climate +533486,Climate,Climate +533486,Industry,Industry +533488,Taxation and Finance,Taxation and Finance +533489,Taxation and Finance,Taxation and Finance +540298,Economic Development,Economic Development +540298,Energy,Energy +533499,Privacy and Access to Information,Privacy and Access to Information +533505,Climate,Climate +533508,Taxation and Finance,Taxation and Finance +533513,Climate,Climate +533532,Consumer Issues,Consumer Issues +533532,Media,Media +533533,Media,Media +533573,Immigration,Immigration +533588,Budget,Budget +533631,Tourism,Tourism +533632,Tourism,Tourism +536126,Economic Development,Economic Development +540709,Employment and Training,Employment and Training +542450,Immigration,Immigration +538078,Employment and Training,Employment and Training +533640,Taxation and Finance,Taxation and Finance +533641,Taxation and Finance,Taxation and Finance +533642,Taxation and Finance,Taxation and Finance +533647,Infrastructure,Infrastructure +533688,Health,Health +533668,Employment and Training,Employment and Training +533669,Employment and Training,Employment and Training +535890,Economic Development,Economic Development +535140,Health,Health +540575,Agriculture,Agriculture +539032,Energy,Energy +533686,Economic Development,Economic Development +541399,Taxation and Finance,Taxation and Finance +543206,Agriculture,Agriculture +539491,Animal Welfare,Animal Welfare +537352,Defence,Defence +537352,Economic Development,Economic Development +537352,Government Procurement,Government Procurement +537352,Industry,Industry +537352,Security,National Security/Security +537352,Regional Development,Regional Development +537352,Transportation,Transportation +533730,Industry,Industry +537601,Government Procurement,Government Procurement +537601,Health,Health +541101,Industry,Industry +543112,Natural Resources,Natural Resources +535862,Education,Education +535862,Employment and Training,Employment and Training +535858,Health,Health +540787,Taxation and Finance,Taxation and Finance +534620,Education,Education +534537,Employment and Training,Employment and Training +533796,Housing,Housing +533818,Transportation,Transportation +539773,Agriculture,Agriculture +538198,Budget,Budget +540805,Climate,Climate +542723,Economic Development,Economic Development +538193,Environment,Environment +538198,Industry,Industry +535666,Infrastructure,Infrastructure +542727,International Trade,International Trade +538193,Research and Development,Research and Development +538199,Taxation and Finance,Taxation and Finance +545347,Transportation,Transportation +533849,Health,Health +533850,Health,Health +533860,Labour,Labour +533864,Defence,Defence +533871,Industry,Industry +533876,Industry,Industry +535223,Employment and Training,Employment and Training +535223,Health,Health +535268,Education,Education +535366,Employment and Training,Employment and Training +535264,Health,Health +535121,Employment and Training,Employment and Training +537020,Budget,Budget +535614,Employment and Training,Employment and Training +535612,Health,Health +543822,Economic Development,Economic Development +543822,Employment and Training,Employment and Training +543822,Infrastructure,Infrastructure +535557,Employment and Training,Employment and Training +535557,Health,Health +535191,Employment and Training,Employment and Training +535191,Health,Health +539101,Climate,Climate +539101,Environment,Environment +543612,Housing,Housing +539101,Infrastructure,Infrastructure +539101,Municipalities,Municipalities +535480,Education,Education +535487,Employment and Training,Employment and Training +535479,Health,Health +535501,Education,Education +535501,Employment and Training,Employment and Training +535519,Health,Health +534417,Justice and Law Enforcement,Justice and Law Enforcement +536366,Industry,Industrie +540671,Research and Development,Recherche et développement +534187,Government Procurement,Marchés publics +534803,Immigration,Immigration +536127,Economic Development,Economic Development +534280,Budget,Budget +534285,Infrastructure,Infrastructure +534285,Transportation,Transportation +534299,Infrastructure,Infrastructure +534299,Transportation,Transportation +534302,Infrastructure,Infrastructure +534302,Transportation,Transportation +534303,Infrastructure,Infrastructure +534303,Transportation,Transportation +534345,Taxation and Finance,Taxation and Finance +544290,Climate,Climat +544290,Environment,Environnement +544290,Forestry,Foresterie +544290,Animal Welfare,Protection des animaux +534387,Environment,Environment +535330,International Relations,International Relations +538194,Taxation and Finance,Taxation and Finance +534466,Education,Education +534521,Employment and Training,Employment and Training +534521,Labour,Labour +534523,Labour,Labour +534523,Tourism,Tourism +543734,Economic Development,Economic Development +542089,Intellectual Property,Intellectual Property +543734,Regional Development,Regional Development +543734,Research and Development,Research and Development +535352,Education,Education +534690,Employment and Training,Employment and Training +539800,Climate,Climate +541721,Environment,Environment +534692,Employment and Training,Employment and Training +534846,Climate,Climate +534856,Housing,Housing +534893,Government Procurement,Government Procurement +534903,Climate,Climate +540265,Climate,Climate +543680,Agriculture,Agriculture +538646,Animal Welfare,Animal Welfare +538819,Budget,Budget +538819,Federal-Provincial Relations,Federal-Provincial Relations +535195,Health,Health +535195,Privacy and Access to Information,Privacy and Access to Information +541741,Justice and Law Enforcement,Justice and Law Enforcement +535215,Labour,Labour +535215,Employment and Training,Employment and Training +535215,Federal-Provincial Relations,Federal-Provincial Relations +540492,Agriculture,Agriculture +540492,Climate,Climate +540492,Environment,Environment +539275,Federal-Provincial Relations,Federal-Provincial Relations +540492,Health,Health +539275,Industry,Industry +540492,International Trade,International Trade +539276,Agriculture,Agriculture +539276,Climate,Climate +539276,Environment,Environment +539276,Federal-Provincial Relations,Federal-Provincial Relations +539276,Health,Health +539276,Industry,Industry +539276,International Trade,International Trade +535252,International Development,International Development +535427,Labour,Labour +535431,Natural Resources,Natural Resources +536591,Climate,Climat +536591,Economic Development,Développement économique +536592,Regional Development,Développement régional +535328,Environment,Environment +535409,Environment,Environment +535405,Research and Development,Research and Development +535411,Research and Development,Research and Development +535418,Research and Development,Research and Development +535421,Research and Development,Research and Development +535443,Research and Development,Research and Development +535445,Research and Development,Research and Development +537741,Climate,Climate +539244,Environment,Environment +535455,Privacy and Access to Information,Privacy and Access to Information +535486,Government Procurement,Government Procurement +535491,Government Procurement,Government Procurement +535601,Natural Resources,Natural Resources +535632,Government Procurement,Government Procurement +535624,Climate,Climate +535624,Environment,Environment +543854,Agriculture,Agriculture +535760,Federal-Provincial Relations,Federal-Provincial Relations +543824,Forestry,Forestry +544612,Research and Development,Research and Development +535909,Agriculture,Agriculture +541241,Climate,Climate +535951,Agriculture,Agriculture +535952,Energy,Energy +535953,Energy,Energy +540306,Energy,Energy +540306,Environment,Environment +538993,Health,Health +542114,Budget,Budget +536941,Climate,Climate +536941,Economic Development,Economic Development +538840,Employment and Training,Employment and Training +536941,Energy,Energy +536940,Environment,Environment +536941,Industry,Industry +536941,International Trade,International Trade +538837,Natural Resources,Natural Resources +537883,Economic Development,Economic Development +537883,Intellectual Property,Intellectual Property +537883,Health,Health +537883,Taxation and Finance,Taxation and Finance +537883,Municipalities,Municipalities +537883,International Trade,International Trade +537883,Regional Development,Regional Development +537883,Research and Development,Research and Development +537883,Industry,Industry +537883,Government Procurement,Government Procurement +535984,Financial Institutions,Financial Institutions +536003,Transportation,Transportation +544572,Industry,Industry +544572,Health,Health +536006,Education,Education +538338,Health,Health +538299,Economic Development,Economic Development +538301,Government Procurement,Government Procurement +541862,Agriculture,Agriculture +537197,Government Procurement,Government Procurement +536026,Health,Health +538942,Agriculture,Agriculture +538942,Health,Health +538942,Industry,Industry +536630,Labour,Labour +536630,Employment and Training,Employment and Training +536630,Education,Education +544092,Research and Development,Research and Development +538602,Government Procurement,Government Procurement +541507,Climate,Climate +541455,Economic Development,Economic Development +541465,Energy,Energy +541554,Environment,Environment +541565,Industry,Industry +541573,Infrastructure,Infrastructure +543104,Consumer Issues,Consumer Issues +543104,Industry,Industry +537300,Media,Media +536083,International Relations,International Relations +536083,Environment,Environment +543712,Research and Development,Recherche et développement +536312,Economic Development,Economic Development +536315,Employment and Training,Employment and Training +538654,Industry,Industry +536310,Tourism,Tourism +536723,Industry,Industry +536723,Economic Development,Economic Development +536723,Intellectual Property,Intellectual Property +536723,Regional Development,Regional Development +536723,Health,Health +536723,International Trade,International Trade +536723,Research and Development,Research and Development +536122,Transportation,Transportation +538060,Economic Development,Economic Development +538060,Financial Institutions,Financial Institutions +538060,Pensions,Pensions +536129,Regional Development,Regional Development +542280,Health,Health +538818,Industry,Industry +540338,Taxation and Finance,Taxation and Finance +536634,Research and Development,Research and Development +536634,Health,Health +536634,Government Procurement,Government Procurement +538574,Infrastructure,Infrastructure +538574,Taxation and Finance,Taxation and Finance +538575,Transportation,Transportation +536900,Immigration,Immigration +543998,Industry,Industrie +543998,Mining,Mines +541971,Government Procurement,Government Procurement +538693,Research and Development,Research and Development +536627,Health,Health +540517,Environment,Environment +540517,Climate,Climate +540706,Economic Development,Economic Development +540706,Environment,Environment +540706,Research and Development,Research and Development +536229,Intellectual Property,Intellectual Property +541904,Financial Institutions,Financial Institutions +541904,Industry,Industry +538076,Consumer Issues,Consumer Issues +540250,Economic Development,Economic Development +540250,Environment,Environment +538076,Health,Health +543283,Climate,Climate +543283,Industry,Industry +543283,Economic Development,Economic Development +543283,Environment,Environment +543283,Energy,Energy +540262,Environment,Environnement +536244,Federal-Provincial Relations,Federal-Provincial Relations +536248,Natural Resources,Natural Resources +538116,Industry,Industry +536275,Taxation and Finance,Taxation and Finance +536278,Taxation and Finance,Taxation and Finance +540543,Budget,Budget +540451,Budget,Budget +540422,Budget,Budget +540421,Budget,Budget +540335,Budget,Budget +540466,Climate,Climate +540465,Climate,Climate +540796,Climate,Climate +540778,Climate,Climate +540777,Climate,Climate +540478,Climate,Climate +540477,Climate,Climate +532948,Economic Development,Economic Development +532946,Economic Development,Economic Development +537449,Economic Development,Economic Development +533490,Economic Development,Economic Development +533297,Economic Development,Economic Development +532948,Natural Resources,Natural Resources +532946,Natural Resources,Natural Resources +539421,Natural Resources,Natural Resources +533490,Natural Resources,Natural Resources +533297,Natural Resources,Natural Resources +533042,Transportation,Transportation +532948,Transportation,Transportation +534217,Budget,Budget +534215,Research and Development,Research and Development +534213,Research and Development,Research and Development +539921,Research and Development,Research and Development +539918,Research and Development,Research and Development +537903,Research and Development,Research and Development +536039,Animal Welfare,Animal Welfare +532926,Animal Welfare,Animal Welfare +539812,Climate,Climate +537971,Climate,Climate +539812,Energy,Energy +537971,Energy,Energy +537971,Taxation and Finance,Taxation and Finance +537536,Health,Health +537180,Health,Health +534775,Consumer Issues,Consumer Issues +540621,Employment and Training,Employment and Training +536568,Employment and Training,Employment and Training +540621,Economic Development,Economic Development +536568,Economic Development,Economic Development +536568,Education,Education +536568,Regional Development,Regional Development +544425,Climate,Climate +544424,Climate,Climate +544643,Climate,Climate +544524,Climate,Climate +544424,Energy,Energy +544379,Energy,Energy +544643,Energy,Energy +544524,Energy,Energy +544510,Energy,Energy +544424,Environment,Environment +544379,Environment,Environment +544643,Environment,Environment +544524,Environment,Environment +536117,Labour,Labour +544999,Energy,Energy +538004,Energy,Energy +536375,Health,Health +536368,Health,Health +543118,Health,Health +543110,Health,Health +541920,Health,Health +539059,Health,Health +539058,Health,Health +537617,Employment and Training,Employment and Training +536333,Justice and Law Enforcement,Justice and Law Enforcement +542494,Regional Development,Regional Development +536583,Regional Development,Regional Development +536583,Education,Education +538987,Employment and Training,Employment and Training +536583,Employment and Training,Employment and Training +542499,Economic Development,Economic Development +542494,Economic Development,Economic Development +538987,Economic Development,Economic Development +537814,Housing,Housing +537814,Municipalities,Municipalities +543088,Employment and Training,Employment and Training +543084,Employment and Training,Employment and Training +543087,Energy,Energy +543084,Energy,Energy +543093,Energy,Energy +543092,Energy,Energy +543090,Energy,Energy +543093,Natural Resources,Natural Resources +543092,Natural Resources,Natural Resources +543090,Natural Resources,Natural Resources +543088,Natural Resources,Natural Resources +543087,Taxation and Finance,Taxation and Finance +543093,Taxation and Finance,Taxation and Finance +543092,Taxation and Finance,Taxation and Finance +543090,Taxation and Finance,Taxation and Finance +533477,Research and Development,Research and Development +542577,Employment and Training,Employment and Training +541014,Employment and Training,Employment and Training +544217,Employment and Training,Employment and Training +544216,Employment and Training,Employment and Training +544167,Employment and Training,Employment and Training +544166,Employment and Training,Employment and Training +544165,Employment and Training,Employment and Training +543320,Employment and Training,Employment and Training +543171,Employment and Training,Employment and Training +542918,Employment and Training,Employment and Training +542906,Employment and Training,Employment and Training +542905,Employment and Training,Employment and Training +542902,Employment and Training,Employment and Training +542901,Employment and Training,Employment and Training +542900,Employment and Training,Employment and Training +540753,Industry,Industry +540752,Industry,Industry +544217,Industry,Industry +544216,Industry,Industry +544167,Industry,Industry +544166,Industry,Industry +544165,Industry,Industry +543320,Industry,Industry +542918,Industry,Industry +542906,Industry,Industry +542902,Industry,Industry +542901,Industry,Industry +542900,Industry,Industry +542667,Industry,Industry +542665,Industry,Industry +542577,Industry,Industry +542900,Transportation,Transportation +542577,Transportation,Transportation +544217,Transportation,Transportation +544216,Transportation,Transportation +544167,Transportation,Transportation +544166,Transportation,Transportation +544165,Transportation,Transportation +536730,Energy,Energy +533240,Energy,Energy +545311,Energy,Energy +542694,Energy,Energy +537817,Energy,Energy +536734,Energy,Energy +533245,Infrastructure,Infrastructure +533244,Infrastructure,Infrastructure +538154,Health,Health +538152,Health,Health +540587,Health,Health +542112,Budget,Budget +541733,Budget,Budget +542112,Economic Development,Economic Development +541733,Economic Development,Economic Development +542112,Energy,Energy +541733,Energy,Energy +542112,Industry,Industry +541733,Industry,Industry +541733,Infrastructure,Infrastructure +542112,International Trade,International Trade +541733,International Trade,International Trade +540800,Child Services,Child Services +539093,Child Services,Child Services +533422,Economic Development,Economic Development +537709,Economic Development,Economic Development +537697,Defence,Défense +539129,Environment,Environment +539129,Industry,Industry +535823,Environment,Environment +535823,Energy,Energy +535823,Climate,Climate +540321,Environment,Environment +540321,Infrastructure,Infrastructure +533638,Economic Development,Economic Development +533638,Municipalities,Municipalities +533638,Housing,Housing +535823,Housing,Housing +537214,Economic Development,Economic Development +535121,Health,Health +540574,Agriculture,Agriculture +540572,Agriculture,Agriculture +538909,Energy,Energy +537759,Energy,Energy +540575,Energy,Energy +540574,Energy,Energy +540572,Energy,Energy +543205,Agriculture,Agriculture +536116,Agriculture,Agriculture +543216,Agriculture,Agriculture +543215,Agriculture,Agriculture +543214,Agriculture,Agriculture +543213,Agriculture,Agriculture +543211,Agriculture,Agriculture +543210,Agriculture,Agriculture +543209,Agriculture,Agriculture +543208,Agriculture,Agriculture +543207,Agriculture,Agriculture +536150,Animal Welfare,Animal Welfare +535995,Animal Welfare,Animal Welfare +544894,Animal Welfare,Animal Welfare +544724,Animal Welfare,Animal Welfare +544501,Animal Welfare,Animal Welfare +542370,Animal Welfare,Animal Welfare +540678,Animal Welfare,Animal Welfare +537350,Defence,Defence +537350,Economic Development,Economic Development +537350,Government Procurement,Government Procurement +537350,Industry,Industry +537350,Security,National Security/Security +537350,Regional Development,Regional Development +537350,Transportation,Transportation +537600,Government Procurement,Government Procurement +537599,Government Procurement,Government Procurement +539558,Government Procurement,Government Procurement +537603,Government Procurement,Government Procurement +537602,Government Procurement,Government Procurement +537600,Health,Health +537599,Health,Health +539558,Health,Health +537603,Health,Health +537602,Health,Health +537593,Industry,Industry +537592,Industry,Industry +543109,Natural Resources,Natural Resources +543108,Natural Resources,Natural Resources +543117,Natural Resources,Natural Resources +535861,Education,Education +535861,Employment and Training,Employment and Training +535854,Employment and Training,Employment and Training +535921,Employment and Training,Employment and Training +535854,Health,Health +535853,Health,Health +545023,Health,Health +545022,Health,Health +545021,Health,Health +545019,Health,Health +545016,Health,Health +545015,Health,Health +545014,Health,Health +545011,Health,Health +544944,Health,Health +544941,Health,Health +542538,Health,Health +542537,Health,Health +542534,Health,Health +542533,Health,Health +541864,Health,Health +540787,Health,Health +540785,Health,Health +540783,Health,Health +537015,Health,Health +535875,Health,Health +535874,Health,Health +535873,Health,Health +535871,Health,Health +535870,Health,Health +535869,Health,Health +535868,Health,Health +535867,Health,Health +535865,Health,Health +535864,Health,Health +535863,Health,Health +535862,Health,Health +535861,Health,Health +540785,Taxation and Finance,Taxation and Finance +540783,Taxation and Finance,Taxation and Finance +545023,Taxation and Finance,Taxation and Finance +545022,Taxation and Finance,Taxation and Finance +545021,Taxation and Finance,Taxation and Finance +545019,Taxation and Finance,Taxation and Finance +545016,Taxation and Finance,Taxation and Finance +545015,Taxation and Finance,Taxation and Finance +545014,Taxation and Finance,Taxation and Finance +545011,Taxation and Finance,Taxation and Finance +544944,Taxation and Finance,Taxation and Finance +544941,Taxation and Finance,Taxation and Finance +534545,Education,Education +534531,Education,Education +534536,Employment and Training,Employment and Training +534531,Employment and Training,Employment and Training +534620,Employment and Training,Employment and Training +534619,Employment and Training,Employment and Training +534617,Employment and Training,Employment and Training +534545,Employment and Training,Employment and Training +534541,Employment and Training,Employment and Training +538351,Agriculture,Agriculture +538350,Agriculture,Agriculture +538201,Agriculture,Agriculture +538199,Agriculture,Agriculture +538198,Agriculture,Agriculture +538193,Agriculture,Agriculture +536372,Agriculture,Agriculture +536359,Agriculture,Agriculture +535917,Agriculture,Agriculture +535680,Agriculture,Agriculture +535676,Agriculture,Agriculture +535666,Agriculture,Agriculture +535662,Agriculture,Agriculture +535658,Agriculture,Agriculture +535656,Agriculture,Agriculture +535654,Agriculture,Agriculture +545350,Agriculture,Agriculture +545349,Agriculture,Agriculture +545348,Agriculture,Agriculture +545347,Agriculture,Agriculture +545346,Agriculture,Agriculture +543095,Agriculture,Agriculture +542732,Agriculture,Agriculture +542731,Agriculture,Agriculture +542730,Agriculture,Agriculture +542729,Agriculture,Agriculture +542728,Agriculture,Agriculture +542727,Agriculture,Agriculture +542726,Agriculture,Agriculture +542725,Agriculture,Agriculture +542724,Agriculture,Agriculture +542723,Agriculture,Agriculture +540807,Agriculture,Agriculture +540806,Agriculture,Agriculture +540805,Agriculture,Agriculture +540803,Agriculture,Agriculture +540802,Agriculture,Agriculture +539784,Agriculture,Agriculture +539781,Agriculture,Agriculture +539780,Agriculture,Agriculture +539779,Agriculture,Agriculture +539778,Agriculture,Agriculture +539777,Agriculture,Agriculture +539776,Agriculture,Agriculture +539775,Agriculture,Agriculture +538351,Climate,Climate +538198,Climate,Climate +540807,Economic Development,Economic Development +535676,Economic Development,Economic Development +545349,Economic Development,Economic Development +545347,Economic Development,Economic Development +542725,Economic Development,Economic Development +535676,Environment,Environment +535666,Environment,Environment +540805,Environment,Environment +540802,Environment,Environment +539775,Environment,Environment +538351,Environment,Environment +538201,Environment,Environment +538199,Environment,Environment +538198,Environment,Environment +535656,Industry,Industry +535654,Industry,Industry +538199,Industry,Industry +535662,Infrastructure,Infrastructure +535658,Infrastructure,Infrastructure +545350,Infrastructure,Infrastructure +545347,Infrastructure,Infrastructure +542725,Infrastructure,Infrastructure +542723,Infrastructure,Infrastructure +540807,Infrastructure,Infrastructure +539784,Infrastructure,Infrastructure +539781,Infrastructure,Infrastructure +539780,Infrastructure,Infrastructure +539775,Infrastructure,Infrastructure +536359,Infrastructure,Infrastructure +542726,International Trade,International Trade +542724,International Trade,International Trade +540807,International Trade,International Trade +540802,International Trade,International Trade +539784,International Trade,International Trade +539781,International Trade,International Trade +539779,International Trade,International Trade +539778,International Trade,International Trade +539777,International Trade,International Trade +539776,International Trade,International Trade +538201,International Trade,International Trade +538199,International Trade,International Trade +538198,International Trade,International Trade +538193,International Trade,International Trade +536357,International Trade,International Trade +535681,International Trade,International Trade +535679,International Trade,International Trade +535678,International Trade,International Trade +535676,International Trade,International Trade +535672,International Trade,International Trade +535656,International Trade,International Trade +535654,International Trade,International Trade +545349,International Trade,International Trade +545348,International Trade,International Trade +545347,International Trade,International Trade +542732,International Trade,International Trade +542731,International Trade,International Trade +542730,International Trade,International Trade +542729,International Trade,International Trade +542728,International Trade,International Trade +535662,Research and Development,Research and Development +535658,Research and Development,Research and Development +545348,Research and Development,Research and Development +542732,Research and Development,Research and Development +542731,Research and Development,Research and Development +542726,Research and Development,Research and Development +542725,Research and Development,Research and Development +542723,Research and Development,Research and Development +539784,Research and Development,Research and Development +539775,Research and Development,Research and Development +539773,Research and Development,Research and Development +538351,Research and Development,Research and Development +538201,Research and Development,Research and Development +538193,Taxation and Finance,Taxation and Finance +533859,Labour,Labour +533858,Labour,Labour +534625,Labour,Labour +533875,Industry,Industry +533874,Industry,Industry +533877,Industry,Industry +535222,Employment and Training,Employment and Training +535219,Employment and Training,Employment and Training +535229,Employment and Training,Employment and Training +535224,Employment and Training,Employment and Training +535222,Health,Health +535219,Health,Health +537013,Health,Health +535226,Health,Health +535224,Health,Health +535363,Employment and Training,Employment and Training +535268,Employment and Training,Employment and Training +535263,Health,Health +535260,Health,Health +535270,Health,Health +535268,Health,Health +534008,Budget,Budget +535607,Employment and Training,Employment and Training +535596,Employment and Training,Employment and Training +535607,Health,Health +535596,Health,Health +535614,Health,Health +535547,Employment and Training,Employment and Training +535542,Employment and Training,Employment and Training +535589,Employment and Training,Employment and Training +535547,Health,Health +535542,Health,Health +535589,Health,Health +535579,Health,Health +535571,Health,Health +535168,Employment and Training,Employment and Training +535165,Employment and Training,Employment and Training +535183,Health,Health +535165,Health,Health +539073,Climate,Climate +539073,Environment,Environment +537306,Housing,Housing +539073,Municipalities,Municipalities +537306,Municipalities,Municipalities +543613,Municipalities,Municipalities +543612,Municipalities,Municipalities +541533,Municipalities,Municipalities +535480,Employment and Training,Employment and Training +535470,Employment and Training,Employment and Training +535476,Health,Health +535470,Health,Health +535489,Health,Health +535480,Health,Health +535509,Health,Health +535501,Health,Health +534476,Industry,Industrie +534475,Industry,Industrie +540671,Industry,Industrie +540670,Industry,Industrie +540564,Industry,Industrie +539452,Industry,Industrie +536788,Industry,Industrie +540670,Research and Development,Recherche et développement +540564,Research and Development,Recherche et développement +539452,Research and Development,Recherche et développement +536788,Research and Development,Recherche et développement +536366,Research and Development,Recherche et développement +534476,Research and Development,Recherche et développement +534475,Research and Development,Recherche et développement +534185,Government Procurement,Marchés publics +534183,Government Procurement,Marchés publics +534516,Climate,Climat +539794,Environment,Environnement +534516,Forestry,Foresterie +539794,Animal Welfare,Protection des animaux +534516,Animal Welfare,Protection des animaux +542089,Economic Development,Economic Development +542089,Regional Development,Regional Development +534643,Education,Education +539800,Environment,Environment +540253,Climate,Climate +544061,Climate,Climate +544058,Climate,Climate +544040,Climate,Climate +542028,Climate,Climate +542026,Climate,Climate +542023,Climate,Climate +540270,Climate,Climate +538646,Agriculture,Agriculture +538645,Agriculture,Agriculture +538645,Animal Welfare,Animal Welfare +539275,Agriculture,Agriculture +539275,Climate,Climate +539275,Environment,Environment +539275,Health,Health +539275,International Trade,International Trade +537261,Agriculture,Agriculture +537260,Agriculture,Agriculture +540493,Agriculture,Agriculture +537261,Climate,Climate +537260,Climate,Climate +540493,Climate,Climate +537261,Environment,Environment +537260,Environment,Environment +540493,Environment,Environment +537261,Federal-Provincial Relations,Federal-Provincial Relations +537260,Federal-Provincial Relations,Federal-Provincial Relations +537261,Health,Health +537260,Health,Health +540493,Health,Health +537261,Industry,Industry +537260,Industry,Industry +537261,International Trade,International Trade +537260,International Trade,International Trade +540493,International Trade,International Trade +535419,Natural Resources,Natural Resources +535398,Natural Resources,Natural Resources +537964,Natural Resources,Natural Resources +537961,Natural Resources,Natural Resources +537959,Natural Resources,Natural Resources +535446,Natural Resources,Natural Resources +536590,Climate,Climat +535262,Climate,Climat +536614,Climate,Climat +536613,Climate,Climat +536612,Climate,Climat +536610,Climate,Climat +536609,Climate,Climat +536607,Climate,Climat +536606,Climate,Climat +536604,Climate,Climat +536598,Climate,Climat +536596,Climate,Climat +536594,Climate,Climat +536592,Climate,Climat +536590,Economic Development,Développement économique +535262,Economic Development,Développement économique +544215,Economic Development,Développement économique +541742,Economic Development,Développement économique +541736,Economic Development,Développement économique +541735,Economic Development,Développement économique +536614,Economic Development,Développement économique +536612,Economic Development,Développement économique +536611,Economic Development,Développement économique +536610,Economic Development,Développement économique +536609,Economic Development,Développement économique +536606,Economic Development,Développement économique +536596,Economic Development,Développement économique +536594,Economic Development,Développement économique +536592,Economic Development,Développement économique +536591,Regional Development,Développement régional +536590,Regional Development,Développement régional +536614,Regional Development,Développement régional +536612,Regional Development,Développement régional +536611,Regional Development,Développement régional +536610,Regional Development,Développement régional +536609,Regional Development,Développement régional +536606,Regional Development,Développement régional +536596,Regional Development,Développement régional +536594,Regional Development,Développement régional +537728,Climate,Climate +537721,Climate,Climate +543225,Climate,Climate +543223,Climate,Climate +543220,Climate,Climate +543219,Climate,Climate +542976,Climate,Climate +541450,Climate,Climate +541449,Climate,Climate +541448,Climate,Climate +541447,Climate,Climate +541446,Climate,Climate +541445,Climate,Climate +540928,Climate,Climate +540927,Climate,Climate +540926,Climate,Climate +540923,Climate,Climate +540922,Climate,Climate +540921,Climate,Climate +540916,Climate,Climate +539244,Climate,Climate +539242,Climate,Climate +539241,Climate,Climate +539240,Climate,Climate +539239,Climate,Climate +539237,Climate,Climate +539232,Climate,Climate +539230,Climate,Climate +539242,Environment,Environment +539241,Environment,Environment +539240,Environment,Environment +539239,Environment,Environment +539237,Environment,Environment +539232,Environment,Environment +539230,Environment,Environment +537741,Environment,Environment +537728,Environment,Environment +537721,Environment,Environment +543225,Environment,Environment +543223,Environment,Environment +543220,Environment,Environment +543219,Environment,Environment +542976,Environment,Environment +541450,Environment,Environment +541449,Environment,Environment +541448,Environment,Environment +541447,Environment,Environment +541446,Environment,Environment +541445,Environment,Environment +540928,Environment,Environment +540927,Environment,Environment +540926,Environment,Environment +540923,Environment,Environment +540922,Environment,Environment +540921,Environment,Environment +540916,Environment,Environment +535630,Government Procurement,Government Procurement +535623,Government Procurement,Government Procurement +541296,Government Procurement,Government Procurement +543824,Agriculture,Agriculture +535740,Agriculture,Agriculture +543861,Agriculture,Agriculture +535746,Federal-Provincial Relations,Federal-Provincial Relations +535745,Federal-Provincial Relations,Federal-Provincial Relations +544612,Federal-Provincial Relations,Federal-Provincial Relations +543947,Federal-Provincial Relations,Federal-Provincial Relations +543945,Federal-Provincial Relations,Federal-Provincial Relations +543942,Federal-Provincial Relations,Federal-Provincial Relations +543938,Federal-Provincial Relations,Federal-Provincial Relations +543937,Federal-Provincial Relations,Federal-Provincial Relations +543935,Federal-Provincial Relations,Federal-Provincial Relations +543866,Federal-Provincial Relations,Federal-Provincial Relations +543861,Federal-Provincial Relations,Federal-Provincial Relations +543855,Federal-Provincial Relations,Federal-Provincial Relations +543854,Federal-Provincial Relations,Federal-Provincial Relations +543825,Federal-Provincial Relations,Federal-Provincial Relations +539391,Federal-Provincial Relations,Federal-Provincial Relations +537535,Federal-Provincial Relations,Federal-Provincial Relations +537534,Federal-Provincial Relations,Federal-Provincial Relations +537533,Federal-Provincial Relations,Federal-Provincial Relations +537531,Federal-Provincial Relations,Federal-Provincial Relations +537530,Federal-Provincial Relations,Federal-Provincial Relations +537528,Federal-Provincial Relations,Federal-Provincial Relations +535786,Federal-Provincial Relations,Federal-Provincial Relations +535781,Federal-Provincial Relations,Federal-Provincial Relations +535775,Federal-Provincial Relations,Federal-Provincial Relations +535768,Federal-Provincial Relations,Federal-Provincial Relations +535767,Federal-Provincial Relations,Federal-Provincial Relations +535762,Federal-Provincial Relations,Federal-Provincial Relations +543938,Research and Development,Research and Development +536804,Climate,Climate +536802,Climate,Climate +541244,Climate,Climate +541242,Climate,Climate +540291,Energy,Energy +540290,Energy,Energy +540339,Energy,Energy +540331,Energy,Energy +540330,Energy,Energy +540307,Energy,Energy +540291,Environment,Environment +540290,Environment,Environment +540339,Environment,Environment +540307,Environment,Environment +538912,Health,Health +536940,Climate,Climate +536924,Climate,Climate +541730,Climate,Climate +538845,Climate,Climate +538843,Climate,Climate +538842,Climate,Climate +538841,Climate,Climate +538840,Climate,Climate +538839,Climate,Climate +538837,Climate,Climate +536940,Economic Development,Economic Development +536924,Economic Development,Economic Development +542114,Economic Development,Economic Development +538839,Employment and Training,Employment and Training +538837,Employment and Training,Employment and Training +541730,Employment and Training,Employment and Training +538845,Employment and Training,Employment and Training +538843,Employment and Training,Employment and Training +538842,Employment and Training,Employment and Training +538841,Employment and Training,Employment and Training +536940,Energy,Energy +536924,Energy,Energy +542114,Energy,Energy +538845,Energy,Energy +538843,Energy,Energy +538842,Energy,Energy +538841,Energy,Energy +538840,Energy,Energy +538839,Energy,Energy +538837,Energy,Energy +536924,Environment,Environment +541730,Environment,Environment +538845,Environment,Environment +538843,Environment,Environment +538842,Environment,Environment +538841,Environment,Environment +538840,Environment,Environment +538839,Environment,Environment +538837,Environment,Environment +536941,Environment,Environment +536940,Industry,Industry +536924,Industry,Industry +542114,Industry,Industry +536940,International Trade,International Trade +536924,International Trade,International Trade +542114,International Trade,International Trade +541730,International Trade,International Trade +538845,International Trade,International Trade +538843,International Trade,International Trade +538842,International Trade,International Trade +538841,International Trade,International Trade +538840,International Trade,International Trade +538839,International Trade,International Trade +538837,International Trade,International Trade +536941,Natural Resources,Natural Resources +536940,Natural Resources,Natural Resources +541506,Climate,Climate +541505,Climate,Climate +541569,Climate,Climate +541568,Climate,Climate +541566,Climate,Climate +541544,Climate,Climate +541508,Climate,Climate +541463,Energy,Energy +541455,Energy,Energy +541573,Energy,Energy +541570,Energy,Energy +541569,Energy,Energy +541568,Energy,Energy +541566,Energy,Energy +541565,Energy,Energy +541564,Energy,Energy +541563,Energy,Energy +541562,Energy,Energy +541561,Energy,Energy +541560,Energy,Energy +541559,Energy,Energy +541558,Energy,Energy +541555,Energy,Energy +541554,Energy,Energy +541553,Energy,Energy +541552,Energy,Energy +541549,Energy,Energy +541548,Energy,Energy +541547,Energy,Energy +541546,Energy,Energy +541545,Energy,Energy +541544,Energy,Energy +541508,Energy,Energy +541507,Energy,Energy +541506,Energy,Energy +541505,Energy,Energy +541503,Energy,Energy +541490,Energy,Energy +541488,Energy,Energy +541487,Energy,Energy +541481,Energy,Energy +541480,Energy,Energy +541479,Energy,Energy +541478,Energy,Energy +541477,Energy,Energy +541475,Energy,Energy +541473,Energy,Energy +541471,Energy,Energy +541467,Energy,Energy +541466,Energy,Energy +541553,Environment,Environment +541552,Environment,Environment +541549,Environment,Environment +541548,Environment,Environment +541547,Environment,Environment +541546,Environment,Environment +541545,Environment,Environment +541503,Environment,Environment +541490,Environment,Environment +541488,Environment,Environment +541487,Environment,Environment +541481,Environment,Environment +541569,Environment,Environment +541568,Environment,Environment +541566,Environment,Environment +541564,Environment,Environment +541563,Environment,Environment +541562,Environment,Environment +541561,Environment,Environment +541560,Environment,Environment +541559,Environment,Environment +541558,Environment,Environment +541555,Environment,Environment +541570,Infrastructure,Infrastructure +543103,Consumer Issues,Consumer Issues +537300,Consumer Issues,Consumer Issues +543103,Industry,Industry +537300,Industry,Industry +543104,Media,Media +543103,Media,Media +536310,Economic Development,Economic Development +536309,Economic Development,Economic Development +541213,Economic Development,Economic Development +538654,Economic Development,Economic Development +536316,Economic Development,Economic Development +536315,Economic Development,Economic Development +536310,Employment and Training,Employment and Training +536309,Employment and Training,Employment and Training +538654,Employment and Training,Employment and Training +536316,Industry,Industry +536310,Industry,Industry +536309,Tourism,Tourism +538654,Tourism,Tourism +536312,Tourism,Tourism +536620,Industry,Industry +536620,Economic Development,Economic Development +536620,Intellectual Property,Intellectual Property +536620,Regional Development,Regional Development +536620,Health,Health +536620,International Trade,International Trade +536620,Research and Development,Research and Development +538056,Economic Development,Economic Development +538056,Financial Institutions,Financial Institutions +538056,Pensions,Pensions +538818,Health,Health +537380,Industry,Industry +537301,Industry,Industry +540338,Industry,Industry +537380,Taxation and Finance,Taxation and Finance +536632,Research and Development,Research and Development +536631,Research and Development,Research and Development +536635,Research and Development,Research and Development +536632,Health,Health +536631,Health,Health +536635,Health,Health +536632,Government Procurement,Government Procurement +536631,Government Procurement,Government Procurement +536635,Government Procurement,Government Procurement +538574,Transportation,Transportation +536184,Immigration,Immigration +542102,Immigration,Immigration +536901,Immigration,Immigration +536627,Research and Development,Research and Development +543787,Research and Development,Research and Development +540518,Research and Development,Research and Development +540517,Research and Development,Research and Development +536627,Environment,Environment +540518,Environment,Environment +538071,Consumer Issues,Consumer Issues +538071,Economic Development,Economic Development +538076,Environment,Environment +538071,Environment,Environment +538071,Health,Health +536246,Environment,Environnement +536245,Environment,Environnement +541000,Environment,Environnement +540263,Environment,Environnement +536277,Taxation and Finance,Taxation and Finance +536276,Taxation and Finance,Taxation and Finance +536306,Federal-Provincial Relations,Federal-Provincial Relations +536306,Housing,Housing +542710,Economic Development,Economic Development +542212,Economic Development,Economic Development +545296,Economic Development,Economic Development +538868,Financial Institutions,Financial Institutions +536353,Immigration,Immigration +536353,Labour,Travail +540426,Tourism,Tourism +536622,Tourism,Tourism +536622,Environment,Environment +540426,Infrastructure,Infrastructure +536622,Infrastructure,Infrastructure +538815,Mining,Mining +540274,Infrastructure,Infrastructure +536525,Education,Éducation +536525,Health,Santé +538732,Housing,Housing +537247,Housing,Housing +539205,Housing,Housing +539051,Tourism,Tourism +539050,Tourism,Tourism +542572,Tourism,Tourism +542554,Tourism,Tourism +542553,Tourism,Tourism +542551,Tourism,Tourism +542549,Tourism,Tourism +540702,Tourism,Tourism +540700,Tourism,Tourism +539054,Tourism,Tourism +539053,Tourism,Tourism +536833,Agriculture,Agriculture +536832,Agriculture,Agriculture +536833,Environment,Environment +536832,Environment,Environment +536833,International Trade,International Trade +536832,International Trade,International Trade +542662,Agriculture,Agriculture +542662,Labour,Labour +536518,Health,Health +543227,Federal-Provincial Relations,Federal-Provincial Relations +536307,Housing,Housing +543227,Municipalities,Municipalities +536317,Climate,Climate +544494,Economic Development,Economic Development +538869,Financial Institutions,Financial Institutions +536332,Infrastructure,Infrastructure +542696,Industry,Industrie +536526,Immigration,Immigration +536526,Labour,Travail +540444,Tourism,Tourism +540426,Environment,Environment +540444,Infrastructure,Infrastructure +537372,Health,Health +536371,Transportation,Transportation +536397,Mining,Mining +540848,Infrastructure,Infrastructure +540848,Regional Development,Regional Development +542141,Economic Development,Economic Development +542141,Energy,Energy +536489,Animal Welfare,Animal Welfare +536491,Animal Welfare,Animal Welfare +536495,International Development,International Development +539283,Education,Éducation +539283,Health,Santé +540724,Health,Health +536995,Immigration,Immigration +538749,Government Procurement,Marchés publics +536921,Foreign Affairs,Foreign Affairs +536642,Labour,Labour +538940,Housing,Housing +539052,Tourism,Tourism +536834,Agriculture,Agriculture +536834,Environment,Environment +536834,International Trade,International Trade +542663,Agriculture,Agriculture +542663,Labour,Labour +542662,Transportation,Transportation +542947,Agriculture,Agriculture +542947,Foreign Affairs,Foreign Affairs +536959,Consumer Issues,Consumer Issues +536959,Agriculture,Agriculture +536959,Industry,Industry +536959,Health,Health +536839,Agriculture,Agriculture +536839,Environment,Environment +536839,International Trade,International Trade +536841,Agriculture,Agriculture +536841,Environment,Environment +536841,International Trade,International Trade +536760,International Trade,International Trade +536762,International Trade,International Trade +536774,Security,Security +543128,Economic Development,Economic Development +543128,International Development,International Development +541444,International Relations,International Relations +536794,Economic Development,Economic Development +536793,Defence,Defence +536816,Transportation,Transportation +536827,International Trade,International Trade +536828,International Trade,International Trade +536829,International Trade,International Trade +536830,International Trade,International Trade +536831,International Trade,International Trade +536852,International Trade,International Trade +538850,Taxation and Finance,Taxation and Finance +536905,Foreign Affairs,Foreign Affairs +536905,Natural Resources,Natural Resources +536908,Budget,Budget +536908,Natural Resources,Natural Resources +536911,Foreign Affairs,Foreign Affairs +536913,Foreign Affairs,Foreign Affairs +536913,Natural Resources,Natural Resources +536916,Foreign Affairs,Foreign Affairs +536916,Natural Resources,Natural Resources +536918,Foreign Affairs,Foreign Affairs +536918,Natural Resources,Natural Resources +536928,Industry,Industry +541789,Budget,Budget +541789,Climate,Climate +541789,Economic Development,Economic Development +541789,Energy,Energy +541789,Environment,Environment +541789,Industry,Industry +541789,Intellectual Property,Intellectual Property +541789,International Relations,International Relations +541789,International Trade,International Trade +541789,Mining,Mining +541789,Regional Development,Regional Development +541789,Research and Development,Research and Development +542111,Budget,Budget +542111,Climate,Climate +542111,Economic Development,Economic Development +542111,Energy,Energy +542111,Environment,Environment +541724,Industry,Industry +542111,Mining,Mining +542111,Regional Development,Regional Development +543915,Industry,Industry +543915,Taxation and Finance,Taxation and Finance +536971,Housing,Housing +536974,Climate,Climate +536974,Housing,Housing +536993,Climate,Climate +536992,Climate,Climate +537035,Energy,Energy +537035,Environment,Environment +543869,Energy,Energy +539696,Environment,Environment +543879,Energy,Energy +543873,Environment,Environment +538930,Immigration,Immigration +537207,Climate,Climate +543796,Privacy and Access to Information,Privacy and Access to Information +538776,Education,Éducation +538776,Immigration,Immigration +539929,Agriculture,Agriculture +539929,Consumer Issues,Consumer Issues +539932,Health,Health +542581,Economic Development,Développement économique +542581,Tourism,Tourisme +537184,Housing,Housing +541105,Taxation and Finance,Taxation and Finance +537213,Employment and Training,Employment and Training +543806,International Development,Développement international +540074,Taxation and Finance,Taxation and Finance +537301,Transportation,Transportation +537327,Research and Development,Research and Development +537344,Budget,Budget +537346,Budget,Budget +537382,Natural Resources,Natural Resources +537390,Environment,Environment +537408,Federal-Provincial Relations,Federal-Provincial Relations +537409,Federal-Provincial Relations,Federal-Provincial Relations +537412,Federal-Provincial Relations,Federal-Provincial Relations +537413,Federal-Provincial Relations,Federal-Provincial Relations +539806,Budget,Budget +539806,Economic Development,Economic Development +539806,Industry,Industry +539806,Taxation and Finance,Taxation and Finance +540275,Tourism,Tourism +538591,Industry,Industry +538591,Forestry,Forestry +538591,Natural Resources,Natural Resources +538359,Small Business,Small Business +538359,Agriculture,Agriculture +538359,International Trade,International Trade +537527,Tourism,Tourism +540673,Budget,Budget +540673,Housing,Housing +537617,Budget,Budget +537617,Economic Development,Economic Development +537617,Labour,Labour +537631,Environment,Environment +542336,International Trade,International Trade +542336,Small Business,Small Business +542336,Consumer Issues,Consumer Issues +542328,Consumer Issues,Consumer Issues +542328,Health,Health +542328,Industry,Industry +542328,Justice and Law Enforcement,Justice and Law Enforcement +542328,Taxation and Finance,Taxation and Finance +541402,Economic Development,Economic Development +541402,Environment,Environment +541402,International Trade,International Trade +541402,Employment and Training,Employment and Training +539458,Transportation,Transportation +540405,Industry,Industry +537948,Labour,Labour +538854,Economic Development,Economic Development +538854,Labour,Labour +538854,Transportation,Transportation +537980,Health,Health +544725,Climate,Climate +537985,Defence,Defence +537995,Infrastructure,Infrastructure +537995,Small Business,Small Business +538009,Energy,Energy +538744,Energy,Energy +538743,International Trade,International Trade +538744,Natural Resources,Natural Resources +540830,Health,Health +544725,Government Procurement,Government Procurement +538147,Climate,Climate +538162,Industry,Industry +540760,Energy,Énergie +538165,Industry,Industry +538167,Industry,Industry +544984,Climate,Climate +544984,Environment,Environment +544984,Government Procurement,Government Procurement +544984,Infrastructure,Infrastructure +538411,Tourism,Tourism +538408,Housing,Housing +538631,Economic Development,Economic Development +538631,Forestry,Forestry +538543,Environment,Environment +541719,Environment,Environment +540558,Economic Development,Economic Development +538774,Industry,Industry +538774,Transportation,Transportation +538628,Transportation,Transportation +540515,Tourism,Tourism +538651,Energy,Energy +538651,Labour,Labour +536853,Labour,Labour +538652,Labour,Labour +538653,Labour,Labour +542579,Financial Institutions,Financial Institutions +538671,Defence,Defence +538671,Economic Development,Economic Development +542153,Economic Development,Economic Development +542153,Energy,Energy +544542,Industry,Industry +544540,Media,Media +538705,Industry,Industry +538707,Industry,Industry +539362,Infrastructure,Infrastructure +539542,Justice and Law Enforcement,Justice and Law Enforcement +542211,Climate,Climate +542211,Energy,Energy +542211,Industry,Industry +542211,International Trade,International Trade +542211,Regional Development,Regional Development +542210,Industry,Industry +545120,Environment,Environment +542210,Regional Development,Regional Development +545120,Budget,Budget +545120,International Trade,International Trade +545120,Energy,Energy +542210,Climate,Climate +544897,Energy,Energy +541366,Health,Health +541366,Government Procurement,Government Procurement +538775,Research and Development,Recherche et développement +541112,Climate,Climat +543846,Environment,Environnement +538760,Security,Security +539861,Agriculture,Agriculture +540910,Environment,Environment +539564,Education,Education +539564,Health,Health +542973,Health,Health +542973,Justice and Law Enforcement,Justice and Law Enforcement +539162,Financial Institutions,Financial Institutions +544220,Budget,Budget +540020,Economic Development,Economic Development +540020,Taxation and Finance,Taxation and Finance +544221,Tourism,Tourism +539876,Immigration,Immigration +542152,Economic Development,Economic Development +542862,Health,Health +538865,Municipalities,Municipalities +538866,Economic Development,Economic Development +538866,Municipalities,Municipalities +538867,Municipalities,Municipalities +544592,Consumer Issues,Consumer Issues +540594,Industry,Industry +540594,International Relations,International Relations +544592,Justice and Law Enforcement,Justice and Law Enforcement +540594,Sports,Sports +544592,Taxation and Finance,Taxation and Finance +539078,Health,Santé +539078,Labour,Travail +538892,Animal Welfare,Animal Welfare +539035,Economic Development,Economic Development +540852,Natural Resources,Natural Resources +540860,Economic Development,Economic Development +540860,Federal-Provincial Relations,Federal-Provincial Relations +540860,Financial Institutions,Financial Institutions +540860,Taxation and Finance,Taxation and Finance +539394,Government Procurement,Government Procurement +538946,Energy,Energy +538961,Privacy and Access to Information,Privacy and Access to Information +540643,Infrastructure,Infrastructure +540655,Regional Development,Regional Development +540936,Regional Development,Regional Development +540936,Infrastructure,Infrastructure +540936,Transportation,Transportation +544108,Energy,Energy +544108,Environment,Environment +544108,Mining,Mining +540560,Environment,Environment +540219,Intellectual Property,Intellectual Property +544373,Energy,Energy +544374,Environment,Environment +544374,Mining,Mining +542185,Economic Development,Economic Development +542184,Environment,Environment +542185,Mining,Mining +540520,Transportation,Transportation +542214,Government Procurement,Government Procurement +542214,Environment,Environment +542214,Energy,Energy +542214,Infrastructure,Infrastructure +539117,Constitutional Issues,Constitutional Issues +539142,Industry,Industry +539129,Climate,Climate +539158,Industry,Industry +539165,International Development,International Development +539166,Defence,Defence +539167,Taxation and Finance,Taxation and Finance +539206,Research and Development,Research and Development +542644,Labour,Labour +542120,Employment and Training,Employment and Training +540072,Environment,Environment +540070,Housing,Housing +542286,Climate,Climate +542189,Energy,Energy +542286,Environment,Environment +539272,Federal-Provincial Relations,Federal-Provincial Relations +540843,Government Procurement,Government Procurement +541271,Energy,Energy +541509,Health,Health +544851,Labour,Labour +544851,Transportation,Transportation +543561,Immigration,Immigration +542917,Budget,Budget +542917,Climate,Climate +542917,Energy,Energy +542917,Environment,Environment +542917,Industry,Industry +542917,Regional Development,Regional Development +542917,Research and Development,Research and Development +542917,Transportation,Transportation +541409,Economic Development,Economic Development +541340,Mining,Mining +541409,Taxation and Finance,Taxation and Finance +543122,Climate,Climate +543123,Economic Development,Economic Development +543123,Employment and Training,Employment and Training +543122,Energy,Energy +543122,Environment,Environment +543125,International Trade,International Trade +543121,Natural Resources,Natural Resources +543121,Taxation and Finance,Taxation and Finance +541369,Industry,Industry +541369,Climate,Climate +541369,International Trade,International Trade +541369,Economic Development,Economic Development +541369,Transportation,Transportation +541369,Consumer Issues,Consumer Issues +542279,Education,Education +542279,Employment and Training,Employment and Training +540968,Health,Health +540562,Industry,Industry +539849,Labour,Labour +542298,Foreign Affairs,Foreign Affairs +543898,Economic Development,Economic Development +543898,Environment,Environment +543898,Agriculture,Agriculture +541147,International Trade,International Trade +543440,Federal-Provincial Relations,Federal-Provincial Relations +539726,Immigration,Immigration +544489,Climate,Climate +544490,Energy,Energy +544489,Natural Resources,Natural Resources +539736,Official Languages,Official Languages +539736,Immigration,Immigration +539794,Economic Development,Economic Development +542115,Natural Resources,Natural Resources +539868,International Relations,International Relations +544117,Housing,Housing +540948,Budget,Budget +540948,Climate,Climate +540948,Economic Development,Economic Development +543101,Housing,Housing +540948,Regional Development,Regional Development +543101,Taxation and Finance,Taxation and Finance +539976,Security,Security +539982,Security,Security +541897,Environment,Environment +544106,Tourism,Tourism +540017,Security,National Security/Security +540022,Budget,Budget +540023,Budget,Budget +540073,International Trade,International Trade +541788,International Trade,International Trade +540084,Environment,Environment +540084,Industry,Industry +540084,International Trade,International Trade +540084,Research and Development,Research and Development +540082,Labour,Labour +540086,Education,Education +544266,Government Procurement,Government Procurement +544266,Security,National Security/Security +540169,Climate,Climate +544386,Environment,Environment +544386,Natural Resources,Natural Resources +542154,Foreign Affairs,Foreign Affairs +542154,Immigration,Immigration +542154,International Development,International Development +542154,International Relations,International Relations +540183,Immigration,Immigration +540272,Environment,Environment +540662,Infrastructure,Infrastructure +540662,Regional Development,Regional Development +541768,Infrastructure,Infrastructure +540287,Regional Development,Regional Development +542449,Government Procurement,Government Procurement +540301,Regional Development,Regional Development +542109,Environment,Environment +542109,Climate,Climate +540328,International Trade,International Trade +541914,Climate,Climate +544447,Energy,Energy +540385,Environment,Environment +540385,Housing,Housing +540385,Infrastructure,Infrastructure +540352,Economic Development,Economic Development +540351,Economic Development,Economic Development +540398,International Relations,International Relations +540398,International Trade,International Trade +540398,Taxation and Finance,Taxation and Finance +540823,Health,Health +543066,Foreign Affairs,Foreign Affairs +543066,Health,Health +541058,Transportation,Transportation +540379,Economic Development,Economic Development +540425,Natural Resources,Natural Resources +543256,Taxation and Finance,Taxation and Finance +540383,Industry,Industry +540383,Taxation and Finance,Taxation and Finance +543256,Small Business,Small Business +541868,International Trade,International Trade +541868,Transportation,Transportation +544444,Climate,Climate +544444,Transportation,Transportation +540707,Employment and Training,Employment and Training +545159,Government Procurement,Government Procurement +540547,Taxation and Finance,Taxation and Finance +544491,Environment,Environment +544492,Economic Development,Economic Development +544490,Federal-Provincial Relations,Federal-Provincial Relations +544492,Regional Development,Regional Development +540945,Transportation,Transportation +540945,Municipalities,Municipalities +540824,Research and Development,Recherche et développement +545161,Environment,Environment +545160,Energy,Energy +540490,Federal-Provincial Relations,Federal-Provincial Relations +543280,Climate,Climate +543280,Economic Development,Economic Development +543280,Energy,Energy +543280,Environment,Environment +543280,Industry,Industry +541790,Environment,Environment +541790,International Trade,International Trade +541790,Transportation,Transportation +540523,Transportation,Transportation +542885,Housing,Housing +542885,Taxation and Finance,Taxation and Finance +542278,Employment and Training,Employment and Training +542278,Education,Education +542481,Agriculture,Agriculture +540746,Official Languages,Bilinguisme/Langues officielles +540746,Budget,Budget +540746,Economic Development,Développement économique +540746,Infrastructure,Infrastructure +540746,Child Services,Services à l’enfance +540746,Tourism,Tourisme +540581,Environment,Environment +540581,Taxation and Finance,Taxation and Finance +540581,Economic Development,Economic Development +540581,Transportation,Transportation +541835,Industry,Industry +541835,Consumer Issues,Consumer Issues +541121,Environment,Environment +541121,Natural Resources,Natural Resources +542960,Privacy and Access to Information,Privacy and Access to Information +540627,International Trade,International Trade +540627,Taxation and Finance,Taxation and Finance +540675,Taxation and Finance,Taxation and Finance +540676,Taxation and Finance,Taxation and Finance +540987,Education,Education +542394,Immigration,Immigration +540688,Industry,Industry +540689,Industry,Industry +540692,Defence,Defence +540738,Housing,Housing +540738,Municipalities,Municipalities +540740,Climate,Climate +540748,Health,Health +541833,Health,Health +542068,International Trade,International Trade +542068,Industry,Industry +542068,Taxation and Finance,Taxation and Finance +542488,Economic Development,Economic Development +542488,Industry,Industry +542227,Agriculture,Agriculture +542227,Energy,Energy +542313,Environment,Environment +542213,Agriculture,Agriculture +542598,Defence,Defence +542598,Foreign Affairs,Foreign Affairs +542598,Government Procurement,Government Procurement +542599,Industry,Industry +542598,International Relations,International Relations +542598,International Trade,International Trade +544718,Mining,Mining +544455,Labour,Labour +540845,Federal-Provincial Relations,Federal-Provincial Relations +540845,Regional Development,Regional Development +543896,Infrastructure,Infrastructure +540850,Health,Health +542321,Employment and Training,Employment and Training +542321,Immigration,Immigration +542421,Climate,Climate +542421,Economic Development,Economic Development +542421,Energy,Energy +542421,Environment,Environment +542421,Natural Resources,Natural Resources +544584,Government Procurement,Government Procurement +544955,Health,Health +542240,Health,Health +542240,Government Procurement,Government Procurement +544240,Agriculture,Agriculture +544240,Economic Development,Economic Development +544240,Employment and Training,Employment and Training +544240,Environment,Environment +544240,Labour,Labour +544240,Small Business,Small Business +542912,Defence,Defence +540947,Research and Development,Research and Development +540977,Industry,Industry +544086,Health,Health +544086,Housing,Housing +541060,Consumer Issues,Consumer Issues +541072,Federal-Provincial Relations,Federal-Provincial Relations +541072,Housing,Housing +541072,Infrastructure,Infrastructure +541072,Justice and Law Enforcement,Justice and Law Enforcement +541072,Privacy and Access to Information,Privacy and Access to Information +541960,Economic Development,Economic Development +541960,Energy,Energy +542145,Employment and Training,Employment and Training +542145,Industry,Industry +542145,Education,Education +541198,Infrastructure,Infrastructure +544078,Environment,Environment +544078,Labour,Labour +544078,Agriculture,Agriculture +544943,Justice and Law Enforcement,Justice and Law Enforcement +541250,Economic Development,Economic Development +542134,Taxation and Finance,Taxation and Finance +544719,Economic Development,Economic Development +544719,Small Business,Small Business +541652,Infrastructure,Infrastructure +541654,Municipalities,Municipalities +543939,Industry,Industry +543939,Small Business,Small Business +543939,Financial Institutions,Financial Institutions +543939,Taxation and Finance,Taxation and Finance +543939,Consumer Issues,Consumer Issues +545155,Natural Resources,Natural Resources +545155,Taxation and Finance,Taxation and Finance +545158,Natural Resources,Natural Resources +545158,Taxation and Finance,Taxation and Finance +545157,Natural Resources,Natural Resources +545157,Taxation and Finance,Taxation and Finance +545154,Natural Resources,Natural Resources +541325,Climate,Climate +541325,Infrastructure,Infrastructure +541325,Transportation,Transportation +541326,Climate,Climate +541326,Infrastructure,Infrastructure +541326,Transportation,Transportation +545156,Natural Resources,Natural Resources +545156,Taxation and Finance,Taxation and Finance +541427,Intellectual Property,Intellectual Property +541429,Official Languages,Official Languages +544223,Health,Health +544223,Labour,Labour +541477,Budget,Budget +541729,Government Procurement,Government Procurement +541729,Health,Health +543737,Natural Resources,Natural Resources +541583,Climate,Climate +541588,Budget,Budget +541588,Climate,Climate +541644,Animal Welfare,Animal Welfare +541646,Animal Welfare,Animal Welfare +541647,Animal Welfare,Animal Welfare +543190,Budget,Budget +544752,Health,Health +543186,Sports,Sports +541843,Sports,Sports +541865,Health,Health +541879,Taxation and Finance,Taxation and Finance +545178,Taxation and Finance,Impôts et finances +542778,Media,Médias +542243,Media,Media +544852,Media,Media +543069,Economic Development,Economic Development +543069,Employment and Training,Employment and Training +543069,Government Procurement,Government Procurement +543068,Industry,Industry +543069,Intellectual Property,Intellectual Property +543069,Research and Development,Research and Development +544252,Economic Development,Economic Development +544252,Immigration,Immigration +544247,Industry,Industry +544255,Intellectual Property,Intellectual Property +544247,International Trade,International Trade +544257,Research and Development,Research and Development +544252,Taxation and Finance,Taxation and Finance +544239,Child Services,Child Services +544239,Health,Health +544238,Education,Education +544238,Budget,Budget +542147,Environment,Environment +542951,Defence,Defence +542951,Economic Development,Economic Development +542245,Regional Development,Regional Development +542264,Budget,Budget +542264,Health,Health +542264,Sports,Sports +542156,Internal Trade,Internal Trade +542157,Federal-Provincial Relations,Federal-Provincial Relations +544304,Regional Development,Regional Development +544304,Economic Development,Economic Development +542229,Intellectual Property,Intellectual Property +542229,Economic Development,Economic Development +542229,Industry,Industry +542229,Health,Health +542229,Employment and Training,Employment and Training +542229,Government Procurement,Government Procurement +542229,Budget,Budget +542229,Immigration,Immigration +542229,Education,Education +542229,International Trade,International Trade +542187,Employment and Training,Employment and Training +542197,Economic Development,Economic Development +542197,Intellectual Property,Intellectual Property +542203,Employment and Training,Employment and Training +542203,Economic Development,Economic Development +542203,Regional Development,Regional Development +542225,Infrastructure,Infrastructure +542226,Economic Development,Economic Development +543895,Justice and Law Enforcement,Justice and Law Enforcement +543895,Small Business,Small Business +543197,Research and Development,Research and Development +543197,Economic Development,Economic Development +542247,Immigration,Immigration +542247,Education,Education +543906,Climate,Climate +543906,Energy,Energy +543906,Industry,Industry +543906,Taxation and Finance,Taxation and Finance +543966,Transportation,Transportation +542867,Employment and Training,Employment and Training +542868,Budget,Budget +542869,Research and Development,Research and Development +542869,Health,Health +542738,Research and Development,Research and Development +542738,Health,Health +544052,Climate,Climate +544052,Taxation and Finance,Taxation and Finance +544052,Industry,Industry +544052,Energy,Energy +542288,International Trade,International Trade +542468,Health,Health +542469,Budget,Budget +542469,Sports,Sports +542312,Foreign Affairs,Foreign Affairs +543352,Climate,Climate +543352,Economic Development,Economic Development +543352,Energy,Energy +543352,Environment,Environment +543352,Industry,Industry +543352,Transportation,Transportation +544743,Health,Health +542325,Privacy and Access to Information,Privacy and Access to Information +544118,Industry,Industry +544888,Climate,Climate +544888,Environment,Environment +544190,Agriculture,Agriculture +544189,Economic Development,Economic Development +544190,Transportation,Transportation +542520,Financial Institutions,Financial Institutions +543295,Economic Development,Développement économique +542528,Consumer Issues,Consumer Issues +542575,Industry,Industry +543366,Climate,Climate +543366,Economic Development,Economic Development +543366,Energy,Energy +543366,Environment,Environment +543366,Industry,Industry +543366,Transportation,Transportation +543889,Agriculture,Agriculture +543889,Labour,Labour +542603,Animal Welfare,Animal Welfare +542604,Animal Welfare,Animal Welfare +542607,Child Services,Child Services +542860,International Development,International Development +545035,Education,Éducation +545132,Environment,Environment +545133,Economic Development,Economic Development +545133,Industry,Industry +545133,Infrastructure,Infrastructure +545133,Climate,Climate +545133,Energy,Energy +542917,Economic Development,Economic Development +542917,Intellectual Property,Intellectual Property +542917,Municipalities,Municipalities +544846,Housing,Housing +542838,Taxation and Finance,Taxation and Finance +542836,Taxation and Finance,Taxation and Finance +543264,Economic Development,Economic Development +543294,Budget,Budget +543294,Labour,Labour +543294,Small Business,Small Business +543310,International Trade,International Trade +543391,Economic Development,Economic Development +543789,Health,Health +543821,Tourism,Tourism +543902,International Trade,International Trade +543969,Taxation and Finance,Taxation and Finance +543965,Budget,Budget +543977,Taxation and Finance,Taxation and Finance +544604,Health,Health +544604,Research and Development,Research and Development +544023,Natural Resources,Natural Resources +544071,Environment,Environment +544071,Economic Development,Economic Development +544071,Natural Resources,Natural Resources +544139,Energy,Energy +544139,Mining,Mining +544139,Natural Resources,Natural Resources +544142,International Trade,International Trade +544142,Industry,Industry +544141,Employment and Training,Employment and Training +544141,Education,Education +544152,Government Procurement,Government Procurement +544295,Transportation,Transportation +544297,Climate,Climate +544297,Natural Resources,Natural Resources +544300,Climate,Climate +544300,Natural Resources,Natural Resources +544301,Climate,Climate +544301,Natural Resources,Natural Resources +544302,Climate,Climate +544305,Climate,Climate +544305,Natural Resources,Natural Resources +544306,Climate,Climate +544976,Energy,Energy +544983,Climate,Climate +544981,Government Procurement,Government Procurement +544739,Infrastructure,Infrastructure +544740,Employment and Training,Employment and Training +544738,Regional Development,Regional Development +544740,Education,Education +544739,Housing,Housing +544990,Research and Development,Research and Development +544995,Employment and Training,Employment and Training +544990,Education,Education +544590,Natural Resources,Natural Resources +544590,Transportation,Transportation +544765,Economic Development,Développement économique +544765,Industry,Industrie +544765,Small Business,Petites entreprises +544782,Infrastructure,Infrastructure +544771,Tourism,Tourisme +544998,Constitutional Issues,Constitutional Issues +545000,Infrastructure,Infrastructure +545018,Taxation and Finance,Taxation and Finance +545020,Taxation and Finance,Taxation and Finance +545055,Transportation,Transportation +545159,Agriculture,Agriculture +545163,Employment and Training,Employment and Training +545163,Environment,Environment +545163,Regional Development,Regional Development +545163,Research and Development,Research and Development +540377,Foreign Affairs,Foreign Affairs +536837,Agriculture,Agriculture +536836,Agriculture,Agriculture +536837,Environment,Environment +536836,Environment,Environment +536837,International Trade,International Trade +536836,International Trade,International Trade +536840,Agriculture,Agriculture +536840,Environment,Environment +536840,International Trade,International Trade +541444,Economic Development,Economic Development +541786,Budget,Budget +541781,Budget,Budget +541786,Climate,Climate +541781,Climate,Climate +541786,Economic Development,Economic Development +541781,Economic Development,Economic Development +541786,Energy,Energy +541781,Energy,Energy +541786,Environment,Environment +541781,Environment,Environment +541786,Industry,Industry +541781,Industry,Industry +541786,Intellectual Property,Intellectual Property +541781,Intellectual Property,Intellectual Property +541786,International Relations,International Relations +541781,International Relations,International Relations +541786,International Trade,International Trade +541781,International Trade,International Trade +541786,Mining,Mining +541781,Mining,Mining +541786,Regional Development,Regional Development +541781,Regional Development,Regional Development +541786,Research and Development,Research and Development +541781,Research and Development,Research and Development +539833,Budget,Budget +539833,Climate,Climate +541724,Economic Development,Economic Development +539833,Economic Development,Economic Development +541724,Energy,Energy +539833,Energy,Energy +541724,Environment,Environment +539833,Environment,Environment +539833,Industry,Industry +542111,Industry,Industry +541724,Mining,Mining +539833,Mining,Mining +543879,Environment,Environment +543878,Environment,Environment +543869,Environment,Environment +539672,Environment,Environment +539696,Energy,Energy +543878,Energy,Energy +543873,Energy,Energy +539672,Energy,Energy +538929,Immigration,Immigration +537065,Immigration,Immigration +538931,Immigration,Immigration +541212,Privacy and Access to Information,Privacy and Access to Information +537206,Privacy and Access to Information,Privacy and Access to Information +537215,Education,Éducation +537088,Education,Éducation +540863,Education,Éducation +540742,Education,Éducation +540462,Education,Éducation +538895,Education,Éducation +538894,Education,Éducation +537215,Immigration,Immigration +537088,Immigration,Immigration +542423,Immigration,Immigration +542422,Immigration,Immigration +540863,Immigration,Immigration +540742,Immigration,Immigration +540462,Immigration,Immigration +538895,Immigration,Immigration +538894,Immigration,Immigration +539929,Health,Health +542174,Economic Development,Développement économique +542174,Tourism,Tourisme +539475,Budget,Budget +539475,Housing,Housing +542335,International Trade,International Trade +542295,International Trade,International Trade +542416,International Trade,International Trade +542415,International Trade,International Trade +542338,International Trade,International Trade +542335,Small Business,Small Business +542295,Small Business,Small Business +542416,Small Business,Small Business +542415,Small Business,Small Business +542338,Small Business,Small Business +542335,Consumer Issues,Consumer Issues +542295,Consumer Issues,Consumer Issues +542416,Consumer Issues,Consumer Issues +542415,Consumer Issues,Consumer Issues +542338,Consumer Issues,Consumer Issues +539468,Economic Development,Economic Development +539468,Environment,Environment +539468,International Trade,International Trade +539468,Employment and Training,Employment and Training +540404,Industry,Industry +538624,Industry,Industry +538853,Economic Development,Economic Development +538853,Labour,Labour +538853,Transportation,Transportation +538743,Energy,Energy +538742,Energy,Energy +544458,Energy,Energy +542297,Energy,Energy +538742,International Trade,International Trade +544458,International Trade,International Trade +542297,International Trade,International Trade +538744,International Trade,International Trade +538743,Natural Resources,Natural Resources +538742,Natural Resources,Natural Resources +544458,Natural Resources,Natural Resources +539393,Health,Health +538207,Climate,Climate +538207,Infrastructure,Infrastructure +538630,Economic Development,Economic Development +538629,Economic Development,Economic Development +538822,Economic Development,Economic Development +538630,Forestry,Forestry +538629,Forestry,Forestry +538822,Forestry,Forestry +538589,Industry,Industry +538932,Tourism,Tourism +538851,Energy,Energy +544541,Industry,Industry +544539,Media,Media +542210,International Trade,International Trade +542210,Energy,Energy +541365,Health,Health +541365,Government Procurement,Government Procurement +541112,Environment,Environnement +539861,Environment,Environment +542347,Health,Health +541981,Budget,Budget +540020,Budget,Budget +544221,Budget,Budget +544220,Tourism,Tourism +542148,Economic Development,Economic Development +541516,Consumer Issues,Consumer Issues +540594,Consumer Issues,Consumer Issues +541516,Justice and Law Enforcement,Justice and Law Enforcement +540594,Justice and Law Enforcement,Justice and Law Enforcement +539034,Economic Development,Economic Development +539016,Economic Development,Economic Development +542301,Economic Development,Economic Development +542273,Economic Development,Economic Development +542183,Economic Development,Economic Development +540857,Economic Development,Economic Development +540856,Economic Development,Economic Development +540855,Economic Development,Economic Development +540852,Economic Development,Economic Development +540667,Economic Development,Economic Development +540666,Economic Development,Economic Development +540665,Economic Development,Economic Development +540443,Economic Development,Economic Development +539494,Economic Development,Economic Development +539208,Economic Development,Economic Development +540443,Natural Resources,Natural Resources +539494,Natural Resources,Natural Resources +542301,Natural Resources,Natural Resources +542273,Natural Resources,Natural Resources +542183,Natural Resources,Natural Resources +540857,Natural Resources,Natural Resources +540856,Natural Resources,Natural Resources +540855,Natural Resources,Natural Resources +542477,Infrastructure,Infrastructure +542476,Infrastructure,Infrastructure +542462,Infrastructure,Infrastructure +542461,Infrastructure,Infrastructure +542455,Infrastructure,Infrastructure +540655,Infrastructure,Infrastructure +540652,Infrastructure,Infrastructure +540652,Regional Development,Regional Development +540643,Regional Development,Regional Development +542477,Regional Development,Regional Development +542476,Regional Development,Regional Development +542462,Regional Development,Regional Development +542461,Regional Development,Regional Development +540935,Regional Development,Regional Development +540935,Infrastructure,Infrastructure +540935,Transportation,Transportation +544107,Energy,Energy +544105,Energy,Energy +544107,Environment,Environment +544105,Environment,Environment +544107,Mining,Mining +544105,Mining,Mining +540214,Intellectual Property,Intellectual Property +544373,Environment,Environment +544372,Environment,Environment +544373,Mining,Mining +544372,Mining,Mining +542184,Economic Development,Economic Development +542182,Economic Development,Economic Development +542184,Mining,Mining +542182,Mining,Mining +542641,Labour,Labour +540865,Labour,Labour +540864,Labour,Labour +539262,Labour,Labour +539260,Labour,Labour +539259,Labour,Labour +539257,Labour,Labour +539256,Labour,Labour +540072,Employment and Training,Employment and Training +540070,Environment,Environment +540401,Climate,Climate +542146,Energy,Energy +540401,Energy,Energy +542563,Energy,Energy +542286,Energy,Energy +540401,Environment,Environment +541270,Energy,Energy +541435,Energy,Energy +541435,Industry,Industry +541340,Economic Development,Economic Development +541339,Economic Development,Economic Development +541339,Mining,Mining +541340,Taxation and Finance,Taxation and Finance +541339,Taxation and Finance,Taxation and Finance +545154,Taxation and Finance,Taxation and Finance +543121,Climate,Climate +543120,Climate,Climate +543126,Climate,Climate +543125,Climate,Climate +543124,Climate,Climate +543123,Climate,Climate +543121,Economic Development,Economic Development +543120,Economic Development,Economic Development +543125,Economic Development,Economic Development +543124,Economic Development,Economic Development +543121,Employment and Training,Employment and Training +543120,Employment and Training,Employment and Training +543121,Energy,Energy +543120,Energy,Energy +543126,Energy,Energy +543125,Energy,Energy +543124,Energy,Energy +543123,Energy,Energy +543121,Environment,Environment +543120,Environment,Environment +543126,Environment,Environment +543124,Environment,Environment +543123,Environment,Environment +543123,International Trade,International Trade +543121,International Trade,International Trade +543120,Natural Resources,Natural Resources +543125,Natural Resources,Natural Resources +543123,Natural Resources,Natural Resources +541368,Industry,Industry +541368,Climate,Climate +541368,International Trade,International Trade +541368,Economic Development,Economic Development +541368,Transportation,Transportation +541368,Consumer Issues,Consumer Issues +540420,Health,Health +539847,Labour,Labour +542008,Foreign Affairs,Foreign Affairs +540369,Foreign Affairs,Foreign Affairs +541524,Federal-Provincial Relations,Federal-Provincial Relations +541523,Federal-Provincial Relations,Federal-Provincial Relations +544488,Climate,Climate +540449,Climate,Climate +544491,Climate,Climate +544490,Climate,Climate +544489,Energy,Energy +544488,Energy,Energy +544488,Natural Resources,Natural Resources +544490,Natural Resources,Natural Resources +542880,Housing,Housing +540948,Housing,Housing +543102,Housing,Housing +542880,Taxation and Finance,Taxation and Finance +540948,Taxation and Finance,Taxation and Finance +543102,Taxation and Finance,Taxation and Finance +544097,Tourism,Tourism +544265,Government Procurement,Government Procurement +544263,Government Procurement,Government Procurement +544265,Security,National Security/Security +544263,Security,National Security/Security +541870,Natural Resources,Natural Resources +541869,Natural Resources,Natural Resources +540658,Infrastructure,Infrastructure +540657,Infrastructure,Infrastructure +542497,Infrastructure,Infrastructure +542496,Infrastructure,Infrastructure +540658,Regional Development,Regional Development +540657,Regional Development,Regional Development +542497,Regional Development,Regional Development +542496,Regional Development,Regional Development +540810,Environment,Environment +540810,Climate,Climate +541914,Energy,Energy +540350,Economic Development,Economic Development +541058,Foreign Affairs,Foreign Affairs +540425,Foreign Affairs,Foreign Affairs +541058,Health,Health +540425,Health,Health +540425,Transportation,Transportation +541935,Taxation and Finance,Taxation and Finance +540384,Taxation and Finance,Taxation and Finance +540384,Small Business,Small Business +544491,Economic Development,Economic Development +544490,Economic Development,Economic Development +544489,Federal-Provincial Relations,Federal-Provincial Relations +544488,Federal-Provincial Relations,Federal-Provincial Relations +544490,Regional Development,Regional Development +540464,Research and Development,Recherche et développement +542962,Environment,Environment +542972,Energy,Energy +542964,Energy,Energy +545161,Energy,Energy +542884,Housing,Housing +542882,Housing,Housing +542884,Taxation and Finance,Taxation and Finance +541833,Industry,Industry +541825,Industry,Industry +541823,Industry,Industry +540653,Privacy and Access to Information,Privacy and Access to Information +540626,International Trade,International Trade +540626,Taxation and Finance,Taxation and Finance +542394,Education,Education +542319,Education,Education +542319,Immigration,Immigration +540987,Immigration,Immigration +541825,Health,Health +541823,Health,Health +541835,Health,Health +542196,Agriculture,Agriculture +542106,Agriculture,Agriculture +542196,Energy,Energy +542106,Energy,Energy +544930,Energy,Energy +542313,Energy,Energy +542176,Defence,Defence +542175,Defence,Defence +542599,Defence,Defence +542176,Foreign Affairs,Foreign Affairs +542175,Foreign Affairs,Foreign Affairs +542599,Foreign Affairs,Foreign Affairs +542176,Government Procurement,Government Procurement +542175,Government Procurement,Government Procurement +542599,Government Procurement,Government Procurement +542598,Industry,Industry +542176,Industry,Industry +542175,Industry,Industry +542176,International Relations,International Relations +542175,International Relations,International Relations +542599,International Relations,International Relations +542176,International Trade,International Trade +542175,International Trade,International Trade +542599,International Trade,International Trade +540833,Labour,Labour +540832,Labour,Labour +541188,Infrastructure,Infrastructure +541517,Employment and Training,Employment and Training +541517,Immigration,Immigration +540969,Immigration,Immigration +542797,Government Procurement,Government Procurement +544584,Health,Health +542797,Health,Health +541040,Defence,Defence +541651,Infrastructure,Infrastructure +541650,Infrastructure,Infrastructure +541654,Infrastructure,Infrastructure +541652,Municipalities,Municipalities +541392,Taxation and Finance,Taxation and Finance +544222,Health,Health +544222,Labour,Labour +541473,Budget,Budget +541471,Budget,Budget +541569,Budget,Budget +541565,Budget,Budget +541505,Budget,Budget +541504,Budget,Budget +541503,Budget,Budget +541490,Budget,Budget +541478,Budget,Budget +541727,Government Procurement,Government Procurement +541727,Health,Health +541585,Climate,Climate +543186,Budget,Budget +543185,Budget,Budget +544752,Budget,Budget +543195,Budget,Budget +543194,Budget,Budget +543193,Budget,Budget +543191,Budget,Budget +543195,Health,Health +543194,Health,Health +543193,Health,Health +543191,Health,Health +543190,Health,Health +543186,Health,Health +543185,Health,Health +543185,Sports,Sports +544752,Sports,Sports +543195,Sports,Sports +543194,Sports,Sports +543193,Sports,Sports +543191,Sports,Sports +543190,Sports,Sports +542779,Taxation and Finance,Impôts et finances +542778,Taxation and Finance,Impôts et finances +543068,Economic Development,Economic Development +543068,Research and Development,Research and Development +544247,Economic Development,Economic Development +544255,Research and Development,Research and Development +544238,Health,Health +544237,Health,Health +544237,Education,Education +544237,Budget,Budget +542263,Budget,Budget +542263,Health,Health +542262,Health,Health +542263,Sports,Sports +543964,Transportation,Transportation +543963,Transportation,Transportation +543961,Transportation,Transportation +543959,Transportation,Transportation +543958,Transportation,Transportation +543957,Transportation,Transportation +543955,Transportation,Transportation +543953,Transportation,Transportation +543952,Transportation,Transportation +543968,Transportation,Transportation +543967,Transportation,Transportation +542868,Research and Development,Research and Development +542867,Research and Development,Research and Development +542868,Health,Health +542867,Health,Health +542737,Research and Development,Research and Development +542737,Health,Health +542736,Health,Health +542468,Budget,Budget +544742,Health,Health +544741,Health,Health +544747,Health,Health +544744,Health,Health +544115,Industry,Industry +544189,Agriculture,Agriculture +544189,Transportation,Transportation +545034,Education,Éducation +545033,Education,Éducation +545032,Education,Éducation +545031,Education,Éducation +545029,Education,Éducation +545038,Education,Éducation +545036,Education,Éducation +545130,Environment,Environment +545133,Environment,Environment +545132,Economic Development,Economic Development +545130,Economic Development,Economic Development +545132,Industry,Industry +545130,Industry,Industry +545132,Infrastructure,Infrastructure +545130,Infrastructure,Infrastructure +545132,Climate,Climate +545130,Climate,Climate +545132,Energy,Energy +545130,Energy,Energy +544845,Housing,Housing +543309,International Trade,International Trade +543307,International Trade,International Trade +543313,International Trade,International Trade +543312,International Trade,International Trade +543311,International Trade,International Trade +544138,Energy,Energy +544134,Energy,Energy +544138,Mining,Mining +544134,Mining,Mining +544138,Natural Resources,Natural Resources +544134,Natural Resources,Natural Resources +544982,Climate,Climate +544980,Government Procurement,Government Procurement +544979,Government Procurement,Government Procurement +544983,Government Procurement,Government Procurement +544982,Government Procurement,Government Procurement +544738,Infrastructure,Infrastructure +544738,Education,Education +544989,Research and Development,Research and Development +544988,Research and Development,Research and Development +544995,Research and Development,Research and Development +544993,Research and Development,Research and Development +544992,Research and Development,Research and Development +544993,Employment and Training,Employment and Training +544992,Employment and Training,Employment and Training +544990,Employment and Training,Employment and Training +544989,Employment and Training,Employment and Training +544988,Employment and Training,Employment and Training +544989,Education,Education +544988,Education,Education +544995,Education,Education +544993,Education,Education +544992,Education,Education +544770,Tourism,Tourisme +523866,Science and Technology,Science and Technology +520797,Science and Technology,Science and Technology +542489,Science and Technology,Science and Technology +542463,Science and Technology,Science and Technology +538986,Science and Technology,Science and Technology +538983,Science and Technology,Science and Technology +535986,Aboriginal Affairs,Aboriginal Affairs +522123,Aboriginal Affairs,Aboriginal Affairs +532829,Aboriginal Affairs,Aboriginal Affairs +522058,Aboriginal Affairs,Aboriginal Affairs +529004,Arts and Culture,Arts and Culture +528993,Arts and Culture,Arts and Culture +526581,Aboriginal Affairs,Aboriginal Affairs +529435,Aboriginal Affairs,Aboriginal Affairs +526239,Aboriginal Affairs,Aboriginal Affairs +538605,Aboriginal Affairs,Aboriginal Affairs +532522,Aboriginal Affairs,Aboriginal Affairs +523494,Aboriginal Affairs,Aboriginal Affairs +536266,Aboriginal Affairs,Aboriginal Affairs +532830,Aboriginal Affairs,Aboriginal Affairs +522053,Aboriginal Affairs,Aboriginal Affairs +535985,Aboriginal Affairs,Aboriginal Affairs +522124,Aboriginal Affairs,Aboriginal Affairs +521929,Science and Technology,Science and Technology +523658,Science and Technology,Science and Technology +521889,Science and Technology,Science and Technology +540395,Science and Technology,Science and Technology +538617,Science and Technology,Science and Technology +538615,Science and Technology,Science and Technology +529780,Science and Technology,Science and Technology +526926,Science and Technology,Science and Technology +525048,Science and Technology,Science and Technology +524429,Science and Technology,Science and Technology +521108,Aboriginal Affairs,Aboriginal Affairs +526919,Aboriginal Affairs,Aboriginal Affairs +521434,Arts and Culture,Arts and Culture +521397,Arts and Culture,Arts and Culture +526914,Arts and Culture,Arts and Culture +526775,Arts and Culture,Arts and Culture +521849,Science and Technology,Science and Technology +522707,Science and Technology,Sciences et technologies +522704,Science and Technology,Sciences et technologies +525764,Science and Technology,Science and Technology +525761,Science and Technology,Science and Technology +528606,Science and Technology,Science and Technology +532833,Aboriginal Affairs,Aboriginal Affairs +522125,Aboriginal Affairs,Aboriginal Affairs +532831,Aboriginal Affairs,Aboriginal Affairs +522054,Aboriginal Affairs,Aboriginal Affairs +540394,Science and Technology,Science and Technology +524511,Science and Technology,Science and Technology +533814,Aboriginal Affairs,Aboriginal Affairs +533813,Aboriginal Affairs,Aboriginal Affairs +543107,Aboriginal Affairs,Aboriginal Affairs +537288,Aboriginal Affairs,Aboriginal Affairs +537286,Aboriginal Affairs,Aboriginal Affairs +528557,Broadcasting,Broadcasting +541457,Science and Technology,Science and Technology +543284,Science and Technology,Science and Technology +521528,Science and Technology,Science and Technology +521527,Science and Technology,Science and Technology +521530,Science and Technology,Science and Technology +521638,Science and Technology,Science and Technology +521634,Science and Technology,Science and Technology +521719,Arts and Culture,Arts and Culture +523509,Aboriginal Affairs,Aboriginal Affairs +522978,Aboriginal Affairs,Aboriginal Affairs +532421,Aboriginal Affairs,Aboriginal Affairs +543910,Arts and Culture,Arts and Culture +537752,Arts and Culture,Arts and Culture +537752,Broadcasting,Broadcasting +523835,Broadcasting,Broadcasting +526973,Broadcasting,Broadcasting +525940,Broadcasting,Broadcasting +543096,Broadcasting,Broadcasting +541319,Broadcasting,Broadcasting +533278,Broadcasting,Broadcasting +532737,Broadcasting,Broadcasting +532587,Broadcasting,Broadcasting +524607,Science and Technology,Science and Technology +544214,Science and Technology,Science and Technology +539863,Science and Technology,Science and Technology +539862,Science and Technology,Science and Technology +539846,Science and Technology,Science and Technology +539844,Science and Technology,Science and Technology +539843,Science and Technology,Science and Technology +539835,Science and Technology,Science and Technology +534332,Science and Technology,Science and Technology +530596,Science and Technology,Science and Technology +527592,Science and Technology,Science and Technology +527589,Science and Technology,Science and Technology +527489,Science and Technology,Science and Technology +527488,Science and Technology,Science and Technology +527487,Science and Technology,Science and Technology +524611,Science and Technology,Science and Technology +523956,Telecommunications,Telecommunications +525390,Broadcasting,Broadcasting +530191,Arts and Culture,Arts et culture +530189,Arts and Culture,Arts et culture +536294,Arts and Culture,Arts et culture +536293,Arts and Culture,Arts et culture +536292,Arts and Culture,Arts et culture +530284,Arts and Culture,Arts et culture +530193,Arts and Culture,Arts et culture +526802,Arts and Culture,Arts and Culture +523558,Arts and Culture,Arts and Culture +540711,Arts and Culture,Arts and Culture +536475,Arts and Culture,Arts and Culture +531726,Arts and Culture,Arts and Culture +530756,Arts and Culture,Arts and Culture +529984,Arts and Culture,Arts and Culture +527732,Aboriginal Affairs,Aboriginal Affairs +526968,Aboriginal Affairs,Aboriginal Affairs +535071,Aboriginal Affairs,Aboriginal Affairs +530676,Aboriginal Affairs,Aboriginal Affairs +530675,Aboriginal Affairs,Aboriginal Affairs +532523,Aboriginal Affairs,Aboriginal Affairs +532520,Aboriginal Affairs,Aboriginal Affairs +538760,Aboriginal Affairs,Aboriginal Affairs +532529,Aboriginal Affairs,Aboriginal Affairs +532527,Aboriginal Affairs,Aboriginal Affairs +532525,Aboriginal Affairs,Aboriginal Affairs +523630,Science and Technology,Science and Technology +528598,Broadcasting,Broadcasting +528598,Arts and Culture,Arts and Culture +535704,Arts and Culture,Arts and Culture +533159,Arts and Culture,Arts and Culture +538273,Arts and Culture,Arts and Culture +538262,Arts and Culture,Arts and Culture +538257,Arts and Culture,Arts and Culture +538172,Arts and Culture,Arts and Culture +535857,Arts and Culture,Arts and Culture +525984,Aboriginal Affairs,Aboriginal Affairs +526212,Aboriginal Affairs,Aboriginal Affairs +543780,Aboriginal Affairs,Aboriginal Affairs +541429,Aboriginal Affairs,Aboriginal Affairs +539793,Aboriginal Affairs,Aboriginal Affairs +537726,Aboriginal Affairs,Aboriginal Affairs +537725,Aboriginal Affairs,Aboriginal Affairs +537723,Aboriginal Affairs,Aboriginal Affairs +537717,Aboriginal Affairs,Aboriginal Affairs +534352,Aboriginal Affairs,Aboriginal Affairs +531954,Aboriginal Affairs,Aboriginal Affairs +529265,Aboriginal Affairs,Aboriginal Affairs +525464,Arts and Culture,Arts and Culture +527332,Science and Technology,Science and Technology +523864,Science and Technology,Science and Technology +540654,Science and Technology,Science and Technology +540632,Science and Technology,Science and Technology +540631,Science and Technology,Science and Technology +536574,Science and Technology,Science and Technology +536573,Science and Technology,Science and Technology +534005,Science and Technology,Science and Technology +533010,Science and Technology,Science and Technology +533006,Science and Technology,Science and Technology +532994,Science and Technology,Science and Technology +530390,Science and Technology,Science and Technology +530382,Science and Technology,Science and Technology +530376,Science and Technology,Science and Technology +530374,Science and Technology,Science and Technology +530368,Science and Technology,Science and Technology +530365,Science and Technology,Science and Technology +530362,Science and Technology,Science and Technology +540287,Broadcasting,Broadcasting +540287,Telecommunications,Telecommunications +530370,Science and Technology,Science and Technology +527331,Science and Technology,Science and Technology +542487,Science and Technology,Science and Technology +540656,Science and Technology,Science and Technology +533004,Science and Technology,Science and Technology +533002,Science and Technology,Science and Technology +530976,Science and Technology,Science and Technology +534725,Science and Technology,Science and Technology +534723,Science and Technology,Science and Technology +537688,Science and Technology,Science and Technology +537686,Science and Technology,Science and Technology +536235,Science and Technology,Science and Technology +534736,Science and Technology,Science and Technology +534733,Science and Technology,Science and Technology +529463,Aboriginal Affairs,Aboriginal Affairs +529456,Aboriginal Affairs,Aboriginal Affairs +544234,Aboriginal Affairs,Aboriginal Affairs +541969,Aboriginal Affairs,Aboriginal Affairs +539827,Aboriginal Affairs,Aboriginal Affairs +539826,Aboriginal Affairs,Aboriginal Affairs +532417,Aboriginal Affairs,Aboriginal Affairs +531963,Aboriginal Affairs,Aboriginal Affairs +531962,Aboriginal Affairs,Aboriginal Affairs +531961,Aboriginal Affairs,Aboriginal Affairs +530264,Aboriginal Affairs,Aboriginal Affairs +529491,Aboriginal Affairs,Aboriginal Affairs +529488,Aboriginal Affairs,Aboriginal Affairs +529482,Aboriginal Affairs,Aboriginal Affairs +529468,Aboriginal Affairs,Aboriginal Affairs +531962,Science and Technology,Science and Technology +529491,Science and Technology,Science and Technology +544234,Science and Technology,Science and Technology +544232,Science and Technology,Science and Technology +544231,Science and Technology,Science and Technology +544229,Science and Technology,Science and Technology +544228,Science and Technology,Science and Technology +544227,Science and Technology,Science and Technology +544226,Science and Technology,Science and Technology +541969,Science and Technology,Science and Technology +539827,Science and Technology,Science and Technology +539826,Science and Technology,Science and Technology +539825,Science and Technology,Science and Technology +539823,Science and Technology,Science and Technology +539822,Science and Technology,Science and Technology +539819,Science and Technology,Science and Technology +538007,Science and Technology,Science and Technology +535295,Science and Technology,Science and Technology +535284,Science and Technology,Science and Technology +532417,Science and Technology,Science and Technology +531965,Science and Technology,Science and Technology +529463,Telecommunications,Telecommunications +529456,Telecommunications,Telecommunications +544234,Telecommunications,Telecommunications +544232,Telecommunications,Telecommunications +544231,Telecommunications,Telecommunications +544229,Telecommunications,Telecommunications +544228,Telecommunications,Telecommunications +544227,Telecommunications,Telecommunications +544226,Telecommunications,Telecommunications +541969,Telecommunications,Telecommunications +539827,Telecommunications,Telecommunications +539826,Telecommunications,Telecommunications +539825,Telecommunications,Telecommunications +539823,Telecommunications,Telecommunications +539822,Telecommunications,Telecommunications +539821,Telecommunications,Telecommunications +539820,Telecommunications,Telecommunications +539819,Telecommunications,Telecommunications +538007,Telecommunications,Telecommunications +535295,Telecommunications,Telecommunications +535284,Telecommunications,Telecommunications +532417,Telecommunications,Telecommunications +532412,Telecommunications,Telecommunications +531965,Telecommunications,Telecommunications +531964,Telecommunications,Telecommunications +531963,Telecommunications,Telecommunications +531962,Telecommunications,Telecommunications +531961,Telecommunications,Telecommunications +530264,Telecommunications,Telecommunications +529491,Telecommunications,Telecommunications +529488,Telecommunications,Telecommunications +529482,Telecommunications,Telecommunications +529468,Telecommunications,Telecommunications +531448,Science and Technology,Science and Technology +531993,Aboriginal Affairs,Aboriginal Affairs +529568,Aboriginal Affairs,Aboriginal Affairs +530745,Aboriginal Affairs,Aboriginal Affairs +526445,Aboriginal Affairs,Aboriginal Affairs +542674,Aboriginal Affairs,Aboriginal Affairs +542673,Aboriginal Affairs,Aboriginal Affairs +542337,Aboriginal Affairs,Aboriginal Affairs +540965,Aboriginal Affairs,Aboriginal Affairs +538649,Aboriginal Affairs,Aboriginal Affairs +536034,Aboriginal Affairs,Aboriginal Affairs +536033,Aboriginal Affairs,Aboriginal Affairs +534466,Aboriginal Affairs,Aboriginal Affairs +532998,Aboriginal Affairs,Aboriginal Affairs +530745,Science and Technology,Science and Technology +526445,Science and Technology,Science and Technology +542674,Science and Technology,Science and Technology +542673,Science and Technology,Science and Technology +542337,Science and Technology,Science and Technology +540965,Science and Technology,Science and Technology +538649,Science and Technology,Science and Technology +536034,Science and Technology,Science and Technology +536033,Science and Technology,Science and Technology +534466,Science and Technology,Science and Technology +533301,Science and Technology,Science and Technology +532741,Aboriginal Affairs,Affaires autochtones +532275,Aboriginal Affairs,Affaires autochtones +529443,Aboriginal Affairs,Affaires autochtones +529440,Aboriginal Affairs,Affaires autochtones +536244,Aboriginal Affairs,Affaires autochtones +535444,Aboriginal Affairs,Affaires autochtones +535441,Aboriginal Affairs,Affaires autochtones +535434,Aboriginal Affairs,Affaires autochtones +532441,Aboriginal Affairs,Aboriginal Affairs +526502,Aboriginal Affairs,Aboriginal Affairs +536011,Aboriginal Affairs,Aboriginal Affairs +530356,Arts and Culture,Arts and Culture +530355,Arts and Culture,Arts and Culture +537076,Arts and Culture,Arts and Culture +537075,Arts and Culture,Arts and Culture +530358,Arts and Culture,Arts and Culture +537078,Arts and Culture,Arts and Culture +535173,Arts and Culture,Arts and Culture +530354,Arts and Culture,Arts and Culture +530353,Arts and Culture,Arts and Culture +530352,Arts and Culture,Arts and Culture +530475,Science and Technology,Science and Technology +528442,Science and Technology,Science and Technology +545258,Science and Technology,Science and Technology +545257,Science and Technology,Science and Technology +545256,Science and Technology,Science and Technology +534473,Broadcasting,Broadcasting +530673,Broadcasting,Broadcasting +543887,Broadcasting,Broadcasting +543885,Broadcasting,Broadcasting +543880,Broadcasting,Broadcasting +543875,Broadcasting,Broadcasting +543868,Broadcasting,Broadcasting +541150,Broadcasting,Broadcasting +539659,Broadcasting,Broadcasting +539657,Broadcasting,Broadcasting +537360,Broadcasting,Broadcasting +537359,Broadcasting,Broadcasting +539659,Telecommunications,Telecommunications +539657,Telecommunications,Telecommunications +536477,Aboriginal Affairs,Aboriginal Affairs +532429,Aboriginal Affairs,Aboriginal Affairs +530275,Science and Technology,Science and Technology +529862,Science and Technology,Science and Technology +536478,Science and Technology,Science and Technology +536477,Science and Technology,Science and Technology +536187,Science and Technology,Science and Technology +532429,Science and Technology,Science and Technology +530770,Science and Technology,Science and Technology +530319,Science and Technology,Science and Technology +530308,Science and Technology,Science and Technology +530296,Science and Technology,Science and Technology +534659,Science and Technology,Science and Technology +534657,Science and Technology,Science and Technology +545239,Science and Technology,Science and Technology +538583,Science and Technology,Science and Technology +537364,Science and Technology,Science and Technology +535693,Science and Technology,Science and Technology +535692,Science and Technology,Science and Technology +537920,Science and Technology,Science and Technology +537918,Science and Technology,Science and Technology +535696,Science and Technology,Science and Technology +542459,Science and Technology,Science and Technology +536567,Science and Technology,Science and Technology +534012,Science and Technology,Science and Technology +533007,Science and Technology,Science and Technology +535851,Arts and Culture,Arts and Culture +532954,Arts and Culture,Arts and Culture +531771,Science and Technology,Science and Technology +532289,Science and Technology,Science and Technology +530184,Aboriginal Affairs,Aboriginal Affairs +529789,Aboriginal Affairs,Aboriginal Affairs +544596,Aboriginal Affairs,Aboriginal Affairs +536141,Aboriginal Affairs,Aboriginal Affairs +536140,Aboriginal Affairs,Aboriginal Affairs +536014,Aboriginal Affairs,Aboriginal Affairs +532556,Aboriginal Affairs,Aboriginal Affairs +532555,Aboriginal Affairs,Aboriginal Affairs +539026,Science and Technology,Science and Technology +539025,Science and Technology,Science and Technology +543353,Science and Technology,Science and Technology +543351,Science and Technology,Science and Technology +543348,Science and Technology,Science and Technology +543347,Science and Technology,Science and Technology +543342,Science and Technology,Science and Technology +543338,Science and Technology,Science and Technology +536225,Broadcasting,Broadcasting +536227,Arts and Culture,Arts and Culture +530697,Telecommunications,Telecommunications +530270,Telecommunications,Telecommunications +530155,Science and Technology,Science and Technology +533479,Aboriginal Affairs,Aboriginal Affairs +532949,Aboriginal Affairs,Aboriginal Affairs +543788,Aboriginal Affairs,Aboriginal Affairs +539734,Aboriginal Affairs,Aboriginal Affairs +539733,Aboriginal Affairs,Aboriginal Affairs +536629,Aboriginal Affairs,Aboriginal Affairs +533885,Aboriginal Affairs,Aboriginal Affairs +533884,Aboriginal Affairs,Aboriginal Affairs +544482,Aboriginal Affairs,Aboriginal Affairs +543768,Aboriginal Affairs,Aboriginal Affairs +530261,Aboriginal Affairs,Aboriginal Affairs +540854,Aboriginal Affairs,Aboriginal Affairs +535895,Telecommunications,Telecommunications +532287,Science and Technology,Science and Technology +532285,Science and Technology,Science and Technology +536384,Science and Technology,Science and Technology +531778,Telecommunications,Telecommunications +531774,Telecommunications,Telecommunications +531778,Science and Technology,Science and Technology +531774,Science and Technology,Science and Technology +537708,Science and Technology,Science and Technology +540691,Aboriginal Affairs,Aboriginal Affairs +537985,Science and Technology,Science and Technology +537979,Science and Technology,Science and Technology +531158,Aboriginal Affairs,Aboriginal Affairs +531154,Aboriginal Affairs,Aboriginal Affairs +537202,Aboriginal Affairs,Aboriginal Affairs +534222,Arts and Culture,Arts and Culture +536782,Science and Technology,Science and Technology +533751,Arts and Culture,Arts and Culture +533749,Arts and Culture,Arts and Culture +537356,Arts and Culture,Arts and Culture +534364,Arts and Culture,Arts and Culture +533755,Arts and Culture,Arts and Culture +533753,Arts and Culture,Arts and Culture +533751,Broadcasting,Broadcasting +520789,Arts and Culture,Arts and Culture +534009,Science and Technology,Science and Technology +536636,Aboriginal Affairs,Aboriginal Affairs +536265,Aboriginal Affairs,Aboriginal Affairs +530955,Arts and Culture,Arts and Culture +532257,Aboriginal Affairs,Aboriginal Affairs +529439,Aboriginal Affairs,Aboriginal Affairs +523495,Aboriginal Affairs,Aboriginal Affairs +540576,Aboriginal Affairs,Aboriginal Affairs +536690,Aboriginal Affairs,Aboriginal Affairs +524472,Science and Technology,Science and Technology +524428,Science and Technology,Science and Technology +521397,Aboriginal Affairs,Aboriginal Affairs +526760,Arts and Culture,Arts and Culture +524924,Science and Technology,Science and Technology +522708,Science and Technology,Sciences et technologies +523133,Science and Technology,Science and Technology +528605,Science and Technology,Science and Technology +522435,Aboriginal Affairs,Aboriginal Affairs +536696,Aboriginal Affairs,Aboriginal Affairs +536264,Aboriginal Affairs,Aboriginal Affairs +544377,Science and Technology,Science and Technology +537284,Aboriginal Affairs,Aboriginal Affairs +538831,Aboriginal Affairs,Affaires autochtones +538331,Broadcasting,Broadcasting +543281,Science and Technology,Science and Technology +542495,Aboriginal Affairs,Aboriginal Affairs +530411,Aboriginal Affairs,Aboriginal Affairs +521529,Science and Technology,Science and Technology +525631,Science and Technology,Science and Technology +523745,Broadcasting,Broadcasting +523745,Telecommunications,Telecommunications +533236,Arts and Culture,Arts and Culture +536109,Science and Technology,Science and Technology +530444,Aboriginal Affairs,Aboriginal Affairs +524172,Arts and Culture,Arts and Culture +524172,Broadcasting,Broadcasting +523835,Arts and Culture,Arts and Culture +543910,Broadcasting,Broadcasting +532586,Broadcasting,Broadcasting +524608,Science and Technology,Science and Technology +525981,Aboriginal Affairs,Aboriginal Affairs +524763,Science and Technology,Science and Technology +535966,Telecommunications,Telecommunications +529203,Broadcasting,Broadcasting +522478,Arts and Culture,Arts and Culture +523589,Telecommunications,Telecommunications +523138,Arts and Culture,Arts and Culture +530192,Arts and Culture,Arts et culture +523218,Aboriginal Affairs,Aboriginal Affairs +540565,Arts and Culture,Arts and Culture +540565,Broadcasting,Broadcasting +528042,Arts and Culture,Arts and Culture +527735,Aboriginal Affairs,Aboriginal Affairs +528783,Aboriginal Affairs,Aboriginal Affairs +532524,Aboriginal Affairs,Aboriginal Affairs +537756,Science and Technology,Science and Technology +523622,Arts and Culture,Arts and Culture +528604,Broadcasting,Broadcasting +528604,Arts and Culture,Arts and Culture +535842,Arts and Culture,Arts and Culture +541846,Aboriginal Affairs,Aboriginal Affairs +526220,Aboriginal Affairs,Aboriginal Affairs +526876,Arts and Culture,Arts and Culture +530005,Arts and Culture,Arts and Culture +530005,Science and Technology,Science and Technology +527345,Science and Technology,Science and Technology +523871,Science and Technology,Science and Technology +540301,Broadcasting,Broadcasting +540301,Telecommunications,Telecommunications +530380,Science and Technology,Science and Technology +534729,Science and Technology,Science and Technology +538628,Science and Technology,Science and Technology +529464,Aboriginal Affairs,Aboriginal Affairs +531963,Science and Technology,Science and Technology +529464,Telecommunications,Telecommunications +534228,Science and Technology,Science and Technology +524176,Telecommunications,Telecommunications +532115,Aboriginal Affairs,Aboriginal Affairs +538924,Science and Technology,Science and Technology +531997,Science and Technology,Science and Technology +527477,Telecommunications,Telecommunications +530746,Aboriginal Affairs,Aboriginal Affairs +530746,Science and Technology,Science and Technology +524872,Science and Technology,Science and Technology +524902,Science and Technology,Science and Technology +533302,Science and Technology,Science and Technology +535415,Aboriginal Affairs,Affaires autochtones +525143,Science and Technology,Science and Technology +525145,Science and Technology,Science and Technology +525147,Science and Technology,Science and Technology +525196,Aboriginal Affairs,Aboriginal Affairs +527009,Aboriginal Affairs,Aboriginal Affairs +525524,Telecommunications,Telecommunications +526059,Science and Technology,Sciences et technologies +526327,Broadcasting,Broadcasting +526375,Arts and Culture,Arts and Culture +526424,Broadcasting,Broadcasting +532575,Aboriginal Affairs,Aboriginal Affairs +530357,Arts and Culture,Arts and Culture +530351,Arts and Culture,Arts and Culture +532460,Science and Technology,Science and Technology +540419,Science and Technology,Science and Technology +534474,Broadcasting,Broadcasting +541154,Telecommunications,Telecommunications +536478,Aboriginal Affairs,Aboriginal Affairs +530295,Science and Technology,Science and Technology +534661,Science and Technology,Science and Technology +529902,Broadcasting,Broadcasting +535695,Science and Technology,Science and Technology +527339,Science and Technology,Science and Technology +543317,Broadcasting,Broadcasting +527360,Broadcasting,Broadcasting +535856,Arts and Culture,Arts and Culture +532474,Science and Technology,Science and Technology +537704,Science and Technology,Science and Technology +537703,Science and Technology,Science and Technology +542116,Aboriginal Affairs,Aboriginal Affairs +530185,Aboriginal Affairs,Aboriginal Affairs +531405,Aboriginal Affairs,Aboriginal Affairs +528641,Telecommunications,Telecommunications +529023,Science and Technology,Science and Technology +537327,Science and Technology,Science and Technology +536914,Aboriginal Affairs,Aboriginal Affairs +533699,Science and Technology,Science and Technology +539027,Science and Technology,Science and Technology +532982,Science and Technology,Science and Technology +531505,Arts and Culture,Arts and Culture +531496,Arts and Culture,Arts and Culture +537787,Broadcasting,Broadcasting +531598,Arts and Culture,Arts and Culture +536228,Arts and Culture,Arts and Culture +542205,Arts and Culture,Arts and Culture +539144,Telecommunications,Telecommunications +542206,Arts and Culture,Arts and Culture +530156,Science and Technology,Science and Technology +536628,Aboriginal Affairs,Aboriginal Affairs +536518,Aboriginal Affairs,Aboriginal Affairs +530142,Aboriginal Affairs,Aboriginal Affairs +536558,Aboriginal Affairs,Aboriginal Affairs +536384,Telecommunications,Telecommunications +535895,Science and Technology,Science and Technology +531781,Telecommunications,Telecommunications +531781,Science and Technology,Science and Technology +530280,Science and Technology,Science and Technology +530281,Science and Technology,Science and Technology +538560,Science and Technology,Science and Technology +535156,Science and Technology,Science and Technology +530363,Science and Technology,Science and Technology +536493,Science and Technology,Science and Technology +542407,Science and Technology,Science and Technology +531977,Science and Technology,Science and Technology +535618,Science and Technology,Science and Technology +533639,Science and Technology,Science and Technology +542691,Aboriginal Affairs,Aboriginal Affairs +530788,Science and Technology,Science and Technology +530984,Science and Technology,Science and Technology +530986,Science and Technology,Science and Technology +544725,Science and Technology,Science and Technology +533921,Aboriginal Affairs,Aboriginal Affairs +531161,Aboriginal Affairs,Aboriginal Affairs +537896,Aboriginal Affairs,Aboriginal Affairs +537896,Science and Technology,Science and Technology +540293,Arts and Culture,Arts and Culture +535030,Telecommunications,Telecommunications +536783,Science and Technology,Science and Technology +533752,Arts and Culture,Arts and Culture +533752,Broadcasting,Broadcasting +533752,Science and Technology,Science and Technology +533752,Telecommunications,Telecommunications +537692,Science and Technology,Science and Technology +534266,Aboriginal Affairs,Aboriginal Affairs +532428,Aboriginal Affairs,Aboriginal Affairs +532983,Science and Technology,Science and Technology +532559,Science and Technology,Science and Technology +534013,Aboriginal Affairs,Aboriginal Affairs +542771,Aboriginal Affairs,Aboriginal Affairs +541574,Aboriginal Affairs,Aboriginal Affairs +540411,Arts and Culture,Arts and Culture +533378,Broadcasting,Broadcasting +532732,Aboriginal Affairs,Aboriginal Affairs +540105,Aboriginal Affairs,Aboriginal Affairs +534209,Aboriginal Affairs,Aboriginal Affairs +534219,Arts and Culture,Arts and Culture +539055,Arts and Culture,Arts and Culture +539055,Broadcasting,Broadcasting +536568,Science and Technology,Science and Technology +533968,Science and Technology,Science and Technology +542495,Science and Technology,Science and Technology +544999,Science and Technology,Science and Technology +533134,Aboriginal Affairs,Aboriginal Affairs +538987,Science and Technology,Science and Technology +537875,Telecommunications,Telecommunications +537601,Aboriginal Affairs,Aboriginal Affairs +540429,Aboriginal Affairs,Aboriginal Affairs +534489,Telecommunications,Telecommunications +533673,Science and Technology,Science and Technology +539555,Science and Technology,Science and Technology +541101,Telecommunications,Telecommunications +535865,Aboriginal Affairs,Aboriginal Affairs +538350,Science and Technology,Science and Technology +542484,Science and Technology,Science and Technology +534022,Science and Technology,Science and Technology +537020,Aboriginal Affairs,Aboriginal Affairs +534018,Science and Technology,Science and Technology +534017,Science and Technology,Science and Technology +543822,Aboriginal Affairs,Aboriginal Affairs +540018,Science and Technology,Science and Technology +534047,Science and Technology,Science and Technology +534055,Science and Technology,Science and Technology +534062,Science and Technology,Science and Technology +534072,Science and Technology,Science and Technology +534075,Science and Technology,Science and Technology +534413,Telecommunications,Telecommunications +540671,Science and Technology,Sciences et technologies +539794,Aboriginal Affairs,Affaires autochtones +539800,Science and Technology,Science and Technology +534839,Aboriginal Affairs,Aboriginal Affairs +538335,Aboriginal Affairs,Aboriginal Affairs +534972,Telecommunications,Telecommunications +544612,Science and Technology,Science and Technology +535857,Telecommunications,Telecommunications +537883,Science and Technology,Science and Technology +537197,Science and Technology,Science and Technology +536630,Science and Technology,Science and Technology +541465,Aboriginal Affairs,Aboriginal Affairs +543104,Arts and Culture,Arts and Culture +543104,Broadcasting,Broadcasting +536310,Science and Technology,Science and Technology +536723,Science and Technology,Science and Technology +536634,Science and Technology,Science and Technology +540517,Science and Technology,Science and Technology +540517,Aboriginal Affairs,Aboriginal Affairs +545322,Aboriginal Affairs,Aboriginal Affairs +536622,Arts and Culture,Arts and Culture +544122,Aboriginal Affairs,Aboriginal Affairs +538957,Science and Technology,Science and Technology +538749,Aboriginal Affairs,Affaires autochtones +541789,Science and Technology,Science and Technology +543818,Science and Technology,Sciences et technologies +544787,Aboriginal Affairs,Aboriginal Affairs +540408,Broadcasting,Broadcasting +542980,Aboriginal Affairs,Aboriginal Affairs +540275,Arts and Culture,Arts and Culture +539120,Telecommunications,Telecommunications +541996,Telecommunications,Telecommunications +540405,Broadcasting,Broadcasting +538624,Telecommunications,Telecommunications +537995,Telecommunications,Telecommunications +540194,Science and Technology,Science and Technology +542973,Science and Technology,Science and Technology +544220,Arts and Culture,Arts and Culture +538885,Aboriginal Affairs,Aboriginal Affairs +538886,Aboriginal Affairs,Aboriginal Affairs +543282,Aboriginal Affairs,Aboriginal Affairs +540666,Aboriginal Affairs,Aboriginal Affairs +540641,Science and Technology,Science and Technology +538968,Science and Technology,Science and Technology +544108,Aboriginal Affairs,Aboriginal Affairs +539359,Aboriginal Affairs,Aboriginal Affairs +540843,Science and Technology,Science and Technology +542917,Science and Technology,Science and Technology +539437,Aboriginal Affairs,Aboriginal Affairs +543122,Aboriginal Affairs,Aboriginal Affairs +542279,Science and Technology,Science and Technology +539589,Aboriginal Affairs,Aboriginal Affairs +541416,Telecommunications,Telecommunications +540350,Science and Technology,Science and Technology +542474,Science and Technology,Science and Technology +540413,Aboriginal Affairs,Aboriginal Affairs +542472,Science and Technology,Science and Technology +545159,Science and Technology,Science and Technology +542278,Science and Technology,Science and Technology +540746,Arts and Culture,Arts et culture +540647,Arts and Culture,Arts and Culture +542493,Arts and Culture,Arts and Culture +540679,Aboriginal Affairs,Aboriginal Affairs +540679,Telecommunications,Telecommunications +540679,Science and Technology,Science and Technology +540738,Arts and Culture,Arts and Culture +542421,Aboriginal Affairs,Aboriginal Affairs +544955,Aboriginal Affairs,Aboriginal Affairs +542145,Aboriginal Affairs,Aboriginal Affairs +542145,Science and Technology,Science and Technology +541260,Aboriginal Affairs,Aboriginal Affairs +541429,Arts and Culture,Arts and Culture +541763,Aboriginal Affairs,Aboriginal Affairs +541791,Arts and Culture,Arts and Culture +542243,Broadcasting,Broadcasting +543069,Science and Technology,Science and Technology +544255,Science and Technology,Science and Technology +542160,Broadcasting,Broadcasting +542161,Broadcasting,Broadcasting +542869,Aboriginal Affairs,Aboriginal Affairs +542738,Science and Technology,Science and Technology +542738,Aboriginal Affairs,Aboriginal Affairs +542465,Science and Technology,Science and Technology +542483,Science and Technology,Science and Technology +542520,Science and Technology,Science and Technology +544598,Aboriginal Affairs,Aboriginal Affairs +544095,Science and Technology,Science and Technology +544139,Aboriginal Affairs,Aboriginal Affairs +544835,Aboriginal Affairs,Aboriginal Affairs +544461,Aboriginal Affairs,Aboriginal Affairs +544738,Arts and Culture,Arts and Culture +544990,Science and Technology,Science and Technology +544782,Aboriginal Affairs,Aboriginal Affairs +544771,Arts and Culture,Arts et culture +544990,Aboriginal Affairs,Aboriginal Affairs +545060,Science and Technology,Science and Technology +545163,Aboriginal Affairs,Aboriginal Affairs +545163,Science and Technology,Science and Technology +533749,Broadcasting,Broadcasting +537356,Broadcasting,Broadcasting +534364,Broadcasting,Broadcasting +533755,Broadcasting,Broadcasting +533753,Broadcasting,Broadcasting +533751,Science and Technology,Science and Technology +533749,Science and Technology,Science and Technology +534364,Science and Technology,Science and Technology +533755,Science and Technology,Science and Technology +533753,Science and Technology,Science and Technology +533751,Telecommunications,Telecommunications +533749,Telecommunications,Telecommunications +534364,Telecommunications,Telecommunications +533755,Telecommunications,Telecommunications +533753,Telecommunications,Telecommunications +534264,Aboriginal Affairs,Aboriginal Affairs +541071,Aboriginal Affairs,Aboriginal Affairs +540812,Aboriginal Affairs,Aboriginal Affairs +544701,Aboriginal Affairs,Aboriginal Affairs +540284,Aboriginal Affairs,Aboriginal Affairs +540283,Aboriginal Affairs,Aboriginal Affairs +543737,Aboriginal Affairs,Aboriginal Affairs +533378,Arts and Culture,Arts and Culture +540411,Broadcasting,Broadcasting +540104,Aboriginal Affairs,Aboriginal Affairs +539916,Aboriginal Affairs,Aboriginal Affairs +542316,Aboriginal Affairs,Aboriginal Affairs +542315,Aboriginal Affairs,Aboriginal Affairs +542194,Aboriginal Affairs,Aboriginal Affairs +540976,Aboriginal Affairs,Aboriginal Affairs +540974,Aboriginal Affairs,Aboriginal Affairs +540796,Aboriginal Affairs,Aboriginal Affairs +540778,Aboriginal Affairs,Aboriginal Affairs +540777,Aboriginal Affairs,Aboriginal Affairs +540761,Aboriginal Affairs,Aboriginal Affairs +540701,Aboriginal Affairs,Aboriginal Affairs +540639,Aboriginal Affairs,Aboriginal Affairs +540637,Aboriginal Affairs,Aboriginal Affairs +540634,Aboriginal Affairs,Aboriginal Affairs +540559,Aboriginal Affairs,Aboriginal Affairs +540557,Aboriginal Affairs,Aboriginal Affairs +540556,Aboriginal Affairs,Aboriginal Affairs +540543,Aboriginal Affairs,Aboriginal Affairs +540529,Aboriginal Affairs,Aboriginal Affairs +540527,Aboriginal Affairs,Aboriginal Affairs +540526,Aboriginal Affairs,Aboriginal Affairs +540525,Aboriginal Affairs,Aboriginal Affairs +540498,Aboriginal Affairs,Aboriginal Affairs +540496,Aboriginal Affairs,Aboriginal Affairs +540495,Aboriginal Affairs,Aboriginal Affairs +540494,Aboriginal Affairs,Aboriginal Affairs +540478,Aboriginal Affairs,Aboriginal Affairs +540477,Aboriginal Affairs,Aboriginal Affairs +540476,Aboriginal Affairs,Aboriginal Affairs +540466,Aboriginal Affairs,Aboriginal Affairs +540465,Aboriginal Affairs,Aboriginal Affairs +540451,Aboriginal Affairs,Aboriginal Affairs +540422,Aboriginal Affairs,Aboriginal Affairs +540421,Aboriginal Affairs,Aboriginal Affairs +540399,Aboriginal Affairs,Aboriginal Affairs +540380,Aboriginal Affairs,Aboriginal Affairs +540364,Aboriginal Affairs,Aboriginal Affairs +540357,Aboriginal Affairs,Aboriginal Affairs +540356,Aboriginal Affairs,Aboriginal Affairs +540335,Aboriginal Affairs,Aboriginal Affairs +540334,Aboriginal Affairs,Aboriginal Affairs +540333,Aboriginal Affairs,Aboriginal Affairs +540332,Aboriginal Affairs,Aboriginal Affairs +540329,Aboriginal Affairs,Aboriginal Affairs +540286,Aboriginal Affairs,Aboriginal Affairs +540285,Aboriginal Affairs,Aboriginal Affairs +534207,Aboriginal Affairs,Aboriginal Affairs +534206,Aboriginal Affairs,Aboriginal Affairs +541004,Aboriginal Affairs,Aboriginal Affairs +541002,Aboriginal Affairs,Aboriginal Affairs +541001,Aboriginal Affairs,Aboriginal Affairs +539998,Aboriginal Affairs,Aboriginal Affairs +539997,Aboriginal Affairs,Aboriginal Affairs +539995,Aboriginal Affairs,Aboriginal Affairs +539993,Aboriginal Affairs,Aboriginal Affairs +539989,Aboriginal Affairs,Aboriginal Affairs +539925,Aboriginal Affairs,Aboriginal Affairs +539923,Aboriginal Affairs,Aboriginal Affairs +539921,Aboriginal Affairs,Aboriginal Affairs +539920,Aboriginal Affairs,Aboriginal Affairs +539918,Aboriginal Affairs,Aboriginal Affairs +537916,Aboriginal Affairs,Aboriginal Affairs +537915,Aboriginal Affairs,Aboriginal Affairs +537914,Aboriginal Affairs,Aboriginal Affairs +537913,Aboriginal Affairs,Aboriginal Affairs +537912,Aboriginal Affairs,Aboriginal Affairs +537911,Aboriginal Affairs,Aboriginal Affairs +537910,Aboriginal Affairs,Aboriginal Affairs +537909,Aboriginal Affairs,Aboriginal Affairs +537908,Aboriginal Affairs,Aboriginal Affairs +537907,Aboriginal Affairs,Aboriginal Affairs +537906,Aboriginal Affairs,Aboriginal Affairs +537905,Aboriginal Affairs,Aboriginal Affairs +537904,Aboriginal Affairs,Aboriginal Affairs +537903,Aboriginal Affairs,Aboriginal Affairs +537902,Aboriginal Affairs,Aboriginal Affairs +537899,Aboriginal Affairs,Aboriginal Affairs +534230,Aboriginal Affairs,Aboriginal Affairs +534226,Aboriginal Affairs,Aboriginal Affairs +534225,Aboriginal Affairs,Aboriginal Affairs +534224,Aboriginal Affairs,Aboriginal Affairs +534220,Aboriginal Affairs,Aboriginal Affairs +534219,Aboriginal Affairs,Aboriginal Affairs +534217,Aboriginal Affairs,Aboriginal Affairs +534215,Aboriginal Affairs,Aboriginal Affairs +534213,Aboriginal Affairs,Aboriginal Affairs +534212,Aboriginal Affairs,Aboriginal Affairs +534210,Aboriginal Affairs,Aboriginal Affairs +534212,Arts and Culture,Arts and Culture +534206,Arts and Culture,Arts and Culture +541002,Arts and Culture,Arts and Culture +539998,Arts and Culture,Arts and Culture +537915,Arts and Culture,Arts and Culture +537914,Arts and Culture,Arts and Culture +537913,Arts and Culture,Arts and Culture +537912,Arts and Culture,Arts and Culture +537911,Arts and Culture,Arts and Culture +537909,Arts and Culture,Arts and Culture +537905,Arts and Culture,Arts and Culture +534220,Arts and Culture,Arts and Culture +536552,Arts and Culture,Arts and Culture +536552,Broadcasting,Broadcasting +533003,Science and Technology,Science and Technology +540661,Science and Technology,Science and Technology +533019,Science and Technology,Science and Technology +542226,Science and Technology,Science and Technology +542225,Science and Technology,Science and Technology +545000,Science and Technology,Science and Technology +536583,Science and Technology,Science and Technology +537600,Aboriginal Affairs,Aboriginal Affairs +537599,Aboriginal Affairs,Aboriginal Affairs +539558,Aboriginal Affairs,Aboriginal Affairs +537603,Aboriginal Affairs,Aboriginal Affairs +537602,Aboriginal Affairs,Aboriginal Affairs +537593,Science and Technology,Science and Technology +537592,Science and Technology,Science and Technology +541103,Science and Technology,Science and Technology +541102,Science and Technology,Science and Technology +541101,Science and Technology,Science and Technology +537593,Telecommunications,Telecommunications +537592,Telecommunications,Telecommunications +538201,Science and Technology,Science and Technology +538199,Science and Technology,Science and Technology +538193,Science and Technology,Science and Technology +536359,Science and Technology,Science and Technology +545348,Science and Technology,Science and Technology +542732,Science and Technology,Science and Technology +542731,Science and Technology,Science and Technology +542726,Science and Technology,Science and Technology +542725,Science and Technology,Science and Technology +542723,Science and Technology,Science and Technology +540805,Science and Technology,Science and Technology +540802,Science and Technology,Science and Technology +539775,Science and Technology,Science and Technology +538351,Science and Technology,Science and Technology +542480,Science and Technology,Science and Technology +540650,Science and Technology,Science and Technology +534020,Science and Technology,Science and Technology +534008,Aboriginal Affairs,Aboriginal Affairs +536133,Science and Technology,Science and Technology +534029,Science and Technology,Science and Technology +542910,Science and Technology,Science and Technology +540950,Science and Technology,Science and Technology +540489,Science and Technology,Science and Technology +540424,Science and Technology,Science and Technology +540303,Science and Technology,Science and Technology +538026,Telecommunications,Telecommunications +540670,Science and Technology,Sciences et technologies +540564,Science and Technology,Sciences et technologies +539452,Science and Technology,Sciences et technologies +536788,Science and Technology,Sciences et technologies +536366,Science and Technology,Sciences et technologies +534476,Science and Technology,Sciences et technologies +534475,Science and Technology,Sciences et technologies +534854,Aboriginal Affairs,Aboriginal Affairs +534849,Aboriginal Affairs,Aboriginal Affairs +539890,Aboriginal Affairs,Aboriginal Affairs +539390,Science and Technology,Science and Technology +541463,Aboriginal Affairs,Aboriginal Affairs +541455,Aboriginal Affairs,Aboriginal Affairs +541573,Aboriginal Affairs,Aboriginal Affairs +541570,Aboriginal Affairs,Aboriginal Affairs +541569,Aboriginal Affairs,Aboriginal Affairs +541568,Aboriginal Affairs,Aboriginal Affairs +541566,Aboriginal Affairs,Aboriginal Affairs +541565,Aboriginal Affairs,Aboriginal Affairs +541564,Aboriginal Affairs,Aboriginal Affairs +541563,Aboriginal Affairs,Aboriginal Affairs +541562,Aboriginal Affairs,Aboriginal Affairs +541561,Aboriginal Affairs,Aboriginal Affairs +541560,Aboriginal Affairs,Aboriginal Affairs +541559,Aboriginal Affairs,Aboriginal Affairs +541558,Aboriginal Affairs,Aboriginal Affairs +541555,Aboriginal Affairs,Aboriginal Affairs +541554,Aboriginal Affairs,Aboriginal Affairs +541553,Aboriginal Affairs,Aboriginal Affairs +541552,Aboriginal Affairs,Aboriginal Affairs +541549,Aboriginal Affairs,Aboriginal Affairs +541548,Aboriginal Affairs,Aboriginal Affairs +541547,Aboriginal Affairs,Aboriginal Affairs +541546,Aboriginal Affairs,Aboriginal Affairs +541545,Aboriginal Affairs,Aboriginal Affairs +541544,Aboriginal Affairs,Aboriginal Affairs +541508,Aboriginal Affairs,Aboriginal Affairs +541507,Aboriginal Affairs,Aboriginal Affairs +541506,Aboriginal Affairs,Aboriginal Affairs +541505,Aboriginal Affairs,Aboriginal Affairs +541504,Aboriginal Affairs,Aboriginal Affairs +541503,Aboriginal Affairs,Aboriginal Affairs +541490,Aboriginal Affairs,Aboriginal Affairs +541488,Aboriginal Affairs,Aboriginal Affairs +541487,Aboriginal Affairs,Aboriginal Affairs +541481,Aboriginal Affairs,Aboriginal Affairs +541480,Aboriginal Affairs,Aboriginal Affairs +541479,Aboriginal Affairs,Aboriginal Affairs +541478,Aboriginal Affairs,Aboriginal Affairs +541477,Aboriginal Affairs,Aboriginal Affairs +541475,Aboriginal Affairs,Aboriginal Affairs +541473,Aboriginal Affairs,Aboriginal Affairs +541471,Aboriginal Affairs,Aboriginal Affairs +541467,Aboriginal Affairs,Aboriginal Affairs +541466,Aboriginal Affairs,Aboriginal Affairs +543103,Arts and Culture,Arts and Culture +537300,Arts and Culture,Arts and Culture +543103,Broadcasting,Broadcasting +537300,Broadcasting,Broadcasting +538654,Science and Technology,Science and Technology +536316,Science and Technology,Science and Technology +536312,Science and Technology,Science and Technology +536620,Science and Technology,Science and Technology +536632,Science and Technology,Science and Technology +536631,Science and Technology,Science and Technology +536635,Science and Technology,Science and Technology +538693,Science and Technology,Science and Technology +536627,Science and Technology,Science and Technology +543787,Science and Technology,Science and Technology +540518,Science and Technology,Science and Technology +538693,Aboriginal Affairs,Aboriginal Affairs +536627,Aboriginal Affairs,Aboriginal Affairs +543787,Aboriginal Affairs,Aboriginal Affairs +540518,Aboriginal Affairs,Aboriginal Affairs +539402,Aboriginal Affairs,Aboriginal Affairs +539401,Aboriginal Affairs,Aboriginal Affairs +536570,Science and Technology,Science and Technology +536565,Science and Technology,Science and Technology +542470,Science and Technology,Science and Technology +541786,Science and Technology,Science and Technology +541781,Science and Technology,Science and Technology +543807,Science and Technology,Sciences et technologies +543806,Science and Technology,Sciences et technologies +543856,Science and Technology,Sciences et technologies +543843,Science and Technology,Sciences et technologies +543841,Science and Technology,Sciences et technologies +543820,Science and Technology,Sciences et technologies +541072,Aboriginal Affairs,Aboriginal Affairs +540346,Aboriginal Affairs,Aboriginal Affairs +540407,Broadcasting,Broadcasting +540406,Broadcasting,Broadcasting +540410,Broadcasting,Broadcasting +537538,Telecommunications,Telecommunications +540404,Broadcasting,Broadcasting +538624,Broadcasting,Broadcasting +540193,Science and Technology,Science and Technology +542347,Science and Technology,Science and Technology +541981,Arts and Culture,Arts and Culture +540020,Arts and Culture,Arts and Culture +544221,Arts and Culture,Arts and Culture +540665,Aboriginal Affairs,Aboriginal Affairs +540443,Aboriginal Affairs,Aboriginal Affairs +542301,Aboriginal Affairs,Aboriginal Affairs +542273,Aboriginal Affairs,Aboriginal Affairs +542183,Aboriginal Affairs,Aboriginal Affairs +540857,Aboriginal Affairs,Aboriginal Affairs +540856,Aboriginal Affairs,Aboriginal Affairs +540855,Aboriginal Affairs,Aboriginal Affairs +540852,Aboriginal Affairs,Aboriginal Affairs +540667,Aboriginal Affairs,Aboriginal Affairs +538966,Science and Technology,Science and Technology +544107,Aboriginal Affairs,Aboriginal Affairs +544105,Aboriginal Affairs,Aboriginal Affairs +543121,Aboriginal Affairs,Aboriginal Affairs +543120,Aboriginal Affairs,Aboriginal Affairs +543126,Aboriginal Affairs,Aboriginal Affairs +543125,Aboriginal Affairs,Aboriginal Affairs +543124,Aboriginal Affairs,Aboriginal Affairs +543123,Aboriginal Affairs,Aboriginal Affairs +540660,Arts and Culture,Arts and Culture +544584,Aboriginal Affairs,Aboriginal Affairs +542797,Aboriginal Affairs,Aboriginal Affairs +543068,Science and Technology,Science and Technology +544252,Science and Technology,Science and Technology +544247,Science and Technology,Science and Technology +544257,Science and Technology,Science and Technology +542868,Aboriginal Affairs,Aboriginal Affairs +542867,Aboriginal Affairs,Aboriginal Affairs +542737,Science and Technology,Science and Technology +542737,Aboriginal Affairs,Aboriginal Affairs +542471,Science and Technology,Science and Technology +544138,Aboriginal Affairs,Aboriginal Affairs +544134,Aboriginal Affairs,Aboriginal Affairs +544989,Science and Technology,Science and Technology +544988,Science and Technology,Science and Technology +544995,Science and Technology,Science and Technology +544993,Science and Technology,Science and Technology +544992,Science and Technology,Science and Technology +544770,Arts and Culture,Arts et culture +544989,Aboriginal Affairs,Aboriginal Affairs +544988,Aboriginal Affairs,Aboriginal Affairs +544995,Aboriginal Affairs,Aboriginal Affairs +544993,Aboriginal Affairs,Aboriginal Affairs +544992,Aboriginal Affairs,Aboriginal Affairs diff --git a/backend/app/app/data/prov_ab/lobby_com_ab.csv b/backend/app/app/data/prov_ab/lobby_com_ab.csv new file mode 100644 index 00000000..41ae9543 --- /dev/null +++ b/backend/app/app/data/prov_ab/lobby_com_ab.csv @@ -0,0 +1,501 @@ +Filing Date,Termination Date,Organization,Client Name,Designated Filer,Government Department Lobbied,Prescribed Provincial Entity Lobbied,Subject Matter of Lobbying,Registration Number,Type of Lobbyist,Lobbyists,Type of Registration,Registration Status,View +2022-12-02,2022-12-02,Proof Inc.,Moneris,Bruce MacLellan,"Alberta Jobs, Economy and Northern Development, Executive Council, Alberta Health, Premier's Office",-,Health,CL-12279-03,Consultant Lobbyist,"Chris McCluskey, Jim Patrick",Notice of Change,Terminated,View  +2022-12-01,2022-12-02,Temple Scott Associates Inc.,Mastercard Canada,Don Moors,"Alberta Jobs, Economy and Northern Development, Alberta Treasury Board and Finance",-,Procurement,CL-12768-02,Consultant Lobbyist,Ujwal Ganguly,Notice of Change,Terminated,View  +2022-11-24,-,Novartis Pharmaceuticals Canada Inc.,-,Andrea Marazzi,"Service Alberta and Red Tape Reduction, Alberta Jobs, Economy and Northern Development, Executive Council, Alberta Health, Alberta Treasury Board and Finance, Premier's Office","University of Alberta, Alberta Health Services, University of Calgary",Health,OL-10496-27,Organization Lobbyist,"Helen Trifonopolous, Andrea Marazzi, Thea Discepola, Kimberly King, Caroline Barber, Clayton Gilmour, Graham Anderson, Jordan Roumieu",Notice of Change,Archived,View  +2022-11-24,2022-11-25,Temple Scott Associates Inc.,Board of Canadian Registered Safety Professionals,Don Moors,"Alberta Trade, Immigration and Multiculturalism",-,"Workplace Safety, Labour Relations",CL-12082-04,Consultant Lobbyist,"Joshua Matthewman, Ryan Singh",Notice of Change,Terminated,View  +2022-11-22,-,Canadian Medical Association,-,Timothy Smith,"Alberta Public Safety and Emergency Services, Alberta Justice, Executive Council, Alberta Trade, Immigration and Multiculturalism, Alberta Health, Alberta Legislative Assembly, Premier's Office",-,"Health, Justice and Law Enforcement",OL-10605-24,Organization Lobbyist,"Louise Sweatman, Dr. Alika Lafontaine, Nick Lecuyer, Joseph Mayer, Kristin Smith, Pascal Charron, Dr. Jeff Blackmer, Nick Farinaccio, Tim Smith, Luce Lavoie, John Feeley, Audrey Grandmaison, Stephen Vail, Cecile Bensimon, Aline Gagnon, Owen Adams, Julie Aung, Manon Abud, Azin Peyrow, Jennifer Kitts, Caroline Bouchard, Ashley Chisholm, Philippe Ha, Jasmine Neeson, Marie-Claire Bedard, Dr. Katharine Smart, Eric Lewis, Elena Gabrysz, Karey Shuhendler, Romeo Tello, Renee Belanger, Dr. Kathleen Ross",Notice of Change,Archived,View  +2022-11-21,-,Global Public Affairs,The Town of Okotoks,Randy Pettipas,"Alberta Legislative Assembly, Alberta Seniors, Community and Social Services, Premier's Office",-,Housing,CL-13007-01,Consultant Lobbyist,"Maryann Chichak, Paul Whittaker, Jordan Pinkster",Initial Return,Archived,View  +2022-11-21,-,NOAH Water Technologies Inc.,-,Randy Christie,Alberta Agriculture and Irrigation,-,Agriculture,OL-12002-05,Organization Lobbyist,"Randy Christie, Alan Wilson",Semi-Annual Renewal,Archived,View  +2022-11-11,-,Wellington Advocacy Inc.,Cronos Group Inc.,Nick Koolsbergen,"Service Alberta and Red Tape Reduction, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Gaming, Liquor and Cannabis Commission",Economic Development,CL-12996-01,Consultant Lobbyist,"Matt de Jong, Peter Csillag, Brad Tennant",Initial Return,Archived,View  +2022-11-09,-,Alberta Counsel,Liricon Capital Inc.,Jonathon Wescott,"Alberta Jobs, Economy and Northern Development, Alberta Infrastructure, Alberta Environment and Protected Areas, Executive Council, Alberta Municipal Affairs, Alberta Indigenous Relations, Alberta Transportation and Economic Corridors, Premier's Office",-,Transportation,CL-12986-02,Consultant Lobbyist,"Pascal Ryffel, Sydney McHale, Votham Anastasiadis, Aileen Burke, Aaron Singleton, Heather Feldbusch, Zack Ziolkowski, James Johnson, Shayne Saskiw",Notice of Change,Archived,View  +2022-11-07,-,Brookfield BRP Canada Corp. (operating as Evolugen),-,Josée Guibord,"Alberta Environment and Protected Areas, Alberta Jobs, Economy and Northern Development, Alberta Energy, Executive Council, Alberta Affordability and Utilities, Alberta Legislative Assembly",Alberta Electric System Operator,"Energy, Environment",OL-12715-03,Organization Lobbyist,"Isabelle Deguise, Julien Wu, Mike Peters, Remi Moreau",Semi-Annual Renewal,Archived,View  +2022-11-07,-,Alberta Counsel,Equity Health Services Inc.,Jonathon Wescott,"Alberta Jobs, Economy and Northern Development, Executive Council, Alberta Health, Premier's Office",Alberta Health Services,Health,CL-12988-01,Consultant Lobbyist,"Shayne Saskiw, Pascal Ryffel, James Johnson, Zack Ziolkowski, Aileen Burke, Aaron Singleton, Votham Anastasiadis, Sydney McHale",Initial Return,Archived,View  +2022-11-07,-,Alberta Counsel,Liricon Capital Inc.,Jonathon Wescott,"Alberta Environment and Protected Areas, Alberta Infrastructure, Alberta Jobs, Economy and Northern Development, Alberta Indigenous Relations, Alberta Municipal Affairs, Executive Council, Alberta Transportation and Economic Corridors, Premier's Office",-,Transportation,CL-12986-01,Consultant Lobbyist,"Shayne Saskiw, James Johnson, Zack Ziolkowski, Heather Feldbusch, Aaron Singleton, Aileen Burke, Votham Anastasiadis, Sydney McHale, Pascal Ryffel",Initial Return,Archived,View  +2022-11-04,-,Global Public Affairs,Entos Pharmaceuticals,Randy Pettipas,"Alberta Jobs, Economy and Northern Development, Alberta Infrastructure, Service Alberta and Red Tape Reduction, Alberta Health, Premier's Office",-,"Health, Economic Development",CL-11861-14,Consultant Lobbyist,"Thanh Ngo, Paul Whittaker, Farid Foroud, Danielle Cruz",Notice of Change,Archived,View  +2022-11-04,-,Global Public Affairs,Strathcona County,Randy Pettipas,"Alberta Infrastructure, Alberta Transportation and Economic Corridors",-,Infrastructure,CL-10981-06,Consultant Lobbyist,Melissa Carvalho,Notice of Change,Archived,View  +2022-11-02,-,Alberta Counsel,Edmonton Chamber of Voluntary Organizations (ECVO),Jonathon Wescott,"Service Alberta and Red Tape Reduction, Alberta Culture, Alberta Legislative Assembly, Alberta Seniors, Community and Social Services, Premier's Office",-,Social programs,CL-12485-04,Consultant Lobbyist,"Sydney McHale, Heather Feldbusch, Shayne Saskiw, Pascal Ryffel, James Johnson, Votham Anastasiadis, Zack Ziolkowski, Aileen Burke, Aaron Singleton",Notice of Change,Archived,View  +2022-11-02,-,Alberta Counsel,Genesis Land Development Corp.,Jonathon Wescott,"Alberta Infrastructure, Alberta Municipal Affairs, Alberta Transportation and Economic Corridors, Premier's Office",-,Infrastructure,CL-12968-01,Consultant Lobbyist,"Shayne Saskiw, Pascal Ryffel, James Johnson, Zack Ziolkowski, Aileen Burke, Votham Anastasiadis, Aaron Singleton, Heather Feldbusch, Sydney McHale",Initial Return,Archived,View  +2022-11-02,-,Sun Life Financial,-,Kevin Strain,"Alberta Jobs, Economy and Northern Development, Alberta Health, Alberta Treasury Board and Finance, Premier's Office","Alberta Health Services, Alberta Innovates","Insurance, Health, Banks and Other Financial Institutions",OL-10943-20,Organization Lobbyist,"Ali Salam, Jessica Brcko, Victor Gomez, Alanna Boyd, Marianne Nguyen",Notice of Change,Archived,View  +2022-11-01,2022-12-01,Alberta North Projects Ltd.,Inter Pipeline Ltd.,Christopher Ghazouly,"Alberta Energy, Alberta Municipal Affairs",-,"Energy, Municipal Affairs",CL-10162-08,Consultant Lobbyist,Christopher Ghazouly,Notice of Change,Terminated,View  +2022-11-01,2022-12-01,Global Public Affairs,Chevron Canada Limited,Randy Pettipas,"Alberta Jobs, Economy and Northern Development, Alberta Environment and Protected Areas, Alberta Energy",Alberta Energy Regulator,"Energy, Climate",CL-12528-02,Consultant Lobbyist,"Cameron Brown, Pierre Alvarez, Doug Noble",Notice of Change,Terminated,View  +2022-11-01,-,Crestview Strategy,No Options No Choice Coalition,Chad Rogers,"Alberta Public Safety and Emergency Services, Alberta Justice, Service Alberta and Red Tape Reduction, Alberta Technology and Innovation, Alberta Jobs, Economy and Northern Development, Alberta Infrastructure, Alberta Environment and Protected Areas, Alberta Culture, Alberta Mental Health and Addictions, Alberta Energy, Alberta Children’s Services, Alberta Trade, Immigration and Multiculturalism, Alberta Municipal Affairs, Alberta Indigenous Relations, Executive Council, Alberta Health, Alberta Education, Alberta Affordability and Utilities, Alberta Transportation and Economic Corridors, Alberta Legislative Assembly, Alberta Agriculture and Irrigation, Alberta Treasury Board and Finance, Alberta Seniors, Community and Social Services, Premier's Office, Alberta Skilled Trades and Professions, Alberta Forestry, Parks and Tourism, Alberta Advanced Education",-,Health,CL-12964-02,Consultant Lobbyist,Mira Ahmad,Notice of Change,Archived,View  +2022-10-31,-,Verum Consulting,Canadian Manufacturers and Exporters Association,Ben Brunnen,"Alberta Jobs, Economy and Northern Development, Alberta Environment and Protected Areas, Alberta Energy, Executive Council, Alberta Trade, Immigration and Multiculturalism, Alberta Transportation and Economic Corridors, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education",-,"Research and Development, Economic Development, Transportation, Trades and Occupations",CL-12904-02,Consultant Lobbyist,Ben Brunnen,Notice of Change,Archived,View  +2022-10-31,-,Brookfield BRP Canada Corp. (operating as Evolugen),-,Josée Guibord,"Alberta Jobs, Economy and Northern Development, Alberta Environment and Protected Areas, Alberta Energy, Executive Council, Alberta Affordability and Utilities, Alberta Legislative Assembly",Alberta Electric System Operator,"Energy, Environment",OL-12715-02,Organization Lobbyist,"Remi Moreau, Mike Peters, Julien Wu, Isabelle Deguise",Notice of Change,Archived,View  +2022-10-28,-,Crestview Strategy,Christian Medical and Dental Association Canada,Chad Rogers,"Alberta Justice, Alberta Public Safety and Emergency Services, Alberta Culture, Alberta Environment and Protected Areas, Alberta Infrastructure, Alberta Jobs, Economy and Northern Development, Alberta Technology and Innovation, Service Alberta and Red Tape Reduction, Alberta Children’s Services, Alberta Energy, Alberta Mental Health and Addictions, Executive Council, Alberta Indigenous Relations, Alberta Municipal Affairs, Alberta Trade, Immigration and Multiculturalism, Alberta Affordability and Utilities, Alberta Education, Alberta Health, Alberta Agriculture and Irrigation, Alberta Legislative Assembly, Alberta Transportation and Economic Corridors, Alberta Seniors, Community and Social Services, Alberta Treasury Board and Finance, Alberta Advanced Education, Alberta Forestry, Parks and Tourism, Alberta Skilled Trades and Professions, Premier's Office",-,Health,CL-12964-01,Consultant Lobbyist,Mira Ahmad,Initial Return,Archived,View  +2022-10-28,-,HelpSeeker Inc.,-,Alina Turner,"Alberta Justice, Alberta Jobs, Economy and Northern Development, Alberta Children’s Services, Alberta Trade, Immigration and Multiculturalism, Executive Council, Alberta Community and Social Services, Alberta Seniors, Community and Social Services","Alberta Health Services, University of Calgary, Premier’s Council on Charities and Civil Society, Alberta Human Rights Commission","Human Rights, Social programs, Citizenship and Immigration, Science and Technology, Children’s Services, Indigenous Relations, Disaster Services and Emergency Relief, Housing",OL-11699-06,Organization Lobbyist,"Carille Mendoza, Travis Turner, Camilo Escamilla, Alina Turner, Matt Parker, Jesse Donaldson",Semi-Annual Renewal,Archived,View  +2022-10-24,-,The Co-operators Group Ltd.,-,Rob Wesseling,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Municipal Affairs, Service Alberta, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance",Automobile Insurance Rate Board,"Insurance, Infrastructure",OL-10965-23,Organization Lobbyist,"Scott MacDonald, Nicole Bellefleur, Gerry Martineau, George Hardy, Todd Saunders, Christopher Ross, Jim Mahoney, Sara Cleland, Maya Milardovic, Lisa Guglietti, Robert Wesseling, Lee Rumleskie",Semi-Annual Renewal,Archived,View  +2022-10-21,-,Santis Health Inc.,Togetherall Canada Ltd.,Dan Carbin,"Alberta Community and Social Services, Executive Council, Alberta Health, Alberta Advanced Education, Premier's Office",Alberta Health Services,Health,CL-12946-01,Consultant Lobbyist,"Steve Vander Wal, Stephanie Gawur",Initial Return,Archived,View  +2022-10-21,-,1689986 ALBERTA LIMITED carrying on business as Navigator,Wolf Midstream Inc,Jason Hatcher,"Alberta Environment and Parks, Alberta Energy, Executive Council, Alberta Treasury Board and Finance, Premier's Office",-,Energy,CL-11770-05,Consultant Lobbyist,"Rosa Ellithorpe, Lauren Armstrong",Notice of Change,Archived,View  +2022-10-20,-,Association of Professional Engineers and Geoscientists of Alberta,-,Jay Nagendran,Alberta Labour and Immigration,-,Trades and Occupations,OL-10381-34,Organization Lobbyist,"Gabrielle Abernethy, John Corriveau, Mohamed El Daly, Dianne Johnstone, Enayat Aminzadah, Nancy Biamonte, Jay Nagendran",Notice of Change,Archived,View  +2022-10-18,-,New West Public Affairs,Young Men's Christian Association (YMCA) Calgary,Monte Solberg,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Children’s Services, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Indigenous Relations, Alberta Community and Social Services, Alberta Culture and Status of Women, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,Infrastructure,CL-12005-06,Consultant Lobbyist,"Fahreen Budhwani, Gordon Olsen, Sarah Painchaud, Sonia Kont, Keith McLaughlin, Graham Gerein, Michael Solberg, Monte Solberg, Alysha Mohamed",Notice of Change,Archived,View  +2022-10-17,-,Hill+Knowlton Strategies,The Score Media and Gaming,Sheila Wisniewski,"Alberta Jobs, Economy and Innovation, Alberta Treasury Board and Finance, Premier's Office","Alberta Gaming, Liquor and Cannabis Commission",Gaming,CL-12696-03,Consultant Lobbyist,"Natalie Sigalet, Eliza Snider",Notice of Change,Archived,View  +2022-10-17,-,Alberta Counsel,New Star Capital Inc.,Jonathon Wescott,"Alberta Jobs, Economy and Innovation, Executive Council, Alberta Treasury Board and Finance, Premier's Office","Alberta Gaming, Liquor and Cannabis Commission",Gaming,CL-12937-01,Consultant Lobbyist,"James Johnson, Zack Ziolkowski, Aileen Burke, Heather Feldbusch, Aaron Singleton, Sydney McHale, Alexandra Carlile, Shayne Saskiw, Pascal Ryffel, Votham Anastasiadis",Initial Return,Archived,View  +2022-10-17,-,Alberta Counsel,Edmonton Chamber of Voluntary Organizations (ECVO),Jonathon Wescott,"Service Alberta, Alberta Community and Social Services, Alberta Culture and Status of Women, Alberta Legislative Assembly, Premier's Office",-,Social programs,CL-12485-03,Consultant Lobbyist,"Aaron Singleton, Aileen Burke, Zack Ziolkowski, Alexandra Carlile, Votham Anastasiadis, James Johnson, Pascal Ryffel, Shayne Saskiw, Heather Feldbusch, Sydney McHale",Notice of Change,Archived,View  +2022-10-17,-,Alberta Counsel,Alberta Union of Nurse Practitioners,Jonathon Wescott,"Alberta Labour and Immigration, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,Health,CL-12779-02,Consultant Lobbyist,"Alexandra Carlile, Aaron Singleton, Zack Ziolkowski, James Johnson, Pascal Ryffel, Sydney McHale, Votham Anastasiadis, Aileen Burke, Shayne Saskiw, Heather Feldbusch",Notice of Change,Archived,View  +2022-10-14,-,Canadian Association of Petroleum Producers,-,Lisa Baiton,"Alberta Labour and Immigration, Alberta Environment and Parks, , Alberta Energy, Alberta Municipal Affairs, Alberta Indigenous Relations, Executive Council, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Justice and Solicitor General, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office","Alberta Innovates, Workers’ Compensation Board, Alberta Energy Regulator","Energy, Climate, Health, Royalties, Taxes and Finance, Land Use, Justice and Law Enforcement, Environment, Municipal Affairs, Indigenous Relations, Transportation, Economic Development, Wildlife, Labour Relations",OL-10227-57,Organization Lobbyist,"Rob Kopecky, Fauziah Rochman, J.C. Vito, Lisa Baiton, Tricia Donnelly, Paul Hartzheim, Stephen Bresee, David Hume, Tara Payment, Cole Schulz, Don McCrimmon, Markus Ermisch, Amberly Dooley, Claudette Fedoruk, Bryan Remillard, Giles Ody, Brad Herald, Richard Wong, Patrick McDonald, Krista Phillips, Aaron Miller, Jonathan Stringham, Jay Averill, Greig Sproule",Notice of Change,Archived,View  +2022-10-14,-,TC Energy Corporation,-,Francois Poirier,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Service Alberta, Executive Council, Alberta Indigenous Relations, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office","Alberta Utilities Commission, Alberta Innovates, Alberta Energy Regulator, Alberta Electric System Operator, Market Surveillance Administrator","Energy, Procurement, Environment, Municipal Affairs, Indigenous Relations, Wildlife, Transportation",OL-10499-55,Organization Lobbyist,"Wanda Hari, Dave Forestell, Riley Baldwin, Keith Nelson, Michael Schmaltz, Patrick Keys, Robert Tarvydas, Kirk Wasylik, Wendell Klassen, Ana Maria Radu, Mel Garner, Timothy Lam, Stefan Skocylas, Wade Pruett, Greg Grant, Graeme Wright, Lindsay MacKay, Luke Meredith, Julia Jensen, Duane Alexander, Christopher Vivone, Fareen Sunderji, Kristin Anderson, Holly Waldorf, Tisha Homer, Alex Harris, Blaine Trout, Francois Poirier, Mark Thompson, Richard Prior, Jay White, Ken Brink, Jawad Masud, Bevin Wirzba, Joe Zhou, Mark Blundell, Sheldon Good, Patrick Muttart, Ryan Laverty, Corey Hessen, Karla Palardy, Andrew Isherwood, Omar Khayum, Ryan Dunne",Semi-Annual Renewal,Archived,View  +2022-10-14,-,Alberta Counsel,Alberta Paramedic Association,Jonathon Wescott,"Alberta Labour and Immigration, Alberta Health, Alberta Legislative Assembly, Premier's Office, Alberta Advanced Education",Alberta Health Services,Labour Relations,CL-12127-08,Consultant Lobbyist,"Votham Anastasiadis, Sydney McHale, Aileen Burke, Zack Ziolkowski, James Johnson, Pascal Ryffel, Shayne Saskiw, Alexandra Carlile, Aaron Singleton, Heather Feldbusch",Notice of Change,Archived,View  +2022-10-14,-,Alberta Counsel,The Stollery Children's Hospital Foundation,Jonathon Wescott,"Alberta Infrastructure, Alberta Jobs, Economy and Innovation, Alberta Indigenous Relations, Alberta Health, Alberta Legislative Assembly, Alberta Advanced Education, Premier's Office",-,Health,CL-10223-17,Consultant Lobbyist,"Votham Anastasiadis, Sydney McHale, Aileen Burke, Alexandra Carlile, Aaron Singleton, Pascal Ryffel, Shayne Saskiw, Lindsay Lahey, Zack Ziolkowski, James Johnson",Notice of Change,Archived,View  +2022-10-14,-,Alberta Counsel,Alberta Cattle Feeders' Association,Jonathon Wescott,"Alberta Labour and Immigration, Alberta Infrastructure, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Transportation, Alberta Treasury Board and Finance",-,"Agriculture, Trade, Citizenship and Immigration, Municipal Affairs, Transportation, Infrastructure",CL-12519-02,Consultant Lobbyist,"Aaron Singleton, Zack Ziolkowski, James Johnson, Shayne Saskiw, Alexandra Carlile, Aileen Burke, Al Kemmere, Pascal Ryffel, Heather Feldbusch, Sydney McHale",Notice of Change,Archived,View  +2022-10-14,-,Cargill Limited,-,Jeff Vassart,"Alberta Labour and Immigration, Alberta Environment and Parks, Alberta Infrastructure, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Transportation, Alberta Legislative Assembly, Premier's Office, Alberta Advanced Education",-,"Agriculture, Environment, Infrastructure, Labour Relations",OL-11345-08,Organization Lobbyist,"Liesel Meissner, David Anyanwu, Cynthia Lee, Jennifer Marchand",Semi-Annual Renewal,Archived,View  +2022-10-14,-,Alberta Counsel,Doula Association of Alberta,Jonathon Wescott,"Alberta Health, Alberta Legislative Assembly, Premier's Office",Alberta Health Services,Health,CL-12324-04,Consultant Lobbyist,"Heather Feldbusch, Alexandra Carlile, Zack Ziolkowski, Votham Anastasiadis, Aaron Singleton, Aileen Burke, Sydney McHale, Pascal Ryffel, Shayne Saskiw, James Johnson",Notice of Change,Archived,View  +2022-10-14,-,CNOOC Petroleum North America ULC,-,Feng Li,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Premier's Office",-,"Energy, Environment, Trade, Economic Development",OL-10375-49,Organization Lobbyist,"Michael J. Dlugan, Scott Chalker",Notice of Change,Archived,View  +2022-10-14,2022-10-31,Alberta Counsel,Municipal District of Bighorn,Jonathon Wescott,"Alberta Environment and Parks, Alberta Municipal Affairs",-,Land Use,CL-12686-03,Consultant Lobbyist,"Sydney McHale, Alexandra Carlile, Aaron Singleton, Votham Anastasiadis, Aileen Burke, Pascal Ryffel, Zack Ziolkowski, James Johnson, Shayne Saskiw, Heather Feldbusch",Notice of Change,Terminated,View  +2022-10-14,-,ConocoPhillips Canada Resources Corp.,-,Bijan Agarwal,"Alberta Environment and Parks, Alberta Energy, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Alberta Treasury Board and Finance, Premier's Office","Alberta Petroleum Marketing Commission, Alberta Energy Regulator","Energy, Climate, Environment, Municipal Affairs",OL-10099-33,Organization Lobbyist,"Jodi Prior, Cary Allan, Jeff Gow, Fred Walter, Robert Albricht, Kim Iverson, Peter Koning, Rickie-Lee Doyle, Chris Malkin, Charlotte Plombin, Bijan Agarwal, Gunnar Johnsen, Devin O'Neal, James Makowecki, Tyler Blasetti, Cam Sorenson",Notice of Change,Archived,View  +2022-10-14,-,ENMAX Corporation,-,Mark Poweska,"Alberta Energy, Executive Council, Service Alberta, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Utilities Commission, Alberta Innovates, Alberta Electric System Operator, Balancing Pool, Market Surveillance Administrator, Invest Alberta Corporation","Energy, Consumer Issues, Environment",OL-10279-66,Organization Lobbyist,"Mark Poweska, Erica Young, Randall Stubbings, Mark McGillivray, Chris McCleave, Chris Joy, Timothy Boston, Sarah Stevens, Jana Mosley, Shiv Kumar, Tracy Coutts, Rose Ferrer, Sheizana Murji, Greg Retzer, Janene Taylor",Notice of Change,Archived,View  +2022-10-13,-,Cenovus Energy Inc.,-,Alex Pourbaix,"Alberta Environment and Parks, Alberta Labour and Immigration, Alberta Infrastructure, Alberta Energy, Alberta Municipal Affairs, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Indigenous Relations, Alberta Justice and Solicitor General, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Alberta Advanced Education, Premier's Office","Alberta Petroleum Marketing Commission, Alberta Utilities Commission, Alberta Energy Regulator, Alberta Electric System Operator","Energy, Taxes and Finance, Environment, Municipal Affairs, Indigenous Relations, Infrastructure, Workplace Safety, Labour Relations",OL-10248-29,Organization Lobbyist,"Kerry Margetts, Aaron Studer, Patricia Hill, Carlos Serrato, Stephanie Kitchen, Alex Pourbaix, Jessica Player, Jeff Nail, Sharla Howard, Devin Iversen, Owen Henshaw, Alisha Bhura, Sam Murphy, Norrie Ramsay, Jeff Jeworski, Andrew Straile, Trent Zacharias, Drew Zieglgansberger, Lindsay Reynolds, Grant Pellegrin, Michael Cody, Ted Johnson, Jamie Agnew, Greg Cave, Jared Robertson, Kam Sandhar, Michael Wilson, Jillian Falls, Brooke Lindsey, Geoff Murray, Gary Molnar, Sean Hiebert, Michael Penner, Eric Wakley, Michele Waters, Sherry Wendt, Brett Wiens, Troy Peterson, Jennifer Shalagan, Shannon McDougall, Travis Davies, Ray Lambert, Rhona DelFrari, Susan Grey, Suzanne Smith, Mike Plettel, Charles Gobin, Darwin Bateyko, Shane Cooke, Shelley Machon, Keith Chiasson, Amos Ben-Zvi, Patrick McKay, Prince Azom, Chris Moody, Claire Hong, Tony Jackson, Scott Hillier, Jim Lytle, Tyler Tarnoczi, Jon McKenzie, Morgan Wrishko, Andrea Louise, John Dowsett, Steve Hicks, Ben Hale",Notice of Change,Archived,View  +2022-10-13,2022-11-02,Counsel Public Affairs Inc.,OPENCIRCLE MEMBERSHIP SERVICES AND WORKFORCE DEVELOPMENT ASSOCIATION,Philip Dewan,"Alberta Labour and Immigration, Alberta Infrastructure, Alberta Municipal Affairs, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Education, Alberta Culture and Status of Women, Alberta Health, Alberta Transportation, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education",-,"Employment and Training, Budget, Health, Trades and Occupations",CL-11340-19,Consultant Lobbyist,Amber Ruddy,Notice of Change,Terminated,View  +2022-10-13,-,Counsel Public Affairs Inc.,Canadian Battery Association,Philip Dewan,"Alberta Environment and Parks, Alberta Energy",-,Environment,CL-12532-05,Consultant Lobbyist,"Amber Ruddy, Brad Lavigne",Notice of Change,Archived,View  +2022-10-13,-,Counsel Public Affairs Inc.,Emergent BioSolutions Canada Inc. (formerly Adapt Pharma Canada Ltd.),Philip Dewan,"Alberta Environment and Parks, Alberta Labour and Immigration, Alberta Infrastructure, Alberta Energy, Alberta Children’s Services, Alberta Municipal Affairs, Alberta Indigenous Relations, Alberta Community and Social Services, Alberta Jobs, Economy and Innovation, Executive Council, Service Alberta, Alberta Culture and Status of Women, Alberta Education, Alberta Justice and Solicitor General, Alberta Health, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Alberta Seniors and Housing, Premier's Office, Alberta Advanced Education",-,Health,CL-11418-13,Consultant Lobbyist,"Bradley Lavigne, Amber Ruddy",Notice of Change,Archived,View  +2022-10-11,-,New West Public Affairs,Algae Control Canada,Monte Solberg,"Alberta Environment and Parks, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Indigenous Relations, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,Environment,CL-12517-02,Consultant Lobbyist,"Graham Gerein, Sonia Kont, Gordon Olsen, Keith McLaughlin, Michael Solberg, Monte Solberg, Sarah Painchaud, Fahreen Budhwani, Alysha Mohamed",Notice of Change,Archived,View  +2022-10-11,2022-11-01,New West Public Affairs,Chartered Professionals in Human Resources of Alberta (CPHR AB),Monte Solberg,"Alberta Labour and Immigration, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Advanced Education, Premier's Office",-,Trades and Occupations,CL-12147-05,Consultant Lobbyist,"Graham Gerein, Sonia Kont, Sarah Painchaud, Michael Solberg, Monte Solberg, Keith McLaughlin, Gordon Olsen, Fahreen Budhwani, Alysha Mohamed",Notice of Change,Terminated,View  +2022-10-11,2022-11-03,New West Public Affairs,Clean Water Clarification Technologies Inc.,Monte Solberg,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Indigenous Relations, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Legislative Assembly, Premier's Office",-,Economic Development,CL-12515-03,Consultant Lobbyist,"Gordon Olsen, Michael Solberg, Keith McLaughlin, Sonia Kont, Sarah Painchaud, Graham Gerein, Monte Solberg, Fahreen Budhwani, Alysha Mohamed",Notice of Change,Terminated,View  +2022-10-09,-,CNOOC Petroleum North America ULC,-,Yongjie Liu,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Premier's Office",-,"Energy, Environment, Trade, Economic Development",OL-10375-48,Organization Lobbyist,"Scott Chalker, Michael J. Dlugan",Semi-Annual Renewal,Archived,View  +2022-10-09,-,Osborne Group Contract Executives Corp,Western Canadian Wheat Growers Association,Mark Olson,"Alberta Agriculture, Forestry and Rural Economic Development",-,Agriculture,CL-11618-04,Consultant Lobbyist,Dave Quist,Notice of Change,Archived,View  +2022-10-07,-,Cisco Systems Canada Co.,-,Shannon Leininger,"Alberta Environment and Parks, Service Alberta, Alberta Justice and Solicitor General, Alberta Education, Alberta Health, Alberta Treasury Board and Finance, Alberta Advanced Education",-,"Taxes and Finance, Health, Procurement, Justice and Law Enforcement, Environment, Post-secondary Education, Science and Technology",OL-10462-25,Organization Lobbyist,"Gaetan Houle, Ali Afshari, Rebecca Leach, Bob DuChene, Gary Schriber, Jess Murphy, Rob Campagna, Rob Barton, Oleg Tolchinsky, Eric Thibault, Ron Rotman, Ryan LaTorre, Patrick LeMaistre, Dean Boechler, Shawn Cardinal, Duha Younes, Jason Maynard, Willa Black, Jeff Campbell, Cathy Worden, Raj Dhaliwal, Marc Poretti, David Anderton, Robi Chamas, Shannon Leininger, Don Orlik, Ian Procyk, Pirasath Kirupakaran, Cardin Klassen, Wayne Cuervo, Jason Stegeman, Yanick Sauro, Clinton Neusitzer, Nadine Paz, Tom Amery",Semi-Annual Renewal,Archived,View  +2022-10-07,2022-10-08,Maple Leaf Strategies,The Prostate Cancer Centre,Phil von Finckenstein,"Executive Council, Alberta Health, Alberta Treasury Board and Finance, Premier's Office",-,Health,CL-12926-01,Consultant Lobbyist,Kelley Charlebois,Initial Return,Terminated,View  +2022-10-07,-,Alberta Counsel,Municipal District of Greenview,Jonathon Wescott,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Justice and Solicitor General, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office",-,"Municipal Affairs, Economic Development",CL-12930-01,Consultant Lobbyist,"Shayne Saskiw, Pascal Ryffel, Jonathon Wescott, Zack Ziolkowski, Aileen Burke, Heather Feldbusch, Aaron Singleton, Sydney McHale, James Johnson",Initial Return,Archived,View  +2022-10-07,2022-10-26,Counsel Public Affairs Inc.,Biogen Canada,Philip Dewan,"Executive Council, Alberta Jobs, Economy and Innovation, Alberta Health, Premier's Office",-,Health,CL-12527-04,Consultant Lobbyist,"Brad Lavigne, Amber Ruddy",Notice of Change,Terminated,View  +2022-10-07,-,Counsel Public Affairs Inc.,TELUS Corporation,Philip Dewan,Alberta Legislative Assembly,-,"Health, Agriculture, Procurement, Economic Development",CL-12769-02,Consultant Lobbyist,"Bradley Lavigne, Amber Ruddy, Jean-Marc Prevost",Notice of Change,Archived,View  +2022-10-06,-,Ian Murray & Company Ltd.,Mercer International Inc.,Ian Murray,"Alberta Environment and Parks, Alberta Energy, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office",-,Economic Development,CL-12922-01,Consultant Lobbyist,"Bob Baer, Nathan Dudley, Ian Murray, David Dorward, Bill Bewick, Robert Savage",Initial Return,Archived,View  +2022-10-06,-,New West Public Affairs,Clearpoint Health Network Inc.,Monte Solberg,"Alberta Health, Alberta Legislative Assembly, Premier's Office",Alberta Health Services,Health,CL-12927-01,Consultant Lobbyist,"Monte Solberg, Michael Solberg, Keith McLaughlin, Gordon Olsen, Sonia Kont, Sarah Painchaud, Graham Gerein, Fahreen Budwhani",Initial Return,Archived,View  +2022-10-06,-,OpenCircle Membership Services and Workforce Development Association,-,Line Porfon,"Alberta Labour and Immigration, Alberta Infrastructure, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Executive Council, Alberta Education, Alberta Culture and Status of Women, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Advanced Education, Premier's Office","Alberta Apprenticeship and Industry Training Board, Workers’ Compensation Board","Budget, Employment and Training, Health, Post-secondary Education, Trade, K-12 Education, Trades and Occupations, Labour Relations",OL-10409-27,Organization Lobbyist,"Elizabeth Hammell, Line Porfon, Alan Kuysters, Brian Lacey, Glenna Laing",Semi-Annual Renewal,Archived,View  +2022-10-05,-,Wellington Advocacy Inc.,Heartland Generation Ltd.,Nick Koolsbergen,"Alberta Environment and Parks, Alberta Energy, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Treasury Board and Finance, Premier's Office",Invest Alberta Corporation,Energy,CL-12766-03,Consultant Lobbyist,"Nick Koolsbergen, Matt de Jong, Peter Csillag, Brad Tennant",Notice of Change,Archived,View  +2022-10-05,-,Wellington Advocacy Inc.,Building Industry and Land Development (BILD) Alberta Association,Nick Koolsbergen,"Alberta Energy, Service Alberta, Alberta Municipal Affairs, Executive Council, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office, Alberta Seniors and Housing",-,"Small Business, Municipal Affairs",CL-12473-04,Consultant Lobbyist,"Matt de Jong, Peter Csillag, Brad Tennant",Notice of Change,Archived,View  +2022-10-04,-,Jangula and Company,Coalition of Canadian Independent Craft Brewers,Craig Jangula,"Executive Council, Alberta Jobs, Economy and Innovation, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Gaming, Liquor and Cannabis Commission","Taxes and Finance, Liquor, Trade, Intergovernmental Relations",CL-10652-17,Consultant Lobbyist,Craig Jangula,Notice of Change,Archived,View  +2022-10-04,-,"Rothmans, Benson, & Hedges",-,Mindaugas Trumpaitis,"Alberta Environment and Parks, Executive Council, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,"Budget, Health, Taxes and Finance, Environment",OL-10507-16,Organization Lobbyist,"Gerald Proctor, Colin Weeres, Jeff Gaulin",Semi-Annual Renewal,Archived,View  +2022-10-04,-,Counsel Public Affairs Inc.,Tourmaline Oil Corp.,Philip Dewan,"Alberta Energy, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Executive Council, Premier's Office",Alberta Energy Regulator,"Energy, Environment, Municipal Affairs",CL-12917-01,Consultant Lobbyist,"T.J. Keil, Brad Lavigne",Initial Return,Archived,View  +2022-10-03,-,Counsel Public Affairs Inc.,Athabasca Chipewyan First Nation,Philip Dewan,"Alberta Environment and Parks, Alberta Energy, Executive Council, Alberta Indigenous Relations, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Alberta Culture and Status of Women, Alberta Health, Alberta Justice and Solicitor General, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education",Alberta Energy Regulator,"Arts and Culture, Health, Environment, Justice and Law Enforcement, Indigenous Relations, Municipal Affairs, K-12 Education",CL-11070-15,Consultant Lobbyist,T.J. Keil,Notice of Change,Archived,View  +2022-10-03,-,Methanex Corporation,-,John Floren,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Legislative Assembly, Alberta Treasury Board and Finance",-,"Energy, Environment, Economic Development",OL-10459-56,Organization Lobbyist,"Brad Apking, Jody Magill, Mark Allard, Kevin Henderson, Renato Monteiro, Jeff Ngo, Ryan Hornung",Semi-Annual Renewal,Archived,View  +2022-10-03,-,NAIT Students' Association,-,Tyleen Saison,"Alberta Treasury Board and Finance, Alberta Advanced Education",Northern Alberta Institute of Technology,Post-secondary Education,OL-10373-18,Organization Lobbyist,"Jody Gylander, Chris Chelmick, Tyleen Saison, Jason Roth, Renata Medeiros",Semi-Annual Renewal,Archived,View  +2022-10-03,-,Novartis Pharmaceuticals Canada Inc.,-,Andrea Marazzi,"Service Alberta, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Health, Alberta Treasury Board and Finance, Premier's Office, Alberta Seniors and Housing","University of Alberta, Alberta Health Services, University of Calgary",Health,OL-10496-26,Organization Lobbyist,"Sophie Rochon, Caroline Barber, Kimberly King, Thea Discepola, Andrea Marazzi, Helen Trifonopolous",Semi-Annual Renewal,Archived,View  +2022-09-30,-,Verum Consulting,Tourism Industry Association of Alberta,Ben Brunnen,"Alberta Jobs, Economy and Innovation",-,Tourism,CL-12915-01,Consultant Lobbyist,Ben Brunnen,Initial Return,Archived,View  +2022-09-30,-,Verum Consulting,Canadian Manufacturers and Exporters Association,Ben Brunnen,"Alberta Environment and Parks, Alberta Labour and Immigration, Alberta Energy, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education",-,"Research and Development, Economic Development, Transportation, Trades and Occupations",CL-12904-01,Consultant Lobbyist,Ben Brunnen,Initial Return,Archived,View  +2022-09-29,-,Wellington Advocacy Inc.,New Star Capital Inc,Nick Koolsbergen,"Alberta Environment and Parks, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Education, Alberta Legislative Assembly, Alberta Treasury Board and Finance","Alberta Gaming, Liquor and Cannabis Commission",Economic Development,CL-12765-03,Consultant Lobbyist,"Brad Tennant, Matt de Jong",Notice of Change,Archived,View  +2022-09-29,-,Wellington Advocacy Inc.,Orange Acres Development Ltd.,Nick Koolsbergen,"Alberta Jobs, Economy and Innovation, Alberta Legislative Assembly",Invest Alberta Corporation,Economic Development,CL-12783-03,Consultant Lobbyist,"Brad Tennant, Matt de Jong, Peter Csillag",Notice of Change,Archived,View  +2022-09-27,-,"Letko, Brosseau & Associates Inc.",-,Daniel Brosseau,"Alberta Labour and Immigration, Alberta Infrastructure, Alberta Children’s Services, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Service Alberta, Alberta Community and Social Services, Executive Council, Alberta Health, Alberta Justice and Solicitor General, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Culture and Status of Women, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office, Alberta Seniors and Housing, Alberta Advanced Education",-,"Employment and Training, Research and Development, Banks and Other Financial Institutions, Pensions, Economic Development",OL-12790-03,Organization Lobbyist,"Peter Letko, David Després, Daniel Brosseau",Notice of Change,Archived,View  +2022-09-27,2022-10-12,New West Public Affairs,Science Alberta Foundation Mindfuel,Monte Solberg,"Alberta Jobs, Economy and Innovation, Executive Council, Alberta Education, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Advanced Education, Premier's Office",-,Science and Technology,CL-12912-01,Consultant Lobbyist,"Monte Solberg, Michael Solberg, Keith McLaughlin, Sonia Kont, Gordon Olsen, Sarah Painchaud, Graham Gerein, Fahreen Budwhani, Matt Solberg",Initial Return,Terminated,View  +2022-09-26,-,ENMAX Corporation,-,Mark Poweska,"Alberta Energy, Executive Council, Service Alberta, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Utilities Commission, Alberta Innovates, Balancing Pool, Alberta Electric System Operator, Invest Alberta Corporation, Market Surveillance Administrator","Energy, Consumer Issues, Environment",OL-10279-65,Organization Lobbyist,"Janene Taylor, Greg Retzer, Sheizana Murji, Rose Ferrer, Tracy Coutts, Shiv Kumar, Jana Mosley, Sarah Stevens, Timothy Boston, Chris Joy, Chris McCleave, Mark McGillivray, Randall Stubbings, Erica Young, Mark Poweska",Notice of Change,Archived,View  +2022-09-26,-,"Letko, Brosseau & Associates Inc.",-,Daniel Brosseau,"Alberta Labour and Immigration, Alberta Infrastructure, Alberta Energy, Alberta Children’s Services, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Community and Social Services, Service Alberta, Alberta Justice and Solicitor General, Alberta Health, Alberta Culture and Status of Women, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Transportation, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Seniors and Housing, Premier's Office, Alberta Advanced Education",-,"Employment and Training, Banks and Other Financial Institutions, Research and Development, Pensions, Economic Development",OL-12790-02,Organization Lobbyist,"Daniel Brosseau, David Després, Peter Letko",Notice of Change,Archived,View  +2022-09-23,-,PETRONAS Energy Canada Limited,-,Izwan Ismail,"Alberta Energy, Alberta Jobs, Economy and Innovation, Executive Council, Premier's Office",Invest Alberta Corporation,Energy,OL-11175-08,Organization Lobbyist,Shannon Young,Notice of Change,Archived,View  +2022-09-23,-,The Capital Hill Group,Salesforce Canada Corporation,David Angus,"Alberta Children’s Services, Alberta Indigenous Relations, Alberta Jobs, Economy and Innovation, Service Alberta, Executive Council, Alberta Community and Social Services, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Health, Alberta Advanced Education",-,"Procurement, Science and Technology",CL-12908-01,Consultant Lobbyist,"Erin Iverson, Sonya Moore",Initial Return,Archived,View  +2022-09-23,-,New West Public Affairs,The Nonprofit Vote,Monte Solberg,"Alberta Labour and Immigration, Executive Council, Service Alberta, Alberta Jobs, Economy and Innovation, Alberta Community and Social Services, Alberta Health, Alberta Culture and Status of Women, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office, Alberta Seniors and Housing",-,Social programs,CL-12907-02,Consultant Lobbyist,"Sonia Kont, Matt Solberg, Graham Gerein, Sarah Painchaud, Gordon Olsen, Keith McLaughlin, Michael Solberg, Monte Solberg",Notice of Change,Archived,View  +2022-09-22,-,New West Public Affairs,The Nonprofit Vote,Monte Solberg,"Alberta Labour and Immigration, Alberta Community and Social Services, Alberta Jobs, Economy and Innovation, Service Alberta, Executive Council, Alberta Culture and Status of Women, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Seniors and Housing, Premier's Office",-,Social programs,CL-12907-01,Consultant Lobbyist,"Monte Solberg, Michael Solberg, Keith McLaughlin, Gordon Olsen, Sarah Painchaud, Graham Gerein, Matt Solberg, Sonia Kont",Initial Return,Archived,View  +2022-09-22,-,Innovative Medicines Canada,-,Pamela Fralick,"Alberta Jobs, Economy and Innovation, Executive Council, Service Alberta, Alberta Health, Alberta Education, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Advanced Education",Alberta Health Services,"Budget, Employment and Training, Health, Procurement, Research and Development, Intergovernmental Relations, Economic Development",OL-10310-36,Organization Lobbyist,"Susan Baker, Conrad Bellehumeur, Pamela E Fralick, Michael Dietrich, Pascal Chan",Notice of Change,Archived,View  +2022-09-21,2022-10-07,Marie Rajic,WinSport,Marie Rajic,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Culture and Status of Women, Alberta Treasury Board and Finance, Alberta Advanced Education, Premier's Office",-,Infrastructure,CL-12905-02,Consultant Lobbyist,Marie Rajic,Notice of Change,Terminated,View  +2022-09-21,-,Sun Life Financial,-,Kevin Strain,"Alberta Jobs, Economy and Innovation, Alberta Health, Alberta Treasury Board and Finance, Premier's Office","Alberta Health Services, Alberta Innovates","Insurance, Health, Banks and Other Financial Institutions",OL-10943-19,Organization Lobbyist,"Marianne Nguyen, Alanna Boyd, Victor Gomez, Jessica Brcko, Ali Salam",Semi-Annual Renewal,Archived,View  +2022-09-21,-,NAIT Students' Association,-,Tyleen Saison,"Alberta Treasury Board and Finance, Alberta Advanced Education",Northern Alberta Institute of Technology,Post-secondary Education,OL-10373-17,Organization Lobbyist,"Renata Medeiros, Jason Roth, Tyleen Saison, Chris Chelmick, Kaedee Fythe Torrino, Jody Gylander",Notice of Change,Archived,View  +2022-09-20,-,Marie Rajic,WinSport,Marie Rajic,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Culture and Status of Women, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education",-,Infrastructure,CL-12905-01,Consultant Lobbyist,Marie Rajic,Initial Return,Archived,View  +2022-09-19,-,New West Public Affairs,MaKami College,Monte Solberg,"Alberta Municipal Affairs, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Health, Alberta Education, Alberta Legislative Assembly, Premier's Office, Alberta Advanced Education",-,"Health, Post-secondary Education",CL-12007-04,Consultant Lobbyist,"Graham Gerein, Gordon Olsen, Keith McLaughlin, Sarah Painchaud, Sonia Kont, Michael Solberg, Monte Solberg, Matt Solberg",Notice of Change,Archived,View  +2022-09-19,-,New West Public Affairs,Town of Banff,Monte Solberg,"Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",Travel Alberta,Tourism,CL-12902-01,Consultant Lobbyist,"Monte Solberg, Gordon Olsen, Keith McLaughlin, Michael Solberg, Matt Solberg, Sonia Kont, Sarah Painchaud, Graham Gerein, Fahreen Budhwani",Initial Return,Archived,View  +2022-09-18,-,Corteva Agriscience Canada Company,-,Bryce Eger,"Alberta Environment and Parks, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Health, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Premier's Office",-,"Climate, Agriculture, Environment",OL-12246-04,Organization Lobbyist,"Chad Grekul, Bryce Eger, René Petroski, Andrea Faubert, Tyler Groeneveld",Notice of Change,Archived,View  +2022-09-15,-,Ian Murray & Company Ltd.,Alberta-Pacific Forest Industries Inc.,Ian Murray,"Alberta Energy, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office",-,Transportation,CL-12900-01,Consultant Lobbyist,"Bob Baer, David Dorward, Ian Murray, Nathan Dudley, Robert Savage, Bill Bewick",Initial Return,Archived,View  +2022-09-15,-,Canadian Medical Association,-,Timothy Smith,"Alberta Labour and Immigration, Executive Council, Alberta Justice and Solicitor General, Alberta Health, Alberta Legislative Assembly, Premier's Office",-,"Health, Justice and Law Enforcement",OL-10605-23,Organization Lobbyist,"Dr. Kathleen Ross, Renee Belanger, Romeo Tello, Karey Shuhendler, Elena Gabrysz, Eric Lewis, Dr. Katharine Smart, Marie-Claire Bedard, Jasmine Neeson, Philippe Ha, Ashley Chisholm, Caroline Bouchard, Jennifer Kitts, Azin Peyrow, Manon Abud, Julie Aung, Owen Adams, Aline Gagnon, Cecile Bensimon, Stephen Vail, Audrey Grandmaison, John Feeley, Luce Lavoie, Tim Smith, Anick Losier, Nick Farinaccio, Dr. Jeff Blackmer, Pascal Charron, Kristin Smith, Joseph Mayer, Nick Lecuyer, Dr. Alika Lafontaine, Louise Sweatman",Notice of Change,Archived,View  +2022-09-15,-,TC Energy Corporation,-,Francois Poirier,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Service Alberta, Executive Council, Alberta Indigenous Relations, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office","Alberta Utilities Commission, Alberta Health Services, Alberta Innovates, Alberta Energy Regulator, Alberta Electric System Operator, Market Surveillance Administrator","Energy, Health, Procurement, Environment, Municipal Affairs, Indigenous Relations, Wildlife, Transportation",OL-10499-54,Organization Lobbyist,"Omar Khayum, Andrew Isherwood, Karla Palardy, Corey Hessen, Ryan Laverty, Patrick Muttart, Sheldon Good, Mark Blundell, Joe Zhou, Bevin Wirzba, Jawad Masud, Ken Brink, Jay White, Richard Prior, Mark Thompson, Francois Poirier, Blaine Trout, Alex Harris, Tisha Homer, Holly Waldorf, Kristin Anderson, Fareen Sunderji, Christopher Vivone, Duane Alexander, Julia Jensen, Luke Meredith, Lindsay MacKay, Graeme Wright, Greg Grant, Wade Pruett, Stefan Skocylas, Timothy Lam, Mel Garner, Ana Maria Radu, Wendell Klassen, Kirk Wasylik, Robert Tarvydas, Patrick Keys, Michael Schmaltz, Keith Nelson, Riley Baldwin, Dave Forestell, Wanda Hari",Notice of Change,Archived,View  +2022-09-15,-,ENMAX Corporation,-,Mark Poweska,"Alberta Energy, Executive Council, Service Alberta, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Utilities Commission, Alberta Innovates, Alberta Electric System Operator, Balancing Pool, Market Surveillance Administrator, Invest Alberta Corporation","Energy, Consumer Issues, Environment",OL-10279-64,Organization Lobbyist,"Charles Ruigrok, Erica Young, Randall Stubbings, Mark McGillivray, Chris McCleave, Chris Joy, Timothy Boston, Sarah Stevens, Jana Mosley, Shiv Kumar, Tracy Coutts, Rose Ferrer, Sheizana Murji, Greg Retzer, Janene Taylor",Notice of Change,Archived,View  +2022-09-14,-,Wellington Advocacy Inc.,WestJet An Alberta Partnership,Nick Koolsbergen,"Alberta Labour and Immigration, Alberta Environment and Parks, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Health, Alberta Transportation, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education",Travel Alberta,"Employment and Training, Tourism, Economic Development",CL-11678-11,Consultant Lobbyist,"Nick Koolsbergen, Trisha Rinneard, Peter Csillag, Brad Tennant, Matt de Jong",Notice of Change,Archived,View  +2022-09-14,-,Cenovus Energy Inc.,-,Alex Pourbaix,"Alberta Environment and Parks, Alberta Labour and Immigration, Alberta Infrastructure, Alberta Energy, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Municipal Affairs, Alberta Indigenous Relations, Alberta Justice and Solicitor General, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education","Alberta Utilities Commission, Alberta Petroleum Marketing Commission, Alberta Energy Regulator, Alberta Electric System Operator","Energy, Taxes and Finance, Environment, Municipal Affairs, Indigenous Relations, Infrastructure, Workplace Safety, Labour Relations",OL-10248-28,Organization Lobbyist,"Ben Hale, Steve Hicks, John Dowsett, Andrea Louise-Martyn, Morgan Wrishko, Jon McKenzie, Tyler Tarnoczi, Jim Lytle, Scott Hillier, Tony Jackson, Claire Hong, Chris Moody, Prince Azom, Patrick McKay, Amos Ben-Zvi, Keith Chiasson, Shelley Machon, Shane Cooke, Darwin Bateyko, Charles Gobin, Mike Plettel, Suzanne Smith, Susan Grey, Rhona DelFrari, Ray Lambert, Travis Davies, Anamika Mukherjee, Shannon McDougall, Jennifer Shalagan, Troy Peterson, Brett Wiens, Sherry Wendt, Michele Waters, Eric Wakley, Michael Penner, Sean Hiebert, Gary Molnar, Geoff Murray, Brooke Lindsey, Jillian Falls, Michael Wilson, Kam Sandhar, Jared Robertson, Greg Cave, Jamie Agnew, Ted Johnson, Michael Cody, Grant Pellegrin, Lindsay Reynolds, Drew Zieglgansberger, Trent Zacharias, Andrew Straile, Jeff Jeworski, Norrie Ramsay, Sam Murphy, Alisha Bhura, Owen Henshaw, Devin Iversen, Sharla Howard, Jeff Nail, Jessica Player, Alex Pourbaix, Stephanie Kitchen, Carlos Serrato",Notice of Change,Archived,View  +2022-09-14,-,"The Students' Union, The University of Calgary",-,Nicole Schmidt,"Alberta Labour and Immigration, Alberta Municipal Affairs, Alberta Education, Alberta Advanced Education, Premier's Office","University of Calgary, Alberta Council on Admissions and Transfer",Post-secondary Education,OL-10466-21,Organization Lobbyist,"Nicole Schmidt, Jeff Marshall, Shaziah Jinnah Morsette, Adrian Alcantara, Jason Morgan, Michael Brown",Semi-Annual Renewal,Archived,View  +2022-09-14,-,Alberta Counsel,Metis Crossing Ventures Ltd.,Jonathon Wescott,"Alberta Infrastructure, Alberta Indigenous Relations, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Culture and Status of Women, Alberta Legislative Assembly, Premier's Office",Alberta Indigenous Opportunities Corporation,Infrastructure,CL-12536-05,Consultant Lobbyist,"Heather Feldbusch, Alexandra Carlile, Zack Ziolkowski, Votham Anastasiadis, James Johnson, Pascal Ryffel, Shayne Saskiw, Jonathon Wescott, Aaron Singleton, Aileen Burke, Sydney McHale",Notice of Change,Archived,View  +2022-09-14,-,Jordan Cleland Consulting,Opulence Education Group,Jordan Cleland,-,"Lethbridge College, Northern Lakes College, Lakeland College, Portage College, NorQuest College, Olds College, Keyano College",Post-secondary Education,CL-12826-02,Consultant Lobbyist,Jordan Cleland,Notice of Change,Archived,View  +2022-09-13,2022-09-14,SWON Public Affairs,Cherry Canyon Agricultural Society,Kirsten Krose,Alberta Education,-,K-12 Education,CL-12861-01,Consultant Lobbyist,Kisten Krose,Initial Return,Terminated,View  +2022-09-13,-,New West Public Affairs,Municipal District of Acadia,Monte Solberg,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Indigenous Relations, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Executive Council, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Culture and Status of Women, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,Agriculture,CL-12894-01,Consultant Lobbyist,"Monte Solberg, Michael Solberg, Matt Solberg, Keith McLaughlin, Gordon Olsen, Sonia Kont, Sarah Painchaud, Graham Gerein",Initial Return,Archived,View  +2022-09-12,-,Amgen Canada Inc.,-,Ugur Gunaydin,"Alberta Health, Premier's Office, Alberta Advanced Education",-,"Intellectual Property, Health, Research and Development",OL-10212-15,Organization Lobbyist,"Michael Gingras, John Snowden",Semi-Annual Renewal,Archived,View  +2022-09-09,-,NOVA Chemicals Corporation,-,Danny Dweik,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Treasury Board and Finance, Premier's Office",-,"Energy, Taxes and Finance, Environment, Economic Development",OL-10386-37,Organization Lobbyist,"Eric Brenner, Shane Lamden, Ken Sonnenberg, Linda Santry, Richard Gilmer, Sarah Marshall, Mark Hodson, Becky Horvath, Amy George, Luis Sierra, Victor Alvarado, Aly Ladha, Tony Tikuisis, Ken Faulkner, Rakesh Vermani, James Baldwin, Geoffrey Trickett, Mehdi Keshtkar, Kevin Wilke, Wendy Wright",Semi-Annual Renewal,Archived,View  +2022-09-09,-,Tourmaline Oil Corp.,-,Mike Rose,"Alberta Environment and Parks, Alberta Energy, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Treasury Board and Finance, Premier's Office",Alberta Energy Regulator,"Energy, Environment, Municipal Affairs",OL-12144-14,Organization Lobbyist,"Mike Rose, Leah Turner, Scott Volk, Allan Bush, Colin Frostad, Sherra Aspin, Scott Kirker",Semi-Annual Renewal,Archived,View  +2022-09-09,-,Ovintiv Canada ULC,-,Corey Code,"Alberta Environment and Parks, Alberta Energy, Alberta Indigenous Relations, Alberta Municipal Affairs, Alberta Treasury Board and Finance, Premier's Office","Alberta Innovates, Alberta Energy Regulator","Energy, Climate, Taxes and Finance, Environment, Municipal Affairs, Indigenous Relations, Economic Development, Wildlife",OL-10288-47,Organization Lobbyist,"Jason Blanch, Jennifer Blaney, Daniel Dunlop, Marawan ElSayed, Parmjeet Virdee, Paul Giesbrecht, David Lye, Kellen Foreman",Notice of Change,Archived,View  +2022-09-08,-,Canadian National Railway Company (CN),-,Tracy Robinson,"Alberta Infrastructure, Alberta Energy, Executive Council, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Alberta Transportation, Premier's Office",Invest Alberta Corporation,"Energy, Agriculture, Municipal Affairs, Infrastructure, Economic Development, Transportation",OL-10497-17,Organization Lobbyist,"Catherine Fremont, Tyler Banick, Nicholas Dube, Doug MacDonald, Tracy Robinson, CarrieAnn Crozier, Melissa Cotton, James Thompson, Karen Jensen, Corey Caville, David Przednowek, Buck Rogers, Jason R. Valliere, James Auld, Sandra Ellis, Scott Brown, Cyrus Reporter",Notice of Change,Archived,View  +2022-09-08,-,Dialogue Technologies Inc.,-,Cherif Habib,"Alberta Jobs, Economy and Innovation, Executive Council, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",Alberta Health Services,"Health, Telecommunications",OL-11652-06,Organization Lobbyist,"Marc Robin, Nathalie Delisle, Jean-Nicolas Guillemette, Jean-Christophe de Le Rue, Cherif Habib",Semi-Annual Renewal,Archived,View  +2022-09-08,-,NOVA Chemicals Corporation,-,Luis Sierra,"Alberta Environment and Parks, Alberta Energy, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Treasury Board and Finance, Premier's Office",-,"Energy, Taxes and Finance, Environment, Economic Development",OL-10386-36,Organization Lobbyist,"Wendy Wright, Kevin Wilke, Mehdi Keshtkar, Geoffrey Trickett, James Baldwin, Rakesh Vermani, Ken Faulkner, Tony Tikuisis, Aly Ladha, Victor Alvarado, Luis Sierra, Amy George, Becky Horvath, Mark Hodson, Sarah Marshall, Richard Gilmer, Linda Santry, Ken Sonnenberg, Shane Lamden, Eric Brenner",Notice of Change,Archived,View  +2022-09-08,-,Retail Council of Canada,-,Diane Brisebois,"Alberta Environment and Parks, Alberta Jobs, Economy and Innovation, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance",-,"Budget, Health, Environment, Economic Development",OL-10461-21,Organization Lobbyist,"John Graham, Diane J. Brisebois, Karl Littler",Notice of Change,Archived,View  +2022-09-06,-,AltaLink Management Ltd.,-,Gary Hart,"Alberta Environment and Parks, Alberta Energy, Alberta Indigenous Relations, Service Alberta, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Utilities Commission, Alberta Electric System Operator, Market Surveillance Administrator, Alberta Indigenous Opportunities Corporation","Energy, Environment, Indigenous Relations, Infrastructure",OL-10277-23,Organization Lobbyist,"Pat McKenna, Patrick Kamdem, David Hengst, Gregory Osmond, Jade Lee, Lindsey Hinther, Mike Bartel, Ugo Alex-Orji, Kris Gladue, Bruce Cole, Johanne Picard-Thompson, Scott Thon, Gary Hart, Rod Kause, Zora Lazic, Hao Liu, David Koch, Richard Boulton, Sheri Allen, Eóin Cooke, John Piotto, Jack Janssen, Rob Senko, Jenette Yearsley, Paul Lee, Michael Anderson, Cayla Saby",Semi-Annual Renewal,Archived,View  +2022-09-06,-,Wellington Advocacy Inc.,New Star Capital Inc,Nick Koolsbergen,"Alberta Environment and Parks, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Alberta Education, Alberta Legislative Assembly, Alberta Treasury Board and Finance","Alberta Gaming, Liquor and Cannabis Commission",Economic Development,CL-12765-02,Consultant Lobbyist,"Matt de Jong, Peter Csillag, Brad Tennant",Notice of Change,Archived,View  +2022-09-06,-,Wellington Advocacy Inc.,Orange Acres Development Ltd.,Nick Koolsbergen,"Alberta Jobs, Economy and Innovation, Alberta Legislative Assembly",Invest Alberta Corporation,Economic Development,CL-12783-02,Consultant Lobbyist,"Peter Csillag, Matt de Jong, Brad Tennant",Notice of Change,Archived,View  +2022-09-06,-,Wellington Advocacy Inc.,Building Industry and Land Development (BILD) Alberta Association,Nick Koolsbergen,"Executive Council, Alberta Municipal Affairs, Service Alberta, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Seniors and Housing, Premier's Office",-,"Small Business, Municipal Affairs",CL-12473-03,Consultant Lobbyist,"Brad Tennant, Peter Csillag, Matt de Jong",Notice of Change,Archived,View  +2022-09-06,-,Wellington Advocacy Inc.,PURE Canadian Gaming Corp.,Nick Koolsbergen,"Executive Council, Alberta Treasury Board and Finance, Premier's Office","Alberta Gaming, Liquor and Cannabis Commission, Invest Alberta Corporation",Gaming,CL-12501-09,Consultant Lobbyist,"Matt de Jong, Peter Csillag, Nick Koolsbergen",Notice of Change,Archived,View  +2022-09-06,-,Organon Canada Inc.,-,Michael Casia,Alberta Health,Alberta Health Services,Health,OL-12430-04,Organization Lobbyist,"Stuart Reid, Jeffrey Malawski, Kathy Armstrong, Elisa Warwick-Markowski, Isabel Deslongschamps, Michael Casia, Mireille Dufresne, Réjean Landry",Semi-Annual Renewal,Archived,View  +2022-09-01,-,P3 Capital Partners Inc.,Optima Seniors Management Inc.,Doug Horner,"Executive Council, Alberta Health, Alberta Treasury Board and Finance, Premier's Office, Alberta Seniors and Housing",-,Seniors issues,CL-12627-02,Consultant Lobbyist,"Monica Barclay, Jeff Johnson",Notice of Change,Archived,View  +2022-09-01,-,P3 Capital Partners Inc.,Covenant Care,Doug Horner,"Alberta Health, Alberta Seniors and Housing, Alberta Advanced Education",-,Seniors issues,CL-12474-03,Consultant Lobbyist,"Monica Barclay, Jeff Johnson, Doug Horner",Notice of Change,Archived,View  +2022-09-01,-,Alberta Counsel,Alberta Canola Producers Commission,Jonathon Wescott,"Alberta Environment and Parks, Executive Council, Alberta Jobs, Economy and Innovation, Service Alberta, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Education, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office",Agriculture Financial Services Corporation,"Climate, Agriculture, K-12 Education",CL-12881-02,Consultant Lobbyist,"Votham Anastasiadis, Sydney McHale, Heather Feldbusch, Jonathon Wescott, Aaron Singleton, Aileen Burke, Zack Ziolkowski, James Johnson, Shayne Saskiw, Pascal Ryffel",Notice of Change,Archived,View  +2022-09-01,2022-10-03,Crestview Strategy,Alberta Medical Association,Chad Rogers,"Alberta Health, Alberta Legislative Assembly",-,Health,CL-11660-14,Consultant Lobbyist,"Mira Ahmad, Frank Parker, Nour Fahmy",Notice of Change,Terminated,View  +2022-08-31,-,Alberta Counsel,Alberta Canola Producers Commission,Jonathon Wescott,"Alberta Environment and Parks, Service Alberta, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Education, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office",Agriculture Financial Services Corporation,"Climate, Agriculture, K-12 Education",CL-12881-01,Consultant Lobbyist,"Pascal Ryffel, Shayne Saskiw, James Johnson, Zack Ziolkowski, Aileen Burke, Aaron Singleton, Jonathon Wescott, Heather Feldbusch, Sydney McHale, Votham Anastasiadis",Initial Return,Archived,View  +2022-08-30,-,Chevron Canada Limited,-,Chris Mazerolle,"Alberta Environment and Parks, Alberta Energy, Premier's Office",Alberta Energy Regulator,"Energy, Climate, Environment",OL-10005-29,Organization Lobbyist,"Chris Mazerolle, Sherry Sian, Matthew Stevens, Doug Connon, Emily Curthoys, Beverley Keyes, Deidre Reid, Stephen Edison",Notice of Change,Archived,View  +2022-08-30,-,The Capital Hill Group,VidCruiter,David Angus,"Executive Council, Service Alberta, Alberta Jobs, Economy and Innovation",-,"Employment and Training, Procurement, Science and Technology",CL-12879-01,Consultant Lobbyist,Erin Iverson,Initial Return,Archived,View  +2022-08-30,-,Canadian Medical Association,-,Timothy Smith,"Alberta Labour and Immigration, Executive Council, Alberta Health, Alberta Justice and Solicitor General, Alberta Legislative Assembly, Premier's Office",-,"Health, Justice and Law Enforcement",OL-10605-22,Organization Lobbyist,"Louise Sweatman, Dr. Alika Lafontaine, Nick Lecuyer, Joseph Mayer, Kristin Smith, Pascal Charron, Dr. Jeff Blackmer, Nick Farinaccio, Anick Losier, Tim Smith, Luce Lavoie, John Feeley, Audrey Grandmaison, Stephen Vail, Cecile Bensimon, Aline Gagnon, Owen Adams, Julie Aung, Manon Abud, Azin Peyrow, Jennifer Kitts, Caroline Bouchard, Ashley Chisholm, Dr. Ann Collins, Philippe Ha, Jasmine Neeson, Marie-Claire Bedard, Dr. Katharine Smart, Eric Lewis, Elena Gabrysz, Karey Shuhendler, Romeo Tello, Renee Belanger",Notice of Change,Archived,View  +2022-08-30,-,The Capital Hill Group,Red Hat Inc.,David Angus,"Executive Council, Service Alberta, Alberta Jobs, Economy and Innovation",Invest Alberta Corporation,"Procurement, Science and Technology",CL-12878-01,Consultant Lobbyist,Erin Iverson,Initial Return,Archived,View  +2022-08-29,-,Sun Life Financial,-,Kevin Strain,"Alberta Jobs, Economy and Innovation, Alberta Health, Alberta Treasury Board and Finance, Premier's Office","Alberta Health Services, Alberta Innovates","Insurance, Health, Banks and Other Financial Institutions",OL-10943-18,Organization Lobbyist,"Ali Salam, Jessica Brcko, Victor Gomez, Alanna Boyd, Marianne Nguyen",Notice of Change,Archived,View  +2022-08-25,-,Association of Counselling Therapy of Alberta,-,Linda Sahli,"Alberta Health, Alberta Legislative Assembly",-,Health,OL-12682-02,Organization Lobbyist,"Laura Hahn, Linda Sahli, Nicole Imgrund",Notice of Change,Archived,View  +2022-08-25,-,Alberta Counsel,Health Cities,Jonathon Wescott,"Alberta Jobs, Economy and Innovation, Service Alberta, Alberta Health, Alberta Seniors and Housing, Alberta Advanced Education, Premier's Office",Alberta Health Services,Economic Development,CL-12275-06,Consultant Lobbyist,"Votham Anastasiadis, Sydney McHale, Aaron Singleton, Aileen Burke, Alexandra Carlile, Zack Ziolkowski, James Johnson, Pascal Ryffel, Shayne Saskiw, Jonathon Wescott",Notice of Change,Archived,View  +2022-08-24,-,TC Energy Corporation,-,Francois Poirier,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Energy, Executive Council, Alberta Jobs, Economy and Innovation, Service Alberta, Alberta Municipal Affairs, Alberta Indigenous Relations, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office","Alberta Utilities Commission, Alberta Health Services, Alberta Innovates, Alberta Energy Regulator, Alberta Electric System Operator, Market Surveillance Administrator","Energy, Health, Procurement, Environment, Municipal Affairs, Indigenous Relations, Wildlife, Transportation",OL-10499-53,Organization Lobbyist,"Dave Forestell, Riley Baldwin, Keith Nelson, Michael Schmaltz, Patrick Keys, Robert Tarvydas, Kirk Wasylik, Wendell Klassen, Ana Maria Radu, Mel Garner, Timothy Lam, Stefan Skocylas, Wade Pruett, Greg Grant, Graeme Wright, Lindsay MacKay, Luke Meredith, Julia Jensen, Duane Alexander, Christopher Vivone, Fareen Sunderji, Kristin Anderson, Holly Waldorf, Tisha Homer, Alex Harris, Blaine Trout, Francois Poirier, Mark Thompson, Richard Prior, Jay White, Ken Brink, Jawad Masud, Bevin Wirzba, Joe Zhou, Mark Blundell, Sheldon Good, Patrick Muttart, Ryan Laverty, Corey Hessen, Karla Palardy, Andrew Isherwood, Omar Khayum",Notice of Change,Archived,View  +2022-08-24,-,"Amazon Canada Fulfillment Services, ULC",-,Sumegha Kumar,"Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Transportation, Alberta Legislative Assembly, Premier's Office",-,"Arts and Culture, Transportation, Economic Development",OL-11094-10,Organization Lobbyist,"James Maunder, Allison Gifford, Thoren Hudyma, Brook Simpson",Semi-Annual Renewal,Archived,View  +2022-08-24,-,Investment Industry Association of Canada,-,Laura Paglia,-,Alberta Securities Commission,Banks and Other Financial Institutions,OL-10315-19,Organization Lobbyist,"Laura Paglia, Todd Evans",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,County of Grande Prairie,Jonathon Wescott,"Alberta Infrastructure, Alberta Municipal Affairs, Alberta Justice and Solicitor General, Alberta Culture and Status of Women, Alberta Health, Alberta Legislative Assembly, Alberta Transportation, Premier's Office",Alberta Health Services,"Arts and Culture, Health, Justice and Law Enforcement, Transportation",CL-11549-17,Consultant Lobbyist,"Heather Fernbusch, Votham Anastasiadis, Aileen Burke, Alexandra Carlile, Zack Ziolowski, Jonathon Wescott, Pascal Ryffel, Shayne Saskiw, James Johnson, Aaron Singleton, Sydney McHale",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Wood's Homes,Jonathon Wescott,"Alberta Infrastructure, Alberta Children’s Services, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Seniors and Housing, Premier's Office",-,"Children’s Services, Housing",CL-12282-06,Consultant Lobbyist,"Alexandra Carlile, James Johnson, Pascal Ryffel, Aaron Singleton, Zack Ziolkowski, Shayne Saskiw, Jonathon Wescott, Votham Anastasiadis, Aileen Burke, Sydney McHale, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Respiratory Homecare Association of Alberta (RHCAA),Jonathon Wescott,"Alberta Labour and Immigration, Executive Council, Alberta Health, Alberta Legislative Assembly, Alberta Transportation, Premier's Office",Alberta Health Services,"Health, Labour Relations",CL-11038-11,Consultant Lobbyist,"Alexandra Carlile, Pascal Ryffel, Jonathon Wescott, Shayne Saskiw, Zack Ziolkowski, James Johnson, Aileen Burke, Sydney McHale, Aaron Singleton",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,The Stollery Children's Hospital Foundation,Jonathon Wescott,"Alberta Infrastructure, Alberta Indigenous Relations, Alberta Jobs, Economy and Innovation, Alberta Health, Alberta Legislative Assembly, Premier's Office, Alberta Advanced Education",-,Health,CL-10223-16,Consultant Lobbyist,"James Johnson, Zack Ziolkowski, Lindsay Lahey, Jonathon Wescott, Shayne Saskiw, Pascal Ryffel, Aaron Singleton, Alexandra Carlile, Aileen Burke, Sydney McHale, Votham Anastasiadis",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Westerkirk Capital Inc.,Jonathon Wescott,"Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Legislative Assembly, Alberta Transportation, Premier's Office",-,Economic Development,CL-12330-05,Consultant Lobbyist,"Jonathon Wescott, James Johnson, Zack Ziolkowski, Aaron Singleton, Shayne Saskiw, Pascal Ryffel, Alexandra Carlile, Sydney McHale, Aileen Burke, Al Kemmere, Votham Anastasiadis, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Edmonton Minor Soccer Association,Jonathon Wescott,"Alberta Infrastructure, Alberta Community and Social Services, Alberta Culture and Status of Women, Alberta Legislative Assembly, Premier's Office",-,Recreation,CL-11205-07,Consultant Lobbyist,"Heather Fernbusch, James Johnson, Aileen Burke, Sydney McHale, Alexandra Carlile, Aaron Singleton, Jonathon Wescott, Pascal Ryffel, Shayne Saskiw, Zack Ziolkowski, Votham Anastasiadis",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Council of Alberta University Students,Jonathon Wescott,"Alberta Labour and Immigration, Alberta Indigenous Relations, Alberta Health, Alberta Legislative Assembly, Alberta Advanced Education, Premier's Office",Alberta Health Services,"Employment and Training, Health, Post-secondary Education, Indigenous Relations",CL-11651-13,Consultant Lobbyist,"Alexandra Carlile, Jonathon Wescott, Zack Ziolkowski, Aaron Singleton, Shayne Saskiw, Pascal Ryffel, Aileen Burke, Sydney McHale, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Doula Association of Alberta,Jonathon Wescott,"Alberta Health, Alberta Legislative Assembly, Premier's Office",Alberta Health Services,Health,CL-12324-03,Consultant Lobbyist,"James Johnson, Jonathon Wescott, Shayne Saskiw, Pascal Ryffel, Sydney McHale, Aileen Burke, Aaron Singleton, Votham Anastasiadis, Zack Ziolkowski, Alexandra Carlile, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Edmonton Chamber of Voluntary Organizations (ECVO),Jonathon Wescott,"Alberta Community and Social Services, Service Alberta, Alberta Culture and Status of Women, Alberta Legislative Assembly, Premier's Office",-,Social programs,CL-12485-02,Consultant Lobbyist,"Heather Fernbusch, Jonathon Wescott, Shayne Saskiw, Pascal Ryffel, James Johnson, Votham Anastasiadis, Alexandra Carlile, Zack Ziolkowski, Aileen Burke, Aaron Singleton",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Optiom Inc.,Jonathon Wescott,"Executive Council, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office","Alberta Insurance Council, Automobile Insurance Rate Board",Insurance,CL-12285-03,Consultant Lobbyist,"Jonathon Wescott, Shayne Saskiw, Pascal Ryffel, Zack Ziolkowski, James Johnson, Aileen Burke, Votham Anastasiadis, Sydney McHale, Alexandra Carlile, Heather Fernbusch, Aaron Singleton",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Alberta Association of Agricultural Societies,Jonathon Wescott,"Alberta Municipal Affairs, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Premier's Office",-,Agriculture,CL-12371-04,Consultant Lobbyist,"Heather Fernbusch, Votham Anastasiadis, James Johnson, Zack Ziolkowski, Pascal Ryffel, Shayne Saskiw, Jonathon Wescott, Alexandra Carlile, Sydney McHale, Aileen Burke, Aaron Singleton",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Moose Lake Pentecostal Youth Camp Society,Jonathon Wescott,"Alberta Infrastructure, Alberta Children’s Services, Alberta Municipal Affairs, Alberta Culture and Status of Women, Alberta Legislative Assembly, Premier's Office",-,Land Use,CL-12508-03,Consultant Lobbyist,"Aileen Burke, Jonathon Wescott, Shayne Saskiw, James Johnson, Alexandra Carlile, Pascal Ryffel, Zack Ziolkowski, Aaron Singleton, Sydney McHale, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Mountain Ash Limited Partnership,Jonathon Wescott,Alberta Environment and Parks,-,Economic Development,CL-12378-05,Consultant Lobbyist,"Jonathon Wescott, Shayne Saskiw, Zack Ziolkowski, Alexandra Carlile, Pascal Ryffel, James Johnson, Votham Anastasiadis, Aileen Burke, Sydney McHale, Aaron Singleton, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Metis Crossing Ventures Ltd.,Jonathon Wescott,"Alberta Infrastructure, Alberta Indigenous Relations, Alberta Culture and Status of Women, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Premier's Office",Alberta Indigenous Opportunities Corporation,Infrastructure,CL-12536-04,Consultant Lobbyist,"Sydney McHale, Aileen Burke, Aaron Singleton, Jonathon Wescott, Shayne Saskiw, Pascal Ryffel, James Johnson, Votham Anastasiadis, Zack Ziolkowski, Alexandra Carlile, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Metis Nation of Alberta,Jonathon Wescott,"Alberta Municipal Affairs, Alberta Indigenous Relations, Alberta Legislative Assembly, Premier's Office",Alberta Indigenous Opportunities Corporation,Indigenous Relations,CL-11670-12,Consultant Lobbyist,"Votham Anastasiadis, Sydney McHale, Aileen Burke, Alexandra Carlile, Zack Ziolkowski, Jonathon Wescott, Pascal Ryffel, Shayne Saskiw, Aaron Singleton, James Johnson, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Lac La Biche County,Jonathon Wescott,"Alberta Environment and Parks, Alberta Labour and Immigration, Alberta Infrastructure, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Service Alberta, Alberta Community and Social Services, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Culture and Status of Women, Alberta Health, Alberta Transportation, Alberta Advanced Education, Alberta Seniors and Housing",-,"Health, Tourism, Environment, Post-secondary Education, Rural Development, Municipal Affairs, Transportation, Infrastructure, Housing",CL-10209-23,Consultant Lobbyist,"Heather Fernbusch, James Johnson, Lindsay Lahey, Leo Piquette, Shayne Saskiw, Jonathon Wescott, Pascal Ryffel, Zack Ziolkowski, Aaron Singleton, Aileen Burke, Sydney McHale",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,PolicyWise for Children & Families,Jonathon Wescott,"Alberta Children’s Services, Alberta Community and Social Services, Service Alberta, Alberta Health, Alberta Justice and Solicitor General, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,Children’s Services,CL-12764-02,Consultant Lobbyist,"Shayne Saskiw, Pascal Ryffel, Zack Ziolkowski, Votham Anastasiadis, Sydney McHale, Jonathon Wescott, James Johnson, Aileen Burke, Aaron Singleton, Alexandra Carlile, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Municipal District of Bighorn,Jonathon Wescott,"Alberta Environment and Parks, Alberta Municipal Affairs",-,Land Use,CL-12686-02,Consultant Lobbyist,"Heather Fernbusch, Jonathon Wescott, Shayne Saskiw, James Johnson, Zack Ziolkowski, Pascal Ryffel, Aileen Burke, Votham Anastasiadis, Aaron Singleton, Alexandra Carlile, Sydney McHale",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Insurance Brokers Association of Alberta (IBAA),Jonathon Wescott,"Alberta Labour and Immigration, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Justice and Solicitor General, Alberta Treasury Board and Finance, Premier's Office",Automobile Insurance Rate Board,"Insurance, Banks and Other Financial Institutions",CL-10418-22,Consultant Lobbyist,"Votham Anastasiadis, Aileen Burke, Heather Fernbusch, Shayne Saskiw, Jonathon Wescott, Pascal Ryffel, Zack Ziolkowski, James Johnson, Aaron Singleton, Alexandra Carlile, Sydney McHale",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Lakeland College,Jonathon Wescott,"Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Advanced Education, Premier's Office",-,Post-secondary Education,CL-12075-09,Consultant Lobbyist,"Sydney McHale, Aaron Singleton, Alexandra Carlile, Zack Ziolkowski, Pascal Ryffel, Shayne Saskiw, Jonathon Wescott, Aileen Burke, Votham Anastasiadis, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-22,-,Proof Inc.,StubHub Inc.,Bruce MacLellan,"Service Alberta, Executive Council, Premier's Office",-,Consumer Issues,CL-11367-05,Consultant Lobbyist,Chris McCluskey,Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Village of Marwayne,Jonathon Wescott,Alberta Municipal Affairs,-,Municipal Affairs,CL-12649-02,Consultant Lobbyist,"Heather Fernbusch, Aileen Burke, Alexandra Carlile, Aaron Singleton, Jonathon Wescott, Shayne Saskiw, Pascal Ryffel, James Johnson, Zack Ziolkowski, Votham Anastasiadis, Sydney McHale",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Motor Dealers' Association of Alberta,Jonathon Wescott,"Service Alberta, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office",Alberta Motor Vehicle Industry Council,Economic Development,CL-12146-07,Consultant Lobbyist,"Aileen Burke, Zack Ziolkowski, Jonathon Wescott, James Johnson, Shayne Saskiw, Alexandra Carlile, Sydney McHale, Aaron Singleton, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Northern Sunrise County,Jonathon Wescott,"Alberta Infrastructure, Alberta Municipal Affairs, Alberta Transportation, Alberta Legislative Assembly, Premier's Office",-,Transportation,CL-12542-03,Consultant Lobbyist,"Heather Fernbusch, Jonathon Wescott, Shayne Saskiw, Pascal Ryffel, Zack Ziolkowski, Aileen Burke, Votham Anastasiadis, James Johnson, Alexandra Carlile, Aaron Singleton, Al Kemmere",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Nurse Practitioner Association of Alberta (NPAA),Jonathon Wescott,"Alberta Labour and Immigration, Alberta Health, Premier's Office, Alberta Advanced Education","Labour Relations Board, Alberta Health Services","Health, Post-secondary Education, Labour Relations",CL-11312-09,Consultant Lobbyist,"Zack Ziolowski, Jonathon Wescott, Shayne Saskiw, Pascal Ryffel, James Johnson, Aaron Singleton, Votham Anastasiadis, Alexandra Carlile, Aileen Burke, Sydney McHale",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Food Banks Alberta,Jonathon Wescott,"Alberta Community and Social Services, Alberta Municipal Affairs, Alberta Culture and Status of Women, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,Food,CL-12617-02,Consultant Lobbyist,"Zack Ziolkowski, Aileen Burke, Sydney McHale, Jonathon Wescott, Shayne Saskiw, Pascal Ryffel, James Johnson, Votham Anastasiadis, Alexandra Carlile, Aaron Singleton, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Municipal District of Lesser Slave River No. 124,Jonathon Wescott,"Alberta Infrastructure, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Transportation, Alberta Legislative Assembly, Premier's Office",-,Infrastructure,CL-12836-02,Consultant Lobbyist,"Pascal Ryffel, James Johnson, Zack Ziolkowski, Votham Anastasiadis, Aaron Singleton, Alexandra Carlile, Shayne Saskiw, Jonathon Wescott, Aileen Burke, Heather Feldbusch, Sydney McHale, Al Kemmere",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Municipal District of Opportunity,Jonathon Wescott,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Energy, Alberta Municipal Affairs, Alberta Indigenous Relations, Alberta Jobs, Economy and Innovation, Alberta Justice and Solicitor General, Alberta Culture and Status of Women, Alberta Education, Alberta Health, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office, Alberta Seniors and Housing",Alberta Health Services,"Taxes and Finance, Health, Municipal Affairs, Transportation, Economic Development, Infrastructure",CL-11066-16,Consultant Lobbyist,"Aaron Singleton, Alexandra Carlile, Heather Fernbusch, Shayne Saskiw, Pascal Ryffel, Zack Ziolkowski, Jon Wescott, Leo Piquette, Votham Anastasiadis, James Johnson, Aileen Burke, Sydney McHale",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,City of Wetaskiwin,Jonathon Wescott,"Alberta Infrastructure, Alberta Children’s Services, Alberta Municipal Affairs, Alberta Community and Social Services, Alberta Indigenous Relations, Alberta Justice and Solicitor General, Alberta Health, Alberta Culture and Status of Women, Premier's Office, Alberta Seniors and Housing",-,"Justice and Law Enforcement, Infrastructure, Housing",CL-11946-10,Consultant Lobbyist,"Pascal Ryffel, Sydney McHale, Votham Anastasiadis, Aileen Burke, Alexandra Carlile, Aaron Singleton, Zack Ziolkowski, James Johnson, Shayne Saskiw, Jonathon Wescott, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Metis Nation of Alberta Association Fort McMurray Local Council 1935,Jonathon Wescott,"Alberta Environment and Parks, Alberta Legislative Assembly, Premier's Office",-,Environment,CL-12719-02,Consultant Lobbyist,"Shayne Saskiw, Jonathon Wescott, Pascal Ryffel, Guy Boutiler, Votham Anastasiadis, Alexandra Carlile, James Johnson, Zack Ziolkowski, Aileen Burke, Aaron Singleton, Sydney McHale, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-22,-,Alberta Counsel,Edmonton Destination Marketing Hotels Ltd.,Jonathon Wescott,"Alberta Labour and Immigration, Alberta Municipal Affairs, Alberta Culture and Status of Women, Alberta Health, Alberta Legislative Assembly, Premier's Office, Alberta Seniors and Housing",Alberta Health Services,"Health, Tourism, Labour Relations",CL-10995-14,Consultant Lobbyist,"Sydney McHale, Alexandra Carlile, James Johnson, Shayne Saskiw, Jonathon Wescott, Pascal Ryffel, Zack Ziolkowski, Aaron Singleton, Aileen Burke, Votham Anastasiadis, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-20,2022-11-09,Wellington Advocacy Inc.,ThoughtWire,Nick Koolsbergen,"Alberta Jobs, Economy and Innovation, Service Alberta, Alberta Health, Alberta Legislative Assembly, Premier's Office","Alberta Health Services, Invest Alberta Corporation",Science and Technology,CL-12862-01,Consultant Lobbyist,"Peter Csillag, Matt de Jong, Sam Duncan",Initial Return,Terminated,View  +2022-08-17,-,Alberta Seniors & Community Housing Association (ASCHA),-,Irene Martin-Lindsay,"Alberta Infrastructure, Alberta Community and Social Services, Alberta Municipal Affairs, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Seniors and Housing",Alberta Health Services,Housing,OL-10287-14,Organization Lobbyist,"Robin James, Arlene Adamson, Melodie Stol, Winston Delorme, Irene Martin-Lindsay, Marta Szylko, Jenny Grant",Semi-Annual Renewal,Archived,View  +2022-08-17,-,Alberta Counsel,Town of Bonnyville,Jonathon Wescott,"Alberta Infrastructure, Alberta Municipal Affairs, Alberta Indigenous Relations, Alberta Jobs, Economy and Innovation, Alberta Justice and Solicitor General, Alberta Health, Alberta Transportation",-,"Health, Rural Development, Transportation",CL-10575-24,Consultant Lobbyist,"Leo Piquette, Shayne Saskiw, Jonathon Wescott, Zack Ziolkowski, Aaron Singleton, Alexandra Carlile, James Johnson, Pascal Ryffel, Aileen Burke, Sydney McHale, Votham Anastasiadis, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-17,-,Alberta Counsel,Alberta Teachers Association,Jonathon Wescott,"Alberta Infrastructure, Alberta Culture and Status of Women, Alberta Health, Alberta Education, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,"Budget, Pensions, K-12 Education",CL-11067-15,Consultant Lobbyist,"Aileen Burke, Zack Ziolkowski, Jonathon Wescott, Shayne Saskiw, Pascal Ryffel, James Johnson, Sydney McHale, Aaron Singleton, Votham Anastasiadis, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-17,-,Alberta Counsel,Alberta Bottle Depot Association,Jonathon Wescott,"Alberta Environment and Parks, Alberta Municipal Affairs, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Gaming, Liquor and Cannabis Commission","Environment, Cannabis",CL-11278-10,Consultant Lobbyist,"Sydney McHale, Votham Anastasiadis, Aileen Burke, Shayne Saskiw, Jon Wescott, Pascal Ryffel, Zack Ziolkowski, Aaron Singleton, Alexandra Carlile, James Johnson, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-17,-,Alberta Counsel,Alberta Association of Professional Paralegals,Jonathon Wescott,"Alberta Justice and Solicitor General, Alberta Legislative Assembly, Premier's Office",-,Legal System,CL-12678-02,Consultant Lobbyist,"Heather Fernbusch, Votham Anastasiadis, Zack Ziolkowski, James Johnson, Shayne Saskiw, Jonathon Wescott, Alexandra Carlile, Sydney McHale, Aaron Singleton, Aileen Burke, Pascal Ryffel",Notice of Change,Archived,View  +2022-08-17,-,Alberta Counsel,ALIGN Association of Community Services,Jonathon Wescott,"Alberta Labour and Immigration, Alberta Children’s Services, Alberta Health, Alberta Legislative Assembly, Premier's Office",-,"Children’s Services, Trades and Occupations",CL-11140-11,Consultant Lobbyist,"Votham Anastasiadis, Sydney McHale, Jonathon Wescott, Aaron Singleton, James Johnson, Alexandra Carlile, Aileen Burke, Alexandra Carlile, Zack Ziolkowski, Pascal Ryffel, Shayne Saskiw, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-17,-,Alberta Counsel,Alberta Funeral Service Association,Jonathon Wescott,"Alberta Justice and Solicitor General, Alberta Legislative Assembly, Premier's Office",-,Justice and Law Enforcement,CL-12729-02,Consultant Lobbyist,"Aaron Singleton, Alexandra Carlile, Jonathon Wescott, Shayne Saskiw, Pascal Ryffel, James Johnson, Aileen Burke, Votham Anastasiadis, Zack Ziolkowski, Sydney McHale, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-17,-,Alberta Counsel,Alberta Bilingual Municipalities Association,Jonathon Wescott,"Alberta Municipal Affairs, Alberta Culture and Status of Women, Alberta Legislative Assembly, Premier's Office",-,Municipal Affairs,CL-12684-02,Consultant Lobbyist,"Al Kemmere, Alexandra Carlile, Aaron Singleton, Zack Ziolkowski, Pascal Ryffel, Shayne Saskiw, Sydney McHale, Votham Anastasiadis, Aileen Burke, James Johnson, Jonathon Wescott, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-17,-,Alberta Counsel,Alberta Irrigation Districts Association (AIDA),Jonathon Wescott,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Alberta Transportation, Premier's Office",-,"Agriculture, Environment",CL-11344-15,Consultant Lobbyist,"Aileen Burke, James Johnson, Voltham Anastasiadis, Shayne Saskiw, Zack Ziolkowski, Pascal Ryffel, Jonathon Wescott, Aaron Singleton, Alexandra Carlile, Sydney McHale, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-17,-,Alberta Counsel,Town of Castor,Jonathon Wescott,"Alberta Municipal Affairs, Alberta Health, Alberta Legislative Assembly, Alberta Seniors and Housing, Premier's Office",-,Seniors issues,CL-12598-02,Consultant Lobbyist,"Votham Anastasiadis, Jonathon Wescott, Shayne Saskiw, Pascal Ryffel, James Johnson, Zack Ziolkowski, Aileen Burke, Aaron Singleton, Sydney McHale, Al Kemmere, Alexandra Carlile, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-17,-,Alberta Counsel,Alberta International Airshow,Jonathon Wescott,"Alberta Jobs, Economy and Innovation, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Culture and Status of Women, Alberta Transportation, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,Economic Development,CL-12741-02,Consultant Lobbyist,"Zack Ziolkowski, Votham Anastasiadis, Aaron Singleton, Alexandra Carlile, Jonathon Wescott, Shayne Saskiw, Pascal Ryffel, James Johnson, Aileen Burke, Sydney McHale",Notice of Change,Archived,View  +2022-08-17,-,Alberta Counsel,Alberta Crown Attorneys' Association,Jonathon Wescott,"Executive Council, Alberta Municipal Affairs, Alberta Justice and Solicitor General, Alberta Legislative Assembly, Premier's Office",-,Justice and Law Enforcement,CL-12602-02,Consultant Lobbyist,"Shayne Saskiw, Jonathon Wescott, Pascal Ryffel, Zack Ziolkowski, Aaron Singleton, Aileen Burke, Sydney McHale, Alexandra Carlile, James Johnson, Heather Fernbusch",Notice of Change,Archived,View  +2022-08-17,-,Counsel Public Affairs Inc.,GlaxoSmithKline Inc.,Philip Dewan,"Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Seniors and Housing",-,Health,CL-12854-01,Consultant Lobbyist,T.J. Keil,Initial Return,Archived,View  +2022-08-17,2022-10-31,Alberta Counsel,CNIB Alberta and NWT,Jonathon Wescott,"Alberta Children’s Services, Alberta Community and Social Services, Alberta Education, Alberta Health, Alberta Legislative Assembly, Alberta Advanced Education, Premier's Office",-,K-12 Education,CL-12482-03,Consultant Lobbyist,"Heather Fernbusch, Votham Anastasiadis, James Johnson, Jonathon Wescott, Pascal Ryffel, Shayne Saskiw, Zack Ziolkowski, Aileen Burke, Alexandra Carlile, Aaron Singleton, Sydney McHale",Notice of Change,Terminated,View  +2022-08-16,2022-11-08,Sustaining Alberta's Energy Network Ltd.,-,Kristoffer Kinnear,"Alberta Environment and Parks, Alberta Energy, Alberta Municipal Affairs",-,"Energy, Environment, Municipal Affairs",OL-11883-05,Organization Lobbyist,Kristoffer Kinnear,Semi-Annual Renewal,Terminated,View  +2022-08-16,-,StrategyCorp Inc.,Alberta Association of Osteopathic Manual Therapists,John Matheson,"Executive Council, Alberta Health, Alberta Legislative Assembly, Premier's Office, Alberta Advanced Education",-,"Employment and Training, Health",CL-12855-01,Consultant Lobbyist,"Garry Keller, Matthew Conley",Initial Return,Archived,View  +2022-08-16,-,Cenovus Energy Inc.,-,Alex Pourbaix,"Alberta Environment and Parks, Alberta Labour and Immigration, Alberta Infrastructure, Alberta Energy, Alberta Municipal Affairs, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Indigenous Relations, Alberta Justice and Solicitor General, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Alberta Advanced Education, Premier's Office","Alberta Petroleum Marketing Commission, Alberta Utilities Commission, Alberta Energy Regulator, Alberta Electric System Operator","Taxes and Finance, Energy, Environment, Indigenous Relations, Municipal Affairs, Workplace Safety, Infrastructure, Labour Relations",OL-10248-27,Organization Lobbyist,"Alex Pourbaix, Jessica Player, Jeff Nail, Sharla Howard, Devin Iversen, Owen Henshaw, Alisha Bhura, Sam Murphy, Norrie Ramsay, Jeff Jeworski, Andrew Straile, Trent Zacharias, Kendall Dilling, Drew Zieglgansberger, Lindsay Reynolds, Grant Pellegrin, Michael Cody, Ted Johnson, Jamie Agnew, Greg Cave, Jared Robertson, Kam Sandhar, Michael Wilson, Jillian Falls, Brooke Lindsey, Geoff Murray, Gary Molnar, Sean Hiebert, Michael Penner, Eric Wakley, Michele Waters, Sherry Wendt, Brett Wiens, Troy Peterson, Jennifer Shalagan, Shannon McDougall, Anamika Mukherjee, Travis Davies, Ray Lambert, Rhona DelFrari, Susan Grey, Suzanne Smith, Mike Plettel, Charles Gobin, Darwin Bateyko, Shane Cooke, Shelley Machon, Keith Chiasson, Amos Ben-Zvi, Patrick McKay, Prince Azom, Chris Moody, Claire Hong, Tony Jackson, Scott Hillier, Jim Lytle, Tyler Tarnoczi, Jon McKenzie, Morgan Wrishko, Andrea Louise-Martyn",Notice of Change,Archived,View  +2022-08-16,-,Enbridge Inc.,-,Al Monaco,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Indigenous Relations, Executive Council, Alberta Health, Alberta Treasury Board and Finance, Premier's Office","Alberta Petroleum Marketing Commission, Alberta Health Services, Alberta Innovates, Alberta Energy Regulator, Invest Alberta Corporation, Alberta Indigenous Opportunities Corporation","Energy, Environment, Municipal Affairs, Indigenous Relations, Wildlife",OL-10294-29,Organization Lobbyist,"Jeff Kler, Kim Brenneis, Santiago Arribas Picon, Edwin Makkinga, Richard Paglia, Chad Dechaine, Sam Munckhof-Swain, Islam Elsayed, Matthew Akman, Graham Shanks, Emily Black, Jason Kearns, Trevor McLeod, Brian Johnson, Marlon Samuel, Laszlo Varsanyi, Matt Grant, Mike Gladstone, Vern Yu, Al Monaco, Bob Rooney, Amanda Affonso, Brittany Kelly, Byron Neiles, Tom Palak, Mike Fernandez, Adam Chalkley, Phillip Anderson, Nadine Barber, Colin Gruending, Leo Golden, Geoff Holmlund",Semi-Annual Renewal,Archived,View  +2022-08-16,-,New West Public Affairs,Banff Centre for Arts and Creativity,Monte Solberg,"Alberta Infrastructure, Executive Council, Alberta Culture and Status of Women, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education",-,Infrastructure,CL-12851-01,Consultant Lobbyist,"Gordon Olsen, Sarah Painchaud, Graham Gerein, Fahreen Budwhani, Monte Solberg, Matt Solberg, Michael Solberg, Keith McLaughlin, Sonia Kont",Initial Return,Archived,View  +2022-08-15,-,Ovintiv Canada ULC,-,Corey Code,"Alberta Environment and Parks, Alberta Energy, Alberta Municipal Affairs, Alberta Indigenous Relations, Alberta Treasury Board and Finance, Premier's Office","Alberta Innovates, Alberta Energy Regulator","Energy, Climate, Taxes and Finance, Environment, Municipal Affairs, Indigenous Relations, Economic Development, Wildlife",OL-10288-46,Organization Lobbyist,"Kellen Foreman, David Lye, Paul Giesbrecht, Parmjeet Virdee, Marawan ElSayed, Daniel Dunlop, Jennifer Blaney, Jason Blanch",Notice of Change,Archived,View  +2022-08-15,-,Canadian Beverage Association,-,Krista Scaldwell,"Alberta Environment and Parks, Alberta Labour and Immigration, Alberta Jobs, Economy and Innovation, Alberta Health, Alberta Treasury Board and Finance, Premier's Office",-,"Health, Taxes and Finance, Environment",OL-10251-16,Organization Lobbyist,"Jim Goetz, Carolyn Fell, Alex Greco",Semi-Annual Renewal,Archived,View  +2022-08-15,-,TC Energy Corporation,-,Francois Poirier,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Energy, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Indigenous Relations, Alberta Municipal Affairs, Service Alberta, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office","Alberta Health Services, Alberta Utilities Commission, Alberta Innovates, Alberta Energy Regulator, Alberta Electric System Operator, Market Surveillance Administrator","Energy, Health, Procurement, Environment, Indigenous Relations, Municipal Affairs, Transportation, Wildlife",OL-10499-52,Organization Lobbyist,"Dave Forestell, Riley Baldwin, Keith Nelson, Michael Schmaltz, Patrick Keys, Robert Tarvydas, Kirk Wasylik, Wendell Klassen, Ana Maria Radu, Mel Garner, Timothy Lam, Stefan Skocylas, Wade Pruett, Greg Grant, Graeme Wright, Lindsay MacKay, Luke Meredith, Julia Jensen, Duane Alexander, Christopher Vivone, Fareen Sunderji, Kristin Anderson, Holly Waldorf, Tisha Homer, Alex Harris, Blaine Trout, Francois Poirier, Mark Thompson, Richard Prior, Jay White, Ken Brink, Jawad Masud, Bevin Wirzba, Joe Zhou, Mark Blundell, Sheldon Good, Patrick Muttart, Ryan Laverty, Corey Hessen, Karla Palardy, Andrew Isherwood, Omar Khayum",Notice of Change,Archived,View  +2022-08-15,-,Pathways Alliance Inc.,-,Kendall Dilling,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation",Alberta Energy Regulator,Energy,OL-11358-12,Organization Lobbyist,"Kendall Dilling, Antonio Vicens Guzman, Daniel Doll, Wesley Jickling, Kerri Romanetz, Lucas Barr, Stephen Arseniuk, Peter Beaudoin, Robert Mugo, John Brogly, Jack O’Neill, Chris Godwaldt, Tyler Veness",Semi-Annual Renewal,Archived,View  +2022-08-15,-,ENMAX Corporation,-,Charles Ruigrok,"Alberta Energy, Executive Council, Service Alberta, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Utilities Commission, Alberta Innovates, Alberta Electric System Operator, Balancing Pool, Invest Alberta Corporation, Market Surveillance Administrator","Energy, Consumer Issues, Environment",OL-10279-63,Organization Lobbyist,"Janene Taylor, Greg Retzer, Sheizana Murji, Rose Ferrer, Tracy Coutts, Shiv Kumar, Jana Mosley, Terri-Lynn Duque, Sarah Stevens, Timothy Boston, Chris Joy, Chris McCleave, Mark McGillivray, Randall Stubbings, Erica Young, Charles Ruigrok",Semi-Annual Renewal,Archived,View  +2022-08-15,-,Rogers Communications Inc.,-,Anthony Staffieri,"Alberta Infrastructure, Executive Council, Service Alberta, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Indigenous Relations, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Gaming, Liquor and Cannabis Commission","Economic Development, Telecommunications",OL-11422-12,Organization Lobbyist,"Ted Woodhead, Heidi Bonnell, Susan Wheeler, Cheryl Fougere, Victoria Smith, Dean Prevost, Karen Holden, Anthony Staffieri, Larry Goerzen, Curtis Rowe",Notice of Change,Archived,View  +2022-08-15,-,Novartis Pharmaceuticals Canada Inc.,-,Andrea Marazzi,"Service Alberta, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Health, Alberta Treasury Board and Finance, Alberta Seniors and Housing, Premier's Office","University of Alberta, Alberta Health Services, University of Calgary",Health,OL-10496-25,Organization Lobbyist,"Helen Trifonopolous, Andrea Marazzi, Thea Discepola, Kimberly King, Caroline Barber, Sophie Rochon",Notice of Change,Archived,View  +2022-08-15,-,CNOOC Petroleum North America ULC,-,Yongjie Liu,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Premier's Office",-,"Energy, Environment, Trade, Economic Development",OL-10375-47,Organization Lobbyist,"Mike Dlugan, Scott Chalker, Michael MacPhee, Robbie Armfield",Notice of Change,Archived,View  +2022-08-12,-,Global Public Affairs,Inter Pipeline Ltd.,Randy Pettipas,"Alberta Environment and Parks, Alberta Energy, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance",-,"Energy, Economic Development",CL-11739-06,Consultant Lobbyist,"Cameron Brown, Pierre Alvarez, Jason Ennis, Randy Pettipas",Notice of Change,Archived,View  +2022-08-12,-,Edmonton Chamber of Commerce,-,Jeffrey Sundquist,"Alberta Labour and Immigration, Alberta Environment and Parks, Alberta Infrastructure, Alberta Energy, Alberta Children’s Services, Alberta Community and Social Services, Alberta Jobs, Economy and Innovation, Executive Council, Service Alberta, Alberta Municipal Affairs, Alberta Justice and Solicitor General, Alberta Health, Alberta Culture and Status of Women, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education, Alberta Seniors and Housing",-,"Employment and Training, Budget, Taxes and Finance, Energy, Legal System, Justice and Law Enforcement, Citizenship and Immigration, Children’s Services, Trade, Economic Development, Sports, Housing",OL-11122-17,Organization Lobbyist,"Andrew Koning, Cadence Bergman, Jeffrey Sundquist, Alexandra Hryciw",Notice of Change,Archived,View  +2022-08-12,-,Global Public Affairs,Farming Smarter,Randy Pettipas,"Alberta Jobs, Economy and Innovation, Executive Council, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,Agriculture,CL-12847-01,Consultant Lobbyist,"Melissa Carvalho, Jason Ennis, Jordan Pinkster, Paul Whittaker",Initial Return,Archived,View  +2022-08-11,-,Shell Canada Limited,-,Susannah Pierce,"Alberta Environment and Parks, Alberta Labour and Immigration, Alberta Energy, Alberta Municipal Affairs, Alberta Agriculture, Forestry and Rural Economic Development",Alberta Energy Regulator,"Employment and Training, Energy, Royalties, Climate, Taxes and Finance, Environment",OL-10419-20,Organization Lobbyist,"Kristyn Moore, Patrick Forseth, Nick DiMarzo, Greg Krauss, Tracy Smith, Ryan Smith, Aurelio Zanni, Conal MacMillan, Brian Waters, Tim Wiwchar, Denise Chang-Yen, Robert Klager, Sarah Kassam, Andrew Ward, John Driedger, Brett Reynolds, Karen West, Erin Bradley, Paige Lawson, Dave Resch, Jordan Klassen, Cameron Yost, Leslie Zilm, Skye McConnell, Kim Code, Deanna Cottrell, Renata de Figueiredo Pinto, Kevin Brouwer, Celina Duong, Craig Mutch, Sonya Lam, Stuart Allen, Alexa Tomlinson, Tara Barnett, Sharon McTeer, Stephen Raye, Jodie Didow, Susannah Pierce, Carolyn Milne, Wendy Konsorada, Jana Masters",Notice of Change,Archived,View  +2022-08-10,2022-09-09,Fulcrum Advocacy,"Call2Recycle, Inc.",Wayne Snow,"Alberta Environment and Parks, Premier's Office",-,Environment,CL-12450-02,Consultant Lobbyist,Wayne Snow,Notice of Change,Terminated,View  +2022-08-10,2022-10-24,Prospectus Associates in Corporate Development,Refraction Asset Management,Bruce Hartley,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Energy, Alberta Indigenous Relations, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Agriculture, Forestry and Rural Economic Development, Premier's Office",Alberta Utilities Commission,"Utilities, Energy, Indigenous Relations",CL-12827-01,Consultant Lobbyist,Danylo Korbabicz,Initial Return,Terminated,View  +2022-08-10,-,Innovative Medicines Canada,-,Pamela Fralick,"Executive Council, Alberta Jobs, Economy and Innovation, Service Alberta, Alberta Health, Alberta Education, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Advanced Education",Alberta Health Services,"Budget, Employment and Training, Health, Procurement, Research and Development, Intergovernmental Relations, Economic Development",OL-10310-35,Organization Lobbyist,"Pascal Chan, Michael Dietrich, Pamela E Fralick, Conrad Bellehumeur, Anne-Sophie Belzile",Semi-Annual Renewal,Archived,View  +2022-08-09,-,EPCOR Utilities Inc.,-,Stuart Lee,"Alberta Environment and Parks, Alberta Energy, Alberta Municipal Affairs, Alberta Culture and Status of Women, Alberta Legislative Assembly",Alberta Utilities Commission,"Energy, Arts and Culture, Environment, Municipal Affairs",OL-10338-27,Organization Lobbyist,"Anthony Scozzafava, Saquib Chaudhary, Jay Baraniecki, Jed Johns, Jeffrey Bertram, Stuart Lee, Stephen Stanley, John Elford, Francesco Mannarino, Amanda Rosychuk, Kirsten Hull, Karim Kassam, Jennifer Addison, Martin Kennedy, Shawn Bradford, Coleen Dawson-Kuncio",Semi-Annual Renewal,Archived,View  +2022-08-09,-,DK Public Affairs,Kairos Cognitive Care,David Keto,"Alberta Labour and Immigration, Alberta Community and Social Services, Alberta Health","Alberta Health Services, Alberta Innovates","Health, Social programs",CL-12825-02,Consultant Lobbyist,David Keto,Notice of Change,Archived,View  +2022-08-05,2022-10-25,Nauticol Energy Ltd.,-,Mark Tonner,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Indigenous Relations, Premier's Office",Alberta Indigenous Opportunities Corporation,"Energy, Indigenous Relations",OL-10887-14,Organization Lobbyist,"Rob Pockar, Bill Somerville, Terri Ellen Sudnik, Matthew Scorah, Mark Tonner",Semi-Annual Renewal,Terminated,View  +2022-08-05,-,Abbott Laboratories Co.,-,Philippe Busque,"Executive Council, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",Alberta Health Services,Health,OL-12740-03,Organization Lobbyist,"Denis Lapierre, Patricia Jill Kravinchuk, Martine Castonguay, Genevieve D'Annunzio",Notice of Change,Archived,View  +2022-08-04,-,Innovative Medicines Canada,-,Pamela Fralick,"Alberta Jobs, Economy and Innovation, Service Alberta, Executive Council, Alberta Education, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Advanced Education",Alberta Health Services,"Employment and Training, Budget, Health, Procurement, Research and Development, Intergovernmental Relations, Economic Development",OL-10310-34,Organization Lobbyist,"Anne-Sophie Belzile, Conrad Bellehumeur, Pamela E Fralick, Michael Dietrich, Pascal Chan",Notice of Change,Archived,View  +2022-08-04,-,Enterprise Canada Inc.,Edmonton Global,Barbara Fox,"Alberta Environment and Parks, Alberta Labour and Immigration, Alberta Infrastructure, Alberta Energy, Alberta Indigenous Relations, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Service Alberta, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Health, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Alberta Advanced Education, Premier's Office","Alberta Innovates, Invest Alberta Corporation",Economic Development,CL-12833-01,Consultant Lobbyist,"Erika Barootes, Steven McLelan",Initial Return,Archived,View  +2022-08-04,-,GS1 Canada,-,Eileen Mac Donald,"Alberta Agriculture, Forestry and Rural Economic Development, Alberta Health, Premier's Office","Alberta Health Services, Alberta Gaming, Liquor and Cannabis Commission","Health, Agriculture, Cannabis",OL-10317-17,Organization Lobbyist,"Francois Bouchard, Priyanka Shertukde, Rob Bell, John King, Eileen Mac Donald, Alicia Duval, Angela Hawkins",Semi-Annual Renewal,Archived,View  +2022-08-04,-,P3 Capital Partners Inc.,Northwestern Polytechnic,Doug Horner,"Alberta Infrastructure, Alberta Health, Alberta Advanced Education",Alberta Health Services,Post-secondary Education,CL-12570-03,Consultant Lobbyist,"Jeff Johnson, Monica Barclay",Notice of Change,Archived,View  +2022-08-03,-,Futurpreneur Canada,-,Karen GreveYoung,"Alberta Jobs, Economy and Innovation",-,Economic Development,OL-11973-10,Organization Lobbyist,"Janis Nixon, Micah Anshan, Megane Visette, Maryse Gingras, Karen Greve Young",Notice of Change,Archived,View  +2022-08-03,-,Graduate Students' Association of the University of Calgary,-,Saaka Sulemana Saaka,"Alberta Labour and Immigration, Alberta Children’s Services, Alberta Advanced Education",-,Post-secondary Education,OL-10348-13,Organization Lobbyist,"James Steele, Masume Akbari, Cameron Armstrong, Alex Cameron, Saaka Sulemana Saaka",Notice of Change,Archived,View  +2022-08-03,-,Canadian National Railway Company (CN),-,Tracy Robinson,"Alberta Infrastructure, Alberta Energy, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Transportation, Premier's Office",Invest Alberta Corporation,"Energy, Agriculture, Municipal Affairs, Transportation, Economic Development, Infrastructure",OL-10497-16,Organization Lobbyist,"Cyrus Reporter, Scott Brown, Sandra Ellis, James Cairns, Sean Finn, James Auld, Jason R. Valliere, Buck Rogers, David Przednowek, Corey Caville, Karen Jensen, James Thompson, Melissa Cotton, CarrieAnn Crozier, Tracy Robinson, Doug MacDonald, Nicholas Dube, Tyler Banick, Catherine Fremont",Notice of Change,Archived,View  +2022-08-02,-,Organon Canada Inc.,-,Michael Casia,Alberta Health,Alberta Health Services,Health,OL-12430-03,Organization Lobbyist,"Stuart Reid, Jeffrey Malawski, Kathy Armstrong, Elisa Warwick-Markowski, Isabel Deslongschamps, Michael Casia, Mireille Dufresne, Réjean Landry",Notice of Change,Archived,View  +2022-08-02,2022-08-31,1889278 Alberta Ltd. (Korte Consulting),Fiscal Energy Corp.,Brent Korte,"Alberta Environment and Parks, Alberta Energy, Alberta Indigenous Relations, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Legislative Assembly, Premier's Office",Alberta Energy Regulator,"Energy, Economic Development",CL-12427-02,Consultant Lobbyist,"Brian Senio, Brent Korte",Notice of Change,Terminated,View  +2022-08-01,-,Investment Industry Association of Canada,-,Laura Paglia,-,Alberta Securities Commission,Banks and Other Financial Institutions,OL-10315-18,Organization Lobbyist,"Laura Paglia, Todd Evans, Adrian Walrath, Jack Rando",Semi-Annual Renewal,Archived,View  +2022-07-29,-,Davidson & Williams LLP,Hutterian Brethren Church of Turin,Herb Beswick,"Alberta Environment and Parks, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office",-,Land Use,CL-12560-04,Consultant Lobbyist,"Herbert Beswick, Q.C., Darryl Douglas",Notice of Change,Archived,View  +2022-07-29,-,P3 Capital Partners Inc.,EyeQ International Inc.,Doug Horner,"Executive Council, Alberta Treasury Board and Finance, Alberta Advanced Education, Premier's Office",Alberta Apprenticeship and Industry Training Board,Post-secondary Education,CL-12837-01,Consultant Lobbyist,"Monica Barclay, Jeff Johnson",Initial Return,Archived,View  +2022-07-28,-,Alberta Counsel,Municipal District of Lesser Slave River No. 124,Jonathon Wescott,"Alberta Infrastructure, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Transportation, Alberta Legislative Assembly, Premier's Office",-,Infrastructure,CL-12836-01,Consultant Lobbyist,"Pascal Ryffel, James Johnson, Zack Ziolkowski, Votham Anastasiadis, Aaron Singleton, Alexandra Carlile, Shayne Saskiw, Jonathon Wescott, Aileen Burke, Heather Feldbusch, Sydney McHale",Initial Return,Archived,View  +2022-07-27,-,DK Public Affairs,Kairos Cognitive Care,David Keto,"Alberta Labour and Immigration, Alberta Community and Social Services, Alberta Health",Alberta Health Services,"Health, Social programs",CL-12825-01,Consultant Lobbyist,David Keto,Initial Return,Archived,View  +2022-07-27,-,Chemistry Industry Association of Canada,-,Bob Masterson,"Alberta Environment and Parks, Alberta Labour and Immigration, Alberta Energy, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office",-,"Energy, Taxes and Finance, Environment, Economic Development, Transportation, Labour Relations",OL-10249-18,Organization Lobbyist,"Bob Masterson, Kara Edwards, Greg Moffatt, David Cherniak, Isabelle Des Chênes, Danielle Morrison, Elena Mantagaris, Christa Seaman, Sanket Das, Christine Nahas, Kai Horsfield",Semi-Annual Renewal,Archived,View  +2022-07-27,2022-10-17,Crestview Strategy,Leafly Canada Ltd.,Chad Rogers,"Executive Council, Alberta Treasury Board and Finance, Premier's Office","Alberta Gaming, Liquor and Cannabis Commission",Cannabis,CL-12681-03,Consultant Lobbyist,"Bill Anderson, Supreena Sekhon",Notice of Change,Terminated,View  +2022-07-26,-,Loyalist Public Affairs,The Stars Group/TSG Interactive Services,Chris Froggatt,"Alberta Infrastructure, Alberta Children’s Services, Alberta Energy, Executive Council, Alberta Health, Alberta Justice and Solicitor General, Alberta Culture and Status of Women, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Education, Alberta Transportation, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education","Alberta Gaming, Liquor and Cannabis Commission",Gaming,CL-11616-11,Consultant Lobbyist,"Christopher Froggatt, Dan Mader",Notice of Change,Archived,View  +2022-07-26,-,Alberta College of Family Physicians,-,Sudha Koppula,"Executive Council, Alberta Health, Alberta Legislative Assembly, Premier's Office","Alberta Health Services, Provincial Primary Care Network Committee",Health,OL-11780-05,Organization Lobbyist,"Sudha Koppula, Cathy Scrimshaw, Terri Potter, Noel DaCunha",Semi-Annual Renewal,Archived,View  +2022-07-26,-,Canadian Urban Transit Association,-,Marco D'Angelo,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office",-,Transportation,OL-12564-02,Organization Lobbyist,"Jon MacMull, Marco D'Angelo",Semi-Annual Renewal,Archived,View  +2022-07-25,2022-09-06,Wellington Advocacy Inc.,Risio Institute for Digital Dental Education Inc,Nick Koolsbergen,"Alberta Labour and Immigration, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Health, Alberta Legislative Assembly, Alberta Advanced Education, Premier's Office",-,Employment and Training,CL-12791-02,Consultant Lobbyist,"Matt de Jong, Peter Csillag, Brad Tennant",Notice of Change,Terminated,View  +2022-07-25,-,Course Consulting Ltd.,BluEarth Renewables,Jeff Johnson,Alberta Energy,-,Energy,CL-11807-05,Consultant Lobbyist,"Jeff Johnson, Diana McQueen",Notice of Change,Archived,View  +2022-07-25,-,Jordan Cleland Consulting,Opulence Education Group,Jordan Cleland,-,"Lethbridge College, Lakeland College, Portage College, NorQuest College, Olds College",Post-secondary Education,CL-12826-01,Consultant Lobbyist,Jordan Cleland,Initial Return,Archived,View  +2022-07-25,2022-09-06,Wellington Advocacy Inc.,Petroleum Services Association of Canada (PSAC),Nick Koolsbergen,"Alberta Labour and Immigration, Alberta Environment and Parks, Alberta Energy, Alberta Indigenous Relations, Alberta Jobs, Economy and Innovation, Alberta Transportation, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,"Employment and Training, Energy, Taxes and Finance, Science and Technology, Trade, Environment, Indigenous Relations, Transportation",CL-12480-03,Consultant Lobbyist,"Matt de Jong, Peter Csillag, Brad Tennant",Notice of Change,Terminated,View  +2022-07-25,-,Wellington Advocacy Inc.,Digital Media Association of Alberta,Nick Koolsbergen,"Alberta Labour and Immigration, Alberta Jobs, Economy and Innovation, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,Science and Technology,CL-12648-03,Consultant Lobbyist,"Peter Csillag, Brad Tennant, Matt de Jong",Notice of Change,Archived,View  +2022-07-25,2022-10-31,Olsen+Biggs Public Affairs,8IEME SENS INC.,Kyle Olsen,Alberta Energy,-,Energy,CL-12828-01,Consultant Lobbyist,"Kyle Olsen, Sarah Biggs",Initial Return,Terminated,View  +2022-07-25,-,CIPR Communications,Ichor Health Inc.,Christina Pilarski,"Executive Council, Alberta Indigenous Relations, Alberta Health, Alberta Legislative Assembly, Premier's Office",Alberta Health Services,Health,CL-12812-01,Consultant Lobbyist,"Shevaun (Boddez) Pontin, Peter Pilarski",Initial Return,Archived,View  +2022-07-23,-,Capital Power Corporation,-,Brian Vaasjo,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Electric System Operator, Market Surveillance Administrator","Energy, Environment",OL-10236-29,Organization Lobbyist,"Grant Berry, Daniel Jurijew, Brian Vaasjo, Kate Chisholm, Ahmed Idriss, Matthew Davis",Semi-Annual Renewal,Archived,View  +2022-07-22,-,Canadian Medical Association,-,Timothy Smith,"Alberta Labour and Immigration, Executive Council, Alberta Health, Alberta Justice and Solicitor General, Alberta Legislative Assembly, Premier's Office",-,"Health, Justice and Law Enforcement",OL-10605-21,Organization Lobbyist,"Romeo Tello, Karey Shuhendler, Elena Gabrysz, Eric Lewis, Dr. Katharine Smart, Marie-Claire Bedard, Jasmine Neeson, Philippe Ha, Dr. Ann Collins, Ashley Chisholm, Caroline Bouchard, Jennifer Kitts, Azin Peyrow, Manon Abud, Julie Aung, Owen Adams, Aline Gagnon, Cecile Bensimon, Stephen Vail, Audrey Grandmaison, John Feeley, Luce Lavoie, Tim Smith, Anick Losier, Nick Farinaccio, Dr. Jeff Blackmer, Pascal Charron, Kristin Smith, Joseph Mayer, Nick Lecuyer, Dr. Alika Lafontaine, Louise Sweatman",Notice of Change,Archived,View  +2022-07-22,-,Lyft Canada Inc.,-,Christopher Reilly,"Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Justice and Solicitor General, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office",Invest Alberta Corporation,Transportation,OL-12813-01,Organization Lobbyist,Peter Lukomskyj,Initial Return,Archived,View  +2022-07-22,-,New West Public Affairs,Connecting Care,Monte Solberg,"Executive Council, Alberta Health, Alberta Legislative Assembly, Alberta Seniors and Housing, Premier's Office",Alberta Health Services,Seniors issues,CL-12822-01,Consultant Lobbyist,"Monte Solberg, Matt Solberg, Michael Solberg, Keith McLaughlin, Sonia Kont, Gordon Olsen, Sarah Painchaud, Fahreen Budwhani, Graham Gerein",Initial Return,Archived,View  +2022-07-22,-,Alberta Canola Producers Commission,-,Karla Bergstrom,"Alberta Environment and Parks, Alberta Labour and Immigration, Alberta Energy, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Municipal Affairs, Service Alberta, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Education, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education","Agriculture Financial Services Corporation, Alberta Agricultural Products Marketing Council","Climate, Agriculture, Trade, Environment, K-12 Education, Transportation",OL-10856-12,Organization Lobbyist,"Kamilla Sulikowski, Michelle Chunyua, Rick Taillieu, Karla Bergstrom, Brittany Hennig, Tara Baycroft, Aymie Haslam",Semi-Annual Renewal,Archived,View  +2022-07-21,-,Merck Canada Inc.,-,Marwan Akar,"Alberta Jobs, Economy and Innovation, Alberta Health",Alberta Health Services,"Health, Economic Development",OL-10476-21,Organization Lobbyist,"Sevag Sahakian, Heidi Waser, Lee Swift, Lonnie Kam, Wes Miyai, Chad Jarema, Jennifer Chan, Francois Farmer, Christopher Nicholls, Suresh Raj Ramadasan, Jeff Guiler",Notice of Change,Archived,View  +2022-07-21,-,Ovintiv Canada ULC,-,Corey Code,"Alberta Environment and Parks, Alberta Energy, Alberta Indigenous Relations, Alberta Municipal Affairs, Alberta Treasury Board and Finance, Premier's Office","Alberta Innovates, Alberta Energy Regulator","Energy, Climate, Taxes and Finance, Environment, Municipal Affairs, Indigenous Relations, Economic Development, Wildlife",OL-10288-45,Organization Lobbyist,"Jason Blanch, Jennifer Blaney, Daniel Dunlop, Marawan ElSayed, Parmjeet Virdee, Paul Giesbrecht, David Lye, Brendan McCracken, Kellen Foreman",Semi-Annual Renewal,Archived,View  +2022-07-20,2022-09-21,Premier Tech Ltée,-,Jean Belanger,Alberta Environment and Parks,-,Agriculture,OL-10403-23,Organization Lobbyist,"Mark Murphy, Marc Béland, Yann Le Moullec, Stéphane Bellefleur, Michel Lemieux, Raphaëlle Morin-Blais, Martine Séguin, Régis Michaud, Jean Bélanger, Sandro Bertossi, Claude Morasse, Bernard Bélanger, Martin Pelletier, Ghislain Levesque, Jonathan Marquis, Mathieu Trudel, Manon Sirois, Patrice G.Duguay, Nicolas Robitaille, Christian Noel, Claude J. Gobeil, Yves Goudreau, Sophie Clavelier",Notice of Change,Terminated,View  +2022-07-18,-,Premier Tech Ltée,-,Jean Belanger,Alberta Environment and Parks,-,Agriculture,OL-10403-22,Organization Lobbyist,"Mark Murphy, Marc Béland, Yann Le Moullec, Stéphane Bellefleur, Michel Lemieux, Raphaëlle Morin-Blais, Martine Séguin, Régis Michaud, Jean Bélanger, Sandro Bertossi, Claude Morasse, Bernard Bélanger, Martin Pelletier, Ghislain Levesque, Jonathan Marquis, Mathieu Trudel, Manon Sirois, Patrice G.Duguay, Nicolas Robitaille, Christian Noel, Claude J. Gobeil, Yves Goudreau, Sophie Clavelier",Notice of Change,Archived,View  +2022-07-18,-,StrategyCorp Inc.,Quebecor Media Inc.,John Matheson,"Service Alberta, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,Telecommunications,CL-12318-05,Consultant Lobbyist,Garry Keller,Notice of Change,Archived,View  +2022-07-18,-,De Paoli & Associates Inc.,Alberta Greenhouse Growers Association,Anna De Paoli,"Alberta Labour and Immigration, Alberta Environment and Parks, Alberta Energy, Alberta Municipal Affairs, Alberta Agriculture, Forestry and Rural Economic Development",-,"Energy, Agriculture, Environment, Labour Relations",CL-10286-16,Consultant Lobbyist,Anna De Paoli,Notice of Change,Archived,View  +2022-07-18,2022-08-08,Wellington Advocacy Inc.,PointClickCare Technologies Inc.,Nick Koolsbergen,"Alberta Jobs, Economy and Innovation, Alberta Health, Premier's Office",Alberta Health Services,Science and Technology,CL-12675-03,Consultant Lobbyist,"Peter Csillag, Brad Tennant, Matt de Jong",Notice of Change,Terminated,View  +2022-07-18,-,Wellington Advocacy Inc.,Enbridge Inc,Nick Koolsbergen,"Alberta Environment and Parks, Alberta Labour and Immigration, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Indigenous Relations, Alberta Municipal Affairs, Executive Council, Alberta Health, Alberta Treasury Board and Finance, Premier's Office","Alberta Petroleum Marketing Commission, Alberta Energy Regulator, Invest Alberta Corporation","Energy, Health, Environment, Indigenous Relations, Municipal Affairs, Labour Relations",CL-11794-08,Consultant Lobbyist,"Trisha Rinneard, Brad Tennant, Nick Koolsbergen",Notice of Change,Archived,View  +2022-07-18,-,Sun Life Financial,-,Kevin Strain,"Alberta Jobs, Economy and Innovation, Alberta Health, Alberta Treasury Board and Finance, Premier's Office","Alberta Health Services, Alberta Innovates","Insurance, Health, Banks and Other Financial Institutions",OL-10943-17,Organization Lobbyist,"Marianne Nguyen, Alanna Boyd, Victor Gomez, Jessica Brcko, Ali Salam, Laura Hewitt",Notice of Change,Archived,View  +2022-07-15,-,Air Products Canada Ltd.,-,Francesco Maione,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Energy, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Energy Regulator, Invest Alberta Corporation","Taxes and Finance, Energy, Environment, Intergovernmental Relations, Infrastructure, Economic Development",OL-12267-04,Organization Lobbyist,"Jessica Lof, Rachel Smith, Peter L. Snyder, Miles Heller, Hasin Haroon",Notice of Change,Archived,View  +2022-07-15,-,Imperial Oil Ltd.,-,Brad Corson,"Alberta Labour and Immigration, Alberta Environment and Parks, , Alberta Energy, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Indigenous Relations, Alberta Health, Alberta Legislative Assembly, Premier's Office",Alberta Energy Regulator,"Health, Climate, Energy, Environment, Municipal Affairs, Indigenous Relations, Wildlife, Labour Relations",OL-10352-32,Organization Lobbyist,"Sherri Evers, Doug Wilkins, Jaclyn Mersereau, Ryan Levins, Ayan Chakraborty, Simon Younger, Jessica Pickel, Brad Corson, Jennifer Haverhals, Dean Bruce, Andrew Yates, Anita Remartinez, Jaffar Naqi, Kevin Burke-Gaffney, James Kusie, Stuart Lunn, Terry Matthews, Karine Belanger, Melissa Wade, Keri Abel, Leanne Young, Susan Nakagawa, Tyler Colberg, Sherry Becker, James Dunn, Kim Fox, Myles Fox, James Guthrie, Alison Miller, Lori Neufeld, Peter Noble, Alicja Pawlak, Andre Perrone, Karl Pierzchajlo, Helga Shield, Keith Tanner, Carolyn Tester, Paul Cavanagh, Rosa Fiorentino, Amanda Schiaroli, Jon Wetmore, Heather Burkett, Jeff Wilson, Daniel P. Dubois, Brad Porter, Caryn Liberman, Rita Karrel, Sean Mercer, Reagen Stoddart",Notice of Change,Archived,View  +2022-07-15,-,ENMAX Corporation,-,Charles Ruigrok,"Alberta Energy, Executive Council, Service Alberta, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Utilities Commission, Alberta Innovates, Alberta Electric System Operator, Balancing Pool, Market Surveillance Administrator, Invest Alberta Corporation","Energy, Consumer Issues, Environment",OL-10279-62,Organization Lobbyist,"Charles Ruigrok, Erica Young, Randall Stubbings, Mark McGillivray, Chris McCleave, Chris Joy, Timothy Boston, Sarah Stevens, Terri-Lynn Duque, Jana Mosley, Bruce Borwick, Shiv Kumar, Tracy Coutts, Rose Ferrer, Sheizana Murji, Greg Retzer, Janene Taylor",Notice of Change,Archived,View  +2022-07-15,-,TC Energy Corporation,-,Francois Poirier,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Energy, Alberta Jobs, Economy and Innovation, Service Alberta, Alberta Municipal Affairs, Executive Council, Alberta Indigenous Relations, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office","Alberta Utilities Commission, Alberta Health Services, Alberta Innovates, Alberta Energy Regulator, Alberta Electric System Operator, Market Surveillance Administrator","Energy, Health, Procurement, Environment, Municipal Affairs, Indigenous Relations, Wildlife, Transportation",OL-10499-51,Organization Lobbyist,"Omar Khayum, Andrew Isherwood, Karla Palardy, Corey Hessen, Ryan Laverty, Patrick Muttart, Sheldon Good, Mark Blundell, Joe Zhou, Bevin Wirzba, Jawad Masud, Ken Brink, Jay White, Richard Prior, Mark Thompson, Francois Poirier, Blaine Trout, Alex Harris, Tisha Homer, Holly Waldorf, Kristin Anderson, Fareen Sunderji, Christopher Vivone, Duane Alexander, Julia Jensen, Luke Meredith, Lindsay MacKay, Graeme Wright, Greg Grant, Wade Pruett, Stefan Skocylas, Timothy Lam, Mel Garner, Ana Maria Radu, Wendell Klassen, Kirk Wasylik, Robert Tarvydas, Patrick Keys, Michael Schmaltz, Keith Nelson, Riley Baldwin, Dave Forestell",Notice of Change,Archived,View  +2022-07-15,-,Canadian Association of Petroleum Producers,-,Lisa Baiton,"Alberta Environment and Parks, Alberta Labour and Immigration, , Alberta Energy, Alberta Indigenous Relations, Alberta Municipal Affairs, Executive Council, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Justice and Solicitor General, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office","Alberta Innovates, Workers’ Compensation Board, Alberta Energy Regulator","Energy, Climate, Health, Royalties, Taxes and Finance, Land Use, Justice and Law Enforcement, Environment, Municipal Affairs, Indigenous Relations, Transportation, Economic Development, Wildlife, Labour Relations",OL-10227-56,Organization Lobbyist,"Greig Sproule, Jay Averill, Jonathan Stringham, Aaron Miller, Krista Phillips, Patrick McDonald, Richard Wong, Brad Herald, Giles Ody, Bryan Remillard, Claudette Fedoruk, Amberly Dooley, Markus Ermisch, Don McCrimmon, Shannon Joseph, Cole Schulz, Tara Payment, David Hume, Stephen Bresee, Paul Hartzheim, Tricia Donnelly, Lisa Baiton, J.C. Vito, Fauziah Rochman, Rob Kopecky",Notice of Change,Archived,View  +2022-07-14,-,ConocoPhillips Canada Resources Corp.,-,Bijan Agarwal,"Alberta Environment and Parks, Alberta Energy, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Alberta Treasury Board and Finance, Premier's Office","Alberta Petroleum Marketing Commission, Alberta Energy Regulator","Energy, Climate, Environment, Municipal Affairs",OL-10099-32,Organization Lobbyist,"Tyler Blasetti, James Makowecki, Devin O'Neal, Gunnar Johnsen, Bijan Agarwal, Charlotte Plombin, Chris Malkin, Rickie-Lee Doyle, Peter Koning, Kim Iverson, Robert Albricht, Fred Walter, Jeff Gow, Cary Allan, Jodi Prior",Notice of Change,Archived,View  +2022-07-13,-,AstraZeneca Canada Inc.,-,Kiersten Combs,"Alberta Jobs, Economy and Innovation, Executive Council, Alberta Health, Premier's Office","University of Alberta, Alberta Health Services, Alberta Innovates",Health,OL-10417-22,Organization Lobbyist,"Jo-Ann Stuart-Chatterley, Kevin McGuire, Ilias Iliopoulos, Mo Amin, Noel Saraza, Kiersten Combs, Jon Feairs, Gena Restivo",Notice of Change,Archived,View  +2022-07-13,-,Canadian Medical Association,-,Timothy Smith,"Alberta Labour and Immigration, Executive Council, Alberta Justice and Solicitor General, Alberta Health, Alberta Legislative Assembly, Premier's Office",-,"Health, Justice and Law Enforcement",OL-10605-20,Organization Lobbyist,"Romeo Tello, Karey Shuhendler, Elena Gabrysz, Eric Lewis, Dr. Katharine Smart, Marie-Claire Bedard, Jasmine Neeson, Philippe Ha, Dr. Ann Collins, Ashley Chisholm, Caroline Bouchard, Jennifer Kitts, Azin Peyrow, Manon Abud, Julie Aung, Owen Adams, Aline Gagnon, Cecile Bensimon, Stephen Vail, Audrey Grandmaison, John Feeley, Luce Lavoie, Tim Smith, Anick Losier, Nick Farinaccio, Dr. Jeff Blackmer, Pascal Charron, Kristin Smith, Joseph Mayer, Nick Lecuyer, Dr. Alika Lafontaine, Louise Sweatman",Semi-Annual Renewal,Archived,View  +2022-07-13,-,New West Public Affairs,NOTARIUS Inc.,Monte Solberg,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Indigenous Relations, Alberta Municipal Affairs, Executive Council, Service Alberta, Alberta Culture and Status of Women, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Justice and Solicitor General, Alberta Health, Alberta Legislative Assembly, Alberta Transportation, Premier's Office",-,Science and Technology,CL-12394-04,Consultant Lobbyist,"Graham Gerein, Gordon Olsen, Sonia Kont, Michael Solberg, Sarah Painchaud, Keith McLaughlin, Matt Solberg, Monte Solberg, Fahreen Budwhani",Notice of Change,Archived,View  +2022-07-13,-,Cenovus Energy Inc.,-,Alex Pourbaix,"Alberta Environment and Parks, Alberta Labour and Immigration, Alberta Infrastructure, Alberta Energy, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Indigenous Relations, Alberta Justice and Solicitor General, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education","Alberta Utilities Commission, Alberta Petroleum Marketing Commission, Alberta Energy Regulator, Alberta Electric System Operator","Energy, Taxes and Finance, Environment, Indigenous Relations, Municipal Affairs, Workplace Safety, Infrastructure, Labour Relations",OL-10248-26,Organization Lobbyist,"Andrea Louise-Martyn, Morgan Wrishko, Jon McKenzie, Tyler Tarnoczi, Jim Lytle, Scott Hillier, Tony Jackson, Claire Hong, Chris Moody, Prince Azom, Patrick McKay, Amos Ben-Zvi, Keith Chiasson, Shelley Machon, Shane Cooke, Darwin Bateyko, Charles Gobin, Mike Plettel, Suzanne Smith, Susan Grey, Rhona DelFrari, Ray Lambert, Travis Davies, Anamika Mukherjee, Shannon McDougall, Jennifer Shalagan, Troy Peterson, Brett Wiens, Sherry Wendt, Michele Waters, Eric Wakley, Michael Penner, Sean Hiebert, Gary Molnar, Geoff Murray, Brooke Lindsey, Jillian Falls, Michael Wilson, Kam Sandhar, Jared Robertson, Greg Cave, Jamie Agnew, Ted Johnson, Michael Cody, Grant Pellegrin, Lindsay Reynolds, Drew Zieglgansberger, Kendall Dilling, Trent Zacharias, Andrew Straile, Jeff Jeworski, Norrie Ramsay, Sam Murphy, Alisha Bhura, Owen Henshaw, Devin Iversen, Sharla Howard, Jeff Nail, Jessica Player, Alex Pourbaix",Semi-Annual Renewal,Archived,View  +2022-07-13,-,The Explorers and Producers Association of Canada,-,Tristan Goodman,"Alberta Environment and Parks, Alberta Energy, Alberta Indigenous Relations, Alberta Municipal Affairs",Alberta Energy Regulator,"Energy, Environment, Indigenous Relations, Municipal Affairs",OL-10468-14,Organization Lobbyist,"Chris Montgomery, Tristan Goodman, Gordon Tait, Michael Fulsom, Jennifer Paterson",Notice of Change,Archived,View  +2022-07-12,-,Global Public Affairs,Alberta Enterprise Corporation,Randy Pettipas,"Alberta Jobs, Economy and Innovation, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Advanced Education",-,Economic Development,CL-12810-01,Consultant Lobbyist,"Matt Williamson, Yonathan Sumamo, Jason Ennis, Pierre Alvarez, Melissa Carvalho",Initial Return,Archived,View  +2022-07-12,-,Medtronic Canada ULC,-,Sheri Dodd,Alberta Health,Alberta Health Services,Health,OL-11040-10,Organization Lobbyist,"Benjamin Spackman, John Fedirko, Jason Rudd, Abhishek Chaudhary, Neil Fraser, Martin Butler, Jessica Rudd, Jeff Scarborough, Jill Pike, Sean Murphy, Brian McQuaker, Eric Filion",Semi-Annual Renewal,Archived,View  +2022-07-12,-,Association of Professional Engineers and Geoscientists of Alberta,-,Jay Nagendran,Alberta Labour and Immigration,-,Trades and Occupations,OL-10381-33,Organization Lobbyist,"Jay Nagendran, Nancy Biamonte, Enayat Aminzadah, Dianne Johnstone, Mohamed El Daly, John Corriveau, Gabrielle Abernethy",Notice of Change,Archived,View  +2022-07-11,2022-10-01,Counsel Public Affairs Inc.,Tourmaline Oil Corp.,Philip Dewan,"Alberta Energy, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Premier's Office",Alberta Energy Regulator,"Energy, Environment, Municipal Affairs",CL-12055-18,Consultant Lobbyist,"T.J. Keil, Brad Lavigne",Notice of Change,Terminated,View  +2022-07-11,-,Counsel Public Affairs Inc.,Emergent BioSolutions Canada Inc. (formerly Adapt Pharma Canada Ltd.),Philip Dewan,"Alberta Labour and Immigration, Alberta Environment and Parks, Alberta Infrastructure, Alberta Children’s Services, Alberta Energy, Service Alberta, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Community and Social Services, Alberta Indigenous Relations, Alberta Municipal Affairs, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Health, Alberta Justice and Solicitor General, Alberta Education, Alberta Culture and Status of Women, Alberta Transportation, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Advanced Education, Premier's Office, Alberta Seniors and Housing",-,Health,CL-11418-12,Consultant Lobbyist,"T.J. Keil, Bradley Lavigne",Notice of Change,Archived,View  +2022-07-11,-,Counsel Public Affairs Inc.,Innovative Medicines Canada,Philip Dewan,"Alberta Jobs, Economy and Innovation, Executive Council, Alberta Health, Alberta Treasury Board and Finance",Alberta Health Services,"Budget, Health, Procurement, Research and Development, Intergovernmental Relations, Economic Development",CL-12506-04,Consultant Lobbyist,T.J. Keil,Notice of Change,Archived,View  +2022-07-11,-,Counsel Public Affairs Inc.,Athabasca Chipewyan First Nation,Philip Dewan,"Alberta Environment and Parks, Alberta Energy, Executive Council, Alberta Indigenous Relations, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Alberta Health, Alberta Justice and Solicitor General, Alberta Culture and Status of Women, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education",Alberta Energy Regulator,"Health, Arts and Culture, Justice and Law Enforcement, Environment, Municipal Affairs, Indigenous Relations, K-12 Education",CL-11070-14,Consultant Lobbyist,T.J. Keil,Notice of Change,Archived,View  +2022-07-11,-,Counsel Public Affairs Inc.,Canadian Battery Association,Philip Dewan,"Alberta Environment and Parks, Alberta Energy",-,Environment,CL-12532-04,Consultant Lobbyist,T.J. Keil,Notice of Change,Archived,View  +2022-07-08,-,Earnscliffe Strategy Group,The Railway Association of Canada,Velma McColl,"Alberta Environment and Parks, Alberta Labour and Immigration, Alberta Infrastructure, Alberta Indigenous Relations, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Executive Council, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office",-,Transportation,CL-12808-01,Consultant Lobbyist,Bailey Stafford,Initial Return,Archived,View  +2022-07-08,-,"Amazon Canada Fulfillment Services, ULC",-,Sumegha Kumar,"Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Transportation, Alberta Legislative Assembly, Premier's Office",-,"Arts and Culture, Transportation, Economic Development",OL-11094-09,Organization Lobbyist,"James Maunder, Allison Gifford, Thoren Hudyma, Brook Simpson",Notice of Change,Archived,View  +2022-07-08,-,Prairie Sky Enterprises Ltd. (Prairie Sky Strategy),Surgical Centres Inc.,Jeff Sterzuk,Alberta Health,Alberta Health Services,Health,CL-12801-01,Consultant Lobbyist,"Richard Truscott, Rick Fraser, Jeff Sterzuk",Initial Return,Archived,View  +2022-07-07,-,Capilano Policy Group Inc.,Avanti Energy Inc.,Richard Dunn,"Alberta Energy, Alberta Treasury Board and Finance",-,Mining,CL-12805-01,Consultant Lobbyist,Richard Dunn,Initial Return,Archived,View  +2022-07-07,-,New West Public Affairs,Delta Waterfowl,Monte Solberg,"Alberta Environment and Parks, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Premier's Office",-,Environment,CL-12806-01,Consultant Lobbyist,"Matt Solberg, Michael Solberg, Keith McLaughlin, Sonia Kont, Sarah Painchaud, Monte Solberg, Gordon Olsen, Graham Gerein, Fahreen Budhwani",Initial Return,Archived,View  +2022-07-07,-,TC Energy Corporation,-,Francois Poirier,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Energy, Alberta Indigenous Relations, Alberta Jobs, Economy and Innovation, Executive Council, Service Alberta, Alberta Municipal Affairs, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office","Alberta Utilities Commission, Alberta Health Services, Alberta Innovates, Alberta Energy Regulator, Alberta Electric System Operator, Market Surveillance Administrator","Energy, Health, Procurement, Environment, Indigenous Relations, Municipal Affairs, Transportation, Wildlife",OL-10499-50,Organization Lobbyist,"Dave Forestell, Riley Baldwin, Keith Nelson, Michael Schmaltz, Patrick Keys, Robert Tarvydas, Kirk Wasylik, Wendell Klassen, Ana Maria Radu, Mel Garner, Timothy Lam, Stefan Skocylas, Wade Pruett, Greg Grant, Graeme Wright, Lindsay MacKay, Luke Meredith, Julia Jensen, Duane Alexander, Christopher Vivone, Fareen Sunderji, Kristin Anderson, Holly Waldorf, Tisha Homer, Alex Harris, Blaine Trout, Francois Poirier, Mark Thompson, Richard Prior, Jay White, Ken Brink, Jawad Masud, Bevin Wirzba, Joe Zhou, Mark Blundell, Sheldon Good, Patrick Muttart",Notice of Change,Archived,View  +2022-07-06,-,Enterprise Canada Inc.,IBM Canada Limited,Barbara Fox,"Alberta Environment and Parks, Alberta Labour and Immigration, Alberta Infrastructure, Alberta Children’s Services, Alberta Energy, Service Alberta, Alberta Community and Social Services, Executive Council, Alberta Indigenous Relations, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Alberta Culture and Status of Women, Alberta Education, Alberta Health, Alberta Justice and Solicitor General, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Transportation, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Advanced Education, Alberta Seniors and Housing, Premier's Office","Alberta Health Services, Alberta Gaming, Liquor and Cannabis Commission, Alberta Indigenous Opportunities Corporation","Procurement, Research and Development",CL-11831-09,Consultant Lobbyist,"Steven McLelan, Erika Barootes",Notice of Change,Archived,View  +2022-07-06,-,Enterprise Canada Inc.,Public Business Accountants' Society of Alberta,Barbara Fox,"Alberta Labour and Immigration, Service Alberta, Alberta Justice and Solicitor General, Alberta Treasury Board and Finance",-,Labour Relations,CL-12601-02,Consultant Lobbyist,"Erika Barootes, Steven McLelan",Notice of Change,Archived,View  +2022-07-06,-,Enterprise Canada Inc.,Calgary Drop-In Centre,Barbara Fox,"Alberta Children’s Services, Alberta Community and Social Services, Alberta Culture and Status of Women, Alberta Health, Alberta Legislative Assembly, Alberta Seniors and Housing",-,Health,CL-12319-04,Consultant Lobbyist,"Steven McLelan, Erika Barootes",Notice of Change,Archived,View  +2022-07-06,-,ATCO Ltd.,-,Nancy Southern,"Alberta Energy, Alberta Municipal Affairs, Service Alberta, Alberta Health, Alberta Treasury Board and Finance, Premier's Office",-,"Utilities, Municipal Affairs",OL-10215-19,Organization Lobbyist,"Nick Sealy-Thompson, James Landon, Roger Mazankowski, Dale Friesen, Jason Sharpe, Brian Shkrobot, Robert Myles, Melanie Bayley, Nancy C. Southern, Katherine-Jane Patrick, Robert Jones",Semi-Annual Renewal,Archived,View  +2022-07-06,-,Enterprise Canada Inc.,Town of Gibbons,Barbara Fox,"Alberta Infrastructure, Executive Council, Alberta Municipal Affairs, Alberta Transportation, Alberta Legislative Assembly, Premier's Office",-,Economic Development,CL-11791-05,Consultant Lobbyist,"Erika Barootes, Steven McLelan",Notice of Change,Archived,View  +2022-07-06,2022-07-31,Enterprise Canada Inc.,Syngenta Canada Inc.,Barbara Fox,"Alberta Environment and Parks, Alberta Agriculture, Forestry and Rural Economic Development",-,Agriculture,CL-11517-06,Consultant Lobbyist,"Steven McLelan, Erika Barootes",Notice of Change,Terminated,View  +2022-07-06,-,Enterprise Canada Inc.,Shoppers Drug Mart,Barbara Fox,"Executive Council, Alberta Health, Alberta Justice and Solicitor General, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,Health,CL-11266-08,Consultant Lobbyist,"Nathan Clark, Erika Barootes, Steven McLelan",Notice of Change,Archived,View  +2022-07-06,-,Enterprise Canada Inc.,North York Rehabilitation Centre Corp.,Barbara Fox,"Executive Council, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,Insurance,CL-11921-05,Consultant Lobbyist,"Erika Barootes, Steven McLelan",Notice of Change,Archived,View  +2022-07-06,-,Enterprise Canada Inc.,Labatt Brewing Company Limited,Barbara Fox,"Alberta Municipal Affairs, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Treasury Board and Finance, Premier's Office","Alberta Gaming, Liquor and Cannabis Commission","Taxes and Finance, Economic Development",CL-11644-05,Consultant Lobbyist,"Erika Barootes, Steven McLelan",Notice of Change,Archived,View  +2022-07-06,-,Enterprise Canada Inc.,Purolator Inc.,Barbara Fox,"Alberta Infrastructure, Alberta Municipal Affairs, Alberta Transportation, Premier's Office",-,Transportation,CL-12090-05,Consultant Lobbyist,"Steven McLelan, Erika Barootes",Notice of Change,Archived,View  +2022-07-05,-,Global Public Affairs,Eisai Limited (Eisai Canada),Randy Pettipas,"Executive Council, Alberta Health, Alberta Legislative Assembly",-,Health,CL-12803-01,Consultant Lobbyist,"Farid Foroud, Thanh Ngo, Glenn Monteith",Initial Return,Archived,View  +2022-07-05,2022-09-29,Global Public Affairs,The Town of Okotoks,Randy Pettipas,"Alberta Environment and Parks, Alberta Municipal Affairs, Alberta Transportation, Alberta Legislative Assembly, Premier's Office",-,Transportation,CL-12761-02,Consultant Lobbyist,"Jordan Pinkster, Melissa Carvalho, Paul Whittaker, Yonathan Sumamo",Notice of Change,Terminated,View  +2022-07-05,-,Crestview Strategy,Alberta Medical Association,Chad Rogers,"Alberta Health, Alberta Legislative Assembly",-,Health,CL-11660-13,Consultant Lobbyist,"Nour Fahmy, Frank Parker, Mira Ahmad",Notice of Change,Archived,View  +2022-07-05,-,Jangula and Company,Coalition of Canadian Independent Craft Brewers,Craig Jangula,"Alberta Jobs, Economy and Innovation, Executive Council, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Gaming, Liquor and Cannabis Commission","Taxes and Finance, Liquor, Trade, Intergovernmental Relations",CL-10652-16,Consultant Lobbyist,Craig Jangula,Notice of Change,Archived,View  +2022-07-04,-,Wellington Advocacy Inc.,PURE Canadian Gaming Corp.,Nick Koolsbergen,"Executive Council, Alberta Treasury Board and Finance, Premier's Office","Alberta Gaming, Liquor and Cannabis Commission, Invest Alberta Corporation",Gaming,CL-12501-08,Consultant Lobbyist,"Nick Koolsbergen, Peter Csillag, Matt de Jong",Notice of Change,Archived,View  +2022-07-04,2022-08-17,BCE Inc.,-,Mirko Bibic,"Alberta Jobs, Economy and Innovation, Service Alberta, Executive Council, Alberta Education, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Treasury Board and Finance, Alberta Advanced Education, Premier's Office",-,Telecommunications,OL-10203-15,Organization Lobbyist,"Dwayne Wardrop, Andrew Compton, Bill Severs, Tom Little, Dan McDonald, Andrew Parkinson, Jeremy Wubs, Gary Semplonius, Lisa McDonald, Ryan Klassen",Semi-Annual Renewal,Terminated,View  +2022-07-04,-,Canadian Bankers Association,-,Anthony Ostler,"Service Alberta, Alberta Treasury Board and Finance",-,Consumer Issues,OL-10246-21,Organization Lobbyist,"Lorraine Krugel, Andrew Lockhart, Alex Gray, Angelina Mason, Anthony Ostler, Dan Ouimet",Semi-Annual Renewal,Archived,View  +2022-07-04,-,P3 Capital Partners Inc.,NorQuest College,Doug Horner,"Alberta Infrastructure, Alberta Health, Alberta Advanced Education",Alberta Health Services,Post-secondary Education,CL-12571-03,Consultant Lobbyist,"Monica Barclay, Jeff Johnson",Notice of Change,Archived,View  +2022-07-04,-,Wellington Advocacy Inc.,The Manufacturers Life Insurance Company,Nick Koolsbergen,"Executive Council, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Treasury Board and Finance, Premier's Office",-,Insurance,CL-11468-10,Consultant Lobbyist,"Nick Koolsbergen, Trisha Rinneard, Brad Tennant, Peter Csillag, Matt de Jong",Notice of Change,Archived,View  +2022-07-04,-,Wellington Advocacy Inc.,Digital Media Association of Alberta,Nick Koolsbergen,"Alberta Labour and Immigration, Alberta Jobs, Economy and Innovation, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,Science and Technology,CL-12648-02,Consultant Lobbyist,"Peter Csillag, Brad Tennant, Matt de Jong",Notice of Change,Archived,View  +2022-07-04,-,Wellington Advocacy Inc.,Innovative Hydrogen Solutions Inc.,Nick Koolsbergen,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Indigenous Relations, Alberta Transportation, Premier's Office",Invest Alberta Corporation,Energy,CL-12638-03,Consultant Lobbyist,"Brad Tennant, Matt de Jong, Nick Koolsbergen, Peter Csillag",Notice of Change,Archived,View  +2022-07-04,2022-10-31,The Capital Hill Group,Canada's Accredited Zoos and Aquariums,David Angus,"Alberta Environment and Parks, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Justice and Solicitor General",-,Agriculture,CL-12802-01,Consultant Lobbyist,"Erin Iverson, Wes McLean",Initial Return,Terminated,View  +2022-07-02,-,New West Public Affairs,Olds College,Monte Solberg,"Executive Council, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Advanced Education, Premier's Office",-,Post-secondary Education,CL-12599-03,Consultant Lobbyist,"Sarah Painchaud, Monte Solberg, Matt Solberg, Michael Solberg, Keith McLaughlin, Gordon Olsen, Sonia Kont, Graham Gerein, Fahreen Budwhani",Notice of Change,Archived,View  +2022-06-29,-,National Police Federation / Fédération de la Police Nationale,-,Brian Sauve,"Alberta Labour and Immigration, Alberta Municipal Affairs, Alberta Justice and Solicitor General, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,"Budget, Health, Justice and Law Enforcement",OL-11952-11,Organization Lobbyist,"Brian Sauve, Sarah Nolan, Colin Buschman, Michelle Boutin, Jeff McGowan, Kevin Halwa, Ana Santarem, Kenneth Boddy, Maryanne King",Notice of Change,Archived,View  +2022-06-29,-,Investment Industry Association of Canada,-,Laura Paglia,-,Alberta Securities Commission,Banks and Other Financial Institutions,OL-10315-17,Organization Lobbyist,"Jack Rando, Adrian Walrath, Todd Evans, Laura Paglia",Notice of Change,Archived,View  +2022-06-29,-,TD Insurance,-,James V. Russell,Alberta Treasury Board and Finance,Alberta Insurance Council,Insurance,OL-10410-16,Organization Lobbyist,"Alain Camirand, You-Im Sim, Marc-Andre Busque, Francois Langevin, Tang Trang, Lynn Whitehead, Moira Gill, James V. Russell",Notice of Change,Archived,View  +2022-06-28,-,CNOOC Petroleum North America ULC,-,Yongjie Liu,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Premier's Office",-,"Energy, Trade, Environment, Economic Development",OL-10375-46,Organization Lobbyist,"Robbie Armfield, Michael MacPhee, Scott Chalker, Mike Dlugan",Notice of Change,Archived,View  +2022-06-28,-,Innovative Medicines Canada,-,Pamela Fralick,"Service Alberta, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Health, Alberta Education, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Advanced Education",Alberta Health Services,"Employment and Training, Budget, Health, Procurement, Research and Development, Intergovernmental Relations, Economic Development",OL-10310-33,Organization Lobbyist,"Pascal Chan, Michael Dietrich, Pamela E Fralick, Conrad Bellehumeur, Anne-Sophie Belzile",Notice of Change,Archived,View  +2022-06-28,-,Independent Power Producers Society of Alberta,-,Evan Bahry,"Alberta Environment and Parks, Alberta Energy",Alberta Electric System Operator,"Utilities, Environment",OL-10120-13,Organization Lobbyist,Evan Bahry,Semi-Annual Renewal,Archived,View  +2022-06-28,-,Hill+Knowlton Strategies,The Score Media and Gaming,Sheila Wisniewski,"Alberta Jobs, Economy and Innovation, Alberta Treasury Board and Finance, Premier's Office","Alberta Gaming, Liquor and Cannabis Commission",Gaming,CL-12696-02,Consultant Lobbyist,"Natalie Sigalet, Jarred Anderson",Notice of Change,Archived,View  +2022-06-27,2022-07-11,Crestview Strategy,Riipen,Chad Rogers,"Alberta Labour and Immigration, Alberta Jobs, Economy and Innovation, Alberta Advanced Education",-,Employment and Training,CL-12382-03,Consultant Lobbyist,"Taleesha Thorogood, Bill Anderson",Notice of Change,Terminated,View  +2022-06-27,-,Videotron Ltd.,-,Pierre Karl Péladeau,"Service Alberta, Alberta Jobs, Economy and Innovation",-,Telecommunications,OL-12538-02,Organization Lobbyist,"Jad Barsoum, Pierre Bonin",Semi-Annual Renewal,Archived,View  +2022-06-27,-,De Paoli & Associates Inc.,Alberta Greenhouse Growers Association,Anna De Paoli,"Alberta Environment and Parks, Alberta Labour and Immigration, Alberta Energy, Alberta Municipal Affairs, Alberta Agriculture, Forestry and Rural Economic Development",-,"Energy, Agriculture, Environment, Labour Relations",CL-10286-15,Consultant Lobbyist,Anna De Paoli,Notice of Change,Archived,View  +2022-06-27,-,NOVA Chemicals Corporation,-,Luis Sierra,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Treasury Board and Finance, Premier's Office",-,"Energy, Taxes and Finance, Environment, Economic Development",OL-10386-35,Organization Lobbyist,"Eric Brenner, Shane Lamden, Ken Sonnenberg, Linda Santry, Richard Gilmer, Sarah Marshall, Mark Hodson, Becky Horvath, Amy George, Luis Sierra, Victor Alvarado, Aly Ladha, Tony Tikuisis, Patrick Bias, Ken Faulkner, Rakesh Vermani, James Baldwin, Geoffrey Trickett, Mehdi Keshtkar, Kevin Wilke, Wendy Wright",Notice of Change,Archived,View  +2022-06-27,-,Capital Power Corporation,-,Brian Vaasjo,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Electric System Operator, Market Surveillance Administrator","Energy, Environment",OL-10236-28,Organization Lobbyist,"Grant Berry, Daniel Jurijew, Brian Vaasjo, Kate Chisholm, Ahmed Idriss, Matthew Davis",Notice of Change,Archived,View  +2022-06-27,-,Counsel Public Affairs Inc.,TELUS Corporation,Philip Dewan,Alberta Legislative Assembly,-,"Health, Agriculture, Procurement, Economic Development",CL-12769-01,Consultant Lobbyist,"Jean-Marc Prevost, T.J. Keil, Bradley Lavigne",Initial Return,Archived,View  +2022-06-23,-,Wellington Advocacy Inc.,Orange Acres Development Ltd.,Nick Koolsbergen,"Alberta Jobs, Economy and Innovation, Alberta Legislative Assembly",Invest Alberta Corporation,Economic Development,CL-12783-01,Consultant Lobbyist,"Brad Tennant, Matt de Jong, Peter Csillag",Initial Return,Archived,View  +2022-06-23,-,Wellington Advocacy Inc.,Risio Institute for Digital Dental Education Inc,Nick Koolsbergen,"Alberta Labour and Immigration, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Health, Alberta Legislative Assembly, Alberta Advanced Education, Premier's Office",-,Employment and Training,CL-12791-01,Consultant Lobbyist,"Matt de Jong, Peter Csillag, Brad Tennant",Initial Return,Archived,View  +2022-06-22,-,Global Public Affairs,Hologic Canada ULC,Randy Pettipas,"Alberta Culture and Status of Women, Alberta Health",Alberta Health Services,Health,CL-12504-04,Consultant Lobbyist,"Melissa Carvalho, Farid Foroud, Candice Laws",Notice of Change,Archived,View  +2022-06-22,-,Global Public Affairs,"Amazon.com, Inc.",Randy Pettipas,"Alberta Labour and Immigration, Alberta Jobs, Economy and Innovation, Executive Council, Service Alberta, Alberta Municipal Affairs, Alberta Health, Alberta Legislative Assembly, Alberta Transportation, Premier's Office, Alberta Advanced Education","Alberta Health Services, Alberta Innovates","Health, Procurement, Economic Development",CL-11085-16,Consultant Lobbyist,"Thanh Ngo, Jordan Pinkster, Farid Foroud, Candice Laws, Yonathan Sumamo, Paul Whittaker",Notice of Change,Archived,View  +2022-06-22,-,"Letko, Brosseau & Associates Inc.",-,Daniel Brosseau,"Alberta Labour and Immigration, Alberta Infrastructure, Alberta Children’s Services, Alberta Energy, Service Alberta, Alberta Community and Social Services, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Culture and Status of Women, Alberta Health, Alberta Justice and Solicitor General, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Alberta Advanced Education, Premier's Office, Alberta Seniors and Housing",-,"Employment and Training, Banks and Other Financial Institutions, Research and Development, Pensions, Economic Development",OL-12790-01,Organization Lobbyist,"Peter Letko, David Després, Daniel Brosseau",Initial Return,Archived,View  +2022-06-21,2022-06-24,Peter Barnes,CloudMD,Peter Barnes,Alberta Justice and Solicitor General,-,Corrections,CL-12782-01,Consultant Lobbyist,Peter Barnes,Initial Return,Terminated,View  +2022-06-21,-,New West Public Affairs,Kiwetinohk Energy,Monte Solberg,"Alberta Environment and Parks, Alberta Energy, Alberta Indigenous Relations, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Utilities Commission, Alberta Energy Regulator",Energy,CL-12789-01,Consultant Lobbyist,"Monte Solberg, Matt Solberg, Keith McLaughlin, Gordon Olsen, Fahreen Budhwani, Sarah Painchaud, Graham Gerein, Michael Solberg, Sonia Kont",Initial Return,Archived,View  +2022-06-20,-,Pfizer Canada ULC,-,Najah Sampson,"Alberta Jobs, Economy and Innovation, Alberta Health",-,Health,OL-10336-14,Organization Lobbyist,"Kevin Mohamed, Fabienne Pacquette, Daria Horbay, Bob Dawson, Karine Grand'Maison, Najah Sampson",Notice of Change,Archived,View  +2022-06-20,-,Counsel Public Affairs Inc.,Tourmaline Oil Corp.,Philip Dewan,"Alberta Energy, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Executive Council, Premier's Office",Alberta Energy Regulator,"Energy, Environment, Municipal Affairs",CL-12055-17,Consultant Lobbyist,"Brad Lavigne, Amber Ruddy, T.J. Keil",Notice of Change,Archived,View  +2022-06-20,-,Enterprise Canada Inc.,Edmonton Community Development Company,Barbara Fox,"Alberta Infrastructure, Alberta Community and Social Services, Alberta Indigenous Relations, Alberta Culture and Status of Women, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education, Alberta Seniors and Housing",-,Arts and Culture,CL-12788-01,Consultant Lobbyist,"Erika Barootes, Steven McLelan",Initial Return,Archived,View  +2022-06-20,-,Crestview Strategy,SMART Cash Canada Holdings ULC,Chad Rogers,"Service Alberta, Executive Council, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,Consumer Issues,CL-12778-01,Consultant Lobbyist,"Bill Anderson, Supreena Sekhon",Initial Return,Archived,View  +2022-06-17,-,Montem Resources Alberta Operations Ltd.,-,Peter Doyle,"Alberta Environment and Parks, Alberta Energy, Alberta Indigenous Relations, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Legislative Assembly, Premier's Office",Alberta Energy Regulator,Energy,OL-11643-05,Organization Lobbyist,"Peter Doyle, Karlie Stella, Robert Bell, Will Bridge",Semi-Annual Renewal,Archived,View  +2022-06-17,-,New West Public Affairs,NOTARIUS Inc.,Monte Solberg,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Energy, Service Alberta, Executive Council, Alberta Municipal Affairs, Alberta Indigenous Relations, Alberta Jobs, Economy and Innovation, Alberta Health, Alberta Justice and Solicitor General, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Culture and Status of Women, Alberta Transportation, Alberta Legislative Assembly, Premier's Office",-,Science and Technology,CL-12394-03,Consultant Lobbyist,"Monte Solberg, Matt Solberg, Keith McLaughlin, Sarah Painchaud, Tristan Bray, Michael Solberg, Sonia Kont, Gordon Olsen, Graham Gerein",Notice of Change,Archived,View  +2022-06-17,-,New West Public Affairs,McKesson Canada,Monte Solberg,Alberta Health,Alberta Health Services,Health,CL-12391-02,Consultant Lobbyist,"Matt Solberg, Michael Solberg, Keith McLaughlin, Monte Solberg, Sonia Kont, Tristan Bray, Gordon Olsen, Sarah Painchaud",Notice of Change,Archived,View  +2022-06-17,-,New West Public Affairs,Shaw Communications Inc.,Monte Solberg,"Alberta Infrastructure, Alberta Energy, Alberta Jobs, Economy and Innovation, Service Alberta, Executive Council, Alberta Indigenous Relations, Alberta Municipal Affairs, Alberta Health, Alberta Justice and Solicitor General, Alberta Education, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education",-,"Budget, Consumer Issues, Science and Technology, Intergovernmental Relations, Infrastructure, Economic Development, Telecommunications",CL-11845-03,Consultant Lobbyist,"Sarah Painchaud, Sonia Kont, Michael Solberg, Matt Solberg, Keith McLaughlin, Tristan Bray, Monte Solberg",Notice of Change,Archived,View  +2022-06-17,-,Medicine Hat & District Chamber of Commerce,-,Lisa Kowalchuk,"Alberta Labour and Immigration, Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Service Alberta, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Education, Alberta Health, Alberta Transportation, Alberta Treasury Board and Finance, Alberta Advanced Education, Premier's Office, Alberta Seniors and Housing",-,"Budget, Energy, Taxes and Finance, Climate, Health, Agriculture, Tourism, Consumer Issues, Post-secondary Education, Social programs, Municipal Affairs, Intergovernmental Relations, Economic Development, K-12 Education, Transportation, Labour Relations, Disaster Services and Emergency Relief, Housing",OL-10836-13,Organization Lobbyist,"Lisa Kowalchuk, Keean Lehtinen",Semi-Annual Renewal,Archived,View  +2022-06-17,-,New West Public Affairs,AXON,Monte Solberg,Alberta Justice and Solicitor General,-,Justice and Law Enforcement,CL-12393-03,Consultant Lobbyist,"Gordon Olsen, Matt Solberg, Monte Solberg, Sonia Kont, Tristan Bray, Sarah Painchaud, Keith McLaughlin",Notice of Change,Archived,View  +2022-06-16,-,Canadian Consumer Specialty Products Association (CCSPA),-,Shannon Coombs,"Alberta Labour and Immigration, Alberta Environment and Parks, Executive Council, Alberta Health, Alberta Treasury Board and Finance, Premier's Office",-,"Employment and Training, Health, Environment",OL-10230-15,Organization Lobbyist,"Shannon Coombs, Stephanie Golden, Simon Kinsman",Semi-Annual Renewal,Archived,View  +2022-06-16,-,Wellington Advocacy Inc.,SHAD Canada,Nick Koolsbergen,Alberta Education,-,K-12 Education,CL-11466-09,Consultant Lobbyist,"Brad Tennant, Trisha Rinneard, Nick Koolsbergen, Matt de Jong, Peter Csillag",Notice of Change,Archived,View  +2022-06-16,-,Wellington Advocacy Inc.,Heartland Generation Ltd.,Nick Koolsbergen,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Treasury Board and Finance, Premier's Office",Invest Alberta Corporation,Energy,CL-12766-02,Consultant Lobbyist,"Brad Tennant, Peter Csillag, Matt de Jong, Nick Koolsbergen",Notice of Change,Archived,View  +2022-06-15,-,ConocoPhillips Canada Resources Corp.,-,Bijan Agarwal,"Alberta Environment and Parks, Alberta Energy, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Alberta Treasury Board and Finance, Premier's Office","Alberta Petroleum Marketing Commission, Alberta Energy Regulator","Energy, Climate, Environment, Municipal Affairs",OL-10099-31,Organization Lobbyist,"Jodi Prior, Cary Allan, Jeff Gow, Fred Walter, Robert Albricht, Kim Iverson, Peter Koning, Rickie-Lee Doyle, Chris Malkin, Charlotte Plombin, Bijan Agarwal, Gunnar Johnsen, Devin O'Neal, James Makowecki, Eamon Marron, Tyler Blasetti",Notice of Change,Archived,View  +2022-06-15,-,Canadian Association of Petroleum Producers,-,Lisa Baiton,"Alberta Labour and Immigration, Alberta Environment and Parks, , Alberta Energy, Alberta Municipal Affairs, Alberta Indigenous Relations, Executive Council, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Justice and Solicitor General, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office","Alberta Innovates, Workers’ Compensation Board, Alberta Energy Regulator","Energy, Climate, Health, Royalties, Taxes and Finance, Land Use, Justice and Law Enforcement, Environment, Municipal Affairs, Indigenous Relations, Transportation, Economic Development, Wildlife, Labour Relations",OL-10227-55,Organization Lobbyist,"Rob Kopecky, Fauziah Rochman, J.C. Vito, Lisa Baiton, Tricia Donnelly, Paul Hartzheim, Stephen Bresee, Shafak Sajid, David Hume, Andria Panidisz, Tara Payment, Cole Schulz, Shannon Joseph, Don McCrimmon, Markus Ermisch, Amberly Dooley, Claudette Fedoruk, Bryan Remillard, Giles Ody, Brad Herald, Richard Wong, Patrick McDonald, Krista Phillips, Aaron Miller, Jonathan Stringham, Jay Averill, Greig Sproule",Semi-Annual Renewal,Archived,View  +2022-06-15,2022-07-18,Oil Sands Community Alliance,-,Lisa Baiton,"Alberta Environment and Parks, Alberta Labour and Immigration, Alberta Infrastructure, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Executive Council, Alberta Health, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance",-,"Health, Municipal Affairs, Economic Development, Transportation, Infrastructure, Labour Relations",OL-10402-17,Organization Lobbyist,Shafak Sajid,Notice of Change,Terminated,View  +2022-06-15,-,ENMAX Corporation,-,Charles Ruigrok,"Alberta Energy, Executive Council, Service Alberta, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Utilities Commission, Alberta Innovates, Balancing Pool, Alberta Electric System Operator, Invest Alberta Corporation, Market Surveillance Administrator","Energy, Consumer Issues, Environment",OL-10279-61,Organization Lobbyist,"Janene Taylor, Greg Retzer, Sheizana Murji, Rose Ferrer, Tracy Coutts, Shiv Kumar, Bruce Borwick, Jana Mosley, Terri-Lynn Duque, Sarah Stevens, Timothy Boston, Chris Joy, Chris McCleave, Mark McGillivray, Randall Stubbings, Erica Young, Andrew Barrett, Charles Ruigrok",Notice of Change,Archived,View  +2022-06-15,-,Canadian Association of Energy Contractors,-,Mark Scholz,"Alberta Environment and Parks, , Alberta Labour and Immigration, Alberta Energy, Service Alberta, Alberta Jobs, Economy and Innovation, Alberta Transportation, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Workers’ Compensation Board, Alberta Energy Regulator","Energy, Taxes and Finance, Environment, Trade, Intergovernmental Relations, Transportation, Workplace Safety",OL-10259-22,Organization Lobbyist,"Russell Nibogie, Mark Scholz",Notice of Change,Archived,View  +2022-06-14,-,NOVA Chemicals Corporation,-,Luis Sierra,"Alberta Environment and Parks, Alberta Energy, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Treasury Board and Finance, Premier's Office",-,"Energy, Taxes and Finance, Environment, Economic Development",OL-10386-34,Organization Lobbyist,"Kevin Wilke, Mehdi Keshtkar, Geoffrey Trickett, James Baldwin, Rakesh Vermani, Ken Faulkner, Patrick Bias, Tony Tikuisis, Aly Ladha, Victor Alvarado, Luis Sierra, Amy George, Becky Horvath, Mark Hodson, Sarah Marshall, Richard Gilmer, Linda Santry, Ken Sonnenberg, Shane Lamden, Eric Brenner",Notice of Change,Archived,View  +2022-06-14,-,Tourmaline Oil Corp.,-,Mike Rose,"Alberta Environment and Parks, Alberta Energy, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Treasury Board and Finance, Premier's Office",Alberta Energy Regulator,"Energy, Environment, Municipal Affairs",OL-12144-13,Organization Lobbyist,"Scott Kirker, Sherra Aspin, Colin Frostad, Allan Bush, Scott Volk, Leah Turner, Mike Rose",Notice of Change,Archived,View  +2022-06-14,-,Alberta Counsel,Westerkirk Capital Inc.,Jonathon Wescott,"Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Legislative Assembly, Alberta Transportation, Premier's Office",-,Economic Development,CL-12330-04,Consultant Lobbyist,"Jonathon Wescott, James Johnson, Zack Ziolkowski, Justin Gotfried, Aaron Singleton, Shayne Saskiw, Pascal Ryffel, Alexandra Carlile, Sydney McHale, Aileen Burke, Al Kemmere, Allyssa Rygersberg, Votham Anastasiadis",Notice of Change,Archived,View  +2022-06-14,-,CNOOC Petroleum North America ULC,-,Yongjie Liu,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Premier's Office",-,"Energy, Trade, Environment, Economic Development",OL-10375-45,Organization Lobbyist,"Mike Dlugan, Scott Chalker, Michael MacPhee, Robbie Armfield",Notice of Change,Archived,View  +2022-06-14,-,Alberta Counsel,Wood's Homes,Jonathon Wescott,"Alberta Infrastructure, Alberta Children’s Services, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Seniors and Housing, Premier's Office",-,"Children’s Services, Housing",CL-12282-05,Consultant Lobbyist,"Alexandra Carlile, James Johnson, Justin Gotfried, Pascal Ryffel, Aaron Singleton, Zack Ziolkowski, Shayne Saskiw, Jonathon Wescott, Votham Anastasiadis, Aileen Burke, Sydney McHale, Allyssa Rygersberg",Notice of Change,Archived,View  +2022-06-14,-,3M Canada,-,Penny Wise,"Service Alberta, Alberta Health, Alberta Transportation",Alberta Health Services,"Health, Procurement, Transportation",OL-10115-24,Organization Lobbyist,"Jeff Spurrell, Lindsey Cowan, Tye Lougheed, Andrew Bowles, Nelson da Silva",Semi-Annual Renewal,Archived,View  +2022-06-14,-,Canadian Life and Health Insurance Association Inc.,-,Stephen Frank,"Alberta Jobs, Economy and Innovation, Alberta Health, Alberta Treasury Board and Finance, Premier's Office",-,"Insurance, Health",OL-10030-23,Organization Lobbyist,"Jennifer Omstead, Lyne Duhaime, Michelle Helie, Brent Mizzen, Kim Doran, Noeline Simon, Stephen Frank, Susan Murray, Justin Glinski, Joan Weir, Harpreet Roopra, Sarah Hobbs, Kate Walker, Giulia Ahmadi, Sheila Burns",Semi-Annual Renewal,Archived,View  +2022-06-14,-,Alberta Counsel,City of Wetaskiwin,Jonathon Wescott,"Alberta Infrastructure, Alberta Children’s Services, Alberta Municipal Affairs, Alberta Community and Social Services, Alberta Indigenous Relations, Alberta Justice and Solicitor General, Alberta Health, Alberta Culture and Status of Women, Premier's Office, Alberta Seniors and Housing",-,"Justice and Law Enforcement, Infrastructure, Housing",CL-11946-09,Consultant Lobbyist,"Pascal Ryffel, Sydney McHale, Allyssa Rygersberg, Votham Anastasiadis, Aileen Burke, Alexandra Carlile, Justin Gotfried, Aaron Singleton, Zack Ziolkowski, James Johnson, Shayne Saskiw, Jonathon Wescott",Notice of Change,Archived,View  +2022-06-14,-,ConocoPhillips Canada Resources Corp.,-,Bijan Agarwal,"Alberta Environment and Parks, Alberta Energy, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Alberta Treasury Board and Finance, Premier's Office","Alberta Petroleum Marketing Commission, Alberta Energy Regulator","Energy, Climate, Environment, Municipal Affairs",OL-10099-30,Organization Lobbyist,"Jodi Prior, Cary Allan, Jeff Gow, Fred Walter, Robert Albricht, Kim Iverson, Peter Koning, Rickie-Lee Doyle, Chris Malkin, Charlotte Plombin, Bijan Agarwal, Gunnar Johnsen, Devin O'Neal, James Makowecki, Eamon Marron, Tyler Blasetti",Semi-Annual Renewal,Archived,View  +2022-06-14,2022-08-17,CSG Canadian Strategy Group Inc.,The Calgary Airport Authority,Hal Danchilla,"Alberta Infrastructure, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office",-,"Taxes and Finance, Tourism, Economic Development, Transportation",CL-11932-08,Consultant Lobbyist,"Hal Danchilla, Michael Lohner, Brent Kossey, Mathew Preston",Notice of Change,Terminated,View  +2022-06-14,-,Alberta Counsel,Mountain Ash Limited Partnership,Jonathon Wescott,Alberta Environment and Parks,-,Economic Development,CL-12378-04,Consultant Lobbyist,"Jonathon Wescott, Shayne Saskiw, Zack Ziolkowski, Justin Gotfried, Alexandra Carlile, Pascal Ryffel, James Johnson, Votham Anastasiadis, Aileen Burke, Sydney McHale, Allyssa Rygersberg, Aaron Singleton",Notice of Change,Archived,View  +2022-06-14,-,Chevron Canada Limited,-,Chris Mazerolle,"Alberta Environment and Parks, Alberta Energy, Premier's Office",Alberta Energy Regulator,"Energy, Climate, Environment",OL-10005-28,Organization Lobbyist,"Beverley Keyes, Emily Curthoys, Douglas Connon, Jennifer Wyatt, Matthew Stevens, Sherry Sian, Deidre Reid, Balaji Krishnamurthy",Notice of Change,Archived,View  +2022-06-14,-,Imperial Oil Ltd.,-,Brad Corson,"Alberta Environment and Parks, Alberta Labour and Immigration, , Alberta Energy, Executive Council, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Alberta Indigenous Relations, Alberta Health, Alberta Legislative Assembly, Premier's Office",Alberta Energy Regulator,"Health, Climate, Energy, Environment, Municipal Affairs, Indigenous Relations, Wildlife, Labour Relations",OL-10352-31,Organization Lobbyist,"Reagen Stoddart, Sean Mercer, Rita Karrel, Caryn Liberman, Brad Porter, Christa Seaman, Daniel P. Dubois, Jeff Wilson, Heather Burkett, Jon Wetmore, Amanda Schiaroli, Rosa Fiorentino, Paul Cavanagh, Carolyn Tester, Keith Tanner, Helga Shield, Karl Pierzchajlo, Andre Perrone, Alicja Pawlak, Peter Noble, Lori Neufeld, Alison Miller, James Guthrie, Myles Fox, Kim Fox, James Dunn, Sherry Becker, Tyler Colberg, Susan Nakagawa, Leanne Young, Keri Abel, Melissa Wade, Karine Belanger, Terry Matthews, Stuart Lunn, James Kusie, Kevin Burke-Gaffney, Jaffar Naqi, Anita Remartinez, Andrew Yates, Dean Bruce, Jennifer Haverhals, Brad Corson, Jessica Pickel, Simon Younger, Ayan Chakraborty, Ryan Levins, Jaclyn Mersereau, Doug Wilkins, Sherri Evers",Notice of Change,Archived,View  +2022-06-14,-,Alberta Counsel,Alberta Union of Nurse Practitioners,Jonathon Wescott,"Alberta Labour and Immigration, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,Health,CL-12779-01,Consultant Lobbyist,"Jonathon Wescott, Shayne Saskiw, Aileen Burke, Votham Anastasiadis, Sydney McHale, Pascal Ryffel, James Johnson, Zack Ziolkowski, Aaron Singleton, Allyssa Rygersberg, Alexandra Carlile",Initial Return,Archived,View  +2022-06-13,-,Cenovus Energy Inc.,-,Alex Pourbaix,"Alberta Environment and Parks, Alberta Labour and Immigration, Alberta Infrastructure, Alberta Energy, Alberta Indigenous Relations, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Municipal Affairs, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Justice and Solicitor General, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education","Alberta Petroleum Marketing Commission, Alberta Utilities Commission, Alberta Energy Regulator, Alberta Electric System Operator","Taxes and Finance, Energy, Environment, Indigenous Relations, Municipal Affairs, Workplace Safety, Infrastructure",OL-10248-25,Organization Lobbyist,"Alex Pourbaix, Jessica Player, Jeff Nail, Sharla Howard, Devin Iversen, Owen Henshaw, Alisha Bhura, Sam Murphy, Norrie Ramsay, Jeff Jeworski, Andrew Straile, Trent Zacharias, Kendall Dilling, Drew Zieglgansberger, Lindsay Reynolds, Grant Pellegrin, Michael Cody, Ted Johnson, Jamie Agnew, Greg Cave, Jared Robertson, Kam Sandhar, Michael Wilson, Jillian Falls, Brooke Lindsey, Geoff Murray, Gary Molnar, Sean Hiebert, Michael Penner, Eric Wakley, Michele Waters, Sherry Wendt, Brett Wiens, Troy Peterson, Jennifer Shalagan, Shannon McDougall, Anamika Mukherjee, Travis Davies, Ray Lambert, Rhona DelFrari, Susan Grey, Suzanne Smith, Mike Plettel, Charles Gobin, Darwin Bateyko, Shane Cooke, Shelley Machon, Keith Chiasson, Amos Ben-Zvi, Patrick McKay, Prince Azom, Chris Moody, Claire Hong, Tony Jackson, Scott Hillier, Jim Lytle, Tyler Tarnoczi, Jon McKenzie, Morgan Wrishko, Andrea Louise-Martyn",Notice of Change,Archived,View  +2022-06-13,-,Abbott Laboratories Co.,-,Philippe Busque,"Executive Council, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",Alberta Health Services,Health,OL-12740-02,Organization Lobbyist,"Patricia Jill Kravinchuk, Denis Lapierre",Notice of Change,Archived,View  +2022-06-13,-,"Notarius, a Portage Cybertech Company",-,Patrick Drolet,Alberta Transportation,-,Transportation,OL-12483-03,Organization Lobbyist,"Mélanie Carrière, Charles Tremblay, Marc St-Jacques",Semi-Annual Renewal,Archived,View  +2022-06-13,-,Ovintiv Canada ULC,-,Brendan McCracken,"Alberta Environment and Parks, Alberta Energy, Alberta Indigenous Relations, Alberta Municipal Affairs, Alberta Treasury Board and Finance, Premier's Office","Alberta Innovates, Alberta Energy Regulator","Climate, Taxes and Finance, Energy, Environment, Indigenous Relations, Municipal Affairs, Wildlife, Economic Development",OL-10288-44,Organization Lobbyist,"Paul Giesbrecht, Kellen Foreman, Parmjeet Virdee, Brendan MacCracken, David Lye, Marawan ElSayed, Daniel Dunlop, Jennifer Blaney, Jason Blanch",Notice of Change,Archived,View  +2022-06-13,-,Insurance Bureau of Canada,-,Don Forgeron,"Alberta Environment and Parks, Alberta Infrastructure, Service Alberta, Alberta Municipal Affairs, Alberta Justice and Solicitor General, Alberta Transportation, Alberta Treasury Board and Finance",-,"Insurance, Justice and Law Enforcement, Environment, Infrastructure, Transportation, Disaster Services and Emergency Relief",OL-10114-25,Organization Lobbyist,"Hanna Beydoun, Aaron Sutherland, Chris Rol, Vivii Riis, Tim Morrison, Don Forgeron, Rob De Pruis, Craig Stewart, Celyeste Power, Trevor Foster",Semi-Annual Renewal,Archived,View  +2022-06-13,-,Futurpreneur Canada,-,Karen GreveYoung,"Alberta Jobs, Economy and Innovation",-,Economic Development,OL-11973-09,Organization Lobbyist,"Karen Greve Young, Scott Bowman, Megane Visette, Micah Anshan, Janis Nixon",Notice of Change,Archived,View  +2022-06-10,2022-08-17,CSG Canadian Strategy Group Inc.,Eli Lilly Canada Inc.,Hal Danchilla,Alberta Health,Alberta Health Services,Health,CL-11234-08,Consultant Lobbyist,"Michael Lohner, Brent Kossey, Hal Danchilla, Mathew Preston",Notice of Change,Terminated,View  +2022-06-10,-,Counsel Public Affairs Inc.,OPENCIRCLE MEMBERSHIP SERVICES AND WORKFORCE DEVELOPMENT ASSOCIATION,Philip Dewan,"Alberta Labour and Immigration, Alberta Infrastructure, Alberta Municipal Affairs, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Culture and Status of Women, Alberta Health, Alberta Education, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education",-,"Budget, Employment and Training, Health, Trades and Occupations",CL-11340-18,Consultant Lobbyist,T.J. Keil,Notice of Change,Archived,View  +2022-06-10,2022-11-22,CSG Canadian Strategy Group Inc.,HumanisRx,Hal Danchilla,"Executive Council, Alberta Health, Alberta Treasury Board and Finance, Premier's Office",Alberta Health Services,Health,CL-12470-03,Consultant Lobbyist,"Hal Danchilla, Michael Lohner, Brent Kossey, Mathew Preston",Notice of Change,Terminated,View  +2022-06-10,-,Microsoft Canada Inc.,-,Chris Barry,"Service Alberta, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Legislative Assembly, Premier's Office, Alberta Advanced Education","Alberta Health Services, Alberta Innovates, Alberta Energy Regulator","Employment and Training, Procurement, Economic Development",OL-10049-23,Organization Lobbyist,"Craig Timm, Nadine Letson, Samantha Tinline, Jonathan Clarke, Stewart Wilson, Pranav Sampat, Lanny Cofman, Lisa Carroll, Roxane Swirsky, John Weigelt, Cory Freed, Mark Scott, Warren Dyck, Craig Gibson, Susan Saccucci, John Hewie, Courtney Remekie, Christian Gosselin, Stephanie Chicoine, Hana Doubrava, Alex Chan, Nicolas Nabokov, River Kong, Craig Kacso, Johanne Young",Semi-Annual Renewal,Archived,View  +2022-06-10,2022-10-28,CSG Canadian Strategy Group Inc.,Environmental Metal Works Ltd,Hal Danchilla,"Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,"Employment and Training, Taxes and Finance, Environment, Economic Development",CL-12546-02,Consultant Lobbyist,"Hal Danchilla, Brent Kossey, Mathew Preston",Notice of Change,Terminated,View  +2022-06-09,-,Capital Power Corporation,-,Brian Vaasjo,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Electric System Operator, Market Surveillance Administrator","Energy, Environment",OL-10236-27,Organization Lobbyist,"Grant Berry, Daniel Jurijew, Brian Vaasjo, Kate Chisholm, Ahmed Idriss, Matthew Davis",Notice of Change,Archived,View  +2022-06-09,-,OpenCircle Membership Services and Workforce Development Association,-,Line Porfon,"Alberta Labour and Immigration, Alberta Infrastructure, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Municipal Affairs, Alberta Culture and Status of Women, Alberta Education, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education","Alberta Apprenticeship and Industry Training Board, Workers’ Compensation Board","Employment and Training, Budget, Health, Trade, Post-secondary Education, Trades and Occupations, K-12 Education, Labour Relations",OL-10409-26,Organization Lobbyist,"Glenna Laing, Malcolm D. Kirkland, Brian Lacey, Alan Kuysters, Line Porfon, Elizabeth Hammell",Notice of Change,Archived,View  +2022-06-08,-,Alberta's Industrial Heartland Association,-,Mark Plamondon,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Energy, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Alberta Indigenous Relations, Alberta Legislative Assembly, Alberta Transportation, Premier's Office","Alberta Innovates, Invest Alberta Corporation, Alberta Indigenous Opportunities Corporation","Energy, Environment, Science and Technology, Indigenous Relations, Economic Development, Transportation",OL-10964-09,Organization Lobbyist,"David MacLean, David Howe, Kendra Dawe, Chris Malayney, Mark Plamondon, Christina Kehrig",Semi-Annual Renewal,Archived,View  +2022-06-08,-,Alberta Counsel,Alberta Bottle Depot Association,Jonathon Wescott,"Alberta Environment and Parks, Alberta Municipal Affairs, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Gaming, Liquor and Cannabis Commission","Environment, Cannabis",CL-11278-09,Consultant Lobbyist,"James Johnson, Justin Gotfried, Alexandra Carlile, Aaron Singleton, Zack Ziolkowski, Pascal Ryffel, Jon Wescott, Shayne Saskiw, Aileen Burke, Allyssa Rygersberg, Votham Anastasiadis, Sydney McHale",Notice of Change,Archived,View  +2022-06-08,-,Alberta Counsel,Edmonton Destination Marketing Hotels Ltd.,Jonathon Wescott,"Alberta Labour and Immigration, Alberta Municipal Affairs, Alberta Culture and Status of Women, Alberta Health, Alberta Legislative Assembly, Premier's Office, Alberta Seniors and Housing",Alberta Health Services,"Health, Tourism, Labour Relations",CL-10995-13,Consultant Lobbyist,"Sydney McHale, Alexandra Carlile, Justin Gotfried, James Johnson, Shayne Saskiw, Jonathon Wescott, Pascal Ryffel, Zack Ziolkowski, Aaron Singleton, Aileen Burke, Allyssa Rygersberg, Votham Anastasiadis",Notice of Change,Archived,View  +2022-06-08,-,Alberta Counsel,Motor Dealers' Association of Alberta,Jonathon Wescott,"Service Alberta, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office",Alberta Motor Vehicle Industry Council,Economic Development,CL-12146-06,Consultant Lobbyist,"Aileen Burke, Justin Gotfried, Zack Ziolkowski, Jonathon Wescott, James Johnson, Shayne Saskiw, Alexandra Carlile, Sydney McHale, Aaron Singleton",Notice of Change,Archived,View  +2022-06-08,-,Alberta Counsel,Edmonton Minor Soccer Association,Jonathon Wescott,"Alberta Infrastructure, Alberta Community and Social Services, Alberta Culture and Status of Women, Alberta Legislative Assembly, Premier's Office",-,Recreation,CL-11205-06,Consultant Lobbyist,"James Johnson, Aileen Burke, Justin Gotfried, Sydney McHale, Allyssa Rygersberg, Alexandra Carlile, Aaron Singleton, Jonathon Wescott, Pascal Ryffel, Shayne Saskiw, Zack Ziolkowski, Votham Anastasiadis",Notice of Change,Archived,View  +2022-06-08,-,Suncor Energy Inc,-,Kris Smith,"Alberta Environment and Parks, Alberta Labour and Immigration, Alberta Energy, Executive Council, Alberta Indigenous Relations, Alberta Municipal Affairs, Alberta Health, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office","Alberta Health Services, Alberta Innovates, Alberta Energy Regulator, Alberta Indigenous Opportunities Corporation","Budget, Insurance, Energy, Climate, Health, Environment, Indigenous Relations, Municipal Affairs, Transportation",OL-10421-21,Organization Lobbyist,"Shamini Samuel, Rahul Jain, Darryl Downey, Jody Hood, Jon Hornung, Jennifer Young, Gary Bunio, Sydney Zacharias, Emmanuelle Plante, Jason Heisler, Martha Hall Findlay, Jacquie Moore, Rekha Nambiar, Alister Cowan, Horst Klinkenborg, Mark Prystupa, Kris Smith, Scott Wenger, Brenda Leeds Binder, Blair Penner, Rodney Guest, Janice Linehan, Arlene Strom, Mark Little, Jon Mitchell, Mark Boulton, Derek Davies, Tricia Hyman, Ken Bisgrove, David Isaac, Todd Pugsley, Carolanne Debiasio, Tom Gear, Helga Cormier, Farzhana Shah, Michael Robinson, Bradly Wamboldt, Mario Ochoa, Dennis Banks, Troy Stangl, Peter Zebedee, Joe Vetrone, Paul Kahnna, Greg Hundseth",Notice of Change,Archived,View  +2022-06-08,-,Alberta Graduate Provincial Advocacy Council,-,Brandon Simmons,"Alberta Labour and Immigration, Executive Council, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Advanced Education, Premier's Office",Alberta Innovates,Post-secondary Education,OL-11472-06,Organization Lobbyist,Brandon Simmons,Semi-Annual Renewal,Archived,View  +2022-06-08,-,PETRONAS Energy Canada Limited,-,Izwan Ismail,"Alberta Energy, Executive Council, Alberta Jobs, Economy and Innovation, Premier's Office",Invest Alberta Corporation,Energy,OL-11175-07,Organization Lobbyist,"Shannon Young, Dima Lazarova",Semi-Annual Renewal,Archived,View  +2022-06-08,-,West Fraser Timber Co. Ltd.,-,Ray Ferris,"Alberta Environment and Parks, Alberta Energy, Alberta Indigenous Relations, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Alberta Treasury Board and Finance",Alberta Electric System Operator,"Budget, Energy, Forestry, Land Use, Environment, Parks, Indigenous Relations, Wildlife",OL-10479-23,Organization Lobbyist,"D'Arcy Henderson, Shannon Fehr, James W. Gorman, Richard Briand, Raymond W. Ferris, Vince Martell",Notice of Change,Archived,View  +2022-06-08,-,The Explorers and Producers Association of Canada,-,Tristan Goodman,"Alberta Environment and Parks, Alberta Energy, Alberta Indigenous Relations, Alberta Municipal Affairs",Alberta Energy Regulator,"Energy, Environment, Indigenous Relations, Municipal Affairs",OL-10468-13,Organization Lobbyist,"Michael Fulsom, Cassandra Shultz, Gordon Tait, Tristan Goodman, Chris Montgomery",Notice of Change,Archived,View  +2022-06-08,-,Alberta Counsel,Municipal District of Opportunity,Jonathon Wescott,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Energy, Alberta Municipal Affairs, Alberta Indigenous Relations, Alberta Jobs, Economy and Innovation, Alberta Justice and Solicitor General, Alberta Culture and Status of Women, Alberta Health, Alberta Education, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office, Alberta Seniors and Housing",Alberta Health Services,"Taxes and Finance, Health, Municipal Affairs, Transportation, Economic Development, Infrastructure",CL-11066-15,Consultant Lobbyist,"Aaron Singleton, Allyssa Rygersberg, Alexandra Carlile, Justin Gotfried, Shayne Saskiw, Pascal Ryffel, Zack Ziolkowski, Jon Wescott, Leo Piquette, Votham Anastasiadis, James Johnson, Aileen Burke, Sydney McHale",Notice of Change,Archived,View  +2022-06-07,-,Crestview Strategy,Songbird Life Science,Chad Rogers,"Alberta Children’s Services, Alberta Energy, Alberta Community and Social Services, Alberta Indigenous Relations, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Executive Council, Alberta Health, Alberta Education, Alberta Justice and Solicitor General, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Seniors and Housing, Premier's Office","Alberta Health Services, Alberta Innovates, Invest Alberta Corporation",Health,CL-12746-02,Consultant Lobbyist,Taleesha Thorogood,Notice of Change,Archived,View  +2022-06-07,-,Janssen Inc.,-,Alaine Grand,"Alberta Jobs, Economy and Innovation, Alberta Health",Alberta Health Services,Health,OL-10328-19,Organization Lobbyist,"Alaine Grand, Keith Gilchrist, Derek Badger, Jorge Bartolome, Ina Sungaila",Notice of Change,Archived,View  +2022-06-07,-,Enbridge Inc.,-,Al Monaco,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Municipal Affairs, Alberta Indigenous Relations, Alberta Health, Alberta Treasury Board and Finance, Premier's Office","Alberta Petroleum Marketing Commission, Alberta Health Services, Alberta Innovates, Alberta Energy Regulator, Invest Alberta Corporation, Alberta Indigenous Opportunities Corporation","Energy, Environment, Municipal Affairs, Indigenous Relations, Wildlife",OL-10294-28,Organization Lobbyist,"Geoff Holmlund, Leo Golden, Colin Gruending, Nadine Barber, Phillip Anderson, Adam Chalkley, Mike Fernandez, Tom Palak, Byron Neiles, Brittany Kelly, Amanda Affonso, Bob Rooney, Al Monaco, Vern Yu, Mike Gladstone, Matt Grant, Laszlo Varsanyi, Marlon Samuel, Brian Johnson, Trevor McLeod, Jason Kearns, Emily Black, Graham Shanks, Matthew Akman, Islam Elsayed, Sam Munckhof-Swain, Chad Dechaine, Richard Paglia, Edwin Makkinga, Santiago Arribas Picon, Kim Brenneis, Jeff Kler",Notice of Change,Archived,View  +2022-06-07,-,Wolf Infrastructure Management Inc.,-,Robert Lock,Alberta Energy,Alberta Energy Regulator,Energy,OL-10881-13,Organization Lobbyist,"Chris Elyea, Ian Wesch, Jeff Pearson, Cullen Colville, Gordon Salahor, Lisa Tebbutt, Robert Lock, David Schmunk",Notice of Change,Archived,View  +2022-06-06,-,Motion Picture Association - Canada / Association Cinématographique - Canada,-,Wendy Noss,"Alberta Labour and Immigration, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Culture and Status of Women, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,"Employment and Training, Taxes and Finance, Arts and Culture, Health, Economic Development, Labour Relations",OL-12062-05,Organization Lobbyist,"Wendy Noss, Sydney Grieve",Semi-Annual Renewal,Archived,View  +2022-06-06,-,Dow Chemical Canada ULC,-,Diego Ordonez,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Treasury Board and Finance",-,"Taxes and Finance, Climate, Energy, Environment, Economic Development",OL-10283-12,Organization Lobbyist,"Michael Burt, Don Cameron, Diego Ordonez",Notice of Change,Archived,View  +2022-06-04,-,Alberta Chicken Producers,-,Karen Kirkwood,"Alberta Agriculture, Forestry and Rural Economic Development",-,Agriculture,OL-10100-12,Organization Lobbyist,"Wes Nanninga, David Hyink, Rob van Diemen, Karen Kirkwood, Dennis Steinwand, Ross Bezovie",Semi-Annual Renewal,Archived,View  +2022-06-03,2022-10-11,New West Public Affairs,Canadian Association for Pharmacy Distribution Management,Monte Solberg,"Executive Council, Alberta Health, Alberta Justice and Solicitor General, Alberta Legislative Assembly, Premier's Office",-,Health,CL-12760-01,Consultant Lobbyist,"Monte Solberg, Matt Solberg, Michael Solberg, Keith McLaughlin, Gordon Olsen, Sonia Kont, Sarah Painchaud, Graham Gerein, Fahreen Budwhani",Initial Return,Terminated,View  +2022-06-03,-,Music Canada,-,Patrick Rogers,Alberta Culture and Status of Women,-,Arts and Culture,OL-11552-12,Organization Lobbyist,"Olivier Vander Zaag, Sarah Kilpatrick, Jackie Dean, Patrick Rogers",Semi-Annual Renewal,Archived,View  +2022-06-02,-,MNP LLP,-,Jason Tuffs,"Alberta Environment and Parks, Alberta Labour and Immigration, , Alberta Energy, Alberta Indigenous Relations, Executive Council, Alberta Municipal Affairs, Service Alberta, Alberta Jobs, Economy and Innovation, Alberta Justice and Solicitor General, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Seniors and Housing, Premier's Office",Alberta Energy Regulator,"Budget, Employment and Training, Taxes and Finance, Agriculture, Small Business, Disaster Services and Emergency Relief",OL-10406-08,Organization Lobbyist,"Reise O'Hara, Scott Dickson, Mariesa Carbone, Chris Lavin, Clayton Norris, Lanny Westersund, Craig Gates",Semi-Annual Renewal,Archived,View  +2022-06-02,-,Temple Scott Associates Inc.,Mastercard Canada,Don Moors,"Alberta Jobs, Economy and Innovation, Alberta Treasury Board and Finance",-,Procurement,CL-12768-01,Consultant Lobbyist,Ujwal Ganguly,Initial Return,Archived,View  +2022-06-02,-,Wellington Advocacy Inc.,Insurance Bureau of Canada,Nick Koolsbergen,"Alberta Environment and Parks, Alberta Infrastructure, Service Alberta, Alberta Municipal Affairs, Executive Council, Alberta Transportation, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,"Insurance, Justice and Law Enforcement, Environment",CL-11237-06,Consultant Lobbyist,"Brad Tennant, Peter Csillag, Nick Koolsbergen, Matt de Jong",Notice of Change,Archived,View  +2022-06-02,-,Methanex Corporation,-,John Floren,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Legislative Assembly, Alberta Treasury Board and Finance",-,"Energy, Environment, Economic Development",OL-10459-55,Organization Lobbyist,"Ryan Hornung, Jeff Ngo, Renato Monteiro, Kevin Henderson, Mark Allard, Jody Magill, Brad Apking",Notice of Change,Archived,View  +2022-06-01,-,Wellington Advocacy Inc.,PointClickCare Technologies Inc.,Nick Koolsbergen,"Alberta Jobs, Economy and Innovation, Alberta Health, Premier's Office",Alberta Health Services,Science and Technology,CL-12675-02,Consultant Lobbyist,"Peter Csillag, Brad Tennant, Matt de Jong",Notice of Change,Archived,View  +2022-06-01,-,Alta Link Management Ltd.,BHE Canada L.P.,Gary Hart,"Alberta Infrastructure, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Transportation, Alberta Legislative Assembly, Premier's Office","Alberta Electric System Operator, Market Surveillance Administrator","Energy, Infrastructure",CL-10278-10,Consultant Lobbyist,"Jack Janssen, Scott Thon",Notice of Change,Archived,View  +2022-06-01,2022-11-09,Wellington Advocacy Inc.,"Alberta Environmental Rubber Products, A division of General Scrap Iron & Metals Ltd.",Nick Koolsbergen,"Alberta Environment and Parks, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Legislative Assembly, Premier's Office",-,Environment,CL-12475-07,Consultant Lobbyist,"Peter Csillag, Brad Tennant, Matt de Jong",Notice of Change,Terminated,View  +2022-06-01,-,Wellington Advocacy Inc.,PURE Canadian Gaming Corp.,Nick Koolsbergen,"Executive Council, Alberta Treasury Board and Finance, Premier's Office","Alberta Gaming, Liquor and Cannabis Commission, Invest Alberta Corporation",Gaming,CL-12501-07,Consultant Lobbyist,"Matt de Jong, Peter Csillag, Nick Koolsbergen",Notice of Change,Archived,View  +2022-06-01,-,Wellington Advocacy Inc.,FORTE (Financing Of Return To Employment) Ltd.,Nick Koolsbergen,"Alberta Labour and Immigration, Alberta Indigenous Relations, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education",-,Employment and Training,CL-12342-12,Consultant Lobbyist,"Brad Tennant, Matt de Jong, Peter Csillag, Nick Koolsbergen",Notice of Change,Archived,View  +2022-06-01,-,Air Products Canada Ltd.,-,Francesco Maione,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Energy, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Energy Regulator, Invest Alberta Corporation","Taxes and Finance, Energy, Environment, Intergovernmental Relations, Infrastructure, Economic Development",OL-12267-03,Organization Lobbyist,"Miles Heller, Peter L. Snyder, Rachel Smith, Jessica Lof",Semi-Annual Renewal,Archived,View  +2022-06-01,-,Inter Pipeline Ltd.,-,Brian Baker,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Transportation, Alberta Legislative Assembly, Alberta Treasury Board and Finance",-,"Energy, Economic Development",OL-10023-17,Organization Lobbyist,"Erik Koskela, Scott Hildebrand, Lorraine Royer, Amelie Delisle, Brian Baker, Anita Dusevic Oliva",Semi-Annual Renewal,Archived,View  +2022-06-01,-,AltaLink Management Ltd.,-,Gary Hart,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Energy, Service Alberta, Alberta Indigenous Relations, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Utilities Commission, Alberta Electric System Operator, Market Surveillance Administrator, Alberta Indigenous Opportunities Corporation","Energy, Environment, Indigenous Relations, Infrastructure",OL-10277-22,Organization Lobbyist,"Ugo Alex-Orji, Kris Gladue, Bruce Cole, Johanne Picard-Thompson, Scott Thon, Gary Hart, Rod Kause, Zora Lazic, Hao Liu, David Koch, Richard Boulton, Sheri Allen, Eóin Cooke, John Piotto, Jack Janssen, Rob Senko, Jenette Yearsley, Paul Lee, Michael Anderson, Cayla Saby",Notice of Change,Archived,View  +2022-05-31,-,Alberta Counsel,Moose Lake Pentecostal Youth Camp Society,Jonathon Wescott,"Alberta Infrastructure, Alberta Children’s Services, Alberta Municipal Affairs, Alberta Culture and Status of Women, Alberta Legislative Assembly, Premier's Office",-,Land Use,CL-12508-02,Consultant Lobbyist,"Aileen Burke, Allyssa Rygersberg, Justin Gotfried, Jonathon Wescott, Shayne Saskiw, James Johnson, Alexandra Carlile, Pascal Ryffel, Zack Ziolkowski, Aaron Singleton, Sydney McHale",Notice of Change,Archived,View  +2022-05-31,-,Crestview Strategy,Alberta Medical Association,Chad Rogers,"Alberta Health, Alberta Legislative Assembly",-,Health,CL-11660-12,Consultant Lobbyist,"Nour Fahmy, Frank Parker, Mira Ahmad",Notice of Change,Archived,View  +2022-05-31,-,Obsidian Energy Ltd.,-,Steve Loukas,"Alberta Energy, Executive Council, Alberta Municipal Affairs, Alberta Justice and Solicitor General, Premier's Office","Alberta Utilities Commission, Alberta Energy Regulator","Energy, Justice and Law Enforcement, Municipal Affairs",OL-11192-09,Organization Lobbyist,"Peter Scott, Gary Sykes, Stephen Loukas, Cliff Swadling, Jay McGilvary, Mark Hawkins, Kenda Friesen",Semi-Annual Renewal,Archived,View  +2022-05-31,-,Intact Financial Corporation,-,Charles Brindamour,"Service Alberta, Alberta Municipal Affairs, Alberta Justice and Solicitor General, Alberta Treasury Board and Finance, Premier's Office",-,Insurance,OL-10697-10,Organization Lobbyist,"Diane Flanagan, Mike VanElsberg, Paul Wilkins, Rosa Nelson, Louis Gagnon, Louis Guay, Charles Brindamour, Darren Godfrey, Luisa Currie, Irena Gagic, Yoomi Wynveen, Katie Locke, Paz Levy, Gillian Lavee",Semi-Annual Renewal,Archived,View  +2022-05-31,-,Heartland Generation Ltd.,-,Rob Dutton,"Alberta Environment and Parks, Alberta Energy, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Health, Premier's Office","Alberta Utilities Commission, Alberta Innovates, Alberta Energy Regulator, Alberta Electric System Operator, Invest Alberta Corporation, Market Surveillance Administrator","Energy, Environment",OL-11500-10,Organization Lobbyist,"Andrea Thiessen, Kurtis Glasier, Jim Hackett, Travis Culham, Corey Spencer, George Barnes, Frayne Donaldson, Gary Smith, Dawn Kern, Parag Menon, Michael Rowbotham, Njoroge Ngure, Rob Dutton, Morey Sair, Dustin Owens, Glenn Brisson, Shanelle Sinclair, Jason Hercun, Duncan Croasdale, Kim Anderson, Nichole van Steenbergen, Anne Vigneau, Karen Bailey, David Ackney, Troy Randall, Alexander Retfalvi, Shana Boyd",Semi-Annual Renewal,Archived,View  +2022-05-31,-,Wellington Advocacy Inc.,Heartland Generation Ltd.,Nick Koolsbergen,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Executive Council, Premier's Office",Invest Alberta Corporation,Energy,CL-12766-01,Consultant Lobbyist,"Brad Tennant, Peter Csillag, Matt de Jong",Initial Return,Archived,View  +2022-05-31,-,Alberta Counsel,Wood's Homes,Jonathon Wescott,"Alberta Infrastructure, Alberta Children’s Services, Alberta Legislative Assembly, Alberta Seniors and Housing",-,Housing,CL-12282-04,Consultant Lobbyist,"Alexandra Carlile, James Johnson, Justin Gotfried, Pascal Ryffel, Aaron Singleton, Zack Ziolkowski, Shayne Saskiw, Jonathon Wescott, Votham Anastasiadis, Aileen Burke, Sydney McHale, Allyssa Rygersberg",Notice of Change,Archived,View  +2022-05-31,-,Canadian Geothermal Energy Association (CanGEA),-,Alison Thompson,"Alberta Environment and Parks, Alberta Energy, Alberta Legislative Assembly",-,"Energy, Climate",OL-11198-10,Organization Lobbyist,Alison Thompson,Semi-Annual Renewal,Archived,View  +2022-05-31,-,Alberta Counsel,PolicyWise for Children & Families,Jonathon Wescott,"Alberta Children’s Services, Alberta Community and Social Services, Service Alberta, Alberta Health, Alberta Justice and Solicitor General, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,Children’s Services,CL-12764-01,Consultant Lobbyist,"Shayne Saskiw, Pascal Ryffel, Zack Ziolkowski, Votham Anastasiadis, Sydney McHale, Allyssa Rygersberg, Jonathon Wescott, James Johnson, Aileen Burke, Aaron Singleton, Alexandra Carlile",Initial Return,Archived,View  +2022-05-31,-,Wellington Advocacy Inc.,New Star Capital Inc,Nick Koolsbergen,"Alberta Environment and Parks, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Education, Alberta Legislative Assembly, Alberta Treasury Board and Finance","Alberta Gaming, Liquor and Cannabis Commission",Economic Development,CL-12765-01,Consultant Lobbyist,"Brad Tennant, Peter Csillag, Matt de Jong",Initial Return,Archived,View  +2022-05-30,-,Progressive Group for Independent Business Inc. (PGIB),-,Craig Chandler,"Alberta Environment and Parks, Alberta Energy, Alberta Municipal Affairs",-,"Energy, Environment, Municipal Affairs, Intergovernmental Relations",OL-11407-06,Organization Lobbyist,"Beth Bailey, Craig B. Chandler",Semi-Annual Renewal,Archived,View  +2022-05-29,-,Neuron Mobility (Canada) Limited,-,Ankush Karwal,"Alberta Jobs, Economy and Innovation, Alberta Legislative Assembly, Alberta Transportation",-,Transportation,OL-12423-02,Organization Lobbyist,"Isaac Ransom, Ankush Karwal, James Emery, Gwen McGuire, Daniel Eduardo Rodrigo",Semi-Annual Renewal,Archived,View  +2022-05-27,-,Global Public Affairs,The Town of Okotoks,Randy Pettipas,"Alberta Environment and Parks, Alberta Municipal Affairs, Alberta Transportation, Alberta Legislative Assembly, Premier's Office",-,Transportation,CL-12761-01,Consultant Lobbyist,"Jordan Pinkster, Melissa Carvalho, Paul Whittaker",Initial Return,Archived,View  +2022-05-27,-,Wellington Advocacy Inc.,Innovative Hydrogen Solutions Inc.,Nick Koolsbergen,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Transportation, Premier's Office",Invest Alberta Corporation,Energy,CL-12638-02,Consultant Lobbyist,"Peter Csillag, Nick Koolsbergen, Matt de Jong, Brad Tennant",Notice of Change,Archived,View  +2022-05-27,-,Association of Professional Engineers and Geoscientists of Alberta,-,Jay Nagendran,Alberta Labour and Immigration,-,Trades and Occupations,OL-10381-32,Organization Lobbyist,"Jay Nagendran, Nancy Biamonte, Enayat Aminzadah, Dianne Johnstone, Mohamed El Daly, John Corriveau, Gabrielle Abernethy",Semi-Annual Renewal,Archived,View  +2022-05-27,-,"Uber Canada, Inc.",-,Brian Kuntz,"Alberta Labour and Immigration, Alberta Environment and Parks, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Service Alberta, Alberta Health, Alberta Justice and Solicitor General, Alberta Culture and Status of Women, Alberta Transportation, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office, Alberta Seniors and Housing","Alberta Gaming, Liquor and Cannabis Commission","Health, Liquor, Transportation, Labour Relations",OL-10498-12,Organization Lobbyist,"Laura Miller, Yanique Williams, Adam Blinick, Michael van Hemmen, Jake Brockman",Semi-Annual Renewal,Archived,View  +2022-05-26,-,New West Public Affairs,Microsoft Canada Inc.,Monte Solberg,"Service Alberta, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Health, Alberta Education, Alberta Legislative Assembly, Premier's Office, Alberta Advanced Education",Alberta Health Services,"Employment and Training, Procurement, Economic Development",CL-12358-02,Consultant Lobbyist,"Matt Solberg, Sarah Painchaud, Sonia Kont, Keith McLaughlin, Michael Solberg, Monte Solberg, Gordon Olsen, Fahreen Budwhani, Graham Gerein",Notice of Change,Archived,View  +2022-05-26,-,New West Public Affairs,"Finning Canada, a division of Finning International Inc.",Monte Solberg,"Alberta Labour and Immigration, Alberta Infrastructure, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Legislative Assembly, Premier's Office",-,Employment and Training,CL-12354-02,Consultant Lobbyist,"Sarah Painchaud, Michael Solberg, Matt Solberg, Monte Solberg, Sonia Kont, Keith McLaughlin, Gordon Olsen, Fahreen Budwhani, Graham Gerein",Notice of Change,Archived,View  +2022-05-26,-,Chevron Canada Limited,-,Balaji Krishnamurthy,"Alberta Environment and Parks, Alberta Energy, Premier's Office",Alberta Energy Regulator,"Energy, Climate, Environment",OL-10005-27,Organization Lobbyist,"Beverley Keyes, Emily Curthoys, Douglas Connon, Jennifer Wyatt, Matthew Stevens, Sherry Sian, Deidre Reid, Balaji Krishnamurthy",Semi-Annual Renewal,Archived,View  +2022-05-26,-,Fasken Martineau DuMoulin LLP,Fair Tax Treatment for Responsible Digital Asset Mining Coalition,Peter Feldberg,"Service Alberta, Alberta Jobs, Economy and Innovation",-,Taxes and Finance,CL-12721-02,Consultant Lobbyist,"Andrew House, Daniel Brock",Notice of Change,Archived,View  +2022-05-25,-,Shaw Communications Inc.,-,Brad Shaw,"Alberta Infrastructure, Executive Council, Alberta Jobs, Economy and Innovation, Service Alberta, Alberta Education, Alberta Justice and Solicitor General, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education",-,"Budget, Science and Technology, Intergovernmental Relations, Economic Development, Infrastructure, Telecommunications",OL-10478-11,Organization Lobbyist,"Courtney Cathcart, Bradley Shaw, Peter Johnson, Ian Phillips, Chima Nkemdirim",Semi-Annual Renewal,Archived,View  +2022-05-25,-,ACTRA Alberta (Alliance of Canadian Cinema Television and Radio Artists),-,Tina Alford,"Alberta Jobs, Economy and Innovation, Alberta Culture and Status of Women",-,"Arts and Culture, Economic Development",OL-11311-06,Organization Lobbyist,Tina Alford,Semi-Annual Renewal,Archived,View  +2022-05-25,-,CSG Canadian Strategy Group Inc.,Bubble Bud,Hal Danchilla,"Alberta Jobs, Economy and Innovation, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,Cannabis,CL-12759-01,Consultant Lobbyist,"Cathy Chichak, Brent Kossey, Hal Danchilla, Mathew Preston",Initial Return,Archived,View  +2022-05-24,-,Corteva Agriscience Canada Company,-,Bryce Eger,"Alberta Environment and Parks, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Health, Alberta Legislative Assembly, Premier's Office",-,"Climate, Agriculture, Environment",OL-12246-03,Organization Lobbyist,"Tyler Groeneveld, Brad Orr, Andrea Faubert, René Petroski, Bryce Eger, Chad Grekul",Semi-Annual Renewal,Archived,View  +2022-05-24,-,Canadian Live Music Association,-,Erin Benjamin,Alberta Culture and Status of Women,-,Arts and Culture,OL-10712-10,Organization Lobbyist,Erin Benjamin,Semi-Annual Renewal,Archived,View  +2022-05-20,-,AltaGas Ltd.,-,Randall Crawford,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Indigenous Relations",Alberta Energy Regulator,"Climate, Energy, Indigenous Relations",OL-10508-13,Organization Lobbyist,"Ryan Hassen, Travis McKellar, Alex Gorodetsky, Noel Robitaille, Dan Woznow, Katrisha Gibson, Bruce Leonard, Kelsey Swanson, David Markham, Jennifer Osmar, Randall Crawford, Shaheen Amirali",Semi-Annual Renewal,Archived,View  +2022-05-20,-,De Paoli & Associates Inc.,Big Marble Farms Inc.,Anna De Paoli,"Alberta Environment and Parks, Alberta Energy, Alberta Municipal Affairs, Alberta Agriculture, Forestry and Rural Economic Development",-,"Energy, Environment, Municipal Affairs",CL-11087-10,Consultant Lobbyist,Anna De Paoli,Notice of Change,Archived,View  +2022-05-19,-,ARC Resources Ltd.,-,Terry Anderson,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Indigenous Relations, Alberta Treasury Board and Finance, Premier's Office","Alberta Petroleum Marketing Commission, Alberta Energy Regulator, Alberta Electric System Operator","Energy, Environment, Municipal Affairs",OL-10631-15,Organization Lobbyist,"Brendan Galloway, Kristin Cerny, Kevin Kempthorne, Lara Conrad, Sean Calder, Armin Jahangiri, Ryan Berrett, Kris Bibby, Lisa Olsen, Rob Newberry, Blake Johnson, Chris Arndt, Darren Drake, Katherine Gomes, Terry Anderson, Andrea Fiedler, Brian Groundwater, Tejay Haugen, Jody Wilson, Darren Munn, Justin Stoppler, Cory Beliveau, Rick Nakamoto, Estelle Ducatel, David Sorkilmo, Rob Zinselmeyer, Kudjo Fiakpui, Edward Hucman, Brent Miller, Stephanie Neilson",Semi-Annual Renewal,Archived,View  +2022-05-19,-,Renewable Energy Systems Canada Inc.,-,Peter Clibbon,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Premier's Office","Alberta Utilities Commission, Alberta Electric System Operator",Energy,OL-12334-03,Organization Lobbyist,"Peter Clibbon, Patrick Henn, Andrea Cosman, Marika Gibson",Semi-Annual Renewal,Archived,View  +2022-05-19,2022-11-22,Global Public Affairs,Alberta Association of Naturopathic Doctors,Randy Pettipas,"Executive Council, Alberta Health, Alberta Legislative Assembly",-,Health,CL-12754-01,Consultant Lobbyist,"Candice Laws, Farid Foroud, Melissa Carvalho, Glenn Monteith",Initial Return,Terminated,View  +2022-05-19,-,Canadian Off-Highway Vehicle Distributors Council,-,Bianca Kennedy,"Alberta Environment and Parks, Executive Council, Premier's Office",-,Environment,OL-10562-14,Organization Lobbyist,"Michelle O'Hara, Paul J Demers, Oksana Buhel",Semi-Annual Renewal,Archived,View  +2022-05-19,-,Counsel Public Affairs Inc.,Merit Contractors Association,Philip Dewan,"Alberta Labour and Immigration, Alberta Infrastructure, Executive Council, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Alberta Education, Alberta Culture and Status of Women, Alberta Health, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education",-,"Employment and Training, Budget, Health, Trades and Occupations",CL-11340-17,Consultant Lobbyist,T.J. Keil,Notice of Change,Archived,View  +2022-05-19,-,Alberta Counsel,Edmonton Minor Soccer Association,Jonathon Wescott,"Alberta Infrastructure, Alberta Community and Social Services, Alberta Culture and Status of Women, Alberta Legislative Assembly, Premier's Office",-,Recreation,CL-11205-05,Consultant Lobbyist,"James Johnson, Aileen Burke, Justin Gotfried, Sydney McHale, Allyssa Rygersberg, Alexandra Carlile, Aaron Singleton, Jonathon Wescott, Pascal Ryffel, Shayne Saskiw, Zack Ziolkowski, Votham Anastasiadis",Notice of Change,Archived,View  +2022-05-19,-,Motorcycle & Moped Industry Council,-,Bianca Kennedy,"Alberta Infrastructure, Alberta Transportation",Alberta Insurance Council,Transportation,OL-10694-11,Organization Lobbyist,"Paul Demers, Michelle O'Hara, Oksana Buhel",Semi-Annual Renewal,Archived,View  +2022-05-19,-,Merit Contractors Association,-,Malcolm D. Kirkland,"Alberta Labour and Immigration, Alberta Infrastructure, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Municipal Affairs, Alberta Education, Alberta Culture and Status of Women, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Advanced Education, Premier's Office","Alberta Apprenticeship and Industry Training Board, Workers’ Compensation Board","Budget, Employment and Training, Health, Post-secondary Education, Trade, K-12 Education, Trades and Occupations, Labour Relations",OL-10409-25,Organization Lobbyist,"Glenna Laing, Malcolm D. Kirkland, Brian Lacey, Alan Kuysters, Line Porfon, Elizabeth Hammell",Notice of Change,Archived,View  +2022-05-19,-,Global Public Affairs,Entos Pharmaceuticals,Randy Pettipas,"Alberta Infrastructure, Alberta Jobs, Economy and Innovation, Service Alberta, Alberta Health, Premier's Office",-,"Health, Economic Development",CL-11861-13,Consultant Lobbyist,"Yonathan Sumamo, Danielle Cruz, Farid Foroud, Paul Whittaker, Thanh Ngo",Notice of Change,Archived,View  +2022-05-18,-,Calgary Convention Centre Authority,-,Kurby Court,Alberta Labour and Immigration,Travel Alberta,"Employment and Training, Tourism",OL-12269-03,Organization Lobbyist,"Kurby Court, Alyson Robb",Semi-Annual Renewal,Archived,View  +2022-05-18,-,Abbott Laboratories Co.,-,Matthew Harris,"Executive Council, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",Alberta Health Services,Health,OL-12740-01,Organization Lobbyist,"Yeesha Poon, Denis Lapierre, Patricia Jill Kravinchuk",Initial Return,Archived,View  +2022-05-18,-,Alberta Counsel,Municipal District of Opportunity,Jonathon Wescott,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Energy, Alberta Indigenous Relations, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Health, Alberta Culture and Status of Women, Alberta Justice and Solicitor General, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Alberta Seniors and Housing, Premier's Office",-,"Health, Taxes and Finance, Municipal Affairs, Economic Development, Transportation",CL-11066-14,Consultant Lobbyist,"Aaron Singleton, Allyssa Rygersberg, Alexandra Carlile, Justin Gotfried, Shayne Saskiw, Pascal Ryffel, Zack Ziolkowski, Jon Wescott, Leo Piquette, Votham Anastasiadis, James Johnson, Aileen Burke, Sydney McHale",Notice of Change,Archived,View  +2022-05-18,-,Alberta Pulse Growers Commission,-,Leanne Fischbuch,"Alberta Environment and Parks, Alberta Jobs, Economy and Innovation, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Education, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office","Agriculture Financial Services Corporation, Alberta Innovates","Climate, Agriculture, Trade, Environment, Transportation, K-12 Education, Economic Development",OL-10816-09,Organization Lobbyist,"Jenn Walker, Robert Semeniuk, Shane Strydhorst, Don Shepert, Nevin Rosaasen, Leanne Fischbuch, Rachel Peterson, Debra McLennan, Reg Warkentin",Semi-Annual Renewal,Archived,View  +2022-05-18,-,Crestview Strategy,Songbird Life Science,Chad Rogers,"Alberta Children’s Services, Alberta Energy, Alberta Community and Social Services, Alberta Indigenous Relations, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Executive Council, Alberta Health, Alberta Education, Alberta Justice and Solicitor General, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Seniors and Housing, Premier's Office","Alberta Health Services, Alberta Innovates, Invest Alberta Corporation",Health,CL-12746-01,Consultant Lobbyist,Taleesha Thorogood,Initial Return,Archived,View  +2022-05-17,-,Alberta Counsel,Nurse Practitioner Association of Alberta (NPAA),Jonathon Wescott,"Alberta Labour and Immigration, Alberta Health, Premier's Office, Alberta Advanced Education","Labour Relations Board, Alberta Health Services","Health, Post-secondary Education, Labour Relations",CL-11312-08,Consultant Lobbyist,"Justin Gotfried, Zack Ziolowski, Jonathon Wescott, Shayne Saskiw, Pascal Ryffel, James Johnson, Aaron Singleton, Allyssa Rygersberg, Votham Anastasiadis, Alexandra Carlile, Aileen Burke, Sydney McHale",Notice of Change,Archived,View  +2022-05-17,-,1689986 ALBERTA LIMITED carrying on business as Navigator,Clorox (GLAD) Company of Canada Ltd,Jason Hatcher,Alberta Environment and Parks,-,Environment,CL-12346-04,Consultant Lobbyist,"Zoe Keirstead, Braydon Akers, Danielle Parr, Rosa Ellithorpe",Notice of Change,Archived,View  +2022-05-17,-,"International Union of Operating Engineers, Local Union No. 955",-,Chris Flett,"Alberta Labour and Immigration, Alberta Jobs, Economy and Innovation, Alberta Treasury Board and Finance, Alberta Advanced Education",-,"Employment and Training, Pensions, Trades and Occupations, Labour Relations, Mining",OL-10341-11,Organization Lobbyist,"Delanee Daviau, Chris Flett, Declan Regan, Rod Sedrovic, Frank Araneda, Anthony Noseworthy",Semi-Annual Renewal,Archived,View  +2022-05-17,-,Counsel Public Affairs Inc.,Biogen Canada,Philip Dewan,"Alberta Jobs, Economy and Innovation, Executive Council, Alberta Health, Premier's Office",-,Health,CL-12527-03,Consultant Lobbyist,T.J. Keil,Notice of Change,Archived,View  +2022-05-17,-,Alberta Counsel,Lakeland College,Jonathon Wescott,"Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Advanced Education, Premier's Office",-,Post-secondary Education,CL-12075-08,Consultant Lobbyist,"Sydney McHale, Aaron Singleton, Alexandra Carlile, Zack Ziolkowski, Pascal Ryffel, Shayne Saskiw, Jonathon Wescott, Justin Gotfried, Aileen Burke, Votham Anastasiadis, Allyssa Rygersberg",Notice of Change,Archived,View  +2022-05-17,-,Students' Association of Medicine Hat College,-,Alysha Kuntz,Alberta Advanced Education,-,Post-secondary Education,OL-11019-09,Organization Lobbyist,"Lily Schaerer, Shivam, Sarah Manning, Alysha Kuntz",Semi-Annual Renewal,Archived,View  +2022-05-17,-,Counsel Public Affairs Inc.,Merit Contractors Association,Philip Dewan,"Alberta Labour and Immigration, Alberta Infrastructure, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Municipal Affairs, Alberta Health, Alberta Culture and Status of Women, Alberta Education, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Alberta Advanced Education, Premier's Office",-,"Budget, Employment and Training, Health, Trades and Occupations",CL-11340-16,Consultant Lobbyist,T.J. Keil,Notice of Change,Archived,View  +2022-05-16,-,Canadian Association of Petroleum Producers,-,Lisa Baiton,"Alberta Labour and Immigration, Alberta Environment and Parks, , Alberta Energy, Alberta Municipal Affairs, Alberta Indigenous Relations, Executive Council, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Justice and Solicitor General, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office","Alberta Innovates, Workers’ Compensation Board, Alberta Energy Regulator","Energy, Climate, Health, Royalties, Taxes and Finance, Land Use, Justice and Law Enforcement, Environment, Municipal Affairs, Indigenous Relations, Transportation, Economic Development, Wildlife, Labour Relations",OL-10227-54,Organization Lobbyist,"Fauziah Rochman, J.C. Vito, Lisa Baiton, Tricia Donnelly, Paul Hartzheim, Ben Brunnen, Stephen Bresee, Shafak Sajid, David Hume, Andria Panidisz, Tara Payment, Cole Schulz, Shannon Joseph, Don McCrimmon, Markus Ermisch, Amberly Dooley, Claudette Fedoruk, Bryan Remillard, Giles Ody, Terry Abel, Brad Herald, Richard Wong, Patrick McDonald, Krista Phillips, Aaron Miller, Jonathan Stringham, Jay Averill, Greig Sproule",Notice of Change,Archived,View  +2022-05-16,-,Sun Life Financial,-,Kevin Strain,"Alberta Jobs, Economy and Innovation, Alberta Health, Alberta Treasury Board and Finance, Premier's Office","Alberta Health Services, Alberta Innovates","Insurance, Health, Banks and Other Financial Institutions",OL-10943-16,Organization Lobbyist,"Marianne Nguyen, Alanna Boyd, Victor Gomez, Jessica Brcko, Ali Salam, Laura Hewitt",Notice of Change,Archived,View  +2022-05-16,-,Canadian Generic Pharmaceutical Association,-,Jim Keon,"Alberta Health, Alberta Treasury Board and Finance, Premier's Office",-,"Intellectual Property, Budget, Health, Trade",OL-10015-12,Organization Lobbyist,"Jeff Connell, Jim Keon, Anne Wilkie, Jody Cox",Semi-Annual Renewal,Archived,View  +2022-05-16,-,Canadian Medical Association,-,Timothy Smith,"Alberta Labour and Immigration, Executive Council, Alberta Health, Alberta Justice and Solicitor General, Alberta Legislative Assembly, Premier's Office",-,"Health, Justice and Law Enforcement",OL-10605-19,Organization Lobbyist,"Louise Sweatman, Dr. Alika Lafontaine, Nick Lecuyer, Joseph Mayer, Kristin Smith, Pascal Charron, Dr. Jeff Blackmer, Nick Farinaccio, Anick Losier, Tim Smith, Luce Lavoie, John Feeley, Audrey Grandmaison, Stephen Vail, Cecile Bensimon, Aline Gagnon, Owen Adams, Julie Aung, Manon Abud, Azin Peyrow, Jennifer Kitts, Caroline Bouchard, Ashley Chisholm, Dr. Ann Collins, Philippe Ha, Jasmine Neeson, Marie-Claire Bedard, Dr. Katharine Smart, Eric Lewis, Elena Gabrysz, Karey Shuhendler",Notice of Change,Archived,View  +2022-05-15,-,New West Public Affairs,Cement Association of Canada,Monte Solberg,"Alberta Environment and Parks, Alberta Energy, Executive Council, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Alberta Indigenous Relations, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,Energy,CL-12749-01,Consultant Lobbyist,"Keith McLaughlin, Michael Solberg, Monte Solberg, Matt Solberg, Gordon Olsen, Sonia Kont, Sarah Painchaud, Fahreen Budhwani, Graham Gerein",Initial Return,Archived,View  +2022-05-13,2022-10-01,Sustrio ESG Advisors Inc.,Fort McMurray Airport Authority,Karim Zariffa,"Alberta Environment and Parks, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Transportation",-,Land Use,CL-12745-01,Consultant Lobbyist,Karim Zariffa,Initial Return,Terminated,View  +2022-05-13,2022-10-31,Prospectus Associates in Corporate Development,Tree Energy Solutions,Bruce Hartley,Alberta Energy,-,Energy,CL-12716-01,Consultant Lobbyist,Bruce Hartley,Initial Return,Terminated,View  +2022-05-13,-,Alberta Motor Association,-,Michelle Chimko,"Alberta Jobs, Economy and Innovation, Service Alberta, Alberta Health, Alberta Culture and Status of Women, Alberta Justice and Solicitor General, Alberta Transportation, Alberta Treasury Board and Finance, Alberta Seniors and Housing","Travel Alberta, Automobile Insurance Rate Board","Insurance, Consumer Issues, Tourism, Economic Development, Transportation",OL-10010-13,Organization Lobbyist,"Dominic Schamuhn, Jeff Kasbrick, Joel Ruff, Rob Jesso",Semi-Annual Renewal,Archived,View  +2022-05-13,-,Tourmaline Oil Corp.,-,Mike Rose,"Alberta Environment and Parks, Alberta Energy, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Treasury Board and Finance, Premier's Office",Alberta Energy Regulator,"Energy, Environment, Municipal Affairs",OL-12144-12,Organization Lobbyist,"Scott Kirker, Sherra Aspin, Colin Frostad, Allan Bush, Scott Volk, Leah Turner, Mike Rose",Notice of Change,Archived,View  +2022-05-13,-,Alberta Charitable Casino Operators,-,Michael Thompson,"Executive Council, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Gaming, Liquor and Cannabis Commission",Gaming,OL-12735-01,Organization Lobbyist,Michael Thompson,Initial Return,Archived,View  +2022-05-13,-,TC Energy Corporation,-,Francois Poirier,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Energy, Alberta Indigenous Relations, Alberta Municipal Affairs, Executive Council, Alberta Jobs, Economy and Innovation, Service Alberta, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office","Alberta Utilities Commission, Alberta Health Services, Alberta Innovates, Alberta Energy Regulator, Alberta Electric System Operator, Market Surveillance Administrator","Energy, Health, Procurement, Environment, Indigenous Relations, Municipal Affairs, Transportation, Wildlife",OL-10499-49,Organization Lobbyist,"Dave Forestell, Riley Baldwin, Keith Nelson, Michael Schmaltz, Patrick Keys, Robert Tarvydas, Kirk Wasylik, Wendell Klassen, Ana Maria Radu, Mel Garner, Timothy Lam, Stefan Skocylas, Wade Pruett, Greg Grant, Graeme Wright, Lindsay MacKay, Luke Meredith, Julia Jensen, Duane Alexander, Christopher Vivone, Fareen Sunderji, Kristin Anderson, Holly Waldorf, Tisha Homer, Alex Harris, Blaine Trout, Francois Poirier, Mark Thompson, Richard Prior, Jay White, Ken Brink, Jawad Masud, Bevin Wirzba, Joe Zhou, Mark Blundell, Sheldon Good, Patrick Muttart, Rebecca Sullivan",Notice of Change,Archived,View  +2022-05-13,-,ConocoPhillips Canada Resources Corp.,-,Bijan Agarwal,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Treasury Board and Finance, Premier's Office","Alberta Petroleum Marketing Commission, Alberta Energy Regulator","Climate, Energy, Environment, Municipal Affairs",OL-10099-29,Organization Lobbyist,"Logan Schaerer, Cary Allan, Jeff Gow, Fred Walter, Robert Albricht, Kim Iverson, Scott Grindal, Peter Koning, Rickie-Lee Doyle, Chris Malkin, Charlotte Plombin, Bijan Agarwal, Gunnar Johnsen, Devin O'Neal, James Makowecki, Jodi Prior",Notice of Change,Archived,View  +2022-05-13,-,CNOOC Petroleum North America ULC,-,Yongjie Liu,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Premier's Office",-,"Energy, Trade, Environment, Economic Development",OL-10375-44,Organization Lobbyist,"Mike Dlugan, Scott Chalker, Michael MacPhee, Robbie Armfield",Notice of Change,Archived,View  +2022-05-13,-,Canadian Propane Association,-,Shannon Watt,"Alberta Labour and Immigration, Alberta Infrastructure, Alberta Energy, Alberta Municipal Affairs, Alberta Health, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office",-,Energy,OL-10272-15,Organization Lobbyist,"Shannon Watt, Katie Kachur, Allan Murphy, Robert Loenhart",Notice of Change,Archived,View  +2022-05-13,-,ENMAX Corporation,-,Charles Ruigrok,"Alberta Energy, Executive Council, Service Alberta, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Utilities Commission, Alberta Innovates, Alberta Electric System Operator, Balancing Pool, Invest Alberta Corporation, Market Surveillance Administrator","Energy, Consumer Issues, Environment",OL-10279-60,Organization Lobbyist,"Janene Taylor, Greg Retzer, Sheizana Murji, Rose Ferrer, Tracy Coutts, Shiv Kumar, Bruce Borwick, Jana Mosley, Terri-Lynn Duque, Sarah Stevens, Timothy Boston, Chris Joy, Chris McCleave, Mark McGillivray, Randall Stubbings, Erica Young, Andrew Barrett, Charles Ruigrok",Notice of Change,Archived,View  +2022-05-12,-,Merit Contractors Association,-,Malcolm D. Kirkland,"Alberta Labour and Immigration, Alberta Infrastructure, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Municipal Affairs, Alberta Education, Alberta Culture and Status of Women, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Alberta Advanced Education, Premier's Office","Alberta Apprenticeship and Industry Training Board, Workers’ Compensation Board","Budget, Employment and Training, Health, Post-secondary Education, Trade, Trades and Occupations, K-12 Education, Labour Relations",OL-10409-24,Organization Lobbyist,"Elizabeth Hammell, Line Porfon, Alan Kuysters, Brian Lacey, Malcolm D. Kirkland, Glenna Laing",Notice of Change,Archived,View  +2022-05-12,-,Longview Communications Inc.,Ember Resources Inc.,Hugh McFadyen,"Alberta Environment and Parks, Alberta Labour and Immigration, Alberta Energy, Alberta Municipal Affairs, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Justice and Solicitor General, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Premier's Office",-,"Energy, Municipal Affairs, Economic Development",CL-11566-05,Consultant Lobbyist,Evan Legate,Notice of Change,Archived,View  +2022-05-12,2022-10-28,Right Angle Communications and Consulting Inc.,Genesis Land Development Corp.,Bruce McAllister,"Alberta Infrastructure, Alberta Transportation",-,Transportation,CL-12018-04,Consultant Lobbyist,Bruce McAllister,Notice of Change,Terminated,View  +2022-05-12,-,Alberta Counsel,Alberta International Airshow,Jonathon Wescott,"Alberta Jobs, Economy and Innovation, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Culture and Status of Women, Alberta Transportation, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,Economic Development,CL-12741-01,Consultant Lobbyist,"Zack Ziolkowski, Votham Anastasiadis, Aaron Singleton, Alexandra Carlile, Allyssa Rygersberg, Jonathon Wescott, Shayne Saskiw, Pascal Ryffel, James Johnson, Aileen Burke, Justin Gotfried, Sydney McHale",Initial Return,Archived,View  +2022-05-12,-,Cenovus Energy Inc.,-,Alex Pourbaix,"Alberta Environment and Parks, Alberta Labour and Immigration, Alberta Infrastructure, Alberta Energy, Executive Council, Alberta Municipal Affairs, Alberta Indigenous Relations, Alberta Jobs, Economy and Innovation, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Justice and Solicitor General, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education","Alberta Petroleum Marketing Commission, Alberta Utilities Commission, Alberta Energy Regulator, Alberta Electric System Operator","Energy, Taxes and Finance, Environment, Municipal Affairs, Indigenous Relations, Workplace Safety, Infrastructure",OL-10248-24,Organization Lobbyist,"Jessica Player, Jeff Nail, Sharla Howard, Devin Iversen, Owen Henshaw, Alisha Bhura, Sam Murphy, Norrie Ramsay, Jeff Jeworski, Andrew Straile, Trent Zacharias, Kendall Dilling, Drew Zieglgansberger, Lindsay Reynolds, Grant Pellegrin, Michael Cody, Ted Johnson, Jamie Agnew, Greg Cave, Jared Robertson, Kam Sandhar, Michael Wilson, Jillian Falls, Brooke Lindsey, Geoff Murray, Gary Molnar, Sean Hiebert, Michael Penner, Eric Wakley, Michele Waters, Sherry Wendt, Brett Wiens, Troy Peterson, Jennifer Shalagan, Shannon McDougall, Anamika Mukherjee, Travis Davies, Ray Lambert, Rhona DelFrari, Susan Grey, Suzanne Smith, Mike Plettel, Charles Gobin, Darwin Bateyko, Shane Cooke, Shelley Machon, Keith Chiasson, Amos Ben-Zvi, Patrick McKay, Prince Azom, Chris Moody, Claire Hong, Tony Jackson, Scott Hillier, Corinne Rozon, Alex Pourbaix, Jim Lytle, Tyler Tarnoczi, Jon McKenzie, Morgan Wrishko, Andrea Louise-Martyn",Notice of Change,Archived,View  +2022-05-12,-,FP Canada,-,Tashia Batstone,"Executive Council, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",Alberta Securities Commission,"Taxes and Finance, Consumer Issues",OL-12380-04,Organization Lobbyist,"Craig MacLennan, Hillary Dawson, Devin Mataseje, Tashia Batstone",Notice of Change,Archived,View  +2022-05-12,-,Canadian Association of Energy Contractors,-,Mark Scholz,"Alberta Environment and Parks, , Alberta Labour and Immigration, Alberta Energy, Service Alberta, Alberta Jobs, Economy and Innovation, Alberta Transportation, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Workers’ Compensation Board, Alberta Energy Regulator","Energy, Taxes and Finance, Environment, Trade, Intergovernmental Relations, Transportation, Workplace Safety",OL-10259-21,Organization Lobbyist,"Russell Nibogie, Mark Scholz",Notice of Change,Archived,View  +2022-05-11,-,Ovintiv Canada ULC,-,Brendan McCracken,"Alberta Environment and Parks, Alberta Energy, Alberta Indigenous Relations, Alberta Municipal Affairs, Alberta Treasury Board and Finance, Premier's Office","Alberta Innovates, Alberta Energy Regulator","Climate, Energy, Taxes and Finance, Environment, Municipal Affairs, Indigenous Relations, Economic Development, Wildlife",OL-10288-43,Organization Lobbyist,"Paul Giesbrecht, Kellen Foreman, Parmjeet Virdee, Brendan MacCracken, David Lye, Marawan ElSayed, Daniel Dunlop, Jennifer Blaney, Jason Blanch",Notice of Change,Archived,View  +2022-05-11,-,Alstom Transport Canada Inc.,-,Michael Keroullé,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Energy, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Transportation, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Innovates, Alberta Energy Regulator, Travel Alberta, Invest Alberta Corporation, Board of Governors of the Banff Centre",Transportation,OL-12639-02,Organization Lobbyist,"François Desmarais, Souheil Abihanna, Julie Turgeon, Josée Ouellet, Eric Rondeau, Jill Hampton, Alan Le Taillanter, Keith Williams, Olivier Marcil, Robert Young, Ian Hodkinson",Notice of Change,Archived,View  +2022-05-11,-,New West Public Affairs,Lehigh Hanson,Monte Solberg,"Alberta Environment and Parks, Alberta Energy, Executive Council, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Alberta Indigenous Relations, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,Environment,CL-12742-01,Consultant Lobbyist,"Michael Solberg, Matt Solberg, Keith McLaughlin, Gordon Olsen, Sonia Kont, Graham Gerein, Monte Solberg, Sarah Painchaud, Fahreen Budhwani",Initial Return,Archived,View  +2022-05-10,2022-11-21,1689986 ALBERTA LIMITED carrying on business as Navigator,Triovest Inc.,Jason Hatcher,"Alberta Jobs, Economy and Innovation, Alberta Culture and Status of Women",-,"Arts and Culture, Economic Development",CL-12738-01,Consultant Lobbyist,"Rosa Ellithorpe, Zoe Keirstead, Jason Hatcher",Initial Return,Terminated,View  +2022-05-10,-,Alberta Counsel,Edmonton Health City,Jonathon Wescott,"Alberta Jobs, Economy and Innovation, Service Alberta, Alberta Health, Alberta Seniors and Housing, Alberta Advanced Education, Premier's Office",Alberta Health Services,Economic Development,CL-12275-05,Consultant Lobbyist,"Allyssa Rygersberg, Sydney McHale, Aaron Singleton, Votham Anastasiadis, Aileen Burke, Alexandra Carlile, Justin Gotfried, Zack Ziolkowski, James Johnson, Pascal Ryffel, Shayne Saskiw, Jonathon Wescott",Notice of Change,Archived,View  +2022-05-10,-,Wellington Advocacy Inc.,Oilers Entertainment Group Canada Corp.,Nick Koolsbergen,"Alberta Health, Alberta Culture and Status of Women, Alberta Legislative Assembly, Premier's Office",Alberta Health Services,Sports,CL-12576-03,Consultant Lobbyist,"Brad Tennant, Matt de Jong",Notice of Change,Archived,View  +2022-05-10,-,Building Owners and Managers Association of Calgary,-,Lloyd Suchet,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Service Alberta, Alberta Municipal Affairs, Alberta Health, Alberta Transportation, Alberta Treasury Board and Finance",-,"Health, Energy, Consumer Issues, Environment, Municipal Affairs, Economic Development, Transportation",OL-10447-11,Organization Lobbyist,Lloyd Suchet,Semi-Annual Renewal,Archived,View  +2022-05-10,-,BHE Canada Limited,BHE Canada L.P.,Edward Rihn,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Legislative Assembly, Alberta Transportation, Premier's Office","Alberta Electric System Operator, Market Surveillance Administrator","Energy, Infrastructure",CL-10343-09,Consultant Lobbyist,"Edward Rihn, Sharmen Andrew, Scott Riddell, Chris Deakin",Notice of Change,Archived,View  +2022-05-10,-,Cement Association of Canada,-,Adam Auer,"Alberta Environment and Parks, , Alberta Infrastructure, Alberta Energy, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office",-,"Budget, Energy, Environment, Transportation, Infrastructure",OL-11039-09,Organization Lobbyist,"Sarah Petrevan, Michael McSweeney, Martha Murray, Glen Furtado, Steve Morrissey, Adam Auer, Ken Carrusca",Notice of Change,Archived,View  +2022-05-10,-,Alberta Counsel,County of Grande Prairie,Jonathon Wescott,"Alberta Infrastructure, Alberta Municipal Affairs, Alberta Justice and Solicitor General, Alberta Culture and Status of Women, Alberta Health, Alberta Legislative Assembly, Alberta Transportation, Premier's Office",Alberta Health Services,"Arts and Culture, Health, Justice and Law Enforcement, Transportation",CL-11549-16,Consultant Lobbyist,"Votham Anastasiadis, Aileen Burke, Alexandra Carlile, Justin Gotfried, Zack Ziolowski, Jonathon Wescott, Pascal Ryffel, Shayne Saskiw, James Johnson, Aaron Singleton, Sydney McHale, Allyssa Rygersberg",Notice of Change,Archived,View  +2022-05-10,-,Alberta Counsel,Municipal District of Opportunity,Jonathon Wescott,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Indigenous Relations, Alberta Municipal Affairs, Alberta Culture and Status of Women, Alberta Health, Alberta Justice and Solicitor General, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Premier's Office, Alberta Seniors and Housing",-,"Health, Taxes and Finance, Municipal Affairs, Economic Development, Transportation",CL-11066-13,Consultant Lobbyist,"Sydney McHale, Aileen Burke, James Johnson, Votham Anastasiadis, Leo Piquette, Jon Wescott, Zack Ziolkowski, Pascal Ryffel, Shayne Saskiw, Justin Gotfried, Alexandra Carlile, Allyssa Rygersberg, Aaron Singleton",Notice of Change,Archived,View  +2022-05-10,-,New West Public Affairs,Bunge Canada,Monte Solberg,"Alberta Environment and Parks, Alberta Infrastructure, Alberta Energy, Executive Council, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Transportation, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",Invest Alberta Corporation,Agriculture,CL-12739-01,Consultant Lobbyist,"Sonia Kont, Monte Solberg, Gordon Olsen, Sarah Painchaud, Fahreen Budhwani, Michael Solberg, Matt Solberg, Keith McLaughlin, Graham Gerein",Initial Return,Archived,View  +2022-05-09,-,Alberta Sugar Beet Growers,-,Melody Garner-Skiba,"Alberta Environment and Parks, Alberta Jobs, Economy and Innovation, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Education, Alberta Transportation",-,"Climate, Agriculture, Trade, Environment, Transportation, K-12 Education, Economic Development",OL-10759-13,Organization Lobbyist,Melody Garner-Skiba,Notice of Change,Archived,View  +2022-05-09,-,Breakfast Club of Canada,-,Tommy Kulczyk,"Alberta Children’s Services, Alberta Community and Social Services, Alberta Indigenous Relations, Alberta Education, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Health",-,Children’s Services,OL-12273-03,Organization Lobbyist,"Judith Barry, Ryan Baker",Semi-Annual Renewal,Archived,View  +2022-05-09,-,Edmonton Chamber of Commerce,-,Jeffrey Sundquist,"Alberta Labour and Immigration, Alberta Environment and Parks, Alberta Infrastructure, Alberta Energy, Alberta Children’s Services, Alberta Jobs, Economy and Innovation, Alberta Community and Social Services, Service Alberta, Alberta Municipal Affairs, Executive Council, Alberta Culture and Status of Women, Alberta Health, Alberta Justice and Solicitor General, Alberta Transportation, Alberta Treasury Board and Finance, Alberta Advanced Education, Alberta Seniors and Housing, Premier's Office",Premier’s Council on Charities and Civil Society,"Employment and Training, Budget, Health, Energy, Taxes and Finance, Legal System, Trade, Children’s Services, Social programs, Citizenship and Immigration, Economic Development, Sports, Housing",OL-11122-16,Organization Lobbyist,"Alexandra Hryciw, Jeffrey Sundquist, Cadence Bergman, Deanna Miyauchi, Andrew Koning",Notice of Change,Archived,View  +2022-05-08,-,Alberta Biotechnology Association,-,Robb Stoddard,"Alberta Environment and Parks, Executive Council, Alberta Indigenous Relations, Alberta Community and Social Services, Alberta Jobs, Economy and Innovation, Service Alberta, Alberta Health, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office, Alberta Seniors and Housing, Alberta Advanced Education","Alberta Health Services, Carewest, Alberta Innovates","Employment and Training, Research and Development, Rural Development, Economic Development, Seniors issues",OL-10998-08,Organization Lobbyist,Robb Stoddard,Semi-Annual Renewal,Archived,View  +2022-05-06,-,Alberta Teachers' Association,-,Dennis Theobald,"Alberta Infrastructure, Alberta Education, Alberta Culture and Status of Women, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,"Budget, Pensions, K-12 Education",OL-10512-11,Organization Lobbyist,"Nancy Luyckfassel, Sean Brown, Lisa Everitt, Joni A Turville, Andrea L Berg, Jeff B Johnson, Phil A McRae, Jonathan H Teghtmeyer, Robert T Mazzotta, Dennis E Theobald, Nancy L Ball, Brenton Baum, Peter F MacKay, Greg Carabine, Jason C Schilling, Don M Brookwell, Jenny L Regal, Katherine D Pritchard, Heather McCaig, Kathy A Hoehn, Carmen Glossop, Paul A Froese, M Murray Lalonde, Darrin A Bauer, Greg A Jeffery, Kevin Kempt, Richard Kremp, Mark Swanson, Darren Moroz, Karen M Nakaska, Tim Jaffares, Keith Hadden",Semi-Annual Renewal,Archived,View  +2022-05-06,-,Wellington Advocacy Inc.,MR Imaging Corp.,Nick Koolsbergen,"Executive Council, Alberta Jobs, Economy and Innovation, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",Alberta Health Services,Health,CL-12455-05,Consultant Lobbyist,"Matt de Jong, Brad Tennant, Peter Csillag, Nick Koolsbergen",Notice of Change,Archived,View  +2022-05-06,-,Wellington Advocacy Inc.,"Alberta Environmental Rubber Products, A division of General Scrap Iron & Metals Ltd.",Nick Koolsbergen,"Alberta Environment and Parks, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Legislative Assembly, Premier's Office",-,Environment,CL-12475-06,Consultant Lobbyist,"Peter Csillag, Brad Tennant, Matt de Jong",Notice of Change,Archived,View  +2022-05-06,-,Alberta Counsel,Alberta Funeral Service Association,Jonathon Wescott,"Alberta Justice and Solicitor General, Alberta Legislative Assembly, Premier's Office",-,Justice and Law Enforcement,CL-12729-01,Consultant Lobbyist,"Aaron Singleton, Alexandra Carlile, Allyssa Rygersberg, Jonathon Wescott, Shayne Saskiw, Pascal Ryffel, James Johnson, Aileen Burke, Votham Anastasiadis, Zack Ziolkowski, Justin Gotfried, Sydney McHale",Initial Return,Archived,View  +2022-05-06,-,Alberta Counsel,Metis Nation of Alberta Association Fort McMurray Local Council 1395,Jonathon Wescott,"Alberta Environment and Parks, Alberta Legislative Assembly, Premier's Office",-,Environment,CL-12719-01,Consultant Lobbyist,"Shayne Saskiw, Jonathon Wescott, Pascal Ryffel, Guy Boutiler, Votham Anastasiadis, Allyssa Rygersberg, Alexandra Carlile, James Johnson, Zack Ziolkowski, Aileen Burke, Aaron Singleton, Sydney McHale",Initial Return,Archived,View  +2022-05-06,-,Hut 8 Inc.,-,Jaime Leverton,"Alberta Energy, Alberta Jobs, Economy and Innovation, Executive Council, Service Alberta, Alberta Treasury Board and Finance",-,Energy,OL-12733-01,Organization Lobbyist,"Erin Dermer, Jaime Leverton",Initial Return,Archived,View  +2022-05-06,-,Wellington Advocacy Inc.,FORTE (Financing Of Return To Employment) Ltd.,Nick Koolsbergen,"Alberta Labour and Immigration, Alberta Indigenous Relations, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education",-,Employment and Training,CL-12342-11,Consultant Lobbyist,"Brad Tennant, Matt de Jong, Peter Csillag, Nick Koolsbergen",Notice of Change,Archived,View  +2022-05-06,-,Servus Credit Union,-,Ian Burns,"Service Alberta, Executive Council, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,Banks and Other Financial Institutions,OL-10673-16,Organization Lobbyist,"Cody Verbeek, Ian Burns, Atul Varde",Semi-Annual Renewal,Archived,View  +2022-05-06,2022-06-01,Wellington Advocacy Inc.,Risio Institute for Digital Dental Education Inc.,Nick Koolsbergen,"Alberta Labour and Immigration, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Health, Alberta Legislative Assembly, Alberta Advanced Education, Premier's Office",-,Employment and Training,CL-12403-05,Consultant Lobbyist,"Brad Tennant, Matt de Jong, Peter Csillag",Notice of Change,Terminated,View  +2022-05-06,-,Alberta Forest Products Association,-,Jason Krips,"Alberta Environment and Parks, Alberta Labour and Immigration, Alberta Infrastructure, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Alberta Indigenous Relations, Alberta Culture and Status of Women, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Justice and Solicitor General, Alberta Transportation, Alberta Treasury Board and Finance, Alberta Seniors and Housing, Premier's Office","Alberta Utilities Commission, Workers’ Compensation Board, Alberta Electric System Operator","Arts and Culture, Climate, Energy, Procurement, Forestry, Environment, Trade, Indigenous Relations, Workplace Safety, Infrastructure, Wildlife, Transportation",OL-10182-30,Organization Lobbyist,"Aspen Dudzic, Craig Werner, Graham Legaarden, Sheila Harrison, Carola von Sass, Brock Mulligan, Jason Krips, Anna Kauffman, Chris Breen",Notice of Change,Archived,View  +2022-05-06,-,Wellington Advocacy Inc.,PURE Canadian Gaming Corp.,Nick Koolsbergen,"Executive Council, Alberta Treasury Board and Finance, Premier's Office","Alberta Gaming, Liquor and Cannabis Commission, Invest Alberta Corporation",Gaming,CL-12501-06,Consultant Lobbyist,"Matt de Jong, Peter Csillag, Nick Koolsbergen",Notice of Change,Archived,View  +2022-05-06,-,Crestview Strategy,SkipTheDishes Restaurant Services Inc.,Chad Rogers,"Alberta Labour and Immigration, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office",-,"Economic Development, Labour Relations",CL-12734-01,Consultant Lobbyist,"Taleesha Thorogood, Alex Chreston",Initial Return,Archived,View  +2022-05-05,-,Sherwood Park & District Chamber of Commerce,-,Todd Banks,"Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Treasury Board and Finance",-,"Budget, Energy, Economic Development",OL-10467-11,Organization Lobbyist,Todd Banks,Semi-Annual Renewal,Archived,View  +2022-05-05,-,Students' Association of MacEwan University,-,Myles Dykes,"Alberta Labour and Immigration, Alberta Culture and Status of Women, Alberta Advanced Education",Grant MacEwan University,Post-secondary Education,OL-10440-15,Organization Lobbyist,"Parvin Sedighi, Myles Dykes, Matthew Yanish, Stephan Vasquez, Larissa Williams, Elaine Tran, Darryl Kostash",Notice of Change,Archived,View  +2022-05-05,-,The Co-operators Group Ltd.,-,Rob Wesseling,"Alberta Environment and Parks, Alberta Infrastructure, Service Alberta, Alberta Municipal Affairs, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Transportation, Alberta Legislative Assembly, Alberta Treasury Board and Finance",Automobile Insurance Rate Board,"Insurance, Infrastructure",OL-10965-22,Organization Lobbyist,"Scott MacDonald, Nicole Bellefleur, Gerry Martineau, George Hardy, Todd Saunders, Christopher Ross, Jim Mahoney, Sara Cleland, Maya Milardovic, Lisa Guglietti, Robert Wesseling, Lee Rumleskie",Semi-Annual Renewal,Archived,View  +2022-05-05,-,Crestview Strategy,Riipen,Chad Rogers,"Alberta Labour and Immigration, Alberta Jobs, Economy and Innovation, Alberta Advanced Education",-,Employment and Training,CL-12382-02,Consultant Lobbyist,"Bill Anderson, Taleesha Thorogood",Notice of Change,Archived,View  +2022-05-05,-,Brookfield BRP Canada Corp. (operating as Evolugen),-,Josée Guibord,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Legislative Assembly",Alberta Electric System Operator,"Energy, Environment",OL-12715-01,Organization Lobbyist,"Remi Moreau, Mike Peters, Julien Wu, Isabelle Deguise",Initial Return,Archived,View  +2022-05-04,-,SAS Institute (Canada) Inc.,-,Andrew Dixon,"Alberta Environment and Parks, Alberta Labour and Immigration, Alberta Infrastructure, Alberta Children’s Services, Alberta Energy, Alberta Community and Social Services, Alberta Indigenous Relations, Alberta Jobs, Economy and Innovation, Alberta Municipal Affairs, Service Alberta, Executive Council, Alberta Education, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Culture and Status of Women, Alberta Health, Alberta Justice and Solicitor General, Alberta Legislative Assembly, Alberta Transportation, Alberta Treasury Board and Finance, Alberta Seniors and Housing, Premier's Office, Alberta Advanced Education",-,Science and Technology,OL-12004-06,Organization Lobbyist,Christine Jackson,Notice of Change,Archived,View  +2022-05-04,2022-09-12,Enterprise Canada Inc.,Trident Pump Inc,Barbara Fox,"Alberta Agriculture, Forestry and Rural Economic Development",-,Disaster Services and Emergency Relief,CL-12731-01,Consultant Lobbyist,"Erika Barootes, Steven McLelan",Initial Return,Terminated,View  +2022-05-04,-,Canadian Off-Highway Vehicle Distributors Council,-,Michelle O'Hara,"Alberta Environment and Parks, Executive Council, Premier's Office",-,Environment,OL-10562-13,Organization Lobbyist,"Oksana Buhel, Paul J Demers, Michelle O'Hara",Notice of Change,Archived,View  +2022-05-04,2022-08-08,Wellington Advocacy Inc.,Red Bull Canada Ltd.,Nick Koolsbergen,"Alberta Jobs, Economy and Innovation, Executive Council, Alberta Culture and Status of Women, Alberta Health, Alberta Legislative Assembly, Alberta Treasury Board and Finance, Premier's Office","Alberta Gaming, Liquor and Cannabis Commission","Food, Sports",CL-12169-08,Consultant Lobbyist,"Brad Tennant, Peter Csillag, Matt de Jong, Trisha Rinneard",Notice of Change,Terminated,View  +2022-05-04,-,Fasken Martineau DuMoulin LLP,Fair Tax Treatment for Responsible Digital Asset Mining Coalition,Peter Feldberg,"Alberta Jobs, Economy and Innovation, Service Alberta",-,Taxes and Finance,CL-12721-01,Consultant Lobbyist,"Daniel Brock, Andrew House",Initial Return,Archived,View  +2022-05-04,-,Wellington Advocacy Inc.,Brane Inc (dba Brane Capital),Nick Koolsbergen,"Executive Council, Service Alberta, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Alberta Justice and Solicitor General, Alberta Treasury Board and Finance, Premier's Office",Invest Alberta Corporation,Science and Technology,CL-12038-05,Consultant Lobbyist,"Matt de Jong, Peter Csillag, Brad Tennant, Nick Koolsbergen",Notice of Change,Archived,View  +2022-05-04,-,TransAlta Corporation,-,John Kousinioris,"Alberta Environment and Parks, Alberta Energy, Alberta Children’s Services, Alberta Jobs, Economy and Innovation, Executive Council, Alberta Indigenous Relations, Alberta Treasury Board and Finance, Premier's Office",Alberta Energy Regulator,"Energy, Climate, Environment, Infrastructure, Economic Development, Disaster Services and Emergency Relief",OL-10516-15,Organization Lobbyist,"Akira Yamamoto, Aron Willis, Michael Novelli, Liam Stone, Duncan Webster, Gabriel John, Laura Arnold, John Kousinioris, Kerry O'Reilly Wilks, Chelsea Donelon, Blain van Melle",Semi-Annual Renewal,Archived,View  +2022-05-04,-,Business Council of Canada,-,Goldy Hyder,"Alberta Environment and Parks, Alberta Labour and Immigration, , Alberta Infrastructure, Alberta Energy, Executive Council, Alberta Jobs, Economy and Innovation, Alberta Indigenous Relations, Alberta Agriculture, Forestry and Rural Economic Development, Alberta Health, Alberta Treasury Board and Finance, Premier's Office, Alberta Advanced Education","Alberta Energy Regulator, Alberta Securities Commission","Employment and Training, Budget, Energy, Taxes and Finance, Health, Climate, Agriculture, Trade, Environment, Indigenous Relations, Infrastructure, Economic Development, Security, Labour Relations",OL-10501-11,Organization Lobbyist,"Jack Hughes, Owen Brown, Amy Castle, Goldy Hyder, Trevor Kennedy, John Dillon, Ross Laver, Howard Fremeth, Michael Gullo, Robert Asselin, Trevor Neiman, Louise Blais",Semi-Annual Renewal,Archived,View  +2022-05-03,-,Methanex Corporation,-,John Floren,"Alberta Environment and Parks, Alberta Energy, Alberta Jobs, Economy and Innovation, Alberta Legislative Assembly, Alberta Treasury Board and Finance",-,"Energy, Environment, Economic Development",OL-10459-54,Organization Lobbyist,"Ryan Hornung, Jeff Ngo, Renato Monteiro, Kevin Henderson, Mark Allard, Jody Magill, Brad Apking",Notice of Change,Archived,View  +2022-05-03,-,Global Public Affairs,Insight Medical Imaging,Randy Pettipas,"Executive Council, Alberta Health, Alberta Legislative Assembly, Premier's Office","Alberta Health Services, Covenant Health",Health,CL-12730-01,Consultant Lobbyist,"Candice Laws, Farid Foroud, Glenn Monteith",Initial Return,Archived,View  +2022-05-03,-,Enbridge Inc.,-,Al Monaco,"Alberta Environment and Parks, Alberta Energy, Alberta Municipal Affairs, Alberta Jobs, Economy and Innovation, Alberta Indigenous Relations, Executive Council, Alberta Health, Alberta Treasury Board and Finance, Premier's Office","Alberta Petroleum Marketing Commission, Alberta Health Services, Alberta Innovates, Alberta Energy Regulator, Invest Alberta Corporation, Alberta Indigenous Opportunities Corporation","Energy, Environment, Municipal Affairs, Indigenous Relations, Wildlife",OL-10294-27,Organization Lobbyist,"Geoff Holmlund, Leo Golden, Colin Gruending, Nadine Barber, Phillip Anderson, Adam Chalkley, Mike Fernandez, Tom Palak, Byron Neiles, Brittany Kelly, Amanda Affonso, Bob Rooney, Al Monaco, Vern Yu, Mike Gladstone, Matt Grant, Laszlo Varsanyi, Marlon Samuel, Brian Johnson, Trevor McLeod, Jason Kearns, Emily Black, Graham Shanks, Matthew Akman, Islam Elsayed, Sam Munckhof-Swain, Chad Dechaine, Richard Paglia, Edwin Makkinga, Santiago Arribas Picon, Kim Brenneis, Jeff Kler",Notice of Change,Archived,View  +2022-05-03,-,Energy Services Association of Canada,-,Jackie Duarte,Alberta Legislative Assembly,-,Environment,OL-10807-09,Organization Lobbyist,Stuart Galloway,Semi-Annual Renewal,Archived, diff --git a/backend/app/app/data/sample_graph3.json b/backend/app/app/data/sample_graph3.json new file mode 100644 index 00000000..e5323a9c --- /dev/null +++ b/backend/app/app/data/sample_graph3.json @@ -0,0 +1 @@ +{"nodes": [{"id": "alexanderpourbaix", "name": "ALEXANDER POURBAIX", "person": true, "db_id": 278}, {"id": "canadianutilitieslimited", "name": "CANADIAN UTILITIES LIMITED", "person": false, "db_id": 95}, {"id": "rogerurwin", "name": "ROGER URWIN", "person": true, "db_id": 279}, {"id": "roberthanf", "name": "ROBERT HANF", "person": true, "db_id": 280}, {"id": "hectorrangel", "name": "HECTOR RANGEL", "person": true, "db_id": 281}, {"id": "laurareed", "name": "LAURA REED", "person": true, "db_id": 282}, {"id": "matthiasbichsel", "name": "MATTHIAS BICHSEL", "person": true, "db_id": 283}, {"id": "lindasouthernheathcott", "name": "LINDA SOUTHERN-HEATHCOTT", "person": true, "db_id": 284}, {"id": "lorainecharlton", "name": "LORAINE CHARLTON", "person": true, "db_id": 285}, {"id": "nancysouthern", "name": "Nancy Southern", "person": true, "db_id": 89}, {"id": "robertnormand", "name": "ROBERT NORMAND", "person": true, "db_id": 286}, {"id": "waynewouters", "name": "WAYNE WOUTERS", "person": true, "db_id": 287}, {"id": "treasuryboardofcanadasecretariattbs", "name": "Treasury Board Of Canada Secretariat (TBS)", "person": false, "db_id": 972}, {"id": "privycouncilofficepco", "name": "Privy Council Office (PCO)", "person": false, "db_id": 952}, {"id": "houseofcommons", "name": "House of Commons", "person": false, "db_id": 953}, {"id": "primeministersofficepmo", "name": "Prime Minister's Office (PMO)", "person": false, "db_id": 951}, {"id": "philsorgen", "name": "Phil Sorgen", "person": true, "db_id": 19649}, {"id": "indirasamarasekera", "name": "Indira Samarasekera", "person": true, "db_id": 632}, {"id": "randalleresman", "name": "Randall Eresman", "person": true, "db_id": 19584}, {"id": "rickhansen", "name": "Rick Hansen", "person": true, "db_id": 19508}, {"id": "haroldkvisle", "name": "Harold Kvisle", "person": true, "db_id": 354}, {"id": "jamesknight", "name": "James Knight", "person": true, "db_id": 19860}, {"id": "drharveyweingarten", "name": "Dr. Harvey Weingarten", "person": true, "db_id": 19735}, {"id": "davidcollyer", "name": "David Collyer", "person": true, "db_id": 19454}, {"id": "petermackinnon", "name": "Peter MacKinnon", "person": true, "db_id": 19497}, {"id": "brucemarch", "name": "Bruce March", "person": true, "db_id": 19476}, {"id": "lloydaxworthy", "name": "Lloyd Axworthy", "person": true, "db_id": 1813}, {"id": "pauldavidson", "name": "Paul Davidson", "person": true, "db_id": 19614}, {"id": "eliotphillipson", "name": "Eliot Phillipson", "person": true, "db_id": 3288}, {"id": "juliedill", "name": "Julie Dill", "person": true, "db_id": 20007}, {"id": "virginiagreene", "name": "Virginia Greene", "person": true, "db_id": 19893}, {"id": "perrinbeatty", "name": "Perrin Beatty", "person": true, "db_id": 19561}, {"id": "petergeorge", "name": "Peter George", "person": true, "db_id": 19643}, {"id": "johnmanzoni", "name": "John Manzoni", "person": true, "db_id": 19965}, {"id": "richardgeorge", "name": "Richard George", "person": true, "db_id": 19447}, {"id": "kevindancey", "name": "Kevin Dancey", "person": true, "db_id": 19544}, {"id": "brockcarlton", "name": "Brock Carlton", "person": true, "db_id": 19534}, {"id": "viannetimmons", "name": "Vianne Timmons", "person": true, "db_id": 20288}, {"id": "gillespatry", "name": "Gilles Patry", "person": true, "db_id": 13070}, {"id": "mikelazaridis", "name": "Mike Lazaridis", "person": true, "db_id": 19815}, {"id": "johndirks", "name": "John Dirks", "person": true, "db_id": 20869}, {"id": "nobinarobinson", "name": "NOBINA ROBINSON", "person": true, "db_id": 19688}, {"id": "johnferguson", "name": "John Ferguson", "person": true, "db_id": 20933}, {"id": "nancycsouthern", "name": "Nancy C Southern", "person": true, "db_id": 20307}, {"id": "geraldgrandey", "name": "GERALD GRANDEY", "person": true, "db_id": 19640}, {"id": "patrickdaniel", "name": "Patrick Daniel", "person": true, "db_id": 19400}, {"id": "allanrock", "name": "Allan Rock", "person": true, "db_id": 1221}, {"id": "russellgirling", "name": "Russell Girling", "person": true, "db_id": 736}, {"id": "marcparent", "name": "MARC PARENT", "person": true, "db_id": 228}, {"id": "heathermunroeblum", "name": "Heather Munroe-Blum", "person": true, "db_id": 20434}, {"id": "gregebel", "name": "Greg Ebel", "person": true, "db_id": 457}, {"id": "johnmanley", "name": "John Manley", "person": true, "db_id": 1710}, {"id": "davidbarnard", "name": "David Barnard", "person": true, "db_id": 19968}, {"id": "davidnaylor", "name": "David Naylor", "person": true, "db_id": 13587}, {"id": "elizabethcannon", "name": "Elizabeth Cannon", "person": true, "db_id": 20401}, {"id": "artreitmayer", "name": "Art Reitmayer", "person": true, "db_id": 20705}, {"id": "marcellauziere", "name": "MARCEL LAUZIERE", "person": true, "db_id": 20334}, {"id": "davidmarit", "name": "David Marit", "person": true, "db_id": 19644}, {"id": "dougsteele", "name": "Doug Steele", "person": true, "db_id": 19826}, {"id": "timgitzel", "name": "Tim Gitzel", "person": true, "db_id": 20678}, {"id": "elyseallan", "name": "Elyse Allan", "person": true, "db_id": 19494}, {"id": "danielwoolf", "name": "Daniel Woolf", "person": true, "db_id": 20201}, {"id": "georgecope", "name": "George Cope", "person": true, "db_id": 19664}, {"id": "jaysonmyers", "name": "Jayson Myers", "person": true, "db_id": 19387}, {"id": "thorstenheins", "name": "Thorsten Heins", "person": true, "db_id": 20853}, {"id": "gerardprotti", "name": "GERARD PROTTI", "person": true, "db_id": 21081}, {"id": "doramyehling", "name": "Doramy Ehling", "person": true, "db_id": 20909}, {"id": "stevenwilliams", "name": "Steven Williams", "person": true, "db_id": 466}, {"id": "mikeashar", "name": "Mike Ashar", "person": true, "db_id": 462}, {"id": "darrenentwistle", "name": "Darren Entwistle", "person": true, "db_id": 19717}, {"id": "louisaudet", "name": "LOUIS AUDET", "person": true, "db_id": 378}, {"id": "douglasbloom", "name": "Douglas Bloom", "person": true, "db_id": 19589}, {"id": "pierremeulien", "name": "Pierre Meulien", "person": true, "db_id": 6444}, {"id": "garthwhyte", "name": "Garth Whyte", "person": true, "db_id": 19892}, {"id": "maxblouw", "name": "Max Blouw", "person": true, "db_id": 20308}, {"id": "davidturpin", "name": "David Turpin", "person": true, "db_id": 19990}, {"id": "greggsaretsky", "name": "Gregg Saretsky", "person": true, "db_id": 20295}, {"id": "mamdouhshoukri", "name": "Mamdouh Shoukri", "person": true, "db_id": 19684}, {"id": "ilenebuschvishniac", "name": "Ilene Busch-Vishniac", "person": true, "db_id": 21008}, {"id": "maxwelllong", "name": "Maxwell Long", "person": true, "db_id": 21058}, {"id": "roberthardt", "name": "Robert Hardt", "person": true, "db_id": 20968}, {"id": "brianfrank", "name": "Brian Frank", "person": true, "db_id": 21030}, {"id": "nigellockyer", "name": "Nigel Lockyer", "person": true, "db_id": 20009}, {"id": "kevinreinhart", "name": "Kevin Reinhart", "person": true, "db_id": 20836}, {"id": "ronstyles", "name": "Ron Styles", "person": true, "db_id": 20309}, {"id": "derekburney", "name": "Derek Burney", "person": true, "db_id": 21310}, {"id": "calinrovinescu", "name": "Calin Rovinescu", "person": true, "db_id": 122}, {"id": "paulmadden", "name": "Paul Madden", "person": true, "db_id": 21199}, {"id": "alexmestres", "name": "Alex Mestres", "person": true, "db_id": 21387}, {"id": "robertajamieson", "name": "Roberta Jamieson", "person": true, "db_id": 19415}, {"id": "bradshaw", "name": "Brad Shaw", "person": true, "db_id": 20674}, {"id": "jackkay", "name": "JACK KAY", "person": true, "db_id": 20769}, {"id": "mandyshapansky", "name": "Mandy Shapansky", "person": true, "db_id": 21412}, {"id": "gordnixon", "name": "Gord Nixon", "person": true, "db_id": 19411}, {"id": "pierrebeaudoin", "name": "Pierre Beaudoin", "person": true, "db_id": 143}, {"id": "robertcard", "name": "Robert Card", "person": true, "db_id": 21107}, {"id": "williampristanski", "name": "WILLIAM PRISTANSKI", "person": true, "db_id": 19718}, {"id": "jonathanwhitworth", "name": "Jonathan Whitworth", "person": true, "db_id": 20407}, {"id": "matthewtriemstra", "name": "Matthew Triemstra", "person": true, "db_id": 20436}, {"id": "brendakenny", "name": "Brenda Kenny", "person": true, "db_id": 19654}], "links": [{"source": "canadianutilitieslimited", "target": "alexanderpourbaix"}, {"source": "rogerurwin", "target": "canadianutilitieslimited"}, {"source": "roberthanf", "target": "canadianutilitieslimited"}, {"source": "hectorrangel", "target": "canadianutilitieslimited"}, {"source": "laurareed", "target": "canadianutilitieslimited"}, {"source": "matthiasbichsel", "target": "canadianutilitieslimited"}, {"source": "lindasouthernheathcott", "target": "canadianutilitieslimited"}, {"source": "lorainecharlton", "target": "canadianutilitieslimited"}, {"source": "nancysouthern", "target": "canadianutilitieslimited"}, {"source": "robertnormand", "target": "canadianutilitieslimited"}, {"source": "waynewouters", "target": "canadianutilitieslimited"}, {"source": "canadianutilitieslimited", "target": "waynewouters"}, {"source": "treasuryboardofcanadasecretariattbs", "target": "waynewouters"}, {"source": "privycouncilofficepco", "target": "waynewouters"}, {"source": "houseofcommons", "target": "waynewouters"}, {"source": "primeministersofficepmo", "target": "waynewouters"}, {"source": "philsorgen", "target": "waynewouters"}, {"source": "indirasamarasekera", "target": "waynewouters"}, {"source": "randalleresman", "target": "waynewouters"}, {"source": "randalleresman", "target": "waynewouters"}, {"source": "rickhansen", "target": "waynewouters"}, {"source": "haroldkvisle", "target": "waynewouters"}, {"source": "jamesknight", "target": "waynewouters"}, {"source": "drharveyweingarten", "target": "waynewouters"}, {"source": "davidcollyer", "target": "waynewouters"}, {"source": "petermackinnon", "target": "waynewouters"}, {"source": "brucemarch", "target": "waynewouters"}, {"source": "lloydaxworthy", "target": "waynewouters"}, {"source": "pauldavidson", "target": "waynewouters"}, {"source": "eliotphillipson", "target": "waynewouters"}, {"source": "indirasamarasekera", "target": "waynewouters"}, {"source": "juliedill", "target": "waynewouters"}, {"source": "virginiagreene", "target": "waynewouters"}, {"source": "perrinbeatty", "target": "waynewouters"}, {"source": "rickhansen", "target": "waynewouters"}, {"source": "petergeorge", "target": "waynewouters"}, {"source": "johnmanzoni", "target": "waynewouters"}, {"source": "pauldavidson", "target": "waynewouters"}, {"source": "drharveyweingarten", "target": "waynewouters"}, {"source": "richardgeorge", "target": "waynewouters"}, {"source": "lloydaxworthy", "target": "waynewouters"}, {"source": "kevindancey", "target": "waynewouters"}, {"source": "brucemarch", "target": "waynewouters"}, {"source": "rickhansen", "target": "waynewouters"}, {"source": "eliotphillipson", "target": "waynewouters"}, {"source": "haroldkvisle", "target": "waynewouters"}, {"source": "richardgeorge", "target": "waynewouters"}, {"source": "brockcarlton", "target": "waynewouters"}, {"source": "petermackinnon", "target": "waynewouters"}, {"source": "viannetimmons", "target": "waynewouters"}, {"source": "gillespatry", "target": "waynewouters"}, {"source": "mikelazaridis", "target": "waynewouters"}, {"source": "pauldavidson", "target": "waynewouters"}, {"source": "johndirks", "target": "waynewouters"}, {"source": "nobinarobinson", "target": "waynewouters"}, {"source": "indirasamarasekera", "target": "waynewouters"}, {"source": "johnferguson", "target": "waynewouters"}, {"source": "pauldavidson", "target": "waynewouters"}, {"source": "pauldavidson", "target": "waynewouters"}, {"source": "nancycsouthern", "target": "waynewouters"}, {"source": "petermackinnon", "target": "waynewouters"}, {"source": "geraldgrandey", "target": "waynewouters"}, {"source": "rickhansen", "target": "waynewouters"}, {"source": "nancycsouthern", "target": "waynewouters"}, {"source": "patrickdaniel", "target": "waynewouters"}, {"source": "viannetimmons", "target": "waynewouters"}, {"source": "allanrock", "target": "waynewouters"}, {"source": "russellgirling", "target": "waynewouters"}, {"source": "randalleresman", "target": "waynewouters"}, {"source": "nancycsouthern", "target": "waynewouters"}, {"source": "richardgeorge", "target": "waynewouters"}, {"source": "jamesknight", "target": "waynewouters"}, {"source": "rickhansen", "target": "waynewouters"}, {"source": "petermackinnon", "target": "waynewouters"}, {"source": "marcparent", "target": "waynewouters"}, {"source": "heathermunroeblum", "target": "waynewouters"}, {"source": "gregebel", "target": "waynewouters"}, {"source": "johnmanley", "target": "waynewouters"}, {"source": "davidbarnard", "target": "waynewouters"}, {"source": "davidnaylor", "target": "waynewouters"}, {"source": "pauldavidson", "target": "waynewouters"}, {"source": "elizabethcannon", "target": "waynewouters"}, {"source": "artreitmayer", "target": "waynewouters"}, {"source": "pauldavidson", "target": "waynewouters"}, {"source": "rickhansen", "target": "waynewouters"}, {"source": "marcellauziere", "target": "waynewouters"}, {"source": "viannetimmons", "target": "waynewouters"}, {"source": "nancycsouthern", "target": "waynewouters"}, {"source": "indirasamarasekera", "target": "waynewouters"}, {"source": "randalleresman", "target": "waynewouters"}, {"source": "davidmarit", "target": "waynewouters"}, {"source": "dougsteele", "target": "waynewouters"}, {"source": "elizabethcannon", "target": "waynewouters"}, {"source": "davidbarnard", "target": "waynewouters"}, {"source": "davidnaylor", "target": "waynewouters"}, {"source": "gillespatry", "target": "waynewouters"}, {"source": "timgitzel", "target": "waynewouters"}, {"source": "elyseallan", "target": "waynewouters"}, {"source": "danielwoolf", "target": "waynewouters"}, {"source": "johnmanley", "target": "waynewouters"}]} \ No newline at end of file diff --git a/backend/app/app/data/corp_tsx/20211020_tsx_comp_index.csv b/backend/app/app/data/wiki_tsx/20210920_comp_index_tsx.csv similarity index 100% rename from backend/app/app/data/corp_tsx/20211020_tsx_comp_index.csv rename to backend/app/app/data/wiki_tsx/20210920_comp_index_tsx.csv diff --git a/backend/app/app/database/initial_inserts.py b/backend/app/app/database/00_initial_inserts.py similarity index 83% rename from backend/app/app/database/initial_inserts.py rename to backend/app/app/database/00_initial_inserts.py index 42f0e394..f6c43aac 100644 --- a/backend/app/app/database/initial_inserts.py +++ b/backend/app/app/database/00_initial_inserts.py @@ -42,6 +42,8 @@ def ensure_source(eng: engine, sl: Source): "Charity", "Professional Association", "Political Party", + "Unclassified", + "Trade Union" ] sector_list = ["Government"] org_list = { @@ -52,7 +54,7 @@ def ensure_source(eng: engine, sl: Source): db_name = "lq_test" db_user = "test_user" db_pw = "changethis" - schema_name = "lf_mockup" + schema_name = "lf_mockup_2" motor = create_engine( f"postgresql+psycopg2://{db_user}:{db_pw}@localhost/{db_name}", echo=True @@ -64,9 +66,9 @@ def ensure_source(eng: engine, sl: Source): stat = select(OrganizationType.id).where( OrganizationType.match_name == create_match_name(tn) ) - res = session.exec(stat).all() + res = session.exec(stat).first() - if len(res) == 0: + if res is None: ot = OrganizationType(display_name=tn, match_name=create_match_name(tn)) session.add(ot) @@ -75,11 +77,15 @@ def ensure_source(eng: engine, sl: Source): session = Session(motor) for s in sector_list: - stat = select(SectorIndustry.id).where(SectorIndustry.sector_match_name == create_match_name(s)) - res = session.exec(stat).all() + stat = select(SectorIndustry.id).where( + SectorIndustry.sector_match_name == create_match_name(s) + ) + res = session.exec(stat).first() - if len(res) == 0: - sec = SectorIndustry(sector_display_name=s, sector_match_name=create_match_name(s)) + if res is None: + sec = SectorIndustry( + sector_display_name=s, sector_match_name=create_match_name(s) + ) session.add(sec) session.commit() session.close() @@ -89,9 +95,9 @@ def ensure_source(eng: engine, sl: Source): stat = select(Organization.id).where( Organization.match_name == create_match_name(on) ) - res = session.exec(stat).all() + res = session.exec(stat).first() - if len(res) == 0: + if res is None: src_id = ensure_source(motor, initial_source) org_sec = org_list[on]["sector"] @@ -107,10 +113,10 @@ def ensure_source(eng: engine, sl: Source): stat = select(OrganizationType.id).where( OrganizationType.match_name == create_match_name(org_type) ) - res = session.exec(stat).all() - if len(res) == 0: + res = session.exec(stat).first() + if res is None: raise RuntimeError("org type not in database") - org_type_id = res[0] + org_type_id = res orgo = Organization( display_name=on, diff --git a/backend/app/app/database/01_insert_sources.py b/backend/app/app/database/01_insert_sources.py new file mode 100644 index 00000000..0ac20d86 --- /dev/null +++ b/backend/app/app/database/01_insert_sources.py @@ -0,0 +1,118 @@ +import datetime +import os +import pathlib +from sqlmodel import Session, create_engine, select +from schema_creation.sqlmodel_build import ( + Source +) +from pathlib import Path + +# Manually designate sources +# 2022-11-21 + +# date_obtained: date = Field(sa_column=sa.Column(sa.Date, nullable=False)) +# data_source: str +# misc_data: dict = Field(default={}, sa_column=sa.Column(pg.JSONB)) + +# Preamble, folder locations +project_name = "app" # collide\backend\app\app +data_dir = "data" +data_dir_members = "members_xml" +data_dir_cabinet = "cabinet_xml" +data_dir_boards = "corp_board" + +# Folder creation, directories +curr_dir_name = os.path.dirname(__file__) + +absolute_project_path = None +for i in pathlib.Path(curr_dir_name).parents: + if i.name == project_name: + absolute_project_path = i.absolute() + break + +our_commons_file_list = [] +file_dir = os.path.join(absolute_project_path, data_dir, data_dir_members) + +for path in Path(file_dir).rglob("*"): + if os.path.isfile(path): + our_commons_file_list.append(os.path.basename(path)) + +file_dir = os.path.join(absolute_project_path, data_dir, data_dir_cabinet) + +for path in Path(file_dir).rglob("*"): + if os.path.isfile(path): + our_commons_file_list.append(os.path.basename(path)) + +file_dir = os.path.join(absolute_project_path, data_dir, data_dir_boards) + +corp_directors_list = [] +for path in Path(file_dir).glob("*.csv"): + corp_directors_list.append(os.path.basename(path)) + +manual_sources = [ + {"date_obtained": datetime.datetime.fromisoformat("2022-11-19T23:17:00+00:00"), # UTC ISO + "data_source": "Office of the Commissioner of Lobbying of Canada, Lobbying Registrations", + "misc_data": {"filenames": ["Registration_BeneficiariesExport.csv", + "Registration_CommunicationTechniquesExport.csv", + "Registration_ConsultantLobbyistsExport.csv", + "Registration_GovernmentInstExport.csv", + "Registration_GovtFundingExport.csv", + "Registration_InHouseLobbyistsExport.csv", + "Registration_ManuallyEntered_GovernmentInstExport.csv", + "Registration_PrimaryExport.csv", + "Registration_PublicOfficeExport.csv", + "Registration_SubjectMatterDetailsExport.csv", + "Registration_SubjectMattersExport.csv"], + "url": "https://lobbycanada.gc.ca/en/open-data/"}}, + {"date_obtained": datetime.datetime.fromisoformat("2022-11-19T23:17:00+00:00"), + "data_source": "Office of the Commissioner of Lobbying of Canada, Monthly Communication Reports", + "misc_data": {"filenames": ["Communication_DpohExport.csv", + "Communication_PrimaryExport.csv", + "Communication_SubjectMattersExport.csv"], + "url": "https://lobbycanada.gc.ca/en/open-data/"}}, + {"date_obtained": datetime.datetime.fromisoformat("2022-11-13T21:36:00+00:00"), + "data_source": "Wikipedia, S&P/TSX Composite Index", + "misc_data": {"filenames": ["20210920_comp_index_tsx.csv"], + "url": "https://en.wikipedia.org/wiki/S%26P/TSX_Composite_Index"}}, + {"date_obtained": datetime.datetime.fromisoformat("2022-11-11T00:00:00+00:00"), + "data_source": "Innovation, Science and Economic Development Canada, Corporations Canada Search", + "misc_data": {"filenames": ["20221111_corp_no_listing.csv"], + "url": "https://www.ic.gc.ca/app/scr/cc/CorporationsCanada/fdrlCrpSrch.html"}}, + {"date_obtained": datetime.datetime.fromisoformat("2022-11-11T00:00:00+00:00"), + "data_source": "Innovation, Science and Economic Development Canada, Corporations Canada API", + "misc_data": {"filenames": corp_directors_list, + "url": "https://ised-isde.canada.ca/site/corporations-canada/en/accessing-federal-corporation-json-datasets"}}, + {"date_obtained": datetime.datetime.fromisoformat("2022-11-13T21:36:00+00:00"), + "data_source": "House of Commons Canada", + "misc_data": {"filenames": our_commons_file_list, + "url": "https://www.ourcommons.ca/members/en"}} +] + +db_host = "localhost" +db_name = "lq_test" +db_user = "test_user" +db_pw = "changethis" +schema_name = "lf_mockup_2" + +motor = create_engine( + f"postgresql+psycopg2://{db_user}:{db_pw}@localhost/{db_name}", echo=True +) + +session = Session(motor) + +for each_dict in manual_sources: + # Check if it already exists with same timestamp + stat = select(Source.id).where( + Source.data_source == each_dict.get("data_source") + ).where( + Source.date_obtained == each_dict.get("date_obtained")) + res = session.exec(stat).all() + + if len(res) == 0: + ot = Source(data_source=each_dict.get("data_source"), + date_obtained=each_dict.get("date_obtained"), + misc_data=each_dict.get("misc_data")) + session.add(ot) + session.commit() + +session.close() diff --git a/backend/app/app/database/02_insert_sector_industry.py b/backend/app/app/database/02_insert_sector_industry.py new file mode 100644 index 00000000..e72601f4 --- /dev/null +++ b/backend/app/app/database/02_insert_sector_industry.py @@ -0,0 +1,64 @@ +import os +import pathlib +import pandas as pd +import glob +from sqlmodel import Session, create_engine, select, engine +from schema_creation.sqlmodel_build import ( + SectorIndustry +) +from parse_injest.utils import create_match_name + +# https://ised-isde.canada.ca/site/corporations-canada/en/data-services#1 + +# Preamble, folder locations +project_name = "app" # collide\backend\app\app +data_dir = "data" +data_dir_corp_tsx = "wiki_tsx" + +# Folder creation, directories +curr_dir_name = os.path.dirname(__file__) + +absolute_project_path = None +for i in pathlib.Path(curr_dir_name).parents: + if i.name == project_name: + absolute_project_path = i.absolute() + break + +file_dir = os.path.join(absolute_project_path, data_dir, data_dir_corp_tsx) +tsx_csv = glob.glob(file_dir + "/*tsx*.csv") + +if len(tsx_csv) > 1: + raise RuntimeError("More than one csv detected.") + +df = pd.read_csv(tsx_csv[0]) +sectors = df["section"].to_list() +industries = df["industry"].to_list() + +db_host = "localhost" +db_name = "lq_test" +db_user = "test_user" +db_pw = "changethis" +schema_name = "lf_mockup_2" + +motor = create_engine( + f"postgresql+psycopg2://{db_user}:{db_pw}@localhost/{db_name}", echo=True +) + +session = Session(motor) +for idx, itm in enumerate(sectors): + # Check if it already exists + stat = select(SectorIndustry.id).where( + SectorIndustry.sector_match_name == create_match_name(sectors[idx])).where( + SectorIndustry.industry_match_name == create_match_name(industries[idx]) + ) + res = session.exec(stat).all() + + if len(res) == 0: + ot = SectorIndustry(sector_display_name=sectors[idx], + sector_match_name=create_match_name(sectors[idx]), + industry_display_name=industries[idx], + industry_match_name=create_match_name(industries[idx])) + session.add(ot) + session.commit() + +session.close() diff --git a/backend/app/app/database/03_insert_topic.py b/backend/app/app/database/03_insert_topic.py new file mode 100644 index 00000000..13e77de9 --- /dev/null +++ b/backend/app/app/database/03_insert_topic.py @@ -0,0 +1,79 @@ +import os +import pathlib +import pandas as pd +import glob +from sqlmodel import Session, create_engine, select, engine +from schema_creation.sqlmodel_build import ( + CommsTopic +) +from parse_injest.utils import create_match_name + +# Preamble, folder locations +project_name = "app" # collide\backend\app\app +data_dir = "data" +data_dir_reg = "lobby_regs" +data_dir_comm = "lobby_comms" + +# Folder creation, directories +curr_dir_name = os.path.dirname(__file__) + +absolute_project_path = None +for i in pathlib.Path(curr_dir_name).parents: + if i.name == project_name: + absolute_project_path = i.absolute() + break + +file_dir = os.path.join(absolute_project_path, data_dir, data_dir_reg) +sub_csv_1 = glob.glob(file_dir + "/*SubjectMattersExport.csv") + +file_dir = os.path.join(absolute_project_path, data_dir, data_dir_comm) +sub_csv_2 = glob.glob(file_dir + "/*SubjectMattersExport.csv") + +sub_csv = sub_csv_1 + sub_csv_2 + +if len(sub_csv) > 2: + raise RuntimeError("More than expected two csv detected.") + +db_host = "localhost" +db_name = "lq_test" +db_user = "test_user" +db_pw = "changethis" +schema_name = "lf_mockup_2" + +motor = create_engine( + f"postgresql+psycopg2://{db_user}:{db_pw}@localhost/{db_name}", echo=False +) + +session = Session(motor) + +for each_file in sub_csv: + df = pd.read_csv(each_file) + subs = df["SUBJ_MATTER_OBJET"].to_list() + + try: + subs = subs + df["OTHER_SUBJ_MATTER_AUTRE_OBJET"].to_list() + print("Other subject exists") + except: + print("No other subject exists") + + i = 0 + + subs_unique = list(set(subs)) + + for itm in subs_unique: + print(f"{i} of {len(subs_unique)}") + # Check if it already exists + stat = select(CommsTopic.id).where( + CommsTopic.match_name == create_match_name(str(itm)) + ) + res = session.exec(stat).all() + + if len(res) == 0: + ot = CommsTopic(display_name=itm, + match_name=create_match_name(str(itm))) + session.add(ot) + session.commit() + + i = i + 1 + +session.close() diff --git a/backend/app/app/database/04_ingest_corp_info.py b/backend/app/app/database/04_ingest_corp_info.py new file mode 100644 index 00000000..a5887598 --- /dev/null +++ b/backend/app/app/database/04_ingest_corp_info.py @@ -0,0 +1,219 @@ +from datetime import date +import os +import pathlib +import pandas as pd +import glob +from sqlmodel import Session, create_engine, select, engine +from schema_creation.sqlmodel_build import ( + Person, Source, Organization, SectorIndustry, OrganizationType, OrganizationMembership, + # CorporateInfo, +) +from parse_injest.utils import create_match_name + +# Preamble, folder locations +project_name = "app" # collide\backend\app\app +data_dir = "data" +data_dir_corp_board = "corp_board" +data_dir_corp_no = "corp_no" +data_dir_tsx = "wiki_tsx" + +# Folder creation, directories +curr_dir_name = os.path.dirname(__file__) + +absolute_project_path = None +for i in pathlib.Path(curr_dir_name).parents: + if i.name == project_name: + absolute_project_path = i.absolute() + break + +board_dir = os.path.join(absolute_project_path, data_dir, data_dir_corp_board) +no_dir = os.path.join(absolute_project_path, data_dir, data_dir_corp_no) +tsx_dir = os.path.join(absolute_project_path, data_dir, data_dir_tsx) + +# Load corporation search results +no_csv = glob.glob(no_dir + "/*corp_no_listing.csv") +if len(no_csv) > 1: + raise RuntimeError("More than one csv detected.") + +df = pd.read_csv(no_csv[0]) +# 35,THE BANK OF NOVA SCOTIA,, Active, 105195598RC0001, 0950807 has no board? +df.drop([35], inplace=True) +name_1 = df["name1"].to_list() +corp_number = df["corp_number"].to_list() + +# Load tsx list for sector/industry +tsx_csv = glob.glob(tsx_dir + "/*tsx.csv") +if len(tsx_csv) > 1: + raise RuntimeError("More than one csv detected.") + +tsx_df = pd.read_csv(tsx_csv[0]) +tsx_name = tsx_df["company"].to_list() +tsx_sector = tsx_df["section"].to_list() +tsx_industry = tsx_df["industry"].to_list() + +# Dummy database information +db_host = "localhost" +db_name = "lq_test" +db_user = "test_user" +db_pw = "changethis" +schema_name = "lf_mockup_2" + +motor = create_engine( + f"postgresql+psycopg2://{db_user}:{db_pw}@localhost/{db_name}", echo=False +) + +session = Session(motor) + +for name, number in zip(name_1, corp_number): + board_csv = glob.glob(board_dir + f"/*{number}.csv") + board_df = pd.read_csv(board_csv[0]) + first_names = board_df["firstName"].to_list() + last_names = board_df["lastName"].to_list() + + # ORGANIZATION TABLE + # check if entry unique + stat = select(Organization.id).where( + Organization.match_name == create_match_name(name) + ) + res = session.exec(stat).all() + + if len(res) > 1: + raise RuntimeError("Too many organizations identified") + + if len(res) == 0: + # New organization + stat = select(Source.id).where( + Source.data_source == "Innovation, Science and Economic Development Canada, Corporations Canada Search" + ) + res_source = session.exec(stat).all() + + if len(res_source) > 1: + raise RuntimeError("Too many sources identified") + + stat = select(OrganizationType.id).where( + OrganizationType.match_name == "corporation" + ) + res_org_type = session.exec(stat).all() + + if len(res_org_type) > 1: + raise RuntimeError("Too many org types identified") + + tsx_sector_match = "nothing found" + tsx_industry_match = "nothing found" + + for idx, each_tsx_listing in enumerate(tsx_name): + if create_match_name(name) == create_match_name(each_tsx_listing): + tsx_sector_match = create_match_name(tsx_sector[idx]) + tsx_industry_match = create_match_name(tsx_industry[idx]) + break + + stat = select(SectorIndustry.id).where( + SectorIndustry.sector_match_name == tsx_sector_match + ).where( + SectorIndustry.industry_match_name == tsx_industry_match + ) + res_sector = session.exec(stat).all() + + if len(res_sector) == 1: + ot = Organization(display_name=name, + match_name=create_match_name(name), + organization_type=res_org_type[0], + sector=res_sector[0], + source=res_source[0], + misc_data={"corporate_number": number}) + else: + ot = Organization(display_name=name, + match_name=create_match_name(name), + organization_type=res_org_type[0], + source=res_source[0], + misc_data={"corporate_number": number}) + session.add(ot) + session.commit() + organization_id = ot.id + + else: + organization_id = res[0] + + # CORPORATE INFO TABLE + # stat = select(Organization.id).where( + # Organization.match_name == create_match_name(name) + # ) + # res_org = session.exec(stat).all() + # + # ot = CorporateInfo(organization=res_org[0], + # corporate_number=number, + # stock_ticker="obs", + # source=res_source[0]) + # session.add(ot) + # session.commit() + + # PERSON TABLE + for f, l in zip(first_names, last_names): + combo = f"{f} {l}" + + # Grab source details for Person and Membership + stat = select(Source.id).where( + Source.data_source == "Innovation, Science and Economic Development Canada, Corporations Canada API" + ) + res_source = session.exec(stat).all() + + if len(res_source) > 1: + raise RuntimeError("Too many sources identified") + + # check if entry unique + stat = select(Person.id).where( + Person.match_name == create_match_name(combo) + ) + res_person = session.exec(stat).all() + + if len(res_person) > 1: + raise RuntimeError("Too many persons identified") + + if len(res_person) == 0: + # if person entry is new + ot = Person(display_name=combo, + match_name=create_match_name(combo), + source=res_source[0]) + session.add(ot) + session.commit() + person_id = ot.id + else: + person_id = res_person[0] + + # MEMBERSHIP TABLE + # Grab source details for Person and Membership + # TODO: Add remaining logic to get most recent + stat = select(Source.date_obtained).where( + Source.data_source == "Innovation, Science and Economic Development Canada, Corporations Canada API" + ) + res_source_dt = session.exec(stat).all() + + # check if entry unique + stat = select(OrganizationMembership).where( + OrganizationMembership.person == person_id + ).where( + OrganizationMembership.organization == organization_id + ) + res_membership = session.exec(stat).all() + + if len(res_membership) > 1: + raise RuntimeError("Too many memberships identified") + + if len(res_membership) == 0: + # New membership + new_membership = OrganizationMembership(person=person_id, + organization=organization_id, + start_date=res_source_dt[0], + end_date=res_source_dt[0], + source=res_source[0]) + session.add(new_membership) + + else: + # Existing membership, update end_date + existing_membership = res_membership[0] + existing_membership.end_date = res_source_dt[0] + session.add(existing_membership) + session.commit() + +session.close() + diff --git a/backend/app/app/database/05_ingest_lobby_com_gov.py b/backend/app/app/database/05_ingest_lobby_com_gov.py new file mode 100644 index 00000000..aa15b218 --- /dev/null +++ b/backend/app/app/database/05_ingest_lobby_com_gov.py @@ -0,0 +1,196 @@ +from datetime import datetime +import os +import pathlib +import numpy as np +import pandas as pd +import glob +from sqlmodel import Session, create_engine, select, engine +from schema_creation.sqlmodel_build import ( + Person, Source, Organization, SectorIndustry, OrganizationType, OrganizationMembership, + # CorporateInfo, +) +from parse_injest.utils import create_match_name + +# Preamble, folder locations +project_name = "app" # collide\backend\app\app +data_dir = "data" +data_dir_com = "lobby_comms" +data_dir_reg = "lobby_reg" + +# Folder creation, directories +curr_dir_name = os.path.dirname(__file__) + +absolute_project_path = None +for i in pathlib.Path(curr_dir_name).parents: + if i.name == project_name: + absolute_project_path = i.absolute() + break + +com_dir = os.path.join(absolute_project_path, data_dir, data_dir_com) +reg_dir = os.path.join(absolute_project_path, data_dir, data_dir_reg) + + +dpoh_csv = glob.glob(com_dir + "/*DpohExport.csv") +if len(dpoh_csv) > 1: + raise RuntimeError("More than one csv detected.") +df_dpoh = pd.read_csv(dpoh_csv[0]) + +prim_csv = glob.glob(com_dir + "/*PrimaryExport.csv") +if len(prim_csv) > 1: + raise RuntimeError("More than one csv detected.") +df_prim = pd.read_csv(prim_csv[0]) + +df_dpoh = df_dpoh.merge(df_prim, on='COMLOG_ID', how='left') + +first_name_lst = df_dpoh["DPOH_FIRST_NM_PRENOM_TCPD"].to_list() +last_name_lst = df_dpoh["DPOH_LAST_NM_TCPD"].to_list() +df_dpoh["INSTITUTION"].replace("Other (Specify)", np.NaN, inplace=True) +df_dpoh["merged_institution"] = df_dpoh["INSTITUTION"].combine_first(df_dpoh["OTHER_INSTITUTION_AUTRE"]) +org_name_lst = df_dpoh["merged_institution"].to_list() +date_lst = df_dpoh["COMM_DATE"].to_list() + + +# Dummy database information +db_host = "localhost" +db_name = "lq_test" +db_user = "test_user" +db_pw = "changethis" +schema_name = "lf_mockup_2" + +motor = create_engine( + f"postgresql+psycopg2://{db_user}:{db_pw}@localhost/{db_name}", echo=False +) + +session = Session(motor) + +# Grab shared data source ID +# TODO: Add remaining logic to get most recent +stat = select(Source.id).where( + Source.data_source == "Office of the Commissioner of Lobbying of Canada, Monthly Communication Reports" +) +res_source = session.exec(stat).all() + +if len(res_source) > 1: + raise RuntimeError("Too many sources identified") + +# TODO: Fix all this duplicated code :| (resolve with member xml .py as well) +###################################################################################### +# Populate organizations of people in DPOH +###################################################################################### + +for name, f, l, dt in zip(org_name_lst, first_name_lst, last_name_lst, date_lst): + # ORGANIZATION TABLE + # check if entry unique + stat = select(Organization.id).where( + Organization.match_name == create_match_name(name) + ) + res = session.exec(stat).all() + + if len(res) > 1: + raise RuntimeError("Too many organizations identified") + + if len(res) == 0: + # New organization + + stat = select(OrganizationType.id).where( + OrganizationType.match_name == "government" + ) + res_org_type = session.exec(stat).all() + + if len(res_org_type) > 1: + raise RuntimeError("Too many org types identified") + + stat = select(Organization.id).where( + Organization.match_name == "federalgovernmentofcanada" + ) + res_parent = session.exec(stat).all() + + if len(res_parent) > 1: + raise RuntimeError("Too many org parents identified") + + stat = select(SectorIndustry.id).where( + SectorIndustry.sector_match_name == "government" + ) + res_sector = session.exec(stat).all() + + if len(res_sector) > 1: + raise RuntimeError("Too many sectors identified") + + ot = Organization(display_name=name, + match_name=create_match_name(name), + organization_type=res_org_type[0], + parent_organization=res_parent[0], + source=res_source[0], + sector=res_sector[0], + misc_data={}) + session.add(ot) + session.commit() + organization_id = ot.id + + else: + # Existing organization + organization_id = res[0] + +###################################################################################### +# Populate people table from DPOH names +###################################################################################### + combo = f"{f} {l}" + + # check if entry unique + stat = select(Person.id).where( + Person.match_name == create_match_name(combo) + ) + res_person = session.exec(stat).all() + + if len(res_person) > 1: + raise RuntimeError("Too many persons identified") + + if len(res_person) == 0: + # if person entry is new + ot = Person(display_name=combo, + match_name=create_match_name(combo), + source=res_source[0]) + session.add(ot) + session.commit() + person_id = ot.id + else: + # existing person + person_id = res_person[0] + + ###################################################################################### + # Populate memberships of people in DPOH + ###################################################################################### + # check if entry unique + stat = select(OrganizationMembership).where( + OrganizationMembership.person == person_id + ).where( + OrganizationMembership.organization == organization_id + ) + res_membership = session.exec(stat).all() + + if len(res_membership) > 1: + raise RuntimeError("Too many memberships identified") + + if len(res_membership) == 0: + # New membership + new_membership = OrganizationMembership(person=person_id, + organization=organization_id, + start_date=datetime.fromisoformat(dt), + end_date=datetime.fromisoformat(dt), + source=res_source[0]) + + session.add(new_membership) + + else: + # Existing membership, update end_date + existing_membership = res_membership[0] + + if existing_membership.end_date < datetime.fromisoformat(dt).date(): + existing_membership.end_date = datetime.fromisoformat(dt) + session.add(existing_membership) + session.commit() + + +print("END") + + diff --git a/backend/app/app/database/06_ingest_lobby_com_corp.py b/backend/app/app/database/06_ingest_lobby_com_corp.py new file mode 100644 index 00000000..8a74c482 --- /dev/null +++ b/backend/app/app/database/06_ingest_lobby_com_corp.py @@ -0,0 +1,176 @@ +from datetime import datetime +import os +import pathlib +import numpy as np +import pandas as pd +import glob +from sqlmodel import Session, create_engine, select, engine +from schema_creation.sqlmodel_build import ( + Person, Source, Organization, SectorIndustry, OrganizationType, OrganizationMembership +) +from parse_injest.utils import create_match_name + +# Preamble, folder locations +project_name = "app" # collide\backend\app\app +data_dir = "data" +data_dir_com = "lobby_comms" +data_dir_reg = "lobby_reg" + +# Folder creation, directories +curr_dir_name = os.path.dirname(__file__) + +absolute_project_path = None +for i in pathlib.Path(curr_dir_name).parents: + if i.name == project_name: + absolute_project_path = i.absolute() + break + +com_dir = os.path.join(absolute_project_path, data_dir, data_dir_com) +reg_dir = os.path.join(absolute_project_path, data_dir, data_dir_reg) + +prim_csv = glob.glob(com_dir + "/*PrimaryExport.csv") +if len(prim_csv) > 1: + raise RuntimeError("More than one csv detected.") +df_prim = pd.read_csv(prim_csv[0]) + +# Drop rows with EN_CLIENT_ORG_CORP_NM_AN as "*", blank, "null" +df_prim["EN_CLIENT_ORG_CORP_NM_AN"].replace("", np.NaN, inplace=True) +df_prim["EN_CLIENT_ORG_CORP_NM_AN"].replace("null", np.NaN, inplace=True) +df_prim["EN_CLIENT_ORG_CORP_NM_AN"].replace("nan", np.NaN, inplace=True) +df_prim["EN_CLIENT_ORG_CORP_NM_AN"].replace("*", np.NaN, inplace=True) +df_prim["merged_client_org"] = df_prim["EN_CLIENT_ORG_CORP_NM_AN"].combine_first(df_prim["FR_CLIENT_ORG_CORP_NM"]) +df_prim.dropna(subset=["merged_client_org"], inplace=True) + +first_name_lst = df_prim["RGSTRNT_1ST_NM_PRENOM_DCLRNT"].to_list() +last_name_lst = df_prim["RGSTRNT_LAST_NM_DCLRNT"].to_list() +org_name_lst = df_prim["merged_client_org"].to_list() +date_lst = df_prim["COMM_DATE"].to_list() + +# Dummy database information +db_host = "localhost" +db_name = "lq_test" +db_user = "test_user" +db_pw = "changethis" +schema_name = "lf_mockup_2" + +motor = create_engine( + f"postgresql+psycopg2://{db_user}:{db_pw}@localhost/{db_name}", echo=False +) + +session = Session(motor) + +# Grab shared data source ID +# TODO: Add remaining logic to get most recent +stat = select(Source.id).where( + Source.data_source == "Office of the Commissioner of Lobbying of Canada, Monthly Communication Reports" +) +res_source = session.exec(stat).all() + +if len(res_source) > 1: + raise RuntimeError("Too many sources identified") + +###################################################################################### +# Populate organizations of people in RGSTRNT +###################################################################################### + +for name, f, l, dt in zip(org_name_lst, first_name_lst, last_name_lst, date_lst): + # ORGANIZATION TABLE + # check if entry unique + print(f"name: {name}") + stat = select(Organization.id).where( + Organization.match_name == create_match_name(name) + ) + res = session.exec(stat).all() + + if len(res) > 1: + raise RuntimeError("Too many organizations identified") + + if len(res) == 0: + # New organization + + stat = select(OrganizationType.id).where( + OrganizationType.match_name == "unclassified" + ) + res_org_type = session.exec(stat).all() + + if len(res_org_type) > 1: + raise RuntimeError("Too many org types identified") + + ot = Organization(display_name=name, + match_name=create_match_name(name), + organization_type=res_org_type[0], + # parent_organization=res_parent[0], + source=res_source[0], + # sector=res_sector[0], + misc_data={}) + session.add(ot) + session.commit() + organization_id = ot.id + + else: + # Existing organization + organization_id = res[0] + +###################################################################################### +# Populate people table from RGSTRNT names +###################################################################################### + combo = f"{f} {l}" + + # check if entry unique + stat = select(Person.id).where( + Person.match_name == create_match_name(combo) + ) + res_person = session.exec(stat).all() + + if len(res_person) > 1: + raise RuntimeError("Too many persons identified") + + if len(res_person) == 0: + # if person entry is new + ot = Person(display_name=combo, + match_name=create_match_name(combo), + source=res_source[0]) + session.add(ot) + session.commit() + person_id = ot.id + else: + # existing person + person_id = res_person[0] + + ###################################################################################### + # Populate memberships of people in RGSTRNT + ###################################################################################### + # check if entry unique + stat = select(OrganizationMembership).where( + OrganizationMembership.person == person_id + ).where( + OrganizationMembership.organization == organization_id + ) + res_membership = session.exec(stat).all() + + if len(res_membership) > 1: + raise RuntimeError("Too many memberships identified") + + if len(res_membership) == 0: + # New membership + new_membership = OrganizationMembership(person=person_id, + organization=organization_id, + start_date=datetime.fromisoformat(dt), + end_date=datetime.fromisoformat(dt), + source=res_source[0]) + + session.add(new_membership) + + else: + # Existing membership, update end_date + existing_membership = res_membership[0] + + if existing_membership.end_date < datetime.fromisoformat(dt).date(): + existing_membership.end_date = datetime.fromisoformat(dt) + session.add(existing_membership) + session.commit() + + +print("END") + + diff --git a/backend/app/app/database/07_ingest_lobby_com_com.py b/backend/app/app/database/07_ingest_lobby_com_com.py new file mode 100644 index 00000000..c457cd88 --- /dev/null +++ b/backend/app/app/database/07_ingest_lobby_com_com.py @@ -0,0 +1,168 @@ +from datetime import datetime, date +import os +import pathlib +import pandas as pd +import numpy as np +import glob +from sqlmodel import Session, create_engine, select, engine +from schema_creation.sqlmodel_build import ( + Person, Source, CommsTopic, Communications, +) +from parse_injest.utils import create_match_name + +# Preamble, folder locations +project_name = "app" # collide\backend\app\app +data_dir = "data" +data_dir_com = "lobby_comms" + +# Folder creation, directories +curr_dir_name = os.path.dirname(__file__) + +absolute_project_path = None +for i in pathlib.Path(curr_dir_name).parents: + if i.name == project_name: + absolute_project_path = i.absolute() + break + +com_dir = os.path.join(absolute_project_path, data_dir, data_dir_com) + +dpoh_csv = glob.glob(com_dir + "/*DpohExport.csv") +if len(dpoh_csv) > 1: + raise RuntimeError("More than one csv detected.") +df_dpoh = pd.read_csv(dpoh_csv[0]) + +prim_csv = glob.glob(com_dir + "/*PrimaryExport.csv") +if len(prim_csv) > 1: + raise RuntimeError("More than one csv detected.") +df_prim = pd.read_csv(prim_csv[0]) + +topic_csv = glob.glob(com_dir + "/*SubjectMattersExport.csv") +if len(topic_csv) > 1: + raise RuntimeError("More than one csv detected.") +df_topic = pd.read_csv(topic_csv[0]) + +df_dpoh = df_dpoh.merge(df_prim, on='COMLOG_ID', how='left') +df_dpoh = df_dpoh.merge(df_topic, on='COMLOG_ID', how='left') +df_dpoh["SUBJ_MATTER_OBJET"].replace("Other", np.NaN, inplace=True) +df_dpoh["merged_topic"] = df_dpoh["SUBJ_MATTER_OBJET"].combine_first(df_dpoh["OTHER_SUBJ_MATTER_AUTRE_OBJET"]) + +gov_first_name_lst = df_dpoh["DPOH_FIRST_NM_PRENOM_TCPD"].to_list() +gov_last_name_lst = df_dpoh["DPOH_LAST_NM_TCPD"].to_list() +corp_first_name_lst = df_dpoh["RGSTRNT_1ST_NM_PRENOM_DCLRNT"].to_list() +corp_last_name_lst = df_dpoh["RGSTRNT_LAST_NM_DCLRNT"].to_list() +topic_lst = df_dpoh["merged_topic"].to_list() +date_lst = df_dpoh["COMM_DATE"].to_list() + + +# Dummy database information +db_host = "localhost" +db_name = "lq_test" +db_user = "test_user" +db_pw = "changethis" +schema_name = "lf_mockup_2" + +verbose = False +motor = create_engine( + f"postgresql+psycopg2://{db_user}:{db_pw}@localhost/{db_name}", echo=verbose +) + +session = Session(motor) + +# Grab shared data source ID +# TODO: Add remaining logic to get most recent +stat = select(Source.id).where( + Source.data_source == "Office of the Commissioner of Lobbying of Canada, Monthly Communication Reports" +) +res_source = session.exec(stat).all() + +if len(res_source) > 1: + raise RuntimeError("Too many sources identified") + +# TODO: Fix all this duplicated code :| (resolve with member xml .py as well) +###################################################################################### +# Populate organizations of people in DPOH +###################################################################################### + +for gov_f, gov_l, corp_f, corp_l, topic, dt in zip(gov_first_name_lst, gov_last_name_lst, + corp_first_name_lst, corp_last_name_lst, + topic_lst, date_lst): + # if datetime.fromisoformat(dt).date() > date(2022, 6, 14): + # continue + + # Gov and corp names should already be populated in table + gov_party = f"{gov_f} {gov_l}" + gov_party = create_match_name(gov_party) + + corp_party = f"{corp_f} {corp_l}" + corp_party = create_match_name(corp_party) + + # Get party_1 ID + stat = select(Person.id).where( + Person.match_name == gov_party + ) + res_gov = session.exec(stat).all() + + if len(res_gov) > 1: + raise RuntimeError("Too many people identified") + + # Get party_2 ID + stat = select(Person.id).where( + Person.match_name == corp_party + ) + res_corp = session.exec(stat).all() + + if len(res_corp) > 1: + raise RuntimeError("Too many people identified") + + if len(res_gov) == 0 or len(res_corp) == 0: + raise RuntimeError("Run prior step to ensure corp and gov parties are populated in person table") + + # COMM TABLE + # check if entry unique + stat = select(Communications.id).where( + Communications.party_1 == res_gov[0] + ).where( + Communications.party_2 == res_corp[0] + ).where( + Communications.com_date == datetime.fromisoformat(dt).date() + ) + res_1 = session.exec(stat).all() + + if len(res_1) > 1: + raise RuntimeError("Too many communications identified") + + stat = select(Communications.id).where( + Communications.party_1 == res_corp[0] + ).where( + Communications.party_2 == res_gov[0] + ).where( + Communications.com_date == datetime.fromisoformat(dt).date() + ) + res_2 = session.exec(stat).all() + + if len(res_2) > 1: + raise RuntimeError("Too many communications identified") + + if len(res_1) == 0 and len(res_2) == 0: + # New communication + # Get topic ID + stat = select(CommsTopic.id).where( + CommsTopic.match_name == create_match_name(topic) + ) + res_topic = session.exec(stat).all() + + if len(res_topic) > 1: + raise RuntimeError("Too many topics identified") + + if verbose: + print(f"TOPIC: {topic}") + + ot = Communications(party_1=res_gov[0], + party_2=res_corp[0], + com_date=datetime.fromisoformat(dt), + topic=res_topic[0], + source=res_source[0] + ) + + session.add(ot) + session.commit() diff --git a/backend/app/app/database/08_ingest_contrib.py b/backend/app/app/database/08_ingest_contrib.py new file mode 100644 index 00000000..cca7abfe --- /dev/null +++ b/backend/app/app/database/08_ingest_contrib.py @@ -0,0 +1,338 @@ +import datetime +import glob +import os +import pathlib +import pandas as pd +import common_func as cf + + +class Transaction: + + def __init__(self, pol_ent, recip_f, recip_l, recip_party, fiscal_date, con_type, con_f, con_l, amt): + self.pol_ent = pol_ent + self.recip_f = recip_f + self.recip_l = recip_l + self.recip_party = recip_party + self.fiscal_date = fiscal_date + self.con_type = con_type + self.con_l = con_l + self.con_f = con_f + self.amt = amt + + +class ElxCsv: + # Collecting everything up front + # Electoral District ignored as membership (not elected and otherwise captured as MP) + + def __init__(self, file_paths): + for each_file in file_paths: + if "meta" in str(each_file): + self.meta_path = each_file + else: + self.data_path = each_file + + self.df = None + self.transactions = None + self.date_scraped = None + self.source_name = None + self.source_url = None + + self.recip_ent_ppl = ["candidates", + "leadership contestants", + "nomination contestants"] + + self.recip_ent_parties = ["registered parties", + "registered associations"] + + self.contrib_ppl = ["individuals"] + self.contrib_corp = ["corporations"] + self.contrib_bus = ["businesses"] + self.contrib_union = ["trade"] + self.contrib_assoc = ["associations"] + self.contrib_gov = ["governments"] + + def load_csv(self): + self.df = pd.read_csv(self.data_path) + + # self.df = pd.read_csv(self.data_path, nrows=100) + # Person to Org, Org to Org donation example (not in first 100 rows) + # self.df = pd.read_csv(self.data_path, nrows=358695) + # self.df = self.df.iloc[358595:] + + def load_meta_txt(self): + temp_df = pd.read_csv(self.meta_path) + self.date_scraped = temp_df["date_scraped"].to_list()[0] + self.source_name = temp_df["source_name"].to_list()[0] + self.source_url = temp_df["source_url"].to_list()[0] + + def build_transactions(self): + pe = self.df["Political Entity"].to_list() + rl = self.df["Recipient last name"].to_list() + rf = self.df["Recipient first name"].to_list() + p = self.df["Political Party of Recipient"].to_list() + d = self.df["Fiscal/Election date"].to_list() + + ct = self.df["Contributor type"].to_list() + col = self.df["Contributor last name"].to_list() + cof = self.df["Contributor first name"].to_list() + amt = self.df["Monetary amount"].to_list() + other_amt = self.df["Non-Monetary amount"].to_list() + + tsn = [] + for idx, each_pe in enumerate(pe): + tsn.append(Transaction(str(pe[idx]), + str(rf[idx]), + str(rl[idx]), + str(p[idx]), + str(d[idx]), + str(ct[idx]), + str(cof[idx]), + str(col[idx]), + int(abs(float(amt[idx]))+abs(float(other_amt[idx]))) + ) + ) + self.transactions = tsn + + +# Preamble, folder locations +project_name = "app" # collide\backend\app\app +data_dir = "data" +data_dir_contrib = "ecanada_contrib" + +# Folder creation, directories +curr_dir_name = os.path.dirname(__file__) + +absolute_project_path = None +for i in pathlib.Path(curr_dir_name).parents: + if i.name == project_name: + absolute_project_path = i.absolute() + break + +contrib_dir = os.path.join(absolute_project_path, data_dir, data_dir_contrib) + +contrib_csv = glob.glob(contrib_dir + "/*.csv") + +if len(contrib_csv) > 2: + raise RuntimeError("More than two csv detected.") + +election_csv = ElxCsv(contrib_csv) +election_csv.load_csv() +election_csv.load_meta_txt() +election_csv.build_transactions() + +threshold_amt = 500.0 +tsn_above_threshold = [x for x in election_csv.transactions if x.amt >= threshold_amt] + +# TODO: Change this depending on debug vs production +session = cf.create_session() + +src_objs = cf.add_sources(session, + [{ + "data_source": election_csv.source_name, + "date_obtained": datetime.datetime.fromisoformat(election_csv.date_scraped).date(), + "misc_data": {"filenames": [os.path.basename(election_csv.data_path)], + "url": election_csv.source_url} + }]) + +# Insert people to people fund transfers +# From Contributor type con_type = contrib_ppl --> Recipient type pol_ent = recip_ent_ppl (filter) +tsn_p2p = [x for x in tsn_above_threshold if (x.con_type.lower() in election_csv.contrib_ppl) and (x.pol_ent.lower() in election_csv.recip_ent_ppl)] + +for each_tsn in tsn_p2p: + # CONTRIBUTOR: Retrieve id from People (exists) or create People entry w/ no memberships (new) + contrib_obj = cf.add_people(session, [{ + "name": f"{each_tsn.con_f} {each_tsn.con_l}", + "ppl_source_id": src_objs[0].id + }]) + + # RECIPIENT: Retrieve id from People (exists) or + # create People entry w/ "Political Party of Recipient" membership (new) + # Add recipient (person) + recip_obj = cf.add_people(session, [{ + "name": f"{each_tsn.recip_f} {each_tsn.recip_l}", + "ppl_source_id": src_objs[0].id + }]) + + # Add organization that recipient is a member of (political party) + recip_party_name = each_tsn.recip_party + if each_tsn.recip_party == "No Affiliation": + recip_party_name = "Independent" + + recip_org_obj = cf.add_organizations(session, [{ + "name": recip_party_name, + "org_type_str": "Political Party", + "org_sector_str": "Government", + "org_source_id": src_objs[0].id, + "misc": {} + + }]) + + # Add membership of recipient to organization + recip_mem_obj = cf.add_memberships(session, [{ + "person_id": recip_obj[0].id, + "org_id": recip_org_obj[0].id, + "start_date": each_tsn.fiscal_date, + "end_date": each_tsn.fiscal_date, + "source_id": src_objs[0].id, + }]) + + # party_1 = contributor; party_2 = recipient, positive AMT + funds_obj = cf.add_funding_p2p(session, [{ + "party_1": contrib_obj[0].id, + "party_2": recip_obj[0].id, + "amount": each_tsn.amt, + "start_date": each_tsn.fiscal_date, + "end_date": each_tsn.fiscal_date, + "source_id": src_objs[0].id + }]) + +# Insert org to people fund transfers +# From Contributor type = contrib_corp, _union, _assoc, _gov, _bus --> Recipient type = recip_ent_ppl (filter) +contrib_org_list = election_csv.contrib_corp + election_csv.contrib_union + election_csv.contrib_assoc + election_csv.contrib_gov + election_csv.contrib_bus +tsn_o2p = [x for x in tsn_above_threshold if (x.con_type.lower() in contrib_org_list) and (x.pol_ent.lower() in election_csv.recip_ent_ppl)] + +for each_tsn in tsn_o2p: + # CONTRIBUTOR: Retrieve id from Organization (exists) or create Organization entry (new) + con_org_type = cf.match_ecanada_contrib_org_type(each_tsn.con_type) + + contrib_org_obj = cf.add_organizations(session, [{ + "name": each_tsn.con_l, # org name held in last name position + "org_type_str": con_org_type, + # "org_sector_str": "", + "org_source_id": src_objs[0].id, + "misc": {} + }]) + + # RECIPIENT: Retrieve id from People (exists) + # or create People entry w/ "Political Party of Recipient" membership (new) + recip_obj = cf.add_people(session, [{ + "name": f"{each_tsn.recip_f} {each_tsn.recip_l}", + "ppl_source_id": src_objs[0].id + }]) + + recip_party_name = each_tsn.recip_party + if each_tsn.recip_party == "No Affiliation": + recip_party_name = "Independent" + + recip_org_obj = cf.add_organizations(session, [{ + "name": recip_party_name, + "org_type_str": "Political Party", + "org_sector_str": "Government", + "org_source_id": src_objs[0].id, + "misc": {} + }]) + + recip_mem_obj = cf.add_memberships(session, [{ + "person_id": recip_obj[0].id, + "org_id": recip_org_obj[0].id, + "start_date": each_tsn.fiscal_date, + "end_date": each_tsn.fiscal_date, + "source_id": src_objs[0].id, + }]) + + # Enter FundingPersonOrg record + # org = contributor; people = recipient, negative AMT + funds_obj = cf.add_funding_p2o(session, [{ + "organization": contrib_org_obj[0].id, + "person": recip_obj[0].id, + "amount": -1 * each_tsn.amt, + "start_date": each_tsn.fiscal_date, + "end_date": each_tsn.fiscal_date, + "source_id": src_objs[0].id + }]) + +# From Contributor type = contrib_ppl --> Recipient type = recip_ent_parties (filter) +tsn_p2o = [x for x in tsn_above_threshold if (x.con_type.lower() in election_csv.contrib_ppl) and (x.pol_ent.lower() in election_csv.recip_ent_parties)] + +for each_tsn in tsn_p2o: + # CONTRIBUTOR: Retrieve id from People (exists) or create People entry w/ no memberships (new) + contrib_obj = cf.add_people(session, [{ + "name": f"{each_tsn.con_f} {each_tsn.con_l}", + "ppl_source_id": src_objs[0].id + }]) + + # RECIPIENT: Retrieve id from Organization (exists) or create Organization entry (new) + # Recipient association/org has parent Political Party (**assuming always) + recip_parent_org_obj = cf.add_organizations(session, [{ + "name": each_tsn.recip_party, + "org_type_str": "Political Party", + # "org_parent_str": "", + "org_sector_str": "Government", + "org_source_id": src_objs[0].id, + "misc": {} + + }]) + + recip_org_type = cf.match_ecanada_recip_org_type(each_tsn.pol_ent) + + recip_org_obj = cf.add_organizations(session, [{ + "name": each_tsn.recip_l, # org name held in last name position + "org_type_str": recip_org_type, + "org_parent_str": each_tsn.recip_party, + # "org_sector_str": "", + "org_source_id": src_objs[0].id, + "misc": {} + }]) + + # Enter FundingPersonOrg record + # people = contributor; org = recipient, positive AMT + funds_obj = cf.add_funding_p2o(session, [{ + "organization": recip_org_obj[0].id, + "person": contrib_obj[0].id, + "amount": each_tsn.amt, + "start_date": each_tsn.fiscal_date, + "end_date": each_tsn.fiscal_date, + "source_id": src_objs[0].id + }]) + + +# Insert org to org fund transfers +# From Contributor type = contrib_corp, _union, _assoc, _gov, _bus --> Recipient type = recip_ent_parties (filter) +tsn_o2o = [x for x in tsn_above_threshold if (x.con_type.lower() in contrib_org_list) and (x.pol_ent.lower() in election_csv.recip_ent_parties)] + +for each_tsn in tsn_o2o: + # CONTRIBUTOR: Retrieve id from Organization (exists) or create Organization entry (new) + con_org_type = cf.match_ecanada_contrib_org_type(each_tsn.con_type) + + contrib_org_obj = cf.add_organizations(session, [{ + "name": each_tsn.con_l, # org name held in last name position + "org_type_str": con_org_type, + # "org_sector_str": "", + "org_source_id": src_objs[0].id, + "misc": {} + }]) + + # RECIPIENT: Retrieve id from Organization (exists) or create Organization entry (new) + # Recipient association/org has parent Political Party (**assuming always) + recip_parent_org_obj = cf.add_organizations(session, [{ + "name": each_tsn.recip_party, + "org_type_str": "Political Party", + # "org_parent_str": "", + "org_sector_str": "Government", + "org_source_id": src_objs[0].id, + "misc": {} + }]) + + recip_org_type = cf.match_ecanada_recip_org_type(each_tsn.pol_ent) + + recip_org_obj = cf.add_organizations(session, [{ + "name": each_tsn.recip_l, # org name held in last name position + "org_type_str": recip_org_type, + "org_parent_str": each_tsn.recip_party, + # "org_sector_str": "", + "org_source_id": src_objs[0].id, + "misc": {} + }]) + + # Enter Funding record (org to org) + # party_1 = contributor; party_2 = recipient, positive AMT + funds_obj = cf.add_funding_o2o(session, [{ + "party_1": contrib_org_obj[0].id, + "party_2": recip_org_obj[0].id, + "amount": each_tsn.amt, + "start_date": each_tsn.fiscal_date, + "end_date": each_tsn.fiscal_date, + "source_id": src_objs[0].id + }]) + +print("DONE") diff --git a/backend/app/app/database/ab_ingest_lobby_comm.py b/backend/app/app/database/ab_ingest_lobby_comm.py new file mode 100644 index 00000000..0c934af3 --- /dev/null +++ b/backend/app/app/database/ab_ingest_lobby_comm.py @@ -0,0 +1,186 @@ +import datetime +import os +import pathlib +import pandas as pd +from sqlmodel import Session, create_engine, select +from schema_creation.sqlmodel_build import ( + Source +) +import glob +import common_func as cf +from pathlib import Path + +# Manually designate sources +# 2022-11-21 + +# date_obtained: date = Field(sa_column=sa.Column(sa.Date, nullable=False)) +# data_source: str +# misc_data: dict = Field(default={}, sa_column=sa.Column(pg.JSONB)) + +# Preamble, folder locations +project_name = "app" # collide\backend\app\app +data_dir = "data" +data_dir_ab = "prov_ab" + +# Folder creation, directories +curr_dir_name = os.path.dirname(__file__) + +absolute_project_path = None +for i in pathlib.Path(curr_dir_name).parents: + if i.name == project_name: + absolute_project_path = i.absolute() + break + +file_dir = os.path.join(absolute_project_path, data_dir, data_dir_ab) + +session = cf.create_session() + +# Insert source for lobbying website +sources = [ + {"date_obtained": datetime.datetime.fromisoformat("2022-12-06T00:00:00+00:00"), + "data_source": "Alberta Lobby Registry", + "misc_data": {"filenames": ["lobby_comm_ab.csv"], + "url": "https://www.albertalobbyistregistry.ca/"}} +] +src_objs = cf.add_sources(session, sources) + +# Insert Government of Alberta as Organization +orgs = [ + { + "name": "Government of Alberta", + "org_type_str": "Government", + "org_parent_str": None, + "org_sector_str": "Government", + "org_source_id": src_objs[0].id, + "misc": {} + } + ] +goa_objs = cf.add_organizations(session, orgs) + +# Ingest csv +ab_csv = glob.glob(file_dir + "/*lobby_com_ab.csv") + +if len(ab_csv) > 1: + raise RuntimeError("More than one csv detected.") + +ab_df = pd.read_csv(ab_csv[0]) + +# Organization inserts from "Organization" +orgs = [] +for each_org in ab_df["Organization"].to_list(): + org_type = cf.match_organization_type(each_org) + orgs.append( + { + "name": each_org, + "org_type_str": org_type, + "org_parent_str": None, + "org_sector_str": None, + "org_source_id": src_objs[0].id, + "misc": {} + } + ) +org_objs = cf.add_organizations(session, orgs) + +# Organization inserts from "Client Name" +orgs = [] +for each_org in ab_df["Client Name"].to_list(): + org_type = cf.match_organization_type(each_org) + orgs.append( + { + "name": each_org, + "org_type_str": org_type, + "org_parent_str": None, + "org_sector_str": None, + "org_source_id": src_objs[0].id, + "misc": {} + } + ) +client_name_objs = cf.add_organizations(session, orgs) + +# Organization inserts from "Government Department Lobbied" +orgs = [] +for each_org in ab_df["Government Department Lobbied"].to_list(): + orgs.append( + { + "name": each_org, + "org_type_str": "Government", + "org_parent_str": "Government of Alberta", + "org_sector_str": "Government", + "org_source_id": src_objs[0].id, + "misc": {} + } + ) +gov_department_objs = cf.add_organizations(session, orgs) + +# Organization inserts from "Prescribed Provincial Entity Lobbied" +orgs = [] +for each_org in ab_df["Prescribed Provincial Entity Lobbied"].to_list(): + orgs.append( + { + "name": each_org, + "org_type_str": "Government", + "org_parent_str": "Government of Alberta", + "org_sector_str": "Government", + "org_source_id": src_objs[0].id, + "misc": {} + } + ) +gov_entity_objs = cf.add_organizations(session, orgs) + +# Person inserts from "Designated Filer" +ppl = [] +for each_person in ab_df["Designated Filer"].to_list(): + ppl.append( + { + "name": each_person, + "ppl_source_id": src_objs[0].id, + } + ) +filer_objs = cf.add_people(session, ppl) + +# Person inserts from "Lobbyists" +lobby_objs = [] +for each_lobby_lst in ab_df["Lobbyists"].to_list(): + ppl = [] + for each_person in each_lobby_lst.split(","): + ppl.append( + { + "name": each_person, + "ppl_source_id": src_objs[0].id, + } + ) + int_objs = cf.add_people(session, ppl) +lobby_objs.append(int_objs) + +# OrganizationMembership inserts between filer and organization + client name +filer_org_memberships = [] +filer_client_memberships = [] +for each_filer, each_org, each_client, start_str, end_str in zip(filer_objs, org_objs, client_name_objs, ab_df["Filing Date"].to_list(), ab_df["Termination Date"].to_list()): + filer_org_memberships.append( + { + "person_id": each_filer.id, + "organization_id": each_org.id, + "start_date": start_str, + "end_date": end_str, + "source": src_objs[0].id + } + ) + filer_client_memberships.append( + { + "person_id": each_filer.id, + "organization_id": each_client.id, + "start_date": start_str, + "end_date": end_str, + "source": src_objs[0].id + } + ) +filer_org_membership_objs = cf.add_memberships(session, filer_org_memberships) +filer_client_membership_objs = cf.add_memberships(session, filer_client_memberships) + +# TODO: write add_memberships +# TODO: OrganizationMembership inserts between lobbyists and organization/client name +# TODO: CommsTopic inserts from "Subject Matter of Lobbying" +# TODO: CommunicationsP2O (new table?) inserts between filer/lobbyists with departments/entities + + +session.close() diff --git a/backend/app/app/database/check_for_duplicates.py b/backend/app/app/database/check_for_duplicates.py new file mode 100644 index 00000000..37a72ffb --- /dev/null +++ b/backend/app/app/database/check_for_duplicates.py @@ -0,0 +1,40 @@ +from schema_creation.sqlmodel_build import Person, OrganizationMembership, Communications +from sqlmodel import create_engine, select, Session, col, or_ + +from parse_injest.utils import create_match_name + +db_host = "192.168.0.10" +db_name = "collide" +db_user = "test_user" +db_pw = "change_this" + +schema_name = "lf_mockup_2" + +engine = create_engine(f"postgresql+psycopg2://{db_user}:{db_pw}@{db_host}/{db_name}", echo=False) +sess = Session(engine) + + +# check for memberships that are duplicates +sql_query = select(OrganizationMembership) +res = sess.exec(sql_query) +for mem in res: + + sql_query = select(OrganizationMembership).where(OrganizationMembership.person == mem.person).where(OrganizationMembership.organization == mem.organization).where(OrganizationMembership.start_date == mem.start_date).where(OrganizationMembership.end_date == mem.end_date).where(OrganizationMembership.id != mem.id) + matches = sess.exec(sql_query).all() + if len(matches) >= 1: + print(f"possible duplicate of {mem}") + for m in matches: + print(f"\t{m}") + +# check for communications that are duplicates +sql_query = select(Communications) +res = sess.exec(sql_query) +for com in res: + sql_query = select(Communications).where(Communications.party_1 == com.party_1).where(Communications.party_2 == com.party_2).where(Communications.com_date == com.com_date).where(Communications.topic == com.topic).where(Communications.id != com.id) + matches = sess.exec(sql_query).all() + if len(matches) >= 1: + print(f"possible duplicate of {com}") + for m in matches: + print(f"\t{m}") + +sess.close() diff --git a/backend/app/app/database/common_func.py b/backend/app/app/database/common_func.py new file mode 100644 index 00000000..ee4f8a61 --- /dev/null +++ b/backend/app/app/database/common_func.py @@ -0,0 +1,426 @@ +from datetime import datetime +import os +import pathlib +from sqlmodel import Session, create_engine, select +from schema_creation.sqlmodel_build import ( + Source, Organization, OrganizationType, SectorIndustry, Person, OrganizationMembership, + FundingPersonPerson, FundingPersonOrg, Funding +) +import glob +from pathlib import Path +from parse_injest.utils import create_match_name + + +def backup_postgres(host, user, passw, db_name, schema_name, pg_dump_command='pg_dump'): + import subprocess + import time + + timestr = str(int(time.time())) + + cmd = [pg_dump_command, + f"-n", schema_name, '-Z', '9', '-f', f"backup_{timestr}.gz", '-d', + f'postgresql://{user}:{passw}@{host}/{db_name}'] + + try: + popen = subprocess.run(cmd, check=True) + except subprocess.CalledProcessError: + print('database backup not made') + + +def create_session(debug=True): + + if debug: + db_host = "localhost" + db_name = "lq_test" + db_user = "test_user" + db_pw = "changethis" + # schema_name = "lf_mockup_2" + else: + db_host = "192.168.0.10" + db_name = "collide" + db_user = "test_user" + db_pw = "change_this" + # schema_name = "lf_mockup_2" + + motor = create_engine( + f"postgresql+psycopg2://{db_user}:{db_pw}@{db_host}/{db_name}", echo=True + ) + + # backup_postgres(host=db_host, + # user=db_user, + # passw=db_pw, + # db_name=db_name) + + return Session(motor) + + +def add_sources(session, src_lst): + src_obj_lst = [] + for each_dict in src_lst: + # Check if it already exists with same timestamp + stat = select(Source).where( + Source.data_source == each_dict.get("data_source") + ).where( + Source.date_obtained == each_dict.get("date_obtained")) + res = session.exec(stat).all() + + if len(res) == 0: + # New entry + ot = Source(data_source=each_dict.get("data_source"), + date_obtained=each_dict.get("date_obtained"), + misc_data=each_dict.get("misc_data")) + session.add(ot) + session.commit() + src_obj_lst.append(ot) + elif len(res) == 1: + # Existing entry + src_obj_lst.append(res[0]) + else: + raise RuntimeError("Non unique source detected") + return src_obj_lst + + +def add_people(session, ppl_lst): + ppl_obj_lst = [] + for each_dict in ppl_lst: + # Check if it already exists with same match_name + stat = select(Person).where( + Person.match_name == create_match_name(each_dict.get("name")) + ) + res = session.exec(stat).all() + + if len(res) == 0: + # New entry + ot = Person(display_name=each_dict.get("name"), + match_name=create_match_name(each_dict.get("name")), + source=each_dict.get("ppl_source_id")) + session.add(ot) + session.commit() + ppl_obj_lst.append(ot) + elif len(res) == 1: + # Existing entry + ppl_obj_lst.append(res[0]) + else: + raise RuntimeError("Non unique person detected") + return ppl_obj_lst + + +def add_organizations(session, org_lst): + # { + # "name": "abc", + # "org_type_str": "abc", + # "org_parent_str": "abc", + # "org_sector_str": "abc", + # "org_source_id": int, + # "misc": {} + # } + + org_obj_lst = [] + for each_dict in org_lst: + # ORGANIZATION TABLE + # check if entry unique + stat = select(Organization).where( + Organization.match_name == create_match_name(each_dict.get("name")) + ) + res = session.exec(stat).all() + + if len(res) == 0: + # New organization + stat = select(OrganizationType.id).where( + OrganizationType.match_name == create_match_name(each_dict.get("org_type_str")) + ) + res_org_type_id = session.exec(stat).all() + + if len(res_org_type_id) > 1: + raise RuntimeError("Too many org types identified") + + # Retrieve parent org id from string name if key in dict + if "org_parent_str" in each_dict.keys(): + stat = select(Organization.id).where( + Organization.match_name == create_match_name(each_dict.get("org_parent_str")) + ) + res_parent_id = session.exec(stat).all() + + if len(res_parent_id) > 1: + raise RuntimeError("Too many org parents identified") + + else: + res_parent_id = [None] + + # Retrieve section id from string name if key in dict + if "org_sector_str" in each_dict.keys(): + stat = select(SectorIndustry.id).where( + SectorIndustry.sector_match_name == create_match_name(each_dict.get("org_sector_str")) + ) + res_sector_id = session.exec(stat).all() + + if len(res_sector_id) > 1: + raise RuntimeError("Too many sectors identified") + else: + res_sector_id = [None] + + ot = Organization(display_name=each_dict.get("name"), + match_name=create_match_name(each_dict.get("name")), + organization_type=res_org_type_id[0], + parent_organization=res_parent_id[0], + source=each_dict.get("org_source_id"), + sector=res_sector_id[0], + misc_data={}) + session.add(ot) + session.commit() + org_obj_lst.append(ot) + elif len(res) == 1: + # Existing entry + org_obj_lst.append(res[0]) + else: + raise RuntimeError("Too many organizations identified") + return org_obj_lst + + +def add_memberships(session, mem_lst): + # { + # "person_id": int, + # "org_id": int, + # "start_date": str, + # "end_date": str, + # "source_id": int, + # } + + mem_obj_lst = [] + for each_dict in mem_lst: + # MEMBERSHIP TABLE + # check if entry unique + stat = select(OrganizationMembership).where( + OrganizationMembership.person == each_dict.get("person_id") + ).where( + OrganizationMembership.organization == each_dict.get("org_id") + ) + res_membership = session.exec(stat).all() + + if len(res_membership) == 0: + # New membership + new_membership = OrganizationMembership(person=each_dict.get("person_id"), + organization=each_dict.get("org_id"), + start_date=datetime.fromisoformat(each_dict.get("start_date")).date(), + end_date=datetime.fromisoformat(each_dict.get("end_date")).date(), + source=each_dict.get("source_id")) + + session.add(new_membership) + session.commit() + mem_obj_lst.append(new_membership) + + elif len(res_membership) == 1: + # Existing membership, update end_date + existing_membership = res_membership[0] + + if existing_membership.end_date < datetime.fromisoformat(each_dict.get("end_date")).date(): + existing_membership.end_date = datetime.fromisoformat(each_dict.get("end_date")).date() + session.add(existing_membership) + session.commit() + + mem_obj_lst.append(existing_membership) + + else: + raise RuntimeError("Too many memberships identified") + + return mem_obj_lst + + +def add_funding_p2p(session, funding_lst): + # { + # "party_1": int, + # "party_2": int, + # "amount": int, + # "start_date": str, + # "end_date": str, + # "source_id": int, + # } + + fund_obj_lst = [] + for each_dict in funding_lst: + # FundingPersonPerson TABLE + # check if entry unique (same parties, same amount, same start_date) + stat = select(FundingPersonPerson).where( + FundingPersonPerson.party_1 == each_dict.get("party_1") + ).where( + FundingPersonPerson.party_2 == each_dict.get("party_2") + ).where( + FundingPersonPerson.amount == each_dict.get("amount") + ).where( + FundingPersonPerson.start_date == datetime.fromisoformat(each_dict.get("start_date")).date() + ) + res = session.exec(stat).all() + + if len(res) == 0: + # New fund transfer + new = FundingPersonPerson(party_1=each_dict.get("party_1"), + party_2=each_dict.get("party_2"), + amount=each_dict.get("amount"), + start_date=datetime.fromisoformat(each_dict.get("start_date")).date(), + end_date=datetime.fromisoformat(each_dict.get("end_date")).date(), + source=each_dict.get("source_id")) + + session.add(new) + session.commit() + fund_obj_lst.append(new) + + elif len(res) == 1: + # Existing + existing_membership = res[0] + fund_obj_lst.append(existing_membership) + + else: + raise RuntimeError("Too many transfers identified") + + return fund_obj_lst + + +def add_funding_p2o(session, funding_lst): + # { + # "person": int, + # "organization": int, + # "amount": int, + # "start_date": str, + # "end_date": str, + # "source_id": int, + # } + + fund_obj_lst = [] + for each_dict in funding_lst: + # FundingPersonOrg TABLE + # check if entry unique (same parties, same amount, same start_date) + stat = select(FundingPersonOrg).where( + FundingPersonOrg.person == each_dict.get("person") + ).where( + FundingPersonOrg.organization == each_dict.get("organization") + ).where( + FundingPersonOrg.amount == each_dict.get("amount") + ).where( + FundingPersonOrg.start_date == datetime.fromisoformat(each_dict.get("start_date")).date() + ) + res = session.exec(stat).all() + + if len(res) == 0: + # New fund transfer + new = FundingPersonOrg(person=each_dict.get("person"), + organization=each_dict.get("organization"), + amount=each_dict.get("amount"), + start_date=datetime.fromisoformat(each_dict.get("start_date")).date(), + end_date=datetime.fromisoformat(each_dict.get("end_date")).date(), + source=each_dict.get("source_id")) + + session.add(new) + session.commit() + fund_obj_lst.append(new) + + elif len(res) == 1: + # Existing + existing_entry = res[0] + fund_obj_lst.append(existing_entry) + + else: + raise RuntimeError("Too many transfers identified") + + return fund_obj_lst + + +def add_funding_o2o(session, funding_lst): + # { + # "party_1": int, + # "party_2": int, + # "amount": int, + # "start_date": str, + # "end_date": str, + # "source_id": int, + # } + + fund_obj_lst = [] + for each_dict in funding_lst: + # Funding TABLE + # check if entry unique (same parties, same amount, same start_date) + stat = select(Funding).where( + Funding.party_1 == each_dict.get("party_1") + ).where( + Funding.party_2 == each_dict.get("party_2") # recipient + ).where( + Funding.amount == each_dict.get("amount") + ).where( + Funding.start_date == datetime.fromisoformat(each_dict.get("start_date")).date() + ) + res = session.exec(stat).all() + + if len(res) == 0: + # New fund transfer + new = Funding(party_1=each_dict.get("party_1"), + party_2=each_dict.get("party_2"), + amount=each_dict.get("amount"), + start_date=datetime.fromisoformat(each_dict.get("start_date")).date(), + end_date=datetime.fromisoformat(each_dict.get("end_date")).date(), + source=each_dict.get("source_id")) + + session.add(new) + session.commit() + fund_obj_lst.append(new) + + elif len(res) == 1: + # Existing + existing_membership = res[0] + fund_obj_lst.append(existing_membership) + + else: + raise RuntimeError("Too many transfers identified") + + return fund_obj_lst + + +def match_organization_type(str_name): + lc_name = str.lower(str_name) + + if "corporation" in lc_name: + org_type = "Corporation" + elif "government" in lc_name: + org_type = "Government" + elif "charity" in lc_name: + org_type = "Charity" + elif "profession" in lc_name: + org_type = "Professional Association" + elif "party" in lc_name: + org_type = "Political Party" + else: + org_type = "Unclassified" + + return org_type + + +def match_ecanada_contrib_org_type(str_name): + lc_name = str.lower(str_name) + + if "individual" in lc_name: + raise AssertionError("Individuals cannot be organizations!!") + elif "corporation" in lc_name: + org_type = "Corporation" + elif "government" in lc_name: + org_type = "Government" + elif "trade" in lc_name: + org_type = "Trade Union" + elif "business" in lc_name: + org_type = "Unclassified" + elif "association" in lc_name: + org_type = "Unclassified" + else: + raise AssertionError("No known contributor org type") + + return org_type + + +def match_ecanada_recip_org_type(str_name): + lc_name = str.lower(str_name) + + if "parties" in lc_name: + org_type = "Political Party" + elif "association" in lc_name: + org_type = "Unclassified" + else: + raise AssertionError("No known recipient org type") + + return org_type diff --git a/backend/app/app/database/fix_people_000_common.py b/backend/app/app/database/fix_people_000_common.py new file mode 100644 index 00000000..4d7ea578 --- /dev/null +++ b/backend/app/app/database/fix_people_000_common.py @@ -0,0 +1,72 @@ + +shit_list_pref = ["Mr.", + "Ms.", + "Mrs.", + "Dr.", + "Hon.", + "Hon", + "Min.", + "The", + "Rt.", + "Right", + "Honourable", + "Honorable", + "Admiral", + "VAdm.", + "Senator", + 'Minister', + 'Monsieur', + "L'honorable", + "L’honorable", + "Honoruable", + "Honorable/Honorable", + "Hon.)", + "(The", + "L'hon.", + "l'hon", + "Ho.", + "CFNE", + "P.C.,M.P.", + "L'Hhonorable", + "H.E.", + "His", + "Excellency", + "Commodore", + "LGen", + "Major", + "General", + "Brigadier-General", + "Brigadier", + "Vice", + "Admiral", + "Rear-Admiral", + ''] + +shit_list_suff = ["P.C.", + "M.P.", + "P.C", + "M.P", + "MP", + "PC", + "Ph.D", + "PhD", + "MA", + "M.A.", + "Manager", + "Policy", + "Director"] + + +shit_list_pref_lower = [x.lower() for x in shit_list_pref] +shit_list_suff_lower = [x.lower() for x in shit_list_suff] +shit_list_combined = shit_list_pref_lower.copy() +shit_list_combined.extend(shit_list_suff_lower) + + +first_name_synonyms = {'Alexander': ['Alex'], + "James": ['Jim', "Jimmy"], + "Kathleen": ['Kathy'], + 'Micheal': ['Mike'], + 'William': ['Bill']} + +most_proper = ['Alexander', 'James', 'Kathleen', 'Micheal', 'William'] diff --git a/backend/app/app/database/fix_people_001.py b/backend/app/app/database/fix_people_001.py new file mode 100644 index 00000000..d5752f1e --- /dev/null +++ b/backend/app/app/database/fix_people_001.py @@ -0,0 +1,92 @@ +from schema_creation.sqlmodel_build import Person, OrganizationMembership, Communications +from sqlmodel import create_engine, select, Session, col, or_ + +from parse_injest.utils import create_match_name + +from fix_people_000_common import shit_list_combined + +db_host = "localhost" +db_name = "lq_test" +db_user = "test_user" +db_pw = "change_this" + +schema_name = "lf_mockup_2" + +engine = create_engine(f"postgresql+psycopg2://{db_user}:{db_pw}@{db_host}/{db_name}", echo=False) +sess = Session(engine) + +sql_query = select(Person) + +res = sess.exec(sql_query).all() + + +for p in res: + + sql_query = select(Person).where(col(Person.match_name).contains(p.match_name)) + loc_res = sess.exec(sql_query).all() + + if len(loc_res) > 1: # we have more than one name to deal with + # redo the current match_name + nt = p.display_name.split(" ") + nt = [x[:-1] if x.endswith(',') else x for x in nt] + nt = [x for x in nt if x.lower() not in shit_list_combined] + redone_match_name = create_match_name(' '.join(nt)) + + name_lengths = {} + + print(f"{p.display_name} (id: {p.id})") + f = [] + for pp in loc_res: + + print(f"\t{pp.display_name} (id: {pp.id})") + + name_tokens = pp.display_name.split(" ") # split on spaces + name_tokens = [x[:-1] if x.endswith(',') else x for x in name_tokens] # strip trailing commas + + name_tokens = [x for x in name_tokens if x.lower() not in shit_list_combined] + new_match_name = create_match_name(" ".join(name_tokens)) + if new_match_name == redone_match_name: + print("\tmarked equivalent") + name_lengths[pp.id] = (len(pp.display_name), pp.display_name) + if pp.id != p.id: + f.append(pp) + + if len(name_lengths.keys()) > 1: + print('\t\tsome redundancies to remove') + srted = dict(sorted(name_lengths.items(), key=lambda item: item[1][0])) + + id_to_keep = list(srted.keys())[0] + name_to_keep = srted[id_to_keep][1] + print(f"\t\tkeeping {name_to_keep} (id: {id_to_keep})") + + id_list_to_remove = list(srted.keys())[1:] + for rem in id_list_to_remove: + print(f"\t\t\tremoval of {srted[rem][1]} (id: {rem})") + + sql_query = select(OrganizationMembership).where(OrganizationMembership.person == rem) + memberships_to_update = sess.exec(sql_query).all() + if len(memberships_to_update) > 0: + print("\t\t\t\tthe following memberships should be updated:") + for mem in memberships_to_update: + print(f"\t\t\t\t\t{mem}") + mem.person = id_to_keep + sess.add(mem) + sess.commit() + + sql_query = select(Communications).where(or_(Communications.party_1 == rem, Communications.party_2 == rem)) + communications_to_update = sess.exec(sql_query).all() + if len(communications_to_update) > 0: + print("\t\t\t\tthe following communications should be updated:") + for com in communications_to_update: + print(f"\t\t\t\t\t{com}") + if com.party_1 == rem: + com.party_1 = id_to_keep + elif com.party_2 == rem: + com.party_2 = id_to_keep + sess.add(com) + + sess.commit() + + finally_delete = sess.exec(select(Person).where(Person.id == rem)).first() + sess.delete(finally_delete) + sess.commit() diff --git a/backend/app/app/database/fix_people_002.py b/backend/app/app/database/fix_people_002.py new file mode 100644 index 00000000..b15fec64 --- /dev/null +++ b/backend/app/app/database/fix_people_002.py @@ -0,0 +1,53 @@ +import titlecase +from schema_creation.sqlmodel_build import Person, OrganizationMembership, Communications +from sqlmodel import create_engine, select, Session, col, or_ + +from parse_injest.utils import create_match_name + +from fix_people_000_common import shit_list_combined + +db_host = "localhost" +db_name = "lq_test" +db_user = "test_user" +db_pw = "change_this" + +schema_name = "lf_mockup_2" + +engine = create_engine(f"postgresql+psycopg2://{db_user}:{db_pw}@{db_host}/{db_name}", echo=False) +sess = Session(engine) + +sql_query = select(Person) + +res = sess.exec(sql_query).all() +total_changes = 0 +total_problems = 0 + +for p in res: + orig_display_name = p.display_name + nt = p.display_name.split(" ") + nt = [x[:-1] if x.endswith(',') else x for x in nt] + nt = [x.strip() for x in nt] + nt = [x for x in nt if x.lower() not in shit_list_combined] + + nt = " ".join(nt) + nt = titlecase.titlecase(nt) + + if nt != orig_display_name: + print(f"changing {orig_display_name} to {nt}") + new_match_name = create_match_name(nt) + sql_query = select(Person).where(Person.match_name == new_match_name) + res_1 = sess.exec(sql_query).all() + sql_query = select(Person).where(Person.display_name == nt) + res_2 = sess.exec(sql_query).all() + + if len(res_2) > 1 or len(res_2) > 0: + print("this change will cause problems") + total_problems += 1 + else: + + total_changes += 1 + p.display_name = nt + sess.add(p) + sess.commit() + +print(f"total changes {total_changes}, total problems {total_problems}") \ No newline at end of file diff --git a/backend/app/app/database/fix_people_003.py b/backend/app/app/database/fix_people_003.py new file mode 100644 index 00000000..56a69834 --- /dev/null +++ b/backend/app/app/database/fix_people_003.py @@ -0,0 +1,169 @@ +from schema_creation.sqlmodel_build import Person, OrganizationMembership, Communications +from sqlmodel import create_engine, select, Session, col, or_ + +from parse_injest.utils import create_match_name + +from fix_people_000_common import first_name_synonyms, most_proper + +kl = list(first_name_synonyms.keys()) +for n in kl: + l = first_name_synonyms[n] + for sl in l: + new_l = l.copy() + nk = sl + new_l.remove(nk) + new_l.append(n) + first_name_synonyms[nk] = new_l + +db_host = "localhost" +db_name = "lq_test" +db_user = "test_user" +db_pw = "change_this" + +schema_name = "lf_mockup_2" + +engine = create_engine(f"postgresql+psycopg2://{db_user}:{db_pw}@{db_host}/{db_name}", echo=False) +sess = Session(engine) + + + +sql_query = select(Person) + +res = sess.exec(sql_query).all() + +for p in res: + + nt = p.display_name.split(" ") + nt = [x[:-1] if x.endswith(',') else x for x in nt] + + if nt[0] in first_name_synonyms.keys(): + + potential_names = [] + for name in first_name_synonyms[nt[0]]: + potential_names.append(' '.join([name] + nt[1:])) + + for q in potential_names: + # print(f"\tpotential name: {q}") + sql_query = select(Person).where(Person.match_name == create_match_name(q)) + res = sess.exec(sql_query).all() + if len(res) > 0: + lon = [nt[0]] + first_name_synonyms[nt[0]] + most_proper_first_name = [x for x in lon if x in most_proper] + + name_to_go_with = " ".join(most_proper_first_name + nt[1:]) + + sql_query = select(Person).where(Person.match_name == create_match_name(name_to_go_with)) + keep_person = sess.exec(sql_query).first() + + print(f"we are going to keep {keep_person.display_name} (id {keep_person.id})") + + for alt_first_name in first_name_synonyms[most_proper_first_name[0]]: + other_name = " ".join([alt_first_name] + nt[1:]) + sql_query = select(Person).where(Person.match_name == create_match_name(other_name)) + res = sess.exec(sql_query).first() + if res is not None: + print(f"\twe are going to get rid of {res.display_name} (id {res.id})") + + sql_query = select(OrganizationMembership).where(OrganizationMembership.person == res.id) + memberships_to_update = sess.exec(sql_query).all() + if len(memberships_to_update) > 0: + print("\t\t\t\tthe following memberships should be updated:") + for mem in memberships_to_update: + print(f"\t\t\t\t\t{mem}") + mem.person = keep_person.id + sess.add(mem) + sess.commit() + + sql_query = select(Communications).where(or_(Communications.party_1 == res.id, Communications.party_2 == res.id)) + communications_to_update = sess.exec(sql_query).all() + if len(communications_to_update) > 0: + print("\t\t\t\tthe following communications should be updated:") + for com in communications_to_update: + print(f"\t\t\t\t\t{com}") + if com.party_1 == res.id: + com.party_1 = keep_person.id + elif com.party_2 == res.id: + com.party_2 = keep_person.id + sess.add(com) + + sess.commit() + + finally_delete = sess.exec(select(Person).where(Person.id == res.id)).first() + sess.delete(finally_delete) + sess.commit() + + + + + # + # print(f"{p.display_name}") + # print(f"\t\tdatabase hit for {res[0].display_name}") + + + + # sql_query = select(Person).where(col(Person.match_name).contains(p.match_name)) + # loc_res = sess.exec(sql_query).all() + # + # if len(loc_res) > 1: # we have more than one name to deal with + # # redo the current match_name + # + # redone_match_name = create_match_name(' '.join(nt)) + # + # name_lengths = {} + # + # print(f"{p.display_name} (id: {p.id})") + # f = [] + # for pp in loc_res: + # + # print(f"\t{pp.display_name} (id: {pp.id})") + # + # name_tokens = pp.display_name.split(" ") # split on spaces + # name_tokens = [x[:-1] if x.endswith(',') else x for x in name_tokens] # strip trailing commas + # + # name_tokens = [x for x in name_tokens if x.lower() not in shit_list_combined] + # new_match_name = create_match_name(" ".join(name_tokens)) + # if new_match_name == redone_match_name: + # print("\tmarked equivalent") + # name_lengths[pp.id] = (len(pp.display_name), pp.display_name) + # if pp.id != p.id: + # f.append(pp) + # + # if len(name_lengths.keys()) > 1: + # print('\t\tsome redundancies to remove') + # srted = dict(sorted(name_lengths.items(), key=lambda item: item[1][0])) + # + # id_to_keep = list(srted.keys())[0] + # name_to_keep = srted[id_to_keep][1] + # print(f"\t\tkeeping {name_to_keep} (id: {id_to_keep})") + # + # id_list_to_remove = list(srted.keys())[1:] + # for rem in id_list_to_remove: + # print(f"\t\t\tremoval of {srted[rem][1]} (id: {rem})") + # + # sql_query = select(OrganizationMembership).where(OrganizationMembership.person == rem) + # memberships_to_update = sess.exec(sql_query).all() + # if len(memberships_to_update) > 0: + # print("\t\t\t\tthe following memberships should be updated:") + # for mem in memberships_to_update: + # print(f"\t\t\t\t\t{mem}") + # mem.person = id_to_keep + # sess.add(mem) + # sess.commit() + # + # sql_query = select(Communications).where(or_(Communications.party_1 == rem, Communications.party_2 == rem)) + # communications_to_update = sess.exec(sql_query).all() + # if len(communications_to_update) > 0: + # print("\t\t\t\tthe following communications should be updated:") + # for com in communications_to_update: + # print(f"\t\t\t\t\t{com}") + # if com.party_1 == rem: + # com.party_1 = id_to_keep + # elif com.party_2 == rem: + # com.party_2 = id_to_keep + # sess.add(com) + # + # sess.commit() + # + # finally_delete = sess.exec(select(Person).where(Person.id == rem)).first() + # sess.delete(finally_delete) + # sess.commit() diff --git a/backend/app/app/database/fix_people_004.py b/backend/app/app/database/fix_people_004.py new file mode 100644 index 00000000..fc7aca3e --- /dev/null +++ b/backend/app/app/database/fix_people_004.py @@ -0,0 +1,46 @@ +from fuzzywuzzy import fuzz +from operator import itemgetter +from schema_creation.sqlmodel_build import Person, OrganizationMembership, Communications +from sqlmodel import create_engine, select, Session, col, or_ +from sqlalchemy import func + +from parse_injest.utils import create_match_name + +db_host = "192.168.0.10" +db_name = "collide" +db_user = "test_user" +db_pw = "change_this" + +schema_name = "lf_mockup_2" + +engine = create_engine(f"postgresql+psycopg2://{db_user}:{db_pw}@{db_host}/{db_name}", echo=False) +sess = Session(engine) + +all_people = sess.exec(select(Person)).all() + +while len(all_people) > 0: + current_person = all_people.pop() + + high_fuzz = [] + for p in all_people: + rat = fuzz.ratio(current_person.match_name, p.match_name) + if rat > 95: + high_fuzz.append((rat, p)) + + if len(high_fuzz) > 0: + high_fuzz = sorted(high_fuzz, key=itemgetter(0)) + + cp_mem = sess.query(OrganizationMembership).where(OrganizationMembership.person == current_person.id).count() + cp_com = sess.query(Communications).where(or_(Communications.party_1 == current_person.id, Communications.party_2 == current_person.id)).count() + + print(f"{current_person.display_name}, id {current_person.id}, {cp_mem} memberships, {cp_com} communications matches highly with:") + + for hf in high_fuzz: + + hf_mem = sess.query(OrganizationMembership).where(OrganizationMembership.person == hf[1].id).count() + hf_com = sess.query(Communications).where(or_(Communications.party_1 == hf[1].id, Communications.party_2 == hf[1].id)).count() + + print(f"\t{hf[1].display_name}, id {hf[1].id}, {hf_mem} memberships, {hf_com} communications ({hf[0]})") + + +sess.close() \ No newline at end of file diff --git a/backend/app/app/database/fix_people_005.py b/backend/app/app/database/fix_people_005.py new file mode 100644 index 00000000..13815791 --- /dev/null +++ b/backend/app/app/database/fix_people_005.py @@ -0,0 +1,90 @@ +from schema_creation.sqlmodel_build import Person, OrganizationMembership, Communications +from sqlmodel import create_engine, select, Session, col, or_ + +from parse_injest.utils import create_match_name + +db_host = "192.168.0.10" +db_name = "collide" +db_user = "test_user" +db_pw = "change_this" + +schema_name = "lf_mockup_2" + +engine = create_engine(f"postgresql+psycopg2://{db_user}:{db_pw}@{db_host}/{db_name}", echo=False) +sess = Session(engine) + +all_people = sess.exec(select(Person)).all() + +for person in all_people: + + # check to make sure the person still exists in the db, since we may have already removed some + if sess.query(Person).where(Person.id == person.id).count() == 0: + continue + + dn = person.display_name + dn_tokens = dn.split(" ") + + # reverse the order of the name + dn_tokens.reverse() + reversed_dn = " ".join(dn_tokens) + reversed_mn = create_match_name(reversed_dn) + + # strangely, this happens; skip it for now + if reversed_mn == person.match_name: + continue + + # check for an entry of the reversed name + sql_query = select(Person).where(Person.match_name == reversed_mn) + res = sess.exec(sql_query).first() + + if res is not None: + forward_mem = sess.query(OrganizationMembership).where(OrganizationMembership.person == person.id).count() + forward_com = sess.query(Communications).where(or_(Communications.party_1 == person.id, Communications.party_2 == person.id)).count() + backward_mem = sess.query(OrganizationMembership).where(OrganizationMembership.person == res.id).count() + backward_com = sess.query(Communications).where(or_(Communications.party_1 == res.id, Communications.party_2 == res.id)).count() + print(f"{dn} is also in the database as {reversed_dn}") + print(f"\tforward mem {forward_mem}, forward com {forward_com}") + print(f"\tbackward mem {backward_mem}, backward com {backward_com}") + + # take the version with the most combined combinations and memberships to keep, and remove the other one + comb_forward = forward_mem + forward_com + comb_backward = backward_mem + backward_com + + if comb_forward >= comb_backward: + print(f"\tkeeping {dn}, getting rid of {reversed_dn}") + id_to_keep = person.id + id_to_axe = res.id + else: + print(f"\tkeeping {reversed_dn}, getting rid of {dn}") + id_to_keep = res.id + id_to_axe = person.id + + sql_query = select(OrganizationMembership).where(OrganizationMembership.person == id_to_axe) + memberships_to_update = sess.exec(sql_query).all() + if len(memberships_to_update) > 0: + print("\t\tthe following memberships should be updated:") + for mem in memberships_to_update: + print(f"\t\t\t{mem}") + mem.person = id_to_keep + sess.add(mem) + sess.commit() + + sql_query = select(Communications).where( + or_(Communications.party_1 == id_to_axe, Communications.party_2 == id_to_axe)) + communications_to_update = sess.exec(sql_query).all() + if len(communications_to_update) > 0: + print("\t\tthe following communications should be updated:") + for com in communications_to_update: + print(f"\t\t\t{com}") + if com.party_1 == id_to_axe: + com.party_1 = id_to_keep + elif com.party_2 == id_to_axe: + com.party_2 = id_to_keep + sess.add(com) + sess.commit() + + finally_delete = sess.exec(select(Person).where(Person.id == id_to_axe)).first() + sess.delete(finally_delete) + sess.commit() + +sess.close() \ No newline at end of file diff --git a/backend/app/app/database/mp_list.py b/backend/app/app/database/mp_list.py new file mode 100644 index 00000000..4bef3438 --- /dev/null +++ b/backend/app/app/database/mp_list.py @@ -0,0 +1,506 @@ +from sqlmodel import Session, create_engine, select +from parse_injest.utils import create_match_name +from schema_creation.sqlmodel_build import ( + OrganizationType, + Organization, + Person, + Source, + OrganizationMembership, + SectorIndustry, +) + +from datetime import date, datetime +import glob +import os +import pathlib +import xml.etree.ElementTree as et + +data_dir = "data/members_xml/member_xml" + +curr_dir_name = os.path.dirname(__file__) +absolute_ = None +for i in pathlib.Path(curr_dir_name).parents: + if i.name == "app": + absolute_ = i.absolute() + break + +data_dir = os.path.join(absolute_, data_dir) +if not os.path.isdir(data_dir): + raise RuntimeError("Can't find data directory") + + +# glob the filenames +file_list = glob.glob(data_dir + "/*.xml") + + +grab_date = date(2022, 11, 13) #'20221109' +src = Source( + date_obtained=grab_date, + data_source="House of Commons Canada", + # misc_data={"url": "ourcommons.ca"}, +) + + +db_host = "localhost" +db_name = "lq_test" +db_user = "test_user" +db_pw = "changethis" +schema_name = "lf_mockup_2" + +motor = create_engine( + f"postgresql+psycopg2://{db_user}:{db_pw}@localhost/{db_name}", echo=False +) +sess = Session(motor) +sql_select = ( + select(Source) + .where(Source.date_obtained == src.date_obtained) + .where(Source.data_source == src.data_source) +) +res = sess.exec(sql_select).first() +if res is None: + sess.add(src) + sess.commit() + src_id = src.id + src_date_obtained = src.date_obtained +else: + src_id = res.id + src_date_obtained = res.date_obtained + + +# get sector id and org type id for Government +sql_select = select(OrganizationType.id).where( + OrganizationType.match_name == create_match_name("Government") +) +res = sess.exec(sql_select).all() +gov_org_type_id = res[0] + +sql_select = select(SectorIndustry.id).where( + SectorIndustry.sector_match_name == create_match_name("Government") +) +res = sess.exec(sql_select).all() +gov_sect_id = res[0] + +# get org type for political party +sql_select = select(OrganizationType.id).where( + OrganizationType.match_name == create_match_name("Political Party") +) +res = sess.exec(sql_select).all() +pol_part_id = res[0] + +# get org id for the federal government +sql_select = select(Organization.id).where( + Organization.match_name == create_match_name("Federal Government of Canada") +) +res = sess.exec(sql_select).all() +fed_gov_id = res[0] + +sess.close() + +member_of_parliament_role_field_list = [ + "PersonOfficialFirstName", + "PersonOfficialLastName", + "ConstituencyName", + "ConstituencyProvinceTerritoryName", + "CaucusShortName", + "FromDateTime", + "ToDateTime", +] + +caucus_role_field_list = ["CaucusShortName", "FromDateTime", "ToDateTime"] +parliamentary_position_field_list = ["Title", "FromDateTime", "ToDateTime"] +committee_member_field_list = [ + "AffiliationRoleName", + "CommitteeName", + "FromDateTime", + "ToDateTime", +] +association_and_groups_field_list = [ + "AssociationMemberRoleType", + "Title", + "Organization", +] + + +for file in file_list: + # print(file) + + tree = et.parse(file) + root = tree.getroot() + # print(root.tag) + + mp_role_dict = {} + caucus_roles = [] + parliamentary_positions = [] + committee_member_roles = [] + association_and_group_roles = [] + + for child in root: + # print(child.tag) + + if child.tag == "MemberOfParliamentRole": + for node in child: + if node.tag in member_of_parliament_role_field_list: + mp_role_dict[node.tag] = node.text + + elif child.tag == "CaucusMemberRoles": + for node in child: + if node.tag == "CaucusMemberRole": + loc_caucus_member_role = {} + for n in node: + if n.tag in caucus_role_field_list: + loc_caucus_member_role[n.tag] = n.text + + caucus_roles.append(loc_caucus_member_role) + + pass + + elif child.tag == "ParliamentaryPositionRoles": + for node in child: + if node.tag == "ParliamentaryPositionRole": + loc_parliamentary_position_role = {} + for n in node: + if n.tag in parliamentary_position_field_list: + loc_parliamentary_position_role[n.tag] = n.text + parliamentary_positions.append(loc_parliamentary_position_role) + + elif child.tag == "CommitteeMemberRoles": + for node in child: + if node.tag == "CommitteeMemberRole": + loc_committee_member_role = {} + for n in node: + if n.tag in committee_member_field_list: + loc_committee_member_role[n.tag] = n.text + committee_member_roles.append(loc_committee_member_role) + + elif child.tag == "ParliamentaryAssociationsandInterparliamentaryGroupRoles": + for node in child: + if ( + node.tag + == "ParliamentaryAssociationsandInterparliamentaryGroupRole" + ): + loc_association = {} + for n in node: + if n.tag in association_and_groups_field_list: + loc_association[n.tag] = n.text + association_and_group_roles.append(loc_association) + + # print(mp_role_dict) + + mp_name = " ".join( + [ + mp_role_dict["PersonOfficialFirstName"], + mp_role_dict["PersonOfficialLastName"], + ] + ) + + federal_riding_name = mp_role_dict["ConstituencyName"] + " - Federal Riding" + + start_date = datetime.fromisoformat(mp_role_dict["FromDateTime"]).date() + if mp_role_dict["ToDateTime"] is not None: + end_date = datetime.fromisoformat(mp_role_dict["ToDateTime"]).date() + else: + end_date = src_date_obtained + + sess = Session(motor) + + sql_query = select(Person.id).where(Person.match_name == create_match_name(mp_name)) + res = sess.exec(sql_query).first() + if res is None: + per = Person( + display_name=mp_name, match_name=create_match_name(mp_name), source=src_id + ) + sess.add(per) + sess.commit() + person_id = per.id + else: + person_id = res + + sql_query = select(Organization.id).where( + Organization.match_name == create_match_name(federal_riding_name) + ) + res = sess.exec(sql_query).first() + if res is None: + rid = Organization( + display_name=federal_riding_name, + match_name=create_match_name(federal_riding_name), + organization_type=gov_org_type_id, + sector=gov_sect_id, + parent_organization=fed_gov_id, + source=src_id, + ) + sess.add(rid) + sess.commit() + riding_id = rid.id + else: + riding_id = res + + sql_query = ( + select(OrganizationMembership) + .where(OrganizationMembership.person == person_id) + .where(OrganizationMembership.organization == riding_id) + .where(OrganizationMembership.start_date == start_date) + ) + res = sess.exec(sql_query).first() + if res is None: + rid_mem = OrganizationMembership( + start_date=start_date, + end_date=end_date, + person=person_id, + organization=riding_id, + source=src_id, + ) + sess.add(rid_mem) + sess.commit() + else: + existing = res + if existing.end_date < src_date_obtained: + existing.end_date = src_date_obtained + sess.add(existing) + sess.commit() + + # caucus membership + for c in caucus_roles: + loc_caucus = " ".join([c['CaucusShortName'].strip(), '- Caucus']) + sql_query = select(Organization.id).where( + Organization.match_name == create_match_name(loc_caucus) + ) + res = sess.exec(sql_query).first() + if res is None: + cauc = Organization( + display_name=loc_caucus, + match_name=create_match_name(loc_caucus), + organization_type=pol_part_id, + sector=gov_sect_id, + source=src_id, + ) + sess.add(cauc) + sess.commit() + cauc_id = cauc.id + else: + cauc_id = res + + sd = datetime.fromisoformat(c["FromDateTime"]).date() + if c["ToDateTime"] is not None: + ed = datetime.fromisoformat(c["ToDateTime"]).date() + else: + ed = src_date_obtained + + sql_query = ( + select(OrganizationMembership) + .where(OrganizationMembership.person == person_id) + .where(OrganizationMembership.organization == cauc_id).where(OrganizationMembership.start_date == sd) + ) + res = sess.exec(sql_query).first() + if res is None: + cauc_mem = OrganizationMembership( + start_date=sd, + end_date=ed, + person=person_id, + organization=cauc_id, + source=src_id, + ) + sess.add(cauc_mem) + sess.commit() + else: + existing = res + if existing.end_date < src_date_obtained: + existing.end_date = src_date_obtained + sess.add(existing) + sess.commit() + + # parliamentary positions + for p in parliamentary_positions: + try: + loc_title = p['Title'] + + + multi_position = [] + if 'minister of' in loc_title.lower(): + # if associate is present in the string, wipe it out + loc_title = loc_title.replace("Associate", "") + # if parliamentary secretary is in a ministry entry, wipe it out + loc_title = loc_title.replace("Parliamentary Secretary to the ", '') + + # how many times is 'minister of' present? + if loc_title.lower().count('minister of') > 1: + pop_words = ['and', 'the', 'to'] + cut_string = loc_title + + ind_1 = cut_string.lower().find('minister', 0) + while ind_1 >= 0: + ind_2 = cut_string.lower().find('minister', ind_1 + 1) + if ind_2 < 0: + substring = cut_string[ind_1:].strip() + cut_string = '' + else: + substring = cut_string[ind_1:ind_2].strip() + cut_string = cut_string[ind_2:].strip() + substring_split = substring.split(' ') + substring_split.reverse() + start_ind = 0 + for i in range(0, len(substring_split)): + if substring_split[i].lower() in pop_words: + start_ind += 1 + else: + break + substring_split = substring_split[start_ind:] + substring_split.reverse() + multi_position.append(" ".join(substring_split)) + ind_1 = cut_string.lower().find('minister', 0) + else: + multi_position.append(loc_title) + + for loc_title in multi_position: + loc_title = loc_title.replace('Minister of', 'Ministry of') + + loc_title = loc_title.strip() + sql_query = select(Organization.id).where( + Organization.match_name == create_match_name(loc_title) + ) + res = sess.exec(sql_query).first() + if res is None: + pp = Organization( + display_name=loc_title, + match_name=create_match_name(loc_title), + organization_type=gov_org_type_id, + sector=gov_sect_id, + parent_organization=fed_gov_id, + source=src_id, + ) + sess.add(pp) + sess.commit() + pp_id = pp.id + else: + pp_id = res + + sd = datetime.fromisoformat(p["FromDateTime"]).date() + if p["ToDateTime"] is not None: + ed = datetime.fromisoformat(p["ToDateTime"]).date() + else: + ed = src_date_obtained + + sql_query = ( + select(OrganizationMembership) + .where(OrganizationMembership.person == person_id) + .where(OrganizationMembership.organization == pp_id).where(OrganizationMembership.start_date == sd) + ) + res = sess.exec(sql_query).first() + if res is None: + pp_mem = OrganizationMembership( + person=person_id, + organization=pp_id, + start_date=sd, + end_date=ed, + source=src_id, + ) + sess.add(pp_mem) + sess.commit() + else: + existing = res + if existing.end_date < src_date_obtained: + existing.end_date = src_date_obtained + sess.add(existing) + sess.commit() + + except Exception as e: + print(e) + pass + + # committe memberships + for c in committee_member_roles: + loc_name = " ".join([c["CommitteeName"], "- Committee"]) + + sql_query = select(Organization.id).where( + Organization.match_name == create_match_name(loc_name) + ) + res = sess.exec(sql_query).first() + if res is None: + committee = Organization( + display_name=loc_name, + match_name=create_match_name(loc_name), + organization_type=gov_org_type_id, + sector=gov_sect_id, + parent_organization=fed_gov_id, + source=src_id, + ) + sess.add(committee) + sess.commit() + committee_id = committee.id + else: + committee_id = res + + sd = datetime.fromisoformat(c["FromDateTime"]).date() + if c["ToDateTime"] is not None: + ed = datetime.fromisoformat(c["ToDateTime"]).date() + else: + ed = src_date_obtained + + sql_query = ( + select(OrganizationMembership) + .where(OrganizationMembership.person == person_id) + .where(OrganizationMembership.organization == committee_id) + .where(OrganizationMembership.start_date == sd) + ) + res = sess.exec(sql_query).first() + if res is None: + committee_membership = OrganizationMembership( + person=person_id, + organization=committee_id, + start_date=sd, + end_date=ed, + source=src_id, + ) + sess.add(committee_membership) + sess.commit() + else: + existing = res + if existing.end_date < src_date_obtained: + existing.end_date = src.date_obtained + sess.add(existing) + sess.commit() + + # associations + for a in association_and_group_roles: + sql_query = select(Organization.id).where( + Organization.match_name == create_match_name(a["Organization"]) + ) + res = sess.exec(sql_query).first() + if res is None: + association = Organization( + display_name=a["Organization"], + match_name=create_match_name(a["Organization"]), + organization_type=gov_org_type_id, + sector=gov_sect_id, + parent_organization=fed_gov_id, + source=src_id, + ) + sess.add(association) + sess.commit() + association_id = association.id + else: + association_id = res + + sql_query = ( + select(OrganizationMembership) + .where(OrganizationMembership.person == person_id) + .where(OrganizationMembership.organization == association_id) + ) + res = sess.exec(sql_query).first() + if res is None: + assoc_membership = OrganizationMembership( + person=person_id, + organization=association_id, + source=src_id, + start_date=src_date_obtained, + end_date=src_date_obtained + ) + sess.add(assoc_membership) + sess.commit() + else: + existing = res + if existing.end_date < src_date_obtained: + existing.end_date = src_date_obtained + sess.add(existing) + sess.commit() + + sess.close() diff --git a/backend/app/app/database/parse_injest/utils.py b/backend/app/app/database/parse_injest/utils.py index 99965f42..3a72c702 100644 --- a/backend/app/app/database/parse_injest/utils.py +++ b/backend/app/app/database/parse_injest/utils.py @@ -3,6 +3,8 @@ def create_match_name(name_in): + if not type(name_in) == str: + name_in = str(name_in) # remove any accented characters new = unidecode(name_in) # remove punctuation, since it may or may not always be present (e.g. Inc. vs Inc) diff --git a/backend/app/app/database/sample_graph.pickle b/backend/app/app/database/sample_graph.pickle new file mode 100644 index 00000000..ea9a1325 Binary files /dev/null and b/backend/app/app/database/sample_graph.pickle differ diff --git a/backend/app/app/database/sample_graph.py b/backend/app/app/database/sample_graph.py new file mode 100644 index 00000000..6d699b86 --- /dev/null +++ b/backend/app/app/database/sample_graph.py @@ -0,0 +1,251 @@ +from schema_creation.sqlmodel_build import ( + Person, + OrganizationMembership, + Communications, + Organization, + SectorIndustry, +) +from sqlmodel import create_engine, select, Session, or_ +import pickle +import json + +from parse_injest.utils import create_match_name + +db_host = "localhost" +db_name = "lq_test" +db_user = "test_user" +db_pw = "change_this" + +engine = create_engine( + f"postgresql+psycopg2://{db_user}:{db_pw}@{db_host}/{db_name}", echo=False +) +sess = Session(engine) + +person_of_interest = "ALEXANDER POURBAIX" +max_depth = 3 +dont_get_org_members_sectors = ['Government'] +dont_get_org_members_sectors_dbid = [] +skip_communications = True + +if 'all' not in dont_get_org_members_sectors: + for sec in dont_get_org_members_sectors: + sql_query = select(SectorIndustry).where(SectorIndustry.sector_match_name == create_match_name(sec)) + res = sess.exec(sql_query).first() + dont_get_org_members_sectors_dbid.append(res.id) +else: + dont_get_org_members_sectors_dbid = None + +person_of_interest_mn = create_match_name(person_of_interest) + +num_people = 0 +num_orgs = 0 +num_links = 0 + +pile = [] + +cur_depth = 0 +depth = [] + +nodes = {} +links = [] + +sql_query = select(Person).where(Person.match_name == person_of_interest_mn) +res = sess.exec(sql_query).first() + +q = { + "id": person_of_interest_mn, + "name": res.display_name, + "person": True, + "db_id": res.id, +} +nodes[person_of_interest_mn] = q +pile.append(q) +depth.append(0) + +num_people += 1 + +while len(pile) > 0: + print(f"size of the pile is {len(pile)}") + n = pile.pop() + d = depth.pop() + + if d > max_depth: + continue + + is_person = n["person"] + db_id = n["db_id"] + + if is_person: + # get any memberships + sql_query = select(OrganizationMembership).where( + OrganizationMembership.person == db_id + ) + memberships = sess.exec(sql_query) + + for m in memberships: + sql_query = select(Organization).where(Organization.id == m.organization) + org = sess.exec(sql_query).first() + if org.sector is not None: + sql_query = select(SectorIndustry).where(SectorIndustry.id == org.sector) + res = sess.exec(sql_query).first() + sec = res.sector_display_name + ind = res.industry_display_name + tot = f"{sec},{ind}" + else: + tot = None + + temp = { + "id": org.match_name, + "name": org.display_name, + "val": 6, + 'sector': tot, + "person": False, + "db_id": org.id, + } + if org.match_name not in nodes.keys(): + nodes[org.match_name] = temp + pile.append(temp) + num_orgs += 1 + depth.append(d+1) + + tl = {"source": org.match_name, "target": n["id"]} + lt = {"source": n["id"], "target": org.match_name} + if not (tl in links and lt in links): + links.append(tl) + num_links += 1 + + if not skip_communications: + # get any communications + sql_query = select(Communications).where( + or_(Communications.party_1 == db_id, Communications.party_2 == db_id) + ) + communications = sess.exec(sql_query) + for c in communications: + if c.party_1 == db_id: + other_side = c.party_2 + else: + other_side = c.party_1 + + sql_query = select(Person).where(Person.id == other_side) + other_party = sess.exec(sql_query).first() + + if other_party.match_name not in nodes.keys(): + temp = { + "id": other_party.match_name, + "name": other_party.display_name, + "person": True, + "db_id": other_party.id, + } + nodes[other_party.match_name] = temp + pile.append(temp) + num_people += 1 + depth.append(d+1) + + lt = {"source": other_party.match_name, "target": n["id"], "linkLineDash":[5, 15]} + tl = {"source": n["id"], "target": other_party.match_name, "linkLineDash":[5, 15]} + if not (lt in links and tl in links): + links.append(lt) + num_links += 1 + + else: # if not a person, then this is an org + sql_query = select(Organization).where(Organization.id == db_id) + org = sess.exec(sql_query).first() + + if ( + org.match_name not in nodes.keys() + ): # we should never hit this since everything on the pile should already exist + temp = { + "id": org.match_name, + "name": org.display_name, + "person": False, + "db_id": org.id, + } + nodes[org.match_name] = temp + pile.append(temp) + num_orgs += 1 + + # get any parent organizations + if org.parent_organization is not None: + sql_query = select(Organization).where( + Organization.id == org.parent_organization + ) + parent = sess.exec(sql_query).first() + + if parent.sector is not None: + sql_query = select(SectorIndustry).where(SectorIndustry.id == parent.sector) + res = sess.exec(sql_query).first() + sec = res.sector_display_name + ind = res.industry_display_name + tot = f"{sec},{ind}" + else: + tot = None + + if parent.match_name not in nodes.keys(): + temp = { + "id": parent.match_name, + "name": parent.display_name, + "val": 6, + 'sector': tot, + "person": False, + "db_id": parent.id, + } + nodes[parent.match_name] = temp + pile.append(temp) + num_orgs += 1 + depth.append(d+1) + + tl = {"source": parent.match_name, "target": n["id"]} + lt = {"source": n["id"], "target": n["id"]} + if not (tl in links or lt in links): + links.append(tl) + num_links += 1 + + + if (dont_get_org_members_sectors_dbid is None and d > 1) or (dont_get_org_members_sectors_dbid is not None and org.sector is not None and org.sector in dont_get_org_members_sectors_dbid): + continue + + # get any organization members + sql_query = select(OrganizationMembership).where( + OrganizationMembership.organization == db_id + ) + memberships = sess.exec(sql_query) + for m in memberships: + sql_query = select(Person).where(Person.id == m.person) + person = sess.exec(sql_query).first() + + if person.match_name not in nodes.keys(): + temp = { + "id": person.match_name, + "name": person.display_name, + "person": True, + "db_id": person.id, + } + nodes[person.match_name] = temp + pile.append(temp) + num_people += 1 + depth.append(d+1) + + tl = {"source": person.match_name, "target": n["id"]} + lt = {"source": n["id"], "target": person.match_name} + if not (tl in links or lt in links): + links.append(tl) + num_links += 1 + +sess.close() + +nodes = [x[1] for x in nodes.items()] + +graph = {"nodes": nodes, "links": links} + +with open("sample_graph4.pickle", "wb") as pik: + pickle.dump(graph, pik, pickle.HIGHEST_PROTOCOL) + +with open("sample_graph4.json", 'w') as j: + json.dump(graph, j) + +print("all done") +print(f"we started with {person_of_interest} and...") +print( + f"we managed to hit {num_orgs} organizations and {num_people} people with {num_links} total links" +) +print(f"the max depth setting was {max_depth}") diff --git a/backend/app/app/database/schema_creation/alchemy_build.py b/backend/app/app/database/schema_creation/alchemy_build.py deleted file mode 100644 index a00032ba..00000000 --- a/backend/app/app/database/schema_creation/alchemy_build.py +++ /dev/null @@ -1,121 +0,0 @@ -import sqlalchemy as sa -import sqlalchemy.dialects.postgresql as pg - -db_host = "localhost" -db_name = "lq_test" -db_user = "test_user" -db_pw = "changethis" -schema_name = "lf_mockup" - -drop_tables = False - - -sa_engine = sa.engine.create_engine(f"postgresql+psycopg2://{db_user}:{db_pw}@localhost/{db_name}") - -inspection = sa.inspect(sa_engine) -schemas = inspection.get_schema_names() - -connection = sa_engine.connect() -metadata = sa.MetaData(schema='lf_mockup') -metadata.reflect(sa_engine, schema='lf_mockup') -if drop_tables: - metadata.drop_all(sa_engine) - #sa_engine.dispose() - #metadata.reflect(sa_engine, schema='lf_mockup') -else: - - # Information source/Reference - source = sa.Table('source', - metadata, - sa.Column('id', sa.BigInteger, sa.Identity(), primary_key=True), - sa.Column('date_obtained', sa.Date, nullable=False), - sa.Column('data_source', sa.Text, nullable=False), - sa.Column('misc_data', pg.JSONB), - ) - - # Individual humans - person = sa.Table('person', - metadata, - sa.Column('id', sa.BigInteger, sa.Identity(), primary_key=True), - sa.Column('display_name', sa.Text, unique=True, nullable=False), - sa.Column('match_name', sa.Text, unique=True, nullable=False), - sa.Column('source', sa.BigInteger, sa.ForeignKey('source.id'), nullable=False) - ) - - # Standard non-overlapping sector/topic - sector = sa.Table('sector', - metadata, - sa.Column('id', sa.Integer, sa.Identity(), primary_key=True), - sa.Column('display_name', sa.Text, unique=True, nullable=False), - sa.Column('match_name', sa.Text, unique=True, nullable=False), - ) - - # Corporations, government, lobbying groups, special interests, etc. - org_type = sa.Table('organization_type', - metadata, - sa.Column('id', sa.Integer, sa.Identity(), primary_key=True), - sa.Column('display_name', sa.Text, unique=True, nullable=False), - sa.Column('match_name', sa.Text, unique=True, nullable=False), - ) - - # Organizations (corporations, government, cabinet, associations, etc.) - organization = sa.Table('organization', - metadata, - sa.Column('id', sa.BigInteger, sa.Identity(), primary_key=True), - sa.Column('display_name', sa.Text, unique=True, nullable=False), - sa.Column('match_name', sa.Text, unique=True, nullable=False), - sa.Column('organization_type', sa.Integer, sa.ForeignKey('organization_type.id'), nullable=False), - sa.Column('parent_organization', sa.BigInteger, sa.ForeignKey('organization.id')), - sa.Column('sector', sa.Integer, sa.ForeignKey('sector.id'), nullable=False), - sa.Column('source', sa.BigInteger, sa.ForeignKey('source.id'), nullable=False), - sa.Column('misc_data', pg.JSONB) - ) - - # People belonging to organizations - organization_membership = sa.Table('organization_membership', - metadata, - sa.Column('id', sa.BigInteger, sa.Identity(), primary_key=True), - sa.Column('person', sa.BigInteger, sa.ForeignKey('person.id'), nullable=False), - sa.Column('organization', sa.BigInteger, sa.ForeignKey('organization.id'), - nullable=False), - sa.Column('source', sa.BigInteger, sa.ForeignKey('source.id'), nullable=False), - sa.Column('start_date', sa.Date), - sa.Column('end_date', sa.Date) - ) - - # Person to Person (comms log) - communications = sa.Table('communications', - metadata, - sa.Column('id', sa.BigInteger, sa.Identity(), primary_key=True), - sa.Column('party_1', sa.BigInteger, sa.ForeignKey('person.id'), nullable=False), - sa.Column('party_2', sa.BigInteger, sa.ForeignKey('person.id'), nullable=False), - sa.Column('date', sa.Date, nullable=False), - sa.Column('sector', sa.Integer, sa.ForeignKey('sector.id')), - sa.Column('source', sa.BigInteger, sa.ForeignKey('source.id'), nullable=False) - ) - - # Monetary exchange (future use) - funding = sa.Table('funding', - metadata, - sa.Column('id', sa.BigInteger, sa.Identity(), primary_key=True), - sa.Column('party_1', sa.BigInteger, sa.ForeignKey('organization.id'), nullable=False), - sa.Column('party_2', sa.BigInteger, sa.ForeignKey('organization.id'), nullable=False), - sa.Column('amount', sa.Integer, nullable=False), - sa.Column('start_date', sa.Date), - sa.Column('end_date', sa.Date), - sa.Column('source', sa.BigInteger, sa.ForeignKey('source.id'), nullable=False) - ) - - # Details of the corporation (an organization of type corporation) - corporation_info = sa.Table('corporate_info', - metadata, - sa.Column('id', sa.BigInteger, sa.Identity(), primary_key=True), - sa.Column('organization', sa.BigInteger, sa.ForeignKey('organization.id'), nullable=False, unique=True), - sa.Column('corporate_number', sa.BigInteger, nullable=False, unique=True), - sa.Column('stock_ticker', sa.String(10), unique=True), - sa.Column('source', sa.BigInteger, sa.ForeignKey('source.id'), nullable=False)) - - metadata.create_all(sa_engine) - -print("done") - diff --git a/backend/app/app/database/schema_creation/db_func.py b/backend/app/app/database/schema_creation/db_func.py new file mode 100644 index 00000000..fec8b531 --- /dev/null +++ b/backend/app/app/database/schema_creation/db_func.py @@ -0,0 +1,30 @@ +from sqlmodel_build import meta, schema_name, FundingPersonPerson, FundingPersonOrg +from sqlmodel import Session, create_engine + + +def create_everything(): + db_host = "localhost" + db_name = "lq_test" + db_user = "test_user" + db_pw = "changethis" + schema_name = "lf_mockup" + + engine = create_engine(f"postgresql+psycopg2://{db_user}:{db_pw}@localhost/{db_name}", echo=True) + meta.create_all(engine) + + +def add_tables(): + db_host = "localhost" + db_name = "lq_test" + db_user = "test_user" + db_pw = "changethis" + schema_name = "lf_mockup_2" + + motor = create_engine( + f"postgresql+psycopg2://{db_user}:{db_pw}@localhost/{db_name}", echo=True + ) + + session = Session(motor) + + FundingPersonPerson.__table__.create(session.bind) + FundingPersonOrg.__table__.create(session.bind) diff --git a/backend/app/app/database/schema_creation/schema_creation_v1.py b/backend/app/app/database/schema_creation/schema_creation_v1.py deleted file mode 100644 index 008b0310..00000000 --- a/backend/app/app/database/schema_creation/schema_creation_v1.py +++ /dev/null @@ -1,89 +0,0 @@ -import psycopg2 - -db_host = "localhost" -db_name = "test_db" -db_user = "postgres" -db_pw = "1212" - -schema_name = "lf_mockup_v1" -drop_schema = True - -conn = psycopg2.connect("dbname={} user={} password={} host={}".format(db_name, db_user, db_pw, db_host)) -cur = conn.cursor() - -if drop_schema: - cur.execute("DROP SCHEMA IF EXISTS {} CASCADE;".format(schema_name)) - cur.execute("CREATE SCHEMA {};".format(schema_name)) - -source_table = (f"CREATE TABLE IF NOT EXISTS {schema_name}.source(id bigserial UNIQUE PRIMARY KEY NOT NULL, " - f"date_obtained date, " - f"data_source text);") -cur.execute(source_table) -conn.commit() - -sector_table = (f"CREATE TABLE IF NOT EXISTS {schema_name}.sector(id bigserial UNIQUE PRIMARY KEY NOT NULL, " - f"description text);") -cur.execute(sector_table) -conn.commit() - -person_table = (f"CREATE TABLE IF NOT EXISTS {schema_name}.person(id bigserial unique primary key not null, " - f"name text not null unique, " - # f"affiliations json," - # f"affiliation_sources json); - f"source integer references {schema_name}.source(id));") -cur.execute(person_table) -conn.commit() - -relationship_type_table = ( - f"CREATE TABLE IF NOT EXISTS {schema_name}.relationship_type(id bigserial UNIQUE PRIMARY KEY NOT NULL, " - f"description text NOT NULL);") -cur.execute(relationship_type_table) -conn.commit() - -party_type_table = (f"CREATE TABLE IF NOT EXISTS {schema_name}.party_type(id bigserial UNIQUE PRIMARY KEY NOT NULL, " - f"description text);") -cur.execute(party_type_table) -conn.commit() - -relationship_table = ( - f"CREATE TABLE IF NOT EXISTS {schema_name}.relationship(id bigserial UNIQUE PRIMARY KEY NOT NULL, " - f"party_1 integer, " - f"party_1_type integer references {schema_name}.party_type(id)," - f"party_2 integer, " - f"party_2_type integer references {schema_name}.party_type(id), " - f"relation_type integer references {schema_name}.relationship_type(id), " - f"sector integer references {schema_name}.sector(id), " - f"source integer references {schema_name}.source(id));") -cur.execute(relationship_table) -conn.commit() - -organization_type_table = ( - f"CREATE TABLE IF NOT EXISTS {schema_name}.organization_type(id bigserial UNIQUE PRIMARY KEY NOT NULL, " - f"description text);") -cur.execute(organization_type_table) -conn.commit() - -organization_table = ( - f"CREATE TABLE IF NOT EXISTS {schema_name}.organization(id bigserial UNIQUE PRIMARY KEY NOT NULL, " - f"name text NOT NULL, " - f"organization_type integer references {schema_name}.organization_type(id), " - f"parent_org integer, " - f"source integer references {schema_name}.source(id));") -cur.execute(organization_table) - -conn.commit() - -sql_insert = ( - f"INSERT INTO {schema_name}.relationship_type(description) VALUES ('COMMUNICATIONS'), ('MEMBER_OR_EMPLOYEE'), ('FUNDING');") -cur.execute(sql_insert) - -sql_insert = ( - f"INSERT INTO {schema_name}.organization_type (description) VALUES ('CORPORATION'), ('GOVERNMENT'), ('LOBBY_GROUP'), ('NOT_FOR_PROFIT');") -cur.execute(sql_insert) - -sql_insert = (f"INSERT INTO {schema_name}.party_type (description) VALUES ('ORGANIZATION'), ('PERSON');") -cur.execute(sql_insert) - -conn.commit() -cur.close() -conn.close() diff --git a/backend/app/app/database/schema_creation/sqlmodel_build.py b/backend/app/app/database/schema_creation/sqlmodel_build.py index 14db90d5..faf2c199 100644 --- a/backend/app/app/database/schema_creation/sqlmodel_build.py +++ b/backend/app/app/database/schema_creation/sqlmodel_build.py @@ -1,14 +1,11 @@ from typing import Optional - import sqlalchemy as sa import sqlalchemy.dialects.postgresql as pg - from sqlmodel import Field, SQLModel, create_engine from datetime import date -schema_name = "lf_mockup" - +schema_name = "lf_mockup_2" meta = sa.MetaData(schema=schema_name) @@ -58,7 +55,7 @@ class Organization(SQLModel, table=True): match_name: str = Field(unique=True, nullable=False) organization_type: int = Field(foreign_key='organizationtype.id', nullable=False) parent_organization: int = Field(foreign_key='organization.id', nullable=True) - sector: int = Field(foreign_key='sectorindustry.id', nullable=False) + sector: int = Field(foreign_key='sectorindustry.id', nullable=True) source: int = Field(foreign_key='source.id', nullable=False) misc_data: dict = Field(default={}, sa_column=sa.Column(pg.JSONB)) @@ -70,8 +67,8 @@ class OrganizationMembership(SQLModel, table=True): #__table_args__ = {"schema": f"{schema_name}"} metadata = meta id: Optional[int] = Field(default=None, primary_key=True) - person: int = Field(foreign_key='person.id', nullable=False) - organization: int = Field(foreign_key='organization.id', nullable=False) + person: int = Field(foreign_key='person.id', nullable=False, index=True) + organization: int = Field(foreign_key='organization.id', nullable=False, index=True) start_date: date = Field(sa_column=sa.Column(sa.Date, nullable=False)) end_date: date = Field(sa_column=sa.Column(sa.Date)) source: int = Field(foreign_key='source.id', nullable=False) @@ -83,12 +80,33 @@ class CommsTopic(SQLModel, table=True): display_name: str = Field(nullable=False) match_name: str = Field(nullable=False) + class Communications(SQLModel, table=True): #__table_args__ = {"schema": f"{schema_name}"} metadata = meta id: Optional[int] = Field(default=None, primary_key=True) - party_1: int = Field(foreign_key='person.id', nullable=False) - party_2: int = Field(foreign_key='person.id', nullable=False) + party_1: int = Field(foreign_key='person.id', nullable=False, index=True) + party_2: int = Field(foreign_key='person.id', nullable=False, index=True) + com_date: date = Field(sa_column=sa.Column(sa.Date, nullable=False)) + topic: int = Field(foreign_key='commstopic.id') + source: int = Field(foreign_key='source.id', nullable=False) + + +class CommunicationsPersonOrg(SQLModel, table=True): + metadata = meta + id: Optional[int] = Field(default=None, primary_key=True) + person: int = Field(foreign_key='person.id', nullable=False, index=True) + organization: int = Field(foreign_key='organization.id', nullable=False, index=True) + com_date: date = Field(sa_column=sa.Column(sa.Date, nullable=False)) + topic: int = Field(foreign_key='commstopic.id') + source: int = Field(foreign_key='source.id', nullable=False) + + +class CommunicationsOrgOrg(SQLModel, table=True): + metadata = meta + id: Optional[int] = Field(default=None, primary_key=True) + party_1: int = Field(foreign_key='organization.id', nullable=False, index=True) + party_2: int = Field(foreign_key='organization.id', nullable=False, index=True) com_date: date = Field(sa_column=sa.Column(sa.Date, nullable=False)) topic: int = Field(foreign_key='commstopic.id') source: int = Field(foreign_key='source.id', nullable=False) @@ -98,30 +116,41 @@ class Funding(SQLModel, table=True): #__table_args__ = {"schema": f"{schema_name}"} metadata = meta id: Optional[int] = Field(default=None, primary_key=True) - party_1: int = Field(foreign_key='organization.id', nullable=False) - party_2: int = Field(foreign_key='organization.id', nullable=False) + party_1: int = Field(foreign_key='organization.id', nullable=False, index=True) + party_2: int = Field(foreign_key='organization.id', nullable=False, index=True) amount: int = Field(nullable=False) start_date: date = Field(sa_column=sa.Column(sa.Date, nullable=False)) end_date: date = Field(sa_column=sa.Column(sa.Date)) source: int = Field(foreign_key='source.id', nullable=False) -class CorporateInfo(SQLModel, table=True): - #__table_args__ = {"schema": f"{schema_name}"} +class FundingPersonPerson(SQLModel, table=True): metadata = meta id: Optional[int] = Field(default=None, primary_key=True) - organization: int = Field(foreign_key='organization.id', nullable=False, unique=True) - corporate_number: int = Field(nullable=False, unique=True) - stock_ticker: str = Field(max_length=10, unique=True) + party_1: int = Field(foreign_key='person.id', nullable=False, index=True) + party_2: int = Field(foreign_key='person.id', nullable=False, index=True) + amount: int = Field(nullable=False) + start_date: date = Field(sa_column=sa.Column(sa.Date, nullable=False)) + end_date: date = Field(sa_column=sa.Column(sa.Date, nullable=False)) source: int = Field(foreign_key='source.id', nullable=False) -if __name__ == "__main__": - db_host = "localhost" - db_name = "lq_test" - db_user = "test_user" - db_pw = "changethis" - schema_name = "lf_mockup" +class FundingPersonOrg(SQLModel, table=True): + metadata = meta + id: Optional[int] = Field(default=None, primary_key=True) + person: int = Field(foreign_key='person.id', nullable=False, index=True) + organization: int = Field(foreign_key='organization.id', nullable=False, index=True) + amount: int = Field(nullable=False) + start_date: date = Field(sa_column=sa.Column(sa.Date, nullable=False)) + end_date: date = Field(sa_column=sa.Column(sa.Date, nullable=False)) + source: int = Field(foreign_key='source.id', nullable=False) + - engine = create_engine(f"postgresql+psycopg2://{db_user}:{db_pw}@localhost/{db_name}", echo=True) - meta.create_all(engine) +# class CorporateInfo(SQLModel, table=True): +# #__table_args__ = {"schema": f"{schema_name}"} +# metadata = meta +# id: Optional[int] = Field(default=None, primary_key=True) +# organization: int = Field(foreign_key='organization.id', nullable=False, unique=True) +# corporate_number: int = Field(nullable=False, unique=True) +# stock_ticker: str = Field(max_length=10, unique=True) +# source: int = Field(foreign_key='source.id', nullable=False) \ No newline at end of file diff --git a/backend/app/app/db/base.py b/backend/app/app/db/base.py index b7ec44fe..c267819b 100644 --- a/backend/app/app/db/base.py +++ b/backend/app/app/db/base.py @@ -1,5 +1,7 @@ # Import all the models, so that Base has them before being # imported by Alembic from app.db.base_class import Base # noqa -from app.models.item import Item # noqa from app.models.user import User # noqa + +# from app.models.item import Item # noqa +from app.models.token import AccessToken # noqa diff --git a/backend/app/app/db/base_class.py b/backend/app/app/db/base_class.py index 3b759110..925888af 100644 --- a/backend/app/app/db/base_class.py +++ b/backend/app/app/db/base_class.py @@ -1,5 +1,6 @@ from typing import Any +from fastapi_users.db import SQLAlchemyBaseUserTableUUID from sqlalchemy.ext.declarative import as_declarative, declared_attr diff --git a/backend/app/app/db/init_db.py b/backend/app/app/db/init_db.py index bc1dd2e0..03c56bba 100644 --- a/backend/app/app/db/init_db.py +++ b/backend/app/app/db/init_db.py @@ -1,25 +1,51 @@ -from sqlalchemy.orm import Session +import contextlib +import logging + +from fastapi_users.exceptions import UserAlreadyExists -from app import crud, schemas from app.core.config import settings -from app.db import base # noqa: F401 +from app.core.users import get_user_manager +from app.db.base_class import Base # noqa: F401 +from app.db.session import engine, get_async_session, get_user_db +from app.schemas import UserCreate + +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger(__name__) + +get_async_session_context = contextlib.asynccontextmanager(get_async_session) +get_user_db_context = contextlib.asynccontextmanager(get_user_db) +get_user_manager_context = contextlib.asynccontextmanager(get_user_manager) + + +async def create_db_and_tables(): + async with engine.begin() as conn: + await conn.run_sync(Base.metadata.create_all) + + +async def create_superuser(email: str, password: str, is_superuser: bool = False): + try: + async with get_async_session_context() as session: + async with get_user_db_context(session) as user_db: + async with get_user_manager_context(user_db) as user_manager: + user = await user_manager.create( + UserCreate( + email=email, password=password, is_superuser=is_superuser + ) + ) + logger.info(f"User created {user}") + except UserAlreadyExists: + logger.warning(f"User {email} already exists") + # make sure all SQL Alchemy models are imported (app.db.base) before initializing DB # otherwise, SQL Alchemy might fail to initialize relationships properly # for more details: https://github.com/tiangolo/full-stack-fastapi-postgresql/issues/28 +async def init_db() -> None: - -def init_db(db: Session) -> None: - # Tables should be created with Alembic migrations - # But if you don't want to use migrations, create - # the tables un-commenting the next line - # Base.metadata.create_all(bind=engine) - - user = crud.user.get_by_email(db, email=settings.FIRST_SUPERUSER) - if not user: - user_in = schemas.UserCreate( - email=settings.FIRST_SUPERUSER, - password=settings.FIRST_SUPERUSER_PASSWORD, - is_superuser=True, - ) - user = crud.user.create(db, obj_in=user_in) # noqa: F841 + # TODO: remove when Alembic is implemented + await create_db_and_tables() + await create_superuser( + email=settings.FIRST_SUPERUSER, + password=settings.FIRST_SUPERUSER_PASSWORD, + is_superuser=True, + ) diff --git a/backend/app/app/db/session.py b/backend/app/app/db/session.py index 9edb2fa1..91646cd2 100644 --- a/backend/app/app/db/session.py +++ b/backend/app/app/db/session.py @@ -1,7 +1,38 @@ -from sqlalchemy import create_engine -from sqlalchemy.orm import sessionmaker + +from typing import AsyncGenerator, Generator + +from fastapi import Depends +from fastapi_users.db import SQLAlchemyUserDatabase +from fastapi_users_db_sqlalchemy.access_token import SQLAlchemyAccessTokenDatabase +from sqlalchemy.engine import create_engine +from sqlalchemy.ext.asyncio import AsyncSession, create_async_engine +from sqlalchemy.orm import Session, sessionmaker from app.core.config import settings +from app.db.base import Base +from app.models import AccessToken, OAuthAccount, User + +# Postgres instance +engine = create_async_engine(settings.SQLALCHEMY_DATABASE_URI, pool_pre_ping=True) +async_session_maker = sessionmaker(engine, class_=AsyncSession, expire_on_commit=False) + + +async def get_async_session() -> AsyncGenerator[AsyncSession, None]: + async with async_session_maker() as session: + yield session + + +async def create_db_and_tables(): + async with engine.begin() as conn: + await conn.run_sync(Base.metadata.create_all) + + +async def get_user_db(session: AsyncSession = Depends(get_async_session)): + yield SQLAlchemyUserDatabase(session, User, OAuthAccount) + + +async def get_access_token_db( + session: AsyncSession = Depends(get_async_session), +): + yield SQLAlchemyAccessTokenDatabase(session, AccessToken) -engine = create_engine(settings.SQLALCHEMY_DATABASE_URI, pool_pre_ping=True) -SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine) diff --git a/backend/app/app/email-templates/build/verify_email.html b/backend/app/app/email-templates/build/verify_email.html new file mode 100644 index 00000000..120e8840 --- /dev/null +++ b/backend/app/app/email-templates/build/verify_email.html @@ -0,0 +1,24 @@ +

Confirm your email address
Hi,
You'll need to validate this email address before you can offer your work. All you need to do is click this button.
Confirm your email
Or open the following link:
If you have no idea what this is about, then don't worry. You can safely ignore and delete this email.
For any concerns or queries, just email me.
{{ server_bot }} @ {{ server_name }}
diff --git a/backend/app/app/email-templates/build/web_contact_email.html b/backend/app/app/email-templates/build/web_contact_email.html new file mode 100644 index 00000000..daf76d3e --- /dev/null +++ b/backend/app/app/email-templates/build/web_contact_email.html @@ -0,0 +1,24 @@ +

Email from: {{ email }}
{{ content }}
diff --git a/backend/app/app/email-templates/src/verify_email.mjml b/backend/app/app/email-templates/src/verify_email.mjml new file mode 100644 index 00000000..8cdbb97b --- /dev/null +++ b/backend/app/app/email-templates/src/verify_email.mjml @@ -0,0 +1,52 @@ + + + + + + + Confirm your email address + Hi, + You'll need to validate this email address before you can offer your + work. All you need to do is click this button. + + Confirm your email + + Or open the following link: + {{ link }} + If you have no idea what this is about, then don't worry. You can + safely ignore and delete this email. + For any concerns or queries, just email me. + {{ server_bot }} @ {{ server_name }} + + + + diff --git a/backend/app/app/email-templates/src/web_contact_email.mjml b/backend/app/app/email-templates/src/web_contact_email.mjml new file mode 100644 index 00000000..4b3ea03d --- /dev/null +++ b/backend/app/app/email-templates/src/web_contact_email.mjml @@ -0,0 +1,20 @@ + + + + + + + Email from: {{ email }} + {{ content }} + + + + \ No newline at end of file diff --git a/backend/app/app/gqlmodels/__init__.py b/backend/app/app/gqlmodels/__init__.py new file mode 100644 index 00000000..f20352c1 --- /dev/null +++ b/backend/app/app/gqlmodels/__init__.py @@ -0,0 +1,9 @@ +# from .graph import ( +# MGCommsTopic, +# MGFunding, +# MGOrganization, +# MGOrganizationType, +# MGPerson, +# MGSectorIndustry, +# MGSource, +# ) diff --git a/backend/app/app/gqlmodels/graph.py b/backend/app/app/gqlmodels/graph.py new file mode 100644 index 00000000..3ac8f1a4 --- /dev/null +++ b/backend/app/app/gqlmodels/graph.py @@ -0,0 +1,80 @@ +# from datetime import date +# from typing import Optional + +# import networkx as nx +# from gqlalchemy import Field, Memgraph, Node, Relationship + +# from app.core.config import settings + +# gdb = Memgraph(host=settings.MEMGRAPH_HOST, port=settings.MEMGRAPH_PORT) + + +# class MGSource(Node, db=gdb): +# id: Optional[int] = Field(index=True, exists=True, unique=True, db=gdb) +# date_obtained: Optional[date] = Field() +# data_source: Optional[str] +# misc_data: Optional[str] + + +# class MGPerson(Node, index=True, db=gdb): +# id: Optional[int] = Field(index=True, exists=True, unique=True, db=gdb) +# display_name: Optional[str] = Field(unique=True) +# match_name: Optional[str] = Field(index=True, unique=True) +# source: Optional[int] = Field(exists=True) + + +# class MGSectorIndustry(Node, db=gdb): +# id: Optional[int] = Field(exists=True, unique=True) +# sector_display_name: Optional[str] = Field(exists=True, unique=True) +# sector_match_name: Optional[str] = Field(exists=True, unique=True) +# industry_display_name: Optional[str] = Field(exists=True, unique=True) +# industry_match_name: Optional[str] = Field(exists=True, unique=True) + + +# class MGOrganizationType(Node, db=gdb): +# id: Optional[int] = Field(exists=True, unique=True) +# display_name: Optional[str] = Field(unique=True) +# match_name: Optional[str] = Field(unique=True) + + +# class MGOrganization(Node, index=True, db=gdb): +# id: Optional[int] = Field(index=True, unique=True, exists=True) +# display_name: Optional[str] = Field(unique=True) +# match_name: Optional[str] = Field(index=True, unique=True) +# organization_type: Optional[str] = Field(exists=True) +# sector: Optional[str] +# industry: Optional[str] +# source: Optional[int] = Field() +# misc_data: Optional[str] = Field() + + +# class MGMembership(Relationship, type="MEMBERSHIP"): +# id: Optional[int] = Field(unique=True) +# start_date: Optional[date] = Field() +# end_date: Optional[date] = Field() +# source: Optional[int] = Field(exists=True) + + +# class MGCommsTopic(Node, db=gdb): +# id: Optional[int] = Field(unique=True, exists=True) +# display_name: Optional[str] = Field(exists=True, unique=True) +# match_name: Optional[str] = Field(exists=True, unique=True) + + +# class MGCommunications(Relationship, type="COMMUNICATION"): +# id: Optional[int] = Field(exists=True, unique=True) +# party_0: Optional[int] = Field(exists=True) +# party_1: Optional[int] = Field(exists=True) +# com_date: Optional[date] = Field(exists=True) +# topic: Optional[str] = Field() +# source: Optional[int] = Field(exists=True) + + +# class MGFunding(Relationship, type="FUNDS"): +# id: Optional[int] = Field(exists=True) +# party_0: Optional[int] = Field(exists=True) +# party_1: Optional[int] = Field(exists=True) +# amount: Optional[int] = Field(exist=True) +# start_date: Optional[date] = Field(exists=True) +# end_date: Optional[date] = Field() +# source: Optional[int] = Field(exists=True) diff --git a/backend/app/app/initial_data.py b/backend/app/app/initial_data.py index c50646d2..d37ef303 100644 --- a/backend/app/app/initial_data.py +++ b/backend/app/app/initial_data.py @@ -1,15 +1,17 @@ +import asyncio import logging from app.db.init_db import init_db -from app.db.session import SessionLocal logging.basicConfig(level=logging.INFO) logger = logging.getLogger(__name__) def init() -> None: - db = SessionLocal() - init_db(db) + + logger.info("Creating database and tables") + asyncio.run(init_db()) + logger.info("Database and tables created") def main() -> None: diff --git a/backend/app/app/main.py b/backend/app/app/main.py index d5d0a794..18cfad3d 100644 --- a/backend/app/app/main.py +++ b/backend/app/app/main.py @@ -1,13 +1,21 @@ from fastapi import FastAPI +from fastapi.routing import APIRoute from starlette.middleware.cors import CORSMiddleware from app.api.api_v1.api import api_router from app.core.config import settings + +def custom_generate_unique_id(route: APIRoute): + return f"{route.tags[0]}-{route.name}" + + app = FastAPI( + generate_unique_id_function=custom_generate_unique_id, title=settings.PROJECT_NAME, openapi_url=f"{settings.API_V1_STR}/openapi.json" ) + # Set all CORS enabled origins if settings.BACKEND_CORS_ORIGINS: app.add_middleware( diff --git a/backend/app/app/models/__init__.py b/backend/app/app/models/__init__.py index a9c6bdb1..e3ef42d4 100644 --- a/backend/app/app/models/__init__.py +++ b/backend/app/app/models/__init__.py @@ -1,2 +1,3 @@ from .item import Item -from .user import User +from .token import AccessToken +from .user import OAuthAccount, User diff --git a/backend/app/app/models/item.py b/backend/app/app/models/item.py index 205535e4..14d67e8a 100755 --- a/backend/app/app/models/item.py +++ b/backend/app/app/models/item.py @@ -1,6 +1,7 @@ from typing import TYPE_CHECKING from sqlalchemy import Column, ForeignKey, Integer, String +from sqlalchemy.dialects.postgresql import UUID from sqlalchemy.orm import relationship from app.db.base_class import Base @@ -10,8 +11,8 @@ class Item(Base): - id = Column(Integer, primary_key=True, index=True) + id = Column(UUID, primary_key=True, index=True) title = Column(String, index=True) description = Column(String, index=True) - owner_id = Column(Integer, ForeignKey("user.id")) + owner_id = Column(UUID, ForeignKey("user.id")) owner = relationship("User", back_populates="items") diff --git a/backend/app/app/models/token.py b/backend/app/app/models/token.py new file mode 100644 index 00000000..6e54572d --- /dev/null +++ b/backend/app/app/models/token.py @@ -0,0 +1,10 @@ +from fastapi_users_db_sqlalchemy.access_token import ( + SQLAlchemyAccessTokenDatabase, + SQLAlchemyBaseAccessTokenTableUUID, +) + +from app.db.base_class import Base + + +class AccessToken(SQLAlchemyBaseAccessTokenTableUUID, Base): + pass diff --git a/backend/app/app/models/user.py b/backend/app/app/models/user.py index 1e8e1a01..5eb0500e 100755 --- a/backend/app/app/models/user.py +++ b/backend/app/app/models/user.py @@ -1,7 +1,10 @@ from typing import TYPE_CHECKING -from sqlalchemy import Boolean, Column, Integer, String -from sqlalchemy.orm import relationship +from fastapi_users.db import ( + SQLAlchemyBaseOAuthAccountTableUUID, + SQLAlchemyBaseUserTableUUID, +) +from sqlalchemy.orm import Mapped, relationship from app.db.base_class import Base @@ -9,11 +12,12 @@ from .item import Item # noqa: F401 -class User(Base): - id = Column(Integer, primary_key=True, index=True) - full_name = Column(String, index=True) - email = Column(String, unique=True, index=True, nullable=False) - hashed_password = Column(String, nullable=False) - is_active = Column(Boolean(), default=True) - is_superuser = Column(Boolean(), default=False) +class User(SQLAlchemyBaseUserTableUUID, Base): + oauth_accounts: Mapped["OAuthAccount"] = relationship( + "OAuthAccount", lazy="joined" + ) items = relationship("Item", back_populates="owner") + +class OAuthAccount(SQLAlchemyBaseOAuthAccountTableUUID, Base): + pass + diff --git a/backend/app/app/schemas/__init__.py b/backend/app/app/schemas/__init__.py index 6b41593d..fc994252 100644 --- a/backend/app/app/schemas/__init__.py +++ b/backend/app/app/schemas/__init__.py @@ -1,4 +1,5 @@ +from .emails import EmailContent, EmailValidation +from .graph import GraphData, GraphSearchOptions, Link, Node from .item import Item, ItemCreate, ItemInDB, ItemUpdate from .msg import Msg -from .token import Token, TokenPayload -from .user import User, UserCreate, UserInDB, UserUpdate +from .user import UserCreate, UserRead, UserUpdate diff --git a/backend/app/app/schemas/emails.py b/backend/app/app/schemas/emails.py new file mode 100644 index 00000000..5380341d --- /dev/null +++ b/backend/app/app/schemas/emails.py @@ -0,0 +1,15 @@ +from typing import Any, List + +from pydantic import BaseModel, EmailStr + + +class EmailContent(BaseModel): + email: EmailStr + subject: str + content: str + + +class EmailValidation(BaseModel): + email: EmailStr + subject: str + token: Any diff --git a/backend/app/app/schemas/graph.py b/backend/app/app/schemas/graph.py new file mode 100644 index 00000000..087b845b --- /dev/null +++ b/backend/app/app/schemas/graph.py @@ -0,0 +1,37 @@ +from __future__ import annotations + +from typing import List, Optional + +from pydantic import BaseModel + + +class Node(BaseModel): + id: Optional[str] + name: Optional[str] + type: Optional[str] + nodeColor: Optional[str] + value: Optional[int] + + +class Link(BaseModel): + source: Optional[str] + target: Optional[str] + type: Optional[str] + linkColor: Optional[str] + linkDirectionalArrowLength: Optional[int] + linkDirectionalArrowRelPos: Optional[float] + linkWidth: Optional[int] + dash: Optional[List[int]] + amount: Optional[int] + + +class GraphData(BaseModel): + nodes: Optional[List[Node]] + links: Optional[List[Link]] + + +class GraphSearchOptions(BaseModel): + value: str + label: str + type: str + bill_match: str diff --git a/backend/app/app/schemas/token.py b/backend/app/app/schemas/token.py deleted file mode 100644 index ea85b460..00000000 --- a/backend/app/app/schemas/token.py +++ /dev/null @@ -1,12 +0,0 @@ -from typing import Optional - -from pydantic import BaseModel - - -class Token(BaseModel): - access_token: str - token_type: str - - -class TokenPayload(BaseModel): - sub: Optional[int] = None diff --git a/backend/app/app/schemas/user.py b/backend/app/app/schemas/user.py index 7f5c85ac..3292ed28 100644 --- a/backend/app/app/schemas/user.py +++ b/backend/app/app/schemas/user.py @@ -1,39 +1,24 @@ -from typing import Optional +import uuid -from pydantic import BaseModel, EmailStr +from fastapi_users import schemas -# Shared properties -class UserBase(BaseModel): - email: Optional[EmailStr] = None - is_active: Optional[bool] = True - is_superuser: bool = False - full_name: Optional[str] = None - - -# Properties to receive via API on creation -class UserCreate(UserBase): - email: EmailStr - password: str - - -# Properties to receive via API on update -class UserUpdate(UserBase): - password: Optional[str] = None +class UserRead(schemas.BaseUser[uuid.UUID]): + pass + # items: list[str] = [] -class UserInDBBase(UserBase): - id: Optional[int] = None +class UserCreate(schemas.BaseUserCreate): + pass - class Config: - orm_mode = True + # items: list[str] = [] -# Additional properties to return via API -class User(UserInDBBase): +class UserUpdate(schemas.BaseUserUpdate): pass + # items: list[str] = [] -# Additional properties stored in DB -class UserInDB(UserInDBBase): - hashed_password: str +# Additional properties to return via API +# class User(schemas.BaseUser[uuid.UUID]): +# pass diff --git a/backend/app/app/utils.py b/backend/app/app/utils.py index 0216c22e..26e6d087 100644 --- a/backend/app/app/utils.py +++ b/backend/app/app/utils.py @@ -1,44 +1,61 @@ import logging from datetime import datetime, timedelta from pathlib import Path -from typing import Any, Dict, Optional +from typing import Any, Dict, List, Optional -# import emails -# from emails.template import JinjaTemplate +from fastapi_mail import ConnectionConfig, FastMail, MessageSchema, MessageType from jose import jwt +from pydantic import BaseModel, EmailStr +from starlette.responses import JSONResponse from app.core.config import settings +from app.schemas import EmailContent, EmailValidation -def send_email( +class EmailSchema(BaseModel): + email: List[EmailStr] + + +async def send_email( email_to: str, subject_template: str = "", html_template: str = "", environment: Dict[str, Any] = {}, ) -> None: assert settings.EMAILS_ENABLED, "no provided configuration for email variables" - message = emails.Message( - subject=JinjaTemplate(subject_template), - html=JinjaTemplate(html_template), - mail_from=(settings.EMAILS_FROM_NAME, settings.EMAILS_FROM_EMAIL), + + conf = ConnectionConfig( + MAIL_USERNAME=settings.SMTP_USER, + MAIL_PASSWORD=settings.SMTP_PASSWORD, + MAIL_PORT=settings.SMTP_PORT, + MAIL_SERVER=settings.SMTP_HOST, + MAIL_SSL_TLS=settings.SMTP_TLS, + MAIL_STARTTLS=True, + USE_CREDENTIALS=True, + VALIDATE_CERTS=True, + MAIL_FROM=settings.EMAILS_FROM_EMAIL, + TEMPLATE_FOLDER=settings.EMAIL_TEMPLATES_DIR, ) - smtp_options = {"host": settings.SMTP_HOST, "port": settings.SMTP_PORT} - if settings.SMTP_TLS: - smtp_options["tls"] = True - if settings.SMTP_USER: - smtp_options["user"] = settings.SMTP_USER - if settings.SMTP_PASSWORD: - smtp_options["password"] = settings.SMTP_PASSWORD - response = message.send(to=email_to, render=environment, smtp=smtp_options) + + message = MessageSchema( + subject=subject_template, + recipients=[email_to], + template_body=environment, + subtype=MessageType.html, + ) + + fm = FastMail(conf) + await fm.send_message(message, template_name=html_template) + response = JSONResponse(status_code=200, content={"message": "email has been sent"}) + logging.info(f"send email result: {response}") -def send_test_email(email_to: str) -> None: +async def send_test_email(email_to: str) -> None: project_name = settings.PROJECT_NAME subject = f"{project_name} - Test email" - with open(Path(settings.EMAIL_TEMPLATES_DIR) / "test_email.html") as f: - template_str = f.read() - send_email( + template_str = "test_email.html" + await send_email( email_to=email_to, subject_template=subject, html_template=template_str, @@ -46,20 +63,18 @@ def send_test_email(email_to: str) -> None: ) -def send_reset_password_email(email_to: str, email: str, token: str) -> None: +async def send_reset_password_email(email_to: str, token: str) -> None: project_name = settings.PROJECT_NAME - subject = f"{project_name} - Password recovery for user {email}" - with open(Path(settings.EMAIL_TEMPLATES_DIR) / "reset_password.html") as f: - template_str = f.read() + subject = f"{project_name} - Password recovery for user {email_to}" + template_str = "reset_password.html" server_host = settings.SERVER_HOST link = f"{server_host}/reset-password?token={token}" - send_email( + await send_email( email_to=email_to, subject_template=subject, html_template=template_str, environment={ "project_name": settings.PROJECT_NAME, - "username": email, "email": email_to, "valid_hours": settings.EMAIL_RESET_TOKEN_EXPIRE_HOURS, "link": link, @@ -67,40 +82,47 @@ def send_reset_password_email(email_to: str, email: str, token: str) -> None: ) -def send_new_account_email(email_to: str, username: str, password: str) -> None: +# async def send_new_account_email(email_to: str, username: str, password: str) -> None: +# TODO remove sending password in email right? +async def send_new_account_email(email_to: str) -> None: project_name = settings.PROJECT_NAME - subject = f"{project_name} - New account for user {username}" - with open(Path(settings.EMAIL_TEMPLATES_DIR) / "new_account.html") as f: - template_str = f.read() + subject = f"{project_name} - New account for user {email_to}" + template_str = "new_account.html" link = settings.SERVER_HOST - send_email( + await send_email( email_to=email_to, subject_template=subject, html_template=template_str, environment={ "project_name": settings.PROJECT_NAME, - "username": username, - "password": password, + "username": email_to, + # TODO do we want usernames AND emails? "email": email_to, "link": link, }, ) -def generate_password_reset_token(email: str) -> str: - delta = timedelta(hours=settings.EMAIL_RESET_TOKEN_EXPIRE_HOURS) - now = datetime.utcnow() - expires = now + delta - exp = expires.timestamp() - encoded_jwt = jwt.encode( - {"exp": exp, "nbf": now, "sub": email}, settings.SECRET_KEY, algorithm="HS256", +def send_web_contact_email(data: EmailContent) -> None: + subject = f"{settings.PROJECT_NAME} - {data.subject}" + with open(Path(settings.EMAIL_TEMPLATES_DIR) / "web_contact_email.html") as f: + template_str = f.read() + send_email( + email_to=settings.EMAILS_TO_EMAIL, + subject_template=subject, + html_template=template_str, + environment={"content": data.content, "email": data.email}, ) - return encoded_jwt -def verify_password_reset_token(token: str) -> Optional[str]: - try: - decoded_token = jwt.decode(token, settings.SECRET_KEY, algorithms=["HS256"]) - return decoded_token["email"] - except jwt.JWTError: - return None +async def send_email_validation_email(email_to: str, token: str) -> None: + subject = f"{settings.PROJECT_NAME} - Email validation for user {email_to}" + server_host = settings.SERVER_HOST + link = f"{server_host}?token={token}" + template_str = "verify_email.html" + await send_email( + email_to=email_to, + subject_template=subject, + html_template=template_str, + environment={"link": link}, + ) diff --git a/backend/app/app/web_scrape/corp_canada/corp_numbers.py b/backend/app/app/web_scrape/corp_canada/corp_numbers.py index b9813902..ad5d52d0 100644 --- a/backend/app/app/web_scrape/corp_canada/corp_numbers.py +++ b/backend/app/app/web_scrape/corp_canada/corp_numbers.py @@ -12,7 +12,7 @@ project_name = "app" # collide\backend\app\app data_dir = "data" save_dir_corp_no = "corp_no" -tsx_list_dir = "corp_tsx" +tsx_list_dir = "wiki_tsx" # Folder creation, directories curr_dir_name = os.path.dirname(__file__) diff --git a/backend/app/mypy.ini b/backend/app/mypy.ini index 9813db02..a3f0c953 100644 --- a/backend/app/mypy.ini +++ b/backend/app/mypy.ini @@ -2,3 +2,10 @@ plugins = pydantic.mypy, sqlmypy ignore_missing_imports = True disallow_untyped_defs = True +follow_imports = silent + +[pydantic-mypy] +init_forbid_extra = True +init_typed = True +warn_required_dynamic_aliases = True +warn_untyped_fields = True \ No newline at end of file diff --git a/backend/app/poetry.lock b/backend/app/poetry.lock index 4358497c..ccd19225 100644 --- a/backend/app/poetry.lock +++ b/backend/app/poetry.lock @@ -1,14 +1,202 @@ +# This file is automatically @generated by Poetry and should not be changed by hand. + +[[package]] +name = "adal" +version = "1.2.7" +description = "Note: This library is already replaced by MSAL Python, available here: https://pypi.org/project/msal/ .ADAL Python remains available here as a legacy. The ADAL for Python library makes it easy for python application to authenticate to Azure Active Directory (AAD) in order to access AAD protected web resources." +category = "main" +optional = false +python-versions = "*" +files = [ + {file = "adal-1.2.7-py2.py3-none-any.whl", hash = "sha256:2a7451ed7441ddbc57703042204a3e30ef747478eea022c70f789fc7f084bc3d"}, + {file = "adal-1.2.7.tar.gz", hash = "sha256:d74f45b81317454d96e982fd1c50e6fb5c99ac2223728aea8764433a39f566f1"}, +] + +[package.dependencies] +cryptography = ">=1.1.0" +PyJWT = ">=1.0.0,<3" +python-dateutil = ">=2.1.0,<3" +requests = ">=2.0.0,<3" + +[[package]] +name = "adlfs" +version = "2022.11.2" +description = "Access Azure Datalake Gen1 with fsspec and dask" +category = "main" +optional = false +python-versions = ">=3.8" +files = [ + {file = "adlfs-2022.11.2-py3-none-any.whl", hash = "sha256:60da4a17260754ee6d8da43e3d756226ade4fd19ada8411e858f5acecd0833e2"}, + {file = "adlfs-2022.11.2.tar.gz", hash = "sha256:920dba10468f186037ca394dcabcba113532d80f52b315211c8e771be40475ea"}, +] + +[package.dependencies] +aiohttp = ">=3.7.0" +azure-core = ">=1.23.1,<2.0.0" +azure-datalake-store = ">=0.0.46,<0.1" +azure-identity = "*" +azure-storage-blob = ">=12.12.0" +fsspec = ">=2021.10.1" + +[package.extras] +docs = ["furo", "myst-parser", "numpydoc", "sphinx"] + +[[package]] +name = "aiohttp" +version = "3.8.4" +description = "Async http client/server framework (asyncio)" +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "aiohttp-3.8.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5ce45967538fb747370308d3145aa68a074bdecb4f3a300869590f725ced69c1"}, + {file = "aiohttp-3.8.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b744c33b6f14ca26b7544e8d8aadff6b765a80ad6164fb1a430bbadd593dfb1a"}, + {file = "aiohttp-3.8.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1a45865451439eb320784918617ba54b7a377e3501fb70402ab84d38c2cd891b"}, + {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a86d42d7cba1cec432d47ab13b6637bee393a10f664c425ea7b305d1301ca1a3"}, + {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee3c36df21b5714d49fc4580247947aa64bcbe2939d1b77b4c8dcb8f6c9faecc"}, + {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:176a64b24c0935869d5bbc4c96e82f89f643bcdf08ec947701b9dbb3c956b7dd"}, + {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c844fd628851c0bc309f3c801b3a3d58ce430b2ce5b359cd918a5a76d0b20cb5"}, + {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5393fb786a9e23e4799fec788e7e735de18052f83682ce2dfcabaf1c00c2c08e"}, + {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e4b09863aae0dc965c3ef36500d891a3ff495a2ea9ae9171e4519963c12ceefd"}, + {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:adfbc22e87365a6e564c804c58fc44ff7727deea782d175c33602737b7feadb6"}, + {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:147ae376f14b55f4f3c2b118b95be50a369b89b38a971e80a17c3fd623f280c9"}, + {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:eafb3e874816ebe2a92f5e155f17260034c8c341dad1df25672fb710627c6949"}, + {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c6cc15d58053c76eacac5fa9152d7d84b8d67b3fde92709195cb984cfb3475ea"}, + {file = "aiohttp-3.8.4-cp310-cp310-win32.whl", hash = "sha256:59f029a5f6e2d679296db7bee982bb3d20c088e52a2977e3175faf31d6fb75d1"}, + {file = "aiohttp-3.8.4-cp310-cp310-win_amd64.whl", hash = "sha256:fe7ba4a51f33ab275515f66b0a236bcde4fb5561498fe8f898d4e549b2e4509f"}, + {file = "aiohttp-3.8.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3d8ef1a630519a26d6760bc695842579cb09e373c5f227a21b67dc3eb16cfea4"}, + {file = "aiohttp-3.8.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b3f2e06a512e94722886c0827bee9807c86a9f698fac6b3aee841fab49bbfb4"}, + {file = "aiohttp-3.8.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3a80464982d41b1fbfe3154e440ba4904b71c1a53e9cd584098cd41efdb188ef"}, + {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b631e26df63e52f7cce0cce6507b7a7f1bc9b0c501fcde69742130b32e8782f"}, + {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f43255086fe25e36fd5ed8f2ee47477408a73ef00e804cb2b5cba4bf2ac7f5e"}, + {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4d347a172f866cd1d93126d9b239fcbe682acb39b48ee0873c73c933dd23bd0f"}, + {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3fec6a4cb5551721cdd70473eb009d90935b4063acc5f40905d40ecfea23e05"}, + {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80a37fe8f7c1e6ce8f2d9c411676e4bc633a8462844e38f46156d07a7d401654"}, + {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d1e6a862b76f34395a985b3cd39a0d949ca80a70b6ebdea37d3ab39ceea6698a"}, + {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:cd468460eefef601ece4428d3cf4562459157c0f6523db89365202c31b6daebb"}, + {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:618c901dd3aad4ace71dfa0f5e82e88b46ef57e3239fc7027773cb6d4ed53531"}, + {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:652b1bff4f15f6287550b4670546a2947f2a4575b6c6dff7760eafb22eacbf0b"}, + {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80575ba9377c5171407a06d0196b2310b679dc752d02a1fcaa2bc20b235dbf24"}, + {file = "aiohttp-3.8.4-cp311-cp311-win32.whl", hash = "sha256:bbcf1a76cf6f6dacf2c7f4d2ebd411438c275faa1dc0c68e46eb84eebd05dd7d"}, + {file = "aiohttp-3.8.4-cp311-cp311-win_amd64.whl", hash = "sha256:6e74dd54f7239fcffe07913ff8b964e28b712f09846e20de78676ce2a3dc0bfc"}, + {file = "aiohttp-3.8.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:880e15bb6dad90549b43f796b391cfffd7af373f4646784795e20d92606b7a51"}, + {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb96fa6b56bb536c42d6a4a87dfca570ff8e52de2d63cabebfd6fb67049c34b6"}, + {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4a6cadebe132e90cefa77e45f2d2f1a4b2ce5c6b1bfc1656c1ddafcfe4ba8131"}, + {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f352b62b45dff37b55ddd7b9c0c8672c4dd2eb9c0f9c11d395075a84e2c40f75"}, + {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ab43061a0c81198d88f39aaf90dae9a7744620978f7ef3e3708339b8ed2ef01"}, + {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c9cb1565a7ad52e096a6988e2ee0397f72fe056dadf75d17fa6b5aebaea05622"}, + {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:1b3ea7edd2d24538959c1c1abf97c744d879d4e541d38305f9bd7d9b10c9ec41"}, + {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:7c7837fe8037e96b6dd5cfcf47263c1620a9d332a87ec06a6ca4564e56bd0f36"}, + {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:3b90467ebc3d9fa5b0f9b6489dfb2c304a1db7b9946fa92aa76a831b9d587e99"}, + {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:cab9401de3ea52b4b4c6971db5fb5c999bd4260898af972bf23de1c6b5dd9d71"}, + {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d1f9282c5f2b5e241034a009779e7b2a1aa045f667ff521e7948ea9b56e0c5ff"}, + {file = "aiohttp-3.8.4-cp36-cp36m-win32.whl", hash = "sha256:5e14f25765a578a0a634d5f0cd1e2c3f53964553a00347998dfdf96b8137f777"}, + {file = "aiohttp-3.8.4-cp36-cp36m-win_amd64.whl", hash = "sha256:4c745b109057e7e5f1848c689ee4fb3a016c8d4d92da52b312f8a509f83aa05e"}, + {file = "aiohttp-3.8.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:aede4df4eeb926c8fa70de46c340a1bc2c6079e1c40ccf7b0eae1313ffd33519"}, + {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ddaae3f3d32fc2cb4c53fab020b69a05c8ab1f02e0e59665c6f7a0d3a5be54f"}, + {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4eb3b82ca349cf6fadcdc7abcc8b3a50ab74a62e9113ab7a8ebc268aad35bb9"}, + {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9bcb89336efa095ea21b30f9e686763f2be4478f1b0a616969551982c4ee4c3b"}, + {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c08e8ed6fa3d477e501ec9db169bfac8140e830aa372d77e4a43084d8dd91ab"}, + {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c6cd05ea06daca6ad6a4ca3ba7fe7dc5b5de063ff4daec6170ec0f9979f6c332"}, + {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7a00a9ed8d6e725b55ef98b1b35c88013245f35f68b1b12c5cd4100dddac333"}, + {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:de04b491d0e5007ee1b63a309956eaed959a49f5bb4e84b26c8f5d49de140fa9"}, + {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:40653609b3bf50611356e6b6554e3a331f6879fa7116f3959b20e3528783e699"}, + {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dbf3a08a06b3f433013c143ebd72c15cac33d2914b8ea4bea7ac2c23578815d6"}, + {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:854f422ac44af92bfe172d8e73229c270dc09b96535e8a548f99c84f82dde241"}, + {file = "aiohttp-3.8.4-cp37-cp37m-win32.whl", hash = "sha256:aeb29c84bb53a84b1a81c6c09d24cf33bb8432cc5c39979021cc0f98c1292a1a"}, + {file = "aiohttp-3.8.4-cp37-cp37m-win_amd64.whl", hash = "sha256:db3fc6120bce9f446d13b1b834ea5b15341ca9ff3f335e4a951a6ead31105480"}, + {file = "aiohttp-3.8.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:fabb87dd8850ef0f7fe2b366d44b77d7e6fa2ea87861ab3844da99291e81e60f"}, + {file = "aiohttp-3.8.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:91f6d540163f90bbaef9387e65f18f73ffd7c79f5225ac3d3f61df7b0d01ad15"}, + {file = "aiohttp-3.8.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d265f09a75a79a788237d7f9054f929ced2e69eb0bb79de3798c468d8a90f945"}, + {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d89efa095ca7d442a6d0cbc755f9e08190ba40069b235c9886a8763b03785da"}, + {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4dac314662f4e2aa5009977b652d9b8db7121b46c38f2073bfeed9f4049732cd"}, + {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe11310ae1e4cd560035598c3f29d86cef39a83d244c7466f95c27ae04850f10"}, + {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6ddb2a2026c3f6a68c3998a6c47ab6795e4127315d2e35a09997da21865757f8"}, + {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e75b89ac3bd27d2d043b234aa7b734c38ba1b0e43f07787130a0ecac1e12228a"}, + {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6e601588f2b502c93c30cd5a45bfc665faaf37bbe835b7cfd461753068232074"}, + {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a5d794d1ae64e7753e405ba58e08fcfa73e3fad93ef9b7e31112ef3c9a0efb52"}, + {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a1f4689c9a1462f3df0a1f7e797791cd6b124ddbee2b570d34e7f38ade0e2c71"}, + {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:3032dcb1c35bc330134a5b8a5d4f68c1a87252dfc6e1262c65a7e30e62298275"}, + {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8189c56eb0ddbb95bfadb8f60ea1b22fcfa659396ea36f6adcc521213cd7b44d"}, + {file = "aiohttp-3.8.4-cp38-cp38-win32.whl", hash = "sha256:33587f26dcee66efb2fff3c177547bd0449ab7edf1b73a7f5dea1e38609a0c54"}, + {file = "aiohttp-3.8.4-cp38-cp38-win_amd64.whl", hash = "sha256:e595432ac259af2d4630008bf638873d69346372d38255774c0e286951e8b79f"}, + {file = "aiohttp-3.8.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5a7bdf9e57126dc345b683c3632e8ba317c31d2a41acd5800c10640387d193ed"}, + {file = "aiohttp-3.8.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:22f6eab15b6db242499a16de87939a342f5a950ad0abaf1532038e2ce7d31567"}, + {file = "aiohttp-3.8.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7235604476a76ef249bd64cb8274ed24ccf6995c4a8b51a237005ee7a57e8643"}, + {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea9eb976ffdd79d0e893869cfe179a8f60f152d42cb64622fca418cd9b18dc2a"}, + {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:92c0cea74a2a81c4c76b62ea1cac163ecb20fb3ba3a75c909b9fa71b4ad493cf"}, + {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:493f5bc2f8307286b7799c6d899d388bbaa7dfa6c4caf4f97ef7521b9cb13719"}, + {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a63f03189a6fa7c900226e3ef5ba4d3bd047e18f445e69adbd65af433add5a2"}, + {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:10c8cefcff98fd9168cdd86c4da8b84baaa90bf2da2269c6161984e6737bf23e"}, + {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bca5f24726e2919de94f047739d0a4fc01372801a3672708260546aa2601bf57"}, + {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:03baa76b730e4e15a45f81dfe29a8d910314143414e528737f8589ec60cf7391"}, + {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:8c29c77cc57e40f84acef9bfb904373a4e89a4e8b74e71aa8075c021ec9078c2"}, + {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:03543dcf98a6619254b409be2d22b51f21ec66272be4ebda7b04e6412e4b2e14"}, + {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:17b79c2963db82086229012cff93ea55196ed31f6493bb1ccd2c62f1724324e4"}, + {file = "aiohttp-3.8.4-cp39-cp39-win32.whl", hash = "sha256:34ce9f93a4a68d1272d26030655dd1b58ff727b3ed2a33d80ec433561b03d67a"}, + {file = "aiohttp-3.8.4-cp39-cp39-win_amd64.whl", hash = "sha256:41a86a69bb63bb2fc3dc9ad5ea9f10f1c9c8e282b471931be0268ddd09430b04"}, + {file = "aiohttp-3.8.4.tar.gz", hash = "sha256:bf2e1a9162c1e441bf805a1fd166e249d574ca04e03b34f97e2928769e91ab5c"}, +] + +[package.dependencies] +aiosignal = ">=1.1.2" +async-timeout = ">=4.0.0a3,<5.0" +attrs = ">=17.3.0" +charset-normalizer = ">=2.0,<4.0" +frozenlist = ">=1.1.1" +multidict = ">=4.5,<7.0" +yarl = ">=1.0,<2.0" + +[package.extras] +speedups = ["Brotli", "aiodns", "cchardet"] + +[[package]] +name = "aiosignal" +version = "1.3.1" +description = "aiosignal: a list of registered asynchronous callbacks" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "aiosignal-1.3.1-py3-none-any.whl", hash = "sha256:f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17"}, + {file = "aiosignal-1.3.1.tar.gz", hash = "sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc"}, +] + +[package.dependencies] +frozenlist = ">=1.1.0" + +[[package]] +name = "aiosmtplib" +version = "2.0.1" +description = "asyncio SMTP client" +category = "main" +optional = false +python-versions = ">=3.7,<4.0" +files = [ + {file = "aiosmtplib-2.0.1-py3-none-any.whl", hash = "sha256:2f619f900d1bfe25a8f453005958ba78870abbfeeffb2fdef11265be0df26913"}, + {file = "aiosmtplib-2.0.1.tar.gz", hash = "sha256:a20aae28f67169dd761beef4c62e4bb3073d035f9ee20c2e4f18baa1a73e7c88"}, +] + +[package.extras] +docs = ["sphinx (>=5.3.0,<6.0.0)", "sphinx_autodoc_typehints (>=1.7.0,<2.0.0)"] +uvloop = ["uvloop (>=0.14,<0.15)", "uvloop (>=0.14,<0.15)", "uvloop (>=0.17,<0.18)"] + [[package]] name = "alembic" -version = "1.8.1" +version = "1.10.2" description = "A database migration tool for SQLAlchemy." category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "alembic-1.10.2-py3-none-any.whl", hash = "sha256:8b48368f6533c064b39c024e1daba15ae7f947eac84185c28c06bbe1301a5497"}, + {file = "alembic-1.10.2.tar.gz", hash = "sha256:457eafbdc0769d855c2c92cbafe6b7f319f916c80cf4ed02b8f394f38b51b89d"}, +] [package.dependencies] Mako = "*" SQLAlchemy = ">=1.3.0" +typing-extensions = ">=4" [package.extras] tz = ["python-dateutil"] @@ -20,61 +208,146 @@ description = "Low-level AMQP client for Python (fork of amqplib)." category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "amqp-2.6.1-py2.py3-none-any.whl", hash = "sha256:aa7f313fb887c91f15474c1229907a04dac0b8135822d6603437803424c0aa59"}, + {file = "amqp-2.6.1.tar.gz", hash = "sha256:70cdb10628468ff14e57ec2f751c7aa9e48e7e3651cfd62d431213c0c4e58f21"}, +] [package.dependencies] vine = ">=1.1.3,<5.0.0a1" [[package]] -name = "appdirs" -version = "1.4.4" -description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." -category = "dev" +name = "anyio" +version = "3.6.2" +description = "High level compatibility layer for multiple asynchronous event loop implementations" +category = "main" optional = false -python-versions = "*" +python-versions = ">=3.6.2" +files = [ + {file = "anyio-3.6.2-py3-none-any.whl", hash = "sha256:fbbe32bd270d2a2ef3ed1c5d45041250284e31fc0a4df4a5a6071842051a51e3"}, + {file = "anyio-3.6.2.tar.gz", hash = "sha256:25ea0d673ae30af41a0c442f81cf3b38c7e79fdc7b60335a4c14e05eb0947421"}, +] + +[package.dependencies] +idna = ">=2.8" +sniffio = ">=1.1" + +[package.extras] +doc = ["packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] +test = ["contextlib2", "coverage[toml] (>=4.5)", "hypothesis (>=4.0)", "mock (>=4)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (<0.15)", "uvloop (>=0.15)"] +trio = ["trio (>=0.16,<0.22)"] [[package]] name = "appnope" version = "0.1.3" description = "Disable App Nap on macOS >= 10.9" -category = "main" +category = "dev" optional = false python-versions = "*" +files = [ + {file = "appnope-0.1.3-py2.py3-none-any.whl", hash = "sha256:265a455292d0bd8a72453494fa24df5a11eb18373a60c7c0430889f22548605e"}, + {file = "appnope-0.1.3.tar.gz", hash = "sha256:02bd91c4de869fbb1e1c50aafc4098827a7a54ab2f39d9dcba6c9547ed920e24"}, +] [[package]] name = "asttokens" -version = "2.1.0" +version = "2.2.1" description = "Annotate AST trees with source code positions" -category = "main" +category = "dev" optional = false python-versions = "*" +files = [ + {file = "asttokens-2.2.1-py2.py3-none-any.whl", hash = "sha256:6b0ac9e93fb0335014d382b8fa9b3afa7df546984258005da0b9e7095b3deb1c"}, + {file = "asttokens-2.2.1.tar.gz", hash = "sha256:4622110b2a6f30b77e1473affaa97e711bc2f07d3f10848420ff1898edbe94f3"}, +] [package.dependencies] six = "*" [package.extras] -test = ["astroid (<=2.5.3)", "pytest"] +test = ["astroid", "pytest"] [[package]] -name = "atomicwrites" -version = "1.4.1" -description = "Atomic file writes." +name = "async-timeout" +version = "4.0.2" +description = "Timeout context manager for asyncio programs" category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +python-versions = ">=3.6" +files = [ + {file = "async-timeout-4.0.2.tar.gz", hash = "sha256:2163e1640ddb52b7a8c80d0a67a08587e5d245cc9c553a74a847056bc2976b15"}, + {file = "async_timeout-4.0.2-py3-none-any.whl", hash = "sha256:8ca1e4fcf50d07413d66d1a5e416e42cfdf5851c981d679a09851a6853383b3c"}, +] + +[[package]] +name = "asyncpg" +version = "0.27.0" +description = "An asyncio PostgreSQL driver" +category = "main" +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "asyncpg-0.27.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:fca608d199ffed4903dce1bcd97ad0fe8260f405c1c225bdf0002709132171c2"}, + {file = "asyncpg-0.27.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:20b596d8d074f6f695c13ffb8646d0b6bb1ab570ba7b0cfd349b921ff03cfc1e"}, + {file = "asyncpg-0.27.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7a6206210c869ebd3f4eb9e89bea132aefb56ff3d1b7dd7e26b102b17e27bbb1"}, + {file = "asyncpg-0.27.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a7a94c03386bb95456b12c66026b3a87d1b965f0f1e5733c36e7229f8f137747"}, + {file = "asyncpg-0.27.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:bfc3980b4ba6f97138b04f0d32e8af21d6c9fa1f8e6e140c07d15690a0a99279"}, + {file = "asyncpg-0.27.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9654085f2b22f66952124de13a8071b54453ff972c25c59b5ce1173a4283ffd9"}, + {file = "asyncpg-0.27.0-cp310-cp310-win32.whl", hash = "sha256:879c29a75969eb2722f94443752f4720d560d1e748474de54ae8dd230bc4956b"}, + {file = "asyncpg-0.27.0-cp310-cp310-win_amd64.whl", hash = "sha256:ab0f21c4818d46a60ca789ebc92327d6d874d3b7ccff3963f7af0a21dc6cff52"}, + {file = "asyncpg-0.27.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:18f77e8e71e826ba2d0c3ba6764930776719ae2b225ca07e014590545928b576"}, + {file = "asyncpg-0.27.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c2232d4625c558f2aa001942cac1d7952aa9f0dbfc212f63bc754277769e1ef2"}, + {file = "asyncpg-0.27.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9a3a4ff43702d39e3c97a8786314123d314e0f0e4dabc8367db5b665c93914de"}, + {file = "asyncpg-0.27.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ccddb9419ab4e1c48742457d0c0362dbdaeb9b28e6875115abfe319b29ee225d"}, + {file = "asyncpg-0.27.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:768e0e7c2898d40b16d4ef7a0b44e8150db3dd8995b4652aa1fe2902e92c7df8"}, + {file = "asyncpg-0.27.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:609054a1f47292a905582a1cfcca51a6f3f30ab9d822448693e66fdddde27920"}, + {file = "asyncpg-0.27.0-cp311-cp311-win32.whl", hash = "sha256:8113e17cfe236dc2277ec844ba9b3d5312f61bd2fdae6d3ed1c1cdd75f6cf2d8"}, + {file = "asyncpg-0.27.0-cp311-cp311-win_amd64.whl", hash = "sha256:bb71211414dd1eeb8d31ec529fe77cff04bf53efc783a5f6f0a32d84923f45cf"}, + {file = "asyncpg-0.27.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4750f5cf49ed48a6e49c6e5aed390eee367694636c2dcfaf4a273ca832c5c43c"}, + {file = "asyncpg-0.27.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:eca01eb112a39d31cc4abb93a5aef2a81514c23f70956729f42fb83b11b3483f"}, + {file = "asyncpg-0.27.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:5710cb0937f696ce303f5eed6d272e3f057339bb4139378ccecafa9ee923a71c"}, + {file = "asyncpg-0.27.0-cp37-cp37m-win_amd64.whl", hash = "sha256:71cca80a056ebe19ec74b7117b09e650990c3ca535ac1c35234a96f65604192f"}, + {file = "asyncpg-0.27.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4bb366ae34af5b5cabc3ac6a5347dfb6013af38c68af8452f27968d49085ecc0"}, + {file = "asyncpg-0.27.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:16ba8ec2e85d586b4a12bcd03e8d29e3d99e832764d6a1d0b8c27dbbe4a2569d"}, + {file = "asyncpg-0.27.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d20dea7b83651d93b1eb2f353511fe7fd554752844523f17ad30115d8b9c8cd6"}, + {file = "asyncpg-0.27.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:e56ac8a8237ad4adec97c0cd4728596885f908053ab725e22900b5902e7f8e69"}, + {file = "asyncpg-0.27.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:bf21ebf023ec67335258e0f3d3ad7b91bb9507985ba2b2206346de488267cad0"}, + {file = "asyncpg-0.27.0-cp38-cp38-win32.whl", hash = "sha256:69aa1b443a182b13a17ff926ed6627af2d98f62f2fe5890583270cc4073f63bf"}, + {file = "asyncpg-0.27.0-cp38-cp38-win_amd64.whl", hash = "sha256:62932f29cf2433988fcd799770ec64b374a3691e7902ecf85da14d5e0854d1ea"}, + {file = "asyncpg-0.27.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fddcacf695581a8d856654bc4c8cfb73d5c9df26d5f55201722d3e6a699e9629"}, + {file = "asyncpg-0.27.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7d8585707ecc6661d07367d444bbaa846b4e095d84451340da8df55a3757e152"}, + {file = "asyncpg-0.27.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:975a320baf7020339a67315284a4d3bf7460e664e484672bd3e71dbd881bc692"}, + {file = "asyncpg-0.27.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2232ebae9796d4600a7819fc383da78ab51b32a092795f4555575fc934c1c89d"}, + {file = "asyncpg-0.27.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:88b62164738239f62f4af92567b846a8ef7cf8abf53eddd83650603de4d52163"}, + {file = "asyncpg-0.27.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:eb4b2fdf88af4fb1cc569781a8f933d2a73ee82cd720e0cb4edabbaecf2a905b"}, + {file = "asyncpg-0.27.0-cp39-cp39-win32.whl", hash = "sha256:8934577e1ed13f7d2d9cea3cc016cc6f95c19faedea2c2b56a6f94f257cea672"}, + {file = "asyncpg-0.27.0-cp39-cp39-win_amd64.whl", hash = "sha256:1b6499de06fe035cf2fa932ec5617ed3f37d4ebbf663b655922e105a484a6af9"}, + {file = "asyncpg-0.27.0.tar.gz", hash = "sha256:720986d9a4705dd8a40fdf172036f5ae787225036a7eb46e704c45aa8f62c054"}, +] + +[package.extras] +dev = ["Cython (>=0.29.24,<0.30.0)", "Sphinx (>=4.1.2,<4.2.0)", "flake8 (>=5.0.4,<5.1.0)", "pytest (>=6.0)", "sphinx-rtd-theme (>=0.5.2,<0.6.0)", "sphinxcontrib-asyncio (>=0.3.0,<0.4.0)", "uvloop (>=0.15.3)"] +docs = ["Sphinx (>=4.1.2,<4.2.0)", "sphinx-rtd-theme (>=0.5.2,<0.6.0)", "sphinxcontrib-asyncio (>=0.3.0,<0.4.0)"] +test = ["flake8 (>=5.0.4,<5.1.0)", "uvloop (>=0.15.3)"] [[package]] name = "attrs" -version = "22.1.0" +version = "22.2.0" description = "Classes Without Boilerplate" category = "main" optional = false -python-versions = ">=3.5" +python-versions = ">=3.6" +files = [ + {file = "attrs-22.2.0-py3-none-any.whl", hash = "sha256:29e95c7f6778868dbd49170f98f8818f78f3dc5e0e37c0b1f474e3561b240836"}, + {file = "attrs-22.2.0.tar.gz", hash = "sha256:c9227bfc2f01993c03f68db37d1d15c9690188323c067c641f1a35ca58185f99"}, +] [package.extras] -dev = ["cloudpickle", "coverage[toml] (>=5.0.2)", "furo", "hypothesis", "mypy (>=0.900,!=0.940)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "sphinx", "sphinx-notfound-page", "zope.interface"] -docs = ["furo", "sphinx", "sphinx-notfound-page", "zope.interface"] -tests = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy (>=0.900,!=0.940)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "zope.interface"] -tests_no_zope = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy (>=0.900,!=0.940)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins"] +cov = ["attrs[tests]", "coverage-enable-subprocess", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope.interface"] +tests = ["attrs[tests-no-zope]", "zope.interface"] +tests-no-zope = ["cloudpickle", "cloudpickle", "hypothesis", "hypothesis", "mypy (>=0.971,<0.990)", "mypy (>=0.971,<0.990)", "pympler", "pympler", "pytest (>=4.3.0)", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-mypy-plugins", "pytest-xdist[psutil]", "pytest-xdist[psutil]"] [[package]] name = "autoflake" @@ -83,18 +356,103 @@ description = "Removes unused imports and unused variables" category = "dev" optional = false python-versions = ">=3.7" +files = [ + {file = "autoflake-1.7.7-py3-none-any.whl", hash = "sha256:a9b43d08f8e455824e4f7b3f078399f59ba538ba53872f466c09e55c827773ef"}, + {file = "autoflake-1.7.7.tar.gz", hash = "sha256:c8e4fc41aa3eae0f5c94b939e3a3d50923d7a9306786a6cbf4866a077b8f6832"}, +] [package.dependencies] pyflakes = ">=1.1.0" tomli = {version = ">=2.0.1", markers = "python_version < \"3.11\""} +[[package]] +name = "azure-core" +version = "1.26.3" +description = "Microsoft Azure Core Library for Python" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "azure-core-1.26.3.zip", hash = "sha256:acbd0daa9675ce88623da35c80d819cdafa91731dee6b2695c64d7ca9da82db4"}, + {file = "azure_core-1.26.3-py3-none-any.whl", hash = "sha256:f7bad0a7b4d800d6e73733ea7e13a616016221ac111ff9a344fe4cba41e51bbe"}, +] + +[package.dependencies] +requests = ">=2.18.4" +six = ">=1.11.0" +typing-extensions = ">=4.0.1" + +[package.extras] +aio = ["aiohttp (>=3.0)"] + +[[package]] +name = "azure-datalake-store" +version = "0.0.52" +description = "Azure Data Lake Store Filesystem Client Library for Python" +category = "main" +optional = false +python-versions = "*" +files = [ + {file = "azure-datalake-store-0.0.52.tar.gz", hash = "sha256:4198ddb32614d16d4502b43d5c9739f81432b7e0e4d75d30e05149fe6007fea2"}, + {file = "azure_datalake_store-0.0.52-py2.py3-none-any.whl", hash = "sha256:aaed72b9c856824aeab554f4dbe0ef2c6d0ff36700bdd8b93d8298793117c48e"}, +] + +[package.dependencies] +adal = ">=0.4.2" +cffi = "*" +requests = ">=2.20.0" + +[[package]] +name = "azure-identity" +version = "1.12.0" +description = "Microsoft Azure Identity Library for Python" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "azure-identity-1.12.0.zip", hash = "sha256:7f9b1ae7d97ea7af3f38dd09305e19ab81a1e16ab66ea186b6579d85c1ca2347"}, + {file = "azure_identity-1.12.0-py3-none-any.whl", hash = "sha256:2a58ce4a209a013e37eaccfd5937570ab99e9118b3e1acf875eed3a85d541b92"}, +] + +[package.dependencies] +azure-core = ">=1.11.0,<2.0.0" +cryptography = ">=2.5" +msal = ">=1.12.0,<2.0.0" +msal-extensions = ">=0.3.0,<2.0.0" +six = ">=1.12.0" + +[[package]] +name = "azure-storage-blob" +version = "12.15.0" +description = "Microsoft Azure Blob Storage Client Library for Python" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "azure-storage-blob-12.15.0.zip", hash = "sha256:f8b8d582492740ab16744455408342fb8e4c8897b64a8a3fc31743844722c2f2"}, + {file = "azure_storage_blob-12.15.0-py3-none-any.whl", hash = "sha256:08d8807c577c63a436740627927c1a03a97c963efc29af5c818aed906590e1cf"}, +] + +[package.dependencies] +azure-core = ">=1.26.0,<2.0.0" +cryptography = ">=2.1.4" +isodate = ">=0.6.1" +typing-extensions = ">=4.0.1" + +[package.extras] +aio = ["azure-core[aio] (>=1.26.0,<2.0.0)"] + [[package]] name = "backcall" version = "0.2.0" description = "Specifications for callback functions passed in to an API" -category = "main" +category = "dev" optional = false python-versions = "*" +files = [ + {file = "backcall-0.2.0-py2.py3-none-any.whl", hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255"}, + {file = "backcall-0.2.0.tar.gz", hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e"}, +] [[package]] name = "bcrypt" @@ -103,6 +461,29 @@ description = "Modern password hashing for your software and your servers" category = "main" optional = false python-versions = ">=3.6" +files = [ + {file = "bcrypt-4.0.1-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:b1023030aec778185a6c16cf70f359cbb6e0c289fd564a7cfa29e727a1c38f8f"}, + {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:08d2947c490093a11416df18043c27abe3921558d2c03e2076ccb28a116cb6d0"}, + {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0eaa47d4661c326bfc9d08d16debbc4edf78778e6aaba29c1bc7ce67214d4410"}, + {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ae88eca3024bb34bb3430f964beab71226e761f51b912de5133470b649d82344"}, + {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_24_x86_64.whl", hash = "sha256:a522427293d77e1c29e303fc282e2d71864579527a04ddcfda6d4f8396c6c36a"}, + {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:fbdaec13c5105f0c4e5c52614d04f0bca5f5af007910daa8b6b12095edaa67b3"}, + {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:ca3204d00d3cb2dfed07f2d74a25f12fc12f73e606fcaa6975d1f7ae69cacbb2"}, + {file = "bcrypt-4.0.1-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:089098effa1bc35dc055366740a067a2fc76987e8ec75349eb9484061c54f535"}, + {file = "bcrypt-4.0.1-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:e9a51bbfe7e9802b5f3508687758b564069ba937748ad7b9e890086290d2f79e"}, + {file = "bcrypt-4.0.1-cp36-abi3-win32.whl", hash = "sha256:2caffdae059e06ac23fce178d31b4a702f2a3264c20bfb5ff541b338194d8fab"}, + {file = "bcrypt-4.0.1-cp36-abi3-win_amd64.whl", hash = "sha256:8a68f4341daf7522fe8d73874de8906f3a339048ba406be6ddc1b3ccb16fc0d9"}, + {file = "bcrypt-4.0.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf4fa8b2ca74381bb5442c089350f09a3f17797829d958fad058d6e44d9eb83c"}, + {file = "bcrypt-4.0.1-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:67a97e1c405b24f19d08890e7ae0c4f7ce1e56a712a016746c8b2d7732d65d4b"}, + {file = "bcrypt-4.0.1-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b3b85202d95dd568efcb35b53936c5e3b3600c7cdcc6115ba461df3a8e89f38d"}, + {file = "bcrypt-4.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbb03eec97496166b704ed663a53680ab57c5084b2fc98ef23291987b525cb7d"}, + {file = "bcrypt-4.0.1-pp38-pypy38_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:5ad4d32a28b80c5fa6671ccfb43676e8c1cc232887759d1cd7b6f56ea4355215"}, + {file = "bcrypt-4.0.1-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b57adba8a1444faf784394de3436233728a1ecaeb6e07e8c22c8848f179b893c"}, + {file = "bcrypt-4.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:705b2cea8a9ed3d55b4491887ceadb0106acf7c6387699fca771af56b1cdeeda"}, + {file = "bcrypt-4.0.1-pp39-pypy39_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:2b3ac11cf45161628f1f3733263e63194f22664bf4d0c0f3ab34099c02134665"}, + {file = "bcrypt-4.0.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:3100851841186c25f127731b9fa11909ab7b1df6fc4b9f8353f4f1fd952fbf71"}, + {file = "bcrypt-4.0.1.tar.gz", hash = "sha256:27d375903ac8261cfe4047f6709d16f7d18d39b1ec92aaf72af989552a650ebd"}, +] [package.extras] tests = ["pytest (>=3.2.1,!=3.3.0)"] @@ -115,37 +496,72 @@ description = "Python multiprocessing fork with improvements and bugfixes" category = "main" optional = false python-versions = "*" +files = [ + {file = "billiard-3.6.4.0-py3-none-any.whl", hash = "sha256:87103ea78fa6ab4d5c751c4909bcff74617d985de7fa8b672cf8618afd5a875b"}, + {file = "billiard-3.6.4.0.tar.gz", hash = "sha256:299de5a8da28a783d51b197d496bef4f1595dd023a93a4f59dde1886ae905547"}, +] [[package]] name = "black" -version = "19.10b0" +version = "22.12.0" description = "The uncompromising code formatter." category = "dev" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" +files = [ + {file = "black-22.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9eedd20838bd5d75b80c9f5487dbcb06836a43833a37846cf1d8c1cc01cef59d"}, + {file = "black-22.12.0-cp310-cp310-win_amd64.whl", hash = "sha256:159a46a4947f73387b4d83e87ea006dbb2337eab6c879620a3ba52699b1f4351"}, + {file = "black-22.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d30b212bffeb1e252b31dd269dfae69dd17e06d92b87ad26e23890f3efea366f"}, + {file = "black-22.12.0-cp311-cp311-win_amd64.whl", hash = "sha256:7412e75863aa5c5411886804678b7d083c7c28421210180d67dfd8cf1221e1f4"}, + {file = "black-22.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c116eed0efb9ff870ded8b62fe9f28dd61ef6e9ddd28d83d7d264a38417dcee2"}, + {file = "black-22.12.0-cp37-cp37m-win_amd64.whl", hash = "sha256:1f58cbe16dfe8c12b7434e50ff889fa479072096d79f0a7f25e4ab8e94cd8350"}, + {file = "black-22.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77d86c9f3db9b1bf6761244bc0b3572a546f5fe37917a044e02f3166d5aafa7d"}, + {file = "black-22.12.0-cp38-cp38-win_amd64.whl", hash = "sha256:82d9fe8fee3401e02e79767016b4907820a7dc28d70d137eb397b92ef3cc5bfc"}, + {file = "black-22.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:101c69b23df9b44247bd88e1d7e90154336ac4992502d4197bdac35dd7ee3320"}, + {file = "black-22.12.0-cp39-cp39-win_amd64.whl", hash = "sha256:559c7a1ba9a006226f09e4916060982fd27334ae1998e7a38b3f33a37f7a2148"}, + {file = "black-22.12.0-py3-none-any.whl", hash = "sha256:436cc9167dd28040ad90d3b404aec22cedf24a6e4d7de221bec2730ec0c97bcf"}, + {file = "black-22.12.0.tar.gz", hash = "sha256:229351e5a18ca30f447bf724d007f890f97e13af070bb6ad4c0a441cd7596a2f"}, +] [package.dependencies] -appdirs = "*" -attrs = ">=18.1.0" -click = ">=6.5" -pathspec = ">=0.6,<1" -regex = "*" -toml = ">=0.9.4" -typed-ast = ">=1.4.0" +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_full_version < \"3.11.0a7\""} [package.extras] -d = ["aiohttp (>=3.3.2)", "aiohttp-cors"] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "blinker" +version = "1.5" +description = "Fast, simple object-to-object and broadcast signaling" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "blinker-1.5-py2.py3-none-any.whl", hash = "sha256:1eb563df6fdbc39eeddc177d953203f99f097e9bf0e2b8f9f3cf18b6ca425e36"}, + {file = "blinker-1.5.tar.gz", hash = "sha256:923e5e2f69c155f2cc42dafbbd70e16e3fde24d2d4aa2ab72fbe386238892462"}, +] [[package]] name = "boto3" -version = "1.26.8" +version = "1.26.87" description = "The AWS SDK for Python" category = "main" optional = false python-versions = ">= 3.7" +files = [ + {file = "boto3-1.26.87-py3-none-any.whl", hash = "sha256:7cf46d6aa67487ae5dc43a7bd10e1ebe9b8c442c7f32f7fea259cd3df6eeb52d"}, + {file = "boto3-1.26.87.tar.gz", hash = "sha256:b0f7e801d6d5cb96ed89e1d39326bb072b5d9175bb6c986850c77b640474d297"}, +] [package.dependencies] -botocore = ">=1.29.8,<1.30.0" +botocore = ">=1.29.87,<1.30.0" jmespath = ">=0.7.1,<2.0.0" s3transfer = ">=0.6.0,<0.7.0" @@ -154,11 +570,15 @@ crt = ["botocore[crt] (>=1.21.0,<2.0a0)"] [[package]] name = "botocore" -version = "1.29.8" +version = "1.29.87" description = "Low-level, data-driven core of boto 3." category = "main" optional = false python-versions = ">= 3.7" +files = [ + {file = "botocore-1.29.87-py3-none-any.whl", hash = "sha256:f4066e1ce1fd8790e872c70deede5d7abd94c87dcdb12892b4359245fed927f9"}, + {file = "botocore-1.29.87.tar.gz", hash = "sha256:2b981c3ebb347bdf2a8c3c0ce7e7712c76bfe43ae87d30776a3ab469e305f469"}, +] [package.dependencies] jmespath = ">=0.7.1,<2.0.0" @@ -166,15 +586,7 @@ python-dateutil = ">=2.1,<3.0.0" urllib3 = ">=1.25.4,<1.27" [package.extras] -crt = ["awscrt (==0.14.0)"] - -[[package]] -name = "cachetools" -version = "5.2.0" -description = "Extensible memoizing collections and decorators" -category = "main" -optional = false -python-versions = "~=3.7" +crt = ["awscrt (==0.16.9)"] [[package]] name = "celery" @@ -183,6 +595,10 @@ description = "Distributed Task Queue." category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "celery-4.4.7-py2.py3-none-any.whl", hash = "sha256:a92e1d56e650781fb747032a3997d16236d037c8199eacd5217d1a72893bca45"}, + {file = "celery-4.4.7.tar.gz", hash = "sha256:d220b13a8ed57c78149acf82c006785356071844afe0b27012a4991d44026f9f"}, +] [package.dependencies] billiard = ">=3.6.3.0,<4.0" @@ -226,11 +642,15 @@ zstd = ["zstandard"] [[package]] name = "certifi" -version = "2022.9.24" +version = "2022.12.7" description = "Python package for providing Mozilla's CA Bundle." category = "main" optional = false python-versions = ">=3.6" +files = [ + {file = "certifi-2022.12.7-py3-none-any.whl", hash = "sha256:4ad3232f5e926d6718ec31cfc1fcadfde020920e278684144551c91769c7bc18"}, + {file = "certifi-2022.12.7.tar.gz", hash = "sha256:35824b4c3a97115964b408844d64aa14db1cc518f6562e8d7261699d1350a9e3"}, +] [[package]] name = "cffi" @@ -239,36 +659,175 @@ description = "Foreign Function Interface for Python calling C code." category = "main" optional = false python-versions = "*" +files = [ + {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914"}, + {file = "cffi-1.15.1-cp27-cp27m-win32.whl", hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3"}, + {file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e"}, + {file = "cffi-1.15.1-cp310-cp310-win32.whl", hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2"}, + {file = "cffi-1.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8"}, + {file = "cffi-1.15.1-cp311-cp311-win32.whl", hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d"}, + {file = "cffi-1.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104"}, + {file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e"}, + {file = "cffi-1.15.1-cp36-cp36m-win32.whl", hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf"}, + {file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl", hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497"}, + {file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426"}, + {file = "cffi-1.15.1-cp37-cp37m-win32.whl", hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9"}, + {file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045"}, + {file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192"}, + {file = "cffi-1.15.1-cp38-cp38-win32.whl", hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314"}, + {file = "cffi-1.15.1-cp38-cp38-win_amd64.whl", hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3"}, + {file = "cffi-1.15.1-cp39-cp39-win32.whl", hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee"}, + {file = "cffi-1.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c"}, + {file = "cffi-1.15.1.tar.gz", hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9"}, +] [package.dependencies] pycparser = "*" -[[package]] -name = "chardet" -version = "5.0.0" -description = "Universal encoding detector for Python 3" -category = "main" -optional = false -python-versions = ">=3.6" - [[package]] name = "charset-normalizer" -version = "2.1.1" +version = "3.1.0" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." category = "main" optional = false -python-versions = ">=3.6.0" - -[package.extras] -unicode_backport = ["unicodedata2"] +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.1.0.tar.gz", hash = "sha256:34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win32.whl", hash = "sha256:12d1a39aa6b8c6f6248bb54550efcc1c38ce0d8096a146638fd4738e42284448"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:65ed923f84a6844de5fd29726b888e58c62820e0769b76565480e1fdc3d062f8"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win32.whl", hash = "sha256:c36bcbc0d5174a80d6cccf43a0ecaca44e81d25be4b7f90f0ed7bcfbb5a00909"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:cca4def576f47a09a943666b8f829606bcb17e2bc2d5911a46c8f8da45f56755"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win32.whl", hash = "sha256:4155b51ae05ed47199dc5b2a4e62abccb274cee6b01da5b895099b61b1982974"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322102cdf1ab682ecc7d9b1c5eed4ec59657a65e1c146a0da342b78f4112db23"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win32.whl", hash = "sha256:12a2b561af122e3d94cdb97fe6fb2bb2b82cef0cdca131646fdb940a1eda04f0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3160a0fd9754aab7d47f95a6b63ab355388d890163eb03b2d2b87ab0a30cfa59"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win32.whl", hash = "sha256:a04f86f41a8916fe45ac5024ec477f41f886b3c435da2d4e3d2709b22ab02af1"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:830d2948a5ec37c386d3170c483063798d7879037492540f10a475e3fd6f244b"}, + {file = "charset_normalizer-3.1.0-py3-none-any.whl", hash = "sha256:3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d"}, +] [[package]] name = "click" -version = "7.1.2" +version = "8.1.3" description = "Composable command line interface toolkit" category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = ">=3.7" +files = [ + {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"}, + {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} [[package]] name = "colorama" @@ -277,89 +836,235 @@ description = "Cross-platform colored terminal text." category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] [[package]] -name = "coverage" -version = "6.5.0" -description = "Code coverage measurement for Python" +name = "comm" +version = "0.1.2" +description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc." category = "dev" optional = false -python-versions = ">=3.7" +python-versions = ">=3.6" +files = [ + {file = "comm-0.1.2-py3-none-any.whl", hash = "sha256:9f3abf3515112fa7c55a42a6a5ab358735c9dccc8b5910a9d8e3ef5998130666"}, + {file = "comm-0.1.2.tar.gz", hash = "sha256:3e2f5826578e683999b93716285b3b1f344f157bf75fa9ce0a797564e742f062"}, +] + +[package.dependencies] +traitlets = ">=5.3" [package.extras] -toml = ["tomli"] +test = ["pytest"] + +[[package]] +name = "coverage" +version = "7.2.1" +description = "Code coverage measurement for Python" +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "coverage-7.2.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:49567ec91fc5e0b15356da07a2feabb421d62f52a9fff4b1ec40e9e19772f5f8"}, + {file = "coverage-7.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d2ef6cae70168815ed91388948b5f4fcc69681480a0061114db737f957719f03"}, + {file = "coverage-7.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3004765bca3acd9e015794e5c2f0c9a05587f5e698127ff95e9cfba0d3f29339"}, + {file = "coverage-7.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cca7c0b7f5881dfe0291ef09ba7bb1582cb92ab0aeffd8afb00c700bf692415a"}, + {file = "coverage-7.2.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2167d116309f564af56f9aa5e75ef710ef871c5f9b313a83050035097b56820"}, + {file = "coverage-7.2.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:cb5f152fb14857cbe7f3e8c9a5d98979c4c66319a33cad6e617f0067c9accdc4"}, + {file = "coverage-7.2.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:87dc37f16fb5e3a28429e094145bf7c1753e32bb50f662722e378c5851f7fdc6"}, + {file = "coverage-7.2.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e191a63a05851f8bce77bc875e75457f9b01d42843f8bd7feed2fc26bbe60833"}, + {file = "coverage-7.2.1-cp310-cp310-win32.whl", hash = "sha256:e3ea04b23b114572b98a88c85379e9e9ae031272ba1fb9b532aa934c621626d4"}, + {file = "coverage-7.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:0cf557827be7eca1c38a2480484d706693e7bb1929e129785fe59ec155a59de6"}, + {file = "coverage-7.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:570c21a29493b350f591a4b04c158ce1601e8d18bdcd21db136fbb135d75efa6"}, + {file = "coverage-7.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9e872b082b32065ac2834149dc0adc2a2e6d8203080501e1e3c3c77851b466f9"}, + {file = "coverage-7.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fac6343bae03b176e9b58104a9810df3cdccd5cfed19f99adfa807ffbf43cf9b"}, + {file = "coverage-7.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abacd0a738e71b20e224861bc87e819ef46fedba2fb01bc1af83dfd122e9c319"}, + {file = "coverage-7.2.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9256d4c60c4bbfec92721b51579c50f9e5062c21c12bec56b55292464873508"}, + {file = "coverage-7.2.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:80559eaf6c15ce3da10edb7977a1548b393db36cbc6cf417633eca05d84dd1ed"}, + {file = "coverage-7.2.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:0bd7e628f6c3ec4e7d2d24ec0e50aae4e5ae95ea644e849d92ae4805650b4c4e"}, + {file = "coverage-7.2.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:09643fb0df8e29f7417adc3f40aaf379d071ee8f0350ab290517c7004f05360b"}, + {file = "coverage-7.2.1-cp311-cp311-win32.whl", hash = "sha256:1b7fb13850ecb29b62a447ac3516c777b0e7a09ecb0f4bb6718a8654c87dfc80"}, + {file = "coverage-7.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:617a94ada56bbfe547aa8d1b1a2b8299e2ec1ba14aac1d4b26a9f7d6158e1273"}, + {file = "coverage-7.2.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8649371570551d2fd7dee22cfbf0b61f1747cdfb2b7587bb551e4beaaa44cb97"}, + {file = "coverage-7.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d2b9b5e70a21474c105a133ba227c61bc95f2ac3b66861143ce39a5ea4b3f84"}, + {file = "coverage-7.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae82c988954722fa07ec5045c57b6d55bc1a0890defb57cf4a712ced65b26ddd"}, + {file = "coverage-7.2.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:861cc85dfbf55a7a768443d90a07e0ac5207704a9f97a8eb753292a7fcbdfcfc"}, + {file = "coverage-7.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:0339dc3237c0d31c3b574f19c57985fcbe494280153bbcad33f2cdf469f4ac3e"}, + {file = "coverage-7.2.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:5928b85416a388dd557ddc006425b0c37e8468bd1c3dc118c1a3de42f59e2a54"}, + {file = "coverage-7.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8d3843ca645f62c426c3d272902b9de90558e9886f15ddf5efe757b12dd376f5"}, + {file = "coverage-7.2.1-cp37-cp37m-win32.whl", hash = "sha256:6a034480e9ebd4e83d1aa0453fd78986414b5d237aea89a8fdc35d330aa13bae"}, + {file = "coverage-7.2.1-cp37-cp37m-win_amd64.whl", hash = "sha256:6fce673f79a0e017a4dc35e18dc7bb90bf6d307c67a11ad5e61ca8d42b87cbff"}, + {file = "coverage-7.2.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7f099da6958ddfa2ed84bddea7515cb248583292e16bb9231d151cd528eab657"}, + {file = "coverage-7.2.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:97a3189e019d27e914ecf5c5247ea9f13261d22c3bb0cfcfd2a9b179bb36f8b1"}, + {file = "coverage-7.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a81dbcf6c6c877986083d00b834ac1e84b375220207a059ad45d12f6e518a4e3"}, + {file = "coverage-7.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:78d2c3dde4c0b9be4b02067185136b7ee4681978228ad5ec1278fa74f5ca3e99"}, + {file = "coverage-7.2.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a209d512d157379cc9ab697cbdbb4cfd18daa3e7eebaa84c3d20b6af0037384"}, + {file = "coverage-7.2.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f3d07edb912a978915576a776756069dede66d012baa503022d3a0adba1b6afa"}, + {file = "coverage-7.2.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:8dca3c1706670297851bca1acff9618455122246bdae623be31eca744ade05ec"}, + {file = "coverage-7.2.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b1991a6d64231a3e5bbe3099fb0dd7c9aeaa4275ad0e0aeff4cb9ef885c62ba2"}, + {file = "coverage-7.2.1-cp38-cp38-win32.whl", hash = "sha256:22c308bc508372576ffa3d2dbc4824bb70d28eeb4fcd79d4d1aed663a06630d0"}, + {file = "coverage-7.2.1-cp38-cp38-win_amd64.whl", hash = "sha256:b0c0d46de5dd97f6c2d1b560bf0fcf0215658097b604f1840365296302a9d1fb"}, + {file = "coverage-7.2.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4dd34a935de268a133e4741827ae951283a28c0125ddcdbcbba41c4b98f2dfef"}, + {file = "coverage-7.2.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0f8318ed0f3c376cfad8d3520f496946977abde080439d6689d7799791457454"}, + {file = "coverage-7.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:834c2172edff5a08d78e2f53cf5e7164aacabeb66b369f76e7bb367ca4e2d993"}, + {file = "coverage-7.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e4d70c853f0546855f027890b77854508bdb4d6a81242a9d804482e667fff6e6"}, + {file = "coverage-7.2.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a6450da4c7afc4534305b2b7d8650131e130610cea448ff240b6ab73d7eab63"}, + {file = "coverage-7.2.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:99f4dd81b2bb8fc67c3da68b1f5ee1650aca06faa585cbc6818dbf67893c6d58"}, + {file = "coverage-7.2.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bdd3f2f285ddcf2e75174248b2406189261a79e7fedee2ceeadc76219b6faa0e"}, + {file = "coverage-7.2.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:f29351393eb05e6326f044a7b45ed8e38cb4dcc38570d12791f271399dc41431"}, + {file = "coverage-7.2.1-cp39-cp39-win32.whl", hash = "sha256:e2b50ebc2b6121edf352336d503357321b9d8738bb7a72d06fc56153fd3f4cd8"}, + {file = "coverage-7.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:bd5a12239c0006252244f94863f1c518ac256160cd316ea5c47fb1a11b25889a"}, + {file = "coverage-7.2.1-pp37.pp38.pp39-none-any.whl", hash = "sha256:436313d129db7cf5b4ac355dd2bd3f7c7e5294af077b090b85de75f8458b8616"}, + {file = "coverage-7.2.1.tar.gz", hash = "sha256:c77f2a9093ccf329dd523a9b2b3c854c20d2a3d968b6def3b820272ca6732242"}, +] + +[package.extras] +toml = ["tomli"] [[package]] name = "cryptography" -version = "38.0.3" +version = "39.0.2" description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." category = "main" optional = false python-versions = ">=3.6" +files = [ + {file = "cryptography-39.0.2-cp36-abi3-macosx_10_12_universal2.whl", hash = "sha256:2725672bb53bb92dc7b4150d233cd4b8c59615cd8288d495eaa86db00d4e5c06"}, + {file = "cryptography-39.0.2-cp36-abi3-macosx_10_12_x86_64.whl", hash = "sha256:23df8ca3f24699167daf3e23e51f7ba7334d504af63a94af468f468b975b7dd7"}, + {file = "cryptography-39.0.2-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:eb40fe69cfc6f5cdab9a5ebd022131ba21453cf7b8a7fd3631f45bbf52bed612"}, + {file = "cryptography-39.0.2-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc0521cce2c1d541634b19f3ac661d7a64f9555135e9d8af3980965be717fd4a"}, + {file = "cryptography-39.0.2-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffd394c7896ed7821a6d13b24657c6a34b6e2650bd84ae063cf11ccffa4f1a97"}, + {file = "cryptography-39.0.2-cp36-abi3-manylinux_2_24_x86_64.whl", hash = "sha256:e8a0772016feeb106efd28d4a328e77dc2edae84dfbac06061319fdb669ff828"}, + {file = "cryptography-39.0.2-cp36-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:8f35c17bd4faed2bc7797d2a66cbb4f986242ce2e30340ab832e5d99ae60e011"}, + {file = "cryptography-39.0.2-cp36-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:b49a88ff802e1993b7f749b1eeb31134f03c8d5c956e3c125c75558955cda536"}, + {file = "cryptography-39.0.2-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:5f8c682e736513db7d04349b4f6693690170f95aac449c56f97415c6980edef5"}, + {file = "cryptography-39.0.2-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:d7d84a512a59f4412ca8549b01f94be4161c94efc598bf09d027d67826beddc0"}, + {file = "cryptography-39.0.2-cp36-abi3-win32.whl", hash = "sha256:c43ac224aabcbf83a947eeb8b17eaf1547bce3767ee2d70093b461f31729a480"}, + {file = "cryptography-39.0.2-cp36-abi3-win_amd64.whl", hash = "sha256:788b3921d763ee35dfdb04248d0e3de11e3ca8eb22e2e48fef880c42e1f3c8f9"}, + {file = "cryptography-39.0.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:d15809e0dbdad486f4ad0979753518f47980020b7a34e9fc56e8be4f60702fac"}, + {file = "cryptography-39.0.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:50cadb9b2f961757e712a9737ef33d89b8190c3ea34d0fb6675e00edbe35d074"}, + {file = "cryptography-39.0.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:103e8f7155f3ce2ffa0049fe60169878d47a4364b277906386f8de21c9234aa1"}, + {file = "cryptography-39.0.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:6236a9610c912b129610eb1a274bdc1350b5df834d124fa84729ebeaf7da42c3"}, + {file = "cryptography-39.0.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:e944fe07b6f229f4c1a06a7ef906a19652bdd9fd54c761b0ff87e83ae7a30354"}, + {file = "cryptography-39.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:35d658536b0a4117c885728d1a7032bdc9a5974722ae298d6c533755a6ee3915"}, + {file = "cryptography-39.0.2-pp39-pypy39_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:30b1d1bfd00f6fc80d11300a29f1d8ab2b8d9febb6ed4a38a76880ec564fae84"}, + {file = "cryptography-39.0.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:e029b844c21116564b8b61216befabca4b500e6816fa9f0ba49527653cae2108"}, + {file = "cryptography-39.0.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:fa507318e427169ade4e9eccef39e9011cdc19534f55ca2f36ec3f388c1f70f3"}, + {file = "cryptography-39.0.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:8bc0008ef798231fac03fe7d26e82d601d15bd16f3afaad1c6113771566570f3"}, + {file = "cryptography-39.0.2.tar.gz", hash = "sha256:bc5b871e977c8ee5a1bbc42fa8d19bcc08baf0c51cbf1586b0e87a2694dde42f"}, +] [package.dependencies] cffi = ">=1.12" [package.extras] -docs = ["sphinx (>=1.6.5,!=1.8.0,!=3.1.0,!=3.1.1)", "sphinx-rtd-theme"] +docs = ["sphinx (>=5.3.0)", "sphinx-rtd-theme (>=1.1.1)"] docstest = ["pyenchant (>=1.6.11)", "sphinxcontrib-spelling (>=4.0.1)", "twine (>=1.12.0)"] -pep8test = ["black", "flake8", "flake8-import-order", "pep8-naming"] +pep8test = ["black", "check-manifest", "mypy", "ruff", "types-pytz", "types-requests"] sdist = ["setuptools-rust (>=0.11.4)"] ssh = ["bcrypt (>=3.1.5)"] -test = ["hypothesis (>=1.11.4,!=3.79.2)", "iso8601", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-subtests", "pytest-xdist", "pytz"] - -[[package]] -name = "cssselect" -version = "1.2.0" -description = "cssselect parses CSS3 Selectors and translates them to XPath 1.0" -category = "main" -optional = false -python-versions = ">=3.7" +test = ["hypothesis (>=1.11.4,!=3.79.2)", "iso8601", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-shard (>=0.1.2)", "pytest-subtests", "pytest-xdist", "pytz"] +test-randomorder = ["pytest-randomly"] +tox = ["tox"] [[package]] -name = "cssutils" -version = "2.6.0" -description = "A CSS Cascading Style Sheets library for Python" +name = "dacite" +version = "1.8.0" +description = "Simple creation of data classes from dictionaries." category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.6" +files = [ + {file = "dacite-1.8.0-py3-none-any.whl", hash = "sha256:f7b1205cc5d9b62835aac8cbc1e6e37c1da862359a401f1edbe2ae08fbdc6193"}, + {file = "dacite-1.8.0.tar.gz", hash = "sha256:6257a5e505b61a8cafee7ef3ad08cf32ee9b885718f42395d017e0a9b4c6af65"}, +] [package.extras] -docs = ["jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx"] -testing = ["cssselect", "flake8 (<5)", "importlib-resources", "jaraco.test (>=5.1)", "lxml", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] +dev = ["black", "coveralls", "mypy", "pre-commit", "pylint", "pytest (>=5)", "pytest-benchmark", "pytest-cov"] [[package]] name = "debugpy" -version = "1.6.3" +version = "1.6.6" description = "An implementation of the Debug Adapter Protocol for Python" -category = "main" +category = "dev" optional = false python-versions = ">=3.7" +files = [ + {file = "debugpy-1.6.6-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:0ea1011e94416e90fb3598cc3ef5e08b0a4dd6ce6b9b33ccd436c1dffc8cd664"}, + {file = "debugpy-1.6.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dff595686178b0e75580c24d316aa45a8f4d56e2418063865c114eef651a982e"}, + {file = "debugpy-1.6.6-cp310-cp310-win32.whl", hash = "sha256:87755e173fcf2ec45f584bb9d61aa7686bb665d861b81faa366d59808bbd3494"}, + {file = "debugpy-1.6.6-cp310-cp310-win_amd64.whl", hash = "sha256:72687b62a54d9d9e3fb85e7a37ea67f0e803aaa31be700e61d2f3742a5683917"}, + {file = "debugpy-1.6.6-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:78739f77c58048ec006e2b3eb2e0cd5a06d5f48c915e2fc7911a337354508110"}, + {file = "debugpy-1.6.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:23c29e40e39ad7d869d408ded414f6d46d82f8a93b5857ac3ac1e915893139ca"}, + {file = "debugpy-1.6.6-cp37-cp37m-win32.whl", hash = "sha256:7aa7e103610e5867d19a7d069e02e72eb2b3045b124d051cfd1538f1d8832d1b"}, + {file = "debugpy-1.6.6-cp37-cp37m-win_amd64.whl", hash = "sha256:f6383c29e796203a0bba74a250615ad262c4279d398e89d895a69d3069498305"}, + {file = "debugpy-1.6.6-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:23363e6d2a04d726bbc1400bd4e9898d54419b36b2cdf7020e3e215e1dcd0f8e"}, + {file = "debugpy-1.6.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b5d1b13d7c7bf5d7cf700e33c0b8ddb7baf030fcf502f76fc061ddd9405d16c"}, + {file = "debugpy-1.6.6-cp38-cp38-win32.whl", hash = "sha256:70ab53918fd907a3ade01909b3ed783287ede362c80c75f41e79596d5ccacd32"}, + {file = "debugpy-1.6.6-cp38-cp38-win_amd64.whl", hash = "sha256:c05349890804d846eca32ce0623ab66c06f8800db881af7a876dc073ac1c2225"}, + {file = "debugpy-1.6.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a771739902b1ae22a120dbbb6bd91b2cae6696c0e318b5007c5348519a4211c6"}, + {file = "debugpy-1.6.6-cp39-cp39-win32.whl", hash = "sha256:549ae0cb2d34fc09d1675f9b01942499751d174381b6082279cf19cdb3c47cbe"}, + {file = "debugpy-1.6.6-cp39-cp39-win_amd64.whl", hash = "sha256:de4a045fbf388e120bb6ec66501458d3134f4729faed26ff95de52a754abddb1"}, + {file = "debugpy-1.6.6-py2.py3-none-any.whl", hash = "sha256:be596b44448aac14eb3614248c91586e2bc1728e020e82ef3197189aae556115"}, + {file = "debugpy-1.6.6.zip", hash = "sha256:b9c2130e1c632540fbf9c2c88341493797ddf58016e7cba02e311de9b0a96b67"}, +] [[package]] name = "decorator" version = "5.1.1" description = "Decorators for Humans" -category = "main" +category = "dev" optional = false python-versions = ">=3.5" +files = [ + {file = "decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186"}, + {file = "decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330"}, +] [[package]] name = "dnspython" -version = "2.2.1" +version = "2.3.0" description = "DNS toolkit" category = "main" optional = false -python-versions = ">=3.6,<4.0" +python-versions = ">=3.7,<4.0" +files = [ + {file = "dnspython-2.3.0-py3-none-any.whl", hash = "sha256:89141536394f909066cabd112e3e1a37e4e654db00a25308b0f130bc3152eb46"}, + {file = "dnspython-2.3.0.tar.gz", hash = "sha256:224e32b03eb46be70e12ef6d64e0be123a64e621ab4c0822ff6d450d52a540b9"}, +] [package.extras] curio = ["curio (>=1.2,<2.0)", "sniffio (>=1.1,<2.0)"] -dnssec = ["cryptography (>=2.6,<37.0)"] -doh = ["h2 (>=4.1.0)", "httpx (>=0.21.1)", "requests (>=2.23.0,<3.0.0)", "requests-toolbelt (>=0.9.1,<0.10.0)"] +dnssec = ["cryptography (>=2.6,<40.0)"] +doh = ["h2 (>=4.1.0)", "httpx (>=0.21.1)", "requests (>=2.23.0,<3.0.0)", "requests-toolbelt (>=0.9.1,<0.11.0)"] +doq = ["aioquic (>=0.9.20)"] idna = ["idna (>=2.1,<4.0)"] -trio = ["trio (>=0.14,<0.20)"] +trio = ["trio (>=0.14,<0.23)"] wmi = ["wmi (>=1.5.1,<2.0.0)"] +[[package]] +name = "docker" +version = "5.0.3" +description = "A Python library for the Docker Engine API." +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "docker-5.0.3-py2.py3-none-any.whl", hash = "sha256:7a79bb439e3df59d0a72621775d600bc8bc8b422d285824cb37103eab91d1ce0"}, + {file = "docker-5.0.3.tar.gz", hash = "sha256:d916a26b62970e7c2f554110ed6af04c7ccff8e9f81ad17d0d40c75637e227fb"}, +] + +[package.dependencies] +pywin32 = {version = "227", markers = "sys_platform == \"win32\""} +requests = ">=2.14.2,<2.18.0 || >2.18.0" +websocket-client = ">=0.32.0" + +[package.extras] +ssh = ["paramiko (>=2.4.2)"] +tls = ["cryptography (>=3.4.7)", "idna (>=2.0.0)", "pyOpenSSL (>=17.5.0)"] + [[package]] name = "ecdsa" version = "0.18.0" @@ -367,6 +1072,10 @@ description = "ECDSA cryptographic signature library (pure python)" category = "main" optional = false python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "ecdsa-0.18.0-py2.py3-none-any.whl", hash = "sha256:80600258e7ed2f16b9aa1d7c295bd70194109ad5a30fdee0eaeefef1d4c559dd"}, + {file = "ecdsa-0.18.0.tar.gz", hash = "sha256:190348041559e21b22a1d65cee485282ca11a6f81d503fddb84d5017e9ed1e49"}, +] [package.dependencies] six = ">=1.9.0" @@ -377,40 +1086,20 @@ gmpy2 = ["gmpy2"] [[package]] name = "email-validator" -version = "1.3.0" +version = "1.3.1" description = "A robust email address syntax and deliverability validation library." category = "main" optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +python-versions = ">=3.5" +files = [ + {file = "email_validator-1.3.1-py2.py3-none-any.whl", hash = "sha256:49a72f5fa6ed26be1c964f0567d931d10bf3fdeeacdf97bc26ef1cd2a44e0bda"}, + {file = "email_validator-1.3.1.tar.gz", hash = "sha256:d178c5c6fa6c6824e9b04f199cf23e79ac15756786573c190d2ad13089411ad2"}, +] [package.dependencies] dnspython = ">=1.15.0" idna = ">=2.0.0" -[[package]] -name = "emails" -version = "0.5.15" -description = "Modern python library for emails." -category = "main" -optional = false -python-versions = "*" - -[package.dependencies] -chardet = "*" -cssutils = "*" -lxml = "*" -premailer = "*" -python-dateutil = "*" -requests = "*" - -[[package]] -name = "entrypoints" -version = "0.4" -description = "Discover and load entry points from installed packages." -category = "main" -optional = false -python-versions = ">=3.6" - [[package]] name = "epc" version = "0.0.5" @@ -418,63 +1107,364 @@ description = "EPC (RPC stack for Emacs Lisp) implementation in Python" category = "dev" optional = false python-versions = "*" +files = [ + {file = "epc-0.0.5.tar.gz", hash = "sha256:a14d2ea74817955a20eb00812e3a4630a132897eb4d976420240f1152c0d7d25"}, +] [package.dependencies] sexpdata = ">=0.0.3" +[[package]] +name = "exceptiongroup" +version = "1.1.0" +description = "Backport of PEP 654 (exception groups)" +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "exceptiongroup-1.1.0-py3-none-any.whl", hash = "sha256:327cbda3da756e2de031a3107b81ab7b3770a602c4d16ca618298c526f4bec1e"}, + {file = "exceptiongroup-1.1.0.tar.gz", hash = "sha256:bcb67d800a4497e1b404c2dd44fca47d3b7a5e5433dbab67f96c1a685cdfdf23"}, +] + +[package.extras] +test = ["pytest (>=6)"] + [[package]] name = "executing" version = "1.2.0" description = "Get the currently executing AST node of a frame, and other information" -category = "main" +category = "dev" optional = false python-versions = "*" +files = [ + {file = "executing-1.2.0-py2.py3-none-any.whl", hash = "sha256:0314a69e37426e3608aada02473b4161d4caf5a4b244d1d0c48072b8fee7bacc"}, + {file = "executing-1.2.0.tar.gz", hash = "sha256:19da64c18d2d851112f09c287f8d3dbbdf725ab0e569077efb6cdcbd3497c107"}, +] [package.extras] tests = ["asttokens", "littleutils", "pytest", "rich"] [[package]] name = "fastapi" -version = "0.54.2" +version = "0.88.0" description = "FastAPI framework, high performance, easy to learn, fast to code, ready for production" category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" +files = [ + {file = "fastapi-0.88.0-py3-none-any.whl", hash = "sha256:263b718bb384422fe3d042ffc9a0c8dece5e034ab6586ff034f6b4b1667c3eee"}, + {file = "fastapi-0.88.0.tar.gz", hash = "sha256:915bf304180a0e7c5605ec81097b7d4cd8826ff87a02bb198e336fb9f3b5ff02"}, +] + +[package.dependencies] +pydantic = ">=1.6.2,<1.7 || >1.7,<1.7.1 || >1.7.1,<1.7.2 || >1.7.2,<1.7.3 || >1.7.3,<1.8 || >1.8,<1.8.1 || >1.8.1,<2.0.0" +starlette = "0.22.0" + +[package.extras] +all = ["email-validator (>=1.1.1)", "httpx (>=0.23.0)", "itsdangerous (>=1.1.0)", "jinja2 (>=2.11.2)", "orjson (>=3.2.1)", "python-multipart (>=0.0.5)", "pyyaml (>=5.3.1)", "ujson (>=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0)", "uvicorn[standard] (>=0.12.0)"] +dev = ["pre-commit (>=2.17.0,<3.0.0)", "ruff (==0.0.138)", "uvicorn[standard] (>=0.12.0,<0.19.0)"] +doc = ["mdx-include (>=1.4.1,<2.0.0)", "mkdocs (>=1.1.2,<2.0.0)", "mkdocs-markdownextradata-plugin (>=0.1.7,<0.3.0)", "mkdocs-material (>=8.1.4,<9.0.0)", "pyyaml (>=5.3.1,<7.0.0)", "typer[all] (>=0.6.1,<0.7.0)"] +test = ["anyio[trio] (>=3.2.1,<4.0.0)", "black (==22.10.0)", "coverage[toml] (>=6.5.0,<7.0)", "databases[sqlite] (>=0.3.2,<0.7.0)", "email-validator (>=1.1.1,<2.0.0)", "flask (>=1.1.2,<3.0.0)", "httpx (>=0.23.0,<0.24.0)", "isort (>=5.0.6,<6.0.0)", "mypy (==0.982)", "orjson (>=3.2.1,<4.0.0)", "passlib[bcrypt] (>=1.7.2,<2.0.0)", "peewee (>=3.13.3,<4.0.0)", "pytest (>=7.1.3,<8.0.0)", "python-jose[cryptography] (>=3.3.0,<4.0.0)", "python-multipart (>=0.0.5,<0.0.6)", "pyyaml (>=5.3.1,<7.0.0)", "ruff (==0.0.138)", "sqlalchemy (>=1.3.18,<=1.4.41)", "types-orjson (==3.6.2)", "types-ujson (==5.5.0)", "ujson (>=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0,<6.0.0)"] + +[[package]] +name = "fastapi-mail" +version = "1.2.5" +description = "Simple lightweight mail library for FastApi" +category = "main" +optional = false +python-versions = ">=3.8.1,<4.0" +files = [ + {file = "fastapi_mail-1.2.5-py3-none-any.whl", hash = "sha256:6dc41bd47c2276145a5e6d7d8271082a78b19fc4d506883b277f6f0428c7fa9f"}, + {file = "fastapi_mail-1.2.5.tar.gz", hash = "sha256:01ae8c221dd49d7b47ddab476766ecf720d7246e114a10b84d3e4fd9c3fc34d3"}, +] + +[package.dependencies] +aiosmtplib = ">=2.0,<3.0" +blinker = ">=1.5,<2.0" +email-validator = ">=1.1,<2.0" +Jinja2 = ">=3.0,<4.0" +pydantic = ">=1.8,<2.0" +starlette = ">=0.19,<1.0" + +[package.extras] +httpx = ["httpx[httpx] (>=0.23,<0.24)"] +redis = ["redis[redis] (>=4.3,<5.0)"] + +[[package]] +name = "fastapi-users" +version = "10.4.0" +description = "Ready-to-use and customizable users management for FastAPI" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "fastapi_users-10.4.0-py3-none-any.whl", hash = "sha256:c8edc0c16b3bca41c4b4cea479b85b8f37f6682414e8649e01a05c0b135dbe7d"}, + {file = "fastapi_users-10.4.0.tar.gz", hash = "sha256:7f77a2a74be8833daaba5d60f8e8c5b445bc26f26aecc445eea9d80e877d5629"}, +] [package.dependencies] -pydantic = ">=0.32.2,<2.0.0" -starlette = "0.13.2" +email-validator = ">=1.1.0,<1.4" +fastapi = ">=0.65.2" +fastapi-users-db-sqlalchemy = {version = ">=4.0.0", optional = true, markers = "extra == \"sqlalchemy\""} +httpx-oauth = {version = ">=0.4,<0.12", optional = true, markers = "extra == \"oauth\""} +makefun = ">=1.11.2,<2.0.0" +passlib = {version = "1.7.4", extras = ["bcrypt"]} +pyjwt = {version = "2.6.0", extras = ["crypto"]} +python-multipart = "0.0.5" [package.extras] -all = ["aiofiles", "async_exit_stack", "async_generator", "email_validator", "graphene", "itsdangerous", "jinja2", "orjson", "python-multipart", "pyyaml", "requests", "ujson", "uvicorn"] -dev = ["autoflake", "flake8", "graphene", "passlib[bcrypt]", "pyjwt", "uvicorn"] -doc = ["markdown-include", "mkdocs", "mkdocs-material", "pyyaml", "typer", "typer-cli"] -test = ["aiofiles", "async_exit_stack", "async_generator", "black", "databases[sqlite]", "email_validator", "flask", "isort", "mypy", "orjson", "peewee", "pytest (>=4.0.0)", "pytest-cov", "python-multipart", "requests", "sqlalchemy"] +beanie = ["fastapi-users-db-beanie (>=1.0.0)"] +oauth = ["httpx-oauth (>=0.4,<0.12)"] +redis = ["redis (>=4.3.3,<5.0.0)"] +sqlalchemy = ["fastapi-users-db-sqlalchemy (>=4.0.0)"] + +[[package]] +name = "fastapi-users-db-sqlalchemy" +version = "4.0.5" +description = "FastAPI Users database adapter for SQLAlchemy" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "fastapi_users_db_sqlalchemy-4.0.5-py3-none-any.whl", hash = "sha256:83c955cdd3a3c8c95077c087cecdb51d067906ad397e2f3febf02784bcb5d13b"}, + {file = "fastapi_users_db_sqlalchemy-4.0.5.tar.gz", hash = "sha256:c626a82af6c421cab791055355944bab2779a26b3a25a4dba11d459aaa17f66a"}, +] + +[package.dependencies] +fastapi-users = ">=10.0.0" +sqlalchemy = {version = ">=1.4,<2.0.0", extras = ["asyncio"]} [[package]] name = "flake8" -version = "3.9.2" +version = "6.0.0" description = "the modular source code checker: pep8 pyflakes and co" category = "dev" optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +python-versions = ">=3.8.1" +files = [ + {file = "flake8-6.0.0-py2.py3-none-any.whl", hash = "sha256:3833794e27ff64ea4e9cf5d410082a8b97ff1a06c16aa3d2027339cd0f1195c7"}, + {file = "flake8-6.0.0.tar.gz", hash = "sha256:c61007e76655af75e6785a931f452915b371dc48f56efd765247c8fe68f2b181"}, +] + +[package.dependencies] +mccabe = ">=0.7.0,<0.8.0" +pycodestyle = ">=2.10.0,<2.11.0" +pyflakes = ">=3.0.0,<3.1.0" + +[[package]] +name = "frozenlist" +version = "1.3.3" +description = "A list-like structure which implements collections.abc.MutableSequence" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "frozenlist-1.3.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ff8bf625fe85e119553b5383ba0fb6aa3d0ec2ae980295aaefa552374926b3f4"}, + {file = "frozenlist-1.3.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dfbac4c2dfcc082fcf8d942d1e49b6aa0766c19d3358bd86e2000bf0fa4a9cf0"}, + {file = "frozenlist-1.3.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b1c63e8d377d039ac769cd0926558bb7068a1f7abb0f003e3717ee003ad85530"}, + {file = "frozenlist-1.3.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7fdfc24dcfce5b48109867c13b4cb15e4660e7bd7661741a391f821f23dfdca7"}, + {file = "frozenlist-1.3.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2c926450857408e42f0bbc295e84395722ce74bae69a3b2aa2a65fe22cb14b99"}, + {file = "frozenlist-1.3.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1841e200fdafc3d51f974d9d377c079a0694a8f06de2e67b48150328d66d5483"}, + {file = "frozenlist-1.3.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f470c92737afa7d4c3aacc001e335062d582053d4dbe73cda126f2d7031068dd"}, + {file = "frozenlist-1.3.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:783263a4eaad7c49983fe4b2e7b53fa9770c136c270d2d4bbb6d2192bf4d9caf"}, + {file = "frozenlist-1.3.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:924620eef691990dfb56dc4709f280f40baee568c794b5c1885800c3ecc69816"}, + {file = "frozenlist-1.3.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:ae4dc05c465a08a866b7a1baf360747078b362e6a6dbeb0c57f234db0ef88ae0"}, + {file = "frozenlist-1.3.3-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:bed331fe18f58d844d39ceb398b77d6ac0b010d571cba8267c2e7165806b00ce"}, + {file = "frozenlist-1.3.3-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:02c9ac843e3390826a265e331105efeab489ffaf4dd86384595ee8ce6d35ae7f"}, + {file = "frozenlist-1.3.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9545a33965d0d377b0bc823dcabf26980e77f1b6a7caa368a365a9497fb09420"}, + {file = "frozenlist-1.3.3-cp310-cp310-win32.whl", hash = "sha256:d5cd3ab21acbdb414bb6c31958d7b06b85eeb40f66463c264a9b343a4e238642"}, + {file = "frozenlist-1.3.3-cp310-cp310-win_amd64.whl", hash = "sha256:b756072364347cb6aa5b60f9bc18e94b2f79632de3b0190253ad770c5df17db1"}, + {file = "frozenlist-1.3.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:b4395e2f8d83fbe0c627b2b696acce67868793d7d9750e90e39592b3626691b7"}, + {file = "frozenlist-1.3.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:14143ae966a6229350021384870458e4777d1eae4c28d1a7aa47f24d030e6678"}, + {file = "frozenlist-1.3.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5d8860749e813a6f65bad8285a0520607c9500caa23fea6ee407e63debcdbef6"}, + {file = "frozenlist-1.3.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23d16d9f477bb55b6154654e0e74557040575d9d19fe78a161bd33d7d76808e8"}, + {file = "frozenlist-1.3.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb82dbba47a8318e75f679690190c10a5e1f447fbf9df41cbc4c3afd726d88cb"}, + {file = "frozenlist-1.3.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9309869032abb23d196cb4e4db574232abe8b8be1339026f489eeb34a4acfd91"}, + {file = "frozenlist-1.3.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a97b4fe50b5890d36300820abd305694cb865ddb7885049587a5678215782a6b"}, + {file = "frozenlist-1.3.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c188512b43542b1e91cadc3c6c915a82a5eb95929134faf7fd109f14f9892ce4"}, + {file = "frozenlist-1.3.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:303e04d422e9b911a09ad499b0368dc551e8c3cd15293c99160c7f1f07b59a48"}, + {file = "frozenlist-1.3.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:0771aed7f596c7d73444c847a1c16288937ef988dc04fb9f7be4b2aa91db609d"}, + {file = "frozenlist-1.3.3-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:66080ec69883597e4d026f2f71a231a1ee9887835902dbe6b6467d5a89216cf6"}, + {file = "frozenlist-1.3.3-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:41fe21dc74ad3a779c3d73a2786bdf622ea81234bdd4faf90b8b03cad0c2c0b4"}, + {file = "frozenlist-1.3.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f20380df709d91525e4bee04746ba612a4df0972c1b8f8e1e8af997e678c7b81"}, + {file = "frozenlist-1.3.3-cp311-cp311-win32.whl", hash = "sha256:f30f1928162e189091cf4d9da2eac617bfe78ef907a761614ff577ef4edfb3c8"}, + {file = "frozenlist-1.3.3-cp311-cp311-win_amd64.whl", hash = "sha256:a6394d7dadd3cfe3f4b3b186e54d5d8504d44f2d58dcc89d693698e8b7132b32"}, + {file = "frozenlist-1.3.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8df3de3a9ab8325f94f646609a66cbeeede263910c5c0de0101079ad541af332"}, + {file = "frozenlist-1.3.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0693c609e9742c66ba4870bcee1ad5ff35462d5ffec18710b4ac89337ff16e27"}, + {file = "frozenlist-1.3.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cd4210baef299717db0a600d7a3cac81d46ef0e007f88c9335db79f8979c0d3d"}, + {file = "frozenlist-1.3.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:394c9c242113bfb4b9aa36e2b80a05ffa163a30691c7b5a29eba82e937895d5e"}, + {file = "frozenlist-1.3.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6327eb8e419f7d9c38f333cde41b9ae348bec26d840927332f17e887a8dcb70d"}, + {file = "frozenlist-1.3.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e24900aa13212e75e5b366cb9065e78bbf3893d4baab6052d1aca10d46d944c"}, + {file = "frozenlist-1.3.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:3843f84a6c465a36559161e6c59dce2f2ac10943040c2fd021cfb70d58c4ad56"}, + {file = "frozenlist-1.3.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:84610c1502b2461255b4c9b7d5e9c48052601a8957cd0aea6ec7a7a1e1fb9420"}, + {file = "frozenlist-1.3.3-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:c21b9aa40e08e4f63a2f92ff3748e6b6c84d717d033c7b3438dd3123ee18f70e"}, + {file = "frozenlist-1.3.3-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:efce6ae830831ab6a22b9b4091d411698145cb9b8fc869e1397ccf4b4b6455cb"}, + {file = "frozenlist-1.3.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:40de71985e9042ca00b7953c4f41eabc3dc514a2d1ff534027f091bc74416401"}, + {file = "frozenlist-1.3.3-cp37-cp37m-win32.whl", hash = "sha256:180c00c66bde6146a860cbb81b54ee0df350d2daf13ca85b275123bbf85de18a"}, + {file = "frozenlist-1.3.3-cp37-cp37m-win_amd64.whl", hash = "sha256:9bbbcedd75acdfecf2159663b87f1bb5cfc80e7cd99f7ddd9d66eb98b14a8411"}, + {file = "frozenlist-1.3.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:034a5c08d36649591be1cbb10e09da9f531034acfe29275fc5454a3b101ce41a"}, + {file = "frozenlist-1.3.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ba64dc2b3b7b158c6660d49cdb1d872d1d0bf4e42043ad8d5006099479a194e5"}, + {file = "frozenlist-1.3.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:47df36a9fe24054b950bbc2db630d508cca3aa27ed0566c0baf661225e52c18e"}, + {file = "frozenlist-1.3.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:008a054b75d77c995ea26629ab3a0c0d7281341f2fa7e1e85fa6153ae29ae99c"}, + {file = "frozenlist-1.3.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:841ea19b43d438a80b4de62ac6ab21cfe6827bb8a9dc62b896acc88eaf9cecba"}, + {file = "frozenlist-1.3.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e235688f42b36be2b6b06fc37ac2126a73b75fb8d6bc66dd632aa35286238703"}, + {file = "frozenlist-1.3.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca713d4af15bae6e5d79b15c10c8522859a9a89d3b361a50b817c98c2fb402a2"}, + {file = "frozenlist-1.3.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ac5995f2b408017b0be26d4a1d7c61bce106ff3d9e3324374d66b5964325448"}, + {file = "frozenlist-1.3.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:a4ae8135b11652b08a8baf07631d3ebfe65a4c87909dbef5fa0cdde440444ee4"}, + {file = "frozenlist-1.3.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:4ea42116ceb6bb16dbb7d526e242cb6747b08b7710d9782aa3d6732bd8d27649"}, + {file = "frozenlist-1.3.3-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:810860bb4bdce7557bc0febb84bbd88198b9dbc2022d8eebe5b3590b2ad6c842"}, + {file = "frozenlist-1.3.3-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:ee78feb9d293c323b59a6f2dd441b63339a30edf35abcb51187d2fc26e696d13"}, + {file = "frozenlist-1.3.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:0af2e7c87d35b38732e810befb9d797a99279cbb85374d42ea61c1e9d23094b3"}, + {file = "frozenlist-1.3.3-cp38-cp38-win32.whl", hash = "sha256:899c5e1928eec13fd6f6d8dc51be23f0d09c5281e40d9cf4273d188d9feeaf9b"}, + {file = "frozenlist-1.3.3-cp38-cp38-win_amd64.whl", hash = "sha256:7f44e24fa70f6fbc74aeec3e971f60a14dde85da364aa87f15d1be94ae75aeef"}, + {file = "frozenlist-1.3.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:2b07ae0c1edaa0a36339ec6cce700f51b14a3fc6545fdd32930d2c83917332cf"}, + {file = "frozenlist-1.3.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ebb86518203e12e96af765ee89034a1dbb0c3c65052d1b0c19bbbd6af8a145e1"}, + {file = "frozenlist-1.3.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5cf820485f1b4c91e0417ea0afd41ce5cf5965011b3c22c400f6d144296ccbc0"}, + {file = "frozenlist-1.3.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c11e43016b9024240212d2a65043b70ed8dfd3b52678a1271972702d990ac6d"}, + {file = "frozenlist-1.3.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8fa3c6e3305aa1146b59a09b32b2e04074945ffcfb2f0931836d103a2c38f936"}, + {file = "frozenlist-1.3.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:352bd4c8c72d508778cf05ab491f6ef36149f4d0cb3c56b1b4302852255d05d5"}, + {file = "frozenlist-1.3.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65a5e4d3aa679610ac6e3569e865425b23b372277f89b5ef06cf2cdaf1ebf22b"}, + {file = "frozenlist-1.3.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1e2c1185858d7e10ff045c496bbf90ae752c28b365fef2c09cf0fa309291669"}, + {file = "frozenlist-1.3.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f163d2fd041c630fed01bc48d28c3ed4a3b003c00acd396900e11ee5316b56bb"}, + {file = "frozenlist-1.3.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:05cdb16d09a0832eedf770cb7bd1fe57d8cf4eaf5aced29c4e41e3f20b30a784"}, + {file = "frozenlist-1.3.3-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:8bae29d60768bfa8fb92244b74502b18fae55a80eac13c88eb0b496d4268fd2d"}, + {file = "frozenlist-1.3.3-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:eedab4c310c0299961ac285591acd53dc6723a1ebd90a57207c71f6e0c2153ab"}, + {file = "frozenlist-1.3.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3bbdf44855ed8f0fbcd102ef05ec3012d6a4fd7c7562403f76ce6a52aeffb2b1"}, + {file = "frozenlist-1.3.3-cp39-cp39-win32.whl", hash = "sha256:efa568b885bca461f7c7b9e032655c0c143d305bf01c30caf6db2854a4532b38"}, + {file = "frozenlist-1.3.3-cp39-cp39-win_amd64.whl", hash = "sha256:cfe33efc9cb900a4c46f91a5ceba26d6df370ffddd9ca386eb1d4f0ad97b9ea9"}, + {file = "frozenlist-1.3.3.tar.gz", hash = "sha256:58bcc55721e8a90b88332d6cd441261ebb22342e238296bb330968952fbb3a6a"}, +] + +[[package]] +name = "fsspec" +version = "2023.3.0" +description = "File-system specification" +category = "main" +optional = false +python-versions = ">=3.8" +files = [ + {file = "fsspec-2023.3.0-py3-none-any.whl", hash = "sha256:bf57215e19dbfa4fe7edae53040cc1deef825e3b1605cca9a8d2c2fadd2328a0"}, + {file = "fsspec-2023.3.0.tar.gz", hash = "sha256:24e635549a590d74c6c18274ddd3ffab4753341753e923408b1904eaabafe04d"}, +] + +[package.extras] +abfs = ["adlfs"] +adl = ["adlfs"] +arrow = ["pyarrow (>=1)"] +dask = ["dask", "distributed"] +dropbox = ["dropbox", "dropboxdrivefs", "requests"] +fuse = ["fusepy"] +gcs = ["gcsfs"] +git = ["pygit2"] +github = ["requests"] +gs = ["gcsfs"] +gui = ["panel"] +hdfs = ["pyarrow (>=1)"] +http = ["aiohttp (!=4.0.0a0,!=4.0.0a1)", "requests"] +libarchive = ["libarchive-c"] +oci = ["ocifs"] +s3 = ["s3fs"] +sftp = ["paramiko"] +smb = ["smbprotocol"] +ssh = ["paramiko"] +tqdm = ["tqdm"] + +[[package]] +name = "gqlalchemy" +version = "1.3.3" +description = "GQLAlchemy is library developed with purpose of assisting writing and running queries on Memgraph." +category = "main" +optional = false +python-versions = ">=3.7,<4.0" +files = [ + {file = "GQLAlchemy-1.3.3.tar.gz", hash = "sha256:5cabffd27d7dc605e80170909a903f927a8b674cf26c6ade3a256eef5c66a87b"}, + {file = "gqlalchemy-1.3.3-py3-none-any.whl", hash = "sha256:2c26bea123bf12987286773595014c5700c3128f5649132127fccd2910f3b798"}, +] [package.dependencies] -mccabe = ">=0.6.0,<0.7.0" -pycodestyle = ">=2.7.0,<2.8.0" -pyflakes = ">=2.3.0,<2.4.0" +adlfs = ">=2022.2.0,<2023.0.0" +dacite = ">=1.6.0,<2.0.0" +docker = ">=5.0.3,<6.0.0" +neo4j = ">=4.4.3,<5.0.0" +networkx = ">=2.5.1,<3.0.0" +psutil = ">=5.9.0,<6.0.0" +pyarrow = ">=9.0.0,<10.0.0" +pydantic = ">=1.8.2,<2.0.0" +pymgclient = "1.3.1" [[package]] name = "greenlet" -version = "2.0.1" +version = "2.0.2" description = "Lightweight in-process concurrent programming" category = "main" optional = false python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*" +files = [ + {file = "greenlet-2.0.2-cp27-cp27m-macosx_10_14_x86_64.whl", hash = "sha256:bdfea8c661e80d3c1c99ad7c3ff74e6e87184895bbaca6ee8cc61209f8b9b85d"}, + {file = "greenlet-2.0.2-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:9d14b83fab60d5e8abe587d51c75b252bcc21683f24699ada8fb275d7712f5a9"}, + {file = "greenlet-2.0.2-cp27-cp27m-win32.whl", hash = "sha256:6c3acb79b0bfd4fe733dff8bc62695283b57949ebcca05ae5c129eb606ff2d74"}, + {file = "greenlet-2.0.2-cp27-cp27m-win_amd64.whl", hash = "sha256:283737e0da3f08bd637b5ad058507e578dd462db259f7f6e4c5c365ba4ee9343"}, + {file = "greenlet-2.0.2-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:d27ec7509b9c18b6d73f2f5ede2622441de812e7b1a80bbd446cb0633bd3d5ae"}, + {file = "greenlet-2.0.2-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:30bcf80dda7f15ac77ba5af2b961bdd9dbc77fd4ac6105cee85b0d0a5fcf74df"}, + {file = "greenlet-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:26fbfce90728d82bc9e6c38ea4d038cba20b7faf8a0ca53a9c07b67318d46088"}, + {file = "greenlet-2.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9190f09060ea4debddd24665d6804b995a9c122ef5917ab26e1566dcc712ceeb"}, + {file = "greenlet-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d75209eed723105f9596807495d58d10b3470fa6732dd6756595e89925ce2470"}, + {file = "greenlet-2.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3a51c9751078733d88e013587b108f1b7a1fb106d402fb390740f002b6f6551a"}, + {file = "greenlet-2.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:76ae285c8104046b3a7f06b42f29c7b73f77683df18c49ab5af7983994c2dd91"}, + {file = "greenlet-2.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:2d4686f195e32d36b4d7cf2d166857dbd0ee9f3d20ae349b6bf8afc8485b3645"}, + {file = "greenlet-2.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c4302695ad8027363e96311df24ee28978162cdcdd2006476c43970b384a244c"}, + {file = "greenlet-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c48f54ef8e05f04d6eff74b8233f6063cb1ed960243eacc474ee73a2ea8573ca"}, + {file = "greenlet-2.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1846f1b999e78e13837c93c778dcfc3365902cfb8d1bdb7dd73ead37059f0d0"}, + {file = "greenlet-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a06ad5312349fec0ab944664b01d26f8d1f05009566339ac6f63f56589bc1a2"}, + {file = "greenlet-2.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:eff4eb9b7eb3e4d0cae3d28c283dc16d9bed6b193c2e1ace3ed86ce48ea8df19"}, + {file = "greenlet-2.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5454276c07d27a740c5892f4907c86327b632127dd9abec42ee62e12427ff7e3"}, + {file = "greenlet-2.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:7cafd1208fdbe93b67c7086876f061f660cfddc44f404279c1585bbf3cdc64c5"}, + {file = "greenlet-2.0.2-cp35-cp35m-macosx_10_14_x86_64.whl", hash = "sha256:910841381caba4f744a44bf81bfd573c94e10b3045ee00de0cbf436fe50673a6"}, + {file = "greenlet-2.0.2-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:18a7f18b82b52ee85322d7a7874e676f34ab319b9f8cce5de06067384aa8ff43"}, + {file = "greenlet-2.0.2-cp35-cp35m-win32.whl", hash = "sha256:03a8f4f3430c3b3ff8d10a2a86028c660355ab637cee9333d63d66b56f09d52a"}, + {file = "greenlet-2.0.2-cp35-cp35m-win_amd64.whl", hash = "sha256:4b58adb399c4d61d912c4c331984d60eb66565175cdf4a34792cd9600f21b394"}, + {file = "greenlet-2.0.2-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:703f18f3fda276b9a916f0934d2fb6d989bf0b4fb5a64825260eb9bfd52d78f0"}, + {file = "greenlet-2.0.2-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:32e5b64b148966d9cccc2c8d35a671409e45f195864560829f395a54226408d3"}, + {file = "greenlet-2.0.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2dd11f291565a81d71dab10b7033395b7a3a5456e637cf997a6f33ebdf06f8db"}, + {file = "greenlet-2.0.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e0f72c9ddb8cd28532185f54cc1453f2c16fb417a08b53a855c4e6a418edd099"}, + {file = "greenlet-2.0.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cd021c754b162c0fb55ad5d6b9d960db667faad0fa2ff25bb6e1301b0b6e6a75"}, + {file = "greenlet-2.0.2-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:3c9b12575734155d0c09d6c3e10dbd81665d5c18e1a7c6597df72fd05990c8cf"}, + {file = "greenlet-2.0.2-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:b9ec052b06a0524f0e35bd8790686a1da006bd911dd1ef7d50b77bfbad74e292"}, + {file = "greenlet-2.0.2-cp36-cp36m-win32.whl", hash = "sha256:dbfcfc0218093a19c252ca8eb9aee3d29cfdcb586df21049b9d777fd32c14fd9"}, + {file = "greenlet-2.0.2-cp36-cp36m-win_amd64.whl", hash = "sha256:9f35ec95538f50292f6d8f2c9c9f8a3c6540bbfec21c9e5b4b751e0a7c20864f"}, + {file = "greenlet-2.0.2-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:d5508f0b173e6aa47273bdc0a0b5ba055b59662ba7c7ee5119528f466585526b"}, + {file = "greenlet-2.0.2-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:f82d4d717d8ef19188687aa32b8363e96062911e63ba22a0cff7802a8e58e5f1"}, + {file = "greenlet-2.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c9c59a2120b55788e800d82dfa99b9e156ff8f2227f07c5e3012a45a399620b7"}, + {file = "greenlet-2.0.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2780572ec463d44c1d3ae850239508dbeb9fed38e294c68d19a24d925d9223ca"}, + {file = "greenlet-2.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:937e9020b514ceedb9c830c55d5c9872abc90f4b5862f89c0887033ae33c6f73"}, + {file = "greenlet-2.0.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:36abbf031e1c0f79dd5d596bfaf8e921c41df2bdf54ee1eed921ce1f52999a86"}, + {file = "greenlet-2.0.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:18e98fb3de7dba1c0a852731c3070cf022d14f0d68b4c87a19cc1016f3bb8b33"}, + {file = "greenlet-2.0.2-cp37-cp37m-win32.whl", hash = "sha256:3f6ea9bd35eb450837a3d80e77b517ea5bc56b4647f5502cd28de13675ee12f7"}, + {file = "greenlet-2.0.2-cp37-cp37m-win_amd64.whl", hash = "sha256:7492e2b7bd7c9b9916388d9df23fa49d9b88ac0640db0a5b4ecc2b653bf451e3"}, + {file = "greenlet-2.0.2-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:b864ba53912b6c3ab6bcb2beb19f19edd01a6bfcbdfe1f37ddd1778abfe75a30"}, + {file = "greenlet-2.0.2-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:ba2956617f1c42598a308a84c6cf021a90ff3862eddafd20c3333d50f0edb45b"}, + {file = "greenlet-2.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fc3a569657468b6f3fb60587e48356fe512c1754ca05a564f11366ac9e306526"}, + {file = "greenlet-2.0.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8eab883b3b2a38cc1e050819ef06a7e6344d4a990d24d45bc6f2cf959045a45b"}, + {file = "greenlet-2.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:acd2162a36d3de67ee896c43effcd5ee3de247eb00354db411feb025aa319857"}, + {file = "greenlet-2.0.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:0bf60faf0bc2468089bdc5edd10555bab6e85152191df713e2ab1fcc86382b5a"}, + {file = "greenlet-2.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b0ef99cdbe2b682b9ccbb964743a6aca37905fda5e0452e5ee239b1654d37f2a"}, + {file = "greenlet-2.0.2-cp38-cp38-win32.whl", hash = "sha256:b80f600eddddce72320dbbc8e3784d16bd3fb7b517e82476d8da921f27d4b249"}, + {file = "greenlet-2.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:4d2e11331fc0c02b6e84b0d28ece3a36e0548ee1a1ce9ddde03752d9b79bba40"}, + {file = "greenlet-2.0.2-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:88d9ab96491d38a5ab7c56dd7a3cc37d83336ecc564e4e8816dbed12e5aaefc8"}, + {file = "greenlet-2.0.2-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:561091a7be172ab497a3527602d467e2b3fbe75f9e783d8b8ce403fa414f71a6"}, + {file = "greenlet-2.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:971ce5e14dc5e73715755d0ca2975ac88cfdaefcaab078a284fea6cfabf866df"}, + {file = "greenlet-2.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:be4ed120b52ae4d974aa40215fcdfde9194d63541c7ded40ee12eb4dda57b76b"}, + {file = "greenlet-2.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94c817e84245513926588caf1152e3b559ff794d505555211ca041f032abbb6b"}, + {file = "greenlet-2.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:1a819eef4b0e0b96bb0d98d797bef17dc1b4a10e8d7446be32d1da33e095dbb8"}, + {file = "greenlet-2.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7efde645ca1cc441d6dc4b48c0f7101e8d86b54c8530141b09fd31cef5149ec9"}, + {file = "greenlet-2.0.2-cp39-cp39-win32.whl", hash = "sha256:ea9872c80c132f4663822dd2a08d404073a5a9b5ba6155bea72fb2a79d1093b5"}, + {file = "greenlet-2.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:db1a39669102a1d8d12b57de2bb7e2ec9066a6f2b3da35ae511ff93b01b5d564"}, + {file = "greenlet-2.0.2.tar.gz", hash = "sha256:e7c8dc13af7db097bed64a051d2dd49e9f0af495c26995c00a9ee842690d34c0"}, +] [package.extras] docs = ["Sphinx", "docutils (<0.18)"] -test = ["faulthandler", "objgraph", "psutil"] +test = ["objgraph", "psutil"] [[package]] name = "gunicorn" @@ -483,6 +1473,10 @@ description = "WSGI HTTP Server for UNIX" category = "main" optional = false python-versions = ">=3.5" +files = [ + {file = "gunicorn-20.1.0-py3-none-any.whl", hash = "sha256:9dcc4547dbb1cb284accfb15ab5667a0e5d1881cc443e0677b4882a4067a807e"}, + {file = "gunicorn-20.1.0.tar.gz", hash = "sha256:e0a968b5ba15f8a328fdfd7ab1fcb5af4470c28aaf7e55df02a99bc13138e6e8"}, +] [package.dependencies] setuptools = ">=3.0" @@ -495,22 +1489,76 @@ tornado = ["tornado (>=0.2)"] [[package]] name = "h11" -version = "0.9.0" +version = "0.14.0" description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" category = "main" optional = false -python-versions = "*" +python-versions = ">=3.7" +files = [ + {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, + {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, +] [[package]] -name = "httptools" -version = "0.1.2" -description = "A collection of framework independent HTTP protocol utils." +name = "httpcore" +version = "0.16.3" +description = "A minimal low-level HTTP client." category = "main" optional = false -python-versions = "*" +python-versions = ">=3.7" +files = [ + {file = "httpcore-0.16.3-py3-none-any.whl", hash = "sha256:da1fb708784a938aa084bde4feb8317056c55037247c787bd7e19eb2c2949dc0"}, + {file = "httpcore-0.16.3.tar.gz", hash = "sha256:c5d6f04e2fc530f39e0c077e6a30caa53f1451096120f1f38b954afd0b17c0cb"}, +] + +[package.dependencies] +anyio = ">=3.0,<5.0" +certifi = "*" +h11 = ">=0.13,<0.15" +sniffio = ">=1.0.0,<2.0.0" + +[package.extras] +http2 = ["h2 (>=3,<5)"] +socks = ["socksio (>=1.0.0,<2.0.0)"] + +[[package]] +name = "httpx" +version = "0.23.3" +description = "The next generation HTTP client." +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "httpx-0.23.3-py3-none-any.whl", hash = "sha256:a211fcce9b1254ea24f0cd6af9869b3d29aba40154e947d2a07bb499b3e310d6"}, + {file = "httpx-0.23.3.tar.gz", hash = "sha256:9818458eb565bb54898ccb9b8b251a28785dd4a55afbc23d0eb410754fe7d0f9"}, +] + +[package.dependencies] +certifi = "*" +httpcore = ">=0.15.0,<0.17.0" +rfc3986 = {version = ">=1.3,<2", extras = ["idna2008"]} +sniffio = "*" [package.extras] -test = ["Cython (==0.29.22)"] +brotli = ["brotli", "brotlicffi"] +cli = ["click (>=8.0.0,<9.0.0)", "pygments (>=2.0.0,<3.0.0)", "rich (>=10,<13)"] +http2 = ["h2 (>=3,<5)"] +socks = ["socksio (>=1.0.0,<2.0.0)"] + +[[package]] +name = "httpx-oauth" +version = "0.11.0" +description = "Async OAuth client using HTTPX" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "httpx_oauth-0.11.0-py3-none-any.whl", hash = "sha256:c7601bd1a7a485c8579244f4a6a698d9b22efc4a02b8fb426b2af490836481d5"}, + {file = "httpx_oauth-0.11.0.tar.gz", hash = "sha256:12ce9d58a9bc5d0d4dbba22afaf033695d79078d08eaf949d71e1db97a830cb6"}, +] + +[package.dependencies] +httpx = ">=0.18,<0.24" [[package]] name = "idna" @@ -519,6 +1567,10 @@ description = "Internationalized Domain Names in Applications (IDNA)" category = "main" optional = false python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] [[package]] name = "importmagic" @@ -527,42 +1579,70 @@ description = "Python Import Magic - automagically add, remove and manage import category = "dev" optional = false python-versions = "*" +files = [ + {file = "importmagic-0.1.7.tar.gz", hash = "sha256:3f7757a5b74c9a291e20e12023bb3bf71bc2fa3adfb15a08570648ab83eaf8d8"}, +] [package.dependencies] setuptools = ">=0.6b1" +[[package]] +name = "iniconfig" +version = "2.0.0" +description = "brain-dead simple config-ini parsing" +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, + {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, +] + [[package]] name = "ipykernel" -version = "6.17.1" +version = "6.21.3" description = "IPython Kernel for Jupyter" -category = "main" +category = "dev" optional = false python-versions = ">=3.8" +files = [ + {file = "ipykernel-6.21.3-py3-none-any.whl", hash = "sha256:24ebd9715e317c185e37156ab3a87382410185230dde7aeffce389d6c7d4428a"}, + {file = "ipykernel-6.21.3.tar.gz", hash = "sha256:c8ff581905d70e7299bc1473a2f7c113bec1744fb3746d58e5b4b93bd8ee7001"}, +] [package.dependencies] appnope = {version = "*", markers = "platform_system == \"Darwin\""} -debugpy = ">=1.0" +comm = ">=0.1.1" +debugpy = ">=1.6.5" ipython = ">=7.23.1" jupyter-client = ">=6.1.12" +jupyter-core = ">=4.12,<5.0.0 || >=5.1.0" matplotlib-inline = ">=0.1" nest-asyncio = "*" packaging = "*" psutil = "*" -pyzmq = ">=17" +pyzmq = ">=20" tornado = ">=6.1" -traitlets = ">=5.1.0" +traitlets = ">=5.4.0" [package.extras] -docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinxcontrib-github-alt"] -test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-cov", "pytest-timeout"] +cov = ["coverage[toml]", "curio", "matplotlib", "pytest-cov", "trio"] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "trio"] +pyqt5 = ["pyqt5"] +pyside6 = ["pyside6"] +test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-asyncio", "pytest-cov", "pytest-timeout"] [[package]] name = "ipython" -version = "8.6.0" +version = "8.11.0" description = "IPython: Productive Interactive Computing" -category = "main" +category = "dev" optional = false python-versions = ">=3.8" +files = [ + {file = "ipython-8.11.0-py3-none-any.whl", hash = "sha256:5b54478e459155a326bf5f42ee4f29df76258c0279c36f21d71ddb560f88b156"}, + {file = "ipython-8.11.0.tar.gz", hash = "sha256:735cede4099dbc903ee540307b9171fbfef4aa75cfcacc5a273b2cda2f02be04"}, +] [package.dependencies] appnope = {version = "*", markers = "sys_platform == \"darwin\""} @@ -573,13 +1653,13 @@ jedi = ">=0.16" matplotlib-inline = "*" pexpect = {version = ">4.3", markers = "sys_platform != \"win32\""} pickleshare = "*" -prompt-toolkit = ">3.0.1,<3.1.0" +prompt-toolkit = ">=3.0.30,<3.0.37 || >3.0.37,<3.1.0" pygments = ">=2.4.0" stack-data = "*" traitlets = ">=5" [package.extras] -all = ["black", "curio", "docrepr", "ipykernel", "ipyparallel", "ipywidgets", "matplotlib", "matplotlib (!=3.2.0)", "nbconvert", "nbformat", "notebook", "numpy (>=1.20)", "pandas", "pytest (<7)", "pytest (<7.1)", "pytest-asyncio", "qtconsole", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "stack-data", "testpath", "trio", "typing-extensions"] +all = ["black", "curio", "docrepr", "ipykernel", "ipyparallel", "ipywidgets", "matplotlib", "matplotlib (!=3.2.0)", "nbconvert", "nbformat", "notebook", "numpy (>=1.21)", "pandas", "pytest (<7)", "pytest (<7.1)", "pytest-asyncio", "qtconsole", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "stack-data", "testpath", "trio", "typing-extensions"] black = ["black"] doc = ["docrepr", "ipykernel", "matplotlib", "pytest (<7)", "pytest (<7.1)", "pytest-asyncio", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "stack-data", "testpath", "typing-extensions"] kernel = ["ipykernel"] @@ -589,7 +1669,22 @@ notebook = ["ipywidgets", "notebook"] parallel = ["ipyparallel"] qtconsole = ["qtconsole"] test = ["pytest (<7.1)", "pytest-asyncio", "testpath"] -test_extra = ["curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.20)", "pandas", "pytest (<7.1)", "pytest-asyncio", "testpath", "trio"] +test-extra = ["curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.21)", "pandas", "pytest (<7.1)", "pytest-asyncio", "testpath", "trio"] + +[[package]] +name = "isodate" +version = "0.6.1" +description = "An ISO 8601 date/time/duration parser and formatter" +category = "main" +optional = false +python-versions = "*" +files = [ + {file = "isodate-0.6.1-py2.py3-none-any.whl", hash = "sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96"}, + {file = "isodate-0.6.1.tar.gz", hash = "sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9"}, +] + +[package.dependencies] +six = "*" [[package]] name = "isort" @@ -598,41 +1693,54 @@ description = "A Python utility / library to sort Python imports." category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "isort-4.3.21-py2.py3-none-any.whl", hash = "sha256:6e811fcb295968434526407adb8796944f1988c5b65e8139058f2014cbe100fd"}, + {file = "isort-4.3.21.tar.gz", hash = "sha256:54da7e92468955c4fceacd0c86bd0ec997b0e1ee80d97f67c35a78b719dccab1"}, +] [package.extras] pipfile = ["pipreqs", "requirementslib"] pyproject = ["toml"] requirements = ["pip-api", "pipreqs"] -xdg_home = ["appdirs (>=1.4.0)"] +xdg-home = ["appdirs (>=1.4.0)"] [[package]] name = "jedi" -version = "0.18.1" +version = "0.18.2" description = "An autocompletion tool for Python that can be used for text editors." -category = "main" +category = "dev" optional = false python-versions = ">=3.6" +files = [ + {file = "jedi-0.18.2-py2.py3-none-any.whl", hash = "sha256:203c1fd9d969ab8f2119ec0a3342e0b49910045abe6af0a3ae83a5764d54639e"}, + {file = "jedi-0.18.2.tar.gz", hash = "sha256:bae794c30d07f6d910d32a7048af09b5a39ed740918da923c6b780790ebac612"}, +] [package.dependencies] parso = ">=0.8.0,<0.9.0" [package.extras] +docs = ["Jinja2 (==2.11.3)", "MarkupSafe (==1.1.1)", "Pygments (==2.8.1)", "alabaster (==0.7.12)", "babel (==2.9.1)", "chardet (==4.0.0)", "commonmark (==0.8.1)", "docutils (==0.17.1)", "future (==0.18.2)", "idna (==2.10)", "imagesize (==1.2.0)", "mock (==1.0.1)", "packaging (==20.9)", "pyparsing (==2.4.7)", "pytz (==2021.1)", "readthedocs-sphinx-ext (==2.1.4)", "recommonmark (==0.5.0)", "requests (==2.25.1)", "six (==1.15.0)", "snowballstemmer (==2.1.0)", "sphinx (==1.8.5)", "sphinx-rtd-theme (==0.4.3)", "sphinxcontrib-serializinghtml (==1.1.4)", "sphinxcontrib-websupport (==1.2.4)", "urllib3 (==1.26.4)"] qa = ["flake8 (==3.8.3)", "mypy (==0.782)"] -testing = ["Django (<3.1)", "colorama", "docopt", "pytest (<7.0.0)"] +testing = ["Django (<3.1)", "attrs", "colorama", "docopt", "pytest (<7.0.0)"] [[package]] -name = "Jinja2" -version = "2.11.3" +name = "jinja2" +version = "3.1.2" description = "A very fast and expressive template engine." category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] [package.dependencies] -MarkupSafe = ">=0.23" +MarkupSafe = ">=2.0" [package.extras] -i18n = ["Babel (>=0.8)"] +i18n = ["Babel (>=2.7)"] [[package]] name = "jmespath" @@ -641,42 +1749,53 @@ description = "JSON Matching Expressions" category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980"}, + {file = "jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe"}, +] [[package]] name = "jupyter-client" -version = "7.4.5" +version = "8.0.3" description = "Jupyter protocol implementation and client libraries" -category = "main" +category = "dev" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" +files = [ + {file = "jupyter_client-8.0.3-py3-none-any.whl", hash = "sha256:be48ac6bd659cbbddb7a674cf06b3b8afbf53f228253cf58bde604c03bd487b0"}, + {file = "jupyter_client-8.0.3.tar.gz", hash = "sha256:ed65498bea6d876ef9d8da3e0db3dd33c5d129f5b2645f56ae03993782966bd0"}, +] [package.dependencies] -entrypoints = "*" -jupyter-core = ">=4.9.2" -nest-asyncio = ">=1.5.4" +jupyter-core = ">=4.12,<5.0.0 || >=5.1.0" python-dateutil = ">=2.8.2" pyzmq = ">=23.0" tornado = ">=6.2" -traitlets = "*" +traitlets = ">=5.3" [package.extras] -doc = ["ipykernel", "myst-parser", "sphinx (>=1.3.6)", "sphinx-rtd-theme", "sphinxcontrib-github-alt"] -test = ["codecov", "coverage", "ipykernel (>=6.12)", "ipython", "mypy", "pre-commit", "pytest", "pytest-asyncio (>=0.18)", "pytest-cov", "pytest-timeout"] +docs = ["ipykernel", "myst-parser", "pydata-sphinx-theme", "sphinx (>=4)", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"] +test = ["codecov", "coverage", "ipykernel (>=6.14)", "mypy", "paramiko", "pre-commit", "pytest", "pytest-cov", "pytest-jupyter[client] (>=0.4.1)", "pytest-timeout"] [[package]] name = "jupyter-core" -version = "5.0.0" +version = "5.2.0" description = "Jupyter core package. A base package on which Jupyter projects rely." -category = "main" +category = "dev" optional = false python-versions = ">=3.8" +files = [ + {file = "jupyter_core-5.2.0-py3-none-any.whl", hash = "sha256:4bdc2928c37f6917130c667d8b8708f20aee539d8283c6be72aabd2a4b4c83b0"}, + {file = "jupyter_core-5.2.0.tar.gz", hash = "sha256:1407cdb4c79ee467696c04b76633fc1884015fa109323365a6372c8e890cc83f"}, +] [package.dependencies] -platformdirs = "*" +platformdirs = ">=2.5" pywin32 = {version = ">=1.0", markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\""} -traitlets = "*" +traitlets = ">=5.3" [package.extras] +docs = ["myst-parser", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "traitlets"] test = ["ipykernel", "pre-commit", "pytest", "pytest-cov", "pytest-timeout"] [[package]] @@ -686,6 +1805,10 @@ description = "Messaging library for Python." category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "kombu-4.6.11-py2.py3-none-any.whl", hash = "sha256:be48cdffb54a2194d93ad6533d73f69408486483d189fe9f5990ee24255b0e0a"}, + {file = "kombu-4.6.11.tar.gz", hash = "sha256:ca1b45faac8c0b18493d02a8571792f3c40291cf2bcf1f55afed3d8f3aa7ba74"}, +] [package.dependencies] amqp = ">=2.6.0,<2.7" @@ -707,26 +1830,28 @@ yaml = ["PyYAML (>=3.10)"] zookeeper = ["kazoo (>=1.3.1)"] [[package]] -name = "lxml" -version = "4.9.1" -description = "Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API." +name = "makefun" +version = "1.15.1" +description = "Small library to dynamically create python functions." category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, != 3.4.*" - -[package.extras] -cssselect = ["cssselect (>=0.7)"] -html5 = ["html5lib"] -htmlsoup = ["BeautifulSoup4"] -source = ["Cython (>=0.29.7)"] +python-versions = "*" +files = [ + {file = "makefun-1.15.1-py2.py3-none-any.whl", hash = "sha256:a63cfc7b47a539c76d97bd4fdb833c7d0461e759fd1225f580cb4be6200294d4"}, + {file = "makefun-1.15.1.tar.gz", hash = "sha256:40b0f118b6ded0d8d78c78f1eb679b8b6b2462e3c1b3e05fb1b2da8cd46b48a5"}, +] [[package]] -name = "Mako" -version = "1.2.3" +name = "mako" +version = "1.2.4" description = "A super-fast templating language that borrows the best ideas from the existing templating languages." category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "Mako-1.2.4-py3-none-any.whl", hash = "sha256:c97c79c018b9165ac9922ae4f32da095ffd3c4e6872b45eded42926deea46818"}, + {file = "Mako-1.2.4.tar.gz", hash = "sha256:d60a3903dc3bb01a18ad6a89cdbe2e4eadc69c0bc8ef1e3773ba53d44c3f7a34"}, +] [package.dependencies] MarkupSafe = ">=0.9.2" @@ -737,90 +1862,383 @@ lingua = ["lingua"] testing = ["pytest"] [[package]] -name = "MarkupSafe" -version = "2.1.1" +name = "markupsafe" +version = "2.1.2" description = "Safely add untrusted strings to HTML/XML markup." category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:665a36ae6f8f20a4676b53224e33d456a6f5a72657d9c83c2aa00765072f31f7"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:340bea174e9761308703ae988e982005aedf427de816d1afe98147668cc03036"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22152d00bf4a9c7c83960521fc558f55a1adbc0631fbb00a9471e097b19d72e1"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28057e985dace2f478e042eaa15606c7efccb700797660629da387eb289b9323"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca244fa73f50a800cf8c3ebf7fd93149ec37f5cb9596aa8873ae2c1d23498601"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d9d971ec1e79906046aa3ca266de79eac42f1dbf3612a05dc9368125952bd1a1"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7e007132af78ea9df29495dbf7b5824cb71648d7133cf7848a2a5dd00d36f9ff"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7313ce6a199651c4ed9d7e4cfb4aa56fe923b1adf9af3b420ee14e6d9a73df65"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-win32.whl", hash = "sha256:c4a549890a45f57f1ebf99c067a4ad0cb423a05544accaf2b065246827ed9603"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:835fb5e38fd89328e9c81067fd642b3593c33e1e17e2fdbf77f5676abb14a156"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2ec4f2d48ae59bbb9d1f9d7efb9236ab81429a764dedca114f5fdabbc3788013"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:608e7073dfa9e38a85d38474c082d4281f4ce276ac0010224eaba11e929dd53a"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:65608c35bfb8a76763f37036547f7adfd09270fbdbf96608be2bead319728fcd"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2bfb563d0211ce16b63c7cb9395d2c682a23187f54c3d79bfec33e6705473c6"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:da25303d91526aac3672ee6d49a2f3db2d9502a4a60b55519feb1a4c7714e07d"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:9cad97ab29dfc3f0249b483412c85c8ef4766d96cdf9dcf5a1e3caa3f3661cf1"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:085fd3201e7b12809f9e6e9bc1e5c96a368c8523fad5afb02afe3c051ae4afcc"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1bea30e9bf331f3fef67e0a3877b2288593c98a21ccb2cf29b74c581a4eb3af0"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-win32.whl", hash = "sha256:7df70907e00c970c60b9ef2938d894a9381f38e6b9db73c5be35e59d92e06625"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:e55e40ff0cc8cc5c07996915ad367fa47da6b3fc091fdadca7f5403239c5fec3"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a6e40afa7f45939ca356f348c8e23048e02cb109ced1eb8420961b2f40fb373a"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf877ab4ed6e302ec1d04952ca358b381a882fbd9d1b07cccbfd61783561f98a"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63ba06c9941e46fa389d389644e2d8225e0e3e5ebcc4ff1ea8506dce646f8c8a"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f1cd098434e83e656abf198f103a8207a8187c0fc110306691a2e94a78d0abb2"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:55f44b440d491028addb3b88f72207d71eeebfb7b5dbf0643f7c023ae1fba619"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:a6f2fcca746e8d5910e18782f976489939d54a91f9411c32051b4aab2bd7c513"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:0b462104ba25f1ac006fdab8b6a01ebbfbce9ed37fd37fd4acd70c67c973e460"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-win32.whl", hash = "sha256:7668b52e102d0ed87cb082380a7e2e1e78737ddecdde129acadb0eccc5423859"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:6d6607f98fcf17e534162f0709aaad3ab7a96032723d8ac8750ffe17ae5a0666"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a806db027852538d2ad7555b203300173dd1b77ba116de92da9afbc3a3be3eed"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:a4abaec6ca3ad8660690236d11bfe28dfd707778e2442b45addd2f086d6ef094"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f03a532d7dee1bed20bc4884194a16160a2de9ffc6354b3878ec9682bb623c54"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4cf06cdc1dda95223e9d2d3c58d3b178aa5dacb35ee7e3bbac10e4e1faacb419"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:22731d79ed2eb25059ae3df1dfc9cb1546691cc41f4e3130fe6bfbc3ecbbecfa"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f8ffb705ffcf5ddd0e80b65ddf7bed7ee4f5a441ea7d3419e861a12eaf41af58"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:8db032bf0ce9022a8e41a22598eefc802314e81b879ae093f36ce9ddf39ab1ba"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2298c859cfc5463f1b64bd55cb3e602528db6fa0f3cfd568d3605c50678f8f03"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-win32.whl", hash = "sha256:50c42830a633fa0cf9e7d27664637532791bfc31c731a87b202d2d8ac40c3ea2"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:bb06feb762bade6bf3c8b844462274db0c76acc95c52abe8dbed28ae3d44a147"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:99625a92da8229df6d44335e6fcc558a5037dd0a760e11d84be2260e6f37002f"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8bca7e26c1dd751236cfb0c6c72d4ad61d986e9a41bbf76cb445f69488b2a2bd"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40627dcf047dadb22cd25ea7ecfe9cbf3bbbad0482ee5920b582f3809c97654f"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40dfd3fefbef579ee058f139733ac336312663c6706d1163b82b3003fb1925c4"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:090376d812fb6ac5f171e5938e82e7f2d7adc2b629101cec0db8b267815c85e2"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2e7821bffe00aa6bd07a23913b7f4e01328c3d5cc0b40b36c0bd81d362faeb65"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:c0a33bc9f02c2b17c3ea382f91b4db0e6cde90b63b296422a939886a7a80de1c"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:b8526c6d437855442cdd3d87eede9c425c4445ea011ca38d937db299382e6fa3"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-win32.whl", hash = "sha256:137678c63c977754abe9086a3ec011e8fd985ab90631145dfb9294ad09c102a7"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-win_amd64.whl", hash = "sha256:0576fe974b40a400449768941d5d0858cc624e3249dfd1e0c33674e5c7ca7aed"}, + {file = "MarkupSafe-2.1.2.tar.gz", hash = "sha256:abcabc8c2b26036d62d4c746381a6f7cf60aafcc653198ad678306986b09450d"}, +] [[package]] name = "matplotlib-inline" version = "0.1.6" description = "Inline Matplotlib backend for Jupyter" -category = "main" +category = "dev" optional = false python-versions = ">=3.5" +files = [ + {file = "matplotlib-inline-0.1.6.tar.gz", hash = "sha256:f887e5f10ba98e8d2b150ddcf4702c1e5f8b3a20005eb0f74bfdbd360ee6f304"}, + {file = "matplotlib_inline-0.1.6-py3-none-any.whl", hash = "sha256:f1f41aab5328aa5aaea9b16d083b128102f8712542f819fe7e6a420ff581b311"}, +] [package.dependencies] traitlets = "*" [[package]] name = "mccabe" -version = "0.6.1" +version = "0.7.0" description = "McCabe checker, plugin for flake8" category = "dev" optional = false +python-versions = ">=3.6" +files = [ + {file = "mccabe-0.7.0-py2.py3-none-any.whl", hash = "sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e"}, + {file = "mccabe-0.7.0.tar.gz", hash = "sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325"}, +] + +[[package]] +name = "msal" +version = "1.21.0" +description = "The Microsoft Authentication Library (MSAL) for Python library enables your app to access the Microsoft Cloud by supporting authentication of users with Microsoft Azure Active Directory accounts (AAD) and Microsoft Accounts (MSA) using industry standard OAuth2 and OpenID Connect." +category = "main" +optional = false python-versions = "*" +files = [ + {file = "msal-1.21.0-py2.py3-none-any.whl", hash = "sha256:e8444617c1eccdff7bb73f5d4f94036002accea4a2c05f8f39c9efb5bd2b0c6a"}, + {file = "msal-1.21.0.tar.gz", hash = "sha256:96b5c867830fd116e5f7d0ec8ef1b238b4cda4d1aea86d8fecf518260e136fbf"}, +] + +[package.dependencies] +cryptography = ">=0.6,<41" +PyJWT = {version = ">=1.0.0,<3", extras = ["crypto"]} +requests = ">=2.0.0,<3" + +[package.extras] +broker = ["pymsalruntime (>=0.13.2,<0.14)"] [[package]] -name = "more-itertools" -version = "9.0.0" -description = "More routines for operating on iterables, beyond itertools" +name = "msal-extensions" +version = "1.0.0" +description = "Microsoft Authentication Library extensions (MSAL EX) provides a persistence API that can save your data on disk, encrypted on Windows, macOS and Linux. Concurrent data access will be coordinated by a file lock mechanism." +category = "main" +optional = false +python-versions = "*" +files = [ + {file = "msal-extensions-1.0.0.tar.gz", hash = "sha256:c676aba56b0cce3783de1b5c5ecfe828db998167875126ca4b47dc6436451354"}, + {file = "msal_extensions-1.0.0-py2.py3-none-any.whl", hash = "sha256:91e3db9620b822d0ed2b4d1850056a0f133cba04455e62f11612e40f5502f2ee"}, +] + +[package.dependencies] +msal = ">=0.4.1,<2.0.0" +portalocker = [ + {version = ">=1.0,<3", markers = "python_version >= \"3.5\" and platform_system != \"Windows\""}, + {version = ">=1.6,<3", markers = "python_version >= \"3.5\" and platform_system == \"Windows\""}, +] + +[[package]] +name = "multidict" +version = "6.0.4" +description = "multidict implementation" category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "multidict-6.0.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b1a97283e0c85772d613878028fec909f003993e1007eafa715b24b377cb9b8"}, + {file = "multidict-6.0.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:eeb6dcc05e911516ae3d1f207d4b0520d07f54484c49dfc294d6e7d63b734171"}, + {file = "multidict-6.0.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d6d635d5209b82a3492508cf5b365f3446afb65ae7ebd755e70e18f287b0adf7"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c048099e4c9e9d615545e2001d3d8a4380bd403e1a0578734e0d31703d1b0c0b"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea20853c6dbbb53ed34cb4d080382169b6f4554d394015f1bef35e881bf83547"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:16d232d4e5396c2efbbf4f6d4df89bfa905eb0d4dc5b3549d872ab898451f569"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:36c63aaa167f6c6b04ef2c85704e93af16c11d20de1d133e39de6a0e84582a93"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:64bdf1086b6043bf519869678f5f2757f473dee970d7abf6da91ec00acb9cb98"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:43644e38f42e3af682690876cff722d301ac585c5b9e1eacc013b7a3f7b696a0"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7582a1d1030e15422262de9f58711774e02fa80df0d1578995c76214f6954988"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:ddff9c4e225a63a5afab9dd15590432c22e8057e1a9a13d28ed128ecf047bbdc"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:ee2a1ece51b9b9e7752e742cfb661d2a29e7bcdba2d27e66e28a99f1890e4fa0"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a2e4369eb3d47d2034032a26c7a80fcb21a2cb22e1173d761a162f11e562caa5"}, + {file = "multidict-6.0.4-cp310-cp310-win32.whl", hash = "sha256:574b7eae1ab267e5f8285f0fe881f17efe4b98c39a40858247720935b893bba8"}, + {file = "multidict-6.0.4-cp310-cp310-win_amd64.whl", hash = "sha256:4dcbb0906e38440fa3e325df2359ac6cb043df8e58c965bb45f4e406ecb162cc"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0dfad7a5a1e39c53ed00d2dd0c2e36aed4650936dc18fd9a1826a5ae1cad6f03"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:64da238a09d6039e3bd39bb3aee9c21a5e34f28bfa5aa22518581f910ff94af3"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ff959bee35038c4624250473988b24f846cbeb2c6639de3602c073f10410ceba"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:01a3a55bd90018c9c080fbb0b9f4891db37d148a0a18722b42f94694f8b6d4c9"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c5cb09abb18c1ea940fb99360ea0396f34d46566f157122c92dfa069d3e0e982"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:666daae833559deb2d609afa4490b85830ab0dfca811a98b70a205621a6109fe"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11bdf3f5e1518b24530b8241529d2050014c884cf18b6fc69c0c2b30ca248710"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d18748f2d30f94f498e852c67d61261c643b349b9d2a581131725595c45ec6c"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:458f37be2d9e4c95e2d8866a851663cbc76e865b78395090786f6cd9b3bbf4f4"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:b1a2eeedcead3a41694130495593a559a668f382eee0727352b9a41e1c45759a"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7d6ae9d593ef8641544d6263c7fa6408cc90370c8cb2bbb65f8d43e5b0351d9c"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5979b5632c3e3534e42ca6ff856bb24b2e3071b37861c2c727ce220d80eee9ed"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:dcfe792765fab89c365123c81046ad4103fcabbc4f56d1c1997e6715e8015461"}, + {file = "multidict-6.0.4-cp311-cp311-win32.whl", hash = "sha256:3601a3cece3819534b11d4efc1eb76047488fddd0c85a3948099d5da4d504636"}, + {file = "multidict-6.0.4-cp311-cp311-win_amd64.whl", hash = "sha256:81a4f0b34bd92df3da93315c6a59034df95866014ac08535fc819f043bfd51f0"}, + {file = "multidict-6.0.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:67040058f37a2a51ed8ea8f6b0e6ee5bd78ca67f169ce6122f3e2ec80dfe9b78"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:853888594621e6604c978ce2a0444a1e6e70c8d253ab65ba11657659dcc9100f"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:39ff62e7d0f26c248b15e364517a72932a611a9b75f35b45be078d81bdb86603"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:af048912e045a2dc732847d33821a9d84ba553f5c5f028adbd364dd4765092ac"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1e8b901e607795ec06c9e42530788c45ac21ef3aaa11dbd0c69de543bfb79a9"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62501642008a8b9871ddfccbf83e4222cf8ac0d5aeedf73da36153ef2ec222d2"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:99b76c052e9f1bc0721f7541e5e8c05db3941eb9ebe7b8553c625ef88d6eefde"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:509eac6cf09c794aa27bcacfd4d62c885cce62bef7b2c3e8b2e49d365b5003fe"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:21a12c4eb6ddc9952c415f24eef97e3e55ba3af61f67c7bc388dcdec1404a067"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:5cad9430ab3e2e4fa4a2ef4450f548768400a2ac635841bc2a56a2052cdbeb87"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ab55edc2e84460694295f401215f4a58597f8f7c9466faec545093045476327d"}, + {file = "multidict-6.0.4-cp37-cp37m-win32.whl", hash = "sha256:5a4dcf02b908c3b8b17a45fb0f15b695bf117a67b76b7ad18b73cf8e92608775"}, + {file = "multidict-6.0.4-cp37-cp37m-win_amd64.whl", hash = "sha256:6ed5f161328b7df384d71b07317f4d8656434e34591f20552c7bcef27b0ab88e"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5fc1b16f586f049820c5c5b17bb4ee7583092fa0d1c4e28b5239181ff9532e0c"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1502e24330eb681bdaa3eb70d6358e818e8e8f908a22a1851dfd4e15bc2f8161"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b692f419760c0e65d060959df05f2a531945af31fda0c8a3b3195d4efd06de11"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45e1ecb0379bfaab5eef059f50115b54571acfbe422a14f668fc8c27ba410e7e"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddd3915998d93fbcd2566ddf9cf62cdb35c9e093075f862935573d265cf8f65d"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:59d43b61c59d82f2effb39a93c48b845efe23a3852d201ed2d24ba830d0b4cf2"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc8e1d0c705233c5dd0c5e6460fbad7827d5d36f310a0fadfd45cc3029762258"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6aa0418fcc838522256761b3415822626f866758ee0bc6632c9486b179d0b52"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6748717bb10339c4760c1e63da040f5f29f5ed6e59d76daee30305894069a660"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:4d1a3d7ef5e96b1c9e92f973e43aa5e5b96c659c9bc3124acbbd81b0b9c8a951"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4372381634485bec7e46718edc71528024fcdc6f835baefe517b34a33c731d60"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:fc35cb4676846ef752816d5be2193a1e8367b4c1397b74a565a9d0389c433a1d"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:4b9d9e4e2b37daddb5c23ea33a3417901fa7c7b3dee2d855f63ee67a0b21e5b1"}, + {file = "multidict-6.0.4-cp38-cp38-win32.whl", hash = "sha256:e41b7e2b59679edfa309e8db64fdf22399eec4b0b24694e1b2104fb789207779"}, + {file = "multidict-6.0.4-cp38-cp38-win_amd64.whl", hash = "sha256:d6c254ba6e45d8e72739281ebc46ea5eb5f101234f3ce171f0e9f5cc86991480"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:16ab77bbeb596e14212e7bab8429f24c1579234a3a462105cda4a66904998664"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bc779e9e6f7fda81b3f9aa58e3a6091d49ad528b11ed19f6621408806204ad35"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4ceef517eca3e03c1cceb22030a3e39cb399ac86bff4e426d4fc6ae49052cc60"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:281af09f488903fde97923c7744bb001a9b23b039a909460d0f14edc7bf59706"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52f2dffc8acaba9a2f27174c41c9e57f60b907bb9f096b36b1a1f3be71c6284d"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b41156839806aecb3641f3208c0dafd3ac7775b9c4c422d82ee2a45c34ba81ca"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5e3fc56f88cc98ef8139255cf8cd63eb2c586531e43310ff859d6bb3a6b51f1"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8316a77808c501004802f9beebde51c9f857054a0c871bd6da8280e718444449"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f70b98cd94886b49d91170ef23ec5c0e8ebb6f242d734ed7ed677b24d50c82cf"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bf6774e60d67a9efe02b3616fee22441d86fab4c6d335f9d2051d19d90a40063"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:e69924bfcdda39b722ef4d9aa762b2dd38e4632b3641b1d9a57ca9cd18f2f83a"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:6b181d8c23da913d4ff585afd1155a0e1194c0b50c54fcfe286f70cdaf2b7176"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:52509b5be062d9eafc8170e53026fbc54cf3b32759a23d07fd935fb04fc22d95"}, + {file = "multidict-6.0.4-cp39-cp39-win32.whl", hash = "sha256:27c523fbfbdfd19c6867af7346332b62b586eed663887392cff78d614f9ec313"}, + {file = "multidict-6.0.4-cp39-cp39-win_amd64.whl", hash = "sha256:33029f5734336aa0d4c0384525da0387ef89148dc7191aae00ca5fb23d7aafc2"}, + {file = "multidict-6.0.4.tar.gz", hash = "sha256:3666906492efb76453c0e7b97f2cf459b0682e7402c0489a95484965dbc1da49"}, +] [[package]] name = "mypy" -version = "0.770" +version = "0.991" description = "Optional static typing for Python" category = "dev" optional = false -python-versions = ">=3.5" +python-versions = ">=3.7" +files = [ + {file = "mypy-0.991-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7d17e0a9707d0772f4a7b878f04b4fd11f6f5bcb9b3813975a9b13c9332153ab"}, + {file = "mypy-0.991-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0714258640194d75677e86c786e80ccf294972cc76885d3ebbb560f11db0003d"}, + {file = "mypy-0.991-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0c8f3be99e8a8bd403caa8c03be619544bc2c77a7093685dcf308c6b109426c6"}, + {file = "mypy-0.991-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc9ec663ed6c8f15f4ae9d3c04c989b744436c16d26580eaa760ae9dd5d662eb"}, + {file = "mypy-0.991-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4307270436fd7694b41f913eb09210faff27ea4979ecbcd849e57d2da2f65305"}, + {file = "mypy-0.991-cp310-cp310-win_amd64.whl", hash = "sha256:901c2c269c616e6cb0998b33d4adbb4a6af0ac4ce5cd078afd7bc95830e62c1c"}, + {file = "mypy-0.991-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d13674f3fb73805ba0c45eb6c0c3053d218aa1f7abead6e446d474529aafc372"}, + {file = "mypy-0.991-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1c8cd4fb70e8584ca1ed5805cbc7c017a3d1a29fb450621089ffed3e99d1857f"}, + {file = "mypy-0.991-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:209ee89fbb0deed518605edddd234af80506aec932ad28d73c08f1400ef80a33"}, + {file = "mypy-0.991-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:37bd02ebf9d10e05b00d71302d2c2e6ca333e6c2a8584a98c00e038db8121f05"}, + {file = "mypy-0.991-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:26efb2fcc6b67e4d5a55561f39176821d2adf88f2745ddc72751b7890f3194ad"}, + {file = "mypy-0.991-cp311-cp311-win_amd64.whl", hash = "sha256:3a700330b567114b673cf8ee7388e949f843b356a73b5ab22dd7cff4742a5297"}, + {file = "mypy-0.991-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:1f7d1a520373e2272b10796c3ff721ea1a0712288cafaa95931e66aa15798813"}, + {file = "mypy-0.991-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:641411733b127c3e0dab94c45af15fea99e4468f99ac88b39efb1ad677da5711"}, + {file = "mypy-0.991-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:3d80e36b7d7a9259b740be6d8d906221789b0d836201af4234093cae89ced0cd"}, + {file = "mypy-0.991-cp37-cp37m-win_amd64.whl", hash = "sha256:e62ebaad93be3ad1a828a11e90f0e76f15449371ffeecca4a0a0b9adc99abcef"}, + {file = "mypy-0.991-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:b86ce2c1866a748c0f6faca5232059f881cda6dda2a893b9a8373353cfe3715a"}, + {file = "mypy-0.991-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ac6e503823143464538efda0e8e356d871557ef60ccd38f8824a4257acc18d93"}, + {file = "mypy-0.991-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:0cca5adf694af539aeaa6ac633a7afe9bbd760df9d31be55ab780b77ab5ae8bf"}, + {file = "mypy-0.991-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a12c56bf73cdab116df96e4ff39610b92a348cc99a1307e1da3c3768bbb5b135"}, + {file = "mypy-0.991-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:652b651d42f155033a1967739788c436491b577b6a44e4c39fb340d0ee7f0d70"}, + {file = "mypy-0.991-cp38-cp38-win_amd64.whl", hash = "sha256:4175593dc25d9da12f7de8de873a33f9b2b8bdb4e827a7cae952e5b1a342e243"}, + {file = "mypy-0.991-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:98e781cd35c0acf33eb0295e8b9c55cdbef64fcb35f6d3aa2186f289bed6e80d"}, + {file = "mypy-0.991-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6d7464bac72a85cb3491c7e92b5b62f3dcccb8af26826257760a552a5e244aa5"}, + {file = "mypy-0.991-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c9166b3f81a10cdf9b49f2d594b21b31adadb3d5e9db9b834866c3258b695be3"}, + {file = "mypy-0.991-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b8472f736a5bfb159a5e36740847808f6f5b659960115ff29c7cecec1741c648"}, + {file = "mypy-0.991-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5e80e758243b97b618cdf22004beb09e8a2de1af481382e4d84bc52152d1c476"}, + {file = "mypy-0.991-cp39-cp39-win_amd64.whl", hash = "sha256:74e259b5c19f70d35fcc1ad3d56499065c601dfe94ff67ae48b85596b9ec1461"}, + {file = "mypy-0.991-py3-none-any.whl", hash = "sha256:de32edc9b0a7e67c2775e574cb061a537660e51210fbf6006b0b36ea695ae9bb"}, + {file = "mypy-0.991.tar.gz", hash = "sha256:3c0165ba8f354a6d9881809ef29f1a9318a236a6d81c690094c5df32107bde06"}, +] [package.dependencies] -mypy-extensions = ">=0.4.3,<0.5.0" -typed-ast = ">=1.4.0,<1.5.0" -typing-extensions = ">=3.7.4" +mypy-extensions = ">=0.4.3" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=3.10" [package.extras] dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +python2 = ["typed-ast (>=1.4.0,<2)"] +reports = ["lxml"] [[package]] name = "mypy-extensions" -version = "0.4.3" +version = "0.4.4" description = "Experimental type system extensions for programs checked with the mypy typechecker." category = "dev" optional = false -python-versions = "*" +python-versions = ">=2.7" +files = [ + {file = "mypy_extensions-0.4.4.tar.gz", hash = "sha256:c8b707883a96efe9b4bb3aaf0dcc07e7e217d7d8368eec4db4049ee9e142f4fd"}, +] [[package]] -name = "nest-asyncio" -version = "1.5.6" -description = "Patch asyncio to allow nested event loops" +name = "neo4j" +version = "4.4.10" +description = "Neo4j Bolt driver for Python" category = "main" optional = false -python-versions = ">=3.5" +python-versions = ">=3.6" +files = [ + {file = "neo4j-4.4.10.tar.gz", hash = "sha256:26db4f9c8f628e53bda62f15cf2a7bfac6e2073e962da761c7164b6b122fca44"}, +] + +[package.dependencies] +pytz = "*" [[package]] -name = "packaging" -version = "21.3" -description = "Core utilities for Python packages" +name = "nest-asyncio" +version = "1.5.6" +description = "Patch asyncio to allow nested event loops" +category = "dev" +optional = false +python-versions = ">=3.5" +files = [ + {file = "nest_asyncio-1.5.6-py3-none-any.whl", hash = "sha256:b9a953fb40dceaa587d109609098db21900182b16440652454a146cffb06e8b8"}, + {file = "nest_asyncio-1.5.6.tar.gz", hash = "sha256:d267cc1ff794403f7df692964d1d2a3fa9418ffea2a3f6859a439ff482fef290"}, +] + +[[package]] +name = "networkx" +version = "2.8.8" +description = "Python package for creating and manipulating graphs and networks" category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" +files = [ + {file = "networkx-2.8.8-py3-none-any.whl", hash = "sha256:e435dfa75b1d7195c7b8378c3859f0445cd88c6b0375c181ed66823a9ceb7524"}, + {file = "networkx-2.8.8.tar.gz", hash = "sha256:230d388117af870fce5647a3c52401fcf753e94720e6ea6b4197a5355648885e"}, +] -[package.dependencies] -pyparsing = ">=2.0.2,<3.0.5 || >3.0.5" +[package.extras] +default = ["matplotlib (>=3.4)", "numpy (>=1.19)", "pandas (>=1.3)", "scipy (>=1.8)"] +developer = ["mypy (>=0.982)", "pre-commit (>=2.20)"] +doc = ["nb2plots (>=0.6)", "numpydoc (>=1.5)", "pillow (>=9.2)", "pydata-sphinx-theme (>=0.11)", "sphinx (>=5.2)", "sphinx-gallery (>=0.11)", "texext (>=0.6.6)"] +extra = ["lxml (>=4.6)", "pydot (>=1.4.2)", "pygraphviz (>=1.9)", "sympy (>=1.10)"] +test = ["codecov (>=2.1)", "pytest (>=7.2)", "pytest-cov (>=4.0)"] + +[[package]] +name = "numpy" +version = "1.24.2" +description = "Fundamental package for array computing in Python" +category = "main" +optional = false +python-versions = ">=3.8" +files = [ + {file = "numpy-1.24.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:eef70b4fc1e872ebddc38cddacc87c19a3709c0e3e5d20bf3954c147b1dd941d"}, + {file = "numpy-1.24.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e8d2859428712785e8a8b7d2b3ef0a1d1565892367b32f915c4a4df44d0e64f5"}, + {file = "numpy-1.24.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6524630f71631be2dabe0c541e7675db82651eb998496bbe16bc4f77f0772253"}, + {file = "numpy-1.24.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a51725a815a6188c662fb66fb32077709a9ca38053f0274640293a14fdd22978"}, + {file = "numpy-1.24.2-cp310-cp310-win32.whl", hash = "sha256:2620e8592136e073bd12ee4536149380695fbe9ebeae845b81237f986479ffc9"}, + {file = "numpy-1.24.2-cp310-cp310-win_amd64.whl", hash = "sha256:97cf27e51fa078078c649a51d7ade3c92d9e709ba2bfb97493007103c741f1d0"}, + {file = "numpy-1.24.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7de8fdde0003f4294655aa5d5f0a89c26b9f22c0a58790c38fae1ed392d44a5a"}, + {file = "numpy-1.24.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4173bde9fa2a005c2c6e2ea8ac1618e2ed2c1c6ec8a7657237854d42094123a0"}, + {file = "numpy-1.24.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4cecaed30dc14123020f77b03601559fff3e6cd0c048f8b5289f4eeabb0eb281"}, + {file = "numpy-1.24.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a23f8440561a633204a67fb44617ce2a299beecf3295f0d13c495518908e910"}, + {file = "numpy-1.24.2-cp311-cp311-win32.whl", hash = "sha256:e428c4fbfa085f947b536706a2fc349245d7baa8334f0c5723c56a10595f9b95"}, + {file = "numpy-1.24.2-cp311-cp311-win_amd64.whl", hash = "sha256:557d42778a6869c2162deb40ad82612645e21d79e11c1dc62c6e82a2220ffb04"}, + {file = "numpy-1.24.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d0a2db9d20117bf523dde15858398e7c0858aadca7c0f088ac0d6edd360e9ad2"}, + {file = "numpy-1.24.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c72a6b2f4af1adfe193f7beb91ddf708ff867a3f977ef2ec53c0ffb8283ab9f5"}, + {file = "numpy-1.24.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c29e6bd0ec49a44d7690ecb623a8eac5ab8a923bce0bea6293953992edf3a76a"}, + {file = "numpy-1.24.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2eabd64ddb96a1239791da78fa5f4e1693ae2dadc82a76bc76a14cbb2b966e96"}, + {file = "numpy-1.24.2-cp38-cp38-win32.whl", hash = "sha256:e3ab5d32784e843fc0dd3ab6dcafc67ef806e6b6828dc6af2f689be0eb4d781d"}, + {file = "numpy-1.24.2-cp38-cp38-win_amd64.whl", hash = "sha256:76807b4063f0002c8532cfeac47a3068a69561e9c8715efdad3c642eb27c0756"}, + {file = "numpy-1.24.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4199e7cfc307a778f72d293372736223e39ec9ac096ff0a2e64853b866a8e18a"}, + {file = "numpy-1.24.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:adbdce121896fd3a17a77ab0b0b5eedf05a9834a18699db6829a64e1dfccca7f"}, + {file = "numpy-1.24.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:889b2cc88b837d86eda1b17008ebeb679d82875022200c6e8e4ce6cf549b7acb"}, + {file = "numpy-1.24.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f64bb98ac59b3ea3bf74b02f13836eb2e24e48e0ab0145bbda646295769bd780"}, + {file = "numpy-1.24.2-cp39-cp39-win32.whl", hash = "sha256:63e45511ee4d9d976637d11e6c9864eae50e12dc9598f531c035265991910468"}, + {file = "numpy-1.24.2-cp39-cp39-win_amd64.whl", hash = "sha256:a77d3e1163a7770164404607b7ba3967fb49b24782a6ef85d9b5f54126cc39e5"}, + {file = "numpy-1.24.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:92011118955724465fb6853def593cf397b4a1367495e0b59a7e69d40c4eb71d"}, + {file = "numpy-1.24.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9006288bcf4895917d02583cf3411f98631275bc67cce355a7f39f8c14338fa"}, + {file = "numpy-1.24.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:150947adbdfeceec4e5926d956a06865c1c690f2fd902efede4ca6fe2e657c3f"}, + {file = "numpy-1.24.2.tar.gz", hash = "sha256:003a9f530e880cb2cd177cba1af7220b9aa42def9c4afc2a2fc3ee6be7eb2b22"}, +] + +[[package]] +name = "packaging" +version = "23.0" +description = "Core utilities for Python packages" +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.0-py3-none-any.whl", hash = "sha256:714ac14496c3e68c99c29b00845f7a2b85f3bb6f1078fd9f72fd20f0570002b2"}, + {file = "packaging-23.0.tar.gz", hash = "sha256:b6ad297f8907de0fa2fe1ccbd26fdaf387f5f47c7275fedf8cce89f99446cf97"}, +] [[package]] name = "parso" version = "0.8.3" description = "A Python Parser" -category = "main" +category = "dev" optional = false python-versions = ">=3.6" +files = [ + {file = "parso-0.8.3-py2.py3-none-any.whl", hash = "sha256:c001d4636cd3aecdaf33cbb40aebb59b094be2a74c556778ef5576c175e19e75"}, + {file = "parso-0.8.3.tar.gz", hash = "sha256:8c07be290bb59f03588915921e29e8a50002acaf2cdc5fa0e0114f91709fafa0"}, +] [package.extras] qa = ["flake8 (==3.8.3)", "mypy (==0.782)"] @@ -833,6 +2251,10 @@ description = "comprehensive password hashing framework supporting over 30 schem category = "main" optional = false python-versions = "*" +files = [ + {file = "passlib-1.7.4-py2.py3-none-any.whl", hash = "sha256:aa6bca462b8d8bda89c70b382f0c298a20b5560af6cbfa2dce410c0a2fb669f1"}, + {file = "passlib-1.7.4.tar.gz", hash = "sha256:defd50f72b65c5402ab2c573830a6978e5f202ad0d984793c8dde2c4152ebe04"}, +] [package.dependencies] bcrypt = {version = ">=3.1.0", optional = true, markers = "extra == \"bcrypt\""} @@ -840,24 +2262,32 @@ bcrypt = {version = ">=3.1.0", optional = true, markers = "extra == \"bcrypt\""} [package.extras] argon2 = ["argon2-cffi (>=18.2.0)"] bcrypt = ["bcrypt (>=3.1.0)"] -build_docs = ["cloud-sptheme (>=1.10.1)", "sphinx (>=1.6)", "sphinxcontrib-fulltoc (>=1.2.0)"] +build-docs = ["cloud-sptheme (>=1.10.1)", "sphinx (>=1.6)", "sphinxcontrib-fulltoc (>=1.2.0)"] totp = ["cryptography"] [[package]] name = "pathspec" -version = "0.10.2" +version = "0.11.0" description = "Utility library for gitignore style pattern matching of file paths." category = "dev" optional = false python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.0-py3-none-any.whl", hash = "sha256:3a66eb970cbac598f9e5ccb5b2cf58930cd8e3ed86d393d541eaf2d8b1705229"}, + {file = "pathspec-0.11.0.tar.gz", hash = "sha256:64d338d4e0914e91c1792321e6907b5a593f1ab1851de7fc269557a21b30ebbc"}, +] [[package]] name = "pexpect" version = "4.8.0" description = "Pexpect allows easy control of interactive console applications." -category = "main" +category = "dev" optional = false python-versions = "*" +files = [ + {file = "pexpect-4.8.0-py2.py3-none-any.whl", hash = "sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937"}, + {file = "pexpect-4.8.0.tar.gz", hash = "sha256:fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c"}, +] [package.dependencies] ptyprocess = ">=0.5" @@ -866,59 +2296,77 @@ ptyprocess = ">=0.5" name = "pickleshare" version = "0.7.5" description = "Tiny 'shelve'-like database with concurrency support" -category = "main" +category = "dev" optional = false python-versions = "*" +files = [ + {file = "pickleshare-0.7.5-py2.py3-none-any.whl", hash = "sha256:9649af414d74d4df115d5d718f82acb59c9d418196b7b4290ed47a12ce62df56"}, + {file = "pickleshare-0.7.5.tar.gz", hash = "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca"}, +] [[package]] name = "platformdirs" -version = "2.5.4" +version = "3.1.0" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." -category = "main" +category = "dev" optional = false python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.1.0-py3-none-any.whl", hash = "sha256:13b08a53ed71021350c9e300d4ea8668438fb0046ab3937ac9a29913a1a1350a"}, + {file = "platformdirs-3.1.0.tar.gz", hash = "sha256:accc3665857288317f32c7bebb5a8e482ba717b474f3fc1d18ca7f9214be0cef"}, +] [package.extras] -docs = ["furo (>=2022.9.29)", "proselint (>=0.13)", "sphinx (>=5.3)", "sphinx-autodoc-typehints (>=1.19.4)"] -test = ["appdirs (==1.4.4)", "pytest (>=7.2)", "pytest-cov (>=4)", "pytest-mock (>=3.10)"] +docs = ["furo (>=2022.12.7)", "proselint (>=0.13)", "sphinx (>=6.1.3)", "sphinx-autodoc-typehints (>=1.22,!=1.23.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.2.2)", "pytest (>=7.2.1)", "pytest-cov (>=4)", "pytest-mock (>=3.10)"] [[package]] name = "pluggy" -version = "0.13.1" +version = "1.0.0" description = "plugin and hook calling mechanisms for python" -category = "main" +category = "dev" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +python-versions = ">=3.6" +files = [ + {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"}, + {file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"}, +] [package.extras] dev = ["pre-commit", "tox"] +testing = ["pytest", "pytest-benchmark"] [[package]] -name = "premailer" -version = "3.10.0" -description = "Turns CSS blocks into style attributes" +name = "portalocker" +version = "2.7.0" +description = "Wraps the portalocker recipe for easy usage" category = "main" optional = false -python-versions = "*" +python-versions = ">=3.5" +files = [ + {file = "portalocker-2.7.0-py2.py3-none-any.whl", hash = "sha256:a07c5b4f3985c3cf4798369631fb7011adb498e2a46d8440efc75a8f29a0f983"}, + {file = "portalocker-2.7.0.tar.gz", hash = "sha256:032e81d534a88ec1736d03f780ba073f047a06c478b06e2937486f334e955c51"}, +] [package.dependencies] -cachetools = "*" -cssselect = "*" -cssutils = "*" -lxml = "*" -requests = "*" +pywin32 = {version = ">=226", markers = "platform_system == \"Windows\""} [package.extras] -dev = ["black", "flake8", "therapist", "tox", "twine", "wheel"] -test = ["mock", "nose"] +docs = ["sphinx (>=1.7.1)"] +redis = ["redis"] +tests = ["pytest (>=5.4.1)", "pytest-cov (>=2.8.1)", "pytest-mypy (>=0.8.0)", "pytest-timeout (>=2.1.0)", "redis", "sphinx (>=6.0.0)"] [[package]] name = "prompt-toolkit" -version = "3.0.32" +version = "3.0.38" description = "Library for building powerful interactive command lines in Python" -category = "main" +category = "dev" optional = false -python-versions = ">=3.6.2" +python-versions = ">=3.7.0" +files = [ + {file = "prompt_toolkit-3.0.38-py3-none-any.whl", hash = "sha256:45ea77a2f7c60418850331366c81cf6b5b9cf4c7fd34616f733c5427e6abbb1f"}, + {file = "prompt_toolkit-3.0.38.tar.gz", hash = "sha256:23ac5d50538a9a38c8bde05fecb47d0b403ecd0662857a86f886f798563d5b9b"}, +] [package.dependencies] wcwidth = "*" @@ -930,6 +2378,22 @@ description = "Cross-platform lib for process and system monitoring in Python." category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "psutil-5.9.4-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:c1ca331af862803a42677c120aff8a814a804e09832f166f226bfd22b56feee8"}, + {file = "psutil-5.9.4-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:68908971daf802203f3d37e78d3f8831b6d1014864d7a85937941bb35f09aefe"}, + {file = "psutil-5.9.4-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:3ff89f9b835100a825b14c2808a106b6fdcc4b15483141482a12c725e7f78549"}, + {file = "psutil-5.9.4-cp27-cp27m-win32.whl", hash = "sha256:852dd5d9f8a47169fe62fd4a971aa07859476c2ba22c2254d4a1baa4e10b95ad"}, + {file = "psutil-5.9.4-cp27-cp27m-win_amd64.whl", hash = "sha256:9120cd39dca5c5e1c54b59a41d205023d436799b1c8c4d3ff71af18535728e94"}, + {file = "psutil-5.9.4-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:6b92c532979bafc2df23ddc785ed116fced1f492ad90a6830cf24f4d1ea27d24"}, + {file = "psutil-5.9.4-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:efeae04f9516907be44904cc7ce08defb6b665128992a56957abc9b61dca94b7"}, + {file = "psutil-5.9.4-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:54d5b184728298f2ca8567bf83c422b706200bcbbfafdc06718264f9393cfeb7"}, + {file = "psutil-5.9.4-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:16653106f3b59386ffe10e0bad3bb6299e169d5327d3f187614b1cb8f24cf2e1"}, + {file = "psutil-5.9.4-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:54c0d3d8e0078b7666984e11b12b88af2db11d11249a8ac8920dd5ef68a66e08"}, + {file = "psutil-5.9.4-cp36-abi3-win32.whl", hash = "sha256:149555f59a69b33f056ba1c4eb22bb7bf24332ce631c44a319cec09f876aaeff"}, + {file = "psutil-5.9.4-cp36-abi3-win_amd64.whl", hash = "sha256:fd8522436a6ada7b4aad6638662966de0d61d241cb821239b2ae7013d41a43d4"}, + {file = "psutil-5.9.4-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:6001c809253a29599bc0dfd5179d9f8a5779f9dffea1da0f13c53ee568115e1e"}, + {file = "psutil-5.9.4.tar.gz", hash = "sha256:3d7f9739eb435d4b1338944abe23f49584bde5395f27487d2ee25ad9a8774a62"}, +] [package.extras] test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"] @@ -941,33 +2405,145 @@ description = "psycopg2 - Python-PostgreSQL Database Adapter" category = "main" optional = false python-versions = ">=3.6" +files = [ + {file = "psycopg2-binary-2.9.5.tar.gz", hash = "sha256:33e632d0885b95a8b97165899006c40e9ecdc634a529dca7b991eb7de4ece41c"}, + {file = "psycopg2_binary-2.9.5-cp310-cp310-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:0775d6252ccb22b15da3b5d7adbbf8cfe284916b14b6dc0ff503a23edb01ee85"}, + {file = "psycopg2_binary-2.9.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2ec46ed947801652c9643e0b1dc334cfb2781232e375ba97312c2fc256597632"}, + {file = "psycopg2_binary-2.9.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3520d7af1ebc838cc6084a3281145d5cd5bdd43fdef139e6db5af01b92596cb7"}, + {file = "psycopg2_binary-2.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5cbc554ba47ecca8cd3396ddaca85e1ecfe3e48dd57dc5e415e59551affe568e"}, + {file = "psycopg2_binary-2.9.5-cp310-cp310-manylinux_2_24_aarch64.whl", hash = "sha256:5d28ecdf191db558d0c07d0f16524ee9d67896edf2b7990eea800abeb23ebd61"}, + {file = "psycopg2_binary-2.9.5-cp310-cp310-manylinux_2_24_ppc64le.whl", hash = "sha256:b9c33d4aef08dfecbd1736ceab8b7b3c4358bf10a0121483e5cd60d3d308cc64"}, + {file = "psycopg2_binary-2.9.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:05b3d479425e047c848b9782cd7aac9c6727ce23181eb9647baf64ffdfc3da41"}, + {file = "psycopg2_binary-2.9.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:1e491e6489a6cb1d079df8eaa15957c277fdedb102b6a68cfbf40c4994412fd0"}, + {file = "psycopg2_binary-2.9.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:9e32cedc389bcb76d9f24ea8a012b3cb8385ee362ea437e1d012ffaed106c17d"}, + {file = "psycopg2_binary-2.9.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:46850a640df62ae940e34a163f72e26aca1f88e2da79148e1862faaac985c302"}, + {file = "psycopg2_binary-2.9.5-cp310-cp310-win32.whl", hash = "sha256:3d790f84201c3698d1bfb404c917f36e40531577a6dda02e45ba29b64d539867"}, + {file = "psycopg2_binary-2.9.5-cp310-cp310-win_amd64.whl", hash = "sha256:1764546ffeaed4f9428707be61d68972eb5ede81239b46a45843e0071104d0dd"}, + {file = "psycopg2_binary-2.9.5-cp311-cp311-macosx_10_9_universal2.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:426c2ae999135d64e6a18849a7d1ad0e1bd007277e4a8f4752eaa40a96b550ff"}, + {file = "psycopg2_binary-2.9.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7cf1d44e710ca3a9ce952bda2855830fe9f9017ed6259e01fcd71ea6287565f5"}, + {file = "psycopg2_binary-2.9.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:024030b13bdcbd53d8a93891a2cf07719715724fc9fee40243f3bd78b4264b8f"}, + {file = "psycopg2_binary-2.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bcda1c84a1c533c528356da5490d464a139b6e84eb77cc0b432e38c5c6dd7882"}, + {file = "psycopg2_binary-2.9.5-cp311-cp311-manylinux_2_24_aarch64.whl", hash = "sha256:2ef892cabdccefe577088a79580301f09f2a713eb239f4f9f62b2b29cafb0577"}, + {file = "psycopg2_binary-2.9.5-cp311-cp311-manylinux_2_24_ppc64le.whl", hash = "sha256:af0516e1711995cb08dc19bbd05bec7dbdebf4185f68870595156718d237df3e"}, + {file = "psycopg2_binary-2.9.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e72c91bda9880f097c8aa3601a2c0de6c708763ba8128006151f496ca9065935"}, + {file = "psycopg2_binary-2.9.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:e67b3c26e9b6d37b370c83aa790bbc121775c57bfb096c2e77eacca25fd0233b"}, + {file = "psycopg2_binary-2.9.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:5fc447058d083b8c6ac076fc26b446d44f0145308465d745fba93a28c14c9e32"}, + {file = "psycopg2_binary-2.9.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d892bfa1d023c3781a3cab8dd5af76b626c483484d782e8bd047c180db590e4c"}, + {file = "psycopg2_binary-2.9.5-cp311-cp311-win32.whl", hash = "sha256:2abccab84d057723d2ca8f99ff7b619285d40da6814d50366f61f0fc385c3903"}, + {file = "psycopg2_binary-2.9.5-cp311-cp311-win_amd64.whl", hash = "sha256:bef7e3f9dc6f0c13afdd671008534be5744e0e682fb851584c8c3a025ec09720"}, + {file = "psycopg2_binary-2.9.5-cp36-cp36m-macosx_10_14_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:6e63814ec71db9bdb42905c925639f319c80e7909fb76c3b84edc79dadef8d60"}, + {file = "psycopg2_binary-2.9.5-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:212757ffcecb3e1a5338d4e6761bf9c04f750e7d027117e74aa3cd8a75bb6fbd"}, + {file = "psycopg2_binary-2.9.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f8a9bcab7b6db2e3dbf65b214dfc795b4c6b3bb3af922901b6a67f7cb47d5f8"}, + {file = "psycopg2_binary-2.9.5-cp36-cp36m-manylinux_2_24_aarch64.whl", hash = "sha256:56b2957a145f816726b109ee3d4e6822c23f919a7d91af5a94593723ed667835"}, + {file = "psycopg2_binary-2.9.5-cp36-cp36m-manylinux_2_24_ppc64le.whl", hash = "sha256:f95b8aca2703d6a30249f83f4fe6a9abf2e627aa892a5caaab2267d56be7ab69"}, + {file = "psycopg2_binary-2.9.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:70831e03bd53702c941da1a1ad36c17d825a24fbb26857b40913d58df82ec18b"}, + {file = "psycopg2_binary-2.9.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:dbc332beaf8492b5731229a881807cd7b91b50dbbbaf7fe2faf46942eda64a24"}, + {file = "psycopg2_binary-2.9.5-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:2d964eb24c8b021623df1c93c626671420c6efadbdb8655cb2bd5e0c6fa422ba"}, + {file = "psycopg2_binary-2.9.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:95076399ec3b27a8f7fa1cc9a83417b1c920d55cf7a97f718a94efbb96c7f503"}, + {file = "psycopg2_binary-2.9.5-cp36-cp36m-win32.whl", hash = "sha256:3fc33295cfccad697a97a76dec3f1e94ad848b7b163c3228c1636977966b51e2"}, + {file = "psycopg2_binary-2.9.5-cp36-cp36m-win_amd64.whl", hash = "sha256:02551647542f2bf89073d129c73c05a25c372fc0a49aa50e0de65c3c143d8bd0"}, + {file = "psycopg2_binary-2.9.5-cp37-cp37m-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:63e318dbe52709ed10d516a356f22a635e07a2e34c68145484ed96a19b0c4c68"}, + {file = "psycopg2_binary-2.9.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7e518a0911c50f60313cb9e74a169a65b5d293770db4770ebf004245f24b5c5"}, + {file = "psycopg2_binary-2.9.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b9d38a4656e4e715d637abdf7296e98d6267df0cc0a8e9a016f8ba07e4aa3eeb"}, + {file = "psycopg2_binary-2.9.5-cp37-cp37m-manylinux_2_24_aarch64.whl", hash = "sha256:68d81a2fe184030aa0c5c11e518292e15d342a667184d91e30644c9d533e53e1"}, + {file = "psycopg2_binary-2.9.5-cp37-cp37m-manylinux_2_24_ppc64le.whl", hash = "sha256:7ee3095d02d6f38bd7d9a5358fcc9ea78fcdb7176921528dd709cc63f40184f5"}, + {file = "psycopg2_binary-2.9.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:46512486be6fbceef51d7660dec017394ba3e170299d1dc30928cbedebbf103a"}, + {file = "psycopg2_binary-2.9.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b911dfb727e247340d36ae20c4b9259e4a64013ab9888ccb3cbba69b77fd9636"}, + {file = "psycopg2_binary-2.9.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:422e3d43b47ac20141bc84b3d342eead8d8099a62881a501e97d15f6addabfe9"}, + {file = "psycopg2_binary-2.9.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:c5682a45df7d9642eff590abc73157c887a68f016df0a8ad722dcc0f888f56d7"}, + {file = "psycopg2_binary-2.9.5-cp37-cp37m-win32.whl", hash = "sha256:b8104f709590fff72af801e916817560dbe1698028cd0afe5a52d75ceb1fce5f"}, + {file = "psycopg2_binary-2.9.5-cp37-cp37m-win_amd64.whl", hash = "sha256:7b3751857da3e224f5629400736a7b11e940b5da5f95fa631d86219a1beaafec"}, + {file = "psycopg2_binary-2.9.5-cp38-cp38-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:043a9fd45a03858ff72364b4b75090679bd875ee44df9c0613dc862ca6b98460"}, + {file = "psycopg2_binary-2.9.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9ffdc51001136b699f9563b1c74cc1f8c07f66ef7219beb6417a4c8aaa896c28"}, + {file = "psycopg2_binary-2.9.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c15ba5982c177bc4b23a7940c7e4394197e2d6a424a2d282e7c236b66da6d896"}, + {file = "psycopg2_binary-2.9.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dc85b3777068ed30aff8242be2813038a929f2084f69e43ef869daddae50f6ee"}, + {file = "psycopg2_binary-2.9.5-cp38-cp38-manylinux_2_24_aarch64.whl", hash = "sha256:215d6bf7e66732a514f47614f828d8c0aaac9a648c46a831955cb103473c7147"}, + {file = "psycopg2_binary-2.9.5-cp38-cp38-manylinux_2_24_ppc64le.whl", hash = "sha256:7d07f552d1e412f4b4e64ce386d4c777a41da3b33f7098b6219012ba534fb2c2"}, + {file = "psycopg2_binary-2.9.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:a0adef094c49f242122bb145c3c8af442070dc0e4312db17e49058c1702606d4"}, + {file = "psycopg2_binary-2.9.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:00475004e5ed3e3bf5e056d66e5dcdf41a0dc62efcd57997acd9135c40a08a50"}, + {file = "psycopg2_binary-2.9.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:7d88db096fa19d94f433420eaaf9f3c45382da2dd014b93e4bf3215639047c16"}, + {file = "psycopg2_binary-2.9.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:902844f9c4fb19b17dfa84d9e2ca053d4a4ba265723d62ea5c9c26b38e0aa1e6"}, + {file = "psycopg2_binary-2.9.5-cp38-cp38-win32.whl", hash = "sha256:4e7904d1920c0c89105c0517dc7e3f5c20fb4e56ba9cdef13048db76947f1d79"}, + {file = "psycopg2_binary-2.9.5-cp38-cp38-win_amd64.whl", hash = "sha256:a36a0e791805aa136e9cbd0ffa040d09adec8610453ee8a753f23481a0057af5"}, + {file = "psycopg2_binary-2.9.5-cp39-cp39-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:25382c7d174c679ce6927c16b6fbb68b10e56ee44b1acb40671e02d29f2fce7c"}, + {file = "psycopg2_binary-2.9.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9c38d3869238e9d3409239bc05bc27d6b7c99c2a460ea337d2814b35fb4fea1b"}, + {file = "psycopg2_binary-2.9.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5c6527c8efa5226a9e787507652dd5ba97b62d29b53c371a85cd13f957fe4d42"}, + {file = "psycopg2_binary-2.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e59137cdb970249ae60be2a49774c6dfb015bd0403f05af1fe61862e9626642d"}, + {file = "psycopg2_binary-2.9.5-cp39-cp39-manylinux_2_24_aarch64.whl", hash = "sha256:d4c7b3a31502184e856df1f7bbb2c3735a05a8ce0ade34c5277e1577738a5c91"}, + {file = "psycopg2_binary-2.9.5-cp39-cp39-manylinux_2_24_ppc64le.whl", hash = "sha256:b9a794cef1d9c1772b94a72eec6da144c18e18041d294a9ab47669bc77a80c1d"}, + {file = "psycopg2_binary-2.9.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c5254cbd4f4855e11cebf678c1a848a3042d455a22a4ce61349c36aafd4c2267"}, + {file = "psycopg2_binary-2.9.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:c5e65c6ac0ae4bf5bef1667029f81010b6017795dcb817ba5c7b8a8d61fab76f"}, + {file = "psycopg2_binary-2.9.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:74eddec4537ab1f701a1647214734bc52cee2794df748f6ae5908e00771f180a"}, + {file = "psycopg2_binary-2.9.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:01ad49d68dd8c5362e4bfb4158f2896dc6e0c02e87b8a3770fc003459f1a4425"}, + {file = "psycopg2_binary-2.9.5-cp39-cp39-win32.whl", hash = "sha256:937880290775033a743f4836aa253087b85e62784b63fd099ee725d567a48aa1"}, + {file = "psycopg2_binary-2.9.5-cp39-cp39-win_amd64.whl", hash = "sha256:484405b883630f3e74ed32041a87456c5e0e63a8e3429aa93e8714c366d62bd1"}, +] [[package]] name = "ptyprocess" version = "0.7.0" description = "Run a subprocess in a pseudo terminal" -category = "main" +category = "dev" optional = false python-versions = "*" +files = [ + {file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"}, + {file = "ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"}, +] [[package]] name = "pure-eval" version = "0.2.2" description = "Safely evaluate AST nodes without side effects" -category = "main" +category = "dev" optional = false python-versions = "*" +files = [ + {file = "pure_eval-0.2.2-py3-none-any.whl", hash = "sha256:01eaab343580944bc56080ebe0a674b39ec44a945e6d09ba7db3cb8cec289350"}, + {file = "pure_eval-0.2.2.tar.gz", hash = "sha256:2b45320af6dfaa1750f543d714b6d1c520a1688dec6fd24d339063ce0aaa9ac3"}, +] [package.extras] tests = ["pytest"] [[package]] -name = "py" -version = "1.11.0" -description = "library with cross-python path, ini-parsing, io, code, log facilities" +name = "pyarrow" +version = "9.0.0" +description = "Python library for Apache Arrow" category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = ">=3.7" +files = [ + {file = "pyarrow-9.0.0-cp310-cp310-macosx_10_13_universal2.whl", hash = "sha256:767cafb14278165ad539a2918c14c1b73cf20689747c21375c38e3fe62884902"}, + {file = "pyarrow-9.0.0-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:0238998dc692efcb4e41ae74738d7c1234723271ccf520bd8312dca07d49ef8d"}, + {file = "pyarrow-9.0.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:55328348b9139c2b47450d512d716c2248fd58e2f04e2fc23a65e18726666d42"}, + {file = "pyarrow-9.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fc856628acd8d281652c15b6268ec7f27ebcb015abbe99d9baad17f02adc51f1"}, + {file = "pyarrow-9.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29eb3e086e2b26202f3a4678316b93cfb15d0e2ba20f3ec12db8fd9cc07cde63"}, + {file = "pyarrow-9.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e753f8fcf07d8e3a0efa0c8bd51fef5c90281ffd4c5637c08ce42cd0ac297de"}, + {file = "pyarrow-9.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:3eef8a981f45d89de403e81fb83b8119c20824caddf1404274e41a5d66c73806"}, + {file = "pyarrow-9.0.0-cp37-cp37m-macosx_10_13_x86_64.whl", hash = "sha256:7fa56cbd415cef912677270b8e41baad70cde04c6d8a8336eeb2aba85aa93706"}, + {file = "pyarrow-9.0.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:f8c46bde1030d704e2796182286d1c56846552c50a39ad5bf5a20c0d8159fc35"}, + {file = "pyarrow-9.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8ad430cee28ebc4d6661fc7315747c7a18ae2a74e67498dcb039e1c762a2fb67"}, + {file = "pyarrow-9.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:81a60bb291a964f63b2717fb1b28f6615ffab7e8585322bfb8a6738e6b321282"}, + {file = "pyarrow-9.0.0-cp37-cp37m-win_amd64.whl", hash = "sha256:9cef618159567d5f62040f2b79b1c7b38e3885f4ffad0ec97cd2d86f88b67cef"}, + {file = "pyarrow-9.0.0-cp38-cp38-macosx_10_13_x86_64.whl", hash = "sha256:5526a3bfb404ff6d31d62ea582cf2466c7378a474a99ee04d1a9b05de5264541"}, + {file = "pyarrow-9.0.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:da3e0f319509a5881867effd7024099fb06950a0768dad0d6873668bb88cfaba"}, + {file = "pyarrow-9.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2c715eca2092273dcccf6f08437371e04d112f9354245ba2fbe6c801879450b7"}, + {file = "pyarrow-9.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f11a645a41ee531c3a5edda45dea07c42267f52571f818d388971d33fc7e2d4a"}, + {file = "pyarrow-9.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a5b390bdcfb8c5b900ef543f911cdfec63e88524fafbcc15f83767202a4a2491"}, + {file = "pyarrow-9.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:d9eb04db626fa24fdfb83c00f76679ca0d98728cdbaa0481b6402bf793a290c0"}, + {file = "pyarrow-9.0.0-cp39-cp39-macosx_10_13_universal2.whl", hash = "sha256:4eebdab05afa23d5d5274b24c1cbeb1ba017d67c280f7d39fd8a8f18cbad2ec9"}, + {file = "pyarrow-9.0.0-cp39-cp39-macosx_10_13_x86_64.whl", hash = "sha256:02b820ecd1da02012092c180447de449fc688d0c3f9ff8526ca301cdd60dacd0"}, + {file = "pyarrow-9.0.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:92f3977e901db1ef5cba30d6cc1d7942b8d94b910c60f89013e8f7bb86a86eef"}, + {file = "pyarrow-9.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f241bd488c2705df930eedfe304ada71191dcf67d6b98ceda0cc934fd2a8388e"}, + {file = "pyarrow-9.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c5a073a930c632058461547e0bc572da1e724b17b6b9eb31a97da13f50cb6e0"}, + {file = "pyarrow-9.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f59bcd5217a3ae1e17870792f82b2ff92df9f3862996e2c78e156c13e56ff62e"}, + {file = "pyarrow-9.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:fe2ce795fa1d95e4e940fe5661c3c58aee7181c730f65ac5dd8794a77228de59"}, + {file = "pyarrow-9.0.0.tar.gz", hash = "sha256:7fb02bebc13ab55573d1ae9bb5002a6d20ba767bf8569b52fce5301d42495ab7"}, +] + +[package.dependencies] +numpy = ">=1.16.6" [[package]] name = "pyasn1" @@ -976,14 +2552,22 @@ description = "ASN.1 types and codecs" category = "main" optional = false python-versions = "*" +files = [ + {file = "pyasn1-0.4.8-py2.py3-none-any.whl", hash = "sha256:39c7e2ec30515947ff4e87fb6f456dfc6e84857d34be479c9d4a4ba4bf46aa5d"}, + {file = "pyasn1-0.4.8.tar.gz", hash = "sha256:aef77c9fb94a3ac588e87841208bdec464471d9871bd5050a287cc9a475cd0ba"}, +] [[package]] name = "pycodestyle" -version = "2.7.0" +version = "2.10.0" description = "Python style guide checker" category = "dev" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +python-versions = ">=3.6" +files = [ + {file = "pycodestyle-2.10.0-py2.py3-none-any.whl", hash = "sha256:8a4eaf0d0495c7395bdab3589ac2db602797d76207242c17d470186815706610"}, + {file = "pycodestyle-2.10.0.tar.gz", hash = "sha256:347187bdb476329d98f695c213d7295a846d1152ff4fe9bacb8a9590b8ee7053"}, +] [[package]] name = "pycparser" @@ -992,17 +2576,59 @@ description = "C parser in Python" category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, + {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, +] [[package]] name = "pydantic" -version = "1.10.2" +version = "1.10.6" description = "Data validation and settings management using python type hints" category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pydantic-1.10.6-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f9289065611c48147c1dd1fd344e9d57ab45f1d99b0fb26c51f1cf72cd9bcd31"}, + {file = "pydantic-1.10.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8c32b6bba301490d9bb2bf5f631907803135e8085b6aa3e5fe5a770d46dd0160"}, + {file = "pydantic-1.10.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd9b9e98068fa1068edfc9eabde70a7132017bdd4f362f8b4fd0abed79c33083"}, + {file = "pydantic-1.10.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c84583b9df62522829cbc46e2b22e0ec11445625b5acd70c5681ce09c9b11c4"}, + {file = "pydantic-1.10.6-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:b41822064585fea56d0116aa431fbd5137ce69dfe837b599e310034171996084"}, + {file = "pydantic-1.10.6-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:61f1f08adfaa9cc02e0cbc94f478140385cbd52d5b3c5a657c2fceb15de8d1fb"}, + {file = "pydantic-1.10.6-cp310-cp310-win_amd64.whl", hash = "sha256:32937835e525d92c98a1512218db4eed9ddc8f4ee2a78382d77f54341972c0e7"}, + {file = "pydantic-1.10.6-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:bbd5c531b22928e63d0cb1868dee76123456e1de2f1cb45879e9e7a3f3f1779b"}, + {file = "pydantic-1.10.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e277bd18339177daa62a294256869bbe84df1fb592be2716ec62627bb8d7c81d"}, + {file = "pydantic-1.10.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f15277d720aa57e173954d237628a8d304896364b9de745dcb722f584812c7"}, + {file = "pydantic-1.10.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b243b564cea2576725e77aeeda54e3e0229a168bc587d536cd69941e6797543d"}, + {file = "pydantic-1.10.6-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3ce13a558b484c9ae48a6a7c184b1ba0e5588c5525482681db418268e5f86186"}, + {file = "pydantic-1.10.6-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3ac1cd4deed871dfe0c5f63721e29debf03e2deefa41b3ed5eb5f5df287c7b70"}, + {file = "pydantic-1.10.6-cp311-cp311-win_amd64.whl", hash = "sha256:b1eb6610330a1dfba9ce142ada792f26bbef1255b75f538196a39e9e90388bf4"}, + {file = "pydantic-1.10.6-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:4ca83739c1263a044ec8b79df4eefc34bbac87191f0a513d00dd47d46e307a65"}, + {file = "pydantic-1.10.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea4e2a7cb409951988e79a469f609bba998a576e6d7b9791ae5d1e0619e1c0f2"}, + {file = "pydantic-1.10.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:53de12b4608290992a943801d7756f18a37b7aee284b9ffa794ee8ea8153f8e2"}, + {file = "pydantic-1.10.6-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:60184e80aac3b56933c71c48d6181e630b0fbc61ae455a63322a66a23c14731a"}, + {file = "pydantic-1.10.6-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:415a3f719ce518e95a92effc7ee30118a25c3d032455d13e121e3840985f2efd"}, + {file = "pydantic-1.10.6-cp37-cp37m-win_amd64.whl", hash = "sha256:72cb30894a34d3a7ab6d959b45a70abac8a2a93b6480fc5a7bfbd9c935bdc4fb"}, + {file = "pydantic-1.10.6-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3091d2eaeda25391405e36c2fc2ed102b48bac4b384d42b2267310abae350ca6"}, + {file = "pydantic-1.10.6-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:751f008cd2afe812a781fd6aa2fb66c620ca2e1a13b6a2152b1ad51553cb4b77"}, + {file = "pydantic-1.10.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:12e837fd320dd30bd625be1b101e3b62edc096a49835392dcf418f1a5ac2b832"}, + {file = "pydantic-1.10.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:587d92831d0115874d766b1f5fddcdde0c5b6c60f8c6111a394078ec227fca6d"}, + {file = "pydantic-1.10.6-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:476f6674303ae7965730a382a8e8d7fae18b8004b7b69a56c3d8fa93968aa21c"}, + {file = "pydantic-1.10.6-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:3a2be0a0f32c83265fd71a45027201e1278beaa82ea88ea5b345eea6afa9ac7f"}, + {file = "pydantic-1.10.6-cp38-cp38-win_amd64.whl", hash = "sha256:0abd9c60eee6201b853b6c4be104edfba4f8f6c5f3623f8e1dba90634d63eb35"}, + {file = "pydantic-1.10.6-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6195ca908045054dd2d57eb9c39a5fe86409968b8040de8c2240186da0769da7"}, + {file = "pydantic-1.10.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:43cdeca8d30de9a897440e3fb8866f827c4c31f6c73838e3a01a14b03b067b1d"}, + {file = "pydantic-1.10.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c19eb5163167489cb1e0161ae9220dadd4fc609a42649e7e84a8fa8fff7a80f"}, + {file = "pydantic-1.10.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:012c99a9c0d18cfde7469aa1ebff922e24b0c706d03ead96940f5465f2c9cf62"}, + {file = "pydantic-1.10.6-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:528dcf7ec49fb5a84bf6fe346c1cc3c55b0e7603c2123881996ca3ad79db5bfc"}, + {file = "pydantic-1.10.6-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:163e79386c3547c49366e959d01e37fc30252285a70619ffc1b10ede4758250a"}, + {file = "pydantic-1.10.6-cp39-cp39-win_amd64.whl", hash = "sha256:189318051c3d57821f7233ecc94708767dd67687a614a4e8f92b4a020d4ffd06"}, + {file = "pydantic-1.10.6-py3-none-any.whl", hash = "sha256:acc6783751ac9c9bc4680379edd6d286468a1dc8d7d9906cd6f1186ed682b2b0"}, + {file = "pydantic-1.10.6.tar.gz", hash = "sha256:cf95adb0d1671fc38d8c43dd921ad5814a735e7d9b4d9e437c088002863854fd"}, +] [package.dependencies] -typing-extensions = ">=4.1.0" +typing-extensions = ">=4.2.0" [package.extras] dotenv = ["python-dotenv (>=0.10.4)"] @@ -1010,55 +2636,97 @@ email = ["email-validator (>=1.0.3)"] [[package]] name = "pyflakes" -version = "2.3.1" +version = "3.0.1" description = "passive checker of Python programs" category = "dev" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +python-versions = ">=3.6" +files = [ + {file = "pyflakes-3.0.1-py2.py3-none-any.whl", hash = "sha256:ec55bf7fe21fff7f1ad2f7da62363d749e2a470500eab1b555334b67aa1ef8cf"}, + {file = "pyflakes-3.0.1.tar.gz", hash = "sha256:ec8b276a6b60bd80defed25add7e439881c19e64850afd9b346283d4165fd0fd"}, +] [[package]] -name = "Pygments" -version = "2.13.0" +name = "pygments" +version = "2.14.0" description = "Pygments is a syntax highlighting package written in Python." -category = "main" +category = "dev" optional = false python-versions = ">=3.6" +files = [ + {file = "Pygments-2.14.0-py3-none-any.whl", hash = "sha256:fa7bd7bd2771287c0de303af8bfdfc731f51bd2c6a47ab69d117138893b82717"}, + {file = "Pygments-2.14.0.tar.gz", hash = "sha256:b3ed06a9e8ac9a9aae5a6f5dbe78a8a58655d17b43b93c078f094ddc476ae297"}, +] [package.extras] plugins = ["importlib-metadata"] [[package]] -name = "pyparsing" -version = "3.0.9" -description = "pyparsing module - Classes and methods to define and execute parsing grammars" +name = "pyjwt" +version = "2.6.0" +description = "JSON Web Token implementation in Python" category = "main" optional = false -python-versions = ">=3.6.8" +python-versions = ">=3.7" +files = [ + {file = "PyJWT-2.6.0-py3-none-any.whl", hash = "sha256:d83c3d892a77bbb74d3e1a2cfa90afaadb60945205d1095d9221f04466f64c14"}, + {file = "PyJWT-2.6.0.tar.gz", hash = "sha256:69285c7e31fc44f68a1feb309e948e0df53259d579295e6cfe2b1792329f05fd"}, +] + +[package.dependencies] +cryptography = {version = ">=3.4.0", optional = true, markers = "extra == \"crypto\""} [package.extras] -diagrams = ["jinja2", "railroad-diagrams"] +crypto = ["cryptography (>=3.4.0)"] +dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] +docs = ["sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] +tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] + +[[package]] +name = "pymgclient" +version = "1.3.1" +description = "Memgraph database adapter for Python language" +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "pymgclient-1.3.1-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:6d013f878658296c3e8b360f0be41b9741907249874bcb30ef17fd0481d595d5"}, + {file = "pymgclient-1.3.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b6b5c6a1eda2f7178befe6c7ad9d31ba14845e672f3ef20ddb9ff46424b893ab"}, + {file = "pymgclient-1.3.1-cp310-cp310-win_amd64.whl", hash = "sha256:af8edb3f5e57a6f35d6ec68dc147949ecdcc2020a910f7f961957fd224dcf235"}, + {file = "pymgclient-1.3.1-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:ed8cf8eeb31319f6f4a76c59f90de68a7a004daae801d6f1eee20fc067230383"}, + {file = "pymgclient-1.3.1-cp37-cp37m-win_amd64.whl", hash = "sha256:1abd8dc4efbd5efd5c7074dd2efa88e89443cec23d04dfec1e4f6ff36861c67b"}, + {file = "pymgclient-1.3.1-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:b340a8f4987ae0ef2e5d519232ad98d2baf8deb47e1720e487de646ddfb8253d"}, + {file = "pymgclient-1.3.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:79463f3578f0c4194c2f8f8d9386173ab2149ad16a0075af0deab840fbf7c482"}, + {file = "pymgclient-1.3.1-cp38-cp38-win_amd64.whl", hash = "sha256:e30e03746b9a554b77801ac59ea0fd19fe85db11733d3350dfe1155f719c4e3a"}, + {file = "pymgclient-1.3.1-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:d08aef9bde5f89853cf028b72b547f364b797f5f2fd2d13510817b21d04d210d"}, + {file = "pymgclient-1.3.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:91faadc50d54ac4707e3b3239f77101d6610494658b1a16ecb4ef8976bb9aa0e"}, + {file = "pymgclient-1.3.1-cp39-cp39-win_amd64.whl", hash = "sha256:1f9aec0deff251b4c7f7acd763caad193330a072ab29e090e2b60925439eb6da"}, + {file = "pymgclient-1.3.1.tar.gz", hash = "sha256:a409ee9c7ac714a96a86f9eeca9e71f19f36f11390b3fdbac447d65462e05037"}, +] [[package]] name = "pytest" -version = "5.4.3" +version = "7.2.2" description = "pytest: simple powerful testing with Python" -category = "main" +category = "dev" optional = false -python-versions = ">=3.5" +python-versions = ">=3.7" +files = [ + {file = "pytest-7.2.2-py3-none-any.whl", hash = "sha256:130328f552dcfac0b1cec75c12e3f005619dc5f874f0a06e8ff7263f0ee6225e"}, + {file = "pytest-7.2.2.tar.gz", hash = "sha256:c99ab0c73aceb050f68929bc93af19ab6db0558791c6a0715723abe9d0ade9d4"}, +] [package.dependencies] -atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} -attrs = ">=17.4.0" +attrs = ">=19.2.0" colorama = {version = "*", markers = "sys_platform == \"win32\""} -more-itertools = ">=4.0.0" +exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""} +iniconfig = "*" packaging = "*" -pluggy = ">=0.12,<1.0" -py = ">=1.5.0" -wcwidth = "*" +pluggy = ">=0.12,<2.0" +tomli = {version = ">=1.0.0", markers = "python_version < \"3.11\""} [package.extras] -checkqa-mypy = ["mypy (==v0.761)"] -testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] +testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "xmlschema"] [[package]] name = "pytest-cov" @@ -1067,6 +2735,10 @@ description = "Pytest plugin for measuring coverage." category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "pytest-cov-2.12.1.tar.gz", hash = "sha256:261ceeb8c227b726249b376b8526b600f38667ee314f910353fa318caa01f4d7"}, + {file = "pytest_cov-2.12.1-py2.py3-none-any.whl", hash = "sha256:261bb9e47e65bd099c89c3edf92972865210c36813f80ede5277dceb77a4a62a"}, +] [package.dependencies] coverage = ">=5.2.1" @@ -1083,6 +2755,10 @@ description = "Extensions to the standard Python datetime module" category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] [package.dependencies] six = ">=1.5" @@ -1094,6 +2770,10 @@ description = "JOSE implementation in Python" category = "main" optional = false python-versions = "*" +files = [ + {file = "python-jose-3.3.0.tar.gz", hash = "sha256:55779b5e6ad599c6336191246e95eb2293a9ddebd555f796a65f838f07e5d78a"}, + {file = "python_jose-3.3.0-py2.py3-none-any.whl", hash = "sha256:9b1376b023f8b298536eedd47ae1089bcdb848f1535ab30555cd92002d78923a"}, +] [package.dependencies] cryptography = {version = ">=3.4.0", optional = true, markers = "extra == \"cryptography\""} @@ -1113,37 +2793,136 @@ description = "A streaming multipart parser for Python" category = "main" optional = false python-versions = "*" +files = [ + {file = "python-multipart-0.0.5.tar.gz", hash = "sha256:f7bb5f611fc600d15fa47b3974c8aa16e93724513b49b5f95c81e6624c83fa43"}, +] [package.dependencies] six = ">=1.4.0" [[package]] name = "pytz" -version = "2022.6" +version = "2022.7.1" description = "World timezone definitions, modern and historical" category = "main" optional = false python-versions = "*" +files = [ + {file = "pytz-2022.7.1-py2.py3-none-any.whl", hash = "sha256:78f4f37d8198e0627c5f1143240bb0206b8691d8d7ac6d78fee88b78733f8c4a"}, + {file = "pytz-2022.7.1.tar.gz", hash = "sha256:01a0681c4b9684a28304615eba55d1ab31ae00bf68ec157ec3708a8182dbbcd0"}, +] [[package]] name = "pywin32" -version = "305" +version = "227" description = "Python for Window Extensions" category = "main" optional = false python-versions = "*" +files = [ + {file = "pywin32-227-cp27-cp27m-win32.whl", hash = "sha256:371fcc39416d736401f0274dd64c2302728c9e034808e37381b5e1b22be4a6b0"}, + {file = "pywin32-227-cp27-cp27m-win_amd64.whl", hash = "sha256:4cdad3e84191194ea6d0dd1b1b9bdda574ff563177d2adf2b4efec2a244fa116"}, + {file = "pywin32-227-cp35-cp35m-win32.whl", hash = "sha256:f4c5be1a293bae0076d93c88f37ee8da68136744588bc5e2be2f299a34ceb7aa"}, + {file = "pywin32-227-cp35-cp35m-win_amd64.whl", hash = "sha256:a929a4af626e530383a579431b70e512e736e9588106715215bf685a3ea508d4"}, + {file = "pywin32-227-cp36-cp36m-win32.whl", hash = "sha256:300a2db938e98c3e7e2093e4491439e62287d0d493fe07cce110db070b54c0be"}, + {file = "pywin32-227-cp36-cp36m-win_amd64.whl", hash = "sha256:9b31e009564fb95db160f154e2aa195ed66bcc4c058ed72850d047141b36f3a2"}, + {file = "pywin32-227-cp37-cp37m-win32.whl", hash = "sha256:47a3c7551376a865dd8d095a98deba954a98f326c6fe3c72d8726ca6e6b15507"}, + {file = "pywin32-227-cp37-cp37m-win_amd64.whl", hash = "sha256:31f88a89139cb2adc40f8f0e65ee56a8c585f629974f9e07622ba80199057511"}, + {file = "pywin32-227-cp38-cp38-win32.whl", hash = "sha256:7f18199fbf29ca99dff10e1f09451582ae9e372a892ff03a28528a24d55875bc"}, + {file = "pywin32-227-cp38-cp38-win_amd64.whl", hash = "sha256:7c1ae32c489dc012930787f06244426f8356e129184a02c25aef163917ce158e"}, + {file = "pywin32-227-cp39-cp39-win32.whl", hash = "sha256:c054c52ba46e7eb6b7d7dfae4dbd987a1bb48ee86debe3f245a2884ece46e295"}, + {file = "pywin32-227-cp39-cp39-win_amd64.whl", hash = "sha256:f27cec5e7f588c3d1051651830ecc00294f90728d19c3bf6916e6dba93ea357c"}, +] [[package]] name = "pyzmq" -version = "24.0.1" +version = "25.0.0" description = "Python bindings for 0MQ" -category = "main" +category = "dev" optional = false python-versions = ">=3.6" +files = [ + {file = "pyzmq-25.0.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:2d05d904f03ddf1e0d83d97341354dfe52244a619b5a1440a5f47a5b3451e84e"}, + {file = "pyzmq-25.0.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a154ef810d44f9d28868be04641f837374a64e7449df98d9208e76c260c7ef1"}, + {file = "pyzmq-25.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:487305c2a011fdcf3db1f24e8814bb76d23bc4d2f46e145bc80316a59a9aa07d"}, + {file = "pyzmq-25.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e7b87638ee30ab13230e37ce5331b3e730b1e0dda30120b9eeec3540ed292c8"}, + {file = "pyzmq-25.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75243e422e85a62f0ab7953dc315452a56b2c6a7e7d1a3c3109ac3cc57ed6b47"}, + {file = "pyzmq-25.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:31e523d067ce44a04e876bed3ff9ea1ff8d1b6636d16e5fcace9d22f8c564369"}, + {file = "pyzmq-25.0.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:8539216173135e9e89f6b1cc392e74e6b935b91e8c76106cf50e7a02ab02efe5"}, + {file = "pyzmq-25.0.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:2754fa68da08a854f4816e05160137fa938a2347276471103d31e04bcee5365c"}, + {file = "pyzmq-25.0.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4a1bc30f0c18444d51e9b0d0dd39e3a4e7c53ee74190bebef238cd58de577ea9"}, + {file = "pyzmq-25.0.0-cp310-cp310-win32.whl", hash = "sha256:01d53958c787cfea34091fcb8ef36003dbb7913b8e9f8f62a0715234ebc98b70"}, + {file = "pyzmq-25.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:58fc3ad5e1cfd2e6d24741fbb1e216b388115d31b0ca6670f894187f280b6ba6"}, + {file = "pyzmq-25.0.0-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:e4bba04ea779a3d7ef25a821bb63fd0939142c88e7813e5bd9c6265a20c523a2"}, + {file = "pyzmq-25.0.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:af1fbfb7ad6ac0009ccee33c90a1d303431c7fb594335eb97760988727a37577"}, + {file = "pyzmq-25.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:85456f0d8f3268eecd63dede3b99d5bd8d3b306310c37d4c15141111d22baeaf"}, + {file = "pyzmq-25.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0645b5a2d2a06fd8eb738018490c514907f7488bf9359c6ee9d92f62e844b76f"}, + {file = "pyzmq-25.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9f72ea279b2941a5203e935a4588b9ba8a48aeb9a926d9dfa1986278bd362cb8"}, + {file = "pyzmq-25.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:4e295f7928a31ae0f657e848c5045ba6d693fe8921205f408ca3804b1b236968"}, + {file = "pyzmq-25.0.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ac97e7d647d5519bcef48dd8d3d331f72975afa5c4496c95f6e854686f45e2d9"}, + {file = "pyzmq-25.0.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:656281d496aaf9ca4fd4cea84e6d893e3361057c4707bd38618f7e811759103c"}, + {file = "pyzmq-25.0.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1f6116991568aac48b94d6d8aaed6157d407942ea385335a6ed313692777fb9d"}, + {file = "pyzmq-25.0.0-cp311-cp311-win32.whl", hash = "sha256:0282bba9aee6e0346aa27d6c69b5f7df72b5a964c91958fc9e0c62dcae5fdcdc"}, + {file = "pyzmq-25.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:526f884a27e8bba62fe1f4e07c62be2cfe492b6d432a8fdc4210397f8cf15331"}, + {file = "pyzmq-25.0.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:ccb3e1a863222afdbda42b7ca8ac8569959593d7abd44f5a709177d6fa27d266"}, + {file = "pyzmq-25.0.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4046d03100aca266e70d54a35694cb35d6654cfbef633e848b3c4a8d64b9d187"}, + {file = "pyzmq-25.0.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3100dddcada66ec5940ed6391ebf9d003cc3ede3d320748b2737553019f58230"}, + {file = "pyzmq-25.0.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:7877264aa851c19404b1bb9dbe6eed21ea0c13698be1eda3784aab3036d1c861"}, + {file = "pyzmq-25.0.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:5049e75cc99db65754a3da5f079230fb8889230cf09462ec972d884d1704a3ed"}, + {file = "pyzmq-25.0.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:81f99fb1224d36eb91557afec8cdc2264e856f3464500b55749020ce4c848ef2"}, + {file = "pyzmq-25.0.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:a1cd4a95f176cdc0ee0a82d49d5830f13ae6015d89decbf834c273bc33eeb3d3"}, + {file = "pyzmq-25.0.0-cp36-cp36m-win32.whl", hash = "sha256:926236ca003aec70574754f39703528947211a406f5c6c8b3e50eca04a9e87fc"}, + {file = "pyzmq-25.0.0-cp36-cp36m-win_amd64.whl", hash = "sha256:94f0a7289d0f5c80807c37ebb404205e7deb737e8763eb176f4770839ee2a287"}, + {file = "pyzmq-25.0.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:f3f96d452e9580cb961ece2e5a788e64abaecb1232a80e61deffb28e105ff84a"}, + {file = "pyzmq-25.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:930e6ad4f2eaac31a3d0c2130619d25db754b267487ebc186c6ad18af2a74018"}, + {file = "pyzmq-25.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e1081d7030a1229c8ff90120346fb7599b54f552e98fcea5170544e7c6725aab"}, + {file = "pyzmq-25.0.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:531866c491aee5a1e967c286cfa470dffac1e2a203b1afda52d62b58782651e9"}, + {file = "pyzmq-25.0.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:fc7c1421c5b1c916acf3128bf3cc7ea7f5018b58c69a6866d70c14190e600ce9"}, + {file = "pyzmq-25.0.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:9a2d5e419bd39a1edb6cdd326d831f0120ddb9b1ff397e7d73541bf393294973"}, + {file = "pyzmq-25.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:183e18742be3621acf8908903f689ec520aee3f08449bfd29f583010ca33022b"}, + {file = "pyzmq-25.0.0-cp37-cp37m-win32.whl", hash = "sha256:02f5cb60a7da1edd5591a15efa654ffe2303297a41e1b40c3c8942f8f11fc17c"}, + {file = "pyzmq-25.0.0-cp37-cp37m-win_amd64.whl", hash = "sha256:cac602e02341eaaf4edfd3e29bd3fdef672e61d4e6dfe5c1d065172aee00acee"}, + {file = "pyzmq-25.0.0-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:e14df47c1265356715d3d66e90282a645ebc077b70b3806cf47efcb7d1d630cb"}, + {file = "pyzmq-25.0.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:293a7c2128690f496057f1f1eb6074f8746058d13588389981089ec45d8fdc77"}, + {file = "pyzmq-25.0.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:731b208bc9412deeb553c9519dca47136b5a01ca66667cafd8733211941b17e4"}, + {file = "pyzmq-25.0.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b055a1cddf8035966ad13aa51edae5dc8f1bba0b5d5e06f7a843d8b83dc9b66b"}, + {file = "pyzmq-25.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17e1cb97d573ea84d7cd97188b42ca6f611ab3ee600f6a75041294ede58e3d20"}, + {file = "pyzmq-25.0.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:60ecbfe7669d3808ffa8a7dd1487d6eb8a4015b07235e3b723d4b2a2d4de7203"}, + {file = "pyzmq-25.0.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:4c25c95416133942280faaf068d0fddfd642b927fb28aaf4ab201a738e597c1e"}, + {file = "pyzmq-25.0.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:be05504af0619d1cffa500af1e0ede69fb683f301003851f5993b5247cc2c576"}, + {file = "pyzmq-25.0.0-cp38-cp38-win32.whl", hash = "sha256:6bf3842af37af43fa953e96074ebbb5315f6a297198f805d019d788a1021dbc8"}, + {file = "pyzmq-25.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:b90bb8dfbbd138558f1f284fecfe328f7653616ff9a972433a00711d9475d1a9"}, + {file = "pyzmq-25.0.0-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:62b9e80890c0d2408eb42d5d7e1fc62a5ce71be3288684788f74cf3e59ffd6e2"}, + {file = "pyzmq-25.0.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:484c2c4ee02c1edc07039f42130bd16e804b1fe81c4f428e0042e03967f40c20"}, + {file = "pyzmq-25.0.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:9ca6db34b26c4d3e9b0728841ec9aa39484eee272caa97972ec8c8e231b20c7e"}, + {file = "pyzmq-25.0.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:610d2d112acd4e5501fac31010064a6c6efd716ceb968e443cae0059eb7b86de"}, + {file = "pyzmq-25.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3594c0ff604e685d7e907860b61d0e10e46c74a9ffca168f6e9e50ea934ee440"}, + {file = "pyzmq-25.0.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c21a5f4e54a807df5afdef52b6d24ec1580153a6bcf0607f70a6e1d9fa74c5c3"}, + {file = "pyzmq-25.0.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:4725412e27612f0d7d7c2f794d89807ad0227c2fc01dd6146b39ada49c748ef9"}, + {file = "pyzmq-25.0.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:4d3d604fe0a67afd1aff906e54da557a5203368a99dcc50a70eef374f1d2abef"}, + {file = "pyzmq-25.0.0-cp39-cp39-win32.whl", hash = "sha256:3670e8c5644768f214a3b598fe46378a4a6f096d5fb82a67dfd3440028460565"}, + {file = "pyzmq-25.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:e99629a976809fe102ef73e856cf4b2660acd82a412a51e80ba2215e523dfd0a"}, + {file = "pyzmq-25.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:66509c48f7446b640eeae24b60c9c1461799a27b1b0754e438582e36b5af3315"}, + {file = "pyzmq-25.0.0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:a9c464cc508177c09a5a6122b67f978f20e2954a21362bf095a0da4647e3e908"}, + {file = "pyzmq-25.0.0-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:28bcb2e66224a7ac2843eb632e4109d6b161479e7a2baf24e37210461485b4f1"}, + {file = "pyzmq-25.0.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0e7ef9ac807db50b4eb6f534c5dcc22f998f5dae920cc28873d2c1d080a4fc9"}, + {file = "pyzmq-25.0.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:5050f5c50b58a6e38ccaf9263a356f74ef1040f5ca4030225d1cb1a858c5b7b6"}, + {file = "pyzmq-25.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:2a73af6504e0d2805e926abf136ebf536735a13c22f709be7113c2ec65b4bec3"}, + {file = "pyzmq-25.0.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0e8d00228db627ddd1b418c7afd81820b38575f237128c9650365f2dd6ac3443"}, + {file = "pyzmq-25.0.0-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5605621f2181f20b71f13f698944deb26a0a71af4aaf435b34dd90146092d530"}, + {file = "pyzmq-25.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6136bfb0e5a9cf8c60c6ac763eb21f82940a77e6758ea53516c8c7074f4ff948"}, + {file = "pyzmq-25.0.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:0a90b2480a26aef7c13cff18703ba8d68e181facb40f78873df79e6d42c1facc"}, + {file = "pyzmq-25.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:00c94fd4c9dd3c95aace0c629a7fa713627a5c80c1819326b642adf6c4b8e2a2"}, + {file = "pyzmq-25.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20638121b0bdc80777ce0ec8c1f14f1ffec0697a1f88f0b564fa4a23078791c4"}, + {file = "pyzmq-25.0.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6f75b4b8574f3a8a0d6b4b52606fc75b82cb4391471be48ab0b8677c82f9ed4"}, + {file = "pyzmq-25.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4cbb885f347eba7ab7681c450dee5b14aed9f153eec224ec0c3f299273d9241f"}, + {file = "pyzmq-25.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c48f257da280b3be6c94e05bd575eddb1373419dbb1a72c3ce64e88f29d1cd6d"}, + {file = "pyzmq-25.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:866eabf7c1315ef2e93e34230db7cbf672e0d7c626b37c11f7e870c8612c3dcc"}, + {file = "pyzmq-25.0.0.tar.gz", hash = "sha256:f330a1a2c7f89fd4b0aa4dcb7bf50243bf1c8da9a2f1efc31daf57a2046b31f2"}, +] [package.dependencies] cffi = {version = "*", markers = "implementation_name == \"pypy\""} -py = {version = "*", markers = "implementation_name == \"pypy\""} [[package]] name = "raven" @@ -1152,36 +2931,54 @@ description = "Raven is a client for Sentry (https://getsentry.com)" category = "main" optional = false python-versions = "*" +files = [ + {file = "raven-6.10.0-py2.py3-none-any.whl", hash = "sha256:44a13f87670836e153951af9a3c80405d36b43097db869a36e92809673692ce4"}, + {file = "raven-6.10.0.tar.gz", hash = "sha256:3fa6de6efa2493a7c827472e984ce9b020797d0da16f1db67197bcc23c8fae54"}, +] [package.extras] flask = ["Flask (>=0.8)", "blinker (>=1.1)"] tests = ["Flask (>=0.8)", "Flask-Login (>=0.2.0)", "ZConfig", "aiohttp", "anyjson", "blinker (>=1.1)", "blinker (>=1.1)", "bottle", "celery (>=2.5)", "coverage (<4)", "exam (>=0.5.2)", "flake8 (==3.5.0)", "logbook", "mock", "nose", "pytest (>=3.2.0,<3.3.0)", "pytest-cov (==2.5.1)", "pytest-flake8 (==1.0.0)", "pytest-pythonpath (==0.7.2)", "pytest-timeout (==1.2.1)", "pytest-xdist (==1.18.2)", "pytz", "requests", "sanic (>=0.7.0)", "tornado (>=4.1,<5.0)", "tox", "webob", "webtest", "wheel"] -[[package]] -name = "regex" -version = "2022.10.31" -description = "Alternative regular expression module, to replace re." -category = "dev" -optional = false -python-versions = ">=3.6" - [[package]] name = "requests" -version = "2.28.1" +version = "2.28.2" description = "Python HTTP for Humans." category = "main" optional = false python-versions = ">=3.7, <4" +files = [ + {file = "requests-2.28.2-py3-none-any.whl", hash = "sha256:64299f4909223da747622c030b781c0d7811e359c37124b4bd368fb8c6518baa"}, + {file = "requests-2.28.2.tar.gz", hash = "sha256:98b1b2782e3c6c4904938b84c0eb932721069dfdb9134313beff7c83c2df24bf"}, +] [package.dependencies] certifi = ">=2017.4.17" -charset-normalizer = ">=2,<3" +charset-normalizer = ">=2,<4" idna = ">=2.5,<4" urllib3 = ">=1.21.1,<1.27" [package.extras] socks = ["PySocks (>=1.5.6,!=1.5.7)"] -use_chardet_on_py3 = ["chardet (>=3.0.2,<6)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rfc3986" +version = "1.5.0" +description = "Validating URI References per RFC 3986" +category = "main" +optional = false +python-versions = "*" +files = [ + {file = "rfc3986-1.5.0-py2.py3-none-any.whl", hash = "sha256:a86d6e1f5b1dc238b218b012df0aa79409667bb209e58da56d0b94704e712a97"}, + {file = "rfc3986-1.5.0.tar.gz", hash = "sha256:270aaf10d87d0d4e095063c65bf3ddbc6ee3d0b226328ce21e036f946e421835"}, +] + +[package.dependencies] +idna = {version = "*", optional = true, markers = "extra == \"idna2008\""} + +[package.extras] +idna2008 = ["idna"] [[package]] name = "rsa" @@ -1190,6 +2987,10 @@ description = "Pure-Python RSA implementation" category = "main" optional = false python-versions = ">=3.6,<4" +files = [ + {file = "rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7"}, + {file = "rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21"}, +] [package.dependencies] pyasn1 = ">=0.1.3" @@ -1201,6 +3002,10 @@ description = "An Amazon S3 Transfer Manager" category = "main" optional = false python-versions = ">= 3.7" +files = [ + {file = "s3transfer-0.6.0-py3-none-any.whl", hash = "sha256:06176b74f3a15f61f1b4f25a1fc29a4429040b7647133a463da8fa5bd28d5ecd"}, + {file = "s3transfer-0.6.0.tar.gz", hash = "sha256:2ed07d3866f523cc561bf4a00fc5535827981b117dd7876f036b0c1aca42c947"}, +] [package.dependencies] botocore = ">=1.12.36,<2.0a.0" @@ -1210,24 +3015,31 @@ crt = ["botocore[crt] (>=1.20.29,<2.0a.0)"] [[package]] name = "setuptools" -version = "65.5.1" +version = "67.6.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "setuptools-67.6.0-py3-none-any.whl", hash = "sha256:b78aaa36f6b90a074c1fa651168723acbf45d14cb1196b6f02c0fd07f17623b2"}, + {file = "setuptools-67.6.0.tar.gz", hash = "sha256:2ee892cd5f29f3373097f5a814697e397cf3ce313616df0af11231e2ad118077"}, +] [package.extras] -docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8 (<5)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pip-run (>=8.8)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] [[package]] name = "sexpdata" -version = "0.0.3" +version = "1.0.0" description = "S-expression parser for Python" category = "dev" optional = false python-versions = "*" +files = [ + {file = "sexpdata-1.0.0.tar.gz", hash = "sha256:e8d5f75c378a07c6d1cc61fad9611b451c9383c0253052e16198a852e1620705"}, +] [[package]] name = "six" @@ -1236,14 +3048,73 @@ description = "Python 2 and 3 compatibility utilities" category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] [[package]] -name = "SQLAlchemy" -version = "1.4.44" -description = "Database Abstraction Library" +name = "sniffio" +version = "1.3.0" +description = "Sniff out which async library your code is running under" category = "main" optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +python-versions = ">=3.7" +files = [ + {file = "sniffio-1.3.0-py3-none-any.whl", hash = "sha256:eecefdce1e5bbfb7ad2eeaabf7c1eeb404d7757c379bd1f7e5cce9d8bf425384"}, + {file = "sniffio-1.3.0.tar.gz", hash = "sha256:e60305c5e5d314f5389259b7f22aaa33d8f7dee49763119234af3755c55b9101"}, +] + +[[package]] +name = "sqlalchemy" +version = "1.4.41" +description = "Database Abstraction Library" +category = "main" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "SQLAlchemy-1.4.41-cp27-cp27m-macosx_10_14_x86_64.whl", hash = "sha256:13e397a9371ecd25573a7b90bd037db604331cf403f5318038c46ee44908c44d"}, + {file = "SQLAlchemy-1.4.41-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:2d6495f84c4fd11584f34e62f9feec81bf373787b3942270487074e35cbe5330"}, + {file = "SQLAlchemy-1.4.41-cp27-cp27m-win32.whl", hash = "sha256:e570cfc40a29d6ad46c9aeaddbdcee687880940a3a327f2c668dd0e4ef0a441d"}, + {file = "SQLAlchemy-1.4.41-cp27-cp27m-win_amd64.whl", hash = "sha256:5facb7fd6fa8a7353bbe88b95695e555338fb038ad19ceb29c82d94f62775a05"}, + {file = "SQLAlchemy-1.4.41-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:f37fa70d95658763254941ddd30ecb23fc4ec0c5a788a7c21034fc2305dab7cc"}, + {file = "SQLAlchemy-1.4.41-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:361f6b5e3f659e3c56ea3518cf85fbdae1b9e788ade0219a67eeaaea8a4e4d2a"}, + {file = "SQLAlchemy-1.4.41-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0990932f7cca97fece8017414f57fdd80db506a045869d7ddf2dda1d7cf69ecc"}, + {file = "SQLAlchemy-1.4.41-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cd767cf5d7252b1c88fcfb58426a32d7bd14a7e4942497e15b68ff5d822b41ad"}, + {file = "SQLAlchemy-1.4.41-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5102fb9ee2c258a2218281adcb3e1918b793c51d6c2b4666ce38c35101bb940e"}, + {file = "SQLAlchemy-1.4.41-cp310-cp310-win32.whl", hash = "sha256:2082a2d2fca363a3ce21cfa3d068c5a1ce4bf720cf6497fb3a9fc643a8ee4ddd"}, + {file = "SQLAlchemy-1.4.41-cp310-cp310-win_amd64.whl", hash = "sha256:e4b12e3d88a8fffd0b4ca559f6d4957ed91bd4c0613a4e13846ab8729dc5c251"}, + {file = "SQLAlchemy-1.4.41-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:90484a2b00baedad361402c257895b13faa3f01780f18f4a104a2f5c413e4536"}, + {file = "SQLAlchemy-1.4.41-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b67fc780cfe2b306180e56daaa411dd3186bf979d50a6a7c2a5b5036575cbdbb"}, + {file = "SQLAlchemy-1.4.41-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2ad2b727fc41c7f8757098903f85fafb4bf587ca6605f82d9bf5604bd9c7cded"}, + {file = "SQLAlchemy-1.4.41-cp311-cp311-win32.whl", hash = "sha256:59bdc291165b6119fc6cdbc287c36f7f2859e6051dd923bdf47b4c55fd2f8bd0"}, + {file = "SQLAlchemy-1.4.41-cp311-cp311-win_amd64.whl", hash = "sha256:d2e054aed4645f9b755db85bc69fc4ed2c9020c19c8027976f66576b906a74f1"}, + {file = "SQLAlchemy-1.4.41-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:4ba7e122510bbc07258dc42be6ed45997efdf38129bde3e3f12649be70683546"}, + {file = "SQLAlchemy-1.4.41-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c0dcf127bb99458a9d211e6e1f0f3edb96c874dd12f2503d4d8e4f1fd103790b"}, + {file = "SQLAlchemy-1.4.41-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e16c2be5cb19e2c08da7bd3a87fed2a0d4e90065ee553a940c4fc1a0fb1ab72b"}, + {file = "SQLAlchemy-1.4.41-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5ebeeec5c14533221eb30bad716bc1fd32f509196318fb9caa7002c4a364e4c"}, + {file = "SQLAlchemy-1.4.41-cp36-cp36m-win32.whl", hash = "sha256:3e2ef592ac3693c65210f8b53d0edcf9f4405925adcfc031ff495e8d18169682"}, + {file = "SQLAlchemy-1.4.41-cp36-cp36m-win_amd64.whl", hash = "sha256:eb30cf008850c0a26b72bd1b9be6730830165ce049d239cfdccd906f2685f892"}, + {file = "SQLAlchemy-1.4.41-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:c23d64a0b28fc78c96289ffbd0d9d1abd48d267269b27f2d34e430ea73ce4b26"}, + {file = "SQLAlchemy-1.4.41-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8eb8897367a21b578b26f5713833836f886817ee2ffba1177d446fa3f77e67c8"}, + {file = "SQLAlchemy-1.4.41-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:14576238a5f89bcf504c5f0a388d0ca78df61fb42cb2af0efe239dc965d4f5c9"}, + {file = "SQLAlchemy-1.4.41-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:639e1ae8d48b3c86ffe59c0daa9a02e2bfe17ca3d2b41611b30a0073937d4497"}, + {file = "SQLAlchemy-1.4.41-cp37-cp37m-win32.whl", hash = "sha256:0005bd73026cd239fc1e8ccdf54db58b6193be9a02b3f0c5983808f84862c767"}, + {file = "SQLAlchemy-1.4.41-cp37-cp37m-win_amd64.whl", hash = "sha256:5323252be2bd261e0aa3f33cb3a64c45d76829989fa3ce90652838397d84197d"}, + {file = "SQLAlchemy-1.4.41-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:05f0de3a1dc3810a776275763764bb0015a02ae0f698a794646ebc5fb06fad33"}, + {file = "SQLAlchemy-1.4.41-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0002e829142b2af00b4eaa26c51728f3ea68235f232a2e72a9508a3116bd6ed0"}, + {file = "SQLAlchemy-1.4.41-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:22ff16cedab5b16a0db79f1bc99e46a6ddececb60c396562e50aab58ddb2871c"}, + {file = "SQLAlchemy-1.4.41-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ccfd238f766a5bb5ee5545a62dd03f316ac67966a6a658efb63eeff8158a4bbf"}, + {file = "SQLAlchemy-1.4.41-cp38-cp38-win32.whl", hash = "sha256:58bb65b3274b0c8a02cea9f91d6f44d0da79abc993b33bdedbfec98c8440175a"}, + {file = "SQLAlchemy-1.4.41-cp38-cp38-win_amd64.whl", hash = "sha256:ce8feaa52c1640de9541eeaaa8b5fb632d9d66249c947bb0d89dd01f87c7c288"}, + {file = "SQLAlchemy-1.4.41-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:199a73c31ac8ea59937cc0bf3dfc04392e81afe2ec8a74f26f489d268867846c"}, + {file = "SQLAlchemy-1.4.41-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4676d51c9f6f6226ae8f26dc83ec291c088fe7633269757d333978df78d931ab"}, + {file = "SQLAlchemy-1.4.41-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:036d8472356e1d5f096c5e0e1a7e0f9182140ada3602f8fff6b7329e9e7cfbcd"}, + {file = "SQLAlchemy-1.4.41-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2307495d9e0ea00d0c726be97a5b96615035854972cc538f6e7eaed23a35886c"}, + {file = "SQLAlchemy-1.4.41-cp39-cp39-win32.whl", hash = "sha256:9c56e19780cd1344fcd362fd6265a15f48aa8d365996a37fab1495cae8fcd97d"}, + {file = "SQLAlchemy-1.4.41-cp39-cp39-win_amd64.whl", hash = "sha256:f5fa526d027d804b1f85cdda1eb091f70bde6fb7d87892f6dd5a48925bc88898"}, + {file = "SQLAlchemy-1.4.41.tar.gz", hash = "sha256:0292f70d1797e3c54e862e6f30ae474014648bc9c723e14a2fda730adb0a9791"}, +] [package.dependencies] greenlet = {version = "!=0.4.17", markers = "python_version >= \"3\" and (platform_machine == \"aarch64\" or platform_machine == \"ppc64le\" or platform_machine == \"x86_64\" or platform_machine == \"amd64\" or platform_machine == \"AMD64\" or platform_machine == \"win32\" or platform_machine == \"WIN32\")"} @@ -1253,19 +3124,19 @@ aiomysql = ["aiomysql", "greenlet (!=0.4.17)"] aiosqlite = ["aiosqlite", "greenlet (!=0.4.17)", "typing_extensions (!=3.10.0.1)"] asyncio = ["greenlet (!=0.4.17)"] asyncmy = ["asyncmy (>=0.2.3,!=0.2.4)", "greenlet (!=0.4.17)"] -mariadb_connector = ["mariadb (>=1.0.1,!=1.1.2)"] +mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2)"] mssql = ["pyodbc"] -mssql_pymssql = ["pymssql"] -mssql_pyodbc = ["pyodbc"] +mssql-pymssql = ["pymssql"] +mssql-pyodbc = ["pyodbc"] mypy = ["mypy (>=0.910)", "sqlalchemy2-stubs"] mysql = ["mysqlclient (>=1.4.0)", "mysqlclient (>=1.4.0,<2)"] -mysql_connector = ["mysql-connector-python"] +mysql-connector = ["mysql-connector-python"] oracle = ["cx_oracle (>=7)", "cx_oracle (>=7,<8)"] postgresql = ["psycopg2 (>=2.7)"] -postgresql_asyncpg = ["asyncpg", "greenlet (!=0.4.17)"] -postgresql_pg8000 = ["pg8000 (>=1.16.6,!=1.29.0)"] -postgresql_psycopg2binary = ["psycopg2-binary"] -postgresql_psycopg2cffi = ["psycopg2cffi"] +postgresql-asyncpg = ["asyncpg", "greenlet (!=0.4.17)"] +postgresql-pg8000 = ["pg8000 (>=1.16.6,!=1.29.0)"] +postgresql-psycopg2binary = ["psycopg2-binary"] +postgresql-psycopg2cffi = ["psycopg2cffi"] pymysql = ["pymysql", "pymysql (<1)"] sqlcipher = ["sqlcipher3_binary"] @@ -1276,18 +3147,58 @@ description = "SQLAlchemy stubs and mypy plugin" category = "dev" optional = false python-versions = "*" +files = [ + {file = "sqlalchemy-stubs-0.3.tar.gz", hash = "sha256:a3318c810697164e8c818aa2d90bac570c1a0e752ced3ec25455b309c0bee8fd"}, + {file = "sqlalchemy_stubs-0.3-py3-none-any.whl", hash = "sha256:ca1250605a39648cc433f5c70cb1a6f9fe0b60bdda4c51e1f9a2ab3651daadc8"}, +] [package.dependencies] mypy = ">=0.720" typing-extensions = ">=3.7.4" +[[package]] +name = "sqlalchemy2-stubs" +version = "0.0.2a32" +description = "Typing Stubs for SQLAlchemy 1.4" +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "sqlalchemy2-stubs-0.0.2a32.tar.gz", hash = "sha256:2a2cfab71d35ac63bf21ad841d8610cd93a3bd4c6562848c538fa975585c2739"}, + {file = "sqlalchemy2_stubs-0.0.2a32-py3-none-any.whl", hash = "sha256:7f5fb30b0cf7c6b74c50c1d94df77ff32007afee8d80499752eb3fedffdbdfb8"}, +] + +[package.dependencies] +typing-extensions = ">=3.7.4" + +[[package]] +name = "sqlmodel" +version = "0.0.8" +description = "SQLModel, SQL databases in Python, designed for simplicity, compatibility, and robustness." +category = "main" +optional = false +python-versions = ">=3.6.1,<4.0.0" +files = [ + {file = "sqlmodel-0.0.8-py3-none-any.whl", hash = "sha256:0fd805719e0c5d4f22be32eb3ffc856eca3f7f20e8c7aa3e117ad91684b518ee"}, + {file = "sqlmodel-0.0.8.tar.gz", hash = "sha256:3371b4d1ad59d2ffd0c530582c2140b6c06b090b32af9b9c6412986d7b117036"}, +] + +[package.dependencies] +pydantic = ">=1.8.2,<2.0.0" +SQLAlchemy = ">=1.4.17,<=1.4.41" +sqlalchemy2-stubs = "*" + [[package]] name = "stack-data" -version = "0.6.1" +version = "0.6.2" description = "Extract data from python stack frames and tracebacks for informative displays" -category = "main" +category = "dev" optional = false python-versions = "*" +files = [ + {file = "stack_data-0.6.2-py3-none-any.whl", hash = "sha256:cbb2a53eb64e5785878201a97ed7c7b94883f48b87bfb0bbe8b623c74679e4a8"}, + {file = "stack_data-0.6.2.tar.gz", hash = "sha256:32d2dd0376772d01b6cb9fc996f3c8b57a357089dec328ed4b6553d037eaf815"}, +] [package.dependencies] asttokens = ">=2.1.0" @@ -1299,14 +3210,21 @@ tests = ["cython", "littleutils", "pygments", "pytest", "typeguard"] [[package]] name = "starlette" -version = "0.13.2" +version = "0.22.0" description = "The little ASGI library that shines." category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" +files = [ + {file = "starlette-0.22.0-py3-none-any.whl", hash = "sha256:b5eda991ad5f0ee5d8ce4c4540202a573bb6691ecd0c712262d0bc85cf8f2c50"}, + {file = "starlette-0.22.0.tar.gz", hash = "sha256:b092cbc365bea34dd6840b42861bdabb2f507f8671e642e8272d2442e08ea4ff"}, +] + +[package.dependencies] +anyio = ">=3.4.0,<5" [package.extras] -full = ["aiofiles", "graphene", "itsdangerous", "jinja2", "python-multipart", "pyyaml", "requests", "ujson"] +full = ["httpx (>=0.22.0)", "itsdangerous", "jinja2", "python-multipart", "pyyaml"] [[package]] name = "tenacity" @@ -1315,6 +3233,10 @@ description = "Retry code until it succeeds" category = "main" optional = false python-versions = "*" +files = [ + {file = "tenacity-6.3.1-py2.py3-none-any.whl", hash = "sha256:baed357d9f35ec64264d8a4bbf004c35058fad8795c5b0d8a7dc77ecdcbb8f39"}, + {file = "tenacity-6.3.1.tar.gz", hash = "sha256:e14d191fb0a309b563904bbc336582efe2037de437e543b38da749769b544d7f"}, +] [package.dependencies] six = ">=1.9.0" @@ -1329,6 +3251,10 @@ description = "Python Library for Tom's Obvious, Minimal Language" category = "dev" optional = false python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, + {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, +] [[package]] name = "tomli" @@ -1337,50 +3263,83 @@ description = "A lil' TOML parser" category = "dev" optional = false python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] [[package]] name = "tornado" version = "6.2" description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." -category = "main" +category = "dev" optional = false python-versions = ">= 3.7" +files = [ + {file = "tornado-6.2-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:20f638fd8cc85f3cbae3c732326e96addff0a15e22d80f049e00121651e82e72"}, + {file = "tornado-6.2-cp37-abi3-macosx_10_9_x86_64.whl", hash = "sha256:87dcafae3e884462f90c90ecc200defe5e580a7fbbb4365eda7c7c1eb809ebc9"}, + {file = "tornado-6.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ba09ef14ca9893954244fd872798b4ccb2367c165946ce2dd7376aebdde8e3ac"}, + {file = "tornado-6.2-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b8150f721c101abdef99073bf66d3903e292d851bee51910839831caba341a75"}, + {file = "tornado-6.2-cp37-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3a2f5999215a3a06a4fc218026cd84c61b8b2b40ac5296a6db1f1451ef04c1e"}, + {file = "tornado-6.2-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:5f8c52d219d4995388119af7ccaa0bcec289535747620116a58d830e7c25d8a8"}, + {file = "tornado-6.2-cp37-abi3-musllinux_1_1_i686.whl", hash = "sha256:6fdfabffd8dfcb6cf887428849d30cf19a3ea34c2c248461e1f7d718ad30b66b"}, + {file = "tornado-6.2-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:1d54d13ab8414ed44de07efecb97d4ef7c39f7438cf5e976ccd356bebb1b5fca"}, + {file = "tornado-6.2-cp37-abi3-win32.whl", hash = "sha256:5c87076709343557ef8032934ce5f637dbb552efa7b21d08e89ae7619ed0eb23"}, + {file = "tornado-6.2-cp37-abi3-win_amd64.whl", hash = "sha256:e5f923aa6a47e133d1cf87d60700889d7eae68988704e20c75fb2d65677a8e4b"}, + {file = "tornado-6.2.tar.gz", hash = "sha256:9b630419bde84ec666bfd7ea0a4cb2a8a651c2d5cccdbdd1972a0c859dfc3c13"}, +] [[package]] name = "traitlets" -version = "5.5.0" -description = "" -category = "main" +version = "5.9.0" +description = "Traitlets Python configuration system" +category = "dev" optional = false python-versions = ">=3.7" +files = [ + {file = "traitlets-5.9.0-py3-none-any.whl", hash = "sha256:9e6ec080259b9a5940c797d58b613b5e31441c2257b87c2e795c5228ae80d2d8"}, + {file = "traitlets-5.9.0.tar.gz", hash = "sha256:f6cde21a9c68cf756af02035f72d5a723bf607e862e7be33ece505abf4a3bad9"}, +] [package.extras] docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"] -test = ["pre-commit", "pytest"] - -[[package]] -name = "typed-ast" -version = "1.4.3" -description = "a fork of Python 2 and 3 ast modules with type comment support" -category = "dev" -optional = false -python-versions = "*" +test = ["argcomplete (>=2.0)", "pre-commit", "pytest", "pytest-mock"] [[package]] name = "typing-extensions" -version = "4.4.0" +version = "4.5.0" description = "Backported and Experimental Type Hints for Python 3.7+" category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.5.0-py3-none-any.whl", hash = "sha256:fb33085c39dd998ac16d1431ebc293a8b3eedd00fd4a32de0ff79002c19511b4"}, + {file = "typing_extensions-4.5.0.tar.gz", hash = "sha256:5cb5f4a79139d699607b3ef622a1dedafa84e115ab0024e0d9c044a9479ca7cb"}, +] + +[[package]] +name = "unidecode" +version = "1.3.6" +description = "ASCII transliterations of Unicode text" +category = "main" +optional = false +python-versions = ">=3.5" +files = [ + {file = "Unidecode-1.3.6-py3-none-any.whl", hash = "sha256:547d7c479e4f377b430dd91ac1275d593308dce0fc464fb2ab7d41f82ec653be"}, + {file = "Unidecode-1.3.6.tar.gz", hash = "sha256:fed09cf0be8cf415b391642c2a5addfc72194407caee4f98719e40ec2a72b830"}, +] [[package]] name = "urllib3" -version = "1.26.12" +version = "1.26.14" description = "HTTP library with thread-safe connection pooling, file post, and more." category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4" +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +files = [ + {file = "urllib3-1.26.14-py2.py3-none-any.whl", hash = "sha256:75edcdc2f7d85b137124a6c3c9fc3933cdeaa12ecb9a6a959f22797a0feca7e1"}, + {file = "urllib3-1.26.14.tar.gz", hash = "sha256:076907bf8fd355cde77728471316625a4d2f7e713c125f51953bb5b3eecf4f72"}, +] [package.extras] brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] @@ -1389,34 +3348,22 @@ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] [[package]] name = "uvicorn" -version = "0.11.8" +version = "0.20.0" description = "The lightning-fast ASGI server." category = "main" optional = false -python-versions = "*" +python-versions = ">=3.7" +files = [ + {file = "uvicorn-0.20.0-py3-none-any.whl", hash = "sha256:c3ed1598a5668208723f2bb49336f4509424ad198d6ab2615b7783db58d919fd"}, + {file = "uvicorn-0.20.0.tar.gz", hash = "sha256:a4e12017b940247f836bc90b72e725d7dfd0c8ed1c51eb365f5ba30d9f5127d8"}, +] [package.dependencies] -click = ">=7.0.0,<8.0.0" -h11 = ">=0.8,<0.10" -httptools = {version = ">=0.1.0,<0.2.0", markers = "sys_platform != \"win32\" and sys_platform != \"cygwin\" and platform_python_implementation != \"PyPy\""} -uvloop = {version = ">=0.14.0", markers = "sys_platform != \"win32\" and sys_platform != \"cygwin\" and platform_python_implementation != \"PyPy\""} -websockets = ">=8.0.0,<9.0.0" +click = ">=7.0" +h11 = ">=0.8" [package.extras] -watchgodreload = ["watchgod (>=0.6,<0.7)"] - -[[package]] -name = "uvloop" -version = "0.17.0" -description = "Fast implementation of asyncio event loop on top of libuv" -category = "main" -optional = false -python-versions = ">=3.7" - -[package.extras] -dev = ["Cython (>=0.29.32,<0.30.0)", "Sphinx (>=4.1.2,<4.2.0)", "aiohttp", "flake8 (>=3.9.2,<3.10.0)", "mypy (>=0.800)", "psutil", "pyOpenSSL (>=22.0.0,<22.1.0)", "pycodestyle (>=2.7.0,<2.8.0)", "pytest (>=3.6.0)", "sphinx-rtd-theme (>=0.5.2,<0.6.0)", "sphinxcontrib-asyncio (>=0.3.0,<0.4.0)"] -docs = ["Sphinx (>=4.1.2,<4.2.0)", "sphinx-rtd-theme (>=0.5.2,<0.6.0)", "sphinxcontrib-asyncio (>=0.3.0,<0.4.0)"] -test = ["Cython (>=0.29.32,<0.30.0)", "aiohttp", "flake8 (>=3.9.2,<3.10.0)", "mypy (>=0.800)", "psutil", "pyOpenSSL (>=22.0.0,<22.1.0)", "pycodestyle (>=2.7.0,<2.8.0)"] +standard = ["colorama (>=0.4)", "httptools (>=0.5.0)", "python-dotenv (>=0.13)", "pyyaml (>=5.1)", "uvloop (>=0.14.0,!=0.15.0,!=0.15.1)", "watchfiles (>=0.13)", "websockets (>=10.4)"] [[package]] name = "vine" @@ -1425,1252 +3372,128 @@ description = "Promises, promises, promises." category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "vine-1.3.0-py2.py3-none-any.whl", hash = "sha256:ea4947cc56d1fd6f2095c8d543ee25dad966f78692528e68b4fada11ba3f98af"}, + {file = "vine-1.3.0.tar.gz", hash = "sha256:133ee6d7a9016f177ddeaf191c1f58421a1dcc6ee9a42c58b34bed40e1d2cd87"}, +] [[package]] name = "wcwidth" -version = "0.2.5" +version = "0.2.6" description = "Measures the displayed width of unicode strings in a terminal" -category = "main" +category = "dev" optional = false python-versions = "*" +files = [ + {file = "wcwidth-0.2.6.tar.gz", hash = "sha256:a5220780a404dbe3353789870978e472cfe477761f06ee55077256e509b156d0"}, +] [[package]] -name = "websockets" -version = "8.1" -description = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)" +name = "websocket-client" +version = "1.5.1" +description = "WebSocket client for Python with low level API options" category = "main" optional = false -python-versions = ">=3.6.1" +python-versions = ">=3.7" +files = [ + {file = "websocket-client-1.5.1.tar.gz", hash = "sha256:3f09e6d8230892547132177f575a4e3e73cfdf06526e20cc02aa1c3b47184d40"}, + {file = "websocket_client-1.5.1-py3-none-any.whl", hash = "sha256:cdf5877568b7e83aa7cf2244ab56a3213de587bbe0ce9d8b9600fc77b455d89e"}, +] -[metadata] -lock-version = "1.1" -python-versions = "^3.10" -content-hash = "510e346045a263ffc8dec4be301e5546a64ee46e4056bb3f2f09be5e7a17dcee" +[package.extras] +docs = ["Sphinx (>=3.4)", "sphinx-rtd-theme (>=0.5)"] +optional = ["python-socks", "wsaccel"] +test = ["websockets"] -[metadata.files] -alembic = [ - {file = "alembic-1.8.1-py3-none-any.whl", hash = "sha256:0a024d7f2de88d738d7395ff866997314c837be6104e90c5724350313dee4da4"}, - {file = "alembic-1.8.1.tar.gz", hash = "sha256:cd0b5e45b14b706426b833f06369b9a6d5ee03f826ec3238723ce8caaf6e5ffa"}, -] -amqp = [ - {file = "amqp-2.6.1-py2.py3-none-any.whl", hash = "sha256:aa7f313fb887c91f15474c1229907a04dac0b8135822d6603437803424c0aa59"}, - {file = "amqp-2.6.1.tar.gz", hash = "sha256:70cdb10628468ff14e57ec2f751c7aa9e48e7e3651cfd62d431213c0c4e58f21"}, -] -appdirs = [ - {file = "appdirs-1.4.4-py2.py3-none-any.whl", hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128"}, - {file = "appdirs-1.4.4.tar.gz", hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41"}, -] -appnope = [ - {file = "appnope-0.1.3-py2.py3-none-any.whl", hash = "sha256:265a455292d0bd8a72453494fa24df5a11eb18373a60c7c0430889f22548605e"}, - {file = "appnope-0.1.3.tar.gz", hash = "sha256:02bd91c4de869fbb1e1c50aafc4098827a7a54ab2f39d9dcba6c9547ed920e24"}, -] -asttokens = [ - {file = "asttokens-2.1.0-py2.py3-none-any.whl", hash = "sha256:1b28ed85e254b724439afc783d4bee767f780b936c3fe8b3275332f42cf5f561"}, - {file = "asttokens-2.1.0.tar.gz", hash = "sha256:4aa76401a151c8cc572d906aad7aea2a841780834a19d780f4321c0fe1b54635"}, -] -atomicwrites = [ - {file = "atomicwrites-1.4.1.tar.gz", hash = "sha256:81b2c9071a49367a7f770170e5eec8cb66567cfbbc8c73d20ce5ca4a8d71cf11"}, -] -attrs = [ - {file = "attrs-22.1.0-py2.py3-none-any.whl", hash = "sha256:86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c"}, - {file = "attrs-22.1.0.tar.gz", hash = "sha256:29adc2665447e5191d0e7c568fde78b21f9672d344281d0c6e1ab085429b22b6"}, -] -autoflake = [ - {file = "autoflake-1.7.7-py3-none-any.whl", hash = "sha256:a9b43d08f8e455824e4f7b3f078399f59ba538ba53872f466c09e55c827773ef"}, - {file = "autoflake-1.7.7.tar.gz", hash = "sha256:c8e4fc41aa3eae0f5c94b939e3a3d50923d7a9306786a6cbf4866a077b8f6832"}, -] -backcall = [ - {file = "backcall-0.2.0-py2.py3-none-any.whl", hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255"}, - {file = "backcall-0.2.0.tar.gz", hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e"}, -] -bcrypt = [ - {file = "bcrypt-4.0.1-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:b1023030aec778185a6c16cf70f359cbb6e0c289fd564a7cfa29e727a1c38f8f"}, - {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:08d2947c490093a11416df18043c27abe3921558d2c03e2076ccb28a116cb6d0"}, - {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0eaa47d4661c326bfc9d08d16debbc4edf78778e6aaba29c1bc7ce67214d4410"}, - {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ae88eca3024bb34bb3430f964beab71226e761f51b912de5133470b649d82344"}, - {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_24_x86_64.whl", hash = "sha256:a522427293d77e1c29e303fc282e2d71864579527a04ddcfda6d4f8396c6c36a"}, - {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:fbdaec13c5105f0c4e5c52614d04f0bca5f5af007910daa8b6b12095edaa67b3"}, - {file = "bcrypt-4.0.1-cp36-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:ca3204d00d3cb2dfed07f2d74a25f12fc12f73e606fcaa6975d1f7ae69cacbb2"}, - {file = "bcrypt-4.0.1-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:089098effa1bc35dc055366740a067a2fc76987e8ec75349eb9484061c54f535"}, - {file = "bcrypt-4.0.1-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:e9a51bbfe7e9802b5f3508687758b564069ba937748ad7b9e890086290d2f79e"}, - {file = "bcrypt-4.0.1-cp36-abi3-win32.whl", hash = "sha256:2caffdae059e06ac23fce178d31b4a702f2a3264c20bfb5ff541b338194d8fab"}, - {file = "bcrypt-4.0.1-cp36-abi3-win_amd64.whl", hash = "sha256:8a68f4341daf7522fe8d73874de8906f3a339048ba406be6ddc1b3ccb16fc0d9"}, - {file = "bcrypt-4.0.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf4fa8b2ca74381bb5442c089350f09a3f17797829d958fad058d6e44d9eb83c"}, - {file = "bcrypt-4.0.1-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:67a97e1c405b24f19d08890e7ae0c4f7ce1e56a712a016746c8b2d7732d65d4b"}, - {file = "bcrypt-4.0.1-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b3b85202d95dd568efcb35b53936c5e3b3600c7cdcc6115ba461df3a8e89f38d"}, - {file = "bcrypt-4.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbb03eec97496166b704ed663a53680ab57c5084b2fc98ef23291987b525cb7d"}, - {file = "bcrypt-4.0.1-pp38-pypy38_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:5ad4d32a28b80c5fa6671ccfb43676e8c1cc232887759d1cd7b6f56ea4355215"}, - {file = "bcrypt-4.0.1-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b57adba8a1444faf784394de3436233728a1ecaeb6e07e8c22c8848f179b893c"}, - {file = "bcrypt-4.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:705b2cea8a9ed3d55b4491887ceadb0106acf7c6387699fca771af56b1cdeeda"}, - {file = "bcrypt-4.0.1-pp39-pypy39_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:2b3ac11cf45161628f1f3733263e63194f22664bf4d0c0f3ab34099c02134665"}, - {file = "bcrypt-4.0.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:3100851841186c25f127731b9fa11909ab7b1df6fc4b9f8353f4f1fd952fbf71"}, - {file = "bcrypt-4.0.1.tar.gz", hash = "sha256:27d375903ac8261cfe4047f6709d16f7d18d39b1ec92aaf72af989552a650ebd"}, -] -billiard = [ - {file = "billiard-3.6.4.0-py3-none-any.whl", hash = "sha256:87103ea78fa6ab4d5c751c4909bcff74617d985de7fa8b672cf8618afd5a875b"}, - {file = "billiard-3.6.4.0.tar.gz", hash = "sha256:299de5a8da28a783d51b197d496bef4f1595dd023a93a4f59dde1886ae905547"}, -] -black = [ - {file = "black-19.10b0-py36-none-any.whl", hash = "sha256:1b30e59be925fafc1ee4565e5e08abef6b03fe455102883820fe5ee2e4734e0b"}, - {file = "black-19.10b0.tar.gz", hash = "sha256:c2edb73a08e9e0e6f65a0e6af18b059b8b1cdd5bef997d7a0b181df93dc81539"}, -] -boto3 = [ - {file = "boto3-1.26.8-py3-none-any.whl", hash = "sha256:c02fc93a926944b4b426a170d2dae274b4c8c09ec5259450b94269a8ce990dd7"}, - {file = "boto3-1.26.8.tar.gz", hash = "sha256:b39303fdda9b5d77a152e3ec9f264ae318ccdaa853eaf694626dc335464ded98"}, -] -botocore = [ - {file = "botocore-1.29.8-py3-none-any.whl", hash = "sha256:9c6adcf4e080be63b92f50d01e176ef2d1d2a3da7d8387a964abb9eb65fc8aad"}, - {file = "botocore-1.29.8.tar.gz", hash = "sha256:48cf33d7c513320711321c3b303b0c9810b23e15fa03424f7323883e4ce6cef8"}, -] -cachetools = [ - {file = "cachetools-5.2.0-py3-none-any.whl", hash = "sha256:f9f17d2aec496a9aa6b76f53e3b614c965223c061982d434d160f930c698a9db"}, - {file = "cachetools-5.2.0.tar.gz", hash = "sha256:6a94c6402995a99c3970cc7e4884bb60b4a8639938157eeed436098bf9831757"}, -] -celery = [ - {file = "celery-4.4.7-py2.py3-none-any.whl", hash = "sha256:a92e1d56e650781fb747032a3997d16236d037c8199eacd5217d1a72893bca45"}, - {file = "celery-4.4.7.tar.gz", hash = "sha256:d220b13a8ed57c78149acf82c006785356071844afe0b27012a4991d44026f9f"}, -] -certifi = [ - {file = "certifi-2022.9.24-py3-none-any.whl", hash = "sha256:90c1a32f1d68f940488354e36370f6cca89f0f106db09518524c88d6ed83f382"}, - {file = "certifi-2022.9.24.tar.gz", hash = "sha256:0d9c601124e5a6ba9712dbc60d9c53c21e34f5f641fe83002317394311bdce14"}, -] -cffi = [ - {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, - {file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2"}, - {file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914"}, - {file = "cffi-1.15.1-cp27-cp27m-win32.whl", hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3"}, - {file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e"}, - {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162"}, - {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b"}, - {file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21"}, - {file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4"}, - {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01"}, - {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e"}, - {file = "cffi-1.15.1-cp310-cp310-win32.whl", hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2"}, - {file = "cffi-1.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d"}, - {file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac"}, - {file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c"}, - {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef"}, - {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8"}, - {file = "cffi-1.15.1-cp311-cp311-win32.whl", hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d"}, - {file = "cffi-1.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104"}, - {file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e"}, - {file = "cffi-1.15.1-cp36-cp36m-win32.whl", hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf"}, - {file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl", hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497"}, - {file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426"}, - {file = "cffi-1.15.1-cp37-cp37m-win32.whl", hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9"}, - {file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045"}, - {file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192"}, - {file = "cffi-1.15.1-cp38-cp38-win32.whl", hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314"}, - {file = "cffi-1.15.1-cp38-cp38-win_amd64.whl", hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5"}, - {file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585"}, - {file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27"}, - {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76"}, - {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3"}, - {file = "cffi-1.15.1-cp39-cp39-win32.whl", hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee"}, - {file = "cffi-1.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c"}, - {file = "cffi-1.15.1.tar.gz", hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9"}, -] -chardet = [ - {file = "chardet-5.0.0-py3-none-any.whl", hash = "sha256:d3e64f022d254183001eccc5db4040520c0f23b1a3f33d6413e099eb7f126557"}, - {file = "chardet-5.0.0.tar.gz", hash = "sha256:0368df2bfd78b5fc20572bb4e9bb7fb53e2c094f60ae9993339e8671d0afb8aa"}, -] -charset-normalizer = [ - {file = "charset-normalizer-2.1.1.tar.gz", hash = "sha256:5a3d016c7c547f69d6f81fb0db9449ce888b418b5b9952cc5e6e66843e9dd845"}, - {file = "charset_normalizer-2.1.1-py3-none-any.whl", hash = "sha256:83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f"}, -] -click = [ - {file = "click-7.1.2-py2.py3-none-any.whl", hash = "sha256:dacca89f4bfadd5de3d7489b7c8a566eee0d3676333fbb50030263894c38c0dc"}, - {file = "click-7.1.2.tar.gz", hash = "sha256:d2b5255c7c6349bc1bd1e59e08cd12acbbd63ce649f2588755783aa94dfb6b1a"}, -] -colorama = [ - {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, - {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, -] -coverage = [ - {file = "coverage-6.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ef8674b0ee8cc11e2d574e3e2998aea5df5ab242e012286824ea3c6970580e53"}, - {file = "coverage-6.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:784f53ebc9f3fd0e2a3f6a78b2be1bd1f5575d7863e10c6e12504f240fd06660"}, - {file = "coverage-6.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4a5be1748d538a710f87542f22c2cad22f80545a847ad91ce45e77417293eb4"}, - {file = "coverage-6.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:83516205e254a0cb77d2d7bb3632ee019d93d9f4005de31dca0a8c3667d5bc04"}, - {file = "coverage-6.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af4fffaffc4067232253715065e30c5a7ec6faac36f8fc8d6f64263b15f74db0"}, - {file = "coverage-6.5.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:97117225cdd992a9c2a5515db1f66b59db634f59d0679ca1fa3fe8da32749cae"}, - {file = "coverage-6.5.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:a1170fa54185845505fbfa672f1c1ab175446c887cce8212c44149581cf2d466"}, - {file = "coverage-6.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:11b990d520ea75e7ee8dcab5bc908072aaada194a794db9f6d7d5cfd19661e5a"}, - {file = "coverage-6.5.0-cp310-cp310-win32.whl", hash = "sha256:5dbec3b9095749390c09ab7c89d314727f18800060d8d24e87f01fb9cfb40b32"}, - {file = "coverage-6.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:59f53f1dc5b656cafb1badd0feb428c1e7bc19b867479ff72f7a9dd9b479f10e"}, - {file = "coverage-6.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4a5375e28c5191ac38cca59b38edd33ef4cc914732c916f2929029b4bfb50795"}, - {file = "coverage-6.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4ed2820d919351f4167e52425e096af41bfabacb1857186c1ea32ff9983ed75"}, - {file = "coverage-6.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:33a7da4376d5977fbf0a8ed91c4dffaaa8dbf0ddbf4c8eea500a2486d8bc4d7b"}, - {file = "coverage-6.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8fb6cf131ac4070c9c5a3e21de0f7dc5a0fbe8bc77c9456ced896c12fcdad91"}, - {file = "coverage-6.5.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a6b7d95969b8845250586f269e81e5dfdd8ff828ddeb8567a4a2eaa7313460c4"}, - {file = "coverage-6.5.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:1ef221513e6f68b69ee9e159506d583d31aa3567e0ae84eaad9d6ec1107dddaa"}, - {file = "coverage-6.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cca4435eebea7962a52bdb216dec27215d0df64cf27fc1dd538415f5d2b9da6b"}, - {file = "coverage-6.5.0-cp311-cp311-win32.whl", hash = "sha256:98e8a10b7a314f454d9eff4216a9a94d143a7ee65018dd12442e898ee2310578"}, - {file = "coverage-6.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:bc8ef5e043a2af066fa8cbfc6e708d58017024dc4345a1f9757b329a249f041b"}, - {file = "coverage-6.5.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:4433b90fae13f86fafff0b326453dd42fc9a639a0d9e4eec4d366436d1a41b6d"}, - {file = "coverage-6.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f4f05d88d9a80ad3cac6244d36dd89a3c00abc16371769f1340101d3cb899fc3"}, - {file = "coverage-6.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:94e2565443291bd778421856bc975d351738963071e9b8839ca1fc08b42d4bef"}, - {file = "coverage-6.5.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:027018943386e7b942fa832372ebc120155fd970837489896099f5cfa2890f79"}, - {file = "coverage-6.5.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:255758a1e3b61db372ec2736c8e2a1fdfaf563977eedbdf131de003ca5779b7d"}, - {file = "coverage-6.5.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:851cf4ff24062c6aec510a454b2584f6e998cada52d4cb58c5e233d07172e50c"}, - {file = "coverage-6.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:12adf310e4aafddc58afdb04d686795f33f4d7a6fa67a7a9d4ce7d6ae24d949f"}, - {file = "coverage-6.5.0-cp37-cp37m-win32.whl", hash = "sha256:b5604380f3415ba69de87a289a2b56687faa4fe04dbee0754bfcae433489316b"}, - {file = "coverage-6.5.0-cp37-cp37m-win_amd64.whl", hash = "sha256:4a8dbc1f0fbb2ae3de73eb0bdbb914180c7abfbf258e90b311dcd4f585d44bd2"}, - {file = "coverage-6.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d900bb429fdfd7f511f868cedd03a6bbb142f3f9118c09b99ef8dc9bf9643c3c"}, - {file = "coverage-6.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2198ea6fc548de52adc826f62cb18554caedfb1d26548c1b7c88d8f7faa8f6ba"}, - {file = "coverage-6.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c4459b3de97b75e3bd6b7d4b7f0db13f17f504f3d13e2a7c623786289dd670e"}, - {file = "coverage-6.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:20c8ac5386253717e5ccc827caad43ed66fea0efe255727b1053a8154d952398"}, - {file = "coverage-6.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b07130585d54fe8dff3d97b93b0e20290de974dc8177c320aeaf23459219c0b"}, - {file = "coverage-6.5.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:dbdb91cd8c048c2b09eb17713b0c12a54fbd587d79adcebad543bc0cd9a3410b"}, - {file = "coverage-6.5.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:de3001a203182842a4630e7b8d1a2c7c07ec1b45d3084a83d5d227a3806f530f"}, - {file = "coverage-6.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:e07f4a4a9b41583d6eabec04f8b68076ab3cd44c20bd29332c6572dda36f372e"}, - {file = "coverage-6.5.0-cp38-cp38-win32.whl", hash = "sha256:6d4817234349a80dbf03640cec6109cd90cba068330703fa65ddf56b60223a6d"}, - {file = "coverage-6.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:7ccf362abd726b0410bf8911c31fbf97f09f8f1061f8c1cf03dfc4b6372848f6"}, - {file = "coverage-6.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:633713d70ad6bfc49b34ead4060531658dc6dfc9b3eb7d8a716d5873377ab745"}, - {file = "coverage-6.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:95203854f974e07af96358c0b261f1048d8e1083f2de9b1c565e1be4a3a48cfc"}, - {file = "coverage-6.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9023e237f4c02ff739581ef35969c3739445fb059b060ca51771e69101efffe"}, - {file = "coverage-6.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:265de0fa6778d07de30bcf4d9dc471c3dc4314a23a3c6603d356a3c9abc2dfcf"}, - {file = "coverage-6.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f830ed581b45b82451a40faabb89c84e1a998124ee4212d440e9c6cf70083e5"}, - {file = "coverage-6.5.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7b6be138d61e458e18d8e6ddcddd36dd96215edfe5f1168de0b1b32635839b62"}, - {file = "coverage-6.5.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:42eafe6778551cf006a7c43153af1211c3aaab658d4d66fa5fcc021613d02518"}, - {file = "coverage-6.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:723e8130d4ecc8f56e9a611e73b31219595baa3bb252d539206f7bbbab6ffc1f"}, - {file = "coverage-6.5.0-cp39-cp39-win32.whl", hash = "sha256:d9ecf0829c6a62b9b573c7bb6d4dcd6ba8b6f80be9ba4fc7ed50bf4ac9aecd72"}, - {file = "coverage-6.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:fc2af30ed0d5ae0b1abdb4ebdce598eafd5b35397d4d75deb341a614d333d987"}, - {file = "coverage-6.5.0-pp36.pp37.pp38-none-any.whl", hash = "sha256:1431986dac3923c5945271f169f59c45b8802a114c8f548d611f2015133df77a"}, - {file = "coverage-6.5.0.tar.gz", hash = "sha256:f642e90754ee3e06b0e7e51bce3379590e76b7f76b708e1a71ff043f87025c84"}, -] -cryptography = [ - {file = "cryptography-38.0.3-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:984fe150f350a3c91e84de405fe49e688aa6092b3525f407a18b9646f6612320"}, - {file = "cryptography-38.0.3-cp36-abi3-macosx_10_10_x86_64.whl", hash = "sha256:ed7b00096790213e09eb11c97cc6e2b757f15f3d2f85833cd2d3ec3fe37c1722"}, - {file = "cryptography-38.0.3-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:bbf203f1a814007ce24bd4d51362991d5cb90ba0c177a9c08825f2cc304d871f"}, - {file = "cryptography-38.0.3-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:554bec92ee7d1e9d10ded2f7e92a5d70c1f74ba9524947c0ba0c850c7b011828"}, - {file = "cryptography-38.0.3-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1b52c9e5f8aa2b802d48bd693190341fae201ea51c7a167d69fc48b60e8a959"}, - {file = "cryptography-38.0.3-cp36-abi3-manylinux_2_24_x86_64.whl", hash = "sha256:728f2694fa743a996d7784a6194da430f197d5c58e2f4e278612b359f455e4a2"}, - {file = "cryptography-38.0.3-cp36-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:dfb4f4dd568de1b6af9f4cda334adf7d72cf5bc052516e1b2608b683375dd95c"}, - {file = "cryptography-38.0.3-cp36-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:5419a127426084933076132d317911e3c6eb77568a1ce23c3ac1e12d111e61e0"}, - {file = "cryptography-38.0.3-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:9b24bcff7853ed18a63cfb0c2b008936a9554af24af2fb146e16d8e1aed75748"}, - {file = "cryptography-38.0.3-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:25c1d1f19729fb09d42e06b4bf9895212292cb27bb50229f5aa64d039ab29146"}, - {file = "cryptography-38.0.3-cp36-abi3-win32.whl", hash = "sha256:7f836217000342d448e1c9a342e9163149e45d5b5eca76a30e84503a5a96cab0"}, - {file = "cryptography-38.0.3-cp36-abi3-win_amd64.whl", hash = "sha256:c46837ea467ed1efea562bbeb543994c2d1f6e800785bd5a2c98bc096f5cb220"}, - {file = "cryptography-38.0.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06fc3cc7b6f6cca87bd56ec80a580c88f1da5306f505876a71c8cfa7050257dd"}, - {file = "cryptography-38.0.3-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:65535bc550b70bd6271984d9863a37741352b4aad6fb1b3344a54e6950249b55"}, - {file = "cryptography-38.0.3-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:5e89468fbd2fcd733b5899333bc54d0d06c80e04cd23d8c6f3e0542358c6060b"}, - {file = "cryptography-38.0.3-pp38-pypy38_pp73-macosx_10_10_x86_64.whl", hash = "sha256:6ab9516b85bebe7aa83f309bacc5f44a61eeb90d0b4ec125d2d003ce41932d36"}, - {file = "cryptography-38.0.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:068147f32fa662c81aebab95c74679b401b12b57494872886eb5c1139250ec5d"}, - {file = "cryptography-38.0.3-pp38-pypy38_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:402852a0aea73833d982cabb6d0c3bb582c15483d29fb7085ef2c42bfa7e38d7"}, - {file = "cryptography-38.0.3-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b1b35d9d3a65542ed2e9d90115dfd16bbc027b3f07ee3304fc83580f26e43249"}, - {file = "cryptography-38.0.3-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:6addc3b6d593cd980989261dc1cce38263c76954d758c3c94de51f1e010c9a50"}, - {file = "cryptography-38.0.3-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:be243c7e2bfcf6cc4cb350c0d5cdf15ca6383bbcb2a8ef51d3c9411a9d4386f0"}, - {file = "cryptography-38.0.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78cf5eefac2b52c10398a42765bfa981ce2372cbc0457e6bf9658f41ec3c41d8"}, - {file = "cryptography-38.0.3-pp39-pypy39_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:4e269dcd9b102c5a3d72be3c45d8ce20377b8076a43cbed6f660a1afe365e436"}, - {file = "cryptography-38.0.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:8d41a46251bf0634e21fac50ffd643216ccecfaf3701a063257fe0b2be1b6548"}, - {file = "cryptography-38.0.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:785e4056b5a8b28f05a533fab69febf5004458e20dad7e2e13a3120d8ecec75a"}, - {file = "cryptography-38.0.3.tar.gz", hash = "sha256:bfbe6ee19615b07a98b1d2287d6a6073f734735b49ee45b11324d85efc4d5cbd"}, -] -cssselect = [ - {file = "cssselect-1.2.0-py2.py3-none-any.whl", hash = "sha256:da1885f0c10b60c03ed5eccbb6b68d6eff248d91976fcde348f395d54c9fd35e"}, - {file = "cssselect-1.2.0.tar.gz", hash = "sha256:666b19839cfaddb9ce9d36bfe4c969132c647b92fc9088c4e23f786b30f1b3dc"}, -] -cssutils = [ - {file = "cssutils-2.6.0-py3-none-any.whl", hash = "sha256:30c72f3a5c5951a11151640600aae7b3bf10e4c0d5c87f5bc505c2cd4a26e0c2"}, - {file = "cssutils-2.6.0.tar.gz", hash = "sha256:f7dcd23c1cec909fdf3630de346e1413b7b2555936dec14ba2ebb9913bf0818e"}, -] -debugpy = [ - {file = "debugpy-1.6.3-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:c4b2bd5c245eeb49824bf7e539f95fb17f9a756186e51c3e513e32999d8846f3"}, - {file = "debugpy-1.6.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b8deaeb779699350deeed835322730a3efec170b88927debc9ba07a1a38e2585"}, - {file = "debugpy-1.6.3-cp310-cp310-win32.whl", hash = "sha256:fc233a0160f3b117b20216f1169e7211b83235e3cd6749bcdd8dbb72177030c7"}, - {file = "debugpy-1.6.3-cp310-cp310-win_amd64.whl", hash = "sha256:dda8652520eae3945833e061cbe2993ad94a0b545aebd62e4e6b80ee616c76b2"}, - {file = "debugpy-1.6.3-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:d5c814596a170a0a58fa6fad74947e30bfd7e192a5d2d7bd6a12156c2899e13a"}, - {file = "debugpy-1.6.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c4cd6f37e3c168080d61d698390dfe2cd9e74ebf80b448069822a15dadcda57d"}, - {file = "debugpy-1.6.3-cp37-cp37m-win32.whl", hash = "sha256:3c9f985944a30cfc9ae4306ac6a27b9c31dba72ca943214dad4a0ab3840f6161"}, - {file = "debugpy-1.6.3-cp37-cp37m-win_amd64.whl", hash = "sha256:5ad571a36cec137ae6ed951d0ff75b5e092e9af6683da084753231150cbc5b25"}, - {file = "debugpy-1.6.3-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:adcfea5ea06d55d505375995e150c06445e2b20cd12885bcae566148c076636b"}, - {file = "debugpy-1.6.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:daadab4403427abd090eccb38d8901afd8b393e01fd243048fab3f1d7132abb4"}, - {file = "debugpy-1.6.3-cp38-cp38-win32.whl", hash = "sha256:6efc30325b68e451118b795eff6fe8488253ca3958251d5158106d9c87581bc6"}, - {file = "debugpy-1.6.3-cp38-cp38-win_amd64.whl", hash = "sha256:86d784b72c5411c833af1cd45b83d80c252b77c3bfdb43db17c441d772f4c734"}, - {file = "debugpy-1.6.3-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:4e255982552b0edfe3a6264438dbd62d404baa6556a81a88f9420d3ed79b06ae"}, - {file = "debugpy-1.6.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cca23cb6161ac89698d629d892520327dd1be9321c0960e610bbcb807232b45d"}, - {file = "debugpy-1.6.3-cp39-cp39-win32.whl", hash = "sha256:7c302095a81be0d5c19f6529b600bac971440db3e226dce85347cc27e6a61908"}, - {file = "debugpy-1.6.3-cp39-cp39-win_amd64.whl", hash = "sha256:34d2cdd3a7c87302ba5322b86e79c32c2115be396f3f09ca13306d8a04fe0f16"}, - {file = "debugpy-1.6.3-py2.py3-none-any.whl", hash = "sha256:84c39940a0cac410bf6aa4db00ba174f973eef521fbe9dd058e26bcabad89c4f"}, - {file = "debugpy-1.6.3.zip", hash = "sha256:e8922090514a890eec99cfb991bab872dd2e353ebb793164d5f01c362b9a40bf"}, -] -decorator = [ - {file = "decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186"}, - {file = "decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330"}, -] -dnspython = [ - {file = "dnspython-2.2.1-py3-none-any.whl", hash = "sha256:a851e51367fb93e9e1361732c1d60dab63eff98712e503ea7d92e6eccb109b4f"}, - {file = "dnspython-2.2.1.tar.gz", hash = "sha256:0f7569a4a6ff151958b64304071d370daa3243d15941a7beedf0c9fe5105603e"}, -] -ecdsa = [ - {file = "ecdsa-0.18.0-py2.py3-none-any.whl", hash = "sha256:80600258e7ed2f16b9aa1d7c295bd70194109ad5a30fdee0eaeefef1d4c559dd"}, - {file = "ecdsa-0.18.0.tar.gz", hash = "sha256:190348041559e21b22a1d65cee485282ca11a6f81d503fddb84d5017e9ed1e49"}, -] -email-validator = [ - {file = "email_validator-1.3.0-py2.py3-none-any.whl", hash = "sha256:816073f2a7cffef786b29928f58ec16cdac42710a53bb18aa94317e3e145ec5c"}, - {file = "email_validator-1.3.0.tar.gz", hash = "sha256:553a66f8be2ec2dea641ae1d3f29017ab89e9d603d4a25cdaac39eefa283d769"}, -] -emails = [ - {file = "emails-0.5.15-py2.py3-none-any.whl", hash = "sha256:2d93bb09539d65a16cf1f68db4ffd0f7f45067633e950866e8a4ef89a7c290ec"}, - {file = "emails-0.5.15.tar.gz", hash = "sha256:fcc02567a528eae6b66d2a5c20ce7a0326e4f6b201bc8ae302f89413164db06a"}, -] -entrypoints = [ - {file = "entrypoints-0.4-py3-none-any.whl", hash = "sha256:f174b5ff827504fd3cd97cc3f8649f3693f51538c7e4bdf3ef002c8429d42f9f"}, - {file = "entrypoints-0.4.tar.gz", hash = "sha256:b706eddaa9218a19ebcd67b56818f05bb27589b1ca9e8d797b74affad4ccacd4"}, -] -epc = [ - {file = "epc-0.0.5.tar.gz", hash = "sha256:a14d2ea74817955a20eb00812e3a4630a132897eb4d976420240f1152c0d7d25"}, -] -executing = [ - {file = "executing-1.2.0-py2.py3-none-any.whl", hash = "sha256:0314a69e37426e3608aada02473b4161d4caf5a4b244d1d0c48072b8fee7bacc"}, - {file = "executing-1.2.0.tar.gz", hash = "sha256:19da64c18d2d851112f09c287f8d3dbbdf725ab0e569077efb6cdcbd3497c107"}, -] -fastapi = [ - {file = "fastapi-0.54.2-py3-none-any.whl", hash = "sha256:c8651f8316956240c2ffe5bc05c334c8359a3887e642720a9b23319c51e82907"}, - {file = "fastapi-0.54.2.tar.gz", hash = "sha256:fff1b4a7fdf4812abb4507fb7aa30ef4206a0435839626ebe3b2871ec9aa367f"}, -] -flake8 = [ - {file = "flake8-3.9.2-py2.py3-none-any.whl", hash = "sha256:bf8fd333346d844f616e8d47905ef3a3384edae6b4e9beb0c5101e25e3110907"}, - {file = "flake8-3.9.2.tar.gz", hash = "sha256:07528381786f2a6237b061f6e96610a4167b226cb926e2aa2b6b1d78057c576b"}, -] -greenlet = [ - {file = "greenlet-2.0.1-cp27-cp27m-macosx_10_14_x86_64.whl", hash = "sha256:9ed358312e63bf683b9ef22c8e442ef6c5c02973f0c2a939ec1d7b50c974015c"}, - {file = "greenlet-2.0.1-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:4f09b0010e55bec3239278f642a8a506b91034f03a4fb28289a7d448a67f1515"}, - {file = "greenlet-2.0.1-cp27-cp27m-win32.whl", hash = "sha256:1407fe45246632d0ffb7a3f4a520ba4e6051fc2cbd61ba1f806900c27f47706a"}, - {file = "greenlet-2.0.1-cp27-cp27m-win_amd64.whl", hash = "sha256:3001d00eba6bbf084ae60ec7f4bb8ed375748f53aeaefaf2a37d9f0370558524"}, - {file = "greenlet-2.0.1-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:d566b82e92ff2e09dd6342df7e0eb4ff6275a3f08db284888dcd98134dbd4243"}, - {file = "greenlet-2.0.1-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:0722c9be0797f544a3ed212569ca3fe3d9d1a1b13942d10dd6f0e8601e484d26"}, - {file = "greenlet-2.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d37990425b4687ade27810e3b1a1c37825d242ebc275066cfee8cb6b8829ccd"}, - {file = "greenlet-2.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:be35822f35f99dcc48152c9839d0171a06186f2d71ef76dc57fa556cc9bf6b45"}, - {file = "greenlet-2.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c140e7eb5ce47249668056edf3b7e9900c6a2e22fb0eaf0513f18a1b2c14e1da"}, - {file = "greenlet-2.0.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d21681f09e297a5adaa73060737e3aa1279a13ecdcfcc6ef66c292cb25125b2d"}, - {file = "greenlet-2.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fb412b7db83fe56847df9c47b6fe3f13911b06339c2aa02dcc09dce8bbf582cd"}, - {file = "greenlet-2.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:c6a08799e9e88052221adca55741bf106ec7ea0710bca635c208b751f0d5b617"}, - {file = "greenlet-2.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9e112e03d37987d7b90c1e98ba5e1b59e1645226d78d73282f45b326f7bddcb9"}, - {file = "greenlet-2.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:56961cfca7da2fdd178f95ca407fa330c64f33289e1804b592a77d5593d9bd94"}, - {file = "greenlet-2.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:13ba6e8e326e2116c954074c994da14954982ba2795aebb881c07ac5d093a58a"}, - {file = "greenlet-2.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1bf633a50cc93ed17e494015897361010fc08700d92676c87931d3ea464123ce"}, - {file = "greenlet-2.0.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:9f2c221eecb7ead00b8e3ddb913c67f75cba078fd1d326053225a3f59d850d72"}, - {file = "greenlet-2.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:13ebf93c343dd8bd010cd98e617cb4c1c1f352a0cf2524c82d3814154116aa82"}, - {file = "greenlet-2.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:6f61d71bbc9b4a3de768371b210d906726535d6ca43506737682caa754b956cd"}, - {file = "greenlet-2.0.1-cp35-cp35m-macosx_10_14_x86_64.whl", hash = "sha256:2d0bac0385d2b43a7bd1d651621a4e0f1380abc63d6fb1012213a401cbd5bf8f"}, - {file = "greenlet-2.0.1-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:f6327b6907b4cb72f650a5b7b1be23a2aab395017aa6f1adb13069d66360eb3f"}, - {file = "greenlet-2.0.1-cp35-cp35m-win32.whl", hash = "sha256:81b0ea3715bf6a848d6f7149d25bf018fd24554a4be01fcbbe3fdc78e890b955"}, - {file = "greenlet-2.0.1-cp35-cp35m-win_amd64.whl", hash = "sha256:38255a3f1e8942573b067510f9611fc9e38196077b0c8eb7a8c795e105f9ce77"}, - {file = "greenlet-2.0.1-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:04957dc96669be041e0c260964cfef4c77287f07c40452e61abe19d647505581"}, - {file = "greenlet-2.0.1-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:4aeaebcd91d9fee9aa768c1b39cb12214b30bf36d2b7370505a9f2165fedd8d9"}, - {file = "greenlet-2.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:974a39bdb8c90a85982cdb78a103a32e0b1be986d411303064b28a80611f6e51"}, - {file = "greenlet-2.0.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8dca09dedf1bd8684767bc736cc20c97c29bc0c04c413e3276e0962cd7aeb148"}, - {file = "greenlet-2.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a4c0757db9bd08470ff8277791795e70d0bf035a011a528ee9a5ce9454b6cba2"}, - {file = "greenlet-2.0.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:5067920de254f1a2dee8d3d9d7e4e03718e8fd2d2d9db962c8c9fa781ae82a39"}, - {file = "greenlet-2.0.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:5a8e05057fab2a365c81abc696cb753da7549d20266e8511eb6c9d9f72fe3e92"}, - {file = "greenlet-2.0.1-cp36-cp36m-win32.whl", hash = "sha256:3d75b8d013086b08e801fbbb896f7d5c9e6ccd44f13a9241d2bf7c0df9eda928"}, - {file = "greenlet-2.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:097e3dae69321e9100202fc62977f687454cd0ea147d0fd5a766e57450c569fd"}, - {file = "greenlet-2.0.1-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:cb242fc2cda5a307a7698c93173d3627a2a90d00507bccf5bc228851e8304963"}, - {file = "greenlet-2.0.1-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:72b00a8e7c25dcea5946692a2485b1a0c0661ed93ecfedfa9b6687bd89a24ef5"}, - {file = "greenlet-2.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d5b0ff9878333823226d270417f24f4d06f235cb3e54d1103b71ea537a6a86ce"}, - {file = "greenlet-2.0.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:be9e0fb2ada7e5124f5282d6381903183ecc73ea019568d6d63d33f25b2a9000"}, - {file = "greenlet-2.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b493db84d124805865adc587532ebad30efa68f79ad68f11b336e0a51ec86c2"}, - {file = "greenlet-2.0.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:0459d94f73265744fee4c2d5ec44c6f34aa8a31017e6e9de770f7bcf29710be9"}, - {file = "greenlet-2.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:a20d33124935d27b80e6fdacbd34205732660e0a1d35d8b10b3328179a2b51a1"}, - {file = "greenlet-2.0.1-cp37-cp37m-win32.whl", hash = "sha256:ea688d11707d30e212e0110a1aac7f7f3f542a259235d396f88be68b649e47d1"}, - {file = "greenlet-2.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:afe07421c969e259e9403c3bb658968702bc3b78ec0b6fde3ae1e73440529c23"}, - {file = "greenlet-2.0.1-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:cd4ccc364cf75d1422e66e247e52a93da6a9b73cefa8cad696f3cbbb75af179d"}, - {file = "greenlet-2.0.1-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:4c8b1c43e75c42a6cafcc71defa9e01ead39ae80bd733a2608b297412beede68"}, - {file = "greenlet-2.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:659f167f419a4609bc0516fb18ea69ed39dbb25594934bd2dd4d0401660e8a1e"}, - {file = "greenlet-2.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:356e4519d4dfa766d50ecc498544b44c0249b6de66426041d7f8b751de4d6b48"}, - {file = "greenlet-2.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:811e1d37d60b47cb8126e0a929b58c046251f28117cb16fcd371eed61f66b764"}, - {file = "greenlet-2.0.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:d38ffd0e81ba8ef347d2be0772e899c289b59ff150ebbbbe05dc61b1246eb4e0"}, - {file = "greenlet-2.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:0109af1138afbfb8ae647e31a2b1ab030f58b21dd8528c27beaeb0093b7938a9"}, - {file = "greenlet-2.0.1-cp38-cp38-win32.whl", hash = "sha256:88c8d517e78acdf7df8a2134a3c4b964415b575d2840a2746ddb1cc6175f8608"}, - {file = "greenlet-2.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:d6ee1aa7ab36475035eb48c01efae87d37936a8173fc4d7b10bb02c2d75dd8f6"}, - {file = "greenlet-2.0.1-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:b1992ba9d4780d9af9726bbcef6a1db12d9ab1ccc35e5773685a24b7fb2758eb"}, - {file = "greenlet-2.0.1-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:b5e83e4de81dcc9425598d9469a624826a0b1211380ac444c7c791d4a2137c19"}, - {file = "greenlet-2.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:505138d4fa69462447a562a7c2ef723c6025ba12ac04478bc1ce2fcc279a2db5"}, - {file = "greenlet-2.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cce1e90dd302f45716a7715517c6aa0468af0bf38e814ad4eab58e88fc09f7f7"}, - {file = "greenlet-2.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e9744c657d896c7b580455e739899e492a4a452e2dd4d2b3e459f6b244a638d"}, - {file = "greenlet-2.0.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:662e8f7cad915ba75d8017b3e601afc01ef20deeeabf281bd00369de196d7726"}, - {file = "greenlet-2.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:41b825d65f31e394b523c84db84f9383a2f7eefc13d987f308f4663794d2687e"}, - {file = "greenlet-2.0.1-cp39-cp39-win32.whl", hash = "sha256:db38f80540083ea33bdab614a9d28bcec4b54daa5aff1668d7827a9fc769ae0a"}, - {file = "greenlet-2.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:b23d2a46d53210b498e5b701a1913697671988f4bf8e10f935433f6e7c332fb6"}, - {file = "greenlet-2.0.1.tar.gz", hash = "sha256:42e602564460da0e8ee67cb6d7236363ee5e131aa15943b6670e44e5c2ed0f67"}, -] -gunicorn = [ - {file = "gunicorn-20.1.0-py3-none-any.whl", hash = "sha256:9dcc4547dbb1cb284accfb15ab5667a0e5d1881cc443e0677b4882a4067a807e"}, - {file = "gunicorn-20.1.0.tar.gz", hash = "sha256:e0a968b5ba15f8a328fdfd7ab1fcb5af4470c28aaf7e55df02a99bc13138e6e8"}, -] -h11 = [ - {file = "h11-0.9.0-py2.py3-none-any.whl", hash = "sha256:4bc6d6a1238b7615b266ada57e0618568066f57dd6fa967d1290ec9309b2f2f1"}, - {file = "h11-0.9.0.tar.gz", hash = "sha256:33d4bca7be0fa039f4e84d50ab00531047e53d6ee8ffbc83501ea602c169cae1"}, -] -httptools = [ - {file = "httptools-0.1.2-cp35-cp35m-macosx_10_14_x86_64.whl", hash = "sha256:1e35aa179b67086cc600a984924a88589b90793c9c1b260152ca4908786e09df"}, - {file = "httptools-0.1.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:c4111a0a8a00eff1e495d43ea5230aaf64968a48ddba8ea2d5f982efae827404"}, - {file = "httptools-0.1.2-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:dce59ee45dd6ee6c434346a5ac527c44014326f560866b4b2f414a692ee1aca8"}, - {file = "httptools-0.1.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:f759717ca1b2ef498c67ba4169c2b33eecf943a89f5329abcff8b89d153eb500"}, - {file = "httptools-0.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:08b79e09114e6ab5c3dbf560bba2cb2257ea38cdaeaf99b7cb80d8f92622fcd9"}, - {file = "httptools-0.1.2-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:8fcca4b7efe353b13a24017211334c57d055a6e132c7adffed13a10d28efca57"}, - {file = "httptools-0.1.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:aebdf0bd7bf7c90ae6b3be458692bf6e9e5b610b501f9f74c7979015a51db4c4"}, - {file = "httptools-0.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:fbf7ecd31c39728f251b1c095fd27c84e4d21f60a1d079a0333472ff3ae59d34"}, - {file = "httptools-0.1.2-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:c1c63d860749841024951b0a78e4dec6f543d23751ef061d6ab60064c7b8b524"}, - {file = "httptools-0.1.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:fb7199b8fb0c50a22e77260bb59017e0c075fa80cb03bb2c8692de76e7bb7fe7"}, - {file = "httptools-0.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:bda99a5723e7eab355ce57435c70853fc137a65aebf2f1cd4d15d96e2956da7b"}, - {file = "httptools-0.1.2-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:851026bd63ec0af7e7592890d97d15c92b62d9e17094353f19a52c8e2b33710a"}, - {file = "httptools-0.1.2-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:31629e1f1b89959f8c0927bad12184dc07977dcf71e24f4772934aa490aa199b"}, - {file = "httptools-0.1.2-cp39-cp39-win_amd64.whl", hash = "sha256:9abd788465aa46a0f288bd3a99e53edd184177d6379e2098fd6097bb359ad9d6"}, - {file = "httptools-0.1.2.tar.gz", hash = "sha256:07659649fe6b3948b6490825f89abe5eb1cec79ebfaaa0b4bf30f3f33f3c2ba8"}, -] -idna = [ - {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, - {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, -] -importmagic = [ - {file = "importmagic-0.1.7.tar.gz", hash = "sha256:3f7757a5b74c9a291e20e12023bb3bf71bc2fa3adfb15a08570648ab83eaf8d8"}, -] -ipykernel = [ - {file = "ipykernel-6.17.1-py3-none-any.whl", hash = "sha256:3a9a1b2ad6dbbd5879855aabb4557f08e63fa2208bffed897f03070e2bb436f6"}, - {file = "ipykernel-6.17.1.tar.gz", hash = "sha256:e178c1788399f93a459c241fe07c3b810771c607b1fb064a99d2c5d40c90c5d4"}, -] -ipython = [ - {file = "ipython-8.6.0-py3-none-any.whl", hash = "sha256:91ef03016bcf72dd17190f863476e7c799c6126ec7e8be97719d1bc9a78a59a4"}, - {file = "ipython-8.6.0.tar.gz", hash = "sha256:7c959e3dedbf7ed81f9b9d8833df252c430610e2a4a6464ec13cd20975ce20a5"}, -] -isort = [ - {file = "isort-4.3.21-py2.py3-none-any.whl", hash = "sha256:6e811fcb295968434526407adb8796944f1988c5b65e8139058f2014cbe100fd"}, - {file = "isort-4.3.21.tar.gz", hash = "sha256:54da7e92468955c4fceacd0c86bd0ec997b0e1ee80d97f67c35a78b719dccab1"}, -] -jedi = [ - {file = "jedi-0.18.1-py2.py3-none-any.whl", hash = "sha256:637c9635fcf47945ceb91cd7f320234a7be540ded6f3e99a50cb6febdfd1ba8d"}, - {file = "jedi-0.18.1.tar.gz", hash = "sha256:74137626a64a99c8eb6ae5832d99b3bdd7d29a3850fe2aa80a4126b2a7d949ab"}, -] -Jinja2 = [ - {file = "Jinja2-2.11.3-py2.py3-none-any.whl", hash = "sha256:03e47ad063331dd6a3f04a43eddca8a966a26ba0c5b7207a9a9e4e08f1b29419"}, - {file = "Jinja2-2.11.3.tar.gz", hash = "sha256:a6d58433de0ae800347cab1fa3043cebbabe8baa9d29e668f1c768cb87a333c6"}, -] -jmespath = [ - {file = "jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980"}, - {file = "jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe"}, -] -jupyter-client = [ - {file = "jupyter_client-7.4.5-py3-none-any.whl", hash = "sha256:feaad9c04871254067d3b8c41192b7aba8e9bbbf9df9830ecf2673939510c5b7"}, - {file = "jupyter_client-7.4.5.tar.gz", hash = "sha256:63eae06c40e1f2d9afa14447511fddc065c95dea3f2491fda2acccf91221954a"}, -] -jupyter-core = [ - {file = "jupyter_core-5.0.0-py3-none-any.whl", hash = "sha256:6da1fae48190da8551e1b5dbbb19d51d00b079d59a073c7030407ecaf96dbb1e"}, - {file = "jupyter_core-5.0.0.tar.gz", hash = "sha256:4ed68b7c606197c7e344a24b7195eef57898157075a69655a886074b6beb7043"}, -] -kombu = [ - {file = "kombu-4.6.11-py2.py3-none-any.whl", hash = "sha256:be48cdffb54a2194d93ad6533d73f69408486483d189fe9f5990ee24255b0e0a"}, - {file = "kombu-4.6.11.tar.gz", hash = "sha256:ca1b45faac8c0b18493d02a8571792f3c40291cf2bcf1f55afed3d8f3aa7ba74"}, -] -lxml = [ - {file = "lxml-4.9.1-cp27-cp27m-macosx_10_15_x86_64.whl", hash = "sha256:98cafc618614d72b02185ac583c6f7796202062c41d2eeecdf07820bad3295ed"}, - {file = "lxml-4.9.1-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c62e8dd9754b7debda0c5ba59d34509c4688f853588d75b53c3791983faa96fc"}, - {file = "lxml-4.9.1-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:21fb3d24ab430fc538a96e9fbb9b150029914805d551deeac7d7822f64631dfc"}, - {file = "lxml-4.9.1-cp27-cp27m-win32.whl", hash = "sha256:86e92728ef3fc842c50a5cb1d5ba2bc66db7da08a7af53fb3da79e202d1b2cd3"}, - {file = "lxml-4.9.1-cp27-cp27m-win_amd64.whl", hash = "sha256:4cfbe42c686f33944e12f45a27d25a492cc0e43e1dc1da5d6a87cbcaf2e95627"}, - {file = "lxml-4.9.1-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:dad7b164905d3e534883281c050180afcf1e230c3d4a54e8038aa5cfcf312b84"}, - {file = "lxml-4.9.1-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:a614e4afed58c14254e67862456d212c4dcceebab2eaa44d627c2ca04bf86837"}, - {file = "lxml-4.9.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:f9ced82717c7ec65a67667bb05865ffe38af0e835cdd78728f1209c8fffe0cad"}, - {file = "lxml-4.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:d9fc0bf3ff86c17348dfc5d322f627d78273eba545db865c3cd14b3f19e57fa5"}, - {file = "lxml-4.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:e5f66bdf0976ec667fc4594d2812a00b07ed14d1b44259d19a41ae3fff99f2b8"}, - {file = "lxml-4.9.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:fe17d10b97fdf58155f858606bddb4e037b805a60ae023c009f760d8361a4eb8"}, - {file = "lxml-4.9.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8caf4d16b31961e964c62194ea3e26a0e9561cdf72eecb1781458b67ec83423d"}, - {file = "lxml-4.9.1-cp310-cp310-win32.whl", hash = "sha256:4780677767dd52b99f0af1f123bc2c22873d30b474aa0e2fc3fe5e02217687c7"}, - {file = "lxml-4.9.1-cp310-cp310-win_amd64.whl", hash = "sha256:b122a188cd292c4d2fcd78d04f863b789ef43aa129b233d7c9004de08693728b"}, - {file = "lxml-4.9.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:be9eb06489bc975c38706902cbc6888f39e946b81383abc2838d186f0e8b6a9d"}, - {file = "lxml-4.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:f1be258c4d3dc609e654a1dc59d37b17d7fef05df912c01fc2e15eb43a9735f3"}, - {file = "lxml-4.9.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:927a9dd016d6033bc12e0bf5dee1dde140235fc8d0d51099353c76081c03dc29"}, - {file = "lxml-4.9.1-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9232b09f5efee6a495a99ae6824881940d6447debe272ea400c02e3b68aad85d"}, - {file = "lxml-4.9.1-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:04da965dfebb5dac2619cb90fcf93efdb35b3c6994fea58a157a834f2f94b318"}, - {file = "lxml-4.9.1-cp35-cp35m-win32.whl", hash = "sha256:4d5bae0a37af799207140652a700f21a85946f107a199bcb06720b13a4f1f0b7"}, - {file = "lxml-4.9.1-cp35-cp35m-win_amd64.whl", hash = "sha256:4878e667ebabe9b65e785ac8da4d48886fe81193a84bbe49f12acff8f7a383a4"}, - {file = "lxml-4.9.1-cp36-cp36m-macosx_10_15_x86_64.whl", hash = "sha256:1355755b62c28950f9ce123c7a41460ed9743c699905cbe664a5bcc5c9c7c7fb"}, - {file = "lxml-4.9.1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:bcaa1c495ce623966d9fc8a187da80082334236a2a1c7e141763ffaf7a405067"}, - {file = "lxml-4.9.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6eafc048ea3f1b3c136c71a86db393be36b5b3d9c87b1c25204e7d397cee9536"}, - {file = "lxml-4.9.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:13c90064b224e10c14dcdf8086688d3f0e612db53766e7478d7754703295c7c8"}, - {file = "lxml-4.9.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:206a51077773c6c5d2ce1991327cda719063a47adc02bd703c56a662cdb6c58b"}, - {file = "lxml-4.9.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:e8f0c9d65da595cfe91713bc1222af9ecabd37971762cb830dea2fc3b3bb2acf"}, - {file = "lxml-4.9.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:8f0a4d179c9a941eb80c3a63cdb495e539e064f8054230844dcf2fcb812b71d3"}, - {file = "lxml-4.9.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:830c88747dce8a3e7525defa68afd742b4580df6aa2fdd6f0855481e3994d391"}, - {file = "lxml-4.9.1-cp36-cp36m-win32.whl", hash = "sha256:1e1cf47774373777936c5aabad489fef7b1c087dcd1f426b621fda9dcc12994e"}, - {file = "lxml-4.9.1-cp36-cp36m-win_amd64.whl", hash = "sha256:5974895115737a74a00b321e339b9c3f45c20275d226398ae79ac008d908bff7"}, - {file = "lxml-4.9.1-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:1423631e3d51008871299525b541413c9b6c6423593e89f9c4cfbe8460afc0a2"}, - {file = "lxml-4.9.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:2aaf6a0a6465d39b5ca69688fce82d20088c1838534982996ec46633dc7ad6cc"}, - {file = "lxml-4.9.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:9f36de4cd0c262dd9927886cc2305aa3f2210db437aa4fed3fb4940b8bf4592c"}, - {file = "lxml-4.9.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:ae06c1e4bc60ee076292e582a7512f304abdf6c70db59b56745cca1684f875a4"}, - {file = "lxml-4.9.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:57e4d637258703d14171b54203fd6822fda218c6c2658a7d30816b10995f29f3"}, - {file = "lxml-4.9.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6d279033bf614953c3fc4a0aa9ac33a21e8044ca72d4fa8b9273fe75359d5cca"}, - {file = "lxml-4.9.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:a60f90bba4c37962cbf210f0188ecca87daafdf60271f4c6948606e4dabf8785"}, - {file = "lxml-4.9.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:6ca2264f341dd81e41f3fffecec6e446aa2121e0b8d026fb5130e02de1402785"}, - {file = "lxml-4.9.1-cp37-cp37m-win32.whl", hash = "sha256:27e590352c76156f50f538dbcebd1925317a0f70540f7dc8c97d2931c595783a"}, - {file = "lxml-4.9.1-cp37-cp37m-win_amd64.whl", hash = "sha256:eea5d6443b093e1545ad0210e6cf27f920482bfcf5c77cdc8596aec73523bb7e"}, - {file = "lxml-4.9.1-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:f05251bbc2145349b8d0b77c0d4e5f3b228418807b1ee27cefb11f69ed3d233b"}, - {file = "lxml-4.9.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:487c8e61d7acc50b8be82bda8c8d21d20e133c3cbf41bd8ad7eb1aaeb3f07c97"}, - {file = "lxml-4.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:8d1a92d8e90b286d491e5626af53afef2ba04da33e82e30744795c71880eaa21"}, - {file = "lxml-4.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:b570da8cd0012f4af9fa76a5635cd31f707473e65a5a335b186069d5c7121ff2"}, - {file = "lxml-4.9.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5ef87fca280fb15342726bd5f980f6faf8b84a5287fcc2d4962ea8af88b35130"}, - {file = "lxml-4.9.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:93e414e3206779ef41e5ff2448067213febf260ba747fc65389a3ddaa3fb8715"}, - {file = "lxml-4.9.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6653071f4f9bac46fbc30f3c7838b0e9063ee335908c5d61fb7a4a86c8fd2036"}, - {file = "lxml-4.9.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:32a73c53783becdb7eaf75a2a1525ea8e49379fb7248c3eeefb9412123536387"}, - {file = "lxml-4.9.1-cp38-cp38-win32.whl", hash = "sha256:1a7c59c6ffd6ef5db362b798f350e24ab2cfa5700d53ac6681918f314a4d3b94"}, - {file = "lxml-4.9.1-cp38-cp38-win_amd64.whl", hash = "sha256:1436cf0063bba7888e43f1ba8d58824f085410ea2025befe81150aceb123e345"}, - {file = "lxml-4.9.1-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:4beea0f31491bc086991b97517b9683e5cfb369205dac0148ef685ac12a20a67"}, - {file = "lxml-4.9.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:41fb58868b816c202e8881fd0f179a4644ce6e7cbbb248ef0283a34b73ec73bb"}, - {file = "lxml-4.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:bd34f6d1810d9354dc7e35158aa6cc33456be7706df4420819af6ed966e85448"}, - {file = "lxml-4.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:edffbe3c510d8f4bf8640e02ca019e48a9b72357318383ca60e3330c23aaffc7"}, - {file = "lxml-4.9.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6d949f53ad4fc7cf02c44d6678e7ff05ec5f5552b235b9e136bd52e9bf730b91"}, - {file = "lxml-4.9.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:079b68f197c796e42aa80b1f739f058dcee796dc725cc9a1be0cdb08fc45b000"}, - {file = "lxml-4.9.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9c3a88d20e4fe4a2a4a84bf439a5ac9c9aba400b85244c63a1ab7088f85d9d25"}, - {file = "lxml-4.9.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:4e285b5f2bf321fc0857b491b5028c5f276ec0c873b985d58d7748ece1d770dd"}, - {file = "lxml-4.9.1-cp39-cp39-win32.whl", hash = "sha256:ef72013e20dd5ba86a8ae1aed7f56f31d3374189aa8b433e7b12ad182c0d2dfb"}, - {file = "lxml-4.9.1-cp39-cp39-win_amd64.whl", hash = "sha256:10d2017f9150248563bb579cd0d07c61c58da85c922b780060dcc9a3aa9f432d"}, - {file = "lxml-4.9.1-pp37-pypy37_pp73-macosx_10_15_x86_64.whl", hash = "sha256:0538747a9d7827ce3e16a8fdd201a99e661c7dee3c96c885d8ecba3c35d1032c"}, - {file = "lxml-4.9.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:0645e934e940107e2fdbe7c5b6fb8ec6232444260752598bc4d09511bd056c0b"}, - {file = "lxml-4.9.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:6daa662aba22ef3258934105be2dd9afa5bb45748f4f702a3b39a5bf53a1f4dc"}, - {file = "lxml-4.9.1-pp38-pypy38_pp73-macosx_10_15_x86_64.whl", hash = "sha256:603a464c2e67d8a546ddaa206d98e3246e5db05594b97db844c2f0a1af37cf5b"}, - {file = "lxml-4.9.1-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:c4b2e0559b68455c085fb0f6178e9752c4be3bba104d6e881eb5573b399d1eb2"}, - {file = "lxml-4.9.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:0f3f0059891d3254c7b5fb935330d6db38d6519ecd238ca4fce93c234b4a0f73"}, - {file = "lxml-4.9.1-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:c852b1530083a620cb0de5f3cd6826f19862bafeaf77586f1aef326e49d95f0c"}, - {file = "lxml-4.9.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:287605bede6bd36e930577c5925fcea17cb30453d96a7b4c63c14a257118dbb9"}, - {file = "lxml-4.9.1.tar.gz", hash = "sha256:fe749b052bb7233fe5d072fcb549221a8cb1a16725c47c37e42b0b9cb3ff2c3f"}, -] -Mako = [ - {file = "Mako-1.2.3-py3-none-any.whl", hash = "sha256:c413a086e38cd885088d5e165305ee8eed04e8b3f8f62df343480da0a385735f"}, - {file = "Mako-1.2.3.tar.gz", hash = "sha256:7fde96466fcfeedb0eed94f187f20b23d85e4cb41444be0e542e2c8c65c396cd"}, -] -MarkupSafe = [ - {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:86b1f75c4e7c2ac2ccdaec2b9022845dbb81880ca318bb7a0a01fbf7813e3812"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f121a1420d4e173a5d96e47e9a0c0dcff965afdf1626d28de1460815f7c4ee7a"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a49907dd8420c5685cfa064a1335b6754b74541bbb3706c259c02ed65b644b3e"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10c1bfff05d95783da83491be968e8fe789263689c02724e0c691933c52994f5"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7bd98b796e2b6553da7225aeb61f447f80a1ca64f41d83612e6139ca5213aa4"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b09bf97215625a311f669476f44b8b318b075847b49316d3e28c08e41a7a573f"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:694deca8d702d5db21ec83983ce0bb4b26a578e71fbdbd4fdcd387daa90e4d5e"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:efc1913fd2ca4f334418481c7e595c00aad186563bbc1ec76067848c7ca0a933"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-win32.whl", hash = "sha256:4a33dea2b688b3190ee12bd7cfa29d39c9ed176bda40bfa11099a3ce5d3a7ac6"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:dda30ba7e87fbbb7eab1ec9f58678558fd9a6b8b853530e176eabd064da81417"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:671cd1187ed5e62818414afe79ed29da836dde67166a9fac6d435873c44fdd02"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3799351e2336dc91ea70b034983ee71cf2f9533cdff7c14c90ea126bfd95d65a"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591e9ecd94d7feb70c1cbd7be7b3ebea3f548870aa91e2732960fa4d57a37"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6fbf47b5d3728c6aea2abb0589b5d30459e369baa772e0f37a0320185e87c980"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d5ee4f386140395a2c818d149221149c54849dfcfcb9f1debfe07a8b8bd63f9a"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:bcb3ed405ed3222f9904899563d6fc492ff75cce56cba05e32eff40e6acbeaa3"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e1c0b87e09fa55a220f058d1d49d3fb8df88fbfab58558f1198e08c1e1de842a"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-win32.whl", hash = "sha256:8dc1c72a69aa7e082593c4a203dcf94ddb74bb5c8a731e4e1eb68d031e8498ff"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:97a68e6ada378df82bc9f16b800ab77cbf4b2fada0081794318520138c088e4a"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e8c843bbcda3a2f1e3c2ab25913c80a3c5376cd00c6e8c4a86a89a28c8dc5452"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0212a68688482dc52b2d45013df70d169f542b7394fc744c02a57374a4207003"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e576a51ad59e4bfaac456023a78f6b5e6e7651dcd383bcc3e18d06f9b55d6d1"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b9fe39a2ccc108a4accc2676e77da025ce383c108593d65cc909add5c3bd601"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:96e37a3dc86e80bf81758c152fe66dbf60ed5eca3d26305edf01892257049925"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6d0072fea50feec76a4c418096652f2c3238eaa014b2f94aeb1d56a66b41403f"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:089cf3dbf0cd6c100f02945abeb18484bd1ee57a079aefd52cffd17fba910b88"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6a074d34ee7a5ce3effbc526b7083ec9731bb3cbf921bbe1d3005d4d2bdb3a63"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-win32.whl", hash = "sha256:421be9fbf0ffe9ffd7a378aafebbf6f4602d564d34be190fc19a193232fd12b1"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:fc7b548b17d238737688817ab67deebb30e8073c95749d55538ed473130ec0c7"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e04e26803c9c3851c931eac40c695602c6295b8d432cbe78609649ad9bd2da8a"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b87db4360013327109564f0e591bd2a3b318547bcef31b468a92ee504d07ae4f"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99a2a507ed3ac881b975a2976d59f38c19386d128e7a9a18b7df6fff1fd4c1d6"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56442863ed2b06d19c37f94d999035e15ee982988920e12a5b4ba29b62ad1f77"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ce11ee3f23f79dbd06fb3d63e2f6af7b12db1d46932fe7bd8afa259a5996603"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:33b74d289bd2f5e527beadcaa3f401e0df0a89927c1559c8566c066fa4248ab7"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:43093fb83d8343aac0b1baa75516da6092f58f41200907ef92448ecab8825135"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8e3dcf21f367459434c18e71b2a9532d96547aef8a871872a5bd69a715c15f96"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-win32.whl", hash = "sha256:d4306c36ca495956b6d568d276ac11fdd9c30a36f1b6eb928070dc5360b22e1c"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:46d00d6cfecdde84d40e572d63735ef81423ad31184100411e6e3388d405e247"}, - {file = "MarkupSafe-2.1.1.tar.gz", hash = "sha256:7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b"}, -] -matplotlib-inline = [ - {file = "matplotlib-inline-0.1.6.tar.gz", hash = "sha256:f887e5f10ba98e8d2b150ddcf4702c1e5f8b3a20005eb0f74bfdbd360ee6f304"}, - {file = "matplotlib_inline-0.1.6-py3-none-any.whl", hash = "sha256:f1f41aab5328aa5aaea9b16d083b128102f8712542f819fe7e6a420ff581b311"}, -] -mccabe = [ - {file = "mccabe-0.6.1-py2.py3-none-any.whl", hash = "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42"}, - {file = "mccabe-0.6.1.tar.gz", hash = "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f"}, -] -more-itertools = [ - {file = "more-itertools-9.0.0.tar.gz", hash = "sha256:5a6257e40878ef0520b1803990e3e22303a41b5714006c32a3fd8304b26ea1ab"}, - {file = "more_itertools-9.0.0-py3-none-any.whl", hash = "sha256:250e83d7e81d0c87ca6bd942e6aeab8cc9daa6096d12c5308f3f92fa5e5c1f41"}, -] -mypy = [ - {file = "mypy-0.770-cp35-cp35m-macosx_10_6_x86_64.whl", hash = "sha256:a34b577cdf6313bf24755f7a0e3f3c326d5c1f4fe7422d1d06498eb25ad0c600"}, - {file = "mypy-0.770-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:86c857510a9b7c3104cf4cde1568f4921762c8f9842e987bc03ed4f160925754"}, - {file = "mypy-0.770-cp35-cp35m-win_amd64.whl", hash = "sha256:a8ffcd53cb5dfc131850851cc09f1c44689c2812d0beb954d8138d4f5fc17f65"}, - {file = "mypy-0.770-cp36-cp36m-macosx_10_6_x86_64.whl", hash = "sha256:7687f6455ec3ed7649d1ae574136835a4272b65b3ddcf01ab8704ac65616c5ce"}, - {file = "mypy-0.770-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:3beff56b453b6ef94ecb2996bea101a08f1f8a9771d3cbf4988a61e4d9973761"}, - {file = "mypy-0.770-cp36-cp36m-win_amd64.whl", hash = "sha256:15b948e1302682e3682f11f50208b726a246ab4e6c1b39f9264a8796bb416aa2"}, - {file = "mypy-0.770-cp37-cp37m-macosx_10_6_x86_64.whl", hash = "sha256:b90928f2d9eb2f33162405f32dde9f6dcead63a0971ca8a1b50eb4ca3e35ceb8"}, - {file = "mypy-0.770-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:c56ffe22faa2e51054c5f7a3bc70a370939c2ed4de308c690e7949230c995913"}, - {file = "mypy-0.770-cp37-cp37m-win_amd64.whl", hash = "sha256:8dfb69fbf9f3aeed18afffb15e319ca7f8da9642336348ddd6cab2713ddcf8f9"}, - {file = "mypy-0.770-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:219a3116ecd015f8dca7b5d2c366c973509dfb9a8fc97ef044a36e3da66144a1"}, - {file = "mypy-0.770-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7ec45a70d40ede1ec7ad7f95b3c94c9cf4c186a32f6bacb1795b60abd2f9ef27"}, - {file = "mypy-0.770-cp38-cp38-win_amd64.whl", hash = "sha256:f91c7ae919bbc3f96cd5e5b2e786b2b108343d1d7972ea130f7de27fdd547cf3"}, - {file = "mypy-0.770-py3-none-any.whl", hash = "sha256:3b1fc683fb204c6b4403a1ef23f0b1fac8e4477091585e0c8c54cbdf7d7bb164"}, - {file = "mypy-0.770.tar.gz", hash = "sha256:8a627507ef9b307b46a1fea9513d5c98680ba09591253082b4c48697ba05a4ae"}, -] -mypy-extensions = [ - {file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"}, - {file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"}, -] -nest-asyncio = [ - {file = "nest_asyncio-1.5.6-py3-none-any.whl", hash = "sha256:b9a953fb40dceaa587d109609098db21900182b16440652454a146cffb06e8b8"}, - {file = "nest_asyncio-1.5.6.tar.gz", hash = "sha256:d267cc1ff794403f7df692964d1d2a3fa9418ffea2a3f6859a439ff482fef290"}, -] -packaging = [ - {file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"}, - {file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"}, -] -parso = [ - {file = "parso-0.8.3-py2.py3-none-any.whl", hash = "sha256:c001d4636cd3aecdaf33cbb40aebb59b094be2a74c556778ef5576c175e19e75"}, - {file = "parso-0.8.3.tar.gz", hash = "sha256:8c07be290bb59f03588915921e29e8a50002acaf2cdc5fa0e0114f91709fafa0"}, -] -passlib = [ - {file = "passlib-1.7.4-py2.py3-none-any.whl", hash = "sha256:aa6bca462b8d8bda89c70b382f0c298a20b5560af6cbfa2dce410c0a2fb669f1"}, - {file = "passlib-1.7.4.tar.gz", hash = "sha256:defd50f72b65c5402ab2c573830a6978e5f202ad0d984793c8dde2c4152ebe04"}, -] -pathspec = [ - {file = "pathspec-0.10.2-py3-none-any.whl", hash = "sha256:88c2606f2c1e818b978540f73ecc908e13999c6c3a383daf3705652ae79807a5"}, - {file = "pathspec-0.10.2.tar.gz", hash = "sha256:8f6bf73e5758fd365ef5d58ce09ac7c27d2833a8d7da51712eac6e27e35141b0"}, -] -pexpect = [ - {file = "pexpect-4.8.0-py2.py3-none-any.whl", hash = "sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937"}, - {file = "pexpect-4.8.0.tar.gz", hash = "sha256:fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c"}, -] -pickleshare = [ - {file = "pickleshare-0.7.5-py2.py3-none-any.whl", hash = "sha256:9649af414d74d4df115d5d718f82acb59c9d418196b7b4290ed47a12ce62df56"}, - {file = "pickleshare-0.7.5.tar.gz", hash = "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca"}, -] -platformdirs = [ - {file = "platformdirs-2.5.4-py3-none-any.whl", hash = "sha256:af0276409f9a02373d540bf8480021a048711d572745aef4b7842dad245eba10"}, - {file = "platformdirs-2.5.4.tar.gz", hash = "sha256:1006647646d80f16130f052404c6b901e80ee4ed6bef6792e1f238a8969106f7"}, -] -pluggy = [ - {file = "pluggy-0.13.1-py2.py3-none-any.whl", hash = "sha256:966c145cd83c96502c3c3868f50408687b38434af77734af1e9ca461a4081d2d"}, - {file = "pluggy-0.13.1.tar.gz", hash = "sha256:15b2acde666561e1298d71b523007ed7364de07029219b604cf808bfa1c765b0"}, -] -premailer = [ - {file = "premailer-3.10.0-py2.py3-none-any.whl", hash = "sha256:021b8196364d7df96d04f9ade51b794d0b77bcc19e998321c515633a2273be1a"}, - {file = "premailer-3.10.0.tar.gz", hash = "sha256:d1875a8411f5dc92b53ef9f193db6c0f879dc378d618e0ad292723e388bfe4c2"}, -] -prompt-toolkit = [ - {file = "prompt_toolkit-3.0.32-py3-none-any.whl", hash = "sha256:24becda58d49ceac4dc26232eb179ef2b21f133fecda7eed6018d341766ed76e"}, - {file = "prompt_toolkit-3.0.32.tar.gz", hash = "sha256:e7f2129cba4ff3b3656bbdda0e74ee00d2f874a8bcdb9dd16f5fec7b3e173cae"}, -] -psutil = [ - {file = "psutil-5.9.4-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:c1ca331af862803a42677c120aff8a814a804e09832f166f226bfd22b56feee8"}, - {file = "psutil-5.9.4-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:68908971daf802203f3d37e78d3f8831b6d1014864d7a85937941bb35f09aefe"}, - {file = "psutil-5.9.4-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:3ff89f9b835100a825b14c2808a106b6fdcc4b15483141482a12c725e7f78549"}, - {file = "psutil-5.9.4-cp27-cp27m-win32.whl", hash = "sha256:852dd5d9f8a47169fe62fd4a971aa07859476c2ba22c2254d4a1baa4e10b95ad"}, - {file = "psutil-5.9.4-cp27-cp27m-win_amd64.whl", hash = "sha256:9120cd39dca5c5e1c54b59a41d205023d436799b1c8c4d3ff71af18535728e94"}, - {file = "psutil-5.9.4-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:6b92c532979bafc2df23ddc785ed116fced1f492ad90a6830cf24f4d1ea27d24"}, - {file = "psutil-5.9.4-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:efeae04f9516907be44904cc7ce08defb6b665128992a56957abc9b61dca94b7"}, - {file = "psutil-5.9.4-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:54d5b184728298f2ca8567bf83c422b706200bcbbfafdc06718264f9393cfeb7"}, - {file = "psutil-5.9.4-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:16653106f3b59386ffe10e0bad3bb6299e169d5327d3f187614b1cb8f24cf2e1"}, - {file = "psutil-5.9.4-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:54c0d3d8e0078b7666984e11b12b88af2db11d11249a8ac8920dd5ef68a66e08"}, - {file = "psutil-5.9.4-cp36-abi3-win32.whl", hash = "sha256:149555f59a69b33f056ba1c4eb22bb7bf24332ce631c44a319cec09f876aaeff"}, - {file = "psutil-5.9.4-cp36-abi3-win_amd64.whl", hash = "sha256:fd8522436a6ada7b4aad6638662966de0d61d241cb821239b2ae7013d41a43d4"}, - {file = "psutil-5.9.4-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:6001c809253a29599bc0dfd5179d9f8a5779f9dffea1da0f13c53ee568115e1e"}, - {file = "psutil-5.9.4.tar.gz", hash = "sha256:3d7f9739eb435d4b1338944abe23f49584bde5395f27487d2ee25ad9a8774a62"}, -] -psycopg2-binary = [ - {file = "psycopg2-binary-2.9.5.tar.gz", hash = "sha256:33e632d0885b95a8b97165899006c40e9ecdc634a529dca7b991eb7de4ece41c"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:0775d6252ccb22b15da3b5d7adbbf8cfe284916b14b6dc0ff503a23edb01ee85"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2ec46ed947801652c9643e0b1dc334cfb2781232e375ba97312c2fc256597632"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3520d7af1ebc838cc6084a3281145d5cd5bdd43fdef139e6db5af01b92596cb7"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5cbc554ba47ecca8cd3396ddaca85e1ecfe3e48dd57dc5e415e59551affe568e"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-manylinux_2_24_aarch64.whl", hash = "sha256:5d28ecdf191db558d0c07d0f16524ee9d67896edf2b7990eea800abeb23ebd61"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-manylinux_2_24_ppc64le.whl", hash = "sha256:b9c33d4aef08dfecbd1736ceab8b7b3c4358bf10a0121483e5cd60d3d308cc64"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:05b3d479425e047c848b9782cd7aac9c6727ce23181eb9647baf64ffdfc3da41"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:1e491e6489a6cb1d079df8eaa15957c277fdedb102b6a68cfbf40c4994412fd0"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:9e32cedc389bcb76d9f24ea8a012b3cb8385ee362ea437e1d012ffaed106c17d"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:46850a640df62ae940e34a163f72e26aca1f88e2da79148e1862faaac985c302"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-win32.whl", hash = "sha256:3d790f84201c3698d1bfb404c917f36e40531577a6dda02e45ba29b64d539867"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-win_amd64.whl", hash = "sha256:1764546ffeaed4f9428707be61d68972eb5ede81239b46a45843e0071104d0dd"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-macosx_10_9_universal2.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:426c2ae999135d64e6a18849a7d1ad0e1bd007277e4a8f4752eaa40a96b550ff"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7cf1d44e710ca3a9ce952bda2855830fe9f9017ed6259e01fcd71ea6287565f5"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:024030b13bdcbd53d8a93891a2cf07719715724fc9fee40243f3bd78b4264b8f"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bcda1c84a1c533c528356da5490d464a139b6e84eb77cc0b432e38c5c6dd7882"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-manylinux_2_24_aarch64.whl", hash = "sha256:2ef892cabdccefe577088a79580301f09f2a713eb239f4f9f62b2b29cafb0577"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-manylinux_2_24_ppc64le.whl", hash = "sha256:af0516e1711995cb08dc19bbd05bec7dbdebf4185f68870595156718d237df3e"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e72c91bda9880f097c8aa3601a2c0de6c708763ba8128006151f496ca9065935"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:e67b3c26e9b6d37b370c83aa790bbc121775c57bfb096c2e77eacca25fd0233b"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:5fc447058d083b8c6ac076fc26b446d44f0145308465d745fba93a28c14c9e32"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d892bfa1d023c3781a3cab8dd5af76b626c483484d782e8bd047c180db590e4c"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-win32.whl", hash = "sha256:2abccab84d057723d2ca8f99ff7b619285d40da6814d50366f61f0fc385c3903"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-win_amd64.whl", hash = "sha256:bef7e3f9dc6f0c13afdd671008534be5744e0e682fb851584c8c3a025ec09720"}, - {file = "psycopg2_binary-2.9.5-cp36-cp36m-macosx_10_14_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:6e63814ec71db9bdb42905c925639f319c80e7909fb76c3b84edc79dadef8d60"}, - {file = "psycopg2_binary-2.9.5-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:212757ffcecb3e1a5338d4e6761bf9c04f750e7d027117e74aa3cd8a75bb6fbd"}, - {file = "psycopg2_binary-2.9.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f8a9bcab7b6db2e3dbf65b214dfc795b4c6b3bb3af922901b6a67f7cb47d5f8"}, - {file = "psycopg2_binary-2.9.5-cp36-cp36m-manylinux_2_24_aarch64.whl", hash = "sha256:56b2957a145f816726b109ee3d4e6822c23f919a7d91af5a94593723ed667835"}, - {file = "psycopg2_binary-2.9.5-cp36-cp36m-manylinux_2_24_ppc64le.whl", hash = "sha256:f95b8aca2703d6a30249f83f4fe6a9abf2e627aa892a5caaab2267d56be7ab69"}, - {file = "psycopg2_binary-2.9.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:70831e03bd53702c941da1a1ad36c17d825a24fbb26857b40913d58df82ec18b"}, - {file = "psycopg2_binary-2.9.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:dbc332beaf8492b5731229a881807cd7b91b50dbbbaf7fe2faf46942eda64a24"}, - {file = "psycopg2_binary-2.9.5-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:2d964eb24c8b021623df1c93c626671420c6efadbdb8655cb2bd5e0c6fa422ba"}, - {file = "psycopg2_binary-2.9.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:95076399ec3b27a8f7fa1cc9a83417b1c920d55cf7a97f718a94efbb96c7f503"}, - {file = "psycopg2_binary-2.9.5-cp36-cp36m-win32.whl", hash = "sha256:3fc33295cfccad697a97a76dec3f1e94ad848b7b163c3228c1636977966b51e2"}, - {file = "psycopg2_binary-2.9.5-cp36-cp36m-win_amd64.whl", hash = "sha256:02551647542f2bf89073d129c73c05a25c372fc0a49aa50e0de65c3c143d8bd0"}, - {file = "psycopg2_binary-2.9.5-cp37-cp37m-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:63e318dbe52709ed10d516a356f22a635e07a2e34c68145484ed96a19b0c4c68"}, - {file = "psycopg2_binary-2.9.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7e518a0911c50f60313cb9e74a169a65b5d293770db4770ebf004245f24b5c5"}, - {file = "psycopg2_binary-2.9.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b9d38a4656e4e715d637abdf7296e98d6267df0cc0a8e9a016f8ba07e4aa3eeb"}, - {file = "psycopg2_binary-2.9.5-cp37-cp37m-manylinux_2_24_aarch64.whl", hash = "sha256:68d81a2fe184030aa0c5c11e518292e15d342a667184d91e30644c9d533e53e1"}, - {file = "psycopg2_binary-2.9.5-cp37-cp37m-manylinux_2_24_ppc64le.whl", hash = "sha256:7ee3095d02d6f38bd7d9a5358fcc9ea78fcdb7176921528dd709cc63f40184f5"}, - {file = "psycopg2_binary-2.9.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:46512486be6fbceef51d7660dec017394ba3e170299d1dc30928cbedebbf103a"}, - {file = "psycopg2_binary-2.9.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b911dfb727e247340d36ae20c4b9259e4a64013ab9888ccb3cbba69b77fd9636"}, - {file = "psycopg2_binary-2.9.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:422e3d43b47ac20141bc84b3d342eead8d8099a62881a501e97d15f6addabfe9"}, - {file = "psycopg2_binary-2.9.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:c5682a45df7d9642eff590abc73157c887a68f016df0a8ad722dcc0f888f56d7"}, - {file = "psycopg2_binary-2.9.5-cp37-cp37m-win32.whl", hash = "sha256:b8104f709590fff72af801e916817560dbe1698028cd0afe5a52d75ceb1fce5f"}, - {file = "psycopg2_binary-2.9.5-cp37-cp37m-win_amd64.whl", hash = "sha256:7b3751857da3e224f5629400736a7b11e940b5da5f95fa631d86219a1beaafec"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:043a9fd45a03858ff72364b4b75090679bd875ee44df9c0613dc862ca6b98460"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9ffdc51001136b699f9563b1c74cc1f8c07f66ef7219beb6417a4c8aaa896c28"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c15ba5982c177bc4b23a7940c7e4394197e2d6a424a2d282e7c236b66da6d896"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dc85b3777068ed30aff8242be2813038a929f2084f69e43ef869daddae50f6ee"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-manylinux_2_24_aarch64.whl", hash = "sha256:215d6bf7e66732a514f47614f828d8c0aaac9a648c46a831955cb103473c7147"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-manylinux_2_24_ppc64le.whl", hash = "sha256:7d07f552d1e412f4b4e64ce386d4c777a41da3b33f7098b6219012ba534fb2c2"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:a0adef094c49f242122bb145c3c8af442070dc0e4312db17e49058c1702606d4"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:00475004e5ed3e3bf5e056d66e5dcdf41a0dc62efcd57997acd9135c40a08a50"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:7d88db096fa19d94f433420eaaf9f3c45382da2dd014b93e4bf3215639047c16"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:902844f9c4fb19b17dfa84d9e2ca053d4a4ba265723d62ea5c9c26b38e0aa1e6"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-win32.whl", hash = "sha256:4e7904d1920c0c89105c0517dc7e3f5c20fb4e56ba9cdef13048db76947f1d79"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-win_amd64.whl", hash = "sha256:a36a0e791805aa136e9cbd0ffa040d09adec8610453ee8a753f23481a0057af5"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:25382c7d174c679ce6927c16b6fbb68b10e56ee44b1acb40671e02d29f2fce7c"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9c38d3869238e9d3409239bc05bc27d6b7c99c2a460ea337d2814b35fb4fea1b"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5c6527c8efa5226a9e787507652dd5ba97b62d29b53c371a85cd13f957fe4d42"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e59137cdb970249ae60be2a49774c6dfb015bd0403f05af1fe61862e9626642d"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-manylinux_2_24_aarch64.whl", hash = "sha256:d4c7b3a31502184e856df1f7bbb2c3735a05a8ce0ade34c5277e1577738a5c91"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-manylinux_2_24_ppc64le.whl", hash = "sha256:b9a794cef1d9c1772b94a72eec6da144c18e18041d294a9ab47669bc77a80c1d"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c5254cbd4f4855e11cebf678c1a848a3042d455a22a4ce61349c36aafd4c2267"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:c5e65c6ac0ae4bf5bef1667029f81010b6017795dcb817ba5c7b8a8d61fab76f"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:74eddec4537ab1f701a1647214734bc52cee2794df748f6ae5908e00771f180a"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:01ad49d68dd8c5362e4bfb4158f2896dc6e0c02e87b8a3770fc003459f1a4425"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-win32.whl", hash = "sha256:937880290775033a743f4836aa253087b85e62784b63fd099ee725d567a48aa1"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-win_amd64.whl", hash = "sha256:484405b883630f3e74ed32041a87456c5e0e63a8e3429aa93e8714c366d62bd1"}, -] -ptyprocess = [ - {file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"}, - {file = "ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"}, -] -pure-eval = [ - {file = "pure_eval-0.2.2-py3-none-any.whl", hash = "sha256:01eaab343580944bc56080ebe0a674b39ec44a945e6d09ba7db3cb8cec289350"}, - {file = "pure_eval-0.2.2.tar.gz", hash = "sha256:2b45320af6dfaa1750f543d714b6d1c520a1688dec6fd24d339063ce0aaa9ac3"}, -] -py = [ - {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, - {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, -] -pyasn1 = [ - {file = "pyasn1-0.4.8-py2.py3-none-any.whl", hash = "sha256:39c7e2ec30515947ff4e87fb6f456dfc6e84857d34be479c9d4a4ba4bf46aa5d"}, - {file = "pyasn1-0.4.8.tar.gz", hash = "sha256:aef77c9fb94a3ac588e87841208bdec464471d9871bd5050a287cc9a475cd0ba"}, -] -pycodestyle = [ - {file = "pycodestyle-2.7.0-py2.py3-none-any.whl", hash = "sha256:514f76d918fcc0b55c6680472f0a37970994e07bbb80725808c17089be302068"}, - {file = "pycodestyle-2.7.0.tar.gz", hash = "sha256:c389c1d06bf7904078ca03399a4816f974a1d590090fecea0c63ec26ebaf1cef"}, -] -pycparser = [ - {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, - {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, -] -pydantic = [ - {file = "pydantic-1.10.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bb6ad4489af1bac6955d38ebcb95079a836af31e4c4f74aba1ca05bb9f6027bd"}, - {file = "pydantic-1.10.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a1f5a63a6dfe19d719b1b6e6106561869d2efaca6167f84f5ab9347887d78b98"}, - {file = "pydantic-1.10.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:352aedb1d71b8b0736c6d56ad2bd34c6982720644b0624462059ab29bd6e5912"}, - {file = "pydantic-1.10.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:19b3b9ccf97af2b7519c42032441a891a5e05c68368f40865a90eb88833c2559"}, - {file = "pydantic-1.10.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e9069e1b01525a96e6ff49e25876d90d5a563bc31c658289a8772ae186552236"}, - {file = "pydantic-1.10.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:355639d9afc76bcb9b0c3000ddcd08472ae75318a6eb67a15866b87e2efa168c"}, - {file = "pydantic-1.10.2-cp310-cp310-win_amd64.whl", hash = "sha256:ae544c47bec47a86bc7d350f965d8b15540e27e5aa4f55170ac6a75e5f73b644"}, - {file = "pydantic-1.10.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a4c805731c33a8db4b6ace45ce440c4ef5336e712508b4d9e1aafa617dc9907f"}, - {file = "pydantic-1.10.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d49f3db871575e0426b12e2f32fdb25e579dea16486a26e5a0474af87cb1ab0a"}, - {file = "pydantic-1.10.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:37c90345ec7dd2f1bcef82ce49b6235b40f282b94d3eec47e801baf864d15525"}, - {file = "pydantic-1.10.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7b5ba54d026c2bd2cb769d3468885f23f43710f651688e91f5fb1edcf0ee9283"}, - {file = "pydantic-1.10.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:05e00dbebbe810b33c7a7362f231893183bcc4251f3f2ff991c31d5c08240c42"}, - {file = "pydantic-1.10.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2d0567e60eb01bccda3a4df01df677adf6b437958d35c12a3ac3e0f078b0ee52"}, - {file = "pydantic-1.10.2-cp311-cp311-win_amd64.whl", hash = "sha256:c6f981882aea41e021f72779ce2a4e87267458cc4d39ea990729e21ef18f0f8c"}, - {file = "pydantic-1.10.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c4aac8e7103bf598373208f6299fa9a5cfd1fc571f2d40bf1dd1955a63d6eeb5"}, - {file = "pydantic-1.10.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:81a7b66c3f499108b448f3f004801fcd7d7165fb4200acb03f1c2402da73ce4c"}, - {file = "pydantic-1.10.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bedf309630209e78582ffacda64a21f96f3ed2e51fbf3962d4d488e503420254"}, - {file = "pydantic-1.10.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:9300fcbebf85f6339a02c6994b2eb3ff1b9c8c14f502058b5bf349d42447dcf5"}, - {file = "pydantic-1.10.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:216f3bcbf19c726b1cc22b099dd409aa371f55c08800bcea4c44c8f74b73478d"}, - {file = "pydantic-1.10.2-cp37-cp37m-win_amd64.whl", hash = "sha256:dd3f9a40c16daf323cf913593083698caee97df2804aa36c4b3175d5ac1b92a2"}, - {file = "pydantic-1.10.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b97890e56a694486f772d36efd2ba31612739bc6f3caeee50e9e7e3ebd2fdd13"}, - {file = "pydantic-1.10.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9cabf4a7f05a776e7793e72793cd92cc865ea0e83a819f9ae4ecccb1b8aa6116"}, - {file = "pydantic-1.10.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06094d18dd5e6f2bbf93efa54991c3240964bb663b87729ac340eb5014310624"}, - {file = "pydantic-1.10.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cc78cc83110d2f275ec1970e7a831f4e371ee92405332ebfe9860a715f8336e1"}, - {file = "pydantic-1.10.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1ee433e274268a4b0c8fde7ad9d58ecba12b069a033ecc4645bb6303c062d2e9"}, - {file = "pydantic-1.10.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:7c2abc4393dea97a4ccbb4ec7d8658d4e22c4765b7b9b9445588f16c71ad9965"}, - {file = "pydantic-1.10.2-cp38-cp38-win_amd64.whl", hash = "sha256:0b959f4d8211fc964772b595ebb25f7652da3f22322c007b6fed26846a40685e"}, - {file = "pydantic-1.10.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c33602f93bfb67779f9c507e4d69451664524389546bacfe1bee13cae6dc7488"}, - {file = "pydantic-1.10.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5760e164b807a48a8f25f8aa1a6d857e6ce62e7ec83ea5d5c5a802eac81bad41"}, - {file = "pydantic-1.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6eb843dcc411b6a2237a694f5e1d649fc66c6064d02b204a7e9d194dff81eb4b"}, - {file = "pydantic-1.10.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b8795290deaae348c4eba0cebb196e1c6b98bdbe7f50b2d0d9a4a99716342fe"}, - {file = "pydantic-1.10.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:e0bedafe4bc165ad0a56ac0bd7695df25c50f76961da29c050712596cf092d6d"}, - {file = "pydantic-1.10.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:2e05aed07fa02231dbf03d0adb1be1d79cabb09025dd45aa094aa8b4e7b9dcda"}, - {file = "pydantic-1.10.2-cp39-cp39-win_amd64.whl", hash = "sha256:c1ba1afb396148bbc70e9eaa8c06c1716fdddabaf86e7027c5988bae2a829ab6"}, - {file = "pydantic-1.10.2-py3-none-any.whl", hash = "sha256:1b6ee725bd6e83ec78b1aa32c5b1fa67a3a65badddde3976bca5fe4568f27709"}, - {file = "pydantic-1.10.2.tar.gz", hash = "sha256:91b8e218852ef6007c2b98cd861601c6a09f1aa32bbbb74fab5b1c33d4a1e410"}, -] -pyflakes = [ - {file = "pyflakes-2.3.1-py2.py3-none-any.whl", hash = "sha256:7893783d01b8a89811dd72d7dfd4d84ff098e5eed95cfa8905b22bbffe52efc3"}, - {file = "pyflakes-2.3.1.tar.gz", hash = "sha256:f5bc8ecabc05bb9d291eb5203d6810b49040f6ff446a756326104746cc00c1db"}, -] -Pygments = [ - {file = "Pygments-2.13.0-py3-none-any.whl", hash = "sha256:f643f331ab57ba3c9d89212ee4a2dabc6e94f117cf4eefde99a0574720d14c42"}, - {file = "Pygments-2.13.0.tar.gz", hash = "sha256:56a8508ae95f98e2b9bdf93a6be5ae3f7d8af858b43e02c5a2ff083726be40c1"}, -] -pyparsing = [ - {file = "pyparsing-3.0.9-py3-none-any.whl", hash = "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc"}, - {file = "pyparsing-3.0.9.tar.gz", hash = "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb"}, -] -pytest = [ - {file = "pytest-5.4.3-py3-none-any.whl", hash = "sha256:5c0db86b698e8f170ba4582a492248919255fcd4c79b1ee64ace34301fb589a1"}, - {file = "pytest-5.4.3.tar.gz", hash = "sha256:7979331bfcba207414f5e1263b5a0f8f521d0f457318836a7355531ed1a4c7d8"}, -] -pytest-cov = [ - {file = "pytest-cov-2.12.1.tar.gz", hash = "sha256:261ceeb8c227b726249b376b8526b600f38667ee314f910353fa318caa01f4d7"}, - {file = "pytest_cov-2.12.1-py2.py3-none-any.whl", hash = "sha256:261bb9e47e65bd099c89c3edf92972865210c36813f80ede5277dceb77a4a62a"}, -] -python-dateutil = [ - {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, - {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, -] -python-jose = [ - {file = "python-jose-3.3.0.tar.gz", hash = "sha256:55779b5e6ad599c6336191246e95eb2293a9ddebd555f796a65f838f07e5d78a"}, - {file = "python_jose-3.3.0-py2.py3-none-any.whl", hash = "sha256:9b1376b023f8b298536eedd47ae1089bcdb848f1535ab30555cd92002d78923a"}, -] -python-multipart = [ - {file = "python-multipart-0.0.5.tar.gz", hash = "sha256:f7bb5f611fc600d15fa47b3974c8aa16e93724513b49b5f95c81e6624c83fa43"}, -] -pytz = [ - {file = "pytz-2022.6-py2.py3-none-any.whl", hash = "sha256:222439474e9c98fced559f1709d89e6c9cbf8d79c794ff3eb9f8800064291427"}, - {file = "pytz-2022.6.tar.gz", hash = "sha256:e89512406b793ca39f5971bc999cc538ce125c0e51c27941bef4568b460095e2"}, -] -pywin32 = [ - {file = "pywin32-305-cp310-cp310-win32.whl", hash = "sha256:421f6cd86e84bbb696d54563c48014b12a23ef95a14e0bdba526be756d89f116"}, - {file = "pywin32-305-cp310-cp310-win_amd64.whl", hash = "sha256:73e819c6bed89f44ff1d690498c0a811948f73777e5f97c494c152b850fad478"}, - {file = "pywin32-305-cp310-cp310-win_arm64.whl", hash = "sha256:742eb905ce2187133a29365b428e6c3b9001d79accdc30aa8969afba1d8470f4"}, - {file = "pywin32-305-cp311-cp311-win32.whl", hash = "sha256:19ca459cd2e66c0e2cc9a09d589f71d827f26d47fe4a9d09175f6aa0256b51c2"}, - {file = "pywin32-305-cp311-cp311-win_amd64.whl", hash = "sha256:326f42ab4cfff56e77e3e595aeaf6c216712bbdd91e464d167c6434b28d65990"}, - {file = "pywin32-305-cp311-cp311-win_arm64.whl", hash = "sha256:4ecd404b2c6eceaca52f8b2e3e91b2187850a1ad3f8b746d0796a98b4cea04db"}, - {file = "pywin32-305-cp36-cp36m-win32.whl", hash = "sha256:48d8b1659284f3c17b68587af047d110d8c44837736b8932c034091683e05863"}, - {file = "pywin32-305-cp36-cp36m-win_amd64.whl", hash = "sha256:13362cc5aa93c2beaf489c9c9017c793722aeb56d3e5166dadd5ef82da021fe1"}, - {file = "pywin32-305-cp37-cp37m-win32.whl", hash = "sha256:a55db448124d1c1484df22fa8bbcbc45c64da5e6eae74ab095b9ea62e6d00496"}, - {file = "pywin32-305-cp37-cp37m-win_amd64.whl", hash = "sha256:109f98980bfb27e78f4df8a51a8198e10b0f347257d1e265bb1a32993d0c973d"}, - {file = "pywin32-305-cp38-cp38-win32.whl", hash = "sha256:9dd98384da775afa009bc04863426cb30596fd78c6f8e4e2e5bbf4edf8029504"}, - {file = "pywin32-305-cp38-cp38-win_amd64.whl", hash = "sha256:56d7a9c6e1a6835f521788f53b5af7912090674bb84ef5611663ee1595860fc7"}, - {file = "pywin32-305-cp39-cp39-win32.whl", hash = "sha256:9d968c677ac4d5cbdaa62fd3014ab241718e619d8e36ef8e11fb930515a1e918"}, - {file = "pywin32-305-cp39-cp39-win_amd64.whl", hash = "sha256:50768c6b7c3f0b38b7fb14dd4104da93ebced5f1a50dc0e834594bff6fbe1271"}, -] -pyzmq = [ - {file = "pyzmq-24.0.1-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:28b119ba97129d3001673a697b7cce47fe6de1f7255d104c2f01108a5179a066"}, - {file = "pyzmq-24.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bcbebd369493d68162cddb74a9c1fcebd139dfbb7ddb23d8f8e43e6c87bac3a6"}, - {file = "pyzmq-24.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ae61446166983c663cee42c852ed63899e43e484abf080089f771df4b9d272ef"}, - {file = "pyzmq-24.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:87f7ac99b15270db8d53f28c3c7b968612993a90a5cf359da354efe96f5372b4"}, - {file = "pyzmq-24.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9dca7c3956b03b7663fac4d150f5e6d4f6f38b2462c1e9afd83bcf7019f17913"}, - {file = "pyzmq-24.0.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:8c78bfe20d4c890cb5580a3b9290f700c570e167d4cdcc55feec07030297a5e3"}, - {file = "pyzmq-24.0.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:48f721f070726cd2a6e44f3c33f8ee4b24188e4b816e6dd8ba542c8c3bb5b246"}, - {file = "pyzmq-24.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:afe1f3bc486d0ce40abb0a0c9adb39aed3bbac36ebdc596487b0cceba55c21c1"}, - {file = "pyzmq-24.0.1-cp310-cp310-win32.whl", hash = "sha256:3e6192dbcefaaa52ed81be88525a54a445f4b4fe2fffcae7fe40ebb58bd06bfd"}, - {file = "pyzmq-24.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:86de64468cad9c6d269f32a6390e210ca5ada568c7a55de8e681ca3b897bb340"}, - {file = "pyzmq-24.0.1-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:838812c65ed5f7c2bd11f7b098d2e5d01685a3f6d1f82849423b570bae698c00"}, - {file = "pyzmq-24.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:dfb992dbcd88d8254471760879d48fb20836d91baa90f181c957122f9592b3dc"}, - {file = "pyzmq-24.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7abddb2bd5489d30ffeb4b93a428130886c171b4d355ccd226e83254fcb6b9ef"}, - {file = "pyzmq-24.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:94010bd61bc168c103a5b3b0f56ed3b616688192db7cd5b1d626e49f28ff51b3"}, - {file = "pyzmq-24.0.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:8242543c522d84d033fe79be04cb559b80d7eb98ad81b137ff7e0a9020f00ace"}, - {file = "pyzmq-24.0.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ccb94342d13e3bf3ffa6e62f95b5e3f0bc6bfa94558cb37f4b3d09d6feb536ff"}, - {file = "pyzmq-24.0.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6640f83df0ae4ae1104d4c62b77e9ef39be85ebe53f636388707d532bee2b7b8"}, - {file = "pyzmq-24.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:a180dbd5ea5d47c2d3b716d5c19cc3fb162d1c8db93b21a1295d69585bfddac1"}, - {file = "pyzmq-24.0.1-cp311-cp311-win32.whl", hash = "sha256:624321120f7e60336be8ec74a172ae7fba5c3ed5bf787cc85f7e9986c9e0ebc2"}, - {file = "pyzmq-24.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:1724117bae69e091309ffb8255412c4651d3f6355560d9af312d547f6c5bc8b8"}, - {file = "pyzmq-24.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:15975747462ec49fdc863af906bab87c43b2491403ab37a6d88410635786b0f4"}, - {file = "pyzmq-24.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b947e264f0e77d30dcbccbb00f49f900b204b922eb0c3a9f0afd61aaa1cedc3d"}, - {file = "pyzmq-24.0.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0ec91f1bad66f3ee8c6deb65fa1fe418e8ad803efedd69c35f3b5502f43bd1dc"}, - {file = "pyzmq-24.0.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:db03704b3506455d86ec72c3358a779e9b1d07b61220dfb43702b7b668edcd0d"}, - {file = "pyzmq-24.0.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:e7e66b4e403c2836ac74f26c4b65d8ac0ca1eef41dfcac2d013b7482befaad83"}, - {file = "pyzmq-24.0.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:7a23ccc1083c260fa9685c93e3b170baba45aeed4b524deb3f426b0c40c11639"}, - {file = "pyzmq-24.0.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:fa0ae3275ef706c0309556061185dd0e4c4cd3b7d6f67ae617e4e677c7a41e2e"}, - {file = "pyzmq-24.0.1-cp36-cp36m-win32.whl", hash = "sha256:f01de4ec083daebf210531e2cca3bdb1608dbbbe00a9723e261d92087a1f6ebc"}, - {file = "pyzmq-24.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:de4217b9eb8b541cf2b7fde4401ce9d9a411cc0af85d410f9d6f4333f43640be"}, - {file = "pyzmq-24.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:78068e8678ca023594e4a0ab558905c1033b2d3e806a0ad9e3094e231e115a33"}, - {file = "pyzmq-24.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77c2713faf25a953c69cf0f723d1b7dd83827b0834e6c41e3fb3bbc6765914a1"}, - {file = "pyzmq-24.0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8bb4af15f305056e95ca1bd086239b9ebc6ad55e9f49076d27d80027f72752f6"}, - {file = "pyzmq-24.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:0f14cffd32e9c4c73da66db97853a6aeceaac34acdc0fae9e5bbc9370281864c"}, - {file = "pyzmq-24.0.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:0108358dab8c6b27ff6b985c2af4b12665c1bc659648284153ee501000f5c107"}, - {file = "pyzmq-24.0.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:d66689e840e75221b0b290b0befa86f059fb35e1ee6443bce51516d4d61b6b99"}, - {file = "pyzmq-24.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ae08ac90aa8fa14caafc7a6251bd218bf6dac518b7bff09caaa5e781119ba3f2"}, - {file = "pyzmq-24.0.1-cp37-cp37m-win32.whl", hash = "sha256:8421aa8c9b45ea608c205db9e1c0c855c7e54d0e9c2c2f337ce024f6843cab3b"}, - {file = "pyzmq-24.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:54d8b9c5e288362ec8595c1d98666d36f2070fd0c2f76e2b3c60fbad9bd76227"}, - {file = "pyzmq-24.0.1-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:acbd0a6d61cc954b9f535daaa9ec26b0a60a0d4353c5f7c1438ebc88a359a47e"}, - {file = "pyzmq-24.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:47b11a729d61a47df56346283a4a800fa379ae6a85870d5a2e1e4956c828eedc"}, - {file = "pyzmq-24.0.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:abe6eb10122f0d746a0d510c2039ae8edb27bc9af29f6d1b05a66cc2401353ff"}, - {file = "pyzmq-24.0.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:07bec1a1b22dacf718f2c0e71b49600bb6a31a88f06527dfd0b5aababe3fa3f7"}, - {file = "pyzmq-24.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0d945a85b70da97ae86113faf9f1b9294efe66bd4a5d6f82f2676d567338b66"}, - {file = "pyzmq-24.0.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:1b7928bb7580736ffac5baf814097be342ba08d3cfdfb48e52773ec959572287"}, - {file = "pyzmq-24.0.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:b946da90dc2799bcafa682692c1d2139b2a96ec3c24fa9fc6f5b0da782675330"}, - {file = "pyzmq-24.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:c8840f064b1fb377cffd3efeaad2b190c14d4c8da02316dae07571252d20b31f"}, - {file = "pyzmq-24.0.1-cp38-cp38-win32.whl", hash = "sha256:4854f9edc5208f63f0841c0c667260ae8d6846cfa233c479e29fdc85d42ebd58"}, - {file = "pyzmq-24.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:42d4f97b9795a7aafa152a36fe2ad44549b83a743fd3e77011136def512e6c2a"}, - {file = "pyzmq-24.0.1-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:52afb0ac962963fff30cf1be775bc51ae083ef4c1e354266ab20e5382057dd62"}, - {file = "pyzmq-24.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8bad8210ad4df68c44ff3685cca3cda448ee46e20d13edcff8909eba6ec01ca4"}, - {file = "pyzmq-24.0.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:dabf1a05318d95b1537fd61d9330ef4313ea1216eea128a17615038859da3b3b"}, - {file = "pyzmq-24.0.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5bd3d7dfd9cd058eb68d9a905dec854f86649f64d4ddf21f3ec289341386c44b"}, - {file = "pyzmq-24.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8012bce6836d3f20a6c9599f81dfa945f433dab4dbd0c4917a6fb1f998ab33d"}, - {file = "pyzmq-24.0.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c31805d2c8ade9b11feca4674eee2b9cce1fec3e8ddb7bbdd961a09dc76a80ea"}, - {file = "pyzmq-24.0.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:3104f4b084ad5d9c0cb87445cc8cfd96bba710bef4a66c2674910127044df209"}, - {file = "pyzmq-24.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:df0841f94928f8af9c7a1f0aaaffba1fb74607af023a152f59379c01c53aee58"}, - {file = "pyzmq-24.0.1-cp39-cp39-win32.whl", hash = "sha256:a435ef8a3bd95c8a2d316d6e0ff70d0db524f6037411652803e118871d703333"}, - {file = "pyzmq-24.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:2032d9cb994ce3b4cba2b8dfae08c7e25bc14ba484c770d4d3be33c27de8c45b"}, - {file = "pyzmq-24.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:bb5635c851eef3a7a54becde6da99485eecf7d068bd885ac8e6d173c4ecd68b0"}, - {file = "pyzmq-24.0.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:83ea1a398f192957cb986d9206ce229efe0ee75e3c6635baff53ddf39bd718d5"}, - {file = "pyzmq-24.0.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:941fab0073f0a54dc33d1a0460cb04e0d85893cb0c5e1476c785000f8b359409"}, - {file = "pyzmq-24.0.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e8f482c44ccb5884bf3f638f29bea0f8dc68c97e38b2061769c4cb697f6140d"}, - {file = "pyzmq-24.0.1-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:613010b5d17906c4367609e6f52e9a2595e35d5cc27d36ff3f1b6fa6e954d944"}, - {file = "pyzmq-24.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:65c94410b5a8355cfcf12fd600a313efee46ce96a09e911ea92cf2acf6708804"}, - {file = "pyzmq-24.0.1-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:20e7eeb1166087db636c06cae04a1ef59298627f56fb17da10528ab52a14c87f"}, - {file = "pyzmq-24.0.1-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:a2712aee7b3834ace51738c15d9ee152cc5a98dc7d57dd93300461b792ab7b43"}, - {file = "pyzmq-24.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a7c280185c4da99e0cc06c63bdf91f5b0b71deb70d8717f0ab870a43e376db8"}, - {file = "pyzmq-24.0.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:858375573c9225cc8e5b49bfac846a77b696b8d5e815711b8d4ba3141e6e8879"}, - {file = "pyzmq-24.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:80093b595921eed1a2cead546a683b9e2ae7f4a4592bb2ab22f70d30174f003a"}, - {file = "pyzmq-24.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f3f3154fde2b1ff3aa7b4f9326347ebc89c8ef425ca1db8f665175e6d3bd42f"}, - {file = "pyzmq-24.0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abb756147314430bee5d10919b8493c0ccb109ddb7f5dfd2fcd7441266a25b75"}, - {file = "pyzmq-24.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:44e706bac34e9f50779cb8c39f10b53a4d15aebb97235643d3112ac20bd577b4"}, - {file = "pyzmq-24.0.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:687700f8371643916a1d2c61f3fdaa630407dd205c38afff936545d7b7466066"}, - {file = "pyzmq-24.0.1.tar.gz", hash = "sha256:216f5d7dbb67166759e59b0479bca82b8acf9bed6015b526b8eb10143fb08e77"}, -] -raven = [ - {file = "raven-6.10.0-py2.py3-none-any.whl", hash = "sha256:44a13f87670836e153951af9a3c80405d36b43097db869a36e92809673692ce4"}, - {file = "raven-6.10.0.tar.gz", hash = "sha256:3fa6de6efa2493a7c827472e984ce9b020797d0da16f1db67197bcc23c8fae54"}, -] -regex = [ - {file = "regex-2022.10.31-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a8ff454ef0bb061e37df03557afda9d785c905dab15584860f982e88be73015f"}, - {file = "regex-2022.10.31-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1eba476b1b242620c266edf6325b443a2e22b633217a9835a52d8da2b5c051f9"}, - {file = "regex-2022.10.31-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0e5af9a9effb88535a472e19169e09ce750c3d442fb222254a276d77808620b"}, - {file = "regex-2022.10.31-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d03fe67b2325cb3f09be029fd5da8df9e6974f0cde2c2ac6a79d2634e791dd57"}, - {file = "regex-2022.10.31-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9d0b68ac1743964755ae2d89772c7e6fb0118acd4d0b7464eaf3921c6b49dd4"}, - {file = "regex-2022.10.31-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a45b6514861916c429e6059a55cf7db74670eaed2052a648e3e4d04f070e001"}, - {file = "regex-2022.10.31-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8b0886885f7323beea6f552c28bff62cbe0983b9fbb94126531693ea6c5ebb90"}, - {file = "regex-2022.10.31-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5aefb84a301327ad115e9d346c8e2760009131d9d4b4c6b213648d02e2abe144"}, - {file = "regex-2022.10.31-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:702d8fc6f25bbf412ee706bd73019da5e44a8400861dfff7ff31eb5b4a1276dc"}, - {file = "regex-2022.10.31-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:a3c1ebd4ed8e76e886507c9eddb1a891673686c813adf889b864a17fafcf6d66"}, - {file = "regex-2022.10.31-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:50921c140561d3db2ab9f5b11c5184846cde686bb5a9dc64cae442926e86f3af"}, - {file = "regex-2022.10.31-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:7db345956ecce0c99b97b042b4ca7326feeec6b75facd8390af73b18e2650ffc"}, - {file = "regex-2022.10.31-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:763b64853b0a8f4f9cfb41a76a4a85a9bcda7fdda5cb057016e7706fde928e66"}, - {file = "regex-2022.10.31-cp310-cp310-win32.whl", hash = "sha256:44136355e2f5e06bf6b23d337a75386371ba742ffa771440b85bed367c1318d1"}, - {file = "regex-2022.10.31-cp310-cp310-win_amd64.whl", hash = "sha256:bfff48c7bd23c6e2aec6454aaf6edc44444b229e94743b34bdcdda2e35126cf5"}, - {file = "regex-2022.10.31-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4b4b1fe58cd102d75ef0552cf17242705ce0759f9695334a56644ad2d83903fe"}, - {file = "regex-2022.10.31-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:542e3e306d1669b25936b64917285cdffcd4f5c6f0247636fec037187bd93542"}, - {file = "regex-2022.10.31-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c27cc1e4b197092e50ddbf0118c788d9977f3f8f35bfbbd3e76c1846a3443df7"}, - {file = "regex-2022.10.31-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8e38472739028e5f2c3a4aded0ab7eadc447f0d84f310c7a8bb697ec417229e"}, - {file = "regex-2022.10.31-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:76c598ca73ec73a2f568e2a72ba46c3b6c8690ad9a07092b18e48ceb936e9f0c"}, - {file = "regex-2022.10.31-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c28d3309ebd6d6b2cf82969b5179bed5fefe6142c70f354ece94324fa11bf6a1"}, - {file = "regex-2022.10.31-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9af69f6746120998cd9c355e9c3c6aec7dff70d47247188feb4f829502be8ab4"}, - {file = "regex-2022.10.31-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a5f9505efd574d1e5b4a76ac9dd92a12acb2b309551e9aa874c13c11caefbe4f"}, - {file = "regex-2022.10.31-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:5ff525698de226c0ca743bfa71fc6b378cda2ddcf0d22d7c37b1cc925c9650a5"}, - {file = "regex-2022.10.31-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:4fe7fda2fe7c8890d454f2cbc91d6c01baf206fbc96d89a80241a02985118c0c"}, - {file = "regex-2022.10.31-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:2cdc55ca07b4e70dda898d2ab7150ecf17c990076d3acd7a5f3b25cb23a69f1c"}, - {file = "regex-2022.10.31-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:44a6c2f6374e0033873e9ed577a54a3602b4f609867794c1a3ebba65e4c93ee7"}, - {file = "regex-2022.10.31-cp311-cp311-win32.whl", hash = "sha256:d8716f82502997b3d0895d1c64c3b834181b1eaca28f3f6336a71777e437c2af"}, - {file = "regex-2022.10.31-cp311-cp311-win_amd64.whl", hash = "sha256:61edbca89aa3f5ef7ecac8c23d975fe7261c12665f1d90a6b1af527bba86ce61"}, - {file = "regex-2022.10.31-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:0a069c8483466806ab94ea9068c34b200b8bfc66b6762f45a831c4baaa9e8cdd"}, - {file = "regex-2022.10.31-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d26166acf62f731f50bdd885b04b38828436d74e8e362bfcb8df221d868b5d9b"}, - {file = "regex-2022.10.31-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac741bf78b9bb432e2d314439275235f41656e189856b11fb4e774d9f7246d81"}, - {file = "regex-2022.10.31-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:75f591b2055523fc02a4bbe598aa867df9e953255f0b7f7715d2a36a9c30065c"}, - {file = "regex-2022.10.31-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b30bddd61d2a3261f025ad0f9ee2586988c6a00c780a2fb0a92cea2aa702c54"}, - {file = "regex-2022.10.31-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef4163770525257876f10e8ece1cf25b71468316f61451ded1a6f44273eedeb5"}, - {file = "regex-2022.10.31-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7b280948d00bd3973c1998f92e22aa3ecb76682e3a4255f33e1020bd32adf443"}, - {file = "regex-2022.10.31-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:d0213671691e341f6849bf33cd9fad21f7b1cb88b89e024f33370733fec58742"}, - {file = "regex-2022.10.31-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:22e7ebc231d28393dfdc19b185d97e14a0f178bedd78e85aad660e93b646604e"}, - {file = "regex-2022.10.31-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:8ad241da7fac963d7573cc67a064c57c58766b62a9a20c452ca1f21050868dfa"}, - {file = "regex-2022.10.31-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:586b36ebda81e6c1a9c5a5d0bfdc236399ba6595e1397842fd4a45648c30f35e"}, - {file = "regex-2022.10.31-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:0653d012b3bf45f194e5e6a41df9258811ac8fc395579fa82958a8b76286bea4"}, - {file = "regex-2022.10.31-cp36-cp36m-win32.whl", hash = "sha256:144486e029793a733e43b2e37df16a16df4ceb62102636ff3db6033994711066"}, - {file = "regex-2022.10.31-cp36-cp36m-win_amd64.whl", hash = "sha256:c14b63c9d7bab795d17392c7c1f9aaabbffd4cf4387725a0ac69109fb3b550c6"}, - {file = "regex-2022.10.31-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:4cac3405d8dda8bc6ed499557625585544dd5cbf32072dcc72b5a176cb1271c8"}, - {file = "regex-2022.10.31-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23cbb932cc53a86ebde0fb72e7e645f9a5eec1a5af7aa9ce333e46286caef783"}, - {file = "regex-2022.10.31-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:74bcab50a13960f2a610cdcd066e25f1fd59e23b69637c92ad470784a51b1347"}, - {file = "regex-2022.10.31-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78d680ef3e4d405f36f0d6d1ea54e740366f061645930072d39bca16a10d8c93"}, - {file = "regex-2022.10.31-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce6910b56b700bea7be82c54ddf2e0ed792a577dfaa4a76b9af07d550af435c6"}, - {file = "regex-2022.10.31-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:659175b2144d199560d99a8d13b2228b85e6019b6e09e556209dfb8c37b78a11"}, - {file = "regex-2022.10.31-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:1ddf14031a3882f684b8642cb74eea3af93a2be68893901b2b387c5fd92a03ec"}, - {file = "regex-2022.10.31-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b683e5fd7f74fb66e89a1ed16076dbab3f8e9f34c18b1979ded614fe10cdc4d9"}, - {file = "regex-2022.10.31-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:2bde29cc44fa81c0a0c8686992c3080b37c488df167a371500b2a43ce9f026d1"}, - {file = "regex-2022.10.31-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:4919899577ba37f505aaebdf6e7dc812d55e8f097331312db7f1aab18767cce8"}, - {file = "regex-2022.10.31-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:9c94f7cc91ab16b36ba5ce476f1904c91d6c92441f01cd61a8e2729442d6fcf5"}, - {file = "regex-2022.10.31-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ae1e96785696b543394a4e3f15f3f225d44f3c55dafe3f206493031419fedf95"}, - {file = "regex-2022.10.31-cp37-cp37m-win32.whl", hash = "sha256:c670f4773f2f6f1957ff8a3962c7dd12e4be54d05839b216cb7fd70b5a1df394"}, - {file = "regex-2022.10.31-cp37-cp37m-win_amd64.whl", hash = "sha256:8e0caeff18b96ea90fc0eb6e3bdb2b10ab5b01a95128dfeccb64a7238decf5f0"}, - {file = "regex-2022.10.31-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:131d4be09bea7ce2577f9623e415cab287a3c8e0624f778c1d955ec7c281bd4d"}, - {file = "regex-2022.10.31-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e613a98ead2005c4ce037c7b061f2409a1a4e45099edb0ef3200ee26ed2a69a8"}, - {file = "regex-2022.10.31-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:052b670fafbe30966bbe5d025e90b2a491f85dfe5b2583a163b5e60a85a321ad"}, - {file = "regex-2022.10.31-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aa62a07ac93b7cb6b7d0389d8ef57ffc321d78f60c037b19dfa78d6b17c928ee"}, - {file = "regex-2022.10.31-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5352bea8a8f84b89d45ccc503f390a6be77917932b1c98c4cdc3565137acc714"}, - {file = "regex-2022.10.31-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20f61c9944f0be2dc2b75689ba409938c14876c19d02f7585af4460b6a21403e"}, - {file = "regex-2022.10.31-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:29c04741b9ae13d1e94cf93fca257730b97ce6ea64cfe1eba11cf9ac4e85afb6"}, - {file = "regex-2022.10.31-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:543883e3496c8b6d58bd036c99486c3c8387c2fc01f7a342b760c1ea3158a318"}, - {file = "regex-2022.10.31-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b7a8b43ee64ca8f4befa2bea4083f7c52c92864d8518244bfa6e88c751fa8fff"}, - {file = "regex-2022.10.31-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:6a9a19bea8495bb419dc5d38c4519567781cd8d571c72efc6aa959473d10221a"}, - {file = "regex-2022.10.31-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:6ffd55b5aedc6f25fd8d9f905c9376ca44fcf768673ffb9d160dd6f409bfda73"}, - {file = "regex-2022.10.31-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:4bdd56ee719a8f751cf5a593476a441c4e56c9b64dc1f0f30902858c4ef8771d"}, - {file = "regex-2022.10.31-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8ca88da1bd78990b536c4a7765f719803eb4f8f9971cc22d6ca965c10a7f2c4c"}, - {file = "regex-2022.10.31-cp38-cp38-win32.whl", hash = "sha256:5a260758454580f11dd8743fa98319bb046037dfab4f7828008909d0aa5292bc"}, - {file = "regex-2022.10.31-cp38-cp38-win_amd64.whl", hash = "sha256:5e6a5567078b3eaed93558842346c9d678e116ab0135e22eb72db8325e90b453"}, - {file = "regex-2022.10.31-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5217c25229b6a85049416a5c1e6451e9060a1edcf988641e309dbe3ab26d3e49"}, - {file = "regex-2022.10.31-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4bf41b8b0a80708f7e0384519795e80dcb44d7199a35d52c15cc674d10b3081b"}, - {file = "regex-2022.10.31-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0cf0da36a212978be2c2e2e2d04bdff46f850108fccc1851332bcae51c8907cc"}, - {file = "regex-2022.10.31-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d403d781b0e06d2922435ce3b8d2376579f0c217ae491e273bab8d092727d244"}, - {file = "regex-2022.10.31-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a37d51fa9a00d265cf73f3de3930fa9c41548177ba4f0faf76e61d512c774690"}, - {file = "regex-2022.10.31-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4f781ffedd17b0b834c8731b75cce2639d5a8afe961c1e58ee7f1f20b3af185"}, - {file = "regex-2022.10.31-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d243b36fbf3d73c25e48014961e83c19c9cc92530516ce3c43050ea6276a2ab7"}, - {file = "regex-2022.10.31-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:370f6e97d02bf2dd20d7468ce4f38e173a124e769762d00beadec3bc2f4b3bc4"}, - {file = "regex-2022.10.31-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:597f899f4ed42a38df7b0e46714880fb4e19a25c2f66e5c908805466721760f5"}, - {file = "regex-2022.10.31-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7dbdce0c534bbf52274b94768b3498abdf675a691fec5f751b6057b3030f34c1"}, - {file = "regex-2022.10.31-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:22960019a842777a9fa5134c2364efaed5fbf9610ddc5c904bd3a400973b0eb8"}, - {file = "regex-2022.10.31-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:7f5a3ffc731494f1a57bd91c47dc483a1e10048131ffb52d901bfe2beb6102e8"}, - {file = "regex-2022.10.31-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7ef6b5942e6bfc5706301a18a62300c60db9af7f6368042227ccb7eeb22d0892"}, - {file = "regex-2022.10.31-cp39-cp39-win32.whl", hash = "sha256:395161bbdbd04a8333b9ff9763a05e9ceb4fe210e3c7690f5e68cedd3d65d8e1"}, - {file = "regex-2022.10.31-cp39-cp39-win_amd64.whl", hash = "sha256:957403a978e10fb3ca42572a23e6f7badff39aa1ce2f4ade68ee452dc6807692"}, - {file = "regex-2022.10.31.tar.gz", hash = "sha256:a3a98921da9a1bf8457aeee6a551948a83601689e5ecdd736894ea9bbec77e83"}, -] -requests = [ - {file = "requests-2.28.1-py3-none-any.whl", hash = "sha256:8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349"}, - {file = "requests-2.28.1.tar.gz", hash = "sha256:7c5599b102feddaa661c826c56ab4fee28bfd17f5abca1ebbe3e7f19d7c97983"}, -] -rsa = [ - {file = "rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7"}, - {file = "rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21"}, -] -s3transfer = [ - {file = "s3transfer-0.6.0-py3-none-any.whl", hash = "sha256:06176b74f3a15f61f1b4f25a1fc29a4429040b7647133a463da8fa5bd28d5ecd"}, - {file = "s3transfer-0.6.0.tar.gz", hash = "sha256:2ed07d3866f523cc561bf4a00fc5535827981b117dd7876f036b0c1aca42c947"}, -] -setuptools = [ - {file = "setuptools-65.5.1-py3-none-any.whl", hash = "sha256:d0b9a8433464d5800cbe05094acf5c6d52a91bfac9b52bcfc4d41382be5d5d31"}, - {file = "setuptools-65.5.1.tar.gz", hash = "sha256:e197a19aa8ec9722928f2206f8de752def0e4c9fc6953527360d1c36d94ddb2f"}, -] -sexpdata = [ - {file = "sexpdata-0.0.3.tar.gz", hash = "sha256:1ac827a616c5e87ebb60fd6686fb86f8a166938c645f4089d92de3ffbdd494e0"}, -] -six = [ - {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, - {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, -] -SQLAlchemy = [ - {file = "SQLAlchemy-1.4.44-cp27-cp27m-macosx_10_14_x86_64.whl", hash = "sha256:da60b98b0f6f0df9fbf8b72d67d13b73aa8091923a48af79a951d4088530a239"}, - {file = "SQLAlchemy-1.4.44-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:95f4f8d62589755b507218f2e3189475a4c1f5cc9db2aec772071a7dc6cd5726"}, - {file = "SQLAlchemy-1.4.44-cp27-cp27m-win32.whl", hash = "sha256:afd1ac99179d1864a68c06b31263a08ea25a49df94e272712eb2824ef151e294"}, - {file = "SQLAlchemy-1.4.44-cp27-cp27m-win_amd64.whl", hash = "sha256:f8e5443295b218b08bef8eb85d31b214d184b3690d99a33b7bd8e5591e2b0aa1"}, - {file = "SQLAlchemy-1.4.44-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:53f90a2374f60e703c94118d21533765412da8225ba98659de7dd7998641ab17"}, - {file = "SQLAlchemy-1.4.44-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:65a0ad931944fcb0be12a8e0ac322dbd3ecf17c53f088bc10b6da8f0caac287b"}, - {file = "SQLAlchemy-1.4.44-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:595b185041a4dc5c685283ea98c2f67bbfa47bb28e4a4f5b27ebf40684e7a9f8"}, - {file = "SQLAlchemy-1.4.44-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:80ead36fb1d676cc019586ffdc21c7e906ce4bf243fe4021e4973dae332b6038"}, - {file = "SQLAlchemy-1.4.44-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68e0cd5d32a32c4395168d42f2fefbb03b817ead3a8f3704b8bd5697c0b26c24"}, - {file = "SQLAlchemy-1.4.44-cp310-cp310-win32.whl", hash = "sha256:ae1ed1ebc407d2f66c6f0ec44ef7d56e3f455859df5494680e2cf89dad8e3ae0"}, - {file = "SQLAlchemy-1.4.44-cp310-cp310-win_amd64.whl", hash = "sha256:6f0ea4d7348feb5e5d0bf317aace92e28398fa9a6e38b7be9ec1f31aad4a8039"}, - {file = "SQLAlchemy-1.4.44-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f5e8ed9cde48b76318ab989deeddc48f833d2a6a7b7c393c49b704f67dedf01d"}, - {file = "SQLAlchemy-1.4.44-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c857676d810ca196be73c98eb839125d6fa849bfa3589be06201a6517f9961c"}, - {file = "SQLAlchemy-1.4.44-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c56e6899fa6e767e4be5d106941804a4201c5cb9620a409c0b80448ec70b656"}, - {file = "SQLAlchemy-1.4.44-cp311-cp311-win32.whl", hash = "sha256:c46322354c58d4dc039a2c982d28284330f8919f31206894281f4b595b9d8dbe"}, - {file = "SQLAlchemy-1.4.44-cp311-cp311-win_amd64.whl", hash = "sha256:7313e4acebb9ae88dbde14a8a177467a7625b7449306c03a3f9f309b30e163d0"}, - {file = "SQLAlchemy-1.4.44-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:17aee7bfcef7bf0dea92f10e5dfdd67418dcf6fe0759f520e168b605855c003e"}, - {file = "SQLAlchemy-1.4.44-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9470633395e5f24d6741b4c8a6e905bce405a28cf417bba4ccbaadf3dab0111d"}, - {file = "SQLAlchemy-1.4.44-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:393f51a09778e8984d735b59a810731394308b4038acdb1635397c2865dae2b6"}, - {file = "SQLAlchemy-1.4.44-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c7e3b9e01fdbe1ce3a165cc7e1ff52b24813ee79c6df6dee0d1e13888a97817e"}, - {file = "SQLAlchemy-1.4.44-cp36-cp36m-win32.whl", hash = "sha256:6a06c2506c41926d2769f7968759995f2505e31c5b5a0821e43ca5a3ddb0e8ae"}, - {file = "SQLAlchemy-1.4.44-cp36-cp36m-win_amd64.whl", hash = "sha256:3ca21b35b714ce36f4b8d1ee8d15f149db8eb43a472cf71600bf18dae32286e7"}, - {file = "SQLAlchemy-1.4.44-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:3cbdbed8cdcae0f83640a9c44fa02b45a6c61e149c58d45a63c9581aba62850f"}, - {file = "SQLAlchemy-1.4.44-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a22208c1982f1fe2ae82e5e4c3d4a6f2445a7a0d65fb7983a3d7cbbe3983f5a4"}, - {file = "SQLAlchemy-1.4.44-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:d3b9ac11f36ab9a726097fba7c7f6384f0129aedb017f1d4d1d4fce9052a1320"}, - {file = "SQLAlchemy-1.4.44-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d654870a66027af3a26df1372cf7f002e161c6768ebe4c9c6fdc0da331cb5173"}, - {file = "SQLAlchemy-1.4.44-cp37-cp37m-win32.whl", hash = "sha256:0be9b479c5806cece01f1581726573a8d6515f8404e082c375b922c45cfc2a7b"}, - {file = "SQLAlchemy-1.4.44-cp37-cp37m-win_amd64.whl", hash = "sha256:3eba07f740488c3a125f17c092a81eeae24a6c7ec32ac9dbc52bf7afaf0c4f16"}, - {file = "SQLAlchemy-1.4.44-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:ad5f966623905ee33694680dda1b735544c99c7638f216045d21546d3d8c6f5b"}, - {file = "SQLAlchemy-1.4.44-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3f68eab46649504eb95be36ca529aea16cd199f080726c28cbdbcbf23d20b2a2"}, - {file = "SQLAlchemy-1.4.44-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:21f3df74a0ab39e1255e94613556e33c1dc3b454059fe0b365ec3bbb9ed82e4a"}, - {file = "SQLAlchemy-1.4.44-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8080bc51a775627865e0f1dbfc0040ff4ace685f187f6036837e1727ba2ed10"}, - {file = "SQLAlchemy-1.4.44-cp38-cp38-win32.whl", hash = "sha256:b6a337a2643a41476fb6262059b8740f4b9a2ec29bf00ffb18c18c080f6e0aed"}, - {file = "SQLAlchemy-1.4.44-cp38-cp38-win_amd64.whl", hash = "sha256:b737fbeb2f78926d1f59964feb287bbbd050e7904766f87c8ce5cfb86e6d840c"}, - {file = "SQLAlchemy-1.4.44-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:c9aa372b295a36771cffc226b6517df3011a7d146ac22d19fa6a75f1cdf9d7e6"}, - {file = "SQLAlchemy-1.4.44-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:237067ba0ef45a518b64606e1807f7229969ad568288b110ed5f0ca714a3ed3a"}, - {file = "SQLAlchemy-1.4.44-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6d7e1b28342b45f19e3dea7873a9479e4a57e15095a575afca902e517fb89652"}, - {file = "SQLAlchemy-1.4.44-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94c0093678001f5d79f2dcbf3104c54d6c89e41ab50d619494c503a4d3f1aef2"}, - {file = "SQLAlchemy-1.4.44-cp39-cp39-win32.whl", hash = "sha256:7cf7c7adbf4417e3f46fc5a2dbf8395a5a69698217337086888f79700a12e93a"}, - {file = "SQLAlchemy-1.4.44-cp39-cp39-win_amd64.whl", hash = "sha256:d3b6d4588994da73567bb00af9d7224a16c8027865a8aab53ae9be83f9b7cbd1"}, - {file = "SQLAlchemy-1.4.44.tar.gz", hash = "sha256:2dda5f96719ae89b3ec0f1b79698d86eb9aecb1d54e990abb3fdd92c04b46a90"}, -] -sqlalchemy-stubs = [ - {file = "sqlalchemy-stubs-0.3.tar.gz", hash = "sha256:a3318c810697164e8c818aa2d90bac570c1a0e752ced3ec25455b309c0bee8fd"}, - {file = "sqlalchemy_stubs-0.3-py3-none-any.whl", hash = "sha256:ca1250605a39648cc433f5c70cb1a6f9fe0b60bdda4c51e1f9a2ab3651daadc8"}, -] -stack-data = [ - {file = "stack_data-0.6.1-py3-none-any.whl", hash = "sha256:960cb054d6a1b2fdd9cbd529e365b3c163e8dabf1272e02cfe36b58403cff5c6"}, - {file = "stack_data-0.6.1.tar.gz", hash = "sha256:6c9a10eb5f342415fe085db551d673955611afb821551f554d91772415464315"}, -] -starlette = [ - {file = "starlette-0.13.2-py3-none-any.whl", hash = "sha256:6169ee78ded501095d1dda7b141a1dc9f9934d37ad23196e180150ace2c6449b"}, - {file = "starlette-0.13.2.tar.gz", hash = "sha256:a9bb130fa7aa736eda8a814b6ceb85ccf7a209ed53843d0d61e246b380afa10f"}, -] -tenacity = [ - {file = "tenacity-6.3.1-py2.py3-none-any.whl", hash = "sha256:baed357d9f35ec64264d8a4bbf004c35058fad8795c5b0d8a7dc77ecdcbb8f39"}, - {file = "tenacity-6.3.1.tar.gz", hash = "sha256:e14d191fb0a309b563904bbc336582efe2037de437e543b38da749769b544d7f"}, -] -toml = [ - {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, - {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, -] -tomli = [ - {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, - {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, -] -tornado = [ - {file = "tornado-6.2-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:20f638fd8cc85f3cbae3c732326e96addff0a15e22d80f049e00121651e82e72"}, - {file = "tornado-6.2-cp37-abi3-macosx_10_9_x86_64.whl", hash = "sha256:87dcafae3e884462f90c90ecc200defe5e580a7fbbb4365eda7c7c1eb809ebc9"}, - {file = "tornado-6.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ba09ef14ca9893954244fd872798b4ccb2367c165946ce2dd7376aebdde8e3ac"}, - {file = "tornado-6.2-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b8150f721c101abdef99073bf66d3903e292d851bee51910839831caba341a75"}, - {file = "tornado-6.2-cp37-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3a2f5999215a3a06a4fc218026cd84c61b8b2b40ac5296a6db1f1451ef04c1e"}, - {file = "tornado-6.2-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:5f8c52d219d4995388119af7ccaa0bcec289535747620116a58d830e7c25d8a8"}, - {file = "tornado-6.2-cp37-abi3-musllinux_1_1_i686.whl", hash = "sha256:6fdfabffd8dfcb6cf887428849d30cf19a3ea34c2c248461e1f7d718ad30b66b"}, - {file = "tornado-6.2-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:1d54d13ab8414ed44de07efecb97d4ef7c39f7438cf5e976ccd356bebb1b5fca"}, - {file = "tornado-6.2-cp37-abi3-win32.whl", hash = "sha256:5c87076709343557ef8032934ce5f637dbb552efa7b21d08e89ae7619ed0eb23"}, - {file = "tornado-6.2-cp37-abi3-win_amd64.whl", hash = "sha256:e5f923aa6a47e133d1cf87d60700889d7eae68988704e20c75fb2d65677a8e4b"}, - {file = "tornado-6.2.tar.gz", hash = "sha256:9b630419bde84ec666bfd7ea0a4cb2a8a651c2d5cccdbdd1972a0c859dfc3c13"}, -] -traitlets = [ - {file = "traitlets-5.5.0-py3-none-any.whl", hash = "sha256:1201b2c9f76097195989cdf7f65db9897593b0dfd69e4ac96016661bb6f0d30f"}, - {file = "traitlets-5.5.0.tar.gz", hash = "sha256:b122f9ff2f2f6c1709dab289a05555be011c87828e911c0cf4074b85cb780a79"}, -] -typed-ast = [ - {file = "typed_ast-1.4.3-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:2068531575a125b87a41802130fa7e29f26c09a2833fea68d9a40cf33902eba6"}, - {file = "typed_ast-1.4.3-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:c907f561b1e83e93fad565bac5ba9c22d96a54e7ea0267c708bffe863cbe4075"}, - {file = "typed_ast-1.4.3-cp35-cp35m-manylinux2014_aarch64.whl", hash = "sha256:1b3ead4a96c9101bef08f9f7d1217c096f31667617b58de957f690c92378b528"}, - {file = "typed_ast-1.4.3-cp35-cp35m-win32.whl", hash = "sha256:dde816ca9dac1d9c01dd504ea5967821606f02e510438120091b84e852367428"}, - {file = "typed_ast-1.4.3-cp35-cp35m-win_amd64.whl", hash = "sha256:777a26c84bea6cd934422ac2e3b78863a37017618b6e5c08f92ef69853e765d3"}, - {file = "typed_ast-1.4.3-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:f8afcf15cc511ada719a88e013cec87c11aff7b91f019295eb4530f96fe5ef2f"}, - {file = "typed_ast-1.4.3-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:52b1eb8c83f178ab787f3a4283f68258525f8d70f778a2f6dd54d3b5e5fb4341"}, - {file = "typed_ast-1.4.3-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:01ae5f73431d21eead5015997ab41afa53aa1fbe252f9da060be5dad2c730ace"}, - {file = "typed_ast-1.4.3-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:c190f0899e9f9f8b6b7863debfb739abcb21a5c054f911ca3596d12b8a4c4c7f"}, - {file = "typed_ast-1.4.3-cp36-cp36m-win32.whl", hash = "sha256:398e44cd480f4d2b7ee8d98385ca104e35c81525dd98c519acff1b79bdaac363"}, - {file = "typed_ast-1.4.3-cp36-cp36m-win_amd64.whl", hash = "sha256:bff6ad71c81b3bba8fa35f0f1921fb24ff4476235a6e94a26ada2e54370e6da7"}, - {file = "typed_ast-1.4.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0fb71b8c643187d7492c1f8352f2c15b4c4af3f6338f21681d3681b3dc31a266"}, - {file = "typed_ast-1.4.3-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:760ad187b1041a154f0e4d0f6aae3e40fdb51d6de16e5c99aedadd9246450e9e"}, - {file = "typed_ast-1.4.3-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:5feca99c17af94057417d744607b82dd0a664fd5e4ca98061480fd8b14b18d04"}, - {file = "typed_ast-1.4.3-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:95431a26309a21874005845c21118c83991c63ea800dd44843e42a916aec5899"}, - {file = "typed_ast-1.4.3-cp37-cp37m-win32.whl", hash = "sha256:aee0c1256be6c07bd3e1263ff920c325b59849dc95392a05f258bb9b259cf39c"}, - {file = "typed_ast-1.4.3-cp37-cp37m-win_amd64.whl", hash = "sha256:9ad2c92ec681e02baf81fdfa056fe0d818645efa9af1f1cd5fd6f1bd2bdfd805"}, - {file = "typed_ast-1.4.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b36b4f3920103a25e1d5d024d155c504080959582b928e91cb608a65c3a49e1a"}, - {file = "typed_ast-1.4.3-cp38-cp38-manylinux1_i686.whl", hash = "sha256:067a74454df670dcaa4e59349a2e5c81e567d8d65458d480a5b3dfecec08c5ff"}, - {file = "typed_ast-1.4.3-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7538e495704e2ccda9b234b82423a4038f324f3a10c43bc088a1636180f11a41"}, - {file = "typed_ast-1.4.3-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:af3d4a73793725138d6b334d9d247ce7e5f084d96284ed23f22ee626a7b88e39"}, - {file = "typed_ast-1.4.3-cp38-cp38-win32.whl", hash = "sha256:f2362f3cb0f3172c42938946dbc5b7843c2a28aec307c49100c8b38764eb6927"}, - {file = "typed_ast-1.4.3-cp38-cp38-win_amd64.whl", hash = "sha256:dd4a21253f42b8d2b48410cb31fe501d32f8b9fbeb1f55063ad102fe9c425e40"}, - {file = "typed_ast-1.4.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f328adcfebed9f11301eaedfa48e15bdece9b519fb27e6a8c01aa52a17ec31b3"}, - {file = "typed_ast-1.4.3-cp39-cp39-manylinux1_i686.whl", hash = "sha256:2c726c276d09fc5c414693a2de063f521052d9ea7c240ce553316f70656c84d4"}, - {file = "typed_ast-1.4.3-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:cae53c389825d3b46fb37538441f75d6aecc4174f615d048321b716df2757fb0"}, - {file = "typed_ast-1.4.3-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:b9574c6f03f685070d859e75c7f9eeca02d6933273b5e69572e5ff9d5e3931c3"}, - {file = "typed_ast-1.4.3-cp39-cp39-win32.whl", hash = "sha256:209596a4ec71d990d71d5e0d312ac935d86930e6eecff6ccc7007fe54d703808"}, - {file = "typed_ast-1.4.3-cp39-cp39-win_amd64.whl", hash = "sha256:9c6d1a54552b5330bc657b7ef0eae25d00ba7ffe85d9ea8ae6540d2197a3788c"}, - {file = "typed_ast-1.4.3.tar.gz", hash = "sha256:fb1bbeac803adea29cedd70781399c99138358c26d05fcbd23c13016b7f5ec65"}, -] -typing-extensions = [ - {file = "typing_extensions-4.4.0-py3-none-any.whl", hash = "sha256:16fa4864408f655d35ec496218b85f79b3437c829e93320c7c9215ccfd92489e"}, - {file = "typing_extensions-4.4.0.tar.gz", hash = "sha256:1511434bb92bf8dd198c12b1cc812e800d4181cfcb867674e0f8279cc93087aa"}, -] -urllib3 = [ - {file = "urllib3-1.26.12-py2.py3-none-any.whl", hash = "sha256:b930dd878d5a8afb066a637fbb35144fe7901e3b209d1cd4f524bd0e9deee997"}, - {file = "urllib3-1.26.12.tar.gz", hash = "sha256:3fa96cf423e6987997fc326ae8df396db2a8b7c667747d47ddd8ecba91f4a74e"}, -] -uvicorn = [ - {file = "uvicorn-0.11.8-py3-none-any.whl", hash = "sha256:4b70ddb4c1946e39db9f3082d53e323dfd50634b95fd83625d778729ef1730ef"}, - {file = "uvicorn-0.11.8.tar.gz", hash = "sha256:46a83e371f37ea7ff29577d00015f02c942410288fb57def6440f2653fff1d26"}, -] -uvloop = [ - {file = "uvloop-0.17.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ce9f61938d7155f79d3cb2ffa663147d4a76d16e08f65e2c66b77bd41b356718"}, - {file = "uvloop-0.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:68532f4349fd3900b839f588972b3392ee56042e440dd5873dfbbcd2cc67617c"}, - {file = "uvloop-0.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0949caf774b9fcefc7c5756bacbbbd3fc4c05a6b7eebc7c7ad6f825b23998d6d"}, - {file = "uvloop-0.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff3d00b70ce95adce264462c930fbaecb29718ba6563db354608f37e49e09024"}, - {file = "uvloop-0.17.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:a5abddb3558d3f0a78949c750644a67be31e47936042d4f6c888dd6f3c95f4aa"}, - {file = "uvloop-0.17.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8efcadc5a0003d3a6e887ccc1fb44dec25594f117a94e3127954c05cf144d811"}, - {file = "uvloop-0.17.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3378eb62c63bf336ae2070599e49089005771cc651c8769aaad72d1bd9385a7c"}, - {file = "uvloop-0.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6aafa5a78b9e62493539456f8b646f85abc7093dd997f4976bb105537cf2635e"}, - {file = "uvloop-0.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c686a47d57ca910a2572fddfe9912819880b8765e2f01dc0dd12a9bf8573e539"}, - {file = "uvloop-0.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:864e1197139d651a76c81757db5eb199db8866e13acb0dfe96e6fc5d1cf45fc4"}, - {file = "uvloop-0.17.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:2a6149e1defac0faf505406259561bc14b034cdf1d4711a3ddcdfbaa8d825a05"}, - {file = "uvloop-0.17.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:6708f30db9117f115eadc4f125c2a10c1a50d711461699a0cbfaa45b9a78e376"}, - {file = "uvloop-0.17.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:23609ca361a7fc587031429fa25ad2ed7242941adec948f9d10c045bfecab06b"}, - {file = "uvloop-0.17.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2deae0b0fb00a6af41fe60a675cec079615b01d68beb4cc7b722424406b126a8"}, - {file = "uvloop-0.17.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45cea33b208971e87a31c17622e4b440cac231766ec11e5d22c76fab3bf9df62"}, - {file = "uvloop-0.17.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:9b09e0f0ac29eee0451d71798878eae5a4e6a91aa275e114037b27f7db72702d"}, - {file = "uvloop-0.17.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:dbbaf9da2ee98ee2531e0c780455f2841e4675ff580ecf93fe5c48fe733b5667"}, - {file = "uvloop-0.17.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a4aee22ece20958888eedbad20e4dbb03c37533e010fb824161b4f05e641f738"}, - {file = "uvloop-0.17.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:307958f9fc5c8bb01fad752d1345168c0abc5d62c1b72a4a8c6c06f042b45b20"}, - {file = "uvloop-0.17.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ebeeec6a6641d0adb2ea71dcfb76017602ee2bfd8213e3fcc18d8f699c5104f"}, - {file = "uvloop-0.17.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1436c8673c1563422213ac6907789ecb2b070f5939b9cbff9ef7113f2b531595"}, - {file = "uvloop-0.17.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:8887d675a64cfc59f4ecd34382e5b4f0ef4ae1da37ed665adba0c2badf0d6578"}, - {file = "uvloop-0.17.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:3db8de10ed684995a7f34a001f15b374c230f7655ae840964d51496e2f8a8474"}, - {file = "uvloop-0.17.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7d37dccc7ae63e61f7b96ee2e19c40f153ba6ce730d8ba4d3b4e9738c1dccc1b"}, - {file = "uvloop-0.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:cbbe908fda687e39afd6ea2a2f14c2c3e43f2ca88e3a11964b297822358d0e6c"}, - {file = "uvloop-0.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d97672dc709fa4447ab83276f344a165075fd9f366a97b712bdd3fee05efae8"}, - {file = "uvloop-0.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f1e507c9ee39c61bfddd79714e4f85900656db1aec4d40c6de55648e85c2799c"}, - {file = "uvloop-0.17.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c092a2c1e736086d59ac8e41f9c98f26bbf9b9222a76f21af9dfe949b99b2eb9"}, - {file = "uvloop-0.17.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:30babd84706115626ea78ea5dbc7dd8d0d01a2e9f9b306d24ca4ed5796c66ded"}, - {file = "uvloop-0.17.0.tar.gz", hash = "sha256:0ddf6baf9cf11a1a22c71487f39f15b2cf78eb5bde7e5b45fbb99e8a9d91b9e1"}, -] -vine = [ - {file = "vine-1.3.0-py2.py3-none-any.whl", hash = "sha256:ea4947cc56d1fd6f2095c8d543ee25dad966f78692528e68b4fada11ba3f98af"}, - {file = "vine-1.3.0.tar.gz", hash = "sha256:133ee6d7a9016f177ddeaf191c1f58421a1dcc6ee9a42c58b34bed40e1d2cd87"}, -] -wcwidth = [ - {file = "wcwidth-0.2.5-py2.py3-none-any.whl", hash = "sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784"}, - {file = "wcwidth-0.2.5.tar.gz", hash = "sha256:c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83"}, -] -websockets = [ - {file = "websockets-8.1-cp36-cp36m-macosx_10_6_intel.whl", hash = "sha256:3762791ab8b38948f0c4d281c8b2ddfa99b7e510e46bd8dfa942a5fff621068c"}, - {file = "websockets-8.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:3db87421956f1b0779a7564915875ba774295cc86e81bc671631379371af1170"}, - {file = "websockets-8.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:4f9f7d28ce1d8f1295717c2c25b732c2bc0645db3215cf757551c392177d7cb8"}, - {file = "websockets-8.1-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:295359a2cc78736737dd88c343cd0747546b2174b5e1adc223824bcaf3e164cb"}, - {file = "websockets-8.1-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:1d3f1bf059d04a4e0eb4985a887d49195e15ebabc42364f4eb564b1d065793f5"}, - {file = "websockets-8.1-cp36-cp36m-win32.whl", hash = "sha256:2db62a9142e88535038a6bcfea70ef9447696ea77891aebb730a333a51ed559a"}, - {file = "websockets-8.1-cp36-cp36m-win_amd64.whl", hash = "sha256:0e4fb4de42701340bd2353bb2eee45314651caa6ccee80dbd5f5d5978888fed5"}, - {file = "websockets-8.1-cp37-cp37m-macosx_10_6_intel.whl", hash = "sha256:9b248ba3dd8a03b1a10b19efe7d4f7fa41d158fdaa95e2cf65af5a7b95a4f989"}, - {file = "websockets-8.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:ce85b06a10fc65e6143518b96d3dca27b081a740bae261c2fb20375801a9d56d"}, - {file = "websockets-8.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:965889d9f0e2a75edd81a07592d0ced54daa5b0785f57dc429c378edbcffe779"}, - {file = "websockets-8.1-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:751a556205d8245ff94aeef23546a1113b1dd4f6e4d102ded66c39b99c2ce6c8"}, - {file = "websockets-8.1-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:3ef56fcc7b1ff90de46ccd5a687bbd13a3180132268c4254fc0fa44ecf4fc422"}, - {file = "websockets-8.1-cp37-cp37m-win32.whl", hash = "sha256:7ff46d441db78241f4c6c27b3868c9ae71473fe03341340d2dfdbe8d79310acc"}, - {file = "websockets-8.1-cp37-cp37m-win_amd64.whl", hash = "sha256:20891f0dddade307ffddf593c733a3fdb6b83e6f9eef85908113e628fa5a8308"}, - {file = "websockets-8.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c1ec8db4fac31850286b7cd3b9c0e1b944204668b8eb721674916d4e28744092"}, - {file = "websockets-8.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:5c01fd846263a75bc8a2b9542606927cfad57e7282965d96b93c387622487485"}, - {file = "websockets-8.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:9bef37ee224e104a413f0780e29adb3e514a5b698aabe0d969a6ba426b8435d1"}, - {file = "websockets-8.1-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:d705f8aeecdf3262379644e4b55107a3b55860eb812b673b28d0fbc347a60c55"}, - {file = "websockets-8.1-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:c8a116feafdb1f84607cb3b14aa1418424ae71fee131642fc568d21423b51824"}, - {file = "websockets-8.1-cp38-cp38-win32.whl", hash = "sha256:e898a0863421650f0bebac8ba40840fc02258ef4714cb7e1fd76b6a6354bda36"}, - {file = "websockets-8.1-cp38-cp38-win_amd64.whl", hash = "sha256:f8a7bff6e8664afc4e6c28b983845c5bc14965030e3fb98789734d416af77c4b"}, - {file = "websockets-8.1.tar.gz", hash = "sha256:5c65d2da8c6bce0fca2528f69f44b2f977e06954c8512a952222cea50dad430f"}, +[[package]] +name = "yarl" +version = "1.8.2" +description = "Yet another URL library" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "yarl-1.8.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:bb81f753c815f6b8e2ddd2eef3c855cf7da193b82396ac013c661aaa6cc6b0a5"}, + {file = "yarl-1.8.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:47d49ac96156f0928f002e2424299b2c91d9db73e08c4cd6742923a086f1c863"}, + {file = "yarl-1.8.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3fc056e35fa6fba63248d93ff6e672c096f95f7836938241ebc8260e062832fe"}, + {file = "yarl-1.8.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:58a3c13d1c3005dbbac5c9f0d3210b60220a65a999b1833aa46bd6677c69b08e"}, + {file = "yarl-1.8.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:10b08293cda921157f1e7c2790999d903b3fd28cd5c208cf8826b3b508026996"}, + {file = "yarl-1.8.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de986979bbd87272fe557e0a8fcb66fd40ae2ddfe28a8b1ce4eae22681728fef"}, + {file = "yarl-1.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c4fcfa71e2c6a3cb568cf81aadc12768b9995323186a10827beccf5fa23d4f8"}, + {file = "yarl-1.8.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae4d7ff1049f36accde9e1ef7301912a751e5bae0a9d142459646114c70ecba6"}, + {file = "yarl-1.8.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:bf071f797aec5b96abfc735ab97da9fd8f8768b43ce2abd85356a3127909d146"}, + {file = "yarl-1.8.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:74dece2bfc60f0f70907c34b857ee98f2c6dd0f75185db133770cd67300d505f"}, + {file = "yarl-1.8.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:df60a94d332158b444301c7f569659c926168e4d4aad2cfbf4bce0e8fb8be826"}, + {file = "yarl-1.8.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:63243b21c6e28ec2375f932a10ce7eda65139b5b854c0f6b82ed945ba526bff3"}, + {file = "yarl-1.8.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:cfa2bbca929aa742b5084fd4663dd4b87c191c844326fcb21c3afd2d11497f80"}, + {file = "yarl-1.8.2-cp310-cp310-win32.whl", hash = "sha256:b05df9ea7496df11b710081bd90ecc3a3db6adb4fee36f6a411e7bc91a18aa42"}, + {file = "yarl-1.8.2-cp310-cp310-win_amd64.whl", hash = "sha256:24ad1d10c9db1953291f56b5fe76203977f1ed05f82d09ec97acb623a7976574"}, + {file = "yarl-1.8.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2a1fca9588f360036242f379bfea2b8b44cae2721859b1c56d033adfd5893634"}, + {file = "yarl-1.8.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f37db05c6051eff17bc832914fe46869f8849de5b92dc4a3466cd63095d23dfd"}, + {file = "yarl-1.8.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:77e913b846a6b9c5f767b14dc1e759e5aff05502fe73079f6f4176359d832581"}, + {file = "yarl-1.8.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0978f29222e649c351b173da2b9b4665ad1feb8d1daa9d971eb90df08702668a"}, + {file = "yarl-1.8.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:388a45dc77198b2460eac0aca1efd6a7c09e976ee768b0d5109173e521a19daf"}, + {file = "yarl-1.8.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2305517e332a862ef75be8fad3606ea10108662bc6fe08509d5ca99503ac2aee"}, + {file = "yarl-1.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42430ff511571940d51e75cf42f1e4dbdded477e71c1b7a17f4da76c1da8ea76"}, + {file = "yarl-1.8.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3150078118f62371375e1e69b13b48288e44f6691c1069340081c3fd12c94d5b"}, + {file = "yarl-1.8.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c15163b6125db87c8f53c98baa5e785782078fbd2dbeaa04c6141935eb6dab7a"}, + {file = "yarl-1.8.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4d04acba75c72e6eb90745447d69f84e6c9056390f7a9724605ca9c56b4afcc6"}, + {file = "yarl-1.8.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:e7fd20d6576c10306dea2d6a5765f46f0ac5d6f53436217913e952d19237efc4"}, + {file = "yarl-1.8.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:75c16b2a900b3536dfc7014905a128a2bea8fb01f9ee26d2d7d8db0a08e7cb2c"}, + {file = "yarl-1.8.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:6d88056a04860a98341a0cf53e950e3ac9f4e51d1b6f61a53b0609df342cc8b2"}, + {file = "yarl-1.8.2-cp311-cp311-win32.whl", hash = "sha256:fb742dcdd5eec9f26b61224c23baea46c9055cf16f62475e11b9b15dfd5c117b"}, + {file = "yarl-1.8.2-cp311-cp311-win_amd64.whl", hash = "sha256:8c46d3d89902c393a1d1e243ac847e0442d0196bbd81aecc94fcebbc2fd5857c"}, + {file = "yarl-1.8.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:ceff9722e0df2e0a9e8a79c610842004fa54e5b309fe6d218e47cd52f791d7ef"}, + {file = "yarl-1.8.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3f6b4aca43b602ba0f1459de647af954769919c4714706be36af670a5f44c9c1"}, + {file = "yarl-1.8.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1684a9bd9077e922300ecd48003ddae7a7474e0412bea38d4631443a91d61077"}, + {file = "yarl-1.8.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ebb78745273e51b9832ef90c0898501006670d6e059f2cdb0e999494eb1450c2"}, + {file = "yarl-1.8.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3adeef150d528ded2a8e734ebf9ae2e658f4c49bf413f5f157a470e17a4a2e89"}, + {file = "yarl-1.8.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57a7c87927a468e5a1dc60c17caf9597161d66457a34273ab1760219953f7f4c"}, + {file = "yarl-1.8.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:efff27bd8cbe1f9bd127e7894942ccc20c857aa8b5a0327874f30201e5ce83d0"}, + {file = "yarl-1.8.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:a783cd344113cb88c5ff7ca32f1f16532a6f2142185147822187913eb989f739"}, + {file = "yarl-1.8.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:705227dccbe96ab02c7cb2c43e1228e2826e7ead880bb19ec94ef279e9555b5b"}, + {file = "yarl-1.8.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:34c09b43bd538bf6c4b891ecce94b6fa4f1f10663a8d4ca589a079a5018f6ed7"}, + {file = "yarl-1.8.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:a48f4f7fea9a51098b02209d90297ac324241bf37ff6be6d2b0149ab2bd51b37"}, + {file = "yarl-1.8.2-cp37-cp37m-win32.whl", hash = "sha256:0414fd91ce0b763d4eadb4456795b307a71524dbacd015c657bb2a39db2eab89"}, + {file = "yarl-1.8.2-cp37-cp37m-win_amd64.whl", hash = "sha256:d881d152ae0007809c2c02e22aa534e702f12071e6b285e90945aa3c376463c5"}, + {file = "yarl-1.8.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5df5e3d04101c1e5c3b1d69710b0574171cc02fddc4b23d1b2813e75f35a30b1"}, + {file = "yarl-1.8.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7a66c506ec67eb3159eea5096acd05f5e788ceec7b96087d30c7d2865a243918"}, + {file = "yarl-1.8.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2b4fa2606adf392051d990c3b3877d768771adc3faf2e117b9de7eb977741229"}, + {file = "yarl-1.8.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1e21fb44e1eff06dd6ef971d4bdc611807d6bd3691223d9c01a18cec3677939e"}, + {file = "yarl-1.8.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:93202666046d9edadfe9f2e7bf5e0782ea0d497b6d63da322e541665d65a044e"}, + {file = "yarl-1.8.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fc77086ce244453e074e445104f0ecb27530d6fd3a46698e33f6c38951d5a0f1"}, + {file = "yarl-1.8.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64dd68a92cab699a233641f5929a40f02a4ede8c009068ca8aa1fe87b8c20ae3"}, + {file = "yarl-1.8.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1b372aad2b5f81db66ee7ec085cbad72c4da660d994e8e590c997e9b01e44901"}, + {file = "yarl-1.8.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:e6f3515aafe0209dd17fb9bdd3b4e892963370b3de781f53e1746a521fb39fc0"}, + {file = "yarl-1.8.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:dfef7350ee369197106805e193d420b75467b6cceac646ea5ed3049fcc950a05"}, + {file = "yarl-1.8.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:728be34f70a190566d20aa13dc1f01dc44b6aa74580e10a3fb159691bc76909d"}, + {file = "yarl-1.8.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:ff205b58dc2929191f68162633d5e10e8044398d7a45265f90a0f1d51f85f72c"}, + {file = "yarl-1.8.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:baf211dcad448a87a0d9047dc8282d7de59473ade7d7fdf22150b1d23859f946"}, + {file = "yarl-1.8.2-cp38-cp38-win32.whl", hash = "sha256:272b4f1599f1b621bf2aabe4e5b54f39a933971f4e7c9aa311d6d7dc06965165"}, + {file = "yarl-1.8.2-cp38-cp38-win_amd64.whl", hash = "sha256:326dd1d3caf910cd26a26ccbfb84c03b608ba32499b5d6eeb09252c920bcbe4f"}, + {file = "yarl-1.8.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f8ca8ad414c85bbc50f49c0a106f951613dfa5f948ab69c10ce9b128d368baf8"}, + {file = "yarl-1.8.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:418857f837347e8aaef682679f41e36c24250097f9e2f315d39bae3a99a34cbf"}, + {file = "yarl-1.8.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ae0eec05ab49e91a78700761777f284c2df119376e391db42c38ab46fd662b77"}, + {file = "yarl-1.8.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:009a028127e0a1755c38b03244c0bea9d5565630db9c4cf9572496e947137a87"}, + {file = "yarl-1.8.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3edac5d74bb3209c418805bda77f973117836e1de7c000e9755e572c1f7850d0"}, + {file = "yarl-1.8.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:da65c3f263729e47351261351b8679c6429151ef9649bba08ef2528ff2c423b2"}, + {file = "yarl-1.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ef8fb25e52663a1c85d608f6dd72e19bd390e2ecaf29c17fb08f730226e3a08"}, + {file = "yarl-1.8.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bcd7bb1e5c45274af9a1dd7494d3c52b2be5e6bd8d7e49c612705fd45420b12d"}, + {file = "yarl-1.8.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:44ceac0450e648de86da8e42674f9b7077d763ea80c8ceb9d1c3e41f0f0a9951"}, + {file = "yarl-1.8.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:97209cc91189b48e7cfe777237c04af8e7cc51eb369004e061809bcdf4e55220"}, + {file = "yarl-1.8.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:48dd18adcf98ea9cd721a25313aef49d70d413a999d7d89df44f469edfb38a06"}, + {file = "yarl-1.8.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:e59399dda559688461762800d7fb34d9e8a6a7444fd76ec33220a926c8be1516"}, + {file = "yarl-1.8.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d617c241c8c3ad5c4e78a08429fa49e4b04bedfc507b34b4d8dceb83b4af3588"}, + {file = "yarl-1.8.2-cp39-cp39-win32.whl", hash = "sha256:cb6d48d80a41f68de41212f3dfd1a9d9898d7841c8f7ce6696cf2fd9cb57ef83"}, + {file = "yarl-1.8.2-cp39-cp39-win_amd64.whl", hash = "sha256:6604711362f2dbf7160df21c416f81fac0de6dbcf0b5445a2ef25478ecc4c778"}, + {file = "yarl-1.8.2.tar.gz", hash = "sha256:49d43402c6e3013ad0978602bf6bf5328535c48d192304b91b97a3c6790b1562"}, ] + +[package.dependencies] +idna = ">=2.0" +multidict = ">=4.0" + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "d03371c4d143dafa1700c73c47a0ab2edce3dc6cff041558ec0e31d5ecd9a7f2" diff --git a/backend/app/prestart.sh b/backend/app/prestart.sh index fc1e5f18..2b0b013b 100644 --- a/backend/app/prestart.sh +++ b/backend/app/prestart.sh @@ -4,7 +4,7 @@ python /app/app/backend_pre_start.py # Run migrations -alembic upgrade head +# alembic upgrade head # Create initial data in DB python /app/app/initial_data.py diff --git a/backend/app/pyproject.toml b/backend/app/pyproject.toml index 62f52ec5..9f6826f2 100644 --- a/backend/app/pyproject.toml +++ b/backend/app/pyproject.toml @@ -2,12 +2,10 @@ name = "app" version = "0.1.0" description = "" -authors = ["bwelwood "] +authors = ["bwelwood "] [tool.poetry.dependencies] python = "^3.10" -uvicorn = "^0.11.3" -fastapi = "^0.54.1" python-multipart = "^0.0.5" email-validator = "^1.0.5" requests = "^2.23.0" @@ -15,27 +13,22 @@ celery = "^4.4.2" passlib = {extras = ["bcrypt"], version = "^1.7.2"} tenacity = "^6.1.0" pydantic = "^1.4" -emails = "^0.5.15" raven = "^6.10.0" gunicorn = "^20.0.4" -jinja2 = "^2.11.2" -psycopg2-binary = "^2.8.5" alembic = "^1.4.2" -sqlalchemy = "^1.3.16" -pytest = "^5.4.1" python-jose = {extras = ["cryptography"], version = "^3.1.0"} -ipykernel = "^6.17.1" boto3 = "^1.26.8" - -[tool.poetry.dev-dependencies] -mypy = "^0.770" -black = "^19.10b0" -isort = "^4.3.21" -autoflake = "^1.3.1" -flake8 = "^3.7.9" -pytest = "^5.4.1" -sqlalchemy-stubs = "^0.3" -pytest-cov = "^2.8.1" +unidecode = "^1.3.6" +fastapi-mail = "^1.2.4" +uvicorn = "^0.20.0" +fastapi = "^0.88.0" +Jinja2 = "^3.1.2" +fastapi-users = {extras = ["oauth", "sqlalchemy"], version = "^10.4.0"} +asyncpg = "^0.27.0" +greenlet = "^2.0.1" +gqlalchemy = "^1.3.3" +sqlmodel = "^0.0.8" +psycopg2-binary = "^2.9.5" [tool.poetry.group.dev.dependencies] mypy-extensions = "^0.4.3" @@ -43,6 +36,15 @@ ipython = "^8.6.0" typing-extensions = "^4.4.0" epc = "^0.0.5" importmagic = "^0.1.7" +black = "^22.12.0" +flake8 = "^6.0.0" +pytest = "^7.2.1" +ipykernel = "^6.17.1" +mypy = "^0.991" +isort = "^4.3.21" +autoflake = "^1.3.1" +sqlalchemy-stubs = "^0.3" +pytest-cov = "^2.8.1" [tool.isort] multi_line_output = 3 diff --git a/backend/backend.dockerfile b/backend/backend.dockerfile index f2ea1a9d..798af583 100644 --- a/backend/backend.dockerfile +++ b/backend/backend.dockerfile @@ -1,7 +1,23 @@ -FROM python:3.10 +FROM ubuntu:22.04 +# FROM python:3.10 WORKDIR /app/ + +# RUN apt-get install -y software-properties-common && \ +# RUN add-apt-repository 'ppa:deadsnakes/ppa' && \ +RUN apt-get -y update && \ + apt-get -y install curl \ + build-essential \ + cmake \ + gcc \ + g++ \ + libssl-dev \ + python3.10 \ + python3-distutils \ + python3.10-dev \ + python-is-python3 + COPY start.sh /start.sh RUN chmod +x /start.sh @@ -14,6 +30,8 @@ RUN curl -sSL https://install.python-poetry.org | POETRY_HOME=/opt/poetry python cd /usr/local/bin && \ ln -s /opt/poetry/bin/poetry && \ poetry config virtualenvs.create false + + # Copy poetry.lock* in case it doesn't exist in the repo COPY ./app/pyproject.toml ./app/poetry.lock* /app/ @@ -21,6 +39,7 @@ COPY ./app/pyproject.toml ./app/poetry.lock* /app/ ARG INSTALL_DEV=false RUN bash -c "if [ $INSTALL_DEV == 'true' ] ; then poetry install --no-root ; else poetry install --no-root --no-dev ; fi" + # For development, Jupyter remote kernel, Hydrogen # Using inside the container: # jupyter lab --ip=0.0.0.0 --allow-root --NotebookApp.custom_display_url=http://127.0.0.1:8888 @@ -32,4 +51,4 @@ ENV PYTHONPATH=/app EXPOSE 80 # Run the start script, it will check for an /app/prestart.sh script (e.g. for migrations) # And then will start Gunicorn with Uvicorn -# CMD ["/start.sh"] \ No newline at end of file +CMD ["/start.sh"] diff --git a/backend/requirements.txt b/backend/requirements.txt new file mode 100644 index 00000000..797abc54 --- /dev/null +++ b/backend/requirements.txt @@ -0,0 +1,24 @@ +python-multipart +email-validator +requests +celery +passlib[bcrypt] +tenacity +raven +gunicorn +alembic +python-jose[cryptography] +boto3 +unidecode +fastapi-mail +uvicorn +Jinja2 +fastapi-users[sqlalchemy] +greenlet +psycopg2cffi +sqlmodel +networkx +pymgclient +fastapi-users-db-sqlalchemy +makefun +fastapi-users-db-beanie \ No newline at end of file diff --git a/collide_kick_off.txt b/collide_kick_off.txt new file mode 100644 index 00000000..5fc76617 --- /dev/null +++ b/collide_kick_off.txt @@ -0,0 +1,301 @@ + _________________ + + PROJECT COLLIDE + + Ben Welwood + _________________ + + + + + +Agenda +====== + + - the MVP + - startup considerations + - architecture + - milestones + - round table + + +Collide Concept +=============== + + - make it easy to understand lobbying in Canada + - learn something new (like graphs)! + - good for our resumes/linkedIn/github + + +Launch features +~~~~~~~~~~~~~~~ + +Key#1: Fast smart search +------------------------ + + - in-house relational query (aka James) + - open(elastic)search? + - recommendations with memgraph voodoo? + + +Other Key#1: Easy to understand graphs +-------------------------------------- + + - easy to use and snappy! + - force-directed + - Sankey + + +misc website things +------------------- + + - admin panel (in progress) + - user pw reset, email + - telemetry + - SEO + + +Brand & Design Language +----------------------- + + - Collide is the project (placeholder) name + - Need good domain and product name + - Blueprint.js for UI & colors + - Will need real front end person to scale + + +Collide as a Startup +~~~~~~~~~~~~~~~~~~~~ + + - what is the problem we are solving? + - wearch engine for government data? + - who is our customer? + - probably should pivot to USA as soon as we can + + +Business models +--------------- + +* SaaS + + Cloud-based subscription software + + +* Usage-Based + + Pay as you go based on consumption + + +* **Both require user retention aka providing value! + + +* Do we have any moats? + + - Can we create network effects? + - Lock-in/high switching costs - save user search + - Organic distribution + + +Early thoughts on pricing +------------------------- + + - price implies value aka who is willing to pay? + - price on value, not on costs + - Free, Premium, Ultimate pricing + - pricing can change! + + +MVP Architecture +================ + +Housekeeping +~~~~~~~~~~~~ + + - thoughts on docker as a development tool so far? * + - gitflow or other git merge standard? * + - python: flake8, mypy, black + - typescript: eslint, prettier + + +Front-end +~~~~~~~~~ + + - React with Typescript + - Vite Build + - React Force Directed Graphs + - Echarts (nice but not React bindings) + - SASS for CSS.. + - On deck + - User admin dash with live DB + - 1-click signup + + +Other Plots +----------- + + - Directed Graphs + - Other? + + +Back-end +~~~~~~~~ + +Databases +--------- + +* Postgress + + - Raw data is parsed into DB * + - initDB to docker postgres from RAW source * + - Local, vs Azure(?) vs RDS + - Build local docker from Raw + - Views vs queries? + + +* Memgraph + + - How should we prioritize this? + + +* S3 for Raw Storage or? * + + +FastAPI +------- + + - FastAPI CRUD & JWT auth + - JWT was kind of a pain but mostly solved + - Django? + - Something else? + + +Scrape +------ + + - What does production look like? + - Cron-like interval or event based? * + - Collect raw data in S3 or other * + - Use celery worker for scrape or drop from stack * + + +Search +------ + + - Elastisearch? + - Custom query + - memgraph? + - Recommendation engine? + + +Datasets +-------- + + - TSX + - Province of Alberta + - Members of Parliament + - Lobby Communications + - Corporate Donations + - Corporate board appointments + - What are we missing? + - When to freeze new data? + + +Hosting +~~~~~~~ + + - ECS something else? * + - Bidspread of options * + + +Marketing plan +~~~~~~~~~~~~~~ + + - Twitter + - reddit + - youtube + - instagram + - ticktock + - Video? + - Collab? + + +Key Milestones +============== + + - MVP Definition - January 5th + - Working prototype - January 19th + - Market Research & Branding + - Start selling - February 1st + - Production design finalized + - Marketing design finalized + - Launch - February 14th + + +Round Table +=========== + +TODO Finish user management +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + +TODO Define MVP Spec +~~~~~~~~~~~~~~~~~~~~ + +DONE use S3 for raw data +------------------------ + + +DONE use github flow +-------------------- + + +TODO Define search methodology +------------------------------ + + +TODO Specify plot library, colors, etc +-------------------------------------- + + - Setup app around 2 plot choices and search + + +TODO Finalize Datasets +---------------------- + + - Province of Alberta is a different animal TBD.. + - Provincial Election coming up could be good for launch + - Where does bulk of lobbying happen? + - What do those amendments look like? What are the impacts? + - follow the money... + + +TODO Define scrape production strategy +-------------------------------------- + + +TODO Evaluate app host options +------------------------------ + + +TODO Node aggrigation strategy +------------------------------ + + How to you simplify connections... Roll things up a bit, and show off + things more clearly.. Big bucket of misc Donors.... Smarts for + Funding. + + +TODO Define DB spec for Postgres and Memgraph +--------------------------------------------- + + - Build docker DB from S3? + - Memgraph migration Tool... Needs lots of queries to build relations. + SLOW + - Algorithms get hung up on node in between.. + - Community detection + - Recommendation engine + - load from raw CSV/XML data? + + +TODO develop CI/CD workflows +---------------------------- diff --git a/compute_backend/Dockerfile b/compute_backend/Dockerfile new file mode 100644 index 00000000..7da5baf9 --- /dev/null +++ b/compute_backend/Dockerfile @@ -0,0 +1,33 @@ +FROM pypy:3 + +WORKDIR /app/ + +RUN apt-get -y update && \ + apt-get -y install curl \ + build-essential \ + cmake \ + gcc \ + g++ \ + libssl-dev \ + python3.10 \ + python3-distutils \ + wget \ + libpq-dev \ + nano + +COPY requirements.txt ./ +RUN pypy3 -m pip install -r requirements.txt + +COPY start.sh /start.sh +RUN chmod +x /start.sh + +COPY ./gunicorn_conf.py /gunicorn_conf.py +COPY start-reload.sh /start-reload.sh +RUN chmod +x /start-reload.sh + +COPY ./app /app +ENV PYTHONPATH=/app +EXPOSE 80 +# Run the start script, it will check for an /app/prestart.sh script (e.g. for migrations) +# And then will start Gunicorn with Uvicorn +CMD ["/start.sh"] \ No newline at end of file diff --git a/compute_backend/app/app/__init__.py b/compute_backend/app/app/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/compute_backend/app/app/api/__init__.py b/compute_backend/app/app/api/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/compute_backend/app/app/api/api_v1/__init__.py b/compute_backend/app/app/api/api_v1/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/compute_backend/app/app/api/api_v1/api.py b/compute_backend/app/app/api/api_v1/api.py new file mode 100644 index 00000000..a0194866 --- /dev/null +++ b/compute_backend/app/app/api/api_v1/api.py @@ -0,0 +1,8 @@ +from fastapi import APIRouter + +from app.api.api_v1.endpoints import forcegraph + +api_router = APIRouter() + +api_router.include_router(forcegraph.router, prefix="/forcegraph", tags=["forcegraph"]) + diff --git a/compute_backend/app/app/api/api_v1/endpoints/__init__.py b/compute_backend/app/app/api/api_v1/endpoints/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/compute_backend/app/app/api/api_v1/endpoints/forcegraph.py b/compute_backend/app/app/api/api_v1/endpoints/forcegraph.py new file mode 100644 index 00000000..e35590d6 --- /dev/null +++ b/compute_backend/app/app/api/api_v1/endpoints/forcegraph.py @@ -0,0 +1,68 @@ +import json +from typing import Any + +from fastapi import APIRouter + +from app import schemas +from app.crud.memgraph_make_graph import ( + graph_search_options, + memgraph_get_graph, + memgraph_query_and_aggregate, +) + + +router = APIRouter() + + +@router.get("/sample", response_model=schemas.GraphData) +def sample_graph() -> Any: + """ + Sample graph data. + """ + + with open("app/data/bloc.json") as f: + graph = json.load(f) + return graph + + +@router.get("/bills", response_model=schemas.GraphData) +def bills() -> Any: + """ + Return sample 2D BILL data. + """ + sample_json = { + "nodes": [ + {"id": "Myriel", "group": 1}, + {"id": "Napoleon", "group": 1}, + {"id": "Mlle.Baptistine", "group": 1}, + ], + "links": [ + {"source": "Napoleon", "target": "Myriel", "value": 1}, + {"source": "Mlle.Baptistine", "target": "Myriel", "value": 8}, + ], + } + + return sample_json + + +@router.post("/search/{id}&{graph_type}&{bill_match}", response_model=schemas.GraphData) +async def search_id(id: str, graph_type: str, bill_match: str) -> Any: + """ + Retrieve search terms. + """ + + return memgraph_get_graph( + ooi_mn=id, + graph_type=graph_type, + bill_match=bill_match + ) + + +@router.post("/search_options", response_model=list[schemas.GraphSearchOptions]) +# @router.post("/search_options") +async def search_options(query: str) -> Any: + """ + Retrieve search terms. + """ + + return graph_search_options(query) diff --git a/compute_backend/app/app/celeryworker_pre_start.py b/compute_backend/app/app/celeryworker_pre_start.py new file mode 100644 index 00000000..81de3713 --- /dev/null +++ b/compute_backend/app/app/celeryworker_pre_start.py @@ -0,0 +1,37 @@ +import logging + +from tenacity import after_log, before_log, retry, stop_after_attempt, wait_fixed + +from app.db.session import SessionLocal + +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger(__name__) + +max_tries = 60 * 5 # 5 minutes +wait_seconds = 1 + + +@retry( + stop=stop_after_attempt(max_tries), + wait=wait_fixed(wait_seconds), + before=before_log(logger, logging.INFO), + after=after_log(logger, logging.WARN), +) +def init() -> None: + try: + # Try to create session to check if DB is awake + db = SessionLocal() + db.execute("SELECT 1") + except Exception as e: + logger.error(e) + raise e + + +def main() -> None: + logger.info("Initializing service") + init() + logger.info("Service finished initializing") + + +if __name__ == "__main__": + main() diff --git a/compute_backend/app/app/core/__init__.py b/compute_backend/app/app/core/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/compute_backend/app/app/core/celery_app.py b/compute_backend/app/app/core/celery_app.py new file mode 100644 index 00000000..0477d145 --- /dev/null +++ b/compute_backend/app/app/core/celery_app.py @@ -0,0 +1,5 @@ +from celery import Celery + +celery_app = Celery("worker", broker="amqp://guest@queue//") + +celery_app.conf.task_routes = {"app.worker.test_celery": "main-queue"} diff --git a/compute_backend/app/app/core/config.py b/compute_backend/app/app/core/config.py new file mode 100644 index 00000000..71bede5b --- /dev/null +++ b/compute_backend/app/app/core/config.py @@ -0,0 +1,61 @@ +import secrets +from typing import Any, Dict, List, Optional, Union + +from pydantic import AnyHttpUrl, BaseSettings, HttpUrl, PostgresDsn, validator + + +class Settings(BaseSettings): + API_V1_STR: str = "/api/c" + SECRET_KEY: str = secrets.token_urlsafe(32) + # 60 minutes * 60 seconds = 1 hour + ACCESS_TOKEN_EXPIRE_SECONDS: int = 60 * 60 + SERVER_NAME: str = "example" + SERVER_HOST: AnyHttpUrl = "http://localhost" + # BACKEND_CORS_ORIGINS is a JSON-formatted list of origins + # e.g: '["http://localhost", "http://localhost:4200", "http://localhost:3000", \ + # "http://localhost:8080", "http://local.dockertoolbox.tiangolo.com"]' + BACKEND_CORS_ORIGINS: List[AnyHttpUrl] = [] + + @validator("BACKEND_CORS_ORIGINS", pre=True) + def assemble_cors_origins(cls, v: Union[str, List[str]]) -> Union[List[str], str]: + if isinstance(v, str) and not v.startswith("["): + return [i.strip() for i in v.split(",")] + elif isinstance(v, (list, str)): + return v + raise ValueError(v) + + PROJECT_NAME: str = "collide" + SENTRY_DSN: Optional[HttpUrl] = "http://0.0.0.0" + + @validator("SENTRY_DSN", pre=True) + def sentry_dsn_can_be_blank(cls, v: str) -> Optional[str]: + if len(v) == 0: + return None + return v + + POSTGRES_SERVER: str = "localhost" + POSTGRES_USER: str = "postgres" + POSTGRES_PASSWORD: str = "1212" + POSTGRES_DB: str = "testdb" + SQLALCHEMY_DATABASE_URI: Optional[PostgresDsn] = None + + @validator("SQLALCHEMY_DATABASE_URI", pre=True) + def assemble_db_connection(cls, v: Optional[str], values: Dict[str, Any]) -> Any: + if isinstance(v, str): + return v + return PostgresDsn.build( + scheme="postgresql+asyncpg", + user=values.get("POSTGRES_USER"), + password=values.get("POSTGRES_PASSWORD"), + host=values.get("POSTGRES_SERVER"), + path=f"/{values.get('POSTGRES_DB') or ''}", + ) + + MEMGRAPH_HOST: str + MEMGRAPH_PORT: int + + class Config: + case_sensitive = True + + +settings = Settings() diff --git a/compute_backend/app/app/crud/__init__.py b/compute_backend/app/app/crud/__init__.py new file mode 100644 index 00000000..e6da6b69 --- /dev/null +++ b/compute_backend/app/app/crud/__init__.py @@ -0,0 +1,9 @@ +from .memgraph_make_graph import graph_search_options, memgraph_query_and_aggregate + +# For a new basic set of CRUD operations you could just do + +# from .base import CRUDBase +# from app.models.item import Item +# from app.schemas.item import ItemCreate, ItemUpdate + +# item = CRUDBase[Item, ItemCreate, ItemUpdate](Item) diff --git a/compute_backend/app/app/crud/base.py b/compute_backend/app/app/crud/base.py new file mode 100644 index 00000000..2b6f1f10 --- /dev/null +++ b/compute_backend/app/app/crud/base.py @@ -0,0 +1,66 @@ +from typing import Any, Dict, Generic, List, Optional, Type, TypeVar, Union + +from fastapi.encoders import jsonable_encoder +from pydantic import BaseModel +from sqlalchemy.orm import Session + +from app.db.base_class import Base + +ModelType = TypeVar("ModelType", bound=Base) +CreateSchemaType = TypeVar("CreateSchemaType", bound=BaseModel) +UpdateSchemaType = TypeVar("UpdateSchemaType", bound=BaseModel) + + +class CRUDBase(Generic[ModelType, CreateSchemaType, UpdateSchemaType]): + def __init__(self, model: Type[ModelType]): + """ + CRUD object with default methods to Create, Read, Update, Delete (CRUD). + + **Parameters** + + * `model`: A SQLAlchemy model class + * `schema`: A Pydantic model (schema) class + """ + self.model = model + + def get(self, db: Session, id: Any) -> Optional[ModelType]: + return db.query(self.model).filter(self.model.id == id).first() + + def get_multi( + self, db: Session, *, skip: int = 0, limit: int = 100 + ) -> List[ModelType]: + return db.query(self.model).offset(skip).limit(limit).all() + + def create(self, db: Session, *, obj_in: CreateSchemaType) -> ModelType: + obj_in_data = jsonable_encoder(obj_in) + db_obj = self.model(**obj_in_data) # type: ignore + db.add(db_obj) + db.commit() + db.refresh(db_obj) + return db_obj + + def update( + self, + db: Session, + *, + db_obj: ModelType, + obj_in: Union[UpdateSchemaType, Dict[str, Any]] + ) -> ModelType: + obj_data = jsonable_encoder(db_obj) + if isinstance(obj_in, dict): + update_data = obj_in + else: + update_data = obj_in.dict(exclude_unset=True) + for field in obj_data: + if field in update_data: + setattr(db_obj, field, update_data[field]) + db.add(db_obj) + db.commit() + db.refresh(db_obj) + return db_obj + + def remove(self, db: Session, *, id: int) -> ModelType: + obj = db.query(self.model).get(id) + db.delete(obj) + db.commit() + return obj diff --git a/compute_backend/app/app/crud/memgraph_make_graph.py b/compute_backend/app/app/crud/memgraph_make_graph.py new file mode 100644 index 00000000..847d279a --- /dev/null +++ b/compute_backend/app/app/crud/memgraph_make_graph.py @@ -0,0 +1,948 @@ +from datetime import date +from app import schemas +import networkx as nx +import cProfile, pstats, io +from pstats import SortKey +import mgclient + +from app.core.config import settings + +conn = mgclient.connect(host="memgraph-platform", port=7687) + + +def fetch_and_map(inputs): + tag = inputs[0] + poi_mn = inputs[1] + query = inputs[2] + connection = inputs[3] + + cursor = connection.cursor() + cursor.execute(query, {"poi_mn": poi_mn}) + res = cursor.fetchall() + cursor.close() + res = list(res)[0][0] + graph_out = mapped_memgraph_to_nx(res) + return tag, graph_out + + +def mapped_memgraph_to_nx(res_dict): + g = nx.MultiDiGraph() + + nodes = res_dict["nodes"] + edges = res_dict["edges"] + node_dict = {x.id: x for x in nodes} + + early_date = date(2100, 1, 1) + late_date = date(1900, 1, 1) + + for n in nodes: + + if "MGPerson" in n.labels: + n_val = 3 + n_sec = None + else: + n_val = 8 + lbl = list(n.labels)[0] + lbl = lbl.replace("MG", "") + + g.add_node( + n.properties["match_name"], + display_name=n.properties["display_name"], + type=lbl, + value=n_val, + ) + + for e in edges: + if e.type == "COMMUNICATION": + g.add_edge( + node_dict[e.start_id].properties["match_name"], + node_dict[e.end_id].properties["match_name"], + type=e.type, + date=e.properties["com_date"], + start_date=e.properties["com_date"], + end_date=e.properties["com_date"], + amount=1, + dash=[2, 3], + color="red", + ) + elif e.type == "FUNDS": + g.add_edge( + node_dict[e.start_id].properties["match_name"], + node_dict[e.end_id].properties["match_name"], + type=e.type, + start_date=e.properties["start_date"], + end_date=e.properties["end_date"], + amount=e.properties["amount"], + dash=[2, 3], + color="green", + ) + else: + + g.add_edge( + node_dict[e.start_id].properties["match_name"], + node_dict[e.end_id].properties["match_name"], + start_date=e.properties.get("start_date", early_date), + end_date=e.properties.get("end_date", late_date), + type=e.type, + color="black", + amount=1, + dash=[0, 0], + ) + + return g + + +def nx_to_json(g): + # convert to json + nodes = [] + links = [] + for n, d in g.nodes.items(): + nodes.append( + {"id": n, "name": d["display_name"], "type": d["type"], "value": d["value"]} + ) + + for e, d in g.edges.items(): + comn = { + "source": e[0], + "target": e[1], + "type": d["type"], + "linkColor": d["color"], + } + + if "dash" in d: + comn["dash"] = d["dash"] + if "amount" in d: + comn["amount"] = d["amount"] + links.append(comn) + + graph = {"nodes": nodes, "links": links} + return graph + + +def filter_edge_by_type(e, e_type): + return {k: d for k, d in e.items() if d["type"] == e_type} + + +def adj_edge_summary(adj_of_node): + edge_summary = [] + for trg, d in adj_of_node.items(): + for k, prop in d.items(): + edge_summary.append((trg, prop["type"])) + + return frozenset(edge_summary) + + +def aggregate_parallel_edges(g): + adj_mat = nx.convert.to_dict_of_dicts(g) + + # TODO add in dash and color saving, save edge ids for the different types then remove consistency checks + # get parallel edges + fund_parallel_edge_node_pairs = {"FUNDS": {}, "COMMUNICATION": {}, "MEMBERSHIP": {}} + for src in adj_mat.keys(): + if len(adj_mat[src]) > 0: + for dst in adj_mat[src].keys(): + if len(adj_mat[src][dst]) > 1: # this will be the parallel edge + + for e_type in fund_parallel_edge_node_pairs.keys(): + + filtered_adjacency = filter_edge_by_type( + adj_mat[src][dst], e_type + ) + + if len(filtered_adjacency) <= 1: + continue + + k = (src, dst) + if k not in fund_parallel_edge_node_pairs[e_type].keys(): + fund_parallel_edge_node_pairs[e_type][k] = { + "amount": 0, + "e_keys": [], + "dash": None, + "color": None, + } + + early_date = date(2100, 1, 1) + late_date = date(1900, 1, 1) + for r in filtered_adjacency.keys(): + fund_parallel_edge_node_pairs[e_type][k][ + "amount" + ] += filtered_adjacency[r]["amount"] + fund_parallel_edge_node_pairs[e_type][k]["e_keys"].append(r) + fund_parallel_edge_node_pairs[e_type][k][ + "dash" + ] = filtered_adjacency[r]["dash"] + fund_parallel_edge_node_pairs[e_type][k][ + "color" + ] = filtered_adjacency[r]["color"] + + if "com_date" in filtered_adjacency[r].keys(): + if filtered_adjacency[r]["com_date"] < early_date: + early_date = filtered_adjacency[r]["com_date"] + if filtered_adjacency[r]["com_date"] > late_date: + late_date = filtered_adjacency[r]["com_date"] + + elif "start_date" in filtered_adjacency[r].keys(): + sd = filtered_adjacency[r]["start_date"] + ed = filtered_adjacency[r].get("end_date", sd) + # TODO optimize order + if sd < early_date: + early_date = sd + elif sd > late_date: + late_date = sd + if ed < early_date: + early_date = ed + elif ed > late_date: + late_date = ed + + fund_parallel_edge_node_pairs[e_type][k][ + "start_date" + ] = early_date + fund_parallel_edge_node_pairs[e_type][k][ + "end_date" + ] = late_date + + # merge the parallel edges + for e_type in fund_parallel_edge_node_pairs.keys(): + for k in fund_parallel_edge_node_pairs[e_type].keys(): + + # create the data for the new edge + new_edge = { + "type": e_type, + "dash": fund_parallel_edge_node_pairs[e_type][k]["dash"], + "color": fund_parallel_edge_node_pairs[e_type][k]["color"], + "amount": fund_parallel_edge_node_pairs[e_type][k]["amount"], + "start_date": fund_parallel_edge_node_pairs[e_type][k]["start_date"], + "end_date": fund_parallel_edge_node_pairs[e_type][k]["end_date"], + } + + # remove all the old edges + for e in list(fund_parallel_edge_node_pairs[e_type][k]["e_keys"]): + g.remove_edge(k[0], k[1], e) + + # add in the new edge + g.add_edge(k[0], k[1], key=None, **new_edge) + + return g + + +def aggregate_leaves(g, label, threshold, edge_type, object_of_interest=None): + fund_degrees = nx.degree(g) + # get all of the people that just fund + if object_of_interest is None: + funding_leaves = [x[0] for x in fund_degrees if x[1] == 1] + else: # don't aggregate the object_of_interest + funding_leaves = [ + x[0] for x in fund_degrees if x[1] == 1 and x[0] != object_of_interest + ] + all_degrees = {x[0]: x[1] for x in fund_degrees} + + funding_totals = {} + leaf_agg_count = {} + for ( + leaf + ) in funding_leaves: # these are leaves, so they will only ever have one target + if len(list(g.adj[leaf].keys())) == 0: + continue + + trg = list(g.adj[leaf].keys())[0] + + if all_degrees[trg] < threshold: + continue + + edges = g.adj[leaf][trg] + if len(edges) != 1: + raise RuntimeError("working on a node that isn't actually a leaf") + edges = edges[0] + if edges["type"] != edge_type: + continue + + e_type = edges["type"] + dash = edges["dash"] + color = edges["color"] + amount = edges["amount"] + if "com_date" in edges.keys(): + sd = edges["com_date"] + ed = edges["com_date"] + elif "start_date" in edges.keys(): + sd = edges["start_date"] + ed = edges["end_date"] + else: + sd = date(1900, 1, 1) + ed = date(1900, 1, 1) + + if trg not in funding_totals.keys(): + funding_totals[trg] = { + "amount": 0, + "start_date": sd, + "end_date": ed, + "type": e_type, + "dash": dash, + "color": color, + } + leaf_agg_count[trg] = 0 + + # check type, dash and color for consistency + ft_e_type = funding_totals[trg]["type"] + ft_dash = funding_totals[trg]["dash"] + ft_color = funding_totals[trg]["color"] + + if e_type != ft_e_type or dash != ft_dash or color != ft_color: + continue + + ft_sd = funding_totals[trg]["start_date"] + ft_ed = funding_totals[trg]["end_date"] + + if sd < ft_sd: + funding_totals[trg]["start_date"] = sd + if ed > ft_ed: + funding_totals[trg]["end_date"] = ed + + funding_totals[trg]["amount"] += amount + leaf_agg_count[trg] += 1 + + # we have aggregated this leaf, so remove it + g.remove_node(leaf) + + for k in funding_totals.keys(): + new_mn = f"{k}_{e_type}_agg" + new_dn = f"{label} ({leaf_agg_count[k]})" + g.add_node(new_mn, display_name=new_dn, type="MGPerson", value=3) + g.add_edge(new_mn, f"{k}", **funding_totals[k]) + + return g + + +def aggregate_same_edges(g, label, threshold, **kwargs): + # we want to get a list of lists + # each sublist should contain the nodes that have all the same edges, type shouldn't really factor in here, else we + # will have to handle splitting out nodes wrt one type and aggregating them in another + # this operation should be run after all of the different subgraphs have been combined + non_empty_sets = {} + + object_of_interest = kwargs.pop("object_of_interest_mn", None) + node_type = kwargs.pop("node_type", "Person") + if node_type == "Person": + n_val = 3 + else: + n_val = 8 + + node_list = set(g.nodes) + if object_of_interest is not None: + node_list.discard(object_of_interest) # never aggregate the object of interest + + tg = nx.to_undirected(g) + unique_combinations = set() + binned_nodes = {} + for n in node_list: + if g.nodes[n]["type"] == node_type: + es = adj_edge_summary(tg.adj[n]) + if len(es) > 0: + non_empty_sets[n] = es + unique_combinations.add(es) + if es in binned_nodes.keys(): + binned_nodes[es]["nodes"].append(n) + binned_nodes[es]["count"] += 1 + else: + binned_nodes[es] = {"nodes": [n], "count": 1} + + binned_nodes = {n: x for n, x in binned_nodes.items() if x["count"] > threshold} + + for uc, j in binned_nodes.items(): + + targets_and_types = uc + + new_mn = f"{hash(targets_and_types)}_agg" + new_dn = f"{label} ({len(j)})" + g.add_node(new_mn, display_name=new_dn, type=node_type, value=n_val) + + for tt in targets_and_types: + trg = tt[0] + e_type = tt[1] + early_date = date(2100, 1, 1) + late_date = date(1900, 1, 1) + amount = 0 + dash = None + color = None + + for src in j["nodes"]: + try: + fish = g.adj[src][trg] + except KeyError: + fish = g.pred[src][trg] + fish = filter_edge_by_type(fish, e_type) + + for q in fish.keys(): + + if fish[q]["start_date"] < early_date: + early_date = fish[q]["start_date"] + if fish[q]["end_date"] > late_date: + late_date = fish[q]["end_date"] + dash = fish[q]["dash"] + color = fish[q]["color"] + amount += fish[q]["amount"] + + summ = { + "start_date": early_date, + "end_date": late_date, + "type": e_type, + "dash": dash, + "color": color, + "amount": amount, + } + g.add_edge(new_mn, f"{trg}", **summ) + # remov nodes + for src in j["nodes"]: + g.remove_node(src) + + return g + + +def create_tot_graph(m_g, f_g, c_g): + t_graph = nx.MultiDiGraph() + + t_graph.add_nodes_from(f_g.nodes(data=True)) + t_graph.add_edges_from(f_g.edges(data=True)) + + t_graph.add_nodes_from(m_g.nodes(data=True)) + t_graph.add_edges_from(m_g.edges(data=True)) + + t_graph.add_nodes_from(c_g.nodes(data=True)) + t_graph.add_edges_from(c_g.edges(data=True)) + + return t_graph + + +def memgraph_query_and_aggregate( + poi_mn: str, + fund_depth: int, + membership_depth: int, + communication_depth: int, + target_max_nodes: int = 300, + start_agg_threshold: int = 80, + aggregation_threshold_step: int = 5, + verbose=False, + profile=False, + # log_file=None, +) -> dict: + """ + + Parameters + ---------- + poi_mn: str + person (or org) of interest match name. This is the starting point for the graph search + fund_depth: int + this is the number of hops to traverse the graph with respect to funding. The initial hop only considers + the FUNDING relationship, and the subsequent hops consider FUNDING and MEMBERSHIP, to try and capture the + memberships of any funding sources + membership_depth: int + see fund_depth + communication_depth: int + see fund_depth + target_max_nodes: int + this is the number of nodes that all the aggregation is shooting for, i.e. aggregations are done until + we are at or below this number, or we can't do any more + start_agg_threshold: int + this the threshold over which we start to aggregate things. It is gradually lowered after successive + aggregations, trying to get the total nodes under target_max_nodes + aggregation_threshold_step: int + this is the amount that start_agg_threshold is reduced by during successive aggregation steps. Higher + values will make the process go faster, but may end up overdoing the aggregation + verbose: bool + whether to print things to stdout or not + log_file: filepath or None + if not none, write logs to a file + Returns + ------- + dict + dictionary of nodes and edges that is compatible with json, and can be saved or passed directly (unsure what + this will need to look like for the integration with the frontend) + + """ + + some_letters = ("r", "s", "t", "u", "v", "w", "x", "y", "z") + + cursor = conn.cursor() + gql = f"""MATCH (n) WHERE n.match_name = $poi_mn + RETURN n""" + cursor.execute(gql, {"poi_mn": poi_mn}) + poi_type = cursor.fetchone() + poi_type = poi_type[0].labels.pop() + type_tag = poi_type.replace("MG", "") + + if profile: + pr = cProfile.Profile() + pr.enable() + + json_file_name = f"generated_json/{poi_mn}_m{membership_depth}_c{communication_depth}_f{fund_depth}.json" + if verbose: + print(json_file_name) + + query_funds_line_1 = ( + f"MATCH p=(n: MG{type_tag} {{match_name: $poi_mn}}) - [l:FUNDS *..1] - (m)" + ) + query_membership_line_1 = ( + f"MATCH p=(n: MG{type_tag} {{match_name: $poi_mn}}) - [l:MEMBERSHIP *..1] - (m)" + ) + query_communications_line_1 = f"MATCH p=(n: MG{type_tag} {{match_name: $poi_mn}}) - [l:COMMUNICATION *..1] - (m)" + + query_last_lines = ["with project(p) as f", "return f"] + + for i in range(0, fund_depth - 1): + query_funds_line_1 += f" - [{some_letters[2 * i]}:FUNDS|MEMBERSHIP *..1] - ({some_letters[2 * i + 1]})" + + for i in range(0, communication_depth - 1): + query_communications_line_1 += f" - [{some_letters[2 * i]}:COMMUNICATION|MEMBERSHIP *..1] - ({some_letters[2 * i + 1]})" + + for i in range(0, membership_depth - 1): + query_membership_line_1 += ( + f" - [{some_letters[2 * i]}:MEMBERSHIP *..1] - ({some_letters[2 * i + 1]})" + ) + + query_funds = "\n".join([query_funds_line_1] + query_last_lines) + query_communication = "\n".join([query_communications_line_1] + query_last_lines) + query_membership = "\n".join([query_membership_line_1] + query_last_lines) + + concurrent_inputs = [] + all_graphs = {} + if fund_depth > 0: + concurrent_inputs.append(("fund_g", poi_mn, query_funds, conn)) + else: + all_graphs["fund_g"] = nx.MultiDiGraph() + + if membership_depth > 0: + concurrent_inputs.append(("membership_g", poi_mn, query_membership, conn)) + else: + all_graphs["membership_g"] = nx.MultiDiGraph() + + if communication_depth > 0: + concurrent_inputs.append(("communication_g", poi_mn, query_communication, conn)) + else: + all_graphs["communication_g"] = nx.MultiDiGraph() + + cursor.close() + + # doing this concurrently seems to just make things slower + # with concurrent.futures.ThreadPoolExecutor() as executor: + # for t, g in executor.map(fetch_and_map, concurrent_inputs): + for i in concurrent_inputs: + t, g = fetch_and_map(i) + all_graphs[t] = g + + # unpack + fund_g = all_graphs["fund_g"] + membership_g = all_graphs["membership_g"] + communication_g = all_graphs["communication_g"] + + # these two reductions just make more sense, so always do them + fund_g = aggregate_parallel_edges(fund_g) + communication_g = aggregate_parallel_edges(communication_g) + + tot_graph = create_tot_graph(membership_g, fund_g, communication_g) + tot_nodes = nx.number_of_nodes(tot_graph) + tot_edges = nx.number_of_edges(tot_graph) + if verbose: + print(f"total nodes in {tot_nodes}") + print(f"total edges in {tot_edges}") + + reductions = set() + brk = False + + agg_threshold = start_agg_threshold + + temp_tot_graph = tot_graph.copy(as_view=False) + + while tot_nodes > target_max_nodes and not brk: + + if ("aggregate_fund_leaves", agg_threshold) not in reductions: + temp_tot_graph = aggregate_leaves( + temp_tot_graph, + "Misc Donors", + agg_threshold, + edge_type="FUNDS", + object_of_interest=poi_mn, + ) + reductions.add(("aggregate_fund_leaves", agg_threshold)) + tot_nodes = nx.number_of_nodes(temp_tot_graph) + if verbose: + print(f'{("aggregate_fund_leaves", agg_threshold)}:') + print(f"\ttot nodes: {tot_nodes}") + continue + + if ("aggregate_membership_leaves", agg_threshold) not in reductions: + temp_tot_graph = aggregate_leaves( + temp_tot_graph, + "Other Members", + agg_threshold, + edge_type="MEMBERSHIP", + object_of_interest=poi_mn, + ) + reductions.add(("aggregate_membership_leaves", agg_threshold)) + tot_nodes = nx.number_of_nodes(temp_tot_graph) + if verbose: + print(f'{("aggregate_membership_leaves", agg_threshold)}:') + print(f"\ttot nodes: {tot_nodes}") + continue + + if ("aggregate_communication_leaves", agg_threshold) not in reductions: + temp_tot_graph = aggregate_leaves( + temp_tot_graph, + "Other Parties", + agg_threshold, + edge_type="COMMUNICATION", + object_of_interest=poi_mn, + ) + reductions.add(("aggregate_communication_leaves", agg_threshold)) + tot_nodes = nx.number_of_nodes(temp_tot_graph) + if verbose: + print(f'{("aggregate_communication_leaves", agg_threshold)}:') + print(f"\ttot nodes: {tot_nodes}") + continue + + if ("aggregate_same_edges", agg_threshold) not in reductions: + + if ("aggregate_same_edges_person", agg_threshold) not in reductions: + temp_tot_graph = aggregate_same_edges( + temp_tot_graph, + "Other Parties", + agg_threshold, + object_of_interest_mn=poi_mn, + node_type="Person", + ) + tot_nodes = nx.number_of_nodes(temp_tot_graph) + reductions.add(("aggregate_same_edges_person", agg_threshold)) + if verbose: + print(f'{("aggregate_same_edges_person", agg_threshold)}:') + print(f"\ttot nodes: {tot_nodes}") + continue + + if ( + "aggregate_same_edges_organizations", + agg_threshold, + ) not in reductions: + temp_tot_graph = aggregate_same_edges( + temp_tot_graph, + "Other Orgs", + agg_threshold, + object_of_interest_mn=poi_mn, + node_type="Organization", + ) + tot_nodes = nx.number_of_nodes(temp_tot_graph) + reductions.add(("aggregate_same_edges_organizations", agg_threshold)) + if verbose: + print(f'{("aggregate_same_edges_organizations", agg_threshold)}:') + print(f"\ttot nodes: {tot_nodes}") + continue + reductions.add(("aggregate_same_edges", agg_threshold)) + + if agg_threshold > 1 and (agg_threshold - aggregation_threshold_step) <= 0: + agg_threshold = 1 + else: + agg_threshold -= aggregation_threshold_step + if agg_threshold <= 1: + brk = True + else: + temp_tot_graph = tot_graph.copy(as_view=False) + + tot_graph = temp_tot_graph + + graph_json = nx_to_json(tot_graph) + + if verbose: + print(f"total nodes out {nx.number_of_nodes(tot_graph)}") + print(f"total edges out {nx.number_of_edges(tot_graph)}") + + if profile: + pr.disable() + s = io.StringIO() + sortby = SortKey.CUMULATIVE + ps = pstats.Stats(pr, stream=s).sort_stats(sortby) + ps.print_stats() + print(poi_mn) + print(s.getvalue()) + + if verbose: + print("done") + + return graph_json + + +def graph_search_options(search: str) -> list[schemas.GraphSearchOptions]: + """Search for people and organizations in the graph database.""" + + peeps_and_orgs = [] + + # limit responses to 50 + query = f""" + MATCH (n:MGSearchItem) WHERE n.match_name CONTAINS toLower($search) RETURN n.display_name, n.match_name, n.graph_type, n.bill_match_name LIMIT 50; + """ + cursor = conn.cursor() + cursor.execute(query, {"search": search}) + res = cursor.fetchall() + + for person_or_org in res: + if person_or_org[3] is None: + bm = "na" + else: + bm = person_or_org[3] + + options = { + # TODO remove value and build it in the front end + "value": person_or_org[1], + "label": person_or_org[0], + "type": person_or_org[2], + "bill_match": bm, + } + + peeps_and_orgs.append(options) + + return peeps_and_orgs + + +def fetch_and_map_bill(inputs): + tag = inputs[0] + boi_mn = inputs[1] + query = inputs[2] + connection = inputs[3] + + cursor = connection.cursor() + cursor.execute(query, {"boi_mn": boi_mn}) + res = cursor.fetchall() + cursor.close() + res = list(res)[0][0] + graph_out = mapped_memgraph_bill_to_nx(res, tag) + return tag, graph_out + + +def fetch_and_map_votes(inputs): + tag = inputs[0] + mn = inputs[1] + query = inputs[2] + connection = inputs[3] + + cursor = connection.cursor() + cursor.execute(query, {"mn": mn}) + res = cursor.fetchall() + cursor.close() + resf, resy = list(res)[0] + if len(resy["nodes"]) > 0: + resf["nodes"].extend(resy["nodes"]) + if len(resy["edges"]) > 0: + resf["edges"].extend(resy["edges"]) + graph_out = mapped_memgraph_bill_to_nx(resf, tag) + return tag, graph_out + + +node_color_bill_line = "black" +node_color_vote = {"yea": "green", "nay": "red", "paired": "grey"} +node_color_outsider = "purple" +node_color_membership = "orange" + + +def mapped_memgraph_bill_to_nx(res_dict, tag): + g = nx.MultiDiGraph() + + nodes = res_dict["nodes"] + edges = res_dict["edges"] + node_dict = {x.id: x for x in nodes} + + for n in nodes: + + if "MGBillStage" in n.labels: + n_val = 8 + n_sec = None + else: + n_val = 2 + + if "MGBillStage" in n.labels: + lbl = "BillStage" + g.add_node( + n.properties["match_name"], + name=n.properties["match_name"], + type=lbl, + stage_date=str(n.properties["stage_date"]), + value=n_val, + nodeColor=node_color_bill_line, + ) + elif "MGPerson" in n.labels: + lbl = "Person" + g.add_node( + "_".join([n.properties["match_name"], tag]), + name=n.properties["display_name"], + type=lbl, + value=n_val, + ) + elif "MGOrganization" in n.labels: + lbl = "Organization" + g.add_node( + "_".join([n.properties["match_name"], tag]), + name=n.properties["display_name"], + type=lbl, + nodeColor=node_color_membership, + value=n_val, + ) + + for e in edges: + if e.type == "LEGPROGRESSION": + g.add_edge( + node_dict[e.start_id].properties["match_name"], + node_dict[e.end_id].properties["match_name"], + type=e.type, + linkColor=node_color_bill_line, + linkDirectionalArrowLength=6, + linkDirectionalArrowRelPos=0.5, + linkWidth=4, + ) + elif e.type == "INDIVIDUALVOTE": + g.add_edge( + "_".join([node_dict[e.start_id].properties["match_name"], tag]), + node_dict[e.end_id].properties["match_name"], + type=e.type, + person_vote=e.properties["person_vote"], + linkColor=node_color_vote[e.properties["person_vote"]], + linkDirectionalArrowLength=0, + linkDirectionalArrowRelPos=0, + linkWidth=1, + ) + + if "MGPerson" in node_dict[e.start_id].labels: + g.nodes[ + "_".join([node_dict[e.start_id].properties["match_name"], tag]) + ]["nodeColor"] = node_color_vote[e.properties["person_vote"]] + + elif e.type == "COMMUNICATION": + + g.add_edge( + "_".join([node_dict[e.start_id].properties["match_name"], tag]), + "_".join([node_dict[e.end_id].properties["match_name"], tag]), + type=e.type, + linkColor=node_color_outsider, + linkDirectionalArrowLength=0, + linkDirectionalArrowRelPos=0, + linkWidth=1, + ) + if "MGPerson" in node_dict[e.start_id].labels: + g.nodes["_".join([node_dict[e.end_id].properties["match_name"], tag])][ + "nodeColor" + ] = node_color_outsider + + elif e.type == "MEMBERSHIP": + g.add_edge( + "_".join([node_dict[e.start_id].properties["match_name"], tag]), + "_".join([node_dict[e.end_id].properties["match_name"], tag]), + type=e.type, + linkColor=node_color_membership, + linkDirectionalArrowLength=0, + linkDirectionalArrowRelPos=0, + linkWidth=1, + ) + + else: + raise RuntimeError("Problem") + + return g + + +def nx_bill_to_json(g): + # convert to json + nodes = [] + links = [] + for n, d in g.nodes.items(): + comn = {"id": n} + for k in d.keys(): + comn[k] = d[k] + + nodes.append(comn) + + for e, d in g.edges.items(): + comn = {"source": e[0], "target": e[1]} + for k in d.keys(): + comn[k] = d[k] + links.append(comn) + + graph = {"nodes": nodes, "links": links} + return graph + + +def memgraph_bill_query( + boi_mn: str, + verbose=False, +) -> dict: + """ + + Parameters + ---------- + boi_mn: str + bill of interest match name. This is the starting point for the graph search + + verbose: bool + whether to print things to stdout or not + + Returns + ------- + dict + dictionary of nodes and edges that is compatible with json, and can be saved or passed directly (unsure what + this will need to look like for the integration with the frontend) + + """ + print(boi_mn) + bill_stage_progression_query = f"MATCH p=(n: MGBillStage {{bill_match_name: $boi_mn}}) - [l:LEGPROGRESSION] - (m:MGBillStage) with project(p) as f return f;" + + concurrent_inputs = [] + + concurrent_inputs.append(("leg_prog", boi_mn, bill_stage_progression_query, conn)) + + all_graphs = {} + + # doing this concurrently seems to just make things slower + # with concurrent.futures.ThreadPoolExecutor() as executor: + # for t, g in executor.map(fetch_and_map, concurrent_inputs): + for i in concurrent_inputs: + t, g = fetch_and_map_bill(i) + all_graphs[t] = g + + # unpack + leg_prog_g = all_graphs["leg_prog"] + + vote_graphs = {} + for legstage in leg_prog_g.nodes: + print(leg_prog_g.nodes[legstage]) + gql = """MATCH p=(n:MGPerson) - [l:INDIVIDUALVOTE]- (m:MGBillStage {match_name: $mn}) + OPTIONAL MATCH x=(n) - [r:COMMUNICATION] -(o) - [q:MEMBERSHIP] - (s) + where r.com_date <= m.stage_date and r.com_date > m.stage_date - duration({day:30}) + with project(p) as f, project(x) as y return f, y;""" + tag, g = fetch_and_map_votes((legstage, legstage, gql, conn)) + vote_graphs[tag] = g + + total_graph = nx.MultiDiGraph() + total_graph.add_nodes_from(leg_prog_g.nodes(data=True)) + total_graph.add_edges_from(leg_prog_g.edges(data=True)) + for tag in vote_graphs.keys(): + total_graph.add_nodes_from(vote_graphs[tag].nodes(data=True)) + total_graph.add_edges_from(vote_graphs[tag].edges(data=True)) + + graph_json = nx_bill_to_json(total_graph) + + if verbose: + print("done") + + import json + + with open("test.json", "w") as h: + json.dump(graph_json, h) + + return graph_json + + +def memgraph_get_graph(ooi_mn: str, graph_type: str, bill_match: str): + print(f"{ooi_mn} {graph_type} {bill_match}") + + if graph_type == "bill": + return memgraph_bill_query(bill_match) + elif graph_type == "force": + return memgraph_query_and_aggregate( + ooi_mn, + fund_depth=2, + membership_depth=2, + communication_depth=2, + aggregation_threshold_step=20, + ) diff --git a/compute_backend/app/app/main.py b/compute_backend/app/app/main.py new file mode 100644 index 00000000..d2712b90 --- /dev/null +++ b/compute_backend/app/app/main.py @@ -0,0 +1,29 @@ +from fastapi import FastAPI +from fastapi.routing import APIRoute +from starlette.middleware.cors import CORSMiddleware + +from app.api.api_v1.api import api_router +from app.core.config import settings + + +def custom_generate_unique_id(route: APIRoute): + return f"{route.tags[0]}-{route.name}-c" + +app = FastAPI( + generate_unique_id_function=custom_generate_unique_id, + title=settings.PROJECT_NAME, openapi_url=f"{settings.API_V1_STR}/openapi.json" +) + +# Set all CORS enabled origins +if settings.BACKEND_CORS_ORIGINS: + app.add_middleware( + CORSMiddleware, + allow_origins=[str(origin) for origin in settings.BACKEND_CORS_ORIGINS], + allow_credentials=True, + allow_methods=["*"], + allow_headers=["*"], + ) + +app.include_router(api_router, prefix=settings.API_V1_STR) + + diff --git a/compute_backend/app/app/schemas/__init__.py b/compute_backend/app/app/schemas/__init__.py new file mode 100644 index 00000000..07ce0cb6 --- /dev/null +++ b/compute_backend/app/app/schemas/__init__.py @@ -0,0 +1,2 @@ +from .graph import GraphData, GraphSearchOptions, Link, Node + diff --git a/compute_backend/app/app/schemas/graph.py b/compute_backend/app/app/schemas/graph.py new file mode 100644 index 00000000..087b845b --- /dev/null +++ b/compute_backend/app/app/schemas/graph.py @@ -0,0 +1,37 @@ +from __future__ import annotations + +from typing import List, Optional + +from pydantic import BaseModel + + +class Node(BaseModel): + id: Optional[str] + name: Optional[str] + type: Optional[str] + nodeColor: Optional[str] + value: Optional[int] + + +class Link(BaseModel): + source: Optional[str] + target: Optional[str] + type: Optional[str] + linkColor: Optional[str] + linkDirectionalArrowLength: Optional[int] + linkDirectionalArrowRelPos: Optional[float] + linkWidth: Optional[int] + dash: Optional[List[int]] + amount: Optional[int] + + +class GraphData(BaseModel): + nodes: Optional[List[Node]] + links: Optional[List[Link]] + + +class GraphSearchOptions(BaseModel): + value: str + label: str + type: str + bill_match: str diff --git a/compute_backend/app/app/worker.py b/compute_backend/app/app/worker.py new file mode 100644 index 00000000..5fea53c9 --- /dev/null +++ b/compute_backend/app/app/worker.py @@ -0,0 +1,11 @@ +from raven import Client + +from app.core.celery_app import celery_app +from app.core.config import settings + +client_sentry = Client(settings.SENTRY_DSN) + + +@celery_app.task(acks_late=True) +def test_celery(word: str) -> str: + return f"test task return {word}" diff --git a/compute_backend/gunicorn_conf.py b/compute_backend/gunicorn_conf.py new file mode 100644 index 00000000..7dd141df --- /dev/null +++ b/compute_backend/gunicorn_conf.py @@ -0,0 +1,67 @@ +import json +import multiprocessing +import os + +workers_per_core_str = os.getenv("WORKERS_PER_CORE", "1") +max_workers_str = os.getenv("MAX_WORKERS") +use_max_workers = None +if max_workers_str: + use_max_workers = int(max_workers_str) +web_concurrency_str = os.getenv("WEB_CONCURRENCY", None) + +host = os.getenv("HOST", "0.0.0.0") +port = os.getenv("PORT", "80") +bind_env = os.getenv("BIND", None) +use_loglevel = os.getenv("LOG_LEVEL", "info") +if bind_env: + use_bind = bind_env +else: + use_bind = f"{host}:{port}" + +cores = multiprocessing.cpu_count() +workers_per_core = float(workers_per_core_str) +default_web_concurrency = workers_per_core * cores +if web_concurrency_str: + web_concurrency = int(web_concurrency_str) + assert web_concurrency > 0 +else: + web_concurrency = max(int(default_web_concurrency), 2) + if use_max_workers: + web_concurrency = min(web_concurrency, use_max_workers) +accesslog_var = os.getenv("ACCESS_LOG", "-") +use_accesslog = accesslog_var or None +errorlog_var = os.getenv("ERROR_LOG", "-") +use_errorlog = errorlog_var or None +graceful_timeout_str = os.getenv("GRACEFUL_TIMEOUT", "120") +timeout_str = os.getenv("TIMEOUT", "120") +keepalive_str = os.getenv("KEEP_ALIVE", "5") + +# Gunicorn config variables +loglevel = use_loglevel +workers = web_concurrency +bind = use_bind +errorlog = use_errorlog +worker_tmp_dir = "/dev/shm" +accesslog = use_accesslog +graceful_timeout = int(graceful_timeout_str) +timeout = int(timeout_str) +keepalive = int(keepalive_str) + + +# For debugging and testing +log_data = { + "loglevel": loglevel, + "workers": workers, + "bind": bind, + "graceful_timeout": graceful_timeout, + "timeout": timeout, + "keepalive": keepalive, + "errorlog": errorlog, + "accesslog": accesslog, + # Additional, non-gunicorn variables + "workers_per_core": workers_per_core, + "use_max_workers": use_max_workers, + "host": host, + "port": port, +} +print(json.dumps(log_data)) diff --git a/compute_backend/requirements.txt b/compute_backend/requirements.txt new file mode 100644 index 00000000..f588da72 --- /dev/null +++ b/compute_backend/requirements.txt @@ -0,0 +1,16 @@ +python-multipart +requests +celery +tenacity +raven +gunicorn +boto3 +unidecode +uvicorn +Jinja2 +greenlet +sqlmodel +networkx +pymgclient +makefun +fastapi \ No newline at end of file diff --git a/compute_backend/start-reload.sh b/compute_backend/start-reload.sh new file mode 100644 index 00000000..433cf84d --- /dev/null +++ b/compute_backend/start-reload.sh @@ -0,0 +1,28 @@ +#! /usr/bin/env sh +set -e + +if [ -f /app/app/main.py ]; then + DEFAULT_MODULE_NAME=app.main +elif [ -f /app/main.py ]; then + DEFAULT_MODULE_NAME=main +fi +MODULE_NAME=${MODULE_NAME:-$DEFAULT_MODULE_NAME} +VARIABLE_NAME=${VARIABLE_NAME:-app} +export APP_MODULE=${APP_MODULE:-"$MODULE_NAME:$VARIABLE_NAME"} + +HOST=${HOST:-0.0.0.0} +PORT=${PORT:-80} +LOG_LEVEL=${LOG_LEVEL:-info} + +# If there's a prestart.sh script in the /app directory or other path specified, run it before starting +PRE_START_PATH=${PRE_START_PATH:-/app/prestart.sh} +echo "Checking for script in $PRE_START_PATH" +if [ -f $PRE_START_PATH ] ; then + echo "Running script $PRE_START_PATH" + . "$PRE_START_PATH" +else + echo "There is no script $PRE_START_PATH" +fi + +# Start Uvicorn with live reload +exec pypy3 -m uvicorn --reload --host $HOST --port $PORT --log-level $LOG_LEVEL "$APP_MODULE" diff --git a/compute_backend/start.sh b/compute_backend/start.sh new file mode 100644 index 00000000..1e519ab2 --- /dev/null +++ b/compute_backend/start.sh @@ -0,0 +1,34 @@ +#! /usr/bin/env sh +set -e + +if [ -f /app/app/main.py ]; then + DEFAULT_MODULE_NAME=app.main +elif [ -f /app/main.py ]; then + DEFAULT_MODULE_NAME=main +fi +MODULE_NAME=${MODULE_NAME:-$DEFAULT_MODULE_NAME} +VARIABLE_NAME=${VARIABLE_NAME:-app} +export APP_MODULE=${APP_MODULE:-"$MODULE_NAME:$VARIABLE_NAME"} + +if [ -f /app/gunicorn_conf.py ]; then + DEFAULT_GUNICORN_CONF=/app/gunicorn_conf.py +elif [ -f /app/app/gunicorn_conf.py ]; then + DEFAULT_GUNICORN_CONF=/app/app/gunicorn_conf.py +else + DEFAULT_GUNICORN_CONF=/gunicorn_conf.py +fi +export GUNICORN_CONF=${GUNICORN_CONF:-$DEFAULT_GUNICORN_CONF} +export WORKER_CLASS=${WORKER_CLASS:-"uvicorn.workers.UvicornWorker"} + +# If there's a prestart.sh script in the /app directory or other path specified, run it before starting +PRE_START_PATH=${PRE_START_PATH:-/app/prestart.sh} +echo "Checking for script in $PRE_START_PATH" +if [ -f $PRE_START_PATH ] ; then + echo "Running script $PRE_START_PATH" + . "$PRE_START_PATH" +else + echo "There is no script $PRE_START_PATH" +fi + +# Start Gunicorn +exec pypy3 -m gunicorn -k "$WORKER_CLASS" -c "$GUNICORN_CONF" "$APP_MODULE" diff --git a/cookiecutter-config-file.yml b/cookiecutter-config-file.yml index 3d5451f4..53e25c56 100644 --- a/cookiecutter-config-file.yml +++ b/cookiecutter-config-file.yml @@ -1,24 +1,24 @@ default_context: - project_name: 'collide' - project_slug: 'collide' - domain_main: 'collide.com' - domain_staging: 'stag.collide.com' - docker_swarm_stack_name_main: 'collide-com' - docker_swarm_stack_name_staging: 'stag-collide-com' + project_name: 'lobbyradar' + project_slug: 'lobbyradar' + domain_main: 'lobbyradar.io' + domain_staging: 'stag.lobbyradar.io' + docker_swarm_stack_name_main: 'lobbyradar-io' + docker_swarm_stack_name_staging: 'stag-lobbyradar-io' secret_key: 'changethis' - first_superuser: 'admin@collide.com' + first_superuser: 'admin@lobbyradar.io' first_superuser_password: 'changethis' - backend_cors_origins: '["http://localhost", "http://localhost:4200", "http://localhost:3000", "http://localhost:8080", "https://localhost", "https://localhost:4200", "https://localhost:3000", "https://localhost:8080", "http://dev.collide.com", "https://stag.collide.com", "https://collide.com", "http://local.dockertoolbox.tiangolo.com", "http://localhost.tiangolo.com"]' + backend_cors_origins: '["http://localhost", "http://localhost:5173", "http://localhost:3000", "http://localhost:8080", "https://localhost", "https://localhost:4200", "https://localhost:3000", "https://localhost:8080", "http://dev.lobbyradar.io", "https://stag.lobbyradar.io", "https://lobbyradar.io"]' smtp_port: '587' smtp_host: '' smtp_user: '' smtp_password: '' - smtp_emails_from_email: 'info@collide.com' + smtp_emails_from_email: 'info@lobbyradar.io' postgres_password: 'changethis' - pgadmin_default_user: 'admin@collide.com' + pgadmin_default_user: 'admin@lobbyradar.io' pgadmin_default_user_password: 'changethis' - traefik_constraint_tag: 'collide.com' - traefik_constraint_tag_staging: 'stag.collide.com' + traefik_constraint_tag: 'lobbyradar.io' + traefik_constraint_tag_staging: 'stag.lobbyradar.io' traefik_public_constraint_tag: 'traefik-public' flower_auth: 'admin:changethis' sentry_dsn: '' diff --git a/docker-compose.override.yml b/docker-compose.override.yml index cb9b6095..d43ae370 100644 --- a/docker-compose.override.yml +++ b/docker-compose.override.yml @@ -28,13 +28,28 @@ services: - traefik.http.routers.${STACK_NAME?Variable not set}-traefik-public-http.rule=Host(`${DOMAIN?Variable not set}`) - traefik.http.services.${STACK_NAME?Variable not set}-traefik-public.loadbalancer.server.port=80 - pgadmin: - ports: - - "5050:5050" + # pgadmin: + # ports: + # - "5050:5050" - flower: + db: ports: - - "5555:5555" + - "5432:5432" + + # memgraph: + # ports: + # - "7687:7687" + # - "3000:3000" + # - "7444:7444" + + # memgraph-platform: + # ports: + # - "7687:7687" + # - "3000:3000" + # - "7444:7444" + # flower: + # ports: + # - "5555:5555" backend: ports: @@ -49,28 +64,38 @@ services: dockerfile: backend.dockerfile args: INSTALL_DEV: ${INSTALL_DEV-true} - INSTALL_JUPYTER: ${INSTALL_JUPYTER-true} + # INSTALL_JUPYTER: ${INSTALL_JUPYTER-true} # command: bash -c "while true; do sleep 1; done" # Infinite loop to keep container live doing nothing command: /start-reload.sh labels: - traefik.enable=true - traefik.constraint-label-stack=${TRAEFIK_TAG?Variable not set} - - traefik.http.routers.${STACK_NAME?Variable not set}-backend-http.rule=PathPrefix(`/api`) || PathPrefix(`/docs`) || PathPrefix(`/redoc`) + - traefik.http.routers.${STACK_NAME?Variable not set}-backend-http.rule=PathPrefix(`/api/v1`) || PathPrefix(`/docs`) || PathPrefix(`/redoc`) - traefik.http.services.${STACK_NAME?Variable not set}-backend.loadbalancer.server.port=80 - celeryworker: - volumes: - - ./backend/app:/app - environment: - - RUN=celery worker -A app.worker -l info -Q main-queue -c 1 - - JUPYTER=jupyter lab --ip=0.0.0.0 --allow-root --NotebookApp.custom_display_url=http://127.0.0.1:8888 - - SERVER_HOST=http://${DOMAIN?Variable not set} - build: - context: ./backend - dockerfile: celeryworker.dockerfile - args: - INSTALL_DEV: ${INSTALL_DEV-true} - INSTALL_JUPYTER: ${INSTALL_JUPYTER-true} + compute_backend: + command: /start-reload.sh + labels: + - traefik.enable=true + - traefik.constraint-label-stack=${TRAEFIK_TAG?Variable not set} + - traefik.http.routers.${STACK_NAME?Variable not set}-computebackend-http.rule=PathPrefix(`/api/c`) || PathPrefix(`/docs`) || PathPrefix(`/redoc`) + - traefik.http.services.${STACK_NAME?Variable not set}-computebackend.loadbalancer.server.port=80 + + + # celeryworker: + # volumes: + # - ./backend/app:/app + # environment: + # - RUN=celery worker -A app.worker -l info -Q main-queue -c 1 + # - JUPYTER=jupyter lab --ip=0.0.0.0 --allow-root --NotebookApp.custom_display_url=http://127.0.0.1:8888 + # - SERVER_HOST=http://${DOMAIN?Variable not set} + # build: + # context: ./backend + # dockerfile: celeryworker.dockerfile + # args: + # INSTALL_DEV: ${INSTALL_DEV-true} + # INSTALL_JUPYTER: ${INSTALL_JUPYTER-true} + frontend: build: diff --git a/docker-compose.yml b/docker-compose.yml index dab5e531..e04d34fa 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,5 @@ -version: "3.3" +version: "3.6" services: - proxy: image: traefik:v2.2 networks: @@ -81,68 +80,59 @@ services: constraints: - node.labels.${STACK_NAME?Variable not set}.app-db-data == true - pgadmin: - image: dpage/pgadmin4 - networks: - - ${TRAEFIK_PUBLIC_NETWORK?Variable not set} - - default - depends_on: - - db - env_file: - - .env - deploy: - labels: - - traefik.enable=true - - traefik.docker.network=${TRAEFIK_PUBLIC_NETWORK?Variable not set} - - traefik.constraint-label=${TRAEFIK_PUBLIC_TAG?Variable not set} - - traefik.http.routers.${STACK_NAME?Variable not set}-pgadmin-http.rule=Host(`pgadmin.${DOMAIN?Variable not set}`) - - traefik.http.routers.${STACK_NAME?Variable not set}-pgadmin-http.entrypoints=http - - traefik.http.routers.${STACK_NAME?Variable not set}-pgadmin-http.middlewares=${STACK_NAME?Variable not set}-https-redirect - - traefik.http.routers.${STACK_NAME?Variable not set}-pgadmin-https.rule=Host(`pgadmin.${DOMAIN?Variable not set}`) - - traefik.http.routers.${STACK_NAME?Variable not set}-pgadmin-https.entrypoints=https - - traefik.http.routers.${STACK_NAME?Variable not set}-pgadmin-https.tls=true - - traefik.http.routers.${STACK_NAME?Variable not set}-pgadmin-https.tls.certresolver=le - - traefik.http.services.${STACK_NAME?Variable not set}-pgadmin.loadbalancer.server.port=5050 + memgraph-platform: + image: "memgraph/memgraph-platform" + ports: + - "7687:7687" + - "3000:3000" + - "7444:7444" + tty: true + # deploy: + # labels: + # - traefik.enable=true + volumes: + - mg_lib:/var/lib/memgraph + - mg_log:/var/log/memgraph + - mg_etc:/etc/memgraph + environment: + - MEMGRAPH="--log-level=TRACE" + entrypoint: ["/usr/bin/supervisord"] + + # memgraph: + # image: memgraph/memgraph + # networks: + # - ${TRAEFIK_PUBLIC_NETWORK?Variable not set} + # - default + # deploy: + # placement: + # constraints: + # - node.role == manager + # labels: + # # Enable Traefik for this service, to make it available in the public network + # - traefik.enable=true + # # Use the traefik-public network (declared below) + # - traefik.docker.network=${TRAEFIK_PUBLIC_NETWORK?Variable not set} + # # Use the custom label "traefik.constraint-label=traefik-public" + # # This public Traefik will only use services with this label + # - traefik.constraint-label=${TRAEFIK_PUBLIC_TAG?Variable not set} + # # traefik-http set up only to use the middleware to redirect to https + # - traefik.http.middlewares.${STACK_NAME?Variable not set}-https-redirect.redirectscheme.scheme=https + # - traefik.http.middlewares.${STACK_NAME?Variable not set}-https-redirect.redirectscheme.permanent=true + # # Handle host with and without "www" to redirect to only one of them + # # Uses environment variable DOMAIN + # # To disable www redirection remove the Host() you want to discard, here and + # # below for HTTPS + # - traefik.http.routers.${STACK_NAME?Variable not set}-memgraph.rule=Host(`memgraph.${DOMAIN?Variable not set}`) + # - traefik.http.routers.${STACK_NAME?Variable not set}-memgraph.entrypoints=https + # - traefik.http.routers.${STACK_NAME?Variable not set}-memgraph.tls=true + # # Use the "le" (Let's Encrypt) resolver created below + # - traefik.http.routers.${STACK_NAME?Variable not set}-memgraph.tls.certresolver=le + # # Define the port inside of the Docker service to use + # - traefik.http.services.${STACK_NAME?Variable not set}-memgraph.loadbalancer.server.port=7687 - queue: - image: rabbitmq:3 - # Using the below image instead is required to enable the "Broker" tab in the flower UI: - # image: rabbitmq:3-management - # - # You also have to change the flower command - - flower: - image: mher/flower - networks: - - ${TRAEFIK_PUBLIC_NETWORK?Variable not set} - - default - env_file: - - .env - environment: - - CELERY_BROKER_URL=amqp://guest@queue:5672// - # command: - # - "--broker=amqp://guest@queue:5672//" - # For the "Broker" tab to work in the flower UI, uncomment the following command argument, - # and change the queue service's image as well - # - "--broker_api=http://guest:guest@queue:15672/api//" - deploy: - labels: - - traefik.enable=true - - traefik.docker.network=${TRAEFIK_PUBLIC_NETWORK?Variable not set} - - traefik.constraint-label=${TRAEFIK_PUBLIC_TAG?Variable not set} - - traefik.http.routers.${STACK_NAME?Variable not set}-flower-http.rule=Host(`flower.${DOMAIN?Variable not set}`) - - traefik.http.routers.${STACK_NAME?Variable not set}-flower-http.entrypoints=http - - traefik.http.routers.${STACK_NAME?Variable not set}-flower-http.middlewares=${STACK_NAME?Variable not set}-https-redirect - - traefik.http.routers.${STACK_NAME?Variable not set}-flower-https.rule=Host(`flower.${DOMAIN?Variable not set}`) - - traefik.http.routers.${STACK_NAME?Variable not set}-flower-https.entrypoints=https - - traefik.http.routers.${STACK_NAME?Variable not set}-flower-https.tls=true - - traefik.http.routers.${STACK_NAME?Variable not set}-flower-https.tls.certresolver=le - - traefik.http.services.${STACK_NAME?Variable not set}-flower.loadbalancer.server.port=5555 - backend: image: '${DOCKER_IMAGE_BACKEND?Variable not set}:${TAG-latest}' - depends_on: - - db + restart: on-failure env_file: - .env environment: @@ -159,26 +149,50 @@ services: labels: - traefik.enable=true - traefik.constraint-label-stack=${TRAEFIK_TAG?Variable not set} - - traefik.http.routers.${STACK_NAME?Variable not set}-backend-http.rule=PathPrefix(`/api`) || PathPrefix(`/docs`) || PathPrefix(`/redoc`) + - traefik.http.routers.${STACK_NAME?Variable not set}-backend-http.rule=PathPrefix(`/api/v1`) || PathPrefix(`/docs`) || PathPrefix(`/redoc`) - traefik.http.services.${STACK_NAME?Variable not set}-backend.loadbalancer.server.port=80 - - celeryworker: - image: '${DOCKER_IMAGE_CELERYWORKER?Variable not set}:${TAG-latest}' - depends_on: - - db - - queue + + compute_backend: + image: '${DOCKER_IMAGE_COMPUTE_BACKEND?Variable not set}:${TAG-latest}' + # depends_on: + # - db + restart: on-failure env_file: - .env environment: - SERVER_NAME=${DOMAIN?Variable not set} - SERVER_HOST=https://${DOMAIN?Variable not set} # Allow explicit env var override for tests - - SMTP_HOST=${SMTP_HOST?Variable not set} + - SMTP_HOST=${SMTP_HOST} build: - context: ./backend - dockerfile: celeryworker.dockerfile + context: ./compute_backend + dockerfile: Dockerfile args: INSTALL_DEV: ${INSTALL_DEV-false} + deploy: + labels: + - traefik.enable=true + - traefik.constraint-label-stack=${TRAEFIK_TAG?Variable not set} + - traefik.http.routers.${STACK_NAME?Variable not set}-computebackend-http.rule=PathPrefix(`/api/c`) || PathPrefix(`/docs`) || PathPrefix(`/redoc`) + - traefik.http.services.${STACK_NAME?Variable not set}-computebackend.loadbalancer.server.port=80 + + # celeryworker: + # image: '${DOCKER_IMAGE_CELERYWORKER?Variable not set}:${TAG-latest}' + # depends_on: + # - db + # - queue + # env_file: + # - .env + # environment: + # - SERVER_NAME=${DOMAIN?Variable not set} + # - SERVER_HOST=https://${DOMAIN?Variable not set} + # # Allow explicit env var override for tests + # - SMTP_HOST=${SMTP_HOST?Variable not set} + # build: + # context: ./backend + # dockerfile: celeryworker.dockerfile + # args: + # INSTALL_DEV: ${INSTALL_DEV-false} frontend: image: '${DOCKER_IMAGE_FRONTEND?Variable not set}:${TAG-latest}' @@ -194,6 +208,9 @@ services: - traefik.http.services.${STACK_NAME?Variable not set}-frontend.loadbalancer.server.port=80 volumes: + mg_lib: + mg_log: + mg_etc: app-db-data: networks: diff --git a/frontend/.eslintignore b/frontend/.eslintignore new file mode 100644 index 00000000..14f4932b --- /dev/null +++ b/frontend/.eslintignore @@ -0,0 +1,2 @@ +*.js +*.cjs \ No newline at end of file diff --git a/frontend/.eslintrc.cjs b/frontend/.eslintrc.cjs new file mode 100644 index 00000000..fe9d7db3 --- /dev/null +++ b/frontend/.eslintrc.cjs @@ -0,0 +1,20 @@ +module.exports = { + extends: [ + 'plugin:@typescript-eslint/recommended', + 'plugin:react/recommended', + 'prettier', + 'plugin:@typescript-eslint/recommended-requiring-type-checking' + ], + parser: '@typescript-eslint/parser', + parserOptions: { + tsconfigRootDir: __dirname, + project: ['./tsconfig.json'] + }, + plugins: ['@typescript-eslint', 'react', '@blueprintjs'], + root: true, + rules: { + 'react/prop-types': 'off', + 'react/react-in-jsx-scope': 'off', + '@typescript-eslint/no-unsafe-member-access': 'off' + }, +}; diff --git a/frontend/.gitignore b/frontend/.gitignore index 185e6631..a547bf36 100644 --- a/frontend/.gitignore +++ b/frontend/.gitignore @@ -1,21 +1,24 @@ -.DS_Store -node_modules -/dist - -# local env files -.env.local -.env.*.local - -# Log files +# Logs +logs +*.log npm-debug.log* yarn-debug.log* yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local # Editor directories and files +.vscode/* +!.vscode/extensions.json .idea -.vscode +.DS_Store *.suo *.ntvs* *.njsproj *.sln -*.sw* +*.sw? diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 68494f67..5039f1c9 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,33 +1,25 @@ # Stage 0, "build-stage", based on Node.js, to build and compile the frontend -FROM node:16.17 as build-stage - -COPY ./nginx.conf ./nginx.conf -COPY ./nginx-backend-not-found.conf ./backend-not-found.conf - -RUN apt-get update \ - && apt-get update \ - && update-ca-certificates +FROM node:19.7.0 as build-stage WORKDIR /app COPY package*.json /app/ +COPY ./nginx.conf ./nginx.conf RUN npm install COPY ./ /app/ -ARG FRONTEND_ENV=production -ENV VUE_APP_ENV=${FRONTEND_ENV} - # Comment out the next line to disable tests # RUN npm run test:unit - +RUN npm i -g vite RUN npm run build - +# ARG FRONTEND_ENV=production # Stage 1, based on Nginx, to have only the compiled app, ready for production with Nginx FROM nginx:1.15 +COPY ./nginx-backend-not-found.conf ./backend-not-found.conf COPY --from=build-stage /app/dist/ /usr/share/nginx/html -COPY --from=build-stage /nginx.conf /etc/nginx/conf.d/default.conf +COPY --from=build-stage /app/nginx.conf /etc/nginx/conf.d/default.conf COPY ./nginx-backend-not-found.conf /etc/nginx/extra-conf.d/backend-not-found.conf diff --git a/frontend/babel.config.js b/frontend/babel.config.js deleted file mode 100644 index 5902d7d1..00000000 --- a/frontend/babel.config.js +++ /dev/null @@ -1,10 +0,0 @@ -module.exports = { - "presets": [ - [ - "@vue/cli-plugin-babel/preset", - { - "useBuiltIns": "entry" - } - ] - ] -} \ No newline at end of file diff --git a/frontend/index.html b/frontend/index.html new file mode 100644 index 00000000..57e3ffe1 --- /dev/null +++ b/frontend/index.html @@ -0,0 +1,17 @@ + + + + + + + Vite + React + TS + + + +
+ + + diff --git a/frontend/openapi.json b/frontend/openapi.json new file mode 100644 index 00000000..aa10979f --- /dev/null +++ b/frontend/openapi.json @@ -0,0 +1,1172 @@ +{ + "openapi": "3.0.2", + "info": { + "title": "collide", + "version": "0.1.0" + }, + "paths": { + "/api/v1/login/access-token": { + "post": { + "tags": [ + "login" + ], + "summary": "Login Access Token", + "description": "OAuth2 compatible token login, get an access token for future requests", + "operationId": "access_token_api_v1_login_access_token_post", + "requestBody": { + "content": { + "application/x-www-form-urlencoded": { + "schema": { + "$ref": "#/components/schemas/Body_login_access_token_api_v1_login_access_token_post" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Token" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + } + } + }, + "/api/v1/login/test-token": { + "post": { + "tags": [ + "login" + ], + "summary": "Test Token", + "description": "Test access token", + "operationId": "oken_api_v1_login_test_token_post", + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/User" + } + } + } + } + }, + "security": [ + { + "OAuth2PasswordBearer": [] + } + ] + } + }, + "/api/v1/password-recovery/{email}": { + "post": { + "tags": [ + "login" + ], + "summary": "Recover Password", + "description": "Password Recovery", + "operationId": "r_password_api_v1_password_recovery__email__post", + "parameters": [ + { + "required": true, + "schema": { + "title": "Email", + "type": "string" + }, + "name": "email", + "in": "path" + } + ], + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Msg" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + } + } + }, + "/api/v1/reset-password/": { + "post": { + "tags": [ + "login" + ], + "summary": "Reset Password", + "description": "Reset password", + "operationId": "password_api_v1_reset_password__post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Body_reset_password_api_v1_reset_password__post" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Msg" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + } + } + }, + "/api/v1/users/": { + "get": { + "tags": [ + "users" + ], + "summary": "Read Users", + "description": "Retrieve users.", + "operationId": "sers_api_v1_users__get", + "parameters": [ + { + "required": false, + "schema": { + "title": "Skip", + "type": "integer", + "default": 0 + }, + "name": "skip", + "in": "query" + }, + { + "required": false, + "schema": { + "title": "Limit", + "type": "integer", + "default": 100 + }, + "name": "limit", + "in": "query" + } + ], + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "title": "Response Read Users Api V1 Users Get", + "type": "array", + "items": { + "$ref": "#/components/schemas/User" + } + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + }, + "security": [ + { + "OAuth2PasswordBearer": [] + } + ] + }, + "post": { + "tags": [ + "users" + ], + "summary": "Create User", + "description": "Create new user.", + "operationId": "_user_api_v1_users__post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/UserCreate" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/User" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + }, + "security": [ + { + "OAuth2PasswordBearer": [] + } + ] + } + }, + "/api/v1/users/me": { + "get": { + "tags": [ + "users" + ], + "summary": "Read User Me", + "description": "Get current user.", + "operationId": "ser_me_api_v1_users_me_get", + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/User" + } + } + } + } + }, + "security": [ + { + "OAuth2PasswordBearer": [] + } + ] + }, + "put": { + "tags": [ + "users" + ], + "summary": "Update User Me", + "description": "Update own user.", + "operationId": "_user_me_api_v1_users_me_put", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Body_update_user_me_api_v1_users_me_put" + } + } + } + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/User" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + }, + "security": [ + { + "OAuth2PasswordBearer": [] + } + ] + } + }, + "/api/v1/users/open": { + "post": { + "tags": [ + "users" + ], + "summary": "Create User Open", + "description": "Create new user without the need to be logged in.", + "operationId": "_user_open_api_v1_users_open_post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Body_create_user_open_api_v1_users_open_post" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/User" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + } + } + }, + "/api/v1/users/{user_id}": { + "get": { + "tags": [ + "users" + ], + "summary": "Read User By Id", + "description": "Get a specific user by id.", + "operationId": "ser_by_id_api_v1_users__user_id__get", + "parameters": [ + { + "required": true, + "schema": { + "title": "User Id", + "type": "integer" + }, + "name": "user_id", + "in": "path" + } + ], + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/User" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + }, + "security": [ + { + "OAuth2PasswordBearer": [] + } + ] + }, + "put": { + "tags": [ + "users" + ], + "summary": "Update User", + "description": "Update a user.", + "operationId": "_user_api_v1_users__user_id__put", + "parameters": [ + { + "required": true, + "schema": { + "title": "User Id", + "type": "integer" + }, + "name": "user_id", + "in": "path" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/UserUpdate" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/User" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + }, + "security": [ + { + "OAuth2PasswordBearer": [] + } + ] + } + }, + "/api/v1/utils/test-celery/": { + "post": { + "tags": [ + "utils" + ], + "summary": "Test Celery", + "description": "Test Celery worker.", + "operationId": "elery_api_v1_utils_test_celery__post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Msg" + } + } + }, + "required": true + }, + "responses": { + "201": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Msg" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + }, + "security": [ + { + "OAuth2PasswordBearer": [] + } + ] + } + }, + "/api/v1/utils/test-email/": { + "post": { + "tags": [ + "utils" + ], + "summary": "Test Email", + "description": "Test emails.", + "operationId": "mail_api_v1_utils_test_email__post", + "parameters": [ + { + "required": true, + "schema": { + "title": "Email To", + "type": "string", + "format": "email" + }, + "name": "email_to", + "in": "query" + } + ], + "responses": { + "201": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Msg" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + }, + "security": [ + { + "OAuth2PasswordBearer": [] + } + ] + } + }, + "/api/v1/items/": { + "get": { + "tags": [ + "items" + ], + "summary": "Read Items", + "description": "Retrieve items.", + "operationId": "tems_api_v1_items__get", + "parameters": [ + { + "required": false, + "schema": { + "title": "Skip", + "type": "integer", + "default": 0 + }, + "name": "skip", + "in": "query" + }, + { + "required": false, + "schema": { + "title": "Limit", + "type": "integer", + "default": 100 + }, + "name": "limit", + "in": "query" + } + ], + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "title": "Response Read Items Api V1 Items Get", + "type": "array", + "items": { + "$ref": "#/components/schemas/Item" + } + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + }, + "security": [ + { + "OAuth2PasswordBearer": [] + } + ] + }, + "post": { + "tags": [ + "items" + ], + "summary": "Create Item", + "description": "Create new item.", + "operationId": "_item_api_v1_items__post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ItemCreate" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Item" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + }, + "security": [ + { + "OAuth2PasswordBearer": [] + } + ] + } + }, + "/api/v1/items/{id}": { + "get": { + "tags": [ + "items" + ], + "summary": "Read Item", + "description": "Get item by ID.", + "operationId": "tem_api_v1_items__id__get", + "parameters": [ + { + "required": true, + "schema": { + "title": "Id", + "type": "integer" + }, + "name": "id", + "in": "path" + } + ], + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Item" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + }, + "security": [ + { + "OAuth2PasswordBearer": [] + } + ] + }, + "put": { + "tags": [ + "items" + ], + "summary": "Update Item", + "description": "Update an item.", + "operationId": "_item_api_v1_items__id__put", + "parameters": [ + { + "required": true, + "schema": { + "title": "Id", + "type": "integer" + }, + "name": "id", + "in": "path" + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ItemUpdate" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Item" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + }, + "security": [ + { + "OAuth2PasswordBearer": [] + } + ] + }, + "delete": { + "tags": [ + "items" + ], + "summary": "Delete Item", + "description": "Delete an item.", + "operationId": "_item_api_v1_items__id__delete", + "parameters": [ + { + "required": true, + "schema": { + "title": "Id", + "type": "integer" + }, + "name": "id", + "in": "path" + } + ], + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Item" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + }, + "security": [ + { + "OAuth2PasswordBearer": [] + } + ] + } + } + }, + "components": { + "schemas": { + "Body_create_user_open_api_v1_users_open_post": { + "title": "Body_create_user_open_api_v1_users_open_post", + "required": [ + "password", + "email" + ], + "type": "object", + "properties": { + "password": { + "title": "Password", + "type": "string" + }, + "email": { + "title": "Email", + "type": "string", + "format": "email" + }, + "full_name": { + "title": "Full Name", + "type": "string" + } + } + }, + "Body_login_access_token_api_v1_login_access_token_post": { + "title": "Body_login_access_token_api_v1_login_access_token_post", + "required": [ + "username", + "password" + ], + "type": "object", + "properties": { + "grant_type": { + "title": "Grant Type", + "pattern": "password", + "type": "string" + }, + "username": { + "title": "Username", + "type": "string" + }, + "password": { + "title": "Password", + "type": "string" + }, + "scope": { + "title": "Scope", + "type": "string", + "default": "" + }, + "client_id": { + "title": "Client Id", + "type": "string" + }, + "client_secret": { + "title": "Client Secret", + "type": "string" + } + } + }, + "Body_reset_password_api_v1_reset_password__post": { + "title": "Body_reset_password_api_v1_reset_password__post", + "required": [ + "token", + "new_password" + ], + "type": "object", + "properties": { + "token": { + "title": "Token", + "type": "string" + }, + "new_password": { + "title": "New Password", + "type": "string" + } + } + }, + "Body_update_user_me_api_v1_users_me_put": { + "title": "Body_update_user_me_api_v1_users_me_put", + "type": "object", + "properties": { + "password": { + "title": "Password", + "type": "string" + }, + "full_name": { + "title": "Full Name", + "type": "string" + }, + "email": { + "title": "Email", + "type": "string", + "format": "email" + } + } + }, + "HTTPValidationError": { + "title": "HTTPValidationError", + "type": "object", + "properties": { + "detail": { + "title": "Detail", + "type": "array", + "items": { + "$ref": "#/components/schemas/ValidationError" + } + } + } + }, + "Item": { + "title": "Item", + "required": [ + "title", + "id", + "owner_id" + ], + "type": "object", + "properties": { + "title": { + "title": "Title", + "type": "string" + }, + "description": { + "title": "Description", + "type": "string" + }, + "id": { + "title": "Id", + "type": "integer" + }, + "owner_id": { + "title": "Owner Id", + "type": "integer" + } + } + }, + "ItemCreate": { + "title": "ItemCreate", + "required": [ + "title" + ], + "type": "object", + "properties": { + "title": { + "title": "Title", + "type": "string" + }, + "description": { + "title": "Description", + "type": "string" + } + } + }, + "ItemUpdate": { + "title": "ItemUpdate", + "type": "object", + "properties": { + "title": { + "title": "Title", + "type": "string" + }, + "description": { + "title": "Description", + "type": "string" + } + } + }, + "Msg": { + "title": "Msg", + "required": [ + "msg" + ], + "type": "object", + "properties": { + "msg": { + "title": "Msg", + "type": "string" + } + } + }, + "Token": { + "title": "Token", + "required": [ + "access_token", + "token_type" + ], + "type": "object", + "properties": { + "access_token": { + "title": "Access Token", + "type": "string" + }, + "token_type": { + "title": "Token Type", + "type": "string" + } + } + }, + "User": { + "title": "User", + "type": "object", + "properties": { + "email": { + "title": "Email", + "type": "string", + "format": "email" + }, + "is_active": { + "title": "Is Active", + "type": "boolean", + "default": true + }, + "is_superuser": { + "title": "Is Superuser", + "type": "boolean", + "default": false + }, + "full_name": { + "title": "Full Name", + "type": "string" + }, + "id": { + "title": "Id", + "type": "integer" + } + } + }, + "UserCreate": { + "title": "UserCreate", + "required": [ + "email", + "password" + ], + "type": "object", + "properties": { + "email": { + "title": "Email", + "type": "string", + "format": "email" + }, + "is_active": { + "title": "Is Active", + "type": "boolean", + "default": true + }, + "is_superuser": { + "title": "Is Superuser", + "type": "boolean", + "default": false + }, + "full_name": { + "title": "Full Name", + "type": "string" + }, + "password": { + "title": "Password", + "type": "string" + } + } + }, + "UserUpdate": { + "title": "UserUpdate", + "type": "object", + "properties": { + "email": { + "title": "Email", + "type": "string", + "format": "email" + }, + "is_active": { + "title": "Is Active", + "type": "boolean", + "default": true + }, + "is_superuser": { + "title": "Is Superuser", + "type": "boolean", + "default": false + }, + "full_name": { + "title": "Full Name", + "type": "string" + }, + "password": { + "title": "Password", + "type": "string" + } + } + }, + "ValidationError": { + "title": "ValidationError", + "required": [ + "loc", + "msg", + "type" + ], + "type": "object", + "properties": { + "loc": { + "title": "Location", + "type": "array", + "items": { + "type": "string" + } + }, + "msg": { + "title": "Message", + "type": "string" + }, + "type": { + "title": "Error Type", + "type": "string" + } + } + } + }, + "securitySchemes": { + "OAuth2PasswordBearer": { + "type": "oauth2", + "flows": { + "password": { + "scopes": {}, + "tokenUrl": "/api/v1/login/access-token" + } + } + } + } + } +} \ No newline at end of file diff --git a/frontend/package-lock.json b/frontend/package-lock.json new file mode 100644 index 00000000..710bbe4c --- /dev/null +++ b/frontend/package-lock.json @@ -0,0 +1,9458 @@ +{ + "name": "collide", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "collide", + "version": "0.0.0", + "dependencies": { + "@blueprintjs/core": "^4.12.0", + "@blueprintjs/popover2": "^1.10.1", + "@blueprintjs/select": "^4.8.11", + "@headlessui/react": "^1.7.7", + "@heroicons/react": "^2.0.13", + "@react-hook/window-size": "^3.1.1", + "@tailwindcss/forms": "^0.5.3", + "@tailwindcss/typography": "^0.5.9", + "@tanstack/react-query": "^4.22.0", + "@tanstack/react-query-devtools": "^4.22.0", + "axios": "^1.2.0", + "echarts": "^5.4.1", + "jwt-decode": "^3.1.2", + "normalize.css": "^8.0.1", + "ra-data-json-server": "^4.5.2", + "react": "^18.2.0", + "react-auth-kit": "^2.8.2", + "react-dom": "^18.2.0", + "react-force-graph": "^1.41.16", + "react-icons": "^4.7.1", + "react-router-dom": "^6.4.3", + "react-select": "^5.7.0", + "use-debounce": "^9.0.3" + }, + "devDependencies": { + "@blueprintjs/eslint-config": "^2.6.3", + "@blueprintjs/eslint-plugin": "^2.5.3", + "@types/react": "^18.0.25", + "@types/react-dom": "^18.0.9", + "@typescript-eslint/eslint-plugin": "^5.45.0", + "@typescript-eslint/parser": "^5.45.0", + "@vitejs/plugin-react": "^2.2.0", + "autoprefixer": "^10.4.13", + "babel-eslint": "^10.1.0", + "eslint": "^8.28.0", + "eslint-config-prettier": "^8.5.0", + "eslint-config-standard-with-typescript": "^23.0.0", + "eslint-plugin-react": "^7.31.11", + "node-sass-package-importer": "^5.3.2", + "openapi-typescript-codegen": "^0.23.0", + "postcss": "^8.4.20", + "prettier": "^2.8.0", + "prettier-plugin-tailwindcss": "^0.2.1", + "sass": "^1.56.1", + "tailwindcss": "^3.2.4", + "typescript": "^4.9.3" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@apidevtools/json-schema-ref-parser": { + "version": "9.0.9", + "resolved": "https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-9.0.9.tgz", + "integrity": "sha512-GBD2Le9w2+lVFoc4vswGI/TjkNIZSVp7+9xPf+X3uidBfWnAeUWmquteSyt0+VCrhNMWj/FTABISQrD3Z/YA+w==", + "dev": true, + "dependencies": { + "@jsdevtools/ono": "^7.1.3", + "@types/json-schema": "^7.0.6", + "call-me-maybe": "^1.0.1", + "js-yaml": "^4.1.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", + "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "dependencies": { + "@babel/highlight": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.20.10", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.10.tgz", + "integrity": "sha512-sEnuDPpOJR/fcafHMjpcpGN5M2jbUGUHwmuWKM/YdPzeEDJg8bgmbcWQFUfE32MQjti1koACvoPVsDe8Uq+idg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.7.tgz", + "integrity": "sha512-t1ZjCluspe5DW24bn2Rr1CDb2v9rn/hROtg9a2tmd0+QYf4bsloYfLQzjG4qHPNMhWtKdGC33R5AxGR2Af2cBw==", + "dependencies": { + "@ampproject/remapping": "^2.1.0", + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.20.7", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-module-transforms": "^7.20.7", + "@babel/helpers": "^7.20.7", + "@babel/parser": "^7.20.7", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.7", + "@babel/types": "^7.20.7", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "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/generator": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.7.tgz", + "integrity": "sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==", + "dependencies": { + "@babel/types": "^7.20.7", + "@jridgewell/gen-mapping": "^0.3.2", + "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.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", + "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz", + "integrity": "sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==", + "dependencies": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-validator-option": "^7.18.6", + "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", + "semver": "^6.3.0" + }, + "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-environment-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", + "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", + "dependencies": { + "@babel/template": "^7.18.10", + "@babel/types": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", + "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz", + "integrity": "sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-simple-access": "^7.20.2", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.19.1", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.10", + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", + "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", + "dependencies": { + "@babel/types": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.19.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", + "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", + "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.7.tgz", + "integrity": "sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==", + "dependencies": { + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.7", + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.7.tgz", + "integrity": "sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg==", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", + "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.20.7.tgz", + "integrity": "sha512-Tfq7qqD+tRj3EoDhY00nn2uP2hsRxgYGi5mLQ5TimKav0a9Lrpd4deE+fcLXU8zFYRjlKPHZhpCvfEA6qnBxqQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-jsx": "^7.18.6", + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz", + "integrity": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==", + "dev": true, + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.18.6.tgz", + "integrity": "sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.19.6.tgz", + "integrity": "sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.7.tgz", + "integrity": "sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==", + "dependencies": { + "regenerator-runtime": "^0.13.11" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", + "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.20.10", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.10.tgz", + "integrity": "sha512-oSf1juCgymrSez8NI4A2sr4+uB/mFd9MXplYGPEBnfAuWmmyeVcHa6xLPiaRBcXkcb/28bgxmQLTVwFKE1yfsg==", + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.20.7", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.7.tgz", + "integrity": "sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==", + "dependencies": { + "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-validator-identifier": "^7.19.1", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@blueprintjs/colors": { + "version": "4.1.10", + "resolved": "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.1.10.tgz", + "integrity": "sha512-p1rgfijpZi+r2xskyRi3uF8DRq08rb26u9Gymi0p4ZNZq/iLJQ1Fj1jfT8yh2yc6eCfs8GlH6iDNdU387wEK3w==" + }, + "node_modules/@blueprintjs/core": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@blueprintjs/core/-/core-4.13.0.tgz", + "integrity": "sha512-LGpSxYf94CFJirOzsPyai0JaJcS2csKEhpyfrLnMb8ZrSPjMNyNx/5KZTKoZ0f7/GO7hrcuzpMBOkxQxcrVExA==", + "dependencies": { + "@blueprintjs/colors": "^4.1.10", + "@blueprintjs/icons": "^4.11.0", + "@juggle/resize-observer": "^3.4.0", + "@types/dom4": "^2.0.2", + "classnames": "^2.3.1", + "dom4": "^2.1.5", + "normalize.css": "^8.0.1", + "popper.js": "^1.16.1", + "react-popper": "^1.3.11", + "react-transition-group": "^4.4.5", + "tslib": "~2.3.1" + }, + "bin": { + "upgrade-blueprint-2.0.0-rename": "scripts/upgrade-blueprint-2.0.0-rename.sh", + "upgrade-blueprint-3.0.0-rename": "scripts/upgrade-blueprint-3.0.0-rename.sh" + }, + "peerDependencies": { + "@types/react": "^16.14.32 || 17 || 18", + "react": "^16.8 || 17 || 18", + "react-dom": "^16.8 || 17 || 18" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@blueprintjs/core/node_modules/react-popper": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-1.3.11.tgz", + "integrity": "sha512-VSA/bS+pSndSF2fiasHK/PTEEAyOpX60+H5EPAjoArr8JGm+oihu4UbrqcEBpQibJxBVCpYyjAX7abJ+7DoYVg==", + "dependencies": { + "@babel/runtime": "^7.1.2", + "@hypnosphi/create-react-context": "^0.3.1", + "deep-equal": "^1.1.1", + "popper.js": "^1.14.4", + "prop-types": "^15.6.1", + "typed-styles": "^0.0.7", + "warning": "^4.0.2" + }, + "peerDependencies": { + "react": "0.14.x || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@blueprintjs/eslint-config": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@blueprintjs/eslint-config/-/eslint-config-2.7.0.tgz", + "integrity": "sha512-AFOJJk/UWVHX91DkZeuqMC9KObmMshWcQ3STQVn0Juz6nFx5q3P4QCJgsHyE+6Hn+4tipKjMaMHWHViUi3WxMQ==", + "dev": true, + "dependencies": { + "@blueprintjs/eslint-plugin": "^2.6.0", + "@blueprintjs/tslint-config": "^3.3.1", + "@typescript-eslint/eslint-plugin": "^5.38.1", + "@typescript-eslint/eslint-plugin-tslint": "^5.38.1", + "@typescript-eslint/parser": "^5.38.1", + "eslint": "^8.28.0", + "eslint-plugin-deprecation": "^1.3.2", + "eslint-plugin-header": "^3.1.1", + "eslint-plugin-import": "^2.26.0", + "eslint-plugin-jsdoc": "^39.3.6", + "eslint-plugin-react": "^7.31.10" + } + }, + "node_modules/@blueprintjs/eslint-plugin": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@blueprintjs/eslint-plugin/-/eslint-plugin-2.6.0.tgz", + "integrity": "sha512-OB9z8jMUUCQLBmvV3ARTv3Sf6JvJX96LFtItBlKgxsZBCtcOsSKhleCZ8Z74PeNOhE4NOz5vn1DW+nv2UzN/Nw==", + "dev": true, + "dependencies": { + "@typescript-eslint/utils": "^5.38.1", + "eslint": "^8.28.0" + } + }, + "node_modules/@blueprintjs/icons": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@blueprintjs/icons/-/icons-4.11.0.tgz", + "integrity": "sha512-RkWwJb75hVg/OXh5QqWbKQxeAUY0LNds3fj/gCkneIyKKURNRk4yxIcdoUNBBYvINHp2BR53SRug8QA5bdFGiA==", + "dependencies": { + "change-case": "^4.1.2", + "classnames": "^2.3.1", + "tslib": "~2.3.1" + } + }, + "node_modules/@blueprintjs/popover2": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/@blueprintjs/popover2/-/popover2-1.10.2.tgz", + "integrity": "sha512-+7qBKpiN10tfRE1Rz2RKTzNoweALQ4nlAWTmXjK+gEieEN7esXrhQ4kiK6qY3bRBb4Yi7cJ4MQ3PpJ1E4s/2RQ==", + "dependencies": { + "@blueprintjs/core": "^4.13.0", + "@juggle/resize-observer": "^3.4.0", + "@popperjs/core": "^2.11.6", + "classnames": "^2.3.1", + "dom4": "^2.1.5", + "react-popper": "^2.3.0", + "tslib": "~2.3.1" + }, + "peerDependencies": { + "@types/react": "^16.14.32 || 17 || 18", + "react": "^16.8 || 17 || 18", + "react-dom": "^16.8 || 17 || 18" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@blueprintjs/select": { + "version": "4.8.12", + "resolved": "https://registry.npmjs.org/@blueprintjs/select/-/select-4.8.12.tgz", + "integrity": "sha512-0ahf8zpvyQJp1a6PChpy8rl8RF24/YYbJSnDdMxesERER0iOprQNt8+/BQDWUz+PYpeWz+6lIgHe8TJBvxHQqw==", + "dependencies": { + "@blueprintjs/core": "^4.13.0", + "@blueprintjs/popover2": "^1.10.2", + "classnames": "^2.3.1", + "tslib": "~2.3.1" + }, + "peerDependencies": { + "@types/react": "^16.14.32 || 17 || 18", + "react": "^16.8 || 17 || 18", + "react-dom": "^16.8 || 17 || 18" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@blueprintjs/tslint-config": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/@blueprintjs/tslint-config/-/tslint-config-3.3.1.tgz", + "integrity": "sha512-28T2GNNzWb9GJrGjGMzo+ZrOJ7maoKY8s+opyQR30leEDQRcupYSP3kDayUd+da27lGhsjhfh02AtUfqAEsupw==", + "dev": true, + "dependencies": { + "tslib": "~2.3.1", + "tslint-react": "^5.0.0" + }, + "peerDependencies": { + "tslint": "^6.0.0" + } + }, + "node_modules/@emotion/babel-plugin": { + "version": "11.10.5", + "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.10.5.tgz", + "integrity": "sha512-xE7/hyLHJac7D2Ve9dKroBBZqBT7WuPQmWcq7HSGb84sUuP4mlOWoB8dvVfD9yk5DHkU1m6RW7xSoDtnQHNQeA==", + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/plugin-syntax-jsx": "^7.17.12", + "@babel/runtime": "^7.18.3", + "@emotion/hash": "^0.9.0", + "@emotion/memoize": "^0.8.0", + "@emotion/serialize": "^1.1.1", + "babel-plugin-macros": "^3.1.0", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^4.0.0", + "find-root": "^1.1.0", + "source-map": "^0.5.7", + "stylis": "4.1.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@emotion/babel-plugin/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@emotion/babel-plugin/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@emotion/cache": { + "version": "11.10.5", + "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.10.5.tgz", + "integrity": "sha512-dGYHWyzTdmK+f2+EnIGBpkz1lKc4Zbj2KHd4cX3Wi8/OWr5pKslNjc3yABKH4adRGCvSX4VDC0i04mrrq0aiRA==", + "dependencies": { + "@emotion/memoize": "^0.8.0", + "@emotion/sheet": "^1.2.1", + "@emotion/utils": "^1.2.0", + "@emotion/weak-memoize": "^0.3.0", + "stylis": "4.1.3" + } + }, + "node_modules/@emotion/hash": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.0.tgz", + "integrity": "sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ==" + }, + "node_modules/@emotion/memoize": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.0.tgz", + "integrity": "sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==" + }, + "node_modules/@emotion/react": { + "version": "11.10.5", + "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.10.5.tgz", + "integrity": "sha512-TZs6235tCJ/7iF6/rvTaOH4oxQg2gMAcdHemjwLKIjKz4rRuYe1HJ2TQJKnAcRAfOUDdU8XoDadCe1rl72iv8A==", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.10.5", + "@emotion/cache": "^11.10.5", + "@emotion/serialize": "^1.1.1", + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", + "@emotion/utils": "^1.2.0", + "@emotion/weak-memoize": "^0.3.0", + "hoist-non-react-statics": "^3.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "@types/react": { + "optional": true + } + } + }, + "node_modules/@emotion/serialize": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.1.tgz", + "integrity": "sha512-Zl/0LFggN7+L1liljxXdsVSVlg6E/Z/olVWpfxUTxOAmi8NU7YoeWeLfi1RmnB2TATHoaWwIBRoL+FvAJiTUQA==", + "dependencies": { + "@emotion/hash": "^0.9.0", + "@emotion/memoize": "^0.8.0", + "@emotion/unitless": "^0.8.0", + "@emotion/utils": "^1.2.0", + "csstype": "^3.0.2" + } + }, + "node_modules/@emotion/sheet": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.1.tgz", + "integrity": "sha512-zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA==" + }, + "node_modules/@emotion/unitless": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.0.tgz", + "integrity": "sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==" + }, + "node_modules/@emotion/use-insertion-effect-with-fallbacks": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.0.tgz", + "integrity": "sha512-1eEgUGmkaljiBnRMTdksDV1W4kUnmwgp7X9G8B++9GYwl1lUdqSndSriIrTJ0N7LQaoauY9JJ2yhiOYK5+NI4A==", + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@emotion/utils": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.0.tgz", + "integrity": "sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw==" + }, + "node_modules/@emotion/weak-memoize": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.0.tgz", + "integrity": "sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg==" + }, + "node_modules/@es-joy/jsdoccomment": { + "version": "0.36.1", + "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.36.1.tgz", + "integrity": "sha512-922xqFsTpHs6D0BUiG4toiyPOMc8/jafnWKxz1KWgS4XzKPy2qXf1Pe6UFuNSCQqt6tOuhAWXBNuuyUhJmw9Vg==", + "dev": true, + "dependencies": { + "comment-parser": "1.3.1", + "esquery": "^1.4.0", + "jsdoc-type-pratt-parser": "~3.1.0" + }, + "engines": { + "node": "^14 || ^16 || ^17 || ^18 || ^19" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.15.18.tgz", + "integrity": "sha512-5GT+kcs2WVGjVs7+boataCkO5Fg0y4kCjzkB5bAip7H4jfnOS3dA6KPiww9W1OEKTKeAcUVhdZGvgI65OXmUnw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.15.18.tgz", + "integrity": "sha512-L4jVKS82XVhw2nvzLg/19ClLWg0y27ulRwuP7lcyL6AbUWB5aPglXY3M21mauDQMDfRLs8cQmeT03r/+X3cZYQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.0.tgz", + "integrity": "sha512-7yfvXy6MWLgWSFsLhz5yH3iQ52St8cdUY6FoGieKkRDVxuxmrNuUetIuu6cmjNWwniUHiWXjxCr5tTXDrbYS5A==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.4.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.19.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz", + "integrity": "sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@floating-ui/core": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.1.0.tgz", + "integrity": "sha512-zbsLwtnHo84w1Kc8rScAo5GMk1GdecSlrflIbfnEBJwvTSj1SL6kkOYV+nHraMCPEy+RNZZUaZyL8JosDGCtGQ==" + }, + "node_modules/@floating-ui/dom": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.1.0.tgz", + "integrity": "sha512-TSogMPVxbRe77QCj1dt8NmRiJasPvuc+eT5jnJ6YpLqgOD2zXc5UA3S1qwybN+GVCDNdKfpKy1oj8RpzLJvh6A==", + "dependencies": { + "@floating-ui/core": "^1.0.5" + } + }, + "node_modules/@headlessui/react": { + "version": "1.7.7", + "resolved": "https://registry.npmjs.org/@headlessui/react/-/react-1.7.7.tgz", + "integrity": "sha512-BqDOd/tB9u2tA0T3Z0fn18ktw+KbVwMnkxxsGPIH2hzssrQhKB5n/6StZOyvLYP/FsYtvuXfi9I0YowKPv2c1w==", + "dependencies": { + "client-only": "^0.0.1" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "react": "^16 || ^17 || ^18", + "react-dom": "^16 || ^17 || ^18" + } + }, + "node_modules/@heroicons/react": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@heroicons/react/-/react-2.0.13.tgz", + "integrity": "sha512-iSN5XwmagrnirWlYEWNPdCDj9aRYVD/lnK3JlsC9/+fqGF80k8C7rl+1HCvBX0dBoagKqOFBs6fMhJJ1hOg1EQ==", + "peerDependencies": { + "react": ">= 16" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.8", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", + "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "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==", + "dev": true, + "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==", + "dev": true + }, + "node_modules/@hypnosphi/create-react-context": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@hypnosphi/create-react-context/-/create-react-context-0.3.1.tgz", + "integrity": "sha512-V1klUed202XahrWJLLOT3EXNeCpFHCcJntdFGI15ntCwau+jfT386w7OFTMaCqOgXUH1fa0w/I1oZs+i/Rfr0A==", + "dependencies": { + "gud": "^1.0.0", + "warning": "^4.0.3" + }, + "peerDependencies": { + "prop-types": "^15.0.0", + "react": ">=0.14.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", + "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "dependencies": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "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" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "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.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.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "node_modules/@jsdevtools/ono": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/@jsdevtools/ono/-/ono-7.1.3.tgz", + "integrity": "sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==", + "dev": true + }, + "node_modules/@juggle/resize-observer": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/@juggle/resize-observer/-/resize-observer-3.4.0.tgz", + "integrity": "sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==" + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@popperjs/core": { + "version": "2.11.6", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz", + "integrity": "sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@react-hook/debounce": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@react-hook/debounce/-/debounce-3.0.0.tgz", + "integrity": "sha512-ir/kPrSfAzY12Gre0sOHkZ2rkEmM4fS5M5zFxCi4BnCeXh2nvx9Ujd+U4IGpKCuPA+EQD0pg1eK2NGLvfWejag==", + "dependencies": { + "@react-hook/latest": "^1.0.2" + }, + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/@react-hook/event": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@react-hook/event/-/event-1.2.6.tgz", + "integrity": "sha512-JUL5IluaOdn5w5Afpe/puPa1rj8X6udMlQ9dt4hvMuKmTrBS1Ya6sb4sVgvfe2eU4yDuOfAhik8xhbcCekbg9Q==", + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/@react-hook/latest": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@react-hook/latest/-/latest-1.0.3.tgz", + "integrity": "sha512-dy6duzl+JnAZcDbNTfmaP3xHiKtbXYOaz3G51MGVljh548Y8MWzTr+PHLOfvpypEVW9zwvl+VyKjbWKEVbV1Rg==", + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/@react-hook/throttle": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@react-hook/throttle/-/throttle-2.2.0.tgz", + "integrity": "sha512-LJ5eg+yMV8lXtqK3lR+OtOZ2WH/EfWvuiEEu0M3bhR7dZRfTyEJKxH1oK9uyBxiXPtWXiQggWbZirMCXam51tg==", + "dependencies": { + "@react-hook/latest": "^1.0.2" + }, + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/@react-hook/window-size": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@react-hook/window-size/-/window-size-3.1.1.tgz", + "integrity": "sha512-yWnVS5LKnOUIrEsI44oz3bIIUYqflamPL27n+k/PC//PsX/YeWBky09oPeAoc9As6jSH16Wgo8plI+ECZaHk3g==", + "dependencies": { + "@react-hook/debounce": "^3.0.0", + "@react-hook/event": "^1.2.1", + "@react-hook/throttle": "^2.2.0" + }, + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/@remix-run/router": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.2.1.tgz", + "integrity": "sha512-XiY0IsyHR+DXYS5vBxpoBe/8veTeoRpMHP+vDosLZxL5bnpetzI0igkxkLZS235ldLzyfkxF+2divEwWHP3vMQ==", + "engines": { + "node": ">=14" + } + }, + "node_modules/@tailwindcss/forms": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.3.tgz", + "integrity": "sha512-y5mb86JUoiUgBjY/o6FJSFZSEttfb3Q5gllE4xoKjAAD+vBrnIhE4dViwUuow3va8mpH4s9jyUbUbrRGoRdc2Q==", + "dependencies": { + "mini-svg-data-uri": "^1.2.3" + }, + "peerDependencies": { + "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1" + } + }, + "node_modules/@tailwindcss/typography": { + "version": "0.5.9", + "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.9.tgz", + "integrity": "sha512-t8Sg3DyynFysV9f4JDOVISGsjazNb48AeIYQwcL+Bsq5uf4RYL75C1giZ43KISjeDGBaTN3Kxh7Xj/vRSMJUUg==", + "dependencies": { + "lodash.castarray": "^4.4.0", + "lodash.isplainobject": "^4.0.6", + "lodash.merge": "^4.6.2", + "postcss-selector-parser": "6.0.10" + }, + "peerDependencies": { + "tailwindcss": ">=3.0.0 || insiders" + } + }, + "node_modules/@tailwindcss/typography/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==", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@tanstack/match-sorter-utils": { + "version": "8.7.6", + "resolved": "https://registry.npmjs.org/@tanstack/match-sorter-utils/-/match-sorter-utils-8.7.6.tgz", + "integrity": "sha512-2AMpRiA6QivHOUiBpQAVxjiHAA68Ei23ZUMNaRJrN6omWiSFLoYrxGcT6BXtuzp0Jw4h6HZCmGGIM/gbwebO2A==", + "dependencies": { + "remove-accents": "0.4.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/kentcdodds" + } + }, + "node_modules/@tanstack/match-sorter-utils/node_modules/remove-accents": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/remove-accents/-/remove-accents-0.4.2.tgz", + "integrity": "sha512-7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA==" + }, + "node_modules/@tanstack/query-core": { + "version": "4.22.0", + "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-4.22.0.tgz", + "integrity": "sha512-OeLyBKBQoT265f5G9biReijeP8mBxNFwY7ZUu1dKL+YzqpG5q5z7J/N1eT8aWyKuhyDTiUHuKm5l+oIVzbtrjw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + } + }, + "node_modules/@tanstack/react-query": { + "version": "4.22.0", + "resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-4.22.0.tgz", + "integrity": "sha512-P9o+HjG42uB/xHR6dMsJaPhtZydSe4v0xdG5G/cEj1oHZAXelMlm67/rYJNQGKgBamKElKogj+HYGF+NY2yHYg==", + "dependencies": { + "@tanstack/query-core": "4.22.0", + "use-sync-external-store": "^1.2.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-native": "*" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } + } + }, + "node_modules/@tanstack/react-query-devtools": { + "version": "4.22.0", + "resolved": "https://registry.npmjs.org/@tanstack/react-query-devtools/-/react-query-devtools-4.22.0.tgz", + "integrity": "sha512-YeYFBnfqvb+ZlA0IiJqiHNNSzepNhI1p2o9i8NlhQli9+Zrn230M47OBaBUs8qr3DD1dC2zGB1Dis50Ktz8gAA==", + "dependencies": { + "@tanstack/match-sorter-utils": "^8.7.0", + "superjson": "^1.10.0", + "use-sync-external-store": "^1.2.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + }, + "peerDependencies": { + "@tanstack/react-query": "4.22.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@tweenjs/tween.js": { + "version": "18.6.4", + "resolved": "https://registry.npmjs.org/@tweenjs/tween.js/-/tween.js-18.6.4.tgz", + "integrity": "sha512-lB9lMjuqjtuJrx7/kOkqQBtllspPIN+96OvTCeJ2j5FEzinoAXTdAMFnDAQT1KVPRlnYfBrqxtqP66vDM40xxQ==" + }, + "node_modules/@types/dom4": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@types/dom4/-/dom4-2.0.2.tgz", + "integrity": "sha512-Rt4IC1T7xkCWa0OG1oSsPa0iqnxlDeQqKXZAHrQGLb7wFGncWm85MaxKUjAGejOrUynOgWlFi4c6S6IyJwoK4g==" + }, + "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==", + "dev": true + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true + }, + "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==" + }, + "node_modules/@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" + }, + "node_modules/@types/react": { + "version": "18.0.26", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.26.tgz", + "integrity": "sha512-hCR3PJQsAIXyxhTNSiDFY//LhnMZWpNNr5etoCqx/iUfGc5gXWtQR2Phl908jVR6uPXacojQWTg4qRpkxTuGug==", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.0.10", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.10.tgz", + "integrity": "sha512-E42GW/JA4Qv15wQdqJq8DL4JhNpB3prJgjgapN3qJT9K2zO5IIAQh4VXvCEDupoqAwnz0cY4RlXeC/ajX5SFHg==", + "dev": true, + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/scheduler": { + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", + "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" + }, + "node_modules/@types/semver": { + "version": "7.3.13", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", + "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==", + "dev": true + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.47.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.47.0.tgz", + "integrity": "sha512-AHZtlXAMGkDmyLuLZsRpH3p4G/1iARIwc/T0vIem2YB+xW6pZaXYXzCBnZSF/5fdM97R9QqZWZ+h3iW10XgevQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "5.47.0", + "@typescript-eslint/type-utils": "5.47.0", + "@typescript-eslint/utils": "5.47.0", + "debug": "^4.3.4", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "regexpp": "^3.2.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/eslint-plugin-tslint": { + "version": "5.47.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin-tslint/-/eslint-plugin-tslint-5.47.0.tgz", + "integrity": "sha512-qbjCf2sb7+5ShjDUQpxfoiDtrO7du/l6LS8qAT1xGRUUlAlqgds9+hjoi8DRhib3fjkbf/uA3zr4ivEpATKVCw==", + "dev": true, + "dependencies": { + "@typescript-eslint/utils": "5.47.0", + "lodash": "^4.17.21" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0", + "tslint": "^5.0.0 || ^6.0.0", + "typescript": "*" + } + }, + "node_modules/@typescript-eslint/experimental-utils": { + "version": "5.47.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.47.0.tgz", + "integrity": "sha512-DAP8xOaTAJLxouU0QrATiw8o/OHxxbUBXtkf9v+bCCU6tbJUn24xwB1dHFw3b5wYq4XvC1z5lYEN0g/Rx1sjzA==", + "dev": true, + "dependencies": { + "@typescript-eslint/utils": "5.47.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "5.47.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.47.0.tgz", + "integrity": "sha512-udPU4ckK+R1JWCGdQC4Qa27NtBg7w020ffHqGyAK8pAgOVuNw7YaKXGChk+udh+iiGIJf6/E/0xhVXyPAbsczw==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "5.47.0", + "@typescript-eslint/types": "5.47.0", + "@typescript-eslint/typescript-estree": "5.47.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.47.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.47.0.tgz", + "integrity": "sha512-dvJab4bFf7JVvjPuh3sfBUWsiD73aiftKBpWSfi3sUkysDQ4W8x+ZcFpNp7Kgv0weldhpmMOZBjx1wKN8uWvAw==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.47.0", + "@typescript-eslint/visitor-keys": "5.47.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "5.47.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.47.0.tgz", + "integrity": "sha512-1J+DFFrYoDUXQE1b7QjrNGARZE6uVhBqIvdaXTe5IN+NmEyD68qXR1qX1g2u4voA+nCaelQyG8w30SAOihhEYg==", + "dev": true, + "dependencies": { + "@typescript-eslint/typescript-estree": "5.47.0", + "@typescript-eslint/utils": "5.47.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "5.47.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.47.0.tgz", + "integrity": "sha512-eslFG0Qy8wpGzDdYKu58CEr3WLkjwC5Usa6XbuV89ce/yN5RITLe1O8e+WFEuxnfftHiJImkkOBADj58ahRxSg==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.47.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.47.0.tgz", + "integrity": "sha512-LxfKCG4bsRGq60Sqqu+34QT5qT2TEAHvSCCJ321uBWywgE2dS0LKcu5u+3sMGo+Vy9UmLOhdTw5JHzePV/1y4Q==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.47.0", + "@typescript-eslint/visitor-keys": "5.47.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "5.47.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.47.0.tgz", + "integrity": "sha512-U9xcc0N7xINrCdGVPwABjbAKqx4GK67xuMV87toI+HUqgXj26m6RBp9UshEXcTrgCkdGYFzgKLt8kxu49RilDw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.47.0", + "@typescript-eslint/types": "5.47.0", + "@typescript-eslint/typescript-estree": "5.47.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" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.47.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.47.0.tgz", + "integrity": "sha512-ByPi5iMa6QqDXe/GmT/hR6MZtVPi0SqMQPDx15FczCBXJo/7M8T88xReOALAfpBLm+zxpPfmhuEvPb577JRAEg==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.47.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@vitejs/plugin-react": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-2.2.0.tgz", + "integrity": "sha512-FFpefhvExd1toVRlokZgxgy2JtnBOdp4ZDsq7ldCWaqGSGn9UhWMAVm/1lxPL14JfNS5yGz+s9yFrQY6shoStA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.19.6", + "@babel/plugin-transform-react-jsx": "^7.19.0", + "@babel/plugin-transform-react-jsx-development": "^7.18.6", + "@babel/plugin-transform-react-jsx-self": "^7.18.6", + "@babel/plugin-transform-react-jsx-source": "^7.19.6", + "magic-string": "^0.26.7", + "react-refresh": "^0.14.0" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "vite": "^3.0.0" + } + }, + "node_modules/3d-force-graph": { + "version": "1.70.17", + "resolved": "https://registry.npmjs.org/3d-force-graph/-/3d-force-graph-1.70.17.tgz", + "integrity": "sha512-6wCaRi3uAVDnvl3c+hz1hwXHoNqLRJcwzh0Y/YPCxPAQ76TCOah/qAtJdGk/Cnup37v5Q2hgmxSbxN65PTBJ+A==", + "dependencies": { + "accessor-fn": "1", + "kapsule": "^1.13", + "three": ">=0.118 <1", + "three-forcegraph": "^1.39", + "three-render-objects": "^1.27" + } + }, + "node_modules/3d-force-graph-ar": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/3d-force-graph-ar/-/3d-force-graph-ar-1.7.5.tgz", + "integrity": "sha512-4aZafpHHAqn04tbb54Qsi3weBnZJhpnZNfO3RWTNAG29O5VamXxWOGpEHzTtKFi8Svr9D8Ath0UeFAMsiXqL0Q==", + "dependencies": { + "aframe-forcegraph-component": "^3.0", + "kapsule": "^1.13" + } + }, + "node_modules/3d-force-graph-vr": { + "version": "2.0.16", + "resolved": "https://registry.npmjs.org/3d-force-graph-vr/-/3d-force-graph-vr-2.0.16.tgz", + "integrity": "sha512-AHrQbiC907F9+kLKwVFsrTYuUgPAROl4XU+oNFVBst7HeutkfaRMg4ME7QDaM3KzLP7Me3jx3D+S7eO6C5CuqQ==", + "dependencies": { + "accessor-fn": "1", + "aframe": "^1.3", + "aframe-extras": "^6.1", + "aframe-forcegraph-component": "^3.0", + "kapsule": "^1.13", + "polished": "^4.2.2" + } + }, + "node_modules/accessor-fn": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/accessor-fn/-/accessor-fn-1.3.2.tgz", + "integrity": "sha512-W4/Lj/gry8AHy+IC7Havr7fNbphHDzVAiZd5h10g8LRRz6ZKla3A1/lkFqoV1jh13R0eJLGWjDBlRGK36fcWiw==" + }, + "node_modules/acorn": { + "version": "8.8.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", + "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "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", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/aframe": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/aframe/-/aframe-1.3.0.tgz", + "integrity": "sha512-f6OQaDf49SzdSxVskJPvPWldOwHpYMsGttmQHhU6FRiASsnyULKG1nqZom9pDuS3fFYEzQVqRMakQ2AhXeLkFg==", + "dependencies": { + "custom-event-polyfill": "^1.0.6", + "debug": "github:ngokevin/debug#noTimestamp", + "deep-assign": "^2.0.0", + "document-register-element": "github:dmarcos/document-register-element#8ccc532b7f3744be954574caf3072a5fd260ca90", + "load-bmfont": "^1.2.3", + "object-assign": "^4.0.1", + "present": "0.0.6", + "promise-polyfill": "^3.1.0", + "super-animejs": "^3.1.0", + "super-three": "^0.137.0", + "three-bmfont-text": "github:dmarcos/three-bmfont-text#21d017046216e318362c48abd1a48bddfb6e0733", + "webvr-polyfill": "^0.10.12" + }, + "engines": { + "node": ">= 4.6.0", + "npm": ">= 2.15.9" + } + }, + "node_modules/aframe-extras": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/aframe-extras/-/aframe-extras-6.1.1.tgz", + "integrity": "sha512-w3o3sKfQG+cwe1ZoKUxvMLehh0D/MlvFZeg2XuyIto+Nrs/kGLPcb/fsI5DXM4jociZ3wVQfqcA1BVF+0Nq45A==", + "dependencies": { + "three-pathfinding": "^0.7.0" + }, + "peerDependencies": { + "aframe": "*" + } + }, + "node_modules/aframe-forcegraph-component": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/aframe-forcegraph-component/-/aframe-forcegraph-component-3.0.6.tgz", + "integrity": "sha512-z1qhyahdWEazfaI8XBU4q7LyADAYvYjCoRbD2bQ5nm4h1YQvw2zz4vwl06E9MSXsgkD8cN3rlOMhFHXNe+abyQ==", + "dependencies": { + "accessor-fn": "1", + "three-forcegraph": "^1.39" + } + }, + "node_modules/aframe/node_modules/debug": { + "version": "2.2.0", + "resolved": "git+ssh://git@github.com/ngokevin/debug.git#ef5f8e66d49ce8bc64c6f282c15f8b7164409e3a", + "license": "MIT" + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/an-array": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/an-array/-/an-array-1.0.0.tgz", + "integrity": "sha512-M175GYI7RmsYu24Ok383yZQa3eveDfNnmhTe3OQ3bm70bEovz2gWenH+ST/n32M8lrwLWk74hcPds5CDRPe2wg==" + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/anymatch": { + "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" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "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": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-includes": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-shuffle": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-shuffle/-/array-shuffle-1.0.1.tgz", + "integrity": "sha512-PBqgo1Y2XWSksBzq3GFPEb798ZrW2snAcmr4drbVeF/6MT/5aBlkGJEvu5A/CzXHf4EjbHOj/ZowatjlIiVidA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", + "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", + "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", + "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" + } + }, + "node_modules/as-number": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/as-number/-/as-number-1.0.0.tgz", + "integrity": "sha512-HkI/zLo2AbSRO4fqVkmyf3hms0bJDs3iboHqTrNuwTiCRvdYXM7HFhfhB6Dk51anV2LM/IMB83mtK9mHw4FlAg==" + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true, + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.13", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", + "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + ], + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-lite": "^1.0.30001426", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/axios": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.2.1.tgz", + "integrity": "sha512-I88cFiGu9ryt/tfVEi4kX2SITsvDddTajXTOFmt2uK1ZVA8LytjtdeyefdQWEf5PU8w+4SSJDoYnggflB5tW4A==", + "dependencies": { + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/babel-eslint": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", + "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", + "deprecated": "babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.7.0", + "@babel/traverse": "^7.7.0", + "@babel/types": "^7.7.0", + "eslint-visitor-keys": "^1.0.0", + "resolve": "^1.12.0" + }, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "eslint": ">= 4.12.1" + } + }, + "node_modules/babel-eslint/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bezier-js": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/bezier-js/-/bezier-js-6.1.0.tgz", + "integrity": "sha512-oc8fkHqG0R+dQuNiXVbPMB0cc8iDqkLAjbA2gq26QmV8tZqW9GGI7iNEX1ioRWlZperQS7v5BX03+9FLVWZbSw==", + "funding": { + "type": "individual", + "url": "https://github.com/Pomax/bezierjs/blob/master/FUNDING.md" + } + }, + "node_modules/big-integer": { + "version": "1.6.51", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", + "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/broadcast-channel": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/broadcast-channel/-/broadcast-channel-3.7.0.tgz", + "integrity": "sha512-cIAKJXAxGJceNZGTZSBzMxzyOn72cVgPnKx4dc6LRjQgbaJUQqhy5rzL3zbMxkMWsGKkv2hSFkPRMEXfoMZ2Mg==", + "dependencies": { + "@babel/runtime": "^7.7.2", + "detect-node": "^2.1.0", + "js-sha3": "0.8.0", + "microseconds": "0.2.0", + "nano-time": "1.0.0", + "oblivious-set": "1.0.0", + "rimraf": "3.0.2", + "unload": "2.2.0" + } + }, + "node_modules/browserslist": { + "version": "4.21.4", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", + "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001400", + "electron-to-chromium": "^1.4.251", + "node-releases": "^2.0.6", + "update-browserslist-db": "^1.0.9" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer-equal": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz", + "integrity": "sha512-RgSV6InVQ9ODPdLWJ5UAqBqJBOg370Nz6ZQtRzpt6nUjc8v0St97uJ4PYC6NztqIScrAXafKM3mZPMygSe1ggA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/buffer-to-arraybuffer": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/buffer-to-arraybuffer/-/buffer-to-arraybuffer-0.0.5.tgz", + "integrity": "sha512-3dthu5CYiVB1DEJp61FtApNnNndTckcqe4pFcLdvHtrpG+kcyekCJKg4MRiDcFW7A6AODnXB9U4dwQiCW5kzJQ==" + }, + "node_modules/builtin-modules": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", + "integrity": "sha512-wxXCdllwGhI2kCC0MnvTGYTMvnVZTvqgypkiTI8Pa5tcz2i6VqsqwYGgqwXji+4RgCzms6EajE4IxiUH6HH8nQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/builtins": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", + "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", + "dev": true, + "peer": true, + "dependencies": { + "semver": "^7.0.0" + } + }, + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "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==", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-me-maybe": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.2.tgz", + "integrity": "sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==", + "dev": true + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001441", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001441.tgz", + "integrity": "sha512-OyxRR4Vof59I3yGWXws6i908EtGbMzVUi3ganaZQHmydk1iwDhRnvaPG2WaR0KcqrDFKrxVZHULT396LEPhXfg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + } + ] + }, + "node_modules/canvas-color-tracker": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/canvas-color-tracker/-/canvas-color-tracker-1.1.6.tgz", + "integrity": "sha512-LpKiona7TwN0rpLgGcdvAw/HVV9HGCSSyOoSJkLyUP+VZmTX2uAnunGVoKrEHQ/7i+lyu6HfazdHV93vLrjK5Q==", + "dependencies": { + "tinycolor2": "^1.4.2" + } + }, + "node_modules/capital-case": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", + "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/cardboard-vr-display": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/cardboard-vr-display/-/cardboard-vr-display-1.0.19.tgz", + "integrity": "sha512-+MjcnWKAkb95p68elqZLDPzoiF/dGncQilLGvPBM5ZorABp/ao3lCs7nnRcYBckmuNkg1V/5rdGDKoUaCVsHzQ==", + "dependencies": { + "gl-preserve-state": "^1.0.0", + "nosleep.js": "^0.7.0", + "webvr-polyfill-dpdb": "^1.0.17" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/change-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", + "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", + "dependencies": { + "camel-case": "^4.1.2", + "capital-case": "^1.0.4", + "constant-case": "^3.0.4", + "dot-case": "^3.0.4", + "header-case": "^2.0.4", + "no-case": "^3.0.4", + "param-case": "^3.0.4", + "pascal-case": "^3.1.2", + "path-case": "^3.0.4", + "sentence-case": "^3.0.4", + "snake-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/classnames": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", + "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" + }, + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" + }, + "node_modules/clsx": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", + "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "dev": true, + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "9.4.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.4.1.tgz", + "integrity": "sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw==", + "dev": true, + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "node_modules/comment-parser": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.3.1.tgz", + "integrity": "sha512-B52sN2VNghyq5ofvUsqZjmk6YkihBX5vMSChmSK9v4ShjKf3Vk5Xcmgpw4o+iIgtrnM/u5FiMpz9VKb8lpBveA==", + "dev": true, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/constant-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", + "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case": "^2.0.2" + } + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "node_modules/copy-anything": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-3.0.3.tgz", + "integrity": "sha512-fpW2W/BqEzqPp29QS+MwwfisHCQZtiduTe/m8idFo0xbti9fIZ2WVhAsCv4ggFVH3AgCkVdpoOCtQC6gBrdhjw==", + "dependencies": { + "is-what": "^4.1.8" + }, + "engines": { + "node": ">=12.13" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cosmiconfig": { + "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", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/css-node-extract": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/css-node-extract/-/css-node-extract-2.1.3.tgz", + "integrity": "sha512-E7CzbC0I4uAs2dI8mPCVe+K37xuja5kjIugOotpwICFL7vzhmFMAPHvS/MF9gFrmv8DDUANsxrgyT/I3OLukcw==", + "dev": true, + "dependencies": { + "change-case": "^3.0.1", + "postcss": "^6.0.14" + } + }, + "node_modules/css-node-extract/node_modules/camel-case": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", + "integrity": "sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==", + "dev": true, + "dependencies": { + "no-case": "^2.2.0", + "upper-case": "^1.1.1" + } + }, + "node_modules/css-node-extract/node_modules/change-case": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-3.1.0.tgz", + "integrity": "sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==", + "dev": true, + "dependencies": { + "camel-case": "^3.0.0", + "constant-case": "^2.0.0", + "dot-case": "^2.1.0", + "header-case": "^1.0.0", + "is-lower-case": "^1.1.0", + "is-upper-case": "^1.1.0", + "lower-case": "^1.1.1", + "lower-case-first": "^1.0.0", + "no-case": "^2.3.2", + "param-case": "^2.1.0", + "pascal-case": "^2.0.0", + "path-case": "^2.1.0", + "sentence-case": "^2.1.0", + "snake-case": "^2.1.0", + "swap-case": "^1.1.0", + "title-case": "^2.1.0", + "upper-case": "^1.1.1", + "upper-case-first": "^1.1.0" + } + }, + "node_modules/css-node-extract/node_modules/constant-case": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-2.0.0.tgz", + "integrity": "sha512-eS0N9WwmjTqrOmR3o83F5vW8Z+9R1HnVz3xmzT2PMFug9ly+Au/fxRWlEBSb6LcZwspSsEn9Xs1uw9YgzAg1EQ==", + "dev": true, + "dependencies": { + "snake-case": "^2.1.0", + "upper-case": "^1.1.1" + } + }, + "node_modules/css-node-extract/node_modules/dot-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-2.1.1.tgz", + "integrity": "sha512-HnM6ZlFqcajLsyudHq7LeeLDr2rFAVYtDv/hV5qchQEidSck8j9OPUsXY9KwJv/lHMtYlX4DjRQqwFYa+0r8Ug==", + "dev": true, + "dependencies": { + "no-case": "^2.2.0" + } + }, + "node_modules/css-node-extract/node_modules/header-case": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-1.0.1.tgz", + "integrity": "sha512-i0q9mkOeSuhXw6bGgiQCCBgY/jlZuV/7dZXyZ9c6LcBrqwvT8eT719E9uxE5LiZftdl+z81Ugbg/VvXV4OJOeQ==", + "dev": true, + "dependencies": { + "no-case": "^2.2.0", + "upper-case": "^1.1.3" + } + }, + "node_modules/css-node-extract/node_modules/lower-case": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", + "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==", + "dev": true + }, + "node_modules/css-node-extract/node_modules/no-case": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", + "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", + "dev": true, + "dependencies": { + "lower-case": "^1.1.1" + } + }, + "node_modules/css-node-extract/node_modules/param-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", + "integrity": "sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==", + "dev": true, + "dependencies": { + "no-case": "^2.2.0" + } + }, + "node_modules/css-node-extract/node_modules/pascal-case": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-2.0.1.tgz", + "integrity": "sha512-qjS4s8rBOJa2Xm0jmxXiyh1+OFf6ekCWOvUaRgAQSktzlTbMotS0nmG9gyYAybCWBcuP4fsBeRCKNwGBnMe2OQ==", + "dev": true, + "dependencies": { + "camel-case": "^3.0.0", + "upper-case-first": "^1.1.0" + } + }, + "node_modules/css-node-extract/node_modules/path-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-2.1.1.tgz", + "integrity": "sha512-Ou0N05MioItesaLr9q8TtHVWmJ6fxWdqKB2RohFmNWVyJ+2zeKIeDNWAN6B/Pe7wpzWChhZX6nONYmOnMeJQ/Q==", + "dev": true, + "dependencies": { + "no-case": "^2.2.0" + } + }, + "node_modules/css-node-extract/node_modules/postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "dev": true, + "dependencies": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/css-node-extract/node_modules/sentence-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-2.1.1.tgz", + "integrity": "sha512-ENl7cYHaK/Ktwk5OTD+aDbQ3uC8IByu/6Bkg+HDv8Mm+XnBnppVNalcfJTNsp1ibstKh030/JKQQWglDvtKwEQ==", + "dev": true, + "dependencies": { + "no-case": "^2.2.0", + "upper-case-first": "^1.1.2" + } + }, + "node_modules/css-node-extract/node_modules/snake-case": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-2.1.0.tgz", + "integrity": "sha512-FMR5YoPFwOLuh4rRz92dywJjyKYZNLpMn1R5ujVpIYkbA9p01fq8RMg0FkO4M+Yobt4MjHeLTJVm5xFFBHSV2Q==", + "dev": true, + "dependencies": { + "no-case": "^2.2.0" + } + }, + "node_modules/css-node-extract/node_modules/upper-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", + "integrity": "sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==", + "dev": true + }, + "node_modules/css-node-extract/node_modules/upper-case-first": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-1.1.2.tgz", + "integrity": "sha512-wINKYvI3Db8dtjikdAqoBbZoP6Q+PZUyfMR7pmwHzjC2quzSkUq5DmPrTtPEqHaz8AGtmsB4TqwapMTM1QAQOQ==", + "dev": true, + "dependencies": { + "upper-case": "^1.1.1" + } + }, + "node_modules/css-selector-extract": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/css-selector-extract/-/css-selector-extract-3.3.6.tgz", + "integrity": "sha512-bBI8ZJKKyR9iHvxXb4t3E6WTMkis94eINopVg7y2FmmMjLXUVduD7mPEcADi4i9FX4wOypFMFpySX+0keuefxg==", + "dev": true, + "dependencies": { + "postcss": "^6.0.14" + } + }, + "node_modules/css-selector-extract/node_modules/postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "dev": true, + "dependencies": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/csstype": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz", + "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==" + }, + "node_modules/custom-event-polyfill": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/custom-event-polyfill/-/custom-event-polyfill-1.0.7.tgz", + "integrity": "sha512-TDDkd5DkaZxZFM8p+1I3yAlvM3rSr1wbrOliG4yJiwinMZN8z/iGL7BTlDkrJcYTmgUSb4ywVCc3ZaUtOtC76w==" + }, + "node_modules/d3-array": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.1.tgz", + "integrity": "sha512-gUY/qeHq/yNqqoCKNq4vtpFLdoCdvyNpWoC/KNjhGbhDuQpAM9sIQQKkXSNpXa9h5KySs/gzm7R88WkUutgwWQ==", + "dependencies": { + "internmap": "1 - 2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-binarytree": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/d3-binarytree/-/d3-binarytree-0.2.2.tgz", + "integrity": "sha512-TmgSEKWO4lSjX26Rk77hbTdiF3TQ1v5LqL+cmSz6/5RiSxmq6+e6qHE6X/KwrsIESekhEReH63X5yM8dvXaT7A==" + }, + "node_modules/d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-dispatch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz", + "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-drag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz", + "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-selection": "3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-ease": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", + "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-force-3d": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/d3-force-3d/-/d3-force-3d-3.0.3.tgz", + "integrity": "sha512-8HGTbw6y35UYManGCPU4+b9/PGgnyjzRq80DRsp7zFsRl0leVz2pzwx18dwkPe4rDxTOEpM4BuWQ2krbVaGQQA==", + "dependencies": { + "d3-binarytree": "^0.2.0", + "d3-dispatch": "1 - 3", + "d3-octree": "^0.2.0", + "d3-quadtree": "1 - 3", + "d3-timer": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-format": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", + "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-interpolate": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", + "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", + "dependencies": { + "d3-color": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-octree": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/d3-octree/-/d3-octree-0.2.2.tgz", + "integrity": "sha512-ysk9uSPAhZVb0Gq4GXzghl/Yqxu80dHrq55I53qaIMdGB65+0UfO84sr4Fci2JHumcgh6H4WE0r8LwxPagkE+g==" + }, + "node_modules/d3-quadtree": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz", + "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-scale": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", + "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", + "dependencies": { + "d3-array": "2.10.0 - 3", + "d3-format": "1 - 3", + "d3-interpolate": "1.2.0 - 3", + "d3-time": "2.1.1 - 3", + "d3-time-format": "2 - 4" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-scale-chromatic": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz", + "integrity": "sha512-Lx9thtxAKrO2Pq6OO2Ua474opeziKr279P/TKZsMAhYyNDD3EnCffdbgeSYN5O7m2ByQsxtuP2CSDczNUIZ22g==", + "dependencies": { + "d3-color": "1 - 3", + "d3-interpolate": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-selection": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz", + "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", + "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", + "dependencies": { + "d3-array": "2 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time-format": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", + "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", + "dependencies": { + "d3-time": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-timer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", + "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-transition": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz", + "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==", + "dependencies": { + "d3-color": "1 - 3", + "d3-dispatch": "1 - 3", + "d3-ease": "1 - 3", + "d3-interpolate": "1 - 3", + "d3-timer": "1 - 3" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "d3-selection": "2 - 3" + } + }, + "node_modules/d3-zoom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz", + "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-drag": "2 - 3", + "d3-interpolate": "1 - 3", + "d3-selection": "2 - 3", + "d3-transition": "2 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/data-joint": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/data-joint/-/data-joint-1.2.6.tgz", + "integrity": "sha512-xuKyhQcD7vlO451VwKoK0RS8owh+iAZoQM2Up0ooTxrpLXh6XMUNPQW9vEOqv1+BT3c185FCLyWjUcCsEXC0/Q==", + "dependencies": { + "index-array-by": "^1.3.3" + } + }, + "node_modules/date-fns": { + "version": "2.29.3", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.29.3.tgz", + "integrity": "sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==", + "engines": { + "node": ">=0.11" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/date-fns" + } + }, + "node_modules/debounce": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz", + "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==" + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", + "dependencies": { + "mimic-response": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/deep-assign": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/deep-assign/-/deep-assign-2.0.0.tgz", + "integrity": "sha512-2QhG3Kxulu4XIF3WL5C5x0sc/S17JLgm1SfvDfIRsR/5m7ZGmcejII7fZ2RyWhN0UWIJm0TNM/eKow6LAn3evQ==", + "dependencies": { + "is-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "dependencies": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "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==", + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/defined": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.1.tgz", + "integrity": "sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + }, + "node_modules/detective": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.1.tgz", + "integrity": "sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==", + "dependencies": { + "acorn-node": "^1.8.2", + "defined": "^1.0.0", + "minimist": "^1.2.6" + }, + "bin": { + "detective": "bin/detective.js" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" + }, + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true, + "peer": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/document-register-element": { + "version": "0.5.4", + "resolved": "git+ssh://git@github.com/dmarcos/document-register-element.git#8ccc532b7f3744be954574caf3072a5fd260ca90", + "integrity": "sha512-dwvGei9I/m1pYQ/9aNODyVmvSWBtlncfIROn5Sbi4MVnIcZKre5QaWx+AGLI/j6VH9sp8jwLyeuWP1micANT0g==", + "license": "MIT" + }, + "node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "dependencies": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "node_modules/dom-walk": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz", + "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==" + }, + "node_modules/dom4": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/dom4/-/dom4-2.1.6.tgz", + "integrity": "sha512-JkCVGnN4ofKGbjf5Uvc8mmxaATIErKQKSgACdBXpsQ3fY6DlIpAyWfiBSrGkttATssbDCp3psiAKWXk5gmjycA==" + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dtype": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dtype/-/dtype-2.0.0.tgz", + "integrity": "sha512-s2YVcLKdFGS0hpFqJaTwscsyt0E8nNFdmo73Ocd81xNPj4URI4rj6D60A+vFMIw7BXWlb4yRkEwfBqcZzPGiZg==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/echarts": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/echarts/-/echarts-5.4.1.tgz", + "integrity": "sha512-9ltS3M2JB0w2EhcYjCdmtrJ+6haZcW6acBolMGIuf01Hql1yrIV01L1aRj7jsaaIULJslEP9Z3vKlEmnJaWJVQ==", + "dependencies": { + "tslib": "2.3.0", + "zrender": "5.4.1" + } + }, + "node_modules/echarts/node_modules/tslib": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" + }, + "node_modules/electron-to-chromium": { + "version": "1.4.284", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", + "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==" + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-abstract": { + "version": "1.20.5", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.5.tgz", + "integrity": "sha512-7h8MM2EQhsCA7pU/Nv78qOXFpD8Rhqd12gYiSJVkrH9+e8VuA8JlPJK/hQjjlLv6pJvx/z1iRFKzYb0XT/RuAQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.1.3", + "get-symbol-description": "^1.0.0", + "gopd": "^1.0.1", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "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-weakref": "^1.0.2", + "object-inspect": "^1.12.2", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "safe-regex-test": "^1.0.0", + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "unbox-primitive": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/esbuild": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.15.18.tgz", + "integrity": "sha512-x/R72SmW3sSFRm5zrrIjAhCeQSAWoni3CmHEqfQrZIQTM3lVCdehdwuIqaOtfC2slvpdlLa62GYoN8SxT23m6Q==", + "dev": true, + "hasInstallScript": true, + "peer": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.15.18", + "@esbuild/linux-loong64": "0.15.18", + "esbuild-android-64": "0.15.18", + "esbuild-android-arm64": "0.15.18", + "esbuild-darwin-64": "0.15.18", + "esbuild-darwin-arm64": "0.15.18", + "esbuild-freebsd-64": "0.15.18", + "esbuild-freebsd-arm64": "0.15.18", + "esbuild-linux-32": "0.15.18", + "esbuild-linux-64": "0.15.18", + "esbuild-linux-arm": "0.15.18", + "esbuild-linux-arm64": "0.15.18", + "esbuild-linux-mips64le": "0.15.18", + "esbuild-linux-ppc64le": "0.15.18", + "esbuild-linux-riscv64": "0.15.18", + "esbuild-linux-s390x": "0.15.18", + "esbuild-netbsd-64": "0.15.18", + "esbuild-openbsd-64": "0.15.18", + "esbuild-sunos-64": "0.15.18", + "esbuild-windows-32": "0.15.18", + "esbuild-windows-64": "0.15.18", + "esbuild-windows-arm64": "0.15.18" + } + }, + "node_modules/esbuild-android-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.15.18.tgz", + "integrity": "sha512-wnpt3OXRhcjfIDSZu9bnzT4/TNTDsOUvip0foZOUBG7QbSt//w3QV4FInVJxNhKc/ErhUxc5z4QjHtMi7/TbgA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-android-arm64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.15.18.tgz", + "integrity": "sha512-G4xu89B8FCzav9XU8EjsXacCKSG2FT7wW9J6hOc18soEHJdtWu03L3TQDGf0geNxfLTtxENKBzMSq9LlbjS8OQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-darwin-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.15.18.tgz", + "integrity": "sha512-2WAvs95uPnVJPuYKP0Eqx+Dl/jaYseZEUUT1sjg97TJa4oBtbAKnPnl3b5M9l51/nbx7+QAEtuummJZW0sBEmg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-darwin-arm64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.18.tgz", + "integrity": "sha512-tKPSxcTJ5OmNb1btVikATJ8NftlyNlc8BVNtyT/UAr62JFOhwHlnoPrhYWz09akBLHI9nElFVfWSTSRsrZiDUA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-freebsd-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.18.tgz", + "integrity": "sha512-TT3uBUxkteAjR1QbsmvSsjpKjOX6UkCstr8nMr+q7zi3NuZ1oIpa8U41Y8I8dJH2fJgdC3Dj3CXO5biLQpfdZA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-freebsd-arm64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.18.tgz", + "integrity": "sha512-R/oVr+X3Tkh+S0+tL41wRMbdWtpWB8hEAMsOXDumSSa6qJR89U0S/PpLXrGF7Wk/JykfpWNokERUpCeHDl47wA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-32": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.15.18.tgz", + "integrity": "sha512-lphF3HiCSYtaa9p1DtXndiQEeQDKPl9eN/XNoBf2amEghugNuqXNZA/ZovthNE2aa4EN43WroO0B85xVSjYkbg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.15.18.tgz", + "integrity": "sha512-hNSeP97IviD7oxLKFuii5sDPJ+QHeiFTFLoLm7NZQligur8poNOWGIgpQ7Qf8Balb69hptMZzyOBIPtY09GZYw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-arm": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.15.18.tgz", + "integrity": "sha512-UH779gstRblS4aoS2qpMl3wjg7U0j+ygu3GjIeTonCcN79ZvpPee12Qun3vcdxX+37O5LFxz39XeW2I9bybMVA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-arm64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.18.tgz", + "integrity": "sha512-54qr8kg/6ilcxd+0V3h9rjT4qmjc0CccMVWrjOEM/pEcUzt8X62HfBSeZfT2ECpM7104mk4yfQXkosY8Quptug==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-mips64le": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.18.tgz", + "integrity": "sha512-Mk6Ppwzzz3YbMl/ZZL2P0q1tnYqh/trYZ1VfNP47C31yT0K8t9s7Z077QrDA/guU60tGNp2GOwCQnp+DYv7bxQ==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-ppc64le": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.18.tgz", + "integrity": "sha512-b0XkN4pL9WUulPTa/VKHx2wLCgvIAbgwABGnKMY19WhKZPT+8BxhZdqz6EgkqCLld7X5qiCY2F/bfpUUlnFZ9w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-riscv64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.18.tgz", + "integrity": "sha512-ba2COaoF5wL6VLZWn04k+ACZjZ6NYniMSQStodFKH/Pu6RxzQqzsmjR1t9QC89VYJxBeyVPTaHuBMCejl3O/xg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-linux-s390x": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.18.tgz", + "integrity": "sha512-VbpGuXEl5FCs1wDVp93O8UIzl3ZrglgnSQ+Hu79g7hZu6te6/YHgVJxCM2SqfIila0J3k0csfnf8VD2W7u2kzQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-netbsd-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.18.tgz", + "integrity": "sha512-98ukeCdvdX7wr1vUYQzKo4kQ0N2p27H7I11maINv73fVEXt2kyh4K4m9f35U1K43Xc2QGXlzAw0K9yoU7JUjOg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-openbsd-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.18.tgz", + "integrity": "sha512-yK5NCcH31Uae076AyQAXeJzt/vxIo9+omZRKj1pauhk3ITuADzuOx5N2fdHrAKPxN+zH3w96uFKlY7yIn490xQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-sunos-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.15.18.tgz", + "integrity": "sha512-On22LLFlBeLNj/YF3FT+cXcyKPEI263nflYlAhz5crxtp3yRG1Ugfr7ITyxmCmjm4vbN/dGrb/B7w7U8yJR9yw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-windows-32": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.15.18.tgz", + "integrity": "sha512-o+eyLu2MjVny/nt+E0uPnBxYuJHBvho8vWsC2lV61A7wwTWC3jkN2w36jtA+yv1UgYkHRihPuQsL23hsCYGcOQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-windows-64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.15.18.tgz", + "integrity": "sha512-qinug1iTTaIIrCorAUjR0fcBk24fjzEedFYhhispP8Oc7SFvs+XeW3YpAKiKp8dRpizl4YYAhxMjlftAMJiaUw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-windows-arm64": { + "version": "0.15.18", + "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.18.tgz", + "integrity": "sha512-q9bsYzegpZcLziq0zgUi5KqGVtfhjxGbnksaBFYmWLxeV/S1fK4OLdq2DFYnXcLMjlZw2L0jLsk1eGoB522WXQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/eslint": { + "version": "8.30.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.30.0.tgz", + "integrity": "sha512-MGADB39QqYuzEGov+F/qb18r4i7DohCDOfatHaxI2iGlPuC65bwG2gxgO+7DkyL38dRFaRH7RaRAgU6JKL9rMQ==", + "dev": true, + "dependencies": { + "@eslint/eslintrc": "^1.4.0", + "@humanwhocodes/config-array": "^0.11.8", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "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.4.0", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "grapheme-splitter": "^1.0.4", + "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-sdsl": "^4.1.4", + "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", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-prettier": { + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz", + "integrity": "sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==", + "dev": true, + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-config-standard": { + "version": "17.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.0.0.tgz", + "integrity": "sha512-/2ks1GKyqSOkH7JFvXJicu0iMpoojkwB+f5Du/1SC0PtBL+s8v30k9njRZ21pm2drKYm2342jFnGWzttxPmZVg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "peerDependencies": { + "eslint": "^8.0.1", + "eslint-plugin-import": "^2.25.2", + "eslint-plugin-n": "^15.0.0", + "eslint-plugin-promise": "^6.0.0" + } + }, + "node_modules/eslint-config-standard-with-typescript": { + "version": "23.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-standard-with-typescript/-/eslint-config-standard-with-typescript-23.0.0.tgz", + "integrity": "sha512-iaaWifImn37Z1OXbNW1es7KI+S7D408F9ys0bpaQf2temeBWlvb0Nc5qHkOgYaRb5QxTZT32GGeN1gtswASOXA==", + "dev": true, + "dependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint-config-standard": "17.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^5.0.0", + "eslint": "^8.0.1", + "eslint-plugin-import": "^2.25.2", + "eslint-plugin-n": "^15.0.0", + "eslint-plugin-promise": "^6.0.0", + "typescript": "*" + } + }, + "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==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "resolve": "^1.20.0" + } + }, + "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==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz", + "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==", + "dev": true, + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "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==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-deprecation": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-deprecation/-/eslint-plugin-deprecation-1.3.3.tgz", + "integrity": "sha512-Bbkv6ZN2cCthVXz/oZKPwsSY5S/CbgTLRG4Q2s2gpPpgNsT0uJ0dB5oLNiWzFYY8AgKX4ULxXFG1l/rDav9QFA==", + "dev": true, + "dependencies": { + "@typescript-eslint/experimental-utils": "^5.0.0", + "tslib": "^2.3.1", + "tsutils": "^3.21.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0", + "typescript": "^3.7.5 || ^4.0.0" + } + }, + "node_modules/eslint-plugin-es": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz", + "integrity": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==", + "dev": true, + "peer": true, + "dependencies": { + "eslint-utils": "^2.0.0", + "regexpp": "^3.0.0" + }, + "engines": { + "node": ">=8.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=4.19.1" + } + }, + "node_modules/eslint-plugin-es/node_modules/eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "peer": true, + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/eslint-plugin-es/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-header": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-header/-/eslint-plugin-header-3.1.1.tgz", + "integrity": "sha512-9vlKxuJ4qf793CmeeSrZUvVClw6amtpghq3CuWcB5cUNnWHQhgcqy5eF8oVKFk1G3Y/CbchGfEaw3wiIJaNmVg==", + "dev": true, + "peerDependencies": { + "eslint": ">=7.7.0" + } + }, + "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==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.4", + "array.prototype.flat": "^1.2.5", + "debug": "^2.6.9", + "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", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.values": "^1.1.5", + "resolve": "^1.22.0", + "tsconfig-paths": "^3.14.1" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "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==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "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": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/eslint-plugin-jsdoc": { + "version": "39.6.4", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.6.4.tgz", + "integrity": "sha512-fskvdLCfwmPjHb6e+xNGDtGgbF8X7cDwMtVLAP2WwSf9Htrx68OAx31BESBM1FAwsN2HTQyYQq7m4aW4Q4Nlag==", + "dev": true, + "dependencies": { + "@es-joy/jsdoccomment": "~0.36.1", + "comment-parser": "1.3.1", + "debug": "^4.3.4", + "escape-string-regexp": "^4.0.0", + "esquery": "^1.4.0", + "semver": "^7.3.8", + "spdx-expression-parse": "^3.0.1" + }, + "engines": { + "node": "^14 || ^16 || ^17 || ^18 || ^19" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + } + }, + "node_modules/eslint-plugin-jsdoc/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint-plugin-n": { + "version": "15.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-15.6.0.tgz", + "integrity": "sha512-Hd/F7wz4Mj44Jp0H6Jtty13NcE69GNTY0rVlgTIj1XBnGGVI6UTdDrpE6vqu3AHo07bygq/N+7OH/lgz1emUJw==", + "dev": true, + "peer": true, + "dependencies": { + "builtins": "^5.0.1", + "eslint-plugin-es": "^4.1.0", + "eslint-utils": "^3.0.0", + "ignore": "^5.1.1", + "is-core-module": "^2.11.0", + "minimatch": "^3.1.2", + "resolve": "^1.22.1", + "semver": "^7.3.8" + }, + "engines": { + "node": ">=12.22.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-plugin-promise": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz", + "integrity": "sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==", + "dev": true, + "peer": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.31.11", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.11.tgz", + "integrity": "sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "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.8" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "dev": true, + "dependencies": { + "is-core-module": "^2.9.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==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "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==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/eslint-scope/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "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==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" + } + }, + "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==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "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==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/eslint/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/eslint/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==", + "dev": true + }, + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/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==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/eslint/node_modules/globals": { + "version": "13.19.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz", + "integrity": "sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/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==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/espree": { + "version": "9.4.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", + "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", + "dev": true, + "dependencies": { + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "peer": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "dev": true, + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/expand-brackets/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", + "dev": true, + "dependencies": { + "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.14.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.14.0.tgz", + "integrity": "sha512-eR2D+V9/ExcbF9ls441yIuN6TI2ED1Y2ZcA5BmMtJsOkWOFRJQ0Jt0g1UwqXJJVAb+V+umH5Dfr8oh4EVP7VVg==", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/filter-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz", + "integrity": "sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/findup-sync": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", + "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", + "dev": true, + "dependencies": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/findup-sync/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "dev": true + }, + "node_modules/flatten-vertex-data": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/flatten-vertex-data/-/flatten-vertex-data-1.0.2.tgz", + "integrity": "sha512-BvCBFK2NZqerFTdMDgqfHBwxYWnxeCkwONsw6PvBMcUXqo8U/KDWwmXhqx1x2kLIg7DqIsJfOaJFOmlua3Lxuw==", + "dependencies": { + "dtype": "^2.0.0" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/force-graph": { + "version": "1.42.16", + "resolved": "https://registry.npmjs.org/force-graph/-/force-graph-1.42.16.tgz", + "integrity": "sha512-ypgtQHOZCPDTB1nVB5k1CpEdaqjCzuLpNKd9msuoLwisBQtXE1V11PDLIza7Y06C3mPAHc+dl49GyQi8V1SR5w==", + "dependencies": { + "@tweenjs/tween.js": "18", + "accessor-fn": "1", + "bezier-js": "3 - 6", + "canvas-color-tracker": "1", + "d3-array": "1 - 3", + "d3-drag": "2 - 3", + "d3-force-3d": "2 - 3", + "d3-scale": "1 - 4", + "d3-scale-chromatic": "1 - 3", + "d3-selection": "2 - 3", + "d3-zoom": "2 - 3", + "index-array-by": "1", + "kapsule": "^1.13", + "lodash.throttle": "4" + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "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==", + "dev": true, + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://www.patreon.com/infusion" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "dev": true, + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fromentries": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/fromentries/-/fromentries-1.3.2.tgz", + "integrity": "sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "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==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "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==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-intrinsic": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", + "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gl-preserve-state": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gl-preserve-state/-/gl-preserve-state-1.0.0.tgz", + "integrity": "sha512-zQZ25l3haD4hvgJZ6C9+s0ebdkW9y+7U2qxvGu1uWOJh8a4RU+jURIKEQhf8elIlFpMH6CrAY2tH0mYrRjet3Q==" + }, + "node_modules/glob": { + "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.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/global": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", + "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", + "dependencies": { + "min-document": "^2.19.0", + "process": "^0.11.10" + } + }, + "node_modules/global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "dependencies": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "dev": true, + "dependencies": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "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==", + "dev": true, + "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==", + "dev": true + }, + "node_modules/grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", + "dev": true + }, + "node_modules/gud": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gud/-/gud-1.0.0.tgz", + "integrity": "sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw==" + }, + "node_modules/handlebars": { + "version": "4.7.7", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", + "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.5", + "neo-async": "^2.6.0", + "source-map": "^0.6.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "handlebars": "bin/handlebars" + }, + "engines": { + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^3.1.4" + } + }, + "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", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "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==", + "dependencies": { + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", + "dev": true, + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/header-case": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", + "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", + "dependencies": { + "capital-case": "^1.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/history": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/history/-/history-5.3.0.tgz", + "integrity": "sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==", + "peer": true, + "dependencies": { + "@babel/runtime": "^7.7.6" + } + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "dependencies": { + "parse-passwd": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/immutable": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.2.1.tgz", + "integrity": "sha512-7WYV7Q5BTs0nlQm7tl92rDYYoyELLKHoDMBKhrxEoiV4mrfVdRz8hzPiYOzH7yWjzoVEamxRuAqhxL2PLRwZYQ==", + "dev": true + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/index-array-by": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/index-array-by/-/index-array-by-1.3.3.tgz", + "integrity": "sha512-dpqV1sX+hx4s0RqAT97ypk9xzcAXJ0XK27p3bTgPy8bjbJAX6Kf7RU3pPXgmg9hhO7f5/WxO354v2f/A0/fz3Q==" + }, + "node_modules/inflection": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/inflection/-/inflection-1.12.0.tgz", + "integrity": "sha512-lRy4DxuIFWXlJU7ed8UiTJOSTqStqYdEb4CEbtXfNbkdj3nH1L+reUWiE10VWcJS2yR7tge8Z74pJjtBjNwj0w==", + "engines": [ + "node >= 0.4.0" + ] + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "node_modules/internal-slot": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.4.tgz", + "integrity": "sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/internmap": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", + "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", + "engines": { + "node": ">=12" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "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": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", + "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-date-object": { + "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-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-function": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz", + "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==" + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-lower-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/is-lower-case/-/is-lower-case-1.1.3.tgz", + "integrity": "sha512-+5A1e/WJpLLXZEDlgz4G//WYSHyQBD32qa4Jd3Lw06qQlv3fJHnp3YIHjTQSGzHMgzmVKz2ZP3rBxTHkPw/lxA==", + "dev": true, + "dependencies": { + "lower-case": "^1.1.0" + } + }, + "node_modules/is-lower-case/node_modules/lower-case": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", + "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==", + "dev": true + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "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==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "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", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-upper-case": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-upper-case/-/is-upper-case-1.1.2.tgz", + "integrity": "sha512-GQYSJMgfeAmVwh9ixyk888l7OIhNAGKtY6QA+IrWlu9MDTCaXmeozOZ2S9Knj7bQwBO/H6J2kb+pbyTUiMNbsw==", + "dev": true, + "dependencies": { + "upper-case": "^1.1.0" + } + }, + "node_modules/is-upper-case/node_modules/upper-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", + "integrity": "sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==", + "dev": true + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-what": { + "version": "4.1.8", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-4.1.8.tgz", + "integrity": "sha512-yq8gMao5upkPoGEU9LsB2P+K3Kt8Q3fQFCGyNCWOAnJAMzEXVV9drYb0TXr42TTliLLhKIBvulgAXgtLLnwzGA==", + "engines": { + "node": ">=12.13" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jerrypick": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/jerrypick/-/jerrypick-1.0.5.tgz", + "integrity": "sha512-95dIyL2QXqevDDJ70rmiqKLsTi+riZftLQo708tSFR/O5pQOf6VscDhjnN8mkNQwqnQmGhw+6dfZ5d4bmH/yww==" + }, + "node_modules/js-cookie": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.1.tgz", + "integrity": "sha512-+0rgsUXZu4ncpPxRL+lNEptWMOWl9etvPHc/koSRp6MPwpRYAhmk0dUG00J4bxVV3r9uUzfo24wW0knS07SKSw==", + "engines": { + "node": ">=12" + } + }, + "node_modules/js-sdsl": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.2.0.tgz", + "integrity": "sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/js-sdsl" + } + }, + "node_modules/js-sha3": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz", + "integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsdoc-type-pratt-parser": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-3.1.0.tgz", + "integrity": "sha512-MgtD0ZiCDk9B+eI73BextfRrVQl0oyzRG8B2BjORts6jbunj4ScKPcyXGTbB6eXL4y9TzxCm6hyeLq/2ASzNdw==", + "dev": true, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "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", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "node_modules/json-schema-ref-parser": { + "version": "9.0.9", + "resolved": "https://registry.npmjs.org/json-schema-ref-parser/-/json-schema-ref-parser-9.0.9.tgz", + "integrity": "sha512-qcP2lmGy+JUoQJ4DOQeLaZDqH9qSkeGCK3suKWxJXS82dg728Mn3j97azDMaOUmJAN4uCq91LdPx4K7E8F1a7Q==", + "deprecated": "Please switch to @apidevtools/json-schema-ref-parser", + "dev": true, + "dependencies": { + "@apidevtools/json-schema-ref-parser": "9.0.9" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "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": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.2.tgz", + "integrity": "sha512-46Tk9JiOL2z7ytNQWFLpj99RZkVgeHf87yGQKsIkaPz1qSH9UczKH1rO7K3wgRselo0tYMUNfecYpm/p1vC7tQ==", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonexport": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsonexport/-/jsonexport-3.2.0.tgz", + "integrity": "sha512-GbO9ugb0YTZatPd/hqCGR0FSwbr82H6OzG04yzdrG7XOe4QZ0jhQ+kOsB29zqkzoYJLmLxbbrFiuwbQu891XnQ==", + "bin": { + "jsonexport": "bin/jsonexport.js" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", + "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.5", + "object.assign": "^4.1.3" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/jwt-decode": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/jwt-decode/-/jwt-decode-3.1.2.tgz", + "integrity": "sha512-UfpWE/VZn0iP50d8cz9NrZLM9lSWhcJ+0Gt/nm4by88UL+J1SiKN8/5dkjMmbEzwL2CAe+67GsegCbIKtbp75A==" + }, + "node_modules/kapsule": { + "version": "1.13.8", + "resolved": "https://registry.npmjs.org/kapsule/-/kapsule-1.13.8.tgz", + "integrity": "sha512-Y1lLt1htHNofIM5kxS5OdEqDm7WFqHF4hm6DrrvNEKIJugfQrxDBycV41QI5FpnBGHqyBD99VpTB5ARnlufP6w==", + "dependencies": { + "debounce": "^1.2.1" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/layout-bmfont-text": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/layout-bmfont-text/-/layout-bmfont-text-1.3.4.tgz", + "integrity": "sha512-mceomHZ8W7pSKQhTdLvOe1Im4n37u8xa5Gr0J3KPCHRMO/9o7+goWIOzZcUUd+Xgzy3+22bvoIQ0OaN3LRtgaw==", + "dependencies": { + "as-number": "^1.0.0", + "word-wrapper": "^1.0.7", + "xtend": "^4.0.0" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", + "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==", + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "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/load-bmfont": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.1.tgz", + "integrity": "sha512-8UyQoYmdRDy81Brz6aLAUhfZLwr5zV0L3taTQ4hju7m6biuwiWiJXjPhBJxbUQJA8PrkvJ/7Enqmwk2sM14soA==", + "dependencies": { + "buffer-equal": "0.0.1", + "mime": "^1.3.4", + "parse-bmfont-ascii": "^1.0.3", + "parse-bmfont-binary": "^1.0.5", + "parse-bmfont-xml": "^1.1.4", + "phin": "^2.9.1", + "xhr": "^2.0.1", + "xtend": "^4.0.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash.castarray": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.castarray/-/lodash.castarray-4.4.0.tgz", + "integrity": "sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==" + }, + "node_modules/lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + }, + "node_modules/lodash.throttle": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", + "integrity": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lower-case-first": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/lower-case-first/-/lower-case-first-1.0.2.tgz", + "integrity": "sha512-UuxaYakO7XeONbKrZf5FEgkantPf5DUqDayzP5VXZrtRPdH86s4kN47I8B3TW10S4QKiE3ziHNf3kRN//okHjA==", + "dev": true, + "dependencies": { + "lower-case": "^1.1.2" + } + }, + "node_modules/lower-case-first/node_modules/lower-case": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", + "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==", + "dev": true + }, + "node_modules/lru-cache": { + "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": "^3.0.2" + } + }, + "node_modules/magic-string": { + "version": "0.26.7", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.26.7.tgz", + "integrity": "sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==", + "dev": true, + "dependencies": { + "sourcemap-codec": "^1.4.8" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-limit": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/map-limit/-/map-limit-0.0.1.tgz", + "integrity": "sha512-pJpcfLPnIF/Sk3taPW21G/RQsEEirGaFpCW3oXRwH9dnFHPHNGjNyvh++rdmC2fNqEaTw2MhYJraoJWAHx8kEg==", + "dependencies": { + "once": "~1.3.0" + } + }, + "node_modules/map-limit/node_modules/once": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", + "integrity": "sha512-6vaNInhu+CHxtONf3zw3vq4SP2DOQhjBvIa3rNcG0+P7eKWlYH6Peu7rHizSloRU2EwMz6GraLieis9Ac9+p1w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", + "dev": true, + "dependencies": { + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/match-sorter": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/match-sorter/-/match-sorter-6.3.1.tgz", + "integrity": "sha512-mxybbo3pPNuA+ZuCUhm5bwNkXrJTbsk5VWbR5wiwz/GC6LIiegBGn2w3O08UG/jdbYLinw51fSQ5xNU1U3MgBw==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "remove-accents": "0.4.2" + } + }, + "node_modules/match-sorter/node_modules/remove-accents": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/remove-accents/-/remove-accents-0.4.2.tgz", + "integrity": "sha512-7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA==" + }, + "node_modules/memoize-one": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz", + "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/microseconds": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/microseconds/-/microseconds-0.2.0.tgz", + "integrity": "sha512-n7DHHMjR1avBbSpsTBj6fmMGh2AGrifVV4e+WYc3Q9lO+xnSZ3NyhcBND3vzzatt05LFhoKFRxrIyklmLlUtyA==" + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/min-document": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", + "integrity": "sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==", + "dependencies": { + "dom-walk": "^0.1.0" + } + }, + "node_modules/mini-svg-data-uri": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz", + "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==", + "bin": { + "mini-svg-data-uri": "cli.js" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", + "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "peer": true, + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/nano-time": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/nano-time/-/nano-time-1.0.0.tgz", + "integrity": "sha512-flnngywOoQ0lLQOTRNexn2gGSNuM9bKj9RZAWSzhQ+UJYaAFG9bac4DW9VHjUAzrOaIcajHybCTHe/bkvozQqA==", + "dependencies": { + "big-integer": "^1.6.16" + } + }, + "node_modules/nanoid": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "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==", + "dev": true + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/new-array": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/new-array/-/new-array-1.0.0.tgz", + "integrity": "sha512-K5AyFYbuHZ4e/ti52y7k18q8UHsS78FlRd85w2Fmsd6AkuLipDihPflKC0p3PN5i8II7+uHxo+CtkLiJDfmS5A==" + }, + "node_modules/ngraph.events": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/ngraph.events/-/ngraph.events-1.2.2.tgz", + "integrity": "sha512-JsUbEOzANskax+WSYiAPETemLWYXmixuPAlmZmhIbIj6FH/WDgEGCGnRwUQBK0GjOnVm8Ui+e5IJ+5VZ4e32eQ==" + }, + "node_modules/ngraph.forcelayout": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/ngraph.forcelayout/-/ngraph.forcelayout-3.3.1.tgz", + "integrity": "sha512-MKBuEh1wujyQHFTW57y5vd/uuEOK0XfXYxm3lC7kktjJLRdt/KEKEknyOlc6tjXflqBKEuYBBcu7Ax5VY+S6aw==", + "dependencies": { + "ngraph.events": "^1.0.0", + "ngraph.merge": "^1.0.0", + "ngraph.random": "^1.0.0" + } + }, + "node_modules/ngraph.graph": { + "version": "20.0.1", + "resolved": "https://registry.npmjs.org/ngraph.graph/-/ngraph.graph-20.0.1.tgz", + "integrity": "sha512-VFsQ+EMkT+7lcJO1QP8Ik3w64WbHJl27Q53EO9hiFU9CRyxJ8HfcXtfWz/U8okuoYKDctbciL6pX3vG5dt1rYA==", + "dependencies": { + "ngraph.events": "^1.2.1" + } + }, + "node_modules/ngraph.merge": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ngraph.merge/-/ngraph.merge-1.0.0.tgz", + "integrity": "sha512-5J8YjGITUJeapsomtTALYsw7rFveYkM+lBj3QiYZ79EymQcuri65Nw3knQtFxQBU1r5iOaVRXrSwMENUPK62Vg==" + }, + "node_modules/ngraph.random": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ngraph.random/-/ngraph.random-1.1.0.tgz", + "integrity": "sha512-h25UdUN/g8U7y29TzQtRm/GvGr70lK37yQPvPKXXuVfs7gCm82WipYFZcksQfeKumtOemAzBIcT7lzzyK/edLw==" + }, + "node_modules/nice-color-palettes": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/nice-color-palettes/-/nice-color-palettes-1.0.1.tgz", + "integrity": "sha512-aHEFYKuGiaga8LqMi0Ttarqzn4tKS7BaIE2MeD9SDjv6yVc7DMIu/Eax4RvUgwR7vS0hXAUEIUx9P0/54O1W0g==", + "dependencies": { + "map-limit": "0.0.1", + "minimist": "^1.2.0", + "new-array": "^1.0.0", + "xhr-request": "^1.0.1" + }, + "bin": { + "nice-color-palettes": "bin/index.js" + } + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-releases": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.8.tgz", + "integrity": "sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==" + }, + "node_modules/node-sass-magic-importer": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/node-sass-magic-importer/-/node-sass-magic-importer-5.3.2.tgz", + "integrity": "sha512-T3wTUdUoXQE3QN+EsyPpUXRI1Gj1lEsrySQ9Kzlzi15QGKi+uRa9fmvkcSy2y3BKgoj//7Mt9+s+7p0poMpg6Q==", + "dev": true, + "dependencies": { + "css-node-extract": "^2.1.3", + "css-selector-extract": "^3.3.6", + "findup-sync": "^3.0.0", + "glob": "^7.1.3", + "object-hash": "^1.3.1", + "postcss-scss": "^2.0.0", + "resolve": "^1.10.1" + }, + "engines": { + "node": ">=6.11.1", + "npm": ">=3.0.0" + } + }, + "node_modules/node-sass-package-importer": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/node-sass-package-importer/-/node-sass-package-importer-5.3.2.tgz", + "integrity": "sha512-PPHzGlwgt3JT8NO/IqBf2HgGB8Ld6OhEZmgJ9UPw20ft2OCTy8RvjRftYwwbEu2L7j4kbuovVisqXZV+XnLw8A==", + "dev": true, + "dependencies": { + "node-sass-magic-importer": "^5.3.2" + }, + "engines": { + "node": ">=6.11.1", + "npm": ">=3.0.0" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize.css": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/normalize.css/-/normalize.css-8.0.1.tgz", + "integrity": "sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg==" + }, + "node_modules/nosleep.js": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/nosleep.js/-/nosleep.js-0.7.0.tgz", + "integrity": "sha512-Z4B1HgvzR+en62ghwZf6BwAR6x4/pjezsiMcbF9KMLh7xoscpoYhaSXfY3lLkqC68AtW+/qLJ1lzvBIj0FGaTA==" + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "dev": true, + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-1.3.1.tgz", + "integrity": "sha512-OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA==", + "dev": true, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "dev": true, + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dev": true, + "dependencies": { + "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.6", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", + "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", + "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.hasown": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", + "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", + "dev": true, + "dependencies": { + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.values": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/oblivious-set": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/oblivious-set/-/oblivious-set-1.0.0.tgz", + "integrity": "sha512-z+pI07qxo4c2CulUHCDf9lcqDlMSo72N/4rLUpRXf6fu+q8vjt8y0xS+Tlf8NTJDdTXHbdeO1n3MlbctwEoXZw==" + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/openapi-typescript-codegen": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/openapi-typescript-codegen/-/openapi-typescript-codegen-0.23.0.tgz", + "integrity": "sha512-gOJXy5g3H3HlLpVNN+USrNK2i2KYBmDczk9Xk34u6JorwrGiDJZUj+al4S+i9TXdfUQ/ZaLxE59Xf3wqkxGfqA==", + "dev": true, + "dependencies": { + "camelcase": "^6.3.0", + "commander": "^9.3.0", + "fs-extra": "^10.1.0", + "handlebars": "^4.7.7", + "json-schema-ref-parser": "^9.0.9" + }, + "bin": { + "openapi": "bin/index.js" + } + }, + "node_modules/optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "dependencies": { + "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" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-bmfont-ascii": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz", + "integrity": "sha512-U4RrVsUFCleIOBsIGYOMKjn9PavsGOXxbvYGtMOEfnId0SVNsgehXh1DxUdVPLoxd5mvcEtvmKs2Mmf0Mpa1ZA==" + }, + "node_modules/parse-bmfont-binary": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz", + "integrity": "sha512-GxmsRea0wdGdYthjuUeWTMWPqm2+FAd4GI8vCvhgJsFnoGhTrLhXDDupwTo7rXVAgaLIGoVHDZS9p/5XbSqeWA==" + }, + "node_modules/parse-bmfont-xml": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/parse-bmfont-xml/-/parse-bmfont-xml-1.1.4.tgz", + "integrity": "sha512-bjnliEOmGv3y1aMEfREMBJ9tfL3WR0i0CKPj61DnSLaoxWR3nLrsQrEbCId/8rF4NyRF0cCqisSVXyQYWM+mCQ==", + "dependencies": { + "xml-parse-from-string": "^1.0.0", + "xml2js": "^0.4.5" + } + }, + "node_modules/parse-headers": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.5.tgz", + "integrity": "sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==" + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", + "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "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": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/phin": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/phin/-/phin-2.9.3.tgz", + "integrity": "sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA==" + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "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/polished": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/polished/-/polished-4.2.2.tgz", + "integrity": "sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==", + "dependencies": { + "@babel/runtime": "^7.17.8" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/popper.js": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz", + "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==", + "deprecated": "You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss": { + "version": "8.4.20", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.20.tgz", + "integrity": "sha512-6Q04AXR1212bXr5fh03u8aAwbLxAQNGQ/Q1LNa0VfOI06ZAlhPHtQvE4OIdpj4kLThXilalPnmDSOD65DcHt+g==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + } + ], + "dependencies": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-scss": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-2.1.1.tgz", + "integrity": "sha512-jQmGnj0hSGLd9RscFw9LyuSVAa5Bl1/KBPqG1NQw9w8ND55nY4ZEsdlVuYJvLPpV+y0nwTV5v/4rHPzZRihQbA==", + "dev": true, + "dependencies": { + "postcss": "^7.0.6" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-scss/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-scss/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz", + "integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "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/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/present": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/present/-/present-0.0.6.tgz", + "integrity": "sha512-8HGGcsH0xefDkhtWzXhigzieKtervWPQgyX8RtQD3cKr4wU307j8XANVSaZLxbR0+1EBonCJNOdUrQ7hbk3Kiw==" + }, + "node_modules/prettier": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.0.tgz", + "integrity": "sha512-9Lmg8hTFZKG0Asr/kW9Bp8tJjRVluO8EJQVfY2T7FMw9T5jy4I/Uvx0Rca/XWf50QQ1/SS48+6IJWnrb+2yemA==", + "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/prettier-plugin-tailwindcss": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.2.1.tgz", + "integrity": "sha512-aIO8IguumORyRsmT+E7JfJ3A9FEoyhqZR7Au7TBOege3VZkgMvHJMkufeYp4zjnDK2iq4ktkvGMNOQR9T8lisQ==", + "dev": true, + "engines": { + "node": ">=12.17.0" + }, + "peerDependencies": { + "prettier": ">=2.2.0" + } + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/promise-polyfill": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/promise-polyfill/-/promise-polyfill-3.1.0.tgz", + "integrity": "sha512-t20OwHJ4ZOUj5fV+qms67oczphAVkRC6Rrjcrne+V1FJkQMym7n69xJmYyXHulm9OUQ0Ie5KSzg0QhOYgaxy+w==" + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + }, + "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==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/quad-indices": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/quad-indices/-/quad-indices-2.0.1.tgz", + "integrity": "sha512-6jtmCsEbGAh5npThXrBaubbTjPcF0rMbn57XCJVI7LkW8PUT56V+uIrRCCWCn85PSgJC9v8Pm5tnJDwmOBewvA==", + "dependencies": { + "an-array": "^1.0.0", + "dtype": "^2.0.0", + "is-buffer": "^1.0.2" + } + }, + "node_modules/query-string": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-7.1.3.tgz", + "integrity": "sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==", + "dependencies": { + "decode-uri-component": "^0.2.2", + "filter-obj": "^1.1.0", + "split-on-first": "^1.0.0", + "strict-uri-encode": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "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/ra-core": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/ra-core/-/ra-core-4.6.2.tgz", + "integrity": "sha512-Thp9QOffve+meV9FLCmNqUwZH9za2ik/gYvwKAeMdmVJSlSYxhDtPNasAIn73WgW8pQsJhAJ5UNczWKaDQORNg==", + "dependencies": { + "clsx": "^1.1.1", + "date-fns": "^2.19.0", + "eventemitter3": "^4.0.7", + "inflection": "~1.12.0", + "jsonexport": "^3.2.0", + "lodash": "~4.17.5", + "prop-types": "^15.6.1", + "query-string": "^7.1.1", + "react-is": "^17.0.2", + "react-query": "^3.32.1" + }, + "peerDependencies": { + "history": "^5.1.0", + "react": "^16.9.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.9.0 || ^17.0.0 || ^18.0.0", + "react-hook-form": "^7.40.0", + "react-router": "^6.1.0", + "react-router-dom": "^6.1.0" + } + }, + "node_modules/ra-core/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + }, + "node_modules/ra-data-json-server": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/ra-data-json-server/-/ra-data-json-server-4.6.2.tgz", + "integrity": "sha512-ySKi7KLrn5bLyc6cdEgnxNHHeRtTqccmJ+r4dTZinTYlZ+S61UipEbcMwpN+h6qBT6579U9RRnz2O/QwFClYLQ==", + "dependencies": { + "query-string": "^7.1.1", + "ra-core": "^4.6.2" + } + }, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-auth-kit": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/react-auth-kit/-/react-auth-kit-2.8.2.tgz", + "integrity": "sha512-m5RST4ic62lB5cjSR6Ow0m6qA+KDfVFvZJYWFuYInjZxcI8kB3Mm3+U31UXt9P3Sf3GVD1zbHSM2CN/Kts+QxA==", + "dependencies": { + "js-cookie": "^3.0.1", + "react": ">=16.8.0 || ^17.x || ^18.x", + "react-router-dom": "^6.2.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/react-auth-kit" + }, + "peerDependencies": { + "js-cookie": "^3.0.1", + "react": ">=16.8.0 || ^17.x || ^18.x", + "react-dom": ">=16.8.0 || ^17.x || ^18.x", + "react-router-dom": "^6.2.0" + } + }, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-fast-compare": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.0.tgz", + "integrity": "sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==" + }, + "node_modules/react-force-graph": { + "version": "1.41.17", + "resolved": "https://registry.npmjs.org/react-force-graph/-/react-force-graph-1.41.17.tgz", + "integrity": "sha512-B49io1JfvlIm487i9jkiwCklKC0bQVXCLiY2MVqPG/GVv2GU3NgxYSMB2qKqnZdHRZLEh6pjZXNqo9accEdOmQ==", + "dependencies": { + "3d-force-graph": "^1.70", + "3d-force-graph-ar": "^1.7", + "3d-force-graph-vr": "^2.0", + "force-graph": "^1.42", + "prop-types": "^15.8", + "react-kapsule": "^2.2" + }, + "peerDependencies": { + "react": "*" + } + }, + "node_modules/react-hook-form": { + "version": "7.41.1", + "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.41.1.tgz", + "integrity": "sha512-IHUozfwuqE+P201KIJwotMd+UCKqzIprseR8UUjz1jRupkZeubg0xyeMLIaT192zHv7vBBu9bibpNV5cIB4E9g==", + "peer": true, + "engines": { + "node": ">=12.22.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/react-hook-form" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17 || ^18" + } + }, + "node_modules/react-icons": { + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-4.7.1.tgz", + "integrity": "sha512-yHd3oKGMgm7zxo3EA7H2n7vxSoiGmHk5t6Ou4bXsfcgWyhfDKMpyKfhHR6Bjnn63c+YXBLBPUql9H4wPJM6sXw==", + "peerDependencies": { + "react": "*" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/react-kapsule": { + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/react-kapsule/-/react-kapsule-2.2.6.tgz", + "integrity": "sha512-OUfvKeXSwpwVcGhyUWK6XaStEAA/KWFvlRAo/maS+GWhp7X0mSMbuZ/5jBACXhTFNGqWHf5yyt+LURiWA77HfA==", + "dependencies": { + "fromentries": "^1.3.2", + "jerrypick": "^1.0.5" + }, + "peerDependencies": { + "react": ">=16.13.1" + } + }, + "node_modules/react-popper": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-2.3.0.tgz", + "integrity": "sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==", + "dependencies": { + "react-fast-compare": "^3.0.1", + "warning": "^4.0.2" + }, + "peerDependencies": { + "@popperjs/core": "^2.0.0", + "react": "^16.8.0 || ^17 || ^18", + "react-dom": "^16.8.0 || ^17 || ^18" + } + }, + "node_modules/react-query": { + "version": "3.39.2", + "resolved": "https://registry.npmjs.org/react-query/-/react-query-3.39.2.tgz", + "integrity": "sha512-F6hYDKyNgDQfQOuR1Rsp3VRzJnWHx6aRnnIZHMNGGgbL3SBgpZTDg8MQwmxOgpCAoqZJA+JSNCydF1xGJqKOCA==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "broadcast-channel": "^3.4.1", + "match-sorter": "^6.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } + } + }, + "node_modules/react-refresh": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", + "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-router": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.6.1.tgz", + "integrity": "sha512-YkvlYRusnI/IN0kDtosUCgxqHeulN5je+ew8W+iA1VvFhf86kA+JEI/X/8NqYcr11hCDDp906S+SGMpBheNeYQ==", + "dependencies": { + "@remix-run/router": "1.2.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/react-router-dom": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.6.1.tgz", + "integrity": "sha512-u+8BKUtelStKbZD5UcY0NY90WOzktrkJJhyhNg7L0APn9t1qJNLowzrM9CHdpB6+rcPt6qQrlkIXsTvhuXP68g==", + "dependencies": { + "@remix-run/router": "1.2.1", + "react-router": "6.6.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "react": ">=16.8", + "react-dom": ">=16.8" + } + }, + "node_modules/react-select": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/react-select/-/react-select-5.7.0.tgz", + "integrity": "sha512-lJGiMxCa3cqnUr2Jjtg9YHsaytiZqeNOKeibv6WF5zbK/fPegZ1hg3y/9P1RZVLhqBTs0PfqQLKuAACednYGhQ==", + "dependencies": { + "@babel/runtime": "^7.12.0", + "@emotion/cache": "^11.4.0", + "@emotion/react": "^11.8.1", + "@floating-ui/dom": "^1.0.1", + "@types/react-transition-group": "^4.4.0", + "memoize-one": "^6.0.0", + "prop-types": "^15.6.0", + "react-transition-group": "^4.3.0", + "use-isomorphic-layout-effect": "^1.1.2" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" + } + }, + "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/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/regenerator-runtime": { + "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/regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "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==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "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==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/resolve": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "dependencies": { + "is-core-module": "^2.9.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/resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", + "dev": true, + "dependencies": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "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-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", + "deprecated": "https://github.com/lydell/resolve-url#deprecated", + "dev": true + }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rollup": { + "version": "2.79.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", + "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", + "dev": true, + "peer": true, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=10.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", + "dev": true, + "dependencies": { + "ret": "~0.1.10" + } + }, + "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==", + "dev": true, + "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/sass": { + "version": "1.57.1", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.57.1.tgz", + "integrity": "sha512-O2+LwLS79op7GI0xZ8fqzF7X2m/m8WFfI02dHOdsK5R2ECeS5F62zrwg/relM1rjSLy7Vd/DiMNIvPrQGsA0jw==", + "dev": true, + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "node_modules/scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver/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==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/sentence-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", + "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/simple-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", + "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/simple-get": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-2.8.2.tgz", + "integrity": "sha512-Ijd/rV5o+mSBBs4F/x9oDPtTx9Zb6X9brmnXvMW4J7IR15ngi9q5xxqWBKU744jTZiaXtxaPL7uHG6vtN8kUkw==", + "dependencies": { + "decompress-response": "^3.3.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" + } + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/snake-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "dependencies": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "dependencies": { + "kind-of": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/snapdragon/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/snapdragon/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "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==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", + "dev": true, + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "deprecated": "See https://github.com/lydell/source-map-url#deprecated", + "dev": true + }, + "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==", + "deprecated": "Please use @jridgewell/sourcemap-codec instead", + "dev": true + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz", + "integrity": "sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==", + "dev": true + }, + "node_modules/split-on-first": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz", + "integrity": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true, + "peer": true + }, + "node_modules/static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", + "dev": true, + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strict-uri-encode": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz", + "integrity": "sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", + "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.4.3", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", + "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", + "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/stylis": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.1.3.tgz", + "integrity": "sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==" + }, + "node_modules/super-animejs": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/super-animejs/-/super-animejs-3.1.0.tgz", + "integrity": "sha512-6MFAFJDRuvwkovxQZPruuyHinTa4rgj4hNLOndjcYYhZLckoXtVRY9rJPuq8p6c/tgZJrFYEAYAfJ2/hhNtUCA==" + }, + "node_modules/super-three": { + "version": "0.137.0", + "resolved": "https://registry.npmjs.org/super-three/-/super-three-0.137.0.tgz", + "integrity": "sha512-8jM8DiYiXQoalUoeFRxKWbW6KFQo3GFwgw+3vE2y6SJU/einw+JvuvgK+WhbIYRfz4LQV68nyOQ2eEZqAuouGw==" + }, + "node_modules/superjson": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/superjson/-/superjson-1.12.2.tgz", + "integrity": "sha512-ugvUo9/WmvWOjstornQhsN/sR9mnGtWGYeTxFuqLb4AiT4QdUavjGFRALCPKWWnAiUJ4HTpytj5e0t5HoMRkXg==", + "dependencies": { + "copy-anything": "^3.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/swap-case": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/swap-case/-/swap-case-1.1.2.tgz", + "integrity": "sha512-BAmWG6/bx8syfc6qXPprof3Mn5vQgf5dwdUNJhsNqU9WdPt5P+ES/wQ5bxfijy8zwZgZZHslC3iAsxsuQMCzJQ==", + "dev": true, + "dependencies": { + "lower-case": "^1.1.1", + "upper-case": "^1.1.1" + } + }, + "node_modules/swap-case/node_modules/lower-case": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", + "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==", + "dev": true + }, + "node_modules/swap-case/node_modules/upper-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", + "integrity": "sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==", + "dev": true + }, + "node_modules/tailwindcss": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.2.4.tgz", + "integrity": "sha512-AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ==", + "dependencies": { + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "color-name": "^1.1.4", + "detective": "^5.2.1", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.2.12", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "lilconfig": "^2.0.6", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.18", + "postcss-import": "^14.1.0", + "postcss-js": "^4.0.0", + "postcss-load-config": "^3.1.4", + "postcss-nested": "6.0.0", + "postcss-selector-parser": "^6.0.10", + "postcss-value-parser": "^4.2.0", + "quick-lru": "^5.1.1", + "resolve": "^1.22.1" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "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/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/tailwindcss/node_modules/postcss-import": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz", + "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/tailwindcss/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==", + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.3.3" + } + }, + "node_modules/tailwindcss/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==", + "dependencies": { + "lilconfig": "^2.0.5", + "yaml": "^1.10.2" + }, + "engines": { + "node": ">= 10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/tailwindcss/node_modules/postcss-nested": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.0.tgz", + "integrity": "sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/three": { + "version": "0.148.0", + "resolved": "https://registry.npmjs.org/three/-/three-0.148.0.tgz", + "integrity": "sha512-8uzVV+qhTPi0bOFs/3te3RW6hb3urL8jYEl6irjCWo/l6sr8MPNMcClFev/MMYeIxr0gmDcoXTy/8LXh/LXkfw==" + }, + "node_modules/three-bmfont-text": { + "version": "2.4.0", + "resolved": "git+ssh://git@github.com/dmarcos/three-bmfont-text.git#21d017046216e318362c48abd1a48bddfb6e0733", + "integrity": "sha512-lIMa1n+QKNU1f/LZgtS1oUGpoop3MuVXrUr5ybZOUR3+Jk//zjqScnQpHml6MWyvZzL8A5/1Hd8Tsqd3M1kudA==", + "license": "MIT", + "dependencies": { + "array-shuffle": "^1.0.1", + "inherits": "^2.0.1", + "layout-bmfont-text": "^1.2.0", + "nice-color-palettes": "^1.0.1", + "object-assign": "^4.0.1", + "quad-indices": "^2.0.1", + "three-buffer-vertex-data": "dmarcos/three-buffer-vertex-data#69378fc58daf27d3b1d930df9f233473e4a4818c" + } + }, + "node_modules/three-buffer-vertex-data": { + "version": "1.1.0", + "resolved": "git+ssh://git@github.com/dmarcos/three-buffer-vertex-data.git#69378fc58daf27d3b1d930df9f233473e4a4818c", + "integrity": "sha512-ZPCCbGfueRzd2/YwH136UnVN+N11Mvxu7uPaEzIdtuk0m5HPs1LGXOM5hOkpxamjvqSC6MDJ3nd11grGi7sMKw==", + "license": "MIT", + "dependencies": { + "flatten-vertex-data": "^1.0.0" + } + }, + "node_modules/three-forcegraph": { + "version": "1.39.8", + "resolved": "https://registry.npmjs.org/three-forcegraph/-/three-forcegraph-1.39.8.tgz", + "integrity": "sha512-lmOirKeM+qo12mju1MVFMNk5nrbS2+V0CUIyrJeTXz9hym4sjoIbUBM5FI7IQiu140nfSgxjLnetk1fi78qWuw==", + "dependencies": { + "accessor-fn": "1", + "d3-array": "1 - 3", + "d3-force-3d": "2 - 3", + "d3-scale": "1 - 4", + "d3-scale-chromatic": "1 - 3", + "data-joint": "^1.2", + "kapsule": "^1.13", + "ngraph.forcelayout": "^3.3", + "ngraph.graph": "^20.0", + "tinycolor2": "^1.4" + }, + "peerDependencies": { + "three": ">=0.118.3" + } + }, + "node_modules/three-pathfinding": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/three-pathfinding/-/three-pathfinding-0.7.0.tgz", + "integrity": "sha512-UwWvzgio1UFe81n5jKHNzB4B+AG3wfZ54OKp7bTb1MHuC3cy6RTtr0dbbiPQQoqxzr+DRArR2DUwQSEknw5+nw==" + }, + "node_modules/three-render-objects": { + "version": "1.27.6", + "resolved": "https://registry.npmjs.org/three-render-objects/-/three-render-objects-1.27.6.tgz", + "integrity": "sha512-mvNHk3oujVuajW0U+/UxQ7RBNmCLXgOIqdtThPXJCPimInwdPCw6lWVETgp6WAA1TebZLdpvKPfXpG5hgOJRvQ==", + "dependencies": { + "@tweenjs/tween.js": "18", + "accessor-fn": "1", + "kapsule": "^1.13", + "polished": "4" + }, + "peerDependencies": { + "three": "*" + } + }, + "node_modules/timed-out": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", + "integrity": "sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/tinycolor2": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.5.1.tgz", + "integrity": "sha512-BHlrsGeYN2OpkRpfAgkEwCMu6w8Quq8JkK/mp4c55NZP7OwceJObR1CPZt62TqiA0Y3J5pwuDX+fXDqc35REtg==", + "engines": { + "node": "*" + } + }, + "node_modules/title-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/title-case/-/title-case-2.1.1.tgz", + "integrity": "sha512-EkJoZ2O3zdCz3zJsYCsxyq2OC5hrxR9mfdd5I+w8h/tmFfeOxJ+vvkxsKxdmN0WtS9zLdHEgfgVOiMVgv+Po4Q==", + "dev": true, + "dependencies": { + "no-case": "^2.2.0", + "upper-case": "^1.0.3" + } + }, + "node_modules/title-case/node_modules/lower-case": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", + "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==", + "dev": true + }, + "node_modules/title-case/node_modules/no-case": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", + "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", + "dev": true, + "dependencies": { + "lower-case": "^1.1.1" + } + }, + "node_modules/title-case/node_modules/upper-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", + "integrity": "sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "dependencies": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "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==", + "dev": true, + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "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==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tslib": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + }, + "node_modules/tslint": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/tslint/-/tslint-6.1.3.tgz", + "integrity": "sha512-IbR4nkT96EQOvKE2PW/djGz8iGNeJ4rF2mBfiYaR/nvUWYKJhLwimoJKgjIFEIDibBtOevj7BqCRL4oHeWWUCg==", + "deprecated": "TSLint has been deprecated in favor of ESLint. Please see https://github.com/palantir/tslint/issues/4534 for more information.", + "dev": true, + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "builtin-modules": "^1.1.1", + "chalk": "^2.3.0", + "commander": "^2.12.1", + "diff": "^4.0.1", + "glob": "^7.1.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "mkdirp": "^0.5.3", + "resolve": "^1.3.2", + "semver": "^5.3.0", + "tslib": "^1.13.0", + "tsutils": "^2.29.0" + }, + "bin": { + "tslint": "bin/tslint" + }, + "engines": { + "node": ">=4.8.0" + }, + "peerDependencies": { + "typescript": ">=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev || >= 4.0.0-dev" + } + }, + "node_modules/tslint-react": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/tslint-react/-/tslint-react-5.0.0.tgz", + "integrity": "sha512-/IbcSmoBPlFic8kQaRfQ4knTY4mivwo5LVzvozvX6Dyu2ynEnrh1dIcR2ujjyp/IodXqY/H5GbxFxSMo/Kf2Hg==", + "deprecated": "tslint-react is deprecated along with TSLint", + "dev": true, + "dependencies": { + "tsutils": "^3.17.1" + }, + "peerDependencies": { + "tslint": "^6.0.0", + "typescript": ">=3.4.1" + } + }, + "node_modules/tslint/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "peer": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/tslint/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true, + "peer": true + }, + "node_modules/tslint/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "peer": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/tslint/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "peer": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/tslint/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true, + "peer": true + }, + "node_modules/tslint/node_modules/tsutils": { + "version": "2.29.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz", + "integrity": "sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==", + "dev": true, + "peer": true, + "dependencies": { + "tslib": "^1.8.1" + }, + "peerDependencies": { + "typescript": ">=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >= 3.0.0-dev || >= 3.1.0-dev" + } + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typed-styles": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/typed-styles/-/typed-styles-0.0.7.tgz", + "integrity": "sha512-pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q==" + }, + "node_modules/typescript": { + "version": "4.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.4.tgz", + "integrity": "sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/uglify-js": { + "version": "3.17.4", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", + "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", + "dev": true, + "optional": true, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/union-value/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unload": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unload/-/unload-2.2.0.tgz", + "integrity": "sha512-B60uB5TNBLtN6/LsgAf3udH9saB5p7gqJwcFfbOEZ8BcBHnGwCf6G/TGiEqkRAxX7zAFIUtzdrXQSdL3Q/wqNA==", + "dependencies": { + "@babel/runtime": "^7.6.2", + "detect-node": "^2.0.4" + } + }, + "node_modules/unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", + "dev": true, + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", + "dev": true, + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "dev": true, + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", + "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "browserslist-lint": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/upper-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", + "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/upper-case-first": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", + "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", + "deprecated": "Please see https://github.com/lydell/urix#deprecated", + "dev": true + }, + "node_modules/url-set-query": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/url-set-query/-/url-set-query-1.0.0.tgz", + "integrity": "sha512-3AChu4NiXquPfeckE5R5cGdiHCMWJx1dwCWOmWIL4KHAziJNOFIYJlpGFeKDvwLPHovZRCxK3cYlwzqI9Vp+Gg==" + }, + "node_modules/use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/use-debounce": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/use-debounce/-/use-debounce-9.0.3.tgz", + "integrity": "sha512-FhtlbDtDXILJV7Lix5OZj5yX/fW1tzq+VrvK1fnT2bUrPOGruU9Rw8NCEn+UI9wopfERBEZAOQ8lfeCJPllgnw==", + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/use-isomorphic-layout-effect": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz", + "integrity": "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/use-sync-external-store": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", + "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/vite": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/vite/-/vite-3.2.5.tgz", + "integrity": "sha512-4mVEpXpSOgrssFZAOmGIr85wPHKvaDAcXqxVxVRZhljkJOMZi1ibLibzjLHzJvcok8BMguLc7g1W6W/GqZbLdQ==", + "dev": true, + "peer": true, + "dependencies": { + "esbuild": "^0.15.9", + "postcss": "^8.4.18", + "resolve": "^1.22.1", + "rollup": "^2.79.1" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + }, + "peerDependencies": { + "@types/node": ">= 14", + "less": "*", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/warning": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", + "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/webvr-polyfill": { + "version": "0.10.12", + "resolved": "https://registry.npmjs.org/webvr-polyfill/-/webvr-polyfill-0.10.12.tgz", + "integrity": "sha512-trDJEVUQnRIVAnmImjEQ0BlL1NfuWl8+eaEdu+bs4g59c7OtETi/5tFkgEFDRaWEYwHntXs/uFF3OXZuutNGGA==", + "dependencies": { + "cardboard-vr-display": "^1.0.19" + } + }, + "node_modules/webvr-polyfill-dpdb": { + "version": "1.0.18", + "resolved": "https://registry.npmjs.org/webvr-polyfill-dpdb/-/webvr-polyfill-dpdb-1.0.18.tgz", + "integrity": "sha512-O0S1ZGEWyPvyZEkS2VbyV7mtir/NM9MNK3EuhbHPoJ8EHTky2pTXehjIl+IiDPr+Lldgx129QGt3NGly7rwRPw==" + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/word-wrapper": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/word-wrapper/-/word-wrapper-1.0.7.tgz", + "integrity": "sha512-VOPBFCm9b6FyYKQYfn9AVn2dQvdR/YOVFV6IBRA1TBMJWKffvhEX1af6FMGrttILs2Q9ikCRhLqkbY2weW6dOQ==" + }, + "node_modules/wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", + "dev": true + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/xhr": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.6.0.tgz", + "integrity": "sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==", + "dependencies": { + "global": "~4.4.0", + "is-function": "^1.0.1", + "parse-headers": "^2.0.0", + "xtend": "^4.0.0" + } + }, + "node_modules/xhr-request": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/xhr-request/-/xhr-request-1.1.0.tgz", + "integrity": "sha512-Y7qzEaR3FDtL3fP30k9wO/e+FBnBByZeybKOhASsGP30NIkRAAkKD/sCnLvgEfAIEC1rcmK7YG8f4oEnIrrWzA==", + "dependencies": { + "buffer-to-arraybuffer": "^0.0.5", + "object-assign": "^4.1.1", + "query-string": "^5.0.1", + "simple-get": "^2.7.0", + "timed-out": "^4.0.1", + "url-set-query": "^1.0.0", + "xhr": "^2.0.4" + } + }, + "node_modules/xhr-request/node_modules/query-string": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", + "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", + "dependencies": { + "decode-uri-component": "^0.2.0", + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/xhr-request/node_modules/strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/xml-parse-from-string": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz", + "integrity": "sha512-ErcKwJTF54uRzzNMXq2X5sMIy88zJvfN2DmdoQvy7PAFJ+tPRU6ydWuOKNMyfmOjdyBQTFREi60s0Y0SyI0G0g==" + }, + "node_modules/xml2js": { + "version": "0.4.23", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz", + "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==", + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/xmlbuilder": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", + "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", + "engines": { + "node": ">=4.0" + } + }, + "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/yallist": { + "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", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zrender": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/zrender/-/zrender-5.4.1.tgz", + "integrity": "sha512-M4Z05BHWtajY2241EmMPHglDQAJ1UyHQcYsxDNzD9XLSkPDqMq4bB28v9Pb4mvHnVQ0GxyTklZ/69xCFP6RXBA==", + "dependencies": { + "tslib": "2.3.0" + } + }, + "node_modules/zrender/node_modules/tslib": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" + } + } +} diff --git a/frontend/package.json b/frontend/package.json index a83c6169..6a7c14a6 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,74 +1,70 @@ { - "name": "frontend", - "version": "0.1.0", + "name": "collide", "private": true, + "version": "0.0.0", + "type": "module", "scripts": { - "serve": "vue-cli-service serve", - "build": "vue-cli-service build", - "test:unit": "vue-cli-service test:unit", - "lint": "vue-cli-service lint" + "dev": "vite", + "build": "vite build", + "format": "prettier --write .", + "preview": "vite preview", + "generate-client": "openapi --input ./openapi.json --output ./src/client --client axios" }, "dependencies": { - "@babel/polyfill": "^7.2.5", - "axios": "^0.18.0", - "core-js": "^3.4.3", - "register-service-worker": "^1.0.0", - "typesafe-vuex": "^3.1.1", - "vee-validate": "^2.1.7", - "vue": "^2.5.22", - "vue-class-component": "^6.0.0", - "vue-property-decorator": "^7.3.0", - "vue-router": "^3.0.2", - "vuetify": "^1.4.4", - "vuex": "^3.1.0" + "@blueprintjs/core": "^4.12.0", + "@blueprintjs/popover2": "^1.10.1", + "@blueprintjs/select": "^4.8.11", + "@headlessui/react": "^1.7.7", + "@heroicons/react": "^2.0.13", + "@react-hook/window-size": "^3.1.1", + "@tailwindcss/forms": "^0.5.3", + "@tailwindcss/typography": "^0.5.9", + "@tanstack/react-query": "^4.22.0", + "@tanstack/react-query-devtools": "^4.22.0", + "axios": "^1.2.0", + "echarts": "^5.4.1", + "jwt-decode": "^3.1.2", + "normalize.css": "^8.0.1", + "ra-data-json-server": "^4.5.2", + "react": "^18.2.0", + "react-auth-kit": "^2.8.2", + "react-dom": "^18.2.0", + "react-force-graph": "^1.41.16", + "react-icons": "^4.7.1", + "react-router-dom": "^6.4.3", + "react-select": "^5.7.0", + "use-debounce": "^9.0.3" }, "devDependencies": { - "@types/jest": "^23.3.13", - "@vue/cli-plugin-babel": "^4.1.1", - "@vue/cli-plugin-pwa": "^4.1.1", - "@vue/cli-plugin-typescript": "^4.1.1", - "@vue/cli-plugin-unit-jest": "^4.1.1", - "@vue/cli-service": "^4.1.1", - "@vue/test-utils": "^1.0.0-beta.28", - "babel-core": "7.0.0-bridge.0", - "ts-jest": "^23.10.5", - "typescript": "^3.2.4", - "vue-cli-plugin-vuetify": "^2.0.2", - "vue-template-compiler": "^2.5.22" + "@blueprintjs/eslint-config": "^2.6.3", + "@blueprintjs/eslint-plugin": "^2.5.3", + "@types/react": "^18.0.25", + "@types/react-dom": "^18.0.9", + "@typescript-eslint/eslint-plugin": "^5.45.0", + "@typescript-eslint/parser": "^5.45.0", + "@vitejs/plugin-react": "^2.2.0", + "autoprefixer": "^10.4.13", + "babel-eslint": "^10.1.0", + "eslint": "^8.28.0", + "eslint-config-prettier": "^8.5.0", + "eslint-config-standard-with-typescript": "^23.0.0", + "eslint-plugin-react": "^7.31.11", + "node-sass-package-importer": "^5.3.2", + "openapi-typescript-codegen": "^0.23.0", + "postcss": "^8.4.20", + "prettier": "^2.8.0", + "prettier-plugin-tailwindcss": "^0.2.1", + "sass": "^1.56.1", + "tailwindcss": "^3.2.4", + "typescript": "^4.9.3" }, - "postcss": { - "plugins": { - "autoprefixer": {} - } - }, - "browserslist": [ - "> 1%", - "last 2 versions", - "not ie <= 10" - ], - "jest": { - "moduleFileExtensions": [ - "js", - "jsx", - "json", - "vue", - "ts", - "tsx" - ], - "transform": { - "^.+\\.vue$": "vue-jest", - ".+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$": "jest-transform-stub", - "^.+\\.tsx?$": "ts-jest" - }, - "moduleNameMapper": { - "^@/(.*)$": "/src/$1" - }, - "snapshotSerializers": [ - "jest-serializer-vue" - ], - "testMatch": [ - "**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)" - ], - "testURL": "http://localhost/" + "prettier": { + "semi": false, + "tabWidth": 2, + "printWidth": 100, + "singleQuote": true, + "trailingComma": "all", + "jsxSingleQuote": true, + "bracketSpacing": true } } diff --git a/frontend/postcss.config.cjs b/frontend/postcss.config.cjs new file mode 100644 index 00000000..33ad091d --- /dev/null +++ b/frontend/postcss.config.cjs @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} diff --git a/frontend/public/favicon.ico b/frontend/public/favicon.ico deleted file mode 100644 index c7b9a43c..00000000 Binary files a/frontend/public/favicon.ico and /dev/null differ diff --git a/frontend/public/img/icons/android-chrome-192x192.png b/frontend/public/img/icons/android-chrome-192x192.png deleted file mode 100644 index b02aa64d..00000000 Binary files a/frontend/public/img/icons/android-chrome-192x192.png and /dev/null differ diff --git a/frontend/public/img/icons/android-chrome-512x512.png b/frontend/public/img/icons/android-chrome-512x512.png deleted file mode 100644 index 06088b01..00000000 Binary files a/frontend/public/img/icons/android-chrome-512x512.png and /dev/null differ diff --git a/frontend/public/img/icons/apple-touch-icon-120x120.png b/frontend/public/img/icons/apple-touch-icon-120x120.png deleted file mode 100644 index 1427cf62..00000000 Binary files a/frontend/public/img/icons/apple-touch-icon-120x120.png and /dev/null differ diff --git a/frontend/public/img/icons/apple-touch-icon-152x152.png b/frontend/public/img/icons/apple-touch-icon-152x152.png deleted file mode 100644 index f24d454a..00000000 Binary files a/frontend/public/img/icons/apple-touch-icon-152x152.png and /dev/null differ diff --git a/frontend/public/img/icons/apple-touch-icon-180x180.png b/frontend/public/img/icons/apple-touch-icon-180x180.png deleted file mode 100644 index 404e192a..00000000 Binary files a/frontend/public/img/icons/apple-touch-icon-180x180.png and /dev/null differ diff --git a/frontend/public/img/icons/apple-touch-icon-60x60.png b/frontend/public/img/icons/apple-touch-icon-60x60.png deleted file mode 100644 index cf10a560..00000000 Binary files a/frontend/public/img/icons/apple-touch-icon-60x60.png and /dev/null differ diff --git a/frontend/public/img/icons/apple-touch-icon-76x76.png b/frontend/public/img/icons/apple-touch-icon-76x76.png deleted file mode 100644 index c500769e..00000000 Binary files a/frontend/public/img/icons/apple-touch-icon-76x76.png and /dev/null differ diff --git a/frontend/public/img/icons/apple-touch-icon.png b/frontend/public/img/icons/apple-touch-icon.png deleted file mode 100644 index 03c0c5d5..00000000 Binary files a/frontend/public/img/icons/apple-touch-icon.png and /dev/null differ diff --git a/frontend/public/img/icons/favicon-16x16.png b/frontend/public/img/icons/favicon-16x16.png deleted file mode 100644 index 42af0096..00000000 Binary files a/frontend/public/img/icons/favicon-16x16.png and /dev/null differ diff --git a/frontend/public/img/icons/favicon-32x32.png b/frontend/public/img/icons/favicon-32x32.png deleted file mode 100644 index 46ca04de..00000000 Binary files a/frontend/public/img/icons/favicon-32x32.png and /dev/null differ diff --git a/frontend/public/img/icons/msapplication-icon-144x144.png b/frontend/public/img/icons/msapplication-icon-144x144.png deleted file mode 100644 index 7808237a..00000000 Binary files a/frontend/public/img/icons/msapplication-icon-144x144.png and /dev/null differ diff --git a/frontend/public/img/icons/mstile-150x150.png b/frontend/public/img/icons/mstile-150x150.png deleted file mode 100644 index 3b37a43a..00000000 Binary files a/frontend/public/img/icons/mstile-150x150.png and /dev/null differ diff --git a/frontend/public/img/icons/safari-pinned-tab.svg b/frontend/public/img/icons/safari-pinned-tab.svg deleted file mode 100644 index 732afd8e..00000000 --- a/frontend/public/img/icons/safari-pinned-tab.svg +++ /dev/null @@ -1,149 +0,0 @@ - - - - -Created by potrace 1.11, written by Peter Selinger 2001-2013 - - - - - diff --git a/frontend/public/index.html b/frontend/public/index.html deleted file mode 100644 index cad5aa7e..00000000 --- a/frontend/public/index.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - <%= VUE_APP_NAME %> - - - - - - - -
- - - diff --git a/frontend/public/manifest.json b/frontend/public/manifest.json deleted file mode 100644 index 8ce10b91..00000000 --- a/frontend/public/manifest.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "name": "frontend", - "short_name": "frontend", - "icons": [ - { - "src": "/img/icons/android-chrome-192x192.png", - "sizes": "192x192", - "type": "image/png" - }, - { - "src": "/img/icons/android-chrome-512x512.png", - "sizes": "512x512", - "type": "image/png" - } - ], - "start_url": "/", - "display": "standalone", - "background_color": "#000000", - "theme_color": "#4DBA87" -} diff --git a/frontend/public/robots.txt b/frontend/public/robots.txt deleted file mode 100644 index eb053628..00000000 --- a/frontend/public/robots.txt +++ /dev/null @@ -1,2 +0,0 @@ -User-agent: * -Disallow: diff --git a/frontend/public/vite.svg b/frontend/public/vite.svg new file mode 100644 index 00000000..e7b8dfb1 --- /dev/null +++ b/frontend/public/vite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx new file mode 100644 index 00000000..fb047cc6 --- /dev/null +++ b/frontend/src/App.tsx @@ -0,0 +1,71 @@ +/* import React, { lazy, Suspense } from 'react' */ +import React from 'react' +import { useLocation, Navigate, Outlet } from 'react-router-dom' +import { Route, Routes } from 'react-router-dom' +import Home from './pages/Home' +import Landing from './pages/Landing' +import Welcome from './pages/Landing/Welcome' +import APILanding from './pages/Landing/APINotify' +import FAQLanding from './pages/Landing/FAQ' +import About from './pages/Landing/About' +import Contact from './pages/Landing/Contact' +import PrivacyPolicy from './pages/Landing/PrivacyPolicy' +import TermsOfUse from './pages/Landing/TermsOfUse' +import OpenSource from './pages/Landing/OpenSource' +import Layout from './pages/Layout' +import GraphDisplay from './pages/Home/ForceGraph' +import Login from './pages/Login' +import Register from './pages/Register' +import PasswordReset from './pages/Password' +import PageNotFound from './components/PageNotFound' +import { UserSettings } from './pages/Home' +import APINotify from './pages/Landing/APINotify' +import { useIsAuthenticated } from 'react-auth-kit' + +// const Home = lazy(() => import('./pages/Home')) +// const Login = lazy(() => import('./pages/Login')) + +function RequireAuth() { + const isAuthenticated = useIsAuthenticated() + const auth = isAuthenticated() + console.log('auth', auth) + const location = useLocation() + + return auth ? : +} + +function App() { + return ( + + }> + {/* public routes */} + }> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + + + }> + }> + } /> + } /> + } /> + + + + {/* catch all */} + } /> + + + ) +} +export default App diff --git a/frontend/src/App.vue b/frontend/src/App.vue deleted file mode 100644 index 795a97c9..00000000 --- a/frontend/src/App.vue +++ /dev/null @@ -1,43 +0,0 @@ - - - diff --git a/frontend/src/api.ts b/frontend/src/api.ts deleted file mode 100644 index c24712b8..00000000 --- a/frontend/src/api.ts +++ /dev/null @@ -1,45 +0,0 @@ -import axios from 'axios'; -import { apiUrl } from '@/env'; -import { IUserProfile, IUserProfileUpdate, IUserProfileCreate } from './interfaces'; - -function authHeaders(token: string) { - return { - headers: { - Authorization: `Bearer ${token}`, - }, - }; -} - -export const api = { - async logInGetToken(username: string, password: string) { - const params = new URLSearchParams(); - params.append('username', username); - params.append('password', password); - - return axios.post(`${apiUrl}/api/v1/login/access-token`, params); - }, - async getMe(token: string) { - return axios.get(`${apiUrl}/api/v1/users/me`, authHeaders(token)); - }, - async updateMe(token: string, data: IUserProfileUpdate) { - return axios.put(`${apiUrl}/api/v1/users/me`, data, authHeaders(token)); - }, - async getUsers(token: string) { - return axios.get(`${apiUrl}/api/v1/users/`, authHeaders(token)); - }, - async updateUser(token: string, userId: number, data: IUserProfileUpdate) { - return axios.put(`${apiUrl}/api/v1/users/${userId}`, data, authHeaders(token)); - }, - async createUser(token: string, data: IUserProfileCreate) { - return axios.post(`${apiUrl}/api/v1/users/`, data, authHeaders(token)); - }, - async passwordRecovery(email: string) { - return axios.post(`${apiUrl}/api/v1/password-recovery/${email}`); - }, - async resetPassword(password: string, token: string) { - return axios.post(`${apiUrl}/api/v1/reset-password/`, { - new_password: password, - token, - }); - }, -}; diff --git a/frontend/src/api/authApi.ts b/frontend/src/api/authApi.ts new file mode 100644 index 00000000..f60d7050 --- /dev/null +++ b/frontend/src/api/authApi.ts @@ -0,0 +1,84 @@ +import axios from './axios' + +export interface graphDataType { + nodes: { + id: string + name: string + type: string + val: number + } + links: { + source: 'string' + target: 'string' + type: 'string' + color: 'string' + dash: [0] + amount: 0 + } +} + +export interface ApiUser { + id: string + email: string + is_active: string + is_superuser: string + is_verified: string + org: string + darkmkode: false + country: string + province: string + language: string + timezone: string + search: [string] +} + +export interface LoginAuth { + access_token: string + token_type: string +} + +export const loginUser = async (formData) => { + const response = await axios.post('v1/auth/jwt/login/', formData, { + withCredentials: true, + }) + return response.data +} + +export const logoutUser = async (formData) => { + const response = await axios.post('v1/auth/jwt/logout/', formData, { + withCredentials: true, + }) + return response.data +} + +export const registerUser = async (email: string, password: string) => { + const response = await axios.post('v1/auth/register/', email, password) + return response.data +} + +export const forgotPassword = async (email: string) => { + const response = await axios.post('v1/auth/forgot-password/', email) + return response.data +} + +export const resetPassword = async (token: string, password: string) => { + const response = await axios.post('v1/auth/reset-password/', { token, password }) + return response.data +} + +export const getMe = async (bearer_token: string) => { + const response = await axios.get('v1/users/me', { + withCredentials: true, + headers: { + accept: 'application/json', + Authorization: bearer_token, + }, + }) + return response.data +} + +export const updateCurrentUser = async (data: ApiUser) => { + const response = await axios.patch('v1/users/me/', data, { withCredentials: true }) + + return response.data +} diff --git a/frontend/src/api/axios.ts b/frontend/src/api/axios.ts new file mode 100644 index 00000000..498de0f7 --- /dev/null +++ b/frontend/src/api/axios.ts @@ -0,0 +1,13 @@ +import axios from 'axios'; +const BASE_URL = 'http://localhost/api' + +export default axios.create({ + baseURL: BASE_URL +}); + +export const axiosPrivate = axios.create({ + baseURL: BASE_URL, + headers: { 'Content-Type': 'application/x-www-form-urlencoded' }, + withCredentials: true + +}); diff --git a/frontend/src/api/graph.ts b/frontend/src/api/graph.ts new file mode 100644 index 00000000..07a3d191 --- /dev/null +++ b/frontend/src/api/graph.ts @@ -0,0 +1,46 @@ +import axios from './axios' + +export interface graphDataType { + nodes: { + id: string + name: string + type: string + value: number + nodeColor: string + } + links: { + source: string + target: string + type: string + linkColor: string + linkDirectionalArrowLength: 0 + linkDirectionalArrowRelPos: 0 + linkWidth: 1 + color: 'string' + dash: [0] + amount: 0 + } + +} + +interface SearchQuery { + query: string +} + +export async function getSampleGraph() { + return await axios.get('c/forcegraph/sample').then((res) => res.data) +} + +export async function getGraph(query: string) { + query = query.join('&') + //console.log('getGraph', query) + return await axios.post('c/forcegraph/search/' + query).then((res) => res.data) +} + +export async function getSearchResults(query: string) { + const SEARCH_URL = 'c/forcegraph/search_options?query=' + const match_name = query.toLowerCase().split(' ').join('') + //console.log('getSearchResults', query) + //console.log(await axios.post(SEARCH_URL + match_name).then((res) => res.data)) + return await axios.post(SEARCH_URL + match_name).then((res) => res.data) +} diff --git a/frontend/src/assets/faq.tsx b/frontend/src/assets/faq.tsx new file mode 100644 index 00000000..17ac0fdf --- /dev/null +++ b/frontend/src/assets/faq.tsx @@ -0,0 +1,51 @@ +import { Link } from 'react-router-dom' + +// HEADER +export const FaqHeader = () => { + return 'Frequently asked questions' +} + +// QUESTION 1 +export const FaqQ1 = () => { + return 'What is LobbyRadar?' +} + +export const FaqA1 = () => { + return 'LobbyRadar is (currently) a website to help people explore and understand lobbying-related open source datasets provided by the Government of Canada and eventually the provinces therein.' +} + +// QUESTION 2 +export const FaqQ2 = () => { + return 'How was LobbyRadar formed?' +} + +export const FaqA2 = () => { + return 'Once upon a time, a team member was reflecting on the interconnectedness of industry, lobbyists and our government. After a bit of digging, it was clear that a lot of the data were available through government transparency/open source initiatives but fairly inaccessible to individuals due to their volume, format and quality. The data were compelling enough to start putting together the bigger picture and thus LobbyRadar was born.' +} + +// QUESTION 3 +export const FaqQ3 = () => { + return 'Who is behind LobbyRadar?' +} + +export const FaqA3 = () => { + return 'A strange combination of a data engineer, a process engineer and a data scientist (all with day jobs).' +} + +// QUESTION 4 +export const FaqQ4 = () => { + return 'Where does this data come from?' +} + +export const FaqA4 = () => { + return 'A combination of Elections Canada, the Office of the Commissioner of Lobbying of Canada, House of Commons, Parliament of Canada LEGISinfo and Corporations Canada. For more information, explore our Open Source License page.' +} + +//QUESTION 5 +export const FaqQ5 = () => { + return 'I have a question not addressed in this FAQ. Whom do I contact?' +} + +export const FaqA5 = () => { + return (
Please reach out to us via the contact page.
) +} diff --git a/frontend/src/assets/landing_strings.tsx b/frontend/src/assets/landing_strings.tsx new file mode 100644 index 00000000..d2a05e9f --- /dev/null +++ b/frontend/src/assets/landing_strings.tsx @@ -0,0 +1,93 @@ +export const ProjectName = () => { + return 'LobbyRadar' +} + +// NAV util bar +export const WebsiteName = () => { + return 'LobbyRadar' +} + +export const LoginStr = () => { + return 'Login' +} + +export const SignUpStr = () => { + return 'Signup' +} + +// HERO + +export const HeroAccent = () => { + return 'Curious by nature?' +} + +export const HeroPurpose = () => { + return 'EXPLORE CANADIAN LOBBYING ACTIVITIES' +} + +export const HeroDescription = () => { + return 'Improving access to Government lobbying data in Canada for - ' +} + +export const HeroTarget = () => { + return 'Researchers, journalists, and the public' +} + +export const HeroButton = () => { + return 'Get Started' +} + +// HERO SECTION +export const HeroSectionPurpose = () => { + return 'EXPLORE CANADIAN LOBBYING ACTIVITIES' +} + +export const HeroSectionSolution = () => { + return 'LobbyRadar - Your Comprehensive Lobbying Information Resource' +} + +export const HeroSectionDescription = () => { + return "At LobbyRadar, we provide a powerful data analytics dashboard to help you easily navigate through vast amounts of government data related to lobbying activities. We combine the power of sound fundamentals, dynamic aggregations and stunning force-directed graphs to give you a new way to understand and interact with government data. Whether you're a researcher, student or just curious, our website is the perfect tool for you. Sign up today and start exploring!" +} + +export const HeroSectionButton = () => { + return 'Get Started' +} + +// CALL TO ACTION +export const CtaPunchline1 = () => { + return 'Explore the power of lobbying data analytics.' +} +export const CtaPunchline2 = () => { + return 'Start tracking today with LobbyRadar.' +} +export const CtaButton = () => { + return 'Get Started' +} +export const CtaLearnMore = () => { + return 'Learn more' +} + +// STATS + +export const StatsPunchline = () => { + return 'Just some wild people making politics more accessible' +} +export const Stat1Label = () => { + return 'Players' +} +export const Stat1Value = () => { + return '178,181' +} +export const Stat2Label = () => { + return 'Communications' +} +export const Stat2Value = () => { + return '367,825' +} +export const Stat3Label = () => { + return 'Elx Donations' +} +export const Stat3Value = () => { + return '$592,376,815' +} diff --git a/frontend/src/assets/license_forcegraph.tsx b/frontend/src/assets/license_forcegraph.tsx new file mode 100644 index 00000000..800e6b7a --- /dev/null +++ b/frontend/src/assets/license_forcegraph.tsx @@ -0,0 +1,43 @@ +export const ForceGraphLicense = () => { + return ( +
+

LICENSES - FORCE-GRAPH

+

+ + force-graph + +

+ + MIT License + +

+ Copyright (c) 2018 Vasco Asturiano +

+ +

+ Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: +

+ +

+ The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. +

+ +

+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +

+ +
+ ) +} \ No newline at end of file diff --git a/frontend/src/assets/license_gov.tsx b/frontend/src/assets/license_gov.tsx new file mode 100644 index 00000000..039685a1 --- /dev/null +++ b/frontend/src/assets/license_gov.tsx @@ -0,0 +1,64 @@ +export const OurCommonsLicense = () => { + return ( +
+

SOURCE - OurCommons

+

+ + House of Commons Open Data + +

+
+ ) +} + +export const ISEDLicense = () => { + return ( +
+

SOURCE - ISED

+

+ + Corporations Canada + +

+
+ ) +} + +export const LEGISinfoLicense = () => { + return ( +
+

SOURCE - Parliament LEGISinfo

+

+ + LEGISinfo + +

+
+ ) +} + +export const ElxCanadaLicense = () => { + return ( +
+

SOURCE - Elections Canada

+

+ + Elections Canada Open Data + +

+
+ ) +} + +export const LobbyingCommissionerLicense = () => { + return ( +
+

SOURCE - Office of the Commissioner of Lobbying of Canada

+

+ + Open Data License Agreement + +

+
+ ) +} \ No newline at end of file diff --git a/frontend/src/assets/license_privacy.tsx b/frontend/src/assets/license_privacy.tsx new file mode 100644 index 00000000..4ea1b00b --- /dev/null +++ b/frontend/src/assets/license_privacy.tsx @@ -0,0 +1,225 @@ +import { Link } from 'react-router-dom' + +export const PrivacyLicense = () => { + return ( +
+

PRIVACY POLICY

+ +

LAST UPDATED: 2023-02-24

+ +

1. OVERVIEW

+ +

+ At LOBBYRADAR (the “Authors”, “we” or “us”), we use our website + and other internet-based tools for the following purpose:

+ +

We provide tools and interfaces to improve access and understanding of connected open source Government of Canada data.

+ + We are required to collect and retain information about the people and companies that + access and use the website (“Users” or “you”). This Policy applies to our privacy practices + on all communications between the Authors and Users, including but not limited to + communication via:

+ + 1. the Authors website (including the website hosted at www.lobbyradar.io + and any other web domain used by the Authors to communicate with users now or + in the future);

+ + 2. any mobile, computer, or tablet-based application currently offered by Authors or + developed in the future by the Authors; and

+ + 3. all other services provided by the Authors, as described on the Website (Items 1, 2 and 3 + are collectively referred to as the "Website").

+ + This Privacy Policy (“Policy”) sets out how we use, protect, collect and preserve + information submitted by Users, including User information gathered by our technology. + This Policy should be read in conjunction with any Terms of Use or policies available on + the Website.

+ + By accessing or submitting any information through the Website, you are agreeing to the + terms of this Policy. You are prohibited from accessing or using the Website unless you + fully understand and agree to this Policy and all Terms of Use available for review on the + Website.

+ + If you have any questions about this Policy, please contact us by sending an email with + your questions via the contact page before accessing or entering any information on the Website.

+ +

2. UPLOADING PERSONAL INFORMATION

+ + In order to facilitate their interactions on the Website, Users are able, where they deem + appropriate, to upload information including personal identifying information. Users + should only upload information to the extent that such information enhances their + experience of using the Website.

+ +

3. COOKIES

+ + To facilitate the collection of information and to enhance the experience of Users of the + Website, we use cookies which may be stored on Users’ computers and/or devices so that + we can recognize Users when they return. You may set your browser to notify you when + you receive a cookie or to not accept certain cookies. However, changing such settings may + result in you not being able to use the Website, either in its entirety or certain features.

+ + Using cookies, you may have the option to allow us to save your user ID and login + password for future logins to the Website.

+ + Cookies that are stored on your computer and/or device after visiting the Website may be + recognized for advertising purposes and to show you targeted advertisements after you + visit the Website.

+ + For more information on the cookies we use or to opt-out, please contact us via the contact page.

+ +

4. REMARKETING

+ + We may engage in "remarketing" activities using third-party services, which may include + but are not limited to Google Ads, Google Analytics, and Facebook. By using the Website, + you consent to allow us to provide information to third-party service parties who may + present you with advertisements about the Authors after you visit the Website. We will + provide third-party providers of remarketing services with the minimum amount of + information required to facilitate remarketing, and in no circumstances will Authors + provide any personal identifying information to third-parties for the purpose of + remarketing.

+ +

5. PERMITTED USES OF DATA

+ + We use data collected from the Website for various purposes, including to: provide the + Website to you and accompanying customer support; notify you about updates and + changes to the Website; prevent and address technical issues with the Website; monitor + usage of the Website.

+ + Without restriction, we may use any information you submit through the Website for any + purpose we deem appropriate so long as it is anonymous and stripped of any and all + personal identifying information.

+ + We may use the data collected from the Website, devices, browsers, and any other sources, + for its own purposes, both related to and unrelated to improving the Website.

+ + +

6. LEGAL BASIS FOR PROCESSING PERSONAL IDENTIFYING INFORMATION

+ + We may process your personal identifying information for a number of reasons, including:

+ +
    +
  • performing a contract with you relating to the Website;
  • +
  • you have provided us consent to do so;
  • +
  • fulfilling a legal obligation;
  • +
  • fulfilling our legitimate interests, which are not overridden by your rights;
  • +
  • for payment processing purposes.
  • +
+ +

7. ACCESSING, CORRECTING & DELETING YOUR PERSONAL INFORMATION

+ + If you wish to access or amend your personal information or to request that we + permanently delete your personal information from our servers, please send an email via the{' '} + contact page. We will ensure your personal information is accessible, + amended and/or deleted in a reasonable time after receiving that request. Deleting such + information may require us to terminate any account you may have created in its entirety + and prevent you from using the Website.

+ + So long as your account remains active, we will preserve your personal information in + accordance with the Policy.

+ + You may decline to share certain personal information with us, in which case you may not + be able to use the Website, either in its entirety or certain features.

+ + When deleting your information, whether by request or due to inactivity, we will use + standard electronic means to remove your personal information from our files.

+ + We will also retain any and all information that we are required to retain under any + applicable laws for the full duration of time required under those laws.

+ +

8. KEEPING YOUR DATA SECURE

+ + We will store your information in electronic format on industry-standard servers that we + have selected. Except where required to do so by law, we will not store your personal + information in any physical or paper-based format.

+ + The servers we select to store information engage security software and generally + accepted standards to protect personal information. The software used by these servers is + intended to prevent unauthorized access or improper use.

+ + However, no security system is perfect and there is always a risk of unauthorized parties + accessing your personal information. Therefore, we make no guarantees or representations + as to the technical or legal compliance of the servers we use. We cannot guarantee the + complete protection and security of your personal information.

+ + Our servers may be located outside of Canada, and thus are potentially subject to the + privacy and security laws in force in other countries. If you have concerns about your + personal information being stored electronically in foreign jurisdictions, please contact us + before proceeding to use the Website.

+ +

9. SECURITY BREACHES

+ + In the event the personal information of a User is disclosed as the result of any breach of + security of the Website or its servers, regardless of who is at fault, we will take steps to + advise all known affected Users within 14 days of learning of the breach.

+ +

10. THIRD-PARTY APPLICATIONS

+ + To provide an enhanced experience to Users, including to track conversions and analytics, + we may engage services and features controlled by third-parties. We cannot control or + dictate how any third-party application you use in conjunction with the Website, now or at + any point in the future, will treat any personal information you transmit through their + servers when using the Website. We advise you to contact these parties directly to review + their privacy policies.

+ + Without limitation, the Authors use or may use the following third-party applications + and services in conjunction with the Website:

+ +
    +
  • Google Analytics
  • +

+ + By using any of these third-party application to interact with the Website, we will not be + given access to your login credentials, user name, password, payment information, or any + information you may provide directly to these applications.

+ + +

11. USE OF WEBSITE BY MINORS

+ + The Website is not intended to be accessed by persons under the age of 18. The Authors + do not engage in any marketing efforts aimed at children or minors.

+ + Persons under the age of 18 are prohibited from using the Website without the express + permission and direct supervision of a parent or guardian. Minors are prohibited from + submitting any personal identifying information through the Website. The Authors will + immediately delete any personal identifying information submitted in violation of this + Policy.

+ + +

12. DISCLOSURE OF PERSONAL INFORMATION

+ + In certain situations, we may be required to disclose personal data in response to lawful + requests by public authorities, including to meet national security or law enforcement + requirements.

+ + We may disclose your personal information to third parties:

+ + 1. In the event that we sell or buy any business or assets, in which case we may disclose + your personal data to the prospective seller or buyer of such business or assets.

+ + 2. If the Authors or its assets are acquired by a third party, in which case personal data + about Users may be one of the transferred assets.

+ + 3. If we are under a duty to disclose or share your personal data in order to comply with + any legal obligation, or in order to enforce or apply our Terms of Use; or to protect + the rights, property, or safety of the Authors, our Users, or others. This includes + exchanging information with other companies and organizations for the purposes of + fraud protection and credit risk reduction.

+ +

13. AMENDING THIS POLICY

+ + This Policy may be updated and amended from time to time. We reserve the right to + change this Policy at any time, and any amended Policy is effective upon posting to the + Website. We will make efforts to communicate any changes to this Policy we deem + material, in our sole discretion, via email or notifications on the Website. Your continued + use of the Website will be deemed acceptance of any amended Policy.

+ + +

14. CONTACT US

+ + We encourage you to send us questions and inquiries on this Policy and the steps we take + to keep your personal information secure. Please send us an email via the contact page.

+ + We will respond to all inquiries on the Policy within 14 days.

+
+ ) +} \ No newline at end of file diff --git a/frontend/src/assets/license_terms.tsx b/frontend/src/assets/license_terms.tsx new file mode 100644 index 00000000..0e8b95cb --- /dev/null +++ b/frontend/src/assets/license_terms.tsx @@ -0,0 +1,208 @@ +import { Link } from 'react-router-dom' + +export const TermsLicense = () => { + return ( +
+

TERMS OF USE

+ +

LAST UPDATED: 2023-02-24

+ +

1. OVERVIEW

+ + These Terms of Use form a legally binding contract between LOBBYRADAR (the “Authors”, “we” or “us”) + and the people and companies (“Users” or “you”) that access and use + our website located at www.lobbyradar.io or any related website or mobile + platform controlled by us (collectively, the "Website"). These Terms of Use apply to all + services provided through our Website and any other software application we operate, and + all content, services, and products available at or through the Website.

+ + It is very important that you read and fully understand these Terms of Use before using + the Website. By agreeing to these Terms of Use and using the Website, you are entering + into a legally binding contract which will impact your rights.

+ + By accessing any part of the Website, you agree to be bound by these Terms of Use. You + are also confirming that you have read and fully understood these Terms of Use. If you do + not agree to or understand all of these Terms of Use, then you may not access the Website + or use any services available on the Website.

+ + These Terms of Use should be read in conjunction with the Privacy Policy and any other + rules, guidelines, or policies posted on the Website.

+ +

2. SERVICES AVAILABLE ON THE WEBSITE

+ + Without restriction, we generally offer the following services through the Website:

+ +

We provide tools and interfaces to improve access and understanding of connected open source Government of Canada data.

+ + The services we offer are subject to change over time. By using the Website, you are + confirming that you have determined that the services are appropriate for your needs. We + do not guarantee that these services meet your needs or that they are suitable for your + specific purposes.

+ +

3. TERMINATION

+ + You may cancel these Terms of Use at any time by discontinuing your use of the Website.

+ +

4. LIMITATION OF LIABILITY

+ + Except in a case where we are in violation of these Terms of Use, we will not be held liable + for, and you hereby fully waive the right to claim for, any loss, injury, claim, liability or + damages of any kind resulting in any way from use of the Website.

+ + Your use of the Website is at your sole risk. The Website is provided on an “as is” and “as + available” basis without any warranty or condition, express, implied or statutory. We do + not warrant that your use of the Website will be uninterrupted, secure or error-free.

+ + In no event will we have any liability to you or any third party for any lost profits or + revenues or for any indirect, special, incidental, consequential, or punitive damages + however caused, whether in contract, tort, or otherwise, and whether or not you or the + third party have been advised of the possibility of such damages. In the event the + foregoing paragraph, or any part thereof, is void under applicable law, this paragraph, or + such part thereof, shall be inapplicable.

+ +

5. INDEMNIFICATION

+ + You agree to indemnify and hold harmless LOBBYRADAR, including + our officers, directors, shareholders, employees and agents, from and against any and all + claims and expenses, including legal fees and disbursements, which are made against us + and arise out of your use of the Website, including but not limited to your violation of any + term of these Terms of Use or any other policy posted on the Website.

+ +

6. SECURITY BREACHES

+ + In order to protect your security, it is your sole responsibility to ensure that all usernames + and passwords used to access the Website are kept secure and confidential.

+ + You must immediately notify us of any unauthorized use of your account, including the + unauthorized use of your password, or any other breach of security.

+ + We will investigate any breach of security on the Website that we determine in our sole + discretion to be serious in nature, but we will not be held responsible or liable in any + manner for breaches of security or any unauthorized access to your account however + arising.

+ +

7. WARRANTIES AND REPRESENTATIONS

+ + We hereby disclaim all warranties of any kind, whether express, implied, or statutory, + including but not limited to implied warranties as to merchantability or fitness for a + particular purpose as they relate to the Website.

+ +

8. COMPLIANCE WITH LAWS

+ + You represent and warrant that:

+ + i. You have the authority to bind yourself to these Terms of Use;

+ + ii. Your use of the Website will be solely for purposes that are permitted by these Terms + of Use;

+ + iii. Your use of the Website will not infringe or misappropriate the confidentiality or + intellectual property rights of any User or third party; and

+ + iv. Your use of the Website will comply with all local, provincial and federal laws, rules + and regulations, and with all policies posted on the Website.

+ + You must only use the Website for your own lawful purposes, in accordance with these + Terms of Use and any notice, policy or condition posted on the Website. You may use the + Website on behalf of others or in order to provide services to others but if you do so you + must ensure that you are authorized to do so and that all persons for whom or to whom + services are provided comply with and accept all these Terms of Use.

+ +

9. AGE RESTRICTIONS

+ + Users under the age of 18 are only permitted to access and use the Website while under + the direct supervision of a parent or guardian.

+ +

10. GOVERNING LAW AND DISPUTE RESOLUTION

+ + These Terms of Use and any access to or use of the Website shall be governed by, and + construed in accordance with, the laws in force in the Province of Alberta.

+ + If any claim, dispute or controversy occurs between LOBBYRADAR + and a User relating to the interpretation or implementation of any of the provisions of + these Terms of Use, such dispute shall be resolved by private, confidential and binding + arbitration. Such arbitration shall be conducted by a single arbitrator. The arbitrator shall + be appointed by agreement of the parties or, in the absence of an agreement, such + arbitrator shall be appointed by a judge upon the application of either the User or + LOBBYRADAR Arbitration shall be held in the Province of Alberta, + unless otherwise agreed by the parties. The arbitration procedure to be followed shall be + agreed by the parties or, in absence of an agreement, determined by the arbitrator. The + arbitration shall proceed in accordance with the provisions of the Arbitration Act, 1991, + SO 1991, c 17. Subject to any right of appeal, the decision arrived at by the arbitrator + shall be final and binding. Judgment upon the award rendered by the arbitrator may be + entered in any court having jurisdiction.

+ +

11. WAIVER OF CLASS ACTION

+ + By using the Website, you agree to resolve any claim or dispute arising between you and + us on an individual basis, rather than addressing such claim or dispute as part of a group + or class. You hereby waive any right you may have to commence or participate in any class + action lawsuit commenced against LOBBYRADAR or its affiliates + related to any claim, dispute or controversy arising from your use of the Website. Where + applicable, you hereby agree to opt out of any class proceeding against LOBBYRADAR otherwise commenced.

+ + The above waiver shall not apply to claims or disputes arising under consumer protection + legislation or any other claim or dispute where a waiver of class action lawsuits is + unenforceable at law.

+ +

12. GENERAL TERMS

+ +

a. AMENDING THESE TERMS OF USE

+ + These Terms of Use may be updated and amended from time to time. We reserve the + right to change these Terms of Use at any time, and any amended Terms of Use are + effective upon posting to the Website. We will make efforts to communicate any + changes to these Terms of Use we deem material, in our sole discretion, via email or + notifications on the Website. Your continued use of the Website will be deemed to be + immediate and unconditional acceptance of any amended Terms of Use, whether or + not we deemed the amendments to be material.

+ +

b. ASSIGNMENT

+ + We may assign or delegate these Terms of Use, in whole or in part, to any person or + entity at any time with or without your consent and without prior notice to you. + Users may not assign or delegate any rights or obligations under these Terms of Use, + without our prior written consent, and any unauthorized assignment and delegation is + void.

+ +

c. NO WAIVER

+ + No waiver of a provision, right or remedy of this Agreement shall operate as a waiver + of any other provision, right or remedy or the same provision, right or remedy on a + future occasion.

+ +

d. NO AGENCY

+ + The parties to these Terms of Use are independent contractors and are not partners or + agents. LOBBYRADAR has no fiduciary obligations or + professional obligations whatsoever to you arising from these Terms of Use or your + use of the Website.

+ +

e. SEVERABILITY

+ + In the event that any provision or part of this Agreement is found to be void or invalid + by a court of law, the remaining provisions, or parts thereof, shall be and remain in + full force and effect.

+ +

f. ENTIRE AGREEMENT

+ + These Terms of Use, in conjunction with all policies and guidelines available on the + Website (including but not limited to any Privacy Policy), incorporated by reference, + constitute the entire agreement between you and LOBBYRADAR + and supersede all prior communications, agreements and understandings, written or + oral, with respect to the subject matter of these Terms of Use.

+ +

13. QUESTIONS ON THESE TERMS OF USE

+ + We welcome you to contact us with any questions on these Terms of Use. You can send + your questions regarding these Terms of Use via the contact page.

+ +

14. CONFIRMATION OF AGREEMENT TO TERMS OF USE

+ + BY PROCEEDING TO USE THE WEBSITE, YOU ACKNOWLEDGE THAT YOU HAVE READ, + UNDERSTOOD AND AGREE TO BE BOUND BY THESE TERMS OF USE AND ANY + POLICIES AND NOTICES POSTED ON THE WEBSITE.

+ +
+ ) +} \ No newline at end of file diff --git a/frontend/src/assets/logo.png b/frontend/src/assets/logo.png deleted file mode 100644 index f3d2503f..00000000 Binary files a/frontend/src/assets/logo.png and /dev/null differ diff --git a/frontend/src/assets/react.svg b/frontend/src/assets/react.svg new file mode 100644 index 00000000..6c87de9b --- /dev/null +++ b/frontend/src/assets/react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/src/component-hooks.ts b/frontend/src/component-hooks.ts deleted file mode 100644 index cefdc537..00000000 --- a/frontend/src/component-hooks.ts +++ /dev/null @@ -1,8 +0,0 @@ -import Component from 'vue-class-component'; - -// Register the router hooks with their names -Component.registerHooks([ - 'beforeRouteEnter', - 'beforeRouteLeave', - 'beforeRouteUpdate', // for vue-router 2.2+ -]); diff --git a/frontend/src/components/DarkModeSwitch.tsx b/frontend/src/components/DarkModeSwitch.tsx new file mode 100644 index 00000000..5703d24d --- /dev/null +++ b/frontend/src/components/DarkModeSwitch.tsx @@ -0,0 +1,51 @@ +import React from 'react' +import { Icon } from '@blueprintjs/core' +import useDarkMode from '../hooks/useDarkMode' + +import { Switch } from '@headlessui/react' + +function classNames(...classes) { + return classes.filter(Boolean).join(' ') +} + +export default function DarkModeSwitch() { + const [darkTheme, setDarkTheme] = useDarkMode() + + return ( + + Use setting + + + + + + ) +} diff --git a/frontend/src/components/EmptyGraph.tsx b/frontend/src/components/EmptyGraph.tsx new file mode 100644 index 00000000..6c3ae3cf --- /dev/null +++ b/frontend/src/components/EmptyGraph.tsx @@ -0,0 +1,29 @@ +function EmptyGraph(props) { + return ( +
+ +
+ ) +} + +export default EmptyGraph diff --git a/frontend/src/components/FabButton.tsx b/frontend/src/components/FabButton.tsx new file mode 100644 index 00000000..cf91c8ba --- /dev/null +++ b/frontend/src/components/FabButton.tsx @@ -0,0 +1,19 @@ +import { Icon } from '@blueprintjs/core' + +function FabButton(props) { + const { classes, children, onClick, ...other } = props + + return ( +
+ +
+ ) +} + +export default FabButton diff --git a/frontend/src/components/IconSvg.tsx b/frontend/src/components/IconSvg.tsx new file mode 100644 index 00000000..fb709c72 --- /dev/null +++ b/frontend/src/components/IconSvg.tsx @@ -0,0 +1,86 @@ +import React from 'react' +export const IconSvg = () => { + return ( + + + + + + + ) +} + +// path_1: #312e81 +// path_2: #8d38ca +// path_3 #cbd5e1 +// path_4 #64748b + +export default IconSvg diff --git a/frontend/src/components/IconSvgNav.tsx b/frontend/src/components/IconSvgNav.tsx new file mode 100644 index 00000000..45616366 --- /dev/null +++ b/frontend/src/components/IconSvgNav.tsx @@ -0,0 +1,19 @@ +import React from 'react' +export const IconSvgNav = () => { + return ( + + + + ) +} + +export default IconSvgNav diff --git a/frontend/src/components/Loading.tsx b/frontend/src/components/Loading.tsx new file mode 100644 index 00000000..dcfa6880 --- /dev/null +++ b/frontend/src/components/Loading.tsx @@ -0,0 +1,26 @@ +import React from 'react' +const Loading: React.FC = () => { + return ( +
+ + Loading... +
+ ) +} + +export default Loading diff --git a/frontend/src/components/NotificationsManager.vue b/frontend/src/components/NotificationsManager.vue deleted file mode 100644 index 6fcffdb7..00000000 --- a/frontend/src/components/NotificationsManager.vue +++ /dev/null @@ -1,77 +0,0 @@ - - diff --git a/frontend/src/components/PageNotFound.tsx b/frontend/src/components/PageNotFound.tsx new file mode 100644 index 00000000..8b23f164 --- /dev/null +++ b/frontend/src/components/PageNotFound.tsx @@ -0,0 +1,60 @@ +import { IconSvg } from './IconSvg' + +export default function PageNotFound() { + return ( + <> + {/* + This example requires updating your template: + + ``` + + + ``` + */} +
+
+ +
+
+

404

+

+ Page not found. +

+

+ Sorry, we couldn’t find the page you’re looking for. +

+ +
+
+
+ +
+ + ) +} diff --git a/frontend/src/components/RouterComponent.vue b/frontend/src/components/RouterComponent.vue deleted file mode 100644 index ed986a6f..00000000 --- a/frontend/src/components/RouterComponent.vue +++ /dev/null @@ -1,11 +0,0 @@ - - - diff --git a/frontend/src/components/ScrollToTop.tsx b/frontend/src/components/ScrollToTop.tsx new file mode 100644 index 00000000..d288d6f6 --- /dev/null +++ b/frontend/src/components/ScrollToTop.tsx @@ -0,0 +1,14 @@ +import { useEffect } from 'react' +import { useLocation } from 'react-router-dom' + +const ScrollToTop = (props) => { + const location = useLocation() + + useEffect(() => { + window.scrollTo(0, 0) + }, [location]) + + return <>{props.children} +} + +export default ScrollToTop diff --git a/frontend/src/components/ThemeButton.tsx b/frontend/src/components/ThemeButton.tsx new file mode 100644 index 00000000..ea8876fe --- /dev/null +++ b/frontend/src/components/ThemeButton.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { Icon } from '@blueprintjs/core' +import useDarkMode from '../hooks/useDarkMode' + +export const ThemeButton = () => { + const [darkTheme, setDarkTheme] = useDarkMode() + const handleMode = () => setDarkTheme(!darkTheme) + return ( + + {darkTheme ? ( + + ) : ( + + )} + + ) +} + +export default ThemeButton diff --git a/frontend/src/components/UploadButton.vue b/frontend/src/components/UploadButton.vue deleted file mode 100644 index 8902e949..00000000 --- a/frontend/src/components/UploadButton.vue +++ /dev/null @@ -1,34 +0,0 @@ - - - - - diff --git a/frontend/src/components/index.tsx b/frontend/src/components/index.tsx new file mode 100644 index 00000000..115ba262 --- /dev/null +++ b/frontend/src/components/index.tsx @@ -0,0 +1,5 @@ +export { default as Loading } from './Loading' +export { default as ThemeButton } from './ThemeButton' +export { default as PageNotFound } from './PageNotFound' + +export { default as IconSvg } from './IconSvg' diff --git a/frontend/src/env.ts b/frontend/src/env.ts deleted file mode 100644 index b3387e69..00000000 --- a/frontend/src/env.ts +++ /dev/null @@ -1,14 +0,0 @@ -const env = process.env.VUE_APP_ENV; - -let envApiUrl = ''; - -if (env === 'production') { - envApiUrl = `https://${process.env.VUE_APP_DOMAIN_PROD}`; -} else if (env === 'staging') { - envApiUrl = `https://${process.env.VUE_APP_DOMAIN_STAG}`; -} else { - envApiUrl = `http://${process.env.VUE_APP_DOMAIN_DEV}`; -} - -export const apiUrl = envApiUrl; -export const appName = process.env.VUE_APP_NAME; diff --git a/frontend/src/hooks/index.tsx b/frontend/src/hooks/index.tsx new file mode 100644 index 00000000..dfed5a9d --- /dev/null +++ b/frontend/src/hooks/index.tsx @@ -0,0 +1,6 @@ +export { default as useAuth } from './useAuth' +export { default as useAxiosPrivate } from './useAxiosPrivate' +export { default as useLogout } from './useLogout' +export { default as useRefreshToken } from './useRefreshToken' +export { default as useSettings } from './useSettings' +export { default as useCurrentUser } from './useCurrentUser' diff --git a/frontend/src/hooks/useAxiosPrivate.tsx b/frontend/src/hooks/useAxiosPrivate.tsx new file mode 100644 index 00000000..fd8ee452 --- /dev/null +++ b/frontend/src/hooks/useAxiosPrivate.tsx @@ -0,0 +1,29 @@ +import { axiosPrivate } from '../api/axios' +import { useEffect } from 'react' +import { useAuthHeader } from 'react-auth-kit' + +const useAxiosPrivate = () => { + const authHeader = useAuthHeader() + const auth = authHeader() + + useEffect(() => { + const requestIntercept = axiosPrivate.interceptors.request.use( + (config) => { + console.log('config', config) + if (!config.headers['Authorization']) { + config.headers['Authorization'] = `${auth}` + } + return config + }, + (error) => Promise.reject(error), + ) + + return () => { + axiosPrivate.interceptors.request.eject(requestIntercept) + } + }, [auth]) + + return axiosPrivate +} + +export default useAxiosPrivate diff --git a/frontend/src/hooks/useDarkMode.tsx b/frontend/src/hooks/useDarkMode.tsx new file mode 100644 index 00000000..e297a870 --- /dev/null +++ b/frontend/src/hooks/useDarkMode.tsx @@ -0,0 +1,17 @@ +import { useEffect } from 'react' +import useLocalStorage from '../hooks/useLocalStorage' + +const useDarkMode = () => { + const [enabled, setEnabled] = useLocalStorage('dark-theme') + const isEnabled = typeof enabledState === 'undefined' && enabled + + useEffect(() => { + const className = 'dark' + const bodyClass = window.document.body.classList + + isEnabled ? bodyClass.add(className) : bodyClass.remove(className) + }, [enabled, isEnabled]) + return [enabled, setEnabled] +} + +export default useDarkMode diff --git a/frontend/src/hooks/useGraphType.tsx b/frontend/src/hooks/useGraphType.tsx new file mode 100644 index 00000000..e78bef83 --- /dev/null +++ b/frontend/src/hooks/useGraphType.tsx @@ -0,0 +1,13 @@ +import React, { useState } from 'react' + +export default function useGraphType() { + const [graphType, setGraphType] = useState('2D') + const changeGraphType = () => { + if (graphType === '2D') { + setGraphType('3D') + } else { + setGraphType('2D') + } + } + return { graphType, changeGraphType } +} diff --git a/frontend/src/hooks/useLocalStorage.tsx b/frontend/src/hooks/useLocalStorage.tsx new file mode 100644 index 00000000..57a63f77 --- /dev/null +++ b/frontend/src/hooks/useLocalStorage.tsx @@ -0,0 +1,27 @@ +import { useState } from 'react' + +function useLocalStorage(key, initialValue) { + const [storedValue, setStoredValue] = useState(() => { + try { + const item = window.localStorage.getItem(key) + return item ? JSON.parse(item) : initialValue + } catch (error) { + console.log(error) + return initialValue + } + }) + + const setValue = (value) => { + try { + const valueToStore = value instanceof Function ? value(storedValue) : value + setStoredValue(valueToStore) + window.localStorage.setItem(key, JSON.stringify(valueToStore)) + } catch (error) { + console.log(error) + } + } + + return [storedValue, setValue] +} + +export default useLocalStorage diff --git a/frontend/src/index.css b/frontend/src/index.css new file mode 100644 index 00000000..fb685330 --- /dev/null +++ b/frontend/src/index.css @@ -0,0 +1,8 @@ +@import-normalize; +@tailwind base; +@tailwind components; +@tailwind utilities; + +::-webkit-scrollbar { + background-color: transparent; +} diff --git a/frontend/src/interfaces/index.ts b/frontend/src/interfaces/index.ts deleted file mode 100644 index a1b93403..00000000 --- a/frontend/src/interfaces/index.ts +++ /dev/null @@ -1,23 +0,0 @@ -export interface IUserProfile { - email: string; - is_active: boolean; - is_superuser: boolean; - full_name: string; - id: number; -} - -export interface IUserProfileUpdate { - email?: string; - full_name?: string; - password?: string; - is_active?: boolean; - is_superuser?: boolean; -} - -export interface IUserProfileCreate { - email: string; - full_name?: string; - password?: string; - is_active?: boolean; - is_superuser?: boolean; -} diff --git a/frontend/src/main.ts b/frontend/src/main.ts deleted file mode 100644 index a844b1ea..00000000 --- a/frontend/src/main.ts +++ /dev/null @@ -1,19 +0,0 @@ -import '@babel/polyfill'; -// Import Component hooks before component definitions -import './component-hooks'; -import Vue from 'vue'; -import './plugins/vuetify'; -import './plugins/vee-validate'; -import App from './App.vue'; -import router from './router'; -import store from '@/store'; -import './registerServiceWorker'; -import 'vuetify/dist/vuetify.min.css'; - -Vue.config.productionTip = false; - -new Vue({ - router, - store, - render: (h) => h(App), -}).$mount('#app'); diff --git a/frontend/src/main.tsx b/frontend/src/main.tsx new file mode 100644 index 00000000..41c6c86c --- /dev/null +++ b/frontend/src/main.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import ReactDOM from 'react-dom/client' +import { BrowserRouter, Routes, Route } from 'react-router-dom' +import App from './App' +import './index.css' +import { QueryClient, QueryClientProvider } from '@tanstack/react-query' +import { ReactQueryDevtools } from '@tanstack/react-query-devtools' + +import ScrollToTop from './components/ScrollToTop' +import { AuthProvider } from 'react-auth-kit' +const queryClient = new QueryClient() + +ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render( + // + + + + + + + } /> + + + + + + , + // , +) diff --git a/frontend/src/pages/ComingSoon/ComingSoon.tsx b/frontend/src/pages/ComingSoon/ComingSoon.tsx new file mode 100644 index 00000000..7e85bacc --- /dev/null +++ b/frontend/src/pages/ComingSoon/ComingSoon.tsx @@ -0,0 +1,14 @@ +export default function Example() { + return ( +
+
+
+

+ LobbyRadar +

+

Coming Soon

+
+
+
+ ) +} diff --git a/frontend/src/pages/Home/ForceGraph.tsx b/frontend/src/pages/Home/ForceGraph.tsx new file mode 100644 index 00000000..acec57f3 --- /dev/null +++ b/frontend/src/pages/Home/ForceGraph.tsx @@ -0,0 +1,188 @@ +import React, { useRef, useState, useLayoutEffect, useCallback } from 'react' +import { ForceGraph2D } from 'react-force-graph' +import { useQuery } from '@tanstack/react-query' +import Loading from '../../components/Loading' +import { useWindowSize } from '@react-hook/window-size' +import { getGraph } from '../../api/graph' +import { useOutletContext } from 'react-router-dom' + +import FabButton from '../../components/FabButton' +import EmptyGraph from '../../components/EmptyGraph' + +function ForceGraph(props) { + const [width, height] = useWindowSize() + const fgRef = useRef(null) + const [highlightNodes, setHighlightNodes] = useState(new Set()) + const [highlightLinks, setHighlightLinks] = useState(new Set()) + const [hoverNode, setHoverNode] = useState(null) + + const { + data: graphData, + status: graphStatus, + isFetching, + } = useQuery({ + queryKey: ['getGraph', props.selected], + queryFn: () => getGraph(props.selected), + enabled: !!props.selected, + refetchOnWindowFocus: false, + }) + + useLayoutEffect(() => { + if (graphStatus === 'success' && graphData) { + // Make sure all nodes have the `neighbors` property + graphData.nodes.forEach((node) => { + node.neighbors = [] + node.links = [] + }) + + // Populate the `neighbors` and `links` properties + graphData.links.forEach((link) => { + const { source, target } = link + const sourceNode = graphData.nodes.find((node) => node.id === source) + const targetNode = graphData.nodes.find((node) => node.id === target) + + if (sourceNode && targetNode) { + sourceNode.neighbors.push(targetNode) + targetNode.neighbors.push(sourceNode) + + sourceNode.links.push(link) + targetNode.links.push(link) + } + }) + + // Highlight the selected node + //console.log('here') + const selectedNode = graphData.nodes.find((node) => node.id === props.selected[0]) + //console.log('selected node', selectedNode) + //console.log('props selected', props.selected) + if (selectedNode) { + highlightNodes.add(selectedNode) + selectedNode.neighbors.forEach((neighbor) => highlightNodes.add(neighbor)) + selectedNode.links.forEach((link) => highlightLinks.add(link)) + } + } + }, [graphData, graphStatus, highlightNodes, highlightLinks, props.selected]) + + const updateHighlight = useCallback(() => { + setHighlightNodes(highlightNodes) + setHighlightLinks(highlightLinks) + }, [highlightNodes, highlightLinks]) + + const nodeCanvasObject = useCallback( + (node, ctx, globalScale) => { + const { x, y, id, name } = node + const nodeRadius = 16 + const fontSize = id === props.selected[0] ? 20 : 16 + // Draw outer ring + ctx.beginPath() + ctx.arc(x, y, nodeRadius, 0, 2 * Math.PI, false) + ctx.lineWidth = 8 / globalScale + ctx.strokeStyle = id === props.selected[0] ? '#4338ca' : '#ffa31a' + ctx.stroke() + + // Draw inner ring and label + if (highlightNodes.has(node) || id === props.selected[0]) { + ctx.beginPath() + ctx.arc(x, y, nodeRadius * 0.5, 0, 2 * Math.PI, false) + + ctx.fill() + + // Set canvas size to 100% of parent div + + // Draw label + ctx.font = `${fontSize / globalScale}px sans` + ctx.textAlign = 'center' + ctx.fillStyle = '#000000' + ctx.fillText(name, x, y + nodeRadius + 12) + } + }, + [highlightNodes, props.selected], + ) + + const handleOnEngineStop = useCallback( + (node, ctx) => { + fgRef.current.zoomToFit(400) + + updateHighlight() + //update font color + }, + [updateHighlight], + ) + + const handleNodeHover = useCallback( + (node) => { + highlightNodes.clear() + highlightLinks.clear() + if (node) { + highlightNodes.add(node) + node.neighbors.forEach((neighbor) => highlightNodes.add(neighbor)) + node.links.forEach((link) => highlightLinks.add(link)) + } + setHoverNode(node || null) + }, + [highlightNodes, highlightLinks], + ) + + const handleNodeClick = useCallback( + (node) => { + if (node) { + props.setSelected([node.id, 'force', false]) + } + }, + [props], + ) + + return ( +
+ {isFetching ? ( + + ) : ( + (highlightNodes.has(node) ? 'before' : undefined)} + nodeCanvasObject={nodeCanvasObject} + // onLinkHover={handleLinkHover} + /* style={{ height: '100%' }} */ + /> + )} +
+ ) +} + +function GraphDisplay() { + const [darkMode, selected, setSelected, open, setOpen] = useOutletContext() + return ( +
+ {!!selected ? ( + <> + + + + + ) : ( + <> + +
+ + )} +
+ ) +} + +export default GraphDisplay diff --git a/frontend/src/pages/Home/Home.tsx b/frontend/src/pages/Home/Home.tsx new file mode 100644 index 00000000..c258d20d --- /dev/null +++ b/frontend/src/pages/Home/Home.tsx @@ -0,0 +1,212 @@ +import React, { Fragment, useState } from 'react' +import { Dialog, Menu, Transition } from '@headlessui/react' +import { Link, Outlet } from 'react-router-dom' +import { Icon } from '@blueprintjs/core' +import { Bars3BottomLeftIcon, BellIcon, XMarkIcon } from '@heroicons/react/24/outline' +import Search from '../Home/Search' +import useDarkMode from '../../hooks/useDarkMode' +import { IconSvg } from '../../components/IconSvg' +import { useIsAuthenticated } from 'react-auth-kit' +import { useSignOut } from 'react-auth-kit' +const ForceIcon = () => ( + +) + +const UserIcon = () => + +const navigation = [ + { name: 'Networks', href: '/home', icon: ForceIcon, current: true }, + /* { name: 'Bills Bills Bills', href: '/home2/law', icon: SankeyIcon, current: false }, */ +] + +function classNames(...classes) { + return classes.filter(Boolean).join(' ') +} + +export default function Home() { + const [sidebarOpen, setSidebarOpen] = useState(false) + const [selected, setSelected] = useState('') + const [open, setOpen] = useState(false) + const darkMode = useDarkMode() + const isAuthenticated = useIsAuthenticated() + const auth = isAuthenticated() + const signOut = useSignOut() + + const handleLogOut = () => { + signOut() + window.location.reload() + } + + return ( +
+ + + +
+ + +
+ + + +
+ +
+
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+ + {/* Static sidebar for desktop */} +
+ {/* Sidebar component, swap this element with another sidebar if you like */} +
+
+
+ +
+
+
+ +
+
+
+
+
+ +
+
+ +
+
+ + + + + +
+
+
+
+
+
+
+ {/* Replace with your content */} + +
+
+
+
+
+
+
+ ) +} diff --git a/frontend/src/pages/Home/Sankey.tsx b/frontend/src/pages/Home/Sankey.tsx new file mode 100644 index 00000000..0216f54e --- /dev/null +++ b/frontend/src/pages/Home/Sankey.tsx @@ -0,0 +1,101 @@ +import data from './energy.json' +import React, { useRef, useEffect } from 'react' +import { init, getInstanceByDom } from 'echarts' +import type { CSSProperties } from 'react' +import type { EChartsOption, ECharts, SetOptionOpts } from 'echarts' +import { useWindowSize } from '@react-hook/window-size' + +export interface ReactEChartsProps { + option: EChartsOption + style?: CSSProperties + settings?: SetOptionOpts + loading?: boolean + theme?: 'light' | 'dark' +} + +export function ReactECharts({ + option, + style, + settings, + loading, + theme, +}: ReactEChartsProps): JSX.Element { + const chartRef = useRef(null) + const [width, height] = useWindowSize() + + useEffect(() => { + // Initialize chart + let chart: ECharts | undefined + if (chartRef.current !== null) { + chart = init(chartRef.current, theme) + } + + // Add chart resize listener + // ResizeObserver is leading to a bit janky UX + function resizeChart() { + chart?.resize() + } + window.addEventListener('resize', resizeChart) + + // Return cleanup function + return () => { + chart?.dispose() + window.removeEventListener('resize', resizeChart) + } + }, [theme]) + + useEffect(() => { + // Update chart + if (chartRef.current !== null) { + const chart = getInstanceByDom(chartRef.current) + chart.setOption(option, settings) + } + }, [option, settings, theme]) // Whenever theme changes we need to add option and setting due to it being deleted in cleanup function + + useEffect(() => { + // Update chart + if (chartRef.current !== null) { + const chart = getInstanceByDom(chartRef.current) + // eslint-disable-next-line @typescript-eslint/no-unused-expressions + loading === true ? chart.showLoading() : chart.hideLoading() + } + }, [loading, theme]) + + return
+} + +const option = { + // title: { + // text: 'Node Align Right' + // }, + tooltip: { + trigger: 'item', + triggerOn: 'mousemove', + }, + series: [ + { + type: 'sankey', + emphasis: { + focus: 'adjacency', + }, + nodeAlign: 'left', + data: data.nodes, + links: data.links, + lineStyle: { + color: 'source', + curveness: 0.5, + }, + }, + ], +} +function Sankey() { + return ( +
+
+ +
+
+ ) +} + +export default Sankey diff --git a/frontend/src/pages/Home/Search.tsx b/frontend/src/pages/Home/Search.tsx new file mode 100644 index 00000000..1fb97708 --- /dev/null +++ b/frontend/src/pages/Home/Search.tsx @@ -0,0 +1,226 @@ +import React, { Fragment, useState } from 'react' + +import { getSearchResults } from '../../api/graph' +import { useQuery } from '@tanstack/react-query' +import { Combobox, Dialog, Transition } from '@headlessui/react' +import { MagnifyingGlassIcon } from '@heroicons/react/20/solid' + +import { useDebounce } from 'use-debounce' +import { Icon } from '@blueprintjs/core' + +const GraphIcon = () => { + return ( + + ) +} + +const LawIcon = () => { + return ( + + ) +} + +const MoneyIcon = () => { + return ( + + ) +} + +const quickActions = [ + { name: 'Graph connections...', icon: GraphIcon, shortcut: 'N', url: '#' }, + { name: 'Legal outcomes...', icon: LawIcon, shortcut: 'F', url: '#' }, + { name: 'Donations...', icon: MoneyIcon, shortcut: 'H', url: '#' }, +] + +function classNames(...classes) { + return classes.filter(Boolean).join(' ') +} + +export default function Search(props) { + const [query, setQuery] = useState('') + const [debouncedSearchInput] = useDebounce(query, 500) + + const { data: searchResults = [], isLoading } = useQuery( + ['searchResults', debouncedSearchInput], + async () => { + if (debouncedSearchInput) { + const results = await getSearchResults(debouncedSearchInput) + return results + } + return [] + }, + ) + + const handleSelect = async (selectedOption) => { + { + props.setSelected(selectedOption) + + console.log('handleSelect: ', selectedOption) + setQuery('') + props.setOpen(false) + } + console.log('selected Search is :', props.selected) + } + + const filteredProjects = + query === '' + ? [] + : searchResults.filter((result) => { + const valueWithoutSpaces = result.value.replace(/\s/g, '') + return valueWithoutSpaces.includes(query.toLowerCase().replace(/\s/g, '')) + }) + + return ( + props.setOpen(true)} + as={Fragment} + afterLeave={() => setQuery('')} + appear + > + + +
+ + +
+ + + {/* (window.location = item.url)}> */} + +
+
+ + {(query === '' || filteredProjects.length > 0) && ( + +
  • + {query === '' && ( +

    + Recent searches +

    + )} +
      + {(query === '' ? searchResults : filteredProjects).map((result) => ( + + classNames( + 'flex cursor-default select-none items-center rounded-md px-3 py-2', + active && 'bg-gray-900 bg-opacity-5 text-gray-900', + ) + } + > + {({ active }) => ( + <> + + ))} +
    +
  • + {query === '' && ( +
  • +

    Quick actions

    +
      + {quickActions.map((action) => ( + + classNames( + 'flex cursor-default select-none items-center rounded-md px-3 py-2', + active && 'bg-gray-900 bg-opacity-5 text-gray-900', + ) + } + > + {({ active }) => ( + <> + + ))} +
    +
  • + )} +
    + )} + + {query !== '' && filteredProjects.length === 0 && ( +
    +
    + )} +
    +
    +
    +
    +
    +
    + ) +} diff --git a/frontend/src/pages/Home/SideBar.tsx b/frontend/src/pages/Home/SideBar.tsx new file mode 100644 index 00000000..fa2c6eca --- /dev/null +++ b/frontend/src/pages/Home/SideBar.tsx @@ -0,0 +1,92 @@ +import React from 'react' +import { Link } from 'react-router-dom' +import { Icon } from '@blueprintjs/core' +import useLogout from '../../hooks/useLogout' +import useGraphType from '../../hooks/useGraphType' +import { useNavigate } from 'react-router-dom' +import { ThemeButton } from '../../components/ThemeButton' + +const SignOutButton = () => { + const navigate = useNavigate() + const logout = useLogout() + const signOut = async () => { + await logout() + navigate('/') + } + return ( + signOut()} />} + /> + ) +} + +function GraphTypeButton() { + const { graphType, changeGraphType } = useGraphType('2D') + return ( + + ) +} +const SideBar = () => { + return ( +
    + + } + /> + + {/* + } + text={'Force'} + /> + */} + } text='Graph Type' /> + + } text='Theme'> +
    + ) +} + +const SideBarIcon = ({ icon, text = 'tooltip 💡' }) => ( +
    + {icon} + + {text} + +
    +) + +const Divider = () => ( +
    +) + +export default SideBar diff --git a/frontend/src/pages/Home/UserSettings.tsx b/frontend/src/pages/Home/UserSettings.tsx new file mode 100644 index 00000000..a12c0a09 --- /dev/null +++ b/frontend/src/pages/Home/UserSettings.tsx @@ -0,0 +1,371 @@ +import axios from '../../api/axios' +import { useAuthHeader } from 'react-auth-kit' +import { useEffect, useState } from 'react' +import { Link } from 'react-router-dom' +import DarkModeSwitch from '../../components/DarkModeSwitch' +import { Switch } from '@headlessui/react' +import { ChevronLeftIcon } from '@heroicons/react/20/solid' +import useDarkMode from '../../hooks/useDarkMode' + +function classNames(...classes) { + return classes.filter(Boolean).join(' ') +} + +export default function UserSettings() { + const [darkMode] = useDarkMode() + const authHeader = useAuthHeader() + const bearer_token = authHeader() + const [user, setUser] = useState({}) + + useEffect(() => { + const fetchData = async () => { + try { + const response = await axios.get('v1/users/me', { + withCredentials: true, + headers: { + accept: 'application/json', + Authorization: bearer_token, + }, + }) + setUser(response.data) // update user state with response data + } catch (error) { + console.error(error) + } + } + fetchData() + }, [bearer_token]) // run effect whenever bearer_token changes + + const handleSubmit = (e) => { + e.preventDefault() + + const org = e.target.elements.organization.value + const province = e.target.elements.province.value + const country = e.target.elements.country.value + const language = e.target.elements.language.value + + const data = { + org: org, + darkmode: darkMode, + country: country, + province: province, + language: language, + } + } + + return ( + <> +
    +
    +
    + {/* Breadcrumb */} + + +
    + {/* Main content */} +
    +
    +

    + Settings +

    + +
    +
    +
    +

    Profile

    +

    + Adjust your profile settings. +

    +
    + +
    + + +
    + +
    + +
    + + +
    +
    + + +
    + +
    + + +
    + +
    + +
    + + +
    + +
    + + +
    +
    +
    +

    Preferences

    +

    + Select your preferences from the options below. +

    +
      + +
      + + Dark mode + + + Save your eyes and energy by using the dark theme. + +
      + + + {/* */} +
      + + +
      + + Is active + + + Is active + +
      + + +
      + + +
      + + Is Super User + + + Is Super User + +
      + + +
      + +
      + + Is verified + + + Is verified + +
      + + +
      +
    +
    + +
    + + +
    +
    +
    +
    +
    +
    +
    +
    + + ) +} diff --git a/frontend/src/pages/Home/energy.json b/frontend/src/pages/Home/energy.json new file mode 100644 index 00000000..c745f86e --- /dev/null +++ b/frontend/src/pages/Home/energy.json @@ -0,0 +1,120 @@ +{"nodes":[ +{"name":"Agricultural 'waste'"}, +{"name":"Bio-conversion"}, +{"name":"Liquid"}, +{"name":"Losses"}, +{"name":"Solid"}, +{"name":"Gas"}, +{"name":"Biofuel imports"}, +{"name":"Biomass imports"}, +{"name":"Coal imports"}, +{"name":"Coal"}, +{"name":"Coal reserves"}, +{"name":"District heating"}, +{"name":"Industry"}, +{"name":"Heating and cooling - commercial"}, +{"name":"Heating and cooling - homes"}, +{"name":"Electricity grid"}, +{"name":"Over generation / exports"}, +{"name":"H2 conversion"}, +{"name":"Road transport"}, +{"name":"Agriculture"}, +{"name":"Rail transport"}, +{"name":"Lighting & appliances - commercial"}, +{"name":"Lighting & appliances - homes"}, +{"name":"Gas imports"}, +{"name":"Ngas"}, +{"name":"Gas reserves"}, +{"name":"Thermal generation"}, +{"name":"Geothermal"}, +{"name":"H2"}, +{"name":"Hydro"}, +{"name":"International shipping"}, +{"name":"Domestic aviation"}, +{"name":"International aviation"}, +{"name":"National navigation"}, +{"name":"Marine algae"}, +{"name":"Nuclear"}, +{"name":"Oil imports"}, +{"name":"Oil"}, +{"name":"Oil reserves"}, +{"name":"Other waste"}, +{"name":"Pumped heat"}, +{"name":"Solar PV"}, +{"name":"Solar Thermal"}, +{"name":"Solar"}, +{"name":"Tidal"}, +{"name":"UK land based bioenergy"}, +{"name":"Wave"}, +{"name":"Wind"} +], +"links":[ +{"source": "Agricultural 'waste'", "target": "Bio-conversion", "value": 124.729}, +{"source": "Bio-conversion", "target": "Liquid", "value": 0.597}, +{"source": "Bio-conversion", "target": "Losses", "value": 26.862}, +{"source": "Bio-conversion", "target": "Solid", "value": 280.322}, +{"source": "Bio-conversion", "target": "Gas", "value": 81.144}, +{"source": "Biofuel imports", "target": "Liquid", "value": 35}, +{"source": "Biomass imports", "target": "Solid", "value": 35}, +{"source": "Coal imports", "target": "Coal", "value": 11.606}, +{"source": "Coal reserves","target": "Coal", "value": 63.965}, +{"source": "Coal", "target": "Solid", "value": 75.571}, +{"source": "District heating", "target": "Industry", "value": 10.639}, +{"source": "District heating", "target": "Heating and cooling - commercial", "value": 22.505}, +{"source": "District heating", "target": "Heating and cooling - homes", "value": 46.184}, +{"source": "Electricity grid", "target": "Over generation / exports", "value": 104.453}, +{"source": "Electricity grid", "target": "Heating and cooling - homes", "value": 113.726}, +{"source": "Electricity grid", "target": "H2 conversion", "value": 27.14}, +{"source": "Electricity grid", "target": "Industry", "value": 342.165}, +{"source": "Electricity grid", "target": "Road transport", "value": 37.797}, +{"source": "Electricity grid", "target": "Agriculture", "value": 4.412}, +{"source": "Electricity grid", "target": "Heating and cooling - commercial", "value": 40.858}, +{"source": "Electricity grid", "target": "Losses", "value": 56.691}, +{"source": "Electricity grid", "target": "Rail transport", "value": 7.863}, +{"source": "Electricity grid", "target": "Lighting & appliances - commercial", "value": 90.008}, +{"source": "Electricity grid", "target": "Lighting & appliances - homes", "value": 93.494}, +{"source": "Gas imports", "target": "Ngas", "value": 40.719}, +{"source": "Gas reserves", "target": "Ngas", "value": 82.233}, +{"source": "Gas", "target": "Heating and cooling - commercial", "value": 0.129}, +{"source": "Gas", "target": "Losses", "value": 1.401}, +{"source": "Gas", "target": "Thermal generation", "value": 151.891}, +{"source": "Gas", "target": "Agriculture", "value": 2.096}, +{"source": "Gas", "target": "Industry", "value": 48.58}, +{"source": "Geothermal", "target": "Electricity grid", "value": 7.013}, +{"source": "H2 conversion", "target": "H2", "value": 20.897}, +{"source": "H2 conversion", "target": "Losses", "value": 6.242}, +{"source": "H2", "target": "Road transport", "value": 20.897}, +{"source": "Hydro", "target": "Electricity grid", "value": 6.995}, +{"source": "Liquid", "target": "Industry", "value": 121.066}, +{"source": "Liquid", "target": "International shipping", "value": 128.69}, +{"source": "Liquid", "target": "Road transport", "value": 135.835}, +{"source": "Liquid", "target": "Domestic aviation", "value": 14.458}, +{"source": "Liquid", "target": "International aviation", "value": 206.267}, +{"source": "Liquid", "target": "Agriculture", "value": 3.64}, +{"source": "Liquid", "target": "National navigation", "value": 33.218}, +{"source": "Liquid", "target": "Rail transport", "value": 4.413}, +{"source": "Marine algae", "target": "Bio-conversion", "value": 4.375}, +{"source": "Ngas", "target": "Gas", "value": 122.952}, +{"source": "Nuclear", "target": "Thermal generation", "value": 839.978}, +{"source": "Oil imports", "target": "Oil", "value": 504.287}, +{"source": "Oil reserves", "target": "Oil", "value": 107.703}, +{"source": "Oil", "target": "Liquid", "value": 611.99}, +{"source": "Other waste", "target": "Solid", "value": 56.587}, +{"source": "Other waste", "target": "Bio-conversion", "value": 77.81}, +{"source": "Pumped heat", "target": "Heating and cooling - homes", "value": 193.026}, +{"source": "Pumped heat", "target": "Heating and cooling - commercial", "value": 70.672}, +{"source": "Solar PV", "target": "Electricity grid", "value": 59.901}, +{"source": "Solar Thermal", "target": "Heating and cooling - homes", "value": 19.263}, +{"source": "Solar", "target": "Solar Thermal", "value": 19.263}, +{"source": "Solar", "target": "Solar PV", "value": 59.901}, +{"source": "Solid", "target": "Agriculture", "value": 0.882}, +{"source": "Solid", "target": "Thermal generation", "value": 400.12}, +{"source": "Solid", "target": "Industry", "value": 46.477}, +{"source": "Thermal generation", "target": "Electricity grid", "value": 525.531}, +{"source": "Thermal generation", "target": "Losses", "value": 787.129}, +{"source": "Thermal generation", "target": "District heating", "value": 79.329}, +{"source": "Tidal", "target": "Electricity grid", "value": 9.452}, +{"source": "UK land based bioenergy", "target": "Bio-conversion", "value": 182.01}, +{"source": "Wave", "target": "Electricity grid", "value": 19.013}, +{"source": "Wind", "target": "Electricity grid", "value": 289.366} +]} diff --git a/frontend/src/pages/Home/index.tsx b/frontend/src/pages/Home/index.tsx new file mode 100644 index 00000000..d39a1d64 --- /dev/null +++ b/frontend/src/pages/Home/index.tsx @@ -0,0 +1,4 @@ +export { default } from './Home' + +export { default as UserSettings } from './UserSettings' +export { default as GraphDisplay } from './ForceGraph' diff --git a/frontend/src/pages/Landing/APINotify.tsx b/frontend/src/pages/Landing/APINotify.tsx new file mode 100644 index 00000000..504b83cc --- /dev/null +++ b/frontend/src/pages/Landing/APINotify.tsx @@ -0,0 +1,42 @@ +import React from 'react' +import { Link } from 'react-router-dom' + +const APINotify = () => { + return ( +
    +
    +

    + Get early access to the LobbyRadar API. +

    +

    + Sign up to our waiting list and be the first to know when it's ready. +

    +
    + + +
    + +

    + By signing up, you agree to our Privacy Policy. +

    + +
    +
    + ) +} + +function APILanding() { + return ( +
    + +
    + ) +} + +export default APILanding diff --git a/frontend/src/pages/Landing/About.tsx b/frontend/src/pages/Landing/About.tsx new file mode 100644 index 00000000..51567652 --- /dev/null +++ b/frontend/src/pages/Landing/About.tsx @@ -0,0 +1,141 @@ +import React from 'react' + +function AboutLayout() { + return ( +
    +
    + +
    +
    +
    +

    + + Introducing + + + LobbyRadar + +

    +
    +
    +

    + At LobbyRadar, we believe in the power of data to help people understand the + complexities of lobbying activities. Our mission is to make it easy for anyone to + navigate through vast amounts of government data related to lobbying activities and to + provide meaningful insights into the people, organizations, and issues involved. +

    + +

    + We built LobbyRadar to provide a comprehensive lobbying information resource to + researchers, students, journalists, and anyone who wants to explore the influence of + lobbying on Canadian politics. Our cutting-edge technology combines the power of force + graphs and AI to give you a new way to understand and interact with government data. +

    + +

    + LobbyRadar is committed to transparency and accountability in lobbying activities. We + believe that everyone should have access to information on who is lobbying, on what + issues, and how much money is involved. With LobbyRadar, you can monitor the latest + lobbying trends, track specific organizations or issues, and stay informed about the + influence of lobbying on government decision-making. +

    +
    +
    +
    + ) +} + +function About() { + return ( +
    + +
    + ) +} + +export default About diff --git a/frontend/src/pages/Landing/Contact.tsx b/frontend/src/pages/Landing/Contact.tsx new file mode 100644 index 00000000..c006f215 --- /dev/null +++ b/frontend/src/pages/Landing/Contact.tsx @@ -0,0 +1,231 @@ +import { useState } from 'react' +import { ChevronDownIcon } from '@heroicons/react/20/solid' +import { Switch } from '@headlessui/react' +import { Link } from 'react-router-dom' + +import React from 'react' + +function classNames(...classes) { + return classes.filter(Boolean).join(' ') +} + +function ContactLanding() { + const [agreed, setAgreed] = useState(false) + + return ( +
    +
    +

    Contact us

    +

    + We're here to help. Send us a message and we'll respond as soon as possible. +

    +
    +
    +
    +
    + +
    + +
    +
    +
    + +
    + +
    +
    +
    + +
    + +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    + + +
    + +
    +
    +
    + +
    +